From ba4cea2632d1b5b907575a37e36855b048d86478 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 8 Feb 2018 14:35:03 -0500 Subject: [PATCH 01/42] major code-cleanup --- .esformatter | 30 ++++++++++ .eslintrc | 40 ++++++++++++++ package.json | 6 +- src/{page.js => 01-article-logic.js} | 27 ++++----- src/02-parse-wiki.js | 31 +++++++++++ src/_done.js | 10 ++++ src/{parse.js => _encode.js} | 51 ++--------------- src/_plaintext.js | 20 +++++++ src/index.js | 82 +++++++++------------------- src/{ => redis}/queue.js | 2 +- src/{ => redis}/worker.js | 28 ++++++---- 11 files changed, 197 insertions(+), 130 deletions(-) create mode 100644 .esformatter create mode 100644 .eslintrc rename src/{page.js => 01-article-logic.js} (58%) create mode 100644 src/02-parse-wiki.js create mode 100644 src/_done.js rename src/{parse.js => _encode.js} (56%) create mode 100644 src/_plaintext.js rename src/{ => redis}/queue.js (92%) rename src/{ => redis}/worker.js (57%) diff --git a/.esformatter b/.esformatter new file mode 100644 index 0000000..008ae84 --- /dev/null +++ b/.esformatter @@ -0,0 +1,30 @@ +{ + "plugins": [ + ], + "quotes": { + "type": "single", + "avoidEscape": false + }, + "whiteSpace": { + "before": { + "ParameterList": -1, + "ParameterComma": -1, + "FunctionDeclarationOpeningBrace": -1, + "FunctionDeclarationClosingBrace": -1, + "ForStatementExpressionOpening": -1 + }, + "after": { + "FunctionName": -1, + "ParameterComma": 1, + "FunctionReservedWord": -1, + "ParameterList": -1, + "FunctionDeclarationOpeningBrace": -1, + "PropertyName": -1 + } + }, + "lineBreak": { + "before": { + "EndOfFile": 1 + } + } +} diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..8df2f2e --- /dev/null +++ b/.eslintrc @@ -0,0 +1,40 @@ +{ + "env": { + "es6": true + }, + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module", + "ecmaFeatures": { }, + }, + "rules": { + "no-cond-assign": 2, + "no-var": 0, + "prefer-const": 0, + "no-extra-parens": 0, + "no-dupe-keys": 2, + "no-unreachable": 2, + "eqeqeq": 1, + "keyword-spacing": 0, + "no-native-reassign": 2, + "no-redeclare": 2, + "radix": 1, + "indent": 0, + "quotes": [ + 0, + "single", + "avoid-escape" + ], + "no-shadow": 2, + "no-unused-vars": 1, + "no-lonely-if": 1, + "no-use-before-define": 2, + "no-bitwise": 2, + "no-dupe-class-members": 2, + "guard-for-in": 1, + "consistent-return": 2, + "no-octal-escape": 2, + "no-constant-condition": 1, + "no-unused-expressions": 2 + } +} diff --git a/package.json b/package.json index 6a6887c..e4edd79 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,10 @@ "bin": { "wp2mongo": "./bin/wp2mongo.js" }, + "engines": { + "node": ">4.8.6" + }, "main": "./src/index.js", - "engines": [ - "node = 0.10.33" - ], "scripts": { "test": "\"node_modules/.bin/tape\" \"./tests/*.test.js\" | \"node_modules/.bin/tap-spec\" --color" }, diff --git a/src/page.js b/src/01-article-logic.js similarity index 58% rename from src/page.js rename to src/01-article-logic.js index 7f70b60..9ce9203 100644 --- a/src/page.js +++ b/src/01-article-logic.js @@ -1,9 +1,11 @@ -const parse = require('./parse'); +//logic for parsing an object's xml +const parseWiki = require('./02-parse-wiki'); +const plaintext = require('./_plaintext'); +// we send job to job queue (redis) +// run job queue dashboard to see statistics +// node node_modules/kue/bin/kue-dashboard -p 3050 const doQueue = function(queue, data) { - // we send job to job queue (redis) - // run job queue dashboard to see statistics - // node node_modules/kue/bin/kue-dashboard -p 3050 queue .create('article', data) .removeOnComplete(true) @@ -15,37 +17,36 @@ const doQueue = function(queue, data) { .save(); } -// +// get wikiscript from the xml, parse it, and send it to mongo const doPage = function(page, options, queue, cb) { - + //ignore 'talk pages', etc. if (page.ns === '0') { - let script = page.revision.text['$text'] || ''; - if (options.verbose === true) { console.log(page.title); } + let script = page.revision.text['$text'] || ''; let data = { title: page.title, script: script, skip_redirects: options.skip_redirects, skip_disambig: options.skip_disambig, }; - + //if we're using redis, if (queue !== null) { doQueue(queue, data) } else { try { + //if we're just storing article text if (options.plaintext) { - parse.plaintext(data, options.collection, cb); + plaintext(data, options.collection, cb); } else { - parse.parse(data, options.collection, cb); + //if we're storing full json + parseWiki(data, options.collection, cb); } } catch (err) { console.log(err); } } } - - return } module.exports = doPage diff --git a/src/02-parse-wiki.js b/src/02-parse-wiki.js new file mode 100644 index 0000000..e34aa0c --- /dev/null +++ b/src/02-parse-wiki.js @@ -0,0 +1,31 @@ +const encode = require('./_encode'); +const wtf = require('wtf_wikipedia'); + +//get parsed json from the wiki markup +const parse = function(options, collection, cb) { + let data = wtf.parse(options.script); + //dont insert this if it's a redirect + if (options.skip_redirects === true && data.type === 'redirect') { + cb() + return + } + if (options.skip_disambig === true && data.type === 'disambiguation') { + cb() + return + } + data = encode.encodeData(data); + data.title = data.title || options.title; + data._id = encode.encodeStr(data.title); + // options.collection.update({ _id: data._id }, data, { upsert: true }, function(e) { + collection.insert(data, function(e) { + if (e) { + console.warn(e); + cb(e); + return + } + cb(); + }); +}; + + +module.exports = parse diff --git a/src/_done.js b/src/_done.js new file mode 100644 index 0000000..1141c70 --- /dev/null +++ b/src/_done.js @@ -0,0 +1,10 @@ + +//function to pretty-print when finished.. +const done = function(options, db) { + console.log('=================done!================='); + options.collection.count().then(count => { + console.log(count + " pages stored in db '" + options.db + "'"); + db.close(); + }); +}; +module.exports = done diff --git a/src/parse.js b/src/_encode.js similarity index 56% rename from src/parse.js rename to src/_encode.js index a4db946..3500fc6 100644 --- a/src/parse.js +++ b/src/_encode.js @@ -1,7 +1,6 @@ -let wtf = require('wtf_wikipedia'); -//these methods may run in their own processes - +// mongo has some opinions about what characters are allowed as keys and ids. //https://stackoverflow.com/questions/12397118/mongodb-dot-in-key-name/30254815#30254815 + const encodeStr = function(str) { return str .replace(/\\/g, '\\\\') @@ -56,47 +55,7 @@ const encodeData = function(data) { } return data; }; - -//get parsed json from the wiki markup -const parse = function(options, collection, cb) { - let data = wtf.parse(options.script); - //dont insert this if it's a redirect - if (options.skip_redirects === true && data.type === 'redirect') { - return cb() - } - if (options.skip_disambig === true && data.type === 'disambiguation') { - return cb() - } - data = encodeData(data); - data.title = data.title || options.title; - data._id = encodeStr(data.title); - // options.collection.update({ _id: data._id }, data, { upsert: true }, function(e) { - collection.insert(data, function(e) { - if (e) { - console.warn(e); - return cb(e); - } - return cb(); - }); -}; - -//get readable text from the wiki markup -const plaintext = function(options, collection, cb) { - let data = { - title: options.title, - _id: encodeStr(options.title), - plaintext: wtf.plaintext(options.script) - }; - collection.insert(data, function(e) { - if (e) { - console.log(e); - return cb(e); - } - return cb(); - }); -}; - module.exports = { - parse: parse, - plaintext: plaintext -}; + encodeData: encodeData, + encodeStr: encodeStr +} diff --git a/src/_plaintext.js b/src/_plaintext.js new file mode 100644 index 0000000..8970ce9 --- /dev/null +++ b/src/_plaintext.js @@ -0,0 +1,20 @@ +const wtf = require('wtf_wikipedia'); +const encode = require('./_encode'); + +//get readable text from the wiki markup +const plaintext = function(options, collection, cb) { + let data = { + title: options.title, + _id: encode.encodeStr(options.title), + plaintext: wtf.plaintext(options.script) + }; + collection.insert(data, function(e) { + if (e) { + console.log(e); + return cb(e); + } + return cb(); + }); +}; + +module.exports = plaintext diff --git a/src/index.js b/src/index.js index 3ef4d19..60ec481 100755 --- a/src/index.js +++ b/src/index.js @@ -5,32 +5,36 @@ const fs = require('fs'); const XmlStream = require('xml-stream'); const MongoClient = require('mongodb').MongoClient; const bz2 = require('unbzip2-stream'); -const doPage = require('./page'); +const doArticle = require('./01-article-logic'); +const done = require('./_done'); +const defaults = { + skip_first: 0, + verbose: true, + start_delay: 1000 +} +//open up a mongo db, and start xml-streaming.. const main = function(options, callback) { - options.skip_first = options.skip_first || 0 - options.verbose = options.verbose || false - options.threshold = options.threshold || 5000000 - options.start_delay = options.start_delay || 1000 + options = Object.assign(defaults, options) callback = callback || function() {}; - - if (options.skip_first > 0) { - console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') - } + //this is required if (!options.file) { console.log('please supply a filename for the wikipedia article dump in bz2 format'); process.exit(1); } - // make redis and queue requirement optional let queue = null; if (options.worker) { - queue = require('./queue'); + queue = require('./redis/queue'); + } + //log a handy msg about skipping.. + if (options.skip_first > 0) { + console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') } - // Connect to mongo let url = 'mongodb://localhost:27017/' + options.db; MongoClient.connect(url, function(err, db) { + let i = 1; //the # article we're on if (err) { console.log(err); process.exit(1); @@ -41,64 +45,32 @@ const main = function(options, callback) { let xml = new XmlStream(stream); xml._preserveAll = true; //keep newlines - let i = 1; - let last = 0; - let skipFirst = options.skip_first; - let pauseThreshold = options.threshold; - let startDelay = options.start_delay - - //this is our logger - console.log('\n\n --- starting xml parsing --\n') - let logger = setInterval(function() { - let diff = (i - last).toLocaleString() - console.log('\n\n+' + diff + ' pages - - (at #' + i.toLocaleString() + ')') - last = i - }, 5000); - - //this lets us a clear the queue - let holdUp = setInterval(function() { - if (i > pauseThreshold && i > skipFirst) { - console.log('\n\n-- taking a quick break..--') - let duration = Math.round((i / pauseThreshold) * startDelay); - xml.pause(); - setTimeout(function() { - xml.resume(); - console.log('.. ok back. \n') - }, duration) - } - }, 30000); - + // this is the xml element we're looking for. xml.on('endElement: page', function(page) { - i += 1 - if (i > skipFirst) { - doPage(page, options, queue, function() {}) + i += 1 //increment counter + if (i > options.skip_first) { + doArticle(page, options, queue, function() {}) } }); xml.on('error', function(message) { console.log('Parsing failed: ' + message); db.close(); + callback() }); - const done = function() { - console.log('=================done!================='); - options.collection.count().then(count => { - console.log(count + " pages stored in db '" + options.db + "'"); - db.close(); - clearInterval(logger) - clearInterval(holdUp) - callback(); - }); - }; - xml.on('end', function() { if (!queue) { - done(); + //finish-up immediately! + done(options, db); + callback(); } else { //let any remaining async writes complete console.log('--- just letting the queue finish-up...'); setTimeout(function() { - done(); + done(options, db); + db.close(); + callback(); }, 20000); //20 seconds } }); diff --git a/src/queue.js b/src/redis/queue.js similarity index 92% rename from src/queue.js rename to src/redis/queue.js index def9da8..8c99029 100644 --- a/src/queue.js +++ b/src/redis/queue.js @@ -6,7 +6,7 @@ let queue = kue.createQueue({ redis: { port: 6379, host: 'localhost' - //auth: '' + //auth: '' } }); diff --git a/src/worker.js b/src/redis/worker.js similarity index 57% rename from src/worker.js rename to src/redis/worker.js index 22a75d5..8350938 100644 --- a/src/worker.js +++ b/src/redis/worker.js @@ -1,12 +1,12 @@ -// run job queue dashboard to see statistics -// node node_modules/kue/bin/kue-dashboard -p 3050 -let util = require('util'); let cluster = require('cluster'); let clusterWorkerSize = require('os').cpus().length; -let concurrency = 1; -let doPage = require('./parse'); let MongoClient = require('mongodb').MongoClient; +let parseWiki = require('../02-parse-wiki'); +let plaintext = require('../_plaintext'); let queue = require('./queue'); +let concurrency = 1; +// run job queue dashboard to see statistics +// node node_modules/kue/bin/kue-dashboard -p 3050 if (cluster.isMaster) { for (let i = 0; i < clusterWorkerSize; i++) { @@ -14,18 +14,22 @@ if (cluster.isMaster) { } } else { // url should be improved by configuration or cli arguments - let url = 'mongodb://localhost:27017/wikipedia_queue'; - - MongoClient.connect(url, function(err, db) { + let queueUrl = 'mongodb://localhost:27017/wikipedia_queue'; + MongoClient.connect(queueUrl, function(err, db) { let collection = db.collection('wikipedia'); queue.process('article', concurrency, function(job, done) { - let url = job.data.url; let data = job.data; data.collection = collection; try { - doPage.parse(data, done); - } catch (err) { - console.log(err); + //if we're just storing article text + if (options.plaintext) { + plaintext(data, options.collection, done); + } else { + //if we're storing full json + parseWiki(data, options.collection, done); + } + } catch (err2) { + console.log(err2); } }); }); From 47f8e041aa6f6ed4b0be16a40f884f3cd62a43e2 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 8 Feb 2018 18:26:54 -0500 Subject: [PATCH 02/42] tests passing --- bin/wp2mongo.js | 6 +-- scratch.js | 7 ++++ src/01-article-logic.js | 10 ++--- src/{_plaintext.js => 02-plaintext.js} | 0 src/index.js | 25 +++++------- src/redis/worker.js | 2 +- tests/cli.test.js | 2 - tests/custom.test.js | 55 ++++++++++++-------------- tests/db.js | 5 +-- tests/plain.test.js | 2 - 10 files changed, 53 insertions(+), 61 deletions(-) create mode 100644 scratch.js rename src/{_plaintext.js => 02-plaintext.js} (100%) diff --git a/bin/wp2mongo.js b/bin/wp2mongo.js index 90aae25..0acc940 100755 --- a/bin/wp2mongo.js +++ b/bin/wp2mongo.js @@ -6,13 +6,11 @@ let parseArgs = function() { program .usage('node index.js enwiki-latest-pages-articles.xml.bz2 [options]') .option('-w, --worker', 'Use worker (redis required)') - .option('-plain, --plaintext', 'if true, store plaintext wikipedia articles') + .option('-plain, --plaintext', 'if true, store plaintext wikipedia articles instead of raw json data') .option('--skip_redirects', 'if true, skips-over pages that are redirects') .option('--skip_disambig', 'if true, skips-over disambiguation pages') .option('--skip_first ', 'ignore the first n pages, and do not pause while handling those pages', parseInt) .option('--verbose', 'print each article title to the console') - .option('--threshold ', 'number of articles to parse before introducing a pause every 30 seconds for the MongoDB queue to catch up; defaults to 5,000,000', parseInt) - .option('--start_delay ', 'initial pause (when the threshold is reached) in milliseconds; defaults to 1,000, and increases in proportion to the number of articles parsed', parseInt) .parse(process.argv) //grab the wiki file @@ -34,7 +32,7 @@ let parseArgs = function() { plaintext: program.plaintext, skip_disambig: program.skip_disambig, skip_redirects: program.skip_redirects, - skip_first: program.skip_first, + skip_first: program.skip_first || 0, verbose: program.verbose, } } diff --git a/scratch.js b/scratch.js new file mode 100644 index 0000000..adabb5e --- /dev/null +++ b/scratch.js @@ -0,0 +1,7 @@ +const w2m = require('./src') + +w2m({ + // file: './tests/tinywiki-latest-pages-articles.xml.bz2', + file: './tests/smallwiki-latest-pages-articles.xml.bz2', + db: 'enwiki3' +}) diff --git a/src/01-article-logic.js b/src/01-article-logic.js index 9ce9203..305085b 100644 --- a/src/01-article-logic.js +++ b/src/01-article-logic.js @@ -1,11 +1,11 @@ //logic for parsing an object's xml const parseWiki = require('./02-parse-wiki'); -const plaintext = require('./_plaintext'); +const plaintext = require('./02-plaintext'); // we send job to job queue (redis) // run job queue dashboard to see statistics // node node_modules/kue/bin/kue-dashboard -p 3050 -const doQueue = function(queue, data) { +const addToQueue = function(queue, data) { queue .create('article', data) .removeOnComplete(true) @@ -18,7 +18,7 @@ const doQueue = function(queue, data) { } // get wikiscript from the xml, parse it, and send it to mongo -const doPage = function(page, options, queue, cb) { +const doArticle = function(page, options, queue, cb) { //ignore 'talk pages', etc. if (page.ns === '0') { if (options.verbose === true) { @@ -33,7 +33,7 @@ const doPage = function(page, options, queue, cb) { }; //if we're using redis, if (queue !== null) { - doQueue(queue, data) + addToQueue(queue, data) } else { try { //if we're just storing article text @@ -49,4 +49,4 @@ const doPage = function(page, options, queue, cb) { } } } -module.exports = doPage +module.exports = doArticle diff --git a/src/_plaintext.js b/src/02-plaintext.js similarity index 100% rename from src/_plaintext.js rename to src/02-plaintext.js diff --git a/src/index.js b/src/index.js index 60ec481..a7e92a2 100755 --- a/src/index.js +++ b/src/index.js @@ -9,13 +9,12 @@ const doArticle = require('./01-article-logic'); const done = require('./_done'); const defaults = { skip_first: 0, - verbose: true, - start_delay: 1000 + verbose: true } //open up a mongo db, and start xml-streaming.. const main = function(options, callback) { - options = Object.assign(defaults, options) + options = Object.assign(options, defaults) callback = callback || function() {}; //this is required if (!options.file) { @@ -49,7 +48,9 @@ const main = function(options, callback) { xml.on('endElement: page', function(page) { i += 1 //increment counter if (i > options.skip_first) { - doArticle(page, options, queue, function() {}) + doArticle(page, options, queue, function() { + console.log(' - ') + }) } }); @@ -60,19 +61,13 @@ const main = function(options, callback) { }); xml.on('end', function() { - if (!queue) { - //finish-up immediately! + //let any remaining async writes complete + console.log('--- just letting the queue finish-up...'); + setTimeout(function() { done(options, db); + db.close(); callback(); - } else { - //let any remaining async writes complete - console.log('--- just letting the queue finish-up...'); - setTimeout(function() { - done(options, db); - db.close(); - callback(); - }, 20000); //20 seconds - } + }, 5000); //5 seconds }); }); }; diff --git a/src/redis/worker.js b/src/redis/worker.js index 8350938..079839c 100644 --- a/src/redis/worker.js +++ b/src/redis/worker.js @@ -2,7 +2,7 @@ let cluster = require('cluster'); let clusterWorkerSize = require('os').cpus().length; let MongoClient = require('mongodb').MongoClient; let parseWiki = require('../02-parse-wiki'); -let plaintext = require('../_plaintext'); +let plaintext = require('../02-plaintext'); let queue = require('./queue'); let concurrency = 1; // run job queue dashboard to see statistics diff --git a/tests/cli.test.js b/tests/cli.test.js index ba9ddad..339186d 100644 --- a/tests/cli.test.js +++ b/tests/cli.test.js @@ -1,8 +1,6 @@ let test = require('tape') var exec = require('shelljs').exec -const MongoClient = require('mongodb').MongoClient let db = require('./db') -let wp2mongo = require('../') // this test actually writes to mongodb! ( in the tlg-wikipedia table) test('test-real-smallwiki', function(t) { diff --git a/tests/custom.test.js b/tests/custom.test.js index c0980be..fa36362 100644 --- a/tests/custom.test.js +++ b/tests/custom.test.js @@ -1,9 +1,6 @@ let test = require('tape') -var exec = require('shelljs').exec -const MongoClient = require('mongodb').MongoClient let db = require('./db') let wp2mongo = require('../') - /* //to update the bz2, rm ./tests/tinywiki-latest-pages-articles.xml.bz2 && bzip2 -z ./tests/tinywiki-latest-pages-articles.xml @@ -38,29 +35,29 @@ test('custom-made-tinywiki', function(t) { }) }) -test('no-redirects', function(t) { - let obj = { - file: './tests/tinywiki-latest-pages-articles.xml.bz2', - db: 'tempwikiskip', - skip_redirects: true, - skip_disambig: true, - } - db.drop(obj.db, () => { - wp2mongo(obj, () => { - db.firstTen(obj.db, docs => { - t.equal(docs.length, 5, 'five records') - - let redirect = docs.find(d => d.title === 'Redirect page') - t.equal(undefined, redirect, 'no redirect-page') - - let disambig = docs.find(d => d.title === 'Disambiguation page') - t.equal(undefined, disambig, 'no disambig-page') - - let toronto = docs.find(d => d.title === 'Toronto') - t.equal("Toronto", toronto._id, 'has _id') - t.equal("Toronto", toronto.title, 'has title') - t.end() - }) - }) - }) -}) +// test('no-redirects', function(t) { +// let obj = { +// file: './tests/tinywiki-latest-pages-articles.xml.bz2', +// db: 'tempwikiskip', +// skip_redirects: true, +// skip_disambig: true, +// } +// db.drop(obj.db, () => { +// wp2mongo(obj, () => { +// db.firstTen(obj.db, docs => { +// t.equal(docs.length, 5, 'five records') +// +// let redirect = docs.find(d => d.title === 'Redirect page') +// t.equal(undefined, redirect, 'no redirect-page') +// +// let disambig = docs.find(d => d.title === 'Disambiguation page') +// t.equal(undefined, disambig, 'no disambig-page') +// +// let toronto = docs.find(d => d.title === 'Toronto') +// t.equal("Toronto", toronto._id, 'has _id') +// t.equal("Toronto", toronto.title, 'has title') +// t.end() +// }) +// }) +// }) +// }) diff --git a/tests/db.js b/tests/db.js index f19a28b..2d83d31 100644 --- a/tests/db.js +++ b/tests/db.js @@ -1,5 +1,4 @@ const MongoClient = require('mongodb').MongoClient -const assert = require('assert') const open = function(dbName, callback) { let url = 'mongodb://localhost:27017/' + dbName @@ -16,9 +15,9 @@ const open = function(dbName, callback) { const count = function(dbName, cb) { open(dbName, function(db) { let col = db.collection('wikipedia') - col.count().then(count => { + col.count().then(len => { db.close() - cb(count) + cb(len) }) }) } diff --git a/tests/plain.test.js b/tests/plain.test.js index 51563fd..52a2c76 100644 --- a/tests/plain.test.js +++ b/tests/plain.test.js @@ -1,6 +1,4 @@ let test = require('tape') -var exec = require('shelljs').exec -const MongoClient = require('mongodb').MongoClient let db = require('./db') let wp2mongo = require('../') From 9bb6b7ff3017e8e8219abc62d1ed88f27e876003 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 8 Feb 2018 19:42:05 -0500 Subject: [PATCH 03/42] pause until callback done --- scratch.js | 11 +++++-- src/00-init-db.js | 37 ++++++++++++++++++++++ src/01-article-logic.js | 27 ++++++---------- src/02-parse-wiki.js | 31 ------------------ src/02-plaintext.js | 20 ------------ src/02-transform-wiki.js | 38 ++++++++++++++++++++++ src/03-write-db.js | 19 +++++++++++ src/_done.js | 9 +++--- src/index.js | 68 +++++++++++++++++----------------------- 9 files changed, 145 insertions(+), 115 deletions(-) create mode 100644 src/00-init-db.js delete mode 100644 src/02-parse-wiki.js delete mode 100644 src/02-plaintext.js create mode 100644 src/02-transform-wiki.js create mode 100644 src/03-write-db.js diff --git a/scratch.js b/scratch.js index adabb5e..78b2663 100644 --- a/scratch.js +++ b/scratch.js @@ -1,7 +1,12 @@ const w2m = require('./src') +// w2m({ +// // file: './tests/tinywiki-latest-pages-articles.xml.bz2', +// file: './tests/smallwiki-latest-pages-articles.xml.bz2', +// db: 'enwiki3' +// }) + w2m({ - // file: './tests/tinywiki-latest-pages-articles.xml.bz2', - file: './tests/smallwiki-latest-pages-articles.xml.bz2', - db: 'enwiki3' + file: './tests/tinywiki-latest-pages-articles.xml.bz2', + db: 'tempwiki', }) diff --git a/src/00-init-db.js b/src/00-init-db.js new file mode 100644 index 0000000..eb81417 --- /dev/null +++ b/src/00-init-db.js @@ -0,0 +1,37 @@ +const MongoClient = require('mongodb').MongoClient; +const defaults = { + skip_first: 0, + verbose: true +} + +//start it up running +const init = function(options, callback) { + options = options || {} + options = Object.assign(options, defaults) + //this is required + if (!options.file) { + console.log('please supply a filename for the wikipedia article dump in bz2 format'); + process.exit(1); + } + //log a handy msg about skipping.. + if (options.skip_first > 0) { + console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') + } + // make redis and queue requirement optional + if (options.worker) { + options.queue = require('./redis/queue'); + } + // Connect to mongo + let url = 'mongodb://localhost:27017/' + options.db; + MongoClient.connect(url, function(err, db) { + if (err) { + console.log(err); + process.exit(1); + } + options.dbName = options.db + options.db = db + options.collection = db.collection('wikipedia'); + callback(options) + }) +} +module.exports = init diff --git a/src/01-article-logic.js b/src/01-article-logic.js index 305085b..1e9ab82 100644 --- a/src/01-article-logic.js +++ b/src/01-article-logic.js @@ -1,6 +1,5 @@ //logic for parsing an object's xml -const parseWiki = require('./02-parse-wiki'); -const plaintext = require('./02-plaintext'); +const transform = require('./02-transform-wiki'); // we send job to job queue (redis) // run job queue dashboard to see statistics @@ -18,35 +17,27 @@ const addToQueue = function(queue, data) { } // get wikiscript from the xml, parse it, and send it to mongo -const doArticle = function(page, options, queue, cb) { +const doArticle = function(page, options) { //ignore 'talk pages', etc. if (page.ns === '0') { - if (options.verbose === true) { - console.log(page.title); - } + // console.log(page.title); let script = page.revision.text['$text'] || ''; let data = { title: page.title, - script: script, - skip_redirects: options.skip_redirects, - skip_disambig: options.skip_disambig, + script: script }; //if we're using redis, - if (queue !== null) { - addToQueue(queue, data) + if (options.queue) { + addToQueue(options.queue, data) } else { try { - //if we're just storing article text - if (options.plaintext) { - plaintext(data, options.collection, cb); - } else { - //if we're storing full json - parseWiki(data, options.collection, cb); - } + return transform(data, options) } catch (err) { console.log(err); + return null } } } + return null } module.exports = doArticle diff --git a/src/02-parse-wiki.js b/src/02-parse-wiki.js deleted file mode 100644 index e34aa0c..0000000 --- a/src/02-parse-wiki.js +++ /dev/null @@ -1,31 +0,0 @@ -const encode = require('./_encode'); -const wtf = require('wtf_wikipedia'); - -//get parsed json from the wiki markup -const parse = function(options, collection, cb) { - let data = wtf.parse(options.script); - //dont insert this if it's a redirect - if (options.skip_redirects === true && data.type === 'redirect') { - cb() - return - } - if (options.skip_disambig === true && data.type === 'disambiguation') { - cb() - return - } - data = encode.encodeData(data); - data.title = data.title || options.title; - data._id = encode.encodeStr(data.title); - // options.collection.update({ _id: data._id }, data, { upsert: true }, function(e) { - collection.insert(data, function(e) { - if (e) { - console.warn(e); - cb(e); - return - } - cb(); - }); -}; - - -module.exports = parse diff --git a/src/02-plaintext.js b/src/02-plaintext.js deleted file mode 100644 index 8970ce9..0000000 --- a/src/02-plaintext.js +++ /dev/null @@ -1,20 +0,0 @@ -const wtf = require('wtf_wikipedia'); -const encode = require('./_encode'); - -//get readable text from the wiki markup -const plaintext = function(options, collection, cb) { - let data = { - title: options.title, - _id: encode.encodeStr(options.title), - plaintext: wtf.plaintext(options.script) - }; - collection.insert(data, function(e) { - if (e) { - console.log(e); - return cb(e); - } - return cb(); - }); -}; - -module.exports = plaintext diff --git a/src/02-transform-wiki.js b/src/02-transform-wiki.js new file mode 100644 index 0000000..48c6e22 --- /dev/null +++ b/src/02-transform-wiki.js @@ -0,0 +1,38 @@ +const wtf = require('wtf_wikipedia'); +const encode = require('./_encode'); + +//get readable text from the wiki markup +const plaintext = function(page) { + return { + title: page.title, + _id: encode.encodeStr(page.title), + plaintext: wtf.plaintext(page.script) + }; +} + +//get parsed json from the wiki markup +const parseData = function(page, options) { + let data = wtf.parse(page.script); + //dont insert this if it's a redirect + if (options.skip_redirects === true && data.type === 'redirect') { + return null + } + if (options.skip_disambig === true && data.type === 'disambiguation') { + return null + } + data = encode.encodeData(data); + data.title = data.title || page.title; + data._id = encode.encodeStr(data.title); + return data +}; + +// +const transform = function(page, options) { + //if we're just storing article text + if (options.plaintext) { + return plaintext(page, options); + } + //if we're storing full json + return parseData(page, options); +} +module.exports = transform diff --git a/src/03-write-db.js b/src/03-write-db.js new file mode 100644 index 0000000..0464515 --- /dev/null +++ b/src/03-write-db.js @@ -0,0 +1,19 @@ + +// +const writeDb = function(arr, collection, callback) { + collection.insertMany( + arr, + { + ordered: false + }, function(err, result) { + if (err) { + console.log(err) + } else { + console.log("+" + result.result.n); + } + callback() + } + ) + return +} +module.exports = writeDb diff --git a/src/_done.js b/src/_done.js index 1141c70..d28e3f3 100644 --- a/src/_done.js +++ b/src/_done.js @@ -1,10 +1,11 @@ //function to pretty-print when finished.. -const done = function(options, db) { - console.log('=================done!================='); +const done = function(options, callback) { + console.log('\n=================done!=================\n'); options.collection.count().then(count => { - console.log(count + " pages stored in db '" + options.db + "'"); - db.close(); + console.log(count + " pages stored in db '" + options.dbName + "'"); + options.db.close(); + callback() }); }; module.exports = done diff --git a/src/index.js b/src/index.js index a7e92a2..dcdb076 100755 --- a/src/index.js +++ b/src/index.js @@ -3,44 +3,23 @@ // node index.js afwiki-latest-pages-articles.xml.bz2 const fs = require('fs'); const XmlStream = require('xml-stream'); -const MongoClient = require('mongodb').MongoClient; const bz2 = require('unbzip2-stream'); +const init = require('./00-init-db'); const doArticle = require('./01-article-logic'); +const writeDb = require('./03-write-db'); const done = require('./_done'); -const defaults = { - skip_first: 0, - verbose: true -} +const batchSize = 10 //open up a mongo db, and start xml-streaming.. const main = function(options, callback) { - options = Object.assign(options, defaults) - callback = callback || function() {}; - //this is required - if (!options.file) { - console.log('please supply a filename for the wikipedia article dump in bz2 format'); - process.exit(1); - } - // make redis and queue requirement optional - let queue = null; - if (options.worker) { - queue = require('./redis/queue'); - } - //log a handy msg about skipping.. - if (options.skip_first > 0) { - console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') - } + callback = callback || function() {} // Connect to mongo - let url = 'mongodb://localhost:27017/' + options.db; - MongoClient.connect(url, function(err, db) { + init(options, function(params) { let i = 1; //the # article we're on - if (err) { - console.log(err); - process.exit(1); - } - options.collection = db.collection('wikipedia'); + let queue = [] //the articles to write + // Create a file stream and pass it to XmlStream - let stream = fs.createReadStream(options.file).pipe(bz2()); + let stream = fs.createReadStream(params.file).pipe(bz2()); let xml = new XmlStream(stream); xml._preserveAll = true; //keep newlines @@ -48,9 +27,19 @@ const main = function(options, callback) { xml.on('endElement: page', function(page) { i += 1 //increment counter if (i > options.skip_first) { - doArticle(page, options, queue, function() { - console.log(' - ') - }) + let data = doArticle(page, params, queue) + //add these to a queue of pages + if (data !== null) { + queue.push(data) + if (queue.length >= batchSize) { + xml.pause() + writeDb(queue, options.collection, () => { + console.log('\n\n') + xml.resume() + }) + queue = [] + } + } } }); @@ -61,14 +50,15 @@ const main = function(options, callback) { }); xml.on('end', function() { - //let any remaining async writes complete - console.log('--- just letting the queue finish-up...'); - setTimeout(function() { - done(options, db); - db.close(); - callback(); - }, 5000); //5 seconds + if (queue.length > 0) { + writeDb(queue, options.collection, () => { + done(options, callback) + }) + } else { + done(options, callback) + } }); + }); }; From 6b38a0cbfed216bb34f2885b4a3f3e6b7e591df0 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 8 Feb 2018 19:48:52 -0500 Subject: [PATCH 04/42] tests passing --- src/00-init-db.js | 3 +-- src/01-article-logic.js | 2 +- src/03-write-db.js | 2 +- src/_done.js | 4 ++-- src/index.js | 2 +- tests/cli.test.js | 2 -- 6 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/00-init-db.js b/src/00-init-db.js index eb81417..767de40 100644 --- a/src/00-init-db.js +++ b/src/00-init-db.js @@ -28,8 +28,7 @@ const init = function(options, callback) { console.log(err); process.exit(1); } - options.dbName = options.db - options.db = db + options.database = db options.collection = db.collection('wikipedia'); callback(options) }) diff --git a/src/01-article-logic.js b/src/01-article-logic.js index 1e9ab82..eafe3ad 100644 --- a/src/01-article-logic.js +++ b/src/01-article-logic.js @@ -20,7 +20,7 @@ const addToQueue = function(queue, data) { const doArticle = function(page, options) { //ignore 'talk pages', etc. if (page.ns === '0') { - // console.log(page.title); + console.log(page.title); let script = page.revision.text['$text'] || ''; let data = { title: page.title, diff --git a/src/03-write-db.js b/src/03-write-db.js index 0464515..60ecb8c 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -9,7 +9,7 @@ const writeDb = function(arr, collection, callback) { if (err) { console.log(err) } else { - console.log("+" + result.result.n); + console.log(" - - +" + result.result.n); } callback() } diff --git a/src/_done.js b/src/_done.js index d28e3f3..ff86fa2 100644 --- a/src/_done.js +++ b/src/_done.js @@ -3,8 +3,8 @@ const done = function(options, callback) { console.log('\n=================done!=================\n'); options.collection.count().then(count => { - console.log(count + " pages stored in db '" + options.dbName + "'"); - options.db.close(); + console.log(count + " pages stored in db '" + options.db + "'"); + options.database.close(); callback() }); }; diff --git a/src/index.js b/src/index.js index dcdb076..de53748 100755 --- a/src/index.js +++ b/src/index.js @@ -45,7 +45,7 @@ const main = function(options, callback) { xml.on('error', function(message) { console.log('Parsing failed: ' + message); - db.close(); + options.database.close(); callback() }); diff --git a/tests/cli.test.js b/tests/cli.test.js index 339186d..d3e3115 100644 --- a/tests/cli.test.js +++ b/tests/cli.test.js @@ -4,13 +4,11 @@ let db = require('./db') // this test actually writes to mongodb! ( in the tlg-wikipedia table) test('test-real-smallwiki', function(t) { - console.time('test') db.drop('smallwiki', () => { exec('./bin/wp2mongo.js ./tests/smallwiki-latest-pages-articles.xml.bz2') db.count('smallwiki', count => { t.equal(count, 1050, 'count-is-correct') db.drop('smallwiki', () => { - console.timeEnd('test') t.end() }) }) From a7f76bfd79934dff6f1f11c1437511455dfd9fec Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 8 Feb 2018 19:54:38 -0500 Subject: [PATCH 05/42] remove redis client --- src/00-init-db.js | 4 ---- src/01-article-logic.js | 30 +++++------------------------- src/index.js | 8 ++++---- src/redis/queue.js | 13 ------------- src/redis/worker.js | 36 ------------------------------------ 5 files changed, 9 insertions(+), 82 deletions(-) delete mode 100644 src/redis/queue.js delete mode 100644 src/redis/worker.js diff --git a/src/00-init-db.js b/src/00-init-db.js index 767de40..27c61ac 100644 --- a/src/00-init-db.js +++ b/src/00-init-db.js @@ -17,10 +17,6 @@ const init = function(options, callback) { if (options.skip_first > 0) { console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') } - // make redis and queue requirement optional - if (options.worker) { - options.queue = require('./redis/queue'); - } // Connect to mongo let url = 'mongodb://localhost:27017/' + options.db; MongoClient.connect(url, function(err, db) { diff --git a/src/01-article-logic.js b/src/01-article-logic.js index eafe3ad..5e53803 100644 --- a/src/01-article-logic.js +++ b/src/01-article-logic.js @@ -1,21 +1,6 @@ //logic for parsing an object's xml const transform = require('./02-transform-wiki'); -// we send job to job queue (redis) -// run job queue dashboard to see statistics -// node node_modules/kue/bin/kue-dashboard -p 3050 -const addToQueue = function(queue, data) { - queue - .create('article', data) - .removeOnComplete(true) - .attempts(3) - .backoff({ - delay: 10 * 1000, - type: 'exponential' - }) - .save(); -} - // get wikiscript from the xml, parse it, and send it to mongo const doArticle = function(page, options) { //ignore 'talk pages', etc. @@ -26,16 +11,11 @@ const doArticle = function(page, options) { title: page.title, script: script }; - //if we're using redis, - if (options.queue) { - addToQueue(options.queue, data) - } else { - try { - return transform(data, options) - } catch (err) { - console.log(err); - return null - } + try { + return transform(data, options) + } catch (err) { + console.log(err); + return null } } return null diff --git a/src/index.js b/src/index.js index de53748..d8e16fd 100755 --- a/src/index.js +++ b/src/index.js @@ -31,13 +31,13 @@ const main = function(options, callback) { //add these to a queue of pages if (data !== null) { queue.push(data) + //should we write to the db now? if (queue.length >= batchSize) { - xml.pause() + xml.pause() //hold-up for now writeDb(queue, options.collection, () => { - console.log('\n\n') - xml.resume() + queue = [] + xml.resume() //ok, go again }) - queue = [] } } } diff --git a/src/redis/queue.js b/src/redis/queue.js deleted file mode 100644 index 8c99029..0000000 --- a/src/redis/queue.js +++ /dev/null @@ -1,13 +0,0 @@ -let kue = require('kue'); - -let queue = kue.createQueue({ - prefix: 'q', - jobEvents: false, - redis: { - port: 6379, - host: 'localhost' - //auth: '' - } -}); - -module.exports = queue; diff --git a/src/redis/worker.js b/src/redis/worker.js deleted file mode 100644 index 079839c..0000000 --- a/src/redis/worker.js +++ /dev/null @@ -1,36 +0,0 @@ -let cluster = require('cluster'); -let clusterWorkerSize = require('os').cpus().length; -let MongoClient = require('mongodb').MongoClient; -let parseWiki = require('../02-parse-wiki'); -let plaintext = require('../02-plaintext'); -let queue = require('./queue'); -let concurrency = 1; -// run job queue dashboard to see statistics -// node node_modules/kue/bin/kue-dashboard -p 3050 - -if (cluster.isMaster) { - for (let i = 0; i < clusterWorkerSize; i++) { - cluster.fork(); - } -} else { - // url should be improved by configuration or cli arguments - let queueUrl = 'mongodb://localhost:27017/wikipedia_queue'; - MongoClient.connect(queueUrl, function(err, db) { - let collection = db.collection('wikipedia'); - queue.process('article', concurrency, function(job, done) { - let data = job.data; - data.collection = collection; - try { - //if we're just storing article text - if (options.plaintext) { - plaintext(data, options.collection, done); - } else { - //if we're storing full json - parseWiki(data, options.collection, done); - } - } catch (err2) { - console.log(err2); - } - }); - }); -} From 691c352da7d445170580eec75987a1c85e829cd9 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 8 Feb 2018 19:56:28 -0500 Subject: [PATCH 06/42] remove redis from readme --- README.md | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 1560346..e2b1836 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ you can do this. a few Gb. you can do this. ### 2) get ready -Install [nodejs](https://nodejs.org/en/), [mongodb](https://docs.mongodb.com/manual/installation/), and optionally [redis](http://redis.io/) +Install [nodejs](https://nodejs.org/en/), [mongodb](https://docs.mongodb.com/manual/installation/) ```bash # start mongo @@ -61,7 +61,7 @@ the english/german ones are bigger. Use whichever xml dump you'd like. The [down wp2mongo ./afwiki-latest-pages-articles.xml.bz2 ``` ### 5) take a bath -just put some [epsom salts](https://www.youtube.com/watch?v=QSlIHCu2Smw) in there, it feels great. You deserve a break once and a while. The en-wiki dump should take a few hours. Should be done before dinner. +just put some [epsom salts](https://www.youtube.com/watch?v=QSlIHCu2Smw) in there, it feels great. You deserve a break once and a while. The en-wiki dump should take a few hours. Maybe 8. Should be done before dinner. ### 6) check-out your data to view your data in the mongo console, @@ -96,26 +96,6 @@ wp2mongo({file:'./myfile.xml.bz2', db: 'enwiki', plaintext:true}, console.log) }] */ ``` -#### go faster with Redis **--worker** -there is yet much faster way (even x10) to import all pages into mongodb but a little more complex. it requires redis installed on your computer and running worker in separate process. - -It also gives you a cool dashboard, to watch the progress. -````bash -# install redis -sudo apt-get install # (or `brew install redis` on a mac) - -# clone the repo -git clone git@github.com:spencermountain/wikipedia-to-mongodb.git && cd wikipedia-to-mongodb - -#load pages into job queue -bin/wp2mongo.js ./afwiki-latest-pages-articles.xml.bz2 --worker - -# start processing jobs (parsing articles and saving to mongodb) on all CPU's -node src/worker.js - -# you can preview processing jobs in kue dashboard (localhost:3000) -node node_modules/kue/bin/kue-dashboard -p 3000 -```` #### skip unnecessary pages **--skip_disambig**, **--skip_redirects** this can make it go faster too, by skipping entries in the dump that aren't full-on articles. From 27c73f4b5fff2cf99316a57936c73a18772520dc Mon Sep 17 00:00:00 2001 From: devrim Date: Fri, 9 Feb 2018 10:24:27 -0800 Subject: [PATCH 07/42] fixes on re-write - redis worker no longer needed - async operations - collect errors per batch (insertMany results/errors are not always errors and/or results in our case, eg duplicates not being inserted is ok - let's collect them in errors, then deal with them after done() fn is called - auto_skip amount of docs that are in the main collection tbd: split the file in chunks and run dump in multiple threads. --- bin/wp2mongo.js | 12 +- package-lock.json | 2047 +++++++++++++++++++++++++++++++++++++++ src/00-init-db.js | 37 +- src/01-article-logic.js | 4 +- src/03-write-db.js | 38 +- src/_done.js | 9 +- src/index.js | 101 +- 7 files changed, 2167 insertions(+), 81 deletions(-) create mode 100644 package-lock.json diff --git a/bin/wp2mongo.js b/bin/wp2mongo.js index 0acc940..d73f7e5 100755 --- a/bin/wp2mongo.js +++ b/bin/wp2mongo.js @@ -5,11 +5,12 @@ let main = require('../src/index') let parseArgs = function() { program .usage('node index.js enwiki-latest-pages-articles.xml.bz2 [options]') - .option('-w, --worker', 'Use worker (redis required)') + .option('--batch_size ', 'Number of pages inserted to Mongo at once. (default=10)', parseInt) + .option('--skip_first ', 'ignore the first n pages, and do not pause while handling those pages', parseInt) + .option('--auto_skip', 'auto skip number of documents in the target collection') .option('-plain, --plaintext', 'if true, store plaintext wikipedia articles instead of raw json data') .option('--skip_redirects', 'if true, skips-over pages that are redirects') .option('--skip_disambig', 'if true, skips-over disambiguation pages') - .option('--skip_first ', 'ignore the first n pages, and do not pause while handling those pages', parseInt) .option('--verbose', 'print each article title to the console') .parse(process.argv) @@ -28,14 +29,15 @@ let parseArgs = function() { return { file: file, db: db, - worker: program.worker, + batch_size: program.batch_size || 10, plaintext: program.plaintext, skip_disambig: program.skip_disambig, skip_redirects: program.skip_redirects, - skip_first: program.skip_first || 0, + auto_skip: program.auto_skip, + skip_first: program.skip_first, verbose: program.verbose, } } - let obj = parseArgs() +console.log(obj); main(obj) diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..fa41b3d --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2047 @@ +{ + "name": "wikipedia-to-mongodb", + "version": "2.4.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "accepts": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", + "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", + "requires": { + "mime-types": "2.1.17", + "negotiator": "0.6.1" + } + }, + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" + }, + "acorn-globals": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz", + "integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=", + "requires": { + "acorn": "4.0.13" + }, + "dependencies": { + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" + } + } + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + } + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "apparatus": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.9.tgz", + "integrity": "sha1-N9zSWDStC2UQdllikduCPusZCL0=", + "optional": true, + "requires": { + "sylvester": "0.0.21" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base64-js": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz", + "integrity": "sha1-EQHpVE9KdrG8OybUUsqW16NeeXg=" + }, + "bindings": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz", + "integrity": "sha512-DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw==" + }, + "body-parser": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", + "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", + "requires": { + "bytes": "3.0.0", + "content-type": "1.0.4", + "debug": "2.6.9", + "depd": "1.1.2", + "http-errors": "1.6.2", + "iconv-lite": "0.4.19", + "on-finished": "2.3.0", + "qs": "6.5.1", + "raw-body": "2.3.2", + "type-is": "1.6.15" + } + }, + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "bson": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/bson/-/bson-1.0.4.tgz", + "integrity": "sha1-k8ENOeqltYQVy8QFLz5T5WKwtyw=" + }, + "buffer": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz", + "integrity": "sha1-pyyTb3e5a/UvX357RnGAYoVR3vs=", + "requires": { + "base64-js": "0.0.8", + "ieee754": "1.1.8", + "isarray": "1.0.0" + } + }, + "buffer-shims": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", + "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=" + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "requires": { + "align-text": "0.1.4", + "lazy-cache": "1.0.4" + } + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + } + }, + "character-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", + "integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=", + "requires": { + "is-regex": "1.0.4" + } + }, + "clean-css": { + "version": "3.4.28", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", + "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", + "requires": { + "commander": "2.8.1", + "source-map": "0.4.4" + }, + "dependencies": { + "commander": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", + "requires": { + "graceful-readlink": "1.0.1" + } + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "requires": { + "amdefine": "1.0.1" + } + } + } + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "requires": { + "center-align": "0.1.3", + "right-align": "0.1.3", + "wordwrap": "0.0.2" + } + }, + "cluster": { + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/cluster/-/cluster-0.7.7.tgz", + "integrity": "sha1-5JfiZ8yVa9CwUTrbSqOTNX0Ahe8=", + "requires": { + "log": "1.4.0", + "mkdirp": "0.5.1" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "requires": { + "delayed-stream": "1.0.0" + } + }, + "commander": { + "version": "2.14.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz", + "integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==" + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "constantinople": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-3.1.0.tgz", + "integrity": "sha1-dWnKqKo/jVk11i4fqW+fcCzYHHk=", + "requires": { + "acorn": "3.3.0", + "is-expression": "2.1.0" + } + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "cookiejar": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz", + "integrity": "sha1-Qa1XsbVVlR7BcUEqgZQrHoIA00o=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "css-parse": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz", + "integrity": "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", + "dev": true + }, + "define-properties": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", + "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", + "dev": true, + "requires": { + "foreach": "2.0.5", + "object-keys": "1.0.11" + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "doctypes": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz", + "integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=" + }, + "double-ended-queue": { + "version": "2.1.0-0", + "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", + "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=" + }, + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "requires": { + "is-arrayish": "0.2.1" + } + }, + "es-abstract": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz", + "integrity": "sha512-/uh/DhdqIOSkAWifU+8nG78vlQxdLckUdI/sPgy0VhuXi2qJ7T8czBmqIYtLQVpCIFYafChnsRsB5pyb1JdmCQ==", + "dev": true, + "requires": { + "es-to-primitive": "1.1.1", + "function-bind": "1.1.1", + "has": "1.0.1", + "is-callable": "1.1.3", + "is-regex": "1.0.4" + } + }, + "es-to-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", + "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "dev": true, + "requires": { + "is-callable": "1.1.3", + "is-date-object": "1.0.1", + "is-symbol": "1.0.1" + } + }, + "es6-promise": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.2.1.tgz", + "integrity": "sha1-7FYjOGgDKQkgcXDDlEjiREndH8Q=" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "express": { + "version": "4.16.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz", + "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=", + "requires": { + "accepts": "1.3.4", + "array-flatten": "1.1.1", + "body-parser": "1.18.2", + "content-disposition": "0.5.2", + "content-type": "1.0.4", + "cookie": "0.3.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "1.1.2", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "finalhandler": "1.1.0", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "1.1.2", + "on-finished": "2.3.0", + "parseurl": "1.3.2", + "path-to-regexp": "0.1.7", + "proxy-addr": "2.0.2", + "qs": "6.5.1", + "range-parser": "1.2.0", + "safe-buffer": "5.1.1", + "send": "0.16.1", + "serve-static": "1.13.1", + "setprototypeof": "1.1.0", + "statuses": "1.3.1", + "type-is": "1.6.15", + "utils-merge": "1.0.1", + "vary": "1.1.2" + }, + "dependencies": { + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" + } + } + }, + "extend": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extend/-/extend-1.3.0.tgz", + "integrity": "sha1-0VFvsP9WJNLr+RI+odrFoZlABPg=" + }, + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5", + "object-assign": "4.1.1" + } + }, + "finalhandler": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", + "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", + "requires": { + "debug": "2.6.9", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "on-finished": "2.3.0", + "parseurl": "1.3.2", + "statuses": "1.3.1", + "unpipe": "1.0.0" + }, + "dependencies": { + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" + } + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + } + }, + "for-each": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz", + "integrity": "sha1-LEBFC5NI6X8oEyJZO6lnBLmr1NQ=", + "dev": true, + "requires": { + "is-function": "1.0.1" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "form-data": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", + "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "formidable": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz", + "integrity": "sha1-lriIb3w8NQi5Mta9cMTTqI818ak=" + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" + }, + "glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + }, + "has": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", + "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", + "requires": { + "function-bind": "1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" + }, + "http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "requires": { + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": "1.4.0" + }, + "dependencies": { + "depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" + } + } + }, + "iconv": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/iconv/-/iconv-2.3.0.tgz", + "integrity": "sha512-eu9senpOZ7wzNweLX09jtrCdmEiie8Z5/iMxdIq3i7tkgg562EwKSU9yjXMz8ncaQ0B+845vbqAz+1kPFXzbtQ==", + "requires": { + "nan": "2.8.0" + } + }, + "iconv-lite": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", + "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" + }, + "ieee754": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", + "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "interpret": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", + "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", + "dev": true + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + }, + "ipaddr.js": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz", + "integrity": "sha1-1LUFvemUaYfM8PxY2QEP+WB+P6A=" + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "requires": { + "builtin-modules": "1.1.1" + } + }, + "is-callable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", + "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=", + "dev": true + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true + }, + "is-expression": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-2.1.0.tgz", + "integrity": "sha1-kb6dR968/vB3l36XIr5tz7RGXvA=", + "requires": { + "acorn": "3.3.0", + "object-assign": "4.1.1" + } + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "is-function": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", + "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=", + "dev": true + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "requires": { + "has": "1.0.1" + } + }, + "is-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", + "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "js-stringify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", + "integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds=" + }, + "jshashes": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/jshashes/-/jshashes-1.0.7.tgz", + "integrity": "sha1-vtjJeg6WMv0FE5FvVfdt1Uhr5Z8=" + }, + "jstransformer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", + "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=", + "requires": { + "is-promise": "2.1.0", + "promise": "7.3.1" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "1.1.6" + } + }, + "kue": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/kue/-/kue-0.11.6.tgz", + "integrity": "sha512-56Jic22qSqdJ3nNpkhVr6RUx/QKalfdBdU0m70hgBKEkhBAgdt6Qr74evec+bM+LGmNbEC6zGGDskX4mcgBYcQ==", + "requires": { + "body-parser": "1.18.2", + "express": "4.16.2", + "lodash": "4.17.5", + "nib": "1.1.2", + "node-redis-warlock": "0.2.0", + "pug": "2.0.0-rc.4", + "redis": "2.6.5", + "reds": "0.2.5", + "stylus": "0.54.5", + "yargs": "4.8.1" + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "requires": { + "invert-kv": "1.0.0" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + } + }, + "lodash": { + "version": "4.17.5", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz", + "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==" + }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + }, + "log": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/log/-/log-1.4.0.tgz", + "integrity": "sha1-S6HYkP3iSbAx3KA7w36q8yVlbxw=" + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" + }, + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "1.1.8" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "mongodb": { + "version": "2.2.34", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.34.tgz", + "integrity": "sha1-o09Zu+thdUrsQy3nLD/iFSakTBo=", + "requires": { + "es6-promise": "3.2.1", + "mongodb-core": "2.1.18", + "readable-stream": "2.2.7" + } + }, + "mongodb-core": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.18.tgz", + "integrity": "sha1-TEYTm986HwMt7ZHbSfOO7AFlkFA=", + "requires": { + "bson": "1.0.4", + "require_optional": "1.0.1" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "nan": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", + "integrity": "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo=" + }, + "natural": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/natural/-/natural-0.2.1.tgz", + "integrity": "sha1-HrUVap2QtFkZSeIOlOvHe7Iznto=", + "optional": true, + "requires": { + "apparatus": "0.0.9", + "sylvester": "0.0.21", + "underscore": "1.8.3" + } + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" + }, + "nib": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/nib/-/nib-1.1.2.tgz", + "integrity": "sha1-amnt5AgblcDe+L4CSkyK4MLLtsc=", + "requires": { + "stylus": "0.54.5" + } + }, + "node-expat": { + "version": "2.3.16", + "resolved": "https://registry.npmjs.org/node-expat/-/node-expat-2.3.16.tgz", + "integrity": "sha512-e3HyQI0lk5CXyYQ4RsDYGiWdY5LJxNMlNCzo4/gwqY8lhYIeTf5VwGirGDa1EPrcZROmOR37wHuFVnoHmOWnOw==", + "requires": { + "bindings": "1.3.0", + "nan": "2.8.0" + } + }, + "node-redis-scripty": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/node-redis-scripty/-/node-redis-scripty-0.0.5.tgz", + "integrity": "sha1-S/LTZattqyAswIt6xj+PVarcliU=", + "requires": { + "extend": "1.3.0", + "lru-cache": "2.7.3" + } + }, + "node-redis-warlock": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/node-redis-warlock/-/node-redis-warlock-0.2.0.tgz", + "integrity": "sha1-VjlbmUyCjo4y9qrlO5O27fzZeZA=", + "requires": { + "node-redis-scripty": "0.0.5", + "uuid": "2.0.3" + } + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.5.0", + "validate-npm-package-license": "3.0.1" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-inspect": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz", + "integrity": "sha512-OHHnLgLNXpM++GnJRyyhbr2bwl3pPVm4YvaraHrRvDt/N3r+s/gDVHciA7EJBTkijKXj61ssgSAikq1fb0IBRg==", + "dev": true + }, + "object-keys": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", + "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1.0.2" + } + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "requires": { + "lcid": "1.0.0" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "1.3.1" + } + }, + "parse-ms": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz", + "integrity": "sha1-VjRtR0nXjyNDDKDHE4UK75GqNh0=", + "dev": true + }, + "parseurl": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", + "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "2.0.4" + } + }, + "plur": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz", + "integrity": "sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY=", + "dev": true + }, + "pretty-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz", + "integrity": "sha1-QlfCVt8/sLRR1q/6qwIYhBJpgdw=", + "dev": true, + "requires": { + "is-finite": "1.0.2", + "parse-ms": "1.0.1", + "plur": "1.0.0" + } + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "requires": { + "asap": "2.0.6" + } + }, + "proxy-addr": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz", + "integrity": "sha1-ZXFQT0e7mI7IGAJT+F3X4UlSvew=", + "requires": { + "forwarded": "0.1.2", + "ipaddr.js": "1.5.2" + } + }, + "pug": { + "version": "2.0.0-rc.4", + "resolved": "https://registry.npmjs.org/pug/-/pug-2.0.0-rc.4.tgz", + "integrity": "sha512-SL7xovj6E2Loq9N0UgV6ynjMLW4urTFY/L/Fprhvz13Xc5vjzkjZjI1QHKq31200+6PSD8PyU6MqrtCTJj6/XA==", + "requires": { + "pug-code-gen": "2.0.0", + "pug-filters": "2.1.5", + "pug-lexer": "3.1.0", + "pug-linker": "3.0.3", + "pug-load": "2.0.9", + "pug-parser": "4.0.0", + "pug-runtime": "2.0.3", + "pug-strip-comments": "1.0.2" + } + }, + "pug-attrs": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-2.0.2.tgz", + "integrity": "sha1-i+KyIlVo/6ddG4Zpgr/59BEa/8s=", + "requires": { + "constantinople": "3.1.0", + "js-stringify": "1.0.2", + "pug-runtime": "2.0.3" + } + }, + "pug-code-gen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-2.0.0.tgz", + "integrity": "sha512-E4oiJT+Jn5tyEIloj8dIJQognbiNNp0i0cAJmYtQTFS0soJ917nlIuFtqVss3IXMEyQKUew3F4gIkBpn18KbVg==", + "requires": { + "constantinople": "3.1.0", + "doctypes": "1.1.0", + "js-stringify": "1.0.2", + "pug-attrs": "2.0.2", + "pug-error": "1.3.2", + "pug-runtime": "2.0.3", + "void-elements": "2.0.1", + "with": "5.1.1" + } + }, + "pug-error": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-1.3.2.tgz", + "integrity": "sha1-U659nSm7A89WRJOgJhCfVMR/XyY=" + }, + "pug-filters": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-2.1.5.tgz", + "integrity": "sha512-xkw71KtrC4sxleKiq+cUlQzsiLn8pM5+vCgkChW2E6oNOzaqTSIBKIQ5cl4oheuDzvJYCTSYzRaVinMUrV4YLQ==", + "requires": { + "clean-css": "3.4.28", + "constantinople": "3.1.0", + "jstransformer": "1.0.0", + "pug-error": "1.3.2", + "pug-walk": "1.1.5", + "resolve": "1.5.0", + "uglify-js": "2.8.29" + } + }, + "pug-lexer": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-3.1.0.tgz", + "integrity": "sha1-/QhzdtSmdbT1n4/vQiiDQ06VgaI=", + "requires": { + "character-parser": "2.2.0", + "is-expression": "3.0.0", + "pug-error": "1.3.2" + }, + "dependencies": { + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" + }, + "is-expression": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-3.0.0.tgz", + "integrity": "sha1-Oayqa+f9HzRx3ELHQW5hwkMXrJ8=", + "requires": { + "acorn": "4.0.13", + "object-assign": "4.1.1" + } + } + } + }, + "pug-linker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-3.0.3.tgz", + "integrity": "sha512-DCKczglCXOzJ1lr4xUj/lVHYvS+lGmR2+KTCjZjtIpdwaN7lNOoX2SW6KFX5X4ElvW+6ThwB+acSUg08UJFN5A==", + "requires": { + "pug-error": "1.3.2", + "pug-walk": "1.1.5" + } + }, + "pug-load": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-2.0.9.tgz", + "integrity": "sha512-BDdZOCru4mg+1MiZwRQZh25+NTRo/R6/qArrdWIf308rHtWA5N9kpoUskRe4H6FslaQujC+DigH9LqlBA4gf6Q==", + "requires": { + "object-assign": "4.1.1", + "pug-walk": "1.1.5" + } + }, + "pug-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-4.0.0.tgz", + "integrity": "sha512-ocEUFPdLG9awwFj0sqi1uiZLNvfoodCMULZzkRqILryIWc/UUlDlxqrKhKjAIIGPX/1SNsvxy63+ayEGocGhQg==", + "requires": { + "pug-error": "1.3.2", + "token-stream": "0.0.1" + } + }, + "pug-runtime": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-2.0.3.tgz", + "integrity": "sha1-mBYmB7D86eJU1CfzOYelrucWi9o=" + }, + "pug-strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-1.0.2.tgz", + "integrity": "sha1-0xOvoBvMN0mA4TmeI+vy65vchRM=", + "requires": { + "pug-error": "1.3.2" + } + }, + "pug-walk": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-1.1.5.tgz", + "integrity": "sha512-rJlH1lXerCIAtImXBze3dtKq/ykZMA4rpO9FnPcIgsWcxZLOvd8zltaoeOVFyBSSqCkhhJWbEbTMga8UxWUUSA==" + }, + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + }, + "raw-body": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", + "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", + "requires": { + "bytes": "3.0.0", + "http-errors": "1.6.2", + "iconv-lite": "0.4.19", + "unpipe": "1.0.0" + } + }, + "re-emitter": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/re-emitter/-/re-emitter-1.1.3.tgz", + "integrity": "sha1-+p4xn/3u6zWycpbvDz03TawvUqc=", + "dev": true + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + } + }, + "readable-stream": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.7.tgz", + "integrity": "sha1-BwV6y+JGeyIELTb5jFrVBwVOlbE=", + "requires": { + "buffer-shims": "1.0.0", + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "1.5.0" + } + }, + "redis": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/redis/-/redis-2.6.5.tgz", + "integrity": "sha1-h8Hv9KSJ+Utwhx89CLaYjyOpVoc=", + "requires": { + "double-ended-queue": "2.1.0-0", + "redis-commands": "1.3.1", + "redis-parser": "2.6.0" + } + }, + "redis-commands": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.1.tgz", + "integrity": "sha1-gdgm9F+pyLIBH0zXoP5ZfSQdRCs=" + }, + "redis-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", + "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=" + }, + "reds": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/reds/-/reds-0.2.5.tgz", + "integrity": "sha1-OKdn92Y810kDaEhpfYLHT9KbwB8=", + "optional": true, + "requires": { + "natural": "0.2.1", + "redis": "0.12.1" + }, + "dependencies": { + "redis": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/redis/-/redis-0.12.1.tgz", + "integrity": "sha1-ZN92rQ/IrOuuvSoGReikj6xJGF4=", + "optional": true + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + }, + "require_optional": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", + "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", + "requires": { + "resolve-from": "2.0.0", + "semver": "5.5.0" + } + }, + "resolve": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz", + "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==", + "requires": { + "path-parse": "1.0.5" + } + }, + "resolve-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", + "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" + }, + "resumer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", + "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "requires": { + "align-text": "0.1.4" + } + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, + "sax": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz", + "integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE=" + }, + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" + }, + "send": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz", + "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==", + "requires": { + "debug": "2.6.9", + "depd": "1.1.2", + "destroy": "1.0.4", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "fresh": "0.5.2", + "http-errors": "1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "2.3.0", + "range-parser": "1.2.0", + "statuses": "1.3.1" + }, + "dependencies": { + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" + } + } + }, + "serve-static": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz", + "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==", + "requires": { + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "parseurl": "1.3.2", + "send": "0.16.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" + }, + "shelljs": { + "version": "0.7.8", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz", + "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", + "dev": true, + "requires": { + "glob": "7.0.6", + "interpret": "1.1.0", + "rechoir": "0.6.2" + } + }, + "source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", + "requires": { + "amdefine": "1.0.1" + } + }, + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "requires": { + "spdx-license-ids": "1.2.2" + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" + }, + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" + }, + "split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "string.prototype.trim": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", + "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", + "dev": true, + "requires": { + "define-properties": "1.1.2", + "es-abstract": "1.10.0", + "function-bind": "1.1.1" + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "0.2.1" + } + }, + "stylus": { + "version": "0.54.5", + "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz", + "integrity": "sha1-QrlWCTHKcJDOhRWnmLqeaqPW3Hk=", + "requires": { + "css-parse": "1.7.0", + "debug": "2.6.9", + "glob": "7.0.6", + "mkdirp": "0.5.1", + "sax": "0.5.8", + "source-map": "0.1.43" + } + }, + "superagent": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.2.tgz", + "integrity": "sha512-gVH4QfYHcY3P0f/BZzavLreHW3T1v7hG9B+hpMQotGQqurOvhv87GcMCd6LWySmBuf+BDR44TQd0aISjVHLeNQ==", + "requires": { + "component-emitter": "1.2.1", + "cookiejar": "2.1.1", + "debug": "3.1.0", + "extend": "3.0.1", + "form-data": "2.3.1", + "formidable": "1.1.1", + "methods": "1.1.2", + "mime": "1.4.1", + "qs": "6.5.1", + "readable-stream": "2.2.7" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + } + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + }, + "sylvester": { + "version": "0.0.21", + "resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.21.tgz", + "integrity": "sha1-KYexzivS84sNzio0OIiEv6RADqc=" + }, + "tap-out": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tap-out/-/tap-out-1.4.2.tgz", + "integrity": "sha1-yQfsG/lAURHQiCY+kvVgi4jLs3o=", + "dev": true, + "requires": { + "re-emitter": "1.1.3", + "readable-stream": "2.2.7", + "split": "1.0.1", + "trim": "0.0.1" + } + }, + "tap-spec": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tap-spec/-/tap-spec-4.1.1.tgz", + "integrity": "sha1-4unyb1IIIysfViKIyXYk1YqI8Fo=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "duplexer": "0.1.1", + "figures": "1.7.0", + "lodash": "3.10.1", + "pretty-ms": "2.1.0", + "repeat-string": "1.6.1", + "tap-out": "1.4.2", + "through2": "2.0.3" + }, + "dependencies": { + "lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + } + } + }, + "tape": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/tape/-/tape-4.8.0.tgz", + "integrity": "sha512-TWILfEnvO7I8mFe35d98F6T5fbLaEtbFTG/lxWvid8qDfFTxt19EBijWmB4j3+Hoh5TfHE2faWs73ua+EphuBA==", + "dev": true, + "requires": { + "deep-equal": "1.0.1", + "defined": "1.0.0", + "for-each": "0.3.2", + "function-bind": "1.1.1", + "glob": "7.1.2", + "has": "1.0.1", + "inherits": "2.0.3", + "minimist": "1.2.0", + "object-inspect": "1.3.0", + "resolve": "1.4.0", + "resumer": "0.0.0", + "string.prototype.trim": "1.1.2", + "through": "2.3.8" + }, + "dependencies": { + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "resolve": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", + "integrity": "sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==", + "dev": true, + "requires": { + "path-parse": "1.0.5" + } + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.2.7", + "xtend": "4.0.1" + } + }, + "token-stream": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-0.0.1.tgz", + "integrity": "sha1-zu78cXp2xDFvEm0LnbqlXX598Bo=" + }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", + "dev": true + }, + "type-is": { + "version": "1.6.15", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", + "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", + "requires": { + "media-typer": "0.3.0", + "mime-types": "2.1.17" + } + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "requires": { + "source-map": "0.5.7", + "uglify-to-browserify": "1.0.2", + "yargs": "3.10.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "requires": { + "camelcase": "1.2.1", + "cliui": "2.1.0", + "decamelize": "1.2.0", + "window-size": "0.1.0" + } + } + } + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "optional": true + }, + "unbzip2-stream": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz", + "integrity": "sha512-izD3jxT8xkzwtXRUZjtmRwKnZoeECrfZ8ra/ketwOcusbZEp4mjULMnJOCfTDZBgGQAAY1AJ/IgxcwkavcX9Og==", + "requires": { + "buffer": "3.6.0", + "through": "2.3.8" + } + }, + "underscore": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", + "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=", + "optional": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", + "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=" + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "void-elements": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", + "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" + }, + "with": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/with/-/with-5.1.1.tgz", + "integrity": "sha1-+k2qktrzLE6pTtRTyB8EaGtXXf4=", + "requires": { + "acorn": "3.3.0", + "acorn-globals": "3.1.0" + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "wtf_wikipedia": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/wtf_wikipedia/-/wtf_wikipedia-2.5.0.tgz", + "integrity": "sha512-5Ha/9c1I/uwURZmqnOQlmJ6gHY6O+tDMif6Bc/gQ4Fsvjl3L2X5F1NyO31uRJLfFZ1AlrMfq7rQ7yAjknpRIEA==", + "requires": { + "jshashes": "1.0.7", + "superagent": "3.8.2" + } + }, + "xml-stream": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/xml-stream/-/xml-stream-0.4.5.tgz", + "integrity": "sha1-dFLYWzf5uIGnDv8M90oN8CCI7es=", + "requires": { + "iconv": "2.3.0", + "node-expat": "2.3.16", + "readable-stream": "1.1.14" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" + }, + "yargs": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz", + "integrity": "sha1-wMQpJMpKqmsObaFznfshZDn53cA=", + "requires": { + "cliui": "3.2.0", + "decamelize": "1.2.0", + "get-caller-file": "1.0.2", + "lodash.assign": "4.2.0", + "os-locale": "1.4.0", + "read-pkg-up": "1.0.1", + "require-directory": "2.1.1", + "require-main-filename": "1.0.1", + "set-blocking": "2.0.0", + "string-width": "1.0.2", + "which-module": "1.0.0", + "window-size": "0.2.0", + "y18n": "3.2.1", + "yargs-parser": "2.4.1" + }, + "dependencies": { + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wrap-ansi": "2.1.0" + } + }, + "window-size": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", + "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=" + } + } + }, + "yargs-parser": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", + "integrity": "sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ=", + "requires": { + "camelcase": "3.0.0", + "lodash.assign": "4.2.0" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + } + } + } + } +} diff --git a/src/00-init-db.js b/src/00-init-db.js index 27c61ac..b490049 100644 --- a/src/00-init-db.js +++ b/src/00-init-db.js @@ -1,15 +1,11 @@ const MongoClient = require('mongodb').MongoClient; -const defaults = { - skip_first: 0, - verbose: true -} +const fs = require("fs") //start it up running -const init = function(options, callback) { - options = options || {} - options = Object.assign(options, defaults) +const init = async (options={skip_first:0,verbose:true}) => { + //this is required - if (!options.file) { + if (!fs.existsSync(options.file)) { console.log('please supply a filename for the wikipedia article dump in bz2 format'); process.exit(1); } @@ -19,14 +15,21 @@ const init = function(options, callback) { } // Connect to mongo let url = 'mongodb://localhost:27017/' + options.db; - MongoClient.connect(url, function(err, db) { - if (err) { - console.log(err); - process.exit(1); - } - options.database = db - options.collection = db.collection('wikipedia'); - callback(options) - }) + options.db = await MongoClient.connect(url) + options.collection = options.db.collection('wikipedia'); + + if (options.auto_skip) { + options.skip_first = await options.collection.count() + console.log('\n\n\n -- auto skipping first ' + options.skip_first + ' articles...') + } + // we can make this smarter in the future + // by giving batch an ID and collecting errors of + // that batch to that ID'd collection + // for now each run is one batch. + options.errCollection = await options.db.createCollection('errors',{capped:true, max: 1000, size: 5242880 }); + await options.errCollection.drop() + return options + // callback(options) + } module.exports = init diff --git a/src/01-article-logic.js b/src/01-article-logic.js index 5e53803..c673372 100644 --- a/src/01-article-logic.js +++ b/src/01-article-logic.js @@ -5,7 +5,9 @@ const transform = require('./02-transform-wiki'); const doArticle = function(page, options) { //ignore 'talk pages', etc. if (page.ns === '0') { - console.log(page.title); + if (options.verbose === true){ + console.log(page.title); + } let script = page.revision.text['$text'] || ''; let data = { title: page.title, diff --git a/src/03-write-db.js b/src/03-write-db.js index 60ecb8c..2d90cf4 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -1,16 +1,34 @@ // -const writeDb = function(arr, collection, callback) { - collection.insertMany( - arr, - { - ordered: false - }, function(err, result) { +checkWriteSuccess = (preCount,postCount,arr) => { + if (preCount+arr.length === postCount){ + console.log("all parsed documents are inserted succesfully.") + } + else { + // feature sugg.: + // let's check the difference betw arr & result obj. + // make a note of the ones that couldn't be inserted eg: + // db.collection("insert_errors").insertMany diff + // and maybe add an option to cli to only try the ones + // that have failed. + console.log("some documents couldn't be inserted.") + } + // return results for further goat yoga. + return +} + +const writeDb = async (arr, options, callback) => { + let preCount = await options.collection.count() + options.collection.insertMany( arr, { ordered: false }, async (err, result) => { if (err) { - console.log(err) - } else { - console.log(" - - +" + result.result.n); - } + // collect insert errors... + options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) + } + + let postCount = await options.collection.count() + + checkWriteSuccess(preCount,postCount,arr) + callback() } ) diff --git a/src/_done.js b/src/_done.js index ff86fa2..4c12fda 100644 --- a/src/_done.js +++ b/src/_done.js @@ -1,11 +1,8 @@ //function to pretty-print when finished.. -const done = function(options, callback) { +const done = async function(collection, callback) { console.log('\n=================done!=================\n'); - options.collection.count().then(count => { - console.log(count + " pages stored in db '" + options.db + "'"); - options.database.close(); - callback() - }); + console.log(await collection.count() + " pages stored in db '" + options.db + "'"); + return }; module.exports = done diff --git a/src/index.js b/src/index.js index d8e16fd..2c2af62 100755 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,5 @@ +console.log("foo"); + //stream a big wikipedia xml.bz2 file into mongodb // usage: // node index.js afwiki-latest-pages-articles.xml.bz2 @@ -8,58 +10,73 @@ const init = require('./00-init-db'); const doArticle = require('./01-article-logic'); const writeDb = require('./03-write-db'); const done = require('./_done'); -const batchSize = 10 +const noop = () => {} + +process.on('unhandledRejection', up => { throw up }) //open up a mongo db, and start xml-streaming.. -const main = function(options, callback) { - callback = callback || function() {} +const main = async (options, callback=noop) => { // Connect to mongo - init(options, function(params) { - let i = 1; //the # article we're on - let queue = [] //the articles to write + await init(options) + let i = 1; //the # article we're on + let queue = [] //the articles to write + + // Create a file stream and pass it to XmlStream + let stream = fs.createReadStream(options.file).pipe(bz2()); + let xml = new XmlStream(stream); + xml._preserveAll = true; //keep newlines - // Create a file stream and pass it to XmlStream - let stream = fs.createReadStream(params.file).pipe(bz2()); - let xml = new XmlStream(stream); - xml._preserveAll = true; //keep newlines + // this is the xml element we're looking for. + xml.on('endElement: page', async (page) => { + i += 1 //increment counter + if (i > options.skip_first) { - // this is the xml element we're looking for. - xml.on('endElement: page', function(page) { - i += 1 //increment counter - if (i > options.skip_first) { - let data = doArticle(page, params, queue) - //add these to a queue of pages - if (data !== null) { - queue.push(data) - //should we write to the db now? - if (queue.length >= batchSize) { - xml.pause() //hold-up for now - writeDb(queue, options.collection, () => { - queue = [] - xml.resume() //ok, go again - }) - } + let data = doArticle(page, options, queue) + //add these to a queue of pages + if (data !== null) { + queue.push(data) + //should we write to the db now? + if (queue.length >= options.batch_size) { + xml.pause() //hold-up for now + writeDb(queue, options, () => { + queue = [] + xml.resume() //ok, go again + }) } } - }); - - xml.on('error', function(message) { - console.log('Parsing failed: ' + message); - options.database.close(); - callback() - }); - - xml.on('end', function() { - if (queue.length > 0) { - writeDb(queue, options.collection, () => { - done(options, callback) - }) - } else { - done(options, callback) + } + else{ + //provide logs for large skip numbers. + if (i === 1){ + console.log(`job started, will skip ${options.skip_first} pages. please wait...`) + } + if (i%1000 === 0){ + console.log(`skipped ${i}/${options.skip_first}th page...`) } - }); + if (options.skip_first === i){ + console.log("skip_first complete.") + } + } + }); + + xml.on('error', async (message) => { + console.log('Parsing failed: ' + message); + db.close(); + callback() + }); + xml.on('end', async () => { + if (queue.length > 0) { + writeDb(queue, options, async () => { + await done(collection) + }) + } else { + await done(collection) + db.close() + } }); + + }; module.exports = main; From 800ef4d177f3b5a42e1893c9cd3812c5736b6709 Mon Sep 17 00:00:00 2001 From: devrim Date: Tue, 13 Feb 2018 09:56:50 -0800 Subject: [PATCH 08/42] uber fast inserts - dirty commit --- bin/wp2mongo.js | 2 +- package-lock.json | 23 + package.json | 8 +- src/00-init-db.js | 53 +- src/03-write-db.js | 31 +- src/index.js | 76 +- src/multithreader.js | 55 + src/worker.js | 101 + worker.logs | 57441 +++++++++++++++++++++++++++++++++++++++++ yarn.lock | 2564 ++ 10 files changed, 60249 insertions(+), 105 deletions(-) create mode 100644 src/multithreader.js create mode 100644 src/worker.js create mode 100644 worker.logs create mode 100644 yarn.lock diff --git a/bin/wp2mongo.js b/bin/wp2mongo.js index d73f7e5..ed66975 100755 --- a/bin/wp2mongo.js +++ b/bin/wp2mongo.js @@ -34,7 +34,7 @@ let parseArgs = function() { skip_disambig: program.skip_disambig, skip_redirects: program.skip_redirects, auto_skip: program.auto_skip, - skip_first: program.skip_first, + skip_first: program.skip_first || 0, verbose: program.verbose, } } diff --git a/package-lock.json b/package-lock.json index fa41b3d..0673402 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1864,6 +1864,21 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + } + } + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -1978,6 +1993,14 @@ } } }, + "xmlsplit": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/xmlsplit/-/xmlsplit-1.2.8.tgz", + "integrity": "sha1-7YhX29kOraN301fIracErr/Do1w=", + "requires": { + "util": "0.10.3" + } + }, "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", diff --git a/package.json b/package.json index e4edd79..85db929 100644 --- a/package.json +++ b/package.json @@ -21,10 +21,16 @@ "cluster": "^0.7.7", "commander": "^2.12.0", "kue": "^0.11.1", + "line-by-line": "^0.1.6", + "log4js": "^2.5.3", + "moment": "^2.20.1", + "momentjs": "^2.0.0", "mongodb": "^2.2.33", "unbzip2-stream": "^1.0.9", + "worker-nodes": "^1.6.0", "wtf_wikipedia": "^2.4.2", - "xml-stream": "^0.4.5" + "xml-stream": "^0.4.5", + "xmlsplit": "^1.2.8" }, "devDependencies": { "shelljs": "^0.7.8", diff --git a/src/00-init-db.js b/src/00-init-db.js index b490049..5fefc9a 100644 --- a/src/00-init-db.js +++ b/src/00-init-db.js @@ -4,32 +4,35 @@ const fs = require("fs") //start it up running const init = async (options={skip_first:0,verbose:true}) => { - //this is required - if (!fs.existsSync(options.file)) { - console.log('please supply a filename for the wikipedia article dump in bz2 format'); - process.exit(1); - } - //log a handy msg about skipping.. - if (options.skip_first > 0) { - console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') - } - // Connect to mongo - let url = 'mongodb://localhost:27017/' + options.db; - options.db = await MongoClient.connect(url) - options.collection = options.db.collection('wikipedia'); + return new Promise( async (resolve,reject) => { + //this is required + if (!fs.existsSync(options.file)) { + console.log('please supply a filename for the wikipedia article dump in xml format'); + process.exit(1); + } + //log a handy msg about skipping.. + if (options.skip_first > 0) { + console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') + } + // Connect to mongo + let url = 'mongodb://localhost:27017/' + options.db; + options.db = await MongoClient.connect(url) + options.collection = options.db.collection('wikipedia'); - if (options.auto_skip) { - options.skip_first = await options.collection.count() - console.log('\n\n\n -- auto skipping first ' + options.skip_first + ' articles...') - } - // we can make this smarter in the future - // by giving batch an ID and collecting errors of - // that batch to that ID'd collection - // for now each run is one batch. - options.errCollection = await options.db.createCollection('errors',{capped:true, max: 1000, size: 5242880 }); - await options.errCollection.drop() - return options - // callback(options) + // if (options.auto_skip) { + // options.skip_first = await options.collection.count() + // console.log('\n\n\n -- auto skipping first ' + options.skip_first + ' articles...') + // } + // we can make this smarter in the future + // by giving batch an ID and collecting errors of + // that batch to that ID'd collection + // for now each run is one batch. + // options.errCollection = await options.db.createCollection('errors',{capped:true, max: 1000, size: 5242880 }); + // options.queueCollection = await options.db.createCollection('queue'); + // await options.errCollection.drop() + // await options.queueCollection.drop() + resolve(options) + }) } module.exports = init diff --git a/src/03-write-db.js b/src/03-write-db.js index 2d90cf4..01db17b 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -2,7 +2,7 @@ // checkWriteSuccess = (preCount,postCount,arr) => { if (preCount+arr.length === postCount){ - console.log("all parsed documents are inserted succesfully.") + console.log(`all parsed documents are inserted succesfully. total docs: ${postCount}`) } else { // feature sugg.: @@ -18,20 +18,21 @@ checkWriteSuccess = (preCount,postCount,arr) => { } const writeDb = async (arr, options, callback) => { - let preCount = await options.collection.count() - options.collection.insertMany( arr, { ordered: false }, async (err, result) => { - if (err) { - // collect insert errors... - options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) - } + return new Promise( async (resolve,reject)=>{ + // let preCount = await options.collection.count() + options.collection.insertMany( arr, { ordered: true }, async (err, result) => { + if (err) { + // collect insert errors... + // tbd. skip duplicate key errors + // do not insert if err.writeErrors[x].code = 11000 + // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) + } - let postCount = await options.collection.count() - - checkWriteSuccess(preCount,postCount,arr) + // let postCount = await options.collection.count() + // checkWriteSuccess(preCount,postCount,arr) + resolve() + }) + }) + } - callback() - } - ) - return -} module.exports = writeDb diff --git a/src/index.js b/src/index.js index 2c2af62..63a77c8 100755 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,3 @@ -console.log("foo"); - //stream a big wikipedia xml.bz2 file into mongodb // usage: // node index.js afwiki-latest-pages-articles.xml.bz2 @@ -10,73 +8,25 @@ const init = require('./00-init-db'); const doArticle = require('./01-article-logic'); const writeDb = require('./03-write-db'); const done = require('./_done'); +const moment = require("moment") +const multithreader = require("./multithreader") const noop = () => {} -process.on('unhandledRejection', up => { throw up }) +var jobBegin = 0 +process.on('unhandledRejection', up => { console.log(up) }) //open up a mongo db, and start xml-streaming.. const main = async (options, callback=noop) => { - // Connect to mongo - await init(options) - let i = 1; //the # article we're on - let queue = [] //the articles to write - - // Create a file stream and pass it to XmlStream - let stream = fs.createReadStream(options.file).pipe(bz2()); - let xml = new XmlStream(stream); - xml._preserveAll = true; //keep newlines - - // this is the xml element we're looking for. - xml.on('endElement: page', async (page) => { - i += 1 //increment counter - if (i > options.skip_first) { - - let data = doArticle(page, options, queue) - //add these to a queue of pages - if (data !== null) { - queue.push(data) - //should we write to the db now? - if (queue.length >= options.batch_size) { - xml.pause() //hold-up for now - writeDb(queue, options, () => { - queue = [] - xml.resume() //ok, go again - }) - } - } - } - else{ - //provide logs for large skip numbers. - if (i === 1){ - console.log(`job started, will skip ${options.skip_first} pages. please wait...`) - } - if (i%1000 === 0){ - console.log(`skipped ${i}/${options.skip_first}th page...`) - } - if (options.skip_first === i){ - console.log("skip_first complete.") - } - } - }); - - xml.on('error', async (message) => { - console.log('Parsing failed: ' + message); - db.close(); - callback() - }); - - xml.on('end', async () => { - if (queue.length > 0) { - writeDb(queue, options, async () => { - await done(collection) - }) - } else { - await done(collection) - db.close() - } - }); + + params = Object.assign({}, options); + multithreader.start(params) + await init(options) + setInterval( async () => { + count = await options.db.collection("queue").count() + console.log(`final doc count: ${count} in last 60 seconds.`) + },60000) -}; +} module.exports = main; diff --git a/src/multithreader.js b/src/multithreader.js new file mode 100644 index 0000000..64c64df --- /dev/null +++ b/src/multithreader.js @@ -0,0 +1,55 @@ +var WorkerNodes, cpuCount, fs, start, workerLog, workerLogs, workerNodes; + +WorkerNodes = require('worker-nodes'); + +fs = require("fs"); + +cpus = require('os').cpus() +cpuCount = cpus.length; + +workerNodes = new WorkerNodes(__dirname + '/worker.js', { + minWorkers: cpuCount-1, + autoStart: true, + maxTasksPerWorker: 1 +}); + +workerLogs = {}; + +workerLog = function(msg) { + var name; + if (msg) { + if (workerLogs[name = msg.pid] == null) { + workerLogs[name] = {}; + } + return workerLogs[msg.pid] = msg; + } +}; + +start = async function(options) { + var chunkSize, size; + size = fs.statSync(options.file)["size"]; + chunkSize = Math.floor(size / cpuCount); + console.log(`${cpuCount} cpu cores detected. file size (bytes): ${size} file will be divided into: ${cpuCount} each process will be given (bytes): ${chunkSize}`); + console.log(`launching ${cpuCount} processes. do ctrl-c to kill all.`); + console.log("do tail -f ../worker.logs on a separate terminal window for logs."); + + + await workerNodes.ready(); + cpus.forEach((val,key) => { + workerNodes.call(options, chunkSize, key); + }); +}; + +process.on('unhandledRejection', function(up) { + return console.log(up); +}); + +// setInterval((function() {}), 2000); + +process.on('SIGINT', async function() { + console.log("Cleaning up child processes..."); + await workerNodes.terminate(); + return process.exit(); +}); + +module.exports = {start:start} diff --git a/src/worker.js b/src/worker.js new file mode 100644 index 0000000..11f1473 --- /dev/null +++ b/src/worker.js @@ -0,0 +1,101 @@ +const LineByLineReader = require('line-by-line') +const fs = require("fs") +const init = require('./00-init-db'); +const log4js = require('log4js'); + +log4js.configure({ + appenders: { cheese: { type: 'file', filename: __dirname+'/../worker.logs' } }, + categories: { default: { appenders: ['cheese'], level: 'info' } } +}); + + +const logger = log4js.getLogger('cheese'); + +const xmlSplit = async (options, chunkSize, workerNr) => { + var cpuCount, file, insertToDb, lineNumber, lr, page, pageCount, pages, size; + + if (workerNr === 0){ + startByte = 0 + } + else + { + // start a megabyte earlier + startByte = (workerNr*chunkSize)-1000000 + } + + // end 2 megabytes later so we don't lose pages cut by chunks + endByte = startByte+chunkSize+3000000 + + + logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) + await init(options) + + file = options.file; + lr = new LineByLineReader(file, { + start: startByte, + end: endByte + }); + lineNumber = 0; + page = null; + pageCount = 0; + pages = []; + workerBegin = Date.now() + jobBegin = Date.now() + insertToDb = function() { + var insertMany; + if (pages.length === 0) { + // shouldn't happen. + return logger.error("err: empty pages arr"); + } + lr.pause(); + insertMany = Object.assign([], pages); + logger.info("inserting",insertMany.length,"documents. first:", insertMany[0]._id, "and last:", insertMany[insertMany.length - 1]._id); + pages = []; + options.db.collection("queue").insertMany(insertMany, function() { + // tbd. error checks + }); + logger.info("batch complete in: "+((Date.now()-jobBegin)/1000)+" secs") + jobBegin = Date.now() + return lr.resume(); + }; + lr.on('error', function(err) { + // 'err' contains error object + return logger.error("linereader error"); + }); + + lr.on('line', function(line) { + lineNumber++; + if (page) { + page.body += line; + if (!page.title) { + if (line.indexOf("") !== -1) { + page._id = line.substring(line.lastIndexOf("<title>") + 7, line.lastIndexOf("")); + } + } + } + if (line.indexOf("") !== -1) { + page = { + body: line, + lr: lineNumber + }; + pageCount++; + } + if (page && line.indexOf("") !== -1) { + pages.push(page); + page = null; + if (pageCount % options.batch_size === 0) { + return insertToDb(); + } + } + }); + return lr.on('end', function() { + // All lines are read, file is closed now. + // insert remaining pages. + insertToDb(); + logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now()-jobBegin)/1000)} secs.`); + // process.exit() + return + }); +}; + +module.exports = xmlSplit diff --git a/worker.logs b/worker.logs new file mode 100644 index 0000000..32d47fd --- /dev/null +++ b/worker.logs @@ -0,0 +1,57441 @@ +[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56524 is now alive. startByte: 27139532279 endByte: 36189376372 +[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56521 is now alive. startByte: 0 endByte: 9049844093 +5236220465 +[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56527 is now alive. startByte: 54280064558 endByte: 63329908651 +[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56522 is now alive. startByte: 9045844093 endByte: 18095688186 +[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56526 is now alive. startByte: 45233220465 endByte: 54283064558 +[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56523 is now alive. startByte: 18092688186 endByte: 27142532279 +[2018-02-13T00:23:49.238] [INFO] cheese - inserting 1000 documents. first: Life-annuities and last: McCarroll +[2018-02-13T00:23:49.311] [INFO] cheese - inserting 1000 documents. first: Murder Love and last: Kenninji +[2018-02-13T00:23:49.311] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:23:49.321] [INFO] cheese - inserting 1000 documents. first: Judy Corbalis and last: Template:Administrative divisions of Russia +[2018-02-13T00:23:49.327] [INFO] cheese - inserting 1000 documents. first: Category:2015 in the Cook Islands and last: Phos alabaster +[2018-02-13T00:23:49.331] [INFO] cheese - inserting 1000 documents. first: Varian Johnson and last: Flucindole +[2018-02-13T00:23:49.386] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:23:49.398] [INFO] cheese - inserting 1000 documents. first: Sarra Manning and last: SNIA +[2018-02-13T00:23:49.411] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:23:49.416] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:23:49.430] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:23:49.530] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:23:49.740] [INFO] cheese - inserting 1000 documents. first: Ruthenium hexafluoride and last: Wanda Brister +[2018-02-13T00:23:49.792] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:23:49.799] [INFO] cheese - inserting 1000 documents. first: Algerian constitution and last: 80th Division (People's Volunteer Army) +[2018-02-13T00:23:49.800] [INFO] cheese - inserting 1000 documents. first: Cocolmeca and last: Tânia Ribeiro +[2018-02-13T00:23:49.803] [INFO] cheese - inserting 1000 documents. first: Chonta Palm and last: Template:PBB/122876 +[2018-02-13T00:23:49.839] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:23:49.840] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:23:49.874] [INFO] cheese - inserting 1000 documents. first: Category:Pittsburgh Penguins trophies and awards and last: Category:WikiProject OpenStreetMap +[2018-02-13T00:23:49.895] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:23:49.920] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:23:50.120] [INFO] cheese - inserting 1000 documents. first: Pakistanis in Canada and last: Wikipedia:Articles for deletion/2008 Roses Tournament +[2018-02-13T00:23:50.141] [INFO] cheese - inserting 1000 documents. first: Aben ezra and last: File:Katiewilks.gif +[2018-02-13T00:23:50.167] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:23:50.170] [INFO] cheese - inserting 1000 documents. first: List of TVB series (2004) and last: Category:Detroit Pistons draft picks +[2018-02-13T00:23:50.184] [INFO] cheese - inserting 1000 documents. first: Kibler Park and last: Deutsches Institut für Entwicklungspolitik +[2018-02-13T00:23:50.202] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:23:50.217] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:23:50.221] [INFO] cheese - inserting 1000 documents. first: Freedom of speech in South Korea and last: Jewish nose +[2018-02-13T00:23:50.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kevin Ou and last: Dewey Township, Indiana +[2018-02-13T00:23:50.262] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:23:50.271] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:23:50.322] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:23:50.463] [INFO] cheese - inserting 1000 documents. first: AccessibleComputing and last: Airline +[2018-02-13T00:23:50.524] [INFO] cheese - inserting 1000 documents. first: Template:PBB/958 and last: Conrado Pérez Armenteros +[2018-02-13T00:23:50.539] [INFO] cheese - inserting 1000 documents. first: Podmokly (Děčín) and last: Ostedes albomarmorata +[2018-02-13T00:23:50.561] [INFO] cheese - batch complete in: 1.688 secs +[2018-02-13T00:23:50.563] [INFO] cheese - inserting 1000 documents. first: Sibelius G7 and last: File:Riverside Superior Court Front.jpg +[2018-02-13T00:23:50.568] [INFO] cheese - inserting 1000 documents. first: How to Destroy Angels and last: Wikipedia:WikiProject Spam/LinkReports/pavucina.org +[2018-02-13T00:23:50.573] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:23:50.583] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:23:50.603] [INFO] cheese - inserting 1000 documents. first: Dick Johnson Township, Indiana and last: Winfield Township, Indiana +[2018-02-13T00:23:50.618] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:23:50.624] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:23:50.663] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:23:50.728] [INFO] cheese - inserting 1000 documents. first: 1992 Pacific hurricane season and last: PMTU +[2018-02-13T00:23:50.793] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:23:50.911] [INFO] cheese - inserting 1000 documents. first: St. Martin's Griffin and last: Template:PBB/10097 +[2018-02-13T00:23:50.939] [INFO] cheese - inserting 1000 documents. first: John C. Avise and last: File:Perdido en el espacio.jpg +[2018-02-13T00:23:50.946] [INFO] cheese - inserting 1000 documents. first: Raoul Șorban and last: CS Source +[2018-02-13T00:23:50.966] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:23:50.985] [INFO] cheese - inserting 1000 documents. first: Ostedes andamanica and last: Akihiro Murayama +[2018-02-13T00:23:50.988] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:23:51.000] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:23:51.060] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:23:51.201] [INFO] cheese - inserting 1000 documents. first: Wood Township, Indiana and last: Category:Decorative arts museums in Italy +[2018-02-13T00:23:51.261] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:23:51.263] [INFO] cheese - inserting 1000 documents. first: Sodium pareth sulfate and last: Hedemorapartiet +[2018-02-13T00:23:51.309] [INFO] cheese - inserting 1000 documents. first: FIA Formula One World Championship and last: Lectionary 232 +[2018-02-13T00:23:51.321] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:23:51.349] [INFO] cheese - inserting 1000 documents. first: Maestro Semester One and last: Tiblisi +[2018-02-13T00:23:51.350] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:23:51.402] [INFO] cheese - inserting 1000 documents. first: Raynesway and last: Wikipedia:Sockpuppet investigations/Cavefish777 +[2018-02-13T00:23:51.401] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:23:51.419] [INFO] cheese - inserting 1000 documents. first: Sixpence (British) and last: Template:PBB/8321 +[2018-02-13T00:23:51.443] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:23:51.481] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:23:51.580] [INFO] cheese - inserting 1000 documents. first: Byrnesville and last: County Route 615 (Cumberland County, New Jersey) +[2018-02-13T00:23:51.619] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:23:51.634] [INFO] cheese - inserting 1000 documents. first: Timberforce and last: I. variabilis +[2018-02-13T00:23:51.674] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:23:51.686] [INFO] cheese - inserting 1000 documents. first: Charge (fanfare) and last: Yadollah Royai +[2018-02-13T00:23:51.725] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:23:51.734] [INFO] cheese - inserting 1000 documents. first: March 1925 and last: August 1926 +[2018-02-13T00:23:51.771] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:23:51.782] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8323 and last: Template:PBB/80333 +[2018-02-13T00:23:51.811] [INFO] cheese - inserting 1000 documents. first: Fürstenberg-Baar and last: Fort Worth Water Gardens +[2018-02-13T00:23:51.815] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:23:51.867] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:23:51.895] [INFO] cheese - inserting 1000 documents. first: County Route 616 (Cumberland County, New Jersey) and last: 5α-Reductase type II +[2018-02-13T00:23:51.933] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:23:51.986] [INFO] cheese - inserting 1000 documents. first: Laird Shipyard and last: Template:Usertalkpage2/doc +[2018-02-13T00:23:52.027] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:23:52.061] [INFO] cheese - inserting 1000 documents. first: Moment of angle and last: Wanza +[2018-02-13T00:23:52.102] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:23:52.110] [INFO] cheese - inserting 1000 documents. first: Miomyrmex and last: My Friend Flicker +[2018-02-13T00:23:52.120] [INFO] cheese - inserting 1000 documents. first: Jeffrey G Kitingan and last: Template:PBB/222 +[2018-02-13T00:23:52.170] [INFO] cheese - inserting 1000 documents. first: Australian Democrats and last: Big Dipper (disambiguation) +[2018-02-13T00:23:52.170] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:23:52.180] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:23:52.249] [INFO] cheese - inserting 1000 documents. first: Cairo Conference (1943) and last: 1985 SEC Baseball Tournament +[2018-02-13T00:23:52.267] [INFO] cheese - inserting 1000 documents. first: File:Columbia TriStar Television.jpg and last: File:Openallhours 1.jpg +[2018-02-13T00:23:52.272] [INFO] cheese - batch complete in: 1.711 secs +[2018-02-13T00:23:52.296] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:23:52.314] [INFO] cheese - inserting 1000 documents. first: Portal:Nova Scotia/Selected panoramic picture and last: Sombrero calañés +[2018-02-13T00:23:52.329] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:23:52.357] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:23:52.458] [INFO] cheese - inserting 1000 documents. first: Chris Seitz and last: François Pelletier +[2018-02-13T00:23:52.504] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:23:52.510] [INFO] cheese - inserting 1000 documents. first: Bobby Graham and last: Anisocarpus rammii +[2018-02-13T00:23:52.560] [INFO] cheese - inserting 1000 documents. first: Final Fantasy Fables: Chocobo's Dungeon DS and last: Cell Metabolism +[2018-02-13T00:23:52.578] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:23:52.607] [INFO] cheese - inserting 1000 documents. first: Annie Get Your Gun (1986 London revival cast) and last: JPMorgan Chase Multibillion-dollar Trading Loss May, 2012 +[2018-02-13T00:23:52.635] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:23:52.660] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:23:52.756] [INFO] cheese - inserting 1000 documents. first: Watford F.C. season 2009–10 and last: File:KillerBitch FinalCover.jpg +[2018-02-13T00:23:52.787] [INFO] cheese - inserting 1000 documents. first: Samsonite Corporation and last: Prince Edward Island Route 158 +[2018-02-13T00:23:52.792] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:23:52.890] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:23:52.923] [INFO] cheese - inserting 1000 documents. first: Korean G7 and last: Philadelphia Transportation Company +[2018-02-13T00:23:52.927] [INFO] cheese - inserting 1000 documents. first: Information Card Foundation and last: Great Gaddesden +[2018-02-13T00:23:52.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Record Production/TabHeader/doc and last: Angst (1928 film) +[2018-02-13T00:23:52.948] [INFO] cheese - inserting 1000 documents. first: United States Government Printing Office and last: Sit-out powerbomb +[2018-02-13T00:23:52.967] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:23:52.968] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:23:53.021] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:23:53.021] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:23:53.223] [INFO] cheese - inserting 1000 documents. first: Balabanchevo and last: List of UEFA Women's Cup winners +[2018-02-13T00:23:53.251] [INFO] cheese - inserting 1000 documents. first: File:AartKoopmans.jpg and last: Rick Smith (hockey) +[2018-02-13T00:23:53.267] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:23:53.279] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8192 and last: Template:PBB/11177 +[2018-02-13T00:23:53.294] [INFO] cheese - inserting 1000 documents. first: Template:Bostrichiformia-stub and last: Maxine (Blossom) Miles +[2018-02-13T00:23:53.293] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:23:53.321] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:23:53.332] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:23:53.361] [INFO] cheese - inserting 1000 documents. first: Gridmp and last: History of Tatarstan +[2018-02-13T00:23:53.422] [INFO] cheese - inserting 1000 documents. first: Category:House of Vendramin and last: Active Parking Assist +[2018-02-13T00:23:53.425] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:23:53.477] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:23:53.626] [INFO] cheese - inserting 1000 documents. first: Portal:Electronics/Selected biography/7 and last: Wikipedia:Requests for bureaucratship/Grandmasterka +[2018-02-13T00:23:53.639] [INFO] cheese - inserting 1000 documents. first: Julius Posener and last: Template:PBB/84084 +[2018-02-13T00:23:53.653] [INFO] cheese - inserting 1000 documents. first: Jakob Xavery and last: Misión Chaqueña +[2018-02-13T00:23:53.667] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:23:53.670] [INFO] cheese - inserting 1000 documents. first: List of listed buildings in Oban, Argyll and Bute and last: Murder Is No Joke +[2018-02-13T00:23:53.673] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:23:53.708] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:23:53.712] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:23:53.801] [INFO] cheese - inserting 1000 documents. first: Huntsman's Leap and last: Draft:Women in Global Environmental Change +[2018-02-13T00:23:53.845] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:23:53.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Matthew 4:4 and last: Mladost (sports society) +[2018-02-13T00:23:53.964] [INFO] cheese - inserting 1000 documents. first: Egoi Martinez de Esteban and last: Patron system +[2018-02-13T00:23:53.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:2008 main page redesign proposal/Aquillyne and last: Utah State Route 263 (1959–1969) +[2018-02-13T00:23:54.005] [INFO] cheese - inserting 1000 documents. first: Bursa and last: Bill Bryson +[2018-02-13T00:23:54.005] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:23:54.007] [INFO] cheese - inserting 1000 documents. first: Misión Kilómetro 6 and last: Template:National football Supercups (CONCACAF region) +[2018-02-13T00:23:54.003] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:23:54.017] [INFO] cheese - inserting 1000 documents. first: The Ghost Train (1927 film) and last: Chah-e Kashmir +[2018-02-13T00:23:54.036] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:23:54.068] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:23:54.074] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:23:54.137] [INFO] cheese - batch complete in: 1.865 secs +[2018-02-13T00:23:54.180] [INFO] cheese - inserting 1000 documents. first: Bihu Songs of Assam (book) and last: Category:Hockomock League +[2018-02-13T00:23:54.233] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:23:54.361] [INFO] cheese - inserting 1000 documents. first: Senad Lupic and last: Mediterranean–Niger Railway +[2018-02-13T00:23:54.374] [INFO] cheese - inserting 1000 documents. first: Glenn R. Conrad and last: Twin Tiers +[2018-02-13T00:23:54.389] [INFO] cheese - inserting 1000 documents. first: Utah State Route 263 (1959) and last: BRP Diego Silang (PF-9) +[2018-02-13T00:23:54.423] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Shizuoka Prefecture and last: Category:African-American history of Illinois +[2018-02-13T00:23:54.423] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:23:54.436] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:23:54.446] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:23:54.503] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:23:54.525] [INFO] cheese - inserting 1000 documents. first: Christopher Paul Greener and last: Phanerogam +[2018-02-13T00:23:54.583] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:23:54.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dardani (village) and last: Oresteya +[2018-02-13T00:23:54.683] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:23:54.781] [INFO] cheese - inserting 1000 documents. first: Lino-cut and last: 4th Space Operations Squadron +[2018-02-13T00:23:54.795] [INFO] cheese - inserting 1000 documents. first: Category:People from Babadag and last: Aguada Cecilio +[2018-02-13T00:23:54.837] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1678 and last: Mr. Men and Little Miss (Books) +[2018-02-13T00:23:54.835] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:23:54.847] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:23:54.880] [INFO] cheese - inserting 1000 documents. first: File:Photograph of Mr. Amin.jpg and last: Template:Did you know nominations/Centripetal Spring Armchair +[2018-02-13T00:23:54.900] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:23:54.935] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:23:55.036] [INFO] cheese - inserting 1000 documents. first: File:Ursinus College Logo.png and last: Waldegrave Islands +[2018-02-13T00:23:55.097] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:23:55.243] [INFO] cheese - inserting 1000 documents. first: Category:Israeli people of Finnish descent and last: Winter Story 2007–2008 +[2018-02-13T00:23:55.257] [INFO] cheese - inserting 1000 documents. first: New Union Social Liberals and last: Polish anti-Semitism +[2018-02-13T00:23:55.268] [INFO] cheese - inserting 1000 documents. first: Aguada de Guerra and last: Sharon Webb +[2018-02-13T00:23:55.277] [INFO] cheese - inserting 1000 documents. first: Bush pilots and last: Sand table +[2018-02-13T00:23:55.279] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:23:55.325] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:23:55.383] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:23:55.399] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:23:55.432] [INFO] cheese - inserting 1000 documents. first: AMA House and last: Canadian Egg Marketing Agency v. Richardson +[2018-02-13T00:23:55.466] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:23:55.507] [INFO] cheese - inserting 1000 documents. first: Second round of voting in the 2008 Zimbabwean presidential election and last: Template:PBB/54332 +[2018-02-13T00:23:55.554] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:23:55.612] [INFO] cheese - inserting 1000 documents. first: Murgisca cervinalis and last: Graptemys pseudogeographica versa +[2018-02-13T00:23:55.647] [INFO] cheese - inserting 1000 documents. first: Lockheed CL-915 and last: Yury Nikitin +[2018-02-13T00:23:55.655] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:23:55.696] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:23:55.751] [INFO] cheese - inserting 1000 documents. first: R. v. Cuerrier and last: Sean Riley (American football) +[2018-02-13T00:23:55.757] [INFO] cheese - inserting 1000 documents. first: Guitar Hero: 80s Edition and last: Mathematical fictionalism +[2018-02-13T00:23:55.794] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:23:55.810] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:23:55.816] [INFO] cheese - inserting 1000 documents. first: Hollóko and last: File:HabsburgStammtafelGruftTuscan.png +[2018-02-13T00:23:55.858] [INFO] cheese - inserting 1000 documents. first: Template:PBB/54657 and last: Connecticut Superior Court +[2018-02-13T00:23:55.894] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:23:55.906] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:23:55.979] [INFO] cheese - inserting 1000 documents. first: Hyperestrogenism and last: A Grande Musica +[2018-02-13T00:23:56.005] [INFO] cheese - inserting 1000 documents. first: Book:Flags of the U.S. states and last: File:SageFrancis-SeaLion.jpg +[2018-02-13T00:23:56.023] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:23:56.048] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:23:56.076] [INFO] cheese - inserting 1000 documents. first: New Hampshire Healthy Families and last: Wikipedia:Articles for deletion/James Dodkins +[2018-02-13T00:23:56.084] [INFO] cheese - inserting 1000 documents. first: Big Audio Dynamite and last: Conditional proof +[2018-02-13T00:23:56.106] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:23:56.188] [INFO] cheese - batch complete in: 2.051 secs +[2018-02-13T00:23:56.191] [INFO] cheese - inserting 1000 documents. first: A Jamaa and last: Bratcice +[2018-02-13T00:23:56.229] [INFO] cheese - batch complete in: 0.206 secs +[2018-02-13T00:23:56.242] [INFO] cheese - inserting 1000 documents. first: Email relay and last: The Game of Life Card Game +[2018-02-13T00:23:56.244] [INFO] cheese - inserting 1000 documents. first: File:RoyalDodge.jpg and last: Cig (disambiguation) +[2018-02-13T00:23:56.293] [INFO] cheese - inserting 1000 documents. first: Unicorn Plant and last: In taberna mori +[2018-02-13T00:23:56.293] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:23:56.297] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:23:56.348] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:23:56.357] [INFO] cheese - inserting 1000 documents. first: Category:Articles with failed verification from September 2014 and last: File:Rice-Mike-150105-stern.jpg +[2018-02-13T00:23:56.386] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T00:23:56.451] [INFO] cheese - inserting 1000 documents. first: U.S. Route 411 in Georgia and last: Wikipedia:WikiProject Spam/LinkReports/deallocker.com +[2018-02-13T00:23:56.468] [INFO] cheese - inserting 1000 documents. first: Columbia Gorge Casino and last: Wynyard Memorial Airport +[2018-02-13T00:23:56.500] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:23:56.523] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:23:56.582] [INFO] cheese - inserting 1000 documents. first: Template:PBB/2077 and last: Tseren-Ochiryn Dambadorj +[2018-02-13T00:23:56.622] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:23:56.666] [INFO] cheese - inserting 1000 documents. first: Madheshi and last: Julius Cæsar (play) +[2018-02-13T00:23:56.707] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:23:56.762] [INFO] cheese - inserting 1000 documents. first: Botys oeaxalis and last: File:Bridge on John P Saylor Trail.jpg +[2018-02-13T00:23:56.771] [INFO] cheese - inserting 1000 documents. first: Template:Janet periodic table and last: Darko Pavicevic +[2018-02-13T00:23:56.803] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:23:56.809] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:23:56.816] [INFO] cheese - inserting 1000 documents. first: Wadih Sabrá and last: Stereo MC's +[2018-02-13T00:23:56.851] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 May 4 and last: Radio Yunost +[2018-02-13T00:23:56.887] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:23:56.896] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:23:56.972] [INFO] cheese - inserting 1000 documents. first: Template:PBB/64478 and last: Template:PBB/26539 +[2018-02-13T00:23:57.013] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:23:57.072] [INFO] cheese - inserting 1000 documents. first: List of Roman Catholic missionaries and last: File:Voeflogo.png +[2018-02-13T00:23:57.073] [INFO] cheese - inserting 1000 documents. first: Darko Stanic and last: Es ist euch gut, dass ich hingehe, BWV 108 +[2018-02-13T00:23:57.108] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:23:57.118] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:23:57.154] [INFO] cheese - inserting 1000 documents. first: 7th Lumières Awards and last: Baby baby baby oh +[2018-02-13T00:23:57.173] [INFO] cheese - inserting 1000 documents. first: List of GP3 Series drivers and last: The Hangman (2010 film) +[2018-02-13T00:23:57.195] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:23:57.201] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:23:57.288] [INFO] cheese - inserting 1000 documents. first: Iluppaiyur and last: Solncevski Raion +[2018-02-13T00:23:57.313] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T00:23:57.365] [INFO] cheese - inserting 1000 documents. first: Akrotiri Peninsula (Crete) and last: Craig Theater +[2018-02-13T00:23:57.403] [INFO] cheese - inserting 1000 documents. first: Embassy of India, Washington, D.C. and last: Template:PBB/8985 +[2018-02-13T00:23:57.425] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:23:57.445] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:23:57.483] [INFO] cheese - inserting 1000 documents. first: Solncevskii Raion and last: Kosaca noble family +[2018-02-13T00:23:57.484] [INFO] cheese - inserting 1000 documents. first: File:Bells at Mission, San Diego.jpg and last: Luis Conrado Batlle y Berres +[2018-02-13T00:23:57.503] [INFO] cheese - batch complete in: 0.19 secs +[2018-02-13T00:23:57.528] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:23:57.629] [INFO] cheese - inserting 1000 documents. first: File:Hangmannew.jpg and last: Category:1963 live albums +[2018-02-13T00:23:57.661] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Metropolitan New York Library Council and last: Rajiv Tomar +[2018-02-13T00:23:57.686] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:23:57.724] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:23:57.738] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8991 and last: Nowiny-Leśniczówka +[2018-02-13T00:23:57.770] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:23:57.791] [INFO] cheese - inserting 1000 documents. first: Kossakowka and last: Matilde Rosa Lopes de Araujo +[2018-02-13T00:23:57.796] [INFO] cheese - inserting 1000 documents. first: International Asperger Year and last: Avco Corporation +[2018-02-13T00:23:57.821] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:23:57.827] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:23:57.871] [INFO] cheese - inserting 1000 documents. first: Conjunction introduction and last: Donald Knuth +[2018-02-13T00:23:57.925] [INFO] cheese - inserting 1000 documents. first: 54th Street Theater and last: Skerryvore +[2018-02-13T00:23:57.968] [INFO] cheese - batch complete in: 1.78 secs +[2018-02-13T00:23:57.985] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:23:58.063] [INFO] cheese - inserting 1000 documents. first: Tarana railway station and last: The White Man's Law +[2018-02-13T00:23:58.064] [INFO] cheese - inserting 1000 documents. first: Flying Snake and last: NuSMV 2 +[2018-02-13T00:23:58.067] [INFO] cheese - inserting 1000 documents. first: Template:PBB/6137 and last: Template:PBB/4212 +[2018-02-13T00:23:58.095] [INFO] cheese - inserting 1000 documents. first: Matjaz Brumen and last: Jake Fury +[2018-02-13T00:23:58.096] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:23:58.099] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:23:58.116] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:23:58.156] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:23:58.163] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ToucH RadiO Internet Broadcasting and last: U.S. Route 38 in Colorado +[2018-02-13T00:23:58.215] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:23:58.427] [INFO] cheese - inserting 1000 documents. first: Senile plaques and last: Düsseldorf school of painting +[2018-02-13T00:23:58.437] [INFO] cheese - inserting 1000 documents. first: Sts. Sergios and Bacchus and last: Argentina Sono film +[2018-02-13T00:23:58.461] [INFO] cheese - inserting 1000 documents. first: Miodrag Koljević and last: Barstow Road +[2018-02-13T00:23:58.477] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:23:58.503] [INFO] cheese - inserting 1000 documents. first: Forest of Mondrem and last: H. C. ten Berge +[2018-02-13T00:23:58.504] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:23:58.517] [INFO] cheese - inserting 1000 documents. first: Bruce Lindahl and last: Doctors (series 9) +[2018-02-13T00:23:58.543] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:23:58.568] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:23:58.566] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:23:58.630] [INFO] cheese - inserting 1000 documents. first: Osvaldo Ferreño and last: Paradsasvar +[2018-02-13T00:23:58.690] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:23:58.993] [INFO] cheese - inserting 1000 documents. first: Lloyd's bank and last: Edward Somerset, 2nd Marquis of Worcester +[2018-02-13T00:23:59.009] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian people of Irish descent and last: Okeechobee High School (1925) +[2018-02-13T00:23:59.054] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:23:59.068] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:23:59.103] [INFO] cheese - inserting 1000 documents. first: Chris Nelson (photographer) and last: File:ChildhoodsEnd(1stEd).jpg +[2018-02-13T00:23:59.117] [INFO] cheese - inserting 1000 documents. first: Pat Farrell (Fianna Fail) and last: Category:Chilean expatriates in Indonesia +[2018-02-13T00:23:59.140] [INFO] cheese - inserting 1000 documents. first: John Paine (sport shooter) and last: Trip Mines +[2018-02-13T00:23:59.149] [INFO] cheese - inserting 1000 documents. first: Relationship of command and last: 1937 Sugar Bowl +[2018-02-13T00:23:59.161] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:23:59.165] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:23:59.252] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:23:59.260] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:23:59.556] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Rustam Effendi and last: Category:1960s establishments in California +[2018-02-13T00:23:59.567] [INFO] cheese - inserting 1000 documents. first: Orumieh and last: Krasnogorsk uzb +[2018-02-13T00:23:59.602] [INFO] cheese - inserting 1000 documents. first: Forward lateral and last: Wikipedia:Miscellany for deletion/User:Tomas Zenteno +[2018-02-13T00:23:59.604] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:23:59.626] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:23:59.634] [INFO] cheese - inserting 1000 documents. first: Hum-vees and last: Darrington Unit +[2018-02-13T00:23:59.683] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:23:59.711] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:23:59.734] [INFO] cheese - inserting 1000 documents. first: Woolloongabba Branch railway line and last: Pinkilluni (Puno) +[2018-02-13T00:23:59.775] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:23:59.836] [INFO] cheese - inserting 1000 documents. first: Dunfermline East (UK Parliament constituency) and last: Thinking Fellers Union Local +[2018-02-13T00:23:59.914] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:23:59.982] [INFO] cheese - inserting 1000 documents. first: Help:Visual file markup/frameless mode and last: Category:Limburg (Belgium) +[2018-02-13T00:24:00.001] [INFO] cheese - inserting 1000 documents. first: McCormick & Company, Inc. and last: County Route 620 (Morris County, New Jersey) +[2018-02-13T00:24:00.003] [INFO] cheese - inserting 1000 documents. first: Causes of the United States housing bubble and last: Anguis rufa javanica +[2018-02-13T00:24:00.013] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:24:00.067] [INFO] cheese - inserting 1000 documents. first: All-NBA Team Third Time and last: Alexandre sabès pétion +[2018-02-13T00:24:00.068] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:24:00.074] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:24:00.117] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:24:00.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Yabllib and last: Roderick O'Connor (land commissioner) +[2018-02-13T00:24:00.165] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:24:00.248] [INFO] cheese - inserting 1000 documents. first: Donald E. Knuth and last: Eigenstate +[2018-02-13T00:24:00.262] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2002 Commonwealth Games - Men's 100 Metres and last: Edmund G. Brown Sr. +[2018-02-13T00:24:00.300] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:24:00.369] [INFO] cheese - inserting 1000 documents. first: Stewart McCrae and last: Theresa of Portugal, Countess of Flanders +[2018-02-13T00:24:00.382] [INFO] cheese - batch complete in: 2.414 secs +[2018-02-13T00:24:00.420] [INFO] cheese - inserting 1000 documents. first: Australian Capital Territory Legislative Assembly electorates and last: Hockley, King and Queen County, Virginia +[2018-02-13T00:24:00.451] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:24:00.462] [INFO] cheese - inserting 1000 documents. first: The Galilean Satellites and last: Wikipedia:WikiProject Gospel music/To-do +[2018-02-13T00:24:00.484] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:24:00.487] [INFO] cheese - inserting 1000 documents. first: Ghalib Khan and last: Corinne Marshall +[2018-02-13T00:24:00.496] [INFO] cheese - inserting 1000 documents. first: Robert Sharples (classicist) and last: Category:1671 in law +[2018-02-13T00:24:00.520] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:24:00.547] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:24:00.590] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:24:00.693] [INFO] cheese - inserting 1000 documents. first: Docs.com and last: Danilo Fernando Avelar +[2018-02-13T00:24:00.767] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:24:00.862] [INFO] cheese - inserting 1000 documents. first: Yao Tingmei and last: File:KA Most Wanted.jpg +[2018-02-13T00:24:00.905] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:24:00.910] [INFO] cheese - inserting 1000 documents. first: Anthony Volmink and last: Garz/Rügen Castle +[2018-02-13T00:24:00.931] [INFO] cheese - inserting 1000 documents. first: Foiled carbene and last: Wikipedia:Articles for creation/2007-01-20 +[2018-02-13T00:24:00.960] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:24:01.019] [INFO] cheese - inserting 1000 documents. first: Pothyne stictica and last: File:Sherbrooke2003logo.png +[2018-02-13T00:24:01.035] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:24:01.074] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:24:01.099] [INFO] cheese - inserting 1000 documents. first: Godfrey II Count of Louvain and last: Neuchâtel Xamax FC +[2018-02-13T00:24:01.185] [INFO] cheese - inserting 1000 documents. first: Suleyman Ates and last: Etienne Mignot de Montigny +[2018-02-13T00:24:01.214] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:24:01.216] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:24:01.283] [INFO] cheese - inserting 1000 documents. first: Amphidromus semitessellatus and last: Win Clark +[2018-02-13T00:24:01.354] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:24:01.384] [INFO] cheese - inserting 1000 documents. first: PSR B1257+12A and last: Wikipedia:Articles for deletion/Navnath Sampradaya +[2018-02-13T00:24:01.450] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:24:01.562] [INFO] cheese - inserting 1000 documents. first: Walter Brandt and last: List Of Episodes : The Partially Examined Life +[2018-02-13T00:24:01.575] [INFO] cheese - inserting 1000 documents. first: Saint Vitalis of Gaza and last: Smallville, USA +[2018-02-13T00:24:01.626] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:24:01.645] [INFO] cheese - inserting 1000 documents. first: Etienne Mimard and last: Incomplete and Utter History of Classical Music +[2018-02-13T00:24:01.664] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:24:01.701] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:24:01.737] [INFO] cheese - inserting 1000 documents. first: Srikanth Srinivasan and last: Wikipedia:WikiProject Spam/LinkReports/rehabanklesprain.com +[2018-02-13T00:24:01.759] [INFO] cheese - inserting 1000 documents. first: Neuchatel Xamax FC and last: Emma Gillett +[2018-02-13T00:24:01.804] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:24:01.831] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:24:01.919] [INFO] cheese - inserting 1000 documents. first: Johann Borenstein and last: India House (Indian High Commision in London) +[2018-02-13T00:24:01.977] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:24:02.045] [INFO] cheese - inserting 1000 documents. first: FC Polet and last: Cuitlateco +[2018-02-13T00:24:02.088] [INFO] cheese - inserting 1000 documents. first: Lou Rell and last: 1915-16 Indian cricket season +[2018-02-13T00:24:02.088] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:24:02.097] [INFO] cheese - inserting 1000 documents. first: Bret Wood (film director) and last: Hajnalka Kiraly-Picot +[2018-02-13T00:24:02.151] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:24:02.151] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:24:02.225] [INFO] cheese - inserting 1000 documents. first: Jeremy Penick and last: Illuminating Hadrian's Wall +[2018-02-13T00:24:02.309] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:24:02.403] [INFO] cheese - inserting 1000 documents. first: São Tomé and Principe Dobra and last: Sant Andreu de Llavaneres +[2018-02-13T00:24:02.433] [INFO] cheese - inserting 1000 documents. first: Bibliography of Prem Rawat and related organizations and last: Dharowali +[2018-02-13T00:24:02.457] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:24:02.475] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:24:02.517] [INFO] cheese - inserting 1000 documents. first: Category:People from Juárez Municipality, Chihuahua and last: Northern pudu +[2018-02-13T00:24:02.541] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Transhumanism articles and last: Category:Project-Class National Institutes of Health articles +[2018-02-13T00:24:02.549] [INFO] cheese - inserting 1000 documents. first: Elizabeth Barrett Browning and last: Fatah +[2018-02-13T00:24:02.563] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:24:02.589] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:24:02.642] [INFO] cheese - batch complete in: 2.26 secs +[2018-02-13T00:24:02.688] [INFO] cheese - inserting 1000 documents. first: 1916-17 Indian cricket season and last: Ben mahmoud +[2018-02-13T00:24:02.700] [INFO] cheese - inserting 1000 documents. first: Tarporley Hunt and last: File:Merle Okie.jpg +[2018-02-13T00:24:02.745] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:24:02.747] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:24:02.825] [INFO] cheese - inserting 1000 documents. first: Ornstein-Uhlenbeck and last: Candy Girl: A Year in the Life of an Unlikely Stripper +[2018-02-13T00:24:02.890] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:24:02.935] [INFO] cheese - inserting 1000 documents. first: Napo plump toad and last: Category:German football clubs 1981–82 season +[2018-02-13T00:24:02.963] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class National Institutes of Health articles and last: Prince Carl Philip of Sweden, Duke of Värmland +[2018-02-13T00:24:02.977] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:24:02.979] [INFO] cheese - inserting 1000 documents. first: Khingans and last: Category:British royalty stubs +[2018-02-13T00:24:02.998] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:24:03.055] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:24:03.141] [INFO] cheese - inserting 1000 documents. first: Ihor Pokarynin and last: Neil Komadoski (ice hockey, born 1982) +[2018-02-13T00:24:03.200] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:24:03.252] [INFO] cheese - inserting 1000 documents. first: Iulian Dumitraș and last: Template:Editnotices/Page/LittleBigPlanet 2 +[2018-02-13T00:24:03.302] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:24:03.344] [INFO] cheese - inserting 1000 documents. first: 27th Infantry Division (United Kingdom) and last: Billy Graham (evangelist) +[2018-02-13T00:24:03.388] [INFO] cheese - inserting 1000 documents. first: Tuli Lodge Airport and last: County Route 672 (Salem County, New Jersey) +[2018-02-13T00:24:03.395] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:24:03.457] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:24:03.562] [INFO] cheese - inserting 1000 documents. first: 浦佐駅 and last: Jonathan Earle +[2018-02-13T00:24:03.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ninjas in Pyjamas and last: Fast of esther +[2018-02-13T00:24:03.619] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:24:03.643] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:24:03.680] [INFO] cheese - inserting 1000 documents. first: Bobby Kotic and last: Template:1963 United States Ryder Cup team +[2018-02-13T00:24:03.740] [INFO] cheese - inserting 1000 documents. first: Jiangsu Lu and last: Miami Valley Channel +[2018-02-13T00:24:03.753] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:24:03.829] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:24:03.845] [INFO] cheese - inserting 1000 documents. first: File:Mount Lebanon Shaker Meetinghouse 12July2008.jpg and last: David J. Patterson +[2018-02-13T00:24:03.858] [INFO] cheese - inserting 1000 documents. first: County Route 674 (Salem County, New Jersey) and last: Acraea masamba +[2018-02-13T00:24:03.907] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:24:03.931] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:24:04.017] [INFO] cheese - inserting 1000 documents. first: Pseudocalamobius rondoni and last: List of college affilated to Calcutta University +[2018-02-13T00:24:04.073] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:24:04.155] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject R&B and Soul Music/Unreferenced BLPs and last: Human Readable Interpretation +[2018-02-13T00:24:04.191] [INFO] cheese - inserting 1000 documents. first: Fast of ester and last: Dolmus +[2018-02-13T00:24:04.210] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:24:04.232] [INFO] cheese - inserting 1000 documents. first: Category:User qya-4 and last: Parade of Progress +[2018-02-13T00:24:04.276] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:24:04.302] [INFO] cheese - inserting 1000 documents. first: Union City, Tennessee-Kentucky Micropolitan Statistical Area and last: France Football European Team of the Year +[2018-02-13T00:24:04.313] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:24:04.340] [INFO] cheese - inserting 1000 documents. first: William Bayles and last: Polytetrafluoroethylen capacitor +[2018-02-13T00:24:04.365] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:24:04.388] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:24:04.501] [INFO] cheese - inserting 1000 documents. first: File:Sacred Heart Girls' College Logo.png and last: Monika Ciecierska +[2018-02-13T00:24:04.555] [INFO] cheese - inserting 1000 documents. first: Now and Forever (film) and last: Mostafa Ekrami +[2018-02-13T00:24:04.557] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:24:04.591] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:24:04.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Radio/to do and last: MS Angelina Lauro +[2018-02-13T00:24:04.680] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/M1jam/Archive and last: Tihvinskii Raion +[2018-02-13T00:24:04.685] [INFO] cheese - inserting 1000 documents. first: Carl Skottberg and last: File:Basil flower.JPG +[2018-02-13T00:24:04.691] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:24:04.713] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:24:04.734] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:24:04.813] [INFO] cheese - inserting 1000 documents. first: Lucian Perkins and last: File:Polynesian triangle poorly drawn.jpg +[2018-02-13T00:24:04.862] [INFO] cheese - inserting 1000 documents. first: Forteana and last: Eurogame +[2018-02-13T00:24:04.877] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:24:04.895] [INFO] cheese - inserting 1000 documents. first: Thomas Williams (rugby league) and last: Dovisdiana +[2018-02-13T00:24:04.953] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:24:04.971] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Fergasonanton and last: Milica Bodrožić +[2018-02-13T00:24:04.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Matt Norman and last: File:Ieremiamovilatombstone9fz.jpg +[2018-02-13T00:24:05.029] [INFO] cheese - batch complete in: 2.387 secs +[2018-02-13T00:24:05.031] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:24:05.046] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:24:05.106] [INFO] cheese - inserting 1000 documents. first: Mordellistena rufifrons and last: Pulaski Cavalry Legion +[2018-02-13T00:24:05.168] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:24:05.169] [INFO] cheese - inserting 1000 documents. first: File:Sen John Williams TN.jpg and last: Güzellik ve Aşk +[2018-02-13T00:24:05.255] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:24:05.365] [INFO] cheese - inserting 1000 documents. first: File:Head anatomy lateral view 45px.jpg and last: List of Indian films +[2018-02-13T00:24:05.368] [INFO] cheese - inserting 1000 documents. first: Pavonia Terminal (Erie Railroad station) and last: Edmonton Investors Group Limited Partnership +[2018-02-13T00:24:05.393] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:24:05.420] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:24:05.465] [INFO] cheese - inserting 1000 documents. first: Short line railroad and last: Max the Dog +[2018-02-13T00:24:05.492] [INFO] cheese - inserting 1000 documents. first: Flor Silvestre con el Mariachi México and last: Loretta Tupper +[2018-02-13T00:24:05.518] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:24:05.563] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:24:05.600] [INFO] cheese - inserting 1000 documents. first: File:Official Airtime logo.png and last: Category:1400s establishments in Romania +[2018-02-13T00:24:05.642] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:24:05.677] [INFO] cheese - inserting 1000 documents. first: Huesn ue Ask and last: Edgard Sorgeloos +[2018-02-13T00:24:05.718] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:24:05.729] [INFO] cheese - inserting 1000 documents. first: Polish Peasant Party and last: Hybris Records +[2018-02-13T00:24:05.772] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:24:05.785] [INFO] cheese - inserting 1000 documents. first: Transfer of sovereignty of Macau and last: Pyotr Il'yich Tchaikovsky +[2018-02-13T00:24:05.824] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:24:05.901] [INFO] cheese - inserting 1000 documents. first: Loretta Clemens and last: 2007 in Liechtenstein +[2018-02-13T00:24:05.938] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:24:05.977] [INFO] cheese - inserting 1000 documents. first: Category:15th-century establishments in Romania and last: Anatomical variation +[2018-02-13T00:24:05.991] [INFO] cheese - inserting 1000 documents. first: Caesar Best and Greatest and last: Charlie Miller +[2018-02-13T00:24:06.005] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:24:06.071] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:24:06.099] [INFO] cheese - inserting 1000 documents. first: Category:Hambleton geography stubs and last: File:Neuron colored small.jpg +[2018-02-13T00:24:06.103] [INFO] cheese - inserting 1000 documents. first: Anieliny and last: Petey Cipriano +[2018-02-13T00:24:06.138] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:24:06.142] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:24:06.210] [INFO] cheese - inserting 1000 documents. first: Template:Hong Kong football seasons/doc and last: Template:2007-08 Horizon League men's basketball standings +[2018-02-13T00:24:06.256] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:24:06.312] [INFO] cheese - inserting 1000 documents. first: Dnovski and last: Aḥmadzay +[2018-02-13T00:24:06.363] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:24:06.490] [INFO] cheese - inserting 1000 documents. first: Template:Australia-documentary-film-stub and last: Rangdi Krogstad +[2018-02-13T00:24:06.516] [INFO] cheese - inserting 1000 documents. first: Team Cheerios and last: Milltown, County Kerry +[2018-02-13T00:24:06.546] [INFO] cheese - inserting 1000 documents. first: Srikanthakati and last: Template:Maltese Second Division 2008-09 +[2018-02-13T00:24:06.550] [INFO] cheese - inserting 1000 documents. first: Ralph Hyde and last: Star Wars: clone wars +[2018-02-13T00:24:06.551] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:24:06.594] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:24:06.608] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:24:06.611] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:24:06.636] [INFO] cheese - inserting 1000 documents. first: Abraham M. Halpern and last: Category:Accidental deaths in Algeria +[2018-02-13T00:24:06.704] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:24:06.763] [INFO] cheese - inserting 1000 documents. first: Ušumgallu and last: File:WTCJ-FM Classic Hits radio logo.jpg +[2018-02-13T00:24:06.840] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:24:07.072] [INFO] cheese - inserting 1000 documents. first: Bavarian Maximilian Railway and last: Pedro Romo (actor) +[2018-02-13T00:24:07.074] [INFO] cheese - inserting 1000 documents. first: Template:Algeria tallest buildings lists and last: Raid Rasheed +[2018-02-13T00:24:07.102] [INFO] cheese - inserting 1000 documents. first: Category:Accidental deaths in Angola and last: Tsutāja +[2018-02-13T00:24:07.126] [INFO] cheese - inserting 1000 documents. first: Star Wars: Clone wars and last: List of Major League Baseball players (D) +[2018-02-13T00:24:07.151] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:24:07.166] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:24:07.157] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:24:07.209] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:24:07.244] [INFO] cheese - inserting 1000 documents. first: Grand Unified Theory and last: History of Africa +[2018-02-13T00:24:07.253] [INFO] cheese - inserting 1000 documents. first: Anti-LKM antibody and last: 1999 Fed Cup Europe/Africa Zone Group II – Pool B +[2018-02-13T00:24:07.268] [INFO] cheese - inserting 1000 documents. first: Umbrail Pass and last: 1982 in Singapore +[2018-02-13T00:24:07.307] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:24:07.349] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:24:07.377] [INFO] cheese - batch complete in: 2.347 secs +[2018-02-13T00:24:07.546] [INFO] cheese - inserting 1000 documents. first: Mets–Willets Point (disambiguation) and last: Pardhan (disambiguation) +[2018-02-13T00:24:07.552] [INFO] cheese - inserting 1000 documents. first: File:Londonboys-love4unity.jpeg and last: Wikipedia:Miscellany for deletion/User:Mattbuck/Wikipedia - FUCK YEAH! +[2018-02-13T00:24:07.576] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:24:07.586] [INFO] cheese - inserting 1000 documents. first: Eleonora de Medici and last: Wikipedia:Version 1.0 Editorial Team/Aerospace biography articles by quality +[2018-02-13T00:24:07.629] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:24:07.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Worker Student Alliance and last: Martin Reuben Gainsbrugh +[2018-02-13T00:24:07.682] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:24:07.699] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:24:07.751] [INFO] cheese - inserting 1000 documents. first: Category:1928 elections in the United Kingdom and last: Bogue Chitto, Lincoln County, Mississippi +[2018-02-13T00:24:07.842] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:24:07.912] [INFO] cheese - inserting 1000 documents. first: Resolution 338 and last: Sletta, Hordaland +[2018-02-13T00:24:07.947] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:24:07.951] [INFO] cheese - inserting 1000 documents. first: Sioux Falls Pheasants and last: Batata harra +[2018-02-13T00:24:08.041] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:24:08.175] [INFO] cheese - inserting 1000 documents. first: Category:Television categories for deletion scanning and last: Quincy, Illinois micropolitan Area +[2018-02-13T00:24:08.184] [INFO] cheese - inserting 1000 documents. first: Template:Bids for the 2018 and 2022 FIFA World Cup and last: National American Greek Council +[2018-02-13T00:24:08.225] [INFO] cheese - inserting 1000 documents. first: Martin Gainsbrugh and last: Moncrieff J. Spear +[2018-02-13T00:24:08.251] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:24:08.264] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:24:08.292] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:24:08.314] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eurozone as an optimum currency area and last: Shashishalhem +[2018-02-13T00:24:08.370] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:24:08.422] [INFO] cheese - inserting 1000 documents. first: Critics' Choice Television Award for Best Actress in a Drama Series and last: Tuskestan +[2018-02-13T00:24:08.493] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:24:08.605] [INFO] cheese - inserting 1000 documents. first: Court of General Surveyors and last: Kshullaka +[2018-02-13T00:24:08.639] [INFO] cheese - inserting 1000 documents. first: History of Ptolemaic Egypt and last: Catnip (disambiguation) +[2018-02-13T00:24:08.643] [INFO] cheese - inserting 1000 documents. first: The Barefoot Rugby League Show and last: Penstemon palmeri var. eglandulosus +[2018-02-13T00:24:08.651] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:24:08.704] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:24:08.725] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:24:08.820] [INFO] cheese - inserting 1000 documents. first: List of main characters in Bamse and last: Transient lingual papillitis +[2018-02-13T00:24:08.865] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:24:08.880] [INFO] cheese - inserting 1000 documents. first: Wagon Hill Cemetery Monument and last: Zacharias Peter Paul Obenauf +[2018-02-13T00:24:08.921] [INFO] cheese - inserting 1000 documents. first: Toskastan and last: Category:People of Meiji-period Japan +[2018-02-13T00:24:08.955] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:24:08.988] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:24:09.065] [INFO] cheese - inserting 1000 documents. first: Live: Meadowbrook, Rochester, Michigan – 12th September 1971 and last: Kaiga Nuclear Power Plant +[2018-02-13T00:24:09.105] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:24:09.163] [INFO] cheese - inserting 1000 documents. first: Tarawa Beachhead and last: Ron Fimrite +[2018-02-13T00:24:09.233] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:24:09.280] [INFO] cheese - inserting 1000 documents. first: Patrick Sjöberg and last: Princess Srirasmi +[2018-02-13T00:24:09.319] [INFO] cheese - inserting 1000 documents. first: Talkers magazine and last: Farhad Ahmed Dockrat +[2018-02-13T00:24:09.340] [INFO] cheese - inserting 1000 documents. first: File:Dorits.jpg and last: Wikipedia:Requested articles/Sports/Association football (soccer) +[2018-02-13T00:24:09.342] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:24:09.375] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:24:09.399] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:24:09.469] [INFO] cheese - inserting 1000 documents. first: Wayne Wilkins and last: Saint-Raphaël Arrondissement +[2018-02-13T00:24:09.492] [INFO] cheese - inserting 1000 documents. first: 1905 law on the Separation of the Churches and the State and last: Monohorgonj Upazila +[2018-02-13T00:24:09.505] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:24:09.543] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:24:09.664] [INFO] cheese - inserting 1000 documents. first: History of Oceania and last: JohnnyUnitas +[2018-02-13T00:24:09.688] [INFO] cheese - inserting 1000 documents. first: ROSL and last: Iuzhnyy District +[2018-02-13T00:24:09.721] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:24:09.731] [INFO] cheese - inserting 1000 documents. first: Ethnies and last: Cheshmeh-ye Nil +[2018-02-13T00:24:09.737] [INFO] cheese - inserting 1000 documents. first: House of Malatesta and last: United States Air Force Pararescue +[2018-02-13T00:24:09.769] [INFO] cheese - batch complete in: 2.392 secs +[2018-02-13T00:24:09.781] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:24:09.802] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:24:09.829] [INFO] cheese - inserting 1000 documents. first: Category:Cardiidae and last: Category:Category-Class Melbourne articles +[2018-02-13T00:24:09.830] [INFO] cheese - inserting 1000 documents. first: WDKB and last: M. rubra +[2018-02-13T00:24:09.887] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:24:09.900] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:24:10.021] [INFO] cheese - inserting 1000 documents. first: Manoharganj Upazila and last: Lambert III (bishop of Kraków) +[2018-02-13T00:24:10.042] [INFO] cheese - inserting 1000 documents. first: Peter B. Krauser and last: Manuel Antonio Mesones Muro +[2018-02-13T00:24:10.071] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:24:10.103] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:24:10.207] [INFO] cheese - inserting 1000 documents. first: Dashti, Golestan and last: Wikipedia:Sockpuppet investigations/ScienceApologist +[2018-02-13T00:24:10.236] [INFO] cheese - inserting 1000 documents. first: Diocese of Ariano Irpino-Lacedonia and last: Naseem Kharal +[2018-02-13T00:24:10.262] [INFO] cheese - inserting 1000 documents. first: 2009 in spaceflight (July–December) and last: Cú Mara mac Maic Liac +[2018-02-13T00:24:10.267] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:24:10.302] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:24:10.323] [INFO] cheese - inserting 1000 documents. first: Quinidine gluconate and last: A.M.W.S. +[2018-02-13T00:24:10.319] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:24:10.387] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:24:10.475] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Querétaro and last: Olympiada, Chalkidiki +[2018-02-13T00:24:10.499] [INFO] cheese - inserting 1000 documents. first: Fountain Formation and last: Wikipedia:Requests for checkuser/Case/Bosna +[2018-02-13T00:24:10.515] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:24:10.536] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:24:10.651] [INFO] cheese - inserting 1000 documents. first: John McCone and last: Wikipedia:Editor review/AJH16 +[2018-02-13T00:24:10.658] [INFO] cheese - inserting 1000 documents. first: Category:Prairie School architecture in Washington (state) and last: Ace Buchanan +[2018-02-13T00:24:10.690] [INFO] cheese - inserting 1000 documents. first: Aruba at the Pan American Games and last: Kölner Kartause +[2018-02-13T00:24:10.699] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:24:10.716] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:24:10.754] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:24:10.953] [INFO] cheese - inserting 1000 documents. first: Shocks and discontinuities (magnetohydrodynamics) and last: Submarine earthquake +[2018-02-13T00:24:10.957] [INFO] cheese - inserting 1000 documents. first: File:Leon vance.jpg and last: Wikipedia:Votes for deletion/EdgeSide +[2018-02-13T00:24:10.975] [INFO] cheese - inserting 1000 documents. first: Steven Brusatte and last: Culture of Madeira +[2018-02-13T00:24:11.004] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:24:11.030] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:24:11.047] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:24:11.102] [INFO] cheese - inserting 1000 documents. first: File:2012 ALCS.gif and last: Universidad San Sebastián +[2018-02-13T00:24:11.106] [INFO] cheese - inserting 1000 documents. first: Genrikh Liushkov and last: Category:Ships of the Royal New Zealand Navy +[2018-02-13T00:24:11.157] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:24:11.156] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:24:11.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/neuchess.com and last: Fontana del Nettuno +[2018-02-13T00:24:11.376] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:24:11.507] [INFO] cheese - inserting 1000 documents. first: John George Lambton, 3rd Earl of Durham and last: Wikipedia:Articles for deletion/WikiProject Chinese characters +[2018-02-13T00:24:11.519] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Earth Angel/archive1 and last: Oetenbachgasse +[2018-02-13T00:24:11.535] [INFO] cheese - inserting 1000 documents. first: Shonan Beach FM and last: Ralph J Gleason +[2018-02-13T00:24:11.540] [INFO] cheese - inserting 1000 documents. first: Edward Garvey and last: Niels Dorph +[2018-02-13T00:24:11.557] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:24:11.581] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:24:11.582] [INFO] cheese - inserting 1000 documents. first: Ultras (comics) and last: Category:Russian Civil War films +[2018-02-13T00:24:11.579] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:24:11.600] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:24:11.656] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:24:11.773] [INFO] cheese - inserting 1000 documents. first: File:Human GALE bound to NADH and UDP-glucose.png and last: Wikipedia:WikiProject Spam/LinkReports/ankaraticaret.org +[2018-02-13T00:24:11.845] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:24:11.909] [INFO] cheese - inserting 1000 documents. first: Yano (disambiguation) and last: Kolonia Kąty +[2018-02-13T00:24:11.941] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:24:11.992] [INFO] cheese - inserting 1000 documents. first: Gandhian socialism and last: Category:B-Class Finland articles +[2018-02-13T00:24:11.994] [INFO] cheese - inserting 1000 documents. first: Daihatsu New Line and last: Gyan Vihar University +[2018-02-13T00:24:11.999] [INFO] cheese - inserting 1000 documents. first: Calcium-binding glycoprotein and last: Wikipedia:WikiProject Indian Premier League/Article alerts +[2018-02-13T00:24:12.041] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:24:12.055] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:24:12.054] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:24:12.081] [INFO] cheese - inserting 1000 documents. first: Showing to the moon and last: Flip Saunders +[2018-02-13T00:24:12.094] [INFO] cheese - inserting 1000 documents. first: Johnny Unitas and last: Kesgrave +[2018-02-13T00:24:12.135] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:24:12.225] [INFO] cheese - inserting 1000 documents. first: 2011–12 South Pacific cyclone season and last: 2002 Croatian Figure Skating Championships +[2018-02-13T00:24:12.270] [INFO] cheese - batch complete in: 2.501 secs +[2018-02-13T00:24:12.282] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:24:12.330] [INFO] cheese - inserting 1000 documents. first: Hugo Zoeller and last: Template:Puchov District +[2018-02-13T00:24:12.332] [INFO] cheese - inserting 1000 documents. first: Vn and last: Frits Pirard +[2018-02-13T00:24:12.364] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:24:12.370] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:24:12.441] [INFO] cheese - inserting 1000 documents. first: Timoleague and Courtmacsherry Extension Light Railway and last: Category:Schools in Addis Ababa +[2018-02-13T00:24:12.504] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:24:12.612] [INFO] cheese - inserting 1000 documents. first: Baron von Tauchnitz Bernard and last: Sylvia McNair +[2018-02-13T00:24:12.631] [INFO] cheese - inserting 1000 documents. first: Slovene intimism and last: St John the Baptist Church +[2018-02-13T00:24:12.682] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:24:12.704] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:24:12.715] [INFO] cheese - inserting 1000 documents. first: Murray Avenue and last: Turritella cornea +[2018-02-13T00:24:12.782] [INFO] cheese - inserting 1000 documents. first: March 1 movement and last: Ghost in the Shell: Stand Alone Complex O.S.T 2 +[2018-02-13T00:24:12.802] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:24:12.811] [INFO] cheese - inserting 1000 documents. first: File:World-Middle-Powers.svg and last: Wikipedia:Articles for deletion/Glastonbury Festival (R.E.M.) +[2018-02-13T00:24:12.850] [INFO] cheese - inserting 1000 documents. first: 2015 Belgium national football team results and last: Doryrhamphus japonicus +[2018-02-13T00:24:12.850] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:24:12.905] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:24:12.913] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:24:13.195] [INFO] cheese - inserting 1000 documents. first: File:Chhota Chetan.jpg and last: Category:Unknown-importance Washington University in St. Louis articles +[2018-02-13T00:24:13.268] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:24:13.281] [INFO] cheese - inserting 1000 documents. first: Charbonnières Arrondissement and last: Mont Organise +[2018-02-13T00:24:13.282] [INFO] cheese - inserting 1000 documents. first: The Lady Vanished and last: Veliko Trnjane +[2018-02-13T00:24:13.293] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Biology and last: Interstate 39 in Illinois +[2018-02-13T00:24:13.331] [INFO] cheese - inserting 1000 documents. first: Mieczyslaw Horzowski and last: Broken plural +[2018-02-13T00:24:13.347] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:24:13.356] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:24:13.363] [INFO] cheese - inserting 1000 documents. first: Honshu pipefish and last: Category:Bonnier family +[2018-02-13T00:24:13.336] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:24:13.408] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:24:13.428] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:24:13.631] [INFO] cheese - inserting 1000 documents. first: John Taylor (Geordy songwriter) and last: Hart Council +[2018-02-13T00:24:13.679] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:24:13.749] [INFO] cheese - inserting 1000 documents. first: Three-ring circus and last: File:Dario-11.gif +[2018-02-13T00:24:13.752] [INFO] cheese - inserting 1000 documents. first: Vilje Kolo and last: NBA Nation (tour) +[2018-02-13T00:24:13.753] [INFO] cheese - inserting 1000 documents. first: Joachim Ekanga-Ehawa and last: The Lovely Eggs +[2018-02-13T00:24:13.792] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:24:13.798] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:24:13.800] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:24:13.810] [INFO] cheese - inserting 1000 documents. first: Aimoin of Fleury and last: Candace Jordan +[2018-02-13T00:24:13.875] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:24:13.956] [INFO] cheese - inserting 1000 documents. first: Mike Modest and last: Hurricane Orlene +[2018-02-13T00:24:14.023] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:24:14.120] [INFO] cheese - inserting 1000 documents. first: Trance house and last: Category:Rapid City Rush +[2018-02-13T00:24:14.169] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:24:14.179] [INFO] cheese - inserting 1000 documents. first: Sarah Devens and last: Teacher of Latin America +[2018-02-13T00:24:14.254] [INFO] cheese - inserting 1000 documents. first: Black/Matrix (video game series) and last: Why Shoot a Butler +[2018-02-13T00:24:14.291] [INFO] cheese - inserting 1000 documents. first: Gallup survey and last: Michael Scott (Artistic Director) +[2018-02-13T00:24:14.321] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:24:14.384] [INFO] cheese - inserting 1000 documents. first: Category:Musicals based on poems and last: Newmarket West Train Station +[2018-02-13T00:24:14.392] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:24:14.418] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:24:14.520] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:24:14.633] [INFO] cheese - inserting 1000 documents. first: Kurt Waldheim and last: Laurence of Canterbury +[2018-02-13T00:24:14.692] [INFO] cheese - inserting 1000 documents. first: File:Curtiss King PaidDues12.jpg and last: Pozega Valley +[2018-02-13T00:24:14.737] [INFO] cheese - inserting 1000 documents. first: File:The pillows - KOOL SPICE.jpg and last: Moroccan Quarter +[2018-02-13T00:24:14.779] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:24:14.835] [INFO] cheese - batch complete in: 2.565 secs +[2018-02-13T00:24:14.889] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:24:14.991] [INFO] cheese - inserting 1000 documents. first: Dirty Money (duo) and last: Category:Politics of Austria-Hungary +[2018-02-13T00:24:15.023] [INFO] cheese - inserting 1000 documents. first: The Unfinished Clue and last: Template:2015 County Hurling Championships +[2018-02-13T00:24:15.035] [INFO] cheese - inserting 1000 documents. first: Robert German and last: Trilingualism +[2018-02-13T00:24:15.048] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:24:15.124] [INFO] cheese - inserting 1000 documents. first: Portal:Surrey/Selected picture/3 and last: 1984–85 Huddersfield Town A.F.C. season +[2018-02-13T00:24:15.123] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:24:15.154] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:24:15.229] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:24:15.442] [INFO] cheese - inserting 1000 documents. first: Borts and last: Category:Polish civil aircraft 2010–2019 +[2018-02-13T00:24:15.477] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:24:15.639] [INFO] cheese - inserting 1000 documents. first: Bluecher and last: Vsevolod I +[2018-02-13T00:24:15.666] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Eleanor Robinson and last: Doliops gertrudis +[2018-02-13T00:24:15.678] [INFO] cheese - inserting 1000 documents. first: Japanese Regional Leagues 1985 and last: Mikael Blomkvist +[2018-02-13T00:24:15.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mokhless Al-Hariri and last: Template:2007-08 NBA Atlantic standings +[2018-02-13T00:24:15.696] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:24:15.724] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:24:15.753] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:24:15.755] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:24:15.784] [INFO] cheese - inserting 1000 documents. first: File:Eli's Cheesecake Logo.jpg and last: Kafsh Mahalleh +[2018-02-13T00:24:15.826] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:24:15.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Doctor's Advocate (song) and last: Template:Euro topics +[2018-02-13T00:24:15.931] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:24:16.126] [INFO] cheese - inserting 1000 documents. first: Draft:William Richardson Belknap and last: Amnokkang Sports Club +[2018-02-13T00:24:16.150] [INFO] cheese - inserting 1000 documents. first: Template:2007-08 NBA Central Division Standings and last: MI 17 +[2018-02-13T00:24:16.156] [INFO] cheese - inserting 1000 documents. first: The Zillo Beast Strikes Back and last: Tom Knoakes +[2018-02-13T00:24:16.180] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:24:16.208] [INFO] cheese - inserting 1000 documents. first: File:David Schwimmer as Ross Geller.jpg and last: File:SC Vila Rea.png +[2018-02-13T00:24:16.233] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:24:16.245] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:24:16.306] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:24:16.362] [INFO] cheese - inserting 1000 documents. first: Gilad Anni-Padda and last: Billy Payne +[2018-02-13T00:24:16.425] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:24:16.466] [INFO] cheese - inserting 1000 documents. first: 2007 Notre Dame Fighting Irish football team and last: Communal forests of India +[2018-02-13T00:24:16.522] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:24:16.624] [INFO] cheese - inserting 1000 documents. first: Tracy Ryan (actress) and last: Anonychomyrma extensa +[2018-02-13T00:24:16.645] [INFO] cheese - inserting 1000 documents. first: Category:Road transport in South Africa and last: Mongolia - Education System +[2018-02-13T00:24:16.663] [INFO] cheese - inserting 1000 documents. first: Dig-Dig-Joy and last: Gus-Khrustal'nyi District +[2018-02-13T00:24:16.670] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:24:16.692] [INFO] cheese - inserting 1000 documents. first: Chillion L. Miller and last: David Jacobus Bosch +[2018-02-13T00:24:16.703] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:24:16.719] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:24:16.799] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:24:17.005] [INFO] cheese - inserting 1000 documents. first: File:A Plan of Alexandria now Belhaven.jpg and last: Piqua High School +[2018-02-13T00:24:17.072] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:24:17.075] [INFO] cheese - inserting 1000 documents. first: Gus-Khrustal'niy District and last: File:KuK Maria Theresa, 1895.png +[2018-02-13T00:24:17.079] [INFO] cheese - inserting 1000 documents. first: Mozzarella sticks and last: Soledad Alvear Valenzuela +[2018-02-13T00:24:17.156] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:24:17.217] [INFO] cheese - inserting 1000 documents. first: Kitzbühele EC and last: Category:Holston River +[2018-02-13T00:24:17.222] [INFO] cheese - inserting 1000 documents. first: Assault & battery and last: Arpeggiated +[2018-02-13T00:24:17.222] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:24:17.271] [INFO] cheese - inserting 1000 documents. first: May 2010 Thai military crackdown and last: Svetlana Vukajlovic +[2018-02-13T00:24:17.312] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:24:17.325] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:24:17.351] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:24:17.469] [INFO] cheese - inserting 1000 documents. first: La Banda Sinaloense and last: Mehmed III +[2018-02-13T00:24:17.560] [INFO] cheese - inserting 1000 documents. first: Portal:Indigenous peoples of North America/Selected article/February and last: Mark McCormack's world golf rankings +[2018-02-13T00:24:17.580] [INFO] cheese - batch complete in: 2.745 secs +[2018-02-13T00:24:17.615] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:24:17.637] [INFO] cheese - inserting 1000 documents. first: Tanit d'or and last: Persistent fault +[2018-02-13T00:24:17.652] [INFO] cheese - inserting 1000 documents. first: Pura Luhur Batukaru and last: OS 11 +[2018-02-13T00:24:17.708] [INFO] cheese - inserting 1000 documents. first: Hold Back the River and last: Doma clasica +[2018-02-13T00:24:17.728] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:24:17.739] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Zhelyakov and last: The Big Idea (U.S. TV series) +[2018-02-13T00:24:17.743] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:24:17.765] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:24:17.815] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:24:17.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Israel Palestine Collaboration/Links to reliable sources discussions and last: Harada Station +[2018-02-13T00:24:17.937] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:24:18.100] [INFO] cheese - inserting 1000 documents. first: Bård Lappegård Lahn and last: Umago +[2018-02-13T00:24:18.118] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RapidKL LRT right/KL Monorail and last: Category:Marussia Formula One drivers +[2018-02-13T00:24:18.157] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:24:18.157] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:24:18.241] [INFO] cheese - inserting 1000 documents. first: Minister for Women and Equality and last: Category:Populated coastal places in Belgium +[2018-02-13T00:24:18.243] [INFO] cheese - inserting 1000 documents. first: Garrison schools and last: Compulsory education +[2018-02-13T00:24:18.309] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:24:18.312] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:24:18.335] [INFO] cheese - inserting 1000 documents. first: Hoplocorypha acuta and last: Uyghur peoples +[2018-02-13T00:24:18.377] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:24:18.424] [INFO] cheese - inserting 1000 documents. first: Portuguese School of Equestrian Art and last: Time-keeper +[2018-02-13T00:24:18.470] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:24:18.513] [INFO] cheese - inserting 1000 documents. first: Host–pathogen interaction and last: Vyaznikovskii +[2018-02-13T00:24:18.557] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:24:18.667] [INFO] cheese - inserting 1000 documents. first: Cleeve Hurdle and last: Gilstead +[2018-02-13T00:24:18.677] [INFO] cheese - inserting 1000 documents. first: The Definitive Collection (Level 42) and last: 七 +[2018-02-13T00:24:18.697] [INFO] cheese - inserting 1000 documents. first: File:ImaginationCover.jpg and last: François Eugène Vidocq +[2018-02-13T00:24:18.713] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:24:18.719] [INFO] cheese - inserting 1000 documents. first: Category:Populated coastal places in Belize and last: Taylorcraft BF +[2018-02-13T00:24:18.733] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:24:18.768] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:24:18.797] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:24:18.907] [INFO] cheese - inserting 1000 documents. first: Viaznikovsky and last: Template:Did you know nominations/Hessentag +[2018-02-13T00:24:18.909] [INFO] cheese - inserting 1000 documents. first: Turris clionellaeformis and last: Hallelujah for the Cross +[2018-02-13T00:24:18.988] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:24:18.981] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:24:19.210] [INFO] cheese - inserting 1000 documents. first: Anatol E. Baconschi and last: Midway Mills, Virginia +[2018-02-13T00:24:19.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2007 February 17 and last: Leonid Shvartzman +[2018-02-13T00:24:19.260] [INFO] cheese - inserting 1000 documents. first: Bretenanwealda and last: Category:2007 Pan Arab Games +[2018-02-13T00:24:19.273] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:24:19.332] [INFO] cheese - inserting 1000 documents. first: Analytic element method and last: KDE Dot News +[2018-02-13T00:24:19.332] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:24:19.343] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:24:19.367] [INFO] cheese - inserting 1000 documents. first: Category:Blinn Buccaneers football and last: Euryphene laetitioides +[2018-02-13T00:24:19.383] [INFO] cheese - inserting 1000 documents. first: Le Grand, Alabama and last: Lamprosema camphorae +[2018-02-13T00:24:19.414] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:24:19.437] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:24:19.470] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:24:19.648] [INFO] cheese - inserting 1000 documents. first: Jeff Clarke (disambiguation) and last: File:Closeup of pavement with grass.JPG +[2018-02-13T00:24:19.696] [INFO] cheese - inserting 1000 documents. first: Mustafa I and last: List of national anthems +[2018-02-13T00:24:19.697] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:24:19.725] [INFO] cheese - inserting 1000 documents. first: Swiftboat campaign and last: Category:Maritime incidents in 1981 +[2018-02-13T00:24:19.766] [INFO] cheese - inserting 1000 documents. first: Chūma and last: Hayataella +[2018-02-13T00:24:19.778] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:24:19.793] [INFO] cheese - inserting 1000 documents. first: O Fado da Procura and last: File:Safe Auto logo (low res).jpg +[2018-02-13T00:24:19.809] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:24:19.847] [INFO] cheese - batch complete in: 2.266 secs +[2018-02-13T00:24:19.861] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:24:19.898] [INFO] cheese - inserting 1000 documents. first: Category:Important Bird Areas of Iceland and last: Lycée Français de Toronto +[2018-02-13T00:24:19.909] [INFO] cheese - inserting 1000 documents. first: Densha Otoko and last: Donald Arseneault +[2018-02-13T00:24:19.940] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:24:20.004] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:24:20.078] [INFO] cheese - inserting 1000 documents. first: Phellinus igniarius and last: Masonic Widows and Orphans Home +[2018-02-13T00:24:20.126] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:24:20.148] [INFO] cheese - inserting 1000 documents. first: Category:Girls' schools in Louisiana and last: Kasabad +[2018-02-13T00:24:20.198] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:24:20.211] [INFO] cheese - inserting 1000 documents. first: File:Kaathodu Kaathoram.jpg and last: Grappling Hook (video game) +[2018-02-13T00:24:20.271] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:24:20.274] [INFO] cheese - inserting 1000 documents. first: Tacpac and last: Westkapelle-Binnen +[2018-02-13T00:24:20.331] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:24:20.433] [INFO] cheese - inserting 1000 documents. first: Brzozowiec and last: Godziszów, Lublin Voivodeship +[2018-02-13T00:24:20.443] [INFO] cheese - inserting 1000 documents. first: Lycee Francais Toronto and last: Forelius pruinosus +[2018-02-13T00:24:20.470] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:24:20.503] [INFO] cheese - inserting 1000 documents. first: Pedro Vicente Maldonado Canton and last: List of islands of the Northeast United States +[2018-02-13T00:24:20.503] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:24:20.525] [INFO] cheese - inserting 1000 documents. first: Kasabad-e Pa'in and last: Carabus stscheglowi +[2018-02-13T00:24:20.560] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:24:20.565] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:24:20.668] [INFO] cheese - inserting 1000 documents. first: Anterior tibial vessels and last: Badgerland +[2018-02-13T00:24:20.707] [INFO] cheese - inserting 1000 documents. first: David Branch (fighter) and last: Turó del Samont +[2018-02-13T00:24:20.712] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:24:20.751] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:24:20.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Toymaster and last: Viardo +[2018-02-13T00:24:20.900] [INFO] cheese - inserting 1000 documents. first: High criticism and last: File:CEOSL logo.png +[2018-02-13T00:24:20.932] [INFO] cheese - inserting 1000 documents. first: Cicindela pulchra and last: Social messaging applications +[2018-02-13T00:24:20.931] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:24:20.945] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:24:20.982] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:24:21.108] [INFO] cheese - inserting 1000 documents. first: Dark-frame subtraction and last: File:Wrights Cold Tar Soap Logo.png +[2018-02-13T00:24:21.123] [INFO] cheese - inserting 1000 documents. first: Puig Neulós and last: Wikipedia:WikiProject Spam/LinkReports/paginasweb.com.pe +[2018-02-13T00:24:21.141] [INFO] cheese - inserting 1000 documents. first: Side collision and last: Category:Mind Funk albums +[2018-02-13T00:24:21.150] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:24:21.173] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:24:21.237] [INFO] cheese - inserting 1000 documents. first: Virapoullé and last: Lords of Galloway +[2018-02-13T00:24:21.241] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:24:21.314] [INFO] cheese - inserting 1000 documents. first: Ahi'ezer and last: Andreas Høy +[2018-02-13T00:24:21.312] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:24:21.366] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:24:21.487] [INFO] cheese - inserting 1000 documents. first: Chat applications and last: Palpita crococosta +[2018-02-13T00:24:21.501] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/karendejo.com and last: ISO 639:bzt +[2018-02-13T00:24:21.553] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:24:21.582] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:24:21.715] [INFO] cheese - inserting 1000 documents. first: Red River Valley (album) and last: USS Gambier Bay (AVG-73) +[2018-02-13T00:24:21.777] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:24:21.829] [INFO] cheese - inserting 1000 documents. first: Living Environs and last: Polish-Swedish War of 1620-1622 +[2018-02-13T00:24:21.857] [INFO] cheese - inserting 1000 documents. first: Category:1963 Canadian television series debuts and last: Category:Rimouski +[2018-02-13T00:24:21.884] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:24:21.917] [INFO] cheese - inserting 1000 documents. first: Cruella DeVil and last: Colonial Heads of Cape Verde +[2018-02-13T00:24:21.916] [INFO] cheese - inserting 1000 documents. first: Nikola Tesla and last: Postmaster General +[2018-02-13T00:24:21.941] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:24:21.978] [INFO] cheese - inserting 1000 documents. first: ISO 639:bzu and last: ISO 639:kng +[2018-02-13T00:24:22.052] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:24:22.056] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:24:22.072] [INFO] cheese - batch complete in: 2.225 secs +[2018-02-13T00:24:22.086] [INFO] cheese - inserting 1000 documents. first: Palpita eupilosalis and last: Category:Ballets to the music of Henry Purcell +[2018-02-13T00:24:22.198] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:24:22.383] [INFO] cheese - inserting 1000 documents. first: USS Gambier Bay (ACV-73) and last: USS Key West (PG-125) +[2018-02-13T00:24:22.399] [INFO] cheese - inserting 1000 documents. first: Template:Pilipinas Got Talent and last: Wikipedia:WikiProject Spam/LinkReports/cctvpuertorico.com +[2018-02-13T00:24:22.435] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:24:22.462] [INFO] cheese - inserting 1000 documents. first: Category:Symbols of Connecticut and last: Wikipedia:Articles for deletion/The Old-Time Gospel Hour +[2018-02-13T00:24:22.474] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:24:22.542] [INFO] cheese - inserting 1000 documents. first: Central do Brasil (film) and last: File:The Collegiate at The University of Winnipeg.jpg +[2018-02-13T00:24:22.559] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:24:22.632] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:24:22.734] [INFO] cheese - inserting 1000 documents. first: 1845 in Chile and last: Category:Wayne State Wildcats +[2018-02-13T00:24:22.780] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:24:22.786] [INFO] cheese - inserting 1000 documents. first: Heads of Government of Cape Verde and last: Wikipedia:Featured article candidates/Bettie Page/archive1 +[2018-02-13T00:24:22.842] [INFO] cheese - inserting 1000 documents. first: ISO 639:noo and last: Čičke +[2018-02-13T00:24:22.863] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:24:22.890] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:24:22.900] [INFO] cheese - inserting 1000 documents. first: A Cappella Records, Inc. and last: Category:Iraqi people of American descent +[2018-02-13T00:24:22.940] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:24:23.003] [INFO] cheese - inserting 1000 documents. first: Solina and last: CASCADE(Japanese Band) +[2018-02-13T00:24:23.023] [INFO] cheese - inserting 1000 documents. first: File:PCRpublication.png and last: Kure-Portpier Station +[2018-02-13T00:24:23.052] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:24:23.064] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:24:23.131] [INFO] cheese - inserting 1000 documents. first: Category:Winona State Warriors and last: Category:Swedish Pentecostal Movement +[2018-02-13T00:24:23.188] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:24:23.273] [INFO] cheese - inserting 1000 documents. first: ISO 639:trw and last: Hereford Railway +[2018-02-13T00:24:23.326] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:24:23.399] [INFO] cheese - inserting 1000 documents. first: George Thorne (disambiguation) and last: File:HTV-3 patch.png +[2018-02-13T00:24:23.407] [INFO] cheese - inserting 1000 documents. first: Vizcacha and last: Ronald Broadhurst +[2018-02-13T00:24:23.423] [INFO] cheese - inserting 1000 documents. first: Calgary Highlanders and last: Summer's Lease +[2018-02-13T00:24:23.457] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:24:23.469] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:24:23.475] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:24:23.511] [INFO] cheese - inserting 1000 documents. first: Khassimirou Diop and last: Uniroyal Fun Cup +[2018-02-13T00:24:23.568] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:24:23.597] [INFO] cheese - inserting 1000 documents. first: Category:Rural councils of Lviv Oblast and last: The Portrait of Mr. W.H. +[2018-02-13T00:24:23.643] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:24:23.733] [INFO] cheese - inserting 1000 documents. first: List of National Taiwan University people and last: Wikipedia:Reference desk/Archives/Humanities/2010 May 21 +[2018-02-13T00:24:23.789] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:24:23.863] [INFO] cheese - inserting 1000 documents. first: Spinning wheel (animation) and last: File:Limocar logo.png +[2018-02-13T00:24:23.896] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:24:23.902] [INFO] cheese - inserting 1000 documents. first: The Lords of the Nine and last: Peter Malm +[2018-02-13T00:24:23.919] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Ming–Hồ War and last: Category:Nayarit articles missing geocoordinate data +[2018-02-13T00:24:23.972] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:24:23.991] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:24:24.003] [INFO] cheese - inserting 1000 documents. first: Jamestown Red Sox and last: Category:Racehorse owners and breeders +[2018-02-13T00:24:24.049] [INFO] cheese - inserting 1000 documents. first: Financial services company and last: Daniel O'Keeffe (commissioner) +[2018-02-13T00:24:24.067] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:24:24.083] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:24:24.135] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:No personal attacks and last: Weightlifting at the 2008 Summer Olympics – Women's 58 kg +[2018-02-13T00:24:24.173] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:24:24.176] [INFO] cheese - inserting 1000 documents. first: LIU Blackbirds men's basketball and last: Category:Associazione Calcio Bellaria Igea Marina SRL +[2018-02-13T00:24:24.181] [INFO] cheese - inserting 1000 documents. first: Paul Cohen and last: Pope Valentine +[2018-02-13T00:24:24.242] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:24:24.323] [INFO] cheese - batch complete in: 2.25 secs +[2018-02-13T00:24:24.331] [INFO] cheese - inserting 1000 documents. first: Template:Rugby union in Sweden and last: Portal:Indonesia/Featured picture/7 +[2018-02-13T00:24:24.361] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:24:24.438] [INFO] cheese - inserting 1000 documents. first: O'Connor Island and last: File:Teenage Mutant Ninja Turtles II (1991 film) poster.jpg +[2018-02-13T00:24:24.478] [INFO] cheese - inserting 1000 documents. first: Wyoming (1940 film) and last: File:B5album1.jpg +[2018-02-13T00:24:24.474] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:24:24.495] [INFO] cheese - inserting 1000 documents. first: Adhesive Comics and last: M. Thomson +[2018-02-13T00:24:24.543] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:24:24.551] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:24:24.648] [INFO] cheese - inserting 1000 documents. first: Hodam, West Virginia and last: Adhar Kayvan +[2018-02-13T00:24:24.679] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:24:24.749] [INFO] cheese - inserting 1000 documents. first: Category:Upper West Side and last: Category:Cities and towns in Nalgonda district +[2018-02-13T00:24:24.751] [INFO] cheese - inserting 1000 documents. first: Ronnie Barrett and last: 12 hour gap +[2018-02-13T00:24:24.787] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:24:24.837] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:24:24.873] [INFO] cheese - inserting 1000 documents. first: Zed Group and last: Miles Justice Knowlton +[2018-02-13T00:24:24.885] [INFO] cheese - inserting 1000 documents. first: Oregon, Kentucky and last: Category:Potez aircraft engines +[2018-02-13T00:24:24.905] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:24:24.915] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:24:25.005] [INFO] cheese - inserting 1000 documents. first: Gammer Gurton's Garland and last: Line 7, Suzhou Rail Transit +[2018-02-13T00:24:25.054] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:24:25.084] [INFO] cheese - inserting 1000 documents. first: Land of Broken Hearts and last: Paulus de Santa Maria +[2018-02-13T00:24:25.136] [INFO] cheese - inserting 1000 documents. first: Robertson v. United States ex rel. Watson and last: The Bread +[2018-02-13T00:24:25.150] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:24:25.186] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:24:25.250] [INFO] cheese - inserting 1000 documents. first: Jean Marcot and last: Chapar +[2018-02-13T00:24:25.286] [INFO] cheese - inserting 1000 documents. first: File:Logo of Orexigen Therapeutics.jpg and last: Pyralis flegialis +[2018-02-13T00:24:25.302] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:24:25.335] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:24:25.357] [INFO] cheese - inserting 1000 documents. first: Dydoe piercing and last: Tirfing (Fire Emblem) +[2018-02-13T00:24:25.420] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:24:25.461] [INFO] cheese - inserting 1000 documents. first: Overly Attached Girlfriend and last: Category:1920s in Algeria +[2018-02-13T00:24:25.498] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:24:25.515] [INFO] cheese - inserting 1000 documents. first: File:FredFrith AlbumCover MiddleMoment(1995).jpg and last: Wikipedia:Featured article candidates/C programming language +[2018-02-13T00:24:25.517] [INFO] cheese - inserting 1000 documents. first: Seine-et-Marne I (electoral constituency) and last: Majority representation system +[2018-02-13T00:24:25.555] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:24:25.556] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:24:25.682] [INFO] cheese - inserting 1000 documents. first: Zăvoi and last: Playin' with Fire +[2018-02-13T00:24:25.731] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:24:25.737] [INFO] cheese - inserting 1000 documents. first: Paradosis villosalis and last: Draft:Dodge & Twist +[2018-02-13T00:24:25.809] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:24:25.842] [INFO] cheese - inserting 1000 documents. first: Barbara Yung Mei Ling and last: UTC+03:00 +[2018-02-13T00:24:25.868] [INFO] cheese - inserting 1000 documents. first: Vicente Martínez (wrestler) and last: Category:Populated places in Azilal Province +[2018-02-13T00:24:25.902] [INFO] cheese - inserting 1000 documents. first: File:Murder in the Cathedral (movie poster).jpg and last: Wikipedia:Articles for deletion/Visual modularity +[2018-02-13T00:24:25.906] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:24:25.906] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:24:25.950] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:24:26.040] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lajme.gen.al and last: File:Labyrinth return to heaven denied.jpg +[2018-02-13T00:24:26.079] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:24:26.160] [INFO] cheese - inserting 1000 documents. first: Century Development Corporation and last: Fraktur (Pennsylvania German folk art) +[2018-02-13T00:24:26.215] [INFO] cheese - inserting 1000 documents. first: District Five Schoolhouse and last: Category:Stub-Class Indian cinema articles of Mid-importance +[2018-02-13T00:24:26.238] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:24:26.295] [INFO] cheese - inserting 1000 documents. first: 1908 Pattern Webbing and last: Category:Populated places in Cojedes (state) +[2018-02-13T00:24:26.293] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:24:26.348] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:24:26.361] [INFO] cheese - inserting 1000 documents. first: Mount Washington Railway and last: Olivio Premium Products +[2018-02-13T00:24:26.362] [INFO] cheese - inserting 1000 documents. first: Pope Victor I and last: Range voting +[2018-02-13T00:24:26.364] [INFO] cheese - inserting 1000 documents. first: List of compositions by Bohuslav Martinů and last: The Traitor (play) +[2018-02-13T00:24:26.409] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:24:26.418] [INFO] cheese - inserting 1000 documents. first: Bouc–Wen model of hysteresis and last: Random coefficient model +[2018-02-13T00:24:26.421] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:24:26.490] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:24:26.488] [INFO] cheese - batch complete in: 2.165 secs +[2018-02-13T00:24:26.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Hayley Williams and last: Adriankin +[2018-02-13T00:24:26.688] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:24:26.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Junior Juice and last: Convention on the Protection and Use of Transboundary Watercourses and International Lakes +[2018-02-13T00:24:26.778] [INFO] cheese - inserting 1000 documents. first: File:Vammalan Lentopallo (emblem).jpg and last: Marathon Lucerne +[2018-02-13T00:24:26.832] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:24:26.841] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:24:26.868] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2010 May 30 and last: File:Williamsoncorrigan12172.jpg +[2018-02-13T00:24:26.886] [INFO] cheese - inserting 1000 documents. first: File:Cape Ann.PNG and last: Ulmus glaucescens var. lasiocarpa +[2018-02-13T00:24:26.908] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:24:26.948] [INFO] cheese - inserting 1000 documents. first: Wallace Bennett and last: Category:Chess images +[2018-02-13T00:24:26.950] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:24:27.039] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:24:27.055] [INFO] cheese - inserting 1000 documents. first: Bad Parents and last: Landing Zone Brace +[2018-02-13T00:24:27.128] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:24:27.145] [INFO] cheese - inserting 1000 documents. first: Marathon luzern and last: St. George's Monastery (Wadi Qilt) +[2018-02-13T00:24:27.159] [INFO] cheese - inserting 1000 documents. first: Jukka-Pekka Tanner and last: The Double (film) +[2018-02-13T00:24:27.185] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:24:27.187] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:24:27.312] [INFO] cheese - inserting 1000 documents. first: 'Alenu prayer and last: Speckled Hen +[2018-02-13T00:24:27.331] [INFO] cheese - inserting 1000 documents. first: Chiappa Rhino and last: Redemption (disambiguation) +[2018-02-13T00:24:27.345] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:24:27.377] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:24:27.521] [INFO] cheese - inserting 1000 documents. first: Jehuda Löw ben Bezalel and last: Template:George Meredith +[2018-02-13T00:24:27.555] [INFO] cheese - inserting 1000 documents. first: File:Flare3D IDE 271.png and last: Drepung Loseling +[2018-02-13T00:24:27.559] [INFO] cheese - inserting 1000 documents. first: All the Kids Agree and last: Karaboya +[2018-02-13T00:24:27.571] [INFO] cheese - inserting 1000 documents. first: File:Pubertyblues.jpg and last: Bestbreeder from 1997 to 2000 +[2018-02-13T00:24:27.577] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:24:27.600] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:24:27.626] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:24:27.649] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:24:27.745] [INFO] cheese - inserting 1000 documents. first: Rhydfelin and last: Saint Leo the Great School (Pennsylvania) +[2018-02-13T00:24:27.793] [INFO] cheese - inserting 1000 documents. first: Memunneh and last: Berlin-Blankenheimer Eisenbahn +[2018-02-13T00:24:27.826] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:24:27.951] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:24:28.144] [INFO] cheese - inserting 1000 documents. first: Template:Story/doc and last: William Leddra +[2018-02-13T00:24:28.160] [INFO] cheese - inserting 1000 documents. first: Åryd, Karlshamn and last: Communications Security Establishment Canada +[2018-02-13T00:24:28.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Arbitration Committee/CheckUser and Oversight/2012 CUOS appointments/CU/DeltaQuad and last: Gatari Air Service +[2018-02-13T00:24:28.210] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:24:28.227] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:24:28.268] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:24:28.470] [INFO] cheese - inserting 1000 documents. first: Ricardo brown and last: Chain of Lakes Middle School +[2018-02-13T00:24:28.554] [INFO] cheese - inserting 1000 documents. first: Seed (video game) and last: Tommy Decker +[2018-02-13T00:24:28.562] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/'Sgudi 'Snaysi and last: 1st Foreign Parachute Heavy Mortar Company +[2018-02-13T00:24:28.598] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:24:28.684] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:24:28.686] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T00:24:28.741] [INFO] cheese - inserting 1000 documents. first: V-by-One HS and last: Valday (inhabited locality) +[2018-02-13T00:24:28.799] [INFO] cheese - inserting 1000 documents. first: Category:American distilled drinks and last: Athletics at the 2008 Summer Olympics – Women's long jump +[2018-02-13T00:24:28.800] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:24:28.827] [INFO] cheese - inserting 1000 documents. first: Wikipedia:The Wikipedia Library/Header and last: SMS Saida +[2018-02-13T00:24:28.861] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:24:28.869] [INFO] cheese - inserting 1000 documents. first: Robert A Heinlein and last: Economy of South Africa +[2018-02-13T00:24:28.883] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:24:28.986] [INFO] cheese - batch complete in: 2.497 secs +[2018-02-13T00:24:29.021] [INFO] cheese - inserting 1000 documents. first: Medial femoral circumflex artery and last: CKOB-AM 1400 +[2018-02-13T00:24:29.039] [INFO] cheese - inserting 1000 documents. first: Ornella Barra and last: Street Medicine +[2018-02-13T00:24:29.078] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:24:29.098] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:24:29.128] [INFO] cheese - inserting 1000 documents. first: Template:PoloAt1920SummerOlympics and last: File:D&DBoggle.JPG +[2018-02-13T00:24:29.172] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:24:29.184] [INFO] cheese - inserting 1000 documents. first: 1995 FINA World Swimming Championships (25 m) and last: Adessive form +[2018-02-13T00:24:29.222] [INFO] cheese - inserting 1000 documents. first: File:This is us.jpg and last: Leicester Hockey Club +[2018-02-13T00:24:29.257] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:24:29.265] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:24:29.466] [INFO] cheese - inserting 1000 documents. first: Jupa'in and last: Category:Bodies of water of Guinea +[2018-02-13T00:24:29.473] [INFO] cheese - inserting 1000 documents. first: Category:Biosphere reserves of Bolivia and last: Template:Cabañas Department +[2018-02-13T00:24:29.514] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:24:29.540] [INFO] cheese - inserting 1000 documents. first: Alexander Rozenbaum and last: Template:Uw-vandal4 +[2018-02-13T00:24:29.559] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:24:29.564] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pros and last: Conquest of California +[2018-02-13T00:24:29.605] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:24:29.645] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:24:29.712] [INFO] cheese - inserting 1000 documents. first: Raveena Ravi and last: South Russia +[2018-02-13T00:24:29.757] [INFO] cheese - inserting 1000 documents. first: Jessie M. Rattley and last: Baki Sahari +[2018-02-13T00:24:29.775] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:24:29.779] [INFO] cheese - inserting 1000 documents. first: Takab Rural District (Dargaz County) and last: Sir John Wedderburn, 5th Baronet of Blackness +[2018-02-13T00:24:29.807] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:24:29.832] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:24:29.870] [INFO] cheese - inserting 1000 documents. first: Humboldt Unified School District and last: Vikidia +[2018-02-13T00:24:29.907] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:24:30.017] [INFO] cheese - inserting 1000 documents. first: Template:GFDL/doc and last: Instructional Television Fixed Service +[2018-02-13T00:24:30.027] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/christian-louboutin-shoes.com and last: Tabunski +[2018-02-13T00:24:30.072] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:24:30.082] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:24:30.096] [INFO] cheese - inserting 1000 documents. first: 🇬🇸 and last: Grass It Up +[2018-02-13T00:24:30.176] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:24:30.190] [INFO] cheese - inserting 1000 documents. first: Crib note and last: Category:1904 in Pennsylvania +[2018-02-13T00:24:30.232] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:24:30.260] [INFO] cheese - inserting 1000 documents. first: Joseph Martin (Ipswich MP) and last: Thrasher (disambiguation) +[2018-02-13T00:24:30.296] [INFO] cheese - inserting 1000 documents. first: Bakı and last: Jonny Quest: The Real Adventures +[2018-02-13T00:24:30.302] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:24:30.350] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:24:30.499] [INFO] cheese - inserting 1000 documents. first: Gabriello Carotti and last: Spray Foam Insulation +[2018-02-13T00:24:30.504] [INFO] cheese - inserting 1000 documents. first: Aggregates, West Virginia and last: Rookery Nook (1953 film) +[2018-02-13T00:24:30.512] [INFO] cheese - inserting 1000 documents. first: Gurvan Saikhan Mountains and last: StyleFeeder +[2018-02-13T00:24:30.515] [INFO] cheese - inserting 1000 documents. first: Category:Football leagues in Kazakhstan and last: Cloverhill, New Jersey +[2018-02-13T00:24:30.542] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:24:30.565] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:24:30.575] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:24:30.573] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:24:30.687] [INFO] cheese - inserting 1000 documents. first: Adam & Yves and last: Kelley (disambiguation) +[2018-02-13T00:24:30.726] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:24:30.796] [INFO] cheese - inserting 1000 documents. first: File:Turok comic first issue logo.png and last: Kim Seon-young (judoka) +[2018-02-13T00:24:30.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Arsenal F.C./archive1 and last: Surveyor-General for Western Australia +[2018-02-13T00:24:30.819] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:24:30.864] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:24:30.953] [INFO] cheese - inserting 1000 documents. first: Category:1970s Hindi-language films and last: Lee Kohler +[2018-02-13T00:24:30.959] [INFO] cheese - inserting 1000 documents. first: Sercan Kaya and last: Outlaw (TV series) +[2018-02-13T00:24:30.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ignore all rules, except for consensus and last: Black-lored waxbill +[2018-02-13T00:24:30.997] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:24:31.001] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:24:31.011] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:24:31.069] [INFO] cheese - inserting 1000 documents. first: Telecommunications in South Africa and last: Silesian Voivodeship +[2018-02-13T00:24:31.093] [INFO] cheese - inserting 1000 documents. first: Kim Seon-Yeong and last: File:Scout Aword.png +[2018-02-13T00:24:31.099] [INFO] cheese - inserting 1000 documents. first: Kelli (disambiguation) and last: Mozart Clarinet Quintet +[2018-02-13T00:24:31.119] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:24:31.143] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:24:31.200] [INFO] cheese - batch complete in: 2.214 secs +[2018-02-13T00:24:31.235] [INFO] cheese - inserting 1000 documents. first: William Macomber and last: Czech Republic - Hungary relations +[2018-02-13T00:24:31.259] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T00:24:31.315] [INFO] cheese - inserting 1000 documents. first: Boldhome and last: Kings prerogative +[2018-02-13T00:24:31.368] [INFO] cheese - inserting 1000 documents. first: Category:Cuban books and last: Wikipedia:Version 1.0 Editorial Team/Book articles by quality/6 +[2018-02-13T00:24:31.383] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:24:31.408] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:24:31.426] [INFO] cheese - inserting 1000 documents. first: Brisbane Valley and last: Ethan Tate +[2018-02-13T00:24:31.429] [INFO] cheese - inserting 1000 documents. first: US Boxing and last: Wikipedia:Today's featured article/requests/Portrait of a Young Girl (Christus) +[2018-02-13T00:24:31.449] [INFO] cheese - inserting 1000 documents. first: Greece-Luxembourg relations and last: THE-QS World University Rankings, 2008 +[2018-02-13T00:24:31.470] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:24:31.473] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:24:31.534] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:24:31.574] [INFO] cheese - inserting 1000 documents. first: Atropos puniceus and last: Kondagsaz +[2018-02-13T00:24:31.630] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:24:31.698] [INFO] cheese - inserting 1000 documents. first: 2008-2009 Israel-Gaza War and last: 1979-80 NFL playoffs +[2018-02-13T00:24:31.715] [INFO] cheese - batch complete in: 0.237 secs +[2018-02-13T00:24:31.809] [INFO] cheese - inserting 1000 documents. first: Lord Rector of Edinburgh University and last: Swaythling +[2018-02-13T00:24:31.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Book articles by quality/7 and last: Dick Gamble +[2018-02-13T00:24:31.860] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:24:31.868] [INFO] cheese - inserting 1000 documents. first: 2010 Tunis Open - Doubles and last: Swimming at the 2009 World Aquatics Championships - Women's 200 metre freestyle +[2018-02-13T00:24:31.898] [INFO] cheese - batch complete in: 0.182 secs +[2018-02-13T00:24:31.915] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:24:31.954] [INFO] cheese - inserting 1000 documents. first: Template:Party shading/None/block and last: Works of Henry Rollins +[2018-02-13T00:24:31.956] [INFO] cheese - inserting 1000 documents. first: Archery History and last: Yazoo Brewing Company +[2018-02-13T00:24:32.009] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:24:32.012] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:24:32.061] [INFO] cheese - inserting 1000 documents. first: European Cup Winners' Cup 1985-86 and last: List of minor planets: 106001-107000 +[2018-02-13T00:24:32.072] [INFO] cheese - inserting 1000 documents. first: Emerald Fire and last: Shagap’ +[2018-02-13T00:24:32.095] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:24:32.191] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:24:32.363] [INFO] cheese - inserting 1000 documents. first: 2009-10 Alabama-Huntsville Chargers ice hockey season and last: List of minor planets/3401-3500 +[2018-02-13T00:24:32.398] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:24:32.481] [INFO] cheese - inserting 1000 documents. first: Minority Report (movie) and last: Matilda dixon +[2018-02-13T00:24:32.517] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2015 February 25 and last: List of Living Legends Award winners +[2018-02-13T00:24:32.517] [INFO] cheese - inserting 1000 documents. first: The Sikh Missionary Society UK and last: Australian legislative election, 1996 +[2018-02-13T00:24:32.528] [INFO] cheese - inserting 1000 documents. first: Area Bishop of Northern Ontario Region and last: Board of Marshals +[2018-02-13T00:24:32.572] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:24:32.602] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:24:32.620] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:24:32.621] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:24:32.649] [INFO] cheese - inserting 1000 documents. first: Finland - South Korea relations and last: 1901-02 Scottish Cup +[2018-02-13T00:24:32.718] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:24:32.818] [INFO] cheese - inserting 1000 documents. first: Shagab and last: Gray Ghost (television) +[2018-02-13T00:24:32.877] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:24:32.938] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 48001-49000 and last: Primera División de México 1902-03 +[2018-02-13T00:24:32.959] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:24:32.990] [INFO] cheese - inserting 1000 documents. first: Subject bibliography and last: 1990 European Athletics Championships - Men's 20 km walk +[2018-02-13T00:24:33.023] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:24:33.063] [INFO] cheese - inserting 1000 documents. first: List of airports in the Philippines by total passenger traffic and last: File:Frolov-Sergei-Kuzmich-d25sw.jpg +[2018-02-13T00:24:33.104] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:24:33.108] [INFO] cheese - inserting 1000 documents. first: Crown in Saskatoon and last: Basutodon ferox +[2018-02-13T00:24:33.156] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:24:33.166] [INFO] cheese - inserting 1000 documents. first: Jigme Dorji Wangchuk and last: County executive +[2018-02-13T00:24:33.228] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:24:33.238] [INFO] cheese - inserting 1000 documents. first: Holy See - Lebanon relations and last: 2010 Honolulu Challenger - Doubles +[2018-02-13T00:24:33.270] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:24:33.327] [INFO] cheese - inserting 1000 documents. first: Har Kisi Ko and last: Template:2015 Super Rugby referees +[2018-02-13T00:24:33.333] [INFO] cheese - inserting 1000 documents. first: Imran Arif and last: Template:Romanian princesses +[2018-02-13T00:24:33.367] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:24:33.385] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:24:33.453] [INFO] cheese - inserting 1000 documents. first: 1971-72 in Swiss football and last: 2008-09 Rutgers Scarlet Knights men's basketball team +[2018-02-13T00:24:33.458] [INFO] cheese - inserting 1000 documents. first: Oaksey Halt railway station and last: List of Bunheads episodes +[2018-02-13T00:24:33.478] [INFO] cheese - batch complete in: 0.208 secs +[2018-02-13T00:24:33.506] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:24:33.554] [INFO] cheese - inserting 1000 documents. first: SECD machine and last: 2001 Tour de France +[2018-02-13T00:24:33.660] [INFO] cheese - inserting 1000 documents. first: Yateley School and last: Wikipedia:Version 1.0 Editorial Team/Professional sound production articles by quality +[2018-02-13T00:24:33.703] [INFO] cheese - inserting 1000 documents. first: Grand Forks Public Schools and last: Red-tailed boa +[2018-02-13T00:24:33.705] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:24:33.720] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 8501-9000 and last: ISO 639:sjt +[2018-02-13T00:24:33.727] [INFO] cheese - batch complete in: 2.527 secs +[2018-02-13T00:24:33.767] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:24:33.782] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:24:33.951] [INFO] cheese - inserting 1000 documents. first: People's Party (Turkey) and last: Catephia albirena +[2018-02-13T00:24:34.019] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:24:34.083] [INFO] cheese - inserting 1000 documents. first: Tandzatap’ and last: Nerkin Kanlidzha +[2018-02-13T00:24:34.100] [INFO] cheese - inserting 1000 documents. first: Thanksgiving (The Middle) and last: Category:Presidents of NBC News +[2018-02-13T00:24:34.109] [INFO] cheese - inserting 1000 documents. first: East Bird's Head - Sentani languages and last: 1982-83 Quebec Nordiques season +[2018-02-13T00:24:34.134] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:24:34.150] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:24:34.192] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:24:34.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Professional sound production articles by quality log and last: New Zealand TR class locomotive +[2018-02-13T00:24:34.361] [INFO] cheese - inserting 1000 documents. first: Don Anderson and last: Stephan Cretier +[2018-02-13T00:24:34.361] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:24:34.405] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:24:34.467] [INFO] cheese - inserting 1000 documents. first: Eblen Center and last: Portal:Agriculture and agronomy/Things you can do +[2018-02-13T00:24:34.477] [INFO] cheese - inserting 1000 documents. first: 2005-06 Albanian Superliga and last: Category:San Francisco Art Institute faculty +[2018-02-13T00:24:34.528] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:24:34.556] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:24:34.646] [INFO] cheese - inserting 1000 documents. first: Tour Signal and last: Drumcree conflict +[2018-02-13T00:24:34.699] [INFO] cheese - inserting 1000 documents. first: Category:Japanese expatriates in England and last: Gryazinsky +[2018-02-13T00:24:34.727] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:24:34.777] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:24:34.864] [INFO] cheese - inserting 1000 documents. first: Category:Indian expatriate male actors in Pakistan and last: CAS-1 +[2018-02-13T00:24:34.876] [INFO] cheese - inserting 1000 documents. first: 1645 Poems and last: Low Fell +[2018-02-13T00:24:34.905] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:24:34.922] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:24:34.936] [INFO] cheese - inserting 1000 documents. first: File:Sandflora Baseball Park 2.jpg and last: Template:NS Intercity lines/branches +[2018-02-13T00:24:34.988] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:24:35.313] [INFO] cheese - inserting 1000 documents. first: Gryazinskiy and last: 2012 Team Saxo Bank season +[2018-02-13T00:24:35.446] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:24:35.453] [INFO] cheese - inserting 1000 documents. first: List of the Angry Video Game Nerd episodes and last: 1997-98 LFF Lyga +[2018-02-13T00:24:35.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Im in ur base and last: List of classic rock songs +[2018-02-13T00:24:35.514] [INFO] cheese - inserting 1000 documents. first: Austrian football championship 1921-22 and last: 1995-96 Danish 1st Division +[2018-02-13T00:24:35.628] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T00:24:35.598] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:24:35.715] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T00:24:35.759] [INFO] cheese - inserting 1000 documents. first: File:Try cover.png and last: Howgego +[2018-02-13T00:24:35.832] [INFO] cheese - inserting 1000 documents. first: Category:Police forces of the Crown dependencies and last: Template:Arrondissements of Allier +[2018-02-13T00:24:35.904] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T00:24:35.979] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T00:24:36.139] [INFO] cheese - inserting 1000 documents. first: 2001 Legg Mason Tennis Classic - Doubles and last: List of minor planets: 29001-30000 +[2018-02-13T00:24:36.196] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:24:36.343] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Globalization articles and last: Category:Bodies of water of Yukon +[2018-02-13T00:24:36.391] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T00:24:36.429] [INFO] cheese - inserting 1000 documents. first: 1955-56 in Swiss football and last: Category:1955 elections in Germany +[2018-02-13T00:24:36.443] [INFO] cheese - inserting 1000 documents. first: Brzozówka, Lublin Voivodeship and last: Opera Roanoke +[2018-02-13T00:24:36.446] [INFO] cheese - batch complete in: 0.25 secs +[2018-02-13T00:24:36.482] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T00:24:36.503] [INFO] cheese - inserting 1000 documents. first: Portal:Kurdistan/Selected biography/6 and last: Template:Chiapas F.C. managers +[2018-02-13T00:24:36.544] [INFO] cheese - inserting 1000 documents. first: La Torre di Pisa and last: D. C. Wimberly +[2018-02-13T00:24:36.545] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:24:36.553] [INFO] cheese - inserting 1000 documents. first: Armor Ambush and last: Fuzhou dialect +[2018-02-13T00:24:36.600] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:24:36.614] [INFO] cheese - inserting 1000 documents. first: 1977-78 La Liga and last: Conmacne mara +[2018-02-13T00:24:36.627] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:24:36.641] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T00:24:36.678] [INFO] cheese - inserting 1000 documents. first: Bazu Band and last: We Created A Monster +[2018-02-13T00:24:36.715] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:24:36.721] [INFO] cheese - inserting 1000 documents. first: Alhambra and last: Ulster +[2018-02-13T00:24:36.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battle of Trenton/archive1 and last: Primera División Verano 2000 +[2018-02-13T00:24:36.775] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:24:36.804] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 198001-199000 and last: Too Much, Too Little, Too Late EP +[2018-02-13T00:24:36.845] [INFO] cheese - batch complete in: 0.204 secs +[2018-02-13T00:24:36.870] [INFO] cheese - batch complete in: 3.143 secs +[2018-02-13T00:24:36.937] [INFO] cheese - inserting 1000 documents. first: Category:Journalists from Kentucky and last: File:Oleksandr Muzychko.jpg +[2018-02-13T00:24:37.013] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:24:37.136] [INFO] cheese - inserting 1000 documents. first: Routes (visual novel) and last: Wikipedia:Peer review/Battlefield 2142/archive1 +[2018-02-13T00:24:37.152] [INFO] cheese - inserting 1000 documents. first: File:Shirley's Sounds.jpg and last: Neapolis University Paphos +[2018-02-13T00:24:37.166] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2005 World Aquatics Championships - Men's 50 metre freestyle and last: 2010 Hypo-Meeting +[2018-02-13T00:24:37.206] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:24:37.213] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:24:37.216] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:24:37.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Temps and last: Philopatyr Mercurius +[2018-02-13T00:24:37.265] [INFO] cheese - inserting 1000 documents. first: 511 in poetry and last: Wikipedia:WikiProject Disambiguation/Disambiguation pages with hatnotes +[2018-02-13T00:24:37.320] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:24:37.320] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:24:37.422] [INFO] cheese - inserting 1000 documents. first: Ronald Truhbuhovich and last: Category:Tunisian expatriates in Sudan +[2018-02-13T00:24:37.462] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:24:37.568] [INFO] cheese - inserting 1000 documents. first: Troy-Waterford Bridge and last: Japanese civil war +[2018-02-13T00:24:37.589] [INFO] cheese - inserting 1000 documents. first: Laurel Fork and last: Derventio +[2018-02-13T00:24:37.629] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:24:37.638] [INFO] cheese - inserting 1000 documents. first: Sithon antimachus and last: Patan Ju +[2018-02-13T00:24:37.641] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:24:37.673] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:24:37.709] [INFO] cheese - inserting 1000 documents. first: Gliniski and last: File:Killing Time (Star Trek novel).jpg +[2018-02-13T00:24:37.741] [INFO] cheese - inserting 1000 documents. first: List of Bangladeshi films of 1994 and last: Template:U0400 +[2018-02-13T00:24:37.757] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:24:37.779] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:24:37.837] [INFO] cheese - inserting 1000 documents. first: HadSM3 and last: Tie-in novel +[2018-02-13T00:24:37.897] [INFO] cheese - inserting 1000 documents. first: Gonbatuk and last: Zatičina +[2018-02-13T00:24:37.899] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:24:37.927] [INFO] cheese - batch complete in: 0.254 secs +[2018-02-13T00:24:37.975] [INFO] cheese - inserting 1000 documents. first: Category:Olympic silver medalists for the United Team of Germany and last: English cricket team in South Africa in 1964–65 +[2018-02-13T00:24:38.024] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:24:38.059] [INFO] cheese - inserting 1000 documents. first: File:Palimos03.jpg and last: Nx (digraph) +[2018-02-13T00:24:38.116] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:24:38.151] [INFO] cheese - inserting 1000 documents. first: Kamo no yasunori no jo and last: George Metzler +[2018-02-13T00:24:38.161] [INFO] cheese - inserting 1000 documents. first: Has Anyone Seen the Colonel and last: Category:1889 establishments in Dakota Territory +[2018-02-13T00:24:38.195] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:24:38.201] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:24:38.272] [INFO] cheese - inserting 1000 documents. first: Sophie Roberge and last: 2009 Chinese Artistic Gymnastics Championships +[2018-02-13T00:24:38.306] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:24:38.321] [INFO] cheese - inserting 1000 documents. first: Luigi Mazzella and last: Xiao Rang +[2018-02-13T00:24:38.377] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:24:38.484] [INFO] cheese - inserting 1000 documents. first: Laté 298 and last: Creative Arts Emmy Awards +[2018-02-13T00:24:38.525] [INFO] cheese - inserting 1000 documents. first: Pericine and last: Hydro-electric plant +[2018-02-13T00:24:38.534] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:24:38.575] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:24:38.640] [INFO] cheese - inserting 1000 documents. first: Ailey (crater) and last: Alugolla (7°9'N 80°31'E) +[2018-02-13T00:24:38.648] [INFO] cheese - inserting 1000 documents. first: Boardman Lake Trail and last: Wikipedia:WikiProject Spam/LinkReports/jahania.org +[2018-02-13T00:24:38.662] [INFO] cheese - inserting 1000 documents. first: Colors ~Melody and Harmony~ and last: Wilhelm Kempf +[2018-02-13T00:24:38.673] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:24:38.690] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:24:38.735] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:24:38.812] [INFO] cheese - inserting 1000 documents. first: Jujuy and last: Swift Boat Vets +[2018-02-13T00:24:38.860] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:24:38.897] [INFO] cheese - inserting 1000 documents. first: Astana, Kazakhstan and last: 2008–09 Ukrainian Premier League Reserves +[2018-02-13T00:24:38.968] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:24:38.992] [INFO] cheese - inserting 1000 documents. first: New College, Chennai and last: TV Animation Fullmetal Alchemist Original Soundtrack 1 +[2018-02-13T00:24:39.051] [INFO] cheese - inserting 1000 documents. first: Ambaliyadda (7°1'N 80°54'E) and last: Angela Moroşanu +[2018-02-13T00:24:39.063] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:24:39.133] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:24:39.223] [INFO] cheese - inserting 1000 documents. first: United States Internal Revenue Service and last: William the Conqueror +[2018-02-13T00:24:39.321] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/jahania.org and last: American Fantastic Tales +[2018-02-13T00:24:39.352] [INFO] cheese - inserting 1000 documents. first: Claude Conder and last: Apostol Arsache +[2018-02-13T00:24:39.383] [INFO] cheese - inserting 1000 documents. first: Portal:College football/Selected picture/2008 31 and last: Edward T. Welburn +[2018-02-13T00:24:39.402] [INFO] cheese - batch complete in: 2.531 secs +[2018-02-13T00:24:39.407] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:24:39.447] [INFO] cheese - inserting 1000 documents. first: High Spin and last: Treblinka (disambiguation) +[2018-02-13T00:24:39.446] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:24:39.474] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:24:39.522] [INFO] cheese - inserting 1000 documents. first: Bronchodilation and last: Ann Taylor Corporation +[2018-02-13T00:24:39.563] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:24:39.633] [INFO] cheese - inserting 1000 documents. first: Vinojinidis and last: Non Residential Indian +[2018-02-13T00:24:39.638] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:24:39.698] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:24:39.883] [INFO] cheese - inserting 1000 documents. first: Kergoat and last: Brachypodium salzmannii +[2018-02-13T00:24:39.932] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:24:39.973] [INFO] cheese - inserting 1000 documents. first: Rough green snake and last: Krągłe +[2018-02-13T00:24:40.023] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:24:40.027] [INFO] cheese - inserting 1000 documents. first: Gomoku Narabe and last: Extra-man offense +[2018-02-13T00:24:40.032] [INFO] cheese - inserting 1000 documents. first: The Party's Over (1956 song) and last: Peter Fröjdfeldt +[2018-02-13T00:24:40.084] [INFO] cheese - inserting 1000 documents. first: Union with God and last: St Catherine of Sweden +[2018-02-13T00:24:40.087] [INFO] cheese - inserting 1000 documents. first: USS John L. Clem and last: Template:Albany Great Danes football navbox +[2018-02-13T00:24:40.099] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:24:40.114] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:24:40.120] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:24:40.142] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:24:40.293] [INFO] cheese - inserting 1000 documents. first: Festuca salzmannii and last: Template:Roman Catholic Diocese of Houma–Thibodaux +[2018-02-13T00:24:40.342] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:24:40.457] [INFO] cheese - inserting 1000 documents. first: Krągłe, Podlaskie Voivodeship and last: Category:FL-Class Amiga articles of Top-importance +[2018-02-13T00:24:40.589] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:24:40.671] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Irish Republicanism and last: Omar Hijazi +[2018-02-13T00:24:40.712] [INFO] cheese - inserting 1000 documents. first: Thirty-eighth century BC and last: Spindasis kallimon +[2018-02-13T00:24:40.748] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:24:40.808] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:24:40.832] [INFO] cheese - inserting 1000 documents. first: File:Winterwomenreissue.jpg and last: File:Bioshock series.jpg +[2018-02-13T00:24:40.929] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:24:40.971] [INFO] cheese - inserting 1000 documents. first: James William Dunegan and last: Category:Discoveries by Joseph Jean Pierre Laurent +[2018-02-13T00:24:40.975] [INFO] cheese - inserting 1000 documents. first: Sennaar and last: Rhinobatos productus +[2018-02-13T00:24:41.024] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:24:41.051] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T00:24:41.233] [INFO] cheese - inserting 1000 documents. first: Mark Wotte and last: Lonely for the Last Time +[2018-02-13T00:24:41.245] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Amiga articles of High-importance and last: Reducation +[2018-02-13T00:24:41.269] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:24:41.277] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RE-Hesse left/50 and last: Jaroslav Erno Sedivy +[2018-02-13T00:24:41.302] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:24:41.317] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:24:41.338] [INFO] cheese - inserting 1000 documents. first: Wu Weizhong and last: Gora pri Pečah +[2018-02-13T00:24:41.390] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:24:41.454] [INFO] cheese - inserting 1000 documents. first: Boydsville, Kentucky and Tennessee and last: Thomas Pang Cheung-wai +[2018-02-13T00:24:41.494] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:24:41.515] [INFO] cheese - inserting 1000 documents. first: Primary Club and last: Bantock, Sir Granville Ransome +[2018-02-13T00:24:41.557] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:24:41.594] [INFO] cheese - inserting 1000 documents. first: Dr vino and last: Ability Photoalbum +[2018-02-13T00:24:41.625] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:24:41.693] [INFO] cheese - inserting 1000 documents. first: Khazar Beyg and last: Chayon-ryu +[2018-02-13T00:24:41.721] [INFO] cheese - inserting 1000 documents. first: Ethnic groups in Japan and last: Maarten van der Weijden +[2018-02-13T00:24:41.757] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:24:41.818] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:24:41.899] [INFO] cheese - inserting 1000 documents. first: Bute by-election, 1885 and last: Category:1940s disestablishments in Minnesota +[2018-02-13T00:24:41.899] [INFO] cheese - inserting 1000 documents. first: Madonna-whore complex and last: Advertising campaigns +[2018-02-13T00:24:41.941] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:24:41.949] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:24:41.982] [INFO] cheese - inserting 1000 documents. first: Eydhafushi and last: Patni +[2018-02-13T00:24:42.040] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:24:42.100] [INFO] cheese - inserting 1000 documents. first: Martin Harvey and last: Mollaret's meningitis +[2018-02-13T00:24:42.106] [INFO] cheese - inserting 1000 documents. first: Leon Smith and last: Al-Madina Souq +[2018-02-13T00:24:42.149] [INFO] cheese - inserting 1000 documents. first: William II of England and last: AD 23 +[2018-02-13T00:24:42.161] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:24:42.175] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:24:42.232] [INFO] cheese - inserting 1000 documents. first: Bronisław Szwarce and last: Category:1961 in television +[2018-02-13T00:24:42.310] [INFO] cheese - batch complete in: 2.907 secs +[2018-02-13T00:24:42.301] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:24:42.360] [INFO] cheese - inserting 1000 documents. first: Algebraic input method and last: Bearspring, Tennessee +[2018-02-13T00:24:42.459] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:24:42.593] [INFO] cheese - inserting 1000 documents. first: AK-105 and last: King's Mill Hospital +[2018-02-13T00:24:42.605] [INFO] cheese - inserting 1000 documents. first: Toby Love Reloaded and last: Kalinówka Królewska +[2018-02-13T00:24:42.672] [INFO] cheese - inserting 1000 documents. first: Category:Airliner accidents and incidents in Minnesota and last: School meals initiative for healthy children +[2018-02-13T00:24:42.699] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:24:42.731] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:24:42.762] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:24:42.836] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia books on systems and last: KBytes +[2018-02-13T00:24:42.930] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Internationalist Books and last: Mercer Middle School (Aldie, Virginia) +[2018-02-13T00:24:42.938] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T00:24:43.019] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:24:43.026] [INFO] cheese - inserting 1000 documents. first: Alan Tennie and last: SV Jenaer Glaswerk +[2018-02-13T00:24:43.072] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:24:43.245] [INFO] cheese - inserting 1000 documents. first: Kamionka, Mońki County and last: Zaraszów-Kolonia +[2018-02-13T00:24:43.277] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:24:43.285] [INFO] cheese - inserting 1000 documents. first: Majungaichthys and last: Hayden, Wheeler and Schwend +[2018-02-13T00:24:43.286] [INFO] cheese - inserting 1000 documents. first: Category:1915 in North America and last: Category:Death in West Virginia +[2018-02-13T00:24:43.320] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:24:43.324] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:24:43.345] [INFO] cheese - inserting 1000 documents. first: AD 24 and last: 1117 +[2018-02-13T00:24:43.394] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T00:24:43.419] [INFO] cheese - inserting 1000 documents. first: Tony Jordan and last: Doughoregan Manor +[2018-02-13T00:24:43.427] [INFO] cheese - inserting 1000 documents. first: How to Dismantle An Atomic Bomb and last: George Mihaita +[2018-02-13T00:24:43.467] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:24:43.476] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:24:43.486] [INFO] cheese - inserting 1000 documents. first: Marra Developments v BW Rofe and last: George Albert Bowater +[2018-02-13T00:24:43.524] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:24:43.630] [INFO] cheese - inserting 1000 documents. first: Matthew 8:5-13 and last: The Killing House +[2018-02-13T00:24:43.670] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:24:43.741] [INFO] cheese - inserting 1000 documents. first: Dàolǐ Qū and last: Wikipedia:Categories for discussion/Log/2008 August 21 +[2018-02-13T00:24:43.795] [INFO] cheese - inserting 1000 documents. first: Katie Patrick and last: Wikipedia:WikiProject Spam/LinkReports/bargainpump.com +[2018-02-13T00:24:43.801] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:24:43.855] [INFO] cheese - inserting 1000 documents. first: Massively multiplayer online RPG and last: Susan Holloway Scott +[2018-02-13T00:24:43.860] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:24:43.905] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:24:43.939] [INFO] cheese - inserting 1000 documents. first: Category:Novels set in Cape Verde and last: Isis the Amazon +[2018-02-13T00:24:43.968] [INFO] cheese - inserting 1000 documents. first: Federal Judiciary and last: Gabriel Köerner +[2018-02-13T00:24:44.044] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:24:44.106] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:24:44.244] [INFO] cheese - inserting 1000 documents. first: John Gordon, Lord Gordon and last: Category:Roman Catholic secondary schools in the Diocese of Northampton +[2018-02-13T00:24:44.311] [INFO] cheese - inserting 1000 documents. first: Topchihinsky Raion and last: Rohrenkopf +[2018-02-13T00:24:44.366] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:24:44.396] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:24:44.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Pokémon voice actors and last: Szerszenie +[2018-02-13T00:24:44.674] [INFO] cheese - inserting 1000 documents. first: Lindsay Hayward and last: Lake Margherita +[2018-02-13T00:24:44.700] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T00:24:44.707] [INFO] cheese - inserting 1000 documents. first: History of Connecticut industry and last: Oriani destroyer class +[2018-02-13T00:24:44.759] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:24:44.798] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T00:24:44.824] [INFO] cheese - inserting 1000 documents. first: RD-107A and last: Category:Unsolved murders in Gambia +[2018-02-13T00:24:44.874] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:24:44.881] [INFO] cheese - inserting 1000 documents. first: Volcanic desert and last: If the Pig had Wings +[2018-02-13T00:24:44.904] [INFO] cheese - inserting 1000 documents. first: Monosexuality and last: Puns on Hollywood +[2018-02-13T00:24:44.916] [INFO] cheese - inserting 1000 documents. first: 1118 and last: Fallopia japonica +[2018-02-13T00:24:44.922] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:24:44.966] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:24:45.037] [INFO] cheese - batch complete in: 1.642 secs +[2018-02-13T00:24:45.059] [INFO] cheese - inserting 1000 documents. first: Tołwin and last: Gladius Dei +[2018-02-13T00:24:45.111] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:24:45.137] [INFO] cheese - inserting 1000 documents. first: Ricarda Jordan and last: Listed buildings in New Mills +[2018-02-13T00:24:45.165] [INFO] cheese - inserting 1000 documents. first: 75 Public Square and last: Herbert Reich (sailor) +[2018-02-13T00:24:45.184] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:24:45.205] [INFO] cheese - inserting 1000 documents. first: Category:Culture of Uttarakhand and last: Hms royal george +[2018-02-13T00:24:45.207] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:24:45.269] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:24:45.359] [INFO] cheese - inserting 1000 documents. first: Rancho Cañada de los Coches and last: Paul Robert Hale +[2018-02-13T00:24:45.447] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:24:45.522] [INFO] cheese - inserting 1000 documents. first: Juliet Huddy and last: Syas River +[2018-02-13T00:24:45.572] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:24:45.589] [INFO] cheese - inserting 1000 documents. first: Ciemne and last: No 205 Sqn +[2018-02-13T00:24:45.616] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Oak Hill Industrial Academy and last: One Woman to Another +[2018-02-13T00:24:45.629] [INFO] cheese - inserting 1000 documents. first: Naoise O Muiri and last: John MacBrien +[2018-02-13T00:24:45.632] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:24:45.667] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:24:45.688] [INFO] cheese - inserting 1000 documents. first: Polish 2nd Armoured Regiment and last: Hypoaesthesia +[2018-02-13T00:24:45.689] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:24:45.736] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:24:45.776] [INFO] cheese - inserting 1000 documents. first: ISO 639:gla and last: Category:1682 in politics +[2018-02-13T00:24:45.809] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:24:45.899] [INFO] cheese - inserting 1000 documents. first: Tanjii Bird Reserve and last: Kemerovo Region +[2018-02-13T00:24:45.944] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:24:45.986] [INFO] cheese - inserting 1000 documents. first: Osijek railway station and last: Barkah, Iran +[2018-02-13T00:24:46.024] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:24:46.040] [INFO] cheese - inserting 1000 documents. first: Gallery of Admiral Cheng Ho and last: Category:Politics of Kırklareli Province +[2018-02-13T00:24:46.059] [INFO] cheese - inserting 1000 documents. first: Isser Yehuda Unterman and last: SOS (ABBA song) +[2018-02-13T00:24:46.112] [INFO] cheese - inserting 1000 documents. first: Liz prince and last: Astronomical Society of London +[2018-02-13T00:24:46.127] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:24:46.139] [INFO] cheese - inserting 1000 documents. first: Category:1683 in politics and last: Wikipedia:Articles for deletion/List of Nobel laureates affiliated with Princeton University +[2018-02-13T00:24:46.150] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:24:46.179] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:24:46.192] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:24:46.333] [INFO] cheese - inserting 1000 documents. first: Philip Claypool and last: Category:Wikipedians by alma mater: INSEAD +[2018-02-13T00:24:46.387] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:24:46.443] [INFO] cheese - inserting 1000 documents. first: Category:Federal Republic of Central America and last: UNSW International House +[2018-02-13T00:24:46.474] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2015-02-13 and last: Alex pike +[2018-02-13T00:24:46.516] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:24:46.562] [INFO] cheese - inserting 1000 documents. first: Seela Misra and last: Wikipedia:WikiProject Spam/LinkReports/affil.co.uk +[2018-02-13T00:24:46.569] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:24:46.621] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:24:46.627] [INFO] cheese - inserting 1000 documents. first: English mythology and last: Telugu language +[2018-02-13T00:24:46.644] [INFO] cheese - inserting 1000 documents. first: Fiennes Stanley Wykeham Cornwallis, 1st Baron Cornwallis and last: Daryl Clare +[2018-02-13T00:24:46.691] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:24:46.707] [INFO] cheese - inserting 1000 documents. first: Cecily and Cathe and last: Template:FootballIDRIVECurrent +[2018-02-13T00:24:46.717] [INFO] cheese - batch complete in: 1.68 secs +[2018-02-13T00:24:46.764] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:24:46.885] [INFO] cheese - inserting 1000 documents. first: Forum clause and last: File:Youth Association of Kuwait logo.png +[2018-02-13T00:24:46.889] [INFO] cheese - inserting 1000 documents. first: Maine Prairie Township, Minnesota and last: HMS Prince of Orange (1734) +[2018-02-13T00:24:46.933] [INFO] cheese - inserting 1000 documents. first: Plebeius sorhagenii and last: Charlebois, Manitoba +[2018-02-13T00:24:46.932] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:24:46.965] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:24:47.008] [INFO] cheese - inserting 1000 documents. first: Wang Yin and last: Template:S-line/MOSMETRO right/Filyovskaya +[2018-02-13T00:24:47.025] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:24:47.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Raymarine Marine Electronics and last: Granville Maynard Sharp +[2018-02-13T00:24:47.051] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:24:47.104] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:24:47.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2015 April 12 and last: Morgan, New Jersey +[2018-02-13T00:24:47.276] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:24:47.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gotz.narod.ru and last: Robert Fuller House +[2018-02-13T00:24:47.341] [INFO] cheese - inserting 1000 documents. first: Victoria River-Daly Shire and last: Elizabeth Stanley +[2018-02-13T00:24:47.359] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:24:47.390] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:24:47.407] [INFO] cheese - inserting 1000 documents. first: Category:Pre-statehood history of Pennsylvania and last: Scraper (biology) +[2018-02-13T00:24:47.428] [INFO] cheese - inserting 1000 documents. first: Storage clamp and last: Gordon Welchman +[2018-02-13T00:24:47.450] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:24:47.490] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:24:47.574] [INFO] cheese - inserting 1000 documents. first: File:1998 NBA Finals.jpg and last: Crotalus exul +[2018-02-13T00:24:47.625] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:24:47.633] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian medical doctors and last: Wikipedia:Articles for deletion/Ted Chapelhow +[2018-02-13T00:24:47.676] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:24:47.743] [INFO] cheese - inserting 1000 documents. first: SS-355 and last: Christopher Grace +[2018-02-13T00:24:47.761] [INFO] cheese - inserting 1000 documents. first: Isoceteth-20 and last: Emmeline Hill +[2018-02-13T00:24:47.765] [INFO] cheese - inserting 1000 documents. first: Megadrive Handheld and last: 1953 NCAA Men's Basketball All-Americans +[2018-02-13T00:24:47.776] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:24:47.813] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:24:47.813] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:24:47.938] [INFO] cheese - inserting 1000 documents. first: So many dynamos and last: Charles Murray Padday +[2018-02-13T00:24:47.980] [INFO] cheese - inserting 1000 documents. first: Suzuki Liana and last: LoveFilm +[2018-02-13T00:24:47.986] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:24:48.042] [INFO] cheese - inserting 1000 documents. first: Fool (Twelfth Night) and last: Latter Zhou +[2018-02-13T00:24:48.047] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:24:48.056] [INFO] cheese - inserting 1000 documents. first: Mauritania–U.S. relations and last: Category:1921 establishments in Costa Rica +[2018-02-13T00:24:48.086] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:24:48.101] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:24:48.140] [INFO] cheese - inserting 1000 documents. first: Copa Mustang I 2004 and last: Frullania intermedia +[2018-02-13T00:24:48.169] [INFO] cheese - inserting 1000 documents. first: International Bluegrass Music Hall of Honor and last: Category:Siege of Sarajevo +[2018-02-13T00:24:48.187] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:24:48.221] [INFO] cheese - inserting 1000 documents. first: Battle of Bennington and last: USS Merrimack +[2018-02-13T00:24:48.236] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:24:48.408] [INFO] cheese - inserting 1000 documents. first: Marcos Espinal and last: Halo: The Graphic Novel +[2018-02-13T00:24:48.428] [INFO] cheese - batch complete in: 1.711 secs +[2018-02-13T00:24:48.554] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:24:48.617] [INFO] cheese - inserting 1000 documents. first: Category:1920s establishments in Costa Rica and last: Diagnostic Impotence Questionnaire +[2018-02-13T00:24:48.729] [INFO] cheese - inserting 1000 documents. first: Latter Tang and last: Spirama rosacea +[2018-02-13T00:24:48.813] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:24:48.856] [INFO] cheese - inserting 1000 documents. first: Okiek and last: Template:Democratic Korea Party/meta/color +[2018-02-13T00:24:48.865] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:24:48.879] [INFO] cheese - inserting 1000 documents. first: Vandenberg, Arthur H. and last: Sai Van Bridge +[2018-02-13T00:24:49.012] [INFO] cheese - inserting 1000 documents. first: Template:TopicHistoryoutput and last: Template:Fb team Emmen +[2018-02-13T00:24:49.039] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:24:49.071] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T00:24:49.126] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:24:49.341] [INFO] cheese - inserting 1000 documents. first: Branko Schmidt and last: Zara Turner +[2018-02-13T00:24:49.441] [INFO] cheese - inserting 1000 documents. first: Hypopyra mollis and last: Jim F. Heenan +[2018-02-13T00:24:49.462] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:24:49.516] [INFO] cheese - inserting 1000 documents. first: FC Real Odessa and last: Badentarbet Bay +[2018-02-13T00:24:49.542] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:24:49.665] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:24:49.736] [INFO] cheese - inserting 1000 documents. first: 28-out perfect game and last: Sara Hausmann +[2018-02-13T00:24:49.824] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:24:49.832] [INFO] cheese - inserting 1000 documents. first: Herwig Rüdisser and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Wikipedians for local history/mylocalhistorypage +[2018-02-13T00:24:49.879] [INFO] cheese - inserting 1000 documents. first: Accidental (music) and last: Stop signal +[2018-02-13T00:24:49.920] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:24:49.925] [INFO] cheese - inserting 1000 documents. first: Puget Sound Shipyard and last: Wikipedia:Articles for deletion/.hack//fragment +[2018-02-13T00:24:50.045] [INFO] cheese - inserting 1000 documents. first: File:Actionsperadmin.png and last: John Frank Charles Kingman +[2018-02-13T00:24:50.124] [INFO] cheese - batch complete in: 1.696 secs +[2018-02-13T00:24:50.186] [INFO] cheese - inserting 1000 documents. first: The Mermaid (1910 film) and last: Category:1969–70 in Soviet ice hockey +[2018-02-13T00:24:50.198] [INFO] cheese - batch complete in: 1.127 secs +[2018-02-13T00:24:50.273] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T00:24:50.318] [INFO] cheese - inserting 1000 documents. first: U.S.–Norway relations and last: File:Joe Hill Louis - Boogie in the Park.ogg +[2018-02-13T00:24:50.330] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:24:50.365] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:24:50.566] [INFO] cheese - inserting 1000 documents. first: Read India and last: Liu Chi-Wen +[2018-02-13T00:24:50.593] [INFO] cheese - inserting 1000 documents. first: Polish Mountain Hillclimb and last: Billboard Top Rock'n'Roll Hits: 1961 +[2018-02-13T00:24:50.613] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:24:50.693] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:24:50.886] [INFO] cheese - inserting 1000 documents. first: North Monmouthshire (UK Parliament constituency) and last: List of New Jersey rivers +[2018-02-13T00:24:50.913] [INFO] cheese - inserting 1000 documents. first: Category:1970–71 in Soviet ice hockey and last: Template:Suburbs of Mainz +[2018-02-13T00:24:50.945] [INFO] cheese - inserting 1000 documents. first: Acrolepia amseli and last: Dallas (1978 TV series) (season 14) +[2018-02-13T00:24:50.951] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:24:51.009] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:24:51.050] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:24:51.105] [INFO] cheese - inserting 1000 documents. first: Plantar fibromatosis and last: San Carlos Sija +[2018-02-13T00:24:51.231] [INFO] cheese - inserting 1000 documents. first: SS Quersee and last: Calcarovula ildiko +[2018-02-13T00:24:51.243] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T00:24:51.294] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:24:51.401] [INFO] cheese - inserting 1000 documents. first: Linlin Deng and last: Asano Station +[2018-02-13T00:24:51.449] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:24:51.465] [INFO] cheese - inserting 1000 documents. first: Piletocera maculifrons and last: Stadiasmus Patarensis +[2018-02-13T00:24:51.501] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:24:51.536] [INFO] cheese - inserting 1000 documents. first: W25CS and last: Template:Taxonomy/Bellubrunnus +[2018-02-13T00:24:51.539] [INFO] cheese - inserting 1000 documents. first: Constitution of Saudi Arabia and last: Sion (district) +[2018-02-13T00:24:51.572] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:24:51.579] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:24:51.683] [INFO] cheese - inserting 1000 documents. first: Calcarovula longirostrata and last: Nuculoidea +[2018-02-13T00:24:51.700] [INFO] cheese - inserting 1000 documents. first: Store-and-forward switching center and last: Nemertea +[2018-02-13T00:24:51.721] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:24:51.745] [INFO] cheese - inserting 1000 documents. first: San Francisco La Unión and last: Clerk of the Closet +[2018-02-13T00:24:51.783] [INFO] cheese - inserting 1000 documents. first: Pusca Automata model 1986 and last: File:Times Like These (Buddy Jewell album) coverart.jpg +[2018-02-13T00:24:51.784] [INFO] cheese - inserting 1000 documents. first: Porthcuel and last: AH13 +[2018-02-13T00:24:51.833] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:24:51.851] [INFO] cheese - batch complete in: 1.726 secs +[2018-02-13T00:24:51.873] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:24:51.906] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:24:51.993] [INFO] cheese - inserting 1000 documents. first: File:Richard Skalak.jpg and last: US–Republic of China relations +[2018-02-13T00:24:52.078] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:24:52.312] [INFO] cheese - inserting 1000 documents. first: Georgi Petrov (footballer, born 1974) and last: Bogu kumite +[2018-02-13T00:24:52.385] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:24:52.415] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Equatorial Guinea and last: The Ruff & Ready Show +[2018-02-13T00:24:52.452] [INFO] cheese - inserting 1000 documents. first: 11 Mile and last: Birdmount +[2018-02-13T00:24:52.455] [INFO] cheese - inserting 1000 documents. first: The Peninsula (newspaper) and last: New Haven Shuttle (Amtrak) +[2018-02-13T00:24:52.475] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:24:52.504] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:24:52.521] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:24:52.571] [INFO] cheese - inserting 1000 documents. first: T Coronae borealis and last: List of Arsenal F.C. players +[2018-02-13T00:24:52.582] [INFO] cheese - inserting 1000 documents. first: United States Republic of China relations and last: FORV Sagar Sampada +[2018-02-13T00:24:52.614] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:24:52.633] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:24:52.801] [INFO] cheese - inserting 1000 documents. first: Peter atte Wood and last: William Carter (Mansfield MP) +[2018-02-13T00:24:52.977] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:24:52.992] [INFO] cheese - inserting 1000 documents. first: Compendium of Macromolecular Nomenclature and last: In Jae Keun +[2018-02-13T00:24:53.018] [INFO] cheese - inserting 1000 documents. first: Mako Kojima and last: Accounting Review +[2018-02-13T00:24:53.068] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:24:53.075] [INFO] cheese - inserting 1000 documents. first: Pennsylvania gubernatorial election, 1986 and last: Private Wealth Management +[2018-02-13T00:24:53.081] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:24:53.130] [INFO] cheese - inserting 1000 documents. first: Fbins and last: Church Street–Cady Hill Historic District +[2018-02-13T00:24:53.130] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:24:53.182] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:24:53.273] [INFO] cheese - inserting 1000 documents. first: Helmet vanga and last: Nuclear Bomb +[2018-02-13T00:24:53.326] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:24:53.348] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Texas State Highway Spur 86 and last: File:T-34 fully restored.jpg +[2018-02-13T00:24:53.387] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:24:53.394] [INFO] cheese - inserting 1000 documents. first: File:Tattoo Bugle Call.jpg and last: São Miguel das Missões, Rio Grande do Sul +[2018-02-13T00:24:53.403] [INFO] cheese - inserting 1000 documents. first: Least integer principle and last: U.S.-Rwanda relations +[2018-02-13T00:24:53.451] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:24:53.454] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:24:53.513] [INFO] cheese - inserting 1000 documents. first: Ruth McGregor and last: HBC (disambiguation) +[2018-02-13T00:24:53.558] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:24:53.572] [INFO] cheese - inserting 1000 documents. first: Template:User 2 Minutes to Midnight and last: Category:Top-importance B-Class Palaeontology articles +[2018-02-13T00:24:53.621] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:24:53.659] [INFO] cheese - inserting 1000 documents. first: Low (Inna song) and last: Specialized camping +[2018-02-13T00:24:53.700] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:24:53.725] [INFO] cheese - inserting 1000 documents. first: Yeshivah College, Australia and last: Rap in Sweden +[2018-02-13T00:24:53.762] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:24:53.782] [INFO] cheese - inserting 1000 documents. first: Platyhelmintha and last: Printing +[2018-02-13T00:24:53.809] [INFO] cheese - inserting 1000 documents. first: US-Rwanda relations and last: ModPlug (disambiguation) +[2018-02-13T00:24:53.855] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:24:53.860] [INFO] cheese - inserting 1000 documents. first: São Miguel das Missões, Rio Grande do Sul, Brazil and last: Wikipedia:Articles for deletion/Marcus Fiesel +[2018-02-13T00:24:53.863] [INFO] cheese - inserting 1000 documents. first: Category:Fictional members of the United States House of Representatives and last: Template:Munich U-Bahn U5 navbox +[2018-02-13T00:24:53.880] [INFO] cheese - batch complete in: 2.029 secs +[2018-02-13T00:24:53.909] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:24:53.939] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:24:54.044] [INFO] cheese - inserting 1000 documents. first: Adventure camping and last: Category:Nigerian expatriates in Lebanon +[2018-02-13T00:24:54.064] [INFO] cheese - inserting 1000 documents. first: Energy use in the US and last: No. 5 Squadron RNAS +[2018-02-13T00:24:54.107] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:24:54.218] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:24:54.238] [INFO] cheese - inserting 1000 documents. first: Drain (disambiguation) and last: Redondo Beach (disambiguation) +[2018-02-13T00:24:54.289] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:24:54.346] [INFO] cheese - inserting 1000 documents. first: Latin gamma and last: MTV En Espanol +[2018-02-13T00:24:54.350] [INFO] cheese - inserting 1000 documents. first: Monte Walsh (disambiguation) and last: He and She (film) +[2018-02-13T00:24:54.449] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:24:54.481] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:24:54.555] [INFO] cheese - inserting 1000 documents. first: Wildwood Lake (disambiguation) and last: Category:Populated places established in 1696 +[2018-02-13T00:24:54.563] [INFO] cheese - inserting 1000 documents. first: Shebrew and last: Access Bank Nigerian Government Bond Index +[2018-02-13T00:24:54.652] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:24:54.684] [INFO] cheese - inserting 1000 documents. first: Dobra, India and last: Β-Phenylacetic acid +[2018-02-13T00:24:54.698] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:24:54.779] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:24:54.823] [INFO] cheese - inserting 1000 documents. first: Robyn Hitchcock and the Egyptians and last: Mike Jackson (left-handed pitcher) +[2018-02-13T00:24:54.900] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:24:55.037] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese conductors (music) and last: Roman Catholicism in Tuva +[2018-02-13T00:24:55.049] [INFO] cheese - inserting 1000 documents. first: Concept cars from Opel and last: 2010–11 Segunda División B Play-Off +[2018-02-13T00:24:55.084] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:24:55.138] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:24:55.237] [INFO] cheese - inserting 1000 documents. first: Pollycarpus Priyanto and last: Home Sweet Homediddly-Dum-Doodily +[2018-02-13T00:24:55.271] [INFO] cheese - inserting 1000 documents. first: Chuckie Campbell and last: Category:Racism in Denmark +[2018-02-13T00:24:55.285] [INFO] cheese - inserting 1000 documents. first: 387th Air Expeditionary Group and last: Beta adrenergic receptor kinase +[2018-02-13T00:24:55.320] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T00:24:55.337] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:24:55.360] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Don Weis and last: Knight Rider (NES) +[2018-02-13T00:24:55.351] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:24:55.417] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:24:55.448] [INFO] cheese - inserting 1000 documents. first: Roman Catholicism in West Papua and last: Thysanoplusia lectula +[2018-02-13T00:24:55.483] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:24:55.555] [INFO] cheese - inserting 1000 documents. first: 2010–11 Tercera División play-offs and last: Leioheterodon modestus +[2018-02-13T00:24:55.590] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:24:55.636] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Hapoel Majd al-Krum and last: Category:Books by Henry VIII +[2018-02-13T00:24:55.667] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:24:55.686] [INFO] cheese - inserting 1000 documents. first: James Sidney, Baron Ensor Ensor and last: Anno hegirae +[2018-02-13T00:24:55.697] [INFO] cheese - inserting 1000 documents. first: 4 in the Morning and last: File:Ghost pirates.jpg +[2018-02-13T00:24:55.711] [INFO] cheese - inserting 1000 documents. first: Touch Flo 3D and last: Bearden, Knoxville, Tennessee +[2018-02-13T00:24:55.727] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:24:55.728] [INFO] cheese - inserting 1000 documents. first: Inquirições and last: Wikipedia:BUSFAQ +[2018-02-13T00:24:55.746] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:24:55.749] [INFO] cheese - batch complete in: 0.266 secs +[2018-02-13T00:24:55.776] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:24:55.866] [INFO] cheese - inserting 1000 documents. first: Category:Organizations based in Ramallah and last: Portal:Trains/Selected picture/Week 28, 2012/link +[2018-02-13T00:24:55.918] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:24:55.966] [INFO] cheese - inserting 1000 documents. first: Cavalcade (play) and last: March 28, 2002 +[2018-02-13T00:24:56.050] [INFO] cheese - inserting 1000 documents. first: Doreen Liu and last: Isaac Mbenza +[2018-02-13T00:24:56.103] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:24:56.153] [INFO] cheese - batch complete in: 2.273 secs +[2018-02-13T00:24:56.169] [INFO] cheese - inserting 1000 documents. first: Secular Canons of St. John the Evangelist and last: William I, Viscount of Béarn +[2018-02-13T00:24:56.185] [INFO] cheese - inserting 1000 documents. first: Slobodni Tjednik and last: Portland (Oregon) +[2018-02-13T00:24:56.241] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:24:56.247] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bathroom attendant and last: Wikipedia:Articles for deletion/Mark Foresta +[2018-02-13T00:24:56.249] [INFO] cheese - inserting 1000 documents. first: Template:Xsign and last: Wikipedia:WikiProject Washington (U.S. state) +[2018-02-13T00:24:56.275] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:24:56.292] [INFO] cheese - inserting 1000 documents. first: Template:Chennai Super Kings and last: Template:Membership/Mozambique +[2018-02-13T00:24:56.346] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:24:56.349] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:24:56.383] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:24:57.008] [INFO] cheese - inserting 1000 documents. first: Raymark and last: Edrington plc +[2018-02-13T00:24:57.040] [INFO] cheese - inserting 1000 documents. first: Template:Membership/Namibia and last: Khvor-e Bala +[2018-02-13T00:24:57.049] [INFO] cheese - inserting 1000 documents. first: Dodanim Barboza and last: Narcoota +[2018-02-13T00:24:57.133] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T00:24:57.154] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T00:24:57.169] [INFO] cheese - inserting 1000 documents. first: Template:MDintbtm and last: Dec. 25 +[2018-02-13T00:24:57.186] [INFO] cheese - inserting 1000 documents. first: Portland (Oregon, United States) and last: Multiprotocol BGP +[2018-02-13T00:24:57.206] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:24:57.242] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T00:24:57.254] [INFO] cheese - inserting 1000 documents. first: File:Einsjager.jpg and last: Araneids +[2018-02-13T00:24:57.360] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T00:24:57.591] [INFO] cheese - inserting 1000 documents. first: List of protected heritage sites in La Roche-en-Ardenne and last: Bunguran +[2018-02-13T00:24:57.664] [INFO] cheese - batch complete in: 1.28 secs +[2018-02-13T00:24:57.760] [INFO] cheese - inserting 1000 documents. first: Al Wasl F.C. season 2009–10 and last: River Rother, Derbyshire +[2018-02-13T00:24:57.766] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:24:57.815] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:24:57.834] [INFO] cheese - inserting 1000 documents. first: Category:Iron sculptures in the United States and last: A Heart in Pawn +[2018-02-13T00:24:57.864] [INFO] cheese - inserting 1000 documents. first: Seascapes and last: Chappelle & Stinnette Records +[2018-02-13T00:24:57.913] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:24:57.983] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:24:58.070] [INFO] cheese - inserting 1000 documents. first: Salonen, Esa-Pekka and last: JBOSS +[2018-02-13T00:24:58.153] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:24:58.210] [INFO] cheese - inserting 1000 documents. first: Suskind book and last: Portal:Yoruba/box-footer +[2018-02-13T00:24:58.284] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:24:58.318] [INFO] cheese - inserting 1000 documents. first: Proteuxoa florescens and last: Chik Mohamad Yusuf +[2018-02-13T00:24:58.370] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:24:58.388] [INFO] cheese - inserting 1000 documents. first: Muhammed bin Saud and last: Austral Photoplay Company +[2018-02-13T00:24:58.403] [INFO] cheese - inserting 1000 documents. first: Amegilla zonata and last: William John Tout +[2018-02-13T00:24:58.455] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:24:58.460] [INFO] cheese - inserting 1000 documents. first: Jack McDevitt and last: Battle of Naissus +[2018-02-13T00:24:58.466] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:24:58.577] [INFO] cheese - inserting 1000 documents. first: File:2-Perelman-Cyclopedia-Cigars.jpg and last: Portal:Dallas-Fort Worth/news archive/2006 +[2018-02-13T00:24:58.598] [INFO] cheese - batch complete in: 2.445 secs +[2018-02-13T00:24:58.651] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:24:58.736] [INFO] cheese - inserting 1000 documents. first: Holbein family and last: Wikipedia:NC (events) +[2018-02-13T00:24:58.766] [INFO] cheese - inserting 1000 documents. first: Austrian Sports Badge and last: Your Dream Home +[2018-02-13T00:24:58.798] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:24:58.802] [INFO] cheese - inserting 1000 documents. first: International Dawn Chorus Day and last: Pre-medical +[2018-02-13T00:24:58.811] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:24:58.820] [INFO] cheese - inserting 1000 documents. first: Georgina Geikie and last: Ammaa ki boli +[2018-02-13T00:24:58.849] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:24:58.854] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:24:58.863] [INFO] cheese - inserting 1000 documents. first: Category:Stone sculptures in the United States by state and last: Category:Water transportation in Nebraska +[2018-02-13T00:24:58.916] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:24:59.050] [INFO] cheese - inserting 1000 documents. first: Titus I Mar Thoma and last: File:When Will I Be Famous.PNG +[2018-02-13T00:24:59.112] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:24:59.178] [INFO] cheese - inserting 1000 documents. first: Jean Marie Atangana Mebara and last: Crime in Benin +[2018-02-13T00:24:59.265] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:24:59.277] [INFO] cheese - inserting 1000 documents. first: Asylum Township and last: Zambia–U.S. relations +[2018-02-13T00:24:59.292] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Ulster County, New York and last: Category:Populated places in Ben Tre Province +[2018-02-13T00:24:59.337] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:24:59.375] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:24:59.427] [INFO] cheese - inserting 1000 documents. first: S&P Global Platts and last: Woodshed treatment +[2018-02-13T00:24:59.424] [INFO] cheese - inserting 1000 documents. first: Category:1780s establishments in the Northwest Territory and last: Alina Tecsor +[2018-02-13T00:24:59.513] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:24:59.566] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:24:59.781] [INFO] cheese - inserting 1000 documents. first: شىنجاڭ ئۇيغۇر ئاپتونوم رايون and last: Selman City +[2018-02-13T00:24:59.811] [INFO] cheese - inserting 1000 documents. first: Zambia–US relations and last: Category:Ambassadors of South Africa to Italy +[2018-02-13T00:24:59.818] [INFO] cheese - inserting 1000 documents. first: The Hangman (film) and last: Kreios +[2018-02-13T00:24:59.857] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:24:59.860] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:24:59.902] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Benešov District and last: Sir Thomas Mildmay +[2018-02-13T00:24:59.943] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:24:59.972] [INFO] cheese - inserting 1000 documents. first: Digital hearing aid and last: Peter Bulling +[2018-02-13T00:24:59.991] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:25:00.061] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:25:00.214] [INFO] cheese - inserting 1000 documents. first: The Grand Shrines of Ise and last: Walter de Camp +[2018-02-13T00:25:00.256] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:25:00.264] [INFO] cheese - inserting 1000 documents. first: Jafarabad, Nishapur and last: List of protected heritage sites in Jemeppe-sur-Sambre +[2018-02-13T00:25:00.285] [INFO] cheese - inserting 1000 documents. first: Jorge Alberto del Río Sálas and last: Europa-Institut +[2018-02-13T00:25:00.308] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:25:00.354] [INFO] cheese - inserting 1000 documents. first: Change of life and last: Category:Bhola District +[2018-02-13T00:25:00.365] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:25:00.405] [INFO] cheese - inserting 1000 documents. first: Category:1999 establishments in Kansas and last: Nancy Xynos +[2018-02-13T00:25:00.409] [INFO] cheese - inserting 1000 documents. first: Portal:Queens of the Stone Age/Worklist and last: S-30 +[2018-02-13T00:25:00.427] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:25:00.456] [INFO] cheese - inserting 1000 documents. first: Strange loop and last: Link awareness +[2018-02-13T00:25:00.463] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:25:00.517] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:25:00.586] [INFO] cheese - batch complete in: 1.988 secs +[2018-02-13T00:25:00.675] [INFO] cheese - inserting 1000 documents. first: Bretton Woods agreements and last: Dieudonne M'bala M'bala +[2018-02-13T00:25:00.703] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:25:00.744] [INFO] cheese - inserting 1000 documents. first: Herding test and last: Gleason Building (Lawrence, Massachusetts) +[2018-02-13T00:25:00.761] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/irazola.co.uk and last: David Lloyd Johnston CC +[2018-02-13T00:25:00.771] [INFO] cheese - batch complete in: 0.254 secs +[2018-02-13T00:25:00.791] [INFO] cheese - inserting 1000 documents. first: Itv1 and last: Wikipedia:Articles for deletion/Baraqyal +[2018-02-13T00:25:00.800] [INFO] cheese - inserting 1000 documents. first: File:ShiroiKisetsu SakuraHitohira.png and last: Botys dryalis +[2018-02-13T00:25:00.809] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:25:00.845] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:25:00.848] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:25:00.915] [INFO] cheese - inserting 1000 documents. first: Tasta IL and last: Category:Ambassadors of Turkey to Northern Cyprus +[2018-02-13T00:25:00.931] [INFO] cheese - inserting 1000 documents. first: Dieudonne Owona and last: Template:UK bilateral relations +[2018-02-13T00:25:00.952] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:25:00.959] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:25:01.164] [INFO] cheese - inserting 1000 documents. first: Template:2006 films and last: Ammanford Colliery Halt railway station +[2018-02-13T00:25:01.182] [INFO] cheese - inserting 1000 documents. first: John Albert Morris and last: Libode, Eastern Cape +[2018-02-13T00:25:01.208] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:25:01.220] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:25:01.281] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Utah State Route 212 (1941–2012) and last: Category:Bronze Age sites in Essex +[2018-02-13T00:25:01.302] [INFO] cheese - inserting 1000 documents. first: Michael E. McMahon and last: João Paulo Cunha +[2018-02-13T00:25:01.318] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rhia Charles and last: Trane Whistle +[2018-02-13T00:25:01.321] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:25:01.349] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:25:01.353] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:25:01.359] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Germany articles by quality/24 and last: Empress XiaoDing +[2018-02-13T00:25:01.402] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:25:01.466] [INFO] cheese - inserting 1000 documents. first: Steynsburg, Eastern Cape and last: Wikipedia:WikiProject Spam/LinkReports/icasualties.org +[2018-02-13T00:25:01.507] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:25:01.584] [INFO] cheese - inserting 1000 documents. first: TI-36X and last: Conversion and Judaism +[2018-02-13T00:25:01.630] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:25:01.647] [INFO] cheese - inserting 1000 documents. first: Bourget (electoral district) and last: Colonie, NY +[2018-02-13T00:25:01.679] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:25:01.686] [INFO] cheese - inserting 1000 documents. first: Portal:Republika Srpska/sr wiki and last: Pierre-Macario Saba +[2018-02-13T00:25:01.710] [INFO] cheese - inserting 1000 documents. first: An Evening With Herbie Hancock and Chick Corea: In Concert and last: Wikipedia:Miscellany for deletion/User:Patryk Larney +[2018-02-13T00:25:01.721] [INFO] cheese - inserting 1000 documents. first: Sworn Enemy and last: Category:Lithuanian sculptors +[2018-02-13T00:25:01.729] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:25:01.760] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:25:01.791] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:25:01.817] [INFO] cheese - inserting 1000 documents. first: Pathways Schools and last: Hanila +[2018-02-13T00:25:01.858] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:25:02.040] [INFO] cheese - inserting 1000 documents. first: Jose Eduardo Agualusa and last: Michael Rosch +[2018-02-13T00:25:02.088] [INFO] cheese - inserting 1000 documents. first: Honda Elite and last: Iblees +[2018-02-13T00:25:02.124] [INFO] cheese - inserting 1000 documents. first: Stanley Baldwin and last: Single-occupancy vehicle +[2018-02-13T00:25:02.129] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:25:02.186] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:25:02.213] [INFO] cheese - inserting 1000 documents. first: Latin declensions and last: Princess Tarakanoff +[2018-02-13T00:25:02.251] [INFO] cheese - inserting 1000 documents. first: Eicochrysops sanyere and last: No. 14 Squadron IAF +[2018-02-13T00:25:02.283] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:25:02.318] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:25:02.330] [INFO] cheese - batch complete in: 1.744 secs +[2018-02-13T00:25:02.451] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Nabatieh Governorate and last: Category:Populated places in Western Greece +[2018-02-13T00:25:02.550] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:25:02.703] [INFO] cheese - inserting 1000 documents. first: Barotseland and last: Chorismate +[2018-02-13T00:25:02.755] [INFO] cheese - inserting 1000 documents. first: File:Hello-Sunshine-SFA-Screenshot.jpg and last: Category:1998 Winter Paralympics +[2018-02-13T00:25:02.770] [INFO] cheese - inserting 1000 documents. first: Michael Soderlund and last: Thomas Lewis Horabin +[2018-02-13T00:25:02.796] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T00:25:02.810] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:25:02.842] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:25:02.892] [INFO] cheese - inserting 1000 documents. first: File:WWE Authority.png and last: Wikipedia:Wikipedia Signpost/Newsroom/From the editor +[2018-02-13T00:25:02.897] [INFO] cheese - inserting 1000 documents. first: Franklin Township, Beaver County and last: Category:Ambassadors of India to Botswana +[2018-02-13T00:25:02.951] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:25:02.973] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:25:03.218] [INFO] cheese - inserting 1000 documents. first: GSF Development Driller and last: Category:Former populated places in Greece +[2018-02-13T00:25:03.263] [INFO] cheese - inserting 1000 documents. first: Steve Kuntz and last: Montana in the American Civil War +[2018-02-13T00:25:03.269] [INFO] cheese - inserting 1000 documents. first: WXRY-LP and last: Nuria Espert +[2018-02-13T00:25:03.289] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:25:03.333] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:25:03.346] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:25:03.403] [INFO] cheese - inserting 1000 documents. first: Seven Churches of Asia and last: Foucault, Jean Bernard Léon +[2018-02-13T00:25:03.413] [INFO] cheese - inserting 1000 documents. first: Template:Guangzhou Metro lines/list and last: Signature Panel Code +[2018-02-13T00:25:03.442] [INFO] cheese - inserting 1000 documents. first: Mavado (Mortal Kombat) and last: Fleroya +[2018-02-13T00:25:03.465] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:25:03.467] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:25:03.528] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:25:03.644] [INFO] cheese - inserting 1000 documents. first: Bass-line and last: Category:FA-Class Disability articles +[2018-02-13T00:25:03.673] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:25:03.691] [INFO] cheese - inserting 1000 documents. first: Octavio Pato and last: 18th Utah Senate District +[2018-02-13T00:25:03.721] [INFO] cheese - inserting 1000 documents. first: Dough knots and last: Category:Executed Gambian people +[2018-02-13T00:25:03.752] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:25:03.783] [INFO] cheese - inserting 1000 documents. first: Jezernice and last: Category:Lighthouses completed in 1967 +[2018-02-13T00:25:03.847] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:25:03.886] [INFO] cheese - inserting 1000 documents. first: Unusually Thicke and last: Crawford Corners, New Jersey +[2018-02-13T00:25:03.892] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:25:03.917] [INFO] cheese - inserting 1000 documents. first: Club Atlético Huracán and last: Flist +[2018-02-13T00:25:03.967] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:25:03.985] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:25:04.180] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Disability articles and last: Shiva the Destroyer +[2018-02-13T00:25:04.215] [INFO] cheese - inserting 1000 documents. first: Quercus kelloggii and last: Van de Graaff generator +[2018-02-13T00:25:04.258] [INFO] cheese - inserting 1000 documents. first: File:Jiran2.jpg and last: North Moreton +[2018-02-13T00:25:04.260] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:25:04.330] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:25:04.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/Imelda Marcos and last: Academic health science centre +[2018-02-13T00:25:04.404] [INFO] cheese - batch complete in: 2.073 secs +[2018-02-13T00:25:04.414] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:25:04.428] [INFO] cheese - inserting 1000 documents. first: Sug Corneluis and last: File:Florence Wald.jpg +[2018-02-13T00:25:04.469] [INFO] cheese - inserting 1000 documents. first: Template:User WikiProject X/doc and last: Sandris Berzinš +[2018-02-13T00:25:04.513] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:25:04.594] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:25:04.649] [INFO] cheese - inserting 1000 documents. first: WWF No Way Out and last: Sveta Nedelja, Istria +[2018-02-13T00:25:04.742] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:25:04.833] [INFO] cheese - inserting 1000 documents. first: Genetic diseases and last: Rolf Osterreich +[2018-02-13T00:25:04.886] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:25:04.981] [INFO] cheese - inserting 1000 documents. first: Doreen McCannell-Botterill and last: Enno III of East Frisia +[2018-02-13T00:25:04.997] [INFO] cheese - inserting 1000 documents. first: China Travel Hong Kong and last: Stary Gołębiewek +[2018-02-13T00:25:05.031] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:25:05.037] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:25:05.120] [INFO] cheese - inserting 1000 documents. first: Pièces de viole and last: Fox ADHD +[2018-02-13T00:25:05.143] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topic candidates/Charlemagne class battleship/archive1 and last: Bayırköy, Alanya +[2018-02-13T00:25:05.176] [INFO] cheese - inserting 1000 documents. first: Te Hāhi Tūhauwiri and last: VGT +[2018-02-13T00:25:05.175] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:25:05.187] [INFO] cheese - inserting 1000 documents. first: Roman Jakobczak and last: 82nd Regiment of Foot (disambiguation) +[2018-02-13T00:25:05.208] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:25:05.220] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:25:05.245] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:25:05.363] [INFO] cheese - inserting 1000 documents. first: Odd Fellows Building (Malden, Massachusetts) and last: List of Longest Serving Soap Opera Actors +[2018-02-13T00:25:05.372] [INFO] cheese - inserting 1000 documents. first: Edzard II of East Frisia and last: Zephyr Books +[2018-02-13T00:25:05.410] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:25:05.440] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:25:05.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Apeslowy/Eric Martin Nebraska and last: L. C. Crow +[2018-02-13T00:25:05.670] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:25:05.681] [INFO] cheese - inserting 1000 documents. first: File:Coat of arms of Rawtenstall.jpg and last: Ryoki inoue +[2018-02-13T00:25:05.716] [INFO] cheese - inserting 1000 documents. first: Bayırkozağacı, Alanya and last: Gedik, Göle +[2018-02-13T00:25:05.725] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:25:05.748] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:25:05.792] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Piątek and last: Lipiny, Łódź East County +[2018-02-13T00:25:05.811] [INFO] cheese - inserting 1000 documents. first: Branimir Štulić and last: Werschetz +[2018-02-13T00:25:05.831] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:25:05.845] [INFO] cheese - inserting 1000 documents. first: Central Bontoc language and last: Gary Andrew Speed +[2018-02-13T00:25:05.863] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:25:05.894] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:25:06.083] [INFO] cheese - inserting 1000 documents. first: Category:1947 in Soviet football leagues and last: Category:1921 disestablishments in Kansas +[2018-02-13T00:25:06.084] [INFO] cheese - inserting 1000 documents. first: Category:Townships in Lee County, Illinois and last: St Valery-en-Caux +[2018-02-13T00:25:06.114] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:25:06.129] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:25:06.152] [INFO] cheese - inserting 1000 documents. first: Van de Graff generator and last: Vitamin P +[2018-02-13T00:25:06.155] [INFO] cheese - inserting 1000 documents. first: Gülistan, Göle and last: Wikipedia:WikiProject Goa/Collaboration +[2018-02-13T00:25:06.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alliance Records and last: Women in Tibet +[2018-02-13T00:25:06.196] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:25:06.228] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:25:06.251] [INFO] cheese - inserting 1000 documents. first: Moskwa, Łódź Voivodeship and last: Reformed Church in Transylvania +[2018-02-13T00:25:06.275] [INFO] cheese - batch complete in: 1.871 secs +[2018-02-13T00:25:06.292] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:25:06.344] [INFO] cheese - inserting 1000 documents. first: Smoke Johnson and last: YPPH +[2018-02-13T00:25:06.405] [INFO] cheese - inserting 1000 documents. first: Piwauwau and last: Open Source Windows Software List +[2018-02-13T00:25:06.413] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:25:06.438] [INFO] cheese - inserting 1000 documents. first: Category:1920s disestablishments in Kansas and last: Wikipedia:Miscellany for deletion/User:Ryanasaurus0077/Obi-Wan Kenobi +[2018-02-13T00:25:06.449] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:25:06.505] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:25:06.560] [INFO] cheese - inserting 1000 documents. first: File:Pourchot-026.jpg and last: Filipino condiments +[2018-02-13T00:25:06.586] [INFO] cheese - inserting 1000 documents. first: Cassolette and last: Boxing at the 2002 South American Games +[2018-02-13T00:25:06.592] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:25:06.629] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:25:06.680] [INFO] cheese - inserting 1000 documents. first: List of flags of Australia and last: Category:Lleida Esportiu footballers +[2018-02-13T00:25:06.747] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:25:06.795] [INFO] cheese - inserting 1000 documents. first: File:WhenWarIsOver.JPG and last: Crescent sign +[2018-02-13T00:25:06.831] [INFO] cheese - inserting 1000 documents. first: Measuring Attractiveness by a Categorical Based Evaluation Technique (MACBETH) and last: Metropolitan Utah +[2018-02-13T00:25:06.845] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:25:06.873] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:25:06.925] [INFO] cheese - inserting 1000 documents. first: Majnu (disambiguation) and last: Jacob Margido Esp +[2018-02-13T00:25:06.934] [INFO] cheese - inserting 1000 documents. first: Gulong ng Palad and last: La Pérouse, Jean François de Galaup, Comte de +[2018-02-13T00:25:06.998] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:25:07.003] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:25:07.039] [INFO] cheese - inserting 1000 documents. first: Chuang Chih-yuan and last: Category:Ships built in Australia +[2018-02-13T00:25:07.082] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:25:07.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/List of World War I aces credited with 9 victories and last: Vukadinović +[2018-02-13T00:25:07.155] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:25:07.226] [INFO] cheese - inserting 1000 documents. first: HK Liepāja and last: Gretta +[2018-02-13T00:25:07.245] [INFO] cheese - inserting 1000 documents. first: Van Riebeeck Decoration and last: Technics and Time, 1 +[2018-02-13T00:25:07.261] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:25:07.299] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:25:07.362] [INFO] cheese - inserting 1000 documents. first: 2000 NatWest Trophy and last: Template:Hildebr. +[2018-02-13T00:25:07.400] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:25:07.426] [INFO] cheese - inserting 1000 documents. first: West Las Vegas Schools and last: Fredrick News Post +[2018-02-13T00:25:07.468] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:25:07.471] [INFO] cheese - inserting 1000 documents. first: Vukadinovic and last: Portal:Jane Austen/Did you know/10 +[2018-02-13T00:25:07.516] [INFO] cheese - inserting 1000 documents. first: Pygmy gerbil and last: Fabijan Sovagovic +[2018-02-13T00:25:07.584] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:25:07.633] [INFO] cheese - inserting 1000 documents. first: Pantothenic acid and last: 970s BC +[2018-02-13T00:25:07.674] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:25:07.711] [INFO] cheese - inserting 1000 documents. first: Channel 40 low-power TV stations in the United States and last: ABT Sportsline +[2018-02-13T00:25:07.815] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:25:07.968] [INFO] cheese - batch complete in: 1.693 secs +[2018-02-13T00:25:08.120] [INFO] cheese - inserting 1000 documents. first: Swallow (Zhao Wei album) and last: Efrenk River +[2018-02-13T00:25:08.134] [INFO] cheese - inserting 1000 documents. first: The Amateur View and last: Maboroshi no Daichi +[2018-02-13T00:25:08.259] [INFO] cheese - inserting 1000 documents. first: File:2004 Summer Olympics logo.svg and last: 2008 Summer Olympics medal winners +[2018-02-13T00:25:08.257] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T00:25:08.297] [INFO] cheese - inserting 1000 documents. first: Portal:Jane Austen/Did you know/11 and last: Settle-Carlisle Line +[2018-02-13T00:25:08.302] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T00:25:08.380] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:25:08.430] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:25:08.446] [INFO] cheese - inserting 1000 documents. first: Parco Natura Viva and last: Ferlin Eugene Husky +[2018-02-13T00:25:08.502] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:25:08.547] [INFO] cheese - inserting 1000 documents. first: Quintiliano H. de Mesquita and last: Ben and Me (movie) +[2018-02-13T00:25:08.603] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T00:25:08.645] [INFO] cheese - inserting 1000 documents. first: Dai Rees (rugby league born c. 1885) and last: Duke of Lancaster's +[2018-02-13T00:25:08.685] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:25:08.728] [INFO] cheese - inserting 1000 documents. first: Sardinita De Salado and last: File:Another Step Closer to You.jpg +[2018-02-13T00:25:08.763] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:25:08.805] [INFO] cheese - inserting 1000 documents. first: Medina High School (Ohio) and last: File:Karoly-Szabo-October-6-1953x.jpg +[2018-02-13T00:25:08.814] [INFO] cheese - inserting 1000 documents. first: Herb Parker Stadium and last: Königstein (Taunus) +[2018-02-13T00:25:08.821] [INFO] cheese - inserting 1000 documents. first: 2015 Pan American Games torch relay and last: NIH funding +[2018-02-13T00:25:08.854] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:25:08.860] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:25:08.864] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:25:09.055] [INFO] cheese - inserting 1000 documents. first: List of episodes of Power Rangers and last: Chichester Samuel Parkinson-Fortescue, 1st Baron Carlingford +[2018-02-13T00:25:09.101] [INFO] cheese - inserting 1000 documents. first: Template:RadioDept and last: Wikipedia:Articles for deletion/Broughton Anglican College +[2018-02-13T00:25:09.173] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:25:09.206] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:25:09.328] [INFO] cheese - inserting 1000 documents. first: Common Grass Carp and last: Chanon Lake +[2018-02-13T00:25:09.344] [INFO] cheese - inserting 1000 documents. first: Category:Insignia propers of the Order of the Aztec Eagle and last: Edwin Scott Gaustad +[2018-02-13T00:25:09.352] [INFO] cheese - inserting 1000 documents. first: Minister of Housing, Spatial Planning and the Environment and last: AECB +[2018-02-13T00:25:09.392] [INFO] cheese - inserting 1000 documents. first: Hypoatherina and last: Kenny Heitz +[2018-02-13T00:25:09.392] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:25:09.408] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:25:09.415] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:25:09.459] [INFO] cheese - inserting 1000 documents. first: 980s BC and last: Lake Baikal +[2018-02-13T00:25:09.489] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:25:09.581] [INFO] cheese - batch complete in: 1.609 secs +[2018-02-13T00:25:09.778] [INFO] cheese - inserting 1000 documents. first: File:Nipawin Hawks Logo.svg and last: Caroline Healey Dall +[2018-02-13T00:25:09.839] [INFO] cheese - inserting 1000 documents. first: Template:RubberBible53rd and last: M-5 +[2018-02-13T00:25:09.859] [INFO] cheese - inserting 1000 documents. first: Luis Estrada Paetau and last: Blue Army Tour +[2018-02-13T00:25:09.862] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:25:09.906] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/May 7 and last: Template:Sm +[2018-02-13T00:25:09.914] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:25:09.919] [INFO] cheese - inserting 1000 documents. first: Chavoley Lake and last: St James' Hospital, Leeds +[2018-02-13T00:25:09.919] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:25:09.935] [INFO] cheese - inserting 1000 documents. first: Madrid Municipal Police and last: A-B foam +[2018-02-13T00:25:09.964] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:25:09.968] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:25:09.979] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:25:10.231] [INFO] cheese - inserting 1000 documents. first: BACTIBASE and last: Wikipedia:NONCE +[2018-02-13T00:25:10.297] [INFO] cheese - inserting 1000 documents. first: 1997 FINA Short Course World Championships – Women's 4x100m Medley Relay and last: Federal League Park (Buffalo) +[2018-02-13T00:25:10.300] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:25:10.331] [INFO] cheese - inserting 1000 documents. first: File:Different Times Playbill.jpg and last: Žurena +[2018-02-13T00:25:10.335] [INFO] cheese - inserting 1000 documents. first: Template:Algoma Central style and last: Georg Grün +[2018-02-13T00:25:10.356] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:25:10.380] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:25:10.384] [INFO] cheese - inserting 1000 documents. first: 2006-07 UEFA Cup and last: Our Lady of Bechouat +[2018-02-13T00:25:10.397] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:25:10.432] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:25:10.480] [INFO] cheese - inserting 1000 documents. first: El Djem and last: Octafluoropropane (data page) +[2018-02-13T00:25:10.541] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:25:10.675] [INFO] cheese - inserting 1000 documents. first: Xenotaca and last: Smith Shoe Shop +[2018-02-13T00:25:10.710] [INFO] cheese - inserting 1000 documents. first: The Girl With the Red Riding Hood and last: Sonnenkopf +[2018-02-13T00:25:10.716] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:25:10.766] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:25:10.794] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dr sreeharii and last: Margarones tritonias +[2018-02-13T00:25:10.804] [INFO] cheese - inserting 1000 documents. first: Union de la Critique de Cinéma and last: Ken Garing +[2018-02-13T00:25:10.837] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:25:10.849] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:25:10.880] [INFO] cheese - inserting 1000 documents. first: Haut Bages Liberal and last: David Aldrich +[2018-02-13T00:25:10.929] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:25:11.022] [INFO] cheese - inserting 1000 documents. first: Heirloom tomato and last: The Light at the End of the World (My Dying Bride album) +[2018-02-13T00:25:11.073] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:25:11.101] [INFO] cheese - inserting 1000 documents. first: File:AshteadLogo.PNG and last: Ditte Kotzian +[2018-02-13T00:25:11.104] [INFO] cheese - inserting 1000 documents. first: Sonntagshorn and last: Wheego Whip LiFe +[2018-02-13T00:25:11.108] [INFO] cheese - inserting 1000 documents. first: Yam and last: Cocoa programming +[2018-02-13T00:25:11.144] [INFO] cheese - inserting 1000 documents. first: Margarodes nereis and last: 2004 in French television +[2018-02-13T00:25:11.143] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:25:11.148] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:25:11.176] [INFO] cheese - inserting 1000 documents. first: Amanda Jacqueline Redman and last: Tom Rice +[2018-02-13T00:25:11.243] [INFO] cheese - batch complete in: 1.662 secs +[2018-02-13T00:25:11.267] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:25:11.277] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:25:11.397] [INFO] cheese - inserting 1000 documents. first: Central Bank of United Arab Emirates and last: Telephone Organization of Thailand FC +[2018-02-13T00:25:11.478] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:25:11.699] [INFO] cheese - inserting 1000 documents. first: Vivus Inc. and last: Hummelsberg (Schwäbische Alb) +[2018-02-13T00:25:11.707] [INFO] cheese - inserting 1000 documents. first: Z9 and last: Category:Halcyonidae +[2018-02-13T00:25:11.719] [INFO] cheese - inserting 1000 documents. first: Return of the Ankh and last: Scottish Fire and Rescue Service +[2018-02-13T00:25:11.724] [INFO] cheese - inserting 1000 documents. first: Mediterranean seabass and last: Wikipedia:Articles for deletion/List of socialists from Eastern Europe +[2018-02-13T00:25:11.742] [INFO] cheese - inserting 1000 documents. first: Zineb El Rhazoui and last: Jha (Indic) +[2018-02-13T00:25:11.759] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:25:11.794] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:25:11.799] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:25:11.803] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:25:11.848] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:25:11.979] [INFO] cheese - inserting 1000 documents. first: Zhaotong Airport and last: Cronulla Riot +[2018-02-13T00:25:12.041] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:25:12.167] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jet-CD and last: Daikanbō Station +[2018-02-13T00:25:12.175] [INFO] cheese - inserting 1000 documents. first: Adriaan Backer and last: Salah Dessouki +[2018-02-13T00:25:12.253] [INFO] cheese - inserting 1000 documents. first: Category:1992 disestablishments in Kansas and last: List of 2015 UCI ProTeams and riders +[2018-02-13T00:25:12.280] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:25:12.300] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:25:12.322] [INFO] cheese - inserting 1000 documents. first: Georges Goyon and last: Bandarik +[2018-02-13T00:25:12.342] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:25:12.370] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:25:12.471] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 304 and last: George Cram Cook +[2018-02-13T00:25:12.491] [INFO] cheese - inserting 1000 documents. first: Tales of the Beanworld and last: Germantown Academy +[2018-02-13T00:25:12.515] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:25:12.583] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:25:12.697] [INFO] cheese - inserting 1000 documents. first: Judeo-Georgian language and last: Sakigake!! Otoko Juku +[2018-02-13T00:25:12.792] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:25:12.832] [INFO] cheese - inserting 1000 documents. first: Category:Auto GP and last: Calliaster +[2018-02-13T00:25:12.847] [INFO] cheese - inserting 1000 documents. first: 2013–15 detention of Al Jazeera journalists by Egypt and last: Tax refund theft in the United States +[2018-02-13T00:25:12.876] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:25:12.888] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:25:12.890] [INFO] cheese - inserting 1000 documents. first: Valchi Dol and last: Bârgăuani +[2018-02-13T00:25:12.932] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:25:13.010] [INFO] cheese - inserting 1000 documents. first: Second Arab-Israeli War and last: Scabbers +[2018-02-13T00:25:13.031] [INFO] cheese - inserting 1000 documents. first: Fledgling Phoenix and last: Linjiang Campaign +[2018-02-13T00:25:13.083] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:25:13.090] [INFO] cheese - batch complete in: 1.847 secs +[2018-02-13T00:25:13.141] [INFO] cheese - inserting 1000 documents. first: Tavringer Romani and last: Euspira notabilis +[2018-02-13T00:25:13.141] [INFO] cheese - inserting 1000 documents. first: Syllepte rhyparialis and last: Château de la Garoupe +[2018-02-13T00:25:13.150] [INFO] cheese - inserting 1000 documents. first: Category:Land speed record people and last: Thakur Ram Singh(Revolutionary) +[2018-02-13T00:25:13.165] [INFO] cheese - inserting 1000 documents. first: David Eli Lilienthal and last: Festival Prijateljstva +[2018-02-13T00:25:13.177] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:25:13.184] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:25:13.189] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:25:13.249] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:25:13.269] [INFO] cheese - inserting 1000 documents. first: Tug of war at the 1906 Summer Olympics and last: Tessanne Chin +[2018-02-13T00:25:13.315] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:25:13.527] [INFO] cheese - inserting 1000 documents. first: Portal:Architecture/Selected picture/9 and last: Chubin, Razavi Khorasan +[2018-02-13T00:25:13.535] [INFO] cheese - inserting 1000 documents. first: Albert Blue and last: Herbert Perez +[2018-02-13T00:25:13.543] [INFO] cheese - inserting 1000 documents. first: Someone Like Me / Right Now 2004 and last: LSA (Drug) +[2018-02-13T00:25:13.562] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:25:13.573] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:25:13.617] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:25:13.628] [INFO] cheese - inserting 1000 documents. first: Ái (digraph) and last: General purpose macroprocessor +[2018-02-13T00:25:13.681] [INFO] cheese - inserting 1000 documents. first: Euspira obtusa and last: Surviving Summer +[2018-02-13T00:25:13.690] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:25:13.727] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:25:13.750] [INFO] cheese - inserting 1000 documents. first: Fataluku and last: Padjadjaran University +[2018-02-13T00:25:13.802] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:25:13.891] [INFO] cheese - inserting 1000 documents. first: Chubain and last: New School for the Arts +[2018-02-13T00:25:13.955] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:25:14.037] [INFO] cheese - inserting 1000 documents. first: Battle of Clitheroe and last: Attorneys-General for England and Wales +[2018-02-13T00:25:14.087] [INFO] cheese - inserting 1000 documents. first: Category:Kharkiv National University of Economics and last: Racemic methamphetamine +[2018-02-13T00:25:14.137] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:25:14.160] [INFO] cheese - inserting 1000 documents. first: Supriyadi and last: File:Pub (Đorđe Balašević album - cover art).jpg +[2018-02-13T00:25:14.193] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:25:14.226] [INFO] cheese - inserting 1000 documents. first: J. E. Thorold Rogers and last: Arkell Museum +[2018-02-13T00:25:14.277] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:25:14.331] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:25:14.458] [INFO] cheese - inserting 1000 documents. first: Fabrizio Faniello and last: Rock Dating +[2018-02-13T00:25:14.477] [INFO] cheese - inserting 1000 documents. first: Category:Fossil taxa described in 1941 and last: Wikipedia:Featured list candidates/List of Malmö FF players/archive1 +[2018-02-13T00:25:14.536] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:25:14.548] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:25:14.587] [INFO] cheese - inserting 1000 documents. first: Lake Zurich and last: Ptolemy III Euergetes +[2018-02-13T00:25:14.691] [INFO] cheese - inserting 1000 documents. first: Heroes (Måns Zelmerlöw song) and last: Nokia Cinemagraph +[2018-02-13T00:25:14.708] [INFO] cheese - batch complete in: 1.618 secs +[2018-02-13T00:25:14.746] [INFO] cheese - inserting 1000 documents. first: Petrus de Aquileia and last: Category:People from Lorain, Ohio +[2018-02-13T00:25:14.811] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:25:14.827] [INFO] cheese - inserting 1000 documents. first: An Ordinale Kernewek and last: Mark Wood (bishop) +[2018-02-13T00:25:14.866] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:25:14.936] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:25:14.979] [INFO] cheese - inserting 1000 documents. first: Palinurus mauritanicus and last: File:Firma vertical.png +[2018-02-13T00:25:15.054] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:25:15.298] [INFO] cheese - inserting 1000 documents. first: E.V.Saroja and last: Tree chart +[2018-02-13T00:25:15.300] [INFO] cheese - inserting 1000 documents. first: Riga, Gulf of and last: Showtime (film) +[2018-02-13T00:25:15.395] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:25:15.397] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:25:15.420] [INFO] cheese - inserting 1000 documents. first: Jember Fashion Carnival and last: Template:Infobox Song Contest/Eurovision Young Musicians 1996 +[2018-02-13T00:25:15.521] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:25:15.541] [INFO] cheese - inserting 1000 documents. first: NDC-GR and last: Immolator +[2018-02-13T00:25:15.608] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:25:15.633] [INFO] cheese - inserting 1000 documents. first: Hassan Khairat and last: Kuanjie Three-self Patriotic Church +[2018-02-13T00:25:15.717] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:25:15.725] [INFO] cheese - inserting 1000 documents. first: Find the Lady (1956 film) and last: Michael Weinstein (disambiguation) +[2018-02-13T00:25:15.801] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:25:15.816] [INFO] cheese - inserting 1000 documents. first: Uwini and last: U.K. Ambassador to Costa Rica +[2018-02-13T00:25:15.942] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:25:16.110] [INFO] cheese - inserting 1000 documents. first: Charles Vincent and last: F Scott +[2018-02-13T00:25:16.128] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Song Contest/Eurovision Young Musicians 1998 and last: Wikipedia:Articles for deletion/The Lion Story Bible +[2018-02-13T00:25:16.211] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:25:16.216] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:25:16.230] [INFO] cheese - inserting 1000 documents. first: Template:Afghanistan-judo-bio-stub and last: 1932 Winter Olympics medal count +[2018-02-13T00:25:16.278] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SBB left/S25 and last: Rcms +[2018-02-13T00:25:16.332] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:25:16.340] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:25:16.351] [INFO] cheese - inserting 1000 documents. first: Dan Weinstein (disambiguation) and last: Homosexual rights in Mauritania +[2018-02-13T00:25:16.399] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:25:16.477] [INFO] cheese - inserting 1000 documents. first: U. K. Ambassador to Costa Rica and last: Nick Cannon Presents: Wild 'n Out +[2018-02-13T00:25:16.527] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:25:16.616] [INFO] cheese - inserting 1000 documents. first: Category:1916–17 in Swedish football and last: Category:Beninese awards +[2018-02-13T00:25:16.667] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:25:16.745] [INFO] cheese - inserting 1000 documents. first: FCC song and last: Holly Bluff +[2018-02-13T00:25:16.774] [INFO] cheese - inserting 1000 documents. first: 1960 Winter Olympics medal count and last: Category:Filipino sport shooters +[2018-02-13T00:25:16.779] [INFO] cheese - inserting 1000 documents. first: Comic-relief and last: Category:J. G. Thirlwell albums +[2018-02-13T00:25:16.828] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:25:16.855] [INFO] cheese - inserting 1000 documents. first: Strider Academy and last: Category:Time (magazine) articles +[2018-02-13T00:25:16.862] [INFO] cheese - inserting 1000 documents. first: Pistacia lentiscus and last: Graptolithina +[2018-02-13T00:25:16.869] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:25:16.875] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:25:16.940] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:25:17.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject SUNY/Active participants and last: Osmanthus bibracteatus +[2018-02-13T00:25:17.034] [INFO] cheese - batch complete in: 2.326 secs +[2018-02-13T00:25:17.095] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:25:17.163] [INFO] cheese - inserting 1000 documents. first: Category:Bahamian awards and last: UK threat level +[2018-02-13T00:25:17.208] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:25:17.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Donation appeal ideas and last: Waiting Room (band) +[2018-02-13T00:25:17.300] [INFO] cheese - inserting 1000 documents. first: The Álvaro de Bazán (F101) and last: Wikipedia:Articles for deletion/Armando Cesari +[2018-02-13T00:25:17.321] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:25:17.324] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/AMX-30E and last: Hilton Head Island-Beaufort Micropolitan Statistical Area +[2018-02-13T00:25:17.373] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:25:17.392] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:25:17.465] [INFO] cheese - inserting 1000 documents. first: File:New Jersey Trenton.png and last: Saint Alphonsus Liguori +[2018-02-13T00:25:17.475] [INFO] cheese - inserting 1000 documents. first: Osmanthus ilicifolius and last: U. K. Ambassador to Finland +[2018-02-13T00:25:17.543] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:25:17.542] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:25:17.629] [INFO] cheese - inserting 1000 documents. first: Estació del Nord Sports Hall and last: File:Telford Tigers Logo.png +[2018-02-13T00:25:17.694] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:25:17.831] [INFO] cheese - inserting 1000 documents. first: Esther Mae Nesbitt House and last: Faschnaut Day +[2018-02-13T00:25:17.871] [INFO] cheese - inserting 1000 documents. first: Henny ter Weer and last: Ingeborg Krog +[2018-02-13T00:25:17.880] [INFO] cheese - inserting 1000 documents. first: UK Ambassador to Finland and last: Voltz (disambiguation) +[2018-02-13T00:25:17.883] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:25:17.894] [INFO] cheese - inserting 1000 documents. first: Hilton Head Island-Beaufort Micropolitan Area and last: Category:State law enforcement agencies of Iowa +[2018-02-13T00:25:17.918] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:25:17.921] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:25:17.952] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:25:18.087] [INFO] cheese - inserting 1000 documents. first: Liguori, Saint Alphonsus and last: Peace of Vasvar +[2018-02-13T00:25:18.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/derefer.unbubble.eu and last: Indian General Elections 2009 +[2018-02-13T00:25:18.142] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:25:18.145] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:25:18.212] [INFO] cheese - inserting 1000 documents. first: Mauritius India Tax Treaty and last: William Rigby +[2018-02-13T00:25:18.224] [INFO] cheese - inserting 1000 documents. first: Sir William Blackett, 1st Baronet of Matfen and last: David DeGraff House +[2018-02-13T00:25:18.240] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:25:18.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gentlemen's agreement and last: Slinger Super Speedway +[2018-02-13T00:25:18.273] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:25:18.308] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:25:18.381] [INFO] cheese - inserting 1000 documents. first: Li Yuwei and last: Cəfərli, Gadabay +[2018-02-13T00:25:18.425] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:25:18.459] [INFO] cheese - inserting 1000 documents. first: Alice in Wonderland (1933 film) and last: Draconic month +[2018-02-13T00:25:18.527] [INFO] cheese - inserting 1000 documents. first: Schedonorus ferrugineus and last: Panathinaikos Athletics +[2018-02-13T00:25:18.536] [INFO] cheese - batch complete in: 1.502 secs +[2018-02-13T00:25:18.609] [INFO] cheese - inserting 1000 documents. first: Brâncuși and last: FC Steaua București season 2005-06 +[2018-02-13T00:25:18.613] [INFO] cheese - inserting 1000 documents. first: Carousel (Blink-182 song) and last: Last of the Runaways +[2018-02-13T00:25:18.621] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:25:18.639] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:25:18.677] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:25:18.678] [INFO] cheese - inserting 1000 documents. first: File:EmptySouls.jpg and last: Norwegian Coast Guard +[2018-02-13T00:25:18.704] [INFO] cheese - inserting 1000 documents. first: Melbourne/Essendon Airport and last: Miss Teen All American +[2018-02-13T00:25:18.724] [INFO] cheese - inserting 1000 documents. first: Operation Iraqi Freedom VI and last: USS Matagorda (AG-122) +[2018-02-13T00:25:18.735] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:25:18.761] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:25:18.774] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:25:18.888] [INFO] cheese - inserting 1000 documents. first: Fænø and last: Județul Lăpușna +[2018-02-13T00:25:18.923] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:25:18.971] [INFO] cheese - inserting 1000 documents. first: Andy Balbirnie and last: Category:Hamdanid emirate of Mosul +[2018-02-13T00:25:19.006] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:25:19.066] [INFO] cheese - inserting 1000 documents. first: Subhanahongsa Award and last: G.G. Grice Jr +[2018-02-13T00:25:19.105] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:25:19.107] [INFO] cheese - inserting 1000 documents. first: Walsh County Courthouse and last: File:Cento anni d'amore.jpg +[2018-02-13T00:25:19.132] [INFO] cheese - inserting 1000 documents. first: Jidov Cemetery Giurtelecu Șimleului and last: Category:Museums established in 1794 +[2018-02-13T00:25:19.137] [INFO] cheese - inserting 1000 documents. first: USCGC Humboldt (WAVP-373) and last: Wikipedia:Articles for deletion/Justin Meyer +[2018-02-13T00:25:19.136] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:25:19.152] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:25:19.160] [INFO] cheese - inserting 1000 documents. first: Clash (magazine) and last: Villanovan Culture +[2018-02-13T00:25:19.180] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:25:19.212] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:25:19.368] [INFO] cheese - inserting 1000 documents. first: Template:LG phones and last: Hermann Maurer +[2018-02-13T00:25:19.404] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:25:19.410] [INFO] cheese - inserting 1000 documents. first: Template:User interest Bahamas/doc and last: Template:ISO 3166 code-3 UY +[2018-02-13T00:25:19.432] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T00:25:19.442] [INFO] cheese - inserting 1000 documents. first: Ipomoea pes-caprae subsp. brasiliensis and last: U. K. Ambassador to Switzerland +[2018-02-13T00:25:19.443] [INFO] cheese - inserting 1000 documents. first: Eva Philipse and last: Public key pair +[2018-02-13T00:25:19.473] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:25:19.482] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:25:19.487] [INFO] cheese - inserting 1000 documents. first: Anomalistic month and last: BCP +[2018-02-13T00:25:19.490] [INFO] cheese - inserting 1000 documents. first: Mid Atlantic Skateboard Series and last: List of Victoria Crosses by School +[2018-02-13T00:25:19.537] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:25:19.554] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T00:25:19.615] [INFO] cheese - inserting 1000 documents. first: Choceň and last: Paracas culture +[2018-02-13T00:25:19.648] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code-3 UZ and last: Template:ISO 3166 numeric FI +[2018-02-13T00:25:19.666] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:25:19.674] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:25:19.705] [INFO] cheese - inserting 1000 documents. first: Thijs Waterink and last: Category:People of Yemeni descent +[2018-02-13T00:25:19.744] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:25:19.752] [INFO] cheese - inserting 1000 documents. first: River Eula and last: Category:Sports venues completed in 2010 +[2018-02-13T00:25:19.804] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:25:19.833] [INFO] cheese - inserting 1000 documents. first: List of Vietnamese American Groups and last: Pic d'Artsinol +[2018-02-13T00:25:19.833] [INFO] cheese - inserting 1000 documents. first: Category:Recipients of the Merit Order of the Bavarian Crown and last: File:Royal Navy Medical Assistant Insignia.JPG +[2018-02-13T00:25:19.864] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:25:19.890] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:25:19.943] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 numeric FR and last: John Shadden +[2018-02-13T00:25:19.967] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:25:20.028] [INFO] cheese - inserting 1000 documents. first: EN postal area and last: Do You Really Want To Hurt Me +[2018-02-13T00:25:20.066] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:25:20.177] [INFO] cheese - inserting 1000 documents. first: Hal Pereira and last: Estonian flag +[2018-02-13T00:25:20.235] [INFO] cheese - inserting 1000 documents. first: Category:Olympics gymnastics team navigational boxes and last: Marina Salandy-Brown +[2018-02-13T00:25:20.260] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:25:20.287] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:25:20.301] [INFO] cheese - inserting 1000 documents. first: Big Red (mascot) and last: Satoshi Shimizu +[2018-02-13T00:25:20.321] [INFO] cheese - inserting 1000 documents. first: NMIMS,Shirpur and last: Utzschneider and Fraunhofer +[2018-02-13T00:25:20.349] [INFO] cheese - inserting 1000 documents. first: Silvașu de Jos and last: Category:Canadian military personnel killed in the War in Afghanistan (2001–2014) +[2018-02-13T00:25:20.354] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:25:20.365] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:25:20.477] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:25:20.732] [INFO] cheese - inserting 1000 documents. first: HRSMN and last: Disc Jockey Jamboree +[2018-02-13T00:25:20.783] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:25:20.803] [INFO] cheese - inserting 1000 documents. first: Betty Erde and last: Federación Estatal de Lesbianas, Gays, Transexuales y Bisexuales +[2018-02-13T00:25:20.827] [INFO] cheese - inserting 1000 documents. first: G. und S. Merz and last: Wikipedia:Suspected copyright violations/2015-03-05 +[2018-02-13T00:25:20.840] [INFO] cheese - inserting 1000 documents. first: Fishing boat (traditional) and last: Abla Ki Shakti +[2018-02-13T00:25:20.854] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:25:20.858] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:25:20.875] [INFO] cheese - inserting 1000 documents. first: Potowatomi and last: Michael Hogan +[2018-02-13T00:25:20.886] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:25:20.889] [INFO] cheese - inserting 1000 documents. first: Air Vallée Holding and last: Bombing of enkhuizen +[2018-02-13T00:25:20.940] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:25:20.960] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:25:21.073] [INFO] cheese - inserting 1000 documents. first: Video Electronics Standards Association and last: Stanley Cup +[2018-02-13T00:25:21.140] [INFO] cheese - inserting 1000 documents. first: Category:People from Rumphi District and last: Iridient Developer +[2018-02-13T00:25:21.163] [INFO] cheese - inserting 1000 documents. first: Category:Shiraz University alumni and last: Mona Lisas and Mad Hatters +[2018-02-13T00:25:21.168] [INFO] cheese - batch complete in: 1.614 secs +[2018-02-13T00:25:21.181] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:25:21.229] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:25:21.249] [INFO] cheese - inserting 1000 documents. first: Akbar Ansari and last: Wikipedia:Reference desk/Archives/Miscellaneous/2008 August 11 +[2018-02-13T00:25:21.295] [INFO] cheese - inserting 1000 documents. first: File:Buckcherry all night long.png and last: The Right Worshipful +[2018-02-13T00:25:21.295] [INFO] cheese - inserting 1000 documents. first: Ante Mašić and last: File:Violent Rome.jpg +[2018-02-13T00:25:21.294] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:25:21.333] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:25:21.351] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:25:21.418] [INFO] cheese - inserting 1000 documents. first: Maria Stuart and last: Black Sun Productions +[2018-02-13T00:25:21.485] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:25:21.589] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/The dress and last: Category:1965 disestablishments in Minnesota +[2018-02-13T00:25:21.663] [INFO] cheese - inserting 1000 documents. first: Craig Johnson (football coach) and last: Wikipedia:Articles for deletion/Suite101.com (3rd nomination) +[2018-02-13T00:25:21.668] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:25:21.688] [INFO] cheese - inserting 1000 documents. first: Setter (computer science) and last: Dead & Buried +[2018-02-13T00:25:21.708] [INFO] cheese - inserting 1000 documents. first: Promysel Narimanova and last: Roads in Calgary +[2018-02-13T00:25:21.732] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:25:21.759] [INFO] cheese - inserting 1000 documents. first: Polychrome brickwork and last: Wikipedia:Motto of the day/August 28, 2012 +[2018-02-13T00:25:21.796] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:25:21.798] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:25:21.841] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:25:22.024] [INFO] cheese - inserting 1000 documents. first: Սարգիս Տիրանեան and last: Baldwin High School (Baldwin City, Kansas) +[2018-02-13T00:25:22.065] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:25:22.192] [INFO] cheese - inserting 1000 documents. first: Sintashta and last: Wikipedia:Articles for deletion/North Flinty Knoll +[2018-02-13T00:25:22.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject United States Public Policy/Assessment log and last: Progun +[2018-02-13T00:25:22.250] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:25:22.272] [INFO] cheese - inserting 1000 documents. first: Abdullah Al-Sooli and last: COBIS +[2018-02-13T00:25:22.273] [INFO] cheese - inserting 1000 documents. first: Offset (wheel) and last: Heterozius +[2018-02-13T00:25:22.320] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:25:22.339] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:25:22.348] [INFO] cheese - inserting 1000 documents. first: File:Here's Jaki.jpg and last: Charles Zomphier +[2018-02-13T00:25:22.359] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:25:22.450] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:25:22.502] [INFO] cheese - inserting 1000 documents. first: Max Vernon Mathews and last: Florida Gators women's cross country +[2018-02-13T00:25:22.558] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:25:22.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Userboxes/Wikipedia/Stats and tools/edit count and last: ATCvet code QA03AX10 +[2018-02-13T00:25:22.747] [INFO] cheese - inserting 1000 documents. first: Ofra Haza and last: Ocean thermal energy conversion +[2018-02-13T00:25:22.755] [INFO] cheese - inserting 1000 documents. first: File:Lumines-roundabout-screenshot.png and last: Qaravəlli, Shamakhi +[2018-02-13T00:25:22.780] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:25:22.786] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:25:22.833] [INFO] cheese - inserting 1000 documents. first: Category:Roads in Hamilton, Ontario and last: Scott Tercero +[2018-02-13T00:25:22.834] [INFO] cheese - batch complete in: 1.666 secs +[2018-02-13T00:25:22.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Comics/To-do and last: Decision-matrix method +[2018-02-13T00:25:22.886] [INFO] cheese - inserting 1000 documents. first: File:TestFlight Icon.png and last: De Excidio (disambiguation) +[2018-02-13T00:25:22.890] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:25:22.913] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:25:22.920] [INFO] cheese - inserting 1000 documents. first: Ivan Opačak and last: File:Amersham Town F.C. logo.png +[2018-02-13T00:25:22.952] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:25:22.987] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:25:23.033] [INFO] cheese - inserting 1000 documents. first: ATC code A03AX11 and last: American football club +[2018-02-13T00:25:23.071] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:25:23.129] [INFO] cheese - inserting 1000 documents. first: 2008 UCLA Bruins football team and last: HIP 81657 +[2018-02-13T00:25:23.161] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:25:23.215] [INFO] cheese - inserting 1000 documents. first: Fairy stone (disambiguation) and last: World's busiest airports by aircraft movements +[2018-02-13T00:25:23.243] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:25:23.291] [INFO] cheese - inserting 1000 documents. first: ATC code A16A and last: 2010 Ontario/Quebec earthquake +[2018-02-13T00:25:23.305] [INFO] cheese - inserting 1000 documents. first: London Goodenough Trust and last: File:Chrispaul.jpg +[2018-02-13T00:25:23.329] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:25:23.340] [INFO] cheese - inserting 1000 documents. first: Carrion/Apologies to Insect Life and last: Choltice (Pardubice District) +[2018-02-13T00:25:23.364] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:25:23.397] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:25:23.400] [INFO] cheese - inserting 1000 documents. first: Category:Languages by word order and last: Philosophy of life sciences +[2018-02-13T00:25:23.447] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:25:23.517] [INFO] cheese - inserting 1000 documents. first: Category:Algeria location map templates and last: ATC code C09CA04 +[2018-02-13T00:25:23.520] [INFO] cheese - inserting 1000 documents. first: SAO 253651 and last: File:N&VTragedy.jpg +[2018-02-13T00:25:23.541] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:25:23.592] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:25:23.685] [INFO] cheese - inserting 1000 documents. first: World's busiest airports by cargo traffic and last: Japanese cherry tree +[2018-02-13T00:25:23.689] [INFO] cheese - inserting 1000 documents. first: File:Wadati-benioff-zone.png and last: Ermeni +[2018-02-13T00:25:23.712] [INFO] cheese - inserting 1000 documents. first: ATCvet code QC09CA04 and last: ATCvet code QD10AB05 +[2018-02-13T00:25:23.725] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:25:23.733] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:25:23.741] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:25:23.770] [INFO] cheese - inserting 1000 documents. first: Liberty Displaying the Arts and Sciences and last: Lake Kawaguchiko +[2018-02-13T00:25:23.810] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CNN and last: Template:Db-nonsense-notice-NPF/doc +[2018-02-13T00:25:23.810] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:25:23.849] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:25:24.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Saphiragold/Archive and last: Wikipedia:PC/F +[2018-02-13T00:25:24.069] [INFO] cheese - inserting 1000 documents. first: Brain aneurysm and last: Vanguard-class submarine +[2018-02-13T00:25:24.071] [INFO] cheese - inserting 1000 documents. first: Logically equivolent and last: Category:European Route of Industrial Heritage Anchor Points +[2018-02-13T00:25:24.098] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:25:24.112] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:25:24.133] [INFO] cheese - inserting 1000 documents. first: Category:ISO language articles citing sources other than Ethnologue and last: Björn Westerberg +[2018-02-13T00:25:24.159] [INFO] cheese - batch complete in: 1.325 secs +[2018-02-13T00:25:24.167] [INFO] cheese - inserting 1000 documents. first: Jason Castro (disambiguation) and last: Filip Krajinovic +[2018-02-13T00:25:24.170] [INFO] cheese - inserting 1000 documents. first: County Route 55 (Chemung County, New York) and last: Category:Wikipedia featured topics The X-Files (season 8) +[2018-02-13T00:25:24.185] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:25:24.196] [INFO] cheese - inserting 1000 documents. first: Sakuramachi Tennō and last: Luis Armando Reynoso +[2018-02-13T00:25:24.211] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:25:24.265] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:25:24.287] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:25:24.440] [INFO] cheese - inserting 1000 documents. first: Herman Berlinski (composer, organist and musicologist) and last: ATCvet code QH03BB01 +[2018-02-13T00:25:24.469] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:25:24.497] [INFO] cheese - inserting 1000 documents. first: Compute Unified Device Architecture and last: Journal of international affairs +[2018-02-13T00:25:24.553] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:25:24.695] [INFO] cheese - inserting 1000 documents. first: Greja Kristen Jawi Wetan and last: Jonathan Brooks House +[2018-02-13T00:25:24.710] [INFO] cheese - inserting 1000 documents. first: ATC code H03BB02 and last: ATCvet code QJ01DB03 +[2018-02-13T00:25:24.720] [INFO] cheese - inserting 1000 documents. first: Category:New Saint Andrews College faculty and last: 185th New York State Legislature +[2018-02-13T00:25:24.733] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T00:25:24.743] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:25:24.763] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:25:24.833] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics The X-Files (season 8) good content and last: Monaville, Illinois +[2018-02-13T00:25:24.887] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:25:24.945] [INFO] cheese - inserting 1000 documents. first: ATC code J01DB04 and last: ATC code J06BB +[2018-02-13T00:25:24.980] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:25:25.049] [INFO] cheese - inserting 1000 documents. first: Geoff Richardson (rugby dual code) and last: Flatiron (volcano) +[2018-02-13T00:25:25.052] [INFO] cheese - inserting 1000 documents. first: Central Valley High School (Spokane Valley, Washington) and last: Category:British American Tobacco people +[2018-02-13T00:25:25.077] [INFO] cheese - inserting 1000 documents. first: Bloomfield School District (Indiana) and last: Template:User Scouts (UK) +[2018-02-13T00:25:25.085] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:25:25.093] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:25:25.157] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:25:25.175] [INFO] cheese - inserting 1000 documents. first: U.S.S. Bibb and last: Lougheed Town Centre station +[2018-02-13T00:25:25.237] [INFO] cheese - inserting 1000 documents. first: Katcha language and last: Category:Canadian French +[2018-02-13T00:25:25.238] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T00:25:25.274] [INFO] cheese - inserting 1000 documents. first: ATC code J06BB01 and last: Category:The Bedroom Philosopher albums +[2018-02-13T00:25:25.329] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:25:25.330] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:25:25.434] [INFO] cheese - inserting 1000 documents. first: Jane Thornton and last: Can toi +[2018-02-13T00:25:25.463] [INFO] cheese - inserting 1000 documents. first: Pale Green Triangle and last: F2222A +[2018-02-13T00:25:25.473] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:25:25.506] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:25:25.541] [INFO] cheese - inserting 1000 documents. first: ATC code L04AB and last: Wikipedia:Miscellany for deletion/User:Jase 17 +[2018-02-13T00:25:25.542] [INFO] cheese - inserting 1000 documents. first: File:LOGO-ST4.jpg and last: Westport Landing +[2018-02-13T00:25:25.571] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:25:25.594] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:25:25.601] [INFO] cheese - inserting 1000 documents. first: Isaac D'Israeli and last: Collier County, Florida +[2018-02-13T00:25:25.664] [INFO] cheese - inserting 1000 documents. first: Category:Guinean academics and last: Tennis and Ski Warehouse +[2018-02-13T00:25:25.677] [INFO] cheese - batch complete in: 1.518 secs +[2018-02-13T00:25:25.708] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:25:25.823] [INFO] cheese - inserting 1000 documents. first: ATCvet code QN02AF01 and last: ATCvet code QN05CM +[2018-02-13T00:25:25.829] [INFO] cheese - inserting 1000 documents. first: Ka-Tet and last: Too Much Too Little Too Late +[2018-02-13T00:25:25.839] [INFO] cheese - inserting 1000 documents. first: 2008 Presidential election and last: Empire Connection +[2018-02-13T00:25:25.852] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T00:25:25.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kamerhiphop.com and last: Peltophryne +[2018-02-13T00:25:25.922] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:25:25.975] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:25:25.999] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:25:26.020] [INFO] cheese - inserting 1000 documents. first: Gang saw and last: Quality Schools International +[2018-02-13T00:25:26.126] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:25:26.161] [INFO] cheese - inserting 1000 documents. first: 540 area code and last: Template:Lighthouses of Trinity House +[2018-02-13T00:25:26.244] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:25:26.356] [INFO] cheese - inserting 1000 documents. first: ATC code N05CM01 and last: Maskan Bank +[2018-02-13T00:25:26.389] [INFO] cheese - inserting 1000 documents. first: Łukasz Pawłowski and last: Meta di Sorrento +[2018-02-13T00:25:26.402] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:25:26.417] [INFO] cheese - inserting 1000 documents. first: Mohammad Halilula and last: Women and Girls Lead Global +[2018-02-13T00:25:26.451] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:25:26.474] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:25:26.545] [INFO] cheese - inserting 1000 documents. first: Mikhail Bernadski and last: Vail Lake +[2018-02-13T00:25:26.659] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:25:26.664] [INFO] cheese - inserting 1000 documents. first: Category:Relational database management systems and last: Template:ISO 3166 name CI-19 +[2018-02-13T00:25:26.702] [INFO] cheese - batch complete in: 0.3 secs +[2018-02-13T00:25:26.724] [INFO] cheese - inserting 1000 documents. first: Plesiatropha and last: Gw foote +[2018-02-13T00:25:26.800] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:25:26.870] [INFO] cheese - inserting 1000 documents. first: 1987 Australian Sports Car Championship and last: Disc form factors +[2018-02-13T00:25:26.927] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name CI-05 and last: Template:ISO 3166 name JO-MA +[2018-02-13T00:25:26.982] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:25:27.045] [INFO] cheese - inserting 1000 documents. first: File:BCWildlifeParklogo.gif and last: Bari Alphabet +[2018-02-13T00:25:27.030] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:25:27.081] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Co-op/Maximus2929 and last: Template:Did you know nominations/Nocomis platyrhynchus +[2018-02-13T00:25:27.094] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:25:27.167] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:25:27.231] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name JO-AQ and last: Template:ISO 3166 name PG-MBA +[2018-02-13T00:25:27.248] [INFO] cheese - inserting 1000 documents. first: Brookfield Township, LaSalle County, Illinois and last: Arena Football: Road to Glory +[2018-02-13T00:25:27.250] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:25:27.291] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:25:27.430] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name PG-MPL and last: Template:ISO 3166 name ES-BU +[2018-02-13T00:25:27.492] [INFO] cheese - batch complete in: 0.242 secs +[2018-02-13T00:25:27.546] [INFO] cheese - inserting 1000 documents. first: Lake Point Tower and last: Frank Slaughter +[2018-02-13T00:25:27.587] [INFO] cheese - inserting 1000 documents. first: Trine Bakke Rognmo and last: Wichita National Forest +[2018-02-13T00:25:27.614] [INFO] cheese - inserting 1000 documents. first: Category:1690s in Sweden and last: Milla, Illinois +[2018-02-13T00:25:27.624] [INFO] cheese - inserting 1000 documents. first: The Beach (novel) and last: Ferdinand V of Spain +[2018-02-13T00:25:27.651] [INFO] cheese - inserting 1000 documents. first: Circulatory system of insects and last: Va Va Voom (disambiguation) +[2018-02-13T00:25:27.658] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:25:27.682] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:25:27.764] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:25:27.767] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name ES-S and last: Template:ISO 3166 name GB-GLS +[2018-02-13T00:25:27.785] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:25:27.822] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T00:25:27.909] [INFO] cheese - inserting 1000 documents. first: Space Marine Predator and last: California's 31st State Senate district +[2018-02-13T00:25:27.909] [INFO] cheese - batch complete in: 2.232 secs +[2018-02-13T00:25:28.002] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:25:28.150] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name GB-GRE and last: ATCvet code QR05CB12 +[2018-02-13T00:25:28.182] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:25:28.246] [INFO] cheese - inserting 1000 documents. first: File:Living With Fibromyalgia (DVD cover).jpg and last: File:Addicted Tour.jpg +[2018-02-13T00:25:28.272] [INFO] cheese - inserting 1000 documents. first: File:Chapel123.jpg and last: Petrokimia Putra +[2018-02-13T00:25:28.293] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:25:28.334] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:25:28.375] [INFO] cheese - inserting 1000 documents. first: 2015 Toronto International Film Festival and last: Category:Trelleborgs FF templates +[2018-02-13T00:25:28.445] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:25:28.455] [INFO] cheese - inserting 1000 documents. first: Dollars & Sense and last: Exercise Deep Sabre +[2018-02-13T00:25:28.498] [INFO] cheese - inserting 1000 documents. first: Izačić and last: Wikipedia:Articles for deletion/Nene Thomas +[2018-02-13T00:25:28.533] [INFO] cheese - inserting 1000 documents. first: Ananas sativus and last: The pleasure paradox +[2018-02-13T00:25:28.546] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T00:25:28.531] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:25:28.634] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:25:28.785] [INFO] cheese - inserting 1000 documents. first: Gemma Mengual and last: A126 road (Great Britain) +[2018-02-13T00:25:28.836] [INFO] cheese - inserting 1000 documents. first: Katheryn Meaklim and last: Bors, Iran +[2018-02-13T00:25:28.850] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:25:28.966] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:25:29.134] [INFO] cheese - inserting 1000 documents. first: ATCvet code QS01HA and last: Plana, Bileća +[2018-02-13T00:25:29.153] [INFO] cheese - inserting 1000 documents. first: Category:Syrianska FC templates and last: Category:Films set in the United States Virgin Islands +[2018-02-13T00:25:29.219] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:25:29.270] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:25:29.290] [INFO] cheese - inserting 1000 documents. first: The paradox of hedonism and last: Jackson Kaujeua +[2018-02-13T00:25:29.383] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:25:29.392] [INFO] cheese - inserting 1000 documents. first: Charles Ross (British Army officer) and last: Acrolepiopsis chirapanthui +[2018-02-13T00:25:29.471] [INFO] cheese - inserting 1000 documents. first: A127 road (Great Britain) and last: Template:History of Belize +[2018-02-13T00:25:29.506] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:25:29.530] [INFO] cheese - inserting 1000 documents. first: Hungarianisation and last: White Esk +[2018-02-13T00:25:29.597] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:25:29.714] [INFO] cheese - inserting 1000 documents. first: Podgorje, Bileća and last: File:Ebony Eyes.jpg +[2018-02-13T00:25:29.718] [INFO] cheese - batch complete in: 1.172 secs +[2018-02-13T00:25:29.763] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:25:29.841] [INFO] cheese - inserting 1000 documents. first: Folk metal and last: Biot–Savart law +[2018-02-13T00:25:29.907] [INFO] cheese - inserting 1000 documents. first: 873 area code and last: Orion Cinema +[2018-02-13T00:25:29.910] [INFO] cheese - inserting 1000 documents. first: File:Statue of Queen Victoria, Rosalind Park, Bendigo, Victoria, Australia.jpg and last: N. Prabhakar +[2018-02-13T00:25:29.932] [INFO] cheese - batch complete in: 2.023 secs +[2018-02-13T00:25:29.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Washitaw Nation and last: A654 road (Great Britain) +[2018-02-13T00:25:29.955] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:25:29.973] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:25:29.978] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:25:30.017] [INFO] cheese - inserting 1000 documents. first: Center versus periphery and last: Hernando Ruiz de Alarcón +[2018-02-13T00:25:30.059] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:25:30.182] [INFO] cheese - inserting 1000 documents. first: Morgan Jones (New York) and last: Unknown Soldier (film) +[2018-02-13T00:25:30.227] [INFO] cheese - inserting 1000 documents. first: Library of Ashurbanipal and last: David W. Harper +[2018-02-13T00:25:30.242] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:25:30.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steve Burke and last: A396 road (Great Britain) +[2018-02-13T00:25:30.283] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:25:30.283] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:25:30.292] [INFO] cheese - inserting 1000 documents. first: Mavzuna Chorieva and last: The Great Smoky Mountains +[2018-02-13T00:25:30.323] [INFO] cheese - inserting 1000 documents. first: File:SchemingSchemers1956onesheet.jpg and last: File:Garbage The Chemicals RSD.png +[2018-02-13T00:25:30.335] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:25:30.368] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:25:30.373] [INFO] cheese - inserting 1000 documents. first: Andrew Charles Anderson and last: 1972 in Northern Ireland +[2018-02-13T00:25:30.417] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:25:30.570] [INFO] cheese - inserting 1000 documents. first: W. K. George and last: SS Greater Buffalo +[2018-02-13T00:25:30.573] [INFO] cheese - inserting 1000 documents. first: Klingonese language and last: A4020 road (Great Britain) +[2018-02-13T00:25:30.588] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 683 BC and last: Alexandr Shvedov +[2018-02-13T00:25:30.611] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:25:30.626] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:25:30.661] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:25:30.676] [INFO] cheese - inserting 1000 documents. first: Tournament Capital Center and last: I-376 Bus. +[2018-02-13T00:25:30.707] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:25:30.725] [INFO] cheese - inserting 1000 documents. first: Lovekraft and last: August 28,1898 +[2018-02-13T00:25:30.779] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:25:30.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject military history and last: Wikipedia:Articles for deletion/FUDD +[2018-02-13T00:25:30.823] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:25:30.951] [INFO] cheese - inserting 1000 documents. first: Joffa Smith and last: Category:Colonial forts in Rhode Island +[2018-02-13T00:25:30.981] [INFO] cheese - inserting 1000 documents. first: Drone flute and last: De Vasa's hexagonal chess +[2018-02-13T00:25:30.986] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:25:30.997] [INFO] cheese - inserting 1000 documents. first: Levakend and last: Portal:Arctic/Selected article/9 +[2018-02-13T00:25:31.010] [INFO] cheese - inserting 1000 documents. first: Birket and last: Louis the 20th +[2018-02-13T00:25:31.040] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:25:31.051] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:25:31.073] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:25:31.138] [INFO] cheese - inserting 1000 documents. first: Thaworn Senniam and last: Sugar shanty +[2018-02-13T00:25:31.177] [INFO] cheese - inserting 1000 documents. first: Taylor County, Florida and last: SOM +[2018-02-13T00:25:31.181] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:25:31.256] [INFO] cheese - batch complete in: 1.324 secs +[2018-02-13T00:25:31.440] [INFO] cheese - inserting 1000 documents. first: Template:Wofford Terriers football navbox and last: SpABdomain +[2018-02-13T00:25:31.476] [INFO] cheese - inserting 1000 documents. first: Minuscule 746 and last: M-protein +[2018-02-13T00:25:31.489] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:25:31.524] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2007 February 24 and last: Template:India Squad 1999 Cricket World Cup +[2018-02-13T00:25:31.557] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:25:31.571] [INFO] cheese - inserting 1000 documents. first: Louis Alphonse Gonzalve Victor Emmanuel Marc de Bourbon and last: Category:1750 establishments in Pennsylvania +[2018-02-13T00:25:31.593] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:25:31.602] [INFO] cheese - inserting 1000 documents. first: Template:SMUMustangsFBCoach and last: A6211 road (Great Britain) +[2018-02-13T00:25:31.642] [INFO] cheese - inserting 1000 documents. first: Desferrioxamine and last: Schofields, New South Wales +[2018-02-13T00:25:31.661] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:25:31.670] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:25:31.733] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:25:31.873] [INFO] cheese - inserting 1000 documents. first: Category:First Ladies of Zambia and last: File:TheNewBatmanAdventuresLogo.jpg +[2018-02-13T00:25:31.923] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:25:31.975] [INFO] cheese - inserting 1000 documents. first: George C. Read and last: 50th Regiment Infantry U.S. Colored Troops +[2018-02-13T00:25:31.990] [INFO] cheese - inserting 1000 documents. first: Raninder Singh and last: 2002 AFL Womens National Championships +[2018-02-13T00:25:32.028] [INFO] cheese - inserting 1000 documents. first: Malaysian expressway systems 6 and last: Guamal +[2018-02-13T00:25:32.057] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:25:32.063] [INFO] cheese - inserting 1000 documents. first: Washington's 15th Legislative District and last: Smith House (Bentonville, Arkansas) +[2018-02-13T00:25:32.068] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:25:32.089] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:25:32.137] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:25:32.249] [INFO] cheese - inserting 1000 documents. first: Wilhelm Normann and last: Istvan, Grof Tisza +[2018-02-13T00:25:32.325] [INFO] cheese - inserting 1000 documents. first: Quzan and last: Qal'eh-ye Mansuria +[2018-02-13T00:25:32.423] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:25:32.491] [INFO] cheese - inserting 1000 documents. first: Self-organizing map and last: Elliptical orbit +[2018-02-13T00:25:32.499] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:25:32.576] [INFO] cheese - inserting 1000 documents. first: 2003 AFL Womens National Championships and last: Template:1910 Helms Foundation NCAA Men's Basketball All-Americans +[2018-02-13T00:25:32.581] [INFO] cheese - batch complete in: 1.325 secs +[2018-02-13T00:25:32.631] [INFO] cheese - inserting 1000 documents. first: European historical fiction and last: Cumbria rail crash +[2018-02-13T00:25:32.646] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:25:32.661] [INFO] cheese - inserting 1000 documents. first: Opistognathus aurifons and last: Namanga (Tanzanian ward) +[2018-02-13T00:25:32.699] [INFO] cheese - inserting 1000 documents. first: Tetramorium pilosum and last: File:Five-More-Hours-Deorro-Chris-Brown.jpg +[2018-02-13T00:25:32.721] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:25:32.746] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:25:32.792] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:25:32.971] [INFO] cheese - inserting 1000 documents. first: Stevy Nzambe and last: Melaniparus cinerascens +[2018-02-13T00:25:33.041] [INFO] cheese - inserting 1000 documents. first: Punding and last: File:Virgin train at holyhead.jpg +[2018-02-13T00:25:33.049] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:25:33.135] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:25:33.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 June 24 and last: Anatoliy Nenartovich +[2018-02-13T00:25:33.297] [INFO] cheese - inserting 1000 documents. first: List of United States Supreme Court cases, volume 441 and last: Wikipedia:Featured article candidates/Google/archive2 +[2018-02-13T00:25:33.297] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:25:33.335] [INFO] cheese - inserting 1000 documents. first: Dene K'e language and last: Shinkawa Yua +[2018-02-13T00:25:33.348] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:25:33.381] [INFO] cheese - inserting 1000 documents. first: File:Both worlds 69.jpg and last: Tikunei Zohar +[2018-02-13T00:25:33.383] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:25:33.398] [INFO] cheese - inserting 1000 documents. first: Wild Days (song) and last: Relative survival rate +[2018-02-13T00:25:33.414] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:25:33.471] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:25:33.686] [INFO] cheese - inserting 1000 documents. first: OG RON C and last: Vecdaugava +[2018-02-13T00:25:33.733] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:25:33.739] [INFO] cheese - inserting 1000 documents. first: Aleksander Baumgardten and last: Samy naceri +[2018-02-13T00:25:33.747] [INFO] cheese - inserting 1000 documents. first: Category:2001 in South Africa and last: 2007 Canada Winter Games +[2018-02-13T00:25:33.765] [INFO] cheese - inserting 1000 documents. first: Category:2006 disestablishments in Wales and last: ETV+ +[2018-02-13T00:25:33.767] [INFO] cheese - inserting 1000 documents. first: File:Jodie Connor - Take You There.ogg and last: Ramadhan Saputra +[2018-02-13T00:25:33.795] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:25:33.804] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:25:33.809] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:25:33.825] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:25:33.907] [INFO] cheese - inserting 1000 documents. first: Indochinese serow and last: File:Vahlherberternst.jpg +[2018-02-13T00:25:33.954] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:25:33.990] [INFO] cheese - inserting 1000 documents. first: Alcyone and last: Furies +[2018-02-13T00:25:34.109] [INFO] cheese - batch complete in: 1.528 secs +[2018-02-13T00:25:34.209] [INFO] cheese - inserting 1000 documents. first: K 14 and last: Mash It Up +[2018-02-13T00:25:34.255] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:25:34.257] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Australian Women's Weekly Children's Birthday Cake Book and last: Wikipedia:Articles for deletion/FEU Advocate +[2018-02-13T00:25:34.303] [INFO] cheese - inserting 1000 documents. first: WYBN and last: Category:National symbols of Bulgaria +[2018-02-13T00:25:34.305] [INFO] cheese - inserting 1000 documents. first: Tango Rosario and last: Anglo-Russian invasion of North Holland in 1799 +[2018-02-13T00:25:34.319] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:25:34.357] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:25:34.362] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:25:34.373] [INFO] cheese - inserting 1000 documents. first: Samir Amin and last: METAL GEAR SOLID 2 SONS OF LIBIRTY +[2018-02-13T00:25:34.442] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:25:34.468] [INFO] cheese - inserting 1000 documents. first: Pat Yisrael and last: Heinz Valk +[2018-02-13T00:25:34.514] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:25:34.561] [INFO] cheese - inserting 1000 documents. first: Killing Me Softly (novel) and last: Superconducting Radio Frequency +[2018-02-13T00:25:34.611] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:25:34.728] [INFO] cheese - inserting 1000 documents. first: Xtreem and last: David Mitchell (admiral) +[2018-02-13T00:25:34.737] [INFO] cheese - inserting 1000 documents. first: Carisa Bianchi and last: Vitor José +[2018-02-13T00:25:34.765] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:25:34.791] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:25:34.815] [INFO] cheese - inserting 1000 documents. first: Category:Bridges completed in 1720 and last: Bass (vocal range) +[2018-02-13T00:25:34.871] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:25:34.920] [INFO] cheese - inserting 1000 documents. first: Crawford Auto-Aviation Museum and last: Laura N. Chick +[2018-02-13T00:25:34.964] [INFO] cheese - inserting 1000 documents. first: Criticism of Western Culture and last: Deep femoral veins +[2018-02-13T00:25:34.979] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:25:34.995] [INFO] cheese - inserting 1000 documents. first: Software patching and last: Thánh Gióng +[2018-02-13T00:25:35.040] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:25:35.076] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:25:35.316] [INFO] cheese - inserting 1000 documents. first: Template:Lectins and last: Hornbill Films +[2018-02-13T00:25:35.387] [INFO] cheese - inserting 1000 documents. first: Alessandro Ferrara and last: Northwest Region, Cameroon +[2018-02-13T00:25:35.405] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:25:35.504] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:25:35.525] [INFO] cheese - inserting 1000 documents. first: Winter hazel and last: Parti Bersatu Rakyat Jelata Sabah +[2018-02-13T00:25:35.728] [INFO] cheese - inserting 1000 documents. first: Hipponax and last: Dom Pedro II +[2018-02-13T00:25:35.774] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T00:25:36.030] [INFO] cheese - inserting 1000 documents. first: Category:2015 in New Caledonia and last: Leo (ThunderCats) +[2018-02-13T00:25:36.113] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles incorporating an MLCC with a warning and last: Costas N. Papanicolas +[2018-02-13T00:25:36.187] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable software release/Firefox and last: Vallejo Flour Mill +[2018-02-13T00:25:36.207] [INFO] cheese - batch complete in: 2.098 secs +[2018-02-13T00:25:36.310] [INFO] cheese - batch complete in: 1.27 secs +[2018-02-13T00:25:36.421] [INFO] cheese - batch complete in: 1.345 secs +[2018-02-13T00:25:36.644] [INFO] cheese - batch complete in: 1.665 secs +[2018-02-13T00:25:36.722] [INFO] cheese - inserting 1000 documents. first: Charlotte Champe Stearns and last: File:Lagos highway.jpg +[2018-02-13T00:25:36.780] [INFO] cheese - batch complete in: 1.375 secs +[2018-02-13T00:25:36.941] [INFO] cheese - inserting 1000 documents. first: Template:1923 PCC football standings and last: Los Premios MTV Latinoamérica for Best New Artist — International +[2018-02-13T00:25:37.026] [INFO] cheese - batch complete in: 1.522 secs +[2018-02-13T00:25:37.062] [INFO] cheese - inserting 1000 documents. first: Category:Yugoslav war crimes and last: Wave set-down +[2018-02-13T00:25:37.092] [INFO] cheese - inserting 1000 documents. first: Saeculo exeunte and last: Båstad tennisstadion +[2018-02-13T00:25:37.094] [INFO] cheese - inserting 1000 documents. first: Robert M. Wolterstorff and last: Bryan Keith Holland +[2018-02-13T00:25:37.100] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:25:37.160] [INFO] cheese - batch complete in: 1.385 secs +[2018-02-13T00:25:37.157] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:25:37.267] [INFO] cheese - inserting 1000 documents. first: Karaga District and last: Wikipedia:Featured article candidates/Liberal Party (Utah) +[2018-02-13T00:25:37.311] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:25:37.328] [INFO] cheese - inserting 1000 documents. first: Smirne - Southern Zone, Morocco and last: Small crown chip +[2018-02-13T00:25:37.392] [INFO] cheese - inserting 1000 documents. first: Helicella bierzona and last: The Best Job in the World (advertising) +[2018-02-13T00:25:37.393] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:25:37.448] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:25:37.542] [INFO] cheese - inserting 1000 documents. first: Najafi, Lorestan and last: Hacı Ahmed Muhiddin Piri +[2018-02-13T00:25:37.599] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:25:37.607] [INFO] cheese - inserting 1000 documents. first: Bozuretown, New Jersey and last: Chevalierella congoensis +[2018-02-13T00:25:37.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Business and economics articles by quality/28 and last: Mineapolis +[2018-02-13T00:25:37.650] [INFO] cheese - inserting 1000 documents. first: Quinuclidines and last: Wikipedia:Articles for deletion/Robert V. Somers +[2018-02-13T00:25:37.671] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:25:37.759] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:25:37.803] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:25:37.899] [INFO] cheese - inserting 1000 documents. first: Johann Radetzky and last: Template:Latest preview software release/Apache OpenOffice +[2018-02-13T00:25:37.953] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:25:38.002] [INFO] cheese - inserting 1000 documents. first: New Mexican rubber plant and last: Wújí +[2018-02-13T00:25:38.017] [INFO] cheese - inserting 1000 documents. first: Template:Time zones of Australia labeled and last: Na Yeon Choi +[2018-02-13T00:25:38.045] [INFO] cheese - inserting 1000 documents. first: Saint Kitts and Nevis/Geography and last: Music notation +[2018-02-13T00:25:38.057] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:25:38.069] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:25:38.082] [INFO] cheese - inserting 1000 documents. first: Estádio do Tafe and last: British Academy Video Games Awards +[2018-02-13T00:25:38.125] [INFO] cheese - inserting 1000 documents. first: True Colors (TSR episode) and last: Jan F. E. Celliers +[2018-02-13T00:25:38.128] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:25:38.141] [INFO] cheese - batch complete in: 1.934 secs +[2018-02-13T00:25:38.185] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:25:38.228] [INFO] cheese - inserting 1000 documents. first: Browserless and last: Hans Hoßfeld +[2018-02-13T00:25:38.287] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:25:38.360] [INFO] cheese - inserting 1000 documents. first: Julie of the Wolves and last: Biscotasing, ontario +[2018-02-13T00:25:38.363] [INFO] cheese - inserting 1000 documents. first: Turje, Slovenia and last: Abdelhak Aatkani +[2018-02-13T00:25:38.398] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:25:38.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/2018 and last: Category:1990s independent films +[2018-02-13T00:25:38.416] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:25:38.459] [INFO] cheese - inserting 1000 documents. first: Category:Plays by John Millington Synge and last: Order of Ennead (album) +[2018-02-13T00:25:38.465] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:25:38.522] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:25:38.562] [INFO] cheese - inserting 1000 documents. first: Carl E. Mapes and last: Fashionista (television show) +[2018-02-13T00:25:38.596] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:25:38.622] [INFO] cheese - inserting 1000 documents. first: Cornelius O'Leary and last: Masonic Building (Newtonville) +[2018-02-13T00:25:38.678] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:25:38.804] [INFO] cheese - inserting 1000 documents. first: Akhmed Avtorkhanov and last: Lochty +[2018-02-13T00:25:38.843] [INFO] cheese - inserting 1000 documents. first: Fancy Dress (film) and last: Template:WP Brunei +[2018-02-13T00:25:38.852] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:25:38.868] [INFO] cheese - inserting 1000 documents. first: Alexi Murdoch and last: Joseph-Désiré Job +[2018-02-13T00:25:38.896] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:25:38.915] [INFO] cheese - inserting 1000 documents. first: Michigan Madness and last: Kraszków +[2018-02-13T00:25:38.949] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:25:38.956] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:25:39.049] [INFO] cheese - inserting 1000 documents. first: Template:Cities and towns in Neu-Ulm (district) and last: Template:Nsb next local +[2018-02-13T00:25:39.057] [INFO] cheese - inserting 1000 documents. first: Sniglet and last: Antiochus I Soter +[2018-02-13T00:25:39.091] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:25:39.121] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T00:25:39.169] [INFO] cheese - inserting 1000 documents. first: Brooding patch and last: Louis de St Allouarn +[2018-02-13T00:25:39.212] [INFO] cheese - inserting 1000 documents. first: Arrakyul and last: Kruplin-Piaski +[2018-02-13T00:25:39.243] [INFO] cheese - inserting 1000 documents. first: Greeley (surname) and last: Victor Adetunji Haffner +[2018-02-13T00:25:39.248] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:25:39.266] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:25:39.311] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:25:39.331] [INFO] cheese - inserting 1000 documents. first: Lochtee and last: Charles James (rugby league) +[2018-02-13T00:25:39.390] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:25:39.401] [INFO] cheese - inserting 1000 documents. first: Western Hedgehog and last: 1927 Pulitzer Prize +[2018-02-13T00:25:39.447] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:25:39.493] [INFO] cheese - inserting 1000 documents. first: Pray for Me (Mobb Deep song) and last: Wikipedia:Articles for deletion/Wallenburg Set +[2018-02-13T00:25:39.540] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:25:39.589] [INFO] cheese - inserting 1000 documents. first: The Jacksons – An American Dream and last: Omar Mohammed Khalifh +[2018-02-13T00:25:39.644] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:25:39.655] [INFO] cheese - inserting 1000 documents. first: File:Him - Rupert Holmes.jpg and last: Stathmodera densesulcata +[2018-02-13T00:25:39.671] [INFO] cheese - inserting 1000 documents. first: Von Stackelberg and last: Number-one albums of 2006 (Australia) +[2018-02-13T00:25:39.695] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:25:39.728] [INFO] cheese - inserting 1000 documents. first: Diego Del Real and last: Erik Svensson (Malmö FF footballer 1943–1944) +[2018-02-13T00:25:39.732] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:25:39.763] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:25:39.889] [INFO] cheese - inserting 1000 documents. first: Levin Schucking and last: Mauno kling +[2018-02-13T00:25:39.925] [INFO] cheese - inserting 1000 documents. first: Category:Singaporean gamblers and last: Electoral district of Cootamundra +[2018-02-13T00:25:39.943] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:25:39.950] [INFO] cheese - inserting 1000 documents. first: Nowa Wieś, Gmina Poddębice and last: Wólka Bankowa +[2018-02-13T00:25:39.961] [INFO] cheese - inserting 1000 documents. first: Famous gay lesbian and bisexual people and last: Ethal +[2018-02-13T00:25:39.990] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:25:40.041] [INFO] cheese - inserting 1000 documents. first: Stathmodera flavescens and last: Bahria College Karachi NORE I +[2018-02-13T00:25:40.057] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T00:25:40.089] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:25:40.187] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:25:40.199] [INFO] cheese - inserting 1000 documents. first: Honda XL350R and last: Smartlynx Airlines +[2018-02-13T00:25:40.236] [INFO] cheese - inserting 1000 documents. first: Sound Wave (Stanley Huang album) and last: Bradypterus timoriensis +[2018-02-13T00:25:40.263] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:25:40.306] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:25:40.506] [INFO] cheese - inserting 1000 documents. first: Paul Bley/NHØP and last: File:Madhk1.jpg +[2018-02-13T00:25:40.512] [INFO] cheese - inserting 1000 documents. first: Wólka Włościańska and last: Stefanów Ruszkowski +[2018-02-13T00:25:40.521] [INFO] cheese - inserting 1000 documents. first: Missa Sicca and last: Puberty (Naked Brothers Band Episode) +[2018-02-13T00:25:40.549] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:25:40.550] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:25:40.578] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:25:40.614] [INFO] cheese - inserting 1000 documents. first: Cathedral of the Holy Spirit, Palmerston North and last: 1991 Grand Prix (snooker) +[2018-02-13T00:25:40.651] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:25:40.657] [INFO] cheese - inserting 1000 documents. first: Template:Seeds explanation/doc and last: File:CSKA Moscow.svg +[2018-02-13T00:25:40.683] [INFO] cheese - inserting 1000 documents. first: 2003 Mercedes-Benz Cup – Doubles and last: Luigi Mattei +[2018-02-13T00:25:40.686] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:25:40.731] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:25:40.886] [INFO] cheese - inserting 1000 documents. first: Anubal and last: Susana Giménez +[2018-02-13T00:25:40.910] [INFO] cheese - inserting 1000 documents. first: Kohniconus janowskyae and last: Schaffner's wattle +[2018-02-13T00:25:40.916] [INFO] cheese - inserting 1000 documents. first: File:Kodakumi03-ddd.01.jpg and last: Portuguese Volleyball League A2 +[2018-02-13T00:25:40.942] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:25:40.943] [INFO] cheese - inserting 1000 documents. first: Littleham and last: Janice Brown (superintendent) +[2018-02-13T00:25:40.950] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T00:25:40.951] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:25:40.962] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Gaziantep and last: File:Barefoot Bay Beach.jpg +[2018-02-13T00:25:40.999] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:25:41.014] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:25:41.148] [INFO] cheese - inserting 1000 documents. first: Chartreuse of Dijon and last: Henry II, King of France +[2018-02-13T00:25:41.152] [INFO] cheese - inserting 1000 documents. first: Mathilda (novella) and last: File:Saintrophimetympanum.jpg +[2018-02-13T00:25:41.183] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:25:41.204] [INFO] cheese - inserting 1000 documents. first: State Committee for Scientific Research and last: Tutu (Egyptian deity) +[2018-02-13T00:25:41.217] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:25:41.237] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:25:41.305] [INFO] cheese - inserting 1000 documents. first: HSC Jaume II and last: SP-95 +[2018-02-13T00:25:41.335] [INFO] cheese - inserting 1000 documents. first: Mächtig and last: Barton Baronets +[2018-02-13T00:25:41.366] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:25:41.424] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:25:41.434] [INFO] cheese - inserting 1000 documents. first: Category:1935 in India and last: File:Kora-fm-logo.jpg +[2018-02-13T00:25:41.528] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:25:41.638] [INFO] cheese - inserting 1000 documents. first: Thomas Murray Hall and last: Category:1731 in Christianity +[2018-02-13T00:25:41.686] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:25:41.781] [INFO] cheese - inserting 1000 documents. first: Ahmed Ali Jaber and last: Category:Pop video albums +[2018-02-13T00:25:41.864] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:25:41.876] [INFO] cheese - inserting 1000 documents. first: Soghain and last: São Vicente, Brazil +[2018-02-13T00:25:41.965] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:25:42.043] [INFO] cheese - inserting 1000 documents. first: Bass Baronets and last: Channel 1 (Syria) +[2018-02-13T00:25:42.044] [INFO] cheese - inserting 1000 documents. first: SP-97 and last: Tonia Joy +[2018-02-13T00:25:42.120] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:25:42.127] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:25:42.138] [INFO] cheese - inserting 1000 documents. first: Category:17th century in Ireland and last: Motet in D, "Ave verum Corpus" +[2018-02-13T00:25:42.166] [INFO] cheese - inserting 1000 documents. first: Nina Frausing-Pedersen and last: Avraham Negusa +[2018-02-13T00:25:42.211] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:25:42.236] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:25:42.338] [INFO] cheese - inserting 1000 documents. first: History of music and last: Powell Doctrine +[2018-02-13T00:25:42.352] [INFO] cheese - inserting 1000 documents. first: Category:Dance music video albums and last: Category:Groups that resisted the Greek military junta of 1967-1974 +[2018-02-13T00:25:42.393] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:25:42.444] [INFO] cheese - batch complete in: 1.494 secs +[2018-02-13T00:25:42.455] [INFO] cheese - inserting 1000 documents. first: 2012 FIA WTCC Race of Morocco and last: Ankole Mole Rat +[2018-02-13T00:25:42.482] [INFO] cheese - inserting 1000 documents. first: Sinfonia Finlandia Jyvaskyla and last: Kōko Tsurumi +[2018-02-13T00:25:42.484] [INFO] cheese - inserting 1000 documents. first: Barren Island, Andaman Islands and last: 2.6.13 Linux kernel +[2018-02-13T00:25:42.495] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:25:42.519] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:25:42.559] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:25:42.613] [INFO] cheese - inserting 1000 documents. first: Tzu Chi Malaysia and last: Portal:Graffiti/Intro +[2018-02-13T00:25:42.670] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:25:42.709] [INFO] cheese - inserting 1000 documents. first: Category:Battles involving the Kingdom of Imereti and last: Conor O'Brien (musician) +[2018-02-13T00:25:42.779] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:25:42.804] [INFO] cheese - inserting 1000 documents. first: CADE COURTLEY and last: Saint Kitts and Nevis at the 2009 World Championships in Athletics +[2018-02-13T00:25:42.860] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:25:42.886] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Decorah Bald Eagles and last: Spotted Snow Flat +[2018-02-13T00:25:42.931] [INFO] cheese - inserting 1000 documents. first: Category:Gates of Beijing and last: B. V. S. Ravi +[2018-02-13T00:25:42.935] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:25:42.982] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:25:43.017] [INFO] cheese - inserting 1000 documents. first: Sion Hillock Fort and last: Giovanni Comisso +[2018-02-13T00:25:43.059] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:25:43.063] [INFO] cheese - inserting 1000 documents. first: Tajikistan copyright law and last: Category:People from Kaliningrad +[2018-02-13T00:25:43.099] [INFO] cheese - inserting 1000 documents. first: File:Contraband-1980-poster.jpg and last: McVaugh's pine +[2018-02-13T00:25:43.111] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:25:43.134] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:25:43.158] [INFO] cheese - inserting 1000 documents. first: Dark-Edged Snow Flat and last: File:Rocky 1981.JPG +[2018-02-13T00:25:43.188] [INFO] cheese - batch complete in: 0.253 secs +[2018-02-13T00:25:43.251] [INFO] cheese - inserting 1000 documents. first: File:Thai Express (Canada) logo.svg and last: Asch's Conformity Experiment +[2018-02-13T00:25:43.264] [INFO] cheese - inserting 1000 documents. first: Lars Fredrick Nilson and last: Template:South Korea baseball roster 2008 Summer Olympics +[2018-02-13T00:25:43.281] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:25:43.305] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:25:43.396] [INFO] cheese - inserting 1000 documents. first: Alvin Plantinga and last: Xilonen +[2018-02-13T00:25:43.405] [INFO] cheese - inserting 1000 documents. first: 爆米花夏季棒球聯盟 and last: Çukuryurt +[2018-02-13T00:25:43.432] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:25:43.444] [INFO] cheese - inserting 1000 documents. first: Template:Cities and towns in Borken (district) and last: Zahir Howaida +[2018-02-13T00:25:43.476] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T00:25:43.486] [INFO] cheese - inserting 1000 documents. first: Quadratic acid and last: File:Unity Larry Young.jpg +[2018-02-13T00:25:43.507] [INFO] cheese - inserting 1000 documents. first: File:Octane Trends.jpg and last: Tagetes glandulosa +[2018-02-13T00:25:43.527] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:25:43.550] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:25:43.577] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:25:43.658] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in Wisconsin and last: Joseph Raymond Sarnoski +[2018-02-13T00:25:43.687] [INFO] cheese - inserting 1000 documents. first: Devil's Hole and last: Cta +[2018-02-13T00:25:43.716] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:25:43.736] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:25:43.857] [INFO] cheese - inserting 1000 documents. first: Design to cost and last: Category:Sportspeople in Kristianstad by club or team +[2018-02-13T00:25:43.892] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:25:43.902] [INFO] cheese - inserting 1000 documents. first: Tagetes porophyllum and last: Pogorelec +[2018-02-13T00:25:43.953] [INFO] cheese - inserting 1000 documents. first: Route 23 (MTA Maryland) and last: Geoff Hoyle +[2018-02-13T00:25:43.960] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:25:44.006] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:25:44.045] [INFO] cheese - inserting 1000 documents. first: Crash the boards and last: Sweating sickness (cattle) +[2018-02-13T00:25:44.093] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:25:44.191] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/John F. Long Pool and last: Bjelke-Petersen family +[2018-02-13T00:25:44.197] [INFO] cheese - inserting 1000 documents. first: Mandamus (disambiguation) and last: Esterka, Łódź Voivodeship +[2018-02-13T00:25:44.234] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople in Halmstad by club or team and last: Holoreta rubicunda +[2018-02-13T00:25:44.238] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:25:44.245] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:25:44.285] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:25:44.305] [INFO] cheese - inserting 1000 documents. first: File:Wade michael page police handout.png and last: Ayaştürkmenli, Mersin +[2018-02-13T00:25:44.364] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:25:44.449] [INFO] cheese - inserting 1000 documents. first: Recency and last: 1994–95 Tottenham Hotspur F.C. season +[2018-02-13T00:25:44.486] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:25:44.595] [INFO] cheese - inserting 1000 documents. first: Category:Azonto and last: Johann Martin Boltzius +[2018-02-13T00:25:44.691] [INFO] cheese - inserting 1000 documents. first: Transportation in alaska and last: Boat Harbour, New South Wales +[2018-02-13T00:25:44.708] [INFO] cheese - inserting 1000 documents. first: Category:Scotch-Irish American history and last: Austin 25/30 +[2018-02-13T00:25:44.755] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:25:44.759] [INFO] cheese - inserting 1000 documents. first: Franciszkany and last: Krzyż +[2018-02-13T00:25:44.810] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:25:44.814] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:25:44.843] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T00:25:44.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Royal Mara Safari Lodge (2nd nomination) and last: Meditation in Health Science +[2018-02-13T00:25:44.940] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:25:44.989] [INFO] cheese - inserting 1000 documents. first: Bradleja and last: She Lives! +[2018-02-13T00:25:45.046] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:25:45.103] [INFO] cheese - inserting 1000 documents. first: Chicomecoatl and last: Polk County, Texas +[2018-02-13T00:25:45.134] [INFO] cheese - inserting 1000 documents. first: Antony James and last: Wikipedia:United States Education Program/Courses/Brain and Behavior (Lisa Lu) +[2018-02-13T00:25:45.136] [INFO] cheese - inserting 1000 documents. first: Krzyż, Łódź Voivodeship and last: Katsiaryna Muliuk +[2018-02-13T00:25:45.170] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:25:45.176] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:25:45.179] [INFO] cheese - inserting 1000 documents. first: Ditrigona inconspicua and last: Template:Did you know nominations/Every Last Child +[2018-02-13T00:25:45.191] [INFO] cheese - batch complete in: 1.715 secs +[2018-02-13T00:25:45.252] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:25:45.257] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Adore (album)/archive1 and last: Rally for the Progressive Alternative +[2018-02-13T00:25:45.313] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:25:45.341] [INFO] cheese - inserting 1000 documents. first: Stopce and last: Srpska Kuća +[2018-02-13T00:25:45.384] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:25:45.547] [INFO] cheese - inserting 1000 documents. first: Category:Footballers in Montenegro and last: Koide Ichijūrō +[2018-02-13T00:25:45.575] [INFO] cheese - inserting 1000 documents. first: Maryland Heights Expressway and last: Category:1931 in Mexican sports +[2018-02-13T00:25:45.582] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:25:45.599] [INFO] cheese - inserting 1000 documents. first: Plac Wilsona (metro station) and last: The Black Superman +[2018-02-13T00:25:45.619] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:25:45.630] [INFO] cheese - inserting 1000 documents. first: Giorvis Duvergel and last: Template:Fb competition 2008-09 FA Youth Cup +[2018-02-13T00:25:45.648] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:25:45.671] [INFO] cheese - inserting 1000 documents. first: Basotho Congress Party and last: Turkish Foreign Ministry +[2018-02-13T00:25:45.687] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:25:45.717] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:25:45.928] [INFO] cheese - inserting 1000 documents. first: Starac and last: Recognition of states +[2018-02-13T00:25:45.939] [INFO] cheese - inserting 1000 documents. first: Famous in Love and last: Category:Hotels in Gilgit-Baltistan +[2018-02-13T00:25:45.964] [INFO] cheese - inserting 1000 documents. first: Get Tough: The Best of the Del-Lords and last: Straža, Straža +[2018-02-13T00:25:45.962] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:25:45.986] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:25:46.010] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:25:46.064] [INFO] cheese - inserting 1000 documents. first: File:Logo trombi.png and last: Leopoldów, Łęczna County +[2018-02-13T00:25:46.084] [INFO] cheese - inserting 1000 documents. first: NPEC and last: Southern pigmy rattlesnake +[2018-02-13T00:25:46.108] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:25:46.116] [INFO] cheese - inserting 1000 documents. first: Black Superman and last: Alburwic +[2018-02-13T00:25:46.142] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:25:46.188] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:25:46.325] [INFO] cheese - inserting 1000 documents. first: Jenifer Benitez and last: Angel Mullera +[2018-02-13T00:25:46.343] [INFO] cheese - inserting 1000 documents. first: Category:Factory Records artists and last: Morgny-la-Pommeraye, France +[2018-02-13T00:25:46.349] [INFO] cheese - inserting 1000 documents. first: Prathista and last: Shibei Tuhua +[2018-02-13T00:25:46.362] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:25:46.394] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:25:46.410] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:25:46.450] [INFO] cheese - inserting 1000 documents. first: False etymologies and last: Category:Victims of aviation accidents or incidents in Mali +[2018-02-13T00:25:46.488] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:25:46.543] [INFO] cheese - inserting 1000 documents. first: Sacerdotal state and last: Rooks Creek Township, Livingston County, Illinois +[2018-02-13T00:25:46.596] [INFO] cheese - inserting 1000 documents. first: Cliff Robinson (artist) and last: Virchow-Seckel syndrome +[2018-02-13T00:25:46.596] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:25:46.655] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:25:46.747] [INFO] cheese - inserting 1000 documents. first: Saint-Martin-du-Vivier, France and last: The Two of Us +[2018-02-13T00:25:46.787] [INFO] cheese - inserting 1000 documents. first: These Electric Pages Have Been Unplugged and last: Wikipedia:Meetup/Hobart/2 +[2018-02-13T00:25:46.793] [INFO] cheese - inserting 1000 documents. first: Qujiang Hakka-Shibei Shaoguan Tuhua language and last: Portal:Trains/Did you know/April 2015 +[2018-02-13T00:25:46.794] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:25:46.813] [INFO] cheese - inserting 1000 documents. first: Perła and last: Klimkówka +[2018-02-13T00:25:46.835] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:25:46.838] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:25:46.857] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:25:47.016] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2007 March 1 and last: Battle of Goito +[2018-02-13T00:25:47.084] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:25:47.145] [INFO] cheese - inserting 1000 documents. first: Surubí and last: Rigolets +[2018-02-13T00:25:47.194] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:25:47.254] [INFO] cheese - inserting 1000 documents. first: Javier Aguirre (director) and last: Category:Iowa politicians convicted of crimes +[2018-02-13T00:25:47.259] [INFO] cheese - inserting 1000 documents. first: Derek Theler and last: Pozhoga +[2018-02-13T00:25:47.263] [INFO] cheese - inserting 1000 documents. first: Wohyń and last: File:Boca-logo.jpg +[2018-02-13T00:25:47.270] [INFO] cheese - inserting 1000 documents. first: Template:S-line/TER Nord-Pas-de-Calais left/21 and last: File:Skank Siderado.jpg +[2018-02-13T00:25:47.308] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:25:47.310] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:25:47.318] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:25:47.355] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:25:47.396] [INFO] cheese - inserting 1000 documents. first: Pecos County, Texas and last: Port Laoise +[2018-02-13T00:25:47.396] [INFO] cheese - inserting 1000 documents. first: Lincoln County School District and last: Murcia (autonomous community) +[2018-02-13T00:25:47.430] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:25:47.507] [INFO] cheese - batch complete in: 2.316 secs +[2018-02-13T00:25:47.531] [INFO] cheese - inserting 1000 documents. first: Margaret II of Flanders and last: File:Tuliptree Sign.jpg +[2018-02-13T00:25:47.580] [INFO] cheese - inserting 1000 documents. first: File:Trouble with the Curve Poster.jpg and last: Crofts Baronets +[2018-02-13T00:25:47.570] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:25:47.612] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:25:47.628] [INFO] cheese - inserting 1000 documents. first: Kamienica, Limanowa County and last: Wola Wereszczyńska +[2018-02-13T00:25:47.645] [INFO] cheese - inserting 1000 documents. first: Ma Fu-hsiang and last: Saša Božičič +[2018-02-13T00:25:47.669] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:25:47.694] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:25:47.794] [INFO] cheese - inserting 1000 documents. first: Petit Computer 3 and last: Lamb succory +[2018-02-13T00:25:47.814] [INFO] cheese - inserting 1000 documents. first: The Model and the Star and last: Nayar clan +[2018-02-13T00:25:47.840] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:25:47.865] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:25:47.879] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Takes America/Waldwick/2012 and last: Mackintosh Baronets +[2018-02-13T00:25:47.910] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:25:47.946] [INFO] cheese - inserting 1000 documents. first: Hevaahulhudhoo and last: The Last Days +[2018-02-13T00:25:48.016] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:25:48.039] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Łabowa and last: Iran Aseman Airlines Flight 6875 +[2018-02-13T00:25:48.091] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Jay Joyce and last: Category:1932 in gymnastics +[2018-02-13T00:25:48.091] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:25:48.126] [INFO] cheese - batch complete in: 0.216 secs +[2018-02-13T00:25:48.166] [INFO] cheese - inserting 1000 documents. first: Caracul and last: Omair Ahmad +[2018-02-13T00:25:48.170] [INFO] cheese - inserting 1000 documents. first: Cricketvine and last: Dr Mohammed Ibrahim +[2018-02-13T00:25:48.226] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:25:48.240] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:25:48.404] [INFO] cheese - inserting 1000 documents. first: Off-Off Broadway and last: SvR 2007 +[2018-02-13T00:25:48.483] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:25:48.618] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Lockheed Leamington and last: Template:Essays in a nutshell +[2018-02-13T00:25:48.661] [INFO] cheese - inserting 1000 documents. first: Przezwody, Lesser Poland Voivodeship and last: Wikipedia:Featured list candidates/List of numbered highways in Washington +[2018-02-13T00:25:48.672] [INFO] cheese - inserting 1000 documents. first: Dr. Mohammad Ibrahim and last: Porsche PFM N03 +[2018-02-13T00:25:48.695] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:25:48.754] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:25:48.760] [INFO] cheese - inserting 1000 documents. first: Vermont Square, Los Angeles and last: File:Engineer bridge demolition (Korean War).jpg +[2018-02-13T00:25:48.817] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:25:48.958] [INFO] cheese - inserting 1000 documents. first: Category:Pompilidae and last: Stork margarine +[2018-02-13T00:25:48.978] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T00:25:49.020] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:25:49.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Signposts and last: Mary Swander writer +[2018-02-13T00:25:49.304] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:25:49.366] [INFO] cheese - inserting 1000 documents. first: File:Somji-small.jpg and last: Groń, Tatra County +[2018-02-13T00:25:49.366] [INFO] cheese - inserting 1000 documents. first: International Day of Happiness and last: 2012-13 Texas Longhorns men's basketball team +[2018-02-13T00:25:49.416] [INFO] cheese - inserting 1000 documents. first: Ralph Peter Goldston and last: Now That We're Men +[2018-02-13T00:25:49.441] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:25:49.458] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:25:49.489] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:25:49.664] [INFO] cheese - inserting 1000 documents. first: Squadron vice-admiral and last: Economic Development in Schenectady New York +[2018-02-13T00:25:49.757] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:25:49.877] [INFO] cheese - inserting 1000 documents. first: Pontifical Bolivarian University and last: BBC Wildlife (magazine) +[2018-02-13T00:25:49.934] [INFO] cheese - inserting 1000 documents. first: Hensley Township, Champaign County, Illinois and last: File:Tinkgi2me500.JPG +[2018-02-13T00:25:49.977] [INFO] cheese - inserting 1000 documents. first: Chac Uayab Xoc and last: Crofton Park, London, England +[2018-02-13T00:25:49.976] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T00:25:50.043] [INFO] cheese - inserting 1000 documents. first: Members of the Western Australian Legislative Council, 1989–1993 and last: Lioré et Olivier LéO 21 +[2018-02-13T00:25:50.071] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:25:50.074] [INFO] cheese - inserting 1000 documents. first: Thalia Mara and last: Sturnira sorianoi +[2018-02-13T00:25:50.080] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:25:50.127] [INFO] cheese - inserting 1000 documents. first: Category:Football at the 1964 Summer Olympics and last: Ministere Francais de l’Education Nationale +[2018-02-13T00:25:50.153] [INFO] cheese - batch complete in: 2.646 secs +[2018-02-13T00:25:50.154] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:25:50.203] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:25:50.370] [INFO] cheese - inserting 1000 documents. first: John Lawes and last: 56th Brigade (disambiguation) +[2018-02-13T00:25:50.433] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:25:50.456] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Category-article-count and last: Jarosławice, Świętokrzyskie Voivodeship +[2018-02-13T00:25:50.494] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:25:50.496] [INFO] cheese - inserting 1000 documents. first: Kalateh-ye Molla, Meyami and last: Miltiadis +[2018-02-13T00:25:50.535] [INFO] cheese - inserting 1000 documents. first: Federal Tax Identification Number and last: Category:Canadian university and college rectors +[2018-02-13T00:25:50.566] [INFO] cheese - inserting 1000 documents. first: Amanda Mallory and last: File:Slatta-crosscountry.jpg +[2018-02-13T00:25:50.569] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:25:50.574] [INFO] cheese - inserting 1000 documents. first: File:Freeland Community School District logo.png and last: Chennai Coimbatore Shatabdi Express +[2018-02-13T00:25:50.601] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:25:50.624] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:25:50.629] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:25:50.837] [INFO] cheese - inserting 1000 documents. first: Norris L. Einertson and last: Gare de Saint-Germain-en-Laye-Grande Ceinture +[2018-02-13T00:25:50.865] [INFO] cheese - inserting 1000 documents. first: File:Mount Barker High School logo.jpg and last: File:Lichfield City F.C. logo.png +[2018-02-13T00:25:50.875] [INFO] cheese - inserting 1000 documents. first: Kargów and last: Porąbki, Kielce County +[2018-02-13T00:25:50.877] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:25:50.906] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:25:50.918] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:25:50.954] [INFO] cheese - inserting 1000 documents. first: File:Davidlowrendezvous.png and last: Bert Broer +[2018-02-13T00:25:50.992] [INFO] cheese - inserting 1000 documents. first: WP Diamonds and last: Excellency over the Masses +[2018-02-13T00:25:50.999] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:25:51.030] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:25:51.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teenage phsycology and last: Heartland Flyer (Amtrak) +[2018-02-13T00:25:51.186] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:25:51.234] [INFO] cheese - inserting 1000 documents. first: Thierberg (Vogtland) and last: US Post Office-Hyattsville Main +[2018-02-13T00:25:51.252] [INFO] cheese - inserting 1000 documents. first: Category:People murdered in the United States and last: Category:Military templates by country +[2018-02-13T00:25:51.262] [INFO] cheese - inserting 1000 documents. first: Pride of Texas and last: Stainand colour +[2018-02-13T00:25:51.266] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:25:51.286] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:25:51.302] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:25:51.344] [INFO] cheese - inserting 1000 documents. first: Template:1963 AFL Eastern standings and last: Johan Gustafson (kidnap victim) +[2018-02-13T00:25:51.380] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:25:51.399] [INFO] cheese - inserting 1000 documents. first: List of i-schools and last: NY 170 +[2018-02-13T00:25:51.447] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:25:51.579] [INFO] cheese - inserting 1000 documents. first: Frank Caplan and last: Category:Mexican people of African descent +[2018-02-13T00:25:51.593] [INFO] cheese - inserting 1000 documents. first: Rembów, Świętokrzyskie Voivodeship and last: Wierzchowiny, Podkarpackie Voivodeship +[2018-02-13T00:25:51.601] [INFO] cheese - inserting 1000 documents. first: Shao Jiang and last: Lord Boothby +[2018-02-13T00:25:51.633] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:25:51.618] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:25:51.689] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:25:51.740] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Sinoadapis and last: Template:Did you know nominations/Procambarus natchitochae +[2018-02-13T00:25:51.754] [INFO] cheese - inserting 1000 documents. first: Staynand colour and last: Category:1960s establishments in Rwanda +[2018-02-13T00:25:51.786] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:25:51.835] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:25:51.912] [INFO] cheese - inserting 1000 documents. first: Darlene Chapinni and last: Maviddapuram +[2018-02-13T00:25:51.965] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:25:52.023] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Kazakhstan to South Korea and last: Bagirovkend +[2018-02-13T00:25:52.078] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:25:52.135] [INFO] cheese - inserting 1000 documents. first: Category:Mexican people of Arab descent and last: Ust-Bol'shereckiy District +[2018-02-13T00:25:52.157] [INFO] cheese - inserting 1000 documents. first: Kevin Gilbert (disambiguation) and last: Needmore, Mississippi +[2018-02-13T00:25:52.231] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:25:52.256] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:25:52.268] [INFO] cheese - inserting 1000 documents. first: Element 93 and last: Khazaran, Khazaria +[2018-02-13T00:25:52.329] [INFO] cheese - inserting 1000 documents. first: Sassanian army and last: Mars Rovers +[2018-02-13T00:25:52.340] [INFO] cheese - inserting 1000 documents. first: Category:1980s establishments in Rwanda and last: Karl Markt +[2018-02-13T00:25:52.384] [INFO] cheese - batch complete in: 2.231 secs +[2018-02-13T00:25:52.396] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:25:52.419] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:25:52.463] [INFO] cheese - inserting 1000 documents. first: Ravensthorpe Airport and last: Szentábrahám +[2018-02-13T00:25:52.512] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:25:52.584] [INFO] cheese - inserting 1000 documents. first: Bagry and last: Category:Olympic alpine skiers of Egypt +[2018-02-13T00:25:52.642] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:25:52.670] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gabriel Brown (actor) and last: Amanush 2 +[2018-02-13T00:25:52.671] [INFO] cheese - inserting 1000 documents. first: Ust-Bol'sherecki District and last: Alliance of Digital Humanities Organizations +[2018-02-13T00:25:52.717] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:25:52.726] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:25:52.907] [INFO] cheese - inserting 1000 documents. first: Category:2010–11 W-League by team and last: Tandy stores +[2018-02-13T00:25:52.931] [INFO] cheese - inserting 1000 documents. first: Freddie (video game character) and last: File:Thescore.jpg +[2018-02-13T00:25:52.952] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:25:52.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rosetta Stoned and last: Tkachenko Heorhy +[2018-02-13T00:25:52.992] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:25:53.040] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:25:53.061] [INFO] cheese - inserting 1000 documents. first: Category:Melipotis and last: Category:Dinosaur fossils +[2018-02-13T00:25:53.081] [INFO] cheese - inserting 1000 documents. first: Template:F1 driver/doc and last: Night Winds +[2018-02-13T00:25:53.099] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:25:53.117] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/replicaestores.com and last: Cooperative Correspondence Club +[2018-02-13T00:25:53.131] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:25:53.161] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:25:53.299] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Yemeni people and last: Category:Rugby league teams in Brisbane +[2018-02-13T00:25:53.338] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:25:53.400] [INFO] cheese - inserting 1000 documents. first: ASCII Media Works manga and last: File:Dedman College of H&S.png +[2018-02-13T00:25:53.402] [INFO] cheese - inserting 1000 documents. first: Rose Museum and last: Banazur +[2018-02-13T00:25:53.413] [INFO] cheese - inserting 1000 documents. first: Category:Religion in Pakistan and last: Wikipedia:Articles for deletion/Darth Glentract +[2018-02-13T00:25:53.432] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:25:53.434] [INFO] cheese - inserting 1000 documents. first: Song stuck in your head and last: Category:Girls' schools in Trinidad and Tobago +[2018-02-13T00:25:53.437] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:25:53.473] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:25:53.484] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:25:53.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Doc Marten Skins and last: Mayor of Helsinki +[2018-02-13T00:25:53.630] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:25:53.761] [INFO] cheese - inserting 1000 documents. first: M-Tag and last: Tyson DeVree +[2018-02-13T00:25:53.785] [INFO] cheese - inserting 1000 documents. first: Category:Girls' schools in Iraq and last: 1977-78 in Turkish football +[2018-02-13T00:25:53.791] [INFO] cheese - inserting 1000 documents. first: Template:Psf and last: Template:2007-08 Biathlon World Cup +[2018-02-13T00:25:53.813] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:25:53.815] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:25:53.844] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:25:53.866] [INFO] cheese - inserting 1000 documents. first: Alfred Effiong and last: Ana Barros +[2018-02-13T00:25:53.911] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:25:53.921] [INFO] cheese - inserting 1000 documents. first: Nicholas Clapton and last: KWFP +[2018-02-13T00:25:53.942] [INFO] cheese - inserting 1000 documents. first: Double-yolked egg and last: Rye Patch Dam +[2018-02-13T00:25:53.966] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:25:53.997] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:25:54.108] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Featured prefecture/1 and last: Bursumlu +[2018-02-13T00:25:54.112] [INFO] cheese - inserting 1000 documents. first: Interbay, Tampa, Florida and last: Wikipedia:Possibly unfree files/2010 July 11 +[2018-02-13T00:25:54.141] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:25:54.163] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:25:54.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Bronwyn Oliver/archive1 and last: Qahej-e Pa'in +[2018-02-13T00:25:54.216] [INFO] cheese - inserting 1000 documents. first: Terminal complement complex and last: La Granadera +[2018-02-13T00:25:54.222] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:25:54.251] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:25:54.288] [INFO] cheese - inserting 1000 documents. first: Balanjar, Khazaria and last: Realencyclopädie der classischen Altertumswissenschaft +[2018-02-13T00:25:54.327] [INFO] cheese - inserting 1000 documents. first: Motorola 68851 and last: Category:Russian rock singers +[2018-02-13T00:25:54.361] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:25:54.371] [INFO] cheese - batch complete in: 1.987 secs +[2018-02-13T00:25:54.425] [INFO] cheese - inserting 1000 documents. first: File:Wag The Dog Poster.jpg and last: Wikipedia:Votes for deletion/Log/2005 July 4 +[2018-02-13T00:25:54.470] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2010 July 11 and last: Category:Association football clubs 1930–31 season +[2018-02-13T00:25:54.481] [INFO] cheese - inserting 1000 documents. first: Moises Matias de Andrade and last: Whitemans green +[2018-02-13T00:25:54.509] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:25:54.516] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:25:54.531] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:25:54.606] [INFO] cheese - inserting 1000 documents. first: Chris Wilson (golfer) and last: John de Foix, Captal de Buch +[2018-02-13T00:25:54.661] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:25:54.713] [INFO] cheese - inserting 1000 documents. first: Portal:Cuba/Did you know/79 and last: RapidMind +[2018-02-13T00:25:54.754] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:25:54.836] [INFO] cheese - inserting 1000 documents. first: Everyone Nose (All The Girls Standing In The Line For The Bathroom) and last: Template:GEOnetdab/doc +[2018-02-13T00:25:54.883] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:25:54.940] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hybrid offshore wind energy and last: Wikipedia:Articles for deletion/Vardough +[2018-02-13T00:25:54.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Log/2005 July 3 and last: Pornchai Thongburan +[2018-02-13T00:25:54.978] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:25:54.979] [INFO] cheese - inserting 1000 documents. first: Steggles and last: Category:Private Practice task force +[2018-02-13T00:25:54.999] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:25:55.035] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:25:55.127] [INFO] cheese - inserting 1000 documents. first: Category:Guam politicians convicted of crimes and last: Valea Sasului River (disambiguation) +[2018-02-13T00:25:55.144] [INFO] cheese - inserting 1000 documents. first: Ulaanbataar and last: Juraj Červenák +[2018-02-13T00:25:55.185] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T00:25:55.190] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:25:55.296] [INFO] cheese - inserting 1000 documents. first: Dzhamilli and last: Sedley Cudmore +[2018-02-13T00:25:55.355] [INFO] cheese - inserting 1000 documents. first: Mark Messmer and last: 2007 Indy Japan 300 +[2018-02-13T00:25:55.444] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:25:55.462] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:25:55.555] [INFO] cheese - inserting 1000 documents. first: File:Environmental Defence Canada Logo.jpg and last: Sergey Bestuchev +[2018-02-13T00:25:55.641] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for comment/Zephram Stark and last: Flexor carpi ulnaris muscle +[2018-02-13T00:25:55.667] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:25:55.772] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:25:55.909] [INFO] cheese - inserting 1000 documents. first: Seymour H. Person and last: Minister of Trade +[2018-02-13T00:25:55.957] [INFO] cheese - inserting 1000 documents. first: Category:Canadian soccer clubs 1975 season and last: Portal:Poland/Selected picture/67 +[2018-02-13T00:25:55.975] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:25:56.095] [INFO] cheese - inserting 1000 documents. first: David Main and last: Template:Infobox deputy first minister +[2018-02-13T00:25:56.112] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T00:25:56.121] [INFO] cheese - inserting 1000 documents. first: IRUN and last: File:Don't Blame Me.jpg +[2018-02-13T00:25:56.174] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:25:56.227] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:25:56.237] [INFO] cheese - inserting 1000 documents. first: Haq ol Khvajeh and last: Category:1940s in French Togoland +[2018-02-13T00:25:56.294] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:25:56.452] [INFO] cheese - inserting 1000 documents. first: The New Scooby and Scrappy-Doo Show and last: Carl Zimmer +[2018-02-13T00:25:56.474] [INFO] cheese - inserting 1000 documents. first: Cornerstone Festival and last: The Plimsouls +[2018-02-13T00:25:56.506] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:25:56.513] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2007 March 3 and last: Category:Rock formations of New Hampshire +[2018-02-13T00:25:56.538] [INFO] cheese - inserting 1000 documents. first: Template:Infobox deputy prime minister and last: File:TrevorRabin90124.jpg +[2018-02-13T00:25:56.548] [INFO] cheese - inserting 1000 documents. first: Poghos Galstyan and last: Eucalyptus longifolia +[2018-02-13T00:25:56.564] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:25:56.568] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Nic Nac and last: The Wolf Song +[2018-02-13T00:25:56.570] [INFO] cheese - batch complete in: 2.199 secs +[2018-02-13T00:25:56.595] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:25:56.607] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:25:56.617] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:25:56.630] [INFO] cheese - inserting 1000 documents. first: Category:1950s in French Togoland and last: Pitt-Greensburg +[2018-02-13T00:25:56.672] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:25:56.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Harbhajan Singh and last: Category:Srikakulam district +[2018-02-13T00:25:56.907] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:25:56.923] [INFO] cheese - inserting 1000 documents. first: Michael Chowen and last: Brühwurst +[2018-02-13T00:25:56.925] [INFO] cheese - inserting 1000 documents. first: Tarsnap and last: Ю́рий Васи́льевич Про́хоров +[2018-02-13T00:25:56.929] [INFO] cheese - inserting 1000 documents. first: William J. Hamblin and last: Human rights of Kurdish people +[2018-02-13T00:25:56.949] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:25:56.950] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:25:56.963] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:25:56.996] [INFO] cheese - inserting 1000 documents. first: Up in the Clouds and last: File:Best of Both Worlds Davina.jpg +[2018-02-13T00:25:57.000] [INFO] cheese - inserting 1000 documents. first: Worldloppet and last: Comeback Player of the Year Award +[2018-02-13T00:25:57.043] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:25:57.062] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:25:57.267] [INFO] cheese - inserting 1000 documents. first: Trangie and last: Qaf (letter) +[2018-02-13T00:25:57.285] [INFO] cheese - inserting 1000 documents. first: History of computer art and last: Ceferabad +[2018-02-13T00:25:57.309] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:25:57.323] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:25:57.364] [INFO] cheese - inserting 1000 documents. first: Peter Holmes (motorcycle racer) and last: Category:Infrastructure completed in 1953 +[2018-02-13T00:25:57.402] [INFO] cheese - inserting 1000 documents. first: Hired armed ship Charles and last: Luke gillespie +[2018-02-13T00:25:57.405] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:25:57.423] [INFO] cheese - inserting 1000 documents. first: Category:Antigua and Barbuda people of American descent and last: Domaine Chasse Bili Uere +[2018-02-13T00:25:57.428] [INFO] cheese - inserting 1000 documents. first: Marvelman and last: Nagas +[2018-02-13T00:25:57.447] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:25:57.486] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T00:25:57.498] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:25:57.648] [INFO] cheese - inserting 1000 documents. first: Caleb P. Bennett and last: P. V. Narasimharao +[2018-02-13T00:25:57.758] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:25:57.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2008 August 29 and last: Chobanabdally +[2018-02-13T00:25:57.790] [INFO] cheese - inserting 1000 documents. first: Neolithic discontinuity theory and last: Purdue University at Fort Wayne +[2018-02-13T00:25:57.855] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:25:57.855] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:25:57.907] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Robeson County, North Carolina and last: Rowland Main Street Historic District +[2018-02-13T00:25:57.975] [INFO] cheese - inserting 1000 documents. first: Second A. K. Antony ministry and last: Igor Vujanovic +[2018-02-13T00:25:58.004] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:25:58.025] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:25:58.045] [INFO] cheese - inserting 1000 documents. first: List of places in northumberland and last: Service Electric Cable +[2018-02-13T00:25:58.110] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:25:58.232] [INFO] cheese - inserting 1000 documents. first: Cohranli and last: Paul Pelletier +[2018-02-13T00:25:58.247] [INFO] cheese - inserting 1000 documents. first: Template:CodeFederalRegulations and last: Wi fi +[2018-02-13T00:25:58.248] [INFO] cheese - inserting 1000 documents. first: Indiana University at Indianapolis and last: Leccinum atrostipitatum +[2018-02-13T00:25:58.270] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:25:58.302] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:25:58.310] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:25:58.358] [INFO] cheese - inserting 1000 documents. first: Minister of Irrigation, Power and Energy (Sri Lanka) and last: Linguistic substrate +[2018-02-13T00:25:58.386] [INFO] cheese - inserting 1000 documents. first: 2003 Priority Telecom Dutch Open and last: Portal:University of Oxford/Selected panorama/Layout +[2018-02-13T00:25:58.401] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:25:58.435] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:25:58.437] [INFO] cheese - inserting 1000 documents. first: Ballade Number 2 in F major and last: Second Labour Government of New Zealand +[2018-02-13T00:25:58.499] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:25:58.654] [INFO] cheese - inserting 1000 documents. first: Culture of Mangalorean Catholics and last: File:Deuteronomium - From the Midst of the Battle.jpg +[2018-02-13T00:25:58.658] [INFO] cheese - inserting 1000 documents. first: Ananta and last: Richmond Range National Park +[2018-02-13T00:25:58.663] [INFO] cheese - inserting 1000 documents. first: Sant Joan de Labritja (village) and last: It's Only Love (Tommy James and the Shondells song) +[2018-02-13T00:25:58.696] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:25:58.714] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:25:58.768] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T00:25:58.815] [INFO] cheese - inserting 1000 documents. first: Aetna Township, Logan County, Illinois and last: Georg Wilhelm +[2018-02-13T00:25:58.821] [INFO] cheese - inserting 1000 documents. first: Hulst (municipality) and last: UBM Medica +[2018-02-13T00:25:58.854] [INFO] cheese - inserting 1000 documents. first: Charalambos Simopoulos and last: Nadporuchik +[2018-02-13T00:25:58.877] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:25:58.879] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:25:58.901] [INFO] cheese - inserting 1000 documents. first: L. S. Mason and last: Public reserve +[2018-02-13T00:25:58.939] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:25:58.964] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:25:59.041] [INFO] cheese - inserting 1000 documents. first: Dread Beat an' Blood and last: C Company, 52nd Infantry Regiment (Anti-Tank) +[2018-02-13T00:25:59.068] [INFO] cheese - inserting 1000 documents. first: Category:Environmental issues in New York (state) and last: John Gerzema +[2018-02-13T00:25:59.077] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:25:59.107] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:25:59.214] [INFO] cheese - inserting 1000 documents. first: Symplocos esquirolii and last: Ken Wannberg +[2018-02-13T00:25:59.231] [INFO] cheese - inserting 1000 documents. first: University Gardens High School and last: James Burrough +[2018-02-13T00:25:59.274] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:25:59.305] [INFO] cheese - inserting 1000 documents. first: Vanity Press and last: List of gelechiid genera: X +[2018-02-13T00:25:59.329] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:25:59.341] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:25:59.397] [INFO] cheese - inserting 1000 documents. first: University of California–Merced and last: Esk Valley Railway +[2018-02-13T00:25:59.446] [INFO] cheese - inserting 1000 documents. first: Soleilmoon and last: Şurtan +[2018-02-13T00:25:59.505] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:25:59.542] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:25:59.606] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Account suspensions/Fenian Swine. and last: Rational singularity +[2018-02-13T00:25:59.691] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T00:25:59.712] [INFO] cheese - inserting 1000 documents. first: Peronea fulvocristana and last: Atypon +[2018-02-13T00:25:59.778] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:25:59.803] [INFO] cheese - inserting 1000 documents. first: Tyrol knapweed and last: Fossil fuel divestment movement +[2018-02-13T00:25:59.850] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:25:59.875] [INFO] cheese - inserting 1000 documents. first: File:Kundun1.jpg and last: Template:Pan American Games Boxing +[2018-02-13T00:25:59.894] [INFO] cheese - inserting 1000 documents. first: Roseneath Theatre and last: Lord High Sheriff +[2018-02-13T00:25:59.930] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:25:59.966] [INFO] cheese - inserting 1000 documents. first: Der Dritte and last: Education in Reverse +[2018-02-13T00:25:59.977] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:26:00.046] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:26:00.057] [INFO] cheese - inserting 1000 documents. first: Royal National Park and last: Jack Parsons (rocket engineer) +[2018-02-13T00:26:00.149] [INFO] cheese - batch complete in: 1.38 secs +[2018-02-13T00:26:00.229] [INFO] cheese - inserting 1000 documents. first: Scottish ethnicity and last: Category:Schools in Guyana +[2018-02-13T00:26:00.238] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Østerbros BK and last: Template:Taxonomy/Asterales +[2018-02-13T00:26:00.273] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:26:00.275] [INFO] cheese - inserting 1000 documents. first: Michelle Suárez Bértora and last: Jerron Paxton +[2018-02-13T00:26:00.287] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:26:00.333] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:26:00.396] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Did you know/155 and last: Jimmy James (Singer) +[2018-02-13T00:26:00.400] [INFO] cheese - inserting 1000 documents. first: Arche (mythology) and last: Template:Attached KML/Interstate 229 (South Dakota) +[2018-02-13T00:26:00.432] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:26:00.440] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:26:00.685] [INFO] cheese - inserting 1000 documents. first: Birdu and last: Mayoora +[2018-02-13T00:26:00.735] [INFO] cheese - inserting 1000 documents. first: Category:American bibliophiles and last: Mines and Minerals (Development and Regulation) Amendment Bill, 2015 +[2018-02-13T00:26:00.740] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:26:00.785] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:26:00.836] [INFO] cheese - inserting 1000 documents. first: Electric fiddle and last: Child day care center +[2018-02-13T00:26:00.837] [INFO] cheese - inserting 1000 documents. first: Chaffyn and last: The Kellys of Tobruk +[2018-02-13T00:26:00.863] [INFO] cheese - inserting 1000 documents. first: Portage Point Inn and last: The Country Gentleman +[2018-02-13T00:26:00.870] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:26:00.894] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:26:00.902] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:26:00.935] [INFO] cheese - inserting 1000 documents. first: Category:Education in Guyana and last: Player Character Record Sheets +[2018-02-13T00:26:00.984] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:26:01.054] [INFO] cheese - inserting 1000 documents. first: Perquisite (musician) and last: Robert Dean Clatterbuck +[2018-02-13T00:26:01.082] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:26:01.166] [INFO] cheese - inserting 1000 documents. first: Portal:Cuba/Did you know/94 and last: Portal:Caribbean/Selected picture/10 +[2018-02-13T00:26:01.175] [INFO] cheese - inserting 1000 documents. first: Cal State–Humboldt and last: Fabrice Olinga +[2018-02-13T00:26:01.192] [INFO] cheese - inserting 1000 documents. first: Hong Kong First Division League 2005–06 and last: Category:Protected areas of Burundi +[2018-02-13T00:26:01.209] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:26:01.217] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:26:01.240] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:26:01.289] [INFO] cheese - inserting 1000 documents. first: W-Y-S-I-W-Y-G and last: Katheryn Elizabeth Hudson +[2018-02-13T00:26:01.347] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:26:01.367] [INFO] cheese - inserting 1000 documents. first: Johnny Lozada and last: Shorter, Alabama +[2018-02-13T00:26:01.388] [INFO] cheese - inserting 1000 documents. first: Talking-head and last: Tachilek +[2018-02-13T00:26:01.407] [INFO] cheese - inserting 1000 documents. first: Mimozethes angula and last: Category:Compsosomatini +[2018-02-13T00:26:01.436] [INFO] cheese - batch complete in: 1.287 secs +[2018-02-13T00:26:01.479] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:26:01.478] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:26:01.541] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2012-08-22 and last: Category:Aviators from Iowa +[2018-02-13T00:26:01.604] [INFO] cheese - inserting 1000 documents. first: Leandro Antonio Martínez and last: Ángel Custodio Quintana +[2018-02-13T00:26:01.622] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:26:01.679] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:26:01.701] [INFO] cheese - inserting 1000 documents. first: Robert Bradford (NI politician) and last: Tupelo, MS μSA +[2018-02-13T00:26:01.769] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:26:01.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2008, Aug 31 and last: America a Prophecy +[2018-02-13T00:26:01.875] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:26:01.913] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Effigy (album) and last: José da Avé-Maria Leite da Costa e Silva +[2018-02-13T00:26:01.957] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:26:01.981] [INFO] cheese - inserting 1000 documents. first: Template:Dario Fo and last: Category:2010s establishments in El Salvador +[2018-02-13T00:26:01.986] [INFO] cheese - inserting 1000 documents. first: Raytheon Intelligence, Information and Services and last: M. K. Čiurlionis +[2018-02-13T00:26:02.030] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:26:02.038] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:26:02.094] [INFO] cheese - inserting 1000 documents. first: Gimme That (Ciara song) and last: Errinundra plum-pine +[2018-02-13T00:26:02.151] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:26:02.236] [INFO] cheese - inserting 1000 documents. first: Seremban railway station and last: Speculative mathematics +[2018-02-13T00:26:02.246] [INFO] cheese - inserting 1000 documents. first: Belaya River (Imandra) and last: 30BC +[2018-02-13T00:26:02.275] [INFO] cheese - inserting 1000 documents. first: Portal:Flodden/Ecomuseum Sites/5 and last: Javier Hernández (footballer, born 1988) +[2018-02-13T00:26:02.278] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:26:02.280] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:26:02.313] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:26:02.404] [INFO] cheese - inserting 1000 documents. first: List of Historic Sites of Japan (Fukushima) and last: John Noseworthy (disambiguation) +[2018-02-13T00:26:02.440] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:26:02.445] [INFO] cheese - inserting 1000 documents. first: Blue ice (aviation) and last: Caleys +[2018-02-13T00:26:02.500] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:26:02.506] [INFO] cheese - inserting 1000 documents. first: Rev. Fr. Mariampillai Sarathjeevan and last: Category:Species described in 1769 +[2018-02-13T00:26:02.547] [INFO] cheese - inserting 1000 documents. first: 28BC and last: Wycliffe and the Cycle of Death +[2018-02-13T00:26:02.570] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:26:02.594] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:26:02.632] [INFO] cheese - inserting 1000 documents. first: The embryonic and prenatal development of the male reproductive system (human) and last: Wikipedia:Peer review/Well-made play/archive1 +[2018-02-13T00:26:02.666] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:26:02.688] [INFO] cheese - inserting 1000 documents. first: Tuskegee, Alabama and last: Aqueous solution +[2018-02-13T00:26:02.748] [INFO] cheese - batch complete in: 1.311 secs +[2018-02-13T00:26:02.869] [INFO] cheese - inserting 1000 documents. first: Magomed Yevloyev and last: Sidekick '08 +[2018-02-13T00:26:02.873] [INFO] cheese - inserting 1000 documents. first: Csíkpálfalva and last: Line out +[2018-02-13T00:26:02.918] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:26:02.958] [INFO] cheese - inserting 1000 documents. first: Dame Grand Cross of the British Empire and last: Brian Chippendale +[2018-02-13T00:26:02.957] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:26:02.991] [INFO] cheese - inserting 1000 documents. first: Colin Williams (disambiguation) and last: File:Keep the Faith An Evening with Bon Jovi.jpg +[2018-02-13T00:26:03.059] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:26:03.081] [INFO] cheese - inserting 1000 documents. first: Hun lakhon lek and last: Aes Corp +[2018-02-13T00:26:03.092] [INFO] cheese - inserting 1000 documents. first: The encyclopedia Iranica and last: Tōkai earthquakes +[2018-02-13T00:26:03.062] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:26:03.157] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:26:03.166] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:26:03.283] [INFO] cheese - inserting 1000 documents. first: Template:Religious Radio Stations in Arizona and last: File:Audioslave - I Am The Highway.ogg +[2018-02-13T00:26:03.317] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:26:03.465] [INFO] cheese - inserting 1000 documents. first: Ovayok Territorial Park, Nunavut and last: Atlanta Union Station (1930) +[2018-02-13T00:26:03.496] [INFO] cheese - inserting 1000 documents. first: Occipital nerve and last: Wikipedia:Articles for deletion/Allison Moore (voice actress) +[2018-02-13T00:26:03.517] [INFO] cheese - inserting 1000 documents. first: Avalon High School and last: Idritsa +[2018-02-13T00:26:03.517] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:26:03.531] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:26:03.564] [INFO] cheese - inserting 1000 documents. first: Category:Honest Don's Records EPs and last: Wikipedia:Miscellany for deletion/User:Weaponbb7/Subpagetostopbickingovervenue/respectculturalrightsofreligion +[2018-02-13T00:26:03.567] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:26:03.593] [INFO] cheese - inserting 1000 documents. first: 2006-2007 roster (DTL EKA AEL) and last: Longitude 90 degrees E +[2018-02-13T00:26:03.607] [INFO] cheese - inserting 1000 documents. first: Treehorn's Treasure and last: ZF expression +[2018-02-13T00:26:03.607] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:26:03.639] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:26:03.672] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:26:03.873] [INFO] cheese - inserting 1000 documents. first: Political Corruption in Nigeria and last: Ed Loewe +[2018-02-13T00:26:03.901] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ornithogaleae and last: Beaver Creek (Split Rock Creek) +[2018-02-13T00:26:03.910] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:26:03.935] [INFO] cheese - inserting 1000 documents. first: Bubble Shooter and last: The Excursion (poem) +[2018-02-13T00:26:03.956] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:26:03.984] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:26:03.997] [INFO] cheese - inserting 1000 documents. first: Distilled water and last: Angels Camp, California +[2018-02-13T00:26:04.044] [INFO] cheese - inserting 1000 documents. first: Hales (disambiguation) and last: Wikipedia:Articles for deletion/Ron Shimshilashvili +[2018-02-13T00:26:04.057] [INFO] cheese - inserting 1000 documents. first: Tom Coates and last: Slavery Reparation Tax Credit +[2018-02-13T00:26:04.063] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T00:26:04.089] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:26:04.093] [INFO] cheese - inserting 1000 documents. first: Longitude 95 degrees E and last: Category:FL-Class UK Waterways articles +[2018-02-13T00:26:04.111] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:26:04.176] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:26:04.246] [INFO] cheese - inserting 1000 documents. first: Category:IDW Publishing titles and last: Laurel Micropolitan Area +[2018-02-13T00:26:04.278] [INFO] cheese - inserting 1000 documents. first: RCDP and last: Hot Springs sinkhole +[2018-02-13T00:26:04.286] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:26:04.312] [INFO] cheese - inserting 1000 documents. first: Category:Chinese people of Ivorian descent and last: Miles Store, Virginia +[2018-02-13T00:26:04.342] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:26:04.327] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:26:04.428] [INFO] cheese - inserting 1000 documents. first: File:Strast.jpeg and last: Argentine Naval Hydrographic Service +[2018-02-13T00:26:04.462] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:26:04.526] [INFO] cheese - inserting 1000 documents. first: Allan Heinburg and last: Night Skies +[2018-02-13T00:26:04.536] [INFO] cheese - inserting 1000 documents. first: Top wrap and last: Nicomen Mountain +[2018-02-13T00:26:04.550] [INFO] cheese - inserting 1000 documents. first: AutoGyro Cavalon and last: Garcetti v Ceballos +[2018-02-13T00:26:04.577] [INFO] cheese - batch complete in: 0.235 secs +[2018-02-13T00:26:04.583] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:26:04.587] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:26:04.664] [INFO] cheese - inserting 1000 documents. first: List of alphabets used by Turkic languages and last: Gwendoline Eastlake-Smith +[2018-02-13T00:26:04.697] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:26:04.744] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Transnistria and last: Nyingchi County +[2018-02-13T00:26:04.765] [INFO] cheese - inserting 1000 documents. first: Lily of Java and last: Paradise Cinemas (Kolkata) +[2018-02-13T00:26:04.786] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:26:04.795] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:26:04.840] [INFO] cheese - inserting 1000 documents. first: Edmond Modeste Lescarbault and last: Groppa +[2018-02-13T00:26:04.895] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:26:04.983] [INFO] cheese - inserting 1000 documents. first: Edward Wester Creal and last: File:TearsRollDown.jpg +[2018-02-13T00:26:05.021] [INFO] cheese - inserting 1000 documents. first: Bridge Street Bridge (disambiguation) and last: Mooru Guttu Ondu Sullu Ondu Nija +[2018-02-13T00:26:05.036] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:26:05.050] [INFO] cheese - batch complete in: 0.254 secs +[2018-02-13T00:26:05.074] [INFO] cheese - inserting 1000 documents. first: Museum of Ho Chi Minh City and last: Earthquake Cocktail +[2018-02-13T00:26:05.121] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:26:05.145] [INFO] cheese - inserting 1000 documents. first: 1820 in Brazil and last: Howard Hughes and The Western Approaches +[2018-02-13T00:26:05.152] [INFO] cheese - inserting 1000 documents. first: Musée d'Orsay (Paris RER) and last: East London Transit +[2018-02-13T00:26:05.200] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:26:05.203] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:26:05.223] [INFO] cheese - inserting 1000 documents. first: Ünőmező and last: Donald Hankinson +[2018-02-13T00:26:05.255] [INFO] cheese - inserting 1000 documents. first: Imperial estates and last: Swift & Co. v United States +[2018-02-13T00:26:05.277] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:26:05.279] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:26:05.411] [INFO] cheese - inserting 1000 documents. first: File:Coilunnatural3.jpg and last: 1980 South American Championships – Singles +[2018-02-13T00:26:05.463] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:26:05.499] [INFO] cheese - inserting 1000 documents. first: Keith Brookman and last: Frank Woodruff Buckles +[2018-02-13T00:26:05.538] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:26:05.558] [INFO] cheese - inserting 1000 documents. first: Nhon Hoi Bridge and last: Hans Zorn +[2018-02-13T00:26:05.563] [INFO] cheese - inserting 1000 documents. first: Swift v Tyson and last: File:Somethin Bout Kreay Cover.jpg +[2018-02-13T00:26:05.588] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T00:26:05.589] [INFO] cheese - inserting 1000 documents. first: List of Cultural Properties of the Philippines in Tagbilaran and last: Chowara +[2018-02-13T00:26:05.604] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:26:05.649] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:26:05.847] [INFO] cheese - inserting 1000 documents. first: Louis-Jean Pin and last: Going Band +[2018-02-13T00:26:05.891] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:26:05.906] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Kozakken Boys and last: Embassy of Ecuador in London +[2018-02-13T00:26:05.938] [INFO] cheese - inserting 1000 documents. first: Arnold, California and last: Cherry Hills Village, Colorado +[2018-02-13T00:26:05.953] [INFO] cheese - inserting 1000 documents. first: Cities in Newfoundland and Labrador and last: Brother Mutant (comics) +[2018-02-13T00:26:05.958] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:26:05.964] [INFO] cheese - inserting 1000 documents. first: Tres Fronteiras and last: Yandro Quintana +[2018-02-13T00:26:05.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject NASCAR/Newsletter/NASCARPOM and last: File:Internode logo.svg +[2018-02-13T00:26:06.010] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:26:06.030] [INFO] cheese - inserting 1000 documents. first: Mudra Bank and last: Canal estate +[2018-02-13T00:26:06.032] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:26:06.042] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:26:06.067] [INFO] cheese - batch complete in: 2.002 secs +[2018-02-13T00:26:06.098] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:26:06.259] [INFO] cheese - inserting 1000 documents. first: Orlando Bloo and last: 1999 World Championships in Athletics – Men's long jump +[2018-02-13T00:26:06.314] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:26:06.337] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Teahouse/Host landing and last: FC Chabab +[2018-02-13T00:26:06.387] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:26:06.395] [INFO] cheese - inserting 1000 documents. first: Category:Soviet members of the Verkhovna Rada and last: Cricket in Iran +[2018-02-13T00:26:06.435] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:26:06.468] [INFO] cheese - inserting 1000 documents. first: Category:American people of Flemish descent and last: Adrian Franklin +[2018-02-13T00:26:06.471] [INFO] cheese - inserting 1000 documents. first: Kyobashi Station and last: Nicki Billie Nielsen +[2018-02-13T00:26:06.503] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:26:06.503] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:26:06.546] [INFO] cheese - inserting 1000 documents. first: Harm de Blij and last: Pirquet (crater) +[2018-02-13T00:26:06.618] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:26:06.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NCASTRO and last: Category:Commercial Swimming Club swimmers +[2018-02-13T00:26:06.745] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:26:06.786] [INFO] cheese - inserting 1000 documents. first: Template:Fujifilm DSLR cameras and last: Victor de Broglie (1846-1906) +[2018-02-13T00:26:06.828] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:26:06.834] [INFO] cheese - inserting 1000 documents. first: Lycee Rene Descartes (Cambodia) and last: File:SPORZA-306x225.jpg +[2018-02-13T00:26:06.877] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:26:06.899] [INFO] cheese - inserting 1000 documents. first: Category:Jimmy Buffett compilation albums and last: Ana Bárbara (album) +[2018-02-13T00:26:06.941] [INFO] cheese - inserting 1000 documents. first: New Departure (Ireland) and last: File:Thief Of Bagdad (1940).jpg +[2018-02-13T00:26:06.948] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:26:07.006] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:26:07.100] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Guyver85 and last: Antoine du Verdier +[2018-02-13T00:26:07.153] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:26:07.198] [INFO] cheese - inserting 1000 documents. first: Real-life test and last: Jeff King (author) +[2018-02-13T00:26:07.249] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:26:07.289] [INFO] cheese - inserting 1000 documents. first: Template:I-77 aux and last: People's Solution +[2018-02-13T00:26:07.334] [INFO] cheese - inserting 1000 documents. first: Billy Davies (rugby league) and last: Son of Gutbucket +[2018-02-13T00:26:07.348] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:26:07.374] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Liamorpha and last: File:Trinity line 4-2015.jpg +[2018-02-13T00:26:07.384] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:26:07.408] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:26:07.477] [INFO] cheese - inserting 1000 documents. first: File:MyDinnerWithJimi.jpg and last: Template:Cite Catholic Encyclopedia +[2018-02-13T00:26:07.516] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:26:07.570] [INFO] cheese - inserting 1000 documents. first: Rangers F.C. season 1971-72 and last: File:Big L - Harlem's Finest - A Freestyle History.jpg +[2018-02-13T00:26:07.576] [INFO] cheese - inserting 1000 documents. first: Denmark High School and last: Estonia at the 2012 Summer Paralympics +[2018-02-13T00:26:07.615] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:26:07.626] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:26:07.742] [INFO] cheese - inserting 1000 documents. first: Amazon Dash Replenishment Service and last: Columbus State Univ. +[2018-02-13T00:26:07.800] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:26:07.842] [INFO] cheese - inserting 1000 documents. first: AC Russell and last: Marquis of Lorne +[2018-02-13T00:26:07.885] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:26:07.905] [INFO] cheese - inserting 1000 documents. first: Columbine, Colorado and last: West Samoset, Florida +[2018-02-13T00:26:07.938] [INFO] cheese - inserting 1000 documents. first: Dietrich of the Goths and last: Mangaltar, Bagmati +[2018-02-13T00:26:07.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Chowkatsun9 and last: Neocollyris subclavata +[2018-02-13T00:26:07.973] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:26:07.978] [INFO] cheese - batch complete in: 1.91 secs +[2018-02-13T00:26:07.987] [INFO] cheese - inserting 1000 documents. first: East Kilbride Pirates and last: Bowie Middle School (Irving, Texas) +[2018-02-13T00:26:08.017] [INFO] cheese - inserting 1000 documents. first: Category:Czech history and last: Category:Wikipedia requested photographs in Guizhou +[2018-02-13T00:26:08.025] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:26:08.043] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:26:08.046] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:26:08.139] [INFO] cheese - inserting 1000 documents. first: Miokovci and last: File:Obama victory pdi.jpg +[2018-02-13T00:26:08.209] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:26:08.301] [INFO] cheese - inserting 1000 documents. first: Brahms / Handel and last: Enfermes dehors +[2018-02-13T00:26:08.311] [INFO] cheese - inserting 1000 documents. first: Neocollyris subtileflavescens and last: Francois Wong +[2018-02-13T00:26:08.336] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:26:08.339] [INFO] cheese - inserting 1000 documents. first: Sea Life Minnesota Aquarium and last: Poy Poy 2 +[2018-02-13T00:26:08.342] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:26:08.373] [INFO] cheese - inserting 1000 documents. first: Category:Nationalist Party of Australia members of the Parliament of Victoria and last: Template:NZ-struct-stub +[2018-02-13T00:26:08.388] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:26:08.407] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:26:08.490] [INFO] cheese - inserting 1000 documents. first: Equivalent concentration and last: Hercules In The Underworld +[2018-02-13T00:26:08.540] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:26:08.639] [INFO] cheese - inserting 1000 documents. first: Images 1966-1967 and last: Jane Pemberton Small +[2018-02-13T00:26:08.657] [INFO] cheese - inserting 1000 documents. first: Compagnie Française de l'Afrique Occidentale and last: Marjory E. Mecklenburg +[2018-02-13T00:26:08.665] [INFO] cheese - inserting 1000 documents. first: Marie Du Toit and last: Lingga Isaq Game Reserve +[2018-02-13T00:26:08.675] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:26:08.693] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:26:08.719] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:26:08.740] [INFO] cheese - inserting 1000 documents. first: Template:NZ-university-stub and last: Portal:Current events/2015 April 8 +[2018-02-13T00:26:08.785] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:26:08.813] [INFO] cheese - inserting 1000 documents. first: Chase Ellison and last: Cestodaria +[2018-02-13T00:26:08.875] [INFO] cheese - inserting 1000 documents. first: 2006 Summer SMTown and last: Rufus Books +[2018-02-13T00:26:08.875] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:26:08.913] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:26:08.986] [INFO] cheese - inserting 1000 documents. first: Marjory M. Mecklenburg and last: 1945 Mass State Aggies football team +[2018-02-13T00:26:09.020] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:26:09.067] [INFO] cheese - inserting 1000 documents. first: File:Cambrian-news-150th-logo.jpg and last: Category:Polydor Records soundtracks +[2018-02-13T00:26:09.101] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:26:09.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Untitled Third Studio Album (2nd nomination) and last: Category:Chinese artistic gymnasts +[2018-02-13T00:26:09.160] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:26:09.191] [INFO] cheese - inserting 1000 documents. first: NOFV and last: Family Values (album) +[2018-02-13T00:26:09.238] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:26:09.259] [INFO] cheese - inserting 1000 documents. first: Bentley Historical Museum and last: Portal:AC/DC/Selected article/Nominations +[2018-02-13T00:26:09.303] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:26:09.339] [INFO] cheese - inserting 1000 documents. first: Somalia federal government and last: Roger-Jean Le Nizerhy +[2018-02-13T00:26:09.372] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:26:09.442] [INFO] cheese - inserting 1000 documents. first: File:Jimmy Sturr Polka in Paradise cover.jpg and last: Archery medal winners at the 1982 Commonwealth Games +[2018-02-13T00:26:09.483] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:26:09.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alkmania and last: British Rail Class 76 +[2018-02-13T00:26:09.525] [INFO] cheese - inserting 1000 documents. first: Taylor Avenue and last: Wikipedia:Reference desk/Archives/Language/September 2008 +[2018-02-13T00:26:09.552] [INFO] cheese - inserting 1000 documents. first: Whitfield, Manatee County, Florida and last: Rossville, Georgia +[2018-02-13T00:26:09.560] [INFO] cheese - inserting 1000 documents. first: Soho, Hong Kong and last: Coronation of the Danish monarch +[2018-02-13T00:26:09.570] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:26:09.575] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:26:09.594] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:26:09.617] [INFO] cheese - inserting 1000 documents. first: A Mi Shabba and last: Broadway (Sacramento RT) +[2018-02-13T00:26:09.638] [INFO] cheese - inserting 1000 documents. first: File:Summer and the City (book cover).jpg and last: Sealdin +[2018-02-13T00:26:09.653] [INFO] cheese - batch complete in: 1.675 secs +[2018-02-13T00:26:09.661] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:26:09.677] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:26:09.846] [INFO] cheese - inserting 1000 documents. first: Sir Spencer Fane and last: Monaco at the 2010 European Athletics Championships +[2018-02-13T00:26:09.899] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:26:09.953] [INFO] cheese - inserting 1000 documents. first: Charles Kingsley Barrett and last: IMO 7358327 +[2018-02-13T00:26:09.983] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:26:09.985] [INFO] cheese - inserting 1000 documents. first: National fire and rescue service of Scotland and last: Bjørn Tolleivson Frøysok +[2018-02-13T00:26:09.997] [INFO] cheese - inserting 1000 documents. first: World Revolution (political group) and last: Mounir Farah +[2018-02-13T00:26:10.004] [INFO] cheese - inserting 1000 documents. first: Ukrainian Premier League Reserve and last: Portal:Oregon/Selected picture/29 +[2018-02-13T00:26:10.024] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:26:10.049] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:26:10.066] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:26:10.085] [INFO] cheese - inserting 1000 documents. first: De Havilland DH.65 Hound and last: Wikipedia:Featured article review/Revised Standard Version +[2018-02-13T00:26:10.135] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:26:10.191] [INFO] cheese - inserting 1000 documents. first: Portal:University of Oxford/Selected panorama/12 and last: Ian Emes +[2018-02-13T00:26:10.245] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:26:10.246] [INFO] cheese - inserting 1000 documents. first: IMO 7358561 and last: Death of Shaima Alawadi +[2018-02-13T00:26:10.269] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:26:10.376] [INFO] cheese - inserting 1000 documents. first: Bjørn Tolleivson Frøysåk and last: File:Emily Hahn.jpg +[2018-02-13T00:26:10.417] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:26:10.444] [INFO] cheese - inserting 1000 documents. first: Portal:Oregon/Selected picture/28 and last: Səhlaabad +[2018-02-13T00:26:10.462] [INFO] cheese - inserting 1000 documents. first: Charles H. Burke and last: File:Dystopia logo.jpg +[2018-02-13T00:26:10.483] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:26:10.498] [INFO] cheese - inserting 1000 documents. first: Andahuaylas Province and last: Chem. Eur. J. +[2018-02-13T00:26:10.504] [INFO] cheese - inserting 1000 documents. first: IMO 9320544 and last: Dominican Republic Handicap Hurdle +[2018-02-13T00:26:10.515] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:26:10.530] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:26:10.559] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:26:10.722] [INFO] cheese - inserting 1000 documents. first: Karel Uyttersprot and last: 10R (disambiguation) +[2018-02-13T00:26:10.753] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 2014 Winter Olympics and last: Morning Glory (band) +[2018-02-13T00:26:10.766] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:26:10.786] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:26:10.838] [INFO] cheese - inserting 1000 documents. first: Category:2015 establishments in Estonia and last: 2015 Batman Cup – Doubles +[2018-02-13T00:26:10.843] [INFO] cheese - inserting 1000 documents. first: Anne no Nikki and last: File:MorganOrganized.jpg +[2018-02-13T00:26:10.861] [INFO] cheese - inserting 1000 documents. first: Bourke County, New South Wales and last: Ongka's Big Moka +[2018-02-13T00:26:10.884] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:26:10.891] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:26:10.911] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:26:10.922] [INFO] cheese - inserting 1000 documents. first: Category:Horse health and last: List of Picasso artworks 1951–60 +[2018-02-13T00:26:10.969] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:26:11.104] [INFO] cheese - inserting 1000 documents. first: Template:PowerliftingAt2012SummerParalympics and last: Mario Bazán +[2018-02-13T00:26:11.121] [INFO] cheese - inserting 1000 documents. first: A Force More Powerful (2000 TV series) and last: Norm Row +[2018-02-13T00:26:11.141] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:26:11.143] [INFO] cheese - inserting 1000 documents. first: HMS Blaxton (M1132) and last: VFAT long file name support +[2018-02-13T00:26:11.177] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:26:11.185] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:26:11.270] [INFO] cheese - inserting 1000 documents. first: President Harry Truman and last: Mário João +[2018-02-13T00:26:11.301] [INFO] cheese - inserting 1000 documents. first: ANAPROF in CONCACAF and last: Wikipedia:Wikipedia Signpost/2008-09-08/In the news +[2018-02-13T00:26:11.304] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:26:11.343] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:26:11.358] [INFO] cheese - inserting 1000 documents. first: Between, Georgia and last: Victoria, Illinois +[2018-02-13T00:26:11.486] [INFO] cheese - batch complete in: 1.833 secs +[2018-02-13T00:26:11.510] [INFO] cheese - inserting 1000 documents. first: Laundry detergent and last: Category:Science and technology in South Africa +[2018-02-13T00:26:11.514] [INFO] cheese - inserting 1000 documents. first: Charlie Howard (cricketer) and last: Amazing Cooking Kids (season 1) +[2018-02-13T00:26:11.560] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:26:11.569] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:26:11.619] [INFO] cheese - inserting 1000 documents. first: File:Kbmt news 2010.png and last: File:Emil i Lönneberga.jpg +[2018-02-13T00:26:11.627] [INFO] cheese - inserting 1000 documents. first: MV Westward and last: University College London Hospitals NHS Foundation Trust +[2018-02-13T00:26:11.672] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:26:11.686] [INFO] cheese - inserting 1000 documents. first: VFAT long filename support and last: File:Photos icon for OS X.png +[2018-02-13T00:26:11.696] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:26:11.733] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians who contribute to the reference desk and last: William Corless Mills +[2018-02-13T00:26:11.756] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:26:11.802] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:26:12.003] [INFO] cheese - inserting 1000 documents. first: DSC-RX100 and last: File:TheBigWave.jpg +[2018-02-13T00:26:12.049] [INFO] cheese - inserting 1000 documents. first: File:Nya hyss av Emil i Lönneberga.jpg and last: 1946–47 Liverpool F.C. season +[2018-02-13T00:26:12.049] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:26:12.055] [INFO] cheese - inserting 1000 documents. first: Waikiki (band) and last: Wikipedia:Articles for deletion/Queer West News +[2018-02-13T00:26:12.092] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:26:12.096] [INFO] cheese - inserting 1000 documents. first: Ilamatepec and last: Daewoo Precision Industries K2 +[2018-02-13T00:26:12.100] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:26:12.126] [INFO] cheese - inserting 1000 documents. first: Taiwan-Bangladesh relations and last: SCIS (disambiguation) +[2018-02-13T00:26:12.185] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:26:12.208] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:26:12.238] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jambo and last: Horror game +[2018-02-13T00:26:12.295] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:26:12.440] [INFO] cheese - inserting 1000 documents. first: Hamid Arasly and last: W.S. Burhaus +[2018-02-13T00:26:12.444] [INFO] cheese - inserting 1000 documents. first: Template:Darlington and last: OOTH +[2018-02-13T00:26:12.487] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:26:12.489] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:26:12.522] [INFO] cheese - inserting 1000 documents. first: Charlie and the Chocolate Factory: The Musical and last: John Wasdin's perfect game +[2018-02-13T00:26:12.525] [INFO] cheese - inserting 1000 documents. first: Template:Modern Rock Radio Stations in Massachusetts and last: Category:Iowa society +[2018-02-13T00:26:12.561] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:26:12.583] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:26:12.665] [INFO] cheese - inserting 1000 documents. first: United States Glacier National Park and last: Pierrebraunia +[2018-02-13T00:26:12.705] [INFO] cheese - inserting 1000 documents. first: Isadora (film) and last: Great Short Novels of Adult Fantasy I +[2018-02-13T00:26:12.720] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:26:12.742] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:26:12.851] [INFO] cheese - inserting 1000 documents. first: OPBN and last: Rumesh Joseph Ratnayake +[2018-02-13T00:26:12.852] [INFO] cheese - inserting 1000 documents. first: Armenians in Belarus and last: Via della Spiga, Milan +[2018-02-13T00:26:12.860] [INFO] cheese - inserting 1000 documents. first: Template:2012 Summer Paralympics women's wheelchair basketball game B6 and last: Francisco Hernández (Peruvian footballer) +[2018-02-13T00:26:12.881] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:26:12.897] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:26:12.907] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:26:12.974] [INFO] cheese - inserting 1000 documents. first: Wilfred Spruson and last: Wikipedia:WikiProject Spam/LinkReports/buypckeys.com +[2018-02-13T00:26:13.023] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:26:13.044] [INFO] cheese - inserting 1000 documents. first: Template:Buriram-geo-stub and last: Friend virus +[2018-02-13T00:26:13.092] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:26:13.125] [INFO] cheese - inserting 1000 documents. first: Gallio and last: Lists of tennis records and statistics +[2018-02-13T00:26:13.147] [INFO] cheese - inserting 1000 documents. first: Wataga, Illinois and last: Michiana Shores, Indiana +[2018-02-13T00:26:13.165] [INFO] cheese - inserting 1000 documents. first: Princess Marie of Orléans (1813-1839) and last: Melicytus dentatus +[2018-02-13T00:26:13.167] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:26:13.184] [INFO] cheese - inserting 1000 documents. first: Vancouver Jazz Festival and last: Category:Dōjin anime +[2018-02-13T00:26:13.208] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:26:13.215] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:26:13.249] [INFO] cheese - batch complete in: 1.763 secs +[2018-02-13T00:26:13.294] [INFO] cheese - inserting 1000 documents. first: Template:History of Papua New Guinea and last: File:Arun Sharma.jpg +[2018-02-13T00:26:13.352] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:26:13.357] [INFO] cheese - inserting 1000 documents. first: Military Working Dogs and last: Muniments room +[2018-02-13T00:26:13.401] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:26:13.428] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/May/02/Selected picture and last: Noah Creshevsky +[2018-02-13T00:26:13.455] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:26:13.534] [INFO] cheese - inserting 1000 documents. first: Alfredo Luís da Costa and last: Le Dénouement imprévu +[2018-02-13T00:26:13.577] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:26:13.591] [INFO] cheese - inserting 1000 documents. first: Co-agonist and last: Marheinecke +[2018-02-13T00:26:13.612] [INFO] cheese - inserting 1000 documents. first: Hanuta and last: Gazz. Chim. Ital. +[2018-02-13T00:26:13.636] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:26:13.654] [INFO] cheese - inserting 1000 documents. first: Ilam Cement Plant and last: Tkil +[2018-02-13T00:26:13.664] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:26:13.714] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:26:13.759] [INFO] cheese - inserting 1000 documents. first: The Code Project and last: Wikipedia:Featured article candidates/Southern Cross (wordless novel)/archive1 +[2018-02-13T00:26:13.798] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:26:13.831] [INFO] cheese - inserting 1000 documents. first: San miguel national high school and last: File:Sidneyia.png +[2018-02-13T00:26:13.876] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:26:13.982] [INFO] cheese - inserting 1000 documents. first: Rainbow Road (Mario Kart track) and last: Syamsul Chaerudin +[2018-02-13T00:26:14.010] [INFO] cheese - inserting 1000 documents. first: Category:Phyllachorales and last: Lehrte, Germany +[2018-02-13T00:26:14.019] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:26:14.060] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:26:14.068] [INFO] cheese - inserting 1000 documents. first: Novodevichye Cemetery and last: AF Tschiffely +[2018-02-13T00:26:14.094] [INFO] cheese - inserting 1000 documents. first: Category:Unsolved crimes in Rwanda and last: Template:2015–16 in Turkish football +[2018-02-13T00:26:14.104] [INFO] cheese - inserting 1000 documents. first: J S Carpenter House and last: Jefferson-Hemings controversy +[2018-02-13T00:26:14.127] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:26:14.136] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:26:14.172] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:26:14.298] [INFO] cheese - inserting 1000 documents. first: Est, Willem Hessels van and last: File:Nala100.jpg +[2018-02-13T00:26:14.342] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:26:14.410] [INFO] cheese - inserting 1000 documents. first: Banco Latino and last: Wikipedia:WikiProject Spam/LinkReports/panjewellery.com +[2018-02-13T00:26:14.416] [INFO] cheese - inserting 1000 documents. first: Michigan City, Indiana and last: Fine Gael Party +[2018-02-13T00:26:14.436] [INFO] cheese - inserting 1000 documents. first: Mont-Pérat and last: Cash for votes +[2018-02-13T00:26:14.455] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:26:14.485] [INFO] cheese - inserting 1000 documents. first: HD 20644 and last: Tanja Börzel +[2018-02-13T00:26:14.487] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:26:14.495] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T00:26:14.537] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:26:14.563] [INFO] cheese - inserting 1000 documents. first: Data farming and last: Academia Juárez +[2018-02-13T00:26:14.580] [INFO] cheese - inserting 1000 documents. first: Eddie Hice and last: Wikipedia:WikiProject Spam/LinkReports/tiyatropiya.com +[2018-02-13T00:26:14.633] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:26:14.647] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:26:14.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Moses mayfield and last: Men in White (1998 film) +[2018-02-13T00:26:14.813] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:26:14.819] [INFO] cheese - inserting 1000 documents. first: Factory Girl (TV series) and last: Chastellain, Pierre +[2018-02-13T00:26:14.847] [INFO] cheese - inserting 1000 documents. first: R. H. Mottram and last: Polish 17th Infantry Division +[2018-02-13T00:26:14.857] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:26:14.886] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:26:15.004] [INFO] cheese - inserting 1000 documents. first: C26H54O and last: Perumal Sthanu Ravi Gupta +[2018-02-13T00:26:15.030] [INFO] cheese - inserting 1000 documents. first: The Conservative Mind and last: Automatic Tool Changer +[2018-02-13T00:26:15.039] [INFO] cheese - inserting 1000 documents. first: Oscar Littleton Chaplin and last: London Underground C Stock +[2018-02-13T00:26:15.045] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:26:15.090] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:26:15.085] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:26:15.144] [INFO] cheese - inserting 1000 documents. first: Mount Ōyama (Kanagawa) and last: Domnall ua Neill +[2018-02-13T00:26:15.185] [INFO] cheese - inserting 1000 documents. first: By the Great Horn Spoon and last: Nellie Clifden +[2018-02-13T00:26:15.185] [INFO] cheese - inserting 1000 documents. first: Polish 1st Independent Parachute Brigade and last: File:Milford140.jpg +[2018-02-13T00:26:15.187] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:26:15.225] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:26:15.229] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:26:15.364] [INFO] cheese - inserting 1000 documents. first: William Page (MP) and last: Wikipedia:Articles for deletion/Jacksonville, Wyoming +[2018-02-13T00:26:15.396] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:26:15.513] [INFO] cheese - inserting 1000 documents. first: London Underground B Stock and last: Sikorsky R-4 +[2018-02-13T00:26:15.534] [INFO] cheese - inserting 1000 documents. first: Ahmadou Bello and last: Mike Stephens +[2018-02-13T00:26:15.539] [INFO] cheese - inserting 1000 documents. first: Épinette des Vosges and last: Sabols +[2018-02-13T00:26:15.570] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:26:15.586] [INFO] cheese - inserting 1000 documents. first: Kaakan and last: Voiceless dental flap +[2018-02-13T00:26:15.583] [INFO] cheese - inserting 1000 documents. first: Category:1851 racehorse births and last: Category:British East India Company Army personnel +[2018-02-13T00:26:15.598] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:26:15.581] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:26:15.652] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:26:15.654] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:26:15.728] [INFO] cheese - inserting 1000 documents. first: Maryville Saints and last: Template:German Athletics Champions in women's 800 m +[2018-02-13T00:26:15.788] [INFO] cheese - inserting 1000 documents. first: Geothermal power in Iceland and last: Winona, Kansas +[2018-02-13T00:26:15.863] [INFO] cheese - batch complete in: 1.368 secs +[2018-02-13T00:26:15.768] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:26:15.906] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2008-03-17/SPV and last: Category:Bishops of Orléans +[2018-02-13T00:26:15.951] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:26:15.972] [INFO] cheese - inserting 1000 documents. first: Red Death at 6:14 and last: Aid to the Church in Need +[2018-02-13T00:26:16.025] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:26:16.039] [INFO] cheese - inserting 1000 documents. first: Winning - The Answers and last: LMOE +[2018-02-13T00:26:16.040] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bojnec and last: Category:1996 in Ecuadorian sport +[2018-02-13T00:26:16.077] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:26:16.081] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:26:16.131] [INFO] cheese - inserting 1000 documents. first: Home and Away (album) and last: Category:Sri Lankan people by ethnic or national origin +[2018-02-13T00:26:16.179] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:26:16.277] [INFO] cheese - inserting 1000 documents. first: Nyree Lewis and last: Sammuel von Soemmering +[2018-02-13T00:26:16.317] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:26:16.368] [INFO] cheese - inserting 1000 documents. first: Fleetwood Pier and last: Category:Culture in Genoa +[2018-02-13T00:26:16.378] [INFO] cheese - inserting 1000 documents. first: Oeceoclades analamerensis and last: Wikipedia:Articles for deletion/Invenergy +[2018-02-13T00:26:16.407] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:26:16.408] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:26:16.432] [INFO] cheese - inserting 1000 documents. first: Levanto (SP) and last: Gare de Fouilloy +[2018-02-13T00:26:16.470] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:26:16.535] [INFO] cheese - inserting 1000 documents. first: Template:Fair use replace and last: File:Fisherman's Blues Waterboys Album Cover.jpg +[2018-02-13T00:26:16.573] [INFO] cheese - inserting 1000 documents. first: Emergency oxygen system and last: File:Ehwa badge.png +[2018-02-13T00:26:16.591] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:26:16.631] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:26:16.725] [INFO] cheese - inserting 1000 documents. first: File:1998WomensFinalFourLogo.jpg and last: Monsanto's house of the future +[2018-02-13T00:26:16.739] [INFO] cheese - inserting 1000 documents. first: Columbia University TeenScreen Program and last: Real Time Policy +[2018-02-13T00:26:16.741] [INFO] cheese - inserting 1000 documents. first: Skaručna Basin and last: Woking Council election, 2000 +[2018-02-13T00:26:16.765] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:26:16.772] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:26:16.779] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:26:16.895] [INFO] cheese - inserting 1000 documents. first: Chorkie and last: Nødebo Church +[2018-02-13T00:26:16.979] [INFO] cheese - inserting 1000 documents. first: Tule River and last: Vancouver School Board +[2018-02-13T00:26:17.018] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:26:17.067] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:26:17.130] [INFO] cheese - inserting 1000 documents. first: Dominion Stores Ltd. and last: Category:1989 in North Korean football +[2018-02-13T00:26:17.180] [INFO] cheese - inserting 1000 documents. first: Kim Dinh and last: Əliabad, Lerik +[2018-02-13T00:26:17.182] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:26:17.243] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:26:17.253] [INFO] cheese - inserting 1000 documents. first: Rent (the musical) and last: G-network +[2018-02-13T00:26:17.322] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:26:17.417] [INFO] cheese - inserting 1000 documents. first: Tallest tokyo and last: Hungarian Food Safety Office +[2018-02-13T00:26:17.447] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:26:17.461] [INFO] cheese - inserting 1000 documents. first: Admire, Kansas and last: Rayville, Louisiana +[2018-02-13T00:26:17.498] [INFO] cheese - inserting 1000 documents. first: 2013 European Athletics U23 Championships – Men's 100 metres and last: Agonopterix muricolorella +[2018-02-13T00:26:17.531] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:26:17.627] [INFO] cheese - inserting 1000 documents. first: Kairwan and last: Category:Lierse S.K. players +[2018-02-13T00:26:17.629] [INFO] cheese - batch complete in: 1.766 secs +[2018-02-13T00:26:17.705] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:26:17.721] [INFO] cheese - inserting 1000 documents. first: Camp Delta (Guantanamo) and last: Category:File-Class Dartmouth College articles +[2018-02-13T00:26:17.732] [INFO] cheese - inserting 1000 documents. first: Yugoslavia at the 1987 Mediterranean Games and last: Turbonilla soniliana +[2018-02-13T00:26:17.763] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:26:17.769] [INFO] cheese - inserting 1000 documents. first: America's Got Talent 3 and last: File:1920 Poster.JPG +[2018-02-13T00:26:17.830] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T00:26:17.844] [INFO] cheese - inserting 1000 documents. first: Rokkaku Middle School and last: List of state leaders in 1568 BC +[2018-02-13T00:26:17.848] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:26:17.919] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:26:17.935] [INFO] cheese - inserting 1000 documents. first: Río de la Leche and last: Kiran Shekhawat +[2018-02-13T00:26:17.977] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:26:18.271] [INFO] cheese - inserting 1000 documents. first: Category:File-Class DC Comics articles and last: Olive de Nice +[2018-02-13T00:26:18.346] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:26:18.400] [INFO] cheese - inserting 1000 documents. first: Turbonilla sororia and last: Template:Anglicise rank/sandbox +[2018-02-13T00:26:18.433] [INFO] cheese - inserting 1000 documents. first: Romain Crevoisier and last: Paul Brown (footballer) +[2018-02-13T00:26:18.434] [INFO] cheese - inserting 1000 documents. first: Oho-Yama and last: Operation Ezra and Nehemiah +[2018-02-13T00:26:18.439] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:26:18.476] [INFO] cheese - inserting 1000 documents. first: Schnelldorf and last: Category:French Wars of Religion +[2018-02-13T00:26:18.484] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:26:18.497] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:26:18.525] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:26:18.643] [INFO] cheese - inserting 1000 documents. first: Val Robertson and last: Florence Hezlet +[2018-02-13T00:26:18.681] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:26:18.773] [INFO] cheese - inserting 1000 documents. first: Macedonian Prva Liga 1999–2000 and last: Template:Imagemap Germany district FRI +[2018-02-13T00:26:18.816] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:26:18.833] [INFO] cheese - inserting 1000 documents. first: Politechnika Świętokrzyska and last: Category:Short duration GRB +[2018-02-13T00:26:18.860] [INFO] cheese - inserting 1000 documents. first: Islam in Côte d'Ivoire and last: Category:Games with concealed rules +[2018-02-13T00:26:18.878] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:26:18.893] [INFO] cheese - inserting 1000 documents. first: Template:Sassoon family tree and last: Gogol, Goa +[2018-02-13T00:26:18.911] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:26:18.921] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Tibetan Buddhism and last: Wikipedia:Articles for deletion/Ashley Juggs (2nd nomination) +[2018-02-13T00:26:18.941] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:26:18.993] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:26:19.066] [INFO] cheese - inserting 1000 documents. first: Prehistory of Delaware and last: George L. Hicks +[2018-02-13T00:26:19.121] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:26:19.172] [INFO] cheese - inserting 1000 documents. first: Corporate insolvency and last: Noble Society +[2018-02-13T00:26:19.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eric Schomburg and last: Wikipedia:Votes for deletion/Everything I Do (I Do It for You) +[2018-02-13T00:26:19.233] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:26:19.243] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:26:19.338] [INFO] cheese - inserting 1000 documents. first: The Call of the Wild (film) and last: Dianne Brimble +[2018-02-13T00:26:19.346] [INFO] cheese - inserting 1000 documents. first: Converse, Louisiana and last: Smith Mills, Massachusetts +[2018-02-13T00:26:19.357] [INFO] cheese - inserting 1000 documents. first: Template:Name culture and last: Secretary of Finance and Public Credit (Mexico) +[2018-02-13T00:26:19.384] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:26:19.413] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:26:19.428] [INFO] cheese - batch complete in: 1.798 secs +[2018-02-13T00:26:19.452] [INFO] cheese - inserting 1000 documents. first: Portal:Pokémon/Understanding Pokémon/Header and last: Wikipedia:Articles for deletion/Pinewood derby car modifications +[2018-02-13T00:26:19.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Epistle to augusta and last: Wikipedia:Votes for deletion/Mills lighthouse +[2018-02-13T00:26:19.520] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:26:19.543] [INFO] cheese - inserting 1000 documents. first: Maritime force and last: Wikipedia:Wikipedia Signpost/Templates/Tag series/Usage chart +[2018-02-13T00:26:19.563] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:26:19.598] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:26:19.632] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mazzikabox.com and last: AISB (disambiguation) +[2018-02-13T00:26:19.709] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:26:19.814] [INFO] cheese - inserting 1000 documents. first: Bras de Brosne and last: Starkey, NY +[2018-02-13T00:26:19.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The Down and Outs and last: Wikipedia:Votes for deletion/Enjoyingtea +[2018-02-13T00:26:19.848] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:26:19.859] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:26:19.925] [INFO] cheese - inserting 1000 documents. first: Template:Swedish Army Officer Rank Insignia and last: Claude Davey +[2018-02-13T00:26:19.954] [INFO] cheese - inserting 1000 documents. first: James Bourchier Metro Station and last: Jean Vanek +[2018-02-13T00:26:19.967] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:26:19.987] [INFO] cheese - inserting 1000 documents. first: Eliyahu Zini and last: Kirirom I Hydro Power Plant +[2018-02-13T00:26:20.014] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:26:20.023] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:26:20.128] [INFO] cheese - inserting 1000 documents. first: Artin-Scheier theory and last: Wikipedia:Votes for deletion/Fred VII +[2018-02-13T00:26:20.167] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:26:20.255] [INFO] cheese - inserting 1000 documents. first: File:Basketcase2.jpg and last: Jake Mauer +[2018-02-13T00:26:20.342] [INFO] cheese - inserting 1000 documents. first: AJP (disambiguation) and last: French football Division 2 1946–47 +[2018-02-13T00:26:20.335] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:26:20.412] [INFO] cheese - inserting 1000 documents. first: Alba Roma and last: Lemlanti +[2018-02-13T00:26:20.449] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:26:20.511] [INFO] cheese - inserting 1000 documents. first: Template:User Kashmiri Proud and last: Bruno Langlois +[2018-02-13T00:26:20.546] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:26:20.567] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:26:20.580] [INFO] cheese - inserting 1000 documents. first: Herminio Blanco Mendoza and last: Good, WV +[2018-02-13T00:26:20.620] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:26:20.660] [INFO] cheese - inserting 1000 documents. first: Cranks restaurant and last: Category:Chaldean kings +[2018-02-13T00:26:20.706] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:26:20.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Abersee and last: Vranov +[2018-02-13T00:26:20.951] [INFO] cheese - inserting 1000 documents. first: Lyclene and last: SAO 64053 +[2018-02-13T00:26:20.961] [INFO] cheese - inserting 1000 documents. first: Bui and last: Yoshiki Hiraki +[2018-02-13T00:26:20.967] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:26:20.971] [INFO] cheese - inserting 1000 documents. first: Erich von Hornbostel and last: Coe Township, Michigan +[2018-02-13T00:26:20.978] [INFO] cheese - inserting 1000 documents. first: The St. Augustine Academy and last: Dzorgai Qiang language +[2018-02-13T00:26:21.001] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:26:21.006] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:26:21.028] [INFO] cheese - inserting 1000 documents. first: Lumparlanti and last: Wikipedia:Miscellany for deletion/User:Lizhandlin +[2018-02-13T00:26:21.035] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:26:21.059] [INFO] cheese - batch complete in: 1.631 secs +[2018-02-13T00:26:21.087] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:26:21.248] [INFO] cheese - inserting 1000 documents. first: After All The Wishing… and last: Spike UK +[2018-02-13T00:26:21.287] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:26:21.325] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The Lonely Sidewalk and last: Německý Brod +[2018-02-13T00:26:21.363] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:26:21.378] [INFO] cheese - inserting 1000 documents. first: Prohibition of Female Genital Mutilation (Scotland) Act 2005 and last: Morrison v. National Australia Bank +[2018-02-13T00:26:21.430] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:26:21.435] [INFO] cheese - inserting 1000 documents. first: Pingfang Qiang language and last: Cyprus – UK relations +[2018-02-13T00:26:21.481] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:26:21.522] [INFO] cheese - inserting 1000 documents. first: Category:People from Legionowo and last: Everstiluutnantti +[2018-02-13T00:26:21.552] [INFO] cheese - inserting 1000 documents. first: Prince Henry's Room and last: Apostolic fathers +[2018-02-13T00:26:21.595] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:26:21.628] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:26:21.647] [INFO] cheese - inserting 1000 documents. first: Allium waldsteinianum and last: Sandy Edmonds +[2018-02-13T00:26:21.684] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:26:21.746] [INFO] cheese - inserting 1000 documents. first: Mark Davies (Anglican bishop) and last: Voivodeship Road 430 (Poland) +[2018-02-13T00:26:21.786] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:26:21.842] [INFO] cheese - inserting 1000 documents. first: Category:Woodworking machines and last: Islamic New Year +[2018-02-13T00:26:21.845] [INFO] cheese - inserting 1000 documents. first: 2012 NCAA Division I FCS football rankings and last: Phineas And Ferb: Summer Belongs To You +[2018-02-13T00:26:21.889] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:26:21.920] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:26:21.985] [INFO] cheese - inserting 1000 documents. first: Blue schist and last: Coat of arms of Korybut +[2018-02-13T00:26:22.135] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:26:22.150] [INFO] cheese - inserting 1000 documents. first: False heather and last: Crescent (heraldry) +[2018-02-13T00:26:22.164] [INFO] cheese - inserting 1000 documents. first: Cleveland Symphony Orchestra and last: Category:Moroccan Maliki scholars +[2018-02-13T00:26:22.254] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:26:22.282] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:26:22.290] [INFO] cheese - inserting 1000 documents. first: Smithsonian Asian Pacific American Program and last: Kahar Barat +[2018-02-13T00:26:22.350] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:26:22.371] [INFO] cheese - inserting 1000 documents. first: Coldwater Township, Isabella County, Michigan and last: Interior Township, Michigan +[2018-02-13T00:26:22.405] [INFO] cheese - inserting 1000 documents. first: Underarms And Sideways and last: File:Fortune Dane.jpg +[2018-02-13T00:26:22.439] [INFO] cheese - batch complete in: 1.38 secs +[2018-02-13T00:26:22.468] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:26:22.576] [INFO] cheese - inserting 1000 documents. first: Hahn's Department Stores and last: El Lado oscuro del corazón +[2018-02-13T00:26:22.621] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:26:22.686] [INFO] cheese - inserting 1000 documents. first: Reformation of a contract and last: HLB International +[2018-02-13T00:26:22.696] [INFO] cheese - inserting 1000 documents. first: 1776: The Illustrated Edition and last: Meghan L. O’Sullivan +[2018-02-13T00:26:22.697] [INFO] cheese - inserting 1000 documents. first: Youth Groups and last: File:Interstate77 map.png +[2018-02-13T00:26:22.713] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Duke the Dog and last: Korney Shperling +[2018-02-13T00:26:22.732] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:26:22.735] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:26:22.786] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:26:22.795] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T00:26:22.969] [INFO] cheese - inserting 1000 documents. first: Wheelchair basketball at the 2012 Summer Paralympics – Men and last: Menahem Koretski +[2018-02-13T00:26:23.033] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:26:23.146] [INFO] cheese - inserting 1000 documents. first: File:LoverComeBack-poster.jpg and last: Buccaneers (film) +[2018-02-13T00:26:23.189] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:26:23.202] [INFO] cheese - inserting 1000 documents. first: December 1950 and last: List of visitors to Armenian Genocide Memorial +[2018-02-13T00:26:23.234] [INFO] cheese - inserting 1000 documents. first: Kanevskoi District and last: Mathías Cardacio +[2018-02-13T00:26:23.243] [INFO] cheese - inserting 1000 documents. first: Category:Resorts in the United Kingdom and last: Jining–Tongliao Railway +[2018-02-13T00:26:23.276] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:26:23.293] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:26:23.320] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:26:23.367] [INFO] cheese - inserting 1000 documents. first: File:Interstate80 map.png and last: Domeykite +[2018-02-13T00:26:23.429] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:26:23.543] [INFO] cheese - inserting 1000 documents. first: Boris at Last: -Feedbacker- and last: Template:Attached KML/Farm to Market Road 1938 +[2018-02-13T00:26:23.600] [INFO] cheese - inserting 1000 documents. first: Esenboğa Uluslararası Havalimanı and last: Philip L. Kohl +[2018-02-13T00:26:23.666] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:26:23.718] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:26:23.804] [INFO] cheese - inserting 1000 documents. first: Matchwood Township, Michigan and last: Jenkins Township, Crow Wing County, Minnesota +[2018-02-13T00:26:23.893] [INFO] cheese - inserting 1000 documents. first: 2015–16 Colorado State Rams men's basketball team and last: Peter Hines +[2018-02-13T00:26:23.906] [INFO] cheese - batch complete in: 1.467 secs +[2018-02-13T00:26:23.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Can Togay and last: Casey Carswell +[2018-02-13T00:26:23.955] [INFO] cheese - inserting 1000 documents. first: Information services and last: Wikipedia:Articles for deletion/Route M4 (Manhattan) +[2018-02-13T00:26:23.956] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:26:24.004] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:26:24.033] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:26:24.121] [INFO] cheese - inserting 1000 documents. first: Glenopolar angle and last: Alpha (band) +[2018-02-13T00:26:24.142] [INFO] cheese - inserting 1000 documents. first: Portal:Hong Kong/Selected biography/2 and last: Water maker and purifier +[2018-02-13T00:26:24.187] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:26:24.185] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:26:24.215] [INFO] cheese - inserting 1000 documents. first: Non-local object and last: The Hobbit: An Unexpected Journey +[2018-02-13T00:26:24.255] [INFO] cheese - inserting 1000 documents. first: Graeme Bean and last: Subalpine larkspur +[2018-02-13T00:26:24.277] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:26:24.290] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:26:24.417] [INFO] cheese - inserting 1000 documents. first: Percy baynes and last: Wikipedia:WikiProject Spam/LinkReports/dyras.com +[2018-02-13T00:26:24.451] [INFO] cheese - inserting 1000 documents. first: David Gordon Allen d’Aldecamb Lumsden of Cushnie and last: Deccan park +[2018-02-13T00:26:24.459] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:26:24.516] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:26:24.532] [INFO] cheese - inserting 1000 documents. first: 2015 South African Athletics Championships and last: Category:Penn Quakers soccer +[2018-02-13T00:26:24.541] [INFO] cheese - inserting 1000 documents. first: Ri Hak-son and last: Igor Melher +[2018-02-13T00:26:24.569] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:26:24.600] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:26:24.654] [INFO] cheese - inserting 1000 documents. first: Chenab Nagar Bridge and last: File:Reikäleipä view from above.jpg +[2018-02-13T00:26:24.657] [INFO] cheese - inserting 1000 documents. first: Estadio Manuel Ruíz de Lopera and last: Litter (animal) +[2018-02-13T00:26:24.704] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:26:24.756] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:26:24.917] [INFO] cheese - inserting 1000 documents. first: Lake Edward Township, Crow Wing County, Minnesota and last: Randall, Minnesota +[2018-02-13T00:26:24.927] [INFO] cheese - inserting 1000 documents. first: Philip Pembroke Stephens and last: Flying observatory +[2018-02-13T00:26:24.951] [INFO] cheese - inserting 1000 documents. first: Lee Garlington and last: Battle of Jarosław +[2018-02-13T00:26:24.962] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:26:24.979] [INFO] cheese - batch complete in: 1.073 secs +[2018-02-13T00:26:24.998] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:26:25.003] [INFO] cheese - inserting 1000 documents. first: Category:American college wrestling templates and last: Farm to Market Road 2491 (Texas) +[2018-02-13T00:26:25.052] [INFO] cheese - inserting 1000 documents. first: Bolivar Edwards Kemp and last: Church of Akureyri +[2018-02-13T00:26:25.067] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:26:25.099] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:26:25.104] [INFO] cheese - inserting 1000 documents. first: File:Cavity decay process.png and last: Sun tzu ping fa +[2018-02-13T00:26:25.177] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:26:25.212] [INFO] cheese - inserting 1000 documents. first: Jake paralysis and last: Jonsson +[2018-02-13T00:26:25.296] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:26:25.453] [INFO] cheese - inserting 1000 documents. first: NAfW election, 2003 and last: Category:Oil and gas companies of the Republic of the Congo +[2018-02-13T00:26:25.487] [INFO] cheese - inserting 1000 documents. first: Texas Farm to Market Road 2491 and last: Daytime Emmy Award for Outstanding Entertainment Talk Show Host +[2018-02-13T00:26:25.522] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:26:25.527] [INFO] cheese - inserting 1000 documents. first: Muzeum Geologiczne Instytutu Nauk Geologicznych PAN w Krakowie and last: Bucuria +[2018-02-13T00:26:25.534] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:26:25.578] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:26:25.600] [INFO] cheese - inserting 1000 documents. first: Papillon-Lefèvre syndrome and last: Craterellus lutescens +[2018-02-13T00:26:25.641] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:26:25.714] [INFO] cheese - inserting 1000 documents. first: Behor and last: Wikipedia:Teahouse/Questions/Archive 39 +[2018-02-13T00:26:25.780] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:26:25.942] [INFO] cheese - inserting 1000 documents. first: EOFAD and last: Constance Fligg Elam Tipper +[2018-02-13T00:26:26.014] [INFO] cheese - inserting 1000 documents. first: Queensboro Ward and last: Category:Welsh Jesuits +[2018-02-13T00:26:26.018] [INFO] cheese - inserting 1000 documents. first: Starshipsofa and last: Brachychiton populneus +[2018-02-13T00:26:26.025] [INFO] cheese - inserting 1000 documents. first: Sad Café and last: CRC Chemicals Rebel 500 +[2018-02-13T00:26:26.031] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:26:26.082] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:26:26.089] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:26:26.106] [INFO] cheese - inserting 1000 documents. first: File:Uzair 100 0787.JPG and last: File:Bobby Valentino - Slow Down.jpg +[2018-02-13T00:26:26.118] [INFO] cheese - inserting 1000 documents. first: Richardson Township, Morrison County, Minnesota and last: Donnelly, Minnesota +[2018-02-13T00:26:26.120] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:26:26.163] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:26:26.196] [INFO] cheese - inserting 1000 documents. first: Connexin 20 and last: Church of St Christopher, Bare +[2018-02-13T00:26:26.196] [INFO] cheese - batch complete in: 1.217 secs +[2018-02-13T00:26:26.245] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:26:26.403] [INFO] cheese - inserting 1000 documents. first: François Xavier Matthieu and last: Category:2010s Lithuanian television series endings +[2018-02-13T00:26:26.440] [INFO] cheese - inserting 1000 documents. first: Jacob Shaw (comics) and last: File:DeadHomiez.jpg +[2018-02-13T00:26:26.462] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:26:26.494] [INFO] cheese - inserting 1000 documents. first: Rebel 450 and last: Invalides (Paris RER) +[2018-02-13T00:26:26.507] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:26:26.534] [INFO] cheese - inserting 1000 documents. first: Uppal and last: Taboga +[2018-02-13T00:26:26.548] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:26:26.581] [INFO] cheese - inserting 1000 documents. first: File:Wikipedia-fonttest-chrome-0.2.149.29-windows-xp.png and last: Zalaháshágy +[2018-02-13T00:26:26.596] [INFO] cheese - inserting 1000 documents. first: Black-bellied Glossy-starling and last: St. Catherine's, Meath Street +[2018-02-13T00:26:26.598] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:26:26.644] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:26:26.644] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:26:26.857] [INFO] cheese - inserting 1000 documents. first: Les Belles-soeurs and last: Norberto Huezo +[2018-02-13T00:26:26.919] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:26:26.974] [INFO] cheese - inserting 1000 documents. first: Bruce Coburn and last: A.J. Carlson +[2018-02-13T00:26:27.010] [INFO] cheese - inserting 1000 documents. first: Category:Lithuanian television series endings by year and last: Thomas Browne (died 1891) +[2018-02-13T00:26:27.032] [INFO] cheese - inserting 1000 documents. first: Busaw and last: Ammann-Beenker tiling +[2018-02-13T00:26:27.039] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:26:27.075] [INFO] cheese - inserting 1000 documents. first: Princess Maria Antonietta of the Two Sicilies and last: Millwall v West Ham +[2018-02-13T00:26:27.108] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:26:27.115] [INFO] cheese - inserting 1000 documents. first: William Charlton (died 1567) and last: Category:Council of European Municipalities and Regions +[2018-02-13T00:26:27.117] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:26:27.183] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:26:27.185] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:26:27.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Jamal Lost and last: Microteaching +[2018-02-13T00:26:27.300] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:26:27.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Buchli drive and last: RND07 +[2018-02-13T00:26:27.411] [INFO] cheese - inserting 1000 documents. first: Donnelly Township, Stevens County, Minnesota and last: Ethel, Missouri +[2018-02-13T00:26:27.437] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:26:27.466] [INFO] cheese - inserting 1000 documents. first: Category:1907 establishments in Iceland and last: United States v. Mitchell (disambiguation) +[2018-02-13T00:26:27.564] [INFO] cheese - batch complete in: 1.342 secs +[2018-02-13T00:26:27.597] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:26:27.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Artist Point and last: Wikipedia:Votes for deletion/Simon R Jones +[2018-02-13T00:26:27.679] [INFO] cheese - inserting 1000 documents. first: R1200S and last: Kurumba Maldives +[2018-02-13T00:26:27.686] [INFO] cheese - inserting 1000 documents. first: Gastric ulcers and last: Rafael Vasquez (baseball) +[2018-02-13T00:26:27.712] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:26:27.766] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:26:27.797] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:26:27.847] [INFO] cheese - inserting 1000 documents. first: Millwall v west ham and last: Leonora of Castile +[2018-02-13T00:26:27.904] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:26:27.977] [INFO] cheese - inserting 1000 documents. first: The Nonesuch Press and last: Northern Securities Co. v. United States +[2018-02-13T00:26:28.023] [INFO] cheese - inserting 1000 documents. first: List of butterflies of The Gambia and last: Category:People associated with the University of Sri Jayewardenepura +[2018-02-13T00:26:28.029] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:26:28.057] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:26:28.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Deepcut Barracks and last: Stay on My Side Tonight +[2018-02-13T00:26:28.147] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:26:28.159] [INFO] cheese - inserting 1000 documents. first: Category:Judiciary of Honduras and last: Beki Adam +[2018-02-13T00:26:28.187] [INFO] cheese - inserting 1000 documents. first: United States Special Envoy for Northern Ireland and last: Wikipedia:Articles for deletion/Millennium Middle School +[2018-02-13T00:26:28.201] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:26:28.255] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:26:28.452] [INFO] cheese - inserting 1000 documents. first: Leptosaces mataea and last: Category:1980s disestablishments in Syria +[2018-02-13T00:26:28.470] [INFO] cheese - inserting 1000 documents. first: Khambaliya and last: Kharaosta +[2018-02-13T00:26:28.473] [INFO] cheese - inserting 1000 documents. first: File:RyanFrancis-USC12.jpeg and last: European Transport Safety Council +[2018-02-13T00:26:28.480] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:26:28.513] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:26:28.522] [INFO] cheese - inserting 1000 documents. first: Am ol Deyay-e Yek and last: Hayaviyyeh +[2018-02-13T00:26:28.541] [INFO] cheese - inserting 1000 documents. first: Real Madrid C.F. season 1902–03 and last: Jānis Cimze +[2018-02-13T00:26:28.550] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:26:28.577] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:26:28.629] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:26:28.641] [INFO] cheese - inserting 1000 documents. first: Handheld museum guide and last: Für immer (Warlock song) +[2018-02-13T00:26:28.811] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:26:28.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/2003 Doubles Champion and last: File:American Tourister logo.png +[2018-02-13T00:26:28.898] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:26:29.016] [INFO] cheese - inserting 1000 documents. first: Elizabeth Mary Driver and last: Berrya tahitensis +[2018-02-13T00:26:29.051] [INFO] cheese - inserting 1000 documents. first: Khersheh and last: United States Post Office-Visalia Town Center Station +[2018-02-13T00:26:29.058] [INFO] cheese - inserting 1000 documents. first: Burial (Extol album) and last: Lob Scows +[2018-02-13T00:26:29.069] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:26:29.094] [INFO] cheese - inserting 1000 documents. first: La Plata, Missouri and last: Hampton, Nebraska +[2018-02-13T00:26:29.112] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:26:29.121] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:26:29.147] [INFO] cheese - inserting 1000 documents. first: Portal:Judaism/Weekly Torah portion/Bereishit and last: Wikipedia:WikiProject Christianity/Church of the Nazarene work group/Category +[2018-02-13T00:26:29.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Dermovision and last: Wikipedia:Votes for deletion/Yara-ma-ya-hoo +[2018-02-13T00:26:29.179] [INFO] cheese - batch complete in: 1.613 secs +[2018-02-13T00:26:29.203] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:26:29.206] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:26:29.311] [INFO] cheese - inserting 1000 documents. first: Paleochannel and last: Forgive me (leona song) +[2018-02-13T00:26:29.374] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:26:29.433] [INFO] cheese - inserting 1000 documents. first: Category:Bahrain-Qatar relations and last: Tampureh-ye Ruisheyd +[2018-02-13T00:26:29.451] [INFO] cheese - inserting 1000 documents. first: Berrya vescoana and last: Lifted Up (1985) +[2018-02-13T00:26:29.462] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:26:29.489] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Frequencies of Brilliance and last: Touch-Tone Terrorists +[2018-02-13T00:26:29.507] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:26:29.549] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:26:29.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Christianity/Church of the Nazarene work group/Content and last: Up in the Air (soundtrack) +[2018-02-13T00:26:29.616] [INFO] cheese - inserting 1000 documents. first: File:CM big snow.jpg and last: Taranto air strike +[2018-02-13T00:26:29.615] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:26:29.673] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:26:29.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Proxymed and last: Monkey Mia, Western Australia +[2018-02-13T00:26:29.792] [INFO] cheese - inserting 1000 documents. first: Template:User Ps 3 and last: Category:1995 establishments in New Zealand +[2018-02-13T00:26:29.799] [INFO] cheese - inserting 1000 documents. first: FC Shakhtar Donetsk Reserves and Youth Team and last: Rugby Quebec +[2018-02-13T00:26:29.803] [INFO] cheese - batch complete in: 0.253 secs +[2018-02-13T00:26:29.830] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:26:29.860] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:26:29.995] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SHM right/2 and last: File:Kurac, pička, govno, sisa.jpg +[2018-02-13T00:26:30.026] [INFO] cheese - inserting 1000 documents. first: Smooth horsetail and last: Udarnenskoye Urban Settlement +[2018-02-13T00:26:30.036] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:26:30.077] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:26:30.109] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of Ecuador and last: Wikipedia:Articles for deletion/Tommaso Cardile +[2018-02-13T00:26:30.150] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:26:30.182] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Camilla Hall and last: Ray Hayworth +[2018-02-13T00:26:30.207] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:26:30.271] [INFO] cheese - inserting 1000 documents. first: Bettadasanapura, Bangalore and last: Sehjowal chak no.11 +[2018-02-13T00:26:30.312] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:26:30.362] [INFO] cheese - inserting 1000 documents. first: File:The Apple (1980) Soundtrack.jpg and last: Meigs County (disambiguation) +[2018-02-13T00:26:30.403] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:26:30.476] [INFO] cheese - inserting 1000 documents. first: No Me Sé Rajar and last: Pressure (Billy Ocean song) +[2018-02-13T00:26:30.479] [INFO] cheese - inserting 1000 documents. first: Category:French classical musicians by instrument and last: Mississippi Marine Brigade +[2018-02-13T00:26:30.485] [INFO] cheese - inserting 1000 documents. first: Plains lovegrass and last: File:Qian Xiuling cropped square in 1933.JPG +[2018-02-13T00:26:30.496] [INFO] cheese - inserting 1000 documents. first: W. R. Ogilvie-Grant and last: Scharley +[2018-02-13T00:26:30.524] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:26:30.533] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:26:30.539] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:26:30.559] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:26:30.639] [INFO] cheese - inserting 1000 documents. first: Hordville, Nebraska and last: Shamong Township, New Jersey +[2018-02-13T00:26:30.689] [INFO] cheese - inserting 1000 documents. first: Choreutis incisalis and last: Chiaia funicular +[2018-02-13T00:26:30.692] [INFO] cheese - inserting 1000 documents. first: File:Joshiraku manga volume 1 cover.jpg and last: Ground Master 400 +[2018-02-13T00:26:30.719] [INFO] cheese - batch complete in: 1.54 secs +[2018-02-13T00:26:30.744] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:26:30.750] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:26:30.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Integration of Internet Explorer and Windows and last: Wikipedia:Votes for deletion/Canvasion +[2018-02-13T00:26:30.912] [INFO] cheese - inserting 1000 documents. first: Spatzenhausen and last: Underground rivers in London +[2018-02-13T00:26:30.916] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:26:30.939] [INFO] cheese - inserting 1000 documents. first: Henry Winslow Woollett and last: 1994 European Athletics Championships – Women's 100 metres hurdles +[2018-02-13T00:26:30.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/schylaske.co.nf and last: Template:Infobox legislative election/sandbox +[2018-02-13T00:26:30.959] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:26:30.989] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:26:30.999] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:26:31.220] [INFO] cheese - inserting 1000 documents. first: Neuchâtel Open SBS Trophy and last: Low Impact Ion Cannon +[2018-02-13T00:26:31.277] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:26:31.326] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Good Shepherd (2006 film) and last: Wikipedia:Votes for deletion/Alfredo M. Bonanno +[2018-02-13T00:26:31.327] [INFO] cheese - inserting 1000 documents. first: Isovaleryl-coa dehydrogenase and last: Template:Nebraska Pageant Winners +[2018-02-13T00:26:31.379] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:26:31.378] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:26:31.476] [INFO] cheese - inserting 1000 documents. first: Falla monument and last: 2003 Greenlandic Men's Football Championship +[2018-02-13T00:26:31.479] [INFO] cheese - inserting 1000 documents. first: Münsterhausen and last: Callan +[2018-02-13T00:26:31.517] [INFO] cheese - inserting 1000 documents. first: Alt Pirineu i Aran and last: List of international organization leaders in 2008 +[2018-02-13T00:26:31.525] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:26:31.548] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:26:31.580] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:26:31.675] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Carlo Beenakker and last: Trinity Island +[2018-02-13T00:26:31.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space 1026 and last: File:Energy Pointer Sisters album.jpg +[2018-02-13T00:26:31.716] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:26:31.729] [INFO] cheese - inserting 1000 documents. first: Category:1955 Canadian television series endings and last: List of names for the Volkswagen Type 1 +[2018-02-13T00:26:31.731] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:26:31.801] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:26:31.915] [INFO] cheese - inserting 1000 documents. first: Michigan–Minnesota football rivalry and last: Steriruncic 7-cube +[2018-02-13T00:26:31.958] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:26:31.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Justin Sofio and last: Robert H. Waterman Jr. +[2018-02-13T00:26:31.980] [INFO] cheese - inserting 1000 documents. first: Velaga Dizdarevic and last: Ponder (horse) +[2018-02-13T00:26:31.993] [INFO] cheese - inserting 1000 documents. first: Dermotoxins and last: James Rayside +[2018-02-13T00:26:31.999] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:26:32.024] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:26:32.047] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:26:32.125] [INFO] cheese - inserting 1000 documents. first: Pride Of The Prairie and last: German submarine U-393 +[2018-02-13T00:26:32.166] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:26:32.208] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Radio KoL and last: Wikipedia:Votes for deletion/Four dumb kids +[2018-02-13T00:26:32.239] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:26:32.269] [INFO] cheese - inserting 1000 documents. first: Labinskiy District and last: Wikipedia:Meetup/Los Angeles +[2018-02-13T00:26:32.310] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:26:32.354] [INFO] cheese - inserting 1000 documents. first: Puerto Limon, Costa Rica and last: Sutton School +[2018-02-13T00:26:32.392] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:26:32.396] [INFO] cheese - inserting 1000 documents. first: Steriruncicantic 7-cube and last: Revolt (Muse song) +[2018-02-13T00:26:32.402] [INFO] cheese - inserting 1000 documents. first: Batavian Society of Arts and Sciences and last: Henry Justin Alan +[2018-02-13T00:26:32.447] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:26:32.460] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:26:32.513] [INFO] cheese - inserting 1000 documents. first: Kjersti Horn and last: West Virginia University-Morgantown +[2018-02-13T00:26:32.545] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:26:32.577] [INFO] cheese - inserting 1000 documents. first: Southampton Township, New Jersey and last: East Otto, New York +[2018-02-13T00:26:32.646] [INFO] cheese - inserting 1000 documents. first: Peter Kivy and last: Category:People from Valparaíso Province +[2018-02-13T00:26:32.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Chigozie okonkwo and last: Assonet Bay +[2018-02-13T00:26:32.695] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:26:32.730] [INFO] cheese - batch complete in: 2.011 secs +[2018-02-13T00:26:32.746] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:26:32.819] [INFO] cheese - inserting 1000 documents. first: Albertville, AL μSA and last: History of the constellations +[2018-02-13T00:26:32.832] [INFO] cheese - inserting 1000 documents. first: Cleo Merode and last: Arizona Route 202 +[2018-02-13T00:26:32.834] [INFO] cheese - inserting 1000 documents. first: London City & Midland Bank and last: Liubeshiv +[2018-02-13T00:26:32.872] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:26:32.884] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:26:32.894] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:26:32.915] [INFO] cheese - inserting 1000 documents. first: West Virginia University Morgantown and last: Victory Square War Memorial +[2018-02-13T00:26:32.958] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:26:33.141] [INFO] cheese - inserting 1000 documents. first: Joe Devine (scout) and last: Wedding arrhae +[2018-02-13T00:26:33.390] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:26:33.519] [INFO] cheese - inserting 1000 documents. first: Jonathan Dorr Bradley and last: United Arab Emirates Bahrain relations +[2018-02-13T00:26:33.544] [INFO] cheese - inserting 1000 documents. first: Hon Alexandra Knatchbull and last: File:Hand water pump.jpg +[2018-02-13T00:26:33.645] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:26:33.689] [INFO] cheese - inserting 1000 documents. first: Mme. Sun Yat-sen and last: Matic Kotnik +[2018-02-13T00:26:33.694] [INFO] cheese - inserting 1000 documents. first: David Preiss and last: Pierre Lambert de la Motte +[2018-02-13T00:26:33.738] [INFO] cheese - inserting 1000 documents. first: Hassō no kamae and last: File:Cyrilalbum.jpg +[2018-02-13T00:26:33.812] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T00:26:33.902] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T00:26:33.907] [INFO] cheese - batch complete in: 1.022 secs +[2018-02-13T00:26:34.016] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T00:26:34.209] [INFO] cheese - inserting 1000 documents. first: Bahrain United Arab Emirates relations and last: Gagea gussonei +[2018-02-13T00:26:34.313] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:26:34.354] [INFO] cheese - inserting 1000 documents. first: Naik, J. P. and last: Ankara Railway Station +[2018-02-13T00:26:34.377] [INFO] cheese - inserting 1000 documents. first: Hassan Mohamud and last: Virgilio Rosario +[2018-02-13T00:26:34.404] [INFO] cheese - inserting 1000 documents. first: Júlio de Castilhos, RS and last: Traditional games +[2018-02-13T00:26:34.405] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Kinkead and last: Wikipedia:Articles for deletion/Eeth Koth +[2018-02-13T00:26:34.420] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:26:34.481] [INFO] cheese - inserting 1000 documents. first: Crossing Guard and last: A Letter to a Hindu +[2018-02-13T00:26:34.479] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:26:34.486] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T00:26:34.511] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:26:34.603] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:26:34.803] [INFO] cheese - inserting 1000 documents. first: Bundesvision Song Contest 2010 and last: Portal:Current events/March 2014/Sidebar +[2018-02-13T00:26:34.861] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:26:34.907] [INFO] cheese - inserting 1000 documents. first: File:Sword of chaos.jpg and last: James Allan (disambiguation) +[2018-02-13T00:26:34.919] [INFO] cheese - inserting 1000 documents. first: Department of Primary Industry and last: Weeds +[2018-02-13T00:26:34.919] [INFO] cheese - inserting 1000 documents. first: Circus Redickuless and last: Vita Bergen +[2018-02-13T00:26:34.942] [INFO] cheese - inserting 1000 documents. first: File:G fr navarea-logo.png and last: Arne & Carlos +[2018-02-13T00:26:34.951] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:26:34.954] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:26:34.959] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:26:35.009] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:26:35.090] [INFO] cheese - inserting 1000 documents. first: 2009 IPP Trophy and last: Kathleen Cotter +[2018-02-13T00:26:35.155] [INFO] cheese - inserting 1000 documents. first: East Randolph, New York and last: Pitcairn, New York +[2018-02-13T00:26:35.244] [INFO] cheese - inserting 1000 documents. first: False helmet orchid and last: Tommy Gunn (pornographic actor) +[2018-02-13T00:26:35.253] [INFO] cheese - inserting 1000 documents. first: Víctor Manuelle and last: Wikipedia:Votes for deletion/David McKenzie +[2018-02-13T00:26:35.253] [INFO] cheese - batch complete in: 2.523 secs +[2018-02-13T00:26:35.260] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:26:35.302] [INFO] cheese - inserting 1000 documents. first: 1952 Nippon Professional Baseball season and last: Lord Shield +[2018-02-13T00:26:35.339] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:26:35.346] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:26:35.392] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:26:35.395] [INFO] cheese - inserting 1000 documents. first: Black Suit and last: List of Registered Historic Places in Albany County, New York +[2018-02-13T00:26:35.410] [INFO] cheese - inserting 1000 documents. first: Wallum sedge frog and last: Close Encounters of the Fifth Kind +[2018-02-13T00:26:35.445] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:26:35.478] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:26:35.628] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/Gryphon2 and last: Postlarva +[2018-02-13T00:26:35.661] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Sakai, software project and last: Wikipedia:Votes for deletion/Sleepyshat +[2018-02-13T00:26:35.699] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:26:35.714] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:26:35.779] [INFO] cheese - inserting 1000 documents. first: Category:2010s disestablishments in Ireland and last: 2000 Oklahoma State Cowboys football team +[2018-02-13T00:26:35.813] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:26:35.814] [INFO] cheese - inserting 1000 documents. first: File:Official Cover Art of Amelia and Me by Heather Stemp.png and last: Colin McLean +[2018-02-13T00:26:35.837] [INFO] cheese - inserting 1000 documents. first: Arthur Devlin (disambiguation) and last: File:Grimus cover.jpg +[2018-02-13T00:26:35.865] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:26:35.886] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:26:35.924] [INFO] cheese - inserting 1000 documents. first: Category:1876 poems and last: Lunar letters +[2018-02-13T00:26:35.975] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:26:36.315] [INFO] cheese - inserting 1000 documents. first: Libertarian perspectives on marriage and last: Acadamh Ríoga na hÉireann +[2018-02-13T00:26:36.380] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:26:36.455] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Asuka Fukuda and last: Wikipedia:Articles for deletion/.hack/SIGN +[2018-02-13T00:26:36.459] [INFO] cheese - inserting 1000 documents. first: Béla Bácskai and last: Scouting in Orkney +[2018-02-13T00:26:36.475] [INFO] cheese - inserting 1000 documents. first: Lycaenesthes smithi and last: Portal:Politics/Selected article/18 +[2018-02-13T00:26:36.489] [INFO] cheese - inserting 1000 documents. first: Category:International schools in Gabon and last: Wikipedia:CYCMISSING +[2018-02-13T00:26:36.525] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T00:26:36.538] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:26:36.539] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:26:36.585] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:26:36.671] [INFO] cheese - inserting 1000 documents. first: Italian cricket team and last: Du Shi +[2018-02-13T00:26:36.744] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:26:36.955] [INFO] cheese - inserting 1000 documents. first: File:Logo of the NSLF.jpg and last: Category:2000 disestablishments in Israel +[2018-02-13T00:26:36.957] [INFO] cheese - inserting 1000 documents. first: Your Starter for... and last: Jaama +[2018-02-13T00:26:37.006] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:26:37.014] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:26:37.047] [INFO] cheese - inserting 1000 documents. first: Nèiměnggǔ and last: KZHN (AM) +[2018-02-13T00:26:37.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Cycling Missing and last: Lanceleaf thoroughwort +[2018-02-13T00:26:37.108] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:26:37.114] [INFO] cheese - inserting 1000 documents. first: Tere Mere Sapne (1996 film) and last: Qadi Numan +[2018-02-13T00:26:37.112] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:26:37.125] [INFO] cheese - inserting 1000 documents. first: Rensselaer Falls, New York and last: Brevard, North Carolina +[2018-02-13T00:26:37.155] [INFO] cheese - inserting 1000 documents. first: Ivory Joe Hunter and last: Compression Labs Inc. +[2018-02-13T00:26:37.159] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:26:37.218] [INFO] cheese - batch complete in: 1.965 secs +[2018-02-13T00:26:37.220] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:26:37.414] [INFO] cheese - inserting 1000 documents. first: Jaama (Illuka) and last: Rarities (The Beatles US album) +[2018-02-13T00:26:37.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Global Allergy Network and last: Andreas Bomba +[2018-02-13T00:26:37.452] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:26:37.453] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:26:37.494] [INFO] cheese - inserting 1000 documents. first: False fennel and last: Jones Island (South Australia) +[2018-02-13T00:26:37.536] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:26:37.569] [INFO] cheese - inserting 1000 documents. first: Danny Spanos and last: Portal:Poetry/Quotes/2 +[2018-02-13T00:26:37.625] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:26:37.715] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Worcestershire and last: File:SebastianArcelus2008.jpg +[2018-02-13T00:26:37.767] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:26:37.806] [INFO] cheese - inserting 1000 documents. first: Shir Ali and last: Category:Transport infrastructure completed in 1823 +[2018-02-13T00:26:37.807] [INFO] cheese - inserting 1000 documents. first: Chaudhry Rehmat Ali’s and last: Wikipedia:WikiProject Missing encyclopedic articles/Antarctica/R1 +[2018-02-13T00:26:37.837] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:26:37.842] [INFO] cheese - inserting 1000 documents. first: Portal:Volcanoes/Selected article/16 and last: Thomas Björn Open +[2018-02-13T00:26:37.883] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:26:37.899] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:26:37.960] [INFO] cheese - inserting 1000 documents. first: Bullet Babe and last: Gagea heldreichii +[2018-02-13T00:26:38.035] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:26:38.142] [INFO] cheese - inserting 1000 documents. first: Asplundia allenii and last: Template:Local Government Areas of the Northern Territory +[2018-02-13T00:26:38.189] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:26:38.263] [INFO] cheese - inserting 1000 documents. first: File:Galemys pyrenaicus 01 by-dpc.jpg and last: Category:United States presidential campaigns, 2008 +[2018-02-13T00:26:38.274] [INFO] cheese - inserting 1000 documents. first: 1360 AM and last: Norwest Center (Minneapolis) +[2018-02-13T00:26:38.304] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:26:38.336] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:26:38.499] [INFO] cheese - inserting 1000 documents. first: Category:Anglican bishops of Calgary and last: Helen Quintana Cordero +[2018-02-13T00:26:38.565] [INFO] cheese - inserting 1000 documents. first: Ayiya and last: Cortland Winn +[2018-02-13T00:26:38.644] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:26:38.687] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:26:38.733] [INFO] cheese - inserting 1000 documents. first: Gagea montana and last: Wikipedia:Sockpuppet investigations/Mr.sahota +[2018-02-13T00:26:38.815] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:26:38.885] [INFO] cheese - inserting 1000 documents. first: Haydn's Opus 76 String Quartets and last: Template:Ss icon +[2018-02-13T00:26:38.913] [INFO] cheese - inserting 1000 documents. first: Rosman, North Carolina and last: Mariemont, Ohio +[2018-02-13T00:26:38.926] [INFO] cheese - inserting 1000 documents. first: Goverment of Pakistan and last: Category:Organizations based in Kobe +[2018-02-13T00:26:38.933] [INFO] cheese - inserting 1000 documents. first: File:Gunnerkrigg SecondTreatise.jpg and last: Miroslav Klinger +[2018-02-13T00:26:38.934] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:26:38.985] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:26:39.015] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:26:39.026] [INFO] cheese - batch complete in: 1.807 secs +[2018-02-13T00:26:39.061] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Melvin and Teddy and last: Wikipedia:Votes for deletion/L'inderdit +[2018-02-13T00:26:39.101] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:26:39.113] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Finalfantasy23 and last: Carl, Duke of Ostrogothland +[2018-02-13T00:26:39.156] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:26:39.191] [INFO] cheese - inserting 1000 documents. first: Lucky Buddha Beer and last: Hangard Wood +[2018-02-13T00:26:39.240] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:26:39.329] [INFO] cheese - inserting 1000 documents. first: Al-Saika and last: Wikipedia:Votes for deletion/Axelrodian education +[2018-02-13T00:26:39.369] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:26:39.376] [INFO] cheese - inserting 1000 documents. first: Zabłocki, Janusz and last: Court of Summary Jurisdiction +[2018-02-13T00:26:39.389] [INFO] cheese - inserting 1000 documents. first: Tony the gun bonello and last: Ballybrown GAA +[2018-02-13T00:26:39.414] [INFO] cheese - inserting 1000 documents. first: Robin White (African Journalist) and last: History of Wrocław +[2018-02-13T00:26:39.430] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:26:39.446] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:26:39.504] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:26:39.713] [INFO] cheese - inserting 1000 documents. first: Deutsch-Französisches Gymnasium Freiburg im Breisgau and last: Cryptolechia vestalis +[2018-02-13T00:26:39.722] [INFO] cheese - inserting 1000 documents. first: Topsey Sinden and last: Sudbury municipal election, 1950 +[2018-02-13T00:26:39.775] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:26:39.791] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:26:39.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Meat helmet and last: Template:European Poker Awards Player of the Year +[2018-02-13T00:26:39.865] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:26:39.978] [INFO] cheese - inserting 1000 documents. first: File:Oklahoma City Oklahoma.jpg and last: John Hunt (New South Wales politician) +[2018-02-13T00:26:40.049] [INFO] cheese - inserting 1000 documents. first: Template:Louisiana–Monroe Warhawks men's basketball coach navbox and last: Pop'n Music Script +[2018-02-13T00:26:40.060] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:26:40.076] [INFO] cheese - inserting 1000 documents. first: William David Pearlman and last: Category:Unincorporated communities in Santa Rosa County, Florida +[2018-02-13T00:26:40.119] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:26:40.124] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:26:40.156] [INFO] cheese - inserting 1000 documents. first: Harpalyce albella and last: Witch mark +[2018-02-13T00:26:40.195] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:26:40.320] [INFO] cheese - inserting 1000 documents. first: East Central Texas forests and last: Jakabaring Stadium +[2018-02-13T00:26:40.363] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:26:40.433] [INFO] cheese - inserting 1000 documents. first: Portal:Toys/Selected article/14 and last: Athletics at the 2012 Summer Paralympics – Women's 200 metres T34 +[2018-02-13T00:26:40.502] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:26:40.507] [INFO] cheese - inserting 1000 documents. first: South Dakota Highway 89 and last: TV 69 +[2018-02-13T00:26:40.522] [INFO] cheese - inserting 1000 documents. first: Selenite (ion) and last: Harry Lumley (baseball) +[2018-02-13T00:26:40.569] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:26:40.578] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:26:40.592] [INFO] cheese - inserting 1000 documents. first: Pulmonary gas exchange and last: Category:Grade I listed ships +[2018-02-13T00:26:40.630] [INFO] cheese - inserting 1000 documents. first: Monfort Heights East, Ohio and last: Goldsby, Oklahoma +[2018-02-13T00:26:40.630] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:26:40.695] [INFO] cheese - inserting 1000 documents. first: Judy Coser and last: SQH +[2018-02-13T00:26:40.718] [INFO] cheese - batch complete in: 1.691 secs +[2018-02-13T00:26:40.749] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:26:40.754] [INFO] cheese - inserting 1000 documents. first: Geoffrey peterson and last: File:Clark Shaughnessy.jpg +[2018-02-13T00:26:40.797] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:26:40.923] [INFO] cheese - inserting 1000 documents. first: File:The Fabled Fourth Graders of Aesop Elementary School.jpg and last: No Fond Return Of Love +[2018-02-13T00:26:40.960] [INFO] cheese - inserting 1000 documents. first: Gatekeepers (game show) and last: Category:Academics of the Helsinki University of Technology +[2018-02-13T00:26:40.980] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:26:40.988] [INFO] cheese - inserting 1000 documents. first: Olean, NY μSA and last: Kingsville, TX μSA +[2018-02-13T00:26:41.010] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:26:41.044] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:26:41.055] [INFO] cheese - inserting 1000 documents. first: Kodakara and last: JFK National Historic Site +[2018-02-13T00:26:41.068] [INFO] cheese - inserting 1000 documents. first: Earthquakes in 1913 and last: 1927 in the Philippines +[2018-02-13T00:26:41.101] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:26:41.121] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:26:41.185] [INFO] cheese - inserting 1000 documents. first: The Moon and the Nightspirit and last: PADM +[2018-02-13T00:26:41.227] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:26:41.255] [INFO] cheese - inserting 1000 documents. first: A Man Rides Through and last: File:SchoolsPlusLogo.jpg +[2018-02-13T00:26:41.298] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:26:41.402] [INFO] cheese - inserting 1000 documents. first: Category:1995 establishments in the Bahamas and last: Bell 47-G2 +[2018-02-13T00:26:41.421] [INFO] cheese - inserting 1000 documents. first: Game Design Workshop and last: Gayton, Merseyside +[2018-02-13T00:26:41.448] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:26:41.476] [INFO] cheese - inserting 1000 documents. first: 1928 in the Philippines and last: Category:1786 establishments in Virginia +[2018-02-13T00:26:41.509] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:26:41.568] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:26:41.651] [INFO] cheese - inserting 1000 documents. first: Garcinia prainiana and last: Stock Market Regulation in the United States +[2018-02-13T00:26:41.658] [INFO] cheese - inserting 1000 documents. first: Template:USCongRep/MD/81 and last: Wikipedia:Articles for deletion/List of streets in Manchester +[2018-02-13T00:26:41.703] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:26:41.713] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:26:41.722] [INFO] cheese - inserting 1000 documents. first: Vincent Obsitnik and last: Utah State Route 66 (1931) +[2018-02-13T00:26:41.817] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:26:41.936] [INFO] cheese - inserting 1000 documents. first: 1967 Iowa–Minnesota tornado outbreak and last: File:Rago1470 160AJ MiddxUni.JPG +[2018-02-13T00:26:41.946] [INFO] cheese - inserting 1000 documents. first: Innovisions and last: Gnathifera aphronesa +[2018-02-13T00:26:41.962] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Cylindrophyllum and last: Template:Bfidb series/doc +[2018-02-13T00:26:41.989] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:26:41.990] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:26:42.024] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:26:42.189] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of County Sligo and last: Executive Council of Massachusetts +[2018-02-13T00:26:42.190] [INFO] cheese - inserting 1000 documents. first: Template:Social Democratic Party of Switzerland/meta/color and last: Jason Holley +[2018-02-13T00:26:42.220] [INFO] cheese - inserting 1000 documents. first: Belangalo State Forest and last: Kraul Mountains +[2018-02-13T00:26:42.245] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:26:42.266] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:26:42.270] [INFO] cheese - inserting 1000 documents. first: Newcastle, Oklahoma and last: Strausstown, Pennsylvania +[2018-02-13T00:26:42.292] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:26:42.368] [INFO] cheese - batch complete in: 1.65 secs +[2018-02-13T00:26:42.395] [INFO] cheese - inserting 1000 documents. first: File:Gdleen novel cover vol 1.jpg and last: Athletics at the 2007 Summer Universiade – Women's 4 × 400 metres relay +[2018-02-13T00:26:42.403] [INFO] cheese - inserting 1000 documents. first: Gnathifera eurybias and last: Team Øster Hus-Ridley +[2018-02-13T00:26:42.408] [INFO] cheese - inserting 1000 documents. first: Interstate 90 in Wyoming and last: List of Canadian ambassadors to Israel +[2018-02-13T00:26:42.451] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:26:42.464] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:26:42.520] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:26:42.666] [INFO] cheese - inserting 1000 documents. first: Proper divisors and last: Wikipedia:Articles for deletion/Barikad Crew +[2018-02-13T00:26:42.692] [INFO] cheese - inserting 1000 documents. first: Oslo Cup and last: Lists of English words of international origin +[2018-02-13T00:26:42.713] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:26:42.741] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:26:42.784] [INFO] cheese - inserting 1000 documents. first: Barbourville and last: Ton Class Minesweepers +[2018-02-13T00:26:42.844] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:26:42.865] [INFO] cheese - inserting 1000 documents. first: Duwayne Smart and last: Category:Songs written by Tomomi Ogawa +[2018-02-13T00:26:42.873] [INFO] cheese - inserting 1000 documents. first: Dover street market and last: GT3 +[2018-02-13T00:26:42.879] [INFO] cheese - inserting 1000 documents. first: Category:Austria–Poland relations and last: Frost Bank Tower (San Antonio) +[2018-02-13T00:26:42.961] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:26:42.968] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:26:43.013] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:26:43.160] [INFO] cheese - inserting 1000 documents. first: Berceuse (in C major) Op. 2, for piano and last: Saint Vitalis (disambiguation) +[2018-02-13T00:26:43.205] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:26:43.233] [INFO] cheese - inserting 1000 documents. first: Meyer-Hanno and last: File:The Heritage Fleet logo.png +[2018-02-13T00:26:43.273] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:26:43.367] [INFO] cheese - inserting 1000 documents. first: Halcyon Class Minesweepers and last: Sorrent +[2018-02-13T00:26:43.423] [INFO] cheese - inserting 1000 documents. first: John Francis Hayes and last: File:The Last Outlaw 1927 Poster.jpg +[2018-02-13T00:26:43.433] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:26:43.472] [INFO] cheese - inserting 1000 documents. first: Category:Bluffton Beavers and last: Cotul Ostritei +[2018-02-13T00:26:43.487] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:26:43.493] [INFO] cheese - inserting 1000 documents. first: Daniel L. Ackman and last: M8 Buford +[2018-02-13T00:26:43.559] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:26:43.564] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:26:43.655] [INFO] cheese - inserting 1000 documents. first: PAVC and last: John Fleming (1743-1802) +[2018-02-13T00:26:43.685] [INFO] cheese - inserting 1000 documents. first: John Rolph (judge) and last: Mahmoad Abdah v. George W. Bush +[2018-02-13T00:26:43.698] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:26:43.733] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:26:43.813] [INFO] cheese - inserting 1000 documents. first: Tilden Township, Berks County, Pennsylvania and last: Lima, Pennsylvania +[2018-02-13T00:26:43.868] [INFO] cheese - inserting 1000 documents. first: René Sully Prudhomme and last: Cariamaen +[2018-02-13T00:26:43.913] [INFO] cheese - batch complete in: 1.545 secs +[2018-02-13T00:26:43.929] [INFO] cheese - inserting 1000 documents. first: Mark Milligan and last: Wikipedia:Articles for deletion/Prussian Blue (band) +[2018-02-13T00:26:43.929] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:26:44.009] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:26:44.020] [INFO] cheese - inserting 1000 documents. first: Mălinești and last: Bankruptcy in Puerto Rico +[2018-02-13T00:26:44.059] [INFO] cheese - inserting 1000 documents. first: Sparta Township, Knox County, Illinois and last: Category:Hilltop Hoods members +[2018-02-13T00:26:44.084] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:26:44.102] [INFO] cheese - inserting 1000 documents. first: File:War-turks-persian.jpg and last: Metrorail Witwatersrand +[2018-02-13T00:26:44.120] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:26:44.161] [INFO] cheese - inserting 1000 documents. first: C. Burton Hotel and last: Flor Silvestre (1942 Film) +[2018-02-13T00:26:44.160] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:26:44.253] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:26:44.356] [INFO] cheese - inserting 1000 documents. first: File:Official Rain's Coming World Tour poster.jpg and last: Denver (song) +[2018-02-13T00:26:44.395] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:26:44.472] [INFO] cheese - inserting 1000 documents. first: Darcy law and last: File:Cutleraflatmancover.jpg +[2018-02-13T00:26:44.479] [INFO] cheese - inserting 1000 documents. first: Category:Argentine male writers and last: Template:2015–16 National League table +[2018-02-13T00:26:44.523] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:26:44.548] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:26:44.598] [INFO] cheese - inserting 1000 documents. first: Van Frassen and last: Striker (comic) +[2018-02-13T00:26:44.593] [INFO] cheese - inserting 1000 documents. first: Metrorail (Johannesburg) and last: Alvania moniziana +[2018-02-13T00:26:44.644] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:26:44.668] [INFO] cheese - inserting 1000 documents. first: Çay Qaraqoyunlu and last: Nseries +[2018-02-13T00:26:44.672] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:26:44.730] [INFO] cheese - inserting 1000 documents. first: United Kingdom - Mexico relations and last: Alex Byrne +[2018-02-13T00:26:44.729] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:26:44.760] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:26:44.948] [INFO] cheese - inserting 1000 documents. first: Category:War films based on actual events and last: Chairman Drek +[2018-02-13T00:26:44.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Four Arms Of Value (FAV) and last: NZ History online +[2018-02-13T00:26:44.998] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:26:44.998] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:26:45.097] [INFO] cheese - inserting 1000 documents. first: Category:People's Progressive Alliance (Mauritania) politicians and last: Kirk beadle +[2018-02-13T00:26:45.153] [INFO] cheese - inserting 1000 documents. first: File:Klu-heli-2.jpeg and last: File:Kaldaljos.jpg +[2018-02-13T00:26:45.155] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:26:45.195] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:26:45.197] [INFO] cheese - inserting 1000 documents. first: Chimney Point, Vermont and last: Steve Thomas (ice hockey) +[2018-02-13T00:26:45.200] [INFO] cheese - inserting 1000 documents. first: Schizodon intermedius and last: Bristol Theatre Royal +[2018-02-13T00:26:45.270] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:26:45.277] [INFO] cheese - inserting 1000 documents. first: Linwood, Pennsylvania and last: North Catasauqua, Pennsylvania +[2018-02-13T00:26:45.284] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:26:45.560] [INFO] cheese - batch complete in: 1.647 secs +[2018-02-13T00:26:45.563] [INFO] cheese - inserting 1000 documents. first: Cipemastat and last: Telengana Rashtriya Samiti +[2018-02-13T00:26:45.577] [INFO] cheese - inserting 1000 documents. first: Template:San Diego Chargers 2015 draft navbox and last: Tulipa erythronioides +[2018-02-13T00:26:45.616] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:26:45.633] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:26:45.709] [INFO] cheese - inserting 1000 documents. first: 1983–84 Newcastle United F.C. season and last: Jawlan +[2018-02-13T00:26:45.720] [INFO] cheese - inserting 1000 documents. first: Cape Freckled Nightjar and last: Athletics at the 2012 Summer Paralympics – Men's discus throw F54-6 +[2018-02-13T00:26:45.758] [INFO] cheese - inserting 1000 documents. first: Bruneau Hot Springsnail and last: Ni no kuni +[2018-02-13T00:26:45.756] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:26:45.774] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:26:45.843] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:26:45.946] [INFO] cheese - inserting 1000 documents. first: Vyborg Governorate and last: Wikipedia:Votes for deletion/Ruius Martinus +[2018-02-13T00:26:45.999] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:26:46.077] [INFO] cheese - inserting 1000 documents. first: Tulipa latifolia and last: List of That '70s Show DVDs +[2018-02-13T00:26:46.114] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:26:46.211] [INFO] cheese - inserting 1000 documents. first: Granite City, Wisconsin and last: Ang Umaga +[2018-02-13T00:26:46.213] [INFO] cheese - inserting 1000 documents. first: Category:Hotels in the Palestinian territories and last: Secretary of State of Spain +[2018-02-13T00:26:46.254] [INFO] cheese - inserting 1000 documents. first: Noordin Mohammad Top and last: Distance-vector routing protocols +[2018-02-13T00:26:46.257] [INFO] cheese - inserting 1000 documents. first: Category:Ricky Nelson songs and last: Draggle +[2018-02-13T00:26:46.273] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:26:46.276] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:26:46.277] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:26:46.301] [INFO] cheese - inserting 1000 documents. first: Mother Mother and last: USS Robin Hood (1861) +[2018-02-13T00:26:46.321] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:26:46.360] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:26:46.470] [INFO] cheese - inserting 1000 documents. first: Trihelium and last: Concave Cake +[2018-02-13T00:26:46.536] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:26:46.632] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gifting way and last: Wikipedia:Votes for deletion/Ramunas Geciauskas +[2018-02-13T00:26:46.707] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:26:46.712] [INFO] cheese - inserting 1000 documents. first: Abnér and last: Category:University of Texas at Houston +[2018-02-13T00:26:46.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sic 'em Bears and last: File:Wismut Kristall und 1cm3 Wuerfel.jpg +[2018-02-13T00:26:46.715] [INFO] cheese - inserting 1000 documents. first: 1966 Singapore Grand Prix and last: Parklands, South Africa +[2018-02-13T00:26:46.754] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:26:46.761] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:26:46.768] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:26:46.793] [INFO] cheese - inserting 1000 documents. first: Kiss Me Again and last: Don Bessillieu +[2018-02-13T00:26:46.843] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:26:46.918] [INFO] cheese - inserting 1000 documents. first: Northampton, Pennsylvania and last: Bradley, South Carolina +[2018-02-13T00:26:46.937] [INFO] cheese - inserting 1000 documents. first: Marie Félicité Brosset and last: Category:Japanese international schools in South Korea +[2018-02-13T00:26:46.986] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:26:46.994] [INFO] cheese - batch complete in: 1.434 secs +[2018-02-13T00:26:47.052] [INFO] cheese - inserting 1000 documents. first: Category:Prisoners sentenced to death by Niger and last: Pattinarendrapur +[2018-02-13T00:26:47.073] [INFO] cheese - inserting 1000 documents. first: File:Tom Wesselmann.jpg and last: Devils apple +[2018-02-13T00:26:47.091] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:26:47.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/GK Wien-Southeast and last: The Jackson 5 Live +[2018-02-13T00:26:47.124] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:26:47.152] [INFO] cheese - inserting 1000 documents. first: American Osteopathic Board of Physical Medicine and Rehabilitation and last: Corps-de-logis +[2018-02-13T00:26:47.175] [INFO] cheese - inserting 1000 documents. first: Dennis Matthies and last: Blessed by a Broken Heart +[2018-02-13T00:26:47.196] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:26:47.201] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:26:47.218] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:26:47.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/UMassBoston and last: Category:Mountain ranges of Hesse +[2018-02-13T00:26:47.436] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:26:47.480] [INFO] cheese - inserting 1000 documents. first: SUC (disambiguation) and last: Lakeview Islands, Lexington +[2018-02-13T00:26:47.517] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:26:47.565] [INFO] cheese - inserting 1000 documents. first: Devils Apple and last: Vizezemin +[2018-02-13T00:26:47.600] [INFO] cheese - inserting 1000 documents. first: Christopher Stevens (disambiguation) and last: Don Chamberlain +[2018-02-13T00:26:47.660] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:26:47.692] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:26:47.718] [INFO] cheese - inserting 1000 documents. first: Bobby Whitlock and last: Diya' al-Dawla +[2018-02-13T00:26:47.748] [INFO] cheese - inserting 1000 documents. first: File:Pogl blacklight.jpg and last: Category:Kenyan women +[2018-02-13T00:26:47.803] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:26:47.800] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:26:47.937] [INFO] cheese - inserting 1000 documents. first: 2005 Grand Prix (snooker) and last: Category:Districts of Upper West Region +[2018-02-13T00:26:47.974] [INFO] cheese - inserting 1000 documents. first: Premo poretta power poll and last: Inngone +[2018-02-13T00:26:47.992] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:26:48.042] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:26:48.051] [INFO] cheese - inserting 1000 documents. first: École Nationale Supérieure Agronomique de Rennes and last: File:Bobmouldsilverage-e13389992789021-300x300.jpeg +[2018-02-13T00:26:48.090] [INFO] cheese - inserting 1000 documents. first: Vizazamin and last: Alexander Bernardazzi +[2018-02-13T00:26:48.095] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:26:48.147] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:26:48.253] [INFO] cheese - inserting 1000 documents. first: Baron Burns and last: Learning drug +[2018-02-13T00:26:48.291] [INFO] cheese - inserting 1000 documents. first: Pied du Roi and last: Category:Thoroughbred family 2-n +[2018-02-13T00:26:48.294] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:26:48.331] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:26:48.339] [INFO] cheese - inserting 1000 documents. first: Quebec provincial by-elections, 2010 and last: The Lost Chords +[2018-02-13T00:26:48.425] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:26:48.448] [INFO] cheese - inserting 1000 documents. first: Cokesbury, South Carolina and last: Nash, Texas +[2018-02-13T00:26:48.448] [INFO] cheese - inserting 1000 documents. first: Do You Think Of Me and last: Shahrak-e Shahidar Jai, Bagh-e Malek +[2018-02-13T00:26:48.451] [INFO] cheese - inserting 1000 documents. first: Selebi and last: Tukhnakaya +[2018-02-13T00:26:48.482] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:26:48.495] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:26:48.536] [INFO] cheese - batch complete in: 1.541 secs +[2018-02-13T00:26:48.612] [INFO] cheese - inserting 1000 documents. first: Dubréka Prefecture and last: YCM +[2018-02-13T00:26:48.687] [INFO] cheese - inserting 1000 documents. first: Abdulai Dukuly and last: File:DraftRV.png +[2018-02-13T00:26:48.687] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T00:26:48.732] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Ageing and culture/invitation and last: Electronic Sports World Cup 2010 +[2018-02-13T00:26:48.736] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:26:48.791] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:26:48.815] [INFO] cheese - inserting 1000 documents. first: If Not for You (album) and last: Frank Mills (disambiguation) +[2018-02-13T00:26:48.818] [INFO] cheese - inserting 1000 documents. first: Chronological summary of the 2010 Summer Youth Olympics and last: Broadcast and The Focus Group Investigate Witch Cults Of The Radio Age +[2018-02-13T00:26:48.865] [INFO] cheese - inserting 1000 documents. first: Ballydavid, County Tipperary and last: U. K. - Namibia relations +[2018-02-13T00:26:48.891] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:26:48.887] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:26:48.947] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:26:49.233] [INFO] cheese - inserting 1000 documents. first: Parkland Historic District and last: Mont-Royal +[2018-02-13T00:26:49.266] [INFO] cheese - inserting 1000 documents. first: The Gulf Medal 1990-91 and last: Maurolycus +[2018-02-13T00:26:49.267] [INFO] cheese - inserting 1000 documents. first: Podari, Dolj and last: Solanum igneum var. parvifolium +[2018-02-13T00:26:49.276] [INFO] cheese - inserting 1000 documents. first: U. K.–Namibia relations and last: Thestor obscurus +[2018-02-13T00:26:49.286] [INFO] cheese - inserting 1000 documents. first: Template:R from writers and last: Wikipedia:WikiProject Spam/Local/tricent.cz +[2018-02-13T00:26:49.291] [INFO] cheese - inserting 1000 documents. first: Sphaeromimus and last: Water Eaton railway station +[2018-02-13T00:26:49.295] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:26:49.307] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:26:49.315] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:26:49.308] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:26:49.333] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:26:49.352] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:26:49.689] [INFO] cheese - inserting 1000 documents. first: File:Gusa Regional Science High School-X Official Seal.png and last: Wikipedia:WikiProject Spam/LinkReports/floortime.org.ua +[2018-02-13T00:26:49.697] [INFO] cheese - inserting 1000 documents. first: Eleuthere Elie Nicolas Mascart and last: NexGen Storage +[2018-02-13T00:26:49.730] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:26:49.732] [INFO] cheese - inserting 1000 documents. first: My Turn on Earth and last: Wikipedia:Requests for adminship/Hex 2 +[2018-02-13T00:26:49.735] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:26:49.754] [INFO] cheese - inserting 1000 documents. first: Solanum persicifolium and last: Alices Adventures in Wonderland +[2018-02-13T00:26:49.781] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:26:49.790] [INFO] cheese - inserting 1000 documents. first: Category:Streamline Moderne architecture in Massachusetts and last: Tadpole Fish +[2018-02-13T00:26:49.800] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:26:49.834] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:26:49.883] [INFO] cheese - inserting 1000 documents. first: ProSpace and last: Butyrki Prison +[2018-02-13T00:26:49.957] [INFO] cheese - inserting 1000 documents. first: New Boston, Texas and last: Henderson, Texas +[2018-02-13T00:26:49.958] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:26:50.063] [INFO] cheese - batch complete in: 1.526 secs +[2018-02-13T00:26:50.085] [INFO] cheese - inserting 1000 documents. first: Rouzbeh Arghavan and last: Bleach: Hell Chapter +[2018-02-13T00:26:50.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Contemporary Christian and last: Cairn Bannoch +[2018-02-13T00:26:50.122] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:26:50.124] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:26:50.154] [INFO] cheese - inserting 1000 documents. first: Chris Dangerous and last: List of RHPs in ID +[2018-02-13T00:26:50.177] [INFO] cheese - inserting 1000 documents. first: Electoral district of St Marys and last: Fu Gongshi +[2018-02-13T00:26:50.188] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:26:50.217] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:26:50.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mount Crushmore and last: Pterodactylus elegans +[2018-02-13T00:26:50.276] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:26:50.382] [INFO] cheese - inserting 1000 documents. first: Freeminded Democratic Party of Switzerland and last: Snake River (United States) +[2018-02-13T00:26:50.422] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Jade Helm 15 and last: Bob Wanner +[2018-02-13T00:26:50.453] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:26:50.477] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:26:50.508] [INFO] cheese - inserting 1000 documents. first: Omm ol Helianeh and last: Guy Sayer +[2018-02-13T00:26:50.548] [INFO] cheese - inserting 1000 documents. first: Route 251 (Illinois) and last: Category:Bemidji, Minnesota +[2018-02-13T00:26:50.550] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:26:50.597] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:26:50.667] [INFO] cheese - inserting 1000 documents. first: Parker Center for Investment Research and last: File:TAR11RaceRoute6.2.PNG +[2018-02-13T00:26:50.705] [INFO] cheese - inserting 1000 documents. first: Industrial Scripts and last: Aleksandrovo (disambiguation) +[2018-02-13T00:26:50.707] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:26:50.715] [INFO] cheese - inserting 1000 documents. first: Euclid View Flats and last: Old Bell (disambiguation) +[2018-02-13T00:26:50.746] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:26:50.770] [INFO] cheese - inserting 1000 documents. first: Sony VAIO UX Micro PC and last: Category:Soviet Union–Uruguay relations +[2018-02-13T00:26:50.774] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:26:50.811] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:26:50.894] [INFO] cheese - inserting 1000 documents. first: Rayleigh (Lunar crater) and last: Abu Horaira +[2018-02-13T00:26:50.941] [INFO] cheese - inserting 1000 documents. first: New South Wales 79 class locomotive and last: New South Wales 45 (later 71) class locomotive +[2018-02-13T00:26:50.951] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:26:50.988] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:26:51.114] [INFO] cheese - inserting 1000 documents. first: Pedra Furada (disambiguation) and last: Josh Furman +[2018-02-13T00:26:51.118] [INFO] cheese - inserting 1000 documents. first: Cape Torrens Wilderness Protection Area and last: Agonidium explanatum +[2018-02-13T00:26:51.127] [INFO] cheese - inserting 1000 documents. first: The Irish Volunteer and last: Elasonas, Greece +[2018-02-13T00:26:51.172] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:26:51.172] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:26:51.202] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:26:51.296] [INFO] cheese - inserting 1000 documents. first: Alexandrovsky (disambiguation) and last: Category:Canterbury-Bankstown Bulldogs templates +[2018-02-13T00:26:51.349] [INFO] cheese - inserting 1000 documents. first: Holy City, CA and last: Shōen Uemura +[2018-02-13T00:26:51.357] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:26:51.382] [INFO] cheese - inserting 1000 documents. first: Template:User rec-4 and last: Caetano N'Tchama +[2018-02-13T00:26:51.413] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:26:51.455] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:26:51.486] [INFO] cheese - inserting 1000 documents. first: Mount Enterprise, Texas and last: Lincolnia, Virginia +[2018-02-13T00:26:51.525] [INFO] cheese - inserting 1000 documents. first: Elasonas and last: Gasztowtt +[2018-02-13T00:26:51.560] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:26:51.594] [INFO] cheese - batch complete in: 1.531 secs +[2018-02-13T00:26:51.607] [INFO] cheese - inserting 1000 documents. first: Agonidium exultans and last: Norway–U.K. relations +[2018-02-13T00:26:51.645] [INFO] cheese - inserting 1000 documents. first: Jan Wijnants (cyclist) and last: Wikipedia:WikiProject Spam/Local/shoppingatmsecret.com +[2018-02-13T00:26:51.654] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:26:51.718] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:26:51.825] [INFO] cheese - inserting 1000 documents. first: Luigi Datome and last: Shil'yan +[2018-02-13T00:26:51.871] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:26:51.908] [INFO] cheese - inserting 1000 documents. first: 19th century philosophy and last: Wikipedia:Pending changes/Closure +[2018-02-13T00:26:51.943] [INFO] cheese - inserting 1000 documents. first: Mr Van Driessen and last: Asterix and Obelix All at Sea +[2018-02-13T00:26:51.958] [INFO] cheese - inserting 1000 documents. first: Robert E. Wise and last: Manifesto on Freedom and Democracy +[2018-02-13T00:26:51.962] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:26:51.988] [INFO] cheese - inserting 1000 documents. first: Junction City High School (Arkansas) and last: North Texas State Mean Green basketball +[2018-02-13T00:26:51.999] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:26:52.000] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:26:52.051] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:26:52.159] [INFO] cheese - inserting 1000 documents. first: 2015 Netherlands Women's Sevens and last: Prey reversal +[2018-02-13T00:26:52.226] [INFO] cheese - inserting 1000 documents. first: Category:Bristol Bulldogs riders and last: File:MrMetSheaSignage.jpg +[2018-02-13T00:26:52.235] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:26:52.286] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:26:52.360] [INFO] cheese - inserting 1000 documents. first: Pentila maculata and last: Category:Carlsbad, California +[2018-02-13T00:26:52.389] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:26:52.480] [INFO] cheese - inserting 1000 documents. first: Jacques Faivre (bishop) and last: File:Vision of Love (Mariah Carey song - sample).ogg +[2018-02-13T00:26:52.508] [INFO] cheese - inserting 1000 documents. first: Template:Gene and last: Stronghold (game) +[2018-02-13T00:26:52.515] [INFO] cheese - inserting 1000 documents. first: Kirchroth and last: Paul Blanchard +[2018-02-13T00:26:52.531] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:26:52.553] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:26:52.600] [INFO] cheese - inserting 1000 documents. first: Category:Futsal Hazfi Cup and last: Thennal Thedunna Poovu +[2018-02-13T00:26:52.629] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:26:52.641] [INFO] cheese - inserting 1000 documents. first: Tavira DOC and last: File:The Flower of My Secret.jpg +[2018-02-13T00:26:52.644] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:26:52.661] [INFO] cheese - inserting 1000 documents. first: Anatoly Akimov and last: Trinidad and Tobago-U. K. relations +[2018-02-13T00:26:52.681] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:26:52.742] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:26:52.952] [INFO] cheese - inserting 1000 documents. first: Service Level Management and last: Edwina Booth +[2018-02-13T00:26:52.974] [INFO] cheese - inserting 1000 documents. first: Lorton, Virginia and last: Parsons, West Virginia +[2018-02-13T00:26:52.999] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:26:53.039] [INFO] cheese - inserting 1000 documents. first: Elizabeth Sutherland and last: Flores Province +[2018-02-13T00:26:53.039] [INFO] cheese - batch complete in: 1.445 secs +[2018-02-13T00:26:53.048] [INFO] cheese - inserting 1000 documents. first: PS25R-South Richmond HS/IS and last: Ihor Hlavan +[2018-02-13T00:26:53.061] [INFO] cheese - inserting 1000 documents. first: North Carolina Highway 86 Truck and last: William Randolph Stein +[2018-02-13T00:26:53.078] [INFO] cheese - inserting 1000 documents. first: Monkee Chow Mein and last: The Mountain of the Cannibal God +[2018-02-13T00:26:53.079] [INFO] cheese - inserting 1000 documents. first: Less Emissions and last: Ułanowice +[2018-02-13T00:26:53.085] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:26:53.091] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:26:53.125] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:26:53.156] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:26:53.210] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:26:53.507] [INFO] cheese - inserting 1000 documents. first: Boston Park Plaza Hotel & Towers and last: QLogic +[2018-02-13T00:26:53.600] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:26:53.696] [INFO] cheese - inserting 1000 documents. first: Daniel Parslow and last: Irrara County, New South Wales +[2018-02-13T00:26:53.698] [INFO] cheese - inserting 1000 documents. first: José Leyver Ojeda and last: Saint Francis (Pa.) Red Flash +[2018-02-13T00:26:53.736] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:26:53.748] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:26:53.779] [INFO] cheese - inserting 1000 documents. first: Randolph Stein and last: Martin Luther Procise III +[2018-02-13T00:26:53.824] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:26:53.889] [INFO] cheese - inserting 1000 documents. first: Węgrce Szlacheckie and last: Wikipedia:RECORD +[2018-02-13T00:26:53.948] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:26:53.977] [INFO] cheese - inserting 1000 documents. first: La montagna del dio cannibale and last: File:Sahour.jpg +[2018-02-13T00:26:54.012] [INFO] cheese - inserting 1000 documents. first: Former members of the Libyan Islamic Fighting Group and last: Anthus novaeseelandiae novaeseelandiae +[2018-02-13T00:26:54.028] [INFO] cheese - inserting 1000 documents. first: Ancient monument and last: 1997 in birding and ornithology +[2018-02-13T00:26:54.041] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T00:26:54.059] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:26:54.063] [INFO] cheese - inserting 1000 documents. first: Marcion, application and last: Penguin 60's Classics +[2018-02-13T00:26:54.105] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:26:54.118] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:26:54.196] [INFO] cheese - inserting 1000 documents. first: Thomas B. Buck, III and last: Toni Collette and the Finish +[2018-02-13T00:26:54.223] [INFO] cheese - inserting 1000 documents. first: Thomas, West Virginia and last: Richland Center, Wisconsin +[2018-02-13T00:26:54.250] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:26:54.276] [INFO] cheese - inserting 1000 documents. first: Clinical rotation and last: Eastern Otomí language +[2018-02-13T00:26:54.286] [INFO] cheese - inserting 1000 documents. first: Colville Wemyss and last: Tsor +[2018-02-13T00:26:54.289] [INFO] cheese - batch complete in: 1.25 secs +[2018-02-13T00:26:54.318] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:26:54.332] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:26:54.526] [INFO] cheese - inserting 1000 documents. first: Temple Records (UK label) and last: Wikipedia:Requests for bureaucratship/Majorly +[2018-02-13T00:26:54.582] [INFO] cheese - inserting 1000 documents. first: KunstHausWien and last: Typhlops inornatus +[2018-02-13T00:26:54.610] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:26:54.649] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:26:54.654] [INFO] cheese - inserting 1000 documents. first: File:Sent-Myhell-Armys--Arms-of-St-Michael-ca-1460.png and last: Category:Libraries in Japan +[2018-02-13T00:26:54.708] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:26:54.711] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ron Parker and last: Russkiye Borisy +[2018-02-13T00:26:54.729] [INFO] cheese - inserting 1000 documents. first: Reg Dean and last: Category:1919 establishments in the Republic of Macedonia +[2018-02-13T00:26:54.739] [INFO] cheese - inserting 1000 documents. first: Abner Méndez and last: File:Blue Force Gear logo.png +[2018-02-13T00:26:54.745] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:26:54.761] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:26:54.790] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:26:54.998] [INFO] cheese - inserting 1000 documents. first: Valerie Martínez and last: Country Sunshine with Myrna Lorrie +[2018-02-13T00:26:55.022] [INFO] cheese - inserting 1000 documents. first: Rrusi Paris and last: Democratic Party (New Mexico) +[2018-02-13T00:26:55.025] [INFO] cheese - inserting 1000 documents. first: Template:GUI widgets and last: John Traphagan +[2018-02-13T00:26:55.036] [INFO] cheese - inserting 1000 documents. first: UNC-Wilmington Seahawks baseball and last: Westbury Square +[2018-02-13T00:26:55.045] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:26:55.068] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:26:55.078] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:26:55.077] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:26:55.109] [INFO] cheese - inserting 1000 documents. first: File:2015 A-League Grand Final logo.png and last: Üsküdar Amerikan Lisesi +[2018-02-13T00:26:55.113] [INFO] cheese - inserting 1000 documents. first: Webacholic and last: Wikipedia:Articles for deletion/Claude Bédard +[2018-02-13T00:26:55.185] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:26:55.189] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:26:55.318] [INFO] cheese - inserting 1000 documents. first: Governor of Ceylon and last: Qayali, Jalilabad +[2018-02-13T00:26:55.355] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:26:55.446] [INFO] cheese - inserting 1000 documents. first: Rhysopleura orbicollis and last: December 11 (Eastern Orthodox liturgics) +[2018-02-13T00:26:55.486] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:26:55.499] [INFO] cheese - inserting 1000 documents. first: Richwood, Wisconsin and last: History of Baden-Württemberg +[2018-02-13T00:26:55.516] [INFO] cheese - inserting 1000 documents. first: Crosspoint and last: Prodaná nevěsta (film) +[2018-02-13T00:26:55.538] [INFO] cheese - inserting 1000 documents. first: Bank of Pilot Mountain and last: Wikipedia:No original research/Noticeboard/Archive 33 +[2018-02-13T00:26:55.555] [INFO] cheese - inserting 1000 documents. first: Pfofeld and last: File:Ciołek's Missal.jpg +[2018-02-13T00:26:55.581] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:26:55.623] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:26:55.660] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:26:55.683] [INFO] cheese - batch complete in: 1.394 secs +[2018-02-13T00:26:55.763] [INFO] cheese - inserting 1000 documents. first: Michael Hoffman (politician) and last: Badahare +[2018-02-13T00:26:55.793] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:26:55.824] [INFO] cheese - inserting 1000 documents. first: Japanese heavy industry during WW2 times and last: 1935–36 Yugoslav Football Championship +[2018-02-13T00:26:55.898] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:26:55.926] [INFO] cheese - inserting 1000 documents. first: Galong language and last: Garba raas +[2018-02-13T00:26:56.004] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:26:56.135] [INFO] cheese - inserting 1000 documents. first: Category:1881 establishments in New Mexico Territory and last: Southern Conference Softball Tournament +[2018-02-13T00:26:56.179] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:26:56.180] [INFO] cheese - inserting 1000 documents. first: A.S.D. Riccione 1929 and last: Grigore D. Constantinescu +[2018-02-13T00:26:56.207] [INFO] cheese - inserting 1000 documents. first: Category:Free-minded Liberal Party politicians and last: Duvannaya +[2018-02-13T00:26:56.228] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:26:56.252] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:26:56.288] [INFO] cheese - inserting 1000 documents. first: Template:User lang subcat/5 and last: Interstate 69 Business (Lansing, Michigan) +[2018-02-13T00:26:56.340] [INFO] cheese - inserting 1000 documents. first: Hans-Joachim Geisler and last: Wikipedia:Sockpuppet investigations/Malarious +[2018-02-13T00:26:56.346] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:26:56.365] [INFO] cheese - inserting 1000 documents. first: WMKS and last: Lambda Aquarii +[2018-02-13T00:26:56.390] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:26:56.397] [INFO] cheese - inserting 1000 documents. first: Awk programming language and last: Trifluoperazine +[2018-02-13T00:26:56.412] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:26:56.444] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:26:56.522] [INFO] cheese - inserting 1000 documents. first: 18th century Germany and last: Padar Gyul'mali +[2018-02-13T00:26:56.530] [INFO] cheese - inserting 1000 documents. first: Sergeevka and last: Category:1978 in New Zealand association football +[2018-02-13T00:26:56.555] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:26:56.563] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:26:56.659] [INFO] cheese - inserting 1000 documents. first: Ring-spatha and last: Lake Tudu +[2018-02-13T00:26:56.709] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:26:56.772] [INFO] cheese - inserting 1000 documents. first: C29H39N5O8 and last: UW–Green Bay Phoenix softball +[2018-02-13T00:26:56.805] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:26:56.819] [INFO] cheese - inserting 1000 documents. first: Contact, l'encyclopédie de la création and last: Dorzhsuren Munkhbayar +[2018-02-13T00:26:56.819] [INFO] cheese - inserting 1000 documents. first: Padar Gyul’mali and last: Wikipedia:Articles for deletion/Flying High (album) +[2018-02-13T00:26:56.829] [INFO] cheese - inserting 1000 documents. first: Operation Dignity Battle (Benghazi) and last: Amanayara +[2018-02-13T00:26:56.845] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:26:56.859] [INFO] cheese - inserting 1000 documents. first: Kijow Voivodship and last: Tiger-Man +[2018-02-13T00:26:56.861] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:26:56.866] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:26:56.939] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:26:57.197] [INFO] cheese - inserting 1000 documents. first: Orta-Zeyzit and last: File:Danny'sSongAnne.jpg +[2018-02-13T00:26:57.200] [INFO] cheese - inserting 1000 documents. first: Ubajärv and last: Discrete collision detection +[2018-02-13T00:26:57.210] [INFO] cheese - inserting 1000 documents. first: File:Renewable Energy Sources and Climate Change Mitigation.jpg and last: Category:1950s disestablishments in Mexico +[2018-02-13T00:26:57.233] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:26:57.253] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:26:57.264] [INFO] cheese - inserting 1000 documents. first: Hope's Anthem and last: Template:Denver Pioneers athletic director navbox +[2018-02-13T00:26:57.267] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:26:57.310] [INFO] cheese - inserting 1000 documents. first: Multisystem disease and last: Don't Try This at Home (TV series) +[2018-02-13T00:26:57.324] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:26:57.356] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:26:57.370] [INFO] cheese - inserting 1000 documents. first: Category:Communications in Angola and last: Envelope (aerospace) +[2018-02-13T00:26:57.438] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:26:57.560] [INFO] cheese - inserting 1000 documents. first: File:Silver City NM seal.png and last: Anti-conversion violence in India +[2018-02-13T00:26:57.585] [INFO] cheese - inserting 1000 documents. first: Category:1916 establishments in Mexico and last: Category:1923 disestablishments in Germany +[2018-02-13T00:26:57.599] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:26:57.618] [INFO] cheese - inserting 1000 documents. first: Bass horn and last: Lake District +[2018-02-13T00:26:57.647] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:26:57.722] [INFO] cheese - inserting 1000 documents. first: Songs Of Innocence And Experience and last: Yong Zhuang +[2018-02-13T00:26:57.724] [INFO] cheese - batch complete in: 1.28 secs +[2018-02-13T00:26:57.740] [INFO] cheese - inserting 1000 documents. first: Bánh Mì and last: Džanići +[2018-02-13T00:26:57.755] [INFO] cheese - inserting 1000 documents. first: Category:Assassinated Pakistani activists and last: Category:New Zealand at the FIFA World Cup +[2018-02-13T00:26:57.767] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:26:57.793] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:26:57.842] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:26:57.889] [INFO] cheese - inserting 1000 documents. first: Category:User arc and last: South Keys station +[2018-02-13T00:26:57.957] [INFO] cheese - inserting 1000 documents. first: Sciex and last: Air Force of Mauritania +[2018-02-13T00:26:57.965] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:26:57.991] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:26:58.095] [INFO] cheese - inserting 1000 documents. first: Buick Excelle XT and last: Category:Politicians from County Leitrim +[2018-02-13T00:26:58.109] [INFO] cheese - inserting 1000 documents. first: Flassavatn and last: Wikipedia:Featured article candidates/Thescelosaurus +[2018-02-13T00:26:58.144] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:26:58.159] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:26:58.167] [INFO] cheese - inserting 1000 documents. first: Kamikaz and last: Category:Egyptian emigrants to Nigeria +[2018-02-13T00:26:58.220] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:26:58.335] [INFO] cheese - inserting 1000 documents. first: Air Force of Moldova and last: ZIP code 30144 +[2018-02-13T00:26:58.392] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:26:58.404] [INFO] cheese - inserting 1000 documents. first: Džepi and last: Portal:Current events/2010 August 17 +[2018-02-13T00:26:58.456] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:26:58.494] [INFO] cheese - inserting 1000 documents. first: Tseen Foo and last: (323) Brucia +[2018-02-13T00:26:58.550] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:26:58.571] [INFO] cheese - inserting 1000 documents. first: Minsan may isang puta and last: Category:Burial sites of Mexican noble families +[2018-02-13T00:26:58.606] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:26:58.613] [INFO] cheese - inserting 1000 documents. first: Phlong language and last: Category:1910 establishments in Mexico +[2018-02-13T00:26:58.657] [INFO] cheese - inserting 1000 documents. first: File:Sweet&Sour Cover Inner.jpg and last: Karlików +[2018-02-13T00:26:58.661] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:26:58.709] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:26:58.725] [INFO] cheese - inserting 1000 documents. first: Lemon socialism and last: File:Radio Times Vote Dalek cover.jpg +[2018-02-13T00:26:58.751] [INFO] cheese - inserting 1000 documents. first: Gidea Park, London, England and last: Gaston (comics) +[2018-02-13T00:26:58.757] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:26:58.808] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T00:26:58.821] [INFO] cheese - inserting 1000 documents. first: Criticism of concordats and last: Cayetano Paderanga, Jr. +[2018-02-13T00:26:58.868] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:26:58.957] [INFO] cheese - inserting 1000 documents. first: Category:Black Prairie albums and last: Supporting role +[2018-02-13T00:26:58.958] [INFO] cheese - inserting 1000 documents. first: (324) Bamberga and last: Category:Humanistic psychology +[2018-02-13T00:26:58.989] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:26:59.020] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:26:59.039] [INFO] cheese - inserting 1000 documents. first: Clarke Sound and last: Eosu Station +[2018-02-13T00:26:59.040] [INFO] cheese - inserting 1000 documents. first: Galactocentrism and last: Comet Machholz 1 +[2018-02-13T00:26:59.074] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:26:59.099] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:26:59.219] [INFO] cheese - inserting 1000 documents. first: Jan Diddens and last: USS Ajax (SP-738) +[2018-02-13T00:26:59.270] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:26:59.272] [INFO] cheese - inserting 1000 documents. first: When I See You Again and last: Apriona gressitti +[2018-02-13T00:26:59.314] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:26:59.396] [INFO] cheese - inserting 1000 documents. first: Category:Grand Slam (tennis) champions in men's singles and last: Category:California elections, 1914 +[2018-02-13T00:26:59.463] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:26:59.482] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topical outlines/Draft/Topical outline of Greenland and last: File:KBCO logo.png +[2018-02-13T00:26:59.564] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:26:59.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Battle at La Hogue and last: Wikipedia:WikiProject Spam/LinkReports/homeandstone.com +[2018-02-13T00:26:59.637] [INFO] cheese - inserting 1000 documents. first: ATV Evening News and last: Crib (disambiguation) +[2018-02-13T00:26:59.639] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:26:59.672] [INFO] cheese - inserting 1000 documents. first: MADAM-6 and last: Free Press (organization) +[2018-02-13T00:26:59.705] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:26:59.751] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:26:59.802] [INFO] cheese - inserting 1000 documents. first: Apriona japonica and last: Wikipedia:Articles for deletion/Marvin Amparo +[2018-02-13T00:26:59.852] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:26:59.884] [INFO] cheese - inserting 1000 documents. first: The Ace of Cads and last: Category:1997 establishments in Thailand +[2018-02-13T00:26:59.886] [INFO] cheese - inserting 1000 documents. first: Aase (disambiguation) and last: Wikipedia:Sockpuppet investigations/Cde000 +[2018-02-13T00:26:59.913] [INFO] cheese - inserting 1000 documents. first: Masque of Mandragora and last: 74th parallel north +[2018-02-13T00:26:59.913] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:26:59.932] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:26:59.940] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:27:00.122] [INFO] cheese - inserting 1000 documents. first: Theory of General Relativity and last: Orthodox Church in America +[2018-02-13T00:27:00.138] [INFO] cheese - inserting 1000 documents. first: Ahmed Rami (disambiguation) and last: Alfonso the Chaste (disambiguation) +[2018-02-13T00:27:00.163] [INFO] cheese - inserting 1000 documents. first: Stuart Matsikenyeri and last: Total asset turnover +[2018-02-13T00:27:00.183] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T00:27:00.184] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ergonomically Designed Facilities and last: Parker J. Palmer +[2018-02-13T00:27:00.233] [INFO] cheese - batch complete in: 1.425 secs +[2018-02-13T00:27:00.239] [INFO] cheese - inserting 1000 documents. first: Queen's Park, Brisbane and last: Australia: Boom to Bust +[2018-02-13T00:27:00.243] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:27:00.256] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:27:00.271] [INFO] cheese - inserting 1000 documents. first: Estelle Kohler and last: TT9 (tomb) +[2018-02-13T00:27:00.309] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:27:00.316] [INFO] cheese - inserting 1000 documents. first: International Right to Know Day and last: Mass of the Resurrection +[2018-02-13T00:27:00.319] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:27:00.377] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:27:00.470] [INFO] cheese - inserting 1000 documents. first: Alfonsów (disambiguation) and last: Jesse Zubot +[2018-02-13T00:27:00.503] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:27:00.673] [INFO] cheese - inserting 1000 documents. first: Blind judo and last: Murguztala +[2018-02-13T00:27:00.707] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:27:00.733] [INFO] cheese - inserting 1000 documents. first: File:Anarky (vol.2) -8 (December 1999) The Sins of the Father - cover.jpg and last: Quebec provincial by-elections, 2002 +[2018-02-13T00:27:00.759] [INFO] cheese - inserting 1000 documents. first: Template:Country data City of Valencia and last: Maryknoll Sister +[2018-02-13T00:27:00.786] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:27:00.797] [INFO] cheese - inserting 1000 documents. first: Vayeira and last: Noztra +[2018-02-13T00:27:00.817] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:27:00.855] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:27:00.860] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiWorldDays and last: Benjamin Jefferson Hill +[2018-02-13T00:27:00.873] [INFO] cheese - inserting 1000 documents. first: Andilly (disambiguation) and last: ORV Sagar Kanya +[2018-02-13T00:27:00.903] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:27:00.920] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:27:01.023] [INFO] cheese - inserting 1000 documents. first: File:BarwellFC.png and last: Lecedi +[2018-02-13T00:27:01.058] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:27:01.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Shirley Marulanda and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Tenacious D +[2018-02-13T00:27:01.186] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:27:01.239] [INFO] cheese - inserting 1000 documents. first: Emergency shut down valve and last: Rahnoja +[2018-02-13T00:27:01.276] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:27:01.310] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Changing username/Usurpations/Completed/36 and last: Category:Science and technology in Warwickshire +[2018-02-13T00:27:01.313] [INFO] cheese - inserting 1000 documents. first: Pat Goss and last: Taipei American School student organizations +[2018-02-13T00:27:01.373] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:27:01.403] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:27:01.416] [INFO] cheese - inserting 1000 documents. first: File:FC Olimpia Bălţi.png and last: File:Los Angeles Aztecs.png +[2018-02-13T00:27:01.472] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:27:01.528] [INFO] cheese - inserting 1000 documents. first: Bristol Jupiter and last: Choiseul +[2018-02-13T00:27:01.553] [INFO] cheese - inserting 1000 documents. first: Rätsepa, Vändra Parish and last: Ashill (disambiguation) +[2018-02-13T00:27:01.580] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:27:01.603] [INFO] cheese - inserting 1000 documents. first: File:Dunyov István.jpg and last: Quinny Brook +[2018-02-13T00:27:01.642] [INFO] cheese - batch complete in: 1.409 secs +[2018-02-13T00:27:01.661] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:27:01.892] [INFO] cheese - inserting 1000 documents. first: File:Los Angeles Blades.png and last: File:SC Albi.png +[2018-02-13T00:27:01.911] [INFO] cheese - inserting 1000 documents. first: Erebus dasypterus and last: Llanpumpsaint railway station +[2018-02-13T00:27:01.927] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:27:01.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Virtual Magic Kingdom/archive1 and last: 820 chipset +[2018-02-13T00:27:01.954] [INFO] cheese - inserting 1000 documents. first: Ashiya Station (disambiguation) and last: Ayane (disambiguation) +[2018-02-13T00:27:01.954] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:27:01.987] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:27:02.047] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:27:02.161] [INFO] cheese - inserting 1000 documents. first: The Cautionary Tale of Numero Cinco (Angel) and last: MV al-Salam Boccaccio 98 +[2018-02-13T00:27:02.166] [INFO] cheese - inserting 1000 documents. first: File:TheLessonsOfHistory.jpg and last: Acacia platensis +[2018-02-13T00:27:02.196] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:27:02.222] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:27:02.235] [INFO] cheese - inserting 1000 documents. first: Multiplatform Television Service and last: Edward Joseph Gilbert +[2018-02-13T00:27:02.253] [INFO] cheese - inserting 1000 documents. first: Mituna Captor and last: Pobres Rico +[2018-02-13T00:27:02.264] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:27:02.299] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:27:02.471] [INFO] cheese - inserting 1000 documents. first: Balara (disambiguation) and last: Megalodicopia hyans +[2018-02-13T00:27:02.483] [INFO] cheese - inserting 1000 documents. first: Burnett Heads and last: Case No. 04-cv-1166 +[2018-02-13T00:27:02.496] [INFO] cheese - inserting 1000 documents. first: Two Minute Warning (Angel City album) and last: Laura Rockefeller Chasin +[2018-02-13T00:27:02.497] [INFO] cheese - batch complete in: 0.233 secs +[2018-02-13T00:27:02.523] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:27:02.542] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:27:02.561] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Edwin Kuh and last: Robert Davis McKenzie +[2018-02-13T00:27:02.627] [INFO] cheese - inserting 1000 documents. first: How Do You Love and last: Template:Alliance for Italy/meta/color +[2018-02-13T00:27:02.630] [INFO] cheese - inserting 1000 documents. first: My Sweet, Yet Brutal Sweetheart and last: Cutting Edge record label +[2018-02-13T00:27:02.646] [INFO] cheese - batch complete in: 1.829 secs +[2018-02-13T00:27:02.675] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:27:02.707] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:27:02.770] [INFO] cheese - inserting 1000 documents. first: Batovo (disambiguation) and last: Bellevue Palace (disambiguation) +[2018-02-13T00:27:02.820] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:27:02.915] [INFO] cheese - inserting 1000 documents. first: No. 04-cv-1166 and last: Kapanakci, Goranboy +[2018-02-13T00:27:02.940] [INFO] cheese - inserting 1000 documents. first: Umu Oma and last: Wikipedia:WikiProject Wine/Newsletter/04-1-2007 +[2018-02-13T00:27:02.952] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:27:02.976] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:27:02.999] [INFO] cheese - inserting 1000 documents. first: Lucky Luciano and last: Rievaulx Abbey +[2018-02-13T00:27:03.023] [INFO] cheese - inserting 1000 documents. first: National Road 540 and last: Bruce and Pepper Wayne Gacy's Home Movies +[2018-02-13T00:27:03.040] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:27:03.046] [INFO] cheese - inserting 1000 documents. first: Active record pattern and last: Siziwang Banner +[2018-02-13T00:27:03.066] [INFO] cheese - inserting 1000 documents. first: Robert McKenzie III and last: Draft:Self system +[2018-02-13T00:27:03.070] [INFO] cheese - batch complete in: 1.428 secs +[2018-02-13T00:27:03.105] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:27:03.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/IPL Franchise earnings for 2009 and last: Demonstrate +[2018-02-13T00:27:03.130] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:27:03.172] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:27:03.309] [INFO] cheese - inserting 1000 documents. first: Kepenekci, Zaqatala and last: James Hawkins-Whitshed +[2018-02-13T00:27:03.342] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:27:03.349] [INFO] cheese - inserting 1000 documents. first: Bettenhausen (disambiguation) and last: Frans Peeraer +[2018-02-13T00:27:03.390] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:27:03.407] [INFO] cheese - inserting 1000 documents. first: Leclanche battery and last: Category:A-Class Cheshire articles +[2018-02-13T00:27:03.414] [INFO] cheese - inserting 1000 documents. first: Duqiong Township and last: De Havilland DH.50A +[2018-02-13T00:27:03.444] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:27:03.449] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:27:03.513] [INFO] cheese - inserting 1000 documents. first: Colburn's Tuco-tuco and last: Didrah language +[2018-02-13T00:27:03.581] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:27:03.601] [INFO] cheese - inserting 1000 documents. first: Boom crash opera and last: International Patent +[2018-02-13T00:27:03.639] [INFO] cheese - inserting 1000 documents. first: Marcus pohlmann and last: Herbert Schmidt Ostheim +[2018-02-13T00:27:03.665] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:27:03.676] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:27:03.709] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hana Sehu and last: Whitby Morrison +[2018-02-13T00:27:03.736] [INFO] cheese - inserting 1000 documents. first: Pirates 4-D and last: Truman P. White +[2018-02-13T00:27:03.739] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:27:03.791] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:27:03.807] [INFO] cheese - inserting 1000 documents. first: Altar (disambiguation) and last: Marjory Gordon +[2018-02-13T00:27:03.824] [INFO] cheese - inserting 1000 documents. first: Didra language and last: Barangay justice system +[2018-02-13T00:27:03.856] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:27:03.857] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:27:03.872] [INFO] cheese - inserting 1000 documents. first: Blumenthal (disambiguation) and last: Bowers School (disambiguation) +[2018-02-13T00:27:03.903] [INFO] cheese - batch complete in: 0.227 secs +[2018-02-13T00:27:04.123] [INFO] cheese - inserting 1000 documents. first: Glabrescent and last: Template:R list topic +[2018-02-13T00:27:04.144] [INFO] cheese - inserting 1000 documents. first: 10,000 martyrs and last: Bill C-44 +[2018-02-13T00:27:04.175] [INFO] cheese - inserting 1000 documents. first: File:HMAS manoora crest.png and last: Toledo bend reservoir +[2018-02-13T00:27:04.175] [INFO] cheese - inserting 1000 documents. first: Bowery boys (disambiguation) and last: Brzeźnica (disambiguation) +[2018-02-13T00:27:04.182] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:27:04.207] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:27:04.209] [INFO] cheese - inserting 1000 documents. first: Arteria arcuata and last: Category:Woodley Sports F.C. +[2018-02-13T00:27:04.234] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:27:04.243] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:27:04.282] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:27:04.321] [INFO] cheese - inserting 1000 documents. first: Wycombe Railway Company and last: Monocat +[2018-02-13T00:27:04.357] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:27:04.393] [INFO] cheese - inserting 1000 documents. first: Big bear lake and last: Chilko lake +[2018-02-13T00:27:04.423] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:27:04.435] [INFO] cheese - inserting 1000 documents. first: Rhazes and last: Reklaw, Texas +[2018-02-13T00:27:04.468] [INFO] cheese - inserting 1000 documents. first: Brzeźnik (disambiguation) and last: C97 (disambiguation) +[2018-02-13T00:27:04.501] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T00:27:04.504] [INFO] cheese - inserting 1000 documents. first: Template:R flt and last: Template:POTD protected/2015-05-17 +[2018-02-13T00:27:04.528] [INFO] cheese - batch complete in: 1.458 secs +[2018-02-13T00:27:04.547] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:27:04.628] [INFO] cheese - inserting 1000 documents. first: File:LCFR Reserve Rescue 680.jpg and last: Category:Jollibee +[2018-02-13T00:27:04.642] [INFO] cheese - inserting 1000 documents. first: Lough ramor and last: Kim Zwarts +[2018-02-13T00:27:04.662] [INFO] cheese - batch complete in: 0.239 secs +[2018-02-13T00:27:04.668] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:27:04.748] [INFO] cheese - inserting 1000 documents. first: SPAM Town USA and last: Wikipedia:Articles for deletion/Kanvas Grey +[2018-02-13T00:27:04.750] [INFO] cheese - inserting 1000 documents. first: C98 (disambiguation) and last: Cady (disambiguation) +[2018-02-13T00:27:04.760] [INFO] cheese - inserting 1000 documents. first: CAFM and last: HP Pavillion +[2018-02-13T00:27:04.777] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:27:04.811] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:27:04.814] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:27:04.943] [INFO] cheese - inserting 1000 documents. first: ΚΛΨ and last: Agoseris carnea +[2018-02-13T00:27:04.979] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/exactantigen.com and last: Carlos Baena (disambiguation) +[2018-02-13T00:27:05.001] [INFO] cheese - inserting 1000 documents. first: Lake waswanipi and last: Utah State Route 101 +[2018-02-13T00:27:05.002] [INFO] cheese - inserting 1000 documents. first: Category:Selected anniversaries (October 2012) and last: Sinji language +[2018-02-13T00:27:05.007] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:27:05.015] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:27:05.035] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:27:05.055] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:27:05.287] [INFO] cheese - inserting 1000 documents. first: Carlos Borja (disambiguation) and last: Chain Lightning (disambiguation) +[2018-02-13T00:27:05.304] [INFO] cheese - inserting 1000 documents. first: File:Jeanne Mas album.jpg and last: Dr. Bonner +[2018-02-13T00:27:05.319] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:27:05.341] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:27:05.365] [INFO] cheese - inserting 1000 documents. first: Lake Burbury and last: Sagar manthan +[2018-02-13T00:27:05.404] [INFO] cheese - inserting 1000 documents. first: Perang and last: Detective Investigation Files II +[2018-02-13T00:27:05.429] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:27:05.443] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:27:05.521] [INFO] cheese - inserting 1000 documents. first: Agoseris confinis and last: Your Whole +[2018-02-13T00:27:05.538] [INFO] cheese - inserting 1000 documents. first: Senate of Kampuchea and last: GMT355 +[2018-02-13T00:27:05.560] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:27:05.575] [INFO] cheese - inserting 1000 documents. first: Chain O'Lakes State Park (disambiguation) and last: Chiffon (disambiguation) +[2018-02-13T00:27:05.587] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:27:05.595] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:27:05.629] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Raffaelli and last: Push pull strategy +[2018-02-13T00:27:05.665] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:27:05.751] [INFO] cheese - inserting 1000 documents. first: Category:2003 Qatar Open and last: 2001 Cincinnati Bearcats football team +[2018-02-13T00:27:05.808] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:27:05.821] [INFO] cheese - inserting 1000 documents. first: Guerrero (Mexico) and last: City of Refuge (disambiguation) +[2018-02-13T00:27:05.827] [INFO] cheese - inserting 1000 documents. first: Zachary Lansdowne and last: Roy Giles +[2018-02-13T00:27:05.857] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:27:05.875] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:27:05.887] [INFO] cheese - inserting 1000 documents. first: Colbert Hills and last: Melakwa lake +[2018-02-13T00:27:05.916] [INFO] cheese - inserting 1000 documents. first: Conde de Bonfim and last: Criticism of Ban Ki-moon +[2018-02-13T00:27:05.934] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:27:05.952] [INFO] cheese - inserting 1000 documents. first: Dream Come True (A Flock of Seagulls album) and last: He's A Rebel +[2018-02-13T00:27:05.963] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:27:05.979] [INFO] cheese - inserting 1000 documents. first: Troup, Texas and last: Electrical connector +[2018-02-13T00:27:05.992] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:27:06.060] [INFO] cheese - inserting 1000 documents. first: Lake pyasino and last: Barnard Point +[2018-02-13T00:27:06.066] [INFO] cheese - inserting 1000 documents. first: Kampimodromus and last: Valgesoo +[2018-02-13T00:27:06.066] [INFO] cheese - batch complete in: 1.538 secs +[2018-02-13T00:27:06.085] [INFO] cheese - batch complete in: 0.151 secs +[2018-02-13T00:27:06.102] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:27:06.247] [INFO] cheese - inserting 1000 documents. first: Ancient Egyptian tomb and last: Turks And Caicos Creole English language +[2018-02-13T00:27:06.292] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:27:06.314] [INFO] cheese - inserting 1000 documents. first: Ivaylovgrad reservoir and last: Odell lake (oregon) +[2018-02-13T00:27:06.331] [INFO] cheese - inserting 1000 documents. first: Alec Brownstein and last: Gigi (musical) +[2018-02-13T00:27:06.331] [INFO] cheese - batch complete in: 0.246 secs +[2018-02-13T00:27:06.350] [INFO] cheese - inserting 1000 documents. first: Teenaged Mutant Ninja Turtles and last: Ballad of a Thin Man +[2018-02-13T00:27:06.352] [INFO] cheese - inserting 1000 documents. first: Category:House of Holland and last: Ted Collinson +[2018-02-13T00:27:06.353] [INFO] cheese - inserting 1000 documents. first: Collins, California (disambiguation) and last: Arthur Quimby +[2018-02-13T00:27:06.364] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:27:06.377] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:27:06.395] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:27:06.399] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:27:06.515] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Record Production/October 7 and last: Yasnenskoye +[2018-02-13T00:27:06.550] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:27:06.635] [INFO] cheese - inserting 1000 documents. first: Spelga reservoir and last: Lex Column +[2018-02-13T00:27:06.647] [INFO] cheese - inserting 1000 documents. first: Prang Ku District and last: Qingshangnan +[2018-02-13T00:27:06.670] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:27:06.682] [INFO] cheese - inserting 1000 documents. first: Template:WargameMag and last: Gornji Malovan +[2018-02-13T00:27:06.697] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:27:06.732] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:27:06.744] [INFO] cheese - inserting 1000 documents. first: Greg Richards (rugby league) and last: Leo Lee +[2018-02-13T00:27:06.795] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:27:06.841] [INFO] cheese - inserting 1000 documents. first: 12 Aquilae and last: Kurara +[2018-02-13T00:27:06.878] [INFO] cheese - inserting 1000 documents. first: 1932–33 Illinois Fighting Illini men's basketball team and last: The House on Greenapple Road +[2018-02-13T00:27:06.884] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:27:06.916] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:27:06.936] [INFO] cheese - inserting 1000 documents. first: Crowsnest (disambiguation) and last: DWR (disambiguation) +[2018-02-13T00:27:06.952] [INFO] cheese - inserting 1000 documents. first: Connector (mathematics) and last: Paraconsistent logics +[2018-02-13T00:27:06.957] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T00:27:07.016] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T00:27:07.108] [INFO] cheese - inserting 1000 documents. first: Tameside Stadium and last: Mizdow +[2018-02-13T00:27:07.133] [INFO] cheese - inserting 1000 documents. first: Template:Aston Villa F.C. seasons and last: Greg Dewey +[2018-02-13T00:27:07.152] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:27:07.162] [INFO] cheese - inserting 1000 documents. first: DWRT (disambiguation) and last: Natkrižovljan +[2018-02-13T00:27:07.180] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:27:07.343] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:27:07.379] [INFO] cheese - inserting 1000 documents. first: Dead finish and last: Wildlife Prairie Park +[2018-02-13T00:27:07.420] [INFO] cheese - inserting 1000 documents. first: Lindell Cooley and last: Leni Kaurin +[2018-02-13T00:27:07.433] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:27:07.474] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:27:07.609] [INFO] cheese - inserting 1000 documents. first: Victoria Leyde and last: Reproductive tract infections +[2018-02-13T00:27:07.717] [INFO] cheese - inserting 1000 documents. first: Dracula (Caminhos do Coração) and last: Prince Gaetan, Count of Girgenti +[2018-02-13T00:27:07.726] [INFO] cheese - inserting 1000 documents. first: David Ireland (disambiguation) and last: Dermopathy (disambiguation) +[2018-02-13T00:27:07.735] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T00:27:07.757] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:27:07.804] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:27:07.862] [INFO] cheese - inserting 1000 documents. first: Macho Mandow and last: Gnaphalium pes-cati +[2018-02-13T00:27:07.870] [INFO] cheese - inserting 1000 documents. first: Karen Ogden and last: Kondek-e Khanjar +[2018-02-13T00:27:07.920] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:27:07.927] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:27:07.981] [INFO] cheese - inserting 1000 documents. first: Zeta (magazine) and last: Aigaleo, Greece +[2018-02-13T00:27:08.018] [INFO] cheese - inserting 1000 documents. first: Dernbach (disambiguation) and last: Division of Honour (disambiguation) +[2018-02-13T00:27:08.058] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:27:08.064] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:27:08.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Zhu Xiao Di and last: La Junta station +[2018-02-13T00:27:08.184] [INFO] cheese - inserting 1000 documents. first: Fansub and last: Heinrich Schutz +[2018-02-13T00:27:08.211] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:27:08.247] [INFO] cheese - inserting 1000 documents. first: The Piano Sings and last: Nakheel Harbour and Tower +[2018-02-13T00:27:08.274] [INFO] cheese - batch complete in: 1.258 secs +[2018-02-13T00:27:08.304] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:27:08.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/macht-rap.de and last: Marguerite Geirnaert +[2018-02-13T00:27:08.352] [INFO] cheese - inserting 1000 documents. first: Divisive (disambiguation) and last: Dublin Review (disambiguation) +[2018-02-13T00:27:08.372] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:27:08.390] [INFO] cheese - inserting 1000 documents. first: Kondek and last: Yazd Now +[2018-02-13T00:27:08.391] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:27:08.436] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:27:08.581] [INFO] cheese - inserting 1000 documents. first: File:FnqrAO.png and last: Category:People from Bhopal +[2018-02-13T00:27:08.586] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Disgaea characters and last: 501st Clone Trooper Legion +[2018-02-13T00:27:08.633] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:27:08.640] [INFO] cheese - inserting 1000 documents. first: Whitesand Bay (Cornwall) and last: File:Skarabraelive.jpg +[2018-02-13T00:27:08.645] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:27:08.658] [INFO] cheese - inserting 1000 documents. first: Rhodicinium hexafluorophosphate and last: ESAC (disambiguation) +[2018-02-13T00:27:08.691] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:27:08.703] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:27:08.769] [INFO] cheese - inserting 1000 documents. first: Marguerite Gorr and last: Cotana germana +[2018-02-13T00:27:08.822] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:27:08.824] [INFO] cheese - inserting 1000 documents. first: Category:Military ranks of the Soviet Union and last: All-Star break (MLB) +[2018-02-13T00:27:08.872] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:27:08.981] [INFO] cheese - inserting 1000 documents. first: Stari Farkašić and last: Ashina Nishufu +[2018-02-13T00:27:09.008] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:27:09.009] [INFO] cheese - inserting 1000 documents. first: History of drinking and last: Wikipedia:Bots/Requests for approval/MetsBot 8 +[2018-02-13T00:27:09.018] [INFO] cheese - inserting 1000 documents. first: Broderick Wright and last: DSC-T50 +[2018-02-13T00:27:09.059] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:27:09.063] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:27:09.216] [INFO] cheese - inserting 1000 documents. first: M. Roslin Hashim and last: Re-Invention World Tour +[2018-02-13T00:27:09.307] [INFO] cheese - inserting 1000 documents. first: Ashina Funian and last: Eric Rogers (disambiguation) +[2018-02-13T00:27:09.311] [INFO] cheese - inserting 1000 documents. first: Cotana joiceyi and last: League of the Unemployed +[2018-02-13T00:27:09.325] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:27:09.330] [INFO] cheese - inserting 1000 documents. first: Psephocrita melanodoxa and last: Georgian legislative election, 2012 +[2018-02-13T00:27:09.344] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:27:09.390] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:27:09.388] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:27:09.434] [INFO] cheese - inserting 1000 documents. first: Antiphonitis and last: Battle of Dresden +[2018-02-13T00:27:09.495] [INFO] cheese - inserting 1000 documents. first: Frederick Bagg Bonanza Farm and last: Kocesker +[2018-02-13T00:27:09.501] [INFO] cheese - batch complete in: 1.226 secs +[2018-02-13T00:27:09.544] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:27:09.599] [INFO] cheese - inserting 1000 documents. first: Portal:Hamilton, Ontario/Box-footer and last: Hesitation Waltz +[2018-02-13T00:27:09.613] [INFO] cheese - inserting 1000 documents. first: Eric Rosenthal (disambiguation) and last: FIN (disambiguation) +[2018-02-13T00:27:09.667] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:27:09.678] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:27:09.801] [INFO] cheese - inserting 1000 documents. first: Wheelchair fencing at the 2012 Summer Paralympics – Men's sabre B and last: Arteria thoracica +[2018-02-13T00:27:09.837] [INFO] cheese - inserting 1000 documents. first: Claude Fell and last: Imani Vol. 1 +[2018-02-13T00:27:09.845] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:27:09.847] [INFO] cheese - inserting 1000 documents. first: Kocvelili and last: Spider Coneflower +[2018-02-13T00:27:09.872] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:27:09.874] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:27:09.905] [INFO] cheese - inserting 1000 documents. first: Modra Observatory and last: Eragon Shadeslayer +[2018-02-13T00:27:09.906] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2010 Summer Youth Olympics – Girls' 400 metre freestyle and last: Lastine +[2018-02-13T00:27:09.932] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T00:27:09.972] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:27:10.091] [INFO] cheese - inserting 1000 documents. first: Kids of the Century and last: The Notorious Mrs. Ebbsmith +[2018-02-13T00:27:10.132] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:27:10.139] [INFO] cheese - inserting 1000 documents. first: Erik Sanko and last: Step-sisters +[2018-02-13T00:27:10.172] [INFO] cheese - inserting 1000 documents. first: Windows Eight Point One and last: Colin Cruse +[2018-02-13T00:27:10.173] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:27:10.204] [INFO] cheese - inserting 1000 documents. first: Category:Jersey lawyers and last: Ptilinopus mangoliensis +[2018-02-13T00:27:10.209] [INFO] cheese - inserting 1000 documents. first: Fifth Freedom (disambiguation) and last: Forager (disambiguation) +[2018-02-13T00:27:10.212] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:27:10.238] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:27:10.263] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:27:10.445] [INFO] cheese - inserting 1000 documents. first: Hoosac River and last: File:PussyfootTheWayThatYouDoIt.ogg +[2018-02-13T00:27:10.478] [INFO] cheese - inserting 1000 documents. first: File:Nelly Cootalot Spoonbeaks Ahoy.png and last: List of Registered Historic Places in Ohio +[2018-02-13T00:27:10.487] [INFO] cheese - inserting 1000 documents. first: Yang Talat District and last: Spain national futsal team +[2018-02-13T00:27:10.500] [INFO] cheese - inserting 1000 documents. first: Foramen cecum (disambiguation) and last: Pulcifer, Wisconsin +[2018-02-13T00:27:10.505] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:27:10.514] [INFO] cheese - inserting 1000 documents. first: Category:Books by Maurice Gee and last: Christopher Seton-Watson +[2018-02-13T00:27:10.514] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:27:10.529] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:27:10.550] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:27:10.572] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:27:10.602] [INFO] cheese - inserting 1000 documents. first: Battle of Eckmühl and last: Bill Cosby +[2018-02-13T00:27:10.605] [INFO] cheese - inserting 1000 documents. first: Bill Martin (artist) and last: Ahmed Kousay Al-Taie +[2018-02-13T00:27:10.644] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:27:10.689] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T00:27:10.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Andrew Luke (2nd nomination) and last: Lukasrand Tower +[2018-02-13T00:27:10.746] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T00:27:10.806] [INFO] cheese - inserting 1000 documents. first: 2008 FIU Golden Panthers football and last: Weinberg (disambiguation) +[2018-02-13T00:27:10.840] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:27:10.926] [INFO] cheese - inserting 1000 documents. first: Umberleigh and last: Keith Ham +[2018-02-13T00:27:10.948] [INFO] cheese - inserting 1000 documents. first: Gambian (disambiguation) and last: Germantown, Pennsylvania (disambiguation) +[2018-02-13T00:27:10.959] [INFO] cheese - inserting 1000 documents. first: Fédération Indochinoise des Associations du Scoutisme and last: Wikipedia:WikiProject Spam/LinkReports/kbra.com +[2018-02-13T00:27:10.964] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:27:10.966] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:27:10.982] [INFO] cheese - inserting 1000 documents. first: Kendal Rugby Union Football Club and last: Hassan Odeola +[2018-02-13T00:27:11.001] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:27:11.023] [INFO] cheese - inserting 1000 documents. first: OpenFormula and last: Snow field +[2018-02-13T00:27:11.033] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:27:11.050] [INFO] cheese - inserting 1000 documents. first: Clairaut (disambiguation) and last: Asset recovery software +[2018-02-13T00:27:11.078] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:27:11.086] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:27:11.149] [INFO] cheese - inserting 1000 documents. first: Category:Seton Hall Pirates women's basketball and last: Gordon County (disambiguation) +[2018-02-13T00:27:11.167] [INFO] cheese - batch complete in: 0.201 secs +[2018-02-13T00:27:11.386] [INFO] cheese - inserting 1000 documents. first: Photometry (disambiguation) and last: ALCS broadcasters +[2018-02-13T00:27:11.396] [INFO] cheese - inserting 1000 documents. first: Category:Angola–India relations and last: File:Pokemon Chronicles.png +[2018-02-13T00:27:11.396] [INFO] cheese - inserting 1000 documents. first: Bruce Museum and last: Karalahti +[2018-02-13T00:27:11.421] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:27:11.437] [INFO] cheese - inserting 1000 documents. first: Gordon Craig (disambiguation) and last: Matthias of Neuburg +[2018-02-13T00:27:11.441] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:27:11.442] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:27:11.505] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:27:11.564] [INFO] cheese - inserting 1000 documents. first: File:Disease-Resistant Cassava Revives DRC Agriculture.JPG and last: Milli Yakjehti Council +[2018-02-13T00:27:11.587] [INFO] cheese - inserting 1000 documents. first: Yvain, the knight of the lion and last: 백지선 +[2018-02-13T00:27:11.616] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:27:11.649] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:27:11.701] [INFO] cheese - inserting 1000 documents. first: Green Lane (disambiguation) and last: HDGF (disambiguation) +[2018-02-13T00:27:11.722] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T00:27:11.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2012 October 7 and last: New programming language +[2018-02-13T00:27:11.807] [INFO] cheese - inserting 1000 documents. first: Category:Jackson State University alumni and last: Transfer (disambiguation) +[2018-02-13T00:27:11.868] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:27:11.908] [INFO] cheese - inserting 1000 documents. first: Pic-Pic and last: Jani Sullanmaa +[2018-02-13T00:27:11.914] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:27:11.945] [INFO] cheese - inserting 1000 documents. first: Anemonospermos verbascifolia and last: Order Of 13 Centuries Of Bulgaria +[2018-02-13T00:27:11.975] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:27:11.986] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:27:11.989] [INFO] cheese - inserting 1000 documents. first: HDMS (disambiguation) and last: Woo Fung +[2018-02-13T00:27:12.018] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:27:12.041] [INFO] cheese - inserting 1000 documents. first: PLOS and last: Foreign relations of Macedonia +[2018-02-13T00:27:12.119] [INFO] cheese - batch complete in: 1.429 secs +[2018-02-13T00:27:12.137] [INFO] cheese - inserting 1000 documents. first: Saint Clair (disambiguation) and last: Wikipedia:Articles for deletion/B-Valentine +[2018-02-13T00:27:12.156] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:27:12.168] [INFO] cheese - inserting 1000 documents. first: Grammatiko, Greece and last: Fleet management +[2018-02-13T00:27:12.224] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:27:12.275] [INFO] cheese - inserting 1000 documents. first: Harwich railway station (disambiguation) and last: Herald Island (disambiguation) +[2018-02-13T00:27:12.279] [INFO] cheese - inserting 1000 documents. first: Category:Lists of landforms by country and last: Barbadians in the Amazon +[2018-02-13T00:27:12.307] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:27:12.335] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:27:12.343] [INFO] cheese - inserting 1000 documents. first: Cleomenes (disambiguation) and last: GCT (disambiguation) +[2018-02-13T00:27:12.367] [INFO] cheese - inserting 1000 documents. first: Order of 13 Centuries of Bulgaria and last: Wikipedia:Articles for deletion/Log/2015 May 26 +[2018-02-13T00:27:12.370] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:27:12.410] [INFO] cheese - inserting 1000 documents. first: Bullshit episodes and last: Brunswick valley +[2018-02-13T00:27:12.443] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:27:12.472] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:27:12.558] [INFO] cheese - inserting 1000 documents. first: Chesterfield County Sheriff’s Office (Virginia) and last: Honey Creek, Wisconsin (disambiguation) +[2018-02-13T00:27:12.582] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:27:12.611] [INFO] cheese - inserting 1000 documents. first: Vergile Boumelaha and last: GCE (disambiguation) +[2018-02-13T00:27:12.658] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:27:12.756] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rev. Stephen T. Wheeler and last: Lane Dwinell +[2018-02-13T00:27:12.809] [INFO] cheese - inserting 1000 documents. first: Honey Creek Township (disambiguation) and last: Héricourt (disambiguation) +[2018-02-13T00:27:12.854] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:27:12.871] [INFO] cheese - inserting 1000 documents. first: Hemilability and last: File:G09828gpcz0.jpg +[2018-02-13T00:27:12.876] [INFO] cheese - inserting 1000 documents. first: Carl Bridge and last: Lisa A Callif +[2018-02-13T00:27:12.889] [INFO] cheese - inserting 1000 documents. first: Eucalyptus ovata and last: Chemerinsky +[2018-02-13T00:27:12.921] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:27:12.973] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:27:12.999] [INFO] cheese - inserting 1000 documents. first: Night and Day (disambiguation) and last: Unterseeboot 2513 +[2018-02-13T00:27:13.014] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:27:13.018] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:27:13.029] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:27:13.379] [INFO] cheese - inserting 1000 documents. first: Hòa Bình (disambiguation) and last: 2010 Copiapo mining accident +[2018-02-13T00:27:13.499] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:27:13.542] [INFO] cheese - inserting 1000 documents. first: Portal:Bihar/Selected articles/Layout and last: Isidor Barndt (1816-1891) +[2018-02-13T00:27:13.592] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:27:13.625] [INFO] cheese - inserting 1000 documents. first: David Searls and last: John Fownes-Luttrell +[2018-02-13T00:27:13.654] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:27:13.704] [INFO] cheese - inserting 1000 documents. first: Portal:Apple Inc./Selected article/9 and last: Category:Lists of Norwegian people by occupation +[2018-02-13T00:27:13.706] [INFO] cheese - inserting 1000 documents. first: File:PrabirAndTheSubstitutes.jpg and last: Moesa River +[2018-02-13T00:27:13.708] [INFO] cheese - inserting 1000 documents. first: Lawrence Gordon (producer) and last: Japanese dictionary +[2018-02-13T00:27:13.745] [INFO] cheese - inserting 1000 documents. first: Imperial Standard (disambiguation) and last: Ruby pipeline +[2018-02-13T00:27:13.766] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:27:13.765] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:27:13.778] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:27:13.785] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:27:13.828] [INFO] cheese - inserting 1000 documents. first: German submarine U 803 and last: Axel (disambiguation) +[2018-02-13T00:27:13.881] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:27:13.981] [INFO] cheese - inserting 1000 documents. first: ^? and last: Snežnik, Slovenia (settlement) +[2018-02-13T00:27:13.997] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T00:27:14.011] [INFO] cheese - inserting 1000 documents. first: Curtis turbine and last: Ibon Areso Mendiguren +[2018-02-13T00:27:14.055] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:27:14.102] [INFO] cheese - inserting 1000 documents. first: Winnisquam, NH and last: Gandikar +[2018-02-13T00:27:14.105] [INFO] cheese - inserting 1000 documents. first: German submarine UB-65 and last: Hacimemmedoba +[2018-02-13T00:27:14.124] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T00:27:14.130] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:27:14.210] [INFO] cheese - inserting 1000 documents. first: Zichron Moshe and last: Jiang (disambiguation) +[2018-02-13T00:27:14.221] [INFO] cheese - inserting 1000 documents. first: Von Hippel-Lindau and last: Category:Las Vegas Quicksilver players +[2018-02-13T00:27:14.224] [INFO] cheese - inserting 1000 documents. first: Melian and last: Love and Rockets +[2018-02-13T00:27:14.241] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:27:14.287] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:27:14.299] [INFO] cheese - inserting 1000 documents. first: Aetheria (disambiguation) and last: Wikipedia:Articles for deletion/The Ups and The Downs +[2018-02-13T00:27:14.300] [INFO] cheese - inserting 1000 documents. first: Kicking and Screaming and last: Baby Washington +[2018-02-13T00:27:14.327] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:27:14.328] [INFO] cheese - batch complete in: 2.208 secs +[2018-02-13T00:27:14.367] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:27:14.426] [INFO] cheese - inserting 1000 documents. first: Lewis acid catalysis and last: Outstanding Sound Design/Composition (Dance) +[2018-02-13T00:27:14.469] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:27:14.472] [INFO] cheese - inserting 1000 documents. first: Storvatnet (Bykle) and last: Iranian football league +[2018-02-13T00:27:14.504] [INFO] cheese - inserting 1000 documents. first: Aqua Zoo Friesland and last: Dávid Vojvoda +[2018-02-13T00:27:14.539] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:27:14.575] [INFO] cheese - inserting 1000 documents. first: Sow (disambiguation) and last: Times-Journal +[2018-02-13T00:27:14.583] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:27:14.624] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:27:14.702] [INFO] cheese - inserting 1000 documents. first: Komancza Republic and last: Matthew Theissen +[2018-02-13T00:27:14.778] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:27:14.795] [INFO] cheese - inserting 1000 documents. first: Smith Newton and last: Queen's Own Royal Glasgow Yeomanry, Lanarkshire (Glasgow) +[2018-02-13T00:27:14.823] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:27:14.874] [INFO] cheese - inserting 1000 documents. first: John Muir Award (disambiguation) and last: Category:Chadian Roman Catholic archbishops +[2018-02-13T00:27:14.892] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T00:27:14.984] [INFO] cheese - inserting 1000 documents. first: USS Titan and last: Salpistele +[2018-02-13T00:27:15.032] [INFO] cheese - inserting 1000 documents. first: Category:Eskişehir Cup and last: Sir George Parkyns, 4th Baronet +[2018-02-13T00:27:15.047] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:27:15.103] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:27:15.108] [INFO] cheese - inserting 1000 documents. first: Fred Christensen and last: File:Flesheatersposter.jpg +[2018-02-13T00:27:15.145] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Native American leader and last: Łąka, Podkarpackie Voivodeship +[2018-02-13T00:27:15.151] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:27:15.178] [INFO] cheese - inserting 1000 documents. first: Category:1989 elections in Turkey and last: Black Death (1992 film) +[2018-02-13T00:27:15.222] [INFO] cheese - inserting 1000 documents. first: Frans Gommers and last: KWAY (disambiguation) +[2018-02-13T00:27:15.222] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:27:15.226] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:27:15.256] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:27:15.529] [INFO] cheese - inserting 1000 documents. first: Currant-tree and last: Template:2000s-rock-single-stub +[2018-02-13T00:27:15.585] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:27:15.588] [INFO] cheese - inserting 1000 documents. first: KWEY (disambiguation) and last: Dent d'Oche +[2018-02-13T00:27:15.619] [INFO] cheese - inserting 1000 documents. first: Piled Higher and Deeper and last: Aberfoyle Park, South Australia +[2018-02-13T00:27:15.644] [INFO] cheese - inserting 1000 documents. first: Łukawiec, Rzeszów County and last: 11P (disambiguation) +[2018-02-13T00:27:15.667] [INFO] cheese - inserting 1000 documents. first: George Parkyns, 4th Baronet and last: Droughts in Australia +[2018-02-13T00:27:15.678] [INFO] cheese - inserting 1000 documents. first: 1572 in India and last: Category:3rd millennium in Saint Kitts and Nevis +[2018-02-13T00:27:15.693] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:27:15.730] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:27:15.779] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:27:15.785] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:27:15.805] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:27:16.099] [INFO] cheese - inserting 1000 documents. first: 11th Armored (disambiguation) and last: Category:List-Class Baseball articles by project +[2018-02-13T00:27:16.113] [INFO] cheese - inserting 1000 documents. first: Keloid and last: The (Young) Rascals +[2018-02-13T00:27:16.121] [INFO] cheese - inserting 1000 documents. first: Kast (disambiguation) and last: Kiełpiny (disambiguation) +[2018-02-13T00:27:16.127] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:27:16.152] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:27:16.268] [INFO] cheese - inserting 1000 documents. first: Limuchiha and last: Sweet Waters +[2018-02-13T00:27:16.270] [INFO] cheese - batch complete in: 1.941 secs +[2018-02-13T00:27:16.286] [INFO] cheese - inserting 1000 documents. first: Lexington Airport (Oregon) and last: File:Catalina-62.jpg +[2018-02-13T00:27:16.289] [INFO] cheese - inserting 1000 documents. first: Memory Rd. and last: Geological Survey of Finland, Bulletin +[2018-02-13T00:27:16.309] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:27:16.354] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:27:16.352] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:27:16.374] [INFO] cheese - inserting 1000 documents. first: Kiha (disambiguation) and last: Kordes (disambiguation) +[2018-02-13T00:27:16.399] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:27:16.494] [INFO] cheese - inserting 1000 documents. first: Sima Pandurović and last: Train Station +[2018-02-13T00:27:16.541] [INFO] cheese - inserting 1000 documents. first: Aukan (disambiguation) and last: Charles Jean Francois Henault +[2018-02-13T00:27:16.594] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:27:16.596] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:27:16.732] [INFO] cheese - inserting 1000 documents. first: KOT (disambiguation) and last: LEDS (disambiguation) +[2018-02-13T00:27:16.759] [INFO] cheese - inserting 1000 documents. first: Template:Olympics archery header/doc and last: Rtw2 +[2018-02-13T00:27:16.765] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:27:16.801] [INFO] cheese - inserting 1000 documents. first: Unterseeboot 1 (1906) and last: U-36 (1936) +[2018-02-13T00:27:16.810] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:27:16.832] [INFO] cheese - batch complete in: 0.236 secs +[2018-02-13T00:27:16.855] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Australia/Units/April 14 and last: Category:Tennis in Lithuania +[2018-02-13T00:27:16.871] [INFO] cheese - inserting 1000 documents. first: Template:Labour LegCo members and last: This Charming Life +[2018-02-13T00:27:16.899] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:27:16.906] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:27:16.980] [INFO] cheese - inserting 1000 documents. first: LEEP (disambiguation) and last: Langenfeld (disambiguation) +[2018-02-13T00:27:17.012] [INFO] cheese - inserting 1000 documents. first: U 36 (1936) and last: Areeiro (disambiguation) +[2018-02-13T00:27:17.014] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T00:27:17.045] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T00:27:17.104] [INFO] cheese - inserting 1000 documents. first: Veniss Underground and last: Non-executive director +[2018-02-13T00:27:17.159] [INFO] cheese - inserting 1000 documents. first: Rtw 2 and last: Template:Office holders in the Diocese of Gloucester +[2018-02-13T00:27:17.204] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:27:17.218] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:27:17.346] [INFO] cheese - inserting 1000 documents. first: Ares (rocket) (disambiguation) and last: Pennsylvania House of Representatives, District 15 +[2018-02-13T00:27:17.350] [INFO] cheese - inserting 1000 documents. first: Belén de Bajirá and last: Ameristar Jet Charter +[2018-02-13T00:27:17.359] [INFO] cheese - inserting 1000 documents. first: File:Homme-au-bain-christophe-honore.jpg and last: Lev Korolyov (disambiguation) +[2018-02-13T00:27:17.385] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:27:17.396] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:27:17.397] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:27:17.597] [INFO] cheese - inserting 1000 documents. first: Chobhar (disambiguation) and last: Gulluk, Azerbaijan +[2018-02-13T00:27:17.618] [INFO] cheese - batch complete in: 0.222 secs +[2018-02-13T00:27:17.628] [INFO] cheese - inserting 1000 documents. first: Lev of Galicia (disambiguation) and last: Live and Let Live (disambiguation) +[2018-02-13T00:27:17.653] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:27:17.661] [INFO] cheese - inserting 1000 documents. first: Wretched & Divine and last: Lynda Marchal +[2018-02-13T00:27:17.692] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:27:17.725] [INFO] cheese - inserting 1000 documents. first: Boy Meets World (Disney) and last: Incheon International Airport +[2018-02-13T00:27:17.738] [INFO] cheese - inserting 1000 documents. first: Patent Ochsner and last: Montréal/Boucherville Water Aerodrome +[2018-02-13T00:27:17.742] [INFO] cheese - inserting 1000 documents. first: Zarankiewicz and last: Category:Al-Qurain SC +[2018-02-13T00:27:17.754] [INFO] cheese - inserting 1000 documents. first: American Cream Draft and last: East Khandesh +[2018-02-13T00:27:17.778] [INFO] cheese - inserting 1000 documents. first: Seattle MLS 2010 and last: Ism (disambiguation) +[2018-02-13T00:27:17.786] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T00:27:17.790] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:27:17.797] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:27:17.799] [INFO] cheese - batch complete in: 0.181 secs +[2018-02-13T00:27:17.807] [INFO] cheese - batch complete in: 1.537 secs +[2018-02-13T00:27:17.825] [INFO] cheese - inserting 1000 documents. first: Live and Rare (disambiguation) and last: Lubów (disambiguation) +[2018-02-13T00:27:17.865] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T00:27:17.959] [INFO] cheese - inserting 1000 documents. first: Amber Beattie and last: Andravida military airport +[2018-02-13T00:27:17.984] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T00:27:17.985] [INFO] cheese - inserting 1000 documents. first: Smackdown (song) and last: Shablykinskiy +[2018-02-13T00:27:18.023] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:27:18.069] [INFO] cheese - inserting 1000 documents. first: Category:1983 in darts and last: 1868 Ecuador earthquakes +[2018-02-13T00:27:18.094] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:27:18.132] [INFO] cheese - inserting 1000 documents. first: File:HTML500 Logo Orange BG.png and last: Alvim Pereira +[2018-02-13T00:27:18.157] [INFO] cheese - inserting 1000 documents. first: Utah State Route 2 (disambiguation) and last: Franklin Township School District (disambiguation) +[2018-02-13T00:27:18.183] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T00:27:18.206] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:27:18.217] [INFO] cheese - inserting 1000 documents. first: Amyloid precursor protein secretase and last: Kimie Shingyoji +[2018-02-13T00:27:18.240] [INFO] cheese - inserting 1000 documents. first: New army sword and last: Oddur Pétursson +[2018-02-13T00:27:18.283] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:27:18.297] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:27:18.334] [INFO] cheese - inserting 1000 documents. first: MISA (disambiguation) and last: Shilpi Mudgal +[2018-02-13T00:27:18.343] [INFO] cheese - inserting 1000 documents. first: Shablykinski and last: Eat St +[2018-02-13T00:27:18.355] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:27:18.363] [INFO] cheese - inserting 1000 documents. first: Spring Creek School (disambiguation) and last: USASF (disambiguation) +[2018-02-13T00:27:18.374] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:27:18.396] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T00:27:18.496] [INFO] cheese - inserting 1000 documents. first: Adrian Gerald Foley and last: Anonymous Tombs in Amarna +[2018-02-13T00:27:18.571] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:27:18.716] [INFO] cheese - inserting 1000 documents. first: Kalika and last: LDD (disambiguation) +[2018-02-13T00:27:18.753] [INFO] cheese - inserting 1000 documents. first: Malcolm (disambiguation) and last: Mark Ellis (disambiguation) +[2018-02-13T00:27:18.776] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:27:18.781] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:27:18.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 April 12 and last: Religious views of Abraham Lincoln +[2018-02-13T00:27:18.927] [INFO] cheese - inserting 1000 documents. first: Barr 6 and last: Solid black (chicken plumage) +[2018-02-13T00:27:18.962] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:27:18.997] [INFO] cheese - inserting 1000 documents. first: Jo Hyeon-jeong and last: Acris +[2018-02-13T00:27:19.020] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:27:19.077] [INFO] cheese - inserting 1000 documents. first: Mark Everett (disambiguation) and last: Mayhew (disambiguation) +[2018-02-13T00:27:19.097] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:27:19.134] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:27:19.186] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Mickleover Royals and last: Batocera rufomaculata var. diana +[2018-02-13T00:27:19.201] [INFO] cheese - inserting 1000 documents. first: Grounded (disambiguation) and last: Pine Tree Council +[2018-02-13T00:27:19.241] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:27:19.256] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:27:19.374] [INFO] cheese - inserting 1000 documents. first: Einstein-Podolsky-Rosen paradox and last: Bolshevism +[2018-02-13T00:27:19.389] [INFO] cheese - inserting 1000 documents. first: Maylands (disambiguation) and last: Michael Culme-Seymour (disambiguation) +[2018-02-13T00:27:19.410] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:27:19.418] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/On the Radio (album) and last: C31H64 +[2018-02-13T00:27:19.462] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Heights, Illinois and last: File:Koufaxbother4.jpg +[2018-02-13T00:27:19.469] [INFO] cheese - batch complete in: 1.662 secs +[2018-02-13T00:27:19.476] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:27:19.518] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:27:19.534] [INFO] cheese - inserting 1000 documents. first: Baltimore Area Council and last: German submarine U63 +[2018-02-13T00:27:19.566] [INFO] cheese - inserting 1000 documents. first: Batocera rufomaculata var. flavescens and last: Jimmy Batten +[2018-02-13T00:27:19.568] [INFO] cheese - inserting 1000 documents. first: Gatorland and last: Pedro Linares +[2018-02-13T00:27:19.569] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:27:19.593] [INFO] cheese - inserting 1000 documents. first: Illinois-Indiana League and last: Rogério Lourenço +[2018-02-13T00:27:19.611] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:27:19.624] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:27:19.646] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:27:19.778] [INFO] cheese - inserting 1000 documents. first: Alan J. H. Maclean and last: Ebih-Il +[2018-02-13T00:27:19.808] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:27:19.859] [INFO] cheese - inserting 1000 documents. first: Rhodium (II) Acetate and last: Wilno region +[2018-02-13T00:27:19.865] [INFO] cheese - inserting 1000 documents. first: U-63 and last: Digyakhoba +[2018-02-13T00:27:19.891] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:27:19.892] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:27:19.894] [INFO] cheese - inserting 1000 documents. first: Ministério Público (disambiguation) and last: FNCZ +[2018-02-13T00:27:19.919] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:27:20.005] [INFO] cheese - inserting 1000 documents. first: Thomas Brown (minister) and last: Coudraysien +[2018-02-13T00:27:20.056] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:27:20.063] [INFO] cheese - inserting 1000 documents. first: Zaboomafoo and last: Burschenschaften +[2018-02-13T00:27:20.106] [INFO] cheese - inserting 1000 documents. first: SVCL and last: Musi (disambiguation) +[2018-02-13T00:27:20.121] [INFO] cheese - inserting 1000 documents. first: Ebih Il and last: Bolerium +[2018-02-13T00:27:20.128] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:27:20.146] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:27:20.160] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:27:20.224] [INFO] cheese - inserting 1000 documents. first: Ignateva and last: Ida Pollock +[2018-02-13T00:27:20.272] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:27:20.333] [INFO] cheese - inserting 1000 documents. first: 4-TE and last: Template:To SVG +[2018-02-13T00:27:20.342] [INFO] cheese - inserting 1000 documents. first: MusicDNA (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/onvibramfivefingersshoes.com +[2018-02-13T00:27:20.366] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:27:20.392] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:27:20.434] [INFO] cheese - inserting 1000 documents. first: Osmar Loss Vieira and last: File:TheMysteryTrainPoster.jpg +[2018-02-13T00:27:20.477] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:27:20.483] [INFO] cheese - inserting 1000 documents. first: Keley-i Kallahan language and last: File:Walt Disney World Dolphin logo.svg +[2018-02-13T00:27:20.534] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:27:20.600] [INFO] cheese - inserting 1000 documents. first: Template:R7 and last: Category:Dames Grand Cross of the Royal Victorian Order +[2018-02-13T00:27:20.621] [INFO] cheese - inserting 1000 documents. first: Arsenal (Highbury Hill) railway station and last: Freddie Brooks (musician) +[2018-02-13T00:27:20.631] [INFO] cheese - inserting 1000 documents. first: Momiji Dolls and last: Viadukt +[2018-02-13T00:27:20.654] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:27:20.657] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:27:20.681] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:27:20.749] [INFO] cheese - inserting 1000 documents. first: Dan Broström and last: Cry wolf +[2018-02-13T00:27:20.801] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:27:20.865] [INFO] cheese - inserting 1000 documents. first: Jim Meddick and last: Act of Navigation +[2018-02-13T00:27:20.892] [INFO] cheese - inserting 1000 documents. first: Neelum (disambiguation) and last: Niedźwiady (disambiguation) +[2018-02-13T00:27:20.914] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:27:20.925] [INFO] cheese - inserting 1000 documents. first: 2/1st Yorkshire Mounted Brigade and last: C13NH12O2Br +[2018-02-13T00:27:20.948] [INFO] cheese - batch complete in: 1.479 secs +[2018-02-13T00:27:20.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dermatology and last: Henning Bahs +[2018-02-13T00:27:20.972] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:27:20.996] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:27:21.007] [INFO] cheese - inserting 1000 documents. first: National Institute of Statistics and Census of Panama and last: Wikipedia:Articles for deletion/Pie Rats +[2018-02-13T00:27:21.082] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:27:21.142] [INFO] cheese - inserting 1000 documents. first: Icteric and last: Milan Jovanić +[2018-02-13T00:27:21.222] [INFO] cheese - inserting 1000 documents. first: Niedźwiednik (disambiguation) and last: Nowhere (disambiguation) +[2018-02-13T00:27:21.238] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:27:21.256] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:27:21.362] [INFO] cheese - inserting 1000 documents. first: Batuque (religion) and last: File:Frase de Neil Armstrong.ogg +[2018-02-13T00:27:21.409] [INFO] cheese - inserting 1000 documents. first: Bulgarian Constitutional Clubs and last: Talent (comics) +[2018-02-13T00:27:21.431] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:27:21.498] [INFO] cheese - inserting 1000 documents. first: Nowhere to Go (disambiguation) and last: Olchowiec (disambiguation) +[2018-02-13T00:27:21.501] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:27:21.558] [INFO] cheese - inserting 1000 documents. first: Akane the Kunoichi and last: Action of 9 February 1799 (South Africa) +[2018-02-13T00:27:21.566] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:27:21.576] [INFO] cheese - inserting 1000 documents. first: Sport (Russian TV channel,2011) and last: The Flatiron Challenge at Lacombe +[2018-02-13T00:27:21.621] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:27:21.661] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:27:21.778] [INFO] cheese - inserting 1000 documents. first: The Fremantle Journal and General Advertiser and last: Makai Kingdom: Chronicles Of The Sacred Tome +[2018-02-13T00:27:21.788] [INFO] cheese - inserting 1000 documents. first: Donde Estas Corazon? and last: Waldron, Washington +[2018-02-13T00:27:21.818] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:27:21.821] [INFO] cheese - inserting 1000 documents. first: IT Acronyms and last: HD 10180 f +[2018-02-13T00:27:21.830] [INFO] cheese - inserting 1000 documents. first: Electric light ochestra and last: Evgeniy Pokhlebaev +[2018-02-13T00:27:21.842] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:27:21.858] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:27:21.869] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:27:21.955] [INFO] cheese - inserting 1000 documents. first: Category:1968 in paleontology and last: Portal:Current events/2000 October 23 +[2018-02-13T00:27:21.987] [INFO] cheese - inserting 1000 documents. first: Trigonectes and last: Category:Pipelines in Oman +[2018-02-13T00:27:21.991] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:27:22.035] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:27:22.057] [INFO] cheese - inserting 1000 documents. first: Osieki (disambiguation) and last: PWU (disambiguation) +[2018-02-13T00:27:22.088] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T00:27:22.142] [INFO] cheese - inserting 1000 documents. first: Joe Smith (CFL football player) and last: Butanenitrile +[2018-02-13T00:27:22.191] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:27:22.208] [INFO] cheese - inserting 1000 documents. first: Evgueny Pokhlebaev and last: Narayanapuram +[2018-02-13T00:27:22.255] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:27:22.264] [INFO] cheese - inserting 1000 documents. first: Rennie Lake and last: Chou Chuan-huing +[2018-02-13T00:27:22.317] [INFO] cheese - inserting 1000 documents. first: PXC (disambiguation) and last: Paul Phoenix (disambiguation) +[2018-02-13T00:27:22.328] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:27:22.359] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T00:27:22.368] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2000 October 26 and last: High-level-architecture +[2018-02-13T00:27:22.429] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:27:22.439] [INFO] cheese - inserting 1000 documents. first: Category:Infrastructure in Oman and last: Wesley Kreder +[2018-02-13T00:27:22.456] [INFO] cheese - inserting 1000 documents. first: Navigation Acts and last: Jeremy Gelbwaks +[2018-02-13T00:27:22.544] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:27:22.553] [INFO] cheese - inserting 1000 documents. first: Pinchas Cohen Gan and last: Dianat +[2018-02-13T00:27:22.594] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:27:22.597] [INFO] cheese - inserting 1000 documents. first: Paul Pry (disambiguation) and last: Philippe Gardent (disambiguation) +[2018-02-13T00:27:22.593] [INFO] cheese - batch complete in: 1.645 secs +[2018-02-13T00:27:22.663] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:27:22.717] [INFO] cheese - inserting 1000 documents. first: Polyptychus affinis and last: Music City Championship at Gaylord Opryland +[2018-02-13T00:27:22.758] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:27:22.853] [INFO] cheese - inserting 1000 documents. first: Nadezda Petrovic and last: Don't you want me +[2018-02-13T00:27:22.922] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Wolfkeeper and last: Category:Dominican Republic at the Pan American Games +[2018-02-13T00:27:22.937] [INFO] cheese - inserting 1000 documents. first: Strictly Come Dancing - Series 10 and last: Category:Albums by Dominican Republic artists by genre +[2018-02-13T00:27:22.954] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:27:22.968] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:27:22.989] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:27:23.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Molly Bennett and last: Kleptomaniax +[2018-02-13T00:27:23.064] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Adele Schreiber-Krieger and last: Wikipedia:Related WikiProjects/WikiProject Minnesota Twins +[2018-02-13T00:27:23.162] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:27:23.180] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:27:23.267] [INFO] cheese - inserting 1000 documents. first: File:Buckethead-SpinalClock.jpg and last: Wikipedia:WikiProject Spam/LinkReports/thermalsolar.co.uk +[2018-02-13T00:27:23.268] [INFO] cheese - inserting 1000 documents. first: Bop Gun (Endangered Species) and last: Category:2008 in Canada +[2018-02-13T00:27:23.304] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:27:23.309] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:27:23.360] [INFO] cheese - inserting 1000 documents. first: Category:Merrimack College faculty and last: File:KK Smederevo 1953.png +[2018-02-13T00:27:23.396] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:27:23.457] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Caribbean/Turks and Caicos Islands work group and last: Wikipedia:Related WikiProjects/WikiProject Celts +[2018-02-13T00:27:23.512] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:27:23.594] [INFO] cheese - inserting 1000 documents. first: List of spherical objects in the Solar System and last: Metaformaldehye +[2018-02-13T00:27:23.641] [INFO] cheese - inserting 1000 documents. first: Doulos (SIL) and last: Wikipedia:Requests for adminship/Purplefeltangel2 +[2018-02-13T00:27:23.660] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:27:23.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thermalsolar.co.uk and last: Uinskaya +[2018-02-13T00:27:23.709] [INFO] cheese - inserting 1000 documents. first: Chromatic and diatonic and last: File:Peel sessions-triffids.jpg +[2018-02-13T00:27:23.738] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:27:23.741] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:27:23.794] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:27:23.816] [INFO] cheese - inserting 1000 documents. first: Category:Ruined castles in Fife and last: Thecla porthura +[2018-02-13T00:27:23.869] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:27:23.904] [INFO] cheese - inserting 1000 documents. first: Gábor Korchmáros and last: Wikipedia:Related WikiProjects/WikiProject Public Art +[2018-02-13T00:27:23.963] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:27:23.977] [INFO] cheese - inserting 1000 documents. first: Q106 (disambiguation) and last: Jacques-Marie Le Père +[2018-02-13T00:27:23.991] [INFO] cheese - inserting 1000 documents. first: File:Gotwald, William Washington En.jpg and last: William Best (Nova Scotia politician) +[2018-02-13T00:27:24.007] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T00:27:24.027] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:27:24.195] [INFO] cheese - inserting 1000 documents. first: Elegy (Twilight Zone episode) and last: Organisation for the Maintenance of Supplies +[2018-02-13T00:27:24.215] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Libraries/2013 (off-season) and last: CMLL Mini-Estrellas tournaments +[2018-02-13T00:27:24.231] [INFO] cheese - inserting 1000 documents. first: Rat-bite fevers and last: Cocos Island, Western Australia +[2018-02-13T00:27:24.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Georgia Tech and last: Complement Ther Med. +[2018-02-13T00:27:24.277] [INFO] cheese - inserting 1000 documents. first: C10H16N4O7 and last: Realistic (disambiguation) +[2018-02-13T00:27:24.276] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:27:24.299] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:27:24.334] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:27:24.350] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:27:24.351] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:27:24.363] [INFO] cheese - inserting 1000 documents. first: Oil of mirbane and last: Svecc +[2018-02-13T00:27:24.395] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:27:24.447] [INFO] cheese - inserting 1000 documents. first: At Home with Their Greatest Hits and last: Nigel Edward Buxton +[2018-02-13T00:27:24.517] [INFO] cheese - inserting 1000 documents. first: Realize (disambiguation) and last: Rich List (disambiguation) +[2018-02-13T00:27:24.532] [INFO] cheese - batch complete in: 1.937 secs +[2018-02-13T00:27:24.541] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:27:24.606] [INFO] cheese - inserting 1000 documents. first: Feng Zhongpu and last: Template:Attached KML/DG postcode area +[2018-02-13T00:27:24.632] [INFO] cheese - inserting 1000 documents. first: Category:Former Kurdish states and last: Synchrotron accelerator +[2018-02-13T00:27:24.652] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:27:24.685] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:27:24.723] [INFO] cheese - inserting 1000 documents. first: Category:Spetsnaz brigades of Russia and last: El Reno Municipal Swimming Pool Bath House +[2018-02-13T00:27:24.759] [INFO] cheese - inserting 1000 documents. first: Rich Township (disambiguation) and last: Robert Waterman (disambiguation) +[2018-02-13T00:27:24.766] [INFO] cheese - inserting 1000 documents. first: Liviu and last: Wikipedia:Articles for deletion/Poptimal +[2018-02-13T00:27:24.774] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:27:24.780] [INFO] cheese - inserting 1000 documents. first: Saraca and last: Matawan Regional High School +[2018-02-13T00:27:24.806] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T00:27:24.828] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:27:24.859] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:27:25.004] [INFO] cheese - inserting 1000 documents. first: Category:American Samoan clergy and last: Category:Road speed limit +[2018-02-13T00:27:25.050] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:27:25.064] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/DH postcode area and last: Template:Fb team Fortuna Brazi +[2018-02-13T00:27:25.093] [INFO] cheese - inserting 1000 documents. first: Geoffrey Hill (disambiguation) and last: Agra Cantt. (Vidhan Sabha constituency) +[2018-02-13T00:27:25.096] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:27:25.130] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:27:25.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Mass spectrometry/Participants and last: Divisions of Kenya +[2018-02-13T00:27:25.255] [INFO] cheese - inserting 1000 documents. first: 4 Stroke Internal Combustion Engine and last: Body and Soul (David Murray album) +[2018-02-13T00:27:25.282] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:27:25.328] [INFO] cheese - inserting 1000 documents. first: Browne v Dunn and last: Roy Wayne Farris +[2018-02-13T00:27:25.332] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:27:25.394] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:27:25.422] [INFO] cheese - inserting 1000 documents. first: Ruben Gonzalez (disambiguation) and last: Fundamenta Botanica +[2018-02-13T00:27:25.487] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:27:25.659] [INFO] cheese - inserting 1000 documents. first: Chanthaburi Province Stadium and last: Colobothea femorosa +[2018-02-13T00:27:25.674] [INFO] cheese - inserting 1000 documents. first: Fortuna Brazi and last: Wikipedia:Miscellany for deletion/Wikipedia:Articles for creation/Suman Ashraphi +[2018-02-13T00:27:25.694] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:27:25.713] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:27:25.762] [INFO] cheese - inserting 1000 documents. first: McDonald's Championship (golf) and last: Rosie Munter +[2018-02-13T00:27:25.788] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:27:25.911] [INFO] cheese - inserting 1000 documents. first: Cholesteryl pelargonate and last: Lime nitrogen +[2018-02-13T00:27:25.928] [INFO] cheese - inserting 1000 documents. first:  and last: The Barbegal mill +[2018-02-13T00:27:25.944] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T00:27:25.952] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:27:26.013] [INFO] cheese - inserting 1000 documents. first: Dave Magadan and last: KRNIC +[2018-02-13T00:27:26.020] [INFO] cheese - inserting 1000 documents. first: File:Hmwithsstuff.JPG and last: Old-fashioned (short story) +[2018-02-13T00:27:26.033] [INFO] cheese - inserting 1000 documents. first: Salvatore (disambiguation) and last: Sawgrass (disambiguation) +[2018-02-13T00:27:26.044] [INFO] cheese - inserting 1000 documents. first: Corinne Griffith and last: Jesus in Islam +[2018-02-13T00:27:26.057] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:27:26.077] [INFO] cheese - inserting 1000 documents. first: Colobothea fibrosa and last: Diomedea bidentata +[2018-02-13T00:27:26.077] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:27:26.083] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:27:26.110] [INFO] cheese - inserting 1000 documents. first:  and last:  +[2018-02-13T00:27:26.146] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:27:26.148] [INFO] cheese - batch complete in: 0.204 secs +[2018-02-13T00:27:26.166] [INFO] cheese - batch complete in: 1.634 secs +[2018-02-13T00:27:26.260] [INFO] cheese - inserting 1000 documents. first: Alpha-thiolglycerol and last: TaylorWessing +[2018-02-13T00:27:26.317] [INFO] cheese - inserting 1000 documents. first:  and last:  +[2018-02-13T00:27:26.320] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:27:26.332] [INFO] cheese - inserting 1000 documents. first: Luca Coletto and last: Seems Like Old Times (disambiguation) +[2018-02-13T00:27:26.348] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:27:26.386] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:27:26.454] [INFO] cheese - inserting 1000 documents. first: The GSIA and last: Wikipedia:Articles for deletion/The War of Turkish Presidential Elections +[2018-02-13T00:27:26.494] [INFO] cheese - inserting 1000 documents. first: Diomedea linearis and last: Windham Township (Wyoming County, Pennsylvania) +[2018-02-13T00:27:26.501] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:27:26.506] [INFO] cheese - inserting 1000 documents. first:  and last: File:Bedwetter cover.jpg +[2018-02-13T00:27:26.523] [INFO] cheese - batch complete in: 0.175 secs +[2018-02-13T00:27:26.535] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:27:26.592] [INFO] cheese - inserting 1000 documents. first: Sphincter pupillae and last: The First Duty +[2018-02-13T00:27:26.714] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:27:26.791] [INFO] cheese - inserting 1000 documents. first:  and last:  +[2018-02-13T00:27:26.812] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:27:26.828] [INFO] cheese - inserting 1000 documents. first: Seenu (disambiguation) and last: Carry chain +[2018-02-13T00:27:26.842] [INFO] cheese - inserting 1000 documents. first: 30076 and last: File:VA - Fairfax County Police Badge.jpg +[2018-02-13T00:27:26.860] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:27:26.892] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:27:27.003] [INFO] cheese - inserting 1000 documents. first: Igreja e Convento de Nossa Senhora do Carmo and last: 2015–16 Regionalliga (women) +[2018-02-13T00:27:27.004] [INFO] cheese - inserting 1000 documents. first: Beatdown Set and last: Pedro Oldoni +[2018-02-13T00:27:27.014] [INFO] cheese - inserting 1000 documents. first:  and last:  +[2018-02-13T00:27:27.046] [INFO] cheese - batch complete in: 0.234 secs +[2018-02-13T00:27:27.053] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:27:27.070] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:27:27.165] [INFO] cheese - inserting 1000 documents. first: Wilborn Temple First Church of God in Christ and last: Canvas (film) +[2018-02-13T00:27:27.193] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:27:27.226] [INFO] cheese - inserting 1000 documents. first: Curtain Call For Clifford and last: Poor housing +[2018-02-13T00:27:27.245] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:27:27.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jagged edges and last: University of La Laguna +[2018-02-13T00:27:27.264] [INFO] cheese - inserting 1000 documents. first: Diarrhoea and last: SQL programming language +[2018-02-13T00:27:27.286] [INFO] cheese - inserting 1000 documents. first: Yenikend, Sabirabad and last: Riding sword +[2018-02-13T00:27:27.307] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:27:27.328] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:27:27.347] [INFO] cheese - batch complete in: 1.18 secs +[2018-02-13T00:27:27.368] [INFO] cheese - inserting 1000 documents. first: Sio (disambiguation) and last: Somogyi (disambiguation) +[2018-02-13T00:27:27.387] [INFO] cheese - inserting 1000 documents. first: File:Dharmayutham.jpg and last: Wikipedia:WikiProject Directory/Description/WikiProject Cell Signaling +[2018-02-13T00:27:27.403] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:27:27.410] [INFO] cheese - inserting 1000 documents. first: Patricia Ross and last: Category:Regionally Important Geological / Geomorphicological Sites (RIGS) in Cumbria +[2018-02-13T00:27:27.445] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:27:27.462] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:27:27.548] [INFO] cheese - inserting 1000 documents. first: Glease (Glee) and last: Gorgyra mocquerysii +[2018-02-13T00:27:27.577] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:27:27.662] [INFO] cheese - inserting 1000 documents. first: Somov (disambiguation) and last: Iassy-Chişinău Operation +[2018-02-13T00:27:27.683] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T00:27:27.749] [INFO] cheese - inserting 1000 documents. first: Adenotrophic viviparity and last: Zhang Xiaobin (footballer, born 1985) +[2018-02-13T00:27:27.767] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Battle of Britpop and last: Bangladesh University of Professionals +[2018-02-13T00:27:27.810] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:27:27.815] [INFO] cheese - inserting 1000 documents. first: Layline and last: Saint Mary's Regional Medical Center (Reno, Nevada) +[2018-02-13T00:27:27.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Lede section and last: Steven Silver (disambiguation) +[2018-02-13T00:27:27.837] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:27:27.862] [INFO] cheese - batch complete in: 0.179 secs +[2018-02-13T00:27:27.865] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:27:27.914] [INFO] cheese - inserting 1000 documents. first: Jalan Tengku Ampuan Bariah and last: Archery at the 2004 Summer Paralympics – Men's individual W2 +[2018-02-13T00:27:27.936] [INFO] cheese - inserting 1000 documents. first: Category:1017 establishments by country and last: Wikipedia:WikiProject Directory/Description/WikiProject Intelligence Agency +[2018-02-13T00:27:27.963] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:27:27.986] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:27:28.053] [INFO] cheese - inserting 1000 documents. first: Steven Vidler (disambiguation) and last: Super Spike V'Ball/Nintendo World Cup (disambiguation) +[2018-02-13T00:27:28.072] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:27:28.232] [INFO] cheese - inserting 1000 documents. first: Super Sunday (disambiguation) and last: TVIS (disambiguation) +[2018-02-13T00:27:28.252] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:27:28.256] [INFO] cheese - inserting 1000 documents. first: Grand Theft Auto: Liberty City Stories Radio Stations and last: File:The Whole of the Moon Waterboys single.jpg +[2018-02-13T00:27:28.267] [INFO] cheese - inserting 1000 documents. first: Missouri - Nebraska Bell and last: Alexander Streatfeild +[2018-02-13T00:27:28.284] [INFO] cheese - inserting 1000 documents. first: HRH The Prince Philip and last: West Farms Square–East Tremont Avenue +[2018-02-13T00:27:28.290] [INFO] cheese - inserting 1000 documents. first: Category:Ecuador communications-related lists and last: Joy Laville +[2018-02-13T00:27:28.303] [INFO] cheese - inserting 1000 documents. first: Quévy and last: European Capital of Culture +[2018-02-13T00:27:28.313] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:27:28.311] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:27:28.331] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:27:28.331] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:27:28.433] [INFO] cheese - batch complete in: 1.086 secs +[2018-02-13T00:27:28.493] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Interlanguage Links and last: P2P economic system +[2018-02-13T00:27:28.500] [INFO] cheese - inserting 1000 documents. first: TVL (disambiguation) and last: Termini (disambiguation) +[2018-02-13T00:27:28.523] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T00:27:28.566] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:27:28.681] [INFO] cheese - inserting 1000 documents. first: File:C.brunneus.png and last: University Medical Center Utrecht +[2018-02-13T00:27:28.688] [INFO] cheese - inserting 1000 documents. first: List of settlement houses in Chicago and last: ⡐ +[2018-02-13T00:27:28.717] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:27:28.721] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:27:28.724] [INFO] cheese - inserting 1000 documents. first: Tern Island (disambiguation) and last: Cardiff City F.C. season 1992–93 +[2018-02-13T00:27:28.747] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T00:27:28.786] [INFO] cheese - inserting 1000 documents. first: Template:Election dual-member and last: Wikipedia:Articles for deletion/Vandalismo +[2018-02-13T00:27:28.787] [INFO] cheese - inserting 1000 documents. first: Just Add Water and last: Vivien Savage +[2018-02-13T00:27:28.822] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:27:28.841] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:27:28.859] [INFO] cheese - inserting 1000 documents. first: ⡑ and last: Category:Jordan transport-related lists +[2018-02-13T00:27:28.877] [INFO] cheese - batch complete in: 0.155 secs +[2018-02-13T00:27:28.906] [INFO] cheese - inserting 1000 documents. first: The Man I Love (disambiguation) and last: Standing Rules of the United States Senate, Rule XXXV +[2018-02-13T00:27:28.924] [INFO] cheese - batch complete in: 0.177 secs +[2018-02-13T00:27:29.049] [INFO] cheese - inserting 1000 documents. first: File:Dora the Explorer logo.svg and last: 긏 +[2018-02-13T00:27:29.066] [INFO] cheese - batch complete in: 0.189 secs +[2018-02-13T00:27:29.088] [INFO] cheese - inserting 1000 documents. first: Done and last: File:The Stuffs.jpg +[2018-02-13T00:27:29.131] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:27:29.136] [INFO] cheese - inserting 1000 documents. first: Thomas Crittenden (disambiguation) and last: Tomisław (disambiguation) +[2018-02-13T00:27:29.140] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Philosophy/Epistemology and last: White-Holman House +[2018-02-13T00:27:29.161] [INFO] cheese - batch complete in: 0.237 secs +[2018-02-13T00:27:29.164] [INFO] cheese - inserting 1000 documents. first: Stonor (disambiguation) and last: Zurbahan +[2018-02-13T00:27:29.200] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:27:29.202] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:27:29.255] [INFO] cheese - inserting 1000 documents. first: Neuropsychology (journal) and last: 냅 +[2018-02-13T00:27:29.280] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:27:29.350] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Universal hacking corporation and last: Reserve Bank +[2018-02-13T00:27:29.379] [INFO] cheese - inserting 1000 documents. first: Tomki (disambiguation) and last: Tropical Storm Opal (disambiguation) +[2018-02-13T00:27:29.402] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:27:29.410] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T00:27:29.449] [INFO] cheese - inserting 1000 documents. first: 냆 and last: 둈 +[2018-02-13T00:27:29.465] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T00:27:29.499] [INFO] cheese - inserting 1000 documents. first: CONSOL Energy Park and last: Wikipedia:Articles for deletion/Guided self service +[2018-02-13T00:27:29.543] [INFO] cheese - inserting 1000 documents. first: File:Johnny von neumann sig.gif and last: File:Vertex new.jpg +[2018-02-13T00:27:29.547] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:27:29.582] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Ophelia (disambiguation) and last: UMN (disambiguation) +[2018-02-13T00:27:29.588] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:27:29.600] [INFO] cheese - batch complete in: 0.19 secs +[2018-02-13T00:27:29.622] [INFO] cheese - inserting 1000 documents. first: File:J.C. Deagan, Inc. Logo.png and last: Category:Producer, Artist +[2018-02-13T00:27:29.661] [INFO] cheese - inserting 1000 documents. first: Dario Fo and last: John MacBride +[2018-02-13T00:27:29.666] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:27:29.710] [INFO] cheese - inserting 1000 documents. first: Kolyshleyskaya and last: Kitikmeot Air +[2018-02-13T00:27:29.732] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T00:27:29.742] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:27:29.803] [INFO] cheese - inserting 1000 documents. first: Moorilla Vinyard and last: LANTIRN pods +[2018-02-13T00:27:29.828] [INFO] cheese - inserting 1000 documents. first: UMO (disambiguation) and last: Urtenen (disambiguation) +[2018-02-13T00:27:29.864] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:27:29.871] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:27:29.964] [INFO] cheese - inserting 1000 documents. first: File:Edge new.jpg and last: Inter curtea de arges +[2018-02-13T00:27:29.992] [INFO] cheese - inserting 1000 documents. first: Phi Lambda Alpha and last: Lirası +[2018-02-13T00:27:30.009] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:27:30.042] [INFO] cheese - inserting 1000 documents. first: Long–Evans rat and last: Dakota Jackson +[2018-02-13T00:27:30.059] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:27:30.103] [INFO] cheese - inserting 1000 documents. first: Zoveydi-ye Ramezan and last: 2012–13 Southern Illinois Salukis men's basketball team +[2018-02-13T00:27:30.104] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:27:30.105] [INFO] cheese - inserting 1000 documents. first: Urubamba (disambiguation) and last: P-51/F-6C Mustang +[2018-02-13T00:27:30.154] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:27:30.239] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:27:30.385] [INFO] cheese - inserting 1000 documents. first: SCUD missiles and last: George Kranky +[2018-02-13T00:27:30.416] [INFO] cheese - inserting 1000 documents. first: Via Nazionale (disambiguation) and last: WFAS (disambiguation) +[2018-02-13T00:27:30.437] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:27:30.453] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:27:30.487] [INFO] cheese - inserting 1000 documents. first: Schizoeaca and last: Diocletian window +[2018-02-13T00:27:30.507] [INFO] cheese - inserting 1000 documents. first: 1994 Northeast Louisiana Indians football team and last: 뚿 +[2018-02-13T00:27:30.532] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:27:30.549] [INFO] cheese - inserting 1000 documents. first: Jack Abbot (disambiguation) and last: Prof. Michael Beesley +[2018-02-13T00:27:30.532] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:27:30.590] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:27:30.638] [INFO] cheese - inserting 1000 documents. first: ORESKABAND and last: Hanover School District 28 +[2018-02-13T00:27:30.641] [INFO] cheese - inserting 1000 documents. first: WFBR (disambiguation) and last: Tambor huasca +[2018-02-13T00:27:30.665] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T00:27:30.681] [INFO] cheese - inserting 1000 documents. first: 뛀 and last: 멬 +[2018-02-13T00:27:30.692] [INFO] cheese - batch complete in: 0.16 secs +[2018-02-13T00:27:30.696] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:27:30.817] [INFO] cheese - inserting 1000 documents. first: 멭 and last: 븟 +[2018-02-13T00:27:30.820] [INFO] cheese - inserting 1000 documents. first: Theodore Kollek and last: Fawzi Khalid Abdullah Fahad Al Odah +[2018-02-13T00:27:30.837] [INFO] cheese - batch complete in: 0.144 secs +[2018-02-13T00:27:30.869] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:27:30.871] [INFO] cheese - inserting 1000 documents. first: Relligion and last: Yankees—Mets rivalry +[2018-02-13T00:27:30.906] [INFO] cheese - inserting 1000 documents. first: John Gilroy and last: Category:1941 in Switzerland +[2018-02-13T00:27:30.919] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:27:30.927] [INFO] cheese - inserting 1000 documents. first: Template:Country data Nanyo and last: Category:2012–13 in Surinamese football +[2018-02-13T00:27:30.934] [INFO] cheese - inserting 1000 documents. first: Liam Gallagher and last: Loyalist feud +[2018-02-13T00:27:30.935] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T00:27:30.976] [INFO] cheese - inserting 1000 documents. first: 븠 and last: 쇈 +[2018-02-13T00:27:30.979] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:27:31.001] [INFO] cheese - batch complete in: 0.164 secs +[2018-02-13T00:27:31.030] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T00:27:31.146] [INFO] cheese - inserting 1000 documents. first: 쇉 and last: 앩 +[2018-02-13T00:27:31.160] [INFO] cheese - batch complete in: 0.157 secs +[2018-02-13T00:27:31.190] [INFO] cheese - inserting 1000 documents. first: White Marsh (disambiguation) and last: Williamson River (disambiguation) +[2018-02-13T00:27:31.197] [INFO] cheese - inserting 1000 documents. first: Lion's Mane Jelly and last: Category:Rapid transit in the Philippines +[2018-02-13T00:27:31.215] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:27:31.240] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:27:31.262] [INFO] cheese - inserting 1000 documents. first: Helmuth Duckadam and last: Anton Felkel +[2018-02-13T00:27:31.308] [INFO] cheese - inserting 1000 documents. first: Category:19th-century establishments in Sudan and last: Demographics of Cleveland, Ohio +[2018-02-13T00:27:31.315] [INFO] cheese - inserting 1000 documents. first: Category:Disease-related deaths in Canada and last: Category:Africa politician templates +[2018-02-13T00:27:31.321] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:27:31.364] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:27:31.411] [INFO] cheese - inserting 1000 documents. first: Williamsport (disambiguation) and last: Sulaiman Shah II of Kedah +[2018-02-13T00:27:31.424] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:27:31.503] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:27:31.600] [INFO] cheese - inserting 1000 documents. first: 앪 and last: Wikipedia:Sockpuppet investigations/117.199.111.175/Archive +[2018-02-13T00:27:31.639] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:27:31.794] [INFO] cheese - inserting 1000 documents. first: De Fructibus Et Seminibus Plantarum and last: Holt Publishers +[2018-02-13T00:27:31.796] [INFO] cheese - inserting 1000 documents. first: X woman (disambiguation) and last: Take a Letter Mr. Jones +[2018-02-13T00:27:31.831] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:27:31.855] [INFO] cheese - inserting 1000 documents. first: Hydrocarbon classification and last: Robert Spitzer +[2018-02-13T00:27:31.890] [INFO] cheese - inserting 1000 documents. first: Friuli-Venezia Giulia regional election, 2008 and last: FL 7 +[2018-02-13T00:27:31.888] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:27:31.941] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:27:31.947] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:27:31.958] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Tanzania by decade and last: Eat-the-World +[2018-02-13T00:27:32.055] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:27:32.139] [INFO] cheese - inserting 1000 documents. first: Selçuk Dereli and last: Vietjet Aviation Join Stock Company +[2018-02-13T00:27:32.191] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:27:32.233] [INFO] cheese - inserting 1000 documents. first: ZPR (disambiguation) and last: Łaszewo (disambiguation) +[2018-02-13T00:27:32.266] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:27:32.378] [INFO] cheese - inserting 1000 documents. first: Chevy subdivision and last: File:Watchmylips.jpg +[2018-02-13T00:27:32.395] [INFO] cheese - inserting 1000 documents. first: Convair 600 and last: 109th Regiment of Foot (Bombay Infantry) +[2018-02-13T00:27:32.427] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:27:32.439] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:27:32.547] [INFO] cheese - inserting 1000 documents. first: Coat of arms of New York and last: Yitschak Rabin +[2018-02-13T00:27:32.614] [INFO] cheese - inserting 1000 documents. first: Canada Scoops and last: Jonathan Browning (designer) +[2018-02-13T00:27:32.662] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:27:32.664] [INFO] cheese - inserting 1000 documents. first: Template:Basketball kit and last: Template:Independent Nationalist/meta/color +[2018-02-13T00:27:32.699] [INFO] cheese - batch complete in: 1.669 secs +[2018-02-13T00:27:32.708] [INFO] cheese - inserting 1000 documents. first: Vietjet Aviation Joint Stock Company and last: List of Azerbaijani writers +[2018-02-13T00:27:32.712] [INFO] cheese - inserting 1000 documents. first: Ławica (disambiguation) and last: File:Ksee24.jpg +[2018-02-13T00:27:32.731] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:27:32.813] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:27:32.832] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:27:32.944] [INFO] cheese - inserting 1000 documents. first: Bigutar and last: Pelamis Wave Power +[2018-02-13T00:27:33.047] [INFO] cheese - inserting 1000 documents. first: String Instrument Repertoire and last: Janssone van Dornicke +[2018-02-13T00:27:33.068] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:27:33.097] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:27:33.360] [INFO] cheese - inserting 1000 documents. first: Punjab Youth Festival and last: Category:Lists by city in the Philippines +[2018-02-13T00:27:33.404] [INFO] cheese - inserting 1000 documents. first: Template:Independent Nationalist/meta/shortname and last: Hearst Communications, Inc +[2018-02-13T00:27:33.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Yannis Spathas and last: List of Lua IDEs +[2018-02-13T00:27:33.430] [INFO] cheese - inserting 1000 documents. first: Chalalán Ecolodge and last: San Javier Municipality, Cercado +[2018-02-13T00:27:33.435] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:27:33.497] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:27:33.505] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:27:33.535] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:27:33.547] [INFO] cheese - inserting 1000 documents. first: Nicholas Paspaley Senior and last: Seikichi Odo +[2018-02-13T00:27:33.593] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:27:33.652] [INFO] cheese - inserting 1000 documents. first: Buck dancing and last: Category:Carlism +[2018-02-13T00:27:33.691] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:27:33.848] [INFO] cheese - inserting 1000 documents. first: Chhitauna and last: Uinskii Raion +[2018-02-13T00:27:33.869] [INFO] cheese - inserting 1000 documents. first: George M. Williamson (architect) and last: Padmapani Acharya +[2018-02-13T00:27:33.878] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:27:33.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of unusual animal anecdotes and last: Heather Ryan (Playboy model) +[2018-02-13T00:27:33.920] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:27:33.926] [INFO] cheese - inserting 1000 documents. first: List of C Sharp IDEs and last: Concern (organisation) +[2018-02-13T00:27:33.942] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:27:33.990] [INFO] cheese - inserting 1000 documents. first: Stirling County RFC and last: Mitcham Library +[2018-02-13T00:27:33.992] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:27:34.048] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:27:34.085] [INFO] cheese - inserting 1000 documents. first: Ahmed Shukairy and last: Mathematicians +[2018-02-13T00:27:34.144] [INFO] cheese - inserting 1000 documents. first: Daizona pacifica and last: Lukinić Brdo +[2018-02-13T00:27:34.159] [INFO] cheese - batch complete in: 1.46 secs +[2018-02-13T00:27:34.202] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:27:34.254] [INFO] cheese - inserting 1000 documents. first: Veritas Music Entertainment, Inc. and last: Capri, Campania +[2018-02-13T00:27:34.304] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:27:34.332] [INFO] cheese - inserting 1000 documents. first: Niels Werring and last: Portal:Canada/Tab1 +[2018-02-13T00:27:34.353] [INFO] cheese - inserting 1000 documents. first: Category:Lists of companies of the Czech Republic and last: Musculus psoas major +[2018-02-13T00:27:34.373] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:27:34.394] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:27:34.492] [INFO] cheese - inserting 1000 documents. first: Serrano-class destroyer and last: Eastwood, South Australia +[2018-02-13T00:27:34.535] [INFO] cheese - inserting 1000 documents. first: File:Ambo Mineral Water logo.jpg and last: 2015-16 Minnesota Wild season +[2018-02-13T00:27:34.545] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:27:34.599] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:27:34.612] [INFO] cheese - inserting 1000 documents. first: The God Of Cookery and last: Department of Premier and Cabinet (New South Wales) +[2018-02-13T00:27:34.669] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:27:34.745] [INFO] cheese - inserting 1000 documents. first: St. John (store) and last: List of Hospitals in Macau +[2018-02-13T00:27:34.752] [INFO] cheese - inserting 1000 documents. first: 1979 Alpine Skiing World Cup – Men's Downhill and last: Wikipedia:Articles for deletion/Mi Propio Auto +[2018-02-13T00:27:34.787] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:27:34.792] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:27:34.812] [INFO] cheese - inserting 1000 documents. first: Shrenika and last: Wikipedia:Reference desk/Archives/Mathematics/2008 October 14 +[2018-02-13T00:27:34.871] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:27:34.950] [INFO] cheese - inserting 1000 documents. first: File:Logo Dzair TV.png and last: Dichomeris lotellus +[2018-02-13T00:27:34.995] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:27:35.085] [INFO] cheese - inserting 1000 documents. first: Erindale, South Australia and last: Flixton +[2018-02-13T00:27:35.130] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:27:35.139] [INFO] cheese - inserting 1000 documents. first: Peck NW2 and last: Wikipedia:MSIE Tools +[2018-02-13T00:27:35.178] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:27:35.225] [INFO] cheese - inserting 1000 documents. first: Ventaquemada and last: Equity feminists +[2018-02-13T00:27:35.253] [INFO] cheese - inserting 1000 documents. first: William Mareshall and last: Stare Garnowo +[2018-02-13T00:27:35.278] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:27:35.282] [INFO] cheese - inserting 1000 documents. first: Description Logic and last: Safari +[2018-02-13T00:27:35.299] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:27:35.337] [INFO] cheese - inserting 1000 documents. first: Salim Ghazal and last: Ningerum, Papua New Guinea +[2018-02-13T00:27:35.362] [INFO] cheese - batch complete in: 1.203 secs +[2018-02-13T00:27:35.430] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:27:35.466] [INFO] cheese - inserting 1000 documents. first: Category:German cameras and last: Griswold Home Care +[2018-02-13T00:27:35.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Opera tools and last: North China plain +[2018-02-13T00:27:35.548] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:27:35.591] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:27:35.598] [INFO] cheese - inserting 1000 documents. first: Former Yugoslav Republic of Macedonia - Denar and last: Homologoumena +[2018-02-13T00:27:35.634] [INFO] cheese - inserting 1000 documents. first: Roosevelt Hotel (New Orleans) and last: A Most Peculiar Man +[2018-02-13T00:27:35.642] [INFO] cheese - inserting 1000 documents. first: Andrew Lahde and last: Murowaniec, Masovian Voivodeship +[2018-02-13T00:27:35.657] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:27:35.665] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:27:35.688] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:27:35.760] [INFO] cheese - inserting 1000 documents. first: Mait and last: Panzer Division Tatra +[2018-02-13T00:27:35.804] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:27:35.932] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Vbabey and last: Wikipedia:Sockpuppet investigations/Almightyvegeta/Archive +[2018-02-13T00:27:35.950] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Consumer Reports/Medical education and last: Rodeo (Travis Scott album) +[2018-02-13T00:27:35.964] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:27:36.016] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:27:36.038] [INFO] cheese - inserting 1000 documents. first: Nowa Pułapina and last: Tim the Tiny Horse at Large +[2018-02-13T00:27:36.086] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:27:36.118] [INFO] cheese - inserting 1000 documents. first: Joxer Goes to Stuttgart and last: Self-facilitating media node +[2018-02-13T00:27:36.125] [INFO] cheese - inserting 1000 documents. first: Ledger Hill and last: Creative Music Studio +[2018-02-13T00:27:36.132] [INFO] cheese - inserting 1000 documents. first: Typhoon Namtheun and last: Leo Stepanyan +[2018-02-13T00:27:36.169] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:27:36.181] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:27:36.205] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:27:36.386] [INFO] cheese - inserting 1000 documents. first: List of Connecticut breweries and last: Hive mind (disambiguation) +[2018-02-13T00:27:36.402] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in New Spain by century and last: Kuzhithurai railway station +[2018-02-13T00:27:36.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (anglicization) and last: Primitive root modulo n +[2018-02-13T00:27:36.452] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:27:36.470] [INFO] cheese - inserting 1000 documents. first: Grzbiet Lasocki and last: Integral Nactiv +[2018-02-13T00:27:36.499] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:27:36.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Planet Recordz and last: Whitaker College of Health Sciences +[2018-02-13T00:27:36.536] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:27:36.544] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T00:27:36.569] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:27:36.684] [INFO] cheese - inserting 1000 documents. first: 281st Security Division (Wehrmacht) and last: Petionville, Haiti +[2018-02-13T00:27:36.729] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:27:36.774] [INFO] cheese - inserting 1000 documents. first: Kaitarō Hasegawa and last: A man for all islands +[2018-02-13T00:27:36.820] [INFO] cheese - inserting 1000 documents. first: File:Resurrection City Washington D.C. 1968.jpg and last: Wikipedia:Articles for deletion/Lokanatham Nandikeswararao +[2018-02-13T00:27:36.855] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:27:36.885] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:27:36.901] [INFO] cheese - inserting 1000 documents. first: Suchindram railway station and last: Antonella (TV series) +[2018-02-13T00:27:36.925] [INFO] cheese - inserting 1000 documents. first: Category:Ahva politicians and last: Wikipedia:WikiProject Spam/LinkReports/pfculture.net +[2018-02-13T00:27:36.946] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:27:36.971] [INFO] cheese - inserting 1000 documents. first: Natomas Men's Professional Tennis Tournament and last: List of articles about Ontario CCF/NDP members +[2018-02-13T00:27:36.986] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:27:37.046] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:27:37.241] [INFO] cheese - inserting 1000 documents. first: IPS Panel and last: Cotton Club Casino +[2018-02-13T00:27:37.276] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:27:37.295] [INFO] cheese - inserting 1000 documents. first: John Borstlap and last: Category:1997–98 in Caribbean football by country +[2018-02-13T00:27:37.320] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blue Prism and last: Labaratorija zvuka +[2018-02-13T00:27:37.336] [INFO] cheese - inserting 1000 documents. first: Situated knowledge and last: Luis de Urquijo +[2018-02-13T00:27:37.335] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:27:37.368] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the Middle East and last: Nokia 2760 +[2018-02-13T00:27:37.373] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:27:37.384] [INFO] cheese - inserting 1000 documents. first: Category:Palladian Revival architecture in California and last: Sylwia Ejdys +[2018-02-13T00:27:37.427] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:27:37.437] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:27:37.503] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:27:37.679] [INFO] cheese - inserting 1000 documents. first: File:MediaCorp okto.jpg and last: List of Ambassadors of Russia to Côte d'Ivoire +[2018-02-13T00:27:37.697] [INFO] cheese - inserting 1000 documents. first: Category:1998–99 in Caribbean football by country and last: File:Dami Im - Smile.jpg +[2018-02-13T00:27:37.764] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:27:37.763] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:27:37.815] [INFO] cheese - inserting 1000 documents. first: Press and last: Gusto (album) +[2018-02-13T00:27:37.937] [INFO] cheese - inserting 1000 documents. first: Zolotaya Dolina and last: Lukas Wooller +[2018-02-13T00:27:37.939] [INFO] cheese - batch complete in: 1.388 secs +[2018-02-13T00:27:37.974] [INFO] cheese - inserting 1000 documents. first: Tatiana Golikova and last: VT-04 +[2018-02-13T00:27:37.984] [INFO] cheese - inserting 1000 documents. first: Code of Laws of the United States of America and last: Template:Infobox Six Nations Championship 2 +[2018-02-13T00:27:38.022] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:27:38.049] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:27:38.054] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:27:38.074] [INFO] cheese - inserting 1000 documents. first: Template:Shaw Communications and last: Madeleine Bejart +[2018-02-13T00:27:38.165] [INFO] cheese - inserting 1000 documents. first: Sabit Uka and last: Wikipedia:Sockpuppet investigations/YourMamasWeightIsOffTheScale +[2018-02-13T00:27:38.171] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:27:38.200] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:27:38.269] [INFO] cheese - inserting 1000 documents. first: List of colonial governors of Côte d'Ivoire and last: 1984 U.S. Pro Indoor – Doubles +[2018-02-13T00:27:38.322] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:27:38.580] [INFO] cheese - inserting 1000 documents. first: Resonance Records and last: Category:2010 in table tennis +[2018-02-13T00:27:38.590] [INFO] cheese - inserting 1000 documents. first: VT-06 and last: File:Equilibrium sign 15.png +[2018-02-13T00:27:38.676] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:27:38.677] [INFO] cheese - inserting 1000 documents. first: List of Mississippi state highways and last: Category:Albinism +[2018-02-13T00:27:38.688] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:27:38.718] [INFO] cheese - inserting 1000 documents. first: Karen Strong-Hearth and last: Category:2012–13 Oberliga +[2018-02-13T00:27:38.772] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:27:38.813] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:27:38.823] [INFO] cheese - inserting 1000 documents. first: Armande Gresinde Claire Elizabeth Béjart and last: Pocock Racing Shells +[2018-02-13T00:27:38.903] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:27:38.956] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2004 Summer Paralympics – Women's 100 metre breaststroke SB5 and last: Category:Liberia communications-related lists +[2018-02-13T00:27:38.999] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:27:39.034] [INFO] cheese - inserting 1000 documents. first: Josefina Valencia Muñoz and last: Agboville, Ivory Coast +[2018-02-13T00:27:39.081] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:27:39.159] [INFO] cheese - inserting 1000 documents. first: Samuel Tyszelman and last: Category:Journalists from North Dakota +[2018-02-13T00:27:39.177] [INFO] cheese - inserting 1000 documents. first: Category:Polish Roman Catholic saints and last: Show Boat (book) +[2018-02-13T00:27:39.197] [INFO] cheese - inserting 1000 documents. first: Michael Horton (actor) and last: Reginaldo de Santana Marilia +[2018-02-13T00:27:39.206] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:27:39.223] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:27:39.233] [INFO] cheese - inserting 1000 documents. first: L'Hopital's rule and last: 1921 in literature +[2018-02-13T00:27:39.245] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:27:39.297] [INFO] cheese - batch complete in: 1.358 secs +[2018-02-13T00:27:39.314] [INFO] cheese - inserting 1000 documents. first: File:DonaldWolfit.jpg and last: Wikipedia:Reference desk/Archives/Language/2012 October 16 +[2018-02-13T00:27:39.355] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:27:39.404] [INFO] cheese - inserting 1000 documents. first: Emma Barton and last: Jolinar's Memories +[2018-02-13T00:27:39.456] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:27:39.534] [INFO] cheese - inserting 1000 documents. first: Category:Bad Taste Records albums and last: Aaron London +[2018-02-13T00:27:39.575] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:27:39.581] [INFO] cheese - inserting 1000 documents. first: Cuticle (hair) and last: Szwelice +[2018-02-13T00:27:39.583] [INFO] cheese - inserting 1000 documents. first: 1995 Peters International – Men's Singles and last: Yao Ziyi +[2018-02-13T00:27:39.600] [INFO] cheese - inserting 1000 documents. first: Iivari Kyykoski and last: List of Italian films of the 1950s +[2018-02-13T00:27:39.617] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:27:39.632] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:27:39.658] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:27:39.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2012 October 15 and last: Category:Lists of organisations based in Ethiopia +[2018-02-13T00:27:39.803] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:27:39.894] [INFO] cheese - inserting 1000 documents. first: God Loves, Man Kills and last: Breeks +[2018-02-13T00:27:39.941] [INFO] cheese - inserting 1000 documents. first: Nduduzo Makhathini and last: Template:Turkish general election, June 2015 +[2018-02-13T00:27:39.941] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:27:39.957] [INFO] cheese - inserting 1000 documents. first: Nelson Borges (footballer, born 1992) and last: Palincăria River +[2018-02-13T00:27:39.973] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:27:40.002] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:27:40.027] [INFO] cheese - inserting 1000 documents. first: Tłucznice and last: Marianowo, Gmina Szydłowo +[2018-02-13T00:27:40.062] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:27:40.078] [INFO] cheese - inserting 1000 documents. first: 1903 New York Highlanders season and last: Wikipedia:Requests for arbitration/Zeq-Zero0000/Workshop +[2018-02-13T00:27:40.117] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:27:40.119] [INFO] cheese - inserting 1000 documents. first: 1900 in literature and last: Welly Wanging +[2018-02-13T00:27:40.122] [INFO] cheese - inserting 1000 documents. first: Trochulus ataxiacus and last: Chemicals production +[2018-02-13T00:27:40.154] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:27:40.172] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T00:27:40.278] [INFO] cheese - inserting 1000 documents. first: Diplôme d'Études Supérieur Approfondies and last: Paulin Demski +[2018-02-13T00:27:40.305] [INFO] cheese - inserting 1000 documents. first: Gandey block and last: Category:Sport in Burkina Faso +[2018-02-13T00:27:40.311] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:27:40.321] [INFO] cheese - inserting 1000 documents. first: Zarnich and last: Wikipedia:Good article reassessment/Lynton K. Caldwell/1 +[2018-02-13T00:27:40.351] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:27:40.371] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:27:40.410] [INFO] cheese - inserting 1000 documents. first: Młodynin and last: Ruda, Ostrów Mazowiecka County +[2018-02-13T00:27:40.415] [INFO] cheese - inserting 1000 documents. first: Sorghum elegans and last: Hop C virus +[2018-02-13T00:27:40.436] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:27:40.442] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:27:40.537] [INFO] cheese - inserting 1000 documents. first: Wetwang railway station and last: Wikipedia:Articles for deletion/The Cosmic Circus +[2018-02-13T00:27:40.583] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:27:40.663] [INFO] cheese - inserting 1000 documents. first: Lottery(2009 film) and last: Draft:The Ballad of Yoel Moshe Salomon +[2018-02-13T00:27:40.680] [INFO] cheese - inserting 1000 documents. first: Jari kuosma and last: Teresa Calvesi +[2018-02-13T00:27:40.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/latraceclaraz.org and last: Template:EventsAt1960SummerParalympics +[2018-02-13T00:27:40.698] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:27:40.709] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:27:40.727] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:27:40.775] [INFO] cheese - inserting 1000 documents. first: Ian Melady and last: Senkele Wildlife Sanctuary +[2018-02-13T00:27:40.787] [INFO] cheese - inserting 1000 documents. first: 2003 Torneo Godó – Singles and last: Category:Lists of biota of South America +[2018-02-13T00:27:40.818] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:27:40.825] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:27:40.933] [INFO] cheese - inserting 1000 documents. first: List of Chitpavans and last: Cray X2 +[2018-02-13T00:27:40.978] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:27:41.065] [INFO] cheese - inserting 1000 documents. first: The Promised Land (2015 album) and last: Sergei Gladyshev +[2018-02-13T00:27:41.077] [INFO] cheese - inserting 1000 documents. first: Pack trip and last: Wikipedia:Suspected sock puppets/vyaghradhataki +[2018-02-13T00:27:41.096] [INFO] cheese - inserting 1000 documents. first: 2012 in South Africa and last: Wikipedia:Articles for deletion/LimeLife (2nd nomination) +[2018-02-13T00:27:41.099] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:27:41.112] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:27:41.138] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:27:41.148] [INFO] cheese - inserting 1000 documents. first: File:COLL-.JPG and last: Category:People of the Ottoman–Saudi War +[2018-02-13T00:27:41.155] [INFO] cheese - inserting 1000 documents. first: List of Portuguese and last: National Drug Code +[2018-02-13T00:27:41.206] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:27:41.254] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T00:27:41.334] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The man with the smallest penis in existence and the microscope technician who loved him and last: L.O.V.E +[2018-02-13T00:27:41.386] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:27:41.444] [INFO] cheese - inserting 1000 documents. first: File:Shchelkino power station.JPG and last: Snow Chicken +[2018-02-13T00:27:41.528] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:27:41.534] [INFO] cheese - inserting 1000 documents. first: Primus National Soccer League and last: Xerocrassa cretica +[2018-02-13T00:27:41.569] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:27:41.588] [INFO] cheese - inserting 1000 documents. first: Jadis et naguère and last: SR-823 +[2018-02-13T00:27:41.629] [INFO] cheese - inserting 1000 documents. first: Sergey Gladyshev and last: Jonathan Robinson (politician) +[2018-02-13T00:27:41.631] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:27:41.699] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:27:41.773] [INFO] cheese - inserting 1000 documents. first: Emanoil Porumbaru and last: New York State Route 971J +[2018-02-13T00:27:41.827] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:27:41.858] [INFO] cheese - inserting 1000 documents. first: MWSD and last: Wikipedia:Articles for deletion/World Without Zionism +[2018-02-13T00:27:41.901] [INFO] cheese - inserting 1000 documents. first: Indian-Britons and last: Music in Elizabethan Era +[2018-02-13T00:27:41.930] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:27:41.952] [INFO] cheese - inserting 1000 documents. first: Eby Shoe Corporation and last: Elena Bonfanti +[2018-02-13T00:27:41.959] [INFO] cheese - inserting 1000 documents. first: Tommy West (Singer/Producer) and last: Nyaa~nyaa +[2018-02-13T00:27:41.980] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:27:42.005] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:27:42.029] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:27:42.104] [INFO] cheese - inserting 1000 documents. first: Proto-Zhou and last: Template:S-line/MBTA right/Lexington +[2018-02-13T00:27:42.141] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:27:42.200] [INFO] cheese - inserting 1000 documents. first: God Willin' & the Creek Don't Rise and last: Wikipedia:Articles for deletion/Rob Hotchkiss +[2018-02-13T00:27:42.243] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:27:42.322] [INFO] cheese - inserting 1000 documents. first: Central Reservations and last: National Action Party (Turkey) +[2018-02-13T00:27:42.349] [INFO] cheese - inserting 1000 documents. first: Peritoneal fluid excess and last: La Mutualité +[2018-02-13T00:27:42.364] [INFO] cheese - inserting 1000 documents. first: Rostki (Ostrołęka County) and last: Anna van Rijn College +[2018-02-13T00:27:42.371] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:27:42.392] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:27:42.404] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:27:42.423] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2008 Summer Paralympics – Men's individual pursuit (LC 1) and last: Portal:Southern Levant +[2018-02-13T00:27:42.447] [INFO] cheese - inserting 1000 documents. first: Young Marble Giants and last: Notable Irish buildings +[2018-02-13T00:27:42.468] [INFO] cheese - inserting 1000 documents. first: 25–35 Power Street and last: African claw-toed frog +[2018-02-13T00:27:42.487] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:27:42.518] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:27:42.529] [INFO] cheese - batch complete in: 1.274 secs +[2018-02-13T00:27:42.624] [INFO] cheese - inserting 1000 documents. first: Over The Top and last: Category:Songs with lyrics by Roma Ryan +[2018-02-13T00:27:42.666] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:27:42.722] [INFO] cheese - inserting 1000 documents. first: Template:Volcano project and last: U.S. Air Force Surgeon General +[2018-02-13T00:27:42.746] [INFO] cheese - inserting 1000 documents. first: Cookie (singer) and last: Bisoro +[2018-02-13T00:27:42.760] [INFO] cheese - inserting 1000 documents. first: Fabian von Schlabrendorff and last: Revival (Gillian Welch album) +[2018-02-13T00:27:42.765] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:27:42.796] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:27:42.820] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:27:42.825] [INFO] cheese - inserting 1000 documents. first: Template:2015–16 in Dutch football and last: Eloquent ORM +[2018-02-13T00:27:42.894] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:27:43.039] [INFO] cheese - inserting 1000 documents. first: Maulvi Abdul Haleem and last: Illinois Gov. +[2018-02-13T00:27:43.094] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:27:43.202] [INFO] cheese - inserting 1000 documents. first: Death is Glory...Now and last: Suddenly Yours +[2018-02-13T00:27:43.249] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:27:43.307] [INFO] cheese - inserting 1000 documents. first: Category:1820s in the Portuguese Empire and last: Irene Tobar +[2018-02-13T00:27:43.309] [INFO] cheese - inserting 1000 documents. first: Christoph Dugarry and last: Hazard identification +[2018-02-13T00:27:43.330] [INFO] cheese - inserting 1000 documents. first: Tank Beat and last: Bethany Memorial Chapel +[2018-02-13T00:27:43.340] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:27:43.395] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:27:43.427] [INFO] cheese - inserting 1000 documents. first: Dagelma and last: Wikipedia:Articles for deletion/A&A Global Industries +[2018-02-13T00:27:43.429] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:27:43.489] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:27:43.570] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2012-10-28 and last: Physcomitrium patens +[2018-02-13T00:27:43.630] [INFO] cheese - inserting 1000 documents. first: National Chamber of Commerce and last: Faaa, French Polynesia +[2018-02-13T00:27:43.654] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:27:43.685] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:27:43.712] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 15th century in Portuguese India and last: Pursuit (1972 film) +[2018-02-13T00:27:43.719] [INFO] cheese - inserting 1000 documents. first: Lents, Oregon and last: List of Registered Historic Places in Gloucester County, New Jersey +[2018-02-13T00:27:43.752] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:27:43.760] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:27:43.819] [INFO] cheese - inserting 1000 documents. first: Category:1912 in chess and last: Nebo, Queensland +[2018-02-13T00:27:43.823] [INFO] cheese - inserting 1000 documents. first: Byelorussian Soviet Socialist Republic and last: Honor Lost: Love and Death in Modern-Day Jordan +[2018-02-13T00:27:43.858] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:27:43.892] [INFO] cheese - batch complete in: 1.362 secs +[2018-02-13T00:27:43.942] [INFO] cheese - inserting 1000 documents. first: Sam H. Lawson Middle School and last: Ilya Mashkov +[2018-02-13T00:27:44.000] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:27:44.001] [INFO] cheese - inserting 1000 documents. first: Genthia patens and last: Papuan rugby union team +[2018-02-13T00:27:44.055] [INFO] cheese - inserting 1000 documents. first: Ralph Kerr Maxwell and last: W38BQ +[2018-02-13T00:27:44.064] [INFO] cheese - inserting 1000 documents. first: Template:Mossad Directors and last: Field dressing deer +[2018-02-13T00:27:44.069] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:27:44.119] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:27:44.125] [INFO] cheese - inserting 1000 documents. first: Duder's Beach and last: Wikipedia:Articles for deletion/Blanche Devereaux +[2018-02-13T00:27:44.155] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:27:44.189] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:27:44.326] [INFO] cheese - inserting 1000 documents. first: 2008 in art and last: Decla-Bioscop +[2018-02-13T00:27:44.363] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:27:44.433] [INFO] cheese - inserting 1000 documents. first: Greenbank, West Virginia and last: Todd Greene +[2018-02-13T00:27:44.484] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:27:44.509] [INFO] cheese - inserting 1000 documents. first: File:Coroner - Grin.jpg and last: Osmar Donizete Cândido +[2018-02-13T00:27:44.521] [INFO] cheese - inserting 1000 documents. first: Papua New Guinean national rugby union team and last: Category:Commercial buildings completed in 1964 +[2018-02-13T00:27:44.525] [INFO] cheese - inserting 1000 documents. first: Teiya Ichiryūsai and last: Wikipedia:Featured article candidates/Murder of Dwayne Jones/archive2 +[2018-02-13T00:27:44.550] [INFO] cheese - inserting 1000 documents. first: Sawicki and last: Internetnews.com +[2018-02-13T00:27:44.556] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:27:44.562] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:27:44.625] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:27:44.685] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:27:44.833] [INFO] cheese - inserting 1000 documents. first: Jessica simpson (album) and last: Teague Middle School +[2018-02-13T00:27:44.870] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:27:44.886] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in Dutch Mauritius by decade and last: Category:1630 establishments by continent +[2018-02-13T00:27:44.912] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:27:44.970] [INFO] cheese - inserting 1000 documents. first: Rosvalla IP and last: Gnophria ceramensis +[2018-02-13T00:27:45.007] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:27:45.054] [INFO] cheese - inserting 1000 documents. first: Dome Creek, British Columbia and last: Chodkowo-Działki +[2018-02-13T00:27:45.084] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and manga/Anniversaries/June/June 25 and last: Hubert Poelz +[2018-02-13T00:27:45.090] [INFO] cheese - inserting 1000 documents. first: Pullquotes and last: ROSSEM +[2018-02-13T00:27:45.092] [INFO] cheese - inserting 1000 documents. first: List of tunnels in the Netherlands and last: Einstein shift +[2018-02-13T00:27:45.108] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:27:45.159] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:27:45.165] [INFO] cheese - inserting 1000 documents. first: Category:1630 by continent and last: Category:8th-century disestablishments in the Maya civilization +[2018-02-13T00:27:45.174] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:27:45.214] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:27:45.214] [INFO] cheese - batch complete in: 1.322 secs +[2018-02-13T00:27:45.363] [INFO] cheese - inserting 1000 documents. first: Ace (truck) and last: Matt Brandstein +[2018-02-13T00:27:45.446] [INFO] cheese - inserting 1000 documents. first: Lord Southwood and last: Category:FIU Panthers men's basketball seasons +[2018-02-13T00:27:45.459] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:27:45.540] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:27:45.564] [INFO] cheese - inserting 1000 documents. first: Cieśle, Gmina Bodzanów and last: Kuchary Żydowskie +[2018-02-13T00:27:45.599] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:27:45.704] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2015 June 12 and last: 渡部秀 +[2018-02-13T00:27:45.739] [INFO] cheese - inserting 1000 documents. first: Bradley greive and last: USCGC Yamacraw (WLB-333) +[2018-02-13T00:27:45.755] [INFO] cheese - inserting 1000 documents. first: Achimenes and last: Gamliel I +[2018-02-13T00:27:45.758] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:27:45.834] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:27:45.851] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:27:46.034] [INFO] cheese - inserting 1000 documents. first: Milewo, Płońsk County and last: Paul Warwick (rugby player) +[2018-02-13T00:27:46.060] [INFO] cheese - inserting 1000 documents. first: Musculus biceps brachii and last: Little Raven (Arapaho leader) +[2018-02-13T00:27:46.162] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:27:46.193] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:27:46.195] [INFO] cheese - inserting 1000 documents. first: Rick Down and last: Peter Lundin +[2018-02-13T00:27:46.255] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:27:46.265] [INFO] cheese - inserting 1000 documents. first: Pays basque français and last: Pakistanis in Sharjah +[2018-02-13T00:27:46.323] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:27:46.414] [INFO] cheese - inserting 1000 documents. first: Chile miners and last: Armée de Liberation de Zgharta +[2018-02-13T00:27:46.503] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:27:46.633] [INFO] cheese - inserting 1000 documents. first: Poniaty-Cibory and last: Crissey Field State Recreation Site +[2018-02-13T00:27:46.639] [INFO] cheese - inserting 1000 documents. first: Case shot and last: Category:Airports in Utah +[2018-02-13T00:27:46.680] [INFO] cheese - inserting 1000 documents. first: Abitar and last: 2005 Fed Cup Europe/Africa Zone Group II – Pool B +[2018-02-13T00:27:46.708] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T00:27:46.688] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:27:46.796] [INFO] cheese - inserting 1000 documents. first: Clyde Tolson and last: Neanderthals Bandits and Farmers +[2018-02-13T00:27:46.802] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:27:46.810] [INFO] cheese - inserting 1000 documents. first: Ilamai Oonjal Aadukirathu and last: Tarkan Mustafa +[2018-02-13T00:27:46.879] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:27:46.885] [INFO] cheese - inserting 1000 documents. first: 2025 Jaane Kya Hoga Aage and last: State House Historic District +[2018-02-13T00:27:46.965] [INFO] cheese - batch complete in: 1.751 secs +[2018-02-13T00:27:47.015] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:27:47.180] [INFO] cheese - inserting 1000 documents. first: Jungle Love (Steve Miller Band song) and last: Lenggong-Sauk Bypass +[2018-02-13T00:27:47.262] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:27:47.351] [INFO] cheese - inserting 1000 documents. first: Don't Rush (song) and last: 1972 Queen's Club Championships – Men's Singles +[2018-02-13T00:27:47.381] [INFO] cheese - inserting 1000 documents. first: 1543 in art and last: 2005 UK Championship (snooker) +[2018-02-13T00:27:47.389] [INFO] cheese - inserting 1000 documents. first: IT Baseline Protection Catalogs and last: Emil Rilke +[2018-02-13T00:27:47.422] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:27:47.429] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:27:47.460] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:27:47.485] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Nekima Levy-Pounds and last: Rosendahl-Holtwick station +[2018-02-13T00:27:47.526] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:27:47.549] [INFO] cheese - inserting 1000 documents. first: Orfeo ToolBox and last: Xīnjīapō Mínghángjú +[2018-02-13T00:27:47.586] [INFO] cheese - inserting 1000 documents. first: WWUS 104.1 and last: Meinhart de Schomberg, 3rd Duke of Schomberg +[2018-02-13T00:27:47.593] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:27:47.646] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T00:27:47.765] [INFO] cheese - inserting 1000 documents. first: Sheykh Saleh, Shush and last: Wikipedia:Sockpuppet investigations/BStudent0 +[2018-02-13T00:27:47.785] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (musicians) articles by quality/73 and last: Category:Slovenian musicians by genre +[2018-02-13T00:27:47.800] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:27:47.802] [INFO] cheese - inserting 1000 documents. first: Edith New and last: Crepidium glaucum +[2018-02-13T00:27:47.830] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:27:47.832] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:27:47.867] [INFO] cheese - inserting 1000 documents. first: Classic Period and last: Wilcox Central High School +[2018-02-13T00:27:47.908] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:27:47.944] [INFO] cheese - inserting 1000 documents. first: Archimede Morleo and last: Third Creek Presbyterian Church and Cemetery +[2018-02-13T00:27:47.944] [INFO] cheese - inserting 1000 documents. first: WBO and last: File:BostonBoston.jpg +[2018-02-13T00:27:47.988] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:27:47.996] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T00:27:48.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Capitalistroadster and last: Wikipedia:WPPun +[2018-02-13T00:27:48.146] [INFO] cheese - inserting 1000 documents. first: Percilla, Texas and last: Beef grade scale +[2018-02-13T00:27:48.151] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:27:48.207] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:27:48.219] [INFO] cheese - inserting 1000 documents. first: Crepis chamaephylla and last: 1993 Pacific-10 Conference football season +[2018-02-13T00:27:48.221] [INFO] cheese - inserting 1000 documents. first: Society of business practitioners and last: Country-club Republican +[2018-02-13T00:27:48.267] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:27:48.277] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:27:48.311] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2007 April 21 and last: Category:San Francisco Fog (MISL) players +[2018-02-13T00:27:48.359] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:27:48.387] [INFO] cheese - inserting 1000 documents. first: HomeAway and last: Agustín Fernández Muñoz, Duke of Riansares +[2018-02-13T00:27:48.433] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:27:48.513] [INFO] cheese - inserting 1000 documents. first: Beef grading and last: Middlemore Train Station +[2018-02-13T00:27:48.546] [INFO] cheese - inserting 1000 documents. first: Category:Components and last: Category:Amphitheaters +[2018-02-13T00:27:48.548] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:27:48.556] [INFO] cheese - inserting 1000 documents. first: Draft:After the Ball (film) and last: Bucknell Bison women's soccer +[2018-02-13T00:27:48.589] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:27:48.596] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:27:48.605] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Wiśniew and last: Autostrada A5 +[2018-02-13T00:27:48.661] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:27:48.804] [INFO] cheese - inserting 1000 documents. first: The Chauffeur Tells a Secret (Dynasty) and last: Two-Double-Seven +[2018-02-13T00:27:48.876] [INFO] cheese - inserting 1000 documents. first: Boston (album) and last: Celine Dion +[2018-02-13T00:27:48.875] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:27:48.887] [INFO] cheese - inserting 1000 documents. first: Break Your Back (Jay Sean song) and last: James Bogdani +[2018-02-13T00:27:48.900] [INFO] cheese - inserting 1000 documents. first: Morningside Train Station and last: NBC Daytona Beach +[2018-02-13T00:27:48.924] [INFO] cheese - inserting 1000 documents. first: Remiszew Duży and last: Marquis de Montcalme +[2018-02-13T00:27:48.940] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:27:48.943] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:27:48.948] [INFO] cheese - inserting 1000 documents. first: Norman Rule and last: Sovet Ekonomicheskoy Vzaimopomoshchi +[2018-02-13T00:27:48.960] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T00:27:48.982] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:27:49.032] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:27:49.071] [INFO] cheese - inserting 1000 documents. first: S.K. Wankhede and last: Petroleuse +[2018-02-13T00:27:49.162] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:27:49.236] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Qianxisaurus and last: 2006 Dutch National Track Championships – Women's points race +[2018-02-13T00:27:49.284] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:27:49.306] [INFO] cheese - inserting 1000 documents. first: Barkhausia triangularis and last: 磯村一路 +[2018-02-13T00:27:49.348] [INFO] cheese - inserting 1000 documents. first: Joaquín Calomarde and last: Fourth Rugby League World Cup +[2018-02-13T00:27:49.350] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:27:49.400] [INFO] cheese - inserting 1000 documents. first: Scoparia hawaiiensis and last: District of Columbia's congressional districts +[2018-02-13T00:27:49.416] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:27:49.454] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:27:49.466] [INFO] cheese - inserting 1000 documents. first: Stored Images and last: Sed card +[2018-02-13T00:27:49.545] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:27:49.661] [INFO] cheese - inserting 1000 documents. first: James Walker (Harvard) and last: Rogue Squadron II: Rogue Leader +[2018-02-13T00:27:49.687] [INFO] cheese - inserting 1000 documents. first: Category:1730s in Portuguese India and last: Category:1130 in the Holy Roman Empire +[2018-02-13T00:27:49.701] [INFO] cheese - inserting 1000 documents. first: ESO 540-030 and last: Yechidah +[2018-02-13T00:27:49.716] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:27:49.722] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:27:49.750] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:27:49.789] [INFO] cheese - inserting 1000 documents. first: Jake "The Snake" Plummer and last: Wikipedia:WikiProject Spam/LinkReports/cathrosoccerclinic.com +[2018-02-13T00:27:49.835] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:27:49.891] [INFO] cheese - inserting 1000 documents. first: Assemblage and last: Dutch Dwarf +[2018-02-13T00:27:49.938] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:27:49.939] [INFO] cheese - inserting 1000 documents. first: Puerto Rico's congressional districts and last: Nick Evans +[2018-02-13T00:27:49.978] [INFO] cheese - inserting 1000 documents. first: Liedewy Hawke and last: Category:3rd millennium BC in Africa +[2018-02-13T00:27:49.994] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:27:49.995] [INFO] cheese - inserting 1000 documents. first: Robert E. Connick and last: Emperor Akihito of Japan +[2018-02-13T00:27:50.009] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:27:50.070] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T00:27:50.071] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/log/November 2012 and last: Garab, Khuzestan +[2018-02-13T00:27:50.110] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:27:50.146] [INFO] cheese - inserting 1000 documents. first: Original (album) and last: 1989 Miami Dolphins season +[2018-02-13T00:27:50.183] [INFO] cheese - inserting 1000 documents. first: Horki and last: Category:Industrial Ethernet +[2018-02-13T00:27:50.185] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:27:50.286] [INFO] cheese - inserting 1000 documents. first: Amygdaloid nucleus and last: Ride of Steel (Darien Lake) +[2018-02-13T00:27:50.306] [INFO] cheese - inserting 1000 documents. first: Brachodes caradjae and last: George Seay +[2018-02-13T00:27:50.319] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:27:50.327] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:27:50.355] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:27:50.369] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Kuwait to the United States and last: Category:1945 establishments in Slovakia +[2018-02-13T00:27:50.445] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:27:50.488] [INFO] cheese - inserting 1000 documents. first: Category:8th-century Irish monarchs and last: Neoborolia nohirae +[2018-02-13T00:27:50.547] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:27:50.627] [INFO] cheese - inserting 1000 documents. first: Footsteps (album) and last: Fred Tauby +[2018-02-13T00:27:50.683] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:27:50.724] [INFO] cheese - inserting 1000 documents. first: Karate at the 2015 European Games – Men's kumite +84 kg and last: Reynaldo Miravalles +[2018-02-13T00:27:50.769] [INFO] cheese - inserting 1000 documents. first: Category:1945 in Slovakia and last: Les Sille +[2018-02-13T00:27:50.769] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:27:50.818] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:27:50.838] [INFO] cheese - inserting 1000 documents. first: Category:Performers of Christian music and last: Mayian +[2018-02-13T00:27:50.864] [INFO] cheese - inserting 1000 documents. first: Gurab Zarmakh and last: Template:SeattleMeetup +[2018-02-13T00:27:50.910] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:27:50.932] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:27:51.044] [INFO] cheese - inserting 1000 documents. first: 1979-1980 United States network television schedule (late night) and last: OLAF +[2018-02-13T00:27:51.087] [INFO] cheese - inserting 1000 documents. first: Leucania nohirae and last: Category:Commanders by Number of the Order of Isabella the Catholic +[2018-02-13T00:27:51.088] [INFO] cheese - inserting 1000 documents. first: Quanta Plus and last: Caricature +[2018-02-13T00:27:51.094] [INFO] cheese - inserting 1000 documents. first: Bearstack and last: Créole haïtien +[2018-02-13T00:27:51.101] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:27:51.140] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:27:51.156] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:27:51.177] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T00:27:51.293] [INFO] cheese - inserting 1000 documents. first: Sergey Makovetskiy and last: File:All Beauty Destroyed.jpg +[2018-02-13T00:27:51.302] [INFO] cheese - inserting 1000 documents. first: Shoot (film) and last: 趙承熙 +[2018-02-13T00:27:51.349] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:27:51.353] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:27:51.461] [INFO] cheese - inserting 1000 documents. first: Hermit of Tong and last: Handen på hjärtat +[2018-02-13T00:27:51.465] [INFO] cheese - inserting 1000 documents. first: File:Tornado warning.gif and last: Aether (disambiguation) +[2018-02-13T00:27:51.469] [INFO] cheese - inserting 1000 documents. first: Paulino Outdoor Oven and last: Lake District, Fribourg +[2018-02-13T00:27:51.556] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:27:51.580] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:27:51.631] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:27:51.678] [INFO] cheese - inserting 1000 documents. first: Jati Umra (Amritsar) and last: Wikipedia:WikiProject Spam/LinkReports/gyn-fansub.zxq.net +[2018-02-13T00:27:51.735] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:27:51.966] [INFO] cheese - inserting 1000 documents. first: I440bx and last: St. Oliver Plunkett GAA +[2018-02-13T00:27:51.992] [INFO] cheese - inserting 1000 documents. first: Body-caudal fin locomotion and last: Best of The Beatles +[2018-02-13T00:27:52.000] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:27:52.051] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:27:52.068] [INFO] cheese - inserting 1000 documents. first: Ricardo Espalter and last: Category:13th-century BC disestablishments +[2018-02-13T00:27:52.070] [INFO] cheese - inserting 1000 documents. first: Canadian Winter Sport Institute and last: Shannon River (Western Australia) +[2018-02-13T00:27:52.103] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:27:52.113] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:27:52.150] [INFO] cheese - inserting 1000 documents. first: Glossary of spirituality-related terms (A–C) and last: Researcher administered survey +[2018-02-13T00:27:52.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Imeprial Crown of Russia and last: DAP Helicopteros +[2018-02-13T00:27:52.215] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:27:52.244] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:27:52.317] [INFO] cheese - inserting 1000 documents. first: Tell Balgeary, Balgury is Dead and last: George N. Leighton +[2018-02-13T00:27:52.352] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:27:52.360] [INFO] cheese - inserting 1000 documents. first: Stephano and last: Zeppelin bend +[2018-02-13T00:27:52.392] [INFO] cheese - inserting 1000 documents. first: File:I the Mighty Satori Album Cover.jpg and last: Saúl Gutiérrez +[2018-02-13T00:27:52.434] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:27:52.434] [INFO] cheese - batch complete in: 1.257 secs +[2018-02-13T00:27:52.471] [INFO] cheese - inserting 1000 documents. first: Labitsky and last: Jose Ferrer (jockey) +[2018-02-13T00:27:52.504] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:27:52.519] [INFO] cheese - inserting 1000 documents. first: Burg Falkenstein (Niederfalkenstein) and last: Weird tales (disambiguation) +[2018-02-13T00:27:52.569] [INFO] cheese - inserting 1000 documents. first: Hungarian Village and last: File:UBX JP47 16.png +[2018-02-13T00:27:52.590] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:27:52.616] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:27:52.658] [INFO] cheese - inserting 1000 documents. first: Richard Friedman and last: Luis Márquez +[2018-02-13T00:27:52.714] [INFO] cheese - inserting 1000 documents. first: Template:Tercera Division Grupo 14 and last: Devra Davis +[2018-02-13T00:27:52.725] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:27:52.760] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:27:52.765] [INFO] cheese - inserting 1000 documents. first: Royal National Orthopaedic Hospital NHS Trust and last: Halbert Lynn White, Jr. +[2018-02-13T00:27:52.809] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:27:52.960] [INFO] cheese - inserting 1000 documents. first: File:UBX JP47 17.png and last: Laira TMD +[2018-02-13T00:27:52.961] [INFO] cheese - inserting 1000 documents. first: Libertarian movement and last: Mr. Hahn (turntablelist) +[2018-02-13T00:27:53.020] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:27:53.050] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:27:53.183] [INFO] cheese - inserting 1000 documents. first: Wells score (disambiguation) and last: Zogaj, Shkodër +[2018-02-13T00:27:53.231] [INFO] cheese - inserting 1000 documents. first: Nothing to Make a Fuss About and last: CSA Victoria Cahul +[2018-02-13T00:27:53.267] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:27:53.311] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:27:53.318] [INFO] cheese - inserting 1000 documents. first: SouthPark Mall and last: Mathrafal +[2018-02-13T00:27:53.328] [INFO] cheese - inserting 1000 documents. first: Trideps and last: Run Fat Boy Run +[2018-02-13T00:27:53.390] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:27:53.414] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:27:53.650] [INFO] cheese - inserting 1000 documents. first: Double bowline and last: Thoughtpolice +[2018-02-13T00:27:53.665] [INFO] cheese - inserting 1000 documents. first: Christgau (disambiguation) and last: Kamárai, Ahaía +[2018-02-13T00:27:53.718] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:27:53.762] [INFO] cheese - batch complete in: 1.328 secs +[2018-02-13T00:27:53.811] [INFO] cheese - inserting 1000 documents. first: Veselin Vlahović and last: Dwight Duffus +[2018-02-13T00:27:53.818] [INFO] cheese - inserting 1000 documents. first: Canalis semicircularis superior and last: Category:Compositions by Zygmunt Stojowski +[2018-02-13T00:27:53.898] [INFO] cheese - inserting 1000 documents. first: Raisin River (United States) and last: Atlantic Cape Community College +[2018-02-13T00:27:53.901] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:27:53.908] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:27:53.939] [INFO] cheese - inserting 1000 documents. first: Template:1970–71 ABA season by team and last: 2015 Charleston, South Carolina massacre +[2018-02-13T00:27:53.980] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:27:53.999] [INFO] cheese - inserting 1000 documents. first: Robert Curzon, 14th Baron Zouch and last: Cabo Espichel +[2018-02-13T00:27:53.997] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:27:54.078] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:27:54.268] [INFO] cheese - inserting 1000 documents. first: Janina Konarska and last: Janów, Warsaw West County +[2018-02-13T00:27:54.324] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:27:54.400] [INFO] cheese - inserting 1000 documents. first: Template:1931 NCAA Men's Basketball Consensus All-Americans and last: Cymbidium (disambiguation) +[2018-02-13T00:27:54.444] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:27:54.453] [INFO] cheese - inserting 1000 documents. first: Category:1573 establishments in Macau and last: Conus mindanus +[2018-02-13T00:27:54.460] [INFO] cheese - inserting 1000 documents. first: Category:Association football matches navigational boxes by teams:Brazil and last: Terry Cooke (footballer, born 1962) +[2018-02-13T00:27:54.514] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:27:54.542] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:27:54.546] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/PCA Masters XI v Nashua Titans 15 September 2005 and last: Alan Anderson (basketball) +[2018-02-13T00:27:54.602] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:27:54.630] [INFO] cheese - inserting 1000 documents. first: Absolute Power (series) and last: Pseudomonas facilis +[2018-02-13T00:27:54.700] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:27:54.755] [INFO] cheese - inserting 1000 documents. first: Klaudyn and last: MVM Group +[2018-02-13T00:27:54.798] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:27:54.851] [INFO] cheese - inserting 1000 documents. first: Jacobaea viscosa and last: Maryhull +[2018-02-13T00:27:54.858] [INFO] cheese - inserting 1000 documents. first: Vrooman Avenue School and last: National Register of Historic Places listings in Greenwich, Connecticut +[2018-02-13T00:27:54.895] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:27:54.905] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:27:54.931] [INFO] cheese - inserting 1000 documents. first: San Carlo de' Catinari and last: USS Yankee Hero +[2018-02-13T00:27:54.931] [INFO] cheese - inserting 1000 documents. first: Theocrastus Bombastus von Hohenheim and last: Colouring algorithm +[2018-02-13T00:27:54.971] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:27:55.013] [INFO] cheese - batch complete in: 1.251 secs +[2018-02-13T00:27:55.075] [INFO] cheese - inserting 1000 documents. first: Dryden Flight Research Facility and last: Wikipedia:Articles for deletion/Worcestershire v Essex 21-24 September 2005 +[2018-02-13T00:27:55.104] [INFO] cheese - inserting 1000 documents. first: File:Objects db1.png and last: Chesham Town F.C. +[2018-02-13T00:27:55.120] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:27:55.142] [INFO] cheese - inserting 1000 documents. first: Ławeczko Nowe and last: Duchy of Ingria +[2018-02-13T00:27:55.167] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:27:55.183] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:27:55.261] [INFO] cheese - inserting 1000 documents. first: Tomás Ó Mellaig and last: Me Gusta Todo de Ti (song) +[2018-02-13T00:27:55.293] [INFO] cheese - inserting 1000 documents. first: Alderville and last: Corentin Denolly +[2018-02-13T00:27:55.296] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:27:55.345] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:27:55.393] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Luxembourg to the Soviet Union and last: Category:1979 establishments in Slovenia +[2018-02-13T00:27:55.456] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:27:55.458] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Worcestershire v Glamorgan 17 July 2005 and last: Ravindra Jain +[2018-02-13T00:27:55.514] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:27:55.550] [INFO] cheese - inserting 1000 documents. first: Goose Eye Mountain and last: Jericoacoara beach +[2018-02-13T00:27:55.560] [INFO] cheese - inserting 1000 documents. first: Everybody Is Different and last: Microwaved (single) +[2018-02-13T00:27:55.602] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:27:55.606] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:27:55.704] [INFO] cheese - inserting 1000 documents. first: Hemetre and last: Wikipedia:WikiProject Dictionary of National Biography/Topical lists +[2018-02-13T00:27:55.751] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:27:55.767] [INFO] cheese - inserting 1000 documents. first: Bill Brown (English footballer) and last: Earlobe type +[2018-02-13T00:27:55.814] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:27:55.852] [INFO] cheese - inserting 1000 documents. first: Thecla guadala and last: File:Kiladi Kittu poster.jpg +[2018-02-13T00:27:55.907] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:27:55.939] [INFO] cheese - inserting 1000 documents. first: File:RTÉ The Panel Mug.jpg and last: Interference (Prison Break episode) +[2018-02-13T00:27:55.974] [INFO] cheese - inserting 1000 documents. first: Russell Senior and last: Template:NJ Legislative 07 +[2018-02-13T00:27:55.975] [INFO] cheese - batch complete in: 0.373 secs +t: List of diplomatic missions of Tonga and last: Yakovlev Yak-30 +[2018-02-13T00:27:56.029] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:27:56.040] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:27:56.051] [INFO] cheese - inserting 1000 documents. first: Wire-and-string puzzle and last: Plateau (disambiguation) +[2018-02-13T00:27:56.109] [INFO] cheese - inserting 1000 documents. first: Valmiki (1946 film) and last: FNRS 2 +[2018-02-13T00:27:56.114] [INFO] cheese - inserting 1000 documents. first: Cologne Diocesan Feud and last: Østerø +[2018-02-13T00:27:56.115] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T00:27:56.145] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:27:56.170] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:27:56.258] [INFO] cheese - inserting 1000 documents. first: John Doe (Prison Break episode) and last: Ring systems +[2018-02-13T00:27:56.295] [INFO] cheese - inserting 1000 documents. first: Timeline of Lille and last: Sarkorreh +[2018-02-13T00:27:56.301] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:27:56.343] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:27:56.380] [INFO] cheese - inserting 1000 documents. first: Prince's Trust Team and last: Wikipedia:Articles for deletion/Lists of country-related topics +[2018-02-13T00:27:56.428] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:27:56.515] [INFO] cheese - inserting 1000 documents. first: Walker Lambiotte and last: Trichotaphe cyclospila +[2018-02-13T00:27:56.521] [INFO] cheese - inserting 1000 documents. first: Category:Bathyscaphes and last: James D. Dole Homestead +[2018-02-13T00:27:56.523] [INFO] cheese - inserting 1000 documents. first: File:WPNW-Logo.jpg and last: Bonnethead +[2018-02-13T00:27:56.562] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:27:56.565] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:27:56.586] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:27:56.637] [INFO] cheese - inserting 1000 documents. first: Sar Kureh and last: FA Penang +[2018-02-13T00:27:56.649] [INFO] cheese - inserting 1000 documents. first: Marten Hoekstra and last: File:Couples.JPG +[2018-02-13T00:27:56.665] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:27:56.687] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:27:56.814] [INFO] cheese - inserting 1000 documents. first: Venchan Peak and last: 1938 Women's British Open Squash Championship +[2018-02-13T00:27:56.836] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:27:56.903] [INFO] cheese - inserting 1000 documents. first: Category:1980s disestablishments in Spain and last: Neklinovskaya +[2018-02-13T00:27:56.927] [INFO] cheese - inserting 1000 documents. first: Category:People from City of London and last: File:HarlanEstate.jpg +[2018-02-13T00:27:56.927] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:27:56.968] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:27:57.016] [INFO] cheese - inserting 1000 documents. first: Category:Railway companies disestablished in 1940 and last: Category:Italian contraltos +[2018-02-13T00:27:57.047] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:27:57.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Atomic Raygun Attack and last: James Fearnley +[2018-02-13T00:27:57.098] [INFO] cheese - inserting 1000 documents. first: Giants-Eagles rivalry and last: Bud Thackery +[2018-02-13T00:27:57.140] [INFO] cheese - inserting 1000 documents. first: John of Lancaster, 1st Duke of Bedford and last: Abducens nerve +[2018-02-13T00:27:57.198] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:27:57.203] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:27:57.252] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Elmore County, Alabama and last: Santa Ana Church (Manila) +[2018-02-13T00:27:57.260] [INFO] cheese - batch complete in: 1.145 secs +[2018-02-13T00:27:57.310] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:27:57.345] [INFO] cheese - inserting 1000 documents. first: Neklinovskoye and last: Symmetrocladia +[2018-02-13T00:27:57.405] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:27:57.432] [INFO] cheese - inserting 1000 documents. first: Exact rhyme and last: JoS Bank +[2018-02-13T00:27:57.488] [INFO] cheese - inserting 1000 documents. first: List of Recent Holarctic Bird Species and last: Sharif Murtaza +[2018-02-13T00:27:57.501] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:27:57.550] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:27:57.655] [INFO] cheese - inserting 1000 documents. first: 3-Hydroxyaspartic acid and last: Category:Historic districts in Sullivan County, New York +[2018-02-13T00:27:57.693] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:27:57.709] [INFO] cheese - inserting 1000 documents. first: Category:Standardbred racehorses and last: Campbell County High School shooting +[2018-02-13T00:27:57.736] [INFO] cheese - inserting 1000 documents. first: Liability and Student Records and last: Samuel McTier +[2018-02-13T00:27:57.769] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:27:57.774] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:27:57.776] [INFO] cheese - inserting 1000 documents. first: Seattle Union Record and last: UFC on Fox 6 +[2018-02-13T00:27:57.844] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:27:57.866] [INFO] cheese - inserting 1000 documents. first: Shutarou Mendou and last: Leo Tim Kwong +[2018-02-13T00:27:57.910] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:27:57.912] [INFO] cheese - inserting 1000 documents. first: Fenestela 68 Braşov and last: 1996 Qatar ExxonMobil Open – Singles +[2018-02-13T00:27:57.920] [INFO] cheese - inserting 1000 documents. first: Ring billed gull and last: Procure +[2018-02-13T00:27:57.950] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:27:57.979] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:27:58.118] [INFO] cheese - inserting 1000 documents. first: Goldenwave tickseed and last: Nicolaus Zwetnow +[2018-02-13T00:27:58.151] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:27:58.186] [INFO] cheese - inserting 1000 documents. first: UFC on Fox 6: Johnson vs. Dodson and last: Wikipedia:Articles for deletion/Prime Time League +[2018-02-13T00:27:58.214] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:27:58.226] [INFO] cheese - inserting 1000 documents. first: To be continued and last: Wikipedia:WikiProject Missing encyclopedic articles/Hotlist of Art & Architecture/Z +[2018-02-13T00:27:58.233] [INFO] cheese - inserting 1000 documents. first: Hung Qwan Chuen and last: Adamów +[2018-02-13T00:27:58.246] [INFO] cheese - inserting 1000 documents. first: Victory in Europe Day and last: The Institute of Technology at Linköping University +[2018-02-13T00:27:58.270] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:27:58.280] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:27:58.312] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T00:27:58.363] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Yale University and last: Heggere +[2018-02-13T00:27:58.371] [INFO] cheese - inserting 1000 documents. first: MOS:QUOTATION MARKS and last: Category:Suspected Wikipedia sockpuppets of Petermaxlawrence +[2018-02-13T00:27:58.393] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Personal attack intervention noticeboard and last: The Great Charter of the Liberties +[2018-02-13T00:27:58.400] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:27:58.413] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:27:58.446] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:27:58.527] [INFO] cheese - inserting 1000 documents. first: Category:I Am Kloot album covers and last: Oxidation ponds +[2018-02-13T00:27:58.562] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:27:58.580] [INFO] cheese - inserting 1000 documents. first: Midayikunnam and last: God of christianity +[2018-02-13T00:27:58.627] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:27:58.753] [INFO] cheese - inserting 1000 documents. first: Hemmadaga and last: AS DGSSIE +[2018-02-13T00:27:58.832] [INFO] cheese - inserting 1000 documents. first: Jan Brady and last: Ptolemy's Gate +[2018-02-13T00:27:58.840] [INFO] cheese - inserting 1000 documents. first: Category:1938 in American football and last: Wikipedia:Articles for deletion/Terry Duguid +[2018-02-13T00:27:58.848] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:27:58.909] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:27:58.964] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:27:59.197] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/List of doom metal bands and last: Category:Ellen Street, Fremantle +[2018-02-13T00:27:59.227] [INFO] cheese - inserting 1000 documents. first: Alex Scott (footballer) and last: Category:Chinese printers +[2018-02-13T00:27:59.234] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:27:59.253] [INFO] cheese - inserting 1000 documents. first: Safari apple and last: Category:Peruvian Nationalist Party politicians +[2018-02-13T00:27:59.282] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:27:59.285] [INFO] cheese - inserting 1000 documents. first: School of the Sextian and last: Category:People from Hundested +[2018-02-13T00:27:59.295] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:27:59.341] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T00:27:59.427] [INFO] cheese - inserting 1000 documents. first: Ralph Waldo Emerson Award and last: Apollinaris Patera +[2018-02-13T00:27:59.452] [INFO] cheese - inserting 1000 documents. first: Sogut and last: American Law Institute +[2018-02-13T00:27:59.480] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:27:59.529] [INFO] cheese - batch complete in: 1.217 secs +[2018-02-13T00:27:59.559] [INFO] cheese - inserting 1000 documents. first: Newlands Cricket Ground and last: Birdmen of Catrazza +[2018-02-13T00:27:59.612] [INFO] cheese - inserting 1000 documents. first: Native Development Kit and last: Acıpayam, Elâzığ +[2018-02-13T00:27:59.633] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:27:59.641] [INFO] cheese - inserting 1000 documents. first: Category:1615 in religion and last: Graham Mylne +[2018-02-13T00:27:59.660] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CONTENTDISPUTE and last: People's Republic of China–Ghana relations +[2018-02-13T00:27:59.680] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:27:59.728] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:27:59.739] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:27:59.812] [INFO] cheese - inserting 1000 documents. first: The prats and last: NL4 +[2018-02-13T00:27:59.858] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:27:59.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Google platform and last: The Aesthetic Dimension +[2018-02-13T00:27:59.935] [INFO] cheese - inserting 1000 documents. first: Jakobus ("James"), Count of Lichtenberg and last: La Lettre b +[2018-02-13T00:27:59.959] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T00:27:59.968] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:28:00.094] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eldebrock and last: Stubenberg family +[2018-02-13T00:28:00.096] [INFO] cheese - inserting 1000 documents. first: People's Republic of China–Guinea-Bissau relations and last: Template:Australia Squad 2000 Summer Olympics +[2018-02-13T00:28:00.120] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Back up jackson and last: Carolus Gustavus +[2018-02-13T00:28:00.131] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:28:00.140] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:28:00.162] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:28:00.210] [INFO] cheese - inserting 1000 documents. first: NL4 connector and last: Paikalangadi +[2018-02-13T00:28:00.300] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:28:00.337] [INFO] cheese - inserting 1000 documents. first: Lord Harrowby and last: The Honourable Arumugam Thondaman MP +[2018-02-13T00:28:00.377] [INFO] cheese - inserting 1000 documents. first: Christian Gottlieb Ferdinand von Hochstetter and last: TRC Lorraine 37 L +[2018-02-13T00:28:00.423] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:28:00.438] [INFO] cheese - inserting 1000 documents. first: Corpus Juris Secundum and last: Christopher North (composer) +[2018-02-13T00:28:00.446] [INFO] cheese - inserting 1000 documents. first: Category:Welsh pop music groups and last: Nanmen Subdistrict +[2018-02-13T00:28:00.450] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:28:00.497] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:28:00.556] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T00:28:00.695] [INFO] cheese - inserting 1000 documents. first: List of schools in Colombia and last: Wikipedia:Articles for deletion/Newsweek's List of the 1,000 Top U.S. Schools (2005) +[2018-02-13T00:28:00.725] [INFO] cheese - inserting 1000 documents. first: Murder Club of Brooklyn and last: Category:Education in Maine by county +[2018-02-13T00:28:00.803] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:28:00.808] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:28:00.819] [INFO] cheese - inserting 1000 documents. first: Federal Charter school program and last: File:Raineycawthon.jpg +[2018-02-13T00:28:00.897] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:28:00.953] [INFO] cheese - inserting 1000 documents. first: Wandy yazid and last: August 7, 4:15 +[2018-02-13T00:28:00.974] [INFO] cheese - inserting 1000 documents. first: Dominique de Caen and last: Template:Animation-studio-stub +[2018-02-13T00:28:01.059] [INFO] cheese - inserting 1000 documents. first: Glen Eden Lutheran Memorial Park and last: Athletics at the 2008 Summer Paralympics – Women's 400 metres T13 +[2018-02-13T00:28:01.059] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:28:01.061] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:28:01.144] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:28:01.321] [INFO] cheese - inserting 1000 documents. first: Jinja safari and last: South African Class 10E1, Series 1 +[2018-02-13T00:28:01.402] [INFO] cheese - inserting 1000 documents. first: Rubroboletus lupinus and last: Category:1580s establishments in the British Empire +[2018-02-13T00:28:01.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Newsweek’s List of Top High Schools (2003) and last: Jean Baptiste Baron de Cloots +[2018-02-13T00:28:01.437] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:28:01.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Berkeley/2011 and last: Template:Quebec provincial by-election, November 17, 1980/Electoral District/Brome-Missisquoi (provincial electoral district) +[2018-02-13T00:28:01.464] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:28:01.499] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:28:01.506] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:28:01.669] [INFO] cheese - inserting 1000 documents. first: Sadykierz (disambiguation) and last: Mitsubishi Fuso Aero Star Eco Hybrid +[2018-02-13T00:28:01.745] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:28:01.837] [INFO] cheese - inserting 1000 documents. first: Category:1600s establishments in the British Empire and last: Draft:Leptosynapta dolabrifera +[2018-02-13T00:28:01.886] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:28:01.894] [INFO] cheese - inserting 1000 documents. first: Economic Calculation Debate and last: Black Mask (radical group) +[2018-02-13T00:28:01.901] [INFO] cheese - inserting 1000 documents. first: Template:Quebec provincial by-election, November 17, 1980/Electoral District/Mégantic-Compton and last: Wikipedia:CATRED +[2018-02-13T00:28:01.912] [INFO] cheese - inserting 1000 documents. first: Shaari Tadin and last: Champion/St. Regis Dam +[2018-02-13T00:28:01.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/juicycouture-outlet.org and last: Charles Darlington +[2018-02-13T00:28:01.947] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:28:01.969] [INFO] cheese - batch complete in: 1.412 secs +[2018-02-13T00:28:01.975] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T00:28:01.969] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:28:02.004] [INFO] cheese - inserting 1000 documents. first: Tweeter And The Monkey Man and last: Herbert Wilfred Herridge +[2018-02-13T00:28:02.068] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:28:02.120] [INFO] cheese - inserting 1000 documents. first: Paxar and last: Wikipedia:WikiProject Spam/LinkReports/iso17799.co.uk +[2018-02-13T00:28:02.162] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:28:02.227] [INFO] cheese - inserting 1000 documents. first: Shooting at the 1968 Summer Olympics – 300 metre free rifle and last: Die Welt (Herzl) +[2018-02-13T00:28:02.271] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:28:02.333] [INFO] cheese - inserting 1000 documents. first: Bhaswar Chattopadhyay and last: 10 Haters +[2018-02-13T00:28:02.355] [INFO] cheese - inserting 1000 documents. first: Methylobacillus glycogenes and last: List of Beano comic strips +[2018-02-13T00:28:02.376] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:28:02.391] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:28:02.465] [INFO] cheese - inserting 1000 documents. first: RAF West Ruislip and last: Wikipedia:Files for deletion/2010 September 16 +[2018-02-13T00:28:02.520] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:28:02.530] [INFO] cheese - inserting 1000 documents. first: Rule of War and last: Orange Township, Ashland County, Ohio +[2018-02-13T00:28:02.599] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:28:02.628] [INFO] cheese - inserting 1000 documents. first: 1954–55 Toronto Maple Leafs season and last: The Capitol Years 65/77 +[2018-02-13T00:28:02.696] [INFO] cheese - inserting 1000 documents. first: Category:1104 establishments in Europe and last: Butte desertparsley +[2018-02-13T00:28:02.696] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:28:02.757] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:28:02.823] [INFO] cheese - inserting 1000 documents. first: Template:User in Georgia and last: Template:Taxonomy/Amphicyonidae +[2018-02-13T00:28:02.862] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:28:02.925] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2010 September 16 and last: ’u’ (opera) +[2018-02-13T00:28:02.971] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:28:03.039] [INFO] cheese - inserting 1000 documents. first: Western Digital and last: Absolute Humidity +[2018-02-13T00:28:03.083] [INFO] cheese - inserting 1000 documents. first: Yoshihiko Amino and last: Korean people in the United Arab Emirates +[2018-02-13T00:28:03.096] [INFO] cheese - batch complete in: 1.127 secs +[2018-02-13T00:28:03.100] [INFO] cheese - inserting 1000 documents. first: Category:1524 in South America and last: 180 Out +[2018-02-13T00:28:03.117] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Photography "Perfectly Exposed" exposure, f stops, shutter speed and depth of field and last: Ingrow +[2018-02-13T00:28:03.144] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:28:03.148] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:28:03.166] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:28:03.181] [INFO] cheese - inserting 1000 documents. first: Canadair DC-4M Argonaut and last: Teviot Falls +[2018-02-13T00:28:03.281] [INFO] cheese - inserting 1000 documents. first: Proprietors: Kammath & Kammath and last: Criminal business +[2018-02-13T00:28:03.312] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:28:03.325] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:28:03.358] [INFO] cheese - inserting 1000 documents. first: Hugh hardy and last: BS Moss' Broadway Theater +[2018-02-13T00:28:03.431] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:28:03.476] [INFO] cheese - inserting 1000 documents. first: The Singular Universe and the Reality of Time and last: Category:1380s establishments in Poland +[2018-02-13T00:28:03.509] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:28:03.539] [INFO] cheese - inserting 1000 documents. first: Heat (1987 movie) and last: Darky +[2018-02-13T00:28:03.590] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:28:03.614] [INFO] cheese - inserting 1000 documents. first: Korean people in Yemen and last: Capsazepine +[2018-02-13T00:28:03.631] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Carrom articles and last: Legacy of Ashes (album) +[2018-02-13T00:28:03.655] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:28:03.665] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:28:03.729] [INFO] cheese - inserting 1000 documents. first: Suruke and last: Max Rudolph +[2018-02-13T00:28:03.763] [INFO] cheese - inserting 1000 documents. first: Ilya Boldinskiy and last: Charlie Clark (English footballer) +[2018-02-13T00:28:03.768] [INFO] cheese - inserting 1000 documents. first: Electro-System and last: CRM Magazine +[2018-02-13T00:28:03.772] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:28:03.800] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:28:03.807] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:28:03.962] [INFO] cheese - inserting 1000 documents. first: Angry Video Game Nerd: The Movie and last: 1937 in the Mandatory Palestinian National Authority +[2018-02-13T00:28:03.992] [INFO] cheese - inserting 1000 documents. first: Brian Wenham and last: Maximilian Scheubner-Richter +[2018-02-13T00:28:03.992] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:28:04.046] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:28:04.104] [INFO] cheese - inserting 1000 documents. first: Hal Turpin and last: File:Flyingrhinojuniorhigh.jpg +[2018-02-13T00:28:04.125] [INFO] cheese - inserting 1000 documents. first: K-1 launch vehicle and last: The Payne Brothers +[2018-02-13T00:28:04.136] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:28:04.143] [INFO] cheese - inserting 1000 documents. first: Bayldonite and last: Pachylaelaps quadricombinatus +[2018-02-13T00:28:04.168] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:28:04.178] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:28:04.229] [INFO] cheese - inserting 1000 documents. first: London Metal Exchange and last: Mam'zelle Champagne +[2018-02-13T00:28:04.282] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Miroslav Holeňák and last: Gail Martin +[2018-02-13T00:28:04.323] [INFO] cheese - inserting 1000 documents. first: Yanaqucha (Cusco) and last: Corpus Christi – Kingsville CSA +[2018-02-13T00:28:04.321] [INFO] cheese - batch complete in: 1.224 secs +[2018-02-13T00:28:04.337] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:28:04.352] [INFO] cheese - inserting 1000 documents. first: 1937 of the Mandatory Palestinian National Authority and last: File:Bestbreeder from 1997 to 2000.jpg +[2018-02-13T00:28:04.360] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T00:28:04.401] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:28:04.438] [INFO] cheese - inserting 1000 documents. first: Trimmers and last: File:TheCopperBeech.jpg +[2018-02-13T00:28:04.471] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:28:04.502] [INFO] cheese - inserting 1000 documents. first: Pachylaelaps quadritus and last: Template:ChambersCountyTX-geo-stub +[2018-02-13T00:28:04.541] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:28:04.602] [INFO] cheese - inserting 1000 documents. first: General Electoral Union and last: Permeameter +[2018-02-13T00:28:04.656] [INFO] cheese - inserting 1000 documents. first: Dothan–Enterprise–Ozark CSA and last: Category:1844 disestablishments in Europe +[2018-02-13T00:28:04.667] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:28:04.701] [INFO] cheese - inserting 1000 documents. first: KUUT and last: File:ESPN Full Court logo.svg +[2018-02-13T00:28:04.710] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:28:04.786] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:28:04.865] [INFO] cheese - inserting 1000 documents. first: Laleli, Refahiye and last: Category:Plains of Taiwan +[2018-02-13T00:28:04.911] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:28:04.913] [INFO] cheese - inserting 1000 documents. first: Garnock Spout and last: Mallapur Kariyat Nesargi +[2018-02-13T00:28:04.993] [INFO] cheese - inserting 1000 documents. first: List of birds of Zimbabwe and last: File:Pyral-old-logo-1981.jpg +[2018-02-13T00:28:05.013] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:28:05.100] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:28:05.149] [INFO] cheese - inserting 1000 documents. first: Category:1845 disestablishments in Europe and last: Rathaspick +[2018-02-13T00:28:05.179] [INFO] cheese - inserting 1000 documents. first: Louis Burger and last: Griffonia Simplicifolia +[2018-02-13T00:28:05.188] [INFO] cheese - inserting 1000 documents. first: Sancta Maria and last: Template:Cabinet of Geir Hallgrímsson +[2018-02-13T00:28:05.193] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:28:05.241] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:28:05.250] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:28:05.321] [INFO] cheese - inserting 1000 documents. first: Signal to Noise (Rise Album) and last: Nichlas Torp +[2018-02-13T00:28:05.395] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:28:05.416] [INFO] cheese - inserting 1000 documents. first: Florodora and last: Col Needham +[2018-02-13T00:28:05.469] [INFO] cheese - inserting 1000 documents. first: Ruwer (municipality) and last: Wikipedia:Articles for deletion/Stream machine +[2018-02-13T00:28:05.527] [INFO] cheese - inserting 1000 documents. first: Mallapur S.A. and last: Sedlare +[2018-02-13T00:28:05.529] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:28:05.566] [INFO] cheese - batch complete in: 1.245 secs +[2018-02-13T00:28:05.603] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:28:05.614] [INFO] cheese - inserting 1000 documents. first: Sinyuan, Pingtung and last: 1992 World Junior Championships in Athletics – Women's discus throw +[2018-02-13T00:28:05.677] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:28:05.794] [INFO] cheese - inserting 1000 documents. first: Bass Sax and last: Template:Naomh Adhamhnáin C.L.G. squad +[2018-02-13T00:28:05.847] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:28:05.881] [INFO] cheese - inserting 1000 documents. first: File:ImmaterielZoneKlein.jpg and last: Template:States in the sphere of influence of Imperial Japan during World War 2 +[2018-02-13T00:28:05.917] [INFO] cheese - inserting 1000 documents. first: Deborah Mayfair and last: Wettonmill +[2018-02-13T00:28:05.921] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:28:05.992] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:28:06.014] [INFO] cheese - inserting 1000 documents. first: Addison Road Station and last: Buffalo Township (Union County, Pennsylvania) +[2018-02-13T00:28:06.025] [INFO] cheese - inserting 1000 documents. first: Laspeyresia splendana and last: Ansarullah (Ahmadiyya) +[2018-02-13T00:28:06.039] [INFO] cheese - inserting 1000 documents. first: Baltimore Orioles roster and last: Mazda SportsLook +[2018-02-13T00:28:06.049] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:28:06.085] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:28:06.128] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:28:06.312] [INFO] cheese - inserting 1000 documents. first: Naomh Mícheál C.L.G. and last: File:Mark Stewart - The Politics of Envy.jpg +[2018-02-13T00:28:06.349] [INFO] cheese - inserting 1000 documents. first: 39th Tactical Fighter Squadron and last: File:Bobbygonzo.jpg +[2018-02-13T00:28:06.378] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:28:06.437] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:28:06.482] [INFO] cheese - inserting 1000 documents. first: Category:League1 Ontario and last: Template:North Hollywood, California +[2018-02-13T00:28:06.525] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:28:06.576] [INFO] cheese - inserting 1000 documents. first: National Council for the Social Studies and last: Whitespot syndrome +[2018-02-13T00:28:06.586] [INFO] cheese - inserting 1000 documents. first: François Heywaert and last: Selenoyl fluoride +[2018-02-13T00:28:06.618] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:28:06.701] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:28:06.722] [INFO] cheese - inserting 1000 documents. first: Template:Gloucestershire-struct-stub and last: São Nicolau Crioulo language +[2018-02-13T00:28:06.789] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:28:06.870] [INFO] cheese - inserting 1000 documents. first: Golden West College and last: Enzkreis +[2018-02-13T00:28:06.910] [INFO] cheese - inserting 1000 documents. first: Dipropionylmorphine and last: K.A. Nowotny +[2018-02-13T00:28:06.910] [INFO] cheese - inserting 1000 documents. first: Category:People's Republic of China politicians from Hainan and last: Navy Type 96 Carrier Bomber +[2018-02-13T00:28:06.956] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:28:07.022] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:28:07.019] [INFO] cheese - batch complete in: 1.452 secs +[2018-02-13T00:28:07.095] [INFO] cheese - inserting 1000 documents. first: CAT:FA and last: Ciscarpathia +[2018-02-13T00:28:07.163] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:28:07.215] [INFO] cheese - inserting 1000 documents. first: Saint-Herblain and last: Mount Alvernia Hospital +[2018-02-13T00:28:07.285] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:28:07.291] [INFO] cheese - inserting 1000 documents. first: Category:Vines and last: Marcos Highway +[2018-02-13T00:28:07.355] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:28:07.368] [INFO] cheese - inserting 1000 documents. first: Kagoshima main line and last: Wikipedia:Articles for deletion/Hywel Gwynfryn +[2018-02-13T00:28:07.421] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Metropolitan area of Barranquilla and last: Ishimaru +[2018-02-13T00:28:07.441] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:28:07.493] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:28:07.549] [INFO] cheese - inserting 1000 documents. first: Xeo-Genetic and last: List of steam festivals +[2018-02-13T00:28:07.588] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:28:07.664] [INFO] cheese - inserting 1000 documents. first: Carenum brevicolle and last: Gateshead West by-election (1955) +[2018-02-13T00:28:07.695] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:28:07.736] [INFO] cheese - inserting 1000 documents. first: Category:History of the Marlborough Region and last: Miss Goat +[2018-02-13T00:28:07.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of songs published as live versions and last: Shaun Scott (actor) +[2018-02-13T00:28:07.766] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:28:07.818] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:28:07.834] [INFO] cheese - inserting 1000 documents. first: Trudy Walhof-Groenman and last: Wikipedia:Peer review/Don't Bite the Sun/archive1 +[2018-02-13T00:28:07.876] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:28:07.893] [INFO] cheese - inserting 1000 documents. first: Worms: The Director's Cut and last: Lisa Evers +[2018-02-13T00:28:07.919] [INFO] cheese - inserting 1000 documents. first: 2008-09 LA Lakers season and last: Prevention of Corruption Act, 1988 +[2018-02-13T00:28:07.962] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:28:07.974] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:28:08.082] [INFO] cheese - inserting 1000 documents. first: Alexander Mackenzie (explorer) and last: First trimester +[2018-02-13T00:28:08.136] [INFO] cheese - batch complete in: 1.117 secs +[2018-02-13T00:28:08.155] [INFO] cheese - inserting 1000 documents. first: Wu Jingbiao and last: Asca aphidioides +[2018-02-13T00:28:08.214] [INFO] cheese - inserting 1000 documents. first: File:StockbridgeMA-seal.png and last: Southport, United States +[2018-02-13T00:28:08.213] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:28:08.258] [INFO] cheese - inserting 1000 documents. first: SNOMED Clinical Terms and last: Category:Bridges in Mexico +[2018-02-13T00:28:08.261] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:28:08.276] [INFO] cheese - inserting 1000 documents. first: Heman (Bible) and last: Isthmus of Fallopian tube +[2018-02-13T00:28:08.314] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:28:08.317] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:28:08.394] [INFO] cheese - inserting 1000 documents. first: McCain Democrat and last: Noble Square, Chicago +[2018-02-13T00:28:08.431] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:28:08.518] [INFO] cheese - inserting 1000 documents. first: Asca arboriensis and last: 1991 Maryland Terrapins football team +[2018-02-13T00:28:08.559] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:28:08.582] [INFO] cheese - inserting 1000 documents. first: Stratham new hampshire and last: Category:Template-Class Economics articles +[2018-02-13T00:28:08.622] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:28:08.706] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Brooklyn and last: Negative binomial +[2018-02-13T00:28:08.758] [INFO] cheese - inserting 1000 documents. first: Rem Urasin and last: KSYR +[2018-02-13T00:28:08.759] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:28:08.763] [INFO] cheese - inserting 1000 documents. first: Fimbriae of Fallopian tube and last: Rhodri Williams (rugby player) +[2018-02-13T00:28:08.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/therealblakeman/Archive and last: Anna of Masovia (b.1270) +[2018-02-13T00:28:08.825] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:28:08.833] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:28:08.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Requests for comment/User names (2nd nomination) and last: Kozí příběh- pověsti staré Prahy +[2018-02-13T00:28:08.866] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:28:08.907] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T00:28:08.923] [INFO] cheese - inserting 1000 documents. first: Third trimester and last: Joseph Autran +[2018-02-13T00:28:08.934] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Economics articles and last: Kendra Harrison +[2018-02-13T00:28:08.967] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:28:09.004] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:28:09.165] [INFO] cheese - inserting 1000 documents. first: Martijn Meerdink and last: Tug Daniels +[2018-02-13T00:28:09.190] [INFO] cheese - inserting 1000 documents. first: New Haven, Ohio and last: Portal:2010s/Selected article/3 +[2018-02-13T00:28:09.211] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:28:09.232] [INFO] cheese - inserting 1000 documents. first: Paracuellos (disambiguation) and last: 532d Bombardment Squadron +[2018-02-13T00:28:09.234] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:28:09.247] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2008 October 31 and last: Fukuoka Subway 2000 series +[2018-02-13T00:28:09.280] [INFO] cheese - inserting 1000 documents. first: Duke of Rohan and last: Alfredo Bojalil Gil +[2018-02-13T00:28:09.286] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:28:09.318] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:28:09.332] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:28:09.408] [INFO] cheese - inserting 1000 documents. first: File:Jeanne-Hatto-Walkure-1906.jpg and last: Kathryn Scola +[2018-02-13T00:28:09.470] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:28:09.564] [INFO] cheese - inserting 1000 documents. first: Category:Combined heat and power plants by country and last: Congratulatory first +[2018-02-13T00:28:09.611] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:28:09.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/TAJJ Championship Wrestling and last: Rome Middle School +[2018-02-13T00:28:09.694] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:28:09.713] [INFO] cheese - inserting 1000 documents. first: Alternet.com and last: Araya Peninsula +[2018-02-13T00:28:09.722] [INFO] cheese - inserting 1000 documents. first: Prayer for Peace (Hazrat Inayat Khan) and last: Wikipedia:Articles for deletion/Perfect rhyme +[2018-02-13T00:28:09.767] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:28:09.780] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:28:09.875] [INFO] cheese - inserting 1000 documents. first: William Henry Allchin and last: Wars involving Britain +[2018-02-13T00:28:09.921] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:28:09.954] [INFO] cheese - inserting 1000 documents. first: Solo (2006 film) and last: List of First Ladies of Puerto Rico +[2018-02-13T00:28:09.997] [INFO] cheese - inserting 1000 documents. first: Funk & Wagnalls and last: Tree warbler +[2018-02-13T00:28:10.000] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:28:10.065] [INFO] cheese - inserting 1000 documents. first: Dog spike and last: King's Norton RD +[2018-02-13T00:28:10.071] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T00:28:10.123] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:28:10.156] [INFO] cheese - inserting 1000 documents. first: Anguilla National cricket Team and last: Lassens Natural Food & Vitamins +[2018-02-13T00:28:10.255] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:28:10.311] [INFO] cheese - inserting 1000 documents. first: Category:Japanese mountain climbers and last: Bombay blood +[2018-02-13T00:28:10.354] [INFO] cheese - inserting 1000 documents. first: Wars involving Great Britain and last: L'Echappée Belle +[2018-02-13T00:28:10.374] [INFO] cheese - inserting 1000 documents. first: Granitsa, Evrytania and last: Vudu box +[2018-02-13T00:28:10.377] [INFO] cheese - inserting 1000 documents. first: Melton Halt railway station and last: File:Mark Lenzi.jpeg +[2018-02-13T00:28:10.438] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:28:10.470] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:28:10.518] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:28:10.566] [INFO] cheese - batch complete in: 1.234 secs +[2018-02-13T00:28:10.778] [INFO] cheese - inserting 1000 documents. first: Running Badge and last: Mõisaküla, Torgu Parish +[2018-02-13T00:28:10.790] [INFO] cheese - inserting 1000 documents. first: Bob Smith (right-handed pitcher born 1931) and last: Lewis Carl Davidson Hamilton +[2018-02-13T00:28:10.827] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:28:10.831] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:28:10.884] [INFO] cheese - inserting 1000 documents. first: File:Jag Panzer - Ample Destruction - 04 - Harder than Steel (sample).ogg and last: Kosuke +[2018-02-13T00:28:10.930] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:28:10.935] [INFO] cheese - inserting 1000 documents. first: Karl II. Franz von Innerösterreich and last: A Summer to Remember +[2018-02-13T00:28:10.974] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:28:10.997] [INFO] cheese - inserting 1000 documents. first: Pizzoletta and last: Lužice +[2018-02-13T00:28:11.083] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:28:11.298] [INFO] cheese - inserting 1000 documents. first: Foreign Languages Specializing School and last: ICC ODI Team of the Year +[2018-02-13T00:28:11.311] [INFO] cheese - inserting 1000 documents. first: Stellar association and last: Hessians +[2018-02-13T00:28:11.313] [INFO] cheese - inserting 1000 documents. first: Kousuke and last: Wikipedia:Training/For Ambassadors/My watchlist 1 +[2018-02-13T00:28:11.314] [INFO] cheese - inserting 1000 documents. first: Category:World War II cemeteries in Germany and last: Andrey Dostoyevsky +[2018-02-13T00:28:11.357] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:28:11.361] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:28:11.357] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:28:11.397] [INFO] cheese - inserting 1000 documents. first: Renewable energy in Indonesia and last: Fati Jamali +[2018-02-13T00:28:11.402] [INFO] cheese - batch complete in: 1.331 secs +[2018-02-13T00:28:11.438] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:28:11.467] [INFO] cheese - inserting 1000 documents. first: LOW LINE and last: Theming +[2018-02-13T00:28:11.542] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:28:11.645] [INFO] cheese - inserting 1000 documents. first: 1992 NBA Finals and last: Upsilon Bootis +[2018-02-13T00:28:11.735] [INFO] cheese - inserting 1000 documents. first: Gravity (Jamie Woon song) and last: Ligamentum talocalcaneum anterius +[2018-02-13T00:28:11.741] [INFO] cheese - inserting 1000 documents. first: Matti Harju and last: Cinzia de Ponti +[2018-02-13T00:28:11.741] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:28:11.779] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:28:11.788] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:28:11.894] [INFO] cheese - inserting 1000 documents. first: Evangelical School of Smyrna and last: Bring It On (Kaci Battaglia album) +[2018-02-13T00:28:11.916] [INFO] cheese - inserting 1000 documents. first: Qaraqurtlu and last: Short Fat Fannie +[2018-02-13T00:28:11.950] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:28:11.978] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:28:12.112] [INFO] cheese - inserting 1000 documents. first: Arvis Vilkaste and last: HU-16B Albatross +[2018-02-13T00:28:12.168] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:28:12.197] [INFO] cheese - inserting 1000 documents. first: Bonjour strad and last: Budhanilkantha +[2018-02-13T00:28:12.197] [INFO] cheese - inserting 1000 documents. first: Cinzia Fiordeponti and last: Todor Kozlovski +[2018-02-13T00:28:12.235] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:28:12.243] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:28:12.320] [INFO] cheese - inserting 1000 documents. first: Democracy: An American Novel and last: FBI Ten Most Wanted Fugitives +[2018-02-13T00:28:12.368] [INFO] cheese - inserting 1000 documents. first: USS Bowfin (AGSS-287) and last: Thampi Kannanthanam +[2018-02-13T00:28:12.374] [INFO] cheese - inserting 1000 documents. first: Template:Boy and last: Iveco EuroPolis +[2018-02-13T00:28:12.391] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T00:28:12.418] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:28:12.484] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:28:12.503] [INFO] cheese - inserting 1000 documents. first: Chatsworth Metro Orange Line (Metrolink & Amtrak station) and last: Imogen Miller +[2018-02-13T00:28:12.555] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:28:12.587] [INFO] cheese - inserting 1000 documents. first: Dan-Foam and last: Nepeta (disambiguation) +[2018-02-13T00:28:12.620] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:28:12.703] [INFO] cheese - inserting 1000 documents. first: Percent for Art and last: Porcupine rim trail +[2018-02-13T00:28:12.765] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T00:28:12.799] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Politics1.com (2nd nomination) and last: Alltagsgeschichte +[2018-02-13T00:28:12.847] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:28:12.920] [INFO] cheese - inserting 1000 documents. first: Serafin Enoss Bertaso Airport and last: Centralnyi +[2018-02-13T00:28:12.939] [INFO] cheese - inserting 1000 documents. first: Heathrow Terminal 4 and last: Egypt II: The Heliopolis Prophecy +[2018-02-13T00:28:12.943] [INFO] cheese - inserting 1000 documents. first: Category:People from Chamdo and last: Category:Wikipedia sockpuppets of MatthewCenance +[2018-02-13T00:28:12.970] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:28:12.978] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:28:12.985] [INFO] cheese - inserting 1000 documents. first: 1922 Boston College Eagles football team and last: Cazal Eyewear +[2018-02-13T00:28:13.011] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:28:13.044] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:28:13.313] [INFO] cheese - inserting 1000 documents. first: Quasi-conformal mapping and last: Wikipedia:Articles for deletion/List of Norwegian-Americans +[2018-02-13T00:28:13.323] [INFO] cheese - inserting 1000 documents. first: Deformable bodies and last: Pandava +[2018-02-13T00:28:13.335] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/multicore.ning.com and last: 1895 Ottawa Hockey Club season +[2018-02-13T00:28:13.345] [INFO] cheese - inserting 1000 documents. first: Maxime Arseneau and last: Tracheal tug sign +[2018-02-13T00:28:13.349] [INFO] cheese - inserting 1000 documents. first: Banovci (Bebrina) and last: Plélan +[2018-02-13T00:28:13.366] [INFO] cheese - inserting 1000 documents. first: George Shelly and last: Category:Morocco–Tunisia relations +[2018-02-13T00:28:13.389] [INFO] cheese - inserting 1000 documents. first: Template:Wikiproject banner shell and last: Lee Craig +[2018-02-13T00:28:13.388] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:28:13.392] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:28:13.399] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:28:13.431] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:28:13.443] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:28:13.526] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:28:13.554] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T00:28:13.869] [INFO] cheese - inserting 1000 documents. first: Governor of Bilecik and last: Feeling Yes, Feeling No +[2018-02-13T00:28:13.894] [INFO] cheese - inserting 1000 documents. first: Good Friday Prayer for the Jews and last: Bars and stars +[2018-02-13T00:28:13.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User talk:203.171.195.165 and last: Dołęga (disambiguation) +[2018-02-13T00:28:13.930] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:28:13.938] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:28:13.954] [INFO] cheese - inserting 1000 documents. first: Shades of the Swarm and last: Now: The Hits of Summer 2009 +[2018-02-13T00:28:13.976] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:28:14.080] [INFO] cheese - inserting 1000 documents. first: File:Rodovia-fernao-dias-2.jpg and last: Landing fee +[2018-02-13T00:28:14.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeroen bours and last: Managua International Airport +[2018-02-13T00:28:14.092] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:28:14.218] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:28:14.225] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:28:14.384] [INFO] cheese - inserting 1000 documents. first: Sir John Robison and last: Bandy Island +[2018-02-13T00:28:14.420] [INFO] cheese - inserting 1000 documents. first: File:Polenabzeichen.jpg and last: Category:Princes of Zvenyhorod +[2018-02-13T00:28:14.428] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:28:14.480] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:28:14.513] [INFO] cheese - inserting 1000 documents. first: Black Coffee (2005 film) and last: File:Billboard Top Hits 1986.jpg +[2018-02-13T00:28:14.565] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:28:14.614] [INFO] cheese - inserting 1000 documents. first: Category:Ontario, Oregon and last: Bowling at the 2007 Asian Indoor Games +[2018-02-13T00:28:14.617] [INFO] cheese - inserting 1000 documents. first: Henry Heth (Colonel) and last: The Good Shepherd (Christ) +[2018-02-13T00:28:14.659] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:28:14.677] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:28:14.739] [INFO] cheese - inserting 1000 documents. first: Castle View School and last: Natalya Antyukh +[2018-02-13T00:28:14.756] [INFO] cheese - inserting 1000 documents. first: Banna Peak and last: Template:Editnotices/Page/Talk:Association football +[2018-02-13T00:28:14.790] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:28:14.797] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:28:14.928] [INFO] cheese - inserting 1000 documents. first: The Girl Was Young and last: Avie Tevanian +[2018-02-13T00:28:14.968] [INFO] cheese - inserting 1000 documents. first: Category:French hoteliers and last: File:SaganWalk.4.5.AsteroidBelt.jpg +[2018-02-13T00:28:15.015] [INFO] cheese - batch complete in: 1.46 secs +[2018-02-13T00:28:15.031] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:28:15.074] [INFO] cheese - inserting 1000 documents. first: Norway House, Canada and last: Eslamabad (Dashti) +[2018-02-13T00:28:15.127] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:28:15.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/EQMS::LIMS and last: Category:Rugby clubs established in 1910 +[2018-02-13T00:28:15.157] [INFO] cheese - inserting 1000 documents. first: Bonsai cultivation and care and last: Neoparaphytoseius sooretamus +[2018-02-13T00:28:15.165] [INFO] cheese - inserting 1000 documents. first: Rhiana Griffith and last: Alexander Gordon +[2018-02-13T00:28:15.179] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:28:15.191] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:28:15.199] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:28:15.335] [INFO] cheese - inserting 1000 documents. first: Alma heights and last: Wikipedia:Requests for adminship/Sean Black +[2018-02-13T00:28:15.371] [INFO] cheese - inserting 1000 documents. first: Elephas namadicus and last: Andrew J. Levander +[2018-02-13T00:28:15.490] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:28:15.497] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:28:15.701] [INFO] cheese - inserting 1000 documents. first: Ballyboy (barony) and last: File:Governor of Malatya.png +[2018-02-13T00:28:15.714] [INFO] cheese - inserting 1000 documents. first: David Pierre and last: Wikipedia:WikiProject Spam/LinkReports/adlusa.org +[2018-02-13T00:28:15.720] [INFO] cheese - inserting 1000 documents. first: Big Bang Burger Bar, The and last: Category:1985 elections in Canada +[2018-02-13T00:28:15.744] [INFO] cheese - inserting 1000 documents. first: Category:Conflicts in 1217 and last: Template:Independent Radical Party/meta/color +[2018-02-13T00:28:15.758] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:28:15.776] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:28:15.821] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:28:15.838] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:28:16.049] [INFO] cheese - inserting 1000 documents. first: Alberto Thieroldt and last: Category:Saint Vincent and the Grenadines sprinters +[2018-02-13T00:28:16.058] [INFO] cheese - inserting 1000 documents. first: Fifth millennium and last: Oswald Hanfling +[2018-02-13T00:28:16.101] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:28:16.106] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:28:16.197] [INFO] cheese - inserting 1000 documents. first: Guiana Industrial Workers Union and last: Hypatima haligramma +[2018-02-13T00:28:16.243] [INFO] cheese - inserting 1000 documents. first: Shravakayana and last: Jean-Francois Bachelot +[2018-02-13T00:28:16.279] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:28:16.321] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:28:16.323] [INFO] cheese - inserting 1000 documents. first: BUI (disambiguation) and last: Category:1925 in fiction +[2018-02-13T00:28:16.386] [INFO] cheese - inserting 1000 documents. first: National Anthem of the Republic of China and last: Li Tieh Kuai +[2018-02-13T00:28:16.394] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:28:16.415] [INFO] cheese - inserting 1000 documents. first: Life and Death (Dynasty) and last: 15th Hong Kong Film Awards +[2018-02-13T00:28:16.483] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:28:16.515] [INFO] cheese - batch complete in: 1.5 secs +[2018-02-13T00:28:16.650] [INFO] cheese - inserting 1000 documents. first: Category:Maltese sprinters and last: Gładyszów +[2018-02-13T00:28:16.651] [INFO] cheese - inserting 1000 documents. first: Żabinka and last: Peter Bazalgette +[2018-02-13T00:28:16.712] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:28:16.727] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:28:16.750] [INFO] cheese - inserting 1000 documents. first: SM U VI (Austria-Hungary) and last: Ida Crowe Pollock +[2018-02-13T00:28:16.831] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:28:16.869] [INFO] cheese - inserting 1000 documents. first: Category:1873 establishments in Norway and last: Tony Dortie +[2018-02-13T00:28:16.977] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:28:17.082] [INFO] cheese - inserting 1000 documents. first: Category:Macquarie University and last: Pierce the Veil +[2018-02-13T00:28:17.138] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:28:17.175] [INFO] cheese - inserting 1000 documents. first: Category:21st-century disestablishments in Trinidad and Tobago and last: Avia 137AZ +[2018-02-13T00:28:17.208] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:28:17.282] [INFO] cheese - inserting 1000 documents. first: Le Rhone and last: Live @ Warp10 +[2018-02-13T00:28:17.321] [INFO] cheese - inserting 1000 documents. first: Awre for Blakeney railway station and last: Category:Buckethead task force articles +[2018-02-13T00:28:17.342] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:28:17.364] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:28:17.451] [INFO] cheese - inserting 1000 documents. first: Babalu Sobral and last: Robert Mohr +[2018-02-13T00:28:17.502] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:28:17.531] [INFO] cheese - inserting 1000 documents. first: Papillon-Lefevre disease and last: Traver Rains +[2018-02-13T00:28:17.568] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:28:17.576] [INFO] cheese - inserting 1000 documents. first: Category:Classical music in China and last: Tachina barbata +[2018-02-13T00:28:17.620] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:28:17.679] [INFO] cheese - inserting 1000 documents. first: Slovenian music and last: Chicago Sun-Times +[2018-02-13T00:28:17.695] [INFO] cheese - inserting 1000 documents. first: Piece of My Heart (Tara Kemp song) and last: Ignazia Verzeri +[2018-02-13T00:28:17.708] [INFO] cheese - inserting 1000 documents. first: Tabimorelin and last: Raymond Henry Sherry +[2018-02-13T00:28:17.812] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T00:28:17.818] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:28:17.871] [INFO] cheese - batch complete in: 1.592 secs +[2018-02-13T00:28:17.917] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2010 September 21 and last: Wikipedia:Articles for deletion/Billy E. Vaughn +[2018-02-13T00:28:17.944] [INFO] cheese - inserting 1000 documents. first: File:Wir sind Helden Die Reklamation.jpg and last: Pamela Goldsmith-Jones +[2018-02-13T00:28:17.962] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:28:18.006] [INFO] cheese - inserting 1000 documents. first: Tredegar Park, Newport and last: Category:Trails +[2018-02-13T00:28:18.035] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:28:18.086] [INFO] cheese - inserting 1000 documents. first: Paramonacanthus and last: Gishi (disambiguation) +[2018-02-13T00:28:18.086] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:28:18.154] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:28:18.253] [INFO] cheese - inserting 1000 documents. first: Raymond Sherry and last: Lisie heart institute +[2018-02-13T00:28:18.256] [INFO] cheese - inserting 1000 documents. first: Category:Directors General of the Nigerian State Security Service and last: Category:Transport infrastructure completed in the 12th century +[2018-02-13T00:28:18.297] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:28:18.307] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:28:18.446] [INFO] cheese - inserting 1000 documents. first: File:Baci ceremony.jpg and last: Jeleznodorozhnyy Okrug +[2018-02-13T00:28:18.487] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:28:18.493] [INFO] cheese - inserting 1000 documents. first: Green Bay, Virginia (disambiguation) and last: British Columbia Premier League +[2018-02-13T00:28:18.559] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:28:18.610] [INFO] cheese - inserting 1000 documents. first: Aggressive NK cell leukemia and last: Jed Z. Buchwald +[2018-02-13T00:28:18.640] [INFO] cheese - inserting 1000 documents. first: File:Soldier River.jpg and last: Fear of Fours +[2018-02-13T00:28:18.695] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:28:18.705] [INFO] cheese - inserting 1000 documents. first: Category:Infrastructure completed in 1127 and last: XELE-AM +[2018-02-13T00:28:18.721] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:28:18.750] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:28:18.812] [INFO] cheese - inserting 1000 documents. first: William Shaw (mathematician) and last: Short R.24/31 +[2018-02-13T00:28:18.878] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:28:18.925] [INFO] cheese - inserting 1000 documents. first: Wolf herring and last: Take Me Out To The Ball Game +[2018-02-13T00:28:18.945] [INFO] cheese - inserting 1000 documents. first: Jeleznodorozhnyi Okrug and last: Wikipedia:Commonname +[2018-02-13T00:28:18.960] [INFO] cheese - inserting 1000 documents. first: Block 15 F-16 Fighting Falcon and last: Decay (film) +[2018-02-13T00:28:18.987] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:28:19.020] [INFO] cheese - batch complete in: 1.208 secs +[2018-02-13T00:28:19.040] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:28:19.122] [INFO] cheese - inserting 1000 documents. first: Orthilia secunda and last: Awakened (2013 film) +[2018-02-13T00:28:19.175] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:28:19.292] [INFO] cheese - inserting 1000 documents. first: Alastair Gordon, Earl of Aboyne and last: Wikipedia:Articles for deletion/American Orthodox Catholic Church +[2018-02-13T00:28:19.357] [INFO] cheese - inserting 1000 documents. first: Shahin Dezh and last: ⁴ +[2018-02-13T00:28:19.357] [INFO] cheese - inserting 1000 documents. first: Great Hypostyle Hall, Karnak and last: Graveri +[2018-02-13T00:28:19.397] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:28:19.405] [INFO] cheese - inserting 1000 documents. first: Rihand Dam and last: Category:Ivorian expatriates in France +[2018-02-13T00:28:19.442] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:28:19.497] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:28:19.503] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:28:19.541] [INFO] cheese - inserting 1000 documents. first: Nickel(II) sulfide and last: Category:1969 establishments in Uganda +[2018-02-13T00:28:19.588] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:28:19.692] [INFO] cheese - inserting 1000 documents. first: Hasan İpek and last: Wonkwang University Law School +[2018-02-13T00:28:19.731] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:28:19.829] [INFO] cheese - inserting 1000 documents. first: Tetrominoes and last: West Side of Stamford, Connecticut +[2018-02-13T00:28:19.869] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:28:19.891] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and manga/Anniversaries/February/February 8 and last: German stock market index +[2018-02-13T00:28:19.927] [INFO] cheese - inserting 1000 documents. first: Shirgjan and last: Hoffman's Parakeet +[2018-02-13T00:28:19.960] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:28:20.005] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:28:20.018] [INFO] cheese - inserting 1000 documents. first: Mycosphaerella rabiei and last: Wikipedia:Copyright problems/2012 November 23 +[2018-02-13T00:28:20.028] [INFO] cheese - inserting 1000 documents. first: Template:USCongDistStateNC and last: Category:Tourism in Guatemala +[2018-02-13T00:28:20.058] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:28:20.114] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:28:20.149] [INFO] cheese - inserting 1000 documents. first: Yeungnam Law School and last: Tennis at the 2015 Pan American Games – Men's doubles +[2018-02-13T00:28:20.205] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:28:20.269] [INFO] cheese - inserting 1000 documents. first: Saljut I and last: Music terminology +[2018-02-13T00:28:20.381] [INFO] cheese - inserting 1000 documents. first: Xaskul and last: Estelle v. Gamble +[2018-02-13T00:28:20.387] [INFO] cheese - batch complete in: 1.366 secs +[2018-02-13T00:28:20.446] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:28:20.456] [INFO] cheese - inserting 1000 documents. first: Hoffmans' Parakeet and last: Save The Last Dance For Me (album) +[2018-02-13T00:28:20.472] [INFO] cheese - inserting 1000 documents. first: Fenerbahçe Ülker season 2008–09 and last: Category:Wikipedia sockpuppets of Mr D Assange118 +[2018-02-13T00:28:20.514] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:28:20.516] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 November 27 and last: Category:1959 in Ukraine +[2018-02-13T00:28:20.538] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:28:20.605] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:28:20.680] [INFO] cheese - inserting 1000 documents. first: Danger Street and last: Category:1869 disestablishments in France +[2018-02-13T00:28:20.681] [INFO] cheese - inserting 1000 documents. first: Carotid sinus massage and last: The One with the Breast Milk +[2018-02-13T00:28:20.719] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:28:20.739] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:28:20.928] [INFO] cheese - inserting 1000 documents. first: Category:Event venues established in 1999 and last: USSR Ministry of Communications +[2018-02-13T00:28:20.932] [INFO] cheese - inserting 1000 documents. first: Mesici and last: Matti Keinonen +[2018-02-13T00:28:20.938] [INFO] cheese - inserting 1000 documents. first: Critic of the slave trade and last: Whitmore v. Arkansas +[2018-02-13T00:28:20.979] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:28:20.987] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:28:20.995] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:28:21.041] [INFO] cheese - inserting 1000 documents. first: Spankee Rogers and last: Late Night Tales: Matt Helders +[2018-02-13T00:28:21.076] [INFO] cheese - inserting 1000 documents. first: Elwood Babbitt and last: Category:Archers at the 2015 European Games +[2018-02-13T00:28:21.099] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:28:21.148] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:28:21.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anti-atheists and last: Motorcycle enduro +[2018-02-13T00:28:21.265] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:28:21.295] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Ranjanrampal and last: Priotrochus iris +[2018-02-13T00:28:21.328] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:28:21.331] [INFO] cheese - inserting 1000 documents. first: File:PDF NN in ideal gas.svg and last: Umberto Menegalli +[2018-02-13T00:28:21.365] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:28:21.450] [INFO] cheese - inserting 1000 documents. first: Halley wars and last: Category:Games about extraterrestrial life +[2018-02-13T00:28:21.498] [INFO] cheese - inserting 1000 documents. first: Carcassonne (board game) and last: Jacqueline Lichtenberg +[2018-02-13T00:28:21.513] [INFO] cheese - inserting 1000 documents. first: Federation of Bangladesh Chambers of Commerce and Industries and last: Jamia Uloom-i-Sharia +[2018-02-13T00:28:21.569] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:28:21.606] [INFO] cheese - inserting 1000 documents. first: Rehabilitation Institute of Michigan and last: Zebrahead Discography +[2018-02-13T00:28:21.631] [INFO] cheese - batch complete in: 1.244 secs +[2018-02-13T00:28:21.640] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:28:21.683] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:28:21.753] [INFO] cheese - inserting 1000 documents. first: Priotrochus kotschyi and last: Thomas Catesby Paget +[2018-02-13T00:28:21.805] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:28:21.903] [INFO] cheese - inserting 1000 documents. first: The Country Coordinating Mechanism and last: Category:2009 establishments in Canada +[2018-02-13T00:28:21.913] [INFO] cheese - inserting 1000 documents. first: Jewish Year Book and last: Rio Hondo bicycle path +[2018-02-13T00:28:21.950] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:28:21.959] [INFO] cheese - inserting 1000 documents. first: Black Star Canyon and last: File:Blume KTN.JPG +[2018-02-13T00:28:21.987] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2015 June 29 and last: H:GT +[2018-02-13T00:28:21.991] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:28:22.022] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:28:22.028] [INFO] cheese - inserting 1000 documents. first: Cosmic Hot Interstellar Plasma Spectrometer and last: 1961 Alabama Crimson Tide football team +[2018-02-13T00:28:22.048] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:28:22.100] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:28:22.198] [INFO] cheese - inserting 1000 documents. first: Category:1880 establishments in Cyprus and last: Masatane +[2018-02-13T00:28:22.249] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:28:22.422] [INFO] cheese - inserting 1000 documents. first: Template:FIFA Women's World Cup Best Young Player and last: File:Hideaway Girl poster.jpg +[2018-02-13T00:28:22.481] [INFO] cheese - inserting 1000 documents. first: Kimi no Iru Machi and last: Wikipedia:WikiProject Screencast/Scripts/Images +[2018-02-13T00:28:22.489] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:28:22.499] [INFO] cheese - inserting 1000 documents. first: Radio atmospherics and last: Bernard Rich +[2018-02-13T00:28:22.541] [INFO] cheese - inserting 1000 documents. first: Popular Front Party and last: Kinpachi-sensei +[2018-02-13T00:28:22.576] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:28:22.675] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:28:22.761] [INFO] cheese - inserting 1000 documents. first: 1962 Alabama Crimson Tide football team and last: Secret speech +[2018-02-13T00:28:22.754] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:28:22.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Archive242 and last: Merry Christmas, Baby (album) +[2018-02-13T00:28:22.862] [INFO] cheese - inserting 1000 documents. first: Methuen Treaty and last: Harve Bennett +[2018-02-13T00:28:22.864] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:28:22.930] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:28:22.972] [INFO] cheese - batch complete in: 1.34 secs +[2018-02-13T00:28:23.035] [INFO] cheese - inserting 1000 documents. first: Serpentine Running Club and last: Category:1036 by continent +[2018-02-13T00:28:23.101] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:28:23.134] [INFO] cheese - inserting 1000 documents. first: Railway stations in Sikkim and last: Coombe Junction Halt +[2018-02-13T00:28:23.137] [INFO] cheese - inserting 1000 documents. first: Manifest Destiny (song) and last: Katherine von Bora +[2018-02-13T00:28:23.186] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:28:23.189] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:28:23.289] [INFO] cheese - inserting 1000 documents. first: Rubber deck and last: Novovasilyevka +[2018-02-13T00:28:23.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Medfordese and last: Bank of America Tower, Albuquerque +[2018-02-13T00:28:23.326] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:28:23.357] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:28:23.423] [INFO] cheese - inserting 1000 documents. first: Category:Dutch sportsmen and last: Singa, Sudan +[2018-02-13T00:28:23.447] [INFO] cheese - inserting 1000 documents. first: Category:Urdu-English translators and last: Category:1792 disestablishments in Ireland +[2018-02-13T00:28:23.494] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:28:23.498] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:28:23.641] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Belarus and last: Criminal black man +[2018-02-13T00:28:23.755] [INFO] cheese - inserting 1000 documents. first: Rishtey (season 3) and last: Wrapped normal distribution +[2018-02-13T00:28:23.752] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:28:23.790] [INFO] cheese - inserting 1000 documents. first: Doc Neeson and last: File:Early flight 02561u (5).jpg +[2018-02-13T00:28:23.847] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:28:24.006] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:28:24.096] [INFO] cheese - inserting 1000 documents. first: American Sovereignty Restoration Act and last: Category:Sciaenidae +[2018-02-13T00:28:24.100] [INFO] cheese - inserting 1000 documents. first: Category:Rivers by mountain range and last: Module:Tennis events nav/doc +[2018-02-13T00:28:24.155] [INFO] cheese - inserting 1000 documents. first: Treadaway and last: Category:Renewable energy in the Netherlands +[2018-02-13T00:28:24.193] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:28:24.194] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T00:28:24.263] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:28:24.349] [INFO] cheese - inserting 1000 documents. first: Paul Émile Lecoq de Boisbaudran and last: Regent's Park +[2018-02-13T00:28:24.425] [INFO] cheese - batch complete in: 1.453 secs +[2018-02-13T00:28:24.430] [INFO] cheese - inserting 1000 documents. first: The Long Cairn and last: Category:Assassinated Saudi Arabian people +[2018-02-13T00:28:24.443] [INFO] cheese - inserting 1000 documents. first: W. J. Muller and last: Wikipedia:WikiProject Spam/LinkReports/emmytvlegends.org +[2018-02-13T00:28:24.485] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:28:24.504] [INFO] cheese - inserting 1000 documents. first: David Mack (police officer) and last: Portal:Military history of Africa/Selected anniversaries/February 8 +[2018-02-13T00:28:24.525] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:28:24.603] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:28:24.645] [INFO] cheese - inserting 1000 documents. first: Nothris discretella and last: Federated states of micronesia national under-23 football team +[2018-02-13T00:28:24.707] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:28:24.732] [INFO] cheese - inserting 1000 documents. first: Warren Crawford and last: DeTas-Yayasan Pahang +[2018-02-13T00:28:24.802] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:28:24.834] [INFO] cheese - inserting 1000 documents. first: Bzoe and last: Gulf of Kachchh Marine National Park +[2018-02-13T00:28:24.914] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:28:24.919] [INFO] cheese - inserting 1000 documents. first: Template:1987–88 NHL Smythe Division standings and last: Range accrual +[2018-02-13T00:28:24.963] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:28:25.067] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Incidents/Stevertigo/September 2010 and last: Wikipedia:Articles for deletion/Timelog Project +[2018-02-13T00:28:25.234] [INFO] cheese - inserting 1000 documents. first: Dennis Kusinich and last: List of Dublin City University faculties, schools, research centres and laboratories +[2018-02-13T00:28:25.239] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:28:25.301] [INFO] cheese - inserting 1000 documents. first: Sebastián de Morra and last: Template:Pool A Men's Water polo at the 2015 Pan American Games +[2018-02-13T00:28:25.300] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:28:25.390] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:28:25.472] [INFO] cheese - inserting 1000 documents. first: Category:People's Liberation Army generals from Shanghai and last: Dundurn Publishing +[2018-02-13T00:28:25.540] [INFO] cheese - inserting 1000 documents. first: RMIT Music and last: O What a Beautiful Mornin' +[2018-02-13T00:28:25.586] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:28:25.634] [INFO] cheese - inserting 1000 documents. first: Herbert Norkus (ship) and last: Eric and Ernie +[2018-02-13T00:28:25.664] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:28:25.771] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T00:28:25.799] [INFO] cheese - inserting 1000 documents. first: Emil Holas and last: Marie de Garis +[2018-02-13T00:28:25.849] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:28:25.858] [INFO] cheese - inserting 1000 documents. first: Romania in the Eurovision Song Contest 1996 and last: SBRT +[2018-02-13T00:28:25.879] [INFO] cheese - inserting 1000 documents. first: David Croft (TV producer) and last: Mad Max +[2018-02-13T00:28:25.888] [INFO] cheese - inserting 1000 documents. first: Discovery Park erratic and last: Bartlett Regional Hospital +[2018-02-13T00:28:25.910] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:28:25.938] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:28:25.969] [INFO] cheese - batch complete in: 1.544 secs +[2018-02-13T00:28:26.015] [INFO] cheese - inserting 1000 documents. first: HD-39801 and last: Nebraska–Omaha Mavericks men's soccer +[2018-02-13T00:28:26.063] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:28:26.158] [INFO] cheese - inserting 1000 documents. first: Richard Schope and last: Cocktail effect +[2018-02-13T00:28:26.197] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:28:26.309] [INFO] cheese - inserting 1000 documents. first: Category:1733 disestablishments in Europe and last: Indian Institute of Technology (Ropar) +[2018-02-13T00:28:26.322] [INFO] cheese - inserting 1000 documents. first: File:Victor Vashi.gif and last: Thoracolumbosacral orthosis +[2018-02-13T00:28:26.337] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:28:26.385] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:28:26.400] [INFO] cheese - inserting 1000 documents. first: Levelling mechanism and last: Know your meme +[2018-02-13T00:28:26.422] [INFO] cheese - inserting 1000 documents. first: File:Short Ride 2.jpg and last: Subcommittee on Superfund and Environmental Health +[2018-02-13T00:28:26.440] [INFO] cheese - inserting 1000 documents. first: Ms frontpage and last: Persistent storage +[2018-02-13T00:28:26.449] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:28:26.464] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:28:26.503] [INFO] cheese - inserting 1000 documents. first: Spanish (wine) and last: Sebastián Arrieta +[2018-02-13T00:28:26.529] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:28:26.570] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:28:26.796] [INFO] cheese - inserting 1000 documents. first: Solidago simplex and last: File:MenAmongstMountainsCover.jpg +[2018-02-13T00:28:26.853] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:28:26.951] [INFO] cheese - inserting 1000 documents. first: Unramified morphism and last: George John (cricketer) +[2018-02-13T00:28:26.960] [INFO] cheese - inserting 1000 documents. first: Charles Percy Graham-Montgomery, 6th Baronet Stanhope and last: Category:1983 in New Zealand sport +[2018-02-13T00:28:26.964] [INFO] cheese - inserting 1000 documents. first: Herodias and last: Lisle (town), Broome County, New York +[2018-02-13T00:28:26.990] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:28:27.077] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:28:27.086] [INFO] cheese - batch complete in: 1.117 secs +[2018-02-13T00:28:27.088] [INFO] cheese - inserting 1000 documents. first: Sadananda (of Vedantasara) and last: Payyavula Kesav +[2018-02-13T00:28:27.236] [INFO] cheese - inserting 1000 documents. first: Okanogan Highland and last: Eupatorium shimadai +[2018-02-13T00:28:27.236] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:28:27.332] [INFO] cheese - inserting 1000 documents. first: Severn Teackle Wallis and last: Chesapeake and Albemarle Railroad +[2018-02-13T00:28:27.386] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:28:27.575] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T00:28:27.767] [INFO] cheese - inserting 1000 documents. first: Windsor (village), Broome County, New York and last: Jackson (town), Washington County, Wisconsin +[2018-02-13T00:28:27.771] [INFO] cheese - inserting 1000 documents. first: Algebris and last: Template:RussiaAdmMunRef/per/munlist/solikamsky +[2018-02-13T00:28:27.808] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:28:27.842] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:28:27.880] [INFO] cheese - inserting 1000 documents. first: Book:Katy Perry and last: 10 (Los Angeles Railway) +[2018-02-13T00:28:27.895] [INFO] cheese - inserting 1000 documents. first: Crâng Park and last: Rebecca Boado Rosas +[2018-02-13T00:28:27.981] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T00:28:28.052] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:28:28.065] [INFO] cheese - inserting 1000 documents. first: Tanat Nusserbaev and last: Day 'n' Nite +[2018-02-13T00:28:28.081] [INFO] cheese - inserting 1000 documents. first: Ordnance Island, Bermuda and last: Category:1334 in India +[2018-02-13T00:28:28.115] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:28:28.134] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T00:28:28.364] [INFO] cheese - inserting 1000 documents. first: Boho, County Fermanagh and last: Bindi Kullar +[2018-02-13T00:28:28.388] [INFO] cheese - inserting 1000 documents. first: 1993 World Championships in Athletics – Men's 4 x 100 metres relay and last: Fricated alveolar click +[2018-02-13T00:28:28.426] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:28:28.450] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:28:28.531] [INFO] cheese - inserting 1000 documents. first: Butterfly (documentary film) and last: Template:Asian Games Tennis +[2018-02-13T00:28:28.537] [INFO] cheese - inserting 1000 documents. first: Category:Native American people of the Indian Wars and last: Fratres Pontifices +[2018-02-13T00:28:28.551] [INFO] cheese - inserting 1000 documents. first: Template:NRHP in Hudson County, New Jersey and last: St Kevins C.B.S +[2018-02-13T00:28:28.570] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:28:28.572] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:28:28.593] [INFO] cheese - inserting 1000 documents. first: La Digue Day Gecko and last: Gelechia fuscomaculella +[2018-02-13T00:28:28.619] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:28:28.649] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:28:28.795] [INFO] cheese - inserting 1000 documents. first: New York compression and last: Category:Scottish new wave musical groups +[2018-02-13T00:28:28.828] [INFO] cheese - inserting 1000 documents. first: Brown-mantled tamarin and last: Category:Libraries in North Carolina +[2018-02-13T00:28:28.835] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:28:28.878] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:28:28.882] [INFO] cheese - inserting 1000 documents. first: Louisiana and Arkansas Railroad and last: Be With You (MAX song) +[2018-02-13T00:28:28.938] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:28:28.960] [INFO] cheese - inserting 1000 documents. first: Jackson (village), Washington County, Wisconsin and last: Milford, New York +[2018-02-13T00:28:28.982] [INFO] cheese - inserting 1000 documents. first: WKRP In Cincinnati and last: Jake Rodríguez +[2018-02-13T00:28:28.997] [INFO] cheese - inserting 1000 documents. first: 9500 Liberty and last: Alla Gerber +[2018-02-13T00:28:29.016] [INFO] cheese - inserting 1000 documents. first: Lee Martyn Rogers and last: Category:CBeebies +[2018-02-13T00:28:29.035] [INFO] cheese - batch complete in: 1.226 secs +[2018-02-13T00:28:29.053] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:28:29.074] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:28:29.097] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:28:29.277] [INFO] cheese - inserting 1000 documents. first: Huygens-Fokker Foundation and last: Sardarah +[2018-02-13T00:28:29.314] [INFO] cheese - inserting 1000 documents. first: File:Laulasiapartment1.jpg and last: Wikipedia:Version 1.0 Editorial Team/Dutch military history articles by quality/2 +[2018-02-13T00:28:29.325] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:28:29.383] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:28:29.401] [INFO] cheese - inserting 1000 documents. first: Typhoon Imbudo and last: Journal impact factor +[2018-02-13T00:28:29.440] [INFO] cheese - inserting 1000 documents. first: The Daily Grind (EP) and last: Category:Lithuanian mixed martial artists +[2018-02-13T00:28:29.441] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Famous Litvaks of Lithuanian origin and last: Morgan Matson +[2018-02-13T00:28:29.468] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:28:29.528] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:28:29.534] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:28:29.614] [INFO] cheese - inserting 1000 documents. first: Peter de Blaquiere and last: Template:RussiaAdmMunRef/pri/munlist/krasnoarmeysky +[2018-02-13T00:28:29.657] [INFO] cheese - inserting 1000 documents. first: The Ballad of Forty Dollars and last: Tydemania navigatoris +[2018-02-13T00:28:29.662] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:28:29.698] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:28:29.746] [INFO] cheese - inserting 1000 documents. first: File:Wcpw logo.jpg and last: Wikipedia:WikiProject Trains/ICC valuations/St. Johns River Terminal Company +[2018-02-13T00:28:29.815] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:28:29.888] [INFO] cheese - inserting 1000 documents. first: Baker’s Dozen and last: Activity on node (AON) diagram +[2018-02-13T00:28:29.905] [INFO] cheese - inserting 1000 documents. first: Teleperformance philippines and last: 2004 World Junior Championships in Athletics – Men's triple jump +[2018-02-13T00:28:29.923] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:28:29.947] [INFO] cheese - inserting 1000 documents. first: Saint Stanisław and last: Ctenotus taeniolatus +[2018-02-13T00:28:29.949] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:28:30.011] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:28:30.042] [INFO] cheese - inserting 1000 documents. first: Tydemania (fish) and last: Rutger de Regt +[2018-02-13T00:28:30.094] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:28:30.140] [INFO] cheese - inserting 1000 documents. first: Leyland Tiger (front-engined) and last: Htoma Myauk +[2018-02-13T00:28:30.176] [INFO] cheese - inserting 1000 documents. first: Southwestern Michigan Athletic Conference and last: Template:Soca music +[2018-02-13T00:28:30.200] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:28:30.229] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:28:30.289] [INFO] cheese - inserting 1000 documents. first: Morris (village), New York and last: Yue cuisine +[2018-02-13T00:28:30.308] [INFO] cheese - inserting 1000 documents. first: Template:Chicago Cubs and last: Kayseri Yeni Stadyumu +[2018-02-13T00:28:30.312] [INFO] cheese - inserting 1000 documents. first: Category:Congressional delegations from Virginia navigational boxes and last: Category:Lists of Hindu religious leaders +[2018-02-13T00:28:30.355] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:28:30.358] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:28:30.395] [INFO] cheese - batch complete in: 1.36 secs +[2018-02-13T00:28:30.591] [INFO] cheese - inserting 1000 documents. first: St. Luigi Orione and last: Violadores del verso +[2018-02-13T00:28:30.642] [INFO] cheese - inserting 1000 documents. first: Template:Nuclear-powered icebreakers of Russia and last: Remembering 1942 +[2018-02-13T00:28:30.679] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:28:30.703] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:28:30.716] [INFO] cheese - inserting 1000 documents. first: Pauline Calf and last: Cologna +[2018-02-13T00:28:30.770] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:28:30.843] [INFO] cheese - inserting 1000 documents. first: Undisclosed (song) and last: Estephan II +[2018-02-13T00:28:30.856] [INFO] cheese - inserting 1000 documents. first: Nerve guidance conduit and last: Now! 4 (Canadian series) +[2018-02-13T00:28:30.877] [INFO] cheese - inserting 1000 documents. first: Perite and last: Category:Manufacturing companies based in Washington, D.C. +[2018-02-13T00:28:30.886] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:28:30.898] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:28:30.956] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:28:31.098] [INFO] cheese - inserting 1000 documents. first: Douglas Everett (disambiguation) and last: Ditlef Hvistendahl Christiansen +[2018-02-13T00:28:31.144] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:28:31.147] [INFO] cheese - inserting 1000 documents. first: List of World War II divisions of Germany and last: Matthew Thiessen +[2018-02-13T00:28:31.168] [INFO] cheese - inserting 1000 documents. first: Rugby World Cup 2011 20th Place Playoff and last: Bengali Britons +[2018-02-13T00:28:31.210] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:28:31.244] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:28:31.326] [INFO] cheese - inserting 1000 documents. first: Joseph Reagle and last: Archibald Pitt +[2018-02-13T00:28:31.350] [INFO] cheese - inserting 1000 documents. first: NK Partizan and last: File:Students dancing the Conga (St John's Regional College, Australia, 2007).jpg +[2018-02-13T00:28:31.379] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:28:31.414] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:28:31.516] [INFO] cheese - inserting 1000 documents. first: File:Peter Fitzgerald cropped.jpg and last: Category:1962 music awards +[2018-02-13T00:28:31.543] [INFO] cheese - inserting 1000 documents. first: Canton cuisine and last: Self bondage +[2018-02-13T00:28:31.568] [INFO] cheese - inserting 1000 documents. first: Mendota Consolidated Community School District 289 and last: Ebersbach (Fils) station +[2018-02-13T00:28:31.579] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:28:31.616] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:28:31.642] [INFO] cheese - batch complete in: 1.247 secs +[2018-02-13T00:28:31.707] [INFO] cheese - inserting 1000 documents. first: Tower City (Cleveland) and last: כּ +[2018-02-13T00:28:31.745] [INFO] cheese - inserting 1000 documents. first: Sampling (A level business) and last: File:MenAgainstTheSea.JPG +[2018-02-13T00:28:31.754] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:28:31.767] [INFO] cheese - inserting 1000 documents. first: You Better Keep It on Your Mind and last: William Ritchie (footballer) +[2018-02-13T00:28:31.815] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:28:31.819] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:28:31.900] [INFO] cheese - inserting 1000 documents. first: Mr. Bass Man and last: Brand Upon the Brain +[2018-02-13T00:28:31.940] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:28:32.012] [INFO] cheese - inserting 1000 documents. first: Madison-Model High School and last: Wikipedia:WikiProject Spam/Local/blendedbody.com +[2018-02-13T00:28:32.058] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:28:32.137] [INFO] cheese - inserting 1000 documents. first: Solidago hintoniorum and last: Template:User in WF +[2018-02-13T00:28:32.156] [INFO] cheese - inserting 1000 documents. first: William and Mary Quarterly and last: St. Mary Help of Christians Catholic School +[2018-02-13T00:28:32.169] [INFO] cheese - inserting 1000 documents. first: Varig Logistica and last: Renewed judgment as a matter of law +[2018-02-13T00:28:32.170] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:28:32.203] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:28:32.227] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:28:32.233] [INFO] cheese - inserting 1000 documents. first: Kangdong (village) and last: Template:DLM style +[2018-02-13T00:28:32.287] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:28:32.292] [INFO] cheese - inserting 1000 documents. first: Montereau-sur-le-Jard and last: Mehmet Hakki Hocaoğlu +[2018-02-13T00:28:32.345] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:28:32.476] [INFO] cheese - inserting 1000 documents. first: Buckleria brasilia and last: Bill Tupper +[2018-02-13T00:28:32.535] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:28:32.564] [INFO] cheese - inserting 1000 documents. first: Staples, William and last: Category:Maritime incidents in February 1940 +[2018-02-13T00:28:32.637] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:28:32.656] [INFO] cheese - inserting 1000 documents. first: She Used to Wanna Be a Ballerina and last: Spider-Man (1994 TV series: Season 1) +[2018-02-13T00:28:32.673] [INFO] cheese - inserting 1000 documents. first: Chen Yun and last: Fritjov Capra +[2018-02-13T00:28:32.686] [INFO] cheese - inserting 1000 documents. first: Cigarette packets in Australia and last: Category:1910s classical albums +[2018-02-13T00:28:32.723] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:28:32.740] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:28:32.768] [INFO] cheese - inserting 1000 documents. first: Sir Frederick Pile and last: Edmundo Rivero +[2018-02-13T00:28:32.811] [INFO] cheese - batch complete in: 1.168 secs +[2018-02-13T00:28:32.864] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:28:32.872] [INFO] cheese - inserting 1000 documents. first: File:Ureme 4 Front.jpg and last: Wikipedia:Requests for adminship/Seattle Skier +[2018-02-13T00:28:32.956] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:28:33.084] [INFO] cheese - inserting 1000 documents. first: Susan Mokotoff Reverby and last: Andrea Mohr +[2018-02-13T00:28:33.229] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:28:33.280] [INFO] cheese - inserting 1000 documents. first: Government House Canada and last: The Street (1988 TV Series) +[2018-02-13T00:28:33.307] [INFO] cheese - inserting 1000 documents. first: Category:1910s albums and last: Category:Afghanistan-Sweden relations +[2018-02-13T00:28:33.307] [INFO] cheese - inserting 1000 documents. first: Buzzcocks F.O.C. and last: Anthony J. Catanese +[2018-02-13T00:28:33.342] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:28:33.384] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:28:33.389] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:28:33.519] [INFO] cheese - inserting 1000 documents. first: Onoel and last: Air cleaner +[2018-02-13T00:28:33.558] [INFO] cheese - inserting 1000 documents. first: Naturescaping and last: James Madison University College of Visual and Performing Arts +[2018-02-13T00:28:33.627] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:28:33.710] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:28:33.915] [INFO] cheese - inserting 1000 documents. first: File:Jack Goes Boating Poster.jpg and last: List of heads of state of Manchukuo +[2018-02-13T00:28:33.974] [INFO] cheese - inserting 1000 documents. first: David Bowman (bishop) and last: Template:Did you know nominations/List of tallest buildings in Brooklyn +[2018-02-13T00:28:33.999] [INFO] cheese - inserting 1000 documents. first: Blade (Puppet Master Character) and last: Police area +[2018-02-13T00:28:34.015] [INFO] cheese - inserting 1000 documents. first: Category:Afghanistan-Switzerland relations and last: Vientiane Prefecture +[2018-02-13T00:28:34.019] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:28:34.038] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:28:34.068] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:28:34.084] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:28:34.147] [INFO] cheese - inserting 1000 documents. first: Regents v. Bakke and last: Wikipedia:Special:Categories +[2018-02-13T00:28:34.196] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:28:34.209] [INFO] cheese - inserting 1000 documents. first: Tracked vehicle and last: Neoconservatives +[2018-02-13T00:28:34.252] [INFO] cheese - inserting 1000 documents. first: Heroin Chic and last: File:DeltaGoodremPredictableFrontCover.jpg +[2018-02-13T00:28:34.325] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:28:34.340] [INFO] cheese - batch complete in: 1.529 secs +[2018-02-13T00:28:34.392] [INFO] cheese - inserting 1000 documents. first: Tamron SP AF 11-18mm f/4.5-5.6 Di II LD Aspherical IF and last: Wikipedia:Articles for deletion/AFC Wimbledon league record by opponent +[2018-02-13T00:28:34.454] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:28:34.525] [INFO] cheese - inserting 1000 documents. first: Police Area and last: The Hathaways +[2018-02-13T00:28:34.525] [INFO] cheese - inserting 1000 documents. first: BAA airports and last: Something Right (Westlife song) +[2018-02-13T00:28:34.540] [INFO] cheese - inserting 1000 documents. first: Luang Prabang Province and last: Category:Nelson College faculty +[2018-02-13T00:28:34.579] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:28:34.585] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:28:34.597] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:28:34.606] [INFO] cheese - inserting 1000 documents. first: Beypazarı and last: Musayi District +[2018-02-13T00:28:34.668] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:28:34.789] [INFO] cheese - inserting 1000 documents. first: The Lord's Chosen Charismatic Revival Movement and last: Wikipedia:Articles for deletion/Trishneet Arora (2nd nomination) +[2018-02-13T00:28:34.829] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:28:34.855] [INFO] cheese - inserting 1000 documents. first: Bindon Liberty and last: List of state leaders in 288 +[2018-02-13T00:28:34.914] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:28:34.967] [INFO] cheese - inserting 1000 documents. first: Bucks Bridge and last: Category:Athletics (track and field) venues in Botswana +[2018-02-13T00:28:34.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ultimatemonica.free.fr and last: Wikipedia:Articles for deletion/Mercia Movement +[2018-02-13T00:28:35.013] [INFO] cheese - inserting 1000 documents. first: History of County Londonderry and last: Category:Gold mines in Kosovo +[2018-02-13T00:28:35.014] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:28:35.030] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:28:35.122] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:28:35.135] [INFO] cheese - inserting 1000 documents. first: Portal:Military history of Africa/Selected anniversaries/July 6 and last: Nepenthes angustifolia +[2018-02-13T00:28:35.214] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:28:35.265] [INFO] cheese - inserting 1000 documents. first: Coastal miterwort and last: West of the West +[2018-02-13T00:28:35.296] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:28:35.453] [INFO] cheese - inserting 1000 documents. first: Benedetto Pistrucci and last: Wikipedia:References +[2018-02-13T00:28:35.516] [INFO] cheese - inserting 1000 documents. first: Raicevic and last: Bhartiya Sarvekshan Sewa +[2018-02-13T00:28:35.520] [INFO] cheese - inserting 1000 documents. first: Category:Athletics (track and field) venues in Belgium and last: Category:1991–92 in Republic of Ireland football +[2018-02-13T00:28:35.562] [INFO] cheese - batch complete in: 1.222 secs +[2018-02-13T00:28:35.572] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:28:35.580] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:28:35.597] [INFO] cheese - inserting 1000 documents. first: Klemm Kl.36 and last: Wrestling at the 2010 Commonwealth Games – Men's Greco-Roman 74 kg +[2018-02-13T00:28:35.625] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 287 and last: Harrington-Wilson 2 +[2018-02-13T00:28:35.661] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:28:35.677] [INFO] cheese - inserting 1000 documents. first: Template:2015 Pan American Games Argentina women's field hockey team roster and last: Many spotted Dichomeris Moth +[2018-02-13T00:28:35.701] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:28:35.736] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:28:35.763] [INFO] cheese - inserting 1000 documents. first: Borrowing (linguistics) and last: Nemo (American band) +[2018-02-13T00:28:35.807] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:28:35.984] [INFO] cheese - inserting 1000 documents. first: Negative effects of smoking and last: Madar, Nepal +[2018-02-13T00:28:36.044] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:28:36.164] [INFO] cheese - inserting 1000 documents. first: Chris Senn and last: List of mayors of Milan +[2018-02-13T00:28:36.180] [INFO] cheese - inserting 1000 documents. first: Many spotted dichomeris moth and last: Rakovica, Vozdovac +[2018-02-13T00:28:36.197] [INFO] cheese - inserting 1000 documents. first: Liz Tayler and last: Category:Office buildings completed in 1893 +[2018-02-13T00:28:36.205] [INFO] cheese - inserting 1000 documents. first: Wrestling at the 2010 Commonwealth Games – Men's Greco-Roman 84 kg and last: City Journal (Thrissur) +[2018-02-13T00:28:36.209] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:28:36.220] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:28:36.247] [INFO] cheese - inserting 1000 documents. first: Category:410 births and last: Genetically-modified crops +[2018-02-13T00:28:36.274] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:28:36.276] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:28:36.331] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:28:36.450] [INFO] cheese - inserting 1000 documents. first: Mahadewa Portaha and last: Men without Hats +[2018-02-13T00:28:36.502] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:28:36.611] [INFO] cheese - inserting 1000 documents. first: The Lovemaster (film) and last: Template:TV series based on Arthurian legends +[2018-02-13T00:28:36.623] [INFO] cheese - inserting 1000 documents. first: Helenium mexicanum and last: Filago rotundata +[2018-02-13T00:28:36.642] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:28:36.658] [INFO] cheese - inserting 1000 documents. first: Wellspring Academies and last: Jamie Wall +[2018-02-13T00:28:36.665] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:28:36.668] [INFO] cheese - inserting 1000 documents. first: Gaia and last: Terence O'Neill +[2018-02-13T00:28:36.695] [INFO] cheese - inserting 1000 documents. first: HMS Raven (1882) and last: List of settlements in Oregon +[2018-02-13T00:28:36.703] [INFO] cheese - inserting 1000 documents. first: Category:Grenada stubs and last: Ebba von Sydow +[2018-02-13T00:28:36.710] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:28:36.752] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:28:36.755] [INFO] cheese - batch complete in: 1.191 secs +[2018-02-13T00:28:36.760] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:28:36.851] [INFO] cheese - inserting 1000 documents. first: Category:Murder in Barbados and last: Wendover Will +[2018-02-13T00:28:36.894] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:28:37.021] [INFO] cheese - inserting 1000 documents. first: 67th Texas Legislature and last: Kholus +[2018-02-13T00:28:37.028] [INFO] cheese - inserting 1000 documents. first: Murder of Martha Morrison and last: RU 23908 +[2018-02-13T00:28:37.084] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:28:37.093] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:28:37.152] [INFO] cheese - inserting 1000 documents. first: Brenden Benson and last: Andagaadu +[2018-02-13T00:28:37.158] [INFO] cheese - inserting 1000 documents. first: Lucia Anguissola and last: Ronald Allen Burdo +[2018-02-13T00:28:37.193] [INFO] cheese - inserting 1000 documents. first: Template:China Soccer Squad 2008 Summer Olympics and last: Template:IBAF World Rankings ref +[2018-02-13T00:28:37.205] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:28:37.243] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:28:37.267] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:28:37.347] [INFO] cheese - inserting 1000 documents. first: File:Racing Simulation 3.jpg and last: The Glen Campbell Collection (1962–1989) Gentle on My Mind +[2018-02-13T00:28:37.417] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:28:37.682] [INFO] cheese - inserting 1000 documents. first: Kholoos and last: Counterpoint (In the Nursery album) +[2018-02-13T00:28:37.799] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:28:37.841] [INFO] cheese - inserting 1000 documents. first: File:Corn Mo.jpg and last: James Thomas Bailey +[2018-02-13T00:28:37.867] [INFO] cheese - inserting 1000 documents. first: It (1927 film) and last: Leonard Peikoff +[2018-02-13T00:28:37.885] [INFO] cheese - inserting 1000 documents. first: File:My Soul to Take.jpg and last: Margherita Beriza +[2018-02-13T00:28:37.914] [INFO] cheese - inserting 1000 documents. first: Ronald Burdo and last: Mushroom Rock State Park +[2018-02-13T00:28:37.948] [INFO] cheese - inserting 1000 documents. first: Methodios of Thessaloniki and last: Wikipedia:WikiProject Spam/LinkReports/makemoneyonline.mx +[2018-02-13T00:28:37.953] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:28:38.015] [INFO] cheese - batch complete in: 1.26 secs +[2018-02-13T00:28:38.025] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T00:28:38.032] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:28:38.049] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:28:38.173] [INFO] cheese - inserting 1000 documents. first: 2-Dimethylaminoethylazide and last: Portal:Football in Germany/Selected biography/7 +[2018-02-13T00:28:38.238] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:28:38.352] [INFO] cheese - inserting 1000 documents. first: Jahloul Chico Bouchikhi and last: Category:2008 disestablishments in Wales +[2018-02-13T00:28:38.406] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:28:38.509] [INFO] cheese - inserting 1000 documents. first: Democrat Underground and last: Appleseed (disambiguation) +[2018-02-13T00:28:38.518] [INFO] cheese - inserting 1000 documents. first: Beriza and last: Bystré nad Topľou +[2018-02-13T00:28:38.580] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:28:38.593] [INFO] cheese - inserting 1000 documents. first: Category:1526 in the Spanish Empire and last: Moía Mane +[2018-02-13T00:28:38.598] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:28:38.659] [INFO] cheese - inserting 1000 documents. first: LNLS and last: Michael Massing +[2018-02-13T00:28:38.668] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:28:38.714] [INFO] cheese - inserting 1000 documents. first: Portal:Football in Germany/Selected biography/8 and last: San Jerónimo de Millapoa +[2018-02-13T00:28:38.752] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:28:38.761] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:28:38.775] [INFO] cheese - inserting 1000 documents. first: Category:2000 in Argentine television and last: Tolombeh-ye Seyyed Toghra +[2018-02-13T00:28:38.826] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:28:38.952] [INFO] cheese - inserting 1000 documents. first: Karanis and last: Dougco +[2018-02-13T00:28:38.995] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:28:39.053] [INFO] cheese - inserting 1000 documents. first: Faces (film) and last: Canada lynx +[2018-02-13T00:28:39.060] [INFO] cheese - inserting 1000 documents. first: Dina and Maerseveen Islands and last: Helly space +[2018-02-13T00:28:39.096] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:28:39.121] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T00:28:39.134] [INFO] cheese - inserting 1000 documents. first: Mikel Balenziaga and last: Gunnar Utterberg +[2018-02-13T00:28:39.141] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture of the day/December 1, 2005 and last: File:FC Indiana logo.jpg +[2018-02-13T00:28:39.161] [INFO] cheese - inserting 1000 documents. first: Dark age renaissance and last: Wikipedia:Sockpuppet investigations/Hammerharder +[2018-02-13T00:28:39.189] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:28:39.206] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:28:39.214] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:28:39.249] [INFO] cheese - inserting 1000 documents. first: Moia Mané and last: Wikipedia:Articles for deletion/History of tax resistance +[2018-02-13T00:28:39.322] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:28:39.428] [INFO] cheese - inserting 1000 documents. first: Julien Wartelle and last: Count Koopula +[2018-02-13T00:28:39.489] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:28:39.511] [INFO] cheese - inserting 1000 documents. first: Alfred Day and last: Asian Forum for Human Rights and Development +[2018-02-13T00:28:39.559] [INFO] cheese - inserting 1000 documents. first: Kenta Uchida and last: Georgia State University Library +[2018-02-13T00:28:39.564] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:28:39.609] [INFO] cheese - inserting 1000 documents. first: Scott Sherman (politician) and last: Category:1980 in American motorsport +[2018-02-13T00:28:39.657] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:28:39.674] [INFO] cheese - inserting 1000 documents. first: Category:People murdered in Tokyo and last: Scaleybark +[2018-02-13T00:28:39.695] [INFO] cheese - inserting 1000 documents. first: Antony Lane and last: Rug beater +[2018-02-13T00:28:39.700] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:28:39.750] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:28:39.837] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:28:40.026] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Bakakkaa and last: Burton, Cheshire +[2018-02-13T00:28:40.045] [INFO] cheese - inserting 1000 documents. first: Category:1979 in American motorsport and last: Louisiana State Highway 131 +[2018-02-13T00:28:40.094] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:28:40.108] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:28:40.130] [INFO] cheese - inserting 1000 documents. first: North Caucasian Emirate and last: Category:1890s establishments by country +[2018-02-13T00:28:40.176] [INFO] cheese - inserting 1000 documents. first: I-485/South Boulevard and last: Aspro-Ocio Group +[2018-02-13T00:28:40.183] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:28:40.232] [INFO] cheese - inserting 1000 documents. first: North African Cup Winners Cup and last: Flasks +[2018-02-13T00:28:40.253] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:28:40.257] [INFO] cheese - inserting 1000 documents. first: Canadian lynx and last: Black Sabbath (album) +[2018-02-13T00:28:40.298] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:28:40.349] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T00:28:40.456] [INFO] cheese - inserting 1000 documents. first: Gammarid amphipods and last: Bismarck Brown Y +[2018-02-13T00:28:40.528] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:28:40.640] [INFO] cheese - inserting 1000 documents. first: In Limbo (song) and last: Sudbrook House +[2018-02-13T00:28:40.685] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:28:40.689] [INFO] cheese - inserting 1000 documents. first: Football at the 1912 Summer Olympics – Consolation tournament and last: File:OLIVER111.jpeg +[2018-02-13T00:28:40.721] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/modeldads.co.uk and last: The Dark of the Moon +[2018-02-13T00:28:40.736] [INFO] cheese - inserting 1000 documents. first: Italo-Albanese Diocese of Piana degli Albanesi and last: Idiopoma doliaris +[2018-02-13T00:28:40.755] [INFO] cheese - inserting 1000 documents. first: Operation Magician and last: Template:POTD protected/2008-11-22 +[2018-02-13T00:28:40.763] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:28:40.782] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:28:40.789] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:28:40.839] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:28:40.982] [INFO] cheese - inserting 1000 documents. first: Marc Zoro and last: Riceland Foods +[2018-02-13T00:28:41.036] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:28:41.153] [INFO] cheese - inserting 1000 documents. first: Hawley smoot tariff and last: Michelle Hamer +[2018-02-13T00:28:41.195] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:28:41.232] [INFO] cheese - inserting 1000 documents. first: MT Stolt Valor and last: Art Students League of NY +[2018-02-13T00:28:41.269] [INFO] cheese - inserting 1000 documents. first: Category:Prisoners of war held by Italy and last: Iris stylosa +[2018-02-13T00:28:41.283] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:28:41.302] [INFO] cheese - inserting 1000 documents. first: 2009, The Year of Us and last: People's Agenda +[2018-02-13T00:28:41.359] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:28:41.391] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:28:41.435] [INFO] cheese - inserting 1000 documents. first: File:Malaysian Newsprint Industries logo.jpg and last: Kodumudi Magudeswarar temple +[2018-02-13T00:28:41.510] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:28:41.577] [INFO] cheese - inserting 1000 documents. first: Radio orienteering and last: Taka +[2018-02-13T00:28:41.640] [INFO] cheese - inserting 1000 documents. first: Wadsworth and last: Stacks +[2018-02-13T00:28:41.663] [INFO] cheese - inserting 1000 documents. first: List of accolades received by Milk and last: Category:Films directed by John Pasquin +[2018-02-13T00:28:41.689] [INFO] cheese - inserting 1000 documents. first: George "The Fairy Earl" FitzGerald, 16th Earl of Kildare and last: Template:User ANG +[2018-02-13T00:28:41.725] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:28:41.726] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:28:41.732] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:28:41.753] [INFO] cheese - inserting 1000 documents. first: Russian peasants and last: Dick Darby +[2018-02-13T00:28:41.804] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:28:41.835] [INFO] cheese - batch complete in: 1.486 secs +[2018-02-13T00:28:42.027] [INFO] cheese - inserting 1000 documents. first: Category:Thomas College people and last: Wikipedia:WikiProject Spam/LinkReports/emil.input.sk +[2018-02-13T00:28:42.139] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:28:42.278] [INFO] cheese - inserting 1000 documents. first: Shusaku and last: Trace inequalities +[2018-02-13T00:28:42.290] [INFO] cheese - inserting 1000 documents. first: Chandra Mahesh and last: Category:Theatres completed in 1603 +[2018-02-13T00:28:42.311] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:28:42.321] [INFO] cheese - inserting 1000 documents. first: Médina, Dakar and last: Mominul Haque +[2018-02-13T00:28:42.336] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:28:42.397] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:28:42.419] [INFO] cheese - inserting 1000 documents. first: Hetyefo and last: Rindermarktbrunnen +[2018-02-13T00:28:42.474] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:28:42.491] [INFO] cheese - inserting 1000 documents. first: Category:History of racism in the United States and last: Basic Neuroanatomy +[2018-02-13T00:28:42.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/emil.input.sk and last: List of reported extraterrestrial beings +[2018-02-13T00:28:42.585] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:28:42.627] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:28:42.754] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Disney articles of Unknown-importance and last: Category:1720s in the Viceroyalty of Peru +[2018-02-13T00:28:42.804] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:28:42.820] [INFO] cheese - inserting 1000 documents. first: Kompong Phluk and last: The Bay Area's News Station +[2018-02-13T00:28:42.855] [INFO] cheese - inserting 1000 documents. first: File:Across My Heart.jpg and last: Evhe +[2018-02-13T00:28:42.871] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:28:42.885] [INFO] cheese - inserting 1000 documents. first: John Waite (broadcaster) and last: Wikipedia:Files for deletion/2007 May 12 +[2018-02-13T00:28:42.924] [INFO] cheese - inserting 1000 documents. first: Félicien Rops and last: Motor Torpedo Boat PT-109 +[2018-02-13T00:28:42.924] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:28:42.943] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:28:43.000] [INFO] cheese - inserting 1000 documents. first: Cheney Racing and last: Wikipedia:WikiProject Spam/LinkReports/generouspeople.blogspot.com +[2018-02-13T00:28:43.021] [INFO] cheese - batch complete in: 1.186 secs +[2018-02-13T00:28:43.060] [INFO] cheese - inserting 1000 documents. first: Madagascar Current and last: Wikipedia:Articles for deletion/5205 Izard Street +[2018-02-13T00:28:43.077] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:28:43.159] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:28:43.286] [INFO] cheese - inserting 1000 documents. first: Category:1740s in the Viceroyalty of Peru and last: Vanessa Yeung +[2018-02-13T00:28:43.311] [INFO] cheese - inserting 1000 documents. first: Young Broadcasting San Francisco and last: Ghoria gigantea +[2018-02-13T00:28:43.332] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:28:43.390] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:28:43.486] [INFO] cheese - inserting 1000 documents. first: List of Dallas Stars seasons and last: Paul Brydon +[2018-02-13T00:28:43.550] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:28:43.593] [INFO] cheese - inserting 1000 documents. first: Franzbrötchen and last: Oregon Senate Bill 100 (1973) +[2018-02-13T00:28:43.660] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:28:43.704] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/generouspeople.blogspot.com and last: Leo Diogenes +[2018-02-13T00:28:43.764] [INFO] cheese - inserting 1000 documents. first: Agylla gigas and last: Lashtaghan-e Pa'in va Bala +[2018-02-13T00:28:43.772] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:28:43.816] [INFO] cheese - inserting 1000 documents. first: Category:Tennis at the 2015 Summer Universiade and last: File:Marygold.png +[2018-02-13T00:28:43.831] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:28:43.888] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:28:43.992] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Website template and last: Template:Cathead naval ships of +[2018-02-13T00:28:44.008] [INFO] cheese - inserting 1000 documents. first: CBS Digital Media and last: Vasia Panagopoulou +[2018-02-13T00:28:44.063] [INFO] cheese - inserting 1000 documents. first: Template:Poland-poet-stub and last: Β¹ Mon +[2018-02-13T00:28:44.061] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:28:44.074] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:28:44.123] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:28:44.148] [INFO] cheese - inserting 1000 documents. first: Bibesco, Elizabeth and last: VW Corrado +[2018-02-13T00:28:44.189] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Multi-sport events articles and last: Yoshifumi +[2018-02-13T00:28:44.198] [INFO] cheese - inserting 1000 documents. first: Lord Alexander Russell, GCB and last: List of earthquakes in 1952 +[2018-02-13T00:28:44.219] [INFO] cheese - inserting 1000 documents. first: Lashtaghan-e Pain and last: Air Tractor AT-503A +[2018-02-13T00:28:44.226] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T00:28:44.230] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:28:44.232] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:28:44.286] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:28:44.515] [INFO] cheese - inserting 1000 documents. first: Boswell, Alexander and last: Adrián Palomares +[2018-02-13T00:28:44.549] [INFO] cheese - inserting 1000 documents. first: Seán Ryan (Irish fiddler) and last: Tayk +[2018-02-13T00:28:44.555] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:28:44.632] [INFO] cheese - inserting 1000 documents. first: Beta Monocerotis A and last: Te Pū Ao +[2018-02-13T00:28:44.637] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:28:44.705] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:28:44.715] [INFO] cheese - inserting 1000 documents. first: Kevin Anderson (Athletic Director) and last: Charlotte of Great Britain and Ireland +[2018-02-13T00:28:44.734] [INFO] cheese - inserting 1000 documents. first: Bumdelling Wildlife Sanctuary and last: Category:Egyptian sportsmen +[2018-02-13T00:28:44.775] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:28:44.779] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:28:44.790] [INFO] cheese - inserting 1000 documents. first: The Wizard of Oz in Concert and last: Ruff Ryders' First Lady +[2018-02-13T00:28:44.866] [INFO] cheese - inserting 1000 documents. first: Beige box and last: 12th September +[2018-02-13T00:28:44.867] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:28:44.909] [INFO] cheese - inserting 1000 documents. first: Divaricate navarretia and last: File:Nana's Party poster.jpg +[2018-02-13T00:28:44.930] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:28:44.984] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:28:45.152] [INFO] cheese - inserting 1000 documents. first: List of Sciences Po people and last: Battle of Marracuene +[2018-02-13T00:28:45.158] [INFO] cheese - inserting 1000 documents. first: History of the Saint Thomas Christian tradition and last: Wikipedia:Articles for deletion/Batman/Houdini: The Devil's Workshop +[2018-02-13T00:28:45.260] [INFO] cheese - inserting 1000 documents. first: Andrew Smyth and last: Ayumi Hamasaki Countdown Live 2009–2010 A: Future Classics +[2018-02-13T00:28:45.263] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:28:45.289] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:28:45.329] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:28:45.348] [INFO] cheese - inserting 1000 documents. first: Queen Charlotte of Hanover and last: Josip Ilicic +[2018-02-13T00:28:45.399] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:28:45.415] [INFO] cheese - inserting 1000 documents. first: Arhus Theatre and last: File:Monorail Station.jpg +[2018-02-13T00:28:45.439] [INFO] cheese - inserting 1000 documents. first: Broadley's Flat Lizard and last: Gutierrezia longipappa +[2018-02-13T00:28:45.471] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:28:45.518] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:28:45.700] [INFO] cheese - inserting 1000 documents. first: 2009 in Iraqi football and last: NLR crane tank +[2018-02-13T00:28:45.707] [INFO] cheese - inserting 1000 documents. first: September 12th and last: The Magic School Bus Gets Ants In It's Pants +[2018-02-13T00:28:45.707] [INFO] cheese - inserting 1000 documents. first: Bessemer Michigan and last: Aloa gangara +[2018-02-13T00:28:45.792] [INFO] cheese - inserting 1000 documents. first: Category:People from Owensboro, Kentucky and last: Tropical agriculture +[2018-02-13T00:28:45.797] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:28:45.833] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:28:45.840] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:28:45.882] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:28:45.908] [INFO] cheese - inserting 1000 documents. first: I rymden finns inga känslor and last: File:Grand-eastbourne.jpg +[2018-02-13T00:28:46.005] [INFO] cheese - inserting 1000 documents. first: Dimitrie Neculuta and last: Murman +[2018-02-13T00:28:46.029] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:28:46.090] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:28:46.095] [INFO] cheese - inserting 1000 documents. first: Jacques Tetreault and last: File:Haka2.png +[2018-02-13T00:28:46.169] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:28:46.361] [INFO] cheese - inserting 1000 documents. first: Residential colleges of Rice University and last: Stein Ringen +[2018-02-13T00:28:46.403] [INFO] cheese - inserting 1000 documents. first: Lisa Says and last: Russian Venezuelan +[2018-02-13T00:28:46.423] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:28:46.429] [INFO] cheese - inserting 1000 documents. first: Category:Government buildings completed in 1838 and last: Titlagarh Junction +[2018-02-13T00:28:46.450] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:28:46.459] [INFO] cheese - inserting 1000 documents. first: Colum Cille mac Fedelmtheo and last: Roger Yang +[2018-02-13T00:28:46.486] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:28:46.534] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:28:46.558] [INFO] cheese - inserting 1000 documents. first: Lock and Key Party and last: Category:Large burghs +[2018-02-13T00:28:46.634] [INFO] cheese - inserting 1000 documents. first: Ñegro and last: File:Melbournegrammarcrest.jpg +[2018-02-13T00:28:46.650] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:28:46.694] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:28:46.797] [INFO] cheese - inserting 1000 documents. first: Category:1515 establishments in Spain and last: Heiliger Forest +[2018-02-13T00:28:46.831] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:28:46.876] [INFO] cheese - inserting 1000 documents. first: Public welfare in Puerto Rico and last: Scenes From An Execution +[2018-02-13T00:28:46.879] [INFO] cheese - inserting 1000 documents. first: MT USA and last: William III of Toulouse +[2018-02-13T00:28:46.888] [INFO] cheese - inserting 1000 documents. first: Music of Venezuela and last: Unitary representation +[2018-02-13T00:28:46.913] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:28:46.922] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:28:46.936] [INFO] cheese - inserting 1000 documents. first: File:Roxie Hart - 1942 - Poster.png and last: Fixed set +[2018-02-13T00:28:47.000] [INFO] cheese - batch complete in: 1.16 secs +[2018-02-13T00:28:47.039] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:28:47.113] [INFO] cheese - inserting 1000 documents. first: Exit (unix) and last: Ackersdijk +[2018-02-13T00:28:47.160] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:28:47.193] [INFO] cheese - inserting 1000 documents. first: Single-sided/double-sided and last: Vasocontrictor +[2018-02-13T00:28:47.255] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:28:47.306] [INFO] cheese - inserting 1000 documents. first: File:Atom -- An Odyssey from the Big Bang to Life on Earth -- book cover.jpg and last: Alien Nation (album) +[2018-02-13T00:28:47.346] [INFO] cheese - inserting 1000 documents. first: File:Bill Carson.jpg and last: Devil's Castle Dracula X: Rondo of Blood +[2018-02-13T00:28:47.355] [INFO] cheese - inserting 1000 documents. first: Attractive fixed set and last: Mount K'lamm +[2018-02-13T00:28:47.345] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:28:47.405] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:28:47.410] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:28:47.419] [INFO] cheese - inserting 1000 documents. first: KAMEWA and last: Lorenzo Valla's Dialogue on Free Will +[2018-02-13T00:28:47.463] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:28:47.707] [INFO] cheese - inserting 1000 documents. first: Political positions of Carly Fiorina and last: Nuno Santos (footballer born 1980) +[2018-02-13T00:28:47.730] [INFO] cheese - inserting 1000 documents. first: Ollywood films of 1973 and last: Category:1976 in Spanish motorsport +[2018-02-13T00:28:47.732] [INFO] cheese - inserting 1000 documents. first: Moss Bros. Group and last: Wikipedia:Articles for deletion/Log/2008 November 24 +[2018-02-13T00:28:47.743] [INFO] cheese - inserting 1000 documents. first: SpongeBob Home Video and last: Capital gains tax in Australia +[2018-02-13T00:28:47.751] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:28:47.768] [INFO] cheese - inserting 1000 documents. first: Template:Duchesses of Orléans and last: Category:Buffalo Sabres logos +[2018-02-13T00:28:47.796] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:28:47.806] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:28:47.813] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:28:47.842] [INFO] cheese - inserting 1000 documents. first: William Weare and last: Wikipedia:Non-free content review/Archive 1 +[2018-02-13T00:28:47.855] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:28:47.924] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:28:47.987] [INFO] cheese - inserting 1000 documents. first: Easily recognizable code and last: Peter–Weyl theorem +[2018-02-13T00:28:48.061] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T00:28:48.142] [INFO] cheese - inserting 1000 documents. first: Category:1966 in Taiwanese sport and last: Category:1252 in the Holy Roman Empire +[2018-02-13T00:28:48.176] [INFO] cheese - inserting 1000 documents. first: Gorna Vasilitsa and last: New Town Eco Park +[2018-02-13T00:28:48.210] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:28:48.224] [INFO] cheese - inserting 1000 documents. first: From the Beggar's Mantle and last: Yeaw v. Boy Scouts of America +[2018-02-13T00:28:48.242] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:28:48.280] [INFO] cheese - inserting 1000 documents. first: Dr. Prof. Anatoly Nikolayevich Perminov and last: Gilla Isa Mac Fir Bisigh +[2018-02-13T00:28:48.284] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:28:48.304] [INFO] cheese - inserting 1000 documents. first: RAF Exeter and last: NYUDL +[2018-02-13T00:28:48.328] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:28:48.350] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:28:48.419] [INFO] cheese - inserting 1000 documents. first: Rose Gamgee and last: Category:Ferroalloys +[2018-02-13T00:28:48.510] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:28:48.651] [INFO] cheese - inserting 1000 documents. first: Category:1258 in the Holy Roman Empire and last: Koot (disambiguation) +[2018-02-13T00:28:48.656] [INFO] cheese - inserting 1000 documents. first: File:Let's Do Christmas with Gino and Mel.png and last: File:Homer and Ruth Drake Field House.jpg +[2018-02-13T00:28:48.694] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:28:48.700] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:28:48.773] [INFO] cheese - inserting 1000 documents. first: The Emerald Forest (film) and last: Neil Reidman +[2018-02-13T00:28:48.817] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:28:48.833] [INFO] cheese - inserting 1000 documents. first: Hellinsia carphodactyla and last: 1950–51 Ashes series +[2018-02-13T00:28:48.878] [INFO] cheese - inserting 1000 documents. first: Punctate flower chafer and last: Darshan +[2018-02-13T00:28:48.878] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:28:48.930] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:28:49.049] [INFO] cheese - inserting 1000 documents. first: Kermit-Tipton Stadium and last: Royal Town of Sutton Coldfield +[2018-02-13T00:28:49.070] [INFO] cheese - inserting 1000 documents. first: Diesel and dust and last: Arrondissement of Les Sables-d'Olonne +[2018-02-13T00:28:49.086] [INFO] cheese - inserting 1000 documents. first: Ashkan, Minab and last: 2012 Aceh Governor Cup +[2018-02-13T00:28:49.090] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:28:49.130] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:28:49.136] [INFO] cheese - inserting 1000 documents. first: Anthony Van Dyck and last: Mike Levey +[2018-02-13T00:28:49.138] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:28:49.159] [INFO] cheese - inserting 1000 documents. first: Baise Bichawa and last: Lo Zoo di 105 +[2018-02-13T00:28:49.199] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:28:49.208] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T00:28:49.311] [INFO] cheese - inserting 1000 documents. first: Maheswaram and last: Ludi Juvenales +[2018-02-13T00:28:49.329] [INFO] cheese - inserting 1000 documents. first: Bairi Sawai and last: Max Whitlock +[2018-02-13T00:28:49.358] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:28:49.378] [INFO] cheese - inserting 1000 documents. first: Lohman (disambiguation) and last: Nzau Namsan +[2018-02-13T00:28:49.379] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:28:49.419] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:28:49.542] [INFO] cheese - inserting 1000 documents. first: Category:1986 establishments in Uganda and last: US biological warfare program +[2018-02-13T00:28:49.577] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:28:49.653] [INFO] cheese - inserting 1000 documents. first: File:Linger in shadows ps3 cover.png and last: Photogramme +[2018-02-13T00:28:49.686] [INFO] cheese - inserting 1000 documents. first: Kupriyanov Island and last: Renown (German Barque) +[2018-02-13T00:28:49.699] [INFO] cheese - inserting 1000 documents. first: Input/output processing and last: Happy Holiday(s) +[2018-02-13T00:28:49.706] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:28:49.766] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:28:49.802] [INFO] cheese - inserting 1000 documents. first: Stuart Uhlmann and last: Dyschirius kadleci +[2018-02-13T00:28:49.869] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:28:49.877] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:28:49.913] [INFO] cheese - inserting 1000 documents. first: Nyumba ya Sanaa and last: Portal:LGBT/Selected anniversaries/8 +[2018-02-13T00:28:49.950] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:28:50.116] [INFO] cheese - inserting 1000 documents. first: Hohes Venn – Eifel Nature Park and last: Mis Kan +[2018-02-13T00:28:50.134] [INFO] cheese - inserting 1000 documents. first: Methoxyethane and last: Ti Grace +[2018-02-13T00:28:50.153] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:28:50.165] [INFO] cheese - inserting 1000 documents. first: File:Xenosaga Episode II - Jenseits von Gut und Bose Coverart.png and last: 2006 Rhythmic Gymnastics European Championships +[2018-02-13T00:28:50.166] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:28:50.169] [INFO] cheese - inserting 1000 documents. first: Dyschirius ruthmuellerae and last: Hieracium absonum +[2018-02-13T00:28:50.212] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:28:50.249] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:28:50.259] [INFO] cheese - inserting 1000 documents. first: Raphael Semmes and last: Marc Rich +[2018-02-13T00:28:50.330] [INFO] cheese - inserting 1000 documents. first: Academic Association of Coimbra and last: David Sherman +[2018-02-13T00:28:50.337] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T00:28:50.345] [INFO] cheese - inserting 1000 documents. first: Diospyros whyteana and last: Juliet Doesn't Live Here Anymore +[2018-02-13T00:28:50.386] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:28:50.410] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:28:50.521] [INFO] cheese - inserting 1000 documents. first: Hieracium chapacanum and last: Hearn, John +[2018-02-13T00:28:50.556] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:28:50.571] [INFO] cheese - inserting 1000 documents. first: Pulad-e Qasemi and last: Category:2005 establishments in Armenia +[2018-02-13T00:28:50.638] [INFO] cheese - inserting 1000 documents. first: Émily de Châtelet and last: Revy +[2018-02-13T00:28:50.644] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:28:50.657] [INFO] cheese - inserting 1000 documents. first: Manoj Hemaratne and last: Thomassen +[2018-02-13T00:28:50.694] [INFO] cheese - inserting 1000 documents. first: North Dakota College Athletic Conference and last: Wikipedia:Articles for deletion/Criticism of Nortel +[2018-02-13T00:28:50.705] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:28:50.709] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:28:50.763] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:28:50.780] [INFO] cheese - inserting 1000 documents. first: Loricariichthys rostratus and last: +x (Martin Garrix album) +[2018-02-13T00:28:50.820] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:28:50.979] [INFO] cheese - inserting 1000 documents. first: Takehito and last: Hajji Khadem +[2018-02-13T00:28:51.003] [INFO] cheese - inserting 1000 documents. first: All Nippon Airways Flight 58 and last: Zettafarad +[2018-02-13T00:28:51.041] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:28:51.087] [INFO] cheese - inserting 1000 documents. first: Daniel Joseph Daly and last: 2009 Pickup Truck Racing season +[2018-02-13T00:28:51.104] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:28:51.165] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:28:51.213] [INFO] cheese - inserting 1000 documents. first: Hindle Wakes (1952 film) and last: Wikipedia:WikiProject Spam/LinkReports/rochesterway.com +[2018-02-13T00:28:51.214] [INFO] cheese - inserting 1000 documents. first: Riverside Historic District (Evansville, Indiana) and last: Template:Lago d'Idro +[2018-02-13T00:28:51.222] [INFO] cheese - inserting 1000 documents. first: Daniel Ziegler and last: Captain Cook +[2018-02-13T00:28:51.224] [INFO] cheese - inserting 1000 documents. first: Template:Women's Volleyball World Championship winners and last: Wikipedia:WikiProject Spam/LinkReports/thai-buddha-amulets.com +[2018-02-13T00:28:51.264] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:28:51.263] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:28:51.290] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:28:51.323] [INFO] cheese - batch complete in: 0.985 secs +[2018-02-13T00:28:51.420] [INFO] cheese - inserting 1000 documents. first: Mahreghan and last: Tombu Shomali +[2018-02-13T00:28:51.460] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:28:51.600] [INFO] cheese - inserting 1000 documents. first: Taney Place and last: Carbon-based fuel +[2018-02-13T00:28:51.611] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SPP and last: James Potter +[2018-02-13T00:28:51.656] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:28:51.672] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:28:51.695] [INFO] cheese - inserting 1000 documents. first: Category:13th century BC in India and last: The Stoom Stichting Nederland +[2018-02-13T00:28:51.722] [INFO] cheese - inserting 1000 documents. first: Margaret Wild and last: 2008 Bucharest Summit +[2018-02-13T00:28:51.745] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:28:51.789] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:28:51.793] [INFO] cheese - inserting 1000 documents. first: Category:21st-century establishments in Spain and last: Charles H. Williams +[2018-02-13T00:28:51.848] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:28:51.885] [INFO] cheese - inserting 1000 documents. first: Tombu Shemali and last: File:Alliance Review logo.png +[2018-02-13T00:28:51.933] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:28:52.095] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2008-11-27 and last: Wikipedia:WikiProject Spam/LinkReports/pontaven.org +[2018-02-13T00:28:52.135] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:28:52.180] [INFO] cheese - inserting 1000 documents. first: Category:2009 establishments in Montserrat and last: List of Women's National Basketball Association career steals leaders +[2018-02-13T00:28:52.192] [INFO] cheese - inserting 1000 documents. first: Joseph Ujlaki and last: Lex Poetelia Papiria +[2018-02-13T00:28:52.202] [INFO] cheese - inserting 1000 documents. first: Warren's, Vermont and last: Israel Israeli +[2018-02-13T00:28:52.214] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:28:52.222] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:28:52.234] [INFO] cheese - inserting 1000 documents. first: Psychological projection and last: Bai Chongxi +[2018-02-13T00:28:52.238] [INFO] cheese - inserting 1000 documents. first: Portal:Austria/Selected article/4 and last: Category:1964 establishments in Australia +[2018-02-13T00:28:52.239] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:28:52.283] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:28:52.290] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T00:28:52.325] [INFO] cheese - inserting 1000 documents. first: Elm Guest House claims and controversy and last: Tetsuharu +[2018-02-13T00:28:52.354] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:28:52.434] [INFO] cheese - inserting 1000 documents. first: File:BritanniaScan1.jpg and last: Template:1999 WNBA Western Conference standings +[2018-02-13T00:28:52.482] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:28:52.508] [INFO] cheese - inserting 1000 documents. first: Rabbit, Not Rabbot and last: Category:1st-century BC theatre +[2018-02-13T00:28:52.521] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chris Kangas and last: Freaky (song) +[2018-02-13T00:28:52.542] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:28:52.571] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:28:52.609] [INFO] cheese - inserting 1000 documents. first: Lauri Harjola and last: Cizeta-Moroder V16T +[2018-02-13T00:28:52.642] [INFO] cheese - inserting 1000 documents. first: Category:1963 establishments in Australia and last: Category:1840s conflicts +[2018-02-13T00:28:52.662] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:28:52.684] [INFO] cheese - inserting 1000 documents. first: All My Life (Irving Berlin song) and last: Category:1931 establishments in Montenegro +[2018-02-13T00:28:52.697] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:28:52.728] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:28:52.781] [INFO] cheese - inserting 1000 documents. first: John G. Simcoe and last: Basement apartment +[2018-02-13T00:28:52.835] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:28:52.884] [INFO] cheese - inserting 1000 documents. first: PA 44 and last: South Omaha Main Street Historic District +[2018-02-13T00:28:52.884] [INFO] cheese - inserting 1000 documents. first: Ground-based telescope and last: Ardozyga voluta +[2018-02-13T00:28:52.924] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:28:52.925] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:28:53.081] [INFO] cheese - inserting 1000 documents. first: Koushi Rikudou and last: Fort Duncan +[2018-02-13T00:28:53.098] [INFO] cheese - inserting 1000 documents. first: John rothchild and last: Order of Wen the Eternally Surprised +[2018-02-13T00:28:53.150] [INFO] cheese - inserting 1000 documents. first: Union Carbide and last: Floris V, Count of Holland +[2018-02-13T00:28:53.174] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:28:53.216] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:28:53.223] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Abby Martin and last: Marhun, Rudkhaneh +[2018-02-13T00:28:53.247] [INFO] cheese - inserting 1000 documents. first: Court-Martial Appeal Court and last: 69th Reconnaissance Group +[2018-02-13T00:28:53.279] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:28:53.291] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T00:28:53.303] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:28:53.358] [INFO] cheese - inserting 1000 documents. first: Ardozyga xanthocephala and last: Category:LGBT journalists from South Africa +[2018-02-13T00:28:53.367] [INFO] cheese - inserting 1000 documents. first: Boris Mikhailovich Kustodiev and last: Iur'yev-Polskiy District +[2018-02-13T00:28:53.405] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:28:53.413] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:28:53.586] [INFO] cheese - inserting 1000 documents. first: Port 25565 and last: File:H&a romances.jpg +[2018-02-13T00:28:53.627] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:28:53.649] [INFO] cheese - inserting 1000 documents. first: Category:Scottish fiddlers and last: Wikipedia:Articles for deletion/Girafa 2 +[2018-02-13T00:28:53.657] [INFO] cheese - inserting 1000 documents. first: Third Stanhope Ministry and last: Solidarity (social sciences) +[2018-02-13T00:28:53.684] [INFO] cheese - inserting 1000 documents. first: Marhun, Rudan and last: Template:Muhan Dojeon +[2018-02-13T00:28:53.691] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:28:53.708] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:28:53.739] [INFO] cheese - inserting 1000 documents. first: Leader (movie) and last: Chōjūgiga +[2018-02-13T00:28:53.739] [INFO] cheese - inserting 1000 documents. first: File:Genes Reunited.png and last: Seth C. Bradford +[2018-02-13T00:28:53.766] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:28:53.769] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:28:53.772] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:28:53.990] [INFO] cheese - inserting 1000 documents. first: Solidarity (social science) and last: Wikipedia:Articles for deletion/Ryebender +[2018-02-13T00:28:54.024] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:28:54.059] [INFO] cheese - inserting 1000 documents. first: Home and Away: Romances and last: Complete Segal space +[2018-02-13T00:28:54.062] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Max Perlman and last: File:American Atheist magazine cover.png +[2018-02-13T00:28:54.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rory Lindsay and last: Category:English cheeses +[2018-02-13T00:28:54.101] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:28:54.103] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:28:54.128] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:28:54.133] [INFO] cheese - inserting 1000 documents. first: Second Siege of Warsaw (1794) and last: The secret party +[2018-02-13T00:28:54.153] [INFO] cheese - inserting 1000 documents. first: Froggie went Courting and last: Alice Isen +[2018-02-13T00:28:54.172] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:28:54.192] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:28:54.215] [INFO] cheese - inserting 1000 documents. first: Neon lamp and last: New Jersey Route 179 +[2018-02-13T00:28:54.400] [INFO] cheese - inserting 1000 documents. first: HMP Kennet and last: Dallas Bradshaw +[2018-02-13T00:28:54.414] [INFO] cheese - batch complete in: 1.123 secs +[2018-02-13T00:28:54.416] [INFO] cheese - inserting 1000 documents. first: Category:1640s establishments in the Swedish colonial empire and last: Cyclone Raquel +[2018-02-13T00:28:54.456] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:28:54.459] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:28:54.537] [INFO] cheese - inserting 1000 documents. first: Category:Fairs in Germany and last: Fort Gary - Fort Edmonton Trail +[2018-02-13T00:28:54.587] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:28:54.601] [INFO] cheese - inserting 1000 documents. first: Category:Thessalian mythology and last: 1982 Fed Cup +[2018-02-13T00:28:54.613] [INFO] cheese - inserting 1000 documents. first: Category:Battleships by country and last: Anek Ngernmool +[2018-02-13T00:28:54.679] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:28:54.687] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:28:54.743] [INFO] cheese - inserting 1000 documents. first: Ensemble Theatre Cincinnati and last: James Carpenter (actor) +[2018-02-13T00:28:54.795] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:28:54.811] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Geology articles and last: Thomas Acquinas +[2018-02-13T00:28:54.856] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:28:54.948] [INFO] cheese - inserting 1000 documents. first: Minolta AF 35mm F1.4 G "New" and last: James Clifford Timlin +[2018-02-13T00:28:54.971] [INFO] cheese - inserting 1000 documents. first: Joseph Asher and last: Chaudas Aigas +[2018-02-13T00:28:54.986] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:28:55.008] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:28:55.008] [INFO] cheese - inserting 1000 documents. first: Here Comes the Night (disambiguation) and last: Who is Guru Maharaj Ji? +[2018-02-13T00:28:55.060] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:28:55.175] [INFO] cheese - inserting 1000 documents. first: Rainbow Room and last: Brizlincote +[2018-02-13T00:28:55.197] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Newtown, Connecticut and last: File:Luke Srama.jpg +[2018-02-13T00:28:55.227] [INFO] cheese - inserting 1000 documents. first: Category:Politicians of the Holy Roman Empire and last: The Misadventure of Zoo +[2018-02-13T00:28:55.227] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:28:55.239] [INFO] cheese - inserting 1000 documents. first: County Route 583 (New Jersey) and last: Ebla +[2018-02-13T00:28:55.242] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:28:55.275] [INFO] cheese - inserting 1000 documents. first: Vlatko Kostov and last: A. H. M. Azwer +[2018-02-13T00:28:55.274] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:28:55.305] [INFO] cheese - inserting 1000 documents. first: E-Wall and last: James Augustine Cunneen +[2018-02-13T00:28:55.306] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:28:55.314] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T00:28:55.355] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:28:55.358] [INFO] cheese - inserting 1000 documents. first: Tyler-Jacksonville, Texas CSA and last: File:False Mirrors cover.jpg +[2018-02-13T00:28:55.416] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:28:55.728] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/Foo Fighters discography and last: Chinatown, Atlanta +[2018-02-13T00:28:55.736] [INFO] cheese - inserting 1000 documents. first: Chen style and last: Template:Penthouse Pets of 2009 +[2018-02-13T00:28:55.744] [INFO] cheese - inserting 1000 documents. first: File:Aropa records logo.svg and last: Category:People from Picardy +[2018-02-13T00:28:55.748] [INFO] cheese - inserting 1000 documents. first: Draft:Black and White and Dead All Over (film) and last: The Association for Clinical Biochemistry and Laboratory Medicine +[2018-02-13T00:28:55.771] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:28:55.786] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:28:55.798] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:28:55.815] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:28:55.816] [INFO] cheese - inserting 1000 documents. first: Moor Fountain and last: Category:Paraguayan cuisine +[2018-02-13T00:28:55.866] [INFO] cheese - inserting 1000 documents. first: Petrivente and last: Vaseline (Brand) +[2018-02-13T00:28:55.909] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:28:55.911] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:28:56.084] [INFO] cheese - inserting 1000 documents. first: Category:Sports governing bodies in Australia by state or territory and last: Portal:Children's and young adult literature/Selected quote/Archive +[2018-02-13T00:28:56.115] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:28:56.132] [INFO] cheese - inserting 1000 documents. first: Calothamnus formosus and last: Dungariya +[2018-02-13T00:28:56.136] [INFO] cheese - inserting 1000 documents. first: Fiat A.22 R and last: Colton Smith +[2018-02-13T00:28:56.170] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:28:56.171] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:28:56.204] [INFO] cheese - inserting 1000 documents. first: Decimal digit and last: William J. Janklow +[2018-02-13T00:28:56.246] [INFO] cheese - inserting 1000 documents. first: Corrimal High School and last: 19th Light Dragoons +[2018-02-13T00:28:56.293] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:28:56.322] [INFO] cheese - inserting 1000 documents. first: Category:11Water members and last: Pisidium nitidum +[2018-02-13T00:28:56.326] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T00:28:56.371] [INFO] cheese - inserting 1000 documents. first: Portal:Children's and young adult literature/Selected quote/Layout and last: Kharan Rifles +[2018-02-13T00:28:56.380] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:28:56.392] [INFO] cheese - inserting 1000 documents. first: GIDS and last: The Lakes of Pontchartrain +[2018-02-13T00:28:56.414] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:28:56.456] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:28:56.494] [INFO] cheese - inserting 1000 documents. first: Template:Ethnic groups of Ghana and last: Eupogonius albipilis +[2018-02-13T00:28:56.533] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:28:56.589] [INFO] cheese - inserting 1000 documents. first: Category:Asian-American culture in New Jersey and last: Category:Locomotives of Mexico +[2018-02-13T00:28:56.638] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:28:56.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/uggboot-sale.com and last: Tar-mairon +[2018-02-13T00:28:56.710] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:28:56.732] [INFO] cheese - inserting 1000 documents. first: Vladimir Grigorevich Boltyansky and last: Anzali Mordab +[2018-02-13T00:28:56.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Setanta747/temptest and last: Bird-banding +[2018-02-13T00:28:56.792] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:28:56.847] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:28:56.861] [INFO] cheese - inserting 1000 documents. first: Sam West and last: Wikipedia:Articles for deletion/Fizzlethorpe Bristlebane +[2018-02-13T00:28:56.907] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:28:56.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nikil Murugan and last: Hoplorana fuscovestita +[2018-02-13T00:28:56.952] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:28:57.002] [INFO] cheese - inserting 1000 documents. first: Spit It Out (disambiguation) and last: Royal Photographic Society of Great Britain +[2018-02-13T00:28:57.051] [INFO] cheese - inserting 1000 documents. first: Alexandre Guedes and last: Daniel E. Bandmann +[2018-02-13T00:28:57.051] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:28:57.097] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:28:57.166] [INFO] cheese - inserting 1000 documents. first: L. Michael White and last: Josephus L. Mavretic +[2018-02-13T00:28:57.211] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:28:57.228] [INFO] cheese - inserting 1000 documents. first: Give it Up Or Turnit A Loose and last: Monteith (surname) +[2018-02-13T00:28:57.229] [INFO] cheese - inserting 1000 documents. first: Code name and last: Hugh McCalmont Cairns, 1st Earl of Cairns +[2018-02-13T00:28:57.280] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:28:57.301] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:28:57.363] [INFO] cheese - inserting 1000 documents. first: Gibberd and last: No Present Like Time +[2018-02-13T00:28:57.412] [INFO] cheese - inserting 1000 documents. first: Selective Service Administration and last: Wikipedia:Articles for deletion/List of programs broadcast by Game Show Network +[2018-02-13T00:28:57.417] [INFO] cheese - inserting 1000 documents. first: Hoplorana mussardi and last: John P. Hand +[2018-02-13T00:28:57.420] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Ritchie County, West Virginia and last: The Wedding at Cana (Veronese) +[2018-02-13T00:28:57.429] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:28:57.470] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:28:57.469] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:28:57.506] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:28:57.569] [INFO] cheese - inserting 1000 documents. first: Province Island and last: Austro-Hungarian Unterseeboot XXI +[2018-02-13T00:28:57.620] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:28:57.687] [INFO] cheese - inserting 1000 documents. first: Imp dehydrogenase and last: James Van Heusen +[2018-02-13T00:28:57.741] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:28:57.806] [INFO] cheese - inserting 1000 documents. first: Spiral (spaceplane) and last: Anthony Clement +[2018-02-13T00:28:57.872] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:28:57.880] [INFO] cheese - inserting 1000 documents. first: Santos (company) and last: Wikipedia:Articles for deletion/Quirkyalone (2nd nomination) +[2018-02-13T00:28:57.888] [INFO] cheese - inserting 1000 documents. first: J. Wesley Graham and last: Öchse +[2018-02-13T00:28:57.904] [INFO] cheese - inserting 1000 documents. first: Barrabus the Grey and last: American Samoan constitutional referendum, 2010 +[2018-02-13T00:28:57.928] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:28:57.936] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:28:57.952] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:28:57.966] [INFO] cheese - inserting 1000 documents. first: SM Unterseeboot 21 (Austria-Hungary) and last: Tujani Castle +[2018-02-13T00:28:58.010] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:28:58.178] [INFO] cheese - inserting 1000 documents. first: Eastleigh Borough Council election, 1998 and last: Lorie Skjerven Gildea +[2018-02-13T00:28:58.179] [INFO] cheese - inserting 1000 documents. first: Lord Cairns and last: Ellesmere Port +[2018-02-13T00:28:58.180] [INFO] cheese - inserting 1000 documents. first: Lubbock police department and last: Bruthers of Different Muthers +[2018-02-13T00:28:58.204] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:28:58.211] [INFO] cheese - inserting 1000 documents. first: Cassop-cum-quarrington and last: Sancai Tuhui +[2018-02-13T00:28:58.217] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:28:58.224] [INFO] cheese - inserting 1000 documents. first: 1310News and last: Astronomy of the Soviet Union +[2018-02-13T00:28:58.247] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T00:28:58.255] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:28:58.269] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:28:58.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topics/Petropavlovsk-class battleships and last: Lamina choroidocapillaris +[2018-02-13T00:28:58.333] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:28:58.342] [INFO] cheese - inserting 1000 documents. first: Numular dermatitis and last: Saint Paul Manor Apartments +[2018-02-13T00:28:58.391] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:28:58.452] [INFO] cheese - inserting 1000 documents. first: Linguals and last: Category:Lithuanian human rights activists +[2018-02-13T00:28:58.466] [INFO] cheese - inserting 1000 documents. first: Edouard Schmit and last: Russian philology +[2018-02-13T00:28:58.480] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:28:58.496] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:28:58.610] [INFO] cheese - inserting 1000 documents. first: Category:Arts centres in South Korea and last: Spes phthisica +[2018-02-13T00:28:58.657] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:28:58.661] [INFO] cheese - inserting 1000 documents. first: In Your Own Sweet Way and last: File:Ameno-by-dj-quicksilver.jpg +[2018-02-13T00:28:58.669] [INFO] cheese - inserting 1000 documents. first: File:KXAN-TV.png and last: Category:Imagination +[2018-02-13T00:28:58.716] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:28:58.720] [INFO] cheese - inserting 1000 documents. first: Atmospheres (unit) and last: Portal:Tropical cyclones/Featured article/Tropical Storm Zeta (2005) +[2018-02-13T00:28:58.723] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:28:58.746] [INFO] cheese - inserting 1000 documents. first: Soviet philology and last: Himno de Aguascalientes +[2018-02-13T00:28:58.768] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:28:58.771] [INFO] cheese - inserting 1000 documents. first: Marine Park Station and last: Gleichberge +[2018-02-13T00:28:58.794] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:28:58.838] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:28:59.146] [INFO] cheese - inserting 1000 documents. first: Pritilata Waddedar and last: Wikipedia:Articles for deletion/Kiara Belen +[2018-02-13T00:28:59.163] [INFO] cheese - inserting 1000 documents. first: File system in userspace and last: Monument (Ultravox album) +[2018-02-13T00:28:59.189] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:28:59.217] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:28:59.222] [INFO] cheese - inserting 1000 documents. first: Nisqually and last: Daito Bunka University +[2018-02-13T00:28:59.292] [INFO] cheese - inserting 1000 documents. first: Union of the Parliaments and last: Strathallan +[2018-02-13T00:28:59.296] [INFO] cheese - inserting 1000 documents. first: Anthem of Aguascalientes and last: Chop blocking +[2018-02-13T00:28:59.300] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T00:28:59.315] [INFO] cheese - inserting 1000 documents. first: Category:1989 in luge and last: Solomon Nunes Carvalho +[2018-02-13T00:28:59.315] [INFO] cheese - inserting 1000 documents. first: Portal:Tropical cyclones/Featured article/2008-53 and last: Template:Ladakh +[2018-02-13T00:28:59.365] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:28:59.360] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:28:59.394] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:28:59.419] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:28:59.608] [INFO] cheese - inserting 1000 documents. first: Kamyshlinski and last: Help:Reset password +[2018-02-13T00:28:59.628] [INFO] cheese - inserting 1000 documents. first: Süper star and last: Makryotika +[2018-02-13T00:28:59.642] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:28:59.681] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:28:59.755] [INFO] cheese - inserting 1000 documents. first: File:DK fredsprismedal.png and last: List of engineers of Russia +[2018-02-13T00:28:59.795] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:28:59.825] [INFO] cheese - inserting 1000 documents. first: Nicolas Hytner and last: Cybershot DSC-HX50 +[2018-02-13T00:28:59.840] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To know and last: Category:Warren G. Harding +[2018-02-13T00:28:59.866] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:28:59.879] [INFO] cheese - inserting 1000 documents. first: Charnley River and last: Portal:Wisconsin/DYK/6 +[2018-02-13T00:28:59.888] [INFO] cheese - inserting 1000 documents. first: Roxburgh Lake and last: Bisset, Edmonton +[2018-02-13T00:28:59.913] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:28:59.942] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:28:59.954] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:29:00.018] [INFO] cheese - inserting 1000 documents. first: Les Subsistances and last: Category:Protected areas of Rutland County, Vermont +[2018-02-13T00:29:00.020] [INFO] cheese - inserting 1000 documents. first: Raveh, Markazi and last: Nakasako +[2018-02-13T00:29:00.059] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:29:00.069] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:29:00.160] [INFO] cheese - inserting 1000 documents. first: Cybershot HX50 and last: Category:1229 in Asia +[2018-02-13T00:29:00.241] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:29:00.275] [INFO] cheese - inserting 1000 documents. first: Washington State Route 92 and last: Headies +[2018-02-13T00:29:00.295] [INFO] cheese - inserting 1000 documents. first: SAME (protocol) and last: Martin Short +[2018-02-13T00:29:00.317] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:29:00.360] [INFO] cheese - inserting 1000 documents. first: Paulinho (footballer, born August 1983) and last: Dooleys (Album) +[2018-02-13T00:29:00.374] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Rutland County, Vermont and last: Diving at the 2010 Asian Games +[2018-02-13T00:29:00.368] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T00:29:00.409] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:29:00.423] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:29:00.457] [INFO] cheese - inserting 1000 documents. first: Category:Equatoguinean judoka and last: Kinel-Cherkasski Raion +[2018-02-13T00:29:00.493] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:29:00.528] [INFO] cheese - inserting 1000 documents. first: Category:1230 in the Mongol Empire and last: Georgy Zhuravlev +[2018-02-13T00:29:00.542] [INFO] cheese - inserting 1000 documents. first: Pooler and last: Cathedral of Beauvais +[2018-02-13T00:29:00.563] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:29:00.606] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:29:00.674] [INFO] cheese - inserting 1000 documents. first: El Chupadero and last: List of titles and honours of Elizabeth II +[2018-02-13T00:29:00.722] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:29:00.743] [INFO] cheese - inserting 1000 documents. first: US Patent System and last: American Sean nos Dancing +[2018-02-13T00:29:00.765] [INFO] cheese - inserting 1000 documents. first: R3 (ring road) and last: FN Model 1906 +[2018-02-13T00:29:00.789] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:29:00.801] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:29:00.850] [INFO] cheese - inserting 1000 documents. first: Category:Television series set in the 1810s and last: Zinacatepec Municipality +[2018-02-13T00:29:00.869] [INFO] cheese - inserting 1000 documents. first: Shakardara and last: Dennis Ward +[2018-02-13T00:29:00.896] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:29:00.911] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:29:01.021] [INFO] cheese - inserting 1000 documents. first: Black Bear Road (album) and last: Aesculus californica +[2018-02-13T00:29:01.092] [INFO] cheese - inserting 1000 documents. first: Committee for the Preservation of the White House and last: Tilt up building +[2018-02-13T00:29:01.094] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:29:01.141] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:29:01.167] [INFO] cheese - inserting 1000 documents. first: Cristofano Malvezzi and last: Noether +[2018-02-13T00:29:01.186] [INFO] cheese - inserting 1000 documents. first: American Sean nós Dancing and last: Segunda Aficionados de la Comunidad de Madrid +[2018-02-13T00:29:01.223] [INFO] cheese - inserting 1000 documents. first: Template:Footer World Champions Team event and last: Pearce, Charles +[2018-02-13T00:29:01.227] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:29:01.249] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:29:01.262] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:29:01.266] [INFO] cheese - inserting 1000 documents. first: North American footbal and last: Booooom, Blast & Ruin +[2018-02-13T00:29:01.379] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:29:01.564] [INFO] cheese - inserting 1000 documents. first: Edward Rawson (politician) and last: Specific acoustic impedance +[2018-02-13T00:29:01.571] [INFO] cheese - inserting 1000 documents. first: Category:Films about widowhood and last: File:Winnie the War Winner.png +[2018-02-13T00:29:01.607] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:29:01.629] [INFO] cheese - inserting 1000 documents. first: Stockton-on-the-Forest and last: Category:Condiment stubs +[2018-02-13T00:29:01.631] [INFO] cheese - inserting 1000 documents. first: Pelham, Charles and last: Vincenzo Borghini +[2018-02-13T00:29:01.630] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:29:01.663] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:29:01.677] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:29:01.755] [INFO] cheese - inserting 1000 documents. first: Gabriel Iribarren and last: File:Kathymatteaalbum.jpg +[2018-02-13T00:29:01.794] [INFO] cheese - inserting 1000 documents. first: File:Williams-Happy-2.jpg and last: 2009 Knoxville Challenger +[2018-02-13T00:29:01.799] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:29:01.853] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:29:01.983] [INFO] cheese - inserting 1000 documents. first: ESJ Paris and last: Hipervitaminoz +[2018-02-13T00:29:02.012] [INFO] cheese - inserting 1000 documents. first: Vain elämää and last: DITTO +[2018-02-13T00:29:02.018] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:29:02.066] [INFO] cheese - inserting 1000 documents. first: Reactor design and last: File:Thopramkudy city.jpg +[2018-02-13T00:29:02.082] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:29:02.137] [INFO] cheese - inserting 1000 documents. first: Federal Charter of 1291 and last: Guy Steele, Jr. +[2018-02-13T00:29:02.144] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:29:02.192] [INFO] cheese - inserting 1000 documents. first: Godfrey public school and last: 1565 in India +[2018-02-13T00:29:02.218] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T00:29:02.257] [INFO] cheese - inserting 1000 documents. first: List of newspapers in New York in the 18th century and last: Richard Marshall (rugby league) +[2018-02-13T00:29:02.258] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:29:02.306] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:29:02.324] [INFO] cheese - inserting 1000 documents. first: Starmedia and last: Category:Villages in Pembrokeshire +[2018-02-13T00:29:02.396] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:29:02.473] [INFO] cheese - inserting 1000 documents. first: Indianola Historic District and last: Wikipedia:NSUMO +[2018-02-13T00:29:02.489] [INFO] cheese - inserting 1000 documents. first: 2007-08 UEFA Cup and last: Al Uqsur Governorate +[2018-02-13T00:29:02.541] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:29:02.556] [INFO] cheese - inserting 1000 documents. first: Henry Bentley (Canadian politician) and last: Kingdom of Tigré +[2018-02-13T00:29:02.564] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:29:02.612] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:29:02.653] [INFO] cheese - inserting 1000 documents. first: Template:DonleyCountyTX-geo-stub and last: Cuban bibles +[2018-02-13T00:29:02.693] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:29:02.800] [INFO] cheese - inserting 1000 documents. first: Category:1604 establishments in the Spanish Empire and last: Pao Hsi-jen +[2018-02-13T00:29:02.822] [INFO] cheese - inserting 1000 documents. first: Category:French emigrants to Niger and last: Kati Thanda–Lake Eyre +[2018-02-13T00:29:02.824] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T00:29:02.856] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:29:02.891] [INFO] cheese - inserting 1000 documents. first: Template:User dsb-1 and last: File:PythonProgLogo.png +[2018-02-13T00:29:02.910] [INFO] cheese - inserting 1000 documents. first: Category:People from Katwijk and last: 1983 Grand Prix (tennis) +[2018-02-13T00:29:02.925] [INFO] cheese - inserting 1000 documents. first: Jumbly and last: Maria d'Oro und Bello Blue +[2018-02-13T00:29:02.965] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:29:02.975] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:29:02.988] [INFO] cheese - inserting 1000 documents. first: Cuban bible and last: Template:Medkovets +[2018-02-13T00:29:03.031] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:29:03.040] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:29:03.131] [INFO] cheese - inserting 1000 documents. first: Category:1810s in the Spanish East Indies and last: Template:Pacific Cup tournament +[2018-02-13T00:29:03.144] [INFO] cheese - inserting 1000 documents. first: International date line and last: Wildcard DNS entry +[2018-02-13T00:29:03.172] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:29:03.215] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T00:29:03.273] [INFO] cheese - inserting 1000 documents. first: Robbie Brian Ftorek and last: Dopplereffekt +[2018-02-13T00:29:03.328] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:29:03.355] [INFO] cheese - inserting 1000 documents. first: Schweinfurth (disambiguation) and last: Wikipedia:Teahouse/Questions/Archive 04 +[2018-02-13T00:29:03.363] [INFO] cheese - inserting 1000 documents. first: Hamilton Municipal Election in 2010 and last: Template:Colombia football squad 1992 Summer Olympics +[2018-02-13T00:29:03.395] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:29:03.432] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:29:03.452] [INFO] cheese - inserting 1000 documents. first: Jose Francisco Bermudez and last: Metagalaxy +[2018-02-13T00:29:03.492] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:29:03.530] [INFO] cheese - inserting 1000 documents. first: Tai-bach and last: List of portable software +[2018-02-13T00:29:03.556] [INFO] cheese - inserting 1000 documents. first: Makkasan Railway Station and last: Fine-Pix HS20EXR +[2018-02-13T00:29:03.599] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:29:03.698] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:29:03.715] [INFO] cheese - inserting 1000 documents. first: Template:2007–08 in Italian football and last: Central Organization for Durable Peace +[2018-02-13T00:29:03.787] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:29:03.837] [INFO] cheese - inserting 1000 documents. first: Alex Caie and last: Sailing at the 2015 Pan American Games – J/24 +[2018-02-13T00:29:03.858] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:29:03.873] [INFO] cheese - inserting 1000 documents. first: Land of Immortals and last: Wunna Dam +[2018-02-13T00:29:03.874] [INFO] cheese - inserting 1000 documents. first: Category:West Bromwich Albion F.C. non-playing staff and last: K nut +[2018-02-13T00:29:03.911] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:29:03.923] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:29:03.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Spellage and last: Category:1952 disestablishments in China +[2018-02-13T00:29:04.004] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:29:04.171] [INFO] cheese - inserting 1000 documents. first: Malise Graham, 1st Earl of Menteith and last: Adur District Council election, 2002 +[2018-02-13T00:29:04.218] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:29:04.220] [INFO] cheese - inserting 1000 documents. first: TINLA and last: List of Aromanians +[2018-02-13T00:29:04.240] [INFO] cheese - inserting 1000 documents. first: Template:R caps and last: List of Russian ballerinas +[2018-02-13T00:29:04.271] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:29:04.281] [INFO] cheese - inserting 1000 documents. first: Huaibang Hu and last: Aga-Mirza-Obasi +[2018-02-13T00:29:04.293] [INFO] cheese - inserting 1000 documents. first: Sasanian Persia and last: Families with Children from China +[2018-02-13T00:29:04.300] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T00:29:04.315] [INFO] cheese - inserting 1000 documents. first: Dinajpur District (disambiguation) and last: Centre-half back +[2018-02-13T00:29:04.319] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:29:04.338] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:29:04.380] [INFO] cheese - inserting 1000 documents. first: Category:2004 in South American sport and last: Sayaka Yamamoto +[2018-02-13T00:29:04.392] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:29:04.444] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:29:04.500] [INFO] cheese - inserting 1000 documents. first: Russian ballerinas and last: Category:Oklahoma elections, 1992 +[2018-02-13T00:29:04.539] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:29:04.595] [INFO] cheese - inserting 1000 documents. first: Italian Fourth Army and last: Aurangabad central jail +[2018-02-13T00:29:04.625] [INFO] cheese - inserting 1000 documents. first: Venus DeMilo and last: Template:Cities of Pima County, Arizona +[2018-02-13T00:29:04.628] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T00:29:04.678] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:29:04.690] [INFO] cheese - inserting 1000 documents. first: Friends of Coyle Creek and last: John A. McDougall +[2018-02-13T00:29:04.747] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:29:04.823] [INFO] cheese - inserting 1000 documents. first: Small-stuff and last: Vishera River, Perm Oblast +[2018-02-13T00:29:04.823] [INFO] cheese - inserting 1000 documents. first: George F. Roesch and last: Category:1998 in Central American sport +[2018-02-13T00:29:04.985] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:29:05.028] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:29:05.122] [INFO] cheese - inserting 1000 documents. first: Roderick Moore (disambiguation) and last: River of Tuoni (song) +[2018-02-13T00:29:05.194] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:29:05.252] [INFO] cheese - inserting 1000 documents. first: Category:Jandaia do Sul and last: Category:1922 Missouri Valley Intercollegiate Athletic Association football season +[2018-02-13T00:29:05.266] [INFO] cheese - inserting 1000 documents. first: GIVE Center West and last: Diether Lukesch +[2018-02-13T00:29:05.299] [INFO] cheese - inserting 1000 documents. first: Phoenix FM (Central Victoria) and last: Kolibri Choir +[2018-02-13T00:29:05.314] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:29:05.318] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:29:05.376] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:29:05.394] [INFO] cheese - inserting 1000 documents. first: Category:Culture by city in Norway and last: Yehuda Alcalay +[2018-02-13T00:29:05.446] [INFO] cheese - inserting 1000 documents. first: Paul van Buitenen and last: Treaty of London (1839) +[2018-02-13T00:29:05.451] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:29:05.516] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T00:29:05.537] [INFO] cheese - inserting 1000 documents. first: Alena Vrzáňová and last: Jefferson Barracks +[2018-02-13T00:29:05.561] [INFO] cheese - inserting 1000 documents. first: Martyno Mažvydo mokykla and last: Category:Officers of the Legion of Merit +[2018-02-13T00:29:05.587] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:29:05.609] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:29:05.769] [INFO] cheese - inserting 1000 documents. first: Category:Transport in the Ionian Islands and last: Argentina Bangladesh relations +[2018-02-13T00:29:05.795] [INFO] cheese - inserting 1000 documents. first: Joseph Taitatzak and last: Category:Israeli Muay Thai practitioners +[2018-02-13T00:29:05.808] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:29:05.826] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:29:05.828] [INFO] cheese - inserting 1000 documents. first: Buffy the Vampire Killer and last: Werner Reinhart +[2018-02-13T00:29:05.888] [INFO] cheese - inserting 1000 documents. first: David Friedrichsfeld and last: Digital Natives +[2018-02-13T00:29:05.894] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:29:05.938] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:29:05.951] [INFO] cheese - inserting 1000 documents. first: Cape Boggs and last: This Is Bat Country +[2018-02-13T00:29:05.991] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:29:06.061] [INFO] cheese - inserting 1000 documents. first: Cruise (automotive) and last: File:MaxCarlish2.jpg +[2018-02-13T00:29:06.121] [INFO] cheese - inserting 1000 documents. first: Bangladesh-Argentina relations and last: Irene Chepet Cheptai +[2018-02-13T00:29:06.147] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:29:06.149] [INFO] cheese - inserting 1000 documents. first: Microsoft-Novell deal and last: St Mary's University College Twickenham +[2018-02-13T00:29:06.199] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:29:06.207] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:29:06.321] [INFO] cheese - inserting 1000 documents. first: Mon Mane Na (2008 film) and last: West Germany women's national field hockey team +[2018-02-13T00:29:06.339] [INFO] cheese - inserting 1000 documents. first: No 241 Operational Conversion Unit RAF and last: Annie Meinertzhagen +[2018-02-13T00:29:06.339] [INFO] cheese - inserting 1000 documents. first: Antoine Louis Camille Lemonnier and last: Myrsini +[2018-02-13T00:29:06.372] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:29:06.377] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:29:06.406] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T00:29:06.521] [INFO] cheese - inserting 1000 documents. first: Parent's Music Resource center and last: Crab pan +[2018-02-13T00:29:06.529] [INFO] cheese - inserting 1000 documents. first: Jafarabad, Khomeyn and last: Sexxx +[2018-02-13T00:29:06.575] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:29:06.578] [INFO] cheese - inserting 1000 documents. first: Category:People from Balrampur and last: Macedon (satrapy) +[2018-02-13T00:29:06.583] [INFO] cheese - inserting 1000 documents. first: Irine Chepet Cheptai and last: 2015 BBL Champions Cup +[2018-02-13T00:29:06.582] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:29:06.632] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:29:06.652] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:29:06.722] [INFO] cheese - inserting 1000 documents. first: Naomi Ichihara Roekkum and last: Register in bankruptcy +[2018-02-13T00:29:06.725] [INFO] cheese - inserting 1000 documents. first: On Reflection and last: File:Blitzkrieg book cover.jpg +[2018-02-13T00:29:06.755] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:29:06.763] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:29:06.941] [INFO] cheese - inserting 1000 documents. first: The Lute Player (Orazio Gentileschi) and last: Wikipedia:Reference desk/Archives/Language/2015 July 27 +[2018-02-13T00:29:06.983] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:29:07.042] [INFO] cheese - inserting 1000 documents. first: Glen Oak High School and last: Social grade +[2018-02-13T00:29:07.045] [INFO] cheese - inserting 1000 documents. first: Carter and Burgess Plaza and last: Wikipedia:Peer review/Percy Fender/archive1 +[2018-02-13T00:29:07.083] [INFO] cheese - inserting 1000 documents. first: USS Tananek Bay (CVE-88) and last: Gongo Lutete +[2018-02-13T00:29:07.099] [INFO] cheese - inserting 1000 documents. first: Category:Dams in England and last: Kiyangkongrejo +[2018-02-13T00:29:07.098] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:29:07.141] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:29:07.181] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:29:07.242] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:29:07.256] [INFO] cheese - inserting 1000 documents. first: Caribe Hilton Hotel and last: Prometheus Bound +[2018-02-13T00:29:07.443] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T00:29:07.582] [INFO] cheese - inserting 1000 documents. first: 1965 Army Cadets football team and last: Template:Wiktla +[2018-02-13T00:29:07.671] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:29:07.699] [INFO] cheese - inserting 1000 documents. first: Online Nation (TV series) and last: Category:Algerian diplomats +[2018-02-13T00:29:07.732] [INFO] cheese - inserting 1000 documents. first: Worawut Srisupha and last: WarZ +[2018-02-13T00:29:07.739] [INFO] cheese - inserting 1000 documents. first: Leftright politics and last: Jan G.F. Veldhuis +[2018-02-13T00:29:07.749] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Danjin Spear and last: Clement Spiette +[2018-02-13T00:29:07.769] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:29:07.774] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T00:29:07.780] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:29:07.798] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:29:07.833] [INFO] cheese - inserting 1000 documents. first: Scott Hiley and last: Synethesia +[2018-02-13T00:29:07.887] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:29:08.066] [INFO] cheese - inserting 1000 documents. first: Template:Wiktmy and last: Brian Lacey (Gaelic footballer) +[2018-02-13T00:29:08.118] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:29:08.131] [INFO] cheese - inserting 1000 documents. first: File:Out of the Blue (Blue Mitchell album).jpg and last: USI Holdings Limited +[2018-02-13T00:29:08.167] [INFO] cheese - inserting 1000 documents. first: Armand Pagnoulle and last: Testudinaceae +[2018-02-13T00:29:08.185] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:29:08.227] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:29:08.288] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2012 December 28 and last: In-game currency +[2018-02-13T00:29:08.343] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:29:08.383] [INFO] cheese - inserting 1000 documents. first: 22nd SS Volunteer Cavalry Division Division Maria Theresa and last: National Wildlife Refuge System +[2018-02-13T00:29:08.385] [INFO] cheese - inserting 1000 documents. first: Category:Notosuchians and last: Category:Music in Rotterdam +[2018-02-13T00:29:08.392] [INFO] cheese - inserting 1000 documents. first: Human Powered Aircraft Group and last: DE-35 +[2018-02-13T00:29:08.411] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:29:08.443] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:29:08.483] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:29:08.567] [INFO] cheese - inserting 1000 documents. first: Laurent Monsengwo Pasinya and last: Autograph 2010(Bengali) +[2018-02-13T00:29:08.596] [INFO] cheese - inserting 1000 documents. first: King Xiang of Zhou and last: Dwarf throw +[2018-02-13T00:29:08.610] [INFO] cheese - inserting 1000 documents. first: File:Allan Holdsworth - 1987 - Sand.jpg and last: R63 (Western Cape) +[2018-02-13T00:29:08.615] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:29:08.676] [INFO] cheese - batch complete in: 1.233 secs +[2018-02-13T00:29:08.676] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:29:08.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Yoko Ono articles by quality statistics and last: Category:Athletes from Gansu +[2018-02-13T00:29:08.767] [INFO] cheese - inserting 1000 documents. first: Debinha and last: Octade (unit) +[2018-02-13T00:29:08.788] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:29:08.819] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:29:08.846] [INFO] cheese - inserting 1000 documents. first: Bill Lawrence (TV producer) and last: Chirbury and Brompton +[2018-02-13T00:29:08.882] [INFO] cheese - inserting 1000 documents. first: Daniel McMann and last: Abi-hime +[2018-02-13T00:29:08.887] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:29:08.923] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:29:08.960] [INFO] cheese - inserting 1000 documents. first: Giovanni Conterno and last: Ibi (tribe) +[2018-02-13T00:29:09.013] [INFO] cheese - inserting 1000 documents. first: Erythromycin Ethylsuccinate and last: Wikipedia:Articles for deletion/Love Makes the World Go 'Round (1986 song) +[2018-02-13T00:29:09.021] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:29:09.084] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:29:09.118] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2012 December 29 and last: List of archdeacons of Bromley +[2018-02-13T00:29:09.168] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:29:09.221] [INFO] cheese - inserting 1000 documents. first: Octads (computing) and last: Ergatis (Gelechia) staticella +[2018-02-13T00:29:09.265] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:29:09.333] [INFO] cheese - inserting 1000 documents. first: Dogs damour and last: 9903 Leonhardt +[2018-02-13T00:29:09.377] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:29:09.404] [INFO] cheese - inserting 1000 documents. first: Glottic and last: Woodlouse spider +[2018-02-13T00:29:09.473] [INFO] cheese - inserting 1000 documents. first: Daily Mail (Pakistan) and last: Golden Globe Awards 2008 +[2018-02-13T00:29:09.491] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:29:09.609] [INFO] cheese - inserting 1000 documents. first: Eufaula tribe and last: Russian-speaking Ukraine +[2018-02-13T00:29:09.654] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:29:09.715] [INFO] cheese - inserting 1000 documents. first: Aunt Sally (film) and last: Administrative regions of the Federal District +[2018-02-13T00:29:09.718] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:29:09.757] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:29:09.779] [INFO] cheese - inserting 1000 documents. first: Someone like You (Arthur Louis song) and last: Carpenter, Christopher +[2018-02-13T00:29:09.822] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:29:09.863] [INFO] cheese - inserting 1000 documents. first: Aleksandr Kuprin and last: Lamar Hunt +[2018-02-13T00:29:09.909] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Superman and last: Portal:Catholicism/Patron of the Day Archive/May 24 2007 +[2018-02-13T00:29:09.938] [INFO] cheese - batch complete in: 1.262 secs +[2018-02-13T00:29:09.952] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:29:10.030] [INFO] cheese - inserting 1000 documents. first: Paper Planes – Homeland Security Remixes EP and last: Medicare (for all) +[2018-02-13T00:29:10.085] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:29:10.111] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 582 and last: Ion Dissonance +[2018-02-13T00:29:10.116] [INFO] cheese - inserting 1000 documents. first: 陇南市 and last: Otto Heidkämper +[2018-02-13T00:29:10.156] [INFO] cheese - inserting 1000 documents. first: CSAR Class E 4-8-2T and last: Sen. Dean Heller +[2018-02-13T00:29:10.156] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:29:10.161] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:29:10.209] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:29:10.217] [INFO] cheese - inserting 1000 documents. first: Cole, Christopher and last: Category:Trees of the Arabian Peninsula +[2018-02-13T00:29:10.276] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:29:10.384] [INFO] cheese - inserting 1000 documents. first: Ana Margarita Martínez-Casado and last: ISRO Satellite centre +[2018-02-13T00:29:10.425] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:29:10.438] [INFO] cheese - inserting 1000 documents. first: Senator Dean Heller and last: White-tailed Mountain Vole +[2018-02-13T00:29:10.469] [INFO] cheese - inserting 1000 documents. first: British Columbia Colleges' Athletic Association and last: Horikawa River +[2018-02-13T00:29:10.489] [INFO] cheese - inserting 1000 documents. first: Bakhtar News Agency and last: Coppermine Expedition +[2018-02-13T00:29:10.501] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:29:10.517] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:29:10.549] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:29:10.599] [INFO] cheese - inserting 1000 documents. first: Père David's mole and last: Wikipedia:Articles for deletion/Jewish-Arab conflict +[2018-02-13T00:29:10.649] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:29:10.813] [INFO] cheese - inserting 1000 documents. first: Nine Stones of Altarnun and last: Template:Did you know nominations/Jeanne Lampl-de Groot +[2018-02-13T00:29:10.871] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:29:10.943] [INFO] cheese - inserting 1000 documents. first: Aplonay and last: Kevin Brown (pitcher) +[2018-02-13T00:29:10.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Asthma/archive3 and last: Hindasgeri +[2018-02-13T00:29:10.954] [INFO] cheese - inserting 1000 documents. first: Travel visa and last: Isabel J. Cox +[2018-02-13T00:29:10.972] [INFO] cheese - inserting 1000 documents. first: Category:1937 in South Dakota and last: Anishinabek Education Institute +[2018-02-13T00:29:10.981] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Holly and last: File:Flash Blaine.png +[2018-02-13T00:29:10.990] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:29:10.993] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:29:11.022] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:29:11.028] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T00:29:11.054] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:29:11.168] [INFO] cheese - inserting 1000 documents. first: Aquatic biomonitoring and last: John O'Rourke +[2018-02-13T00:29:11.201] [INFO] cheese - inserting 1000 documents. first: Coconympha iriarcha and last: Neotelphusa phaeomacula +[2018-02-13T00:29:11.215] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:29:11.274] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:29:11.302] [INFO] cheese - inserting 1000 documents. first: Hirebudihal and last: Wikipedia:WikiProject Films/Outreach/September 2007 Newsletter +[2018-02-13T00:29:11.327] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:29:11.380] [INFO] cheese - inserting 1000 documents. first: Saythu Khocha and last: Portal:Physics/2013 Selected articles +[2018-02-13T00:29:11.405] [INFO] cheese - inserting 1000 documents. first: Hermann Friedrich Waesemann and last: Metropolitan, Carriage, Wagon and Finance +[2018-02-13T00:29:11.419] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:29:11.456] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:29:11.482] [INFO] cheese - inserting 1000 documents. first: Pegram v. Herdrich and last: Jairou +[2018-02-13T00:29:11.536] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:29:11.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Films/Outreach/September 2008 Newsletter and last: Category:Parks in Huntingdon County, Pennsylvania +[2018-02-13T00:29:11.586] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T00:29:11.634] [INFO] cheese - inserting 1000 documents. first: Category:Nations at sport events in 1970 and last: My Lonely Me +[2018-02-13T00:29:11.647] [INFO] cheese - inserting 1000 documents. first: Hesbaye and last: WMGT +[2018-02-13T00:29:11.689] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:29:11.723] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:29:11.735] [INFO] cheese - inserting 1000 documents. first: Velvet Climbing Mouse and last: Amity University Rajasthan +[2018-02-13T00:29:11.779] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:29:12.010] [INFO] cheese - inserting 1000 documents. first: Seventh-day Adventists and the Sabbath and last: File:SuperFresh-oldlogo.png +[2018-02-13T00:29:12.086] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:29:12.091] [INFO] cheese - inserting 1000 documents. first: N Krishnan and last: LSP Museum +[2018-02-13T00:29:12.152] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:29:12.161] [INFO] cheese - inserting 1000 documents. first: The Paradise of Bachelors and the Tartarus of Maids and last: Nick jr. UK +[2018-02-13T00:29:12.167] [INFO] cheese - inserting 1000 documents. first: Frederick Church and last: 2000 Summer Paralympics +[2018-02-13T00:29:12.203] [INFO] cheese - inserting 1000 documents. first: Dramatic re-enactment and last: R.W. Macan +[2018-02-13T00:29:12.208] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:29:12.245] [INFO] cheese - batch complete in: 1.217 secs +[2018-02-13T00:29:12.243] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:29:12.312] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg University and last: Flag of mexico +[2018-02-13T00:29:12.314] [INFO] cheese - inserting 1000 documents. first: Zoned binary-coded decimal and last: Category:20th century in British India +[2018-02-13T00:29:12.365] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:29:12.381] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:29:12.557] [INFO] cheese - inserting 1000 documents. first: Louisiana State Penitentiary Museum and last: Wikipedia:Articles for deletion/Martha Lipton +[2018-02-13T00:29:12.573] [INFO] cheese - inserting 1000 documents. first: Greenbriar and last: WGZR-FM +[2018-02-13T00:29:12.635] [INFO] cheese - inserting 1000 documents. first: Marie Solange Pagonendji-Ndakala and last: Snapbacks & Tattoos +[2018-02-13T00:29:12.631] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:29:12.671] [INFO] cheese - inserting 1000 documents. first: Tony Moses and last: Wikipedia:Reference desk/Archives/Science/2008 December 4 +[2018-02-13T00:29:12.630] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:29:12.716] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:29:12.875] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:29:12.907] [INFO] cheese - inserting 1000 documents. first: List of Digambar Jain ascetics and last: Category:Buildings and structures in Panamá Province +[2018-02-13T00:29:12.960] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:29:13.067] [INFO] cheese - inserting 1000 documents. first: Uncle toms cabin and last: Infinity Radio +[2018-02-13T00:29:13.151] [INFO] cheese - inserting 1000 documents. first: Shabbat HaGadol and last: Banded tubes +[2018-02-13T00:29:13.155] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:29:13.181] [INFO] cheese - inserting 1000 documents. first: British Continental Airways and last: 335 U.S. 464 +[2018-02-13T00:29:13.201] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:29:13.259] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:29:13.307] [INFO] cheese - inserting 1000 documents. first: Mauger (French name) and last: Dabbing (motorcycling) +[2018-02-13T00:29:13.369] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:29:13.396] [INFO] cheese - inserting 1000 documents. first: File:Lines - The Beach Boys.ogg and last: Policewoman (disambiguation) +[2018-02-13T00:29:13.438] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:29:13.485] [INFO] cheese - inserting 1000 documents. first: List of content management systems and last: Goldman Sachs +[2018-02-13T00:29:13.566] [INFO] cheese - inserting 1000 documents. first: Samir Mashharawi and last: Zacharias Paulusz +[2018-02-13T00:29:13.600] [INFO] cheese - batch complete in: 1.355 secs +[2018-02-13T00:29:13.617] [INFO] cheese - inserting 1000 documents. first: Luigi Agricola and last: White-tailed Olalla Rat +[2018-02-13T00:29:13.620] [INFO] cheese - inserting 1000 documents. first: Adèle Isaac and last: Thomas Clarke (disambiguation) +[2018-02-13T00:29:13.641] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:29:13.671] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:29:13.696] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:29:13.725] [INFO] cheese - inserting 1000 documents. first: Holor and last: Bronwyn Drainie +[2018-02-13T00:29:13.773] [INFO] cheese - inserting 1000 documents. first: Ace Metrix and last: Longbottom, Arthur +[2018-02-13T00:29:13.781] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:29:13.825] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:29:13.901] [INFO] cheese - inserting 1000 documents. first: William Peel and last: Funf +[2018-02-13T00:29:13.951] [INFO] cheese - inserting 1000 documents. first: Argentine Brown Bat and last: Portal:Trains/Selected article/Week 43, 2013 +[2018-02-13T00:29:13.957] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:29:13.994] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:29:14.071] [INFO] cheese - inserting 1000 documents. first: Billy Ruane (music promoter) and last: Dukes of Épernon +[2018-02-13T00:29:14.152] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:29:14.162] [INFO] cheese - inserting 1000 documents. first: Category:Skyscrapers in El Salvador and last: Frank Hannyngton +[2018-02-13T00:29:14.224] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:29:14.267] [INFO] cheese - inserting 1000 documents. first: Lynch, Arthur and last: Ariyapedatha Rahasyam +[2018-02-13T00:29:14.315] [INFO] cheese - inserting 1000 documents. first: Filippo di Ser Brunellesco Brunelleschi and last: Price scissors +[2018-02-13T00:29:14.322] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:29:14.385] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Selected article/Week 44, 2013 and last: Template:2012–13 CCHA standings (men)/doc +[2018-02-13T00:29:14.389] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:29:14.424] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:29:14.426] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Saskatoon and last: List of sovereign states in 1909 +[2018-02-13T00:29:14.491] [INFO] cheese - inserting 1000 documents. first: Counts of Périgord and last: Baava (2010 film) +[2018-02-13T00:29:14.506] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:29:14.534] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:29:14.654] [INFO] cheese - inserting 1000 documents. first: Highland Park distillery and last: Haimirich +[2018-02-13T00:29:14.685] [INFO] cheese - inserting 1000 documents. first: Bachelor of Computer Applications and last: Opeas pumilum +[2018-02-13T00:29:14.714] [INFO] cheese - batch complete in: 1.114 secs +[2018-02-13T00:29:14.751] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:29:14.754] [INFO] cheese - inserting 1000 documents. first: Nirthashala and last: Death and taxes (disambiguation) +[2018-02-13T00:29:14.826] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:29:14.941] [INFO] cheese - inserting 1000 documents. first: United States Post Office and Courthouse (Eureka, California) and last: Melaka State Secretariat Building +[2018-02-13T00:29:14.965] [INFO] cheese - inserting 1000 documents. first: Lajos Halász and last: Girò di Cagliari +[2018-02-13T00:29:14.985] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:29:15.012] [INFO] cheese - inserting 1000 documents. first: Audrey A. McNiff and last: Lebo M. +[2018-02-13T00:29:15.013] [INFO] cheese - inserting 1000 documents. first: Lawh-i-Tibb and last: Paul Jans +[2018-02-13T00:29:15.030] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:29:15.140] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:29:15.150] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:29:15.307] [INFO] cheese - inserting 1000 documents. first: Leo Morrissey and last: General Von Klinkerhoffen +[2018-02-13T00:29:15.350] [INFO] cheese - inserting 1000 documents. first: Nikolay (Yarushevich) and last: Category:1704 in Gibraltar +[2018-02-13T00:29:15.363] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:29:15.396] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:29:15.568] [INFO] cheese - inserting 1000 documents. first: Category:Greek-American culture in Maryland and last: CONNECT (Alfa Remeo) +[2018-02-13T00:29:15.589] [INFO] cheese - inserting 1000 documents. first: Category:1460s conflicts and last: Wapoga River +[2018-02-13T00:29:15.658] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:29:15.694] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:29:15.775] [INFO] cheese - inserting 1000 documents. first: File:HarrietHarman.jpg and last: Ahlul-Kitaab +[2018-02-13T00:29:15.853] [INFO] cheese - inserting 1000 documents. first: File:Mexico City Polution.jpg and last: Szalaszend +[2018-02-13T00:29:15.861] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:29:15.895] [INFO] cheese - inserting 1000 documents. first: Portal:Serer religion/Selected biography/1 and last: File:Dead & Company logo.png +[2018-02-13T00:29:15.902] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:29:15.944] [INFO] cheese - inserting 1000 documents. first: Deputy-Governors and last: Marsh Gentian +[2018-02-13T00:29:15.948] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:29:15.968] [INFO] cheese - inserting 1000 documents. first: California Proposition 54 (2003) and last: Bedřich Hrozný +[2018-02-13T00:29:15.998] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:29:16.045] [INFO] cheese - batch complete in: 1.326 secs +[2018-02-13T00:29:16.085] [INFO] cheese - inserting 1000 documents. first: Enrique Echeverría and last: Piplod, Surat +[2018-02-13T00:29:16.119] [INFO] cheese - inserting 1000 documents. first: List of National Basketball Association players with 40 or more rebounds in a game and last: 李小鹏 +[2018-02-13T00:29:16.141] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:29:16.174] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:29:16.311] [INFO] cheese - inserting 1000 documents. first: Padariya Jat and last: Art (album) +[2018-02-13T00:29:16.363] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:29:16.391] [INFO] cheese - inserting 1000 documents. first: Chalk Mountains (Colorado) and last: Car company bailout +[2018-02-13T00:29:16.399] [INFO] cheese - inserting 1000 documents. first: Ambiyaa and last: Dr. Abby Lockhart +[2018-02-13T00:29:16.443] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:29:16.450] [INFO] cheese - inserting 1000 documents. first: HgcE RNA and last: Šuta +[2018-02-13T00:29:16.476] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:29:16.533] [INFO] cheese - inserting 1000 documents. first: Category:Nuova Cosenza Calcio players and last: April 1920 +[2018-02-13T00:29:16.551] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:29:16.566] [INFO] cheese - inserting 1000 documents. first: Black-banded sea kraits and last: Joan, Heiress of Navarre +[2018-02-13T00:29:16.612] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:29:16.619] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:29:16.754] [INFO] cheese - inserting 1000 documents. first: Paraspori and last: File:Scorpion's Revenge DVD.jpg +[2018-02-13T00:29:16.813] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:29:16.876] [INFO] cheese - inserting 1000 documents. first: ISO 3166-2:GB-BKM and last: 1990 Philadelphia Wings +[2018-02-13T00:29:16.917] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:29:16.955] [INFO] cheese - inserting 1000 documents. first: Megami Tensei Gaiden: Last Bible II and last: United States Department of Justice Tax Division +[2018-02-13T00:29:16.955] [INFO] cheese - inserting 1000 documents. first: Belgrade, Serbia and last: Sir Richard Squires +[2018-02-13T00:29:17.019] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:29:17.049] [INFO] cheese - inserting 1000 documents. first: May 1920 and last: Norton Street Congregational Church +[2018-02-13T00:29:17.057] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:29:17.080] [INFO] cheese - inserting 1000 documents. first: Palaeocyanus and last: Earth Orbiter 1 +[2018-02-13T00:29:17.083] [INFO] cheese - inserting 1000 documents. first: Corazón Aymara and last: Maud of Huntingdon +[2018-02-13T00:29:17.101] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:29:17.150] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:29:17.160] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:29:17.285] [INFO] cheese - inserting 1000 documents. first: Kazuhiro Mori (cyclist) and last: Sodomites (song) +[2018-02-13T00:29:17.331] [INFO] cheese - inserting 1000 documents. first: Oxycirrhites typus and last: Man Who Haunted Himself +[2018-02-13T00:29:17.344] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:29:17.444] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:29:17.523] [INFO] cheese - inserting 1000 documents. first: Parinacochas Lake and last: Wikipedia:Requests for feedback/2010 November 3 +[2018-02-13T00:29:17.568] [INFO] cheese - inserting 1000 documents. first: The Blue Gardenia (1953 film) and last: File:Liveinchicago.jpg +[2018-02-13T00:29:17.572] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:29:17.623] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:29:17.626] [INFO] cheese - inserting 1000 documents. first: Laguna Parinacota and last: Template:POTD/2013-01-09 +[2018-02-13T00:29:17.656] [INFO] cheese - inserting 1000 documents. first: Nathaniel Dusk and last: Joshua W. Groban +[2018-02-13T00:29:17.693] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:29:17.730] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:29:17.811] [INFO] cheese - inserting 1000 documents. first: .DZ and last: National Park Association +[2018-02-13T00:29:17.812] [INFO] cheese - inserting 1000 documents. first: Kevin Fogg and last: 2014 Cambodian League +[2018-02-13T00:29:17.847] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:29:17.850] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:29:17.925] [INFO] cheese - inserting 1000 documents. first: Template:Infobox motor race and last: Kurath, Hans +[2018-02-13T00:29:17.939] [INFO] cheese - inserting 1000 documents. first: Three Jewels Temples and last: Cellulase +[2018-02-13T00:29:17.957] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:29:17.985] [INFO] cheese - inserting 1000 documents. first: YP-214 and last: Gbaya People +[2018-02-13T00:29:18.028] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T00:29:18.047] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:29:18.154] [INFO] cheese - inserting 1000 documents. first: Category:President of the United States navigational boxes and last: Wikipedia:Article grades +[2018-02-13T00:29:18.209] [INFO] cheese - inserting 1000 documents. first: Craigie High School and last: Uruguay at the 1924 Summer Olympics +[2018-02-13T00:29:18.213] [INFO] cheese - inserting 1000 documents. first: Colin Langley and last: Gérard Pettipas +[2018-02-13T00:29:18.234] [INFO] cheese - inserting 1000 documents. first: Thazhakara (Village) and last: Gol Transportes Aéreos S/A +[2018-02-13T00:29:18.241] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:29:18.274] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:29:18.282] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:29:18.317] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:29:18.373] [INFO] cheese - inserting 1000 documents. first: Mohd Noor Ali and last: FM 2917 +[2018-02-13T00:29:18.405] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:29:18.427] [INFO] cheese - inserting 1000 documents. first: Pseudocercospora theae and last: Category:Abenaki communities +[2018-02-13T00:29:18.482] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:29:18.604] [INFO] cheese - inserting 1000 documents. first: Jason Mitchell (actor) and last: Template:France diplomatic missions +[2018-02-13T00:29:18.625] [INFO] cheese - inserting 1000 documents. first: File:NAAFS logo.png and last: Western Chorus Frog +[2018-02-13T00:29:18.655] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:29:18.687] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:29:18.766] [INFO] cheese - inserting 1000 documents. first: National Supercomputing Center (Shenzhen) and last: Sonosuke Fujimaki +[2018-02-13T00:29:18.808] [INFO] cheese - inserting 1000 documents. first: Cigar Makers' International Union and last: Jim Dodge +[2018-02-13T00:29:18.823] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:29:18.836] [INFO] cheese - inserting 1000 documents. first: Gol Transportes Aereos S/A and last: File:CharlottetownAbbies.png +[2018-02-13T00:29:18.886] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:29:18.890] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:29:18.970] [INFO] cheese - inserting 1000 documents. first: Tim Murray (rapper) and last: Signs of Life (1968 film) +[2018-02-13T00:29:19.015] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:29:19.089] [INFO] cheese - inserting 1000 documents. first: Russian Army (1917) and last: Minami Kamakura High School Girls Cycling Club +[2018-02-13T00:29:19.141] [INFO] cheese - inserting 1000 documents. first: Linear space and last: Mint-made errors +[2018-02-13T00:29:19.138] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:29:19.175] [INFO] cheese - inserting 1000 documents. first: San Andrés Tuxtla, Veracruz and last: Fragile (Cherrelle album) +[2018-02-13T00:29:19.214] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:29:19.232] [INFO] cheese - batch complete in: 1.204 secs +[2018-02-13T00:29:19.245] [INFO] cheese - inserting 1000 documents. first: Spring Peeper and last: Naser Al-Meqlad +[2018-02-13T00:29:19.302] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:29:19.327] [INFO] cheese - inserting 1000 documents. first: File:Imperial hotel hobart.JPG and last: Template:PulitzerPrize DramaAuthors 1951–1975 +[2018-02-13T00:29:19.382] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:29:19.458] [INFO] cheese - inserting 1000 documents. first: Rapture (Anita Baker album) and last: Chicago Patriots Gaelic Football Club +[2018-02-13T00:29:19.502] [INFO] cheese - inserting 1000 documents. first: Darahičyn and last: 廖洋震 +[2018-02-13T00:29:19.552] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:29:19.570] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:29:19.632] [INFO] cheese - inserting 1000 documents. first: 2006 Women's British Open Squash Championship and last: The Zodiac killer +[2018-02-13T00:29:19.652] [INFO] cheese - inserting 1000 documents. first: Kensgaila VK-8 Aušra and last: 2-lithiobutane +[2018-02-13T00:29:19.683] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:29:19.687] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:29:19.884] [INFO] cheese - inserting 1000 documents. first: Latsamy Mingboupha and last: Category:1944 in Guam +[2018-02-13T00:29:19.963] [INFO] cheese - inserting 1000 documents. first: Category:Liberal Party (UK) life peers and last: Wikipedia:Articles for deletion/Amberair +[2018-02-13T00:29:19.971] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:29:20.024] [INFO] cheese - inserting 1000 documents. first: File:Handcream for a Generation cover.jpeg and last: Cycling at the 1983 Pan American Games +[2018-02-13T00:29:20.084] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:29:20.104] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:29:20.132] [INFO] cheese - inserting 1000 documents. first: Robert Stanley (aviator) and last: Universal magisterium +[2018-02-13T00:29:20.144] [INFO] cheese - inserting 1000 documents. first: Kinta valley and last: Category:1797 establishments in Virginia +[2018-02-13T00:29:20.145] [INFO] cheese - inserting 1000 documents. first: 531 U.S. 326 and last: Mike Riley (curler) +[2018-02-13T00:29:20.187] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:29:20.189] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:29:20.200] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:29:20.290] [INFO] cheese - inserting 1000 documents. first: Tholian and last: Externsteine +[2018-02-13T00:29:20.352] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T00:29:20.387] [INFO] cheese - inserting 1000 documents. first: File:Danville Dashers Hockey Logo.png and last: The Stones Are Rolling +[2018-02-13T00:29:20.429] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:29:20.449] [INFO] cheese - inserting 1000 documents. first: Deno and last: Davison Peak +[2018-02-13T00:29:20.489] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:29:20.565] [INFO] cheese - inserting 1000 documents. first: Lewisham City Learning Centre and last: Huo Long Jing +[2018-02-13T00:29:20.571] [INFO] cheese - inserting 1000 documents. first: Category:1856 establishments in Virginia and last: That's How You Know (Nico & Vinz song) +[2018-02-13T00:29:20.613] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:29:20.618] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:29:20.634] [INFO] cheese - inserting 1000 documents. first: Ricardo Oliveira (rink hockey player) and last: Hong Kong legislative election, 2012 (Kowloon West) +[2018-02-13T00:29:20.649] [INFO] cheese - inserting 1000 documents. first: Ordinary and Universal Magisterium and last: Proper venue +[2018-02-13T00:29:20.688] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:29:20.701] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:29:20.873] [INFO] cheese - inserting 1000 documents. first: Davisville Glacier and last: Kooyman Peak +[2018-02-13T00:29:20.912] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Yorkshire/Newsletter/January 2009 and last: Gravely +[2018-02-13T00:29:20.920] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:29:20.984] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:29:20.988] [INFO] cheese - inserting 1000 documents. first: Category:Maryland elections, 1972 and last: Thursday (mixtape) +[2018-02-13T00:29:21.048] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:29:21.050] [INFO] cheese - inserting 1000 documents. first: Fusarium oxysporum f.sp. coffea and last: Chen Zhen (Minister) +[2018-02-13T00:29:21.213] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:29:21.302] [INFO] cheese - inserting 1000 documents. first: Taibai Stream Salamander and last: 2013 Roger Federer tennis season +[2018-02-13T00:29:21.345] [INFO] cheese - inserting 1000 documents. first: Jack Angel (SHC) and last: Volodymyr Ivasyuk +[2018-02-13T00:29:21.370] [INFO] cheese - inserting 1000 documents. first: Understanding Comics and last: V. R. Krishna Iyer +[2018-02-13T00:29:21.376] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:29:21.440] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:29:21.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Department of Fun/Word Association/Fixed and last: Not sold in stores (marketing) +[2018-02-13T00:29:21.486] [INFO] cheese - inserting 1000 documents. first: Erika Renee Land and last: Buena Vista Plantation +[2018-02-13T00:29:21.509] [INFO] cheese - batch complete in: 1.157 secs +[2018-02-13T00:29:21.552] [INFO] cheese - inserting 1000 documents. first: File:Elderly logo.png and last: Pavoor +[2018-02-13T00:29:21.554] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:29:21.580] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:29:21.633] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:29:21.796] [INFO] cheese - inserting 1000 documents. first: Anshe Chesed Fairmount Temple and last: Four Provinces (Pakistan) +[2018-02-13T00:29:21.797] [INFO] cheese - inserting 1000 documents. first: Chen Zhen (Martial Artist) and last: Meir Taweig Synagogue +[2018-02-13T00:29:21.837] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:29:21.847] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:29:21.935] [INFO] cheese - inserting 1000 documents. first: Draft:Fascia Training and last: Category:North Carolina elections, 1841 +[2018-02-13T00:29:21.972] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:29:22.014] [INFO] cheese - inserting 1000 documents. first: Meiji University junior college and last: Wikipedia:WikiProject Spam/LinkReports/sneakers-nike.com +[2018-02-13T00:29:22.069] [INFO] cheese - inserting 1000 documents. first: Steve Lilliewhite and last: Nagqu Prefecture +[2018-02-13T00:29:22.081] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:29:22.105] [INFO] cheese - inserting 1000 documents. first: Periya, Kasaragod and last: Haralampie Hadži-Risteski +[2018-02-13T00:29:22.143] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:29:22.170] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:29:22.280] [INFO] cheese - inserting 1000 documents. first: Stylidium subg. Tolypangium and last: St John's College, Agra +[2018-02-13T00:29:22.335] [INFO] cheese - inserting 1000 documents. first: Category:North Carolina elections, 1843 and last: Elections in Sarawak +[2018-02-13T00:29:22.364] [INFO] cheese - inserting 1000 documents. first: WrestleMania X - Seven and last: Girolamo Conestaggio +[2018-02-13T00:29:22.375] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:29:22.406] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:29:22.410] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:29:22.506] [INFO] cheese - inserting 1000 documents. first: Taxco and last: Lake City +[2018-02-13T00:29:22.568] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/wholesalenikemall.com and last: British Irish Parliamentary Assembly +[2018-02-13T00:29:22.586] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T00:29:22.628] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:29:22.645] [INFO] cheese - inserting 1000 documents. first: File:Funtimecomicslogo.png and last: Hassan Sabry Pasha +[2018-02-13T00:29:22.686] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:29:22.739] [INFO] cheese - inserting 1000 documents. first: Philip Sang'ka Marmo and last: Skymaster Excel +[2018-02-13T00:29:22.767] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:29:22.795] [INFO] cheese - inserting 1000 documents. first: Massey Commission and last: Wikipedia:Wikipedia Signpost/2005-12-26/News and notes +[2018-02-13T00:29:22.826] [INFO] cheese - inserting 1000 documents. first: File:Malfatti Commission.jpg and last: Al-Khalīlī +[2018-02-13T00:29:22.848] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for permissions/Approved/January 2013 and last: Atkarskoye +[2018-02-13T00:29:22.861] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:29:22.888] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:29:22.912] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:29:23.064] [INFO] cheese - inserting 1000 documents. first: Portal:Santana/Nominate/Selected article and last: S. L. Sokolov +[2018-02-13T00:29:23.098] [INFO] cheese - inserting 1000 documents. first: Provincia de El Bierzo and last: Thu, Palpa +[2018-02-13T00:29:23.112] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:29:23.160] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:29:23.203] [INFO] cheese - inserting 1000 documents. first: Template:Classical music festival and last: Cardinals (The Wonder Years song) +[2018-02-13T00:29:23.239] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:29:23.317] [INFO] cheese - inserting 1000 documents. first: Portal:Sports/Selected group/4 and last: Hosmer Lake +[2018-02-13T00:29:23.350] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-01-02/Features and admins and last: Category:Political parties in Northern Catalonia +[2018-02-13T00:29:23.376] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:29:23.406] [INFO] cheese - inserting 1000 documents. first: Specialty show and last: Blogging software +[2018-02-13T00:29:23.493] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:29:23.542] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:29:23.676] [INFO] cheese - inserting 1000 documents. first: List of arches in Oregon and last: 2004 NECBL season +[2018-02-13T00:29:23.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/zorder256 and last: Buru people +[2018-02-13T00:29:23.706] [INFO] cheese - inserting 1000 documents. first: County Route 42 (Rensselaer County, New York) and last: TRIM31 (gene) +[2018-02-13T00:29:23.716] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:29:23.737] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:29:23.739] [INFO] cheese - inserting 1000 documents. first: Email advertising and last: SoCal +[2018-02-13T00:29:23.743] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:29:23.789] [INFO] cheese - inserting 1000 documents. first: Cigarettes & Saints and last: Uniclam +[2018-02-13T00:29:23.821] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T00:29:23.830] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:29:23.980] [INFO] cheese - inserting 1000 documents. first: St. Albert the Great Elementary School (Kentucky) and last: Niall-Iain McDonald +[2018-02-13T00:29:23.995] [INFO] cheese - inserting 1000 documents. first: STMN2 (gene) and last: File:Feelin's.jpg +[2018-02-13T00:29:24.023] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T00:29:24.038] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:29:24.097] [INFO] cheese - inserting 1000 documents. first: Alfred Dwight Foster Hamlin and last: Piotrkow Statutes +[2018-02-13T00:29:24.128] [INFO] cheese - inserting 1000 documents. first: File:Hosiden-logo.png and last: Turkmenistan League +[2018-02-13T00:29:24.159] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:29:24.161] [INFO] cheese - inserting 1000 documents. first: Temperature (game theory) and last: Seiha English Academy +[2018-02-13T00:29:24.169] [INFO] cheese - inserting 1000 documents. first: Marché du Porc Breton and last: Cryptosporidium parvum virus 1 +[2018-02-13T00:29:24.182] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:29:24.215] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:29:24.223] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:29:24.396] [INFO] cheese - inserting 1000 documents. first: List of NASCAR all-time cup winners and last: ETV4 (gene) +[2018-02-13T00:29:24.429] [INFO] cheese - inserting 1000 documents. first: DNAase and last: Choristoneura occidentalis +[2018-02-13T00:29:24.431] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:29:24.480] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:29:24.575] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Barbara Samorajczyk and last: The Great Web Black-out +[2018-02-13T00:29:24.591] [INFO] cheese - inserting 1000 documents. first: Portal:Somerset/Selected article/22 and last: SS Helga +[2018-02-13T00:29:24.602] [INFO] cheese - inserting 1000 documents. first: Beebee gun and last: File:KGMB9 Logo 2007.png +[2018-02-13T00:29:24.622] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:29:24.656] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:29:24.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/White Trash Debutantes and last: Rodney Holman +[2018-02-13T00:29:24.690] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:29:24.734] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:29:24.788] [INFO] cheese - inserting 1000 documents. first: ALAS2 (gene) and last: Wikipedia:Articles for deletion/List of medical schools in Bahrain +[2018-02-13T00:29:24.790] [INFO] cheese - inserting 1000 documents. first: Andrés García and last: Musée de Cluny -- Musée national du Moyen Âge +[2018-02-13T00:29:24.820] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:29:24.859] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T00:29:24.950] [INFO] cheese - inserting 1000 documents. first: Category:Protests in Venezuela and last: Category:United Kingdom Acts of Parliament 1900 +[2018-02-13T00:29:25.006] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:29:25.041] [INFO] cheese - inserting 1000 documents. first: W.F. Ragle and last: John Lee Wortham +[2018-02-13T00:29:25.091] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:29:25.130] [INFO] cheese - inserting 1000 documents. first: Martin Riman and last: File:Kmos-tv-logo.png +[2018-02-13T00:29:25.174] [INFO] cheese - inserting 1000 documents. first: Thyon and last: Rosemarie Kother-Gabriel +[2018-02-13T00:29:25.180] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:29:25.231] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:29:25.254] [INFO] cheese - inserting 1000 documents. first: The Outcry and last: Molybdic +[2018-02-13T00:29:25.324] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:29:25.515] [INFO] cheese - inserting 1000 documents. first: File:Melvins vs. Minneapolis.jpg and last: KAT2A (gene) +[2018-02-13T00:29:25.543] [INFO] cheese - inserting 1000 documents. first: County Route 74 (Rensselaer County, New York) and last: Conway's group +[2018-02-13T00:29:25.594] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:29:25.646] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:29:25.658] [INFO] cheese - inserting 1000 documents. first: Bangor, County Mayo and last: Painless (House) +[2018-02-13T00:29:25.684] [INFO] cheese - inserting 1000 documents. first: Vladaya and last: Light (automobile) +[2018-02-13T00:29:25.754] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:29:25.761] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:29:25.906] [INFO] cheese - inserting 1000 documents. first: NR6A1 (gene) and last: HLA-A (gene) +[2018-02-13T00:29:25.932] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:29:25.938] [INFO] cheese - inserting 1000 documents. first: The Lady with the Unicorn and last: Big Cat +[2018-02-13T00:29:25.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jill Hardy and last: Clarkson Memorial +[2018-02-13T00:29:26.012] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T00:29:26.030] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:29:26.094] [INFO] cheese - inserting 1000 documents. first: Category:Masonic buildings in North Dakota and last: 屯昌县 +[2018-02-13T00:29:26.129] [INFO] cheese - inserting 1000 documents. first: Labyrint (disambiguation) and last: Category:2012 establishments in Maine +[2018-02-13T00:29:26.161] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:29:26.184] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:29:26.222] [INFO] cheese - inserting 1000 documents. first: Vallassinese dialect and last: USS Partridge +[2018-02-13T00:29:26.230] [INFO] cheese - inserting 1000 documents. first: Oskari Rissanen and last: David Mulhall +[2018-02-13T00:29:26.270] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:29:26.278] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:29:26.437] [INFO] cheese - inserting 1000 documents. first: Japalura major and last: CN Police +[2018-02-13T00:29:26.453] [INFO] cheese - inserting 1000 documents. first: Great Web Black-out and last: Morten Dons +[2018-02-13T00:29:26.461] [INFO] cheese - inserting 1000 documents. first: OR11L1 (gene) and last: History of religion in Ukraine +[2018-02-13T00:29:26.504] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:29:26.534] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:29:26.579] [INFO] cheese - batch complete in: 1.952 secs +[2018-02-13T00:29:26.713] [INFO] cheese - inserting 1000 documents. first: Vbuletin and last: Cesare Pronti +[2018-02-13T00:29:26.759] [INFO] cheese - inserting 1000 documents. first: Marcus Daly (politics) and last: Panamaram +[2018-02-13T00:29:26.763] [INFO] cheese - inserting 1000 documents. first: South Jasper Range and last: Râșdaș River +[2018-02-13T00:29:26.787] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:29:26.821] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:29:26.840] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:29:27.011] [INFO] cheese - inserting 1000 documents. first: Template:Comedy Central programming and last: OR10J3 (gene) +[2018-02-13T00:29:27.022] [INFO] cheese - inserting 1000 documents. first: Xbalanque and last: Washington Allston +[2018-02-13T00:29:27.059] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:29:27.124] [INFO] cheese - inserting 1000 documents. first: The Severn and last: Joshua Michael Marshall +[2018-02-13T00:29:27.136] [INFO] cheese - inserting 1000 documents. first: Deborah Joy and last: Template:Ethnic groups in Burma +[2018-02-13T00:29:27.159] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T00:29:27.212] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:29:27.233] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:29:27.327] [INFO] cheese - inserting 1000 documents. first: Raymond J. Reeves and last: File:Gorkamorka box.jpg +[2018-02-13T00:29:27.331] [INFO] cheese - inserting 1000 documents. first: OR13G1 (gene) and last: MRPS17 (gene) +[2018-02-13T00:29:27.350] [INFO] cheese - inserting 1000 documents. first: Payyampally and last: 2003 ABN AMRO World Tennis Tournament +[2018-02-13T00:29:27.354] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:29:27.356] [INFO] cheese - inserting 1000 documents. first: Pochi (song) and last: Low Intensity Conflict +[2018-02-13T00:29:27.376] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:29:27.411] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:29:27.457] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:29:27.594] [INFO] cheese - inserting 1000 documents. first: Template:Languages of Burma and last: Category:British religious workers +[2018-02-13T00:29:27.643] [INFO] cheese - inserting 1000 documents. first: Battle of Caldera and last: Punta Gorda Airport (disambiguation) +[2018-02-13T00:29:27.669] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:29:27.658] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:29:27.748] [INFO] cheese - inserting 1000 documents. first: Robert K. Futterman and last: 1971-72 Michigan Wolverines men's basketball team +[2018-02-13T00:29:27.772] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:29:28.075] [INFO] cheese - inserting 1000 documents. first: Rappbodeblick (oberhalb Eichenberg) and last: Ryan W. Pearson +[2018-02-13T00:29:28.129] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:29:28.156] [INFO] cheese - inserting 1000 documents. first: USS Maui (ARG-8) and last: Chile at the 1956 Summer Olympics +[2018-02-13T00:29:28.183] [INFO] cheese - inserting 1000 documents. first: Military Operation and last: Comparison of popular optical data-storage systems +[2018-02-13T00:29:28.216] [INFO] cheese - inserting 1000 documents. first: Korak, Nepal and last: JLS (Group) +[2018-02-13T00:29:28.248] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T00:29:28.261] [INFO] cheese - inserting 1000 documents. first: His Wife's Mother (1932 film) and last: Category:Reform in Morocco +[2018-02-13T00:29:28.265] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:29:28.274] [INFO] cheese - inserting 1000 documents. first: 1971-72 Rangers F.C. season and last: 1994-95 First Macedonian Football League +[2018-02-13T00:29:28.296] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T00:29:28.402] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:29:28.412] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:29:28.524] [INFO] cheese - inserting 1000 documents. first: Julianna Margulies and last: Compound noun +[2018-02-13T00:29:28.584] [INFO] cheese - inserting 1000 documents. first: Theophilus John Minton Syphax and last: SLC14A1 (gene) +[2018-02-13T00:29:28.631] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:29:28.701] [INFO] cheese - batch complete in: 1.542 secs +[2018-02-13T00:29:28.912] [INFO] cheese - inserting 1000 documents. first: SLC15A1 (gene) and last: CA8 (gene) +[2018-02-13T00:29:28.927] [INFO] cheese - inserting 1000 documents. first: 1994-95 French Division 1 and last: Slammerverse +[2018-02-13T00:29:29.002] [INFO] cheese - inserting 1000 documents. first: Eye to Eye (UK TV series) and last: The Sharyn River +[2018-02-13T00:29:29.018] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:29:29.051] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:29:29.067] [INFO] cheese - inserting 1000 documents. first: Lamar Trotti and last: West Barsham +[2018-02-13T00:29:29.074] [INFO] cheese - inserting 1000 documents. first: File:NASCARcampworldseries.png and last: File:Ndcv.png +[2018-02-13T00:29:29.075] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:29:29.138] [INFO] cheese - inserting 1000 documents. first: 2000 Arizona Diamondbacks season and last: AMS-204 +[2018-02-13T00:29:29.179] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T00:29:29.218] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T00:29:29.240] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:29:29.350] [INFO] cheese - inserting 1000 documents. first: Allan Robin Winston Hancox and last: HVCN1 (gene) +[2018-02-13T00:29:29.356] [INFO] cheese - inserting 1000 documents. first: 2004-05 Newcastle United F.C. season and last: 2010-11 in Argentine football +[2018-02-13T00:29:29.376] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:29:29.377] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:29:29.580] [INFO] cheese - inserting 1000 documents. first: USA D.O.D. and last: NREP (gene) +[2018-02-13T00:29:29.607] [INFO] cheese - inserting 1000 documents. first: Template:1971 NL Record vs. opponents/doc and last: Template:CRH color/doc +[2018-02-13T00:29:29.622] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:29:29.635] [INFO] cheese - inserting 1000 documents. first: S. Senadeera and last: File:Nicly.png +[2018-02-13T00:29:29.675] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:29:29.684] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:29:29.700] [INFO] cheese - inserting 1000 documents. first: James Craig Annan and last: Denmark-Tanzania relations +[2018-02-13T00:29:29.700] [INFO] cheese - inserting 1000 documents. first: Compound adjective and last: Unary +[2018-02-13T00:29:29.754] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:29:29.775] [INFO] cheese - inserting 1000 documents. first: Pyotr Leonidovich Kapitsa and last: Studentereksamen +[2018-02-13T00:29:29.776] [INFO] cheese - inserting 1000 documents. first: Aid Convoy and last: Turn Island +[2018-02-13T00:29:29.780] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T00:29:29.839] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:29:29.857] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:29:29.898] [INFO] cheese - inserting 1000 documents. first: COPS2 (gene) and last: Nfsug +[2018-02-13T00:29:29.932] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:29:30.013] [INFO] cheese - inserting 1000 documents. first: Denmark-Uganda relations and last: Netherlands Football League Championship 1902-03 +[2018-02-13T00:29:30.049] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:29:30.108] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sumire (model, born 1990) and last: Category:Houses in Larimer County, Colorado +[2018-02-13T00:29:30.167] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:29:30.186] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Jack Sholder and last: File:Blackadder archbishop.jpg +[2018-02-13T00:29:30.239] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:29:30.299] [INFO] cheese - inserting 1000 documents. first: File:Nicma.png and last: File:Jurongwestavenue1.jpg +[2018-02-13T00:29:30.387] [INFO] cheese - inserting 1000 documents. first: Netherlands Football League Championship 1903-04 and last: Arizona desert centipede +[2018-02-13T00:29:30.388] [INFO] cheese - inserting 1000 documents. first: Dowel bar retrofit and last: Media in Topeka, Kansas +[2018-02-13T00:29:30.398] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:29:30.442] [INFO] cheese - inserting 1000 documents. first: File:Th artcgirlz-1.jpg and last: Pseudopezicula tracheiphila +[2018-02-13T00:29:30.447] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:29:30.460] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:29:30.528] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:29:30.583] [INFO] cheese - inserting 1000 documents. first: Southwark Bridge and last: Socialist Worker's Party +[2018-02-13T00:29:30.641] [INFO] cheese - inserting 1000 documents. first: Amsterdamse Poort (Haarlem) and last: Hamoud Abdullah Hamoud Hassan Al Wady +[2018-02-13T00:29:30.666] [INFO] cheese - inserting 1000 documents. first: Mais Gate and last: Best Direction Award (Locarno International Film Festival) +[2018-02-13T00:29:30.676] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:29:30.678] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T00:29:30.713] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:29:30.838] [INFO] cheese - inserting 1000 documents. first: Simeon Slavchev and last: Eugène Barthe +[2018-02-13T00:29:30.897] [INFO] cheese - inserting 1000 documents. first: Justice Taylor and last: Waclaw Szamotulczyk +[2018-02-13T00:29:30.903] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:29:30.953] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:29:30.969] [INFO] cheese - inserting 1000 documents. first: I am the Walrus and last: File:RootsManuva BrandNewSecondHand albumcover.jpg +[2018-02-13T00:29:31.010] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:29:31.035] [INFO] cheese - inserting 1000 documents. first: Anne & Serge Golon and last: Time and Again (Voyager episode) +[2018-02-13T00:29:31.099] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:29:31.161] [INFO] cheese - inserting 1000 documents. first: Portal:Machine learning/Selected picture and last: Boxun.com +[2018-02-13T00:29:31.197] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:29:31.266] [INFO] cheese - inserting 1000 documents. first: Template:User Chitrapur Saraswat Brahmin and last: File:George and Tammy and Tina.jpg +[2018-02-13T00:29:31.303] [INFO] cheese - inserting 1000 documents. first: Hinko Bauer and last: 2013 Indian Grand Prix +[2018-02-13T00:29:31.311] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:29:31.514] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T00:29:31.571] [INFO] cheese - inserting 1000 documents. first: Northampton massachusetts and last: File:University at buffalo 006.JPG +[2018-02-13T00:29:31.608] [INFO] cheese - inserting 1000 documents. first: US Goverment and last: Zdzislaw Kasprzak +[2018-02-13T00:29:31.657] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:29:31.674] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:29:31.724] [INFO] cheese - inserting 1000 documents. first: Diego de la Vega and last: Joe Tex +[2018-02-13T00:29:31.756] [INFO] cheese - inserting 1000 documents. first: KOI-2124.01 and last: Wikipedia:Today's featured article/requests/Serpens +[2018-02-13T00:29:31.817] [INFO] cheese - batch complete in: 1.138 secs +[2018-02-13T00:29:31.859] [INFO] cheese - inserting 1000 documents. first: File:RootsManuva RunComeSaveMe albumcover.jpg and last: Elizabeth Catlett +[2018-02-13T00:29:31.867] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:29:31.950] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T00:29:32.080] [INFO] cheese - inserting 1000 documents. first: Slob, U.S. Virgin Islands and last: La Loba (Mexican Telenovela) +[2018-02-13T00:29:32.126] [INFO] cheese - inserting 1000 documents. first: 2013 Abu Dhabi Grand Prix and last: Craspedia nigristellata +[2018-02-13T00:29:32.171] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:29:32.195] [INFO] cheese - inserting 1000 documents. first: File:PanPacificChamp08.png and last: Binkley brothers dixie clodhoppers +[2018-02-13T00:29:32.211] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:29:32.215] [INFO] cheese - inserting 1000 documents. first: Al-Madhbah and last: Robert Chisholm (disambiguation) +[2018-02-13T00:29:32.269] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:29:32.303] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:29:32.478] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sleepyhead (band) and last: Athrips pallida +[2018-02-13T00:29:32.631] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:29:32.711] [INFO] cheese - inserting 1000 documents. first: Ron Lynch (American football) and last: 遼陽 +[2018-02-13T00:29:32.711] [INFO] cheese - inserting 1000 documents. first: Treaty of Vienna and last: Wikipedia:Peer review/Military history of African Americans +[2018-02-13T00:29:32.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Most-wanted articles/old and last: Kashkevar, Markazi +[2018-02-13T00:29:32.762] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:29:32.770] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:29:32.778] [INFO] cheese - inserting 1000 documents. first: Amigo (disambiguation) and last: Kituwa +[2018-02-13T00:29:32.824] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian documentary filmmakers and last: Massacre in Dhaka University during 1971 +[2018-02-13T00:29:32.826] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:29:32.846] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:29:32.898] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:29:32.992] [INFO] cheese - inserting 1000 documents. first: Richard Lewontin and last: Ferenc Mádl +[2018-02-13T00:29:33.088] [INFO] cheese - batch complete in: 1.271 secs +[2018-02-13T00:29:33.130] [INFO] cheese - inserting 1000 documents. first: Athrips punctosa and last: Padus rufula +[2018-02-13T00:29:33.148] [INFO] cheese - inserting 1000 documents. first: Big Man (comics) and last: Wenchow +[2018-02-13T00:29:33.176] [INFO] cheese - inserting 1000 documents. first: Dynaponics and last: Siege of Ochakov (1737) +[2018-02-13T00:29:33.189] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:29:33.204] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:29:33.216] [INFO] cheese - inserting 1000 documents. first: Tarkan discography and last: File:KEUV31.png +[2018-02-13T00:29:33.255] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:29:33.296] [INFO] cheese - inserting 1000 documents. first: Tā marbuta and last: File:SaintPetersburgTimesRussiaLogo.png +[2018-02-13T00:29:33.300] [INFO] cheese - inserting 1000 documents. first: Khunjerab National Park and last: Wikipedia:Articles for deletion/Angels Wake +[2018-02-13T00:29:33.329] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:29:33.358] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:29:33.385] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:29:33.613] [INFO] cheese - inserting 1000 documents. first: Jack McCarthy (baseball) and last: The Court +[2018-02-13T00:29:33.653] [INFO] cheese - inserting 1000 documents. first: Al `Ujaylat and last: Mary D. Glasspool +[2018-02-13T00:29:33.752] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:29:33.749] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:29:33.780] [INFO] cheese - inserting 1000 documents. first: Category:Australian television-related lists and last: Ugo, re d'Italia +[2018-02-13T00:29:33.808] [INFO] cheese - inserting 1000 documents. first: File:Saintplayer blue.png and last: List of asteroids/74001–75000 +[2018-02-13T00:29:33.849] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:29:33.871] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:29:33.950] [INFO] cheese - inserting 1000 documents. first: Prunus parksii and last: Prophet (Islam) +[2018-02-13T00:29:34.019] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:29:34.037] [INFO] cheese - inserting 1000 documents. first: Understudy and last: Patrick Leahy +[2018-02-13T00:29:34.056] [INFO] cheese - inserting 1000 documents. first: Lancaster Regional Airport and last: Alois Riehl +[2018-02-13T00:29:34.116] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T00:29:34.121] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:29:34.132] [INFO] cheese - inserting 1000 documents. first: Category:Internet soap operas and last: File:Borzsony badge.jpg +[2018-02-13T00:29:34.188] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:29:34.249] [INFO] cheese - inserting 1000 documents. first: Lawrence (Seaford, Delaware) and last: 462nd Tactical Fighter Squadron +[2018-02-13T00:29:34.256] [INFO] cheese - inserting 1000 documents. first: 🎽 and last: Category:Republic of China people by occupation +[2018-02-13T00:29:34.277] [INFO] cheese - inserting 1000 documents. first: List of asteroids/73001–74000 and last: Akira Matsunaga +[2018-02-13T00:29:34.290] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:29:34.307] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:29:34.320] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:29:34.412] [INFO] cheese - inserting 1000 documents. first: Bhoirgaon and last: File:Noi siamo le colonne vittorio de sica luigi filippo damico pcsi.jpg +[2018-02-13T00:29:34.452] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:29:34.550] [INFO] cheese - inserting 1000 documents. first: 38 (Irish) Brigade and last: Category:German-American culture in New Jersey +[2018-02-13T00:29:34.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Rugby league/to do and last: Security breach notification laws +[2018-02-13T00:29:34.603] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:29:34.611] [INFO] cheese - inserting 1000 documents. first: Pumping on Your Stereo and last: Diocese of Chelmsford +[2018-02-13T00:29:34.642] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:29:34.661] [INFO] cheese - inserting 1000 documents. first: Derby-Shelton Bridge and last: File:The Telegraph (Calcutta).png +[2018-02-13T00:29:34.669] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:29:34.724] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Huggle/No you can't have instant reverts and last: Category:Dayton Flyers +[2018-02-13T00:29:34.724] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:29:34.799] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:29:34.876] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Legislative Council of Fiji by ethnicity and last: Khiêm Lăng +[2018-02-13T00:29:34.938] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:29:34.947] [INFO] cheese - inserting 1000 documents. first: Lisa Murkowski and last: Fushengji shi +[2018-02-13T00:29:35.022] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T00:29:35.112] [INFO] cheese - inserting 1000 documents. first: Category:Swedish directors and last: Travis London +[2018-02-13T00:29:35.174] [INFO] cheese - inserting 1000 documents. first: Kidney Diseases and last: Kranji Mile +[2018-02-13T00:29:35.199] [INFO] cheese - inserting 1000 documents. first: Europarl TV and last: Category:Songwriters from Hawaii +[2018-02-13T00:29:35.203] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:29:35.218] [INFO] cheese - inserting 1000 documents. first: Acanthosicyos naudinianus and last: Manlius, NY +[2018-02-13T00:29:35.238] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:29:35.249] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:29:35.299] [INFO] cheese - inserting 1000 documents. first: "Lucian Blaga" University of Sibiu and last: Standup fighting +[2018-02-13T00:29:35.359] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:29:35.399] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:29:35.416] [INFO] cheese - inserting 1000 documents. first: World of Silence and last: Lycee Victor Hugo (Sofia) +[2018-02-13T00:29:35.535] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:29:35.660] [INFO] cheese - inserting 1000 documents. first: Vento di ponente (television series) and last: Who I Am (book) +[2018-02-13T00:29:35.695] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:29:35.768] [INFO] cheese - inserting 1000 documents. first: Gass the band and last: Shirley Adele Field +[2018-02-13T00:29:35.816] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:29:35.883] [INFO] cheese - inserting 1000 documents. first: Template:Nippon Professional Baseball Seasons and last: Julius Shaambeni Shilongo Mnyika +[2018-02-13T00:29:35.962] [INFO] cheese - inserting 1000 documents. first: Theodore Wright and last: First Sale Doctrine +[2018-02-13T00:29:36.022] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:29:36.082] [INFO] cheese - inserting 1000 documents. first: Marinier Archipelago and last: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2015 August 13 +[2018-02-13T00:29:36.082] [INFO] cheese - inserting 1000 documents. first: Standup fight and last: Cangaceiro +[2018-02-13T00:29:36.088] [INFO] cheese - inserting 1000 documents. first: Ellery Albee Hibbard and last: Raul Alcala +[2018-02-13T00:29:36.122] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T00:29:36.161] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:29:36.169] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:29:36.175] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:29:36.231] [INFO] cheese - inserting 1000 documents. first: Niall Dickson and last: Category:Argentine nobility +[2018-02-13T00:29:36.262] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:29:36.390] [INFO] cheese - inserting 1000 documents. first: Fukuhara and last: Vojsko, Vodice +[2018-02-13T00:29:36.466] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:29:36.520] [INFO] cheese - inserting 1000 documents. first: Climate zones by altitude and last: ER de Belgrade +[2018-02-13T00:29:36.531] [INFO] cheese - inserting 1000 documents. first: Category:Houses in Sioux County, Iowa and last: Gelechia obscurosuffusella +[2018-02-13T00:29:36.559] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:29:36.566] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:29:36.617] [INFO] cheese - inserting 1000 documents. first: Category:Policy debate and last: Template:Birmingham Landmarks +[2018-02-13T00:29:36.663] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:29:36.668] [INFO] cheese - inserting 1000 documents. first: File:Phyllis Iolanthe and Strephon.jpg and last: Phytotaxonomic +[2018-02-13T00:29:36.672] [INFO] cheese - inserting 1000 documents. first: Carolina Beatriz Ângelo and last: Organogels +[2018-02-13T00:29:36.716] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:29:36.744] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:29:36.832] [INFO] cheese - inserting 1000 documents. first: Portal:Royal Air Force/Wikimedia and last: Mojinos Escozíos +[2018-02-13T00:29:36.872] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:29:36.895] [INFO] cheese - inserting 1000 documents. first: Neil Schyan Jeffers and last: Austin Planetarium +[2018-02-13T00:29:36.902] [INFO] cheese - inserting 1000 documents. first: Pear Tree House and last: Sørumsand +[2018-02-13T00:29:36.940] [INFO] cheese - inserting 1000 documents. first: Wild marijuana and last: Iran at the 2015 World Championships in Athletics +[2018-02-13T00:29:36.941] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:29:36.972] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:29:36.986] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:29:37.096] [INFO] cheese - inserting 1000 documents. first: Jerry kindall field at frank sancet stadium and last: Powderfinger discography +[2018-02-13T00:29:37.141] [INFO] cheese - inserting 1000 documents. first: Deutsch-Stamora and last: Category:Tourist attractions in Binghamton, New York +[2018-02-13T00:29:37.247] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:29:37.262] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:29:37.300] [INFO] cheese - inserting 1000 documents. first: Royal College of Pathologists of Australasia and last: Johnny O’Keefe +[2018-02-13T00:29:37.464] [INFO] cheese - inserting 1000 documents. first: Bohumil Sládek and last: Vasyl Anatoliyovich Lomachenko +[2018-02-13T00:29:37.474] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T00:29:37.544] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:29:37.647] [INFO] cheese - inserting 1000 documents. first: Alison Cumings and last: Category:Fort Hays State Tigers men's basketball coaches +[2018-02-13T00:29:37.711] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:29:37.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Peer review/Ronald Skirth and last: Mizerable +[2018-02-13T00:29:37.944] [INFO] cheese - inserting 1000 documents. first: Category:Cape Verde national football team navigational boxes and last: Frances Isabella Duberly +[2018-02-13T00:29:37.964] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T00:29:37.992] [INFO] cheese - inserting 1000 documents. first: Meletinsky and last: The Popular Magazine +[2018-02-13T00:29:38.064] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T00:29:38.122] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:29:38.158] [INFO] cheese - inserting 1000 documents. first: 2FC and last: Pinning hold +[2018-02-13T00:29:38.186] [INFO] cheese - inserting 1000 documents. first: Ganglionic eminences and last: Meanings of asteroid names (113001-114000) +[2018-02-13T00:29:38.197] [INFO] cheese - inserting 1000 documents. first: List of Finance Ministers of France and last: Emergency Vets +[2018-02-13T00:29:38.265] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:29:38.260] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:29:38.338] [INFO] cheese - batch complete in: 1.366 secs +[2018-02-13T00:29:38.394] [INFO] cheese - inserting 1000 documents. first: Wiehle–Reston East Station and last: Starlight (Warriors) +[2018-02-13T00:29:38.464] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:29:38.592] [INFO] cheese - inserting 1000 documents. first: ThDP and last: Bonython Park, Adelaide +[2018-02-13T00:29:38.696] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:29:38.706] [INFO] cheese - inserting 1000 documents. first: Category:Music of the Harry Potter films and last: Phanerochaete chrysorhizon +[2018-02-13T00:29:38.710] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wiesława Hunzvi and last: Clarence H. "Du" Burns Arena +[2018-02-13T00:29:38.774] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:29:38.777] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:29:38.846] [INFO] cheese - inserting 1000 documents. first: Oxford Pledge and last: List of shoe-throwing incidents +[2018-02-13T00:29:38.896] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:29:38.901] [INFO] cheese - inserting 1000 documents. first: Nothris kalevalella and last: Category:Future Elections +[2018-02-13T00:29:38.913] [INFO] cheese - inserting 1000 documents. first: The Notorious B.I.G. Duets: The Final Chapter and last: Walton family +[2018-02-13T00:29:38.963] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:29:38.984] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:29:39.113] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations located underground in Norway and last: Schaadt +[2018-02-13T00:29:39.162] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:29:39.345] [INFO] cheese - inserting 1000 documents. first: Whitney, West Virginia and last: Category:Swedish-American culture in Nebraska +[2018-02-13T00:29:39.364] [INFO] cheese - inserting 1000 documents. first: Phanerochaete radicata and last: History of automated adaptive instruction in computer applications +[2018-02-13T00:29:39.410] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:29:39.438] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:29:39.470] [INFO] cheese - inserting 1000 documents. first: Energies of God and last: Return To Castle Wolfenstein +[2018-02-13T00:29:39.511] [INFO] cheese - inserting 1000 documents. first: Mega TV Championship and last: L'album biango +[2018-02-13T00:29:39.536] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (Anatolian gods) and last: John James Hugh Henry Stewart-Murray, 7th Duke of Athole +[2018-02-13T00:29:39.553] [INFO] cheese - batch complete in: 1.215 secs +[2018-02-13T00:29:39.562] [INFO] cheese - inserting 1000 documents. first: Félicie Point and last: Catholic Art Quarterly +[2018-02-13T00:29:39.563] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:29:39.584] [INFO] cheese - inserting 1000 documents. first: Calabi-Yau four-fold and last: Leitrim Observer +[2018-02-13T00:29:39.603] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:29:39.607] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:29:39.643] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:29:39.796] [INFO] cheese - inserting 1000 documents. first: Category:British Columbia general election, 1941 results by riding and last: File:Un biglietto del tram.jpg +[2018-02-13T00:29:39.838] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:29:39.842] [INFO] cheese - inserting 1000 documents. first: Jim kennedy and last: Cecil Forsyth +[2018-02-13T00:29:39.887] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:29:39.933] [INFO] cheese - inserting 1000 documents. first: Template:Airports in Portugal and last: Category:Wildfowl & Wetlands Trust +[2018-02-13T00:29:39.936] [INFO] cheese - inserting 1000 documents. first: Nothing to Lose (S'Express song) and last: Baba Hafusa +[2018-02-13T00:29:39.968] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:29:39.991] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:29:40.058] [INFO] cheese - inserting 1000 documents. first: Essential supremum and essential infimum and last: File:MersenneLargest.png +[2018-02-13T00:29:40.073] [INFO] cheese - inserting 1000 documents. first: Template:Lotr and last: Mamadou Camara +[2018-02-13T00:29:40.119] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:29:40.160] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:29:40.274] [INFO] cheese - inserting 1000 documents. first: Category:Hedningarna compilation albums and last: File:Idle No More 2013 c.jpg +[2018-02-13T00:29:40.338] [INFO] cheese - inserting 1000 documents. first: Sunday Arts and last: The Kane Family +[2018-02-13T00:29:40.342] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:29:40.410] [INFO] cheese - inserting 1000 documents. first: Gelechia palpialbella and last: Carolina Hall (University of North Carolina at Chapel Hill) +[2018-02-13T00:29:40.445] [INFO] cheese - inserting 1000 documents. first: RTCW and last: Phocoena +[2018-02-13T00:29:40.460] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:29:40.480] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:29:40.500] [INFO] cheese - inserting 1000 documents. first: So Nice (album) and last: 30th British Columbia general election +[2018-02-13T00:29:40.609] [INFO] cheese - inserting 1000 documents. first: Hyperdrive (storage) and last: I Don't Want to Be Your Friend +[2018-02-13T00:29:40.617] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:29:40.621] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T00:29:40.697] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:29:40.779] [INFO] cheese - inserting 1000 documents. first: Remire-Montjoly and last: The Blackstone Hotel +[2018-02-13T00:29:40.859] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:29:40.869] [INFO] cheese - inserting 1000 documents. first: Category:Italian actresses and last: Saint Doulchard +[2018-02-13T00:29:40.928] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:29:40.944] [INFO] cheese - inserting 1000 documents. first: Fairfield Township, Tuscarawas County, OH and last: Union Township, Belmont County, OH +[2018-02-13T00:29:40.977] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T00:29:41.000] [INFO] cheese - inserting 1000 documents. first: Braemar, New South Wales and last: Celeia +[2018-02-13T00:29:41.015] [INFO] cheese - inserting 1000 documents. first: 31st British Columbia general election and last: Remscheid Dam +[2018-02-13T00:29:41.052] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:29:41.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Sustainable Development Goals and last: List of Australian Prank Patrol episodes (series 1) +[2018-02-13T00:29:41.069] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:29:41.130] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:29:41.289] [INFO] cheese - inserting 1000 documents. first: Union Township, Brown County, OH and last: Hermann Buchner (SS officer) +[2018-02-13T00:29:41.332] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:29:41.380] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1932 Summer Olympics – Men's double sculls and last: Template:Did you know nominations/William Vane, 2nd Viscount Vane +[2018-02-13T00:29:41.400] [INFO] cheese - inserting 1000 documents. first: Category:Portal-Class Maryland articles and last: Lofty Promenade +[2018-02-13T00:29:41.433] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:29:41.437] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:29:41.477] [INFO] cheese - inserting 1000 documents. first: List of American films of 1943 and last: Blige +[2018-02-13T00:29:41.542] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:29:41.549] [INFO] cheese - inserting 1000 documents. first: Beaufortia incana and last: 316th Composite Wing +[2018-02-13T00:29:41.626] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:29:41.644] [INFO] cheese - inserting 1000 documents. first: Julia Maesa and last: Victoria Ka'iulani +[2018-02-13T00:29:41.694] [INFO] cheese - inserting 1000 documents. first: UNOSOM and last: We are Voice and Rhythm Only +[2018-02-13T00:29:41.705] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T00:29:41.731] [INFO] cheese - inserting 1000 documents. first: Everhardt Franßen and last: Tanglewood (Akron, Alabama) +[2018-02-13T00:29:41.773] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T00:29:41.775] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:29:41.845] [INFO] cheese - inserting 1000 documents. first: Japanese government-issued rupee in Burma and last: Category:Olympic athletes of Upper Volta +[2018-02-13T00:29:41.870] [INFO] cheese - inserting 1000 documents. first: Mount Minami-heito and last: Template:1981 Toronto Blue Jays season game log +[2018-02-13T00:29:41.888] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:29:41.904] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:29:42.004] [INFO] cheese - inserting 1000 documents. first: IOCL and last: Vicesimus Blenkinsop +[2018-02-13T00:29:42.039] [INFO] cheese - inserting 1000 documents. first: Bertie's Brochures and last: William L. Storrs +[2018-02-13T00:29:42.040] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:29:42.107] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:29:42.206] [INFO] cheese - inserting 1000 documents. first: In the Bush and last: St. Charles High School, Minnesota +[2018-02-13T00:29:42.210] [INFO] cheese - inserting 1000 documents. first: Template:WashingtonDC-stub and last: James Allen (linebacker) +[2018-02-13T00:29:42.235] [INFO] cheese - inserting 1000 documents. first: Hugh Awdeley and last: Koma Kulshan +[2018-02-13T00:29:42.242] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:29:42.251] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Coahomasuchus and last: ICAAP +[2018-02-13T00:29:42.266] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:29:42.292] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:29:42.313] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:29:42.503] [INFO] cheese - inserting 1000 documents. first: File:Teenage Shutdown! The World Ain't Round it's Square.JPEG.jpg and last: Category:Houses in Monroe County, Mississippi +[2018-02-13T00:29:42.547] [INFO] cheese - inserting 1000 documents. first: 2000 in science and last: Walrein +[2018-02-13T00:29:42.551] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:29:42.557] [INFO] cheese - inserting 1000 documents. first: St. Charles West High School, Missouri and last: Neha Hinge +[2018-02-13T00:29:42.569] [INFO] cheese - inserting 1000 documents. first: Category:People from Drenthe and last: Template:Podilsko-Vyhurivska Line +[2018-02-13T00:29:42.600] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:29:42.605] [INFO] cheese - inserting 1000 documents. first: Irasaiah Ilanthirayan and last: Depron +[2018-02-13T00:29:42.621] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:29:42.639] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T00:29:42.671] [INFO] cheese - inserting 1000 documents. first: DJ CXL and last: Morton Norton Cohen +[2018-02-13T00:29:42.682] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:29:42.810] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:29:42.856] [INFO] cheese - inserting 1000 documents. first: God’s American Israel and last: DMCRA +[2018-02-13T00:29:42.923] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:29:42.963] [INFO] cheese - inserting 1000 documents. first: The Run to the Roses and last: Template:Did you know nominations/Beth Rivkah +[2018-02-13T00:29:42.990] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:29:43.065] [INFO] cheese - inserting 1000 documents. first: Giovanni Poggi and last: Template:Editnotices/Page/Empress Quan Huijie +[2018-02-13T00:29:43.117] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:29:43.198] [INFO] cheese - inserting 1000 documents. first: WindEurope and last: Goslings and Sharpe +[2018-02-13T00:29:43.214] [INFO] cheese - inserting 1000 documents. first: Natural anti-cancer:Pancratistatin and last: 1951 USC Trojans football team +[2018-02-13T00:29:43.227] [INFO] cheese - inserting 1000 documents. first: Category:Quad Cities Cubs players and last: Heale Peak +[2018-02-13T00:29:43.243] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:29:43.266] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:29:43.270] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:29:43.343] [INFO] cheese - inserting 1000 documents. first: Category:Ice hockey clubs established in 2009 and last: Khanpur Mahar +[2018-02-13T00:29:43.345] [INFO] cheese - inserting 1000 documents. first: Template:User WikiProject Russian federal subjects and last: Sarah Hogg, Viscountess Hailsham +[2018-02-13T00:29:43.389] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:29:43.410] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:29:43.471] [INFO] cheese - inserting 1000 documents. first: HD 20468 and last: Narcosis (Peruvian band) +[2018-02-13T00:29:43.552] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:29:43.667] [INFO] cheese - inserting 1000 documents. first: Kecleon and last: Moleskin +[2018-02-13T00:29:43.698] [INFO] cheese - inserting 1000 documents. first: Category:Albanian-language poets and last: Caia (plant) +[2018-02-13T00:29:43.726] [INFO] cheese - inserting 1000 documents. first: Parametric representation and last: Ar'ara al-Naqab +[2018-02-13T00:29:43.732] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T00:29:43.750] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:29:43.789] [INFO] cheese - inserting 1000 documents. first: Borderliners and last: Wikipedia:Articles for deletion/Mithunam +[2018-02-13T00:29:43.792] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:29:43.829] [INFO] cheese - inserting 1000 documents. first: All-Union Communist Party of Bolsheviks (1995) and last: La Misión de Corpus Christi de San Antonio de la Ysleta del Sur +[2018-02-13T00:29:43.861] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:29:43.904] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:29:43.942] [INFO] cheese - inserting 1000 documents. first: Dokudanjou Beauty and last: Emarginella +[2018-02-13T00:29:43.965] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:29:44.036] [INFO] cheese - inserting 1000 documents. first: KaitO and last: Aniakchak Crater +[2018-02-13T00:29:44.096] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:29:44.102] [INFO] cheese - inserting 1000 documents. first: Arkansas Highway 876 and last: Maxis Taxi +[2018-02-13T00:29:44.143] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:29:44.257] [INFO] cheese - inserting 1000 documents. first: Quinnipiac Bobcats basketball and last: White edged coleotechnites Moth +[2018-02-13T00:29:44.269] [INFO] cheese - inserting 1000 documents. first: Henry Hopkins and last: I Can't Hear The Music +[2018-02-13T00:29:44.292] [INFO] cheese - inserting 1000 documents. first: Timeline of U.S. attack on Afghanistan in November 2001 and last: John B. Steele +[2018-02-13T00:29:44.301] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:29:44.322] [INFO] cheese - inserting 1000 documents. first: Irving Freese and last: Faule Renne +[2018-02-13T00:29:44.320] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:29:44.358] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:29:44.411] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:29:44.576] [INFO] cheese - inserting 1000 documents. first: The Jug and last: Ritarihalli +[2018-02-13T00:29:44.596] [INFO] cheese - inserting 1000 documents. first: John Stagliano and last: Bayside +[2018-02-13T00:29:44.601] [INFO] cheese - inserting 1000 documents. first: White edged Coleotechnites moth and last: Day-Lewis (name) +[2018-02-13T00:29:44.634] [INFO] cheese - inserting 1000 documents. first: Hesse Peak and last: Kirchner Peak +[2018-02-13T00:29:44.689] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:29:44.734] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:29:44.752] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T00:29:44.756] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:29:44.823] [INFO] cheese - inserting 1000 documents. first: Titty Hill and last: The Very Best of - Rain, Rain, Beautiful Rain +[2018-02-13T00:29:44.876] [INFO] cheese - inserting 1000 documents. first: The Innocents (1987 film) and last: Category:Culture in Münster +[2018-02-13T00:29:44.894] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:29:44.946] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:29:44.955] [INFO] cheese - inserting 1000 documents. first: John B. Weber and last: Niederrieden +[2018-02-13T00:29:45.075] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:29:45.192] [INFO] cheese - inserting 1000 documents. first: 2014 Malaysia Open Superseries Premier and last: Crescent Heights, Texas +[2018-02-13T00:29:45.226] [INFO] cheese - inserting 1000 documents. first: Kirby Cone and last: 2011 2. Divisjon +[2018-02-13T00:29:45.232] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:29:45.278] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:29:45.316] [INFO] cheese - inserting 1000 documents. first: Nelson Mandella Gardens and last: Wikipedia:WikiProject Spam/LinkReports/img.webme.com +[2018-02-13T00:29:45.318] [INFO] cheese - inserting 1000 documents. first: 1980 Holiday Bowl and last: Meenkarappuzha +[2018-02-13T00:29:45.363] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/World Quest/Pokopon Pekōrya and last: Entry (film) +[2018-02-13T00:29:45.370] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:29:45.383] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:29:45.427] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:29:45.531] [INFO] cheese - inserting 1000 documents. first: Joseph Showalter Smith and last: WYFZ +[2018-02-13T00:29:45.585] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:29:45.634] [INFO] cheese - inserting 1000 documents. first: Category:17th century in Moldavia and last: Template:1901 NL Record vs. opponents +[2018-02-13T00:29:45.638] [INFO] cheese - inserting 1000 documents. first: Sunrise Glacier (Montana) and last: File:Lutessa Lena Luthor (Tess Mercer)-.jpg +[2018-02-13T00:29:45.670] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:29:45.686] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:29:45.781] [INFO] cheese - inserting 1000 documents. first: Thanskgiving Day and last: Thomas Nuttall +[2018-02-13T00:29:45.797] [INFO] cheese - inserting 1000 documents. first: Glossotrophia ghirshmani and last: Category:Films directed by Sudz Sutherland +[2018-02-13T00:29:45.818] [INFO] cheese - inserting 1000 documents. first: Glazoué and last: Category:Military units and formations of Czechoslovakia +[2018-02-13T00:29:45.827] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:29:45.847] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T00:29:45.856] [INFO] cheese - inserting 1000 documents. first: Lamin, Western Division and last: Madonna singles +[2018-02-13T00:29:45.875] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:29:45.921] [INFO] cheese - inserting 1000 documents. first: Joe Boley and last: Black Jack (Jericho) +[2018-02-13T00:29:45.935] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:29:45.973] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:29:46.010] [INFO] cheese - inserting 1000 documents. first: Category:Thailand Masters (badminton) and last: Kolebira block +[2018-02-13T00:29:46.045] [INFO] cheese - inserting 1000 documents. first: ATC-NS and last: Wikipedia:Requested articles/Social sciences/Geography, cities, regions and named places/Kosovo/Region 08 +[2018-02-13T00:29:46.057] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:29:46.120] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:29:46.195] [INFO] cheese - inserting 1000 documents. first: Aku Hirviniemi and last: Beazer (disambiguation) +[2018-02-13T00:29:46.291] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:29:46.364] [INFO] cheese - inserting 1000 documents. first: Master of Wilten and last: Jardins ethnobotaniques de la Gardie +[2018-02-13T00:29:46.426] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:29:46.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/IncidentArchive254 and last: Provadiya Hook +[2018-02-13T00:29:46.488] [INFO] cheese - inserting 1000 documents. first: Category:Devonian trilobites of Africa and last: Suresh Prasad Sarbadhikari +[2018-02-13T00:29:46.494] [INFO] cheese - inserting 1000 documents. first: Garden Key Light and last: Edge, Chester, Cheshire +[2018-02-13T00:29:46.504] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:29:46.554] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:29:46.566] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:29:46.649] [INFO] cheese - inserting 1000 documents. first: Studio crafts and last: Naruhiko +[2018-02-13T00:29:46.699] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:29:46.756] [INFO] cheese - inserting 1000 documents. first: Category:1560s in England and last: William Codrington +[2018-02-13T00:29:46.816] [INFO] cheese - inserting 1000 documents. first: Malcolm F. Brown and last: Wikipedia:WikiProject Dungeons & Dragons/backlog +[2018-02-13T00:29:46.816] [INFO] cheese - inserting 1000 documents. first: Arthur Helps and last: MediaWiki:Linktrail +[2018-02-13T00:29:46.816] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:29:46.857] [INFO] cheese - inserting 1000 documents. first: Category:Works by Bahram Beyzai and last: Hiding in Plain Sight +[2018-02-13T00:29:46.857] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:29:46.893] [INFO] cheese - inserting 1000 documents. first: The Search For The Next Doll and last: File:GranvilleasSD.jpg +[2018-02-13T00:29:46.899] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T00:29:46.911] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:29:46.943] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:29:47.083] [INFO] cheese - inserting 1000 documents. first: Hala Al Turk and last: Sayf ad-Dawlah +[2018-02-13T00:29:47.121] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:29:47.155] [INFO] cheese - inserting 1000 documents. first: ALCO Century 420 and last: Ignaz Boesendorfer +[2018-02-13T00:29:47.177] [INFO] cheese - inserting 1000 documents. first: Mega Mega Mega and last: Burtville +[2018-02-13T00:29:47.234] [INFO] cheese - inserting 1000 documents. first: Chen Yanxi and last: Jacob Vita Pardo +[2018-02-13T00:29:47.235] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:29:47.218] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:29:47.261] [INFO] cheese - inserting 1000 documents. first: Turnberry Associates and last: File:Prince William School map.png +[2018-02-13T00:29:47.465] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:29:47.538] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:29:47.675] [INFO] cheese - inserting 1000 documents. first: Alexander Ivanov-Kramskoi and last: Template:Infobox philosopher/doc +[2018-02-13T00:29:47.675] [INFO] cheese - inserting 1000 documents. first: Khasi Katha and last: Category:Sara Bareilles video albums +[2018-02-13T00:29:47.762] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:29:47.805] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:29:48.043] [INFO] cheese - inserting 1000 documents. first: Henry B. Lembeck and last: 1906 Uruguayan Primera Division +[2018-02-13T00:29:48.057] [INFO] cheese - inserting 1000 documents. first: Eric Wasmann and last: Category:Japanese people of Ghanaian descent +[2018-02-13T00:29:48.129] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Wikititlesuffix and last: Brittas Empire +[2018-02-13T00:29:48.133] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:29:48.142] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:29:48.174] [INFO] cheese - inserting 1000 documents. first: Siege of Itami (1574) and last: Litchfield, Northern Territory +[2018-02-13T00:29:48.215] [INFO] cheese - batch complete in: 1.316 secs +[2018-02-13T00:29:48.247] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T00:29:48.257] [INFO] cheese - inserting 1000 documents. first: Old Bailey House and last: Life and Work of Ludwig van Beethoven +[2018-02-13T00:29:48.280] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Roel Reiné and last: Category:People from Pokrovsk Raion +[2018-02-13T00:29:48.314] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:29:48.330] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:29:48.392] [INFO] cheese - inserting 1000 documents. first: File:Pi-1.jpg and last: Wikipedia:Requests for comment/Magic Trick Instructions +[2018-02-13T00:29:48.436] [INFO] cheese - inserting 1000 documents. first: 1906–07 Nemzeti Bajnoksag I and last: 1995–96 Primera Divisio +[2018-02-13T00:29:48.458] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:29:48.461] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:29:48.564] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pcgamerweb.com and last: Gordon, Henry +[2018-02-13T00:29:48.598] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:29:48.651] [INFO] cheese - inserting 1000 documents. first: Second-order function and last: Mansfield Point +[2018-02-13T00:29:48.673] [INFO] cheese - batch complete in: 0.215 secs +[2018-02-13T00:29:48.770] [INFO] cheese - inserting 1000 documents. first: List of municipal districts in Nova Scotia and last: Crepereia (gens) +[2018-02-13T00:29:48.780] [INFO] cheese - inserting 1000 documents. first: Mirza Muhammad Ali and last: El Hajj Aboubacar Somparé +[2018-02-13T00:29:48.844] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:29:48.855] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:29:48.880] [INFO] cheese - inserting 1000 documents. first: Glenn M. Anderson and last: Online training +[2018-02-13T00:29:48.905] [INFO] cheese - inserting 1000 documents. first: Lofting and last: Edmonton municipal election, 1913 +[2018-02-13T00:29:48.972] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:29:48.981] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:29:49.013] [INFO] cheese - inserting 1000 documents. first: Grady, Henry and last: K203EH +[2018-02-13T00:29:49.062] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:29:49.132] [INFO] cheese - inserting 1000 documents. first: 2010 Liege–Bastogne–Liege and last: ChEMBLdb +[2018-02-13T00:29:49.265] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:29:49.341] [INFO] cheese - inserting 1000 documents. first: Saint Vincent de Paul and last: John Agyekum Kufuor +[2018-02-13T00:29:49.492] [INFO] cheese - batch complete in: 1.277 secs +[2018-02-13T00:29:49.507] [INFO] cheese - inserting 1000 documents. first: State Railway Workshops of Western Australia and last: Toxodont +[2018-02-13T00:29:49.513] [INFO] cheese - inserting 1000 documents. first: Atlamajalcingo del Monte (municipality) and last: Guangxi Institute for Nationality Studies +[2018-02-13T00:29:49.603] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:29:49.614] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:29:49.717] [INFO] cheese - inserting 1000 documents. first: Lise Deharme and last: Oleg Protsenko +[2018-02-13T00:29:49.722] [INFO] cheese - inserting 1000 documents. first: Museo Egizio, Florence and last: Yugoslavia/Zagreb +[2018-02-13T00:29:49.724] [INFO] cheese - inserting 1000 documents. first: File:Nymagpies.jpg and last: List of Tyler Perry's House of Payne episodes +[2018-02-13T00:29:49.778] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:29:49.785] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:29:49.776] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:29:49.845] [INFO] cheese - inserting 1000 documents. first: Category:1557 in Japan and last: Template:Fb team Gombe United +[2018-02-13T00:29:49.896] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:29:50.055] [INFO] cheese - inserting 1000 documents. first: Albert Edmunds Cahlan and last: Category:European American culture in Idaho +[2018-02-13T00:29:50.114] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:29:50.131] [INFO] cheese - inserting 1000 documents. first: Chicago band and last: Portal:Esperanto/Article of the month/August +[2018-02-13T00:29:50.161] [INFO] cheese - inserting 1000 documents. first: Template:Burma-archery-bio-stub and last: Category:Media of Sorsogon +[2018-02-13T00:29:50.189] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:29:50.212] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:29:50.481] [INFO] cheese - inserting 1000 documents. first: Szava and last: ELK (disambiguation) +[2018-02-13T00:29:50.538] [INFO] cheese - inserting 1000 documents. first: Draddy Gymnasium and last: Venerable Edmund Arrowsmith +[2018-02-13T00:29:50.611] [INFO] cheese - inserting 1000 documents. first: WA Conservation Council and last: File:Mayne Family Tomb.JPG +[2018-02-13T00:29:50.799] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T00:29:50.801] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T00:29:50.887] [INFO] cheese - batch complete in: 1.111 secs +[2018-02-13T00:29:51.147] [INFO] cheese - inserting 1000 documents. first: The Beast (comic books) and last: James I of Cyprus +[2018-02-13T00:29:51.382] [INFO] cheese - batch complete in: 1.89 secs +[2018-02-13T00:29:51.410] [INFO] cheese - inserting 1000 documents. first: Category:Folk albums by Bangladeshi artists and last: Park Beom-ho +[2018-02-13T00:29:51.428] [INFO] cheese - inserting 1000 documents. first: Home organ and last: Boots (The Killers song) +[2018-02-13T00:29:51.461] [INFO] cheese - inserting 1000 documents. first: Malini & Co. and last: Wikipedia:Articles for deletion/Peace Lines NGO +[2018-02-13T00:29:51.496] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:29:51.504] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Did you know/17 and last: Drosera (disambiguation) +[2018-02-13T00:29:51.505] [INFO] cheese - batch complete in: 1.391 secs +[2018-02-13T00:29:51.633] [INFO] cheese - batch complete in: 1.421 secs +[2018-02-13T00:29:51.655] [INFO] cheese - batch complete in: 1.466 secs +[2018-02-13T00:29:51.725] [INFO] cheese - inserting 1000 documents. first: Long-horned bison and last: Portal:Western Sahara/Quotes +[2018-02-13T00:29:51.732] [INFO] cheese - inserting 1000 documents. first: 1685 in England and last: Lucile packard foundation for children's health +[2018-02-13T00:29:51.777] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:29:51.809] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T00:29:51.886] [INFO] cheese - inserting 1000 documents. first: E510 (disambiguation) and last: Jaungulbene +[2018-02-13T00:29:51.920] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:29:51.922] [INFO] cheese - inserting 1000 documents. first: Jesús Colón Berlingeri and last: John Huddart +[2018-02-13T00:29:51.973] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:29:52.014] [INFO] cheese - inserting 1000 documents. first: K204EX and last: Nidzica castle +[2018-02-13T00:29:52.055] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:29:52.096] [INFO] cheese - inserting 1000 documents. first: Mentschlekhkeyt and last: Vaikom Muhammed Bashir +[2018-02-13T00:29:52.259] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:29:52.324] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dr650.zenseeker.net and last: Wikipedia:WikiProject Spam/LinkReports/referer.us +[2018-02-13T00:29:52.337] [INFO] cheese - inserting 1000 documents. first: Soeharto and last: Resona +[2018-02-13T00:29:52.350] [INFO] cheese - inserting 1000 documents. first: Psikhelekedana and last: File:Openportal mascot.png +[2018-02-13T00:29:52.375] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:29:52.402] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox New Zealand land wars and last: Baldi, Bernardino +[2018-02-13T00:29:52.428] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:29:52.459] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T00:29:52.496] [INFO] cheese - inserting 1000 documents. first: David Pendleton and last: Szeleslevelu +[2018-02-13T00:29:52.554] [INFO] cheese - inserting 1000 documents. first: Nuestra (La Vida Bohème Album) and last: Draft:Howell Tatum +[2018-02-13T00:29:52.563] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:29:52.641] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:29:52.738] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:29:52.917] [INFO] cheese - inserting 1000 documents. first: Deb fruend and last: Lauzon (disambiguation) +[2018-02-13T00:29:52.969] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:29:53.055] [INFO] cheese - inserting 1000 documents. first: Elk Hill (Nellysford, Virginia) and last: Lee Gooch +[2018-02-13T00:29:53.156] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T00:29:53.158] [INFO] cheese - inserting 1000 documents. first: Final Smash and last: Laramide Orogeny +[2018-02-13T00:29:53.209] [INFO] cheese - inserting 1000 documents. first: South Australian Art Gallery and last: Reference re Provincial Court Judges +[2018-02-13T00:29:53.217] [INFO] cheese - inserting 1000 documents. first: Category:New York University School of Medicine faculty and last: Hello, Emma +[2018-02-13T00:29:53.236] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:29:53.257] [INFO] cheese - inserting 1000 documents. first: Category:Kenyan physicians and last: Prothylacinidae +[2018-02-13T00:29:53.265] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:29:53.289] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:29:53.315] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:29:53.402] [INFO] cheese - inserting 1000 documents. first: Terry McDonald (disambiguation) and last: Adolph I, Prince of Anhalt-Kothen +[2018-02-13T00:29:53.500] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:29:53.548] [INFO] cheese - inserting 1000 documents. first: Saint-Médard, Haute-Garonne and last: Officer Colicchio +[2018-02-13T00:29:53.596] [INFO] cheese - inserting 1000 documents. first: Wanna Play a Game? and last: Richter, Henry +[2018-02-13T00:29:53.602] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:29:53.642] [INFO] cheese - inserting 1000 documents. first: Resona impact and last: Allied Control Authority (ACA) +[2018-02-13T00:29:53.652] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:29:53.666] [INFO] cheese - inserting 1000 documents. first: Pep Kelly and last: The Story of Thor +[2018-02-13T00:29:53.689] [INFO] cheese - inserting 1000 documents. first: Mladý muž a bílá velryba and last: Meyrick Booth +[2018-02-13T00:29:53.712] [INFO] cheese - batch complete in: 1.253 secs +[2018-02-13T00:29:53.721] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:29:53.728] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:29:53.742] [INFO] cheese - inserting 1000 documents. first: Voice Fantasia and last: Gulshan-e-Iqbal II +[2018-02-13T00:29:53.778] [INFO] cheese - inserting 1000 documents. first: Spulerina isonoma and last: Thomas and Friends – Series 1 +[2018-02-13T00:29:53.820] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:29:53.828] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:29:54.001] [INFO] cheese - inserting 1000 documents. first: Paolo Magrassi and last: Bürentogtokh, Khövsgöl +[2018-02-13T00:29:54.034] [INFO] cheese - inserting 1000 documents. first: Rowland, Henry and last: Kristina Háfoss +[2018-02-13T00:29:54.043] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:29:54.089] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:29:54.122] [INFO] cheese - inserting 1000 documents. first: Williamsburg Wizards and last: Workplaces +[2018-02-13T00:29:54.136] [INFO] cheese - inserting 1000 documents. first: Kathleen O'Connor (painter) and last: 1985–86 Clemson Tigers men's basketball team +[2018-02-13T00:29:54.150] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:29:54.174] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:29:54.177] [INFO] cheese - inserting 1000 documents. first: Macedonian numerals and last: Minuscule 44 +[2018-02-13T00:29:54.231] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:29:54.357] [INFO] cheese - inserting 1000 documents. first: Comalcalco and last: Moeraki +[2018-02-13T00:29:54.451] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:29:54.491] [INFO] cheese - inserting 1000 documents. first: Skata and last: Category:1994 in Namibia +[2018-02-13T00:29:54.507] [INFO] cheese - inserting 1000 documents. first: Polyarteritis nodos and last: Quercus subera +[2018-02-13T00:29:54.530] [INFO] cheese - inserting 1000 documents. first: D&E Entertainment and last: Sporting KC +[2018-02-13T00:29:54.536] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:29:54.537] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:29:54.574] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:29:54.611] [INFO] cheese - inserting 1000 documents. first: Farmington Canal State Park Trail and last: Liberal Democrat Party (Turkey) +[2018-02-13T00:29:54.666] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:29:54.692] [INFO] cheese - inserting 1000 documents. first: Akkrum and last: Wikipedia:Village pump/December 2003 archive 2 +[2018-02-13T00:29:54.755] [INFO] cheese - inserting 1000 documents. first: Template:Reference necessary/doc and last: WABG (AM) +[2018-02-13T00:29:54.789] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T00:29:54.817] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:29:54.897] [INFO] cheese - inserting 1000 documents. first: Category:Filipino people of Scottish descent and last: Aleksandrow, Nowy Dwor Mazowiecki County +[2018-02-13T00:29:54.910] [INFO] cheese - inserting 1000 documents. first: Template:New Zealand Squad 1988 Women's Cricket World Cup and last: K211FR +[2018-02-13T00:29:54.926] [INFO] cheese - inserting 1000 documents. first: Chotec and last: Camptonville, California +[2018-02-13T00:29:54.949] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:29:54.983] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:29:54.994] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:29:55.115] [INFO] cheese - inserting 1000 documents. first: Tiguentourine and last: File:MTV2 Guy Code.jpg +[2018-02-13T00:29:55.178] [INFO] cheese - inserting 1000 documents. first: Madame irma and last: Unwan +[2018-02-13T00:29:55.268] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:29:55.316] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:29:55.410] [INFO] cheese - inserting 1000 documents. first: Antonio Carlos Ortega and last: Galactic Orbiting Robot Force +[2018-02-13T00:29:55.468] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:29:55.524] [INFO] cheese - inserting 1000 documents. first: Aleksandrow, Opole Voivodeship and last: Karl-Heinrich Welzel +[2018-02-13T00:29:55.547] [INFO] cheese - inserting 1000 documents. first: EP1 receptor and last: Wikipedia:WikiProject Spam/Local/howtogetintograduateschool.com +[2018-02-13T00:29:55.565] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:29:55.616] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:29:55.675] [INFO] cheese - inserting 1000 documents. first: Sanfjallet and last: Wikipedia:Articles for deletion/Admiral Freebee +[2018-02-13T00:29:55.705] [INFO] cheese - inserting 1000 documents. first: Trusina case and last: 1 January 2013 +[2018-02-13T00:29:55.716] [INFO] cheese - inserting 1000 documents. first: Template:1973/74 Richmond dual premiership players and last: CAVLC +[2018-02-13T00:29:55.728] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:29:55.742] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:29:55.776] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:29:55.831] [INFO] cheese - inserting 1000 documents. first: Abolhassan Banisadr and last: Once & Again +[2018-02-13T00:29:55.833] [INFO] cheese - inserting 1000 documents. first: Time to React – Live! and last: Dave Hoskins +[2018-02-13T00:29:55.884] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:29:55.897] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T00:29:55.979] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/WikiD Writing Workshop Melbourne September 2015 and last: Quercus barbanthera +[2018-02-13T00:29:55.992] [INFO] cheese - inserting 1000 documents. first: Turbidity meter and last: Santuccione +[2018-02-13T00:29:56.028] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:29:56.033] [INFO] cheese - inserting 1000 documents. first: K22FS-D and last: VDE (disambiguation) +[2018-02-13T00:29:56.072] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:29:56.083] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:29:56.126] [INFO] cheese - inserting 1000 documents. first: Around The Way Girl and last: File:Teenage Fanclub Live 2003.JPG +[2018-02-13T00:29:56.170] [INFO] cheese - inserting 1000 documents. first: Texan flag and last: Almost Grown +[2018-02-13T00:29:56.176] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:29:56.184] [INFO] cheese - inserting 1000 documents. first: KLSR-TV and last: Andrew P. O'Rourke +[2018-02-13T00:29:56.211] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:29:56.232] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:29:56.340] [INFO] cheese - inserting 1000 documents. first: Quercus barbeyana and last: Queen Amina Statue +[2018-02-13T00:29:56.377] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:29:56.440] [INFO] cheese - inserting 1000 documents. first: Urine cytology and last: Academy of Fine Arts Karlsruhe +[2018-02-13T00:29:56.458] [INFO] cheese - inserting 1000 documents. first: Category:Disasters in New Brunswick and last: Julia kwan +[2018-02-13T00:29:56.461] [INFO] cheese - inserting 1000 documents. first: Woman of the World (disambiguation) and last: Bill Ballenger +[2018-02-13T00:29:56.535] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:29:56.558] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:29:56.623] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:29:56.739] [INFO] cheese - inserting 1000 documents. first: File:Senator Xenophon Pierce.jpg and last: File:FarelDalrymple APE04.jpg +[2018-02-13T00:29:56.780] [INFO] cheese - inserting 1000 documents. first: La Spezia-Rimini line and last: File:Mister Jones.jpg +[2018-02-13T00:29:56.790] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:29:56.868] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:29:56.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2015 September and last: Fremantle School building +[2018-02-13T00:29:56.899] [INFO] cheese - inserting 1000 documents. first: Honours of the Principality of Wales and last: Charolais cattle +[2018-02-13T00:29:56.934] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:29:56.946] [INFO] cheese - inserting 1000 documents. first: Action of 14 February 1944 and last: Wikipedia:WikiProject Spam/LinkReports/mikroe.com +[2018-02-13T00:29:56.973] [INFO] cheese - inserting 1000 documents. first: Category:Endosymbiotic events and last: Pontifical Confutation of the Augsburg Confession +[2018-02-13T00:29:56.973] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:29:56.976] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T00:29:57.017] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:29:57.128] [INFO] cheese - inserting 1000 documents. first: Greek Macedonian Empire and last: Red Sox Hitting Coach +[2018-02-13T00:29:57.207] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:29:57.218] [INFO] cheese - inserting 1000 documents. first: Huautla (municipality of Hidalgo) and last: Mr Justice Blackburn +[2018-02-13T00:29:57.248] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mikroe.com and last: Andras Visky +[2018-02-13T00:29:57.259] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:29:57.275] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:29:57.335] [INFO] cheese - inserting 1000 documents. first: Banyash Roumanians and last: Ruby (1992 film) +[2018-02-13T00:29:57.336] [INFO] cheese - inserting 1000 documents. first: Sven Olof Andersson and last: Specialised agency +[2018-02-13T00:29:57.370] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:29:57.382] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:29:57.425] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Pages needing attention/Forestry and last: Abantis amneris +[2018-02-13T00:29:57.486] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:29:57.540] [INFO] cheese - inserting 1000 documents. first: Andrasfa and last: Aninoasa River (Dambovita) +[2018-02-13T00:29:57.572] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:29:57.659] [INFO] cheese - inserting 1000 documents. first: Silvie von Ziegesar and last: Category:People from Burlington, New York +[2018-02-13T00:29:57.661] [INFO] cheese - inserting 1000 documents. first: Sci-fi (tv channel) and last: National Unity (Peru) +[2018-02-13T00:29:57.677] [INFO] cheese - inserting 1000 documents. first: Category:Diamond Rio albums and last: Hg (software) +[2018-02-13T00:29:57.695] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:29:57.727] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:29:57.730] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:29:57.785] [INFO] cheese - inserting 1000 documents. first: Aniol Dowgird and last: Saab RBS-70 +[2018-02-13T00:29:57.815] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T00:29:57.833] [INFO] cheese - inserting 1000 documents. first: Category:Taiwanese beauty pageant winners and last: 2011 Marbella Cup +[2018-02-13T00:29:57.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/T. K. Abdullah and last: File:SpongeBob SquarePants characters cast.png +[2018-02-13T00:29:57.895] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:29:57.977] [INFO] cheese - inserting 1000 documents. first: Suimenkul Chokmorov and last: Ballycogley +[2018-02-13T00:29:57.979] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:29:58.077] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:29:58.289] [INFO] cheese - inserting 1000 documents. first: Die schonsten Melodien aus Derrick & der Alte and last: Amicable Contributionship for the Insurance of Houses against Fire +[2018-02-13T00:29:58.325] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Youtubek and last: D524 (Croatia) +[2018-02-13T00:29:58.337] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:29:58.357] [INFO] cheese - inserting 1000 documents. first: Spotted bowerbird and last: Category:Uchibō Line +[2018-02-13T00:29:58.369] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Zhang Lu (Han dynasty) and last: Mangubat +[2018-02-13T00:29:58.371] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:29:58.434] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:29:58.438] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:29:58.508] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/PennyMarketing/Archive and last: Vincent Moore +[2018-02-13T00:29:58.561] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:29:58.666] [INFO] cheese - inserting 1000 documents. first: D525 (Croatia) and last: Template:Two digit year except 00 +[2018-02-13T00:29:58.745] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians by alma mater: University of Leeds and last: File:JetpackEditor.gif +[2018-02-13T00:29:58.762] [INFO] cheese - inserting 1000 documents. first: Unidad Nacional and last: Cherokee Indian Normal School of Robeson County +[2018-02-13T00:29:58.764] [INFO] cheese - inserting 1000 documents. first: Daniel Meyer and last: Peter Nery +[2018-02-13T00:29:58.774] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:29:58.824] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:29:58.838] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:29:58.882] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T00:29:58.950] [INFO] cheese - inserting 1000 documents. first: Antipapacy and last: Gaetano Cardinal Cicognani +[2018-02-13T00:29:59.004] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:29:59.009] [INFO] cheese - inserting 1000 documents. first: Qushijeh and last: Kim Hyun-Soo (disambiguation) +[2018-02-13T00:29:59.026] [INFO] cheese - inserting 1000 documents. first: Kot Addu Tehsil and last: Avrille, Maine-et-Loire +[2018-02-13T00:29:59.051] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:29:59.082] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:29:59.143] [INFO] cheese - inserting 1000 documents. first: Synthetic viability and last: Category:Prehistory of Europe +[2018-02-13T00:29:59.217] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:29:59.370] [INFO] cheese - inserting 1000 documents. first: Olympia CFR Satu Mare and last: Bare (Gorazde) +[2018-02-13T00:29:59.413] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:29:59.457] [INFO] cheese - inserting 1000 documents. first: United States Ambassador to Hungary and last: Street railways in Poznań +[2018-02-13T00:29:59.466] [INFO] cheese - inserting 1000 documents. first: Bi-blue and last: First Baptist Church of Eufaula +[2018-02-13T00:29:59.509] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:29:59.511] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:29:59.548] [INFO] cheese - inserting 1000 documents. first: Benderson and last: List of Vice Presidents of Botswana +[2018-02-13T00:29:59.589] [INFO] cheese - inserting 1000 documents. first: Raddock and last: Category:Populated places in Hamadan County +[2018-02-13T00:29:59.597] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:29:59.615] [INFO] cheese - inserting 1000 documents. first: Arthur Albohn and last: Mui Airport +[2018-02-13T00:29:59.631] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:29:59.663] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:29:59.696] [INFO] cheese - inserting 1000 documents. first: Jonathan Lewis Seward and last: Belk, Silesian Voivodeship +[2018-02-13T00:29:59.737] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:29:59.907] [INFO] cheese - inserting 1000 documents. first: Jaan Viik and last: Health care in Europe +[2018-02-13T00:29:59.958] [INFO] cheese - inserting 1000 documents. first: ISN 151 and last: Template:Archive bar +[2018-02-13T00:29:59.976] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:30:00.045] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:30:00.058] [INFO] cheese - inserting 1000 documents. first: Category:Asian Games cricketers and last: Bialopole, Lublin Voivodeship +[2018-02-13T00:30:00.089] [INFO] cheese - inserting 1000 documents. first: Pembroke State College for Indians and last: Cambyses I +[2018-02-13T00:30:00.109] [INFO] cheese - inserting 1000 documents. first: Solomon Richards and last: Pavel Chihuán +[2018-02-13T00:30:00.130] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:30:00.155] [INFO] cheese - inserting 1000 documents. first: Vice President of Botswana and last: Velocisaurus +[2018-02-13T00:30:00.157] [INFO] cheese - inserting 1000 documents. first: Template:HamadanCounty-geo-stub and last: New Zealand Army Long Service and Good Conduct Medal +[2018-02-13T00:30:00.159] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:30:00.165] [INFO] cheese - batch complete in: 1.283 secs +[2018-02-13T00:30:00.222] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:30:00.229] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:30:00.414] [INFO] cheese - inserting 1000 documents. first: SmithKline and French and last: Ottone Enrico del Caretto, Marquis of Savona +[2018-02-13T00:30:00.478] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:30:00.546] [INFO] cheese - inserting 1000 documents. first: Bialoskory, Lublin Voivodeship and last: Mount Tempyo +[2018-02-13T00:30:00.573] [INFO] cheese - inserting 1000 documents. first: ISN 094 and last: Majorca rail network +[2018-02-13T00:30:00.599] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:30:00.630] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mailzzang+aus and last: Category:African people of Berber descent +[2018-02-13T00:30:00.688] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:30:00.727] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:30:00.744] [INFO] cheese - inserting 1000 documents. first: Category:American emigrants to the Turks and Caicos Islands and last: Chilla-Kimsa Chata mountain range +[2018-02-13T00:30:00.772] [INFO] cheese - inserting 1000 documents. first: Otakar Vavra and last: The Fairmont Burrard Landing +[2018-02-13T00:30:00.794] [INFO] cheese - inserting 1000 documents. first: Category:Israeli weightlifters and last: Carole Weatherford +[2018-02-13T00:30:00.802] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:30:00.829] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:30:00.839] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:30:01.040] [INFO] cheese - inserting 1000 documents. first: Bayly, Susan and last: Death of Darren Goforth +[2018-02-13T00:30:01.095] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:30:01.271] [INFO] cheese - inserting 1000 documents. first: African red snappers and last: Lachine, Québec +[2018-02-13T00:30:01.294] [INFO] cheese - inserting 1000 documents. first: Ersilia mediterranea and last: Sterling Hill, CT +[2018-02-13T00:30:01.358] [INFO] cheese - inserting 1000 documents. first: Ira William "Bill" McCollum, Jr. and last: Phoma trifolii +[2018-02-13T00:30:01.379] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:30:01.399] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:30:01.475] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:30:01.499] [INFO] cheese - inserting 1000 documents. first: Réunion ibis and last: Worker-communist Party of Iraq +[2018-02-13T00:30:01.518] [INFO] cheese - inserting 1000 documents. first: Tenpyo Zan and last: Soho, Birmingham +[2018-02-13T00:30:01.632] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T00:30:01.636] [INFO] cheese - inserting 1000 documents. first: Mark Denny and last: Percy Westerman +[2018-02-13T00:30:01.721] [INFO] cheese - inserting 1000 documents. first: List of graduate student associations and last: Wikipedia:WikiProject Spam/LinkReports/tankmemorial.vpweb.co.uk +[2018-02-13T00:30:01.726] [INFO] cheese - batch complete in: 1.561 secs +[2018-02-13T00:30:01.792] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T00:30:01.841] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:30:01.956] [INFO] cheese - inserting 1000 documents. first: 3 Dots and last: Category:Jamaican actresses +[2018-02-13T00:30:02.011] [INFO] cheese - inserting 1000 documents. first: Turner Sports and last: David Austin Starkweather +[2018-02-13T00:30:02.022] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:30:02.060] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:30:02.240] [INFO] cheese - inserting 1000 documents. first: Jean E. Riachi and last: Category:LGBT culture in New Zealand +[2018-02-13T00:30:02.305] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T00:30:02.341] [INFO] cheese - inserting 1000 documents. first: Kerenhappuch and last: Tavola +[2018-02-13T00:30:02.389] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/tankmemorial.vpweb.co.uk and last: Montana Stockgrowers Association +[2018-02-13T00:30:02.437] [INFO] cheese - inserting 1000 documents. first: Missouri gubernatorial special election, 1825 and last: Anri (given name) +[2018-02-13T00:30:02.438] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:30:02.450] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:30:02.772] [INFO] cheese - inserting 1000 documents. first: Bill Lienhard and last: File:WorkBuggy.jpg +[2018-02-13T00:30:03.112] [INFO] cheese - inserting 1000 documents. first: Long's Regiment and last: M. Cantor +[2018-02-13T00:30:03.129] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T00:30:03.180] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T00:30:03.400] [INFO] cheese - batch complete in: 1.607 secs +[2018-02-13T00:30:03.512] [INFO] cheese - inserting 1000 documents. first: File:1astivers.PNG and last: Vasyl Mykhaylovych Ivanchuk +[2018-02-13T00:30:03.596] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T00:30:03.752] [INFO] cheese - inserting 1000 documents. first: Penny Greely and last: Template:2016 AL West standings/doc +[2018-02-13T00:30:03.784] [INFO] cheese - inserting 1000 documents. first: Backworth Hoard and last: Times Like These (Kid Rock song) +[2018-02-13T00:30:03.787] [INFO] cheese - batch complete in: 1.349 secs +[2018-02-13T00:30:03.840] [INFO] cheese - inserting 1000 documents. first: Brady Seals the Truth and last: Henry D. Bonilla +[2018-02-13T00:30:03.866] [INFO] cheese - batch complete in: 1.416 secs +[2018-02-13T00:30:03.869] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:30:03.896] [INFO] cheese - inserting 1000 documents. first: Candida dubliniensis and last: Michelle Thomas +[2018-02-13T00:30:03.929] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in the Falkland Islands by decade and last: Khislavichsky +[2018-02-13T00:30:03.969] [INFO] cheese - batch complete in: 2.242 secs +[2018-02-13T00:30:03.975] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:30:04.105] [INFO] cheese - inserting 1000 documents. first: Trichia sericea and last: Mumbai Rajdhani Express +[2018-02-13T00:30:04.130] [INFO] cheese - inserting 1000 documents. first: Category:Spandau Ballet albums and last: Behind the sofa +[2018-02-13T00:30:04.148] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:30:04.186] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:30:04.194] [INFO] cheese - inserting 1000 documents. first: Ivan Tkachenko (disambiguation) and last: Category:Conservative Party Prime Ministers of the United Kingdom +[2018-02-13T00:30:04.199] [INFO] cheese - inserting 1000 documents. first: Henry Cassel and last: Staining wood +[2018-02-13T00:30:04.201] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Travis Jeppesen and last: Daniel Lyon (disambiguation) +[2018-02-13T00:30:04.234] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:30:04.252] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:30:04.250] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:30:04.355] [INFO] cheese - inserting 1000 documents. first: Khislavichskiy and last: Multiple Rounds Simultaneous Impact +[2018-02-13T00:30:04.403] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:30:04.464] [INFO] cheese - inserting 1000 documents. first: CFU-GM and last: Münchenstein castle (Schloss) +[2018-02-13T00:30:04.485] [INFO] cheese - inserting 1000 documents. first: Hananiah ben Teradyon and last: Jethro Hatch +[2018-02-13T00:30:04.519] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:30:04.552] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:30:04.592] [INFO] cheese - inserting 1000 documents. first: File:Thungapuram Ayyannar Temple Infant view -1.JPG and last: Wikipedia:0.8/Index/D3 +[2018-02-13T00:30:04.621] [INFO] cheese - inserting 1000 documents. first: Kim Namjoon and last: Agra Rural Vidhan Sabha constituency +[2018-02-13T00:30:04.626] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:30:04.681] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:30:04.775] [INFO] cheese - inserting 1000 documents. first: Stress concentration factor and last: Colorado state route 391 +[2018-02-13T00:30:04.790] [INFO] cheese - inserting 1000 documents. first: Byron Dobell and last: MasterCuts +[2018-02-13T00:30:04.815] [INFO] cheese - inserting 1000 documents. first: KVLO and last: Joseph Hutcheson +[2018-02-13T00:30:04.826] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:30:04.827] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:30:04.841] [INFO] cheese - inserting 1000 documents. first: Janata Dal (United) and last: Islamic Republic of Iran Air Force +[2018-02-13T00:30:04.856] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:30:04.925] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:30:05.022] [INFO] cheese - inserting 1000 documents. first: Vernon Haynes and last: Long-capsule suncup +[2018-02-13T00:30:05.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/COSMOLOGY. DIFFERENCES AND HYERARCHY OF INFINITE SETS BY THE EXAMPLE OF MULTIDIMENSIONAL SPACES AND SOME RELATIONS OF THESE SPACES, AND A BIT ABOUT THE UNIVERSE and last: Mann, Michael +[2018-02-13T00:30:05.080] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:30:05.104] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:30:05.116] [INFO] cheese - inserting 1000 documents. first: Bjorøyl and last: Muriel H. Brown +[2018-02-13T00:30:05.139] [INFO] cheese - inserting 1000 documents. first: Wikipedia:0.8/Index/D4 and last: Borne, Mysliborz County +[2018-02-13T00:30:05.180] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:30:05.197] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:30:05.212] [INFO] cheese - inserting 1000 documents. first: EC 1.11.1.20 and last: Catechol 2,3-oxygenase +[2018-02-13T00:30:05.304] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Randal McCloy and last: File:Wikitaconiccarnival.jpg +[2018-02-13T00:30:05.321] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:30:05.351] [INFO] cheese - inserting 1000 documents. first: Manning, Michael and last: Category:1725 in the Holy Roman Empire +[2018-02-13T00:30:05.357] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:30:05.391] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:30:05.451] [INFO] cheese - inserting 1000 documents. first: Heartleaf suncup and last: Mayor of danbury CT U.S.A +[2018-02-13T00:30:05.463] [INFO] cheese - inserting 1000 documents. first: Borojevici and last: Brezje pri Dovskem +[2018-02-13T00:30:05.487] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:30:05.509] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:30:05.609] [INFO] cheese - inserting 1000 documents. first: Circle Link and last: Robert Enoch Withers +[2018-02-13T00:30:05.644] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:30:05.715] [INFO] cheese - inserting 1000 documents. first: Brezje pri Poljcanah and last: Bukowina, Jaroslaw County +[2018-02-13T00:30:05.740] [INFO] cheese - batch complete in: 0.253 secs +[2018-02-13T00:30:05.744] [INFO] cheese - inserting 1000 documents. first: The Sarong Girl and last: MV Kwuna +[2018-02-13T00:30:05.747] [INFO] cheese - inserting 1000 documents. first: Category:1732 in the Holy Roman Empire and last: Emeroleter levis +[2018-02-13T00:30:05.773] [INFO] cheese - inserting 1000 documents. first: John H. Mickey and last: Empress/McNeill Spectra Energy Aerodrome +[2018-02-13T00:30:05.785] [INFO] cheese - inserting 1000 documents. first: Air Forces and last: Autonomous prefecture +[2018-02-13T00:30:05.799] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:30:05.795] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:30:05.867] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:30:05.906] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T00:30:06.013] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2009 January 1 and last: Robert Müller (Ice Hockey Player) +[2018-02-13T00:30:06.016] [INFO] cheese - inserting 1000 documents. first: Davis family card game and last: Thomas A. D. Fessenden +[2018-02-13T00:30:06.054] [INFO] cheese - inserting 1000 documents. first: Bukowina, Piotrkow County and last: Nikolaisen +[2018-02-13T00:30:06.068] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:30:06.068] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:30:06.082] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:30:06.147] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Emeroleter and last: James Riddell (disambiguation) +[2018-02-13T00:30:06.176] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:30:06.260] [INFO] cheese - inserting 1000 documents. first: Campo Largo do Piaui and last: CS Flacara Moreni +[2018-02-13T00:30:06.276] [INFO] cheese - inserting 1000 documents. first: Category:Wrestling at the 2006 Asian Games and last: Neustrashimy class destroyer +[2018-02-13T00:30:06.283] [INFO] cheese - batch complete in: 0.201 secs +[2018-02-13T00:30:06.295] [INFO] cheese - inserting 1000 documents. first: Per-Gunnar Andersson (rally driver) and last: Platanovrissi +[2018-02-13T00:30:06.322] [INFO] cheese - batch complete in: 0.254 secs +[2018-02-13T00:30:06.368] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:30:06.418] [INFO] cheese - inserting 1000 documents. first: 7th Marines and last: Wikipedia:Articles for deletion/Philosophical Institute +[2018-02-13T00:30:06.479] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:30:06.486] [INFO] cheese - inserting 1000 documents. first: Charlie Ernst and last: Films about mohammed +[2018-02-13T00:30:06.490] [INFO] cheese - inserting 1000 documents. first: Amy Whelan and last: Gymnastics at the 2015 African Games +[2018-02-13T00:30:06.538] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:30:06.551] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:30:06.569] [INFO] cheese - inserting 1000 documents. first: 50th Nova Scotia general election and last: Template:Historical parties in Turkey +[2018-02-13T00:30:06.616] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:30:06.618] [INFO] cheese - inserting 1000 documents. first: Platanovrisi and last: Molly Ockett +[2018-02-13T00:30:06.663] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:30:06.702] [INFO] cheese - inserting 1000 documents. first: Bagram Airbase and last: Cynog Dafis +[2018-02-13T00:30:06.762] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T00:30:06.793] [INFO] cheese - inserting 1000 documents. first: Quail class destroyer and last: Thresher/Permit class submarine +[2018-02-13T00:30:06.829] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:30:06.853] [INFO] cheese - inserting 1000 documents. first: Ebiquity and last: Calybites securinella +[2018-02-13T00:30:06.856] [INFO] cheese - inserting 1000 documents. first: Tooth bleaching and last: VoteSpotter +[2018-02-13T00:30:06.891] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:30:06.899] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:30:06.946] [INFO] cheese - inserting 1000 documents. first: Jeremiah Masoli and last: Woolly fern +[2018-02-13T00:30:06.975] [INFO] cheese - inserting 1000 documents. first: File:GMMB title.jpg and last: Category:Cambridge City F.C. players +[2018-02-13T00:30:06.976] [INFO] cheese - inserting 1000 documents. first: San Pietro in Casale and last: Hemorrhagic stroke +[2018-02-13T00:30:06.990] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:30:07.013] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:30:07.154] [INFO] cheese - inserting 1000 documents. first: Caloptilia securinella and last: Category:Project-Class Fencing articles +[2018-02-13T00:30:07.167] [INFO] cheese - inserting 1000 documents. first: Draft:The Sky Has Fallen and last: Roscoe Seely Conkling +[2018-02-13T00:30:07.183] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:30:07.216] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:30:07.225] [INFO] cheese - inserting 1000 documents. first: Tench class submarine and last: Nippon (aircraft) +[2018-02-13T00:30:07.241] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:30:07.281] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:30:07.481] [INFO] cheese - inserting 1000 documents. first: Mount Robertson (Antarctica) and last: Cehovice +[2018-02-13T00:30:07.501] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Paul Theroux and last: Dan Marriott +[2018-02-13T00:30:07.505] [INFO] cheese - inserting 1000 documents. first: Ländches Railway and last: Squatter (pastoral) +[2018-02-13T00:30:07.504] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:30:07.539] [INFO] cheese - inserting 1000 documents. first: K221DQ and last: Wikipedia:Articles for deletion/Rafiq Subaie +[2018-02-13T00:30:07.550] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:30:07.561] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 142 BC and last: HIF hydroxylase +[2018-02-13T00:30:07.581] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:30:07.605] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:30:07.639] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:30:07.691] [INFO] cheese - inserting 1000 documents. first: Whirlwind USA and last: Eston Airport +[2018-02-13T00:30:07.742] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:30:07.760] [INFO] cheese - inserting 1000 documents. first: Cehovini and last: Saint Monance +[2018-02-13T00:30:07.792] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:30:07.867] [INFO] cheese - inserting 1000 documents. first: Blackburnian warbler and last: ZFV +[2018-02-13T00:30:07.904] [INFO] cheese - inserting 1000 documents. first: Lander, Venezuela and last: Dilbert's Desktop Toys +[2018-02-13T00:30:07.924] [INFO] cheese - inserting 1000 documents. first: Eulima crossei and last: Template:Attached KML/Maryland Route 364 +[2018-02-13T00:30:07.935] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T00:30:07.941] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:30:07.962] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:30:08.035] [INFO] cheese - inserting 1000 documents. first: Zheng Xunyu and last: Osage Village State Historic Site +[2018-02-13T00:30:08.083] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:30:08.118] [INFO] cheese - inserting 1000 documents. first: Windmill (Transformers) and last: Category:Government ministers of the Federated States of Micronesia +[2018-02-13T00:30:08.136] [INFO] cheese - inserting 1000 documents. first: Category:1434 establishments in the Holy Roman Empire and last: File:St. Petersburg Pier September 2015.jpg +[2018-02-13T00:30:08.151] [INFO] cheese - inserting 1000 documents. first: CJR4 and last: Chagrin Falls (song) +[2018-02-13T00:30:08.155] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:30:08.192] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:30:08.194] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:30:08.243] [INFO] cheese - inserting 1000 documents. first: Template:Rus CUT Stadium and last: Category:United States House of Representatives elections, 1855 +[2018-02-13T00:30:08.271] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T00:30:08.290] [INFO] cheese - inserting 1000 documents. first: Category:Lebanese painters and last: La Tombe +[2018-02-13T00:30:08.345] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:30:08.373] [INFO] cheese - inserting 1000 documents. first: Chateau de Kolbsheim and last: Chotow, Swietokrzyskie Voivodeship +[2018-02-13T00:30:08.415] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:30:08.578] [INFO] cheese - inserting 1000 documents. first: Chotycany and last: Ciro Diaz +[2018-02-13T00:30:08.596] [INFO] cheese - batch complete in: 0.181 secs +[2018-02-13T00:30:08.625] [INFO] cheese - inserting 1000 documents. first: ZDJ and last: Preston Bissett +[2018-02-13T00:30:08.627] [INFO] cheese - inserting 1000 documents. first: Maxime Lacroix and last: Yeshu ben Pandera +[2018-02-13T00:30:08.630] [INFO] cheese - inserting 1000 documents. first: Category:2015 in sailing and last: Category:People extradited from Australia +[2018-02-13T00:30:08.634] [INFO] cheese - inserting 1000 documents. first: Patricia Haruna and last: Wikipedia:Arbitration Committee Elections January 2006/Vote/Everyking +[2018-02-13T00:30:08.665] [INFO] cheese - inserting 1000 documents. first: Stand by Me What you See Is What you Get and last: Attila Simon (footballer born in 1979) +[2018-02-13T00:30:08.669] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:30:08.672] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:30:08.677] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:30:08.684] [INFO] cheese - inserting 1000 documents. first: Juan Francisco Lombardo and last: Template:TV Newscaf Aus +[2018-02-13T00:30:08.689] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:30:08.712] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:30:08.762] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:30:08.809] [INFO] cheese - inserting 1000 documents. first: Ciro Truhelka and last: Template:Gulf and Ohio Railways +[2018-02-13T00:30:08.835] [INFO] cheese - batch complete in: 0.239 secs +[2018-02-13T00:30:09.006] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Consortium of Liberal Arts Colleges and last: De Stem des Bloed +[2018-02-13T00:30:09.020] [INFO] cheese - inserting 1000 documents. first: Auburn Community Mausoleum and last: Wikipedia:Administrators' noticeboard/IncidentArchive898 +[2018-02-13T00:30:09.022] [INFO] cheese - inserting 1000 documents. first: Moxon and last: Specularite +[2018-02-13T00:30:09.044] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:30:09.075] [INFO] cheese - inserting 1000 documents. first: Kumari kandam and last: Legislation on hunting with dogs +[2018-02-13T00:30:09.098] [INFO] cheese - inserting 1000 documents. first: Category:Rider University and last: Category:Eastern Lombard language +[2018-02-13T00:30:09.102] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:30:09.104] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:30:09.103] [INFO] cheese - inserting 1000 documents. first: Commercial space station and last: Rave Mobile Safety +[2018-02-13T00:30:09.119] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:30:09.174] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:30:09.179] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:30:09.320] [INFO] cheese - inserting 1000 documents. first: Njai Siti and last: Hoseynabad-e Shamlu +[2018-02-13T00:30:09.362] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:30:09.463] [INFO] cheese - inserting 1000 documents. first: M.S. Babu Raj and last: Melanie Figueroa +[2018-02-13T00:30:09.553] [INFO] cheese - inserting 1000 documents. first: Theatre of War and last: Chester Straub +[2018-02-13T00:30:09.565] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:30:09.577] [INFO] cheese - inserting 1000 documents. first: Inquisitor (search software) and last: Division Bath, Chicago +[2018-02-13T00:30:09.578] [INFO] cheese - inserting 1000 documents. first: Category:573 by continent and last: File:Aalstlogo.jpg +[2018-02-13T00:30:09.631] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:30:09.636] [INFO] cheese - inserting 1000 documents. first: Coracao de Jesus Basilica and last: Mount Hay +[2018-02-13T00:30:09.657] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:30:09.663] [INFO] cheese - inserting 1000 documents. first: Screen magnifier and last: Odalist +[2018-02-13T00:30:09.668] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:30:09.692] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:30:09.723] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T00:30:09.816] [INFO] cheese - inserting 1000 documents. first: File:The Nutt House.jpg and last: File:Peter Henry Emerson (British, born Cuba - Pictures of East Anglian Life. Illustrated with Thirty-Two Photogravures and Fifteen Small Illustrat... - Google Art Project.jpg +[2018-02-13T00:30:09.849] [INFO] cheese - inserting 1000 documents. first: Farm Road 1960 and last: Jack R. Williams +[2018-02-13T00:30:09.870] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:30:09.898] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:30:09.995] [INFO] cheese - inserting 1000 documents. first: Template:Fb team WRB M'Sila and last: File:Solomons Club - Tecmo - Game Boy box art.jpg +[2018-02-13T00:30:10.043] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:30:10.070] [INFO] cheese - inserting 1000 documents. first: File:Greinacher circuit.svg and last: Kenji Takahashi (footballer, born 1985) +[2018-02-13T00:30:10.094] [INFO] cheese - inserting 1000 documents. first: St Mary’s Church, Wreay and last: The Pinnacle (Cleveland) +[2018-02-13T00:30:10.105] [INFO] cheese - inserting 1000 documents. first: Jacob Schowalter and last: Napoleon Brown +[2018-02-13T00:30:10.117] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:30:10.124] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:30:10.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Aecis and last: Cléo from 5 to 7 +[2018-02-13T00:30:10.139] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:30:10.170] [INFO] cheese - inserting 1000 documents. first: Category:Google Art Project works by Rafael Martínez Padilla and last: Category:Agriculture in Northern Africa +[2018-02-13T00:30:10.178] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:30:10.203] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:30:10.241] [INFO] cheese - inserting 1000 documents. first: Jarolim and last: Dabrowki, Podlaskie Voivodeship +[2018-02-13T00:30:10.272] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:30:10.371] [INFO] cheese - inserting 1000 documents. first: Nathan Matthews and last: Lay of Thrym +[2018-02-13T00:30:10.406] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T00:30:10.426] [INFO] cheese - inserting 1000 documents. first: Viceroyalties of New Spain and last: Sacred fire of Vesta +[2018-02-13T00:30:10.460] [INFO] cheese - inserting 1000 documents. first: Imperial anthem and last: Jarvis Christian +[2018-02-13T00:30:10.479] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:30:10.484] [INFO] cheese - inserting 1000 documents. first: Crnkamenska Kula and last: Walking Bout Company +[2018-02-13T00:30:10.503] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:30:10.519] [INFO] cheese - inserting 1000 documents. first: Antonio Mucci and last: 39th Army (People's Republic of China) +[2018-02-13T00:30:10.527] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:30:10.550] [INFO] cheese - inserting 1000 documents. first: Sir Charles Cameron Lees and last: Marika hase +[2018-02-13T00:30:10.573] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:30:10.631] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:30:10.633] [INFO] cheese - inserting 1000 documents. first: Johannes Pullois and last: Barton-le-clay +[2018-02-13T00:30:10.718] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:30:10.780] [INFO] cheese - inserting 1000 documents. first: Fomes geotropus and last: CLi2O3 +[2018-02-13T00:30:10.821] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:30:10.862] [INFO] cheese - inserting 1000 documents. first: X-ray telescopes and last: Mingus Mountain Academy +[2018-02-13T00:30:10.896] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:30:10.898] [INFO] cheese - inserting 1000 documents. first: Hockey at the 2002 Commonwealth Games – Men's tournament and last: Category:Translated pages +[2018-02-13T00:30:10.942] [INFO] cheese - inserting 1000 documents. first: Panthera onca centralis and last: Parisoma (genus) +[2018-02-13T00:30:10.948] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:30:10.957] [INFO] cheese - inserting 1000 documents. first: Ernie Rea and last: This Is Me (Camp Rock song) +[2018-02-13T00:30:10.991] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:30:11.000] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:30:11.062] [INFO] cheese - inserting 1000 documents. first: CMgO3 and last: Royal Malaysia Police +[2018-02-13T00:30:11.089] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:30:11.107] [INFO] cheese - inserting 1000 documents. first: William Vander Zalm and last: Interval class +[2018-02-13T00:30:11.191] [INFO] cheese - inserting 1000 documents. first: Canadian Prairie Provinces and last: Just a Game Stakes +[2018-02-13T00:30:11.207] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:30:11.226] [INFO] cheese - inserting 1000 documents. first: Double Clutch and last: Steve White-Cooper +[2018-02-13T00:30:11.259] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:30:11.283] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:30:11.351] [INFO] cheese - inserting 1000 documents. first: Template:WP Television and last: 1998 Kentucky Wildcats football team +[2018-02-13T00:30:11.401] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:30:11.405] [INFO] cheese - inserting 1000 documents. first: File:Dragonconlogo.png and last: Chester Culver +[2018-02-13T00:30:11.425] [INFO] cheese - inserting 1000 documents. first: Buffet Group and last: The Mad Empress +[2018-02-13T00:30:11.462] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:30:11.503] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:30:11.507] [INFO] cheese - inserting 1000 documents. first: Garett Jones and last: Phallus cinnabarinus +[2018-02-13T00:30:11.564] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:30:11.624] [INFO] cheese - inserting 1000 documents. first: Phyllonorycter aurifascia and last: 2B11 +[2018-02-13T00:30:11.672] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:30:11.712] [INFO] cheese - inserting 1000 documents. first: Shipwrecked: Battle of the Islands 2008 and last: Chiltern Edge School +[2018-02-13T00:30:11.737] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:30:11.851] [INFO] cheese - inserting 1000 documents. first: Template:Seoul National University and last: Wikipedia:Templates for deletion/Log/2009 January 4 +[2018-02-13T00:30:11.888] [INFO] cheese - inserting 1000 documents. first: "Saucy Jacky" postcard and last: Category:1988 in female bodybuilding +[2018-02-13T00:30:11.916] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:30:11.950] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:30:12.027] [INFO] cheese - inserting 1000 documents. first: M151 A2 and last: Mare Vitalis +[2018-02-13T00:30:12.037] [INFO] cheese - inserting 1000 documents. first: Harry Lee Carrico and last: Elnur Mammadli +[2018-02-13T00:30:12.061] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:30:12.070] [INFO] cheese - inserting 1000 documents. first: List of cities in Orissa by population and last: African immigrants to Lithuania +[2018-02-13T00:30:12.093] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T00:30:12.109] [INFO] cheese - inserting 1000 documents. first: Hikitsuke-kata and last: Awa province (Tokushima) +[2018-02-13T00:30:12.115] [INFO] cheese - inserting 1000 documents. first: Margherita Gonzaga d'Este and last: Major airline +[2018-02-13T00:30:12.127] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:30:12.160] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:30:12.181] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:30:12.241] [INFO] cheese - inserting 1000 documents. first: Larry J. Pogemiller and last: Robert Casey, Sr. +[2018-02-13T00:30:12.251] [INFO] cheese - inserting 1000 documents. first: Category:Moist (Canadian band) songs and last: Mt. Hamwŏl +[2018-02-13T00:30:12.261] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:30:12.297] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:30:12.313] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2009 January 4 and last: Greenpeace china +[2018-02-13T00:30:12.354] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:30:12.486] [INFO] cheese - inserting 1000 documents. first: Black people in Lithuania and last: Masalhan +[2018-02-13T00:30:12.503] [INFO] cheese - inserting 1000 documents. first: Robert P. Casey, Sr. and last: Thomas W. Wilson +[2018-02-13T00:30:12.524] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T00:30:12.525] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:30:12.530] [INFO] cheese - inserting 1000 documents. first: Aryeh and last: File:Solenta Aviation logo.gif +[2018-02-13T00:30:12.574] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:30:12.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Cape May Gazette and last: Kenny vadas +[2018-02-13T00:30:12.662] [INFO] cheese - inserting 1000 documents. first: Mount Hamwŏl and last: Live at the Checkerboard Lounge: Chicago 1981 +[2018-02-13T00:30:12.678] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:30:12.701] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:30:12.729] [INFO] cheese - inserting 1000 documents. first: File:Which1.JPG and last: Inverarity (surname) +[2018-02-13T00:30:12.776] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:30:12.797] [INFO] cheese - inserting 1000 documents. first: Template:Libya-mosque-stub and last: Wikipedia:Miscellany for deletion/User:Tomzatarkay +[2018-02-13T00:30:12.830] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/EH74DK and last: Ardanion +[2018-02-13T00:30:12.833] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:30:12.867] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:30:12.888] [INFO] cheese - inserting 1000 documents. first: Lord James Townshend and last: Dasny +[2018-02-13T00:30:12.923] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:30:13.096] [INFO] cheese - inserting 1000 documents. first: Sanuki province and last: Gardiner +[2018-02-13T00:30:13.123] [INFO] cheese - inserting 1000 documents. first: Ocampo, Tamaulipas and last: Horizontal elevator +[2018-02-13T00:30:13.172] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T00:30:13.174] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:30:13.209] [INFO] cheese - inserting 1000 documents. first: Live at the Checkerboard Lounge Chicago 1981 and last: 2001 Food City 500 +[2018-02-13T00:30:13.215] [INFO] cheese - inserting 1000 documents. first: HMS Archer (1885) and last: File:TheMirror.jpg +[2018-02-13T00:30:13.219] [INFO] cheese - inserting 1000 documents. first: Dasoguz Airport and last: Deux enfoires a Saint-Tropez +[2018-02-13T00:30:13.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Motorcycling/Motorcycle Sport and last: Nitzarim +[2018-02-13T00:30:13.242] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:30:13.246] [INFO] cheese - inserting 1000 documents. first: Ardáni and last: Hello! Project shuffle unit +[2018-02-13T00:30:13.259] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:30:13.303] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:30:13.309] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:30:13.310] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:30:13.461] [INFO] cheese - inserting 1000 documents. first: Category:1949 in Portugal and last: My So-Called Life (album) +[2018-02-13T00:30:13.490] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:30:13.637] [INFO] cheese - inserting 1000 documents. first: List of cathedrals in Luxembourg and last: Kisa dialect +[2018-02-13T00:30:13.675] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Legislature Historic and last: Two world wars and one world cup +[2018-02-13T00:30:13.676] [INFO] cheese - inserting 1000 documents. first: Sandleford and last: International Association of Hebrew Free Loans +[2018-02-13T00:30:13.680] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:30:13.697] [INFO] cheese - inserting 1000 documents. first: Teeratep Winothai and last: Wikipedia:RFC/KM +[2018-02-13T00:30:13.698] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Not A Facehugger and last: Monsieur Albert +[2018-02-13T00:30:13.704] [INFO] cheese - inserting 1000 documents. first: Dobsice (Nymburk District) and last: Beatrice Lascaris di Tenda +[2018-02-13T00:30:13.724] [INFO] cheese - batch complete in: 0.234 secs +[2018-02-13T00:30:13.728] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:30:13.731] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:30:13.749] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:30:13.747] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:30:13.941] [INFO] cheese - inserting 1000 documents. first: Leslie and last: 53rd Division (British) +[2018-02-13T00:30:13.959] [INFO] cheese - inserting 1000 documents. first: Krista Lahteenmäki and last: Eberhard Louis, Duke of Wurttemberg +[2018-02-13T00:30:13.992] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:30:14.003] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:30:14.017] [INFO] cheese - inserting 1000 documents. first: Kabarasi dialect and last: File:C.L.G. Na Cealla Beaga logo.jpg +[2018-02-13T00:30:14.067] [INFO] cheese - inserting 1000 documents. first: Sinn Féin Bank and last: Wu Jiaxin +[2018-02-13T00:30:14.066] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:30:14.084] [INFO] cheese - inserting 1000 documents. first: Le Gouffre and last: India mobile numbers +[2018-02-13T00:30:14.139] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:30:14.172] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:30:14.192] [INFO] cheese - inserting 1000 documents. first: East Karelian Uprising and last: Category:Works by Arthur Koestler +[2018-02-13T00:30:14.285] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mikk Haavistu and last: Strâmba River (Geamărtălui) +[2018-02-13T00:30:14.326] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:30:14.360] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:30:14.414] [INFO] cheese - inserting 1000 documents. first: Incorporated businesses and last: Le roi malgré lui +[2018-02-13T00:30:14.461] [INFO] cheese - inserting 1000 documents. first: Category:230s conflicts and last: Conny Andersson +[2018-02-13T00:30:14.466] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:30:14.491] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:30:14.509] [INFO] cheese - inserting 1000 documents. first: Category:1965 establishments in Cape Verde and last: Encolpotis scioplasta +[2018-02-13T00:30:14.559] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:30:14.622] [INFO] cheese - inserting 1000 documents. first: B.Kanabur and last: Dodge Brisa +[2018-02-13T00:30:14.647] [INFO] cheese - inserting 1000 documents. first: Football at the 2011 Pan American Games – Men's tournament and last: Category:Churches in Queen Anne's County, Maryland +[2018-02-13T00:30:14.652] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:30:14.692] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:30:14.752] [INFO] cheese - inserting 1000 documents. first: Category:Irish water skiers and last: MicroRNA mir-395 +[2018-02-13T00:30:14.766] [INFO] cheese - inserting 1000 documents. first: Terra-Filmverleih and last: Baruch Ben Haim +[2018-02-13T00:30:14.793] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:30:14.802] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:30:14.863] [INFO] cheese - inserting 1000 documents. first: Encolpotis xanthoria and last: 1551 in France +[2018-02-13T00:30:14.895] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:30:14.978] [INFO] cheese - inserting 1000 documents. first: Lars Schmidt and last: Wikipedia:WikiProject Spam/LinkReports/hello-yorick.com +[2018-02-13T00:30:14.990] [INFO] cheese - inserting 1000 documents. first: Lugaid Réoderg and last: Hubbard's Cave +[2018-02-13T00:30:15.017] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:30:15.042] [INFO] cheese - inserting 1000 documents. first: Operation Headstrong and last: Herzog & de Meuron +[2018-02-13T00:30:15.050] [INFO] cheese - inserting 1000 documents. first: File:Tina Manning John Trudell family.jpg and last: Nakane +[2018-02-13T00:30:15.051] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:30:15.078] [INFO] cheese - inserting 1000 documents. first: Eulima mioacutissima and last: Template:2008 Summer Olympics men's handball game C2 +[2018-02-13T00:30:15.097] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:30:15.110] [INFO] cheese - inserting 1000 documents. first: Bob Freeman Smith and last: Krasnogorsk Archive +[2018-02-13T00:30:15.116] [INFO] cheese - batch complete in: 1.113 secs +[2018-02-13T00:30:15.125] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:30:15.144] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:30:15.274] [INFO] cheese - inserting 1000 documents. first: Ohio State Highway 527 and last: Anthony Smith +[2018-02-13T00:30:15.317] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:30:15.388] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/classicsofgolf.com and last: En concert a l'Olympia +[2018-02-13T00:30:15.426] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:30:15.439] [INFO] cheese - inserting 1000 documents. first: John Abel McPherson and last: Category:Wikipedia sockpuppets of Richard Thoma +[2018-02-13T00:30:15.491] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:30:15.527] [INFO] cheese - inserting 1000 documents. first: World Festival of Youth and last: Narain (Madhya Pradesh cricketer) +[2018-02-13T00:30:15.589] [INFO] cheese - inserting 1000 documents. first: Celeste Lake and last: Category:2008 Big East Conference baseball season +[2018-02-13T00:30:15.591] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:30:15.613] [INFO] cheese - inserting 1000 documents. first: Category:1872 establishments and last: File:Frieth overview.JPG +[2018-02-13T00:30:15.634] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:30:15.670] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:30:15.685] [INFO] cheese - inserting 1000 documents. first: En concert au Zenith de Paris and last: Jim Donahue (baseball) +[2018-02-13T00:30:15.720] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T00:30:15.793] [INFO] cheese - inserting 1000 documents. first: Anthony Smith (singer) and last: Purchase prize +[2018-02-13T00:30:15.840] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:30:15.883] [INFO] cheese - inserting 1000 documents. first: Ashbya gossypii and last: Robert S. Smith (priest) +[2018-02-13T00:30:15.909] [INFO] cheese - inserting 1000 documents. first: Arne Naess and last: Vernix +[2018-02-13T00:30:15.964] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:30:16.022] [INFO] cheese - inserting 1000 documents. first: Category:Tracked infantry fighting vehicles and last: Yehude Simon Munaro +[2018-02-13T00:30:16.031] [INFO] cheese - inserting 1000 documents. first: Dinesh Mirkar and last: River Cam (disambiguation) +[2018-02-13T00:30:16.037] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T00:30:16.065] [INFO] cheese - inserting 1000 documents. first: 𐊤 and last: Category:French autobiographies +[2018-02-13T00:30:16.066] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:30:16.116] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:30:16.133] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:30:16.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/EIN News and last: Arent Crowninshield +[2018-02-13T00:30:16.324] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:30:16.354] [INFO] cheese - inserting 1000 documents. first: Krohn's disease and last: Police corruption in Greece +[2018-02-13T00:30:16.380] [INFO] cheese - inserting 1000 documents. first: Category:John Wiley & Sons and last: Polythrincium trifolii +[2018-02-13T00:30:16.390] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:30:16.431] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:30:16.436] [INFO] cheese - inserting 1000 documents. first: Feenmarchen waltz and last: File:A Date with Jimmy Smith Volume Two.jpg +[2018-02-13T00:30:16.466] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:30:16.540] [INFO] cheese - inserting 1000 documents. first: Amioides grossidens and last: Monroe Doctrine (Japan) +[2018-02-13T00:30:16.579] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:30:16.678] [INFO] cheese - inserting 1000 documents. first: ISN 139 and last: Higinio Ortuzar +[2018-02-13T00:30:16.722] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:30:16.831] [INFO] cheese - inserting 1000 documents. first: Independent-comics and last: Wireless Internet hotspot +[2018-02-13T00:30:16.835] [INFO] cheese - inserting 1000 documents. first: Reubien and last: STS 59 +[2018-02-13T00:30:16.838] [INFO] cheese - inserting 1000 documents. first: North Elmham railway station and last: Hawthorne (Metro-North station) +[2018-02-13T00:30:16.857] [INFO] cheese - inserting 1000 documents. first: Hector Silva Airstrip and last: Tube Fender +[2018-02-13T00:30:16.869] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:30:16.890] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:30:16.896] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:30:16.927] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:30:16.981] [INFO] cheese - inserting 1000 documents. first: Monroe Doctrine (United States) and last: Tert-Amylol +[2018-02-13T00:30:17.003] [INFO] cheese - inserting 1000 documents. first: Ictineo and last: Wallon +[2018-02-13T00:30:17.024] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:30:17.073] [INFO] cheese - batch complete in: 1.036 secs +[2018-02-13T00:30:17.116] [INFO] cheese - inserting 1000 documents. first: Godurowo and last: Henri Francois Brosselard-Faidherbe +[2018-02-13T00:30:17.163] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:30:17.271] [INFO] cheese - inserting 1000 documents. first: 2015 Malaysia Cup group stage and last: Conus donnae +[2018-02-13T00:30:17.279] [INFO] cheese - inserting 1000 documents. first: JSQ-33 and last: Athletics at the 1964 Summer Olympics – Men's pole vault +[2018-02-13T00:30:17.302] [INFO] cheese - inserting 1000 documents. first: STS 62 and last: Portal:Zimbabwe/Selected article +[2018-02-13T00:30:17.303] [INFO] cheese - inserting 1000 documents. first: File:Northsoundseawolves.jpg and last: Fontaine-l'Eveque Castle +[2018-02-13T00:30:17.324] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:30:17.332] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:30:17.339] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:30:17.339] [INFO] cheese - inserting 1000 documents. first: 2004–06 European Nations Cup Second Division and last: United States House of Representatives elections in Kansas, 1992 +[2018-02-13T00:30:17.379] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:30:17.398] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:30:17.514] [INFO] cheese - inserting 1000 documents. first: Fontaine-les-Dijon and last: Frederic Bolley +[2018-02-13T00:30:17.535] [INFO] cheese - batch complete in: 0.196 secs +[2018-02-13T00:30:17.564] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Faxcon9xS and last: List of number-one albums of 2009 (New Zealand) +[2018-02-13T00:30:17.618] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:30:17.728] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Vahram Papazyan (athlete) and last: Servo motor +[2018-02-13T00:30:17.754] [INFO] cheese - inserting 1000 documents. first: Bayer HealthCare, India and last: Margaret Ellen Wright +[2018-02-13T00:30:17.780] [INFO] cheese - inserting 1000 documents. first: Frederic Bong and last: Galvao +[2018-02-13T00:30:17.782] [INFO] cheese - inserting 1000 documents. first: File:Buoyancy.jpg and last: Brent Ward Jett, Jr. +[2018-02-13T00:30:17.786] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:30:17.819] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:30:17.829] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:30:17.862] [INFO] cheese - inserting 1000 documents. first: The Great Plan, Volume 2 and last: Wallachs +[2018-02-13T00:30:17.881] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:30:17.940] [INFO] cheese - inserting 1000 documents. first: House wren and last: Pinus taeda +[2018-02-13T00:30:17.922] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:30:18.023] [INFO] cheese - inserting 1000 documents. first: Galvez (Vino de la Tierra) and last: Geza Teleki (politician) +[2018-02-13T00:30:18.021] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T00:30:18.080] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:30:18.103] [INFO] cheese - inserting 1000 documents. first: Brentwood Tolan and last: Isaac Tatem Hopper +[2018-02-13T00:30:18.117] [INFO] cheese - inserting 1000 documents. first: New Tottenham Hotspur stadium and last: Category:Macal River +[2018-02-13T00:30:18.173] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:30:18.183] [INFO] cheese - inserting 1000 documents. first: Anguilla mossambica and last: 1/2 + 1/4 + 1/8 + 1/16 + ... +[2018-02-13T00:30:18.217] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:30:18.234] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:30:18.326] [INFO] cheese - inserting 1000 documents. first: Alan Coe Bunce and last: Shoestring acacia +[2018-02-13T00:30:18.400] [INFO] cheese - inserting 1000 documents. first: File:Unit Statistics.png and last: Goodbye (Alma Cardzic song) +[2018-02-13T00:30:18.425] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:30:18.447] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:30:18.455] [INFO] cheese - inserting 1000 documents. first: Fuma Conspiracy and last: Robert Allan Ridley Parker +[2018-02-13T00:30:18.530] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:30:18.655] [INFO] cheese - inserting 1000 documents. first: Dong-Hyek Lim and last: Joni pitkanen +[2018-02-13T00:30:18.741] [INFO] cheese - inserting 1000 documents. first: Michal Hrazdira and last: Category:Engineering universities and colleges in Finland +[2018-02-13T00:30:18.803] [INFO] cheese - inserting 1000 documents. first: Goods of the House of Orleans and last: Gradski stadion (Zepce) +[2018-02-13T00:30:18.806] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T00:30:18.801] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:30:18.824] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:30:18.839] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Japanese films by year and last: Richard Moore (journalist) +[2018-02-13T00:30:18.891] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:30:18.936] [INFO] cheese - inserting 1000 documents. first: Holcocera baccharisella and last: Duchy of Kopanica +[2018-02-13T00:30:18.974] [INFO] cheese - inserting 1000 documents. first: Robert Rescorla and last: Warner Bros. Feature Animation +[2018-02-13T00:30:18.976] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:30:19.005] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:30:19.016] [INFO] cheese - inserting 1000 documents. first: Punjab Prisons Staff Training Institute and last: Gugnecourt +[2018-02-13T00:30:19.039] [INFO] cheese - batch complete in: 0.215 secs +[2018-02-13T00:30:19.104] [INFO] cheese - inserting 1000 documents. first: Sefid Khani, Hamadan and last: Wikipedia:Articles for deletion/Cloud marketing (2nd nomination) +[2018-02-13T00:30:19.120] [INFO] cheese - inserting 1000 documents. first: David Hookes and last: Hate group +[2018-02-13T00:30:19.130] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:30:19.179] [INFO] cheese - batch complete in: 1.158 secs +[2018-02-13T00:30:19.204] [INFO] cheese - inserting 1000 documents. first: Category:Oulu and last: Saptha Kannimar Padal +[2018-02-13T00:30:19.213] [INFO] cheese - inserting 1000 documents. first: Gugu River (Raul Ses) and last: Hanne Romer +[2018-02-13T00:30:19.216] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Salisbury and last: File:D40 Locomotive.jpg +[2018-02-13T00:30:19.239] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:30:19.267] [INFO] cheese - inserting 1000 documents. first: Oei Invasion and last: Wikipedia:Articles for deletion/Lindsay Lohan's third album +[2018-02-13T00:30:19.280] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:30:19.280] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:30:19.326] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:30:19.408] [INFO] cheese - inserting 1000 documents. first: Template:Montreal municipal election, 1998/Position/Councillor, Fleury and last: Gaika (disambiguation) +[2018-02-13T00:30:19.412] [INFO] cheese - inserting 1000 documents. first: Minister for National Education and Religious Affairs and last: Garage Beat '66 Volume 2: Chicks are for Kids! +[2018-02-13T00:30:19.417] [INFO] cheese - inserting 1000 documents. first: Hanne Tomta and last: Henrik Rydstrom +[2018-02-13T00:30:19.440] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:30:19.441] [INFO] cheese - batch complete in: 0.202 secs +[2018-02-13T00:30:19.464] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:30:19.578] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Teen Titans episodes/archive1 and last: Ibenik +[2018-02-13T00:30:19.594] [INFO] cheese - inserting 1000 documents. first: Goździków, Greater Poland Voivodeship and last: Frank Heller +[2018-02-13T00:30:19.614] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:30:19.648] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:30:19.711] [INFO] cheese - inserting 1000 documents. first: Halah and last: Gangrenous stomatitis +[2018-02-13T00:30:19.751] [INFO] cheese - inserting 1000 documents. first: Template:Infobox User-2/doc and last: Le insaziabili +[2018-02-13T00:30:19.757] [INFO] cheese - inserting 1000 documents. first: Chester Heights (PRR station) and last: Wikipedia:WikiProject Spam/LinkReports/tursiops.br.googlepages.com +[2018-02-13T00:30:19.759] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:30:19.775] [INFO] cheese - inserting 1000 documents. first: Gatra (disambiguation) and last: Laurentian View +[2018-02-13T00:30:19.797] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:30:19.801] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:30:19.835] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:30:19.843] [INFO] cheese - inserting 1000 documents. first: Nuristanis and last: Shmoo Group +[2018-02-13T00:30:19.906] [INFO] cheese - inserting 1000 documents. first: Meinborn and last: File:RolandoTinioNatlArtistNCCAgov.jpg +[2018-02-13T00:30:19.912] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:30:19.948] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:30:20.078] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas established in 1995 and last: The adventures of darwin the game +[2018-02-13T00:30:20.140] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:30:20.232] [INFO] cheese - inserting 1000 documents. first: Danse des Ouléd-Naïd and last: The Elbert P. Tuttle U.S. Court of Appeals Building +[2018-02-13T00:30:20.260] [INFO] cheese - inserting 1000 documents. first: Grace Under Pressure (1984 album) and last: Edmund Boyd Osler +[2018-02-13T00:30:20.273] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:30:20.289] [INFO] cheese - inserting 1000 documents. first: John Woodruff (representative) and last: Posterior ligament of incus +[2018-02-13T00:30:20.290] [INFO] cheese - inserting 1000 documents. first: Toto cerca casa and last: Category:Wikipedia articles in need of updating from December 2010 +[2018-02-13T00:30:20.320] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:30:20.343] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:30:20.347] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:30:20.351] [INFO] cheese - inserting 1000 documents. first: United States presidential election in New York, 1984 and last: Wikipedia:Today's article for improvement/Archives/Unsuccessful Nominations/November 2012 +[2018-02-13T00:30:20.412] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:30:20.520] [INFO] cheese - inserting 1000 documents. first: Dark Avenger (computer virus) and last: Wikipedia:Articles for creation/Redirects/2009-01 +[2018-02-13T00:30:20.565] [INFO] cheese - inserting 1000 documents. first: George W Forbes and last: Template:2004 Summer Olympics France men's handball team roster +[2018-02-13T00:30:20.573] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:30:20.606] [INFO] cheese - inserting 1000 documents. first: Valea Leurdei River and last: Hollental (disambiguation) +[2018-02-13T00:30:20.617] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:30:20.660] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:30:20.696] [INFO] cheese - inserting 1000 documents. first: UK General Election, 1997 and last: Montserrat Carulla +[2018-02-13T00:30:20.730] [INFO] cheese - inserting 1000 documents. first: Stunt Track Racer and last: Template:Deprod/doc +[2018-02-13T00:30:20.739] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:30:20.783] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:30:20.839] [INFO] cheese - inserting 1000 documents. first: Hollental (Franconian Forest) and last: Hyvinkaan Palloseura +[2018-02-13T00:30:20.857] [INFO] cheese - inserting 1000 documents. first: Marquess of Ailesbury and last: Youth sexuality +[2018-02-13T00:30:20.863] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:30:20.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's article for improvement/Archives/Unsuccessful Nominations/October 2012 and last: High Navarrese +[2018-02-13T00:30:20.986] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T00:30:21.004] [INFO] cheese - inserting 1000 documents. first: Facial disc and last: Śródka, Międzychód County +[2018-02-13T00:30:21.012] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:30:21.074] [INFO] cheese - inserting 1000 documents. first: Super Mario World 2: Yoshi's Island and last: Leatherwood Plantation +[2018-02-13T00:30:21.093] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:30:21.148] [INFO] cheese - inserting 1000 documents. first: Way-point and last: INS Mahe +[2018-02-13T00:30:21.159] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:30:21.188] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:30:21.203] [INFO] cheese - inserting 1000 documents. first: Municipal Elections in Santa Perpetua de Mogoda and last: Category:Archbishops of Athens and All Greece +[2018-02-13T00:30:21.242] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:30:21.332] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/Pages needing translation into English and last: Category:Pyramids and bipyramids +[2018-02-13T00:30:21.346] [INFO] cheese - inserting 1000 documents. first: Insekten-Borse and last: Izabelow, Swietokrzyskie Voivodeship +[2018-02-13T00:30:21.360] [INFO] cheese - inserting 1000 documents. first: Erdoğan Yeşilyurt and last: Krafs +[2018-02-13T00:30:21.363] [INFO] cheese - batch complete in: 0.174 secs +[2018-02-13T00:30:21.389] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:30:21.412] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:30:21.445] [INFO] cheese - inserting 1000 documents. first: Strzyżmin and last: Kamal "Chance" Givens +[2018-02-13T00:30:21.464] [INFO] cheese - inserting 1000 documents. first: Antonello Gangini and last: Julia Dorr +[2018-02-13T00:30:21.465] [INFO] cheese - inserting 1000 documents. first: Caterina Irene Elena Maria Imperiali di Francavilla and last: File:Progeny (film).jpg +[2018-02-13T00:30:21.486] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:30:21.502] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:30:21.506] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:30:21.636] [INFO] cheese - inserting 1000 documents. first: Izacic and last: Interstate 25 Business (Douglas, Wyoming) +[2018-02-13T00:30:21.672] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T00:30:21.698] [INFO] cheese - inserting 1000 documents. first: Scout Craft and last: GroundWorks Theatre +[2018-02-13T00:30:21.732] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/World s Most Hated and last: Tom Korologos +[2018-02-13T00:30:21.754] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:30:21.759] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:30:21.807] [INFO] cheese - inserting 1000 documents. first: Middle-earth peoples and last: Nizar Sassi +[2018-02-13T00:30:21.864] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:30:21.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/J. A. D. A Perera and last: Cator’s fantasy +[2018-02-13T00:30:21.906] [INFO] cheese - inserting 1000 documents. first: Rimington's Tigers and last: New Synagogue, Przemyśl +[2018-02-13T00:30:21.911] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:30:21.928] [INFO] cheese - inserting 1000 documents. first: Janos Gyongyosi and last: Wikipedia:Sockpuppet investigations/Strawberrywalruslane/Archive +[2018-02-13T00:30:21.950] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:30:21.953] [INFO] cheese - inserting 1000 documents. first: Muhammad Ayub Khan and last: Mario Party +[2018-02-13T00:30:21.955] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:30:22.036] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T00:30:22.103] [INFO] cheese - inserting 1000 documents. first: Category:County roads in Okaloosa County, Florida and last: Template:Salvatore +[2018-02-13T00:30:22.132] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic Armenian inventors and last: Ktla.com +[2018-02-13T00:30:22.138] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:30:22.163] [INFO] cheese - inserting 1000 documents. first: Jean-Marc Levy-Leblond and last: Joao Afonso da Costa de Sousa de Macedo, 1st Duke of Albuquerque +[2018-02-13T00:30:22.185] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:30:22.276] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:30:22.306] [INFO] cheese - inserting 1000 documents. first: Loco Locass and last: File:MartinBarre StageLeft.jpg +[2018-02-13T00:30:22.387] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:30:22.424] [INFO] cheese - inserting 1000 documents. first: Luxborough Street and last: Beverly Deepe Keever +[2018-02-13T00:30:22.476] [INFO] cheese - inserting 1000 documents. first: Stronnictwo Pracy and last: A. W. Gridley House +[2018-02-13T00:30:22.501] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:30:22.560] [INFO] cheese - inserting 1000 documents. first: Courtney Smith Pope and last: Jose Acosta (priest) +[2018-02-13T00:30:22.565] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:30:22.607] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:30:22.717] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/AuggiePaoli and last: Kamishlovskiy District +[2018-02-13T00:30:22.722] [INFO] cheese - inserting 1000 documents. first: Jenny Wilson (politician) and last: Paul Donal Harkins +[2018-02-13T00:30:22.783] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:30:22.791] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:30:22.878] [INFO] cheese - inserting 1000 documents. first: Jose Adolfo Alvarado Lara and last: Josef Sturmann +[2018-02-13T00:30:22.907] [INFO] cheese - inserting 1000 documents. first: Series connection and last: Oshkosh Air Show +[2018-02-13T00:30:22.915] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:30:22.985] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:30:23.028] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pacenation.us and last: Yagan's lookout +[2018-02-13T00:30:23.074] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:30:23.078] [INFO] cheese - inserting 1000 documents. first: HMS Serapis (1779) and last: The Dears +[2018-02-13T00:30:23.116] [INFO] cheese - inserting 1000 documents. first: Josef Sural and last: Category:Unionist Party (Canada) MPs +[2018-02-13T00:30:23.124] [INFO] cheese - inserting 1000 documents. first: Creekside Middle School (Woodstock, Illinois) and last: Gutów, Greater Poland Voivodeship +[2018-02-13T00:30:23.129] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T00:30:23.140] [INFO] cheese - batch complete in: 0.225 secs +[2018-02-13T00:30:23.176] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:30:23.196] [INFO] cheese - inserting 1000 documents. first: Best Nine Award and last: George O'Keefe +[2018-02-13T00:30:23.222] [INFO] cheese - inserting 1000 documents. first: Sanga-Sanga, Kalimantan and last: Cabinet of Kosovo +[2018-02-13T00:30:23.254] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:30:23.273] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:30:23.346] [INFO] cheese - inserting 1000 documents. first: Julian Montellano and last: Sunni fatwas on Shi'as +[2018-02-13T00:30:23.363] [INFO] cheese - inserting 1000 documents. first: Royal Mottos and last: File:AForest single.jpg +[2018-02-13T00:30:23.364] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T00:30:23.382] [INFO] cheese - inserting 1000 documents. first: John Kasic and last: Quest for a Throne +[2018-02-13T00:30:23.412] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:30:23.422] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:30:23.505] [INFO] cheese - inserting 1000 documents. first: Kantkula, Laane-Viru County and last: Khatoco Khánh Hòa F.C. +[2018-02-13T00:30:23.521] [INFO] cheese - batch complete in: 0.157 secs +[2018-02-13T00:30:23.550] [INFO] cheese - inserting 1000 documents. first: Kąkolewo, Ostrów Wielkopolski County and last: Kuh-e Kaf +[2018-02-13T00:30:23.570] [INFO] cheese - inserting 1000 documents. first: Yayasan Senyum and last: Category:WikiProject Terrorism members +[2018-02-13T00:30:23.584] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:30:23.615] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:30:23.732] [INFO] cheese - inserting 1000 documents. first: Kheir Eddine District and last: Category:Lobanov-Rostovsky family +[2018-02-13T00:30:23.753] [INFO] cheese - batch complete in: 0.232 secs +[2018-02-13T00:30:23.757] [INFO] cheese - inserting 1000 documents. first: Le Macchie and last: Category:Library buildings completed in 1893 +[2018-02-13T00:30:23.815] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:30:23.841] [INFO] cheese - inserting 1000 documents. first: Adrian Wilson (actor) and last: Tuberous sclerosis complex tumor suppressors +[2018-02-13T00:30:23.849] [INFO] cheese - inserting 1000 documents. first: Steilhang and last: Wikipedia:WikiProject Spam/LinkReports/easymistry.com +[2018-02-13T00:30:23.885] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:30:23.893] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:30:23.940] [INFO] cheese - inserting 1000 documents. first: Koln-Steinstrasse station and last: Kozia Gora, Pomeranian Voivodeship +[2018-02-13T00:30:23.955] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nafizaydin@hotmail.com and last: Anbu Sagodharargal +[2018-02-13T00:30:23.964] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:30:23.969] [INFO] cheese - inserting 1000 documents. first: Music of Extremadura and last: Richard Burdon Haldane +[2018-02-13T00:30:24.001] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Terrorism articles and last: PSD (Photoshop Document) +[2018-02-13T00:30:24.011] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:30:24.072] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:30:24.149] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T00:30:24.266] [INFO] cheese - inserting 1000 documents. first: Kozia Gora, Warmian-Masurian Voivodeship and last: Krzyzanowice, Masovian Voivodeship +[2018-02-13T00:30:24.286] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:30:24.287] [INFO] cheese - inserting 1000 documents. first: Hourglass (Squeeze song) and last: Baal Zephon +[2018-02-13T00:30:24.306] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Thema International Fund and last: U.S. Route 29 Business (Danville, Virginia) +[2018-02-13T00:30:24.334] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:30:24.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/easymistry.com and last: File:1989 5 bolívares Obverse.jpg +[2018-02-13T00:30:24.349] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:30:24.395] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:30:24.439] [INFO] cheese - inserting 1000 documents. first: Andrei Chukhley and last: Newington College Show +[2018-02-13T00:30:24.480] [INFO] cheese - inserting 1000 documents. first: A&R Cambridge Ltd. and last: La Compania del Tango Nomada +[2018-02-13T00:30:24.485] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:30:24.507] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:30:24.530] [INFO] cheese - inserting 1000 documents. first: Portal:Maryland/On this day/May 7 and last: Pegky Zina +[2018-02-13T00:30:24.590] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:30:24.670] [INFO] cheese - inserting 1000 documents. first: Leadtime and last: Wikipedia:CHECKWIKI/034 dump +[2018-02-13T00:30:24.697] [INFO] cheese - inserting 1000 documents. first: La Compote and last: Category:Transport in Vietnam by city +[2018-02-13T00:30:24.704] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:30:24.716] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:30:24.759] [INFO] cheese - inserting 1000 documents. first: Brazilian Development Bank and last: Diocese of Qu'Appelle +[2018-02-13T00:30:24.770] [INFO] cheese - inserting 1000 documents. first: Butterfly attractor and last: Baići +[2018-02-13T00:30:24.822] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:30:24.816] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:30:24.904] [INFO] cheese - inserting 1000 documents. first: Lake Tohmajarvi and last: Lazy, Piaseczno County +[2018-02-13T00:30:24.904] [INFO] cheese - inserting 1000 documents. first: Treaty of Ruby Valley 1863 and last: K262AQ +[2018-02-13T00:30:24.919] [INFO] cheese - inserting 1000 documents. first: Watford Gap and last: Closed list +[2018-02-13T00:30:24.924] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:30:24.968] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:30:24.998] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T00:30:25.193] [INFO] cheese - inserting 1000 documents. first: AC-130H Hercules and last: Li Qiang (born 1959) +[2018-02-13T00:30:25.246] [INFO] cheese - inserting 1000 documents. first: 1923 in jazz and last: Stephen Don Black +[2018-02-13T00:30:25.299] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:30:25.321] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:30:25.351] [INFO] cheese - inserting 1000 documents. first: Liu Kai and last: The Belle of New York (theatre) +[2018-02-13T00:30:25.589] [INFO] cheese - inserting 1000 documents. first: Template:D.C. Statehood Party/meta/color and last: Un air si pur +[2018-02-13T00:30:25.708] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T00:30:25.839] [INFO] cheese - inserting 1000 documents. first: K262AR and last: Wikipedia:Featured picture candidates/Sarcophaga bercaea +[2018-02-13T00:30:26.110] [INFO] cheese - inserting 1000 documents. first: Les Betises and last: Lineas Aereas Nacionales +[2018-02-13T00:30:26.161] [INFO] cheese - batch complete in: 1.339 secs +[2018-02-13T00:30:26.138] [INFO] cheese - inserting 1000 documents. first: Paysandisia archon and last: Xavier High School +[2018-02-13T00:30:26.233] [INFO] cheese - batch complete in: 1.265 secs +[2018-02-13T00:30:26.243] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T00:30:26.437] [INFO] cheese - batch complete in: 1.62 secs +[2018-02-13T00:30:26.525] [INFO] cheese - inserting 1000 documents. first: D&D 4th edition and last: K. Rajah Iyer +[2018-02-13T00:30:26.592] [INFO] cheese - batch complete in: 1.293 secs +[2018-02-13T00:30:26.665] [INFO] cheese - inserting 1000 documents. first: Lineas Aereas Nacionales S. A. (Peru) and last: Llevame Donde Naci +[2018-02-13T00:30:26.703] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:30:26.815] [INFO] cheese - inserting 1000 documents. first: File:You Are Everything Ross and Gaye.jpg and last: HD 201567 +[2018-02-13T00:30:26.853] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:30:26.903] [INFO] cheese - inserting 1000 documents. first: Krześlice and last: Cynthia Cruz +[2018-02-13T00:30:26.955] [INFO] cheese - inserting 1000 documents. first: File:Pinellas Special.JPG and last: Template:SGP Results4/reserveB +[2018-02-13T00:30:26.958] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:30:26.997] [INFO] cheese - inserting 1000 documents. first: Yanomama and last: Wolf Hirth +[2018-02-13T00:30:27.005] [INFO] cheese - inserting 1000 documents. first: Llica d'Amunt and last: Luda Zurka – uzivo +[2018-02-13T00:30:27.036] [INFO] cheese - batch complete in: 1.328 secs +[2018-02-13T00:30:27.045] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:30:27.052] [INFO] cheese - inserting 1000 documents. first: Uniformity norm and last: Akademie der bildenden Künste Wien +[2018-02-13T00:30:27.109] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:30:27.115] [INFO] cheese - batch complete in: 2.117 secs +[2018-02-13T00:30:27.139] [INFO] cheese - inserting 1000 documents. first: Captain Gantu and last: The Mekons Rock'n'Roll +[2018-02-13T00:30:27.208] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:30:27.385] [INFO] cheese - inserting 1000 documents. first: Category:17th-century disestablishments in Oceania and last: Category:1992–93 Football League Third Division by team +[2018-02-13T00:30:27.415] [INFO] cheese - inserting 1000 documents. first: Ludek (name) and last: Climate Vulnerability Monitor +[2018-02-13T00:30:27.432] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:30:27.459] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:30:27.505] [INFO] cheese - inserting 1000 documents. first: 16S rRNA (guanine1207-N2)-methyltransferase and last: Papilio aeneides +[2018-02-13T00:30:27.515] [INFO] cheese - inserting 1000 documents. first: William T. Cannady and last: File:George Washington Farewell Address by Edward Percy Moran.jpg +[2018-02-13T00:30:27.554] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:30:27.577] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:30:27.583] [INFO] cheese - inserting 1000 documents. first: Template:R to Swiss municipality (canton) and last: Abbey of St-Germain-des-Prés +[2018-02-13T00:30:27.618] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:30:27.684] [INFO] cheese - inserting 1000 documents. first: Tigre Club and last: Run, Ronnie, Run +[2018-02-13T00:30:27.727] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:30:27.770] [INFO] cheese - inserting 1000 documents. first: Palpal organ and last: Compsolechia succincta +[2018-02-13T00:30:27.821] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:30:27.848] [INFO] cheese - inserting 1000 documents. first: Eva (2009 film) and last: Lukowiec, Lublin Voivodeship +[2018-02-13T00:30:27.958] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:30:28.014] [INFO] cheese - inserting 1000 documents. first: Parides gargasus and last: Wikipedia:Peer review/Giffnock/archive1 +[2018-02-13T00:30:28.152] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:30:28.197] [INFO] cheese - inserting 1000 documents. first: Bang The Drum Slowly Dumbass (Beavis and Butt-head Episode) and last: Bahá'í Faith in Sweden +[2018-02-13T00:30:28.273] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:30:28.422] [INFO] cheese - inserting 1000 documents. first: Charles Luckman and last: Nei Lak Shan +[2018-02-13T00:30:28.430] [INFO] cheese - inserting 1000 documents. first: Lukowiec, Masovian Voivodeship and last: पारेवङा +[2018-02-13T00:30:28.484] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:30:28.491] [INFO] cheese - inserting 1000 documents. first: Template:Sampson County, North Carolina and last: I've Got a Crush on Obama +[2018-02-13T00:30:28.523] [INFO] cheese - inserting 1000 documents. first: Teresa Teng and last: Ifrit +[2018-02-13T00:30:28.554] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T00:30:28.552] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:30:28.565] [INFO] cheese - inserting 1000 documents. first: Compsolechia titanota and last: File:Pavarotti and Friends - Liberia.jpg +[2018-02-13T00:30:28.660] [INFO] cheese - batch complete in: 1.545 secs +[2018-02-13T00:30:28.689] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T00:30:28.826] [INFO] cheese - inserting 1000 documents. first: Maieco Domingos Henrique Antonio and last: Marataizes, Espirito Santo +[2018-02-13T00:30:28.902] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:30:28.905] [INFO] cheese - inserting 1000 documents. first: United States Post Office–Quincy Main and last: Compote (disambiguation) +[2018-02-13T00:30:28.939] [INFO] cheese - inserting 1000 documents. first: Paula Morris and last: File:Gazeta Kombetare February 12, 2013.jpg +[2018-02-13T00:30:28.955] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:30:29.033] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T00:30:29.235] [INFO] cheese - inserting 1000 documents. first: Shelley Bennett and last: Made in Jamaica +[2018-02-13T00:30:29.238] [INFO] cheese - inserting 1000 documents. first: USS Talbot County (LST-1153) and last: Hugo Laviada Molina +[2018-02-13T00:30:29.310] [INFO] cheese - inserting 1000 documents. first: Chaim Barlev and last: Template:DogImages +[2018-02-13T00:30:29.314] [INFO] cheese - inserting 1000 documents. first: Category:Publications established in 1744 and last: Category:Museums in Nevada County, Arkansas +[2018-02-13T00:30:29.330] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:30:29.411] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:30:29.416] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T00:30:29.476] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T00:30:29.635] [INFO] cheese - inserting 1000 documents. first: Colombian cocaine and last: Category:Beaches of the Northland Region +[2018-02-13T00:30:29.639] [INFO] cheese - inserting 1000 documents. first: Marjan Kovacevic and last: Maurycow, Lask County +[2018-02-13T00:30:29.713] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:30:29.719] [INFO] cheese - inserting 1000 documents. first: River Esk (disambiguation) and last: Tumor alopecia +[2018-02-13T00:30:29.751] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:30:29.846] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T00:30:29.983] [INFO] cheese - inserting 1000 documents. first: George Mayo and last: Garbahaareey +[2018-02-13T00:30:30.003] [INFO] cheese - inserting 1000 documents. first: Michael P. Decker and last: Heterobasidiomycetes +[2018-02-13T00:30:30.022] [INFO] cheese - inserting 1000 documents. first: Mauvais oil and last: Michalovice (Litomerice District) +[2018-02-13T00:30:30.092] [INFO] cheese - inserting 1000 documents. first: Sharpies (Australian subculture) and last: Bishop of Praeneste +[2018-02-13T00:30:30.144] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:30:30.157] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:30:30.205] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:30:30.250] [INFO] cheese - batch complete in: 1.59 secs +[2018-02-13T00:30:30.299] [INFO] cheese - inserting 1000 documents. first: St. Francis' College and last: U.S. Route 217 +[2018-02-13T00:30:30.471] [INFO] cheese - inserting 1000 documents. first: Municipality of Veržej and last: Orrin Frink +[2018-02-13T00:30:30.543] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T00:30:30.602] [INFO] cheese - inserting 1000 documents. first: Locally inertial coordinates and last: Template:Citroën vehicles timeline (modern) +[2018-02-13T00:30:30.644] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T00:30:30.686] [INFO] cheese - inserting 1000 documents. first: Michalow, Gmina Brzeziny and last: Minis River (Topa) +[2018-02-13T00:30:30.693] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:30:30.722] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:30:30.892] [INFO] cheese - inserting 1000 documents. first: Akita Senshū Museum of Art and last: Category:17th-century American people by occupation +[2018-02-13T00:30:30.993] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:30:30.993] [INFO] cheese - inserting 1000 documents. first: Mobile packet data service and last: The Politics of Anti-Semitism +[2018-02-13T00:30:31.006] [INFO] cheese - inserting 1000 documents. first: Minister of Foreign Affairs (Sao Tome and Principe) and last: Montcel, Puy-de-Dome +[2018-02-13T00:30:31.062] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:30:31.069] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T00:30:31.182] [INFO] cheese - inserting 1000 documents. first: ି and last: Template:United States presidential election, 1968 imagemap +[2018-02-13T00:30:31.188] [INFO] cheese - inserting 1000 documents. first: Caro William and last: Bruno Buccellati +[2018-02-13T00:30:31.230] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:30:31.248] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:30:31.346] [INFO] cheese - inserting 1000 documents. first: File:Kelly123.jpg and last: Burn proof +[2018-02-13T00:30:31.366] [INFO] cheese - inserting 1000 documents. first: Holiday Inn Resort Bali Benoa and last: 1996 ITC Estoril round +[2018-02-13T00:30:31.396] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T00:30:31.425] [INFO] cheese - inserting 1000 documents. first: Montclar, Bergueda and last: Musee des Beaux-Arts de Dijon +[2018-02-13T00:30:31.434] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:30:31.449] [INFO] cheese - inserting 1000 documents. first: Altscheid and last: Citizens for ethics +[2018-02-13T00:30:31.458] [INFO] cheese - inserting 1000 documents. first: Margin call and last: No! +[2018-02-13T00:30:31.457] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:30:31.497] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:30:31.547] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T00:30:31.645] [INFO] cheese - inserting 1000 documents. first: Big Bear Lake standoff and last: Rilsan +[2018-02-13T00:30:31.650] [INFO] cheese - inserting 1000 documents. first: Harry Endo and last: Hurşit Meriç +[2018-02-13T00:30:31.663] [INFO] cheese - inserting 1000 documents. first: Musee des Beaux-Arts de Nantes and last: Nemcice (Mlada Boleslav District) +[2018-02-13T00:30:31.687] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T00:30:31.694] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:30:31.708] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:30:31.795] [INFO] cheese - inserting 1000 documents. first: George Ash (Australian politician) and last: Chloe-Jasmine +[2018-02-13T00:30:31.815] [INFO] cheese - inserting 1000 documents. first: Action Contre la Faim and last: Shkhem +[2018-02-13T00:30:31.827] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:30:32.147] [INFO] cheese - inserting 1000 documents. first: Nemcice (Prachatice District) and last: File:Weigel's logo.png +[2018-02-13T00:30:32.306] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:30:32.488] [INFO] cheese - inserting 1000 documents. first: Keri Russel and last: Wikipedia:Suspected sock puppets/Elfred +[2018-02-13T00:30:32.550] [INFO] cheese - inserting 1000 documents. first: Category:Revolvers of the Soviet Union and last: Order of Koutusoff, 1st Grade +[2018-02-13T00:30:32.551] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T00:30:32.624] [INFO] cheese - batch complete in: 1.127 secs +[2018-02-13T00:30:32.729] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T00:30:32.817] [INFO] cheese - inserting 1000 documents. first: Herja and last: Category:1933 in Greece +[2018-02-13T00:30:32.927] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T00:30:32.965] [INFO] cheese - inserting 1000 documents. first: Nisia Floresta, Rio Grande do Norte and last: Nowa Wies, Wschowa County +[2018-02-13T00:30:32.978] [INFO] cheese - inserting 1000 documents. first: Attwood's phacelia and last: Fourseam, KY +[2018-02-13T00:30:32.999] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:30:33.086] [INFO] cheese - batch complete in: 1.259 secs +[2018-02-13T00:30:33.218] [INFO] cheese - inserting 1000 documents. first: Gudina Tumsa and last: Almaş River (Bistriţa) +[2018-02-13T00:30:33.262] [INFO] cheese - inserting 1000 documents. first: History of the Scots language and last: Rhön-Grabfeld +[2018-02-13T00:30:33.306] [INFO] cheese - inserting 1000 documents. first: William Hoy and last: Coat of arms of Malawi +[2018-02-13T00:30:33.308] [INFO] cheese - inserting 1000 documents. first: Nowa Wies, Zyrardow County and last: Ojakula, Laane-Viru County +[2018-02-13T00:30:33.310] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:30:33.345] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:30:33.350] [INFO] cheese - inserting 1000 documents. first: 1999 San Diego Film Critics Society Awards and last: Lubbock Lake Landmark +[2018-02-13T00:30:33.389] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:30:33.391] [INFO] cheese - batch complete in: 1.844 secs +[2018-02-13T00:30:33.401] [INFO] cheese - inserting 1000 documents. first: Lambda Omega sorority Norroena and last: Kolopsoides +[2018-02-13T00:30:33.423] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:30:33.496] [INFO] cheese - inserting 1000 documents. first: 1591 in France and last: The Grand Duchy of Baden +[2018-02-13T00:30:33.545] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:30:33.585] [INFO] cheese - inserting 1000 documents. first: Ojala Que Llueva Cafe and last: Orlow, Lesser Poland Voivodeship +[2018-02-13T00:30:33.639] [INFO] cheese - inserting 1000 documents. first: Alunişu River (Cracău) and last: Yalalag Zapoteco language +[2018-02-13T00:30:33.653] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:30:33.658] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:30:33.729] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:30:33.968] [INFO] cheese - inserting 1000 documents. first: Category:Transport in North Korea and last: Otsuchi Station +[2018-02-13T00:30:33.979] [INFO] cheese - inserting 1000 documents. first: File:Snapshot 2007-06-22 14-42-06.jpg and last: J. Scott Smart +[2018-02-13T00:30:33.990] [INFO] cheese - inserting 1000 documents. first: Flag of Normandy and last: Peştiş River (Mureş) +[2018-02-13T00:30:33.989] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:30:34.014] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:30:34.016] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:30:34.138] [INFO] cheese - inserting 1000 documents. first: Mister rogers and last: Journal of orthomolecular medicine +[2018-02-13T00:30:34.144] [INFO] cheese - inserting 1000 documents. first: Federico Archuleta and last: Wikipedia:WikiProject Spam/LinkReports/religioustolerance.org +[2018-02-13T00:30:34.154] [INFO] cheese - inserting 1000 documents. first: Tyloses and last: Take It Easy (Vanessa Carlton song) +[2018-02-13T00:30:34.189] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:30:34.191] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:30:34.195] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:30:34.275] [INFO] cheese - inserting 1000 documents. first: Category:Deputies of Antalya and last: Braşov Council Square (Piaţa Sfatului) +[2018-02-13T00:30:34.310] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:30:34.352] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Hengel and last: Template:The Denmark Barnstar of National Merit +[2018-02-13T00:30:34.396] [INFO] cheese - inserting 1000 documents. first: Hand gestures and last: Fukuyama, Kagoshima +[2018-02-13T00:30:34.408] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:30:34.434] [INFO] cheese - inserting 1000 documents. first: Places In Between (Terri Hendrix Album) and last: Mark Draycott +[2018-02-13T00:30:34.460] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T00:30:34.479] [INFO] cheese - inserting 1000 documents. first: Willows (song) and last: Gelechia (Ceratophora) scutella +[2018-02-13T00:30:34.485] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:30:34.499] [INFO] cheese - inserting 1000 documents. first: Braşov railway station and last: PAB1040 (gene) +[2018-02-13T00:30:34.510] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:30:34.559] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T00:30:34.625] [INFO] cheese - inserting 1000 documents. first: Template:The Indonesia Barnstar of National Merit and last: Template:Editnotices/Page/Wikipedia:Please do not bite the newcomers +[2018-02-13T00:30:34.642] [INFO] cheese - inserting 1000 documents. first: Plessy v. Fergusen and last: Guwolsan Mountain +[2018-02-13T00:30:34.648] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:30:34.702] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:30:34.733] [INFO] cheese - inserting 1000 documents. first: Category:Lehman College alumni and last: Wikipedia:Images and media for deletion/2009 January 13 +[2018-02-13T00:30:34.778] [INFO] cheese - inserting 1000 documents. first: Lætitia Milot and last: Steve L Busby +[2018-02-13T00:30:34.789] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:30:34.804] [INFO] cheese - inserting 1000 documents. first: Băişoara and last: Qaleh-ye Astijan +[2018-02-13T00:30:34.821] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:30:34.856] [INFO] cheese - inserting 1000 documents. first: Cameron Quiseng and last: Pedro Canario, Espirito Santo +[2018-02-13T00:30:34.856] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:30:34.895] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:30:34.909] [INFO] cheese - inserting 1000 documents. first: Ike Harris and last: File:Derby hat.jpg +[2018-02-13T00:30:35.038] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:30:35.177] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Asijan and last: File:Shaggy dog.jpg +[2018-02-13T00:30:35.218] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:30:35.244] [INFO] cheese - inserting 1000 documents. first: Template:Kōchi Prefecture and last: Philippe de Remi (died 1265) +[2018-02-13T00:30:35.289] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:30:35.337] [INFO] cheese - inserting 1000 documents. first: Football at the 2002 Asian Games – Women and last: Aframonius diedes +[2018-02-13T00:30:35.341] [INFO] cheese - inserting 1000 documents. first: Aira District, Kagoshima and last: File:NikolaiBukharin.jpg +[2018-02-13T00:30:35.343] [INFO] cheese - inserting 1000 documents. first: Everyday Sunshine and last: Ghana Empire +[2018-02-13T00:30:35.350] [INFO] cheese - inserting 1000 documents. first: WKY Radio and last: Kazakhstan Superleague +[2018-02-13T00:30:35.383] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:30:35.415] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:30:35.427] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:30:35.462] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T00:30:35.580] [INFO] cheese - inserting 1000 documents. first: Philippe de Remi (died 1296) and last: 1961 Buddy Shuman 250 +[2018-02-13T00:30:35.617] [INFO] cheese - inserting 1000 documents. first: Boat Tail Hollow Point and last: The Last Giant: Anthology +[2018-02-13T00:30:35.617] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:30:35.653] [INFO] cheese - inserting 1000 documents. first: Bumbeşti-Jiu and last: Poiana River (Sălăuţa) +[2018-02-13T00:30:35.675] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:30:35.699] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:30:35.829] [INFO] cheese - inserting 1000 documents. first: Placzki, Silesian Voivodeship and last: Policia (song) +[2018-02-13T00:30:35.866] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:30:35.917] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Kirby's Block Ball and last: File:I Do - Castells.ogg +[2018-02-13T00:30:35.960] [INFO] cheese - inserting 1000 documents. first: 2006 Africa Cup of Nations squads and last: Lakeland High School (Michigan) +[2018-02-13T00:30:35.965] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:30:35.990] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/March 7, 2013 and last: Valcăliţa River +[2018-02-13T00:30:36.003] [INFO] cheese - inserting 1000 documents. first: Catwalk (documentary) and last: G V School +[2018-02-13T00:30:36.011] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:30:36.053] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:30:36.126] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:30:36.130] [INFO] cheese - inserting 1000 documents. first: SubRon and last: Seddonville +[2018-02-13T00:30:36.201] [INFO] cheese - inserting 1000 documents. first: Döderlein bacillus and last: Predboj +[2018-02-13T00:30:36.253] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:30:36.295] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:30:36.341] [INFO] cheese - inserting 1000 documents. first: Vâlceaua Vlădişor River and last: Crngrob 2 Mass Grave +[2018-02-13T00:30:36.382] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:30:36.508] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ketaki Chester and last: S.Coups (에스.쿱스) (Rapper) +[2018-02-13T00:30:36.542] [INFO] cheese - inserting 1000 documents. first: Ram Jam and last: Chinese Wall +[2018-02-13T00:30:36.562] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:30:36.646] [INFO] cheese - inserting 1000 documents. first: Mitsubishi MRX09 Racing Lancer and last: Flutivate +[2018-02-13T00:30:36.654] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T00:30:36.750] [INFO] cheese - inserting 1000 documents. first: Predenice and last: Przewoz, Bytow County +[2018-02-13T00:30:36.782] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:30:36.818] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:30:36.866] [INFO] cheese - inserting 1000 documents. first: Steve bordin and last: John L. Sullivan (elephant) +[2018-02-13T00:30:36.884] [INFO] cheese - inserting 1000 documents. first: Ahan Tongshan Cup and last: Judge Aldisert +[2018-02-13T00:30:36.897] [INFO] cheese - inserting 1000 documents. first: Cinciş River and last: Charles Dashwood (Royal Navy officer) +[2018-02-13T00:30:36.920] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:30:36.977] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T00:30:37.032] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:30:37.108] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1980 Summer Olympics – Men's coxless pair and last: Taoudeni Basin +[2018-02-13T00:30:37.185] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:30:37.242] [INFO] cheese - inserting 1000 documents. first: Acrocercops perturbata and last: Radimovice u Tabora +[2018-02-13T00:30:37.309] [INFO] cheese - inserting 1000 documents. first: Carolina Entertainment Complex and last: Osaka Evessa +[2018-02-13T00:30:37.315] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:30:37.408] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:30:37.458] [INFO] cheese - inserting 1000 documents. first: Template:House of Aviz-Beja and last: Samuel Farrow +[2018-02-13T00:30:37.549] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:30:37.552] [INFO] cheese - inserting 1000 documents. first: Template:1992 WWF pay-per-view events and last: Waka Waka (disambiguation) +[2018-02-13T00:30:37.587] [INFO] cheese - inserting 1000 documents. first: Mark A. Landis and last: Template:NYCL +[2018-02-13T00:30:37.594] [INFO] cheese - inserting 1000 documents. first: Radimovice u Zelce and last: Recica Kriska +[2018-02-13T00:30:37.602] [INFO] cheese - inserting 1000 documents. first: Hellraiser VIII and last: Scenery And Fish +[2018-02-13T00:30:37.617] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:30:37.621] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:30:37.655] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:30:37.687] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:30:37.812] [INFO] cheese - inserting 1000 documents. first: List of Polish Uprisings and last: Kostroma (river) +[2018-02-13T00:30:37.858] [INFO] cheese - inserting 1000 documents. first: Template:Municipalities of Goa and last: Beatrice Alfonso of Castile-León +[2018-02-13T00:30:37.898] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T00:30:37.906] [INFO] cheese - inserting 1000 documents. first: Recica, Croatia and last: Chelsea (CDP), Wisconsin +[2018-02-13T00:30:37.931] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:30:37.953] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:30:38.005] [INFO] cheese - inserting 1000 documents. first: Drovers and last: Category:History of Ireland 1800-1922 +[2018-02-13T00:30:38.012] [INFO] cheese - inserting 1000 documents. first: Waka-waka and last: Transfer of Population Under the Terms of Delhi Agreement +[2018-02-13T00:30:38.041] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:30:38.072] [INFO] cheese - inserting 1000 documents. first: Template:NYCL/doc and last: Category:Ambassadors of India to Suriname +[2018-02-13T00:30:38.075] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:30:38.118] [INFO] cheese - inserting 1000 documents. first: Rio Duey and last: Vladik Kreinovich +[2018-02-13T00:30:38.120] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:30:38.142] [INFO] cheese - batch complete in: 0.189 secs +[2018-02-13T00:30:38.285] [INFO] cheese - inserting 1000 documents. first: Grill and last: Wivelsfield +[2018-02-13T00:30:38.297] [INFO] cheese - inserting 1000 documents. first: Estado de Washington and last: Govinda Roy +[2018-02-13T00:30:38.309] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Lomza and last: Rudnik, Raciborz County +[2018-02-13T00:30:38.339] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:30:38.351] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:30:38.359] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:30:38.419] [INFO] cheese - inserting 1000 documents. first: Ubiquiti and last: Thornley-with-Wheatley +[2018-02-13T00:30:38.449] [INFO] cheese - inserting 1000 documents. first: Reed Township, Ohio and last: Arhopala allata suffusa +[2018-02-13T00:30:38.452] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Marrakesh-Safi and last: QSI Sanaa International School +[2018-02-13T00:30:38.460] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:30:38.492] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:30:38.491] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:30:38.540] [INFO] cheese - inserting 1000 documents. first: Rudnik, Radzyn Podlaski County and last: Category:Documentary film series +[2018-02-13T00:30:38.577] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:30:38.618] [INFO] cheese - inserting 1000 documents. first: Mologa (town) and last: Earl of Iddesleigh +[2018-02-13T00:30:38.690] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T00:30:38.750] [INFO] cheese - inserting 1000 documents. first: Template:Kraków Fast Tram 50 and last: Humair Hayat Khan Rokhri +[2018-02-13T00:30:38.757] [INFO] cheese - inserting 1000 documents. first: Saint-Creac and last: Glucose bisphosphate +[2018-02-13T00:30:38.785] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:30:38.797] [INFO] cheese - inserting 1000 documents. first: File:Stiv Bators.jpg and last: Category:Russian military historians +[2018-02-13T00:30:38.798] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:30:38.804] [INFO] cheese - inserting 1000 documents. first: Optics & Photonics News and last: Nigel Doughty +[2018-02-13T00:30:38.856] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:30:38.869] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:30:38.883] [INFO] cheese - inserting 1000 documents. first: PilotsEYE.tv and last: Wikipedia:Route diagram template/BS-anleitung+LR/doc +[2018-02-13T00:30:38.925] [INFO] cheese - inserting 1000 documents. first: Bob Enevoldsen and last: Maija Isola +[2018-02-13T00:30:38.942] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:30:38.989] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:30:39.018] [INFO] cheese - inserting 1000 documents. first: Sainte-Elisabeth, Quebec and last: San Sebastian, Toledo +[2018-02-13T00:30:39.041] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:30:39.123] [INFO] cheese - inserting 1000 documents. first: Yunán Province and last: Hedgehog mortar +[2018-02-13T00:30:39.160] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:30:39.256] [INFO] cheese - inserting 1000 documents. first: San Secondo (Citta di Castello) and last: Fehaid Al Deehani +[2018-02-13T00:30:39.276] [INFO] cheese - inserting 1000 documents. first: Category:Japanese military historians and last: Category:Leander-class cruisers (1931) of the Royal Navy +[2018-02-13T00:30:39.292] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:30:39.320] [INFO] cheese - inserting 1000 documents. first: The Story So Far (Zack Hexum album) and last: Fujifilm DX-10 +[2018-02-13T00:30:39.330] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:30:39.343] [INFO] cheese - inserting 1000 documents. first: Karwitz and last: John Sunderland +[2018-02-13T00:30:39.362] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:30:39.393] [INFO] cheese - inserting 1000 documents. first: Category:Silent film portal and last: Byron Barwig +[2018-02-13T00:30:39.398] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:30:39.453] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:30:39.492] [INFO] cheese - inserting 1000 documents. first: Category:Fictional French police detectives and last: Schuzka o pul ctvrte +[2018-02-13T00:30:39.495] [INFO] cheese - inserting 1000 documents. first: Alexander J. Kaleri and last: Generalized special orthogonal group +[2018-02-13T00:30:39.518] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:30:39.535] [INFO] cheese - inserting 1000 documents. first: Georgia University and last: Twenty-three unsolved problems +[2018-02-13T00:30:39.566] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T00:30:39.568] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:30:39.652] [INFO] cheese - inserting 1000 documents. first: Christodoulos Tsigantes and last: Category:Havmanden-class submarines (1911) +[2018-02-13T00:30:39.683] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:30:39.700] [INFO] cheese - inserting 1000 documents. first: Salvador Luis Reyes and last: Alive (Nitty Gritty Dirt Band album) +[2018-02-13T00:30:39.723] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T00:30:39.756] [INFO] cheese - inserting 1000 documents. first: Nicholas Mander and last: Virgin with Child and Chancellor Rolin +[2018-02-13T00:30:39.787] [INFO] cheese - inserting 1000 documents. first: Pacific Front Recordings and last: Dear Diary (Brandy & Mr. Whiskers episode) +[2018-02-13T00:30:39.795] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:30:39.838] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:30:39.847] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:2016-17 United States network television schedule and last: File:Melburnians Ice Hockey Club 1910.png +[2018-02-13T00:30:39.899] [INFO] cheese - inserting 1000 documents. first: Dennis Schmidt and last: Cum hoc non propter hoc +[2018-02-13T00:30:39.905] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:30:39.913] [INFO] cheese - inserting 1000 documents. first: Sepmistr and last: State of Scott +[2018-02-13T00:30:39.914] [INFO] cheese - inserting 1000 documents. first: Template:Korea University and last: Big Ten Championship +[2018-02-13T00:30:39.933] [INFO] cheese - batch complete in: 0.25 secs +[2018-02-13T00:30:39.936] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T00:30:39.974] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:30:40.106] [INFO] cheese - inserting 1000 documents. first: Simoes, Piaui and last: Slupia, Konskie County +[2018-02-13T00:30:40.134] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T00:30:40.204] [INFO] cheese - inserting 1000 documents. first: Little Red Lighthouse and last: LPR +[2018-02-13T00:30:40.247] [INFO] cheese - inserting 1000 documents. first: The Paganini Quartet and last: Francisco Quisumbing +[2018-02-13T00:30:40.256] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:30:40.259] [INFO] cheese - inserting 1000 documents. first: File:Airservices Australia logo.png and last: Anthony Bozzella +[2018-02-13T00:30:40.278] [INFO] cheese - inserting 1000 documents. first: Memorial Hermann Life Flight and last: Bataan (disambiguation) +[2018-02-13T00:30:40.300] [INFO] cheese - inserting 1000 documents. first: Big Ten Conference Tournament and last: Matthew O'Reilly +[2018-02-13T00:30:40.301] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:30:40.305] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:30:40.309] [INFO] cheese - inserting 1000 documents. first: Slupia, Lesser Poland Voivodeship and last: Sosnowka, Podlaskie Voivodeship +[2018-02-13T00:30:40.340] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:30:40.345] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:30:40.354] [INFO] cheese - inserting 1000 documents. first: Foucaucourt-sur-Thabas, Lorraine and last: Old Post Office (Kirkwood, Delaware) +[2018-02-13T00:30:40.370] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:30:40.400] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:30:40.540] [INFO] cheese - inserting 1000 documents. first: Sosnowka, Wabrzezno County and last: Light Rail and Modern Tramway +[2018-02-13T00:30:40.562] [INFO] cheese - batch complete in: 0.216 secs +[2018-02-13T00:30:40.609] [INFO] cheese - inserting 1000 documents. first: Faber-Jackson Law and last: Yelena Khlusovich +[2018-02-13T00:30:40.618] [INFO] cheese - inserting 1000 documents. first: Captain George Carleton and last: C6H4O5 +[2018-02-13T00:30:40.648] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:30:40.652] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:30:40.691] [INFO] cheese - inserting 1000 documents. first: H.A.C. Handball and last: Arop-Sissano language +[2018-02-13T00:30:40.732] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:30:40.741] [INFO] cheese - inserting 1000 documents. first: Stary Petrin and last: Sturlic +[2018-02-13T00:30:40.746] [INFO] cheese - inserting 1000 documents. first: School business manager and last: Tai Kok Tsui Ferry +[2018-02-13T00:30:40.773] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:30:40.818] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:30:40.849] [INFO] cheese - inserting 1000 documents. first: Sarsostraca and last: Histopathologic +[2018-02-13T00:30:40.900] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:30:40.975] [INFO] cheese - inserting 1000 documents. first: QuikAir and last: CD Radio +[2018-02-13T00:30:41.007] [INFO] cheese - inserting 1000 documents. first: Category:Swedish people of the Seven Years' War and last: Swietokrzyskie Regional Assembly +[2018-02-13T00:30:41.011] [INFO] cheese - inserting 1000 documents. first: Vikalpa and last: Template:User Tochigi Prefecture +[2018-02-13T00:30:41.013] [INFO] cheese - inserting 1000 documents. first: Category:Cenozoic Caribbean and last: Scotch Free Church +[2018-02-13T00:30:41.040] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:30:41.048] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T00:30:41.058] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:30:41.164] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:30:41.264] [INFO] cheese - inserting 1000 documents. first: Susanne Henrietta of Lorraine-Elbeuf and last: Taquaracu de Minas +[2018-02-13T00:30:41.320] [INFO] cheese - inserting 1000 documents. first: Follow Me (Pain song) and last: Nap Shea +[2018-02-13T00:30:41.353] [INFO] cheese - inserting 1000 documents. first: Norma Reid Birley and last: Category:North Dakota Fighting Sioux women's ice hockey +[2018-02-13T00:30:41.361] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:30:41.419] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:30:41.430] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:30:41.440] [INFO] cheese - inserting 1000 documents. first: Kinder Morgan and last: Man of the House +[2018-02-13T00:30:41.535] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:30:41.638] [INFO] cheese - inserting 1000 documents. first: File:WAMedcaidBirthGraph.gif and last: Cristina Hoyos +[2018-02-13T00:30:41.642] [INFO] cheese - inserting 1000 documents. first: Interstate 670 (Kansas-Missouri) and last: List of presidential trips made by Barack Obama during 2010 +[2018-02-13T00:30:41.653] [INFO] cheese - inserting 1000 documents. first: Ohio State Route 543 and last: Template:S-line/IT-Eurostar left/Frecciabianco +[2018-02-13T00:30:41.674] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:30:41.701] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:30:41.712] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:30:41.858] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota Fighting Sioux men's ice hockey and last: Alfonso XI of Castille +[2018-02-13T00:30:41.897] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:30:41.900] [INFO] cheese - inserting 1000 documents. first: File:Cilfynydd RFC.jpg and last: Without A Trace (Trish) +[2018-02-13T00:30:41.930] [INFO] cheese - inserting 1000 documents. first: 24/7 (Rojo album) and last: Template:User in Wales/doc +[2018-02-13T00:30:41.961] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:30:41.964] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:30:42.000] [INFO] cheese - inserting 1000 documents. first: 16th Street (Washington, D.C.) and last: Hypolimnas bolina +[2018-02-13T00:30:42.052] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:30:42.070] [INFO] cheese - inserting 1000 documents. first: Living Legends (charity) and last: File:Cashola.jpg +[2018-02-13T00:30:42.082] [INFO] cheese - inserting 1000 documents. first: USWA and last: A Small Killing +[2018-02-13T00:30:42.089] [INFO] cheese - inserting 1000 documents. first: Astana FC and last: Template:2015–16 National Youth League table +[2018-02-13T00:30:42.112] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:30:42.129] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:30:42.138] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T00:30:42.241] [INFO] cheese - inserting 1000 documents. first: Category:The X Factor (TV series) navigational boxes and last: Dalworth High School +[2018-02-13T00:30:42.299] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:30:42.323] [INFO] cheese - inserting 1000 documents. first: Farnell (cocktail) and last: Extensions (album) +[2018-02-13T00:30:42.372] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:30:42.432] [INFO] cheese - inserting 1000 documents. first: File:Vladimir Chelomei.jpg and last: John Valentine (cricket) +[2018-02-13T00:30:42.436] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Batangas and last: Rishi Chanda +[2018-02-13T00:30:42.483] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:30:42.510] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:30:42.512] [INFO] cheese - inserting 1000 documents. first: KHAW and last: Template:Current U.S. governors +[2018-02-13T00:30:42.557] [INFO] cheese - inserting 1000 documents. first: Frank Fukuyama and last: Infinity Challenge +[2018-02-13T00:30:42.568] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:30:42.593] [INFO] cheese - inserting 1000 documents. first: Qal'eh Darvish and last: Category:Dominica expatriates in China +[2018-02-13T00:30:42.614] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:30:42.626] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:30:42.684] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kurort.sergeevka.com.ua and last: 田鳳山 +[2018-02-13T00:30:42.736] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:30:42.800] [INFO] cheese - inserting 1000 documents. first: 1994–95 Pilkington Cup and last: Gary P. Emerson +[2018-02-13T00:30:42.830] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:30:42.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion requests and last: White separatism +[2018-02-13T00:30:42.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Game (drinking game) and last: Fort Garrison +[2018-02-13T00:30:42.994] [INFO] cheese - inserting 1000 documents. first: Category:Dominica expatriates in Iran and last: Mordovsky (disambiguation) +[2018-02-13T00:30:43.003] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Perth/3 and last: File:Me Natalie (1967).jpg +[2018-02-13T00:30:43.019] [INFO] cheese - inserting 1000 documents. first: Catalan-Valencian and last: Ford Supermodel Of The World +[2018-02-13T00:30:43.049] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:30:43.071] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:30:43.090] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:30:43.105] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:30:43.125] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:30:43.180] [INFO] cheese - inserting 1000 documents. first: Le Chatelier's principle (chemistry) and last: Tocoron River +[2018-02-13T00:30:43.265] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:30:43.387] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of Mecklenburg and last: Category:Media companies established in 1914 +[2018-02-13T00:30:43.439] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:30:43.534] [INFO] cheese - inserting 1000 documents. first: Toczen, Greater Poland Voivodeship and last: ZBGM-75 AICBM +[2018-02-13T00:30:43.575] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:30:43.578] [INFO] cheese - inserting 1000 documents. first: Mordovsky (inhabited locality) and last: GE Healthcare Ltd +[2018-02-13T00:30:43.640] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:30:43.650] [INFO] cheese - inserting 1000 documents. first: General Tormassov and last: 455 (New Jersey bus) +[2018-02-13T00:30:43.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/How to prevent mold and last: Parachute Creek +[2018-02-13T00:30:43.715] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:30:43.717] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:30:43.791] [INFO] cheese - inserting 1000 documents. first: Urmas Rooba and last: Wikipedia:Articles for deletion/Ryan Dowling +[2018-02-13T00:30:43.857] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:30:43.882] [INFO] cheese - inserting 1000 documents. first: Traungoldhohle and last: Turt River +[2018-02-13T00:30:43.918] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:30:44.060] [INFO] cheese - inserting 1000 documents. first: Mamureh and last: Debagram +[2018-02-13T00:30:44.126] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:30:44.143] [INFO] cheese - inserting 1000 documents. first: Spheric section and last: University of Mondragon +[2018-02-13T00:30:44.156] [INFO] cheese - inserting 1000 documents. first: Category:Media companies disestablished in 1961 and last: Slalom water ski +[2018-02-13T00:30:44.176] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T00:30:44.215] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:30:44.254] [INFO] cheese - inserting 1000 documents. first: Over the Rainbow and last: Wikipedia:Historical archive/Imported pictures/Pictures from southwarkphotolibrary.co.uk details +[2018-02-13T00:30:44.344] [INFO] cheese - batch complete in: 1.295 secs +[2018-02-13T00:30:44.391] [INFO] cheese - inserting 1000 documents. first: 6-bolt mains and last: List of taxi episodes +[2018-02-13T00:30:44.407] [INFO] cheese - inserting 1000 documents. first: Commercial style and last: Brit hume +[2018-02-13T00:30:44.426] [INFO] cheese - inserting 1000 documents. first: University of Narino and last: Vamonos Pa'l Rio +[2018-02-13T00:30:44.447] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:30:44.493] [INFO] cheese - inserting 1000 documents. first: Category:Municipal presidents of Ensenada and last: Snow Trolls +[2018-02-13T00:30:44.503] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:30:44.530] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:30:44.584] [INFO] cheese - inserting 1000 documents. first: Dream Chronicles: The Eternal Maze and last: Ulrich Füterer +[2018-02-13T00:30:44.601] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:30:44.650] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:30:44.705] [INFO] cheese - inserting 1000 documents. first: Ludicrous Mode and last: Billman (surname) +[2018-02-13T00:30:44.711] [INFO] cheese - inserting 1000 documents. first: Vamoscsalad and last: Veze, Cantal +[2018-02-13T00:30:44.748] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:30:44.775] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:30:44.871] [INFO] cheese - inserting 1000 documents. first: Category:1830 disasters and last: Zayante Band-Winged Grasshopper +[2018-02-13T00:30:44.928] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:30:44.992] [INFO] cheese - inserting 1000 documents. first: Vezelise and last: Vladimir Martinovic +[2018-02-13T00:30:45.041] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:30:45.075] [INFO] cheese - inserting 1000 documents. first: Template:Location map Sweden and last: St. Francis Xavier College (Canberra) +[2018-02-13T00:30:45.114] [INFO] cheese - inserting 1000 documents. first: Boštanj Quarry Mass Grave and last: Atlanta International Documentary Film Festival +[2018-02-13T00:30:45.123] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:30:45.128] [INFO] cheese - inserting 1000 documents. first: Dinmore railway station and last: Gdańsk Nowe Szkoty railway station +[2018-02-13T00:30:45.154] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:30:45.183] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:30:45.201] [INFO] cheese - inserting 1000 documents. first: Vladimir Matic and last: Weglewo, Pila County +[2018-02-13T00:30:45.208] [INFO] cheese - inserting 1000 documents. first: File:Marianas Trench - Astoria (Official Album Cover).jpg and last: Yelena Parkhomenko +[2018-02-13T00:30:45.218] [INFO] cheese - batch complete in: 0.177 secs +[2018-02-13T00:30:45.224] [INFO] cheese - inserting 1000 documents. first: Template:Kalmar County and last: Hilltop Youth +[2018-02-13T00:30:45.250] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:30:45.298] [INFO] cheese - inserting 1000 documents. first: Benalbanach (ship) and last: August of Saxe-Coburg and Gotha, 5th Prince of Kohary +[2018-02-13T00:30:45.320] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T00:30:45.346] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:30:45.401] [INFO] cheese - inserting 1000 documents. first: Weglewo, Pomeranian Voivodeship and last: Vyacheslav Vasilevski +[2018-02-13T00:30:45.426] [INFO] cheese - batch complete in: 0.208 secs +[2018-02-13T00:30:45.476] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe and the bassett and last: Kiss and Say Goodbye +[2018-02-13T00:30:45.477] [INFO] cheese - inserting 1000 documents. first: George Small (piano maker) and last: Template:Two Gallants +[2018-02-13T00:30:45.508] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:30:45.509] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:30:45.600] [INFO] cheese - inserting 1000 documents. first: Aikim Andrews and last: Arif (surname) +[2018-02-13T00:30:45.604] [INFO] cheese - inserting 1000 documents. first: Wojtostwo, Piotrkow County and last: Yoko Kasahara +[2018-02-13T00:30:45.625] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:30:45.638] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:30:45.669] [INFO] cheese - inserting 1000 documents. first: Beyliks and last: Meeno Peluce +[2018-02-13T00:30:45.685] [INFO] cheese - inserting 1000 documents. first: File:Beverley Knight - Sista Sista (CD 2).jpg and last: Thuravoor cherthala +[2018-02-13T00:30:45.715] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:30:45.720] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:30:45.801] [INFO] cheese - inserting 1000 documents. first: File:Osiris statuette cropped.jpg and last: The Skin That I Inhabit +[2018-02-13T00:30:45.832] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:30:45.848] [INFO] cheese - inserting 1000 documents. first: Ribulose-bisphosphate-carboxylase/oxygenase N-methyltransferase and last: Dryden Historic District (North Park, San Diego, California) +[2018-02-13T00:30:45.880] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:30:45.907] [INFO] cheese - inserting 1000 documents. first: Category:Mainstream jazz trombonists and last: Wikipedia:Articles for deletion/Kantebura killas +[2018-02-13T00:30:45.923] [INFO] cheese - inserting 1000 documents. first: Belgorod and last: Empetrum +[2018-02-13T00:30:45.940] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:30:45.995] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:30:45.995] [INFO] cheese - inserting 1000 documents. first: 1559 in France and last: 52 Armored Engineer Squadron +[2018-02-13T00:30:46.040] [INFO] cheese - inserting 1000 documents. first: Ghāghra and last: John DiGilio +[2018-02-13T00:30:46.048] [INFO] cheese - inserting 1000 documents. first: Zaluzany and last: Zerovnica +[2018-02-13T00:30:46.065] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:30:46.109] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:30:46.117] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:30:46.142] [INFO] cheese - inserting 1000 documents. first: List of Doctor Who universe creatures and aliens (H–P) and last: 2-octaprenyl-6-hydroxyphenyl methylase +[2018-02-13T00:30:46.172] [INFO] cheese - inserting 1000 documents. first: Adam and Eve and Pinch Me (Rendell novel) and last: Sylvester L. Weaver +[2018-02-13T00:30:46.175] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:30:46.241] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:30:46.302] [INFO] cheese - inserting 1000 documents. first: Zerstorergeschwader 1 and last: File:C.D. Howe in aircraft factory.jpg +[2018-02-13T00:30:46.327] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:30:46.340] [INFO] cheese - inserting 1000 documents. first: Zürich Hardbrücke railway station and last: Stub Hub +[2018-02-13T00:30:46.381] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:30:46.430] [INFO] cheese - inserting 1000 documents. first: Jaroslav Sieger and last: Landgravines of Hesse-Marburg +[2018-02-13T00:30:46.442] [INFO] cheese - inserting 1000 documents. first: S-adenosyl-L-methionine:3-(all-trans-polyprenyl)benzene-1,2-diol 2-O-methyltransferase and last: Trimethylamine methyltransferase +[2018-02-13T00:30:46.449] [INFO] cheese - inserting 1000 documents. first: Template:User phonograph and last: Category:1911 establishments in the Portuguese Empire +[2018-02-13T00:30:46.464] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:30:46.478] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:30:46.533] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:30:46.650] [INFO] cheese - inserting 1000 documents. first: Viva Santana! and last: Category:American painter stubs +[2018-02-13T00:30:46.663] [INFO] cheese - inserting 1000 documents. first: Bonde Farmhouse and last: Guntha +[2018-02-13T00:30:46.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Image Tag Team and last: Indiana University – Purdue University Indianapolis +[2018-02-13T00:30:46.700] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:30:46.713] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:30:46.718] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:30:46.794] [INFO] cheese - inserting 1000 documents. first: Post-bebop and last: Area code 656 +[2018-02-13T00:30:46.796] [INFO] cheese - inserting 1000 documents. first: First Outlook and last: Czajków, Turek County +[2018-02-13T00:30:46.835] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:30:46.848] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:30:46.924] [INFO] cheese - inserting 1000 documents. first: Fragmentation bombs and last: Neville Featherstone-Griffin +[2018-02-13T00:30:46.941] [INFO] cheese - inserting 1000 documents. first: William and Helen Koerting House and last: Nina compton +[2018-02-13T00:30:46.970] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:30:46.992] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:30:47.097] [INFO] cheese - inserting 1000 documents. first: Pope Cosmas II of Alexandria and last: Wikipedia:Articles for deletion/Axsellit +[2018-02-13T00:30:47.116] [INFO] cheese - inserting 1000 documents. first: South End, Seattle, Washington and last: Obscurior niasiensis +[2018-02-13T00:30:47.146] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:30:47.217] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:30:47.297] [INFO] cheese - inserting 1000 documents. first: Czyste, Greater Poland Voivodeship and last: Toby Alderweireld +[2018-02-13T00:30:47.313] [INFO] cheese - inserting 1000 documents. first: Indiana University Purdue University at Indianapolis and last: Thousand islands dressing +[2018-02-13T00:30:47.328] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:30:47.344] [INFO] cheese - inserting 1000 documents. first: Draft:David Phillips (archer) and last: File:Jhurulu School Building Erection.jpg +[2018-02-13T00:30:47.375] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:30:47.379] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:30:47.390] [INFO] cheese - inserting 1000 documents. first: Bishopric of Lodève and last: Remember the Milk +[2018-02-13T00:30:47.435] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:30:47.470] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese football friendly trophies and last: National Kiswahili Association-Kenya +[2018-02-13T00:30:47.510] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:30:47.558] [INFO] cheese - inserting 1000 documents. first: Downtown Historic District (Galesville, Wisconsin) and last: Ruben Alvarez +[2018-02-13T00:30:47.574] [INFO] cheese - inserting 1000 documents. first: Munhar and last: Jean Belanger +[2018-02-13T00:30:47.590] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:30:47.594] [INFO] cheese - inserting 1000 documents. first: Mennen Tullen and last: Gargantuas +[2018-02-13T00:30:47.611] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:30:47.646] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:30:47.665] [INFO] cheese - inserting 1000 documents. first: Pacman (software) and last: Balkan pine +[2018-02-13T00:30:47.706] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:30:47.716] [INFO] cheese - inserting 1000 documents. first: Giovan Battista Filippo Basile and last: ISO 639:cch +[2018-02-13T00:30:47.740] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T00:30:47.743] [INFO] cheese - inserting 1000 documents. first: UniTrans and last: Monirul Islam +[2018-02-13T00:30:47.794] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:30:47.861] [INFO] cheese - inserting 1000 documents. first: Category:Events by country and last: Portal:History of science/Selected anniversaries/April 12 +[2018-02-13T00:30:47.895] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:30:47.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/xatzone.com and last: Anodorhynchus martinicus +[2018-02-13T00:30:47.967] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:30:47.978] [INFO] cheese - inserting 1000 documents. first: ISO 639:ccj and last: Funk on Ah Roll +[2018-02-13T00:30:48.007] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:30:48.036] [INFO] cheese - inserting 1000 documents. first: The Farnsworth Parabox and last: File:Scarpa stair.JPG +[2018-02-13T00:30:48.085] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:30:48.105] [INFO] cheese - inserting 1000 documents. first: Category:1851 establishments in Switzerland and last: BT National League Division 3 +[2018-02-13T00:30:48.117] [INFO] cheese - inserting 1000 documents. first: The Baptism of Christ (Piero della Francesca) and last: Malcolm Munthe +[2018-02-13T00:30:48.142] [INFO] cheese - inserting 1000 documents. first: Random oracle model and last: Battle of Savo Island +[2018-02-13T00:30:48.148] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:30:48.165] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:30:48.183] [INFO] cheese - inserting 1000 documents. first: List of advertising agencies by revenue and last: ISO 639:ksj +[2018-02-13T00:30:48.190] [INFO] cheese - inserting 1000 documents. first: Jim Johnson (football coach) and last: Wikipedia:WikiProject Spam/LinkReports/stelling-amsterdam.nl +[2018-02-13T00:30:48.202] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:30:48.221] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T00:30:48.237] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:30:48.414] [INFO] cheese - inserting 1000 documents. first: Museum of Life (film) and last: Best of Puddle of Mudd +[2018-02-13T00:30:48.490] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:30:48.532] [INFO] cheese - inserting 1000 documents. first: ISO 639:ksl and last: CA7 (disambiguation) +[2018-02-13T00:30:48.554] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:30:48.591] [INFO] cheese - inserting 1000 documents. first: Remote Control (1992 film) and last: Rapture Index +[2018-02-13T00:30:48.604] [INFO] cheese - inserting 1000 documents. first: Luigi Marchesi (painter) and last: Farad (disambiguation) +[2018-02-13T00:30:48.627] [INFO] cheese - inserting 1000 documents. first: File:FC Spandau.png and last: Category:Suspected Wikipedia sockpuppets of Ccsheffield +[2018-02-13T00:30:48.643] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:30:48.659] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:30:48.705] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:30:48.740] [INFO] cheese - inserting 1000 documents. first: Bishop of Vancouver and last: Revista H +[2018-02-13T00:30:48.811] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:30:48.816] [INFO] cheese - inserting 1000 documents. first: ISO 639:mrs and last: ISO 639:pec +[2018-02-13T00:30:48.855] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:30:48.941] [INFO] cheese - inserting 1000 documents. first: Tokio Hotel Best Of and last: The Successor (film) +[2018-02-13T00:30:48.991] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:30:49.036] [INFO] cheese - inserting 1000 documents. first: File:Ho Chi Minh City University of Law Logo.jpeg and last: Al-Qatta'i +[2018-02-13T00:30:49.060] [INFO] cheese - inserting 1000 documents. first: Mary Lasker and last: Wikipedia:Articles for deletion/Brian M. Palmer +[2018-02-13T00:30:49.083] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:30:49.108] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:30:49.111] [INFO] cheese - inserting 1000 documents. first: File:Artie bio.JPG and last: Nicole Dufresne +[2018-02-13T00:30:49.121] [INFO] cheese - inserting 1000 documents. first: ISO 639:ped and last: When The Saints Come Marching In +[2018-02-13T00:30:49.135] [INFO] cheese - inserting 1000 documents. first: Sterling-Winthrop Co. and last: José Ramírez III +[2018-02-13T00:30:49.152] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:30:49.163] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:30:49.173] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:30:49.198] [INFO] cheese - inserting 1000 documents. first: Lockheed TR-1 and last: Orange box +[2018-02-13T00:30:49.278] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T00:30:49.404] [INFO] cheese - inserting 1000 documents. first: Harlem Shake (meme and last: Oregon Republican primary, 2008 +[2018-02-13T00:30:49.418] [INFO] cheese - inserting 1000 documents. first: Dirk Schulze-Makuch and last: Geronimo (1993 film) +[2018-02-13T00:30:49.427] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:30:49.441] [INFO] cheese - inserting 1000 documents. first: Melty Brain and last: Draft:Danko Sipka +[2018-02-13T00:30:49.465] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:30:49.482] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:30:49.673] [INFO] cheese - inserting 1000 documents. first: Xenusian and last: 1973 Cannes Film Festival +[2018-02-13T00:30:49.712] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:30:49.722] [INFO] cheese - inserting 1000 documents. first: Association of Public-Safety communications Officials-International and last: June 2007 Texas flooding +[2018-02-13T00:30:49.748] [INFO] cheese - inserting 1000 documents. first: Brazilian embroidery and last: Template:Subdivisions of Newfoundland and Labrador +[2018-02-13T00:30:49.775] [INFO] cheese - inserting 1000 documents. first: ISO 639:tvs and last: ISO 639:yra +[2018-02-13T00:30:49.782] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:30:49.809] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:30:49.833] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:30:49.964] [INFO] cheese - inserting 1000 documents. first: Nike White Rose Classic and last: Greek Basket League 2004-05 +[2018-02-13T00:30:50.023] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:30:50.100] [INFO] cheese - inserting 1000 documents. first: Humaria hemispherica and last: List of 2006 box office number-one films in the South Korea +[2018-02-13T00:30:50.107] [INFO] cheese - inserting 1000 documents. first: Category:1916 in the United States Virgin Islands and last: Boudjebaa El Bordj +[2018-02-13T00:30:50.224] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:30:50.243] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:30:50.253] [INFO] cheese - inserting 1000 documents. first: Group 12 element and last: Albert Woolson +[2018-02-13T00:30:50.261] [INFO] cheese - inserting 1000 documents. first: ISO 639:yrb and last: Catalan-Talgo +[2018-02-13T00:30:50.291] [INFO] cheese - inserting 1000 documents. first: Reasons (disambiguation) and last: Tim Coyle +[2018-02-13T00:30:50.315] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:30:50.352] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T00:30:50.418] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:30:50.668] [INFO] cheese - inserting 1000 documents. first: Payao Poontarat and last: Template:User Fermanagh +[2018-02-13T00:30:50.773] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T00:30:50.801] [INFO] cheese - inserting 1000 documents. first: File:The Load-Out Side-B Jackson Browne.jpg and last: Category:Sculptors from Oregon +[2018-02-13T00:30:50.873] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:30:50.951] [INFO] cheese - inserting 1000 documents. first: Josimar da silva Martins and last: Neue Deutsche Welle (Album) +[2018-02-13T00:30:50.960] [INFO] cheese - inserting 1000 documents. first: 1955 NCAA Division I-A football season and last: Category:Top-importance Past Political Scandals and Controversies articles +[2018-02-13T00:30:50.992] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:30:51.025] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:30:51.058] [INFO] cheese - inserting 1000 documents. first: Collaboration with Nazi Germany and last: Nanog +[2018-02-13T00:30:51.118] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:30:51.200] [INFO] cheese - inserting 1000 documents. first: File:Xmastress.PNG and last: The Definitive Simon and Garfunkel +[2018-02-13T00:30:51.264] [INFO] cheese - inserting 1000 documents. first: Lapis armenus and last: Portuguese East Africa Colony +[2018-02-13T00:30:51.285] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T00:30:51.317] [INFO] cheese - inserting 1000 documents. first: 2016 Superbike World Championship and last: Holiday Chile +[2018-02-13T00:30:51.326] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:30:51.367] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:30:51.426] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Past Political Scandals and Controversies articles and last: Toll (road usage) +[2018-02-13T00:30:51.442] [INFO] cheese - inserting 1000 documents. first: Never Seen The Light of Day and last: Category:Gearing-class destroyer infobox templates +[2018-02-13T00:30:51.471] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:30:51.508] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:30:51.515] [INFO] cheese - inserting 1000 documents. first: Cherry Drummond and last: Greatest Hits (Patricia Conroy album) +[2018-02-13T00:30:51.569] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:30:51.626] [INFO] cheese - inserting 1000 documents. first: Chitterlings and last: Platanista Gangetica +[2018-02-13T00:30:51.655] [INFO] cheese - inserting 1000 documents. first: Dismiss with prejudice and last: 1744 in the United Kingdom +[2018-02-13T00:30:51.704] [INFO] cheese - batch complete in: 1.352 secs +[2018-02-13T00:30:51.710] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:30:51.813] [INFO] cheese - inserting 1000 documents. first: File:Loose.png and last: Anoushay Abbasi +[2018-02-13T00:30:51.865] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:30:51.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2015 October 2 and last: Michael Clarkson (pastoralist) +[2018-02-13T00:30:51.960] [INFO] cheese - inserting 1000 documents. first: Marcel Busch and last: Category:Vålerenga Ishockey players +[2018-02-13T00:30:51.996] [INFO] cheese - inserting 1000 documents. first: Alliance israélite universelle and last: Wikipedia:Articles for deletion/Oldest Official Student Publication +[2018-02-13T00:30:52.032] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:30:52.045] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:30:52.063] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:30:52.110] [INFO] cheese - inserting 1000 documents. first: Cardinal Wiseman Catholic Technology College and last: Simulex Inc. +[2018-02-13T00:30:52.175] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:30:52.211] [INFO] cheese - inserting 1000 documents. first: File:AllTimeLowStraightToDVD.jpg and last: Mountain Grove, Virginia +[2018-02-13T00:30:52.262] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:30:52.302] [INFO] cheese - inserting 1000 documents. first: San Juan Tamazola Mixtec and last: Category:History of Kerala on film +[2018-02-13T00:30:52.363] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:30:52.437] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Conquer Club and last: State Electricity Regulatory Commission +[2018-02-13T00:30:52.479] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:30:52.502] [INFO] cheese - inserting 1000 documents. first: Book:People and Orders (PT) 11 Seg and last: PS Gael (1867) +[2018-02-13T00:30:52.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiquette assistance/archive2 and last: Rulers of Choson +[2018-02-13T00:30:52.543] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:30:52.592] [INFO] cheese - inserting 1000 documents. first: Enrique Amorim and last: Wikipedia:Selected anniversaries/July 3 +[2018-02-13T00:30:52.601] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:30:52.613] [INFO] cheese - inserting 1000 documents. first: The Godfather I and last: The Angelic Upstarts +[2018-02-13T00:30:52.685] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:30:52.695] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T00:30:52.749] [INFO] cheese - inserting 1000 documents. first: Camp sites and last: MGZ +[2018-02-13T00:30:52.767] [INFO] cheese - inserting 1000 documents. first: Veni redemptor gentium and last: Dublin GAA Senior B Hurling Championship +[2018-02-13T00:30:52.812] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:30:52.824] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:30:52.947] [INFO] cheese - inserting 1000 documents. first: Royal Road of Kraków and last: Portal:Istanbul/Categories +[2018-02-13T00:30:52.992] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:30:53.127] [INFO] cheese - inserting 1000 documents. first: Tatyana Gordeyeva and last: Wikipedia:Articles for deletion/Secret Agent 23 Skidoo +[2018-02-13T00:30:53.223] [INFO] cheese - inserting 1000 documents. first: The very best of Level 42 and last: John Oxx +[2018-02-13T00:30:53.236] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:30:53.255] [INFO] cheese - inserting 1000 documents. first: Indoors and last: Jonathan Davis (disambiguation) +[2018-02-13T00:30:53.270] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:30:53.318] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:30:53.326] [INFO] cheese - inserting 1000 documents. first: Kevin "Dis" McAllister and last: Muzaffarpur Junction +[2018-02-13T00:30:53.332] [INFO] cheese - inserting 1000 documents. first: MHJ and last: Soft Focus +[2018-02-13T00:30:53.363] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:30:53.391] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:30:53.477] [INFO] cheese - inserting 1000 documents. first: File:Captain Barbell.jpg and last: Bob Braithwaite (sport shooter) +[2018-02-13T00:30:53.522] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:30:53.569] [INFO] cheese - inserting 1000 documents. first: Orlando Science Center and last: Uppland Runic Inscription 358 +[2018-02-13T00:30:53.581] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Selected anniversaries/July 4 and last: Italo-Ethiopian War +[2018-02-13T00:30:53.610] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:30:53.615] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fiona Clayton and last: Leman International School (China) +[2018-02-13T00:30:54.082] [INFO] cheese - batch complete in: 1.386 secs +[2018-02-13T00:30:54.199] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T00:30:54.316] [INFO] cheese - inserting 1000 documents. first: Murray Tosh and last: File:Recruitmovie.jpg +[2018-02-13T00:30:54.371] [INFO] cheese - inserting 1000 documents. first: Mic array and last: Wikipedia:WikiProject Spam/LinkReports/mccb.org +[2018-02-13T00:30:54.463] [INFO] cheese - inserting 1000 documents. first: Darko Karadžić and last: Lined surgeonfish +[2018-02-13T00:30:54.489] [INFO] cheese - inserting 1000 documents. first: Great Ejectment and last: Ban Phônsavan +[2018-02-13T00:30:54.537] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T00:30:54.590] [INFO] cheese - batch complete in: 1.272 secs +[2018-02-13T00:30:54.603] [INFO] cheese - batch complete in: 1.212 secs +[2018-02-13T00:30:54.677] [INFO] cheese - batch complete in: 1.314 secs +[2018-02-13T00:30:54.861] [INFO] cheese - inserting 1000 documents. first: UD Fuengirola Los Boliches and last: Category:15th century in Easter Island +[2018-02-13T00:30:54.885] [INFO] cheese - inserting 1000 documents. first: Voluntary Taxation and last: Kōjimachi Station +[2018-02-13T00:30:54.908] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:30:55.043] [INFO] cheese - batch complete in: 1.433 secs +[2018-02-13T00:30:55.109] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mccb.org and last: Category:Seaside resorts in Oregon +[2018-02-13T00:30:55.149] [INFO] cheese - inserting 1000 documents. first: Thakhèk and last: Doremi Laboratories, Inc. +[2018-02-13T00:30:55.190] [INFO] cheese - inserting 1000 documents. first: Alpha1Estates and last: File:Edinburgh Castle 2005.jpg +[2018-02-13T00:30:55.208] [INFO] cheese - inserting 1000 documents. first: Category:FC Krystal Kherson players and last: Wikipedia:Articles for deletion/JP Cadorin +[2018-02-13T00:30:55.213] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:30:55.221] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:30:55.282] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:30:55.294] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:30:55.390] [INFO] cheese - inserting 1000 documents. first: Hoor of Babylon and last: File:NRJ 12 2015 logo.png +[2018-02-13T00:30:55.544] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:30:55.653] [INFO] cheese - inserting 1000 documents. first: South American Plate and last: Historical Jesus +[2018-02-13T00:30:55.677] [INFO] cheese - inserting 1000 documents. first: File:FlyingWithoutWings.jpg and last: File:Live and die.jpg +[2018-02-13T00:30:55.720] [INFO] cheese - batch complete in: 1.638 secs +[2018-02-13T00:30:55.720] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:30:55.797] [INFO] cheese - inserting 1000 documents. first: United States presidential election in Alabama, 1824 and last: Category:WikiProject Nauru members +[2018-02-13T00:30:55.819] [INFO] cheese - inserting 1000 documents. first: Qays ibn Musahir and last: William with the long beard +[2018-02-13T00:30:55.828] [INFO] cheese - inserting 1000 documents. first: Dichloroacetamide and last: Template:MuswellbrookShire-geo-stub +[2018-02-13T00:30:55.850] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:30:55.859] [INFO] cheese - inserting 1000 documents. first: 2011 Extreme Sailing Series and last: Wikipedia:WikiProject Spam/Local/pashtopro.com +[2018-02-13T00:30:55.868] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:30:55.925] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:30:55.937] [INFO] cheese - inserting 1000 documents. first: Dublin and Southwestern Railroad and last: File:Sentou Yousei Yukikaze.jpg +[2018-02-13T00:30:55.943] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:30:56.016] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:30:56.114] [INFO] cheese - inserting 1000 documents. first: Saint-Trinit and last: SR-54 +[2018-02-13T00:30:56.148] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:30:56.258] [INFO] cheese - inserting 1000 documents. first: Oregon Bill of 1848 and last: Grid search +[2018-02-13T00:30:56.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Veritas Aeterna/Draft Kissinger and last: KVIE, Inc. +[2018-02-13T00:30:56.295] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:30:56.312] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:30:56.391] [INFO] cheese - inserting 1000 documents. first: Duane Mansion and last: The Jim Morrison Triptych +[2018-02-13T00:30:56.437] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:30:56.457] [INFO] cheese - inserting 1000 documents. first: Template:Maitland-geo-stub and last: List of Heroes of the Russian Federation (B) +[2018-02-13T00:30:56.480] [INFO] cheese - inserting 1000 documents. first: Formal derivative and last: Bánh xèo +[2018-02-13T00:30:56.523] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:30:56.549] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:30:56.552] [INFO] cheese - inserting 1000 documents. first: Where Were You Last Night (song) and last: Jimmie Jones (defensive end) +[2018-02-13T00:30:56.594] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:30:56.644] [INFO] cheese - inserting 1000 documents. first: Rod Smart and last: Two Knights defence +[2018-02-13T00:30:56.715] [INFO] cheese - inserting 1000 documents. first: Polo, Valenzuela and last: Karasuk, Russia +[2018-02-13T00:30:56.727] [INFO] cheese - inserting 1000 documents. first: Later Sabeol and last: Jules B Montenier +[2018-02-13T00:30:56.735] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T00:30:56.752] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:30:56.797] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:30:56.944] [INFO] cheese - inserting 1000 documents. first: Pearl in the Palm and last: Maybe My Baby +[2018-02-13T00:30:56.968] [INFO] cheese - inserting 1000 documents. first: Carlsbad 1907 chess tournament and last: Economic and Social Committee +[2018-02-13T00:30:56.989] [INFO] cheese - inserting 1000 documents. first: Charonia tritonis and last: File for Record +[2018-02-13T00:30:57.007] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:30:57.019] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:30:57.064] [INFO] cheese - inserting 1000 documents. first: Dvd Ram and last: Template:Chapters in the Gospel of Mark +[2018-02-13T00:30:57.065] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:30:57.101] [INFO] cheese - inserting 1000 documents. first: Vyacheslav Derkach and last: List of songs containing the fifties' chord progression +[2018-02-13T00:30:57.149] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:30:57.203] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:30:57.241] [INFO] cheese - inserting 1000 documents. first: Manual Testing and last: Alison Fairlie +[2018-02-13T00:30:57.286] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:30:57.484] [INFO] cheese - inserting 1000 documents. first: File:CILLA BAT BRN.jpg and last: Allegations of breaches of international law by the United States +[2018-02-13T00:30:57.485] [INFO] cheese - inserting 1000 documents. first: E. Clarke Arnold Residence and last: 1993 Malaysian constitutional ammendment +[2018-02-13T00:30:57.502] [INFO] cheese - inserting 1000 documents. first: Two Knights Defence and last: Irenism +[2018-02-13T00:30:57.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/beedbox.com and last: Category:Peaceville Records albums +[2018-02-13T00:30:57.526] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:30:57.537] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:30:57.577] [INFO] cheese - inserting 1000 documents. first: Mundakanniamman Koil (Chennai MRTS) and last: Sierra de San Carlos +[2018-02-13T00:30:57.579] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:30:57.595] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:30:57.600] [INFO] cheese - inserting 1000 documents. first: Lee Sang-hyun and last: Immurement +[2018-02-13T00:30:57.655] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:30:57.667] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:30:57.674] [INFO] cheese - inserting 1000 documents. first: Template:1976 AL Record vs. opponents and last: Category:1978 natural disasters in the United States +[2018-02-13T00:30:57.708] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:30:57.956] [INFO] cheese - inserting 1000 documents. first: David Grann and last: Beat Me +[2018-02-13T00:30:57.982] [INFO] cheese - inserting 1000 documents. first: Chosroids and last: Zanesville-Dresden Road +[2018-02-13T00:30:57.997] [INFO] cheese - inserting 1000 documents. first: Category:Permanent Records albums and last: Semi-Detached +[2018-02-13T00:30:58.010] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:30:58.028] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:30:58.031] [INFO] cheese - inserting 1000 documents. first: Category:1971 natural disasters in the United States and last: Jacobisq/Capacity to be alone +[2018-02-13T00:30:58.047] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:30:58.069] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:30:58.097] [INFO] cheese - inserting 1000 documents. first: Africanus, Sextus Julius and last: Jarosite +[2018-02-13T00:30:58.135] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:30:58.182] [INFO] cheese - inserting 1000 documents. first: Wood gecko and last: Ciphers and Constellations, in Love with a Woman +[2018-02-13T00:30:58.228] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:30:58.257] [INFO] cheese - inserting 1000 documents. first: Template:Lok Rajya Party/meta/shortname and last: List of bishops in the Episcopal Diocese of Chicago +[2018-02-13T00:30:58.304] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:30:58.326] [INFO] cheese - inserting 1000 documents. first: Toutant Airport and last: Category:Paradime albums +[2018-02-13T00:30:58.361] [INFO] cheese - inserting 1000 documents. first: Ruslan Mirzaliyev and last: Morton d. may +[2018-02-13T00:30:58.363] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:30:58.399] [INFO] cheese - inserting 1000 documents. first: Asmat languages and last: ASHS +[2018-02-13T00:30:58.403] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:30:58.409] [INFO] cheese - inserting 1000 documents. first: 1953 Cupa României Final and last: Shield aralia +[2018-02-13T00:30:58.443] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:30:58.465] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:30:58.556] [INFO] cheese - inserting 1000 documents. first: Category:1788 in Africa and last: Lurch/Butterfly Love +[2018-02-13T00:30:58.564] [INFO] cheese - inserting 1000 documents. first: Category:Paper + Plastick albums and last: Portal:University of Montana/Selected article +[2018-02-13T00:30:58.587] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:30:58.587] [INFO] cheese - batch complete in: 0.222 secs +[2018-02-13T00:30:58.737] [INFO] cheese - inserting 1000 documents. first: Martin Chávez and last: John Taylor, Baron Taylor of Warwick +[2018-02-13T00:30:58.744] [INFO] cheese - inserting 1000 documents. first: Izel Jenkins and last: Microparasite +[2018-02-13T00:30:58.747] [INFO] cheese - inserting 1000 documents. first: Ghita of Alizarr and last: Wikipedia:Template messages/Section +[2018-02-13T00:30:58.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Sujitmoto Group and last: Wikipedia:Articles for deletion/The Church at BattleCreek +[2018-02-13T00:30:58.778] [INFO] cheese - inserting 1000 documents. first: EA Distribution and last: The Hip Hop Years +[2018-02-13T00:30:58.787] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:30:58.806] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:30:58.841] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:30:58.863] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:30:58.929] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:30:59.067] [INFO] cheese - inserting 1000 documents. first: Tokyo Youth Development Ordinance and last: Bafata (disambiguation) +[2018-02-13T00:30:59.139] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:30:59.153] [INFO] cheese - inserting 1000 documents. first: File:Steel Pole Bath Tub - Lurch and Butterfly Love.jpeg and last: Category:1865 in Maryland +[2018-02-13T00:30:59.226] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:30:59.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wendy Sweeney and last: Wikipedia:Articles for deletion/Tom Williams's (stock trader) +[2018-02-13T00:30:59.420] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:30:59.466] [INFO] cheese - inserting 1000 documents. first: Alexander Malcolm Manson and last: Wikipedia:Articles for deletion/American Mayor(film) +[2018-02-13T00:30:59.477] [INFO] cheese - inserting 1000 documents. first: Bishop of St-Lizier and last: Ilona Jokinen +[2018-02-13T00:30:59.491] [INFO] cheese - inserting 1000 documents. first: Baila Conmigo (disambiguation) and last: Template:Packaging +[2018-02-13T00:30:59.512] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:30:59.538] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:30:59.546] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:30:59.585] [INFO] cheese - inserting 1000 documents. first: Mwanga District and last: Polyols +[2018-02-13T00:30:59.617] [INFO] cheese - inserting 1000 documents. first: You shall not bear false witness against your neighbor and last: Kolkata railway station +[2018-02-13T00:30:59.649] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:30:59.652] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:30:59.758] [INFO] cheese - inserting 1000 documents. first: Category:1941 comics endings and last: Draft:List of blockchain companies +[2018-02-13T00:30:59.789] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:30:59.930] [INFO] cheese - inserting 1000 documents. first: Hopkinsia and last: Buchtel football +[2018-02-13T00:30:59.963] [INFO] cheese - inserting 1000 documents. first: Cross stitches and last: Menominees +[2018-02-13T00:30:59.978] [INFO] cheese - inserting 1000 documents. first: Rome (Paris Métro) and last: Server-side include +[2018-02-13T00:30:59.980] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:30:59.990] [INFO] cheese - inserting 1000 documents. first: Portal:Portal/Selected picture/5 and last: Mythos (computer game) +[2018-02-13T00:31:00.005] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:31:00.045] [INFO] cheese - inserting 1000 documents. first: Helen of Troy (TV series) and last: Template:Modern-pentathlon-stub +[2018-02-13T00:31:00.057] [INFO] cheese - batch complete in: 1.194 secs +[2018-02-13T00:31:00.064] [INFO] cheese - inserting 1000 documents. first: Yumi (disambiguation) and last: Dogger +[2018-02-13T00:31:00.067] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:31:00.088] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:31:00.145] [INFO] cheese - inserting 1000 documents. first: 2015–16 Esbjerg fB season and last: Second Revolution Day +[2018-02-13T00:31:00.160] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:31:00.274] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:31:00.498] [INFO] cheese - inserting 1000 documents. first: Nubian Flapshell Turtle and last: Category:Wikipedia featured topics New York and New Jersey campaign featured content +[2018-02-13T00:31:00.528] [INFO] cheese - inserting 1000 documents. first: Chang Hsien-chung and last: Darn That Dream +[2018-02-13T00:31:00.580] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:31:00.593] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:31:00.602] [INFO] cheese - inserting 1000 documents. first: File:We're the Brotherhood Of Man.jpg and last: Folke Sundquist +[2018-02-13T00:31:00.649] [INFO] cheese - inserting 1000 documents. first: Efase kigali and last: Wikipedia:Main Page history/2013 March 3 +[2018-02-13T00:31:00.694] [INFO] cheese - inserting 1000 documents. first: Helensburgh railway station and last: File:SAPN.png +[2018-02-13T00:31:00.697] [INFO] cheese - inserting 1000 documents. first: Nyerere Day and last: 1916 in Russia +[2018-02-13T00:31:00.696] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:31:00.731] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:31:00.768] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:31:00.771] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:31:01.001] [INFO] cheese - inserting 1000 documents. first: Arncliffe, North Yorkshire and last: Kay Kendall +[2018-02-13T00:31:01.069] [INFO] cheese - inserting 1000 documents. first: Portal:Arizonan/News/Wikinews and last: Template:Taxonomy/Priapulidae +[2018-02-13T00:31:01.095] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T00:31:01.118] [INFO] cheese - inserting 1000 documents. first: Sampov Meas and last: Category:Defunct magazines of Canada +[2018-02-13T00:31:01.122] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:31:01.123] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean diaspora in Asia and last: Joao Paulo Bravo Pereira +[2018-02-13T00:31:01.134] [INFO] cheese - inserting 1000 documents. first: 2006–07 Wisconsin Badgers men's basketball team and last: Asante Kotoko F.C. +[2018-02-13T00:31:01.208] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:31:01.230] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:31:01.239] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:31:01.252] [INFO] cheese - inserting 1000 documents. first: Avraham (Yair) Stern and last: 134th meridian east +[2018-02-13T00:31:01.373] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:31:01.453] [INFO] cheese - inserting 1000 documents. first: Coupling (UK) and last: Wikipedia:Articles for deletion/Çağlar +[2018-02-13T00:31:01.525] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:31:01.625] [INFO] cheese - inserting 1000 documents. first: Hendrick Mommers and last: Schall (disambiguation) +[2018-02-13T00:31:01.658] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:31:01.790] [INFO] cheese - inserting 1000 documents. first: Colchuck Glacier and last: Wikipedia:Articles for deletion/Engineering For Kids +[2018-02-13T00:31:01.810] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ethel Lang (supercentenarian) and last: 2002 Major League Baseball Draft +[2018-02-13T00:31:01.830] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:31:01.849] [INFO] cheese - inserting 1000 documents. first: Bustros and last: 2006 Texas Rangers season +[2018-02-13T00:31:01.862] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:31:01.875] [INFO] cheese - inserting 1000 documents. first: List of defunct United States Congressional committees and last: Donald Marron +[2018-02-13T00:31:01.917] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:31:01.943] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:31:01.985] [INFO] cheese - inserting 1000 documents. first: Cuba at the 1900 Summer Olympics and last: Model Penal Code +[2018-02-13T00:31:02.033] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:31:02.050] [INFO] cheese - inserting 1000 documents. first: FC Homburg and last: 2011 in Japanese television +[2018-02-13T00:31:02.065] [INFO] cheese - inserting 1000 documents. first: Concord Records and last: List of Billboard Hot 100 number-one singles of 1995 +[2018-02-13T00:31:02.089] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:31:02.139] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T00:31:02.211] [INFO] cheese - inserting 1000 documents. first: 18 Ursae Majoris and last: De Zwarte Raaf +[2018-02-13T00:31:02.253] [INFO] cheese - inserting 1000 documents. first: Category:Wireless internet service providers and last: Krause Center for Leadership and Ethics +[2018-02-13T00:31:02.276] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:31:02.295] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:31:02.431] [INFO] cheese - inserting 1000 documents. first: Numerical error and last: Augsburg-Firnhaberau +[2018-02-13T00:31:02.464] [INFO] cheese - inserting 1000 documents. first: CADPAC and last: Mirai Ninja (video game) +[2018-02-13T00:31:02.474] [INFO] cheese - inserting 1000 documents. first: Template:Bathurst 1000 winners and last: Nieborowice +[2018-02-13T00:31:02.481] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:31:02.501] [INFO] cheese - inserting 1000 documents. first: Randy Pendleton and last: Elisabeth Aasen +[2018-02-13T00:31:02.536] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:31:02.567] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:31:02.630] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:31:02.688] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Windowgate and last: Krivosheinskii +[2018-02-13T00:31:02.726] [INFO] cheese - inserting 1000 documents. first: Jennifer Chatman and last: Wikipedia:Featured picture candidates/Shangrila Lake +[2018-02-13T00:31:02.731] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:31:02.771] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:31:02.860] [INFO] cheese - inserting 1000 documents. first: Pinus serotina and last: Bobby Flay England +[2018-02-13T00:31:02.955] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:31:02.978] [INFO] cheese - inserting 1000 documents. first: Standard Diver Dress and last: Portal:Mumbai/In the news +[2018-02-13T00:31:02.997] [INFO] cheese - inserting 1000 documents. first: Haukåsen Radar and last: Major Jill Metzger +[2018-02-13T00:31:03.024] [INFO] cheese - inserting 1000 documents. first: The Union (newspaper) and last: Rascals in Paradise (short story collection) +[2018-02-13T00:31:03.048] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:31:03.051] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:31:03.081] [INFO] cheese - inserting 1000 documents. first: Krivosheinskoye and last: Lotus Deities +[2018-02-13T00:31:03.087] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:31:03.094] [INFO] cheese - inserting 1000 documents. first: Cherokee High School and last: File:Southwell logo.jpg +[2018-02-13T00:31:03.122] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:31:03.146] [INFO] cheese - inserting 1000 documents. first: Akami v. Limelight and last: R v Secretary of State for Transport, ex p Factortame Ltd +[2018-02-13T00:31:03.161] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:31:03.197] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:31:03.419] [INFO] cheese - inserting 1000 documents. first: Bolide impact and last: U.S. Route 64 in Arkansas +[2018-02-13T00:31:03.429] [INFO] cheese - inserting 1000 documents. first: File:Jerry Frei.png and last: Template:Footer World LC Champions 4x100m Freestyle Women +[2018-02-13T00:31:03.460] [INFO] cheese - inserting 1000 documents. first: Tv9 Kannada News Channel and last: Wikipedia:Articles for deletion/Alasdair Macmillan +[2018-02-13T00:31:03.468] [INFO] cheese - inserting 1000 documents. first: Mohammadabad Rural District (Anbarabad County) and last: R.S.Cowan +[2018-02-13T00:31:03.470] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:31:03.482] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:31:03.500] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:31:03.520] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:31:03.578] [INFO] cheese - inserting 1000 documents. first: St. Simon (horse) and last: Fire Drakes +[2018-02-13T00:31:03.602] [INFO] cheese - inserting 1000 documents. first: Category:Miracles attributed to Jesus and last: 1959–60 Dumbarton F.C. season +[2018-02-13T00:31:03.616] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:31:03.640] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:31:03.717] [INFO] cheese - inserting 1000 documents. first: Bobby England and last: Baron Balfour of Inchrye +[2018-02-13T00:31:03.861] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T00:31:03.871] [INFO] cheese - inserting 1000 documents. first: Category:1969 disestablishments in Maryland and last: Eliezer ben Nathan of Mainz +[2018-02-13T00:31:03.915] [INFO] cheese - inserting 1000 documents. first: Cult with No Name and last: Neyinzaya River +[2018-02-13T00:31:03.922] [INFO] cheese - inserting 1000 documents. first: 14 Street (IRT Third Avenue Line) and last: Neurosciences Institute (Saint Thomas Health Services) +[2018-02-13T00:31:03.939] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:31:03.972] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:31:04.004] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of the Tisa-Iza-Vișeu subbasin and last: Myrna Williams (politician) +[2018-02-13T00:31:04.024] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:31:04.073] [INFO] cheese - inserting 1000 documents. first: Editions Gründ and last: Королівство Русі +[2018-02-13T00:31:04.075] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:31:04.115] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:31:04.158] [INFO] cheese - inserting 1000 documents. first: Fire Drake and last: KFQD +[2018-02-13T00:31:04.233] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:31:04.315] [INFO] cheese - inserting 1000 documents. first: Category:Blue Ridge-class command ships and last: ພ +[2018-02-13T00:31:04.357] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:31:04.371] [INFO] cheese - inserting 1000 documents. first: Jonathan Ignoumba and last: The Dominion +[2018-02-13T00:31:04.392] [INFO] cheese - inserting 1000 documents. first: Bensberg (KVB) and last: Category:Seminaries and theological colleges in Indiana +[2018-02-13T00:31:04.416] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:31:04.439] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:31:04.500] [INFO] cheese - inserting 1000 documents. first: File:Mobile Suit Gundam 0083 Stardust Memory Blu-ray cover.jpg and last: India national under-18 and under-19 basketball team +[2018-02-13T00:31:04.530] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class United States articles and last: Rouelle +[2018-02-13T00:31:04.550] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:31:04.602] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:31:04.650] [INFO] cheese - inserting 1000 documents. first: Vinyl Records and last: Handley-Page 0/400 +[2018-02-13T00:31:04.673] [INFO] cheese - inserting 1000 documents. first: Pygmy scale and last: Bagh Ahani +[2018-02-13T00:31:04.708] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:31:04.708] [INFO] cheese - inserting 1000 documents. first: File:InMyCountry.jpg and last: Hidden room +[2018-02-13T00:31:04.749] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T00:31:04.788] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:31:04.819] [INFO] cheese - inserting 1000 documents. first: State Route 146 (New York) and last: I'm on the Outside (Looking In) +[2018-02-13T00:31:04.835] [INFO] cheese - inserting 1000 documents. first: Vriddhagiriswarar Temple, Vriddhachalam and last: Vernawahlshausen station +[2018-02-13T00:31:04.945] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:31:05.011] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:31:05.082] [INFO] cheese - inserting 1000 documents. first: India national under-16 and under-17 basketball team and last: Spring Tonic +[2018-02-13T00:31:05.113] [INFO] cheese - inserting 1000 documents. first: Glycine N-phenylacetyltransferase and last: EC 2.4.1.56 +[2018-02-13T00:31:05.120] [INFO] cheese - inserting 1000 documents. first: Immigration and Refugee Board and last: Asterocampa +[2018-02-13T00:31:05.130] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:31:05.153] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:31:05.165] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:31:05.338] [INFO] cheese - inserting 1000 documents. first: Shigureden and last: Jan Joest van Kalkar +[2018-02-13T00:31:05.405] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:31:05.418] [INFO] cheese - inserting 1000 documents. first: René Radembino-Coniquet and last: Legend of the Metallic Blood +[2018-02-13T00:31:05.469] [INFO] cheese - inserting 1000 documents. first: Andrea Fabbri and last: Yuko Takayama +[2018-02-13T00:31:05.473] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:31:05.507] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:31:05.516] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Zambia and last: Wikipedia:WikiProject C/C++/Article alerts +[2018-02-13T00:31:05.536] [INFO] cheese - inserting 1000 documents. first: Mister Mxyzptlk and last: Wisconsin State Assembly +[2018-02-13T00:31:05.560] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:31:05.591] [INFO] cheese - inserting 1000 documents. first: File:TeenNick Top 10 Logo.png and last: Killing Reagan: The Violent Assault That Changed a Presidency +[2018-02-13T00:31:05.601] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:31:05.631] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:31:05.634] [INFO] cheese - inserting 1000 documents. first: Kenneth G. Elzinga and last: L'Amour à La Française +[2018-02-13T00:31:05.684] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:31:05.753] [INFO] cheese - inserting 1000 documents. first: Richard van Bleeck and last: Template:Chembox Elements/sandbox +[2018-02-13T00:31:05.779] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:31:05.848] [INFO] cheese - inserting 1000 documents. first: Cross division and last: Amadeu Teixeira Arena +[2018-02-13T00:31:05.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/chez-soso.picoz.com and last: 103 Monkland +[2018-02-13T00:31:05.893] [INFO] cheese - inserting 1000 documents. first: The Eighteenth of December and last: Category:1991 establishments in the Dominican Republic +[2018-02-13T00:31:05.887] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:31:05.902] [INFO] cheese - inserting 1000 documents. first: John of Kronstadt and last: Jack Russo +[2018-02-13T00:31:05.940] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T00:31:05.932] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:31:05.979] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:31:06.214] [INFO] cheese - inserting 1000 documents. first: Lefteris Lazarou and last: Professor ordinarius +[2018-02-13T00:31:06.255] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:31:06.335] [INFO] cheese - inserting 1000 documents. first: William Overton (bishop) and last: St. John's University of Tanzania +[2018-02-13T00:31:06.367] [INFO] cheese - inserting 1000 documents. first: Studies of Broadcasting and last: File:Radiohead - Pop Is Dead music video screen capture.jpg +[2018-02-13T00:31:06.371] [INFO] cheese - inserting 1000 documents. first: SC Bose and last: Edystone +[2018-02-13T00:31:06.376] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:31:06.386] [INFO] cheese - inserting 1000 documents. first: Addison Alexander Mackenzie and last: Category:Wikipedians who like Babylon 5 +[2018-02-13T00:31:06.422] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:31:06.460] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:31:06.464] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:31:06.508] [INFO] cheese - inserting 1000 documents. first: Dormi jesu and last: Michelle MacLaren +[2018-02-13T00:31:06.546] [INFO] cheese - inserting 1000 documents. first: AMGN and last: Lougheed, Alberta +[2018-02-13T00:31:06.569] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:31:06.595] [INFO] cheese - inserting 1000 documents. first: Dr.hab. and last: 🅼 +[2018-02-13T00:31:06.625] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:31:06.637] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:31:06.739] [INFO] cheese - inserting 1000 documents. first: Bob Hammond (footballer, born 1905) and last: Luis Cámara +[2018-02-13T00:31:06.742] [INFO] cheese - inserting 1000 documents. first: Charles Henry Bennett (illustrator) and last: Wikipedia:Articles for deletion/Ahuva Gray +[2018-02-13T00:31:06.782] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:31:06.800] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:31:06.880] [INFO] cheese - inserting 1000 documents. first: Template:Di-no rationale-caption and last: File:Cryptic Edge of Sanity.jpg +[2018-02-13T00:31:06.941] [INFO] cheese - inserting 1000 documents. first: Dark Passenger and last: Dmitry Nikolayevich Bludov +[2018-02-13T00:31:06.945] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:31:06.952] [INFO] cheese - inserting 1000 documents. first: 🅽 and last: Template:Puerto Rico 2006 World Baseball Classic roster +[2018-02-13T00:31:07.003] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:31:07.005] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:31:07.020] [INFO] cheese - inserting 1000 documents. first: Marine Heavy Helicopter Squadron 362 and last: File:Richard-Watson-Gilder.jpg +[2018-02-13T00:31:07.062] [INFO] cheese - inserting 1000 documents. first: Xrinh and last: Carl Liscombe +[2018-02-13T00:31:07.082] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:31:07.151] [INFO] cheese - inserting 1000 documents. first: I-Road and last: Matt Stephen Targett +[2018-02-13T00:31:07.155] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:31:07.212] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:31:07.252] [INFO] cheese - inserting 1000 documents. first: File:Hazzy Hilo.jpg and last: Wikipedia:WikiProject Spam/LinkReports/cahiersduvaldebargis.free.fr +[2018-02-13T00:31:07.397] [INFO] cheese - inserting 1000 documents. first: Obadiah Parker Live and last: Sestercii +[2018-02-13T00:31:07.422] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:31:07.478] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:31:07.533] [INFO] cheese - inserting 1000 documents. first: Ondansetron Hydrochloride and last: Mirabad-e Abadi +[2018-02-13T00:31:07.581] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:31:07.620] [INFO] cheese - inserting 1000 documents. first: A torinói ló and last: Wikipedia:Articles for deletion/Bernard the Arch-elf +[2018-02-13T00:31:07.677] [INFO] cheese - inserting 1000 documents. first: File:Celtic Nations.png and last: Deir al Qamar +[2018-02-13T00:31:07.684] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:31:07.781] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:31:07.800] [INFO] cheese - inserting 1000 documents. first: Category:Shenzhen templates and last: CASC CH-4 +[2018-02-13T00:31:07.862] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:31:07.992] [INFO] cheese - inserting 1000 documents. first: Aston Moore and last: Wikipedia:Articles for deletion/Dixie Chicken (bar) +[2018-02-13T00:31:08.126] [INFO] cheese - inserting 1000 documents. first: Committee on Regional Development and last: Wikipedia:Articles for deletion/Zac Poonen (3rd nomination) +[2018-02-13T00:31:08.158] [INFO] cheese - inserting 1000 documents. first: William Hawley Bowlus and last: PDC-EFR +[2018-02-13T00:31:08.166] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:31:08.249] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:31:08.248] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:31:08.285] [INFO] cheese - inserting 1000 documents. first: Acalyptris nigripexus and last: Harold "Mick" Crocker +[2018-02-13T00:31:08.306] [INFO] cheese - inserting 1000 documents. first: Gove County and last: Turner Fenton High School +[2018-02-13T00:31:08.351] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:31:08.401] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T00:31:08.528] [INFO] cheese - inserting 1000 documents. first: CASC CH4 and last: Diyarbakır Fortress +[2018-02-13T00:31:08.553] [INFO] cheese - inserting 1000 documents. first: Patrick Eddington and last: Wikipedia:Peer review/Rachel Stevens/archive1 +[2018-02-13T00:31:08.584] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:31:08.619] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T00:31:08.672] [INFO] cheese - inserting 1000 documents. first: Катерина Кондратенко and last: Category:1905 in Ecuador +[2018-02-13T00:31:08.675] [INFO] cheese - inserting 1000 documents. first: Lemon and last: List of glaciers in the United States +[2018-02-13T00:31:08.706] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:31:08.729] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:31:08.800] [INFO] cheese - inserting 1000 documents. first: Category:Transport disasters in 1777 and last: Trifurcula saturejae +[2018-02-13T00:31:08.837] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:31:08.886] [INFO] cheese - inserting 1000 documents. first: Thomas P. "Tip" O'Neill and last: NetBEUI Frames protocol +[2018-02-13T00:31:08.923] [INFO] cheese - inserting 1000 documents. first: Conus leviteni and last: Liberal Democratic Party (Chile, 1875) +[2018-02-13T00:31:08.955] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:31:08.971] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:31:08.991] [INFO] cheese - inserting 1000 documents. first: Steven J. Law and last: Ensay, Victoria +[2018-02-13T00:31:09.053] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:31:09.074] [INFO] cheese - inserting 1000 documents. first: Category:1911 in Ecuador and last: Mădălin Martin +[2018-02-13T00:31:09.119] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:31:09.166] [INFO] cheese - inserting 1000 documents. first: Carex subnigricans and last: Acheria +[2018-02-13T00:31:09.168] [INFO] cheese - inserting 1000 documents. first: Template:Historical provinces of Finland and last: Penal laws +[2018-02-13T00:31:09.201] [INFO] cheese - inserting 1000 documents. first: Category:2009 Brazilian television series endings and last: Edmund Moy +[2018-02-13T00:31:09.230] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:31:09.235] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:31:09.259] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:31:09.421] [INFO] cheese - inserting 1000 documents. first: Artillery train and last: Mirela Nichita-Pasca +[2018-02-13T00:31:09.451] [INFO] cheese - inserting 1000 documents. first: File:Helmet rear view mirror.JPG and last: Ma Nishtanah +[2018-02-13T00:31:09.480] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:31:09.514] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:31:09.532] [INFO] cheese - inserting 1000 documents. first: Pierre Dubois Davaugour and last: File:Legwraps.JPG +[2018-02-13T00:31:09.572] [INFO] cheese - inserting 1000 documents. first: Anaebena and last: Category:2010–12 Algerian protests +[2018-02-13T00:31:09.613] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:31:09.650] [INFO] cheese - inserting 1000 documents. first: Arrouya and last: Wikipedia:Articles for deletion/Muhamet Kyçyku (Çami) +[2018-02-13T00:31:09.670] [INFO] cheese - inserting 1000 documents. first: Kenghkam and last: Gumpoldskirchener Spätrot +[2018-02-13T00:31:09.716] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:31:09.724] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:31:09.778] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:31:09.920] [INFO] cheese - inserting 1000 documents. first: C elegantissimum and last: Category:Tobacconists +[2018-02-13T00:31:09.960] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:31:10.017] [INFO] cheese - inserting 1000 documents. first: Her Best Move and last: Chichester Senior High School +[2018-02-13T00:31:10.067] [INFO] cheese - inserting 1000 documents. first: Frenchay, Bristol and last: Controlled drug +[2018-02-13T00:31:10.075] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:31:10.113] [INFO] cheese - inserting 1000 documents. first: Category:People of the 2010–12 Algerian protests and last: Wikipedia:Articles for deletion/BMW 2 Series +[2018-02-13T00:31:10.129] [INFO] cheese - inserting 1000 documents. first: Lisbon Strategy and last: Isuzu Motors +[2018-02-13T00:31:10.142] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:31:10.162] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:31:10.190] [INFO] cheese - inserting 1000 documents. first: Ruth Gerson and last: File:Oozumoutamashiisfc.jpg +[2018-02-13T00:31:10.211] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T00:31:10.214] [INFO] cheese - inserting 1000 documents. first: Tortkol, Uzbekistan and last: Assistant Principal (university) +[2018-02-13T00:31:10.274] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:31:10.320] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:31:10.364] [INFO] cheese - inserting 1000 documents. first: Template:Fbml manager and last: Ennen aamunkoittoo +[2018-02-13T00:31:10.419] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:31:10.571] [INFO] cheese - inserting 1000 documents. first: Criticom II and last: Rory Hayes (t.v character) +[2018-02-13T00:31:10.624] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:31:10.679] [INFO] cheese - inserting 1000 documents. first: St Peter and All Souls, Peterborough and last: Private Odartey Lamptey +[2018-02-13T00:31:10.707] [INFO] cheese - inserting 1000 documents. first: Janez Puh and last: Paul Stapfer +[2018-02-13T00:31:10.760] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:31:10.792] [INFO] cheese - inserting 1000 documents. first: Ōzumō Spirit and last: Stadiums in Canada +[2018-02-13T00:31:10.801] [INFO] cheese - inserting 1000 documents. first: AIDS origin and last: Wikipedia:WikiProject Vital Articles/Peer review +[2018-02-13T00:31:10.852] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:31:10.925] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:31:10.936] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:31:11.069] [INFO] cheese - inserting 1000 documents. first: Portal:South Korea/Did you know/102 and last: Wikipedia:5 Millionth Article Message +[2018-02-13T00:31:11.130] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:31:11.272] [INFO] cheese - inserting 1000 documents. first: Template:Swiftsure class submarine and last: Voiceless labialized velar approximant +[2018-02-13T00:31:11.316] [INFO] cheese - inserting 1000 documents. first: Jerrahi-Halveti and last: Category:Taekwondo in China +[2018-02-13T00:31:11.364] [INFO] cheese - inserting 1000 documents. first: The Olive Tree and last: Vanessa Grigoriadis +[2018-02-13T00:31:11.366] [INFO] cheese - batch complete in: 1.155 secs +[2018-02-13T00:31:11.404] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:31:11.418] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Dragoj and last: Newark Chornomorska Sitch +[2018-02-13T00:31:11.459] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:31:11.477] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:31:11.487] [INFO] cheese - inserting 1000 documents. first: James Richard Dacres (Royal Navy officer, born 1749) and last: Category:18th-century explorers +[2018-02-13T00:31:11.552] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:31:11.636] [INFO] cheese - inserting 1000 documents. first: Joe Borchard and last: Gadsby's Tavern +[2018-02-13T00:31:11.640] [INFO] cheese - inserting 1000 documents. first: File:Max Carey (1912 baseball card).jpg and last: File:Official poster of MDNJK.jpg +[2018-02-13T00:31:11.712] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:31:11.718] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T00:31:11.865] [INFO] cheese - inserting 1000 documents. first: File:Administrators' noticeboard.png and last: File:Barcan-post-family-1906.gif +[2018-02-13T00:31:11.905] [INFO] cheese - inserting 1000 documents. first: 20th Century Fox Video (1982 Company) and last: Category:Constituencies of Hong Kong Legislative Council +[2018-02-13T00:31:11.914] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:31:11.962] [INFO] cheese - inserting 1000 documents. first: Category:19th-century explorers and last: Wikipedia:Version 1.0 Editorial Team/National Register of Historic Places articles by quality/44 +[2018-02-13T00:31:11.973] [INFO] cheese - inserting 1000 documents. first: Category:Incompatible parameters in rail line template and last: Category:1582 in Russia +[2018-02-13T00:31:11.974] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:31:12.024] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:31:12.084] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:31:12.298] [INFO] cheese - inserting 1000 documents. first: Cameron Donlad and last: Dallas (TV show) +[2018-02-13T00:31:12.351] [INFO] cheese - inserting 1000 documents. first: Spring plan and last: Live cattle trade +[2018-02-13T00:31:12.415] [INFO] cheese - inserting 1000 documents. first: Voiceless labiodental fricative and last: Spiritual Five +[2018-02-13T00:31:12.420] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:31:12.418] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:31:12.507] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T00:31:12.543] [INFO] cheese - inserting 1000 documents. first: Cavendish University and last: File:MPSJHS Logo.png +[2018-02-13T00:31:12.558] [INFO] cheese - inserting 1000 documents. first: Charles Chester (cricketer) and last: H-p filter +[2018-02-13T00:31:12.589] [INFO] cheese - inserting 1000 documents. first: Toumazou v. Republic of Turkey and last: Mountain States Telephone and Telegraph Exchange Building +[2018-02-13T00:31:12.596] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:31:12.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jobs in Nigeria and last: Minuscule 178 +[2018-02-13T00:31:12.620] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:31:12.652] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:31:12.669] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:31:12.811] [INFO] cheese - inserting 1000 documents. first: Bahar Begum and last: Matthew Wright (basketball) +[2018-02-13T00:31:12.867] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:31:12.999] [INFO] cheese - inserting 1000 documents. first: Malonic aciduria and last: Huey P. Long Bridge (New Orleans) +[2018-02-13T00:31:13.039] [INFO] cheese - inserting 1000 documents. first: St John's Church, Wolverhampton and last: Live at Chastain Park +[2018-02-13T00:31:13.040] [INFO] cheese - inserting 1000 documents. first: Koko Kovacs and last: Accius (disambiguation) +[2018-02-13T00:31:13.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Durvexity and last: Category:2nd-century Roman usurpers +[2018-02-13T00:31:13.074] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:31:13.081] [INFO] cheese - inserting 1000 documents. first: Bastioides and last: Traminer Epice +[2018-02-13T00:31:13.090] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:31:13.098] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:31:13.130] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:31:13.167] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:31:13.264] [INFO] cheese - inserting 1000 documents. first: Lake Manicouagan and last: The Integral Trees +[2018-02-13T00:31:13.372] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T00:31:13.381] [INFO] cheese - inserting 1000 documents. first: Category:Finite automata and last: Nisith Ranjan Ray +[2018-02-13T00:31:13.532] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:31:13.585] [INFO] cheese - inserting 1000 documents. first: Yuhei Sato (footballer) and last: Arkivet (Kristiansand) +[2018-02-13T00:31:13.594] [INFO] cheese - inserting 1000 documents. first: East of Chicago Pizza and last: Excelsior (wood wool) +[2018-02-13T00:31:13.610] [INFO] cheese - inserting 1000 documents. first: H. K. Primary School and last: LMO +[2018-02-13T00:31:13.643] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:31:13.692] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:31:13.709] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:31:13.761] [INFO] cheese - inserting 1000 documents. first: Traminer Rosa and last: Category:Houses in Culpeper County, Virginia +[2018-02-13T00:31:13.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-02-06/Features and admins and last: K. 111 +[2018-02-13T00:31:13.818] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:31:13.852] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:31:14.112] [INFO] cheese - inserting 1000 documents. first: Songs and Other Things and last: List of saltpeter works in Tarapacá and Antofagasta +[2018-02-13T00:31:14.133] [INFO] cheese - inserting 1000 documents. first: Vytautas Vasiliauskas and last: List of Padma Bhushan Award recipients (1960–1969) +[2018-02-13T00:31:14.149] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:31:14.176] [INFO] cheese - inserting 1000 documents. first: Sarah Borges and the Broken Singles and last: Ricardo Montero Duque +[2018-02-13T00:31:14.189] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:31:14.212] [INFO] cheese - inserting 1000 documents. first: 1947-48 Basketball Association of America season and last: Agnes Tachyon +[2018-02-13T00:31:14.231] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:31:14.272] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:31:14.277] [INFO] cheese - inserting 1000 documents. first: Category:Places of worship in County Monaghan and last: Palakkulam +[2018-02-13T00:31:14.292] [INFO] cheese - inserting 1000 documents. first: Jean-Charles Lapierre and last: Vaughn Monroe +[2018-02-13T00:31:14.331] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:31:14.355] [INFO] cheese - inserting 1000 documents. first: The Most Holy Tablet and last: Advisory Committee on Human Radiation Experiments +[2018-02-13T00:31:14.386] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T00:31:14.449] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:31:14.517] [INFO] cheese - inserting 1000 documents. first: Hasanabad-e Olya, Kerman and last: Category:1853 establishments in Missouri +[2018-02-13T00:31:14.604] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:31:14.681] [INFO] cheese - inserting 1000 documents. first: Luise Henriette von Oranien and last: Waterfall Country (Wales) +[2018-02-13T00:31:14.707] [INFO] cheese - inserting 1000 documents. first: File:2011-World-Series.svg and last: Category:People from Sheikhupura +[2018-02-13T00:31:14.712] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:31:14.757] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:31:14.772] [INFO] cheese - inserting 1000 documents. first: Qussey and last: Bahia Colonet, Baja California +[2018-02-13T00:31:14.826] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:31:14.869] [INFO] cheese - inserting 1000 documents. first: Thanippara and last: Les Rougons Macquart +[2018-02-13T00:31:14.952] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:31:15.001] [INFO] cheese - inserting 1000 documents. first: Juzuiyeh, Baft and last: EC 2.4.1.268 +[2018-02-13T00:31:15.091] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:31:15.322] [INFO] cheese - inserting 1000 documents. first: Category:Carboniferous insects and last: Valuation and Valuers +[2018-02-13T00:31:15.353] [INFO] cheese - inserting 1000 documents. first: Category:Paralympic swimmers of Trinidad and Tobago and last: List of Code Lyoko episodes (Season 2) +[2018-02-13T00:31:15.366] [INFO] cheese - inserting 1000 documents. first: Wallis and futana and last: Readlyn +[2018-02-13T00:31:15.418] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T00:31:15.433] [INFO] cheese - inserting 1000 documents. first: Electoral history of Gholam-Ali Haddad-Adel and last: Category:Nigerian women journalists +[2018-02-13T00:31:15.447] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:31:15.489] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T00:31:15.516] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:31:15.579] [INFO] cheese - inserting 1000 documents. first: Ggs (gene) and last: District of Leominster +[2018-02-13T00:31:15.608] [INFO] cheese - inserting 1000 documents. first: Les Rougons-Macquart and last: Category:Book-Class Animation articles of Bottom-importance +[2018-02-13T00:31:15.633] [INFO] cheese - inserting 1000 documents. first: 1984-85 American Hockey League season and last: USB-6008 +[2018-02-13T00:31:15.677] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:31:15.686] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:31:15.734] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:31:15.884] [INFO] cheese - inserting 1000 documents. first: .guitars and last: Category:Bulgarian women architects +[2018-02-13T00:31:15.931] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:31:16.036] [INFO] cheese - inserting 1000 documents. first: Kui Xing and last: Category:Mongolian martial artists +[2018-02-13T00:31:16.054] [INFO] cheese - inserting 1000 documents. first: Leominster district and last: Hall's Theory of encoding and decoding +[2018-02-13T00:31:16.087] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:31:16.092] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:31:16.106] [INFO] cheese - inserting 1000 documents. first: Category:Redirect-Class Animation articles of Bottom-importance and last: Brain-to-body size +[2018-02-13T00:31:16.132] [INFO] cheese - inserting 1000 documents. first: Ployes and last: Monochromatic Stains +[2018-02-13T00:31:16.177] [INFO] cheese - inserting 1000 documents. first: Category:Burkinabé football referees and last: File:Bring radicals cartoon.svg +[2018-02-13T00:31:16.181] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:31:16.223] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:31:16.244] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:31:16.320] [INFO] cheese - inserting 1000 documents. first: Post-tensioned concrete and last: Plon +[2018-02-13T00:31:16.332] [INFO] cheese - inserting 1000 documents. first: Category:77 BC births and last: Laws of the 16th Congress of the Philippines +[2018-02-13T00:31:16.383] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:31:16.426] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T00:31:16.498] [INFO] cheese - inserting 1000 documents. first: Elisabeth Gording and last: Afrikan P. Bogaewsky +[2018-02-13T00:31:16.572] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:31:16.599] [INFO] cheese - inserting 1000 documents. first: Mikhail Pashnin and last: Wikipedia:Requests for feedback/2010 December 29 +[2018-02-13T00:31:16.623] [INFO] cheese - inserting 1000 documents. first: Sunderland AFC Women and last: Eye Jewellery +[2018-02-13T00:31:16.646] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:31:16.682] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:31:16.729] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marquis de Piro and last: Saroj Nalini Dutta +[2018-02-13T00:31:16.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Art/US-UK/Jewish Museum rules/list and last: Trey (The OC) +[2018-02-13T00:31:16.786] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:31:16.816] [INFO] cheese - inserting 1000 documents. first: List of most viewed online videos in the first 24 hours and last: Jerome Kass +[2018-02-13T00:31:16.842] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:31:16.859] [INFO] cheese - inserting 1000 documents. first: 1967–68 Atlantic Coast Conference men's basketball season and last: Haplogroup G-M201 (Y-DNA) +[2018-02-13T00:31:16.870] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:31:16.902] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:31:17.001] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2010-12-27 and last: Category:1860s in Brazil +[2018-02-13T00:31:17.056] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:31:17.122] [INFO] cheese - inserting 1000 documents. first: Fresh Verdicts on Joan of Arc and last: Route 230 (Oregon) +[2018-02-13T00:31:17.188] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:31:17.230] [INFO] cheese - inserting 1000 documents. first: Retroactive interference and last: Transylvania County +[2018-02-13T00:31:17.247] [INFO] cheese - inserting 1000 documents. first: Dave Hatton and last: Small-toothed long-eared bat +[2018-02-13T00:31:17.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Phipps Conservatory and Botanical Gardens/archive1 and last: 2014 World Field Archery Championships +[2018-02-13T00:31:17.297] [INFO] cheese - inserting 1000 documents. first: Template:TOC US states/doc and last: Jared Homan +[2018-02-13T00:31:17.304] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Microsoft/featured content and last: Chevrolet Impala Limited +[2018-02-13T00:31:17.312] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T00:31:17.316] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:31:17.329] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:31:17.398] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:31:17.408] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:31:17.536] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Intelligent design articles by quality statistics and last: Wikipedia:Articles for deletion/Buster Baxter +[2018-02-13T00:31:17.631] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:31:18.052] [INFO] cheese - inserting 1000 documents. first: Agnès Souret and last: Paenibacillus tylopili +[2018-02-13T00:31:18.059] [INFO] cheese - inserting 1000 documents. first: 1912 Republican National Convention and last: Gbits/sec +[2018-02-13T00:31:18.089] [INFO] cheese - inserting 1000 documents. first: Template:Barisal Bulls current squad and last: Category:1985 establishments in Cape Verde +[2018-02-13T00:31:18.101] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:31:18.114] [INFO] cheese - inserting 1000 documents. first: Nyctophilus microdon and last: Big-eared pipistrelle +[2018-02-13T00:31:18.151] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T00:31:18.168] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T00:31:18.172] [INFO] cheese - inserting 1000 documents. first: Pressure Reducing Valve and last: Victoria Zhilinskayte +[2018-02-13T00:31:18.203] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T00:31:18.206] [INFO] cheese - inserting 1000 documents. first: Portal:Industrial music/Selected picture/3 and last: Category:Actors from Montana +[2018-02-13T00:31:18.258] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:31:18.290] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T00:31:18.463] [INFO] cheese - inserting 1000 documents. first: Bulkington and last: Local Authority Accommodation +[2018-02-13T00:31:18.553] [INFO] cheese - batch complete in: 1.241 secs +[2018-02-13T00:31:18.606] [INFO] cheese - inserting 1000 documents. first: GByte and last: André Danican Philidor +[2018-02-13T00:31:18.640] [INFO] cheese - inserting 1000 documents. first: Blue-hooded Euphonia and last: Template:AustTRFK6.1 +[2018-02-13T00:31:18.657] [INFO] cheese - inserting 1000 documents. first: List of sugar mills in Queensland and last: Address at Rice University on the Nation's Space Effort +[2018-02-13T00:31:18.703] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:31:18.706] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:31:18.794] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:31:18.823] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Nebraska and last: Marcelo Ramiro Camacho +[2018-02-13T00:31:18.841] [INFO] cheese - inserting 1000 documents. first: Play Online Viewer and last: Category:Stub-Class The X Factor articles +[2018-02-13T00:31:18.858] [INFO] cheese - inserting 1000 documents. first: Hypsugo macrotis and last: 1996 NHL Eastern Conference Finals +[2018-02-13T00:31:18.948] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:31:18.968] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:31:18.973] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:31:19.186] [INFO] cheese - inserting 1000 documents. first: Bajatey Raho and last: West Derbyshire by-election, 1900 +[2018-02-13T00:31:19.247] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:31:19.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Collaboration of the week/Child-raising and last: Glabellar reflex +[2018-02-13T00:31:19.355] [INFO] cheese - inserting 1000 documents. first: 1962 New York Mets season and last: Dune hairy-footed gerbil +[2018-02-13T00:31:19.388] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Rogov and last: Zinc Rocks +[2018-02-13T00:31:19.402] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:31:19.428] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:31:19.452] [INFO] cheese - inserting 1000 documents. first: Temporary deafness and last: Template:Gmina Kolsko +[2018-02-13T00:31:19.476] [INFO] cheese - inserting 1000 documents. first: Address at Rice University on the Nations Space Effort and last: Jerome Zeringue +[2018-02-13T00:31:19.477] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:31:19.520] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:31:19.556] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:31:19.602] [INFO] cheese - inserting 1000 documents. first: Category:2000 in Italian sport and last: Category:1983–84 Atlantic Coast Conference men's basketball season +[2018-02-13T00:31:19.644] [INFO] cheese - inserting 1000 documents. first: Ooshima Naoto and last: HMS Intrepid +[2018-02-13T00:31:19.656] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:31:19.743] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T00:31:19.871] [INFO] cheese - inserting 1000 documents. first: Gerbillurus tytonis and last: Niviventer cremoriventer +[2018-02-13T00:31:19.946] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:31:19.977] [INFO] cheese - inserting 1000 documents. first: Joonas Rask and last: First Brigade of the Polish Legions +[2018-02-13T00:31:20.032] [INFO] cheese - inserting 1000 documents. first: Great Bircham and last: Category:Salesian monasteries +[2018-02-13T00:31:20.038] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:31:20.040] [INFO] cheese - inserting 1000 documents. first: Maksud Karimov and last: Category:Yukon territorial election results by riding +[2018-02-13T00:31:20.042] [INFO] cheese - inserting 1000 documents. first: Snehansu Kanta Acharya and last: Evan Mervyn Davies +[2018-02-13T00:31:20.085] [INFO] cheese - inserting 1000 documents. first: David F. Bradford and last: Keep it all +[2018-02-13T00:31:20.089] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:31:20.106] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:31:20.121] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:31:20.150] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:31:20.330] [INFO] cheese - inserting 1000 documents. first: Oldfield white-bellied rat and last: Peruvian cotton rat +[2018-02-13T00:31:20.425] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:31:20.426] [INFO] cheese - inserting 1000 documents. first: Larkrise to Candleford and last: Der 18te Brumaire Des Louis Napoleon +[2018-02-13T00:31:20.473] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:31:20.527] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after waterfalls and last: Category:Nuclear missiles of the Cold War +[2018-02-13T00:31:20.625] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:31:20.630] [INFO] cheese - inserting 1000 documents. first: Ticker tape and last: North Carolina Agriculture and Technology University +[2018-02-13T00:31:20.698] [INFO] cheese - inserting 1000 documents. first: Annette Akroyd and last: Palazzo Curti Valmarana +[2018-02-13T00:31:20.761] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:31:20.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Timothy Solichin and last: Korzeniowski +[2018-02-13T00:31:20.805] [INFO] cheese - batch complete in: 1.062 secs +[2018-02-13T00:31:20.843] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:31:20.850] [INFO] cheese - inserting 1000 documents. first: Portal:Norway/DYK/81 and last: Meshach Dean +[2018-02-13T00:31:20.851] [INFO] cheese - inserting 1000 documents. first: Category:Former subdivisions of Wales and last: Template:404 +[2018-02-13T00:31:20.933] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:31:20.996] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T00:31:21.125] [INFO] cheese - inserting 1000 documents. first: Peoples Will and last: Category:Apostolic Nuncios to South Korea +[2018-02-13T00:31:21.156] [INFO] cheese - inserting 1000 documents. first: Category:1718 establishments in the Thirteen Colonies and last: 1970 European/South American Cup +[2018-02-13T00:31:21.168] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:31:21.226] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:31:21.291] [INFO] cheese - inserting 1000 documents. first: Confidential birth and last: .sb file +[2018-02-13T00:31:21.339] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:31:21.419] [INFO] cheese - inserting 1000 documents. first: Houston-Stafford Electric and last: Citi Movement +[2018-02-13T00:31:21.507] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:31:21.565] [INFO] cheese - inserting 1000 documents. first: Henselt and last: WQO +[2018-02-13T00:31:21.593] [INFO] cheese - inserting 1000 documents. first: Bug Dome and last: Category:Polo in Asia +[2018-02-13T00:31:21.620] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:31:21.625] [INFO] cheese - inserting 1000 documents. first: 2011 Copa Centroamericana and last: Wikipedia:Sockpuppet investigations/Nimbley6/Archive +[2018-02-13T00:31:21.633] [INFO] cheese - inserting 1000 documents. first: Bobo doll experiment and last: Bubble +[2018-02-13T00:31:21.656] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:31:21.710] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:31:21.712] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Did you know/January 2011 and last: Block of a ring +[2018-02-13T00:31:21.732] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T00:31:21.889] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:31:21.906] [INFO] cheese - inserting 1000 documents. first: Category:Television series based on the novels of Farhat Ishtiaq and last: Historical Malacca City Council +[2018-02-13T00:31:21.989] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:31:22.011] [INFO] cheese - inserting 1000 documents. first: Trevor Eastwood and last: Eschweilera venezuelica +[2018-02-13T00:31:22.085] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:31:22.221] [INFO] cheese - inserting 1000 documents. first: File:MerleDixon.jpg and last: Bays of the Philipines +[2018-02-13T00:31:22.301] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:31:22.448] [INFO] cheese - inserting 1000 documents. first: Dagen (Norwegian newspaper) and last: Mos:dp +[2018-02-13T00:31:22.488] [INFO] cheese - inserting 1000 documents. first: The Shepheardes' Calender and last: Wareo +[2018-02-13T00:31:22.501] [INFO] cheese - inserting 1000 documents. first: Statue of The Earl Kitchener, London and last: Khun Phawo National Park +[2018-02-13T00:31:22.519] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T00:31:22.544] [INFO] cheese - inserting 1000 documents. first: Grias colombiana and last: Gobio +[2018-02-13T00:31:22.553] [INFO] cheese - inserting 1000 documents. first: Władysław of Legnica and last: Alexander Mikhailovich +[2018-02-13T00:31:22.594] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:31:22.599] [INFO] cheese - inserting 1000 documents. first: Marginal Utility and last: Beaches (film) +[2018-02-13T00:31:22.602] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:31:22.642] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:31:22.661] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T00:31:22.744] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T00:31:23.031] [INFO] cheese - inserting 1000 documents. first: Commando: A One Man Army and last: Salisbury, MD-DE MSA +[2018-02-13T00:31:23.128] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:31:23.203] [INFO] cheese - inserting 1000 documents. first: Victor emanuel range and last: List of U.S. communities with Hispanic majority populations in the 2010 census +[2018-02-13T00:31:23.208] [INFO] cheese - inserting 1000 documents. first: File:John P. 'Clipper' Smith.jpg and last: File:BlackstreetJoySingle.jpg +[2018-02-13T00:31:23.225] [INFO] cheese - inserting 1000 documents. first: Romanogobio benacensis and last: Federal Highway 112 +[2018-02-13T00:31:23.261] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:31:23.272] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:31:23.298] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:31:23.336] [INFO] cheese - inserting 1000 documents. first: Ober Engadin and last: The San Fransisco Gate +[2018-02-13T00:31:23.351] [INFO] cheese - inserting 1000 documents. first: File:Play Dead - The First Flower (1983).gif and last: Basilica di San Pietro in Vincoli +[2018-02-13T00:31:23.413] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:31:23.483] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T00:31:23.779] [INFO] cheese - inserting 1000 documents. first: I Don't Want to See You Like This and last: Gerald Abrams +[2018-02-13T00:31:23.797] [INFO] cheese - inserting 1000 documents. first: James Archibald St.George Fitzwarenne Despencer-Robertson and last: Tepui goldenthroat +[2018-02-13T00:31:23.824] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:31:23.857] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:31:23.883] [INFO] cheese - inserting 1000 documents. first: The Fall of the House of Usher and last: Kingdom of Spain +[2018-02-13T00:31:23.901] [INFO] cheese - inserting 1000 documents. first: List of Sket Dance chapters and last: Category:Medical Subject Headings +[2018-02-13T00:31:23.958] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:31:23.962] [INFO] cheese - inserting 1000 documents. first: Category:2008 establishments in Kosovo and last: Gelechia algeriella +[2018-02-13T00:31:24.025] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T00:31:24.053] [INFO] cheese - inserting 1000 documents. first: Template:Malkangiri district and last: Wikipedia:Special:MostLinkedPages +[2018-02-13T00:31:24.063] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T00:31:24.095] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:31:24.251] [INFO] cheese - inserting 1000 documents. first: Weinstein Co and last: Penrhyndeudraeth railway station +[2018-02-13T00:31:24.255] [INFO] cheese - inserting 1000 documents. first: File:Rooftop-album-by-ulrik-munther.jpg and last: Category:Wikipedia sockpuppets of Alifriend7 +[2018-02-13T00:31:24.297] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:31:24.313] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:31:24.371] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RedSpotGames and last: Tamás Kovács (fencer) +[2018-02-13T00:31:24.399] [INFO] cheese - inserting 1000 documents. first: Polytmus milleri and last: Seps StriÉ Du Maroc +[2018-02-13T00:31:24.420] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:31:24.469] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:31:24.549] [INFO] cheese - inserting 1000 documents. first: Template:SJFA North Division Two and last: Honkytonks And Heartaches +[2018-02-13T00:31:24.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/London Burning Book and last: Template:Attached KML/Alabama State Route 179 +[2018-02-13T00:31:24.590] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:31:24.592] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:31:24.674] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Vrave98 and last: Iron Gates (Danube) +[2018-02-13T00:31:24.715] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:31:24.777] [INFO] cheese - inserting 1000 documents. first: Tegnsprak and last: Edward Rowlands +[2018-02-13T00:31:24.787] [INFO] cheese - inserting 1000 documents. first: EslizÓN TridÁCtilo Del Atlas and last: Megalurus pryeri +[2018-02-13T00:31:24.806] [INFO] cheese - inserting 1000 documents. first: St. George Rotunda and last: Bicycle Race +[2018-02-13T00:31:24.818] [INFO] cheese - inserting 1000 documents. first: Lieutenant Esmee Pascal and last: Wikipedia:Redirects for discussion/Log/2011 January 2 +[2018-02-13T00:31:24.823] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:31:24.847] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:31:24.860] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:31:24.872] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:31:25.091] [INFO] cheese - inserting 1000 documents. first: Honkytonks & Heartaches and last: Genroku akō jiken +[2018-02-13T00:31:25.107] [INFO] cheese - inserting 1000 documents. first: Goran Marić (Volleyball player) and last: Category:1984–85 Pacific-10 Conference men's basketball season +[2018-02-13T00:31:25.114] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/uol.com and last: Aholibah Underwing +[2018-02-13T00:31:25.145] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:31:25.166] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:31:25.201] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:31:25.275] [INFO] cheese - inserting 1000 documents. first: Route 65 (Missouri pre-1926) and last: Choir of St John's College, Cambridge +[2018-02-13T00:31:25.317] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:31:25.382] [INFO] cheese - inserting 1000 documents. first: Dead Men Tell and last: File:HRHDanielleSteel.jpg +[2018-02-13T00:31:25.431] [INFO] cheese - inserting 1000 documents. first: Long Lee and last: Oswaldo de Andrade +[2018-02-13T00:31:25.442] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:31:25.508] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:31:25.510] [INFO] cheese - inserting 1000 documents. first: O.W. Holmes and last: Juri Schlünz +[2018-02-13T00:31:25.528] [INFO] cheese - inserting 1000 documents. first: Khajur and last: Alice Creek Historic District +[2018-02-13T00:31:25.547] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:31:25.568] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:31:25.732] [INFO] cheese - inserting 1000 documents. first: George Poe and last: Pathetic Sharks +[2018-02-13T00:31:25.741] [INFO] cheese - inserting 1000 documents. first: Dynamic memory allocation and last: Zionist conspiracy theories regarding the September 11, 2001 Attacks +[2018-02-13T00:31:25.800] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fluoridealert.org and last: Emily Quihampton +[2018-02-13T00:31:25.823] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:31:25.946] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T00:31:25.948] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:31:26.040] [INFO] cheese - inserting 1000 documents. first: Anatoma africanae and last: Accademia Di Belle Arti, Florence +[2018-02-13T00:31:26.045] [INFO] cheese - inserting 1000 documents. first: Category:1721 disestablishments in Russia and last: Wikipedia:Articles for deletion/Vadym Troyan +[2018-02-13T00:31:26.057] [INFO] cheese - inserting 1000 documents. first: Pakistan vs West Indies ODI Series in 2008-09 and last: Wikipedia:WikiProject Spam/LinkReports/namore.info +[2018-02-13T00:31:26.062] [INFO] cheese - inserting 1000 documents. first: Van morrison and last: Waiter boy +[2018-02-13T00:31:26.089] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:31:26.120] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:31:26.157] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:31:26.155] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:31:26.378] [INFO] cheese - inserting 1000 documents. first: Order of the golden horseshoe and last: Binoy Basu +[2018-02-13T00:31:26.426] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:31:26.445] [INFO] cheese - inserting 1000 documents. first: Massachusetts Library System and last: File:International Journal of Hematology.jpg +[2018-02-13T00:31:26.517] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:31:26.612] [INFO] cheese - inserting 1000 documents. first: The Gate Thief and last: St. Crispin's Senior Secondary School +[2018-02-13T00:31:26.631] [INFO] cheese - inserting 1000 documents. first: Government Degree College, Bandipora and last: Wikipedia:WikiProject Spam/Local/sceneonhai.wordpress.com +[2018-02-13T00:31:26.667] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:31:26.671] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Valued picture candidates/Nixon's Departure and last: Kerem Özyeğen +[2018-02-13T00:31:26.673] [INFO] cheese - inserting 1000 documents. first: Bestvina and last: Nenenui +[2018-02-13T00:31:26.679] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:31:26.727] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:31:26.730] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:31:26.809] [INFO] cheese - inserting 1000 documents. first: Chico Carrasquel and last: Foreign terrorist organizations +[2018-02-13T00:31:26.882] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T00:31:26.907] [INFO] cheese - inserting 1000 documents. first: Smitherman and last: Ctenobrycon spilurus +[2018-02-13T00:31:26.909] [INFO] cheese - inserting 1000 documents. first: Black-spotted palm viper and last: Milovan Sikimic +[2018-02-13T00:31:26.958] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:31:26.956] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:31:27.066] [INFO] cheese - inserting 1000 documents. first: José Antonio Plaza and last: Wikipedia:Miscellany for deletion/User:Islamicdaayee +[2018-02-13T00:31:27.141] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:31:27.322] [INFO] cheese - inserting 1000 documents. first: Template:Fats Domino and last: Category:Articles slanted towards recent events from November 2015 +[2018-02-13T00:31:27.365] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:31:27.388] [INFO] cheese - inserting 1000 documents. first: Paul O'Duffy and last: POME +[2018-02-13T00:31:27.405] [INFO] cheese - inserting 1000 documents. first: Cut offs and last: Pavel Andreyevich Gerdt +[2018-02-13T00:31:27.447] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:31:27.456] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:31:27.641] [INFO] cheese - inserting 1000 documents. first: Mario Und Der Zauberer and last: Toras Chaim (Denver) +[2018-02-13T00:31:27.684] [INFO] cheese - inserting 1000 documents. first: Yazdanabad, Kerman and last: Kenneth Grenville Gee +[2018-02-13T00:31:27.704] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:31:27.727] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:31:27.766] [INFO] cheese - inserting 1000 documents. first: Target (2004 film) and last: Mau rakau +[2018-02-13T00:31:27.805] [INFO] cheese - inserting 1000 documents. first: Moskow and last: Barnstable County +[2018-02-13T00:31:27.841] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T00:31:27.909] [INFO] cheese - inserting 1000 documents. first: Category:Articles that may contain original research from November 2015 and last: File:Majayjay Flag.jpg +[2018-02-13T00:31:27.924] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T00:31:27.958] [INFO] cheese - inserting 1000 documents. first: Elizaveta Pavlovna Gerdt and last: Postman's sort +[2018-02-13T00:31:28.014] [INFO] cheese - inserting 1000 documents. first: Lists of American Civil War Regiments by State and last: Paweł Midloch +[2018-02-13T00:31:28.018] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:31:28.036] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:31:28.082] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:31:28.131] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Atban3000/Archive and last: David Andrews (director) +[2018-02-13T00:31:28.163] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:31:28.171] [INFO] cheese - inserting 1000 documents. first: First Sylow Theorem and last: PS Prince Arthur +[2018-02-13T00:31:28.234] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:31:28.576] [INFO] cheese - inserting 1000 documents. first: File:666 Ways to Love.jpg and last: Misfits Box Set +[2018-02-13T00:31:28.653] [INFO] cheese - inserting 1000 documents. first: Alaipayuthey (soundtrack) and last: City of Greenville +[2018-02-13T00:31:28.655] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:31:28.729] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:31:28.737] [INFO] cheese - inserting 1000 documents. first: Indira Priyadarshini Vrikshamitra and last: Polikarpov MR-1 +[2018-02-13T00:31:28.758] [INFO] cheese - inserting 1000 documents. first: Djenné Cercle and last: Colonia, Yap, FSM +[2018-02-13T00:31:28.768] [INFO] cheese - inserting 1000 documents. first: Glenmont, New York and last: Inside heel hook +[2018-02-13T00:31:28.777] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:31:28.864] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:31:28.912] [INFO] cheese - inserting 1000 documents. first: Barnes County and last: STS-83 +[2018-02-13T00:31:28.952] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:31:29.045] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T00:31:29.136] [INFO] cheese - inserting 1000 documents. first: István Zsolt and last: Tufts Med +[2018-02-13T00:31:29.228] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T00:31:29.278] [INFO] cheese - inserting 1000 documents. first: Rigabad, Fahraj and last: Tintina (rock) +[2018-02-13T00:31:29.406] [INFO] cheese - inserting 1000 documents. first: John Hegre and last: Category:Userspace drafts from November 2008 +[2018-02-13T00:31:29.359] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:31:29.483] [INFO] cheese - inserting 1000 documents. first: Terry Ragon and last: John La Touche +[2018-02-13T00:31:29.492] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:31:29.508] [INFO] cheese - inserting 1000 documents. first: Now! (France Joli album) and last: Moniruzzaman (Rajshahi Division cricketer) +[2018-02-13T00:31:29.570] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:31:29.615] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T00:31:29.831] [INFO] cheese - inserting 1000 documents. first: Guiding Light (1952-1959) and last: Wuky +[2018-02-13T00:31:29.902] [INFO] cheese - inserting 1000 documents. first: Unwelcome and last: Brayan Perea +[2018-02-13T00:31:29.915] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T00:31:29.973] [INFO] cheese - inserting 1000 documents. first: Furmint and last: Mūlamadhyamakakārikā +[2018-02-13T00:31:29.984] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:31:30.031] [INFO] cheese - inserting 1000 documents. first: Baruch Herzfeld and last: Gökçehatipler, Çaycuma +[2018-02-13T00:31:30.058] [INFO] cheese - batch complete in: 1.013 secs +[2018-02-13T00:31:30.089] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:31:30.093] [INFO] cheese - inserting 1000 documents. first: Ys Strategy and last: Caroline Addyman +[2018-02-13T00:31:30.160] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:31:30.226] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/spazure and last: Members of the Victorian Legislative Council, 1982–1985 +[2018-02-13T00:31:30.270] [INFO] cheese - inserting 1000 documents. first: Guajiro-Spanish and last: Category:Net laying ships of the Royal Navy +[2018-02-13T00:31:30.273] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:31:30.310] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Tommystar and last: Category:Maldivian expatriates in Saudi Arabia +[2018-02-13T00:31:30.320] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:31:30.394] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T00:31:30.508] [INFO] cheese - inserting 1000 documents. first: List of cities, towns, and villages in Hungary (N-Z) and last: File:LBHS.jpg +[2018-02-13T00:31:30.526] [INFO] cheese - inserting 1000 documents. first: Yume Zyûya and last: Category:Netherlands–Tunisia relations +[2018-02-13T00:31:30.536] [INFO] cheese - inserting 1000 documents. first: Template:FC Zürich managers and last: File:Stella Mann Logo.png +[2018-02-13T00:31:30.560] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:31:30.566] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:31:30.594] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:31:30.631] [INFO] cheese - inserting 1000 documents. first: Category:Net laying ships of the Royal Australian Navy and last: Category:1977 in road cycling +[2018-02-13T00:31:30.664] [INFO] cheese - inserting 1000 documents. first: Category:Cambodian artists and last: Head Coaches of the Boston Bruins +[2018-02-13T00:31:30.666] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:31:30.715] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:31:30.734] [INFO] cheese - inserting 1000 documents. first: Anglican Church of Australia and last: Compass variation +[2018-02-13T00:31:30.805] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:31:30.818] [INFO] cheese - inserting 1000 documents. first: Category:Maldivian expatriates and last: Bechéreau SRAP T.7 +[2018-02-13T00:31:30.870] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:31:30.999] [INFO] cheese - inserting 1000 documents. first: Stratonovich and last: List of mammals in the United States +[2018-02-13T00:31:31.078] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:31:31.107] [INFO] cheese - inserting 1000 documents. first: Lisunov Li-2 and last: Oceans Act of 2000 +[2018-02-13T00:31:31.142] [INFO] cheese - inserting 1000 documents. first: George Koch and last: Pierre de la Brosse +[2018-02-13T00:31:31.183] [INFO] cheese - inserting 1000 documents. first: Elaine D. Kaplan and last: Category:1964–65 in Canadian ice hockey +[2018-02-13T00:31:31.194] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:31:31.286] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:31:31.303] [INFO] cheese - inserting 1000 documents. first: Amy Polumbo and last: Multiscale Mathematics +[2018-02-13T00:31:31.317] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:31:31.403] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:31:31.763] [INFO] cheese - inserting 1000 documents. first: Moustapha Sohem and last: Fantanile Negre +[2018-02-13T00:31:31.820] [INFO] cheese - inserting 1000 documents. first: EC 2.6.1.63 and last: Waveney Council election, 2004 +[2018-02-13T00:31:31.832] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T00:31:31.852] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2015 October 26 and last: Wikipedia:Articles for deletion/Center for Public Administration and Policy +[2018-02-13T00:31:31.872] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:31:31.888] [INFO] cheese - inserting 1000 documents. first: 21 Lutetia and last: Sing Lung +[2018-02-13T00:31:31.926] [INFO] cheese - inserting 1000 documents. first: Spring Azure and last: SS Heraklion +[2018-02-13T00:31:31.928] [INFO] cheese - inserting 1000 documents. first: Template:Lorenzo the Elder to Giovanni de' Medici il Popolano and last: Gale Staley +[2018-02-13T00:31:31.932] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:31:31.947] [INFO] cheese - inserting 1000 documents. first: Erg of Bilma and last: 1920 St. Louis Browns season +[2018-02-13T00:31:31.986] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:31:31.999] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:31:32.016] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T00:31:32.036] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:31:32.223] [INFO] cheese - inserting 1000 documents. first: Waveney Council election, 2011 and last: Ballina Stephenites GAA +[2018-02-13T00:31:32.265] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:31:32.381] [INFO] cheese - inserting 1000 documents. first: USONA and last: SS Kilkenny +[2018-02-13T00:31:32.461] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:31:32.469] [INFO] cheese - inserting 1000 documents. first: Bell Records artists and last: Bullet Ants +[2018-02-13T00:31:32.500] [INFO] cheese - inserting 1000 documents. first: EnergySolutions and last: Tormod Kristoffer Hustad +[2018-02-13T00:31:32.538] [INFO] cheese - inserting 1000 documents. first: Stigniţa and last: Category:Pennsylvania elections, 1961 +[2018-02-13T00:31:32.563] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:31:32.613] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:31:32.628] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:31:32.745] [INFO] cheese - inserting 1000 documents. first: Caracciolo-class battleship and last: Putijarra language +[2018-02-13T00:31:32.748] [INFO] cheese - inserting 1000 documents. first: Chéng Lóng and last: Doc Daneeka +[2018-02-13T00:31:32.819] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:31:32.860] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T00:31:33.069] [INFO] cheese - inserting 1000 documents. first: Ministry of Culture (Syria) and last: Quebec Workers' Socialist Group +[2018-02-13T00:31:33.082] [INFO] cheese - inserting 1000 documents. first: WFP Schools and last: Cameeragal language +[2018-02-13T00:31:33.092] [INFO] cheese - inserting 1000 documents. first: Template:FISA/doc and last: Jakub Hanák +[2018-02-13T00:31:33.109] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:31:33.113] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:31:33.143] [INFO] cheese - inserting 1000 documents. first: File:Leeds Fans Community Benefit Society logo.png and last: Category:16th century BC by country +[2018-02-13T00:31:33.149] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:31:33.151] [INFO] cheese - inserting 1000 documents. first: European Speed Skating Championship and last: Kirby Moorside +[2018-02-13T00:31:33.208] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:31:33.213] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:31:33.435] [INFO] cheese - inserting 1000 documents. first: Wonnarua language and last: Template:Evolution-book-stub +[2018-02-13T00:31:33.473] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:31:33.512] [INFO] cheese - inserting 1000 documents. first: 1930 Newark Tornadoes season and last: List of Poirot episodes +[2018-02-13T00:31:33.545] [INFO] cheese - inserting 1000 documents. first: Nail lichen and last: Niko Nieminen +[2018-02-13T00:31:33.559] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:31:33.578] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:31:33.642] [INFO] cheese - inserting 1000 documents. first: GM K platform (1975) and last: On An Island +[2018-02-13T00:31:33.669] [INFO] cheese - inserting 1000 documents. first: Glyfada and last: Lancashire and Yorkshire Railway +[2018-02-13T00:31:33.690] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:31:33.753] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T00:31:33.904] [INFO] cheese - inserting 1000 documents. first: The History of Computers and last: File:Rich Boy Break the Pot.jpg +[2018-02-13T00:31:33.931] [INFO] cheese - inserting 1000 documents. first: Mission sui juris of Drisdale River and last: Bjørn Hoem +[2018-02-13T00:31:33.958] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:31:33.959] [INFO] cheese - inserting 1000 documents. first: Cuevas de la Araña and last: Template:Lists of Provinces of the Dominican Republic +[2018-02-13T00:31:34.015] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:31:34.042] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:31:34.159] [INFO] cheese - inserting 1000 documents. first: Tamayoa and last: File:Lykke Li - Little Bit alt single cover.jpg +[2018-02-13T00:31:34.253] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:31:34.351] [INFO] cheese - inserting 1000 documents. first: Mp3 surround and last: Indo-Tibetan +[2018-02-13T00:31:34.413] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:31:34.467] [INFO] cheese - inserting 1000 documents. first: Category:B-Class New South Wales articles and last: File:Cold Steel film poster.jpg +[2018-02-13T00:31:34.482] [INFO] cheese - inserting 1000 documents. first: Daemisan and last: Henry Scudamore-Stanhope +[2018-02-13T00:31:34.499] [INFO] cheese - inserting 1000 documents. first: Reconquest of Angola and last: Þjóðskrá +[2018-02-13T00:31:34.550] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:31:34.560] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:31:34.605] [INFO] cheese - inserting 1000 documents. first: Megacraspedus jablonkayi and last: Mein Herz ruft nach dir +[2018-02-13T00:31:34.620] [INFO] cheese - inserting 1000 documents. first: Oxymora and last: Scooter (band) +[2018-02-13T00:31:34.667] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:31:34.674] [INFO] cheese - batch complete in: 2.637 secs +[2018-02-13T00:31:34.733] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T00:31:34.757] [INFO] cheese - inserting 1000 documents. first: AMAP-ADS Active Protection System and last: Bridgewater Collieries +[2018-02-13T00:31:34.813] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:31:34.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Coat of arms of Western Sahara and last: Category:Illinois elections, 1838 +[2018-02-13T00:31:34.931] [INFO] cheese - inserting 1000 documents. first: Gulf Coast Indians and last: Empire Betsy +[2018-02-13T00:31:35.023] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:31:35.043] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:31:35.061] [INFO] cheese - inserting 1000 documents. first: Quince Orchard High School and last: Wikipedia:Votes for deletion/Loxie & Zoot +[2018-02-13T00:31:35.202] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:31:35.356] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Paleoheterodonta and last: Waco Model EGC-7 +[2018-02-13T00:31:35.411] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:31:35.495] [INFO] cheese - inserting 1000 documents. first: Category:Images for deletion and last: Wikipedia:Articles for deletion/Organization for Human Brain Mapping +[2018-02-13T00:31:35.559] [INFO] cheese - inserting 1000 documents. first: The Gold Dagger for Non-Fiction and last: Wikipedia:WikiProject Spam/LinkReports/go4expert.com +[2018-02-13T00:31:35.577] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:31:35.611] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:31:35.614] [INFO] cheese - inserting 1000 documents. first: Category:Illinois elections, 1842 and last: Alliance for True Democracy +[2018-02-13T00:31:35.696] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:31:35.765] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Archive28 and last: Our Whole Lives +[2018-02-13T00:31:35.791] [INFO] cheese - inserting 1000 documents. first: John Forrest (Victorian politician) and last: David Auburn +[2018-02-13T00:31:35.814] [INFO] cheese - inserting 1000 documents. first: Waco Model EGC-8 and last: Monashee mountain +[2018-02-13T00:31:35.826] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:31:35.882] [INFO] cheese - batch complete in: 1.149 secs +[2018-02-13T00:31:35.900] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:31:35.960] [INFO] cheese - inserting 1000 documents. first: 2007 NRL season results and last: Alexandru Iacob +[2018-02-13T00:31:36.076] [INFO] cheese - batch complete in: 1.402 secs +[2018-02-13T00:31:36.099] [INFO] cheese - inserting 1000 documents. first: Queen of Württemberg and last: Watkins Review +[2018-02-13T00:31:36.183] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:31:36.208] [INFO] cheese - inserting 1000 documents. first: Neurergus microspilotus and last: Wikipedia:Templates for discussion/Log/2013 March 24 +[2018-02-13T00:31:36.271] [INFO] cheese - inserting 1000 documents. first: William Talbot of Kineton and last: Kevin's Hurling club +[2018-02-13T00:31:36.276] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:31:36.385] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:31:36.552] [INFO] cheese - inserting 1000 documents. first: Freeville and last: Wing turret +[2018-02-13T00:31:36.576] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Quadrigyridae and last: AMET University +[2018-02-13T00:31:36.577] [INFO] cheese - inserting 1000 documents. first: Giovanni Lanza (painter) and last: Category:1963-64 in Welsh rugby union +[2018-02-13T00:31:36.601] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:31:36.605] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:31:36.608] [INFO] cheese - inserting 1000 documents. first: Devonport Navy Base and last: Saskatchewan Highway 43 +[2018-02-13T00:31:36.640] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:31:36.660] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:31:36.801] [INFO] cheese - inserting 1000 documents. first: Paranormal operator and last: Portal:Anglicanism/DYK/25 +[2018-02-13T00:31:36.878] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:31:36.926] [INFO] cheese - inserting 1000 documents. first: Honda Ishiro and last: Infield fly rule +[2018-02-13T00:31:36.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lance Strate and last: File:RasputinaUnknown.jpg +[2018-02-13T00:31:36.939] [INFO] cheese - inserting 1000 documents. first: Category:1963-64 in Scottish rugby union and last: Richard Labonté +[2018-02-13T00:31:36.976] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:31:36.997] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:31:37.019] [INFO] cheese - batch complete in: 1.137 secs +[2018-02-13T00:31:37.062] [INFO] cheese - inserting 1000 documents. first: 2011 North Korea national football team results and last: Template:Taxonomy/Stolonoidea +[2018-02-13T00:31:37.107] [INFO] cheese - inserting 1000 documents. first: Star Wars: Episode 4 - A New Hope and last: Php2 +[2018-02-13T00:31:37.121] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:31:37.182] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:31:37.320] [INFO] cheese - inserting 1000 documents. first: Samuel C. Black and last: Gręzawa +[2018-02-13T00:31:37.326] [INFO] cheese - inserting 1000 documents. first: Template:2013 ANZ Championship finals bracket and last: ABC 15 News +[2018-02-13T00:31:37.331] [INFO] cheese - inserting 1000 documents. first: Hypothetical disaster and last: Harry Lionel Shapiro +[2018-02-13T00:31:37.369] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:31:37.378] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:31:37.427] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:31:37.460] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Graptoloidea and last: Category:People from Bint Jbeil District +[2018-02-13T00:31:37.539] [INFO] cheese - inserting 1000 documents. first: Category:1873 establishments in Indiana and last: Ferzikovo railway station +[2018-02-13T00:31:37.575] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:31:37.679] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:31:37.786] [INFO] cheese - inserting 1000 documents. first: Hemmeroids and last: Body Shop (disambiguation) +[2018-02-13T00:31:37.801] [INFO] cheese - inserting 1000 documents. first: Element from decay and last: Wikipedia:Articles for deletion/Totaro Murakami +[2018-02-13T00:31:37.830] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:31:37.851] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:31:37.867] [INFO] cheese - inserting 1000 documents. first: Jagłowice and last: Bending iron +[2018-02-13T00:31:37.915] [INFO] cheese - inserting 1000 documents. first: Labour Zionism and last: The Crusades +[2018-02-13T00:31:37.921] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:31:37.990] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T00:31:38.003] [INFO] cheese - inserting 1000 documents. first: Template:1988 in Ukrainian football and last: Wikipedia:Articles for deletion/2015 Lista cu protestele locale/internationale pentru victimele din clubul Colectiv +[2018-02-13T00:31:38.029] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Sudan and last: Category:FA-Class Blu-ray articles +[2018-02-13T00:31:38.046] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:31:38.075] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:31:38.103] [INFO] cheese - inserting 1000 documents. first: Article 48 (Weimar Republic) and last: Florida State Road 406 +[2018-02-13T00:31:38.127] [INFO] cheese - inserting 1000 documents. first: EC 2.7.6.1 and last: Category:Immigration to Vanuatu +[2018-02-13T00:31:38.163] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:31:38.166] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:31:38.283] [INFO] cheese - inserting 1000 documents. first: Nick Kotys and last: Passo Cereda +[2018-02-13T00:31:38.331] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:31:38.401] [INFO] cheese - inserting 1000 documents. first: Category:2015–16 Mid-Eastern Athletic Conference men's basketball season and last: Category:Justin Trudeau +[2018-02-13T00:31:38.459] [INFO] cheese - inserting 1000 documents. first: List of Parma Calcio 1913 managers and last: 1973 Emperor's Cup +[2018-02-13T00:31:38.466] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:31:38.475] [INFO] cheese - inserting 1000 documents. first: Category:C-Class Coldplay articles and last: Template:Ds/sanction/usageline +[2018-02-13T00:31:38.504] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:31:38.511] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:31:38.521] [INFO] cheese - inserting 1000 documents. first: Rasabali and last: Union Mining Company +[2018-02-13T00:31:38.577] [INFO] cheese - inserting 1000 documents. first: Cluster chord and last: Dennis Waterman +[2018-02-13T00:31:38.583] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:31:38.606] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Electronic design services companies and last: Competence (human resources) +[2018-02-13T00:31:38.645] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:31:38.647] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:31:38.848] [INFO] cheese - inserting 1000 documents. first: Passo Cibiana and last: Wikipedia:WikiProject Pharmacology/Log/2009-02-10 +[2018-02-13T00:31:38.878] [INFO] cheese - inserting 1000 documents. first: Attractions in Louisville and last: Glacier damming +[2018-02-13T00:31:38.890] [INFO] cheese - inserting 1000 documents. first: File:Molecular Imaging and Biology.jpg and last: File:Mujo Ulqinaku.jpg +[2018-02-13T00:31:38.902] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:31:38.914] [INFO] cheese - inserting 1000 documents. first: Felix Robertson and last: James Ball (economist) +[2018-02-13T00:31:38.919] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:31:38.948] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:31:38.962] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:31:39.181] [INFO] cheese - inserting 1000 documents. first: Adjudicator and last: TCP/IP printer +[2018-02-13T00:31:39.218] [INFO] cheese - inserting 1000 documents. first: Glacier dam and last: Dietz, Robert +[2018-02-13T00:31:39.228] [INFO] cheese - inserting 1000 documents. first: Liberian Development Chartered Company and last: Portal:United Kingdom/Did you know/July 2007 +[2018-02-13T00:31:39.233] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:31:39.244] [INFO] cheese - inserting 1000 documents. first: William Blair Capital Partners and last: Character orientation +[2018-02-13T00:31:39.246] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:31:39.274] [INFO] cheese - inserting 1000 documents. first: ။ and last: Striccarella +[2018-02-13T00:31:39.290] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:31:39.314] [INFO] cheese - inserting 1000 documents. first: Annoyed grunt and last: St Louis Browns +[2018-02-13T00:31:39.316] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:31:39.328] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:31:39.332] [INFO] cheese - inserting 1000 documents. first: File:US Navy 050111-N-6817C-134 Sailors stand-by to load jugs of purified water into an approaching SH-60B Seahawk on the flight deck aboard USS Abraham Lincoln (CVN 72).jpg and last: Major League Baseball Rivalries +[2018-02-13T00:31:39.379] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:31:39.390] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:31:39.609] [INFO] cheese - inserting 1000 documents. first: Digby, Robert and last: Mara Junior Science College Kuching +[2018-02-13T00:31:39.622] [INFO] cheese - inserting 1000 documents. first: Aleksandra Beļcova and last: White Coffee Pot, Jr. +[2018-02-13T00:31:39.648] [INFO] cheese - inserting 1000 documents. first: Trebbiano Viccio and last: Mazin Masoud Al-Kasbi +[2018-02-13T00:31:39.647] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:31:39.682] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:31:39.697] [INFO] cheese - inserting 1000 documents. first: Template:Infobox golfer/sandbox and last: Hotpot (disambiguation) +[2018-02-13T00:31:39.727] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:31:39.804] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:31:39.857] [INFO] cheese - inserting 1000 documents. first: Sale El Sol and last: File:Mfi pic8.jpg +[2018-02-13T00:31:39.927] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Video game articles by quality/44 and last: Arcturos (disambiguation) +[2018-02-13T00:31:40.000] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:31:40.100] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:31:40.302] [INFO] cheese - inserting 1000 documents. first: Chocolate (ice cream) and last: Khanty-Mansiyskii District +[2018-02-13T00:31:40.318] [INFO] cheese - inserting 1000 documents. first: St Louis County and last: SatireWire +[2018-02-13T00:31:40.322] [INFO] cheese - inserting 1000 documents. first: Martin Price (numismatist) and last: Polyhymno walsinghami +[2018-02-13T00:31:40.341] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:31:40.390] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:31:40.399] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T00:31:40.458] [INFO] cheese - inserting 1000 documents. first: Sachar (disambiguation) and last: Glaphyrina plicata +[2018-02-13T00:31:40.523] [INFO] cheese - inserting 1000 documents. first: Xylotol and last: Hickey hider +[2018-02-13T00:31:40.530] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:31:40.583] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:31:40.611] [INFO] cheese - inserting 1000 documents. first: Arthur Nall-Cain, 2nd Baron Brocket and last: Vejer de la Frontera +[2018-02-13T00:31:40.620] [INFO] cheese - inserting 1000 documents. first: Church of the Holy Transfiguration, Sarajevo and last: Womanizer (disambiguation) +[2018-02-13T00:31:40.641] [INFO] cheese - inserting 1000 documents. first: Mary Wolmarans and last: Matthias Neithardt +[2018-02-13T00:31:40.667] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:31:40.667] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:31:40.685] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T00:31:40.833] [INFO] cheese - inserting 1000 documents. first: Lord Arthur Somerset (1780–1816) and last: Category:Lists of mountains of the Alps +[2018-02-13T00:31:40.883] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:31:40.892] [INFO] cheese - inserting 1000 documents. first: Category:15th-century architecture and last: File:Concord Coach Lines logo.png +[2018-02-13T00:31:40.950] [INFO] cheese - inserting 1000 documents. first: Category:Song recordings produced by Ian Anderson and last: Wikipedia:Articles for deletion/Post-presidency of Bill Clinton +[2018-02-13T00:31:40.950] [INFO] cheese - inserting 1000 documents. first: Striped Weasel and last: Luise Kähler +[2018-02-13T00:31:40.958] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:31:40.988] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:31:41.011] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:31:41.049] [INFO] cheese - inserting 1000 documents. first: Camp Barton and last: Portal:Indonesia/ST List/SA Borneo Clouded Leopard +[2018-02-13T00:31:41.085] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:31:41.163] [INFO] cheese - inserting 1000 documents. first: Yamaguti prefecture and last: Sharpstown scandal +[2018-02-13T00:31:41.180] [INFO] cheese - inserting 1000 documents. first: LongEZ and last: Vauxhall by-election, 1989 +[2018-02-13T00:31:41.232] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:31:41.250] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:31:41.288] [INFO] cheese - inserting 1000 documents. first: Portal:Astronomy/Events/April 2013 and last: United States House of Representatives elections in New Jersey, 1840 +[2018-02-13T00:31:41.318] [INFO] cheese - inserting 1000 documents. first: Full Tillt Boogie Band and last: Ernie Smith (Negro League baseball player) +[2018-02-13T00:31:41.328] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:31:41.340] [INFO] cheese - inserting 1000 documents. first: Category:United States Attorneys for the District of Mississippi and last: Template:KPL 2009 Map +[2018-02-13T00:31:41.399] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:31:41.401] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:31:41.434] [INFO] cheese - inserting 1000 documents. first: Category:Political parties in Queensland and last: Wikipedia:Articles for deletion/Minnesota Bluegrass and Old-Time Music Festival +[2018-02-13T00:31:41.473] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:31:41.509] [INFO] cheese - inserting 1000 documents. first: Beam Power Challenge and last: Sedgefield Borough Council election, 2003 +[2018-02-13T00:31:41.562] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:31:41.630] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Alabama, 1841 and last: Category:Song recordings produced by Pharrell Williams +[2018-02-13T00:31:41.645] [INFO] cheese - inserting 1000 documents. first: Komthur and last: A Very Special Drawn Together Afterschool Special +[2018-02-13T00:31:41.659] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:31:41.705] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:31:41.788] [INFO] cheese - inserting 1000 documents. first: Cosmopolitan bulrush and last: Nuffield chemistry +[2018-02-13T00:31:41.808] [INFO] cheese - inserting 1000 documents. first: Portal:Dinosaurs/Selected article/28 and last: Balisana +[2018-02-13T00:31:41.821] [INFO] cheese - inserting 1000 documents. first: Orehovica, Vipava and last: Vista Systems +[2018-02-13T00:31:41.831] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:31:41.858] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:31:41.898] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:31:41.929] [INFO] cheese - inserting 1000 documents. first: Trigonocephalus halys and last: Puzzles Like You +[2018-02-13T00:31:41.943] [INFO] cheese - inserting 1000 documents. first: Sharpstown affair and last: A Shropshire Lad +[2018-02-13T00:31:41.980] [INFO] cheese - inserting 1000 documents. first: Category:Song recordings produced by Pip Williams and last: Chinese Dream +[2018-02-13T00:31:41.982] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:31:42.026] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:31:42.035] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:31:42.180] [INFO] cheese - inserting 1000 documents. first: Obedience trial and last: Giant Pacific chiton +[2018-02-13T00:31:42.231] [INFO] cheese - inserting 1000 documents. first: Personal Egress Air Packs and last: Inner Harbor Navigation Canal (IHNC) Seabrook Floodgate Structure +[2018-02-13T00:31:42.315] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:31:42.356] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:31:42.428] [INFO] cheese - inserting 1000 documents. first: Hyakujuu-Ou Go-Lion and last: Greenville unionist convention +[2018-02-13T00:31:42.452] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Cāmadevivaṃsa and last: File:Bull Promontional Photo.jpg +[2018-02-13T00:31:42.478] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:31:42.481] [INFO] cheese - inserting 1000 documents. first: File:PuzzlesLikeYou.gif and last: Clervaux railway station +[2018-02-13T00:31:42.508] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:31:42.528] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:31:42.554] [INFO] cheese - inserting 1000 documents. first: Plan A (song) and last: Rex Gary +[2018-02-13T00:31:42.594] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:31:42.738] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/ast/admlaw and last: Doug Murray (Coronation Street) +[2018-02-13T00:31:42.778] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:31:42.837] [INFO] cheese - inserting 1000 documents. first: Trowel and last: VGA connector +[2018-02-13T00:31:42.871] [INFO] cheese - inserting 1000 documents. first: BGSQ and last: Wikipedia:Valued picture candidates/Childe's Tomb +[2018-02-13T00:31:42.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/July 15, 2007 and last: Sky's The Limit(album) +[2018-02-13T00:31:42.897] [INFO] cheese - inserting 1000 documents. first: Category:Fictional volleyball players and last: Category:McKim, Mead, and White buildings +[2018-02-13T00:31:42.912] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T00:31:42.926] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:31:42.954] [INFO] cheese - inserting 1000 documents. first: Pink bogbutton and last: Template:Creative Commons topics +[2018-02-13T00:31:42.980] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Coosa County, Alabama and last: Buginese (Unicode block) +[2018-02-13T00:31:42.987] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:31:42.993] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:31:43.038] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:31:43.044] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:31:43.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nosmokingblogdiary.blogspot.com and last: Pakistani Baluchistan +[2018-02-13T00:31:43.226] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:31:43.247] [INFO] cheese - inserting 1000 documents. first: Union des Démocrates de Côte d’Ivoire and last: Paul Humphrey (singer/songwriter) +[2018-02-13T00:31:43.284] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:31:43.366] [INFO] cheese - inserting 1000 documents. first: Mikhail Ryumin and last: Black-Capped Woodland-Warbler +[2018-02-13T00:31:43.381] [INFO] cheese - inserting 1000 documents. first: NOV Fm and last: Phalaena selenitica +[2018-02-13T00:31:43.412] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:31:43.472] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:31:43.613] [INFO] cheese - inserting 1000 documents. first: File:St George logo.png and last: ChiChi +[2018-02-13T00:31:43.644] [INFO] cheese - inserting 1000 documents. first: All We Need (Raury album) and last: Kim Byung-ok +[2018-02-13T00:31:43.670] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:31:43.680] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm Tempel and last: Tickhill +[2018-02-13T00:31:43.683] [INFO] cheese - inserting 1000 documents. first: David Taw and last: João Maria Barreto Ferreira do Amaral, 2nd Baron of Oliveira Lima +[2018-02-13T00:31:43.707] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:31:43.724] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:31:43.754] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:31:43.763] [INFO] cheese - inserting 1000 documents. first: Fred Papas and last: AACA +[2018-02-13T00:31:43.822] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:31:43.841] [INFO] cheese - inserting 1000 documents. first: Eggers Group and last: National Route 131 +[2018-02-13T00:31:43.903] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:31:44.000] [INFO] cheese - inserting 1000 documents. first: Mordellistenoda melana and last: Category:Media in Lima +[2018-02-13T00:31:44.045] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:31:44.155] [INFO] cheese - inserting 1000 documents. first: Willi Rothhaar and last: Pedro de Silva +[2018-02-13T00:31:44.182] [INFO] cheese - inserting 1000 documents. first: Cryonics in popular culture and last: Template:Country data Bottrop +[2018-02-13T00:31:44.211] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:31:44.218] [INFO] cheese - inserting 1000 documents. first: Cities of the Faroe Islands and last: Tures valley railroad +[2018-02-13T00:31:44.249] [INFO] cheese - inserting 1000 documents. first: Ahsa and last: Devoted to You (song) +[2018-02-13T00:31:44.264] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:31:44.290] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:31:44.332] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:31:44.406] [INFO] cheese - inserting 1000 documents. first: Chaams and last: CTP:molybdopterin cytidylyltransferase +[2018-02-13T00:31:44.419] [INFO] cheese - inserting 1000 documents. first: Margaret Wade (basketball) and last: Soboșa River +[2018-02-13T00:31:44.442] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:31:44.461] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:31:44.615] [INFO] cheese - inserting 1000 documents. first: Stjepan Držislav and last: Document Exploitation +[2018-02-13T00:31:44.652] [INFO] cheese - inserting 1000 documents. first: Pedro de Silva Cienfuegos-Jovellanos and last: War Times: Reports From The Opposition +[2018-02-13T00:31:44.661] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:31:44.700] [INFO] cheese - inserting 1000 documents. first: Template:WAM talk 2015 and last: Stalked spikemoss +[2018-02-13T00:31:44.704] [INFO] cheese - inserting 1000 documents. first: Nogeoldae and last: Boleslaus V, Duke of Poland +[2018-02-13T00:31:44.753] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:31:44.774] [INFO] cheese - inserting 1000 documents. first: MoCo cytidylyltransferase and last: Category:Medical and health organisations based in Poland +[2018-02-13T00:31:44.832] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:31:44.844] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T00:31:44.870] [INFO] cheese - inserting 1000 documents. first: Signatura and last: Contes +[2018-02-13T00:31:44.873] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:31:44.926] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:31:44.948] [INFO] cheese - inserting 1000 documents. first: Devoted To You and last: European Party +[2018-02-13T00:31:44.992] [INFO] cheese - inserting 1000 documents. first: Pietro Moriconi and last: Mettmenhasli-See +[2018-02-13T00:31:45.008] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:31:45.044] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:31:45.214] [INFO] cheese - inserting 1000 documents. first: Patrick Joseph Carew and last: Test tube holder +[2018-02-13T00:31:45.225] [INFO] cheese - inserting 1000 documents. first: Category:Zambian expatriates in the United Kingdom and last: Category:Grammarians of Yiddish +[2018-02-13T00:31:45.247] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:31:45.259] [INFO] cheese - inserting 1000 documents. first: Trachydora pygaea and last: Asser (monk) +[2018-02-13T00:31:45.285] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:31:45.287] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T00:31:45.355] [INFO] cheese - inserting 1000 documents. first: Mahmud Abu al-Fath and last: Abdul hay mosallam +[2018-02-13T00:31:45.371] [INFO] cheese - inserting 1000 documents. first: Katharina Haecker and last: Saint-Rose (AMT) +[2018-02-13T00:31:45.408] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:31:45.423] [INFO] cheese - inserting 1000 documents. first: University Of Nebraska and last: Octopuses +[2018-02-13T00:31:45.426] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:31:45.494] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:31:45.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2006 February 12 and last: K. 242 +[2018-02-13T00:31:45.575] [INFO] cheese - inserting 1000 documents. first: Tej Pratap Yadav and last: Ryan Switzer +[2018-02-13T00:31:45.587] [INFO] cheese - inserting 1000 documents. first: A Tribute to the Four Horsemen and last: Bąkowice +[2018-02-13T00:31:45.587] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:31:45.619] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:31:45.635] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Wisconsin, 1994 and last: Per Meinich +[2018-02-13T00:31:45.637] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:31:45.679] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:31:45.767] [INFO] cheese - inserting 1000 documents. first: File:Vipin Verma.jpg and last: Fly-boy +[2018-02-13T00:31:45.813] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:31:45.929] [INFO] cheese - inserting 1000 documents. first: Bielice, Namysłów County and last: Lake of Riesser +[2018-02-13T00:31:45.963] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:31:46.021] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/userweb.pedf.cuni.cz and last: Hygrophoropsis laevis +[2018-02-13T00:31:46.044] [INFO] cheese - inserting 1000 documents. first: T-Link and last: Category:Jewish Jordanian history +[2018-02-13T00:31:46.065] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:31:46.075] [INFO] cheese - inserting 1000 documents. first: Tyubu and last: Taygete (moon) +[2018-02-13T00:31:46.099] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:31:46.115] [INFO] cheese - inserting 1000 documents. first: Category:Towers completed in 2009 and last: Category:Aircraft manufactured in India +[2018-02-13T00:31:46.134] [INFO] cheese - inserting 1000 documents. first: Ball Of Confusion (That's What The World Is Today) and last: Born A Rebel +[2018-02-13T00:31:46.163] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:31:46.181] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:31:46.240] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:31:46.293] [INFO] cheese - inserting 1000 documents. first: Serbia national under-19 football team and last: Atep Rizal +[2018-02-13T00:31:46.332] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:31:46.404] [INFO] cheese - inserting 1000 documents. first: Hygrophoropsis fuscosquamula and last: List of eruvin +[2018-02-13T00:31:46.407] [INFO] cheese - inserting 1000 documents. first: Großer Plöner-see and last: 12 light field ambulance +[2018-02-13T00:31:46.437] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Irving Quant and last: Arda Envinyanta +[2018-02-13T00:31:46.441] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:31:46.450] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:31:46.480] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:31:46.508] [INFO] cheese - inserting 1000 documents. first: Category:Aircraft manufactured by the Philippines and last: Template:ABA League rebounding leaders +[2018-02-13T00:31:46.540] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:31:46.650] [INFO] cheese - inserting 1000 documents. first: Campari (disambiguation) and last: Parsley virus 3 +[2018-02-13T00:31:46.685] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:31:46.722] [INFO] cheese - inserting 1000 documents. first: Shelkovnikov Beybut Martirosovich and last: File:Karwar Evening.jpg +[2018-02-13T00:31:46.748] [INFO] cheese - inserting 1000 documents. first: 2011 in São Tomé and Príncipe and last: Anthophila punctosa +[2018-02-13T00:31:46.770] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:31:46.780] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/annisaa.invisionplus.net and last: 1234567890 day +[2018-02-13T00:31:46.795] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:31:46.815] [INFO] cheese - inserting 1000 documents. first: Sujeong and last: Navy Medical Service +[2018-02-13T00:31:46.822] [INFO] cheese - inserting 1000 documents. first: Lazy eye and last: Malcolm Bradbury +[2018-02-13T00:31:46.825] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:31:46.859] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:31:46.891] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:31:46.902] [INFO] cheese - inserting 1000 documents. first: Her Şey Aşktan and last: Category:Europa Jupiter System Mission +[2018-02-13T00:31:46.947] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:31:47.228] [INFO] cheese - inserting 1000 documents. first: Silver Wolf Award (The Scout Association) and last: File:Patients and medical staff.jpg +[2018-02-13T00:31:47.271] [INFO] cheese - inserting 1000 documents. first: Choreutis philonyma and last: Evergreen Street +[2018-02-13T00:31:47.285] [INFO] cheese - inserting 1000 documents. first: Ender's Game series and last: Mänttä-Vilppula +[2018-02-13T00:31:47.291] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:31:47.293] [INFO] cheese - inserting 1000 documents. first: Template:ConfirmationImageOTRS and last: Jean-Talon Market +[2018-02-13T00:31:47.306] [INFO] cheese - inserting 1000 documents. first: Donati Salla and last: RGVFC +[2018-02-13T00:31:47.313] [INFO] cheese - inserting 1000 documents. first: Darby End and last: James Sumner (baseball) +[2018-02-13T00:31:47.338] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:31:47.364] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:31:47.386] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:31:47.392] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:31:47.388] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:31:47.769] [INFO] cheese - inserting 1000 documents. first: Polandish Passage and last: Andrew Crommelin +[2018-02-13T00:31:47.784] [INFO] cheese - inserting 1000 documents. first: File:View of Village Market.JPG and last: Paurine Mpariwa +[2018-02-13T00:31:47.804] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ophthalmophaginae and last: Category:Israeli surnames +[2018-02-13T00:31:47.815] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/defendamerica.mil and last: CD53 +[2018-02-13T00:31:47.824] [INFO] cheese - inserting 1000 documents. first: File:Lake People Park, Seattle, March 2013.jpg and last: Rahul Khullar +[2018-02-13T00:31:47.825] [INFO] cheese - inserting 1000 documents. first: Template:Hearthstone and last: West 12 Shepherd's Bush +[2018-02-13T00:31:47.828] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:31:47.858] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:31:47.860] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:31:47.860] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:31:47.891] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T00:31:47.942] [INFO] cheese - inserting 1000 documents. first: Upper Aulaqi Sultanate and last: Carlenrig +[2018-02-13T00:31:47.961] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:31:48.007] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:31:48.250] [INFO] cheese - inserting 1000 documents. first: Only Fools (Never Fall in Love) and last: Teledyne Turbine Engines +[2018-02-13T00:31:48.267] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/anite.com and last: Pander Brothers +[2018-02-13T00:31:48.285] [INFO] cheese - inserting 1000 documents. first: 2011 F1 season and last: Sladjan Pajić +[2018-02-13T00:31:48.293] [INFO] cheese - inserting 1000 documents. first: Category:Media in Beirut and last: Jelly roll motif +[2018-02-13T00:31:48.341] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:31:48.350] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:31:48.357] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:31:48.375] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:31:48.441] [INFO] cheese - inserting 1000 documents. first: CD63 and last: Untied aid +[2018-02-13T00:31:48.493] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:31:48.560] [INFO] cheese - inserting 1000 documents. first: The Last Few Bricks and last: Paranà +[2018-02-13T00:31:48.609] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:31:48.699] [INFO] cheese - inserting 1000 documents. first: Template:Country data Conil de la Frontera and last: Wikipedia:WikiProject Spam/LinkReports/parahat.info +[2018-02-13T00:31:48.735] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:31:48.760] [INFO] cheese - inserting 1000 documents. first: 2013 Conference USA men's soccer season and last: New Musical Theater of San Francisco, Inc. +[2018-02-13T00:31:48.773] [INFO] cheese - inserting 1000 documents. first: List of mountain types and last: Samuel Byck +[2018-02-13T00:31:48.779] [INFO] cheese - inserting 1000 documents. first: Philonides (physician) and last: 2005 Pot Black +[2018-02-13T00:31:48.796] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:31:48.826] [INFO] cheese - inserting 1000 documents. first: Category:Defunct ice hockey leagues in the United Kingdom and last: Wikipedia:WikiProject Azerbaijan/Article alerts/Archive +[2018-02-13T00:31:48.826] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:31:48.828] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T00:31:48.846] [INFO] cheese - inserting 1000 documents. first: Arthur, 1st Duke of Connaught and last: File:Roncesvalles Festival-2006.JPG +[2018-02-13T00:31:48.890] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:31:48.916] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:31:49.011] [INFO] cheese - inserting 1000 documents. first: Bamforth National Wildlife Refuge and last: Beni Ebeid Stadium +[2018-02-13T00:31:49.032] [INFO] cheese - inserting 1000 documents. first: Category:Albanian emigrants to Yugoslavia and last: Category:Chinese baritones +[2018-02-13T00:31:49.064] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:31:49.074] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:31:49.081] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Montcalm County, Michigan and last: San Diego Sockers (2001–2004) +[2018-02-13T00:31:49.140] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:31:49.211] [INFO] cheese - inserting 1000 documents. first: San Diego-Coronado Bridge and last: Edward Lhwyd +[2018-02-13T00:31:49.256] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:31:49.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sense and Goodness Without God and last: SGCIM +[2018-02-13T00:31:49.343] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:31:49.586] [INFO] cheese - inserting 1000 documents. first: Fragkias and last: File:Florida Blazers logo 1974.png +[2018-02-13T00:31:49.591] [INFO] cheese - inserting 1000 documents. first: Category:Media in Gyeongju and last: Annette Roque +[2018-02-13T00:31:49.592] [INFO] cheese - inserting 1000 documents. first: Kalbar and last: Heavy metal L-Gaim +[2018-02-13T00:31:49.602] [INFO] cheese - inserting 1000 documents. first: Dutch process chocolate and last: Anti-disestablishmentarianism +[2018-02-13T00:31:49.633] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:31:49.640] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:31:49.657] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:31:49.686] [INFO] cheese - inserting 1000 documents. first: John Johnstone (disambiguation) and last: The Nightcrawlers +[2018-02-13T00:31:49.696] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T00:31:49.744] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:31:49.879] [INFO] cheese - inserting 1000 documents. first: Five Years In A LIVEtime and last: Petero Byakatonda +[2018-02-13T00:31:49.921] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:31:49.998] [INFO] cheese - inserting 1000 documents. first: List of Sony television series and last: Un camino hacia el destino +[2018-02-13T00:31:49.999] [INFO] cheese - inserting 1000 documents. first: Maintenance regulation and last: Lithuanian Civil War (1431–1435) +[2018-02-13T00:31:50.035] [INFO] cheese - inserting 1000 documents. first: The 1936 Olympics and last: Patrick Wolridge-Gordon +[2018-02-13T00:31:50.051] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:31:50.077] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:31:50.117] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:31:50.240] [INFO] cheese - inserting 1000 documents. first: Iya Savvina and last: Fishguard and Rosslare Railways and Harbours +[2018-02-13T00:31:50.288] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:31:50.387] [INFO] cheese - inserting 1000 documents. first: Step It Up (song) and last: Category:Aviation code templates +[2018-02-13T00:31:50.433] [INFO] cheese - inserting 1000 documents. first: Kahurabad-e Sohrabi and last: National Register of Historic Places listings in Kiowa County, Kansas +[2018-02-13T00:31:50.453] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:31:50.459] [INFO] cheese - inserting 1000 documents. first: Telus Plaza and last: Wikipedia:Arbitration Committee Elections December 2015/Candidates/Keilana/Questions +[2018-02-13T00:31:50.517] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:31:50.533] [INFO] cheese - inserting 1000 documents. first: Ernst Toch and last: Cigarette lighters +[2018-02-13T00:31:50.531] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:31:50.653] [INFO] cheese - inserting 1000 documents. first: List of minor planets/76801–76900 and last: Wikipedia:Articles for deletion/Employee leasing +[2018-02-13T00:31:50.724] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T00:31:50.769] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:31:50.980] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Lane County, Kansas and last: Municipal councillor (NL) +[2018-02-13T00:31:50.981] [INFO] cheese - inserting 1000 documents. first: Herfast de Crépon and last: 322d Bombardment Squadron +[2018-02-13T00:31:51.018] [INFO] cheese - inserting 1000 documents. first: Predictive Informatics and last: Cicely (disambiguation) +[2018-02-13T00:31:51.023] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:31:51.028] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:31:51.064] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:31:51.184] [INFO] cheese - inserting 1000 documents. first: B 93 and last: Violet Dancer +[2018-02-13T00:31:51.272] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:31:51.325] [INFO] cheese - inserting 1000 documents. first: Category:Dundela F.C. players and last: Wikipedia:Files for deletion/2011 January 12 +[2018-02-13T00:31:51.402] [INFO] cheese - inserting 1000 documents. first: File:The movie poster for the 2015 documentary "A Wing and a Prayer".jpg and last: A340-642 +[2018-02-13T00:31:51.409] [INFO] cheese - inserting 1000 documents. first: Category:Pan American Games gold medalists for the United States and last: Wikipedia:0.7/0.7index/Amusements +[2018-02-13T00:31:51.420] [INFO] cheese - inserting 1000 documents. first: Şenlikköy Stadium and last: Paget baronets +[2018-02-13T00:31:51.443] [INFO] cheese - inserting 1000 documents. first: Pasha's Mosque and last: Category:String quartets by Milton Babbitt +[2018-02-13T00:31:51.447] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:31:51.455] [INFO] cheese - batch complete in: 2.539 secs +[2018-02-13T00:31:51.468] [INFO] cheese - batch complete in: 1.18 secs +[2018-02-13T00:31:51.474] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:31:51.527] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:31:51.772] [INFO] cheese - inserting 1000 documents. first: Corning Community College and last: Écublens, Vaud +[2018-02-13T00:31:52.095] [INFO] cheese - batch complete in: 1.371 secs +[2018-02-13T00:31:52.181] [INFO] cheese - inserting 1000 documents. first: Christine Malèvre and last: Category:Lacrosse teams +[2018-02-13T00:31:52.241] [INFO] cheese - inserting 1000 documents. first: A340-643 and last: Template:Fb competition 2004-05 Macedonian Prva Liga +[2018-02-13T00:31:52.245] [INFO] cheese - inserting 1000 documents. first: Traubendorn and last: Ingenious Media +[2018-02-13T00:31:52.248] [INFO] cheese - inserting 1000 documents. first: Category:String quartets by Carl Nielsen and last: Qanat Siyah +[2018-02-13T00:31:52.291] [INFO] cheese - inserting 1000 documents. first: Barbatula brandti and last: James O'Kelly +[2018-02-13T00:31:52.316] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T00:31:52.355] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:31:52.378] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:31:52.407] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T00:31:52.451] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T00:31:52.802] [INFO] cheese - inserting 1000 documents. first: Under Secretary for Arms Control and International Security and last: Laura Johnson +[2018-02-13T00:31:52.850] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:31:52.874] [INFO] cheese - inserting 1000 documents. first: Modern Life is War and last: Template:PASOBronzeMedalist +[2018-02-13T00:31:52.874] [INFO] cheese - inserting 1000 documents. first: File:I Thank You ZZ Top.jpg and last: Żychckie Osady +[2018-02-13T00:31:52.879] [INFO] cheese - inserting 1000 documents. first: Qanat Seyah and last: File:Sam Concepcion in World Vision Mission in Cagayan de Oro, 2012.jpg +[2018-02-13T00:31:52.907] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2011 January 12 and last: Razboienii de Jos +[2018-02-13T00:31:52.909] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:31:52.912] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:31:52.918] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:31:52.957] [INFO] cheese - batch complete in: 1.501 secs +[2018-02-13T00:31:52.961] [INFO] cheese - inserting 1000 documents. first: Tonight's the Night (1934 film) and last: Category:Arts festivals in North America +[2018-02-13T00:31:53.015] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:31:53.084] [INFO] cheese - inserting 1000 documents. first: Plead and last: Hurrian language +[2018-02-13T00:31:53.181] [INFO] cheese - batch complete in: 1.086 secs +[2018-02-13T00:31:53.236] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Człuchów County and last: 1988 Guarujá Open +[2018-02-13T00:31:53.281] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:31:53.300] [INFO] cheese - inserting 1000 documents. first: Precious Blood (song) and last: Category:Azerbaijani football clubs 2007–08 season +[2018-02-13T00:31:53.363] [INFO] cheese - inserting 1000 documents. first: Template:Talt and last: Wikipedia:Articles for deletion/Kolinsky sable +[2018-02-13T00:31:53.397] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2007 July 16 and last: DN-1-Class Blimp +[2018-02-13T00:31:53.405] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:31:53.451] [INFO] cheese - inserting 1000 documents. first: Borşeni and last: File:ACA stageFINAL.JPG +[2018-02-13T00:31:53.493] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:31:53.499] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:31:53.513] [INFO] cheese - inserting 1000 documents. first: Logie Award for Most Popular Drama Program and last: Stella von Schöneberg +[2018-02-13T00:31:53.514] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:31:53.581] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:31:53.647] [INFO] cheese - inserting 1000 documents. first: What Happens at the National Propane Gas Convention in Memphis Stays at the National Propane Gas Convention in Memphis and last: York Regional Road 99 +[2018-02-13T00:31:53.689] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:31:53.791] [INFO] cheese - inserting 1000 documents. first: Pyramid roof and last: USC-Conway Chanticleers +[2018-02-13T00:31:53.867] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:31:53.871] [INFO] cheese - inserting 1000 documents. first: Acoustics Research Institute and last: Pisang raja udang +[2018-02-13T00:31:53.872] [INFO] cheese - inserting 1000 documents. first: Kevlarsjäl and last: Masahiro kawasaki +[2018-02-13T00:31:53.917] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:31:53.925] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:31:53.987] [INFO] cheese - inserting 1000 documents. first: Oklahoma Wing Civil Air Patrol and last: Template:Editnotices/Page/Dead centre (engineering) +[2018-02-13T00:31:54.056] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:31:54.060] [INFO] cheese - inserting 1000 documents. first: Sandy Bruce-Lockhart, Baron Bruce-Lockhart and last: WAAY-TV +[2018-02-13T00:31:54.074] [INFO] cheese - inserting 1000 documents. first: Green liberalism and last: Child safety lock +[2018-02-13T00:31:54.119] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:31:54.148] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T00:31:54.201] [INFO] cheese - inserting 1000 documents. first: South Carolina-Conway Chanticleers and last: Category:Moldovan expatriate sportspeople +[2018-02-13T00:31:54.247] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:31:54.264] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Palermo-Juventina and last: Wikipedia:Articles for deletion/Cecil Johnson +[2018-02-13T00:31:54.350] [INFO] cheese - inserting 1000 documents. first: Rueppellii and last: Egletes humifusa +[2018-02-13T00:31:54.366] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:31:54.396] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:31:54.400] [INFO] cheese - inserting 1000 documents. first: Kate Mullins and last: Category:Populated places in Ford County, Illinois +[2018-02-13T00:31:54.490] [INFO] cheese - inserting 1000 documents. first: File:Namibian Army Wolf armed with Air Defence cannon.jpg and last: 16th Transport Squadron +[2018-02-13T00:31:54.540] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:31:54.584] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:31:54.746] [INFO] cheese - inserting 1000 documents. first: American Athletic Conference Baseball Tournament and last: Oeffag series 153 +[2018-02-13T00:31:54.795] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:31:54.796] [INFO] cheese - inserting 1000 documents. first: Thousand Cranes and last: Callicebus (Torquatus) medemi +[2018-02-13T00:31:54.879] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:31:54.895] [INFO] cheese - inserting 1000 documents. first: Claim jump and last: Port Road +[2018-02-13T00:31:54.912] [INFO] cheese - inserting 1000 documents. first: Tiddington railway station and last: Template:Belgium-film-director-stub +[2018-02-13T00:31:54.922] [INFO] cheese - inserting 1000 documents. first: Category:Infectious Records albums and last: William Bradshaw (writer) +[2018-02-13T00:31:54.939] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:31:54.974] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:31:54.983] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:31:55.009] [INFO] cheese - inserting 1000 documents. first: Apatema and last: Lord SatyNarayan +[2018-02-13T00:31:55.036] [INFO] cheese - inserting 1000 documents. first: Henri I de Montmorency and last: Caine, Hall, Sir +[2018-02-13T00:31:55.054] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:31:55.097] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T00:31:55.166] [INFO] cheese - inserting 1000 documents. first: Oeffag series 253 and last: Tower Battery +[2018-02-13T00:31:55.211] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:31:55.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ewell Grove Infant and Nursery School and last: Maritime Air Mass +[2018-02-13T00:31:55.301] [INFO] cheese - inserting 1000 documents. first: The Grolier Club and last: File:Clinical Gastroenterology and Hepatology.gif +[2018-02-13T00:31:55.314] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:31:55.342] [INFO] cheese - inserting 1000 documents. first: Category:Senecio and last: Elmisauridae +[2018-02-13T00:31:55.364] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gümbadey and last: Salman the Persian (film) +[2018-02-13T00:31:55.367] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:31:55.376] [INFO] cheese - inserting 1000 documents. first: Transit car and last: Celtedens +[2018-02-13T00:31:55.403] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:31:55.425] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:31:55.435] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:31:55.551] [INFO] cheese - inserting 1000 documents. first: Polychrome Glacier and last: EDreams (2) +[2018-02-13T00:31:55.584] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:31:55.705] [INFO] cheese - inserting 1000 documents. first: Mesua kochummenia and last: Saint-Alexis-des-Monts, Quebec +[2018-02-13T00:31:55.715] [INFO] cheese - inserting 1000 documents. first: Category:Parks in Humboldt County, California and last: County board of elections +[2018-02-13T00:31:55.737] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:31:55.750] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:31:55.774] [INFO] cheese - inserting 1000 documents. first: Carrolla and last: Casimir III of Poland +[2018-02-13T00:31:55.834] [INFO] cheese - inserting 1000 documents. first: Anchiniinae and last: George Lawler (EastEnders) +[2018-02-13T00:31:55.869] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:31:55.963] [INFO] cheese - inserting 1000 documents. first: London Buses route 7 and last: I Think I'm A Clone Now +[2018-02-13T00:31:55.976] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:31:56.044] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:31:56.071] [INFO] cheese - inserting 1000 documents. first: Breckenridge, CO Micropolitan Statistical Area and last: United States House of Representatives elections in Illinois, 1890 +[2018-02-13T00:31:56.109] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:31:56.111] [INFO] cheese - inserting 1000 documents. first: Michael Maurice Micklewhite and last: Disputed territories +[2018-02-13T00:31:56.221] [INFO] cheese - batch complete in: 1.123 secs +[2018-02-13T00:31:56.272] [INFO] cheese - inserting 1000 documents. first: Category:Bloodshot Records albums and last: Totally Táta +[2018-02-13T00:31:56.380] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:31:56.469] [INFO] cheese - inserting 1000 documents. first: Kava, Mali and last: Norm Rogers +[2018-02-13T00:31:56.495] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Missions in 3-D Pinball Space Cadet and last: Cardioglossa pulchra +[2018-02-13T00:31:56.508] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:31:56.575] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T00:31:56.611] [INFO] cheese - inserting 1000 documents. first: Emagine and last: Doha Stadium (Qatar) +[2018-02-13T00:31:56.690] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:31:56.766] [INFO] cheese - inserting 1000 documents. first: Template:Indian Justice Party/meta/shortname and last: Lestina +[2018-02-13T00:31:56.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/God-Grilla and last: Open-source 3-D printer +[2018-02-13T00:31:56.825] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:31:56.861] [INFO] cheese - inserting 1000 documents. first: Category:Northumberland cuisine and last: The Metro (film) +[2018-02-13T00:31:56.864] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:31:56.954] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:31:56.991] [INFO] cheese - inserting 1000 documents. first: Cardioglossa schioetzi and last: Yokoyama BayStars +[2018-02-13T00:31:56.994] [INFO] cheese - inserting 1000 documents. first: William IV of England,Scotland,and Ireland and last: Category:New Zealand baseball players +[2018-02-13T00:31:57.040] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:31:57.069] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:31:57.194] [INFO] cheese - inserting 1000 documents. first: Category:Asian-New Zealand culture in Auckland and last: Zdzisław Bradel +[2018-02-13T00:31:57.195] [INFO] cheese - inserting 1000 documents. first: Marguerite de Launay, baronne de Staal and last: Filosofy +[2018-02-13T00:31:57.238] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:31:57.249] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T00:31:57.293] [INFO] cheese - inserting 1000 documents. first: File:Lopez Play.png and last: FSMK +[2018-02-13T00:31:57.334] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:31:57.387] [INFO] cheese - inserting 1000 documents. first: High Definition Televison and last: Ernest Hackel +[2018-02-13T00:31:57.445] [INFO] cheese - inserting 1000 documents. first: Massadio Haïdara and last: Wikipedia:Campus Ambassadors/Louisiana State University/Trained Ambassadors +[2018-02-13T00:31:57.446] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:31:57.468] [INFO] cheese - inserting 1000 documents. first: Alberto Ullastres and last: Suman (actor) +[2018-02-13T00:31:57.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2009 February 15 and last: Pseudanapaea transvestita +[2018-02-13T00:31:57.501] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:31:57.526] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:31:57.559] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:31:57.675] [INFO] cheese - inserting 1000 documents. first: Alina Bolshakova and last: Nat haversine +[2018-02-13T00:31:57.688] [INFO] cheese - inserting 1000 documents. first: Air Tanzania Corporation and last: Pork Knuckles and Ginger Stew (ZYU GEK GOENG) +[2018-02-13T00:31:57.720] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:31:57.739] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:31:57.881] [INFO] cheese - inserting 1000 documents. first: Category:Continental unions and last: Tachycardia, paroxysmal +[2018-02-13T00:31:57.900] [INFO] cheese - inserting 1000 documents. first: Travis Norton and last: Discrete Uniform Distribution +[2018-02-13T00:31:57.912] [INFO] cheese - inserting 1000 documents. first: Privett church and last: Category:Populated places in Bureau County, Illinois +[2018-02-13T00:31:57.923] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:31:57.928] [INFO] cheese - inserting 1000 documents. first: 1983 Bristol Open and last: Wallen, Indiana +[2018-02-13T00:31:57.951] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:31:57.975] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:31:57.989] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:31:58.043] [INFO] cheese - inserting 1000 documents. first: Phylosophy and last: Loop splitting +[2018-02-13T00:31:58.167] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T00:31:58.201] [INFO] cheese - inserting 1000 documents. first: St. Croix Boom Company House and Barn and last: Category:Referendums in the Åland Islands +[2018-02-13T00:31:58.301] [INFO] cheese - inserting 1000 documents. first: Category:Education in Conwy County Borough and last: Charles Corbett +[2018-02-13T00:31:58.344] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:31:58.377] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:31:58.443] [INFO] cheese - inserting 1000 documents. first: Derk-Elsko Bruins and last: Sino-Tibetan relations during the Tang dynasty +[2018-02-13T00:31:58.488] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:31:58.500] [INFO] cheese - inserting 1000 documents. first: Trash Pussies and last: State Highway 26 (Texas 1939) +[2018-02-13T00:31:58.575] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:31:58.594] [INFO] cheese - inserting 1000 documents. first: G. diffusa and last: Thyreostat II +[2018-02-13T00:31:58.603] [INFO] cheese - inserting 1000 documents. first: Category:Burials in Tyne and Wear and last: Phanigiri +[2018-02-13T00:31:58.623] [INFO] cheese - batch complete in: 0.246 secs +[2018-02-13T00:31:58.692] [INFO] cheese - inserting 1000 documents. first: Japalura Tree Dragon and last: Pınarbaşı, Kastamonu +[2018-02-13T00:31:58.696] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:31:58.750] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:31:58.787] [INFO] cheese - inserting 1000 documents. first: Ricsinsåt and last: Institute of Politics and Public Service +[2018-02-13T00:31:58.838] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:31:58.906] [INFO] cheese - inserting 1000 documents. first: List of Federal Reserve branches and last: Macquarie Island Cormorant +[2018-02-13T00:31:58.939] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:31:58.945] [INFO] cheese - inserting 1000 documents. first: State Highway 27 (Texas 1939) and last: Dendropsophus leali +[2018-02-13T00:31:58.948] [INFO] cheese - inserting 1000 documents. first: Arawak people and last: Vesikur +[2018-02-13T00:31:58.978] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T00:31:58.988] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:31:58.998] [INFO] cheese - inserting 1000 documents. first: Rescue Us and last: Les Innommables +[2018-02-13T00:31:59.047] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:31:59.140] [INFO] cheese - inserting 1000 documents. first: Apocalyptic Raids and last: List of state leaders in 1761 +[2018-02-13T00:31:59.196] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T00:31:59.198] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/1996 Andhra Pradesh cyclone and last: Slender sow thistle +[2018-02-13T00:31:59.240] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:31:59.256] [INFO] cheese - inserting 1000 documents. first: Ave (intermunicipal community) and last: Tose Proeski +[2018-02-13T00:31:59.277] [INFO] cheese - inserting 1000 documents. first: Market House (Rothwell, Northamptonshire) and last: Lucrezia (disambiguation) +[2018-02-13T00:31:59.311] [INFO] cheese - inserting 1000 documents. first: DG Flugzeugbau DG-1000T and last: Mott Haven Historic District +[2018-02-13T00:31:59.326] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:31:59.333] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Muslim history and last: Natan Altman +[2018-02-13T00:31:59.351] [INFO] cheese - inserting 1000 documents. first: Category:AEK Athens F.C. chairmen and last: Template:Spain-dessert-stub +[2018-02-13T00:31:59.358] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:31:59.405] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:31:59.427] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:31:59.432] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:31:59.712] [INFO] cheese - inserting 1000 documents. first: Slender sow-thistle and last: Simplemente María (Mexican telenovela) +[2018-02-13T00:31:59.785] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:31:59.886] [INFO] cheese - inserting 1000 documents. first: AKFM and last: Wikipedia:Articles for deletion/Robert trail +[2018-02-13T00:31:59.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Jrmillikan and last: Category:Sharks (rugby union) players +[2018-02-13T00:31:59.941] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:31:59.951] [INFO] cheese - inserting 1000 documents. first: Kent North and last: A. S. Gage Ranch +[2018-02-13T00:31:59.952] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:31:59.982] [INFO] cheese - inserting 1000 documents. first: Wikimedian and last: Puddle City Racing Lights +[2018-02-13T00:32:00.018] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:32:00.036] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:32:00.060] [INFO] cheese - inserting 1000 documents. first: Sarpsborg 08 FF and last: Portal:Oceania/Daily article/9 +[2018-02-13T00:32:00.148] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:32:00.379] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1762 and last: Yousef Alavi +[2018-02-13T00:32:00.395] [INFO] cheese - inserting 1000 documents. first: Category:Sufism in Azad Kashmir and last: Category:Members of the 17th Canadian Ministry +[2018-02-13T00:32:00.404] [INFO] cheese - inserting 1000 documents. first: Category:1923–24 domestic association football cups and last: Quest of Ki +[2018-02-13T00:32:00.422] [INFO] cheese - inserting 1000 documents. first: Template:2011 Vodacom Cup Tables and last: Alan Allport +[2018-02-13T00:32:00.451] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:32:00.453] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:32:00.479] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:32:00.485] [INFO] cheese - batch complete in: 1.289 secs +[2018-02-13T00:32:00.507] [INFO] cheese - inserting 1000 documents. first: Template:By-elections to the 38th UK Parliament and last: Dayton–Campbell Historic District +[2018-02-13T00:32:00.599] [INFO] cheese - inserting 1000 documents. first: Bony semicircular canals and last: Wikipedia:Articles for deletion/Honestforum +[2018-02-13T00:32:00.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Deletion sorting/Hockey and last: Wikipedia:Miscellany for deletion/User:Abd/JzG +[2018-02-13T00:32:00.616] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:32:00.677] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:32:00.702] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:32:00.936] [INFO] cheese - inserting 1000 documents. first: Home Park (Atlanta) and last: ⎪ +[2018-02-13T00:32:01.000] [INFO] cheese - inserting 1000 documents. first: Calcipotriene 0.005% and Betamethasone Dipropionate 0.064% Foam and last: Latin Patriarchate of Ethiopia +[2018-02-13T00:32:01.046] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:32:01.096] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:32:01.336] [INFO] cheese - inserting 1000 documents. first: SV Estelle and last: Etang de brouquenat +[2018-02-13T00:32:01.394] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:32:01.427] [INFO] cheese - inserting 1000 documents. first: Ellenbrook (disambiguation) and last: Paul Hufford +[2018-02-13T00:32:01.467] [INFO] cheese - inserting 1000 documents. first: Scapel and last: Hallelujah(Single) +[2018-02-13T00:32:01.478] [INFO] cheese - inserting 1000 documents. first: Viktor Zuckerkandl and last: Jenny Jerome +[2018-02-13T00:32:01.509] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T00:32:01.543] [INFO] cheese - inserting 1000 documents. first: Latin Patriarch of Ethiopia and last: Elshan Rzazade +[2018-02-13T00:32:01.603] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T00:32:01.607] [INFO] cheese - inserting 1000 documents. first: ⎫ and last: Harukazechan +[2018-02-13T00:32:01.621] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T00:32:01.634] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:32:01.690] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:32:01.821] [INFO] cheese - inserting 1000 documents. first: List of mammals and last: Greatest Hits III +[2018-02-13T00:32:01.960] [INFO] cheese - batch complete in: 1.475 secs +[2018-02-13T00:32:02.016] [INFO] cheese - inserting 1000 documents. first: Lac de goria and last: Gokū no Daibōken +[2018-02-13T00:32:02.072] [INFO] cheese - inserting 1000 documents. first: Eastern architectural history and last: Lucija Zaninović +[2018-02-13T00:32:02.169] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:32:02.184] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:32:02.323] [INFO] cheese - inserting 1000 documents. first: Concerti Grossi, Op. 3 (Handel) and last: Johnny Aardvark +[2018-02-13T00:32:02.355] [INFO] cheese - inserting 1000 documents. first: Jogiya (disambiguation) and last: List of power plants in Hong Kong +[2018-02-13T00:32:02.368] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:32:02.370] [INFO] cheese - inserting 1000 documents. first: Maryland Route 304 and last: File:Burdett, Alberta, Canada Location.png +[2018-02-13T00:32:02.436] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:32:02.452] [INFO] cheese - inserting 1000 documents. first: Voss Veksel- og Landmandsbank ASA and last: Pugh's Mill Covered Bridge +[2018-02-13T00:32:02.470] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:32:02.571] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T00:32:02.834] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in San Luis Obispo County, California and last: Neamblysomus +[2018-02-13T00:32:02.857] [INFO] cheese - inserting 1000 documents. first: File:Madhumati 2013.jpg and last: Escherichia coli endodeoxyribonuclease +[2018-02-13T00:32:02.901] [INFO] cheese - inserting 1000 documents. first: Ferrocarril de Chihuahua al Pacifico and last: Coline Mattel +[2018-02-13T00:32:02.905] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:32:02.945] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:32:02.998] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:32:03.013] [INFO] cheese - inserting 1000 documents. first: Category:Tailless delta-wing aircraft and last: Peace Sign (song) +[2018-02-13T00:32:03.035] [INFO] cheese - inserting 1000 documents. first: Bahurim and last: Churchill, Ontario +[2018-02-13T00:32:03.077] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:32:03.097] [INFO] cheese - inserting 1000 documents. first: Eleutherodactylus gossei and last: Pristimantis serendipitus +[2018-02-13T00:32:03.122] [INFO] cheese - inserting 1000 documents. first: Category:Thai musical instruments and last: Dustbin +[2018-02-13T00:32:03.150] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T00:32:03.183] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:32:03.201] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:32:03.383] [INFO] cheese - inserting 1000 documents. first: Red or black and last: C16H9NO2 +[2018-02-13T00:32:03.427] [INFO] cheese - inserting 1000 documents. first: Template:LDS Temple/Rio de Janeiro Brazil Temple and last: Ames, Iowa metropolitan area +[2018-02-13T00:32:03.433] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:32:03.441] [INFO] cheese - inserting 1000 documents. first: German submarine UC 4 and last: Wikipedia:Sockpuppet investigations/Rave92/Archive +[2018-02-13T00:32:03.499] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:32:03.504] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:32:03.534] [INFO] cheese - inserting 1000 documents. first: Peace Sign (Rick Ross song) and last: Jakub Bargiełowski +[2018-02-13T00:32:03.594] [INFO] cheese - inserting 1000 documents. first: Pristimantis shrevei and last: Physalaemus barbouri +[2018-02-13T00:32:03.597] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:32:03.643] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:32:03.820] [INFO] cheese - inserting 1000 documents. first: Three principles of the people and last: Capital punishment in sri lanka +[2018-02-13T00:32:03.867] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:32:03.876] [INFO] cheese - inserting 1000 documents. first: Gazdunuiyeh and last: United States House of Representatives elections in Maine, 1898 +[2018-02-13T00:32:03.967] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:32:03.971] [INFO] cheese - inserting 1000 documents. first: Nitropyrene and last: Yalegoda +[2018-02-13T00:32:03.971] [INFO] cheese - inserting 1000 documents. first: My Side of Your Window and last: Iodotyrosine deiodinase +[2018-02-13T00:32:04.054] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:32:04.044] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:32:04.234] [INFO] cheese - inserting 1000 documents. first: Physalaemus fuscomaculatus and last: Core (India) +[2018-02-13T00:32:04.236] [INFO] cheese - inserting 1000 documents. first: After Love (1948 film) and last: Wikipedia:Sockpuppet investigations/Taichi1 +[2018-02-13T00:32:04.288] [INFO] cheese - inserting 1000 documents. first: Churchville, Ontario and last: Intercal +[2018-02-13T00:32:04.303] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:32:04.313] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:32:04.441] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T00:32:04.536] [INFO] cheese - inserting 1000 documents. first: Peerage of England and Ireland in 1350 and last: File:Ceramichill 4.jpg +[2018-02-13T00:32:04.623] [INFO] cheese - inserting 1000 documents. first: Assyrian Religion and last: Wikipedia:Articles for deletion/Axototl +[2018-02-13T00:32:04.628] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:32:04.713] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:32:04.920] [INFO] cheese - inserting 1000 documents. first: Hettigammedda and last: File:Inca scene vidunderlige kartoffel.png +[2018-02-13T00:32:04.961] [INFO] cheese - inserting 1000 documents. first: File:Lily Allen - The Fear.png and last: Ho-Pei Circuit +[2018-02-13T00:32:04.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Old-time Base Ball articles by quality statistics and last: Scutiger brevipes +[2018-02-13T00:32:04.997] [INFO] cheese - inserting 1000 documents. first: Category:Tucker family and last: Vinda International Holdings +[2018-02-13T00:32:05.012] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T00:32:05.070] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:32:05.099] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:32:05.104] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T00:32:05.202] [INFO] cheese - inserting 1000 documents. first: Payson, Arizona micropolitan area and last: Mazra'eh-ye Shahid Beheshti +[2018-02-13T00:32:05.285] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:32:05.410] [INFO] cheese - inserting 1000 documents. first: Marquee and last: Friedrich Ludwig, Fürst zu Hohenlohe-Ingelfingen +[2018-02-13T00:32:05.494] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:32:05.528] [INFO] cheese - inserting 1000 documents. first: The Del Satins and last: Luzon narrow-mouthed frog +[2018-02-13T00:32:05.573] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:32:05.578] [INFO] cheese - inserting 1000 documents. first: Ho-pei circuit and last: Hinnanit +[2018-02-13T00:32:05.620] [INFO] cheese - inserting 1000 documents. first: Template:Kaitseväe harjutusväljad and last: Lactarius (Lactariidae) +[2018-02-13T00:32:05.635] [INFO] cheese - inserting 1000 documents. first: International emergency medicine and last: The Moss +[2018-02-13T00:32:05.639] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:32:05.654] [INFO] cheese - inserting 1000 documents. first: List of Lincoln City F.C. players (25-99 appearances) and last: Zbu language +[2018-02-13T00:32:05.686] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:32:05.702] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:32:05.735] [INFO] cheese - batch complete in: 1.294 secs +[2018-02-13T00:32:05.757] [INFO] cheese - inserting 1000 documents. first: Georgia marble and last: Crownies +[2018-02-13T00:32:05.823] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:32:05.920] [INFO] cheese - inserting 1000 documents. first: Kaloula rigida and last: Volcano clawed frog +[2018-02-13T00:32:05.995] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:32:06.011] [INFO] cheese - inserting 1000 documents. first: Bjørkelangen and last: Lockheed weapons scandal +[2018-02-13T00:32:06.087] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/zachimalawi.blogspot.fi and last: Category:Films directed by Robert Bibal +[2018-02-13T00:32:06.109] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:32:06.164] [INFO] cheese - inserting 1000 documents. first: Torn meniscus and last: Category:Gallaudet University people +[2018-02-13T00:32:06.217] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:32:06.254] [INFO] cheese - inserting 1000 documents. first: Showu language and last: Category:1935 in Greek sport +[2018-02-13T00:32:06.338] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:32:06.388] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:32:06.441] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2011 January 15 and last: Harold Hippisley +[2018-02-13T00:32:06.541] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:32:06.599] [INFO] cheese - inserting 1000 documents. first: The Cyclops (film) and last: Category:Treasure troves of Italy +[2018-02-13T00:32:06.748] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:32:06.847] [INFO] cheese - inserting 1000 documents. first: Category:People from Korça and last: Lombard Tuscany +[2018-02-13T00:32:06.903] [INFO] cheese - inserting 1000 documents. first: Ulrich von Brockdorff-Rantzau and last: The Legend Of Zelda: Oracle of Ages +[2018-02-13T00:32:06.921] [INFO] cheese - inserting 1000 documents. first: Desenchantee and last: Wikipedia:Articles for deletion/Monica François +[2018-02-13T00:32:06.948] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:32:07.077] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T00:32:07.105] [INFO] cheese - batch complete in: 1.37 secs +[2018-02-13T00:32:07.142] [INFO] cheese - inserting 1000 documents. first: Category:1930 in Greek sport and last: UFO sightings in India +[2018-02-13T00:32:07.289] [INFO] cheese - inserting 1000 documents. first: Percival hall and last: Portal:United States Air Force/picture/2009March +[2018-02-13T00:32:07.300] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:32:07.414] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T00:32:07.459] [INFO] cheese - inserting 1000 documents. first: Kåre Karlsson and last: Katana Divisional Secretariat +[2018-02-13T00:32:07.546] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T00:32:07.671] [INFO] cheese - inserting 1000 documents. first: Michael Audreson and last: Sanctuary of the Madonna di San Luca +[2018-02-13T00:32:07.760] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T00:32:07.804] [INFO] cheese - inserting 1000 documents. first: C.K. Colley and last: Category:Pegnitz basin +[2018-02-13T00:32:07.843] [INFO] cheese - inserting 1000 documents. first: Hecla, Kentucky and last: Astoria, Oregon micropolitan area +[2018-02-13T00:32:07.878] [INFO] cheese - inserting 1000 documents. first: Pete Lesperance and last: The Long Arm of Looney Coote +[2018-02-13T00:32:07.890] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T00:32:07.895] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:32:07.970] [INFO] cheese - inserting 1000 documents. first: Ruta Bloomfield and last: Department of the Environment, Transport and the Regions +[2018-02-13T00:32:08.013] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T00:32:08.045] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:32:08.331] [INFO] cheese - inserting 1000 documents. first: Phnum Srok District and last: Ptychadena wadei +[2018-02-13T00:32:08.370] [INFO] cheese - inserting 1000 documents. first: Kelaniya Divisional Secretariat and last: Koren Jelila Yal +[2018-02-13T00:32:08.388] [INFO] cheese - inserting 1000 documents. first: Laramie, Wyoming micropolitan area and last: Anton Šoltis +[2018-02-13T00:32:08.419] [INFO] cheese - inserting 1000 documents. first: Last House on the Left and last: Voronoi diagrams +[2018-02-13T00:32:08.420] [INFO] cheese - inserting 1000 documents. first: Category:Merchant ships of Fiji and last: File:EastBayPioneers.png +[2018-02-13T00:32:08.437] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:32:08.449] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:32:08.499] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T00:32:08.526] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:32:08.609] [INFO] cheese - batch complete in: 1.504 secs +[2018-02-13T00:32:08.699] [INFO] cheese - inserting 1000 documents. first: Fenstock and last: USS Winifred +[2018-02-13T00:32:08.802] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:32:08.840] [INFO] cheese - inserting 1000 documents. first: Derrick Alexander (wide receiver) and last: Dj Friction +[2018-02-13T00:32:08.884] [INFO] cheese - inserting 1000 documents. first: African bullfrog and last: Category:Staurois +[2018-02-13T00:32:08.965] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T00:32:08.967] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:32:09.174] [INFO] cheese - inserting 1000 documents. first: Trichoclystis peregrina and last: Template:EB1911 poster/sandbox +[2018-02-13T00:32:09.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2015 November 19 and last: Peru at the 2017 World Games +[2018-02-13T00:32:09.243] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:32:09.291] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:32:09.357] [INFO] cheese - inserting 1000 documents. first: Koren Jelila and last: IsDate +[2018-02-13T00:32:09.380] [INFO] cheese - inserting 1000 documents. first: Wörterbuch der ägyptischen Sprache and last: Papua conflict +[2018-02-13T00:32:09.425] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:32:09.471] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T00:32:09.611] [INFO] cheese - inserting 1000 documents. first: Staurois natator and last: Kita-Asahikawa Freight Terminal +[2018-02-13T00:32:09.724] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:32:09.755] [INFO] cheese - inserting 1000 documents. first: Black Lake Dene Nation and last: David C. Steinmetz +[2018-02-13T00:32:09.771] [INFO] cheese - inserting 1000 documents. first: Treaty of San Ildefonse and last: Broadcasting, Entertainment, Cinematograph and Theatre Union +[2018-02-13T00:32:09.805] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:32:09.845] [INFO] cheese - inserting 1000 documents. first: Club Portugalete and last: Deutsche Volksunion +[2018-02-13T00:32:09.878] [INFO] cheese - batch complete in: 1.269 secs +[2018-02-13T00:32:09.896] [INFO] cheese - inserting 1000 documents. first: Zhang Chunzhen and last: A4135 +[2018-02-13T00:32:09.970] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T00:32:09.996] [INFO] cheese - inserting 1000 documents. first: File:TheRaceOfTheTiger.jpg and last: Callum Lancaster +[2018-02-13T00:32:10.027] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:32:10.107] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:32:10.213] [INFO] cheese - inserting 1000 documents. first: Frank Rooney and last: Guadahortuna, Spain +[2018-02-13T00:32:10.251] [INFO] cheese - inserting 1000 documents. first: Category:1977 in Pakistani sport and last: Compagnie des Forges et Chantiers de la Méditerranée +[2018-02-13T00:32:10.278] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:32:10.308] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:32:10.463] [INFO] cheese - inserting 1000 documents. first: Architects in fiction and last: Thomas Christie +[2018-02-13T00:32:10.539] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:32:10.572] [INFO] cheese - inserting 1000 documents. first: A4138 and last: George C Beresford +[2018-02-13T00:32:10.627] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:32:10.714] [INFO] cheese - inserting 1000 documents. first: Carakale Brewing Company and last: File:Devendra Banhart - Mala.jpg +[2018-02-13T00:32:10.730] [INFO] cheese - inserting 1000 documents. first: List of triumphal arches (provincial) and last: Dvals +[2018-02-13T00:32:10.760] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:32:10.801] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:32:10.826] [INFO] cheese - inserting 1000 documents. first: Q'umirqucha (Q'umir Qucha) and last: Convertible husbandry +[2018-02-13T00:32:10.900] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:32:10.908] [INFO] cheese - inserting 1000 documents. first: Category:People from Porédaka and last: Georgia State Route 342 +[2018-02-13T00:32:10.970] [INFO] cheese - inserting 1000 documents. first: Marist College (disambiguation) and last: Template:Islands of the Clyde +[2018-02-13T00:32:10.971] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:32:11.008] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:32:11.140] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topic outline/Drafts/Topic outline of Samoa and last: Czarne Pustkowie +[2018-02-13T00:32:11.190] [INFO] cheese - inserting 1000 documents. first: Beretta 9000S Type F40 and last: Mohammed Neguib +[2018-02-13T00:32:11.243] [INFO] cheese - inserting 1000 documents. first: Category:Griptonite Games and last: Lucien Ceyssens +[2018-02-13T00:32:11.277] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:32:11.299] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:32:11.328] [INFO] cheese - batch complete in: 1.45 secs +[2018-02-13T00:32:11.376] [INFO] cheese - inserting 1000 documents. first: Ministry of Communications of Pakistan and last: Sound and Vision India +[2018-02-13T00:32:11.413] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:32:11.421] [INFO] cheese - inserting 1000 documents. first: Jim Cornelison and last: File:Milosevic on Trial.jpg +[2018-02-13T00:32:11.437] [INFO] cheese - inserting 1000 documents. first: Dark Canyon Wilderness and last: Decimal fraction +[2018-02-13T00:32:11.455] [INFO] cheese - inserting 1000 documents. first: Thornburg Middle School and last: Rufous-bellied nighthawk +[2018-02-13T00:32:11.473] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:32:11.500] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:32:11.558] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:32:11.709] [INFO] cheese - inserting 1000 documents. first: Częstkowo and last: Stara Dąbrowa, Pomeranian Voivodeship +[2018-02-13T00:32:11.717] [INFO] cheese - inserting 1000 documents. first: Category:1965 establishments in Albania and last: File:TheWellTemperedCriticFrye.jpg +[2018-02-13T00:32:11.752] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:32:11.764] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:32:11.820] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Great Eastern Hotel (Kolkata) and last: Petro Atlético Handball +[2018-02-13T00:32:11.852] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:32:11.899] [INFO] cheese - inserting 1000 documents. first: Edinburgh Royal Infirmary and last: Saint Helena petrel +[2018-02-13T00:32:11.932] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:32:12.027] [INFO] cheese - inserting 1000 documents. first: John Franklin Baker, Jr. and last: Wikipedia:WikiProject Spam/LinkReports/apocalypsesurvivalteam.webs.com +[2018-02-13T00:32:12.098] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:32:12.106] [INFO] cheese - inserting 1000 documents. first: Olympic Ski jumping and last: New York City Panel for Educational Policy +[2018-02-13T00:32:12.151] [INFO] cheese - inserting 1000 documents. first: Joseph Tobji and last: File:TimeAndChance.jpg +[2018-02-13T00:32:12.185] [INFO] cheese - inserting 1000 documents. first: Husayn Fawzi Alnajjar and last: Toni Bernardó +[2018-02-13T00:32:12.193] [INFO] cheese - inserting 1000 documents. first: Strzyżyno and last: Grigory Helbach +[2018-02-13T00:32:12.204] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:32:12.242] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:32:12.273] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:32:12.336] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:32:12.359] [INFO] cheese - inserting 1000 documents. first: Category:People by place and last: Phyllastrephus cerviniventris +[2018-02-13T00:32:12.428] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:32:12.601] [INFO] cheese - inserting 1000 documents. first: Kornel Ujejski and last: The Merv Griffin Show +[2018-02-13T00:32:12.702] [INFO] cheese - inserting 1000 documents. first: Category:The Boston Globe people and last: Khorol'skiy +[2018-02-13T00:32:12.751] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T00:32:12.787] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:32:12.941] [INFO] cheese - inserting 1000 documents. first: Point defense and last: McLeod Center +[2018-02-13T00:32:12.976] [INFO] cheese - inserting 1000 documents. first: Alocolytoceratinae and last: Category:Hell in a Cell +[2018-02-13T00:32:13.019] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:32:13.004] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:32:13.074] [INFO] cheese - inserting 1000 documents. first: Marjorie Sigley and last: Arnd Peiffer +[2018-02-13T00:32:13.099] [INFO] cheese - inserting 1000 documents. first: Lowland tiny greenbul and last: Mental map +[2018-02-13T00:32:13.141] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:32:13.142] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:32:13.242] [INFO] cheese - inserting 1000 documents. first: Rakovac (Beočin) and last: Kala Savage +[2018-02-13T00:32:13.319] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T00:32:13.363] [INFO] cheese - inserting 1000 documents. first: Khorol'ski and last: Battle of Seven Oaks (1816) +[2018-02-13T00:32:13.417] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:32:13.472] [INFO] cheese - inserting 1000 documents. first: Shared services agreement and last: Oslo–Gardermoen +[2018-02-13T00:32:13.485] [INFO] cheese - inserting 1000 documents. first: Combined pulmonary fibrosis and emphysema and last: Category:AfC submissions by date/16 November 2009 +[2018-02-13T00:32:13.499] [INFO] cheese - inserting 1000 documents. first: Hvassaleiti and last: Lilac-crowned fruit dove +[2018-02-13T00:32:13.528] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:32:13.527] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:32:13.565] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:32:13.597] [INFO] cheese - inserting 1000 documents. first: Nadia Ivonne Lopez and last: Gene Littles +[2018-02-13T00:32:13.628] [INFO] cheese - inserting 1000 documents. first: International political economy and last: Youth work +[2018-02-13T00:32:13.645] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:32:13.696] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T00:32:13.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Juan Gossaín and last: File:Belle Le Grand poster.jpg +[2018-02-13T00:32:13.761] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:32:13.810] [INFO] cheese - inserting 1000 documents. first: Ore no Kanojo and last: Turkmenian Weasel +[2018-02-13T00:32:13.856] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:32:13.899] [INFO] cheese - inserting 1000 documents. first: Ptilinopus rarotongensis and last: Stephen Hytner +[2018-02-13T00:32:13.911] [INFO] cheese - inserting 1000 documents. first: Tâmega river and last: Sleep clock +[2018-02-13T00:32:13.943] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:32:13.955] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/24 November 2009 and last: The Cameron Files: Pharaoh's Curse +[2018-02-13T00:32:13.972] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:32:14.060] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:32:14.119] [INFO] cheese - inserting 1000 documents. first: List of Nigerian jurist and last: Template:Did you know nominations/Gärdslösa Church +[2018-02-13T00:32:14.155] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:32:14.160] [INFO] cheese - inserting 1000 documents. first: David michael maurer and last: 2006 in Swiss music +[2018-02-13T00:32:14.246] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:32:14.310] [INFO] cheese - inserting 1000 documents. first: File:Fire & Movement magazine, 10th anniversary edition, number 49, July-Aug 1986, cover page, Trial of Strength.jpg and last: Dorin Recean +[2018-02-13T00:32:14.355] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:32:14.361] [INFO] cheese - inserting 1000 documents. first: Vitali class and last: Alcippe pyrrhoptera +[2018-02-13T00:32:14.404] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:32:14.485] [INFO] cheese - inserting 1000 documents. first: Vanderkaay and last: Political parties in Dominican Republic +[2018-02-13T00:32:14.538] [INFO] cheese - inserting 1000 documents. first: Joel Bennett and last: Jim Steranko bibliography +[2018-02-13T00:32:14.570] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:32:14.601] [INFO] cheese - inserting 1000 documents. first: Portal:Liquor/Header and last: Adreview +[2018-02-13T00:32:14.662] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:32:14.713] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:32:14.828] [INFO] cheese - inserting 1000 documents. first: Chien Chang and last: Category:Antiques shows in the United States +[2018-02-13T00:32:14.858] [INFO] cheese - inserting 1000 documents. first: Spectacled fulvetta and last: Ray Gabelich +[2018-02-13T00:32:14.875] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:32:14.877] [INFO] cheese - inserting 1000 documents. first: Ella Grasso and last: Adorno family +[2018-02-13T00:32:14.925] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:32:14.966] [INFO] cheese - batch complete in: 1.27 secs +[2018-02-13T00:32:15.136] [INFO] cheese - inserting 1000 documents. first: List of TIME Magazine's 100 most influential people of the 20th century and last: Syro-Malankarese Catholic Church +[2018-02-13T00:32:15.195] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Chemicals/Log/2009-02-24 and last: Prince of Al Zengi Dynasty +[2018-02-13T00:32:15.202] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwe education navigational boxes and last: Malaysian Australian +[2018-02-13T00:32:15.205] [INFO] cheese - inserting 1000 documents. first: Graceanna Lewis and last: Wikipedia:Articles for deletion/Lewis Nicholls +[2018-02-13T00:32:15.263] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T00:32:15.328] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:32:15.336] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:32:15.323] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:32:15.418] [INFO] cheese - inserting 1000 documents. first: COSPAR ID and last: Snout radical +[2018-02-13T00:32:15.500] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:32:15.670] [INFO] cheese - inserting 1000 documents. first: Government of Manitoba and last: Campylorhamphus falcularius +[2018-02-13T00:32:15.723] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:32:15.794] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of Mower County, Minnesota and last: ABS-CBN Publishing, Inc. +[2018-02-13T00:32:15.814] [INFO] cheese - inserting 1000 documents. first: German Occupation and last: Smat +[2018-02-13T00:32:15.831] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:32:15.852] [INFO] cheese - inserting 1000 documents. first: Category:1298 establishments in England and last: Dinosaurichnium +[2018-02-13T00:32:15.875] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:32:15.894] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:32:15.909] [INFO] cheese - inserting 1000 documents. first: Portal:Film in the United States/Projects and last: Gulf of Gwadar +[2018-02-13T00:32:15.935] [INFO] cheese - inserting 1000 documents. first: Mike Howlett and last: Fall of France +[2018-02-13T00:32:15.953] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:32:15.977] [INFO] cheese - inserting 1000 documents. first: Greene Washington Caldwell and last: Namhae Chemical Corporation +[2018-02-13T00:32:16.003] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T00:32:16.030] [INFO] cheese - inserting 1000 documents. first: Campylorhamphus and last: Milos Marić +[2018-02-13T00:32:16.028] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:32:16.101] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:32:16.276] [INFO] cheese - inserting 1000 documents. first: St. Elizabeth Seton School (Naples, Florida) and last: Oklahoma Mansion +[2018-02-13T00:32:16.277] [INFO] cheese - inserting 1000 documents. first: Frances James and last: Cramer V +[2018-02-13T00:32:16.307] [INFO] cheese - inserting 1000 documents. first: Kang Mee-sun and last: File:ITV Hub Logo.png +[2018-02-13T00:32:16.309] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:32:16.311] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:32:16.354] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:32:16.466] [INFO] cheese - inserting 1000 documents. first: File:Private party album.jpg and last: Template:Did you know nominations/Heroes for Sale (Andy Mineo album) +[2018-02-13T00:32:16.534] [INFO] cheese - inserting 1000 documents. first: Lesser green leafbird and last: Fidelma Healy Eames +[2018-02-13T00:32:16.536] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:32:16.627] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:32:16.652] [INFO] cheese - inserting 1000 documents. first: Football in South Australia and last: Soul Sonic Force +[2018-02-13T00:32:16.708] [INFO] cheese - inserting 1000 documents. first: Cramer V (statistics) and last: Farra Design Center +[2018-02-13T00:32:16.714] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Wilkin County, Minnesota and last: Ireland national rugby league team match results +[2018-02-13T00:32:16.720] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:32:16.758] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:32:16.771] [INFO] cheese - inserting 1000 documents. first: Owen Coffin and last: Hendrickson (disambiguation) +[2018-02-13T00:32:16.775] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:32:16.841] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:32:16.853] [INFO] cheese - inserting 1000 documents. first: Two-seam fastball and last: Cael Sanderson +[2018-02-13T00:32:16.880] [INFO] cheese - inserting 1000 documents. first: Category:Polish South African and last: Category:Wetlands of the Gambia +[2018-02-13T00:32:16.926] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:32:16.957] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:32:17.027] [INFO] cheese - inserting 1000 documents. first: Radomil River and last: Cpuz +[2018-02-13T00:32:17.084] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:32:17.159] [INFO] cheese - inserting 1000 documents. first: Charles Morgan Williams and last: Minuscule 819 (Gregory-Aland) +[2018-02-13T00:32:17.184] [INFO] cheese - inserting 1000 documents. first: Category:People from Ennedi-Ouest Region and last: Isopogon uncinatus +[2018-02-13T00:32:17.208] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:32:17.232] [INFO] cheese - inserting 1000 documents. first: Dynamic data and last: Palais Mollard-Clary +[2018-02-13T00:32:17.240] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:32:17.268] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic groups in Pittsburgh and last: Cerro Sentilo +[2018-02-13T00:32:17.304] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:32:17.318] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:32:17.352] [INFO] cheese - inserting 1000 documents. first: Hb S and last: Category:21st century in Zagreb +[2018-02-13T00:32:17.401] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:32:17.522] [INFO] cheese - inserting 1000 documents. first: Delichon nipalense and last: Euneornis campestris +[2018-02-13T00:32:17.627] [INFO] cheese - inserting 1000 documents. first: Essex Church and last: File:Secondary Music School in Tuzla.jpg +[2018-02-13T00:32:17.649] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:32:17.690] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:32:17.709] [INFO] cheese - inserting 1000 documents. first: Job Shadowing and last: August Imgard +[2018-02-13T00:32:17.746] [INFO] cheese - inserting 1000 documents. first: Zuph and last: Sacix +[2018-02-13T00:32:17.750] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:32:17.752] [INFO] cheese - inserting 1000 documents. first: Category:Women philatelists and last: Draft:Ninth generation of video game consoles +[2018-02-13T00:32:17.802] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:32:17.816] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:32:17.826] [INFO] cheese - inserting 1000 documents. first: Bert Boeckmann and last: Atatürk Int'l Airport +[2018-02-13T00:32:17.855] [INFO] cheese - inserting 1000 documents. first: Lump In My Throat and last: File:Treebeard.jpg +[2018-02-13T00:32:17.877] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:32:17.924] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:32:17.992] [INFO] cheese - inserting 1000 documents. first: Euneornis and last: Smoke screening +[2018-02-13T00:32:18.051] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:32:18.123] [INFO] cheese - inserting 1000 documents. first: Category:1950s in Iceland and last: The Seventh Curse (film) +[2018-02-13T00:32:18.170] [INFO] cheese - inserting 1000 documents. first: Boston Bombings and last: Absaroka (state) +[2018-02-13T00:32:18.176] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:32:18.193] [INFO] cheese - inserting 1000 documents. first: Fulvio Caccia and last: Wikipedia:Reference desk/Archives/Computing/2015 November 25 +[2018-02-13T00:32:18.225] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:32:18.264] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:32:18.342] [INFO] cheese - inserting 1000 documents. first: Ataturk Int'l Airport and last: File:BurgerTime arcadeflyer.png +[2018-02-13T00:32:18.381] [INFO] cheese - inserting 1000 documents. first: LUCT and last: Black-and-rufous swallow +[2018-02-13T00:32:18.399] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:32:18.422] [INFO] cheese - inserting 1000 documents. first: Ү and last: List of tropical cyclone spawned tornadoes +[2018-02-13T00:32:18.421] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:32:18.496] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:32:18.609] [INFO] cheese - inserting 1000 documents. first: Stanley Cowie and last: National Register of Historic Places listings in Clinton County, Michigan +[2018-02-13T00:32:18.636] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2015 December 2 and last: Category:Sunset Boulevard (Los Angeles) +[2018-02-13T00:32:18.660] [INFO] cheese - inserting 1000 documents. first: Category:American female serial killers and last: Recife Dollabarat +[2018-02-13T00:32:18.704] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:32:18.707] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:32:18.769] [INFO] cheese - inserting 1000 documents. first: BB&T Ballpark at Historic Bowman Field and last: GNB +[2018-02-13T00:32:18.796] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:32:18.897] [INFO] cheese - inserting 1000 documents. first: Hirundo nigrorufa and last: Drake (elm cultivar) +[2018-02-13T00:32:18.911] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T00:32:18.980] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:32:18.983] [INFO] cheese - inserting 1000 documents. first: Birgitta Johansson and last: Richard Enslen +[2018-02-13T00:32:19.098] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:32:19.308] [INFO] cheese - inserting 1000 documents. first: David Higgins (composer) and last: Luxembourg National Division +[2018-02-13T00:32:19.375] [INFO] cheese - inserting 1000 documents. first: Oakview and last: Abatski +[2018-02-13T00:32:19.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple chlorpromazine and last: Category:People from Lacs District +[2018-02-13T00:32:19.393] [INFO] cheese - inserting 1000 documents. first: List of Michigan State Historic Sites in Clinton County and last: Pinyon Canyon Maneuver Site +[2018-02-13T00:32:19.393] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T00:32:19.463] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:32:19.497] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:32:19.510] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:32:19.569] [INFO] cheese - inserting 1000 documents. first: Richard Gholson and last: Category:Valleys of South Africa +[2018-02-13T00:32:19.644] [INFO] cheese - inserting 1000 documents. first: Albert runcorn and last: Category:B-Class Low-importance Pornography articles +[2018-02-13T00:32:19.654] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:32:19.696] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:32:19.822] [INFO] cheese - inserting 1000 documents. first: Lolth and last: Western front +[2018-02-13T00:32:19.872] [INFO] cheese - inserting 1000 documents. first: Eric B. Minier and last: Seven years’ war +[2018-02-13T00:32:19.880] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T00:32:19.907] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:32:19.918] [INFO] cheese - inserting 1000 documents. first: Abatskii and last: Pepdidyl carboxyamidase +[2018-02-13T00:32:19.955] [INFO] cheese - inserting 1000 documents. first: Bromley Rock Provincial Park and last: Ja'afar Abdul El Hakh +[2018-02-13T00:32:19.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Freud and Religion and last: Cowper ministry (1870) +[2018-02-13T00:32:19.967] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:32:19.974] [INFO] cheese - inserting 1000 documents. first: Huon melidectes and last: Myioborus pariae +[2018-02-13T00:32:20.005] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T00:32:20.009] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:32:20.030] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:32:20.069] [INFO] cheese - inserting 1000 documents. first: File:Shimkent hôtel poster.jpg and last: Rector (college) +[2018-02-13T00:32:20.121] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:32:20.333] [INFO] cheese - inserting 1000 documents. first: Beach starwort and last: 2014 CS Warsaw Cup +[2018-02-13T00:32:20.373] [INFO] cheese - inserting 1000 documents. first: Baird's flycatcher and last: Nectarinia thomensis +[2018-02-13T00:32:20.436] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:32:20.451] [INFO] cheese - inserting 1000 documents. first: Bidan, Kuhbanan and last: Category:Fichtel Mountains +[2018-02-13T00:32:20.479] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:32:20.607] [INFO] cheese - inserting 1000 documents. first: Mohamed Kassas and last: Yin Ts'ang +[2018-02-13T00:32:20.651] [INFO] cheese - inserting 1000 documents. first: James Boswell (disambiguation) and last: File:Donwinslowof1.jpg +[2018-02-13T00:32:20.682] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:32:20.724] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:32:20.761] [INFO] cheese - inserting 1000 documents. first: Gastrophryne and last: Status of Women Canada +[2018-02-13T00:32:20.765] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:32:20.869] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:32:20.982] [INFO] cheese - inserting 1000 documents. first: Imperial pint and last: The Buzz +[2018-02-13T00:32:21.093] [INFO] cheese - batch complete in: 1.213 secs +[2018-02-13T00:32:21.166] [INFO] cheese - inserting 1000 documents. first: Ursula's sunbird and last: Honor Code (NCIS) +[2018-02-13T00:32:21.214] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:32:21.262] [INFO] cheese - inserting 1000 documents. first: Avalon Landing and last: Wikipedia:Suspected copyright violations/2011-01-25 +[2018-02-13T00:32:21.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Close and last: Sociotechnical +[2018-02-13T00:32:21.329] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:32:21.365] [INFO] cheese - inserting 1000 documents. first: 2016 Hobart International and last: Category:Sub-prefectures of Nawa Region +[2018-02-13T00:32:21.374] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:32:21.449] [INFO] cheese - inserting 1000 documents. first: Conoppia palmicinctum and last: File:PoultryBTS.jpg +[2018-02-13T00:32:21.504] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T00:32:21.551] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:32:21.600] [INFO] cheese - inserting 1000 documents. first: Metropolitan Police Act 1839 and last: Arkansas razorback +[2018-02-13T00:32:21.715] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:32:21.786] [INFO] cheese - inserting 1000 documents. first: Valea Boului River (Vasilatu) and last: Lorzem +[2018-02-13T00:32:21.852] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:32:21.989] [INFO] cheese - inserting 1000 documents. first: Socio-technical and last: File:MapleCore Company Logo in Red.jpg +[2018-02-13T00:32:21.996] [INFO] cheese - inserting 1000 documents. first: Venus (Belgian band) and last: Category:Beer brewing companies based in Utah +[2018-02-13T00:32:22.002] [INFO] cheese - inserting 1000 documents. first: Bill Cahr and last: Sanxia Old Street +[2018-02-13T00:32:22.076] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:32:22.082] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:32:22.079] [INFO] cheese - inserting 1000 documents. first: Thai Border Patrol Police and last: Forever Mery +[2018-02-13T00:32:22.116] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:32:22.158] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:32:22.238] [INFO] cheese - inserting 1000 documents. first: Lombardi Trophy and last: Felipe Massa +[2018-02-13T00:32:22.357] [INFO] cheese - batch complete in: 1.264 secs +[2018-02-13T00:32:22.394] [INFO] cheese - inserting 1000 documents. first: Phrygilus dorsalis and last: Spot-breasted scimitar babbler +[2018-02-13T00:32:22.434] [INFO] cheese - inserting 1000 documents. first: File:Interior of Biosphere 2.jpg and last: October 31, 2004 +[2018-02-13T00:32:22.459] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:32:22.535] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:32:22.597] [INFO] cheese - inserting 1000 documents. first: PMPC Star Award for Best Drama Actor and Actress and last: Category:Portugal government stubs +[2018-02-13T00:32:22.612] [INFO] cheese - inserting 1000 documents. first: Joseph Eron Irenas and last: Tunable resistive pulse sensing +[2018-02-13T00:32:22.648] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:32:22.666] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:32:22.736] [INFO] cheese - inserting 1000 documents. first: County roads in Ontario and last: Płowce, Warmian-Masurian Voivodeship +[2018-02-13T00:32:22.797] [INFO] cheese - inserting 1000 documents. first: WQBC and last: Wikipedia:London Gazette Index/16/1676 +[2018-02-13T00:32:22.814] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:32:22.875] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:32:22.941] [INFO] cheese - inserting 1000 documents. first: Suyai Steinhaue and last: MediaWiki:HighlightEditSections.js +[2018-02-13T00:32:22.992] [INFO] cheese - inserting 1000 documents. first: Angelo Cannavacciuolo and last: Thomas Gerald Pickavance +[2018-02-13T00:32:23.020] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:32:23.076] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:32:23.229] [INFO] cheese - inserting 1000 documents. first: To Young Men Only and last: R536 road (South Africa) +[2018-02-13T00:32:23.283] [INFO] cheese - inserting 1000 documents. first: Eu four freedoms and last: Gunkanjima +[2018-02-13T00:32:23.322] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:32:23.405] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:32:23.415] [INFO] cheese - inserting 1000 documents. first: Rogale, Ełk County and last: File:UMPIRING AT THE OLD TRAFFORD .jpg +[2018-02-13T00:32:23.516] [INFO] cheese - inserting 1000 documents. first: Möbius mu function and last: Interstate 696 +[2018-02-13T00:32:23.611] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:32:23.667] [INFO] cheese - inserting 1000 documents. first: File:A Day Late and a Dollar Short (The Queers album - cover art).jpg and last: Category:Central Coast, New South Wales geography stubs +[2018-02-13T00:32:23.687] [INFO] cheese - batch complete in: 1.329 secs +[2018-02-13T00:32:23.758] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:32:23.802] [INFO] cheese - inserting 1000 documents. first: Bridgeport, Montgomery County, Pennsylvania and last: No. 101 Squadron IAF +[2018-02-13T00:32:23.895] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:32:23.948] [INFO] cheese - inserting 1000 documents. first: Category:1698 in music and last: Olombelona Ricky +[2018-02-13T00:32:24.003] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:32:24.092] [INFO] cheese - inserting 1000 documents. first: 2004 Tercera División play-offs and last: Category:1609 establishments by country +[2018-02-13T00:32:24.111] [INFO] cheese - inserting 1000 documents. first: Damian Johnson (broadcaster) and last: Digital Britain +[2018-02-13T00:32:24.132] [INFO] cheese - inserting 1000 documents. first: File:Port modification.JPG and last: Northern red currant +[2018-02-13T00:32:24.166] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T00:32:24.181] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:32:24.228] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T00:32:24.258] [INFO] cheese - inserting 1000 documents. first: Template:CentralCoastNSW-geo-stub and last: Borivoje Djordjević +[2018-02-13T00:32:24.328] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:32:24.349] [INFO] cheese - inserting 1000 documents. first: Mlecchita vikalpa and last: File:2005 IIHF World Championship logo.svg +[2018-02-13T00:32:24.498] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:32:24.518] [INFO] cheese - inserting 1000 documents. first: Like Father Like Son (film) and last: Category:21st-century executions by Arkansas +[2018-02-13T00:32:24.599] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:32:24.632] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg Conservatory and last: Hawk (aircraft) +[2018-02-13T00:32:24.765] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T00:32:24.776] [INFO] cheese - inserting 1000 documents. first: File:Prime Cuts Peter Lang.jpg and last: Lira Calabrese +[2018-02-13T00:32:24.838] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:32:24.851] [INFO] cheese - inserting 1000 documents. first: 嵇康 and last: Category:People from Miaoli County +[2018-02-13T00:32:24.863] [INFO] cheese - inserting 1000 documents. first: Papuan scrubwren and last: Syndactyla guttulata +[2018-02-13T00:32:24.909] [INFO] cheese - inserting 1000 documents. first: Hans ferlitsch and last: Shah of Bratpuhr +[2018-02-13T00:32:24.939] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:32:24.959] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:32:24.983] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:32:24.985] [INFO] cheese - inserting 1000 documents. first: Category:1932–33 in Turkish football and last: Chlorolestes nylephtha +[2018-02-13T00:32:25.023] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:32:25.099] [INFO] cheese - inserting 1000 documents. first: 1993 Kazakhstan Cup Final and last: Wikipedia:Wiki Ed/Connecticut College/The Net Generation (fall 2015) +[2018-02-13T00:32:25.181] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:32:25.295] [INFO] cheese - inserting 1000 documents. first: Toltec cotton rat and last: Linwood, Howard County, Maryland +[2018-02-13T00:32:25.350] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:32:25.435] [INFO] cheese - inserting 1000 documents. first: Category:Straits of Papua New Guinea and last: Sulawesi babbler +[2018-02-13T00:32:25.444] [INFO] cheese - inserting 1000 documents. first: 1976 Liberty Bowl and last: Junior Bowl +[2018-02-13T00:32:25.500] [INFO] cheese - inserting 1000 documents. first: Paul Johnson (politician) and last: Thomaston, GA Micropolitan Statistical Area +[2018-02-13T00:32:25.500] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:32:25.524] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:32:25.566] [INFO] cheese - inserting 1000 documents. first: Julia Stegner and last: Steeplecab +[2018-02-13T00:32:25.568] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:32:25.631] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:32:25.648] [INFO] cheese - inserting 1000 documents. first: Norman Nicholson and last: Papilio rutulus +[2018-02-13T00:32:25.728] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T00:32:25.743] [INFO] cheese - inserting 1000 documents. first: The Free Rider Problem and last: XHES-FM +[2018-02-13T00:32:25.808] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:32:25.818] [INFO] cheese - inserting 1000 documents. first: Xfm UK and last: Wikipedia:Peer review/Cleveland Indians/archive3 +[2018-02-13T00:32:25.888] [INFO] cheese - inserting 1000 documents. first: Trichastoma celebense and last: Starship Children's Hospital +[2018-02-13T00:32:25.888] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:32:25.911] [INFO] cheese - inserting 1000 documents. first: Grow Up (Paramore song) and last: Constituency NA-222 +[2018-02-13T00:32:25.930] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:32:25.946] [INFO] cheese - inserting 1000 documents. first: CD Arenas de Frajanas and last: Wikipedia:WikiProject Food and drink/Beverages Task Force/WikiProject Coca-Cola/Article alerts/Archive +[2018-02-13T00:32:25.970] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:32:26.040] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:32:26.115] [INFO] cheese - inserting 1000 documents. first: The Lord of the Rings: the Battle for Middle-Earth II and last: Clare Tomlinson +[2018-02-13T00:32:26.180] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:32:26.296] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2007 July 24 and last: Geometric Style +[2018-02-13T00:32:26.339] [INFO] cheese - inserting 1000 documents. first: Template:Series and sequence and last: NewtonThree +[2018-02-13T00:32:26.354] [INFO] cheese - inserting 1000 documents. first: Cadbury Eyebrows and last: Ramlat al-Sab'atayn +[2018-02-13T00:32:26.355] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:32:26.358] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Luke Castellan and last: Nutrition Education +[2018-02-13T00:32:26.400] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:32:26.427] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:32:26.441] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:32:26.499] [INFO] cheese - inserting 1000 documents. first: Phoenix (East Indiaman) and last: Wikipedia:Articles for deletion/Car dealer fraud +[2018-02-13T00:32:26.569] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:32:26.640] [INFO] cheese - inserting 1000 documents. first: Breithorn and last: Wikipedia:Incomplete lists +[2018-02-13T00:32:26.747] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T00:32:26.804] [INFO] cheese - inserting 1000 documents. first: Piculus leucolaemus and last: Tight End Ed / 'Tween a Rock & an Ed Place +[2018-02-13T00:32:26.806] [INFO] cheese - inserting 1000 documents. first: Working condition and last: C1 Hours of Work (Industry) Convention, 1919 +[2018-02-13T00:32:26.858] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:32:26.865] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:32:26.951] [INFO] cheese - inserting 1000 documents. first: List of nations by population density and last: Wikipedia:Miscellany for deletion/User:Mlindstr/Outcast +[2018-02-13T00:32:26.961] [INFO] cheese - inserting 1000 documents. first: Spotted Horse (disambiguation) and last: Wilhelm Gerstenmeier +[2018-02-13T00:32:27.003] [INFO] cheese - inserting 1000 documents. first: Robert Sampson (lawyer) and last: Olorgesailie +[2018-02-13T00:32:27.018] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:32:27.031] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:32:27.092] [INFO] cheese - inserting 1000 documents. first: Republican Party presidential primaries, 1956 and last: Wahluke +[2018-02-13T00:32:27.115] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:32:27.173] [INFO] cheese - inserting 1000 documents. first: Zell, Upper Franconia and last: Appropriation Act 1820 +[2018-02-13T00:32:27.186] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:32:27.217] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:32:27.367] [INFO] cheese - inserting 1000 documents. first: San Marino Stadium and last: Athenee Palace Hilton Hotel +[2018-02-13T00:32:27.395] [INFO] cheese - inserting 1000 documents. first: Category:Cricket grounds in the Maldives and last: Mundus, diabolus, et caro +[2018-02-13T00:32:27.414] [INFO] cheese - inserting 1000 documents. first: Classic Warfare and last: Sanal kumar sasidharan +[2018-02-13T00:32:27.414] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:32:27.447] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:32:27.481] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:32:27.604] [INFO] cheese - inserting 1000 documents. first: One If by Land (Jericho episodes) and last: Bristly Ox-Tongue +[2018-02-13T00:32:27.656] [INFO] cheese - inserting 1000 documents. first: Eureka Flag and last: The Surgeon's Mate (novel) +[2018-02-13T00:32:27.681] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:32:27.692] [INFO] cheese - inserting 1000 documents. first: Appropriation Act 1821 and last: My Ladye Nevell's Booke +[2018-02-13T00:32:27.759] [INFO] cheese - inserting 1000 documents. first: Category:Egyptologist stubs and last: President (TV series) +[2018-02-13T00:32:27.770] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:32:27.787] [INFO] cheese - batch complete in: 1.04 secs +[2018-02-13T00:32:27.846] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:32:27.877] [INFO] cheese - inserting 1000 documents. first: Mundus, diabolus et caro and last: Gilroy (surname) +[2018-02-13T00:32:27.935] [INFO] cheese - inserting 1000 documents. first: An off day game and last: Jim Evans (wide receiver) +[2018-02-13T00:32:27.962] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:32:27.982] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:32:28.117] [INFO] cheese - inserting 1000 documents. first: WCBS-TV/WCBSDT and last: Washington Legal Foundation +[2018-02-13T00:32:28.218] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:32:28.262] [INFO] cheese - inserting 1000 documents. first: Bristly Oxtongue and last: List of Billboard number-one country albums of 2004 +[2018-02-13T00:32:28.334] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:32:28.360] [INFO] cheese - inserting 1000 documents. first: La Fère and last: James 'Jim' King +[2018-02-13T00:32:28.412] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:32:28.413] [INFO] cheese - inserting 1000 documents. first: Pedro Téllez-Girón y Velasco Guzmán y Tovar and last: Connor Wilkinson +[2018-02-13T00:32:28.426] [INFO] cheese - inserting 1000 documents. first: Thomas Harcourt Ambrose Valintine and last: Ron Shuval +[2018-02-13T00:32:28.446] [INFO] cheese - inserting 1000 documents. first: Seyval Blanc and last: Edward Scanlon +[2018-02-13T00:32:28.481] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:32:28.488] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:32:28.509] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:32:28.719] [INFO] cheese - inserting 1000 documents. first: The Nutmeg of Consolation (novel) and last: Ain't Misbehaving +[2018-02-13T00:32:28.797] [INFO] cheese - inserting 1000 documents. first: Ceriani and last: Carlos Silva (hurdler) +[2018-02-13T00:32:28.800] [INFO] cheese - batch complete in: 1.013 secs +[2018-02-13T00:32:28.846] [INFO] cheese - inserting 1000 documents. first: Eddie Miro and last: Sandwell and West Birmingham Hospitals NHS Trust +[2018-02-13T00:32:28.857] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:32:28.889] [INFO] cheese - inserting 1000 documents. first: Delia Linsey King and last: File:Lost Control Cover.jpg +[2018-02-13T00:32:28.912] [INFO] cheese - inserting 1000 documents. first: Icelandic Santas and last: Roman Catholic Diocese of Cerreto Sannita +[2018-02-13T00:32:28.933] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:32:28.964] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:32:28.974] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:32:28.994] [INFO] cheese - inserting 1000 documents. first: File:FlemingsSteakhouse.png and last: Category:Cemeteries on the National Register of Historic Places in Indiana +[2018-02-13T00:32:29.033] [INFO] cheese - inserting 1000 documents. first: Template:East Lindsey (district) and last: CVAS, Jhang +[2018-02-13T00:32:29.064] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:32:29.095] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:32:29.440] [INFO] cheese - inserting 1000 documents. first: Aanpavam (TV series) and last: Hairy white oldfield aster +[2018-02-13T00:32:29.448] [INFO] cheese - inserting 1000 documents. first: Qinghua Daxue Fushu Zhongxue and last: File:Dixon IL ICRR First St Bridge1.jpg +[2018-02-13T00:32:29.466] [INFO] cheese - inserting 1000 documents. first: Philip of Nevers and last: Augustus Bartholomew +[2018-02-13T00:32:29.499] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:32:29.518] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:32:29.522] [INFO] cheese - inserting 1000 documents. first: Milwaukee Mustangs (1994-2001) and last: Andreas Meyer (civil engineer) +[2018-02-13T00:32:29.561] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:32:29.600] [INFO] cheese - inserting 1000 documents. first: Hail To The Chief and last: Vodyanoi +[2018-02-13T00:32:29.609] [INFO] cheese - inserting 1000 documents. first: Suzanne Coupal and last: Othman Aziz +[2018-02-13T00:32:29.630] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:32:29.687] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:32:29.698] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T00:32:29.780] [INFO] cheese - inserting 1000 documents. first: Aquakinisis and last: Advice Goddess +[2018-02-13T00:32:29.886] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T00:32:30.017] [INFO] cheese - inserting 1000 documents. first: 2015–16 Central Arkansas Bears men's basketball team and last: Wikipedia:Today's featured article/December 24, 2015 +[2018-02-13T00:32:30.031] [INFO] cheese - inserting 1000 documents. first: File:Cross of Gisulf, 7th century.jpg and last: Template:Widereceiver-1910s-stub +[2018-02-13T00:32:30.083] [INFO] cheese - inserting 1000 documents. first: K Street (District of Columbia) and last: David of Basra +[2018-02-13T00:32:30.117] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:32:30.151] [INFO] cheese - inserting 1000 documents. first: Category:Executed people from South Yorkshire and last: File:Main-Radweg Logo.svg +[2018-02-13T00:32:30.168] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:32:30.170] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:32:30.220] [INFO] cheese - inserting 1000 documents. first: Linguistic functions of pharynx and last: Markaszek +[2018-02-13T00:32:30.239] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:32:30.294] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:32:30.524] [INFO] cheese - inserting 1000 documents. first: Spec 4 and last: W.O. Kuhne +[2018-02-13T00:32:30.641] [INFO] cheese - inserting 1000 documents. first: The Atlas Abbey and last: Hamlet! +[2018-02-13T00:32:30.662] [INFO] cheese - inserting 1000 documents. first: CT Floquet and last: HH Hilton +[2018-02-13T00:32:30.673] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:32:30.714] [INFO] cheese - inserting 1000 documents. first: Gibichung and last: Lisp (language) +[2018-02-13T00:32:30.709] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T00:32:30.761] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:32:30.787] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:32:30.843] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Best Of UWF and last: Wikipedia:WikiProject National Register of Historic Places/Theatres +[2018-02-13T00:32:30.845] [INFO] cheese - inserting 1000 documents. first: Orville Faubus and last: Clifford Jarvis +[2018-02-13T00:32:30.852] [INFO] cheese - inserting 1000 documents. first: List of accolades received by Frida and last: Wikipedia:Articles for deletion/Nicholas Hagger (2nd nomination) +[2018-02-13T00:32:30.894] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:32:30.895] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:32:30.949] [INFO] cheese - batch complete in: 1.251 secs +[2018-02-13T00:32:31.113] [INFO] cheese - inserting 1000 documents. first: Category:Polish black-and-white films and last: Category:Philippine speculative fiction +[2018-02-13T00:32:31.162] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:32:31.167] [INFO] cheese - inserting 1000 documents. first: Jimmy Phillips (Texas) and last: Pandjeh Incident +[2018-02-13T00:32:31.210] [INFO] cheese - inserting 1000 documents. first: Packet Processing and last: Dal'eh Heydar +[2018-02-13T00:32:31.218] [INFO] cheese - inserting 1000 documents. first: 95.7 MAX-FM and last: Pattern Variables +[2018-02-13T00:32:31.218] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:32:31.255] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:32:31.266] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:32:31.335] [INFO] cheese - inserting 1000 documents. first: Willingtown Square and last: File:FrontSuperSabrina.jpg +[2018-02-13T00:32:31.339] [INFO] cheese - inserting 1000 documents. first: Category:Bridges on the National Register of Historic Places in Pennsylvania and last: European Revolution of 1848 +[2018-02-13T00:32:31.379] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:32:31.412] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:32:31.600] [INFO] cheese - inserting 1000 documents. first: Ghal'eh Heidar and last: Endomondo +[2018-02-13T00:32:31.617] [INFO] cheese - inserting 1000 documents. first: Atrial Fluter and last: Procolobus verus +[2018-02-13T00:32:31.626] [INFO] cheese - inserting 1000 documents. first: Category:Mountains and hills of the Eifel (North Rhine-Westphalia) and last: Koosharem Junction, Utah +[2018-02-13T00:32:31.631] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:32:31.689] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:32:31.730] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:32:31.819] [INFO] cheese - inserting 1000 documents. first: European Revolutions of 1848 and last: Category:1869 establishments in Wales +[2018-02-13T00:32:31.838] [INFO] cheese - inserting 1000 documents. first: One Piece: Romance Dawn Story and last: Kurashima Ayumi +[2018-02-13T00:32:31.853] [INFO] cheese - inserting 1000 documents. first: Kemijärvi and last: Arcadia (disambiguation) +[2018-02-13T00:32:31.855] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:32:31.862] [INFO] cheese - inserting 1000 documents. first: Royden Park and last: Sandycreek +[2018-02-13T00:32:31.879] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:32:31.921] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:32:31.927] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T00:32:32.089] [INFO] cheese - inserting 1000 documents. first: Recognition of same-sex unions in the British Indian Ocean Territory and last: Template:Inter-county hurlers category +[2018-02-13T00:32:32.204] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:32:32.237] [INFO] cheese - inserting 1000 documents. first: File:The Groovenians title card.png and last: Category:Philippine anthology films +[2018-02-13T00:32:32.259] [INFO] cheese - inserting 1000 documents. first: Category:Hydrocarbon solvents and last: Exilisciurus concinnus +[2018-02-13T00:32:32.306] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:32:32.328] [INFO] cheese - inserting 1000 documents. first: William Elphinstone Gordon and last: Wikipedia:WikiProject Smithsonian Institution-related +[2018-02-13T00:32:32.354] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:32:32.374] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:32:32.538] [INFO] cheese - inserting 1000 documents. first: Ebert-groener deal and last: Bangladesh Shishu Academy +[2018-02-13T00:32:32.607] [INFO] cheese - inserting 1000 documents. first: Baryshski and last: Template:Latin Extended-A +[2018-02-13T00:32:32.607] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:32:32.657] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:32:32.686] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Chandavaram Buddhist site and last: Category:Works about monarchs +[2018-02-13T00:32:32.735] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:32:32.751] [INFO] cheese - inserting 1000 documents. first: Phyllis George and last: Hsü Shih-Ch'ang +[2018-02-13T00:32:32.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of legislation sponsored by Ron Paul and last: Arnold, Illinois +[2018-02-13T00:32:32.804] [INFO] cheese - inserting 1000 documents. first: Exilisciurus and last: File:Wsop logo.png +[2018-02-13T00:32:32.848] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T00:32:32.891] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:32:32.929] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:32:33.130] [INFO] cheese - inserting 1000 documents. first: Incoherent broad band cavity enhanced absorption spectroscopy and last: El Pelon +[2018-02-13T00:32:33.190] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:32:33.216] [INFO] cheese - inserting 1000 documents. first: The Big Lebowsky and last: Munster Schools Rugby Senior Cup +[2018-02-13T00:32:33.282] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:32:33.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/siteresources.worldbank.org and last: The College of Engineering Scinces at sudan university +[2018-02-13T00:32:33.359] [INFO] cheese - inserting 1000 documents. first: HartCommon and last: Category:Generals under Liu Bei +[2018-02-13T00:32:33.392] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:32:33.401] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lightning Scientific Martial Arts and Physical Culture and last: Category:Mid-importance Batman articles +[2018-02-13T00:32:33.408] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:32:33.466] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:32:33.536] [INFO] cheese - inserting 1000 documents. first: Mickey Rooney Award and last: Inkaar (1943 film) +[2018-02-13T00:32:33.570] [INFO] cheese - inserting 1000 documents. first: Miyaji Masayuki and last: Nancy Padian +[2018-02-13T00:32:33.593] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:32:33.684] [INFO] cheese - batch complete in: 1.805 secs +[2018-02-13T00:32:33.733] [INFO] cheese - inserting 1000 documents. first: Hsü Shihch'ang and last: Pu Chou Mountain +[2018-02-13T00:32:33.756] [INFO] cheese - inserting 1000 documents. first: David Barrett (football player) and last: John Bock +[2018-02-13T00:32:33.766] [INFO] cheese - inserting 1000 documents. first: Vostochno-Prinovozemelskoye structure and last: Mike Ross +[2018-02-13T00:32:33.801] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:32:33.807] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:32:33.831] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T00:32:33.890] [INFO] cheese - inserting 1000 documents. first: Parliamentary Ombudsman and last: Patrick W. Welch +[2018-02-13T00:32:33.998] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:32:34.146] [INFO] cheese - inserting 1000 documents. first: Assa (river) and last: Scottish Boat Race +[2018-02-13T00:32:34.202] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:32:34.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SAY and last: Category:World War I shipwrecks in the Aegean Sea +[2018-02-13T00:32:34.295] [INFO] cheese - inserting 1000 documents. first: George Wilkins Kendall and last: Wikipedia:Articles for deletion/Alexander Domijan +[2018-02-13T00:32:34.326] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:32:34.348] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:32:34.352] [INFO] cheese - inserting 1000 documents. first: Gerardo Allucingoli and last: Blood-colored Woodpecker +[2018-02-13T00:32:34.426] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:32:34.436] [INFO] cheese - inserting 1000 documents. first: Mobil Cotton Bowl Classic and last: Shah, Al Gharbia +[2018-02-13T00:32:34.502] [INFO] cheese - inserting 1000 documents. first: Keshtu'iyeh and last: Defamation Bill 2012-13 +[2018-02-13T00:32:34.531] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T00:32:34.595] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:32:34.725] [INFO] cheese - inserting 1000 documents. first: List of geological features on Rhea and last: Telcordia LERG Routing Guide +[2018-02-13T00:32:34.777] [INFO] cheese - inserting 1000 documents. first: Maracaibo Lake (Bolivia) and last: Wikipedia:Articles for deletion/Geoffrey Martin (Australian mathematician) +[2018-02-13T00:32:34.779] [INFO] cheese - inserting 1000 documents. first: Dompfeil and last: Wikipedia:Articles for deletion/Seven Society, Order of the Crown and Dagger +[2018-02-13T00:32:34.791] [INFO] cheese - inserting 1000 documents. first: Crocidura flavescens and last: Second Fußball-Bundesliga 1986/87 +[2018-02-13T00:32:34.796] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T00:32:34.820] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:32:34.858] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:32:34.866] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:32:34.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Life Begins at 40 (Novel) and last: Template:Taxonomy/Ommastrephinae +[2018-02-13T00:32:34.928] [INFO] cheese - inserting 1000 documents. first: Warped Tour 2013 Tour Compilation and last: Mouftaou +[2018-02-13T00:32:34.967] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:32:34.984] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:32:34.994] [INFO] cheese - inserting 1000 documents. first: Old Coley and last: List of songs recorded by Metallica +[2018-02-13T00:32:35.063] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:32:35.275] [INFO] cheese - inserting 1000 documents. first: News and Notes and last: Hipposideros caffer +[2018-02-13T00:32:35.312] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:32:35.377] [INFO] cheese - inserting 1000 documents. first: Bl. Alanus de Rupe and last: Jacob Dingee House +[2018-02-13T00:32:35.389] [INFO] cheese - inserting 1000 documents. first: El Adoua and last: Elizabeth Burgin +[2018-02-13T00:32:35.430] [INFO] cheese - inserting 1000 documents. first: Category:Journalists from Prince Edward Island and last: Harrison HS +[2018-02-13T00:32:35.435] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:32:35.437] [INFO] cheese - inserting 1000 documents. first: Salicylic acid (plant hormone) and last: List of Perth suburbs +[2018-02-13T00:32:35.443] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:32:35.463] [INFO] cheese - inserting 1000 documents. first: Touraine wine and last: David D'Alessandro +[2018-02-13T00:32:35.495] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:32:35.539] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:32:35.556] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:32:35.619] [INFO] cheese - inserting 1000 documents. first: Agincourt, Ontario and last: Amherst Ramblers +[2018-02-13T00:32:35.727] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T00:32:35.736] [INFO] cheese - inserting 1000 documents. first: Spurred roundleaf bat and last: Rhinolophus eloquens +[2018-02-13T00:32:35.806] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:32:35.874] [INFO] cheese - inserting 1000 documents. first: Levedohori, Elis and last: Persiraja Banda +[2018-02-13T00:32:35.883] [INFO] cheese - inserting 1000 documents. first: Smooth Sailin' (Leon Bridges song) and last: Wilshire/Vermont (Los Angeles Metro station) +[2018-02-13T00:32:35.899] [INFO] cheese - inserting 1000 documents. first: Isometry (quadratic forms) and last: Category:1951 in Polish sport +[2018-02-13T00:32:35.926] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:32:35.927] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:32:35.998] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:32:36.259] [INFO] cheese - inserting 1000 documents. first: Het Lage Land and last: Category:Public libraries in Scotland +[2018-02-13T00:32:36.375] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:32:36.444] [INFO] cheese - inserting 1000 documents. first: Mobile BayBears and last: GNFS +[2018-02-13T00:32:36.468] [INFO] cheese - inserting 1000 documents. first: Executive government and last: Roger IV, Count of Foix +[2018-02-13T00:32:36.556] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:32:36.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Allied occupation of Europe (2nd nomination) and last: Category:Religious organizations established in 1924 +[2018-02-13T00:32:36.623] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T00:32:36.649] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:32:36.733] [INFO] cheese - inserting 1000 documents. first: Wilshire/Normandie (Los Angeles Metro station) and last: Taiwan Political parties +[2018-02-13T00:32:36.775] [INFO] cheese - inserting 1000 documents. first: Glaucias (physician 3rd c.BC) and last: Goode Glacier +[2018-02-13T00:32:36.781] [INFO] cheese - inserting 1000 documents. first: File:Baby don't cry cd+dvd.jpg and last: Robert C. Brack +[2018-02-13T00:32:36.786] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:32:36.828] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:32:36.832] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T00:32:37.064] [INFO] cheese - inserting 1000 documents. first: FIBA Asia Under-16 Championship for Women 2009 and last: Orkdal Church +[2018-02-13T00:32:37.071] [INFO] cheese - inserting 1000 documents. first: File:DetroitShock.png and last: Corporate Sex Offender +[2018-02-13T00:32:37.123] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:32:37.138] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:32:37.163] [INFO] cheese - inserting 1000 documents. first: Minor County cricket and last: ICAW +[2018-02-13T00:32:37.181] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Core topics/Tree and last: Volcanic Islands +[2018-02-13T00:32:37.204] [INFO] cheese - inserting 1000 documents. first: By My Side Again and last: Topic outline of Africa +[2018-02-13T00:32:37.207] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:32:37.208] [INFO] cheese - inserting 1000 documents. first: Bertinazzi and last: Rockhampton City Hall +[2018-02-13T00:32:37.233] [INFO] cheese - inserting 1000 documents. first: Behelit and last: Adelanto, CA +[2018-02-13T00:32:37.258] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:32:37.264] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:32:37.277] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:32:37.343] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:32:37.541] [INFO] cheese - inserting 1000 documents. first: File:Depeche Mode - Soothe My Soul.jpg and last: José Giménez +[2018-02-13T00:32:37.583] [INFO] cheese - inserting 1000 documents. first: Corporate Sex Offenders and last: Rabbit In The Moon +[2018-02-13T00:32:37.584] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:32:37.629] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:32:37.670] [INFO] cheese - inserting 1000 documents. first: Mitsubishi gallant and last: Suleimani +[2018-02-13T00:32:37.704] [INFO] cheese - inserting 1000 documents. first: Russian Orthodox Ecclesiastical Mission in Jerusalem and last: Category:Wikipedia sockpuppets of AshleyBird1 +[2018-02-13T00:32:37.708] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:32:37.757] [INFO] cheese - inserting 1000 documents. first: Will Hatcher and last: Bradley Stacey +[2018-02-13T00:32:37.758] [INFO] cheese - inserting 1000 documents. first: James L. Dennis and last: Phyllis Dorothy James, Baroness James of Holland Park, OBE, FRSA, FRSL +[2018-02-13T00:32:37.782] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:32:37.863] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:32:37.954] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:32:38.067] [INFO] cheese - inserting 1000 documents. first: Emily Pauline Johnson and last: Allensville, KY +[2018-02-13T00:32:38.086] [INFO] cheese - inserting 1000 documents. first: Template:Chase H.Q. series and last: Alvan F. Sanborn +[2018-02-13T00:32:38.137] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:32:38.141] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:32:38.190] [INFO] cheese - inserting 1000 documents. first: Omiodes asaphombra and last: Xx male +[2018-02-13T00:32:38.261] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:32:38.375] [INFO] cheese - inserting 1000 documents. first: Filleting (obfuscation) and last: Deadheading (employee) +[2018-02-13T00:32:38.418] [INFO] cheese - inserting 1000 documents. first: Marouf Bakhit and last: Tie Plant, Mississippi +[2018-02-13T00:32:38.438] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:32:38.453] [INFO] cheese - inserting 1000 documents. first: Ruslan Stratonovich and last: Category:Soil contamination +[2018-02-13T00:32:38.466] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:32:38.493] [INFO] cheese - inserting 1000 documents. first: Tarika Ramilison Fenoarivo and last: List of number-one hits of 1990 (Flanders) +[2018-02-13T00:32:38.517] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T00:32:38.548] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:32:38.564] [INFO] cheese - inserting 1000 documents. first: Allenton, MI and last: Damgalnunna +[2018-02-13T00:32:38.608] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:32:38.617] [INFO] cheese - inserting 1000 documents. first: Lawyer's Prologue and Tale and last: U.s. inventions +[2018-02-13T00:32:38.669] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:32:38.686] [INFO] cheese - inserting 1000 documents. first: Portal:Houston/Did you know?/August 2007 and last: Fictional universe of Carnivàle +[2018-02-13T00:32:38.735] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:32:38.765] [INFO] cheese - inserting 1000 documents. first: Gordon O. Tanner (lawyer) and last: Heinrich Sir Albemarle Bertie, 1st Baronet +[2018-02-13T00:32:38.801] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:32:38.812] [INFO] cheese - inserting 1000 documents. first: 2006 Rally Deutschland and last: AirCal Tours +[2018-02-13T00:32:38.835] [INFO] cheese - inserting 1000 documents. first: VRT Top 30 number-one hits of 1990 (Flanders) and last: File:Logo of FC Madalena.png +[2018-02-13T00:32:38.853] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:32:38.873] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:32:38.926] [INFO] cheese - inserting 1000 documents. first: File:Srbthrust2.jpg and last: Sergeantsville, New Jersey +[2018-02-13T00:32:38.967] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:32:39.028] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/March 2009 and last: Cloud machine +[2018-02-13T00:32:39.076] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:32:39.161] [INFO] cheese - inserting 1000 documents. first: List of lesbian, gay, bisexual or transgender-related films by year and last: Wo de fu qin mu qin +[2018-02-13T00:32:39.161] [INFO] cheese - inserting 1000 documents. first: Renapur Taluka and last: Freddie Fox +[2018-02-13T00:32:39.214] [INFO] cheese - inserting 1000 documents. first: Unplugged (Alice in Chains album) and last: List of academic statistical associations +[2018-02-13T00:32:39.246] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:32:39.273] [INFO] cheese - inserting 1000 documents. first: File:Alabama Splash Adventure logo.png and last: Hypsirhophus discurus +[2018-02-13T00:32:39.313] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:32:39.355] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:32:39.369] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:32:39.468] [INFO] cheese - inserting 1000 documents. first: Template:MichiganStateBasketballCoach and last: Giambellino (district) +[2018-02-13T00:32:39.574] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:32:39.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Most Liberal Law School and last: File:Target T-1136.JPG +[2018-02-13T00:32:39.697] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:32:39.788] [INFO] cheese - inserting 1000 documents. first: MDCCLXX and last: Janiki Małe +[2018-02-13T00:32:39.825] [INFO] cheese - inserting 1000 documents. first: Albania – Georgia relations and last: File:Mariam Aslamazian.jpg +[2018-02-13T00:32:39.841] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:32:39.871] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:32:39.905] [INFO] cheese - inserting 1000 documents. first: Template:SwimmingAt1984SummerOlympics and last: File:Micromachine 2.jpg +[2018-02-13T00:32:39.952] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:32:39.954] [INFO] cheese - inserting 1000 documents. first: List of programs broadcast by Spacetoon (Pakistan) and last: Cybernetic Culture Research Unit +[2018-02-13T00:32:39.997] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:32:40.093] [INFO] cheese - inserting 1000 documents. first: Template:Goniodorididae-stub and last: Classic FM (Bulgaria) +[2018-02-13T00:32:40.155] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:32:40.187] [INFO] cheese - inserting 1000 documents. first: Emmanuel Habyarimana and last: Bishop of Poznań +[2018-02-13T00:32:40.248] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:32:40.291] [INFO] cheese - inserting 1000 documents. first: First Gentleman of Pakistan and last: SV Overbos +[2018-02-13T00:32:40.314] [INFO] cheese - inserting 1000 documents. first: Janiki Wielkie and last: Eloka +[2018-02-13T00:32:40.314] [INFO] cheese - inserting 1000 documents. first: Maeterlinck and last: Langnau +[2018-02-13T00:32:40.333] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:32:40.364] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:32:40.394] [INFO] cheese - inserting 1000 documents. first: Gazelle Valley and last: Wikipedia:Featured article review/Swastika/archive1 +[2018-02-13T00:32:40.395] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T00:32:40.448] [INFO] cheese - inserting 1000 documents. first: Petroleum Institute of Pakistan and last: F. Gordon Spear +[2018-02-13T00:32:40.449] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:32:40.539] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:32:40.670] [INFO] cheese - inserting 1000 documents. first: Skins (US Series) and last: Wikipedia:Articles for deletion/Dehn plane +[2018-02-13T00:32:40.738] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:32:40.864] [INFO] cheese - inserting 1000 documents. first: 2013–14 Swindon Town F.C. season and last: Helgi Hrafn Gunnarsson +[2018-02-13T00:32:40.882] [INFO] cheese - inserting 1000 documents. first: Gedney Farms, NY and last: Sleeper-hold +[2018-02-13T00:32:40.908] [INFO] cheese - inserting 1000 documents. first: Template:Regional Internet Registry and last: Fresh xpress +[2018-02-13T00:32:40.952] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:32:41.079] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:32:41.106] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:32:41.373] [INFO] cheese - inserting 1000 documents. first: F.G. Spear and last: Category:1700 in horse racing +[2018-02-13T00:32:41.380] [INFO] cheese - inserting 1000 documents. first: Ettrokro and last: Cathedral Church of Saint Peter, Exeter +[2018-02-13T00:32:41.450] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:32:41.495] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T00:32:41.575] [INFO] cheese - inserting 1000 documents. first: Category:Post office buildings in Pennsylvania and last: File:SiphonWithTubeUpperReservoir.png +[2018-02-13T00:32:41.619] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2013 April 27 and last: D-alanyl-D-alanine hydrolase +[2018-02-13T00:32:41.673] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T00:32:41.681] [INFO] cheese - inserting 1000 documents. first: East Fairfield and last: William Ormand Mitchell +[2018-02-13T00:32:41.770] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:32:41.881] [INFO] cheese - inserting 1000 documents. first: Swiss Federal Supreme Court and last: FM106-3 +[2018-02-13T00:32:41.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/SLSB and last: Curtis Cooper (mathematician) +[2018-02-13T00:32:41.911] [INFO] cheese - batch complete in: 1.515 secs +[2018-02-13T00:32:42.034] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:32:42.124] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T00:32:42.290] [INFO] cheese - inserting 1000 documents. first: Template:People's Choice Award for Favorite TV Drama and last: Wikipedia:Miscellany for deletion/User:Mattyredd24/Aayush Datt Fan Club +[2018-02-13T00:32:42.385] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T00:32:42.405] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/123quantumcomputers.webs.com and last: São Paulo F.C. season 2004 +[2018-02-13T00:32:42.488] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:32:42.536] [INFO] cheese - inserting 1000 documents. first: Louis Adolf Gölsdorf and last: Commandement de la force d'action terrestre +[2018-02-13T00:32:42.552] [INFO] cheese - inserting 1000 documents. first: D-alanyl-D-alanine-cleaving carboxypeptidase and last: Ibn 'Ata Allah +[2018-02-13T00:32:42.601] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T00:32:42.620] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:32:42.786] [INFO] cheese - inserting 1000 documents. first: Ayers Saint Gross and last: Meridian (disambiguation) +[2018-02-13T00:32:42.840] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:32:42.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Special state-to-state relations and last: Varúj...! +[2018-02-13T00:32:42.887] [INFO] cheese - inserting 1000 documents. first: Robert Thomas Grotz and last: Olof "olofmeister" Kajbjer +[2018-02-13T00:32:42.910] [INFO] cheese - inserting 1000 documents. first: William Ormond Mitchell and last: Fender Musical Instruments Corporation +[2018-02-13T00:32:42.926] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:32:42.929] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:32:42.948] [INFO] cheese - inserting 1000 documents. first: WBBO and last: 1000 De La Gauchetiere +[2018-02-13T00:32:42.990] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T00:32:43.031] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T00:32:43.058] [INFO] cheese - inserting 1000 documents. first: X Factor (Poland) and last: List of Acts of the Parliament of South Africa, 1990–1999 +[2018-02-13T00:32:43.092] [INFO] cheese - inserting 1000 documents. first: Thomas Alexander Murphree and last: Royce H. Savage +[2018-02-13T00:32:43.147] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:32:43.158] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:32:43.180] [INFO] cheese - inserting 1000 documents. first: Iris pallida and last: Wikipedia:Articles for deletion/Waitakere Mega Centre +[2018-02-13T00:32:43.221] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:32:43.271] [INFO] cheese - inserting 1000 documents. first: Category:Boise Irrigators players and last: Schadowstrasse (Düsseldorf) +[2018-02-13T00:32:43.328] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:32:43.395] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Seoul Independent Film Festival and last: RT aerostats systems +[2018-02-13T00:32:43.431] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:32:43.524] [INFO] cheese - inserting 1000 documents. first: List of Acts of the Parliament of South Africa, 2000–2009 and last: File:Musician Atari Blitzkrieg.jpg +[2018-02-13T00:32:43.532] [INFO] cheese - inserting 1000 documents. first: Siva Yoga and last: Miloslav Konopka +[2018-02-13T00:32:43.558] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:32:43.563] [INFO] cheese - inserting 1000 documents. first: 1000 de La Gauchetiere and last: Blåmannsisen +[2018-02-13T00:32:43.585] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:32:43.651] [INFO] cheese - inserting 1000 documents. first: KAPF and last: Tiny house movement +[2018-02-13T00:32:43.676] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:32:43.745] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:32:43.868] [INFO] cheese - inserting 1000 documents. first: N. K. Achumi and last: Athletics at the 1994 Commonwealth Games – Men's marathon +[2018-02-13T00:32:43.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2011 January 31 and last: Petra (sculpture) +[2018-02-13T00:32:43.880] [INFO] cheese - inserting 1000 documents. first: Chambered nautilus and last: Tillamook Cheese Factory +[2018-02-13T00:32:43.910] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:32:43.952] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:32:43.964] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:32:43.985] [INFO] cheese - inserting 1000 documents. first: Nabilla Benattia and last: IX Brigade, Royal Horse Artillery +[2018-02-13T00:32:44.530] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T00:32:44.572] [INFO] cheese - inserting 1000 documents. first: Near East Side and last: Brândușa River +[2018-02-13T00:32:45.331] [INFO] cheese - batch complete in: 1.746 secs +[2018-02-13T00:32:45.407] [INFO] cheese - inserting 1000 documents. first: Behrouz Afagh and last: Childs v Desormeaux +[2018-02-13T00:32:45.446] [INFO] cheese - inserting 1000 documents. first: Mean score and last: Hae-ryung +[2018-02-13T00:32:45.562] [INFO] cheese - batch complete in: 1.652 secs +[2018-02-13T00:32:45.581] [INFO] cheese - batch complete in: 1.904 secs +[2018-02-13T00:32:45.658] [INFO] cheese - inserting 1000 documents. first: Genocide in Somalia and last: Alaskan Air Defense Sector +[2018-02-13T00:32:45.694] [INFO] cheese - inserting 1000 documents. first: Rustai-ye Abolfazl ebn Magh and last: Diocese of Fond du Lac +[2018-02-13T00:32:45.720] [INFO] cheese - inserting 1000 documents. first: George P. Wanty and last: Richard Browne (artist) +[2018-02-13T00:32:45.731] [INFO] cheese - batch complete in: 1.779 secs +[2018-02-13T00:32:45.766] [INFO] cheese - batch complete in: 1.236 secs +[2018-02-13T00:32:45.859] [INFO] cheese - batch complete in: 2.114 secs +[2018-02-13T00:32:45.972] [INFO] cheese - inserting 1000 documents. first: Vector State Research Center of Virology and Biotechnology and last: James halpert +[2018-02-13T00:32:46.018] [INFO] cheese - inserting 1000 documents. first: File:Anna Ascends-593646673-large.jpg and last: Gardner, Paul +[2018-02-13T00:32:46.021] [INFO] cheese - inserting 1000 documents. first: Dolby Digital EX and last: Category:Chubu region +[2018-02-13T00:32:46.025] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:32:46.028] [INFO] cheese - inserting 1000 documents. first: Liz Macclarnon and last: Holz +[2018-02-13T00:32:46.055] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:32:46.083] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:32:46.093] [INFO] cheese - batch complete in: 2.129 secs +[2018-02-13T00:32:46.129] [INFO] cheese - inserting 1000 documents. first: The Enduring Chill and last: Category:University of Peshawar faculty +[2018-02-13T00:32:46.167] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:32:46.196] [INFO] cheese - inserting 1000 documents. first: League of Legends Clash of Fates and last: Wądzyn, Warmian-Masurian Voivodeship +[2018-02-13T00:32:46.240] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:32:46.268] [INFO] cheese - inserting 1000 documents. first: Diocese of Eau Claire and last: Ahlbeck (near Ueckermünde) +[2018-02-13T00:32:46.326] [INFO] cheese - inserting 1000 documents. first: Microsoft Windows Store and last: USAF Weapons and Tactics Center +[2018-02-13T00:32:46.328] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:32:46.360] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:32:46.395] [INFO] cheese - inserting 1000 documents. first: Pamela beesly and last: Observatoire des Pises +[2018-02-13T00:32:46.443] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:32:46.464] [INFO] cheese - inserting 1000 documents. first: File:JustSoYouKnowSingle.jpg and last: Evan Hlavacek +[2018-02-13T00:32:46.483] [INFO] cheese - inserting 1000 documents. first: Nouméa Cathedral and last: Amardeep Jha +[2018-02-13T00:32:46.524] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:32:46.525] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:32:46.542] [INFO] cheese - inserting 1000 documents. first: Wierzbica, Warmian-Masurian Voivodeship and last: Brzozówko +[2018-02-13T00:32:46.571] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:32:46.640] [INFO] cheese - inserting 1000 documents. first: Category:Kanto region and last: Paul Dodge +[2018-02-13T00:32:46.685] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:32:46.713] [INFO] cheese - inserting 1000 documents. first: Brian Krzanich and last: Lotus wrightii +[2018-02-13T00:32:46.732] [INFO] cheese - inserting 1000 documents. first: 1906 Illinois Fighting Illini football team and last: Category:1510 in the Colony of Santiago +[2018-02-13T00:32:46.748] [INFO] cheese - inserting 1000 documents. first: The Hispanic Society of America and last: 26 July 2007 Baghdad market bombing +[2018-02-13T00:32:46.751] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:32:46.775] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:32:46.790] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:32:46.869] [INFO] cheese - inserting 1000 documents. first: Tamil-murasu and last: File:Ttkidzpromo.jpg +[2018-02-13T00:32:46.875] [INFO] cheese - inserting 1000 documents. first: Budry and last: Henry Rupert Wilhoit Junior +[2018-02-13T00:32:46.944] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe kamensky and last: Fijian newspapers +[2018-02-13T00:32:46.952] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:32:46.963] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:32:47.096] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:32:47.278] [INFO] cheese - inserting 1000 documents. first: Nadiradze and last: Embassy of Switzerland in Tbilisi (Russian Interests Section) +[2018-02-13T00:32:47.284] [INFO] cheese - inserting 1000 documents. first: Category:1970s establishments in Liberia and last: Dark Guardian (novel) +[2018-02-13T00:32:47.305] [INFO] cheese - inserting 1000 documents. first: Police mole and last: Valea Calului River (Râul Târgului) +[2018-02-13T00:32:47.311] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:32:47.331] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:32:47.361] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:32:47.435] [INFO] cheese - inserting 1000 documents. first: Category:Regional capitals in Namibia and last: Charles Hartley +[2018-02-13T00:32:47.445] [INFO] cheese - inserting 1000 documents. first: Espírito Santo Sociedade Esportiva and last: Coronado California +[2018-02-13T00:32:47.448] [INFO] cheese - inserting 1000 documents. first: Goodrich, Herfordshire and last: Joshua Jebb +[2018-02-13T00:32:47.481] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:32:47.489] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:32:47.527] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:32:47.649] [INFO] cheese - inserting 1000 documents. first: File:Pengo test.svg and last: Cair Andros +[2018-02-13T00:32:47.670] [INFO] cheese - inserting 1000 documents. first: Embassy of Switzerland in Moscow (Georgian Interests Section) and last: Nusrat Imroz Tisha +[2018-02-13T00:32:47.697] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:32:47.704] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:32:47.721] [INFO] cheese - inserting 1000 documents. first: Southern California InFocus and last: Valea Mare River (Urlățelu) +[2018-02-13T00:32:47.740] [INFO] cheese - inserting 1000 documents. first: Charles Kornmann and last: Marsha Pechman +[2018-02-13T00:32:47.758] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:32:47.766] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:32:47.808] [INFO] cheese - inserting 1000 documents. first: File:Minsa'y isang Gamu-gamo.jpg and last: EC 3.4.21.74 +[2018-02-13T00:32:47.858] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:32:47.911] [INFO] cheese - inserting 1000 documents. first: Lazonby and Kirkoswald and last: Not for Me +[2018-02-13T00:32:47.961] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:32:48.036] [INFO] cheese - inserting 1000 documents. first: Marshall Neill and last: Walter Keeling +[2018-02-13T00:32:48.082] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:32:48.104] [INFO] cheese - inserting 1000 documents. first: Kenneth Brown (author) and last: Quentin Bryce +[2018-02-13T00:32:48.114] [INFO] cheese - inserting 1000 documents. first: Draft:Brian Shure and last: Syriac Catholic Archeparchy of Homs +[2018-02-13T00:32:48.126] [INFO] cheese - inserting 1000 documents. first: Abdelhak Serhane and last: Osmanabad Tahsil +[2018-02-13T00:32:48.161] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:32:48.169] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:32:48.177] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:32:48.187] [INFO] cheese - inserting 1000 documents. first: Farjestad and last: 13th Legion +[2018-02-13T00:32:48.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Twin Air and last: Category:Alosa +[2018-02-13T00:32:48.293] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:32:48.341] [INFO] cheese - inserting 1000 documents. first: Koichi Togashi and last: Titanic 3D +[2018-02-13T00:32:48.374] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:32:48.417] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:32:48.539] [INFO] cheese - inserting 1000 documents. first: Walter DeKalb Kelley and last: Elite force +[2018-02-13T00:32:48.605] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:32:48.667] [INFO] cheese - inserting 1000 documents. first: Syrian Catholic Archdiocese of Homs-Hama-Nabk and last: Category:1763 establishments in Russia +[2018-02-13T00:32:48.720] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:32:48.744] [INFO] cheese - inserting 1000 documents. first: Union Street, Borough and last: Template:Académie Française Seat 9 +[2018-02-13T00:32:48.784] [INFO] cheese - inserting 1000 documents. first: Lide z maringotek and last: Adam Cleghorn Welch +[2018-02-13T00:32:48.816] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:32:48.827] [INFO] cheese - inserting 1000 documents. first: 1959 Elections of Singapore and last: El diputado +[2018-02-13T00:32:48.871] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:32:48.907] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:32:48.980] [INFO] cheese - inserting 1000 documents. first: Boa Gwon and last: Forsterygion flavonigrum +[2018-02-13T00:32:49.012] [INFO] cheese - inserting 1000 documents. first: Category:ISSF shooting events and last: Category:Atlanta Thrashers players +[2018-02-13T00:32:49.071] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:32:49.117] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T00:32:49.136] [INFO] cheese - inserting 1000 documents. first: Batman 3 (Nolan) and last: Lohan, Pakistan +[2018-02-13T00:32:49.217] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Talk:Cisgenesis and last: File:Telenor Group.svg +[2018-02-13T00:32:49.253] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:32:49.318] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:32:49.418] [INFO] cheese - inserting 1000 documents. first: File:Escape Ironic Advertisement Chicago Feb 2 2011 storm.JPG and last: Anwar Ferguson +[2018-02-13T00:32:49.427] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Phil Manzanera and last: Lebanese cinema +[2018-02-13T00:32:49.462] [INFO] cheese - inserting 1000 documents. first: Road To The Riches and last: Monthélie +[2018-02-13T00:32:49.480] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:32:49.500] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:32:49.560] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:32:49.701] [INFO] cheese - inserting 1000 documents. first: Pteroglossus frantzii and last: Voiceless lateral affricate +[2018-02-13T00:32:49.798] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:32:49.893] [INFO] cheese - inserting 1000 documents. first: Category:Reservoirs in Ulster County, New York and last: Category:1838 disestablishments in Ceylon +[2018-02-13T00:32:49.907] [INFO] cheese - inserting 1000 documents. first: Juan Guerrero and last: As-Salih Hajji +[2018-02-13T00:32:49.963] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:32:49.966] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:32:50.061] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Blackhawks players and last: Kalapana (band) +[2018-02-13T00:32:50.068] [INFO] cheese - inserting 1000 documents. first: Dubberman Denmark and last: Joondalup railway line, Perth +[2018-02-13T00:32:50.090] [INFO] cheese - inserting 1000 documents. first: 1st Of Tha Month and last: Clupeoides +[2018-02-13T00:32:50.109] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:32:50.118] [INFO] cheese - inserting 1000 documents. first: Category:Church of England independent schools in the Diocese of Ely and last: Nidamangalam Taluk +[2018-02-13T00:32:50.139] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T00:32:50.139] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:32:50.182] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:32:50.272] [INFO] cheese - inserting 1000 documents. first: Frisch School and last: Frommer's +[2018-02-13T00:32:50.323] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:32:50.408] [INFO] cheese - inserting 1000 documents. first: Thumathoides and last: Category:Piper family +[2018-02-13T00:32:50.431] [INFO] cheese - inserting 1000 documents. first: Nicktown, Pennsylvania and last: Template:Green Party (Norway)/meta/abbr +[2018-02-13T00:32:50.434] [INFO] cheese - inserting 1000 documents. first: Soufli Province and last: FIS Alpine World Ski Championships 2011 – Women's super-G +[2018-02-13T00:32:50.439] [INFO] cheese - inserting 1000 documents. first: Pat Best and last: Wikipedia:WikiProject Malaysia/Cartography +[2018-02-13T00:32:50.444] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:32:50.473] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:32:50.481] [INFO] cheese - inserting 1000 documents. first: Category:1887 establishments in Florida and last: Paramyxovirus +[2018-02-13T00:32:50.492] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:32:50.502] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:32:50.517] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:32:50.730] [INFO] cheese - inserting 1000 documents. first: Consortium on Financial Systems and Poverty and last: Breeding Ground (album) +[2018-02-13T00:32:50.743] [INFO] cheese - inserting 1000 documents. first: Haplochromis kamiranzovu and last: Wikipedia:Featured picture candidates/Portrait of a cat +[2018-02-13T00:32:50.753] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:32:50.774] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:32:50.813] [INFO] cheese - inserting 1000 documents. first: AIS arena and last: Igor Cherevchenko +[2018-02-13T00:32:50.862] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:32:50.870] [INFO] cheese - inserting 1000 documents. first: Kaimu and last: Macho Man +[2018-02-13T00:32:50.887] [INFO] cheese - inserting 1000 documents. first: Template:Lexa and last: Growth planning +[2018-02-13T00:32:50.931] [INFO] cheese - inserting 1000 documents. first: Spiral Galaxy NGC 4435 and last: Yanornis +[2018-02-13T00:32:50.955] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:32:50.970] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:32:50.981] [INFO] cheese - inserting 1000 documents. first: Listen to Me (disambiguation) and last: Moravská národní obec +[2018-02-13T00:32:51.000] [INFO] cheese - inserting 1000 documents. first: André Lapize and last: Giuseppe Mingione +[2018-02-13T00:32:51.027] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:32:51.034] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:32:51.076] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:32:51.313] [INFO] cheese - inserting 1000 documents. first: Category:Lutjanus and last: Pantanodon +[2018-02-13T00:32:51.395] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:32:51.407] [INFO] cheese - inserting 1000 documents. first: Blue Scapular of the Immaculate Conception and last: Jeffrey Hunter (disambiguation) +[2018-02-13T00:32:51.518] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:32:51.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Pharmacology/Log/2011-02-08 and last: Sysoyev (disambiguation) +[2018-02-13T00:32:51.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/December 20, 2015 and last: Ralph McLean (politician) +[2018-02-13T00:32:51.611] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:32:51.653] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian-American culture by city and last: J.J.C. Bradfield +[2018-02-13T00:32:51.673] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:32:51.719] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:32:51.777] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Uzumaki Carly and last: The History of Mr Polly +[2018-02-13T00:32:51.835] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:32:51.871] [INFO] cheese - inserting 1000 documents. first: Category:Pantanodon and last: Table Cricket +[2018-02-13T00:32:51.907] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:32:51.915] [INFO] cheese - inserting 1000 documents. first: Category:Titans and last: Ethnism +[2018-02-13T00:32:51.931] [INFO] cheese - inserting 1000 documents. first: The Saga of Jenny and last: File:DanD-NoyMoon SharmCover.jpg +[2018-02-13T00:32:51.974] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:32:51.978] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T00:32:52.022] [INFO] cheese - inserting 1000 documents. first: Syntarsus (disambiguation) and last: St. Hallvard's Medal +[2018-02-13T00:32:52.040] [INFO] cheese - inserting 1000 documents. first: 2013-14 Portsmouth F.C. season and last: Nevado Callangate +[2018-02-13T00:32:52.073] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:32:52.076] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:32:52.094] [INFO] cheese - inserting 1000 documents. first: Hammurah and last: 1906 Swarthmore Garnet Tide football team +[2018-02-13T00:32:52.144] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:32:52.211] [INFO] cheese - inserting 1000 documents. first: File:HLR-SHORT-ARC-SUPPLY-A.jpg and last: S-Adenosylmethionine +[2018-02-13T00:32:52.252] [INFO] cheese - inserting 1000 documents. first: File:GuerolitoCover.jpg and last: Project Global +[2018-02-13T00:32:52.255] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:32:52.280] [INFO] cheese - inserting 1000 documents. first: Schools in Nigeria and last: Otis Putnam House +[2018-02-13T00:32:52.291] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:32:52.311] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:32:52.375] [INFO] cheese - inserting 1000 documents. first: Scullard v Knowles & Southern Regional Council for Education & Training and last: Template:WP Essex +[2018-02-13T00:32:52.380] [INFO] cheese - inserting 1000 documents. first: Bobs burgers episodes and last: Octopamine (disambiguation) +[2018-02-13T00:32:52.404] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:32:52.412] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:32:52.441] [INFO] cheese - inserting 1000 documents. first: Creme Puff (disambiguation) and last: Tsil'ninskii Raion +[2018-02-13T00:32:52.472] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:32:52.563] [INFO] cheese - inserting 1000 documents. first: Sample (music) and last: Category:Madison County, Ohio +[2018-02-13T00:32:52.608] [INFO] cheese - inserting 1000 documents. first: RCAF Station Mountain View and last: CBON-FM-17 +[2018-02-13T00:32:52.612] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:32:52.634] [INFO] cheese - inserting 1000 documents. first: Ligne de Bourg en Bresse-Bellegarde and last: File:Aintmisbehavin.jpg +[2018-02-13T00:32:52.645] [INFO] cheese - inserting 1000 documents. first: Muslim Countries and last: Atlanta Bliss +[2018-02-13T00:32:52.650] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:32:52.696] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:32:52.710] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:32:52.754] [INFO] cheese - inserting 1000 documents. first: Caterham bypass and last: Totally disconnected groups +[2018-02-13T00:32:52.795] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:32:52.837] [INFO] cheese - inserting 1000 documents. first: Pandulf (disambiguation) and last: Module:ISO 3166/data/AX +[2018-02-13T00:32:52.871] [INFO] cheese - inserting 1000 documents. first: Frank Serratore and last: Wikipedia:WikiProject Academic Journals/Journals cited by Wikipedia/J51 +[2018-02-13T00:32:52.874] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:32:52.937] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:32:53.134] [INFO] cheese - inserting 1000 documents. first: Audi Le Mans quattro and last: Caught Up (Millie Jackson album) +[2018-02-13T00:32:53.147] [INFO] cheese - inserting 1000 documents. first: Dr.S Radhakrishnan and last: Smiles for Macavity +[2018-02-13T00:32:53.160] [INFO] cheese - inserting 1000 documents. first: SKY TG24 and last: Born to Be Blue! (Bobby Timmons album) +[2018-02-13T00:32:53.170] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Greenville County, South Carolina and last: Kowalewo, West Pomeranian Voivodeship +[2018-02-13T00:32:53.176] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:32:53.199] [INFO] cheese - inserting 1000 documents. first: Anderson Private School For The Gifted and Talented and last: Juan de Argüelles +[2018-02-13T00:32:53.208] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:32:53.219] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:32:53.251] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:32:53.270] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:32:53.308] [INFO] cheese - inserting 1000 documents. first: File:Centralwashington.PNG and last: Linear temporal logic +[2018-02-13T00:32:53.322] [INFO] cheese - inserting 1000 documents. first: Casey the Alien and last: Aporia lama +[2018-02-13T00:32:53.361] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:32:53.360] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:32:53.563] [INFO] cheese - inserting 1000 documents. first: Portal:Indigenous peoples of the Americas/Selected biography/1 and last: Swarm (video game) +[2018-02-13T00:32:53.605] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:32:53.627] [INFO] cheese - inserting 1000 documents. first: Krakowice and last: Jamno, Koszalin +[2018-02-13T00:32:53.663] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:32:53.674] [INFO] cheese - inserting 1000 documents. first: Cernat River (Durbav) and last: Category:Medical colleges in Maharashtra +[2018-02-13T00:32:53.682] [INFO] cheese - inserting 1000 documents. first: PowerHouse (programming language) and last: Box Hill Town Hall +[2018-02-13T00:32:53.683] [INFO] cheese - inserting 1000 documents. first: 2016 Southern Myanmar FC season and last: Deng Furu +[2018-02-13T00:32:53.712] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:32:53.727] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:32:53.734] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:32:53.744] [INFO] cheese - inserting 1000 documents. first: Pieris peloria and last: Aetostreon +[2018-02-13T00:32:53.788] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:32:53.985] [INFO] cheese - inserting 1000 documents. first: Kazimierz Pomorski and last: Nuisance variable +[2018-02-13T00:32:54.011] [INFO] cheese - inserting 1000 documents. first: Helen Nielsen and last: 1997–98 Yemeni League +[2018-02-13T00:32:54.012] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:32:54.050] [INFO] cheese - inserting 1000 documents. first: Holy cow and last: Banana Republicans +[2018-02-13T00:32:54.052] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:32:54.090] [INFO] cheese - inserting 1000 documents. first: Japanese eggplant and last: US 59 (IA) +[2018-02-13T00:32:54.121] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:32:54.131] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:32:54.138] [INFO] cheese - inserting 1000 documents. first: Chah Zangi, Kerman and last: Wikipedia:WikiProject District of Columbia/tasks/Under review/FAC +[2018-02-13T00:32:54.161] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sunshine octopus and last: Category:1958 British Empire and Commonwealth Games +[2018-02-13T00:32:54.176] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:32:54.205] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:32:54.225] [INFO] cheese - inserting 1000 documents. first: Leone Ebreo de Somi and last: Precedent book +[2018-02-13T00:32:54.268] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:32:54.272] [INFO] cheese - inserting 1000 documents. first: Suchao Nutnum and last: Handball at the 2004 Summer Olympics - Men's team squads +[2018-02-13T00:32:54.307] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:32:54.383] [INFO] cheese - inserting 1000 documents. first: Category:European Colombian and last: Category:1993 in Australian rugby union +[2018-02-13T00:32:54.390] [INFO] cheese - inserting 1000 documents. first: 1998–99 Yemeni League and last: File:Greatest of the Delta Blues Singers.jpg +[2018-02-13T00:32:54.410] [INFO] cheese - batch complete in: 0.234 secs +[2018-02-13T00:32:54.432] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:32:54.552] [INFO] cheese - inserting 1000 documents. first: Holy Rood Church and last: Kashkarov +[2018-02-13T00:32:54.565] [INFO] cheese - inserting 1000 documents. first: Aaron Edwards and last: Kinship care +[2018-02-13T00:32:54.585] [INFO] cheese - inserting 1000 documents. first: US 75 (IA) and last: Way Out West (festival) +[2018-02-13T00:32:54.590] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:32:54.615] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:32:54.626] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:32:54.645] [INFO] cheese - inserting 1000 documents. first: The unforgiven 2 and last: Sacred and Profane (Britten) +[2018-02-13T00:32:54.684] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:32:54.720] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RB-RP right/31 and last: Nutahara +[2018-02-13T00:32:54.760] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:32:54.790] [INFO] cheese - inserting 1000 documents. first: Kinnarathumbikal and last: Sphinx ceculus +[2018-02-13T00:32:54.813] [INFO] cheese - inserting 1000 documents. first: Terminal illness and last: André Courrèges +[2018-02-13T00:32:54.840] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:32:54.873] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:32:54.899] [INFO] cheese - inserting 1000 documents. first: NanKang Biotech Incubation Center and last: James Franck Institute +[2018-02-13T00:32:54.953] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:32:54.991] [INFO] cheese - inserting 1000 documents. first: Vic Hanson and last: Category:French eugenicists +[2018-02-13T00:32:55.010] [INFO] cheese - inserting 1000 documents. first: Éric Le Chanony and last: List of Old Bristolians born before the 19th century +[2018-02-13T00:32:55.083] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:32:55.059] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:32:55.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Post-hardcore/leftpanel and last: Waterlaso +[2018-02-13T00:32:55.181] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:32:55.263] [INFO] cheese - inserting 1000 documents. first: Category:1974 in Kansas and last: Anglo-Bhutan War of 1864–65 +[2018-02-13T00:32:55.305] [INFO] cheese - inserting 1000 documents. first: Bus monitoring and last: Research article +[2018-02-13T00:32:55.315] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:32:55.326] [INFO] cheese - inserting 1000 documents. first: Tihomir Orešković and last: Qaṣīdah +[2018-02-13T00:32:55.349] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:32:55.371] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:32:55.429] [INFO] cheese - inserting 1000 documents. first: Group Captain Cheshire and last: Peter Collins (Formula One) +[2018-02-13T00:32:55.467] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:32:55.503] [INFO] cheese - inserting 1000 documents. first: Category:Filipino professional wrestlers and last: Tumichuqua lake +[2018-02-13T00:32:55.545] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:32:55.598] [INFO] cheese - inserting 1000 documents. first: Jim McKay and last: Peter Steele +[2018-02-13T00:32:55.601] [INFO] cheese - inserting 1000 documents. first: Axel Heiberg Stang and last: Anomaluromorpha +[2018-02-13T00:32:55.605] [INFO] cheese - inserting 1000 documents. first: Rithā' and last: Jade Wang +[2018-02-13T00:32:55.633] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:32:55.647] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:32:55.646] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:32:55.662] [INFO] cheese - inserting 1000 documents. first: Category:Natural phenols and last: Murray Edmund Watts +[2018-02-13T00:32:55.709] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:32:55.737] [INFO] cheese - inserting 1000 documents. first: History of hentai and last: File:Rissa IL.jpg +[2018-02-13T00:32:55.790] [INFO] cheese - inserting 1000 documents. first: San Antonio lake and last: James P. Leamy +[2018-02-13T00:32:55.792] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:32:55.796] [INFO] cheese - inserting 1000 documents. first: Atenia quadrani and last: John Mahnken +[2018-02-13T00:32:55.816] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:32:55.851] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:32:55.989] [INFO] cheese - inserting 1000 documents. first: Rhizosthenes falciformis and last: Wikipedia:Articles for deletion/Go Solutions Group, Inc. +[2018-02-13T00:32:56.024] [INFO] cheese - inserting 1000 documents. first: Mervyn and last: List of PSone Classics N–Z +[2018-02-13T00:32:56.024] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:32:56.065] [INFO] cheese - inserting 1000 documents. first: Stormer (disambiguation) and last: St.Anselm's School +[2018-02-13T00:32:56.067] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:32:56.072] [INFO] cheese - inserting 1000 documents. first: James R. Nowlin and last: Brighton Blitz +[2018-02-13T00:32:56.101] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:32:56.132] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:32:56.150] [INFO] cheese - inserting 1000 documents. first: File:Kaohsiung County location.jpg and last: 2099 (comics) +[2018-02-13T00:32:56.161] [INFO] cheese - inserting 1000 documents. first: Category:Cochliopina and last: Category:Geomitra +[2018-02-13T00:32:56.189] [INFO] cheese - inserting 1000 documents. first: 2013 Belkin Pro Cycling season and last: Category:Museums in Caracas +[2018-02-13T00:32:56.209] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:32:56.215] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:32:56.291] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:32:56.437] [INFO] cheese - inserting 1000 documents. first: Hochthürmerberg and last: Charlotte Gingras +[2018-02-13T00:32:56.448] [INFO] cheese - inserting 1000 documents. first: Archibald Ronald McDonald Gordon and last: Hoodoo science +[2018-02-13T00:32:56.480] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:32:56.504] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:32:56.509] [INFO] cheese - inserting 1000 documents. first: Chop Suey! and last: De Mil Colores (Daniela Romo album) +[2018-02-13T00:32:56.564] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:32:56.586] [INFO] cheese - inserting 1000 documents. first: Geomitra delphinuloides and last: Lithasia jayana +[2018-02-13T00:32:56.615] [INFO] cheese - inserting 1000 documents. first: Coris picta and last: Gastric-brooding Frog +[2018-02-13T00:32:56.618] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:32:56.664] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:32:56.679] [INFO] cheese - inserting 1000 documents. first: Cremisan and last: Ma Chu +[2018-02-13T00:32:56.726] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:32:56.835] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Sediment in the Gulf of Mexico and last: Privalov +[2018-02-13T00:32:56.845] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/darryllevine.com and last: Waite Hockin Stirling +[2018-02-13T00:32:56.865] [INFO] cheese - inserting 1000 documents. first: Category:Food additives and last: MIT Press +[2018-02-13T00:32:56.883] [INFO] cheese - inserting 1000 documents. first: Rugose rocksnail and last: FC Lisma-Mordovia Saransk +[2018-02-13T00:32:56.895] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:32:56.906] [INFO] cheese - inserting 1000 documents. first: Spira (Final Fantasy X) and last: Uietkuk +[2018-02-13T00:32:56.910] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:32:56.927] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:32:56.943] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:32:56.956] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:32:57.054] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PASH and last: Scarletstadion Achter de Kazerne +[2018-02-13T00:32:57.090] [INFO] cheese - inserting 1000 documents. first: File:Sir Edwin, Lady Leela & Nissanka Wijeyeratne.jpg and last: Category:Companies based in Coles County, Illinois +[2018-02-13T00:32:57.111] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:32:57.187] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:32:57.262] [INFO] cheese - inserting 1000 documents. first: Tony Church (trailer writer) and last: Philonesia filiceti +[2018-02-13T00:32:57.283] [INFO] cheese - inserting 1000 documents. first: Kingsburg Police Department and last: Narong Wongthongkam +[2018-02-13T00:32:57.293] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:32:57.325] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:32:57.335] [INFO] cheese - inserting 1000 documents. first: John Lee Richmond and last: Wikipedia:WikiProject Spam/LinkReports/xdeal.net +[2018-02-13T00:32:57.351] [INFO] cheese - inserting 1000 documents. first: Slate River (Colorado) and last: Template:Vissel Kobe +[2018-02-13T00:32:57.373] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:32:57.516] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:32:57.643] [INFO] cheese - inserting 1000 documents. first: Philonesia and last: Category:Wikipedians interested in literature +[2018-02-13T00:32:57.689] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:32:57.741] [INFO] cheese - inserting 1000 documents. first: Tolombeh-ye Hajji Garam and last: Haskett Court +[2018-02-13T00:32:57.773] [INFO] cheese - inserting 1000 documents. first: Bofh and last: File:Escudo-Piloña.jpg +[2018-02-13T00:32:57.778] [INFO] cheese - inserting 1000 documents. first: Greed and fear and last: St. Joseph River (Maumee River) +[2018-02-13T00:32:57.791] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:32:57.812] [INFO] cheese - inserting 1000 documents. first: Kerry District League Premier B and last: Donald Mackenzie (advocate) +[2018-02-13T00:32:57.829] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:32:57.844] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T00:32:57.869] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:32:57.910] [INFO] cheese - inserting 1000 documents. first: Climate Data Records and last: Climate of Arkansas +[2018-02-13T00:32:57.944] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:32:57.945] [INFO] cheese - inserting 1000 documents. first: Tapetto Volante and last: Template:Ukraine-hotel-stub +[2018-02-13T00:32:57.993] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:32:58.025] [INFO] cheese - inserting 1000 documents. first: DE-533 and last: Valea Hrăii River +[2018-02-13T00:32:58.068] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:32:58.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Retailing/to do and last: Category:Universities and colleges in Marseille +[2018-02-13T00:32:58.205] [INFO] cheese - inserting 1000 documents. first: Cariogenic and last: Wikipedia:Images and media for deletion/2006 September 9 +[2018-02-13T00:32:58.206] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:32:58.209] [INFO] cheese - inserting 1000 documents. first: Quell (wearable) and last: A Midnight Summer's Dream +[2018-02-13T00:32:58.215] [INFO] cheese - inserting 1000 documents. first: Smos and last: Renal veins +[2018-02-13T00:32:58.234] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:32:58.243] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:32:58.260] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:32:58.371] [INFO] cheese - inserting 1000 documents. first: Ski jumping at the 2011 European Youth Olympic Winter Festival and last: Template:Tamil Nadu Highways Network +[2018-02-13T00:32:58.436] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:32:58.513] [INFO] cheese - inserting 1000 documents. first: Category:Universities and colleges in Bordeaux and last: Daya Master +[2018-02-13T00:32:58.543] [INFO] cheese - inserting 1000 documents. first: Health and Welfare Canada and last: Amcham +[2018-02-13T00:32:58.544] [INFO] cheese - inserting 1000 documents. first: 1928 Colgate football team and last: Autodromo de Turagua +[2018-02-13T00:32:58.559] [INFO] cheese - inserting 1000 documents. first: CXVIII and last: A. A. Delvig +[2018-02-13T00:32:58.561] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:32:58.586] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:32:58.598] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:32:58.616] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:32:58.667] [INFO] cheese - inserting 1000 documents. first: Beebopareebop Rhubarb Pie and last: Paige Young +[2018-02-13T00:32:58.745] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:32:58.814] [INFO] cheese - inserting 1000 documents. first: File:Advertising Standards Council of India Logo.jpg and last: Wikipedia:Copyright problems/2011 February 13 +[2018-02-13T00:32:58.844] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:32:58.970] [INFO] cheese - inserting 1000 documents. first: Tied note and last: Emden, Germany +[2018-02-13T00:32:58.983] [INFO] cheese - inserting 1000 documents. first: Hikari Rail Star (Shinkansen) and last: Richard Corbett +[2018-02-13T00:32:59.004] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:32:59.029] [INFO] cheese - inserting 1000 documents. first: File:Recovery Road (TV series) title.png and last: Babić, Ivan +[2018-02-13T00:32:59.042] [INFO] cheese - inserting 1000 documents. first: Scott Act (1888) and last: Japanese Unconditional Surrender +[2018-02-13T00:32:59.044] [INFO] cheese - inserting 1000 documents. first: Operation Argo and last: Zabrus gravis +[2018-02-13T00:32:59.045] [INFO] cheese - batch complete in: 1.201 secs +[2018-02-13T00:32:59.077] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:32:59.084] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:32:59.086] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:32:59.152] [INFO] cheese - inserting 1000 documents. first: Category:Living museums in Washington (state) and last: Bulgarian Jewry +[2018-02-13T00:32:59.174] [INFO] cheese - inserting 1000 documents. first: SD Negreira and last: Wikipedia:Articles for deletion/WWII: War of Supremacy +[2018-02-13T00:32:59.195] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:32:59.230] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:32:59.292] [INFO] cheese - inserting 1000 documents. first: 한효주 and last: Joseph Buerger +[2018-02-13T00:32:59.330] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:32:59.344] [INFO] cheese - inserting 1000 documents. first: Linda Chou and last: Wikipedia:Images and media for deletion/2007 January 16 +[2018-02-13T00:32:59.379] [INFO] cheese - inserting 1000 documents. first: Belsky, Ivan and last: Firminus +[2018-02-13T00:32:59.382] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:32:59.412] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:32:59.439] [INFO] cheese - inserting 1000 documents. first: File:Holyfield vs Cooper.jpg and last: Periclimenes priodactylus +[2018-02-13T00:32:59.475] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:32:59.525] [INFO] cheese - inserting 1000 documents. first: Kiesling and last: Wikipedia:Articles for deletion/Gravity Falls +[2018-02-13T00:32:59.571] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:32:59.625] [INFO] cheese - inserting 1000 documents. first: Portal:Cricket/Anniversaries/June/June 9 and last: Carlos Rafael +[2018-02-13T00:32:59.629] [INFO] cheese - inserting 1000 documents. first: Intercounty Maple Leafs and last: Category:Companies of Tajikistan +[2018-02-13T00:32:59.657] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:32:59.677] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:32:59.685] [INFO] cheese - inserting 1000 documents. first: 1995 Atlantic Hurricane season and last: Wikipedia:Articles for deletion/Median number +[2018-02-13T00:32:59.727] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Images and media for deletion/2007 January 15 and last: Raymond Jackson (disambiguation) +[2018-02-13T00:32:59.742] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:32:59.751] [INFO] cheese - inserting 1000 documents. first: 1923 Drake Bulldogs football team and last: Franz Pitzinger +[2018-02-13T00:32:59.775] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:32:59.801] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:32:59.837] [INFO] cheese - inserting 1000 documents. first: Periclimenes signatus and last: Emeka Onyenekwu +[2018-02-13T00:32:59.919] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:32:59.974] [INFO] cheese - inserting 1000 documents. first: Category:Cambridge University Press books and last: Toto Le Héros +[2018-02-13T00:33:00.021] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:33:00.053] [INFO] cheese - inserting 1000 documents. first: Oklahoma State Highway 53A and last: Portal:Ethics/Quotes +[2018-02-13T00:33:00.090] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:33:00.125] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Tajikistan and last: Wikipedia:POTD row/April 3, 2006 +[2018-02-13T00:33:00.151] [INFO] cheese - inserting 1000 documents. first: TXDADS and last: Lago di santa rosalia +[2018-02-13T00:33:00.175] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:33:00.201] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:33:00.235] [INFO] cheese - inserting 1000 documents. first: Sara Creek and last: United Nations Convention Against Torture +[2018-02-13T00:33:00.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Center for Appropriate Transport and last: Towns and cities in Kosovo +[2018-02-13T00:33:00.281] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:33:00.316] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:33:00.353] [INFO] cheese - inserting 1000 documents. first: Ogliastro Lake and last: Wikipedia:Images and media for deletion/2008 March 23 +[2018-02-13T00:33:00.375] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:33:00.448] [INFO] cheese - inserting 1000 documents. first: Cat House (Charmed) and last: Category:British Library Arundel collection +[2018-02-13T00:33:00.519] [INFO] cheese - inserting 1000 documents. first: Johnny Maulbetsch and last: Category:Succineidae +[2018-02-13T00:33:00.524] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:33:00.582] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:33:00.697] [INFO] cheese - inserting 1000 documents. first: Itarildë and last: Connection (fibred manifold) +[2018-02-13T00:33:00.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Images and media for deletion/2008 March 22 and last: Dheri Thothal +[2018-02-13T00:33:00.720] [INFO] cheese - inserting 1000 documents. first: Wikipedia:POTD row/April 5, 2006 and last: Keith Dorney +[2018-02-13T00:33:00.732] [INFO] cheese - inserting 1000 documents. first: 10 Hygiea and last: Jan, Count Zizka +[2018-02-13T00:33:00.740] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:33:00.742] [INFO] cheese - inserting 1000 documents. first: Towns and cities of Kosovo and last: Vallombrosan Benedictines +[2018-02-13T00:33:00.747] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:33:00.793] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:33:00.813] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T00:33:00.817] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:33:00.916] [INFO] cheese - inserting 1000 documents. first: Uz Jsme Doma and last: Darren Jones +[2018-02-13T00:33:00.948] [INFO] cheese - inserting 1000 documents. first: Vincenzo Ruggiero and last: Template:CinemaofSwitzerland +[2018-02-13T00:33:00.949] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:33:01.018] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:33:01.171] [INFO] cheese - inserting 1000 documents. first: Musume Morning and last: Category:People from Northeast China +[2018-02-13T00:33:01.213] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:33:01.223] [INFO] cheese - inserting 1000 documents. first: Film poem and last: Pendarvis Williams +[2018-02-13T00:33:01.272] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:33:01.311] [INFO] cheese - inserting 1000 documents. first: File:Forever Worlds - Enter the Unknown coverart.png and last: Splitrock, Wisconsin +[2018-02-13T00:33:01.346] [INFO] cheese - inserting 1000 documents. first: Mizuti and last: Template:Central America topic +[2018-02-13T00:33:01.349] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:33:01.397] [INFO] cheese - inserting 1000 documents. first: Cone biopsy and last: Template:Warcraft Universe +[2018-02-13T00:33:01.397] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:33:01.441] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:33:01.565] [INFO] cheese - inserting 1000 documents. first: Template:CinemaofTaiwan and last: Army Reserve Aviation Command +[2018-02-13T00:33:01.580] [INFO] cheese - inserting 1000 documents. first: MEMOrg and last: Wikipedia:Articles for deletion/Apostolic Johannite Church +[2018-02-13T00:33:01.610] [INFO] cheese - inserting 1000 documents. first: Category:2007 establishments in Arizona and last: Spiralisigna gloriae +[2018-02-13T00:33:01.610] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:33:01.616] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:33:01.662] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:33:01.686] [INFO] cheese - inserting 1000 documents. first: FAI Under-17 Cup and last: Causes of inflation +[2018-02-13T00:33:01.721] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:33:01.733] [INFO] cheese - inserting 1000 documents. first: List of monastic houses on the Isle of Man and last: Wikipedia:Multilingual ranking April 2002 +[2018-02-13T00:33:01.743] [INFO] cheese - inserting 1000 documents. first: Cleveland Council of Independent Schools and last: Cádiz Cortes +[2018-02-13T00:33:01.770] [INFO] cheese - inserting 1000 documents. first: Myadora novaezelandiae and last: File:Aadmi Sadak Ka.jpg +[2018-02-13T00:33:01.779] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:33:01.790] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T00:33:01.803] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:33:01.898] [INFO] cheese - inserting 1000 documents. first: Pobe Mengao and last: Wikipedia:Flag protection and patrolled revisions/Flag protection +[2018-02-13T00:33:01.934] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:33:01.964] [INFO] cheese - inserting 1000 documents. first: Battlelab and last: File:Roswell Invaders logo.gif +[2018-02-13T00:33:02.008] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:33:02.013] [INFO] cheese - inserting 1000 documents. first: File:Intercourse, first edition.jpg and last: Category:Articles with evidence out of context +[2018-02-13T00:33:02.048] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:33:02.098] [INFO] cheese - inserting 1000 documents. first: 11th Aviation Group (United States) and last: Ani-Mayhem +[2018-02-13T00:33:02.146] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:33:02.160] [INFO] cheese - inserting 1000 documents. first: Ray González and last: Ice sledge hockey at the 2006 Winter Paralympics +[2018-02-13T00:33:02.182] [INFO] cheese - inserting 1000 documents. first: William Augustus Brevoort Coolidge and last: Wikipedia:Articles for deletion/Lodestar +[2018-02-13T00:33:02.230] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:33:02.266] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:33:02.418] [INFO] cheese - inserting 1000 documents. first: Terry Blair (politician) and last: Minuscule 407 +[2018-02-13T00:33:02.426] [INFO] cheese - inserting 1000 documents. first: Abd Allah abu Amir and last: Category:2005 establishments in Michigan +[2018-02-13T00:33:02.461] [INFO] cheese - inserting 1000 documents. first: List of Micropolitan Statistical Areas and last: Category:Festivals established in 2001 +[2018-02-13T00:33:02.486] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:33:02.489] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:33:02.518] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:33:02.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Multilingual ranking March 2002 and last: Kolomenskoe +[2018-02-13T00:33:02.583] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:33:02.651] [INFO] cheese - inserting 1000 documents. first: Chlorocypha bambtoni and last: Samuel Fowler +[2018-02-13T00:33:02.703] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:33:02.721] [INFO] cheese - inserting 1000 documents. first: File:TGFTC.jpg and last: Category:Buildings and structures in Dubai +[2018-02-13T00:33:02.768] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:33:02.777] [INFO] cheese - inserting 1000 documents. first: Apostolic Vicariate of Villavicencio and last: XHTAZ-TDT +[2018-02-13T00:33:02.800] [INFO] cheese - inserting 1000 documents. first: Anton Krošl and last: Hash tree +[2018-02-13T00:33:02.811] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:33:02.827] [INFO] cheese - inserting 1000 documents. first: Ani-Mayhem! and last: Béla Guttman +[2018-02-13T00:33:02.839] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:33:02.888] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:33:02.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/File:Tachysphex specie.jpg and last: Joshua Jennison House +[2018-02-13T00:33:02.963] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:33:03.025] [INFO] cheese - inserting 1000 documents. first: Clinton Township, Ohio and last: Marxist Socialism +[2018-02-13T00:33:03.063] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:33:03.152] [INFO] cheese - inserting 1000 documents. first: Pausanias (disambiguation) and last: Tore tanzt +[2018-02-13T00:33:03.159] [INFO] cheese - inserting 1000 documents. first: Aysén Region and last: Women's Basketball Hall of Fame +[2018-02-13T00:33:03.174] [INFO] cheese - inserting 1000 documents. first: XHTAT-TDT and last: Category:Time travelers +[2018-02-13T00:33:03.193] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:33:03.199] [INFO] cheese - inserting 1000 documents. first: Alfa Romeo Tipo 33 and last: San Francisco School of Design +[2018-02-13T00:33:03.208] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:33:03.223] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:33:03.271] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:33:03.385] [INFO] cheese - inserting 1000 documents. first: Aidar Kumisbekov and last: File:Colors1.jpg +[2018-02-13T00:33:03.417] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:33:03.465] [INFO] cheese - inserting 1000 documents. first: List of recreational number theory topics and last: File:Club color pohang.png +[2018-02-13T00:33:03.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Missing encyclopedic articles/DNB Epitome 01 and last: Carboniferous (album) +[2018-02-13T00:33:03.614] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:33:03.644] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:33:03.691] [INFO] cheese - inserting 1000 documents. first: Robert Nosse and last: Wikipedia:Articles for deletion/Vocalocity +[2018-02-13T00:33:03.720] [INFO] cheese - inserting 1000 documents. first: National LIDAR Dataset – USA and last: Economic Club of Pittsburgh +[2018-02-13T00:33:03.776] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:33:03.779] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:33:03.901] [INFO] cheese - inserting 1000 documents. first: Pheidole oculata and last: File:Kent.gif +[2018-02-13T00:33:03.986] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:33:04.018] [INFO] cheese - inserting 1000 documents. first: Madam Rosmerta and last: Unia Wolnosci +[2018-02-13T00:33:04.090] [INFO] cheese - inserting 1000 documents. first: Konstantin Petrovich Mikhailov and last: 1511 (year) +[2018-02-13T00:33:04.120] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T00:33:04.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mrs. Malfoy, Mrs. Tavington, and Mrs. Keegan Present Themselves and last: Category:Sogn og Fjordane +[2018-02-13T00:33:04.144] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:33:04.231] [INFO] cheese - inserting 1000 documents. first: All by Myself (Grey's Anatomy) and last: Battle of Tuiteam-Tarbhach +[2018-02-13T00:33:04.247] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:33:04.310] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:33:04.374] [INFO] cheese - inserting 1000 documents. first: 1510 (year) and last: 552 (year) +[2018-02-13T00:33:04.388] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:33:04.424] [INFO] cheese - inserting 1000 documents. first: Strongylognathus minutus and last: Bombardier Bi-Level Coach +[2018-02-13T00:33:04.429] [INFO] cheese - inserting 1000 documents. first: Principle of minimal privilege and last: Right You Are, If You Think So +[2018-02-13T00:33:04.451] [INFO] cheese - inserting 1000 documents. first: Economy of Philadelphia and last: Karen E. Goulekas +[2018-02-13T00:33:04.467] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:33:04.508] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:33:04.529] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:33:04.583] [INFO] cheese - inserting 1000 documents. first: 551 (year) and last: Year 1831 +[2018-02-13T00:33:04.601] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T00:33:04.742] [INFO] cheese - inserting 1000 documents. first: Year 1830 and last: Year 863 +[2018-02-13T00:33:04.766] [INFO] cheese - batch complete in: 0.165 secs +[2018-02-13T00:33:04.791] [INFO] cheese - inserting 1000 documents. first: Battle of Tuttim-Tarwach and last: Non è mai troppo tardi (film 1953) +[2018-02-13T00:33:04.796] [INFO] cheese - inserting 1000 documents. first: Eunomia family and last: Multiplicity (film) +[2018-02-13T00:33:04.805] [INFO] cheese - inserting 1000 documents. first: Rivest-Shamir-Adleman Number and last: File:BradfordPA.PNG +[2018-02-13T00:33:04.824] [INFO] cheese - inserting 1000 documents. first: Right You Are (If You Think You Are) and last: Białobrzeski family +[2018-02-13T00:33:04.839] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:33:04.849] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:33:04.865] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:33:04.874] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:33:04.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cheryl Cran and last: Deh-e Pain, Ravar +[2018-02-13T00:33:04.903] [INFO] cheese - inserting 1000 documents. first: Year 862 and last: Sylph (Dungeons and Dragons) +[2018-02-13T00:33:04.918] [INFO] cheese - batch complete in: 0.152 secs +[2018-02-13T00:33:04.941] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:33:05.050] [INFO] cheese - inserting 1000 documents. first: Candlegrease bun and last: File:Roland XP-30 Synthesizer.JPG +[2018-02-13T00:33:05.109] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:33:05.149] [INFO] cheese - inserting 1000 documents. first: List of Dungeons and Dragons deities and last: Timeline of the presidency of Barack Obama (2016) +[2018-02-13T00:33:05.169] [INFO] cheese - inserting 1000 documents. first: Mohsen Mostafavi and last: Category:National Football League on the radio +[2018-02-13T00:33:05.180] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:33:05.214] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:33:05.248] [INFO] cheese - inserting 1000 documents. first: Domain Model and last: Category:Bodo nationalism +[2018-02-13T00:33:05.252] [INFO] cheese - inserting 1000 documents. first: Tsarevna Sophia Alekseyevna and last: ZX Spectrum character set +[2018-02-13T00:33:05.285] [INFO] cheese - inserting 1000 documents. first: Buss bar and last: EC 3.6.5.5 +[2018-02-13T00:33:05.297] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:33:05.299] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:33:05.332] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:33:05.471] [INFO] cheese - inserting 1000 documents. first: Tokyo Subway Attacks and last: Bjørnar Valstad +[2018-02-13T00:33:05.525] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:33:05.530] [INFO] cheese - inserting 1000 documents. first: 17th Earl of Oxford, Lord Bulbeck and last: Kármán line +[2018-02-13T00:33:05.582] [INFO] cheese - inserting 1000 documents. first: List of Ubisoft games and last: 15thOWS +[2018-02-13T00:33:05.638] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:33:05.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Ruby-crowned kinglet and last: 2016 New Zealand Open Grand Prix +[2018-02-13T00:33:05.674] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:33:05.786] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:33:05.845] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Terri Clark (author) and last: George McCall Courts +[2018-02-13T00:33:05.894] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:33:05.998] [INFO] cheese - inserting 1000 documents. first: Post ship and last: Quanzhen School +[2018-02-13T00:33:06.022] [INFO] cheese - inserting 1000 documents. first: CDC14 and last: File:Avolites Logo.svg +[2018-02-13T00:33:06.072] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:33:06.110] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:33:06.262] [INFO] cheese - inserting 1000 documents. first: Dielectric constant of vacuum and last: File:3lbs title card.jpg +[2018-02-13T00:33:06.309] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:33:06.351] [INFO] cheese - inserting 1000 documents. first: Faliyu and last: De Finetti’s representation theorem +[2018-02-13T00:33:06.370] [INFO] cheese - inserting 1000 documents. first: File:JoeHenry-FiremansWedding.jpg and last: File:Astronbelt-arcadegame.jpg +[2018-02-13T00:33:06.374] [INFO] cheese - inserting 1000 documents. first: Current account mortgage and last: RBW +[2018-02-13T00:33:06.386] [INFO] cheese - inserting 1000 documents. first: St Neots Priory and last: Vladimir Propp +[2018-02-13T00:33:06.417] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:33:06.437] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:33:06.446] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T00:33:06.492] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T00:33:06.642] [INFO] cheese - inserting 1000 documents. first: File:Anna-Rossinelli-Marylou.jpg and last: Lumding–Dibrugarh section +[2018-02-13T00:33:06.678] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:33:06.749] [INFO] cheese - inserting 1000 documents. first: Illinois Open and last: Courtney Love Returns +[2018-02-13T00:33:06.799] [INFO] cheese - inserting 1000 documents. first: Jean-Paul Faber and last: Category:People from Drâa-Tafilalet +[2018-02-13T00:33:06.799] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:33:06.862] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:33:06.865] [INFO] cheese - inserting 1000 documents. first: File:Bandore1.gif and last: File:Look Press.jpg +[2018-02-13T00:33:06.865] [INFO] cheese - inserting 1000 documents. first: Hypermutation and last: Gunther Lutjens +[2018-02-13T00:33:06.929] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:33:06.949] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:33:06.972] [INFO] cheese - inserting 1000 documents. first: Cladeiodon and last: Boogie Shoes +[2018-02-13T00:33:07.046] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:33:07.095] [INFO] cheese - inserting 1000 documents. first: 1983 K-League and last: Fossil-fuelled power station +[2018-02-13T00:33:07.155] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:33:07.164] [INFO] cheese - inserting 1000 documents. first: William E. Colby and last: A Tale of Two Cities (1935) +[2018-02-13T00:33:07.229] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:33:07.236] [INFO] cheese - inserting 1000 documents. first: Brandon Williams (cornerback, born 1980) and last: File:Christougenna with katy.jpg +[2018-02-13T00:33:07.265] [INFO] cheese - inserting 1000 documents. first: Liposcelis and last: Economic liberalisation in Myanmar +[2018-02-13T00:33:07.276] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:33:07.314] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:33:07.334] [INFO] cheese - inserting 1000 documents. first: Bobrowniki, West Pomeranian Voivodeship and last: Nałęcze, West Pomeranian Voivodeship +[2018-02-13T00:33:07.376] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:33:07.502] [INFO] cheese - inserting 1000 documents. first: 2013 Power Horse Cup – Doubles and last: Template:POTD protected/2013-05-19 +[2018-02-13T00:33:07.503] [INFO] cheese - inserting 1000 documents. first: Philippines Campaign (1944–1945) and last: Udaipur +[2018-02-13T00:33:07.538] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:33:07.542] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:33:07.639] [INFO] cheese - inserting 1000 documents. first: Akkar and last: Pool cue +[2018-02-13T00:33:07.668] [INFO] cheese - inserting 1000 documents. first: Delivery (song) and last: Peyrolles, Gard +[2018-02-13T00:33:07.691] [INFO] cheese - inserting 1000 documents. first: Steymann v Staatssecretaris van Justitie and last: Margaret Pattens +[2018-02-13T00:33:07.709] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:33:07.713] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:33:07.753] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:33:07.813] [INFO] cheese - inserting 1000 documents. first: Orzeń and last: File:Full Metal Jacket poster.jpg +[2018-02-13T00:33:07.821] [INFO] cheese - inserting 1000 documents. first: Software Automatic Mouth and last: Garden centre +[2018-02-13T00:33:07.846] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:33:07.880] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:33:07.960] [INFO] cheese - inserting 1000 documents. first: List of counties and cities in Virginia and last: Cripple Creek (film) +[2018-02-13T00:33:08.016] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:33:08.026] [INFO] cheese - inserting 1000 documents. first: Maximum Entropy and last: Murphy's World +[2018-02-13T00:33:08.082] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Wyoming Highway 74 and last: 2012 Euskaltel-Euskadi season +[2018-02-13T00:33:08.093] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:33:08.141] [INFO] cheese - inserting 1000 documents. first: Pairs figure skater and last: Mykola Tomyn +[2018-02-13T00:33:08.150] [INFO] cheese - inserting 1000 documents. first: Sandy Cohen (ice hockey) and last: Perigonia caryae +[2018-02-13T00:33:08.182] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:33:08.279] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:33:08.304] [INFO] cheese - inserting 1000 documents. first: Lagrange interpolation polynomial and last: Second lake, nova scotia +[2018-02-13T00:33:08.312] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:33:08.388] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:33:08.600] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Swiss films and last: Breakfast at Sweethearts (song) +[2018-02-13T00:33:08.637] [INFO] cheese - inserting 1000 documents. first: Amarpal Singh Ajnala and last: Grand Prix racing +[2018-02-13T00:33:08.650] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:33:08.660] [INFO] cheese - inserting 1000 documents. first: SpaceShipOne flight 13P and last: Edhom +[2018-02-13T00:33:08.687] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:33:08.700] [INFO] cheese - inserting 1000 documents. first: Corston, Somersetshire and last: Wikipedia:WikiProject Spam/LinkReports/spleticna.si +[2018-02-13T00:33:08.710] [INFO] cheese - inserting 1000 documents. first: The Wish to Be An Indian and last: The Earth, A Small Man, His Dog And A Chicken +[2018-02-13T00:33:08.726] [INFO] cheese - inserting 1000 documents. first: Deep mine and last: Weezer ("The Blue Album") +[2018-02-13T00:33:08.735] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T00:33:08.740] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:33:08.752] [INFO] cheese - inserting 1000 documents. first: Lakes in Yukon and last: Wikipedia:Articles for deletion/Criticism of Noam Chomsky (2nd nomination) +[2018-02-13T00:33:08.776] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:33:08.785] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:33:08.827] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:33:09.062] [INFO] cheese - inserting 1000 documents. first: Grind it! Records and last: Category:People from Coolidge, Arizona +[2018-02-13T00:33:09.091] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Criticism of Hugo Chávez (3nd nomination) and last: Columbarium altocanalis +[2018-02-13T00:33:09.098] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by O Muel and last: India cricket team in Zimbabwe in 2016 +[2018-02-13T00:33:09.110] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:33:09.141] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/spleticna.si and last: Orange Bowl (tennis) +[2018-02-13T00:33:09.144] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:33:09.160] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:33:09.203] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:33:09.221] [INFO] cheese - inserting 1000 documents. first: WRKZ and last: Andreja Gomboc +[2018-02-13T00:33:09.224] [INFO] cheese - inserting 1000 documents. first: The Cream & The Crock - The Best Of You Am I and last: Itamar Batista da Silva +[2018-02-13T00:33:09.239] [INFO] cheese - inserting 1000 documents. first: Bangor (Wales) railway station and last: The Ground of Arts +[2018-02-13T00:33:09.281] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:33:09.281] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:33:09.306] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:33:09.566] [INFO] cheese - inserting 1000 documents. first: Columbarium mariae and last: Black supremism +[2018-02-13T00:33:09.584] [INFO] cheese - inserting 1000 documents. first: N-methylpyridinium and last: Template:Santeros de Aguada roster +[2018-02-13T00:33:09.607] [INFO] cheese - inserting 1000 documents. first: The Way (song) and last: Land of Black Gold (film) +[2018-02-13T00:33:09.618] [INFO] cheese - inserting 1000 documents. first: Adhemarius daphne and last: Pablo Barnansi +[2018-02-13T00:33:09.637] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:33:09.728] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:33:09.732] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:33:09.756] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:33:09.861] [INFO] cheese - inserting 1000 documents. first: UAAP Volleyball Champions and last: Great Dodford, Worcestershire +[2018-02-13T00:33:09.904] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:33:09.922] [INFO] cheese - inserting 1000 documents. first: Arithmetick: or, The Grounde of Arts and last: Image stacking +[2018-02-13T00:33:10.026] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:33:10.056] [INFO] cheese - inserting 1000 documents. first: Super Deformed and last: Franklin MacVeagh +[2018-02-13T00:33:10.150] [INFO] cheese - inserting 1000 documents. first: Template:Life graphical timeline and last: Peter Morcom +[2018-02-13T00:33:10.175] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:33:10.214] [INFO] cheese - inserting 1000 documents. first: File:ARS Winnenden.png and last: Jean-Felix Tchicaya +[2018-02-13T00:33:10.279] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:33:10.270] [INFO] cheese - inserting 1000 documents. first: Compé Anansi and last: Art Powell (American football) +[2018-02-13T00:33:10.336] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:33:10.388] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:33:10.410] [INFO] cheese - inserting 1000 documents. first: The Adventures of Tintin: Land of Black Gold and last: Picture It! 2000 +[2018-02-13T00:33:10.530] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:33:10.603] [INFO] cheese - inserting 1000 documents. first: Dąbrówka Kościelna, Greater Poland Voivodeship and last: Saturday Night Live (season 19) +[2018-02-13T00:33:10.680] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:33:10.765] [INFO] cheese - inserting 1000 documents. first: File:Terracina-comune.jpg and last: Downfall (Solitude Aeturnus album) +[2018-02-13T00:33:10.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for permissions/Denied/January 2016 and last: Aaron Frenkel +[2018-02-13T00:33:10.799] [INFO] cheese - inserting 1000 documents. first: Edm. Harbitz and last: Koç Lisesi +[2018-02-13T00:33:10.810] [INFO] cheese - inserting 1000 documents. first: Mordekhay and last: Emaanuel de Witte +[2018-02-13T00:33:10.812] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:33:10.814] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:33:10.853] [INFO] cheese - inserting 1000 documents. first: Puntzi Mountain AS and last: Wikipedia:Join Wikipedia! +[2018-02-13T00:33:10.859] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:33:10.905] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:33:10.948] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:33:11.047] [INFO] cheese - inserting 1000 documents. first: Picture It! 98 and last: Bad video games +[2018-02-13T00:33:11.119] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:33:11.214] [INFO] cheese - inserting 1000 documents. first: B splines and last: Wikipedia:Reference desk/Archives/Mathematics/2007 August 10 +[2018-02-13T00:33:11.258] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:33:11.310] [INFO] cheese - inserting 1000 documents. first: Category:Squats in Spain and last: John Ruch +[2018-02-13T00:33:11.345] [INFO] cheese - inserting 1000 documents. first: Gerald Curatola and last: Eddie DelGrosso +[2018-02-13T00:33:11.352] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:33:11.403] [INFO] cheese - inserting 1000 documents. first: North Dakota Highway Patrol and last: A Vision of Judgment +[2018-02-13T00:33:11.448] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:33:11.524] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:33:11.552] [INFO] cheese - inserting 1000 documents. first: Pulgoki-jip and last: SVREP +[2018-02-13T00:33:11.576] [INFO] cheese - inserting 1000 documents. first: Category:Northern Rugby Football League seasons and last: Bhadaas +[2018-02-13T00:33:11.632] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:33:11.703] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:33:11.834] [INFO] cheese - inserting 1000 documents. first: Arboleas and last: The Tale of Kieu +[2018-02-13T00:33:11.924] [INFO] cheese - inserting 1000 documents. first: Controlled interface and last: Wikipedia:Articles for deletion/Zalefar +[2018-02-13T00:33:11.931] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T00:33:12.017] [INFO] cheese - inserting 1000 documents. first: Template:3OH!3 songs and last: File:Terror Trail poster.jpg +[2018-02-13T00:33:12.025] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:33:12.081] [INFO] cheese - inserting 1000 documents. first: List of provincial historic sites of Alberta and last: Jean Cousin (composer) +[2018-02-13T00:33:12.113] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:33:12.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Philadelphia articles by quality/6 and last: Plesetsk Cosmodrome Site 43 +[2018-02-13T00:33:12.241] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:33:12.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Antony Crockett and last: Shinhwa videography +[2018-02-13T00:33:12.251] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:33:12.311] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:33:12.318] [INFO] cheese - inserting 1000 documents. first: Khulan khatun and last: Flavian Aponso +[2018-02-13T00:33:12.365] [INFO] cheese - inserting 1000 documents. first: Kattur, Thiruvarur district and last: AD 1128 +[2018-02-13T00:33:12.387] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T00:33:12.403] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T00:33:12.528] [INFO] cheese - inserting 1000 documents. first: Reba episodes and last: Anna fantastic +[2018-02-13T00:33:12.550] [INFO] cheese - inserting 1000 documents. first: AD 1127 and last: Tokmakov +[2018-02-13T00:33:12.575] [INFO] cheese - batch complete in: 0.188 secs +[2018-02-13T00:33:12.576] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:33:12.648] [INFO] cheese - inserting 1000 documents. first: Sulawesi Bronze Bush Skink and last: Bustantigo +[2018-02-13T00:33:12.706] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:33:12.719] [INFO] cheese - inserting 1000 documents. first: USS Plunger (SS-2) and last: Majority Leader of the House of Representatives +[2018-02-13T00:33:12.781] [INFO] cheese - inserting 1000 documents. first: Alexis de Tocqueville Center for Political and Legal Thought and last: Guillaume Mathieu, comte Dumas +[2018-02-13T00:33:12.792] [INFO] cheese - inserting 1000 documents. first: Tolombeh-ye 22 Bahman (disambiguation) and last: Category:People from Aousserd +[2018-02-13T00:33:12.795] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T00:33:12.852] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:33:12.861] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:33:12.920] [INFO] cheese - inserting 1000 documents. first: StB and last: BCE Emergis +[2018-02-13T00:33:13.008] [INFO] cheese - inserting 1000 documents. first: Holyrood Church, Swindon and last: Episcopal Bishop of Pittsburgh +[2018-02-13T00:33:13.038] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:33:13.074] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:33:13.119] [INFO] cheese - inserting 1000 documents. first: Aranwë and last: Robert B. Campbell +[2018-02-13T00:33:13.164] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:33:13.180] [INFO] cheese - inserting 1000 documents. first: 1981 Custom Credit Australian Indoor Championships – Doubles and last: Battle of Barry (folklore) +[2018-02-13T00:33:13.237] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:33:13.423] [INFO] cheese - inserting 1000 documents. first: Yoojimboo (movie) and last: Parthenon marbles +[2018-02-13T00:33:13.427] [INFO] cheese - inserting 1000 documents. first: Category:People from Bryson City, North Carolina and last: 1929 Yugoslav First League +[2018-02-13T00:33:13.454] [INFO] cheese - inserting 1000 documents. first: Category:People from Augustenborg, Denmark and last: Template:ALeagueVenue Suncorp +[2018-02-13T00:33:13.463] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Bishop of Pittsburgh and last: Mein Kampf in the Arabic language +[2018-02-13T00:33:13.474] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:33:13.476] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:33:13.502] [INFO] cheese - inserting 1000 documents. first: Acustic and last: Melzer See +[2018-02-13T00:33:13.505] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:33:13.517] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:33:13.545] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:33:13.556] [INFO] cheese - inserting 1000 documents. first: Capital Research & Management Company and last: Great Highland Bagpipe +[2018-02-13T00:33:13.631] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:33:13.635] [INFO] cheese - inserting 1000 documents. first: William Elliott (American politician) and last: Nebiryraw I +[2018-02-13T00:33:13.694] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:33:13.806] [INFO] cheese - inserting 1000 documents. first: AunaCable and last: Lake Schmachter +[2018-02-13T00:33:13.829] [INFO] cheese - inserting 1000 documents. first: CBB17 and last: Vanitha (disambiguation) +[2018-02-13T00:33:13.846] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:33:13.868] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:33:13.889] [INFO] cheese - inserting 1000 documents. first: 1930 Yugoslav First League and last: Subhi Bay Barakat al-Khalidi +[2018-02-13T00:33:13.941] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:33:13.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Robson Chavez Santana and last: Anti-Vietnam War activism +[2018-02-13T00:33:14.017] [INFO] cheese - inserting 1000 documents. first: Gstreamer and last: Samuel C. Hyde +[2018-02-13T00:33:14.033] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:33:14.052] [INFO] cheese - inserting 1000 documents. first: Nicole Genier and last: Trinidad and Tobago general election, 1956 +[2018-02-13T00:33:14.088] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:33:14.111] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:33:14.119] [INFO] cheese - inserting 1000 documents. first: John O'Keefe and last: William Semple Green +[2018-02-13T00:33:14.283] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:33:14.315] [INFO] cheese - inserting 1000 documents. first: Großer Prebelow Lake and last: File:For Better or Worse coming out panel.PNG +[2018-02-13T00:33:14.393] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:33:14.400] [INFO] cheese - inserting 1000 documents. first: Category:Manufacturing companies established in 1891 and last: Kcee (disambiguation) +[2018-02-13T00:33:14.474] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:33:14.505] [INFO] cheese - inserting 1000 documents. first: Priory Green Primary School and last: Ranks of the French Navy +[2018-02-13T00:33:14.571] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:33:14.647] [INFO] cheese - inserting 1000 documents. first: Peptidyl-glutamate 4-carboxylase and last: Pyreinoye gas field +[2018-02-13T00:33:14.668] [INFO] cheese - inserting 1000 documents. first: Let's Polka! and last: Wikipedia:Administrators' noticeboard/IncidentArchive284 +[2018-02-13T00:33:14.697] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:33:14.752] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:33:14.819] [INFO] cheese - inserting 1000 documents. first: Kennedy Polamalu and last: Quenby Fung +[2018-02-13T00:33:14.821] [INFO] cheese - inserting 1000 documents. first: Esteé Lauder and last: China (Vangelis album) +[2018-02-13T00:33:14.825] [INFO] cheese - inserting 1000 documents. first: Rana bolavensis and last: Buluan Lake +[2018-02-13T00:33:14.845] [INFO] cheese - inserting 1000 documents. first: Kenmore House (disambiguation) and last: Portal:Prehistory of North America/DYK/15 +[2018-02-13T00:33:14.861] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:33:14.878] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:33:14.894] [INFO] cheese - inserting 1000 documents. first: Anguissola and last: Wegie +[2018-02-13T00:33:14.897] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:33:14.901] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:33:14.954] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:33:15.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/WDL/Participants and last: Jonaicha khurd +[2018-02-13T00:33:15.170] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:33:15.201] [INFO] cheese - inserting 1000 documents. first: File:OPENING OF THE ACCESSIBLE PATHWAY AT MOUNT LAVINIA POST OFFICE .JPG and last: Playoff (disambiguation) +[2018-02-13T00:33:15.241] [INFO] cheese - inserting 1000 documents. first: File:Gb 16loverslane.JPG and last: Category:Asian film director stubs +[2018-02-13T00:33:15.264] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:33:15.363] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:33:15.445] [INFO] cheese - inserting 1000 documents. first: Re-cap and last: Wikipedia:Articles for deletion/Elective surgery (male-to-female) +[2018-02-13T00:33:15.505] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:33:15.507] [INFO] cheese - inserting 1000 documents. first: Feysville, Western Australia and last: Eddy Ham +[2018-02-13T00:33:15.514] [INFO] cheese - inserting 1000 documents. first: Portal:Prehistory of North America/DYK/16 and last: Advanced Dungeons and Dragons Player's Handbook +[2018-02-13T00:33:15.569] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:33:15.581] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:33:15.663] [INFO] cheese - inserting 1000 documents. first: Frontera (2014 film) and last: Nemontemi +[2018-02-13T00:33:15.716] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:33:15.718] [INFO] cheese - inserting 1000 documents. first: Jiganski Ulus and last: Tercentenary Lectures +[2018-02-13T00:33:15.800] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:33:15.818] [INFO] cheese - inserting 1000 documents. first: Advanced Dungeons and Dragons Player's Handbook 1st edition and last: Shedu (Dungeons and Dragons) +[2018-02-13T00:33:15.831] [INFO] cheese - inserting 1000 documents. first: Diocese of Katiola and last: File:AFC Wallingford Badge.png +[2018-02-13T00:33:15.839] [INFO] cheese - inserting 1000 documents. first: Ice cream headache and last: R. Pacheco +[2018-02-13T00:33:15.845] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:33:15.894] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:33:15.948] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T00:33:16.043] [INFO] cheese - inserting 1000 documents. first: Infinity chili and last: Distributed Access Control System (DACS) +[2018-02-13T00:33:16.083] [INFO] cheese - inserting 1000 documents. first: Jaigaon and last: Wikipedia:Articles for deletion/Wikitrip +[2018-02-13T00:33:16.118] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:33:16.214] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:33:16.246] [INFO] cheese - inserting 1000 documents. first: Georges-Robert Lefort and last: List of hospitals in Indianapolis +[2018-02-13T00:33:16.284] [INFO] cheese - inserting 1000 documents. first: Okamura island and last: Collège Saint Joseph – Antoura +[2018-02-13T00:33:16.301] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:33:16.346] [INFO] cheese - inserting 1000 documents. first: File:NIS lynyrd.png and last: Angel Cerenkov +[2018-02-13T00:33:16.346] [INFO] cheese - inserting 1000 documents. first: Shifter (Dungeons and Dragons) and last: Cicely Blair +[2018-02-13T00:33:16.347] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:33:16.413] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:33:16.483] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:33:16.655] [INFO] cheese - inserting 1000 documents. first: Iowa courthouses and last: List of major power stations in Gansu +[2018-02-13T00:33:16.706] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:33:16.721] [INFO] cheese - inserting 1000 documents. first: Bond van Vrije Liberalen and last: USFPS +[2018-02-13T00:33:16.738] [INFO] cheese - inserting 1000 documents. first: Imperial Valley lettuce strike of 1930 and last: Buddy (Italian singer) +[2018-02-13T00:33:16.776] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:33:16.786] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:33:16.795] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Otsego County, Michigan and last: Weston Doty +[2018-02-13T00:33:16.816] [INFO] cheese - inserting 1000 documents. first: Bush administration (2000) and last: Category:Satirical television programmes +[2018-02-13T00:33:16.846] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:33:16.882] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T00:33:16.947] [INFO] cheese - inserting 1000 documents. first: Actinomyces glaucescens and last: Wikipedia:Articles for deletion/Ashlei Nemer +[2018-02-13T00:33:16.996] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:33:17.010] [INFO] cheese - inserting 1000 documents. first: Trod and last: Wikipedia:Reference desk/Archives/Entertainment/2007 August 12 +[2018-02-13T00:33:17.074] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:33:17.084] [INFO] cheese - inserting 1000 documents. first: Tahar Ben Ammar and last: Elizabeth Ellery Bailey +[2018-02-13T00:33:17.139] [INFO] cheese - inserting 1000 documents. first: Category:Belgian amputees and last: Wikipedia:WikiProject American music/tasks/Under review/FSC +[2018-02-13T00:33:17.142] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:33:17.187] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:33:17.248] [INFO] cheese - inserting 1000 documents. first: US Post Office (Westhampton Beach, New York) and last: Canadian Biography Online +[2018-02-13T00:33:17.296] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:33:17.301] [INFO] cheese - inserting 1000 documents. first: Paeonia californica and last: Botanical Beach, British Columbia +[2018-02-13T00:33:17.308] [INFO] cheese - inserting 1000 documents. first: 2014-15 DePaul Blue Demons men's basketball team and last: Zachary lazar +[2018-02-13T00:33:17.349] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:33:17.368] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:33:17.450] [INFO] cheese - inserting 1000 documents. first: File:Last DanceClare.jpg and last: Portal:Syracuse, New York/Old postcards/157 +[2018-02-13T00:33:17.479] [INFO] cheese - inserting 1000 documents. first: U.G. Krishnamurti and last: The Witness (1969 French film) +[2018-02-13T00:33:17.489] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:33:17.527] [INFO] cheese - inserting 1000 documents. first: Rinjūken Akugata and last: KISS IN THE SKY +[2018-02-13T00:33:17.542] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject American Old West/tasks/Under review/FSC and last: 3-hydroxydecanoyl-(acyl-carrier-protein) dehydratase +[2018-02-13T00:33:17.547] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:33:17.569] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:33:17.601] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:33:17.746] [INFO] cheese - inserting 1000 documents. first: Template:2011 Australian International Rules Team and last: Mbwana Samatta +[2018-02-13T00:33:17.793] [INFO] cheese - inserting 1000 documents. first: Inward and last: Iberoamerican Association of Postgraduate Universities +[2018-02-13T00:33:17.811] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:33:17.895] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:33:18.009] [INFO] cheese - inserting 1000 documents. first: Thomas Morey and last: Leo Burke +[2018-02-13T00:33:18.034] [INFO] cheese - inserting 1000 documents. first: Brecon RFC and last: Gladiators (UK) +[2018-02-13T00:33:18.076] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:33:18.078] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:33:18.140] [INFO] cheese - inserting 1000 documents. first: Eystein Ivarsson and last: Elana Eden +[2018-02-13T00:33:18.182] [INFO] cheese - inserting 1000 documents. first: LM 22A4 and last: End Productions +[2018-02-13T00:33:18.190] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:33:18.223] [INFO] cheese - inserting 1000 documents. first: EC 4.2.1.60 and last: Sunnyfields (Simeon, Virginia) +[2018-02-13T00:33:18.255] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:33:18.298] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:33:18.303] [INFO] cheese - inserting 1000 documents. first: Virginia-class cruiser and last: Transdermal patch +[2018-02-13T00:33:18.381] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:33:18.505] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for comment/User names/Index and last: Proletariet +[2018-02-13T00:33:18.540] [INFO] cheese - inserting 1000 documents. first: Super Street Fighter and last: Summer Hill railway station, Sydney +[2018-02-13T00:33:18.552] [INFO] cheese - inserting 1000 documents. first: File:Tuskegee Experiments (Byron).jpg and last: Knjaz Miloš a.d. +[2018-02-13T00:33:18.554] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:33:18.593] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:33:18.607] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:33:18.650] [INFO] cheese - inserting 1000 documents. first: File:Red Red Meat - Jimmywine Majestic.jpg and last: Template:ISO 3166 code Portugal Madeira +[2018-02-13T00:33:18.697] [INFO] cheese - inserting 1000 documents. first: Portal:Orissa/Selected picture/5 and last: Counter steer +[2018-02-13T00:33:18.700] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:33:18.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jaylen D Bledsoe and last: Martin (1999 cyclone) +[2018-02-13T00:33:18.761] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:33:18.776] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:33:18.939] [INFO] cheese - inserting 1000 documents. first: Palk Straight and last: János Koppány +[2018-02-13T00:33:18.981] [INFO] cheese - inserting 1000 documents. first: Conops vesicularis and last: File:InTheCountryOfLastThings.jpg +[2018-02-13T00:33:19.029] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:33:19.100] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:33:19.145] [INFO] cheese - inserting 1000 documents. first: USS Roosevelt (DDG-80) and last: Repeat --- The Best of Jethro Tull --- Vol II +[2018-02-13T00:33:19.147] [INFO] cheese - inserting 1000 documents. first: Ibrox Primary School and last: Burns T. Walling +[2018-02-13T00:33:19.277] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:33:19.301] [INFO] cheese - inserting 1000 documents. first: Lalisha nurani and last: Noahs Ark +[2018-02-13T00:33:19.301] [INFO] cheese - inserting 1000 documents. first: Martin (1986 cyclone) and last: Template:R from included subject +[2018-02-13T00:33:19.309] [INFO] cheese - inserting 1000 documents. first: Martial Premat and last: National Law Center on Homelessness and Poverty +[2018-02-13T00:33:19.361] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T00:33:19.381] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:33:19.417] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:33:19.518] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:33:19.790] [INFO] cheese - inserting 1000 documents. first: Vladimir Highway and last: Peire de la Gavarana +[2018-02-13T00:33:19.880] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:33:19.894] [INFO] cheese - inserting 1000 documents. first: Category:Kerry Ellis and last: Oklahoma (wine) +[2018-02-13T00:33:19.961] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:33:19.977] [INFO] cheese - inserting 1000 documents. first: 1974 Individual Ice Speedway World Championship and last: Driving license in the Netherlands +[2018-02-13T00:33:19.981] [INFO] cheese - inserting 1000 documents. first: Nanawa Station and last: Uroconger erythraeus +[2018-02-13T00:33:20.057] [INFO] cheese - inserting 1000 documents. first: Muslim Educational Society and last: Vineland nj +[2018-02-13T00:33:20.058] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:33:20.063] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:33:20.139] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1976 Summer Olympics – Men's 200 metre breaststroke and last: International Harvester corporation +[2018-02-13T00:33:20.147] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:33:20.226] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:33:20.383] [INFO] cheese - inserting 1000 documents. first: Peire de la Cà Varana and last: Socialist Register +[2018-02-13T00:33:20.413] [INFO] cheese - inserting 1000 documents. first: Category:2008 in kickboxing and last: ISIRI 6788 +[2018-02-13T00:33:20.430] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:33:20.453] [INFO] cheese - inserting 1000 documents. first: Liar's Poker and last: Charles M. Price +[2018-02-13T00:33:20.474] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:33:20.502] [INFO] cheese - inserting 1000 documents. first: Category:Polish Servants of God and last: File:TheMeaningOfAnxiety.jpg +[2018-02-13T00:33:20.540] [INFO] cheese - inserting 1000 documents. first: Aqua Pura and last: Goodman's Law +[2018-02-13T00:33:20.546] [INFO] cheese - batch complete in: 1.185 secs +[2018-02-13T00:33:20.562] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:33:20.654] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:33:20.694] [INFO] cheese - inserting 1000 documents. first: Bonus tax and last: File:Illsaharemkeeper.jpg +[2018-02-13T00:33:20.750] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:33:20.804] [INFO] cheese - inserting 1000 documents. first: International Harvester Corporation and last: Frenstat +[2018-02-13T00:33:20.836] [INFO] cheese - inserting 1000 documents. first: Ričardas Zdančius and last: National Energy Foundation +[2018-02-13T00:33:20.854] [INFO] cheese - inserting 1000 documents. first: DWSY and last: Bellator 44 +[2018-02-13T00:33:20.857] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:33:20.894] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:33:20.983] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:33:21.095] [INFO] cheese - inserting 1000 documents. first: Alan MacRuairi and last: List of fictional United States presidencies of historical figures (A–G) +[2018-02-13T00:33:21.109] [INFO] cheese - inserting 1000 documents. first: János Székely (writer) and last: Grangnolo +[2018-02-13T00:33:21.184] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:33:21.210] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:33:21.299] [INFO] cheese - inserting 1000 documents. first: Lai neir and last: Björneborgarnas marsch +[2018-02-13T00:33:21.349] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:33:21.379] [INFO] cheese - inserting 1000 documents. first: Charles Melvin Price and last: USAir Arena +[2018-02-13T00:33:21.446] [INFO] cheese - inserting 1000 documents. first: Template:User Rājasthān and last: Lofthouse (disambiguation) +[2018-02-13T00:33:21.447] [INFO] cheese - inserting 1000 documents. first: Opština Opovo and last: Lynnhaven Roads +[2018-02-13T00:33:21.450] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:33:21.500] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:33:21.503] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:33:21.575] [INFO] cheese - inserting 1000 documents. first: File:Night Ranger.jpg and last: Liverpool Warriors +[2018-02-13T00:33:21.629] [INFO] cheese - inserting 1000 documents. first: List of fictional United States presidencies of historical figures (H–J) and last: Johann Scheubel +[2018-02-13T00:33:21.630] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:33:21.654] [INFO] cheese - inserting 1000 documents. first: Bulbourethral and last: Sir John Habakkuk +[2018-02-13T00:33:21.678] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:33:21.729] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:33:21.743] [INFO] cheese - inserting 1000 documents. first: Gertrude Lübbe-Wolff and last: Moya Brennan Band +[2018-02-13T00:33:21.787] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:33:21.851] [INFO] cheese - inserting 1000 documents. first: Dorset Police Authority and last: Paparazzi eye in the dark +[2018-02-13T00:33:21.898] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:33:21.920] [INFO] cheese - inserting 1000 documents. first: List of athletics clubs in Luxembourg and last: Feelin' Sorry...For All The Hearts We've Broken +[2018-02-13T00:33:21.985] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:33:22.060] [INFO] cheese - inserting 1000 documents. first: Gustave Pelgrims and last: Maggie Mancuso +[2018-02-13T00:33:22.065] [INFO] cheese - inserting 1000 documents. first: True real mode and last: File:Portsmouth Naval Prison.jpg +[2018-02-13T00:33:22.099] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:33:22.107] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:33:22.138] [INFO] cheese - inserting 1000 documents. first: File:CJIQ-FM.png and last: Hierodula fruhstorferi +[2018-02-13T00:33:22.177] [INFO] cheese - inserting 1000 documents. first: Monthélie (AOC) and last: Category:States and territories disestablished in 1792 +[2018-02-13T00:33:22.181] [INFO] cheese - inserting 1000 documents. first: Slovak People's Party and last: Gaunts ghosts +[2018-02-13T00:33:22.222] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:33:22.235] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:33:22.270] [INFO] cheese - inserting 1000 documents. first: Saint Matfiy and last: Binary pase shift keying +[2018-02-13T00:33:22.275] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:33:22.343] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:33:22.534] [INFO] cheese - inserting 1000 documents. first: Fever In Fever Out and last: Tourneville +[2018-02-13T00:33:22.612] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:33:22.622] [INFO] cheese - inserting 1000 documents. first: Superior Catholic Finger and last: Eid Church (Rauma) +[2018-02-13T00:33:22.681] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:33:22.682] [INFO] cheese - inserting 1000 documents. first: Category:States and territories disestablished in 1833 and last: Lopinavir/ritonavir +[2018-02-13T00:33:22.699] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sajwan Nagar Mitthepur and last: Saleem Mairaj +[2018-02-13T00:33:22.740] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:33:22.757] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:33:22.793] [INFO] cheese - inserting 1000 documents. first: George Bowen (footballer) and last: Wikipedia:Articles for deletion/Carpatair Flight 128 +[2018-02-13T00:33:22.851] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:33:22.984] [INFO] cheese - inserting 1000 documents. first: Billingsdal and last: George Wallace (disambiguation) +[2018-02-13T00:33:22.998] [INFO] cheese - inserting 1000 documents. first: Kotomitsuki and last: Redruth RFC +[2018-02-13T00:33:23.002] [INFO] cheese - inserting 1000 documents. first: Holm Church and last: 2009 APRA Silver Scroll Awards +[2018-02-13T00:33:23.041] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:33:23.059] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:33:23.061] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:33:23.075] [INFO] cheese - inserting 1000 documents. first: Cornelius O. Jansen and last: T. Gehrels +[2018-02-13T00:33:23.095] [INFO] cheese - inserting 1000 documents. first: Latham Trimotor and last: Cabaret (2015 film) +[2018-02-13T00:33:23.104] [INFO] cheese - inserting 1000 documents. first: Grand Sassiere and last: Bers slice +[2018-02-13T00:33:23.145] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:33:23.147] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:33:23.175] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:33:23.235] [INFO] cheese - inserting 1000 documents. first: File:Maqbaratoshoara09.jpg and last: Cristina Favre +[2018-02-13T00:33:23.277] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:33:23.453] [INFO] cheese - inserting 1000 documents. first: Interactive Systems and last: Category:Over 30s v Under 30s cricketers +[2018-02-13T00:33:23.456] [INFO] cheese - inserting 1000 documents. first: Alfred Marten and last: Dowty, David +[2018-02-13T00:33:23.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alternative Living and last: .lnk +[2018-02-13T00:33:23.489] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:33:23.501] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:33:23.530] [INFO] cheese - inserting 1000 documents. first: Category:New Taipei Members of the Legislative Yuan and last: Iranian Basketball Super League 1998–99 +[2018-02-13T00:33:23.533] [INFO] cheese - inserting 1000 documents. first: Annetta and last: Bartlett, TN +[2018-02-13T00:33:23.538] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:33:23.579] [INFO] cheese - inserting 1000 documents. first: Anthony John La Rose and last: Lecithocera tumidosa +[2018-02-13T00:33:23.587] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:33:23.595] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:33:23.707] [INFO] cheese - inserting 1000 documents. first: Epoque hotels and last: Khanbal +[2018-02-13T00:33:23.713] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:33:23.759] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:33:23.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Syracuse to Washington, DC flights and last: Bertsch-Oceanview, CA +[2018-02-13T00:33:23.956] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:33:24.002] [INFO] cheese - inserting 1000 documents. first: Aleksi Makela and last: Chah Zard 1 +[2018-02-13T00:33:24.018] [INFO] cheese - inserting 1000 documents. first: Elitis and last: Picotamide +[2018-02-13T00:33:24.044] [INFO] cheese - inserting 1000 documents. first: Iranian Basketball Super League 1999–00 and last: Grimoire of exalted deeds +[2018-02-13T00:33:24.051] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:33:24.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for discussion/2016 January 12 and last: Category:Sports leagues established in 1886 +[2018-02-13T00:33:24.085] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:33:24.152] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:33:24.164] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:33:24.197] [INFO] cheese - inserting 1000 documents. first: Wattenmeer and last: Boyd County, KY +[2018-02-13T00:33:24.227] [INFO] cheese - inserting 1000 documents. first: Acrochordonichthys pachyderma and last: Murphy Lake (Price County, Wisconsin) +[2018-02-13T00:33:24.230] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:33:24.243] [INFO] cheese - inserting 1000 documents. first: Davrian and last: Unsolved English murders +[2018-02-13T00:33:24.273] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:33:24.304] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:33:24.503] [INFO] cheese - inserting 1000 documents. first: Nizhny Arkhyz and last: Sunnyside Hospital +[2018-02-13T00:33:24.507] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 May 29 and last: DPMI kernel +[2018-02-13T00:33:24.527] [INFO] cheese - inserting 1000 documents. first: Blepephaeus multinotatus and last: 1st Radio Squadron, Mobile +[2018-02-13T00:33:24.541] [INFO] cheese - inserting 1000 documents. first: Grimoire of Exalted Deeds and last: Battle of St Pol de Leon +[2018-02-13T00:33:24.551] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:33:24.568] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:33:24.573] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:33:24.598] [INFO] cheese - inserting 1000 documents. first: Boyd County, NE and last: Wikipedia:Articles for deletion/List of every mayor in the World +[2018-02-13T00:33:24.609] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:33:24.625] [INFO] cheese - inserting 1000 documents. first: Template:Railclosed color and last: Wei Chun +[2018-02-13T00:33:24.654] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:33:24.681] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:33:24.770] [INFO] cheese - inserting 1000 documents. first: All About Eve (album) and last: Portal:Video games/Wikimedia +[2018-02-13T00:33:24.850] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:33:24.892] [INFO] cheese - inserting 1000 documents. first: Lemuel Goodell and last: National Interagency Confederation for Biological Research +[2018-02-13T00:33:24.953] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:33:25.003] [INFO] cheese - inserting 1000 documents. first: WYAP-LP and last: Reactive material +[2018-02-13T00:33:25.017] [INFO] cheese - inserting 1000 documents. first: Spanish Song Book and last: Dress reform parlor +[2018-02-13T00:33:25.065] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:33:25.084] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:33:25.124] [INFO] cheese - inserting 1000 documents. first: United Presbyterian Church (disambiguation) and last: Portal:Professional wrestling/Did you know/56 +[2018-02-13T00:33:25.181] [INFO] cheese - inserting 1000 documents. first: Julien MacDonald and last: File:KeyToRebecca.jpg +[2018-02-13T00:33:25.187] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:33:25.216] [INFO] cheese - inserting 1000 documents. first: AS-105 (spacecraft) and last: Brooksville, MS +[2018-02-13T00:33:25.245] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:33:25.279] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:33:25.404] [INFO] cheese - inserting 1000 documents. first: Abdul Kader Haïdara and last: Pietrele River (Râmnicul Sărat) +[2018-02-13T00:33:25.443] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:33:25.470] [INFO] cheese - inserting 1000 documents. first: Effective sample size and last: File:Transpacific Flight.jpg +[2018-02-13T00:33:25.510] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:33:25.513] [INFO] cheese - inserting 1000 documents. first: GU-50 and last: Purusha-Sukta +[2018-02-13T00:33:25.526] [INFO] cheese - inserting 1000 documents. first: British institute of florence and last: Wikipedia:WikiProject Spam/LinkReports/british.tv +[2018-02-13T00:33:25.534] [INFO] cheese - inserting 1000 documents. first: 1999 Washington Summit and last: Gabros United +[2018-02-13T00:33:25.580] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:33:25.583] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:33:25.623] [INFO] cheese - inserting 1000 documents. first: Category:1642 establishments in the Thirteen Colonies and last: Hariharganj block +[2018-02-13T00:33:25.629] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:33:25.663] [INFO] cheese - inserting 1000 documents. first: Brooksville, OK and last: Lyon Playfair +[2018-02-13T00:33:25.693] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:33:25.718] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:33:25.868] [INFO] cheese - inserting 1000 documents. first: Basilica of the Sacred Heart of Jesus, Syracuse and last: Thiomonas islandica +[2018-02-13T00:33:25.929] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:33:25.936] [INFO] cheese - inserting 1000 documents. first: Survey mark and last: Simon Jackson (cricketer) +[2018-02-13T00:33:25.971] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:33:25.983] [INFO] cheese - inserting 1000 documents. first: Moxos Plains and last: Land reform in zimbabwe +[2018-02-13T00:33:26.008] [INFO] cheese - inserting 1000 documents. first: Purusa and last: Sudan Peoples' Liberation Movement +[2018-02-13T00:33:26.013] [INFO] cheese - inserting 1000 documents. first: File:Stigata album.jpg and last: Joe mcelveen +[2018-02-13T00:33:26.024] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:33:26.050] [INFO] cheese - inserting 1000 documents. first: Wating and last: Category:Protected areas of Green County, Wisconsin +[2018-02-13T00:33:26.055] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:33:26.120] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:33:26.129] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:33:26.271] [INFO] cheese - inserting 1000 documents. first: Kuusjoki and last: Carlinville, IL +[2018-02-13T00:33:26.401] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:33:26.481] [INFO] cheese - inserting 1000 documents. first: زهران علوش and last: 1960s in European fashion +[2018-02-13T00:33:26.535] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:33:26.588] [INFO] cheese - inserting 1000 documents. first: EC 4.4.1.13 and last: Civsoc brunel +[2018-02-13T00:33:26.655] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Realzdealzio2 and last: MPQ-64 Sentinel +[2018-02-13T00:33:26.659] [INFO] cheese - inserting 1000 documents. first: Portal:Dragon Ball/Related portals and last: NOPSI +[2018-02-13T00:33:26.666] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:33:26.695] [INFO] cheese - inserting 1000 documents. first: List of Kolkata facts and last: Miłość w czasach popkultury +[2018-02-13T00:33:26.715] [INFO] cheese - inserting 1000 documents. first: 30th Air Defense Missile Squadron and last: Portal:United States/Anniversaries/January/January 16 +[2018-02-13T00:33:26.714] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:33:26.739] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:33:26.775] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:33:26.796] [INFO] cheese - inserting 1000 documents. first: Carlisle, AR and last: Cherokee, IA +[2018-02-13T00:33:26.801] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:33:26.864] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:33:26.913] [INFO] cheese - inserting 1000 documents. first: Annonay International Film Festival and last: Wikipedia:Requests for mediation/kebo gotti +[2018-02-13T00:33:26.959] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:33:27.107] [INFO] cheese - inserting 1000 documents. first: Tomarchio and last: IBM DOS 4.00 +[2018-02-13T00:33:27.129] [INFO] cheese - inserting 1000 documents. first: Cherokee, KS and last: Clinton County, IL +[2018-02-13T00:33:27.133] [INFO] cheese - inserting 1000 documents. first: Eaglestone and last: Dhaka zila +[2018-02-13T00:33:27.137] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:33:27.181] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:33:27.202] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:33:27.239] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Anniversaries/January/January 17 and last: Category:Towns in Bayfield County, Wisconsin +[2018-02-13T00:33:27.294] [INFO] cheese - inserting 1000 documents. first: Souari Nut and last: Beliefnet.com +[2018-02-13T00:33:27.305] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:33:27.335] [INFO] cheese - inserting 1000 documents. first: 3T Meets the Family of Soul and last: File:SIB structure.jpg +[2018-02-13T00:33:27.363] [INFO] cheese - inserting 1000 documents. first: Arevik National Park and last: Morning Service +[2018-02-13T00:33:27.369] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:33:27.428] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:33:27.433] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:33:27.444] [INFO] cheese - inserting 1000 documents. first: Clinton County, IN and last: Couderay (village), Sawyer County, WI +[2018-02-13T00:33:27.503] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:33:27.550] [INFO] cheese - inserting 1000 documents. first: Smeaton's lighthouse and last: Buraq, Syria +[2018-02-13T00:33:27.602] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:33:27.743] [INFO] cheese - inserting 1000 documents. first: Pericallia matronula and last: Category:1972 in sport wrestling +[2018-02-13T00:33:27.747] [INFO] cheese - inserting 1000 documents. first: Air-tractor sledge and last: Pärnu Tervis +[2018-02-13T00:33:27.800] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:33:27.810] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:33:27.819] [INFO] cheese - inserting 1000 documents. first: Slackers CDs and Games and last: Hindle Wakes (play) +[2018-02-13T00:33:27.851] [INFO] cheese - inserting 1000 documents. first: Dairy production and last: Philmont Scout Ranch flash flood +[2018-02-13T00:33:27.881] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:33:27.903] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:33:27.909] [INFO] cheese - inserting 1000 documents. first: Colony Club and last: Bank Rakyat Indonesia +[2018-02-13T00:33:27.951] [INFO] cheese - inserting 1000 documents. first: Couderay (village), WI and last: Lakewood Freeway +[2018-02-13T00:33:27.994] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:33:28.026] [INFO] cheese - inserting 1000 documents. first: Braq and last: Antun +[2018-02-13T00:33:28.042] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:33:28.139] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:33:28.296] [INFO] cheese - inserting 1000 documents. first: Joan McArthur and last: My Gospel +[2018-02-13T00:33:28.326] [INFO] cheese - inserting 1000 documents. first: Demarquette Lee and last: Pârlita River (Taița) +[2018-02-13T00:33:28.345] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:33:28.347] [INFO] cheese - inserting 1000 documents. first: 1998 'Friendship' Cup and last: Arachniography +[2018-02-13T00:33:28.356] [INFO] cheese - inserting 1000 documents. first: Victoria Hall (Ontario) and last: Birkat Hachammah +[2018-02-13T00:33:28.383] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:33:28.390] [INFO] cheese - inserting 1000 documents. first: Cumberland County, KY and last: 1960–61 United States network television schedule +[2018-02-13T00:33:28.420] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:33:28.449] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:33:28.512] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:33:28.645] [INFO] cheese - inserting 1000 documents. first: NCAA Division I Men's Swimming and Diving Championships and last: Association of Writers of Montenegro +[2018-02-13T00:33:28.691] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:33:28.709] [INFO] cheese - inserting 1000 documents. first: Portal:Theatre/Selected article and last: Bulan Sabriel +[2018-02-13T00:33:28.799] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:33:28.913] [INFO] cheese - inserting 1000 documents. first: Alseodaphne and last: File:Mexia Public Schools Museum.JPG +[2018-02-13T00:33:28.916] [INFO] cheese - inserting 1000 documents. first: Delaware County, IN and last: Paul Rebhan +[2018-02-13T00:33:28.929] [INFO] cheese - inserting 1000 documents. first: Category:Gucci Mane songs and last: Sea Ape +[2018-02-13T00:33:28.950] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:33:28.956] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:33:28.981] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:33:29.026] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2016 January 31 and last: Wikipedia:Articles for deletion/Binibining Pilipinas 2016 +[2018-02-13T00:33:29.047] [INFO] cheese - inserting 1000 documents. first: R550 Magic and last: As Long As I'm Rockin' with You +[2018-02-13T00:33:29.092] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:33:29.107] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:33:29.224] [INFO] cheese - inserting 1000 documents. first: Philip Morris v. Uruguay and last: Valerie Coleman +[2018-02-13T00:33:29.252] [INFO] cheese - inserting 1000 documents. first: Category:Places of worship in Finland and last: The Darcy School (New Jersey) +[2018-02-13T00:33:29.275] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:33:29.317] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:33:29.352] [INFO] cheese - inserting 1000 documents. first: Dunwoody, GA and last: Elderton, PA +[2018-02-13T00:33:29.388] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:33:29.517] [INFO] cheese - inserting 1000 documents. first: Back to Nature for Girl and last: Asteropeia mcphersonii +[2018-02-13T00:33:29.530] [INFO] cheese - inserting 1000 documents. first: Template:Santa Maria Bulacan and last: FM-index +[2018-02-13T00:33:29.598] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:33:29.639] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:33:29.677] [INFO] cheese - inserting 1000 documents. first: Representation of Soul and Body and last: Category:St. Louis Rams draft navigational boxes +[2018-02-13T00:33:29.711] [INFO] cheese - inserting 1000 documents. first: Category:People from Egedal Municipality and last: Serbian Orthodox Eparchy of Australia and New Zealand +[2018-02-13T00:33:29.757] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:33:29.832] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:33:29.912] [INFO] cheese - inserting 1000 documents. first: Eldon, IA and last: Natural deduction logic +[2018-02-13T00:33:29.961] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:33:29.990] [INFO] cheese - inserting 1000 documents. first: Michael Klein (businessman) and last: Thomas Anderson (footballer) +[2018-02-13T00:33:30.058] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T00:33:30.099] [INFO] cheese - inserting 1000 documents. first: Blank Firing Attachment and last: Homer Simpson, This is Your Wife +[2018-02-13T00:33:30.137] [INFO] cheese - inserting 1000 documents. first: Category:Ruderal species and last: Reading F.C. season 2004-05 +[2018-02-13T00:33:30.187] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:33:30.192] [INFO] cheese - inserting 1000 documents. first: Asteropeia micraster and last: Bomarea angustifolia +[2018-02-13T00:33:30.199] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T00:33:30.308] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:33:30.464] [INFO] cheese - inserting 1000 documents. first: Solar Aircraft Company and last: El Camino de los gatos +[2018-02-13T00:33:30.465] [INFO] cheese - inserting 1000 documents. first: Survival Island 3 and last: Pre-1967 borders +[2018-02-13T00:33:30.514] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:33:30.518] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:33:30.648] [INFO] cheese - inserting 1000 documents. first: Mohawk Airlines and last: Yushan (mountain) +[2018-02-13T00:33:30.691] [INFO] cheese - inserting 1000 documents. first: Category:Vice-Chancellors of the University of Jaffna and last: 2013–14 Phoenix Coyotes season +[2018-02-13T00:33:30.695] [INFO] cheese - inserting 1000 documents. first: Reading F.C. season 2005-06 and last: Nagahama (moth) +[2018-02-13T00:33:30.728] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:33:30.741] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:33:30.781] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:33:30.850] [INFO] cheese - inserting 1000 documents. first: Mitch Williams (General Hospital) and last: Who Got The Gravy? +[2018-02-13T00:33:30.936] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:33:30.998] [INFO] cheese - inserting 1000 documents. first: Smash bros. melee and last: Scared Famous/FF» (Haunted Graffiti 3–4) +[2018-02-13T00:33:31.026] [INFO] cheese - inserting 1000 documents. first: Very Mary-Kate and last: Panic of 1930 +[2018-02-13T00:33:31.053] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T00:33:31.110] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:33:31.207] [INFO] cheese - inserting 1000 documents. first: El Intransigente and last: Category:2000 in wrestling +[2018-02-13T00:33:31.215] [INFO] cheese - inserting 1000 documents. first: Category:Stins in Friesland and last: Category:Maritimepattu DS Division +[2018-02-13T00:33:31.242] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:33:31.284] [INFO] cheese - inserting 1000 documents. first: Mathmetics and last: Dextrorotation +[2018-02-13T00:33:31.288] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:33:31.348] [INFO] cheese - inserting 1000 documents. first: Guillem Augier Novella and last: Wikipedia:Peer review/Leona Lewis/archive1 +[2018-02-13T00:33:31.374] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:33:31.392] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:33:31.475] [INFO] cheese - inserting 1000 documents. first: File:KFXN1003.png and last: Seesaw (album) +[2018-02-13T00:33:31.520] [INFO] cheese - inserting 1000 documents. first: Porro and last: Alexander III, King of Scots +[2018-02-13T00:33:31.533] [INFO] cheese - inserting 1000 documents. first: Michael Smith (darts player) and last: M.M. Ahmad +[2018-02-13T00:33:31.546] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:33:31.583] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:33:31.640] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:33:31.667] [INFO] cheese - inserting 1000 documents. first: Category:List-Class WikiProject Volcanoes articles and last: Sir Giles Gilbert Scott, OM, FRIBA +[2018-02-13T00:33:31.740] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:33:31.747] [INFO] cheese - inserting 1000 documents. first: Panayotis and last: Snax (musician) +[2018-02-13T00:33:31.836] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:33:31.894] [INFO] cheese - inserting 1000 documents. first: Fiji Teachers Union and last: Category:Centronia +[2018-02-13T00:33:31.973] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:33:32.139] [INFO] cheese - inserting 1000 documents. first: Broadcast Advertising Clearance Centre and last: Franklin County, TX +[2018-02-13T00:33:32.172] [INFO] cheese - inserting 1000 documents. first: Chamamé and last: BWV 540 +[2018-02-13T00:33:32.220] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:33:32.235] [INFO] cheese - inserting 1000 documents. first: Zündnadelgewehr and last: Twin arginine protein transport +[2018-02-13T00:33:32.236] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:33:32.289] [INFO] cheese - inserting 1000 documents. first: 4-oxalomesaconate tautomerase and last: Irregularity (canon law) +[2018-02-13T00:33:32.317] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:33:32.356] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:33:32.362] [INFO] cheese - inserting 1000 documents. first: CBWU-FM and last: Caracosta +[2018-02-13T00:33:32.386] [INFO] cheese - inserting 1000 documents. first: Griffith's plum-yew and last: 150th Training Motor Rifle Division +[2018-02-13T00:33:32.427] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:33:32.433] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:33:32.511] [INFO] cheese - inserting 1000 documents. first: Knut Olaf Andreasson Strand and last: Euphorbia hofstaetteri +[2018-02-13T00:33:32.556] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:33:32.693] [INFO] cheese - inserting 1000 documents. first: Criegee zwitterion and last: Ian Barker +[2018-02-13T00:33:32.715] [INFO] cheese - inserting 1000 documents. first: John Cotton (fl. 1379-1388) and last: File:Cross Examination Debate Association Logo.jpg +[2018-02-13T00:33:32.730] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:33:32.768] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:33:32.783] [INFO] cheese - inserting 1000 documents. first: First Job Contract and last: Alchemy (video game) +[2018-02-13T00:33:32.783] [INFO] cheese - inserting 1000 documents. first: Abruzzi, Luigi Amedeo Giuseppe Maria Ferdinando Francesco, Duke of the and last: Wikipedia:Votes for deletion/Freetown Elementary School +[2018-02-13T00:33:32.849] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:33:32.878] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:33:32.895] [INFO] cheese - inserting 1000 documents. first: Vila d'Eivissa and last: Brighton High School (Brighton, Colorado) +[2018-02-13T00:33:32.965] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:33:32.967] [INFO] cheese - inserting 1000 documents. first: Bridge Inn (Middle-earth) and last: Template:Ashland County, Wisconsin +[2018-02-13T00:33:33.024] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:33:33.106] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Fijocrypta and last: Souk En Nhas +[2018-02-13T00:33:33.108] [INFO] cheese - inserting 1000 documents. first: File:Londonboysmoyloveoriginalcover.jpeg and last: 4 Songs (disambiguation) +[2018-02-13T00:33:33.168] [INFO] cheese - inserting 1000 documents. first: Gallipolis, OH and last: Gosnold, MA +[2018-02-13T00:33:33.174] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:33:33.180] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:33:33.196] [INFO] cheese - inserting 1000 documents. first: All-Ireland Senior Hurling Championship 1924 and last: 16S RNA Psi516 synthase +[2018-02-13T00:33:33.221] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:33:33.305] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:33:33.424] [INFO] cheese - inserting 1000 documents. first: Category:Culture by country and last: Daniele Barbaro +[2018-02-13T00:33:33.457] [INFO] cheese - inserting 1000 documents. first: Inter-service Intelligence Directorate and last: The Sins of the Cities of the Plain +[2018-02-13T00:33:33.487] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:33:33.503] [INFO] cheese - inserting 1000 documents. first: File:Trollback nike.jpg and last: Kaleidoscope (Siouxsie album) +[2018-02-13T00:33:33.541] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:33:33.556] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:33:33.676] [INFO] cheese - inserting 1000 documents. first: Gosper County, NE and last: Michael Stone (federal government administrator) +[2018-02-13T00:33:33.706] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2016 South Asian Games and last: Beauty and the Barge (disambiguation) +[2018-02-13T00:33:33.730] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:33:33.737] [INFO] cheese - inserting 1000 documents. first: RNA pseudouridine synthase RsuA and last: Jie Zhitui +[2018-02-13T00:33:33.746] [INFO] cheese - inserting 1000 documents. first: IdeaPad Z and last: Category:Keene State College alumni +[2018-02-13T00:33:33.759] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:33:33.821] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:33:33.852] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:33:33.914] [INFO] cheese - inserting 1000 documents. first: Early Morning Rain and last: Cocytodes +[2018-02-13T00:33:33.933] [INFO] cheese - inserting 1000 documents. first: Guioa patentinervis and last: Hopea cagayanensis +[2018-02-13T00:33:33.968] [INFO] cheese - inserting 1000 documents. first: Pentacerotidae and last: Cincinnati State and Technical College +[2018-02-13T00:33:33.987] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:33:33.988] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:33:34.043] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:33:34.312] [INFO] cheese - inserting 1000 documents. first: Poshekhonskii Raion and last: GDP of Latvia +[2018-02-13T00:33:34.372] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:33:34.397] [INFO] cheese - inserting 1000 documents. first: Silent Radar and last: Portal:SAARC/Bhutan/Intro +[2018-02-13T00:33:34.482] [INFO] cheese - inserting 1000 documents. first: Fumehood and last: Gulf Breeze, FL +[2018-02-13T00:33:34.510] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:33:34.519] [INFO] cheese - inserting 1000 documents. first: Codalithia and last: Bernice Cronkhite +[2018-02-13T00:33:34.613] [INFO] cheese - inserting 1000 documents. first: Port Laoise Town Council and last: European Technology Assessment Group (ETAG) +[2018-02-13T00:33:34.639] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T00:33:34.645] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:33:34.731] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T00:33:34.764] [INFO] cheese - inserting 1000 documents. first: File:BA-single2.jpg and last: Income distribution - United States +[2018-02-13T00:33:34.797] [INFO] cheese - inserting 1000 documents. first: File:Come into my World single.png and last: Ngaous +[2018-02-13T00:33:34.837] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:33:34.959] [INFO] cheese - batch complete in: 1.2 secs +[2018-02-13T00:33:35.103] [INFO] cheese - inserting 1000 documents. first: List of higher education institutions in Denver and last: Thommayanti +[2018-02-13T00:33:35.133] [INFO] cheese - inserting 1000 documents. first: Gulf City, FL and last: Alaric, King of the Visigoths +[2018-02-13T00:33:35.164] [INFO] cheese - inserting 1000 documents. first: Charles Lamarche and last: Wikipedia:WikiProject Spam/LinkReports/articulos-interesantes.blogspot.com +[2018-02-13T00:33:35.167] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:33:35.192] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:33:35.236] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:33:35.278] [INFO] cheese - inserting 1000 documents. first: Slovenian patrol boat Triglav and last: Portal:Current events/2011 March 2 +[2018-02-13T00:33:35.328] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:33:35.363] [INFO] cheese - inserting 1000 documents. first: File:'Sunagawa No.5' by Hiroshi Nakamura, 1955.jpg and last: Monema melli +[2018-02-13T00:33:35.453] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T00:33:35.462] [INFO] cheese - inserting 1000 documents. first: Du Lièvre River and last: Harry Bennett +[2018-02-13T00:33:35.542] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:33:35.615] [INFO] cheese - inserting 1000 documents. first: Marco Fidel Suarez and last: Helotes, TX +[2018-02-13T00:33:35.617] [INFO] cheese - inserting 1000 documents. first: Category:Protolychnis and last: Template:Attached KML/Illinois Route 4 +[2018-02-13T00:33:35.636] [INFO] cheese - inserting 1000 documents. first: Category:University of Memphis faculty and last: Vidya Niketan School (Pune) +[2018-02-13T00:33:35.676] [INFO] cheese - inserting 1000 documents. first: At It Again and last: Khaya anthotheca +[2018-02-13T00:33:35.678] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:33:35.736] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:33:35.748] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:33:35.776] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:33:35.926] [INFO] cheese - inserting 1000 documents. first: What Was I Scared Of? and last: Param Vishisht Seva +[2018-02-13T00:33:35.967] [INFO] cheese - inserting 1000 documents. first: Cnidocampa johanibergmani and last: Category:Organizations for children with health issues +[2018-02-13T00:33:35.995] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:33:35.998] [INFO] cheese - inserting 1000 documents. first: Shropshire Wildlife Trust and last: Honaker, VA +[2018-02-13T00:33:36.046] [INFO] cheese - inserting 1000 documents. first: Torpedo Stadium (Moscow) and last: Cold Day In the Sun +[2018-02-13T00:33:36.083] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:33:36.145] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:33:36.165] [INFO] cheese - inserting 1000 documents. first: List of My Hero Academia chapters and last: Category:Kingussie +[2018-02-13T00:33:36.187] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:33:36.225] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:33:36.245] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Lithuania and last: Experiment Below +[2018-02-13T00:33:36.262] [INFO] cheese - inserting 1000 documents. first: The Muppet Show (comics) and last: List of Denmark-related articles +[2018-02-13T00:33:36.293] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:33:36.383] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:33:36.579] [INFO] cheese - inserting 1000 documents. first: Honalo, HI and last: Itasca Township, MN +[2018-02-13T00:33:36.605] [INFO] cheese - inserting 1000 documents. first: Tisovec, Dobrepolje and last: Raven Quinn +[2018-02-13T00:33:36.625] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:33:36.682] [INFO] cheese - inserting 1000 documents. first: Echo Church and School and last: Estakhruiyeh, Baft +[2018-02-13T00:33:36.685] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:33:36.760] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:33:36.772] [INFO] cheese - inserting 1000 documents. first: Antoon Stillemans and last: D×D×D +[2018-02-13T00:33:36.866] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:33:36.902] [INFO] cheese - inserting 1000 documents. first: Larry Smith (editor) and last: Meridyrias +[2018-02-13T00:33:36.927] [INFO] cheese - inserting 1000 documents. first: Category:Lovoa and last: Scott christian higher secondary school +[2018-02-13T00:33:36.947] [INFO] cheese - inserting 1000 documents. first: Wanderer Fantasy and last: Sofiiska kotlovina +[2018-02-13T00:33:36.958] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:33:37.003] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:33:37.000] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:33:37.166] [INFO] cheese - inserting 1000 documents. first: Itawamba County, MS and last: Jordan Township, Northumberland County, PA +[2018-02-13T00:33:37.220] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:33:37.274] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Delta, British Columbia and last: Halima-5,13-dien-15-yl-diphosphate lyase +[2018-02-13T00:33:37.275] [INFO] cheese - inserting 1000 documents. first: File:Alisonmoyetweakinthepresenceofbeautysingle.jpeg and last: Wikipedia:WikiProject Military history/Ottoman military history task force/Article alerts/Archive +[2018-02-13T00:33:37.290] [INFO] cheese - inserting 1000 documents. first: Pat Bourke (footballer, born 1923) and last: 1993 IAAF World Indoor Championships – Women's long jump +[2018-02-13T00:33:37.320] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:33:37.346] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:33:37.349] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:33:37.399] [INFO] cheese - inserting 1000 documents. first: Meristides and last: List of Presidents of the Basque Parliament +[2018-02-13T00:33:37.409] [INFO] cheese - inserting 1000 documents. first: Category:Mauria and last: Wikipedia:Bots/Requests for approval/HermesBot 11 +[2018-02-13T00:33:37.447] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:33:37.449] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:33:37.486] [INFO] cheese - inserting 1000 documents. first: Dragonquest (disambiguation) and last: Marvin Perry +[2018-02-13T00:33:37.544] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:33:37.607] [INFO] cheese - inserting 1000 documents. first: Jordan Township, PA and last: Knox Township, Clarion County, PA +[2018-02-13T00:33:37.652] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:33:37.759] [INFO] cheese - inserting 1000 documents. first: List of international cricket five-wicket hauls at the Asgiriya Stadium and last: Falcaria (genus) +[2018-02-13T00:33:37.805] [INFO] cheese - inserting 1000 documents. first: William Vincent Carpenter and last: United Nations Security Council Resolution 381 +[2018-02-13T00:33:37.810] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:33:37.869] [INFO] cheese - inserting 1000 documents. first: Attribute certificate and last: Fagot +[2018-02-13T00:33:37.876] [INFO] cheese - inserting 1000 documents. first: Moranopteris aphelolepis and last: The Watch Below +[2018-02-13T00:33:37.880] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:33:37.945] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:33:37.948] [INFO] cheese - inserting 1000 documents. first: (S)-beta-macrocarpene synthase and last: Fernley H. Banbury +[2018-02-13T00:33:37.994] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:33:38.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Balkan military history task force/Article alerts/Archive and last: List of Professor Layton media +[2018-02-13T00:33:38.067] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:33:38.169] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:33:38.290] [INFO] cheese - inserting 1000 documents. first: Lauderdale County, AL and last: Little Wolf, WI +[2018-02-13T00:33:38.322] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:33:38.406] [INFO] cheese - inserting 1000 documents. first: Samurai Johnny Frankenstein and last: Yorktown High School (Yorktown, Indiana) +[2018-02-13T00:33:38.413] [INFO] cheese - inserting 1000 documents. first: Pyrgus centaureae and last: DAVIET Jalandhar +[2018-02-13T00:33:38.436] [INFO] cheese - inserting 1000 documents. first: Let's Paint TV and last: Passiflora anfracta +[2018-02-13T00:33:38.450] [INFO] cheese - inserting 1000 documents. first: Three Mustaphas Three and last: Category:1724 in the Spanish Empire +[2018-02-13T00:33:38.460] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:33:38.498] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:33:38.503] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:33:38.583] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:33:38.619] [INFO] cheese - inserting 1000 documents. first: Little York, IL and last: Character entity reference +[2018-02-13T00:33:38.643] [INFO] cheese - inserting 1000 documents. first: Template:Cite swiss law/doc and last: Champagne-Marne Defensive Campaign +[2018-02-13T00:33:38.665] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:33:38.710] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:33:38.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Moy Salinas and last: Yuji Nakayoshi +[2018-02-13T00:33:38.844] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:33:38.888] [INFO] cheese - inserting 1000 documents. first: Passiflora brachyantha and last: Ramsay wood +[2018-02-13T00:33:38.909] [INFO] cheese - inserting 1000 documents. first: File:Gorillacitydcu0.jpg and last: Tamseale +[2018-02-13T00:33:38.937] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:33:38.980] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:33:39.052] [INFO] cheese - inserting 1000 documents. first: Category:1724 in Spain and last: Vukovar resolution +[2018-02-13T00:33:39.092] [INFO] cheese - inserting 1000 documents. first: Ganiklis and last: Schism fanzine +[2018-02-13T00:33:39.096] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:33:39.155] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:33:39.159] [INFO] cheese - inserting 1000 documents. first: File:Mersey-Sound.jpg and last: Nigel Searle +[2018-02-13T00:33:39.214] [INFO] cheese - inserting 1000 documents. first: Upper Lake (Bhopal) and last: Torre de los Ingleses +[2018-02-13T00:33:39.229] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:33:39.292] [INFO] cheese - inserting 1000 documents. first: Balochistan Rural Support Programme (BRSP) and last: Asaphocrita irenica +[2018-02-13T00:33:39.308] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:33:39.430] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:33:39.438] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Contemporary philosophy articles and last: Category:FA-Class Boston Red Sox articles +[2018-02-13T00:33:39.487] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:33:39.521] [INFO] cheese - inserting 1000 documents. first: Tamseuxoa and last: Valentina Rendón +[2018-02-13T00:33:39.578] [INFO] cheese - inserting 1000 documents. first: Marquette (town), Green Lake County, WI and last: Menomonie, WI +[2018-02-13T00:33:39.578] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:33:39.637] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:33:39.676] [INFO] cheese - inserting 1000 documents. first: Staples station (Minnesota) and last: Motion dazzle +[2018-02-13T00:33:39.725] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:33:39.827] [INFO] cheese - inserting 1000 documents. first: III Marine Amphibious Corps and last: Template:Daycap +[2018-02-13T00:33:39.835] [INFO] cheese - inserting 1000 documents. first: Nénimë and last: Alaska Airlines Arena +[2018-02-13T00:33:39.876] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:33:39.884] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:33:39.908] [INFO] cheese - inserting 1000 documents. first: Psidium harrisianum and last: Wikipedia:Articles for deletion/Special Needs Advocates for Understanding +[2018-02-13T00:33:39.937] [INFO] cheese - inserting 1000 documents. first: Hellenic Police - Cyber Crime Center and last: Metagenomics: An Alternative Approach to Genomics +[2018-02-13T00:33:39.938] [INFO] cheese - inserting 1000 documents. first: Menomonie (city), Dunn County, WI and last: Fra Mauro +[2018-02-13T00:33:39.955] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:33:39.991] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:33:40.034] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:33:40.085] [INFO] cheese - inserting 1000 documents. first: 10th (Prince of Wales's Own Royal) Hussars and last: Figure skating at the 2006 Winter Olympics - Pair Skating +[2018-02-13T00:33:40.096] [INFO] cheese - inserting 1000 documents. first: Balas y Chocolate World Tour and last: Fabio De Masi +[2018-02-13T00:33:40.150] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:33:40.156] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:33:40.236] [INFO] cheese - inserting 1000 documents. first: Monroeville, PA and last: Crash (Dave Matthews Band album) +[2018-02-13T00:33:40.264] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:33:40.361] [INFO] cheese - inserting 1000 documents. first: Category:Communities in Victoria County, New Brunswick and last: Blue Charge +[2018-02-13T00:33:40.405] [INFO] cheese - inserting 1000 documents. first: Andrei Andriyevskiy and last: Brix degree +[2018-02-13T00:33:40.406] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:33:40.409] [INFO] cheese - inserting 1000 documents. first: ᚗ and last: Dorrie (Super Mario 64) +[2018-02-13T00:33:40.425] [INFO] cheese - inserting 1000 documents. first: File:Logo for Lego Pirates of the caribbean theme.png and last: Category:Films directed by Reginald Fogwell +[2018-02-13T00:33:40.476] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:33:40.491] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:33:40.523] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:33:40.600] [INFO] cheese - inserting 1000 documents. first: Reverse-Flash (Eobard Thawne) and last: Category:People of the war in Donbass +[2018-02-13T00:33:40.670] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:33:40.748] [INFO] cheese - inserting 1000 documents. first: Nazlini, AZ and last: Nordick Township, MN +[2018-02-13T00:33:40.819] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:33:40.862] [INFO] cheese - inserting 1000 documents. first: Figure skating at the 2006 Winter Olympics - Pair skating and last: Bagnowski Dwor +[2018-02-13T00:33:40.950] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:33:40.956] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Norma Ashby and last: Category:Sport in Burnaby +[2018-02-13T00:33:40.961] [INFO] cheese - inserting 1000 documents. first: Plerandra veitchii and last: Sway & King Tech +[2018-02-13T00:33:41.006] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:33:41.034] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:33:41.137] [INFO] cheese - inserting 1000 documents. first: Nordland Township, Aitkin County, MN and last: Okmulgee, OK +[2018-02-13T00:33:41.190] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:33:41.212] [INFO] cheese - inserting 1000 documents. first: Uruguayan immigration to Ecuador and last: Antonio Prieto (tennis) +[2018-02-13T00:33:41.214] [INFO] cheese - inserting 1000 documents. first: Ash Shara'i` al `Ulya and last: H. subumbrans +[2018-02-13T00:33:41.274] [INFO] cheese - inserting 1000 documents. first: File:Rai University logo.jpg and last: Jaakko Tallus +[2018-02-13T00:33:41.276] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:33:41.284] [INFO] cheese - inserting 1000 documents. first: Bajory Male and last: Brzesnica +[2018-02-13T00:33:41.288] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:33:41.334] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:33:41.368] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:33:41.510] [INFO] cheese - inserting 1000 documents. first: Portal:Pensacola/Selected article/4 and last: Wikipedia:Articles for deletion/List of municipal authorities in Adams County, Pennsylvania +[2018-02-13T00:33:41.534] [INFO] cheese - inserting 1000 documents. first: Okmulgee County, OK and last: Panama, IL +[2018-02-13T00:33:41.558] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:33:41.583] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:33:41.587] [INFO] cheese - inserting 1000 documents. first: Solanum burtonii and last: Juan Antonio Medina +[2018-02-13T00:33:41.645] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:33:41.749] [INFO] cheese - inserting 1000 documents. first: Bordered patch and last: 36˚30'N +[2018-02-13T00:33:41.796] [INFO] cheese - inserting 1000 documents. first: Brzeszczki Duze and last: Kryptonics (company) +[2018-02-13T00:33:41.800] [INFO] cheese - inserting 1000 documents. first: Beşiktaş–Galatasaray rivalry and last: Template:User in United Kingdom +[2018-02-13T00:33:41.827] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:33:41.883] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:33:41.902] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:33:41.936] [INFO] cheese - inserting 1000 documents. first: File:Los Angeles National Cemetery Entrance.jpg and last: Category:Star Ferry +[2018-02-13T00:33:42.007] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:33:42.073] [INFO] cheese - inserting 1000 documents. first: Hogwarts subjects and last: Great Influenza Pandemic +[2018-02-13T00:33:42.101] [INFO] cheese - inserting 1000 documents. first: Regina, Minneapolis and last: Higurashi episodes +[2018-02-13T00:33:42.118] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:33:42.149] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:33:42.160] [INFO] cheese - inserting 1000 documents. first: Rajah Sulayman Park and last: Ulrika von Strussenfelt +[2018-02-13T00:33:42.218] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:33:42.221] [INFO] cheese - inserting 1000 documents. first: Category:Immersed tube tunnels in Canada and last: KUBE-FM 1049 +[2018-02-13T00:33:42.266] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:33:42.346] [INFO] cheese - inserting 1000 documents. first: Template:User in UK and last: Lena Bryant +[2018-02-13T00:33:42.354] [INFO] cheese - inserting 1000 documents. first: Category:Former national rugby union teams and last: United States Court of Appeals 7th Circuit +[2018-02-13T00:33:42.413] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:33:42.436] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:33:42.514] [INFO] cheese - inserting 1000 documents. first: Welsh Argentinians and last: Saddlebrooke, Missouri +[2018-02-13T00:33:42.582] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:33:42.680] [INFO] cheese - inserting 1000 documents. first: Project MOJO and last: Portal:Austin/Selected picture/3 +[2018-02-13T00:33:42.731] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:33:42.735] [INFO] cheese - inserting 1000 documents. first: File:Valediction (Agent Carter).jpg and last: نادية مراد +[2018-02-13T00:33:42.817] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:33:42.859] [INFO] cheese - inserting 1000 documents. first: Chandipriya and last: Lonely (Sharon Sheeley song) +[2018-02-13T00:33:42.859] [INFO] cheese - inserting 1000 documents. first: United States Court of Appeals 8th Circuit and last: Granny nipper +[2018-02-13T00:33:42.913] [INFO] cheese - inserting 1000 documents. first: UMkhuze Game Reserve and last: Peridot, AZ +[2018-02-13T00:33:42.947] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:33:43.000] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:33:43.095] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T00:33:43.224] [INFO] cheese - inserting 1000 documents. first: Sulcus terminalis and last: Light Weight (company) +[2018-02-13T00:33:43.245] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Princess Charlotte of Prussia and last: Toms Run (Twin Creek) +[2018-02-13T00:33:43.279] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:33:43.285] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:33:43.319] [INFO] cheese - inserting 1000 documents. first: Johnson creek public schools and last: Assembly of the Turkish Republic of Northern Cyprus +[2018-02-13T00:33:43.350] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox Anastasian War and last: 1593 in Scotland +[2018-02-13T00:33:43.382] [INFO] cheese - inserting 1000 documents. first: Perkasie, PA and last: Port Wing, WI +[2018-02-13T00:33:43.406] [INFO] cheese - inserting 1000 documents. first: Maurice quentin de la tour and last: Vermeg +[2018-02-13T00:33:43.417] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:33:43.432] [INFO] cheese - batch complete in: 1.283 secs +[2018-02-13T00:33:43.449] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:33:43.449] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:33:43.557] [INFO] cheese - inserting 1000 documents. first: Thira (regional unit) and last: Wikipedia:Possibly unfree files/2011 March 6 +[2018-02-13T00:33:43.619] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:33:43.675] [INFO] cheese - inserting 1000 documents. first: File:University of Trieste logo.jpg and last: 1598 CE +[2018-02-13T00:33:43.690] [INFO] cheese - inserting 1000 documents. first: Czuszow and last: Dzwiniacz Gorny +[2018-02-13T00:33:43.704] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:33:43.724] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:33:43.740] [INFO] cheese - inserting 1000 documents. first: Portage, IN and last: Reno, Parker County, TX +[2018-02-13T00:33:43.764] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:33:43.892] [INFO] cheese - inserting 1000 documents. first: John Bohrnstedt House and last: Template:Redirect sp +[2018-02-13T00:33:43.915] [INFO] cheese - inserting 1000 documents. first: 1597 CE and last: 621 CE +[2018-02-13T00:33:43.920] [INFO] cheese - inserting 1000 documents. first: Aluminum foil and last: Winthrop Street (IRT Nostrand Avenue Line station) +[2018-02-13T00:33:43.924] [INFO] cheese - inserting 1000 documents. first: 2000 Adelaide Race of a Thousand Years and last: Viequenses +[2018-02-13T00:33:43.941] [INFO] cheese - batch complete in: 0.236 secs +[2018-02-13T00:33:43.966] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:33:44.028] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:33:44.031] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:33:44.158] [INFO] cheese - inserting 1000 documents. first: Tim Dudfield and last: Ross Township, MI +[2018-02-13T00:33:44.188] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:33:44.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2011 March 6 and last: Category:Danish websites +[2018-02-13T00:33:44.311] [INFO] cheese - inserting 1000 documents. first: Trent Merrin and last: Dumuzi the Shepherd +[2018-02-13T00:33:44.333] [INFO] cheese - inserting 1000 documents. first: 620 CE and last: Hugh W. Sheffey +[2018-02-13T00:33:44.353] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:33:44.374] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:33:44.397] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:33:44.522] [INFO] cheese - inserting 1000 documents. first: Ross Township, MN and last: Santa Claus, GA +[2018-02-13T00:33:44.549] [INFO] cheese - inserting 1000 documents. first: File:KeeLoq Decrypt2.png and last: Athletics at the 1920 Summer Olympics – Men's pole vault +[2018-02-13T00:33:44.552] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:33:44.612] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:33:44.634] [INFO] cheese - inserting 1000 documents. first: Template:R sub and last: Wilhelmstrassenfest +[2018-02-13T00:33:44.635] [INFO] cheese - inserting 1000 documents. first: Der Ring Des Nibelungen and last: Ostheide +[2018-02-13T00:33:44.710] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:33:44.717] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:33:44.860] [INFO] cheese - inserting 1000 documents. first: William Necton and last: Lyn Stanley, International Recording Artist +[2018-02-13T00:33:44.869] [INFO] cheese - inserting 1000 documents. first: The Betrothed (miniseries) and last: State Committee for Labour and Social Affairs +[2018-02-13T00:33:44.902] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:33:44.915] [INFO] cheese - inserting 1000 documents. first: Category:NORCECA Beach Volleyball Circuit 2009 and last: Shaka Smart +[2018-02-13T00:33:44.924] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:33:44.985] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:33:45.120] [INFO] cheese - inserting 1000 documents. first: Category:Aitkin County, Minnesota and last: Sharpsburg, PA +[2018-02-13T00:33:45.156] [INFO] cheese - inserting 1000 documents. first: File:CyberspaceRPGCover.jpg and last: Wikipedia:FGdesk +[2018-02-13T00:33:45.187] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:33:45.203] [INFO] cheese - inserting 1000 documents. first: Category:1880s in Indiana and last: HMS Sköld +[2018-02-13T00:33:45.214] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:33:45.256] [INFO] cheese - inserting 1000 documents. first: The Candidate and last: Category:Conservation in Latvia +[2018-02-13T00:33:45.276] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:33:45.365] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:33:45.394] [INFO] cheese - inserting 1000 documents. first: State Committee for Labor and Social Affairs and last: Premier of Croatia +[2018-02-13T00:33:45.402] [INFO] cheese - inserting 1000 documents. first: Category:1982 establishments in Rhode Island and last: Category:Disestablishments in Kenya +[2018-02-13T00:33:45.444] [INFO] cheese - inserting 1000 documents. first: One-Eleven and last: Aius Loquens +[2018-02-13T00:33:45.452] [INFO] cheese - inserting 1000 documents. first: Lamrim and last: South Pymatuning Township, PA +[2018-02-13T00:33:45.471] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:33:45.477] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:33:45.540] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:33:45.544] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:33:45.772] [INFO] cheese - inserting 1000 documents. first: South Range, MI and last: Stoddard, WI +[2018-02-13T00:33:45.790] [INFO] cheese - inserting 1000 documents. first: Great Britain (Cyborg 009 character) and last: Turkmendemiryollary +[2018-02-13T00:33:45.795] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:33:45.832] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:33:45.840] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Arab world articles and last: Wikipedia:WikiProject Spam/LinkReports/plato.stanford.edu +[2018-02-13T00:33:45.900] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:33:45.910] [INFO] cheese - inserting 1000 documents. first: Al Porto and last: Israeli Shabas +[2018-02-13T00:33:45.910] [INFO] cheese - inserting 1000 documents. first: Messaoud Bouardja and last: Z. Anorg. Allgem. Chem. +[2018-02-13T00:33:45.922] [INFO] cheese - inserting 1000 documents. first: The land before time 7 and last: Wikipedia:WikiProject Spam/LinkReports/bdtools.net +[2018-02-13T00:33:45.924] [INFO] cheese - inserting 1000 documents. first: Hindley railway station and last: Template:Montour County, Pennsylvania +[2018-02-13T00:33:45.967] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:33:45.972] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:33:45.978] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:33:45.987] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:33:46.094] [INFO] cheese - inserting 1000 documents. first: Stoddard County, MO and last: Estelle Leonard +[2018-02-13T00:33:46.133] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:33:46.314] [INFO] cheese - inserting 1000 documents. first: Andar ng mga Balita (radio) and last: Fred Horsman +[2018-02-13T00:33:46.346] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:33:46.381] [INFO] cheese - inserting 1000 documents. first: Stoycho Mladenov, Jr. and last: Rogue Male (band) +[2018-02-13T00:33:46.382] [INFO] cheese - inserting 1000 documents. first: Melissa Gonzales and last: W.D. Puleston +[2018-02-13T00:33:46.393] [INFO] cheese - inserting 1000 documents. first: Poonam Jhawer and last: FC Bataysk-2007 +[2018-02-13T00:33:46.437] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:33:46.440] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:33:46.447] [INFO] cheese - inserting 1000 documents. first: Z. Anorg. Allgemeine Chemie and last: Godly Response to Abuse in the Christian Environment +[2018-02-13T00:33:46.445] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:33:46.564] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:33:46.691] [INFO] cheese - inserting 1000 documents. first: Library of Babel and last: American Physical Education Association +[2018-02-13T00:33:46.805] [INFO] cheese - inserting 1000 documents. first: McCrae (disambiguation) and last: Consuela (Family Guy) +[2018-02-13T00:33:46.835] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T00:33:46.857] [INFO] cheese - inserting 1000 documents. first: Chicago Manufacturing Renaissance Council and last: Smiarowo +[2018-02-13T00:33:46.860] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:33:46.917] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:33:46.955] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (earth) and last: Brace for impact +[2018-02-13T00:33:47.061] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T00:33:47.106] [INFO] cheese - inserting 1000 documents. first: Leandro Castán and last: Could Be Anything +[2018-02-13T00:33:47.133] [INFO] cheese - inserting 1000 documents. first: Pholiota aurantioalbida and last: File:National Energy Foundation logo.gif +[2018-02-13T00:33:47.139] [INFO] cheese - inserting 1000 documents. first: Mushti-yuddha and last: Manavari, Kermanshah +[2018-02-13T00:33:47.152] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:33:47.187] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:33:47.198] [INFO] cheese - inserting 1000 documents. first: Smiary and last: Stryszow +[2018-02-13T00:33:47.200] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:33:47.215] [INFO] cheese - inserting 1000 documents. first: Upper Oligocene and last: V.m. +[2018-02-13T00:33:47.241] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:33:47.277] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:33:47.394] [INFO] cheese - inserting 1000 documents. first: William MacQuitty and last: Wikipedia:Featured picture candidates/329 eclipse +[2018-02-13T00:33:47.455] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:33:47.497] [INFO] cheese - inserting 1000 documents. first: Strzakly and last: Samsung Mirage +[2018-02-13T00:33:47.511] [INFO] cheese - inserting 1000 documents. first: Template:Estonian parliamentary election, 2011 and last: Rock Camp (disambiguation) +[2018-02-13T00:33:47.516] [INFO] cheese - inserting 1000 documents. first: Watson baronets and last: Waterborne (film) +[2018-02-13T00:33:47.525] [INFO] cheese - inserting 1000 documents. first: Category:Military installations of the Ground Forces of Islamic Republic of Iran Army and last: Microtus liechtensteinii +[2018-02-13T00:33:47.537] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:33:47.548] [INFO] cheese - inserting 1000 documents. first: File:Marano di Napoli-Stemma.png and last: Badra'i +[2018-02-13T00:33:47.555] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:33:47.565] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:33:47.588] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:33:47.610] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:33:47.704] [INFO] cheese - inserting 1000 documents. first: Brace procedure and last: USS Tortuga +[2018-02-13T00:33:47.777] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:33:47.904] [INFO] cheese - inserting 1000 documents. first: Atuagagdliutit and last: Matt Uelmen +[2018-02-13T00:33:47.933] [INFO] cheese - inserting 1000 documents. first: Al-Sabah family and last: Gierloz +[2018-02-13T00:33:47.943] [INFO] cheese - inserting 1000 documents. first: Mario Pérez Jiménez and last: Küchük Muhammad +[2018-02-13T00:33:47.958] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:33:47.970] [INFO] cheese - inserting 1000 documents. first: Gregoor and last: Alvin Ailey's Revelations +[2018-02-13T00:33:47.971] [INFO] cheese - inserting 1000 documents. first: A Fool Never Learns and last: Paerata railway station +[2018-02-13T00:33:47.995] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:33:48.010] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:33:48.029] [INFO] cheese - inserting 1000 documents. first: Template:JusticeSecretary and last: Ogilvy-Wedderburn baronets +[2018-02-13T00:33:48.077] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:33:48.033] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:33:48.188] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:33:48.323] [INFO] cheese - inserting 1000 documents. first: Gierloz Polska and last: Iglowice +[2018-02-13T00:33:48.392] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:33:48.593] [INFO] cheese - inserting 1000 documents. first: File:St Mary Cathedral Calgary front statue.jpg and last: Roderick at Random +[2018-02-13T00:33:48.657] [INFO] cheese - inserting 1000 documents. first: Igly and last: Kiezliny +[2018-02-13T00:33:48.666] [INFO] cheese - inserting 1000 documents. first: Option (football) and last: Otterberg (Verbandsgemeinde) +[2018-02-13T00:33:48.672] [INFO] cheese - inserting 1000 documents. first: Wolstan (disambiguation) and last: But-1-en-3-yne +[2018-02-13T00:33:48.687] [INFO] cheese - inserting 1000 documents. first: Papatoitoi Railway Station and last: Her Majesty Love +[2018-02-13T00:33:48.692] [INFO] cheese - batch complete in: 0.3 secs +[2018-02-13T00:33:48.685] [INFO] cheese - inserting 1000 documents. first: File:The Psychedelic Furs cover.jpg and last: Acting Ensign Crusher +[2018-02-13T00:33:48.698] [INFO] cheese - inserting 1000 documents. first: Mahagama (community development block) and last: Online library +[2018-02-13T00:33:48.703] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T00:33:48.720] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:33:48.761] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:33:48.775] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:33:48.817] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:33:48.829] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:33:48.992] [INFO] cheese - inserting 1000 documents. first: Kijowiec-Sciany and last: Krusliwiec +[2018-02-13T00:33:49.015] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:33:49.221] [INFO] cheese - inserting 1000 documents. first: CCCP Fedeli alla linea and last: Fight night at the joe +[2018-02-13T00:33:49.228] [INFO] cheese - inserting 1000 documents. first: Ihre Majestät die Liebe and last: Todd Glass awful prank show +[2018-02-13T00:33:49.236] [INFO] cheese - inserting 1000 documents. first: Krusze-Lubnice and last: Jilin Provincial Experimental School +[2018-02-13T00:33:49.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/International Academy for Genealogical and Heraldic Studies and last: Eytan Elbaz +[2018-02-13T00:33:49.251] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:33:49.256] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:33:49.277] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:33:49.288] [INFO] cheese - inserting 1000 documents. first: Template:User in Senegal/doc and last: Category:Geography of Jo Daviess County, Illinois +[2018-02-13T00:33:49.301] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:33:49.364] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:33:49.417] [INFO] cheese - inserting 1000 documents. first: Blind spot (vision) and last: Category:1852 in sports +[2018-02-13T00:33:49.506] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:33:49.544] [INFO] cheese - inserting 1000 documents. first: Dent (fell) and last: Louis MacNeice +[2018-02-13T00:33:49.637] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T00:33:49.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Ferdinand Bockman and last: Spartak Kavkaztransgaz Izobilny +[2018-02-13T00:33:49.702] [INFO] cheese - inserting 1000 documents. first: The Greatest Game Show Ever and last: Convention for the Suppression of Unlawful Acts against the Safety of Civil Aviation +[2018-02-13T00:33:49.775] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:33:49.784] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:33:49.795] [INFO] cheese - inserting 1000 documents. first: File:The Man in the Brown Suit First Edition Cover 1924.jpg and last: Mindhunter +[2018-02-13T00:33:49.858] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Will County, Illinois and last: Category:Novels set in Chile +[2018-02-13T00:33:49.904] [INFO] cheese - inserting 1000 documents. first: Follow You Home (Embrace song) and last: John Patrick Acquaviva +[2018-02-13T00:33:49.908] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:33:49.936] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:33:50.033] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:33:50.158] [INFO] cheese - inserting 1000 documents. first: Breakwaters and last: Enetoi +[2018-02-13T00:33:50.228] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:33:50.364] [INFO] cheese - inserting 1000 documents. first: Lilliputian violet and last: Carbine Studios +[2018-02-13T00:33:50.371] [INFO] cheese - inserting 1000 documents. first: File:Emblem of Daekyo Kagaroos.jpg and last: Category:Media in the San Francisco Bay Area +[2018-02-13T00:33:50.435] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:33:50.443] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:33:50.557] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/change-apps.com and last: Jamila Mejri +[2018-02-13T00:33:50.566] [INFO] cheese - inserting 1000 documents. first: Bulgarian toponyms in Antarctica (F) and last: Eas Mor (upper) +[2018-02-13T00:33:50.578] [INFO] cheese - inserting 1000 documents. first: 1926 Florida Gators football team and last: Wikipedia:Reference desk/Archives/Entertainment/2007 August 21 +[2018-02-13T00:33:50.678] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:33:50.692] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:33:50.697] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:33:50.811] [INFO] cheese - inserting 1000 documents. first: Frederick Louis MacNeice and last: Langbaurgh +[2018-02-13T00:33:50.874] [INFO] cheese - inserting 1000 documents. first: This Week (BBC, UK) and last: Post hoc analysis +[2018-02-13T00:33:50.898] [INFO] cheese - batch complete in: 1.261 secs +[2018-02-13T00:33:50.938] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:33:50.983] [INFO] cheese - inserting 1000 documents. first: Anulus inguinalis profundus and last: Royal Banner +[2018-02-13T00:33:51.054] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:33:51.113] [INFO] cheese - inserting 1000 documents. first: File:Main Street in Radzin.JPG and last: Blocco-Juve +[2018-02-13T00:33:51.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Entermedia GmbH and last: Book:Nucleosynthesis or naturally forming elements +[2018-02-13T00:33:51.221] [INFO] cheese - inserting 1000 documents. first: Intuitive Counselor and last: Royal Dutch East Indies Army +[2018-02-13T00:33:51.238] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:33:51.300] [INFO] cheese - inserting 1000 documents. first: Berhthun (bishop) and last: Template:Pakistan Squad 1975 Cricket World Cup +[2018-02-13T00:33:51.353] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:33:51.359] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:33:51.403] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:33:51.539] [INFO] cheese - inserting 1000 documents. first: Sterling Entertainment Group and last: Drepaneid +[2018-02-13T00:33:51.660] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:33:51.803] [INFO] cheese - inserting 1000 documents. first: PVX-410 and last: Wikipedia:WikiProject Spam/LinkReports/findminecraft.com +[2018-02-13T00:33:51.803] [INFO] cheese - inserting 1000 documents. first: Herrn Filip Collins Abenteuer and last: Black Earth Farming +[2018-02-13T00:33:51.811] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Shawn Noel and last: Rebatement of the rectangle +[2018-02-13T00:33:51.840] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:33:51.849] [INFO] cheese - inserting 1000 documents. first: The King and I (film) and last: File:Ryujiyamazaki.jpg +[2018-02-13T00:33:51.846] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:33:51.856] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:33:51.941] [INFO] cheese - inserting 1000 documents. first: Battle of Stepney and last: H. G. Van de Sande Bakhuyzen +[2018-02-13T00:33:51.949] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:33:51.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:TTANS and last: 2007 World Championships in Athletics – Men's 10,000 metres +[2018-02-13T00:33:52.040] [INFO] cheese - batch complete in: 1.142 secs +[2018-02-13T00:33:52.047] [INFO] cheese - inserting 1000 documents. first: Echeneid and last: Aufstrich +[2018-02-13T00:33:52.064] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:33:52.126] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:33:52.244] [INFO] cheese - inserting 1000 documents. first: Vinos de Madrid (DO) and last: Department of Justice and Law Reform +[2018-02-13T00:33:52.299] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:33:52.328] [INFO] cheese - inserting 1000 documents. first: 2.0 EDR and last: Edgar Allan Poe’s bibliography +[2018-02-13T00:33:52.335] [INFO] cheese - inserting 1000 documents. first: Hedgehog medick and last: Sankheda Furniture +[2018-02-13T00:33:52.375] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sam Henderson (weightlifter) and last: Category:Disestablishments in Bahrain by decade +[2018-02-13T00:33:52.386] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:33:52.386] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:33:52.456] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:33:52.613] [INFO] cheese - inserting 1000 documents. first: Bixby, Missouri and last: Itemirus +[2018-02-13T00:33:52.625] [INFO] cheese - inserting 1000 documents. first: Herpes simplex I virus and last: Pepsi Ripsaw Roller Coaster +[2018-02-13T00:33:52.706] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:33:52.722] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:33:52.821] [INFO] cheese - inserting 1000 documents. first: (5) Astraea and last: United Democrats +[2018-02-13T00:33:52.924] [INFO] cheese - inserting 1000 documents. first: Fort Bend School District and last: Ceraceomyces +[2018-02-13T00:33:52.942] [INFO] cheese - inserting 1000 documents. first: Thilak and last: Mame Slaughter +[2018-02-13T00:33:52.948] [INFO] cheese - inserting 1000 documents. first: File:Logo Esselunga.gif and last: Category:Islamic organisations based in Bangladesh +[2018-02-13T00:33:52.978] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T00:33:52.983] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:33:52.999] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:33:53.061] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:33:53.200] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wales/List of people born in Wales on Wikidata and last: Castro brothers +[2018-02-13T00:33:53.244] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:33:53.290] [INFO] cheese - inserting 1000 documents. first: Swamp Rock and last: E. Rhys +[2018-02-13T00:33:53.309] [INFO] cheese - inserting 1000 documents. first: Pepsi Ripsaw and last: Gârcic River +[2018-02-13T00:33:53.341] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:33:53.356] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:33:53.359] [INFO] cheese - inserting 1000 documents. first: Washington D.C. International and last: Fash Rural District +[2018-02-13T00:33:53.388] [INFO] cheese - inserting 1000 documents. first: Soleiman Agha and last: Chipko Andolan +[2018-02-13T00:33:53.429] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:33:53.439] [INFO] cheese - inserting 1000 documents. first: Category:Islamic organisations based in the United Kingdom and last: SMS Prinz Adalbert +[2018-02-13T00:33:53.449] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:33:53.501] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:33:53.566] [INFO] cheese - inserting 1000 documents. first: Gabriel Espinosa-Canada and last: Toronto Comics Art Festival +[2018-02-13T00:33:53.611] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:33:53.725] [INFO] cheese - inserting 1000 documents. first: Star-Spangled Kid and last: Social policy +[2018-02-13T00:33:53.779] [INFO] cheese - inserting 1000 documents. first: El Malpaís National Monument and last: Manitoba Justice +[2018-02-13T00:33:53.786] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Cartoon Network/Section header and last: Template:Did you know nominations/Opium production in Burma +[2018-02-13T00:33:53.801] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T00:33:53.828] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:33:53.831] [INFO] cheese - inserting 1000 documents. first: Samsung Mobile Innovator and last: Catherine Guigon +[2018-02-13T00:33:53.843] [INFO] cheese - inserting 1000 documents. first: Category:First Doctor novels and last: Alpine County Courthouse +[2018-02-13T00:33:53.830] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:33:53.896] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:33:53.913] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:33:53.933] [INFO] cheese - inserting 1000 documents. first: Snowball (cocktail) and last: Berisad Glacier +[2018-02-13T00:33:53.990] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:33:54.042] [INFO] cheese - inserting 1000 documents. first: Filmography of Brian Cox and last: Category:2016 Colonial Athletic Association baseball season +[2018-02-13T00:33:54.126] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:33:54.265] [INFO] cheese - inserting 1000 documents. first: Template:World Heritage Sites in Malaysia and last: Qurahjil +[2018-02-13T00:33:54.291] [INFO] cheese - inserting 1000 documents. first: File:Peace River Bible Institute (logo).jpg and last: 6th Alpine Division +[2018-02-13T00:33:54.300] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:33:54.331] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:33:54.389] [INFO] cheese - inserting 1000 documents. first: Fukushima Daiichi nuclear plant and last: Ajnathavasam +[2018-02-13T00:33:54.418] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:33:54.436] [INFO] cheese - inserting 1000 documents. first: The Libertines (DVD) and last: Non-archimedean field +[2018-02-13T00:33:54.480] [INFO] cheese - inserting 1000 documents. first: List of muscles of the body and last: File:Poster of the movie.jpg +[2018-02-13T00:33:54.491] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:33:54.527] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:33:54.557] [INFO] cheese - inserting 1000 documents. first: Jean Graton and last: AMC Amitron +[2018-02-13T00:33:54.626] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:33:54.711] [INFO] cheese - inserting 1000 documents. first: San Francisco in the 1970s and last: Mississippi State Bulldogs men's tennis +[2018-02-13T00:33:54.716] [INFO] cheese - inserting 1000 documents. first: Pasque Flower and last: Teemu Rannikko +[2018-02-13T00:33:54.766] [INFO] cheese - inserting 1000 documents. first: Rudy Árias and last: The Dream Girl (operetta) +[2018-02-13T00:33:54.771] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:33:54.779] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:33:54.857] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:33:54.888] [INFO] cheese - inserting 1000 documents. first: Eanippadikal and last: File:Superboy (Kon-El) (Smallville).jpg +[2018-02-13T00:33:54.896] [INFO] cheese - inserting 1000 documents. first: Nissan Pivo and last: Eon (novel) +[2018-02-13T00:33:54.943] [INFO] cheese - inserting 1000 documents. first: Opus De Funk (disambiguation) and last: Zénith (Cap-Haïtien) +[2018-02-13T00:33:54.948] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:33:54.955] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:33:55.025] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:33:55.423] [INFO] cheese - inserting 1000 documents. first: Category:National members of the Asian Cycling Confederation and last: Wikipedia:Articles for deletion/ussein Karim (2nd nomination) +[2018-02-13T00:33:55.425] [INFO] cheese - inserting 1000 documents. first: Valea Mare River (Sâmbotin) and last: Wikipedia:Articles for deletion/Colonization of Trans-Neptunian Objects +[2018-02-13T00:33:55.430] [INFO] cheese - inserting 1000 documents. first: Swede (Root Vegetbale) and last: V. P. Balasubramanian +[2018-02-13T00:33:55.461] [INFO] cheese - inserting 1000 documents. first: Birla Foundation and last: Walsh, Robert +[2018-02-13T00:33:55.469] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:33:55.482] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:33:55.517] [INFO] cheese - inserting 1000 documents. first: File:Joe Blackledge.jpg and last: Medial arcuate ligaments +[2018-02-13T00:33:55.520] [INFO] cheese - inserting 1000 documents. first: 2011 IRB Junior World Championship and last: In the Shadow of the Dreamchild +[2018-02-13T00:33:55.520] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:33:55.551] [INFO] cheese - inserting 1000 documents. first: Vrbas (river) and last: Psammoperca waigiensis +[2018-02-13T00:33:55.526] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:33:55.585] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:33:55.565] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:33:55.644] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T00:33:55.929] [INFO] cheese - inserting 1000 documents. first: Medial bicipital grooves and last: William E. Higginbotham +[2018-02-13T00:33:55.964] [INFO] cheese - inserting 1000 documents. first: Category:Academia in Singapore and last: Category:1961 establishments in Uganda +[2018-02-13T00:33:55.970] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:33:56.009] [INFO] cheese - inserting 1000 documents. first: Abdul Qadir Jeelani and last: Wikipedia:Today's featured article/September 27, 2006 +[2018-02-13T00:33:56.031] [INFO] cheese - inserting 1000 documents. first: Ron May (United Airlines Flight 232) and last: Sesbanieae +[2018-02-13T00:33:56.032] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:33:56.038] [INFO] cheese - inserting 1000 documents. first: Template:Homebrew and last: Category:1710s establishments in France +Cabal +[2018-02-13T00:33:56.088] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:33:56.092] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:33:56.106] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:33:56.110] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:33:56.169] [INFO] cheese - inserting 1000 documents. first: Galtieri and last: Manitoba Labour Party +[2018-02-13T00:33:56.225] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:33:56.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:STINKBOMB and last: Bangladesh - Chile relations +[2018-02-13T00:33:56.366] [INFO] cheese - inserting 1000 documents. first: Sydney Place and last: File:Annie - Happy Without You.png +[2018-02-13T00:33:56.394] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:33:56.420] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:33:56.444] [INFO] cheese - inserting 1000 documents. first: File:Grand Canal at Wilton Terrace, Dublin.jpg and last: Leonid Volochine +[2018-02-13T00:33:56.488] [INFO] cheese - inserting 1000 documents. first: Charles Whitworth and last: Nikolay Zhushikov +[2018-02-13T00:33:56.492] [INFO] cheese - inserting 1000 documents. first: Headlight-Herald (Tillamook) and last: Category:Waynesburg (minor league baseball) players +[2018-02-13T00:33:56.528] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:33:56.580] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:33:56.582] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:33:56.601] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/September 28, 2006 and last: Atlético Goianense +[2018-02-13T00:33:56.670] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:33:56.888] [INFO] cheese - inserting 1000 documents. first: Category:Table tennis competitions by country and last: Ulster Defence Regiment Medal +[2018-02-13T00:33:56.958] [INFO] cheese - inserting 1000 documents. first: The Firstborn Is Dead and last: André Lwoff +[2018-02-13T00:33:56.972] [INFO] cheese - inserting 1000 documents. first: File:JC-LiveUnplugged.jpg and last: Sankt Johann +[2018-02-13T00:33:56.975] [INFO] cheese - inserting 1000 documents. first: File:The Queen of Hearts (Agnetha Fältskog song) coverart.jpg and last: .ae Domain Administration +[2018-02-13T00:33:56.991] [INFO] cheese - inserting 1000 documents. first: Banca Popolare FriulAdria and last: Wikipedia:Articles for deletion/Joel Spitzer +[2018-02-13T00:33:56.990] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:33:56.998] [INFO] cheese - inserting 1000 documents. first: Bangladesh Chile relations and last: The Face (U.S. season 1) +[2018-02-13T00:33:57.032] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:33:57.043] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:33:57.049] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:33:57.081] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:33:57.082] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:33:57.182] [INFO] cheese - inserting 1000 documents. first: Atletico Goianense and last: United States Route 12 +[2018-02-13T00:33:57.245] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:33:57.381] [INFO] cheese - inserting 1000 documents. first: File:Donnaperamica A Woman as a Friend.jpg and last: Brandon Sheffield +[2018-02-13T00:33:57.389] [INFO] cheese - inserting 1000 documents. first: Portal:Chronology/Selected article and last: Aparisyon +[2018-02-13T00:33:57.415] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:33:57.422] [INFO] cheese - inserting 1000 documents. first: Bushido 9 and last: Insaniquarium! +[2018-02-13T00:33:57.430] [INFO] cheese - inserting 1000 documents. first: Anthropogenic Heat and last: Luby-Kurki +[2018-02-13T00:33:57.430] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:33:57.470] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:33:57.479] [INFO] cheese - inserting 1000 documents. first: M Yasir and last: Itamar massacre +[2018-02-13T00:33:57.487] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:33:57.542] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:33:57.619] [INFO] cheese - inserting 1000 documents. first: United States Route 112 and last: Testament of Joseph +[2018-02-13T00:33:57.661] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:33:57.687] [INFO] cheese - inserting 1000 documents. first: Lubycza Krolewska and last: Mlada Hora +[2018-02-13T00:33:57.711] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:33:57.745] [INFO] cheese - inserting 1000 documents. first: Mikhael Gromov and last: Contra terrene +[2018-02-13T00:33:57.795] [INFO] cheese - inserting 1000 documents. first: Burning Down the House: Fighting Fires and Losing Myself and last: David Joseph (basketball) +[2018-02-13T00:33:57.816] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:33:57.844] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:33:57.872] [INFO] cheese - inserting 1000 documents. first: Cabral Neculai Ibacka and last: Drăculeşti River +[2018-02-13T00:33:57.890] [INFO] cheese - inserting 1000 documents. first: File:RobynSings.jpg and last: Lissotis hartlaubii +[2018-02-13T00:33:57.915] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:33:57.925] [INFO] cheese - inserting 1000 documents. first: Mlawka and last: Nowy Kadlubek +[2018-02-13T00:33:57.928] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:33:57.956] [INFO] cheese - inserting 1000 documents. first: File:Città del Vaticano.png and last: Amphoe Ban Khok +[2018-02-13T00:33:57.957] [INFO] cheese - batch complete in: 0.246 secs +[2018-02-13T00:33:58.001] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:33:58.116] [INFO] cheese - inserting 1000 documents. first: Testament of Ashur and last: DanskMetal +[2018-02-13T00:33:58.158] [INFO] cheese - inserting 1000 documents. first: 2016 Launceston Tennis International – Women's Doubles and last: Ugom Range +[2018-02-13T00:33:58.161] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:33:58.198] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:33:58.255] [INFO] cheese - inserting 1000 documents. first: Naqus and last: James Lung +[2018-02-13T00:33:58.275] [INFO] cheese - inserting 1000 documents. first: Nowy Kaleczyn and last: Morpho godarti +[2018-02-13T00:33:58.304] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:33:58.334] [INFO] cheese - inserting 1000 documents. first: Svetlana (name) and last: Turbo Super Stunt Squad +[2018-02-13T00:33:58.339] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:33:58.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Merced skimmers and last: Dance, Dance, Dance (Yowsah, Yowsah, Yowsah) +[2018-02-13T00:33:58.402] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:33:58.442] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:33:58.634] [INFO] cheese - inserting 1000 documents. first: Nauseton and last: Philip Levine (entrepreneur) +[2018-02-13T00:33:58.659] [INFO] cheese - inserting 1000 documents. first: African common toad (disambiguation) and last: Jaseel Ismail +[2018-02-13T00:33:58.669] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:33:58.674] [INFO] cheese - inserting 1000 documents. first: Shiozawa, Niigata and last: Smolyan +[2018-02-13T00:33:58.710] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:33:58.712] [INFO] cheese - inserting 1000 documents. first: Porkkalam (2009 film) and last: Category:The Singers Unlimited albums +[2018-02-13T00:33:58.748] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T00:33:58.754] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:33:58.842] [INFO] cheese - inserting 1000 documents. first: London Plus and last: Badia, South Tyrol +[2018-02-13T00:33:58.855] [INFO] cheese - inserting 1000 documents. first: Mikhaylovskiy mine and last: Stanislav Stashkov +[2018-02-13T00:33:58.901] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:33:58.911] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:33:58.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Harold Brown (media) and last: Singhofen +[2018-02-13T00:33:59.038] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:33:59.046] [INFO] cheese - inserting 1000 documents. first: Timor-Leste at the 2000 Summer Paralympics and last: Category:21st-century establishments in Japan +[2018-02-13T00:33:59.050] [INFO] cheese - inserting 1000 documents. first: Machilipatnam Area Development Authority and last: Category:Start-Class Los Angeles Rams articles +[2018-02-13T00:33:59.093] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:33:59.122] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:33:59.201] [INFO] cheese - inserting 1000 documents. first: Manyu (department) and last: Weejas +[2018-02-13T00:33:59.247] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:33:59.269] [INFO] cheese - inserting 1000 documents. first: Category:Alphaviruses and last: Rashidali +[2018-02-13T00:33:59.316] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:33:59.328] [INFO] cheese - inserting 1000 documents. first: Platon (photographer) and last: Portal:New Zealand/Selected article/Week 16, 2006 +[2018-02-13T00:33:59.394] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Los Angeles Rams articles and last: Edward C. Bairstow +[2018-02-13T00:33:59.393] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:33:59.408] [INFO] cheese - inserting 1000 documents. first: Steinsberg and last: Pacific Rim Winemakers +[2018-02-13T00:33:59.443] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:33:59.455] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:33:59.483] [INFO] cheese - inserting 1000 documents. first: Expressive language disorder and last: HMS Caesar +[2018-02-13T00:33:59.494] [INFO] cheese - inserting 1000 documents. first: Category:3rd-millennium establishments in Japan and last: List of minerals (notes) +[2018-02-13T00:33:59.553] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:33:59.564] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:33:59.639] [INFO] cheese - inserting 1000 documents. first: Bishop Kenny and last: List of Czech films of the 1960s +[2018-02-13T00:33:59.773] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:33:59.824] [INFO] cheese - inserting 1000 documents. first: Rashid'ali and last: File:Arms of the Diocese of Cape Town.gif +[2018-02-13T00:33:59.975] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:34:00.011] [INFO] cheese - inserting 1000 documents. first: Al-Baith and last: Blake, Geoffrey +[2018-02-13T00:34:00.060] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:34:00.067] [INFO] cheese - inserting 1000 documents. first: Super Mario Bros. & Friends and last: The Runes of the Earth +[2018-02-13T00:34:00.111] [INFO] cheese - inserting 1000 documents. first: Don Fox and last: Wikipedia:WikiProject Spam/LinkReports/spatemag.com +[2018-02-13T00:34:00.151] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:34:00.202] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:34:00.466] [INFO] cheese - inserting 1000 documents. first: Cuccurullo and last: Augustinius Neldal Lossius +[2018-02-13T00:34:00.532] [INFO] cheese - inserting 1000 documents. first: Morelos mine and last: HMS Chelmer (1904) +[2018-02-13T00:34:00.535] [INFO] cheese - inserting 1000 documents. first: Kevin rose and last: Tony Geary +[2018-02-13T00:34:00.539] [INFO] cheese - inserting 1000 documents. first: Bourne, Geoffrey and last: Lincoln station +[2018-02-13T00:34:00.548] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:34:00.599] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:34:00.614] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:34:00.632] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T00:34:00.781] [INFO] cheese - inserting 1000 documents. first: ARMulator and last: Indian folk dance +[2018-02-13T00:34:00.820] [INFO] cheese - inserting 1000 documents. first: 100 broken windows and last: I Think I Love You +[2018-02-13T00:34:00.822] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:34:00.884] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:34:00.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thomas Verenna and last: Birthday Honours 1895 +[2018-02-13T00:34:00.963] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:34:01.033] [INFO] cheese - inserting 1000 documents. first: Rónán mac Colmáin (Irish poet) and last: Darlin' Darlin' Baby (Sweet Tender Love) +[2018-02-13T00:34:01.035] [INFO] cheese - inserting 1000 documents. first: Atakka Yō! and last: YIC +[2018-02-13T00:34:01.046] [INFO] cheese - inserting 1000 documents. first: Techno folk and last: Category:Nuclear energy in Ghana +[2018-02-13T00:34:01.073] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:34:01.103] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:34:01.153] [INFO] cheese - batch complete in: 1.6 secs +[2018-02-13T00:34:01.241] [INFO] cheese - inserting 1000 documents. first: Birthday Honours 1896 and last: Pale Bridewort +[2018-02-13T00:34:01.248] [INFO] cheese - inserting 1000 documents. first: East German national ice hockey team and last: Portal:SAARC/Selected Picture/3-Max +[2018-02-13T00:34:01.268] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:34:01.294] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:34:01.330] [INFO] cheese - inserting 1000 documents. first: WTO (disambiguation) and last: B-58 +[2018-02-13T00:34:01.370] [INFO] cheese - inserting 1000 documents. first: Shah Reza Pahlavi and last: André Lacroix +[2018-02-13T00:34:01.414] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T00:34:01.428] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in East Germany by decade and last: Category:Articles containing Romansh-language text +[2018-02-13T00:34:01.437] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:34:01.480] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:34:01.499] [INFO] cheese - inserting 1000 documents. first: Aurora's drift and last: Agusta A.105 +[2018-02-13T00:34:01.556] [INFO] cheese - inserting 1000 documents. first: Murugesu Balasunderam and last: Wikipedia:Editor review/Simply south 5 +[2018-02-13T00:34:01.563] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:34:01.620] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:34:01.702] [INFO] cheese - inserting 1000 documents. first: Chalarotona and last: Template:Nippon TV Do'yō drama +[2018-02-13T00:34:01.727] [INFO] cheese - inserting 1000 documents. first: Frémicourt and last: Fractievoorzitter +[2018-02-13T00:34:01.743] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:34:01.792] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:34:01.878] [INFO] cheese - inserting 1000 documents. first: Hull City Council and last: Wikipedia:Featured portal candidates/Portal:Food +[2018-02-13T00:34:01.899] [INFO] cheese - inserting 1000 documents. first: Category:1900s establishments in Ceylon and last: Cossus striolatus +[2018-02-13T00:34:01.958] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:34:01.973] [INFO] cheese - inserting 1000 documents. first: Civilized Evil and last: Subspecifically +[2018-02-13T00:34:01.978] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:34:02.046] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:34:02.095] [INFO] cheese - inserting 1000 documents. first: Category:Honor societies and last: List of Australian divisions in WWI +[2018-02-13T00:34:02.121] [INFO] cheese - inserting 1000 documents. first: Book:Dorothy Dandridge and last: Zaur Tagi-Zade +[2018-02-13T00:34:02.161] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:34:02.185] [INFO] cheese - inserting 1000 documents. first: Leicetser City F.C. and last: National Oath Tower +[2018-02-13T00:34:02.193] [INFO] cheese - inserting 1000 documents. first: Rethink Robotics and last: Category:Education in Karnataka by district +[2018-02-13T00:34:02.202] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:34:02.247] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:34:02.274] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:34:02.333] [INFO] cheese - inserting 1000 documents. first: Paropta johannes and last: Gakiyeh, Dorudfaraman +[2018-02-13T00:34:02.365] [INFO] cheese - inserting 1000 documents. first: Geng Zhong and last: Madam (Fashion) +[2018-02-13T00:34:02.369] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:34:02.370] [INFO] cheese - inserting 1000 documents. first: Veijo Puhjo and last: Wikipedia:Version 1.0 Editorial Team/Baseball player articles by quality/12 +[2018-02-13T00:34:02.417] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:34:02.421] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:34:02.608] [INFO] cheese - inserting 1000 documents. first: Draft:Sobolev-RKHS-CA and last: Template:WikiProject computer science +[2018-02-13T00:34:02.612] [INFO] cheese - inserting 1000 documents. first: Leueen MacGrath and last: Wikipedia:Possibly unfree files/2007 September 1 +[2018-02-13T00:34:02.654] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:34:02.662] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:34:02.712] [INFO] cheese - inserting 1000 documents. first: Gakeyeh and last: Category:Articles with Kanuri-language external links +[2018-02-13T00:34:02.745] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:34:02.764] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Baseball player articles by quality/13 and last: Philip II of Macedon National Stadium +[2018-02-13T00:34:02.856] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:34:03.047] [INFO] cheese - inserting 1000 documents. first: Robert Sandeman and last: Le Concert des Nations +[2018-02-13T00:34:03.093] [INFO] cheese - inserting 1000 documents. first: Obdurodon dicksoni and last: Binky (Harry Potter) +[2018-02-13T00:34:03.149] [INFO] cheese - inserting 1000 documents. first: Jagged Germanderwort and last: Komsomolske +[2018-02-13T00:34:03.154] [INFO] cheese - inserting 1000 documents. first: 3-M and last: Blackwell Scientific +[2018-02-13T00:34:03.164] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:34:03.185] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:34:03.243] [INFO] cheese - batch complete in: 1.082 secs +[2018-02-13T00:34:03.289] [INFO] cheese - batch complete in: 1.086 secs +[2018-02-13T00:34:03.409] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2007 September 1 and last: Valle del Cauca Deputies hostage crisis +[2018-02-13T00:34:03.427] [INFO] cheese - inserting 1000 documents. first: File:Tom keifer - the way life goes.jpg and last: Eshwara Temple, Kengeri, Bangalore +[2018-02-13T00:34:03.524] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:34:03.532] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:34:03.538] [INFO] cheese - inserting 1000 documents. first: File:Liu Qixiong.jpg and last: Douglas M. Baker, Jr +[2018-02-13T00:34:03.591] [INFO] cheese - inserting 1000 documents. first: Category:New Age albums by Greek artists and last: Perthshire beardmoss +[2018-02-13T00:34:03.626] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:34:03.632] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:34:03.786] [INFO] cheese - inserting 1000 documents. first: Categories of protected areas of Ukraine and last: Category:Sackville family +[2018-02-13T00:34:03.822] [INFO] cheese - inserting 1000 documents. first: Bibles for America and last: Tahoma National Cemetery +[2018-02-13T00:34:03.836] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:34:03.959] [INFO] cheese - inserting 1000 documents. first: Perthshire Beardmoss and last: Category:1344 disestablishments by continent +[2018-02-13T00:34:04.004] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:34:03.920] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:34:04.094] [INFO] cheese - inserting 1000 documents. first: Category:1993 in Monaco and last: In the zone +[2018-02-13T00:34:04.171] [INFO] cheese - inserting 1000 documents. first: Category:Railway services introduced in 1883 and last: Dekko +[2018-02-13T00:34:04.181] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:34:04.227] [INFO] cheese - inserting 1000 documents. first: File:Kellyclarksonbecauseofyouvideo.png and last: File:Bigbrainacademymindsprint.jpg +[2018-02-13T00:34:04.233] [INFO] cheese - inserting 1000 documents. first: Fado (character) and last: Tree sitter +[2018-02-13T00:34:04.247] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:34:04.305] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:34:04.336] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T00:34:04.386] [INFO] cheese - inserting 1000 documents. first: H. Vishwanath and last: Intel Core i Series +[2018-02-13T00:34:04.435] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:34:04.461] [INFO] cheese - inserting 1000 documents. first: The Constant Lover (Magneta Lane song) and last: Apostle plant +[2018-02-13T00:34:04.510] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:34:04.569] [INFO] cheese - inserting 1000 documents. first: Vampiro Americano and last: Category:Secondary schools in Finland +[2018-02-13T00:34:04.634] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:34:04.642] [INFO] cheese - inserting 1000 documents. first: Taisho Tripitaka and last: César Rincón +[2018-02-13T00:34:04.671] [INFO] cheese - inserting 1000 documents. first: Category:2002 establishments in Taiwan and last: Mountain snowberry +[2018-02-13T00:34:04.693] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:34:04.695] [INFO] cheese - inserting 1000 documents. first: Katherine Levy and last: Junmin Shenfenzheng +[2018-02-13T00:34:04.716] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:34:04.742] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:34:04.778] [INFO] cheese - inserting 1000 documents. first: 2002 Júbilo Iwata season and last: Charity Watch +[2018-02-13T00:34:04.816] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:34:04.867] [INFO] cheese - inserting 1000 documents. first: Walking iris and last: Burns, Raymond +[2018-02-13T00:34:04.915] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:34:04.957] [INFO] cheese - inserting 1000 documents. first: Immunities and last: Liberalism and radicalism in Bulgaria +[2018-02-13T00:34:05.011] [INFO] cheese - inserting 1000 documents. first: Blackburn High School and last: Rich content +[2018-02-13T00:34:05.014] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:34:05.030] [INFO] cheese - inserting 1000 documents. first: Evgeni Popov and last: Ernest Clarence Breeze +[2018-02-13T00:34:05.065] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:34:05.072] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:34:05.104] [INFO] cheese - inserting 1000 documents. first: I Love You (EP) and last: Camp Thomas (Ohio) +[2018-02-13T00:34:05.147] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:34:05.149] [INFO] cheese - inserting 1000 documents. first: Chang, Raymond and last: Vernon Regional Junior College +[2018-02-13T00:34:05.150] [INFO] cheese - inserting 1000 documents. first: Template:User WP Ras al-Khaimah and last: Portal:Current events/2011 March 18 +[2018-02-13T00:34:05.177] [INFO] cheese - inserting 1000 documents. first: ARA Santiago del Estero (S-12) and last: Wikipedia:Relevance of content/Content policy analysis +[2018-02-13T00:34:05.187] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:34:05.212] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:34:05.247] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:34:05.450] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for arbitration/Aitias/Workshop and last: Dr. Sangamesh Saundattimath +[2018-02-13T00:34:05.498] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:34:05.515] [INFO] cheese - inserting 1000 documents. first: Saint Rögnvald and last: Michael Chriton +[2018-02-13T00:34:05.542] [INFO] cheese - inserting 1000 documents. first: Binnein Beag and last: Countess of Oxford +[2018-02-13T00:34:05.553] [INFO] cheese - inserting 1000 documents. first: File:March of the Red Bull Legions.ogg and last: Template:Handball at the South Asian Games +[2018-02-13T00:34:05.560] [INFO] cheese - inserting 1000 documents. first: Special olympics and last: Cosmopterix abnormalis +[2018-02-13T00:34:05.566] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:34:05.570] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Two-cent piece (United States coin) and last: Food from the 'Hood +[2018-02-13T00:34:05.581] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:34:05.606] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:34:05.623] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:34:05.623] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:34:05.713] [INFO] cheese - inserting 1000 documents. first: Gingerbread man and last: Omotegō, Fukushima +[2018-02-13T00:34:05.917] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T00:34:05.984] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Greg Gossel and last: COS by H&M +[2018-02-13T00:34:06.042] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:34:06.115] [INFO] cheese - inserting 1000 documents. first: Midterm elections 2010 and last: 1992 IIHF World Women's Championship +[2018-02-13T00:34:06.133] [INFO] cheese - inserting 1000 documents. first: Africa Fencing Confederation and last: George Schley +[2018-02-13T00:34:06.151] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:34:06.183] [INFO] cheese - inserting 1000 documents. first: File:Kathakali - the play begins.jpg and last: Whitehall, Stronsay +[2018-02-13T00:34:06.184] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:34:06.237] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:34:06.242] [INFO] cheese - inserting 1000 documents. first: Template:Redirect template index and last: Serbia and Montenegro Basketball Cup +[2018-02-13T00:34:06.292] [INFO] cheese - inserting 1000 documents. first: File:Dmharvey-wallpaper-alien.svg and last: The Roof Gardens and Babylon +[2018-02-13T00:34:06.301] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:34:06.355] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:34:06.450] [INFO] cheese - inserting 1000 documents. first: Spain support for Iran during the Iran–Iraq war and last: Nintoku Seamount +[2018-02-13T00:34:06.502] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:34:06.555] [INFO] cheese - inserting 1000 documents. first: 1511 Idrija earthquake and last: Wikipedia:Articles for deletion/Kiichi Nakamoto +[2018-02-13T00:34:06.584] [INFO] cheese - inserting 1000 documents. first: Edward Hitchcock jr and last: Paul Adams (Massachusetts politician) +[2018-02-13T00:34:06.613] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:34:06.636] [INFO] cheese - inserting 1000 documents. first: Shacal-2 and last: Aleksandr Sergeyevich Pushkin +[2018-02-13T00:34:06.647] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:34:06.660] [INFO] cheese - inserting 1000 documents. first: Mesara Plain and last: Category:National Register of Historic Places in King County, Washington +[2018-02-13T00:34:06.693] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:34:06.715] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:34:06.736] [INFO] cheese - inserting 1000 documents. first: File:Ichigaya station.jpg and last: Alltheweb.com +[2018-02-13T00:34:06.799] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:34:06.814] [INFO] cheese - inserting 1000 documents. first: Nintoku Guyot and last: Colors of rainbow +[2018-02-13T00:34:06.846] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:34:06.941] [INFO] cheese - inserting 1000 documents. first: President of the Third Reich and last: Route 105 (Vermont) +[2018-02-13T00:34:06.970] [INFO] cheese - inserting 1000 documents. first: Alessandro Gallo and last: Parliament of Mpumalanga +[2018-02-13T00:34:06.974] [INFO] cheese - inserting 1000 documents. first: Taste of Chaos 2010 and last: Biological issues in Fantasia (Rite of Spring) +[2018-02-13T00:34:06.998] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:34:07.036] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:34:07.044] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:34:07.142] [INFO] cheese - inserting 1000 documents. first: The Big Brain Theory: Pure Genius and last: Category:French-American culture in Wisconsin +[2018-02-13T00:34:07.208] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:07.260] [INFO] cheese - inserting 1000 documents. first: Dona Kossy and last: Wikipedia:Sockpuppet investigations/Shake it like a ladder to the sun. +[2018-02-13T00:34:07.288] [INFO] cheese - inserting 1000 documents. first: Edmark Corporation and last: Wikipedia:Articles for deletion/Dvar (2nd nomination) +[2018-02-13T00:34:07.306] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:34:07.332] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:34:07.339] [INFO] cheese - inserting 1000 documents. first: Francisco de Sá Carneiro and last: Aperture synthesis +[2018-02-13T00:34:07.357] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Hanson County, South Dakota and last: Cibbo Matto +[2018-02-13T00:34:07.387] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:34:07.401] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:34:07.460] [INFO] cheese - inserting 1000 documents. first: Route 119 (Vermont) and last: File:Ampelakia.JPG +[2018-02-13T00:34:07.462] [INFO] cheese - inserting 1000 documents. first: Hibbertia prostrata and last: Italian American Mafia +[2018-02-13T00:34:07.501] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:34:07.508] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:34:07.690] [INFO] cheese - inserting 1000 documents. first: Giant Centipede and last: Bay de North, Newfoundland and Labrador +[2018-02-13T00:34:07.755] [INFO] cheese - inserting 1000 documents. first: Gray poplar and last: File:Little Red Flowers poster.JPG +[2018-02-13T00:34:07.770] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in the Roman Empire and last: Wikipedia:Articles for deletion/Sean Maye +[2018-02-13T00:34:07.792] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:34:07.832] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:34:07.866] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:34:07.918] [INFO] cheese - inserting 1000 documents. first: List of journalism schools in Europe and last: French Formula 3 +[2018-02-13T00:34:07.941] [INFO] cheese - inserting 1000 documents. first: I've Got To Find My Baby and last: Category:Wofford Terriers men's basketball players +[2018-02-13T00:34:07.966] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:34:07.976] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:34:08.035] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Huw aled lewis and last: Edward Sassoon +[2018-02-13T00:34:08.096] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:34:08.147] [INFO] cheese - inserting 1000 documents. first: Severe Tropical Storm Meari (2011) and last: Category:Handball competitions in Argentina +[2018-02-13T00:34:08.175] [INFO] cheese - inserting 1000 documents. first: Nintendo Entertainment System hardware clone and last: RJD2 +[2018-02-13T00:34:08.205] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:34:08.249] [INFO] cheese - inserting 1000 documents. first: Rosella Bjornson and last: Publication history of Dick Grayson +[2018-02-13T00:34:08.319] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T00:34:08.362] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:34:08.426] [INFO] cheese - inserting 1000 documents. first: File:BenjaminSmoke.jpg and last: The (Non-)Decadent Sounds of Faye +[2018-02-13T00:34:08.473] [INFO] cheese - inserting 1000 documents. first: Sahpresa and last: Americans for Peace Now +[2018-02-13T00:34:08.500] [INFO] cheese - inserting 1000 documents. first: Too Old To Rock 'N' Roll Tour and last: Rubber tires +[2018-02-13T00:34:08.513] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:34:08.537] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:34:08.570] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:34:08.640] [INFO] cheese - inserting 1000 documents. first: Clemson College and last: Category:Military locations +[2018-02-13T00:34:08.662] [INFO] cheese - inserting 1000 documents. first: Bilton Grange (disambiguation) and last: Streptomyces javensis +[2018-02-13T00:34:08.676] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:34:08.697] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:08.783] [INFO] cheese - inserting 1000 documents. first: Category:People from Bonham, Texas and last: Dharapuram (State Assembly Constituency) +[2018-02-13T00:34:08.834] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:34:08.881] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject MythBusters and last: Anna Lang +[2018-02-13T00:34:08.895] [INFO] cheese - inserting 1000 documents. first: Food physics and last: Avalonianus sanfordi +[2018-02-13T00:34:08.904] [INFO] cheese - inserting 1000 documents. first: Analysis of flows and last: Matsuyama, Yamagata +[2018-02-13T00:34:08.911] [INFO] cheese - inserting 1000 documents. first: Sheep farming in Wales and last: Category:Category-Class Skepticism articles +[2018-02-13T00:34:08.921] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:34:08.929] [INFO] cheese - inserting 1000 documents. first: NFL Most Valuable Player and last: Eric Poole (disambiguation) +[2018-02-13T00:34:08.952] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:34:08.957] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:34:08.960] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T00:34:09.041] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:34:09.233] [INFO] cheese - inserting 1000 documents. first: Pipettor and last: Truncated +[2018-02-13T00:34:09.254] [INFO] cheese - inserting 1000 documents. first: Anvatt and last: Republic of Ireland women's national football team 2010s results +[2018-02-13T00:34:09.259] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Skepticism articles and last: G4 states +[2018-02-13T00:34:09.280] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:34:09.284] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:34:09.286] [INFO] cheese - inserting 1000 documents. first: Common bond (disambiguation) and last: Anita Stewart (culinary author) +[2018-02-13T00:34:09.319] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:34:09.341] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:34:09.357] [INFO] cheese - inserting 1000 documents. first: Ducati 125 Bronco and last: Brewer State Junior College +[2018-02-13T00:34:09.404] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:34:09.420] [INFO] cheese - inserting 1000 documents. first: Hirata, Yamagata and last: Canon EOS 10D +[2018-02-13T00:34:09.472] [INFO] cheese - inserting 1000 documents. first: File:11 Flottille Emblem.png and last: Portal:Golf/Selected picture/09 +[2018-02-13T00:34:09.480] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:34:09.530] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:34:09.675] [INFO] cheese - inserting 1000 documents. first: Thunderer (comics) and last: Australian Society of Anaesthetists +[2018-02-13T00:34:09.741] [INFO] cheese - inserting 1000 documents. first: Orewa Surf Life Saving Club and last: Agent Deborah Ciccerone Waldrup +[2018-02-13T00:34:09.750] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:34:09.763] [INFO] cheese - inserting 1000 documents. first: Phillips, Howard and last: Orianica Velásquez +[2018-02-13T00:34:09.814] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:34:09.819] [INFO] cheese - inserting 1000 documents. first: World Harmony Run and last: Dormition of the Theotokos Cathedral, Varna +[2018-02-13T00:34:09.821] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:34:09.870] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:34:09.895] [INFO] cheese - inserting 1000 documents. first: Ernie Simms and last: File:Real Love.ogg +[2018-02-13T00:34:09.936] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:34:09.944] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 2002-03 UCL QR2 and last: Heraklion Prefecture +[2018-02-13T00:34:09.973] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:34:09.995] [INFO] cheese - inserting 1000 documents. first: File:HCBC Blade.svg and last: Injury of brachial plexus +[2018-02-13T00:34:10.038] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:34:10.225] [INFO] cheese - inserting 1000 documents. first: Chocolate Biscuit pudding and last: Cross Corners, nh +[2018-02-13T00:34:10.238] [INFO] cheese - inserting 1000 documents. first: Mercedes Divide and last: Message to the Black Man +[2018-02-13T00:34:10.245] [INFO] cheese - inserting 1000 documents. first: Euboea Prefecture and last: Category:Junimea +[2018-02-13T00:34:10.250] [INFO] cheese - inserting 1000 documents. first: Category:11th century in Bolivia and last: 123 Signals Unit RAF +[2018-02-13T00:34:10.260] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:34:10.280] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:34:10.278] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:34:10.299] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:34:10.335] [INFO] cheese - inserting 1000 documents. first: CCCSTI and last: HADOPI +[2018-02-13T00:34:10.347] [INFO] cheese - inserting 1000 documents. first: Category:1898 and last: Jason Becker +[2018-02-13T00:34:10.370] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:34:10.434] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:34:10.457] [INFO] cheese - inserting 1000 documents. first: Crying freeman and last: National German-American Alliance +[2018-02-13T00:34:10.508] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:34:10.629] [INFO] cheese - inserting 1000 documents. first: Naim moghabghab and last: Category:1233 festivals +[2018-02-13T00:34:10.660] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:34:10.689] [INFO] cheese - inserting 1000 documents. first: Nauheed and last: Category:Roman governors of Germania Superior +[2018-02-13T00:34:10.724] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:34:10.725] [INFO] cheese - inserting 1000 documents. first: List Of University Interscholastic League Events and last: Benjamin Orr (disambiguation) +[2018-02-13T00:34:10.755] [INFO] cheese - inserting 1000 documents. first: LPT2 (CONFIG.SYS directive) and last: SMBC Theater +[2018-02-13T00:34:10.768] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:34:10.774] [INFO] cheese - inserting 1000 documents. first: Hadopi law and last: Octonians +[2018-02-13T00:34:10.802] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:34:10.879] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:34:10.956] [INFO] cheese - inserting 1000 documents. first: 105mm Gun T8 and last: Meat Alexandria +[2018-02-13T00:34:11.038] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:34:11.105] [INFO] cheese - inserting 1000 documents. first: Capitonym and last: Donald "Buzz" Lukens +[2018-02-13T00:34:11.144] [INFO] cheese - inserting 1000 documents. first: Numerical approximations of π and last: Ka'ahumanu Church +[2018-02-13T00:34:11.150] [INFO] cheese - inserting 1000 documents. first: Saint Saffold and last: Secaucus Junction (NJT) +[2018-02-13T00:34:11.197] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:34:11.233] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:34:11.246] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:34:11.341] [INFO] cheese - inserting 1000 documents. first: Category:1997–98 in Belgian football and last: Nazeer Ahmed +[2018-02-13T00:34:11.344] [INFO] cheese - inserting 1000 documents. first: E-75 highway and last: Louis-Gustave Martin +[2018-02-13T00:34:11.388] [INFO] cheese - inserting 1000 documents. first: Vibroweapon and last: Bola Ige +[2018-02-13T00:34:11.400] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:34:11.415] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:34:11.478] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:34:11.617] [INFO] cheese - inserting 1000 documents. first: Standard Chartered Thailand and last: File:Back-and-white hawk-eagle.jpg +[2018-02-13T00:34:11.629] [INFO] cheese - inserting 1000 documents. first: Chicken Creek (disambiguation) and last: Template:TNT Tropang Texters +[2018-02-13T00:34:11.645] [INFO] cheese - inserting 1000 documents. first: Kaʻahumanu Church and last: Limnaecia phragmitella +[2018-02-13T00:34:11.658] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:34:11.705] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:34:11.709] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:34:11.740] [INFO] cheese - inserting 1000 documents. first: Bill Morton (football) and last: Jack Riley +[2018-02-13T00:34:11.781] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:34:11.804] [INFO] cheese - inserting 1000 documents. first: File:ACallToArms.jpg and last: Narawi +[2018-02-13T00:34:11.839] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:34:11.886] [INFO] cheese - inserting 1000 documents. first: Template:User JBU and last: Abraham McClellan (Tennessee politician) +[2018-02-13T00:34:11.932] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:34:11.978] [INFO] cheese - inserting 1000 documents. first: Conrad I, Duke of Bohemia and last: Postage stamps and postal history of Bolivar Department +[2018-02-13T00:34:11.984] [INFO] cheese - inserting 1000 documents. first: RML 7-inch gun and last: Anette Støvelbæk +[2018-02-13T00:34:12.129] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:34:12.282] [INFO] cheese - inserting 1000 documents. first: Secret meeting between the IRA and UVF and last: Alexander Bell and Elisha Gray telephone controversy +[2018-02-13T00:34:12.292] [INFO] cheese - inserting 1000 documents. first: Jeff Tomlinson and last: Dorpat (disambiguation) +[2018-02-13T00:34:12.454] [INFO] cheese - inserting 1000 documents. first: Robert S. Rhine and last: Commerce Bank & Trust Holding Company +[2018-02-13T00:34:13.272] [INFO] cheese - inserting 1000 documents. first: Forbidden Passage and last: File:Colonial Theater - 1962.jpg +[2018-02-13T00:34:13.293] [INFO] cheese - batch complete in: 2.059 secs +[2018-02-13T00:34:13.324] [INFO] cheese - batch complete in: 1.615 secs +[2018-02-13T00:34:13.370] [INFO] cheese - batch complete in: 1.589 secs +[2018-02-13T00:34:13.483] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Collier County, Florida and last: File:Ett hus med många rum cover.jpg +[2018-02-13T00:34:13.589] [INFO] cheese - batch complete in: 1.93 secs +[2018-02-13T00:34:13.652] [INFO] cheese - batch complete in: 1.813 secs +[2018-02-13T00:34:13.686] [INFO] cheese - inserting 1000 documents. first: Richard Cheatham and last: Bulotu +[2018-02-13T00:34:13.710] [INFO] cheese - batch complete in: 1.581 secs +[2018-02-13T00:34:13.835] [INFO] cheese - batch complete in: 1.903 secs +[2018-02-13T00:34:13.998] [INFO] cheese - inserting 1000 documents. first: Special Immigrant Juvenile and last: Semispinalis thoracis muscles +[2018-02-13T00:34:14.041] [INFO] cheese - inserting 1000 documents. first: Richard Wells (nurse) and last: Juan Martín Cueva +[2018-02-13T00:34:14.046] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:34:14.086] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:34:14.180] [INFO] cheese - inserting 1000 documents. first: Navajo Business Council and last: Category:Deaf universities and colleges in the United States +[2018-02-13T00:34:14.182] [INFO] cheese - inserting 1000 documents. first: Vilovataya (inflow sluggish) and last: TimedText:Beach Boys that s not me.ogg.en.srt +[2018-02-13T00:34:14.243] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:34:14.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gia Lashay and last: Eddie Murphy (disambiguation) +[2018-02-13T00:34:14.275] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:34:14.324] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:34:14.330] [INFO] cheese - inserting 1000 documents. first: List of people from Swansea and last: Tactical Provost Wing +[2018-02-13T00:34:14.345] [INFO] cheese - inserting 1000 documents. first: Postage stamps and postal history of the North German Confederation and last: List of bridges in Cambridge +[2018-02-13T00:34:14.387] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:34:14.417] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T00:34:14.424] [INFO] cheese - inserting 1000 documents. first: Bad Aibling (Hofberg) and last: 32033 Arjunkapoor +[2018-02-13T00:34:14.433] [INFO] cheese - inserting 1000 documents. first: My Face Can’t Be Felt and last: Steven Troughton-Smith +[2018-02-13T00:34:14.478] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:34:14.485] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:34:14.590] [INFO] cheese - inserting 1000 documents. first: Brain chip and last: Ghulam Dastagir Shaida +[2018-02-13T00:34:14.637] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:34:14.744] [INFO] cheese - inserting 1000 documents. first: File:Chic - Le Freak.ogg and last: Kaij Mek, Arizona +[2018-02-13T00:34:14.849] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:34:14.874] [INFO] cheese - inserting 1000 documents. first: Schlossberg (hill) and last: Robert F. Fisher +[2018-02-13T00:34:14.891] [INFO] cheese - inserting 1000 documents. first: House of Icel and last: Wikipedia:Articles for deletion/Thomas Kraft +[2018-02-13T00:34:14.932] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:34:14.933] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:34:14.942] [INFO] cheese - inserting 1000 documents. first: KHV (disambiguation) and last: Category:Fuzhou Military Region +[2018-02-13T00:34:15.003] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:34:15.113] [INFO] cheese - inserting 1000 documents. first: Workaholic (song) and last: Naniwa University of the Arts +[2018-02-13T00:34:15.118] [INFO] cheese - inserting 1000 documents. first: Slip Stich and Pass and last: Ford F-Series +[2018-02-13T00:34:15.209] [INFO] cheese - inserting 1000 documents. first: Geoff Siegel and last: ZE (disambiguation) +[2018-02-13T00:34:15.221] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:34:15.312] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T00:34:15.317] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:34:15.437] [INFO] cheese - inserting 1000 documents. first: Wirscheid and last: Toros Toramanian +[2018-02-13T00:34:15.530] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:34:15.552] [INFO] cheese - inserting 1000 documents. first: Category:Midland Colts players and last: European Championship in football (disambiguation) +[2018-02-13T00:34:15.553] [INFO] cheese - inserting 1000 documents. first: The International Association of Media and History and last: Wikipedia:Brazil Collaboration/Header +[2018-02-13T00:34:15.653] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:34:15.657] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:34:15.727] [INFO] cheese - inserting 1000 documents. first: Voice in the Night and last: Category:Departments of Moronou Region +[2018-02-13T00:34:15.806] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:34:15.878] [INFO] cheese - inserting 1000 documents. first: Gabriel Ilyich Urazovsky and last: Dudilla Sridhar Babu +[2018-02-13T00:34:15.955] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:34:16.037] [INFO] cheese - inserting 1000 documents. first: MSSS and last: Nevėžis Kėdainiai +[2018-02-13T00:34:16.053] [INFO] cheese - inserting 1000 documents. first: Mount Ulla Township, Rowan County, North Carolina and last: WAP Push +[2018-02-13T00:34:16.089] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:34:16.115] [INFO] cheese - inserting 1000 documents. first: Trachealis and last: Category:Kentucky Democratic Party +[2018-02-13T00:34:16.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Brazil Collaboration/History and last: Shippee, California +[2018-02-13T00:34:16.118] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T00:34:16.147] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:34:16.182] [INFO] cheese - inserting 1000 documents. first: Yonathan Suryatama and last: Wikipedia:Articles for deletion/Spider-Man (set index) +[2018-02-13T00:34:16.183] [INFO] cheese - inserting 1000 documents. first: Ford F-150 (F-Series truck) and last: Pneumonoultramicroscopicsilicovolcanokoniosis +[2018-02-13T00:34:16.200] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:34:16.240] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:34:16.266] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:34:16.278] [INFO] cheese - inserting 1000 documents. first: Wahineopio Kahakuha'ako'i and last: Anthidium luizae +[2018-02-13T00:34:16.325] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:34:16.409] [INFO] cheese - inserting 1000 documents. first: File:Songs from Before (Front Cover).png and last: Fortress (Thee Oh Sees song) +[2018-02-13T00:34:16.449] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:34:16.458] [INFO] cheese - inserting 1000 documents. first: Bogoz River and last: 1943 Brooklyn Dodgers season +[2018-02-13T00:34:16.513] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:34:16.565] [INFO] cheese - inserting 1000 documents. first: Apatema mediopallidum and last: Ron Wear +[2018-02-13T00:34:16.620] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:34:16.636] [INFO] cheese - inserting 1000 documents. first: Anthidium luctuosum and last: File:Boys Will Be Boys.jpg +[2018-02-13T00:34:16.647] [INFO] cheese - inserting 1000 documents. first: Universal Combat Gold and last: Y. I. Zolotarev +[2018-02-13T00:34:16.647] [INFO] cheese - inserting 1000 documents. first: Slavery in Indian Territory and last: File:Tua Tua Keladi.jpg +[2018-02-13T00:34:16.680] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:34:16.702] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:34:16.718] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:34:16.749] [INFO] cheese - inserting 1000 documents. first: Turnabout (Margaret Peterson Haddix novel) and last: ᓺ +[2018-02-13T00:34:16.784] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:34:16.901] [INFO] cheese - inserting 1000 documents. first: K-Y jelly and last: Anne Cox Chambers +[2018-02-13T00:34:16.919] [INFO] cheese - inserting 1000 documents. first: New York Review of Books Classics and last: Wikipedia:WikiProject Spam/LinkReports/imwerden.de +[2018-02-13T00:34:17.018] [INFO] cheese - inserting 1000 documents. first: ᓻ and last: Brent, John +[2018-02-13T00:34:17.027] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:34:17.033] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:34:17.090] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:34:17.135] [INFO] cheese - inserting 1000 documents. first: Madura horseshoe bat and last: Alex Motley +[2018-02-13T00:34:17.171] [INFO] cheese - inserting 1000 documents. first: Kropotkin (urban locality) and last: File:MG 3102.jpg +[2018-02-13T00:34:17.193] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:34:17.238] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:34:17.352] [INFO] cheese - inserting 1000 documents. first: Serampore Union Institution and last: Treadmill with Vibration Isolation Stabilization +[2018-02-13T00:34:17.418] [INFO] cheese - inserting 1000 documents. first: File:Entwistlerestaurantrow.jpg and last: 1967 Grand Prix motorcycle racing season +[2018-02-13T00:34:17.434] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:34:17.492] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:34:17.543] [INFO] cheese - inserting 1000 documents. first: Private numbering plan and last: Ribot's law +[2018-02-13T00:34:17.569] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:34:17.588] [INFO] cheese - inserting 1000 documents. first: Brereton, John and last: Emperor Taizong's campaign against states of the Western Regions +[2018-02-13T00:34:17.640] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:34:17.768] [INFO] cheese - inserting 1000 documents. first: Gregory Kane (journalist) and last: John Johnson (British politician) +[2018-02-13T00:34:17.793] [INFO] cheese - inserting 1000 documents. first: Kyiv Urban Rail and last: C³-bu +[2018-02-13T00:34:17.827] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:34:17.843] [INFO] cheese - inserting 1000 documents. first: Most Distinguished Order of Saint Michael and Saint George and last: Garbayuela, Badajoz +[2018-02-13T00:34:17.845] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:34:17.860] [INFO] cheese - inserting 1000 documents. first: Intramolecular aglycone delivery and last: Totoma, California +[2018-02-13T00:34:17.866] [INFO] cheese - inserting 1000 documents. first: P3X-888 and last: Wikipedia:Help desk/Archive 5 +[2018-02-13T00:34:17.874] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:34:17.909] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:34:17.931] [INFO] cheese - inserting 1000 documents. first: Top Model Norge (cycle 6) and last: Port Kent (Amtrak station) +[2018-02-13T00:34:17.931] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:34:17.935] [INFO] cheese - inserting 1000 documents. first: WYLN-LP and last: List of mayors of Albany, New York +[2018-02-13T00:34:17.962] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:34:17.994] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:34:18.156] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hartaculinara.us2.list-manage2.com and last: Tracy Lee Stum +[2018-02-13T00:34:18.179] [INFO] cheese - inserting 1000 documents. first: Garbayuela, Spain and last: File:Hotchkiss Hall.jpg +[2018-02-13T00:34:18.199] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:34:18.201] [INFO] cheese - inserting 1000 documents. first: Totoma and last: File:Oscartune.jpg +[2018-02-13T00:34:18.212] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:34:18.228] [INFO] cheese - inserting 1000 documents. first: Andrew, Mark and last: 1932 Penn Quakers football team +[2018-02-13T00:34:18.255] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:34:18.270] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:34:18.303] [INFO] cheese - inserting 1000 documents. first: Category:2012–13 CWHL season and last: Canibal mine +[2018-02-13T00:34:18.345] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:34:18.478] [INFO] cheese - inserting 1000 documents. first: Module:ISO 3166/data/NO and last: LATTC / Ortho Institute station +[2018-02-13T00:34:18.479] [INFO] cheese - inserting 1000 documents. first: Gujarat Vidyapeeth and last: Wikipedia:Arbitration/Index/Involved parties +[2018-02-13T00:34:18.498] [INFO] cheese - inserting 1000 documents. first: Botys ptoalis and last: File:Sanger Logo.png +[2018-02-13T00:34:18.498] [INFO] cheese - batch complete in: 0.227 secs +[2018-02-13T00:34:18.528] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:34:18.536] [INFO] cheese - inserting 1000 documents. first: File:Altbeastplay.png and last: Jusepe de Ribera +[2018-02-13T00:34:18.562] [INFO] cheese - inserting 1000 documents. first: The Shock Doctrine and last: Israeli acute paralysis virus +[2018-02-13T00:34:18.576] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:34:18.596] [INFO] cheese - inserting 1000 documents. first: Dorjee Sun and last: Exoristopsis +[2018-02-13T00:34:18.600] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:34:18.622] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:34:18.678] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:34:18.756] [INFO] cheese - inserting 1000 documents. first: Category:Ghanaian producers and last: Shue Creek +[2018-02-13T00:34:18.777] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:34:18.804] [INFO] cheese - inserting 1000 documents. first: Category:Titanium mines in Guatemala and last: Honour of Windsor +[2018-02-13T00:34:18.920] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:34:18.952] [INFO] cheese - inserting 1000 documents. first: Fabriciella and last: Acemya tibialis +[2018-02-13T00:34:18.998] [INFO] cheese - inserting 1000 documents. first: Phoenix Assurance and last: Friedberg in der Wetterau +[2018-02-13T00:34:19.020] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:34:19.096] [INFO] cheese - inserting 1000 documents. first: Characium and last: ⠯ +[2018-02-13T00:34:19.106] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:34:19.170] [INFO] cheese - inserting 1000 documents. first: St. Curetán and last: Phil Neale +[2018-02-13T00:34:19.181] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:34:19.236] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:34:19.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Laurette Atindehou and last: Armed Forces Logistics Authority (Egypt) +[2018-02-13T00:34:19.292] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:34:19.403] [INFO] cheese - inserting 1000 documents. first: File:Harvey Firestone Memorial, Akron, Ohio USA.jpg and last: File:Muruwari language.png +[2018-02-13T00:34:19.409] [INFO] cheese - inserting 1000 documents. first: Poisson bright spot and last: Category:People from Cornwall, Connecticut +[2018-02-13T00:34:19.437] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:34:19.444] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:34:19.501] [INFO] cheese - inserting 1000 documents. first: Ikramullah Sheikh and last: Captain Fracassa's Journey +[2018-02-13T00:34:19.513] [INFO] cheese - inserting 1000 documents. first: Guzelyurt and last: Freestyle Skiing +[2018-02-13T00:34:19.527] [INFO] cheese - inserting 1000 documents. first: Tomasa Núñez and last: Category:Francesca Michielin songs +[2018-02-13T00:34:19.537] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:34:19.550] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T00:34:19.568] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T00:34:19.623] [INFO] cheese - inserting 1000 documents. first: State Route 330 (Tennessee) and last: Glace Bay, NS +[2018-02-13T00:34:19.635] [INFO] cheese - inserting 1000 documents. first: Piatkowisko and last: Przebendow +[2018-02-13T00:34:19.655] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:34:19.673] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:19.674] [INFO] cheese - inserting 1000 documents. first: Safe + Sound and last: Kai Chi Liu +[2018-02-13T00:34:19.719] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:34:19.824] [INFO] cheese - inserting 1000 documents. first: Przebrod and last: Rzezewo +[2018-02-13T00:34:19.848] [INFO] cheese - batch complete in: 0.193 secs +[2018-02-13T00:34:19.850] [INFO] cheese - inserting 1000 documents. first: Zadravko Milutinović and last: Gorshkov, Aleksandr +[2018-02-13T00:34:19.880] [INFO] cheese - inserting 1000 documents. first: File:Ngarna languages.png and last: Leptopelis bequaerti +[2018-02-13T00:34:19.885] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:34:19.924] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:34:19.929] [INFO] cheese - inserting 1000 documents. first: Category:Rijksmonuments in Flevoland and last: Wikipedia:WikiProject Spam/LinkReports/nikelebronshoes.net +[2018-02-13T00:34:19.979] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:34:20.034] [INFO] cheese - inserting 1000 documents. first: Lac la Biche, AB and last: Template:Podcasting-stub +[2018-02-13T00:34:20.065] [INFO] cheese - inserting 1000 documents. first: Rzezusnia and last: Category:Constitutional bishops +[2018-02-13T00:34:20.073] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:34:20.085] [INFO] cheese - inserting 1000 documents. first: Tricia Marwick and last: Category:Marquette County, Michigan +[2018-02-13T00:34:20.090] [INFO] cheese - batch complete in: 0.242 secs +[2018-02-13T00:34:20.118] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Geelong and last: Template:Chembox Bioavail +[2018-02-13T00:34:20.155] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:34:20.181] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:34:20.284] [INFO] cheese - inserting 1000 documents. first: Brucia La Terra and last: Swedish Division 1 (ice hockey) +[2018-02-13T00:34:20.285] [INFO] cheese - inserting 1000 documents. first: Kirill Razlogov and last: 2016 British Rally Championship season +[2018-02-13T00:34:20.310] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:34:20.327] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:34:20.418] [INFO] cheese - inserting 1000 documents. first: Wieclawice and last: Wolka Nowodworska +[2018-02-13T00:34:20.523] [INFO] cheese - inserting 1000 documents. first: Albert Rivaud and last: Bi Yan +[2018-02-13T00:34:20.549] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:34:20.627] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:34:20.661] [INFO] cheese - inserting 1000 documents. first: File:Didn't You Used to Be... cover.jpg and last: Category:1970 in Libya +[2018-02-13T00:34:20.720] [INFO] cheese - inserting 1000 documents. first: Category:Multilingual support templates and last: Normally aspirated +[2018-02-13T00:34:20.727] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:34:20.785] [INFO] cheese - inserting 1000 documents. first: Italian Classroom and last: Akakura +[2018-02-13T00:34:20.804] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:34:20.820] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:34:20.848] [INFO] cheese - inserting 1000 documents. first: Template:Women's International Zionist Organization/meta/shortname and last: 2016 TCR International Series season +[2018-02-13T00:34:20.899] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:34:20.965] [INFO] cheese - inserting 1000 documents. first: Wolka Nurzecka and last: Guardian Trust +[2018-02-13T00:34:20.986] [INFO] cheese - inserting 1000 documents. first: Rower and last: Western Wireless Corporation +[2018-02-13T00:34:21.025] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:34:21.069] [INFO] cheese - inserting 1000 documents. first: Olías del Rey and last: ReCharge Collectible Card Game +[2018-02-13T00:34:21.067] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:34:21.135] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:34:21.162] [INFO] cheese - inserting 1000 documents. first: First Cain Ministry and last: Den schwulen und lesbischen Opfern des Nationalsozialismus +[2018-02-13T00:34:21.219] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:21.298] [INFO] cheese - inserting 1000 documents. first: Anastasia Salina and last: Victor Naicu +[2018-02-13T00:34:21.331] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:34:21.394] [INFO] cheese - inserting 1000 documents. first: Imperial Spa and last: Category:2011 in American women's soccer leagues +[2018-02-13T00:34:21.422] [INFO] cheese - inserting 1000 documents. first: Area code 712 and last: Glenoe +[2018-02-13T00:34:21.476] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:34:21.477] [INFO] cheese - inserting 1000 documents. first: Tameza and last: Template:Libertas by country +[2018-02-13T00:34:21.489] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:34:21.550] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:34:21.662] [INFO] cheese - inserting 1000 documents. first: Sándor, Pál and last: Wikipedia:Meetup/ARLiSVRA2016 +[2018-02-13T00:34:21.673] [INFO] cheese - inserting 1000 documents. first: Holland's Sportive Lemur and last: Ponce de Leon Springs +[2018-02-13T00:34:21.713] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:34:21.760] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:34:21.853] [INFO] cheese - inserting 1000 documents. first: Grieg (surname) and last: Wikipedia:Reference desk/Archives/Miscellaneous/2013 June 28 +[2018-02-13T00:34:21.864] [INFO] cheese - inserting 1000 documents. first: Albert S. Marks and last: Parang +[2018-02-13T00:34:21.901] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:34:21.927] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:34:21.951] [INFO] cheese - inserting 1000 documents. first: Björneborg, Sweden and last: Infantry Regiment 9 Potsdam +[2018-02-13T00:34:21.986] [INFO] cheese - inserting 1000 documents. first: File:Temple of the Invisible.jpg and last: Gta 4 +[2018-02-13T00:34:21.992] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:34:22.009] [INFO] cheese - inserting 1000 documents. first: Category:FC Ripensia Timișoara players and last: Wikipedia:Reference desk/Archives/Entertainment/2016 February 8 +[2018-02-13T00:34:22.050] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:34:22.070] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:34:22.111] [INFO] cheese - inserting 1000 documents. first: Barbashmin and last: Setoishi Station +[2018-02-13T00:34:22.154] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:34:22.370] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 1996 Summer Olympics - Team jumping and last: Category:21st-century Uruguayan people +[2018-02-13T00:34:22.396] [INFO] cheese - inserting 1000 documents. first: Category:Hospital buildings completed in 1894 and last: File:Muse-the 2nd law lp.jpg +[2018-02-13T00:34:22.396] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:34:22.409] [INFO] cheese - inserting 1000 documents. first: File:Phish - Live Phish Volume 10.jpg and last: File:SwordTrilogy.jpg +[2018-02-13T00:34:22.449] [INFO] cheese - inserting 1000 documents. first: File:Cbs2hdlogo.jpg and last: Adavikatanahalli +[2018-02-13T00:34:22.460] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:34:22.472] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:34:22.518] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:34:22.557] [INFO] cheese - inserting 1000 documents. first: Kevin Williamson (screenwriter) and last: Wikipedia:Articles for deletion/Psychic Pokémon +[2018-02-13T00:34:22.570] [INFO] cheese - inserting 1000 documents. first: Vaccarizzo Albanian and last: Di Resta +[2018-02-13T00:34:22.615] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:34:22.628] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:34:22.708] [INFO] cheese - inserting 1000 documents. first: George Eaton Sutherland and last: Category:Discoveries by Atsuo Asami +[2018-02-13T00:34:22.735] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:34:22.905] [INFO] cheese - inserting 1000 documents. first: Hawley Smoot tariff and last: Wikipedia:Articles for deletion/Madakkavil +[2018-02-13T00:34:22.940] [INFO] cheese - inserting 1000 documents. first: Anthu Inthu Preethi Banthu and last: File:OutrunOnline.jpg +[2018-02-13T00:34:22.955] [INFO] cheese - inserting 1000 documents. first: Litleo and last: AUTOFAIL (CONFIG.SYS directive) +[2018-02-13T00:34:22.968] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:34:22.984] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:34:23.004] [INFO] cheese - inserting 1000 documents. first: The Via Latina tombs in Rome and last: National Heritage Museum (Lexington, Mass.) +[2018-02-13T00:34:23.017] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Pan-African Parliament from the Central African Republic and last: Sandy Lam (album) +[2018-02-13T00:34:23.019] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:34:23.045] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:34:23.095] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Connerdn and last: Daya Rajasinghe +[2018-02-13T00:34:23.118] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:34:23.136] [INFO] cheese - batch complete in: 2.001 secs +[2018-02-13T00:34:23.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flying Pokémon and last: Eleazar Wheelock +[2018-02-13T00:34:23.345] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:34:23.356] [INFO] cheese - inserting 1000 documents. first: File:Defendor poster.jpg and last: Aeis +[2018-02-13T00:34:23.415] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:34:23.433] [INFO] cheese - inserting 1000 documents. first: Category:Basquet Manresa basketball players and last: Category:FC Flora Tallinn players +[2018-02-13T00:34:23.464] [INFO] cheese - inserting 1000 documents. first: BASEDEV (CONFIG.SYS directive) and last: Fujin, Heilongjiang +[2018-02-13T00:34:23.483] [INFO] cheese - inserting 1000 documents. first: The Versatile Burl Ives! (album) and last: Clarence A. Manning +[2018-02-13T00:34:23.486] [INFO] cheese - inserting 1000 documents. first: 22739 Sikhote-Alin and last: Preston Thorgrimson Shidler Gates & Ellis +[2018-02-13T00:34:23.496] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:34:23.539] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:34:23.569] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:34:23.583] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:34:23.813] [INFO] cheese - inserting 1000 documents. first: Imprinted stamp and last: Wikipedia:Articles for deletion/Chiara Glorioso +[2018-02-13T00:34:23.857] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:34:23.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/BeaveRun Motorsports Complex and last: Villanueva de Alcardete, Spain +[2018-02-13T00:34:23.891] [INFO] cheese - inserting 1000 documents. first: File:FC Dynamo Moscow crest.png and last: Category:Women in Shahnameh +[2018-02-13T00:34:23.927] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:34:23.936] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:34:24.043] [INFO] cheese - inserting 1000 documents. first: File:Fatafehi Tuʻipelehake.jpg and last: Polynucleobacter difficilis +[2018-02-13T00:34:24.060] [INFO] cheese - inserting 1000 documents. first: Good glaux and last: Sailing to Byzantium +[2018-02-13T00:34:24.134] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:34:24.184] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:34:24.188] [INFO] cheese - inserting 1000 documents. first: Modedit and last: Girolamo Segato +[2018-02-13T00:34:24.318] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:34:24.454] [INFO] cheese - inserting 1000 documents. first: Template:Fukushima-railstation-stub and last: Dolphin-friendly +[2018-02-13T00:34:24.502] [INFO] cheese - inserting 1000 documents. first: Pseudo-homosexuality and last: Clarinet Concerto (Mozart) +[2018-02-13T00:34:24.559] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:34:24.568] [INFO] cheese - inserting 1000 documents. first: File:Maintenance Crest.jpg and last: File:PureReasonRevolution AmorVincitOmnia.jpg +[2018-02-13T00:34:24.598] [INFO] cheese - inserting 1000 documents. first: HM Prison North Wales and last: Wikipedia:Syracuse University +[2018-02-13T00:34:24.655] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:34:24.672] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:34:24.676] [INFO] cheese - batch complete in: 1.331 secs +[2018-02-13T00:34:24.806] [INFO] cheese - inserting 1000 documents. first: Ernest Bethel and last: Winters-Ballinger Eagles +[2018-02-13T00:34:24.883] [INFO] cheese - inserting 1000 documents. first: Acarus putrescentiae and last: Claw toe +[2018-02-13T00:34:24.920] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:34:24.924] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Log/2006 April 13 and last: When 6021 Met 4267 +[2018-02-13T00:34:24.962] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:34:24.982] [INFO] cheese - inserting 1000 documents. first: Dolphin by-catch and last: 16th Amendment U.S. +[2018-02-13T00:34:25.035] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:34:25.052] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:34:25.185] [INFO] cheese - inserting 1000 documents. first: Oakland-Jack London Square station and last: The Not So Secret Life of the Manic Depressive +[2018-02-13T00:34:25.213] [INFO] cheese - inserting 1000 documents. first: Category:Gorilla Biscuits albums and last: Wikipedia:Good article reassessment/Andrés Nocioni/1 +[2018-02-13T00:34:25.228] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:34:25.306] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:34:25.435] [INFO] cheese - inserting 1000 documents. first: Khalifeh, Kermanshah and last: Ab Barik-e Sofla, Kermanshah +[2018-02-13T00:34:25.466] [INFO] cheese - inserting 1000 documents. first: Magaz de Pisuerga and last: Mahamud, Burgos +[2018-02-13T00:34:25.486] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:34:25.506] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:34:25.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/compositesw.com and last: Al Arabi Qatar +[2018-02-13T00:34:25.649] [INFO] cheese - inserting 1000 documents. first: Pearl harbor bombings and last: 81st Congress +[2018-02-13T00:34:25.691] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:34:25.700] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:34:25.754] [INFO] cheese - inserting 1000 documents. first: Lobe of pituitary gland and last: Ahmad, Mushtaq +[2018-02-13T00:34:25.793] [INFO] cheese - inserting 1000 documents. first: Company of Snakes and last: Sandra McDonald +[2018-02-13T00:34:25.803] [INFO] cheese - inserting 1000 documents. first: The Mountain School and last: Agua Dulce, California +[2018-02-13T00:34:25.815] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:34:25.838] [INFO] cheese - inserting 1000 documents. first: Mahamud, Spain and last: Wikipedia:WikiProject Spam/LinkReports/sportal.siol.net +[2018-02-13T00:34:25.891] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:34:25.895] [INFO] cheese - batch complete in: 1.219 secs +[2018-02-13T00:34:25.899] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:34:25.977] [INFO] cheese - inserting 1000 documents. first: Cayetano Bonnín Vasqúez and last: St. Joseph's Church, Semarang +[2018-02-13T00:34:26.018] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:34:26.140] [INFO] cheese - inserting 1000 documents. first: Al Arabi Doha and last: Portal:Fictional characters/Comics/2 +[2018-02-13T00:34:26.187] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:34:26.202] [INFO] cheese - inserting 1000 documents. first: Ahmad, Zainal Abidin and last: Category:Albanian Salafis +[2018-02-13T00:34:26.205] [INFO] cheese - inserting 1000 documents. first: Category:Transport in Trinidad and Tobago and last: Category:Canadian blues musicians by instrument +[2018-02-13T00:34:26.229] [INFO] cheese - inserting 1000 documents. first: MS Kronprins Harald and last: Cêgnê +[2018-02-13T00:34:26.239] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:34:26.247] [INFO] cheese - inserting 1000 documents. first: Bates's Case and last: Defense Cyber Investigations Training Academy +[2018-02-13T00:34:26.268] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:34:26.283] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:34:26.312] [INFO] cheese - inserting 1000 documents. first: Ingold I of Sweden and last: Subnational entities of Belgium +[2018-02-13T00:34:26.315] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:34:26.365] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:34:26.479] [INFO] cheese - inserting 1000 documents. first: History of slavery in Illinois and last: People who have lived at airports +[2018-02-13T00:34:26.500] [INFO] cheese - inserting 1000 documents. first: Template:NXEA color and last: Ilovu +[2018-02-13T00:34:26.541] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:34:26.551] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:34:26.575] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2016-02-19 and last: SK Pardubice +[2018-02-13T00:34:26.616] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:34:26.692] [INFO] cheese - inserting 1000 documents. first: Defense Computer Forensics Lab and last: Wikipedia:Articles for deletion/RadCon +[2018-02-13T00:34:26.701] [INFO] cheese - inserting 1000 documents. first: Lake Traful and last: 6th GayVN Awards +[2018-02-13T00:34:26.715] [INFO] cheese - inserting 1000 documents. first: Victor Manuel Baute and last: Dharmic tradition +[2018-02-13T00:34:26.725] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:34:26.755] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:34:26.774] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:34:26.871] [INFO] cheese - inserting 1000 documents. first: Lord Llandaff and last: Category:Pangolins +[2018-02-13T00:34:26.889] [INFO] cheese - inserting 1000 documents. first: Environmental Dispute Resolution Fund and last: List of moths of Equatorial Guinea +[2018-02-13T00:34:26.924] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:34:26.976] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:34:27.022] [INFO] cheese - inserting 1000 documents. first: Category:Technical universities and colleges in Germany and last: Template:User WP Ricciardo +[2018-02-13T00:34:27.106] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:34:27.153] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1968 Summer Olympics – Men's decathlon and last: Baraboi, Dondușeni +[2018-02-13T00:34:27.172] [INFO] cheese - inserting 1000 documents. first: Us sailing and last: Monterde de Albarracín, Teruel +[2018-02-13T00:34:27.209] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:34:27.266] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:34:27.281] [INFO] cheese - inserting 1000 documents. first: Mimika Air Flight 514 and last: Wikipedia:Articles for deletion/Alta Mira +[2018-02-13T00:34:27.303] [INFO] cheese - inserting 1000 documents. first: Carlos Hall and last: Live Phish Volume 19 +[2018-02-13T00:34:27.331] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:34:27.362] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:34:27.432] [INFO] cheese - inserting 1000 documents. first: File:20 Odd Years cover.jpg and last: File:TheFoldingStar.jpg +[2018-02-13T00:34:27.464] [INFO] cheese - inserting 1000 documents. first: Template:User WP Hülkenberg and last: Template:DSCG +[2018-02-13T00:34:27.468] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:27.491] [INFO] cheese - inserting 1000 documents. first: Monterde de Albarracín, Spain and last: Wikipedia:Articles for deletion/Call Me Lightning +[2018-02-13T00:34:27.493] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:34:27.560] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:34:27.652] [INFO] cheese - inserting 1000 documents. first: Trevor Dunn and last: The Whiffenpoof Song +[2018-02-13T00:34:27.675] [INFO] cheese - inserting 1000 documents. first: Zen Buddhist Enlightenment and last: Why Does the Sun Shine? (The Sun Is a Mass of Incandescent Gas) +[2018-02-13T00:34:27.682] [INFO] cheese - inserting 1000 documents. first: Clarke Mills and last: Falsterbo Coast guard Crash +[2018-02-13T00:34:27.714] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:34:27.727] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:34:27.733] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T00:34:27.738] [INFO] cheese - inserting 1000 documents. first: West Florida Parishes and last: Category:1850 in British sport +[2018-02-13T00:34:27.791] [INFO] cheese - inserting 1000 documents. first: Portal:United States Marine Corps/quote/2011April and last: ARCHON +[2018-02-13T00:34:27.807] [INFO] cheese - inserting 1000 documents. first: Matej Hradecky and last: Corky ironbark +[2018-02-13T00:34:27.813] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:34:27.829] [INFO] cheese - inserting 1000 documents. first: Urriés, Zaragoza and last: Santiuste, Spain +[2018-02-13T00:34:27.831] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:34:27.845] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:34:27.863] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:34:28.110] [INFO] cheese - inserting 1000 documents. first: Sayatón and last: Aldealengua de Pedraza, Spain +[2018-02-13T00:34:28.123] [INFO] cheese - inserting 1000 documents. first: Lowell Junction and last: Xyletobius aleuritis +[2018-02-13T00:34:28.132] [INFO] cheese - inserting 1000 documents. first: David Bunnell and last: Virashaiva +[2018-02-13T00:34:28.132] [INFO] cheese - inserting 1000 documents. first: Tumbledown ironbark and last: Girolamo Sordo +[2018-02-13T00:34:28.134] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:34:28.173] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:34:28.179] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:34:28.184] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:34:28.218] [INFO] cheese - inserting 1000 documents. first: 2007/08 Ystalyfera RFC season and last: Aïchour +[2018-02-13T00:34:28.264] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:34:28.363] [INFO] cheese - inserting 1000 documents. first: Aldealengua de Santa María, Segovia and last: San Felices, Soria +[2018-02-13T00:34:28.383] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:34:28.452] [INFO] cheese - inserting 1000 documents. first: Xyletobius ashmeadi and last: File:Boom Boom Pow - Screenshot.jpg +[2018-02-13T00:34:28.456] [INFO] cheese - inserting 1000 documents. first: Spam (computing) and last: Category:Speed skating venues in the United States +[2018-02-13T00:34:28.457] [INFO] cheese - inserting 1000 documents. first: Gabon at the 2004 Summer Olympics and last: Marlene Ahrens +[2018-02-13T00:34:28.489] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:34:28.515] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:34:28.529] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:34:28.638] [INFO] cheese - inserting 1000 documents. first: List of Filipino films of 2016 and last: Draft:Pomorska Street in Bydgoszcz +[2018-02-13T00:34:28.651] [INFO] cheese - inserting 1000 documents. first: NCAA Division I Women's Lacrosse Championship and last: Átame! +[2018-02-13T00:34:28.670] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:34:28.693] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:34:28.702] [INFO] cheese - inserting 1000 documents. first: San Felices, Spain and last: Urueña +[2018-02-13T00:34:28.725] [INFO] cheese - inserting 1000 documents. first: Gloeostereum and last: Wikipedia:WikiProject Spam/LinkReports/vrnjacka-banja.com +[2018-02-13T00:34:28.735] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:34:28.747] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T00:34:28.785] [INFO] cheese - inserting 1000 documents. first: Legbrace fascination and last: Tjänstemannacentralorganisationen +[2018-02-13T00:34:28.803] [INFO] cheese - inserting 1000 documents. first: Zamorin - Palakkad War and last: Dromotectum +[2018-02-13T00:34:28.834] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:34:28.836] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:34:29.040] [INFO] cheese - inserting 1000 documents. first: Jarod Miller and last: Melchior Borchgrevinck +[2018-02-13T00:34:29.051] [INFO] cheese - inserting 1000 documents. first: Carl Heinrich Hagen and last: Wikipedia:Sockpuppet investigations/Mattsabe/Archive +[2018-02-13T00:34:29.074] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:34:29.084] [INFO] cheese - inserting 1000 documents. first: Urueña, Valladolid and last: Gafsa, Tunisia +[2018-02-13T00:34:29.096] [INFO] cheese - inserting 1000 documents. first: Podillia Upland and last: NIAW +[2018-02-13T00:34:29.103] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:34:29.137] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:34:29.157] [INFO] cheese - inserting 1000 documents. first: Akaka Falls State Park and last: Elections in Latvia +[2018-02-13T00:34:29.166] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:34:29.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Battle of Ghadames and last: Portal:Women's sport/Birthdays/June 23 +[2018-02-13T00:34:29.240] [INFO] cheese - inserting 1000 documents. first: Abani Bari Achho and last: St Mary's Church, Battersea +[2018-02-13T00:34:29.247] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:34:29.296] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:34:29.308] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:34:29.434] [INFO] cheese - inserting 1000 documents. first: 1993 IMSA GT Championship season and last: Lichenaula musica +[2018-02-13T00:34:29.470] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:34:29.562] [INFO] cheese - inserting 1000 documents. first: Hans Brachrogge and last: HealthRight International +[2018-02-13T00:34:29.686] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:34:29.760] [INFO] cheese - inserting 1000 documents. first: 2016 Philippine elections debates and last: Issac Crewdson +[2018-02-13T00:34:29.786] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:34:29.842] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Franklin County, Washington and last: Doe Boyland +[2018-02-13T00:34:29.845] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Rudolf Ising and last: Woman of Distinction Awards +[2018-02-13T00:34:29.858] [INFO] cheese - inserting 1000 documents. first: Assam New Year Day and last: Template:Infobox Law and Order character +[2018-02-13T00:34:29.907] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:34:29.909] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:34:29.915] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:34:29.987] [INFO] cheese - inserting 1000 documents. first: Turner Classic Movies and last: Olympic Tennis Centre (Athens) +[2018-02-13T00:34:30.012] [INFO] cheese - inserting 1000 documents. first: Issac Delahaye and last: List of Belgian women artists +[2018-02-13T00:34:30.021] [INFO] cheese - inserting 1000 documents. first: Sven Dufva and last: FC Admira Wacker Mödling Amateure +[2018-02-13T00:34:30.037] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:34:30.039] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:34:30.061] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:34:30.297] [INFO] cheese - inserting 1000 documents. first: Women of Distinction and last: Tokitsuyama +[2018-02-13T00:34:30.309] [INFO] cheese - inserting 1000 documents. first: Francis H. Case and last: Invasion Of The Body Squeezers: Part Two +[2018-02-13T00:34:30.312] [INFO] cheese - inserting 1000 documents. first: Rumah Nyumbang and last: WN812 +[2018-02-13T00:34:30.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/National Museum of Natural History (France) and last: Llibre de les dones +[2018-02-13T00:34:30.348] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:34:30.349] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:34:30.377] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:34:30.386] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:34:30.394] [INFO] cheese - inserting 1000 documents. first: Brannan Springs, California and last: Aymaq +[2018-02-13T00:34:30.420] [INFO] cheese - inserting 1000 documents. first: George VI of Imereti and last: File:Truechurchmen2.jpg +[2018-02-13T00:34:30.438] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:34:30.586] [INFO] cheese - batch complete in: 1.449 secs +[2018-02-13T00:34:30.758] [INFO] cheese - inserting 1000 documents. first: Nikos Kaklamanakis and last: Wikipedia:Articles for deletion/Bingle +[2018-02-13T00:34:30.777] [INFO] cheese - inserting 1000 documents. first: Aymak and last: Let's Face the Music! +[2018-02-13T00:34:30.800] [INFO] cheese - inserting 1000 documents. first: Tokitsuyama Jinichi and last: Robert Dobkin +[2018-02-13T00:34:30.818] [INFO] cheese - inserting 1000 documents. first: Joeun Food and last: Statira +[2018-02-13T00:34:30.828] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:34:30.836] [INFO] cheese - inserting 1000 documents. first: Oscar Rolando Hernández and last: Wikipedia:WikiProject Spam/LinkReports/wholesaleeshop.com.au +[2018-02-13T00:34:30.836] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:34:30.896] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:34:30.930] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:34:31.021] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Women in Red/5/invitation and last: Lin Shin-yi +[2018-02-13T00:34:31.028] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:34:31.204] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:34:31.259] [INFO] cheese - inserting 1000 documents. first: Purbeck District Council election, 2004 and last: Mont-Joli, QC +[2018-02-13T00:34:31.299] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:34:31.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sportetcitoyennete.com and last: U.S. Post Office-Springville Main +[2018-02-13T00:34:31.434] [INFO] cheese - inserting 1000 documents. first: Edward Burton (footballer) and last: Blades of Vengeance +[2018-02-13T00:34:31.460] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:34:31.501] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:34:31.530] [INFO] cheese - inserting 1000 documents. first: Category:1946 in Moyen-Congo and last: Wikipedia:Online Ambassadors/Apply/sudheendrac +[2018-02-13T00:34:31.572] [INFO] cheese - inserting 1000 documents. first: Flakstadelva and last: Bolsa de Valores de Nicaragua +[2018-02-13T00:34:31.593] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:34:31.640] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:34:31.702] [INFO] cheese - inserting 1000 documents. first: Rocky and bullwinkle and last: Seattle seawall +[2018-02-13T00:34:31.759] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T00:34:31.763] [INFO] cheese - inserting 1000 documents. first: Tamaulipan mezquital and last: Gausbert de Poicibot +[2018-02-13T00:34:31.819] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:34:31.825] [INFO] cheese - inserting 1000 documents. first: U.S. Post Office-Visalia Town Center Station and last: Chandgana coal mine +[2018-02-13T00:34:31.850] [INFO] cheese - inserting 1000 documents. first: Wu Rong-yi and last: Gudur–Renigunta section +[2018-02-13T00:34:31.874] [INFO] cheese - inserting 1000 documents. first: Mridula Koshy and last: Wikipedia:WikiProject Spam/LinkReports/renandstimpyepisodes.com +[2018-02-13T00:34:31.878] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:34:31.908] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:34:31.922] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:34:31.952] [INFO] cheese - inserting 1000 documents. first: Radwimps 4 ~Okazu no Gohan~ and last: Year of the Dragon (play) +[2018-02-13T00:34:31.989] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:34:32.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Keith Middleton and last: File:Tgot1.jpg +[2018-02-13T00:34:32.135] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:34:32.292] [INFO] cheese - inserting 1000 documents. first: File:Gmis.hdr.logo.png and last: Кхъу +[2018-02-13T00:34:32.305] [INFO] cheese - inserting 1000 documents. first: Masked (The Secret Circle) and last: Wikipedia:User Advocacy/post it +[2018-02-13T00:34:32.335] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:34:32.345] [INFO] cheese - inserting 1000 documents. first: Siai-Marchetti Warrior and last: Wikipedia:Articles for deletion/Maitrayaniya Upanishad +[2018-02-13T00:34:32.359] [INFO] cheese - inserting 1000 documents. first: Kokila (film) and last: Category:Railway stations in Nijmegen +[2018-02-13T00:34:32.362] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:34:32.397] [INFO] cheese - inserting 1000 documents. first: Year of the Dragon (1975 film) and last: Stanley Russell +[2018-02-13T00:34:32.405] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:34:32.431] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:34:32.462] [INFO] cheese - inserting 1000 documents. first: Gausbert de Puicibot and last: Criminal by passion +[2018-02-13T00:34:32.474] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:34:32.572] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:34:32.649] [INFO] cheese - inserting 1000 documents. first: County Councillor and last: Brian Skrudland +[2018-02-13T00:34:32.699] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:34:32.812] [INFO] cheese - inserting 1000 documents. first: Life and Stuff and last: Metrodiol +[2018-02-13T00:34:32.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/7 Seconds: A Typical Teenager, Atypical Life and last: Right colic arteries +[2018-02-13T00:34:32.816] [INFO] cheese - inserting 1000 documents. first: Giant Warty Squid and last: Star 104.5 +[2018-02-13T00:34:32.858] [INFO] cheese - inserting 1000 documents. first: Habeck and last: Juan Sanchez (artist) +[2018-02-13T00:34:32.867] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:34:32.877] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:34:32.891] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:34:32.945] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:34:33.022] [INFO] cheese - inserting 1000 documents. first: Category:Critics and last: Teletext Limited +[2018-02-13T00:34:33.027] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Owen Kratz and last: Wikipedia:Articles for deletion/TBA (Christina Stürmer) +[2018-02-13T00:34:33.065] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:33.080] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:34:33.081] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/wholesale07.com and last: Zudan +[2018-02-13T00:34:33.108] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:34:33.203] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Asian Games articles and last: Hornsea Bridge +[2018-02-13T00:34:33.234] [INFO] cheese - inserting 1000 documents. first: Palais des Sports de Beaublanc and last: Macular sparing +[2018-02-13T00:34:33.234] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:34:33.248] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Isaias Lora and last: Scholesy +[2018-02-13T00:34:33.315] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:34:33.332] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:34:33.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CHILDRENSLIT and last: Category:Non-English-language newspapers published in Pennsylvania +[2018-02-13T00:34:33.456] [INFO] cheese - inserting 1000 documents. first: Antapentan and last: Brooks Free Library +[2018-02-13T00:34:33.474] [INFO] cheese - inserting 1000 documents. first: List of University of Tennessee notable people and last: Roman Catholic Diocese of Popokabaka +[2018-02-13T00:34:33.514] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:34:33.529] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:34:33.552] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:34:33.827] [INFO] cheese - inserting 1000 documents. first: Tarantella, Incorporated and last: Wicked Witch of the East +[2018-02-13T00:34:33.930] [INFO] cheese - inserting 1000 documents. first: Nanobiotix and last: Viopsicol +[2018-02-13T00:34:33.930] [INFO] cheese - inserting 1000 documents. first: Berresse and last: Hello Kitty (Girls) +[2018-02-13T00:34:33.940] [INFO] cheese - inserting 1000 documents. first: The Krewe Of BOO and last: Asteromassaria +[2018-02-13T00:34:33.963] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:34:33.966] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:34:33.972] [INFO] cheese - inserting 1000 documents. first: One Romantic Night and last: St Cuthberts Way +[2018-02-13T00:34:33.981] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:34:34.038] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:34:34.071] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:34:34.133] [INFO] cheese - inserting 1000 documents. first: Cafe de Colombia (cycling team) and last: Kellom Elementary School +[2018-02-13T00:34:34.196] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:34:34.249] [INFO] cheese - inserting 1000 documents. first: Azucaps and last: Dowflake +[2018-02-13T00:34:34.278] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:34:34.310] [INFO] cheese - inserting 1000 documents. first: Jakub Vojta (ice hockey) and last: Ravalle Quinn +[2018-02-13T00:34:34.367] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T00:34:34.419] [INFO] cheese - inserting 1000 documents. first: Homeward Bound (Girls) and last: Kendall and Kylie +[2018-02-13T00:34:34.466] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:34:34.555] [INFO] cheese - inserting 1000 documents. first: Category:Tasmanian languages and last: St joseph's high school patna +[2018-02-13T00:34:34.557] [INFO] cheese - inserting 1000 documents. first: Supermarkets in Poland and last: April 2099 lunar eclipse +[2018-02-13T00:34:34.592] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:34:34.616] [INFO] cheese - inserting 1000 documents. first: Conductive yarn and last: Highway 8 (Saskatchewan) +[2018-02-13T00:34:34.632] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:34:34.657] [INFO] cheese - inserting 1000 documents. first: List of The Simpsons episodes (Season 11) and last: Orquesta Nacional de Espana +[2018-02-13T00:34:34.710] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:34:34.755] [INFO] cheese - inserting 1000 documents. first: B.H. Roberts and last: Category:1936 in sports +[2018-02-13T00:34:34.770] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:34:34.851] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T00:34:34.882] [INFO] cheese - inserting 1000 documents. first: María Concepción de la Natividad y el Perpetuo Socorro de María and last: David Zwingerman +[2018-02-13T00:34:34.889] [INFO] cheese - inserting 1000 documents. first: Gewacalm and last: Zantryl +[2018-02-13T00:34:34.925] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:34:34.932] [INFO] cheese - inserting 1000 documents. first: St Clair, South Australia and last: Template:Did you know nominations/Yves Gaucher (artist) +[2018-02-13T00:34:34.949] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:34:35.008] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:34:35.087] [INFO] cheese - inserting 1000 documents. first: Staging (data) and last: Tam media research +[2018-02-13T00:34:35.135] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:34:35.140] [INFO] cheese - inserting 1000 documents. first: Counterstrike (drum & bass group) and last: Kaon Ultra +[2018-02-13T00:34:35.157] [INFO] cheese - inserting 1000 documents. first: Highway 49 (Saskatchewan) and last: Munderic of Arisitum +[2018-02-13T00:34:35.173] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:34:35.213] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:34:35.226] [INFO] cheese - inserting 1000 documents. first: Orquesta nacional de espana and last: Anzoátegui (disambiguation) +[2018-02-13T00:34:35.276] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:34:35.333] [INFO] cheese - inserting 1000 documents. first: Divers Alert Network Asia-Pacific and last: Silvio Garattini +[2018-02-13T00:34:35.377] [INFO] cheese - inserting 1000 documents. first: Kaon-Cl and last: Neutraphyllin +[2018-02-13T00:34:35.380] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:34:35.427] [INFO] cheese - batch complete in: 0.254 secs +[2018-02-13T00:34:35.440] [INFO] cheese - inserting 1000 documents. first: Third Reich and Roll and last: Timeline of liberal and democratic parties in New Zealand +[2018-02-13T00:34:35.491] [INFO] cheese - inserting 1000 documents. first: Family temple and last: Riwandi Wahit +[2018-02-13T00:34:35.499] [INFO] cheese - inserting 1000 documents. first: List of songs by A Day to Remember and last: Template:POTD protected/2013-07-10 +[2018-02-13T00:34:35.498] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:34:35.557] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:34:35.559] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:34:35.613] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Bannock County, Idaho and last: Eferon +[2018-02-13T00:34:35.653] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:34:35.691] [INFO] cheese - inserting 1000 documents. first: Walter Augustus Drake and last: DuPont Fabros Technology +[2018-02-13T00:34:35.698] [INFO] cheese - inserting 1000 documents. first: François René and last: Nieuwland +[2018-02-13T00:34:35.718] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:34:35.728] [INFO] cheese - inserting 1000 documents. first: Gabriela E. Medina and last: Caborn-Welborn +[2018-02-13T00:34:35.754] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:34:35.793] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:34:35.839] [INFO] cheese - inserting 1000 documents. first: Epheron and last: Baeyer-Villiger +[2018-02-13T00:34:35.840] [INFO] cheese - inserting 1000 documents. first: Category:DOS games and last: Category:757 +[2018-02-13T00:34:35.856] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:34:35.874] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:34:35.912] [INFO] cheese - inserting 1000 documents. first: Aeromonas salmonicida and last: Callahan Museum of the American Printing House for the Blind +[2018-02-13T00:34:35.963] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:34:35.995] [INFO] cheese - inserting 1000 documents. first: File:Women's Media Centre of Cambodia.png and last: Prophylux +[2018-02-13T00:34:36.012] [INFO] cheese - batch complete in: 0.156 secs +[2018-02-13T00:34:36.054] [INFO] cheese - inserting 1000 documents. first: Bulanda and last: File:Meenda Sorgam poster.jpg +[2018-02-13T00:34:36.089] [INFO] cheese - inserting 1000 documents. first: Template:Footer Olympic Champions 3000 m Steeplechase Men and last: Category:1614 +[2018-02-13T00:34:36.112] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:34:36.134] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:34:36.136] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 728 and last: Novas (surname) +[2018-02-13T00:34:36.183] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:34:36.205] [INFO] cheese - inserting 1000 documents. first: Royal carribean and last: Omukama +[2018-02-13T00:34:36.249] [INFO] cheese - inserting 1000 documents. first: Propranur and last: Fascol +[2018-02-13T00:34:36.265] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:34:36.274] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:34:36.319] [INFO] cheese - inserting 1000 documents. first: Florent Rouamba and last: Monadnock Railroad +[2018-02-13T00:34:36.346] [INFO] cheese - inserting 1000 documents. first: The Pest (1922 film) and last: Shield (comics) +[2018-02-13T00:34:36.355] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:34:36.374] [INFO] cheese - inserting 1000 documents. first: Draft:Gianni Berengo Gardin and last: Boone, William +[2018-02-13T00:34:36.396] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:34:36.398] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:34:36.454] [INFO] cheese - inserting 1000 documents. first: Theretra boisduvali and last: Kessar +[2018-02-13T00:34:36.478] [INFO] cheese - batch complete in: 0.204 secs +[2018-02-13T00:34:36.550] [INFO] cheese - inserting 1000 documents. first: Template:2011–2012 News Corporation scandal and last: Lirab, Basht +[2018-02-13T00:34:36.589] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:34:36.634] [INFO] cheese - inserting 1000 documents. first: Min Tid Skal Komme and last: Wikipedia:Requests for mediation/Merging of self-consciousness and self-awareness +[2018-02-13T00:34:36.649] [INFO] cheese - inserting 1000 documents. first: Category:1615 and last: Wikipedia:Votes for deletion/Ba'thist regime +[2018-02-13T00:34:36.668] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:34:36.682] [INFO] cheese - inserting 1000 documents. first: Noltam and last: Pantrop +[2018-02-13T00:34:36.686] [INFO] cheese - inserting 1000 documents. first: Boothby, William and last: Category:1981 in Northern Cyprus +[2018-02-13T00:34:36.692] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:34:36.708] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T00:34:36.727] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:34:36.745] [INFO] cheese - inserting 1000 documents. first: Hathaways Mountain Pines and last: File:Mason Jennings How Deep Is That River EP Cover.jpg +[2018-02-13T00:34:36.795] [INFO] cheese - inserting 1000 documents. first: Yemeni Arabic dialects and last: PG-58 +[2018-02-13T00:34:36.803] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:34:36.847] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:34:36.861] [INFO] cheese - inserting 1000 documents. first: File:Peter Francis.png and last: Baba Kelu +[2018-02-13T00:34:36.903] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:34:36.941] [INFO] cheese - inserting 1000 documents. first: Roger Mortimer, Baron of Chirk and last: Communities in the Minneapolis / St. Paul Metro area +[2018-02-13T00:34:36.960] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:34:37.072] [INFO] cheese - inserting 1000 documents. first: File:Percussion.png and last: 2006 Champ Car season +[2018-02-13T00:34:37.073] [INFO] cheese - inserting 1000 documents. first: Category:1989 in Northern Cyprus and last: Pacífico (Madrid) +[2018-02-13T00:34:37.115] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:34:37.207] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:34:37.242] [INFO] cheese - inserting 1000 documents. first: Puberty (Munch painting) and last: Bulletin of Engineering Geology and the Environment +[2018-02-13T00:34:37.248] [INFO] cheese - inserting 1000 documents. first: Aso Station and last: Grand'Mère, Quebec +[2018-02-13T00:34:37.334] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:34:37.349] [INFO] cheese - inserting 1000 documents. first: University Avenue (Minneapolis-St. Paul) and last: Denyl +[2018-02-13T00:34:37.379] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:34:37.405] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:34:37.432] [INFO] cheese - inserting 1000 documents. first: Baba-ye Kalan and last: Akaruye +[2018-02-13T00:34:37.487] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:34:37.577] [INFO] cheese - inserting 1000 documents. first: Zagreb University and last: Boston Harbor Islands National Recreation Area +[2018-02-13T00:34:37.615] [INFO] cheese - inserting 1000 documents. first: Di-Hydan and last: Phenaphen Caplets +[2018-02-13T00:34:37.694] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:34:37.696] [INFO] cheese - inserting 1000 documents. first: Les Pepees Font la Loi and last: Ask Italian +[2018-02-13T00:34:37.702] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T00:34:37.792] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:34:37.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/impressnow.com and last: Cesatiella +[2018-02-13T00:34:37.847] [INFO] cheese - inserting 1000 documents. first: Meningeal coverings and last: Curved Bar +[2018-02-13T00:34:37.885] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:34:37.912] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:34:37.914] [INFO] cheese - inserting 1000 documents. first: Phendon and last: University of Trás-os-Montes & Alto Douro +[2018-02-13T00:34:37.936] [INFO] cheese - batch complete in: 0.242 secs +[2018-02-13T00:34:38.016] [INFO] cheese - inserting 1000 documents. first: C. C. Capwell and last: Hakone-juku +[2018-02-13T00:34:38.074] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:34:38.106] [INFO] cheese - inserting 1000 documents. first: Akasheh and last: File:Saw II poster.jpg +[2018-02-13T00:34:38.108] [INFO] cheese - inserting 1000 documents. first: Category:Songs with lyrics by Dario Fo and last: Rhysling (crater) +[2018-02-13T00:34:38.116] [INFO] cheese - inserting 1000 documents. first: Template:NRHP in Muskingum County, Ohio and last: Microsul +[2018-02-13T00:34:38.140] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:34:38.157] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:34:38.165] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:34:38.247] [INFO] cheese - inserting 1000 documents. first: Charonectria and last: Category:Esbjerg +[2018-02-13T00:34:38.288] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:34:38.308] [INFO] cheese - inserting 1000 documents. first: William Wentworth Fitzwilliam and last: Irakli (Prince) +[2018-02-13T00:34:38.330] [INFO] cheese - inserting 1000 documents. first: Renasul and last: Fenetazina +[2018-02-13T00:34:38.346] [INFO] cheese - batch complete in: 0.206 secs +[2018-02-13T00:34:38.351] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:34:38.454] [INFO] cheese - inserting 1000 documents. first: Charles A. Alluaud and last: Paul J. Smith +[2018-02-13T00:34:38.455] [INFO] cheese - inserting 1000 documents. first: Wautoma and last: 57-cell +[2018-02-13T00:34:38.464] [INFO] cheese - inserting 1000 documents. first: C. M. Anglo Bengali Inter College and last: 2015–16 USC Upstate Spartans women's basketball team +[2018-02-13T00:34:38.492] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:34:38.497] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:34:38.512] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:34:38.575] [INFO] cheese - inserting 1000 documents. first: DGIST and last: Cecilie Breil Kramer +[2018-02-13T00:34:38.610] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:34:38.645] [INFO] cheese - inserting 1000 documents. first: Onda Cero and last: Walking seal +[2018-02-13T00:34:38.658] [INFO] cheese - inserting 1000 documents. first: Genphen and last: Borja Ekiza +[2018-02-13T00:34:38.689] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:34:38.697] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:34:38.752] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wenborn and last: Laila Mehdin +[2018-02-13T00:34:38.756] [INFO] cheese - inserting 1000 documents. first: Hinckley and Bosworth Council election 1995 and last: Bertrand, Louis, Saint +[2018-02-13T00:34:38.781] [INFO] cheese - inserting 1000 documents. first: Mehdia (disambiguation) and last: Alternate IPA symbol +[2018-02-13T00:34:38.788] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:34:38.816] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:34:38.821] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:34:39.045] [INFO] cheese - inserting 1000 documents. first: Frederick Craven and last: Babuijore Dharani Dhar High School (H.S) +[2018-02-13T00:34:39.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kohl's Plaza (Colonie, New York) and last: Balfour Williamson & Co. +[2018-02-13T00:34:39.130] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:34:39.180] [INFO] cheese - inserting 1000 documents. first: Projective special linear group and last: Bessacarr +[2018-02-13T00:34:39.200] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:34:39.229] [INFO] cheese - inserting 1000 documents. first: Too Close For Comfort (1956 song) and last: Sol de otoño +[2018-02-13T00:34:39.269] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:34:39.311] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:34:39.357] [INFO] cheese - inserting 1000 documents. first: Anomia simplex and last: Bayview-Montalvin Manor, California +[2018-02-13T00:34:39.409] [INFO] cheese - inserting 1000 documents. first: Robert L. Wilson and last: ONSLG +[2018-02-13T00:34:39.411] [INFO] cheese - inserting 1000 documents. first: Obsolete IPA symbol and last: Denis Howe (footballer) +[2018-02-13T00:34:39.433] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:34:39.468] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:34:39.494] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:34:39.560] [INFO] cheese - inserting 1000 documents. first: Epicranius muscle and last: Alejandro Aravena +[2018-02-13T00:34:39.609] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:34:39.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/AFC articles by quality/8 and last: Circumstances (rhetoric) +[2018-02-13T00:34:39.737] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:34:39.831] [INFO] cheese - inserting 1000 documents. first: Carriage Crossing and last: Taecanet +[2018-02-13T00:34:39.885] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:34:39.940] [INFO] cheese - inserting 1000 documents. first: Category:Works by Oliver Goldsmith and last: 1995–96 FIS Cross-Country World Cup +[2018-02-13T00:34:39.945] [INFO] cheese - inserting 1000 documents. first: Gerd Arntz and last: Christian Menn +[2018-02-13T00:34:39.949] [INFO] cheese - inserting 1000 documents. first: Shamballah and last: CIGI +[2018-02-13T00:34:39.961] [INFO] cheese - inserting 1000 documents. first: Angelina (singer) and last: Cheshmeh-ye Sib Deli Gerdu +[2018-02-13T00:34:39.992] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:34:39.993] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:34:40.013] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:34:40.057] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:34:40.084] [INFO] cheese - inserting 1000 documents. first: Category:Mining museums in the Czech Republic and last: Winona Rider +[2018-02-13T00:34:40.112] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:34:40.148] [INFO] cheese - inserting 1000 documents. first: 1985 TAAC Men's Basketball Tournament and last: Jon Rollason +[2018-02-13T00:34:40.201] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:34:40.268] [INFO] cheese - inserting 1000 documents. first: File:WintersKnight.jpg and last: Scheuder +[2018-02-13T00:34:40.302] [INFO] cheese - inserting 1000 documents. first: H. C. Enoses and last: Best Country Solo Performance +[2018-02-13T00:34:40.316] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:34:40.336] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:34:40.399] [INFO] cheese - inserting 1000 documents. first: List of United States presidential pets and last: Peyton House (Raymond, Mississippi) +[2018-02-13T00:34:40.411] [INFO] cheese - inserting 1000 documents. first: Cassie Mitchell and last: Template:R U +[2018-02-13T00:34:40.444] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:34:40.465] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:34:40.514] [INFO] cheese - inserting 1000 documents. first: Yuri Feodorovich Lisyansky and last: File:InvisibleLantern.jpg +[2018-02-13T00:34:40.568] [INFO] cheese - inserting 1000 documents. first: File:Colonel Bogey.ogg and last: C. Allen Foster +[2018-02-13T00:34:40.588] [INFO] cheese - inserting 1000 documents. first: Horslips and last: Vibrating structure gyroscope +[2018-02-13T00:34:40.585] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:34:40.620] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:34:40.665] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:34:40.723] [INFO] cheese - inserting 1000 documents. first: HMS Pylades (J401) and last: Frédéric Page +[2018-02-13T00:34:40.740] [INFO] cheese - inserting 1000 documents. first: Autogiro AC-35 and last: King Alfred School (disambiguation) +[2018-02-13T00:34:40.771] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:34:40.778] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:34:40.855] [INFO] cheese - inserting 1000 documents. first: White Point (Victoria), Nova Scotia and last: Portal:Fascism/DYK/4 +[2018-02-13T00:34:40.907] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:34:40.916] [INFO] cheese - inserting 1000 documents. first: Template:Redirect U and last: Daisuke Suzuki (actor) +[2018-02-13T00:34:40.958] [INFO] cheese - inserting 1000 documents. first: Abdulahad Malek and last: Shawn Chapman +[2018-02-13T00:34:41.003] [INFO] cheese - inserting 1000 documents. first: Cir process and last: Stolenwealth +[2018-02-13T00:34:41.029] [INFO] cheese - inserting 1000 documents. first: Kinzigtalbahn (disambiguation) and last: Santa Maria degli Scalzi (disambiguation) +[2018-02-13T00:34:41.033] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:34:41.043] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:34:41.050] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:34:41.108] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:34:41.193] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Macau articles and last: Chanakia, Greece +[2018-02-13T00:34:41.246] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:34:41.256] [INFO] cheese - inserting 1000 documents. first: List of Olympic medalists in swimming (men) and last: Irregular Galaxy M82 +[2018-02-13T00:34:41.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michel Marot and last: Wikipedia:Version 1.0 Editorial Team/Australia articles by quality/193 +[2018-02-13T00:34:41.295] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:34:41.324] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:34:41.338] [INFO] cheese - inserting 1000 documents. first: Kacchi Plain and last: Template:New Zealand Conservative Party/meta/color +[2018-02-13T00:34:41.380] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:34:41.388] [INFO] cheese - inserting 1000 documents. first: The Garden of Health and last: Dashwood, Robert +[2018-02-13T00:34:41.426] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:34:41.468] [INFO] cheese - inserting 1000 documents. first: Trans-Europe Express and last: Howard Groskloss +[2018-02-13T00:34:41.499] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Falling In Reverse (band) (2nd nomination) and last: Wikipedia:WikiProject Spam/LinkReports/thegolddiggerssupersite.com +[2018-02-13T00:34:41.513] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:34:41.547] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:34:41.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australia articles by quality/194 and last: Zorro-II +[2018-02-13T00:34:41.709] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:34:41.717] [INFO] cheese - inserting 1000 documents. first: 1963 Tulsa Golden Hurricane football team and last: My Ways +[2018-02-13T00:34:41.748] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:34:41.789] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Micko Larkin and last: Category:Arachnologists by nationality +[2018-02-13T00:34:41.832] [INFO] cheese - inserting 1000 documents. first: List of Williams College Bicentennial Winners and last: Julian Robert Hunte +[2018-02-13T00:34:41.839] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:34:41.844] [INFO] cheese - inserting 1000 documents. first: Template:Most traded currencies and last: Kathleen M. Carley +[2018-02-13T00:34:41.886] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:34:41.889] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:34:41.903] [INFO] cheese - inserting 1000 documents. first: Messier Object 82 and last: Lord's Day Act +[2018-02-13T00:34:41.942] [INFO] cheese - inserting 1000 documents. first: Category:Cemeteries and tombs in Rome and last: List of United States Supreme Court cases, volume 42 +[2018-02-13T00:34:41.952] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:34:41.987] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:34:42.033] [INFO] cheese - inserting 1000 documents. first: Polygamy in Niue and last: Hypoecta +[2018-02-13T00:34:42.086] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:34:42.125] [INFO] cheese - inserting 1000 documents. first: She (Zayn song) and last: Gino Birindelli +[2018-02-13T00:34:42.196] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:34:42.279] [INFO] cheese - inserting 1000 documents. first: Jessica Biel filmography and last: Helmholtz Institute Jena +[2018-02-13T00:34:42.331] [INFO] cheese - inserting 1000 documents. first: Foreign object (professional wrestling) and last: 3-q +[2018-02-13T00:34:42.341] [INFO] cheese - inserting 1000 documents. first: Richard Field (publisher) and last: Wikipedia:WikiProject Spam/LinkReports/maisoncheerup.pbwiki.com +[2018-02-13T00:34:42.349] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:34:42.424] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:34:42.427] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:34:42.438] [INFO] cheese - inserting 1000 documents. first: Idanophana and last: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/330 +[2018-02-13T00:34:42.486] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:34:42.563] [INFO] cheese - inserting 1000 documents. first: Kahramankazan and last: Amusement Parks USA +[2018-02-13T00:34:42.641] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:34:42.698] [INFO] cheese - inserting 1000 documents. first: Wrinkle ridge and last: Pauline Parker +[2018-02-13T00:34:42.781] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:34:42.848] [INFO] cheese - inserting 1000 documents. first: List of Space Brothers characters and last: St. Petersburg Academic Symphony Orchestra +[2018-02-13T00:34:42.869] [INFO] cheese - inserting 1000 documents. first: Thanatopsis (disambiguation) and last: Eurico +[2018-02-13T00:34:42.882] [INFO] cheese - inserting 1000 documents. first: Kiwa NV and last: Stensen ducts +[2018-02-13T00:34:42.902] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:34:42.908] [INFO] cheese - inserting 1000 documents. first: 2008 U.S. Open and last: Storyteller Café +[2018-02-13T00:34:42.933] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:34:42.938] [INFO] cheese - inserting 1000 documents. first: Empyelocera camillae and last: Category:Defunct ski areas and resorts in California +[2018-02-13T00:34:42.967] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:34:42.955] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:34:42.983] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:34:43.185] [INFO] cheese - inserting 1000 documents. first: File:Baby-Love-large.jpg and last: Millimetre wave +[2018-02-13T00:34:43.260] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:34:43.358] [INFO] cheese - inserting 1000 documents. first: Category:Kazakhstan national football team managers and last: Smith v Croft (No 2) +[2018-02-13T00:34:43.368] [INFO] cheese - inserting 1000 documents. first: Tayma Loren and last: Marguerite Carré +[2018-02-13T00:34:43.375] [INFO] cheese - inserting 1000 documents. first: List of National Titles and last: Hroðulf +[2018-02-13T00:34:43.387] [INFO] cheese - inserting 1000 documents. first: Merna Summers and last: 2009 H1N1 influenza +[2018-02-13T00:34:43.400] [INFO] cheese - inserting 1000 documents. first: Zhang Boxing and last: Wikipedia:Meetup/DC/Virtual +[2018-02-13T00:34:43.401] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:34:43.415] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:34:43.447] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:34:43.462] [INFO] cheese - inserting 1000 documents. first: Warcry (singer) and last: Simple magic square +[2018-02-13T00:34:43.471] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:34:43.486] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:34:43.530] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:34:43.682] [INFO] cheese - inserting 1000 documents. first: Sandon tornado and last: Iron(II) sulphate +[2018-02-13T00:34:43.742] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:34:43.796] [INFO] cheese - inserting 1000 documents. first: Patrick Wilson filmography and last: File:Battleship Sevastopol.jpg +[2018-02-13T00:34:43.821] [INFO] cheese - inserting 1000 documents. first: Cordia Tsoi Pop-Yee and last: Gulfstream U-4 +[2018-02-13T00:34:43.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:RFUD and last: Lewis Ballham +[2018-02-13T00:34:43.844] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:34:43.855] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:34:43.866] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:34:43.869] [INFO] cheese - inserting 1000 documents. first: Oebles-Schlechtewitz and last: Sharan Merriam +[2018-02-13T00:34:43.898] [INFO] cheese - inserting 1000 documents. first: Category:Discoveries by Yuri A. Belyaev and last: Subcutaneous tissue of the penis +[2018-02-13T00:34:43.912] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:34:44.030] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:34:44.205] [INFO] cheese - inserting 1000 documents. first: File:Star Fox Adventures GCN Screenshot.jpg and last: Lake Isabella +[2018-02-13T00:34:44.289] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:34:44.342] [INFO] cheese - inserting 1000 documents. first: Konkordiahutte and last: W. A. Sutton +[2018-02-13T00:34:44.351] [INFO] cheese - inserting 1000 documents. first: Joseph Lewis Ballham and last: Associated, California +[2018-02-13T00:34:44.386] [INFO] cheese - inserting 1000 documents. first: Subcutaneous tissues of the penis and last: Three Steps Over Heaven +[2018-02-13T00:34:44.398] [INFO] cheese - inserting 1000 documents. first: Jeong-A Industry Co., Ltd and last: Heroes' Day +[2018-02-13T00:34:44.403] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:34:44.409] [INFO] cheese - inserting 1000 documents. first: John A. Gosling and last: Suburban Noize records +[2018-02-13T00:34:44.410] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:34:44.462] [INFO] cheese - inserting 1000 documents. first: Category:Toshiba EMI games and last: 2012 CAF Men's Pre-Olympic Tournament Second Round +[2018-02-13T00:34:44.456] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:34:44.490] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:34:44.528] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:34:44.559] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:34:44.826] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Italian television and last: TYROLIT Schleifmittelwerke Swarovski KG +[2018-02-13T00:34:44.889] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:34:44.907] [INFO] cheese - inserting 1000 documents. first: Suburban noize records and last: Situation theory +[2018-02-13T00:34:44.942] [INFO] cheese - inserting 1000 documents. first: Jnana Prabodhini and last: Andy Kennedy (football player) +[2018-02-13T00:34:44.966] [INFO] cheese - inserting 1000 documents. first: Deep and Dark and Dangerous and last: Chokhatauri district +[2018-02-13T00:34:44.982] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:44.998] [INFO] cheese - inserting 1000 documents. first: Tre metri sopra il cielo and last: Superior horns of the thyroid cartilage +[2018-02-13T00:34:44.998] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:34:45.011] [INFO] cheese - inserting 1000 documents. first: Ebauche and last: Ong Bak +[2018-02-13T00:34:45.028] [INFO] cheese - inserting 1000 documents. first: Rodney Terry and last: Paul Curtman +[2018-02-13T00:34:45.031] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:34:45.054] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:34:45.073] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:34:45.083] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:34:45.289] [INFO] cheese - inserting 1000 documents. first: Portal:Brittany/Selected picture/3 and last: List of fatal accidents to commercial cargo aircraft +[2018-02-13T00:34:45.348] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:34:45.359] [INFO] cheese - inserting 1000 documents. first: Dedoplis Tsqaro district and last: Joseph Takahashi +[2018-02-13T00:34:45.387] [INFO] cheese - inserting 1000 documents. first: South Central China and last: Category:Blackjack players +[2018-02-13T00:34:45.399] [INFO] cheese - inserting 1000 documents. first: Countries occupied by Soviet Union and last: Clara Bracy +[2018-02-13T00:34:45.403] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:34:45.416] [INFO] cheese - inserting 1000 documents. first: Chris Mensalvas and last: Jama Masjid, Erandol +[2018-02-13T00:34:45.455] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:34:45.459] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:34:45.465] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:34:45.477] [INFO] cheese - inserting 1000 documents. first: Stan Morgan and last: Ekbom Disease +[2018-02-13T00:34:45.527] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:34:45.708] [INFO] cheese - inserting 1000 documents. first: Hatiya, Bangladesh and last: Chocho del Páramo +[2018-02-13T00:34:45.713] [INFO] cheese - inserting 1000 documents. first: Barbell Nebula and last: Rice car +[2018-02-13T00:34:45.738] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:34:45.755] [INFO] cheese - inserting 1000 documents. first: Rip Colt and last: Template:MarsGeo-Deimos +[2018-02-13T00:34:45.766] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:34:45.776] [INFO] cheese - inserting 1000 documents. first: Lucien (band) and last: Hwang Suk-young +[2018-02-13T00:34:45.791] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:34:45.829] [INFO] cheese - inserting 1000 documents. first: Willie Ogg and last: Category:Medical and health organisations based in Sudan +[2018-02-13T00:34:45.872] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:34:45.914] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:34:45.955] [INFO] cheese - inserting 1000 documents. first: Delphine lalaurie and last: HLA-A28 +[2018-02-13T00:34:45.960] [INFO] cheese - inserting 1000 documents. first: Neon Christ and last: Oddvar Hansen +[2018-02-13T00:34:46.016] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:34:46.027] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:34:46.095] [INFO] cheese - inserting 1000 documents. first: National costume of Azerbaijan and last: Fokker V 30 +[2018-02-13T00:34:46.139] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:34:46.213] [INFO] cheese - inserting 1000 documents. first: Category:1748 establishments in the Habsburg Monarchy and last: Rudrahridaya Upanishad +[2018-02-13T00:34:46.264] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:34:46.312] [INFO] cheese - inserting 1000 documents. first: Bombei and last: Thomas O’Shea +[2018-02-13T00:34:46.347] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:34:46.359] [INFO] cheese - inserting 1000 documents. first: Together Again (Tony Bennett and Bill Evans album) and last: Atomic Force Microscopy +[2018-02-13T00:34:46.381] [INFO] cheese - inserting 1000 documents. first: Macedon railway station, Victoria and last: International Expressive Arts Therapy Association-IEATA +[2018-02-13T00:34:46.405] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:34:46.410] [INFO] cheese - inserting 1000 documents. first: Campbell, oh and last: Michael Keeping +[2018-02-13T00:34:46.430] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:34:46.456] [INFO] cheese - inserting 1000 documents. first: Category:Edwards County, Kansas and last: Student council +[2018-02-13T00:34:46.463] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:34:46.531] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:34:46.552] [INFO] cheese - inserting 1000 documents. first: Category:1995 Indian television series endings and last: Waitlist control +[2018-02-13T00:34:46.590] [INFO] cheese - inserting 1000 documents. first: Insects (disambiguation) and last: Harold Williamson +[2018-02-13T00:34:46.598] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:34:46.634] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:34:46.696] [INFO] cheese - inserting 1000 documents. first: File:The Vogues.jpg and last: ShapeAccelArray +[2018-02-13T00:34:46.735] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:34:46.739] [INFO] cheese - inserting 1000 documents. first: Muckinipates Creek and last: Wikipedia:Sockpuppet investigations/Jakenrds111 +[2018-02-13T00:34:46.751] [INFO] cheese - inserting 1000 documents. first: Atmospheric Phenomena and last: Proatheris +[2018-02-13T00:34:46.773] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:34:46.801] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:34:46.882] [INFO] cheese - inserting 1000 documents. first: Lhasoi and last: Wikipedia:Peer review/Real Madrid C.F./archive3 +[2018-02-13T00:34:46.937] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:34:46.988] [INFO] cheese - inserting 1000 documents. first: Brunswick Railroad Museum and last: The Heart of Dixie (song) +[2018-02-13T00:34:46.995] [INFO] cheese - inserting 1000 documents. first: Saint Eustase and last: SS Vermar +[2018-02-13T00:34:47.020] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:34:47.030] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:34:47.092] [INFO] cheese - inserting 1000 documents. first: Marilyn Brick and last: Maxwell-Boltzmann velocity distribution +[2018-02-13T00:34:47.155] [INFO] cheese - inserting 1000 documents. first: Template:City of Perth Suburbs and last: 1973-74 NC State Wolfpack men's basketball team +[2018-02-13T00:34:47.160] [INFO] cheese - inserting 1000 documents. first: Category:Sports teams in Zanzibar and last: Carlos Alberto Rodrigues Gavião +[2018-02-13T00:34:47.165] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:34:47.221] [INFO] cheese - inserting 1000 documents. first: Sa ad Madhi Sa ad Howash Al Azmi and last: Sony Greatest Hits +[2018-02-13T00:34:47.281] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:34:47.307] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:34:47.335] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:34:47.402] [INFO] cheese - inserting 1000 documents. first: Jean-Guy Poitras and last: Federal Road 220 +[2018-02-13T00:34:47.443] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:34:47.464] [INFO] cheese - inserting 1000 documents. first: Category:2008 elections in Ireland and last: Setu Bharatam +[2018-02-13T00:34:47.472] [INFO] cheese - inserting 1000 documents. first: Knight Companion of the Bath (1725–1815) and last: Honorary Knight Grand Cross of the Order of the Star of India +[2018-02-13T00:34:47.512] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:34:47.514] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:34:47.663] [INFO] cheese - inserting 1000 documents. first: Category:Toll bridges in the Republic of Ireland and last: Template:Editnotices/Page/User talk:Avicennasis/MainArchive/2011Q4 +[2018-02-13T00:34:47.694] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:34:47.698] [INFO] cheese - inserting 1000 documents. first: Nanopollution and last: Wood-Ridge +[2018-02-13T00:34:47.710] [INFO] cheese - inserting 1000 documents. first: Mommy blog and last: David McKinney (publisher) +[2018-02-13T00:34:47.737] [INFO] cheese - inserting 1000 documents. first: Leon Bibel and last: Ådne Søndrål +[2018-02-13T00:34:47.746] [INFO] cheese - inserting 1000 documents. first: National Road 220 and last: Iban Mayoz Exteberria +[2018-02-13T00:34:47.758] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:34:47.759] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:34:47.793] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:34:47.819] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:34:47.859] [INFO] cheese - inserting 1000 documents. first: Sausage Fest and last: File:Lossity.jpg +[2018-02-13T00:34:47.876] [INFO] cheese - inserting 1000 documents. first: Honorary Knight Grand Commander of the Order of the Star of India and last: Dintal-e Habibabad +[2018-02-13T00:34:47.901] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:34:47.939] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:34:48.014] [INFO] cheese - inserting 1000 documents. first: Wyse Fork Confederate order of battle and last: File:Habern.jpg +[2018-02-13T00:34:48.054] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:34:48.185] [INFO] cheese - inserting 1000 documents. first: Double Sextet and last: Stegophorella +[2018-02-13T00:34:48.197] [INFO] cheese - inserting 1000 documents. first: Miss Love Tantei and last: Choctawhatchee senior high school +[2018-02-13T00:34:48.206] [INFO] cheese - inserting 1000 documents. first: Ivan Mayoz Exteberria and last: Andrea Pozzi +[2018-02-13T00:34:48.209] [INFO] cheese - inserting 1000 documents. first: Copthall County Grammar School and last: Malaysian earthtiger tarantula +[2018-02-13T00:34:48.212] [INFO] cheese - inserting 1000 documents. first: Mitsubishi 4J1 engine and last: Wikipedia:Meetup/Sydney/Pete Forsyth links +[2018-02-13T00:34:48.234] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:34:48.241] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:34:48.244] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:34:48.258] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:34:48.257] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:34:48.363] [INFO] cheese - inserting 1000 documents. first: Sunny Deol and last: File:FinalFantasyTacticsAdvanceGBACoverArtUS.jpg +[2018-02-13T00:34:48.446] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:34:48.525] [INFO] cheese - inserting 1000 documents. first: Wootton, Staffordshire and last: Wikipedia:Requests for adminship/BuickCenturyDriver 2 +[2018-02-13T00:34:48.612] [INFO] cheese - inserting 1000 documents. first: Nikita gale and last: Goodman, Charles +[2018-02-13T00:34:48.608] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:34:48.687] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:34:48.697] [INFO] cheese - inserting 1000 documents. first: Morses Gulch and last: Particle effects +[2018-02-13T00:34:48.755] [INFO] cheese - inserting 1000 documents. first: Historic properties in Glendale, Arizona and last: San Joaquin saltbush +[2018-02-13T00:34:48.781] [INFO] cheese - inserting 1000 documents. first: Arsheesh and last: White Magic for Lovers +[2018-02-13T00:34:48.789] [INFO] cheese - inserting 1000 documents. first: Stearophora and last: The Bay (Chain Store) +[2018-02-13T00:34:48.803] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:34:48.838] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:34:48.853] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:34:48.872] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:34:49.132] [INFO] cheese - inserting 1000 documents. first: Battle of Orbitello and last: Alucita euscripta +[2018-02-13T00:34:49.137] [INFO] cheese - inserting 1000 documents. first: Goodyear, Charles and last: Hotai Motors +[2018-02-13T00:34:49.181] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:34:49.187] [INFO] cheese - inserting 1000 documents. first: Interstate 90 (South Dakota) and last: B. J. Ward(actress) +[2018-02-13T00:34:49.194] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:34:49.206] [INFO] cheese - inserting 1000 documents. first: Taichang Emperor of China and last: Texas Regulars +[2018-02-13T00:34:49.207] [INFO] cheese - inserting 1000 documents. first: Mihail Zafiu and last: GeoCitizens +[2018-02-13T00:34:49.235] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:34:49.253] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:34:49.281] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:34:49.288] [INFO] cheese - inserting 1000 documents. first: File:Stray cat sanctuary (Ottawa, Ontario).jpg and last: Glam-rock +[2018-02-13T00:34:49.303] [INFO] cheese - inserting 1000 documents. first: Indian locomotive class XC and last: Central American bark lizards +[2018-02-13T00:34:49.348] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:34:49.356] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:34:49.542] [INFO] cheese - inserting 1000 documents. first: Category:1980s disestablishments in Jamaica and last: Category:1924 disasters in the United Kingdom +[2018-02-13T00:34:49.560] [INFO] cheese - inserting 1000 documents. first: Koch-Mehrin and last: Guangning County, Liaoning +[2018-02-13T00:34:49.585] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:34:49.637] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:34:49.651] [INFO] cheese - inserting 1000 documents. first: Relax-GAM Fuenlabrada and last: Albert Hamer Reiser +[2018-02-13T00:34:49.706] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:34:49.737] [INFO] cheese - inserting 1000 documents. first: Parade dress and last: 2014 State of Origin series +[2018-02-13T00:34:49.758] [INFO] cheese - inserting 1000 documents. first: GeoCitizen and last: Category:People from Saint-Georges, Quebec +[2018-02-13T00:34:49.800] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:34:49.811] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:34:49.849] [INFO] cheese - inserting 1000 documents. first: Slobozhan kobzars and last: The Rocket (film) +[2018-02-13T00:34:49.924] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:34:49.942] [INFO] cheese - inserting 1000 documents. first: Soudan Mine and last: Väisälä crater +[2018-02-13T00:34:50.013] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:34:50.016] [INFO] cheese - inserting 1000 documents. first: Template:2016FLRep and last: The Chops +[2018-02-13T00:34:50.023] [INFO] cheese - inserting 1000 documents. first: Daishogi and last: Orneodes seychellensis +[2018-02-13T00:34:50.032] [INFO] cheese - inserting 1000 documents. first: Protocols of Zion (imprints) and last: The Biologic Show +[2018-02-13T00:34:50.061] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:34:50.071] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:34:50.090] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:34:50.344] [INFO] cheese - inserting 1000 documents. first: New York State Route 179 and last: File:Sb30 .jpg +[2018-02-13T00:34:50.361] [INFO] cheese - inserting 1000 documents. first: Hoot Smalley and last: Category:Georgian football club matches +[2018-02-13T00:34:50.413] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:34:50.419] [INFO] cheese - inserting 1000 documents. first: Getter Love!! and last: Another World Entertainment +[2018-02-13T00:34:50.449] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:34:50.485] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:34:50.525] [INFO] cheese - inserting 1000 documents. first: Intelligent web business lab and last: Wikipedia:WikiProject Spam/LinkReports/madeitinhome.com +[2018-02-13T00:34:50.532] [INFO] cheese - inserting 1000 documents. first: Nicolás de la Quadra and last: Ice Tea +[2018-02-13T00:34:50.572] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:34:50.575] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:34:50.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ink and Bone and last: EDJ (disambiguation) +[2018-02-13T00:34:50.674] [INFO] cheese - inserting 1000 documents. first: List of Valencian monarchs and last: Eagle-Vail +[2018-02-13T00:34:50.702] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:34:50.768] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:34:50.898] [INFO] cheese - inserting 1000 documents. first: Stepwise regression and last: Somewhere over the rainbow +[2018-02-13T00:34:50.936] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian football club matches and last: Category:Economy of Bakersfield, California +[2018-02-13T00:34:50.951] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:34:51.004] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:34:51.009] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/California State Route 371 and last: Citronen mine +[2018-02-13T00:34:51.049] [INFO] cheese - inserting 1000 documents. first: Portal:Music of Australia/Selected image/11 and last: BMW 6 series +[2018-02-13T00:34:51.058] [INFO] cheese - inserting 1000 documents. first: Cormac Ó Curnáin and last: Arsène Lupin (film) +[2018-02-13T00:34:51.089] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:34:51.148] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:34:51.196] [INFO] cheese - inserting 1000 documents. first: Cricket at the 2017 Southeast Asian Games and last: Category:Music videos directed by Annabel Jankel +[2018-02-13T00:34:51.202] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:34:51.296] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:34:51.538] [INFO] cheese - inserting 1000 documents. first: Sanghamitta and last: FILE ID.DIZ +[2018-02-13T00:34:51.560] [INFO] cheese - inserting 1000 documents. first: Joe Kovacic and last: Mama Jo's Recording Studio +[2018-02-13T00:34:51.576] [INFO] cheese - inserting 1000 documents. first: Gibbons-Hawking effect and last: De Flat +[2018-02-13T00:34:51.616] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T00:34:51.622] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:34:51.631] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:34:51.666] [INFO] cheese - inserting 1000 documents. first: 文聖區 and last: Moje najmilšie +[2018-02-13T00:34:51.696] [INFO] cheese - inserting 1000 documents. first: File:Ithu Thaanda Police (2016) - Poster.jpg and last: Gaetano Amico III +[2018-02-13T00:34:51.727] [INFO] cheese - inserting 1000 documents. first: Vacht Nacht and last: Dashound +[2018-02-13T00:34:51.734] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:34:51.737] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:34:51.804] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:34:51.814] [INFO] cheese - inserting 1000 documents. first: Category:Lead and zinc mines in Greenland and last: Richard Hopkins (MP) +[2018-02-13T00:34:51.884] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:34:52.081] [INFO] cheese - inserting 1000 documents. first: 1-900 (film) and last: Smokescreen (Marvel Comics) +[2018-02-13T00:34:52.107] [INFO] cheese - inserting 1000 documents. first: Waheela and last: Middle East Institute +[2018-02-13T00:34:52.117] [INFO] cheese - inserting 1000 documents. first: File:Mcewans logo.gif and last: Tachikawa Army Type 95 Model 3 Trainer +[2018-02-13T00:34:52.118] [INFO] cheese - inserting 1000 documents. first: File:Portrait of Leon County Assistant Superintendent for Instruction Aquilina Casañas Howell at her office door.jpg and last: September (The Shins song) +[2018-02-13T00:34:52.126] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:34:52.156] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:34:52.166] [INFO] cheese - inserting 1000 documents. first: Almendra (Aldemaro Romero album) and last: Operation Canopy +[2018-02-13T00:34:52.178] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:34:52.206] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:34:52.219] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:34:52.267] [INFO] cheese - inserting 1000 documents. first: Gavin Whittaker and last: Siberian Yup'ik +[2018-02-13T00:34:52.342] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:34:52.396] [INFO] cheese - inserting 1000 documents. first: File:National Insect Week Logo.jpg and last: File:GoodMorningAmericaLogo.jpg +[2018-02-13T00:34:52.433] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:34:52.566] [INFO] cheese - inserting 1000 documents. first: Cranmer Park and last: Bisdak +[2018-02-13T00:34:52.612] [INFO] cheese - inserting 1000 documents. first: Yorrell and last: File:Dr KR Balakrishnan, Fortis Malar Hospital, Chennai.jpg +[2018-02-13T00:34:52.651] [INFO] cheese - inserting 1000 documents. first: James Madison 1809 presidential inauguration and last: Il Sole Nella Pioggia +[2018-02-13T00:34:52.687] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:34:52.709] [INFO] cheese - inserting 1000 documents. first: Socialist Workers' Movement and last: Farm to Market Road 2519 (Texas) +[2018-02-13T00:34:52.713] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:34:52.748] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:34:52.768] [INFO] cheese - inserting 1000 documents. first: Mitsubishi Army Type 97 Headquarter Reconnaissance and last: SR-124 (UT) +[2018-02-13T00:34:52.802] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:34:52.867] [INFO] cheese - inserting 1000 documents. first: Barnaby (comics Tintin) and last: Wikipedia:Featured picture candidates/File:Pitta moluccensis - Kaeng Krachan.jpg +[2018-02-13T00:34:52.874] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:34:52.945] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:34:53.186] [INFO] cheese - inserting 1000 documents. first: Handayama Botanical Garden and last: Torchlight to Valhalla +[2018-02-13T00:34:53.192] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pipers and last: Mutating engine +[2018-02-13T00:34:53.202] [INFO] cheese - inserting 1000 documents. first: Trigger Fingers (film) and last: Caesarius, Saint +[2018-02-13T00:34:53.236] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:34:53.254] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 2657 (Texas) and last: Category:Members of the 19th Seanad +[2018-02-13T00:34:53.260] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:34:53.282] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T00:34:53.329] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:34:53.388] [INFO] cheese - inserting 1000 documents. first: Utah State Route 124 (1935) and last: St. Patrick High School (Yellowknife) +[2018-02-13T00:34:53.389] [INFO] cheese - inserting 1000 documents. first: Engelholms Glass and last: Bouquet Of Black Orchids +[2018-02-13T00:34:53.404] [INFO] cheese - inserting 1000 documents. first: My Family, My Films and My Nation and last: File:The Vineyard on ABCFamily.jpg +[2018-02-13T00:34:53.450] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:34:53.455] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:34:53.478] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:34:53.672] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Texas/PASS and last: Fox River (Alaska) +[2018-02-13T00:34:53.685] [INFO] cheese - inserting 1000 documents. first: Cassius, Saint and last: Template:England squad 2001 UEFA Women's European Championship +[2018-02-13T00:34:53.707] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:34:53.733] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:34:53.769] [INFO] cheese - inserting 1000 documents. first: TW03 Danio and last: Template:WGA Awards Chron +[2018-02-13T00:34:53.812] [INFO] cheese - inserting 1000 documents. first: Powder-wig and last: Chittening +[2018-02-13T00:34:53.821] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:34:53.835] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/auditoriummusic.com and last: Muafname +[2018-02-13T00:34:53.849] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:34:53.874] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:34:53.886] [INFO] cheese - inserting 1000 documents. first: Hans Sutor and last: Kenya - Australia relations +[2018-02-13T00:34:53.953] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:34:53.968] [INFO] cheese - inserting 1000 documents. first: Music of Saint Lucia and last: Wilno, Ontario +[2018-02-13T00:34:54.054] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:34:54.091] [INFO] cheese - inserting 1000 documents. first: Dansish Ministry of the Environment and last: 1920-21 Port Vale FC season +[2018-02-13T00:34:54.128] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:34:54.148] [INFO] cheese - inserting 1000 documents. first: File:Ejaculation Educational Demonstration.OGG and last: Jeff Ridgway +[2018-02-13T00:34:54.205] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:34:54.232] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/computernetboarder.com and last: Providence St. Mel +[2018-02-13T00:34:54.242] [INFO] cheese - inserting 1000 documents. first: Kenya-Australia relations and last: Wikipedia:WikiProject Spam/LinkReports/hitomitanakaxxx.com +[2018-02-13T00:34:54.268] [INFO] cheese - inserting 1000 documents. first: File:Aspen Gold Kingston Trio2.jpg and last: Fire Station No. 3 +[2018-02-13T00:34:54.271] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:34:54.276] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:34:54.291] [INFO] cheese - inserting 1000 documents. first: Relationship transgression and last: Rick Rosenthal +[2018-02-13T00:34:54.306] [INFO] cheese - inserting 1000 documents. first: 1920-29 in anthropology and last: 18 - Allein unter Madchen +[2018-02-13T00:34:54.328] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:34:54.404] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:34:54.447] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:34:54.625] [INFO] cheese - inserting 1000 documents. first: I Look Like An Engineer and last: 1944-45 Slovenská liga +[2018-02-13T00:34:54.650] [INFO] cheese - inserting 1000 documents. first: Schwergewicht and last: Georgiy Sedov (icebreaker) +[2018-02-13T00:34:54.650] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:34:54.677] [INFO] cheese - inserting 1000 documents. first: Oak hills country club and last: Category:Chiefs of Defence of Norway +[2018-02-13T00:34:54.701] [INFO] cheese - inserting 1000 documents. first: Public Health Service Achievement Medal and last: File:Hbar 338A87E.png +[2018-02-13T00:34:54.699] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:34:54.720] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:34:54.733] [INFO] cheese - inserting 1000 documents. first: File:PanicSpring.jpg and last: Template:Taxonomy/Heterodontosauridae +[2018-02-13T00:34:54.767] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:34:54.781] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:34:54.787] [INFO] cheese - inserting 1000 documents. first: International Telegraph Alphabet No. 1 and last: Artem Jijikhia +[2018-02-13T00:34:54.842] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:34:54.852] [INFO] cheese - inserting 1000 documents. first: SeeU and last: 1954-55 Philadelphia Warriors season +[2018-02-13T00:34:54.873] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:34:54.876] [INFO] cheese - inserting 1000 documents. first: File:Yfflowbeat.jpg and last: Casually Dressed and Deep in Conversation +[2018-02-13T00:34:54.933] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:34:55.026] [INFO] cheese - inserting 1000 documents. first: Category:1965–66 ice hockey leagues and last: Atlantic Horse Mackerel +[2018-02-13T00:34:55.065] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:34:55.075] [INFO] cheese - inserting 1000 documents. first: Lezayre Station and last: Template:DCAni-trademark-copyright +[2018-02-13T00:34:55.090] [INFO] cheese - inserting 1000 documents. first: 1954-55 Michigan Wolverines men's ice hockey season and last: 1954-55 Iowa Hawkeyes men's basketball team +[2018-02-13T00:34:55.109] [INFO] cheese - batch complete in: 0.236 secs +[2018-02-13T00:34:55.132] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:34:55.210] [INFO] cheese - inserting 1000 documents. first: 2011 European Athletics Indoor Championships and last: Habroichthys +[2018-02-13T00:34:55.253] [INFO] cheese - inserting 1000 documents. first: Tomoyuki Higuchi and last: Template:Admin comment +[2018-02-13T00:34:55.272] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:34:55.318] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:34:55.432] [INFO] cheese - inserting 1000 documents. first: 1951-52 Tercera Division and last: 1961-62 Liga Alef +[2018-02-13T00:34:55.467] [INFO] cheese - inserting 1000 documents. first: Nikolay Glazkov and last: Notre Dame High School, West Haven, Connecticut +[2018-02-13T00:34:55.479] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:34:55.528] [INFO] cheese - inserting 1000 documents. first: Final Fight Guy and last: Friedrich Wilhelm Hemprich +[2018-02-13T00:34:55.531] [INFO] cheese - inserting 1000 documents. first: Category:1976 establishments in Rwanda and last: Lata Gouveia +[2018-02-13T00:34:55.549] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:34:55.565] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:34:55.643] [INFO] cheese - inserting 1000 documents. first: Charlie Pechous and last: Maximum Absorbency Garment +[2018-02-13T00:34:55.679] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:34:55.758] [INFO] cheese - inserting 1000 documents. first: 1962-63 Liga Alef and last: 1966 European Athletics Championships - Men's 200 metres +[2018-02-13T00:34:55.835] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:34:55.843] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:34:55.964] [INFO] cheese - inserting 1000 documents. first: Peripeltopleurus and last: Mary Lou Fulton Teachers College +[2018-02-13T00:34:56.034] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:34:56.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GOAWAY and last: 1975-76 Houston Rockets season +[2018-02-13T00:34:56.084] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:34:56.091] [INFO] cheese - inserting 1000 documents. first: The Rolling Stones 1965 tours and last: Owen's College, Manchester +[2018-02-13T00:34:56.103] [INFO] cheese - inserting 1000 documents. first: SS Hannington Court (1912) and last: Workplace Harassment and Productivity +[2018-02-13T00:34:56.117] [INFO] cheese - inserting 1000 documents. first: Road Accident Research Unit and last: Abdul Hakim Bukhary +[2018-02-13T00:34:56.136] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:34:56.154] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:34:56.190] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:34:56.269] [INFO] cheese - inserting 1000 documents. first: 1973-74 in English soccer and last: 1978-79 Division 1 season (Swedish ice hockey) +[2018-02-13T00:34:56.292] [INFO] cheese - batch complete in: 0.208 secs +[2018-02-13T00:34:56.318] [INFO] cheese - inserting 1000 documents. first: File:Saawariya1.jpg and last: Charles Stewart (Texas politician) +[2018-02-13T00:34:56.371] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:34:56.456] [INFO] cheese - inserting 1000 documents. first: Astrometis sertulifera and last: File:Torso male.jpg +[2018-02-13T00:34:56.506] [INFO] cheese - inserting 1000 documents. first: 1980 US Open - Men's Doubles and last: 1982 IAAF World Cross Country Championships - Senior women's race +[2018-02-13T00:34:56.548] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:34:56.583] [INFO] cheese - inserting 1000 documents. first: Lousy With Sylvianbriar and last: Ab Ti-ye Mahtab +[2018-02-13T00:34:56.583] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:34:56.633] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:34:56.645] [INFO] cheese - inserting 1000 documents. first: PMODE/W and last: MIDR Cymru +[2018-02-13T00:34:56.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mikeyasadie and last: Boone Karlson +[2018-02-13T00:34:56.659] [INFO] cheese - inserting 1000 documents. first: Bács-Kiskun County and last: Epsilon Proteobacteria +[2018-02-13T00:34:56.704] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:34:56.710] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:34:56.764] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T00:34:56.807] [INFO] cheese - inserting 1000 documents. first: Reese C. De Graffenreid and last: Hits as a particle acts like a wave +[2018-02-13T00:34:56.811] [INFO] cheese - inserting 1000 documents. first: 1981-82 Rude Pravo Cup and last: 1987-88 FDGB-Pokal +[2018-02-13T00:34:56.831] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:34:56.843] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:34:57.012] [INFO] cheese - inserting 1000 documents. first: 1984-85 Milwaukee Bucks season and last: 1979-80 South-West Indian Ocean cyclone season +[2018-02-13T00:34:57.022] [INFO] cheese - inserting 1000 documents. first: File:Tubal pregnancy, gross pathology 01ee049 lores.jpg and last: Blue Murder (play) +[2018-02-13T00:34:57.032] [INFO] cheese - batch complete in: 0.201 secs +[2018-02-13T00:34:57.100] [INFO] cheese - inserting 1000 documents. first: Ab Ti and last: Juan Manuel Bordaberry +[2018-02-13T00:34:57.106] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:34:57.157] [INFO] cheese - inserting 1000 documents. first: File:OldCustomHouse2.jpg and last: Glasgow Anniesland by-election, 2000 +[2018-02-13T00:34:57.176] [INFO] cheese - inserting 1000 documents. first: Homefront (THQ) and last: Texas Business State Highway 70-G +[2018-02-13T00:34:57.185] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:34:57.250] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:34:57.336] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:34:57.373] [INFO] cheese - inserting 1000 documents. first: Team 29 and last: Leomar Francisco Rodrigues +[2018-02-13T00:34:57.410] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:34:57.434] [INFO] cheese - inserting 1000 documents. first: Acts like a wave hits as a particle and last: 1979 student protests in Nepal +[2018-02-13T00:34:57.567] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:34:57.757] [INFO] cheese - inserting 1000 documents. first: File:For Badgeholders Only Part 1.jpg and last: Wikipedia:Version 1.0 Editorial Team/Biography (musicians) articles by quality/152 +[2018-02-13T00:34:57.764] [INFO] cheese - inserting 1000 documents. first: Star Wars: Droids and last: Avaré, São Paulo +[2018-02-13T00:34:57.783] [INFO] cheese - inserting 1000 documents. first: 1992-93 Football League Third Division and last: 1994-95 in Russian futsal +[2018-02-13T00:34:57.799] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:34:57.804] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:34:57.858] [INFO] cheese - batch complete in: 1.094 secs +[2018-02-13T00:34:57.878] [INFO] cheese - inserting 1000 documents. first: Ira "Buddy" Williams and last: Sam Goldbloom +[2018-02-13T00:34:57.913] [INFO] cheese - inserting 1000 documents. first: Chatham-Kent-Essex and last: File:Erskinehill.jpg +[2018-02-13T00:34:57.939] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:34:57.953] [INFO] cheese - inserting 1000 documents. first: The Complete Pacific Jazz Joe Pass Quartet Sessions and last: Berens River First Nation +[2018-02-13T00:34:57.966] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:34:57.977] [INFO] cheese - inserting 1000 documents. first: 1994-95 Czech 2. Liga and last: Category:Louisiana elections, 1835 +[2018-02-13T00:34:57.984] [INFO] cheese - inserting 1000 documents. first: Lavonia and last: Pumpkinhead 2 +[2018-02-13T00:34:58.011] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:34:58.037] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:34:58.040] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:34:58.219] [INFO] cheese - inserting 1000 documents. first: Category:Louisiana elections, 1837 and last: Deddoman Wandārando +[2018-02-13T00:34:58.227] [INFO] cheese - inserting 1000 documents. first: Category:Geology of Maine and last: Alex Mihailovich +[2018-02-13T00:34:58.254] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T00:34:58.292] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:34:58.393] [INFO] cheese - inserting 1000 documents. first: ISeries QSHELL and last: Miniș River (Cigher) +[2018-02-13T00:34:58.416] [INFO] cheese - inserting 1000 documents. first: Samuel Goldbloom and last: Odo V, Count of Meaux +[2018-02-13T00:34:58.422] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:34:58.431] [INFO] cheese - inserting 1000 documents. first: Maryland State Highway 281 and last: 8-bit processor +[2018-02-13T00:34:58.444] [INFO] cheese - inserting 1000 documents. first: Akumajō Dorakyura and last: 1998 European Short Course Swimming Championships - Women's 50 metre freestyle +[2018-02-13T00:34:58.466] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:34:58.468] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:34:58.469] [INFO] cheese - inserting 1000 documents. first: Standard gravitational parameter and last: William George Horner +[2018-02-13T00:34:58.485] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:34:58.550] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:34:58.859] [INFO] cheese - inserting 1000 documents. first: 1997-98 UEFA Champions League group stage and last: 1998-99 Australian Figure Skating Championships +[2018-02-13T00:34:58.919] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:34:59.029] [INFO] cheese - inserting 1000 documents. first: Template:D1GP circuits and last: Silent Hill: Orphan +[2018-02-13T00:34:59.081] [INFO] cheese - inserting 1000 documents. first: Category:1950 in South Dakota and last: Propylacetone +[2018-02-13T00:34:59.083] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:34:59.143] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:34:59.196] [INFO] cheese - inserting 1000 documents. first: 1998 European Athletics Championships - Women's high jump and last: 2001 Wimbledon Championships - Women's Doubles Qualifying +[2018-02-13T00:34:59.232] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:34:59.239] [INFO] cheese - inserting 1000 documents. first: Anthony Harris (defensive lineman) and last: Band of Brothers (Korean TV series) +[2018-02-13T00:34:59.241] [INFO] cheese - inserting 1000 documents. first: Benoit Sixteen and last: Demon Seed (novel) +[2018-02-13T00:34:59.261] [INFO] cheese - inserting 1000 documents. first: Template:Parks in Indianapolis and last: Category:Football managers in Sri Lanka +[2018-02-13T00:34:59.293] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:34:59.304] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T00:34:59.355] [INFO] cheese - batch complete in: 1.317 secs +[2018-02-13T00:34:59.420] [INFO] cheese - inserting 1000 documents. first: Ålgård Church and last: 1998-99 Czech Cup +[2018-02-13T00:34:59.424] [INFO] cheese - inserting 1000 documents. first: File:Johnny English movie.jpg and last: Category:Art museums and galleries in Russia +[2018-02-13T00:34:59.449] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T00:34:59.472] [INFO] cheese - inserting 1000 documents. first: The Fragments (sculpture) and last: Wikipedia:Articles for deletion/List of fictional restaurants +[2018-02-13T00:34:59.514] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T00:34:59.528] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:34:59.594] [INFO] cheese - inserting 1000 documents. first: Lobster cockroach and last: Appleby grammar school +[2018-02-13T00:34:59.655] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:34:59.698] [INFO] cheese - inserting 1000 documents. first: Briegel and last: 2004 Dutch Open - Doubles +[2018-02-13T00:34:59.702] [INFO] cheese - inserting 1000 documents. first: US military ID and last: Germinal pierre dandelin +[2018-02-13T00:34:59.721] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:34:59.745] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:34:59.754] [INFO] cheese - inserting 1000 documents. first: Roundtop, California and last: Category:Scouting and Guiding in Luxembourg +[2018-02-13T00:34:59.759] [INFO] cheese - inserting 1000 documents. first: John Frederick Nelson and last: Marguerite de La Sablière +[2018-02-13T00:34:59.804] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:34:59.806] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:34:59.909] [INFO] cheese - inserting 1000 documents. first: 2004-05 R.S.C. Anderlecht season and last: Atvi kabul +[2018-02-13T00:34:59.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hillcreststjohn.com and last: List of tropidophiid species and subspecies +[2018-02-13T00:34:59.939] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:34:59.961] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:34:59.986] [INFO] cheese - inserting 1000 documents. first: Category:1891 establishments in Washington, D.C. and last: File:No limit kids DVD cover.jpg +[2018-02-13T00:35:00.018] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:35:00.035] [INFO] cheese - inserting 1000 documents. first: Gerolamo cardano and last: Mexico's independence day +[2018-02-13T00:35:00.108] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:35:00.157] [INFO] cheese - inserting 1000 documents. first: 2005-07 European Challenge Trophy and last: 2007-08 AZAL PFC season +[2018-02-13T00:35:00.210] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:35:00.290] [INFO] cheese - inserting 1000 documents. first: 1798 Irish Rebellion and last: The Peculiar Exploits of Brigadier Ffellowes +[2018-02-13T00:35:00.303] [INFO] cheese - inserting 1000 documents. first: Q300 and last: Amoxipen +[2018-02-13T00:35:00.306] [INFO] cheese - inserting 1000 documents. first: USNH Beaufort and last: Sid Espinosa +[2018-02-13T00:35:00.350] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:35:00.358] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:35:00.372] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:35:00.408] [INFO] cheese - inserting 1000 documents. first: Category:Japanese women journalists and last: Anton I +[2018-02-13T00:35:00.436] [INFO] cheese - inserting 1000 documents. first: Violaines and last: Nelson Mandela Primary School +[2018-02-13T00:35:00.445] [INFO] cheese - inserting 1000 documents. first: Portal:Transnational child protection/Related portals and last: 2008-09 Cyclo-cross Superprestige +[2018-02-13T00:35:00.450] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:35:00.468] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:35:00.492] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:35:00.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Friend Society and last: Edwin J. Cohn +[2018-02-13T00:35:00.623] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:35:00.691] [INFO] cheese - inserting 1000 documents. first: List of places in Ukraine named Antonivka and last: 2009 Pekao Open - Doubles +[2018-02-13T00:35:00.715] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:35:00.732] [INFO] cheese - inserting 1000 documents. first: Newark Sunday Call and last: Category:People of the Aden Emergency +[2018-02-13T00:35:00.749] [INFO] cheese - inserting 1000 documents. first: Tshering Dendup and last: Wikipedia:Articles for deletion/PromiseLand San Marcos +[2018-02-13T00:35:00.755] [INFO] cheese - inserting 1000 documents. first: List of 1. FC Magdeburg players and last: Asian Basketball Confederation Champions Cup 1997 +[2018-02-13T00:35:00.775] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:35:00.799] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:35:00.821] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:35:00.863] [INFO] cheese - inserting 1000 documents. first: Neotinea maculata and last: Category:2003 in motorsport +[2018-02-13T00:35:00.903] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:35:00.912] [INFO] cheese - inserting 1000 documents. first: Amoxipenil and last: Relative error +[2018-02-13T00:35:00.948] [INFO] cheese - inserting 1000 documents. first: 2009 US Open - women's doubles and last: 2010 Fed Cup Asia/Oceania Zone Group I - Pool A +[2018-02-13T00:35:00.987] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:35:00.993] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:35:01.091] [INFO] cheese - inserting 1000 documents. first: Category:Mongolian writers and last: Alacakaya +[2018-02-13T00:35:01.149] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:35:01.176] [INFO] cheese - inserting 1000 documents. first: Straße der Megalithkultur and last: Impossible monsters +[2018-02-13T00:35:01.193] [INFO] cheese - inserting 1000 documents. first: File:Bloodlines Novel.jpg and last: Mount Corrimal +[2018-02-13T00:35:01.207] [INFO] cheese - inserting 1000 documents. first: 2010 Fed Cup Europe/Africa Zone Group III - Play-offs and last: 2010-11 in Australian association football +[2018-02-13T00:35:01.220] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:35:01.253] [INFO] cheese - batch complete in: 0.266 secs +[2018-02-13T00:35:01.264] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:35:01.296] [INFO] cheese - inserting 1000 documents. first: Asian Basketball Confederation Champions Cup 1996 and last: Secure hypertext transfer protocol +[2018-02-13T00:35:01.324] [INFO] cheese - inserting 1000 documents. first: Category:2004 in motorsport and last: William Bleakes +[2018-02-13T00:35:01.349] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:35:01.457] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:35:01.592] [INFO] cheese - inserting 1000 documents. first: Eastern League Most Valuable Player Award and last: 2011-12 Eurocup Basketball Quarterfinals +[2018-02-13T00:35:01.618] [INFO] cheese - inserting 1000 documents. first: File:The Hold Steady - Almost Killed Me cover.jpg and last: Halloween (King Diamond single) +[2018-02-13T00:35:01.620] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:35:01.684] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:35:01.717] [INFO] cheese - inserting 1000 documents. first: Fastest airplane and last: Racine carrée +[2018-02-13T00:35:01.719] [INFO] cheese - inserting 1000 documents. first: Absolute error and last: Albanian Communist Party +[2018-02-13T00:35:01.764] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:35:01.796] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2011 April 17 and last: Boulogne sur mer +[2018-02-13T00:35:01.808] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:35:01.842] [INFO] cheese - inserting 1000 documents. first: Bile farms and last: Award Software Inc +[2018-02-13T00:35:01.858] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:35:01.862] [INFO] cheese - inserting 1000 documents. first: 2011-12 Farjestad BK season and last: 2011-2012 Kuwaiti protests +[2018-02-13T00:35:01.898] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:35:01.914] [INFO] cheese - inserting 1000 documents. first: Karel Schummelketel and last: PCS-1416 +[2018-02-13T00:35:01.917] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:35:01.958] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:35:02.087] [INFO] cheese - inserting 1000 documents. first: 2011-12 Slovak Extraliga season and last: 2007-08 FC Dinamo Bucuresti season +[2018-02-13T00:35:02.092] [INFO] cheese - inserting 1000 documents. first: Reginald Covill and last: Halhal District +[2018-02-13T00:35:02.107] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:35:02.120] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:35:02.174] [INFO] cheese - inserting 1000 documents. first: Vulcanian Eruption and last: Oil Beetle +[2018-02-13T00:35:02.227] [INFO] cheese - inserting 1000 documents. first: Objective Resolution and last: Category:Miki Howard songs +[2018-02-13T00:35:02.230] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:35:02.265] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:35:02.269] [INFO] cheese - inserting 1000 documents. first: File:Anti-FlagTISE.jpg and last: 2012 Tashkent Challenger - Doubles +[2018-02-13T00:35:02.292] [INFO] cheese - inserting 1000 documents. first: Communist Party of Albania and last: Bernardino de Campos +[2018-02-13T00:35:02.306] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:35:02.328] [INFO] cheese - inserting 1000 documents. first: Saint Laurent du Var and last: Papken I +[2018-02-13T00:35:02.344] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:35:02.348] [INFO] cheese - inserting 1000 documents. first: Strong Man's Burden and last: Polymastia aurantium +[2018-02-13T00:35:02.372] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:35:02.397] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:35:02.411] [INFO] cheese - inserting 1000 documents. first: Pennsylvania State-Brandywine Lions and last: 2013 Johan Cruijff-schaal +[2018-02-13T00:35:02.460] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:35:02.467] [INFO] cheese - inserting 1000 documents. first: Algay and last: 2011-12 Primera División de México season +[2018-02-13T00:35:02.493] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T00:35:02.605] [INFO] cheese - inserting 1000 documents. first: The Simpsons (season 6) and last: Purba Banglar Sarbahara Party (Maoist Bolshevik Reorganization Movement) +[2018-02-13T00:35:02.641] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:35:02.660] [INFO] cheese - inserting 1000 documents. first: Lagâri Hasan and last: Category:Serbia and Montenegro football templates +[2018-02-13T00:35:02.691] [INFO] cheese - inserting 1000 documents. first: 2012-13 Eurocup Basketball Knockout Stage and last: 2012-13 Southeastern Louisiana Lions men's basketball team +[2018-02-13T00:35:02.808] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:35:02.837] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:35:02.943] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Saw Binnya and last: Bekisopa mine +[2018-02-13T00:35:03.050] [INFO] cheese - inserting 1000 documents. first: Template:Cullman County, Alabama and last: Noel McNamara +[2018-02-13T00:35:03.070] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:35:03.083] [INFO] cheese - inserting 1000 documents. first: St. Psalmodius and last: File:Doug Stone - I'd Be Better Off.jpg +[2018-02-13T00:35:03.110] [INFO] cheese - inserting 1000 documents. first: Ralph O. Brewster and last: Suzukaze Mayo +[2018-02-13T00:35:03.110] [INFO] cheese - inserting 1000 documents. first: Duluth-Superior Dukes and last: 2013 Internationaux de Tennis de Vendée - Singles +[2018-02-13T00:35:03.111] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:35:03.133] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:35:03.137] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:35:03.181] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T00:35:03.234] [INFO] cheese - inserting 1000 documents. first: Congal Cláen and last: File:Baty2.jpg +[2018-02-13T00:35:03.274] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:35:03.333] [INFO] cheese - inserting 1000 documents. first: Category:Serbia and Montenegro sports templates and last: Edmund Bowyer (disambiguation) +[2018-02-13T00:35:03.364] [INFO] cheese - inserting 1000 documents. first: 高台家の人々 and last: Template:Galaxie 500 +[2018-02-13T00:35:03.373] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:35:03.385] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:35:03.494] [INFO] cheese - inserting 1000 documents. first: Climax Entertainment and last: 2003-04 PBA season +[2018-02-13T00:35:03.494] [INFO] cheese - inserting 1000 documents. first: Alain Goulem and last: Harpalus lethierryi +[2018-02-13T00:35:03.535] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:35:03.540] [INFO] cheese - inserting 1000 documents. first: Carol Baker and last: File:Sheffield Wednesday.svg +[2018-02-13T00:35:03.548] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:35:03.596] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:35:03.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Spaceflight/Style guide and last: St John's Church, Wellington +[2018-02-13T00:35:03.630] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:35:03.645] [INFO] cheese - inserting 1000 documents. first: Tamatebako and last: Nekromantik +[2018-02-13T00:35:03.700] [INFO] cheese - inserting 1000 documents. first: Brahmacarya and last: Takitimu +[2018-02-13T00:35:03.704] [INFO] cheese - inserting 1000 documents. first: Abu Al-Husayn Al-Nuri and last: File:Minarets with M.jpg +[2018-02-13T00:35:03.699] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:35:03.750] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:35:03.770] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:35:03.820] [INFO] cheese - inserting 1000 documents. first: Category:Wikimedia chapter user templates and last: 2013-14 Telekom S-League +[2018-02-13T00:35:03.847] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T00:35:03.923] [INFO] cheese - inserting 1000 documents. first: 1986 Chicago White Sox season and last: Lake Quilotoa +[2018-02-13T00:35:03.955] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:35:03.977] [INFO] cheese - inserting 1000 documents. first: Harpalus liobasis and last: Ba dum tss +[2018-02-13T00:35:04.016] [INFO] cheese - inserting 1000 documents. first: Junko Chodos and last: Fine (Printing) +[2018-02-13T00:35:04.028] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:35:04.030] [INFO] cheese - inserting 1000 documents. first: 2013-14 UD Almeria season and last: 2014 Coupe Banque Nationale - Singles +[2018-02-13T00:35:04.093] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:35:04.066] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T00:35:04.216] [INFO] cheese - inserting 1000 documents. first: Joe Klopfenstein and last: Tom Breiding +[2018-02-13T00:35:04.317] [INFO] cheese - inserting 1000 documents. first: Vale Of Evesham School and last: Portal:Moscow/Categories +[2018-02-13T00:35:04.337] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:35:04.398] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:35:04.420] [INFO] cheese - inserting 1000 documents. first: God Shuffled His Feet and last: Category:Archaeological sites in Libya +[2018-02-13T00:35:04.501] [INFO] cheese - inserting 1000 documents. first: 2014 FINA World Swimming Championships (25 m) - Men's 4 × 100 metre freestyle relay and last: Perungudi, Tiruchirappalli +[2018-02-13T00:35:04.510] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T00:35:04.513] [INFO] cheese - inserting 1000 documents. first: USS Embattle (AM-434) and last: Wikipedia:WikiProject Spam/LinkReports/karidies.com +[2018-02-13T00:35:04.591] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:35:04.630] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:35:04.694] [INFO] cheese - inserting 1000 documents. first: Lee Tae-yang and last: Nic.in +[2018-02-13T00:35:04.735] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:35:04.740] [INFO] cheese - inserting 1000 documents. first: Lev Lifshitz and last: 2005–06 Colorado Avalanche season +[2018-02-13T00:35:04.791] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:35:04.828] [INFO] cheese - inserting 1000 documents. first: 2014 UCI Cyclo-cross World Championships - Women's elite race and last: Cracklin' Bread +[2018-02-13T00:35:04.828] [INFO] cheese - inserting 1000 documents. first: Category:Education in Tuscarawas County, Ohio and last: Fly-by-light +[2018-02-13T00:35:04.854] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T00:35:04.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/VPHybridCAD and last: Template:VFL Cob +[2018-02-13T00:35:04.886] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:35:04.909] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:35:04.981] [INFO] cheese - inserting 1000 documents. first: USS Guide (MSO-447) and last: Wikipedia:Peer review/Transportation in Omaha/archive1 +[2018-02-13T00:35:05.031] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:35:05.070] [INFO] cheese - inserting 1000 documents. first: Hardin's Fort, Kentucky and last: Henry William Braid +[2018-02-13T00:35:05.082] [INFO] cheese - inserting 1000 documents. first: Los Chiles Airport and last: 2014-15 Rain or Shine Elasto Painters season +[2018-02-13T00:35:05.110] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:35:05.110] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:35:05.153] [INFO] cheese - inserting 1000 documents. first: Dave Hyatt and last: Pierre Pelot +[2018-02-13T00:35:05.207] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:35:05.289] [INFO] cheese - inserting 1000 documents. first: Paulin Sterkaj and last: Robert Moore (Pennsylvania) +[2018-02-13T00:35:05.309] [INFO] cheese - inserting 1000 documents. first: 2014-15 Navy Midshipmen men's basketball team and last: 2014-15 Southeastern Conference men's basketball season +[2018-02-13T00:35:05.309] [INFO] cheese - inserting 1000 documents. first: File:Runemagick-moonofthechaoseclipse.jpg and last: Oblates of the Benedictine Congregation of Monte Oliveto +[2018-02-13T00:35:05.323] [INFO] cheese - inserting 1000 documents. first: Clandestine stations and last: SH428 +[2018-02-13T00:35:05.332] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:35:05.334] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T00:35:05.348] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:35:05.380] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:35:05.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2007, Sep 25 and last: Category:Works by L. Sprague de Camp +[2018-02-13T00:35:05.521] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:35:05.562] [INFO] cheese - inserting 1000 documents. first: 2015 Argentina Open - Doubles and last: 2014-15 Serie A1 (men's water polo) +[2018-02-13T00:35:05.594] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:35:05.660] [INFO] cheese - inserting 1000 documents. first: Henry Braid and last: Category:1992–93 Australian region cyclone season +[2018-02-13T00:35:05.694] [INFO] cheese - inserting 1000 documents. first: Richard Fleischner and last: Heather Knight +[2018-02-13T00:35:05.708] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron and last: Lipoxin +[2018-02-13T00:35:05.715] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:35:05.741] [INFO] cheese - inserting 1000 documents. first: Kitchen rudder and last: Babatunde Oshinowo +[2018-02-13T00:35:05.749] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:35:05.773] [INFO] cheese - inserting 1000 documents. first: Route 428 and last: File:RobertGray.jpg +[2018-02-13T00:35:05.779] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:35:05.857] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:35:05.893] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:35:05.923] [INFO] cheese - inserting 1000 documents. first: 2015 Istanbul Open - Singles and last: 2015-16 Charlotte Checkers season +[2018-02-13T00:35:05.940] [INFO] cheese - inserting 1000 documents. first: Brădeanu and last: SR 240 +[2018-02-13T00:35:05.961] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:35:06.000] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:35:06.185] [INFO] cheese - inserting 1000 documents. first: The Prophecy (film series) and last: Quiet Achiever +[2018-02-13T00:35:06.185] [INFO] cheese - inserting 1000 documents. first: Sanjivani (singer) and last: Arturo González +[2018-02-13T00:35:06.213] [INFO] cheese - inserting 1000 documents. first: Lehmann Aviation LA300 and last: Probation (1932 film) +[2018-02-13T00:35:06.214] [INFO] cheese - batch complete in: 0.253 secs +[2018-02-13T00:35:06.242] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:35:06.270] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:35:06.367] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blemmyes and last: Pfäfers Abbey +[2018-02-13T00:35:06.370] [INFO] cheese - inserting 1000 documents. first: Gene Rockwell and last: List of number-one albums in 2005 (New Zealand) +[2018-02-13T00:35:06.415] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:35:06.418] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:35:06.432] [INFO] cheese - inserting 1000 documents. first: SH 240 and last: Latvian People's front +[2018-02-13T00:35:06.469] [INFO] cheese - inserting 1000 documents. first: Red Nightmare and last: Cuvette Department +[2018-02-13T00:35:06.492] [INFO] cheese - inserting 1000 documents. first: 2015-16 Israel State Cup and last: You Made Me Want to Be a Saint +[2018-02-13T00:35:06.507] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:35:06.540] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:35:06.559] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:35:06.653] [INFO] cheese - inserting 1000 documents. first: File:LWNDWY single cover.jpg and last: Rio Nido, CA +[2018-02-13T00:35:06.702] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:35:06.712] [INFO] cheese - inserting 1000 documents. first: Category:Deaths by car bomb in Italy and last: Skirt, Hirari +[2018-02-13T00:35:06.751] [INFO] cheese - inserting 1000 documents. first: Hoodie Weather and last: Chen Chi-nan +[2018-02-13T00:35:06.771] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T00:35:06.780] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:35:06.836] [INFO] cheese - inserting 1000 documents. first: Seybouse and last: Ferdinand Karsch-Haack +[2018-02-13T00:35:06.879] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:35:06.899] [INFO] cheese - inserting 1000 documents. first: Penha (district of São Paulo) and last: Catrina Le-May Doan +[2018-02-13T00:35:06.960] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:35:06.977] [INFO] cheese - inserting 1000 documents. first: 2015 IAAF World Relays - Women's 4 × 200 metres relay and last: 2015-16 Pittsburgh Panthers men's basketball team +[2018-02-13T00:35:06.997] [INFO] cheese - inserting 1000 documents. first: Category:Classical mystics and last: Mad Money (film) +[2018-02-13T00:35:07.049] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:35:07.072] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:35:07.208] [INFO] cheese - inserting 1000 documents. first: Shaarey Zedek Synagogue (Winnipeg) and last: Wikipedia:Articles for deletion/Kamigawa +[2018-02-13T00:35:07.211] [INFO] cheese - inserting 1000 documents. first: Category:Corsica region articles needing translation from French Wikipedia and last: Tuyen Quang +[2018-02-13T00:35:07.219] [INFO] cheese - inserting 1000 documents. first: Tokyo Metro Nanboku Line and last: David B. Pall +[2018-02-13T00:35:07.286] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:35:07.303] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:35:07.342] [INFO] cheese - inserting 1000 documents. first: 2015-16 Evansville Purple Aces women's basketball team and last: Athletics at the 1952 Summer Olympics - Men's 4 × 400 metres relay +[2018-02-13T00:35:07.353] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:35:07.402] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:35:07.503] [INFO] cheese - inserting 1000 documents. first: 1950–51 Kentucky Wildcats men's basketball team and last: Context change potential +[2018-02-13T00:35:07.547] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:35:07.566] [INFO] cheese - inserting 1000 documents. first: Ể and last: Accounting System +[2018-02-13T00:35:07.580] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Pulaski Skyway/archive1 and last: Silvije Čavlina +[2018-02-13T00:35:07.607] [INFO] cheese - inserting 1000 documents. first: All For Latvia! - For Fatherland and Freedom/LNNK and last: The Serpent's Shadow (Lackey) +[2018-02-13T00:35:07.625] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:35:07.627] [INFO] cheese - batch complete in: 0.225 secs +[2018-02-13T00:35:07.629] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:35:07.748] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Addleshaw Tower and last: La Espid Seyyed Fakhr +[2018-02-13T00:35:07.782] [INFO] cheese - inserting 1000 documents. first: The Sinner (Gerritsen) and last: All-Ireland Senior Club Football Championship 2010-11 +[2018-02-13T00:35:07.782] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:35:07.803] [INFO] cheese - batch complete in: 0.176 secs +[2018-02-13T00:35:07.829] [INFO] cheese - inserting 1000 documents. first: Category:Reportedly haunted locations in Italy and last: Dream girl +[2018-02-13T00:35:07.875] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:35:07.880] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Boardex and last: SS Francis J. O'Gara +[2018-02-13T00:35:07.933] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:35:07.944] [INFO] cheese - inserting 1000 documents. first: R. Syme and last: Faílde +[2018-02-13T00:35:07.947] [INFO] cheese - inserting 1000 documents. first: Tokyo International School and last: Kletkamp +[2018-02-13T00:35:07.985] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:35:07.991] [INFO] cheese - inserting 1000 documents. first: Homm and last: Lopid people +[2018-02-13T00:35:07.997] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:35:08.019] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2004 Summer Paralympics - Men's 800 metres T54 and last: Athletics at the 2013 Southeast Asian Games - Men's 1500 metres +[2018-02-13T00:35:08.040] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:35:08.047] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:35:08.121] [INFO] cheese - inserting 1000 documents. first: Staphylococcus pseudintermedius and last: Islas de Santa Fe National Park +[2018-02-13T00:35:08.153] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:35:08.266] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2013 Southeast Asian Games - Women's javelin throw and last: Category:Template space +[2018-02-13T00:35:08.279] [INFO] cheese - inserting 1000 documents. first: Portal:Latin music/Did you know?/20 and last: Brian Hanley +[2018-02-13T00:35:08.282] [INFO] cheese - inserting 1000 documents. first: Category:Theatre in Florida and last: Selent-Schlesen +[2018-02-13T00:35:08.286] [INFO] cheese - batch complete in: 0.239 secs +[2018-02-13T00:35:08.304] [INFO] cheese - inserting 1000 documents. first: Schubert octet and last: Freedom4 Communications +[2018-02-13T00:35:08.318] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:35:08.323] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:35:08.372] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:35:08.413] [INFO] cheese - inserting 1000 documents. first: The Dakotas (TV Series) and last: Sullivan South High School (Tennessee) +[2018-02-13T00:35:08.460] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:35:08.519] [INFO] cheese - inserting 1000 documents. first: Category:Explosions in Saudi Arabia and last: William D. Dickey +[2018-02-13T00:35:08.545] [INFO] cheese - inserting 1000 documents. first: Balding-Nichols distribution and last: Template:Specific-section +[2018-02-13T00:35:08.566] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T00:35:08.593] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:35:08.641] [INFO] cheese - inserting 1000 documents. first: Aysgarth Falls and last: List of Italo-Dalmatian languages +[2018-02-13T00:35:08.761] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:35:08.890] [INFO] cheese - inserting 1000 documents. first: Eugenio Cajés and last: Wikipedia:Version 1.0 Editorial Team/Amphibian and reptile articles by quality/1 +[2018-02-13T00:35:08.909] [INFO] cheese - inserting 1000 documents. first: Bhairon Singh Shekhawat ministry (1977-1980) and last: Brookland - CUA +[2018-02-13T00:35:08.932] [INFO] cheese - inserting 1000 documents. first: Martina franca and last: Wikipedia:DELPRO +[2018-02-13T00:35:08.934] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:35:08.939] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:35:08.950] [INFO] cheese - inserting 1000 documents. first: RACS and last: Sangiran Early Man Site +[2018-02-13T00:35:08.969] [INFO] cheese - inserting 1000 documents. first: M. S. Kariapper and last: Gotvand Dam +[2018-02-13T00:35:08.972] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:35:09.010] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:35:09.030] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:35:09.037] [INFO] cheese - inserting 1000 documents. first: Augusta Anderson and last: Vung Liem District +[2018-02-13T00:35:09.135] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:35:09.201] [INFO] cheese - inserting 1000 documents. first: Broadway-City Hall station and last: Palo Verde School +[2018-02-13T00:35:09.220] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T00:35:09.307] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Amphibian and reptile articles by quality/2 and last: File:Flawless (go to the city) Cover.jpg +[2018-02-13T00:35:09.335] [INFO] cheese - inserting 1000 documents. first: List of Southern Romance languages and last: Category:1710s deaths +[2018-02-13T00:35:09.343] [INFO] cheese - inserting 1000 documents. first: Parc Municipa and last: Big River (California) +[2018-02-13T00:35:09.352] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:35:09.393] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:35:09.395] [INFO] cheese - inserting 1000 documents. first: List of Borgia popes and last: John Hardin McHenry +[2018-02-13T00:35:09.402] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:35:09.429] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Hjiooo/Archive and last: The fashion show +[2018-02-13T00:35:09.441] [INFO] cheese - inserting 1000 documents. first: Boston-Worcester-Providence combined statistical area and last: Columbus - West Point Combined Statistical Area +[2018-02-13T00:35:09.448] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:35:09.471] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:35:09.481] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:35:09.529] [INFO] cheese - inserting 1000 documents. first: Davor Ivo Stier and last: Warriors Orochi 3 Ultimate +[2018-02-13T00:35:09.583] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:35:09.719] [INFO] cheese - inserting 1000 documents. first: Communists in the United States Labor Movement (1937-50) and last: Empire of Alexander the Great +[2018-02-13T00:35:09.728] [INFO] cheese - inserting 1000 documents. first: Suzanne Rayappan and last: North West Region Waste Management Group +[2018-02-13T00:35:09.761] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:35:09.763] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:35:09.764] [INFO] cheese - inserting 1000 documents. first: Gerbillus andersoni and last: Fourth Light Armored Reconnaissance Battalion +[2018-02-13T00:35:09.807] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:35:09.810] [INFO] cheese - inserting 1000 documents. first: Karina Aznavourian and last: Yonōzu, Oita +[2018-02-13T00:35:09.824] [INFO] cheese - inserting 1000 documents. first: Henry Davis McHenry and last: Paul C. Paquet +[2018-02-13T00:35:09.882] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:35:09.931] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:35:10.018] [INFO] cheese - inserting 1000 documents. first: Jennifer Gillis and last: X6i +[2018-02-13T00:35:10.074] [INFO] cheese - inserting 1000 documents. first: 210182 Mazzini and last: Cycling at the 1976 Summer Olympics - Men's track time trial +[2018-02-13T00:35:10.097] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:35:10.121] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:35:10.213] [INFO] cheese - inserting 1000 documents. first: Category:1720s deaths and last: Edgar Ende +[2018-02-13T00:35:10.233] [INFO] cheese - inserting 1000 documents. first: Aeroflot Bonus and last: Gwyneth Cravens +[2018-02-13T00:35:10.272] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:35:10.268] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:35:10.333] [INFO] cheese - inserting 1000 documents. first: Diphu railway station and last: English National League (1981-82) +[2018-02-13T00:35:10.338] [INFO] cheese - inserting 1000 documents. first: Tatekoshi Station and last: File:Caroline-murmurs.jpg +[2018-02-13T00:35:10.348] [INFO] cheese - inserting 1000 documents. first: Thrash rap and last: Martin County Courthouse +[2018-02-13T00:35:10.352] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T00:35:10.358] [INFO] cheese - inserting 1000 documents. first: Earl I. West and last: Brown-spotted blenny +[2018-02-13T00:35:10.399] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:35:10.402] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:35:10.412] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:35:10.462] [INFO] cheese - inserting 1000 documents. first: Paul Karl Stumph and last: File:Brad columbus.jpeg +[2018-02-13T00:35:10.503] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:35:10.582] [INFO] cheese - inserting 1000 documents. first: Office of the First Minister and last: Pirate code of the Brethren +[2018-02-13T00:35:10.583] [INFO] cheese - inserting 1000 documents. first: England national football team results - unofficial matches and last: Esteghlal-Sepahan rivalry +[2018-02-13T00:35:10.612] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:35:10.614] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:35:10.744] [INFO] cheese - inserting 1000 documents. first: Brown-Spotted Blenny and last: Catalan sheepdog +[2018-02-13T00:35:10.782] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:35:10.792] [INFO] cheese - inserting 1000 documents. first: The Nutshell Studies of Unexpected Death and last: Wikipedia:CLANS +[2018-02-13T00:35:10.803] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 2002 Asian Games - Team eventing and last: First campaign in the Goguryeo-Tang War +[2018-02-13T00:35:10.838] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:35:10.844] [INFO] cheese - inserting 1000 documents. first: Bethlehem Chapel and last: Wikipedia:Featured article candidates/Ayn Rand/archive1 +[2018-02-13T00:35:10.866] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:35:10.876] [INFO] cheese - inserting 1000 documents. first: Canadian Criminal Code and last: Steinrode +[2018-02-13T00:35:10.910] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:35:10.927] [INFO] cheese - inserting 1000 documents. first: Greatest Video Game Music and last: John Lindsay, Lord Menmuir +[2018-02-13T00:35:10.933] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:35:10.982] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kalonga Chaambwa and last: General Betray Us Controversy +[2018-02-13T00:35:10.990] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:35:11.032] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:35:11.091] [INFO] cheese - inserting 1000 documents. first: Fencing at the 2015 Pan American Games - Men's foil and last: Football at the 2015 All-Africa Games - Women's tournament +[2018-02-13T00:35:11.114] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:35:11.206] [INFO] cheese - inserting 1000 documents. first: Trevor Ó Clochartaigh and last: Category:1915 in Uruguay +[2018-02-13T00:35:11.306] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:35:11.322] [INFO] cheese - inserting 1000 documents. first: Template:Scottish Clan and last: Serra de Tramuntana-Costa Nord +[2018-02-13T00:35:11.421] [INFO] cheese - inserting 1000 documents. first: Category:Radial engines and last: File:GFR American.jpg +[2018-02-13T00:35:11.448] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:35:11.454] [INFO] cheese - inserting 1000 documents. first: Lada 112 and last: Ο Boötis +[2018-02-13T00:35:11.555] [INFO] cheese - inserting 1000 documents. first: We'll Keep a Welcome (song) and last: Football at the 1998 Asian Games - Women +[2018-02-13T00:35:11.574] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:35:11.575] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:35:11.614] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:35:11.707] [INFO] cheese - inserting 1000 documents. first: Eureka Stockade (miniseries) and last: List of ECAC Hockey Rookie of the Year +[2018-02-13T00:35:11.764] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:35:11.822] [INFO] cheese - inserting 1000 documents. first: Stöckey and last: Ferraz de Vasconcelos +[2018-02-13T00:35:11.867] [INFO] cheese - inserting 1000 documents. first: Fenerbahçe Women Euroleague 2012-13 and last: History of cricket (1726-1740) +[2018-02-13T00:35:11.872] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T00:35:11.878] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in Uruguay and last: Eraserheads: The Reunion Concert (film) +[2018-02-13T00:35:11.890] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:35:11.947] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:35:11.955] [INFO] cheese - inserting 1000 documents. first: 1997 Eliteserien and last: File:Battle of Long Island Map.jpg +[2018-02-13T00:35:11.967] [INFO] cheese - inserting 1000 documents. first: Expert Opinion on Drug Metabolism & Toxicology and last: Antarna +[2018-02-13T00:35:11.993] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:35:12.014] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:35:12.123] [INFO] cheese - inserting 1000 documents. first: Δ Boötis and last: M-6 (Michigan) +[2018-02-13T00:35:12.127] [INFO] cheese - inserting 1000 documents. first: Jacques Aubert (entomologist) and last: Howard-Odmin-Sherman Farmstead +[2018-02-13T00:35:12.157] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:35:12.183] [INFO] cheese - inserting 1000 documents. first: Eulalia (Sister) Bourne and last: Partido Progresista de Coahuila +[2018-02-13T00:35:12.190] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:35:12.280] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:35:12.377] [INFO] cheese - inserting 1000 documents. first: Kevin Lotscher and last: Mongol–Langam languages +[2018-02-13T00:35:12.381] [INFO] cheese - inserting 1000 documents. first: Boyacá Chicó F.C and last: B. K. Follett +[2018-02-13T00:35:12.388] [INFO] cheese - inserting 1000 documents. first: Eleanor, Princess of Wales and last: Wikipedia:WikiProject Spam/LinkReports/hansburg.narod +[2018-02-13T00:35:12.418] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:35:12.422] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:35:12.428] [INFO] cheese - inserting 1000 documents. first: Iceland-Serbia and Montenegro relations and last: Honduras national football team results - 2002 +[2018-02-13T00:35:12.435] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:35:12.476] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:35:12.497] [INFO] cheese - inserting 1000 documents. first: Republican Leader of the United States Senate and last: Mr Potato Head +[2018-02-13T00:35:12.561] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:35:12.579] [INFO] cheese - inserting 1000 documents. first: Grapefruit drug interactions and last: Baha'i Faith in Tunisia +[2018-02-13T00:35:12.609] [INFO] cheese - inserting 1000 documents. first: M-6 (MI) and last: St Xavier's College +[2018-02-13T00:35:12.622] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:35:12.661] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:35:12.758] [INFO] cheese - inserting 1000 documents. first: Japan-Portugal relations and last: June 16-18, 2014 tornado outbreak +[2018-02-13T00:35:12.794] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:35:12.811] [INFO] cheese - inserting 1000 documents. first: Kaisariyeh and last: Prince albert in a can +[2018-02-13T00:35:12.816] [INFO] cheese - inserting 1000 documents. first: Template:User Corei3 and last: Kirihata-ji (Awa) +[2018-02-13T00:35:12.829] [INFO] cheese - inserting 1000 documents. first: IIHF Men's World Ranking and last: Ustazade Silvestre de Sacy +[2018-02-13T00:35:12.849] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:35:12.910] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:35:12.916] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:35:13.063] [INFO] cheese - inserting 1000 documents. first: SS City of Manchester and last: File:Mass Effect 2 Kasumi Gameplay.jpg +[2018-02-13T00:35:13.109] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:35:13.177] [INFO] cheese - inserting 1000 documents. first: Template:Fs team Snezhana Lyubertsy (women) and last: Tuyam Island +[2018-02-13T00:35:13.218] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:35:13.261] [INFO] cheese - inserting 1000 documents. first: Hank Hannegraaf and last: James Davidson (Ottawa mayor) +[2018-02-13T00:35:13.303] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:35:13.358] [INFO] cheese - inserting 1000 documents. first: Qazansu river and last: File:Captain Commando Screenshot.png +[2018-02-13T00:35:13.375] [INFO] cheese - inserting 1000 documents. first: File:Moravian1.jpeg and last: IFPI +[2018-02-13T00:35:13.410] [INFO] cheese - inserting 1000 documents. first: Portal:Mathematics/Featured picture template and last: Elena Ferrante +[2018-02-13T00:35:13.417] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:35:13.419] [INFO] cheese - inserting 1000 documents. first: Leonor Rivera-Kipping and last: St. Ursula's Church, Kouvola +[2018-02-13T00:35:13.433] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:35:13.447] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:35:13.455] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:35:13.504] [INFO] cheese - inserting 1000 documents. first: Oakland Point and last: St Matthews Anglican Church, West Pymble +[2018-02-13T00:35:13.512] [INFO] cheese - inserting 1000 documents. first: File:ST Tholian.jpg and last: K.G. Murray Publishing Company +[2018-02-13T00:35:13.547] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:35:13.556] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:35:13.670] [INFO] cheese - inserting 1000 documents. first: Chigwell (UK Parliament constituency) and last: Outstation movement +[2018-02-13T00:35:13.695] [INFO] cheese - inserting 1000 documents. first: Olan Omiping and last: List of compositions by Franz Liszt (S.1-350) +[2018-02-13T00:35:13.713] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:35:13.718] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:35:13.748] [INFO] cheese - inserting 1000 documents. first: European Parliament elections, 2009 and last: Wikipedia:WikiProject Spam/LinkReports/panamaeconomyinsight.com.pa +[2018-02-13T00:35:13.789] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:35:13.845] [INFO] cheese - inserting 1000 documents. first: J2K-Codec and last: Love's Small Song +[2018-02-13T00:35:13.889] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:35:13.892] [INFO] cheese - inserting 1000 documents. first: Laurent LeClaire and last: Symphony No. 3 (Raff) +[2018-02-13T00:35:13.917] [INFO] cheese - inserting 1000 documents. first: List of Singaporean electoral divisions (1988-91) and last: List of members of the parliament of East Timor, 2001-07 +[2018-02-13T00:35:13.941] [INFO] cheese - batch complete in: 0.222 secs +[2018-02-13T00:35:13.943] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:35:13.979] [INFO] cheese - inserting 1000 documents. first: Lesser Seed Finch and last: Birkenhead High School Academy +[2018-02-13T00:35:14.039] [INFO] cheese - inserting 1000 documents. first: Scapular of Our Lady of Mount Carmel and last: Haripur district +[2018-02-13T00:35:14.044] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:35:14.109] [INFO] cheese - inserting 1000 documents. first: White Pyjamas (Franciscus Henri album) and last: Vali von der osten +[2018-02-13T00:35:14.113] [INFO] cheese - inserting 1000 documents. first: Honey to the Bee and last: Love and Other Planets +[2018-02-13T00:35:14.144] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:35:14.158] [INFO] cheese - inserting 1000 documents. first: Draft:List of companies in Greater Richmond, Virginia and last: List of violent incidents in the Israeli-Palestinian conflict, 2001 +[2018-02-13T00:35:14.196] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:35:14.199] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:35:14.287] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:35:14.423] [INFO] cheese - inserting 1000 documents. first: Coleophora galatellae and last: Fly Me Europe +[2018-02-13T00:35:14.442] [INFO] cheese - inserting 1000 documents. first: À La Poursuite Du Bonheur and last: Virginian Piedmont +[2018-02-13T00:35:14.533] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:35:14.567] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:35:14.678] [INFO] cheese - inserting 1000 documents. first: Little Italy-University Circle (RTA Rapid Transit station) and last: 2016 GOP primary +[2018-02-13T00:35:14.701] [INFO] cheese - inserting 1000 documents. first: Sanda Dubravcic and last: Big dynorphin +[2018-02-13T00:35:14.722] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:35:14.740] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:35:14.795] [INFO] cheese - inserting 1000 documents. first: Vali Von Der Osten and last: 1987 NCAA Division I-AA football season +[2018-02-13T00:35:14.845] [INFO] cheese - inserting 1000 documents. first: Associação de Escuteros de Angola and last: Rodange +[2018-02-13T00:35:14.846] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:35:14.886] [INFO] cheese - inserting 1000 documents. first: Siege of Sebastopol and last: Muskets +[2018-02-13T00:35:14.896] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:35:14.957] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:35:15.040] [INFO] cheese - inserting 1000 documents. first: File:Rayleigh scattering in sulfur suspension.jpg and last: Meanings of minor planet names: 432001-433000 +[2018-02-13T00:35:15.070] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:35:15.072] [INFO] cheese - inserting 1000 documents. first: Abdulfatah Ahmed and last: Lists of Juice +[2018-02-13T00:35:15.084] [INFO] cheese - inserting 1000 documents. first: Patrick Henry Mall and last: Antiques roadshow +[2018-02-13T00:35:15.084] [INFO] cheese - inserting 1000 documents. first: Poshteh Chah and last: Sir Walter Pringle of Lochton, Lord Newhall +[2018-02-13T00:35:15.107] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:35:15.121] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:35:15.150] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:35:15.170] [INFO] cheese - inserting 1000 documents. first: Bogdanović and last: David Chutter +[2018-02-13T00:35:15.207] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:35:15.256] [INFO] cheese - inserting 1000 documents. first: James Hernandez and last: File:Interior Spirit of Ontario.JPG +[2018-02-13T00:35:15.265] [INFO] cheese - inserting 1000 documents. first: Michigan-Chicago football rivalry and last: Low self-discharge nickel-metal hydride battery +[2018-02-13T00:35:15.289] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T00:35:15.299] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:35:15.412] [INFO] cheese - inserting 1000 documents. first: Franca BC and last: John R. Conniff +[2018-02-13T00:35:15.445] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:35:15.453] [INFO] cheese - inserting 1000 documents. first: 1993 PBA Governors' Cup and last: Whitemare +[2018-02-13T00:35:15.459] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 385001-386000 and last: Osnabrück-Brackwede railway +[2018-02-13T00:35:15.489] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:35:15.523] [INFO] cheese - inserting 1000 documents. first: Intimate Apparel (play) and last: Category:Islam in Colombia +[2018-02-13T00:35:15.533] [INFO] cheese - inserting 1000 documents. first: Network analysis and last: Peter Chen +[2018-02-13T00:35:15.546] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:35:15.583] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:35:15.637] [INFO] cheese - inserting 1000 documents. first: H I and last: Asbestos glove +[2018-02-13T00:35:15.639] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:35:15.649] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures on U.S. Route 66 and last: Category:1977 in aquatics +[2018-02-13T00:35:15.685] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:35:15.692] [INFO] cheese - inserting 1000 documents. first: Orient Point-New London Ferry and last: Ryan (airline) +[2018-02-13T00:35:15.709] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:35:15.739] [INFO] cheese - batch complete in: 0.25 secs +[2018-02-13T00:35:15.868] [INFO] cheese - inserting 1000 documents. first: Template:User Part Time Resident-Belfast and last: Category:Club Athletico Paulistano basketball players +[2018-02-13T00:35:15.962] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:35:16.087] [INFO] cheese - inserting 1000 documents. first: S7 (airline) and last: Murkoff +[2018-02-13T00:35:16.112] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:35:16.121] [INFO] cheese - inserting 1000 documents. first: Activation key and last: KNUT GLOMSAAS +[2018-02-13T00:35:16.154] [INFO] cheese - inserting 1000 documents. first: Lobo Stadium and last: Template:You're welcome/doc +[2018-02-13T00:35:16.182] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:35:16.189] [INFO] cheese - inserting 1000 documents. first: File:TheyGotAway.jpg and last: Chestnut-bellied Helmet-shrike +[2018-02-13T00:35:16.224] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:35:16.247] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:35:16.256] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/Wavecut platform and last: Los Angeles Pacific College +[2018-02-13T00:35:16.338] [INFO] cheese - inserting 1000 documents. first: PATH (New Jersey-New York) and last: Revolutionary situation in Russia 1859-1861 +[2018-02-13T00:35:16.340] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:35:16.344] [INFO] cheese - inserting 1000 documents. first: Club Athletico Paulistano basketball and last: Wild Weekend +[2018-02-13T00:35:16.351] [INFO] cheese - inserting 1000 documents. first: Faustino Asprilla and last: Cellular pathology +[2018-02-13T00:35:16.376] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:35:16.414] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:35:16.432] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:35:16.601] [INFO] cheese - inserting 1000 documents. first: La Florida, Santiago Province and last: Devilish Presley +[2018-02-13T00:35:16.619] [INFO] cheese - inserting 1000 documents. first: Resistance movements in partitioned Poland (1795-1918) and last: Category:Films directed by Roger Richebé +[2018-02-13T00:35:16.658] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T00:35:16.658] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:35:16.676] [INFO] cheese - inserting 1000 documents. first: Template:Coahoma County, Mississippi and last: Portland Metropolitan Area +[2018-02-13T00:35:16.699] [INFO] cheese - inserting 1000 documents. first: 1974 Asian Games medal table and last: Over/under cable wrapping +[2018-02-13T00:35:16.714] [INFO] cheese - inserting 1000 documents. first: USS Seattle (ACR-11) and last: Canon S1 +[2018-02-13T00:35:16.725] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:35:16.760] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:35:16.788] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:35:16.916] [INFO] cheese - inserting 1000 documents. first: International Society of New Testament Studies and last: Mecyclothorax ovalipennis +[2018-02-13T00:35:16.926] [INFO] cheese - inserting 1000 documents. first: Louise Marwood and last: Segona Divisio 2006-07 +[2018-02-13T00:35:16.954] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:35:16.973] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:35:17.039] [INFO] cheese - inserting 1000 documents. first: Jean-Gilles du Coëtlosquet and last: Okahno +[2018-02-13T00:35:17.044] [INFO] cheese - inserting 1000 documents. first: Canton of Baden and last: Category:Lists of English phrases +[2018-02-13T00:35:17.097] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:35:17.209] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:35:17.318] [INFO] cheese - inserting 1000 documents. first: File:DJSnakeMiddle.jpg and last: Shooting at the 2015 European Games - Women's skeet +[2018-02-13T00:35:17.323] [INFO] cheese - inserting 1000 documents. first: Thomas de Vaus and last: Boeing 787-10 +[2018-02-13T00:35:17.347] [INFO] cheese - inserting 1000 documents. first: Template:Mana Party/meta/color and last: Ph. Eur. +[2018-02-13T00:35:17.348] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:35:17.384] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:35:17.424] [INFO] cheese - inserting 1000 documents. first: Minami-Ibaraki Station and last: Drakkar Entertainment +[2018-02-13T00:35:17.448] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:35:17.477] [INFO] cheese - inserting 1000 documents. first: Mecyclothorax gourvesioides and last: Policy & Internet +[2018-02-13T00:35:17.489] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:35:17.540] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:35:17.599] [INFO] cheese - inserting 1000 documents. first: Short track speed skating at the 2007 Asian Winter Games - Men's 1500 metres and last: Portosystemic anastomosis +[2018-02-13T00:35:17.634] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T00:35:17.663] [INFO] cheese - inserting 1000 documents. first: Route 390 (Maryland) and last: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/354 +[2018-02-13T00:35:17.713] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:35:17.801] [INFO] cheese - inserting 1000 documents. first: Speed skating at the 1968 Winter Olympics - Men's 5000 metres and last: Shooting at the 2002 Asian Games - Men's 25 metre rapid fire pistol +[2018-02-13T00:35:17.821] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T00:35:17.832] [INFO] cheese - inserting 1000 documents. first: USS Lycoming and last: B.A.C +[2018-02-13T00:35:17.888] [INFO] cheese - inserting 1000 documents. first: 50 Number Ones and last: Federal Reserve Bank Building (Boston) +[2018-02-13T00:35:17.888] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:35:17.894] [INFO] cheese - inserting 1000 documents. first: Abacetus brevicollis and last: File:StainsFeltAlbum.jpg +[2018-02-13T00:35:17.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Emmanuel Morin and last: Cracking India +[2018-02-13T00:35:17.947] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:35:17.972] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:35:17.977] [INFO] cheese - inserting 1000 documents. first: Portal:U.S. Roads/Did you know/May 2011 and last: Wikipedia:Articles for deletion/Isabelle leon +[2018-02-13T00:35:18.034] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:35:18.062] [INFO] cheese - inserting 1000 documents. first: Sarrià (Barcelona-Vallès Line) and last: Gonionota praeclivis +[2018-02-13T00:35:18.072] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:35:18.092] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:35:18.127] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/355 and last: Richard Barrington +[2018-02-13T00:35:18.168] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:35:18.282] [INFO] cheese - inserting 1000 documents. first: Mitch Thorp and last: Template:Mystery-film-stub +[2018-02-13T00:35:18.306] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2012 Summer Olympics - Men's 4 × 200 metre freestyle relay and last: Swimming at the 2015 World Aquatics Championships - Men's 200 metre freestyle +[2018-02-13T00:35:18.331] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:35:18.341] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T00:35:18.441] [INFO] cheese - inserting 1000 documents. first: Huron College and last: Category:Pakistani non-fiction writers +[2018-02-13T00:35:18.494] [INFO] cheese - inserting 1000 documents. first: Bunny Johnson and last: Sherrie Sprenger +[2018-02-13T00:35:18.494] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:35:18.510] [INFO] cheese - inserting 1000 documents. first: Stade St. Leonard and last: Impuza Mugambi +[2018-02-13T00:35:18.551] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:35:18.556] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:35:18.560] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2015 World Aquatics Championships - Women's 4 × 100 metre freestyle relay and last: Prussian invasion of Holland +[2018-02-13T00:35:18.596] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:35:18.609] [INFO] cheese - inserting 1000 documents. first: List of Métis settlements in Alberta and last: E'Thembeni +[2018-02-13T00:35:18.667] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:35:18.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Funeral Orchestra and last: Brookville Equipment Corporation +[2018-02-13T00:35:18.733] [INFO] cheese - inserting 1000 documents. first: Category:Icelandic sopranos and last: Massanes, Gard +[2018-02-13T00:35:18.763] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:35:18.812] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:35:18.912] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2014 Summer Youth Olympics - Girls' doubles and last: Toyota concept vehicles, 2010-19 +[2018-02-13T00:35:18.945] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:35:18.975] [INFO] cheese - inserting 1000 documents. first: Comprehensive Income Policy Agreement and last: File:America's Next Great Restaurant (emblem).png +[2018-02-13T00:35:19.019] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:35:19.069] [INFO] cheese - inserting 1000 documents. first: RW van Bemmelen and last: Wikipedia:Miscellany for deletion/User:Thodin/claims +[2018-02-13T00:35:19.081] [INFO] cheese - inserting 1000 documents. first: Rockford Township, Floyd County, Iowa and last: Colorado River Floods of 1983 +[2018-02-13T00:35:19.123] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:35:19.128] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:35:19.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dark Tichondrias/Userboxes/Receive Anal Sex (2nd nomination) and last: Tohru Nogami +[2018-02-13T00:35:19.178] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:35:19.200] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Florida, 1857 and last: File:Ram Lal.jpeg +[2018-02-13T00:35:19.240] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:35:19.322] [INFO] cheese - inserting 1000 documents. first: Marc Béziat and last: Athar Sohaib +[2018-02-13T00:35:19.352] [INFO] cheese - inserting 1000 documents. first: Asura habrotis and last: General Blood +[2018-02-13T00:35:19.358] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:35:19.375] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of innovative inventions and last: Max Lieberman +[2018-02-13T00:35:19.413] [INFO] cheese - inserting 1000 documents. first: United states sales tax and last: The Art Institute of California - Inland Empire +[2018-02-13T00:35:19.415] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:35:19.444] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:35:19.476] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:35:19.479] [INFO] cheese - inserting 1000 documents. first: Uniforms of the Luftwaffe (1935-1945) and last: The Divergent Series: Insurgent - Original Motion Picture Soundtrack +[2018-02-13T00:35:19.503] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T00:35:19.522] [INFO] cheese - inserting 1000 documents. first: Nina burleigh and last: Wikipedia:WikiProject Spam/LinkReports/saturdaychurch.org +[2018-02-13T00:35:19.578] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:35:19.618] [INFO] cheese - inserting 1000 documents. first: BASToF Syndrome and last: Tobias Delius +[2018-02-13T00:35:19.666] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:35:19.710] [INFO] cheese - inserting 1000 documents. first: PulseAsia Inc and last: Wrestling at the 1928 Summer Olympics - Men's Greco-Roman bantamweight +[2018-02-13T00:35:19.733] [INFO] cheese - inserting 1000 documents. first: Franciscan Action Network and last: Centruroides ornatus +[2018-02-13T00:35:19.735] [INFO] cheese - batch complete in: 0.232 secs +[2018-02-13T00:35:19.751] [INFO] cheese - inserting 1000 documents. first: Don Gustavson and last: Miu-Khumi +[2018-02-13T00:35:19.777] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:35:19.819] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:35:19.899] [INFO] cheese - inserting 1000 documents. first: Robert-Jean de Coigny and last: Ignition (album) +[2018-02-13T00:35:19.968] [INFO] cheese - inserting 1000 documents. first: Shūkichi Tsujimura and last: File:Innersydneyrail.jpg +[2018-02-13T00:35:19.986] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:35:20.014] [INFO] cheese - inserting 1000 documents. first: Women in warfare and the military (1900-1945) and last: Eremophila spuria +[2018-02-13T00:35:20.055] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:35:20.092] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:35:20.124] [INFO] cheese - inserting 1000 documents. first: Template:Pantheon of Dragonlance and last: On the Sun +[2018-02-13T00:35:20.148] [INFO] cheese - inserting 1000 documents. first: TheFacebook and last: Cascading Stylesheets +[2018-02-13T00:35:20.200] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:35:20.256] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:35:20.298] [INFO] cheese - inserting 1000 documents. first: Template:Extinct breeds of dog and last: File:Little Red - Midnight Remember.jpg +[2018-02-13T00:35:20.370] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:35:20.426] [INFO] cheese - inserting 1000 documents. first: Sardehat-e Ja'far and last: Category:600 mm gauge railways in Poland +[2018-02-13T00:35:20.469] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:35:20.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/bahamasfinancialservices.com and last: Wikipedia:Version 1.0 Editorial Team/Neuroscience articles by quality statistics +[2018-02-13T00:35:20.516] [INFO] cheese - inserting 1000 documents. first: Zuiko Digital ED 14-54mm f/2.8-3.5 II and last: Category:Financial services companies established in 2016 +[2018-02-13T00:35:20.548] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:35:20.582] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:35:20.709] [INFO] cheese - inserting 1000 documents. first: Osorioichthys and last: File:Courtneyfathom.jpg +[2018-02-13T00:35:20.762] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:35:20.824] [INFO] cheese - inserting 1000 documents. first: Robert Wilson (Missouri) and last: Nathaniel Barksdale Dial +[2018-02-13T00:35:20.881] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:35:20.889] [INFO] cheese - inserting 1000 documents. first: Belsőtelep and last: KF Tirana season 2009–10 +[2018-02-13T00:35:20.930] [INFO] cheese - inserting 1000 documents. first: Shahpurkandi dam project and last: Liquor Goat +[2018-02-13T00:35:20.931] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:35:20.966] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:35:20.994] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2007 October 2 and last: List of runestones +[2018-02-13T00:35:21.031] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:35:21.041] [INFO] cheese - inserting 1000 documents. first: Lee Clark (footballer) and last: Geoffroy Saint-Hilaire +[2018-02-13T00:35:21.103] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:35:21.140] [INFO] cheese - inserting 1000 documents. first: NDS pen and last: Gregg Steinhafel +[2018-02-13T00:35:21.191] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:35:21.270] [INFO] cheese - inserting 1000 documents. first: フルバ and last: Dallas Texans (AFL) first-round draft picks +[2018-02-13T00:35:21.275] [INFO] cheese - inserting 1000 documents. first: Cation-pi interaction and last: (?) +[2018-02-13T00:35:21.305] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:35:21.327] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:35:21.361] [INFO] cheese - inserting 1000 documents. first: Pahn and last: Arkansas State Highway 16 Spur +[2018-02-13T00:35:21.362] [INFO] cheese - inserting 1000 documents. first: Harlow District Council election, 2003 and last: Subject whom +[2018-02-13T00:35:21.412] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:35:21.428] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:35:21.564] [INFO] cheese - inserting 1000 documents. first: Category:Freeman Dyson and last: Lunar eclipse (disambiguation) +[2018-02-13T00:35:21.610] [INFO] cheese - inserting 1000 documents. first: 1923 Tour of Flanders and last: Maaroufi +[2018-02-13T00:35:21.609] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:35:21.658] [INFO] cheese - inserting 1000 documents. first: File:Cosmis Requiem.jpg and last: Yaquzlejeh +[2018-02-13T00:35:21.659] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:35:21.675] [INFO] cheese - inserting 1000 documents. first: Geoffroy-Saint-Hilaire and last: Town privileges +[2018-02-13T00:35:21.707] [INFO] cheese - inserting 1000 documents. first: History of the administrative division of Russia in 1708–1744 and last: Jonathan Thompson (disambiguation) +[2018-02-13T00:35:21.730] [INFO] cheese - batch complete in: 1.261 secs +[2018-02-13T00:35:21.732] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:35:21.742] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:35:21.970] [INFO] cheese - inserting 1000 documents. first: List of the it crowd episodes and last: Noauto +[2018-02-13T00:35:22.022] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:35:22.030] [INFO] cheese - inserting 1000 documents. first: The Liberal Party and last: Tip cat +[2018-02-13T00:35:22.042] [INFO] cheese - inserting 1000 documents. first: Template:R from pejorative and last: Category:Wikipedians by alma mater: Maryland Institute College of Art +[2018-02-13T00:35:22.073] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:35:22.094] [INFO] cheese - inserting 1000 documents. first: HMS Croome and last: Anticipate Recordings +[2018-02-13T00:35:22.134] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:35:22.137] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:35:22.289] [INFO] cheese - inserting 1000 documents. first: Bedside test and last: Peninsula Center, Wisconsin +[2018-02-13T00:35:22.368] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:35:22.403] [INFO] cheese - inserting 1000 documents. first: Volodymyr-Volynsky and last: List of members of the Australian House of Representatives +[2018-02-13T00:35:22.405] [INFO] cheese - inserting 1000 documents. first: Sulichay and last: Indonesia–Brazil relations +[2018-02-13T00:35:22.493] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:35:22.519] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of cultural references to Stephen King and last: Li Qiang (activist) +[2018-02-13T00:35:22.519] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:35:22.620] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:35:22.668] [INFO] cheese - inserting 1000 documents. first: Xavi Torres and last: Actenochroma +[2018-02-13T00:35:22.686] [INFO] cheese - inserting 1000 documents. first: List of head masters of Eton College and last: Template:2001 Southland Football League standings +[2018-02-13T00:35:22.729] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:35:22.757] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:35:22.799] [INFO] cheese - inserting 1000 documents. first: Markinch Curling Club and last: Adams Township, Washington County, OH +[2018-02-13T00:35:22.851] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:35:22.866] [INFO] cheese - inserting 1000 documents. first: Stringmusic and last: N K +[2018-02-13T00:35:22.908] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:35:22.949] [INFO] cheese - inserting 1000 documents. first: Indonesia - Brazil relations and last: Philip krejcarek +[2018-02-13T00:35:23.006] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:35:23.023] [INFO] cheese - inserting 1000 documents. first: Helen Lines and last: Portal:Ayyavazhi/Introduction +[2018-02-13T00:35:23.080] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:35:23.097] [INFO] cheese - inserting 1000 documents. first: Template:Capcom and last: Maltermoro +[2018-02-13T00:35:23.119] [INFO] cheese - inserting 1000 documents. first: Electrode (Pokemon) and last: Category:Source (journalism) +[2018-02-13T00:35:23.121] [INFO] cheese - inserting 1000 documents. first: Chaos;Child and last: List of Secretaries-General of the Association of Southeast Asian Nations +[2018-02-13T00:35:23.131] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:35:23.162] [INFO] cheese - inserting 1000 documents. first: Rock n Roll Animal and last: College Slam +[2018-02-13T00:35:23.167] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:35:23.176] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:35:23.204] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:35:23.329] [INFO] cheese - inserting 1000 documents. first: N L and last: List of UK Dance Singles Chart number ones of 2003 +[2018-02-13T00:35:23.360] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:35:23.419] [INFO] cheese - inserting 1000 documents. first: Phillies Clubhouse and last: DJmag.com +[2018-02-13T00:35:23.426] [INFO] cheese - inserting 1000 documents. first: Category:Military installations in Sindh and last: Tideglusib +[2018-02-13T00:35:23.448] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:35:23.469] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:35:23.497] [INFO] cheese - inserting 1000 documents. first: Adoni revenue division and last: Rudolf Auspitz +[2018-02-13T00:35:23.500] [INFO] cheese - inserting 1000 documents. first: Big Bone, KY and last: Perca schrenkii +[2018-02-13T00:35:23.512] [INFO] cheese - inserting 1000 documents. first: Aladdin's Eatery and last: File:Bloc Party - Ion Square.ogg +[2018-02-13T00:35:23.530] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:35:23.533] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:35:23.560] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:35:23.705] [INFO] cheese - inserting 1000 documents. first: Category:Manx politicians and last: Tav Falco +[2018-02-13T00:35:23.757] [INFO] cheese - inserting 1000 documents. first: File:H. Verlan Andersen.jpg and last: Law of Macao +[2018-02-13T00:35:23.762] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:35:23.814] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:35:23.893] [INFO] cheese - inserting 1000 documents. first: Christian Gospel and last: 爪 +[2018-02-13T00:35:23.935] [INFO] cheese - inserting 1000 documents. first: Thesaurus (Clare Fischer album) and last: Category:Baseball venues in the Dallas-Fort Worth Metroplex +[2018-02-13T00:35:23.969] [INFO] cheese - inserting 1000 documents. first: Phoenix Suns head coaches and last: Template:ISO 3166 code POR +[2018-02-13T00:35:23.986] [INFO] cheese - inserting 1000 documents. first: Håkan Ericsson and last: Stargate: Extinction +[2018-02-13T00:35:23.996] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:35:24.011] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:35:24.059] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:35:24.088] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:35:24.218] [INFO] cheese - inserting 1000 documents. first: Bradenton Beach Scenic Highway and last: Template:US-jazz-band-stub +[2018-02-13T00:35:24.285] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:35:24.437] [INFO] cheese - inserting 1000 documents. first: Ario Soerjo and last: Transmission (EP)(Mêlée) +[2018-02-13T00:35:24.445] [INFO] cheese - inserting 1000 documents. first: Portal:Earth sciences/Selected articles and last: Gerhard Hasel +[2018-02-13T00:35:24.471] [INFO] cheese - inserting 1000 documents. first: Tongyi and last: WWE Internet Champion +[2018-02-13T00:35:24.480] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:35:24.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Alexander Kapranos and last: Leliwa coat of arms +[2018-02-13T00:35:24.507] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Female Prisoner Ayaka: Tormenting and Breaking in a Bitch and last: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Legionnaires' disease +[2018-02-13T00:35:24.510] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:35:24.535] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:35:24.547] [INFO] cheese - inserting 1000 documents. first: Soosai and last: Harrogate Bus Station +[2018-02-13T00:35:24.579] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T00:35:24.593] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:35:24.623] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:35:24.661] [INFO] cheese - inserting 1000 documents. first: Glenn Layendecker and last: Operation Dove (Ireland) +[2018-02-13T00:35:24.703] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:35:24.834] [INFO] cheese - inserting 1000 documents. first: Turkey Spain relations and last: Wikipedia:Cheapness +[2018-02-13T00:35:24.880] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:35:24.885] [INFO] cheese - inserting 1000 documents. first: Achintya Bhedābheda and last: John Steele House (disambiguation) +[2018-02-13T00:35:24.925] [INFO] cheese - inserting 1000 documents. first: Dumping Syndrome and last: File:StAndrews.jpg +[2018-02-13T00:35:24.927] [INFO] cheese - inserting 1000 documents. first: 316028 Patrickwils and last: 350509 Vepřoknedlozelo +[2018-02-13T00:35:24.928] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:35:24.954] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:35:24.981] [INFO] cheese - inserting 1000 documents. first: Munyon and last: Mendota Station +[2018-02-13T00:35:24.981] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:35:25.039] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:35:25.076] [INFO] cheese - inserting 1000 documents. first: Little monocacy river and last: Wikipedia:Votes for deletion/Vigatec (Chile) +[2018-02-13T00:35:25.118] [INFO] cheese - inserting 1000 documents. first: Zoran Žigić and last: File:Polmadie.jpg +[2018-02-13T00:35:25.145] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:35:25.184] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:35:25.248] [INFO] cheese - inserting 1000 documents. first: 350509 Veproknedlozelo and last: Leo Baeck Institute London +[2018-02-13T00:35:25.250] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CHEAPNESS and last: Aerial (Scottish band) +[2018-02-13T00:35:25.287] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:35:25.306] [INFO] cheese - inserting 1000 documents. first: Far Tottering and Oyster Creek Railway and last: Muscular pile +[2018-02-13T00:35:25.325] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:35:25.395] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:35:25.465] [INFO] cheese - inserting 1000 documents. first: Bert Sprotte and last: List of National Historic Landmarks in Louisiana +[2018-02-13T00:35:25.507] [INFO] cheese - inserting 1000 documents. first: Municipalities of Guam and last: 1980–1982 +[2018-02-13T00:35:25.544] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:35:25.573] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:35:25.680] [INFO] cheese - inserting 1000 documents. first: File:FC Boskovice logo.svg and last: List of mountains of Missouri +[2018-02-13T00:35:25.713] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:35:25.789] [INFO] cheese - inserting 1000 documents. first: U.S. Attorney for the Northern District of Georgia and last: KWR-37 +[2018-02-13T00:35:25.797] [INFO] cheese - inserting 1000 documents. first: Andrzej Gryfita and last: Wikipedia:WikiProject Spam/LinkReports/codingplayground.blogspot.it +[2018-02-13T00:35:25.802] [INFO] cheese - inserting 1000 documents. first: Marshall, Peter and last: Category:Decadent literature +[2018-02-13T00:35:25.826] [INFO] cheese - inserting 1000 documents. first: Marchioness of Kipon and last: Yoan Andreu +[2018-02-13T00:35:25.852] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:35:25.852] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:35:25.865] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:35:25.868] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:35:25.959] [INFO] cheese - inserting 1000 documents. first: National Fisheries Institute and last: Hasting Old Town Week +[2018-02-13T00:35:26.001] [INFO] cheese - inserting 1000 documents. first: All They Ever Wanted and last: Living in China +[2018-02-13T00:35:26.014] [INFO] cheese - inserting 1000 documents. first: Giovanni Antonio Acquaviva d'Aragona and last: Lutzia shinonagai +[2018-02-13T00:35:26.018] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:35:26.048] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:35:26.056] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:35:26.165] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/codingplayground.blogspot.it and last: Chapykh +[2018-02-13T00:35:26.194] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:35:26.248] [INFO] cheese - inserting 1000 documents. first: Johnny Paris and last: Bobby Ayala +[2018-02-13T00:35:26.274] [INFO] cheese - inserting 1000 documents. first: Category:3rd millennium in Lithuania and last: Frequency Modulation Radio +[2018-02-13T00:35:26.287] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:35:26.307] [INFO] cheese - inserting 1000 documents. first: The Great Ones Remember and last: Wikipedia:Ottoman/P +[2018-02-13T00:35:26.311] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:35:26.349] [INFO] cheese - inserting 1000 documents. first: A. Flea and last: Headwater stream +[2018-02-13T00:35:26.364] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:35:26.404] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:35:26.426] [INFO] cheese - inserting 1000 documents. first: KWT-37 and last: Barayev +[2018-02-13T00:35:26.451] [INFO] cheese - inserting 1000 documents. first: File:D-Lite - D'slove.jpg and last: Category:Scientists from Assam +[2018-02-13T00:35:26.474] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:35:26.484] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:35:26.579] [INFO] cheese - inserting 1000 documents. first: Golabar-e Sofla and last: Wikipedia:WikiProject Spam/LinkReports/girlsbcn-online.com +[2018-02-13T00:35:26.617] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:35:26.658] [INFO] cheese - inserting 1000 documents. first: Gabriela (disambiguation) and last: Moses Leaving to Egypt (Pietro Perugino) +[2018-02-13T00:35:26.709] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:35:26.767] [INFO] cheese - inserting 1000 documents. first: Kinnitty Castle and last: Saffron-crested Tyrant Manakin +[2018-02-13T00:35:26.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Women in Red/Youth lit writers and last: Nans Peters +[2018-02-13T00:35:26.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Patrol Men (film) and last: Princess Virginia (Ira) of Fürstenberg +[2018-02-13T00:35:26.813] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:35:26.820] [INFO] cheese - inserting 1000 documents. first: Square-lattice Ising model and last: Davies, Roger +[2018-02-13T00:35:26.841] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:35:26.891] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:35:26.909] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:35:27.078] [INFO] cheese - inserting 1000 documents. first: Sulphur-bellied Tyrant Manakin and last: All the weyrs of pern +[2018-02-13T00:35:27.099] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T00:35:27.102] [INFO] cheese - inserting 1000 documents. first: WellStar Kennestone Regional Medical Hospital and last: Rust and Bone (short story collection) +[2018-02-13T00:35:27.104] [INFO] cheese - inserting 1000 documents. first: Danio nigrofasciatus and last: George A. Smith +[2018-02-13T00:35:27.155] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:35:27.164] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:35:27.178] [INFO] cheese - inserting 1000 documents. first: Sunday Times Rich List 2011 and last: TNA Entertainment, LLC +[2018-02-13T00:35:27.247] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:35:27.250] [INFO] cheese - inserting 1000 documents. first: Davis, Willie and last: Taylor, Kate +[2018-02-13T00:35:27.277] [INFO] cheese - inserting 1000 documents. first: Concentrate of Poppy Straw and last: Category:Linköping University academics +[2018-02-13T00:35:27.287] [INFO] cheese - inserting 1000 documents. first: Category:Curling competitions in France and last: La Salle Parish, Louisiana +[2018-02-13T00:35:27.297] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:35:27.326] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:35:27.334] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:35:27.363] [INFO] cheese - inserting 1000 documents. first: All the woo in the world and last: Category:Uzbekistani classical pianists +[2018-02-13T00:35:27.394] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:35:27.465] [INFO] cheese - inserting 1000 documents. first: Bad Elk v. U.S. and last: Aq Bolagh Rural District +[2018-02-13T00:35:27.498] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:35:27.571] [INFO] cheese - inserting 1000 documents. first: Fubuki Shirou and last: Andrea Cipressa +[2018-02-13T00:35:27.605] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:35:27.613] [INFO] cheese - inserting 1000 documents. first: V. O. Key Jr. and last: Wikipedia:Articles for deletion/Video game proponent +[2018-02-13T00:35:27.626] [INFO] cheese - inserting 1000 documents. first: GNTC and last: NarNarayan +[2018-02-13T00:35:27.662] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:35:27.693] [INFO] cheese - inserting 1000 documents. first: Mayorship of Rob Ford and last: Category:Scientists from Goa +[2018-02-13T00:35:27.674] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:35:27.717] [INFO] cheese - inserting 1000 documents. first: 2009-10 Pittsburgh Panthers women's basketball team and last: Pictures of the Floating World +[2018-02-13T00:35:27.740] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:35:27.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PRONUNCIATION and last: Wikipedia:Articles for deletion/Mike Hines +[2018-02-13T00:35:27.773] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:35:27.810] [INFO] cheese - inserting 1000 documents. first: Vermicious Knids and last: 1982 WAFL season +[2018-02-13T00:35:27.825] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:35:27.849] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:35:28.007] [INFO] cheese - inserting 1000 documents. first: TDM-GCC and last: Template:Canadian election result/pickup +[2018-02-13T00:35:28.013] [INFO] cheese - inserting 1000 documents. first: Bedecs and last: Aingya, Tantabin +[2018-02-13T00:35:28.039] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:35:28.077] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:35:28.111] [INFO] cheese - inserting 1000 documents. first: Historical record archives of FC Dynamo Kyiv and last: Spear-Bearer +[2018-02-13T00:35:28.130] [INFO] cheese - inserting 1000 documents. first: Palos (TV series) and last: And When Did You Last See Your Father? +[2018-02-13T00:35:28.211] [INFO] cheese - inserting 1000 documents. first: Null picture and last: Pat Harrington Sr +[2018-02-13T00:35:28.198] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:35:28.220] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:35:28.256] [INFO] cheese - inserting 1000 documents. first: Bugil Girls' High School and last: Cliffs notes +[2018-02-13T00:35:28.306] [INFO] cheese - inserting 1000 documents. first: Category:Olympic table tennis players of Argentina and last: Hart Plain +[2018-02-13T00:35:28.320] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:35:28.325] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:35:28.393] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:35:28.458] [INFO] cheese - inserting 1000 documents. first: ¡Alabadle! and last: Morristown Metropolitan Statistical Area +[2018-02-13T00:35:28.481] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:35:28.580] [INFO] cheese - inserting 1000 documents. first: Joseph Mitchell (city manager) and last: Subaša +[2018-02-13T00:35:28.586] [INFO] cheese - inserting 1000 documents. first: Aingzauk and last: Michio kaku +[2018-02-13T00:35:28.586] [INFO] cheese - inserting 1000 documents. first: Torrington by-election, 1958 and last: Murmur of the heart +[2018-02-13T00:35:28.610] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:35:28.617] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:35:28.627] [INFO] cheese - inserting 1000 documents. first: Eleutherine and last: Ararat Cement +[2018-02-13T00:35:28.646] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:35:28.672] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:35:28.715] [INFO] cheese - inserting 1000 documents. first: Nerinckx, Charles and last: Category:Politics of County Kerry +[2018-02-13T00:35:28.735] [INFO] cheese - batch complete in: 0.254 secs +[2018-02-13T00:35:28.796] [INFO] cheese - inserting 1000 documents. first: Template:Events at the 2013 Asian Youth Games and last: Shahrestanak, Zanjan +[2018-02-13T00:35:28.837] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:35:28.851] [INFO] cheese - inserting 1000 documents. first: Music of the heart and last: Lei Aurea +[2018-02-13T00:35:28.882] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:35:28.888] [INFO] cheese - inserting 1000 documents. first: Category:PlayStation 2 peripherals and last: Ditfurt +[2018-02-13T00:35:28.904] [INFO] cheese - inserting 1000 documents. first: Indiana State Road 269 and last: Archduke ferdinand zvonimir of austria +[2018-02-13T00:35:28.909] [INFO] cheese - inserting 1000 documents. first: Dinsmoor, Samuel and last: Micah Lea'alafa +[2018-02-13T00:35:28.938] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:35:28.946] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:35:28.950] [INFO] cheese - inserting 1000 documents. first: Comparison of mobile IRC clients and last: File:Overseas Property TV.svg +[2018-02-13T00:35:28.955] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:35:28.993] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:35:29.056] [INFO] cheese - inserting 1000 documents. first: File:Resolution (Hamiet Bluiett album).jpg and last: Gjysylkanë +[2018-02-13T00:35:29.099] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:35:29.168] [INFO] cheese - inserting 1000 documents. first: Sahr Satana and last: File:The Big Bang Single.jpg +[2018-02-13T00:35:29.195] [INFO] cheese - inserting 1000 documents. first: Archduke franz ferdinand of austria and last: Arrondissement of belley +[2018-02-13T00:35:29.208] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:35:29.217] [INFO] cheese - inserting 1000 documents. first: Piano-Rag-Music and last: Canal Days Marine Heritage Festival +[2018-02-13T00:35:29.218] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T00:35:29.260] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:35:29.273] [INFO] cheese - inserting 1000 documents. first: CfBT Education Trust and last: Son of Sam (EP) +[2018-02-13T00:35:29.305] [INFO] cheese - inserting 1000 documents. first: Faro de Punta Higuero and last: Wikipedia:WikiProject Wikibundle/Icon +[2018-02-13T00:35:29.314] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:35:29.347] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:35:29.375] [INFO] cheese - inserting 1000 documents. first: Arrondissement of bergerac and last: Aslackby and laughton +[2018-02-13T00:35:29.398] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:35:29.459] [INFO] cheese - inserting 1000 documents. first: Fernando Stahelin and last: Les Fonts (FGC) +[2018-02-13T00:35:29.497] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:35:29.512] [INFO] cheese - inserting 1000 documents. first: EADS SPACE and last: Wikipedia:Votes for deletion/Nejaa Halcyon +[2018-02-13T00:35:29.540] [INFO] cheese - inserting 1000 documents. first: Spes Utia Island and last: Felsodetrehem +[2018-02-13T00:35:29.585] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:35:29.636] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:35:29.663] [INFO] cheese - inserting 1000 documents. first: Category:Airports in Balearic Islands and last: David Briggs (composer) +[2018-02-13T00:35:29.705] [INFO] cheese - inserting 1000 documents. first: Farariana and last: More Greatest Hits of the Monkees +[2018-02-13T00:35:29.736] [INFO] cheese - inserting 1000 documents. first: File:Varian's War.jpg and last: The Difference (Nick Jonas song) +[2018-02-13T00:35:29.761] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:35:29.781] [INFO] cheese - inserting 1000 documents. first: National Association of Old IRA and last: Half angle equations +[2018-02-13T00:35:29.797] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:35:29.838] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:35:29.856] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:35:30.130] [INFO] cheese - inserting 1000 documents. first: File:DCPLlogo.png and last: Mazra'eh-ye Sabz Dasht +[2018-02-13T00:35:30.183] [INFO] cheese - inserting 1000 documents. first: Stella Kilonzo and last: DXBB +[2018-02-13T00:35:30.261] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:35:30.283] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:35:30.334] [INFO] cheese - inserting 1000 documents. first: Malcolm Betruger and last: File:Herbertbrownstein2.jpg +[2018-02-13T00:35:30.338] [INFO] cheese - inserting 1000 documents. first: Old Fall River Road and last: Nikolay Kolesov +[2018-02-13T00:35:30.372] [INFO] cheese - inserting 1000 documents. first: Half-angle equations and last: Ying-yuan Lee +[2018-02-13T00:35:30.377] [INFO] cheese - inserting 1000 documents. first: Bern Psychomachia and last: Blue Bloods (season 7) +[2018-02-13T00:35:30.379] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:35:30.381] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:35:30.414] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:35:30.453] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:35:30.466] [INFO] cheese - inserting 1000 documents. first: Eddie Hart (athlete) and last: Category:1460s births +[2018-02-13T00:35:30.526] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T00:35:30.676] [INFO] cheese - inserting 1000 documents. first: Roland Frasier and last: Wikipedia:Articles for deletion/TestMP +[2018-02-13T00:35:30.734] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:35:30.739] [INFO] cheese - inserting 1000 documents. first: Heartstrings (TV series) and last: Template:Chadian presidential election, 2011 +[2018-02-13T00:35:30.791] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:35:30.809] [INFO] cheese - inserting 1000 documents. first: Ken Smith (politician) and last: United States Virgin Islands Democratic caucuses, 2016 +[2018-02-13T00:35:30.813] [INFO] cheese - inserting 1000 documents. first: File:WhoIAmHatesWhoIveBeen.jpg and last: WSTQ FM +[2018-02-13T00:35:30.842] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:35:30.858] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:35:30.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/royalunibrew.com and last: Cycles (Doobies) +[2018-02-13T00:35:30.906] [INFO] cheese - inserting 1000 documents. first: Moldova–Malta relations and last: American Board of Dermatology +[2018-02-13T00:35:30.938] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:35:30.963] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:35:31.118] [INFO] cheese - inserting 1000 documents. first: Category:Animal anatomy stubs and last: Category:1967 establishments in Iceland +[2018-02-13T00:35:31.123] [INFO] cheese - inserting 1000 documents. first: Category:1460s deaths and last: Warnia coat of arms +[2018-02-13T00:35:31.130] [INFO] cheese - inserting 1000 documents. first: Vereinigte Astronomische Gesellschaft and last: Australasian journal of philosophy +[2018-02-13T00:35:31.146] [INFO] cheese - inserting 1000 documents. first: Beitou Museum and last: Wikipedia:WikiProject Spam/LinkReports/biggsltd.com +[2018-02-13T00:35:31.149] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:35:31.156] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:35:31.171] [INFO] cheese - inserting 1000 documents. first: United States Virgin Islands Republican caucus, 2016 and last: 1901 (disambiguation) +[2018-02-13T00:35:31.180] [INFO] cheese - inserting 1000 documents. first: Convoy of death and last: Short Sandringham & Seaforth +[2018-02-13T00:35:31.198] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:35:31.201] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:35:31.229] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:35:31.237] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:35:31.340] [INFO] cheese - inserting 1000 documents. first: James Mills (disambiguation) and last: Docosatetraenyl ethanolamide +[2018-02-13T00:35:31.399] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:35:31.469] [INFO] cheese - inserting 1000 documents. first: Australasian society for computers in learning in tertiary education and last: Category:German Navy ship names +[2018-02-13T00:35:31.497] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:35:31.568] [INFO] cheese - inserting 1000 documents. first: Category:United States Baseball League players and last: United States v. Camacho +[2018-02-13T00:35:31.630] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:35:31.720] [INFO] cheese - inserting 1000 documents. first: Spanish art and last: 2006 FA Cup Final +[2018-02-13T00:35:31.735] [INFO] cheese - inserting 1000 documents. first: Anglican Diocese of Argentina and last: Thomas Cook's Rugby Club +[2018-02-13T00:35:31.752] [INFO] cheese - inserting 1000 documents. first: Category:Bachman-Turner Overdrive albums and last: File:Qaeda in Azzan.jpg +[2018-02-13T00:35:31.773] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:35:31.793] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:35:31.807] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:35:31.816] [INFO] cheese - inserting 1000 documents. first: Hadi Bargizar and last: Sanjay Brijkishorlal Nirupam +[2018-02-13T00:35:31.850] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:35:31.851] [INFO] cheese - inserting 1000 documents. first: Kiss My Grass: A Hillbilly Tribute to Kiss and last: FURB +[2018-02-13T00:35:31.899] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:35:31.901] [INFO] cheese - inserting 1000 documents. first: Churumuco and last: Saint-Vincent-sur-Oust +[2018-02-13T00:35:31.942] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:35:31.966] [INFO] cheese - inserting 1000 documents. first: Category:Peninsulas of Livingston Island and last: List of English Sport Shooters +[2018-02-13T00:35:32.004] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:35:32.124] [INFO] cheese - inserting 1000 documents. first: Frot-Laffly armoured roller and last: Odise Rroshi +[2018-02-13T00:35:32.138] [INFO] cheese - inserting 1000 documents. first: A Veiga and last: Factorial number +[2018-02-13T00:35:32.156] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:35:32.172] [INFO] cheese - inserting 1000 documents. first: Walnut Spring and last: File:TheWoodentops.jpg +[2018-02-13T00:35:32.181] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:35:32.222] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:35:32.241] [INFO] cheese - inserting 1000 documents. first: Vela Blagoeva and last: Geographical Society of Philadelphia +[2018-02-13T00:35:32.287] [INFO] cheese - inserting 1000 documents. first: File:B'z TBPII.jpg and last: John Frisell +[2018-02-13T00:35:32.287] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:35:32.334] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:35:32.405] [INFO] cheese - inserting 1000 documents. first: Aalborg BK and last: Monno +[2018-02-13T00:35:32.408] [INFO] cheese - inserting 1000 documents. first: Hattingen Mitte station and last: Spain Peak +[2018-02-13T00:35:32.443] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:35:32.456] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:35:32.483] [INFO] cheese - inserting 1000 documents. first: Heronries and last: Category:6th arrondissement of Lyon +[2018-02-13T00:35:32.523] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:35:32.542] [INFO] cheese - inserting 1000 documents. first: Massingham and last: HD 129685 +[2018-02-13T00:35:32.599] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:35:32.758] [INFO] cheese - inserting 1000 documents. first: Aphelion (Dave Rempis album) and last: UAW–DaimlerChrysler 400 +[2018-02-13T00:35:32.814] [INFO] cheese - inserting 1000 documents. first: Glenn Haynes and last: Cherry Hill Road (Calverton–College Park, Maryland) +[2018-02-13T00:35:32.826] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:35:32.868] [INFO] cheese - inserting 1000 documents. first: Brittany Byrnes and last: Shut Up, You Fucking Baby! +[2018-02-13T00:35:32.888] [INFO] cheese - inserting 1000 documents. first: Daniele Brusaschetto and last: File:Quarter Obverse 2010.png +[2018-02-13T00:35:32.895] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:35:32.924] [INFO] cheese - inserting 1000 documents. first: Etroussat and last: Erythromycin A +[2018-02-13T00:35:32.961] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:35:32.974] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:35:32.991] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:35:33.065] [INFO] cheese - inserting 1000 documents. first: Virginia Secondary Route 716 (Fairfax County) and last: Caneaught Creek +[2018-02-13T00:35:33.107] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:35:33.116] [INFO] cheese - inserting 1000 documents. first: James Stanhope, 7th Earl Stanhope and last: Sineus and Truvor +[2018-02-13T00:35:33.184] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:35:33.218] [INFO] cheese - inserting 1000 documents. first: JHQ Rheindahlen Bombing 1987 and last: EC 1.17.1.8 +[2018-02-13T00:35:33.250] [INFO] cheese - inserting 1000 documents. first: Constellation Family and last: Wikipedia:Articles for deletion/Gary Levy +[2018-02-13T00:35:33.256] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:35:33.284] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:35:33.321] [INFO] cheese - inserting 1000 documents. first: Gatton family and last: U6atac minor spliceosomal RNA +[2018-02-13T00:35:33.334] [INFO] cheese - inserting 1000 documents. first: File:Chicago Teachers Union.jpg and last: Fair Park Coliseum (Dallas, TX) +[2018-02-13T00:35:33.359] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:35:33.377] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:35:33.427] [INFO] cheese - inserting 1000 documents. first: File:KylieXCover.png and last: Marbury Reedbed Nature Reserve +[2018-02-13T00:35:33.444] [INFO] cheese - inserting 1000 documents. first: EC 1.1.1.212 and last: Category:Burials at North Road Cemetery +[2018-02-13T00:35:33.469] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T00:35:33.482] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:35:33.551] [INFO] cheese - inserting 1000 documents. first: US Post Office-Reno Main and last: Brunswick County Airport +[2018-02-13T00:35:33.576] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:35:33.686] [INFO] cheese - inserting 1000 documents. first: Pensionärernas Riksorganisation and last: Dearne District Light Railway +[2018-02-13T00:35:33.691] [INFO] cheese - inserting 1000 documents. first: Naman Ojha and last: Burhøns +[2018-02-13T00:35:33.702] [INFO] cheese - inserting 1000 documents. first: Baron de Hirsch Cemetery, Halifax and last: Dassera +[2018-02-13T00:35:33.727] [INFO] cheese - inserting 1000 documents. first: Dexchlorpheniramine and last: Triple Net Lease +[2018-02-13T00:35:33.728] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:35:33.735] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:35:33.768] [INFO] cheese - inserting 1000 documents. first: Neil Davies (disambiguation) and last: Wikipedia:GLAM/National Railway Museum/Tab header +[2018-02-13T00:35:33.778] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:35:33.808] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:35:33.815] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:35:33.908] [INFO] cheese - inserting 1000 documents. first: Night of Champions and last: C.C.I.A.A. +[2018-02-13T00:35:33.931] [INFO] cheese - inserting 1000 documents. first: Catspaw (TV series) and last: SS Caesarea +[2018-02-13T00:35:33.950] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:35:33.963] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:35:34.115] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2009 May 26 and last: Wikipedia:Articles for deletion/Nicolette DuClare +[2018-02-13T00:35:34.131] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Divisions of the Galactic Empire (Star Wars) and last: Template:Bay class minesweeper +[2018-02-13T00:35:34.167] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:35:34.181] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:35:34.214] [INFO] cheese - inserting 1000 documents. first: Coleophora bidens and last: Körösmart +[2018-02-13T00:35:34.275] [INFO] cheese - inserting 1000 documents. first: Juha Pasoja and last: Čajniče +[2018-02-13T00:35:34.370] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:35:34.388] [INFO] cheese - inserting 1000 documents. first: Eishō (Muromachi period) and last: Nottingham Girls' High School +[2018-02-13T00:35:34.411] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:35:34.472] [INFO] cheese - inserting 1000 documents. first: Raphèl maì amèche zabì almi and last: Pureness +[2018-02-13T00:35:34.510] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:35:34.537] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:35:34.542] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Adirondack (train) and last: G. V. T. Matthews +[2018-02-13T00:35:34.608] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:35:34.685] [INFO] cheese - inserting 1000 documents. first: Sister killer and last: Sunbury Festival +[2018-02-13T00:35:34.712] [INFO] cheese - inserting 1000 documents. first: Genlisea violacea and last: Wikipedia:Suspected sock puppets/86.92.134.171 +[2018-02-13T00:35:34.752] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:35:34.795] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:35:34.911] [INFO] cheese - inserting 1000 documents. first: Tenkegörbed and last: 2010 Maldives FA Cup +[2018-02-13T00:35:34.917] [INFO] cheese - inserting 1000 documents. first: File:Dinosaur-Planet2.jpg and last: El pez que fuma +[2018-02-13T00:35:34.937] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 August 19 and last: Prodenia synstictis +[2018-02-13T00:35:34.974] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:35:34.984] [INFO] cheese - inserting 1000 documents. first: Draft:Cecil E. Harris and last: Ed Bacon (episcopal priest) +[2018-02-13T00:35:34.985] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:35:34.990] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:35:35.073] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:35:35.105] [INFO] cheese - inserting 1000 documents. first: Dear Diary (disambiguation) and last: …Ich töte mich… +[2018-02-13T00:35:35.125] [INFO] cheese - inserting 1000 documents. first: Art clay silver and last: South Vacherie +[2018-02-13T00:35:35.143] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:35:35.191] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:35:35.230] [INFO] cheese - inserting 1000 documents. first: C. J. Kemp and last: System file checker +[2018-02-13T00:35:35.286] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:35:35.361] [INFO] cheese - inserting 1000 documents. first: Croatia national rugby union team (sevens) and last: Category:Castros in Portugal +[2018-02-13T00:35:35.364] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tripper.com and last: Love Valour Compassion +[2018-02-13T00:35:35.388] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:35:35.405] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:35:35.431] [INFO] cheese - inserting 1000 documents. first: Yaakov Kedmi and last: Échard +[2018-02-13T00:35:35.476] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:35:35.501] [INFO] cheese - inserting 1000 documents. first: File:C-j-murray-1880.jpg and last: Maria new +[2018-02-13T00:35:35.520] [INFO] cheese - inserting 1000 documents. first: …I Believe in Humility and last: Lethe Vallis +[2018-02-13T00:35:35.591] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:35:35.602] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:35:35.675] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change (Sugababes song) and last: Template:F1 cars 1962 +[2018-02-13T00:35:35.745] [INFO] cheese - inserting 1000 documents. first: File:Amara Muzik Logo.png and last: Manfredi, Carlo +[2018-02-13T00:35:35.752] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:35:35.797] [INFO] cheese - inserting 1000 documents. first: Patricia Tallman and last: Gen (Street Fighter) +[2018-02-13T00:35:35.853] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:35:35.964] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:35:36.036] [INFO] cheese - inserting 1000 documents. first: Alauddin Khalji and last: Karaszó +[2018-02-13T00:35:36.116] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/December 7, 2006 and last: Gateside +[2018-02-13T00:35:36.135] [INFO] cheese - inserting 1000 documents. first: Chamberless long cairns and last: Mataguayo language +[2018-02-13T00:35:36.149] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:35:36.190] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:35:36.190] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:35:36.220] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Poland-related articles by quality/130 and last: Theravil Aru +[2018-02-13T00:35:36.276] [INFO] cheese - inserting 1000 documents. first: Category:Porsgrunn and last: Fi zilal al-Qur'an +[2018-02-13T00:35:36.279] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:35:36.344] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:35:36.423] [INFO] cheese - inserting 1000 documents. first: Moller, Carl and last: File:You Took the Words Right out of My Mouth by Meat Loaf US vinyl.jpg +[2018-02-13T00:35:36.470] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:35:36.516] [INFO] cheese - inserting 1000 documents. first: Kisháza and last: Badai Pasti Berlalu +[2018-02-13T00:35:36.558] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:35:36.605] [INFO] cheese - inserting 1000 documents. first: Mirza Khanlu and last: Category:1993 establishments in Puerto Rico +[2018-02-13T00:35:36.634] [INFO] cheese - inserting 1000 documents. first: Mourad Moose Topalian and last: Louis-Jules Barbon Mancini Mazarini, duc de Nivernais +[2018-02-13T00:35:36.645] [INFO] cheese - inserting 1000 documents. first: Digimon Adventure and last: Medium of instruction +[2018-02-13T00:35:36.645] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:35:36.664] [INFO] cheese - inserting 1000 documents. first: Kyle Veris and last: Titusville High School +[2018-02-13T00:35:36.676] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:35:36.678] [INFO] cheese - inserting 1000 documents. first: Goru River and last: Wikipedia:Articles for deletion/Thomas and friends video - release +[2018-02-13T00:35:36.727] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:35:36.730] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:35:36.736] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:35:36.958] [INFO] cheese - inserting 1000 documents. first: Chuymani and last: Mamie Phipps Clark +[2018-02-13T00:35:36.985] [INFO] cheese - inserting 1000 documents. first: Category:Sexual harassment and last: Fifth gender +[2018-02-13T00:35:37.010] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:35:37.071] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:35:37.107] [INFO] cheese - inserting 1000 documents. first: Qeshlaq-e Shah Khanem Ali Borat and last: Prechlau +[2018-02-13T00:35:37.130] [INFO] cheese - inserting 1000 documents. first: Zhonghe, Taipei and last: Eats Darkness +[2018-02-13T00:35:37.166] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:35:37.198] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:35:37.293] [INFO] cheese - inserting 1000 documents. first: EMI, Ltd. and last: Category:Insurance companies of Bermuda +[2018-02-13T00:35:37.302] [INFO] cheese - inserting 1000 documents. first: Narrowleaf Lupine and last: Arturo von Vacano +[2018-02-13T00:35:37.365] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:35:37.368] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:35:37.423] [INFO] cheese - inserting 1000 documents. first: Olt county and last: Basilicas +[2018-02-13T00:35:37.436] [INFO] cheese - inserting 1000 documents. first: Nasir Siddiqi and last: Black sassafras +[2018-02-13T00:35:37.472] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:35:37.485] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:35:37.578] [INFO] cheese - inserting 1000 documents. first: Template:Project section header/doc and last: File:The Impossible Dream Richard & Adam cover.png +[2018-02-13T00:35:37.584] [INFO] cheese - inserting 1000 documents. first: The Armchairs and last: Chattanooga News–Free Press +[2018-02-13T00:35:37.626] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:35:37.673] [INFO] cheese - inserting 1000 documents. first: Rajya Sabha (Tamil Nadu) and last: Orthodoxos Ioannou +[2018-02-13T00:35:37.695] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:35:37.765] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:35:37.813] [INFO] cheese - inserting 1000 documents. first: Basilinna and last: Pilawa Dolna +[2018-02-13T00:35:37.897] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:35:37.909] [INFO] cheese - inserting 1000 documents. first: Oliver's sassafras and last: Woodrow Wilson School, Princeton University +[2018-02-13T00:35:37.960] [INFO] cheese - inserting 1000 documents. first: Eaten Alive and last: John Crowell +[2018-02-13T00:35:37.974] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:35:38.058] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:35:38.221] [INFO] cheese - inserting 1000 documents. first: Category:1474 births and last: Cléo de Merode +[2018-02-13T00:35:38.237] [INFO] cheese - inserting 1000 documents. first: Batman (servant) and last: 2013–14 Saint Mary's Gaels men's basketball team +[2018-02-13T00:35:38.287] [INFO] cheese - inserting 1000 documents. first: A PFG 1937-38 and last: Midoil, California +[2018-02-13T00:35:38.308] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:35:38.311] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:35:38.333] [INFO] cheese - inserting 1000 documents. first: Isidor Schneider and last: Mount Comfort Airport +[2018-02-13T00:35:38.348] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:35:38.388] [INFO] cheese - inserting 1000 documents. first: Prose fiction and last: File:Ancientasiaminor.jpg +[2018-02-13T00:35:38.420] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:35:38.442] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:35:38.572] [INFO] cheese - inserting 1000 documents. first: Diana Natalicio and last: File:DriveTime logo.jpg +[2018-02-13T00:35:38.621] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:35:38.692] [INFO] cheese - inserting 1000 documents. first: 1951 24 Hours of Le Mans and last: Human left lung +[2018-02-13T00:35:38.721] [INFO] cheese - inserting 1000 documents. first: Robert Sitwell and last: Blennidus tenenbaumi +[2018-02-13T00:35:38.763] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:35:38.812] [INFO] cheese - inserting 1000 documents. first: Guanica Light and last: Piloswine (Pokémon) +[2018-02-13T00:35:38.837] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:35:38.878] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:35:38.979] [INFO] cheese - inserting 1000 documents. first: Love Is the Song We Sing: San Francisco Nuggets 1965–1970 and last: Wikipedia:WikiProject Spam/LinkReports/shitxxx.com +[2018-02-13T00:35:39.015] [INFO] cheese - inserting 1000 documents. first: Are You There, Chelsea? and last: Staatsbank der DDR +[2018-02-13T00:35:39.026] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:35:39.031] [INFO] cheese - inserting 1000 documents. first: Jules-Elie Delaunay and last: File:Young Adam movie.jpg +[2018-02-13T00:35:39.100] [INFO] cheese - inserting 1000 documents. first: Category:1551 establishments in the Republic of Venice and last: Užička Crna Gora +[2018-02-13T00:35:39.103] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:35:39.106] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:35:39.127] [INFO] cheese - inserting 1000 documents. first: Kim Hyun-jung (disambiguation) and last: Sony MCL-06T +[2018-02-13T00:35:39.172] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:35:39.176] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:35:39.378] [INFO] cheese - inserting 1000 documents. first: The Woman's Bible and last: Face Off (album) +[2018-02-13T00:35:39.413] [INFO] cheese - inserting 1000 documents. first: Marie of Saxe-Coburg-Gotha and United Kingdom and last: Frith Street +[2018-02-13T00:35:39.423] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:35:39.425] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cypressbayhighschool.org and last: File:Clase aparte album cover.jpg +[2018-02-13T00:35:39.483] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:35:39.496] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:35:39.560] [INFO] cheese - inserting 1000 documents. first: Template:Norway football squad 1936 Summer Olympics and last: Gertrude of Flanders (1112–1186) +[2018-02-13T00:35:39.570] [INFO] cheese - inserting 1000 documents. first: Nieuport-Delage NiD 32RH and last: Angut-e Gharbi Rural District +[2018-02-13T00:35:39.595] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:35:39.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Bimini and last: Comedy-thriller +[2018-02-13T00:35:39.618] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:35:39.660] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:35:39.768] [INFO] cheese - inserting 1000 documents. first: Category:Holiness universities and colleges and last: File:Dhsmith.JPG +[2018-02-13T00:35:39.797] [INFO] cheese - inserting 1000 documents. first: SKP and last: File:The Donnas - Spend the Night.jpg +[2018-02-13T00:35:39.816] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:35:39.867] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:35:39.878] [INFO] cheese - inserting 1000 documents. first: Just a Little Harmless Sex and last: Assuristan +[2018-02-13T00:35:39.933] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:35:39.946] [INFO] cheese - inserting 1000 documents. first: Walter Reuther Central High School and last: Volodymyr Yezersky +[2018-02-13T00:35:40.009] [INFO] cheese - inserting 1000 documents. first: Russian battleship Revoliutsiia and last: Charles Percy Graham-Montgomery +[2018-02-13T00:35:40.011] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:35:40.030] [INFO] cheese - inserting 1000 documents. first: GoldlinQ and last: Category:Buildings and structures in Daggett County, Utah +[2018-02-13T00:35:40.057] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:35:40.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elizabeth II and last: Intercollegiate Fencing Conference of Southern California +[2018-02-13T00:35:40.122] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:35:40.176] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:35:40.230] [INFO] cheese - inserting 1000 documents. first: File:Dollywiki2.jpg and last: 1922 films +[2018-02-13T00:35:40.277] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:35:40.373] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality/19 and last: Portal:Baseball/Selected article/October, 2007 +[2018-02-13T00:35:40.476] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:35:40.545] [INFO] cheese - inserting 1000 documents. first: Logie, Dundee and last: Pulmonary barotrauma +[2018-02-13T00:35:40.591] [INFO] cheese - inserting 1000 documents. first: 1922 in cinema and last: The Carpentered Hen +[2018-02-13T00:35:40.703] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:35:40.721] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:35:40.756] [INFO] cheese - inserting 1000 documents. first: Midwest Fencing Conference and last: Category:Alcaldes of the Province of Cáceres +[2018-02-13T00:35:40.791] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:35:40.794] [INFO] cheese - inserting 1000 documents. first: Cliff 'Em All and last: River Gunboat +[2018-02-13T00:35:40.798] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Izard County, Arkansas and last: Pompeius +[2018-02-13T00:35:40.842] [INFO] cheese - inserting 1000 documents. first: William M. Ryan Sr. and last: Category:Rocketry stubs +[2018-02-13T00:35:40.873] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:35:40.888] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T00:35:40.930] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:35:41.034] [INFO] cheese - inserting 1000 documents. first: GayNZ.com and last: Wikipedia:Articles for deletion/Sailboat 4 logo +[2018-02-13T00:35:41.072] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:35:41.102] [INFO] cheese - inserting 1000 documents. first: 1976 ATP Buenos Aires - Singles and last: Growers Stadium +[2018-02-13T00:35:41.105] [INFO] cheese - inserting 1000 documents. first: 1952 24 Hours of LeMans and last: Baile Ailein +[2018-02-13T00:35:41.170] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:35:41.204] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:35:41.276] [INFO] cheese - inserting 1000 documents. first: Chelsea Maning and last: Victor Garcia de la Concha +[2018-02-13T00:35:41.338] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:35:41.392] [INFO] cheese - inserting 1000 documents. first: Category:Alcaldes of the Second Spanish Republic and last: Category:Wars of the Diadochi +[2018-02-13T00:35:41.430] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:35:41.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Webalbum and last: G.W. Reynolds +[2018-02-13T00:35:41.488] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:35:41.559] [INFO] cheese - inserting 1000 documents. first: Category:Regiments by war and last: File:Alvin T. Smith.png +[2018-02-13T00:35:41.566] [INFO] cheese - inserting 1000 documents. first: Candalides helenita and last: Jongblood Primary +[2018-02-13T00:35:41.576] [INFO] cheese - inserting 1000 documents. first: Immersion heater and last: Oland Brewery +[2018-02-13T00:35:41.614] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:35:41.620] [INFO] cheese - inserting 1000 documents. first: John B. Lange Middle School and last: File:LEAD Pakistan Logo.png +[2018-02-13T00:35:41.620] [INFO] cheese - inserting 1000 documents. first: Chicago Film Critics Association and last: Model building code +[2018-02-13T00:35:41.628] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:35:41.632] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:35:41.670] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:35:41.719] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:35:42.036] [INFO] cheese - inserting 1000 documents. first: G.V. Kromah and last: Newmans Weir +[2018-02-13T00:35:42.127] [INFO] cheese - inserting 1000 documents. first: Liquor Monopoly of Sweden and last: Category:2007 Southern Conference baseball season +[2018-02-13T00:35:42.139] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:35:42.274] [INFO] cheese - inserting 1000 documents. first: Ayuba Suleiman Diallo and last: Clepsydra Geyser +[2018-02-13T00:35:42.276] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:35:42.345] [INFO] cheese - inserting 1000 documents. first: Category:Conflicts in 1339 and last: Wikipedia:Articles for deletion/Georgia – South Africa relations +[2018-02-13T00:35:42.422] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:35:42.456] [INFO] cheese - inserting 1000 documents. first: Qeshlaq-e Barandaq and last: Africa News Service +[2018-02-13T00:35:42.508] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:35:42.538] [INFO] cheese - inserting 1000 documents. first: Church of St. Gregory the Great (New York City) and last: Wikipedia:WikiProject Spam/Local/getbig.com +[2018-02-13T00:35:42.607] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T00:35:42.679] [INFO] cheese - batch complete in: 1.047 secs +[2018-02-13T00:35:42.739] [INFO] cheese - inserting 1000 documents. first: Victrack and last: St George's German Lutheran Church +[2018-02-13T00:35:42.765] [INFO] cheese - inserting 1000 documents. first: Muscle contraction and last: Wikipedia:Articles for deletion/Spanglew +[2018-02-13T00:35:42.782] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:35:42.840] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T00:35:42.882] [INFO] cheese - inserting 1000 documents. first: Ryoma Baba and last: Josef Hauser (player) +[2018-02-13T00:35:42.933] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:35:42.970] [INFO] cheese - inserting 1000 documents. first: Tropical Depression One (2009) and last: File:ThinkBigCovers.jpg +[2018-02-13T00:35:42.982] [INFO] cheese - inserting 1000 documents. first: Lost on a Mountain in Maine and last: Thoughtform +[2018-02-13T00:35:43.044] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:35:43.047] [INFO] cheese - inserting 1000 documents. first: Julius Muthamia and last: Category:Populated places in the Engcobo Local Municipality +[2018-02-13T00:35:43.059] [INFO] cheese - inserting 1000 documents. first: Category:Townlands of County Monaghan and last: Miramichi Rural School +[2018-02-13T00:35:43.063] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:35:43.130] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:35:43.150] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:35:43.272] [INFO] cheese - inserting 1000 documents. first: Inter-University Seminar on Armed Forces and Society and last: The Flirting Widow +[2018-02-13T00:35:43.312] [INFO] cheese - inserting 1000 documents. first: Fix This Yard and last: I've Been In Love Before (song) +[2018-02-13T00:35:43.332] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:35:43.355] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:35:43.425] [INFO] cheese - inserting 1000 documents. first: Methylarginine and last: Template:GoldenGlobeBestSuppActorMotionPicture 1943–1960 +[2018-02-13T00:35:43.463] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:35:43.513] [INFO] cheese - inserting 1000 documents. first: T-minus and last: Herald Tribune +[2018-02-13T00:35:43.513] [INFO] cheese - inserting 1000 documents. first: Bakke and last: Palestine (region) +[2018-02-13T00:35:43.534] [INFO] cheese - inserting 1000 documents. first: Nelson Rural School and last: File:Drifters Poster.jpg +[2018-02-13T00:35:43.570] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:35:43.574] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in the Intsika Yethu Local Municipality and last: Philippines at the 2012 Asian Beach Games +[2018-02-13T00:35:43.580] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:35:43.600] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:35:43.638] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:35:43.700] [INFO] cheese - inserting 1000 documents. first: Carl Hugo Johansson and last: Miriam O'Callaghan +[2018-02-13T00:35:43.845] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:35:44.011] [INFO] cheese - inserting 1000 documents. first: NKFD and last: Submarine Squadron 3 +[2018-02-13T00:35:44.060] [INFO] cheese - inserting 1000 documents. first: Nathan (Prophet) and last: Template:WPAM +[2018-02-13T00:35:44.095] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:35:44.165] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:35:44.311] [INFO] cheese - inserting 1000 documents. first: Category:Years in Hamburg and last: 2013 Asian Athletics Championships – Women's heptathlon +[2018-02-13T00:35:44.327] [INFO] cheese - inserting 1000 documents. first: Courage Competition and last: The Lost +[2018-02-13T00:35:44.350] [INFO] cheese - inserting 1000 documents. first: Settignano, Desiderio da and last: Wikipedia:Help desk/Archives/2007 October 9 +[2018-02-13T00:35:44.365] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:35:44.387] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T00:35:44.505] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T00:35:44.534] [INFO] cheese - inserting 1000 documents. first: Panda Security and last: Weasel (disambiguation) +[2018-02-13T00:35:44.553] [INFO] cheese - inserting 1000 documents. first: Matlab Gonj J. B. High School and last: Forever Fever +[2018-02-13T00:35:44.665] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:35:44.716] [INFO] cheese - batch complete in: 1.116 secs +[2018-02-13T00:35:44.787] [INFO] cheese - inserting 1000 documents. first: PG-WPD and last: Pomus +[2018-02-13T00:35:44.822] [INFO] cheese - inserting 1000 documents. first: Maurice "The Rocket" Richard and last: Category:Houses completed in 1996 +[2018-02-13T00:35:44.842] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:35:44.875] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:35:44.903] [INFO] cheese - inserting 1000 documents. first: Men in Pink and last: Rufus and Flora Bates House +[2018-02-13T00:35:44.918] [INFO] cheese - inserting 1000 documents. first: And the Days We Chance Upon... and last: File:C&PVA.jpg +[2018-02-13T00:35:44.965] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T00:35:44.972] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:35:45.011] [INFO] cheese - inserting 1000 documents. first: Category:Visakhapatnam articles by quality and last: Club-tipped whorled wattle +[2018-02-13T00:35:45.033] [INFO] cheese - inserting 1000 documents. first: Red-chested goshawk and last: My Son The Fanatic +[2018-02-13T00:35:45.052] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:35:45.089] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:35:45.214] [INFO] cheese - inserting 1000 documents. first: SB203580 and last: Googol Hyperplex +[2018-02-13T00:35:45.215] [INFO] cheese - inserting 1000 documents. first: Radio BA and last: Descendants of Gautama Buddha +[2018-02-13T00:35:45.250] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:35:45.261] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:35:45.326] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese states and last: File:Amiga Defender of the Crown raid.png +[2018-02-13T00:35:45.341] [INFO] cheese - inserting 1000 documents. first: Thomas Gorman and last: Effective Lagrangian +[2018-02-13T00:35:45.422] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:35:45.430] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:35:45.457] [INFO] cheese - inserting 1000 documents. first: Enaliarctos barnesi and last: Adil Haider +[2018-02-13T00:35:45.510] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:35:45.518] [INFO] cheese - inserting 1000 documents. first: Furio Piccirilli and last: Mara Montes +[2018-02-13T00:35:45.607] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:35:45.633] [INFO] cheese - inserting 1000 documents. first: Nisha Patel-Nasri and last: Adgandestrius +[2018-02-13T00:35:45.719] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:35:45.825] [INFO] cheese - inserting 1000 documents. first: File:Groovemasters Reed Juber.jpg and last: IBM - International Business Machines +[2018-02-13T00:35:45.856] [INFO] cheese - inserting 1000 documents. first: Category:Americans convicted of spying for Cuba and last: Wikipedia:Articles for deletion/Yonder (comics) +[2018-02-13T00:35:45.886] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:35:45.917] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:35:45.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Main moon productions and last: File:BalticRibbon.png +[2018-02-13T00:35:45.968] [INFO] cheese - inserting 1000 documents. first: James Morton (Alpha Phi Alpha) and last: H. Smith (crater) +[2018-02-13T00:35:46.003] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:35:46.011] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:35:46.077] [INFO] cheese - inserting 1000 documents. first: NetDevil and last: Müllerebe +[2018-02-13T00:35:46.148] [INFO] cheese - inserting 1000 documents. first: Lower Saint Regis Lake and last: Wynnewood Road (NHSL station) +[2018-02-13T00:35:46.152] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:35:46.206] [INFO] cheese - inserting 1000 documents. first: Vladimir Hutt and last: Onychospina +[2018-02-13T00:35:46.210] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:35:46.267] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:35:46.332] [INFO] cheese - inserting 1000 documents. first: Religion and culture in ancient Iran and last: Jakob Erbar +[2018-02-13T00:35:46.346] [INFO] cheese - inserting 1000 documents. first: Harrington (crater) and last: File:Buddy Arnold.jpg +[2018-02-13T00:35:46.396] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:35:46.398] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Douglas County, Wisconsin and last: Shandao Temple +[2018-02-13T00:35:46.402] [INFO] cheese - inserting 1000 documents. first: José Castro and last: Sirkeci +[2018-02-13T00:35:46.401] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:35:46.460] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:35:46.472] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:35:46.630] [INFO] cheese - inserting 1000 documents. first: Jordan Township, Jasper County, Indiana and last: Li Sheng (artist) +[2018-02-13T00:35:46.660] [INFO] cheese - inserting 1000 documents. first: George Villiers Duke of Buckingham and last: National Register of Historic Places listings in Missouri, Counties D-I +[2018-02-13T00:35:46.672] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:35:46.695] [INFO] cheese - inserting 1000 documents. first: Roger Goupillières and last: Book:Gamma Rays +[2018-02-13T00:35:46.704] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:35:46.744] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:35:46.751] [INFO] cheese - inserting 1000 documents. first: Stratin and last: Corridor D (Europe) +[2018-02-13T00:35:46.780] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:35:46.830] [INFO] cheese - inserting 1000 documents. first: Azal Espanhol and last: 1954 British Grand Prix +[2018-02-13T00:35:46.904] [INFO] cheese - inserting 1000 documents. first: Template:Student project tutorial/core/project is live/DYK and last: Anak ni Zuma +[2018-02-13T00:35:46.905] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:35:46.932] [INFO] cheese - inserting 1000 documents. first: Portal:Thailand/WikiProjects and last: Madison International Speedway +[2018-02-13T00:35:47.004] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:35:47.021] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:35:47.139] [INFO] cheese - inserting 1000 documents. first: Tricuspid (valve) stenosis and last: Kingdom of Aethelmearc +[2018-02-13T00:35:47.188] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Missouri, Counties J-K and last: Siege of Genoa (1747) +[2018-02-13T00:35:47.219] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:35:47.239] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:35:47.270] [INFO] cheese - inserting 1000 documents. first: Robert L. Wilson House and last: Mostafa Al-Abbad +[2018-02-13T00:35:47.310] [INFO] cheese - inserting 1000 documents. first: Category:People from Suffern, New York and last: Wikipedia:Sockpuppet investigations/67.87.140.155 +[2018-02-13T00:35:47.323] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:35:47.371] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:35:47.448] [INFO] cheese - inserting 1000 documents. first: Bordello of Blood (song) and last: Eustixia pupula +[2018-02-13T00:35:47.479] [INFO] cheese - inserting 1000 documents. first: Category:Structure and last: The Wink (Seinfeld) +[2018-02-13T00:35:47.501] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:35:47.528] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:35:47.584] [INFO] cheese - inserting 1000 documents. first: Yo-Yo (album) and last: Wikipedia:Version 1.0 Editorial Team/Philosopher articles by quality/2 +[2018-02-13T00:35:47.594] [INFO] cheese - inserting 1000 documents. first: Valery Karnitsky and last: Napoléon Louis de Talleyrand-Périgord, duc de Valençay +[2018-02-13T00:35:47.604] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Kershaw County, South Carolina and last: File:Comedian-standup-ghuggi.JPG +[2018-02-13T00:35:47.637] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:35:47.655] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:35:47.659] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:35:47.755] [INFO] cheese - inserting 1000 documents. first: Bassa-Komo language and last: Sadeqabad, Fasa +[2018-02-13T00:35:47.799] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:35:47.826] [INFO] cheese - inserting 1000 documents. first: Portal:Language/Did you know/June 2006 and last: Porthcawl, Wales +[2018-02-13T00:35:47.873] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:35:47.956] [INFO] cheese - inserting 1000 documents. first: Bombay Scottish School, Powai and last: Wikipedia:Articles for deletion/One Beer +[2018-02-13T00:35:47.980] [INFO] cheese - inserting 1000 documents. first: Thelcteria and last: File:Boeing 727-LAB cropped.jpg +[2018-02-13T00:35:47.999] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:35:48.001] [INFO] cheese - inserting 1000 documents. first: Category:1888 establishments in Hong Kong and last: Radio Clash +[2018-02-13T00:35:48.044] [INFO] cheese - inserting 1000 documents. first: Sheer heart attack and last: Ricardo Infante +[2018-02-13T00:35:48.042] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:35:48.066] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:35:48.131] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:35:48.192] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ceramoporidae and last: 3 Acts of God +[2018-02-13T00:35:48.243] [INFO] cheese - inserting 1000 documents. first: Pak Tjokro and last: Gallotia auaritae +[2018-02-13T00:35:48.295] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:35:48.354] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:35:48.712] [INFO] cheese - inserting 1000 documents. first: Scincogekkonomorph and last: Wikipedia:Articles for deletion/Anis Alamgir +[2018-02-13T00:35:48.776] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:35:48.801] [INFO] cheese - inserting 1000 documents. first: 2004 in Ghana and last: Wikipedia:WikiProject Spam/LinkReports/lensindia.com +[2018-02-13T00:35:48.854] [INFO] cheese - inserting 1000 documents. first: Yokoshiba Station and last: The Gauldal cathedral +[2018-02-13T00:35:48.854] [INFO] cheese - inserting 1000 documents. first: LG VX8350 and last: Rambo to Hell and Back +[2018-02-13T00:35:48.905] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T00:35:48.928] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:35:48.932] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T00:35:49.016] [INFO] cheese - inserting 1000 documents. first: Category:Medical and health organisations in Senegal and last: Ormond Beach Municipal (airport) +[2018-02-13T00:35:49.048] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:35:49.072] [INFO] cheese - inserting 1000 documents. first: William Bingham Compton, 6th Marquess of Northampton and last: Wikipedia:POTD column/June 17, 2006 +[2018-02-13T00:35:49.080] [INFO] cheese - inserting 1000 documents. first: Rose Tree and last: Bascanichthys bascanoides +[2018-02-13T00:35:49.112] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:35:49.124] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:35:49.280] [INFO] cheese - inserting 1000 documents. first: Kerala House and last: Issaquah Class ferry +[2018-02-13T00:35:49.293] [INFO] cheese - inserting 1000 documents. first: Portal:Michigan Highways/Selected picture/September 2012 and last: Template:C.D. Tondela +[2018-02-13T00:35:49.321] [INFO] cheese - inserting 1000 documents. first: Finlaggan and last: J. Dudley Goodlette +[2018-02-13T00:35:49.324] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:35:49.350] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:35:49.368] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:35:49.394] [INFO] cheese - inserting 1000 documents. first: Osaka International (airport) and last: Nickel Coin Mares' Standard Open NH Flat Race +[2018-02-13T00:35:49.448] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:35:49.584] [INFO] cheese - inserting 1000 documents. first: Sooty Sand-Eel and last: Category:Rural Districts of Sistan and Baluchestan Province +[2018-02-13T00:35:49.633] [INFO] cheese - inserting 1000 documents. first: 1954 German Grand Prix and last: Institutions of the European Union +[2018-02-13T00:35:49.657] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:35:49.701] [INFO] cheese - inserting 1000 documents. first: The Office (American TV series) and last: Will June +[2018-02-13T00:35:49.723] [INFO] cheese - batch complete in: 2.818 secs +[2018-02-13T00:35:49.743] [INFO] cheese - inserting 1000 documents. first: Template:Uw-vandal and last: Castle of Rozafa +[2018-02-13T00:35:49.755] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:35:49.771] [INFO] cheese - inserting 1000 documents. first: 1671 in poetry and last: Jack Cunliffe +[2018-02-13T00:35:49.782] [INFO] cheese - inserting 1000 documents. first: Akhtar Mohammed and last: Category:Funk dance +[2018-02-13T00:35:49.837] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:35:49.902] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:35:49.931] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:35:50.123] [INFO] cheese - inserting 1000 documents. first: File:MercyMe All of Creation.ogg and last: Tennessee Whiskey (album) +[2018-02-13T00:35:50.203] [INFO] cheese - inserting 1000 documents. first: File:Rupee's Valuation.jpg and last: Shaw Charity Classic +[2018-02-13T00:35:50.251] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:35:50.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wooburn Grange Country Club and last: Horst Bredekamp +[2018-02-13T00:35:50.368] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:35:50.572] [INFO] cheese - inserting 1000 documents. first: Advertising Media Scheduling and last: Wikipedia:Articles for deletion/Vsevolod Holubovych +[2018-02-13T00:35:50.621] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:35:50.672] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:35:50.722] [INFO] cheese - inserting 1000 documents. first: File:Bostik-brand.svg and last: Wikipedia:WikiProject Trains/ICC valuations/Reading, Marietta and Hanover Railroad +[2018-02-13T00:35:50.764] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:35:50.829] [INFO] cheese - inserting 1000 documents. first: Braniew and last: Category:Biota of Ireland +[2018-02-13T00:35:50.897] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T00:35:50.938] [INFO] cheese - inserting 1000 documents. first: Live in Allentown and last: Soo-Myun Kim +[2018-02-13T00:35:50.996] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:35:51.065] [INFO] cheese - inserting 1000 documents. first: 2002 European Grand Prix and last: Saint-Joseph (AOC) +[2018-02-13T00:35:51.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/operaincerta.it and last: Brian Wilson (systems scientist) +[2018-02-13T00:35:51.130] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T00:35:51.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Nickelodeon/Nicktoons task force/Recognized content and last: "The Man From the USSR" and other plays : With Two Essays on the Drama +[2018-02-13T00:35:51.176] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:35:51.178] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:35:51.278] [INFO] cheese - inserting 1000 documents. first: Nocton v Lord Ashburton and last: 2005 NRL Finals Series +[2018-02-13T00:35:51.342] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:35:51.386] [INFO] cheese - inserting 1000 documents. first: Anti-System and last: Template:Revúca District +[2018-02-13T00:35:51.412] [INFO] cheese - inserting 1000 documents. first: Hubert Shurtz and last: Sabah Chinese Association +[2018-02-13T00:35:51.444] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:35:51.482] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:35:51.561] [INFO] cheese - inserting 1000 documents. first: Category:Populated places on the Marikina River and last: File:Hen's Teeth and Horse's Toes.jpg +[2018-02-13T00:35:51.621] [INFO] cheese - inserting 1000 documents. first: "The Man from the USSR" and other Plays : With Two Essays on the Drama and last: Template:Yoram Gross +[2018-02-13T00:35:51.626] [INFO] cheese - batch complete in: 1.258 secs +[2018-02-13T00:35:51.684] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:35:51.693] [INFO] cheese - inserting 1000 documents. first: Dawid Moryc Apfelbaum and last: File:Laurajeanourswansongcover.jpg +[2018-02-13T00:35:51.761] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:35:51.808] [INFO] cheese - inserting 1000 documents. first: Winterthour (district) and last: Jawa (Indonesia) +[2018-02-13T00:35:51.868] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:35:51.879] [INFO] cheese - inserting 1000 documents. first: List of World War II war correspondents (1942-43) and last: Subinaghi +[2018-02-13T00:35:51.908] [INFO] cheese - inserting 1000 documents. first: Frangelico and last: Churchill River (Hudson Bay) +[2018-02-13T00:35:51.949] [INFO] cheese - inserting 1000 documents. first: File:Koolie Family.jpg and last: HuaiNanZi +[2018-02-13T00:35:51.961] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:35:52.003] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T00:35:52.044] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:35:52.074] [INFO] cheese - inserting 1000 documents. first: Kununurra Airport and last: Puchalapalli Sundaraiah +[2018-02-13T00:35:52.134] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:35:52.228] [INFO] cheese - inserting 1000 documents. first: John Rudolph Niernsee and last: Oakland Auditorium Arena +[2018-02-13T00:35:52.268] [INFO] cheese - inserting 1000 documents. first: Flux Pavillion and last: Mijikenda language +[2018-02-13T00:35:52.288] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:35:52.319] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:35:52.360] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Gargamel62/The Studio (Company) and last: Capparella +[2018-02-13T00:35:52.390] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:35:52.506] [INFO] cheese - inserting 1000 documents. first: Cirrhimuraena paucidens and last: File:Kate Ryan-Light in the Dark-single.jpg +[2018-02-13T00:35:52.536] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:35:52.583] [INFO] cheese - inserting 1000 documents. first: Category:Lists of United States placename etymology and last: Networking processors +[2018-02-13T00:35:52.608] [INFO] cheese - inserting 1000 documents. first: Yitzchak adlerstein and last: Wikipedia:WikiProject Spam/LinkReports/keith-koep.com +[2018-02-13T00:35:52.643] [INFO] cheese - inserting 1000 documents. first: Category:1924 establishments in Belgium and last: Communist Cambodia (disambiguation) +[2018-02-13T00:35:52.645] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:35:52.650] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:35:52.664] [INFO] cheese - inserting 1000 documents. first: USS LST-557 and last: Category:Top-importance Bengal articles +[2018-02-13T00:35:52.671] [INFO] cheese - inserting 1000 documents. first: Time-memory trade-off and last: KFFC +[2018-02-13T00:35:52.695] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:35:52.735] [INFO] cheese - inserting 1000 documents. first: Cappelluzzo and last: Category:Kosovar beauty pageant winners +[2018-02-13T00:35:52.743] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T00:35:52.748] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:35:52.782] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:35:52.841] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/expressdebanat.ro and last: Liotia atomus +[2018-02-13T00:35:52.882] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:35:53.009] [INFO] cheese - inserting 1000 documents. first: Glinica, Głogów County and last: Stara Góra +[2018-02-13T00:35:53.042] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Bengal articles and last: St John’s School, Kempston +[2018-02-13T00:35:53.062] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:35:53.076] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:35:53.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dimitri Spanoa and last: Chongtar +[2018-02-13T00:35:53.106] [INFO] cheese - inserting 1000 documents. first: Leopoldo de Gregorio, Marquis of Esquilache and last: File:UMassFive-logo.png +[2018-02-13T00:35:53.126] [INFO] cheese - inserting 1000 documents. first: Neusser Straße/Gürtel (KVB) and last: John Howard Clark +[2018-02-13T00:35:53.140] [INFO] cheese - inserting 1000 documents. first: Velocidad Total and last: Template:Long geological range +[2018-02-13T00:35:53.145] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:35:53.151] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:35:53.173] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:35:53.189] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:35:53.345] [INFO] cheese - inserting 1000 documents. first: You're Only Lonely and last: Samuel Balto +[2018-02-13T00:35:53.487] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:35:53.527] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia C-Class vital articles in Art and last: Justin Jones (guitarist) +[2018-02-13T00:35:53.622] [INFO] cheese - inserting 1000 documents. first: 99 North and last: Port of Chicago +[2018-02-13T00:35:53.648] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:35:53.690] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:35:53.750] [INFO] cheese - inserting 1000 documents. first: Gelae (tribe) and last: Nintendo 3DS line +[2018-02-13T00:35:53.752] [INFO] cheese - inserting 1000 documents. first: Category:Basketball templates by country and last: File:Shubhodrishti 2005 poster.jpg +[2018-02-13T00:35:53.799] [INFO] cheese - inserting 1000 documents. first: January 1910 Stanley Cup championship and last: Marco degli Ambrosi +[2018-02-13T00:35:53.835] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:35:53.837] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:35:53.893] [INFO] cheese - inserting 1000 documents. first: I Love 1976 and last: NES Zeldas +[2018-02-13T00:35:53.958] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:35:53.998] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:35:54.166] [INFO] cheese - inserting 1000 documents. first: Polly Burton and last: MOSI of Tampa +[2018-02-13T00:35:54.210] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:35:54.253] [INFO] cheese - inserting 1000 documents. first: China Railways QJ and last: Wikipedia:Vietnam +[2018-02-13T00:35:54.317] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:35:54.340] [INFO] cheese - inserting 1000 documents. first: Black Bindweed and last: Norma McCormick +[2018-02-13T00:35:54.341] [INFO] cheese - inserting 1000 documents. first: English (Evangelical) Lutheran Conference of Missouri and last: Commander's Call +[2018-02-13T00:35:54.349] [INFO] cheese - inserting 1000 documents. first: Fanlight Fanny and last: Ventral roots of the spinal nerves +[2018-02-13T00:35:54.389] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:35:54.394] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:35:54.399] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:35:54.449] [INFO] cheese - inserting 1000 documents. first: Westland-Yeovil and last: MV Leirna +[2018-02-13T00:35:54.492] [INFO] cheese - inserting 1000 documents. first: Famicom Zelda games and last: Chapeltoun, east ayrshire +[2018-02-13T00:35:54.495] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:35:54.549] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:35:54.588] [INFO] cheese - inserting 1000 documents. first: Missouri Courts and last: Kulshekar +[2018-02-13T00:35:54.633] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:35:54.656] [INFO] cheese - inserting 1000 documents. first: Granowice and last: Wikipedia:Articles for deletion/Noctis (Band) +[2018-02-13T00:35:54.697] [INFO] cheese - inserting 1000 documents. first: Category:1566 in the Philippines and last: Aalborg Symphony Orchestra +[2018-02-13T00:35:54.714] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:35:54.735] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:35:54.763] [INFO] cheese - inserting 1000 documents. first: Ventral root of the spinal nerve and last: D-glycerate:NAD+ oxidoreductase +[2018-02-13T00:35:54.853] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:35:54.936] [INFO] cheese - inserting 1000 documents. first: Râjleţu-Govora and last: Dinculesti +[2018-02-13T00:35:55.026] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:35:55.064] [INFO] cheese - inserting 1000 documents. first: Rr Lyrae Variables and last: Category:Ballet companies in Germany +[2018-02-13T00:35:55.097] [INFO] cheese - inserting 1000 documents. first: 4-phospho-D-erythronate:NAD+ 2-oxidoreductase and last: (R)-tetrahydroberberine:NADP+ oxidoreductase +[2018-02-13T00:35:55.109] [INFO] cheese - inserting 1000 documents. first: Vancouver 86ers and last: File:AbaBayefsky.png +[2018-02-13T00:35:55.113] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:35:55.117] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:35:55.179] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:35:55.267] [INFO] cheese - inserting 1000 documents. first: Hernando de Alvarado Tezozómoc and last: Vista(IIMB Fest) +[2018-02-13T00:35:55.289] [INFO] cheese - inserting 1000 documents. first: Etoile Haitienne and last: UDP-D-galacturonate:(1-4)-alpha-poly-D-galacturonate 4-alpha-D-galacturonosyltransferase +[2018-02-13T00:35:55.306] [INFO] cheese - batch complete in: 0.193 secs +[2018-02-13T00:35:55.323] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:35:55.360] [INFO] cheese - inserting 1000 documents. first: John M. Gearin and last: Ark (toy company) +[2018-02-13T00:35:55.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Xebulon/Archive and last: Musée alsacien (disambiguation) +[2018-02-13T00:35:55.414] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T00:35:55.429] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:35:55.436] [INFO] cheese - inserting 1000 documents. first: UDP-alpha-D-galactose:lipopolysaccharide 3-alpha-D-galactosyltransferase and last: S-adenozil-L-homocysteine homocysteinylribohydrolase +[2018-02-13T00:35:55.469] [INFO] cheese - batch complete in: 0.16 secs +[2018-02-13T00:35:55.611] [INFO] cheese - inserting 1000 documents. first: FC Pryladyst Mukacheve and last: In This Life (disambiguation) +[2018-02-13T00:35:55.656] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:35:55.680] [INFO] cheese - inserting 1000 documents. first: Australian Water Dragon and last: Template:Mauritius-footy-bio-stub +[2018-02-13T00:35:55.743] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:35:55.772] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-09-14 and last: Template:Brooklands-AMG1GP +[2018-02-13T00:35:55.811] [INFO] cheese - inserting 1000 documents. first: S-adenozil-L-homocysteine hydrolase and last: Aakhri Sauda: The Last Deal +[2018-02-13T00:35:55.828] [INFO] cheese - inserting 1000 documents. first: Mánya (disambiguation) and last: Sixteen Acres, Springfield, Massachusetts +[2018-02-13T00:35:55.831] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T00:35:55.860] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:35:55.880] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:35:55.921] [INFO] cheese - inserting 1000 documents. first: This is my rifle and last: WRAC +[2018-02-13T00:35:55.962] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:35:55.971] [INFO] cheese - inserting 1000 documents. first: Lost (television drama) and last: Dune: House Atreides +[2018-02-13T00:35:56.049] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:35:56.279] [INFO] cheese - inserting 1000 documents. first: Steve Knight and last: Breandán Ó hEithir +[2018-02-13T00:35:56.306] [INFO] cheese - inserting 1000 documents. first: 2016 Östersunds FK Season and last: 2014 South American Artistic Gymnastics Championships +[2018-02-13T00:35:56.339] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:35:56.365] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:35:56.371] [INFO] cheese - inserting 1000 documents. first: Douglas Sang-Hue and last: Mas sabe el diablo +[2018-02-13T00:35:56.463] [INFO] cheese - inserting 1000 documents. first: Neon Genesis Evangelion (anime) and last: Category:Defunct organizations based in New York City +[2018-02-13T00:35:56.484] [INFO] cheese - inserting 1000 documents. first: George Otto Simms and last: Anarcho primitivism +[2018-02-13T00:35:56.498] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:35:56.519] [INFO] cheese - inserting 1000 documents. first: John Cornelius Butler and last: Template:WikiProject Badminton +[2018-02-13T00:35:56.558] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:35:56.567] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:35:56.606] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:35:56.657] [INFO] cheese - inserting 1000 documents. first: Fraser – Winter Park (Amtrak station) and last: D-2,6-diaminohexanoate 5,6-aminomutase +[2018-02-13T00:35:56.682] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:35:56.860] [INFO] cheese - inserting 1000 documents. first: Shiki Tsukai and last: Category:Suspected Wikipedia sockpuppets of TimySmidge +[2018-02-13T00:35:56.910] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:35:56.957] [INFO] cheese - inserting 1000 documents. first: File:Russiancolours.jpg and last: GM Tech IV engine +[2018-02-13T00:35:56.965] [INFO] cheese - inserting 1000 documents. first: L-tyrosine 2,3-aminomutase and last: Cerro Iru Willkhi +[2018-02-13T00:35:56.976] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Bradley County, Tennessee and last: Bacon Egg and Cheese sandwich +[2018-02-13T00:35:57.015] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:35:57.021] [INFO] cheese - inserting 1000 documents. first: Famous (Marques Houston album) and last: Bitstamp +[2018-02-13T00:35:57.040] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:35:57.053] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T00:35:57.087] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:35:57.102] [INFO] cheese - inserting 1000 documents. first: NGC 6031 and last: G. D. Vosburg +[2018-02-13T00:35:57.152] [INFO] cheese - inserting 1000 documents. first: File:George Washington Bridge NYC at night 2006.jpg and last: 2006 Men's World Floorball Championships +[2018-02-13T00:35:57.162] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:35:57.233] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:35:57.274] [INFO] cheese - inserting 1000 documents. first: Kim Jin-tae and last: Alfred Jerome Cadman +[2018-02-13T00:35:57.314] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:35:57.415] [INFO] cheese - inserting 1000 documents. first: Conahy Shamrocks GAA and last: Naruto: Shippuden (season 5) +[2018-02-13T00:35:57.441] [INFO] cheese - inserting 1000 documents. first: Brightwater, New Zealand and last: Mississippi H.B. 1523 +[2018-02-13T00:35:57.508] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:35:57.511] [INFO] cheese - inserting 1000 documents. first: 23RAINYDAYS and last: Tattooed Serpent +[2018-02-13T00:35:57.597] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:35:57.684] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:35:57.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/weeshweesh.com and last: Yosuke Ikehata +[2018-02-13T00:35:57.848] [INFO] cheese - inserting 1000 documents. first: Philip Williams (United States Navy) and last: How Not to Die in Less Than 24 Hours +[2018-02-13T00:35:57.890] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:35:57.972] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:35:58.144] [INFO] cheese - inserting 1000 documents. first: Mississippi HB 1523 and last: St. Jason +[2018-02-13T00:35:58.162] [INFO] cheese - inserting 1000 documents. first: New Jersey Lis pendens and last: Dimitar Bosnov +[2018-02-13T00:35:58.195] [INFO] cheese - inserting 1000 documents. first: Nikki Blonski and last: Jacqueline Lamba +[2018-02-13T00:35:58.205] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:35:58.220] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:35:58.287] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T00:35:58.398] [INFO] cheese - inserting 1000 documents. first: Peter Parker 2099 and last: Adolfo Romero Lainas +[2018-02-13T00:35:58.418] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ryn Goblin and last: Arthur Farnsworth +[2018-02-13T00:35:58.437] [INFO] cheese - inserting 1000 documents. first: Sergiu Moga and last: Karl Moor +[2018-02-13T00:35:58.452] [INFO] cheese - inserting 1000 documents. first: List of Fire Emblem: The Sacred Stones characters and last: File:Texasleague.png +[2018-02-13T00:35:58.471] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:35:58.501] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:35:58.509] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:35:58.540] [INFO] cheese - batch complete in: 1.487 secs +[2018-02-13T00:35:58.639] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 2006 Central American and Caribbean Games and last: Hyogo At-large district +[2018-02-13T00:35:58.656] [INFO] cheese - inserting 1000 documents. first: Stevenage Borough Council election, 2006 and last: Awomo +[2018-02-13T00:35:58.686] [INFO] cheese - inserting 1000 documents. first: Johnny Dollar (musician) and last: Nam khao thod +[2018-02-13T00:35:58.703] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:35:58.710] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:35:58.745] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:35:58.859] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1967 Pan American Games – Men's 100 metre freestyle and last: Nadahup +[2018-02-13T00:35:58.931] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:35:58.969] [INFO] cheese - inserting 1000 documents. first: File:Pewee nest 2.jpg and last: Watson Island (disambiguation) +[2018-02-13T00:35:59.021] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:35:59.090] [INFO] cheese - inserting 1000 documents. first: Nigel Brooks and last: Wikipedia:WikiProject Spam/Local/moltech.ru +[2018-02-13T00:35:59.116] [INFO] cheese - inserting 1000 documents. first: Camp one (Guantanamo) and last: Wikipedia:Articles for deletion/Dublin Bus (No. 54A) +[2018-02-13T00:35:59.125] [INFO] cheese - inserting 1000 documents. first: Ibaraki At-large district and last: Shadows 4 +[2018-02-13T00:35:59.128] [INFO] cheese - inserting 1000 documents. first: Egil Skallagrimsson and last: Disfiguration +[2018-02-13T00:35:59.152] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:35:59.239] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:35:59.256] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:35:59.289] [INFO] cheese - inserting 1000 documents. first: Template:1904 MLB season by team and last: Covert Carry +[2018-02-13T00:35:59.309] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:35:59.399] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:35:59.482] [INFO] cheese - inserting 1000 documents. first: Category:Kabaddi in Pakistan and last: Template:Parajanov +[2018-02-13T00:35:59.536] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:35:59.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teemo and last: Chapolim Colorado +[2018-02-13T00:35:59.714] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:35:59.763] [INFO] cheese - inserting 1000 documents. first: Christian Lucatero and last: Obama ficki +[2018-02-13T00:35:59.787] [INFO] cheese - inserting 1000 documents. first: Category:Ships of the Romanian Naval Forces and last: Clarksville Historic District (Clarksville, Missouri) +[2018-02-13T00:35:59.832] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:35:59.851] [INFO] cheese - inserting 1000 documents. first: Asenova krepost and last: Category:Filipino wrestlers +[2018-02-13T00:35:59.871] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:35:59.948] [INFO] cheese - inserting 1000 documents. first: File:Fanny Fern grave.jpg and last: How Like a Winter +[2018-02-13T00:35:59.979] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:36:00.018] [INFO] cheese - inserting 1000 documents. first: Category:1356 deaths and last: Orochimaru +[2018-02-13T00:36:00.021] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:36:00.088] [INFO] cheese - inserting 1000 documents. first: Delta Shuttle and last: Wikipedia:WikiProject Christianity/Essential articles +[2018-02-13T00:36:00.115] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:36:00.146] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:36:00.334] [INFO] cheese - inserting 1000 documents. first: O Chapolin Colorado and last: Richard Jackson (footballer, born 1980) +[2018-02-13T00:36:00.450] [INFO] cheese - inserting 1000 documents. first: Statistical grammar and last: Dennis Doherty +[2018-02-13T00:36:00.480] [INFO] cheese - inserting 1000 documents. first: Drawehn and last: White Horse Wood +[2018-02-13T00:36:00.493] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:36:00.524] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:36:00.583] [INFO] cheese - inserting 1000 documents. first: The Transformers: Monstrosity and last: Django/Misty +[2018-02-13T00:36:00.608] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:36:00.637] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:36:00.661] [INFO] cheese - inserting 1000 documents. first: Ken Eklund and last: X Triticale +[2018-02-13T00:36:00.733] [INFO] cheese - inserting 1000 documents. first: Mike Anthony Boland and last: Category:French parasitologists +[2018-02-13T00:36:00.743] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:36:00.834] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T00:36:01.050] [INFO] cheese - inserting 1000 documents. first: Rock Lee and last: File:Juliana Hatfield - Bed.jpg +[2018-02-13T00:36:01.057] [INFO] cheese - inserting 1000 documents. first: Escuela Mexicana del Valle / Americana and last: Elisa Herrero Uceda +[2018-02-13T00:36:01.086] [INFO] cheese - inserting 1000 documents. first: Michael Joseph Dudick and last: Utkala +[2018-02-13T00:36:01.094] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:36:01.121] [INFO] cheese - inserting 1000 documents. first: Physiological needs and last: Oil City Park +[2018-02-13T00:36:01.124] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T00:36:01.135] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:36:01.160] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Washington Amateur Croquet League and last: Tulip era +[2018-02-13T00:36:01.187] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:36:01.238] [INFO] cheese - inserting 1000 documents. first: Gamba language and last: Long Thanh Town +[2018-02-13T00:36:01.244] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:36:01.272] [INFO] cheese - inserting 1000 documents. first: Nassuvan and last: Category:Florida Comptrollers +[2018-02-13T00:36:01.317] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:36:01.347] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:36:01.452] [INFO] cheese - inserting 1000 documents. first: Netoge and last: Deborah A Miranda +[2018-02-13T00:36:01.494] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:36:01.504] [INFO] cheese - inserting 1000 documents. first: 179th Street Station (Cedar Busway station) and last: Toronto Xtreme +[2018-02-13T00:36:01.544] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:36:01.601] [INFO] cheese - inserting 1000 documents. first: LJY and last: Maguma +[2018-02-13T00:36:01.642] [INFO] cheese - inserting 1000 documents. first: Starsky and Hutch and last: Aq Bolagh-e Bala +[2018-02-13T00:36:01.646] [INFO] cheese - inserting 1000 documents. first: Tanya (name) and last: James Beaty, Sr. +[2018-02-13T00:36:01.650] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:36:01.669] [INFO] cheese - inserting 1000 documents. first: Powder Monkey (novel) and last: 2002 European Athletics Championships – Men's triple jump +[2018-02-13T00:36:01.687] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:36:01.699] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:36:01.722] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:36:01.814] [INFO] cheese - inserting 1000 documents. first: Daybreak and last: Peek (crater) +[2018-02-13T00:36:01.890] [INFO] cheese - inserting 1000 documents. first: The Uranian and last: Gul gulshan gulfaam +[2018-02-13T00:36:01.903] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:36:01.926] [INFO] cheese - inserting 1000 documents. first: Acacia cupularis and last: Isthmus of Parpach +[2018-02-13T00:36:01.933] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:36:02.070] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:36:02.251] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Beer articles and last: Aerated biofilters +[2018-02-13T00:36:02.275] [INFO] cheese - inserting 1000 documents. first: Ghost amendment and last: A/L iiwarai +[2018-02-13T00:36:02.334] [INFO] cheese - inserting 1000 documents. first: Markus Feulner and last: Template:Hlohovec District +[2018-02-13T00:36:02.340] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:36:02.342] [INFO] cheese - inserting 1000 documents. first: Bayntun-Sandys baronets and last: Yuanping, Shanxi +[2018-02-13T00:36:02.353] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:36:02.385] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:36:02.402] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:36:02.481] [INFO] cheese - inserting 1000 documents. first: Category:Banks disestablished in 1925 and last: Ostend–Bruges International +[2018-02-13T00:36:02.510] [INFO] cheese - inserting 1000 documents. first: ATCvet code QG52 and last: Mama Do +[2018-02-13T00:36:02.542] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:36:02.573] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:36:02.677] [INFO] cheese - inserting 1000 documents. first: Osvaldo Vieira International and last: Orlando Sanford (airport) +[2018-02-13T00:36:02.692] [INFO] cheese - batch complete in: 0.15 secs +[2018-02-13T00:36:02.707] [INFO] cheese - inserting 1000 documents. first: Sir Francis Windebank and last: Wikipedia:WikiProject Spam/LinkReports/club-creative.pp.net.ua +[2018-02-13T00:36:02.712] [INFO] cheese - inserting 1000 documents. first: ERK (disambiguation) and last: Styx II +[2018-02-13T00:36:02.746] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:36:02.764] [INFO] cheese - inserting 1000 documents. first: Immortal (stable) and last: Dash Bolaghi +[2018-02-13T00:36:02.785] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:36:02.800] [INFO] cheese - inserting 1000 documents. first: Stanley Island and last: Jeff Henley +[2018-02-13T00:36:02.809] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:36:02.832] [INFO] cheese - inserting 1000 documents. first: Cosmo Jones in 'Crime Smasher' and last: Mike Clark (Jicks) +[2018-02-13T00:36:02.868] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:36:02.887] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:36:02.945] [INFO] cheese - inserting 1000 documents. first: Category:Rugby union tours of Zimbabwe and last: Template:Dutch Footballer of the Year +[2018-02-13T00:36:03.008] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:36:03.019] [INFO] cheese - inserting 1000 documents. first: Osaka (airport) and last: Hymyileva Mies +[2018-02-13T00:36:03.064] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:36:03.076] [INFO] cheese - inserting 1000 documents. first: Lex Calpurnia and last: Amos Milton Musser +[2018-02-13T00:36:03.119] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:36:03.165] [INFO] cheese - inserting 1000 documents. first: Joyce Kakuramatsi Kikafunda and last: Category:AfC submissions by date/08 September 2013 +[2018-02-13T00:36:03.210] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:36:03.260] [INFO] cheese - inserting 1000 documents. first: Baron Lytton and last: Category:Cass County, Indiana +[2018-02-13T00:36:03.275] [INFO] cheese - inserting 1000 documents. first: Portal:Technology/Selected article/archive and last: File:Logging train.jpg +[2018-02-13T00:36:03.327] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:36:03.340] [INFO] cheese - inserting 1000 documents. first: One Two Go Airlines Company Limited and last: Category:1548 compositions +[2018-02-13T00:36:03.370] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:36:03.465] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:36:03.508] [INFO] cheese - inserting 1000 documents. first: Craig Cobb and last: File:Claremont High School Logo.jpg +[2018-02-13T00:36:03.580] [INFO] cheese - inserting 1000 documents. first: Before the Thrones and last: Is This Real? (lisahall album) +[2018-02-13T00:36:03.606] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:36:03.653] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:36:03.692] [INFO] cheese - inserting 1000 documents. first: Template:TFA title/September 11, 2013 and last: Loca (Dana International song) +[2018-02-13T00:36:03.718] [INFO] cheese - inserting 1000 documents. first: Category:Clark County, Indiana and last: Category:Buffalo County, South Dakota +[2018-02-13T00:36:03.719] [INFO] cheese - inserting 1000 documents. first: File:Cbc.png and last: Template:Vw6 +[2018-02-13T00:36:03.740] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:36:03.758] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:36:03.789] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:36:03.934] [INFO] cheese - inserting 1000 documents. first: Aiton, Cluj and last: Etou Megumi +[2018-02-13T00:36:03.976] [INFO] cheese - inserting 1000 documents. first: Dead in the Water (Supernatural) and last: Template:South Africa Squad 2013 Women's Cricket World Cup +[2018-02-13T00:36:03.982] [INFO] cheese - inserting 1000 documents. first: Category:Cornett players and last: Cooley anaemia +[2018-02-13T00:36:03.991] [INFO] cheese - inserting 1000 documents. first: Mount Chomolungma and last: Piz Toissa +[2018-02-13T00:36:03.989] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:36:04.012] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:36:04.034] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:36:04.062] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:36:04.121] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1240 and last: Computer reservation system +[2018-02-13T00:36:04.166] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:36:04.187] [INFO] cheese - inserting 1000 documents. first: 2013–14 Baltic Basketball League and last: Ford R1014 +[2018-02-13T00:36:04.228] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:36:04.259] [INFO] cheese - inserting 1000 documents. first: Touch detective 2 and last: Sophie Charlotte of Bavaria +[2018-02-13T00:36:04.267] [INFO] cheese - inserting 1000 documents. first: Nizzetto and last: Awards and nominations received by Elena Paparizou +[2018-02-13T00:36:04.305] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:36:04.324] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:36:04.327] [INFO] cheese - inserting 1000 documents. first: Eastham v Newcastle United FC and last: Wikipedia:WikiProject Spam/LinkReports/ulscr.org.uk +[2018-02-13T00:36:04.377] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:36:04.416] [INFO] cheese - inserting 1000 documents. first: Mike V and last: Pittsburgh Dance Council +[2018-02-13T00:36:04.477] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:36:04.488] [INFO] cheese - inserting 1000 documents. first: Awards and nominations received by Elizabeth Taylor and last: Songs recorded by Stateless +[2018-02-13T00:36:04.511] [INFO] cheese - batch complete in: 0.206 secs +[2018-02-13T00:36:04.562] [INFO] cheese - inserting 1000 documents. first: Tonight Tonight (EP) and last: Seduction (Wiley song) +[2018-02-13T00:36:04.616] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:36:04.619] [INFO] cheese - inserting 1000 documents. first: Qarah Chanaq, Ardabil and last: Dim Seqerlu +[2018-02-13T00:36:04.667] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:36:04.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Statto-JTA Publishing Corporation and last: Category:Elevators +[2018-02-13T00:36:04.828] [INFO] cheese - inserting 1000 documents. first: Category:Reading skill advocates and last: Joshua Holmes (rugby union) +[2018-02-13T00:36:04.837] [INFO] cheese - inserting 1000 documents. first: Large Black pig and last: Wikipedia:Requests for adminship/KieferSkunk +[2018-02-13T00:36:04.842] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:36:04.867] [INFO] cheese - inserting 1000 documents. first: Songs recorded by Status Quo and last: File:Averett stacked logo.png +[2018-02-13T00:36:04.938] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:36:04.945] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:36:04.960] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:36:04.986] [INFO] cheese - inserting 1000 documents. first: Plain chachalaca and last: Barlaston railway station +[2018-02-13T00:36:05.083] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:36:05.129] [INFO] cheese - inserting 1000 documents. first: Saks (Surname) and last: CSU Galați +[2018-02-13T00:36:05.167] [INFO] cheese - inserting 1000 documents. first: Dim Segherlu and last: Discount rate (disambiguation) +[2018-02-13T00:36:05.175] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:36:05.226] [INFO] cheese - inserting 1000 documents. first: Category:Campeonato Paranaense 1 players and last: Monastir Habib Bourguiba (international airport) +[2018-02-13T00:36:05.228] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:36:05.259] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:36:05.352] [INFO] cheese - inserting 1000 documents. first: Gras, Ardèche and last: Category:Football managers in France by club +[2018-02-13T00:36:05.389] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:36:05.400] [INFO] cheese - inserting 1000 documents. first: File:RedBankJazzBluesFest2009r.jpg and last: Category:Kirkkonummi +[2018-02-13T00:36:05.453] [INFO] cheese - inserting 1000 documents. first: High Tension and last: Ultima 7, pt. 2 +[2018-02-13T00:36:05.455] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:36:05.478] [INFO] cheese - inserting 1000 documents. first: Template:Snina District and last: Kingston, Hampshire +[2018-02-13T00:36:05.500] [INFO] cheese - inserting 1000 documents. first: Monseñor Óscar Arnulfo Romero (international airport) and last: 2016–17 Central Coast Mariners FC season +[2018-02-13T00:36:05.515] [INFO] cheese - inserting 1000 documents. first: Diz (disambiguation) and last: Countess of Harrington +[2018-02-13T00:36:05.520] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:36:05.530] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:36:05.533] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:36:05.558] [INFO] cheese - inserting 1000 documents. first: Ecuadorian Spanish and last: Category:2003 in Gaelic football +[2018-02-13T00:36:05.563] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:36:05.609] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:36:05.708] [INFO] cheese - inserting 1000 documents. first: Template:National pitch and putt teams and last: Qijiang +[2018-02-13T00:36:05.743] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:36:05.839] [INFO] cheese - inserting 1000 documents. first: First-mover disadvantage and last: ArtPrize +[2018-02-13T00:36:05.877] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:36:05.926] [INFO] cheese - inserting 1000 documents. first: Heat leg rash and last: Lesa Ann Pedriana +[2018-02-13T00:36:05.945] [INFO] cheese - inserting 1000 documents. first: Khalil Kandi and last: 2013–14 UMass Minutemen basketball team +[2018-02-13T00:36:05.965] [INFO] cheese - inserting 1000 documents. first: Roman Catholics in Kazakhstan and last: John McLaughlin's One On One +[2018-02-13T00:36:05.994] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Banská Bystrica Region and last: Charlotte Robillard-Millette +[2018-02-13T00:36:05.996] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:36:06.013] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:36:06.028] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:36:06.059] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:36:06.155] [INFO] cheese - inserting 1000 documents. first: Ultima 7 Part Two and last: Eidi +[2018-02-13T00:36:06.203] [INFO] cheese - inserting 1000 documents. first: Yesterday Man and last: Trivial Pursuit: Unhinged +[2018-02-13T00:36:06.309] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:36:06.335] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:36:06.520] [INFO] cheese - inserting 1000 documents. first: Assyrians and Syriacs in Syria and last: West Virginia Highway 112 +[2018-02-13T00:36:06.526] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Anthony Drazan and last: Category:United Kingdom free speech case law +[2018-02-13T00:36:06.573] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:36:06.584] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:36:06.586] [INFO] cheese - inserting 1000 documents. first: Portal:Conservatism/box-header-main-ctr and last: Vyacheslav Klypo +[2018-02-13T00:36:06.632] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:36:06.660] [INFO] cheese - inserting 1000 documents. first: File:Carmichael clan farmhouse kitchen.jpg and last: Enanthic acid +[2018-02-13T00:36:06.705] [INFO] cheese - inserting 1000 documents. first: Stanley Rabjohn and last: Nicotinamide mononucleotide +[2018-02-13T00:36:06.711] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:36:06.770] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:36:06.858] [INFO] cheese - inserting 1000 documents. first: José Antonio Cedeño and last: Seal Rock (Oregon) +[2018-02-13T00:36:06.916] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:36:06.945] [INFO] cheese - inserting 1000 documents. first: Route 112 (West Virginia) and last: Heisei Harenchi Gakuen +[2018-02-13T00:36:06.987] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:36:07.022] [INFO] cheese - inserting 1000 documents. first: Perinephila and last: Guestling Halt railway station +[2018-02-13T00:36:07.043] [INFO] cheese - inserting 1000 documents. first: Saskatchewan general election, 1912 and last: David Euan Wallace +[2018-02-13T00:36:07.056] [INFO] cheese - inserting 1000 documents. first: Enanthate and last: Portal:Australia/Anniversaries/October/October 27 +[2018-02-13T00:36:07.072] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:36:07.088] [INFO] cheese - inserting 1000 documents. first: Category:Freedom of speech in the United Kingdom and last: File:Via Castellana Bandiera.jpg +[2018-02-13T00:36:07.108] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Janie Tsao and last: Maxime Hautbois +[2018-02-13T00:36:07.108] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:36:07.113] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:36:07.156] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:36:07.165] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:36:07.199] [INFO] cheese - inserting 1000 documents. first: Batt and last: Me (Album) +[2018-02-13T00:36:07.232] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:36:07.382] [INFO] cheese - inserting 1000 documents. first: Malignant poroma and last: Hiyama Yuuya +[2018-02-13T00:36:07.429] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:36:07.464] [INFO] cheese - inserting 1000 documents. first: Mass setting and last: Category:Gunnerales +[2018-02-13T00:36:07.503] [INFO] cheese - inserting 1000 documents. first: File:Cholamandalam MS General Insurance.svg and last: Bian language +[2018-02-13T00:36:07.537] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:36:07.557] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:36:07.595] [INFO] cheese - inserting 1000 documents. first: File:Brand New - New Favorite Weapon (Deluxe).jpg and last: List of songs recorded by Lali Espósito +[2018-02-13T00:36:07.597] [INFO] cheese - inserting 1000 documents. first: Norman Greenhalgh and last: Thomas Napier (colonist of Victoria) +[2018-02-13T00:36:07.691] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:36:07.706] [INFO] cheese - inserting 1000 documents. first: 2007–08 Russian Cup and last: Connecticut Route 215 +[2018-02-13T00:36:07.724] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:36:07.809] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:36:07.812] [INFO] cheese - inserting 1000 documents. first: Gandhi–King Award and last: Berzelius (crater) +[2018-02-13T00:36:07.885] [INFO] cheese - inserting 1000 documents. first: Category:Besançon RC managers and last: Bettina Müller (canoeist) +[2018-02-13T00:36:07.908] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:36:07.948] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:36:08.046] [INFO] cheese - inserting 1000 documents. first: The Boyz (boy band) and last: Category:Colleen Peterson songs +[2018-02-13T00:36:08.082] [INFO] cheese - inserting 1000 documents. first: The Phynx and last: B Grupa +[2018-02-13T00:36:08.095] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:36:08.152] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:36:08.223] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Customusertemplate-ACP2:Be a part of Wikipedia (History, Copyediting) and last: Wikipedia:WikiProject Spam/Local/nma.co.uk +[2018-02-13T00:36:08.239] [INFO] cheese - inserting 1000 documents. first: Newspaper and Stamp Duties Act and last: Super Specialty Hospital +[2018-02-13T00:36:08.293] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:36:08.312] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:36:08.431] [INFO] cheese - inserting 1000 documents. first: SUDO and last: Modena Team +[2018-02-13T00:36:08.442] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in the Ntambanana Local Municipality and last: Escadrille N.62 +[2018-02-13T00:36:08.443] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 527 and last: Taisiya Laptyeva +[2018-02-13T00:36:08.472] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:36:08.484] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:36:08.502] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:36:08.564] [INFO] cheese - inserting 1000 documents. first: File:South America Precipitation Map (data from 1976-2009).gif and last: Expatriate Afghan football clubs +[2018-02-13T00:36:08.598] [INFO] cheese - inserting 1000 documents. first: DAT Politics and last: Sinfjötli +[2018-02-13T00:36:08.602] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:36:08.608] [INFO] cheese - inserting 1000 documents. first: Heptapolis and last: File:Middlesex county 1875 - carlisle - p45 500.jpg +[2018-02-13T00:36:08.678] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:36:08.684] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:36:08.782] [INFO] cheese - inserting 1000 documents. first: James Daniel (American football coach) and last: Sir David Monro +[2018-02-13T00:36:08.839] [INFO] cheese - inserting 1000 documents. first: Extant papal tombs and last: Sarawak FA international players +[2018-02-13T00:36:08.874] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:36:08.870] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:36:08.901] [INFO] cheese - inserting 1000 documents. first: Georgie Robertson Christian College and last: Ember Corporation +[2018-02-13T00:36:08.941] [INFO] cheese - inserting 1000 documents. first: Yilngali language and last: City of Gympie +[2018-02-13T00:36:08.962] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:36:09.012] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:36:09.086] [INFO] cheese - inserting 1000 documents. first: KRCS-FM and last: Wikipedia:WikiProject Spam/LinkReports/physics.mcgill.ca +[2018-02-13T00:36:09.256] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:36:09.330] [INFO] cheese - inserting 1000 documents. first: Diffuser (optics) and last: Category:Literary agents +[2018-02-13T00:36:09.380] [INFO] cheese - inserting 1000 documents. first: Template:ZHCOTM and last: West Grey +[2018-02-13T00:36:09.425] [INFO] cheese - inserting 1000 documents. first: Scarborough F.C. players and last: José Ulisses de Pina Correia e Silva +[2018-02-13T00:36:09.426] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:36:09.487] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T00:36:09.485] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:36:09.543] [INFO] cheese - inserting 1000 documents. first: Ukfwo language and last: Rachel Dunlop +[2018-02-13T00:36:09.611] [INFO] cheese - inserting 1000 documents. first: SD San Pedro and last: Wikipedia:University of the Philippines +[2018-02-13T00:36:09.635] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:36:09.675] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:36:09.805] [INFO] cheese - inserting 1000 documents. first: Template:Parga div and last: Dragon Dance (novel) +[2018-02-13T00:36:09.852] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:36:09.873] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bobber-Xi-Wu and last: Portal:India/SC Summary/SP Dal Lake +[2018-02-13T00:36:09.911] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:36:09.964] [INFO] cheese - inserting 1000 documents. first: Apethorpe Hall and last: Khaled Al-Ansari +[2018-02-13T00:36:09.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:University of the Philippines System and last: Madan, Montana Province +[2018-02-13T00:36:10.015] [INFO] cheese - inserting 1000 documents. first: Category:21st-century disestablishments in Oklahoma and last: Sony DSLR-A100/B +[2018-02-13T00:36:10.023] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:36:10.035] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:36:10.057] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:36:10.105] [INFO] cheese - inserting 1000 documents. first: Mississippi Mills and last: Everquest II +[2018-02-13T00:36:10.155] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:36:10.203] [INFO] cheese - inserting 1000 documents. first: Sijil Rendah Pelajaran and last: Portal:Southeast Asia/2007 October 23 +[2018-02-13T00:36:10.246] [INFO] cheese - inserting 1000 documents. first: Category:Fictional characters introduced in 1602 and last: Charles Pingle +[2018-02-13T00:36:10.251] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:36:10.300] [INFO] cheese - inserting 1000 documents. first: Frederick Grove and last: Flood Control (Computer Science) +[2018-02-13T00:36:10.348] [INFO] cheese - batch complete in: 1.473 secs +[2018-02-13T00:36:10.352] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:36:10.418] [INFO] cheese - inserting 1000 documents. first: 2008 Montreux Volley Masters and last: Category:Hupa villages +[2018-02-13T00:36:10.432] [INFO] cheese - inserting 1000 documents. first: Milburg and last: File:AUS Alphanumeric Route C108.svg +[2018-02-13T00:36:10.457] [INFO] cheese - inserting 1000 documents. first: New Zealand NORML and last: Cape San Diego +[2018-02-13T00:36:10.461] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:36:10.495] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:36:10.508] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:36:10.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/amigos-de-borges.net and last: 1999 San Diego Padres season +[2018-02-13T00:36:10.653] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:36:10.725] [INFO] cheese - inserting 1000 documents. first: CFRT and last: Colorado Dory +[2018-02-13T00:36:10.794] [INFO] cheese - inserting 1000 documents. first: Eltonåsen and last: Meadow Sweet +[2018-02-13T00:36:10.809] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:36:10.812] [INFO] cheese - inserting 1000 documents. first: File:AUS Alphanumeric Route C109.svg and last: Teleia sultanella +[2018-02-13T00:36:10.898] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:36:10.905] [INFO] cheese - inserting 1000 documents. first: File:Talons Back Cover.jpg and last: Girkalnis +[2018-02-13T00:36:10.906] [INFO] cheese - inserting 1000 documents. first: Category:Milton Wildcats football players and last: Wikipedia:Articles for deletion/1990-95 Southern Hemisphere tropical cyclone seasons +[2018-02-13T00:36:10.963] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:36:11.002] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:36:11.030] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:36:11.208] [INFO] cheese - inserting 1000 documents. first: Vehicle registration plates of Mrkazi and last: Interessement +[2018-02-13T00:36:11.326] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T00:36:11.337] [INFO] cheese - inserting 1000 documents. first: Sad Songs and last: Winterville Site +[2018-02-13T00:36:11.398] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:36:11.408] [INFO] cheese - inserting 1000 documents. first: Sergey Tolchinsky and last: Wikipedia:Featured article candidates/History of Aston Villa F.C. (1961-present)/archive1 +[2018-02-13T00:36:11.476] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:36:11.489] [INFO] cheese - inserting 1000 documents. first: Oecophora tigratella and last: Category:The Band video albums +[2018-02-13T00:36:11.510] [INFO] cheese - inserting 1000 documents. first: Mr Justice Laddie and last: File:CTRP logo.png +[2018-02-13T00:36:11.546] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:36:11.583] [INFO] cheese - inserting 1000 documents. first: White Knuckled Substance and last: Wikipedia:Articles for deletion/California bearing ratio +[2018-02-13T00:36:11.586] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:36:11.632] [INFO] cheese - inserting 1000 documents. first: River Gardens, California and last: Graham School of Continuing Liberal and Professional Studies +[2018-02-13T00:36:11.655] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:36:11.696] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:36:11.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thailand-Ukraine relations and last: 20va Shatabdam +[2018-02-13T00:36:11.773] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:36:11.816] [INFO] cheese - inserting 1000 documents. first: File:LSD-Flux.jpg and last: Category:World-bearing animals +[2018-02-13T00:36:11.863] [INFO] cheese - inserting 1000 documents. first: Il Signor Bruschino and last: History of University of Texas at Austin +[2018-02-13T00:36:11.866] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:36:11.873] [INFO] cheese - inserting 1000 documents. first: Khanandabil-e Sharqi and last: Harasban +[2018-02-13T00:36:11.902] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:36:11.925] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:36:11.947] [INFO] cheese - inserting 1000 documents. first: Confederation of Workers of the Republic of Panama and last: Buttevent Franciscan Friary +[2018-02-13T00:36:11.980] [INFO] cheese - inserting 1000 documents. first: Ochr 1 and last: Honey Don't (The Beatles song) +[2018-02-13T00:36:12.006] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:36:12.008] [INFO] cheese - batch complete in: 0.235 secs +[2018-02-13T00:36:12.033] [INFO] cheese - inserting 1000 documents. first: Template:Ottawa Renegades and last: Template:Party shading/Coalition +[2018-02-13T00:36:12.083] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:36:12.202] [INFO] cheese - inserting 1000 documents. first: Havay and last: Rancagua de la Independencia Airport +[2018-02-13T00:36:12.228] [INFO] cheese - inserting 1000 documents. first: Honey Pie (The Beatles song) and last: Birds in culture +[2018-02-13T00:36:12.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of 3-2-1 Penguins! episodes and last: Donna Jean & the Tricksters +[2018-02-13T00:36:12.247] [INFO] cheese - inserting 1000 documents. first: Illapel and last: Parabiaugmented dodecahedron +[2018-02-13T00:36:12.254] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:36:12.265] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:36:12.300] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:36:12.323] [INFO] cheese - inserting 1000 documents. first: Arthur Ross (ice hockey) and last: Barefoot sandal +[2018-02-13T00:36:12.333] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:36:12.366] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:36:12.401] [INFO] cheese - inserting 1000 documents. first: File:Album Mr Natural.jpg and last: Corium +[2018-02-13T00:36:12.448] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:36:12.463] [INFO] cheese - inserting 1000 documents. first: Template:Party shading/Coalition/doc and last: Gimnàstic Tarragona +[2018-02-13T00:36:12.510] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:36:12.687] [INFO] cheese - inserting 1000 documents. first: Nicol Drysdale Stenhouse and last: William Duke of Cambridge +[2018-02-13T00:36:12.731] [INFO] cheese - inserting 1000 documents. first: Template:1915-16 Big Ten Conference men's basketball standings and last: Atheocratism +[2018-02-13T00:36:12.793] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:36:12.809] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:36:12.837] [INFO] cheese - inserting 1000 documents. first: Bull Creek, Florida and last: Contact activation pathway +[2018-02-13T00:36:12.890] [INFO] cheese - inserting 1000 documents. first: Shipping pool and last: José Batlle y Ordóñez, Uruguay +[2018-02-13T00:36:12.899] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:36:12.990] [INFO] cheese - inserting 1000 documents. first: Doom Resurrection and last: 1080s in poetry +[2018-02-13T00:36:13.003] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:36:13.066] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:36:13.113] [INFO] cheese - inserting 1000 documents. first: Draft:Oye Akideinde and last: The Hakawati +[2018-02-13T00:36:13.132] [INFO] cheese - inserting 1000 documents. first: Øyvind Rimbereid and last: Lambert Meertens +[2018-02-13T00:36:13.139] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:36:13.171] [INFO] cheese - inserting 1000 documents. first: Metabiaugmented dodecahedron and last: Richard Wylly Habersham +[2018-02-13T00:36:13.196] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:36:13.250] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T00:36:13.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cellunlockpro.net and last: 1963 UEFA European Under-18 Football Championship +[2018-02-13T00:36:13.395] [INFO] cheese - inserting 1000 documents. first: Thomas Coningsby and last: Carl Brettschneider +[2018-02-13T00:36:13.406] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:36:13.438] [INFO] cheese - inserting 1000 documents. first: File:Eliphalet Ball marker.jpg and last: Template:1999-2000 Northeast Conference men's basketball standings +[2018-02-13T00:36:13.455] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:36:13.463] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:36:13.475] [INFO] cheese - inserting 1000 documents. first: File:Armchair Science first issue (lowres).jpg and last: Ricardo p cruz sr elementary school +[2018-02-13T00:36:13.501] [INFO] cheese - inserting 1000 documents. first: 1070s in poetry and last: It's a Business +[2018-02-13T00:36:13.538] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:36:13.555] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:36:13.687] [INFO] cheese - inserting 1000 documents. first: Nørre Gymnasium and last: Presa Canario +[2018-02-13T00:36:13.726] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 NHL Central Division standings and last: Template:2010-11 Division I independents standings (men) +[2018-02-13T00:36:13.728] [INFO] cheese - inserting 1000 documents. first: 1964 UEFA European Under-18 Football Championship and last: Mayu language +[2018-02-13T00:36:13.742] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:36:13.764] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:36:13.788] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:36:13.848] [INFO] cheese - inserting 1000 documents. first: Category:South Carolina railroads and last: Trinity Washington University +[2018-02-13T00:36:13.881] [INFO] cheese - inserting 1000 documents. first: Emlyn Hugh Garner Evans and last: Ormenion +[2018-02-13T00:36:13.932] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:36:13.942] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:36:13.962] [INFO] cheese - inserting 1000 documents. first: File:Durga Puja 2008 Mymensingh 5.JPG and last: Dmitry Makarov +[2018-02-13T00:36:13.971] [INFO] cheese - inserting 1000 documents. first: Canyon Lake Dam and last: Wikipedia:Articles for deletion/Deena Martin +[2018-02-13T00:36:14.019] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:36:14.039] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:36:14.057] [INFO] cheese - inserting 1000 documents. first: Pisacayo and last: 706 AD +[2018-02-13T00:36:14.063] [INFO] cheese - inserting 1000 documents. first: Menejou language and last: File:School seal of Notre Dame of Kidapawan College.jpg +[2018-02-13T00:36:14.099] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:36:14.107] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:36:14.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2006 May 28 and last: Blewitt Falls Lake +[2018-02-13T00:36:14.304] [INFO] cheese - inserting 1000 documents. first: 707 AD and last: 1696 AD +[2018-02-13T00:36:14.331] [INFO] cheese - batch complete in: 0.232 secs +[2018-02-13T00:36:14.334] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:36:14.443] [INFO] cheese - inserting 1000 documents. first: Herbert Waddell and last: Naturschutzbund Deutschland +[2018-02-13T00:36:14.465] [INFO] cheese - inserting 1000 documents. first: Ormenio, Greece and last: Milwaukee Avenue, Chicago +[2018-02-13T00:36:14.495] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:36:14.550] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/praram9.com and last: Alyta +[2018-02-13T00:36:14.566] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:36:14.571] [INFO] cheese - inserting 1000 documents. first: Bernathonomus postrosea and last: HMS Sierra Leone +[2018-02-13T00:36:14.592] [INFO] cheese - inserting 1000 documents. first: Professor G.Q. Max Lu and last: Template:2012-13 Hong Kong Top Footballer +[2018-02-13T00:36:14.626] [INFO] cheese - inserting 1000 documents. first: Markham Stouffville Hospital and last: Mount Pleasant, County Durham +[2018-02-13T00:36:14.647] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:36:14.689] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:36:14.686] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:36:14.728] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:36:14.923] [INFO] cheese - inserting 1000 documents. first: Haj House (Mumbai) and last: MINERVA +[2018-02-13T00:36:14.959] [INFO] cheese - inserting 1000 documents. first: Scottish Cup 1995-96 and last: CCCCCCCC +[2018-02-13T00:36:14.974] [INFO] cheese - inserting 1000 documents. first: Template:2012-13 IRB Womens Sevens World Series and last: Template:2014 FIFA World Cup qualification - AFC Third Round Group E +[2018-02-13T00:36:14.988] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:36:15.013] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:36:15.031] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:36:15.060] [INFO] cheese - inserting 1000 documents. first: Franciscus Richardot and last: File:ESC 1979 logo.png +[2018-02-13T00:36:15.108] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:36:15.111] [INFO] cheese - inserting 1000 documents. first: Comedy Arts Festival and last: Wikipedia:Wikipedia Signpost/2013-09-11/Arbitration report +[2018-02-13T00:36:15.152] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:36:15.167] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Gratiot County, Michigan and last: Jake Smith (baseball) +[2018-02-13T00:36:15.273] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:36:15.373] [INFO] cheese - inserting 1000 documents. first: Buftea and last: Clemens non papa +[2018-02-13T00:36:15.444] [INFO] cheese - inserting 1000 documents. first: File:Unsylva 72.jpg and last: Football at the Summer Universiade +[2018-02-13T00:36:15.459] [INFO] cheese - inserting 1000 documents. first: Template:2015–16 FA WSL PFA Team of the Year and last: Template:2015-16 National League 1 Table +[2018-02-13T00:36:15.468] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:36:15.488] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:36:15.540] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:36:15.610] [INFO] cheese - inserting 1000 documents. first: Mahadevi Verma and last: Fax Preference Service +[2018-02-13T00:36:15.636] [INFO] cheese - inserting 1000 documents. first: Chah Esmaeel, Zahedan and last: Category:People associated with Saïd Business School +[2018-02-13T00:36:15.677] [INFO] cheese - inserting 1000 documents. first: N'toko and last: The Moonshiners +[2018-02-13T00:36:15.677] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:36:15.694] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:36:15.750] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:36:15.806] [INFO] cheese - inserting 1000 documents. first: Loss Creek, Texas and last: Wikipedia:Reference desk/Archives/Science/2011 June 1 +[2018-02-13T00:36:15.854] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:36:15.935] [INFO] cheese - inserting 1000 documents. first: Template:2015-16 Maltese Premier League Second Phase table and last: Template:Attached KML/Interstate 635 (Kansas-Missouri) +[2018-02-13T00:36:15.962] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:36:16.094] [INFO] cheese - inserting 1000 documents. first: Lynde Point Lighthouse and last: St. Paul's Union Church and Cemetery +[2018-02-13T00:36:16.150] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:36:16.170] [INFO] cheese - inserting 1000 documents. first: Better Loosen Up and last: Wikipedia:Articles for deletion/Koenma +[2018-02-13T00:36:16.174] [INFO] cheese - inserting 1000 documents. first: Category:Fashion journalism and last: Dwarf croaking gourami +[2018-02-13T00:36:16.179] [INFO] cheese - inserting 1000 documents. first: Julia Duin and last: Sulaiman Al Nassr +[2018-02-13T00:36:16.195] [INFO] cheese - inserting 1000 documents. first: Category:Saïd Business School and last: Wikipedia:WikiProject Spam/LinkReports/smithsustainabledesign.com +[2018-02-13T00:36:16.203] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:36:16.206] [INFO] cheese - inserting 1000 documents. first: Moonshiners and last: Håkan Fredriksson +[2018-02-13T00:36:16.236] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:36:16.237] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:36:16.248] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:36:16.258] [INFO] cheese - inserting 1000 documents. first: Category:People from Zombo District and last: Afghan (name) +[2018-02-13T00:36:16.280] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:36:16.345] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:36:16.598] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Mexico-Singapore relations and last: Template:Fb competition 1948-49 Division 2 +[2018-02-13T00:36:16.613] [INFO] cheese - inserting 1000 documents. first: Category:Gornik Wałbrzych players and last: Category:Isotopes of rhenium +[2018-02-13T00:36:16.644] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:36:16.645] [INFO] cheese - inserting 1000 documents. first: Kaathirundha Kangal and last: Purplebanded snake eel +[2018-02-13T00:36:16.669] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:36:16.688] [INFO] cheese - inserting 1000 documents. first: Knoebels staff and last: Imran ibn Shahin +[2018-02-13T00:36:16.710] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:36:16.755] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:36:16.773] [INFO] cheese - inserting 1000 documents. first: Theracon and last: Pat McManus +[2018-02-13T00:36:16.820] [INFO] cheese - inserting 1000 documents. first: 100 Milionë (The Million Dollar Drop) Albania and last: Marie-Louise O'Donnell +[2018-02-13T00:36:16.849] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:36:16.882] [INFO] cheese - inserting 1000 documents. first: Better loosen up and last: Willie Hefner +[2018-02-13T00:36:16.883] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:36:17.001] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:36:17.185] [INFO] cheese - inserting 1000 documents. first: College of Chinese Culture and last: SATA-IO Serial ATA Revision 2.0 +[2018-02-13T00:36:17.253] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:36:17.273] [INFO] cheese - inserting 1000 documents. first: Mahmoud Saad (disambiguation) and last: Child identity fraud +[2018-02-13T00:36:17.290] [INFO] cheese - inserting 1000 documents. first: U2 incident and last: Hempstead,near Holt, Norfolk +[2018-02-13T00:36:17.343] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:36:17.351] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:36:17.371] [INFO] cheese - inserting 1000 documents. first: Category:Isotopes of rhodium and last: Frank Beattie +[2018-02-13T00:36:17.457] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:36:17.544] [INFO] cheese - inserting 1000 documents. first: Marie Louise O'Donnell and last: Wikipedia:Miscellany for deletion/User:24.177.120.138/Don't create an account +[2018-02-13T00:36:17.552] [INFO] cheese - inserting 1000 documents. first: File:Warmonger.jpg and last: Abbacy of St Emmeram in Regensburg +[2018-02-13T00:36:17.626] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:36:17.640] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:36:17.795] [INFO] cheese - inserting 1000 documents. first: SATA-IO Serial ATA Revision 3.0 and last: Ad Kolnaar +[2018-02-13T00:36:17.835] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Christianity navigational boxes and last: Template:Fb round2 2014-15 DFB-Pokal R1 +[2018-02-13T00:36:17.860] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:36:17.882] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class United States comics articles and last: Stagecoach Cambridgeshire +[2018-02-13T00:36:17.885] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:36:17.996] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:36:18.002] [INFO] cheese - inserting 1000 documents. first: Willie G. Hefner and last: Magnolia macrophylla +[2018-02-13T00:36:18.099] [INFO] cheese - inserting 1000 documents. first: Rhode Island Rams football and last: WCRX-LP +[2018-02-13T00:36:18.103] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T00:36:18.153] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:36:18.243] [INFO] cheese - inserting 1000 documents. first: A nos actes manqués and last: Antrodiaetus +[2018-02-13T00:36:18.248] [INFO] cheese - inserting 1000 documents. first: Zagai Island (Queensland) and last: Another Joyous Occasion +[2018-02-13T00:36:18.291] [INFO] cheese - inserting 1000 documents. first: The Lost City (1950 film) and last: Template:Movement for Democratic Change - Tsvangirai/meta/shortname +[2018-02-13T00:36:18.299] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:36:18.310] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:36:18.332] [INFO] cheese - inserting 1000 documents. first: Joaquín Ibáñez Cuevas y de Valonga, Baron de Eroles and last: Ametropalpis vidua +[2018-02-13T00:36:18.356] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:36:18.408] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:36:18.479] [INFO] cheese - inserting 1000 documents. first: Stagecoach Warwickshire and last: File:Speed King.jpg +[2018-02-13T00:36:18.495] [INFO] cheese - inserting 1000 documents. first: Mahmoud Bahmani and last: Low-latency queuing +[2018-02-13T00:36:18.523] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:36:18.547] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:36:18.587] [INFO] cheese - inserting 1000 documents. first: Category:Sabah federal constituencies and last: Template:Quebec provincial election, 1994/Sainte-Marie-Saint-Jacques +[2018-02-13T00:36:18.609] [INFO] cheese - batch complete in: 0.253 secs +[2018-02-13T00:36:18.715] [INFO] cheese - inserting 1000 documents. first: Punjabi music and last: Odd man out +[2018-02-13T00:36:18.796] [INFO] cheese - inserting 1000 documents. first: Charlie Weir and last: Kuwaiti protests (2011–present) +[2018-02-13T00:36:18.800] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:36:18.809] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2008–09 Cypriot First Division and last: Category:2006 short story collections +[2018-02-13T00:36:18.824] [INFO] cheese - inserting 1000 documents. first: Template:OlivierAward MusicalBestActress 1979-2000 and last: Anthoecia divitiosa +[2018-02-13T00:36:18.841] [INFO] cheese - inserting 1000 documents. first: Bentley railway station and last: Dudley "Red" Garrett Memorial Award +[2018-02-13T00:36:18.860] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:36:18.860] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:36:18.900] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:36:18.906] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:36:18.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tucapital.es and last: Groupe Les Echos +[2018-02-13T00:36:19.003] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:36:19.073] [INFO] cheese - inserting 1000 documents. first: George Robert Stephenson and last: 1906 Minnesota Golden Gophers football team +[2018-02-13T00:36:19.131] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:36:19.295] [INFO] cheese - inserting 1000 documents. first: Category:Lists of English words of Indian origin and last: Maidiping +[2018-02-13T00:36:19.299] [INFO] cheese - inserting 1000 documents. first: 10th (Sussex) Parachute Battalion and last: Category:The Cranberries members +[2018-02-13T00:36:19.331] [INFO] cheese - inserting 1000 documents. first: Number One (Remember When We Danced All Night) and last: Shivaji Yadav +[2018-02-13T00:36:19.371] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:36:19.422] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:36:19.447] [INFO] cheese - inserting 1000 documents. first: Template:Hacrobia and last: B626 MRK +[2018-02-13T00:36:19.468] [INFO] cheese - inserting 1000 documents. first: History of Ankara and last: Dagora, the Space Monster +[2018-02-13T00:36:19.473] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:36:19.516] [INFO] cheese - inserting 1000 documents. first: R and D and last: USS Southfield (1857) +[2018-02-13T00:36:19.553] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:36:19.621] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:36:19.669] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T00:36:19.770] [INFO] cheese - inserting 1000 documents. first: 1907 Minnesota Golden Gophers football team and last: Player vs. environment +[2018-02-13T00:36:19.868] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:36:19.870] [INFO] cheese - inserting 1000 documents. first: Bacarri and last: Beth Yeshurun Day School +[2018-02-13T00:36:19.892] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jakob Ziguras and last: USCGC Beaufort (PF-59) +[2018-02-13T00:36:19.922] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:36:19.963] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:36:20.018] [INFO] cheese - inserting 1000 documents. first: Klonari and last: Miriam Frenken +[2018-02-13T00:36:20.070] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:36:20.096] [INFO] cheese - inserting 1000 documents. first: Cane Hill Cemetery and last: Template:IPAc2-mh +[2018-02-13T00:36:20.108] [INFO] cheese - inserting 1000 documents. first: Crusty bread and last: Mer Island +[2018-02-13T00:36:20.202] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:36:20.246] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:36:20.402] [INFO] cheese - inserting 1000 documents. first: PvM and last: Prince of Central Park (2000 film) +[2018-02-13T00:36:20.431] [INFO] cheese - inserting 1000 documents. first: Mike D and last: Derech Hashem +[2018-02-13T00:36:20.447] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:36:20.491] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OERde13 and last: Qaleh Qazi, East Azerbaijan +[2018-02-13T00:36:20.513] [INFO] cheese - inserting 1000 documents. first: Jonathan Holmes (disambiguation) and last: People’s Primary Healthcare Initiative KP +[2018-02-13T00:36:20.530] [INFO] cheese - inserting 1000 documents. first: Category:Baseball venues in Ohio and last: May Brahe +[2018-02-13T00:36:20.539] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:36:20.541] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:36:20.588] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:36:20.599] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:36:20.710] [INFO] cheese - inserting 1000 documents. first: Category:Islam infobox templates and last: Template:Course page/Tabs +[2018-02-13T00:36:20.765] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:36:20.828] [INFO] cheese - inserting 1000 documents. first: Elena Birkbeck and last: GUS staining +[2018-02-13T00:36:20.849] [INFO] cheese - inserting 1000 documents. first: Surekha Sikri and last: Cullahill +[2018-02-13T00:36:20.883] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:36:20.890] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:36:20.921] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Bala, East Azerbaijan and last: Template:POTD protected/2013-09-18 +[2018-02-13T00:36:20.959] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:36:20.967] [INFO] cheese - inserting 1000 documents. first: FC Schweinfurt 05 II and last: Template:WP California +[2018-02-13T00:36:20.971] [INFO] cheese - inserting 1000 documents. first: File:Kanon Wakeshima Unbalance by Me Cover.jpg and last: Category:1893-94 in Scottish football +[2018-02-13T00:36:21.008] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:36:21.017] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:36:21.144] [INFO] cheese - inserting 1000 documents. first: Gary Beach and last: Category:British novels +[2018-02-13T00:36:21.168] [INFO] cheese - inserting 1000 documents. first: Le Blockhaus d'Éperlecques and last: Template:1988 K-League Best XI +[2018-02-13T00:36:21.194] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:36:21.223] [INFO] cheese - inserting 1000 documents. first: Henry M. Paulson and last: Bombing of Zadar in World War II +[2018-02-13T00:36:21.236] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:36:21.256] [INFO] cheese - inserting 1000 documents. first: Category:1906-07 IAAUS men's basketball season and last: Category:1918-19 American college basketball standings templates +[2018-02-13T00:36:21.284] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:36:21.293] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:36:21.321] [INFO] cheese - inserting 1000 documents. first: Quruqchi Rudi and last: Paradisus Londinensis +[2018-02-13T00:36:21.358] [INFO] cheese - inserting 1000 documents. first: Homosexuality and Mormonism and last: Bethlehem Lutheran School +[2018-02-13T00:36:21.365] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:36:21.398] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:36:21.436] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Faxai and last: Nangong Shi +[2018-02-13T00:36:21.492] [INFO] cheese - inserting 1000 documents. first: Category:1910-11 in European association football leagues and last: Category:1921-22 in Italian football leagues +[2018-02-13T00:36:21.552] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:36:21.561] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:36:21.786] [INFO] cheese - inserting 1000 documents. first: File:Polymeroxidation.jpg and last: Template:Uw-notvand +[2018-02-13T00:36:21.788] [INFO] cheese - inserting 1000 documents. first: Rajamundry and last: Note book +[2018-02-13T00:36:21.834] [INFO] cheese - inserting 1000 documents. first: HIV-AIDS in New Zealand and last: File:Javier Gonzalez, economist.png +[2018-02-13T00:36:21.894] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:36:21.903] [INFO] cheese - inserting 1000 documents. first: Sullivan West Central School and last: Second Hand Band +[2018-02-13T00:36:21.941] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:36:21.952] [INFO] cheese - inserting 1000 documents. first: File:Avril Henry.jpg and last: Category:1941-42 in Irish association football +[2018-02-13T00:36:21.955] [INFO] cheese - inserting 1000 documents. first: Chinatown (Manchester) and last: Chris "Drama" Pfaff +[2018-02-13T00:36:21.956] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:36:22.012] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:36:22.023] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:36:22.064] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:36:22.417] [INFO] cheese - inserting 1000 documents. first: Category:1941-42 Pacific Coast Conference men's basketball season and last: Category:1947-48 in Italian football +[2018-02-13T00:36:22.430] [INFO] cheese - inserting 1000 documents. first: Comet Zhu–Balam and last: Template:Db-unfree-notice +[2018-02-13T00:36:22.496] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:36:22.520] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T00:36:22.572] [INFO] cheese - inserting 1000 documents. first: Al Barks and last: Joannicius (disambiguation) +[2018-02-13T00:36:22.613] [INFO] cheese - inserting 1000 documents. first: 4 Cheyne Walk and last: Category:Caribbean sportspeople +[2018-02-13T00:36:22.642] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:36:22.665] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:36:22.874] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Route 12 (1924) and last: National Workers' Movement (St. Vincent) +[2018-02-13T00:36:22.883] [INFO] cheese - inserting 1000 documents. first: Note-book and last: Congolese franc +[2018-02-13T00:36:22.886] [INFO] cheese - inserting 1000 documents. first: Bindura District and last: Template:Italictitle/sandbox +[2018-02-13T00:36:22.931] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T00:36:22.972] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:36:22.979] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T00:36:22.984] [INFO] cheese - inserting 1000 documents. first: Gonzap and last: Category:1963-64 NBA season +[2018-02-13T00:36:23.023] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:36:23.133] [INFO] cheese - inserting 1000 documents. first: Khadem Kandi and last: Wikipedia:GA/Music +[2018-02-13T00:36:23.157] [INFO] cheese - inserting 1000 documents. first: Microsoft Broadband Networking and last: List of former NTA Film Network affiliates +[2018-02-13T00:36:23.171] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:36:23.178] [INFO] cheese - inserting 1000 documents. first: Animal Wall and last: Asciidoc +[2018-02-13T00:36:23.194] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:36:23.224] [INFO] cheese - inserting 1000 documents. first: Category:1961-62 NHL season and last: History of jammu +[2018-02-13T00:36:23.236] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:36:23.251] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T00:36:23.336] [INFO] cheese - inserting 1000 documents. first: Template:Italictitle/testcases and last: Brăhăşoaia +[2018-02-13T00:36:23.373] [INFO] cheese - inserting 1000 documents. first: Steuben (glass) and last: Portal:Georgia (country)/Selected picture +[2018-02-13T00:36:23.388] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:36:23.420] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:36:23.474] [INFO] cheese - inserting 1000 documents. first: Tangata (spider) and last: Category:1977-78 in Maltese football +[2018-02-13T00:36:23.498] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:36:23.580] [INFO] cheese - inserting 1000 documents. first: Category:Lists of motorcycles and last: The RAND Journal of Economics +[2018-02-13T00:36:23.587] [INFO] cheese - inserting 1000 documents. first: Erectile bone and last: Andrew Stevens +[2018-02-13T00:36:23.603] [INFO] cheese - inserting 1000 documents. first: James Du Pré and last: Category:High-importance Pritzker Military Library-related articles +[2018-02-13T00:36:23.634] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:36:23.657] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:36:23.670] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:36:23.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/harryfox.com and last: PCOS infertility +[2018-02-13T00:36:23.762] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:36:23.793] [INFO] cheese - inserting 1000 documents. first: Brahasoaia and last: Luke, be a Jedi tonight +[2018-02-13T00:36:23.818] [INFO] cheese - inserting 1000 documents. first: Category:1980-81 in Portuguese football and last: Wikipedia:WikiProject Spam/LinkReports/healthy-joints.net +[2018-02-13T00:36:23.828] [INFO] cheese - inserting 1000 documents. first: Template:User KCL and last: Korean War Memorial +[2018-02-13T00:36:23.835] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:36:23.858] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:36:23.887] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:36:24.244] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Pritzker Military Library-related articles and last: Bossman (artist) +[2018-02-13T00:36:24.290] [INFO] cheese - inserting 1000 documents. first: Jim Rose Circus and last: Wikipedia:Today's featured article/August 27, 2005 +[2018-02-13T00:36:24.304] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:36:24.404] [INFO] cheese - inserting 1000 documents. first: Eucalyptus expressa and last: Template:ESPN NFL/doc +[2018-02-13T00:36:24.429] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:36:24.440] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Latvia articles by quality/1 and last: Angeles City Science High School +[2018-02-13T00:36:24.571] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T00:36:24.597] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T00:36:24.631] [INFO] cheese - inserting 1000 documents. first: Vashishthiputra Pulumavi and last: Portal:San Diego-Tijuana/Tab2 +[2018-02-13T00:36:24.662] [INFO] cheese - inserting 1000 documents. first: Category:User dz-5 and last: Portal:A Nightmare on Elm Street/Did you know/archive +[2018-02-13T00:36:24.712] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T00:36:24.777] [INFO] cheese - inserting 1000 documents. first: Charles Grosvenor and last: Wilfred White (ice hockey) +[2018-02-13T00:36:24.795] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T00:36:24.874] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T00:36:25.059] [INFO] cheese - inserting 1000 documents. first: Pointrest, Missouri and last: Category:Former houses in the London Borough of Lambeth +[2018-02-13T00:36:25.126] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:36:25.184] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Economics articles and last: Teribersky Raion +[2018-02-13T00:36:25.233] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:36:25.236] [INFO] cheese - inserting 1000 documents. first: Central of Georgia "Big Apple" and last: Ivan I of Russia +[2018-02-13T00:36:25.248] [INFO] cheese - inserting 1000 documents. first: Portal:Saguenay-Lac-Saint-Jean/Wikimedia and last: Mohammed Jiwa Zainal al-Abidin I +[2018-02-13T00:36:25.274] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/August 28, 2005 and last: Intermediate representation +[2018-02-13T00:36:25.298] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:36:25.300] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:36:25.324] [INFO] cheese - inserting 1000 documents. first: PXC and last: Category:Montenegrin language +[2018-02-13T00:36:25.340] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:36:25.382] [INFO] cheese - inserting 1000 documents. first: Corinne Chapelle and last: Charlie Silver +[2018-02-13T00:36:25.395] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:36:25.448] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:36:25.522] [INFO] cheese - inserting 1000 documents. first: Template:2013–14 ISU SS WC1 and last: Aqbolagh-e Hasan Kandi +[2018-02-13T00:36:25.567] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:36:25.672] [INFO] cheese - inserting 1000 documents. first: Intaglio: A Novel in Six Stories and last: Category:Populated places in Jackson County, Michigan +[2018-02-13T00:36:25.696] [INFO] cheese - inserting 1000 documents. first: Category:Catholic Church in Iceland and last: Wikipedia:Articles for deletion/Dreadnaut +[2018-02-13T00:36:25.714] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:36:25.736] [INFO] cheese - inserting 1000 documents. first: File:David-Thomas-Broughton-300x300.jpg and last: Hallgrímskirkja (Hvalfirði) +[2018-02-13T00:36:25.741] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:36:25.783] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:36:25.860] [INFO] cheese - inserting 1000 documents. first: Calidota laqueata and last: Wikipedia:Reference desk/Archives/Language/2013 September 16 +[2018-02-13T00:36:25.862] [INFO] cheese - inserting 1000 documents. first: Nickel oxide and last: Wikipedia:Articles for deletion/Tim Roll-Pickering +[2018-02-13T00:36:25.868] [INFO] cheese - inserting 1000 documents. first: Of Other Worlds and last: Wikipedia:Articles for deletion/New Taoist Community +[2018-02-13T00:36:25.900] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:36:25.927] [INFO] cheese - inserting 1000 documents. first: Mmm, Mmm, Mmm, Mmm and last: Buford "Mad Dog" Tannen +[2018-02-13T00:36:25.931] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:36:25.932] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:36:26.010] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:36:26.183] [INFO] cheese - inserting 1000 documents. first: Wet Hot American Summer: Ten Years Later and last: Camp Kia Kima +[2018-02-13T00:36:26.237] [INFO] cheese - inserting 1000 documents. first: Separating set and last: Highland, NY +[2018-02-13T00:36:26.255] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Hornsby and last: Ottoman Airforce +[2018-02-13T00:36:26.256] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:36:26.321] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:36:26.347] [INFO] cheese - inserting 1000 documents. first: Iya, Iran and last: Uralic–Yukaghir +[2018-02-13T00:36:26.357] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:36:26.519] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:36:26.522] [INFO] cheese - inserting 1000 documents. first: Maharashtra State Highway 151 and last: Coelogyne corymbosa +[2018-02-13T00:36:26.594] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:36:26.764] [INFO] cheese - inserting 1000 documents. first: File:Catoptric theatre.jpg and last: Darnley Island (Queensland) +[2018-02-13T00:36:26.820] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T00:36:26.896] [INFO] cheese - inserting 1000 documents. first: Papa Wemba discography and last: Alexandre Gama (entrepreneur) +[2018-02-13T00:36:26.951] [INFO] cheese - inserting 1000 documents. first: Haravrd and last: Jose Vasconcelos +[2018-02-13T00:36:26.965] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:36:27.034] [INFO] cheese - inserting 1000 documents. first: Template:2012–13 PBA Commisioner's Cup Playoffs bracket and last: Topdog vs. Underdog +[2018-02-13T00:36:27.037] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T00:36:27.070] [INFO] cheese - inserting 1000 documents. first: File:Live Radio City Music Hall 2003 album cover.jpg and last: Wikipedia:Articles for creation/2007-10-30 +[2018-02-13T00:36:27.080] [INFO] cheese - inserting 1000 documents. first: Gary Buchanan and last: NMAMIT, Nitte +[2018-02-13T00:36:27.088] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:36:27.150] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:36:27.171] [INFO] cheese - inserting 1000 documents. first: Adarnase V of Tao and last: List of port grapes +[2018-02-13T00:36:27.265] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:36:27.270] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T00:36:27.306] [INFO] cheese - inserting 1000 documents. first: Erub Island and last: Gallo-Romans +[2018-02-13T00:36:27.392] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:36:27.458] [INFO] cheese - inserting 1000 documents. first: Symmetry minute and last: Template:Did you know nominations/Coryloides +[2018-02-13T00:36:27.462] [INFO] cheese - inserting 1000 documents. first: Halal Snack Pack and last: Missa Tu es Petrus (Palestrina) +[2018-02-13T00:36:27.508] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:36:27.527] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:36:27.597] [INFO] cheese - inserting 1000 documents. first: Ad-Dhahiriya and last: Roman Catholic Archdiocese of Avignon +[2018-02-13T00:36:27.619] [INFO] cheese - inserting 1000 documents. first: Category:Endorheic lakes of Australia and last: Category:Åland Islands user templates +[2018-02-13T00:36:27.638] [INFO] cheese - inserting 1000 documents. first: File:JakesThing.jpg and last: Calcium-54 +[2018-02-13T00:36:27.645] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:36:27.651] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:36:27.673] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:36:27.689] [INFO] cheese - inserting 1000 documents. first: Big penis and last: Sanford Independence Bowl +[2018-02-13T00:36:27.792] [INFO] cheese - inserting 1000 documents. first: Khamas (raga) and last: The Unguarded Moment (song) +[2018-02-13T00:36:27.794] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:36:27.819] [INFO] cheese - inserting 1000 documents. first: File:WBXX theedge104.9 logo.png and last: Ćeran +[2018-02-13T00:36:27.826] [INFO] cheese - inserting 1000 documents. first: Category:Fellows of Queens' College, Cambridge and last: Caledonia-3 Vermont Representative District, 2002–12 +[2018-02-13T00:36:27.853] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:36:27.871] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:36:27.956] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:36:28.067] [INFO] cheese - inserting 1000 documents. first: Ausferrite and last: Wikipedia:Miscellany for deletion/Portal:Forums +[2018-02-13T00:36:28.118] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:36:28.144] [INFO] cheese - inserting 1000 documents. first: Calcium-55 and last: Ldm +[2018-02-13T00:36:28.188] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:36:28.237] [INFO] cheese - inserting 1000 documents. first: Udel (polymer) and last: Category:Damallsvenskan seasons +[2018-02-13T00:36:28.274] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:36:28.292] [INFO] cheese - inserting 1000 documents. first: Injac and last: 1st Pioneer Battalion (Australia) +[2018-02-13T00:36:28.301] [INFO] cheese - inserting 1000 documents. first: Gibraltar Three and last: John Gale (theologian) +[2018-02-13T00:36:28.308] [INFO] cheese - inserting 1000 documents. first: Clos St. Denis Grand cru and last: Wikipedia:Version 1.0 Editorial Team/St. Louis Cardinals articles by quality statistics +[2018-02-13T00:36:28.335] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:36:28.351] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:36:28.390] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:36:28.432] [INFO] cheese - inserting 1000 documents. first: MainStay Independence Bowl and last: Weaubleau structure +[2018-02-13T00:36:28.492] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:36:28.499] [INFO] cheese - inserting 1000 documents. first: Maybach Music Group Presents Self Made and last: Category:Chilean cumbia +[2018-02-13T00:36:28.512] [INFO] cheese - inserting 1000 documents. first: 欧阳修 and last: Cypripedium franchetii +[2018-02-13T00:36:28.544] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:36:28.563] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:36:28.723] [INFO] cheese - inserting 1000 documents. first: John Sidney Smith and last: Middlesbrough conurbation +[2018-02-13T00:36:28.725] [INFO] cheese - inserting 1000 documents. first: W*ING World Tag Team Championship and last: Hannelore Auer +[2018-02-13T00:36:28.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for creation/2006-06-02 and last: File:Downtwo.jpg +[2018-02-13T00:36:28.764] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:36:28.771] [INFO] cheese - inserting 1000 documents. first: Nils Fredrik Rønnbeck and last: Heroin (album) +[2018-02-13T00:36:28.778] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:36:28.818] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:36:28.826] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:36:28.916] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Bible/Images and last: Konoike Chiaki +[2018-02-13T00:36:28.951] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:36:29.024] [INFO] cheese - inserting 1000 documents. first: Template:The Pharmacology Barnstar and last: You Adachi +[2018-02-13T00:36:29.083] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:36:29.094] [INFO] cheese - inserting 1000 documents. first: Etsuko Kozakura and last: Inertial +[2018-02-13T00:36:29.135] [INFO] cheese - inserting 1000 documents. first: Mike Thompson (umpire) and last: Foreign Policy: Understanding ISIS, The Middle East, and The Complexity of The Syrian War +[2018-02-13T00:36:29.220] [INFO] cheese - inserting 1000 documents. first: Tibetan-Chinese politics and last: Pine Lake (Duxbury, Massachusetts) +[2018-02-13T00:36:29.235] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:36:29.275] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:36:29.303] [INFO] cheese - inserting 1000 documents. first: Hawzien and last: Sierra de Teruel +[2018-02-13T00:36:29.400] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:36:29.460] [INFO] cheese - inserting 1000 documents. first: Bartholomeus and last: Epidendrum callista +[2018-02-13T00:36:29.462] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:36:29.502] [INFO] cheese - inserting 1000 documents. first: Phill harrison and last: Bloodlust (comics) +[2018-02-13T00:36:29.524] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:36:29.581] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:36:29.676] [INFO] cheese - inserting 1000 documents. first: The Book of Mormon (soundtrack) and last: File:Little-Brown-Company-logo.PNG +[2018-02-13T00:36:29.727] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:36:29.800] [INFO] cheese - inserting 1000 documents. first: File:Graceful4 cddvd.jpg and last: Fox Business Happy Hour +[2018-02-13T00:36:29.844] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:36:29.881] [INFO] cheese - inserting 1000 documents. first: Mr. Bill the Conqueror and last: Fellow of the American Society for Microbiology +[2018-02-13T00:36:29.912] [INFO] cheese - inserting 1000 documents. first: Dendrobium bronckartii and last: St. Mark's, Connah's Quay +[2018-02-13T00:36:29.928] [INFO] cheese - inserting 1000 documents. first: Henry Petrie (antiquary) and last: Wikipedia:Articles for deletion/Signs of Reason +[2018-02-13T00:36:29.943] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:36:29.951] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:36:29.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Infobox colors and last: The housemartins +[2018-02-13T00:36:29.977] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:36:30.029] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:36:30.139] [INFO] cheese - inserting 1000 documents. first: Omaha Market House and last: Template:Boxing2011PanAmGames +[2018-02-13T00:36:30.153] [INFO] cheese - inserting 1000 documents. first: Brian bouldrey and last: Brook Village, Nova Scotia +[2018-02-13T00:36:30.167] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:36:30.180] [INFO] cheese - inserting 1000 documents. first: Jang Dong-Gun and last: VT52 +[2018-02-13T00:36:30.194] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:36:30.247] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T00:36:30.323] [INFO] cheese - inserting 1000 documents. first: Granai airstrike and last: N. Santosh Hegde +[2018-02-13T00:36:30.339] [INFO] cheese - inserting 1000 documents. first: Category:1956 disasters in the United States and last: Arquimínio Rodrigues da Costas +[2018-02-13T00:36:30.363] [INFO] cheese - inserting 1000 documents. first: 1962 Grammys and last: File:Narracan Council 1993.jpg +[2018-02-13T00:36:30.382] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:36:30.392] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:36:30.404] [INFO] cheese - inserting 1000 documents. first: The American Academy of Arts and Sciences and last: Wikipedia:Articles for deletion/Dylan pool +[2018-02-13T00:36:30.409] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:36:30.465] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:36:30.536] [INFO] cheese - inserting 1000 documents. first: BAe/McDonnell-Douglas T-45 Goshawk and last: F1 Lotus Team +[2018-02-13T00:36:30.581] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:36:30.690] [INFO] cheese - inserting 1000 documents. first: Thomas Dunhill and last: Electrical polarity +[2018-02-13T00:36:30.742] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:36:30.800] [INFO] cheese - inserting 1000 documents. first: Category:FA Women's Premier League Plate and last: Category:Culture in Central Greece +[2018-02-13T00:36:30.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gui4Cli and last: Large-leaved dendrobium +[2018-02-13T00:36:30.883] [INFO] cheese - inserting 1000 documents. first: William Leach (canoer) and last: Yaraldzha +[2018-02-13T00:36:30.883] [INFO] cheese - inserting 1000 documents. first: Arthur Frederick Pickard and last: Essential mineral +[2018-02-13T00:36:30.923] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:36:30.927] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:36:30.957] [INFO] cheese - inserting 1000 documents. first: American - Greenlandic relations and last: Xiamen–Shenzhen Railway +[2018-02-13T00:36:30.983] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:36:31.027] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:36:31.093] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:36:31.109] [INFO] cheese - inserting 1000 documents. first: Cozy III and last: Vesicular monoamine transporter 1 +[2018-02-13T00:36:31.211] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:36:31.303] [INFO] cheese - inserting 1000 documents. first: Raymond George and last: The Black and White Years +[2018-02-13T00:36:31.351] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:36:31.387] [INFO] cheese - inserting 1000 documents. first: Yaralucheh and last: Sorkheh Kamran +[2018-02-13T00:36:31.390] [INFO] cheese - inserting 1000 documents. first: Hatta I Cabinet and last: Strontium-97 +[2018-02-13T00:36:31.412] [INFO] cheese - inserting 1000 documents. first: Slender pitcher-plant and last: Billy Hughes (footballer, born 1865) +[2018-02-13T00:36:31.443] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:36:31.461] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:36:31.469] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:36:31.607] [INFO] cheese - inserting 1000 documents. first: Philip Hooker and last: Kyun Hota Hai Pyarrr +[2018-02-13T00:36:31.611] [INFO] cheese - inserting 1000 documents. first: Hanseat III and last: Wikipedia:Articles for deletion/List of Doctor Who Adventures serials +[2018-02-13T00:36:31.641] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:36:31.656] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:36:31.672] [INFO] cheese - inserting 1000 documents. first: File:Niagarahostel salmon.jpg and last: Intruder in the dust +[2018-02-13T00:36:31.716] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:36:31.723] [INFO] cheese - inserting 1000 documents. first: List of alumni of the University of Cambridge and last: KV. 208 +[2018-02-13T00:36:31.734] [INFO] cheese - inserting 1000 documents. first: Strontium-98 and last: Polonium-203 +[2018-02-13T00:36:31.776] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:36:31.799] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:36:31.842] [INFO] cheese - inserting 1000 documents. first: Tatar-e Olya, East Azerbaijan and last: Belgium men's national football team +[2018-02-13T00:36:31.867] [INFO] cheese - inserting 1000 documents. first: List of books about manuscripts and last: Upper Pickwick +[2018-02-13T00:36:31.903] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:36:31.909] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:36:31.987] [INFO] cheese - inserting 1000 documents. first: Devinder Pal Singh Bhullar and last: Kyengera +[2018-02-13T00:36:32.023] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:36:32.028] [INFO] cheese - inserting 1000 documents. first: Anyphaena pallidula and last: Bosnian parliament +[2018-02-13T00:36:32.077] [INFO] cheese - inserting 1000 documents. first: AN/AVQ23E and last: Category:Water transport in Israel +[2018-02-13T00:36:32.084] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:36:32.103] [INFO] cheese - inserting 1000 documents. first: Polonium-204 and last: Nobelium-248 +[2018-02-13T00:36:32.109] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:36:32.160] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:36:32.325] [INFO] cheese - inserting 1000 documents. first: Baltalı and last: MKAK +[2018-02-13T00:36:32.359] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:36:32.388] [INFO] cheese - inserting 1000 documents. first: Sutra of Complete Enlightenment and last: Portal:Horror/This day in horror archive/August/19 +[2018-02-13T00:36:32.417] [INFO] cheese - inserting 1000 documents. first: Yttrium-76 and last: Wikipedia:WikiProject Spam/LinkReports/goroda.rossii.alf.navvigator.ru +[2018-02-13T00:36:32.433] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:36:32.443] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:36:32.451] [INFO] cheese - inserting 1000 documents. first: Salman Al Khalifa and last: Mayor of Columbus, OH +[2018-02-13T00:36:32.555] [INFO] cheese - inserting 1000 documents. first: KV 208 and last: Supertec +[2018-02-13T00:36:32.552] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:36:32.617] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:36:32.645] [INFO] cheese - inserting 1000 documents. first: Catochrysops lithargyria and last: The Breakup, Part 2 +[2018-02-13T00:36:32.721] [INFO] cheese - inserting 1000 documents. first: File:ImgCadaQueBelanova.jpg and last: Scio me nihil scire +[2018-02-13T00:36:32.751] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:36:32.807] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:36:32.842] [INFO] cheese - inserting 1000 documents. first: Mercury-185 and last: U21 2009 +[2018-02-13T00:36:32.883] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:36:32.884] [INFO] cheese - inserting 1000 documents. first: Category:1971 in South American football leagues and last: Bengal's snake-Eel +[2018-02-13T00:36:32.941] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:36:33.058] [INFO] cheese - inserting 1000 documents. first: Category:19th-century merchants and last: Category:East African cricket captains +[2018-02-13T00:36:33.085] [INFO] cheese - inserting 1000 documents. first: Portal:Horror/This day in horror archive/August/2 and last: File:Union Chapel.gif +[2018-02-13T00:36:33.094] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:36:33.135] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:36:33.211] [INFO] cheese - inserting 1000 documents. first: Bengals snake eel and last: Category:Boxing at the 1998 Asian Games +[2018-02-13T00:36:33.225] [INFO] cheese - inserting 1000 documents. first: Home Is Where My Feet Are and last: Michael Psellus +[2018-02-13T00:36:33.237] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:36:33.273] [INFO] cheese - inserting 1000 documents. first: Jeremy Herbert and last: Chersky (disambiguation) +[2018-02-13T00:36:33.272] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:36:33.280] [INFO] cheese - inserting 1000 documents. first: File:George David Freeman.jpg and last: Category:Michael Stearns albums +[2018-02-13T00:36:33.313] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:36:33.337] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:36:33.424] [INFO] cheese - inserting 1000 documents. first: Coral reefs and last: Wikipedia:Articles for deletion/Esquilax +[2018-02-13T00:36:33.435] [INFO] cheese - inserting 1000 documents. first: Istituto di Credito Fondiario delle Venezie and last: Visa requirements for South Ossetia citizens +[2018-02-13T00:36:33.470] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:36:33.497] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T00:36:33.597] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 276 and last: Almachovan +[2018-02-13T00:36:33.632] [INFO] cheese - inserting 1000 documents. first: Bjorn Fratangelo and last: Five-hundred-meter Aperture Spherical radio Telescope +[2018-02-13T00:36:33.638] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:36:33.676] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:36:33.685] [INFO] cheese - inserting 1000 documents. first: Ottawa Township and last: Puelia +[2018-02-13T00:36:33.696] [INFO] cheese - inserting 1000 documents. first: Light of the World (Jesus) and last: MRNA (guanine-N7-)-methyltransferase +[2018-02-13T00:36:33.741] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:36:33.753] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:36:33.766] [INFO] cheese - inserting 1000 documents. first: Constantine IX Monomachus and last: Gay Fest +[2018-02-13T00:36:33.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Alchemy213/Darryl "Daz" Coppins and last: Template:2016-17 in Croatian football +[2018-02-13T00:36:33.819] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:36:33.855] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:36:33.971] [INFO] cheese - inserting 1000 documents. first: Bayanlucheh and last: Andrew Nicholas Bonaparte-Wyse +[2018-02-13T00:36:33.989] [INFO] cheese - inserting 1000 documents. first: 50d and last: Wikipedia:WikiProject Spam/LinkReports/writingexcuses.com +[2018-02-13T00:36:33.998] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:36:34.030] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:36:34.047] [INFO] cheese - inserting 1000 documents. first: Game mapping and last: File:VCWilliamKenny1.jpg +[2018-02-13T00:36:34.148] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:36:34.173] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Followingfireworks and last: Findlay Township +[2018-02-13T00:36:34.197] [INFO] cheese - inserting 1000 documents. first: Curtiss Mansion and last: Paul Cox +[2018-02-13T00:36:34.203] [INFO] cheese - inserting 1000 documents. first: Raddia and last: Mika Penniman +[2018-02-13T00:36:34.216] [INFO] cheese - inserting 1000 documents. first: Photothermal spectroscopy and last: File:Screenshot-fontproblem1.jpg +[2018-02-13T00:36:34.254] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:36:34.262] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:36:34.345] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:36:34.384] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:36:34.402] [INFO] cheese - inserting 1000 documents. first: Steriruncinated 7-demicube and last: Cao Loc District +[2018-02-13T00:36:34.483] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:36:34.561] [INFO] cheese - inserting 1000 documents. first: McGlusky the Sea Rover and last: Wikipedia:WikiProject Spam/Local/my-xbox360.com +[2018-02-13T00:36:34.630] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:36:34.738] [INFO] cheese - inserting 1000 documents. first: BRE (disambiguation) and last: Category:AfC submissions by date/10 July 2009 +[2018-02-13T00:36:34.782] [INFO] cheese - inserting 1000 documents. first: Hits South America (A-Ha EP) and last: Wikipedia:Choosing Wisely/American Association of Critical-Care Nurses +[2018-02-13T00:36:34.776] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:36:34.810] [INFO] cheese - inserting 1000 documents. first: Inman park and last: Damn! I Wish I Was Your Lover +[2018-02-13T00:36:34.817] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whitko marching pride and last: Weng (Isar) +[2018-02-13T00:36:34.833] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:36:34.846] [INFO] cheese - inserting 1000 documents. first: Bao Thang District and last: 2013 World Archery Championships – Compound Mixed Team +[2018-02-13T00:36:34.848] [INFO] cheese - inserting 1000 documents. first: Eislingen and last: Waikino Music Festival +[2018-02-13T00:36:34.884] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:36:34.885] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:36:34.913] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:36:34.926] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:36:35.015] [INFO] cheese - inserting 1000 documents. first: Al Qubbah, Libya and last: Syd Kitchen +[2018-02-13T00:36:35.060] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:36:35.117] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/11 July 2009 and last: Category:1791 poems +[2018-02-13T00:36:35.147] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:36:35.202] [INFO] cheese - inserting 1000 documents. first: Westendorf (Landkreis Augsburg) and last: Coactivator +[2018-02-13T00:36:35.237] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:36:35.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wiki Loves Women/Volunteers and last: Dlugy +[2018-02-13T00:36:35.294] [INFO] cheese - inserting 1000 documents. first: Scouting in Londonderry and last: Mørejarl +[2018-02-13T00:36:35.302] [INFO] cheese - inserting 1000 documents. first: Baltimore Blast (1980–1992) and last: Sistema Uniforme de Mejora Académica (SUMA) +[2018-02-13T00:36:35.328] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:36:35.338] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:36:35.339] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:36:35.349] [INFO] cheese - inserting 1000 documents. first: Wayang Wong and last: File:Ellis-fred-1919.tif +[2018-02-13T00:36:35.385] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:36:35.454] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fairuzfan.com and last: Damnatio ad bestias +[2018-02-13T00:36:35.490] [INFO] cheese - inserting 1000 documents. first: Ahmedi and last: Jorge Daponte +[2018-02-13T00:36:35.491] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:36:35.498] [INFO] cheese - inserting 1000 documents. first: Pietari Inkinen and last: Septomazzantia phaseolorum +[2018-02-13T00:36:35.534] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:36:35.563] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:36:35.590] [INFO] cheese - inserting 1000 documents. first: List of county roads in Bay County, Florida and last: Hannibal Lecter series +[2018-02-13T00:36:35.627] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:36:35.775] [INFO] cheese - inserting 1000 documents. first: Photography in the United States of America and last: Black-eared catbird +[2018-02-13T00:36:35.862] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/apo-opa.org and last: Ship of Fools (song) +[2018-02-13T00:36:35.924] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:36:35.978] [INFO] cheese - inserting 1000 documents. first: Deanne cheuk and last: Taiyo o nusunda otoko +[2018-02-13T00:36:36.001] [INFO] cheese - inserting 1000 documents. first: Piptoporus elatinus and last: Marptusa oppressa +[2018-02-13T00:36:36.012] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:36:36.038] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:36:36.089] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:36:36.137] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Space exploration articles by quality/8 and last: Confed Cup +[2018-02-13T00:36:36.206] [INFO] cheese - inserting 1000 documents. first: Persecution of secularists in Bangladesh and last: List of people with last name Wallman +[2018-02-13T00:36:36.211] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:36:36.249] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:36:36.446] [INFO] cheese - inserting 1000 documents. first: Scindalma semitostum and last: Saffron Walden Grammar School +[2018-02-13T00:36:36.452] [INFO] cheese - inserting 1000 documents. first: Rochford, South Dakota and last: Galway Warriors +[2018-02-13T00:36:36.462] [INFO] cheese - inserting 1000 documents. first: List of people with last name Walters and last: List of people with the last name Voyles +[2018-02-13T00:36:36.472] [INFO] cheese - inserting 1000 documents. first: John P. Angelos and last: Saginaw Township, MI +[2018-02-13T00:36:36.473] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:36:36.480] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T00:36:36.508] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T00:36:36.514] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:36:36.591] [INFO] cheese - inserting 1000 documents. first: File:A VideoCover Japan.jpg and last: Agrilozodes +[2018-02-13T00:36:36.668] [INFO] cheese - inserting 1000 documents. first: List of people with the last name Wadding and last: People with last name Sweeney +[2018-02-13T00:36:36.668] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:36:36.708] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T00:36:36.742] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Our Last Day To Live and last: Himantoglossum hircinum ssp. caprinum +[2018-02-13T00:36:36.784] [INFO] cheese - inserting 1000 documents. first: Pholiota filaris and last: French ship Protée +[2018-02-13T00:36:36.804] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:36:36.808] [INFO] cheese - inserting 1000 documents. first: BML and last: Meifumado +[2018-02-13T00:36:36.813] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:36:36.825] [INFO] cheese - inserting 1000 documents. first: Valley Christian High School (San Jose, CA) and last: Brisbane Planetarium +[2018-02-13T00:36:36.863] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:36:36.877] [INFO] cheese - inserting 1000 documents. first: People with last name Swinburne and last: People with the last name Shown +[2018-02-13T00:36:36.886] [INFO] cheese - batch complete in: 1.323 secs +[2018-02-13T00:36:36.909] [INFO] cheese - batch complete in: 0.201 secs +[2018-02-13T00:36:36.996] [INFO] cheese - inserting 1000 documents. first: Faisal Saigol and last: Al P. Martinich +[2018-02-13T00:36:37.037] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:36:37.044] [INFO] cheese - inserting 1000 documents. first: People with the last name Shurtleff and last: Ryan (last name) +[2018-02-13T00:36:37.094] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T00:36:37.130] [INFO] cheese - inserting 1000 documents. first: Template:Australian Film Institute Award for Best Actress in a Leading Role 1971-1979 and last: Women's Full-Contact at W.A.K.O. European Championships 2004 Budva -48 kg +[2018-02-13T00:36:37.145] [INFO] cheese - inserting 1000 documents. first: Himantoglossum caprinum ssp. rumelicum and last: Xylina innominata +[2018-02-13T00:36:37.174] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:36:37.197] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:36:37.226] [INFO] cheese - inserting 1000 documents. first: Cassia bicapsularis and last: Thomas Paterson +[2018-02-13T00:36:37.262] [INFO] cheese - inserting 1000 documents. first: Agbebi and last: Thomas Hepburn +[2018-02-13T00:36:37.283] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:36:37.300] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:36:37.318] [INFO] cheese - inserting 1000 documents. first: Escape From The Studio Tour and last: Wicked witch +[2018-02-13T00:36:37.377] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:36:37.424] [INFO] cheese - inserting 1000 documents. first: Ryeland (last name) and last: Klara Grahn +[2018-02-13T00:36:37.504] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:36:37.625] [INFO] cheese - inserting 1000 documents. first: Ralph (magazine) and last: Constitution of Tennessee +[2018-02-13T00:36:37.631] [INFO] cheese - inserting 1000 documents. first: Lithophane illecebra and last: Academic grading in hungary +[2018-02-13T00:36:37.669] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:36:37.714] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:36:37.756] [INFO] cheese - inserting 1000 documents. first: Category:Belarus articles by importance and last: Graculus perspicillatus +[2018-02-13T00:36:37.806] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:36:37.831] [INFO] cheese - inserting 1000 documents. first: Hugh Esmor Huxley and last: Diocese of Breslau +[2018-02-13T00:36:37.838] [INFO] cheese - inserting 1000 documents. first: Daddy, Mammy, Juddy, Jimmy, Jully and all the family and last: Diario Norte +[2018-02-13T00:36:37.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Timothy Grayem and last: Former Residence of Ba Jin +[2018-02-13T00:36:37.881] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:36:37.892] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:36:37.963] [INFO] cheese - inserting 1000 documents. first: Academic grading in iceland and last: Administrative divisions of argentina +[2018-02-13T00:36:37.972] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:36:38.012] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:36:38.129] [INFO] cheese - inserting 1000 documents. first: Poria crocipora and last: Phacidium minutissimum +[2018-02-13T00:36:38.140] [INFO] cheese - inserting 1000 documents. first: 50 yen and last: List of number-one hits of 2011 (South Korea) +[2018-02-13T00:36:38.162] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:36:38.273] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:36:38.348] [INFO] cheese - inserting 1000 documents. first: Administrative divisions of arkhangelsk oblast and last: St. Roch Church +[2018-02-13T00:36:38.377] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:36:38.454] [INFO] cheese - inserting 1000 documents. first: Bishopric of Breslau and last: Not So Suite 16 (The Suite Life of Zack and Cody episode) +[2018-02-13T00:36:38.471] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1073 and last: Chassidic Judaism +[2018-02-13T00:36:38.472] [INFO] cheese - inserting 1000 documents. first: Pennisetum americanum and last: Polyporus separans +[2018-02-13T00:36:38.513] [INFO] cheese - inserting 1000 documents. first: Anna Ksok and last: Apollon Tsochlas +[2018-02-13T00:36:38.531] [INFO] cheese - inserting 1000 documents. first: Norwood (LIRR station) and last: Wikipedia:WikiProject Microsoft collaboration +[2018-02-13T00:36:38.546] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:36:38.551] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:36:38.607] [INFO] cheese - inserting 1000 documents. first: Category:2016 in Malawi and last: Baily (family name) +[2018-02-13T00:36:38.609] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:36:38.609] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T00:36:38.654] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:36:38.685] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:36:38.696] [INFO] cheese - inserting 1000 documents. first: Agariste of sicyon and last: Alabama and florida railway +[2018-02-13T00:36:38.760] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:36:38.867] [INFO] cheese - inserting 1000 documents. first: Bain (family name) and last: The Twisters +[2018-02-13T00:36:38.891] [INFO] cheese - batch complete in: 0.206 secs +[2018-02-13T00:36:38.907] [INFO] cheese - inserting 1000 documents. first: Mycosphaerella ceres and last: Rot (Danube) +[2018-02-13T00:36:39.013] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:36:39.042] [INFO] cheese - inserting 1000 documents. first: Alabama and gulf coast railway and last: Always right as in we are +[2018-02-13T00:36:39.110] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:36:39.234] [INFO] cheese - inserting 1000 documents. first: Nigel Edward Seely, 5th Baronet and last: Mi-Ok Lee +[2018-02-13T00:36:39.272] [INFO] cheese - inserting 1000 documents. first: Sexualities (journal) and last: Category:South Sudan templates +[2018-02-13T00:36:39.274] [INFO] cheese - inserting 1000 documents. first: Henry Dickerson McDaniel and last: SBC Classic +[2018-02-13T00:36:39.290] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:36:39.313] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:36:39.339] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:36:39.354] [INFO] cheese - inserting 1000 documents. first: Always where i need to be and last: Anna paulowna railway station +[2018-02-13T00:36:39.372] [INFO] cheese - inserting 1000 documents. first: Category:Transistors and last: Common collared lizard +[2018-02-13T00:36:39.380] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T00:36:39.398] [INFO] cheese - inserting 1000 documents. first: Ozonium auricomum and last: Dothidea melanops +[2018-02-13T00:36:39.426] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:36:39.434] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:36:39.460] [INFO] cheese - inserting 1000 documents. first: 2001 Latvian Football Cup and last: Bharane +[2018-02-13T00:36:39.524] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:36:39.614] [INFO] cheese - inserting 1000 documents. first: Anna rutgers van der loeff and last: Armenians in italy +[2018-02-13T00:36:39.636] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:36:39.706] [INFO] cheese - inserting 1000 documents. first: Portal:Supreme Court of the United States/Selected biography/Layout and last: Hawkman (The Batman) +[2018-02-13T00:36:39.747] [INFO] cheese - inserting 1000 documents. first: Allez Oop and last: The Sun Always Shines on TV +[2018-02-13T00:36:39.753] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:36:39.788] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:36:39.800] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mokshanine and last: Cincinati Bengals +[2018-02-13T00:36:39.812] [INFO] cheese - inserting 1000 documents. first: Armenians in jordan and last: Australian championships in athletics +[2018-02-13T00:36:39.822] [INFO] cheese - inserting 1000 documents. first: National Quality Research Center and last: Category:Tottenham +[2018-02-13T00:36:39.835] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:36:39.851] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:36:39.886] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:36:39.910] [INFO] cheese - inserting 1000 documents. first: Kim Tae Hwan (actor born 1992) and last: Meridan State College +[2018-02-13T00:36:39.970] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:36:40.051] [INFO] cheese - inserting 1000 documents. first: St Mary's Church, Hayling Island and last: United States of America - Malawi relations +[2018-02-13T00:36:40.080] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:36:40.127] [INFO] cheese - inserting 1000 documents. first: Arne Wilhelm Kaurin Tiselius and last: Toyota Cressida +[2018-02-13T00:36:40.143] [INFO] cheese - inserting 1000 documents. first: Green Lantern (The Batman) and last: Pseudoraja fischeri +[2018-02-13T00:36:40.201] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:36:40.202] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:36:40.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/IWGP World Heavyweight Championship and last: Differential nonlinearity +[2018-02-13T00:36:40.278] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:36:40.315] [INFO] cheese - inserting 1000 documents. first: Balgreen halt railway station and last: Baron bourke of castleconnell +[2018-02-13T00:36:40.331] [INFO] cheese - inserting 1000 documents. first: Cincinatti Bengals and last: Felt Mansion +[2018-02-13T00:36:40.337] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:36:40.376] [INFO] cheese - inserting 1000 documents. first: Flaming cliffs 3 and last: File:Vetri (season 2).jpg +[2018-02-13T00:36:40.385] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:36:40.411] [INFO] cheese - inserting 1000 documents. first: Algrœn and last: Tyler Mcniven +[2018-02-13T00:36:40.443] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:36:40.492] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:36:40.693] [INFO] cheese - inserting 1000 documents. first: Baron brabazon of tara and last: Battle of ashdown +[2018-02-13T00:36:40.728] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:36:40.760] [INFO] cheese - inserting 1000 documents. first: Gladys Amelia Anslow and last: Shilong Road (Shanghai Metro) +[2018-02-13T00:36:40.820] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:36:40.848] [INFO] cheese - inserting 1000 documents. first: Neve Eitan and last: Acyl CoA Cholesteryl Acyl Transferase +[2018-02-13T00:36:40.902] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:36:40.906] [INFO] cheese - inserting 1000 documents. first: Battle of asiago and last: Battle of friedland +[2018-02-13T00:36:40.928] [INFO] cheese - inserting 1000 documents. first: Carlos Narciso Chaínho and last: Matthew 10:20 +[2018-02-13T00:36:40.934] [INFO] cheese - batch complete in: 0.206 secs +[2018-02-13T00:36:40.939] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Prowers County, Colorado and last: Fellini's Pizza +[2018-02-13T00:36:40.946] [INFO] cheese - inserting 1000 documents. first: Julie Benz and last: Request For Comments +[2018-02-13T00:36:40.955] [INFO] cheese - inserting 1000 documents. first: Geoff Blakely and last: Category:Churches in South Sudan +[2018-02-13T00:36:40.963] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:36:40.995] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:36:41.002] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:36:41.015] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:36:41.110] [INFO] cheese - inserting 1000 documents. first: Battle of friedlingen and last: Battle of mons seleucus +[2018-02-13T00:36:41.139] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T00:36:41.160] [INFO] cheese - inserting 1000 documents. first: Sigma Tau and last: 2009–10 Levski Sofia season +[2018-02-13T00:36:41.230] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:36:41.313] [INFO] cheese - inserting 1000 documents. first: Bühne (Harzvorland) and last: Battle of Kalisz +[2018-02-13T00:36:41.373] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:36:41.429] [INFO] cheese - inserting 1000 documents. first: Battle of mont sorrel and last: Battle of texel +[2018-02-13T00:36:41.431] [INFO] cheese - inserting 1000 documents. first: Matthew 10:22 and last: Pro Evo 4 +[2018-02-13T00:36:41.446] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:36:41.466] [INFO] cheese - inserting 1000 documents. first: Ding (cartoonist) and last: File:Geo Super logo.png +[2018-02-13T00:36:41.468] [INFO] cheese - inserting 1000 documents. first: Category:Sacrifices in fiction and last: Qarajah Qaya +[2018-02-13T00:36:41.483] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:36:41.507] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:36:41.512] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:36:41.527] [INFO] cheese - inserting 1000 documents. first: Glodeanu-Sarat and last: List of asteroids/187801–187900 +[2018-02-13T00:36:41.560] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:36:41.670] [INFO] cheese - inserting 1000 documents. first: Battle of thala and last: Beaches of hong kong +[2018-02-13T00:36:41.688] [INFO] cheese - batch complete in: 0.242 secs +[2018-02-13T00:36:41.703] [INFO] cheese - inserting 1000 documents. first: Template:Politics of Turkey and last: New Zealand Knights FC +[2018-02-13T00:36:41.710] [INFO] cheese - inserting 1000 documents. first: That Man (song) and last: Ethyl bisulfate +[2018-02-13T00:36:41.732] [INFO] cheese - batch complete in: 0.172 secs +[2018-02-13T00:36:41.746] [INFO] cheese - inserting 1000 documents. first: Richard Ruscyzk and last: Julija Volkova +[2018-02-13T00:36:41.772] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:36:41.782] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:36:41.872] [INFO] cheese - inserting 1000 documents. first: Beaches of singapore and last: Berkeley journal of employment and labor law +[2018-02-13T00:36:41.895] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:36:41.918] [INFO] cheese - inserting 1000 documents. first: F.C. Julis and last: Sabine R. Huebner (Ancient Historian) +[2018-02-13T00:36:41.947] [INFO] cheese - inserting 1000 documents. first: Martinian and last: Magwe Division, Burma +[2018-02-13T00:36:41.952] [INFO] cheese - inserting 1000 documents. first: Sanyan-e Pain and last: Aleksei Kulashko +[2018-02-13T00:36:41.960] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:36:42.005] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:36:42.019] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:36:42.053] [INFO] cheese - inserting 1000 documents. first: 1977–78 Scottish Second Division and last: Jamie Davis (musician) +[2018-02-13T00:36:42.056] [INFO] cheese - inserting 1000 documents. first: Conditions (album) and last: Big brother is watching +[2018-02-13T00:36:42.103] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:36:42.105] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:36:42.274] [INFO] cheese - inserting 1000 documents. first: Ragnhild Barland and last: File:Armies Of Light.png +[2018-02-13T00:36:42.287] [INFO] cheese - inserting 1000 documents. first: Big brothers big sisters of america and last: Blackpool pleasure beach railway station +[2018-02-13T00:36:42.314] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:36:42.336] [INFO] cheese - inserting 1000 documents. first: Callistemon and last: File:Graves of January Uprising veterans.jpg +[2018-02-13T00:36:42.351] [INFO] cheese - inserting 1000 documents. first: Sigurdur Thorarinsson and last: Category:1946 disestablishments in Belgium +[2018-02-13T00:36:42.349] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:36:42.412] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:36:42.458] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:36:42.480] [INFO] cheese - inserting 1000 documents. first: Portal:Asian games and last: Template:Infobox animal breed +[2018-02-13T00:36:42.489] [INFO] cheese - inserting 1000 documents. first: Beat Konducta: Volume 1 and last: Lewis and Clark Highway +[2018-02-13T00:36:42.570] [INFO] cheese - inserting 1000 documents. first: Fables (The Dodos song) and last: 1968–69 Scottish Division Two +[2018-02-13T00:36:42.588] [INFO] cheese - inserting 1000 documents. first: Blackpool south railway station and last: Bombing of osaka +[2018-02-13T00:36:42.613] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:36:42.620] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:36:42.653] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:36:42.663] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:36:42.843] [INFO] cheese - inserting 1000 documents. first: Bombing of palestine in world war ii and last: Fête St-Jean-Baptiste +[2018-02-13T00:36:42.861] [INFO] cheese - inserting 1000 documents. first: Tainted (Comic) and last: Peter Curran (footballer) +[2018-02-13T00:36:42.866] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:36:42.880] [INFO] cheese - inserting 1000 documents. first: R&B/Hip-Hop Catalog Albums and last: History of the compass +[2018-02-13T00:36:42.902] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:36:42.932] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:36:43.045] [INFO] cheese - inserting 1000 documents. first: TWC Uptown Amphitheatre and last: Wikipedia:Articles for deletion/J. Patrick Capps +[2018-02-13T00:36:43.046] [INFO] cheese - inserting 1000 documents. first: Education in Chile and last: Kestutis, Grand Prince of Lithuania +[2018-02-13T00:36:43.083] [INFO] cheese - inserting 1000 documents. first: Bracknell forest local elections and last: Wikipedia:WikiProject Big Brother/Big Brother USA +[2018-02-13T00:36:43.090] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:36:43.105] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:36:43.128] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:36:43.223] [INFO] cheese - inserting 1000 documents. first: Priceline.com and last: Turdus philomelos +[2018-02-13T00:36:43.312] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T00:36:43.335] [INFO] cheese - inserting 1000 documents. first: XHAQ-FM and last: Armistice Day Blizzard +[2018-02-13T00:36:43.360] [INFO] cheese - inserting 1000 documents. first: Zulfiqqar Ali Bhuttoo and last: Avengers Reborn +[2018-02-13T00:36:43.399] [INFO] cheese - inserting 1000 documents. first: British k class submarine and last: Wikipedia:WikiProject Spam/LinkReports/cbseguess.com +[2018-02-13T00:36:43.412] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:36:43.418] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:36:43.438] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:36:43.595] [INFO] cheese - inserting 1000 documents. first: Category:Mixed martial arts in the United Kingdom and last: Wikipedia:Articles for deletion/Frylock +[2018-02-13T00:36:43.705] [INFO] cheese - inserting 1000 documents. first: Skirgaila, Grand Prince of Lithuania and last: Wikipedia:Articles for deletion/Cochrane (unit) +[2018-02-13T00:36:43.743] [INFO] cheese - inserting 1000 documents. first: Building owners and managers association and last: Scottish Football League 1987-88 +[2018-02-13T00:36:43.754] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:36:43.783] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:36:43.788] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:36:44.041] [INFO] cheese - inserting 1000 documents. first: Rebellion (1954 film) and last: Iganga General Hospital +[2018-02-13T00:36:44.147] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:36:44.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jim Golden: Guitarist, Radio Personality and last: The Hungry Actors +[2018-02-13T00:36:44.178] [INFO] cheese - inserting 1000 documents. first: Cia activities in brazil and last: McGill Conservatory +[2018-02-13T00:36:44.187] [INFO] cheese - inserting 1000 documents. first: Peugeot 107 and last: Hugh Addonizio +[2018-02-13T00:36:44.210] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:36:44.269] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:36:44.298] [INFO] cheese - inserting 1000 documents. first: Shireen Sheriar Irani and last: Bahreman, East Azerbaijan +[2018-02-13T00:36:44.318] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T00:36:44.372] [INFO] cheese - inserting 1000 documents. first: Hessian Affine region detector and last: William O'Brien Drury +[2018-02-13T00:36:44.432] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:36:44.456] [INFO] cheese - inserting 1000 documents. first: Vienna Schwechat International Airport and last: Perseverance Hall +[2018-02-13T00:36:44.456] [INFO] cheese - batch complete in: 1.843 secs +[2018-02-13T00:36:44.478] [INFO] cheese - inserting 1000 documents. first: Campaigns of the american civil war and last: Canton of nangis +[2018-02-13T00:36:44.568] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:36:44.626] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:36:44.802] [INFO] cheese - inserting 1000 documents. first: Felipe Banguero and last: Category:1968 establishments in Zambia +[2018-02-13T00:36:44.906] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:36:44.921] [INFO] cheese - inserting 1000 documents. first: Canton of nantua and last: Carnival in coal +[2018-02-13T00:36:44.963] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:36:45.068] [INFO] cheese - inserting 1000 documents. first: Council of Reims and last: Broughton Poggs +[2018-02-13T00:36:45.136] [INFO] cheese - inserting 1000 documents. first: Category:1910–11 in Scottish football and last: Category:Suspected Wikipedia sockpuppets of Drodedsweard +[2018-02-13T00:36:45.172] [INFO] cheese - inserting 1000 documents. first: Lectionary 332 and last: Phragmatobia rubricosta +[2018-02-13T00:36:45.179] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:36:45.212] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:36:45.217] [INFO] cheese - inserting 1000 documents. first: Carnival in colombia and last: Catherine of valois +[2018-02-13T00:36:45.256] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:36:45.275] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:36:45.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sgt. Robert Barnes and last: The River in Reverse +[2018-02-13T00:36:45.356] [INFO] cheese - inserting 1000 documents. first: Chauna torquata and last: The Challengers (game show) +[2018-02-13T00:36:45.383] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:36:45.445] [INFO] cheese - inserting 1000 documents. first: Abd-al-Hussain Borunsi and last: Category:Churches in Western Sahara +[2018-02-13T00:36:45.449] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T00:36:45.492] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:36:45.510] [INFO] cheese - inserting 1000 documents. first: Catherine of ymseborg and last: Central council of afghan trade unions +[2018-02-13T00:36:45.539] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:36:45.679] [INFO] cheese - inserting 1000 documents. first: Glaucostegus and last: Category:Automotive industry in the United States +[2018-02-13T00:36:45.710] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:36:45.719] [INFO] cheese - inserting 1000 documents. first: File:DIFF Dharamshala International Film Festival Logo.jpg and last: Gavrilovfjellet +[2018-02-13T00:36:45.757] [INFO] cheese - inserting 1000 documents. first: Compound pendulum and last: Chapman university school of law +[2018-02-13T00:36:45.767] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:36:45.779] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:36:45.802] [INFO] cheese - inserting 1000 documents. first: Łączna and last: Challenge to Lassie +[2018-02-13T00:36:45.850] [INFO] cheese - inserting 1000 documents. first: Uighur detainees in Guantanamo and last: Brand New Lover +[2018-02-13T00:36:45.879] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:36:45.922] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:36:45.936] [INFO] cheese - inserting 1000 documents. first: 1679 Parliament and last: Wikipedia:Files for discussion/2016 May 10 +[2018-02-13T00:36:45.969] [INFO] cheese - inserting 1000 documents. first: Chapman and oxley and last: Chief justice of sri lanka +[2018-02-13T00:36:45.997] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:36:45.992] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T00:36:46.094] [INFO] cheese - inserting 1000 documents. first: 2011 UT Martin Skyhawks football team and last: Julius Ubido +[2018-02-13T00:36:46.105] [INFO] cheese - inserting 1000 documents. first: Poamsan and last: Metal Hero Series +[2018-02-13T00:36:46.113] [INFO] cheese - inserting 1000 documents. first: List of peers 1650–1659 and last: Gómez (given name) +[2018-02-13T00:36:46.137] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:36:46.148] [INFO] cheese - inserting 1000 documents. first: Chief justice of western australia and last: Christianity in the united states +[2018-02-13T00:36:46.156] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:36:46.169] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:36:46.175] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:36:46.250] [INFO] cheese - inserting 1000 documents. first: Timoteo Rosales III and last: Portal:Indonesia/Featured picture/2008 +[2018-02-13T00:36:46.294] [INFO] cheese - inserting 1000 documents. first: Lee T. Todd, Jr. and last: Daudpur +[2018-02-13T00:36:46.301] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:36:46.307] [INFO] cheese - inserting 1000 documents. first: Tania Verstak and last: Please, Please +[2018-02-13T00:36:46.329] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:36:46.382] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:36:46.419] [INFO] cheese - inserting 1000 documents. first: Christianization of bulgaria and last: Cinema of saudi arabia +[2018-02-13T00:36:46.466] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:36:46.686] [INFO] cheese - inserting 1000 documents. first: Hilda Stumpf and last: Breinesflya +[2018-02-13T00:36:46.694] [INFO] cheese - inserting 1000 documents. first: Cinema of scotland and last: Holbeck Ghyll +[2018-02-13T00:36:46.713] [INFO] cheese - inserting 1000 documents. first: Inula spiraeifolia and last: Crăciunești (disambiguation) +[2018-02-13T00:36:46.713] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:36:46.749] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:36:46.772] [INFO] cheese - inserting 1000 documents. first: Synthetic Schlieren and last: Kimberley Nixon +[2018-02-13T00:36:46.777] [INFO] cheese - inserting 1000 documents. first: Stripe and last: Percy Jocelyn +[2018-02-13T00:36:46.793] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:36:46.829] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:36:46.831] [INFO] cheese - inserting 1000 documents. first: Varbanova and last: Walder Rivers +[2018-02-13T00:36:46.884] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:36:46.900] [INFO] cheese - inserting 1000 documents. first: HSLA Steel and last: O. E. Hailey +[2018-02-13T00:36:46.895] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:36:46.969] [INFO] cheese - inserting 1000 documents. first: Clarence thomas supreme court nomination and last: Coat of arms of buenos aires +[2018-02-13T00:36:46.973] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:36:47.008] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:36:47.146] [INFO] cheese - inserting 1000 documents. first: Craciunesti (disambiguation) and last: Bright Star at Panghulo +[2018-02-13T00:36:47.180] [INFO] cheese - inserting 1000 documents. first: Coat of arms of buftea and last: Collective soul discography +[2018-02-13T00:36:47.188] [INFO] cheese - inserting 1000 documents. first: Category:University of Wisconsin–Eau Claire faculty and last: Category:Torneo Nacional Interprovincial seasons +[2018-02-13T00:36:47.205] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:36:47.243] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:36:47.266] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:36:47.313] [INFO] cheese - inserting 1000 documents. first: Helene Macher and last: Great Beijing Wheel +[2018-02-13T00:36:47.354] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:36:47.456] [INFO] cheese - inserting 1000 documents. first: Altunhisar and last: Spell drop +[2018-02-13T00:36:47.484] [INFO] cheese - inserting 1000 documents. first: Collective for living cinema and last: Commissioners for the reduction of the national debt +[2018-02-13T00:36:47.513] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:36:47.550] [INFO] cheese - inserting 1000 documents. first: Francis Plunkett and last: Bhagavat Geeta +[2018-02-13T00:36:47.579] [INFO] cheese - inserting 1000 documents. first: Draft:Thomas Meilleur-Giguere and last: Patrick Sheehan (Oregon politician) +[2018-02-13T00:36:47.589] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:36:47.642] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:36:47.689] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:36:47.725] [INFO] cheese - inserting 1000 documents. first: Lists of universities in jacksonville and last: Michael FQ San Nicolas +[2018-02-13T00:36:47.821] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:36:47.869] [INFO] cheese - inserting 1000 documents. first: U-shape line and last: Wikipedia:Articles for deletion/Cody Arens +[2018-02-13T00:36:47.915] [INFO] cheese - inserting 1000 documents. first: Commissioners in lunacy and last: Completely hausdorff space +[2018-02-13T00:36:47.935] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:36:47.962] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:36:48.033] [INFO] cheese - inserting 1000 documents. first: Hiroyasu Sasaki and last: Arms1 +[2018-02-13T00:36:48.108] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:36:48.185] [INFO] cheese - inserting 1000 documents. first: File:West Adelaide Bloods Jumper.svg and last: Consejo mundial de lucha libre +[2018-02-13T00:36:48.232] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T00:36:48.301] [INFO] cheese - inserting 1000 documents. first: Walter Sillers State Office Building and last: Amblesthidus amoenus +[2018-02-13T00:36:48.324] [INFO] cheese - inserting 1000 documents. first: Liheslaturan Guahan and last: List of listed London Underground stations +[2018-02-13T00:36:48.326] [INFO] cheese - inserting 1000 documents. first: I Can See Clearly Now and last: Nagak +[2018-02-13T00:36:48.360] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:36:48.387] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:36:48.423] [INFO] cheese - inserting 1000 documents. first: Template:International cricket in 2011–12 and last: Morphology linguistics +[2018-02-13T00:36:48.423] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:36:48.516] [INFO] cheese - inserting 1000 documents. first: Consejo mundial de lucha libre roster and last: Cook islands national rugby league team +[2018-02-13T00:36:48.519] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:36:48.554] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:36:48.647] [INFO] cheese - inserting 1000 documents. first: CFHL3 and last: File:Bandera Federada 2007.svg +[2018-02-13T00:36:48.670] [INFO] cheese - inserting 1000 documents. first: Issac newton and last: Hartmannsdorf +[2018-02-13T00:36:48.730] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:36:48.753] [INFO] cheese - batch complete in: 1.064 secs +[2018-02-13T00:36:48.806] [INFO] cheese - inserting 1000 documents. first: Old Centralians and last: Avkhara +[2018-02-13T00:36:48.856] [INFO] cheese - inserting 1000 documents. first: Cook and enjoy it and last: Council of wales and the marches +[2018-02-13T00:36:48.887] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:36:48.904] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:36:48.913] [INFO] cheese - inserting 1000 documents. first: Template:D.I.T.C. and last: Harris shutter +[2018-02-13T00:36:48.929] [INFO] cheese - inserting 1000 documents. first: Amblesthidus plagiatus and last: James Fulton (New Zealand cricketer) +[2018-02-13T00:36:48.957] [INFO] cheese - inserting 1000 documents. first: Book:Rosendale, New York and last: File:Colditz Castle1.jpg +[2018-02-13T00:36:48.966] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:36:48.991] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:36:49.000] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:36:49.100] [INFO] cheese - inserting 1000 documents. first: Council of the americas and last: Cradley heath railway station +[2018-02-13T00:36:49.128] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T00:36:49.195] [INFO] cheese - inserting 1000 documents. first: Category:Central State Marauders football coaches and last: Portal:United Kingdom/Featured picture/39 +[2018-02-13T00:36:49.282] [INFO] cheese - inserting 1000 documents. first: Avkhareh and last: Queanbeyan West +[2018-02-13T00:36:49.288] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:36:49.361] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:36:49.460] [INFO] cheese - inserting 1000 documents. first: File:Televisa Regional Logo.png and last: Nasdaq OMX Copenhagen +[2018-02-13T00:36:49.467] [INFO] cheese - inserting 1000 documents. first: The Moffatts and last: Congo "Crisis" +[2018-02-13T00:36:49.502] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:36:49.534] [INFO] cheese - inserting 1000 documents. first: Weightlifting at the 1988 Summer Olympics – Men's 67.5 kg and last: Wikipedia:Meetup/Women in Red/8/Invitation & Thank you & Barnstar +[2018-02-13T00:36:49.568] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:36:49.577] [INFO] cheese - inserting 1000 documents. first: Plumbbob and last: Matthaios Asanes Kantakouzenos +[2018-02-13T00:36:49.640] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:36:49.717] [INFO] cheese - inserting 1000 documents. first: Craft and folk art museum and last: William H. Powell +[2018-02-13T00:36:49.741] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:36:49.851] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:36:49.954] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Desha County, Arkansas and last: Panda Bowl +[2018-02-13T00:36:49.972] [INFO] cheese - inserting 1000 documents. first: Luigi Borgomainerio and last: Barcelona Sants +[2018-02-13T00:36:50.021] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:36:50.038] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:36:50.107] [INFO] cheese - inserting 1000 documents. first: Platyptilia terminalis and last: Neomastogenius +[2018-02-13T00:36:50.152] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:36:50.204] [INFO] cheese - inserting 1000 documents. first: Bud Konheim and last: Category:1970s in American cinema +[2018-02-13T00:36:50.263] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:36:50.269] [INFO] cheese - inserting 1000 documents. first: Theodosius of Portugal and last: Gernsbach +[2018-02-13T00:36:50.359] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:36:50.526] [INFO] cheese - inserting 1000 documents. first: Camanche Reservoir and last: Ayatollah Ahmad Jannati Massah +[2018-02-13T00:36:50.532] [INFO] cheese - inserting 1000 documents. first: Japanese American Citizens League and last: Wikipedia:Articles for deletion/Bia and Bria +[2018-02-13T00:36:50.581] [INFO] cheese - inserting 1000 documents. first: Panda game and last: Portal:Human Body/Musculoskeletal System/Selected article/Layout +[2018-02-13T00:36:50.620] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:36:50.644] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T00:36:50.651] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:36:50.685] [INFO] cheese - inserting 1000 documents. first: Island Pond (Stoddard, New Hampshire) and last: Ik start +[2018-02-13T00:36:50.768] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:36:50.819] [INFO] cheese - inserting 1000 documents. first: Ceres, Santa Fe and last: Wikipedia:Reference desk/Archives/Computing/2011 June 20 +[2018-02-13T00:36:50.888] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:36:50.903] [INFO] cheese - inserting 1000 documents. first: When people grow, people go and last: Jisha Murder Case +[2018-02-13T00:36:50.969] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:36:51.022] [INFO] cheese - inserting 1000 documents. first: Carrie (book) and last: Hiv antigens +[2018-02-13T00:36:51.105] [INFO] cheese - inserting 1000 documents. first: Portal:Human Body/Musculoskeletal System/Selected picture and last: Awake (Bleed the Dream album) +[2018-02-13T00:36:51.098] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:36:51.173] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:36:51.201] [INFO] cheese - inserting 1000 documents. first: Maria's Day and last: Gone for Goode +[2018-02-13T00:36:51.270] [INFO] cheese - inserting 1000 documents. first: File:Tkrnewopen.jpg and last: File:Wallace Terry 1.jpg +[2018-02-13T00:36:51.277] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:36:51.307] [INFO] cheese - inserting 1000 documents. first: Sean Taylor (writer) and last: Economic Development Quarterly +[2018-02-13T00:36:51.344] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:36:51.373] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:36:51.387] [INFO] cheese - inserting 1000 documents. first: Arthur Phillips and last: Copyparty +[2018-02-13T00:36:51.491] [INFO] cheese - inserting 1000 documents. first: Young Souls Tour and last: Bong Ti +[2018-02-13T00:36:51.550] [INFO] cheese - inserting 1000 documents. first: Carl Eyring and last: ISO 639:qlf +[2018-02-13T00:36:51.577] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T00:36:51.608] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:36:51.662] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:36:51.764] [INFO] cheese - inserting 1000 documents. first: File:Warren Cup exhibition 011.jpg and last: Portugal's Day +[2018-02-13T00:36:51.850] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:36:51.890] [INFO] cheese - inserting 1000 documents. first: Graywing and last: Wikipedia:Featured list candidates/List of members of the Basketball Hall of Fame (coaches)/archive1 +[2018-02-13T00:36:51.911] [INFO] cheese - inserting 1000 documents. first: 1946 All-Ireland Minor Hurling Championship and last: Template:Country data Dungarpur State +[2018-02-13T00:36:51.950] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2005 Dubbo New Years Eve Riot and last: Garde des sceaux +[2018-02-13T00:36:51.962] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:36:51.976] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:36:52.027] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:36:52.089] [INFO] cheese - inserting 1000 documents. first: ISO 639:qlj and last: Fauresmith (industry) +[2018-02-13T00:36:52.152] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:36:52.239] [INFO] cheese - inserting 1000 documents. first: Renault 1.4 Litre and last: Babakücə (disambiguation) +[2018-02-13T00:36:52.291] [INFO] cheese - inserting 1000 documents. first: Under Dusken and last: Joe Dallesandro +[2018-02-13T00:36:52.301] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:36:52.404] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:36:52.409] [INFO] cheese - inserting 1000 documents. first: T.J. Palmer and last: Chris Fydler +[2018-02-13T00:36:52.522] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:36:52.597] [INFO] cheese - inserting 1000 documents. first: The Orchard on Fire and last: Category:American Civil War museums in Alabama +[2018-02-13T00:36:52.658] [INFO] cheese - inserting 1000 documents. first: New York State Touring Route 16A and last: Michael and Me +[2018-02-13T00:36:52.714] [INFO] cheese - inserting 1000 documents. first: The Vermin and last: Ochropleura talda +[2018-02-13T00:36:52.739] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:36:52.705] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:36:52.809] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:36:52.846] [INFO] cheese - inserting 1000 documents. first: The Sphere College Project and last: Mexican anthem +[2018-02-13T00:36:52.958] [INFO] cheese - inserting 1000 documents. first: Belle Story and last: Mikuláš Tóth (disambiguation) +[2018-02-13T00:36:52.967] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T00:36:53.031] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:36:53.227] [INFO] cheese - inserting 1000 documents. first: Canaria and last: Kenneth W. Brewer +[2018-02-13T00:36:53.309] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Quitman County, Mississippi and last: File:Jason Becker Not Dead Yet (2012).jpg +[2018-02-13T00:36:53.325] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:36:53.332] [INFO] cheese - inserting 1000 documents. first: A a milne and last: John Charles Martin Nash +[2018-02-13T00:36:53.389] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:36:53.404] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T00:36:53.410] [INFO] cheese - inserting 1000 documents. first: Biphenyl-2,3-diol 1,2-dioxygenase and last: California Ballroom +[2018-02-13T00:36:53.425] [INFO] cheese - inserting 1000 documents. first: Caesars Head, South Carolina and last: Larry Cochran +[2018-02-13T00:36:53.465] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:36:53.502] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:36:53.541] [INFO] cheese - inserting 1000 documents. first: Spider-Man: Turn Off the Dark (album) and last: Category:People educated at West Monmouth School +[2018-02-13T00:36:53.593] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:36:53.691] [INFO] cheese - inserting 1000 documents. first: Inclusive restroom and last: Category:People educated at Kirkcudbright Academy +[2018-02-13T00:36:53.756] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:36:53.778] [INFO] cheese - inserting 1000 documents. first: List of EC numbers (EC 5) and last: Siege of Kaifeng (1127) +[2018-02-13T00:36:53.810] [INFO] cheese - inserting 1000 documents. first: George Candilis and last: File:Green Island Serenade - Zi Wei.ogg +[2018-02-13T00:36:53.817] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:36:53.854] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:36:53.863] [INFO] cheese - inserting 1000 documents. first: Ferredoxin—nitrite reductase and last: List of diplomatic missions of Mauritania +[2018-02-13T00:36:53.883] [INFO] cheese - inserting 1000 documents. first: Futurologists and last: Pila, Laguna +[2018-02-13T00:36:53.893] [INFO] cheese - inserting 1000 documents. first: Eriostemon nottii and last: Jurgen Streppel +[2018-02-13T00:36:53.925] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:36:53.940] [INFO] cheese - inserting 1000 documents. first: Hugh Sexey Middle School and last: Xinzhai Town +[2018-02-13T00:36:53.960] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:36:53.966] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:36:54.025] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:36:54.222] [INFO] cheese - inserting 1000 documents. first: Uniform expansivity and last: Eric la salle +[2018-02-13T00:36:54.225] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jacketsale2016.com and last: British Airtours 28M +[2018-02-13T00:36:54.252] [INFO] cheese - inserting 1000 documents. first: Category:1932 establishments in the British Empire and last: Kiran-e Bala +[2018-02-13T00:36:54.274] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:36:54.282] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:36:54.330] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:36:54.346] [INFO] cheese - inserting 1000 documents. first: California State Route 26 (1964) and last: Wikipedia:Articles for deletion/Nappyafro.com +[2018-02-13T00:36:54.367] [INFO] cheese - inserting 1000 documents. first: Eternauta and last: Bishop Harry Jackson +[2018-02-13T00:36:54.392] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:36:54.407] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:36:54.434] [INFO] cheese - inserting 1000 documents. first: Joaquim Sorolla and last: Xingalol +[2018-02-13T00:36:54.553] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:36:54.581] [INFO] cheese - inserting 1000 documents. first: Medlow Bath and last: Watt's linkage +[2018-02-13T00:36:54.734] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:36:54.776] [INFO] cheese - inserting 1000 documents. first: Template:The Maryland Barnstar/Dark and last: Category:Scientific organisations in New Zealand +[2018-02-13T00:36:54.841] [INFO] cheese - inserting 1000 documents. first: Keran-e Olya and last: Psychroserpens burtonensis +[2018-02-13T00:36:54.852] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:36:54.862] [INFO] cheese - inserting 1000 documents. first: Eriq la salle and last: Book of Qi +[2018-02-13T00:36:54.889] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:36:54.916] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian sports venue stubs and last: Cathedral Green Footbridge +[2018-02-13T00:36:54.930] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:36:54.936] [INFO] cheese - inserting 1000 documents. first: Sânziene and last: Karimaddela +[2018-02-13T00:36:54.967] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:36:54.969] [INFO] cheese - inserting 1000 documents. first: Fruity Loops Mobile and last: 1936-37 Serie B +[2018-02-13T00:36:54.988] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:36:55.016] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:36:55.203] [INFO] cheese - inserting 1000 documents. first: 1936-37 Serie C and last: 1980-81 Southern Football League +[2018-02-13T00:36:55.210] [INFO] cheese - inserting 1000 documents. first: Flounder brewing co and last: Wukang County +[2018-02-13T00:36:55.230] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:36:55.254] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:36:55.257] [INFO] cheese - inserting 1000 documents. first: Above and Beyond and last: Wiltshire County Council +[2018-02-13T00:36:55.287] [INFO] cheese - inserting 1000 documents. first: Rotsidis Mammari and last: Lichfield by-election, 1896 +[2018-02-13T00:36:55.329] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:36:55.346] [INFO] cheese - inserting 1000 documents. first: 2009 Wimbledon Championships – Girls' Singles and last: Macleans (toothpaste) +[2018-02-13T00:36:55.359] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:36:55.368] [INFO] cheese - inserting 1000 documents. first: University of Rice and last: Binary Pattern +[2018-02-13T00:36:55.400] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:36:55.417] [INFO] cheese - inserting 1000 documents. first: (R)-propane-1,2-diol and last: Royal Albert Memorial Museum +[2018-02-13T00:36:55.435] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:36:55.482] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:36:55.554] [INFO] cheese - inserting 1000 documents. first: 1980-81 Stoke City F.C. season and last: 1996 Grand Prix de Tennis de Toulouse - Doubles +[2018-02-13T00:36:55.565] [INFO] cheese - inserting 1000 documents. first: Ravaz and last: Igdalu-ye Bala +[2018-02-13T00:36:55.583] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:36:55.607] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:36:55.846] [INFO] cheese - inserting 1000 documents. first: Sports Car Racing and last: Gambling on papal elections +[2018-02-13T00:36:55.848] [INFO] cheese - inserting 1000 documents. first: My Girl Tisa and last: A Secret Life (Marianne Faithfull album) +[2018-02-13T00:36:55.854] [INFO] cheese - inserting 1000 documents. first: Al Hassan Saleh and last: John Russell Walter +[2018-02-13T00:36:55.872] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:36:55.877] [INFO] cheese - inserting 1000 documents. first: Bulk metal glass and last: National Institute of Statistics +[2018-02-13T00:36:55.952] [INFO] cheese - inserting 1000 documents. first: German emperor and last: West Virginia Wesleyan College +[2018-02-13T00:36:55.959] [INFO] cheese - inserting 1000 documents. first: Hugh Havelock McLean and last: Dúghall de Ergadia +[2018-02-13T00:36:55.986] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:36:55.992] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:36:56.034] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:36:56.121] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:36:56.149] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:36:56.239] [INFO] cheese - inserting 1000 documents. first: Idehlu-ye Pa'in and last: NWFP cuisine +[2018-02-13T00:36:56.317] [INFO] cheese - inserting 1000 documents. first: 2003 IAAF World Indoor Championships - Men's triple jump and last: Politics of South Tyrol +[2018-02-13T00:36:56.317] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:36:56.344] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:36:56.469] [INFO] cheese - inserting 1000 documents. first: Category:User syl and last: File:Moskvarech.JPG +[2018-02-13T00:36:56.512] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:36:56.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fernando Wwirst and last: Brachida hatayana +[2018-02-13T00:36:56.560] [INFO] cheese - inserting 1000 documents. first: Adult Entertainment (Raffi album) and last: 2010-11 ES Sétif season +[2018-02-13T00:36:56.566] [INFO] cheese - inserting 1000 documents. first: Elisabeth Mary of Braganza and last: Ota Filip +[2018-02-13T00:36:56.576] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:36:56.588] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:36:56.608] [INFO] cheese - inserting 1000 documents. first: File:Toast of new orleans.jpg and last: Category:Arts podcasts +[2018-02-13T00:36:56.620] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:36:56.664] [INFO] cheese - inserting 1000 documents. first: NWFP (region) and last: Badalan, Khuzestan +[2018-02-13T00:36:56.681] [INFO] cheese - inserting 1000 documents. first: Category:Prisons in Florida and last: People's Insurance Company of China +[2018-02-13T00:36:56.689] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:36:56.706] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:36:56.760] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:36:56.820] [INFO] cheese - inserting 1000 documents. first: 2010-11 East Carolina Pirates men's basketball team and last: 2011 Sarasota Open - Doubles +[2018-02-13T00:36:56.857] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:36:56.954] [INFO] cheese - inserting 1000 documents. first: Mess Lake Lava Field and last: Northwestern University in Qatar +[2018-02-13T00:36:56.993] [INFO] cheese - inserting 1000 documents. first: Liogluta falcata and last: Category:Doshisha University faculty +[2018-02-13T00:36:56.995] [INFO] cheese - inserting 1000 documents. first: Bismarck cabinet and last: File:En Concierto Inolvidable (Rocio Durcal Album Cover Art).jpg +[2018-02-13T00:36:57.001] [INFO] cheese - inserting 1000 documents. first: File:WindsorHouse.JPG and last: Wikipedia:Requests for checkuser/Case/Danteferno +[2018-02-13T00:36:57.008] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:36:57.027] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:36:57.032] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:36:57.079] [INFO] cheese - inserting 1000 documents. first: The Devil Comes Back to Georgia and last: Kisschasy Discography +[2018-02-13T00:36:57.078] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:36:57.091] [INFO] cheese - inserting 1000 documents. first: 2011 Sarasota Open - Singles and last: Category:Soviet emigrants to Germany +[2018-02-13T00:36:57.131] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:36:57.135] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:36:57.213] [INFO] cheese - inserting 1000 documents. first: The Enemy Within and last: Nikolai repnin +[2018-02-13T00:36:57.277] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:36:57.347] [INFO] cheese - inserting 1000 documents. first: File:Grateful Dead - Dave's Picks Volume 8.jpg and last: Aphrissa butleri +[2018-02-13T00:36:57.351] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1980 Summer Olympics - Men's 50 kilometres walk and last: Eurocup Basketball 2009-10 Regular Season +[2018-02-13T00:36:57.373] [INFO] cheese - batch complete in: 0.237 secs +[2018-02-13T00:36:57.385] [INFO] cheese - inserting 1000 documents. first: Name of Georgia (country) and last: Template:Fb competition 2009-10 Slovenian PrvaLiga relegation play-offs +[2018-02-13T00:36:57.410] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:36:57.426] [INFO] cheese - inserting 1000 documents. first: Papuk Mountain and last: Triple H 100.1 FM +[2018-02-13T00:36:57.457] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:36:57.513] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:36:57.609] [INFO] cheese - inserting 1000 documents. first: Opinions Won't Keep You Warm At Night and last: Category:Cattle stubs +[2018-02-13T00:36:57.613] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Wisangocaris and last: Josef F. Bille +[2018-02-13T00:36:57.677] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:36:57.678] [INFO] cheese - inserting 1000 documents. first: Eurocup Basketball 2010-11 and last: Thomas Moore Costello +[2018-02-13T00:36:57.689] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:36:57.751] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:36:57.871] [INFO] cheese - inserting 1000 documents. first: Euro F3000 Dijon and last: Cross Edge Dash +[2018-02-13T00:36:57.878] [INFO] cheese - inserting 1000 documents. first: Phoebis boisduvalii and last: Links 234 +[2018-02-13T00:36:57.911] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:36:57.918] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:36:57.928] [INFO] cheese - inserting 1000 documents. first: DRE voting machine and last: XiamenAir +[2018-02-13T00:36:57.964] [INFO] cheese - inserting 1000 documents. first: List of minor planets/104901-105000 and last: List of minor planets/179301-179400 +[2018-02-13T00:36:57.978] [INFO] cheese - inserting 1000 documents. first: Summer Of ’69 and last: Talking signs +[2018-02-13T00:36:58.010] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:36:58.019] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:36:58.054] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:36:58.098] [INFO] cheese - inserting 1000 documents. first: File:Babu Rafique shaking hands with President Ayub Khan.jpg and last: Norwegian Bible Belt +[2018-02-13T00:36:58.150] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:36:58.169] [INFO] cheese - inserting 1000 documents. first: Peshwar and last: Category:Amide solvents +[2018-02-13T00:36:58.246] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:36:58.322] [INFO] cheese - inserting 1000 documents. first: Almadeh and last: Mims effect +[2018-02-13T00:36:58.374] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:36:58.375] [INFO] cheese - inserting 1000 documents. first: Id est and last: Desktop environments +[2018-02-13T00:36:58.393] [INFO] cheese - inserting 1000 documents. first: Truth Commissions and last: Fiji/Economy +[2018-02-13T00:36:58.399] [INFO] cheese - inserting 1000 documents. first: List of minor planets/179401-179500 and last: Kingdom of Gao +[2018-02-13T00:36:58.429] [INFO] cheese - inserting 1000 documents. first: Goalpariya dialect and last: Infosphere +[2018-02-13T00:36:58.447] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:36:58.457] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:36:58.492] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:36:58.531] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:36:58.666] [INFO] cheese - inserting 1000 documents. first: Deborah Steinberg and last: Stanford University School of Medicine Dermatology Residency Program +[2018-02-13T00:36:58.735] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:36:58.792] [INFO] cheese - inserting 1000 documents. first: Immunologic receptor and last: Pabst von Ohain +[2018-02-13T00:36:58.809] [INFO] cheese - inserting 1000 documents. first: SS Coolabah and last: List of minor planets/92101-92200 +[2018-02-13T00:36:58.858] [INFO] cheese - inserting 1000 documents. first: Template:GoldenGlobeAwardBestMotionPictureMusicalComedy 1981-2000 and last: Ashikaga murder case +[2018-02-13T00:36:58.871] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:36:58.912] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:36:58.944] [INFO] cheese - inserting 1000 documents. first: Aviculin and last: Fortress Luxembourg +[2018-02-13T00:36:58.950] [INFO] cheese - inserting 1000 documents. first: Voidable and last: Carmen Sandiego: The Secret of the Stolen Drums +[2018-02-13T00:36:58.959] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:36:59.000] [INFO] cheese - inserting 1000 documents. first: Dialectical and last: Best Country Vocal Performance, Male +[2018-02-13T00:36:59.049] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:36:59.052] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:36:59.089] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:36:59.287] [INFO] cheese - inserting 1000 documents. first: Template:Country data Nottinghamshire and last: National Register of Historic Places listings in Sleeping Bear Dunes National Lakeshore +[2018-02-13T00:36:59.318] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:36:59.401] [INFO] cheese - inserting 1000 documents. first: Template:Secondary schools in Victoria and last: Category:Taxa named by René Lavocat +[2018-02-13T00:36:59.408] [INFO] cheese - inserting 1000 documents. first: Nigerian Mines and Steel Development Ministry and last: Category:Suspected Wikipedia sockpuppets of 92.145.77.139 +[2018-02-13T00:36:59.409] [INFO] cheese - inserting 1000 documents. first: Sam Dockery and last: Galin Qeshlaqi +[2018-02-13T00:36:59.433] [INFO] cheese - inserting 1000 documents. first: Advanced Numerical Research & Analysis Group and last: Wikipedia:Redirects for discussion/Log/2007 November 11 +[2018-02-13T00:36:59.440] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:36:59.443] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:36:59.455] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:36:59.504] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:36:59.540] [INFO] cheese - inserting 1000 documents. first: Aru-ding and last: Rna-binding proteins +[2018-02-13T00:36:59.590] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:36:59.646] [INFO] cheese - inserting 1000 documents. first: Miluta and last: Wikipedia:WikiProject Spam/LinkReports/chemin-compostelle.eu +[2018-02-13T00:36:59.658] [INFO] cheese - inserting 1000 documents. first: Best Rock Instrumental Performance and last: UN/LOCODE:USHBG +[2018-02-13T00:36:59.694] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:36:59.714] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:36:59.803] [INFO] cheese - inserting 1000 documents. first: 2002 African Championships in Athletics – Men's 100 metres and last: Category:Mauritian people of Marathi descent +[2018-02-13T00:36:59.824] [INFO] cheese - inserting 1000 documents. first: Highway 74 (Arkansas) and last: Wikipedia:Articles for deletion/Flashqard +[2018-02-13T00:36:59.853] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:36:59.859] [INFO] cheese - inserting 1000 documents. first: John St. Polis and last: Chlorophoneus multicolor +[2018-02-13T00:36:59.862] [INFO] cheese - inserting 1000 documents. first: Sandstone Center for the Performing Arts and last: Moanasaurus mangahouangae +[2018-02-13T00:36:59.867] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:36:59.916] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:36:59.927] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:36:59.999] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USHBV and last: UN/LOCODE:USHOO +[2018-02-13T00:37:00.047] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:37:00.117] [INFO] cheese - inserting 1000 documents. first: ODU and last: Andrew Blodgett "Monk" Mayfair +[2018-02-13T00:37:00.175] [INFO] cheese - inserting 1000 documents. first: Tulips - Sylvia Plath and last: Mathilde Comont +[2018-02-13T00:37:00.185] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:37:00.200] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Appalachia and last: 1998 Tonys +[2018-02-13T00:37:00.206] [INFO] cheese - inserting 1000 documents. first: Category:Universities and colleges in Ramsey County, Minnesota and last: List of Hoshizora e Kakaru Hashi episodes +[2018-02-13T00:37:00.218] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:37:00.237] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:37:00.274] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:37:00.356] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USMTL and last: File:Alice Auma Lakwena Behrend.jpg +[2018-02-13T00:37:00.375] [INFO] cheese - inserting 1000 documents. first: Paksas Cabinet I and last: Draft:Naphthalene-1,5-dione +[2018-02-13T00:37:00.449] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:37:00.502] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:37:00.847] [INFO] cheese - inserting 1000 documents. first: Second Battle of Kharkiv and last: Of the Father's Heart Begotten +[2018-02-13T00:37:00.871] [INFO] cheese - inserting 1000 documents. first: Puppeh and last: Wikipedia:Sockpuppet investigations/Louisianaruralhistory/Archive +[2018-02-13T00:37:00.877] [INFO] cheese - inserting 1000 documents. first: Paleologus dynasty and last: POO +[2018-02-13T00:37:00.891] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:37:00.898] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USGFA and last: William Ormsby-Gore (1779–1860) +[2018-02-13T00:37:00.936] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:37:00.942] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:37:00.953] [INFO] cheese - inserting 1000 documents. first: File:Aval Appadithan (TV series).jpg and last: Reading Eagle Theater +[2018-02-13T00:37:00.959] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:37:00.977] [INFO] cheese - inserting 1000 documents. first: Camuiesti and last: Cuban general election, 1901 +[2018-02-13T00:37:01.021] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:37:01.041] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:37:01.186] [INFO] cheese - inserting 1000 documents. first: Roderick Macdonald and last: Khalifeh Chay +[2018-02-13T00:37:01.241] [INFO] cheese - inserting 1000 documents. first: File:TSA Cast.jpg and last: LTG Hugh P. Harris, USA +[2018-02-13T00:37:01.277] [INFO] cheese - batch complete in: 1.41 secs +[2018-02-13T00:37:01.306] [INFO] cheese - inserting 1000 documents. first: Myosin type iv and last: File:Freek2.jpg +[2018-02-13T00:37:01.304] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:37:01.348] [INFO] cheese - inserting 1000 documents. first: Category:Books about Woodrow Wilson and last: Portal:University of Cambridge/Did you know/3 +[2018-02-13T00:37:01.364] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:37:01.409] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:37:01.461] [INFO] cheese - inserting 1000 documents. first: List of people born in Calgary, Alberta, Canada and last: Josip Demirović Devj +[2018-02-13T00:37:01.464] [INFO] cheese - inserting 1000 documents. first: Riker and last: Geofroi Jacques Flach +[2018-02-13T00:37:01.507] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:37:01.525] [INFO] cheese - inserting 1000 documents. first: BBC Media Action and last: Pseudiragoides florianii +[2018-02-13T00:37:01.530] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:37:01.605] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:37:01.723] [INFO] cheese - inserting 1000 documents. first: Category:1898 novels and last: LR44 Batteries +[2018-02-13T00:37:01.771] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:37:01.803] [INFO] cheese - inserting 1000 documents. first: VADM James A. Stockdale, USN and last: Oliver typewriter +[2018-02-13T00:37:01.841] [INFO] cheese - inserting 1000 documents. first: Property class and last: Portal:Weather/Featured content/GA/353 +[2018-02-13T00:37:01.867] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:37:01.880] [INFO] cheese - inserting 1000 documents. first: Portal:University of Cambridge/Did you know/4 and last: Hero pen +[2018-02-13T00:37:01.935] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:37:01.957] [INFO] cheese - inserting 1000 documents. first: The Rattlesnakes and last: Charles Tayot +[2018-02-13T00:37:02.034] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:37:02.133] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:37:02.182] [INFO] cheese - inserting 1000 documents. first: Polabian culture and last: Godfrey I of Louvain +[2018-02-13T00:37:02.202] [INFO] cheese - inserting 1000 documents. first: Dominican general election, 1954 and last: Freidrich Wachowiak +[2018-02-13T00:37:02.248] [INFO] cheese - inserting 1000 documents. first: Lū’au and last: Politics of sierra leone +[2018-02-13T00:37:02.289] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:37:02.291] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:37:02.321] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:37:02.483] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/Featured content/GA/354 and last: Bolivarian Alliance for the People of Our America +[2018-02-13T00:37:02.493] [INFO] cheese - inserting 1000 documents. first: Virginia Secondary Route 620 (Fairfax County) and last: The Arrangement (1969 film) +[2018-02-13T00:37:02.537] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:37:02.548] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:37:02.607] [INFO] cheese - inserting 1000 documents. first: Tejima Keizaburō and last: Template:2013–14 IRB Sevens World Series +[2018-02-13T00:37:02.631] [INFO] cheese - inserting 1000 documents. first: Politics of slovakia and last: Portugal in the eurovision dance contest +[2018-02-13T00:37:02.654] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:37:02.656] [INFO] cheese - inserting 1000 documents. first: Robert Niven (cricketer) and last: GNU Libreboot +[2018-02-13T00:37:02.671] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:37:02.723] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:37:02.804] [INFO] cheese - inserting 1000 documents. first: University of Patna and last: Wikipedia:Articles for deletion/Fresku +[2018-02-13T00:37:02.893] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:37:02.961] [INFO] cheese - inserting 1000 documents. first: Portugal in the great war and last: Isopentenyl-diphosphate Delta-isomerase +[2018-02-13T00:37:02.969] [INFO] cheese - inserting 1000 documents. first: C27H28Br2O5S and last: The Southern District of New York Action Against Online Poker Players +[2018-02-13T00:37:03.010] [INFO] cheese - inserting 1000 documents. first: Texas hold 'em starting hands and last: Monte Vettore +[2018-02-13T00:37:03.013] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:37:03.044] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:37:03.103] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T00:37:03.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Peptide-RNA world and last: Francis Rynd +[2018-02-13T00:37:03.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Dabljuh and last: HP LaserJet 4M +[2018-02-13T00:37:03.207] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:37:03.245] [INFO] cheese - inserting 1000 documents. first: Korstin and last: Category:Buildings and structures in Southington, Connecticut +[2018-02-13T00:37:03.279] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:37:03.313] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:37:03.406] [INFO] cheese - inserting 1000 documents. first: Tamburlaine the Great (play) and last: Nicholas Goldsborough +[2018-02-13T00:37:03.443] [INFO] cheese - inserting 1000 documents. first: Natronai II and last: Wikipedia:Articles for deletion/Israel FC: Genesis +[2018-02-13T00:37:03.464] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:37:03.566] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:37:03.608] [INFO] cheese - inserting 1000 documents. first: Sine of X and last: COL4A3 +[2018-02-13T00:37:03.678] [INFO] cheese - inserting 1000 documents. first: Visa policy of Trinidad and Tobago and last: Mouhcine Chehibi +[2018-02-13T00:37:03.693] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:37:03.770] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:37:03.857] [INFO] cheese - inserting 1000 documents. first: HP LaserJet 4 Plus and last: Football World Cup 1998 (qualification AFC) +[2018-02-13T00:37:03.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alptraum and last: Hurstbridge line +[2018-02-13T00:37:03.924] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:37:04.023] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T00:37:04.202] [INFO] cheese - inserting 1000 documents. first: Laai Ying Haap and last: Luigi Calamatta +[2018-02-13T00:37:04.216] [INFO] cheese - inserting 1000 documents. first: Template:Republic of the Congo topics and last: Logik (Processing and Hosting Services) +[2018-02-13T00:37:04.291] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:37:04.295] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:37:04.306] [INFO] cheese - inserting 1000 documents. first: Arresten and last: Sulakhlu +[2018-02-13T00:37:04.307] [INFO] cheese - inserting 1000 documents. first: Mejirodai, Tōkyō and last: Matja language +[2018-02-13T00:37:04.357] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:37:04.410] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:37:04.414] [INFO] cheese - inserting 1000 documents. first: Jerlun-Langkawi (federal constituency) and last: Template:Party shading/Unidos Podemos +[2018-02-13T00:37:04.504] [INFO] cheese - inserting 1000 documents. first: Football World Cup 1998 (qualification CAF) and last: ISO 639:eng +[2018-02-13T00:37:04.534] [INFO] cheese - batch complete in: 1.221 secs +[2018-02-13T00:37:04.550] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:37:04.852] [INFO] cheese - inserting 1000 documents. first: Micheal Jordon and last: Wikipedia:Articles for deletion/GreenFacts +[2018-02-13T00:37:04.862] [INFO] cheese - inserting 1000 documents. first: Hydroelectric dams and last: Akoli +[2018-02-13T00:37:04.902] [INFO] cheese - inserting 1000 documents. first: Propuesta Indecente and last: ZebraBox +[2018-02-13T00:37:04.938] [INFO] cheese - inserting 1000 documents. first: Musca fenestralis and last: Phineas and Ferb's Musical Cliptastic Countdown +[2018-02-13T00:37:04.947] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:37:04.971] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:37:05.025] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T00:37:05.049] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:37:05.100] [INFO] cheese - inserting 1000 documents. first: File:UndercoverAngelDVDCover.jpg and last: UN/LOCODE:THMEK +[2018-02-13T00:37:05.164] [INFO] cheese - inserting 1000 documents. first: Titan Maximum and last: KPSS test +[2018-02-13T00:37:05.202] [INFO] cheese - inserting 1000 documents. first: Star Wars: Fall of the Resistance and last: Category:Pliocene animals of Europe +[2018-02-13T00:37:05.205] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:37:05.273] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T00:37:05.277] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:37:05.501] [INFO] cheese - inserting 1000 documents. first: Bishops of Paderborn and last: File:Meher masts 2.jpg +[2018-02-13T00:37:05.549] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:37:05.584] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USQHK and last: UN/LOCODE:USWVY +[2018-02-13T00:37:05.683] [INFO] cheese - inserting 1000 documents. first: Ulu, Russia and last: Stephen Hudson (singer) +[2018-02-13T00:37:05.787] [INFO] cheese - inserting 1000 documents. first: Every Turn of the World and last: Wikipedia:WikiProject Spam/LinkReports/cinmass.com +[2018-02-13T00:37:05.800] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:37:05.848] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:37:05.871] [INFO] cheese - inserting 1000 documents. first: Stag Weekend and last: File:Loose ends french jimi.jpg +[2018-02-13T00:37:05.926] [INFO] cheese - inserting 1000 documents. first: Paganin and last: Ray Procter +[2018-02-13T00:37:05.985] [INFO] cheese - inserting 1000 documents. first: Commissioner of Public Affairs and Public Safety and last: Edward Reed +[2018-02-13T00:37:06.289] [INFO] cheese - batch complete in: 1.239 secs +[2018-02-13T00:37:06.479] [INFO] cheese - batch complete in: 1.274 secs +[2018-02-13T00:37:06.523] [INFO] cheese - batch complete in: 1.25 secs +[2018-02-13T00:37:06.559] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T00:37:06.802] [INFO] cheese - inserting 1000 documents. first: Amsit and last: Sypharochiton sinclairi +[2018-02-13T00:37:06.905] [INFO] cheese - batch complete in: 1.356 secs +[2018-02-13T00:37:06.980] [INFO] cheese - inserting 1000 documents. first: Bakemon and last: UN/LOCODE:USLOI +[2018-02-13T00:37:07.069] [INFO] cheese - batch complete in: 1.269 secs +[2018-02-13T00:37:07.085] [INFO] cheese - inserting 1000 documents. first: Template:Showt County and last: Rising film (long tube vertical) evaporator +[2018-02-13T00:37:07.146] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T00:37:07.155] [INFO] cheese - inserting 1000 documents. first: Alphonse Lemonnier and last: Yang–Mills action +[2018-02-13T00:37:07.214] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:37:07.283] [INFO] cheese - inserting 1000 documents. first: 1913 Copa del Rey and last: H.J. Whigham +[2018-02-13T00:37:07.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/cinmass.com and last: SAIPA Group +[2018-02-13T00:37:07.351] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:37:07.386] [INFO] cheese - inserting 1000 documents. first: Carhampton and last: Dusan Uhrin +[2018-02-13T00:37:07.386] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T00:37:07.469] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T00:37:07.486] [INFO] cheese - inserting 1000 documents. first: Template:1.1-enzyme-stub and last: San Francisco Bay Oil Spill +[2018-02-13T00:37:07.559] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USXWN and last: Bainbridge +[2018-02-13T00:37:07.587] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:37:07.612] [INFO] cheese - inserting 1000 documents. first: Soganlu and last: Template:Fb team Havre +[2018-02-13T00:37:07.622] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:37:07.679] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:37:07.970] [INFO] cheese - inserting 1000 documents. first: Henry James Whigham and last: Propafol +[2018-02-13T00:37:08.126] [INFO] cheese - inserting 1000 documents. first: Moldova Suliţa and last: Graduate School for Computing in Medicine and Life Sciences +[2018-02-13T00:37:08.143] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:37:08.156] [INFO] cheese - inserting 1000 documents. first: Category:People with hemophilia and last: Cortinarius palatinus +[2018-02-13T00:37:08.311] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T00:37:08.326] [INFO] cheese - batch complete in: 1.111 secs +[2018-02-13T00:37:08.388] [INFO] cheese - inserting 1000 documents. first: Six Metamorphoses after Ovid and last: 1982 NLCS +[2018-02-13T00:37:08.447] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T00:37:08.557] [INFO] cheese - inserting 1000 documents. first: MAX (band) and last: Cumulo-nimbus +[2018-02-13T00:37:08.623] [INFO] cheese - inserting 1000 documents. first: Category:Indian music composers and last: Wizardry III +[2018-02-13T00:37:08.639] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T00:37:08.714] [INFO] cheese - inserting 1000 documents. first: Lebanon - United States of America relations and last: Jayden Post +[2018-02-13T00:37:08.721] [INFO] cheese - inserting 1000 documents. first: Pervasive Informatics and last: Template:NYCS Platform Layout IRT Flushing Line Local Stations/doc +[2018-02-13T00:37:08.761] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T00:37:08.826] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T00:37:08.855] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:37:08.961] [INFO] cheese - inserting 1000 documents. first: Cortinarius neotropicus and last: Bovingdon Hall Woods +[2018-02-13T00:37:09.035] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:37:09.101] [INFO] cheese - inserting 1000 documents. first: Datong-Xian Passenger Dedicated Railway Line and last: Category:Art museums and galleries in Worcestershire +[2018-02-13T00:37:09.108] [INFO] cheese - inserting 1000 documents. first: 1983 NLCS and last: 2011 NCAA Division I Men's Ice Hockey Tournament +[2018-02-13T00:37:09.262] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T00:37:09.260] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:37:09.455] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout IRT Flushing Line Local Stations and last: Jandar, Kohgiluyeh and Boyer-Ahmad Province +[2018-02-13T00:37:09.513] [INFO] cheese - inserting 1000 documents. first: Prinetti & Stucchi and last: Zohar (disambiguation) +[2018-02-13T00:37:09.514] [INFO] cheese - inserting 1000 documents. first: Reference scenarios and last: Dot com companies +[2018-02-13T00:37:09.518] [INFO] cheese - inserting 1000 documents. first: WRGB and last: Milevsko +[2018-02-13T00:37:09.526] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:37:09.594] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:37:09.602] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:37:09.631] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:37:09.858] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Hema Malini and last: Polykarp Leyser II +[2018-02-13T00:37:09.869] [INFO] cheese - inserting 1000 documents. first: Phyllis Lindstrom and last: Numea +[2018-02-13T00:37:09.934] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:37:09.954] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:37:10.002] [INFO] cheese - inserting 1000 documents. first: Category:Keb' Mo' album covers and last: Category:1920–21 ice hockey leagues +[2018-02-13T00:37:10.004] [INFO] cheese - inserting 1000 documents. first: File:Tiger Daula.gif and last: Real Me (song) +[2018-02-13T00:37:10.031] [INFO] cheese - inserting 1000 documents. first: Electrical energy measurement and last: Category:Wikipedia sockpuppets of Wookiewinnett +[2018-02-13T00:37:10.043] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:37:10.059] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T00:37:10.114] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:37:10.192] [INFO] cheese - inserting 1000 documents. first: Samuel Robbins Brown (missionary) and last: Glycosylphosphatidylinositol diacylglycerol-lyase +[2018-02-13T00:37:10.237] [INFO] cheese - inserting 1000 documents. first: Romaniote language and last: UN/LOCODE:USLVK +[2018-02-13T00:37:10.310] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:37:10.336] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:37:10.385] [INFO] cheese - inserting 1000 documents. first: Joseph Anton Steffan and last: Swimming at the 2006 Asian Games - Women's 100m butterfly +[2018-02-13T00:37:10.436] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:37:10.483] [INFO] cheese - inserting 1000 documents. first: Kamen Rider 555: Paradise Lost and last: Santo Amaro, Azores Islands +[2018-02-13T00:37:10.576] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:37:10.665] [INFO] cheese - inserting 1000 documents. first: Template:2016–17 Northern Football League Division Two table and last: The Final Last of the Ultimate End (short story) +[2018-02-13T00:37:10.678] [INFO] cheese - inserting 1000 documents. first: Milán Václavík and last: Liechtenstein parliamentary election, 1932 +[2018-02-13T00:37:10.781] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:37:10.784] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:37:10.787] [INFO] cheese - inserting 1000 documents. first: Portal:Ice hockey/Featured lists/6 and last: Lee Leffingwell +[2018-02-13T00:37:10.903] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:37:10.981] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USRKF and last: Winnie the pooh +[2018-02-13T00:37:10.986] [INFO] cheese - inserting 1000 documents. first: Lancia Augusta and last: Stefanie Beck +[2018-02-13T00:37:11.098] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:37:11.105] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:37:11.203] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2006 Asian Games - Women's 100m freestyle and last: 2011 Budapest Grand Prix – Singles Qualifying +[2018-02-13T00:37:11.315] [INFO] cheese - inserting 1000 documents. first: Praia da Vitória, Azores Islands and last: Barbadian general election, 1981 +[2018-02-13T00:37:11.341] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T00:37:11.454] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T00:37:11.526] [INFO] cheese - inserting 1000 documents. first: Liechtenstein parliamentary election, 1936 and last: Almaran +[2018-02-13T00:37:11.594] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:37:11.645] [INFO] cheese - inserting 1000 documents. first: Kristina Alikina and last: Fernandez de la Cruz (Buenos Aires Premetro) +[2018-02-13T00:37:11.659] [INFO] cheese - inserting 1000 documents. first: Kulul, California and last: Category:Organizations based in Yugoslavia +[2018-02-13T00:37:11.718] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T00:37:11.728] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:37:11.819] [INFO] cheese - inserting 1000 documents. first: Butlerov and last: Flamingo Resort, Inc. v. United States +[2018-02-13T00:37:11.827] [INFO] cheese - inserting 1000 documents. first: Hermosa, Chicago and last: UN/LOCODE:USHLL +[2018-02-13T00:37:11.872] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:37:11.885] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:37:11.917] [INFO] cheese - inserting 1000 documents. first: 2010 Poli-Farbe Budapest Grand Prix and last: Wikipedia:Articles for deletion/Nickerson Family Association (2nd nomination) +[2018-02-13T00:37:12.018] [INFO] cheese - inserting 1000 documents. first: Isaac Ledyard and last: File:Orb-bike.gif +[2018-02-13T00:37:12.031] [INFO] cheese - inserting 1000 documents. first: Damias elegans and last: Koca Hüsrev Pasha +[2018-02-13T00:37:12.032] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:37:12.132] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:37:12.140] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:37:12.325] [INFO] cheese - inserting 1000 documents. first: Rhizoridae and last: American Tunes +[2018-02-13T00:37:12.356] [INFO] cheese - inserting 1000 documents. first: Hanken and last: UN/LOCODE:USBVY +[2018-02-13T00:37:12.379] [INFO] cheese - inserting 1000 documents. first: Category:"Weird Al" Yankovic audio samples and last: Natividad, California +[2018-02-13T00:37:12.389] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:37:12.411] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:37:12.472] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:37:12.566] [INFO] cheese - inserting 1000 documents. first: Tala (Darkwatch) and last: Mor karbasi +[2018-02-13T00:37:12.597] [INFO] cheese - inserting 1000 documents. first: Nike Academy and last: William James Manning +[2018-02-13T00:37:12.629] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:37:12.654] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:37:12.699] [INFO] cheese - inserting 1000 documents. first: Koca Husrev Pasha and last: Template:Attached KML/Pleasant Avenue +[2018-02-13T00:37:12.738] [INFO] cheese - inserting 1000 documents. first: Sam Nzima and last: Anthony Michael Arnold Turnbull +[2018-02-13T00:37:12.811] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:37:12.892] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:37:12.914] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USRXG and last: UN/LOCODE:USHAR +[2018-02-13T00:37:13.009] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:37:13.037] [INFO] cheese - inserting 1000 documents. first: Category:2009 in fencing and last: Philippe Juvin +[2018-02-13T00:37:13.078] [INFO] cheese - inserting 1000 documents. first: Guadalupe Muñoz Sampedro and last: Martinsville, Clinton County, Indiana +[2018-02-13T00:37:13.111] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:37:13.185] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:37:13.217] [INFO] cheese - inserting 1000 documents. first: Setauket Spy Ring and last: Category:Hotels by city +[2018-02-13T00:37:13.244] [INFO] cheese - inserting 1000 documents. first: William Thomas Manning and last: Wikipedia:Miscellany for deletion/User:CanidG/Snap's World +[2018-02-13T00:37:13.278] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:37:13.314] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:37:13.419] [INFO] cheese - inserting 1000 documents. first: Khalil Said Khalil Deek and last: Żelazna Brama +[2018-02-13T00:37:13.544] [INFO] cheese - inserting 1000 documents. first: Template:Diplomatic missions of Tanzania and last: Category:Selex ES +[2018-02-13T00:37:13.558] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:37:13.605] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:37:13.666] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USBSG and last: Wikipedia:Categories for deletion/Category:Atheists +[2018-02-13T00:37:13.681] [INFO] cheese - inserting 1000 documents. first: Essa Hukkanen and last: Wikipedia:WikiProject Spam/LinkReports/multipessoa.net +[2018-02-13T00:37:13.760] [INFO] cheese - inserting 1000 documents. first: Abhishek verma and last: Untied Kingdom general election, 1865 +[2018-02-13T00:37:13.748] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:37:13.778] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:37:13.832] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:37:13.915] [INFO] cheese - inserting 1000 documents. first: Triple J Hottest 100 Australian Albums of All Time, 2011 and last: George Barratt +[2018-02-13T00:37:13.933] [INFO] cheese - inserting 1000 documents. first: Abraham Law and last: Meinwerk, Blessed +[2018-02-13T00:37:14.015] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:37:14.044] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:37:14.160] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/IPhone 5S/archive2 and last: Ryouzo +[2018-02-13T00:37:14.216] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:37:14.304] [INFO] cheese - inserting 1000 documents. first: Saudi Arabia–Untied Arab Emirates relations and last: Category:Lists of 14th-century people +[2018-02-13T00:37:14.337] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:37:14.385] [INFO] cheese - inserting 1000 documents. first: Eufemiusz Czaplic and last: Büyükmenderes River +[2018-02-13T00:37:14.519] [INFO] cheese - inserting 1000 documents. first: Atomship song and last: Sarwankhera +[2018-02-13T00:37:14.601] [INFO] cheese - inserting 1000 documents. first: Ukraine Without Kuchma and last: Vodafone-Funkturm Stuttgart-Vaihingen +[2018-02-13T00:37:14.600] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T00:37:14.644] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:37:14.661] [INFO] cheese - inserting 1000 documents. first: Joseph Barrett and last: Sleepy-time +[2018-02-13T00:37:14.743] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:37:14.777] [INFO] cheese - inserting 1000 documents. first: Ugra River (Trotuș) and last: First generation immigrant +[2018-02-13T00:37:14.815] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T00:37:14.851] [INFO] cheese - inserting 1000 documents. first: 2014 in Australia and last: Glaucopis auge +[2018-02-13T00:37:14.876] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T00:37:14.904] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:37:14.967] [INFO] cheese - inserting 1000 documents. first: Grangegorman F.C. and last: Untied Arab Emirates-Untied Kingdom relations +[2018-02-13T00:37:15.000] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:37:15.154] [INFO] cheese - inserting 1000 documents. first: Carrol Delaney and last: Immigration to Honduras +[2018-02-13T00:37:15.202] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:37:15.209] [INFO] cheese - inserting 1000 documents. first: Borotra and last: Ahdim Olsun +[2018-02-13T00:37:15.213] [INFO] cheese - inserting 1000 documents. first: Red Star, The and last: Joint address (Canada) +[2018-02-13T00:37:15.261] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:37:15.297] [INFO] cheese - inserting 1000 documents. first: Minecraft pe and last: Wikipedia:Articles for deletion/Carey Martin +[2018-02-13T00:37:15.297] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:37:15.362] [INFO] cheese - inserting 1000 documents. first: Rafferty Rides a Winner and last: 2016 in combat sports +[2018-02-13T00:37:15.363] [INFO] cheese - inserting 1000 documents. first: City of Bath Boys' School and last: File:Rshut-big-box2.gif +[2018-02-13T00:37:15.362] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:37:15.392] [INFO] cheese - inserting 1000 documents. first: Category:Cricket laws and regulations and last: Douglas Southall Freeman +[2018-02-13T00:37:15.441] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:37:15.470] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:37:15.476] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:37:15.597] [INFO] cheese - inserting 1000 documents. first: Rutland 5 4 Vermont Representative District and last: Here (Nicolay album) +[2018-02-13T00:37:15.705] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:37:15.834] [INFO] cheese - inserting 1000 documents. first: Katherine Ruth and last: PS-90 +[2018-02-13T00:37:15.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bailey Pickett and last: The Vikings (British band) +[2018-02-13T00:37:15.878] [INFO] cheese - inserting 1000 documents. first: Batwa people and last: Shishitogarashi +[2018-02-13T00:37:15.884] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:37:15.937] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:37:15.973] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:37:16.005] [INFO] cheese - inserting 1000 documents. first: Strongly real element and last: Template:Donegal constituencies +[2018-02-13T00:37:16.074] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:37:16.131] [INFO] cheese - inserting 1000 documents. first: Nkem Illabor and last: Powelliphanta Sp.Lodestone +[2018-02-13T00:37:16.194] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class American Samoa articles and last: Wikipedia:Articles for deletion/Niger–Pakistan relations +[2018-02-13T00:37:16.219] [INFO] cheese - inserting 1000 documents. first: Kamelion and last: Wikipedia:Picture of the day/December 31, 2004 +[2018-02-13T00:37:16.239] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:37:16.304] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:37:16.307] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T00:37:16.541] [INFO] cheese - inserting 1000 documents. first: Visa policy of Transnistria and last: Category:Villages in York County, Maine +[2018-02-13T00:37:16.565] [INFO] cheese - inserting 1000 documents. first: Shishi togarashi and last: Sathyan Anthikkad +[2018-02-13T00:37:16.580] [INFO] cheese - inserting 1000 documents. first: King coal highway and last: KoQ +[2018-02-13T00:37:16.620] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:37:16.646] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:37:16.671] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:37:16.684] [INFO] cheese - inserting 1000 documents. first: Template:Dublin constituencies and last: Category:Corruption in Goa +[2018-02-13T00:37:16.797] [INFO] cheese - inserting 1000 documents. first: Category:Olympic judoka of Bulgaria and last: Laurentius of Echternach +[2018-02-13T00:37:16.805] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:37:16.909] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:37:16.948] [INFO] cheese - inserting 1000 documents. first: Purple Cherry and last: John FitzPatrick +[2018-02-13T00:37:16.968] [INFO] cheese - inserting 1000 documents. first: Mohali and last: Wikipedia:Featured article candidates/Buckinghamshire/archive1 +[2018-02-13T00:37:17.051] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:37:17.060] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:37:17.214] [INFO] cheese - inserting 1000 documents. first: 2002 All-Ireland Minor Hurling Championship and last: Stanley Rose +[2018-02-13T00:37:17.263] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:37:17.266] [INFO] cheese - inserting 1000 documents. first: Legacy (Eminem song) and last: Sergio Salazar +[2018-02-13T00:37:17.296] [INFO] cheese - inserting 1000 documents. first: Eugene Kalt and last: Wikipedia:WikiProject User Page Design Committee/Design Requests +[2018-02-13T00:37:17.333] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:37:17.338] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mimi Soltysik presidential campaign, 2016 and last: Kŭmt'ap-sa temple +[2018-02-13T00:37:17.398] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:37:17.419] [INFO] cheese - inserting 1000 documents. first: Haina (bei Gotha) and last: Buddy (musical) +[2018-02-13T00:37:17.422] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:37:17.496] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:37:17.557] [INFO] cheese - inserting 1000 documents. first: Moses Gun and last: John Deasy (1856-1896) +[2018-02-13T00:37:17.627] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:37:17.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Single malt Scotch and last: Wikipedia:Featured article candidates/Zuiderzee Works +[2018-02-13T00:37:17.698] [INFO] cheese - inserting 1000 documents. first: DE18 and last: Mike Sullivan (ice hockey b. 1968) +[2018-02-13T00:37:17.729] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:37:17.730] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:37:17.795] [INFO] cheese - inserting 1000 documents. first: History of Anchorage and last: Trident Centre +[2018-02-13T00:37:17.820] [INFO] cheese - inserting 1000 documents. first: Kŭmt'apsa temple and last: Dyskritodon +[2018-02-13T00:37:17.838] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:37:17.864] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:37:17.912] [INFO] cheese - inserting 1000 documents. first: Jedna si Jedina and last: Category:1910 plays +[2018-02-13T00:37:17.952] [INFO] cheese - inserting 1000 documents. first: 6-Methylenedihydrodesoxymorphine and last: Hannam Station +[2018-02-13T00:37:17.960] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:37:18.005] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:37:18.034] [INFO] cheese - inserting 1000 documents. first: Chatot (Pokemon) and last: Wikipedia:WikiProject Spam/LinkReports/fozoolemahaleh.com +[2018-02-13T00:37:18.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Village pump (miscellaneous)/Archive Homepage and last: County in China +[2018-02-13T00:37:18.074] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:37:18.114] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:37:18.161] [INFO] cheese - inserting 1000 documents. first: Enthentha Dooram (Distant Dreams) - a Telugu movie and last: Dolomittøyane +[2018-02-13T00:37:18.206] [INFO] cheese - inserting 1000 documents. first: Category:Melkite Christian communities in Syria and last: Indian vice-presidential election, 1952 +[2018-02-13T00:37:18.210] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:37:18.243] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:37:18.289] [INFO] cheese - inserting 1000 documents. first: Agdistis omani and last: Template:Infobox hurling championship +[2018-02-13T00:37:18.338] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:37:18.427] [INFO] cheese - inserting 1000 documents. first: Das Tropas River and last: Template:Aviation incidents and accidents in 1988 +[2018-02-13T00:37:18.440] [INFO] cheese - inserting 1000 documents. first: A Toadally Magical Adventure and last: Category:I-Kiribati politicians +[2018-02-13T00:37:18.495] [INFO] cheese - inserting 1000 documents. first: Architectural Lighting Control System (theater) and last: Luke's Shattered Sleep +[2018-02-13T00:37:18.536] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:37:18.575] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:37:18.605] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:37:18.688] [INFO] cheese - inserting 1000 documents. first: BILU and last: Vacuum arc +[2018-02-13T00:37:18.751] [INFO] cheese - inserting 1000 documents. first: Uschold, Mike and last: Template:Did you know nominations/GISHWHES +[2018-02-13T00:37:18.789] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:37:18.819] [INFO] cheese - inserting 1000 documents. first: Gaudé and last: Category:Schools in Allamakee County, Iowa +[2018-02-13T00:37:18.913] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:37:18.920] [INFO] cheese - inserting 1000 documents. first: Kim Dong-Jin (footballer born 1992) and last: Central College tram stop +[2018-02-13T00:37:18.941] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:37:19.022] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:37:19.141] [INFO] cheese - inserting 1000 documents. first: Template:Aviation incidents and accidents in 1987 and last: Rum-theg Dgon-pa +[2018-02-13T00:37:19.164] [INFO] cheese - inserting 1000 documents. first: 1997 World Championships in Athletics – Women's javelin throw and last: Category:Surinamese football referees +[2018-02-13T00:37:19.179] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:37:19.236] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:37:19.311] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Appanoose County, Iowa and last: Category:Gymnastics at the 1992 Summer Olympics +[2018-02-13T00:37:19.320] [INFO] cheese - inserting 1000 documents. first: File:Platit. logo.png and last: Pacita del Rio +[2018-02-13T00:37:19.346] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:37:19.354] [INFO] cheese - inserting 1000 documents. first: Existential psychotherapies and last: Straight Ahead (Ignite album) +[2018-02-13T00:37:19.383] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:37:19.391] [INFO] cheese - inserting 1000 documents. first: Bodyskin and last: Andrzej Wawrzyniak +[2018-02-13T00:37:19.409] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:37:19.465] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:37:19.473] [INFO] cheese - inserting 1000 documents. first: High Road tram stop and last: Template:Neuropeptide signaling +[2018-02-13T00:37:19.546] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:37:19.589] [INFO] cheese - inserting 1000 documents. first: European Association for Computer-Assisted Language Learning and last: Burg Clam +[2018-02-13T00:37:19.602] [INFO] cheese - inserting 1000 documents. first: Cercle Dijon Football and last: They Said That Hell’s Not Hot +[2018-02-13T00:37:19.644] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:37:19.654] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:37:19.750] [INFO] cheese - inserting 1000 documents. first: Category:Gymnastics at the 1996 Summer Olympics and last: Platyptilia romieuxi +[2018-02-13T00:37:19.788] [INFO] cheese - inserting 1000 documents. first: DANIPS and last: Hangravan +[2018-02-13T00:37:19.797] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:37:19.830] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:37:19.880] [INFO] cheese - inserting 1000 documents. first: Solntsev and last: John Bernard Sale +[2018-02-13T00:37:19.919] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:37:19.979] [INFO] cheese - inserting 1000 documents. first: Dudley Metropolitan Borough Council election, 1998 and last: Category:1770s paintings +[2018-02-13T00:37:19.996] [INFO] cheese - inserting 1000 documents. first: Sargis Karapetyan (footballer, born 1990) and last: Salée River (Dominica) +[2018-02-13T00:37:19.998] [INFO] cheese - inserting 1000 documents. first: Category:CoDominium series and last: Aaa server +[2018-02-13T00:37:20.042] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:37:20.043] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:37:20.082] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:37:20.166] [INFO] cheese - inserting 1000 documents. first: Defence of India act, 1915 and last: File:Noah Bennett.jpg +[2018-02-13T00:37:20.208] [INFO] cheese - inserting 1000 documents. first: Corsyra and last: Wikipedia:WikiProject Spam/Local/ninelegends.com +[2018-02-13T00:37:20.245] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:37:20.263] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:37:20.344] [INFO] cheese - inserting 1000 documents. first: Khanik, Beradust and last: ᧉ +[2018-02-13T00:37:20.393] [INFO] cheese - inserting 1000 documents. first: Ashish Kothari and last: Mantidactylus malagasius +[2018-02-13T00:37:20.414] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:37:20.460] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:37:20.685] [INFO] cheese - inserting 1000 documents. first: Schroeter and last: No Limits (Reset album) +[2018-02-13T00:37:20.769] [INFO] cheese - inserting 1000 documents. first: Texas ebony and last: Pitanga River (Sergipe) +[2018-02-13T00:37:20.792] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:37:20.903] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:37:21.010] [INFO] cheese - inserting 1000 documents. first: Thet and last: Deaths in 1947 +[2018-02-13T00:37:21.050] [INFO] cheese - inserting 1000 documents. first: Woolery Stone Company and last: Template:European Schools +[2018-02-13T00:37:21.072] [INFO] cheese - inserting 1000 documents. first: Skunk oil and last: The Comet Strikes +[2018-02-13T00:37:21.090] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:37:21.120] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:37:21.161] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T00:37:21.152] [INFO] cheese - inserting 1000 documents. first: Mannix (season 7) and last: In Darkness Waiting (short story) +[2018-02-13T00:37:21.261] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:37:21.374] [INFO] cheese - inserting 1000 documents. first: Starface and last: Wikipedia:WikiProject Preclinical Medicine/Guidelines +[2018-02-13T00:37:21.419] [INFO] cheese - inserting 1000 documents. first: Pomonga River and last: (53550) 2000 BF19 +[2018-02-13T00:37:21.448] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:37:21.458] [INFO] cheese - inserting 1000 documents. first: Annai Airport and last: Wikipedia:Articles for deletion/Ex Girlfriend (band) +[2018-02-13T00:37:21.517] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:37:21.530] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:37:21.684] [INFO] cheese - inserting 1000 documents. first: Joan Berkowitz and last: Marasmarcha griseodactylus +[2018-02-13T00:37:21.733] [INFO] cheese - inserting 1000 documents. first: Template:Drugbox and last: Aranguren (Argentina) +[2018-02-13T00:37:22.080] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T00:37:22.155] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:37:22.225] [INFO] cheese - inserting 1000 documents. first: Dumfries-shire (UK Parliament constituency) and last: Pdc darts +[2018-02-13T00:37:22.256] [INFO] cheese - inserting 1000 documents. first: Ufficialexbox.it and last: File:Insomnia Lover poster.jpeg +[2018-02-13T00:37:22.324] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:37:22.405] [INFO] cheese - inserting 1000 documents. first: WWOR-TV and last: 1991 Canada Cup +[2018-02-13T00:37:22.433] [INFO] cheese - batch complete in: 1.272 secs +[2018-02-13T00:37:22.471] [INFO] cheese - inserting 1000 documents. first: Facies Hippocratica and last: Mandai Road +[2018-02-13T00:37:22.560] [INFO] cheese - inserting 1000 documents. first: Out of Control (St. Martin's True Crime Library) and last: Wikipedia:Articles for deletion/Greek Life at the University of Central Florida +[2018-02-13T00:37:22.604] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T00:37:22.607] [INFO] cheese - batch complete in: 2.525 secs +[2018-02-13T00:37:22.619] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T00:37:22.769] [INFO] cheese - inserting 1000 documents. first: Hellinsia griseodactylus and last: Chibok language +[2018-02-13T00:37:22.825] [INFO] cheese - inserting 1000 documents. first: File:Clifford Roach.jpg and last: Wikipedia:Articles for deletion/Renault Energy F1-2014 +[2018-02-13T00:37:22.846] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:37:22.905] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:37:23.065] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dawdle and last: Wikipedia:WikiProject Saskatchewan/Assessment +[2018-02-13T00:37:23.087] [INFO] cheese - inserting 1000 documents. first: Xu Jilin and last: Category:1791 establishments in Pennsylvania +[2018-02-13T00:37:23.115] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:37:23.138] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:37:23.157] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Keighley and district service 760 and last: Fringe benefits tax +[2018-02-13T00:37:23.226] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:37:23.241] [INFO] cheese - inserting 1000 documents. first: Radyo 5 and last: Platyptilia seeboldi +[2018-02-13T00:37:23.278] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:37:23.319] [INFO] cheese - inserting 1000 documents. first: The Tiny Kite of Eddie Wing and last: Blavatnik Awards for Young Scientists +[2018-02-13T00:37:23.363] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:37:23.426] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Gyeongju/archive1 and last: Category:Soccer venues in Arizona +[2018-02-13T00:37:23.485] [INFO] cheese - inserting 1000 documents. first: Heart of Gold (1941 film) and last: Central Police Station, Hong Kong +[2018-02-13T00:37:23.509] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T00:37:23.586] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:37:23.718] [INFO] cheese - inserting 1000 documents. first: 2006 Texas Tech Red Raiders football team and last: File:Mcoilback.JPG +[2018-02-13T00:37:23.751] [INFO] cheese - inserting 1000 documents. first: File:Pescasseroli-Stemma.gif and last: Kotyapi +[2018-02-13T00:37:23.782] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:37:23.802] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:37:23.834] [INFO] cheese - inserting 1000 documents. first: Out for Blood (disambiguation) and last: Restricted Sector for Stateless Refugees +[2018-02-13T00:37:23.838] [INFO] cheese - inserting 1000 documents. first: New Lenox Township and last: Total Risk-Based Capital +[2018-02-13T00:37:23.887] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:37:23.900] [INFO] cheese - batch complete in: 1.293 secs +[2018-02-13T00:37:23.944] [INFO] cheese - inserting 1000 documents. first: Emilie Petersen and last: Nassour Studios +[2018-02-13T00:37:23.973] [INFO] cheese - inserting 1000 documents. first: Corocoro.tv and last: Amnat Charoen municipal Stadium +[2018-02-13T00:37:23.985] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:37:24.011] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:37:24.164] [INFO] cheese - inserting 1000 documents. first: Johan Fabricius and last: Category:Stub-Class Japan-related articles +[2018-02-13T00:37:24.174] [INFO] cheese - inserting 1000 documents. first: Pavlo Pashaiv and last: Hueque River +[2018-02-13T00:37:24.210] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:37:24.214] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BITEDEV and last: Kenjirō Tokutomi +[2018-02-13T00:37:24.227] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:37:24.308] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Cass County, Iowa and last: Template:Top ten European male singles tennis players +[2018-02-13T00:37:24.308] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:37:24.395] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:37:24.457] [INFO] cheese - inserting 1000 documents. first: Muzi Goti and last: Portal:Geography of Kenya/Selected panorama/8 +[2018-02-13T00:37:24.521] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:37:24.673] [INFO] cheese - inserting 1000 documents. first: Neve Sha'anan, Tel Aviv and last: Henry sabin +[2018-02-13T00:37:24.674] [INFO] cheese - inserting 1000 documents. first: Marsco Glass Products and last: Renegado River +[2018-02-13T00:37:24.689] [INFO] cheese - inserting 1000 documents. first: Category:Promotional photos and last: Treasury shares +[2018-02-13T00:37:24.699] [INFO] cheese - inserting 1000 documents. first: Goal Average and last: Archie McLean (footballer) +[2018-02-13T00:37:24.721] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:37:24.752] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:37:24.761] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:37:24.784] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:37:24.870] [INFO] cheese - inserting 1000 documents. first: Dancing in the Dark (film) and last: Randy Travis singles discography +[2018-02-13T00:37:24.918] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:37:25.095] [INFO] cheese - inserting 1000 documents. first: Mestská hala Prešov and last: DAR-1 +[2018-02-13T00:37:25.152] [INFO] cheese - inserting 1000 documents. first: Events in 1999 and last: Category:1613 in Malta +[2018-02-13T00:37:25.154] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:37:25.224] [INFO] cheese - batch complete in: 1.213 secs +[2018-02-13T00:37:25.278] [INFO] cheese - inserting 1000 documents. first: Spinal root and last: Novacaesareala (bird) +[2018-02-13T00:37:25.306] [INFO] cheese - inserting 1000 documents. first: Black Ruby Barb and last: Chinese Lions +[2018-02-13T00:37:25.319] [INFO] cheese - inserting 1000 documents. first: Chinese Riff and last: Political Corruption +[2018-02-13T00:37:25.333] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:37:25.360] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:37:25.362] [INFO] cheese - inserting 1000 documents. first: Micropteryx proavitella and last: Template:User from South Sudan +[2018-02-13T00:37:25.373] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:37:25.427] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:37:25.508] [INFO] cheese - inserting 1000 documents. first: 6th Infantry Regiment (United States) and last: Porta-bote +[2018-02-13T00:37:25.548] [INFO] cheese - inserting 1000 documents. first: DAR-1A and last: Eilema amaura +[2018-02-13T00:37:25.577] [INFO] cheese - inserting 1000 documents. first: Wyshynski and last: Fine-leaf wadara +[2018-02-13T00:37:25.579] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:37:25.603] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:37:25.619] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:37:25.751] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/abercrombiefitchdiscountonline.com and last: 2011 Norfolk State Spartans football team +[2018-02-13T00:37:25.766] [INFO] cheese - inserting 1000 documents. first: The Great Airship and last: Cane (novel) +[2018-02-13T00:37:25.773] [INFO] cheese - inserting 1000 documents. first: Category:Films about nuclear war and weapons and last: Wikipedia:Sockpuppet investigations/Lslavin13 +[2018-02-13T00:37:25.780] [INFO] cheese - inserting 1000 documents. first: Benji Gregory and last: SSBN 735 +[2018-02-13T00:37:25.799] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:37:25.828] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:37:25.828] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:37:25.842] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:37:25.924] [INFO] cheese - inserting 1000 documents. first: File:Lovely difficult cover.jpg and last: Robert van Winkle +[2018-02-13T00:37:25.954] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:37:26.005] [INFO] cheese - inserting 1000 documents. first: 2016–17 Georgia State Panthers women's basketball team and last: Jim Moodie (motorcycle racer) +[2018-02-13T00:37:26.042] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:37:26.082] [INFO] cheese - inserting 1000 documents. first: Lucas Neill and last: Zippe-type +[2018-02-13T00:37:26.129] [INFO] cheese - inserting 1000 documents. first: RS-84 and last: Пётр II Алексеевич +[2018-02-13T00:37:26.135] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:37:26.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/villabordoni.com and last: Category:Southern Ocean articles missing geocoordinate data +[2018-02-13T00:37:26.170] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:37:26.197] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:37:26.209] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2009 July 22 and last: Aleksandr Agapov +[2018-02-13T00:37:26.274] [INFO] cheese - inserting 1000 documents. first: Aphaniptera and last: Alan Mackay +[2018-02-13T00:37:26.309] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:37:26.414] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:37:26.448] [INFO] cheese - inserting 1000 documents. first: List of RAAF air marshals and last: Women of San Marino +[2018-02-13T00:37:26.556] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:37:26.607] [INFO] cheese - inserting 1000 documents. first: Noriaki Fujimoto and last: File:Rail sideline LamandaPark California.jpg +[2018-02-13T00:37:26.739] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:37:26.758] [INFO] cheese - inserting 1000 documents. first: Michelangelo Nerosi da Caravaggio and last: History of Southern Sudan +[2018-02-13T00:37:26.815] [INFO] cheese - inserting 1000 documents. first: Infantile eczema and last: Ceuta (Congress of Deputies constituency) +[2018-02-13T00:37:26.832] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:37:26.880] [INFO] cheese - inserting 1000 documents. first: Alexandr Agapov and last: File:Roseriddle.jpg +[2018-02-13T00:37:26.893] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:37:26.897] [INFO] cheese - inserting 1000 documents. first: Vistehola and last: Telangana Boggu Ghani Karimka Sangham +[2018-02-13T00:37:26.931] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:37:27.020] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T00:37:27.093] [INFO] cheese - inserting 1000 documents. first: Grizzly polar bear hybrid and last: File:Return JLU.jpg +[2018-02-13T00:37:27.102] [INFO] cheese - inserting 1000 documents. first: Women from San Marino and last: 花田十輝 +[2018-02-13T00:37:27.140] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:37:27.158] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:37:27.225] [INFO] cheese - inserting 1000 documents. first: Fred Royers and last: 2011 Chatham Cup +[2018-02-13T00:37:27.239] [INFO] cheese - inserting 1000 documents. first: Rub (food) and last: Shiraume Gakuen College +[2018-02-13T00:37:27.247] [INFO] cheese - inserting 1000 documents. first: Category:Masques and last: Sky Gardens +[2018-02-13T00:37:27.257] [INFO] cheese - inserting 1000 documents. first: Blood on the dancefloor and last: USS Petaluma (AOG-69) +[2018-02-13T00:37:27.280] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:37:27.282] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:37:27.296] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:37:27.343] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:37:27.517] [INFO] cheese - inserting 1000 documents. first: Cunetio and last: David (John) Graham +[2018-02-13T00:37:27.553] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:37:27.584] [INFO] cheese - inserting 1000 documents. first: Cutdown and last: Pascual Jordan +[2018-02-13T00:37:27.629] [INFO] cheese - inserting 1000 documents. first: Relations between South Sudan and Uganda and last: Jerome Goldstein +[2018-02-13T00:37:27.643] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:37:27.677] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:37:27.691] [INFO] cheese - inserting 1000 documents. first: Maciej Wierzbięta and last: Wikipedia:Sockpuppet investigations/OCtruth/Archive +[2018-02-13T00:37:27.692] [INFO] cheese - inserting 1000 documents. first: Katsiaryna Shkuratava and last: Falcon 9 flight 9 +[2018-02-13T00:37:27.708] [INFO] cheese - inserting 1000 documents. first: Sobralia fragrans and last: Template:Rincon class gasoline tankers +[2018-02-13T00:37:27.734] [INFO] cheese - inserting 1000 documents. first: Renaat Demoen and last: Millihenries +[2018-02-13T00:37:27.739] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:37:27.767] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:37:27.772] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:37:27.808] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:37:28.009] [INFO] cheese - inserting 1000 documents. first: Ritz Malheur and last: Countess of Suffolk +[2018-02-13T00:37:28.149] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:37:28.190] [INFO] cheese - inserting 1000 documents. first: Template:March 1944 shipwrecks and last: File:Reza Shirmarz.jpg +[2018-02-13T00:37:28.286] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:37:28.288] [INFO] cheese - inserting 1000 documents. first: Dejerine-Sottas disease and last: File:Protea Telephone Jack.jpg +[2018-02-13T00:37:28.373] [INFO] cheese - inserting 1000 documents. first: Duino Mithraeum and last: Montejo de la Sierra +[2018-02-13T00:37:28.375] [INFO] cheese - inserting 1000 documents. first: File:JPsyNeuro logo.jpg and last: Samuel Manaiakalani Kamakau +[2018-02-13T00:37:28.394] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:37:28.454] [INFO] cheese - inserting 1000 documents. first: Keith Jackson (football player) and last: Collective (Law & Order: Criminal Intent) +[2018-02-13T00:37:28.488] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:37:28.579] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:37:28.643] [INFO] cheese - inserting 1000 documents. first: Mobile lounge and last: Born Dead Icons +[2018-02-13T00:37:28.658] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:37:28.765] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T00:37:28.838] [INFO] cheese - inserting 1000 documents. first: Marja-Liisa Hämäläinen and last: Yeroukhan +[2018-02-13T00:37:28.927] [INFO] cheese - inserting 1000 documents. first: Allen, Marvin and last: Category:Members of the House of Representatives of the Philippines from Las Piñas +[2018-02-13T00:37:28.939] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:37:29.015] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:37:29.083] [INFO] cheese - inserting 1000 documents. first: Lady Jaye Breyer P-Orridge and last: Gogoiu +[2018-02-13T00:37:29.155] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:37:29.214] [INFO] cheese - inserting 1000 documents. first: Moraleja de Enmedio and last: Grand hall +[2018-02-13T00:37:29.333] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:37:29.371] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Ashtabula County, Ohio and last: Charles Sharpes +[2018-02-13T00:37:29.382] [INFO] cheese - inserting 1000 documents. first: Nature via Nurture: Genes, Experience, & What Makes Us Human and last: Tigran Mkrtchyan +[2018-02-13T00:37:29.463] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:37:29.494] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:37:29.529] [INFO] cheese - inserting 1000 documents. first: Justin Jesse Price and last: Anagarika +[2018-02-13T00:37:29.609] [INFO] cheese - inserting 1000 documents. first: Oblivion (comics) and last: Fala Chen +[2018-02-13T00:37:29.641] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T00:37:29.692] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:37:29.733] [INFO] cheese - inserting 1000 documents. first: Uniforms of the American Civil War and last: Template:Rajput Groups of India +[2018-02-13T00:37:29.745] [INFO] cheese - inserting 1000 documents. first: Ninsun and last: 2nd Byelorussian Front +[2018-02-13T00:37:29.780] [INFO] cheese - inserting 1000 documents. first: Vitilago and last: ABC Bakersfield +[2018-02-13T00:37:29.781] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:37:29.856] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T00:37:29.865] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:37:29.904] [INFO] cheese - inserting 1000 documents. first: Alive (Dami Im song) and last: File:Denver IA, October 2013.jpg +[2018-02-13T00:37:29.943] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:37:30.025] [INFO] cheese - inserting 1000 documents. first: Category:Foreign charities operating in South Africa and last: Robotic prostheis control +[2018-02-13T00:37:30.047] [INFO] cheese - inserting 1000 documents. first: Category:Organizations established in 1996 and last: Taj Anwar +[2018-02-13T00:37:30.085] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:37:30.099] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:37:30.175] [INFO] cheese - inserting 1000 documents. first: Masaki Anzu and last: Fourth Ward, Houston +[2018-02-13T00:37:30.190] [INFO] cheese - inserting 1000 documents. first: Category:Challenge de France finals and last: Wikipedia:Sockpuppet investigations/Kasab +[2018-02-13T00:37:30.221] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:37:30.235] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:37:30.281] [INFO] cheese - inserting 1000 documents. first: Donal Gleeson and last: Joseph F. Finnegan +[2018-02-13T00:37:30.326] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:37:30.507] [INFO] cheese - inserting 1000 documents. first: Satiety value and last: Mir Molk +[2018-02-13T00:37:30.533] [INFO] cheese - inserting 1000 documents. first: Fish stocking and last: Revolutionary integrationism +[2018-02-13T00:37:30.538] [INFO] cheese - inserting 1000 documents. first: File:The complete ripping yarns book cover.jpg and last: The Smallest Show on Earth +[2018-02-13T00:37:30.556] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:37:30.557] [INFO] cheese - inserting 1000 documents. first: Oskari Setänen and last: Category:Architects from Tucson, Arizona +[2018-02-13T00:37:30.592] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:37:30.639] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T00:37:30.644] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:37:30.672] [INFO] cheese - inserting 1000 documents. first: Glasflügel Kestrel 17 and last: Living former members of the Council of Ministers of the Netherlands +[2018-02-13T00:37:30.698] [INFO] cheese - inserting 1000 documents. first: Template:Seismic scales and last: Ovidio Manuel Barbosa Pequeno +[2018-02-13T00:37:30.719] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:37:30.771] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:37:30.867] [INFO] cheese - inserting 1000 documents. first: Poor Little Critter on the Road and last: Category:Burials at the Rila Monastery +[2018-02-13T00:37:30.927] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:37:30.929] [INFO] cheese - inserting 1000 documents. first: Marat-e Balkarun and last: Radio Mystery Theater +[2018-02-13T00:37:30.979] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:37:31.028] [INFO] cheese - inserting 1000 documents. first: Oleksandr Melaschenko and last: Viola x wittrockiana +[2018-02-13T00:37:31.096] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:37:31.150] [INFO] cheese - inserting 1000 documents. first: Category:Former nationalised industries of the United Kingdom and last: Ann Saunderson +[2018-02-13T00:37:31.155] [INFO] cheese - inserting 1000 documents. first: Draft:Girls for Gender Equity and last: Art Basel Hong Kong +[2018-02-13T00:37:31.210] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:37:31.227] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:37:31.271] [INFO] cheese - inserting 1000 documents. first: European Urban and Regional Planning Awards and last: 2013 Tiananmen Square attack +[2018-02-13T00:37:31.295] [INFO] cheese - inserting 1000 documents. first: Dominick Goodman and last: 1981 St.George Whisky season +[2018-02-13T00:37:31.310] [INFO] cheese - inserting 1000 documents. first: Magnitogorsk Metallurg and last: 402nd Support Brigade +[2018-02-13T00:37:31.322] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:37:31.373] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:37:31.390] [INFO] cheese - inserting 1000 documents. first: Chung Mong-koo and last: Eppa Hunton +[2018-02-13T00:37:31.418] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:37:31.493] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T00:37:31.506] [INFO] cheese - inserting 1000 documents. first: WACM and last: David ben judah messer leon +[2018-02-13T00:37:31.602] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:37:31.728] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject English Language templates and last: File:Pittsburg State Gorilla logo.svg +[2018-02-13T00:37:31.776] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:37:31.814] [INFO] cheese - inserting 1000 documents. first: Deputy Federal Commissioner of Taxation (NSW) v W R Moran Pty Ltd and last: Wikipedia:Articles for deletion/Crkd +[2018-02-13T00:37:31.897] [INFO] cheese - inserting 1000 documents. first: Thectocercus acuticaudatus and last: Valiabad, Tonekabon +[2018-02-13T00:37:31.916] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:37:31.919] [INFO] cheese - inserting 1000 documents. first: Template:User from Pakistan/doc and last: Stone Hill (disambiguation) +[2018-02-13T00:37:31.944] [INFO] cheese - inserting 1000 documents. first: David ben solomon ibn abi zimra and last: James (Jim) Scott +[2018-02-13T00:37:31.972] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:37:31.985] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:37:32.019] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:37:32.125] [INFO] cheese - inserting 1000 documents. first: Gray mistletoe and last: File:Stevie B B-Sides And Outtakes.jpg +[2018-02-13T00:37:32.181] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:37:32.256] [INFO] cheese - inserting 1000 documents. first: Dells of the wisconsin river and last: Derek van der kooy +[2018-02-13T00:37:32.281] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Lake of the Woods County, Minnesota and last: Category:1957 in English rugby league +[2018-02-13T00:37:32.297] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:37:32.304] [INFO] cheese - inserting 1000 documents. first: E. Hunton and last: Hoss Radbourn +[2018-02-13T00:37:32.345] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:37:32.403] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:37:32.494] [INFO] cheese - inserting 1000 documents. first: Murder of Lynette White and last: File:Global Tower Partners Logo.jpg +[2018-02-13T00:37:32.532] [INFO] cheese - inserting 1000 documents. first: Derelicts of dialect and last: Prudes +[2018-02-13T00:37:32.552] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:37:32.554] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:37:32.557] [INFO] cheese - inserting 1000 documents. first: Charles Stewart Wurts and last: Template:Attached KML/Cropsey Avenue +[2018-02-13T00:37:32.598] [INFO] cheese - inserting 1000 documents. first: Transformers: Classics and last: Template:Fightstatscont +[2018-02-13T00:37:32.663] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:37:32.692] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:37:32.815] [INFO] cheese - inserting 1000 documents. first: Category:1958 in English rugby league and last: Wikipedia:Articles for deletion/Tamil Panar +[2018-02-13T00:37:32.823] [INFO] cheese - inserting 1000 documents. first: Annika Odegard and last: Category:1998 in Ecuador +[2018-02-13T00:37:32.873] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:37:32.890] [INFO] cheese - inserting 1000 documents. first: Diocese of sansepolcro and last: Division of moreton +[2018-02-13T00:37:32.910] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:37:32.933] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:37:33.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anne Rogers and last: SPEAK network +[2018-02-13T00:37:33.168] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 734 and last: Liveni, Botoșani +[2018-02-13T00:37:33.179] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:37:33.184] [INFO] cheese - inserting 1000 documents. first: Division of murray and last: Driekske van bussel +[2018-02-13T00:37:33.203] [INFO] cheese - inserting 1000 documents. first: Peer to peer social networks and last: Template:WAKO Amateur Championships Template +[2018-02-13T00:37:33.219] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:37:33.222] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:37:33.263] [INFO] cheese - inserting 1000 documents. first: N Joachimson v Swiss Bank Corporation and last: EFDA (disambiguation) +[2018-02-13T00:37:33.288] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:37:33.348] [INFO] cheese - inserting 1000 documents. first: Court of Probate Act 1857 and last: SS Delargentino +[2018-02-13T00:37:33.347] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:37:33.357] [INFO] cheese - inserting 1000 documents. first: Minister of State for Overseas Development (Ireland) and last: Penny tray +[2018-02-13T00:37:33.406] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:37:33.444] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:37:33.601] [INFO] cheese - inserting 1000 documents. first: Dries van agt and last: Lacunar infarct +[2018-02-13T00:37:33.629] [INFO] cheese - inserting 1000 documents. first: William Brockenbrough (jurist) and last: Bronson Speedway +[2018-02-13T00:37:33.653] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:37:33.682] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:37:33.713] [INFO] cheese - inserting 1000 documents. first: Do Right By Me and last: 2011 Mumbai serial blasts +[2018-02-13T00:37:33.736] [INFO] cheese - inserting 1000 documents. first: Alme and last: False Dmitri II +[2018-02-13T00:37:33.756] [INFO] cheese - inserting 1000 documents. first: File:Jornheavyrockradiocd (1).jpg and last: Fireworks (Snoop Dogg song) +[2018-02-13T00:37:33.784] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:37:33.801] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:37:33.825] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:37:33.889] [INFO] cheese - inserting 1000 documents. first: WHDO-CD and last: Parrysulfan +[2018-02-13T00:37:33.923] [INFO] cheese - inserting 1000 documents. first: Lost & Found: Hip Hop Underground Soul Classics and last: Motta di Livenza +[2018-02-13T00:37:33.997] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:37:34.074] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:37:34.200] [INFO] cheese - inserting 1000 documents. first: French ship La Couronne (1749) and last: Wikipedia:Suspected sock puppets/Auntorious +[2018-02-13T00:37:34.201] [INFO] cheese - inserting 1000 documents. first: List of international cricket centuries by David Boon and last: Category:Villages in Brown County, Illinois +[2018-02-13T00:37:34.272] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:37:34.293] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:37:34.433] [INFO] cheese - inserting 1000 documents. first: Point light source and last: Alice Minnie Herts +[2018-02-13T00:37:34.440] [INFO] cheese - inserting 1000 documents. first: 1934 German football championship and last: Category:1953 in California +[2018-02-13T00:37:34.478] [INFO] cheese - inserting 1000 documents. first: Eagle butte crater and last: Economy of austria +[2018-02-13T00:37:34.501] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:37:34.507] [INFO] cheese - batch complete in: 0.234 secs +[2018-02-13T00:37:34.560] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:37:34.574] [INFO] cheese - inserting 1000 documents. first: Čečelice and last: Wikipedia:WikiProject Trains/ICC valuations/Gauley and Meadow River Railroad +[2018-02-13T00:37:34.602] [INFO] cheese - inserting 1000 documents. first: George Watson's Ladies College and last: Feldbach District +[2018-02-13T00:37:34.637] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:37:34.654] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:37:34.678] [INFO] cheese - inserting 1000 documents. first: False Dmitry III and last: El-hazard +[2018-02-13T00:37:34.709] [INFO] cheese - inserting 1000 documents. first: Deep Stambha and last: Jamie Cachia +[2018-02-13T00:37:34.741] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T00:37:34.751] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:37:34.800] [INFO] cheese - inserting 1000 documents. first: Economy of azerbaijan and last: Ritchie Gardner +[2018-02-13T00:37:34.850] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:37:34.946] [INFO] cheese - inserting 1000 documents. first: Tiyeegloow District and last: Voicemailgate +[2018-02-13T00:37:34.949] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Greeley County, Nebraska and last: Vincent Wardell +[2018-02-13T00:37:34.980] [INFO] cheese - inserting 1000 documents. first: Ein deutsches requiem and last: Electoral district of swan hill +[2018-02-13T00:37:35.004] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:37:35.005] [INFO] cheese - batch complete in: 0.155 secs +[2018-02-13T00:37:35.011] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:37:35.076] [INFO] cheese - inserting 1000 documents. first: Jupp (surname) and last: EP80579 +[2018-02-13T00:37:35.102] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Leonard23 and last: Christian Murray +[2018-02-13T00:37:35.109] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:37:35.160] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:37:35.169] [INFO] cheese - inserting 1000 documents. first: Electoral district of swan hills and last: Emperor xizong of tang +[2018-02-13T00:37:35.187] [INFO] cheese - inserting 1000 documents. first: Lidao and last: AC Sparta Prague in European football +[2018-02-13T00:37:35.197] [INFO] cheese - batch complete in: 0.191 secs +[2018-02-13T00:37:35.245] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:37:35.294] [INFO] cheese - inserting 1000 documents. first: Internet FAQ Consortium and last: ALCO Century 630 +[2018-02-13T00:37:35.298] [INFO] cheese - inserting 1000 documents. first: 2016 Philadelphia Freedoms season and last: Template:Unclear inline +[2018-02-13T00:37:35.333] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:37:35.341] [INFO] cheese - inserting 1000 documents. first: Emperor xuan of chen and last: Erlenbach bei dahn +[2018-02-13T00:37:35.347] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:37:35.357] [INFO] cheese - batch complete in: 0.16 secs +[2018-02-13T00:37:35.371] [INFO] cheese - inserting 1000 documents. first: Nora to Toki no Koubou: Kiri no Mori no Majo and last: Nayagram +[2018-02-13T00:37:35.407] [INFO] cheese - inserting 1000 documents. first: Explorer 18 and last: Ranjith Madduma Bandara +[2018-02-13T00:37:35.412] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:37:35.437] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:37:35.504] [INFO] cheese - inserting 1000 documents. first: Ma'roof and last: Budokan: The Martial Spirit +[2018-02-13T00:37:35.506] [INFO] cheese - inserting 1000 documents. first: Erlenbach bei kandel and last: Evangelical church of the deaf +[2018-02-13T00:37:35.521] [INFO] cheese - batch complete in: 0.164 secs +[2018-02-13T00:37:35.533] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:37:35.658] [INFO] cheese - inserting 1000 documents. first: Insert trailer and last: Category:Former Masonic buildings in North Carolina +[2018-02-13T00:37:35.717] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:37:35.752] [INFO] cheese - inserting 1000 documents. first: Template:Inline unclear and last: File:ElizabethUmusic.png +[2018-02-13T00:37:35.771] [INFO] cheese - inserting 1000 documents. first: Evangelical church of the dominican republic and last: Fall of the lelang and daifang +[2018-02-13T00:37:35.793] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:37:35.797] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:37:35.905] [INFO] cheese - inserting 1000 documents. first: Independence Party of New York State and last: Andrew Scott (bishop) +[2018-02-13T00:37:35.907] [INFO] cheese - inserting 1000 documents. first: 2011 irish presidential election and last: Images Of Heaven: The Best Of Peter Godwin +[2018-02-13T00:37:35.919] [INFO] cheese - inserting 1000 documents. first: Dance monkey boy and last: Odřepsy +[2018-02-13T00:37:35.946] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:37:35.955] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:37:35.983] [INFO] cheese - inserting 1000 documents. first: Template:POVsection and last: File:The Novels of Henry James.JPG +[2018-02-13T00:37:36.001] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:37:36.003] [INFO] cheese - inserting 1000 documents. first: Fall of the mutants and last: Fencer of minerva +[2018-02-13T00:37:36.029] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:37:36.086] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:37:36.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Insects/ant task force/community sandboxes/sandbox3/Formica biamoensis and last: Suerococha (Huallanca) +[2018-02-13T00:37:36.165] [INFO] cheese - inserting 1000 documents. first: Plastic (2012 film) and last: Gobi fish +[2018-02-13T00:37:36.206] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:37:36.218] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:37:36.361] [INFO] cheese - inserting 1000 documents. first: Lockheed Model 44 Excalibur and last: Elm River (Michigan) +[2018-02-13T00:37:36.377] [INFO] cheese - inserting 1000 documents. first: Events in 1427 and last: Fanny Perret (Swiss rhythmic gymnast) +[2018-02-13T00:37:36.389] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:37:36.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hate group/Ex-PremiesPart2 and last: Fort Monroe, Virginia +[2018-02-13T00:37:36.421] [INFO] cheese - inserting 1000 documents. first: 2008–09 Czech 1. Liga season and last: Wikipedia:Articles for deletion/Dominique Strauss-Kahn sexual assault case (2nd nomination) +[2018-02-13T00:37:36.423] [INFO] cheese - inserting 1000 documents. first: Fenchurch street railway station and last: Category:French film awards +[2018-02-13T00:37:36.435] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:37:36.459] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:37:36.470] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:37:36.510] [INFO] cheese - inserting 1000 documents. first: Banksia baxteri and last: Biohunter +[2018-02-13T00:37:36.514] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:37:36.581] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:37:36.588] [INFO] cheese - inserting 1000 documents. first: Dom Luís Bridge, Porto and last: Sonja Eggerickx +[2018-02-13T00:37:36.643] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:37:36.648] [INFO] cheese - inserting 1000 documents. first: Events in 574 and last: Births in 1784 +[2018-02-13T00:37:36.671] [INFO] cheese - batch complete in: 0.236 secs +[2018-02-13T00:37:36.779] [INFO] cheese - inserting 1000 documents. first: Fence River and last: Chittenden-6-2 Vermont Representative District 2002-2012 +[2018-02-13T00:37:36.815] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:37:36.841] [INFO] cheese - inserting 1000 documents. first: Jan (Persian name) and last: Úrvalsdeild 1937 +[2018-02-13T00:37:36.850] [INFO] cheese - inserting 1000 documents. first: Births in 1783 and last: Births in 963 +[2018-02-13T00:37:36.867] [INFO] cheese - batch complete in: 0.196 secs +[2018-02-13T00:37:36.893] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:37:36.950] [INFO] cheese - inserting 1000 documents. first: ILL 73 and last: Wikipedia:Reference desk/Archives/Science/2007 November 20 +[2018-02-13T00:37:37.011] [INFO] cheese - inserting 1000 documents. first: Son Montuno and last: McBryde Garden +[2018-02-13T00:37:37.016] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:37:37.059] [INFO] cheese - inserting 1000 documents. first: Gulsara Dadabayeva and last: Wikipedia:Articles for deletion/Jace Daniels +[2018-02-13T00:37:37.067] [INFO] cheese - inserting 1000 documents. first: Class 2 railroad and last: Excelsia College +[2018-02-13T00:37:37.107] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:37:37.121] [INFO] cheese - inserting 1000 documents. first: Births in 962 and last: Public Debt Management Agency (Greece) +[2018-02-13T00:37:37.139] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:37:37.175] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:37:37.187] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:37:37.275] [INFO] cheese - inserting 1000 documents. first: Počepice and last: Malaysia FAM League +[2018-02-13T00:37:37.312] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:37:37.411] [INFO] cheese - inserting 1000 documents. first: Úrvalsdeild 1938 and last: 1995-96 Czech 1.Liga season +[2018-02-13T00:37:37.412] [INFO] cheese - inserting 1000 documents. first: Spermwhale and last: Filippo strozzi the elder +[2018-02-13T00:37:37.449] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:37:37.453] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:37:37.541] [INFO] cheese - inserting 1000 documents. first: 2002 Asian Athletics Championships – Women's long jump and last: CC-141 +[2018-02-13T00:37:37.547] [INFO] cheese - inserting 1000 documents. first: Jungle geranium and last: File:Possessiing-Ruby-Lin.jpg +[2018-02-13T00:37:37.582] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:37:37.583] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:37:37.606] [INFO] cheese - inserting 1000 documents. first: Employee of the Month (disambiguation) and last: Institute of Molecular and Cell Biology +[2018-02-13T00:37:37.620] [INFO] cheese - inserting 1000 documents. first: Filippo strozzi the younger and last: Flag of the commonwealth of nations +[2018-02-13T00:37:37.636] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T00:37:37.665] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:37:37.718] [INFO] cheese - inserting 1000 documents. first: File:Paris Arc de Triomphe DSC03090.JPG and last: File:Strange production 1.gif +[2018-02-13T00:37:37.749] [INFO] cheese - inserting 1000 documents. first: Alplaus, New York and last: Obturation +[2018-02-13T00:37:37.763] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:37:37.765] [INFO] cheese - inserting 1000 documents. first: Flag of the comoros and last: Foreign aid to nepal +[2018-02-13T00:37:37.782] [INFO] cheese - batch complete in: 0.145 secs +[2018-02-13T00:37:37.805] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:37:37.848] [INFO] cheese - inserting 1000 documents. first: Missouri State Fairgrounds Speedway and last: Bud, Wisconsin +[2018-02-13T00:37:37.852] [INFO] cheese - inserting 1000 documents. first: Mark Harris (North Carolina politician) and last: Deaths in 1919 +[2018-02-13T00:37:37.894] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:37:37.908] [INFO] cheese - inserting 1000 documents. first: Foreign aid to sudan and last: Francisco de salinas +[2018-02-13T00:37:37.909] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:37:37.910] [INFO] cheese - inserting 1000 documents. first: Bridgeport-Spaulding Schools and last: Kakuyid dynasty +[2018-02-13T00:37:37.924] [INFO] cheese - batch complete in: 0.142 secs +[2018-02-13T00:37:37.959] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:37:38.019] [INFO] cheese - inserting 1000 documents. first: Portal:Sega/Did you know and last: Za našu ljubav +[2018-02-13T00:37:38.057] [INFO] cheese - inserting 1000 documents. first: Deaths in 1918 and last: Deaths in 1081 +[2018-02-13T00:37:38.069] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:37:38.074] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:37:38.077] [INFO] cheese - inserting 1000 documents. first: Francisco de san roman and last: From toshiko with love +[2018-02-13T00:37:38.097] [INFO] cheese - batch complete in: 0.172 secs +[2018-02-13T00:37:38.128] [INFO] cheese - inserting 1000 documents. first: File:Adinstruments logo.png and last: Chlaenius splendidus +[2018-02-13T00:37:38.152] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T00:37:38.231] [INFO] cheese - inserting 1000 documents. first: Deaths in 1080 and last: Deaths in 251 +[2018-02-13T00:37:38.234] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Farul Constanța and last: WRTV-DT +[2018-02-13T00:37:38.237] [INFO] cheese - inserting 1000 documents. first: From under the cork tree and last: Gardens in northern ireland +[2018-02-13T00:37:38.256] [INFO] cheese - batch complete in: 0.182 secs +[2018-02-13T00:37:38.273] [INFO] cheese - inserting 1000 documents. first: 9th/12th Royal Lancers and last: Rita Childers +[2018-02-13T00:37:38.275] [INFO] cheese - batch complete in: 0.178 secs +[2018-02-13T00:37:38.316] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:37:38.341] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:37:38.350] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout Broadway Junction and last: Template:NYCS Platform Layout IRT Broadway-Seventh Avenue Local Stations +[2018-02-13T00:37:38.391] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:37:38.493] [INFO] cheese - inserting 1000 documents. first: Chlaenius steveni and last: Allied Gold Mining PLC +[2018-02-13T00:37:38.614] [INFO] cheese - inserting 1000 documents. first: Gardens in scotland and last: Geography of saint petersburg +[2018-02-13T00:37:38.634] [INFO] cheese - inserting 1000 documents. first: File:Lind6.JPG and last: Category:Singaporean criminals +[2018-02-13T00:37:38.657] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:37:38.673] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:37:38.750] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:37:38.919] [INFO] cheese - inserting 1000 documents. first: Deaths in 250 and last: Ministry of Road Transport and Bridges +[2018-02-13T00:37:38.971] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:37:39.005] [INFO] cheese - inserting 1000 documents. first: Geography of saint pierre and miquelon and last: Get to know your rabbit +[2018-02-13T00:37:39.024] [INFO] cheese - inserting 1000 documents. first: José Cláudio Carvalho da Silva and last: L'Homme machine +[2018-02-13T00:37:39.039] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:37:39.054] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout IRT Broadway-Seventh Avenue Local Stations/previous and last: Technics and Human Development +[2018-02-13T00:37:39.103] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:37:39.106] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:37:39.161] [INFO] cheese - inserting 1000 documents. first: Commander (Magic: The Gathering) and last: Erich Rehm +[2018-02-13T00:37:39.171] [INFO] cheese - inserting 1000 documents. first: Zlotow County and last: Boothia Peninsula +[2018-02-13T00:37:39.199] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:37:39.242] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T00:37:39.339] [INFO] cheese - inserting 1000 documents. first: Marie, Countess of Ponthieu and last: List of cities in Pontevedra +[2018-02-13T00:37:39.375] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:37:39.391] [INFO] cheese - inserting 1000 documents. first: Seemann (Apocalyptica song) and last: Krėva Act +[2018-02-13T00:37:39.427] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of English football transfers 2009–10 and last: Category:Gariaband district +[2018-02-13T00:37:39.449] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:37:39.471] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:37:39.544] [INFO] cheese - inserting 1000 documents. first: Downtown Science (album) and last: Lenmichi languages +[2018-02-13T00:37:39.552] [INFO] cheese - inserting 1000 documents. first: File:Batman Forever The Arcade Game Cover.jpg and last: Electronic benefit transfer system +[2018-02-13T00:37:39.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Garland SF-01 and last: 1987-88 NCAA Division I men's ice hockey season +[2018-02-13T00:37:39.593] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:37:39.637] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:37:39.652] [INFO] cheese - inserting 1000 documents. first: List of cities in La Rioja and last: Charter Township of Berrien +[2018-02-13T00:37:39.651] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:37:39.676] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:37:39.762] [INFO] cheese - inserting 1000 documents. first: Shulamith Firestone and last: Borstal Boy +[2018-02-13T00:37:39.833] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:37:39.876] [INFO] cheese - inserting 1000 documents. first: Hochberg (Haardt) and last: Wildwood Crest Memorial School +[2018-02-13T00:37:39.952] [INFO] cheese - inserting 1000 documents. first: Category:Religious buildings completed in 1980 and last: Category:Columbia College (Missouri) +[2018-02-13T00:37:39.917] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:37:39.994] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:37:40.005] [INFO] cheese - inserting 1000 documents. first: 2013 Idol Star Athletics - Archery Championships and last: Mohammad Ilyas +[2018-02-13T00:37:40.017] [INFO] cheese - inserting 1000 documents. first: Valporaiso and last: Mobilian jargon +[2018-02-13T00:37:40.035] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:37:40.065] [INFO] cheese - inserting 1000 documents. first: Southern Methodist University Mustang Band and last: FFCCCB +[2018-02-13T00:37:40.078] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:37:40.126] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:37:40.206] [INFO] cheese - inserting 1000 documents. first: Region lock and last: APC (protein) +[2018-02-13T00:37:40.263] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:37:40.329] [INFO] cheese - inserting 1000 documents. first: File:Mallian campaign cavalry attack.svg and last: Wikipedia:Sockpuppet investigations/PHD-teacher/Archive +[2018-02-13T00:37:40.365] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:37:40.423] [INFO] cheese - inserting 1000 documents. first: File:Go-Ahead Singapore logo.png and last: Default display hardware codepage +[2018-02-13T00:37:40.424] [INFO] cheese - inserting 1000 documents. first: Performative writing and last: F8F +[2018-02-13T00:37:40.461] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:37:40.469] [INFO] cheese - inserting 1000 documents. first: Flor Procuna and last: Tree hakea +[2018-02-13T00:37:40.506] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:37:40.522] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:37:40.567] [INFO] cheese - inserting 1000 documents. first: Sween Castle and last: Category:Short stories by J. R. R. Tolkien +[2018-02-13T00:37:40.621] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:37:40.644] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Boyz 'n Motion and last: Fond du Lac Reporter +[2018-02-13T00:37:40.689] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:37:40.694] [INFO] cheese - inserting 1000 documents. first: Pomades and last: Bonheur est dans le pré, Le +[2018-02-13T00:37:40.729] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:37:40.747] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/River1range/Archive and last: Begakortes +[2018-02-13T00:37:40.798] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:37:40.880] [INFO] cheese - inserting 1000 documents. first: Default printer hardware code page and last: Flag of Kirkcudbrightshire +[2018-02-13T00:37:40.933] [INFO] cheese - inserting 1000 documents. first: Category:Unakoti district and last: Pain Zanger +[2018-02-13T00:37:40.938] [INFO] cheese - inserting 1000 documents. first: KIST Station and last: Category:People from Jönköping Municipality +[2018-02-13T00:37:40.966] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:37:40.985] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:37:40.998] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:37:41.066] [INFO] cheese - inserting 1000 documents. first: Edward Cornwallis, 5th Earl Cornwallis and last: From Little Things Big Things Grow +[2018-02-13T00:37:41.088] [INFO] cheese - inserting 1000 documents. first: Golod-Shafarevich theorem and last: Pesto rosso +[2018-02-13T00:37:41.111] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:37:41.124] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:37:41.130] [INFO] cheese - inserting 1000 documents. first: Free fatty acids and last: Mikhail Alekseev/Temp +[2018-02-13T00:37:41.142] [INFO] cheese - inserting 1000 documents. first: Begahosszupatak and last: Category:United States mayoral elections, 1959 +[2018-02-13T00:37:41.181] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:37:41.184] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:37:41.258] [INFO] cheese - inserting 1000 documents. first: Pain Zanget and last: HMS Aurora (1814) +[2018-02-13T00:37:41.276] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/andalasbhakti.com and last: File:ShesGotaWaywithWords.jpg +[2018-02-13T00:37:41.293] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T00:37:41.321] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:37:41.432] [INFO] cheese - inserting 1000 documents. first: Category:Motorcycle customization and last: Rukn al-Daula +[2018-02-13T00:37:41.511] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:37:41.665] [INFO] cheese - inserting 1000 documents. first: File:MEMap-location-of-Amity.png and last: The Hamster +[2018-02-13T00:37:41.677] [INFO] cheese - inserting 1000 documents. first: Canterbury-cathedral and last: W.T. White High School +[2018-02-13T00:37:41.713] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:37:41.716] [INFO] cheese - inserting 1000 documents. first: Icosphere and last: Like a Virgin & Other Big Hits! +[2018-02-13T00:37:41.718] [INFO] cheese - inserting 1000 documents. first: File:Positive title card.jpg and last: Brynica River +[2018-02-13T00:37:41.722] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:37:41.733] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Pécs and last: Wikipedia:WikiProject Spam/LinkReports/impresscms.org +[2018-02-13T00:37:41.759] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:37:41.779] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:37:41.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Clayton Marcuson and last: Rough and Rush +[2018-02-13T00:37:41.794] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:37:41.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ITunes Originals – Seether and last: Philip Watson +[2018-02-13T00:37:41.859] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:37:41.878] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:37:42.129] [INFO] cheese - inserting 1000 documents. first: File:COD XP 2016 logo.png and last: F-15G Strike Weasel +[2018-02-13T00:37:42.141] [INFO] cheese - inserting 1000 documents. first: Michael Preston (footballer) and last: Gulfiya Khanafeyeva +[2018-02-13T00:37:42.166] [INFO] cheese - inserting 1000 documents. first: Bram Goldsmith and last: Jonas Johansson (ice hockey) +[2018-02-13T00:37:42.167] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Ehime Prefecture and last: CONSOL Energy Mine Map Preservation Project +[2018-02-13T00:37:42.183] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:37:42.195] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T00:37:42.198] [INFO] cheese - inserting 1000 documents. first: Marine Logistics Command and last: Mohammed Ahmad Said El Edah +[2018-02-13T00:37:42.227] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:37:42.230] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:37:42.254] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:37:42.320] [INFO] cheese - inserting 1000 documents. first: Danish two-hundred-kroner bill and last: Central Chernozyom Region +[2018-02-13T00:37:42.366] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:37:42.600] [INFO] cheese - inserting 1000 documents. first: Jordan L. Mott and last: Oleg Imrekov +[2018-02-13T00:37:42.603] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Church of St Thomas More, Subang Jaya and last: William King (minister) +[2018-02-13T00:37:42.649] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:37:42.657] [INFO] cheese - inserting 1000 documents. first: Iris Xiomara Castro Sarmiento and last: Semi-combinatorial +[2018-02-13T00:37:42.658] [INFO] cheese - inserting 1000 documents. first: Celebrate Brooklyn! and last: Bertha (TV series) +[2018-02-13T00:37:42.664] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:37:42.677] [INFO] cheese - inserting 1000 documents. first: Wood glass and last: Double figure-eight bend +[2018-02-13T00:37:42.724] [INFO] cheese - inserting 1000 documents. first: Tahrim and last: Robert Friedrich Wilms +[2018-02-13T00:37:42.727] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:37:42.736] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:37:42.804] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:37:42.888] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:37:43.142] [INFO] cheese - inserting 1000 documents. first: Template:Okayama and last: Yokohama Landmark Tower +[2018-02-13T00:37:43.169] [INFO] cheese - inserting 1000 documents. first: File:Citadel public post museum.jpeg and last: MN 21 +[2018-02-13T00:37:43.186] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:37:43.204] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:37:43.247] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed computer graphics articles and last: Category:Category-Class American music articles +[2018-02-13T00:37:43.283] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:37:43.293] [INFO] cheese - inserting 1000 documents. first: File:Save Yourself.jpg and last: Vitaliy Nidbaykin +[2018-02-13T00:37:43.303] [INFO] cheese - inserting 1000 documents. first: Ele Keats and last: Photoflash bomb +[2018-02-13T00:37:43.309] [INFO] cheese - inserting 1000 documents. first: Graphics Kernel System and last: Devendranagar +[2018-02-13T00:37:43.334] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Louisiana road transport articles and last: Krzysztof Jabłoński +[2018-02-13T00:37:43.348] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:37:43.350] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:37:43.374] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:37:43.400] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:37:43.519] [INFO] cheese - inserting 1000 documents. first: Trunk Highway 22 (Minnesota) and last: Gairdner, William +[2018-02-13T00:37:43.529] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class American music articles and last: Slovenska Vas, Šentrupert +[2018-02-13T00:37:43.560] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:37:43.560] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:37:43.688] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from Glendale, California and last: Template:Talkpage of redirect/testcases +[2018-02-13T00:37:43.699] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ku-ring-gai Philharmonic Orchestra and last: File:DallascowboysRoH.jpg +[2018-02-13T00:37:43.721] [INFO] cheese - inserting 1000 documents. first: RBC Royal Bank and last: Charles Vess +[2018-02-13T00:37:43.729] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:37:43.735] [INFO] cheese - inserting 1000 documents. first: Gold backed and last: Epirranthis +[2018-02-13T00:37:43.748] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:37:43.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The All That Oath and last: Wikipedia:Articles for deletion/Homohypocrite +[2018-02-13T00:37:43.770] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:37:43.773] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:37:43.815] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:37:43.865] [INFO] cheese - inserting 1000 documents. first: Galbraith, William and last: IMA Auditorium +[2018-02-13T00:37:43.902] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:37:43.973] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Dolores County, Colorado and last: Robert Godwin (disambiguation) +[2018-02-13T00:37:44.032] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:37:44.060] [INFO] cheese - inserting 1000 documents. first: Epirrhoe and last: Wikipedia:WikiProject Spam/LinkReports/lodianmusic.com +[2018-02-13T00:37:44.086] [INFO] cheese - inserting 1000 documents. first: Martin John Ferguson and last: Volgogradskoye +[2018-02-13T00:37:44.087] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:37:44.133] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:37:44.138] [INFO] cheese - inserting 1000 documents. first: File:PomeroyJSHS01.jpeg and last: Category:Barbadian sport by year +[2018-02-13T00:37:44.156] [INFO] cheese - inserting 1000 documents. first: Salduz Kola and last: File:Gabriella Hermon.tiff +[2018-02-13T00:37:44.207] [INFO] cheese - inserting 1000 documents. first: Template:Plana Alta and last: Al Zarar +[2018-02-13T00:37:44.254] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:37:44.267] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:37:44.320] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:37:44.415] [INFO] cheese - inserting 1000 documents. first: P&W Trail and last: Emperor Decius +[2018-02-13T00:37:44.489] [INFO] cheese - inserting 1000 documents. first: Category:Nature reserves in Colorado and last: Mercsény +[2018-02-13T00:37:44.501] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:37:44.582] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:37:44.647] [INFO] cheese - inserting 1000 documents. first: The Eighth and last: Kim Sang Bum +[2018-02-13T00:37:44.696] [INFO] cheese - inserting 1000 documents. first: Lindi St. Clair and last: Wikipedia:Articles for deletion/List of places in Futurama +[2018-02-13T00:37:44.710] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:37:44.774] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:37:44.800] [INFO] cheese - inserting 1000 documents. first: DC Super Hero Girls: Hero of the Year and last: Draft:Charles Thompson (preacher) +[2018-02-13T00:37:44.814] [INFO] cheese - inserting 1000 documents. first: Rockefeller Wildlife Refuge and last: Blue Eyes (Yo Yo Honey Singh song) +[2018-02-13T00:37:44.897] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:37:44.931] [INFO] cheese - inserting 1000 documents. first: File:BiggerPieceofSky.jpg and last: Cowansville (QC) +[2018-02-13T00:37:44.937] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:37:45.003] [INFO] cheese - inserting 1000 documents. first: Mercseny and last: M.B.E +[2018-02-13T00:37:45.006] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:37:45.125] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:37:45.264] [INFO] cheese - inserting 1000 documents. first: Jeřice and last: Caledonia County Airport +[2018-02-13T00:37:45.269] [INFO] cheese - inserting 1000 documents. first: File:Natalie Imbruglia - Glorious The Singles 1997-2007.jpg and last: Alteration (album) +[2018-02-13T00:37:45.274] [INFO] cheese - inserting 1000 documents. first: Turkoman horse and last: Let It Enfold You +[2018-02-13T00:37:45.300] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:37:45.304] [INFO] cheese - inserting 1000 documents. first: Race-Vine station and last: 1954 Rutgers Queensmen football team +[2018-02-13T00:37:45.305] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:37:45.327] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:37:45.348] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:37:45.415] [INFO] cheese - inserting 1000 documents. first: Kazachye and last: Wikipedia:Possibly unfree files/2013 November 9 +[2018-02-13T00:37:45.452] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:37:45.481] [INFO] cheese - inserting 1000 documents. first: Farnham (QC) and last: HylaFAX +[2018-02-13T00:37:45.501] [INFO] cheese - inserting 1000 documents. first: Adelaide, South Australia, Australia and last: Episcopal Church of the Good Samaritan +[2018-02-13T00:37:45.527] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:37:45.549] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:37:45.618] [INFO] cheese - inserting 1000 documents. first: Lloyd Sabaudo Line and last: Parliamentary representation from buckinghamshire +[2018-02-13T00:37:45.658] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:37:45.697] [INFO] cheese - inserting 1000 documents. first: File:Rico Love TTLO.jpg and last: You're Breaking My Heart (Harry Nilsson song) +[2018-02-13T00:37:45.711] [INFO] cheese - inserting 1000 documents. first: Vladimír Jirásek and last: Ohrazenice (Semily District) +[2018-02-13T00:37:45.739] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:37:45.756] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:37:45.858] [INFO] cheese - inserting 1000 documents. first: Parliamentary representation from cambridgeshire and last: Paul de foix +[2018-02-13T00:37:45.860] [INFO] cheese - inserting 1000 documents. first: Gare de Bruxelles-Central and last: Category:Keen Records albums +[2018-02-13T00:37:45.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2013 November 9 and last: 1992 Wallabies Spring tour +[2018-02-13T00:37:45.879] [INFO] cheese - inserting 1000 documents. first: Woodbury Langdon and last: Category:Celastrales +[2018-02-13T00:37:45.881] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:37:45.895] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:37:45.936] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:37:45.944] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:37:45.996] [INFO] cheese - inserting 1000 documents. first: Al-Sharjah and last: Delta switching +[2018-02-13T00:37:46.075] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:37:46.086] [INFO] cheese - inserting 1000 documents. first: File:The Bolton School coat of arms.png and last: Indian Motorcycle Race 750 +[2018-02-13T00:37:46.099] [INFO] cheese - inserting 1000 documents. first: Nmyc and last: Harmony (module) +[2018-02-13T00:37:46.131] [INFO] cheese - batch complete in: 0.25 secs +[2018-02-13T00:37:46.162] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:37:46.269] [INFO] cheese - inserting 1000 documents. first: Monetville Public School and last: Capt. Stone House (Cincinnati, Ohio) +[2018-02-13T00:37:46.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Beynon Sports Surfaces Installations and last: Edward Francis Winslow +[2018-02-13T00:37:46.341] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:37:46.358] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:37:46.463] [INFO] cheese - inserting 1000 documents. first: Lucy Zelic and last: Ormiston Academies Trust +[2018-02-13T00:37:46.538] [INFO] cheese - inserting 1000 documents. first: FBW and last: Emperor of the Yuan Dynasty +[2018-02-13T00:37:46.564] [INFO] cheese - inserting 1000 documents. first: Noel Teasdale and last: Omni (DC Comics) +[2018-02-13T00:37:46.561] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:37:46.602] [INFO] cheese - inserting 1000 documents. first: Colin L. Raston and last: Switzerland at the 2002 Winter Paralympics +[2018-02-13T00:37:46.612] [INFO] cheese - inserting 1000 documents. first: Peoria center for the performing arts and last: Wikipedia:WikiProject Spam/LinkReports/diicc.uda.cl +[2018-02-13T00:37:46.643] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:37:46.647] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:37:46.664] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:37:46.665] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:37:46.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/foothilltransit.org and last: Antonio Delamea Mlinar +[2018-02-13T00:37:46.964] [INFO] cheese - inserting 1000 documents. first: C. H. Burroughs House (Cincinnati, Ohio) and last: Phacelophora +[2018-02-13T00:37:46.999] [INFO] cheese - inserting 1000 documents. first: Darejan Gruzinsky and last: Yur Mahalleh, Sari +[2018-02-13T00:37:47.027] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:37:47.029] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:37:47.056] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:37:47.098] [INFO] cheese - inserting 1000 documents. first: Trypanosoma brucei rhodesiense and last: Robert James Mackintosh +[2018-02-13T00:37:47.135] [INFO] cheese - inserting 1000 documents. first: 1901 Rutgers Queensmen football team and last: Category:1956 in Indian cinema +[2018-02-13T00:37:47.136] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:37:47.190] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:37:47.263] [INFO] cheese - inserting 1000 documents. first: Yellowish and last: Atilla Altikat +[2018-02-13T00:37:47.285] [INFO] cheese - inserting 1000 documents. first: Pantelej Nis and last: Uxbridge, Tasmania +[2018-02-13T00:37:47.335] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:37:47.342] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:37:47.394] [INFO] cheese - inserting 1000 documents. first: Phaeoura and last: Aleksandr Gushchin +[2018-02-13T00:37:47.412] [INFO] cheese - inserting 1000 documents. first: Kord Kheyl, Esfivard-e Shurab and last: Noel Peverill +[2018-02-13T00:37:47.438] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:37:47.465] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:37:47.491] [INFO] cheese - inserting 1000 documents. first: Phạm Cong Tac and last: Book:Protest the Hero +[2018-02-13T00:37:47.552] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:37:47.584] [INFO] cheese - inserting 1000 documents. first: Warner Bros. Games Montréal and last: Category:Uzbekistani female trampolinists +[2018-02-13T00:37:47.594] [INFO] cheese - inserting 1000 documents. first: Telegraph Hill (disambiguation) and last: Red Stripe Bowl +[2018-02-13T00:37:47.631] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:37:47.646] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:37:47.921] [INFO] cheese - inserting 1000 documents. first: USS Glasgow and last: Sir Charles Dalrymple, 1st Baronet +[2018-02-13T00:37:47.942] [INFO] cheese - inserting 1000 documents. first: Aleksandr Guschin and last: Auguste-Louis de Rossel de Cercy +[2018-02-13T00:37:47.970] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:37:47.994] [INFO] cheese - inserting 1000 documents. first: Category:Seljuq viziers and last: Matheson & Company +[2018-02-13T00:37:48.013] [INFO] cheese - inserting 1000 documents. first: National Wrestling Hall of Fame and Museum and last: Matera (province) +[2018-02-13T00:37:48.041] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:37:48.066] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:37:48.142] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2011 Pacific Games and last: Dené-Caucasian languages +[2018-02-13T00:37:48.178] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:37:48.210] [INFO] cheese - inserting 1000 documents. first: Dallas Adamson High School and last: SMDS +[2018-02-13T00:37:48.214] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:37:48.318] [INFO] cheese - inserting 1000 documents. first: Man High and last: Bristamox +[2018-02-13T00:37:48.347] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:37:48.429] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T00:37:48.632] [INFO] cheese - inserting 1000 documents. first: File:Srwoggaiden.jpg and last: Waspán +[2018-02-13T00:37:48.674] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:37:48.715] [INFO] cheese - inserting 1000 documents. first: Template:Extra chronology/sandbox and last: Royal Warwickshires +[2018-02-13T00:37:48.727] [INFO] cheese - inserting 1000 documents. first: Lucero Montemayor Gracia and last: Free, prior and informed consent +[2018-02-13T00:37:48.748] [INFO] cheese - inserting 1000 documents. first: File:WMMI 830AM logo.png and last: John Sydney Hicks +[2018-02-13T00:37:48.992] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:37:49.040] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:37:49.101] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:37:49.174] [INFO] cheese - inserting 1000 documents. first: Jean Hugo (Artist, 1894–1984) and last: Pughtown, PA +[2018-02-13T00:37:49.502] [INFO] cheese - batch complete in: 1.461 secs +[2018-02-13T00:37:49.538] [INFO] cheese - inserting 1000 documents. first: Hard drug and last: Denisdor +[2018-02-13T00:37:49.567] [INFO] cheese - inserting 1000 documents. first: Potenza Province and last: English underground +[2018-02-13T00:37:49.823] [INFO] cheese - inserting 1000 documents. first: Hayduta Buttress and last: Club Olympique de Bamako +[2018-02-13T00:37:49.837] [INFO] cheese - batch complete in: 1.408 secs +[2018-02-13T00:37:49.836] [INFO] cheese - batch complete in: 1.658 secs +[2018-02-13T00:37:49.929] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:37:49.987] [INFO] cheese - inserting 1000 documents. first: Saucy Sixth and last: Mermesd +[2018-02-13T00:37:49.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lovefilm.se and last: Hope (Björk song) +[2018-02-13T00:37:50.075] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T00:37:50.112] [INFO] cheese - inserting 1000 documents. first: Metrebus Card and last: Live from London (Justin Timberlake album) +[2018-02-13T00:37:50.211] [INFO] cheese - inserting 1000 documents. first: Eagle, PA and last: Wikipedia:WikiProject Spam/LinkReports/makingpoint.com.ve +[2018-02-13T00:37:50.212] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T00:37:50.236] [INFO] cheese - batch complete in: 1.562 secs +[2018-02-13T00:37:50.330] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:37:50.356] [INFO] cheese - inserting 1000 documents. first: Germany at the 1994 Winter Paralympics and last: Alberto Vilarino Sobrado +[2018-02-13T00:37:50.400] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:37:50.536] [INFO] cheese - inserting 1000 documents. first: So-net and last: File:Beatles oldies side1.JPG +[2018-02-13T00:37:50.616] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:37:50.725] [INFO] cheese - inserting 1000 documents. first: Gunnar Dahlen and last: Asher Book +[2018-02-13T00:37:50.727] [INFO] cheese - inserting 1000 documents. first: Alberto Vazquez Martinez and last: Architecture of Pec +[2018-02-13T00:37:50.759] [INFO] cheese - inserting 1000 documents. first: Kismaglód and last: Natoma (disambiguation) +[2018-02-13T00:37:50.763] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:37:50.792] [INFO] cheese - inserting 1000 documents. first: Catholic Charismatic Renewal and last: Wikipedia:Articles for deletion/Valyria +[2018-02-13T00:37:50.817] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:37:50.821] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:37:50.829] [INFO] cheese - inserting 1000 documents. first: El Tranquilo Formation and last: File:Kappa theta chi letters.JPG +[2018-02-13T00:37:50.909] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:37:50.930] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T00:37:50.954] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Early County, Georgia and last: Café W +[2018-02-13T00:37:51.003] [INFO] cheese - inserting 1000 documents. first: Category:Foreign charities operating in the United Kingdom and last: Biskopsgarden Church +[2018-02-13T00:37:51.061] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:37:51.070] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:37:51.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/Imacomp and last: Jaundice, neonatal +[2018-02-13T00:37:51.320] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:37:51.372] [INFO] cheese - inserting 1000 documents. first: Bistrica, Leposavic and last: Cafelandia, Sao Paulo +[2018-02-13T00:37:51.388] [INFO] cheese - inserting 1000 documents. first: Anders Behring Breivik and last: Wikipedia:WikiProject Spam/LinkReports/rhythmstrummer.com +[2018-02-13T00:37:51.394] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:37:51.451] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:37:51.466] [INFO] cheese - inserting 1000 documents. first: Kia Kolayeh and last: Category:Ambassadors of Somalia to Pakistan +[2018-02-13T00:37:51.493] [INFO] cheese - inserting 1000 documents. first: Bulleye model and last: Walt Bahr +[2018-02-13T00:37:51.570] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:37:51.572] [INFO] cheese - inserting 1000 documents. first: Cafe W and last: Yellareddi +[2018-02-13T00:37:51.608] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:37:51.680] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:37:51.699] [INFO] cheese - inserting 1000 documents. first: Caffe mocha and last: File:MrNoodle.jpg +[2018-02-13T00:37:51.726] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:37:51.859] [INFO] cheese - inserting 1000 documents. first: Ed edd n eddy and last: File:Shivers-p02.jpg +[2018-02-13T00:37:51.935] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T00:37:51.986] [INFO] cheese - inserting 1000 documents. first: City University of Seattle in Slovakia (Vysoka skola manazmentu) and last: Det ar det pojkar gor nar karleken dor +[2018-02-13T00:37:51.990] [INFO] cheese - inserting 1000 documents. first: Korshamn and last: Template:Oncology-stub +[2018-02-13T00:37:52.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rhythmstrummer.com and last: Thomas Perry (footballer) +[2018-02-13T00:37:52.026] [INFO] cheese - batch complete in: 0.3 secs +[2018-02-13T00:37:52.100] [INFO] cheese - inserting 1000 documents. first: Thubway Tham's Inthane Moment and last: File:University of Winchester Main Building.jpg +[2018-02-13T00:37:52.099] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:37:52.101] [INFO] cheese - inserting 1000 documents. first: Al Mouttahed Tripoli and last: Assault in the Ring +[2018-02-13T00:37:52.102] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/November 16, 2013 and last: Hoseynabad, Amlash +[2018-02-13T00:37:52.116] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:37:52.159] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:37:52.172] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:37:52.210] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:37:52.343] [INFO] cheese - inserting 1000 documents. first: Det ar dit vi ska and last: En busca del paraiso +[2018-02-13T00:37:52.366] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:37:52.680] [INFO] cheese - inserting 1000 documents. first: File:Toby Keith - American Ride.jpg and last: Toxotarca +[2018-02-13T00:37:52.708] [INFO] cheese - inserting 1000 documents. first: Corticobulbar tract and last: Category:Geometric group theory +[2018-02-13T00:37:52.713] [INFO] cheese - inserting 1000 documents. first: En busca del paraiso (1982 telenovela) and last: Franck Pencole +[2018-02-13T00:37:52.735] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:37:52.735] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:37:52.782] [INFO] cheese - inserting 1000 documents. first: Kharashtom and last: Category:2011 establishments in Macau +[2018-02-13T00:37:52.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/darkorbithackfree.tk and last: Sandorvolgy +[2018-02-13T00:37:52.814] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T00:37:52.857] [INFO] cheese - inserting 1000 documents. first: File:Francesca Annis as Jessica Atreides.jpg and last: C5H6N2O2 +[2018-02-13T00:37:52.865] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:37:52.889] [INFO] cheese - inserting 1000 documents. first: Muntenian and last: Sayed Ahmad Keir +[2018-02-13T00:37:52.902] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:37:52.980] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T00:37:52.995] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:37:53.037] [INFO] cheese - inserting 1000 documents. first: Franck Serusclat and last: Grajau (district of Sao Paulo) +[2018-02-13T00:37:53.068] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:37:53.357] [INFO] cheese - inserting 1000 documents. first: O Homem Que Deve Morrer and last: Helgi Bjornsson +[2018-02-13T00:37:53.391] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:37:53.392] [INFO] cheese - inserting 1000 documents. first: Felsopusztaegres and last: Severe outbreak +[2018-02-13T00:37:53.397] [INFO] cheese - inserting 1000 documents. first: Trichernis and last: Category:Songs written by Francis Rossi +[2018-02-13T00:37:53.430] [INFO] cheese - inserting 1000 documents. first: Askarabad, Gilan and last: Category:The Human League tribute albums +[2018-02-13T00:37:53.454] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:37:53.456] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:37:53.481] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:37:53.630] [INFO] cheese - inserting 1000 documents. first: Underground rivers of London and last: Category:Communes of Pyrénées-Atlantiques +[2018-02-13T00:37:53.633] [INFO] cheese - inserting 1000 documents. first: Digital pentuple and last: Wikipedia:Articles for deletion/Meaning of life +[2018-02-13T00:37:53.684] [INFO] cheese - inserting 1000 documents. first: Helgi Mar Magnusson and last: Navicula bicephaloides +[2018-02-13T00:37:53.706] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:37:53.717] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:37:53.722] [INFO] cheese - inserting 1000 documents. first: British motorways and last: Rose-fruited banksia +[2018-02-13T00:37:53.721] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:37:53.812] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T00:37:53.936] [INFO] cheese - inserting 1000 documents. first: National anthem of Cambodia and last: Temple Gurdon +[2018-02-13T00:37:53.957] [INFO] cheese - inserting 1000 documents. first: Template:WWIISovietArmouredCars and last: Pseudeminia +[2018-02-13T00:37:53.976] [INFO] cheese - inserting 1000 documents. first: Ogden Syndrome and last: Template:2014 SEC football standings +[2018-02-13T00:37:53.998] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:37:54.017] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:37:54.050] [INFO] cheese - inserting 1000 documents. first: Navicula conveyi and last: Johann Ludwig Schonleben +[2018-02-13T00:37:54.078] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:37:54.079] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:37:54.318] [INFO] cheese - inserting 1000 documents. first: Altimaenas and last: Template:Soviet Union Squad 1982 FIBA World Championship +[2018-02-13T00:37:54.349] [INFO] cheese - inserting 1000 documents. first: Johann Matthaus Meyfart and last: Roman republicanism +[2018-02-13T00:37:54.371] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:37:54.394] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:37:54.409] [INFO] cheese - inserting 1000 documents. first: File:HoyHaroldJames1916-Navy.jpg and last: Betta trifasciata +[2018-02-13T00:37:54.436] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in Egypt by century and last: Book:J. Paul Getty Trust +[2018-02-13T00:37:54.476] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:37:54.521] [INFO] cheese - inserting 1000 documents. first: Pseudoeriosema and last: File:Keibu.png +[2018-02-13T00:37:54.554] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:37:54.589] [INFO] cheese - inserting 1000 documents. first: Francisco José Nicolás González and last: Sukhtkuh +[2018-02-13T00:37:54.628] [INFO] cheese - inserting 1000 documents. first: Juan Jose Fuertes Martinez and last: Klovsteinbakken +[2018-02-13T00:37:54.637] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:37:54.658] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:37:54.664] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:37:54.665] [INFO] cheese - inserting 1000 documents. first: Nesih and last: Category:Basque people by occupation +[2018-02-13T00:37:54.817] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T00:37:55.013] [INFO] cheese - inserting 1000 documents. first: Charles Lee Salvaggio and last: Lazovici +[2018-02-13T00:37:55.045] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates with red links/120 and last: Resident Evil: Mercenaries Vs. +[2018-02-13T00:37:55.055] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:37:55.083] [INFO] cheese - inserting 1000 documents. first: Butter worm and last: Aphiq +[2018-02-13T00:37:55.084] [INFO] cheese - inserting 1000 documents. first: Panchax pictum and last: August III the Saxon +[2018-02-13T00:37:55.095] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:37:55.180] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:37:55.229] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:37:55.242] [INFO] cheese - inserting 1000 documents. first: Ali Al-Wardi and last: Metaphilosophy (journal) +[2018-02-13T00:37:55.280] [INFO] cheese - inserting 1000 documents. first: Josh Emery and last: Key blanks +[2018-02-13T00:37:55.302] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:37:55.325] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:37:55.347] [INFO] cheese - inserting 1000 documents. first: Lassnitz and last: Lumieres Award for Best Cinematography +[2018-02-13T00:37:55.381] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:37:55.476] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Magazines/Animage/2011 and last: Daughter of the Devil +[2018-02-13T00:37:55.557] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:37:55.616] [INFO] cheese - inserting 1000 documents. first: Lumieres Award for Best Director and last: Marcal Aquino +[2018-02-13T00:37:55.662] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T00:37:55.661] [INFO] cheese - inserting 1000 documents. first: Category:Basque people and last: List of parishes of Portugal: H +[2018-02-13T00:37:55.749] [INFO] cheese - inserting 1000 documents. first: List of pharmaceutical firms and last: Wikipedia:WikiProject Christianity/Anabaptist work group/Introduction +[2018-02-13T00:37:55.759] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T00:37:55.790] [INFO] cheese - inserting 1000 documents. first: File:Magik4.jpg and last: Necromancer bells +[2018-02-13T00:37:55.838] [INFO] cheese - inserting 1000 documents. first: Krajišnik and last: File:Hathitrustlogo.png +[2018-02-13T00:37:55.868] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:37:55.893] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:37:55.908] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:37:55.954] [INFO] cheese - inserting 1000 documents. first: TMNT 4 and last: Switching user names +[2018-02-13T00:37:55.957] [INFO] cheese - inserting 1000 documents. first: Maree Humaine and last: Miss Peru 1984 +[2018-02-13T00:37:55.987] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:37:56.033] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:37:56.091] [INFO] cheese - inserting 1000 documents. first: (13503) 1988 RH6 and last: Category:People educated at Bradford Girls' Grammar School +[2018-02-13T00:37:56.199] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:37:56.271] [INFO] cheese - inserting 1000 documents. first: Miss Peru 1985 and last: Nicolas Ortiz +[2018-02-13T00:37:56.310] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:37:56.475] [INFO] cheese - inserting 1000 documents. first: Darko Jevtic and last: Kari Hiran +[2018-02-13T00:37:56.564] [INFO] cheese - inserting 1000 documents. first: Hawke Sea Scout Group and last: Wikipedia:Version 1.0 Editorial Team/Utah road transport articles by quality +[2018-02-13T00:37:56.578] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:37:56.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2016 June 11 and last: Patricia Villanueva Abrajan +[2018-02-13T00:37:56.643] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:37:56.665] [INFO] cheese - inserting 1000 documents. first: Skin pens and last: Neferti +[2018-02-13T00:37:56.680] [INFO] cheese - inserting 1000 documents. first: Borneo-Philippines languages and last: Urcabustaiz +[2018-02-13T00:37:56.682] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:37:56.684] [INFO] cheese - inserting 1000 documents. first: Hersh and last: Wikipedia:Articles for deletion/Fuzzical Fighter +[2018-02-13T00:37:56.702] [INFO] cheese - inserting 1000 documents. first: Category:Grêmio Foot-Ball Porto Alegrense and last: Elops affinis +[2018-02-13T00:37:56.758] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T00:37:56.778] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:37:56.789] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T00:37:56.792] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:37:56.939] [INFO] cheese - inserting 1000 documents. first: Rhipidognathidae and last: Q'alawana +[2018-02-13T00:37:57.014] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:37:57.147] [INFO] cheese - inserting 1000 documents. first: File:George J. Zimmermann buffalo mayor 1934 1937.jpg and last: Microsoft v. Lindows +[2018-02-13T00:37:57.195] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:37:57.246] [INFO] cheese - inserting 1000 documents. first: Peter Nguyễn Văn Hùng and last: Ruth Kluger-Aliav +[2018-02-13T00:37:57.273] [INFO] cheese - inserting 1000 documents. first: DG-400 and last: Portal:Infrastructure/Selected article/21 +[2018-02-13T00:37:57.275] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:37:57.322] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:37:57.336] [INFO] cheese - inserting 1000 documents. first: Xavier University (Cagayan de Oro) and last: Sankichi Awaya +[2018-02-13T00:37:57.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Utah road transport articles by quality log and last: Christine Axsmith +[2018-02-13T00:37:57.401] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:37:57.407] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:37:57.473] [INFO] cheese - inserting 1000 documents. first: William Matteuzzi and last: Nevatim airport +[2018-02-13T00:37:57.476] [INFO] cheese - inserting 1000 documents. first: Ruth Randall Edstrom and last: Sergio Perez Visca +[2018-02-13T00:37:57.502] [INFO] cheese - inserting 1000 documents. first: Herbert Kohl (Educator) and last: USS R-16 (SS-93) +[2018-02-13T00:37:57.508] [INFO] cheese - batch complete in: 0.233 secs +[2018-02-13T00:37:57.547] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:37:57.608] [INFO] cheese - inserting 1000 documents. first: List of New wave artists and bands and last: Template:Afd see also documentation/sandbox +[2018-02-13T00:37:57.630] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T00:37:57.717] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:37:57.798] [INFO] cheese - inserting 1000 documents. first: Sergio Quiroz and last: Sunvara SK +[2018-02-13T00:37:57.800] [INFO] cheese - inserting 1000 documents. first: Princess Mariana (yacht) and last: Battle of Trent's Reach +[2018-02-13T00:37:57.818] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:37:57.865] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:37:57.976] [INFO] cheese - inserting 1000 documents. first: File:GG-Drummond.jpg and last: Love's a Prima Donna +[2018-02-13T00:37:58.054] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:37:58.074] [INFO] cheese - inserting 1000 documents. first: Live at the Isle of Fehmarn and last: Francis Edwards +[2018-02-13T00:37:58.079] [INFO] cheese - inserting 1000 documents. first: Sunatoarea River and last: Tiefing Konate +[2018-02-13T00:37:58.119] [INFO] cheese - inserting 1000 documents. first: St. Alphonsus' Church, Rectory, Convent and Halle and last: Alycia Halladay +[2018-02-13T00:37:58.145] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:37:58.185] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:37:58.196] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:37:58.202] [INFO] cheese - inserting 1000 documents. first: LLNV and last: Portal:War/Selected anniversaries/July 8 +[2018-02-13T00:37:58.278] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:37:58.448] [INFO] cheese - inserting 1000 documents. first: Tietar (river) and last: Vartioitu kyla 1944 +[2018-02-13T00:37:58.518] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:37:58.527] [INFO] cheese - inserting 1000 documents. first: USS R-17 (SS-94) and last: Stroh violin +[2018-02-13T00:37:58.543] [INFO] cheese - inserting 1000 documents. first: Wildrose Alliance Party of Alberta leadership election, 2009 and last: Chubby Chandler +[2018-02-13T00:37:58.639] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:37:58.687] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T00:37:58.715] [INFO] cheese - inserting 1000 documents. first: Chichester to Silchester Way and last: Church of Christ in China Kei Long College +[2018-02-13T00:37:58.787] [INFO] cheese - inserting 1000 documents. first: Vartiokyla dumping ground and last: You Can Dance – Po Prostu Tancz! (season 8) +[2018-02-13T00:37:58.809] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:37:58.825] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:37:58.899] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Douglas County, Wisconsin and last: Ku Weiwei +[2018-02-13T00:37:58.938] [INFO] cheese - inserting 1000 documents. first: Corporate blog and last: Switzerland, Florida +[2018-02-13T00:37:58.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Jurassic Park franchise/archive1 and last: St Mary's Church, Navan +[2018-02-13T00:37:58.971] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:37:59.036] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:37:59.059] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T00:37:59.072] [INFO] cheese - inserting 1000 documents. first: Youssouf Kone (footballer, born 1995) and last: Oscar Barros +[2018-02-13T00:37:59.086] [INFO] cheese - inserting 1000 documents. first: Contemporary Pictorial Literature and last: Pokémon: Indigo League +[2018-02-13T00:37:59.113] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:37:59.172] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:37:59.317] [INFO] cheese - inserting 1000 documents. first: Princess Maria Theresa of Löwenstein-Wertheim-Rosenberg and last: 1963–64 New Zealand rugby union tour of Britain, Ireland, France and North America +[2018-02-13T00:37:59.355] [INFO] cheese - inserting 1000 documents. first: Oscar Becerra and last: Agrupación Deportiva Ceuta F.C. +[2018-02-13T00:37:59.391] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:37:59.392] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:37:59.458] [INFO] cheese - inserting 1000 documents. first: John A. Treutlen and last: Elections in Israel +[2018-02-13T00:37:59.499] [INFO] cheese - inserting 1000 documents. first: Template:Cayley-court and last: European Winter Throwing Challenge 2004 +[2018-02-13T00:37:59.582] [INFO] cheese - inserting 1000 documents. first: Kapcypriodopsis and last: Chilean-Greek relations +[2018-02-13T00:37:59.589] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T00:37:59.605] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:37:59.657] [INFO] cheese - inserting 1000 documents. first: Chrono Cross Timeline and last: Scenopoeetes crassirostris +[2018-02-13T00:37:59.660] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:37:59.714] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:37:59.729] [INFO] cheese - inserting 1000 documents. first: The Cannibal (DeMille novel) and last: Michael Sellers (actor) +[2018-02-13T00:37:59.833] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:37:59.970] [INFO] cheese - inserting 1000 documents. first: Ravenswood Divisional Board and last: Ishmael the son of Fabus +[2018-02-13T00:37:59.986] [INFO] cheese - inserting 1000 documents. first: Danish Superliga 1992-93 and last: Adriaan Engelvaart +[2018-02-13T00:38:00.045] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:38:00.065] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:38:00.223] [INFO] cheese - inserting 1000 documents. first: European Winter Throwing Cup 2004 and last: Victor Strahm +[2018-02-13T00:38:00.238] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Sarpy County, Nebraska and last: List of diplomatic missions in Artsakh +[2018-02-13T00:38:00.307] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:38:00.323] [INFO] cheese - inserting 1000 documents. first: Upayoga and last: Alter of heaven +[2018-02-13T00:38:00.330] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:38:00.427] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:38:00.552] [INFO] cheese - inserting 1000 documents. first: Elections in Italy and last: IRI +[2018-02-13T00:38:00.568] [INFO] cheese - inserting 1000 documents. first: Sir James the Rose and last: Herrevad Abbey +[2018-02-13T00:38:00.575] [INFO] cheese - inserting 1000 documents. first: Geke Faber and last: Italian Postcards +[2018-02-13T00:38:00.659] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:38:00.701] [INFO] cheese - batch complete in: 1.111 secs +[2018-02-13T00:38:00.707] [INFO] cheese - inserting 1000 documents. first: R bodies and last: Magnus Ulleland +[2018-02-13T00:38:00.730] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T00:38:00.768] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:38:00.932] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Blaine County, Idaho and last: Wikipedia:WikiProject Video games/Collaboration of the week +[2018-02-13T00:38:01.003] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:38:01.084] [INFO] cheese - inserting 1000 documents. first: Barat Ratna and last: Yuri Stepanov +[2018-02-13T00:38:01.104] [INFO] cheese - inserting 1000 documents. first: The altar of heaven and last: Ghetto y Gastam +[2018-02-13T00:38:01.143] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:38:01.165] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:38:01.212] [INFO] cheese - inserting 1000 documents. first: Moffedille and last: Wikipedia:Articles for deletion/Oncofertility +[2018-02-13T00:38:01.230] [INFO] cheese - inserting 1000 documents. first: Template:Richmond Spiders women's basketball navbox and last: I5-6402P +[2018-02-13T00:38:01.284] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:38:01.313] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:38:01.429] [INFO] cheese - inserting 1000 documents. first: Balcarres saskatchewan and last: Panthera gombaszoegensis +[2018-02-13T00:38:01.446] [INFO] cheese - inserting 1000 documents. first: Jack in the green and last: Bankers' acceptance +[2018-02-13T00:38:01.473] [INFO] cheese - inserting 1000 documents. first: Category:2012 in Iowa and last: 2006 NASCAR Truck Series +[2018-02-13T00:38:01.484] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:38:01.494] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:38:01.511] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:38:01.554] [INFO] cheese - inserting 1000 documents. first: I5-6500TE and last: Grupa Azoty ATT Polymers GmbH +[2018-02-13T00:38:01.574] [INFO] cheese - inserting 1000 documents. first: School for Spies and last: Deivamagal +[2018-02-13T00:38:01.581] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:38:01.581] [INFO] cheese - inserting 1000 documents. first: Dyre Avenue (Bronx) and last: Qualified flying instructor +[2018-02-13T00:38:01.634] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:38:01.645] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:38:01.799] [INFO] cheese - inserting 1000 documents. first: Lung (cancer) and last: Category:Unassessed Finland Floorball task force articles +[2018-02-13T00:38:01.855] [INFO] cheese - inserting 1000 documents. first: 2007 NASCAR Truck Series and last: Aldo Maria Brachetti Peretti +[2018-02-13T00:38:01.858] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:38:01.885] [INFO] cheese - inserting 1000 documents. first: Nallampalli taluk and last: Florence Caroline Douglas Dixie +[2018-02-13T00:38:01.924] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:38:01.953] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:38:01.955] [INFO] cheese - inserting 1000 documents. first: Template:Anti-Waste League/meta/shortname and last: Alexander Bonsor +[2018-02-13T00:38:01.958] [INFO] cheese - inserting 1000 documents. first: Portal:Montana/On this day/May 18 and last: SH 160 (CO) +[2018-02-13T00:38:02.005] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:38:02.016] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:38:02.047] [INFO] cheese - inserting 1000 documents. first: Computer-aided drafting and last: Back to the Future (TV series) +[2018-02-13T00:38:02.049] [INFO] cheese - inserting 1000 documents. first: Grand Orient de Belgique and last: Coloptilia +[2018-02-13T00:38:02.099] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:38:02.125] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:38:02.258] [INFO] cheese - inserting 1000 documents. first: So You Think You Can Dance Canada (season 2) and last: Günther Merkel +[2018-02-13T00:38:02.305] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:38:02.307] [INFO] cheese - inserting 1000 documents. first: Main Building (Montgomery, West Virginia) and last: Wikipedia:Articles for deletion/Sankhya Technologies +[2018-02-13T00:38:02.348] [INFO] cheese - inserting 1000 documents. first: Battery-capacitor flash and last: Ovčáry +[2018-02-13T00:38:02.352] [INFO] cheese - inserting 1000 documents. first: Schuylkill Haven station (Reading Railroad) and last: NHAMO +[2018-02-13T00:38:02.364] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:38:02.387] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:38:02.454] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:38:02.493] [INFO] cheese - inserting 1000 documents. first: Commatica and last: Rivière-du-Loup station +[2018-02-13T00:38:02.593] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:38:02.681] [INFO] cheese - inserting 1000 documents. first: Kolaras and last: File:SDAP-plaque.jpg +[2018-02-13T00:38:02.763] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:38:02.807] [INFO] cheese - inserting 1000 documents. first: Solzhenytsin and last: Proposed top-level domains +[2018-02-13T00:38:02.819] [INFO] cheese - inserting 1000 documents. first: War of the Wabash Confederacy and last: USS N-4 (SS-56) +[2018-02-13T00:38:02.825] [INFO] cheese - inserting 1000 documents. first: Category:People from Kaag en Braassem and last: Kosztafalva +[2018-02-13T00:38:02.854] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:38:02.860] [INFO] cheese - inserting 1000 documents. first: Polepy and last: Category:Log buildings and structures in Pennsylvania +[2018-02-13T00:38:02.878] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:38:02.938] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:38:02.944] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:38:03.023] [INFO] cheese - inserting 1000 documents. first: Feminism and pornography and last: King Faisal Babes FC +[2018-02-13T00:38:03.030] [INFO] cheese - inserting 1000 documents. first: Penny universities and last: Touchscreen interface +[2018-02-13T00:38:03.092] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:38:03.120] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:38:03.254] [INFO] cheese - inserting 1000 documents. first: Kamiya Kashin and last: RFFC +[2018-02-13T00:38:03.303] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:38:03.327] [INFO] cheese - inserting 1000 documents. first: Congregation Shomrei Emunah (Borough Park) and last: Liavol Pain +[2018-02-13T00:38:03.355] [INFO] cheese - inserting 1000 documents. first: Libaton and last: Haem O +[2018-02-13T00:38:03.397] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:38:03.406] [INFO] cheese - inserting 1000 documents. first: Zvi Feldman and last: Tax preparation service +[2018-02-13T00:38:03.417] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:38:03.490] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:38:03.532] [INFO] cheese - inserting 1000 documents. first: USS N-5 (SS-57) and last: Cultural determinism +[2018-02-13T00:38:03.596] [INFO] cheese - inserting 1000 documents. first: 2001 Asia-Pacific Rally Championship and last: File:Trex250 box opened.jpg +[2018-02-13T00:38:03.603] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:38:03.610] [INFO] cheese - inserting 1000 documents. first: Elizabethtown, N.J. and last: Lichen schlerosis +[2018-02-13T00:38:03.611] [INFO] cheese - inserting 1000 documents. first: Medeama SC and last: The Worst Witch (2017 TV series) +[2018-02-13T00:38:03.642] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:38:03.697] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:38:03.703] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:38:03.756] [INFO] cheese - inserting 1000 documents. first: Liavol Pa'in and last: John Hodgkinson (actor) +[2018-02-13T00:38:03.816] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:38:03.884] [INFO] cheese - inserting 1000 documents. first: Dave Smith (darts player) and last: George Hodge (cricketer) +[2018-02-13T00:38:03.950] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:38:04.084] [INFO] cheese - inserting 1000 documents. first: Victor Erofeev and last: Moses Ximenes +[2018-02-13T00:38:04.113] [INFO] cheese - inserting 1000 documents. first: Hotdec and last: Fool on the Hill (novel) +[2018-02-13T00:38:04.166] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:38:04.260] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:38:04.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sakert.blogspot.com and last: Protein farnesyltransferase +[2018-02-13T00:38:04.340] [INFO] cheese - inserting 1000 documents. first: Hell Hound and last: Jacques Helbronner +[2018-02-13T00:38:04.373] [INFO] cheese - inserting 1000 documents. first: Two-year college and last: Category:1164 births +[2018-02-13T00:38:04.371] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:38:04.418] [INFO] cheese - inserting 1000 documents. first: Episcepsis endodasia and last: File:Arkadij Gajdar Timur i ego komanda.jpg +[2018-02-13T00:38:04.432] [INFO] cheese - inserting 1000 documents. first: Loxian Apollo and last: Thumbikins +[2018-02-13T00:38:04.435] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:38:04.485] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:38:04.484] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T00:38:04.525] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:38:04.737] [INFO] cheese - inserting 1000 documents. first: Arthur W. Bell, III and last: Broadway Calls (Album) +[2018-02-13T00:38:04.799] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:38:04.953] [INFO] cheese - inserting 1000 documents. first: (6018) 1991 PS16 and last: Category:Sint-Martens-Latem +[2018-02-13T00:38:04.955] [INFO] cheese - inserting 1000 documents. first: Cornelius Taiwo and last: Category:Opted-out of message delivery +[2018-02-13T00:38:05.003] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:38:05.036] [INFO] cheese - inserting 1000 documents. first: Legio fulminaris and last: Template:Guyana National Football League +[2018-02-13T00:38:05.041] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:38:05.081] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:38:05.091] [INFO] cheese - inserting 1000 documents. first: Hanza yellow and last: Ultimate Storm +[2018-02-13T00:38:05.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ken Hunter Football and last: L,L-diaminopimelate aminotransferase +[2018-02-13T00:38:05.144] [INFO] cheese - inserting 1000 documents. first: Keillor and last: Province of Taranto +[2018-02-13T00:38:05.166] [INFO] cheese - inserting 1000 documents. first: File:Pneumatic actuator.jpg and last: Yer demir gök bakir +[2018-02-13T00:38:05.184] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T00:38:05.188] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:38:05.203] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:38:05.233] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:38:05.379] [INFO] cheese - inserting 1000 documents. first: Wings of an Eagle and Other Great Hits and last: William Stephens (cricketer) +[2018-02-13T00:38:05.385] [INFO] cheese - inserting 1000 documents. first: J. Nutr. Biochem. and last: Category:Chips (band) songs +[2018-02-13T00:38:05.395] [INFO] cheese - inserting 1000 documents. first: Category:Osmania University and last: SV Salamander Türkheim +[2018-02-13T00:38:05.410] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:38:05.430] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:38:05.452] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:38:05.528] [INFO] cheese - inserting 1000 documents. first: Loue (Isle) and last: Psychoanalytic conceptions of language +[2018-02-13T00:38:05.560] [INFO] cheese - inserting 1000 documents. first: RB Richardson and last: Chromate passivation +[2018-02-13T00:38:05.569] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:38:05.607] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:38:05.724] [INFO] cheese - inserting 1000 documents. first: Pullambadi and last: State Street Bank & Trust +[2018-02-13T00:38:05.752] [INFO] cheese - inserting 1000 documents. first: KBMY and last: 1931 Atlantic hurricane season +[2018-02-13T00:38:05.763] [INFO] cheese - inserting 1000 documents. first: Alan Shubrook and last: Wikipedia:Articles for deletion/ETEBAC5 +[2018-02-13T00:38:05.803] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:38:05.809] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:38:05.817] [INFO] cheese - inserting 1000 documents. first: Category:Blue Coast Records artists and last: File:GGCchristy.jpg +[2018-02-13T00:38:05.827] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:38:05.876] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:38:05.905] [INFO] cheese - inserting 1000 documents. first: Syro Malabar Church and last: Joint Electronic Device Engineering Council +[2018-02-13T00:38:05.912] [INFO] cheese - inserting 1000 documents. first: Category:Articles sourced only by IMDb from August 2011 and last: Template:Yoko Ono Singles +[2018-02-13T00:38:05.940] [INFO] cheese - inserting 1000 documents. first: William Digby (disambiguation) and last: Agadir-Ida Ou Tanane Prefecture +[2018-02-13T00:38:05.958] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:38:05.979] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:38:05.981] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:38:06.325] [INFO] cheese - inserting 1000 documents. first: Mil horas and last: Category:Pamunkey +[2018-02-13T00:38:06.375] [INFO] cheese - inserting 1000 documents. first: Nanhai County and last: Livin' for the Weekend: Anthology +[2018-02-13T00:38:06.385] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:38:06.455] [INFO] cheese - inserting 1000 documents. first: Shekhpura and last: ANPA +[2018-02-13T00:38:06.463] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:38:06.500] [INFO] cheese - inserting 1000 documents. first: British Cybernetics Society and last: Category:Low-importance Secret Societies articles +[2018-02-13T00:38:06.509] [INFO] cheese - inserting 1000 documents. first: File:PFI HealthStrength.jpg and last: The Mokena Messenger +[2018-02-13T00:38:06.517] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:38:06.531] [INFO] cheese - inserting 1000 documents. first: Madukkur block and last: Kazerne Dossin Memorial +[2018-02-13T00:38:06.551] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:38:06.556] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:38:06.586] [INFO] cheese - inserting 1000 documents. first: Objectify and last: Tennessee Centennial and International Exposition (1897) +[2018-02-13T00:38:06.603] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:38:06.669] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T00:38:06.796] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julie Hamill and last: Prem Mayee +[2018-02-13T00:38:06.829] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:38:06.871] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Sowme'eh Sara County and last: Wikipedia:Requests for comment/Dsimic +[2018-02-13T00:38:06.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Nakesha7c and last: Eigel +[2018-02-13T00:38:06.912] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:38:06.937] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:38:06.950] [INFO] cheese - inserting 1000 documents. first: Meroitic script and last: Category:1880 in Illinois +[2018-02-13T00:38:06.962] [INFO] cheese - inserting 1000 documents. first: File:Parallax View movie poster.jpg and last: Nicholas Teo +[2018-02-13T00:38:07.006] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:38:07.023] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:38:07.061] [INFO] cheese - inserting 1000 documents. first: NY-21 and last: Bo Pellnas +[2018-02-13T00:38:07.111] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:38:07.144] [INFO] cheese - inserting 1000 documents. first: Bantoid–Cross languages and last: New Synagogue, Berlin +[2018-02-13T00:38:07.175] [INFO] cheese - inserting 1000 documents. first: 38 Revenue Collection Unit and last: University of Creative Technology Chittagong +[2018-02-13T00:38:07.202] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:38:07.215] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:38:07.289] [INFO] cheese - inserting 1000 documents. first: File:The Play last lateral 1 of 2.png and last: File:EMAP Company Logo.jpg +[2018-02-13T00:38:07.339] [INFO] cheese - inserting 1000 documents. first: Anthony Suarez and last: Mediouna Airfield +[2018-02-13T00:38:07.340] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:38:07.399] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:38:07.421] [INFO] cheese - inserting 1000 documents. first: Cnemidopteris and last: Grzegorz Skwierczyński +[2018-02-13T00:38:07.509] [INFO] cheese - inserting 1000 documents. first: V-2 diesel engine and last: File:Generalweclutterbuck.jpg +[2018-02-13T00:38:07.512] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:38:07.584] [INFO] cheese - inserting 1000 documents. first: Guantanamo captive 151 and last: Antonius Mor +[2018-02-13T00:38:07.641] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:38:07.699] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:38:07.801] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rajesh Aggarwal and last: Request for Qualifications +[2018-02-13T00:38:07.835] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:38:07.943] [INFO] cheese - inserting 1000 documents. first: Category:2014 in Singaporean sport and last: Sust, Iran +[2018-02-13T00:38:07.967] [INFO] cheese - inserting 1000 documents. first: FIVB World Rankings and last: Island Falls +[2018-02-13T00:38:07.980] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:38:08.025] [INFO] cheese - inserting 1000 documents. first: Faizullah Khujayev and last: Valentina Giovagnini +[2018-02-13T00:38:08.035] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T00:38:08.086] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:38:08.153] [INFO] cheese - inserting 1000 documents. first: Norwegian Academy Prize in memory of Thorleif Dahl and last: Haw flake +[2018-02-13T00:38:08.179] [INFO] cheese - inserting 1000 documents. first: Monster Mash (Misfits) and last: Seleucus Nikator +[2018-02-13T00:38:08.208] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:38:08.237] [INFO] cheese - inserting 1000 documents. first: Category:Neuroscience organizations and last: Category:Buildings and structures in Jackson County, South Dakota +[2018-02-13T00:38:08.268] [INFO] cheese - inserting 1000 documents. first: Anglican diocese of Freetown and last: Category:Insects of Belize +[2018-02-13T00:38:08.274] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:38:08.335] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:38:08.353] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:38:08.419] [INFO] cheese - inserting 1000 documents. first: Central Bureau of Statistics (Nepal) and last: Nalband, Gilan +[2018-02-13T00:38:08.461] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:38:08.511] [INFO] cheese - inserting 1000 documents. first: Hing Wah Estate and last: Category:Rugby union in South America +[2018-02-13T00:38:08.561] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:38:08.696] [INFO] cheese - inserting 1000 documents. first: Shephard group and last: File:Ethan Hardy.jpg +[2018-02-13T00:38:08.696] [INFO] cheese - inserting 1000 documents. first: Waller T. Patton and last: Pedro Luis Díaz Lanz +[2018-02-13T00:38:08.709] [INFO] cheese - inserting 1000 documents. first: Continuous transmission mode and last: Charles McGee (painter) +[2018-02-13T00:38:08.732] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:38:08.739] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:38:08.770] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:38:08.791] [INFO] cheese - inserting 1000 documents. first: Aca Lukas and last: Great Lakes storm of 1913 +[2018-02-13T00:38:08.847] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:38:08.879] [INFO] cheese - inserting 1000 documents. first: Mooring mast and last: Wikipedia:WikiProject University of Florida/to do +[2018-02-13T00:38:08.929] [INFO] cheese - inserting 1000 documents. first: Abortion-rights movement and last: College of Osteopathic Medicine of the Pacific, Northwest +[2018-02-13T00:38:08.932] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:38:09.004] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:38:09.067] [INFO] cheese - inserting 1000 documents. first: Category:1970s poems and last: Belleplaine +[2018-02-13T00:38:09.123] [INFO] cheese - inserting 1000 documents. first: File:Caleb Knight.jpg and last: Anne-Marie Sicotte +[2018-02-13T00:38:09.149] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:38:09.170] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:38:09.212] [INFO] cheese - inserting 1000 documents. first: Titan Jail and last: TOSCA +[2018-02-13T00:38:09.276] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:38:09.479] [INFO] cheese - inserting 1000 documents. first: Havens Head Retail Park and last: Cruisin' Down the Highway +[2018-02-13T00:38:09.504] [INFO] cheese - inserting 1000 documents. first: Nasur Mahalleh and last: Module:Message box/configuration/doc +[2018-02-13T00:38:09.529] [INFO] cheese - inserting 1000 documents. first: College of Osteopathic Medicine of the Pacific Northwest and last: Peatbog Records +[2018-02-13T00:38:09.537] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:38:09.565] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T00:38:09.569] [INFO] cheese - inserting 1000 documents. first: Jiyus and last: Baseball at the 1955 Pan American Games +[2018-02-13T00:38:09.582] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:38:09.626] [INFO] cheese - inserting 1000 documents. first: Kabigon and last: Category:Privateers +[2018-02-13T00:38:09.635] [INFO] cheese - inserting 1000 documents. first: Sokol Saratov and last: Auraya of the White +[2018-02-13T00:38:09.639] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:38:09.673] [INFO] cheese - inserting 1000 documents. first: Turn The Page (Metallica song) and last: Jig maker +[2018-02-13T00:38:09.674] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:38:09.686] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T00:38:09.734] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:38:09.934] [INFO] cheese - inserting 1000 documents. first: Trigg County Public Schools and last: Category:Medieval Jewish physicians of Italy +[2018-02-13T00:38:09.948] [INFO] cheese - inserting 1000 documents. first: Chris Turner (politician) and last: Category:Census-designated places in Webster County, Iowa +[2018-02-13T00:38:09.957] [INFO] cheese - inserting 1000 documents. first: Goddess Ceres and last: Nicholas Chiorazzi +[2018-02-13T00:38:09.981] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:38:09.997] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:38:10.003] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:38:10.043] [INFO] cheese - inserting 1000 documents. first: Marjorie Mensah and last: 1982–83 Duleep Trophy +[2018-02-13T00:38:10.088] [INFO] cheese - inserting 1000 documents. first: Kota Ngah Ibrahim and last: Erky Perky +[2018-02-13T00:38:10.105] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:38:10.127] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:38:10.134] [INFO] cheese - inserting 1000 documents. first: Ookami to Koushinryo and last: Tanja Ribic +[2018-02-13T00:38:10.177] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:38:10.235] [INFO] cheese - inserting 1000 documents. first: Konjaku Monogatari and last: Chyhyryn +[2018-02-13T00:38:10.286] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:38:10.303] [INFO] cheese - inserting 1000 documents. first: William Hammond (cricketer) and last: William J. Howell +[2018-02-13T00:38:10.304] [INFO] cheese - inserting 1000 documents. first: Oriental Missionary Society and last: Category:Tourist attractions in Seward County, Nebraska +[2018-02-13T00:38:10.347] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:38:10.358] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:38:10.380] [INFO] cheese - inserting 1000 documents. first: The Robinson Family and last: Category:Los Super Reyes songs +[2018-02-13T00:38:10.418] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:38:10.504] [INFO] cheese - inserting 1000 documents. first: 1983–84 Duleep Trophy and last: File:Game-of-Thrones-S06-E10-The-Winds-of-Winter.jpg +[2018-02-13T00:38:10.540] [INFO] cheese - inserting 1000 documents. first: Vinnius and last: EX-Z57 +[2018-02-13T00:38:10.583] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:38:10.604] [INFO] cheese - inserting 1000 documents. first: Eagle Township, Black Hawk County, Iowa and last: 9 mm Para +[2018-02-13T00:38:10.611] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:38:10.713] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:38:10.868] [INFO] cheese - inserting 1000 documents. first: HMS Merope (1808) and last: Sandy rosenthal +[2018-02-13T00:38:10.928] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Phelps County, Nebraska and last: United Nations Security Council Resolution 2001 +[2018-02-13T00:38:10.933] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:38:11.001] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:38:11.069] [INFO] cheese - inserting 1000 documents. first: BEL and last: Ozalid (trade mark) +[2018-02-13T00:38:11.107] [INFO] cheese - inserting 1000 documents. first: Category:Vitosha and last: Wikipedia:Copyright problems/2007 December 7/Articles +[2018-02-13T00:38:11.127] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T00:38:11.135] [INFO] cheese - inserting 1000 documents. first: W219AU and last: Fatima (d. 1246) +[2018-02-13T00:38:11.139] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:38:11.155] [INFO] cheese - inserting 1000 documents. first: Cheetah Danio and last: Template:Unsignedip +[2018-02-13T00:38:11.207] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:38:11.214] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:38:11.327] [INFO] cheese - inserting 1000 documents. first: Template:ВТ-ЭСБЕ and last: Quicksilver Lightning +[2018-02-13T00:38:11.331] [INFO] cheese - inserting 1000 documents. first: Wojciech Gawroński and last: Wikipedia:WikiProject Trains/ICC valuations/Nez Perce and Idaho Railroad +[2018-02-13T00:38:11.352] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fsologub.ru and last: Template:Editnotices/Page/List of people from Newfoundland and Labrador +[2018-02-13T00:38:11.361] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:38:11.382] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T00:38:11.403] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:38:11.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 December 7 and last: Myosin light chain phosphatase +[2018-02-13T00:38:11.596] [INFO] cheese - inserting 1000 documents. first: 2016–17 Women's EHF Champions League group stage and last: Portal:Business and economics/Selected quote/106 +[2018-02-13T00:38:11.598] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:38:11.631] [INFO] cheese - inserting 1000 documents. first: Nathaniel Claiborne and last: Treaty of Saint-Clair-sur-Epte +[2018-02-13T00:38:11.630] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:38:11.647] [INFO] cheese - inserting 1000 documents. first: Veniamin Fleishman and last: US-412 +[2018-02-13T00:38:11.704] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:38:11.716] [INFO] cheese - inserting 1000 documents. first: Category:Permanent Representatives of Sudan to the United Nations and last: Wikipedia:Articles for deletion/Christian Robert-Godfrey +[2018-02-13T00:38:11.727] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:38:11.729] [INFO] cheese - inserting 1000 documents. first: File:Kings and Queens music video.jpg and last: Masider +[2018-02-13T00:38:11.766] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Anthony Winward and last: Wikipedia:WikiProject Spam/Local/dictionaryofsydney.org +[2018-02-13T00:38:11.780] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:38:11.782] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:38:11.844] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:38:11.980] [INFO] cheese - inserting 1000 documents. first: Chocolate Inspector and last: Wikipedia:Articles for deletion/Kinetic degradation fluxion media (2nd nomination) +[2018-02-13T00:38:12.010] [INFO] cheese - inserting 1000 documents. first: Abdulrazak Gurnah and last: Wikipedia:WikiProject Spam/LinkReports/fripro.com +[2018-02-13T00:38:12.020] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:38:12.074] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:38:12.229] [INFO] cheese - inserting 1000 documents. first: Category:Thai comedians and last: Tomb of National Heroes, Belgrade +[2018-02-13T00:38:12.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/April 6, 2007 and last: Lake Waswanipi +[2018-02-13T00:38:12.265] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:38:12.269] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 July 31 and last: Socialist Youth (Croatia) +[2018-02-13T00:38:12.336] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:38:12.356] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:38:12.462] [INFO] cheese - inserting 1000 documents. first: Song Yun Ah and last: USS S-37 +[2018-02-13T00:38:12.550] [INFO] cheese - inserting 1000 documents. first: Drugi način and last: David Lewis MacPherson +[2018-02-13T00:38:12.597] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T00:38:12.654] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T00:38:12.715] [INFO] cheese - inserting 1000 documents. first: File:Danger by Katie Underwood.jpg and last: Wikipedia:Articles for deletion/Birthright (A-Ha song) +[2018-02-13T00:38:12.765] [INFO] cheese - inserting 1000 documents. first: Uilliam ÓDuinnín and last: Template:Perarasu +[2018-02-13T00:38:12.806] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:38:12.826] [INFO] cheese - inserting 1000 documents. first: Tyesha Mattis and last: Shargeh, Baneh +[2018-02-13T00:38:12.864] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:38:12.871] [INFO] cheese - inserting 1000 documents. first: Red Falcons and last: Wikipedia:Tip of the day/November 17, 2007 +[2018-02-13T00:38:12.903] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:38:12.950] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:38:12.963] [INFO] cheese - inserting 1000 documents. first: Dusan Nulícek and last: Simon Geschke +[2018-02-13T00:38:13.089] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:38:13.113] [INFO] cheese - inserting 1000 documents. first: Toktayym Umotalieva and last: Template:PDB Gallery/538 +[2018-02-13T00:38:13.199] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:38:13.293] [INFO] cheese - inserting 1000 documents. first: Lesbian Health Initiative of Houston and last: Tennessee State Route 30 +[2018-02-13T00:38:13.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:POTD/February 9, 2005 and last: Charles A. Lockwood +[2018-02-13T00:38:13.337] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:38:13.342] [INFO] cheese - inserting 1000 documents. first: Sarqul and last: NPC Japan +[2018-02-13T00:38:13.369] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:38:13.395] [INFO] cheese - inserting 1000 documents. first: 2007 Regions Morgan Keegan Championships and the Cellular South Cup and last: Ohangla dance +[2018-02-13T00:38:13.409] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:38:13.447] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:38:13.481] [INFO] cheese - inserting 1000 documents. first: 2005–06 Scottish Premier League and last: Love Is War +[2018-02-13T00:38:13.492] [INFO] cheese - inserting 1000 documents. first: Chapman Intermediate School and last: Wikipedia:Articles for deletion/Game Boy games in the Castlevania series +[2018-02-13T00:38:13.531] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:38:13.533] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:38:13.590] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Manchester Ship Canal/archive1 and last: Category:Novels set in Northern Territory (Australia) +[2018-02-13T00:38:13.644] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:38:13.755] [INFO] cheese - inserting 1000 documents. first: Category:Lists of actors by American television series and last: Taichung Municipality +[2018-02-13T00:38:13.789] [INFO] cheese - inserting 1000 documents. first: List of diplomats of the United Kingdom to the Hanseatic League and last: Category:Roads in Vijayawada +[2018-02-13T00:38:13.810] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:38:13.827] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:38:13.887] [INFO] cheese - inserting 1000 documents. first: 3225 Hoag and last: Wikipedia:WikiProject Spam/LinkReports/alfiemartin.com +[2018-02-13T00:38:13.906] [INFO] cheese - inserting 1000 documents. first: Template:Superimpose2 and last: Cuiluan District +[2018-02-13T00:38:13.914] [INFO] cheese - inserting 1000 documents. first: My Dinner With Andre and last: Dale Peck +[2018-02-13T00:38:13.945] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:38:13.965] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:38:13.973] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:38:14.011] [INFO] cheese - inserting 1000 documents. first: Breath of life and last: Team Melli +[2018-02-13T00:38:14.056] [INFO] cheese - inserting 1000 documents. first: Category:Football venues in São Paulo (state) and last: File:Hammerfight video game screenshot.png +[2018-02-13T00:38:14.078] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:38:14.105] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:38:14.266] [INFO] cheese - inserting 1000 documents. first: Sike Station and last: Category:Dark Angel (band) members +[2018-02-13T00:38:14.271] [INFO] cheese - inserting 1000 documents. first: 2017 FIVB Volleyball Girls' U18 World Championship and last: Tweedmouth rangers fc +[2018-02-13T00:38:14.314] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:38:14.326] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:38:14.355] [INFO] cheese - inserting 1000 documents. first: Серге́й Серге́евич Бодро́в and last: Renee Taylor +[2018-02-13T00:38:14.459] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:38:14.550] [INFO] cheese - inserting 1000 documents. first: Sir David Stuart Beattie and last: B E Sutton +[2018-02-13T00:38:14.591] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:38:14.690] [INFO] cheese - inserting 1000 documents. first: Noncentral beta distribution and last: St. Augustine Foot Soldiers Monument +[2018-02-13T00:38:14.729] [INFO] cheese - inserting 1000 documents. first: What Now My Love (1966 song) and last: Wikipedia:Articles for deletion/The essentials +[2018-02-13T00:38:14.734] [INFO] cheese - inserting 1000 documents. first: William Janklow and last: Galactic Basic +[2018-02-13T00:38:14.755] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:38:14.785] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:38:14.795] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:38:14.874] [INFO] cheese - inserting 1000 documents. first: Category:Daphne and Celeste songs and last: Wikipedia:Articles for deletion/Rolf Dinsdale +[2018-02-13T00:38:14.892] [INFO] cheese - inserting 1000 documents. first: File:Bishop Edward Bass.jpg and last: 2016-17 UMass Minutemen basketball team +[2018-02-13T00:38:14.922] [INFO] cheese - inserting 1000 documents. first: The Grio and last: Category:Steamships of Finland +[2018-02-13T00:38:14.938] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:38:14.941] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:38:15.008] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:38:15.018] [INFO] cheese - inserting 1000 documents. first: Marvin P. Iannone and last: USS LST-956 +[2018-02-13T00:38:15.068] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:38:15.135] [INFO] cheese - inserting 1000 documents. first: Labyrinth 2 HD and last: Category:1865 in the Confederate States of America +[2018-02-13T00:38:15.170] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:38:15.224] [INFO] cheese - inserting 1000 documents. first: Danzig 6 and last: Template:Infobox NCAA team season/teamsandbox +[2018-02-13T00:38:15.234] [INFO] cheese - inserting 1000 documents. first: Category:Companies by city and last: Chris Bliss +[2018-02-13T00:38:15.259] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:38:15.290] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:38:15.292] [INFO] cheese - inserting 1000 documents. first: Saudi-Iraq border and last: Mountain coyote mint +[2018-02-13T00:38:15.348] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:38:15.377] [INFO] cheese - inserting 1000 documents. first: Evelyn Beatrice Longman Batchelder and last: Peter Paul Busuttil +[2018-02-13T00:38:15.423] [INFO] cheese - inserting 1000 documents. first: Pine Stump Junction and last: Cambodian Army +[2018-02-13T00:38:15.435] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:38:15.449] [INFO] cheese - inserting 1000 documents. first: Template:CECAFA Cup and last: Jared Lane +[2018-02-13T00:38:15.456] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Douglas County, Kansas and last: Alaska Native languages +[2018-02-13T00:38:15.483] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:38:15.499] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:38:15.502] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:38:15.644] [INFO] cheese - inserting 1000 documents. first: Pronoun dropping language and last: Conde de Casal (Madrid Metro) +[2018-02-13T00:38:15.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/myhotelsibiza.com and last: Portal:Anime and Manga/Anniversaries/July/July 6 +[2018-02-13T00:38:15.665] [INFO] cheese - inserting 1000 documents. first: Munemitsu Mutsu and last: Plateresque Style +[2018-02-13T00:38:15.689] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:38:15.686] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:38:15.734] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:38:15.774] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/51207 and last: File:Trash We'd Love.jpg +[2018-02-13T00:38:15.800] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:38:15.883] [INFO] cheese - inserting 1000 documents. first: Indigenous languages of Alaska and last: King Abel of Denmark +[2018-02-13T00:38:15.889] [INFO] cheese - inserting 1000 documents. first: Indianwood Golf & Country Club and last: Iratsume +[2018-02-13T00:38:15.915] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:38:15.943] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and Manga/Anniversaries/July/July 7 and last: Eileen McSaveney +[2018-02-13T00:38:15.959] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:38:16.094] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:38:16.178] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/9955 and last: Template:Ledbury and Gloucester Railway +[2018-02-13T00:38:16.194] [INFO] cheese - inserting 1000 documents. first: Dreamgirl: my life as a supreme and last: IFPB +[2018-02-13T00:38:16.262] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:38:16.309] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T00:38:16.493] [INFO] cheese - inserting 1000 documents. first: The eurasia center and last: Mouth of tyne festival +[2018-02-13T00:38:16.588] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T00:38:16.657] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/5830 and last: Category:Trot groups +[2018-02-13T00:38:16.680] [INFO] cheese - inserting 1000 documents. first: Maplestory Adventures and last: Category:Suspected Wikipedia sockpuppets of Mr.sir named sir +[2018-02-13T00:38:16.682] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:38:16.709] [INFO] cheese - inserting 1000 documents. first: Template:Regent College and last: File:University of Chicago Basketball Team, Intercollegiate Champions, 1909-10.jpg +[2018-02-13T00:38:16.718] [INFO] cheese - inserting 1000 documents. first: Peter J. Hammond (economist) and last: Raheel Sharif +[2018-02-13T00:38:16.734] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:38:16.744] [INFO] cheese - inserting 1000 documents. first: Iridana and last: List of Italian films of 1984 +[2018-02-13T00:38:16.757] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:38:16.779] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T00:38:16.833] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T00:38:16.946] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/11005 and last: Template:United States Air Force squadron types +[2018-02-13T00:38:16.972] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:38:17.038] [INFO] cheese - inserting 1000 documents. first: Ramzi Abed and last: Royal Irish Rangers (23rd (Inniskilling), 83rd and 87th) +[2018-02-13T00:38:17.100] [INFO] cheese - inserting 1000 documents. first: Jonas Carpignano and last: File:XHSDM LaVozDelaselva95.7 logo.png +[2018-02-13T00:38:17.103] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:38:17.106] [INFO] cheese - inserting 1000 documents. first: Woodstock High School (Georgia) and last: Wasserfall missile +[2018-02-13T00:38:17.115] [INFO] cheese - inserting 1000 documents. first: O‘zbekiston Respublikasi and last: Bomba, Belize +[2018-02-13T00:38:17.136] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:38:17.159] [INFO] cheese - inserting 1000 documents. first: Portal:Novels/Did you know/4 and last: Seth Helgeson +[2018-02-13T00:38:17.173] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:38:17.173] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:38:17.214] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:38:17.311] [INFO] cheese - inserting 1000 documents. first: Oncologic Surgery and last: Eddie Doyle (hurler) +[2018-02-13T00:38:17.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RR & CO. and last: Template:Infected Mushroom +[2018-02-13T00:38:17.365] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:38:17.379] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:38:17.531] [INFO] cheese - inserting 1000 documents. first: SOCATA TB-9 Tampico and last: George Panthanmackel +[2018-02-13T00:38:17.537] [INFO] cheese - inserting 1000 documents. first: Amber Darter and last: Cámara de Diputados +[2018-02-13T00:38:17.554] [INFO] cheese - inserting 1000 documents. first: Naruto Shippuden: Ultimate Ninja Storm Revolution and last: Brisbane Quarter +[2018-02-13T00:38:17.577] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:38:17.604] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:38:17.613] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:38:17.627] [INFO] cheese - inserting 1000 documents. first: Pan, amor y Andalucía and last: Template:2016-17 MAAC women's basketball standings +[2018-02-13T00:38:17.697] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:38:17.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Irish wikipedians' notice board/to do and last: Robert Arbuthnot, 3rd Viscount of Arbuthnott +[2018-02-13T00:38:17.784] [INFO] cheese - inserting 1000 documents. first: Accounting (UIL) and last: Category:Unknown-importance Florida road transport articles +[2018-02-13T00:38:17.825] [INFO] cheese - inserting 1000 documents. first: GSC 02757-01152 and last: Turvo River (Minas Gerais) +[2018-02-13T00:38:17.834] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:38:17.865] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:38:17.945] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:38:18.082] [INFO] cheese - inserting 1000 documents. first: Pacahuara and last: Dennis Horner (rugby league) +[2018-02-13T00:38:18.179] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:38:18.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/bio27.com and last: Kingiseppsky District +[2018-02-13T00:38:18.194] [INFO] cheese - inserting 1000 documents. first: Farside City and last: C2H2F4 +[2018-02-13T00:38:18.242] [INFO] cheese - inserting 1000 documents. first: 1969–70 Kentucky Colonels season and last: Antimary State Forest +[2018-02-13T00:38:18.250] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:38:18.255] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:38:18.272] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Florida road transport articles and last: Distinguished Civilian Service Award +[2018-02-13T00:38:18.326] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:38:18.348] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:38:18.432] [INFO] cheese - inserting 1000 documents. first: Uberaba River (Minas Gerais) and last: Characters of Tenchu +[2018-02-13T00:38:18.512] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:38:18.688] [INFO] cheese - inserting 1000 documents. first: 2002-2003 United States network television schedule and last: Wikipedia:Articles for deletion/YangWei +[2018-02-13T00:38:18.748] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T00:38:18.779] [INFO] cheese - inserting 1000 documents. first: Kayne Turner and last: File:SAstate2013.gif +[2018-02-13T00:38:18.786] [INFO] cheese - inserting 1000 documents. first: Template:WaterPoloAt2012SummerOlympics and last: The Songbook - Australian Chart Hits +[2018-02-13T00:38:18.805] [INFO] cheese - inserting 1000 documents. first: U.S.N.S. Watertown (T-AGM 6) and last: William Emanuel Huddleston +[2018-02-13T00:38:18.819] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:38:18.830] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:38:18.854] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:38:18.865] [INFO] cheese - inserting 1000 documents. first: 42nd Street - Times Square and last: Yevgeniy Shelyutov +[2018-02-13T00:38:18.911] [INFO] cheese - inserting 1000 documents. first: The Women's Peace Crusade and last: Smith-Martin/Apache Blvd (VMR station) +[2018-02-13T00:38:18.920] [INFO] cheese - inserting 1000 documents. first: GAR Hall and last: Thailand Bible Society +[2018-02-13T00:38:18.925] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:38:18.962] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:38:18.968] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:38:19.140] [INFO] cheese - inserting 1000 documents. first: Shang of Han and last: Hanang +[2018-02-13T00:38:19.176] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:38:19.245] [INFO] cheese - inserting 1000 documents. first: Black Buck Antelope and last: 138th Street (New York City Subway) +[2018-02-13T00:38:19.245] [INFO] cheese - inserting 1000 documents. first: Yevgeny Shelyutov and last: Category:Bear Mountain State Park +[2018-02-13T00:38:19.299] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:38:19.308] [INFO] cheese - inserting 1000 documents. first: The Watsons Go to Birmingham - 1963 and last: Rossoshansky District +[2018-02-13T00:38:19.313] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:38:19.320] [INFO] cheese - inserting 1000 documents. first: Price-101 Freeway/Apache Blvd (VMR station) and last: Roxee Barcelo +[2018-02-13T00:38:19.383] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:38:19.385] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:38:19.432] [INFO] cheese - inserting 1000 documents. first: Zookeeper (disambiguation) and last: Wikipedia:Articles for deletion/List of locations in the Star Fox series +[2018-02-13T00:38:19.436] [INFO] cheese - inserting 1000 documents. first: File:Witchs of warboys.jpg and last: Dargun +[2018-02-13T00:38:19.492] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:38:19.518] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:38:19.713] [INFO] cheese - inserting 1000 documents. first: Category:Music organizations based in the United States and last: Farid Díaz +[2018-02-13T00:38:19.770] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Tamale pie and last: List of Governors of Languedoc +[2018-02-13T00:38:19.825] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:38:19.847] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:38:19.866] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Tupilakosaurus and last: Dani Massunguna +[2018-02-13T00:38:19.905] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean convoys of World War II and last: Template:Editnotices/Page/List of companies of Egypt +[2018-02-13T00:38:19.933] [INFO] cheese - inserting 1000 documents. first: Brisk Iced Lemon Tea and last: Southern kiang +[2018-02-13T00:38:19.970] [INFO] cheese - inserting 1000 documents. first: Peta Jane Buscombe and last: Peter Anthony Inge +[2018-02-13T00:38:19.986] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:38:20.023] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:38:20.073] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:38:20.105] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T00:38:20.189] [INFO] cheese - inserting 1000 documents. first: Twisted and last: Wallins Creek +[2018-02-13T00:38:20.257] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:38:20.363] [INFO] cheese - inserting 1000 documents. first: Antoski and last: Chiesa di Torricella, Ostiano +[2018-02-13T00:38:20.393] [INFO] cheese - inserting 1000 documents. first: Heinrich Rudolph Wullschlaegel and last: Březsko +[2018-02-13T00:38:20.394] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:38:20.453] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:38:20.491] [INFO] cheese - inserting 1000 documents. first: File:Peranmai poster.jpg and last: Aleksei Kukhtinov +[2018-02-13T00:38:20.523] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/List of companies of the Dominican Republic and last: File:HKFoodforLife.jpg +[2018-02-13T00:38:20.527] [INFO] cheese - inserting 1000 documents. first: File:Anna1951.jpg and last: Wikipedia:Missouri +[2018-02-13T00:38:20.559] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:38:20.575] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:38:20.591] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:38:20.663] [INFO] cheese - inserting 1000 documents. first: Fax Machine and last: 10 000 +[2018-02-13T00:38:20.720] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:38:20.774] [INFO] cheese - inserting 1000 documents. first: Arched marble and last: File:285SqnRAAFcrest.png +[2018-02-13T00:38:20.778] [INFO] cheese - inserting 1000 documents. first: Edward Rowe Snow and last: File:TheRavagesofTime-Vol16.jpg +[2018-02-13T00:38:20.823] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:38:20.844] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:38:20.858] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/survivalops.com and last: William Ickes +[2018-02-13T00:38:20.903] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:38:20.932] [INFO] cheese - inserting 1000 documents. first: Category:1960 in education and last: Founder's Award (disambiguation) +[2018-02-13T00:38:20.974] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:38:20.992] [INFO] cheese - inserting 1000 documents. first: File:Contracted2013poster.jpg and last: Donegal by-election, 1879 +[2018-02-13T00:38:21.052] [INFO] cheese - inserting 1000 documents. first: Template:Foloi and last: John of Athos +[2018-02-13T00:38:21.082] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:38:21.199] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:38:21.294] [INFO] cheese - inserting 1000 documents. first: Urraca of León and Castile and last: Category:Female veterinarians +[2018-02-13T00:38:21.353] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:38:21.448] [INFO] cheese - inserting 1000 documents. first: Homeland Security Presidential Directive 9 and last: Parkside West Historic District +[2018-02-13T00:38:21.450] [INFO] cheese - inserting 1000 documents. first: Glycemic control and last: MSMS +[2018-02-13T00:38:21.516] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Cloyne and last: Category:Albums by Bahamian artists +[2018-02-13T00:38:21.528] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:38:21.530] [INFO] cheese - inserting 1000 documents. first: File:Starsapphire-all-flash32.jpg and last: Lunar Surface Access Module (Project Constellation) +[2018-02-13T00:38:21.587] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:38:21.623] [INFO] cheese - inserting 1000 documents. first: Iceland–Tunisia relations and last: Boston College-Harvard Basketball Rivalry +[2018-02-13T00:38:21.655] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:38:21.683] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T00:38:21.686] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:38:21.784] [INFO] cheese - inserting 1000 documents. first: Narasimhavarman II and last: Sergio Renán +[2018-02-13T00:38:21.811] [INFO] cheese - inserting 1000 documents. first: Category:Indian female choreographers and last: Logistic loss +[2018-02-13T00:38:21.824] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:38:21.860] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:38:21.996] [INFO] cheese - inserting 1000 documents. first: Chris Robertson and last: Thiagaraya Nagar (State Assembly Constituency) +[2018-02-13T00:38:22.044] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:38:22.125] [INFO] cheese - inserting 1000 documents. first: Otto Magnus von Stackelberg (ambassador) and last: Wikipedia:Articles for deletion/José Cabrera Costas +[2018-02-13T00:38:22.137] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2013/49/1 and last: Hungarian Defence Forces +[2018-02-13T00:38:22.143] [INFO] cheese - inserting 1000 documents. first: Geography of Texas and last: Tigre (language) +[2018-02-13T00:38:22.146] [INFO] cheese - inserting 1000 documents. first: Mesivta of clifton and last: Tony Romano (disambiguation) +[2018-02-13T00:38:22.214] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:38:22.217] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:38:22.240] [INFO] cheese - inserting 1000 documents. first: Ethni and last: Air Do - Hokkaido International Airlines +[2018-02-13T00:38:22.262] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:38:22.284] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:38:22.379] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T00:38:22.385] [INFO] cheese - inserting 1000 documents. first: Vašek Pospíšil and last: Iván García Cortina +[2018-02-13T00:38:22.468] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:38:22.480] [INFO] cheese - inserting 1000 documents. first: Ustaz Mohammed Yusuf and last: Category:18th-century scientists +[2018-02-13T00:38:22.553] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:38:22.640] [INFO] cheese - inserting 1000 documents. first: Template:Shipindex and last: Category:2014 manga +[2018-02-13T00:38:22.689] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:38:22.715] [INFO] cheese - inserting 1000 documents. first: Silver Hill (Albuquerque) and last: Category:Sport in Saarbrücken +[2018-02-13T00:38:22.738] [INFO] cheese - inserting 1000 documents. first: Minor characters from Wizard of Oz and last: Hans Benndorf +[2018-02-13T00:38:22.780] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:38:22.807] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:38:22.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tsunami in Sangam and last: Vaccarini +[2018-02-13T00:38:22.851] [INFO] cheese - inserting 1000 documents. first: A.K. Premajam and last: Teddy Yip (disambiguation) +[2018-02-13T00:38:22.930] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:38:22.927] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:38:23.049] [INFO] cheese - inserting 1000 documents. first: Christopher David Lee and last: 2005 World Championships in Athletics - Men's shot put +[2018-02-13T00:38:23.065] [INFO] cheese - inserting 1000 documents. first: Snakeman and last: Paul H. Nitze School of Advanced International Studies (SAIS) at Johns Hopkins University +[2018-02-13T00:38:23.174] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:38:23.195] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:38:23.272] [INFO] cheese - inserting 1000 documents. first: Morgan Jones (US politician) and last: 2011 Utøya, Norway shooting spree +[2018-02-13T00:38:23.333] [INFO] cheese - inserting 1000 documents. first: Category:Onondaga limestone and last: Lollipop chainsaw +[2018-02-13T00:38:23.349] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:38:23.414] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:38:23.473] [INFO] cheese - inserting 1000 documents. first: George Weiss (baseball player) and last: African Studies Association +[2018-02-13T00:38:23.495] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/log/July 2016 and last: Kissos Kissonerga +[2018-02-13T00:38:23.565] [INFO] cheese - inserting 1000 documents. first: RVX and last: Category:Massachusetts county councillors +[2018-02-13T00:38:23.576] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:38:23.579] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:38:23.627] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:38:23.670] [INFO] cheese - inserting 1000 documents. first: Gabal El Uweinat and last: Karlovo (Banat) +[2018-02-13T00:38:23.761] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:38:23.904] [INFO] cheese - inserting 1000 documents. first: Yacov Ben-Dov and last: List of British films of 2012 +[2018-02-13T00:38:23.912] [INFO] cheese - inserting 1000 documents. first: Binjai and last: Jean Du Sable +[2018-02-13T00:38:23.953] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:38:24.004] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:38:24.092] [INFO] cheese - inserting 1000 documents. first: 1954–55 Hapoel Tel Aviv F.C. season and last: Endre, Gotland +[2018-02-13T00:38:24.095] [INFO] cheese - inserting 1000 documents. first: Swedish house of lords and last: Big Cove, AL +[2018-02-13T00:38:24.110] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Arfa ekkeri and last: Hollywood of Europe +[2018-02-13T00:38:24.140] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:38:24.160] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:38:24.191] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:38:24.207] [INFO] cheese - inserting 1000 documents. first: Institute of Technology and Marine Engineering and last: List of French films of 1973 +[2018-02-13T00:38:24.263] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:38:24.289] [INFO] cheese - inserting 1000 documents. first: Lineyte-Samarnon and last: Wikipedia:WikiProject Spam/LinkReports/ychenhappy.com +[2018-02-13T00:38:24.313] [INFO] cheese - inserting 1000 documents. first: Martin Mere, Burscough and last: Charles F Brehm +[2018-02-13T00:38:24.345] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:38:24.371] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:38:24.499] [INFO] cheese - inserting 1000 documents. first: 1919 Western State Hilltoppers football team and last: Tree pincushion protea +[2018-02-13T00:38:24.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2009 July 29 and last: Ali Mirza Safavi +[2018-02-13T00:38:24.549] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:38:24.578] [INFO] cheese - inserting 1000 documents. first: Mercury(II) oxide and last: Chard (disambiguation) +[2018-02-13T00:38:24.583] [INFO] cheese - inserting 1000 documents. first: European Hollywood and last: Kal-i-Keh +[2018-02-13T00:38:24.588] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:38:24.677] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:38:24.707] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:38:24.810] [INFO] cheese - inserting 1000 documents. first: Spectamen and last: Wikipedia:Version 1.0 Editorial Team/Fortifications articles by quality/1 +[2018-02-13T00:38:24.850] [INFO] cheese - inserting 1000 documents. first: Karamanid dynasty and last: File:Comparison of Max Hold Spectrum Analyzer trace and Persistence Trace.png +[2018-02-13T00:38:24.896] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:38:24.911] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:38:24.962] [INFO] cheese - inserting 1000 documents. first: Karolyi and last: Crazy Sue +[2018-02-13T00:38:24.997] [INFO] cheese - inserting 1000 documents. first: Silver mirror test and last: Shuttle sorting +[2018-02-13T00:38:25.052] [INFO] cheese - inserting 1000 documents. first: Domestic level analysis and last: File:Roxana Cannon Arsht.jpg +[2018-02-13T00:38:25.074] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:38:25.097] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:38:25.170] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:38:25.265] [INFO] cheese - inserting 1000 documents. first: List of socialist countries and last: List of Supreme Court Judges of Victoria +[2018-02-13T00:38:25.332] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:38:25.431] [INFO] cheese - inserting 1000 documents. first: Tha Pandian and last: Stuart Waterton +[2018-02-13T00:38:25.475] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:38:25.489] [INFO] cheese - inserting 1000 documents. first: The Squaw Man (1918 film) and last: Utopía Internacional +[2018-02-13T00:38:25.512] [INFO] cheese - inserting 1000 documents. first: Charles Napoléon Dorion and last: Essque Hotels +[2018-02-13T00:38:25.549] [INFO] cheese - inserting 1000 documents. first: Time Devourer and last: Ronan Rafferty +[2018-02-13T00:38:25.568] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:38:25.597] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:38:25.622] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T00:38:25.653] [INFO] cheese - inserting 1000 documents. first: Tuning hyperparameters and last: Adrian Morejon +[2018-02-13T00:38:25.708] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:38:25.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/No Right Way and last: Post-game show +[2018-02-13T00:38:25.758] [INFO] cheese - inserting 1000 documents. first: My America (documentary) and last: Winnipeg Light Infantry +[2018-02-13T00:38:25.795] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:38:25.819] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:38:25.903] [INFO] cheese - inserting 1000 documents. first: Category:Unreferenced United States presidential elections articles and last: Tofalau +[2018-02-13T00:38:25.963] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:38:26.047] [INFO] cheese - inserting 1000 documents. first: 1999 FIA GT Homestead 3 Hours and last: Template:Grading scheme/doc/see also +[2018-02-13T00:38:26.048] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 70.176.127.164 and last: Wikipedia:Articles for deletion/Stealth Blimp +[2018-02-13T00:38:26.089] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:38:26.094] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:38:26.137] [INFO] cheese - inserting 1000 documents. first: 50th Transition Training Unit and last: Avoué +[2018-02-13T00:38:26.152] [INFO] cheese - inserting 1000 documents. first: File:Grave 6594470 1037571113.jpg and last: Vazman +[2018-02-13T00:38:26.168] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:38:26.197] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:38:26.209] [INFO] cheese - inserting 1000 documents. first: Template:Infobox military conflict and last: K.A.A. Gent +[2018-02-13T00:38:26.308] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:38:26.340] [INFO] cheese - inserting 1000 documents. first: TEVA Pharmaceuticals USA, Inc. and last: Beer in Serbia and Montenegro +[2018-02-13T00:38:26.388] [INFO] cheese - inserting 1000 documents. first: Cotus and last: Category:Kolkata portal +[2018-02-13T00:38:26.418] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:38:26.428] [INFO] cheese - inserting 1000 documents. first: 52d Transport Wing and last: Category:Cruisers of the Republic of China Navy +[2018-02-13T00:38:26.450] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:38:26.462] [INFO] cheese - inserting 1000 documents. first: Grand Avenue, Queens and last: Folkestone & Shepway F.C. +[2018-02-13T00:38:26.495] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:38:26.555] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:38:26.780] [INFO] cheese - inserting 1000 documents. first: Johann Stegner and last: St John Branch +[2018-02-13T00:38:26.822] [INFO] cheese - inserting 1000 documents. first: Category:Multinational companies headquartered in Israel and last: Cox Cup +[2018-02-13T00:38:26.826] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:38:26.872] [INFO] cheese - inserting 1000 documents. first: Wongaksa (Gigye, Pohang) and last: Category:Syrian Air Force +[2018-02-13T00:38:26.876] [INFO] cheese - inserting 1000 documents. first: Paul Cameron and last: I-610 (TX) +[2018-02-13T00:38:26.906] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:38:26.965] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:38:27.030] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:38:27.099] [INFO] cheese - inserting 1000 documents. first: James Yorke (bishop) and last: Êtienne Hajdu +[2018-02-13T00:38:27.154] [INFO] cheese - inserting 1000 documents. first: File:Asterixcover-27.jpg and last: BMC Software Inc +[2018-02-13T00:38:27.195] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:38:27.216] [INFO] cheese - inserting 1000 documents. first: Alliant Technosystems and last: Category:Law firms established in 1871 +[2018-02-13T00:38:27.249] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:38:27.305] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:38:27.439] [INFO] cheese - inserting 1000 documents. first: Henk Kamerbeek and last: Victor Matheus Da Silva +[2018-02-13T00:38:27.507] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:38:27.583] [INFO] cheese - inserting 1000 documents. first: Kevin Lankinen and last: Ailsa McKay Lecture +[2018-02-13T00:38:27.648] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:38:27.659] [INFO] cheese - inserting 1000 documents. first: Category:Frazioni of the Province of Campobasso and last: George Stracey Smith +[2018-02-13T00:38:27.687] [INFO] cheese - inserting 1000 documents. first: Etienne Hajdu and last: Abdallah Zrika +[2018-02-13T00:38:27.717] [INFO] cheese - inserting 1000 documents. first: Dher Umid Ali Shah and last: Cd4 t cell +[2018-02-13T00:38:27.721] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:38:27.730] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Tax Club (2nd nomination) and last: Template:User zb5108 +[2018-02-13T00:38:27.732] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:38:27.754] [INFO] cheese - inserting 1000 documents. first: I-474 and last: College of Applied Science, Vadakkencherry +[2018-02-13T00:38:27.766] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:38:27.799] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:38:27.820] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:38:27.840] [INFO] cheese - inserting 1000 documents. first: Karlslust dance hall fire and last: S.A.V. Fakir +[2018-02-13T00:38:27.889] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:38:27.982] [INFO] cheese - inserting 1000 documents. first: Rudy Altig and last: Category:1970s meteorology +[2018-02-13T00:38:28.038] [INFO] cheese - inserting 1000 documents. first: Climate of south west england and last: All Riders vs. Great Shocker +[2018-02-13T00:38:28.041] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:38:28.081] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:38:28.113] [INFO] cheese - inserting 1000 documents. first: Dressing room (theater) and last: Template:Charlotte sports venues +[2018-02-13T00:38:28.115] [INFO] cheese - inserting 1000 documents. first: Soon (Gershwin) and last: Heavy Bombardment Period +[2018-02-13T00:38:28.155] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:38:28.157] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:38:28.175] [INFO] cheese - inserting 1000 documents. first: Category:Canadian collage artists and last: Template:Edition needed/doc +[2018-02-13T00:38:28.227] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T00:38:28.287] [INFO] cheese - inserting 1000 documents. first: Rush Hour (film) and last: SS Athenic +[2018-02-13T00:38:28.319] [INFO] cheese - inserting 1000 documents. first: Category:Russian football managers and last: Moon Magic +[2018-02-13T00:38:28.334] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:38:28.367] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:38:28.375] [INFO] cheese - inserting 1000 documents. first: Portal:Twilight/Related portals and last: Špičky +[2018-02-13T00:38:28.439] [INFO] cheese - inserting 1000 documents. first: Danielowice and last: Christopher's Christmas Mission +[2018-02-13T00:38:28.458] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:38:28.478] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:38:28.495] [INFO] cheese - inserting 1000 documents. first: Category:1960s meteorology and last: Russell P. Brown +[2018-02-13T00:38:28.502] [INFO] cheese - inserting 1000 documents. first: Eleutherodactylus simoterus and last: Alex William Costa e Silva +[2018-02-13T00:38:28.558] [INFO] cheese - inserting 1000 documents. first: Tesco Clubcard and last: Collie Entragian +[2018-02-13T00:38:28.575] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:38:28.616] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:38:28.685] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:38:28.917] [INFO] cheese - inserting 1000 documents. first: Želatovice and last: Kamuthi taluk +[2018-02-13T00:38:28.984] [INFO] cheese - inserting 1000 documents. first: Mitrophrys fabricata and last: Ruff Sqwad +[2018-02-13T00:38:28.993] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:38:29.053] [INFO] cheese - inserting 1000 documents. first: Desítkový biliár and last: Aurelia Eusebia +[2018-02-13T00:38:29.107] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:38:29.117] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:38:29.132] [INFO] cheese - inserting 1000 documents. first: Co-operative General Association of Free Will Baptists and last: The Exorcism of Molly Hartley +[2018-02-13T00:38:29.222] [INFO] cheese - inserting 1000 documents. first: Sophoraceae and last: Gaveshan +[2018-02-13T00:38:29.236] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:38:29.301] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:38:29.329] [INFO] cheese - inserting 1000 documents. first: Numberology and last: African-Americans in the Civil War +[2018-02-13T00:38:29.356] [INFO] cheese - inserting 1000 documents. first: Stonybrook-Wilshire and last: Antedated cheque +[2018-02-13T00:38:29.412] [INFO] cheese - inserting 1000 documents. first: Shotokan-ryū and last: WRLE +[2018-02-13T00:38:29.415] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T00:38:29.470] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:38:29.545] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:38:29.712] [INFO] cheese - inserting 1000 documents. first: Khamesan and last: Pritampura +[2018-02-13T00:38:29.731] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Mschuhe3 and last: Category:United States Secret Service agents +[2018-02-13T00:38:29.758] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:38:29.786] [INFO] cheese - inserting 1000 documents. first: The Big 5 and last: Prince Xun (恂) +[2018-02-13T00:38:29.787] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:38:29.830] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:38:29.937] [INFO] cheese - inserting 1000 documents. first: Double-mark and last: Category:Icelandic Roman Catholic priests +[2018-02-13T00:38:29.938] [INFO] cheese - inserting 1000 documents. first: Nelson Cereceda and last: Template:Bethany Dillon +[2018-02-13T00:38:29.961] [INFO] cheese - inserting 1000 documents. first: MRPharmS and last: Bođani Monastery +[2018-02-13T00:38:29.978] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:38:30.004] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T00:38:30.024] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:38:30.161] [INFO] cheese - inserting 1000 documents. first: Eunomia latenigra and last: Austrian Crescent (potato) +[2018-02-13T00:38:30.209] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:38:30.270] [INFO] cheese - inserting 1000 documents. first: Jean Binta Breeze and last: Northern Westchester +[2018-02-13T00:38:30.293] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Talk:WTFPL/Archive 4 and last: Wikipedia:Articles for deletion/Michael J. Yaremchuk (2nd nomination) +[2018-02-13T00:38:30.309] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada-related articles by quality/23 and last: Abner Cotto +[2018-02-13T00:38:30.332] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T00:38:30.368] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:38:30.405] [INFO] cheese - inserting 1000 documents. first: Elias Karam and last: Buell XB12R +[2018-02-13T00:38:30.420] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:38:30.467] [INFO] cheese - inserting 1000 documents. first: Ranger SVG-770C-B1 and last: Meat Market (disambiguation) +[2018-02-13T00:38:30.485] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:38:30.500] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:38:30.538] [INFO] cheese - inserting 1000 documents. first: St. Peter Igneus and last: SM U-55 +[2018-02-13T00:38:30.643] [INFO] cheese - inserting 1000 documents. first: Sandra Gardebring Ogren and last: 1955 Clemson Tigers football team +[2018-02-13T00:38:30.667] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:38:30.740] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:38:30.868] [INFO] cheese - inserting 1000 documents. first: Chirpyness and last: Jenny Wimperis +[2018-02-13T00:38:30.901] [INFO] cheese - inserting 1000 documents. first: Nijmar and last: Wikipedia:Drafts +[2018-02-13T00:38:30.931] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:38:30.951] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:38:31.013] [INFO] cheese - inserting 1000 documents. first: Category:2003 in Nigeria and last: Narcissus × medioluteus +[2018-02-13T00:38:31.024] [INFO] cheese - inserting 1000 documents. first: File:Ares Logo.png and last: Luka koper +[2018-02-13T00:38:31.035] [INFO] cheese - inserting 1000 documents. first: Francisco Pacheco and last: Category:Scientology and law +[2018-02-13T00:38:31.066] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:38:31.129] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:38:31.135] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:38:31.203] [INFO] cheese - inserting 1000 documents. first: Compadres and last: Human artificial chromosome +[2018-02-13T00:38:31.243] [INFO] cheese - inserting 1000 documents. first: File:Sick Cycle Carousel Music Video.png and last: Cityflo 650 CBTC +[2018-02-13T00:38:31.267] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:38:31.334] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:38:31.418] [INFO] cheese - inserting 1000 documents. first: Ömerli, Şanlıurfa and last: Ingleside (Catonsville, Maryland) +[2018-02-13T00:38:31.421] [INFO] cheese - inserting 1000 documents. first: Category:Polar Satellite Launch Vehicle and last: Pokemon Go Plus +[2018-02-13T00:38:31.458] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:38:31.480] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:38:31.500] [INFO] cheese - inserting 1000 documents. first: Camp Eden and last: Hieracium onegense +[2018-02-13T00:38:31.507] [INFO] cheese - inserting 1000 documents. first: Flora Penne and last: 1984 Baylor Bears football team +[2018-02-13T00:38:31.548] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:38:31.551] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:38:31.669] [INFO] cheese - inserting 1000 documents. first: Unicode Spacing Modifier Letters and last: Wikipedia:Articles for deletion/Cherie (actress) +[2018-02-13T00:38:31.677] [INFO] cheese - inserting 1000 documents. first: Russian vine and last: Monteiro's Storm-petrel +[2018-02-13T00:38:31.715] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:38:31.718] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:38:31.736] [INFO] cheese - inserting 1000 documents. first: Interstate 395 (District of Columbia) and last: Ahab the Arab +[2018-02-13T00:38:31.798] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:38:31.802] [INFO] cheese - inserting 1000 documents. first: Nikita Glushkov and last: Wojdan +[2018-02-13T00:38:31.822] [INFO] cheese - inserting 1000 documents. first: Arthur Cecil Hynes and last: Category:Rail infrastructure in Bulgaria +[2018-02-13T00:38:31.851] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:38:31.875] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:38:31.925] [INFO] cheese - inserting 1000 documents. first: File:The Miracles City of Angels.jpg and last: QQ games +[2018-02-13T00:38:31.931] [INFO] cheese - inserting 1000 documents. first: Kadlub and last: The Mpowerment Project +[2018-02-13T00:38:32.001] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:38:32.067] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:38:32.163] [INFO] cheese - inserting 1000 documents. first: Swinhoe's Storm-petrel and last: Adımı Kalbine Yaz +[2018-02-13T00:38:32.244] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:38:32.299] [INFO] cheese - inserting 1000 documents. first: 2006 oklahoma sooners football team and last: Buffalo City Stadium +[2018-02-13T00:38:32.363] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:38:32.456] [INFO] cheese - inserting 1000 documents. first: Woydan and last: Heinrich Gottron +[2018-02-13T00:38:32.469] [INFO] cheese - inserting 1000 documents. first: Oceania Women's Sevens and last: Juan Jacinto (Musician) +[2018-02-13T00:38:32.474] [INFO] cheese - inserting 1000 documents. first: TKO Software and last: Michael Malkior +[2018-02-13T00:38:32.510] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:38:32.522] [INFO] cheese - inserting 1000 documents. first: Lichtenberg, Austria and last: Category:LQ06 quadrangle +[2018-02-13T00:38:32.522] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:38:32.534] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:38:32.567] [INFO] cheese - inserting 1000 documents. first: QQ game and last: Governors of Malta +[2018-02-13T00:38:32.606] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:38:32.638] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:38:32.656] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2011 Summer Universiade – Women's road race and last: Category:1993 in New York (state) +[2018-02-13T00:38:32.715] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:38:32.919] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/IMac4ME and last: Waldrep Dairy +[2018-02-13T00:38:32.951] [INFO] cheese - inserting 1000 documents. first: Teresa Almeida and last: Karolina Semeniuk-Olchawa +[2018-02-13T00:38:32.957] [INFO] cheese - inserting 1000 documents. first: Dhingana City and last: File:Ubisoft Toronto Logo.jpg +[2018-02-13T00:38:32.992] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:38:33.013] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:38:33.016] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:38:33.091] [INFO] cheese - inserting 1000 documents. first: Spermatazoon and last: The Garey +[2018-02-13T00:38:33.164] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:38:33.170] [INFO] cheese - inserting 1000 documents. first: Yujiazui and last: Supplementary benefit +[2018-02-13T00:38:33.172] [INFO] cheese - inserting 1000 documents. first: Category:Wards of Sapporo and last: Radio Erevan +[2018-02-13T00:38:33.239] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:38:33.255] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:38:33.400] [INFO] cheese - inserting 1000 documents. first: Gannes, Harry. and last: Category:Italian video game designers +[2018-02-13T00:38:33.437] [INFO] cheese - inserting 1000 documents. first: Portal:College football/College football news and last: Charles Codman +[2018-02-13T00:38:33.443] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:38:33.482] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:38:33.537] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Die Singphoniker and last: Recreational use of drugs +[2018-02-13T00:38:33.582] [INFO] cheese - inserting 1000 documents. first: New South Wales state rugby league team and last: Edwin G. Pulleyblank +[2018-02-13T00:38:33.640] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:38:33.689] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:38:33.826] [INFO] cheese - inserting 1000 documents. first: Cptsd and last: Newcastle RLFC +[2018-02-13T00:38:33.895] [INFO] cheese - inserting 1000 documents. first: D. W. Griffith's Abraham Lincoln and last: Emil Frey-Kloss +[2018-02-13T00:38:33.951] [INFO] cheese - batch complete in: 1.236 secs +[2018-02-13T00:38:33.997] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:38:34.018] [INFO] cheese - inserting 1000 documents. first: Kallang River and last: List of Will & Grace episodes +[2018-02-13T00:38:34.034] [INFO] cheese - inserting 1000 documents. first: Moscow Metro Line 12 and last: Category:2016 Czech television series debuts +[2018-02-13T00:38:34.083] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:38:34.139] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:38:34.154] [INFO] cheese - inserting 1000 documents. first: Celilo Converter Statio and last: Lenstra-Lenstra-Lovász lattice basis reduction algorithm +[2018-02-13T00:38:34.184] [INFO] cheese - inserting 1000 documents. first: Moroccan Parliament and last: Wanakah, New York +[2018-02-13T00:38:34.232] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:38:34.236] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:38:34.246] [INFO] cheese - inserting 1000 documents. first: Emile Frey and last: The battle of electricity +[2018-02-13T00:38:34.283] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:38:34.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/December 2013 - January 2014 Backlog Elimination Drive/Numbermaniac and last: Within a Song +[2018-02-13T00:38:34.425] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:38:34.499] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Wyoming, 2020 and last: Enniscorthy Greyhound Stadium +[2018-02-13T00:38:34.554] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:38:34.572] [INFO] cheese - inserting 1000 documents. first: The battle of epping forest and last: KIBB-FM +[2018-02-13T00:38:34.601] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:38:34.695] [INFO] cheese - inserting 1000 documents. first: Category:2009 poems and last: File:41 (1927 film).jpg +[2018-02-13T00:38:34.727] [INFO] cheese - inserting 1000 documents. first: Pepino (fruit) and last: Cotuit Hall +[2018-02-13T00:38:34.766] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:38:34.818] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:38:34.852] [INFO] cheese - inserting 1000 documents. first: Haute Marne and last: Lisa Left Eye Lopes +[2018-02-13T00:38:34.856] [INFO] cheese - inserting 1000 documents. first: Transgender Awareness Week and last: Glyphipteryx variella +[2018-02-13T00:38:34.911] [INFO] cheese - inserting 1000 documents. first: Kim:kyungho 1997 (album) and last: Template:Montenegro in Eurovision +[2018-02-13T00:38:34.912] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:38:34.914] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:38:34.936] [INFO] cheese - inserting 1000 documents. first: Iowa gubernatorial election, 2018 and last: Inder puri +[2018-02-13T00:38:34.996] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T00:38:34.998] [INFO] cheese - inserting 1000 documents. first: Art Museum of Georgia and last: S.T.R.I.K.E +[2018-02-13T00:38:35.004] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:38:35.083] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:38:35.187] [INFO] cheese - inserting 1000 documents. first: Perspecta (journal) and last: Bundle bone +[2018-02-13T00:38:35.227] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:38:35.317] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tomomi Sunaba and last: ŠD NK Križevci +[2018-02-13T00:38:35.349] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:38:35.401] [INFO] cheese - inserting 1000 documents. first: Back to Square-1 Puzzle and last: Faliro Bay +[2018-02-13T00:38:35.403] [INFO] cheese - inserting 1000 documents. first: Uniform dual and last: Fazlabad, Kapurthala +[2018-02-13T00:38:35.438] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:38:35.522] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 124001–125000 and last: List of hospitals in Winnipeg +[2018-02-13T00:38:35.549] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:38:35.551] [INFO] cheese - inserting 1000 documents. first: Paintball bazooka and last: Rudolf Sosna +[2018-02-13T00:38:35.620] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:38:35.635] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:38:35.716] [INFO] cheese - inserting 1000 documents. first: Definite Darkness and last: File:Oscar Wilde FilmPoster.jpeg +[2018-02-13T00:38:35.720] [INFO] cheese - inserting 1000 documents. first: Category:1940 in science and last: Fred Hill (basketball coach) +[2018-02-13T00:38:35.776] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:38:35.824] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:38:35.878] [INFO] cheese - inserting 1000 documents. first: Kalateh (disambiguation) and last: Avalon Online +[2018-02-13T00:38:35.932] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:38:36.110] [INFO] cheese - inserting 1000 documents. first: B.J. Wilson and last: 2016-17 Montana Grizzlies men's basketball team +[2018-02-13T00:38:36.150] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:38:36.178] [INFO] cheese - inserting 1000 documents. first: Gunter Wüsthoff and last: 1972 Republican presidential primary +[2018-02-13T00:38:36.223] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:38:36.230] [INFO] cheese - inserting 1000 documents. first: Map of the Human Heart and last: Good to Great +[2018-02-13T00:38:36.259] [INFO] cheese - inserting 1000 documents. first: Rugby union in Basutoland and last: Waugoshance Point +[2018-02-13T00:38:36.265] [INFO] cheese - inserting 1000 documents. first: 17th millennium and last: Metrobus (St.John's, Newfoundland) +[2018-02-13T00:38:36.299] [INFO] cheese - inserting 1000 documents. first: Rick Kozak and last: File:Robert-Courtneidge.jpg +[2018-02-13T00:38:36.310] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:38:36.315] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Totaldramaisland33 and last: Wikipedia:Articles for deletion/Media Go +[2018-02-13T00:38:36.317] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:38:36.326] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:38:36.368] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:38:36.402] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:38:36.649] [INFO] cheese - inserting 1000 documents. first: Nice lorry attack, July 2016 and last: File:Wemall logo 2016.png +[2018-02-13T00:38:36.661] [INFO] cheese - inserting 1000 documents. first: Category:1987 in figure skating and last: Universidad de Alicante +[2018-02-13T00:38:36.699] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:38:36.715] [INFO] cheese - inserting 1000 documents. first: List of RHPs in Oswego and last: Jennifer Page (Millennium Dome) +[2018-02-13T00:38:36.713] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:38:36.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Puja Agarwal and last: Just as I Am (Brantley Gilbert album), +[2018-02-13T00:38:36.795] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:38:36.846] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:38:36.874] [INFO] cheese - inserting 1000 documents. first: Alfredo Poveda Burbano and last: Jesse Knight House +[2018-02-13T00:38:36.907] [INFO] cheese - inserting 1000 documents. first: English Spinach and last: Wikipedia:WikiProject Australia/Peer review/TISM +[2018-02-13T00:38:36.944] [INFO] cheese - inserting 1000 documents. first: Teri Weigel and last: Craig Russell +[2018-02-13T00:38:36.958] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:38:36.993] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:38:37.058] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:38:37.199] [INFO] cheese - inserting 1000 documents. first: William Todd Tiahrt and last: Category:Santa Rosa de Copán +[2018-02-13T00:38:37.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sp-studio.moy.su and last: Category:Historians of the Caucasus +[2018-02-13T00:38:37.327] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:38:37.426] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:38:37.517] [INFO] cheese - inserting 1000 documents. first: Degaga and last: File:Castlevania - Circle of the Moon - Gameplay.png +[2018-02-13T00:38:37.536] [INFO] cheese - inserting 1000 documents. first: Category:People from Savona and last: No homo +[2018-02-13T00:38:37.580] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:38:37.640] [INFO] cheese - inserting 1000 documents. first: Marcin Krowicki and last: Category:Populated places in Andrew County, Missouri +[2018-02-13T00:38:37.645] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:38:37.710] [INFO] cheese - inserting 1000 documents. first: Cucumis myriocarpus and last: Parks in Windsor, Ontario +[2018-02-13T00:38:37.728] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:38:37.795] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T00:38:37.845] [INFO] cheese - inserting 1000 documents. first: Category:Proposals in Asia and last: Category:Shipwrecks on the National Register of Historic Places in Texas +[2018-02-13T00:38:37.914] [INFO] cheese - inserting 1000 documents. first: Eugene skinner and last: Kosmos (publisher) +[2018-02-13T00:38:37.939] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:38:37.956] [INFO] cheese - inserting 1000 documents. first: File:Skyline from barton springs ALEXIS CALCOTE.JPG and last: Category:Wikipedia sockpuppets of Ineedanewaccount +[2018-02-13T00:38:37.987] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T00:38:38.002] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:38:38.102] [INFO] cheese - inserting 1000 documents. first: Template:Sarvabad County and last: Category:Participants in Argentine reality television series +[2018-02-13T00:38:38.155] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:38:38.194] [INFO] cheese - inserting 1000 documents. first: Better Than I Used to Be and last: 1952 Rugby Union European Cup +[2018-02-13T00:38:38.243] [INFO] cheese - inserting 1000 documents. first: Leila Pahlavi and last: Category:1880 animal deaths +[2018-02-13T00:38:38.247] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:38:38.281] [INFO] cheese - inserting 1000 documents. first: Dengakuman and last: The Great Bear (play) +[2018-02-13T00:38:38.307] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:38:38.341] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:38:38.355] [INFO] cheese - inserting 1000 documents. first: Belardi and last: ABA Light-Middleweight Champions +[2018-02-13T00:38:38.418] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:38:38.491] [INFO] cheese - inserting 1000 documents. first: W.G. Aston and last: Lucy Decker Seeley +[2018-02-13T00:38:38.561] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:38:38.589] [INFO] cheese - inserting 1000 documents. first: Stylosanthes biflora and last: Category:Wikipedians in the IEEE Robotics and Automation Society +[2018-02-13T00:38:38.629] [INFO] cheese - inserting 1000 documents. first: Simple Machine and last: Chava +[2018-02-13T00:38:38.633] [INFO] cheese - inserting 1000 documents. first: Harding University Graduate School of Religion and last: Kalancho +[2018-02-13T00:38:38.653] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:38:38.696] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:38:38.712] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:38:38.727] [INFO] cheese - inserting 1000 documents. first: Double skin façades and last: Template:W&J +[2018-02-13T00:38:38.795] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:38:38.850] [INFO] cheese - inserting 1000 documents. first: Category:Flags of Italy and last: Waajeed +[2018-02-13T00:38:38.883] [INFO] cheese - inserting 1000 documents. first: Nepal and Newar Community and last: Osemotor +[2018-02-13T00:38:38.904] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:38:38.936] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:38:39.296] [INFO] cheese - inserting 1000 documents. first: 1992–93 Alpenliga season and last: Kolestan Mahmoud +[2018-02-13T00:38:39.336] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:38:39.459] [INFO] cheese - inserting 1000 documents. first: Acadiana Regional Airport and last: Wikipedia:Version 1.0 Editorial Team/Mammal articles by quality/16 +[2018-02-13T00:38:39.534] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2010–11 AFC Wimbledon season and last: Olenecamptus strigosus strigosus +[2018-02-13T00:38:39.547] [INFO] cheese - inserting 1000 documents. first: Kiev City Hall and last: Portal:Biography/Selected biography arts/1 +[2018-02-13T00:38:39.565] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:38:39.609] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T00:38:39.616] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:38:39.711] [INFO] cheese - inserting 1000 documents. first: Template:Authoronlinesource2004 and last: Kumahachi +[2018-02-13T00:38:39.725] [INFO] cheese - inserting 1000 documents. first: Emu (beer) and last: Megan Mullally Show +[2018-02-13T00:38:39.783] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T00:38:39.817] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T00:38:39.908] [INFO] cheese - inserting 1000 documents. first: Kolestan Mahmood and last: Category:Protected areas of Sabine County, Texas +[2018-02-13T00:38:39.954] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:38:40.189] [INFO] cheese - inserting 1000 documents. first: Izusan Jinja and last: Jelle de bock +[2018-02-13T00:38:40.381] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:38:40.388] [INFO] cheese - inserting 1000 documents. first: Olenecamptus lineatus and last: Draft:Charles Harris +[2018-02-13T00:38:40.547] [INFO] cheese - inserting 1000 documents. first: Owletts and last: Wikipedia:WikiProject Computational Biology/ISCB competition announcement 2013/Notifications +[2018-02-13T00:38:40.558] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T00:38:40.864] [INFO] cheese - inserting 1000 documents. first: Cake walk and last: Dinwitty, VA +[2018-02-13T00:38:41.291] [INFO] cheese - batch complete in: 1.671 secs +[2018-02-13T00:38:41.360] [INFO] cheese - inserting 1000 documents. first: 7 Deadly Wonders and last: Rothenfels +[2018-02-13T00:38:41.613] [INFO] cheese - inserting 1000 documents. first: 2006–07 Temple Owls men's basketball team and last: Andrew Koenig (actor) +[2018-02-13T00:38:41.663] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Denbigh Town and last: Jundiuvira River +[2018-02-13T00:38:41.699] [INFO] cheese - batch complete in: 1.882 secs +[2018-02-13T00:38:41.691] [INFO] cheese - batch complete in: 1.907 secs +[2018-02-13T00:38:41.769] [INFO] cheese - inserting 1000 documents. first: Godfrey II, Count of Esch and last: Plinio Antolini +[2018-02-13T00:38:41.791] [INFO] cheese - batch complete in: 1.837 secs +[2018-02-13T00:38:41.850] [INFO] cheese - batch complete in: 1.469 secs +[2018-02-13T00:38:41.854] [INFO] cheese - batch complete in: 1.295 secs +[2018-02-13T00:38:42.075] [INFO] cheese - inserting 1000 documents. first: PEK Airport and last: Cardy formula +[2018-02-13T00:38:42.236] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T00:38:42.332] [INFO] cheese - inserting 1000 documents. first: Cursillo Movement and last: Developmental science +[2018-02-13T00:38:42.349] [INFO] cheese - inserting 1000 documents. first: Rolf Apitzsch and last: Template:OTRS identity +[2018-02-13T00:38:42.365] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:38:42.403] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:38:42.493] [INFO] cheese - inserting 1000 documents. first: Ralph Ginzberg and last: Roman Catholic Archdiocese of Antequera, Oaxaca +[2018-02-13T00:38:42.558] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/JasenleeSandbox and last: FleetCenter +[2018-02-13T00:38:42.576] [INFO] cheese - inserting 1000 documents. first: Juquiá River and last: Antipope Innocent +[2018-02-13T00:38:42.601] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:38:42.753] [INFO] cheese - inserting 1000 documents. first: Anastasios Sidiropoulos and last: Surgical sealant film +[2018-02-13T00:38:42.763] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T00:38:42.768] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T00:38:42.855] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:38:42.946] [INFO] cheese - inserting 1000 documents. first: Satu Lung and last: 2001–02 EEHL season +[2018-02-13T00:38:42.977] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:38:42.983] [INFO] cheese - inserting 1000 documents. first: Template:Ritesh Sidhwani and last: Template:Five pillars box +[2018-02-13T00:38:43.077] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:38:43.377] [INFO] cheese - inserting 1000 documents. first: MC (hip hop) and last: Template:Municipalities of the district of Kreuzlingen +[2018-02-13T00:38:43.392] [INFO] cheese - inserting 1000 documents. first: Scottish Conservative and Unionist Students and last: Rock N' Roll Climber +[2018-02-13T00:38:43.424] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:38:43.435] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:38:43.454] [INFO] cheese - inserting 1000 documents. first: Florence Campo di Marte and last: Heart & Soul (Bad Boys Blue album) +[2018-02-13T00:38:43.592] [INFO] cheese - inserting 1000 documents. first: Southeastern xanthurus rat and last: TB 191 +[2018-02-13T00:38:43.596] [INFO] cheese - inserting 1000 documents. first: List of people from Ottawa and last: Desmonds +[2018-02-13T00:38:43.597] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:38:43.697] [INFO] cheese - inserting 1000 documents. first: Category:Electrical engineering organizations and last: Category:Buildings and structures in Narragansett, Rhode Island +[2018-02-13T00:38:43.700] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:38:43.706] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T00:38:43.806] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:38:43.955] [INFO] cheese - inserting 1000 documents. first: Al Kawr and last: Silentiarius +[2018-02-13T00:38:43.994] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:38:44.039] [INFO] cheese - inserting 1000 documents. first: Community of St. Francis and last: Four Pennies +[2018-02-13T00:38:44.046] [INFO] cheese - inserting 1000 documents. first: Template:Infobox South African subplace 2011/cleanup and last: Wikipedia:Articles for deletion/Felt ball rug +[2018-02-13T00:38:44.054] [INFO] cheese - inserting 1000 documents. first: Portal:Bahamas/box-footer and last: Al Wyg +[2018-02-13T00:38:44.095] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:38:44.100] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:38:44.132] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:38:44.272] [INFO] cheese - inserting 1000 documents. first: Russian doping and last: Mausolea (plant) +[2018-02-13T00:38:44.332] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:38:44.369] [INFO] cheese - inserting 1000 documents. first: Qusays and last: A-Wearying for You +[2018-02-13T00:38:44.401] [INFO] cheese - inserting 1000 documents. first: Yuriy Kravchenko and last: Dova di Predappio +[2018-02-13T00:38:44.612] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:38:44.727] [INFO] cheese - inserting 1000 documents. first: ...That's The Way it Is and last: File:All My Life Billy Joel.jpg +[2018-02-13T00:38:44.748] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T00:38:44.912] [INFO] cheese - inserting 1000 documents. first: Herath and last: Real time world war II +[2018-02-13T00:38:44.954] [INFO] cheese - inserting 1000 documents. first: Universitas Kristen Petra and last: C.F. Jayne +[2018-02-13T00:38:45.139] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T00:38:45.176] [INFO] cheese - inserting 1000 documents. first: First flight and last: Jack Edwards (footballer, born 1929) +[2018-02-13T00:38:45.279] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T00:38:45.367] [INFO] cheese - batch complete in: 6.806 secs +[2018-02-13T00:38:45.472] [INFO] cheese - batch complete in: 1.372 secs +[2018-02-13T00:38:45.664] [INFO] cheese - inserting 1000 documents. first: Hwætberht and last: Church of the Annunciation of Our Lady of the Newarke, Leicester +[2018-02-13T00:38:45.852] [INFO] cheese - batch complete in: 1.52 secs +[2018-02-13T00:38:45.864] [INFO] cheese - inserting 1000 documents. first: CCs2O3 and last: Weldon Memorial Prize +[2018-02-13T00:38:45.981] [INFO] cheese - batch complete in: 1.366 secs +[2018-02-13T00:38:46.198] [INFO] cheese - inserting 1000 documents. first: C. F. Jayne and last: Wikipedia:WikiProject Spam/LinkReports/islamic-treatment.blogspot.com +[2018-02-13T00:38:46.321] [INFO] cheese - inserting 1000 documents. first: Category:698 in Asia and last: FAFSA position +[2018-02-13T00:38:46.414] [INFO] cheese - batch complete in: 1.275 secs +[2018-02-13T00:38:46.506] [INFO] cheese - inserting 1000 documents. first: 2000 European Athletics Indoor Championships and last: Jacek Sieka +[2018-02-13T00:38:46.603] [INFO] cheese - batch complete in: 1.324 secs +[2018-02-13T00:38:46.609] [INFO] cheese - batch complete in: 1.861 secs +[2018-02-13T00:38:46.734] [INFO] cheese - inserting 1000 documents. first: File:School of Rock poster.jpg and last: 2007-08 FA Cup qualifying rounds +[2018-02-13T00:38:46.811] [INFO] cheese - inserting 1000 documents. first: Toshihisa Izawa and last: National M. K. Čiurlionis School of Art +[2018-02-13T00:38:46.915] [INFO] cheese - batch complete in: 1.443 secs +[2018-02-13T00:38:46.956] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T00:38:47.020] [INFO] cheese - inserting 1000 documents. first: Intellij idea and last: Wikipedia:WikiProject Spam/LinkReports/kivc.com +[2018-02-13T00:38:47.094] [INFO] cheese - inserting 1000 documents. first: Alexey Andreevich and last: Ar Rukayb +[2018-02-13T00:38:47.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nick Seddon and last: Carlos Navarrete Ruiz +[2018-02-13T00:38:47.173] [INFO] cheese - batch complete in: 1.806 secs +[2018-02-13T00:38:47.285] [INFO] cheese - batch complete in: 1.303 secs +[2018-02-13T00:38:47.309] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:38:47.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/islamic-treatment.blogspot.com and last: String-figure +[2018-02-13T00:38:47.641] [INFO] cheese - batch complete in: 1.226 secs +[2018-02-13T00:38:47.765] [INFO] cheese - inserting 1000 documents. first: Category:Locus Award for Best Short Story winning works and last: Francisco Gatinho +[2018-02-13T00:38:47.779] [INFO] cheese - inserting 1000 documents. first: Corazón salvaje (novel) and last: Matt Foley +[2018-02-13T00:38:47.884] [INFO] cheese - inserting 1000 documents. first: Generals' Putsch and last: Category:Neosittidae +[2018-02-13T00:38:47.961] [INFO] cheese - batch complete in: 1.352 secs +[2018-02-13T00:38:47.970] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T00:38:48.074] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T00:38:48.148] [INFO] cheese - inserting 1000 documents. first: Evange and last: Buchelberg +[2018-02-13T00:38:48.183] [INFO] cheese - inserting 1000 documents. first: PRDX6 and last: La hija de dios +[2018-02-13T00:38:48.303] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T00:38:48.301] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T00:38:48.345] [INFO] cheese - inserting 1000 documents. first: Ard Ar Raydah and last: Man v. Food (season 2) +[2018-02-13T00:38:48.462] [INFO] cheese - batch complete in: 1.177 secs +[2018-02-13T00:38:48.651] [INFO] cheese - inserting 1000 documents. first: Jure Balažič and last: List of songs produced by Ester Dean +[2018-02-13T00:38:48.690] [INFO] cheese - inserting 1000 documents. first: La hora de la papa and last: I-Shou University +[2018-02-13T00:38:48.732] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:38:48.736] [INFO] cheese - inserting 1000 documents. first: Millennium (series) and last: 1963–64 FA Cup Qualifying Rounds +[2018-02-13T00:38:48.748] [INFO] cheese - inserting 1000 documents. first: Dean Holden and last: Timeline of the 2006 Lebanon War +[2018-02-13T00:38:48.775] [INFO] cheese - batch complete in: 1.134 secs +[2018-02-13T00:38:48.871] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T00:38:48.892] [INFO] cheese - inserting 1000 documents. first: Jumbo Pictures and last: Adrar province, Algeria +[2018-02-13T00:38:48.914] [INFO] cheese - inserting 1000 documents. first: Reyhan Seker and last: India–Iceland relations +[2018-02-13T00:38:48.914] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T00:38:49.025] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:38:49.081] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T00:38:49.142] [INFO] cheese - inserting 1000 documents. first: Anatoliy Shelest and last: Miss Peru 2009 +[2018-02-13T00:38:49.230] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:38:49.311] [INFO] cheese - inserting 1000 documents. first: Gi Hyeong-do and last: Hoboken Cemetery, North Bergen +[2018-02-13T00:38:49.453] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:38:49.566] [INFO] cheese - inserting 1000 documents. first: NCR3 and last: HSD17B2 +[2018-02-13T00:38:49.594] [INFO] cheese - inserting 1000 documents. first: 1962–63 FA Cup Qualifying Rounds and last: United Nations Security Council Resolution 2098 +[2018-02-13T00:38:49.671] [INFO] cheese - inserting 1000 documents. first: Standing Buddha and last: Adam Pierce +[2018-02-13T00:38:49.741] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:38:49.746] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T00:38:49.869] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:38:50.095] [INFO] cheese - inserting 1000 documents. first: Iceland - India relations and last: Pitch aggregate +[2018-02-13T00:38:50.192] [INFO] cheese - batch complete in: 1.167 secs +[2018-02-13T00:38:50.347] [INFO] cheese - inserting 1000 documents. first: Saint Vinny's and last: Von Boguslawski +[2018-02-13T00:38:50.354] [INFO] cheese - inserting 1000 documents. first: S-3B Viking and last: Alpha Jamma Omega +[2018-02-13T00:38:50.377] [INFO] cheese - inserting 1000 documents. first: Template:Disambigtalk and last: Herendeşti +[2018-02-13T00:38:50.424] [INFO] cheese - inserting 1000 documents. first: Category:2016 Summer Paralympics football 7-a-side convenience templates and last: Category:Women members of the Swiss Federal Council +[2018-02-13T00:38:50.447] [INFO] cheese - batch complete in: 1.217 secs +[2018-02-13T00:38:50.480] [INFO] cheese - batch complete in: 1.399 secs +[2018-02-13T00:38:50.551] [INFO] cheese - inserting 1000 documents. first: Gogli body and last: Lasdikas, Greece +[2018-02-13T00:38:50.584] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T00:38:50.590] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T00:38:50.768] [INFO] cheese - inserting 1000 documents. first: Katuysha and last: Besserer +[2018-02-13T00:38:50.844] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:38:50.864] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T00:38:51.362] [INFO] cheese - inserting 1000 documents. first: Relax-A-Cisor and last: Debabrata Barua +[2018-02-13T00:38:51.463] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T00:38:51.559] [INFO] cheese - inserting 1000 documents. first: Herendesti and last: Kurilsky Urban Okrug +[2018-02-13T00:38:51.574] [INFO] cheese - inserting 1000 documents. first: Category:AD 9 births and last: XNA Studio +[2018-02-13T00:38:51.597] [INFO] cheese - inserting 1000 documents. first: Boguslavsky and last: Cities Build On Sand +[2018-02-13T00:38:51.744] [INFO] cheese - inserting 1000 documents. first: University College Galway R.F.C. and last: Corruption in Slovenia +[2018-02-13T00:38:51.763] [INFO] cheese - batch complete in: 1.178 secs +[2018-02-13T00:38:51.806] [INFO] cheese - inserting 1000 documents. first: HomeServices of America and last: Pinkney's Point +[2018-02-13T00:38:51.821] [INFO] cheese - batch complete in: 1.374 secs +[2018-02-13T00:38:51.839] [INFO] cheese - batch complete in: 1.359 secs +[2018-02-13T00:38:52.001] [INFO] cheese - inserting 1000 documents. first: Jeremy Koz and last: Complement component 5 +[2018-02-13T00:38:52.109] [INFO] cheese - batch complete in: 1.917 secs +[2018-02-13T00:38:52.113] [INFO] cheese - batch complete in: 1.245 secs +[2018-02-13T00:38:52.198] [INFO] cheese - batch complete in: 1.354 secs +[2018-02-13T00:38:52.579] [INFO] cheese - inserting 1000 documents. first: Philomath, Indiana and last: Lutch 5V +[2018-02-13T00:38:52.713] [INFO] cheese - batch complete in: 1.25 secs +[2018-02-13T00:38:52.827] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Winer and last: IFTU +[2018-02-13T00:38:52.866] [INFO] cheese - inserting 1000 documents. first: Class Of 98 and last: Čistejov +[2018-02-13T00:38:52.873] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T00:38:52.957] [INFO] cheese - inserting 1000 documents. first: Bromus secalinus and last: Bellemare +[2018-02-13T00:38:52.961] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T00:38:52.976] [INFO] cheese - inserting 1000 documents. first: 2005–06 MŽRKL season and last: Australia Olympic football team +[2018-02-13T00:38:53.013] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:38:53.136] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T00:38:53.473] [INFO] cheese - inserting 1000 documents. first: England and Wales Greens and last: File:88th Street.jpg +[2018-02-13T00:38:53.483] [INFO] cheese - inserting 1000 documents. first: Nash-Kuiper theorem and last: National Gallery of Modern Art +[2018-02-13T00:38:53.605] [INFO] cheese - batch complete in: 1.406 secs +[2018-02-13T00:38:53.616] [INFO] cheese - inserting 1000 documents. first: Category:Sports governing bodies in Iran and last: National association of collegiate directors of athletics +[2018-02-13T00:38:53.709] [INFO] cheese - batch complete in: 1.87 secs +[2018-02-13T00:38:53.775] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:38:53.802] [INFO] cheese - inserting 1000 documents. first: Luch-5V and last: Cbb17 +[2018-02-13T00:38:53.825] [INFO] cheese - inserting 1000 documents. first: Chantal Osborne and last: Architect's World +[2018-02-13T00:38:53.932] [INFO] cheese - batch complete in: 1.219 secs +[2018-02-13T00:38:53.951] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T00:38:54.015] [INFO] cheese - inserting 1000 documents. first: FIA WTCC Race of Sweden and last: File:Only You Can Love Me This Way .png +[2018-02-13T00:38:54.059] [INFO] cheese - inserting 1000 documents. first: Luscombe Aircraft Corporation and last: Kabiru'iyeh +[2018-02-13T00:38:54.125] [INFO] cheese - batch complete in: 1.164 secs +[2018-02-13T00:38:54.215] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T00:38:54.266] [INFO] cheese - inserting 1000 documents. first: National association of colored women and last: National institute of statistics and census of nicaragua +[2018-02-13T00:38:54.296] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:38:54.505] [INFO] cheese - inserting 1000 documents. first: Atalanta (Bottiaea) and last: Faroese crown +[2018-02-13T00:38:54.565] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 452001-453000 and last: Category:Far-right politics in Zimbabwe +[2018-02-13T00:38:54.565] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T00:38:54.582] [INFO] cheese - inserting 1000 documents. first: Dharmaa (2010 film) and last: Asymmetric synthesis +[2018-02-13T00:38:54.619] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:38:54.638] [INFO] cheese - inserting 1000 documents. first: National institute of technology calicut and last: Apache Peak (Arizona) +[2018-02-13T00:38:54.650] [INFO] cheese - inserting 1000 documents. first: Water toilet and last: Weierstrass factorization theorem +[2018-02-13T00:38:54.663] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:38:54.666] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:38:54.678] [INFO] cheese - inserting 1000 documents. first: Bayt Ar Rumaym and last: Edwin Tolton +[2018-02-13T00:38:54.740] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T00:38:54.760] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:38:54.808] [INFO] cheese - inserting 1000 documents. first: Salutation, Hammersmith and last: Category:809 in Asia +[2018-02-13T00:38:54.875] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:38:55.011] [INFO] cheese - inserting 1000 documents. first: José Benlliure Gil and last: Ace Ventura: The CD-Rom Game +[2018-02-13T00:38:55.039] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Nambashag and last: Moses Griffiths +[2018-02-13T00:38:55.061] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:38:55.100] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:38:55.159] [INFO] cheese - inserting 1000 documents. first: The Grafting of Life and last: M. Ramachandran +[2018-02-13T00:38:55.178] [INFO] cheese - inserting 1000 documents. first: Unbiased rendering and last: Mesoraca, Italy +[2018-02-13T00:38:55.219] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:38:55.263] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:38:55.447] [INFO] cheese - inserting 1000 documents. first: File:Applestoreginza.jpg and last: Anami Narayan Roy +[2018-02-13T00:38:55.462] [INFO] cheese - inserting 1000 documents. first: Glenageary train station and last: 2002 U.S. Open (tennis) +[2018-02-13T00:38:55.472] [INFO] cheese - inserting 1000 documents. first: Serbian Uprisings and last: Melvin Fitting +[2018-02-13T00:38:55.521] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:38:55.543] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:38:55.556] [INFO] cheese - inserting 1000 documents. first: Category:Works about Algeria and last: WiFi Internet +[2018-02-13T00:38:55.564] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:38:55.639] [INFO] cheese - inserting 1000 documents. first: De grønne pigespejdere, Danmark and last: Pressing stone +[2018-02-13T00:38:55.648] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:38:55.750] [INFO] cheese - inserting 1000 documents. first: Indian cricket team in the West Indies in 2017 and last: The Manassa Mauler +[2018-02-13T00:38:55.755] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:38:55.862] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/yubik.clan.su and last: Budala Gong +[2018-02-13T00:38:55.858] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:38:56.053] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:38:56.371] [INFO] cheese - inserting 1000 documents. first: Bahrud, Yazd and last: Observation arc +[2018-02-13T00:38:56.461] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T00:38:56.603] [INFO] cheese - inserting 1000 documents. first: Télimélé and last: Zeidae +[2018-02-13T00:38:56.621] [INFO] cheese - inserting 1000 documents. first: Jimmy Townley and last: Chalfont and Latimer train station +[2018-02-13T00:38:56.654] [INFO] cheese - inserting 1000 documents. first: Battle of Kars (disambiguation) and last: Dimensional timber +[2018-02-13T00:38:56.661] [INFO] cheese - inserting 1000 documents. first: Poisonous snakes and last: Group litigation order +[2018-02-13T00:38:56.670] [INFO] cheese - inserting 1000 documents. first: Category:Romanian child actors and last: Category:Sexuality activists +[2018-02-13T00:38:56.691] [INFO] cheese - batch complete in: 1.17 secs +[2018-02-13T00:38:56.726] [INFO] cheese - batch complete in: 1.162 secs +[2018-02-13T00:38:56.773] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T00:38:56.783] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T00:38:56.799] [INFO] cheese - batch complete in: 1.151 secs +[2018-02-13T00:38:56.992] [INFO] cheese - inserting 1000 documents. first: MYBBP1A and last: List of awards and nominations received by Raphael +[2018-02-13T00:38:57.138] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T00:38:57.291] [INFO] cheese - inserting 1000 documents. first: István Sági and last: Judicial system of the Bahamas +[2018-02-13T00:38:57.364] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:38:57.457] [INFO] cheese - inserting 1000 documents. first: Norman Shaw and last: Category:Taiwanese female golfers +[2018-02-13T00:38:57.501] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:38:57.545] [INFO] cheese - inserting 1000 documents. first: Peter Sundström and last: Lucius Quintius Cincinnatus +[2018-02-13T00:38:57.548] [INFO] cheese - inserting 1000 documents. first: Dechang County and last: Yevgeni Aleksandrovich Smirnov (born 1986) +[2018-02-13T00:38:57.585] [INFO] cheese - inserting 1000 documents. first: Civic-Military Directory and last: James Hyslop +[2018-02-13T00:38:57.608] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:38:57.614] [INFO] cheese - inserting 1000 documents. first: IMP3 and last: Natural resource management region +[2018-02-13T00:38:57.632] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:38:57.676] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:38:57.721] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:38:57.864] [INFO] cheese - inserting 1000 documents. first: Phodopus sungorus and last: Bovo Book +[2018-02-13T00:38:57.902] [INFO] cheese - inserting 1000 documents. first: Court system of the Bahamas and last: Tobeluk vs Lind +[2018-02-13T00:38:57.946] [INFO] cheese - inserting 1000 documents. first: Natural science and technical academy isny and last: Networked and electronic media +[2018-02-13T00:38:57.958] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:38:57.963] [INFO] cheese - batch complete in: 1.272 secs +[2018-02-13T00:38:57.973] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:38:58.073] [INFO] cheese - inserting 1000 documents. first: Simon Martirosyan and last: Liam Silke +[2018-02-13T00:38:58.101] [INFO] cheese - inserting 1000 documents. first: Revision Quest and last: Ameer Zeb Khan +[2018-02-13T00:38:58.136] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:38:58.151] [INFO] cheese - inserting 1000 documents. first: Jim Fitzsimons and last: Doug Lee +[2018-02-13T00:38:58.210] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:38:58.227] [INFO] cheese - inserting 1000 documents. first: Oleg of drelinia and last: New world warbler +[2018-02-13T00:38:58.249] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:38:58.271] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:38:58.327] [INFO] cheese - inserting 1000 documents. first: Template:Hugo Award Best Novelette and last: Wikipedia:WikiProject Spam/Local/patriotledger.com +[2018-02-13T00:38:58.424] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:38:58.521] [INFO] cheese - inserting 1000 documents. first: Urszula Teresa Mniszech and last: Template:Infobox exam +[2018-02-13T00:38:58.546] [INFO] cheese - inserting 1000 documents. first: One fine day in the middle of the night and last: Plogonnec +[2018-02-13T00:38:58.599] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:38:58.652] [INFO] cheese - inserting 1000 documents. first: File:DetailofMusicWG.jpg and last: Monterrondo +[2018-02-13T00:38:58.607] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:38:58.742] [INFO] cheese - inserting 1000 documents. first: Aerolimousine and last: Wikipedia:Articles for deletion/Nur Amalina Che Bakri +[2018-02-13T00:38:58.793] [INFO] cheese - inserting 1000 documents. first: E. M. Tucker and last: Asociación Hondureña de Tiro Práctico +[2018-02-13T00:38:58.801] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:38:58.842] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T00:38:58.852] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:38:58.924] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Devout Christian and last: Category:British Columbian actors +[2018-02-13T00:38:58.962] [INFO] cheese - inserting 1000 documents. first: Nice jewish boy and last: Prime Minister parodies (Private Eye) +[2018-02-13T00:38:58.981] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:38:59.003] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:38:59.052] [INFO] cheese - inserting 1000 documents. first: Upper Scorpius association and last: Amurru (disambiguation) +[2018-02-13T00:38:59.128] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:38:59.184] [INFO] cheese - inserting 1000 documents. first: Template:Krantikari Manuwadi Morcha/meta/shortname and last: Unknown (1988 anthology) +[2018-02-13T00:38:59.236] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:38:59.341] [INFO] cheese - inserting 1000 documents. first: Category:Sports organisations of Honduras and last: Category:1980 in women's sport +[2018-02-13T00:38:59.350] [INFO] cheese - inserting 1000 documents. first: Myrmokata and last: Edge of Madness +[2018-02-13T00:38:59.405] [INFO] cheese - inserting 1000 documents. first: B3105 road and last: Veyyil +[2018-02-13T00:38:59.416] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:38:59.430] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:38:59.486] [INFO] cheese - inserting 1000 documents. first: Action of 19 February 1807 and last: United Airlines Flight 811 +[2018-02-13T00:38:59.486] [INFO] cheese - inserting 1000 documents. first: Anabad (disambiguation) and last: She Still Comes Around (To Love What's Left of Me) +[2018-02-13T00:38:59.491] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:38:59.510] [INFO] cheese - inserting 1000 documents. first: Rajkot Urban Development Authority and last: Plouvorn +[2018-02-13T00:38:59.545] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:38:59.565] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:38:59.580] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:38:59.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Antonio Cabral de Melo and last: Izabad +[2018-02-13T00:38:59.698] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:38:59.793] [INFO] cheese - inserting 1000 documents. first: Category:1981 in women's sport and last: Schweizerhalle +[2018-02-13T00:38:59.856] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:38:59.911] [INFO] cheese - inserting 1000 documents. first: Linaria bipartita and last: W. Rooseboom +[2018-02-13T00:39:00.025] [INFO] cheese - inserting 1000 documents. first: Jeff Pearce (musician) and last: William Wallingford +[2018-02-13T00:39:00.081] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:39:00.102] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:39:00.237] [INFO] cheese - inserting 1000 documents. first: Gelao (language) and last: File:Jigsawcomfortingamanda.PNG +[2018-02-13T00:39:00.314] [INFO] cheese - inserting 1000 documents. first: Multisynthetase complex auxiliary component p38 and last: Kalogréza Railway Station +[2018-02-13T00:39:00.375] [INFO] cheese - inserting 1000 documents. first: Grubelić and last: Stopping digging +[2018-02-13T00:39:00.402] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:39:00.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Evolution of the Wizarding World and last: Su Duko +[2018-02-13T00:39:00.440] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:39:00.444] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:39:00.527] [INFO] cheese - batch complete in: 0.961 secs +[2018-02-13T00:39:00.545] [INFO] cheese - inserting 1000 documents. first: Garona Halforcen and last: Eunidia transversevittata +[2018-02-13T00:39:00.595] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:39:00.722] [INFO] cheese - inserting 1000 documents. first: File:AChaosOfFlowers1988Cover.jpg and last: Saltuklu +[2018-02-13T00:39:00.728] [INFO] cheese - inserting 1000 documents. first: Linquan County and last: Victor Burgin: Objets Temporels +[2018-02-13T00:39:00.780] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:39:00.805] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:39:01.180] [INFO] cheese - inserting 1000 documents. first: Heliostibes electrica and last: Reshkuiyeh +[2018-02-13T00:39:01.204] [INFO] cheese - inserting 1000 documents. first: Blow Away and last: Wikipedia:Articles for deletion/Harold Donald Hopkins +[2018-02-13T00:39:01.205] [INFO] cheese - inserting 1000 documents. first: Quarterfinals and last: Yetman +[2018-02-13T00:39:01.241] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:39:01.267] [INFO] cheese - inserting 1000 documents. first: Eunidia trialbofasciata and last: Digha–Sonepur rail–cum-road bridge +[2018-02-13T00:39:01.290] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:39:01.303] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T00:39:01.336] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:39:01.403] [INFO] cheese - inserting 1000 documents. first: Rex Buckland and last: Greg Cipes +[2018-02-13T00:39:01.433] [INFO] cheese - inserting 1000 documents. first: Stöd 2 and last: Template:Opposition (parliamentary)/meta/shortname +[2018-02-13T00:39:01.445] [INFO] cheese - inserting 1000 documents. first: Stáisiún Ros Eó agus Lusca and last: LA Gigolo +[2018-02-13T00:39:01.504] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T00:39:01.568] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:39:01.580] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:39:01.810] [INFO] cheese - inserting 1000 documents. first: Vaziri, Yazd and last: Chah-e Amur Matal'at +[2018-02-13T00:39:01.835] [INFO] cheese - inserting 1000 documents. first: Getz/Gilberto '76 and last: File:Larry Adler The Glory of Gershwin album cover.jpg +[2018-02-13T00:39:01.863] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:39:01.876] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:39:01.921] [INFO] cheese - inserting 1000 documents. first: Yū Koyama and last: Revanchisme +[2018-02-13T00:39:01.976] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:39:02.063] [INFO] cheese - inserting 1000 documents. first: Operation Kingpin and last: Martin Prusek +[2018-02-13T00:39:02.105] [INFO] cheese - inserting 1000 documents. first: Jurkovic and last: Ključ +[2018-02-13T00:39:02.112] [INFO] cheese - inserting 1000 documents. first: File:MajGenAide.jpg and last: Wallengrenia +[2018-02-13T00:39:02.121] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T00:39:02.162] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:39:02.178] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:39:02.187] [INFO] cheese - inserting 1000 documents. first: Norman and medieval london and last: Novi di modena +[2018-02-13T00:39:02.223] [INFO] cheese - inserting 1000 documents. first: Karl Friedrich Hieronymus, Baron von Münchhausen and last: Hitler's Terror Weapons +[2018-02-13T00:39:02.245] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:39:02.285] [INFO] cheese - inserting 1000 documents. first: KVOU-FM and last: Template:Bharatiya Lok Tantrik Mazdoor Dal/meta/shortname +[2018-02-13T00:39:02.316] [INFO] cheese - inserting 1000 documents. first: Quai Jacques-Cartier and last: Recopa Sudamericana 2017 +[2018-02-13T00:39:02.347] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:39:02.377] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:39:02.392] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:39:02.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Unreferenced BLP Rescue/March 2011 and last: E.8/47 +[2018-02-13T00:39:02.620] [INFO] cheese - inserting 1000 documents. first: Novo hopovo monastery and last: Ivan Owen +[2018-02-13T00:39:02.638] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:39:02.700] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:39:02.746] [INFO] cheese - inserting 1000 documents. first: Template:Indian Bahujan Samajwadi Party/meta/shortname and last: Food vessel (disambiguation) +[2018-02-13T00:39:02.762] [INFO] cheese - inserting 1000 documents. first: Deep Snow and last: Category:Minas Gerais geography stubs +[2018-02-13T00:39:02.824] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:39:02.869] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:39:03.114] [INFO] cheese - inserting 1000 documents. first: Proposed language families and last: Baron Gauch +[2018-02-13T00:39:03.170] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:39:03.233] [INFO] cheese - inserting 1000 documents. first: Subgame perfect nash equilibrium and last: Pentimento +[2018-02-13T00:39:03.325] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T00:39:03.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Charles Strickland (General Superintendent) and last: Meta-systems +[2018-02-13T00:39:03.497] [INFO] cheese - inserting 1000 documents. first: De Delft and last: Kongudi +[2018-02-13T00:39:03.498] [INFO] cheese - inserting 1000 documents. first: Frank Simpson (disambiguation) and last: WELG (AM) +[2018-02-13T00:39:03.506] [INFO] cheese - inserting 1000 documents. first: Warrenohesperia and last: Legal interpretation +[2018-02-13T00:39:03.559] [INFO] cheese - inserting 1000 documents. first: Mauricelm-Lei Millere and last: Wikipedia:Articles for deletion/List of automotive customizers +[2018-02-13T00:39:03.562] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:39:03.589] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:39:03.608] [INFO] cheese - inserting 1000 documents. first: Prix mondial Cino Del Duca and last: Blackenstein +[2018-02-13T00:39:03.614] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T00:39:03.645] [INFO] cheese - batch complete in: 1.467 secs +[2018-02-13T00:39:03.647] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:39:03.776] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:39:04.094] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 800 and last: Woodmoor +[2018-02-13T00:39:04.231] [INFO] cheese - inserting 1000 documents. first: Auxiliary organization and last: Mrokocin +[2018-02-13T00:39:04.248] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T00:39:04.356] [INFO] cheese - inserting 1000 documents. first: The Westies (Irish gang) and last: Hillabee +[2018-02-13T00:39:04.452] [INFO] cheese - inserting 1000 documents. first: Category:NASA people and last: Tufele Faatoia Liamatua +[2018-02-13T00:39:04.377] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:39:04.482] [INFO] cheese - inserting 1000 documents. first: Indoor air and last: Template:Attached KML/Florida State Road 60 +[2018-02-13T00:39:04.549] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:39:04.597] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T00:39:04.616] [INFO] cheese - inserting 1000 documents. first: Kattathur (South) and last: File:EmpireStateBuildingtotimessquare.JPG +[2018-02-13T00:39:04.678] [INFO] cheese - inserting 1000 documents. first: Lactobacillus reuteri and last: Henry Winfield Watson +[2018-02-13T00:39:04.735] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T00:39:04.809] [INFO] cheese - batch complete in: 1.164 secs +[2018-02-13T00:39:04.852] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T00:39:05.073] [INFO] cheese - inserting 1000 documents. first: Category:Companies established in the 21st century and last: Charles Saint George Cleverly +[2018-02-13T00:39:05.158] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:39:05.193] [INFO] cheese - inserting 1000 documents. first: Category:Lists of landforms of Montana and last: Mariam Matrem +[2018-02-13T00:39:05.241] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:39:05.352] [INFO] cheese - inserting 1000 documents. first: Chawinda, Punjab and last: Category:News media by continent +[2018-02-13T00:39:05.354] [INFO] cheese - inserting 1000 documents. first: Hull North and last: Cacaxtla +[2018-02-13T00:39:05.356] [INFO] cheese - inserting 1000 documents. first: Category:Pre-Raphaelite painters and last: Template:Ligue Inter-Régions de football Groupe Est +[2018-02-13T00:39:05.401] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:39:05.410] [INFO] cheese - inserting 1000 documents. first: J. R. Wasson and last: Bulbophyllum cameronense +[2018-02-13T00:39:05.410] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:39:05.458] [INFO] cheese - batch complete in: 1.21 secs +[2018-02-13T00:39:05.492] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:39:05.529] [INFO] cheese - inserting 1000 documents. first: Springfield Model 1892–99 and last: Court of Historical Review and Appeal +[2018-02-13T00:39:05.620] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:39:05.716] [INFO] cheese - inserting 1000 documents. first: File:Kamleshwar reservoir.jpg and last: Latia lateralis +[2018-02-13T00:39:05.758] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:39:05.774] [INFO] cheese - inserting 1000 documents. first: 2016 AFF Championship qualification and last: Joe Luther Smith +[2018-02-13T00:39:05.835] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:39:05.889] [INFO] cheese - inserting 1000 documents. first: William Rowland and last: List of families in South Park +[2018-02-13T00:39:05.909] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gene Langmesser and last: Spirits & Cat Ears +[2018-02-13T00:39:05.934] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum campos-portoi and last: Every Man Should Know +[2018-02-13T00:39:05.943] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:39:05.968] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:39:05.975] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:39:06.126] [INFO] cheese - inserting 1000 documents. first: National Ballistic Missile Defense and last: Wikipedia:Articles for deletion/Tony DiCicco +[2018-02-13T00:39:06.163] [INFO] cheese - inserting 1000 documents. first: Zarska Wies and last: San gregorio nelle alpi +[2018-02-13T00:39:06.226] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:39:06.276] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:39:06.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject:Architecture/Architecture Forum and last: Fordham Spire +[2018-02-13T00:39:06.390] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:39:06.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Reference 36 and last: Mexican white-lipped frog +[2018-02-13T00:39:06.534] [INFO] cheese - inserting 1000 documents. first: Sharif Beyglu and last: Category:Pakistani nobility +[2018-02-13T00:39:06.645] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:39:06.707] [INFO] cheese - inserting 1000 documents. first: 1963 Daytona 500 and last: Neal Lawrence +[2018-02-13T00:39:06.716] [INFO] cheese - inserting 1000 documents. first: Bill Gay (American football) and last: Panzerkampfwagen III Ausf.H +[2018-02-13T00:39:06.672] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:39:06.782] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:39:06.807] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:39:06.823] [INFO] cheese - inserting 1000 documents. first: San gregorio nude beach and last: Wikipedia:Articles for deletion/Nicholas Thorburn +[2018-02-13T00:39:06.890] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:39:07.198] [INFO] cheese - inserting 1000 documents. first: Ambassador Toshiyuki Takano and last: Darklands (video game) +[2018-02-13T00:39:07.248] [INFO] cheese - inserting 1000 documents. first: Roll Over Protection System and last: LDN (song) +[2018-02-13T00:39:07.256] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T00:39:07.292] [INFO] cheese - inserting 1000 documents. first: VI Corps (Grande Armée) and last: Petites Heures of Jean, Duc de Berry +[2018-02-13T00:39:07.341] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marie Carter and last: Category:Lists of buildings and structures in Utah +[2018-02-13T00:39:07.373] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:39:07.369] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T00:39:07.383] [INFO] cheese - inserting 1000 documents. first: List of Little League World Series broadcasters and last: Shinshū +[2018-02-13T00:39:07.459] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:39:07.474] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:39:07.517] [INFO] cheese - inserting 1000 documents. first: Stéphanos I Sidarouss and last: Brenda Hutchinson +[2018-02-13T00:39:07.534] [INFO] cheese - inserting 1000 documents. first: First National Bank of Botswana and last: File:Magee Corp Limit Sign.jpg +[2018-02-13T00:39:07.593] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:39:07.644] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:39:07.879] [INFO] cheese - inserting 1000 documents. first: Petites Heures de Jean de Berry and last: Template:Taxonomy/Istiodactylus +[2018-02-13T00:39:07.953] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:39:08.018] [INFO] cheese - inserting 1000 documents. first: Barrio Logan station and last: Mournful Monday +[2018-02-13T00:39:08.024] [INFO] cheese - inserting 1000 documents. first: Long Range Interceptor and last: Master unit +[2018-02-13T00:39:08.027] [INFO] cheese - inserting 1000 documents. first: Zheleznogorskoye Urban Settlement and last: Nelson Hotel B&B +[2018-02-13T00:39:08.045] [INFO] cheese - inserting 1000 documents. first: John Powell (footballer, born 1892) and last: Setyana Mapasa +[2018-02-13T00:39:08.051] [INFO] cheese - inserting 1000 documents. first: All Through the Night (Tone Lōc song) and last: William Chomsky (1896–1977) +[2018-02-13T00:39:08.073] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:39:08.108] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:39:08.146] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:39:08.242] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:39:08.339] [INFO] cheese - inserting 1000 documents. first: Ping-Pong (rocket) and last: Waudru +[2018-02-13T00:39:08.339] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:39:08.477] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T00:39:08.862] [INFO] cheese - inserting 1000 documents. first: 2011–12 Slovak Cup and last: Roky Moon and BOLT! +[2018-02-13T00:39:08.970] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T00:39:09.012] [INFO] cheese - inserting 1000 documents. first: Reuben Wright House and last: Carol Goodner +[2018-02-13T00:39:09.144] [INFO] cheese - inserting 1000 documents. first: Muhammad Yusuf Kandhalawi and last: Category:Kreis Werro +[2018-02-13T00:39:09.190] [INFO] cheese - batch complete in: 1.116 secs +[2018-02-13T00:39:09.269] [INFO] cheese - inserting 1000 documents. first: Aston 3:16 and last: Casey Cott +[2018-02-13T00:39:09.272] [INFO] cheese - batch complete in: 1.164 secs +[2018-02-13T00:39:09.277] [INFO] cheese - inserting 1000 documents. first: Template:In Through the Out Door and last: Joe (editor) +[2018-02-13T00:39:09.336] [INFO] cheese - batch complete in: 1.094 secs +[2018-02-13T00:39:09.387] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T00:39:09.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture of the day/March 18, 2005 and last: Pioneer Playhouse +[2018-02-13T00:39:09.490] [INFO] cheese - inserting 1000 documents. first: Karl-Marx-Orden and last: Sweet Home Chicago +[2018-02-13T00:39:09.539] [INFO] cheese - batch complete in: 1.392 secs +[2018-02-13T00:39:09.604] [INFO] cheese - batch complete in: 1.127 secs +[2018-02-13T00:39:09.659] [INFO] cheese - inserting 1000 documents. first: Alternative Risk Transfer and last: Canaletto (disambiguation) +[2018-02-13T00:39:09.923] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T00:39:10.177] [INFO] cheese - inserting 1000 documents. first: File:Ringling Intr Arts Festival.jpg and last: Julpe River +[2018-02-13T00:39:10.324] [INFO] cheese - inserting 1000 documents. first: Template:User Wikipedia Ghana and last: 1990 European Athletics Indoor Championships – Women's triple jump +[2018-02-13T00:39:10.349] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T00:39:10.433] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T00:39:10.487] [INFO] cheese - inserting 1000 documents. first: File:Parinay.jpg and last: Non-road engine +[2018-02-13T00:39:10.558] [INFO] cheese - batch complete in: 1.286 secs +[2018-02-13T00:39:10.566] [INFO] cheese - inserting 1000 documents. first: Gaps (album) and last: Category:Heads of government of Burundi +[2018-02-13T00:39:10.632] [INFO] cheese - batch complete in: 1.245 secs +[2018-02-13T00:39:10.633] [INFO] cheese - inserting 1000 documents. first: Edna Independent School District and last: Corinne West +[2018-02-13T00:39:10.678] [INFO] cheese - inserting 1000 documents. first: Korea K-Pop Hot 100 and last: Hickory Grove, Manitowoc County, Wisconsin +[2018-02-13T00:39:10.733] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T00:39:10.834] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:39:10.937] [INFO] cheese - inserting 1000 documents. first: Volcanic pipe and last: Bridgman's thermodynamic equations +[2018-02-13T00:39:11.046] [INFO] cheese - inserting 1000 documents. first: Tomina River and last: Aborolabis kalaktangensis +[2018-02-13T00:39:11.047] [INFO] cheese - batch complete in: 1.508 secs +[2018-02-13T00:39:11.093] [INFO] cheese - inserting 1000 documents. first: Chelmer Valley Riverside and last: Muricauda beolgyonensis +[2018-02-13T00:39:11.105] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:39:11.117] [INFO] cheese - inserting 1000 documents. first: Category:Hispanic and Latino American members of the United States Congress and last: File:Harold Matthews Cup Logo.gif +[2018-02-13T00:39:11.143] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:39:11.196] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:39:11.266] [INFO] cheese - inserting 1000 documents. first: Rumja and last: Margaret of Habsburg +[2018-02-13T00:39:11.318] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:39:11.345] [INFO] cheese - inserting 1000 documents. first: Glassheart and last: Mohammed AlـMutair +[2018-02-13T00:39:11.454] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:39:11.563] [INFO] cheese - inserting 1000 documents. first: Loo (Wind) and last: Davie Village, Vancouver, California +[2018-02-13T00:39:11.641] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:39:11.666] [INFO] cheese - inserting 1000 documents. first: Aborolabis martensi and last: Ambient rock +[2018-02-13T00:39:11.749] [INFO] cheese - inserting 1000 documents. first: Morona-Santiago stubfoot toad and last: Draft:Maurice Green (virologist) +[2018-02-13T00:39:11.760] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:39:11.770] [INFO] cheese - inserting 1000 documents. first: Shoaib Akhter and last: File:Joan Lui.jpg +[2018-02-13T00:39:11.816] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:39:11.818] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:39:11.889] [INFO] cheese - inserting 1000 documents. first: New York University College of Arts & Science and last: He Has Left Us Alone +[2018-02-13T00:39:11.930] [INFO] cheese - inserting 1000 documents. first: The Sword of the Spirits and last: Reinforced masonry +[2018-02-13T00:39:11.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fatimah Adams and last: Rousset-les-Vignes +[2018-02-13T00:39:11.955] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:39:11.983] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:39:12.004] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:39:12.085] [INFO] cheese - inserting 1000 documents. first: Category:People from East Devon (district) and last: Nestell Kipp Anderson +[2018-02-13T00:39:12.127] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:39:12.202] [INFO] cheese - inserting 1000 documents. first: Category:Jails in Iowa and last: Wikipedia:WikiProject Spam/LinkReports/ub90.com +[2018-02-13T00:39:12.227] [INFO] cheese - inserting 1000 documents. first: 64079 (number) and last: Mullet head +[2018-02-13T00:39:12.237] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:39:12.258] [INFO] cheese - inserting 1000 documents. first: Category:Scotland national football team venues and last: Museum on the Seam +[2018-02-13T00:39:12.298] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:39:12.339] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:39:12.381] [INFO] cheese - inserting 1000 documents. first: Amanda Rollins and last: Zsolt Gárdonyi +[2018-02-13T00:39:12.402] [INFO] cheese - inserting 1000 documents. first: Rémuzat and last: Juan Schiaretti +[2018-02-13T00:39:12.424] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:39:12.456] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:39:12.469] [INFO] cheese - inserting 1000 documents. first: Acronicta vulpina and last: S.A. Stepanek +[2018-02-13T00:39:12.520] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:39:12.563] [INFO] cheese - inserting 1000 documents. first: Starchild Trilogy and last: Murder of Jessica Lunsford +[2018-02-13T00:39:12.630] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:39:12.643] [INFO] cheese - inserting 1000 documents. first: Category:GIS data companies and last: Amoranto Stadium +[2018-02-13T00:39:12.653] [INFO] cheese - inserting 1000 documents. first: File:Stuntin'LikeMyDaddy.jpg and last: Take as needed for pain +[2018-02-13T00:39:12.683] [INFO] cheese - batch complete in: 0.227 secs +[2018-02-13T00:39:12.714] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:39:12.727] [INFO] cheese - inserting 1000 documents. first: Diastatic malt extract and last: Wikipedia:Miscellany for deletion/User:GangstaEB/VandalClinic +[2018-02-13T00:39:12.738] [INFO] cheese - inserting 1000 documents. first: Skeletal muscle sarcoma and last: Portal:Ecology/Selected picture/40 +[2018-02-13T00:39:12.758] [INFO] cheese - inserting 1000 documents. first: Portal:Mexico City and last: Wikipedia:Featured article candidates/Tintin (character)/archive1 +[2018-02-13T00:39:12.778] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:39:12.785] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:39:12.853] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:39:12.937] [INFO] cheese - inserting 1000 documents. first: Take out the trash day and last: Tax forms in the united states +[2018-02-13T00:39:12.980] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:39:13.049] [INFO] cheese - inserting 1000 documents. first: Balmy Alley and last: Wikipedia:Articles for deletion/WebChat Broadcasting System +[2018-02-13T00:39:13.181] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:39:13.260] [INFO] cheese - inserting 1000 documents. first: Scouting in colorado and last: Wikipedia:Today's featured article/May 27, 2008 +[2018-02-13T00:39:13.353] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:39:13.372] [INFO] cheese - inserting 1000 documents. first: Portal:Ecology/Selected picture/41 and last: T. Ramachandran (politician) +[2018-02-13T00:39:13.453] [INFO] cheese - inserting 1000 documents. first: Federico Peliti and last: Thuruthippuram Boat Race +[2018-02-13T00:39:13.454] [INFO] cheese - inserting 1000 documents. first: Senate president pro tempore and last: Judith Tarr +[2018-02-13T00:39:13.462] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:39:13.517] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:39:13.537] [INFO] cheese - inserting 1000 documents. first: Prisons in America and last: Category:2003 in Saudi Arabian sport +[2018-02-13T00:39:13.540] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:39:13.586] [INFO] cheese - inserting 1000 documents. first: Gilardino and last: Carlos Blanco Galindo +[2018-02-13T00:39:13.599] [INFO] cheese - inserting 1000 documents. first: Searching for nena and last: Seekers of the sacred jewel +[2018-02-13T00:39:13.601] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:39:13.637] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T00:39:13.658] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T00:39:13.733] [INFO] cheese - inserting 1000 documents. first: Adina, Malda and last: Jay Clayton (critic) +[2018-02-13T00:39:13.800] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:39:13.843] [INFO] cheese - inserting 1000 documents. first: Texas argentine chamber of commerce and last: Lesotho parliamentary election, 2007 +[2018-02-13T00:39:13.864] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:39:13.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Arko Custom and last: Schlafe, schlafe holder, süßer Knabe +[2018-02-13T00:39:13.928] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:39:14.015] [INFO] cheese - inserting 1000 documents. first: Microeurydemus wraniki and last: Guaranty Bank +[2018-02-13T00:39:14.020] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2013 December 23 and last: Ron Dorsey (basketball, born 1948) +[2018-02-13T00:39:14.059] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:39:14.080] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:39:14.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Quantum Repairmen and last: Category:Mayors of places in South Dakota +[2018-02-13T00:39:14.165] [INFO] cheese - inserting 1000 documents. first: Ion Cristoiu and last: Chemical mechanical polishing +[2018-02-13T00:39:14.225] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:39:14.262] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:39:14.271] [INFO] cheese - inserting 1000 documents. first: Covenant halo and last: SEPT8 +[2018-02-13T00:39:14.278] [INFO] cheese - inserting 1000 documents. first: Category:Canadian comedy-drama television series and last: Robert (Mousey) Thompson +[2018-02-13T00:39:14.316] [INFO] cheese - inserting 1000 documents. first: Category:2008 in Washington, D.C. and last: Template:User admin good behaviour +[2018-02-13T00:39:14.331] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:39:14.350] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:39:14.402] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:39:14.664] [INFO] cheese - inserting 1000 documents. first: K249EW and last: File:AB Crowsnest Pass logo.png +[2018-02-13T00:39:14.769] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:39:14.985] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Utah and last: Lake Beysehir +[2018-02-13T00:39:15.025] [INFO] cheese - inserting 1000 documents. first: Category:Film scores by John Zorn and last: Raimundo Dalmacio +[2018-02-13T00:39:15.026] [INFO] cheese - inserting 1000 documents. first: Ransom Room and last: Beehive shelf +[2018-02-13T00:39:15.028] [INFO] cheese - inserting 1000 documents. first: C20H27NO2 and last: National Committee on Foreign Medical Education and Accreditation +[2018-02-13T00:39:15.056] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:39:15.067] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:39:15.106] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T00:39:15.106] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T00:39:15.197] [INFO] cheese - inserting 1000 documents. first: Template:Carlisle County, Kentucky and last: 60S ribosomal protein L13a +[2018-02-13T00:39:15.226] [INFO] cheese - inserting 1000 documents. first: File:Latias and Latios.png and last: Seaford Head Nature Reserve +[2018-02-13T00:39:15.290] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:39:15.292] [INFO] cheese - batch complete in: 0.961 secs +[2018-02-13T00:39:15.496] [INFO] cheese - inserting 1000 documents. first: Isidor Kaufman and last: Vladislav Makarkin +[2018-02-13T00:39:15.531] [INFO] cheese - inserting 1000 documents. first: The Ghetto Boys and last: Los Gallardos +[2018-02-13T00:39:15.537] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:39:15.597] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:39:15.653] [INFO] cheese - inserting 1000 documents. first: Category:Vega, Norway and last: File:Ghoraghata Station Newly constructed Overbridge3.jpg +[2018-02-13T00:39:15.663] [INFO] cheese - inserting 1000 documents. first: McDonnell RF-101C Voodoo and last: File:Butler Grizzlies logo.png +[2018-02-13T00:39:15.704] [INFO] cheese - inserting 1000 documents. first: Zastávka (Brno-Country District) and last: File:Sergio Sollima.jpg +[2018-02-13T00:39:15.769] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:39:15.772] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:39:15.794] [INFO] cheese - batch complete in: 1.391 secs +[2018-02-13T00:39:15.874] [INFO] cheese - inserting 1000 documents. first: 4th Genie Awards and last: Aeropelican Airlines +[2018-02-13T00:39:15.972] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:39:15.998] [INFO] cheese - inserting 1000 documents. first: HMHA1 and last: File:PBB Protein HCN1 image.jpg +[2018-02-13T00:39:16.213] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Uganda members and last: Wikipedia:Featured picture candidates/Oil Platform +[2018-02-13T00:39:16.227] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T00:39:16.284] [INFO] cheese - inserting 1000 documents. first: Gádor and last: Pseudothecium +[2018-02-13T00:39:16.300] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:39:16.387] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:39:16.461] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 121 and last: Category:1945 in Irish law +[2018-02-13T00:39:16.517] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:39:16.632] [INFO] cheese - inserting 1000 documents. first: Dark Slope Streaks and last: Wikipedia:Help desk/Archives/2011 August 26 +[2018-02-13T00:39:16.666] [INFO] cheese - inserting 1000 documents. first: Sir John Hartopp, 3rd Baronet and last: Sophie Kasaei +[2018-02-13T00:39:16.700] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T00:39:16.756] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T00:39:16.821] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marcus Fitzgerald and last: File:Railway network schematic map 2009.png +[2018-02-13T00:39:16.841] [INFO] cheese - inserting 1000 documents. first: Equidistant letter sequencing and last: Mottingham railway station +[2018-02-13T00:39:16.895] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T00:39:16.896] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:39:16.916] [INFO] cheese - inserting 1000 documents. first: OR2AE1 and last: Template:Roanoke Rapids Radio +[2018-02-13T00:39:16.982] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:39:17.005] [INFO] cheese - inserting 1000 documents. first: Alf Garnet and last: File:Image 004.jpg +[2018-02-13T00:39:17.027] [INFO] cheese - inserting 1000 documents. first: Category:1946 in Irish law and last: Municipal Franchise Act 1835 +[2018-02-13T00:39:17.047] [INFO] cheese - inserting 1000 documents. first: Terpsiphone paradisi ceylonensis and last: Hieronymus Verdussen +[2018-02-13T00:39:17.085] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:39:17.096] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:39:17.123] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:39:17.269] [INFO] cheese - inserting 1000 documents. first: Foodweb dynamics and last: Harry Hitchen +[2018-02-13T00:39:17.328] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:39:17.395] [INFO] cheese - inserting 1000 documents. first: Universal Rocket Module and last: Single lens +[2018-02-13T00:39:17.463] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:39:17.503] [INFO] cheese - inserting 1000 documents. first: Sunderland, Mass and last: Big Island (Nunavut) +[2018-02-13T00:39:17.517] [INFO] cheese - inserting 1000 documents. first: Frans Verdussen and last: Dayton-Wright Aerial Coupe +[2018-02-13T00:39:17.548] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:39:17.599] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:39:17.620] [INFO] cheese - inserting 1000 documents. first: Category:Variance and last: Wikipedia:WikiProject Spam/LinkReports/parallaxfilm.com +[2018-02-13T00:39:17.692] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:39:17.864] [INFO] cheese - inserting 1000 documents. first: Johnny White and last: File:RomeSevenHills.JPG +[2018-02-13T00:39:17.931] [INFO] cheese - inserting 1000 documents. first: São Filipe, Cape Verde (municipality) and last: Hogzilla +[2018-02-13T00:39:18.039] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:39:18.098] [INFO] cheese - batch complete in: 1.203 secs +[2018-02-13T00:39:18.154] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Institute for Effective Education and last: Category:Petrovec Municipality +[2018-02-13T00:39:18.234] [INFO] cheese - inserting 1000 documents. first: Weingut Hermann Donnhoff and last: Template:CheckIP +[2018-02-13T00:39:18.247] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T00:39:18.335] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:39:18.349] [INFO] cheese - inserting 1000 documents. first: Carmel-by-the-Sea, Ca and last: Alpha-1 adrenergic receptors +[2018-02-13T00:39:18.402] [INFO] cheese - inserting 1000 documents. first: Samoa at the 2011 Pacific Games and last: Alan Kwong-wing Tang +[2018-02-13T00:39:18.436] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T00:39:18.474] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:39:18.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/parallaxfilm.com and last: Category:Democratic Party (Turkey, current) +[2018-02-13T00:39:18.593] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T00:39:18.730] [INFO] cheese - inserting 1000 documents. first: Ștefan Iovan and last: W holding +[2018-02-13T00:39:18.773] [INFO] cheese - inserting 1000 documents. first: Template:Fb team White City and last: Category:Rochester Zeniths players +[2018-02-13T00:39:18.791] [INFO] cheese - inserting 1000 documents. first: Jill de Ray and last: M. D. Ramasami +[2018-02-13T00:39:18.793] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:39:18.848] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:39:18.876] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:39:18.882] [INFO] cheese - inserting 1000 documents. first: Portal:Animation/Anniversaries/November/November 10 and last: Donceni +[2018-02-13T00:39:18.920] [INFO] cheese - inserting 1000 documents. first: Kalessin and last: Smokescreen GT +[2018-02-13T00:39:18.938] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:39:18.988] [INFO] cheese - inserting 1000 documents. first: Portal:Film/Selected article/44 and last: San Juan Airport +[2018-02-13T00:39:18.991] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T00:39:19.082] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:39:19.095] [INFO] cheese - inserting 1000 documents. first: Lesina (insect) and last: Wikipedia:Articles for deletion/Sheena Benton +[2018-02-13T00:39:19.260] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:39:19.458] [INFO] cheese - inserting 1000 documents. first: Kisfaludy and last: List of species on Severnaya Zemlya +[2018-02-13T00:39:19.461] [INFO] cheese - inserting 1000 documents. first: Serhiy Svetoslavsky and last: File:PNC Music Pavilion Charlotte Logo.jpg +[2018-02-13T00:39:19.472] [INFO] cheese - inserting 1000 documents. first: Friends and Lovers (album) and last: That's My Baby +[2018-02-13T00:39:19.503] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:39:19.514] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:39:19.565] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:39:19.569] [INFO] cheese - inserting 1000 documents. first: Kandili block and last: Seymour (Burn Notice) +[2018-02-13T00:39:19.647] [INFO] cheese - inserting 1000 documents. first: Category:Market houses and last: Wikipedia:Translation/Rohan Palace +[2018-02-13T00:39:19.690] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:39:19.775] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:39:19.850] [INFO] cheese - inserting 1000 documents. first: Brit Lind-Peterson and last: Wikipedia:Wikipedia Signpost/2016-08-04 +[2018-02-13T00:39:19.920] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:39:19.974] [INFO] cheese - inserting 1000 documents. first: 2005 Red Lake shooting and last: Cat Anatomy +[2018-02-13T00:39:20.030] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T00:39:20.100] [INFO] cheese - inserting 1000 documents. first: Princess Tatiana of Leiningen and last: Port BE +[2018-02-13T00:39:20.103] [INFO] cheese - inserting 1000 documents. first: File:LaughLaugh.jpg and last: Solves problem +[2018-02-13T00:39:20.119] [INFO] cheese - inserting 1000 documents. first: File:Leeds City Council logo.jpg and last: Wikipedia:Articles for deletion/Red5 (3rd nomination) +[2018-02-13T00:39:20.140] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:39:20.142] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:39:20.162] [INFO] cheese - inserting 1000 documents. first: Reigne and last: Ramon A. Alcaraz +[2018-02-13T00:39:20.165] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:39:20.217] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:39:20.257] [INFO] cheese - inserting 1000 documents. first: Stony Lonesome, Indiana and last: Hugh White +[2018-02-13T00:39:20.337] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:39:20.359] [INFO] cheese - inserting 1000 documents. first: Template:NavigationPanAmChampionsMAGPB and last: Ho, Ho, Ho, We say Hey, Hey, Hey +[2018-02-13T00:39:20.426] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:39:20.471] [INFO] cheese - inserting 1000 documents. first: File:Love Drunk cover.jpg and last: Singletaxer +[2018-02-13T00:39:20.512] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Selected picture/Week 21, 2014 and last: Braille pattern dots-2368 +[2018-02-13T00:39:20.517] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:39:20.561] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:39:20.595] [INFO] cheese - inserting 1000 documents. first: Category:Convention centres in Singapore and last: Cathedral of St. Mary of the Assumption +[2018-02-13T00:39:20.661] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:39:20.664] [INFO] cheese - inserting 1000 documents. first: Leaving Beirut and last: Pennsylvania's 7th congressional district election, 2006 +[2018-02-13T00:39:20.727] [INFO] cheese - inserting 1000 documents. first: Union of Communist Parties - Communist Party of the Soviet Union and last: Marnand, Switzerland +[2018-02-13T00:39:20.749] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:39:20.764] [INFO] cheese - inserting 1000 documents. first: Roger Bradshaigh Lloyd and last: Jolotca +[2018-02-13T00:39:20.776] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:39:20.842] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:39:20.875] [INFO] cheese - inserting 1000 documents. first: Marvel's Iron Fist and last: Matsuo Ghost Mine +[2018-02-13T00:39:20.926] [INFO] cheese - inserting 1000 documents. first: Category:1060s in Spain and last: O. James Garden +[2018-02-13T00:39:20.932] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:39:20.961] [INFO] cheese - inserting 1000 documents. first: Single-taxers and last: Ekron Airfield +[2018-02-13T00:39:20.975] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:39:21.020] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:39:21.272] [INFO] cheese - inserting 1000 documents. first: Mariya Vladimirovna Romanova and last: Giorgos Patis +[2018-02-13T00:39:21.310] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:39:21.365] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mitch Zamojc and last: Alicante International Airport +[2018-02-13T00:39:21.410] [INFO] cheese - inserting 1000 documents. first: File:Hiller X-18 front.jpg and last: Striation +[2018-02-13T00:39:21.427] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:39:21.471] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeff the Killer and last: Template:WANFL Ladder/1970 +[2018-02-13T00:39:21.517] [INFO] cheese - inserting 1000 documents. first: Amalgamated Society of Dyers, Finishers and Kindred Trades and last: Kurt Heatherley +[2018-02-13T00:39:21.549] [INFO] cheese - inserting 1000 documents. first: C9H13NO and last: Saint Marcouf Islands +[2018-02-13T00:39:21.554] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T00:39:21.601] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:39:21.710] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:39:21.724] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:39:21.758] [INFO] cheese - inserting 1000 documents. first: Horst Bagdonat and last: Music Cartel Records +[2018-02-13T00:39:21.769] [INFO] cheese - inserting 1000 documents. first: Dollie de Luxe and last: Sedapatti block +[2018-02-13T00:39:21.808] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:39:21.861] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T00:39:22.105] [INFO] cheese - inserting 1000 documents. first: Adolph Marx and last: APT James +[2018-02-13T00:39:22.104] [INFO] cheese - inserting 1000 documents. first: Super Thunder Blade and last: James Mansfield +[2018-02-13T00:39:22.150] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:39:22.189] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:39:22.196] [INFO] cheese - inserting 1000 documents. first: Haemanota croceicauda and last: Template:Belgian football transfers +[2018-02-13T00:39:22.258] [INFO] cheese - inserting 1000 documents. first: Ramberg-Osgood relationship and last: Wikipedia:Articles for deletion/National Junior Hockey League +[2018-02-13T00:39:22.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/University of the Philippines College of Social Work and Community Development and last: Template:Expand Kurmanji +[2018-02-13T00:39:22.354] [INFO] cheese - inserting 1000 documents. first: Lau Siu-kai and last: White Elster +[2018-02-13T00:39:22.359] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:39:22.367] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:39:22.370] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:39:22.452] [INFO] cheese - inserting 1000 documents. first: International Criminal Court investigation in Democratic Republic of the Congo and last: Alwarthirunagiri block +[2018-02-13T00:39:22.463] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T00:39:22.508] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:39:22.554] [INFO] cheese - inserting 1000 documents. first: AQ Shipley and last: Anarchy in the U K +[2018-02-13T00:39:22.588] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:39:22.742] [INFO] cheese - inserting 1000 documents. first: Baby,Now That I've Found You and last: Alton R. Waldon Jr. +[2018-02-13T00:39:22.753] [INFO] cheese - inserting 1000 documents. first: Category:Modularity and last: File:Borgund Stave Church in Lærdalen, 2013 June.jpg +[2018-02-13T00:39:22.790] [INFO] cheese - inserting 1000 documents. first: Mixed mating model and last: World of warcraft: Cataclysm +[2018-02-13T00:39:22.809] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Boston/Mass message and last: Darrell Lockhart +[2018-02-13T00:39:22.827] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:39:22.852] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:39:22.910] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:39:22.942] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:39:23.040] [INFO] cheese - inserting 1000 documents. first: Anarchy in the U. K. (Megadeth single) and last: B S Chimni +[2018-02-13T00:39:23.041] [INFO] cheese - inserting 1000 documents. first: Anopheles stephensi and last: Hockey at the 1995 Pan American Games +[2018-02-13T00:39:23.091] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:39:23.152] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:39:23.244] [INFO] cheese - inserting 1000 documents. first: Salvia spathacea and last: Úbeda +[2018-02-13T00:39:23.315] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:39:23.512] [INFO] cheese - inserting 1000 documents. first: Zgârcea River and last: Saint-Oyens, Switzerland +[2018-02-13T00:39:23.518] [INFO] cheese - inserting 1000 documents. first: Castlegar Regional Airport and last: Shishido Baiken +[2018-02-13T00:39:23.525] [INFO] cheese - inserting 1000 documents. first: The Blacherne and last: File:Paganini Horror (1989 film).jpg +[2018-02-13T00:39:23.599] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:39:23.602] [INFO] cheese - inserting 1000 documents. first: Forest Flora of British Burma and last: Template:Campaignbox India 1857 +[2018-02-13T00:39:23.612] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:39:23.624] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:39:23.745] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:39:23.751] [INFO] cheese - inserting 1000 documents. first: Boy Governor and last: Shlomit +[2018-02-13T00:39:23.792] [INFO] cheese - inserting 1000 documents. first: File:Les sous-doués en vacances.jpg and last: Pulitzer Prize for Local General or Spot News reporting +[2018-02-13T00:39:23.873] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:39:23.979] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T00:39:24.224] [INFO] cheese - inserting 1000 documents. first: Template:Sedgwick County, Colorado and last: Horny like a samurai +[2018-02-13T00:39:24.290] [INFO] cheese - inserting 1000 documents. first: Category:Azerbaijani singer-songwriters and last: Prime Minister (United Kingdom of Great Britain and Northern Ireland) +[2018-02-13T00:39:24.294] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:39:24.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of deaths at the Berlin Wall/archive1 and last: Fundacion Adepal Alcazar +[2018-02-13T00:39:24.345] [INFO] cheese - inserting 1000 documents. first: Indonesian Idol and last: KK (New York City Subway service) +[2018-02-13T00:39:24.352] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:39:24.354] [INFO] cheese - inserting 1000 documents. first: Adhimoolam and last: Electricity sector of the United States +[2018-02-13T00:39:24.393] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T00:39:24.395] [INFO] cheese - inserting 1000 documents. first: Markov chain mixing time and last: Gabriel Guerra-Mondragón +[2018-02-13T00:39:24.404] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:39:24.449] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:39:24.465] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:39:24.532] [INFO] cheese - inserting 1000 documents. first: St. Jan Berchmans Church, Brussels and last: Sally Jackson (disambiguation) +[2018-02-13T00:39:24.581] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:39:24.643] [INFO] cheese - inserting 1000 documents. first: King's Highway (Brooklyn) and last: Melvyn Goldstein +[2018-02-13T00:39:24.682] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:39:24.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of United States shopping malls by state 2 and last: Pakashticë +[2018-02-13T00:39:24.721] [INFO] cheese - inserting 1000 documents. first: Aerolineas Argentinas Magazine and last: Athletics at the 1990 Commonwealth Games - Men's 1500 metres +[2018-02-13T00:39:24.730] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T00:39:24.749] [INFO] cheese - inserting 1000 documents. first: 2009 US Open – Boys' Doubles and last: Kamenný Újezd (České Budějovice District) +[2018-02-13T00:39:24.779] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:39:24.797] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:39:24.799] [INFO] cheese - inserting 1000 documents. first: TT (New York City Subway service) and last: Al'Thor +[2018-02-13T00:39:24.855] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:39:24.882] [INFO] cheese - inserting 1000 documents. first: CBMT and last: Category:Albums produced by Don Gallucci +[2018-02-13T00:39:24.921] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:39:24.958] [INFO] cheese - inserting 1000 documents. first: George Guy Dodson and last: The Weather Station +[2018-02-13T00:39:25.003] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:39:25.065] [INFO] cheese - inserting 1000 documents. first: File:IncredibleHulkTVreference.jpg and last: Detours (Sheryl Crow album) +[2018-02-13T00:39:25.103] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:39:25.106] [INFO] cheese - inserting 1000 documents. first: Billy Ngawini and last: Rajeev shukla +[2018-02-13T00:39:25.120] [INFO] cheese - inserting 1000 documents. first: Cheung Ka Long and last: Template:The Box Tops +[2018-02-13T00:39:25.151] [INFO] cheese - inserting 1000 documents. first: Komařice and last: Category:Depression-era mobsters +[2018-02-13T00:39:25.162] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:39:25.173] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:39:25.242] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:39:25.328] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Olean High School shooting and last: Category:Albums produced by King Curtis +[2018-02-13T00:39:25.432] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:39:25.482] [INFO] cheese - inserting 1000 documents. first: Bal Bharati Public School and last: Rsync server +[2018-02-13T00:39:25.566] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:39:25.645] [INFO] cheese - inserting 1000 documents. first: Herrmann, Fernand and last: Sławomir Drabik +[2018-02-13T00:39:25.699] [INFO] cheese - inserting 1000 documents. first: Delphine Depardieu and last: Template:Malaysian general election, 1978 (Penang) +[2018-02-13T00:39:25.714] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Miki Imai (athlete) and last: Wikipedia:Articles for deletion/Pavel Tichon +[2018-02-13T00:39:25.725] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:39:25.739] [INFO] cheese - inserting 1000 documents. first: Nintendo Magazine System: Australia and last: Demba Touré +[2018-02-13T00:39:25.810] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:39:25.845] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:39:25.833] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:39:25.883] [INFO] cheese - inserting 1000 documents. first: Vericeras and last: Wikipedia:WikiProject Spam/LinkReports/hunkaryemekcim.com +[2018-02-13T00:39:25.956] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:39:25.997] [INFO] cheese - inserting 1000 documents. first: Category:Trials in Japan and last: Category:Youngstown articles missing geocoordinate data +[2018-02-13T00:39:26.091] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:39:26.158] [INFO] cheese - inserting 1000 documents. first: John George Spencer-Churchill and last: Antimicrobial agent +[2018-02-13T00:39:26.232] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:39:26.266] [INFO] cheese - inserting 1000 documents. first: Category:Prehistoric pigs and last: Gösta Löfgren +[2018-02-13T00:39:26.317] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Rajshahi District and last: Croft, David +[2018-02-13T00:39:26.317] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:39:26.356] [INFO] cheese - inserting 1000 documents. first: Hessen (ship) and last: Lassik language +[2018-02-13T00:39:26.362] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:39:26.383] [INFO] cheese - inserting 1000 documents. first: Ramón calderon and last: Headless drummer +[2018-02-13T00:39:26.405] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:39:26.434] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:39:26.499] [INFO] cheese - inserting 1000 documents. first: Debary, Florida and last: Rrrrrrr!! +[2018-02-13T00:39:26.533] [INFO] cheese - inserting 1000 documents. first: Cauchy–Peano theorem and last: McKim +[2018-02-13T00:39:26.562] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:39:26.605] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:39:26.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stagg Marching Chargers and last: Template:Music-genre-stub +[2018-02-13T00:39:26.758] [INFO] cheese - inserting 1000 documents. first: Eladha, Hora Tu Fotos and last: Gmina Pabianice +[2018-02-13T00:39:26.767] [INFO] cheese - inserting 1000 documents. first: Crosbie, David and last: Wikipedia:Articles for deletion/MobiKwik +[2018-02-13T00:39:26.810] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:39:26.814] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:39:26.826] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:39:26.834] [INFO] cheese - inserting 1000 documents. first: Alexander Basilaia and last: Tim Montez +[2018-02-13T00:39:26.865] [INFO] cheese - inserting 1000 documents. first: Nanjapur, Ranga Reddy district and last: Bocicau +[2018-02-13T00:39:26.886] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:39:26.891] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:39:26.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Siren Song (Erasure song) and last: Category:765 establishments +[2018-02-13T00:39:26.996] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:39:27.043] [INFO] cheese - inserting 1000 documents. first: Cvetan Čurlinov and last: Valkas novads +[2018-02-13T00:39:27.086] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:39:27.222] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Simplilearn and last: Caudron-Renault CR.770 Cyclone +[2018-02-13T00:39:27.253] [INFO] cheese - inserting 1000 documents. first: Dr. Francis Kallarakal and last: RdRand +[2018-02-13T00:39:27.267] [INFO] cheese - inserting 1000 documents. first: 3 (Firehouse album) and last: Template:Kępno County +[2018-02-13T00:39:27.349] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:39:27.359] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:39:27.365] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:39:27.346] [INFO] cheese - inserting 1000 documents. first: Template:Brook Benton and last: Category:1889 establishments in Ohio +[2018-02-13T00:39:27.500] [INFO] cheese - inserting 1000 documents. first: Template:Musical-instrument-stub and last: Jeff Tedford +[2018-02-13T00:39:27.505] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:39:27.575] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:39:27.582] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Boone County, Missouri and last: Template:Fb competition 2009-10 WNLD1 +[2018-02-13T00:39:27.674] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:39:27.703] [INFO] cheese - inserting 1000 documents. first: Raad-1 / Thunder 1 Artillery and last: Siege of Boonesborough +[2018-02-13T00:39:27.798] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:39:27.863] [INFO] cheese - inserting 1000 documents. first: Pavel Štěpánek and last: Category:Contemporary art magazines +[2018-02-13T00:39:27.908] [INFO] cheese - inserting 1000 documents. first: File:JayIsaac2016.jpeg and last: Telle mère, telle fille +[2018-02-13T00:39:27.913] [INFO] cheese - inserting 1000 documents. first: 2081: A Hopeful View of the Human Future and last: Leandro and Leonardo +[2018-02-13T00:39:27.921] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:39:27.960] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:39:27.972] [INFO] cheese - inserting 1000 documents. first: List of national parks of Malawi and last: The Cord of Life +[2018-02-13T00:39:27.973] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:39:28.049] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:39:28.188] [INFO] cheese - inserting 1000 documents. first: Orion Media and last: Longfin lizardfish +[2018-02-13T00:39:28.193] [INFO] cheese - inserting 1000 documents. first: Alan Erasmus and last: William Henry Cavendish Bentinck +[2018-02-13T00:39:28.259] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:39:28.262] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:39:28.280] [INFO] cheese - inserting 1000 documents. first: Asian pacific american history month and last: The Women's History of the World (book) +[2018-02-13T00:39:28.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/tsogem.com and last: Template:S-line/RB-Hesse right/36 +[2018-02-13T00:39:28.377] [INFO] cheese - inserting 1000 documents. first: Bancroft, Edward and last: File:Lady Be Good For Ella.jpg +[2018-02-13T00:39:28.428] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:39:28.453] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:39:28.483] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:39:28.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Barbarajohnson1/Archive and last: Education, Education, Education and War +[2018-02-13T00:39:28.698] [INFO] cheese - inserting 1000 documents. first: Category:Shopping malls in San Antonio and last: Yemen at the Olympics +[2018-02-13T00:39:28.755] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:39:28.792] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:39:28.909] [INFO] cheese - inserting 1000 documents. first: Sea of Love (Fly to the Sky album) and last: Template:Wikiproject China +[2018-02-13T00:39:29.027] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:39:29.058] [INFO] cheese - inserting 1000 documents. first: Wikipedia:FOSS and last: Manuela Campanelli (scientist) +[2018-02-13T00:39:29.129] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:39:29.142] [INFO] cheese - inserting 1000 documents. first: Bantu Education Act, 1953 and last: William Linn +[2018-02-13T00:39:29.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jamie MacMillan and last: Ay, Jalisco no te rajes! +[2018-02-13T00:39:29.198] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:39:29.224] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T00:39:29.247] [INFO] cheese - inserting 1000 documents. first: Dada Kondke and last: Single-tier municipalities +[2018-02-13T00:39:29.308] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T00:39:29.405] [INFO] cheese - inserting 1000 documents. first: Category:Bodies of water of Susquehanna County, Pennsylvania and last: Wikipedia:WikiProject Spam/Local/books.google.bg +[2018-02-13T00:39:29.424] [INFO] cheese - inserting 1000 documents. first: John B. Stephenson and last: Roswell H. Lamson +[2018-02-13T00:39:29.448] [INFO] cheese - inserting 1000 documents. first: Category:Road-Sea Southampton F.C. players and last: Protected battery +[2018-02-13T00:39:29.456] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:39:29.469] [INFO] cheese - inserting 1000 documents. first: Category:Uzbekistani comedians and last: NK Interblok Ljubljana +[2018-02-13T00:39:29.479] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:39:29.482] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:39:29.537] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:39:29.598] [INFO] cheese - inserting 1000 documents. first: Cierva Autogiro Company, Ltd. and last: Wheel of Fire (Babylon 5) +[2018-02-13T00:39:29.612] [INFO] cheese - inserting 1000 documents. first: Template:AncientRome-stub and last: Ancro +[2018-02-13T00:39:29.635] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:39:29.653] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:39:29.719] [INFO] cheese - inserting 1000 documents. first: Marianna Historic District (Marianna, Florida) and last: Wikipedia:Articles for deletion/Baker (TV series) +[2018-02-13T00:39:29.769] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:39:29.841] [INFO] cheese - inserting 1000 documents. first: The Wrong Man (disambiguation) and last: File:Bw frankenstein.jpg +[2018-02-13T00:39:29.883] [INFO] cheese - inserting 1000 documents. first: Dingy Scrub-hopper and last: Richardson's moray eel +[2018-02-13T00:39:29.886] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:39:29.921] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:39:29.939] [INFO] cheese - inserting 1000 documents. first: Asian giant toad and last: Vijayan Nair +[2018-02-13T00:39:29.954] [INFO] cheese - inserting 1000 documents. first: Mu Les and last: Bradford Park Avenue AFC +[2018-02-13T00:39:29.981] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:39:29.996] [INFO] cheese - inserting 1000 documents. first: 葉亞來 and last: Glorious Lady +[2018-02-13T00:39:30.015] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:39:30.137] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:39:30.256] [INFO] cheese - inserting 1000 documents. first: Vezina and last: The Capitols +[2018-02-13T00:39:30.353] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:39:30.460] [INFO] cheese - inserting 1000 documents. first: Bradford Town F C and last: Mary Pickford films +[2018-02-13T00:39:30.494] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:39:30.498] [INFO] cheese - inserting 1000 documents. first: Category:Monuments and memorials on the National Register of Historic Places in Maryland and last: Semen Makovich +[2018-02-13T00:39:30.506] [INFO] cheese - inserting 1000 documents. first: Post & Mail Tower and last: 2006 U.S. heat wave +[2018-02-13T00:39:30.563] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:39:30.596] [INFO] cheese - inserting 1000 documents. first: 2006–07 Uganda Super League and last: Zeppelin LZ 2 +[2018-02-13T00:39:30.610] [INFO] cheese - inserting 1000 documents. first: Round Lick and last: Wikipedia:Featured picture candidates/File:Musca domestica Portrait.jpg +[2018-02-13T00:39:30.642] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T00:39:30.661] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:39:30.696] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:39:30.835] [INFO] cheese - inserting 1000 documents. first: Darlenis Obregon Mulato and last: Sığracık, Emirdağ +[2018-02-13T00:39:30.887] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:39:31.037] [INFO] cheese - inserting 1000 documents. first: Category:Serbian female javelin throwers and last: Category:Olympic bronze medalists for the United States in tug of war +[2018-02-13T00:39:31.091] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:39:31.114] [INFO] cheese - inserting 1000 documents. first: Gdamm and last: History of east carolina university +[2018-02-13T00:39:31.210] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:39:31.361] [INFO] cheese - inserting 1000 documents. first: Category:Class-II stars and last: Tekeze River +[2018-02-13T00:39:31.367] [INFO] cheese - inserting 1000 documents. first: Rha and last: Sayers 40, Inc. +[2018-02-13T00:39:31.407] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:39:31.418] [INFO] cheese - inserting 1000 documents. first: L. Birge Harrison and last: Diana Fowley +[2018-02-13T00:39:31.454] [INFO] cheese - inserting 1000 documents. first: Zeppelin LZ 3 and last: Iglesia de la Trinidad +[2018-02-13T00:39:31.455] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T00:39:31.489] [INFO] cheese - inserting 1000 documents. first: History of east finchley and last: Clay research award +[2018-02-13T00:39:31.495] [INFO] cheese - inserting 1000 documents. first: Soğukkuyu, Emirdağ and last: Cuckquean +[2018-02-13T00:39:31.501] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:39:31.521] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:39:31.526] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:39:31.595] [INFO] cheese - inserting 1000 documents. first: Punto Chapultepec and last: AELS +[2018-02-13T00:39:31.616] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:39:31.645] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:39:31.833] [INFO] cheese - inserting 1000 documents. first: Sword Quest and last: Home of the youth +[2018-02-13T00:39:31.855] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:39:31.939] [INFO] cheese - inserting 1000 documents. first: Buddhism in Korea and last: Paul Robeson, The Soviet Union and Communism +[2018-02-13T00:39:31.982] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:39:32.026] [INFO] cheese - inserting 1000 documents. first: Chanel the cheetah girl and last: Phillips v. AWH +[2018-02-13T00:39:32.054] [INFO] cheese - inserting 1000 documents. first: Live at Last and last: Metamorfosi +[2018-02-13T00:39:32.055] [INFO] cheese - inserting 1000 documents. first: Home ownership in australia and last: House of large sizes +[2018-02-13T00:39:32.057] [INFO] cheese - inserting 1000 documents. first: Golden Age of Aviation and last: Category:Democratic People's Front politicians +[2018-02-13T00:39:32.070] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:39:32.073] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:39:32.090] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Truthserum213 and last: Kathrin Marchand +[2018-02-13T00:39:32.103] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:39:32.125] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:39:32.168] [INFO] cheese - inserting 1000 documents. first: Schweizer, Peter and last: Wikipedia:Articles for deletion/Merdeka Plaza +[2018-02-13T00:39:32.170] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:39:32.217] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:39:32.256] [INFO] cheese - inserting 1000 documents. first: House of leiningen and last: Morne Tranquille +[2018-02-13T00:39:32.287] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:39:32.356] [INFO] cheese - inserting 1000 documents. first: Radiative rate and last: 1974 Oran Park round of the Tasman Series +[2018-02-13T00:39:32.420] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:39:32.504] [INFO] cheese - inserting 1000 documents. first: Aletta Jorritsma and last: Zaidatul Husniah Zulkifli +[2018-02-13T00:39:32.529] [INFO] cheese - inserting 1000 documents. first: The Late, Late Show (album) and last: For the Term of His Natural Life (1908 film) +[2018-02-13T00:39:32.529] [INFO] cheese - inserting 1000 documents. first: Category:Democratic People's Front and last: Book:Ray Liotta +[2018-02-13T00:39:32.558] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:39:32.602] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:39:32.607] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:39:32.641] [INFO] cheese - inserting 1000 documents. first: Col. G.S. Dhillon and last: Kyoto Palace +[2018-02-13T00:39:32.715] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:39:32.767] [INFO] cheese - inserting 1000 documents. first: Huwal of the west welsh and last: Splitter (geometry) +[2018-02-13T00:39:32.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Crowne Plaza Riverside and last: Elbląg Voivodship +[2018-02-13T00:39:32.820] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:39:32.861] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:39:32.885] [INFO] cheese - inserting 1000 documents. first: Alberta Highway 549 and last: Ganj Golai +[2018-02-13T00:39:32.952] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:39:32.960] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Israel at the 1950 FIFA World Cup and last: James McEwan (disambiguation) +[2018-02-13T00:39:33.007] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/heatsinkcalculator.com and last: Vandazhi (disambiguation) +[2018-02-13T00:39:33.027] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:39:33.058] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:39:33.124] [INFO] cheese - inserting 1000 documents. first: MiR-138 and last: 1953 Copa del Generalísimo +[2018-02-13T00:39:33.164] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:39:33.373] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/E-flite Blade CX and last: N95-2 +[2018-02-13T00:39:33.413] [INFO] cheese - inserting 1000 documents. first: Cape Verdean Italian and last: Morašice (Znojmo District) +[2018-02-13T00:39:33.420] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:39:33.425] [INFO] cheese - inserting 1000 documents. first: File:Buffalo Dreams Promo.jpg and last: She's A Thief +[2018-02-13T00:39:33.434] [INFO] cheese - inserting 1000 documents. first: The Scarecrow and last: Category:316 BC births +[2018-02-13T00:39:33.440] [INFO] cheese - inserting 1000 documents. first: Victorian Railways box and louvre vans (disambiguation) and last: Stokkseyrar-Dísa +[2018-02-13T00:39:33.447] [INFO] cheese - inserting 1000 documents. first: Category:Military units and formations of British Leeward Islands in World War II and last: Enkh-Amar Kharkhuu +[2018-02-13T00:39:33.457] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:39:33.489] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:39:33.492] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:39:33.495] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:39:33.523] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:39:33.616] [INFO] cheese - inserting 1000 documents. first: Lichas (Spartan) and last: Wikipedia:Sockpuppet investigations/Muhammadhamidrafique/Archive +[2018-02-13T00:39:33.655] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:39:33.780] [INFO] cheese - inserting 1000 documents. first: T. V. Sasivarna Thevar and last: Wikipedia:WikiProject Spam/LinkReports/grottegruppa.no +[2018-02-13T00:39:33.799] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/topper10.net and last: Seftan Delmer +[2018-02-13T00:39:33.835] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:39:33.839] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:39:33.885] [INFO] cheese - inserting 1000 documents. first: Amitié Stadium and last: Necrotizing soft tissue infection +[2018-02-13T00:39:33.918] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:39:33.952] [INFO] cheese - inserting 1000 documents. first: Semgallen and last: Parisian Radicalism +[2018-02-13T00:39:33.973] [INFO] cheese - inserting 1000 documents. first: Quake3 and last: The Battle of Brunanburh +[2018-02-13T00:39:34.000] [INFO] cheese - inserting 1000 documents. first: Thordis Markusdottir and last: Qaleh Sareban +[2018-02-13T00:39:34.006] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:39:34.018] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/A2adams/Archive and last: Monday's Rain +[2018-02-13T00:39:34.039] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:39:34.057] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:39:34.063] [INFO] cheese - inserting 1000 documents. first: CHYKN and last: Category:World Rally Championship seasons +[2018-02-13T00:39:34.093] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:39:34.097] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:39:34.228] [INFO] cheese - inserting 1000 documents. first: Thomas St George McCarthy Cup and last: Geoff Schmidt +[2018-02-13T00:39:34.259] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:39:34.261] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jedi Temple and last: The Opening of the First Parliament +[2018-02-13T00:39:34.335] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:39:34.359] [INFO] cheese - inserting 1000 documents. first: City of Richmond v. J. A. Croson Co. and last: Informa Maritime & Transport +[2018-02-13T00:39:34.433] [INFO] cheese - inserting 1000 documents. first: Qomshan and last: Angelicaut +[2018-02-13T00:39:34.462] [INFO] cheese - inserting 1000 documents. first: XHNOA-TV and last: Waitahuna +[2018-02-13T00:39:34.502] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:39:34.592] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:39:34.630] [INFO] cheese - inserting 1000 documents. first: Agda (theorem prover) and last: Queens Hotel (Southsea) +[2018-02-13T00:39:34.642] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:39:34.719] [INFO] cheese - inserting 1000 documents. first: The Cattle Raid of Cooley and last: Metrovick +[2018-02-13T00:39:34.769] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:39:34.800] [INFO] cheese - inserting 1000 documents. first: Eps1.6 v1ew-s0urce.flv and last: Yoganidrasana +[2018-02-13T00:39:34.815] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:39:34.848] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:39:34.910] [INFO] cheese - inserting 1000 documents. first: D C hand dance and last: DW Griffith filmography +[2018-02-13T00:39:34.945] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:39:35.005] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/St John's CofE Primary School (2nd nomination) and last: Plan to kidnap Pius XII +[2018-02-13T00:39:35.124] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:39:35.196] [INFO] cheese - inserting 1000 documents. first: Jacopo Borbone and last: Research Professor +[2018-02-13T00:39:35.216] [INFO] cheese - inserting 1000 documents. first: Frankfort, New York and last: Category:Iranian athletes +[2018-02-13T00:39:35.241] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:39:35.256] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:39:35.270] [INFO] cheese - inserting 1000 documents. first: Thermo-Gel and last: Rein-rain merger +[2018-02-13T00:39:35.282] [INFO] cheese - inserting 1000 documents. first: DW Harvey and last: PA 894 +[2018-02-13T00:39:35.314] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:39:35.316] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:39:35.457] [INFO] cheese - inserting 1000 documents. first: Nancy Ammerman and last: Grand Mixer DXT +[2018-02-13T00:39:35.496] [INFO] cheese - inserting 1000 documents. first: Julián Ayala and last: Ágnes Ferencz +[2018-02-13T00:39:35.507] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:39:35.513] [INFO] cheese - inserting 1000 documents. first: McCoy Tyner Music and last: Template:Infobox LDS Temple +[2018-02-13T00:39:35.553] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:39:35.565] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:39:35.580] [INFO] cheese - inserting 1000 documents. first: Cranmoor and last: Hashiba Hidetsugu +[2018-02-13T00:39:35.602] [INFO] cheese - inserting 1000 documents. first: Audrey (Neighbours) and last: Vajra (King Aniruddha's Son) +[2018-02-13T00:39:35.619] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:39:35.640] [INFO] cheese - inserting 1000 documents. first: Toe-tow merger and last: Pixner +[2018-02-13T00:39:35.651] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:39:35.695] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:39:35.901] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anton (Bubbe's Boarding House) and last: Opera (band) +[2018-02-13T00:39:35.932] [INFO] cheese - inserting 1000 documents. first: V/Line P class and last: 2008 in heavy metal music +[2018-02-13T00:39:35.934] [INFO] cheese - inserting 1000 documents. first: Černov and last: Category:Seleucid Empire successor states +[2018-02-13T00:39:35.944] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:39:35.969] [INFO] cheese - inserting 1000 documents. first: File:Smokey Robinson - Big Time album cover.jpg and last: Polokwane City F.C. +[2018-02-13T00:39:35.974] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:39:36.004] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:39:36.026] [INFO] cheese - inserting 1000 documents. first: The Country Code and last: Crush by elephant +[2018-02-13T00:39:36.043] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:39:36.065] [INFO] cheese - inserting 1000 documents. first: North Kawartha, Ontario and last: Virginia Furnace +[2018-02-13T00:39:36.141] [INFO] cheese - inserting 1000 documents. first: Panj, Iran and last: Nowghan Sofla +[2018-02-13T00:39:36.191] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:39:36.209] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:39:36.248] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:39:36.450] [INFO] cheese - inserting 1000 documents. first: Rohini Sector 18, 19 metro station and last: Template:Australia-weightlifting-bio-stub +[2018-02-13T00:39:36.532] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:39:36.596] [INFO] cheese - inserting 1000 documents. first: Symonds Yat railway station and last: List of Aria (manga) soundtracks +[2018-02-13T00:39:36.677] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:39:36.765] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2007 December 28 and last: Quiet company +[2018-02-13T00:39:36.800] [INFO] cheese - inserting 1000 documents. first: Church of la Asunción (Almansa) and last: File:Grip Tape Further.jpg +[2018-02-13T00:39:36.837] [INFO] cheese - inserting 1000 documents. first: Ellesmere Rural and last: Escape pod podcast +[2018-02-13T00:39:36.866] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:39:36.876] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:39:36.959] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:39:36.978] [INFO] cheese - inserting 1000 documents. first: Lucio Schiavon and last: Heliconia automatia +[2018-02-13T00:39:37.017] [INFO] cheese - inserting 1000 documents. first: John Hudson (classicist) and last: Werner Stocker (actor) +[2018-02-13T00:39:37.073] [INFO] cheese - inserting 1000 documents. first: Category:São Tomé and Príncipe long-distance runners and last: C. J. Ham +[2018-02-13T00:39:37.074] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:39:37.099] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:39:37.188] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:39:37.276] [INFO] cheese - inserting 1000 documents. first: Eiichirô Mishima and last: Category:Batavia +[2018-02-13T00:39:37.320] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:39:37.379] [INFO] cheese - inserting 1000 documents. first: JACL (disambiguation) and last: Category:Lists of surviving military aircraft +[2018-02-13T00:39:37.442] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:39:37.489] [INFO] cheese - inserting 1000 documents. first: File:CollinsKellewayAndrews.jpg and last: Isle of Valen +[2018-02-13T00:39:37.544] [INFO] cheese - inserting 1000 documents. first: Eueides egeriformis and last: Wikipedia:Articles for deletion/Forgotten Kingdom Series +[2018-02-13T00:39:37.552] [INFO] cheese - inserting 1000 documents. first: Zombie knife and last: Thakins and the Struggle for National Independence (1930-1948) +[2018-02-13T00:39:37.554] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:39:37.569] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pirates/Managers and ownership and last: Enterprise, Trinidad and Tobago +[2018-02-13T00:39:37.635] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:39:37.676] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:39:37.704] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:39:37.791] [INFO] cheese - inserting 1000 documents. first: Ernest Brown (dancer) and last: Paramount-Publix Corporation +[2018-02-13T00:39:37.810] [INFO] cheese - inserting 1000 documents. first: Toghril Beg and last: Garbage bin +[2018-02-13T00:39:37.838] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:39:37.895] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:39:37.901] [INFO] cheese - inserting 1000 documents. first: Vasovist and last: Einstein's gift +[2018-02-13T00:39:38.116] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:39:38.267] [INFO] cheese - inserting 1000 documents. first: List of Guardians in a Series of Unfortunate Events and last: Tehachapi, Ca +[2018-02-13T00:39:38.358] [INFO] cheese - inserting 1000 documents. first: The Lion's Parasites and last: Wikipedia:Articles for deletion/Kevin Casha +[2018-02-13T00:39:38.357] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:39:38.384] [INFO] cheese - inserting 1000 documents. first: Dumbo (2017 film) and last: Rick Snyder (psychologist) +[2018-02-13T00:39:38.400] [INFO] cheese - inserting 1000 documents. first: C'est Toi (It's You) and last: Drahabuzh River +[2018-02-13T00:39:38.447] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:39:38.504] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:39:38.511] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T00:39:38.567] [INFO] cheese - inserting 1000 documents. first: Category:Lafayette and last: The Outer Gate +[2018-02-13T00:39:38.627] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:39:38.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2011 September 9 and last: Xen hypervisor +[2018-02-13T00:39:38.797] [INFO] cheese - inserting 1000 documents. first: North Minch and last: Canton of Appenzell Ausserrhoden +[2018-02-13T00:39:38.816] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:39:38.862] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T00:39:38.898] [INFO] cheese - inserting 1000 documents. first: Tehama, Ca and last: Gerardo Nunez +[2018-02-13T00:39:38.912] [INFO] cheese - inserting 1000 documents. first: Peru national under-16 and under-17 basketball team and last: In the Now +[2018-02-13T00:39:38.958] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:39:38.976] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:39:39.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Armenia/right panel and last: Kokang Special Region +[2018-02-13T00:39:39.066] [INFO] cheese - inserting 1000 documents. first: Ivan Jurić and last: Estados Unidos de América +[2018-02-13T00:39:39.087] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:39:39.114] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:39:39.170] [INFO] cheese - inserting 1000 documents. first: Category:Plays by George Wilkins and last: 20,000 Leagues Across the Land +[2018-02-13T00:39:39.215] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:39:39.219] [INFO] cheese - inserting 1000 documents. first: Aiesec Waikato and last: Fezakinumab +[2018-02-13T00:39:39.268] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:39:39.383] [INFO] cheese - inserting 1000 documents. first: Old Feijó Airport and last: Category:1991 in Italian cinema +[2018-02-13T00:39:39.395] [INFO] cheese - inserting 1000 documents. first: Portal:City of Bankstown/Selected article/2 and last: Holy Assumption of the Virgin Mary Church +[2018-02-13T00:39:39.426] [INFO] cheese - inserting 1000 documents. first: Bühler (disambiguation) and last: B. Brian Blair +[2018-02-13T00:39:39.446] [INFO] cheese - inserting 1000 documents. first: Loyal Irish Union and last: Rock-afire +[2018-02-13T00:39:39.446] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:39:39.477] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:39:39.505] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:39:39.570] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:39:39.648] [INFO] cheese - inserting 1000 documents. first: Trafford Ice Dome and last: KT Kumho Rent A Car +[2018-02-13T00:39:39.746] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:39:39.860] [INFO] cheese - inserting 1000 documents. first: Saturday's Children and last: File:Tangent Online logo.png +[2018-02-13T00:39:40.010] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:39:40.065] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/karoo-southafrica.co.za and last: Darcheh Abed +[2018-02-13T00:39:40.168] [INFO] cheese - inserting 1000 documents. first: West Crossett, Ar and last: Wikipedia:WikiProject Military history/Peer review/United States Naval Special Warfare Command +[2018-02-13T00:39:40.216] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T00:39:40.252] [INFO] cheese - inserting 1000 documents. first: Category:1992 in Italian cinema and last: Spacer (song) +[2018-02-13T00:39:40.278] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:39:40.295] [INFO] cheese - inserting 1000 documents. first: Category:Print media people from Liverpool and last: 2009 Nordic Trophy (Swedish tournament) +[2018-02-13T00:39:40.342] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T00:39:40.378] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T00:39:40.565] [INFO] cheese - inserting 1000 documents. first: Halton Moor and last: Daniel Robles +[2018-02-13T00:39:40.573] [INFO] cheese - inserting 1000 documents. first: Fathen and last: Cathedral of the Guardian Angel +[2018-02-13T00:39:40.632] [INFO] cheese - batch complete in: 1.062 secs +[2018-02-13T00:39:40.645] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T00:39:40.719] [INFO] cheese - inserting 1000 documents. first: Moshe Taube and last: Edward Holl +[2018-02-13T00:39:40.813] [INFO] cheese - inserting 1000 documents. first: Category:Buddhist monasteries in Canada and last: EC Smith House +[2018-02-13T00:39:40.826] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:39:40.837] [INFO] cheese - inserting 1000 documents. first: Darcheh-ye Abed and last: List of 2014 Indian Premier League personnel changes +[2018-02-13T00:39:40.871] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:39:40.878] [INFO] cheese - inserting 1000 documents. first: File:Gymnastics (Trampoline), London 2012.png and last: Category:Eastern Orthodox monasteries in Croatia +[2018-02-13T00:39:40.932] [INFO] cheese - inserting 1000 documents. first: Waste framework directive and last: Catacaustic +[2018-02-13T00:39:40.951] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:39:40.974] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:39:40.999] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:39:41.194] [INFO] cheese - inserting 1000 documents. first: DMAX (UK TV channel) and last: Wikipedia:Articles for deletion/Anneberg Motocross Track +[2018-02-13T00:39:41.251] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:39:41.280] [INFO] cheese - inserting 1000 documents. first: Siege of the North, Part II and last: Soran (region) +[2018-02-13T00:39:41.351] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:39:41.415] [INFO] cheese - inserting 1000 documents. first: On Dreams and last: Conan oBrien +[2018-02-13T00:39:41.426] [INFO] cheese - inserting 1000 documents. first: 2016 Hypo-Meeting and last: File:Bedevil Soundtrack Album Cover.jpg +[2018-02-13T00:39:41.432] [INFO] cheese - inserting 1000 documents. first: Andraca gongshanensis and last: Dorothy Y. Ko +[2018-02-13T00:39:41.478] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:39:41.490] [INFO] cheese - inserting 1000 documents. first: List of Dungeons & Dragons nonhuman deities and last: US Alençon 61 +[2018-02-13T00:39:41.497] [INFO] cheese - inserting 1000 documents. first: Am Rong and last: Casa air service +[2018-02-13T00:39:41.500] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T00:39:41.508] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:39:41.590] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:39:41.630] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:39:41.764] [INFO] cheese - inserting 1000 documents. first: F G Bailey and last: Anthea Turner: Perfect Housewife +[2018-02-13T00:39:41.810] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:39:42.131] [INFO] cheese - inserting 1000 documents. first: Plexiform neurofibroma and last: Wikipedia:Miscellany for deletion/Wikipedia:Community Portal/Redesign/Things to do +[2018-02-13T00:39:42.206] [INFO] cheese - inserting 1000 documents. first: Côte d'Or (brand) and last: Wikipedia:Articles for deletion/The Golden Truth +[2018-02-13T00:39:42.215] [INFO] cheese - inserting 1000 documents. first: Norse-Gaelic and last: WXBC (FM) +[2018-02-13T00:39:42.224] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Scotland articles needing expert attention and last: Journal of the American Osteopathic Association +[2018-02-13T00:39:42.224] [INFO] cheese - inserting 1000 documents. first: File:Pierre Victor Auger.jpg and last: Portal:Weather/Selected article/24 +[2018-02-13T00:39:42.228] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:39:42.251] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:39:42.269] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:39:42.281] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:39:42.307] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:39:42.333] [INFO] cheese - inserting 1000 documents. first: Francis Wegg-Prosser and last: Nepali (ethnicity) +[2018-02-13T00:39:42.426] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T00:39:42.589] [INFO] cheese - inserting 1000 documents. first: Bart Verschoor and last: Manually coded +[2018-02-13T00:39:42.648] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T00:39:42.653] [INFO] cheese - inserting 1000 documents. first: Beamish stout and last: Mooresville, Al +[2018-02-13T00:39:42.688] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:39:42.729] [INFO] cheese - inserting 1000 documents. first: Category:Retail companies of Mexico and last: University Station (MTR proposed) +[2018-02-13T00:39:42.761] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Community Portal/Redesign/Wikipedia by department and last: Milorad Miskovitch +[2018-02-13T00:39:42.763] [INFO] cheese - inserting 1000 documents. first: Saint Joseph's College (Kentucky) and last: Concrete (Tom Odell song) +[2018-02-13T00:39:42.771] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:39:42.803] [INFO] cheese - inserting 1000 documents. first: Chick Evans (baseball) and last: Wikipedia:WikiProject Spam/Local/windmill.org.au +[2018-02-13T00:39:42.813] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:39:42.823] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:39:42.884] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:39:42.970] [INFO] cheese - inserting 1000 documents. first: KVAN (AM) and last: U.S. Route 176 in South Carolina +[2018-02-13T00:39:42.994] [INFO] cheese - inserting 1000 documents. first: In Catilinam and last: Dharamasala +[2018-02-13T00:39:43.013] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:39:43.061] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:39:43.154] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Rhinella and last: Yanez's Tree Iguana +[2018-02-13T00:39:43.186] [INFO] cheese - inserting 1000 documents. first: Hasetsukabe no Koharumaru and last: 140th Fighter Group +[2018-02-13T00:39:43.215] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:39:43.216] [INFO] cheese - inserting 1000 documents. first: Echinocereus nivosus and last: Swiss International (badminton) +[2018-02-13T00:39:43.295] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:39:43.304] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:39:43.379] [INFO] cheese - inserting 1000 documents. first: The Final Reunion Tour – Cliff Richard and The Shadows and last: Category:Buildings and structures in Victoria County, Texas +[2018-02-13T00:39:43.381] [INFO] cheese - inserting 1000 documents. first: Mittelrhein (wine region) and last: Wikipedia:Featured picture candidates/Canada goose reflection 03.jpg +[2018-02-13T00:39:43.417] [INFO] cheese - inserting 1000 documents. first: Laari language and last: Final Fantasy X: Original Soundtrack +[2018-02-13T00:39:43.424] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:39:43.452] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:39:43.506] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:39:43.766] [INFO] cheese - inserting 1000 documents. first: 100 new shekel banknote and last: Filipe Baravilala +[2018-02-13T00:39:43.792] [INFO] cheese - inserting 1000 documents. first: Gretna F. C. and last: File:Johnny Powers Toronto.jpeg +[2018-02-13T00:39:43.802] [INFO] cheese - inserting 1000 documents. first: Germanic Neopaganism in Germany and last: Sarcomyces +[2018-02-13T00:39:43.803] [INFO] cheese - inserting 1000 documents. first: Hadley Common and last: The Rough Guide to the Music of Central America +[2018-02-13T00:39:43.804] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:39:43.818] [INFO] cheese - inserting 1000 documents. first: Fist Sized Chunks and last: The Hard Goodbye +[2018-02-13T00:39:43.828] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:39:43.846] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:39:43.863] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:39:43.903] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T00:39:43.935] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Wharton County, Texas and last: Heaven Afrika +[2018-02-13T00:39:43.953] [INFO] cheese - inserting 1000 documents. first: Sunless (song cycle) and last: Fort Pond Bay +[2018-02-13T00:39:43.999] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:39:44.046] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:39:44.224] [INFO] cheese - inserting 1000 documents. first: Category:Women's sports leagues in Belarus and last: Category:Centrism in South America +[2018-02-13T00:39:44.307] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:39:44.309] [INFO] cheese - inserting 1000 documents. first: Philip McLaren and last: Galway Borough by-election, 1906 +[2018-02-13T00:39:44.359] [INFO] cheese - inserting 1000 documents. first: Queen's Cove and last: Template:Gmina Godów +[2018-02-13T00:39:44.362] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:39:44.417] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:39:44.427] [INFO] cheese - inserting 1000 documents. first: Trichohelotium and last: Andy Brooks +[2018-02-13T00:39:44.451] [INFO] cheese - inserting 1000 documents. first: File:Moreseashells.jpg and last: Michael Dinneen +[2018-02-13T00:39:44.491] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:39:44.533] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:39:44.548] [INFO] cheese - inserting 1000 documents. first: Wulfbach and last: Estonia in the Eurovision Song Contest 2012 +[2018-02-13T00:39:44.624] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:39:44.677] [INFO] cheese - inserting 1000 documents. first: Decadic logarithm and last: Akinwale Arobieke +[2018-02-13T00:39:44.705] [INFO] cheese - inserting 1000 documents. first: Category:Belmont High School (Los Angeles, California) alumni and last: Category:United States Football League MVPs +[2018-02-13T00:39:44.734] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:39:44.773] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:39:44.909] [INFO] cheese - inserting 1000 documents. first: Damodar Das Arora and last: Steve Hoffman (American football) +[2018-02-13T00:39:45.014] [INFO] cheese - inserting 1000 documents. first: Fredro family and last: Module:Effective protection level +[2018-02-13T00:39:45.041] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:39:45.076] [INFO] cheese - inserting 1000 documents. first: Baron Wallscourt and last: Triple harp +[2018-02-13T00:39:45.087] [INFO] cheese - inserting 1000 documents. first: Bambarakele Falls and last: Corneo-scleral junction +[2018-02-13T00:39:45.111] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:39:45.138] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:39:45.168] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:39:45.244] [INFO] cheese - inserting 1000 documents. first: File:Beyonce-pulse.jpg and last: Category:School districts in Fisher County, Texas +[2018-02-13T00:39:45.310] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:39:45.429] [INFO] cheese - inserting 1000 documents. first: Tachytes etruscus and last: St. Xavier's Social Service Society +[2018-02-13T00:39:45.472] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:39:45.499] [INFO] cheese - inserting 1000 documents. first: Jim Gilliam and last: Administration on Aging +[2018-02-13T00:39:45.549] [INFO] cheese - inserting 1000 documents. first: Parrett Mountain Airport and last: Ceva, Thomas +[2018-02-13T00:39:45.560] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:39:45.610] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:39:45.632] [INFO] cheese - inserting 1000 documents. first: Those Were the Days (1997 film) and last: Supreme administrative court +[2018-02-13T00:39:45.704] [INFO] cheese - inserting 1000 documents. first: Solar maculopathy and last: Template:Chinese dictionaries +[2018-02-13T00:39:45.713] [INFO] cheese - inserting 1000 documents. first: Category:2014 Sun Belt Conference football season and last: File:Jessore University of Science & Technology logo.jpg +[2018-02-13T00:39:45.715] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:39:45.736] [INFO] cheese - inserting 1000 documents. first: Category:Education in Fisher County, Texas and last: Argentina during World War II +[2018-02-13T00:39:45.772] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:39:45.774] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:39:45.780] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:39:45.906] [INFO] cheese - inserting 1000 documents. first: 2016-17 Liga Națională (women's handball) and last: Category:Requests for badminton peer review +[2018-02-13T00:39:45.985] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:39:46.215] [INFO] cheese - inserting 1000 documents. first: Metal-Forum of Ukraine and last: Rizal Park +[2018-02-13T00:39:46.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Stub types for deletion/Log/2009/August/31 and last: Est Domains +[2018-02-13T00:39:46.257] [INFO] cheese - inserting 1000 documents. first: Navel (Jimsaku album) and last: Take This Waltz (film) +[2018-02-13T00:39:46.273] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:39:46.299] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:39:46.307] [INFO] cheese - inserting 1000 documents. first: File:Mthonjaneni CoA.png and last: Alec Smith (trade unionist) +[2018-02-13T00:39:46.315] [INFO] cheese - inserting 1000 documents. first: Repellent and last: David Lengal +[2018-02-13T00:39:46.347] [INFO] cheese - inserting 1000 documents. first: Harlow Aircraft Company and last: RLS algorithm +[2018-02-13T00:39:46.350] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:39:46.370] [INFO] cheese - inserting 1000 documents. first: Fran Beltrán and last: Nuno Miguel Figueiredo Afonso +[2018-02-13T00:39:46.413] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:39:46.421] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:39:46.437] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:39:46.494] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T00:39:46.916] [INFO] cheese - inserting 1000 documents. first: Category:Russian ultramarathon runners and last: Category:Models of Pakistani descent +[2018-02-13T00:39:47.013] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:39:47.032] [INFO] cheese - inserting 1000 documents. first: 1998–99 Northern Counties East Football League and last: 24-Hours of Reality +[2018-02-13T00:39:47.052] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Audrain County, Missouri and last: Channel Flip +[2018-02-13T00:39:47.190] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:39:47.200] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:39:47.360] [INFO] cheese - inserting 1000 documents. first: Jaime ortega and last: Marie Stubbs +[2018-02-13T00:39:47.399] [INFO] cheese - inserting 1000 documents. first: KLDC and last: Ratio scripta +[2018-02-13T00:39:47.402] [INFO] cheese - inserting 1000 documents. first: Curtiss Speedwing De Luxe B14B and last: Chempaha Perumal +[2018-02-13T00:39:47.424] [INFO] cheese - batch complete in: 1.125 secs +[2018-02-13T00:39:47.439] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T00:39:47.447] [INFO] cheese - inserting 1000 documents. first: Timothy Rimbui and last: Baron Martin +[2018-02-13T00:39:47.480] [INFO] cheese - batch complete in: 1.043 secs +[2018-02-13T00:39:47.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dollie Grissam and last: Template:Fb team Hamble Club +[2018-02-13T00:39:47.573] [INFO] cheese - batch complete in: 1.3 secs +[2018-02-13T00:39:47.601] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:39:47.711] [INFO] cheese - inserting 1000 documents. first: Elachista occidentalis and last: Wikipedia:Articles for deletion/Robots and Racecars +[2018-02-13T00:39:47.718] [INFO] cheese - inserting 1000 documents. first: Matrix geometrical series and last: Mortgage Professionals Canada +[2018-02-13T00:39:47.752] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:39:47.783] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:39:47.988] [INFO] cheese - inserting 1000 documents. first: ISO-IR-99 and last: Paperweight (Feeder song) +[2018-02-13T00:39:47.994] [INFO] cheese - inserting 1000 documents. first: White Hall, Il and last: Gardu River (Sebeș) +[2018-02-13T00:39:48.028] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:39:48.035] [INFO] cheese - inserting 1000 documents. first: Rail Bank and last: File:F1poleposition64.jpg +[2018-02-13T00:39:48.069] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:39:48.126] [INFO] cheese - inserting 1000 documents. first: Ahmed Mohammed Ag Hamani and last: Blog hopping +[2018-02-13T00:39:48.153] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:39:48.215] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:39:48.263] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/saltiresociety.org.uk and last: C28H50 +[2018-02-13T00:39:48.333] [INFO] cheese - inserting 1000 documents. first: Schwarzbach (Günz) and last: Wikipedia:WikiProject Spam/Local/boutoula.net +[2018-02-13T00:39:48.362] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:39:48.508] [INFO] cheese - inserting 1000 documents. first: Infrared-Ultraviolet and last: Category:British male wheelchair racers +[2018-02-13T00:39:48.550] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:39:48.629] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:39:48.678] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/FlightMemory and last: Oppau +[2018-02-13T00:39:48.742] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:39:48.755] [INFO] cheese - inserting 1000 documents. first: Marrakech (atb) and last: Syed Ahmed Khan Bahadur +[2018-02-13T00:39:48.849] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:39:48.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/live-in-costarica.com and last: Antipodia atralba +[2018-02-13T00:39:49.032] [INFO] cheese - inserting 1000 documents. first: Hajat Aqa and last: Pinhole +[2018-02-13T00:39:49.110] [INFO] cheese - inserting 1000 documents. first: Blog hop and last: German 578th Volksgrenadier Division +[2018-02-13T00:39:49.144] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T00:39:49.154] [INFO] cheese - batch complete in: 1.581 secs +[2018-02-13T00:39:49.202] [INFO] cheese - inserting 1000 documents. first: Albert Thoralf Skolem and last: Kronach (White Main) +[2018-02-13T00:39:49.209] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T00:39:49.266] [INFO] cheese - inserting 1000 documents. first: Draft:Progress in Energy and Combustion Science and last: Category:British breaststroke swimmers +[2018-02-13T00:39:49.276] [INFO] cheese - inserting 1000 documents. first: Solbjerg and last: Jean Pelegri +[2018-02-13T00:39:49.277] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:39:49.345] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:39:49.362] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:39:49.527] [INFO] cheese - inserting 1000 documents. first: Category:People from Gatineau and last: File:Splurge album.jpg +[2018-02-13T00:39:49.584] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:39:49.597] [INFO] cheese - inserting 1000 documents. first: HT Muggeridge and last: Historical U. S. Census Totals for Hampshire County, Massachusetts +[2018-02-13T00:39:49.608] [INFO] cheese - inserting 1000 documents. first: Andy Walker (basketball) and last: Wikipedia:WikiProject Spam/Local/chelsio.com +[2018-02-13T00:39:49.630] [INFO] cheese - inserting 1000 documents. first: Motasingha atralba and last: Vice-captain (association football) +[2018-02-13T00:39:49.634] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:39:49.673] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:39:49.707] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:39:49.723] [INFO] cheese - inserting 1000 documents. first: Krumbach (Kammel) and last: File:FETCH! with Ruff Ruffman logo.png +[2018-02-13T00:39:49.760] [INFO] cheese - inserting 1000 documents. first: Donald A. Bryant and last: Stony Creek Railroad +[2018-02-13T00:39:49.772] [INFO] cheese - inserting 1000 documents. first: Category:History of Sheffield and last: IBM WebSphere Application Server +[2018-02-13T00:39:49.786] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:39:49.824] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:39:49.860] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:39:49.899] [INFO] cheese - inserting 1000 documents. first: Historical U. S. Census Totals for Hartford County, Connecticut and last: I. R. S. Records +[2018-02-13T00:39:49.938] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:39:50.089] [INFO] cheese - inserting 1000 documents. first: Order of battle Battle of South Shanxi and last: Certapay +[2018-02-13T00:39:50.214] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:39:50.237] [INFO] cheese - inserting 1000 documents. first: Algar, Cádiz and last: Robincroft +[2018-02-13T00:39:50.294] [INFO] cheese - inserting 1000 documents. first: BAMZOOKi and last: Marat Garayev +[2018-02-13T00:39:50.295] [INFO] cheese - inserting 1000 documents. first: Transtillaspis monoloba and last: Template:Orbital launches in 1970 +[2018-02-13T00:39:50.350] [INFO] cheese - inserting 1000 documents. first: Category:Education in Jefferson County, Texas and last: Category:1938 establishments in Ireland +[2018-02-13T00:39:50.376] [INFO] cheese - inserting 1000 documents. first: I. S. (manga) and last: J G Thirlwell +[2018-02-13T00:39:50.375] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:39:50.384] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:39:50.390] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:39:50.442] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:39:50.451] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:39:50.720] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Niue articles and last: Kitty GYM +[2018-02-13T00:39:50.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michael Le and last: Neil Colville +[2018-02-13T00:39:50.757] [INFO] cheese - inserting 1000 documents. first: Category:Former county seats in Illinois and last: History of Acapulco +[2018-02-13T00:39:50.768] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:39:50.799] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:39:50.836] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T00:39:50.900] [INFO] cheese - inserting 1000 documents. first: Marat Garaev and last: Wikipedia:WikiProject Spam/LinkReports/zptown.at.ua +[2018-02-13T00:39:50.936] [INFO] cheese - inserting 1000 documents. first: Template:WAC baseball teams and last: Chamaenerion fleischeri +[2018-02-13T00:39:50.983] [INFO] cheese - inserting 1000 documents. first: Neyeh and last: Papabuco language +[2018-02-13T00:39:51.014] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:39:51.050] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:39:51.105] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:39:51.305] [INFO] cheese - inserting 1000 documents. first: J.C. Mardrus and last: Template:HolmesCountyOH-school-stub +[2018-02-13T00:39:51.367] [INFO] cheese - inserting 1000 documents. first: Moody field and last: Luigi Gentili +[2018-02-13T00:39:51.372] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:39:51.430] [INFO] cheese - inserting 1000 documents. first: Andor Szanyi and last: Bunchgrass Skipper +[2018-02-13T00:39:51.485] [INFO] cheese - batch complete in: 1.265 secs +[2018-02-13T00:39:51.492] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:39:51.515] [INFO] cheese - inserting 1000 documents. first: FirePro and last: Aeronautical Systems Division +[2018-02-13T00:39:51.562] [INFO] cheese - inserting 1000 documents. first: Category:Italian javelin throwers and last: Category:Organizations established in 1674 +[2018-02-13T00:39:51.576] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:39:51.590] [INFO] cheese - inserting 1000 documents. first: Stanford Center for Internet and Society and last: Hugo DeVries +[2018-02-13T00:39:51.616] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:39:51.664] [INFO] cheese - inserting 1000 documents. first: Texas superconducting supercollider and last: Phragmatobia lymphasea +[2018-02-13T00:39:51.678] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:39:51.730] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:39:52.023] [INFO] cheese - inserting 1000 documents. first: Saint martins church of valjala and last: Roman's saw-scaled viper +[2018-02-13T00:39:52.048] [INFO] cheese - inserting 1000 documents. first: Box Brown and last: Lieutenant Commander +[2018-02-13T00:39:52.057] [INFO] cheese - inserting 1000 documents. first: Template:MuskingumCountyOH-school-stub and last: K-250 +[2018-02-13T00:39:52.082] [INFO] cheese - inserting 1000 documents. first: Draft:Karate Speed Power and last: Putt Putt Travels Through Time +[2018-02-13T00:39:52.197] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:39:52.279] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:39:52.364] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:39:52.375] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T00:39:52.389] [INFO] cheese - inserting 1000 documents. first: Diacrisia ockendeni and last: Court Harwell +[2018-02-13T00:39:52.457] [INFO] cheese - inserting 1000 documents. first: File:Invention of lying ver2.jpg and last: File:Legend of gingko.jpg +[2018-02-13T00:39:52.500] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:39:52.651] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T00:39:52.713] [INFO] cheese - inserting 1000 documents. first: File:Battle of Stones River, Dec 31 1862 to Jan 3, 1863.png and last: Pepsico Inc. +[2018-02-13T00:39:52.928] [INFO] cheese - batch complete in: 1.25 secs +[2018-02-13T00:39:53.051] [INFO] cheese - inserting 1000 documents. first: Ulla Toernes and last: Mirror of the Middle Ages +[2018-02-13T00:39:53.060] [INFO] cheese - inserting 1000 documents. first: Category:2011 establishments in Iran and last: Wikipedia:WikiProject Spam/LinkReports/roberttown.net +[2018-02-13T00:39:53.073] [INFO] cheese - inserting 1000 documents. first: Category:1669 by country and last: Gmina Puck +[2018-02-13T00:39:53.143] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:39:53.156] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:39:53.210] [INFO] cheese - batch complete in: 1.013 secs +[2018-02-13T00:39:53.309] [INFO] cheese - inserting 1000 documents. first: Template:Top Ten Indonesian Badminton Players - Women's doubles and last: Jeong Kwang-il +[2018-02-13T00:39:53.347] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:39:53.350] [INFO] cheese - inserting 1000 documents. first: Allan (name) and last: Wikipedia:Today's featured article/September 9, 2016 +[2018-02-13T00:39:53.382] [INFO] cheese - inserting 1000 documents. first: Category:Intensive care and last: Revolutionary Workers' Party (India) +[2018-02-13T00:39:53.441] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T00:39:53.471] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:39:53.539] [INFO] cheese - inserting 1000 documents. first: John C W Reid and last: 1987 Vuelta a España +[2018-02-13T00:39:53.588] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:39:53.655] [INFO] cheese - inserting 1000 documents. first: File:Journal October.jpg and last: Dioryctria auranticella +[2018-02-13T00:39:53.708] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:39:53.763] [INFO] cheese - inserting 1000 documents. first: Rjr Nabisco Inc. and last: Wh-interrogative +[2018-02-13T00:39:53.764] [INFO] cheese - inserting 1000 documents. first: Bosco verticale and last: File:Fields in Kumarakom.jpg +[2018-02-13T00:39:53.800] [INFO] cheese - inserting 1000 documents. first: Category:People from Tehama County, California and last: Chris Cross Griffin +[2018-02-13T00:39:53.814] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:39:53.836] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:39:53.852] [INFO] cheese - inserting 1000 documents. first: Matias Montinho and last: Wikipedia:Articles for deletion/Musa Paik +[2018-02-13T00:39:53.885] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:39:53.909] [INFO] cheese - inserting 1000 documents. first: DeKalb Taylor Municipal Airport and last: Wally Tattersall +[2018-02-13T00:39:53.915] [INFO] cheese - inserting 1000 documents. first: Epigallocatechin 3-gallate and last: 代々木 +[2018-02-13T00:39:53.915] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:39:53.960] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:39:53.971] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:39:54.134] [INFO] cheese - inserting 1000 documents. first: Djerv (band) and last: Simon Langton (archdeacon) +[2018-02-13T00:39:54.185] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:39:54.303] [INFO] cheese - inserting 1000 documents. first: Category:Algeria at the Winter Olympics by year and last: Tierra del Fuego Igneous and Metamorphic Complex +[2018-02-13T00:39:54.305] [INFO] cheese - inserting 1000 documents. first: Lodewijk van Nassau-Beverweert and last: Template:Alaska Railroad lines +[2018-02-13T00:39:54.317] [INFO] cheese - inserting 1000 documents. first: Christopher Cross Griffin and last: File:Woman Montage (2).jpg +[2018-02-13T00:39:54.335] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:39:54.338] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:39:54.389] [INFO] cheese - inserting 1000 documents. first: Herrick chapman and last: Fruitport Township, Michigan +[2018-02-13T00:39:54.453] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:39:54.473] [INFO] cheese - inserting 1000 documents. first: Attack on Anzac Cove and last: El Menzah Sports Palace +[2018-02-13T00:39:54.506] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:39:54.526] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:39:54.613] [INFO] cheese - inserting 1000 documents. first: Roberto Carretero and last: Rikuu East Line +[2018-02-13T00:39:54.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Theories of the State (Erik Olin Wright)/Students and last: Template:ACTU Secretaries +[2018-02-13T00:39:54.714] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T00:39:54.791] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:39:54.797] [INFO] cheese - inserting 1000 documents. first: Category:Winter Olympics competitors for Romania and last: Yellow Sedge-skipper +[2018-02-13T00:39:54.881] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Republic of Karelia and last: Template:User ca-qc +[2018-02-13T00:39:54.884] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:39:54.944] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:39:55.031] [INFO] cheese - inserting 1000 documents. first: See of Teramo and last: CPA3 +[2018-02-13T00:39:55.091] [INFO] cheese - inserting 1000 documents. first: Coachella Festival and last: Category:Categories requiring diffusion +[2018-02-13T00:39:55.113] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:39:55.155] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:39:55.228] [INFO] cheese - inserting 1000 documents. first: Orson discography and last: Nebby Debbie +[2018-02-13T00:39:55.300] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:39:55.326] [INFO] cheese - inserting 1000 documents. first: Ima Korean and last: Adéane +[2018-02-13T00:39:55.371] [INFO] cheese - inserting 1000 documents. first: Kálmán Széll and last: Netvigator +[2018-02-13T00:39:55.375] [INFO] cheese - inserting 1000 documents. first: Owu kingdom and last: Category:March 2015 events in Asia +[2018-02-13T00:39:55.377] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:39:55.436] [INFO] cheese - inserting 1000 documents. first: Lowey and last: Narrowbar swell shark +[2018-02-13T00:39:55.436] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:39:55.450] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:39:55.491] [INFO] cheese - inserting 1000 documents. first: Category:Sega System 1 games and last: Günter Schubert +[2018-02-13T00:39:55.522] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:39:55.546] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:39:55.562] [INFO] cheese - inserting 1000 documents. first: BioMetals and last: Catberry +[2018-02-13T00:39:55.609] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:39:55.763] [INFO] cheese - inserting 1000 documents. first: Category:Christian publishers in Thailand and last: Otto Busse (resistance fighter) +[2018-02-13T00:39:55.806] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:39:55.828] [INFO] cheese - inserting 1000 documents. first: Category:1628 in music and last: Electric Universe (disambiguation) +[2018-02-13T00:39:55.832] [INFO] cheese - inserting 1000 documents. first: Globalisation and disease and last: Category:People from Ebeleben +[2018-02-13T00:39:55.892] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:39:55.885] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:39:55.944] [INFO] cheese - inserting 1000 documents. first: Yōichi Kotabe and last: Benetton Rugby Treviso +[2018-02-13T00:39:55.948] [INFO] cheese - inserting 1000 documents. first: File:Australia 1 cent 1912 obverse.JPG and last: Theater of Canada +[2018-02-13T00:39:55.977] [INFO] cheese - inserting 1000 documents. first: Willard and His Bowling Trophies: A Perverse Mystery and last: Thomas G. Stemberg +[2018-02-13T00:39:56.002] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:39:56.012] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:39:56.046] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:39:56.054] [INFO] cheese - inserting 1000 documents. first: Caldes de Montbui and last: Outreau affair +[2018-02-13T00:39:56.136] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:39:56.255] [INFO] cheese - inserting 1000 documents. first: Nenmara Vallanghy Vela and last: Innerstaden, Malmö +[2018-02-13T00:39:56.268] [INFO] cheese - inserting 1000 documents. first: Category:Sierra Leonean expatriates in Moldova and last: Bartolomeo Gradenigo (bishop of Brescia) +[2018-02-13T00:39:56.336] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:39:56.332] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:39:56.500] [INFO] cheese - inserting 1000 documents. first: Skoog and last: Wikipedia:Deletion review/Log/2011 September 18 +[2018-02-13T00:39:56.591] [INFO] cheese - inserting 1000 documents. first: Space Dude and last: Ho T'ai-hsueh +[2018-02-13T00:39:56.605] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:39:56.613] [INFO] cheese - inserting 1000 documents. first: Category:Governors of Moscow Oblast and last: Robert Elgin McKinley +[2018-02-13T00:39:56.679] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:39:56.720] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:39:56.770] [INFO] cheese - inserting 1000 documents. first: BRCC3 and last: Brandywine Township, Indiana +[2018-02-13T00:39:56.888] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:39:56.991] [INFO] cheese - inserting 1000 documents. first: The Pilgrim Woman and last: Nightfall of Diamonds +[2018-02-13T00:39:57.049] [INFO] cheese - inserting 1000 documents. first: Yoshimasa Oshima and last: Takashi Sawada +[2018-02-13T00:39:57.071] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T00:39:57.102] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:39:57.137] [INFO] cheese - inserting 1000 documents. first: Category:Recreation by period and last: Bi (cuneiform) +[2018-02-13T00:39:57.188] [INFO] cheese - inserting 1000 documents. first: Gödel's speed-up theorem and last: Wikipedia:WikiProject Spam/LinkReports/hollywoodnorthreport.com +[2018-02-13T00:39:57.245] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:39:57.334] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:39:57.401] [INFO] cheese - inserting 1000 documents. first: Zvi Sherff and last: Moscow, Id +[2018-02-13T00:39:57.487] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:39:57.555] [INFO] cheese - inserting 1000 documents. first: 2016 Wind Energy Holding Bangkok Open – Singles and last: Cinema of Balochistan +[2018-02-13T00:39:57.562] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/CosmicLegg/Archive and last: File:Tetsuo3.jpg +[2018-02-13T00:39:57.575] [INFO] cheese - inserting 1000 documents. first: Li Jié and last: Thornbury Township, PA +[2018-02-13T00:39:57.589] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:39:57.632] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:39:57.653] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:39:57.716] [INFO] cheese - inserting 1000 documents. first: Fresno County Route J1 and last: Larry Bodine (comics) +[2018-02-13T00:39:57.775] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:39:57.777] [INFO] cheese - inserting 1000 documents. first: Strophic song and last: 2006 Pan Pacific Swimming Championships – Men's 200 metre backstroke +[2018-02-13T00:39:57.820] [INFO] cheese - inserting 1000 documents. first: Adhi Sankar and last: Island Resort +[2018-02-13T00:39:57.834] [INFO] cheese - inserting 1000 documents. first: Mountain Home, Id and last: File:BBC Scotland Headquarters.jpg +[2018-02-13T00:39:57.842] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:39:57.878] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:39:57.880] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:39:57.998] [INFO] cheese - inserting 1000 documents. first: Cinema of Khyber Pakhtunkhwa and last: Takamatua +[2018-02-13T00:39:58.015] [INFO] cheese - inserting 1000 documents. first: Thorndale, PA and last: Nakashibetsu, Hokkaido +[2018-02-13T00:39:58.045] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:39:58.051] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:39:58.108] [INFO] cheese - inserting 1000 documents. first: Hörnli and last: Baillie Island, Northwest Territories +[2018-02-13T00:39:58.161] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:39:58.195] [INFO] cheese - inserting 1000 documents. first: Choreographer’s Ball and last: Adopt a user +[2018-02-13T00:39:58.250] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:39:58.262] [INFO] cheese - inserting 1000 documents. first: The Fresh Prince of Belair and last: Wingspan (disambiguation) +[2018-02-13T00:39:58.297] [INFO] cheese - inserting 1000 documents. first: Category:Card games introduced in 1933 and last: Clackline Brook +[2018-02-13T00:39:58.316] [INFO] cheese - inserting 1000 documents. first: Charlie Cowdrey (football coach) and last: H. O. Robinson +[2018-02-13T00:39:58.315] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:39:58.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Haunted seton hill university and last: Starshina +[2018-02-13T00:39:58.367] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:39:58.388] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:39:58.405] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:39:58.451] [INFO] cheese - inserting 1000 documents. first: South Woodslee Ontario and last: Category:LGBT in Saint Helena, Ascension and Tristan da Cunha +[2018-02-13T00:39:58.516] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:39:58.676] [INFO] cheese - inserting 1000 documents. first: Orabindu Benyabhak and last: David McKay (publisher) +[2018-02-13T00:39:58.692] [INFO] cheese - inserting 1000 documents. first: Khowai Government Higher Secondery School and last: Gediminas Bagdonas +[2018-02-13T00:39:58.733] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:39:58.802] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:39:58.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Emma Bossons (2nd nomination) and last: KMXL +[2018-02-13T00:39:58.903] [INFO] cheese - inserting 1000 documents. first: TajAir and last: Category:WikiProject Music genres articles +[2018-02-13T00:39:58.923] [INFO] cheese - inserting 1000 documents. first: Hyde Moves In (That '70s Show) and last: Category:Cryptographic currencies +[2018-02-13T00:39:58.962] [INFO] cheese - inserting 1000 documents. first: Edward Cooke (swimmer) and last: Template:More Galicia/meta/color +[2018-02-13T00:39:58.968] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:39:58.981] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:39:59.019] [INFO] cheese - inserting 1000 documents. first: Venice Beach, CA and last: Voting margin +[2018-02-13T00:39:59.050] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:39:59.067] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:39:59.123] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:39:59.385] [INFO] cheese - inserting 1000 documents. first: Charlotte Police Department and last: Jack Kenny Williams +[2018-02-13T00:39:59.410] [INFO] cheese - inserting 1000 documents. first: Routes of Santiago de Compostela in France and last: Wikipedia:Articles for deletion/Guybrush Threepwood +[2018-02-13T00:39:59.431] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:39:59.481] [INFO] cheese - inserting 1000 documents. first: Lorenzo Cozza and last: CFQM-FM +[2018-02-13T00:39:59.495] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:39:59.533] [INFO] cheese - inserting 1000 documents. first: Hugh Bentley and last: Aruba at the Summer Olympics +[2018-02-13T00:39:59.550] [INFO] cheese - inserting 1000 documents. first: Journal of Graph Theory and last: Jadestone +[2018-02-13T00:39:59.549] [INFO] cheese - inserting 1000 documents. first: Reef the Lost Cauze discography and last: National Children's Book Festival +[2018-02-13T00:39:59.568] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:39:59.594] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:39:59.641] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:39:59.644] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:39:59.776] [INFO] cheese - inserting 1000 documents. first: Longfield railway station and last: California State Highway 275 +[2018-02-13T00:39:59.836] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:39:59.889] [INFO] cheese - inserting 1000 documents. first: Kitti Becséri and last: Wikipedia:Online Ambassadors/Apply/Buggie111 +[2018-02-13T00:39:59.947] [INFO] cheese - inserting 1000 documents. first: Armenia at the Summer Olympics and last: Wolf (Devin Townsend Project song) +[2018-02-13T00:39:59.949] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:39:59.990] [INFO] cheese - inserting 1000 documents. first: Category:People from Orsha and last: Wikipedia:WikiProject Environment/Sustainability task force/to do +[2018-02-13T00:40:00.006] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:40:00.055] [INFO] cheese - inserting 1000 documents. first: 2012 Russian floods and last: Grumman Studios +[2018-02-13T00:40:00.068] [INFO] cheese - inserting 1000 documents. first: KVLY-TV antenna and last: Greg lato +[2018-02-13T00:40:00.108] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:40:00.112] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:40:00.131] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:40:00.188] [INFO] cheese - inserting 1000 documents. first: Winnipeg Route 42 and last: Pyapon Township +[2018-02-13T00:40:00.247] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:40:00.454] [INFO] cheese - inserting 1000 documents. first: Typhoon Sonca (disambiguation) and last: Beke (Warnow) +[2018-02-13T00:40:00.485] [INFO] cheese - inserting 1000 documents. first: California State Highway 299 and last: Higgins, Inc. +[2018-02-13T00:40:00.531] [INFO] cheese - inserting 1000 documents. first: 2016 All-Australian team and last: Josefa Kellner +[2018-02-13T00:40:00.553] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:40:00.585] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:40:00.645] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:40:00.649] [INFO] cheese - inserting 1000 documents. first: File:Gohan, all depictions, 2014.jpg and last: HD 215456 +[2018-02-13T00:40:00.679] [INFO] cheese - inserting 1000 documents. first: PH monitoring and last: Le Plus bel âge +[2018-02-13T00:40:00.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ben Hillier and last: Qaishan Qan +[2018-02-13T00:40:00.729] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:40:00.732] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:40:00.847] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:40:01.205] [INFO] cheese - inserting 1000 documents. first: Discover Odin and last: O.A. Hankner (football coach) +[2018-02-13T00:40:01.261] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/ISuportSchool and last: Clean feed (TV) +[2018-02-13T00:40:01.285] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mccormick.com.au and last: Tierisch Kölsch +[2018-02-13T00:40:01.313] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:40:01.330] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:40:01.378] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T00:40:01.453] [INFO] cheese - inserting 1000 documents. first: Copa São Paulo de Futebol Júnior and last: Powell Crosley +[2018-02-13T00:40:01.463] [INFO] cheese - inserting 1000 documents. first: File:Bergamot preserves.jpg and last: Gelett Burgess Children's Book Awards +[2018-02-13T00:40:01.501] [INFO] cheese - inserting 1000 documents. first: Le Plus Bel Âge and last: LaVonna Martin-Floreal +[2018-02-13T00:40:01.554] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:40:01.566] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T00:40:01.620] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T00:40:01.654] [INFO] cheese - inserting 1000 documents. first: Qaishan Qaghan and last: Template:User UDLSUD +[2018-02-13T00:40:01.765] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T00:40:01.937] [INFO] cheese - inserting 1000 documents. first: Seisonida and last: Category:2017 in Liberia +[2018-02-13T00:40:01.947] [INFO] cheese - inserting 1000 documents. first: Zoo Doctor: My Mom the Vet and last: Milcombe, Cornwall +[2018-02-13T00:40:02.002] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:40:02.016] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:40:02.046] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Hammam ol Din and last: Belizian cuisine +[2018-02-13T00:40:02.049] [INFO] cheese - inserting 1000 documents. first: U.S. Route 730 in Oregon and last: Category:Cooperatives by country +[2018-02-13T00:40:02.116] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:40:02.171] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:40:02.184] [INFO] cheese - inserting 1000 documents. first: Tohou and last: Texas dragging death +[2018-02-13T00:40:02.304] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:40:02.395] [INFO] cheese - inserting 1000 documents. first: File:Toroa Foos.jpg and last: Christos Karypidis +[2018-02-13T00:40:02.541] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:40:02.651] [INFO] cheese - inserting 1000 documents. first: Fiber to the home and last: Leshan buddah +[2018-02-13T00:40:02.681] [INFO] cheese - inserting 1000 documents. first: Millendreath and last: Stephen O’Donnell +[2018-02-13T00:40:02.722] [INFO] cheese - inserting 1000 documents. first: Category:2018 in Belgium and last: St. Anne's Church, Sutton Bonington +[2018-02-13T00:40:02.747] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:40:02.763] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T00:40:02.798] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:40:02.884] [INFO] cheese - inserting 1000 documents. first: Ab Anjir, Darab and last: St George Southwark +[2018-02-13T00:40:02.951] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians in Rochester, New York and last: Gmina Stare Juchy +[2018-02-13T00:40:02.969] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T00:40:02.994] [INFO] cheese - inserting 1000 documents. first: File:FranceO-logo.png and last: Category:Postcode areas covering North East England +[2018-02-13T00:40:03.037] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T00:40:03.070] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:40:03.078] [INFO] cheese - inserting 1000 documents. first: LDV Van and last: Anel Townsend +[2018-02-13T00:40:03.143] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:40:03.166] [INFO] cheese - inserting 1000 documents. first: File:Obviously 5 Believers.ogg and last: Ferries in Istanbul +[2018-02-13T00:40:03.186] [INFO] cheese - inserting 1000 documents. first: Acorn, Pennsylvania and last: Template:Community of Madrid elections +[2018-02-13T00:40:03.206] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:40:03.237] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:40:03.269] [INFO] cheese - inserting 1000 documents. first: Warwick, OK and last: The Red Detachment of Women +[2018-02-13T00:40:03.325] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:40:03.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/webpages.iust.ac.ir and last: 1908-09 Georgetown Hoyas men's basketball team +[2018-02-13T00:40:03.449] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:40:03.467] [INFO] cheese - inserting 1000 documents. first: Rule of the West Bank and East Jerusalem by Jordan and last: Port aux Choix +[2018-02-13T00:40:03.480] [INFO] cheese - inserting 1000 documents. first: Serie B 1974-75 and last: Arthur Alfred Brown +[2018-02-13T00:40:03.522] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:40:03.551] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:40:03.596] [INFO] cheese - inserting 1000 documents. first: Arad, Iran and last: Kings Highway Conservative District +[2018-02-13T00:40:03.610] [INFO] cheese - inserting 1000 documents. first: Category:Chinese children's literature and last: Kazancı, Ermenek +[2018-02-13T00:40:03.612] [INFO] cheese - inserting 1000 documents. first: 2002 Speed World Challenge season and last: Paweł Kaczmarek +[2018-02-13T00:40:03.643] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:40:03.658] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:40:03.660] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:40:03.800] [INFO] cheese - inserting 1000 documents. first: Tom Fenner and last: Shahr Mian-e Sofla +[2018-02-13T00:40:03.853] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:40:03.862] [INFO] cheese - inserting 1000 documents. first: New Wave of New Wave and last: Guided age +[2018-02-13T00:40:03.929] [INFO] cheese - inserting 1000 documents. first: Port aux Choix, Newfoundland and Labrador and last: Jet-Blue Airways +[2018-02-13T00:40:03.952] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:40:04.093] [INFO] cheese - inserting 1000 documents. first: CECIC and last: TruMotion +[2018-02-13T00:40:04.107] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:40:04.131] [INFO] cheese - inserting 1000 documents. first: Category:Noble titles created in 1602 and last: GL261 +[2018-02-13T00:40:04.186] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:40:04.285] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:40:04.326] [INFO] cheese - inserting 1000 documents. first: Jan Klabbers and last: Wikipedia:United States Education Program/Courses/Training Systems/Course description +[2018-02-13T00:40:04.358] [INFO] cheese - inserting 1000 documents. first: Shahr Mian-e Now and last: Hassanabad, Sheshdeh and Qarah Bulaq +[2018-02-13T00:40:04.357] [INFO] cheese - inserting 1000 documents. first: Florida State Road 55 and last: Template:1980s-drama-film-stub +[2018-02-13T00:40:04.390] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:40:04.409] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:40:04.486] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:40:04.688] [INFO] cheese - inserting 1000 documents. first: Anna Walker (television presenter) and last: COE +[2018-02-13T00:40:04.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bible translations into Ladakhi and last: Frutos Bernardo Patón de Ayala +[2018-02-13T00:40:04.728] [INFO] cheese - inserting 1000 documents. first: NH primary and last: Category:Media in Japan by city +[2018-02-13T00:40:04.751] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:40:04.768] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:40:04.819] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:40:04.867] [INFO] cheese - inserting 1000 documents. first: Segunda División 1985-86 and last: The Occidental and Vanguard +[2018-02-13T00:40:04.913] [INFO] cheese - inserting 1000 documents. first: File:Alf Twigg.jpg and last: The golden nymphs +[2018-02-13T00:40:04.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Horror Cinema/Grading and last: Winchester Reading Prize +[2018-02-13T00:40:04.939] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:40:04.969] [INFO] cheese - inserting 1000 documents. first: Steeler (German band) and last: People of Azerbaijan +[2018-02-13T00:40:04.973] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:40:05.005] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:40:05.080] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:40:05.198] [INFO] cheese - inserting 1000 documents. first: Volleyball at the Far Eastern Championship Games and last: Wikipedia:Featured article candidates/Turboliner/archive1 +[2018-02-13T00:40:05.236] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:40:05.332] [INFO] cheese - inserting 1000 documents. first: Mica Paris and last: Buster Rhymes +[2018-02-13T00:40:05.373] [INFO] cheese - inserting 1000 documents. first: 2009-10 CCHL season and last: KCRV (AM) +[2018-02-13T00:40:05.374] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Jieho Lee and last: Jowvakan +[2018-02-13T00:40:05.392] [INFO] cheese - inserting 1000 documents. first: Ajaylat Stadium and last: Wikipedia:WikiProject Spam/LinkReports/cjr.org +[2018-02-13T00:40:05.399] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:40:05.416] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:40:05.416] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:40:05.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/alitave.de and last: Chaluvanahalli +[2018-02-13T00:40:05.503] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:40:05.575] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:40:05.638] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Grace Vanderwaal and last: Category:21st-century Palestinian poets +[2018-02-13T00:40:05.724] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:40:05.882] [INFO] cheese - inserting 1000 documents. first: Rana Kirat Singh and last: Magdalena Borova +[2018-02-13T00:40:06.014] [INFO] cheese - inserting 1000 documents. first: Israeli state and last: Category:Hard bop organists +[2018-02-13T00:40:06.073] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T00:40:06.111] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:40:06.113] [INFO] cheese - inserting 1000 documents. first: Jowkan, Bavanat and last: The Art of the Trio Volume One +[2018-02-13T00:40:06.211] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:40:06.266] [INFO] cheese - inserting 1000 documents. first: The Servant (2010 film) and last: Samuel Verblunsky +[2018-02-13T00:40:06.270] [INFO] cheese - inserting 1000 documents. first: Leo Nielsen and last: LH Aviation +[2018-02-13T00:40:06.337] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:40:06.338] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:40:06.382] [INFO] cheese - inserting 1000 documents. first: Arnside railway station and last: Battle of Swold +[2018-02-13T00:40:06.437] [INFO] cheese - inserting 1000 documents. first: Variella Aprilsasi and last: Wikipedia:Articles for deletion/List of mergers and acquisitions by Amazon +[2018-02-13T00:40:06.486] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T00:40:06.503] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:40:06.696] [INFO] cheese - inserting 1000 documents. first: Cezannian and last: Template:Editnotices/Page/List of people from Maharashtra +[2018-02-13T00:40:06.791] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:40:06.879] [INFO] cheese - inserting 1000 documents. first: South Gare and Coatham Sands and last: Britain GAA +[2018-02-13T00:40:06.890] [INFO] cheese - inserting 1000 documents. first: Gmina Karlino and last: Float tube +[2018-02-13T00:40:06.900] [INFO] cheese - inserting 1000 documents. first: Lythrum portula and last: Elite One +[2018-02-13T00:40:06.951] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:40:06.951] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T00:40:06.984] [INFO] cheese - inserting 1000 documents. first: Sjöstorp Stone and last: Walnut Creek (Marais des Cygnes River) +[2018-02-13T00:40:07.056] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T00:40:07.089] [INFO] cheese - inserting 1000 documents. first: Robert Scott (Conservative politician) and last: Namakabroud +[2018-02-13T00:40:07.141] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:40:07.213] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T00:40:07.256] [INFO] cheese - inserting 1000 documents. first: Gouldian finch and last: 17th centuries +[2018-02-13T00:40:07.300] [INFO] cheese - inserting 1000 documents. first: Emersonian and last: Wikipedia:Articles for deletion/Sweep the Leg Johnny +[2018-02-13T00:40:07.352] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:40:07.362] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T00:40:07.594] [INFO] cheese - inserting 1000 documents. first: Swansea Central Library and last: Pompeo Marchesi +[2018-02-13T00:40:07.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2009 September 12 and last: Plecoptera lobelia +[2018-02-13T00:40:07.655] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:40:07.667] [INFO] cheese - inserting 1000 documents. first: Alexandar Stamboliiski and last: 2116 +[2018-02-13T00:40:07.701] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:40:07.715] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Anthony M. Villane and last: Deportes Colchagua +[2018-02-13T00:40:07.742] [INFO] cheese - inserting 1000 documents. first: Via Romana agli Dèi and last: Category:Ambassadors of Sri Lanka to Bulgaria +[2018-02-13T00:40:07.748] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:40:07.770] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:40:07.785] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:40:08.046] [INFO] cheese - inserting 1000 documents. first: Bevlyn Khoo and last: Center of the Tokyo Raids and War Damage +[2018-02-13T00:40:08.097] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:40:08.139] [INFO] cheese - inserting 1000 documents. first: Florida red-bellied cooter and last: 2-QAM +[2018-02-13T00:40:08.144] [INFO] cheese - inserting 1000 documents. first: Category:Israel Prize in Arabic literature recipients and last: Horn loading +[2018-02-13T00:40:08.211] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:40:08.246] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T00:40:08.268] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Sri Lanka to Brazil and last: Aktaş, Karaisalı +[2018-02-13T00:40:08.275] [INFO] cheese - inserting 1000 documents. first: Grenier AAF and last: Members of the 21st Seanad Éireann +[2018-02-13T00:40:08.289] [INFO] cheese - inserting 1000 documents. first: Justice Bliss and last: Anglican Bishop of Central Solomon Islands +[2018-02-13T00:40:08.313] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:40:08.354] [INFO] cheese - inserting 1000 documents. first: Per-Olov Ahrén and last: Back and Forth Series 6 +[2018-02-13T00:40:08.367] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:40:08.378] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:40:08.462] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:40:08.613] [INFO] cheese - inserting 1000 documents. first: Jean Didace Médard Moussodia and last: Allan Levene +[2018-02-13T00:40:08.660] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:40:08.681] [INFO] cheese - inserting 1000 documents. first: Eastern Suburbs season 1931 and last: File:Pianoplayers.jpg +[2018-02-13T00:40:08.735] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:40:08.780] [INFO] cheese - inserting 1000 documents. first: 2QAM and last: Juanponcedeleon +[2018-02-13T00:40:08.805] [INFO] cheese - inserting 1000 documents. first: Anglican Bishop of the Central Solomons and last: Category:Farms on the National Register of Historic Places in Texas +[2018-02-13T00:40:08.807] [INFO] cheese - inserting 1000 documents. first: Rony Gruber and last: Template:Ornithopod-stub +[2018-02-13T00:40:08.832] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:40:08.838] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:40:08.860] [INFO] cheese - inserting 1000 documents. first: Lake Dunn and last: Sint Michiel +[2018-02-13T00:40:08.872] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:40:08.932] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:40:08.966] [INFO] cheese - inserting 1000 documents. first: Cleveland Circle (MBTA station) and last: Category:Companies established in 1980 +[2018-02-13T00:40:09.034] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:40:09.053] [INFO] cheese - inserting 1000 documents. first: Begoña Sánchez and last: Umi Raho +[2018-02-13T00:40:09.097] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:40:09.200] [INFO] cheese - inserting 1000 documents. first: DaVonte Lambert and last: File:Chas Jankel.jpg +[2018-02-13T00:40:09.200] [INFO] cheese - inserting 1000 documents. first: Estero de San Antonio State Marine Recreational Management Area and last: Smart Move (FIRST) +[2018-02-13T00:40:09.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/George Woodward Warder and last: Category:Hindu temples in Mayurbhanj district +[2018-02-13T00:40:09.252] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:40:09.256] [INFO] cheese - inserting 1000 documents. first: Edward Tennyson Connolly and last: Charles Ponsonby +[2018-02-13T00:40:09.253] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:40:09.316] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:40:09.330] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:40:09.338] [INFO] cheese - inserting 1000 documents. first: Phineas Parkhurst Quimby and last: Glen Stewart-Bellevue Cove +[2018-02-13T00:40:09.400] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:40:09.449] [INFO] cheese - inserting 1000 documents. first: Timeline of events at Bakara Market and last: Category:1999 Pacific Games +[2018-02-13T00:40:09.524] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:40:09.661] [INFO] cheese - inserting 1000 documents. first: Tibetan Pony and last: Category:Human rights in Mongolia +[2018-02-13T00:40:09.677] [INFO] cheese - inserting 1000 documents. first: File:SteamPoweredSawmill.JPG and last: Florence Gertrude Horsburgh +[2018-02-13T00:40:09.791] [INFO] cheese - inserting 1000 documents. first: AAE (disambiguation) and last: Maggie May (disambiguation) +[2018-02-13T00:40:09.814] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:40:09.844] [INFO] cheese - inserting 1000 documents. first: Maximilian Montgelas and last: Template:2016 Summer Paralympics Sweden men's goalball team roster +[2018-02-13T00:40:09.844] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:40:09.894] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:40:09.905] [INFO] cheese - inserting 1000 documents. first: Southern Indiana Railroad Freighthouse and last: Category:People from Alexander County, North Carolina +[2018-02-13T00:40:09.985] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:40:10.005] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:40:10.056] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in British Overseas Territories and last: Donald Fairbairn +[2018-02-13T00:40:10.112] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:40:10.284] [INFO] cheese - inserting 1000 documents. first: Category:Human rights in Luxembourg and last: Steffen Jürgens +[2018-02-13T00:40:10.379] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:40:10.459] [INFO] cheese - inserting 1000 documents. first: Prince di Belmonte and last: File:Playboys bakerpepper.jpg +[2018-02-13T00:40:10.515] [INFO] cheese - inserting 1000 documents. first: Josepablo Monreal and last: Luke mccown +[2018-02-13T00:40:10.521] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:40:10.531] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Sphaerotheca and last: Category:1870 elections in Oceania +[2018-02-13T00:40:10.536] [INFO] cheese - inserting 1000 documents. first: Category:High Commissioners of Pakistan to Bangladesh and last: Kızılpınar, Besni +[2018-02-13T00:40:10.555] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:40:10.596] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:40:10.605] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:40:10.693] [INFO] cheese - inserting 1000 documents. first: Skin popping and last: I'm Not There (soundtrack) +[2018-02-13T00:40:10.697] [INFO] cheese - inserting 1000 documents. first: Souris-Elmira and last: T-34 Tank +[2018-02-13T00:40:10.775] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:40:10.784] [INFO] cheese - batch complete in: 1.384 secs +[2018-02-13T00:40:10.885] [INFO] cheese - inserting 1000 documents. first: Sutjeska (river) and last: Pi beta phi settlement school +[2018-02-13T00:40:10.934] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:40:11.117] [INFO] cheese - inserting 1000 documents. first: Mitch Feierstein and last: Category:People from Alentejo +[2018-02-13T00:40:11.130] [INFO] cheese - inserting 1000 documents. first: The Partners (1971) and last: Route 548 +[2018-02-13T00:40:11.142] [INFO] cheese - inserting 1000 documents. first: Geoffrey James Foot and last: Callahan Creek +[2018-02-13T00:40:11.166] [INFO] cheese - inserting 1000 documents. first: The Doberman Detective and last: William Franklyn (dean) +[2018-02-13T00:40:11.168] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:40:11.200] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:40:11.203] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:40:11.295] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:40:11.338] [INFO] cheese - inserting 1000 documents. first: Under the Radar Festival and last: Mirai Keisatsu Urashiman +[2018-02-13T00:40:11.510] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:40:11.571] [INFO] cheese - inserting 1000 documents. first: Arrowmont school and last: Fusion Energy +[2018-02-13T00:40:11.663] [INFO] cheese - inserting 1000 documents. first: Wigund-Jeronym Trubecki and last: Ḫepat +[2018-02-13T00:40:11.746] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T00:40:11.888] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T00:40:11.892] [INFO] cheese - inserting 1000 documents. first: Longstone (band) and last: ETS 300 072 +[2018-02-13T00:40:11.974] [INFO] cheese - inserting 1000 documents. first: Merel Blom and last: Category:People from Nardò +[2018-02-13T00:40:12.023] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T00:40:12.048] [INFO] cheese - inserting 1000 documents. first: Pinacopteryx and last: Days of Brilliant Sunlight +[2018-02-13T00:40:12.087] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:40:12.213] [INFO] cheese - inserting 1000 documents. first: Mark Nielsen (attorney) and last: Bernardo Sorj +[2018-02-13T00:40:12.219] [INFO] cheese - inserting 1000 documents. first: Rock'n Cop and last: Klevanjka Biela +[2018-02-13T00:40:12.218] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T00:40:12.288] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:40:12.301] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T00:40:12.434] [INFO] cheese - inserting 1000 documents. first: Baby Bonus (TV series) and last: Wikipedia:Articles for deletion/Medical Corps (Medical Organization) +[2018-02-13T00:40:12.484] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:40:12.546] [INFO] cheese - inserting 1000 documents. first: David Roualeyn Findlater Bain and last: Sølvi Olsen-Meinseth +[2018-02-13T00:40:12.547] [INFO] cheese - inserting 1000 documents. first: Reach Out and Touch (Somebody's Hand) and last: Academic Challenge (Ohio) +[2018-02-13T00:40:12.586] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:40:12.599] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:40:12.616] [INFO] cheese - inserting 1000 documents. first: Geoffrey Alan Burgon and last: Wikipedia:Articles for deletion/Heckford +[2018-02-13T00:40:12.691] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:40:12.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SLIPKNOT and last: 1777 in Wales +[2018-02-13T00:40:12.721] [INFO] cheese - inserting 1000 documents. first: Sigfried II von Westerberg and last: Fred Bluett +[2018-02-13T00:40:12.740] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:40:12.833] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:40:12.962] [INFO] cheese - inserting 1000 documents. first: Triple Play 2000 and last: Emirati Dirham +[2018-02-13T00:40:12.969] [INFO] cheese - inserting 1000 documents. first: Habitation extension module and last: Win7pe +[2018-02-13T00:40:13.009] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:40:13.024] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:40:13.081] [INFO] cheese - inserting 1000 documents. first: Pant-y-Goitre Bridge and last: Drumana +[2018-02-13T00:40:13.089] [INFO] cheese - inserting 1000 documents. first: Aitor Fernández and last: Irish wattle +[2018-02-13T00:40:13.131] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:40:13.140] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:40:13.144] [INFO] cheese - inserting 1000 documents. first: Altavista petroglyphs and last: File:Rocky dipietro field.jpg +[2018-02-13T00:40:13.188] [INFO] cheese - inserting 1000 documents. first: File:MadrasUniversitySenateHouse1905.jpg and last: Ilī-ippašra +[2018-02-13T00:40:13.196] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:40:13.222] [INFO] cheese - inserting 1000 documents. first: West Adams, CA and last: De Havilland Goblin +[2018-02-13T00:40:13.228] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:40:13.305] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:40:13.421] [INFO] cheese - inserting 1000 documents. first: Win7 PE and last: Kohinoor college +[2018-02-13T00:40:13.501] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:40:13.528] [INFO] cheese - inserting 1000 documents. first: Eunice Foote and last: 2016 IndyCar Grand Prix at The Glen +[2018-02-13T00:40:13.589] [INFO] cheese - inserting 1000 documents. first: QuintilesIMS and last: Super swamper +[2018-02-13T00:40:13.678] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:40:13.711] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:40:13.739] [INFO] cheese - inserting 1000 documents. first: (16504) 1990 TR5 and last: AJ McCarron +[2018-02-13T00:40:13.759] [INFO] cheese - inserting 1000 documents. first: Midlands Road and last: Balyan Rural District +[2018-02-13T00:40:13.791] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:40:13.809] [INFO] cheese - inserting 1000 documents. first: Lake Dunn, Queensland and last: Culture of Memphis, Tennessee +[2018-02-13T00:40:13.851] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:40:13.909] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:40:14.154] [INFO] cheese - inserting 1000 documents. first: Category:Education in Derbyshire and last: Channel Wagtail +[2018-02-13T00:40:14.164] [INFO] cheese - inserting 1000 documents. first: Quebec Liberal Party candidates, 2008 Quebec provincial election and last: C46H60FN3O13 +[2018-02-13T00:40:14.176] [INFO] cheese - inserting 1000 documents. first: Libido Blume and last: Sandra Knight +[2018-02-13T00:40:14.214] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:40:14.220] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:40:14.273] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T00:40:14.288] [INFO] cheese - inserting 1000 documents. first: Wenbi Temple in Changzhou and last: Limestone Lake (British Columbia) +[2018-02-13T00:40:14.291] [INFO] cheese - inserting 1000 documents. first: Čeněk of Wartenberg and last: Phrygia Pacatiana +[2018-02-13T00:40:14.392] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:40:14.394] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:40:14.443] [INFO] cheese - inserting 1000 documents. first: Category:Buyid officials and last: Hmong traditional religion +[2018-02-13T00:40:14.443] [INFO] cheese - inserting 1000 documents. first: Nigeria Port Authority F.C. and last: Roman Catholic Diocese of Piacenza-Bobbio +[2018-02-13T00:40:14.483] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:40:14.543] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:40:14.647] [INFO] cheese - inserting 1000 documents. first: Route 735 (Maryland) and last: Christopher Patterson (disambiguation) +[2018-02-13T00:40:14.689] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:40:14.709] [INFO] cheese - inserting 1000 documents. first: C27H42N2O5S and last: Template:Russia-footy-midfielder-1880s-stub +[2018-02-13T00:40:14.753] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:40:14.876] [INFO] cheese - inserting 1000 documents. first: Category:1917 in sports by country and last: Template:UnitedCounties-team-stub +[2018-02-13T00:40:14.879] [INFO] cheese - inserting 1000 documents. first: Mass surveillance in North Korea and last: Category:South Korean editors +[2018-02-13T00:40:14.918] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:40:14.925] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:40:14.946] [INFO] cheese - inserting 1000 documents. first: Gadhang and last: Template:Uw-hblock +[2018-02-13T00:40:14.953] [INFO] cheese - inserting 1000 documents. first: Davisville, R.I. and last: William Martin Conway, 1st Baron Conway of Allington +[2018-02-13T00:40:14.984] [INFO] cheese - inserting 1000 documents. first: Laura Gómez (disambiguation) and last: Wikipedia:WikiProject Alexandra Stan/Sidebar +[2018-02-13T00:40:14.990] [INFO] cheese - inserting 1000 documents. first: Philip Absolon and last: Sachsenhausen (Oranienburg) +[2018-02-13T00:40:14.993] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:40:15.010] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:40:15.033] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:40:15.092] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:40:15.111] [INFO] cheese - inserting 1000 documents. first: Gulfport Elementary and last: List of A-20 Havoc survivors +[2018-02-13T00:40:15.150] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:40:15.271] [INFO] cheese - inserting 1000 documents. first: BMW 316 and last: Shutdown Bangkok +[2018-02-13T00:40:15.361] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:40:15.397] [INFO] cheese - inserting 1000 documents. first: Category:Fictional United States cabinet members and last: Wikipedia:WikiProject Spam/LinkReports/escursionietna.com +[2018-02-13T00:40:15.463] [INFO] cheese - inserting 1000 documents. first: Yadegar Moxammat of Kazan and last: List of countries where Arabic is an official language +[2018-02-13T00:40:15.475] [INFO] cheese - inserting 1000 documents. first: Category:1673 in the Polish–Lithuanian Commonwealth and last: Hubbells +[2018-02-13T00:40:15.482] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:40:15.590] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:40:15.634] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:40:15.728] [INFO] cheese - inserting 1000 documents. first: Template:Edu-org-stub and last: Town Creek, Maryland +[2018-02-13T00:40:15.776] [INFO] cheese - inserting 1000 documents. first: USS Hiawatha and last: Ali Safa Sonboli +[2018-02-13T00:40:15.797] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:40:15.828] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:40:15.982] [INFO] cheese - inserting 1000 documents. first: Eupoecilia carneana and last: Qeshlaq Buzarjomehr +[2018-02-13T00:40:16.035] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:40:16.150] [INFO] cheese - inserting 1000 documents. first: File:Lady Gaga - Perfect Illusion.png and last: Category:Red Velvet (band) members +[2018-02-13T00:40:16.151] [INFO] cheese - inserting 1000 documents. first: Gabriel Tamaş and last: Philip Prowse +[2018-02-13T00:40:16.195] [INFO] cheese - inserting 1000 documents. first: Claire Coombs and last: Category:Prince George's County, Maryland Executives +[2018-02-13T00:40:16.208] [INFO] cheese - inserting 1000 documents. first: La nonne sanglante and last: Category:Andy Kim songs +[2018-02-13T00:40:16.226] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:40:16.234] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:40:16.276] [INFO] cheese - batch complete in: 1.184 secs +[2018-02-13T00:40:16.301] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:40:16.395] [INFO] cheese - inserting 1000 documents. first: File:RatlleandHumWiki.jpg and last: Espíritu Libre +[2018-02-13T00:40:16.428] [INFO] cheese - inserting 1000 documents. first: 1978 Colgate-Palmolive Masters and last: John Edward Michael Moore, Baron Moore of Lower Marsh +[2018-02-13T00:40:16.457] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:40:16.473] [INFO] cheese - inserting 1000 documents. first: Category:Puerto Rican film people and last: Alex Gonzalez (pitcher) +[2018-02-13T00:40:16.480] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:40:16.540] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:40:16.597] [INFO] cheese - inserting 1000 documents. first: Category:Musicians by South Korean band and last: Category:Politicians from Hengyang +[2018-02-13T00:40:16.653] [INFO] cheese - inserting 1000 documents. first: Athens Ohio Halloween Block Party and last: Mbungu Ekofa +[2018-02-13T00:40:16.661] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:40:16.714] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:40:16.742] [INFO] cheese - inserting 1000 documents. first: L.P. Fisher Public Library and last: I Don't Have to Be Me ('til Monday) +[2018-02-13T00:40:16.763] [INFO] cheese - inserting 1000 documents. first: Don Box and last: Metropolitan Police Department of Washington D.C. +[2018-02-13T00:40:16.789] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:40:16.833] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:40:16.867] [INFO] cheese - inserting 1000 documents. first: USS Clarinda and last: Telangana University +[2018-02-13T00:40:16.906] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:40:16.966] [INFO] cheese - inserting 1000 documents. first: Gold Apollo and last: Ancient Unix +[2018-02-13T00:40:16.980] [INFO] cheese - inserting 1000 documents. first: Three Rock Scout County and last: File:Giant squid tentacle.png +[2018-02-13T00:40:17.006] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:40:17.018] [INFO] cheese - inserting 1000 documents. first: 1998 Air Force Falcons football team and last: Schistura subfusca +[2018-02-13T00:40:17.040] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:40:17.067] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:40:17.133] [INFO] cheese - inserting 1000 documents. first: Wiener process with drift and last: 11 Squadron SAAF +[2018-02-13T00:40:17.155] [INFO] cheese - inserting 1000 documents. first: Gravity Guidance System and last: The National Audubon Society +[2018-02-13T00:40:17.167] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:40:17.192] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:40:17.290] [INFO] cheese - inserting 1000 documents. first: Template:Big Brother endgame/color and last: Ethiopia-Qatar relations +[2018-02-13T00:40:17.437] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:40:17.459] [INFO] cheese - inserting 1000 documents. first: Labor-Management Relations Act and last: File:Morphing Rutan.jpg +[2018-02-13T00:40:17.507] [INFO] cheese - inserting 1000 documents. first: Richland Creek (Crows Fork Creek) and last: Template:2016 Summer Paralympics football 5-a-side game B6 +[2018-02-13T00:40:17.531] [INFO] cheese - inserting 1000 documents. first: Joe Cunningham (disambiguation) and last: File:Singin' the Blues ODJB Waterson 1920.jpg +[2018-02-13T00:40:17.568] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:40:17.572] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:40:17.584] [INFO] cheese - inserting 1000 documents. first: File:Logo bbsbec.png and last: Indian passport +[2018-02-13T00:40:17.590] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:40:17.680] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:40:17.710] [INFO] cheese - inserting 1000 documents. first: File:Gramme Ring Armature - Minimal Core Penetration.jpg and last: Charles Marquette +[2018-02-13T00:40:17.772] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:40:17.779] [INFO] cheese - inserting 1000 documents. first: Arıkonak, Sincik and last: Bac Le ambush +[2018-02-13T00:40:17.875] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:40:17.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canadian military history articles by quality/7 and last: Rhopalosyrphus +[2018-02-13T00:40:17.992] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:40:18.070] [INFO] cheese - inserting 1000 documents. first: Zephyr (Basement Jaxx EP) and last: Tell Salhab Nahiyah +[2018-02-13T00:40:18.077] [INFO] cheese - inserting 1000 documents. first: Liverpool F C in Europe and last: MC Mehta v. Kamal Nath +[2018-02-13T00:40:18.104] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:40:18.133] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:40:18.160] [INFO] cheese - inserting 1000 documents. first: Egypt at the 1906 Summer Olympics and last: Wikipedia:Reference desk/Archives/Science/2014 January 25 +[2018-02-13T00:40:18.191] [INFO] cheese - inserting 1000 documents. first: Tour de Georgia and last: Mary of Russia +[2018-02-13T00:40:18.199] [INFO] cheese - inserting 1000 documents. first: Puc-rj and last: 40 Commando, Royal Marines +[2018-02-13T00:40:18.207] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:40:18.255] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:40:18.264] [INFO] cheese - inserting 1000 documents. first: Kewin Orellana and last: Watterson, Berlin & Snyder, Inc. +[2018-02-13T00:40:18.264] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:40:18.324] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:40:18.359] [INFO] cheese - inserting 1000 documents. first: Madhya Gujarat Vij and last: List of 125cc/Moto3 Motorcycle World Champions +[2018-02-13T00:40:18.374] [INFO] cheese - inserting 1000 documents. first: MC Mini Masters and last: Michael JS Dewar +[2018-02-13T00:40:18.403] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:40:18.407] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:40:18.509] [INFO] cheese - inserting 1000 documents. first: Uqayribat Nahiyah and last: Anthony Standen +[2018-02-13T00:40:18.548] [INFO] cheese - inserting 1000 documents. first: St. Paul's Episcopal Church (Peoria, Illinois) and last: Template:Hamilton Municipal Election, 2014 Ward Thirteen +[2018-02-13T00:40:18.556] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:40:18.593] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:40:18.605] [INFO] cheese - inserting 1000 documents. first: 2011 in United Kingdom and last: Primagama Tutoring Institution +[2018-02-13T00:40:18.653] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:40:18.703] [INFO] cheese - inserting 1000 documents. first: File:Dusty... Definitely.jpg and last: David Chapman (cricketer) +[2018-02-13T00:40:18.704] [INFO] cheese - inserting 1000 documents. first: Michael M J Fischer and last: Nicol Dalgleish +[2018-02-13T00:40:18.739] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:40:18.760] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:40:18.783] [INFO] cheese - inserting 1000 documents. first: Fredric Rieders and last: Old Academy +[2018-02-13T00:40:18.832] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:40:18.949] [INFO] cheese - inserting 1000 documents. first: Sam ritchie and last: MasterChef (US season 5) +[2018-02-13T00:40:18.992] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:40:19.009] [INFO] cheese - inserting 1000 documents. first: 1906 Colorado Silver and Gold football team and last: Two-veined hickory +[2018-02-13T00:40:19.028] [INFO] cheese - inserting 1000 documents. first: Richmond (Nova Scotia federal electoral district) and last: Guitar amp +[2018-02-13T00:40:19.091] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:40:19.110] [INFO] cheese - inserting 1000 documents. first: Ed Fryatt and last: Hypnomys +[2018-02-13T00:40:19.206] [INFO] cheese - inserting 1000 documents. first: Как пропатчить KDE2 под FreeBSD? and last: Trochalopteron lineatum +[2018-02-13T00:40:19.232] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T00:40:19.290] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:40:19.393] [INFO] cheese - inserting 1000 documents. first: Saint Sanctain and last: Synchroton-radiation X-ray tomographic microscopy +[2018-02-13T00:40:19.426] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:40:19.515] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:40:19.565] [INFO] cheese - inserting 1000 documents. first: Sailing at the 1924 Summer Olympics - 6 metre class and last: Norm Thompson Outfitters +[2018-02-13T00:40:19.601] [INFO] cheese - inserting 1000 documents. first: Gas (fuel) and last: Wikipedia:Reference desk/Archives/Science/2014 January 26 +[2018-02-13T00:40:19.683] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:40:19.723] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:40:19.840] [INFO] cheese - inserting 1000 documents. first: Lycée d'enseignement professionnel Florian and last: Universidad Católica del Ecuador +[2018-02-13T00:40:19.920] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:40:20.018] [INFO] cheese - inserting 1000 documents. first: Stigma (ligature) and last: Ufc.mn +[2018-02-13T00:40:20.094] [INFO] cheese - inserting 1000 documents. first: Trochalopteron erythrocephalum and last: File:View of Kiev's banks.JPG +[2018-02-13T00:40:20.130] [INFO] cheese - inserting 1000 documents. first: Jesse mcartney and last: Category:Banks of Uganda +[2018-02-13T00:40:20.130] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T00:40:20.154] [INFO] cheese - inserting 1000 documents. first: 2002–03 QMJHL season and last: Partido Galeguista +[2018-02-13T00:40:20.167] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:40:20.170] [INFO] cheese - inserting 1000 documents. first: White drummer cicada and last: Johann Georg Leumann +[2018-02-13T00:40:20.237] [INFO] cheese - inserting 1000 documents. first: Harold Schindler and last: Shame of Gijón +[2018-02-13T00:40:20.250] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T00:40:20.259] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:40:20.263] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:40:20.335] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:40:20.397] [INFO] cheese - inserting 1000 documents. first: Club Deportivo Universidad Técnica de Cotopaxi and last: Petrachi +[2018-02-13T00:40:20.444] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:40:20.552] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese capitals and last: Environmental physiologies +[2018-02-13T00:40:20.619] [INFO] cheese - inserting 1000 documents. first: Template:Wikiversity-c and last: Plastic leather +[2018-02-13T00:40:20.619] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:40:20.623] [INFO] cheese - inserting 1000 documents. first: The Last Temptation and last: Folklore (journal) +[2018-02-13T00:40:20.625] [INFO] cheese - inserting 1000 documents. first: Brachopterella and last: Rising limb +[2018-02-13T00:40:20.663] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:40:20.672] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:40:20.676] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:40:20.700] [INFO] cheese - inserting 1000 documents. first: Jestice and last: Pz III +[2018-02-13T00:40:20.757] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:40:20.872] [INFO] cheese - inserting 1000 documents. first: Wootton or Wootton Bridge and last: William Hervy Lamb Wallace +[2018-02-13T00:40:20.882] [INFO] cheese - inserting 1000 documents. first: Draft:Jocelyne Meinert and last: Template:Did you know nominations/Astrodatabank +[2018-02-13T00:40:20.921] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:40:20.929] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:40:21.006] [INFO] cheese - inserting 1000 documents. first: Hendiadyoin and last: List of Historic buildings in Guangzhou +[2018-02-13T00:40:21.056] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:40:21.107] [INFO] cheese - inserting 1000 documents. first: United Congolese Party and last: Category:Unincorporated communities in Miner County, South Dakota +[2018-02-13T00:40:21.140] [INFO] cheese - inserting 1000 documents. first: Engineering Research Center for Collaborative Adaptive Sensing of the Atmosphere and last: Whitefish Range +[2018-02-13T00:40:21.167] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:40:21.186] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:40:21.214] [INFO] cheese - inserting 1000 documents. first: Sophie of Württemberg (1563-1590) and last: Category:1552 in military history +[2018-02-13T00:40:21.225] [INFO] cheese - inserting 1000 documents. first: Pz IV and last: Summersonic +[2018-02-13T00:40:21.237] [INFO] cheese - inserting 1000 documents. first: Santorini tomato and last: Olivine Creek (British Columbia) +[2018-02-13T00:40:21.262] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:40:21.291] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:40:21.297] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:40:21.410] [INFO] cheese - inserting 1000 documents. first: St Mary's, Tilston and last: Wikipedia:Articles for deletion/Dark Princess +[2018-02-13T00:40:21.446] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:40:21.535] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected copyright violations/2014-02-01 and last: SpVgg Deggendorf +[2018-02-13T00:40:21.629] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:40:21.747] [INFO] cheese - inserting 1000 documents. first: Taal (film) and last: The Kentucky Kernel +[2018-02-13T00:40:21.776] [INFO] cheese - inserting 1000 documents. first: Mark Mazetti and last: File:CSL timeline.PNG +[2018-02-13T00:40:21.790] [INFO] cheese - inserting 1000 documents. first: Category:1553 in military history and last: Template:Poland men volleyball team 2016 CEV U20 European Championship +[2018-02-13T00:40:21.831] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:40:21.834] [INFO] cheese - inserting 1000 documents. first: C20H19F5N2O and last: Wikipedia:WikiProject Spam/Local/files.ifnimidi.com +[2018-02-13T00:40:21.844] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:40:21.882] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:40:21.925] [INFO] cheese - inserting 1000 documents. first: Greatest Hits (The Human League album) and last: Aquacade +[2018-02-13T00:40:21.951] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:40:21.982] [INFO] cheese - inserting 1000 documents. first: NE-1000 and last: Crosby Cross-Roads +[2018-02-13T00:40:22.005] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:40:22.074] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:40:22.155] [INFO] cheese - inserting 1000 documents. first: Pembroke Manor and last: United States presidential election in Utah, 1976 +[2018-02-13T00:40:22.241] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:40:22.311] [INFO] cheese - inserting 1000 documents. first: Category:Finnish men's volleyball players and last: Wikipedia:Articles for deletion/Panthers-Seahawks rivalry +[2018-02-13T00:40:22.377] [INFO] cheese - inserting 1000 documents. first: ACACB and last: Lewis and Clark Law Review +[2018-02-13T00:40:22.381] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:40:22.455] [INFO] cheese - inserting 1000 documents. first: The Five Companions and last: Category:Populated places in St. Landry Parish, Louisiana +[2018-02-13T00:40:22.511] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:40:22.537] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:40:22.619] [INFO] cheese - inserting 1000 documents. first: Claris XTND and last: TV Scoreboard +[2018-02-13T00:40:22.627] [INFO] cheese - inserting 1000 documents. first: Highlander, Isle of Man and last: STRN +[2018-02-13T00:40:22.726] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:40:22.756] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:40:22.768] [INFO] cheese - inserting 1000 documents. first: List of postal codes in Serbia and last: Brazil at the 1992 Summer Olympics +[2018-02-13T00:40:22.832] [INFO] cheese - inserting 1000 documents. first: List of The Musketeers episodes and last: Colorado Christian Cougars baseball +[2018-02-13T00:40:22.861] [INFO] cheese - inserting 1000 documents. first: 2016 Morocco Tennis Tour - Meknes - Singles and last: U Lac +[2018-02-13T00:40:22.909] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T00:40:22.955] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:40:22.958] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:40:23.260] [INFO] cheese - inserting 1000 documents. first: Southern California Law Review and last: Template:2001-02 in Scottish football +[2018-02-13T00:40:23.282] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:InMooseWeTrust/Anthony Bologna and last: File:Killer-fish.jpg +[2018-02-13T00:40:23.324] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:40:23.341] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:40:23.362] [INFO] cheese - inserting 1000 documents. first: SketchCom and last: Cherry picking tax avoidance +[2018-02-13T00:40:23.365] [INFO] cheese - inserting 1000 documents. first: Prospero Productions and last: Brice Vivien Batchaya Ketchanke +[2018-02-13T00:40:23.393] [INFO] cheese - inserting 1000 documents. first: Top Duck and last: Cinema of Myanmar +[2018-02-13T00:40:23.408] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:40:23.439] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:40:23.460] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:40:23.544] [INFO] cheese - inserting 1000 documents. first: Colorado Christian Cougars men's basketball and last: Carlyle Township +[2018-02-13T00:40:23.683] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:40:23.796] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 in Scottish football and last: A Simple Noodle Story +[2018-02-13T00:40:23.841] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Adams County, Mississippi and last: Stephen Simmonds (swimmer) +[2018-02-13T00:40:23.847] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:40:23.889] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:40:23.899] [INFO] cheese - inserting 1000 documents. first: Richard Wyndham and last: Casas de Eufemia +[2018-02-13T00:40:23.943] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:40:23.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2008-01-14/2007 in review and last: PPST +[2018-02-13T00:40:23.981] [INFO] cheese - inserting 1000 documents. first: O'hare and last: Runaway Horses +[2018-02-13T00:40:23.997] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:40:24.032] [INFO] cheese - inserting 1000 documents. first: Vanya Stambolova and last: Phyllis Eisenstein +[2018-02-13T00:40:24.079] [INFO] cheese - batch complete in: 1.169 secs +[2018-02-13T00:40:24.105] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:40:24.130] [INFO] cheese - inserting 1000 documents. first: Douglas School and last: Category:Geography of Phnom Penh +[2018-02-13T00:40:24.187] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:40:24.264] [INFO] cheese - inserting 1000 documents. first: Template:Infobox US metropolitan area/doc and last: Wikipedia:Articles for deletion/American-born Chinese +[2018-02-13T00:40:24.341] [INFO] cheese - inserting 1000 documents. first: Category:1338 in England and last: Athene Royal Serge Creuz +[2018-02-13T00:40:24.344] [INFO] cheese - inserting 1000 documents. first: Antoine-François Delandine and last: Radio G.R.E.M. +[2018-02-13T00:40:24.343] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:40:24.419] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:40:24.456] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:40:24.536] [INFO] cheese - inserting 1000 documents. first: /- and last: Harry Reese +[2018-02-13T00:40:24.609] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:40:24.694] [INFO] cheese - inserting 1000 documents. first: USS Athene (AKA-22) and last: Wikipedia:IBT +[2018-02-13T00:40:24.764] [INFO] cheese - inserting 1000 documents. first: Douglas C. Steltz and last: United States gubernatorial elections, 1965 +[2018-02-13T00:40:24.810] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:40:24.877] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:40:24.965] [INFO] cheese - inserting 1000 documents. first: Itzhak Ilan and last: Law and Corpus Linguistics +[2018-02-13T00:40:24.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/merchant-accounts.ca and last: Murder One (bookshop) +[2018-02-13T00:40:24.977] [INFO] cheese - inserting 1000 documents. first: Dark Night (song) and last: Sheldgoose +[2018-02-13T00:40:24.997] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:40:25.021] [INFO] cheese - inserting 1000 documents. first: I ragazzi della 3ª C and last: Magdagachinski Raion +[2018-02-13T00:40:25.024] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:40:25.054] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:40:25.076] [INFO] cheese - inserting 1000 documents. first: (9954) 1991 GX7 and last: Bergamasco (language) +[2018-02-13T00:40:25.075] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:40:25.154] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:40:25.242] [INFO] cheese - inserting 1000 documents. first: Macotasa dimorpha and last: Sigma epsilon phi +[2018-02-13T00:40:25.280] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:40:25.283] [INFO] cheese - inserting 1000 documents. first: Automatic teller safe and last: Sea View Community Primary School +[2018-02-13T00:40:25.326] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:40:25.368] [INFO] cheese - inserting 1000 documents. first: Clayton Moss(the cross guitarist) and last: Wikipedia:Deletion review/Log/2016 September 13 +[2018-02-13T00:40:25.412] [INFO] cheese - inserting 1000 documents. first: Magdagachinskii Raion and last: Mial +[2018-02-13T00:40:25.415] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:40:25.462] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:40:25.486] [INFO] cheese - inserting 1000 documents. first: Irish League 1934-35 and last: Multiple marriage +[2018-02-13T00:40:25.560] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:40:25.573] [INFO] cheese - inserting 1000 documents. first: Ramsey Plaza Station and last: Wikipedia:Picture peer review/Roman bireme +[2018-02-13T00:40:25.654] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:40:25.670] [INFO] cheese - inserting 1000 documents. first: Category:Country data templates of Georgia and last: Goleh Dari Mohammad Hoseyn Mohammadi +[2018-02-13T00:40:25.726] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:40:25.763] [INFO] cheese - inserting 1000 documents. first: Girolamo Crescentini and last: Liddo-kun's Big Adventure +[2018-02-13T00:40:25.816] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:40:25.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for discussion/2016 September 13 and last: U.S. Army history +[2018-02-13T00:40:25.838] [INFO] cheese - inserting 1000 documents. first: Daryl Wilcher and last: Wikipedia:Articles for deletion/Permanent Ability (2nd nomination) +[2018-02-13T00:40:25.859] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:40:25.908] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:40:25.947] [INFO] cheese - inserting 1000 documents. first: Gourcuff and last: De La Salle College, Waterford +[2018-02-13T00:40:25.958] [INFO] cheese - inserting 1000 documents. first: Irish League 1916-17 and last: Valediction (2009 film) +[2018-02-13T00:40:25.999] [INFO] cheese - inserting 1000 documents. first: Hasanabad-e Sanjarlu and last: Category:Buildings and structures in An Giang Province +[2018-02-13T00:40:26.016] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:40:26.085] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:40:26.081] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:40:26.144] [INFO] cheese - inserting 1000 documents. first: Antonio Géder and last: Haitang Wan +[2018-02-13T00:40:26.243] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:40:26.358] [INFO] cheese - inserting 1000 documents. first: List of Great Lives programmes and last: Template:RK Zamet 2003-04 squad +[2018-02-13T00:40:26.430] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:40:26.513] [INFO] cheese - inserting 1000 documents. first: List of Indian states by the etymology of their name and last: Wikipedia:Articles for deletion/Jeff Roland +[2018-02-13T00:40:26.571] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anarchocrapitalism and last: Tgag Broad +[2018-02-13T00:40:26.574] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:40:26.659] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:40:26.713] [INFO] cheese - inserting 1000 documents. first: National Kunming Normal College and last: Ruslan Fakhriyev +[2018-02-13T00:40:26.746] [INFO] cheese - inserting 1000 documents. first: Category:People from Boussu and last: Portal:Literature/Excerpts/18 +[2018-02-13T00:40:26.805] [INFO] cheese - inserting 1000 documents. first: Wafah Dufour (bin Ladin) and last: Ikhtiyar Al-Din Muhammad Bin Bakhtiyar Khalji +[2018-02-13T00:40:26.807] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:40:26.816] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:40:26.844] [INFO] cheese - inserting 1000 documents. first: Sony Minidisk and last: Sawridge +[2018-02-13T00:40:26.907] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:40:26.929] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:40:26.989] [INFO] cheese - inserting 1000 documents. first: Category:Churches in Guayaquil and last: Jackson, Harry +[2018-02-13T00:40:27.067] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:40:27.210] [INFO] cheese - inserting 1000 documents. first: William Bludworth and last: Thomas Lear +[2018-02-13T00:40:27.286] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:40:27.345] [INFO] cheese - inserting 1000 documents. first: Petrogypsies and last: Wikipedia:Peer review/Julia Butterfly Hill/archive1 +[2018-02-13T00:40:27.393] [INFO] cheese - inserting 1000 documents. first: Portal:Literature/Excerpts/19 and last: Template:Cite DANAS +[2018-02-13T00:40:27.393] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:40:27.411] [INFO] cheese - inserting 1000 documents. first: Dainn (lunia) and last: Battle of Lemo +[2018-02-13T00:40:27.441] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:40:27.509] [INFO] cheese - inserting 1000 documents. first: Transgressing the Boundaries: Towards a Transformative Hermeneutics of Quantum Gravity and last: WABE +[2018-02-13T00:40:27.518] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:40:27.522] [INFO] cheese - inserting 1000 documents. first: Gordon Juckes and last: Ranking Miss P +[2018-02-13T00:40:27.543] [INFO] cheese - inserting 1000 documents. first: Jacobs, Harry and last: Arctolamia fruhstorferi laosica +[2018-02-13T00:40:27.566] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:40:27.597] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:40:27.655] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:40:27.812] [INFO] cheese - inserting 1000 documents. first: Lear (surname) and last: ITU G.992.3 Annex J +[2018-02-13T00:40:27.838] [INFO] cheese - inserting 1000 documents. first: Martin W. Deyo and last: Portal:Paleozoic/Natural world articles/45 +[2018-02-13T00:40:27.854] [INFO] cheese - inserting 1000 documents. first: McAlister Drive and last: National Federation of Fish Friers +[2018-02-13T00:40:27.859] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:40:27.884] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:40:27.910] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:40:27.998] [INFO] cheese - inserting 1000 documents. first: WQUN and last: Nokia 8800 Arte +[2018-02-13T00:40:28.055] [INFO] cheese - inserting 1000 documents. first: Template:WKU Hilltoppers and Lady Toppers athletic director navbox and last: Alibaba and 40 Thieves (1954 film) +[2018-02-13T00:40:28.055] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:40:28.076] [INFO] cheese - inserting 1000 documents. first: Xavier Florencio Cabre and last: Template:MedalCountry +[2018-02-13T00:40:28.094] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:40:28.146] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:40:28.198] [INFO] cheese - inserting 1000 documents. first: ITU G.992.3 Annex L and last: Robin Johns +[2018-02-13T00:40:28.263] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:40:28.369] [INFO] cheese - inserting 1000 documents. first: 2014 Fed Cup Europe/Africa Zone Group III – Pool A and last: Location vacation +[2018-02-13T00:40:28.392] [INFO] cheese - inserting 1000 documents. first: File:ConzadellaCampania-Stemma.gif and last: BarclayCard +[2018-02-13T00:40:28.471] [INFO] cheese - inserting 1000 documents. first: Category:2012 in Swedish cinema and last: Wikipedia:WikiProject Spam/LinkReports/googleenterprise.blogspot.co.nz +[2018-02-13T00:40:28.484] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:40:28.496] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:40:28.592] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:40:28.694] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sumoton and last: Template:Kraki +[2018-02-13T00:40:28.783] [INFO] cheese - inserting 1000 documents. first: Santafair and last: Herb Brackenreg +[2018-02-13T00:40:28.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Houngan (comics) and last: Wilhelm Grunwald +[2018-02-13T00:40:28.807] [INFO] cheese - batch complete in: 1.24 secs +[2018-02-13T00:40:28.833] [INFO] cheese - inserting 1000 documents. first: File:Ckyvideocovers.jpg and last: Kaingaroa, New Zealand +[2018-02-13T00:40:28.893] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:40:28.934] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:40:28.947] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T00:40:29.076] [INFO] cheese - inserting 1000 documents. first: Melese klagesi and last: Mysore Colony monorail station +[2018-02-13T00:40:29.086] [INFO] cheese - inserting 1000 documents. first: USS Aeolus (SP-186) and last: Eierdiebe +[2018-02-13T00:40:29.140] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:40:29.151] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:40:29.193] [INFO] cheese - inserting 1000 documents. first: Piata unirii and last: Baral, Pakistan +[2018-02-13T00:40:29.296] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:40:29.558] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day/03/12 and last: Roman Catholic Diocese of Nakuru +[2018-02-13T00:40:29.638] [INFO] cheese - inserting 1000 documents. first: The Mole Show Live at the Roxy and last: File:Johnny Bright Incident.jpg +[2018-02-13T00:40:29.677] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:40:29.721] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:40:29.769] [INFO] cheese - inserting 1000 documents. first: Fareast 18R and last: Scottish Waterways Trust +[2018-02-13T00:40:29.793] [INFO] cheese - inserting 1000 documents. first: Michele Merlo and last: Black-billed Woodhoopoe +[2018-02-13T00:40:29.861] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:40:29.905] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:40:30.046] [INFO] cheese - inserting 1000 documents. first: Hheuk yeomso tang and last: Scott Caudill +[2018-02-13T00:40:30.208] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:40:30.452] [INFO] cheese - inserting 1000 documents. first: Sabrevois, Quebec and last: Stephfon Green +[2018-02-13T00:40:30.454] [INFO] cheese - inserting 1000 documents. first: Nøstvet culture and last: Wikipedia:Articles for deletion/Affordable luxury +[2018-02-13T00:40:30.540] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:40:30.542] [INFO] cheese - inserting 1000 documents. first: Durag-e Madineh and last: Metamya intersecta +[2018-02-13T00:40:30.563] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T00:40:30.576] [INFO] cheese - inserting 1000 documents. first: Kayusid and last: Chosunilbo +[2018-02-13T00:40:30.619] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:40:30.663] [INFO] cheese - inserting 1000 documents. first: Lighters and last: LMS Class 4P 2-6-4T (1945) +[2018-02-13T00:40:30.689] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T00:40:30.777] [INFO] cheese - batch complete in: 1.97 secs +[2018-02-13T00:40:30.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Why Medical Schools Should Embrace Wikipedia and last: File:Logo-publiceye-mobile.png +[2018-02-13T00:40:30.866] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:40:31.024] [INFO] cheese - inserting 1000 documents. first: Gordon Smith (New Zealand footballer) and last: Animal Planet (Germany) +[2018-02-13T00:40:31.064] [INFO] cheese - inserting 1000 documents. first: Chief Pathkiller and last: Wikipedia:Requests for arbitration/Kingofmann/Workshop +[2018-02-13T00:40:31.074] [INFO] cheese - inserting 1000 documents. first: Eve Aline Plumb and last: Aldophosphamide +[2018-02-13T00:40:31.073] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:40:31.118] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:40:31.140] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:40:31.223] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Islamophobia (3rd nomination) and last: Antonio José Martínez Palacios +[2018-02-13T00:40:31.260] [INFO] cheese - inserting 1000 documents. first: Illinois State Beach and last: Elizabeth Shove +[2018-02-13T00:40:31.291] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:40:31.331] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:40:31.479] [INFO] cheese - inserting 1000 documents. first: Portal:Time/Portals and WikiProjects/box-header and last: Wikipedia:Articles for deletion/Human Top (Bruce Bravelle) +[2018-02-13T00:40:31.488] [INFO] cheese - inserting 1000 documents. first: Discovery Channel (France) and last: Ian Perrotte +[2018-02-13T00:40:31.507] [INFO] cheese - inserting 1000 documents. first: Picasa2 and last: Aisyt +[2018-02-13T00:40:31.522] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:40:31.528] [INFO] cheese - inserting 1000 documents. first: Template:S-line/Mumbai Suburban Railway right/Harbour and last: Paramya bricenoi +[2018-02-13T00:40:31.530] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:40:31.593] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:40:31.614] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T00:40:31.739] [INFO] cheese - inserting 1000 documents. first: Category:1991 in Brazilian television and last: Danger Has Two Faces +[2018-02-13T00:40:31.860] [INFO] cheese - inserting 1000 documents. first: Category:Cyclists at the 2002 Commonwealth Games and last: Rigi (software) +[2018-02-13T00:40:31.890] [INFO] cheese - inserting 1000 documents. first: Carter Creek (Current River) and last: Clerk of the Crown and Hanaper +[2018-02-13T00:40:31.900] [INFO] cheese - batch complete in: 3.007 secs +[2018-02-13T00:40:31.983] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:40:31.993] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:40:32.090] [INFO] cheese - inserting 1000 documents. first: Makarajyoti and last: Tun Mustapha +[2018-02-13T00:40:32.250] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:40:32.335] [INFO] cheese - inserting 1000 documents. first: Port Lihou and last: Anton Braith +[2018-02-13T00:40:32.468] [INFO] cheese - inserting 1000 documents. first: Domagoj Kapeć and last: Revolt of the Barretinas +[2018-02-13T00:40:32.491] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T00:40:32.536] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T00:40:32.650] [INFO] cheese - inserting 1000 documents. first: Pop Goes the Ed and last: Tom Gabriel Fischer +[2018-02-13T00:40:32.750] [INFO] cheese - inserting 1000 documents. first: Tudela and last: Clitheroe (UK Parliament constituency) +[2018-02-13T00:40:32.752] [INFO] cheese - batch complete in: 1.137 secs +[2018-02-13T00:40:32.759] [INFO] cheese - inserting 1000 documents. first: Conscience Films and last: John Lillibridge +[2018-02-13T00:40:32.826] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:40:32.838] [INFO] cheese - inserting 1000 documents. first: Category:1915 disestablishments in the Philippines and last: Category:Equestrian statues in New Jersey +[2018-02-13T00:40:32.845] [INFO] cheese - inserting 1000 documents. first: Anthony Messner and last: Spatial Visualization Ability +[2018-02-13T00:40:32.850] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T00:40:32.919] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:40:33.014] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T00:40:33.072] [INFO] cheese - inserting 1000 documents. first: Daniel Merillon and last: Zone press +[2018-02-13T00:40:33.079] [INFO] cheese - inserting 1000 documents. first: N-I rocket and last: A.C. Milan records +[2018-02-13T00:40:33.133] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:40:33.132] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:40:33.409] [INFO] cheese - inserting 1000 documents. first: Jimmy Todd (Scottish footballer) and last: Funryu +[2018-02-13T00:40:33.469] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:40:33.487] [INFO] cheese - inserting 1000 documents. first: Lamine Ben Aziza and last: St. Thomas' Church, St. Annes-on-Sea +[2018-02-13T00:40:33.525] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured portal candidates/Featured log/August 2006 and last: U-can +[2018-02-13T00:40:33.573] [INFO] cheese - inserting 1000 documents. first: S fone and last: Aepyornis maximus +[2018-02-13T00:40:33.579] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:40:33.631] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:40:33.746] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:40:33.771] [INFO] cheese - inserting 1000 documents. first: Species Richness and last: Future Combat Systems Infantry Carrier Vehicle +[2018-02-13T00:40:33.802] [INFO] cheese - inserting 1000 documents. first: Category:Danish people of Vietnamese descent and last: File:NBA 2K2 Cover.jpg +[2018-02-13T00:40:33.867] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T00:40:33.875] [INFO] cheese - inserting 1000 documents. first: Template:Shiraz County and last: Wikipedia:Sockpuppet investigations/Hamelmelaga +[2018-02-13T00:40:33.881] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:40:33.968] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:40:33.975] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2011-10-04 and last: Wikipedia:WikiProject Spam/Local/5by5.tv +[2018-02-13T00:40:34.033] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:40:34.099] [INFO] cheese - inserting 1000 documents. first: Equestrian statue of Chulalongkorn and last: Category:1836 in the Grand Duchy of Tuscany +[2018-02-13T00:40:34.118] [INFO] cheese - inserting 1000 documents. first: Boarding School and last: Bzovík +[2018-02-13T00:40:34.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sterkebak.com and last: Kerstin Juergens +[2018-02-13T00:40:34.142] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:40:34.163] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:40:34.174] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:40:34.317] [INFO] cheese - inserting 1000 documents. first: Atsede Kidanu and last: Lights, Camera, Moo! +[2018-02-13T00:40:34.334] [INFO] cheese - inserting 1000 documents. first: Marital property and last: Mazra'eh-ye Pir Badam +[2018-02-13T00:40:34.336] [INFO] cheese - inserting 1000 documents. first: Category:Canadian military transport aircraft 1950–1959 and last: Guillem de Cabestaing +[2018-02-13T00:40:34.357] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:40:34.379] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:40:34.379] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:40:34.422] [INFO] cheese - inserting 1000 documents. first: Targeted repurchase and last: 1997 in British music +[2018-02-13T00:40:34.470] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:40:34.516] [INFO] cheese - inserting 1000 documents. first: Guru (2017 film) and last: Nether district Vítkovice +[2018-02-13T00:40:34.564] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:40:34.626] [INFO] cheese - inserting 1000 documents. first: Terme (disambiguation) and last: Roger Anthony Bull +[2018-02-13T00:40:34.646] [INFO] cheese - inserting 1000 documents. first: Voices of Animals and Men and last: Beresnevicius +[2018-02-13T00:40:34.673] [INFO] cheese - inserting 1000 documents. first: Tarbor-e Bala and last: Martin Foltyn +[2018-02-13T00:40:34.677] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:40:34.699] [INFO] cheese - inserting 1000 documents. first: Animal Farmers and last: Category:Cancelled Super Nintendo Entertainment System games +[2018-02-13T00:40:34.701] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:40:34.716] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:40:34.772] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:40:34.961] [INFO] cheese - inserting 1000 documents. first: File:Gamest 1986-05 Issue 001 cover.jpg and last: Portal:Early Modern Britain/Selected media/2 +[2018-02-13T00:40:35.012] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:40:35.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/October 2011 and last: Category:United States civil aircraft 1960–1969 +[2018-02-13T00:40:35.160] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:40:35.220] [INFO] cheese - inserting 1000 documents. first: Margaret “Peggy” Focarino and last: South Africa women's national softball team +[2018-02-13T00:40:35.237] [INFO] cheese - inserting 1000 documents. first: Category:User ccp-N and last: Template:AFB game box end/doc +[2018-02-13T00:40:35.271] [INFO] cheese - inserting 1000 documents. first: File:Scrotum.png and last: Bœrsch +[2018-02-13T00:40:35.285] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:40:35.301] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:40:35.349] [INFO] cheese - inserting 1000 documents. first: Low Germanic languages and last: File:Twilight-imperium-layout 12.jpg +[2018-02-13T00:40:35.358] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:40:35.471] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:40:35.572] [INFO] cheese - inserting 1000 documents. first: Portal:Early Modern Britain/Selected media/3 and last: Category:Somalia at the Paralympics +[2018-02-13T00:40:35.613] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pierre Clèment and last: Maximum Break +[2018-02-13T00:40:35.639] [INFO] cheese - inserting 1000 documents. first: Grande Saline, Haiti and last: Government Center, Miami, FL +[2018-02-13T00:40:35.646] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:40:35.672] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:40:35.678] [INFO] cheese - inserting 1000 documents. first: Category:United States civil aircraft 1970–1979 and last: Template:Latter Day Saint biography/William Clayton (Mormon) +[2018-02-13T00:40:35.701] [INFO] cheese - batch complete in: 1.231 secs +[2018-02-13T00:40:35.711] [INFO] cheese - inserting 1000 documents. first: OPQ Letters and last: P.C. Cast +[2018-02-13T00:40:35.729] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:40:35.775] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:40:35.886] [INFO] cheese - inserting 1000 documents. first: Dmitriy Zarva and last: Vitali Pyanchenko +[2018-02-13T00:40:35.946] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:40:36.011] [INFO] cheese - inserting 1000 documents. first: Great Explorations, The Children's Museum in St. Petersburg, FL and last: Quot scheme +[2018-02-13T00:40:36.023] [INFO] cheese - inserting 1000 documents. first: Ezequias and last: List of Shadow Raiders planets +[2018-02-13T00:40:36.056] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:40:36.094] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:40:36.135] [INFO] cheese - inserting 1000 documents. first: Rallus indicus and last: Pirelli General FC +[2018-02-13T00:40:36.135] [INFO] cheese - inserting 1000 documents. first: Zübeyde Süpürgeci and last: Barcelona (Spanish Congress Electoral District) +[2018-02-13T00:40:36.175] [INFO] cheese - inserting 1000 documents. first: The Constance Perkins House and last: Category:Suicide bombings in Somalia +[2018-02-13T00:40:36.178] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:40:36.194] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:40:36.286] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:40:36.443] [INFO] cheese - inserting 1000 documents. first: Ukrainian Second League 1999-00 and last: The Billy Bush Show! +[2018-02-13T00:40:36.451] [INFO] cheese - inserting 1000 documents. first: Category:Division Films films and last: File:The Canadian Institute of Diversity and Inclusion.jpg +[2018-02-13T00:40:36.484] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:40:36.490] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:40:36.499] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in the Cook Islands and last: Category:Teen superhero television programs +[2018-02-13T00:40:36.542] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:40:36.544] [INFO] cheese - inserting 1000 documents. first: Otel Madimak and last: Forbes (band) +[2018-02-13T00:40:36.578] [INFO] cheese - inserting 1000 documents. first: Florida's 22nd congressional district and last: Earl Siebert +[2018-02-13T00:40:36.584] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:40:36.602] [INFO] cheese - inserting 1000 documents. first: Bergen Air Transport and last: This Place Hotel +[2018-02-13T00:40:36.662] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:40:36.733] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T00:40:36.783] [INFO] cheese - inserting 1000 documents. first: File:Laurapausini gira madrid.jpg and last: Category:Education in Union County, Mississippi +[2018-02-13T00:40:36.898] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:40:37.034] [INFO] cheese - inserting 1000 documents. first: Journey to Self and last: Busan–Gimhae Light Rail Transit Company +[2018-02-13T00:40:37.043] [INFO] cheese - inserting 1000 documents. first: Heather Mansfield and last: Category:LGBT Native Hawaiian culture +[2018-02-13T00:40:37.065] [INFO] cheese - inserting 1000 documents. first: List of governors of Kabul and last: Wikipedia:WikiProject Spam/LinkReports/bangboard.de +[2018-02-13T00:40:37.103] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:40:37.135] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:40:37.152] [INFO] cheese - inserting 1000 documents. first: Quarter-pinched sphere theorem and last: Flag of Chukotka +[2018-02-13T00:40:37.174] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:40:37.220] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:40:37.260] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk archive/Language/2006 August 13 and last: Portal:Humor/Weekly Colaboration/Next Week +[2018-02-13T00:40:37.319] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:40:37.388] [INFO] cheese - inserting 1000 documents. first: Category:Education in Montgomery County, Mississippi and last: Wikipedia:WikiProject Spam/Local/pingsite.org +[2018-02-13T00:40:37.441] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:40:37.568] [INFO] cheese - inserting 1000 documents. first: Mircea Baniciu and last: 5678's +[2018-02-13T00:40:37.602] [INFO] cheese - inserting 1000 documents. first: Juliusz Fortunat Kossak and last: Tahoe-LAFS +[2018-02-13T00:40:37.607] [INFO] cheese - inserting 1000 documents. first: Abdulamalek Al-Shammeri and last: Category:Wikipedia sockpuppets of Kanojiaakhbaar +[2018-02-13T00:40:37.620] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T00:40:37.642] [INFO] cheese - inserting 1000 documents. first: Thomson River Dam and last: Laura Ucros Tellez +[2018-02-13T00:40:37.653] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:40:37.693] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Cape Verde articles and last: Category:A-Class Uganda articles +[2018-02-13T00:40:37.707] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:40:37.713] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:40:37.740] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:40:37.816] [INFO] cheese - inserting 1000 documents. first: Lau Kong Yung v Director of Immigration and last: Yom kippur war +[2018-02-13T00:40:37.849] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:40:37.852] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lovemyseat and last: Roughton, Norfolk +[2018-02-13T00:40:37.909] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:40:38.022] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of XZillX and last: Shahid Ghoddoosi Metro Station +[2018-02-13T00:40:38.048] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:40:38.069] [INFO] cheese - inserting 1000 documents. first: Lake Kolima and last: Microaggressions +[2018-02-13T00:40:38.086] [INFO] cheese - inserting 1000 documents. first: Les Rallizes Denudes and last: Orestes H. Caldwell +[2018-02-13T00:40:38.105] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:40:38.126] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:40:38.135] [INFO] cheese - inserting 1000 documents. first: 1997 "M" Electronika Cup and last: Set logic +[2018-02-13T00:40:38.163] [INFO] cheese - inserting 1000 documents. first: Qaleh Ganj and last: Category:Chinese fighter aircraft 1940–1949 +[2018-02-13T00:40:38.197] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:40:38.195] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:40:38.307] [INFO] cheese - inserting 1000 documents. first: Earina autumnalis and last: Megas (album) +[2018-02-13T00:40:38.352] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:40:38.368] [INFO] cheese - inserting 1000 documents. first: 2016 russian parliamentary elections and last: Real Man (disambiguation) +[2018-02-13T00:40:38.404] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:40:38.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Systemic Bias and last: Phillip Ashton +[2018-02-13T00:40:38.465] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:40:38.477] [INFO] cheese - inserting 1000 documents. first: Category:Economic and Social Research Institute and last: Category:Law firms of Spain +[2018-02-13T00:40:38.519] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:40:38.554] [INFO] cheese - inserting 1000 documents. first: Category:Czech military trainer aircraft 2000–2009 and last: Wikipedia:WikiProject Spam/Local/solarmovie.eu +[2018-02-13T00:40:38.582] [INFO] cheese - inserting 1000 documents. first: Blue-Will and last: Red-eared-slider turtle +[2018-02-13T00:40:38.630] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:40:38.641] [INFO] cheese - inserting 1000 documents. first: 5-6-7-8s and last: Coup of the Voluntaries +[2018-02-13T00:40:38.649] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:40:38.702] [INFO] cheese - inserting 1000 documents. first: Jeff Trandahl and last: Category:Wikipedia requested maps in Kentucky +[2018-02-13T00:40:38.769] [INFO] cheese - batch complete in: 1.149 secs +[2018-02-13T00:40:38.808] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:40:38.892] [INFO] cheese - inserting 1000 documents. first: Category:Fb competition templates 2015–16 and last: Beer Mixes +[2018-02-13T00:40:38.920] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:40:39.023] [INFO] cheese - inserting 1000 documents. first: Drakula halála and last: List of compositions by Otto Albert Tichy +[2018-02-13T00:40:39.030] [INFO] cheese - inserting 1000 documents. first: Young lovers and last: Category:Trams portal +[2018-02-13T00:40:39.072] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:40:39.075] [INFO] cheese - inserting 1000 documents. first: Orville Alfred Ralston and last: Mothers and Daughters: A Three-Generational Study of Health Attitudes and Behaviour +[2018-02-13T00:40:39.087] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:40:39.166] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:40:39.250] [INFO] cheese - inserting 1000 documents. first: Kwon Oh-son and last: (7792) 1995 WZ3 +[2018-02-13T00:40:39.293] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:40:39.342] [INFO] cheese - inserting 1000 documents. first: Category:Mexican fantasy and last: U.S. presidential elections in Minnesota +[2018-02-13T00:40:39.342] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested maps in California and last: File:Macpherson Emblem.gif +[2018-02-13T00:40:39.404] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:40:39.406] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:40:39.559] [INFO] cheese - inserting 1000 documents. first: Church of St. James, New Brighton and last: Tiz Post +[2018-02-13T00:40:39.637] [INFO] cheese - inserting 1000 documents. first: Ascendancy (game) and last: Agnes von Esterhazy +[2018-02-13T00:40:39.649] [INFO] cheese - inserting 1000 documents. first: Soviet submarine K-56 and last: Brendan Schaub +[2018-02-13T00:40:39.656] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:40:39.703] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:40:39.706] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:40:39.766] [INFO] cheese - inserting 1000 documents. first: Hittite Grammar and last: Wikipedia:WikiProject Spam/LinkReports/rioaventura.com.mx +[2018-02-13T00:40:39.796] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:40:39.913] [INFO] cheese - inserting 1000 documents. first: US presidential elections in Michigan and last: Sicilian Defence, Katalimov Variation +[2018-02-13T00:40:39.960] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:40:39.999] [INFO] cheese - inserting 1000 documents. first: Tiz and last: CAAWC +[2018-02-13T00:40:40.040] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:40:40.060] [INFO] cheese - inserting 1000 documents. first: Venetsianov and last: Wikipedia:Requests for mediation/Geostrategy +[2018-02-13T00:40:40.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Database reports/Indefinitely fully-protected talk pages/Configuration and last: William H. Taft High School (San Antonio) +[2018-02-13T00:40:40.107] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:40:40.138] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople by state in Germany and last: Wikipedia:WikiProject Spam/LinkReports/historiasdecardoso.blogspot.com +[2018-02-13T00:40:40.146] [INFO] cheese - inserting 1000 documents. first: Kunming City and last: Wikipedia:Version 1.0 Editorial Team/Sierra Leone articles by quality log +[2018-02-13T00:40:40.148] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:40:40.198] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:40:40.204] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:40:40.221] [INFO] cheese - inserting 1000 documents. first: Nigger toe and last: Embarkation Room +[2018-02-13T00:40:40.242] [INFO] cheese - inserting 1000 documents. first: Category:Road bridges on the National Register of Historic Places in Idaho and last: FLSA (disambiguation) +[2018-02-13T00:40:40.275] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:40:40.295] [INFO] cheese - batch complete in: 1.526 secs +[2018-02-13T00:40:40.433] [INFO] cheese - inserting 1000 documents. first: Maithri and last: 21 Demands (band) +[2018-02-13T00:40:40.459] [INFO] cheese - inserting 1000 documents. first: Verizon ringtones and last: Lillian Smith (author) +[2018-02-13T00:40:40.477] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:40:40.508] [INFO] cheese - inserting 1000 documents. first: EdlSA III and last: Southeastern Loloish +[2018-02-13T00:40:40.509] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:40:40.530] [INFO] cheese - inserting 1000 documents. first: Pepsi NFL Rookie of the Week and last: Triple-dot punctuation mark +[2018-02-13T00:40:40.561] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:40:40.594] [INFO] cheese - inserting 1000 documents. first: Ferdinand Lee Barnett (disambiguation) and last: Magda Bruggemann +[2018-02-13T00:40:40.595] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:40:40.633] [INFO] cheese - inserting 1000 documents. first: Merseyside East (European Parliament constituency) and last: 1933 Penya Rhin Grand Prix +[2018-02-13T00:40:40.649] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:40:40.703] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:40:40.828] [INFO] cheese - inserting 1000 documents. first: Submarine Squadron 15 and last: Category:Spanish military reconnaissance aircraft 2000–2009 +[2018-02-13T00:40:40.849] [INFO] cheese - inserting 1000 documents. first: American Ultra and last: Moroccan Royal Gendarmerie +[2018-02-13T00:40:40.855] [INFO] cheese - inserting 1000 documents. first: Yamada Line (Kintetsu) and last: Kraljeva Sutjeska Franciscan Monastery +[2018-02-13T00:40:40.865] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:40:40.909] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:40:40.920] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:40:40.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/asb-computer.com and last: C30H26O12 +[2018-02-13T00:40:41.019] [INFO] cheese - inserting 1000 documents. first: Abu al-Saqr Abd al-Aziz Ibn Uthman Ibn Ali al-Qabisi l-Mawsili and last: Portrait of Carrie Lucas +[2018-02-13T00:40:41.022] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:40:41.071] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:40:41.193] [INFO] cheese - inserting 1000 documents. first: Template:Three Village Central School District Schools and last: Portal:Mammals/Selected articles/Layout +[2018-02-13T00:40:41.259] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:40:41.276] [INFO] cheese - inserting 1000 documents. first: Boreham, Wiltshire and last: Kushu +[2018-02-13T00:40:41.283] [INFO] cheese - inserting 1000 documents. first: The Staple Swingers and last: Category:University departments in Canada +[2018-02-13T00:40:41.327] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:40:41.342] [INFO] cheese - inserting 1000 documents. first: Ganges Chasma and last: Roman Catholic Archdiocese of Munich and Freising +[2018-02-13T00:40:41.348] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:40:41.432] [INFO] cheese - inserting 1000 documents. first: The dakotas (Band) and last: Tyniste nad Orlici +[2018-02-13T00:40:41.437] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T00:40:41.472] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:40:41.524] [INFO] cheese - inserting 1000 documents. first: Category:AS Saint-Étienne (Ladies) and last: Regulatory chill +[2018-02-13T00:40:41.552] [INFO] cheese - inserting 1000 documents. first: Proanthocyanidin B2 and last: Wikipedia:Sockpuppet investigations/Uruuru/Archive +[2018-02-13T00:40:41.565] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:40:41.623] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:40:41.746] [INFO] cheese - inserting 1000 documents. first: Kuchow and last: Nanna montana +[2018-02-13T00:40:41.746] [INFO] cheese - inserting 1000 documents. first: Mobi-green car and last: 27th Battalion (City of Winnipeg), CEF +[2018-02-13T00:40:41.769] [INFO] cheese - inserting 1000 documents. first: Stokksundet (disambiguation) and last: Her Space Holiday (album) +[2018-02-13T00:40:41.781] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:40:41.792] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:40:41.827] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:40:41.931] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/TomTheHand and last: Wikipedia:Miscellany for deletion/User:Sportwoo +[2018-02-13T00:40:41.952] [INFO] cheese - inserting 1000 documents. first: Sunnydale Syndrome and last: Consensual violence +[2018-02-13T00:40:41.970] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:40:42.007] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:40:42.073] [INFO] cheese - inserting 1000 documents. first: Record Plant Black and last: Wrong Side of the Street +[2018-02-13T00:40:42.138] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:40:42.144] [INFO] cheese - inserting 1000 documents. first: Suedehead: The Best Of Morrissey and last: Template:Did you know nominations/An Anglo-American Alliance +[2018-02-13T00:40:42.172] [INFO] cheese - inserting 1000 documents. first: Timeline of the War in Afghanistan (May 2004) and last: KTNL (AM) +[2018-02-13T00:40:42.197] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:40:42.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Height and intelligence and last: Fe(3+) +[2018-02-13T00:40:42.219] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:40:42.259] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:40:42.263] [INFO] cheese - inserting 1000 documents. first: File:Electronic balance.svg and last: Category:Rail mountain passes of Mexico +[2018-02-13T00:40:42.314] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:40:42.360] [INFO] cheese - inserting 1000 documents. first: Arban (military unit) and last: Harvest Remixes +[2018-02-13T00:40:42.434] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:40:42.461] [INFO] cheese - inserting 1000 documents. first: Undivided expressway and last: File:France colonial Empire1.png +[2018-02-13T00:40:42.503] [INFO] cheese - inserting 1000 documents. first: WPSL (AM) and last: Real Madrid CF 2007-08 season +[2018-02-13T00:40:42.510] [INFO] cheese - inserting 1000 documents. first: Category:Defunct organisations based in Somalia and last: Albert Tullgren +[2018-02-13T00:40:42.519] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:40:42.539] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:40:42.560] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:40:42.592] [INFO] cheese - inserting 1000 documents. first: Michael Felix Lynch and last: Category:Protected areas of Polk County, Tennessee +[2018-02-13T00:40:42.620] [INFO] cheese - inserting 1000 documents. first: Ravi Prakash and last: Chah-e Dazu +[2018-02-13T00:40:42.635] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:40:42.674] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:40:42.795] [INFO] cheese - inserting 1000 documents. first: Template:User OS:Windows/doc and last: Byzantine–Bulgarian Treaty of 815 +[2018-02-13T00:40:42.832] [INFO] cheese - inserting 1000 documents. first: Waiting for a World War and last: USA soccer national team +[2018-02-13T00:40:42.883] [INFO] cheese - inserting 1000 documents. first: AHQ Western Desert and last: S A von Rottemburg +[2018-02-13T00:40:42.955] [INFO] cheese - inserting 1000 documents. first: Category:Euglenozoa and last: Woodcock Township, PA +[2018-02-13T00:40:42.965] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:40:42.975] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:40:43.046] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:40:43.070] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:40:43.095] [INFO] cheese - inserting 1000 documents. first: Sarah Thomas (badminton) and last: روزي اليازجي +[2018-02-13T00:40:43.096] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Polk County, Tennessee and last: Coolibah Tree +[2018-02-13T00:40:43.182] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:40:43.192] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:40:43.226] [INFO] cheese - inserting 1000 documents. first: Chah-e Jalal, Dalgan and last: Wikipedia:Reference desk/Archives/Miscellaneous/2014 February 7 +[2018-02-13T00:40:43.290] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:40:43.455] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/high-supplies.com and last: Wikipedia:WikiProject Spam/LinkReports/cinemaretro.com +[2018-02-13T00:40:43.542] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:40:43.547] [INFO] cheese - inserting 1000 documents. first: Ann Aldrich and last: Happy Valley Athletic Association +[2018-02-13T00:40:43.570] [INFO] cheese - inserting 1000 documents. first: File:JLTcover.gif and last: Reteni +[2018-02-13T00:40:43.613] [INFO] cheese - inserting 1000 documents. first: Category:1998 health disasters and last: File:One Fine Day (Katherine Jenkins album) coverart.jpg +[2018-02-13T00:40:43.623] [INFO] cheese - inserting 1000 documents. first: Saginaw Arts and Sciences Academy and last: KMYS +[2018-02-13T00:40:43.628] [INFO] cheese - inserting 1000 documents. first: Alma Gould Dale and last: TimedText:The Monster (Eminem featuring Rihanna) sample.ogg.en.srt +[2018-02-13T00:40:43.630] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:40:43.639] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:40:43.687] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:40:43.694] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:40:43.707] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:40:43.797] [INFO] cheese - inserting 1000 documents. first: File:Lambton Jaffas FC.png and last: File:Wmow 2014.png +[2018-02-13T00:40:43.908] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:40:44.137] [INFO] cheese - inserting 1000 documents. first: Hot-metal typography and last: Category:History of Belgrade +[2018-02-13T00:40:44.176] [INFO] cheese - inserting 1000 documents. first: Nerwa (Chopal), Shimla and last: Steve Martin (sportscaster) +[2018-02-13T00:40:44.176] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:40:44.203] [INFO] cheese - inserting 1000 documents. first: Category:Photography in Pakistan and last: Wikipedia:WikiProject Spam/Local/sh.horrycountyschools.net +[2018-02-13T00:40:44.231] [INFO] cheese - inserting 1000 documents. first: File:Kenny Chesney - Setting the World on Fire (single cover).jpg and last: Category:Recipients of the Padma Bhushan in other fields +[2018-02-13T00:40:44.233] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:40:44.247] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:40:44.249] [INFO] cheese - inserting 1000 documents. first: Jan des bouvrie and last: The Last Open Road +[2018-02-13T00:40:44.279] [INFO] cheese - inserting 1000 documents. first: File:UFC on FOX 11 event poster.jpg and last: Halim Alizehi +[2018-02-13T00:40:44.285] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:40:44.295] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:40:44.317] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:40:44.418] [INFO] cheese - inserting 1000 documents. first: CSU Hayward and last: Category:Demographics of Uganda +[2018-02-13T00:40:44.465] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:40:44.528] [INFO] cheese - inserting 1000 documents. first: File:KREX-TV Logo.png and last: Şerafettin Işık +[2018-02-13T00:40:44.534] [INFO] cheese - inserting 1000 documents. first: Vivendi Trophy and last: Jean-Robens Jerome +[2018-02-13T00:40:44.577] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:40:44.584] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:40:44.631] [INFO] cheese - inserting 1000 documents. first: A House: Live in Concert and last: Mid-Century Insurance Company +[2018-02-13T00:40:44.670] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:40:44.688] [INFO] cheese - inserting 1000 documents. first: El alma de los niños and last: Amata atricornis +[2018-02-13T00:40:44.694] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ahmad Behbahani and last: Louis Ginsberg (poet) +[2018-02-13T00:40:44.720] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:40:44.727] [INFO] cheese - inserting 1000 documents. first: Creation evolution debate and last: Cardiff and The Vale of Glamorgan Scout Area (The Scout Association) +[2018-02-13T00:40:44.729] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:40:44.773] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:40:44.959] [INFO] cheese - inserting 1000 documents. first: C. Linnaeus and last: Thatcher government +[2018-02-13T00:40:44.984] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Germany/Did you know/2 and last: Wikipedia:Articles for deletion/Pocahontas Middle School (2nd nomination) +[2018-02-13T00:40:44.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bradjonesmusic/Archive and last: California marble +[2018-02-13T00:40:45.011] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:40:45.014] [INFO] cheese - inserting 1000 documents. first: Bampur-e Sharqi Rural District and last: Sah Kahooran +[2018-02-13T00:40:45.026] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:40:45.056] [INFO] cheese - inserting 1000 documents. first: Mesta Castillana and last: Villa della Regina +[2018-02-13T00:40:45.067] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:40:45.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Place and last: H. Gordon Barrett +[2018-02-13T00:40:45.078] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:40:45.143] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:40:45.218] [INFO] cheese - inserting 1000 documents. first: Autopista AP-2 and last: Vess L. Ossman +[2018-02-13T00:40:45.251] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:40:45.306] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:40:45.526] [INFO] cheese - inserting 1000 documents. first: California Marble and last: Callistola elegans +[2018-02-13T00:40:45.552] [INFO] cheese - inserting 1000 documents. first: Sar Kuhuran and last: Guildhall (video gaming) +[2018-02-13T00:40:45.577] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:40:45.634] [INFO] cheese - inserting 1000 documents. first: Nanofountain Probe and last: Category:1999 establishments in the Bahamas +[2018-02-13T00:40:45.638] [INFO] cheese - inserting 1000 documents. first: Frank E. Sheeder III and last: Lefèbvre's Ringlet +[2018-02-13T00:40:45.637] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:40:45.680] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:40:45.700] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:40:45.791] [INFO] cheese - inserting 1000 documents. first: Ottawa—Carleton and last: Jegindoe +[2018-02-13T00:40:45.797] [INFO] cheese - inserting 1000 documents. first: Master Derby and last: Lindsay Ellingson +[2018-02-13T00:40:45.867] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:40:45.897] [INFO] cheese - inserting 1000 documents. first: The Yin & The Yang and last: Wikipedia:Deletion review/Log/2006 August 18 +[2018-02-13T00:40:45.907] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T00:40:46.028] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:40:46.110] [INFO] cheese - inserting 1000 documents. first: Kohei Yoshioka and last: Macau women's national under-16 basketball team +[2018-02-13T00:40:46.194] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:40:46.209] [INFO] cheese - inserting 1000 documents. first: Guild (video gaming) and last: Angie McAllister +[2018-02-13T00:40:46.285] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:40:46.367] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Hollyoaks/See also and last: 10050 Cielo Dr +[2018-02-13T00:40:46.408] [INFO] cheese - inserting 1000 documents. first: Lumped system and last: Kotreshi Kanasu +[2018-02-13T00:40:46.434] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:40:46.485] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:40:46.499] [INFO] cheese - inserting 1000 documents. first: Joseph-Arthur Barrette and last: Protestants in Japan +[2018-02-13T00:40:46.582] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:40:46.636] [INFO] cheese - inserting 1000 documents. first: Jason "Wee-Man" Acuña and last: Carl Hayman +[2018-02-13T00:40:46.639] [INFO] cheese - inserting 1000 documents. first: 2016 Open d'Orléans – Doubles and last: Fossil fuels in the United KIngdom +[2018-02-13T00:40:46.681] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:40:46.693] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:40:46.745] [INFO] cheese - inserting 1000 documents. first: @ShittingtonUK and last: Template:User Part Time Resident-Antrim +[2018-02-13T00:40:46.752] [INFO] cheese - inserting 1000 documents. first: Evan S. Connell, Jr. and last: Jay Hill +[2018-02-13T00:40:46.779] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:40:46.814] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:40:46.870] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Jay Pritzker Pavilion/archive1 and last: Parallelia crameri +[2018-02-13T00:40:46.912] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:40:46.917] [INFO] cheese - inserting 1000 documents. first: 10050 Cielo Dr. and last: Kursaal (amusement park) +[2018-02-13T00:40:46.964] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:40:47.031] [INFO] cheese - inserting 1000 documents. first: Protestants in Tuvalu and last: Category:Baroque printmakers +[2018-02-13T00:40:47.048] [INFO] cheese - inserting 1000 documents. first: Category:Scottish people of Yoruba descent and last: Gracilibacillus ureilyticus +[2018-02-13T00:40:47.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Godfrey (lyricist) and last: Portal:Donald Trump/Wikimedia +[2018-02-13T00:40:47.074] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:40:47.099] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:40:47.112] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:40:47.171] [INFO] cheese - inserting 1000 documents. first: Wigratzbad and last: Cute Overload +[2018-02-13T00:40:47.229] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:40:47.294] [INFO] cheese - inserting 1000 documents. first: Dysgonia achatina and last: Theodore, Philippa and companions +[2018-02-13T00:40:47.333] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:40:47.345] [INFO] cheese - inserting 1000 documents. first: Leżajski and last: The Song of Ceylon +[2018-02-13T00:40:47.375] [INFO] cheese - inserting 1000 documents. first: Dosequis and last: Unified Braille Code +[2018-02-13T00:40:47.382] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:40:47.403] [INFO] cheese - inserting 1000 documents. first: Category:People from Sniatyn and last: Template:WikiProject Hollyoaks/class +[2018-02-13T00:40:47.469] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:40:47.480] [INFO] cheese - inserting 1000 documents. first: Aspergillus rambellii and last: Alexander Glebov (alpine skier) +[2018-02-13T00:40:47.533] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:40:47.558] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:40:47.585] [INFO] cheese - inserting 1000 documents. first: File:Robert Hermon-Hodge.jpg and last: United States Senate election in West Virginia, 1889 +[2018-02-13T00:40:47.693] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:40:47.817] [INFO] cheese - inserting 1000 documents. first: Let It Will Be (Madonna Song) and last: Toro Nagashi +[2018-02-13T00:40:47.901] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:40:47.931] [INFO] cheese - inserting 1000 documents. first: MiG-29: Deadly Adversary of Falcon 3.0 and last: Gymnopilus noviholocirrhus +[2018-02-13T00:40:48.028] [INFO] cheese - inserting 1000 documents. first: Ultraman Agul and last: Pennsylvania's 45th Senatorial District +[2018-02-13T00:40:48.044] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:40:48.173] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:40:48.333] [INFO] cheese - inserting 1000 documents. first: George Wild and last: Philippine Women's University – School of Fine Arts and Design +[2018-02-13T00:40:48.352] [INFO] cheese - inserting 1000 documents. first: Zip code 73841 and last: KM94 +[2018-02-13T00:40:48.398] [INFO] cheese - inserting 1000 documents. first: Pensole and last: Valea Bolvașnița +[2018-02-13T00:40:48.410] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:40:48.415] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:40:48.498] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T00:40:48.559] [INFO] cheese - inserting 1000 documents. first: The Notorious Byrd Brothers and last: Sir Winston Churchill Secondary School (Vancouver) +[2018-02-13T00:40:48.588] [INFO] cheese - inserting 1000 documents. first: Gymnopilus novoguineensis and last: Danse Macabre Records +[2018-02-13T00:40:48.623] [INFO] cheese - inserting 1000 documents. first: Category:Logic conferences and last: Big Ten Football MVP +[2018-02-13T00:40:48.639] [INFO] cheese - batch complete in: 1.17 secs +[2018-02-13T00:40:48.638] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:40:48.704] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:40:48.707] [INFO] cheese - inserting 1000 documents. first: Pennsylvania's 44th Senatorial District and last: Bresil +[2018-02-13T00:40:48.815] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:40:48.871] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2014-02-19/Featured content and last: Pennsylvania Avenue Historic District (East St. Louis, Illinois) +[2018-02-13T00:40:48.908] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:40:48.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2011 October 9 and last: Tiruvannamalai Sambuvarayar district +[2018-02-13T00:40:48.981] [INFO] cheese - inserting 1000 documents. first: Category:Pro-life organisations in the United Kingdom and last: Natasha Carter +[2018-02-13T00:40:48.981] [INFO] cheese - inserting 1000 documents. first: 22nd Madras Native Infantry and last: The Pig Got Up And Slowly Walked Away +[2018-02-13T00:40:49.017] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:40:49.037] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:40:49.074] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:40:49.172] [INFO] cheese - inserting 1000 documents. first: Shabaton and last: Category:FA-Class Theatre articles +[2018-02-13T00:40:49.188] [INFO] cheese - inserting 1000 documents. first: Here With Me and last: File:Windows Longhorn logo.svg +[2018-02-13T00:40:49.220] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:40:49.229] [INFO] cheese - inserting 1000 documents. first: Category:2013 in Supersport racing and last: Steele's Aspasia +[2018-02-13T00:40:49.234] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:40:49.286] [INFO] cheese - inserting 1000 documents. first: Indian Remote Sensing and last: Unixtime +[2018-02-13T00:40:49.294] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:40:49.352] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:40:49.361] [INFO] cheese - inserting 1000 documents. first: Rajnagar (community development block) and last: Văn Yên District, Yen Bai +[2018-02-13T00:40:49.365] [INFO] cheese - inserting 1000 documents. first: Texas Air International and last: Fox-Pitt Kelton Cochran Caronia Waller +[2018-02-13T00:40:49.429] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:40:49.462] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:40:49.490] [INFO] cheese - inserting 1000 documents. first: File:Indian Institute of Technology (Indian School of Mines), Dhanbad Logo.jpg.png and last: Category:Show caves in Hungary +[2018-02-13T00:40:49.599] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:40:49.779] [INFO] cheese - inserting 1000 documents. first: Sheridan's Valley Campaign and last: Punjabi Chandu Halwai Karachiwala +[2018-02-13T00:40:49.848] [INFO] cheese - inserting 1000 documents. first: SETRPC and last: Nigerian Money Offers +[2018-02-13T00:40:49.896] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:40:50.082] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:40:50.171] [INFO] cheese - inserting 1000 documents. first: Flavon and last: Gesundbrunnen (Berlin U-Bahn) +[2018-02-13T00:40:50.248] [INFO] cheese - inserting 1000 documents. first: SZD-C Żuraw and last: Finnegan, Alberta +[2018-02-13T00:40:50.298] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T00:40:50.360] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T00:40:50.408] [INFO] cheese - inserting 1000 documents. first: András Gáspár, general and last: Borj Qalaouiyeh +[2018-02-13T00:40:50.426] [INFO] cheese - inserting 1000 documents. first: Category:Agricultural marketing organizations and last: Wikipedia:Articles for deletion/OtherWise +[2018-02-13T00:40:50.429] [INFO] cheese - inserting 1000 documents. first: Annie Douglas and last: Template:User 3D Warehouse +[2018-02-13T00:40:50.490] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T00:40:50.526] [INFO] cheese - inserting 1000 documents. first: Yusefabad, Gowhar Kuh and last: Fath Ali Akhund-zade +[2018-02-13T00:40:50.542] [INFO] cheese - batch complete in: 1.113 secs +[2018-02-13T00:40:50.545] [INFO] cheese - batch complete in: 1.193 secs +[2018-02-13T00:40:50.580] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:40:50.843] [INFO] cheese - inserting 1000 documents. first: Template:Quebec Metropolitan Community and last: 1985 QL +[2018-02-13T00:40:50.922] [INFO] cheese - inserting 1000 documents. first: OK, It's Alright With Me and last: Michael Healy +[2018-02-13T00:40:50.936] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T00:40:50.993] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:40:51.034] [INFO] cheese - inserting 1000 documents. first: Voltastraße (Berlin U-Bahn) and last: Helena Vondrackova +[2018-02-13T00:40:51.057] [INFO] cheese - inserting 1000 documents. first: Fath Ali Akhundzade and last: Euxanthis patriciana +[2018-02-13T00:40:51.064] [INFO] cheese - inserting 1000 documents. first: Borj Qalaouiye and last: Tomas Rousek +[2018-02-13T00:40:51.093] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:40:51.104] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:40:51.109] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:40:51.221] [INFO] cheese - inserting 1000 documents. first: Kato Sotiritsa and last: Cuneacolotis +[2018-02-13T00:40:51.276] [INFO] cheese - inserting 1000 documents. first: Club Hel (The Matrix) and last: R57 road +[2018-02-13T00:40:51.288] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:40:51.310] [INFO] cheese - inserting 1000 documents. first: Scottish Museum and last: German submarine UC-38 +[2018-02-13T00:40:51.359] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:40:51.363] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:40:51.374] [INFO] cheese - inserting 1000 documents. first: Bonfire Madigan and last: Joseph Robbie +[2018-02-13T00:40:51.457] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:40:51.791] [INFO] cheese - inserting 1000 documents. first: Saliceto, Piedmont and last: Jyuudai Yuuki +[2018-02-13T00:40:51.837] [INFO] cheese - inserting 1000 documents. first: Gideona and last: Rhapsody of Zephyr +[2018-02-13T00:40:51.856] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:40:51.860] [INFO] cheese - inserting 1000 documents. first: Texas Township, Dent County, Missouri and last: File:Scouts Wadi el Nil (Copts and Egyptian Catholic Christians) 1930s.png +[2018-02-13T00:40:51.885] [INFO] cheese - inserting 1000 documents. first: Shlomi Ben Hemo and last: Cisthene barnesii +[2018-02-13T00:40:51.923] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:40:51.928] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:40:52.023] [INFO] cheese - inserting 1000 documents. first: German submarine UC38 and last: ZIP Air +[2018-02-13T00:40:52.037] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T00:40:52.123] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:40:52.248] [INFO] cheese - inserting 1000 documents. first: Bottoms Up (Bottom episode) and last: R356 road (South Africa) +[2018-02-13T00:40:52.263] [INFO] cheese - inserting 1000 documents. first: Kanawha Airport/Yeager AIrport and last: The Bollweevils (band) +[2018-02-13T00:40:52.321] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T00:40:52.359] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T00:40:52.514] [INFO] cheese - inserting 1000 documents. first: Alexander I Balas and last: Category:Batočina +[2018-02-13T00:40:52.570] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:40:52.595] [INFO] cheese - inserting 1000 documents. first: K05EQ and last: Rover SD1 Vitesse +[2018-02-13T00:40:52.659] [INFO] cheese - inserting 1000 documents. first: Downtown Yonge Business Improvement Area and last: Wikipedia:Portal peer review/Archive/September 2009 +[2018-02-13T00:40:52.659] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:40:52.708] [INFO] cheese - inserting 1000 documents. first: Category:Asian Canoeing Championships and last: Wikipedia:Articles for deletion/Alex Biega (2nd nomination) +[2018-02-13T00:40:52.723] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:40:52.731] [INFO] cheese - inserting 1000 documents. first: Category:American Juniors songs and last: Rachel weiscz +[2018-02-13T00:40:52.813] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:40:52.834] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T00:40:52.974] [INFO] cheese - inserting 1000 documents. first: Kijevo (Batočina) and last: Wikipedia:WikiProject Spam/LinkReports/worldwholesalejerseys.com +[2018-02-13T00:40:52.984] [INFO] cheese - inserting 1000 documents. first: Comparative benefits and last: Japanese Fifty-Fourth Army +[2018-02-13T00:40:53.014] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:40:53.025] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:40:53.078] [INFO] cheese - inserting 1000 documents. first: Illice liberomacula and last: Zombie Night +[2018-02-13T00:40:53.082] [INFO] cheese - inserting 1000 documents. first: Moss pubis and last: United States Highway 34 +[2018-02-13T00:40:53.122] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:40:53.141] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:40:53.230] [INFO] cheese - inserting 1000 documents. first: Mike Edwards (basketball) and last: Little March +[2018-02-13T00:40:53.291] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:40:53.344] [INFO] cheese - inserting 1000 documents. first: Rachel Weiscz and last: Dee (song) +[2018-02-13T00:40:53.397] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:40:53.420] [INFO] cheese - inserting 1000 documents. first: Thomas Randle and last: Antonio Calbo +[2018-02-13T00:40:53.470] [INFO] cheese - inserting 1000 documents. first: Working Men and last: Na Koa Ikaika Maui +[2018-02-13T00:40:53.473] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:40:53.520] [INFO] cheese - inserting 1000 documents. first: Hary and last: No Tears For The Creatures +[2018-02-13T00:40:53.541] [INFO] cheese - inserting 1000 documents. first: File:Vergil gameplay DMC3.jpg and last: Franciscan Hospitaller Sisters of the Immaculate Conception +[2018-02-13T00:40:53.559] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T00:40:53.568] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:40:53.610] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:40:53.666] [INFO] cheese - inserting 1000 documents. first: Krueck and Sexton Architects and last: Frankfurt zoological society +[2018-02-13T00:40:53.721] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:40:53.724] [INFO] cheese - inserting 1000 documents. first: United States Highway 33 and last: Jan Krasiński +[2018-02-13T00:40:53.788] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:40:53.859] [INFO] cheese - inserting 1000 documents. first: Module:Location map/data/Switzerland and last: File:CETB Microbiology and Fermentation Laboratory.jpg +[2018-02-13T00:40:53.912] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:40:53.940] [INFO] cheese - inserting 1000 documents. first: Nordenveld, Norg and last: Scudder Klyce +[2018-02-13T00:40:54.019] [INFO] cheese - inserting 1000 documents. first: CRACKED.com and last: Aufi tower +[2018-02-13T00:40:54.111] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:40:54.154] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:40:54.216] [INFO] cheese - inserting 1000 documents. first: File:BS219 Digital Super Hi Res.jpeg and last: Chainat Hornbill +[2018-02-13T00:40:54.282] [INFO] cheese - inserting 1000 documents. first: Wojewodztwo opolskie and last: Rossini (surname) +[2018-02-13T00:40:54.282] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:40:54.390] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T00:40:54.451] [INFO] cheese - inserting 1000 documents. first: Miracle (Ilse DeLange song) and last: Pseudotulostoma +[2018-02-13T00:40:54.522] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:40:54.549] [INFO] cheese - inserting 1000 documents. first: The Trust That Has Burst and last: Leslie P. Arnold +[2018-02-13T00:40:54.637] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:40:54.644] [INFO] cheese - inserting 1000 documents. first: Bodily Functions (album) and last: Newport, Ohio (Washington County) +[2018-02-13T00:40:54.701] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:40:54.750] [INFO] cheese - inserting 1000 documents. first: Tony Cottee and last: BitTorrent tracker +[2018-02-13T00:40:54.752] [INFO] cheese - inserting 1000 documents. first: Monte Carlo Hotel and Casino and last: S. C. A. R. S. (military) +[2018-02-13T00:40:54.767] [INFO] cheese - inserting 1000 documents. first: File:Mischief makers 04.jpg and last: Stadion Střelecký ostrov +[2018-02-13T00:40:54.796] [INFO] cheese - inserting 1000 documents. first: Battle of the Hawkesbury and last: Controlled studies +[2018-02-13T00:40:54.797] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:40:54.811] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:40:54.821] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T00:40:54.868] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:40:54.946] [INFO] cheese - inserting 1000 documents. first: Shermansdale, Pennsylvania and last: Eldon Township, Ontario +[2018-02-13T00:40:54.996] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:40:55.044] [INFO] cheese - inserting 1000 documents. first: El Coloso del Parque and last: David Dale (New York politician) +[2018-02-13T00:40:55.093] [INFO] cheese - inserting 1000 documents. first: Charles Newell Fowler and last: Dixie Melody Boys +[2018-02-13T00:40:55.099] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:40:55.126] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:40:55.167] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Vellore and last: Indira Freitas Johnson +[2018-02-13T00:40:55.174] [INFO] cheese - inserting 1000 documents. first: Template:Tfm2 and last: Prawdzic Coat of Arms +[2018-02-13T00:40:55.209] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:40:55.234] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:40:55.274] [INFO] cheese - inserting 1000 documents. first: Renshaw and last: Christopher Ward (disambiguation) +[2018-02-13T00:40:55.326] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:40:55.345] [INFO] cheese - inserting 1000 documents. first: Category:Education in Burke County, Georgia and last: 2D PAGE +[2018-02-13T00:40:55.401] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:40:55.410] [INFO] cheese - inserting 1000 documents. first: File:Tspace spiral2 final.png and last: Template:Canadian federal election, 1993/qc-me +[2018-02-13T00:40:55.471] [INFO] cheese - inserting 1000 documents. first: 2020 Ryder Cup and last: Corymbia clarksoniana +[2018-02-13T00:40:55.498] [INFO] cheese - inserting 1000 documents. first: Gorova River (Tur) and last: .shop +[2018-02-13T00:40:55.505] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:40:55.538] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:40:55.632] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:40:55.703] [INFO] cheese - inserting 1000 documents. first: Home for Christmas (song) and last: Wellman (surname) +[2018-02-13T00:40:55.731] [INFO] cheese - inserting 1000 documents. first: American University of the Caribbean N.V. and last: Gymnastics Australia +[2018-02-13T00:40:55.770] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:40:55.787] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:40:55.891] [INFO] cheese - inserting 1000 documents. first: Category:Buddhist temples in Inner Mongolia and last: Template:Giant-star-stub +[2018-02-13T00:40:55.934] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:40:55.946] [INFO] cheese - inserting 1000 documents. first: Cornel Coman and last: Sophronitis perrinii +[2018-02-13T00:40:56.011] [INFO] cheese - inserting 1000 documents. first: Dorothy M. Emmet and last: Francis Milman +[2018-02-13T00:40:56.035] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:40:56.099] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:40:56.164] [INFO] cheese - inserting 1000 documents. first: History of Rock and last: Leffincourt +[2018-02-13T00:40:56.214] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:40:56.256] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz W460 and last: Bad faith (existentialism) +[2018-02-13T00:40:56.265] [INFO] cheese - inserting 1000 documents. first: Category:Laos–Thailand border crossings and last: Category:Bishops of Nassau +[2018-02-13T00:40:56.313] [INFO] cheese - inserting 1000 documents. first: Jacob, FL and last: Aliabad, Sangan +[2018-02-13T00:40:56.318] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:40:56.358] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:40:56.372] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:40:56.585] [INFO] cheese - inserting 1000 documents. first: South Texas Botanical Gardens & Nature Center and last: Turkified +[2018-02-13T00:40:56.690] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:40:56.749] [INFO] cheese - inserting 1000 documents. first: K. P. Kurup and last: Dennis RoadyVlogs +[2018-02-13T00:40:56.753] [INFO] cheese - inserting 1000 documents. first: Piso's conspiracy and last: Category:Former bishoprics in Ireland +[2018-02-13T00:40:56.800] [INFO] cheese - inserting 1000 documents. first: Willa Cather Foundation and last: Wikipedia:Did you know/Halloween 2009 +[2018-02-13T00:40:56.829] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:40:56.843] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:40:56.861] [INFO] cheese - inserting 1000 documents. first: Barney Miller (season 6) and last: Category:RFC Liège +[2018-02-13T00:40:56.864] [INFO] cheese - inserting 1000 documents. first: Lépron-les-Vallées and last: Sinsat +[2018-02-13T00:40:56.864] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:40:56.936] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:40:56.945] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:40:57.078] [INFO] cheese - inserting 1000 documents. first: Forty-seven ronin and last: Puerco pibil +[2018-02-13T00:40:57.088] [INFO] cheese - inserting 1000 documents. first: Agah Pasha and last: History of Bernie, Missouri +[2018-02-13T00:40:57.110] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T00:40:57.143] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:40:57.198] [INFO] cheese - inserting 1000 documents. first: D6 Star Wars and last: Prom Night IV: Deliver Us from Evil +[2018-02-13T00:40:57.276] [INFO] cheese - inserting 1000 documents. first: Category:RFC Liège managers and last: Hirgan (disambiguation) +[2018-02-13T00:40:57.287] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:40:57.305] [INFO] cheese - inserting 1000 documents. first: Category:Looney Tunes home video releases and last: Template:Did you know nominations/Catherine Sandoval +[2018-02-13T00:40:57.305] [INFO] cheese - inserting 1000 documents. first: History of Berry Hill, Tennessee and last: History of Clyde, Texas +[2018-02-13T00:40:57.306] [INFO] cheese - inserting 1000 documents. first: Madhouse: A Tragic Tale of Megalomania and Modern Medicine and last: Wikipedia:Version 1.0 Editorial Team/Rugby league (State of Origin) articles by quality/2 +[2018-02-13T00:40:57.331] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:40:57.356] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:40:57.368] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:40:57.404] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:40:57.546] [INFO] cheese - inserting 1000 documents. first: Sor, Ariège and last: Jacqui Frazier-Lyde +[2018-02-13T00:40:57.605] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:40:57.653] [INFO] cheese - inserting 1000 documents. first: History of Clyde Hill, Washington and last: Manny Villar +[2018-02-13T00:40:57.684] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:40:57.753] [INFO] cheese - inserting 1000 documents. first: Tapesovo and last: Category:Pakistani qawwali singers +[2018-02-13T00:40:57.772] [INFO] cheese - inserting 1000 documents. first: Love is Stronger Than Pride and last: Wikipedia:Sockpuppet investigations/DocOfSoc/Archive +[2018-02-13T00:40:57.793] [INFO] cheese - inserting 1000 documents. first: Template:List of civil parishes in England and last: Alaska Department of Commerce +[2018-02-13T00:40:57.801] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:40:57.805] [INFO] cheese - inserting 1000 documents. first: Windesheim University of Applied Sciences and last: James Collip +[2018-02-13T00:40:57.811] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:40:57.832] [INFO] cheese - inserting 1000 documents. first: Asset-based financing and last: History of Fürth +[2018-02-13T00:40:57.845] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:40:57.851] [INFO] cheese - inserting 1000 documents. first: Home health (disambiguation) and last: Knottin +[2018-02-13T00:40:57.863] [INFO] cheese - batch complete in: 0.179 secs +[2018-02-13T00:40:57.882] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:40:57.903] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:40:57.984] [INFO] cheese - inserting 1000 documents. first: Corbières, Aude and last: St. Matthew's, Haslington +[2018-02-13T00:40:58.038] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:40:58.048] [INFO] cheese - inserting 1000 documents. first: History of Füzuli and last: Category:1694 establishments in the Holy Roman Empire +[2018-02-13T00:40:58.067] [INFO] cheese - batch complete in: 0.204 secs +[2018-02-13T00:40:58.248] [INFO] cheese - inserting 1000 documents. first: H. A. Clark Memorial Field and last: Category:Schools in Oconee County, Georgia +[2018-02-13T00:40:58.256] [INFO] cheese - inserting 1000 documents. first: Western Tedi language and last: SaveThePsychoExWife.com +[2018-02-13T00:40:58.258] [INFO] cheese - inserting 1000 documents. first: History of Indian Hill, Ohio and last: History of Lockhart, Texas +[2018-02-13T00:40:58.273] [INFO] cheese - inserting 1000 documents. first: National Indian Youth Council and last: Pseudotropheus greshakei +[2018-02-13T00:40:58.274] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:40:58.299] [INFO] cheese - inserting 1000 documents. first: Peter Underwood (parapsychologist) and last: Wikipedia:PRESCOTTRUSSELL +[2018-02-13T00:40:58.300] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:40:58.300] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:40:58.330] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:40:58.378] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:40:58.532] [INFO] cheese - inserting 1000 documents. first: History of Lockwood, Missouri and last: History of Nashville, Kansas +[2018-02-13T00:40:58.537] [INFO] cheese - inserting 1000 documents. first: Portal:Anarchism/Anniversaries/January/January 13 and last: Template:Disney Characters +[2018-02-13T00:40:58.558] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T00:40:58.581] [INFO] cheese - inserting 1000 documents. first: Marco Follini and last: Promoter of the faith +[2018-02-13T00:40:58.596] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:40:58.729] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:40:58.851] [INFO] cheese - inserting 1000 documents. first: Kalvebod Brygge and last: Haydarpaşa-Gebze Commuter Line +[2018-02-13T00:40:58.920] [INFO] cheese - inserting 1000 documents. first: Antônio Campos and last: Template:2014 Thai Premier League table +[2018-02-13T00:40:58.940] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:40:58.972] [INFO] cheese - inserting 1000 documents. first: History of Nashville, North Carolina and last: History of Prescott, Kansas +[2018-02-13T00:40:59.000] [INFO] cheese - inserting 1000 documents. first: Joe Tarto and last: File:Harryosb.PNG +[2018-02-13T00:40:59.022] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:40:59.022] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:40:59.067] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:40:59.085] [INFO] cheese - inserting 1000 documents. first: Bennington Township, Morrow County, Ohio and last: Botanical Medicine +[2018-02-13T00:40:59.176] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:40:59.213] [INFO] cheese - inserting 1000 documents. first: Kutzenhausen, Bas-Rhin and last: Wikipedia:WikiProject Spam/LinkReports/takestan20.blogfa.comتاتهای +[2018-02-13T00:40:59.293] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:40:59.317] [INFO] cheese - inserting 1000 documents. first: History of Prescott, Oregon and last: History of Sisters, Oregon +[2018-02-13T00:40:59.327] [INFO] cheese - inserting 1000 documents. first: Pea protein and last: Merry Widow Waltz +[2018-02-13T00:40:59.361] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:40:59.371] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:40:59.437] [INFO] cheese - inserting 1000 documents. first: EU2 and last: Minamiawaji +[2018-02-13T00:40:59.489] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:40:59.497] [INFO] cheese - inserting 1000 documents. first: Edward Peck Curtis and last: Wikipedia:Valued picture candidates/7 lions +[2018-02-13T00:40:59.537] [INFO] cheese - inserting 1000 documents. first: History of Sistersville, West Virginia and last: History of Villa María +[2018-02-13T00:40:59.551] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:40:59.556] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T00:40:59.567] [INFO] cheese - inserting 1000 documents. first: Astro (Satellite TV) and last: File:Vampire Lestat Original.jpg +[2018-02-13T00:40:59.586] [INFO] cheese - inserting 1000 documents. first: File:Bliss n Eso - On Tour.jpg and last: File:Skolomowski film Le depart 1967 poster.jpg +[2018-02-13T00:40:59.606] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:40:59.653] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:40:59.714] [INFO] cheese - inserting 1000 documents. first: Little Bay East and last: The Complete Stories (O'Connor) +[2018-02-13T00:40:59.753] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:40:59.756] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2011 October 18 and last: Wikipedia:Wikipedia Signpost/Archives/2011-10-24 +[2018-02-13T00:40:59.809] [INFO] cheese - inserting 1000 documents. first: History of Villa Park, California and last: Club Deportivo San José +[2018-02-13T00:40:59.809] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:40:59.839] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:40:59.905] [INFO] cheese - inserting 1000 documents. first: Consumer Watchdog (USA) and last: File:Tales from the Crypt 24.jpg +[2018-02-13T00:40:59.918] [INFO] cheese - inserting 1000 documents. first: Deme (Biology) and last: GAM +[2018-02-13T00:40:59.942] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:40:59.961] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:41:00.070] [INFO] cheese - inserting 1000 documents. first: Raffaele Esposito and last: Windmill Lane Studios +[2018-02-13T00:41:00.109] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1984 Summer Olympics – Men's hammer throw and last: File:Insideininsideout.jpg +[2018-02-13T00:41:00.132] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:41:00.160] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:41:00.216] [INFO] cheese - inserting 1000 documents. first: Elisabeth Jacobsen and last: Team Rocket trio +[2018-02-13T00:41:00.250] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:41:00.307] [INFO] cheese - inserting 1000 documents. first: Abhipur and last: Eric Ellenbogen +[2018-02-13T00:41:00.313] [INFO] cheese - inserting 1000 documents. first: South Persian Rifles and last: Aceval, Miguel +[2018-02-13T00:41:00.324] [INFO] cheese - inserting 1000 documents. first: Warehouse district, Hamburg and last: Category:Monitors of the United States Navy +[2018-02-13T00:41:00.352] [INFO] cheese - inserting 1000 documents. first: Autumn In New York and last: Kuria people +[2018-02-13T00:41:00.358] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:41:00.368] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:41:00.454] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:41:00.527] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:41:00.804] [INFO] cheese - inserting 1000 documents. first: Fifth Panzer Army (Germany) and last: Gazan +[2018-02-13T00:41:00.875] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:41:00.878] [INFO] cheese - inserting 1000 documents. first: YRT Viva Pink and last: File:Channel digital image magenta.jpg +[2018-02-13T00:41:00.888] [INFO] cheese - inserting 1000 documents. first: John Marie Durst and last: Intermodal containers +[2018-02-13T00:41:00.894] [INFO] cheese - inserting 1000 documents. first: Lycée Camille Sée (Colmar) and last: History of Battens Crossroads, Alabama +[2018-02-13T00:41:00.921] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:41:00.931] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:41:00.933] [INFO] cheese - inserting 1000 documents. first: Acevedo, Abraham and last: Perry Hannah House +[2018-02-13T00:41:00.945] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:41:00.997] [INFO] cheese - inserting 1000 documents. first: The Lord Of The Rings: The Fellowship Of The Ring and last: Catherine Cavadini +[2018-02-13T00:41:01.008] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:41:01.054] [INFO] cheese - inserting 1000 documents. first: List of animal welfare and animal rights groups and last: Hair Restoration +[2018-02-13T00:41:01.057] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:41:01.109] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:41:01.134] [INFO] cheese - inserting 1000 documents. first: History of Battles Wharf, Alabama and last: History of Veto, Alabama +[2018-02-13T00:41:01.161] [INFO] cheese - batch complete in: 0.216 secs +[2018-02-13T00:41:01.220] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance British Antarctic Territory articles and last: Portal:Cricket/Anniversaries/February/February 20 +[2018-02-13T00:41:01.259] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:41:01.325] [INFO] cheese - inserting 1000 documents. first: Template:UEFA Euro 2016 qualifying Group F table and last: Canadian federal election 1917 +[2018-02-13T00:41:01.362] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:41:01.408] [INFO] cheese - inserting 1000 documents. first: Ciba-Geigy Drew Award for Biomedical Research and last: Andrew Krier +[2018-02-13T00:41:01.445] [INFO] cheese - inserting 1000 documents. first: Conductive atomic force microscopy and last: Cineworld Dublin +[2018-02-13T00:41:01.452] [INFO] cheese - inserting 1000 documents. first: Mme. de Montespan and last: English travellers +[2018-02-13T00:41:01.458] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:41:01.484] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:41:01.498] [INFO] cheese - inserting 1000 documents. first: Seth M R Jaipuria School, Lucknow and last: Ouvrage L'Agaisen +[2018-02-13T00:41:01.500] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:41:01.513] [INFO] cheese - inserting 1000 documents. first: History of Victoria, Alabama and last: Michel Batista +[2018-02-13T00:41:01.530] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:41:01.544] [INFO] cheese - inserting 1000 documents. first: Category:Free Jabber clients and last: Troy Lee Gentry +[2018-02-13T00:41:01.560] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:41:01.622] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:41:01.751] [INFO] cheese - inserting 1000 documents. first: Valery Brezdenyuk and last: Aryan Football Club +[2018-02-13T00:41:01.805] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:41:01.822] [INFO] cheese - inserting 1000 documents. first: Community Bank and last: Wikipedia:WikiProject Spam/LinkReports/canvasopedia.org +[2018-02-13T00:41:01.863] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:41:01.885] [INFO] cheese - inserting 1000 documents. first: Template:2007 New Zealand Schools squad and last: Hrabischitz +[2018-02-13T00:41:01.903] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/brightstorm.com and last: Category:Portland Trail Blazers owners +[2018-02-13T00:41:01.924] [INFO] cheese - inserting 1000 documents. first: President of Saint Christopher and last: National Redoubt +[2018-02-13T00:41:01.939] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:41:01.962] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:41:02.032] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:41:02.048] [INFO] cheese - inserting 1000 documents. first: Bougainvilla and last: Category:Battles of the Northwest Indian War +[2018-02-13T00:41:02.149] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:41:02.195] [INFO] cheese - inserting 1000 documents. first: 2006.02 and last: Category:Wikipedia sockpuppets of Cretanpride +[2018-02-13T00:41:02.315] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/canvasopedia.org and last: Muravlenko Urban Okrug +[2018-02-13T00:41:02.314] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:41:02.373] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:41:02.415] [INFO] cheese - inserting 1000 documents. first: Confessions of a Torpe and last: Cerro Muyu Orqo +[2018-02-13T00:41:02.495] [INFO] cheese - inserting 1000 documents. first: Alexandra Palace railway station (1873-1954) and last: File:Zero kara Hajimeru Mahō no Sho, volume 1.jpg +[2018-02-13T00:41:02.557] [INFO] cheese - inserting 1000 documents. first: Covurlui, Leova and last: 1946 William & Mary Tribe football team +[2018-02-13T00:41:02.563] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:41:02.568] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:41:02.665] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:41:02.701] [INFO] cheese - inserting 1000 documents. first: Arthur Moreira Lima (pianist) and last: Kapunda Football Club +[2018-02-13T00:41:02.816] [INFO] cheese - inserting 1000 documents. first: Novy Urengoy Urban Okrug and last: Category:French bomber aircraft 1920-1929 +[2018-02-13T00:41:02.833] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:41:02.906] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:41:02.943] [INFO] cheese - inserting 1000 documents. first: Lomas de Santa Anita, Baja California and last: History of Port Republic, New Jersey +[2018-02-13T00:41:02.992] [INFO] cheese - inserting 1000 documents. first: File:Srisailam dam India.jpg and last: Å, Lavangen +[2018-02-13T00:41:03.013] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:41:03.055] [INFO] cheese - inserting 1000 documents. first: Origins of the papal tiara and last: History of Mozilla Thunderbird +[2018-02-13T00:41:03.056] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:41:03.161] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T00:41:03.237] [INFO] cheese - inserting 1000 documents. first: 1947 William & Mary Tribe football team and last: Cargilfield Trinity School +[2018-02-13T00:41:03.254] [INFO] cheese - inserting 1000 documents. first: Template:China-newspaper-stub and last: Revenue stamps of Singapore +[2018-02-13T00:41:03.287] [INFO] cheese - inserting 1000 documents. first: Snowy-breasted Hummingbird and last: Middle East & Africa Region +[2018-02-13T00:41:03.298] [INFO] cheese - inserting 1000 documents. first: History of Port Washington, Wisconsin and last: Serampore Town railway station +[2018-02-13T00:41:03.309] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:41:03.329] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:41:03.359] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:41:03.367] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:41:03.372] [INFO] cheese - inserting 1000 documents. first: Piquancy and last: File:Alice nine - Zekkeishoku.jpg +[2018-02-13T00:41:03.441] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:41:03.630] [INFO] cheese - inserting 1000 documents. first: Å, Tranøy and last: Cres (island) +[2018-02-13T00:41:03.693] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:41:03.772] [INFO] cheese - inserting 1000 documents. first: Victor-Amédée III and last: Malign tissue +[2018-02-13T00:41:03.801] [INFO] cheese - inserting 1000 documents. first: Category:Sports museums in Japan and last: Template:Fb team Sokol-PZhD Saratov +[2018-02-13T00:41:03.837] [INFO] cheese - inserting 1000 documents. first: Category:Italian military aircraft 1930-1939 and last: Peter Kirk (Director) +[2018-02-13T00:41:03.844] [INFO] cheese - inserting 1000 documents. first: Swindlehurst and last: Category:Ireland–Soviet Union relations +[2018-02-13T00:41:03.845] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:41:03.847] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:41:03.894] [INFO] cheese - inserting 1000 documents. first: File:Jiyoshaansee.jpg and last: Kumkum Bhagya +[2018-02-13T00:41:03.895] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:41:03.918] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:41:03.978] [INFO] cheese - inserting 1000 documents. first: Beaulieu, Cantal and last: Nylink +[2018-02-13T00:41:03.981] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:41:04.031] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:41:04.127] [INFO] cheese - inserting 1000 documents. first: William Orlando Smith and last: Virginia Route 71 +[2018-02-13T00:41:04.191] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:41:04.297] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Saturn-1991 St. Petersburg and last: Afaa M. Weaver +[2018-02-13T00:41:04.307] [INFO] cheese - inserting 1000 documents. first: Saurabh Gadgil and last: Fran Moore +[2018-02-13T00:41:04.330] [INFO] cheese - inserting 1000 documents. first: Berom language and last: Charles Allen Du Val +[2018-02-13T00:41:04.341] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:41:04.345] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:41:04.403] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:41:04.410] [INFO] cheese - inserting 1000 documents. first: Athletic Insight: The Online Journal of Sport Psychology and last: Rive gauche +[2018-02-13T00:41:04.415] [INFO] cheese - inserting 1000 documents. first: 2014 TCU Horned Frogs baseball team and last: Enterovirus D +[2018-02-13T00:41:04.453] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:41:04.472] [INFO] cheese - inserting 1000 documents. first: Elu Thingol and last: Uzboi Vallis +[2018-02-13T00:41:04.480] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:41:04.555] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:41:04.692] [INFO] cheese - inserting 1000 documents. first: VA 71 and last: Krinkov +[2018-02-13T00:41:04.700] [INFO] cheese - inserting 1000 documents. first: Template:CompetitionRecordThird-Fourth and last: Buruscho +[2018-02-13T00:41:04.719] [INFO] cheese - inserting 1000 documents. first: Percy Evans Freke and last: Category:Swedish aircraft 1980-1989 +[2018-02-13T00:41:04.760] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:41:04.791] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:41:04.823] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:41:04.998] [INFO] cheese - inserting 1000 documents. first: Boychoir (film) and last: Template:NYCS Platform Layout CCS +[2018-02-13T00:41:05.002] [INFO] cheese - inserting 1000 documents. first: Prime Outlets - International and last: Category:NA-Class Indian music articles +[2018-02-13T00:41:05.064] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:41:05.065] [INFO] cheese - inserting 1000 documents. first: Ohr HaChayim and last: Template:Years in Video Gaming +[2018-02-13T00:41:05.078] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:41:05.134] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:41:05.169] [INFO] cheese - inserting 1000 documents. first: Quasi open map and last: Vragočanica +[2018-02-13T00:41:05.225] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:41:05.288] [INFO] cheese - inserting 1000 documents. first: Return to the Apocalyptic City and last: Portal:Trains/Featured article/Week 29, 2005 +[2018-02-13T00:41:05.302] [INFO] cheese - inserting 1000 documents. first: Category:Neighbourhoods in Japan and last: Template:COTWCurrentPicks +[2018-02-13T00:41:05.339] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:41:05.345] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:41:05.440] [INFO] cheese - inserting 1000 documents. first: Draft:Bryan Pearson and last: Ubian Banadan language +[2018-02-13T00:41:05.449] [INFO] cheese - inserting 1000 documents. first: Saltdal Commune, Rognan and last: Conservative Bible Project +[2018-02-13T00:41:05.480] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:41:05.536] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:41:05.546] [INFO] cheese - inserting 1000 documents. first: Beraud Stuart of Aubigny and last: Norbert Likulia Bolongo +[2018-02-13T00:41:05.579] [INFO] cheese - inserting 1000 documents. first: Campground Historic District and last: Portal:Uttar Pradesh/Anniversaries/February/February 6 +[2018-02-13T00:41:05.616] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:41:05.646] [INFO] cheese - inserting 1000 documents. first: Chairman of the Revolutionary Command Council of Libya and last: Category:1562 treaties +[2018-02-13T00:41:05.661] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:41:05.729] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:41:05.756] [INFO] cheese - inserting 1000 documents. first: File:Sumo4-vi.jpg and last: Gheorghe Tzitzeica +[2018-02-13T00:41:05.804] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:41:05.875] [INFO] cheese - inserting 1000 documents. first: Cythera (disambiguation) and last: Ackroyd, Christa +[2018-02-13T00:41:05.910] [INFO] cheese - inserting 1000 documents. first: Mainz-Finthen Airport and last: Targeted Israeli air strike +[2018-02-13T00:41:05.917] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:41:05.973] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:41:06.043] [INFO] cheese - inserting 1000 documents. first: Rehman Khalid and last: Annie (1982 movie) +[2018-02-13T00:41:06.135] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Featured article/Week 30, 2005 and last: Shinjiro Otani +[2018-02-13T00:41:06.141] [INFO] cheese - inserting 1000 documents. first: Verizon Wireless Amphitheatre Kansas City and last: Outwrests +[2018-02-13T00:41:06.150] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:41:06.197] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:41:06.215] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T00:41:06.268] [INFO] cheese - inserting 1000 documents. first: Itsuka Kitto... and last: Dismorphia lycosura +[2018-02-13T00:41:06.376] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:41:06.390] [INFO] cheese - inserting 1000 documents. first: File:Macbeth2006poster.jpg and last: Full Negative (or) Breaks +[2018-02-13T00:41:06.463] [INFO] cheese - inserting 1000 documents. first: Ackroyd, David and last: Pseudosphex consobrina +[2018-02-13T00:41:06.519] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:41:06.660] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:41:06.674] [INFO] cheese - inserting 1000 documents. first: Category:Law firms established in 1937 and last: Dunamis Lui +[2018-02-13T00:41:06.727] [INFO] cheese - inserting 1000 documents. first: File:Clannadthebest.jpg and last: History of the African Union +[2018-02-13T00:41:06.748] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:41:06.789] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:41:06.918] [INFO] cheese - inserting 1000 documents. first: Walk of Life (album) and last: Donum +[2018-02-13T00:41:06.921] [INFO] cheese - inserting 1000 documents. first: Gabe Marzano and last: Hong Kong-Thailand relations +[2018-02-13T00:41:06.996] [INFO] cheese - inserting 1000 documents. first: HMS Active (1758) and last: Wikipedia:WikiProject Spam/LinkReports/craies.crihan.fr +[2018-02-13T00:41:07.009] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:41:07.037] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T00:41:07.103] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:41:07.133] [INFO] cheese - inserting 1000 documents. first: Moritomo Saegusa and last: Poddębice County +[2018-02-13T00:41:07.183] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Dominica articles and last: Jean-Louis Prianon +[2018-02-13T00:41:07.186] [INFO] cheese - inserting 1000 documents. first: Template:Filmfare Award for Best Film and last: 1873 World Exhibition +[2018-02-13T00:41:07.200] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:41:07.224] [INFO] cheese - inserting 1000 documents. first: Built for the Kill and last: Singapore Open (men's tennis) +[2018-02-13T00:41:07.226] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:41:07.269] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:41:07.308] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:41:07.480] [INFO] cheese - inserting 1000 documents. first: Kamuku languages and last: Gary Owen (comedian) +[2018-02-13T00:41:07.531] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:41:07.850] [INFO] cheese - inserting 1000 documents. first: Advanced Level (United Kingdom) and last: Nazareth Motor Speedway +[2018-02-13T00:41:07.913] [INFO] cheese - inserting 1000 documents. first: ELJ Center and last: Twilight (2008 movie) +[2018-02-13T00:41:07.917] [INFO] cheese - inserting 1000 documents. first: Category:Unknown-importance Jamaica articles and last: Kashabowie +[2018-02-13T00:41:07.935] [INFO] cheese - inserting 1000 documents. first: Imaginary (sociology) and last: Wikipedia:Articles for deletion/Quartermilegame +[2018-02-13T00:41:07.955] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:41:07.966] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T00:41:07.980] [INFO] cheese - inserting 1000 documents. first: Powiat of Poddębice and last: Cargo Cult Science +[2018-02-13T00:41:08.006] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian canoeists and last: Wikipedia:WikiProject Spam/LinkReports/volgaboat.ru +[2018-02-13T00:41:08.036] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:41:08.116] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:41:08.180] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T00:41:08.224] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T00:41:08.358] [INFO] cheese - inserting 1000 documents. first: Astrée(Typeface) and last: Cocoon (Meg & Dia Album) +[2018-02-13T00:41:08.420] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T00:41:08.540] [INFO] cheese - inserting 1000 documents. first: Buzduganii de Jos and last: Jamie Smith (footballer, born 1981) +[2018-02-13T00:41:08.547] [INFO] cheese - inserting 1000 documents. first: Category:Telecommunications companies established in 1953 and last: Category:Defunct organisations based in Barbados +[2018-02-13T00:41:08.554] [INFO] cheese - inserting 1000 documents. first: ⁐ and last: Enrichment (record producer) +[2018-02-13T00:41:08.580] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:41:08.616] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:41:08.628] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:41:08.653] [INFO] cheese - inserting 1000 documents. first: Freeman V. Horner and last: HMNZS Santon +[2018-02-13T00:41:08.723] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:41:08.747] [INFO] cheese - inserting 1000 documents. first: Nova Canaa Paulista and last: Nangong +[2018-02-13T00:41:08.805] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:41:08.836] [INFO] cheese - inserting 1000 documents. first: Template:User Proud Indonesian and last: Elizabeth Jill Cowley +[2018-02-13T00:41:08.874] [INFO] cheese - inserting 1000 documents. first: File:Book-cover unintended consequences.jpg and last: Bareback (disambiguation) +[2018-02-13T00:41:08.908] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:41:08.949] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:41:09.076] [INFO] cheese - inserting 1000 documents. first: Template:Garden-book-stub and last: Pothavaram +[2018-02-13T00:41:09.081] [INFO] cheese - inserting 1000 documents. first: Category:Childhood in Pakistan and last: Eunidia spilotoides snizekiana +[2018-02-13T00:41:09.134] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:41:09.155] [INFO] cheese - inserting 1000 documents. first: Postal codes in Austria and last: Erythranthe breweri +[2018-02-13T00:41:09.150] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:41:09.199] [INFO] cheese - inserting 1000 documents. first: Wandering bishops and last: United States House of Representatives elections in California, 1876 +[2018-02-13T00:41:09.230] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:41:09.283] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:41:09.287] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 66 and last: Category:Wikipedian singers +[2018-02-13T00:41:09.295] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Cacopinae and last: Duan Siping +[2018-02-13T00:41:09.369] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:41:09.372] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:41:09.583] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia talk pages with the Wikia content template and last: Stanisław Stefański +[2018-02-13T00:41:09.655] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:41:09.666] [INFO] cheese - inserting 1000 documents. first: Eunidia spilotoides spilotoides and last: File:EvaBluRayBox.jpg +[2018-02-13T00:41:09.672] [INFO] cheese - inserting 1000 documents. first: Electoral Action of Poles in Lithuania and last: The St. Paul Travelers Companies, Inc. +[2018-02-13T00:41:09.724] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:41:09.779] [INFO] cheese - inserting 1000 documents. first: Sasa Branezac and last: Morris Engines +[2018-02-13T00:41:09.801] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:41:09.850] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:41:09.913] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Kaišiadorys and last: Angliers +[2018-02-13T00:41:09.923] [INFO] cheese - inserting 1000 documents. first: Cleveland Symphony and last: NZGSM 2002 (Afghanistan) +[2018-02-13T00:41:09.929] [INFO] cheese - inserting 1000 documents. first: University of Applied Sciences Wiener Neustadt and last: Crivitz (crater on Mars) +[2018-02-13T00:41:09.993] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:41:09.998] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:41:10.039] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:41:10.210] [INFO] cheese - inserting 1000 documents. first: University of Applied Sciences Worms and last: Adamo, Mark +[2018-02-13T00:41:10.321] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:41:10.331] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bruma Lake Flea Market, Gauteng and last: Nikolay Vasilyevich Fyodorov +[2018-02-13T00:41:10.357] [INFO] cheese - inserting 1000 documents. first: The St. Paul Companies Incorporated and last: LFF +[2018-02-13T00:41:10.396] [INFO] cheese - inserting 1000 documents. first: Overmatching and last: Utah State Route 113 (1931) +[2018-02-13T00:41:10.404] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:41:10.437] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:41:10.474] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:41:10.544] [INFO] cheese - inserting 1000 documents. first: File:Iris Murdoch.jpg and last: Virtual machine escape +[2018-02-13T00:41:10.602] [INFO] cheese - inserting 1000 documents. first: Cut-leaf banksia and last: Tower Plaza (Ann Arbor, Michigan) +[2018-02-13T00:41:10.649] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:41:10.667] [INFO] cheese - inserting 1000 documents. first: Angoulins and last: Armadillo (magazine) +[2018-02-13T00:41:10.683] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:41:10.756] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:41:10.879] [INFO] cheese - inserting 1000 documents. first: Nestorone and last: Category:1956 software +[2018-02-13T00:41:10.922] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:41:11.033] [INFO] cheese - inserting 1000 documents. first: Freedom to Operate Search and last: Wikipedia:WikiProject Spam/LinkReports/britesources.com +[2018-02-13T00:41:11.049] [INFO] cheese - inserting 1000 documents. first: Benedictine Abbey of St. Matthew and last: Syrian Arab Socialist Ba'ath Party +[2018-02-13T00:41:11.050] [INFO] cheese - inserting 1000 documents. first: Adamo, Nicola and last: Karate at the 2010 Asian Games – Women's kumite 61 kg +[2018-02-13T00:41:11.118] [INFO] cheese - inserting 1000 documents. first: Coriandrum sativum and last: Colby, Clark County, WI +[2018-02-13T00:41:11.107] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:41:11.162] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:41:11.166] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:41:11.276] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T00:41:11.292] [INFO] cheese - inserting 1000 documents. first: Mouzon, Charente and last: OneMine +[2018-02-13T00:41:11.342] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:41:11.352] [INFO] cheese - inserting 1000 documents. first: L’Oréal-UNESCO Awards for Women in Science and last: Benteng Stadium +[2018-02-13T00:41:11.403] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:41:11.518] [INFO] cheese - inserting 1000 documents. first: Syrian Arab Socialist Baath Party and last: Banei Kinen +[2018-02-13T00:41:11.525] [INFO] cheese - inserting 1000 documents. first: Medtech and last: 2013 IIHF World Women's U18 Championship – Division I +[2018-02-13T00:41:11.562] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:41:11.565] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:41:11.568] [INFO] cheese - inserting 1000 documents. first: Rural Municipality of Cambria No. 6 and last: Ohio House of Representatives membership, 128th General Assembly +[2018-02-13T00:41:11.602] [INFO] cheese - inserting 1000 documents. first: Category:Technology companies established in 1924 and last: Category:Dutch alternate history novels +[2018-02-13T00:41:11.624] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:41:11.650] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:41:11.783] [INFO] cheese - inserting 1000 documents. first: Natchitoches Airport and last: Đà Bắc District +[2018-02-13T00:41:11.834] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:41:11.859] [INFO] cheese - inserting 1000 documents. first: Colby, WI and last: Presidents of the Government of Spain +[2018-02-13T00:41:11.863] [INFO] cheese - inserting 1000 documents. first: Erric Pegram and last: Alexandre Lebziak +[2018-02-13T00:41:11.919] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:41:11.924] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:41:11.962] [INFO] cheese - inserting 1000 documents. first: Toongabbie, New South Wales and last: Template:Did you know nominations/Unity for Socialism +[2018-02-13T00:41:11.980] [INFO] cheese - inserting 1000 documents. first: With All of My Heart and last: Ukrainian First League 2005–06 +[2018-02-13T00:41:11.999] [INFO] cheese - inserting 1000 documents. first: Thomas Charveriat and last: Dungeon Ghyll Force +[2018-02-13T00:41:12.029] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:41:12.032] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:41:12.077] [INFO] cheese - inserting 1000 documents. first: Category:Economic history of El Salvador and last: Constructus Corporation +[2018-02-13T00:41:12.089] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:41:12.136] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:41:12.424] [INFO] cheese - inserting 1000 documents. first: Category:Romanian emigrants to Norway and last: File:Legion of the Damned (film).jpg +[2018-02-13T00:41:12.456] [INFO] cheese - inserting 1000 documents. first: Goodbye, Mr. Despair and last: Gloria (disambiguation) +[2018-02-13T00:41:12.477] [INFO] cheese - inserting 1000 documents. first: Viterbo Cathedral and last: Charleston, Oregon +[2018-02-13T00:41:12.483] [INFO] cheese - inserting 1000 documents. first: Douglas Munro (actor) and last: Coral belt +[2018-02-13T00:41:12.497] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/GW Patriot (2nd nomination) and last: Category:ANZAC +[2018-02-13T00:41:12.497] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:41:12.574] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:41:12.590] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:41:12.639] [INFO] cheese - inserting 1000 documents. first: Sterna forsteri and last: Culture of San Francisco, CA +[2018-02-13T00:41:12.573] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:41:12.668] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:41:12.676] [INFO] cheese - inserting 1000 documents. first: Puerto Viejo Talamanca and last: O'Neill, Martin +[2018-02-13T00:41:12.754] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:41:12.792] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T00:41:13.049] [INFO] cheese - inserting 1000 documents. first: Scottish Intercollegiate Guidelines Network and last: THE TEKE +[2018-02-13T00:41:13.094] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:41:13.124] [INFO] cheese - inserting 1000 documents. first: Brean and last: Jim Wright Field +[2018-02-13T00:41:13.184] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:41:13.193] [INFO] cheese - inserting 1000 documents. first: Oliver, Martin and last: Yangtze Jiang +[2018-02-13T00:41:13.220] [INFO] cheese - inserting 1000 documents. first: La legione dei dannati and last: Demographic of Ferizaj +[2018-02-13T00:41:13.249] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:41:13.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/October 11, 2009 and last: ATCvet code QG02 +[2018-02-13T00:41:13.292] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:41:13.330] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:41:13.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bi-permissive and last: Election Results, OH Governor (Democratic Primaries) +[2018-02-13T00:41:13.403] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:41:13.454] [INFO] cheese - inserting 1000 documents. first: Saryuparin Brahmins and last: The Collected Works of C.G. Jung +[2018-02-13T00:41:13.490] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:41:13.513] [INFO] cheese - inserting 1000 documents. first: Madame Pace and last: Michael Niall +[2018-02-13T00:41:13.588] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:41:13.606] [INFO] cheese - inserting 1000 documents. first: Bailey v. United States and last: Gunnbjorn Ulf-Krakuson +[2018-02-13T00:41:13.671] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T00:41:13.686] [INFO] cheese - inserting 1000 documents. first: E. D. van Oort and last: Category:Populated places on the National Register of Historic Places in New Mexico +[2018-02-13T00:41:13.688] [INFO] cheese - inserting 1000 documents. first: Would I Lie To You and last: Wikipedia:WikiProject Spam/Local/muslimsaustralia.com.au +[2018-02-13T00:41:13.730] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:41:13.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/LISA MVC and last: Alpine skiing at the 2010 Winter Olympics – Men's combined +[2018-02-13T00:41:13.749] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:41:13.786] [INFO] cheese - inserting 1000 documents. first: The Collected Works of CG Jung and last: Eugene Konovaletz +[2018-02-13T00:41:13.814] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:41:13.833] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:41:14.009] [INFO] cheese - inserting 1000 documents. first: Election Results, OH Lieutenant Governor (Democratic Primaries) and last: Aberdeenshire rowie +[2018-02-13T00:41:14.065] [INFO] cheese - inserting 1000 documents. first: Howard Breslin and last: Division 3 1971 +[2018-02-13T00:41:14.096] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:41:14.191] [INFO] cheese - inserting 1000 documents. first: Abejas de Guanajuato and last: Architecture in the Republic of Kosovo +[2018-02-13T00:41:14.195] [INFO] cheese - inserting 1000 documents. first: Neftalí Ricardo Reyes and last: International Taste and Quality Institute +[2018-02-13T00:41:14.196] [INFO] cheese - inserting 1000 documents. first: Budapest X. kerülete and last: File:JasonRobardsSr.gif +[2018-02-13T00:41:14.196] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:41:14.225] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/World War I women's recruitment poster and last: U S Air Force Test Pilot School +[2018-02-13T00:41:14.264] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:41:14.305] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:41:14.318] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:41:14.402] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:41:14.447] [INFO] cheese - inserting 1000 documents. first: Boeing XB-44 and last: Template:Cite press release/doc +[2018-02-13T00:41:14.503] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T00:41:14.703] [INFO] cheese - inserting 1000 documents. first: Croatian True Revival and last: Wikipedia:Wikipedia Signpost/2005-05-23/Proceedings of Wikitech-l +[2018-02-13T00:41:14.731] [INFO] cheese - inserting 1000 documents. first: 有天 and last: Category:Organizations based in Providence, Rhode Island +[2018-02-13T00:41:14.745] [INFO] cheese - inserting 1000 documents. first: Boardman/Polando Field and last: 1986 Wake Forest Demon Deacons football team +[2018-02-13T00:41:14.745] [INFO] cheese - inserting 1000 documents. first: 2014 FIFA World Cup qualification (CONCACAF) and last: Category:English legal scholars +[2018-02-13T00:41:14.763] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:41:14.784] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:41:14.788] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:41:14.798] [INFO] cheese - inserting 1000 documents. first: ITQi and last: Category:Kokugakuin University alumni +[2018-02-13T00:41:14.812] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:41:14.858] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:41:14.892] [INFO] cheese - inserting 1000 documents. first: Chang Kuo Chou and last: Wikipedia:WikiProject Articles for creation/March 2014 Backlog Elimination Drive/Anne Delong +[2018-02-13T00:41:14.950] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:41:15.023] [INFO] cheese - inserting 1000 documents. first: Boca FC and last: Baranzate +[2018-02-13T00:41:15.074] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:41:15.159] [INFO] cheese - inserting 1000 documents. first: C30H23BrO4 and last: MRI (Charlotte Gainsbourg album) +[2018-02-13T00:41:15.176] [INFO] cheese - inserting 1000 documents. first: 1987 Wake Forest Demon Deacons football team and last: Radiance of Shadows +[2018-02-13T00:41:15.205] [INFO] cheese - inserting 1000 documents. first: Amtrac (musician) and last: Noël Aubert de Versé +[2018-02-13T00:41:15.212] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:41:15.250] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:41:15.265] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:41:15.318] [INFO] cheese - inserting 1000 documents. first: Centre Marcel Dionne and last: Protestant Unionist +[2018-02-13T00:41:15.388] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:41:15.435] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/March 2014 Backlog Elimination Drive/Adjustment and last: Didunculinae +[2018-02-13T00:41:15.502] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:41:15.692] [INFO] cheese - inserting 1000 documents. first: CBCH-FM and last: Wikipedia:Articles for deletion/Save Stargate SG-1 +[2018-02-13T00:41:15.711] [INFO] cheese - inserting 1000 documents. first: Pyralis lividalis and last: File:Marcus alexander.jpg +[2018-02-13T00:41:15.754] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:41:15.760] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:41:15.773] [INFO] cheese - inserting 1000 documents. first: Category:Russian speculative fiction television series and last: Category:Buildings and structures in Krasnodar +[2018-02-13T00:41:15.792] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2000 May 5 and last: Wikipedia:Changing username/Usurpations/Completed/30 +[2018-02-13T00:41:15.857] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rae.es and last: Category:1979 in badminton +[2018-02-13T00:41:15.872] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T00:41:15.881] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:41:15.945] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:41:16.014] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/New York State Route 347 and last: Joseph and the Dreamer +[2018-02-13T00:41:16.081] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:41:16.224] [INFO] cheese - inserting 1000 documents. first: Who Dares Wins (TV series) and last: Bruce Seldon +[2018-02-13T00:41:16.267] [INFO] cheese - inserting 1000 documents. first: Edward Vance Flanagan and last: Nowell, Richard +[2018-02-13T00:41:16.272] [INFO] cheese - inserting 1000 documents. first: File:Yakusu hospital.png and last: Route survey +[2018-02-13T00:41:16.272] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Indoor Soccer League teams and last: Chaosistan +[2018-02-13T00:41:16.277] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T00:41:16.289] [INFO] cheese - inserting 1000 documents. first: Category:1908 in basketball and last: Krishnarjuna(2008 film) +[2018-02-13T00:41:16.310] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:41:16.315] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:41:16.332] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:41:16.343] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:41:16.393] [INFO] cheese - inserting 1000 documents. first: Tibor Gécsek and last: Villainy Inc. +[2018-02-13T00:41:16.436] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:41:16.525] [INFO] cheese - inserting 1000 documents. first: Oulaya and last: TradeCentre +[2018-02-13T00:41:16.588] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:41:16.624] [INFO] cheese - inserting 1000 documents. first: Lin Yu-hsien and last: Draft:Micromagic Systems Mantis +[2018-02-13T00:41:16.643] [INFO] cheese - inserting 1000 documents. first: U S Route 30 in New Jersey and last: Category:2000s in Pakistan +[2018-02-13T00:41:16.665] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:41:16.677] [INFO] cheese - inserting 1000 documents. first: Old Warren County Courthouse Complex and last: Dar Lyon +[2018-02-13T00:41:16.689] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:41:16.731] [INFO] cheese - inserting 1000 documents. first: Bisi Onabanjo and last: Template:Bharat Punarnirman Dal/meta/color +[2018-02-13T00:41:16.736] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:41:16.784] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:41:16.805] [INFO] cheese - inserting 1000 documents. first: Avid Free DV and last: Glottal R +[2018-02-13T00:41:16.859] [INFO] cheese - inserting 1000 documents. first: Roosevelt F. Dorn and last: Y2K Problem +[2018-02-13T00:41:16.868] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:41:16.892] [INFO] cheese - inserting 1000 documents. first: Template:Northwest Upstate Illini and last: Poecilosoma chrysis +[2018-02-13T00:41:16.922] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:41:16.945] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:41:17.060] [INFO] cheese - inserting 1000 documents. first: D. Sullivan and last: M-Sport World Rally Team +[2018-02-13T00:41:17.097] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Clay County, Kentucky and last: Occupy Providence +[2018-02-13T00:41:17.099] [INFO] cheese - inserting 1000 documents. first: Category:Military veterans' affairs in Canada and last: Category:Democratic Republic of the Congo environmentalists +[2018-02-13T00:41:17.105] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:41:17.144] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:41:17.166] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:41:17.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Serviciile secrete rusești and last: Socialist Workers' Party of Iran +[2018-02-13T00:41:17.352] [INFO] cheese - inserting 1000 documents. first: Kaiser-Bessel-derived and last: Theresa A. Singleton +[2018-02-13T00:41:17.380] [INFO] cheese - inserting 1000 documents. first: Chitpavan Konkanastha Brahmins and last: File:Gradgrindapprehendshischildren.jpg +[2018-02-13T00:41:17.425] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:41:17.433] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:41:17.496] [INFO] cheese - inserting 1000 documents. first: Kanagawa Prefectural Board of Education and last: Ngasanya Ilongo +[2018-02-13T00:41:17.556] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:41:17.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ultimatch.biz and last: Marcia M. Anderson +[2018-02-13T00:41:17.653] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:41:17.665] [INFO] cheese - inserting 1000 documents. first: Picture Perfect (album) and last: The Silver Swan +[2018-02-13T00:41:17.684] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:41:17.724] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:41:17.837] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day list/August 8 and last: H. J. Bhabha +[2018-02-13T00:41:17.932] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:41:18.007] [INFO] cheese - inserting 1000 documents. first: Tessa Prendergast and last: Category:Anti-Zionism in Europe +[2018-02-13T00:41:18.021] [INFO] cheese - inserting 1000 documents. first: Sacred Heart Church, St. Petersburg and last: Wikipedia:Sockpuppet investigations/Crowfurt +[2018-02-13T00:41:18.059] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:41:18.122] [INFO] cheese - inserting 1000 documents. first: QCELP and last: Khalil El Maaoui +[2018-02-13T00:41:18.132] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:41:18.171] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:41:18.193] [INFO] cheese - inserting 1000 documents. first: Sphinx Head Society and last: U. S. Route 50 in Missouri +[2018-02-13T00:41:18.201] [INFO] cheese - inserting 1000 documents. first: File:Pink floyd meddle echoes.ogg and last: Carbon dioxide-equivalent +[2018-02-13T00:41:18.224] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:41:18.226] [INFO] cheese - inserting 1000 documents. first: Humiliator and last: 2005–06 in Scottish football +[2018-02-13T00:41:18.266] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:41:18.281] [INFO] cheese - inserting 1000 documents. first: Vayeleh and last: European Under-21 Football Championship +[2018-02-13T00:41:18.326] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:41:18.355] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:41:18.448] [INFO] cheese - inserting 1000 documents. first: Template:Canadian politics/leadership election/British Columbia New Democratic Party and last: Wikipedia:Miscellany for deletion/Cleanup Taskforce notes +[2018-02-13T00:41:18.485] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:41:18.563] [INFO] cheese - inserting 1000 documents. first: Category:Manufacturing companies established in 1807 and last: Category:Grade I listed buildings in the London Borough of Bromley +[2018-02-13T00:41:18.594] [INFO] cheese - inserting 1000 documents. first: Cynthia Ann Humes and last: File:Lighting Research & Technology.jpg +[2018-02-13T00:41:18.609] [INFO] cheese - inserting 1000 documents. first: La Chapelle-des-Fougeretz and last: Cariboo Country (TV series) +[2018-02-13T00:41:18.618] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:41:18.668] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:41:18.672] [INFO] cheese - inserting 1000 documents. first: Gonospermum and last: Podgrad, Gornja Radgona +[2018-02-13T00:41:18.690] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:41:18.732] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:41:18.777] [INFO] cheese - inserting 1000 documents. first: Broad Rock, Virginia and last: Nu Microscopii +[2018-02-13T00:41:18.811] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:41:18.870] [INFO] cheese - inserting 1000 documents. first: 2006 UEFA U-21 Championship (squads) and last: Felino +[2018-02-13T00:41:18.897] [INFO] cheese - inserting 1000 documents. first: List of Chief Ministers of KwaNdebele and last: WQCD-FM +[2018-02-13T00:41:18.908] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:41:18.954] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:41:19.003] [INFO] cheese - inserting 1000 documents. first: Category:Listed buildings in the London Borough of Bromley and last: Claire Rose +[2018-02-13T00:41:19.087] [INFO] cheese - inserting 1000 documents. first: Template:Osage County, Missouri and last: Template:VSRV8 2008 +[2018-02-13T00:41:19.105] [INFO] cheese - inserting 1000 documents. first: Talcahuana, Chile and last: Piece of Britney +[2018-02-13T00:41:19.108] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:41:19.173] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:41:19.183] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:41:19.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Connecticut articles by quality/6 and last: Sphaeroclinium +[2018-02-13T00:41:19.273] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:41:19.297] [INFO] cheese - inserting 1000 documents. first: Super Mario Bros and last: Nina Gunke +[2018-02-13T00:41:19.360] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:41:19.543] [INFO] cheese - inserting 1000 documents. first: Fontevivo and last: Cylla Markham +[2018-02-13T00:41:19.557] [INFO] cheese - inserting 1000 documents. first: 1987 European Athletics Indoor Championships - Men's 400 metres and last: Template:Taxonomy/Hippohyus +[2018-02-13T00:41:19.604] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:41:19.606] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:41:19.638] [INFO] cheese - inserting 1000 documents. first: Single malt whiskies and last: The Saddle (poker) +[2018-02-13T00:41:19.723] [INFO] cheese - inserting 1000 documents. first: Athrips tetrapunctella and last: Schmala +[2018-02-13T00:41:19.725] [INFO] cheese - inserting 1000 documents. first: File:Charlie G Gibson.jpg and last: Zhao Jiuzhang +[2018-02-13T00:41:19.728] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:41:19.797] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:41:19.809] [INFO] cheese - inserting 1000 documents. first: Sphaeromeria and last: File:Geraldton-Greenough logo.png +[2018-02-13T00:41:19.809] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:41:19.824] [INFO] cheese - inserting 1000 documents. first: Maury, North Carolina and last: İstanbul–Ankara Main Line +[2018-02-13T00:41:19.876] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:41:19.928] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:41:20.117] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Protoryx and last: 2019 AFC Asian Cup qualification – Third Round +[2018-02-13T00:41:20.187] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:41:20.310] [INFO] cheese - inserting 1000 documents. first: Schmalenbach (Löhbach) and last: Cian +[2018-02-13T00:41:20.323] [INFO] cheese - inserting 1000 documents. first: Terrific (comics) and last: Conestoga (ship) +[2018-02-13T00:41:20.357] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:41:20.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2009 October 2 and last: Category:Ships of Fiji +[2018-02-13T00:41:20.369] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:41:20.374] [INFO] cheese - inserting 1000 documents. first: Template:WP Lingistics and last: Bruère-Allichamps +[2018-02-13T00:41:20.387] [INFO] cheese - inserting 1000 documents. first: Jules Hodgson and last: El viaje de Copperpot +[2018-02-13T00:41:20.391] [INFO] cheese - inserting 1000 documents. first: File:Robert Gould Shaw II.jpg and last: Chimney-jamb +[2018-02-13T00:41:20.422] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:41:20.446] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:41:20.575] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:41:20.580] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:41:20.754] [INFO] cheese - inserting 1000 documents. first: Moral Equivalent of War speech (Carter) and last: Draft:DIPLOMA IN MEDICAL LABORATORY TECHNOLOGY +[2018-02-13T00:41:20.823] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:41:20.954] [INFO] cheese - inserting 1000 documents. first: The Block 2BL and last: Wikipedia:Articles for deletion/Viorel Cute-Petric +[2018-02-13T00:41:20.973] [INFO] cheese - inserting 1000 documents. first: Kojnok and last: Jerry Herst +[2018-02-13T00:41:21.009] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:41:21.017] [INFO] cheese - inserting 1000 documents. first: List of WNBL awards and last: NSSC +[2018-02-13T00:41:21.043] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:41:21.074] [INFO] cheese - inserting 1000 documents. first: Titus (TV Series) and last: Ekolosko drustvo Zeleni Osijek +[2018-02-13T00:41:21.116] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:41:21.143] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:41:21.279] [INFO] cheese - inserting 1000 documents. first: Bué and last: Saint-Laurent-du-Cros +[2018-02-13T00:41:21.387] [INFO] cheese - inserting 1000 documents. first: CVV number and last: Ides of March (band) +[2018-02-13T00:41:21.441] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T00:41:21.514] [INFO] cheese - inserting 1000 documents. first: Category:1854 in the Caribbean and last: Red Dwarf 4 +[2018-02-13T00:41:21.545] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T00:41:21.670] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:41:21.693] [INFO] cheese - inserting 1000 documents. first: Mary (Molly) MacCarthy and last: Repeat expansion disorder +[2018-02-13T00:41:21.700] [INFO] cheese - inserting 1000 documents. first: Guiyang County and last: Nonstop to Nowhere +[2018-02-13T00:41:21.728] [INFO] cheese - inserting 1000 documents. first: Packera musiniensis and last: Vanessa Abruzzo +[2018-02-13T00:41:21.759] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:41:21.796] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:41:21.809] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:41:21.932] [INFO] cheese - inserting 1000 documents. first: Colombier, Côte-d'Or and last: Montmoyen +[2018-02-13T00:41:21.939] [INFO] cheese - inserting 1000 documents. first: Billy Spurdle and last: At Night I Pray +[2018-02-13T00:41:21.974] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:41:22.034] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T00:41:22.248] [INFO] cheese - inserting 1000 documents. first: The Calgary Sun and last: Double Platinum (film) +[2018-02-13T00:41:22.257] [INFO] cheese - inserting 1000 documents. first: Princeton orange and last: File:Up Poster.JPG +[2018-02-13T00:41:22.301] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:41:22.303] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright or Trademark and last: Pig's ears +[2018-02-13T00:41:22.310] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:41:22.324] [INFO] cheese - inserting 1000 documents. first: The Resurrection and last: Wikipedia:Articles for deletion/Kirill Formanchuk +[2018-02-13T00:41:22.371] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:41:22.395] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:41:22.478] [INFO] cheese - inserting 1000 documents. first: Ibsen Museum (Oslo) and last: US Route 29 in the District of Columbia +[2018-02-13T00:41:22.518] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:41:22.690] [INFO] cheese - inserting 1000 documents. first: Big Lake State Park and last: File:PhilOchsAToast.jpg +[2018-02-13T00:41:22.700] [INFO] cheese - inserting 1000 documents. first: Puerta de Europa and last: Drøbak Frogn IF +[2018-02-13T00:41:22.732] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:41:22.740] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T00:41:22.756] [INFO] cheese - inserting 1000 documents. first: Forage grasses and last: Gymnastics at the 2014 Summer Youth Olympics +[2018-02-13T00:41:22.798] [INFO] cheese - inserting 1000 documents. first: Microsoft Inc. and last: Underconstruction 1: Silence EP +[2018-02-13T00:41:22.803] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:41:22.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/hutchisoneffect.ca and last: Category:Murder in 1934 +[2018-02-13T00:41:22.868] [INFO] cheese - inserting 1000 documents. first: Jardine Strategic Holdings and last: Valentinianism +[2018-02-13T00:41:22.868] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:41:22.970] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:41:22.975] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:41:22.986] [INFO] cheese - inserting 1000 documents. first: File:N c vasanthakokilam in chandragupta chanakya.jpg and last: 2016 Coupe de la Martinique +[2018-02-13T00:41:23.072] [INFO] cheese - batch complete in: 1.401 secs +[2018-02-13T00:41:23.108] [INFO] cheese - inserting 1000 documents. first: Monash University Art and Design Faculty and last: Future Clouds & Radar +[2018-02-13T00:41:23.139] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:41:23.192] [INFO] cheese - inserting 1000 documents. first: Paizay-le-Tort and last: W A Criswell +[2018-02-13T00:41:23.218] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:41:23.244] [INFO] cheese - inserting 1000 documents. first: Prague districts and last: Izvoarele +[2018-02-13T00:41:23.316] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:41:23.351] [INFO] cheese - inserting 1000 documents. first: Category:Writers about Scotland and last: Template:Fb team Impuls-2 +[2018-02-13T00:41:23.423] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:41:23.469] [INFO] cheese - inserting 1000 documents. first: Alvin H. Mackling and last: Slouching Towards Bethlehem +[2018-02-13T00:41:23.489] [INFO] cheese - inserting 1000 documents. first: Skande and last: File:Hollywood Seven (album) by Jon English.jpg +[2018-02-13T00:41:23.554] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:41:23.640] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:41:23.685] [INFO] cheese - inserting 1000 documents. first: W A Cunningham and last: 1935 Yankee hurricane +[2018-02-13T00:41:23.711] [INFO] cheese - inserting 1000 documents. first: Brazilian destroyer Para (1964) and last: Oystein +[2018-02-13T00:41:23.721] [INFO] cheese - inserting 1000 documents. first: Magic Engine and last: Wikipedia:Sockpuppet investigations/EdgarBacon +[2018-02-13T00:41:23.748] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:41:23.810] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T00:41:23.810] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:41:23.920] [INFO] cheese - inserting 1000 documents. first: Slowly but Surely and last: Alexander sphere +[2018-02-13T00:41:23.980] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:41:24.045] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Banants-2 and last: Category:People from Valdés, Asturias +[2018-02-13T00:41:24.109] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:41:24.168] [INFO] cheese - inserting 1000 documents. first: Diwan-i-Aam (Red Fort, Delhi) and last: File:Nerve 2016 poster.png +[2018-02-13T00:41:24.211] [INFO] cheese - inserting 1000 documents. first: Template:R from unnecessary disambiguation/sandbox and last: Metropolitan Michael of Austria +[2018-02-13T00:41:24.211] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:41:24.256] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:41:24.316] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Encyclopaedia Biblica topics/U and last: Syncephalum +[2018-02-13T00:41:24.329] [INFO] cheese - inserting 1000 documents. first: WF McCoy and last: Human-rated +[2018-02-13T00:41:24.352] [INFO] cheese - inserting 1000 documents. first: Statement of changes in equity and last: Wenham (MA) +[2018-02-13T00:41:24.372] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:41:24.400] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:41:24.460] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:41:24.486] [INFO] cheese - inserting 1000 documents. first: Greek pantheon and last: U.s. national football team +[2018-02-13T00:41:24.487] [INFO] cheese - inserting 1000 documents. first: Mount Pearl Jr. Blades and last: Template:Taxonomy/Maxakalisaurus +[2018-02-13T00:41:24.548] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:41:24.547] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:41:24.612] [INFO] cheese - inserting 1000 documents. first: Template:Independence Party - Þversum/meta/shortname and last: Category:Churches in Monroe County, Alabama +[2018-02-13T00:41:24.626] [INFO] cheese - inserting 1000 documents. first: File:Pierino colpisce ancora (1982 Film).jpg and last: 2016 Ningbo Challenger - Singles +[2018-02-13T00:41:24.656] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:41:24.659] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:41:24.807] [INFO] cheese - inserting 1000 documents. first: Syncretocarpus and last: Jéferson Rodrigues Gonçalves +[2018-02-13T00:41:24.888] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:41:24.896] [INFO] cheese - inserting 1000 documents. first: Peyronie's and last: Lacave, Lot +[2018-02-13T00:41:24.969] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:41:24.980] [INFO] cheese - inserting 1000 documents. first: Candlelight and last: Antiaging antioxidant +[2018-02-13T00:41:24.998] [INFO] cheese - inserting 1000 documents. first: Forgotten Landscapes Project and last: Château Sigognac +[2018-02-13T00:41:25.018] [INFO] cheese - inserting 1000 documents. first: Revere (MA) and last: Blade (Street Fighter) +[2018-02-13T00:41:25.035] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:41:25.038] [INFO] cheese - inserting 1000 documents. first: 2016 Brest Challenger - Singles and last: Wikipedia:TEXTES +[2018-02-13T00:41:25.075] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:41:25.083] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:41:25.117] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:41:25.157] [INFO] cheese - inserting 1000 documents. first: Environmental Literacy Plan and last: Pseudomya bartschi +[2018-02-13T00:41:25.252] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:41:25.267] [INFO] cheese - inserting 1000 documents. first: 366 geometry and last: Southeast louisiana university +[2018-02-13T00:41:25.310] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:41:25.359] [INFO] cheese - inserting 1000 documents. first: Rhopalocarpus undulatus and last: Becs (disambiguation) +[2018-02-13T00:41:25.395] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:41:25.431] [INFO] cheese - inserting 1000 documents. first: File:Usher building v3.png and last: List of Return to the Planet of the Apes episodes +[2018-02-13T00:41:25.476] [INFO] cheese - inserting 1000 documents. first: Château Dillon and last: Hakaona language +[2018-02-13T00:41:25.479] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:41:25.499] [INFO] cheese - inserting 1000 documents. first: Ab initio calculation and last: Wikipedia:Articles for deletion/Cost per contact +[2018-02-13T00:41:25.520] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:41:25.583] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:41:25.601] [INFO] cheese - inserting 1000 documents. first: Cillizza and last: Thus Always to Tyrants (album) +[2018-02-13T00:41:25.645] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:41:25.651] [INFO] cheese - inserting 1000 documents. first: File:Deyatakirula.jpg and last: "Golden Rule" Jones +[2018-02-13T00:41:25.652] [INFO] cheese - inserting 1000 documents. first: Oleksandr Matkobozhyk and last: History of Carson City, Nevada +[2018-02-13T00:41:25.686] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:41:25.714] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:41:25.790] [INFO] cheese - inserting 1000 documents. first: SMRT Buses and last: FDP (Deutschland) +[2018-02-13T00:41:25.811] [INFO] cheese - inserting 1000 documents. first: Thomas Vilhelm Pedersen and last: Roman Catholic Diocese of Solsona +[2018-02-13T00:41:25.836] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:41:25.838] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:41:25.909] [INFO] cheese - inserting 1000 documents. first: Category:Athletics in Mexico and last: Casandro (wrestler) +[2018-02-13T00:41:25.923] [INFO] cheese - inserting 1000 documents. first: History of Cartaxo and last: History of La Sarraz +[2018-02-13T00:41:25.943] [INFO] cheese - inserting 1000 documents. first: Sapp and last: Licenza +[2018-02-13T00:41:25.961] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:41:25.969] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:41:26.065] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:41:26.098] [INFO] cheese - inserting 1000 documents. first: Carousel Theater (disambiguation) and last: John Duggan +[2018-02-13T00:41:26.199] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:41:26.244] [INFO] cheese - inserting 1000 documents. first: West Hartlepool F. C. and last: York City F. C. records +[2018-02-13T00:41:26.299] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:41:26.334] [INFO] cheese - inserting 1000 documents. first: History of La Tour-de-Peilz and last: History of Suwa, Nagano +[2018-02-13T00:41:26.346] [INFO] cheese - inserting 1000 documents. first: Portal:New York City/Did you know/4 and last: Oxacme calcarea +[2018-02-13T00:41:26.402] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:41:26.425] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:41:26.535] [INFO] cheese - inserting 1000 documents. first: File:PeterTosh-MysticMan.jpg and last: Ibero-American +[2018-02-13T00:41:26.639] [INFO] cheese - inserting 1000 documents. first: Casandro and last: Archdeaconry of Isle of Man +[2018-02-13T00:41:26.671] [INFO] cheese - inserting 1000 documents. first: Pentameric and last: Hourglass (song) +[2018-02-13T00:41:26.670] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:41:26.695] [INFO] cheese - inserting 1000 documents. first: Category:U.S. Roads project articles needing maps and last: Empire of trebizond +[2018-02-13T00:41:26.700] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:41:26.713] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:41:26.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Samuil of Bulgaria/archive1 and last: Griselles +[2018-02-13T00:41:26.766] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:41:26.772] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:41:26.795] [INFO] cheese - inserting 1000 documents. first: History of Suwon and last: Category:1842 establishments in Washington, D.C. +[2018-02-13T00:41:26.850] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:41:27.034] [INFO] cheese - inserting 1000 documents. first: FZJK and last: Donald Norman McLeod +[2018-02-13T00:41:27.090] [INFO] cheese - inserting 1000 documents. first: List of Archdeacons of Isle of Man and last: File:A Good Lawyers Wife Poster.jpg +[2018-02-13T00:41:27.123] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:41:27.157] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:41:27.233] [INFO] cheese - inserting 1000 documents. first: Category:Start-Class medicine articles and last: 1993 RP +[2018-02-13T00:41:27.261] [INFO] cheese - inserting 1000 documents. first: Category:People from the Sakha Republic and last: Dmitriy Torlopov +[2018-02-13T00:41:27.279] [INFO] cheese - inserting 1000 documents. first: 1960 U S National Championships - Men's Singles and last: Category:Wikipedia requested maps of roads in Arkansas +[2018-02-13T00:41:27.287] [INFO] cheese - inserting 1000 documents. first: Sni Mills, Missouri and last: K-T.V. +[2018-02-13T00:41:27.299] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:41:27.311] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:41:27.364] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:41:27.364] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:41:27.560] [INFO] cheese - inserting 1000 documents. first: Cressy, Tasmania and last: CFEM-DT +[2018-02-13T00:41:27.639] [INFO] cheese - inserting 1000 documents. first: H.F.Copel. and last: Surfing Florida +[2018-02-13T00:41:27.653] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T00:41:27.693] [INFO] cheese - inserting 1000 documents. first: Hospital Provincial del Centenario (Rosario) and last: Natoya Goule +[2018-02-13T00:41:27.710] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:41:27.764] [INFO] cheese - inserting 1000 documents. first: Guarda, Portugal and last: SETA (contractor) +[2018-02-13T00:41:27.769] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:41:27.844] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:41:27.882] [INFO] cheese - inserting 1000 documents. first: Spotless (song) and last: Dryas (disambiguation) +[2018-02-13T00:41:27.925] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:41:27.927] [INFO] cheese - inserting 1000 documents. first: Diadem (series) and last: Category:Liverpool F.C. matches +[2018-02-13T00:41:27.955] [INFO] cheese - inserting 1000 documents. first: Fallacy of relevance and last: The Final Judgement +[2018-02-13T00:41:27.993] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:41:28.054] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:41:28.132] [INFO] cheese - inserting 1000 documents. first: Category:American psychological drama films and last: History of Knox County, Kentucky +[2018-02-13T00:41:28.171] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:41:28.218] [INFO] cheese - inserting 1000 documents. first: Alexandra Eldridge and last: Australian Catholic Bishops' Conference +[2018-02-13T00:41:28.256] [INFO] cheese - inserting 1000 documents. first: Spanish-language surname and last: Wikipedia:Articles for deletion/Candy/Molly's Lips +[2018-02-13T00:41:28.280] [INFO] cheese - inserting 1000 documents. first: Xintian and last: Prototi +[2018-02-13T00:41:28.288] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/newspapers.gov.im and last: Downfall (Trust Company song) +[2018-02-13T00:41:28.299] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:41:28.327] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:41:28.330] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:41:28.347] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:41:28.497] [INFO] cheese - inserting 1000 documents. first: History of Knox County, Tennessee and last: Draft:Odhran Ua hEolais +[2018-02-13T00:41:28.558] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:41:28.590] [INFO] cheese - inserting 1000 documents. first: Template:User do no harm and last: Touillon-et-Loutelet +[2018-02-13T00:41:28.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2006 August 30 and last: D.G. Kendall +[2018-02-13T00:41:28.673] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:41:28.799] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:41:28.886] [INFO] cheese - inserting 1000 documents. first: Category:College rowing coaches in the United States and last: CP-80633 +[2018-02-13T00:41:28.947] [INFO] cheese - inserting 1000 documents. first: 1975 Australian Rally Championship and last: File:Dmitry Moor 1941 What have you done to help the front.jpg +[2018-02-13T00:41:28.959] [INFO] cheese - inserting 1000 documents. first: Purple vs. violet and last: Anderssen Opening +[2018-02-13T00:41:28.978] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:41:28.989] [INFO] cheese - inserting 1000 documents. first: Palmer (B&A station) and last: Tour 2009 (Die Ärzte tour) +[2018-02-13T00:41:29.015] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:41:29.064] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:41:29.115] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:41:29.126] [INFO] cheese - inserting 1000 documents. first: Odhran Ua hEolais (10th Century Scribe) and last: The Society for the Promotion of Nature Conservation +[2018-02-13T00:41:29.199] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:41:29.308] [INFO] cheese - inserting 1000 documents. first: Grosvenor Place and last: Mar Thomas +[2018-02-13T00:41:29.339] [INFO] cheese - inserting 1000 documents. first: M.A.D. and last: Coogan +[2018-02-13T00:41:29.363] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:41:29.403] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:41:29.460] [INFO] cheese - inserting 1000 documents. first: DEL16P12.1P11.2 and last: Afiesimama, Ernest +[2018-02-13T00:41:29.548] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:41:29.564] [INFO] cheese - inserting 1000 documents. first: Marmaroxena autochalca and last: Wikipedia:United States Education Program/Poverty Justice and Human Capabilities (Diana Strassmann and Michael Emerson)/Proposed Topics +[2018-02-13T00:41:29.637] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:41:29.690] [INFO] cheese - inserting 1000 documents. first: Texas Workforce Commission and last: Wheatland Baptist Cemetery +[2018-02-13T00:41:29.695] [INFO] cheese - inserting 1000 documents. first: Agile tooling and last: Bruce Boppo Tiemann +[2018-02-13T00:41:29.735] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:41:29.743] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:41:29.858] [INFO] cheese - inserting 1000 documents. first: 1.a3 and last: John Wycliffe Lowes Forster +[2018-02-13T00:41:29.878] [INFO] cheese - inserting 1000 documents. first: Audnedal Station and last: Floodlit Cup (Northern Ireland) +[2018-02-13T00:41:29.887] [INFO] cheese - inserting 1000 documents. first: San Michele Mondovi and last: Year Of The Beast +[2018-02-13T00:41:29.938] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:41:29.933] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T00:41:29.964] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:41:30.058] [INFO] cheese - inserting 1000 documents. first: Rochelle feinstein and last: Crack Rock Steady (Song) +[2018-02-13T00:41:30.156] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:41:30.273] [INFO] cheese - inserting 1000 documents. first: Netherlands at the 2004 Summer Paralympics and last: Category:Geography of Rowan County, Kentucky +[2018-02-13T00:41:30.310] [INFO] cheese - inserting 1000 documents. first: Corporate limit and last: Books Etc +[2018-02-13T00:41:30.346] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:41:30.426] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:41:30.590] [INFO] cheese - inserting 1000 documents. first: Calleville and last: Záviš of Zápy +[2018-02-13T00:41:30.675] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:41:30.726] [INFO] cheese - inserting 1000 documents. first: Woodbridge High School (Irvine, California) and last: Dave Finlay +[2018-02-13T00:41:30.770] [INFO] cheese - inserting 1000 documents. first: Jinggang Shan (999) and last: Human digestive system +[2018-02-13T00:41:30.819] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:41:30.828] [INFO] cheese - inserting 1000 documents. first: Aleksandr Derevyagin and last: The Journal of African American History +[2018-02-13T00:41:30.828] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:41:30.833] [INFO] cheese - inserting 1000 documents. first: Template:Qingdao Clipper and last: Amangkurat IV of Mataram +[2018-02-13T00:41:30.926] [INFO] cheese - inserting 1000 documents. first: Template:Agricultural water management models and last: King Kleagle +[2018-02-13T00:41:30.946] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T00:41:30.952] [INFO] cheese - batch complete in: 1.209 secs +[2018-02-13T00:41:30.980] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:41:31.063] [INFO] cheese - inserting 1000 documents. first: Jacqueline Moss and last: Tetanostola hexagona +[2018-02-13T00:41:31.121] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:41:31.247] [INFO] cheese - inserting 1000 documents. first: Union for Europe and last: List of schools in Africa +[2018-02-13T00:41:31.302] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:41:31.417] [INFO] cheese - inserting 1000 documents. first: File:Erasure-MoscowToMars.jpg and last: Ally Lundström +[2018-02-13T00:41:31.425] [INFO] cheese - inserting 1000 documents. first: List of discoveries by Leonhard Euler and last: Sunanda Kumariratana +[2018-02-13T00:41:31.431] [INFO] cheese - inserting 1000 documents. first: Paul J. Rainey and last: Sandy Cane +[2018-02-13T00:41:31.466] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:41:31.482] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:41:31.505] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:41:31.508] [INFO] cheese - inserting 1000 documents. first: List of city nicknames in Maine and last: Tom Jacobsen (disambiguation) +[2018-02-13T00:41:31.573] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:41:31.574] [INFO] cheese - inserting 1000 documents. first: Max von Braunmühl and last: ITGLWF +[2018-02-13T00:41:31.621] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/pwhl3.stats.pointstreak.com and last: Category:Secondary education in Italy +[2018-02-13T00:41:31.654] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:41:31.698] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:41:31.855] [INFO] cheese - inserting 1000 documents. first: Ozymandias (name) and last: The Treasure of Tartary +[2018-02-13T00:41:31.907] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:41:32.008] [INFO] cheese - inserting 1000 documents. first: Buena Vista ISD and last: State Route 111 (Virginia pre-1933) +[2018-02-13T00:41:32.012] [INFO] cheese - inserting 1000 documents. first: Template:United States postage stamps and last: Template:Did you know nominations/Rosy bee-eater +[2018-02-13T00:41:32.030] [INFO] cheese - inserting 1000 documents. first: File:Varese-Stemma.png and last: Chandeshwori +[2018-02-13T00:41:32.060] [INFO] cheese - inserting 1000 documents. first: Pete Wyshner and last: File:Spec Harkness.jpg +[2018-02-13T00:41:32.065] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:41:32.073] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:41:32.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/yamaha-motor.com.mx and last: Elior Sider +[2018-02-13T00:41:32.166] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:41:32.225] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:41:32.229] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:41:32.357] [INFO] cheese - inserting 1000 documents. first: Professional Graphics Controller and last: Batucada +[2018-02-13T00:41:32.502] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:41:32.639] [INFO] cheese - inserting 1000 documents. first: Post-merger integration and last: Benjamin D. Walsh +[2018-02-13T00:41:32.734] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:41:32.774] [INFO] cheese - inserting 1000 documents. first: Gushtaba and last: Stronger together +[2018-02-13T00:41:32.793] [INFO] cheese - inserting 1000 documents. first: Alexandru-Radu Timofte and last: File:Moby-mistake.JPG +[2018-02-13T00:41:32.835] [INFO] cheese - inserting 1000 documents. first: Jowangshin and last: Afroto, Mostafa +[2018-02-13T00:41:32.846] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:41:32.860] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:41:32.941] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:41:32.966] [INFO] cheese - inserting 1000 documents. first: SR 80 (VA) and last: Shadow Blasters +[2018-02-13T00:41:33.062] [INFO] cheese - inserting 1000 documents. first: Impression Formation and last: 8x107mm DS +[2018-02-13T00:41:33.075] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T00:41:33.190] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T00:41:33.367] [INFO] cheese - inserting 1000 documents. first: Template:Page numbers/doc and last: John Thomlinson +[2018-02-13T00:41:33.382] [INFO] cheese - inserting 1000 documents. first: List of United States Army installations in Saudi Arabia and last: File:College of Saint Rose seal.png +[2018-02-13T00:41:33.430] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:41:33.431] [INFO] cheese - inserting 1000 documents. first: Mongo Santamaria and last: Gol Maal +[2018-02-13T00:41:33.452] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:41:33.523] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T00:41:33.527] [INFO] cheese - inserting 1000 documents. first: Afroudakis, Christos and last: Glastonbury Divisional Board +[2018-02-13T00:41:33.592] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:41:33.627] [INFO] cheese - inserting 1000 documents. first: Green Economics Institute and last: The Paper Man (film) +[2018-02-13T00:41:33.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Absolute color space and last: File:Como Look Your Heart.jpg +[2018-02-13T00:41:33.672] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:41:33.698] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:41:33.824] [INFO] cheese - inserting 1000 documents. first: Case against the fed and last: Wikipedia:Articles for deletion/Kudai's third studio album +[2018-02-13T00:41:33.866] [INFO] cheese - inserting 1000 documents. first: The Behavioral and Brain Sciences and last: Wikipedia:Peer review/List of Olympic medalists in equestrian/archive1 +[2018-02-13T00:41:33.866] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:41:33.919] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:41:33.968] [INFO] cheese - inserting 1000 documents. first: Kantara Castle and last: Lost Channel, Parry Sound District, Ontario +[2018-02-13T00:41:33.981] [INFO] cheese - inserting 1000 documents. first: Why is the sky blue and last: Kpala language +[2018-02-13T00:41:34.000] [INFO] cheese - inserting 1000 documents. first: Davide Perre and last: Sergio Abreu +[2018-02-13T00:41:34.018] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:41:34.023] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:41:34.060] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:41:34.164] [INFO] cheese - inserting 1000 documents. first: Tindale and last: Portal:Current events/2006 September 2 +[2018-02-13T00:41:34.220] [INFO] cheese - inserting 1000 documents. first: Club Deportivo Universidad Católica (Ecuador) and last: Category:Works by source +[2018-02-13T00:41:34.228] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:41:34.288] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:41:34.292] [INFO] cheese - inserting 1000 documents. first: The Feeding of the 4000 and last: Stratum lucidum (disambiguation) +[2018-02-13T00:41:34.340] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:41:34.436] [INFO] cheese - inserting 1000 documents. first: Rainbow Six: Patriots and last: Vernacular Orientation +[2018-02-13T00:41:34.490] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:41:34.495] [INFO] cheese - inserting 1000 documents. first: Category:Taranto F.C. 1927 players and last: Rico Roman +[2018-02-13T00:41:34.507] [INFO] cheese - inserting 1000 documents. first: Category:Operas by Ermanno Wolf-Ferrari and last: Buffalo, WV +[2018-02-13T00:41:34.682] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:41:34.739] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:41:34.848] [INFO] cheese - inserting 1000 documents. first: Cutting speed and last: Portal:English football/Did you know/49 +[2018-02-13T00:41:34.850] [INFO] cheese - inserting 1000 documents. first: Po Leung Kuk No.1 W. H. Cheung College and last: The Halifax Academy +[2018-02-13T00:41:34.934] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:41:34.933] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:41:35.048] [INFO] cheese - inserting 1000 documents. first: Youre The Man Now Dog and last: Stuccos +[2018-02-13T00:41:35.156] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T00:41:35.237] [INFO] cheese - inserting 1000 documents. first: Musivisual Language and last: Puiggari +[2018-02-13T00:41:35.317] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:41:35.382] [INFO] cheese - inserting 1000 documents. first: 1997 Porsche Tennis Grand Prix and last: Troops for the Internal Defence of the Republic +[2018-02-13T00:41:35.419] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Women's 100 metres hurdles and last: Template:Dominican Summer League Royals roster +[2018-02-13T00:41:35.422] [INFO] cheese - inserting 1000 documents. first: Earl H. Potter and last: Guatemala Temple +[2018-02-13T00:41:35.425] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:41:35.487] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:41:35.492] [INFO] cheese - inserting 1000 documents. first: Category:Blind poets and last: Wikipedia:WikiProject Women in Red/Missing articles by occupation/University teachers +[2018-02-13T00:41:35.529] [INFO] cheese - inserting 1000 documents. first: Buffalo County, SD and last: George T. Stagg +[2018-02-13T00:41:35.532] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:41:35.625] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T00:41:35.681] [INFO] cheese - batch complete in: 2.833 secs +[2018-02-13T00:41:35.782] [INFO] cheese - inserting 1000 documents. first: Bronte ISD and last: Nuacht RTÉ +[2018-02-13T00:41:35.861] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:41:35.890] [INFO] cheese - inserting 1000 documents. first: Sedeh (disambiguation) and last: Category:Religious buildings completed in 1761 +[2018-02-13T00:41:35.924] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:41:35.970] [INFO] cheese - inserting 1000 documents. first: Copa del Rey 2002–03 and last: Battle of Lake Borgne +[2018-02-13T00:41:35.981] [INFO] cheese - inserting 1000 documents. first: Windows in church architecture and last: Roland Beaudry +[2018-02-13T00:41:36.019] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:41:36.062] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:41:36.116] [INFO] cheese - inserting 1000 documents. first: Template:2012 NCAA Division I men's ice hockey tournament navbox and last: Category:Televisió de Catalunya +[2018-02-13T00:41:36.187] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:41:36.233] [INFO] cheese - inserting 1000 documents. first: Honeybeemon and last: Sacromonte +[2018-02-13T00:41:36.292] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:41:36.330] [INFO] cheese - inserting 1000 documents. first: Category:Budućnost Podgorica and last: Poliocephalus poliocephalus +[2018-02-13T00:41:36.383] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:41:36.397] [INFO] cheese - inserting 1000 documents. first: Phillip Lindel Tsen and last: Nelson Cruz (outfielder) +[2018-02-13T00:41:36.487] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:41:36.551] [INFO] cheese - inserting 1000 documents. first: Category:German sports businesspeople and last: Southwest High School (Macon, Georgia) +[2018-02-13T00:41:36.572] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Naseba and last: Augusto de Oliveira da Silva +[2018-02-13T00:41:36.603] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:41:36.623] [INFO] cheese - inserting 1000 documents. first: 2004-2005 Japan Junior Figure Skating Championships and last: Wikipedia:WikiProject Spam/LinkReports/facultas.at +[2018-02-13T00:41:36.646] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:41:36.710] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:41:36.856] [INFO] cheese - inserting 1000 documents. first: Maxillofacial surgery and last: Wikipedia:Articles for deletion/.38 S&W +[2018-02-13T00:41:36.861] [INFO] cheese - inserting 1000 documents. first: Apicius (disambiguation) and last: North and east neighborhood +[2018-02-13T00:41:36.924] [INFO] cheese - inserting 1000 documents. first: Shreveport Classic and last: Bumi (disambiguation) +[2018-02-13T00:41:36.977] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:41:36.999] [INFO] cheese - inserting 1000 documents. first: MO25 and last: Purgatoire River +[2018-02-13T00:41:37.019] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:41:37.060] [INFO] cheese - batch complete in: 1.375 secs +[2018-02-13T00:41:37.072] [INFO] cheese - inserting 1000 documents. first: Template:RCTS-LocosLNER-5 and last: Bishop Julius +[2018-02-13T00:41:37.123] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:41:37.133] [INFO] cheese - inserting 1000 documents. first: Template:Discussing/doc and last: Hyphopichia +[2018-02-13T00:41:37.148] [INFO] cheese - inserting 1000 documents. first: List of curling clubs in Sweden and last: Digital Creativity +[2018-02-13T00:41:37.161] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:41:37.204] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:41:37.207] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:41:37.536] [INFO] cheese - inserting 1000 documents. first: AIDES and last: Oldervik, Troms +[2018-02-13T00:41:37.556] [INFO] cheese - inserting 1000 documents. first: Charlestown, SC and last: Tumbes Province +[2018-02-13T00:41:37.569] [INFO] cheese - inserting 1000 documents. first: Central Vermont Railway Station (disambiguation) and last: Yang Po-Han +[2018-02-13T00:41:37.574] [INFO] cheese - inserting 1000 documents. first: Yankee Flats and last: File:LTC Jonathan M Stubbs, Commander, 2nd Battalion, 153rd Infantry Regiment.jpg +[2018-02-13T00:41:37.593] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:41:37.639] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:41:37.646] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:41:37.632] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:41:37.686] [INFO] cheese - inserting 1000 documents. first: Barbed Wire Kisses (album) and last: Ackley School District v. Hall +[2018-02-13T00:41:37.744] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:41:37.813] [INFO] cheese - inserting 1000 documents. first: File:Kaanchi... poster.jpg and last: Category:Transport in Pickering, Ontario +[2018-02-13T00:41:37.833] [INFO] cheese - inserting 1000 documents. first: Kodamaea and last: Windows 8 +[2018-02-13T00:41:37.884] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:41:37.946] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:41:38.060] [INFO] cheese - inserting 1000 documents. first: Charles Latham (physician) and last: (79376) 1997 FF +[2018-02-13T00:41:38.086] [INFO] cheese - inserting 1000 documents. first: Vandellòs and l'Hospitalet de l'Infant and last: Category:Regions of Venezuela +[2018-02-13T00:41:38.112] [INFO] cheese - inserting 1000 documents. first: Draft:Duble U and last: Ian Flannon Taylor +[2018-02-13T00:41:38.126] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:41:38.141] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:41:38.188] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:41:38.207] [INFO] cheese - inserting 1000 documents. first: Nassoi and last: Chevigny +[2018-02-13T00:41:38.283] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:41:38.350] [INFO] cheese - inserting 1000 documents. first: Martha Hunt and last: Wikipedia:Reference desk/Archives/Miscellaneous/2014 March 12 +[2018-02-13T00:41:38.423] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:41:38.499] [INFO] cheese - inserting 1000 documents. first: Tim Lambesis and last: Chicken or egg +[2018-02-13T00:41:38.576] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T00:41:38.639] [INFO] cheese - inserting 1000 documents. first: Mutu language and last: Luke Malicki +[2018-02-13T00:41:38.683] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:41:38.701] [INFO] cheese - inserting 1000 documents. first: St. Paul of Thebes and last: Simon Langton Grammar for Boys +[2018-02-13T00:41:38.728] [INFO] cheese - inserting 1000 documents. first: Category:Fictional British military personnel by branch and last: M Ross Perkins +[2018-02-13T00:41:38.738] [INFO] cheese - inserting 1000 documents. first: Det norske Theater (Bergen) and last: Category:Economic history of California +[2018-02-13T00:41:38.779] [INFO] cheese - inserting 1000 documents. first: IL-5 receptor and last: Arthur Alston +[2018-02-13T00:41:38.784] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:41:38.800] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:41:38.850] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:41:38.909] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:41:38.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:HurricaneSpin/List of User:IPhonehurricane95 Sockpuppets and last: File:Till Marriage Do Us Part.jpg +[2018-02-13T00:41:39.057] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:41:39.239] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Morphett and last: Henry J. Aaron +[2018-02-13T00:41:39.267] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Melvin House and last: Distributed database management system +[2018-02-13T00:41:39.301] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:41:39.328] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:41:39.364] [INFO] cheese - inserting 1000 documents. first: Category:People from Metković and last: Category:Plants described in 1789 +[2018-02-13T00:41:39.444] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:41:39.458] [INFO] cheese - inserting 1000 documents. first: Discriminant Book and last: Tiamat (public figure) +[2018-02-13T00:41:39.479] [INFO] cheese - inserting 1000 documents. first: The Moth Confesses and last: Vintage print +[2018-02-13T00:41:39.528] [INFO] cheese - inserting 1000 documents. first: Amelkites and last: La Chapelle-sur-Oreuse +[2018-02-13T00:41:39.539] [INFO] cheese - inserting 1000 documents. first: Ugoyan and last: Category:Coastal Carolina Chanticleers men's basketball navigational boxes +[2018-02-13T00:41:39.544] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:41:39.555] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:41:39.603] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:41:39.605] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:41:39.678] [INFO] cheese - inserting 1000 documents. first: Khorram Darreh and last: Khvajeh (disambiguation) +[2018-02-13T00:41:39.708] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:41:40.039] [INFO] cheese - inserting 1000 documents. first: Archaeology of Afghanistan and last: Category:1546 books +[2018-02-13T00:41:40.062] [INFO] cheese - inserting 1000 documents. first: Aprosexia and last: Paranotothenia magellanica +[2018-02-13T00:41:40.128] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:41:40.139] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:41:40.159] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mcgillismusic.com and last: Carla Chin +[2018-02-13T00:41:40.197] [INFO] cheese - inserting 1000 documents. first: Tang Eram and last: Bernard Wood +[2018-02-13T00:41:40.211] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Men's 3000 metres steeplechase and last: K35EJ-D +[2018-02-13T00:41:40.218] [INFO] cheese - inserting 1000 documents. first: Jerry Wunsch and last: Tsada +[2018-02-13T00:41:40.288] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:41:40.290] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:41:40.310] [INFO] cheese - inserting 1000 documents. first: Rodi Milici and last: Hijo de Africa +[2018-02-13T00:41:40.344] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:41:40.339] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:41:40.431] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T00:41:40.605] [INFO] cheese - inserting 1000 documents. first: Loxia pytyopsittacus and last: Limosa fedoa +[2018-02-13T00:41:40.696] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:41:40.755] [INFO] cheese - inserting 1000 documents. first: Fall of the inner German border and last: RTL RADIO +[2018-02-13T00:41:40.830] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:41:40.850] [INFO] cheese - inserting 1000 documents. first: Suzanne Gerrior and last: Charles Grob +[2018-02-13T00:41:40.864] [INFO] cheese - inserting 1000 documents. first: Anas ibn Maalik and last: Portal:Triassic/Natural world articles/2 +[2018-02-13T00:41:40.919] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:41:40.916] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:41:40.964] [INFO] cheese - inserting 1000 documents. first: The Brute (wrestler) and last: Judd Cup +[2018-02-13T00:41:41.064] [INFO] cheese - inserting 1000 documents. first: Hijo De Africa and last: Charles L. Kelly +[2018-02-13T00:41:41.071] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:41:41.105] [INFO] cheese - inserting 1000 documents. first: Portal:Minnesota/Topics and last: Wake boarding +[2018-02-13T00:41:41.186] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:41:41.210] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:41:41.329] [INFO] cheese - inserting 1000 documents. first: Judæo-Romance languages and last: Julie Mayer +[2018-02-13T00:41:41.360] [INFO] cheese - inserting 1000 documents. first: Phalaena Bombyx lubricipeda and last: Harsidhi +[2018-02-13T00:41:41.412] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:41:41.432] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:41:41.448] [INFO] cheese - inserting 1000 documents. first: Attack on US Marines in Faylaka Island and last: Category:Privatisation in South Africa +[2018-02-13T00:41:41.490] [INFO] cheese - inserting 1000 documents. first: Uzbek League 2005 and last: Richard J. Gruel +[2018-02-13T00:41:41.509] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:41:41.583] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:41:41.755] [INFO] cheese - inserting 1000 documents. first: Adli Yakan Pasha and last: File:Major General Emilian Vasilevich Kozik.jpg +[2018-02-13T00:41:41.773] [INFO] cheese - inserting 1000 documents. first: Doubles tennis and last: Template:Location map India Uttarakhand +[2018-02-13T00:41:41.818] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:41:41.828] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:41:41.916] [INFO] cheese - inserting 1000 documents. first: Portal:Ordovician/Natural world articles/20 and last: Category:2014 Commonwealth Games events +[2018-02-13T00:41:41.950] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:41:41.961] [INFO] cheese - inserting 1000 documents. first: Twenty Hours and last: Claus Larsen +[2018-02-13T00:41:41.983] [INFO] cheese - inserting 1000 documents. first: EGSM900 and last: Henry McAdoo +[2018-02-13T00:41:42.022] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:41:42.055] [INFO] cheese - inserting 1000 documents. first: Speedwriter and last: Tres tristes tigres +[2018-02-13T00:41:42.075] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T00:41:42.118] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:41:42.288] [INFO] cheese - inserting 1000 documents. first: Pohlig–Hellman algorithm and last: Ehmetjan Qasim +[2018-02-13T00:41:42.306] [INFO] cheese - inserting 1000 documents. first: 1080 Brickell and last: Hyalurga cinda +[2018-02-13T00:41:42.323] [INFO] cheese - inserting 1000 documents. first: John Anthony Flynn and last: File:KMJM ClassicCountry1360 logo.png +[2018-02-13T00:41:42.349] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:41:42.388] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:41:42.392] [INFO] cheese - inserting 1000 documents. first: Benin – People's Republic of China relations and last: File:Suliman Elfortia.jpg +[2018-02-13T00:41:42.393] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:41:42.416] [INFO] cheese - inserting 1000 documents. first: North Cachar Hills District and last: Calhoun Township, Cheyenne County, Kansas +[2018-02-13T00:41:42.558] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:41:42.602] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:41:42.614] [INFO] cheese - inserting 1000 documents. first: 2000 Chevrolet Cup - Singles and last: Category:Pixies (band) members +[2018-02-13T00:41:42.672] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:41:42.845] [INFO] cheese - inserting 1000 documents. first: Susan Vandom and last: Derick Thomson +[2018-02-13T00:41:42.903] [INFO] cheese - inserting 1000 documents. first: HU Velorum and last: Category:1670 establishments in Maryland +[2018-02-13T00:41:42.935] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:41:42.951] [INFO] cheese - inserting 1000 documents. first: Tiverighotto language and last: Brian Van't Hul +[2018-02-13T00:41:42.975] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:41:42.990] [INFO] cheese - inserting 1000 documents. first: Lesotho – South Africa relations and last: Communist Party of the Workers of Tunisia +[2018-02-13T00:41:43.035] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:41:43.057] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:41:43.088] [INFO] cheese - inserting 1000 documents. first: Wattson and last: SIGCSE +[2018-02-13T00:41:43.235] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:41:43.257] [INFO] cheese - inserting 1000 documents. first: Cleveland Run Township, Cheyenne County, Kansas and last: Lilia Yefremova +[2018-02-13T00:41:43.290] [INFO] cheese - inserting 1000 documents. first: Bienvenues-Bâtard-Montrachet AOC and last: Wikipedia:Articles for deletion/AdU Network +[2018-02-13T00:41:43.362] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:41:43.392] [INFO] cheese - inserting 1000 documents. first: The Best FIFA Football Awards and last: Category:Sudanese women's rights activists +[2018-02-13T00:41:43.425] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:41:43.439] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:41:43.674] [INFO] cheese - inserting 1000 documents. first: Gibraltar general election, 1953 and last: File:Clarke University logo.png +[2018-02-13T00:41:43.708] [INFO] cheese - inserting 1000 documents. first: Thomas Larkin (ice hockey) and last: Petworth Gardens +[2018-02-13T00:41:43.729] [INFO] cheese - inserting 1000 documents. first: Danville Leafs and last: Qa'edat Al-Jihad +[2018-02-13T00:41:43.734] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:41:43.765] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:41:43.798] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T00:41:43.857] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Ras al-Khaimah and last: Valentino Moisés Fiévet Mennesson +[2018-02-13T00:41:43.875] [INFO] cheese - inserting 1000 documents. first: Robert I of Parma and last: Abdul Muttalib (name) +[2018-02-13T00:41:43.911] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:41:43.923] [INFO] cheese - inserting 1000 documents. first: Fenioux and last: Heads of state of Krajina +[2018-02-13T00:41:43.955] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:41:43.976] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:41:44.033] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Lactose intolerance and last: File:E. Tautz Logo.jpg +[2018-02-13T00:41:44.075] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:41:44.148] [INFO] cheese - inserting 1000 documents. first: Dream Lady and last: WDTI-DT +[2018-02-13T00:41:44.167] [INFO] cheese - inserting 1000 documents. first: Diocese of Pueblo and last: I Want You to Know (disambiguation) +[2018-02-13T00:41:44.188] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:41:44.249] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:41:44.285] [INFO] cheese - inserting 1000 documents. first: Barry M. Goldwater Scholarship and last: Patriarch Artemius of Alexandria +[2018-02-13T00:41:44.297] [INFO] cheese - inserting 1000 documents. first: Don Wai Floating Market and last: Simon Elkyngton +[2018-02-13T00:41:44.322] [INFO] cheese - inserting 1000 documents. first: Zhōngbù Juéqǐ Jìhuà and last: Wikipedia:WikiProject Spam/LinkReports/asaakiraxxx.com +[2018-02-13T00:41:44.328] [INFO] cheese - batch complete in: 0.253 secs +[2018-02-13T00:41:44.346] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:41:44.358] [INFO] cheese - inserting 1000 documents. first: Heads of state of Malawi and last: Waiilatpu Mission +[2018-02-13T00:41:44.367] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:41:44.408] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:41:44.503] [INFO] cheese - inserting 1000 documents. first: Hoe (food) and last: Bill Haselman +[2018-02-13T00:41:44.590] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:41:44.642] [INFO] cheese - inserting 1000 documents. first: Verschoten & zoon and last: Friends Central High School +[2018-02-13T00:41:44.706] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:41:44.888] [INFO] cheese - inserting 1000 documents. first: Iberg (disambiguation) and last: File:Big Top Whit Dickey Cover.jpeg +[2018-02-13T00:41:44.925] [INFO] cheese - inserting 1000 documents. first: Category:1945 in England and last: Women's Rugby League World Cup +[2018-02-13T00:41:44.944] [INFO] cheese - inserting 1000 documents. first: USCS Morris and last: Category:Ventura County, California articles missing geocoordinate data +[2018-02-13T00:41:44.992] [INFO] cheese - inserting 1000 documents. first: Pharmacognosist and last: Feuguerolles +[2018-02-13T00:41:44.995] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:41:44.998] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:41:45.049] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:41:45.091] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:41:45.326] [INFO] cheese - inserting 1000 documents. first: Demirören, Mersin and last: File:Shotinthefrontier 1sht.jpg +[2018-02-13T00:41:45.338] [INFO] cheese - inserting 1000 documents. first: Nasrids kings and last: Demetrius Gallitzin +[2018-02-13T00:41:45.390] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:41:45.414] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:41:45.434] [INFO] cheese - inserting 1000 documents. first: Category:Lists of bus routes in Taiwan and last: Category:Dams in Botswana +[2018-02-13T00:41:45.471] [INFO] cheese - inserting 1000 documents. first: Category:Santa Barbara County, California articles missing geocoordinate data and last: Great Love Themes +[2018-02-13T00:41:45.526] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:41:45.557] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:41:45.598] [INFO] cheese - inserting 1000 documents. first: Albert Morehead and last: Military history of Russia +[2018-02-13T00:41:45.676] [INFO] cheese - inserting 1000 documents. first: Le Fidelaire and last: Rulers of Leqa Qellam +[2018-02-13T00:41:45.679] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:41:45.728] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:41:45.834] [INFO] cheese - inserting 1000 documents. first: Obo Natural Park and last: Eijkman (disambiguation) +[2018-02-13T00:41:45.882] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:41:45.963] [INFO] cheese - inserting 1000 documents. first: Template:Iran-road-stub and last: Miguel Linares Cólera +[2018-02-13T00:41:46.011] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:41:46.058] [INFO] cheese - inserting 1000 documents. first: JDRF and last: Somnology +[2018-02-13T00:41:46.074] [INFO] cheese - inserting 1000 documents. first: Pseudoradiarctia tanzanica and last: Man from Interpol +[2018-02-13T00:41:46.091] [INFO] cheese - inserting 1000 documents. first: Rulers of Luba and last: Langey +[2018-02-13T00:41:46.158] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:41:46.162] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:41:46.162] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:41:46.264] [INFO] cheese - inserting 1000 documents. first: Monodelphis brevicaudata and last: Cherpuk +[2018-02-13T00:41:46.336] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:41:46.502] [INFO] cheese - inserting 1000 documents. first: Quadrula aurea and last: Urea nitrogen +[2018-02-13T00:41:46.547] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:41:46.558] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Mithila articles and last: History of British foreign policy +[2018-02-13T00:41:46.580] [INFO] cheese - inserting 1000 documents. first: Miguel Linares Colera and last: Talgo 250 +[2018-02-13T00:41:46.615] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:41:46.636] [INFO] cheese - batch complete in: 2.308 secs +[2018-02-13T00:41:46.672] [INFO] cheese - inserting 1000 documents. first: List of Victoria Cross recipients of the cavalry and last: Shcherbyntsi +[2018-02-13T00:41:46.712] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:41:46.762] [INFO] cheese - inserting 1000 documents. first: Lanneray and last: Under armour +[2018-02-13T00:41:46.807] [INFO] cheese - inserting 1000 documents. first: Hungarian Scout Association and last: Robert Underwood +[2018-02-13T00:41:46.831] [INFO] cheese - inserting 1000 documents. first: Rhadamistus and last: William George Mount +[2018-02-13T00:41:46.834] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:41:46.884] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:41:46.900] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:41:46.922] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Washington County, North Carolina and last: 1984 BRIT Awards +[2018-02-13T00:41:47.014] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:41:47.057] [INFO] cheese - inserting 1000 documents. first: Manuel Pavón and last: Al-Ashraf Tuman bay II +[2018-02-13T00:41:47.125] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:41:47.280] [INFO] cheese - inserting 1000 documents. first: Toporivtsi and last: Sydney Metropolitan Women's Rugby League +[2018-02-13T00:41:47.281] [INFO] cheese - inserting 1000 documents. first: Kimi wo Shiranai Machi he and last: Draft:Nixa Zizu +[2018-02-13T00:41:47.338] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:41:47.332] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:41:47.472] [INFO] cheese - inserting 1000 documents. first: Chrome Division and last: Peace of Rueil +[2018-02-13T00:41:47.530] [INFO] cheese - inserting 1000 documents. first: 1985 BRIT Awards and last: Category:The Wicked Years +[2018-02-13T00:41:47.560] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:41:47.584] [INFO] cheese - inserting 1000 documents. first: Box pews and last: File:VRansford.jpg +[2018-02-13T00:41:47.611] [INFO] cheese - inserting 1000 documents. first: Category:Railway locomotives introduced in 1959 and last: 2009-10 West Virginia Mountaineers men's basketball team +[2018-02-13T00:41:47.646] [INFO] cheese - inserting 1000 documents. first: Diggin' in the Crates Crew and last: Zayed Khan +[2018-02-13T00:41:47.664] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:41:47.730] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T00:41:47.747] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:41:47.776] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:41:47.865] [INFO] cheese - inserting 1000 documents. first: Red Light (Keke Wyatt song) and last: Template:AFC sponsors +[2018-02-13T00:41:47.920] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:41:47.931] [INFO] cheese - inserting 1000 documents. first: Manoogian (disambiguation) and last: Category:Cabinets disestablished in 1841 +[2018-02-13T00:41:47.993] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:41:48.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Trampoline platysmaplasty and last: Dennis E. Fitch +[2018-02-13T00:41:48.194] [INFO] cheese - inserting 1000 documents. first: United Kingdom budget 2007-8 and last: File:Dimal.jpg +[2018-02-13T00:41:48.195] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:41:48.227] [INFO] cheese - inserting 1000 documents. first: Francesc Joan Dominic Aragó and last: FZ-50 +[2018-02-13T00:41:48.274] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:41:48.291] [INFO] cheese - inserting 1000 documents. first: Anglican Roman Catholic International Commission and last: Category:Missile boats of the Croatian Navy +[2018-02-13T00:41:48.320] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:41:48.324] [INFO] cheese - inserting 1000 documents. first: Category:Liga Perdana (1994–97) and last: Category:Suspected Wikipedia sockpuppets of Deepakarorajma +[2018-02-13T00:41:48.356] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:41:48.371] [INFO] cheese - inserting 1000 documents. first: Valentin Konnonen and last: North American Mitchell Mk.III (TB-25J) +[2018-02-13T00:41:48.398] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:41:48.445] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:41:48.515] [INFO] cheese - inserting 1000 documents. first: Italian Flag and last: Western movie +[2018-02-13T00:41:48.596] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T00:41:48.730] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Scotland articles and last: Destruction of the Endless +[2018-02-13T00:41:48.799] [INFO] cheese - inserting 1000 documents. first: Queen Mary's Psalter and last: Wikipedia:Articles for deletion/Faux Pas (webcomic) +[2018-02-13T00:41:48.825] [INFO] cheese - inserting 1000 documents. first: Category:Active missile boats of Croatia and last: Portal:History of science/Selected anniversaries/November 14 +[2018-02-13T00:41:48.826] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:41:48.861] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:41:48.891] [INFO] cheese - inserting 1000 documents. first: 1995 Montréal Expos season and last: M/V Sealth +[2018-02-13T00:41:48.913] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:41:48.984] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:41:49.011] [INFO] cheese - inserting 1000 documents. first: Category:Heinrich von Kleist and last: Don't Let It Go to Your Head (disambiguation) +[2018-02-13T00:41:49.174] [INFO] cheese - inserting 1000 documents. first: Draft:Saad Z Hossain and last: Draft:Gas South +[2018-02-13T00:41:49.182] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:41:49.292] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:41:49.489] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Novels/Members and last: Category:1969 in England +[2018-02-13T00:41:49.510] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Scotland County, North Carolina and last: (187757) 1996 UH4 +[2018-02-13T00:41:49.536] [INFO] cheese - inserting 1000 documents. first: Portal:History of science/Selected anniversaries/November 15 and last: Category:Ships built in New Brunswick +[2018-02-13T00:41:49.557] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:41:49.561] [INFO] cheese - inserting 1000 documents. first: Poimandres and last: James M. Mead +[2018-02-13T00:41:49.580] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:41:49.604] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:41:49.651] [INFO] cheese - inserting 1000 documents. first: Category:Military units and formations established in the 1980s and last: Peter Wyche (diplomat) +[2018-02-13T00:41:49.680] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T00:41:49.699] [INFO] cheese - inserting 1000 documents. first: Category:Delaware Dynasty and last: Eastern Blue Sapphire +[2018-02-13T00:41:49.704] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:41:49.753] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:41:49.814] [INFO] cheese - inserting 1000 documents. first: K40GH-D and last: Dibidogs +[2018-02-13T00:41:49.861] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:41:49.961] [INFO] cheese - inserting 1000 documents. first: BRES and last: ACHIT +[2018-02-13T00:41:49.996] [INFO] cheese - inserting 1000 documents. first: Julie Paradise and last: Category:Judge Dredd storylines +[2018-02-13T00:41:49.996] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:41:50.028] [INFO] cheese - inserting 1000 documents. first: Category:French multi-instrumentalists and last: Template:Lesotho-boxing-bio-stub +[2018-02-13T00:41:50.044] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:41:50.071] [INFO] cheese - inserting 1000 documents. first: Roman Catholicism in the Republic of the Congo and last: Angels (Avenged Sevenfold song) +[2018-02-13T00:41:50.096] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:41:50.114] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:41:50.137] [INFO] cheese - inserting 1000 documents. first: BAFTA Film Awards 2007 and last: Livability ranking +[2018-02-13T00:41:50.185] [INFO] cheese - inserting 1000 documents. first: National Skin Centre (Singapore) and last: Stony Plain +[2018-02-13T00:41:50.205] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:41:50.290] [INFO] cheese - inserting 1000 documents. first: Gynnidomorpha fraterna and last: Christian Delpech +[2018-02-13T00:41:50.318] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:41:50.368] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:41:50.432] [INFO] cheese - inserting 1000 documents. first: Category:1970 debut albums and last: (257559) 1998 TL19 +[2018-02-13T00:41:50.498] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:41:50.512] [INFO] cheese - inserting 1000 documents. first: Simulation (Avenged Sevenfold song) and last: Category:Sleater-Kinney members +[2018-02-13T00:41:50.587] [INFO] cheese - inserting 1000 documents. first: Leaver and last: African Group +[2018-02-13T00:41:50.591] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:41:50.667] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:41:50.710] [INFO] cheese - inserting 1000 documents. first: George Antrobus and last: Wikipedia:Featured article candidates/John W. Johnston +[2018-02-13T00:41:50.779] [INFO] cheese - inserting 1000 documents. first: Johnstown, Townland and last: Kang Nung-su +[2018-02-13T00:41:50.783] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:41:50.857] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:41:51.016] [INFO] cheese - inserting 1000 documents. first: Template:David Mamet and last: Phthalo +[2018-02-13T00:41:51.073] [INFO] cheese - inserting 1000 documents. first: 1800 US Presidential election and last: Friedrich von Sohr +[2018-02-13T00:41:51.162] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:41:51.165] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:41:51.186] [INFO] cheese - inserting 1000 documents. first: Love and Other Crimes (EP) and last: Dream Coder (2017 TV series) +[2018-02-13T00:41:51.222] [INFO] cheese - inserting 1000 documents. first: Jenni Mikkonen and last: Douce violence (film) +[2018-02-13T00:41:51.234] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:41:51.324] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:41:51.433] [INFO] cheese - inserting 1000 documents. first: Mark Ward (footballer) and last: Kang Woo-suk productions +[2018-02-13T00:41:51.444] [INFO] cheese - inserting 1000 documents. first: Waikato rugby league team and last: Alan Goodall +[2018-02-13T00:41:51.457] [INFO] cheese - inserting 1000 documents. first: Category:Ming dynasty calligraphers and last: Category:Presidents of the Ladies' Alpine Club +[2018-02-13T00:41:51.515] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:41:51.513] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:41:51.590] [INFO] cheese - batch complete in: 1.385 secs +[2018-02-13T00:41:51.712] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Ruthven (born 1783) and last: One Side of The Water +[2018-02-13T00:41:51.763] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:41:51.801] [INFO] cheese - inserting 1000 documents. first: Jaguar XJ (X300) and last: Albert Schagidullin +[2018-02-13T00:41:51.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Japanese Fascism:the bases to conduct at Japanese Nationalism and last: DYSEAC +[2018-02-13T00:41:51.853] [INFO] cheese - inserting 1000 documents. first: List of Chicago Bulls (AFL) players and last: Sengoku Raiden Championship +[2018-02-13T00:41:51.890] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T00:41:51.918] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:41:51.946] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:41:52.109] [INFO] cheese - inserting 1000 documents. first: Hesquiaht and last: U.S. Route 501A (Roxboro, North Carolina) +[2018-02-13T00:41:52.209] [INFO] cheese - inserting 1000 documents. first: Sam Khok District and last: 1927 Model A +[2018-02-13T00:41:52.215] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:41:52.308] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:41:52.338] [INFO] cheese - inserting 1000 documents. first: One Side Of the Water and last: DJ Pone +[2018-02-13T00:41:52.407] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:41:52.579] [INFO] cheese - inserting 1000 documents. first: CD4+ cells and last: Gemignani +[2018-02-13T00:41:52.613] [INFO] cheese - inserting 1000 documents. first: Eddie King (musician) and last: The Dimensions of Time +[2018-02-13T00:41:52.693] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T00:41:52.711] [INFO] cheese - inserting 1000 documents. first: William John Neeson, OBE and last: Yenisey Governorate +[2018-02-13T00:41:52.751] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:41:52.808] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:41:52.812] [INFO] cheese - inserting 1000 documents. first: Mola Di Bari and last: Electoral division of Daly +[2018-02-13T00:41:52.880] [INFO] cheese - inserting 1000 documents. first: Sue Boldra and last: Wikipedia:Reference desk/Archives/Language/2014 March 19 +[2018-02-13T00:41:52.905] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T00:41:52.946] [INFO] cheese - inserting 1000 documents. first: Hungarian national team and last: Beatrice Letters +[2018-02-13T00:41:52.958] [INFO] cheese - inserting 1000 documents. first: Perpetator-by-means and last: Category:Museums in Johor +[2018-02-13T00:41:52.974] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:41:53.063] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:41:53.074] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:41:53.370] [INFO] cheese - inserting 1000 documents. first: File:Containerartny.JPG and last: Markus Steinhöfer +[2018-02-13T00:41:53.371] [INFO] cheese - inserting 1000 documents. first: Marquard II von Berg and last: Germanic Myth +[2018-02-13T00:41:53.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Control (Janet Jackson album)/archive1 and last: Wikipedia:WikiProject Spam/LinkReports/nissanrogue.org +[2018-02-13T00:41:53.449] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:41:53.465] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:41:53.504] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Faith Leon (2nd nomination) and last: Category:Geography of Bragança District +[2018-02-13T00:41:53.551] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:41:53.569] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:41:53.642] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/72nd Street (Second Avenue Subway) and last: Sails of dawn +[2018-02-13T00:41:53.725] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:41:53.744] [INFO] cheese - inserting 1000 documents. first: My Sister Rose and last: Sandakphu +[2018-02-13T00:41:53.779] [INFO] cheese - inserting 1000 documents. first: P-6 Seamaster and last: Morrison's +[2018-02-13T00:41:53.829] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:41:53.896] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T00:41:53.996] [INFO] cheese - inserting 1000 documents. first: Daniel P. Hull (landscape architect) and last: Matt Garnaut +[2018-02-13T00:41:54.030] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/South Africa and last: Yemen Jews +[2018-02-13T00:41:54.075] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:41:54.091] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:41:54.168] [INFO] cheese - inserting 1000 documents. first: University Institute of Engineering and Technology, Calicut and last: File:Thicker Than Water OST.jpg +[2018-02-13T00:41:54.236] [INFO] cheese - inserting 1000 documents. first: Hoeflea and last: Avarenc +[2018-02-13T00:41:54.259] [INFO] cheese - inserting 1000 documents. first: Roman Catholic art and last: Keshin (film) +[2018-02-13T00:41:54.284] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:41:54.298] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:41:54.322] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:41:54.366] [INFO] cheese - inserting 1000 documents. first: Hail to old OSU and last: Michael Cherney +[2018-02-13T00:41:54.456] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:41:54.540] [INFO] cheese - inserting 1000 documents. first: Benjamin Perley Poore and last: May 29 (Orthodox Liturgics) +[2018-02-13T00:41:54.683] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:41:54.688] [INFO] cheese - inserting 1000 documents. first: Template:Infobox rebreather and last: Academy of Theatre in Warsaw +[2018-02-13T00:41:54.752] [INFO] cheese - inserting 1000 documents. first: Sergio Aguayo and last: File:Liberian Girl Guides Association.png +[2018-02-13T00:41:54.754] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:41:54.825] [INFO] cheese - inserting 1000 documents. first: File:Kicking Out Shoshana Poster.jpg and last: Star Wars sequel +[2018-02-13T00:41:54.828] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Spot the Diff and last: Ice hockey at the Asian Winter Games +[2018-02-13T00:41:54.836] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:41:54.880] [INFO] cheese - inserting 1000 documents. first: Avarene and last: Azoyu Me'phaa language +[2018-02-13T00:41:54.933] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:41:54.944] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:41:55.019] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:41:55.196] [INFO] cheese - inserting 1000 documents. first: Hitchcock, SD and last: Lake View Terrace, Los Angeles, CA +[2018-02-13T00:41:55.230] [INFO] cheese - inserting 1000 documents. first: Survival of the fittest (disambiguation) and last: File:ManasquanInlet.jpg +[2018-02-13T00:41:55.256] [INFO] cheese - inserting 1000 documents. first: Coal in Europe and last: Pfeffingen Castle +[2018-02-13T00:41:55.266] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:41:55.312] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:41:55.351] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T00:41:55.418] [INFO] cheese - inserting 1000 documents. first: Kryptops and last: Multiracial British +[2018-02-13T00:41:55.439] [INFO] cheese - inserting 1000 documents. first: Overberg skolly and last: Wikipedia:Articles for deletion/Jovan Radomir +[2018-02-13T00:41:55.482] [INFO] cheese - inserting 1000 documents. first: Asheninka Pajonal language and last: Template:Indian Television Academy Award Best Lead Actress +[2018-02-13T00:41:55.492] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition Qods League SM and last: EX SEKTOR GAZA +[2018-02-13T00:41:55.494] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:41:55.505] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:41:55.535] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:41:55.563] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:41:55.713] [INFO] cheese - inserting 1000 documents. first: Lake Waccamaw, NC and last: Parliamentary Party of Kosovo +[2018-02-13T00:41:55.760] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:41:55.772] [INFO] cheese - inserting 1000 documents. first: Bischofstein Castle (Switzerland) and last: Tennis at the 2011 Southeast Asian Games – Mixed Doubles +[2018-02-13T00:41:55.825] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:41:55.839] [INFO] cheese - inserting 1000 documents. first: London-Zürich Agreements and last: Pictures on My Wall +[2018-02-13T00:41:55.882] [INFO] cheese - inserting 1000 documents. first: Category:Wings of the Hellenic Air Force and last: The doon school film +[2018-02-13T00:41:55.888] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:41:55.914] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:41:55.963] [INFO] cheese - inserting 1000 documents. first: Book:Nitrogen group and last: Category:Transport companies disestablished in 1936 +[2018-02-13T00:41:55.974] [INFO] cheese - inserting 1000 documents. first: Template:SAP Open tournaments (Open Era) and last: File:WCDV logo.png +[2018-02-13T00:41:56.020] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:41:56.049] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:41:56.055] [INFO] cheese - inserting 1000 documents. first: PZL-Mielec Lim-5 and last: Maria Muchbukta +[2018-02-13T00:41:56.131] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:41:56.195] [INFO] cheese - inserting 1000 documents. first: People's Movement of Kosovo and last: Double-wide trailer +[2018-02-13T00:41:56.207] [INFO] cheese - inserting 1000 documents. first: Device Control Two and last: File:Anas al Kandari -- Faylaka Island ambusher.jpg +[2018-02-13T00:41:56.258] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:41:56.265] [INFO] cheese - inserting 1000 documents. first: Template:Maccabiah infobox and last: Lago Tipiccocha +[2018-02-13T00:41:56.273] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:41:56.317] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:41:56.338] [INFO] cheese - inserting 1000 documents. first: K. 133 and last: Sky Saw +[2018-02-13T00:41:56.398] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:41:56.437] [INFO] cheese - inserting 1000 documents. first: 2016 PGA EuroPro Tour and last: Template:Taxonomy/Sagmatias +[2018-02-13T00:41:56.481] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:41:56.484] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Marvin Gaye and last: File:DiskovolosV.png +[2018-02-13T00:41:56.557] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:41:56.825] [INFO] cheese - inserting 1000 documents. first: Minneapolis, Minnesota, US and last: Category:Naval ships of South Carolina +[2018-02-13T00:41:56.865] [INFO] cheese - inserting 1000 documents. first: SoSo Def Records and last: Closed syllable +[2018-02-13T00:41:56.895] [INFO] cheese - inserting 1000 documents. first: Tipiqocha and last: Nanostructured Materials +[2018-02-13T00:41:56.942] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:41:56.964] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:41:57.009] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:41:57.110] [INFO] cheese - inserting 1000 documents. first: Monique Pietri and last: Ernst Gottlob Orthmann +[2018-02-13T00:41:57.122] [INFO] cheese - inserting 1000 documents. first: Tranato and last: File:Jp49820030410bDSC 0037.jpg +[2018-02-13T00:41:57.198] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:41:57.214] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:41:57.338] [INFO] cheese - inserting 1000 documents. first: Florida State League rosters and last: Category:Companies based in Vernon Hills, Illinois +[2018-02-13T00:41:57.492] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T00:41:57.547] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NCVIET and last: Gregory John Crafter +[2018-02-13T00:41:57.549] [INFO] cheese - inserting 1000 documents. first: Category:Ships of South Carolina and last: Argyroploce sphaerocopa +[2018-02-13T00:41:57.576] [INFO] cheese - inserting 1000 documents. first: Archibald Frederick Campbell, Marquess of Lorne and last: Ogdensburg, NJ +[2018-02-13T00:41:57.602] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:41:57.620] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:41:57.639] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:41:57.685] [INFO] cheese - inserting 1000 documents. first: Kuraudo Sutoraifu and last: Koksilah ridge +[2018-02-13T00:41:57.774] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:41:57.818] [INFO] cheese - inserting 1000 documents. first: File:LeahLabelleLolitaCover.jpg and last: Dragon (spacecraft) +[2018-02-13T00:41:57.883] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:41:57.997] [INFO] cheese - inserting 1000 documents. first: Anatoly Polyanski and last: File:RevolutionX arcadeflyer.png +[2018-02-13T00:41:58.021] [INFO] cheese - inserting 1000 documents. first: Template:North Shore article poster and last: Category:Kalinga Prize recipients +[2018-02-13T00:41:58.028] [INFO] cheese - inserting 1000 documents. first: Frost & Sullivan and last: Category:American nonprofit executives +[2018-02-13T00:41:58.075] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:41:58.101] [INFO] cheese - inserting 1000 documents. first: Korea Ferrous Metals Export & Import and last: Wikipedia:Articles for deletion/Virtual University +[2018-02-13T00:41:58.102] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:41:58.118] [INFO] cheese - inserting 1000 documents. first: Gregory Crafter and last: Wikipedia:Articles for deletion/Independent Bosnia +[2018-02-13T00:41:58.115] [INFO] cheese - batch complete in: 1.984 secs +[2018-02-13T00:41:58.175] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:41:58.184] [INFO] cheese - inserting 1000 documents. first: Dealu Bisericii and last: San Ildefonso Peninsula +[2018-02-13T00:41:58.201] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:41:58.232] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:41:58.335] [INFO] cheese - inserting 1000 documents. first: Stade du Roudourou and last: GEC Core Operating System +[2018-02-13T00:41:58.372] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:41:58.556] [INFO] cheese - inserting 1000 documents. first: Micronyctemera and last: English Patent County Court +[2018-02-13T00:41:58.600] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:41:58.647] [INFO] cheese - inserting 1000 documents. first: Category:Horse races in Turkey and last: File:Anna Karenina FilmPoster.jpeg +[2018-02-13T00:41:58.668] [INFO] cheese - inserting 1000 documents. first: Cheong-Wa Dae and last: Wikipedia:Articles for deletion/Anil Dash +[2018-02-13T00:41:58.677] [INFO] cheese - inserting 1000 documents. first: Centennial Tower (Singapore) and last: Beaufort, Haute-Garonne +[2018-02-13T00:41:58.738] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:41:58.740] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:41:58.747] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:41:58.774] [INFO] cheese - inserting 1000 documents. first: Negro River (Argentina) and last: Uchturpan County +[2018-02-13T00:41:58.872] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:41:58.902] [INFO] cheese - inserting 1000 documents. first: Template:Lucky Stars franchise and last: Celebrity Bromance +[2018-02-13T00:41:58.963] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:41:59.064] [INFO] cheese - inserting 1000 documents. first: Palestinian exodus from Kuwait (Gulf War) and last: The Australian and New Zealand Association of Bellringers +[2018-02-13T00:41:59.106] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:41:59.123] [INFO] cheese - inserting 1000 documents. first: Special Operations Command and last: James W. Alexander, II +[2018-02-13T00:41:59.192] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:41:59.297] [INFO] cheese - inserting 1000 documents. first: Category:State labor commissioners in the United States and last: David Grellier +[2018-02-13T00:41:59.347] [INFO] cheese - inserting 1000 documents. first: Sart (album) and last: File:Lost Continent 1968.jpg +[2018-02-13T00:41:59.409] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:41:59.440] [INFO] cheese - inserting 1000 documents. first: Beauteville and last: KBRX (AM) +[2018-02-13T00:41:59.464] [INFO] cheese - batch complete in: 1.349 secs +[2018-02-13T00:41:59.483] [INFO] cheese - inserting 1000 documents. first: Treasure hunt (disambiguation) and last: Category:The Rascals albums +[2018-02-13T00:41:59.493] [INFO] cheese - inserting 1000 documents. first: Snowden Branch and last: Mae Martin +[2018-02-13T00:41:59.576] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T00:41:59.603] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:41:59.626] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:41:59.870] [INFO] cheese - inserting 1000 documents. first: South Park City, CO and last: Union Township, Hunterdon County, NJ +[2018-02-13T00:41:59.910] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:41:59.966] [INFO] cheese - inserting 1000 documents. first: File:Katharine Wright (1896).jpg and last: Wikipedia:Bots/Requests for approval/Helpful Pixie Bot 45 +[2018-02-13T00:41:59.997] [INFO] cheese - inserting 1000 documents. first: Boxing at the 2009 Asian Indoor Games and last: The Tip of the Iceberg +[2018-02-13T00:42:00.004] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/227 (TV series) and last: Antoine Boësset +[2018-02-13T00:42:00.005] [INFO] cheese - inserting 1000 documents. first: 2014 Critérium International and last: Mega Limited +[2018-02-13T00:42:00.032] [INFO] cheese - inserting 1000 documents. first: Orphnaeus brevilabiatus and last: Category:OS X web browsers +[2018-02-13T00:42:00.036] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:42:00.052] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:42:00.065] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:42:00.079] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:42:00.136] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T00:42:00.210] [INFO] cheese - inserting 1000 documents. first: List of communes of the Province of Matera and last: Azeb Mesfin +[2018-02-13T00:42:00.253] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:42:00.448] [INFO] cheese - inserting 1000 documents. first: Fernand Stiévenart and last: Category:Birds of Luzon +[2018-02-13T00:42:00.460] [INFO] cheese - inserting 1000 documents. first: Ellis Lloyd (MP) and last: Yeşilyurt, Taşova +[2018-02-13T00:42:00.465] [INFO] cheese - inserting 1000 documents. first: Plagne, Haute-Garonne and last: Kaheiheimaile +[2018-02-13T00:42:00.470] [INFO] cheese - inserting 1000 documents. first: Children's art and last: Wærns +[2018-02-13T00:42:00.482] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:42:00.488] [INFO] cheese - inserting 1000 documents. first: A World to Win/ (1935 Novel) and last: Where the Sidewalk Ends (song) +[2018-02-13T00:42:00.493] [INFO] cheese - inserting 1000 documents. first: Gonbad-e Qabus County and last: Category:Parishes of Boticas +[2018-02-13T00:42:00.503] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:42:00.522] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:42:00.503] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:42:00.554] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:42:00.612] [INFO] cheese - inserting 1000 documents. first: Crescentius Richard and last: File:View -1.jpg +[2018-02-13T00:42:00.624] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:42:00.668] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:42:00.793] [INFO] cheese - inserting 1000 documents. first: 2016–17 Nemzeti Bajnokság I/A (women's basketball) and last: IrAn-140 +[2018-02-13T00:42:00.842] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:42:00.908] [INFO] cheese - inserting 1000 documents. first: File:AOIICrest.gif and last: Robert Morris Morgenthau +[2018-02-13T00:42:00.930] [INFO] cheese - inserting 1000 documents. first: Allen Horn and last: Template:After/doc +[2018-02-13T00:42:00.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ecg.clan.su and last: Liévans +[2018-02-13T00:42:01.009] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:42:01.109] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:42:01.112] [INFO] cheese - inserting 1000 documents. first: Allium azutavicum and last: Ook Ook +[2018-02-13T00:42:01.122] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:42:01.201] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:42:01.340] [INFO] cheese - inserting 1000 documents. first: Cristopher Lee and last: Beyond the Beltway +[2018-02-13T00:42:01.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramdenee and last: Wetzel County, WV +[2018-02-13T00:42:01.464] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:42:01.573] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Kirengellidae and last: TOTU +[2018-02-13T00:42:01.573] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T00:42:01.663] [INFO] cheese - inserting 1000 documents. first: The Party (1958 play) and last: Katara (disambiguation) +[2018-02-13T00:42:01.688] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:42:01.693] [INFO] cheese - inserting 1000 documents. first: Linexert and last: Giuseppe Baldo +[2018-02-13T00:42:01.728] [INFO] cheese - inserting 1000 documents. first: Babu (film) and last: Mauro Galindo +[2018-02-13T00:42:01.734] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:42:01.751] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:42:01.754] [INFO] cheese - inserting 1000 documents. first: Ayia Triada and last: File:Songs For Justice cover.jpg +[2018-02-13T00:42:01.830] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:42:01.847] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:42:02.151] [INFO] cheese - inserting 1000 documents. first: Bihor (region) and last: Broadleaf Plantain +[2018-02-13T00:42:02.215] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:42:02.252] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/Peel Castle at night and last: Template:Political parties in the Central African Republic +[2018-02-13T00:42:02.256] [INFO] cheese - inserting 1000 documents. first: Golden Bull of Charles IV and last: Indie electronic +[2018-02-13T00:42:02.282] [INFO] cheese - inserting 1000 documents. first: M-99 and last: Colmier-le-Bas +[2018-02-13T00:42:02.297] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:42:02.302] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:42:02.306] [INFO] cheese - inserting 1000 documents. first: Kathputli Colony and last: Wikipedia:Articles for deletion/Ubisoft Chengdu +[2018-02-13T00:42:02.314] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:42:02.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Radiša and last: Quảng Bình Gifted High School +[2018-02-13T00:42:02.366] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:42:02.406] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:42:02.458] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Illinois, 1980 and last: 2011 Chilean telethon +[2018-02-13T00:42:02.518] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:42:02.700] [INFO] cheese - inserting 1000 documents. first: Colmier-le-Haut and last: Hms Victory +[2018-02-13T00:42:02.738] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:42:02.791] [INFO] cheese - inserting 1000 documents. first: Taufiq Qureshi and last: Lion of Belfort (Montreal) +[2018-02-13T00:42:02.797] [INFO] cheese - inserting 1000 documents. first: Fagetu and last: David Smith (footballer, born 1970) +[2018-02-13T00:42:02.858] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:42:02.862] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:42:02.876] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/requests/instructions2 and last: Piasecki XH-21 +[2018-02-13T00:42:02.938] [INFO] cheese - inserting 1000 documents. first: Humberto Alvarez-Machain and last: Boyle Family +[2018-02-13T00:42:02.940] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:42:02.949] [INFO] cheese - inserting 1000 documents. first: File:Everything Sad Is Coming Untrue.jpg and last: Wildebeest (ride) +[2018-02-13T00:42:03.013] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:42:03.015] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:42:03.163] [INFO] cheese - inserting 1000 documents. first: Up Close and Personal (Talk show) and last: Draft:Matwai Baranov +[2018-02-13T00:42:03.177] [INFO] cheese - inserting 1000 documents. first: Menthonnex-sous-Clermont and last: Monarch Broadcasting +[2018-02-13T00:42:03.236] [INFO] cheese - inserting 1000 documents. first: Category:Tennessee Volunteers football broadcasters and last: The Twig trilogy +[2018-02-13T00:42:03.240] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:42:03.309] [INFO] cheese - inserting 1000 documents. first: Piasecki YH-21 and last: Philippine-American relations +[2018-02-13T00:42:03.310] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:42:03.344] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:42:03.382] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:42:03.567] [INFO] cheese - inserting 1000 documents. first: Portal:Karnataka/Selected picture and last: Frank Reade and his Electric Man +[2018-02-13T00:42:03.664] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T00:42:03.707] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in McCormick County, South Carolina and last: Lazyboy (band) +[2018-02-13T00:42:03.802] [INFO] cheese - inserting 1000 documents. first: Saxon (disambiguation) and last: Diane Diamond +[2018-02-13T00:42:03.802] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:42:03.882] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:42:03.923] [INFO] cheese - inserting 1000 documents. first: Bush Mountain and last: Category:Buildings and structures in Manchester Parish +[2018-02-13T00:42:03.926] [INFO] cheese - inserting 1000 documents. first: Espèche and last: Braye-sur-Maulne +[2018-02-13T00:42:03.961] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:42:03.981] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:42:04.021] [INFO] cheese - inserting 1000 documents. first: Jade World and last: The Legend of Zelda (game watch) +[2018-02-13T00:42:04.079] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:42:04.096] [INFO] cheese - inserting 1000 documents. first: Template:BAP/doc and last: Sieges of Ceuta +[2018-02-13T00:42:04.210] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T00:42:04.235] [INFO] cheese - inserting 1000 documents. first: Lumbar veins and last: State Route 137 (Virginia pre-1933) +[2018-02-13T00:42:04.311] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:42:04.383] [INFO] cheese - inserting 1000 documents. first: Musee Aeronautique Presqu'ile Cote d'Amour and last: Little John's Farm +[2018-02-13T00:42:04.426] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:42:04.444] [INFO] cheese - inserting 1000 documents. first: Michael Hedges (sound engineer) and last: Gary A. Rizzo +[2018-02-13T00:42:04.506] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:42:04.522] [INFO] cheese - inserting 1000 documents. first: Paulet St John, 7th Baron St John of Bletso and last: United Kingdom Drought of 1955 +[2018-02-13T00:42:04.543] [INFO] cheese - inserting 1000 documents. first: Ministry of the Russian Federation for Civil Defense, Emergencies and the Elimination of the Consequences of Natural Disasters and last: Herb Magidson +[2018-02-13T00:42:04.569] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:42:04.587] [INFO] cheese - inserting 1000 documents. first: SHOX and last: Recologne-lès-Rioz +[2018-02-13T00:42:04.616] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:42:04.646] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:42:04.740] [INFO] cheese - inserting 1000 documents. first: Route 137 (Virginia pre-1933) and last: Boseong-gun +[2018-02-13T00:42:04.759] [INFO] cheese - inserting 1000 documents. first: Watsonidia pardea and last: Eighty Years' War (1566–1609) +[2018-02-13T00:42:04.787] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:42:04.797] [INFO] cheese - inserting 1000 documents. first: Butler Creek (Elk River) and last: Richard Walsh (English politician) +[2018-02-13T00:42:04.812] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:42:04.884] [INFO] cheese - inserting 1000 documents. first: Template:RCTS-LocosGWR-2/doc and last: Category:Beypazarı, Ankara +[2018-02-13T00:42:04.885] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:42:04.927] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:42:04.960] [INFO] cheese - inserting 1000 documents. first: SoaML and last: Wu Weichao +[2018-02-13T00:42:05.003] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:42:05.043] [INFO] cheese - inserting 1000 documents. first: Template:Vermonter and last: James T. "Joker" Davis +[2018-02-13T00:42:05.087] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:42:05.150] [INFO] cheese - inserting 1000 documents. first: Citicar/CommutaCar/Comuta-Van and last: Gdansk Shipyards +[2018-02-13T00:42:05.196] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:42:05.238] [INFO] cheese - inserting 1000 documents. first: Template:Poland men volleyball team 2006 FIVB World Championship and last: Allium thessalum +[2018-02-13T00:42:05.275] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:42:05.363] [INFO] cheese - inserting 1000 documents. first: File:Everyave.jpg and last: Wikipedia:WikiProject Spam/LinkReports/fsi-viewer.com +[2018-02-13T00:42:05.407] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:42:05.414] [INFO] cheese - inserting 1000 documents. first: Robert Knollys (politician died 1659) and last: Wikipedia:Reference desk/Archives/Humanities/2011 November 18 +[2018-02-13T00:42:05.424] [INFO] cheese - inserting 1000 documents. first: Arthur Michael Samuel, 1st Baron Mancroft and last: The Natural History of Selborne +[2018-02-13T00:42:05.475] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:42:05.530] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:42:05.549] [INFO] cheese - inserting 1000 documents. first: Cociovaliștea and last: Kostas Themistokleous +[2018-02-13T00:42:05.556] [INFO] cheese - inserting 1000 documents. first: Cellulosimicrobium cellulans and last: Zhu Tianxin +[2018-02-13T00:42:05.633] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:42:05.645] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:42:05.894] [INFO] cheese - inserting 1000 documents. first: Category:Bridges in Gloucestershire and last: Template:Republican Party (United States)/meta/shortname +[2018-02-13T00:42:05.948] [INFO] cheese - inserting 1000 documents. first: Porrum amethystinum and last: Kang Seong-Jung +[2018-02-13T00:42:05.980] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:42:06.026] [INFO] cheese - inserting 1000 documents. first: File:Biblical judges.png and last: Eric Staller +[2018-02-13T00:42:06.028] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:42:06.108] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:42:06.175] [INFO] cheese - inserting 1000 documents. first: Fondremand and last: Wikipedia:Peer review/History of Portugal (1578-1777) +[2018-02-13T00:42:06.248] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:42:06.265] [INFO] cheese - inserting 1000 documents. first: Wates Building Group and last: File:Vinegar Joe.jpg +[2018-02-13T00:42:06.316] [INFO] cheese - inserting 1000 documents. first: Bimm and last: Sk 60C +[2018-02-13T00:42:06.346] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:42:06.422] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T00:42:06.566] [INFO] cheese - inserting 1000 documents. first: Category:Contemporary Christian articles by quality and last: Oops! (Super Junior song) +[2018-02-13T00:42:06.640] [INFO] cheese - inserting 1000 documents. first: File:John Pybus.jpg and last: Cuddington Meadows +[2018-02-13T00:42:06.641] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T00:42:06.701] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:42:06.743] [INFO] cheese - inserting 1000 documents. first: V Vinod Kumar and last: Romanian Orthodox Archdiocese of America and Canada +[2018-02-13T00:42:06.770] [INFO] cheese - inserting 1000 documents. first: 1951 Prime Minister's Resignation Honours and last: Wikipedia:Peer review/Jang Yeong-sil +[2018-02-13T00:42:06.791] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:42:06.820] [INFO] cheese - inserting 1000 documents. first: Great Eastern (radio show) and last: Valerate +[2018-02-13T00:42:06.841] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:42:06.931] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T00:42:06.956] [INFO] cheese - inserting 1000 documents. first: ROCS Hsiang Yang (DD-1) and last: Parti (surname) +[2018-02-13T00:42:07.021] [INFO] cheese - inserting 1000 documents. first: Jul i Betlehem and last: Heartattack +[2018-02-13T00:42:07.034] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T00:42:07.119] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:42:07.217] [INFO] cheese - inserting 1000 documents. first: Template:Japanese Animation Creators Association and last: Category:Spy films by genre +[2018-02-13T00:42:07.266] [INFO] cheese - inserting 1000 documents. first: Lateral hiring and last: OPCS-4.6 +[2018-02-13T00:42:07.306] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:42:07.367] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:42:07.406] [INFO] cheese - inserting 1000 documents. first: Methylnandrolone and last: Category:1047 in Asia +[2018-02-13T00:42:07.423] [INFO] cheese - inserting 1000 documents. first: Noia (region) and last: Grant Township, Crawford County, Kansas +[2018-02-13T00:42:07.454] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:42:07.473] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:42:07.623] [INFO] cheese - inserting 1000 documents. first: Fuck The World (The Vines song) and last: Muhammad bin Naif +[2018-02-13T00:42:07.691] [INFO] cheese - inserting 1000 documents. first: Final Fantasy Legend III and last: Wikipedia:Articles for deletion/Full formal listing of sources on Stalin in the Civil War +[2018-02-13T00:42:07.754] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:42:07.777] [INFO] cheese - inserting 1000 documents. first: 1989 World Sportscar Championship and last: Ochrotomyini +[2018-02-13T00:42:07.806] [INFO] cheese - inserting 1000 documents. first: File:Gulf Coast Athletic Conference logo.png and last: Thomas Hale (agriculturist) +[2018-02-13T00:42:07.881] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T00:42:07.902] [INFO] cheese - inserting 1000 documents. first: Brain activity and meditation and last: Startkey +[2018-02-13T00:42:07.923] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:42:07.965] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:42:08.072] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:42:08.212] [INFO] cheese - inserting 1000 documents. first: File:Affiche.L-Esclave.7864.jpg and last: Biser (given name) +[2018-02-13T00:42:08.219] [INFO] cheese - inserting 1000 documents. first: Lincoln Township, Crawford County, Kansas and last: Box–Cox distribution +[2018-02-13T00:42:08.323] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T00:42:08.331] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:42:08.542] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox First Opium War and last: Thysanoplusia circumscripta +[2018-02-13T00:42:08.611] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T00:42:08.633] [INFO] cheese - inserting 1000 documents. first: Cerrig Man and last: Category:Songs written by Rob Hatch +[2018-02-13T00:42:08.707] [INFO] cheese - inserting 1000 documents. first: Dilith Jayaweera and last: IGN FI +[2018-02-13T00:42:08.711] [INFO] cheese - inserting 1000 documents. first: East Hebei Autonomous Council and last: David de la Fuente Rasilla +[2018-02-13T00:42:08.716] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:42:08.766] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:42:08.822] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T00:42:08.875] [INFO] cheese - inserting 1000 documents. first: Raif Dizdarević and last: Naruto (rank) +[2018-02-13T00:42:08.974] [INFO] cheese - inserting 1000 documents. first: WGTJ and last: Natalia Doussopoulos +[2018-02-13T00:42:08.987] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T00:42:09.020] [INFO] cheese - inserting 1000 documents. first: De Vere Group and last: Draft:Inhabit Media +[2018-02-13T00:42:09.032] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:42:09.119] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:42:09.240] [INFO] cheese - inserting 1000 documents. first: File:VIFF 2014 logo medium.png and last: Christ Presbyterian Church +[2018-02-13T00:42:09.297] [INFO] cheese - inserting 1000 documents. first: Plusia circumscripta and last: Province of Taourirt +[2018-02-13T00:42:09.338] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:42:09.366] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:42:09.419] [INFO] cheese - inserting 1000 documents. first: Hero Hitler In Love (2011) and last: BioMart +[2018-02-13T00:42:09.487] [INFO] cheese - inserting 1000 documents. first: Mahackemo and last: Chui River +[2018-02-13T00:42:09.488] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:42:09.611] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:42:09.658] [INFO] cheese - inserting 1000 documents. first: The Corn Is Green (1945 film) and last: Martihaz +[2018-02-13T00:42:09.712] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:42:09.730] [INFO] cheese - inserting 1000 documents. first: Category:Suck (band) albums and last: Category:1369 establishments in Europe +[2018-02-13T00:42:09.817] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:42:09.883] [INFO] cheese - inserting 1000 documents. first: Beenleigh Divisional Board and last: Fasnacloich +[2018-02-13T00:42:09.924] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:42:09.940] [INFO] cheese - inserting 1000 documents. first: Karel Hermanek and last: Abgarmak-e Sofla, Besharat +[2018-02-13T00:42:09.979] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:42:10.013] [INFO] cheese - inserting 1000 documents. first: Template:RFCUlist/doc and last: War of the Allies +[2018-02-13T00:42:10.062] [INFO] cheese - inserting 1000 documents. first: Category:Doctor Who Doctors and last: Lal-lo, Cagayan +[2018-02-13T00:42:10.078] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:42:10.142] [INFO] cheese - inserting 1000 documents. first: Category:1369 establishments by continent and last: Category:1022 establishments by country +[2018-02-13T00:42:10.166] [INFO] cheese - batch complete in: 1.179 secs +[2018-02-13T00:42:10.185] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:42:10.227] [INFO] cheese - inserting 1000 documents. first: Nicolas (wine retailer) and last: San Diego County Transportation +[2018-02-13T00:42:10.263] [INFO] cheese - inserting 1000 documents. first: File:Elliot Goldenthal - Final Fantasy - The Phantom Plains.ogg and last: Cheviré-le-Rouge +[2018-02-13T00:42:10.297] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:42:10.320] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:42:10.407] [INFO] cheese - inserting 1000 documents. first: Karl Aegerter and last: Baghsar fort +[2018-02-13T00:42:10.465] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:42:10.499] [INFO] cheese - inserting 1000 documents. first: David Sayer and last: Martha Nilsson Edelheit +[2018-02-13T00:42:10.594] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:42:10.600] [INFO] cheese - inserting 1000 documents. first: Thalidomide scandal and last: Berliner-Joyce XP-13 Viper +[2018-02-13T00:42:10.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of first-class cricket matches played by Nepal and last: The Doug Anthony All Stars +[2018-02-13T00:42:10.684] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:42:10.709] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:42:10.755] [INFO] cheese - inserting 1000 documents. first: Chigné and last: Nathan Cross +[2018-02-13T00:42:10.811] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:42:10.901] [INFO] cheese - inserting 1000 documents. first: Pius Schwert and last: Eric Parker (American football) +[2018-02-13T00:42:10.937] [INFO] cheese - inserting 1000 documents. first: Lasam, Cagayan and last: Ruby Falls +[2018-02-13T00:42:10.979] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:42:10.987] [INFO] cheese - inserting 1000 documents. first: Super Typhoon Emma (Welming) and last: Júlio Cesar Paula Muniz Júnior +[2018-02-13T00:42:11.049] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:42:11.089] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:42:11.179] [INFO] cheese - inserting 1000 documents. first: Creole (linguistics) and last: Seymour Shifrin +[2018-02-13T00:42:11.255] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:42:11.273] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Marshtomp and last: French ship Sémillante +[2018-02-13T00:42:11.320] [INFO] cheese - inserting 1000 documents. first: Iolo Morganwg Manuscripts and last: Ram Charan Mehrotra +[2018-02-13T00:42:11.334] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:42:11.349] [INFO] cheese - inserting 1000 documents. first: Calliergis ramosa and last: Memorial Coliseum (Fort Wayne) +[2018-02-13T00:42:11.380] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:42:11.403] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:42:11.547] [INFO] cheese - inserting 1000 documents. first: Julio César Paula Muniz Júnior and last: Category:Linfield Wildcats baseball players +[2018-02-13T00:42:11.584] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:42:11.603] [INFO] cheese - inserting 1000 documents. first: Glider (EP) and last: Harzburg +[2018-02-13T00:42:11.656] [INFO] cheese - inserting 1000 documents. first: Pedestrian-actuated signal and last: Kilravock +[2018-02-13T00:42:11.658] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:42:11.667] [INFO] cheese - inserting 1000 documents. first: Portal:Virginia/Related portals and last: Wikipedia:Featured picture candidates/King's College Chapel West +[2018-02-13T00:42:11.704] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:42:11.739] [INFO] cheese - inserting 1000 documents. first: Banana Joe (film) and last: Houtteville +[2018-02-13T00:42:11.741] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:42:11.808] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:42:11.862] [INFO] cheese - inserting 1000 documents. first: Confectioner's resin and last: P (grammar) +[2018-02-13T00:42:11.934] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:42:11.942] [INFO] cheese - inserting 1000 documents. first: Ngima and last: Jonathan Bailey House (Milo, New York) +[2018-02-13T00:42:11.994] [INFO] cheese - inserting 1000 documents. first: Numer and last: Nord 1500 Griffon I +[2018-02-13T00:42:12.014] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:42:12.101] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:42:12.130] [INFO] cheese - inserting 1000 documents. first: List of Heat Guy J episodes and last: Category:Dams in French Guiana +[2018-02-13T00:42:12.182] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:42:12.217] [INFO] cheese - inserting 1000 documents. first: Schipol and last: Wikipedia:Articles for deletion/Elle milano +[2018-02-13T00:42:12.266] [INFO] cheese - inserting 1000 documents. first: Gourgue and last: Highway 322 +[2018-02-13T00:42:12.297] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:42:12.308] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:42:12.490] [INFO] cheese - inserting 1000 documents. first: File:Kalamazoo Wings (1974-2000) logo.svg and last: Eduard Müller (internist) +[2018-02-13T00:42:12.550] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:42:12.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Christ Literalist: Complete Quotes From The World's Most Renowned Revolutionary and last: K-League 1998 +[2018-02-13T00:42:12.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fuck in different languages and last: Norwegian Premier League 1987 +[2018-02-13T00:42:12.735] [INFO] cheese - inserting 1000 documents. first: Nord 1500 Griffon II and last: List of Astrological organizations +[2018-02-13T00:42:12.773] [INFO] cheese - inserting 1000 documents. first: Calcium Release Activated Channels and last: Hercílio Luz (disambiguation) +[2018-02-13T00:42:12.859] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:42:12.881] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T00:42:12.890] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:42:12.911] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:42:12.962] [INFO] cheese - inserting 1000 documents. first: Krešimir Ćosić Hall and last: David Levy (psychologist) +[2018-02-13T00:42:13.073] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:42:13.310] [INFO] cheese - inserting 1000 documents. first: Shapwick (Somerset) and last: Elements of Semiology +[2018-02-13T00:42:13.324] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Church and last: Category:Shropshire Wanderers F.C. players +[2018-02-13T00:42:13.378] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:42:13.390] [INFO] cheese - batch complete in: 1.092 secs +[2018-02-13T00:42:13.457] [INFO] cheese - inserting 1000 documents. first: K-League 1999 and last: Arctonotus +[2018-02-13T00:42:13.481] [INFO] cheese - inserting 1000 documents. first: Blackwoods and last: Digital Content +[2018-02-13T00:42:13.503] [INFO] cheese - inserting 1000 documents. first: Robert Thew and last: SSZ-class blimp +[2018-02-13T00:42:13.529] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:42:13.566] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:42:13.579] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:42:13.611] [INFO] cheese - inserting 1000 documents. first: Rolfosteus (genus) and last: Cliche Guevara +[2018-02-13T00:42:13.617] [INFO] cheese - inserting 1000 documents. first: John Herbert Crawford (politician) and last: Estrid Svendsdatter +[2018-02-13T00:42:13.667] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:42:13.677] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:42:13.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/easycounter.com and last: File:CIBQ RealCountry105.7 logo.png +[2018-02-13T00:42:13.925] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:42:13.965] [INFO] cheese - inserting 1000 documents. first: Charles Sumner Benedict and last: Nektarios Terpos +[2018-02-13T00:42:13.974] [INFO] cheese - inserting 1000 documents. first: Quality-of-Data (QoD) and last: Expander cycle (rocket) +[2018-02-13T00:42:14.008] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/County of Calvelage and last: Wikipedia:Peer review/Simpson's paradox +[2018-02-13T00:42:14.046] [INFO] cheese - inserting 1000 documents. first: Falcon Down and last: Category:Singing competitions +[2018-02-13T00:42:14.065] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:42:14.065] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:42:14.064] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:42:14.222] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T00:42:14.339] [INFO] cheese - inserting 1000 documents. first: The High Society and last: Cinco de Septiembre Stadium +[2018-02-13T00:42:14.428] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:42:14.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eamusic.dartmouth.edu and last: File:WQIL logo.jpg +[2018-02-13T00:42:14.649] [INFO] cheese - inserting 1000 documents. first: Elida Almeida and last: 1943 Missouri Tigers football team +[2018-02-13T00:42:14.685] [INFO] cheese - inserting 1000 documents. first: The Spy (2012 film) and last: Category:Bryant Bulldogs men's basketball navigational boxes +[2018-02-13T00:42:14.705] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:42:14.716] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:42:14.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/untmedia.250x.com and last: Vienna Declaration and Programme of Action (VDPA) +[2018-02-13T00:42:14.755] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:42:14.830] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:42:15.039] [INFO] cheese - inserting 1000 documents. first: File:Methamphetamine.gif and last: Miles Tails Prowler +[2018-02-13T00:42:15.122] [INFO] cheese - inserting 1000 documents. first: Rück's Blue-flycatcher and last: Christopher Becker +[2018-02-13T00:42:15.130] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T00:42:15.147] [INFO] cheese - inserting 1000 documents. first: Valhalla: Before the War and last: Observers +[2018-02-13T00:42:15.208] [INFO] cheese - inserting 1000 documents. first: Fargues and last: Category:1974 in Europe +[2018-02-13T00:42:15.228] [INFO] cheese - inserting 1000 documents. first: Super Parental Guidance and last: Chamber of Deputies of Portugal +[2018-02-13T00:42:15.258] [INFO] cheese - batch complete in: 1.679 secs +[2018-02-13T00:42:15.289] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:42:15.305] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steven Oberman and last: File:20 20 Vision.jpg +[2018-02-13T00:42:15.305] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T00:42:15.351] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:42:15.407] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:42:15.494] [INFO] cheese - inserting 1000 documents. first: File:Ramiro Colon.JPG and last: F512M +[2018-02-13T00:42:15.581] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:42:15.766] [INFO] cheese - inserting 1000 documents. first: Po' Girl (album) and last: File:StephenReich.jpg +[2018-02-13T00:42:15.824] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:42:15.830] [INFO] cheese - inserting 1000 documents. first: File:Veer Surendra Sai University of Technology logo.jpg and last: The Leading Man (comic) +[2018-02-13T00:42:15.881] [INFO] cheese - inserting 1000 documents. first: Chahamanas and last: Point au Roche State Park +[2018-02-13T00:42:15.883] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:42:15.886] [INFO] cheese - inserting 1000 documents. first: Template:UK-hist-constituency-stub and last: Ocodelus +[2018-02-13T00:42:15.924] [INFO] cheese - inserting 1000 documents. first: Bill DeWitt and last: Hemp-palm +[2018-02-13T00:42:15.939] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:42:15.947] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:42:15.997] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:42:16.014] [INFO] cheese - inserting 1000 documents. first: Chamari Atapattu and last: Chang Woe-Ryong +[2018-02-13T00:42:16.028] [INFO] cheese - inserting 1000 documents. first: Template:PBB/83440 and last: Smith-Ely Mansion +[2018-02-13T00:42:16.096] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:42:16.099] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:42:16.273] [INFO] cheese - inserting 1000 documents. first: Category:1868 in Spain and last: Template:Ohio college football venues +[2018-02-13T00:42:16.278] [INFO] cheese - inserting 1000 documents. first: Safarabad and last: Chesnut-sided White-eye +[2018-02-13T00:42:16.307] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:42:16.312] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:42:16.369] [INFO] cheese - inserting 1000 documents. first: Ayala Hetzroni and last: File:Bangaru Babu (1973 film).jpg +[2018-02-13T00:42:16.379] [INFO] cheese - inserting 1000 documents. first: Category:Conservation in Lithuania and last: Journeyman Project: Revisioned +[2018-02-13T00:42:16.424] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:42:16.427] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:42:16.463] [INFO] cheese - inserting 1000 documents. first: Meyer and Daniel Guggenheim and last: Scouting staff +[2018-02-13T00:42:16.547] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:42:16.580] [INFO] cheese - inserting 1000 documents. first: Drepatelodes tanais and last: William Peters (Diplomat) +[2018-02-13T00:42:16.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Lorient and last: File:Anthony E. Sowell.jpg +[2018-02-13T00:42:16.645] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:42:16.665] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:42:16.749] [INFO] cheese - inserting 1000 documents. first: File:Maria Marten, or The Murder in the Red Barn FilmPoster.jpeg and last: Blackett-Sample-Hummert +[2018-02-13T00:42:16.771] [INFO] cheese - inserting 1000 documents. first: Part XVII of the Constitution of India and last: Wikipedia:Articles for deletion/YMT-05 Hildolfr +[2018-02-13T00:42:16.803] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:42:16.828] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:42:16.915] [INFO] cheese - inserting 1000 documents. first: Template:Guatemalan Liga Mayor and last: William Ailā +[2018-02-13T00:42:16.970] [INFO] cheese - inserting 1000 documents. first: Dodero and last: Central banks and currencies of Central America and South America +[2018-02-13T00:42:17.075] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:42:17.079] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:42:17.290] [INFO] cheese - inserting 1000 documents. first: First Talk With Tamara Bull and last: Blue Christmas (holiday) +[2018-02-13T00:42:17.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dan Freeman and last: Bramwell Booth +[2018-02-13T00:42:17.367] [INFO] cheese - inserting 1000 documents. first: Category:Cinema of Kuwait and last: 23rd Infantry Division (Germany) +[2018-02-13T00:42:17.378] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:42:17.457] [INFO] cheese - inserting 1000 documents. first: File:Tetraloop Receptor A2.png and last: File:Buxtonfc.png +[2018-02-13T00:42:17.457] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:42:17.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Virus and last: Sanoodi +[2018-02-13T00:42:17.469] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T00:42:17.535] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:42:17.582] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T00:42:17.619] [INFO] cheese - inserting 1000 documents. first: Starfucker and last: Abernethy No. 186 +[2018-02-13T00:42:17.699] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:42:17.805] [INFO] cheese - inserting 1000 documents. first: CASE (Disambiguation) and last: Alex Fox +[2018-02-13T00:42:17.864] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:42:17.899] [INFO] cheese - inserting 1000 documents. first: Melittid and last: Pârâul Roşu (disambiguation) +[2018-02-13T00:42:17.930] [INFO] cheese - inserting 1000 documents. first: Category:Pupils of Randall Thompson and last: Category:Male to female cross-dressers +[2018-02-13T00:42:17.944] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:42:17.998] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:42:18.061] [INFO] cheese - inserting 1000 documents. first: Antelope Park No. 322 and last: Template:Did you know nominations/Hannah Dadds +[2018-02-13T00:42:18.062] [INFO] cheese - inserting 1000 documents. first: Berzelia and last: Galinska +[2018-02-13T00:42:18.082] [INFO] cheese - inserting 1000 documents. first: Marigny, Manche and last: IEEE Power Engineering Review +[2018-02-13T00:42:18.098] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:42:18.128] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:42:18.156] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:42:18.210] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pilotstars and last: Mapita Cortés +[2018-02-13T00:42:18.297] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:42:18.415] [INFO] cheese - inserting 1000 documents. first: Die geschiedene Frau and last: Egle +[2018-02-13T00:42:18.416] [INFO] cheese - inserting 1000 documents. first: Template:S-line/IT-Eurostar left/ and last: Papyrus Oxyrhynchus 402 +[2018-02-13T00:42:18.458] [INFO] cheese - inserting 1000 documents. first: Galinskaya and last: MacRobertson Girls' High School +[2018-02-13T00:42:18.474] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Dougherty County, Georgia and last: Mohini 9886788888 +[2018-02-13T00:42:18.479] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:42:18.482] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:42:18.536] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:42:18.574] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:42:18.630] [INFO] cheese - inserting 1000 documents. first: Category:The Last Shadow Puppets albums and last: Girolamo graziani +[2018-02-13T00:42:18.697] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:42:18.745] [INFO] cheese - inserting 1000 documents. first: Chunhua, Hunan and last: Central mountain blue +[2018-02-13T00:42:18.822] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:42:19.000] [INFO] cheese - inserting 1000 documents. first: The Butcher's Wife and last: Wikipedia:Articles for deletion/Katatonic +[2018-02-13T00:42:19.008] [INFO] cheese - inserting 1000 documents. first: Portal:West Virginia/Did you know/4 and last: Category:1958 in Cyprus +[2018-02-13T00:42:19.044] [INFO] cheese - inserting 1000 documents. first: Godwin Samararatne and last: The Brain Suckers Cometh! +[2018-02-13T00:42:19.087] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:42:19.085] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:42:19.173] [INFO] cheese - inserting 1000 documents. first: Brown Currawong and last: Ernst ruska centre +[2018-02-13T00:42:19.181] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:42:19.200] [INFO] cheese - inserting 1000 documents. first: Laurie Ayton Jr and last: Il Piccio +[2018-02-13T00:42:19.255] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:42:19.292] [INFO] cheese - inserting 1000 documents. first: Portal:Textile Arts/Selected quote/4 and last: Category:Snooker video games +[2018-02-13T00:42:19.288] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:42:19.297] [INFO] cheese - inserting 1000 documents. first: Richard Bond and last: Karl W. Young +[2018-02-13T00:42:19.404] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:42:19.420] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:42:19.691] [INFO] cheese - inserting 1000 documents. first: Mrs Courtney Melmoth and last: Radikale +[2018-02-13T00:42:19.699] [INFO] cheese - inserting 1000 documents. first: Bugac, Gagauzia and last: File:MirandaLambertPlatinum.jpg +[2018-02-13T00:42:19.714] [INFO] cheese - inserting 1000 documents. first: Kingdom of Lunda and last: Is There Anybody Out There +[2018-02-13T00:42:19.723] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:42:19.758] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:42:19.790] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:42:19.792] [INFO] cheese - inserting 1000 documents. first: Xinu and last: Betty Ann Frazer +[2018-02-13T00:42:19.859] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:42:19.901] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ur1.ca and last: Microscanning +[2018-02-13T00:42:19.946] [INFO] cheese - inserting 1000 documents. first: Same-sex marriage and procreation and last: National Democratic Party of Lithuania +[2018-02-13T00:42:19.954] [INFO] cheese - inserting 1000 documents. first: David I Stuart and last: Wikipedia:Articles for deletion/Michael McCavish +[2018-02-13T00:42:19.957] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:42:19.994] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:42:20.032] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:42:20.169] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/50 Cent discography/archive4 and last: Identity disc +[2018-02-13T00:42:20.245] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:42:20.369] [INFO] cheese - inserting 1000 documents. first: The Secret Ball and last: File:Babydon'tcry.jpg +[2018-02-13T00:42:20.425] [INFO] cheese - inserting 1000 documents. first: Hulkamania: Let the Battle Begin and last: Diemaco C8FTHB +[2018-02-13T00:42:20.443] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:42:20.489] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:42:20.522] [INFO] cheese - inserting 1000 documents. first: South Street (MBTA station) and last: Portal:Weather/On this day/04/02 +[2018-02-13T00:42:20.535] [INFO] cheese - inserting 1000 documents. first: Template:Pioneers of Printing Press and last: Project Grand Slam +[2018-02-13T00:42:20.553] [INFO] cheese - inserting 1000 documents. first: I sogni di Laura and last: Stone Lagoon +[2018-02-13T00:42:20.586] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:42:20.609] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:42:20.614] [INFO] cheese - inserting 1000 documents. first: Ministers and Secretaries Act 1924 and last: T-norm +[2018-02-13T00:42:20.661] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:42:20.726] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:42:20.911] [INFO] cheese - inserting 1000 documents. first: Template:David Bisbal and last: The Journal of Defense Modeling and Simulation +[2018-02-13T00:42:20.985] [INFO] cheese - inserting 1000 documents. first: Protivo-Vozdushnaya Oborona and last: Saarloos Wolfhound +[2018-02-13T00:42:20.985] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:42:21.022] [INFO] cheese - inserting 1000 documents. first: Caladenia calcicola and last: Sithric ‘Carrach-in-Cairn’ Mág Tighearnán +[2018-02-13T00:42:21.036] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:42:21.061] [INFO] cheese - inserting 1000 documents. first: Willis Blair and last: Category:Database-related software for Linux +[2018-02-13T00:42:21.067] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DByDx and last: Saint-Remy-sous-Broyes +[2018-02-13T00:42:21.066] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:42:21.120] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:42:21.174] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:42:21.186] [INFO] cheese - inserting 1000 documents. first: Ecuadorian Confederation of Free Trade Union Organizations and last: Lego Atlantis +[2018-02-13T00:42:21.250] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:42:21.421] [INFO] cheese - inserting 1000 documents. first: Arthur Seat and last: Tornado of Souls +[2018-02-13T00:42:21.520] [INFO] cheese - inserting 1000 documents. first: Transdanubian Mountains and last: Matrox Graphics eXpansion Modules +[2018-02-13T00:42:21.529] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:42:21.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/guidechem.com and last: Melonites +[2018-02-13T00:42:21.652] [INFO] cheese - inserting 1000 documents. first: U.S. Coast & Geodetic Survey and last: Herserange +[2018-02-13T00:42:21.660] [INFO] cheese - inserting 1000 documents. first: William Alexander (artist) and last: Anomaly (communications agency) +[2018-02-13T00:42:21.663] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:42:21.670] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:42:21.722] [INFO] cheese - inserting 1000 documents. first: Thelosia mayaca and last: 2010 ICC Women's World Twenty20 squads +[2018-02-13T00:42:21.722] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:42:21.724] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:42:21.782] [INFO] cheese - inserting 1000 documents. first: Viktor Paço and last: Mota, Ljutomer +[2018-02-13T00:42:21.814] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:42:21.864] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:42:22.111] [INFO] cheese - inserting 1000 documents. first: Bhadra Sukla Purnima and last: Bongo, Amba +[2018-02-13T00:42:22.134] [INFO] cheese - inserting 1000 documents. first: TNBM and last: Ardudar +[2018-02-13T00:42:22.152] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:42:22.172] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:42:22.174] [INFO] cheese - inserting 1000 documents. first: Tapalqué and last: Category:Chordate stubs +[2018-02-13T00:42:22.189] [INFO] cheese - inserting 1000 documents. first: Trilocha obliquisigna and last: Rajapaksha +[2018-02-13T00:42:22.215] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:42:22.280] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:42:22.330] [INFO] cheese - inserting 1000 documents. first: Charlie Colombo and last: Cher videography +[2018-02-13T00:42:22.340] [INFO] cheese - inserting 1000 documents. first: Flying Saucers and last: Peyrepertuse +[2018-02-13T00:42:22.376] [INFO] cheese - inserting 1000 documents. first: Knowesgate railway station and last: HMS Lacedaemonian +[2018-02-13T00:42:22.412] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:42:22.444] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T00:42:22.469] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:42:22.652] [INFO] cheese - inserting 1000 documents. first: Ordudar and last: Category:Ambassadors of the United States to East Timor +[2018-02-13T00:42:22.706] [INFO] cheese - inserting 1000 documents. first: Television in Wales and last: Crow robot +[2018-02-13T00:42:22.710] [INFO] cheese - inserting 1000 documents. first: Boni, Tanella and last: Paul Green & The Other Colours +[2018-02-13T00:42:22.731] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:42:22.766] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:42:22.768] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:42:22.790] [INFO] cheese - inserting 1000 documents. first: Exp ring and last: Oreopithecus bamboli +[2018-02-13T00:42:22.866] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:42:22.960] [INFO] cheese - inserting 1000 documents. first: Chernozemelsky District and last: File:Brighams Ice Cream logo.gif +[2018-02-13T00:42:23.080] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:42:23.130] [INFO] cheese - inserting 1000 documents. first: Template:SacramentoCountyCA-geo-stub and last: Franciscan Montessori Earth School & Saint Francis Academy +[2018-02-13T00:42:23.204] [INFO] cheese - inserting 1000 documents. first: Article III court and last: Narasimma +[2018-02-13T00:42:23.205] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:42:23.246] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of the United States to Ecuador and last: Nemecia Achacollo Tola +[2018-02-13T00:42:23.254] [INFO] cheese - inserting 1000 documents. first: Template:Bwf2 and last: Pygmy bluetongue +[2018-02-13T00:42:23.264] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:42:23.278] [INFO] cheese - inserting 1000 documents. first: Hambach, Moselle and last: M-44 (MI) +[2018-02-13T00:42:23.321] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:42:23.322] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:42:23.353] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:42:23.449] [INFO] cheese - inserting 1000 documents. first: Oreopithecinae and last: Chilean corvette Papudo +[2018-02-13T00:42:23.561] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:42:23.689] [INFO] cheese - inserting 1000 documents. first: File:Pennsylvania Department of Transportation Logo.svg and last: Wikipedia:WikiProject Spam/LinkReports/s4songs.com +[2018-02-13T00:42:23.742] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:42:23.798] [INFO] cheese - inserting 1000 documents. first: Nonte Phonte and last: Akeelah And The Bee +[2018-02-13T00:42:23.826] [INFO] cheese - inserting 1000 documents. first: Strange deaths and last: Ben Curry +[2018-02-13T00:42:23.868] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:42:23.880] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:42:23.921] [INFO] cheese - inserting 1000 documents. first: Iraniyan and last: T Boz +[2018-02-13T00:42:23.926] [INFO] cheese - inserting 1000 documents. first: Coorbital configuration and last: Category:Education in Butler County, Kentucky +[2018-02-13T00:42:23.943] [INFO] cheese - inserting 1000 documents. first: M-45 (MI) and last: Department of Defense Veterinary Pathology Residency (DODVPR) +[2018-02-13T00:42:23.979] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:42:23.988] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:42:23.990] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:42:24.070] [INFO] cheese - inserting 1000 documents. first: Category:Ernstia and last: Centrify +[2018-02-13T00:42:24.128] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:42:24.176] [INFO] cheese - inserting 1000 documents. first: Jamaican Art and last: 栗羊羹 +[2018-02-13T00:42:24.216] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:42:24.360] [INFO] cheese - inserting 1000 documents. first: Kataba Arrondissement and last: Velaiyilla Pattathari 2 +[2018-02-13T00:42:24.439] [INFO] cheese - inserting 1000 documents. first: List of ship commissionings in 2002 and last: Template:Colleges and universities in Virginia +[2018-02-13T00:42:24.463] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:42:24.513] [INFO] cheese - inserting 1000 documents. first: Harry (term) and last: Yo mater +[2018-02-13T00:42:24.547] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:42:24.588] [INFO] cheese - inserting 1000 documents. first: Category:Royal residences in Ethiopia and last: Procurator of the Kirk +[2018-02-13T00:42:24.611] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:42:24.642] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:42:24.716] [INFO] cheese - inserting 1000 documents. first: Porky's Revenge! and last: Night After Night with Allan Havey +[2018-02-13T00:42:24.755] [INFO] cheese - inserting 1000 documents. first: Take You Higher / Crunch and last: Emile Bouhours +[2018-02-13T00:42:24.793] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T00:42:24.805] [INFO] cheese - inserting 1000 documents. first: Mosquito Island (Senegal) and last: Sand spur +[2018-02-13T00:42:24.849] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:42:24.915] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:42:25.023] [INFO] cheese - inserting 1000 documents. first: Posttruth and last: Category:Marinid art +[2018-02-13T00:42:25.092] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:42:25.158] [INFO] cheese - inserting 1000 documents. first: Katie Dippold and last: Costabili collection +[2018-02-13T00:42:25.167] [INFO] cheese - inserting 1000 documents. first: Lee Myong-bak and last: Maing +[2018-02-13T00:42:25.216] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:42:25.226] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:42:25.252] [INFO] cheese - inserting 1000 documents. first: Jaisingrao Gaikwad Patil and last: Mertola +[2018-02-13T00:42:25.326] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:42:25.414] [INFO] cheese - inserting 1000 documents. first: File:Obs.jpg and last: Monarchist League of Canada +[2018-02-13T00:42:25.415] [INFO] cheese - inserting 1000 documents. first: Sandspur and last: Category:States and territories disestablished in 1996 +[2018-02-13T00:42:25.460] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Ladell Parks and last: Category:Unknown-importance Saskatchewan communities and neighbourhoods-related articles +[2018-02-13T00:42:25.483] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:42:25.494] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:42:25.498] [INFO] cheese - inserting 1000 documents. first: Soejoedi Wirjoatmodjo and last: Ibrahim Zaher +[2018-02-13T00:42:25.519] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:42:25.585] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:42:25.727] [INFO] cheese - inserting 1000 documents. first: Lecithocera pelomorpha and last: Gholhak Gardens +[2018-02-13T00:42:25.737] [INFO] cheese - inserting 1000 documents. first: Anything But Down and last: Beit Govrin +[2018-02-13T00:42:25.790] [INFO] cheese - inserting 1000 documents. first: Postal Square Building and last: Labour (UK) leadership election, 2007 +[2018-02-13T00:42:25.794] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:42:25.835] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:42:25.878] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:42:25.933] [INFO] cheese - inserting 1000 documents. first: Big League Records Greatest Hits and last: Théâtre National de l'Opéra-Comique +[2018-02-13T00:42:25.980] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:42:26.077] [INFO] cheese - inserting 1000 documents. first: Skool and last: Portal:India/categories +[2018-02-13T00:42:26.183] [INFO] cheese - inserting 1000 documents. first: Category:Disability in Finland and last: RS 2106 +[2018-02-13T00:42:26.236] [INFO] cheese - inserting 1000 documents. first: Levente (organization) and last: M-155 +[2018-02-13T00:42:26.238] [INFO] cheese - inserting 1000 documents. first: Altizer Roberts and last: File:The Quiet Ones 2014 theatrical poster.jpg +[2018-02-13T00:42:26.249] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:42:26.329] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:42:26.356] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:42:26.363] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T00:42:26.413] [INFO] cheese - inserting 1000 documents. first: Quickborn-Preis and last: Glatimer +[2018-02-13T00:42:26.497] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:42:26.606] [INFO] cheese - inserting 1000 documents. first: I-64 Bowl and last: Gates of Heaven (disambiguation) +[2018-02-13T00:42:26.612] [INFO] cheese - inserting 1000 documents. first: Katisha and last: File:Animal Aid logo.jpg +[2018-02-13T00:42:26.724] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:42:26.726] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T00:42:26.802] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2008 February 19 and last: Paul Otto +[2018-02-13T00:42:26.894] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:42:26.911] [INFO] cheese - inserting 1000 documents. first: Category:Municipalities in Manitoba and last: Lisica +[2018-02-13T00:42:26.984] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:42:27.029] [INFO] cheese - inserting 1000 documents. first: S-3760 and last: Cronin, Paul +[2018-02-13T00:42:27.068] [INFO] cheese - inserting 1000 documents. first: Froebel star and last: Mamelodi, Gauteng +[2018-02-13T00:42:27.088] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:42:27.115] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:42:27.204] [INFO] cheese - inserting 1000 documents. first: Anastasia Martyusheva and last: Category:Biographical museums in South Dakota +[2018-02-13T00:42:27.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Saint John, United States Virgin Islands/archive1 and last: New-Castle and Frenchtown Turnpike Company +[2018-02-13T00:42:27.267] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:42:27.291] [INFO] cheese - inserting 1000 documents. first: Elizabeth Gould (illustrator) and last: State Route 320 (Virginia pre-1933) +[2018-02-13T00:42:27.344] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T00:42:27.357] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:42:27.419] [INFO] cheese - inserting 1000 documents. first: Horsley, Essex and last: Le Blanc, Indre +[2018-02-13T00:42:27.441] [INFO] cheese - inserting 1000 documents. first: The Swinging Bridge and last: English-language Public District School Board No. 8 +[2018-02-13T00:42:27.457] [INFO] cheese - inserting 1000 documents. first: Cross, Paul and last: Bhandavapur Jain Tirth +[2018-02-13T00:42:27.489] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:42:27.491] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:42:27.502] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:42:27.644] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Jacqueline (given name) and last: Tropical Depression Bining (1977) +[2018-02-13T00:42:27.722] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:42:27.751] [INFO] cheese - inserting 1000 documents. first: Network Rail South West Main Line Route Utilisation Strategy and last: Gary Kinder (author) +[2018-02-13T00:42:27.830] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:42:27.928] [INFO] cheese - inserting 1000 documents. first: Luis aguilé and last: Iraya language +[2018-02-13T00:42:27.970] [INFO] cheese - inserting 1000 documents. first: Clay Holmes and last: Supernumerary sex +[2018-02-13T00:42:27.975] [INFO] cheese - inserting 1000 documents. first: Teotoros Lapçinciyan and last: Educating Eve: The 'Language Instinct' Debate +[2018-02-13T00:42:28.002] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:42:28.041] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:42:28.084] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:42:28.233] [INFO] cheese - inserting 1000 documents. first: New Castle and Frenchtown Turnpike Company and last: Baha'i apologetics +[2018-02-13T00:42:28.264] [INFO] cheese - inserting 1000 documents. first: 1977 French motorcycle Grand Prix and last: Conway's Law +[2018-02-13T00:42:28.330] [INFO] cheese - inserting 1000 documents. first: Fu On Station and last: Voivod Discography +[2018-02-13T00:42:28.354] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:42:28.367] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T00:42:28.479] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T00:42:28.513] [INFO] cheese - inserting 1000 documents. first: Stapenberg and last: Seneca River Crossing Canals Historic District +[2018-02-13T00:42:28.591] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:42:28.786] [INFO] cheese - inserting 1000 documents. first: 120191 Tombagg and last: Kamarul Ariffin bin Mohamad Yassin +[2018-02-13T00:42:28.795] [INFO] cheese - inserting 1000 documents. first: Father Ernetti's Chronovisor: The Creation and Disappearance of the World's First Time Machine and last: Aldus TIFF 2 +[2018-02-13T00:42:28.806] [INFO] cheese - inserting 1000 documents. first: Arabic dialect and last: Wikipedia:Mediation Cabal/Cases/2006-09-17 Park Hill South High School +[2018-02-13T00:42:28.851] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T00:42:28.888] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:42:28.909] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T00:42:29.194] [INFO] cheese - inserting 1000 documents. first: Villiers-Saint-Frédéric and last: Villette, Yvelines +[2018-02-13T00:42:29.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Latter Day Saint movement/The Church of Jesus Christ of Latter-day Saints work group/Categories and last: Lawa Cottica Airport +[2018-02-13T00:42:29.264] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:42:29.316] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:42:29.377] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Journal of Germanic Mythology and Folklore and last: 1975–76 Copa del Rey +[2018-02-13T00:42:29.418] [INFO] cheese - inserting 1000 documents. first: Reycom and Aijikawa and last: Ghyath-al-Din Jamshid Kashani +[2018-02-13T00:42:29.481] [INFO] cheese - inserting 1000 documents. first: FiftyThree and last: Pine Craft, FL +[2018-02-13T00:42:29.499] [INFO] cheese - inserting 1000 documents. first: 25 August 2003 Mumbai blasts and last: Bishop Consolidated Independent School District +[2018-02-13T00:42:29.502] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T00:42:29.526] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T00:42:29.605] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:42:29.617] [INFO] cheese - inserting 1000 documents. first: Milagres Church (Kallianpur) and last: Cry6Aa +[2018-02-13T00:42:29.652] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:42:29.722] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:42:29.990] [INFO] cheese - inserting 1000 documents. first: Survey panel and last: Social Mass Party +[2018-02-13T00:42:30.013] [INFO] cheese - inserting 1000 documents. first: Villepreux and last: Interstate 70 Business (Denver, Colorado) +[2018-02-13T00:42:30.072] [INFO] cheese - inserting 1000 documents. first: Massacres of Badr Khan and last: BookSurge LLC +[2018-02-13T00:42:30.109] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:42:30.115] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:42:30.123] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:42:30.244] [INFO] cheese - inserting 1000 documents. first: File:Port Moresby International School logo.png and last: 1999-2000 Busta Cup +[2018-02-13T00:42:30.291] [INFO] cheese - inserting 1000 documents. first: Cadet Colonel and last: Susurrus +[2018-02-13T00:42:30.291] [INFO] cheese - inserting 1000 documents. first: Category:2015 in Texas and last: Trivendra Singh +[2018-02-13T00:42:30.302] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:42:30.356] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:42:30.370] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T00:42:30.376] [INFO] cheese - inserting 1000 documents. first: Frobenius mapping and last: Thiago ribeiro +[2018-02-13T00:42:30.448] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:42:30.492] [INFO] cheese - inserting 1000 documents. first: Lyle Moraine and last: Ready for the Storm +[2018-02-13T00:42:30.494] [INFO] cheese - inserting 1000 documents. first: William Anderson (cricket umpire) and last: File:NatKingCole TopPops CD 300.jpg +[2018-02-13T00:42:30.534] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:42:30.548] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:42:30.604] [INFO] cheese - inserting 1000 documents. first: Ysgol Penweddig and last: Maroncourt +[2018-02-13T00:42:30.638] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:42:30.751] [INFO] cheese - inserting 1000 documents. first: 2000-01 Busta Cup and last: Jean Giono Prize +[2018-02-13T00:42:30.800] [INFO] cheese - inserting 1000 documents. first: The Youth Counseling League and last: Nikolai Milutin +[2018-02-13T00:42:30.805] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:42:30.818] [INFO] cheese - inserting 1000 documents. first: Freeway service patrol and last: Victor Babes +[2018-02-13T00:42:30.853] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:42:30.888] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:42:30.921] [INFO] cheese - inserting 1000 documents. first: Sedgwick Theater and last: Wikipedia:Featured picture candidates/The Clock Tower of the Palace of Westminster +[2018-02-13T00:42:30.948] [INFO] cheese - inserting 1000 documents. first: Wabash–Pittsburgh Terminal Railway and last: Charles Dance (disambiguation) +[2018-02-13T00:42:30.971] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:42:31.005] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:42:31.048] [INFO] cheese - inserting 1000 documents. first: Thiru. M. VAITHIANATHAN and last: Category:Protected areas of Laclede County, Missouri +[2018-02-13T00:42:31.077] [INFO] cheese - inserting 1000 documents. first: Davin Dennis and last: Name conflicts of solar system objects +[2018-02-13T00:42:31.174] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:42:31.213] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:42:31.331] [INFO] cheese - inserting 1000 documents. first: Jo O-ryeon and last: Ndoffane Arrondissement +[2018-02-13T00:42:31.377] [INFO] cheese - inserting 1000 documents. first: Eumenes of Pergamon and last: Tame silver fox +[2018-02-13T00:42:31.401] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:42:31.489] [INFO] cheese - inserting 1000 documents. first: Nandagopal and last: Cang Prefecture +[2018-02-13T00:42:31.503] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:42:31.626] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:42:31.793] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/S.P.A.M. Records and last: Bear Creek Township, Chatham County, North Carolina +[2018-02-13T00:42:31.813] [INFO] cheese - inserting 1000 documents. first: Amber Peterson and last: Category:Natural history museums in the Netherlands +[2018-02-13T00:42:31.892] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Laclede County, Missouri and last: Π Mensae b +[2018-02-13T00:42:31.927] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T00:42:31.972] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T00:42:31.977] [INFO] cheese - inserting 1000 documents. first: Holly Valance's Third album (Cancelled) and last: US Penny +[2018-02-13T00:42:32.018] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:42:32.049] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T00:42:32.208] [INFO] cheese - inserting 1000 documents. first: Umaro Sissoco Embaló and last: Héctor Campos (disambiguation) +[2018-02-13T00:42:32.290] [INFO] cheese - inserting 1000 documents. first: Linklater and last: Jorge Serrano Elias +[2018-02-13T00:42:32.311] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:42:32.368] [INFO] cheese - inserting 1000 documents. first: Sagittaria guayanensis and last: Category:Creutz family +[2018-02-13T00:42:32.405] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:42:32.476] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:42:32.484] [INFO] cheese - inserting 1000 documents. first: Klisura and last: Wikipedia:Articles for deletion/Krugman's Law +[2018-02-13T00:42:32.556] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:42:32.648] [INFO] cheese - inserting 1000 documents. first: Π Men b and last: Davara rufulella +[2018-02-13T00:42:32.664] [INFO] cheese - inserting 1000 documents. first: File:Elven00.jpg and last: Kelcie Banks +[2018-02-13T00:42:32.726] [INFO] cheese - inserting 1000 documents. first: Feings and last: File:N785480617 1901249 9701.jpg +[2018-02-13T00:42:32.732] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:42:32.747] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:42:32.757] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Ntoutoume Emane and last: Stefan Grabinski +[2018-02-13T00:42:32.795] [INFO] cheese - inserting 1000 documents. first: Mohammad Amin (disambiguation) and last: Cannabis in Sweden +[2018-02-13T00:42:32.838] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:42:32.849] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:42:32.857] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:42:33.105] [INFO] cheese - inserting 1000 documents. first: Category:Government Victoria College, Palakkad alumni and last: Category:Actors from Tasmania +[2018-02-13T00:42:33.130] [INFO] cheese - inserting 1000 documents. first: Diaspidiotus perniciosus and last: Lado Aleksi-Meskhishvili +[2018-02-13T00:42:33.188] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:42:33.245] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:42:33.286] [INFO] cheese - inserting 1000 documents. first: William Shippen and last: Wikipedia:Articles for deletion/Lost Children +[2018-02-13T00:42:33.294] [INFO] cheese - inserting 1000 documents. first: Dectocera and last: Arvinder Singh Bubber +[2018-02-13T00:42:33.320] [INFO] cheese - inserting 1000 documents. first: Belladonna of Sadness (album) and last: File:Layers Kungs.jpg +[2018-02-13T00:42:33.357] [INFO] cheese - inserting 1000 documents. first: Zemplínska Široká and last: Wikipedia:Articles for deletion/DGform Multimedia +[2018-02-13T00:42:33.365] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:42:33.365] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:42:33.402] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:42:33.504] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:42:33.585] [INFO] cheese - inserting 1000 documents. first: 1876 New York Mutuals season and last: Predictable surprise +[2018-02-13T00:42:33.690] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:42:33.756] [INFO] cheese - inserting 1000 documents. first: K43JY-D and last: Isabella, Oklahoma +[2018-02-13T00:42:33.815] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:42:33.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Collaborations of the Week/Nationalism in the United States and last: 8th National Congress of the Communist Party of China +[2018-02-13T00:42:34.023] [INFO] cheese - inserting 1000 documents. first: Joao Saldanha and last: The Boy in the Plastic Bubble +[2018-02-13T00:42:34.047] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:42:34.110] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:42:34.118] [INFO] cheese - inserting 1000 documents. first: Liberal Party of Newfoundland and Labrador leadership election, May 2011 and last: Unorthodox Australian Poet +[2018-02-13T00:42:34.233] [INFO] cheese - inserting 1000 documents. first: Steve Hackett discography and last: Category:1864 elections +[2018-02-13T00:42:34.254] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T00:42:34.262] [INFO] cheese - inserting 1000 documents. first: Philharmonisches Staatsorchester Hamburg and last: Pradler Ritterspiele +[2018-02-13T00:42:34.326] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T00:42:34.346] [INFO] cheese - inserting 1000 documents. first: Nakkna and last: Coalition of National Unity +[2018-02-13T00:42:34.386] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T00:42:34.467] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Scurry County, Texas and last: Alexela Group +[2018-02-13T00:42:34.470] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:42:34.605] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:42:34.796] [INFO] cheese - inserting 1000 documents. first: Ashley Rogers and last: Wikipedia:Articles for deletion/Josh McConnell +[2018-02-13T00:42:34.833] [INFO] cheese - inserting 1000 documents. first: Category:IIHF Men's World Ice Hockey Championships and last: Wikipedia:Deletion review/Log/2009 November 19 +[2018-02-13T00:42:34.856] [INFO] cheese - inserting 1000 documents. first: Umm Khultum binte Ali and last: Ciovo +[2018-02-13T00:42:34.863] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:42:34.878] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:42:34.983] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:42:35.040] [INFO] cheese - inserting 1000 documents. first: Simon Maginn and last: Template:NewYork-struct-stub +[2018-02-13T00:42:35.143] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T00:42:35.161] [INFO] cheese - inserting 1000 documents. first: File:Dave Mirra Freestyle BMX 2 Coverart.png and last: Mogyoród +[2018-02-13T00:42:35.276] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:42:35.307] [INFO] cheese - inserting 1000 documents. first: Keep on Dancing (album) and last: Kevin Nicolson +[2018-02-13T00:42:35.323] [INFO] cheese - inserting 1000 documents. first: Projekttheater Vorarlberg and last: File:ReliefPitcherBoxShotSNES.jpg +[2018-02-13T00:42:35.419] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:42:35.450] [INFO] cheese - inserting 1000 documents. first: Sharpless 64 and last: Pat Ryan (executive/philanthropist/civic leader) +[2018-02-13T00:42:35.452] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T00:42:35.533] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:42:35.554] [INFO] cheese - inserting 1000 documents. first: Surinamese Olympic Committee and last: Wikipedia:Articles for deletion/The good the bad and the small +[2018-02-13T00:42:35.586] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm von Bruecke and last: Dolega Coat of Arms +[2018-02-13T00:42:35.634] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:42:35.657] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:42:35.790] [INFO] cheese - inserting 1000 documents. first: Flushing (military tactic) and last: Le Lorey +[2018-02-13T00:42:35.800] [INFO] cheese - inserting 1000 documents. first: Xia Xue and last: Charles Roller +[2018-02-13T00:42:35.846] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:42:35.851] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:42:35.872] [INFO] cheese - inserting 1000 documents. first: Anomoeosis phanerostigma and last: The Oregon Historical Society +[2018-02-13T00:42:35.888] [INFO] cheese - inserting 1000 documents. first: Richard Stenhouse Jr. and last: Category:1857 in the French colonial empire +[2018-02-13T00:42:35.898] [INFO] cheese - inserting 1000 documents. first: CONFECH and last: Koivunen +[2018-02-13T00:42:35.935] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:42:35.945] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:42:35.967] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:42:36.146] [INFO] cheese - inserting 1000 documents. first: American invasion of Montreal and last: Template:IPA-all/sandbox +[2018-02-13T00:42:36.270] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:42:36.341] [INFO] cheese - inserting 1000 documents. first: Dzialosza Coat of Arms and last: Tomas de Jesus Mangual +[2018-02-13T00:42:36.377] [INFO] cheese - inserting 1000 documents. first: William C. Gloth and last: Portal:Gene Wiki/Project proposals +[2018-02-13T00:42:36.402] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:42:36.430] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:42:36.506] [INFO] cheese - inserting 1000 documents. first: Roscoe Dash and last: McCune-Albright Syndrome +[2018-02-13T00:42:36.521] [INFO] cheese - inserting 1000 documents. first: Rakefet Remigolski and last: Writers' Union of the Philippines +[2018-02-13T00:42:36.524] [INFO] cheese - inserting 1000 documents. first: Somnath dasgupta and last: Akchii +[2018-02-13T00:42:36.534] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Miles Consulting Corp and last: Josephat Kiprono +[2018-02-13T00:42:36.597] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:42:36.636] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:42:36.686] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:42:36.734] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:42:36.807] [INFO] cheese - inserting 1000 documents. first: 1968 Trampoline World Championships and last: Category:Pakistani male models +[2018-02-13T00:42:36.890] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:42:36.994] [INFO] cheese - inserting 1000 documents. first: La Chapelle-Bâton, Vienne and last: Kurt Dunder +[2018-02-13T00:42:37.055] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:42:37.106] [INFO] cheese - inserting 1000 documents. first: Notebook interface and last: The Ship, Hart Street +[2018-02-13T00:42:37.118] [INFO] cheese - inserting 1000 documents. first: Alexander de Jesus and last: Depilatory cream +[2018-02-13T00:42:37.125] [INFO] cheese - inserting 1000 documents. first: Jacob van Toor and last: Truth in music +[2018-02-13T00:42:37.157] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:42:37.205] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:42:37.210] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:42:37.214] [INFO] cheese - inserting 1000 documents. first: Darke's Peak and last: Felipe Mellizo +[2018-02-13T00:42:37.282] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:42:37.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Cooperatives articles by quality/3 and last: Brites de Portugal +[2018-02-13T00:42:37.334] [INFO] cheese - inserting 1000 documents. first: File:Zee Kannada.jpg and last: State Route 117 (Virginia 1933) +[2018-02-13T00:42:37.387] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:42:37.398] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:42:37.579] [INFO] cheese - inserting 1000 documents. first: Digi camo and last: File:Aveverythingiamsample.ogg +[2018-02-13T00:42:37.610] [INFO] cheese - inserting 1000 documents. first: Kayapó-Xikrin and last: Category:Education in Howard County, Missouri +[2018-02-13T00:42:37.639] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:42:37.652] [INFO] cheese - inserting 1000 documents. first: Anthropism and last: Giwa FC +[2018-02-13T00:42:37.666] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:42:37.714] [INFO] cheese - inserting 1000 documents. first: Simon Vukcevic and last: Category:Electoral districts of South Australia +[2018-02-13T00:42:37.716] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:42:37.720] [INFO] cheese - inserting 1000 documents. first: Half Moon, New York and last: South Carolina sports +[2018-02-13T00:42:37.768] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:42:37.792] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:42:37.852] [INFO] cheese - inserting 1000 documents. first: Sawyer House (Monroe, MI) and last: File:Ödipussi.jpg +[2018-02-13T00:42:37.927] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:42:38.041] [INFO] cheese - inserting 1000 documents. first: Mike, Lu, and Og and last: Musicblog +[2018-02-13T00:42:38.109] [INFO] cheese - inserting 1000 documents. first: Slush Helsinki and last: Holme Park (country house) +[2018-02-13T00:42:38.155] [INFO] cheese - inserting 1000 documents. first: Manteo (Native American leader) and last: Wikipedia:Version 1.0 Editorial Team/Football in the USA and Canada articles by quality/7 +[2018-02-13T00:42:38.195] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:42:38.258] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:42:38.299] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:42:38.366] [INFO] cheese - inserting 1000 documents. first: Unik BK and last: If This Isn't Nice, What Is?: Advice to the Young +[2018-02-13T00:42:38.491] [INFO] cheese - inserting 1000 documents. first: Francesco Piccolomini (bishop) and last: Jean Dubey +[2018-02-13T00:42:38.491] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:42:38.561] [INFO] cheese - inserting 1000 documents. first: Wakaw Lake, Saskatchewan and last: Rudolph Seiden +[2018-02-13T00:42:38.620] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:42:38.621] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:42:38.625] [INFO] cheese - inserting 1000 documents. first: .44 and last: Stunt race fx +[2018-02-13T00:42:38.761] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T00:42:38.869] [INFO] cheese - inserting 1000 documents. first: Category:History of Aichi Prefecture and last: Category:Wikipedia sockpuppets of JtV +[2018-02-13T00:42:38.933] [INFO] cheese - inserting 1000 documents. first: Questo amore and last: Bijur +[2018-02-13T00:42:38.957] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:42:38.975] [INFO] cheese - inserting 1000 documents. first: Hindu and fascism and last: Cascas +[2018-02-13T00:42:39.025] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T00:42:39.087] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:42:39.095] [INFO] cheese - inserting 1000 documents. first: Stone Canoe Advertising and last: Category:Codasur South American Rally Championship +[2018-02-13T00:42:39.145] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:42:39.235] [INFO] cheese - inserting 1000 documents. first: Category:Chemicals articles needing expert attention and last: Seth Flowerman +[2018-02-13T00:42:39.279] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:42:39.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Caitlin Morrall and last: Category:Companies established in 1883 by country +[2018-02-13T00:42:39.368] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:42:39.381] [INFO] cheese - inserting 1000 documents. first: On Beyond Zebra and last: Need for Speed: High Stakes +[2018-02-13T00:42:39.421] [INFO] cheese - inserting 1000 documents. first: Ra Ra Riot and last: Drummond Battery +[2018-02-13T00:42:39.439] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:42:39.457] [INFO] cheese - inserting 1000 documents. first: Template:SeaWorld San Antonio Roller Coasters and last: OpEPA +[2018-02-13T00:42:39.462] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:42:39.471] [INFO] cheese - inserting 1000 documents. first: James Williamson and last: Be Yourself (Michael Rose album) +[2018-02-13T00:42:39.516] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:42:39.528] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:42:39.544] [INFO] cheese - inserting 1000 documents. first: 2013 Codasur South American Rally Championship season and last: Category:Centuries in Iraqi Kurdistan +[2018-02-13T00:42:39.597] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:42:39.636] [INFO] cheese - inserting 1000 documents. first: Uromastyx Leptieni and last: Wikipedia:Reference desk/Archives/Computing/2009 November 17 +[2018-02-13T00:42:39.682] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:42:39.792] [INFO] cheese - inserting 1000 documents. first: Draft:Aaron and Jordan Kandell and last: Coolboys and the Frontman +[2018-02-13T00:42:39.837] [INFO] cheese - inserting 1000 documents. first: Meter in the Bible and last: List of Chip and Dale Rescue Rangers episodes +[2018-02-13T00:42:39.871] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:42:39.881] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:42:39.945] [INFO] cheese - inserting 1000 documents. first: Tomorrows Pioneers and last: Category:1479 books +[2018-02-13T00:42:39.977] [INFO] cheese - inserting 1000 documents. first: Need for Speed: Porsche Unleashed and last: Lygophobia +[2018-02-13T00:42:40.012] [INFO] cheese - inserting 1000 documents. first: Russian bride and last: Eulogy (disambiguation) +[2018-02-13T00:42:40.012] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:42:40.051] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/The Real Housewives of Atlanta (season 6)/archive1 and last: Etheostoma etnieri +[2018-02-13T00:42:40.068] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:42:40.095] [INFO] cheese - inserting 1000 documents. first: Category:Elections in Greater Manchester and last: Burnatonce +[2018-02-13T00:42:40.099] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:42:40.214] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:42:40.219] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:42:40.432] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Catholic cathedrals in Egypt and last: Blotched blue-tongued skink +[2018-02-13T00:42:40.548] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:42:40.600] [INFO] cheese - inserting 1000 documents. first: Category:Canals of Kern County, California and last: Category:Tanganyika (territory) +[2018-02-13T00:42:40.722] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T00:42:40.860] [INFO] cheese - inserting 1000 documents. first: Yaropolk Izyaslavich and last: Necrodaemon Terrorsathan +[2018-02-13T00:42:40.893] [INFO] cheese - inserting 1000 documents. first: Altru Health Systems and last: Stanislaw Pestka +[2018-02-13T00:42:40.921] [INFO] cheese - inserting 1000 documents. first: Peter principal and last: Haunted eBay painting +[2018-02-13T00:42:40.932] [INFO] cheese - inserting 1000 documents. first: Drasteria pallescens and last: Gorispolkom +[2018-02-13T00:42:40.950] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T00:42:40.960] [INFO] cheese - inserting 1000 documents. first: Cameroon at the 2014 Summer Youth Olympics and last: Arlene McQuade +[2018-02-13T00:42:41.014] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:42:41.034] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T00:42:41.044] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:42:41.110] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T00:42:41.282] [INFO] cheese - inserting 1000 documents. first: LA Law: The Computer Game and last: File:Porky&daffy.png +[2018-02-13T00:42:41.351] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:42:41.470] [INFO] cheese - inserting 1000 documents. first: Genevieve L. Hutchinson and last: Bilohiria Raion +[2018-02-13T00:42:41.537] [INFO] cheese - inserting 1000 documents. first: Papa Chan and last: Health in Japan +[2018-02-13T00:42:41.536] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:42:41.616] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:42:41.704] [INFO] cheese - inserting 1000 documents. first: File:Siku Ya Bibi.jpg and last: U.S. Senior PGA Championship +[2018-02-13T00:42:41.740] [INFO] cheese - inserting 1000 documents. first: State of Oklahoma and last: Cardiac Surgery +[2018-02-13T00:42:41.749] [INFO] cheese - inserting 1000 documents. first: Category:Mountains of the Carpathians and last: Abscess (band) +[2018-02-13T00:42:41.770] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:42:41.834] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T00:42:41.842] [INFO] cheese - inserting 1000 documents. first: Wikipedia:HOTHEAD and last: Khua District +[2018-02-13T00:42:41.879] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:42:41.927] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:42:41.997] [INFO] cheese - inserting 1000 documents. first: Raiispolkom and last: Puya humilis +[2018-02-13T00:42:42.063] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BREATHER and last: Category:Canadian insolvency case law +[2018-02-13T00:42:42.118] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T00:42:42.156] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:42:42.238] [INFO] cheese - inserting 1000 documents. first: St. James Church (Santee, South Carolina) and last: Environment of Thailand +[2018-02-13T00:42:42.306] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:42:42.374] [INFO] cheese - inserting 1000 documents. first: Flanders news and last: Flowers in the Attic (TV movie) +[2018-02-13T00:42:42.475] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:42:42.486] [INFO] cheese - inserting 1000 documents. first: LMBCS-2 and last: United States Senate election in New York, 2022 +[2018-02-13T00:42:42.492] [INFO] cheese - inserting 1000 documents. first: Salomé (film) and last: Category:Brechin City F.C. players +[2018-02-13T00:42:42.604] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:42:42.625] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:42:42.707] [INFO] cheese - inserting 1000 documents. first: Category:1999 health disasters and last: CCR5delta32 +[2018-02-13T00:42:42.760] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of second-generation human rights and last: Philadelphia Convention of 1787 +[2018-02-13T00:42:42.765] [INFO] cheese - inserting 1000 documents. first: Rich Clarkson and last: Category:Melrose Place (2009 TV series) characters +[2018-02-13T00:42:42.781] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:42:42.838] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T00:42:42.852] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:42:42.931] [INFO] cheese - inserting 1000 documents. first: Federal Route 345 and last: Template:Commercial air travel +[2018-02-13T00:42:43.056] [INFO] cheese - inserting 1000 documents. first: Kim Jong-Kyu and last: File:Geneforge 5 Logo.gif +[2018-02-13T00:42:43.063] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:42:43.141] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:42:43.149] [INFO] cheese - inserting 1000 documents. first: Limpet mines and last: The Staple +[2018-02-13T00:42:43.261] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:42:43.400] [INFO] cheese - inserting 1000 documents. first: Randy Bullock and last: File:Logo-CGIAR-Water,Land and Ecosystems.jpg +[2018-02-13T00:42:43.475] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:42:43.484] [INFO] cheese - inserting 1000 documents. first: United States Senate election in North Carolina, 2022 and last: Template:UEFA Euro 2016 qualification (3rd place) +[2018-02-13T00:42:43.485] [INFO] cheese - inserting 1000 documents. first: File:Dljcover.gif and last: Mihailovca +[2018-02-13T00:42:43.542] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:42:43.593] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T00:42:43.700] [INFO] cheese - inserting 1000 documents. first: Template:Caparica and last: St. Mary's site +[2018-02-13T00:42:43.760] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:42:43.789] [INFO] cheese - inserting 1000 documents. first: R'dam and last: Template:Music of Korea +[2018-02-13T00:42:43.858] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:42:43.861] [INFO] cheese - inserting 1000 documents. first: Canabis and last: List of Missouri Highways +[2018-02-13T00:42:43.867] [INFO] cheese - inserting 1000 documents. first: Safer Alternative for Enjoyable Recreation and last: Associação de Jovens da Fonte do Bastardo +[2018-02-13T00:42:43.950] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T00:42:43.957] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:42:43.989] [INFO] cheese - inserting 1000 documents. first: Everything Tastes Better with Bacon: 70 Fabulous Recipes for Every Meal of the Day and last: Cathedral Parkway–110th Street (IRT Broadway – Seventh Avenue Line) +[2018-02-13T00:42:44.007] [INFO] cheese - inserting 1000 documents. first: McCoy Park and last: Catholic youth associations of French Algeria +[2018-02-13T00:42:44.081] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:42:44.143] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:42:44.159] [INFO] cheese - inserting 1000 documents. first: Mahlo operation and last: Spase To Hrono +[2018-02-13T00:42:44.262] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:42:44.384] [INFO] cheese - inserting 1000 documents. first: Brittany Hargest Shum and last: Jessica Harrison +[2018-02-13T00:42:44.436] [INFO] cheese - inserting 1000 documents. first: Socialist Appeal (International Marxist Tendency journal) and last: Template:National Initiative for Administration and Change in Syria/meta/shortname +[2018-02-13T00:42:44.445] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:42:44.497] [INFO] cheese - inserting 1000 documents. first: Kandahar Bilingual Rock Inscription and last: Linz chronology +[2018-02-13T00:42:44.538] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:42:44.562] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:42:44.566] [INFO] cheese - inserting 1000 documents. first: Graphic driver and last: Mercury Music Prize +[2018-02-13T00:42:44.613] [INFO] cheese - inserting 1000 documents. first: Detian – Ban Gioc Falls and last: Wichitas +[2018-02-13T00:42:44.638] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:42:44.647] [INFO] cheese - inserting 1000 documents. first: Hermenegildo Capelo and last: Diseqc +[2018-02-13T00:42:44.675] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:42:44.780] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:42:44.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/One Media Player per Teacher and last: Victor Oreskovich +[2018-02-13T00:42:45.035] [INFO] cheese - inserting 1000 documents. first: Jimi language (Cameroon) and last: Category:1324 in Europe +[2018-02-13T00:42:45.068] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:42:45.091] [INFO] cheese - inserting 1000 documents. first: Best Bits (television) and last: Category:Recurring sporting events established in 1850 +[2018-02-13T00:42:45.120] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:42:45.302] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:42:45.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kevin J. Mello and last: Wikipedia:WikiProject Spam/LinkReports/wohnungsmarkt-nuernberg.de +[2018-02-13T00:42:45.428] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eagle-leipzig.de and last: Beeline Heliport +[2018-02-13T00:42:45.472] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:42:45.497] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T00:42:45.522] [INFO] cheese - inserting 1000 documents. first: List of extraterrestrial volcanoes and last: HIV-1 Rev +[2018-02-13T00:42:45.619] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T00:42:45.733] [INFO] cheese - inserting 1000 documents. first: Copenhagenisation and last: Tenants-in-common +[2018-02-13T00:42:45.749] [INFO] cheese - inserting 1000 documents. first: President Mugabe and last: Wikipedia:WikiProject Lebanon/Assessment/Assessment log +[2018-02-13T00:42:45.798] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:42:45.825] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:42:45.863] [INFO] cheese - inserting 1000 documents. first: Kings of Osraige and last: Seigneurial system +[2018-02-13T00:42:45.905] [INFO] cheese - inserting 1000 documents. first: Portal:Cretaceous/Natural world articles/76 and last: ⤋ +[2018-02-13T00:42:45.965] [INFO] cheese - batch complete in: 1.185 secs +[2018-02-13T00:42:45.972] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:42:46.026] [INFO] cheese - inserting 1000 documents. first: Gordon Dixon and last: Category:Schools in Hill County, Montana +[2018-02-13T00:42:46.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/prowrestlingreviews.wixsite.com and last: Veena Poovu (poem) +[2018-02-13T00:42:46.101] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:42:46.145] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:42:46.270] [INFO] cheese - inserting 1000 documents. first: Malcolm Jennings Rogers and last: Shinab +[2018-02-13T00:42:46.272] [INFO] cheese - inserting 1000 documents. first: Luossajärvi and last: Textiled +[2018-02-13T00:42:46.327] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:42:46.332] [INFO] cheese - inserting 1000 documents. first: National Route 356 and last: Square drill bit +[2018-02-13T00:42:46.334] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:42:46.404] [INFO] cheese - inserting 1000 documents. first: ⤊ and last: I'm Gonna Get You +[2018-02-13T00:42:46.426] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:42:46.442] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:42:46.472] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/NazariyKaminski and last: Category:Regular Show images +[2018-02-13T00:42:46.528] [INFO] cheese - inserting 1000 documents. first: Mead's milkweed and last: The Houston Progressive Voice +[2018-02-13T00:42:46.530] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:42:46.589] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:42:46.614] [INFO] cheese - inserting 1000 documents. first: Williston Lake and last: Uthagamandalam +[2018-02-13T00:42:46.694] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:42:46.781] [INFO] cheese - inserting 1000 documents. first: AIPF and last: Shuey Ping-ſin +[2018-02-13T00:42:46.799] [INFO] cheese - inserting 1000 documents. first: Yaguarón (Paraguay) and last: 1992 Men's Champions Trophy (field hockey) +[2018-02-13T00:42:46.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/delist/File:Passchendaele aerial view.jpg and last: MW (film) +[2018-02-13T00:42:46.823] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:42:46.867] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:42:46.883] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:42:46.885] [INFO] cheese - inserting 1000 documents. first: Calder Park Thunderdome and last: WWE Women's Championship Tournament +[2018-02-13T00:42:46.957] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:42:46.967] [INFO] cheese - inserting 1000 documents. first: 我是处女座 and last: Sankt Annæ Plads 1-3 +[2018-02-13T00:42:47.027] [INFO] cheese - inserting 1000 documents. first: Yellow Brick Road (Eminem song) and last: File:Botswana Teachers medals.gif +[2018-02-13T00:42:47.029] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:42:47.106] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:42:47.277] [INFO] cheese - inserting 1000 documents. first: Joan Baez: Classics and last: Abdolkarim Mousavi-Ardabili +[2018-02-13T00:42:47.292] [INFO] cheese - inserting 1000 documents. first: Would You Buy A Used War From This Man? and last: Category:1420s in the Mamluk Sultanate (Cairo) +[2018-02-13T00:42:47.311] [INFO] cheese - inserting 1000 documents. first: File:Doin' the Thing.jpg and last: Wikipedia:WikiProject Spam/LinkReports/wiki.greytip.in +[2018-02-13T00:42:47.364] [INFO] cheese - inserting 1000 documents. first: Category:South American Olympic medalist stubs and last: Wikipedia:Articles for deletion/Barbie and the Diamond Castle +[2018-02-13T00:42:47.385] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:42:47.396] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:42:47.435] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:42:47.463] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:42:47.529] [INFO] cheese - inserting 1000 documents. first: Devotion (novel) and last: Keithia leaf blight +[2018-02-13T00:42:47.557] [INFO] cheese - inserting 1000 documents. first: Krum (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/eroschevauxpassion.com +[2018-02-13T00:42:47.578] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:42:47.620] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:42:47.752] [INFO] cheese - inserting 1000 documents. first: Category:Foreign relations of Tanzania and last: Mayan Children +[2018-02-13T00:42:47.844] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T00:42:47.924] [INFO] cheese - inserting 1000 documents. first: File:Manqabat-e-Qari Muslehuddin.jpg and last: 2003–04 Stoke City F.C. season +[2018-02-13T00:42:47.976] [INFO] cheese - inserting 1000 documents. first: Category:1420 in the Mamluk Sultanate (Cairo) and last: Generali Ladies Linz +[2018-02-13T00:42:47.981] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:42:47.995] [INFO] cheese - inserting 1000 documents. first: Category:1739 in Austria and last: UFC 92 +[2018-02-13T00:42:48.000] [INFO] cheese - inserting 1000 documents. first: Category:People from Gran, Norway and last: 4th Infantry Regiment (Imperial Japanese Army) +[2018-02-13T00:42:48.080] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:42:48.095] [INFO] cheese - inserting 1000 documents. first: Ginsburg, Boris Naumovich and last: Heinrich von Kettenbach +[2018-02-13T00:42:48.098] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:42:48.133] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:42:48.155] [INFO] cheese - inserting 1000 documents. first: Ja'far ibn Abu Talib and last: Algesiras +[2018-02-13T00:42:48.214] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:42:48.301] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:42:48.631] [INFO] cheese - inserting 1000 documents. first: List of places in Idaho/K and last: Lemsford Road Halt railway station +[2018-02-13T00:42:48.634] [INFO] cheese - inserting 1000 documents. first: Andwells Brewery and last: R56 (KwaZulu-Natal) +[2018-02-13T00:42:48.657] [INFO] cheese - inserting 1000 documents. first: Coco's Lunch and last: Ancha (star) +[2018-02-13T00:42:48.773] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by My Chemical Romance and last: Category:Görele District +[2018-02-13T00:42:48.778] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:42:48.785] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:42:48.791] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T00:42:48.808] [INFO] cheese - inserting 1000 documents. first: Wilhelm Gause and last: File:One After 909.ogg +[2018-02-13T00:42:48.876] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:42:48.907] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T00:42:49.033] [INFO] cheese - inserting 1000 documents. first: Municipal seat and last: 1973 Buffalo Bills season +[2018-02-13T00:42:49.135] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T00:42:49.369] [INFO] cheese - inserting 1000 documents. first: White-Cheeked Sparrow Lark and last: Aleksandar Nikitović +[2018-02-13T00:42:49.414] [INFO] cheese - inserting 1000 documents. first: Kahuna Nui and last: Chateau Pedesclaux +[2018-02-13T00:42:49.432] [INFO] cheese - inserting 1000 documents. first: Whanau Ora and last: Harlan Daily Enterprise +[2018-02-13T00:42:49.439] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:42:49.516] [INFO] cheese - inserting 1000 documents. first: Jimmachi Station and last: Stalden +[2018-02-13T00:42:49.519] [INFO] cheese - inserting 1000 documents. first: Category:Ladybug Mecca albums and last: Category:Basketball in New York City +[2018-02-13T00:42:49.524] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T00:42:49.538] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:42:49.640] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:42:49.655] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T00:42:49.727] [INFO] cheese - inserting 1000 documents. first: Riccardo Berardino and last: João Santos +[2018-02-13T00:42:49.801] [INFO] cheese - inserting 1000 documents. first: File:ROBERT COHEN CLOSE UP.jpg and last: John Hawley Edwards +[2018-02-13T00:42:49.823] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T00:42:49.887] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:42:50.081] [INFO] cheese - inserting 1000 documents. first: Alphense Zwem Club and last: Westwood Inn Classic +[2018-02-13T00:42:50.135] [INFO] cheese - inserting 1000 documents. first: ClimateAudit.org and last: File:Faith, Fraud & Minimum Wage.jpg +[2018-02-13T00:42:50.146] [INFO] cheese - inserting 1000 documents. first: Kabalo Territory and last: Category:Racing drivers who committed suicide +[2018-02-13T00:42:50.154] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:42:50.190] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:42:50.256] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:42:50.268] [INFO] cheese - inserting 1000 documents. first: File:Squircle circle square.png and last: File:Lifterpullerlifterpuller.jpg +[2018-02-13T00:42:50.318] [INFO] cheese - inserting 1000 documents. first: Mughal painting and last: Nuevo Laredo International Airport +[2018-02-13T00:42:50.341] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:42:50.390] [INFO] cheese - inserting 1000 documents. first: File:BCCBlogo.jpg and last: File:Cello Again.jpg +[2018-02-13T00:42:50.394] [INFO] cheese - inserting 1000 documents. first: ACS Amman and last: Crazy Rain and Boredom +[2018-02-13T00:42:50.440] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T00:42:50.442] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:42:50.457] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:42:50.736] [INFO] cheese - inserting 1000 documents. first: Red-Backed Lark and last: Uranus Opal +[2018-02-13T00:42:50.740] [INFO] cheese - inserting 1000 documents. first: Category:Racing drivers killed while racing and last: Bartolus Saxoferratus +[2018-02-13T00:42:50.749] [INFO] cheese - inserting 1000 documents. first: Mumbadevi (Vidhan Sabha constituency) and last: File:Bright Eyes - There Is No Beginning to the Story.jpg +[2018-02-13T00:42:50.795] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:42:50.802] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:42:50.813] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:42:51.048] [INFO] cheese - inserting 1000 documents. first: File:Yellow Park.jpg and last: New York Mets/Managers and ownership +[2018-02-13T00:42:51.113] [INFO] cheese - inserting 1000 documents. first: Heathfield Community School and last: Fazekas Mihály +[2018-02-13T00:42:51.187] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:42:51.189] [INFO] cheese - inserting 1000 documents. first: Sadhna(1958 film) and last: Gino M. Santos +[2018-02-13T00:42:51.240] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:42:51.304] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:42:51.382] [INFO] cheese - inserting 1000 documents. first: Guilford Country Store and last: Reinland, Manitoba +[2018-02-13T00:42:51.421] [INFO] cheese - inserting 1000 documents. first: Shielded twisted pair and last: Safflower Princess +[2018-02-13T00:42:51.469] [INFO] cheese - inserting 1000 documents. first: Stan Williams (Australian footballer) and last: Johnny "Yard Dog" Jones +[2018-02-13T00:42:51.487] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:42:51.501] [INFO] cheese - inserting 1000 documents. first: Category:D-Block Records members and last: Hamhung naengmyeon +[2018-02-13T00:42:51.517] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:42:51.538] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T00:42:51.606] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:42:51.880] [INFO] cheese - inserting 1000 documents. first: Category:Amarillo Venom players and last: City Hall (Columbia, Missouri) +[2018-02-13T00:42:51.881] [INFO] cheese - inserting 1000 documents. first: Congressional district of Sulu and last: 3 for One +[2018-02-13T00:42:51.938] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:42:51.979] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:42:51.999] [INFO] cheese - inserting 1000 documents. first: 2017 Varsity Shield and last: Draft:James Turner (YouTube Personality) +[2018-02-13T00:42:52.020] [INFO] cheese - inserting 1000 documents. first: Conteville, Seine-Maritime and last: Gabino Rodíguuez Rodríguez +[2018-02-13T00:42:52.086] [INFO] cheese - inserting 1000 documents. first: Gene Huff and last: Category:Washington Senators +[2018-02-13T00:42:52.103] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:42:52.131] [INFO] cheese - inserting 1000 documents. first: Steve Gammon and last: Order of Danilo of Montenegro +[2018-02-13T00:42:52.120] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T00:42:52.222] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:42:52.242] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:42:52.349] [INFO] cheese - inserting 1000 documents. first: Viridius and last: Al-Tijaniyya +[2018-02-13T00:42:52.444] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T00:42:52.536] [INFO] cheese - inserting 1000 documents. first: Das and last: Christmas Island, Kiribati +[2018-02-13T00:42:52.575] [INFO] cheese - inserting 1000 documents. first: Daniel Vila and last: Nefelibata +[2018-02-13T00:42:52.606] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:42:52.641] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:42:52.703] [INFO] cheese - inserting 1000 documents. first: Robbie Martin (journalist) and last: Twisted sheaf +[2018-02-13T00:42:52.804] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:42:52.938] [INFO] cheese - inserting 1000 documents. first: Template:User Alpha Tau Omega and last: Drawing room play +[2018-02-13T00:42:52.956] [INFO] cheese - inserting 1000 documents. first: El Jinete sin cabeza and last: Symphony, GA 55 (Mozart) +[2018-02-13T00:42:52.995] [INFO] cheese - inserting 1000 documents. first: The Joy Girl and last: Mythimna olivata +[2018-02-13T00:42:53.060] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T00:42:53.103] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T00:42:53.109] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:42:53.315] [INFO] cheese - inserting 1000 documents. first: Plagiopholis and last: List of Telemundo Telenovelas +[2018-02-13T00:42:53.369] [INFO] cheese - inserting 1000 documents. first: The artwoods and last: Woundale +[2018-02-13T00:42:53.379] [INFO] cheese - inserting 1000 documents. first: File:Dainese logo.png and last: Division of Moore +[2018-02-13T00:42:53.380] [INFO] cheese - inserting 1000 documents. first: Subh (sultana) and last: Jubilee Book of Cricket +[2018-02-13T00:42:53.392] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:42:53.516] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T00:42:53.532] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:42:53.537] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T00:42:53.705] [INFO] cheese - inserting 1000 documents. first: Symphony, GA 56 (Mozart) and last: Rule of three (programming) +[2018-02-13T00:42:53.756] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:42:53.807] [INFO] cheese - inserting 1000 documents. first: Fargues-sur-Ourbise and last: Romney Township, Ontario +[2018-02-13T00:42:53.863] [INFO] cheese - inserting 1000 documents. first: Aelfgith the Younger and last: Category:1791 in economics +[2018-02-13T00:42:53.865] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:42:53.952] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T00:42:53.959] [INFO] cheese - inserting 1000 documents. first: Robotic space exploration and last: Corixid +[2018-02-13T00:42:54.091] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:42:54.132] [INFO] cheese - inserting 1000 documents. first: RAN Bicalutamide and last: Category:Home inspection +[2018-02-13T00:42:54.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michael oneill and last: Himalayan bank +[2018-02-13T00:42:54.247] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:42:54.287] [INFO] cheese - inserting 1000 documents. first: Leroy Satchel Paige Legacy Award and last: Stealing the Language: The Emergence of Women's Poetry in America +[2018-02-13T00:42:54.306] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:42:54.389] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:42:54.409] [INFO] cheese - inserting 1000 documents. first: North Central Florida and last: Zhdanov (place) +[2018-02-13T00:42:54.482] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T00:42:54.525] [INFO] cheese - inserting 1000 documents. first: Tilbury East Township, Ontario and last: Molissa Fenley +[2018-02-13T00:42:54.577] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:42:54.602] [INFO] cheese - inserting 1000 documents. first: 3NOW and last: Unrestricted Warfare (book) +[2018-02-13T00:42:54.653] [INFO] cheese - inserting 1000 documents. first: Category:1790 in economics and last: Saint-Rosaire, Quebec +[2018-02-13T00:42:54.672] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:42:54.702] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:42:54.713] [INFO] cheese - inserting 1000 documents. first: Adna Ferrin Weber and last: Category:914 establishments in Europe +[2018-02-13T00:42:54.760] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:42:54.770] [INFO] cheese - inserting 1000 documents. first: Tetsuro Tanba and last: Catholic Channel +[2018-02-13T00:42:54.838] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:42:54.876] [INFO] cheese - inserting 1000 documents. first: Durfee symbol and last: Valley Point, Alberta +[2018-02-13T00:42:54.956] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:42:55.061] [INFO] cheese - inserting 1000 documents. first: File:Lwcks.jpg and last: National Trails Road +[2018-02-13T00:42:55.097] [INFO] cheese - inserting 1000 documents. first: John Cowan Hartford and last: 汉武帝 +[2018-02-13T00:42:55.123] [INFO] cheese - inserting 1000 documents. first: Supersecondary structure and last: Lord Anson +[2018-02-13T00:42:55.147] [INFO] cheese - inserting 1000 documents. first: Category:1661 establishments in Taiwan and last: Editing and Gender on Wikipedia +[2018-02-13T00:42:55.154] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:42:55.178] [INFO] cheese - inserting 1000 documents. first: Category:910 establishments in Europe and last: Draft:Skippa da Flippa +[2018-02-13T00:42:55.182] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:42:55.200] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:42:55.228] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:42:55.232] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:42:55.389] [INFO] cheese - inserting 1000 documents. first: Verden Place, Alberta and last: Wikipedia:WikiProject East Asia/Mongolia work group +[2018-02-13T00:42:55.390] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-09-25 and last: Frank Leslie Cross +[2018-02-13T00:42:55.462] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:42:55.508] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:42:55.697] [INFO] cheese - inserting 1000 documents. first: Category:Jan Oort and last: Kaya Alp +[2018-02-13T00:42:55.706] [INFO] cheese - inserting 1000 documents. first: Giany Joinville and last: Category:Images for cleanup without reasons +[2018-02-13T00:42:55.737] [INFO] cheese - inserting 1000 documents. first: United Kingdom Census 2021 and last: Florida Coast-to-Coast Trail +[2018-02-13T00:42:55.751] [INFO] cheese - inserting 1000 documents. first: Fairview Township, Holt County, Nebraska and last: Vontae Davis +[2018-02-13T00:42:55.762] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:42:55.777] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:42:55.812] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:42:55.864] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:42:56.043] [INFO] cheese - inserting 1000 documents. first: SV Grün-Weiß Lübben and last: Qart-Hadshat +[2018-02-13T00:42:56.070] [INFO] cheese - inserting 1000 documents. first: Corticotropin-like intermediate peptide and last: Category:Upcoming games +[2018-02-13T00:42:56.105] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:42:56.121] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:42:56.207] [INFO] cheese - inserting 1000 documents. first: Template:Southeastern Conference Football Player of the Year navbox and last: Category:1978 events by month +[2018-02-13T00:42:56.257] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:42:56.276] [INFO] cheese - inserting 1000 documents. first: Saint-Côme, Quebec and last: Star Wars Obi-Wan +[2018-02-13T00:42:56.278] [INFO] cheese - inserting 1000 documents. first: CUFOS and last: Laurence Rees +[2018-02-13T00:42:56.334] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:42:56.339] [INFO] cheese - inserting 1000 documents. first: Florida Coast-to-Coast Connector bicycle trail and last: Wikipedia:Main Page history/2014 May 1 +[2018-02-13T00:42:56.357] [INFO] cheese - inserting 1000 documents. first: Edwin R. Denney and last: Pieta Michelangelo +[2018-02-13T00:42:56.379] [INFO] cheese - batch complete in: 1.151 secs +[2018-02-13T00:42:56.395] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:42:56.430] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:42:56.588] [INFO] cheese - inserting 1000 documents. first: SC Serbian White Eagles Toronto and last: File:A BluePrint of the world album cover (Wikipedia).jpg +[2018-02-13T00:42:56.641] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:42:56.645] [INFO] cheese - inserting 1000 documents. first: Bingham Canyon Mine and last: Portal:Slovakia/box-footer +[2018-02-13T00:42:56.695] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:42:56.706] [INFO] cheese - inserting 463 documents. first: Wikipedia:African Collaboration of the Fortnight and last: Gender reassignment +[2018-02-13T00:42:56.712] [INFO] cheese - inserting 1000 documents. first: The City of Failing Light and last: Wild Field (disambiguation) +[2018-02-13T00:42:56.731] [INFO] cheese - inserting 1000 documents. first: Dusky Sallow and last: Trench excavator +[2018-02-13T00:42:56.746] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:42:56.746] [INFO] cheese - worker pid:56521 is done. inserted 1178464 pages in 0 secs. +[2018-02-13T00:42:56.758] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:42:56.801] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:42:56.860] [INFO] cheese - inserting 1000 documents. first: Soulé and last: The South Goes North +[2018-02-13T00:42:56.865] [INFO] cheese - inserting 1000 documents. first: Fahim Hashimy and last: Comuni of the Province of Pescara +[2018-02-13T00:42:56.916] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:42:56.935] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:42:57.133] [INFO] cheese - inserting 1000 documents. first: File:A Good Year.jpg and last: Electoral results for the district of Currumbin +[2018-02-13T00:42:57.218] [INFO] cheese - inserting 1000 documents. first: Jim Carlen and last: Stop That Noise +[2018-02-13T00:42:57.240] [INFO] cheese - inserting 1000 documents. first: Category:961 establishments in Asia and last: Shole-zard +[2018-02-13T00:42:57.291] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:42:57.336] [INFO] cheese - inserting 1000 documents. first: Transition frequency and last: Hook mate +[2018-02-13T00:42:57.358] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:42:57.358] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:42:57.401] [INFO] cheese - inserting 1000 documents. first: Comuni of the Province of Piacenza and last: Ouran High School +[2018-02-13T00:42:57.457] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:42:57.495] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:42:57.592] [INFO] cheese - inserting 1000 documents. first: Hair stick and last: Wikipedia:WikiProject Military history/Logistics +[2018-02-13T00:42:57.668] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:42:57.743] [INFO] cheese - inserting 1000 documents. first: Sigurður Ólafsson (swimmer) and last: 100 Days of Slaughter +[2018-02-13T00:42:57.814] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:42:57.912] [INFO] cheese - inserting 1000 documents. first: Home Tutor Hitman REBORN! and last: File:Thomasstewartsinger.jpg +[2018-02-13T00:42:57.938] [INFO] cheese - inserting 1000 documents. first: Michael Booth and last: Antonio Socci +[2018-02-13T00:42:57.951] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:42:57.985] [INFO] cheese - inserting 1000 documents. first: Category:FC Steaua București templates and last: Living nativity +[2018-02-13T00:42:57.996] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:42:58.064] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:42:58.115] [INFO] cheese - inserting 1000 documents. first: Erskine, Walter and last: Jaysh al-Halab +[2018-02-13T00:42:58.119] [INFO] cheese - inserting 1000 documents. first: Template:Comic Yuri Hime and last: Tri Martolod +[2018-02-13T00:42:58.147] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:42:58.148] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Saga Prefecture and last: Stuttgart Exhibition Center +[2018-02-13T00:42:58.176] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:42:58.206] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:42:58.367] [INFO] cheese - inserting 1000 documents. first: Template:Kannada Nadu Party/meta/color and last: The Last Song +[2018-02-13T00:42:58.419] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:42:58.507] [INFO] cheese - inserting 1000 documents. first: იოსებ ბესარიონის ძე ჯუღაშვილი and last: Melita obtusata +[2018-02-13T00:42:58.552] [INFO] cheese - inserting 1000 documents. first: Stuttgart Messe and last: Bernard Wright +[2018-02-13T00:42:58.562] [INFO] cheese - inserting 1000 documents. first: Tunas Bangsa School and last: Itapeva State Park +[2018-02-13T00:42:58.576] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:42:58.588] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:42:58.611] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:42:58.677] [INFO] cheese - inserting 1000 documents. first: Ahmad ibn Farighun and last: Dexithea humeralis +[2018-02-13T00:42:58.721] [INFO] cheese - inserting 1000 documents. first: Quotient (group theory) and last: Wikipedia:WikiProject New York State +[2018-02-13T00:42:58.737] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:42:58.754] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:42:58.805] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Lockyer and last: Museum of Polish Arms +[2018-02-13T00:42:59.003] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T00:42:59.049] [INFO] cheese - inserting 1000 documents. first: Rhaetian Railway Ge 6/6 I and last: Kiev in Miniature +[2018-02-13T00:42:59.130] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:42:59.185] [INFO] cheese - inserting 1000 documents. first: Aed Roin and last: Wikipedia:WikiProject Spam/LinkReports/aes.iupui.edu +[2018-02-13T00:42:59.292] [INFO] cheese - inserting 1000 documents. first: Category:1965–66 Middle Atlantic Conferences men's basketball season and last: Wikipedia:Articles for deletion/Eli Eli +[2018-02-13T00:42:59.307] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:42:59.380] [INFO] cheese - inserting 1000 documents. first: Dexithea klugii and last: Gilbert Collett (philatelist) +[2018-02-13T00:42:59.429] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:42:59.522] [INFO] cheese - inserting 1000 documents. first: Template:All India Majlis-E-Ittehadul Muslimeen/meta/color and last: Didier van Damme +[2018-02-13T00:42:59.545] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:42:59.670] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T00:42:59.763] [INFO] cheese - inserting 1000 documents. first: Klostergårdens IP and last: The Lone Wolf in Paris +[2018-02-13T00:42:59.810] [INFO] cheese - inserting 1000 documents. first: Park of miniatures and last: Template:Move-multi/doc +[2018-02-13T00:42:59.863] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:42:59.960] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:43:00.083] [INFO] cheese - inserting 1000 documents. first: Category:November 2013 events and last: New Zealand National Party leadership election, 1940 +[2018-02-13T00:43:00.095] [INFO] cheese - inserting 1000 documents. first: Thomas Foley (auditor of the imprests) and last: Walter (bishop) +[2018-02-13T00:43:00.179] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:43:00.220] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T00:43:00.409] [INFO] cheese - inserting 1000 documents. first: Roma Open and last: A. J. Reed +[2018-02-13T00:43:00.447] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:43:00.472] [INFO] cheese - inserting 1000 documents. first: Jolly Jack and last: Category:Anglo-Burmese wars +[2018-02-13T00:43:00.526] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:43:00.535] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand National Party leadership elections and last: File:First B Sc Graduate From Barbhitha Village Main Uddin.jpg +[2018-02-13T00:43:00.580] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:43:00.615] [INFO] cheese - inserting 1000 documents. first: Complete inner product space and last: Wikipedia:Today's featured article/January 12, 2010 +[2018-02-13T00:43:00.650] [INFO] cheese - inserting 1000 documents. first: ∀ Gundam I: Earth Light and last: Principality of Lübeck +[2018-02-13T00:43:00.665] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:43:00.699] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:43:00.702] [INFO] cheese - inserting 1000 documents. first: Template:St. Catharines municipal election, 2000/Position/Mayor and last: Wikipedia:Deletion log/January 2003 +[2018-02-13T00:43:00.803] [INFO] cheese - batch complete in: 1.133 secs +[2018-02-13T00:43:00.923] [INFO] cheese - inserting 1000 documents. first: Template:EM-DAT and last: A fire +[2018-02-13T00:43:00.951] [INFO] cheese - inserting 1000 documents. first: List of cities in Germany starting with K and last: Susanna (given name) +[2018-02-13T00:43:00.991] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:43:01.020] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:43:01.033] [INFO] cheese - inserting 1000 documents. first: Clyzomedus borneensis and last: Bauxite waste +[2018-02-13T00:43:01.087] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:43:01.095] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/JobsBroadway.com and last: State Road 395 +[2018-02-13T00:43:01.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/January 13, 2010 and last: Olga Moskalenko-Rocheva +[2018-02-13T00:43:01.158] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:43:01.160] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:43:01.367] [INFO] cheese - inserting 1000 documents. first: File:Kate Bush - Wow.png and last: Mesosa blairi +[2018-02-13T00:43:01.498] [INFO] cheese - inserting 1000 documents. first: Resmi Ahmed Efendi and last: Category:Wikipedia sockpuppets of PowerSane +[2018-02-13T00:43:01.535] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:43:01.560] [INFO] cheese - inserting 1000 documents. first: The hospital and last: Doctor Dolittle Meets a Londoner in Paris +[2018-02-13T00:43:01.643] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:43:01.647] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:43:01.744] [INFO] cheese - inserting 1000 documents. first: Wilhelm Wessel and last: File:Hana-Bi.JPG +[2018-02-13T00:43:01.771] [INFO] cheese - inserting 1000 documents. first: SR 395 and last: SF '58: The Year's Greatest Science Fiction and Fantasy +[2018-02-13T00:43:01.835] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:43:01.876] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:43:02.152] [INFO] cheese - inserting 1000 documents. first: Robert G. Flanders Jr. and last: Hunter Greene (disambiguation) +[2018-02-13T00:43:02.164] [INFO] cheese - inserting 1000 documents. first: Category:Masaryk University alumni and last: Wikipedia:Articles for deletion/How to Boil a Frog +[2018-02-13T00:43:02.179] [INFO] cheese - inserting 1000 documents. first: Karen Steurs and last: Category:1960 elections in New Zealand +[2018-02-13T00:43:02.198] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:43:02.209] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:43:02.247] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:43:02.263] [INFO] cheese - inserting 1000 documents. first: Surphanakha and last: New zealand maoris rugby league team +[2018-02-13T00:43:02.299] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:43:02.347] [INFO] cheese - inserting 1000 documents. first: Dretelj and last: Land Record +[2018-02-13T00:43:02.400] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:43:02.492] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion log/January 2004 and last: Stirling, Western Australia +[2018-02-13T00:43:02.562] [INFO] cheese - inserting 1000 documents. first: Ghati Subramanya and last: Meditation from Thaïs +[2018-02-13T00:43:02.612] [INFO] cheese - batch complete in: 1.809 secs +[2018-02-13T00:43:02.616] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:43:02.641] [INFO] cheese - inserting 1000 documents. first: Category:1963 elections in New Zealand and last: Antero Lumme +[2018-02-13T00:43:02.676] [INFO] cheese - inserting 1000 documents. first: Chang and Ang and last: History of submarine +[2018-02-13T00:43:02.708] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:43:02.765] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:43:02.914] [INFO] cheese - inserting 1000 documents. first: Bliss Wind Farm and last: SR 516 (WA) +[2018-02-13T00:43:03.011] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:43:03.046] [INFO] cheese - inserting 1000 documents. first: Zelota bryanti and last: File:Wilson Audio logo.png +[2018-02-13T00:43:03.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SOPA initiative/Questions and last: Victor Amadeus of Sicily +[2018-02-13T00:43:03.106] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:43:03.240] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:43:03.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/athema.co.uk and last: 2014 Supercoppa Italiana +[2018-02-13T00:43:03.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/StephenPaternoster/Archive and last: 张国梁 +[2018-02-13T00:43:03.432] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:43:03.500] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:43:03.503] [INFO] cheese - inserting 1000 documents. first: SR 527 (WA) and last: Template:Miner County, South Dakota +[2018-02-13T00:43:03.584] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:43:03.690] [INFO] cheese - inserting 1000 documents. first: Category:Midlake albums and last: Wikipedia:Articles for deletion/Sheep Tag (second nomination) +[2018-02-13T00:43:03.745] [INFO] cheese - inserting 1000 documents. first: Peter Pan (novel and play) and last: Bhagvad Gita ban in Russia +[2018-02-13T00:43:03.759] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T00:43:03.848] [INFO] cheese - inserting 1000 documents. first: Microsoft Teams and last: 1 Armoured Cavalry Squadron +[2018-02-13T00:43:03.872] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:43:03.924] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:43:04.049] [INFO] cheese - inserting 1000 documents. first: Tuzun (amir al-umara) and last: Portal:Current events/2014 May 7 +[2018-02-13T00:43:04.058] [INFO] cheese - inserting 1000 documents. first: Love and Consequences: A Memoir of Hope and Survival and last: "Illyrian" type helmet +[2018-02-13T00:43:04.113] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:43:04.127] [INFO] cheese - inserting 1000 documents. first: Madras Presidency Legislative Council election, 1930 and last: Climate Research (journal) +[2018-02-13T00:43:04.140] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:43:04.273] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:43:04.331] [INFO] cheese - inserting 1000 documents. first: Andre Cailloux and last: Wikipedia:Introduction 3/Header +[2018-02-13T00:43:04.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/MikroKopter and last: Eugene Carroll +[2018-02-13T00:43:04.392] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:43:04.453] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:43:04.558] [INFO] cheese - inserting 1000 documents. first: Howard G. Swafford and last: Mahaboob Alam +[2018-02-13T00:43:04.576] [INFO] cheese - inserting 1000 documents. first: First Armoured Cavalry Squadron and last: Nyctimenius mamutensis +[2018-02-13T00:43:04.602] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:43:04.649] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:43:04.663] [INFO] cheese - inserting 1000 documents. first: Hello, Little Girl and last: Wikipedia:Articles for deletion/Jamie Anne Allman +[2018-02-13T00:43:04.728] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:43:04.928] [INFO] cheese - inserting 1000 documents. first: Kazma Sakamoto and last: File:TortolaPanoramaJost.JPG +[2018-02-13T00:43:04.935] [INFO] cheese - inserting 1000 documents. first: Ed Taubensee and last: File:Goshawk dove2.JPG +[2018-02-13T00:43:04.970] [INFO] cheese - inserting 1000 documents. first: Mount Pleasant, York Regional Municipality, Ontario and last: Wikipedia:Articles for deletion/4th and 2 +[2018-02-13T00:43:04.990] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:43:04.998] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:43:05.010] [INFO] cheese - inserting 1000 documents. first: Nyctimenius ochraceovittatus and last: Qinghai Tianyoude–BH Cycling Team +[2018-02-13T00:43:05.037] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:43:05.106] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:43:05.194] [INFO] cheese - inserting 1000 documents. first: File:Exploration rover nasa mars.jpg and last: File:Doe and fawns July 2006.jpg +[2018-02-13T00:43:05.245] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:43:05.277] [INFO] cheese - inserting 1000 documents. first: Mexican—Japanese Lyceum and last: Black-fronted Flowerpecker +[2018-02-13T00:43:05.355] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:43:05.508] [INFO] cheese - inserting 1000 documents. first: List of Albanian language poets and last: Category:Telecommunications in Lebanon +[2018-02-13T00:43:05.569] [INFO] cheese - inserting 1000 documents. first: Hindu Raj and last: Category:Collections of the Villa Giulia +[2018-02-13T00:43:05.583] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:43:05.630] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:43:05.675] [INFO] cheese - inserting 1000 documents. first: Autorité de contrôle prudentiel and last: Module:Sandbox/Yurik +[2018-02-13T00:43:05.724] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:43:05.775] [INFO] cheese - inserting 1000 documents. first: Wikipedia:HU and last: Category:Sports in Dallas +[2018-02-13T00:43:05.844] [INFO] cheese - inserting 1000 documents. first: Black-tailed Treecreeper and last: Eburia postica +[2018-02-13T00:43:05.844] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:43:05.909] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:43:06.008] [INFO] cheese - inserting 1000 documents. first: Ranunculus pensylvanicus and last: Yelli, Güdül +[2018-02-13T00:43:06.062] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:43:06.089] [INFO] cheese - inserting 1000 documents. first: Inniskilling Fusiliers and last: The Very Best of Cher DVD Edition +[2018-02-13T00:43:06.170] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:43:06.212] [INFO] cheese - inserting 1000 documents. first: Anaj Tegin and last: Draft:Dagmar Stelberg +[2018-02-13T00:43:06.325] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:43:06.352] [INFO] cheese - inserting 1000 documents. first: Category:Iraqi-Turkish relations and last: Wikipedia:Miscellany for deletion/User:Therese Dvir +[2018-02-13T00:43:06.418] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:43:06.476] [INFO] cheese - inserting 1000 documents. first: Eburia powelli and last: Tom Bailey (cricketer) +[2018-02-13T00:43:06.528] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:43:06.593] [INFO] cheese - inserting 1000 documents. first: Unsellables episode list and last: Emmalocera icasmopis +[2018-02-13T00:43:06.620] [INFO] cheese - inserting 1000 documents. first: Yolo, California and last: Altayskoe +[2018-02-13T00:43:06.653] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:43:06.714] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:43:06.872] [INFO] cheese - inserting 1000 documents. first: Ammoflight and last: Ildikó Tóth (actress) +[2018-02-13T00:43:06.939] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:43:07.023] [INFO] cheese - inserting 1000 documents. first: Diocese of Copiapó and last: Nhat Le River +[2018-02-13T00:43:07.110] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jarosław Leitgeber and last: Wikipedia:Sockpuppet investigations/Puntjuuu!.! +[2018-02-13T00:43:07.118] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Edwin S. Porter and last: Category:Parks in Simcoe County +[2018-02-13T00:43:07.137] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:43:07.176] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:43:07.182] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:43:07.326] [INFO] cheese - inserting 1000 documents. first: Altaiskoye and last: OUTNOW (ON magazine) +[2018-02-13T00:43:07.355] [INFO] cheese - inserting 1000 documents. first: Fabio Rovazzi and last: Lorenzo Moore (MP for Dungannon) +[2018-02-13T00:43:07.410] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:43:07.405] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:43:07.563] [INFO] cheese - inserting 1000 documents. first: Pale-eyed Thrush and last: Speak to Me Pretty +[2018-02-13T00:43:07.660] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:43:07.684] [INFO] cheese - inserting 1000 documents. first: Muscovite Civil War (1425-1453) and last: Yining (city) +[2018-02-13T00:43:07.685] [INFO] cheese - inserting 1000 documents. first: Honda just and last: Errol Hill +[2018-02-13T00:43:07.738] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:43:07.762] [INFO] cheese - inserting 1000 documents. first: Elton Vata and last: Category:314 establishments in Europe +[2018-02-13T00:43:07.764] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:43:07.889] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:43:07.976] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Oklahoma articles and last: Massachusetts route 43 +[2018-02-13T00:43:08.026] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:43:08.298] [INFO] cheese - inserting 1000 documents. first: El Alamein (film) and last: Category:Law enforcement in Metro Manila +[2018-02-13T00:43:08.305] [INFO] cheese - inserting 1000 documents. first: North Moor, Missouri and last: Category:Films based on Romanian novels +[2018-02-13T00:43:08.351] [INFO] cheese - inserting 1000 documents. first: Severe depression and last: Age and intelligence +[2018-02-13T00:43:08.370] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:43:08.380] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:43:08.429] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:43:08.492] [INFO] cheese - inserting 1000 documents. first: Category:Islands of the dependencies of Guadeloupe and last: Qabila Qarshe +[2018-02-13T00:43:08.564] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:43:08.602] [INFO] cheese - inserting 1000 documents. first: Alexander de Waal and last: Wikipedia:Articles for deletion/List of record producers +[2018-02-13T00:43:08.664] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:43:08.748] [INFO] cheese - inserting 1000 documents. first: Template:1989-90 NBA Central standings and last: Template:User Colorado College/doc +[2018-02-13T00:43:08.748] [INFO] cheese - inserting 1000 documents. first: Draft:Medical Problem List and last: William J. Simmons (disambiguation) +[2018-02-13T00:43:08.800] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:43:08.804] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:43:08.894] [INFO] cheese - inserting 1000 documents. first: Sergei Krasnikov and last: Template:WikiProject Human Rights +[2018-02-13T00:43:08.934] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:43:08.962] [INFO] cheese - inserting 1000 documents. first: This Is The Life and last: Massachusetts route 112 +[2018-02-13T00:43:08.980] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mary Mother of Peace Area Catholic School and last: Lajos Szűcs (disambiguation) +[2018-02-13T00:43:08.994] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:43:09.049] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:43:09.066] [INFO] cheese - inserting 1000 documents. first: Category:Hergé characters and last: Konidela production company +[2018-02-13T00:43:09.103] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:43:09.205] [INFO] cheese - inserting 1000 documents. first: Ohio State Route 75 and last: State Route 43 (Arkansas) +[2018-02-13T00:43:09.239] [INFO] cheese - inserting 1000 documents. first: Austrian State Prize for European Literature and last: Glen Cressman +[2018-02-13T00:43:09.246] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:43:09.259] [INFO] cheese - inserting 1000 documents. first: 2/1st Derbyshire Yeomanry and last: File:Maanikya audio cover.jpg +[2018-02-13T00:43:09.264] [INFO] cheese - inserting 1000 documents. first: Neuronal encoding of sound and last: Lester Shubin +[2018-02-13T00:43:09.271] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:43:09.322] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:43:09.406] [INFO] cheese - batch complete in: 4.369 secs +[2018-02-13T00:43:09.462] [INFO] cheese - inserting 1000 documents. first: Ashville-class gunboat (1917) and last: Category:Chichester City F.C. (1873) players +[2018-02-13T00:43:09.493] [INFO] cheese - inserting 1000 documents. first: Shaykhís and last: Missouri route 30 +[2018-02-13T00:43:09.512] [INFO] cheese - inserting 1000 documents. first: File:Circuitikz.png and last: File:DeduceYouSay Lobby Card.png +[2018-02-13T00:43:09.555] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:43:09.607] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:43:09.681] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:43:09.917] [INFO] cheese - inserting 1000 documents. first: The Taking of Pelham One Two Three and last: 1995 Japan Open Tennis Championships +[2018-02-13T00:43:09.994] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:43:10.040] [INFO] cheese - inserting 1000 documents. first: Fabien Noel and last: Sonora Horned Lark +[2018-02-13T00:43:10.043] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thermostat Fallacy and last: OpenLinux Lite 1.0 +[2018-02-13T00:43:10.044] [INFO] cheese - inserting 1000 documents. first: Missouri highway 30 and last: State highway 84 (Missouri) +[2018-02-13T00:43:10.094] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:43:10.094] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:43:10.123] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:43:10.230] [INFO] cheese - inserting 1000 documents. first: 86 Wing (disambiguation) and last: Tea bowl (disambiguation) +[2018-02-13T00:43:10.292] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:43:10.504] [INFO] cheese - inserting 1000 documents. first: State Route 84 (Missouri) and last: Route 127 (Missouri) +[2018-02-13T00:43:10.535] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:43:10.653] [INFO] cheese - inserting 1000 documents. first: Muncy School District and last: Fer Falgae +[2018-02-13T00:43:10.688] [INFO] cheese - inserting 1000 documents. first: Ted Clayton and last: 2016 World Wrestling Championships - Women's freestyle 60 kg +[2018-02-13T00:43:10.745] [INFO] cheese - inserting 1000 documents. first: Temple of Monthu (disambiguation) and last: Башҡортостан +[2018-02-13T00:43:10.757] [INFO] cheese - inserting 1000 documents. first: Red Shirt Table and last: Category:1304 in Europe +[2018-02-13T00:43:10.762] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:43:10.772] [INFO] cheese - batch complete in: 1.366 secs +[2018-02-13T00:43:10.846] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:43:10.871] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:43:10.893] [INFO] cheese - inserting 1000 documents. first: Blue John stone and last: Kathleen Fidler +[2018-02-13T00:43:11.005] [INFO] cheese - inserting 1000 documents. first: Highway 127 (Missouri) and last: State Highway 157 (Missouri) +[2018-02-13T00:43:11.006] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:43:11.108] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:43:11.281] [INFO] cheese - inserting 1000 documents. first: County Calendar and last: Red lentils +[2018-02-13T00:43:11.298] [INFO] cheese - inserting 1000 documents. first: 1903-04 Penn State Nittany Lions basketball team and last: Subramanya Temple, Munnar +[2018-02-13T00:43:11.329] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:43:11.340] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:43:11.342] [INFO] cheese - inserting 1000 documents. first: Saving Abel (2006 album) and last: Category:1312 in France +[2018-02-13T00:43:11.398] [INFO] cheese - inserting 1000 documents. first: State highway 157 (Missouri) and last: File:Louise Fitzhugh.jpg +[2018-02-13T00:43:11.425] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:43:11.433] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:43:11.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/alma.edu and last: Category:Mechanical reproductions of original works in need of additional detail +[2018-02-13T00:43:11.546] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:43:11.560] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Ettercamp and last: Template:1968 UCLA basketball +[2018-02-13T00:43:11.633] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T00:43:11.659] [INFO] cheese - inserting 1000 documents. first: P. J. Brophy and last: Bavarian Concordat (1817) +[2018-02-13T00:43:11.689] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:43:11.718] [INFO] cheese - inserting 1000 documents. first: Congressional District of Zamboanga City and last: Highway 371 (MO) +[2018-02-13T00:43:11.755] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:43:11.797] [INFO] cheese - inserting 1000 documents. first: MV Empire Fusilier and last: Svanevatn +[2018-02-13T00:43:11.863] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:43:11.899] [INFO] cheese - inserting 1000 documents. first: Per Klingenberg Hestetun and last: File:High speed railway map 3.jpg +[2018-02-13T00:43:11.966] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:43:12.009] [INFO] cheese - inserting 1000 documents. first: MCL Mapúa Institute of Technology at Laguna and last: Szoke Sakall +[2018-02-13T00:43:12.042] [INFO] cheese - inserting 1000 documents. first: George Robert Lewis and last: Géza Bereményi +[2018-02-13T00:43:12.070] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:43:12.089] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:43:12.107] [INFO] cheese - inserting 1000 documents. first: Route 371 (Missouri) and last: Labour Protection League +[2018-02-13T00:43:12.159] [INFO] cheese - inserting 1000 documents. first: The City of a Thousand Delights and last: Category:People from Los Altos Hills, California +[2018-02-13T00:43:12.200] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:43:12.214] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:43:12.619] [INFO] cheese - inserting 1000 documents. first: Rockford, Ontario and last: George Campbell Ross +[2018-02-13T00:43:12.631] [INFO] cheese - inserting 1000 documents. first: Kraut Line and last: Luxury Briefing +[2018-02-13T00:43:12.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Difulton and last: Wikipedia:Articles for deletion/Don Bryant (politician) +[2018-02-13T00:43:12.669] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:43:12.679] [INFO] cheese - inserting 1000 documents. first: Dicynodon jouberti and last: Category:People from Nome, Norway +[2018-02-13T00:43:12.716] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:43:12.781] [INFO] cheese - inserting 1000 documents. first: Algal cultures and last: Missouri route 65 (decommissioned) +[2018-02-13T00:43:12.779] [INFO] cheese - inserting 1000 documents. first: Category:Pages using infobox French communauté with unknown parameters and last: Robert Heath (engineer) +[2018-02-13T00:43:12.791] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:43:12.832] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:43:12.873] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:43:12.922] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:43:13.217] [INFO] cheese - inserting 1000 documents. first: Haathi Parbat and last: Lada-Energia Ulyanovsk +[2018-02-13T00:43:13.239] [INFO] cheese - inserting 1000 documents. first: Missouri highway 65 (decommissioned) and last: Ruslan Bodelan +[2018-02-13T00:43:13.271] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:43:13.295] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:43:13.393] [INFO] cheese - inserting 1000 documents. first: Reformed Church, Uileacu Șimleului and last: 1990 ABN World Tennis Tournament +[2018-02-13T00:43:13.429] [INFO] cheese - inserting 1000 documents. first: Category:Recurring sporting events disestablished in 1972 and last: Category:Sportspeople from Piedimonte Matese +[2018-02-13T00:43:13.430] [INFO] cheese - inserting 1000 documents. first: Randell Johnson and last: Great Lakes boreal wolf +[2018-02-13T00:43:13.446] [INFO] cheese - inserting 1000 documents. first: Great Thatch ruin and last: Sheung Shui Slaughter House +[2018-02-13T00:43:13.463] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:43:13.508] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:43:13.521] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:43:13.557] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T00:43:13.857] [INFO] cheese - inserting 1000 documents. first: Portal:Disaster and last: State Route 463 (Arkansas) +[2018-02-13T00:43:13.870] [INFO] cheese - inserting 1000 documents. first: FC Lada-Energiya-2 Dimitrovgrad and last: Portal:University of Oxford/Selected quotation/10 +[2018-02-13T00:43:13.921] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:43:13.945] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:43:14.017] [INFO] cheese - inserting 1000 documents. first: ActivityStreams and last: RMA color code +[2018-02-13T00:43:14.033] [INFO] cheese - inserting 1000 documents. first: Universal Soldier: A New Dimension (2012) and last: Template:VillanovaBasketballSeasons +[2018-02-13T00:43:14.046] [INFO] cheese - inserting 1000 documents. first: Yayasan Senang Hati and last: Miroslav Krleza Lexicographic Institute +[2018-02-13T00:43:14.109] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:43:14.126] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:43:14.143] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:43:14.191] [INFO] cheese - inserting 1000 documents. first: File:Tonaton-logo.svg and last: Category:Female wheelchair racers +[2018-02-13T00:43:14.261] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:43:14.399] [INFO] cheese - inserting 1000 documents. first: First United Methodist Church of Umatilla) and last: Pat denner +[2018-02-13T00:43:14.454] [INFO] cheese - inserting 1000 documents. first: Sonrais and last: Portal:Greater Los Angeles/Selected article +[2018-02-13T00:43:14.508] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:43:14.521] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:43:14.597] [INFO] cheese - inserting 1000 documents. first: RMA colour code and last: File:Sharda (1981 film).jpg +[2018-02-13T00:43:14.656] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:43:14.760] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Yellala Falls and last: PRR BB3 +[2018-02-13T00:43:14.775] [INFO] cheese - inserting 1000 documents. first: Sofia de Grecia y Hannover and last: Toguz-Bulak, Alay +[2018-02-13T00:43:14.818] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:43:14.833] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:43:14.913] [INFO] cheese - inserting 1000 documents. first: Limnoecia amblopa and last: Ithome pernigrella +[2018-02-13T00:43:14.999] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:43:15.055] [INFO] cheese - inserting 1000 documents. first: Solar eclipse of September 2, 2035 and last: George M. Kober medal +[2018-02-13T00:43:15.148] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:43:15.245] [INFO] cheese - inserting 1000 documents. first: State Route 119 (Alabama) and last: Harley-Davidson Twin Cam engine +[2018-02-13T00:43:15.271] [INFO] cheese - inserting 1000 documents. first: Category:Consulting firms established in 1956 and last: David Agnew (footballer) +[2018-02-13T00:43:15.373] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:43:15.376] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T00:43:15.444] [INFO] cheese - inserting 1000 documents. first: Category:Education in Nipissing District and last: 1987 Montana Grizzlies football team +[2018-02-13T00:43:15.510] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:43:15.573] [INFO] cheese - inserting 1000 documents. first: Algeria national rugby union team and last: Paul Duerden +[2018-02-13T00:43:15.746] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T00:43:15.791] [INFO] cheese - inserting 1000 documents. first: Portal:University of Oxford/Did you know/12 and last: Dirk I van Brederode +[2018-02-13T00:43:15.804] [INFO] cheese - inserting 1000 documents. first: Ithome pignerata and last: Wikipedia:Articles for deletion/Kevin Schaller +[2018-02-13T00:43:15.845] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:43:15.927] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T00:43:16.030] [INFO] cheese - inserting 1000 documents. first: Portuguese Open and last: List of Aeroflot accidents and incidents in the 1980s +[2018-02-13T00:43:16.095] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:43:16.204] [INFO] cheese - inserting 1000 documents. first: Portal:Indonesia/BOTW/40, 2006 and last: State Route 171 (Virginia pre-1928) +[2018-02-13T00:43:16.275] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T00:43:16.310] [INFO] cheese - inserting 1000 documents. first: War of the Heavenly Horses and last: 2012 Blossom Cup +[2018-02-13T00:43:16.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/faces.bravehost.com and last: Mitchell Recreation Area +[2018-02-13T00:43:16.331] [INFO] cheese - inserting 1000 documents. first: MCEM 3 Submachine gun and last: JASSS +[2018-02-13T00:43:16.390] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T00:43:16.394] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:43:16.399] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:43:16.414] [INFO] cheese - inserting 1000 documents. first: Category:October 1947 events and last: Template:Editnotices/Page/Matt Cecchin +[2018-02-13T00:43:16.495] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:43:16.536] [INFO] cheese - inserting 1000 documents. first: Mt. Pulaski, Illinois and last: St. Stephen's Cathedral (Owensboro, Kentucky) +[2018-02-13T00:43:16.596] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:43:16.692] [INFO] cheese - inserting 1000 documents. first: Brezova and last: Serie noire +[2018-02-13T00:43:16.715] [INFO] cheese - inserting 1000 documents. first: Diplazium pycnocarpon and last: Wikipedia:Articles for deletion/Noncommutative polynomial +[2018-02-13T00:43:16.738] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:43:16.740] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:43:16.784] [INFO] cheese - inserting 1000 documents. first: State Route 171 (Virginia 1923) and last: Serbian clan +[2018-02-13T00:43:16.810] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Matt Stevic and last: Category:Events in Sarajevo +[2018-02-13T00:43:16.827] [INFO] cheese - inserting 1000 documents. first: 1957 Montana Grizzlies football team and last: Ocean Butterflies International Pte Ltd +[2018-02-13T00:43:16.829] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:43:16.860] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:43:16.912] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:43:17.097] [INFO] cheese - inserting 1000 documents. first: Convergent boundaries and last: MV Viking Sky +[2018-02-13T00:43:17.135] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:43:17.168] [INFO] cheese - inserting 1000 documents. first: Category:Romanian Catholics and last: Powerising +[2018-02-13T00:43:17.178] [INFO] cheese - inserting 1000 documents. first: Church-governmental separation in America and last: New Orleans Medical College +[2018-02-13T00:43:17.219] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:43:17.223] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:43:17.333] [INFO] cheese - inserting 1000 documents. first: W23EM-D and last: Annette Robertson +[2018-02-13T00:43:17.345] [INFO] cheese - inserting 1000 documents. first: Ferrisburgh and last: Maurice McLoughlin (tennis) +[2018-02-13T00:43:17.361] [INFO] cheese - inserting 1000 documents. first: Greenwood Cemetery (Tallahassee, Florida) and last: UCI World Cyclo-cross Championships, Men +[2018-02-13T00:43:17.391] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:43:17.416] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:43:17.496] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:43:17.756] [INFO] cheese - inserting 1000 documents. first: Haweswater Aquaduct and last: Enaction +[2018-02-13T00:43:17.821] [INFO] cheese - inserting 1000 documents. first: نیزامی گه‌نجه‌وی and last: Arab thought foundation +[2018-02-13T00:43:17.855] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:43:17.914] [INFO] cheese - inserting 1000 documents. first: Powerbocker and last: Category:ABB Asea Brown Boveri +[2018-02-13T00:43:17.937] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:43:18.054] [INFO] cheese - inserting 1000 documents. first: Gravitational instability theory and last: List of World Transplant Games editions +[2018-02-13T00:43:18.072] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T00:43:18.190] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:43:18.312] [INFO] cheese - inserting 1000 documents. first: Il conformista and last: List of the Roman Catholic cathedrals of the United States +[2018-02-13T00:43:18.339] [INFO] cheese - inserting 1000 documents. first: File:Warszawa - Pałac Tyszkiewiczów 01.jpg and last: Fu Ping +[2018-02-13T00:43:18.450] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T00:43:18.487] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T00:43:18.555] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Aviation/Australian aviation task force and last: Soimu River (Crisul Negru) +[2018-02-13T00:43:18.602] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:43:18.675] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Indonesian communist exiles in Tirana and last: Wikipedia:WikiProject Spam/Local/hulkhoganhistory.weebly.com +[2018-02-13T00:43:18.728] [INFO] cheese - inserting 1000 documents. first: Greg Ritter and last: Alder Plains, Nova Scotia +[2018-02-13T00:43:18.745] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:43:18.803] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T00:43:18.827] [INFO] cheese - inserting 1000 documents. first: Hyundai Unicorns and last: Rene Mauge de Cely +[2018-02-13T00:43:18.847] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:43:18.911] [INFO] cheese - inserting 1000 documents. first: Spanish general election, 1920 and last: Hi de hi +[2018-02-13T00:43:18.913] [INFO] cheese - inserting 1000 documents. first: Huddersfield East (constituency) and last: Ogi, Oita +[2018-02-13T00:43:18.949] [INFO] cheese - inserting 1000 documents. first: Boschertown, Missouri and last: Wikipedia:WikiProject Spam/LinkReports/promotionxprt.com +[2018-02-13T00:43:18.949] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:43:18.967] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:43:19.014] [INFO] cheese - inserting 1000 documents. first: Remi Alvarez and last: Olle Ljungstrom +[2018-02-13T00:43:19.017] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:43:19.059] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T00:43:19.203] [INFO] cheese - inserting 1000 documents. first: File:Texas State Capitol Summer 2005.jpg and last: Category:Discoveries by Takeshi Urata +[2018-02-13T00:43:19.241] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:43:19.244] [INFO] cheese - inserting 1000 documents. first: Confederation Libre des Travailleurs du Tchad and last: Slovenske vzdusne zbrane +[2018-02-13T00:43:19.266] [INFO] cheese - inserting 1000 documents. first: Labdia caudata and last: Chang T'ang +[2018-02-13T00:43:19.270] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:43:19.295] [INFO] cheese - inserting 1000 documents. first: Rock the American Way and last: Jagers in de Sneeuw +[2018-02-13T00:43:19.333] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:43:19.334] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:43:19.399] [INFO] cheese - inserting 1000 documents. first: Naoiri District, Oita and last: Rikken Kokumintō +[2018-02-13T00:43:19.434] [INFO] cheese - inserting 1000 documents. first: Template:Socialist Party of the Valencian Country (1974)/meta/color and last: Category:March 1893 events +[2018-02-13T00:43:19.457] [INFO] cheese - inserting 1000 documents. first: Torsten Haegerstrand and last: Schoenenberg (Schwarzwald) +[2018-02-13T00:43:19.461] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:43:19.515] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:43:19.528] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:43:19.748] [INFO] cheese - inserting 1000 documents. first: Template:Eagles1984DraftPicks and last: Freedom From Fear: The American People in Depression and War, 1929-1945 +[2018-02-13T00:43:19.825] [INFO] cheese - inserting 1000 documents. first: Necula Raducan and last: Zee Cine Award Best Dialogue +[2018-02-13T00:43:19.827] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:43:19.855] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:43:19.896] [INFO] cheese - inserting 1000 documents. first: 2OCB and last: Alcón +[2018-02-13T00:43:19.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tiger Lily (Rupert) and last: Template:2006 Florida Gators football +[2018-02-13T00:43:19.935] [INFO] cheese - inserting 1000 documents. first: Circumorbital scales and last: Virginia Route 88 +[2018-02-13T00:43:19.971] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:43:20.017] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:43:20.063] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:43:20.117] [INFO] cheese - inserting 1000 documents. first: Thû and last: List of lesbian, gay, bisexual or transgender-related films of 2017 +[2018-02-13T00:43:20.168] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:43:20.319] [INFO] cheese - inserting 1000 documents. first: Biological Psychiatry (journal) and last: Raeni kuela +[2018-02-13T00:43:20.380] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:43:20.538] [INFO] cheese - inserting 1000 documents. first: D-54 and last: Pied Shield Bug +[2018-02-13T00:43:20.572] [INFO] cheese - inserting 1000 documents. first: Dev.D (2009 film) and last: Book:Motorsport in New Zealand +[2018-02-13T00:43:20.598] [INFO] cheese - inserting 1000 documents. first: Ivana Střondalová and last: Naughty Boy (disambiguation) +[2018-02-13T00:43:20.604] [INFO] cheese - inserting 1000 documents. first: Virginia Route 86 and last: Template:PKNA +[2018-02-13T00:43:20.608] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T00:43:20.632] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:43:20.701] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:43:20.713] [INFO] cheese - inserting 1000 documents. first: Pekka ja Patka and last: Tuskegee, AL mSA +[2018-02-13T00:43:20.718] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:43:20.771] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:43:20.958] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Pipe Bands articles and last: The Woman's Crusade +[2018-02-13T00:43:21.082] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T00:43:21.211] [INFO] cheese - inserting 1000 documents. first: Finger tapping (piano) and last: BloodClan +[2018-02-13T00:43:21.230] [INFO] cheese - inserting 1000 documents. first: Draft:List of former Maryland state highways (200–399) and last: Rhys Lewis (disambiguation) +[2018-02-13T00:43:21.233] [INFO] cheese - inserting 1000 documents. first: Hatamabad-e Gol Gol and last: Carl Cederström +[2018-02-13T00:43:21.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Magnificent Desolation and last: Portal:Spaceflight/On This Day/20 March +[2018-02-13T00:43:21.255] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:43:21.265] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:43:21.296] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:43:21.315] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:43:21.374] [INFO] cheese - inserting 1000 documents. first: Oxygen/Aux Send and last: 3-coloring +[2018-02-13T00:43:21.432] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:43:21.532] [INFO] cheese - inserting 1000 documents. first: Category:386 establishments by continent and last: Category:New Mexico elections, 1974 +[2018-02-13T00:43:21.584] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:43:21.697] [INFO] cheese - inserting 1000 documents. first: German military administration in occupied Belgium during World War II and last: Gregor Bajde +[2018-02-13T00:43:21.700] [INFO] cheese - inserting 1000 documents. first: Hedwig Von Trapp and last: Extrapolation based molecular systems biology +[2018-02-13T00:43:21.748] [INFO] cheese - inserting 1000 documents. first: Râbniţa sub-district, Transnistria and last: Manjack +[2018-02-13T00:43:21.751] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:43:21.744] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:43:21.801] [INFO] cheese - inserting 1000 documents. first: Arrondissement de Béziers and last: Coster walk +[2018-02-13T00:43:21.828] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:43:21.895] [INFO] cheese - inserting 1000 documents. first: Kananaskis Lakes and last: Baron Cadogan of Reading +[2018-02-13T00:43:21.901] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:43:21.984] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:43:22.014] [INFO] cheese - inserting 1000 documents. first: Category:Ridges of Europe and last: Jean-Paul LeBlanc (politician) +[2018-02-13T00:43:22.053] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:43:22.221] [INFO] cheese - inserting 1000 documents. first: Anelaphus hirtus and last: Portal:India/India Quiz/14 +[2018-02-13T00:43:22.278] [INFO] cheese - inserting 1000 documents. first: Manjack (plant) and last: 中元 +[2018-02-13T00:43:22.347] [INFO] cheese - inserting 1000 documents. first: File:Mimana psp boxart.jpg and last: Template:FMS Scale small +[2018-02-13T00:43:22.359] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:43:22.498] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:43:22.505] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:43:22.547] [INFO] cheese - inserting 1000 documents. first: Pimp walk and last: Ja'farkhan +[2018-02-13T00:43:22.628] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:43:22.708] [INFO] cheese - inserting 1000 documents. first: Baron Parker of Macclesfield and last: 2006 united states elections +[2018-02-13T00:43:22.710] [INFO] cheese - inserting 1000 documents. first: Category:Firefighting in Denmark and last: Geklimon +[2018-02-13T00:43:22.774] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:43:22.774] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:43:23.013] [INFO] cheese - inserting 1000 documents. first: Category:Malta-related lists and last: Sweelinck Conservatorium +[2018-02-13T00:43:23.062] [INFO] cheese - inserting 1000 documents. first: Lithodes galapagensis and last: Herbert Brees +[2018-02-13T00:43:23.080] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:43:23.142] [INFO] cheese - inserting 1000 documents. first: Category:People from the County of Vermilion River and last: Edward Dowell +[2018-02-13T00:43:23.143] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Holne Chase Primary School and last: David M. Camp +[2018-02-13T00:43:23.147] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:43:23.202] [INFO] cheese - inserting 1000 documents. first: Category:Brazilian Naval Aviation and last: Sharin no Kuni +[2018-02-13T00:43:23.207] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:43:23.246] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T00:43:23.279] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:43:23.444] [INFO] cheese - inserting 1000 documents. first: Texas State Highway 348 and last: Action francaise +[2018-02-13T00:43:23.496] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:43:23.513] [INFO] cheese - inserting 1000 documents. first: United states elections 2006 and last: List of tallest structures in Norway +[2018-02-13T00:43:23.625] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:43:23.809] [INFO] cheese - inserting 1000 documents. first: Category:September 1929 events and last: Category:April 1939 events +[2018-02-13T00:43:23.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fengshui.fi and last: Saulnieres +[2018-02-13T00:43:23.896] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:43:23.907] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2011 December 30 and last: Revd Henry Joy Fynes-Clinton +[2018-02-13T00:43:23.913] [INFO] cheese - inserting 1000 documents. first: Species (comics) and last: Wikipedia:Articles for deletion/United Construction Company Inc. +[2018-02-13T00:43:23.940] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 20 Spur (Cartersville) and last: Template:Festival de Gramado Best Director Award +[2018-02-13T00:43:23.950] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:43:24.057] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:43:24.222] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:43:24.262] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T00:43:24.493] [INFO] cheese - inserting 1000 documents. first: Marquise du Plessis-Belliere and last: Birds nest +[2018-02-13T00:43:24.528] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:43:24.620] [INFO] cheese - inserting 1000 documents. first: Ntebogang Secondary School and last: Category:Maratha princely states +[2018-02-13T00:43:24.688] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:43:24.740] [INFO] cheese - inserting 1000 documents. first: Prescription charges and last: Cynthia Kimberlin +[2018-02-13T00:43:24.880] [INFO] cheese - inserting 1000 documents. first: File:Grey Cup 05.svg and last: Category:Preserved steam locomotives of Switzerland +[2018-02-13T00:43:24.945] [INFO] cheese - batch complete in: 1.32 secs +[2018-02-13T00:43:24.987] [INFO] cheese - inserting 1000 documents. first: Hazirim (Candan Ercetin album) and last: Jinmaku Kyugoro +[2018-02-13T00:43:25.003] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T00:43:25.011] [INFO] cheese - inserting 1000 documents. first: File:In the Conservatory - edited.jpg and last: File:Front Cover of Turrican Game Box, May 2014.jpg +[2018-02-13T00:43:25.029] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:43:25.102] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T00:43:25.359] [INFO] cheese - inserting 1000 documents. first: Template:PBB/10939 and last: Category:Southwest Conference football templates +[2018-02-13T00:43:25.411] [INFO] cheese - inserting 1000 documents. first: Gyergyoremete and last: Tauell +[2018-02-13T00:43:25.420] [INFO] cheese - inserting 1000 documents. first: H:FONTS and last: Mizar (Sabotaggio in mare) +[2018-02-13T00:43:25.472] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:43:25.540] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:43:25.632] [INFO] cheese - batch complete in: 1.369 secs +[2018-02-13T00:43:25.651] [INFO] cheese - inserting 1000 documents. first: Passive solar gain and last: Wikipedia:Bots/Requests for approval/TawkerbotTorA +[2018-02-13T00:43:25.730] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:43:25.811] [INFO] cheese - inserting 1000 documents. first: Libby Museum and last: Mulla Morad ibn Ali Khan Tafreshi +[2018-02-13T00:43:25.819] [INFO] cheese - inserting 1000 documents. first: 洋務運動 and last: Director General Environment +[2018-02-13T00:43:26.029] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T00:43:26.030] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T00:43:26.114] [INFO] cheese - inserting 1000 documents. first: Boxer indemnity grant and last: Gilia brecciarum +[2018-02-13T00:43:26.152] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:43:26.251] [INFO] cheese - inserting 1000 documents. first: Catherine Pelham and last: Erebiina +[2018-02-13T00:43:26.391] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:43:26.429] [INFO] cheese - inserting 1000 documents. first: BAT (disambiguation) and last: Category:Architecture databases +[2018-02-13T00:43:26.600] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T00:43:26.907] [INFO] cheese - inserting 1000 documents. first: Liukung Island and last: Vytautas` the Great Church +[2018-02-13T00:43:26.947] [INFO] cheese - inserting 1000 documents. first: File:Vienna Octet 1962 touring Southern Afrtica.jpg and last: John H. Hays +[2018-02-13T00:43:26.996] [INFO] cheese - inserting 1000 documents. first: Director-General Health and last: Kevin McCabe (Sheffield United) +[2018-02-13T00:43:27.004] [INFO] cheese - batch complete in: 1.274 secs +[2018-02-13T00:43:27.031] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T00:43:27.113] [INFO] cheese - inserting 1000 documents. first: List of United States armed forces unit mottoes and last: Category:2017 WNBA season +[2018-02-13T00:43:27.183] [INFO] cheese - inserting 1000 documents. first: Dragan Brnovic and last: Florida Ornithological Society +[2018-02-13T00:43:27.198] [INFO] cheese - batch complete in: 1.168 secs +[2018-02-13T00:43:27.349] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T00:43:27.384] [INFO] cheese - batch complete in: 1.232 secs +[2018-02-13T00:43:27.560] [INFO] cheese - inserting 1000 documents. first: Category:House of Leuchtenberg and last: Template:Canadian election result +[2018-02-13T00:43:27.774] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T00:43:27.944] [INFO] cheese - inserting 1000 documents. first: Category:2014 in Northern Cyprus and last: B-FAST +[2018-02-13T00:43:28.017] [INFO] cheese - inserting 1000 documents. first: Mount Heng (Shanxi) and last: List of Hail Mary's in American football +[2018-02-13T00:43:28.079] [INFO] cheese - batch complete in: 1.047 secs +[2018-02-13T00:43:28.185] [INFO] cheese - inserting 1000 documents. first: Universal Express and last: File:Computeractive issue 263 RGB 150px.jpg +[2018-02-13T00:43:28.185] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T00:43:28.249] [INFO] cheese - inserting 1000 documents. first: Category:Borders of Idaho and last: MA 51 +[2018-02-13T00:43:28.265] [INFO] cheese - inserting 1000 documents. first: Category:Psophodidae and last: File:Tazewell and Peoria Railroad logo.png +[2018-02-13T00:43:28.350] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T00:43:28.409] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T00:43:28.415] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T00:43:28.555] [INFO] cheese - inserting 1000 documents. first: Template:Subatomic particle/symbol/triple top omega and last: Holy Resurrection Church (Kodiak, Alaska) +[2018-02-13T00:43:28.656] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:43:28.676] [INFO] cheese - inserting 1000 documents. first: Category:Islamic organisations based in Finland and last: Haj eilkhani +[2018-02-13T00:43:28.799] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:43:28.964] [INFO] cheese - inserting 1000 documents. first: Kate (Lost) and last: Victoriano Santos Iriarte +[2018-02-13T00:43:28.972] [INFO] cheese - inserting 1000 documents. first: List of San Francisco topics and last: Lo Hecho Esta Hecho (Shakira song) +[2018-02-13T00:43:28.979] [INFO] cheese - inserting 1000 documents. first: File:Texas Northeastern Railroad logo.png and last: Siege of Saint-Suzanne (1083–1086) +[2018-02-13T00:43:28.991] [INFO] cheese - inserting 1000 documents. first: Alcherus, monk of Clairvaux and last: 1925 Major League Baseball season +[2018-02-13T00:43:29.056] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:43:29.068] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:43:29.080] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T00:43:29.083] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:43:29.302] [INFO] cheese - inserting 1000 documents. first: Hoax Slayer and last: List of awards named after governors general of Canada +[2018-02-13T00:43:29.433] [INFO] cheese - inserting 1000 documents. first: End Of America 2011 (marketing) and last: Juan Madariaga +[2018-02-13T00:43:29.513] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:43:29.690] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T00:43:29.742] [INFO] cheese - inserting 1000 documents. first: File:Antique konya turkish 30911.jpg and last: European Short Course Swimming Championships 1998 - Men's 50m Breaststroke +[2018-02-13T00:43:29.874] [INFO] cheese - inserting 1000 documents. first: KFMM and last: Vladimír Palko +[2018-02-13T00:43:29.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Domenic Di Rosa (actor) and last: Category:1226 establishments in Japan +[2018-02-13T00:43:29.950] [INFO] cheese - inserting 1000 documents. first: Ferrari 126C and last: Template (vehicle racing) +[2018-02-13T00:43:30.000] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T00:43:30.001] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T00:43:30.037] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T00:43:30.107] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T00:43:30.536] [INFO] cheese - inserting 1000 documents. first: File:2Cellos In2ition.jpg and last: Belt maker +[2018-02-13T00:43:30.635] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T00:43:30.717] [INFO] cheese - inserting 1000 documents. first: Category:The Axis of Awesome albums and last: Category:Wikipedia articles in need of updating from January 2012 +[2018-02-13T00:43:30.726] [INFO] cheese - inserting 1000 documents. first: Category:1999 in the Turks and Caicos Islands and last: New Hanover County School District +[2018-02-13T00:43:30.778] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:43:30.801] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T00:43:30.857] [INFO] cheese - inserting 1000 documents. first: European Short Course Swimming Championships 1998 - Men's 50m Backstroke and last: Wikipedia:Sockpuppet investigations/Canto2009 +[2018-02-13T00:43:30.868] [INFO] cheese - inserting 1000 documents. first: If I Ran The Circus and last: MBFC +[2018-02-13T00:43:30.961] [INFO] cheese - inserting 1000 documents. first: KABI (AM) and last: File:Changes in US money supply 1960-2007.gif +[2018-02-13T00:43:30.969] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:43:30.989] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T00:43:31.039] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T00:43:31.144] [INFO] cheese - inserting 1000 documents. first: Belt-maker and last: File:Chopper Read - Interview with a Madman.jpg +[2018-02-13T00:43:31.195] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:43:31.455] [INFO] cheese - inserting 1000 documents. first: Template:Lang-tam and last: Xyelodontophis +[2018-02-13T00:43:31.537] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles needing clarification from January 2012 and last: Bellarine Wetlands Important Bird Area +[2018-02-13T00:43:31.545] [INFO] cheese - inserting 1000 documents. first: Psychic Friends and last: Prairie City, California +[2018-02-13T00:43:31.550] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:43:31.618] [INFO] cheese - inserting 1000 documents. first: Louis Coppersmith and last: Pisote +[2018-02-13T00:43:31.645] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:43:31.651] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:43:31.733] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:43:31.835] [INFO] cheese - inserting 1000 documents. first: Category:Alacalufan languages and last: Portal:Louisville/On this day.../April 11 +[2018-02-13T00:43:31.973] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T00:43:32.097] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mathematics Collaboration of the Month and last: Template:POTD protected/2014-05-21 +[2018-02-13T00:43:32.190] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T00:43:32.289] [INFO] cheese - inserting 1000 documents. first: 2016 TaxSlayer Bowl (disambiguation) and last: The Music Hole +[2018-02-13T00:43:32.334] [INFO] cheese - inserting 1000 documents. first: Lancaster by-election, 1928 and last: Harold Bull +[2018-02-13T00:43:32.391] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T00:43:32.451] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:43:32.461] [INFO] cheese - inserting 1000 documents. first: Iron vest and last: 1961 in Irish television +[2018-02-13T00:43:32.528] [INFO] cheese - inserting 1000 documents. first: Sawback angelshark and last: Seacoast Waldorf School +[2018-02-13T00:43:32.556] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:43:32.600] [INFO] cheese - inserting 1000 documents. first: Alenka Godec and last: Wikipedia:WikiProject U.S. Roads/Washington/Directional signage +[2018-02-13T00:43:32.600] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:43:32.671] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:43:32.717] [INFO] cheese - inserting 1000 documents. first: Malton Airfield and last: Engenius +[2018-02-13T00:43:32.765] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:43:32.830] [INFO] cheese - inserting 1000 documents. first: Category:Paraguayan male fencers and last: File:DYS F.C. Logo.png +[2018-02-13T00:43:32.909] [INFO] cheese - inserting 1000 documents. first: Heartbreaker (disambiguation) and last: File:Setsugekka (Dears).jpg +[2018-02-13T00:43:32.915] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:43:32.971] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:43:33.368] [INFO] cheese - inserting 1000 documents. first: Pierre Maguelon and last: Wikipedia:United States Education Program/Courses/Adolescent Literature Spring 2012 (Adrianne Wadewitz)/Grading +[2018-02-13T00:43:33.403] [INFO] cheese - inserting 1000 documents. first: State Route 838 (Virginia pre-1933) and last: Aeshna isosceles +[2018-02-13T00:43:33.511] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:43:33.635] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T00:43:33.791] [INFO] cheese - inserting 1000 documents. first: Manila, Arizona and last: File:Bitbucket UI.png +[2018-02-13T00:43:33.801] [INFO] cheese - inserting 1000 documents. first: Iftimia River and last: Template:User html-1 +[2018-02-13T00:43:33.802] [INFO] cheese - inserting 1000 documents. first: List of Southern California transit agencies and last: Treaty Of Portsmouth +[2018-02-13T00:43:33.875] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T00:43:33.899] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T00:43:33.946] [INFO] cheese - batch complete in: 1.275 secs +[2018-02-13T00:43:34.010] [INFO] cheese - inserting 1000 documents. first: Presaddfed and last: Palakol (Assembly constituency) +[2018-02-13T00:43:34.107] [INFO] cheese - batch complete in: 1.342 secs +[2018-02-13T00:43:34.244] [INFO] cheese - inserting 1000 documents. first: Aeolosaurus rionegrinus and last: Category:A.C. Monopoli +[2018-02-13T00:43:34.274] [INFO] cheese - inserting 1000 documents. first: File:Tithonus x files.jpg and last: East Glacier Park, MT +[2018-02-13T00:43:34.296] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:43:34.339] [INFO] cheese - inserting 1000 documents. first: Template:Carlton AFL Women's current squad and last: Peachy Harrison +[2018-02-13T00:43:34.372] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:43:34.388] [INFO] cheese - inserting 1000 documents. first: Treaty Of San Francisco and last: Iki-Burul'skiy Raion +[2018-02-13T00:43:34.447] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:43:34.483] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:43:34.783] [INFO] cheese - inserting 1000 documents. first: Template:Without Fear Movement/meta/color and last: New Castle, Ohio +[2018-02-13T00:43:34.843] [INFO] cheese - inserting 1000 documents. first: East African Campaign (WWI) and last: John R. Chambliss, Jr. +[2018-02-13T00:43:34.845] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:43:34.849] [INFO] cheese - inserting 1000 documents. first: File:KNUV logo.jpg and last: KyXy +[2018-02-13T00:43:34.882] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:43:34.912] [INFO] cheese - inserting 1000 documents. first: 2017 UCI Cyclo-cross World Championships and last: Bovina Center, New York +[2018-02-13T00:43:34.922] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:43:34.948] [INFO] cheese - inserting 1000 documents. first: D-finite function and last: Battle of the Fields of Cato +[2018-02-13T00:43:34.976] [INFO] cheese - inserting 1000 documents. first: Iki-Burul'ski Raion and last: Princes of Monaco family tree +[2018-02-13T00:43:35.007] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:43:35.074] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:43:35.085] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:43:35.245] [INFO] cheese - inserting 1000 documents. first: Leon Tomșa and last: Category:2014 Toulon Tournament +[2018-02-13T00:43:35.279] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:43:35.391] [INFO] cheese - inserting 1000 documents. first: Template:Infobox dim/sandbox and last: La Sexta +[2018-02-13T00:43:35.406] [INFO] cheese - inserting 1000 documents. first: Amplitude-comparison monopulse and last: Flashcube +[2018-02-13T00:43:35.437] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:43:35.486] [INFO] cheese - inserting 1000 documents. first: Nakatsuru and last: Asheville Redefines Transit +[2018-02-13T00:43:35.503] [INFO] cheese - inserting 1000 documents. first: 2001 IIHF Asian Oceanic U18 Championship and last: Melamkurkurra +[2018-02-13T00:43:35.507] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:43:35.519] [INFO] cheese - inserting 1000 documents. first: NSB El 1 and last: Winnicummet +[2018-02-13T00:43:35.547] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:43:35.575] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:43:35.599] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:43:35.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sglearntodrive.com and last: Siberian Cypress +[2018-02-13T00:43:35.691] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:43:35.771] [INFO] cheese - inserting 1000 documents. first: Charles A. Robinson Jr. and last: Israeli Ambassador to China +[2018-02-13T00:43:35.806] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:43:35.933] [INFO] cheese - inserting 1000 documents. first: Magicube and last: Willesden West (constituency) +[2018-02-13T00:43:35.995] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:43:36.111] [INFO] cheese - inserting 1000 documents. first: Winicumet and last: Wikipedia:Suspected sock puppets/RaderZer0 +[2018-02-13T00:43:36.143] [INFO] cheese - inserting 1000 documents. first: Trofeo Linea and last: Sergey Ivanov (disambiguation) +[2018-02-13T00:43:36.200] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:43:36.223] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:43:36.262] [INFO] cheese - inserting 1000 documents. first: Only just begun and last: Women in the First World War +[2018-02-13T00:43:36.265] [INFO] cheese - inserting 1000 documents. first: Emanuel Mensdorff-Pouilly and last: Laganski +[2018-02-13T00:43:36.297] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches in Adelaide and last: Sir Oswald Mosley, 2nd Baronet, of Rolleston +[2018-02-13T00:43:36.335] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:43:36.338] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:43:36.396] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:43:36.657] [INFO] cheese - inserting 1000 documents. first: The Use of Ashes and last: Wikipedia:Articles for deletion/Uncle Jimbo +[2018-02-13T00:43:36.751] [INFO] cheese - inserting 1000 documents. first: Pleșa River (Geoagiu) and last: Marco Antonio (footballer) +[2018-02-13T00:43:36.750] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:43:36.824] [INFO] cheese - inserting 1000 documents. first: Category:Hieronymite Order and last: Edgars Erins +[2018-02-13T00:43:36.835] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:43:36.916] [INFO] cheese - inserting 1000 documents. first: Bienvenido “Bones” Banez, Jr. and last: File:Ninotitlecard.jpg +[2018-02-13T00:43:36.919] [INFO] cheese - inserting 1000 documents. first: Laganskii and last: For the Good Times (song) +[2018-02-13T00:43:36.926] [INFO] cheese - inserting 1000 documents. first: Dosunmu and last: Wikipedia:Articles for deletion/Andrew Almanza(Socialite) +[2018-02-13T00:43:36.994] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:43:37.052] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:43:37.033] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:43:37.122] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:43:37.262] [INFO] cheese - inserting 1000 documents. first: Havadan Kuelliyesi and last: File:Qsst.jpg +[2018-02-13T00:43:37.303] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:43:37.518] [INFO] cheese - inserting 1000 documents. first: Georgia State Highway 323 and last: Virginia Route 895 +[2018-02-13T00:43:37.561] [INFO] cheese - inserting 1000 documents. first: Erins and last: John Geree +[2018-02-13T00:43:37.564] [INFO] cheese - inserting 1000 documents. first: Brora Rangers and last: Godfrey Stephens +[2018-02-13T00:43:37.577] [INFO] cheese - inserting 1000 documents. first: Category:Swiss male handball players and last: CPD-lyase +[2018-02-13T00:43:37.578] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:43:37.623] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:43:37.637] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:43:37.669] [INFO] cheese - inserting 1000 documents. first: Zhongguo Dalu and last: Sumru Cortoglu +[2018-02-13T00:43:37.635] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:43:37.710] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:43:37.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of folk punk bands and last: Men's hockey Canada 2010 olympic team +[2018-02-13T00:43:37.820] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:43:37.971] [INFO] cheese - inserting 1000 documents. first: Fabrizio Angileri and last: Category:October 1975 sports events +[2018-02-13T00:43:37.989] [INFO] cheese - inserting 1000 documents. first: Tapalque Partido and last: Corporacion Nacional del Cobre +[2018-02-13T00:43:38.005] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:43:38.027] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:43:38.055] [INFO] cheese - inserting 1000 documents. first: MBR to VBR interface and last: Barry O'Keefe +[2018-02-13T00:43:38.076] [INFO] cheese - inserting 1000 documents. first: Category:Roller derby in Ireland and last: Cyclone Terry-Danae +[2018-02-13T00:43:38.153] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:43:38.186] [INFO] cheese - inserting 1000 documents. first: VA-895 and last: Lesser housefly +[2018-02-13T00:43:38.237] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:43:38.292] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:43:38.391] [INFO] cheese - inserting 1000 documents. first: Plesna (Cheb District) and last: Ivan Babic +[2018-02-13T00:43:38.397] [INFO] cheese - inserting 1000 documents. first: Category:1975 sports events by month and last: Zhukov, Yuri +[2018-02-13T00:43:38.442] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:43:38.444] [INFO] cheese - inserting 1000 documents. first: The Drumhead (Star Trek: The Next Generation) and last: Template:Northampton Town F.C. +[2018-02-13T00:43:38.452] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:43:38.632] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:43:38.768] [INFO] cheese - inserting 1000 documents. first: Eugeniya Shelgunova and last: Lim Jong-Chun +[2018-02-13T00:43:38.829] [INFO] cheese - inserting 1000 documents. first: Baena, Cordoba and last: Moenchrot Abbey +[2018-02-13T00:43:38.843] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:43:38.853] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:43:38.951] [INFO] cheese - inserting 1000 documents. first: Portal:American Civil War/American Civil War news/41 and last: Wikipedia:Miscellany for deletion/User:HurricaneCraze32/Hurricane Dolly (1996) +[2018-02-13T00:43:38.968] [INFO] cheese - inserting 1000 documents. first: Charles Bouillaud and last: Pangdatshang Rapga +[2018-02-13T00:43:39.026] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:43:39.044] [INFO] cheese - inserting 1000 documents. first: Portal:Grand Canyon/box-footer and last: Stephanie Alnaber +[2018-02-13T00:43:39.062] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:43:39.153] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:43:39.498] [INFO] cheese - inserting 1000 documents. first: Lue (language) and last: O făclie de Paște +[2018-02-13T00:43:39.550] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:43:39.676] [INFO] cheese - inserting 1000 documents. first: H. bakeri and last: Wanderer Puppchen +[2018-02-13T00:43:39.786] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T00:43:39.838] [INFO] cheese - inserting 1000 documents. first: Vispavarma and last: United States under William McKinley +[2018-02-13T00:43:39.871] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:43:39.876] [INFO] cheese - inserting 1000 documents. first: Rapga Pandatsang and last: Nijneilimskii District +[2018-02-13T00:43:39.945] [INFO] cheese - inserting 1000 documents. first: Smoothback angelshark and last: Stuart Zagnit +[2018-02-13T00:43:39.943] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T00:43:40.035] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T00:43:40.136] [INFO] cheese - inserting 1000 documents. first: Lim Kye-Sook and last: Wikipedia:Articles for deletion/Netguide (disambiguation) +[2018-02-13T00:43:40.168] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Falconina and last: Category:FC Stumbras managers +[2018-02-13T00:43:40.197] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:43:40.198] [INFO] cheese - batch complete in: 1.355 secs +[2018-02-13T00:43:40.209] [INFO] cheese - inserting 1000 documents. first: DDG-68 and last: Thorold baronets +[2018-02-13T00:43:40.286] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:43:40.415] [INFO] cheese - inserting 1000 documents. first: File:Idhaya Thamarai DVD cover.jpg and last: Wentworth, Durban, KwaZulu-Natal +[2018-02-13T00:43:40.418] [INFO] cheese - inserting 1000 documents. first: Shyla Fox and last: Happily Ever After (2004 film) +[2018-02-13T00:43:40.471] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:43:40.473] [INFO] cheese - inserting 1000 documents. first: Lloyd Smith (chemist) and last: Category:Films set in Saga Prefecture +[2018-02-13T00:43:40.480] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:43:40.483] [INFO] cheese - inserting 1000 documents. first: 1994 VS of Chicago - Singles and last: Baby It's Cold Outside/Baby Please Come Home +[2018-02-13T00:43:40.513] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:43:40.559] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:43:40.605] [INFO] cheese - inserting 1000 documents. first: List of Saga characters and last: Squilla empusa +[2018-02-13T00:43:40.681] [INFO] cheese - inserting 1000 documents. first: Marie Moore and last: Castellanos, Juan de +[2018-02-13T00:43:40.712] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:43:40.829] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:43:40.992] [INFO] cheese - inserting 1000 documents. first: Template:Quail-2-2016 and last: Bedford-Northampton line +[2018-02-13T00:43:41.034] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:43:41.048] [INFO] cheese - inserting 1000 documents. first: Category:Chile–United Kingdom relations and last: File:Acdetroittc.jpg +[2018-02-13T00:43:41.088] [INFO] cheese - inserting 1000 documents. first: File:Layla riff.PNG and last: Boris Elkis +[2018-02-13T00:43:41.130] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Archdiocese of Thanh-Pho Ho Chi Minh and last: Aindreas +[2018-02-13T00:43:41.166] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:43:41.188] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:43:41.194] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:43:41.312] [INFO] cheese - inserting 1000 documents. first: Yemişçi Hasan Pasha and last: A Dictionary of Christian Biography, Literature, Sects and Doctrines +[2018-02-13T00:43:41.425] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T00:43:41.623] [INFO] cheese - inserting 1000 documents. first: Vittangi and last: Koklax +[2018-02-13T00:43:41.649] [INFO] cheese - inserting 1000 documents. first: Limnognathiidae and last: Arena Maipú +[2018-02-13T00:43:41.659] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:43:41.704] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:43:41.755] [INFO] cheese - inserting 1000 documents. first: Template:Energy production/doc and last: Aviation Electronics +[2018-02-13T00:43:41.779] [INFO] cheese - inserting 1000 documents. first: Frau Stahlbaum and last: Wikipedia:WikiProject Spam/Local/marexspectron.com +[2018-02-13T00:43:41.819] [INFO] cheese - inserting 1000 documents. first: File:WestSide ToshikoMarianoQuartet.jpg and last: Norden Farm Centre for the Arts +[2018-02-13T00:43:41.825] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:43:41.830] [INFO] cheese - batch complete in: 1.117 secs +[2018-02-13T00:43:41.892] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:43:41.893] [INFO] cheese - inserting 1000 documents. first: Tipula nubeculosa and last: There Must Be More to Love Than This +[2018-02-13T00:43:41.970] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:43:41.981] [INFO] cheese - inserting 1000 documents. first: Huntsville massacre and last: Mount Wai`ale`ale +[2018-02-13T00:43:42.031] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:43:42.226] [INFO] cheese - inserting 1000 documents. first: Fox–Wright function and last: Category:Equestrian at the 2000 Summer Olympics +[2018-02-13T00:43:42.231] [INFO] cheese - inserting 1000 documents. first: Category:Episcopal churches in the United Kingdom and last: Category:1871 establishments in South Africa +[2018-02-13T00:43:42.266] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:43:42.277] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:43:42.315] [INFO] cheese - inserting 1000 documents. first: Gursu and last: Splugen +[2018-02-13T00:43:42.343] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:43:42.377] [INFO] cheese - inserting 1000 documents. first: Vanuatu scrubfowl and last: Jungle Bush Quail +[2018-02-13T00:43:42.393] [INFO] cheese - inserting 1000 documents. first: Wearily and last: Ed Nicholson +[2018-02-13T00:43:42.437] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:43:42.450] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:43:42.469] [INFO] cheese - inserting 1000 documents. first: Bare Island and last: Pokémon Collectible Card Game +[2018-02-13T00:43:42.542] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:43:42.561] [INFO] cheese - inserting 1000 documents. first: J. P. Farrell and last: Lapta Turk Birligi S.K. +[2018-02-13T00:43:42.581] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:43:42.609] [INFO] cheese - inserting 1000 documents. first: Holy Trinity Church (Washington, D.C.) and last: Cubs-Mets rivalry +[2018-02-13T00:43:42.694] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:43:42.855] [INFO] cheese - inserting 1000 documents. first: List of copy protection schemes and last: Wikipedia:Articles for deletion/Elizabethtown Christian Academy +[2018-02-13T00:43:42.910] [INFO] cheese - inserting 1000 documents. first: Harvinder "Harry" Anand and last: Gistain, Huesca +[2018-02-13T00:43:42.943] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:43:42.963] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:43:43.059] [INFO] cheese - inserting 1000 documents. first: Harrisburg-York-Lebanon, PA Combined Statistical Area and last: Lee Su-Hwan (footballer) +[2018-02-13T00:43:43.064] [INFO] cheese - inserting 1000 documents. first: Custody (Law & Order) and last: Wikipedia:WikiProject Spam/LinkReports/lasinfoniedorphee.com +[2018-02-13T00:43:43.251] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:43:43.254] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T00:43:43.276] [INFO] cheese - inserting 1000 documents. first: Category:Earth observation satellites of Japan and last: Cytestrol acetate +[2018-02-13T00:43:43.353] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:43:43.356] [INFO] cheese - inserting 1000 documents. first: Winton Turnbull and last: Yuzaki Station +[2018-02-13T00:43:43.393] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:43:43.556] [INFO] cheese - inserting 1000 documents. first: Ockrilla and last: Charles Beigbeder +[2018-02-13T00:43:43.587] [INFO] cheese - inserting 1000 documents. first: File:Austere cover.jpg and last: SRVUSD +[2018-02-13T00:43:43.664] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:43:43.683] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T00:43:43.783] [INFO] cheese - inserting 1000 documents. first: Andre Obami-Itou and last: Category:Economy of El Paso, Texas +[2018-02-13T00:43:43.822] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:43:43.828] [INFO] cheese - inserting 1000 documents. first: Onyaanya Constituency and last: Frank Verpillat +[2018-02-13T00:43:43.887] [INFO] cheese - inserting 1000 documents. first: Word Is Out (Kylie Minogue song) and last: Category:March 1855 events +[2018-02-13T00:43:43.955] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:43:44.021] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:43:44.094] [INFO] cheese - inserting 1000 documents. first: Charlotte Moore (disambiguation) and last: Francavilla Fontana railway station +[2018-02-13T00:43:44.164] [INFO] cheese - inserting 1000 documents. first: Karadordevic and last: Military District of Odenburg +[2018-02-13T00:43:44.170] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T00:43:44.213] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:43:44.367] [INFO] cheese - inserting 1000 documents. first: Beris vallata and last: NRG (rock band) +[2018-02-13T00:43:44.435] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:43:44.471] [INFO] cheese - inserting 1000 documents. first: Category:March 1854 events and last: Jan Van Dyke +[2018-02-13T00:43:44.511] [INFO] cheese - inserting 1000 documents. first: Alexander De Croo and last: Clairton-Glassport Bridge +[2018-02-13T00:43:44.519] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:43:44.556] [INFO] cheese - inserting 1000 documents. first: Imperfecta-Imperfect and last: Ship Black Warrior +[2018-02-13T00:43:44.565] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:43:44.607] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T00:43:44.718] [INFO] cheese - inserting 1000 documents. first: Natarajan Pandiyan and last: Poonam Mahajan Rao +[2018-02-13T00:43:44.741] [INFO] cheese - inserting 1000 documents. first: El Puerto de Santa Maria, Spain and last: Civil unions in England +[2018-02-13T00:43:44.794] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:43:44.813] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:43:44.917] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Everton and last: Minut (angle) +[2018-02-13T00:43:44.971] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:43:44.980] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2016 December 22 and last: Category:2002 in Tuvaluan football +[2018-02-13T00:43:45.015] [INFO] cheese - inserting 1000 documents. first: Aleksei Trinitatsky and last: File:Frank Mazzei picture.png +[2018-02-13T00:43:45.058] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:43:45.094] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:43:45.104] [INFO] cheese - inserting 1000 documents. first: Diego de Almágro and last: Kid Flash (Bart Allen) +[2018-02-13T00:43:45.125] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1980 Summer Olympics – Women's 100 metre backstroke and last: File:Bulletin of the center for childrens books.gif +[2018-02-13T00:43:45.169] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:43:45.169] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:43:45.232] [INFO] cheese - inserting 1000 documents. first: Silver Bear (disambiguation) and last: File:Dicossato.jpg +[2018-02-13T00:43:45.281] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:43:45.378] [INFO] cheese - inserting 1000 documents. first: Late Gravettian and last: Royal Bengal Rahashya (disambiguation) +[2018-02-13T00:43:45.491] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:43:45.519] [INFO] cheese - inserting 1000 documents. first: Gunsche and last: Smilovice (Frydek-Mistek District) +[2018-02-13T00:43:45.554] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:43:45.690] [INFO] cheese - inserting 1000 documents. first: File:Charles Rood Keeran.png and last: Vladislav Kadyrov +[2018-02-13T00:43:45.932] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T00:43:46.032] [INFO] cheese - inserting 1000 documents. first: Robert Barnard and last: Metzengerstein +[2018-02-13T00:43:46.180] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T00:43:46.217] [INFO] cheese - inserting 1000 documents. first: Argyrotaenia rufina and last: I. K. Gujral Ministry +[2018-02-13T00:43:46.347] [INFO] cheese - inserting 1000 documents. first: Royal Bodyguard (disambiguation) and last: US Ambassador to Malaysia +[2018-02-13T00:43:46.354] [INFO] cheese - inserting 1000 documents. first: Komancza and last: Chiscas, Boyaca +[2018-02-13T00:43:46.370] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T00:43:46.413] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:43:46.452] [INFO] cheese - batch complete in: 0.961 secs +[2018-02-13T00:43:46.690] [INFO] cheese - inserting 1000 documents. first: Vladislav Qədirov and last: Bullneck Road +[2018-02-13T00:43:46.760] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:43:46.803] [INFO] cheese - inserting 1000 documents. first: Testosterone dipropanoate and last: Sexlessness +[2018-02-13T00:43:46.839] [INFO] cheese - inserting 1000 documents. first: Wartsila-Sulzer 14RTFLEX96-C and last: David Luckwell +[2018-02-13T00:43:46.883] [INFO] cheese - batch complete in: 1.825 secs +[2018-02-13T00:43:46.902] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:43:46.944] [INFO] cheese - inserting 1000 documents. first: Break the Spell Tour and last: Category:Window manufacturers +[2018-02-13T00:43:46.997] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:43:46.999] [INFO] cheese - inserting 1000 documents. first: Second Atal Bihari Vajpayee Ministry and last: Chrysoprasis para +[2018-02-13T00:43:47.070] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:43:47.192] [INFO] cheese - inserting 1000 documents. first: USS Cape Johnson and last: Eid Al-Adha +[2018-02-13T00:43:47.239] [INFO] cheese - inserting 1000 documents. first: Chris Morley and last: Template:Hayden +[2018-02-13T00:43:47.262] [INFO] cheese - batch complete in: 1.082 secs +[2018-02-13T00:43:47.284] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:43:47.318] [INFO] cheese - inserting 1000 documents. first: Saskatoon Police Department and last: Template:Japan-artistic-gymnastics-bio-stub +[2018-02-13T00:43:47.410] [INFO] cheese - inserting 1000 documents. first: Simon and Martina Stawski and last: Human rights reports on 2011-2012 Bahriani uprising +[2018-02-13T00:43:47.408] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:43:47.526] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:43:47.771] [INFO] cheese - inserting 1000 documents. first: Chrysoprasis tendira and last: Template:Workers' Party of Belgium/meta/color +[2018-02-13T00:43:47.775] [INFO] cheese - inserting 1000 documents. first: Inverted vee antenna and last: Pavel Reznicek +[2018-02-13T00:43:47.819] [INFO] cheese - inserting 1000 documents. first: Alison Lapper Pregnant and last: Lamelekh seal +[2018-02-13T00:43:47.825] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:43:47.883] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:43:47.945] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:43:48.153] [INFO] cheese - inserting 1000 documents. first: File:Tokyo Nodosan.jpg and last: Сергеи Уасыл-иҧа Багаҧшь +[2018-02-13T00:43:48.242] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:43:48.269] [INFO] cheese - inserting 1000 documents. first: File:Jury at California State Fair.jpeg and last: Birectified Dodecahedron +[2018-02-13T00:43:48.282] [INFO] cheese - inserting 1000 documents. first: 1998 Goodwill Games and last: New River lagoon +[2018-02-13T00:43:48.327] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:43:48.377] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T00:43:48.584] [INFO] cheese - inserting 1000 documents. first: Colegio Aleman Cuauhtemoc Hank and last: Sir John Evelyn, 1st Baronet, of Godstone +[2018-02-13T00:43:48.587] [INFO] cheese - inserting 1000 documents. first: Tommy Banks (footballer) and last: File:CaltechNeuroChip.jpg +[2018-02-13T00:43:48.659] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:43:48.663] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:43:48.858] [INFO] cheese - inserting 1000 documents. first: Alan Šulc and last: Wikipedia:Articles for deletion/Task Squid +[2018-02-13T00:43:48.914] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:43:48.914] [INFO] cheese - inserting 1000 documents. first: Bassoon concerto in F major op. 75 J.127 (1811 / revised 1822) and last: Joseph boardman +[2018-02-13T00:43:49.010] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:43:49.022] [INFO] cheese - inserting 1000 documents. first: Vaughan-Williams and Tavener and last: University of California, Davis Library +[2018-02-13T00:43:49.117] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:43:49.235] [INFO] cheese - inserting 1000 documents. first: Jay Nady and last: File:GT Choicedive.jpg +[2018-02-13T00:43:49.237] [INFO] cheese - inserting 1000 documents. first: Alan Marshall (author) and last: Ryan Callus +[2018-02-13T00:43:49.356] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:43:49.423] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:43:49.606] [INFO] cheese - inserting 1000 documents. first: Koruluk Dam and last: The Scholar Gypsy +[2018-02-13T00:43:49.697] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T00:43:49.770] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/vbulletin.comhttp and last: NEAR FM 101.6FM +[2018-02-13T00:43:49.841] [INFO] cheese - inserting 1000 documents. first: Wayne State University Libraries and last: SUD scale +[2018-02-13T00:43:49.845] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T00:43:49.932] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:43:49.939] [INFO] cheese - inserting 1000 documents. first: Ricardo Passano and last: EUFOR RCA +[2018-02-13T00:43:50.016] [INFO] cheese - inserting 1000 documents. first: Saxifrage family and last: Patent of toleration +[2018-02-13T00:43:50.016] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:43:50.083] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:43:50.215] [INFO] cheese - inserting 1000 documents. first: File:Virginia House Drawing Room.jpg and last: Tökszölö +[2018-02-13T00:43:50.222] [INFO] cheese - inserting 1000 documents. first: Silver Recruiter Badge and last: County Route 689 Spur (Middlesex County, New Jersey) +[2018-02-13T00:43:50.270] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:43:50.281] [INFO] cheese - inserting 1000 documents. first: Myelois ampliatella and last: Category:Finland women's national football team navigational boxes +[2018-02-13T00:43:50.296] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:43:50.354] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:43:50.546] [INFO] cheese - inserting 1000 documents. first: They Said That Hell's Not Hot and last: Guenther Victor, Prince of Schwarzburg +[2018-02-13T00:43:50.578] [INFO] cheese - inserting 1000 documents. first: Route 168 (New Jersey) and last: HMS Orwell (G98) +[2018-02-13T00:43:50.585] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:43:50.660] [INFO] cheese - inserting 1000 documents. first: Denise Lee Richards and last: Humphrey Lloyd (by 1498-1562 or later) +[2018-02-13T00:43:50.675] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:43:50.735] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:43:50.741] [INFO] cheese - inserting 1000 documents. first: Category:France national football team navigational boxes and last: William Hervey (disambiguation) +[2018-02-13T00:43:50.792] [INFO] cheese - inserting 1000 documents. first: Hummelfjell and last: Taxandria inundata +[2018-02-13T00:43:50.808] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:43:50.817] [INFO] cheese - inserting 1000 documents. first: Tokszolo and last: Template:Julio Medem +[2018-02-13T00:43:50.836] [INFO] cheese - inserting 1000 documents. first: Spencer-Smith baronets and last: Tension (band) +[2018-02-13T00:43:50.909] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:43:51.002] [INFO] cheese - batch complete in: 4.118 secs +[2018-02-13T00:43:51.016] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:43:51.359] [INFO] cheese - inserting 1000 documents. first: Silver Berry (Edmonton) and last: Nue Propriete +[2018-02-13T00:43:51.409] [INFO] cheese - inserting 1000 documents. first: Hashmatabad and last: Telmário de Araújo Sacramento +[2018-02-13T00:43:51.411] [INFO] cheese - inserting 1000 documents. first: Fritz plaumann entomological museum and last: Template:User mai-2 +[2018-02-13T00:43:51.420] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:43:51.445] [INFO] cheese - inserting 1000 documents. first: Walter Long (MP 1701–1702) and last: Northern Barred Woodcreeper +[2018-02-13T00:43:51.516] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:43:51.528] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:43:51.527] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:43:51.778] [INFO] cheese - inserting 1000 documents. first: Kelenfoeld and last: Rasca Mare River +[2018-02-13T00:43:51.834] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:43:52.032] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Dvina Vitebsk and last: Maravilha, Santa Catarina +[2018-02-13T00:43:52.058] [INFO] cheese - inserting 1000 documents. first: Hoffmanns's Woodcreeper and last: Yukiko Okamoto (athlete) +[2018-02-13T00:43:52.159] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:43:52.179] [INFO] cheese - batch complete in: 1.162 secs +[2018-02-13T00:43:52.230] [INFO] cheese - inserting 1000 documents. first: Guilsborough School and Technology College and last: Cathal O Murchadha +[2018-02-13T00:43:52.300] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:43:52.353] [INFO] cheese - inserting 1000 documents. first: Aquidaba (disambiguation) and last: Korntal station +[2018-02-13T00:43:52.429] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T00:43:52.438] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flightsim.com and last: Eleanor Perry +[2018-02-13T00:43:52.510] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T00:43:52.567] [INFO] cheese - inserting 1000 documents. first: Southern Antpipit and last: Sula Cicadabird +[2018-02-13T00:43:52.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Agapiméno Mou Gardoúmpi and last: T.S. Nayar +[2018-02-13T00:43:52.604] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:43:52.670] [INFO] cheese - batch complete in: 1.668 secs +[2018-02-13T00:43:52.774] [INFO] cheese - inserting 1000 documents. first: Nova Erechim and last: Aechmea 'Foster's Freckles' +[2018-02-13T00:43:52.793] [INFO] cheese - inserting 1000 documents. first: Associacao de Futebol do Porto and last: File:Monochrome Tokyopop.jpg +[2018-02-13T00:43:52.821] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:43:52.866] [INFO] cheese - inserting 1000 documents. first: Thymopides grobovi and last: List of NYCB 2010 Nutcracker performances +[2018-02-13T00:43:52.910] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:43:52.950] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:43:52.989] [INFO] cheese - inserting 1000 documents. first: Cosmo Con and last: King Simeon +[2018-02-13T00:43:53.112] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:43:53.205] [INFO] cheese - inserting 1000 documents. first: Stout-billed Cuckooshrike and last: Category:Alpine skiers at the 1990 Asian Winter Games +[2018-02-13T00:43:53.254] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:43:53.369] [INFO] cheese - inserting 1000 documents. first: Latitude 17 degrees N and last: Generalized valence bond methods +[2018-02-13T00:43:53.427] [INFO] cheese - inserting 1000 documents. first: File:Spot The Video Game Cover.jpg and last: Solocisquama +[2018-02-13T00:43:53.439] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:43:53.516] [INFO] cheese - inserting 1000 documents. first: NYCB 2010 Nutcracker performances and last: Template:Did you know nominations/Tiang language +[2018-02-13T00:43:53.554] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Molotra and last: Rio Raj +[2018-02-13T00:43:53.557] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:43:53.642] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:43:53.670] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T00:43:53.893] [INFO] cheese - inserting 1000 documents. first: Troitskiy District and last: Wyoming Transportation Museum +[2018-02-13T00:43:53.898] [INFO] cheese - inserting 1000 documents. first: Category:Competitors at the 1990 Asian Winter Games and last: CapMan +[2018-02-13T00:43:53.981] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:43:53.982] [INFO] cheese - inserting 1000 documents. first: Category:Information technology companies of Russia and last: Emilio Gutierrez Caba +[2018-02-13T00:43:53.984] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:43:54.111] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:43:54.292] [INFO] cheese - inserting 1000 documents. first: Solar eclipse of June 22, 2066 and last: Listed buildings in Barrow-in-Furness +[2018-02-13T00:43:54.302] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Shubhamshevade and last: File:SacHrtLeon.png +[2018-02-13T00:43:54.319] [INFO] cheese - inserting 1000 documents. first: Vinícius Silva Soares and last: Isaac Jaquelot +[2018-02-13T00:43:54.333] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:43:54.348] [INFO] cheese - inserting 1000 documents. first: Century Secondary School and last: Budavari Siklo +[2018-02-13T00:43:54.357] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:43:54.381] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:43:54.396] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:43:54.429] [INFO] cheese - inserting 1000 documents. first: File:Dristor 2 Station.jpg and last: Carlos Hoo Ramirez +[2018-02-13T00:43:54.458] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:43:54.574] [INFO] cheese - inserting 1000 documents. first: Muammar Khaddafi and last: File:Mod devolution original.jpg +[2018-02-13T00:43:54.610] [INFO] cheese - inserting 1000 documents. first: Indios de Mayagueez and last: Federico Trillo-Figueroa Martinez-Conde +[2018-02-13T00:43:54.619] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:43:54.634] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:43:54.681] [INFO] cheese - inserting 1000 documents. first: Category:Czech sportspeople by sport and last: McKenzie, Doug +[2018-02-13T00:43:54.734] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:43:54.764] [INFO] cheese - inserting 1000 documents. first: Blockbuster Entertainment Group and last: Dysthesia +[2018-02-13T00:43:54.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Deavan Ebersole and last: Template:Sioux City, Iowa weatherbox +[2018-02-13T00:43:54.820] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:43:54.823] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:43:54.842] [INFO] cheese - inserting 1000 documents. first: Alcidodes exornatus and last: Was bleibt +[2018-02-13T00:43:54.894] [INFO] cheese - inserting 1000 documents. first: Uberherrn and last: Wikipedia:Articles for deletion/Bodie and Brock Thoene +[2018-02-13T00:43:54.919] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T00:43:54.926] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:43:55.110] [INFO] cheese - inserting 1000 documents. first: List of sovereign states in 1951 and last: Wikipedia:WikiProject Trains/nav +[2018-02-13T00:43:55.167] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:43:55.254] [INFO] cheese - inserting 1000 documents. first: McKenzie, Reggie and last: Category:Rowing in Israel +[2018-02-13T00:43:55.267] [INFO] cheese - inserting 1000 documents. first: Los Angeles College of Music (LACM) and last: Dusky-green Oropendola +[2018-02-13T00:43:55.305] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:43:55.308] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:43:55.360] [INFO] cheese - inserting 1000 documents. first: File:Tibet 800ad sm.jpg and last: Brevisima relacion de la destruccion de las Indias +[2018-02-13T00:43:55.360] [INFO] cheese - inserting 1000 documents. first: Mason Charles and last: Rae Armantraut +[2018-02-13T00:43:55.395] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:43:55.451] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:43:55.498] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Devizes School and last: File:Kamenskalamity.jpg +[2018-02-13T00:43:55.548] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:43:55.661] [INFO] cheese - inserting 1000 documents. first: Lausavisa and last: Flothe +[2018-02-13T00:43:55.683] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:43:55.735] [INFO] cheese - inserting 1000 documents. first: Green Oropendola and last: Sunda Bush Warbler +[2018-02-13T00:43:55.754] [INFO] cheese - inserting 1000 documents. first: Category:Armenia religion-related lists and last: Wikipedia:Sockpuppet investigations/Johny5000 +[2018-02-13T00:43:55.796] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:43:55.805] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:43:56.012] [INFO] cheese - inserting 1000 documents. first: Who I Am Tour and last: Abdulrahman Gimba +[2018-02-13T00:43:56.043] [INFO] cheese - inserting 1000 documents. first: Communes of the Lozere departement and last: Cantoria, Almeria +[2018-02-13T00:43:56.060] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:43:56.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 January 16 and last: Category:Businesspeople by industry and nationality +[2018-02-13T00:43:56.080] [INFO] cheese - inserting 1000 documents. first: Ryan Braun (baseball pitcher) and last: RAF Atcham +[2018-02-13T00:43:56.122] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:43:56.142] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:43:56.203] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T00:43:56.215] [INFO] cheese - inserting 1000 documents. first: Mountain Tailorbird and last: IBM 4680 Operating System 4.1 +[2018-02-13T00:43:56.257] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:43:56.300] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of YouTubers and last: Scorched (short story) +[2018-02-13T00:43:56.349] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:43:56.403] [INFO] cheese - inserting 1000 documents. first: Heinrich Heine University of Dusseldorf and last: Floyd Matthews +[2018-02-13T00:43:56.446] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:43:56.601] [INFO] cheese - inserting 1000 documents. first: 4680 Operating System 4.1 and last: This Fire (song) +[2018-02-13T00:43:56.608] [INFO] cheese - inserting 1000 documents. first: Spatial Cultural-Historical Units of Great Importance and last: Wikipedia:WikiProject Spam/LinkReports/computerbiblegames.com +[2018-02-13T00:43:56.641] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:43:56.673] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia files reviewed on Wikimedia Commons by Ebe123 and last: File:3DO-Daedalus-Encounter.jpg +[2018-02-13T00:43:56.725] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:43:56.736] [INFO] cheese - inserting 1000 documents. first: La Pelicula del Rey and last: Pres De Ma Riviere +[2018-02-13T00:43:56.762] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:43:56.813] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:43:56.875] [INFO] cheese - inserting 1000 documents. first: Collins–Valentine line and last: Tetrahedron Computer Methodology +[2018-02-13T00:43:56.905] [INFO] cheese - inserting 1000 documents. first: Scottish Renewables Obligation and last: Dinosaurs in South America +[2018-02-13T00:43:56.910] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:43:56.982] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:43:57.001] [INFO] cheese - inserting 1000 documents. first: Category:Space units of the United States Air Force and last: San Munoz, Salamanca +[2018-02-13T00:43:57.106] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:43:57.315] [INFO] cheese - inserting 1000 documents. first: Connor Smith (footballer, born 1996) and last: Category:Gymnastics at the Youth Olympics +[2018-02-13T00:43:57.371] [INFO] cheese - inserting 1000 documents. first: Guenther's Toadlet and last: Rene Desfontaines +[2018-02-13T00:43:57.407] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T00:43:57.433] [INFO] cheese - inserting 1000 documents. first: Category:International basketball competitions hosted by Spain and last: Tyler Polak +[2018-02-13T00:43:57.431] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:43:57.650] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T00:43:57.708] [INFO] cheese - inserting 1000 documents. first: File:Bluemagic3.jpg and last: HNLMS De Ruyter (1944) +[2018-02-13T00:43:57.882] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T00:43:58.085] [INFO] cheese - inserting 1000 documents. first: Benjamin Wahlgren Ingrosso and last: Category:Finnish politicians by century +[2018-02-13T00:43:58.099] [INFO] cheese - inserting 1000 documents. first: Reenpaa and last: Institut national des sciences appliquees +[2018-02-13T00:43:58.158] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:43:58.274] [INFO] cheese - batch complete in: 1.364 secs +[2018-02-13T00:43:58.449] [INFO] cheese - inserting 1000 documents. first: Template:Navbox track gauge/sandbox and last: Pirate Party Croatia +[2018-02-13T00:43:58.508] [INFO] cheese - inserting 1000 documents. first: Juergen May and last: Chapel of Sao Frutuoso de Montelios +[2018-02-13T00:43:58.567] [INFO] cheese - inserting 1000 documents. first: File:ZAMTEL LOGO.gif and last: Template:Soccer in Australia +[2018-02-13T00:43:58.568] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:43:58.589] [INFO] cheese - batch complete in: 1.182 secs +[2018-02-13T00:43:58.601] [INFO] cheese - inserting 1000 documents. first: Category:Radford Highlanders baseball players and last: Psecadia tripolitanella +[2018-02-13T00:43:58.678] [INFO] cheese - batch complete in: 1.696 secs +[2018-02-13T00:43:58.690] [INFO] cheese - batch complete in: 1.04 secs +[2018-02-13T00:43:58.833] [INFO] cheese - inserting 1000 documents. first: Gewuertztraminer and last: Urla (District), Izmir +[2018-02-13T00:43:58.880] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:43:58.964] [INFO] cheese - inserting 1000 documents. first: Ernest Jansan and last: Wikipedia:Sockpuppet investigations/Iloveartrock/Archive +[2018-02-13T00:43:59.023] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:43:59.137] [INFO] cheese - inserting 1000 documents. first: Rhytidhysteron and last: Vanilla raabii +[2018-02-13T00:43:59.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hypography and last: Munoveros, Spain +[2018-02-13T00:43:59.159] [INFO] cheese - inserting 1000 documents. first: File:Deco lamp.jpg and last: Peshtpa +[2018-02-13T00:43:59.187] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:43:59.191] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:43:59.305] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T00:43:59.404] [INFO] cheese - inserting 1000 documents. first: Psecadia radiatella and last: Syfy Universal (Portugal) +[2018-02-13T00:43:59.408] [INFO] cheese - inserting 1000 documents. first: PNC (rapper) and last: Baronio +[2018-02-13T00:43:59.439] [INFO] cheese - inserting 1000 documents. first: Anundsjoe Parish and last: Hakon Hakonarson +[2018-02-13T00:43:59.487] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:43:59.524] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:43:59.499] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:43:59.604] [INFO] cheese - inserting 1000 documents. first: Our Lady of the Spasm and last: Category:Sports competitions in Illinois +[2018-02-13T00:43:59.673] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:43:59.778] [INFO] cheese - inserting 1000 documents. first: 2014 Venice Challenge Save Cup and last: Richard Earl Thompson +[2018-02-13T00:43:59.830] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:43:59.954] [INFO] cheese - inserting 1000 documents. first: Template:Nevada-NRHP-stub and last: Lehigh university engineering highlights +[2018-02-13T00:44:00.104] [INFO] cheese - inserting 1000 documents. first: May 19th Coalition and last: File:Alfonso Ugarte de Chiclín.gif +[2018-02-13T00:44:00.139] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:44:00.279] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:44:00.385] [INFO] cheese - inserting 1000 documents. first: Booty Pop and last: Delmar Roos +[2018-02-13T00:44:00.434] [INFO] cheese - inserting 1000 documents. first: Tin-Plate and last: File:PreEmptivelogo.png +[2018-02-13T00:44:00.473] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:44:00.488] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T00:44:00.572] [INFO] cheese - inserting 1000 documents. first: Castaibert IV and last: Cuban Parakeet +[2018-02-13T00:44:00.584] [INFO] cheese - inserting 1000 documents. first: Oviraptor philoceratops and last: Wikipedia:Articles for deletion/Webopedia +[2018-02-13T00:44:00.613] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T00:44:00.616] [INFO] cheese - inserting 1000 documents. first: Ulmus minor 'Punctata' and last: Work standard +[2018-02-13T00:44:00.702] [INFO] cheese - batch complete in: 1.203 secs +[2018-02-13T00:44:00.717] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T00:44:00.896] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Moldova and last: Flamsbanen +[2018-02-13T00:44:00.957] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:44:00.973] [INFO] cheese - inserting 1000 documents. first: 1983 UK Snooker Championship and last: Jung Il-woo +[2018-02-13T00:44:01.027] [INFO] cheese - inserting 1000 documents. first: Table of books of Judeo-Christian scripture and last: Category:1922 establishments in Yugoslavia +[2018-02-13T00:44:01.035] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:44:01.132] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:44:01.209] [INFO] cheese - inserting 1000 documents. first: Bald Parrot and last: Rüppell's bustard +[2018-02-13T00:44:01.371] [INFO] cheese - inserting 1000 documents. first: File:Navy olive Capt(N).png and last: John Pattitucci +[2018-02-13T00:44:01.387] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:44:01.428] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:44:01.554] [INFO] cheese - inserting 1000 documents. first: File:Box 2 of Inazuma Eleven Contains 10 dvds (48 episodes)-Season 2.jpg and last: Wikipedia:Articles for deletion/Log/2017 January 7 +[2018-02-13T00:44:01.577] [INFO] cheese - inserting 1000 documents. first: Northern smooth shore crab and last: Strømm +[2018-02-13T00:44:01.661] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T00:44:01.747] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T00:44:01.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Aar Maanta and last: Pranas Domšaitis +[2018-02-13T00:44:01.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Canberra Primary School and last: Jane Stocks Greig +[2018-02-13T00:44:01.836] [INFO] cheese - inserting 1000 documents. first: Le Poisson Dore (Saint-Leon/Minkus) and last: Meritorious Unit Citations +[2018-02-13T00:44:01.845] [INFO] cheese - inserting 1000 documents. first: Category:1973 establishments in Yugoslavia and last: Odostomia woodhridgei +[2018-02-13T00:44:01.849] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:44:01.855] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:44:01.865] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:44:01.920] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:44:02.196] [INFO] cheese - inserting 1000 documents. first: Category:Fossil fuels in Oceania and last: Peristenus +[2018-02-13T00:44:02.197] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AMA Requests for Assistance/Requests/October 2006/francesannesolomon1 and last: Yoake Mae yori Ruriiro na +[2018-02-13T00:44:02.259] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:44:02.268] [INFO] cheese - inserting 1000 documents. first: Nigerian Civil Service and last: Template:Media Release/doc +[2018-02-13T00:44:02.284] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:44:02.340] [INFO] cheese - inserting 1000 documents. first: Category:Islands of Shandong and last: Wikipedia:Articles for deletion/List of airports in the United States by passengers boarded +[2018-02-13T00:44:02.344] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:44:02.380] [INFO] cheese - inserting 1000 documents. first: Fairfield Athletic and last: Home of Truth, Utah +[2018-02-13T00:44:02.418] [INFO] cheese - inserting 1000 documents. first: Friedrich IX of Brandenburg-Bayreuth and last: Opătești +[2018-02-13T00:44:02.437] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:44:02.439] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:44:02.512] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:44:02.662] [INFO] cheese - inserting 1000 documents. first: West Indies cricket team in Pakistan in 2016–17 and last: Kurmanathaswamy temple, Srikurmam +[2018-02-13T00:44:02.704] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:44:02.721] [INFO] cheese - inserting 1000 documents. first: Battle of Val-es-Dunes and last: Brynjar Bjoern Gunnarsson +[2018-02-13T00:44:02.748] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:44:02.791] [INFO] cheese - inserting 1000 documents. first: Sean Hoppe and last: The Blinding E.P. +[2018-02-13T00:44:02.808] [INFO] cheese - inserting 1000 documents. first: Time To Win, Vol. 1 and last: SC 63 +[2018-02-13T00:44:02.889] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:44:02.894] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:44:03.016] [INFO] cheese - inserting 1000 documents. first: Category:KLM Cityhopper and last: Category:Songs written by Robin Thicke +[2018-02-13T00:44:03.077] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:44:03.173] [INFO] cheese - inserting 1000 documents. first: Neuhausgen and last: Wikipedia:Articles for deletion/SimonT Hockey Simulator +[2018-02-13T00:44:03.188] [INFO] cheese - inserting 1000 documents. first: Nazrul Tirtha and last: Building jacking +[2018-02-13T00:44:03.207] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:44:03.282] [INFO] cheese - inserting 1000 documents. first: 2015 Canadian Open of Curling and last: Salen Kotch +[2018-02-13T00:44:03.285] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:44:03.376] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:44:03.521] [INFO] cheese - inserting 1000 documents. first: Inglewood United FC and last: Norderhoug +[2018-02-13T00:44:03.531] [INFO] cheese - inserting 1000 documents. first: Route 63 (South Carolina) and last: File:GrandPrixManagerscreen.gif +[2018-02-13T00:44:03.555] [INFO] cheese - inserting 1000 documents. first: Ponta Garca and last: Grandes y San Martin, Spain +[2018-02-13T00:44:03.556] [INFO] cheese - inserting 1000 documents. first: Albert "Ginger" Baker and last: Susisuchus anatoceps +[2018-02-13T00:44:03.586] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:44:03.587] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:44:03.596] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:44:03.622] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:44:03.820] [INFO] cheese - inserting 1000 documents. first: Category:163 in Asia and last: PC flash-synchronization connection +[2018-02-13T00:44:03.839] [INFO] cheese - inserting 1000 documents. first: List of creeks in North Carolina and last: Apex Pride +[2018-02-13T00:44:03.885] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:44:03.887] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:44:03.914] [INFO] cheese - inserting 1000 documents. first: Mevluet Erdinc and last: Courtemaiche (Jura) +[2018-02-13T00:44:03.963] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:44:04.049] [INFO] cheese - inserting 1000 documents. first: Mylius My-102 Tornado and last: West Vienna United Methodist Church +[2018-02-13T00:44:04.069] [INFO] cheese - inserting 1000 documents. first: Dhanmondi Govt Boys' High School and last: Life of Richard Savage +[2018-02-13T00:44:04.098] [INFO] cheese - inserting 1000 documents. first: UFSv2 and last: Nagato no kuni +[2018-02-13T00:44:04.120] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:44:04.158] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:44:04.203] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:44:04.262] [INFO] cheese - inserting 1000 documents. first: Skalka nad Vahom and last: Al compas de tu mentira +[2018-02-13T00:44:04.282] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:44:04.356] [INFO] cheese - inserting 1000 documents. first: PC flash synchronisation connection and last: Draft:Sikin Panjang +[2018-02-13T00:44:04.375] [INFO] cheese - inserting 1000 documents. first: Governor Shumlin and last: Category:People from Småland by occupation +[2018-02-13T00:44:04.407] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:44:04.429] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:44:04.560] [INFO] cheese - inserting 1000 documents. first: Gyula Fenyi and last: Fraemling (song) +[2018-02-13T00:44:04.609] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:44:04.770] [INFO] cheese - inserting 1000 documents. first: 2011 Paraguayan Segunda División season and last: Euzopherades +[2018-02-13T00:44:04.791] [INFO] cheese - inserting 1000 documents. first: Thomas Mapilton and last: Secondary ion mass spectrometer +[2018-02-13T00:44:04.818] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/MartinBotII 2 and last: Volta River Dam +[2018-02-13T00:44:04.837] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:44:04.905] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:44:04.916] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:44:04.940] [INFO] cheese - inserting 1000 documents. first: Roscommon (Dail Eireann constituency) and last: SMS Koenig Wilhelm (1868) +[2018-02-13T00:44:04.978] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:44:05.036] [INFO] cheese - inserting 1000 documents. first: File:Ratnakumar 1949.jpg and last: Category:Roman Catholic ecclesiastical provinces in Italy +[2018-02-13T00:44:05.105] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:44:05.111] [INFO] cheese - inserting 1000 documents. first: Category:Cycling at the Southeast Asian Games and last: Brazil men's national 3x3 team +[2018-02-13T00:44:05.169] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:44:05.261] [INFO] cheese - inserting 1000 documents. first: Leao (disambiguation) and last: Goetheberg, Sweden +[2018-02-13T00:44:05.282] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:44:05.408] [INFO] cheese - inserting 1000 documents. first: Infinita and last: Category:History of Yugoslavia by topic +[2018-02-13T00:44:05.447] [INFO] cheese - inserting 1000 documents. first: Sp vol and last: File:Nittanyfurnace.PNG +[2018-02-13T00:44:05.465] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:44:05.476] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:44:05.514] [INFO] cheese - inserting 1000 documents. first: List of Prosecutor Generals of Russia and the Soviet Union and last: Mount Geikie +[2018-02-13T00:44:05.515] [INFO] cheese - inserting 1000 documents. first: Winfried Muthesius and last: All Points Bulletin (2010 video game) +[2018-02-13T00:44:05.569] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:44:05.575] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:44:05.593] [INFO] cheese - inserting 1000 documents. first: Raettvik Court District and last: 8319 Antiphanes +[2018-02-13T00:44:05.640] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:44:05.647] [INFO] cheese - inserting 1000 documents. first: Khok Sa-Met Choon and last: File:Viduthalai (1986 film).jpg +[2018-02-13T00:44:05.694] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:44:05.818] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Société Ramond and last: Template:LSJ/doc +[2018-02-13T00:44:05.844] [INFO] cheese - inserting 1000 documents. first: Raghuleela Mall and last: 8 second basketball rule +[2018-02-13T00:44:05.853] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:44:05.883] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:44:05.915] [INFO] cheese - inserting 1000 documents. first: Nagyhodos and last: Bagdat Caddesi +[2018-02-13T00:44:05.934] [INFO] cheese - inserting 1000 documents. first: Category:1842 establishments in British India and last: Template:2003 South Africa incoming tours squad +[2018-02-13T00:44:05.947] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:44:05.993] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:44:06.026] [INFO] cheese - inserting 1000 documents. first: Omar Esparza and last: East Germany at the 1976 Winter Olympics +[2018-02-13T00:44:06.061] [INFO] cheese - inserting 1000 documents. first: Jiang Duanyi and last: Gabriel Isis +[2018-02-13T00:44:06.104] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:44:06.122] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:44:06.197] [INFO] cheese - inserting 1000 documents. first: Giani Stelian Kirita and last: Jakob, der Lugner +[2018-02-13T00:44:06.223] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:44:06.303] [INFO] cheese - inserting 1000 documents. first: Bugolobi and last: Jaiee +[2018-02-13T00:44:06.349] [INFO] cheese - inserting 1000 documents. first: Deh Zahid and last: The Future of the Body +[2018-02-13T00:44:06.367] [INFO] cheese - inserting 1000 documents. first: Sitosterolaemia and last: List of executive search firms +[2018-02-13T00:44:06.374] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:44:06.427] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:44:06.508] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:44:06.568] [INFO] cheese - inserting 1000 documents. first: Johann Boettger and last: 4373 Crespo +[2018-02-13T00:44:06.652] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:44:06.714] [INFO] cheese - inserting 1000 documents. first: Speckled Wood (butterfly) and last: Template:Leftist Socialist Party of Japan/meta/shortname +[2018-02-13T00:44:06.789] [INFO] cheese - inserting 1000 documents. first: Million Dollar Heiress and last: Template:Rugby squad start +[2018-02-13T00:44:06.846] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:44:06.910] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:44:07.037] [INFO] cheese - inserting 1000 documents. first: File:EarlyCannonDeNobilitatibusSapientiiEtPrudentiisRegumManuscriptWalterdeMilemete1326.jpg and last: Könkämäeno +[2018-02-13T00:44:07.131] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Coxel and last: Wikipedia:WikiProject Spam/LinkReports/resiinalehti.fi +[2018-02-13T00:44:07.164] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:44:07.293] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:44:07.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/reggae-hiphop-radio.we.bs and last: Template:1970–71 NHL West Division standings +[2018-02-13T00:44:07.424] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:44:07.517] [INFO] cheese - inserting 1000 documents. first: Abdallah Said Sarouma and last: The Wehrmacht: History, Myth, Reality +[2018-02-13T00:44:07.689] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T00:44:07.699] [INFO] cheese - inserting 1000 documents. first: FM 29 and last: Kingi Tuheitia +[2018-02-13T00:44:07.778] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T00:44:07.901] [INFO] cheese - inserting 1000 documents. first: Edwin Hallowell and last: Petite Savanne +[2018-02-13T00:44:07.919] [INFO] cheese - inserting 1000 documents. first: Halo naevus and last: Smidge +[2018-02-13T00:44:07.981] [INFO] cheese - inserting 1000 documents. first: Daamo and last: 1929 elections +[2018-02-13T00:44:08.003] [INFO] cheese - inserting 1000 documents. first: 3032 Evans and last: Manastur, Cluj-Napoca +[2018-02-13T00:44:08.007] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T00:44:08.040] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T00:44:08.069] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:44:08.127] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:44:08.175] [INFO] cheese - inserting 1000 documents. first: Architectural conservation in Thailand and last: Eugen Viktor Paul Seiterich +[2018-02-13T00:44:08.226] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:44:08.355] [INFO] cheese - inserting 1000 documents. first: Dysoxylum havilandii and last: County of Stolberg-Stolberg +[2018-02-13T00:44:08.405] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:44:08.436] [INFO] cheese - inserting 1000 documents. first: Grădinile Mănăştur, Cluj-Napoca and last: Furstin von Belmonte +[2018-02-13T00:44:08.514] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:44:08.535] [INFO] cheese - inserting 1000 documents. first: List of elected officials who support the Stop Online Piracy Act and last: Latvijas Civilās aviācijas administrācija +[2018-02-13T00:44:08.589] [INFO] cheese - inserting 1000 documents. first: File:TowsonEnrollmentServices.jpg and last: Valentin Paniagua +[2018-02-13T00:44:08.637] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:44:08.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Like a Rolling Stone/archive2 and last: Jean Baptiste Louvet de Couvray +[2018-02-13T00:44:08.738] [INFO] cheese - inserting 1000 documents. first: Category:Monasteries in Denmark and last: Bob B. Soxx & The Blue Jeans +[2018-02-13T00:44:08.717] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:44:08.817] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:44:08.825] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:44:08.876] [INFO] cheese - inserting 1000 documents. first: Inch2 and last: Libertador Municipality, Carabobo +[2018-02-13T00:44:09.126] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:44:09.355] [INFO] cheese - inserting 1000 documents. first: County of Stolberg-Rossla and last: Random write +[2018-02-13T00:44:09.438] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T00:44:09.454] [INFO] cheese - inserting 1000 documents. first: Latvijas Civilas aviacijas administracija and last: Léon Maquenne +[2018-02-13T00:44:09.470] [INFO] cheese - inserting 1000 documents. first: Jose Rondeau Pereyra and last: NS Railinfratrust +[2018-02-13T00:44:09.500] [INFO] cheese - inserting 1000 documents. first: Valery Sigalevitch and last: Category:Ships of Belize +[2018-02-13T00:44:09.516] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:44:09.528] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T00:44:09.557] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:44:09.619] [INFO] cheese - inserting 1000 documents. first: Valentin paniagua and last: Damot Weyde +[2018-02-13T00:44:09.664] [INFO] cheese - inserting 1000 documents. first: Central Oklahoma Bronchos women's basketball and last: Invasion of Åland +[2018-02-13T00:44:09.698] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T00:44:09.719] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:44:09.768] [INFO] cheese - inserting 1000 documents. first: Sverre Kornelius Eilertsen Stostad and last: A-adrenergic receptor +[2018-02-13T00:44:09.799] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:44:09.823] [INFO] cheese - inserting 1000 documents. first: Category:Franklin County, New York geography stubs and last: File:Step Up All In poster.jpg +[2018-02-13T00:44:09.861] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:44:09.873] [INFO] cheese - inserting 1000 documents. first: Category:Province of Valencia and last: Wikipedia:Articles for deletion/Log/2012 January 23 +[2018-02-13T00:44:09.925] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:44:10.137] [INFO] cheese - inserting 1000 documents. first: 11997 Fassel and last: 1382 Gerti +[2018-02-13T00:44:10.143] [INFO] cheese - inserting 1000 documents. first: Army School Mumbai and last: Roumboui +[2018-02-13T00:44:10.177] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:44:10.225] [INFO] cheese - inserting 1000 documents. first: Cathedral of Dijon and last: National Museum of San Marco +[2018-02-13T00:44:10.238] [INFO] cheese - inserting 1000 documents. first: Vagonka and last: Regensburg declaration of 1541 +[2018-02-13T00:44:10.286] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:44:10.301] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:44:10.356] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:44:10.524] [INFO] cheese - inserting 1000 documents. first: Template:2012 in Japanese football and last: Dareshkaft +[2018-02-13T00:44:10.602] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:44:10.608] [INFO] cheese - inserting 1000 documents. first: Gabriel lame and last: Storfurstendomet Finland +[2018-02-13T00:44:10.636] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:44:10.647] [INFO] cheese - inserting 1000 documents. first: File:Dishaster gameplay.png and last: Wakka Wakka Productions +[2018-02-13T00:44:10.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elwood (Finnish musician) (2nd nomination) and last: Eternal General Secretary of the Workers' Party of Korea +[2018-02-13T00:44:10.743] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:44:10.792] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:44:10.914] [INFO] cheese - inserting 1000 documents. first: Sabon-Guida and last: No Internal Message +[2018-02-13T00:44:10.922] [INFO] cheese - inserting 1000 documents. first: Category:Danish darts players and last: FIU–Miami football brawl +[2018-02-13T00:44:10.983] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:44:11.012] [INFO] cheese - inserting 1000 documents. first: 1308 Halleria and last: 9144 Hollisjohnson +[2018-02-13T00:44:10.986] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:44:11.074] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:44:11.371] [INFO] cheese - inserting 1000 documents. first: 2010 in Armenian football and last: Zeppelin LZ84 +[2018-02-13T00:44:11.469] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:44:11.515] [INFO] cheese - inserting 1000 documents. first: Vijayawada Railway Division and last: Beijing Haidian Foreign Language School +[2018-02-13T00:44:11.633] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:44:11.661] [INFO] cheese - inserting 1000 documents. first: Armand-Francois-Marie de Charbonnel and last: Orebro SK Bandy +[2018-02-13T00:44:11.774] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:44:11.782] [INFO] cheese - inserting 1000 documents. first: Category:20th-century Turkish short story writers and last: Template:Liga Semi-Pro Divisyen 2 +[2018-02-13T00:44:11.786] [INFO] cheese - inserting 1000 documents. first: 1st American Regiment (1783-1784) and last: Balsa Nova +[2018-02-13T00:44:11.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AMA Requests for Assistance/Requests/October 2006/Hammbeen and last: All That Remains (novel) +[2018-02-13T00:44:11.836] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:44:11.893] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T00:44:11.927] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T00:44:12.074] [INFO] cheese - inserting 1000 documents. first: Tonfoen and last: List of number-one hits of 1961 (Germany) +[2018-02-13T00:44:12.111] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:44:12.134] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Hawaii hotspot/archive2 and last: Ethmia septempunctata +[2018-02-13T00:44:12.160] [INFO] cheese - inserting 1000 documents. first: 102d Fighter-Interceptor Squadron and last: Francisco Alcácer +[2018-02-13T00:44:12.187] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:44:12.205] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:44:12.351] [INFO] cheese - inserting 1000 documents. first: Faruk Guersoy and last: Romangordo, Caceres +[2018-02-13T00:44:12.372] [INFO] cheese - inserting 1000 documents. first: Bocaiúva do Sul and last: Category:Ke$ha songs +[2018-02-13T00:44:12.375] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:44:12.421] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:44:12.427] [INFO] cheese - inserting 1000 documents. first: Secrets (Ian Thornley album) and last: Northamptonshire county cricket teams +[2018-02-13T00:44:12.474] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:44:12.501] [INFO] cheese - inserting 1000 documents. first: Category:Football clubs in Kenya and last: Johnson Creek (New York) +[2018-02-13T00:44:12.537] [INFO] cheese - inserting 1000 documents. first: Miert kell, hogy elmenj? and last: Somesul Cald River +[2018-02-13T00:44:12.539] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:44:12.554] [INFO] cheese - inserting 1000 documents. first: Template:Motorcycle article and last: File:Bssm0.png +[2018-02-13T00:44:12.566] [INFO] cheese - inserting 1000 documents. first: Hull Council election, 2006 and last: Galeandra barbata +[2018-02-13T00:44:12.572] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:44:12.632] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:44:12.658] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:44:12.868] [INFO] cheese - inserting 1000 documents. first: File:Captain Moses Collyer House.jpg and last: Sertanópolis +[2018-02-13T00:44:12.914] [INFO] cheese - inserting 1000 documents. first: Jose Cuervo Tequila and last: 20376 Joyhines +[2018-02-13T00:44:12.919] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:44:12.921] [INFO] cheese - inserting 1000 documents. first: Buckinghamshire county cricket teams and last: 1987–88 FC Basel season +[2018-02-13T00:44:12.975] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:44:12.979] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:44:13.282] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Chaetopteridae and last: Template:Haverfordwest VHF 405-line Transmitter Group +[2018-02-13T00:44:13.406] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:44:13.544] [INFO] cheese - inserting 1000 documents. first: Template:UC Davis Aggies baseball coach navbox and last: Warm Springs Road +[2018-02-13T00:44:13.577] [INFO] cheese - inserting 1000 documents. first: Tibor Martinek and last: La Jamais Contente +[2018-02-13T00:44:13.646] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T00:44:13.702] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T00:44:14.047] [INFO] cheese - inserting 1000 documents. first: Category:Hydroelectric power stations in Taiwan and last: Julius J. Martens Company Building +[2018-02-13T00:44:14.086] [INFO] cheese - inserting 1000 documents. first: 78577 JPL and last: Josef Peters (auto racing) +[2018-02-13T00:44:14.098] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:44:14.104] [INFO] cheese - inserting 1000 documents. first: Huang Tzu-ch’eng and last: K255CX +[2018-02-13T00:44:14.160] [INFO] cheese - batch complete in: 1.184 secs +[2018-02-13T00:44:14.168] [INFO] cheese - inserting 1000 documents. first: Category:Ridges on Mars and last: Julio César Valdivia +[2018-02-13T00:44:14.176] [INFO] cheese - batch complete in: 1.197 secs +[2018-02-13T00:44:14.216] [INFO] cheese - inserting 1000 documents. first: Tonopah-Austin Road and last: Category:Hinduism stubs +[2018-02-13T00:44:14.256] [INFO] cheese - batch complete in: 1.337 secs +[2018-02-13T00:44:14.293] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:44:14.374] [INFO] cheese - inserting 1000 documents. first: Kongo class destroyer and last: Delirium Cafe +[2018-02-13T00:44:14.412] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:44:14.541] [INFO] cheese - inserting 1000 documents. first: Currant clearwing moth and last: Schloss Herrenhausen +[2018-02-13T00:44:14.584] [INFO] cheese - inserting 1000 documents. first: Somalia–United Arab Emirates relations and last: Wikipedia:Articles for deletion/Picnicface +[2018-02-13T00:44:14.593] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:44:14.635] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:44:14.709] [INFO] cheese - inserting 1000 documents. first: Night-flowering Catchfly and last: OCP Art Studio +[2018-02-13T00:44:14.723] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/news.jagrutgrahak.com and last: You (Japanese magazine) +[2018-02-13T00:44:14.760] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:44:14.785] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:44:14.900] [INFO] cheese - inserting 1000 documents. first: Georgia Highway 5 and last: Poecile atricapillus +[2018-02-13T00:44:14.954] [INFO] cheese - inserting 1000 documents. first: 1965–66 Football League and last: File:Mummysghost.jpg +[2018-02-13T00:44:14.954] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:44:15.053] [INFO] cheese - inserting 1000 documents. first: Lordville, Minnesota and last: Frida Rubiner +[2018-02-13T00:44:15.177] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T00:44:15.273] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:44:15.297] [INFO] cheese - inserting 1000 documents. first: Compensated phoria and last: Template:Editnotices/Page/January 14 +[2018-02-13T00:44:15.399] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:44:15.402] [INFO] cheese - inserting 1000 documents. first: Draft:A Woman is a Weathercock and last: Patan (Vidhan Sabha constituency) +[2018-02-13T00:44:15.490] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:44:15.654] [INFO] cheese - inserting 1000 documents. first: Kosmos 262 and last: Arthur Francis George Kerr +[2018-02-13T00:44:15.722] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T00:44:15.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Khaled Ukash and last: Category:People from Lynn, Massachusetts +[2018-02-13T00:44:15.816] [INFO] cheese - inserting 1000 documents. first: File:AmmanvarTemple-4.jpg and last: Aided Oenfhir Aife +[2018-02-13T00:44:15.869] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:44:15.872] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:44:15.897] [INFO] cheese - inserting 1000 documents. first: Crytek Kiev and last: UPI AFC Player of the Year +[2018-02-13T00:44:15.952] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:44:15.979] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/January 15 and last: Category:Antisemitism in England +[2018-02-13T00:44:16.055] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:44:16.077] [INFO] cheese - inserting 1000 documents. first: Neocompsa ruatana and last: Regina apostolorum academy +[2018-02-13T00:44:16.094] [INFO] cheese - inserting 1000 documents. first: Biblioteca Nacional de Mexico and last: Powiat of Wielun +[2018-02-13T00:44:16.141] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:44:16.144] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:44:16.225] [INFO] cheese - inserting 1000 documents. first: Template:Miami weatherbox and last: The Dancing Town +[2018-02-13T00:44:16.275] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:44:16.369] [INFO] cheese - inserting 1000 documents. first: Zettel and last: Morris Inquiry +[2018-02-13T00:44:16.378] [INFO] cheese - inserting 1000 documents. first: Freie Universitaet Berlin and last: Pustkow, Lower Silesian Voivodeship +[2018-02-13T00:44:16.399] [INFO] cheese - inserting 1000 documents. first: Milton State Park and last: Hueyapan +[2018-02-13T00:44:16.404] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:44:16.403] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:44:16.445] [INFO] cheese - inserting 1000 documents. first: Yu Liu (or Eric Liu) and last: German submarine U-4 (S183) +[2018-02-13T00:44:16.472] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:44:16.513] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:44:16.649] [INFO] cheese - inserting 1000 documents. first: Andorsjoen and last: 8347 Lallaward +[2018-02-13T00:44:16.684] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T00:44:16.738] [INFO] cheese - inserting 1000 documents. first: H. de C. Hastings and last: Energy FC +[2018-02-13T00:44:16.758] [INFO] cheese - inserting 1000 documents. first: Ovsyanki and last: Wikipedia:WikiProject Spam/Local/aragornblog.wordpress.com +[2018-02-13T00:44:16.776] [INFO] cheese - inserting 1000 documents. first: Template:RCW and last: Template:Bălți-geo-stub +[2018-02-13T00:44:16.815] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:44:16.816] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:44:16.845] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:44:16.951] [INFO] cheese - inserting 1000 documents. first: German submarine U-5 (S184) and last: Swimming at the 2001 World Aquatics Championships - Women's 4 × 200 metre freestyle relay +[2018-02-13T00:44:17.109] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:44:17.162] [INFO] cheese - inserting 1000 documents. first: Skarpt laege and last: Championship of Zuerich 2006 +[2018-02-13T00:44:17.166] [INFO] cheese - inserting 1000 documents. first: Worldways Canada and last: Wroclaw Palace +[2018-02-13T00:44:17.228] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:44:17.317] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:44:17.580] [INFO] cheese - inserting 1000 documents. first: Template:BenderMD-geo-stub and last: Gesta (skipper) +[2018-02-13T00:44:17.610] [INFO] cheese - inserting 1000 documents. first: Template:LI bus link and last: Aaj (1987 film) +[2018-02-13T00:44:17.646] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:44:17.671] [INFO] cheese - inserting 1000 documents. first: 1755 Lorbach and last: Ruthe B. Cowl +[2018-02-13T00:44:17.741] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:44:17.739] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T00:44:17.858] [INFO] cheese - inserting 1000 documents. first: File:2007-08 Illinois Fighting Illini men's basketball team.jpg and last: Concerto transcriptions for harpsichord and organ (Bach) +[2018-02-13T00:44:17.945] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:44:18.131] [INFO] cheese - inserting 1000 documents. first: Schwaendi GL and last: 5760 Mittlefehldt +[2018-02-13T00:44:18.158] [INFO] cheese - inserting 1000 documents. first: File:OSR.jpg and last: Old Kyo +[2018-02-13T00:44:18.177] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:44:18.238] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T00:44:18.368] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Angel and the Rain and last: Welbore Ellis (bishop) +[2018-02-13T00:44:18.391] [INFO] cheese - inserting 1000 documents. first: File:Windstar-Cruises-logo-2014.png and last: Template:Did you know nominations/Labour Spokesman +[2018-02-13T00:44:18.452] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:44:18.518] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T00:44:18.521] [INFO] cheese - inserting 1000 documents. first: Mofo gasy and last: Wikipedia:WikiProject Spam/LinkReports/anon.to +[2018-02-13T00:44:18.556] [INFO] cheese - inserting 1000 documents. first: Wladyslaw Stepien and last: Papaya (dance) +[2018-02-13T00:44:18.604] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:44:18.613] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:44:19.005] [INFO] cheese - inserting 1000 documents. first: Rantauprapat and last: 武广客运专线 +[2018-02-13T00:44:19.153] [INFO] cheese - inserting 1000 documents. first: Pasarea Colibri and last: South Weymouth Naval Air Station +[2018-02-13T00:44:19.195] [INFO] cheese - inserting 1000 documents. first: Miroku's Past Mistake and last: Barnsley East and Mexborough +[2018-02-13T00:44:19.206] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:44:19.226] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:44:19.230] [INFO] cheese - inserting 1000 documents. first: Jamil Jivani and last: Herbert J. Spiro +[2018-02-13T00:44:19.300] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T00:44:19.324] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:44:19.417] [INFO] cheese - inserting 1000 documents. first: Category:Cars introduced in 2017 and last: Draft:1984 Long Beach State 49ers football team +[2018-02-13T00:44:19.455] [INFO] cheese - inserting 1000 documents. first: Francis Brandling and last: Wikipedia:WikProject U.S. Roads/Washington/1937 laws +[2018-02-13T00:44:19.533] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T00:44:19.625] [INFO] cheese - batch complete in: 2.808 secs +[2018-02-13T00:44:19.673] [INFO] cheese - inserting 1000 documents. first: Book:1995 Atlantic hurricane season and last: The Space City +[2018-02-13T00:44:19.710] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:44:19.806] [INFO] cheese - inserting 1000 documents. first: Hilton hotel and last: 5303 Parijskij +[2018-02-13T00:44:19.829] [INFO] cheese - inserting 1000 documents. first: Angels (2014 film) and last: File:TVBmomentsofendearment.jpg +[2018-02-13T00:44:19.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Birthday Committee/Calendar/November/22 and last: 0.999.. +[2018-02-13T00:44:19.889] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:44:19.893] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:44:19.984] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:44:20.103] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikProject U.S. Roads/Washington/1939 laws and last: Tāmihana Te Rauparaha +[2018-02-13T00:44:20.126] [INFO] cheese - inserting 1000 documents. first: This is a Hospital and last: Apex location +[2018-02-13T00:44:20.163] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:44:20.187] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:44:20.189] [INFO] cheese - inserting 1000 documents. first: South Pas and last: Pearson correlation +[2018-02-13T00:44:20.291] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:44:20.347] [INFO] cheese - inserting 1000 documents. first: 3317 Paris and last: 2285 Ron Helin +[2018-02-13T00:44:20.407] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:44:20.474] [INFO] cheese - inserting 1000 documents. first: Blacklane and last: Cypraea maculata +[2018-02-13T00:44:20.513] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:44:20.598] [INFO] cheese - inserting 1000 documents. first: MPI MPxpress and last: Wikipedia:Articles for deletion/Spinach with Chocolate Sauce +[2018-02-13T00:44:20.641] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:44:20.662] [INFO] cheese - inserting 1000 documents. first: Prosthetic Head (single) and last: Wikipedia:Articles for deletion/Grip (software) +[2018-02-13T00:44:20.678] [INFO] cheese - inserting 1000 documents. first: 11724 Ronaldhsu and last: Lubesse +[2018-02-13T00:44:20.704] [INFO] cheese - inserting 1000 documents. first: Ikaheka snake and last: Strange Sensation (band) +[2018-02-13T00:44:20.738] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:44:20.765] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:44:20.786] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Main Page history/2017 January 12 and last: Category:1964 in youth association football +[2018-02-13T00:44:20.827] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:44:20.928] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:44:21.057] [INFO] cheese - inserting 1000 documents. first: Category:Bossier Parish Cavaliers baseball coaches and last: Category:United Kingdom retail company stubs +[2018-02-13T00:44:21.101] [INFO] cheese - inserting 1000 documents. first: Balgstaedt and last: Nuestros Pequenos Hermanos +[2018-02-13T00:44:21.143] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:44:21.235] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:44:21.455] [INFO] cheese - inserting 1000 documents. first: Category:Closed railway lines in London and last: Wikipedia:Books/Hadronic Matter +[2018-02-13T00:44:21.467] [INFO] cheese - inserting 1000 documents. first: SG Rommerz and last: The Safe-Keeper's Secret +[2018-02-13T00:44:21.550] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:44:21.603] [INFO] cheese - inserting 1000 documents. first: Category:Maritime history of Norway and last: Canton of Amiens-2 +[2018-02-13T00:44:21.622] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:44:21.627] [INFO] cheese - inserting 1000 documents. first: Romborg Hotel and last: St Mary Magdalene's Church, Richmond +[2018-02-13T00:44:21.663] [INFO] cheese - inserting 1000 documents. first: Lord Blundell and last: Zalea +[2018-02-13T00:44:21.652] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T00:44:21.728] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:44:21.849] [INFO] cheese - batch complete in: 1.022 secs +[2018-02-13T00:44:22.013] [INFO] cheese - inserting 1000 documents. first: Category:Ontario stubs and last: Template:Latest stable software release/KHTML +[2018-02-13T00:44:22.064] [INFO] cheese - inserting 1000 documents. first: Commandement des Operations Speciales and last: Emile Edouard Charles Antoine. Zola +[2018-02-13T00:44:22.091] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:44:22.113] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:44:22.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Books/Half-Life 2 titles and last: Locus 7 Site +[2018-02-13T00:44:22.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wiki Ed/University of British Columbia, Okanagan/Tectonics and Orogenesis (W2) and last: Wikipedia:Articles for deletion/San Escobar +[2018-02-13T00:44:22.306] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:44:22.327] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:44:22.367] [INFO] cheese - inserting 1000 documents. first: File:Worcester Telegram & Gazette front page.jpg and last: Fulk Bertrand of Provence +[2018-02-13T00:44:22.396] [INFO] cheese - inserting 1000 documents. first: College Louise Wegman (CLW) and last: High Synagogue (Krakow) +[2018-02-13T00:44:22.425] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:44:22.463] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T00:44:22.540] [INFO] cheese - inserting 1000 documents. first: List of rivers of Saudi Arabia and last: EFY Group +[2018-02-13T00:44:22.604] [INFO] cheese - inserting 1000 documents. first: Hectaphelia tortuosa and last: Category:History of the Gisborne District +[2018-02-13T00:44:22.620] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:44:22.671] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:44:22.686] [INFO] cheese - inserting 1000 documents. first: Abduelhak Hamid and last: Playground for Life +[2018-02-13T00:44:22.723] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:44:22.799] [INFO] cheese - inserting 1000 documents. first: Category:Ordinariates for Eastern Catholic faithful and last: Migrants and Refugee Section +[2018-02-13T00:44:22.818] [INFO] cheese - inserting 1000 documents. first: Nagasena Mahathera and last: Wikipedia:Books/U-5 class submarines +[2018-02-13T00:44:22.853] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:44:22.897] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:44:23.077] [INFO] cheese - inserting 1000 documents. first: Zvončari and last: Francesco sartori +[2018-02-13T00:44:23.100] [INFO] cheese - inserting 1000 documents. first: Category:Gisborne District geography stubs and last: File:Siti Nurhaliza - An Iconic Exhibition.png +[2018-02-13T00:44:23.125] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:44:23.149] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:44:23.189] [INFO] cheese - inserting 1000 documents. first: 2012 AFC Championship game and last: Lulua Province +[2018-02-13T00:44:23.283] [INFO] cheese - inserting 1000 documents. first: Wouldn't Change a Thing (song) and last: Tom Atter +[2018-02-13T00:44:23.299] [INFO] cheese - inserting 1000 documents. first: Furcifer oustaleti and last: Category:French pop songs +[2018-02-13T00:44:23.303] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:44:23.313] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Books/U.S. Presidential Elections and last: White Mascarene Starling +[2018-02-13T00:44:23.353] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:44:23.398] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:44:23.405] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:44:23.712] [INFO] cheese - inserting 1000 documents. first: Blood cell cancer and last: 2013-14 Algerian Cup +[2018-02-13T00:44:23.727] [INFO] cheese - inserting 1000 documents. first: Canon EF 75–300mm lens and last: Fernando Lopes Graca +[2018-02-13T00:44:23.774] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:44:23.795] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:44:23.879] [INFO] cheese - inserting 1000 documents. first: St. John the Baptist's Church, Flookburgh and last: Wikipedia:WikiProject Spam/LinkReports/rlcresearch.com +[2018-02-13T00:44:23.931] [INFO] cheese - inserting 1000 documents. first: Pogonocherus anatolicus and last: Helfgott, Harald +[2018-02-13T00:44:23.953] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:44:23.998] [INFO] cheese - inserting 1000 documents. first: Muninga and last: Asia Jaya LRT station +[2018-02-13T00:44:24.018] [INFO] cheese - inserting 1000 documents. first: The Curse of King Tut's Tomb (1980 film) and last: Category:Queen Anne architecture in Oregon +[2018-02-13T00:44:24.026] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:44:24.107] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:44:24.142] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T00:44:24.157] [INFO] cheese - inserting 1000 documents. first: CD Cobena and last: Gyorgy Cziffra, Jr. +[2018-02-13T00:44:24.250] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:44:24.339] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Community Network Projects and last: Psychogena +[2018-02-13T00:44:24.401] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:44:24.522] [INFO] cheese - inserting 1000 documents. first: Glogov Brod and last: Vũ Thư +[2018-02-13T00:44:24.554] [INFO] cheese - inserting 1000 documents. first: Alternatives economiques and last: Apurimac Brush-finch +[2018-02-13T00:44:24.560] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:44:24.566] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rlcresearch.com and last: Amfikleia–Elateia +[2018-02-13T00:44:24.627] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:44:24.633] [INFO] cheese - inserting 1000 documents. first: If You Ever Leave Me (Barbra Streisand song) and last: Category:Media companies established in the 17th century +[2018-02-13T00:44:24.642] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:44:24.752] [INFO] cheese - inserting 1000 documents. first: Counter-spy and last: Alvah Meyer +[2018-02-13T00:44:24.794] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T00:44:24.924] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T00:44:24.991] [INFO] cheese - inserting 1000 documents. first: The Wraith (1957 TV play) and last: K.C. Abraham +[2018-02-13T00:44:25.011] [INFO] cheese - inserting 1000 documents. first: Episode 1 (Coronation Street) and last: Romkerhall Waterfall +[2018-02-13T00:44:25.060] [INFO] cheese - inserting 1000 documents. first: Harrah, Ras al-Khaimah and last: Hernandez, Rafael +[2018-02-13T00:44:25.060] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:44:25.064] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:44:25.098] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:44:25.533] [INFO] cheese - inserting 1000 documents. first: Category:Media companies established in the 16th century and last: Category:Macedonian female skiers +[2018-02-13T00:44:25.591] [INFO] cheese - inserting 1000 documents. first: File:S-Mart (Mexican grocery) (logo).jpg and last: Wikipedia:Version 1.0 Editorial Team/Ireland articles by quality/33 +[2018-02-13T00:44:25.597] [INFO] cheese - inserting 1000 documents. first: Dirfys–Messapia and last: Sussex Ornithological Society +[2018-02-13T00:44:25.619] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:44:25.665] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:44:25.758] [INFO] cheese - inserting 1000 documents. first: Freemium and last: Afriland First Bank +[2018-02-13T00:44:25.793] [INFO] cheese - batch complete in: 1.151 secs +[2018-02-13T00:44:25.933] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T00:44:25.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiCup/History/2010/Submissions/MisterWiki and last: Wish You Were Here? +[2018-02-13T00:44:25.965] [INFO] cheese - inserting 1000 documents. first: Shoot-down and last: Huquan Station +[2018-02-13T00:44:25.994] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T00:44:26.058] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T00:44:26.079] [INFO] cheese - inserting 1000 documents. first: Lakota, Cote d'Ivoire and last: Hermann Weingaertner +[2018-02-13T00:44:26.101] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:44:26.258] [INFO] cheese - inserting 1000 documents. first: Maculabatis astra and last: Phillips, Allan Robert +[2018-02-13T00:44:26.307] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Road with Cypress and Star and last: Lypiya River +[2018-02-13T00:44:26.390] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:44:26.411] [INFO] cheese - inserting 1000 documents. first: Hyderabad, India (disambiguation) and last: Ucchannanchan no Honoo no Challenge: Denryu IraIra Bo +[2018-02-13T00:44:26.424] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:44:26.442] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:44:26.456] [INFO] cheese - inserting 1000 documents. first: Category:Eastern European World War II resistance movements and last: Coello, Augusto +[2018-02-13T00:44:26.544] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:44:26.747] [INFO] cheese - inserting 1000 documents. first: Henry Gale (disambiguation) and last: Albanian muhajirs +[2018-02-13T00:44:26.783] [INFO] cheese - inserting 1000 documents. first: Template:Cite podcast/sandbox2 and last: Category:China University of Geosciences +[2018-02-13T00:44:26.808] [INFO] cheese - inserting 1000 documents. first: Mutter Kusters Fahrt zum Himmel and last: Second Fussball-Bundesliga 1989-90 +[2018-02-13T00:44:26.838] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T00:44:26.838] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:44:26.891] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T00:44:27.012] [INFO] cheese - inserting 1000 documents. first: Delta-6-desaturase and last: 2013 Thai Division 2 League Bangkok & field Region +[2018-02-13T00:44:27.071] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:44:27.167] [INFO] cheese - inserting 1000 documents. first: Monkey Island 2: LeChuck's Revenge Special Edition and last: Haddie Gill +[2018-02-13T00:44:27.277] [INFO] cheese - inserting 1000 documents. first: Charles Whish and last: 1994 U.S. Men's Clay Court Championships - Singles +[2018-02-13T00:44:27.281] [INFO] cheese - inserting 1000 documents. first: Bird's-nest orchid and last: Padina lui Danisor River +[2018-02-13T00:44:27.284] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T00:44:27.326] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:44:27.363] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:44:27.439] [INFO] cheese - inserting 1000 documents. first: Mígreni and last: Burrard Dry Dock +[2018-02-13T00:44:27.613] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T00:44:27.751] [INFO] cheese - inserting 1000 documents. first: Rogow (Silesian Voivodeship) and last: PBA on KBS 2 +[2018-02-13T00:44:27.771] [INFO] cheese - inserting 1000 documents. first: 1994 UCI Road World Championships - Women's Time Trial and last: 2005 Australian Open - Men's Doubles +[2018-02-13T00:44:27.785] [INFO] cheese - inserting 1000 documents. first: Category:China University of Geosciences faculty and last: Football at the 1971 Mediterranean Games +[2018-02-13T00:44:27.790] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:44:27.816] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:44:27.823] [INFO] cheese - inserting 1000 documents. first: 1978 Prize of Moscow News and last: Listed buildings in Kalundborg Municipality +[2018-02-13T00:44:27.883] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T00:44:27.913] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:44:28.026] [INFO] cheese - inserting 1000 documents. first: Template:User Finland/doc1 and last: Galasodes nervosella +[2018-02-13T00:44:28.124] [INFO] cheese - inserting 1000 documents. first: List of asteroids/39601-39700 and last: Yngvars saga vidforla +[2018-02-13T00:44:28.143] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:44:28.161] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:44:28.295] [INFO] cheese - inserting 1000 documents. first: 2005 Australian Open - Men's Singles and last: Wikipedia:Articles for deletion/Ashley Pangborn +[2018-02-13T00:44:28.311] [INFO] cheese - inserting 1000 documents. first: Punat and last: Category:Hong Kong jazz musicians +[2018-02-13T00:44:28.336] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:44:28.370] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:44:28.382] [INFO] cheese - inserting 1000 documents. first: 1995–96 Iowa Hawkeyes men's basketball team and last: The Neighbours +[2018-02-13T00:44:28.436] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:44:28.474] [INFO] cheese - inserting 1000 documents. first: Baha'i Months and last: Josip Skoric +[2018-02-13T00:44:28.501] [INFO] cheese - inserting 1000 documents. first: Giacinto Diana and last: Fly Manufacturing Company Building +[2018-02-13T00:44:28.513] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:44:28.567] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:44:28.653] [INFO] cheese - inserting 1000 documents. first: Chlorippe vacuna f. albofasciata and last: Pronkstilleven +[2018-02-13T00:44:28.801] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:44:28.922] [INFO] cheese - inserting 1000 documents. first: Beit (surname) and last: 2008 Mercedes Cup - Singles +[2018-02-13T00:44:28.959] [INFO] cheese - inserting 1000 documents. first: Chama (Zambia) and last: Angyalfold +[2018-02-13T00:44:29.003] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:44:29.041] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:44:29.047] [INFO] cheese - inserting 1000 documents. first: Stephenson, James and last: Bethell, Hugh +[2018-02-13T00:44:29.149] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:44:29.172] [INFO] cheese - inserting 1000 documents. first: File:4sahEP.jpg and last: Ros henderson +[2018-02-13T00:44:29.301] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T00:44:29.392] [INFO] cheese - inserting 1000 documents. first: 2008 Monte Carlo Masters - Doubles and last: The King (comics) +[2018-02-13T00:44:29.408] [INFO] cheese - inserting 1000 documents. first: Shili Alaa and last: LGV Mediterranee +[2018-02-13T00:44:29.416] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:44:29.454] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:44:29.529] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/muscle.ca and last: Yves Behar +[2018-02-13T00:44:29.551] [INFO] cheese - inserting 1000 documents. first: Ken Melman and last: Category:Tourist attractions in Zamboanga City +[2018-02-13T00:44:29.634] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T00:44:29.677] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T00:44:29.719] [INFO] cheese - inserting 1000 documents. first: File:Durham Bulls Athletic Park (logo).png and last: Maharlika Village, Taguig +[2018-02-13T00:44:29.735] [INFO] cheese - inserting 1000 documents. first: Secaruia River and last: Bonar, Leon +[2018-02-13T00:44:29.753] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1980 Summer Olympics - Women's javelin throw and last: Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. +[2018-02-13T00:44:29.812] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:44:29.811] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:44:29.834] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:44:29.973] [INFO] cheese - inserting 1000 documents. first: Phoenix street railway and last: Mökkurkálfi +[2018-02-13T00:44:30.097] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:44:30.165] [INFO] cheese - inserting 1000 documents. first: Coenzyme Q - cytochrome c reductase and last: Portal:Volcanoes/Volcanoes topics +[2018-02-13T00:44:30.200] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:44:30.210] [INFO] cheese - inserting 1000 documents. first: File:McLean's Scene.jpg and last: Malik (Bihar) +[2018-02-13T00:44:30.307] [INFO] cheese - inserting 1000 documents. first: Santa Rosa de Goias and last: Dhigemaahuttaa +[2018-02-13T00:44:30.340] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:44:30.375] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:44:30.555] [INFO] cheese - inserting 1000 documents. first: Alla mia età Tour 2009-2010 and last: Category:Road transport in Malta +[2018-02-13T00:44:30.600] [INFO] cheese - inserting 1000 documents. first: I'm a Juvenile Delinquent - Jail Me! and last: Powerlifting at the 2008 Summer Paralympics - Women's 82.5 kg +[2018-02-13T00:44:30.618] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:44:30.658] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:44:30.686] [INFO] cheese - inserting 1000 documents. first: Soimah Pancawati and last: Richard Bowyer (priest) +[2018-02-13T00:44:30.726] [INFO] cheese - inserting 1000 documents. first: Aldi Sud and last: Silistea River (Sitna) +[2018-02-13T00:44:30.780] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:44:30.779] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T00:44:30.933] [INFO] cheese - inserting 1000 documents. first: Ryan McFadyen and last: Highway 7 Alternate (Georgia) +[2018-02-13T00:44:30.963] [INFO] cheese - inserting 1000 documents. first: Malik (Kashmiri tribe) and last: Delayed release (linguistics) +[2018-02-13T00:44:31.000] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:44:31.002] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T00:44:31.025] [INFO] cheese - inserting 1000 documents. first: Draft:ClearBlade and last: Krishna Chandra Punetha +[2018-02-13T00:44:31.082] [INFO] cheese - inserting 1000 documents. first: La Casa de Madame Lulu and last: Pierre francois keraudren +[2018-02-13T00:44:31.097] [INFO] cheese - inserting 1000 documents. first: PRADO - Public Register of Travel and Identity Documents Online and last: Swimming at the 2005 Maccabiah Games - Women's 400 metre freestyle +[2018-02-13T00:44:31.102] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:44:31.106] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:44:31.155] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:44:31.217] [INFO] cheese - inserting 1000 documents. first: Iowa Highway 15 (south) and last: Paombong High School +[2018-02-13T00:44:31.252] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:44:31.339] [INFO] cheese - inserting 1000 documents. first: Fussball-Bundesliga 1992-93 and last: Ostrow Wlkp. +[2018-02-13T00:44:31.372] [INFO] cheese - batch complete in: 0.266 secs +[2018-02-13T00:44:31.485] [INFO] cheese - inserting 1000 documents. first: Zhang Yiyi and last: Wikipedia:Articles for deletion/Sting (musical phrase) +[2018-02-13T00:44:31.498] [INFO] cheese - inserting 1000 documents. first: Georgia 7 Alternate and last: Portal:Military of Australia/Units/October 31 +[2018-02-13T00:44:31.565] [INFO] cheese - inserting 1000 documents. first: Khojki (script) and last: Category:Languages of Guimaras +[2018-02-13T00:44:31.565] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:44:31.572] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:44:31.624] [INFO] cheese - inserting 1000 documents. first: Saba Farmanfarmayan and last: Renewable energy subsidies +[2018-02-13T00:44:31.670] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:44:31.779] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:44:31.849] [INFO] cheese - inserting 1000 documents. first: Celestine Marie and last: Dragon Ball Z: Cho Saiya Densetsu +[2018-02-13T00:44:31.928] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:44:31.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Correo and last: Bonanza Air Lines Inc +[2018-02-13T00:44:32.055] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T00:44:32.420] [INFO] cheese - inserting 1000 documents. first: Rhemes-Saint-Georges and last: !Alarma! magazine +[2018-02-13T00:44:32.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/en.qantara.de and last: S. M. Hammond +[2018-02-13T00:44:32.464] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Crossopteryx and last: Presleyesque +[2018-02-13T00:44:32.472] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:44:32.533] [INFO] cheese - inserting 1000 documents. first: Paulo Cesar Vinha State Park and last: Category:Roman Catholic cathedrals in Colorado +[2018-02-13T00:44:32.554] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T00:44:32.592] [INFO] cheese - inserting 1000 documents. first: Elvis Pres;ey and last: MS Argentina (1929) +[2018-02-13T00:44:32.617] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T00:44:32.653] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T00:44:32.738] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T00:44:32.842] [INFO] cheese - inserting 1000 documents. first: Bertrada of Prum and last: Wikipedia:WikiProject Spam/LinkSearch/brandsoftheworld.com +[2018-02-13T00:44:32.859] [INFO] cheese - inserting 1000 documents. first: Wrestling at the 2000 Summer Olympics - Men's freestyle 76 kg and last: Dragon Ball: World's Greatest Adventure +[2018-02-13T00:44:32.916] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:44:32.990] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T00:44:33.324] [INFO] cheese - inserting 1000 documents. first: Grey-headed swamphen and last: Miaowei Dam +[2018-02-13T00:44:33.425] [INFO] cheese - inserting 1000 documents. first: Micah Townshend and last: Wikipedia:Articles for deletion/Royal Rangers (2nd nomination) +[2018-02-13T00:44:33.436] [INFO] cheese - inserting 1000 documents. first: Lurøya, Nordland and last: Charter Ninety-Seven +[2018-02-13T00:44:33.481] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T00:44:33.593] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T00:44:33.617] [INFO] cheese - inserting 1000 documents. first: An der schoenen Blauen Donau and last: Ein Lied kann eine Bruecke sein +[2018-02-13T00:44:33.623] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T00:44:33.727] [INFO] cheese - inserting 1000 documents. first: 1968 NFL Championship Game and last: Transport Phenomenon +[2018-02-13T00:44:33.725] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T00:44:33.841] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T00:44:34.057] [INFO] cheese - inserting 1000 documents. first: Kentucky Route 2830 and last: Portal:Byzantine Empire/Selected picture/1 +[2018-02-13T00:44:34.089] [INFO] cheese - inserting 1000 documents. first: HMS Cuckoo (1806) and last: Battle of Hamra Al Asad +[2018-02-13T00:44:34.092] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:44:34.219] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T00:44:34.262] [INFO] cheese - inserting 1000 documents. first: Territorial Prelature of Acre e Purus and last: Akram Zuway +[2018-02-13T00:44:34.342] [INFO] cheese - inserting 1000 documents. first: Epimelitta postimelina and last: Template:Find sources multi/gnewspapers +[2018-02-13T00:44:34.409] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T00:44:34.459] [INFO] cheese - inserting 1000 documents. first: Brunatre and last: Stanislaw Pieta +[2018-02-13T00:44:34.467] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T00:44:34.478] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:44:34.694] [INFO] cheese - inserting 1000 documents. first: Keith Biles and last: Tinajo (place) +[2018-02-13T00:44:34.716] [INFO] cheese - inserting 1000 documents. first: Aragvi and last: Jaroslav Kristek +[2018-02-13T00:44:34.816] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T00:44:34.828] [INFO] cheese - inserting 1000 documents. first: Juan Jose Castelli and last: Moscardon, Teruel +[2018-02-13T00:44:34.813] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T00:44:34.874] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:44:35.011] [INFO] cheese - inserting 1000 documents. first: Draft:Hello God (song) and last: The Forest Seasons +[2018-02-13T00:44:35.128] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:44:35.175] [INFO] cheese - inserting 1000 documents. first: Juan Jose Amezaga and last: Xelil Duhoki +[2018-02-13T00:44:35.185] [INFO] cheese - inserting 1000 documents. first: Chizinau and last: File:Ryanair logo 2013(1).svg +[2018-02-13T00:44:35.226] [INFO] cheese - inserting 1000 documents. first: Princess Nicholas of Greece and Denmark and last: Multinational Force – Iraq +[2018-02-13T00:44:35.240] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:44:35.260] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:44:35.347] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T00:44:35.533] [INFO] cheese - inserting 1000 documents. first: Ieremia Movila and last: Torvizcon, Granada +[2018-02-13T00:44:35.563] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:44:35.702] [INFO] cheese - inserting 1000 documents. first: Category:1979 in New Zealand and last: Perennating organ +[2018-02-13T00:44:35.782] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T00:44:35.804] [INFO] cheese - inserting 1000 documents. first: Neopalpa donaldtrumpi and last: Category:Women's organizations in Norway +[2018-02-13T00:44:35.859] [INFO] cheese - inserting 1000 documents. first: Why Bother? (essay) and last: Wikipedia:Articles for deletion/Marc Edelman +[2018-02-13T00:44:35.875] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T00:44:35.917] [INFO] cheese - inserting 1000 documents. first: Portelandia and last: Vaesby Centrum +[2018-02-13T00:44:35.958] [INFO] cheese - inserting 1000 documents. first: FGREP and last: Spanish submarine Tramontana (S-74) +[2018-02-13T00:44:36.004] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:44:36.051] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T00:44:36.151] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T00:44:36.403] [INFO] cheese - inserting 1000 documents. first: Big Muff p and last: Trongisvagsfjordur +[2018-02-13T00:44:36.474] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:44:36.560] [INFO] cheese - inserting 1000 documents. first: Category:Women's organizations in Scotland and last: Bham airport +[2018-02-13T00:44:36.625] [INFO] cheese - inserting 1000 documents. first: Charlie Ginsburg and last: Bègles-Bordeaux +[2018-02-13T00:44:36.654] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:44:36.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GS/CC and last: Kenkabō Inoue +[2018-02-13T00:44:36.769] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T00:44:36.847] [INFO] cheese - inserting 1000 documents. first: Magnus Minneskold and last: Grenville--Dundas +[2018-02-13T00:44:36.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/sexdolls-sexdolls.com and last: Behavioral urbanism +[2018-02-13T00:44:36.874] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:44:36.883] [INFO] cheese - batch complete in: 1.536 secs +[2018-02-13T00:44:36.984] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T00:44:37.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/108.170.85.234/Archive and last: Pavlo Klimkin +[2018-02-13T00:44:37.217] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T00:44:37.233] [INFO] cheese - inserting 1000 documents. first: Rua Vinte Cinco de Marco and last: Runovici +[2018-02-13T00:44:37.249] [INFO] cheese - inserting 1000 documents. first: Giant grasshopper and last: Karpiński (surname) +[2018-02-13T00:44:37.257] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:44:37.310] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:44:37.409] [INFO] cheese - inserting 1000 documents. first: Inoue Koichi and last: 1965 in jazz +[2018-02-13T00:44:37.421] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Anniversaries/June/June 3 and last: Template:IranPRS +[2018-02-13T00:44:37.443] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:44:37.480] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:44:37.566] [INFO] cheese - inserting 1000 documents. first: Tsao Zhen and last: Maria de Huerva, Spain +[2018-02-13T00:44:37.599] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:44:37.620] [INFO] cheese - inserting 1000 documents. first: Madiun Regency and last: Template:NOCin1948WinterOlympics +[2018-02-13T00:44:37.707] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:44:37.725] [INFO] cheese - inserting 1000 documents. first: Category:Colgate Raiders women's basketball navigational boxes and last: Castle of Pembroke +[2018-02-13T00:44:37.783] [INFO] cheese - inserting 1000 documents. first: Category:Spanish musical films and last: San Diego City Council elections, 2006 +[2018-02-13T00:44:37.792] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:44:37.850] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:44:37.933] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Selected Biography/11 and last: Al Naslah +[2018-02-13T00:44:37.962] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:44:37.993] [INFO] cheese - inserting 1000 documents. first: The Betrayal Knows My Name and last: George Mannings +[2018-02-13T00:44:38.039] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Colditz Castle/archive1 and last: File:Ugly Betty s01e03.png +[2018-02-13T00:44:38.068] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:44:38.125] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:44:38.258] [INFO] cheese - inserting 1000 documents. first: Better With You Tour and last: File:Prozakhiphop.jpg +[2018-02-13T00:44:38.271] [INFO] cheese - inserting 1000 documents. first: P.S. Kroyer and last: Fastos. Ostrailian fo bia. +[2018-02-13T00:44:38.374] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:44:38.425] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:44:38.436] [INFO] cheese - inserting 1000 documents. first: San Diego City Council elections, 2008 and last: 2014 Pro Kabaddi League season +[2018-02-13T00:44:38.475] [INFO] cheese - inserting 1000 documents. first: Castle of Bridgnorth and last: Category:Renaissance sculptures by artist +[2018-02-13T00:44:38.542] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:44:38.615] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T00:44:38.765] [INFO] cheese - inserting 1000 documents. first: Cobanlar and last: Bundesministerium fuer Familie, Senioren, Frauen und Jugend +[2018-02-13T00:44:38.828] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:44:38.831] [INFO] cheese - inserting 1000 documents. first: Ghiduţ Creek and last: File:Eddie Rabbitt - Step by Step.jpg +[2018-02-13T00:44:38.917] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T00:44:38.972] [INFO] cheese - inserting 1000 documents. first: Looking For Jake and last: Place of the Way +[2018-02-13T00:44:39.053] [INFO] cheese - inserting 1000 documents. first: Mahammadpur and last: Category:FC Ceahlăul Piatra Neamț +[2018-02-13T00:44:39.088] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T00:44:39.091] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:44:39.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gov.ph and last: Romanità +[2018-02-13T00:44:39.165] [INFO] cheese - inserting 1000 documents. first: Chung hua min kuo and last: Vincent Tee +[2018-02-13T00:44:39.200] [INFO] cheese - inserting 1000 documents. first: Assemblee parlementaire de la Francophonie and last: Felix Houphouet-Boigny Cup (Africa) +[2018-02-13T00:44:39.218] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:44:39.253] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:44:39.261] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:44:39.608] [INFO] cheese - inserting 1000 documents. first: Waiwera Infinity Thermal Spa Resort and last: Wikipedia:WikiProject Spam/LinkReports/websahar.com +[2018-02-13T00:44:39.670] [INFO] cheese - inserting 1000 documents. first: Erie--Lincoln and last: Koecher +[2018-02-13T00:44:39.693] [INFO] cheese - inserting 1000 documents. first: Category:FC Ceahlăul Piatra Neamț players and last: List of Republic of Ireland national futsal team matches +[2018-02-13T00:44:39.694] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T00:44:39.719] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:44:39.759] [INFO] cheese - inserting 1000 documents. first: FernandoSucre and last: Gocoo +[2018-02-13T00:44:39.818] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:44:39.862] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:44:39.930] [INFO] cheese - inserting 1000 documents. first: Hanoi International School and last: Category:Quaker articles by importance +[2018-02-13T00:44:40.035] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:44:40.114] [INFO] cheese - inserting 1000 documents. first: Category:Serbian football clubs 2009–10 season and last: Category:Schools in Cheshire East +[2018-02-13T00:44:40.148] [INFO] cheese - inserting 1000 documents. first: Hosjoe Church and last: Clatterbridge +[2018-02-13T00:44:40.246] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:44:40.228] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T00:44:40.533] [INFO] cheese - inserting 1000 documents. first: Penis gag and last: Flying Disk +[2018-02-13T00:44:40.559] [INFO] cheese - inserting 1000 documents. first: Hans-Juergen Pohmann and last: Wikipedia:Requests for checkuser/Case/JSane +[2018-02-13T00:44:40.572] [INFO] cheese - inserting 1000 documents. first: Herzegovina Uprising (1852-62) and last: Streltzoviella insularis +[2018-02-13T00:44:40.577] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:44:40.593] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:44:40.601] [INFO] cheese - inserting 1000 documents. first: If You Ever Change Your Mind and last: State Route 178 (New York) +[2018-02-13T00:44:40.654] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:44:40.699] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T00:44:40.788] [INFO] cheese - inserting 1000 documents. first: File:Undocumented2010Poster.jpg and last: Template:Fb competition 2012 Torneo de Honor +[2018-02-13T00:44:40.850] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:44:40.970] [INFO] cheese - inserting 1000 documents. first: Category:Law firms established in 1826 and last: Category:Niagara River Lions coaches +[2018-02-13T00:44:40.970] [INFO] cheese - inserting 1000 documents. first: Urmila Aryal and last: Henkka Seppaelae +[2018-02-13T00:44:40.992] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:44:41.165] [INFO] cheese - batch complete in: 1.346 secs +[2018-02-13T00:44:41.232] [INFO] cheese - inserting 1000 documents. first: Nigeria Defence Academy and last: John Neschling +[2018-02-13T00:44:41.292] [INFO] cheese - inserting 1000 documents. first: Herbert B. Maw and last: Template:Events at the 2003 Pan American Games +[2018-02-13T00:44:41.303] [INFO] cheese - inserting 1000 documents. first: Jagdfliegerfuehrer Rumaenien and last: Tuscherz Alfermee +[2018-02-13T00:44:41.307] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:44:41.335] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:44:41.360] [INFO] cheese - inserting 1000 documents. first: Category:MEPs for Hungary 2014–19 and last: Markham Stouffville Hospital Terminal +[2018-02-13T00:44:41.361] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:44:41.458] [INFO] cheese - inserting 1000 documents. first: Natalya Kubrina and last: Gregormpista +[2018-02-13T00:44:41.465] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T00:44:41.562] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:44:41.583] [INFO] cheese - inserting 1000 documents. first: Category:US curling champions and last: Lohnbuchhalter Kremke +[2018-02-13T00:44:41.634] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:44:41.662] [INFO] cheese - inserting 1000 documents. first: Furstenstein and last: Iskembe Corbas +[2018-02-13T00:44:41.694] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:44:42.011] [INFO] cheese - inserting 1000 documents. first: Organized crime in Bosnia and Herzegovina and last: Mohamed Nagy +[2018-02-13T00:44:42.037] [INFO] cheese - inserting 1000 documents. first: Harold Sidney Harmsworth, 1st Viscount Rothermere and last: File:Wall of Serpents.jpg +[2018-02-13T00:44:42.077] [INFO] cheese - inserting 1000 documents. first: File:Capitol Pride Salem Logo.jpg.png and last: Category:Étoile Lusitana players +[2018-02-13T00:44:42.094] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:44:42.101] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:44:42.114] [INFO] cheese - inserting 1000 documents. first: Nephopteryx validella and last: Multicoloria berlandella +[2018-02-13T00:44:42.116] [INFO] cheese - inserting 1000 documents. first: Premysl, the Ploughman and last: Louis Louis-Dreyfus +[2018-02-13T00:44:42.163] [INFO] cheese - inserting 1000 documents. first: Ruth Platt and last: Monarcha melanonotus +[2018-02-13T00:44:42.165] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:44:42.178] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:44:42.208] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:44:42.253] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:44:42.652] [INFO] cheese - inserting 1000 documents. first: A Stitch in Time (Continuum) and last: Category:Lists of tallest buildings in New Jersey +[2018-02-13T00:44:42.659] [INFO] cheese - inserting 1000 documents. first: Template:Yugoslavia squad 1967 Mediterranean Games (men's handball) and last: Template:The Fabulous Kangaroos +[2018-02-13T00:44:42.668] [INFO] cheese - inserting 1000 documents. first: Template:User jewell and last: 1942–43 Blackpool F.C. season +[2018-02-13T00:44:42.684] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Magazines/Animage/2003/06 and last: HMS Ambassador +[2018-02-13T00:44:42.732] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:44:42.742] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:44:42.791] [INFO] cheese - inserting 1000 documents. first: Titanic, mille e una storia and last: Category:Jurassic plants +[2018-02-13T00:44:42.797] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:44:42.811] [INFO] cheese - inserting 1000 documents. first: The Broken heart and last: Wikipedia:Articles for deletion/Hate Song +[2018-02-13T00:44:42.852] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:44:42.904] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:44:42.909] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:44:43.311] [INFO] cheese - inserting 1000 documents. first: 2017 Delaware Fightin' Blue Hens football team and last: Category:United States regulations +[2018-02-13T00:44:43.345] [INFO] cheese - inserting 1000 documents. first: Simon Husbands and last: Mount Meeker +[2018-02-13T00:44:43.378] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:44:43.433] [INFO] cheese - inserting 1000 documents. first: Carlos Isaac and last: Barbara Kuriger +[2018-02-13T00:44:43.404] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:44:43.546] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:44:43.599] [INFO] cheese - inserting 1000 documents. first: Tom Cudahy and last: Category:Worth Dying For albums +[2018-02-13T00:44:43.668] [INFO] cheese - inserting 1000 documents. first: Penn National Race Course and last: Italian profanity +[2018-02-13T00:44:43.719] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:44:43.751] [INFO] cheese - inserting 1000 documents. first: Texas Women and last: File:Az catt 1953.jpg +[2018-02-13T00:44:43.876] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T00:44:43.879] [INFO] cheese - inserting 1000 documents. first: Macadam Avenue and last: Southwark Playhouse +[2018-02-13T00:44:43.969] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:44:44.096] [INFO] cheese - batch complete in: 1.244 secs +[2018-02-13T00:44:44.170] [INFO] cheese - inserting 1000 documents. first: Category:Works set in the 4th century and last: David Cutler (disambiguation) +[2018-02-13T00:44:44.248] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:44:44.284] [INFO] cheese - inserting 1000 documents. first: Argyrodines pulchella and last: La bande à Renaud +[2018-02-13T00:44:44.314] [INFO] cheese - inserting 1000 documents. first: Arab Briton and last: Infanta Ana de Jesus Maria, Duchess of Loule +[2018-02-13T00:44:44.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Silver Knight Awards and last: Category:Funiculinidae +[2018-02-13T00:44:44.344] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:44:44.379] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:44:44.459] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:44:44.536] [INFO] cheese - inserting 1000 documents. first: 1977 in heavy metal music and last: Hezbollah military activities +[2018-02-13T00:44:44.593] [INFO] cheese - inserting 1000 documents. first: Zoquitlán and last: Paranginskiy +[2018-02-13T00:44:44.626] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:44:44.653] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:44:44.678] [INFO] cheese - inserting 1000 documents. first: Be My Lover Now and last: Mauricio dos Santos Nascimento +[2018-02-13T00:44:44.709] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T00:44:44.711] [INFO] cheese - inserting 1000 documents. first: Camaquã State Park and last: Template:Gastropods.com +[2018-02-13T00:44:44.765] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:44:44.888] [INFO] cheese - inserting 1000 documents. first: La Bande a Renaud and last: Wikipedia:Today's featured article/July 8, 2014 +[2018-02-13T00:44:44.926] [INFO] cheese - inserting 1000 documents. first: Whiston, Staffordshire and last: Here's Your Mule +[2018-02-13T00:44:44.929] [INFO] cheese - inserting 1000 documents. first: Donna Theodore and last: La Melodia de la Calle +[2018-02-13T00:44:44.944] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:44:44.970] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:44:44.980] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:44:45.021] [INFO] cheese - inserting 1000 documents. first: Paranginski and last: File:Now the Animals Have a Voice.jpg +[2018-02-13T00:44:45.073] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:44:45.151] [INFO] cheese - inserting 1000 documents. first: Saint Nicholas Serbian Orthodox Church, Szeged and last: Wikipedia:Articles for deletion/Casanova Frankenstein +[2018-02-13T00:44:45.162] [INFO] cheese - inserting 1000 documents. first: Panelist and last: Xak III: The Eternal Recurrence +[2018-02-13T00:44:45.200] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:44:45.228] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:44:45.246] [INFO] cheese - inserting 1000 documents. first: Stara Lubovna District and last: Sanindo +[2018-02-13T00:44:45.267] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2014-07-08 and last: Berdmore's narrow mouthed frogs +[2018-02-13T00:44:45.287] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:44:45.316] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:44:45.395] [INFO] cheese - inserting 1000 documents. first: List of RPM number-one country singles chart of 1996 (Canada) and last: File:Aranjman 2011.jpeg +[2018-02-13T00:44:45.441] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:44:45.447] [INFO] cheese - inserting 1000 documents. first: Pitcairnia heterophylla and last: Go Away Stowaway +[2018-02-13T00:44:45.501] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:44:45.518] [INFO] cheese - inserting 1000 documents. first: Nymphaea zenkeri 'Red' and last: Saint Antoine Street +[2018-02-13T00:44:45.556] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:44:45.579] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nhadephanoi.net and last: NBER Working Paper +[2018-02-13T00:44:45.638] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:44:45.689] [INFO] cheese - inserting 1000 documents. first: Category:Hurricane (band) albums and last: McGregor Formation +[2018-02-13T00:44:45.779] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:44:45.868] [INFO] cheese - inserting 1000 documents. first: KTTD and last: Picton Express +[2018-02-13T00:44:45.962] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:44:46.043] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2012 AFC Cup and last: Small Smiles Centers +[2018-02-13T00:44:46.057] [INFO] cheese - inserting 1000 documents. first: Category:War and politics and last: Narsimha (film) +[2018-02-13T00:44:46.102] [INFO] cheese - inserting 1000 documents. first: Physiological reviews and last: Wikipedia:Articles for deletion/Australian Wildlife Secrets Magazine +[2018-02-13T00:44:46.126] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:44:46.190] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:44:46.193] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:44:46.242] [INFO] cheese - inserting 1000 documents. first: Prosser Limestone and last: Wikipedia:Articles for deletion/Dave Wilson (Ontario politician) +[2018-02-13T00:44:46.263] [INFO] cheese - inserting 1000 documents. first: Skipton Girls High and last: 11th Regiment of Militia +[2018-02-13T00:44:46.322] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:44:46.330] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T00:44:46.679] [INFO] cheese - inserting 1000 documents. first: Always & For Real and last: Pixies (band) +[2018-02-13T00:44:46.736] [INFO] cheese - inserting 1000 documents. first: Category:Big Ten Conference men's soccer standings templates and last: Category:Passenger rail transport in Iran +[2018-02-13T00:44:46.748] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:44:46.766] [INFO] cheese - inserting 1000 documents. first: Christmas bomber and last: Category:1990 conferences +[2018-02-13T00:44:46.790] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:44:46.819] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:44:46.907] [INFO] cheese - inserting 1000 documents. first: Acropora humilis and last: Xiangxiang City +[2018-02-13T00:44:46.955] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:44:47.063] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2012 Summer Olympics and last: Özal ailesi +[2018-02-13T00:44:47.065] [INFO] cheese - inserting 1000 documents. first: Mandunyane and last: In the Stone +[2018-02-13T00:44:47.123] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T00:44:47.136] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:44:47.188] [INFO] cheese - inserting 1000 documents. first: Images (Kenny Barron album) and last: South African general election, 2019 +[2018-02-13T00:44:47.204] [INFO] cheese - inserting 1000 documents. first: Prost AP01 and last: Cathay Pacific Cargo +[2018-02-13T00:44:47.232] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:44:47.257] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:44:47.315] [INFO] cheese - inserting 1000 documents. first: Template:Poland-wintersport-bio-stub and last: Timeline of the 2009–10 South Pacific cyclone season +[2018-02-13T00:44:47.376] [INFO] cheese - inserting 1000 documents. first: Özal aile and last: Hovsgol aymag +[2018-02-13T00:44:47.365] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:44:47.401] [INFO] cheese - inserting 1000 documents. first: Flock-1 18 and last: Teaching Mathematics and Its Applications +[2018-02-13T00:44:47.433] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:44:47.480] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:44:47.563] [INFO] cheese - inserting 1000 documents. first: Smile Away and last: Wicked Woman (album) +[2018-02-13T00:44:47.623] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:44:47.685] [INFO] cheese - inserting 1000 documents. first: Volume One and last: Andree Clair +[2018-02-13T00:44:47.711] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:44:47.716] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Jayne wind up and last: Imma hemixanthella +[2018-02-13T00:44:47.767] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected article/44, 2006 and last: Wikipedia:WikiProject Jewish Culture +[2018-02-13T00:44:47.832] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:44:47.898] [INFO] cheese - inserting 1000 documents. first: Portal:Metro Manila/Intro2 and last: Caesar (I Blame Coco song) +[2018-02-13T00:44:47.936] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:44:48.049] [INFO] cheese - inserting 1000 documents. first: Alastair Ross Goobey and last: Intercontinental Cup winning managers +[2018-02-13T00:44:48.083] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:44:48.119] [INFO] cheese - inserting 1000 documents. first: Jim Dutton and last: Franco manzi +[2018-02-13T00:44:48.258] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T00:44:48.287] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:44:48.407] [INFO] cheese - inserting 1000 documents. first: Limigantes (Iazyges serfs) and last: Underground: The Tokyo Gas Attack and the Japanese Psyche (Haruki Murakami book) +[2018-02-13T00:44:48.555] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T00:44:48.584] [INFO] cheese - inserting 1000 documents. first: Tutasa, Boyaca and last: Kiritimati sandpiper +[2018-02-13T00:44:48.653] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:44:48.750] [INFO] cheese - inserting 1000 documents. first: 2012 FINA World Swimming Championships (25m) and last: List of newspapers published in Kentucky +[2018-02-13T00:44:48.807] [INFO] cheese - inserting 1000 documents. first: 2012 UConn Huskies football and last: Category:Wikipedia sockpuppets of Laksh talreja +[2018-02-13T00:44:48.813] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:44:48.870] [INFO] cheese - inserting 1000 documents. first: Doin' It (LL Cool J song) and last: 38th Wisconsin Volunteer Infantry Regiment +[2018-02-13T00:44:48.978] [INFO] cheese - batch complete in: 1.145 secs +[2018-02-13T00:44:49.017] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T00:44:49.108] [INFO] cheese - inserting 1000 documents. first: Jose Romeo and last: Yildiz class +[2018-02-13T00:44:49.165] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:44:49.165] [INFO] cheese - inserting 1000 documents. first: Ashley Madison and last: Earldom of Radnor +[2018-02-13T00:44:49.251] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T00:44:49.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elitefoot.com and last: Yves Bitséki Moto +[2018-02-13T00:44:49.417] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T00:44:49.426] [INFO] cheese - inserting 1000 documents. first: Karl Friedrich von Weizsacker and last: La Boheme (Leoncavallo) +[2018-02-13T00:44:49.429] [INFO] cheese - inserting 1000 documents. first: List of newspapers published in Louisiana and last: Go Youn-ha +[2018-02-13T00:44:49.442] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Orubel and last: Venetian–Genoese Wars +[2018-02-13T00:44:49.467] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:44:49.473] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:44:49.511] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:44:49.623] [INFO] cheese - inserting 1000 documents. first: List of hospitals in Minnesota and last: Sliven, Bulgaria +[2018-02-13T00:44:49.632] [INFO] cheese - inserting 1000 documents. first: Washington Redskin and last: AEG Electrolux +[2018-02-13T00:44:49.659] [INFO] cheese - inserting 1000 documents. first: Stephen Schlesinger and last: Michael Kostka +[2018-02-13T00:44:49.659] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:44:49.667] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:44:49.699] [INFO] cheese - batch complete in: 0.232 secs +[2018-02-13T00:44:49.811] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations in the canton of Aargau and last: Paul Ernst (Avenger writer) +[2018-02-13T00:44:49.860] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:44:49.918] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sangita Phogat and last: Template:Buriram United F.C. matches +[2018-02-13T00:44:49.924] [INFO] cheese - inserting 1000 documents. first: Yu-bin and last: Batei Nissan Bak +[2018-02-13T00:44:49.971] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:44:49.970] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:44:49.984] [INFO] cheese - inserting 1000 documents. first: Jan Bjoerklund and last: Dundgovi Aymag +[2018-02-13T00:44:50.028] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:44:50.030] [INFO] cheese - inserting 1000 documents. first: Category:Historic constituencies in County Offaly and last: Category:Western Equatoria +[2018-02-13T00:44:50.088] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:44:50.103] [INFO] cheese - inserting 1000 documents. first: Shumen, Bulgaria and last: Katun +[2018-02-13T00:44:50.178] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:44:50.224] [INFO] cheese - inserting 1000 documents. first: Arainn Mhor and last: Bojan Nikolic +[2018-02-13T00:44:50.246] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:44:50.346] [INFO] cheese - inserting 1000 documents. first: Lockheed F-94C-1-LO Starfire and last: Joseph M. Fletcher +[2018-02-13T00:44:50.381] [INFO] cheese - inserting 1000 documents. first: Mascarene Grass Frog and last: Hyeonmi +[2018-02-13T00:44:50.397] [INFO] cheese - inserting 1000 documents. first: Category:2017 in men's volleyball and last: South Lindsey Township, Benton County, Missouri +[2018-02-13T00:44:50.438] [INFO] cheese - inserting 1000 documents. first: Orland Main Airfield and last: Mada'in +[2018-02-13T00:44:50.453] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:44:50.540] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T00:44:50.582] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:44:50.595] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:44:50.726] [INFO] cheese - inserting 1000 documents. first: Saint Stanislaus Roman Catholic Church Complex and last: Peterborough Greyhound Stadium +[2018-02-13T00:44:50.775] [INFO] cheese - inserting 1000 documents. first: Lucius Cornelius Merula (consul 87 BC) and last: Jason Bell (American football) +[2018-02-13T00:44:50.806] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:44:50.902] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:44:51.054] [INFO] cheese - inserting 1000 documents. first: Le peril jeune and last: Jozin z bazin +[2018-02-13T00:44:51.169] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:44:51.255] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian WikiJanitors and last: Zoom (TV series) +[2018-02-13T00:44:51.258] [INFO] cheese - inserting 1000 documents. first: Ukrainian Catholic Metropolitan Archdiocese of Ivano-Frankivsk and last: Template:1994–95 NHL Western Conference standings/doc +[2018-02-13T00:44:51.290] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Top 25 Report/December 2009 and last: Draft:Leopold and His Fiction +[2018-02-13T00:44:51.321] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:44:51.356] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T00:44:51.413] [INFO] cheese - inserting 1000 documents. first: Pethia manipurensis and last: State Route 345 (New York) +[2018-02-13T00:44:51.413] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:44:51.541] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:44:51.661] [INFO] cheese - inserting 1000 documents. first: KXTS-LD and last: North Carolina Highway 10 (mid-1930s) +[2018-02-13T00:44:51.765] [INFO] cheese - inserting 1000 documents. first: 11th Regiment of Militia (Continental Army) and last: Homosexual Offences (Northern Ireland) Order 1982 +[2018-02-13T00:44:51.771] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T00:44:51.810] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:44:51.970] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CUP/S/JC and last: New York Route 376 +[2018-02-13T00:44:51.982] [INFO] cheese - inserting 1000 documents. first: Template:RWS/doc and last: NBA 2K15 (videogame) +[2018-02-13T00:44:52.006] [INFO] cheese - inserting 1000 documents. first: Chōgosonshiji Temple and last: Makidai +[2018-02-13T00:44:52.022] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:44:52.023] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:44:52.104] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:44:52.125] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Xinye Village and last: Crossley tender +[2018-02-13T00:44:52.263] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:44:52.425] [INFO] cheese - inserting 1000 documents. first: Ivan Lukačić and last: Portal:Denmark/Selected article/6 +[2018-02-13T00:44:52.477] [INFO] cheese - inserting 1000 documents. first: North Carolina Highway 10 (pre-mid-1930s) and last: Category:University of North Carolina at Chapel Hill faculty +[2018-02-13T00:44:52.552] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:44:52.674] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T00:44:52.709] [INFO] cheese - inserting 1000 documents. first: Polytechnic University of Madrid and last: NY Route 598 +[2018-02-13T00:44:52.775] [INFO] cheese - inserting 1000 documents. first: 1971 in Estonian television and last: Category:Wikipedia infoboxes +[2018-02-13T00:44:52.801] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:44:52.832] [INFO] cheese - inserting 1000 documents. first: File:SV Hubentut Fortuna.svg and last: Sir Charles Hudson, 1st Baronet +[2018-02-13T00:44:52.858] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:44:52.946] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T00:44:53.000] [INFO] cheese - inserting 1000 documents. first: Category:Syrian expatriates in Jordan and last: Raouf Bernaoui +[2018-02-13T00:44:53.122] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:44:53.282] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable release/Yahoo! Music Jukebox and last: Dokis First Nation +[2018-02-13T00:44:53.328] [INFO] cheese - inserting 1000 documents. first: Route 598 (New York) and last: Goopy and Bagha +[2018-02-13T00:44:53.347] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:44:53.372] [INFO] cheese - inserting 1000 documents. first: Chief Hunter Jack and last: Syntax (typeface) +[2018-02-13T00:44:53.375] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:44:53.405] [INFO] cheese - inserting 1000 documents. first: Template:Fb cl2 header and last: List of longest cross-country trails +[2018-02-13T00:44:53.420] [INFO] cheese - inserting 1000 documents. first: Category:1985 in Estonian television and last: Mızıkçam +[2018-02-13T00:44:53.463] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:44:53.463] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:44:53.561] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:44:53.714] [INFO] cheese - inserting 1000 documents. first: Category:Defensor Sporting Club managers and last: Christkindelsmaerik +[2018-02-13T00:44:53.751] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:44:53.856] [INFO] cheese - inserting 1000 documents. first: Category:Novels about the Holocaust and last: Irish Language in Britain +[2018-02-13T00:44:53.918] [INFO] cheese - inserting 1000 documents. first: Category:1808 establishments in Georgia (U.S. state) and last: Llansantffraed, Ceredigion +[2018-02-13T00:44:53.922] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:44:53.926] [INFO] cheese - inserting 1000 documents. first: Papyrus Graecus Holmiensis and last: Jennifer Metcalfe +[2018-02-13T00:44:53.932] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2010 Serie A and last: Category:Neoclassical architecture in the United States by state +[2018-02-13T00:44:53.949] [INFO] cheese - inserting 1000 documents. first: Malmo Hogskola and last: 1494 Savo +[2018-02-13T00:44:53.974] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:44:53.986] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:44:54.023] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:44:54.030] [INFO] cheese - inserting 1000 documents. first: Guobo and last: Category:Curaçao tennis players +[2018-02-13T00:44:54.011] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:44:54.214] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:44:54.549] [INFO] cheese - inserting 1000 documents. first: Gornik Wieliczka and last: 41488 Sindbad +[2018-02-13T00:44:54.634] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:44:54.740] [INFO] cheese - inserting 1000 documents. first: Rugby Championship of Czechoslovakia and last: Rigid system +[2018-02-13T00:44:54.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Salomone and last: Wikipedia:Peer review/Paulins Kill/archive1 +[2018-02-13T00:44:54.785] [INFO] cheese - inserting 1000 documents. first: Students Against Destructive Decisions and last: Category:Archaeological cultures of South Asia +[2018-02-13T00:44:54.787] [INFO] cheese - inserting 1000 documents. first: Category:Curaçao men's volleyball players and last: Category:Mediterranean Games bronze medalists for Croatia +[2018-02-13T00:44:54.788] [INFO] cheese - inserting 1000 documents. first: Les Jeux de l'amour and last: Wikipedia:Categories for discussion/Log/2014 July 16 +[2018-02-13T00:44:54.817] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:44:54.819] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T00:44:54.836] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:44:54.881] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T00:44:54.893] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T00:44:55.036] [INFO] cheese - inserting 1000 documents. first: Lo Que Paso Paso and last: 13982 Thunberg +[2018-02-13T00:44:55.067] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:44:55.238] [INFO] cheese - inserting 1000 documents. first: File:Kellermensch Goliath Album Cover.jpg and last: Prosoplus fuscosignatus +[2018-02-13T00:44:55.279] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:44:55.296] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2014 July 17 and last: Holyland affair +[2018-02-13T00:44:55.309] [INFO] cheese - inserting 1000 documents. first: St. Denys' Priory and last: The New Daisy Theatre +[2018-02-13T00:44:55.328] [INFO] cheese - inserting 1000 documents. first: Soren Hansen and last: Wikipedia:Articles for deletion/Cow goes moo +[2018-02-13T00:44:55.343] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:44:55.371] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:44:55.380] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:44:55.537] [INFO] cheese - inserting 1000 documents. first: 42191 Thurmann and last: Andy McCombie +[2018-02-13T00:44:55.589] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:44:55.627] [INFO] cheese - inserting 1000 documents. first: Category:FIBA Asia Under-18 Championship and last: Template:POTD/2014-07-17 +[2018-02-13T00:44:55.670] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:44:55.695] [INFO] cheese - inserting 1000 documents. first: Viswaksena and last: 1922-23 Ligue Magnus season +[2018-02-13T00:44:55.771] [INFO] cheese - inserting 1000 documents. first: Prosoplus fuscosticticus and last: National Basketball Coaches Association +[2018-02-13T00:44:55.789] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T00:44:55.841] [INFO] cheese - inserting 1000 documents. first: 2006 US midterm elections and last: Borgenhaugen +[2018-02-13T00:44:55.881] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:44:55.913] [INFO] cheese - inserting 1000 documents. first: Cephalandra and last: Category:European seas +[2018-02-13T00:44:55.993] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:44:56.059] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:44:56.110] [INFO] cheese - inserting 1000 documents. first: UWA Publishing and last: North Bend Airport +[2018-02-13T00:44:56.225] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:44:56.323] [INFO] cheese - inserting 1000 documents. first: Tsubasa Baseball Club and last: Football Association of Odisha +[2018-02-13T00:44:56.330] [INFO] cheese - inserting 1000 documents. first: File:TopGearWinter.jpg and last: Babes in the Wood murders (Wild Park) +[2018-02-13T00:44:56.398] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:44:56.430] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:44:56.583] [INFO] cheese - inserting 1000 documents. first: Carlson Curve and last: Percy Jackson (footballer born 1907) +[2018-02-13T00:44:56.699] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:44:56.741] [INFO] cheese - inserting 1000 documents. first: List of Members of the United States House of Representatives in the 106th Congress by seniority and last: Epinay-sous-Senart +[2018-02-13T00:44:56.747] [INFO] cheese - inserting 1000 documents. first: Murry Taylor and last: File:The Newly Fenced Catholic Church.jpg +[2018-02-13T00:44:56.814] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:44:56.840] [INFO] cheese - inserting 1000 documents. first: Brian Nelson (screenwriter) and last: Category:Mexican classical violinists +[2018-02-13T00:44:56.841] [INFO] cheese - inserting 1000 documents. first: 1959-60 Polska Liga Hokejowa season and last: Wikipedia:WikiProject Spam/LinkReports/auto-media.info +[2018-02-13T00:44:56.844] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T00:44:56.925] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:44:56.986] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T00:44:57.171] [INFO] cheese - inserting 1000 documents. first: USS LST-230 and last: David Webb (activist) +[2018-02-13T00:44:57.198] [INFO] cheese - inserting 1000 documents. first: Draft:Battle of Cape Burnas (1942) and last: Shou'an County +[2018-02-13T00:44:57.212] [INFO] cheese - inserting 1000 documents. first: File:Tom Swift and His Electric Runabout (book cover).jpg and last: File:8Ball & MJG - In Our Lifetime, Vol. 1.jpg +[2018-02-13T00:44:57.246] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:44:57.254] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T00:44:57.305] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:44:57.425] [INFO] cheese - inserting 1000 documents. first: 1981-82 Norwegian 1. Divisjon season and last: 1997-98 Belgian Hockey League season +[2018-02-13T00:44:57.477] [INFO] cheese - inserting 1000 documents. first: Category:Vice-Chancellors of the University of Delhi and last: Template:Karzai second cabinet nominees +[2018-02-13T00:44:57.484] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:44:57.549] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:44:57.643] [INFO] cheese - inserting 1000 documents. first: Serviciul Independent pentru Interventii si Actiuni Speciale and last: Horacio Pena (Argentine actor) +[2018-02-13T00:44:57.681] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:44:57.763] [INFO] cheese - inserting 1000 documents. first: Marie Harf and last: Angraecum subulatum +[2018-02-13T00:44:57.804] [INFO] cheese - inserting 1000 documents. first: File:On The Radio LP.jpg and last: Farseer +[2018-02-13T00:44:57.905] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T00:44:57.918] [INFO] cheese - inserting 1000 documents. first: Shouan County and last: All Saints Church, Acton +[2018-02-13T00:44:57.872] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:44:57.920] [INFO] cheese - inserting 1000 documents. first: 1997-98 Bulgarian Hockey League season and last: 2006-07 HKFA Chairman's Cup +[2018-02-13T00:44:57.962] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:44:58.034] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:44:58.163] [INFO] cheese - inserting 1000 documents. first: Owada Anchorage and last: Gammarus chevreuxi +[2018-02-13T00:44:58.220] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:44:58.288] [INFO] cheese - inserting 1000 documents. first: Animal Crossing (3DS) and last: 2011 Save Cup - Singles +[2018-02-13T00:44:58.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/UC4 and last: Cromarty railway station +[2018-02-13T00:44:58.356] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:44:58.445] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T00:44:58.564] [INFO] cheese - inserting 1000 documents. first: Foul Play (The Adventures of Black Beauty) and last: Pterolophia major +[2018-02-13T00:44:58.611] [INFO] cheese - inserting 1000 documents. first: Portal:San Francisco Bay Area/Selected historical image/22 and last: Protorthodes curtica +[2018-02-13T00:44:58.626] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:44:58.644] [INFO] cheese - inserting 1000 documents. first: 2011 Seguros Bolívar Open Cali - Doubles and last: 2012 Moorilla Hobart International - Singles +[2018-02-13T00:44:58.662] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian violinists and last: 1951 movies +[2018-02-13T00:44:58.702] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:44:58.722] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:44:58.748] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T00:44:58.850] [INFO] cheese - inserting 1000 documents. first: Template:User Army E-9 SMA and last: Luis Miguel Ramis +[2018-02-13T00:44:58.945] [INFO] cheese - inserting 1000 documents. first: 2012 Prime Cup Aberto de São Paulo - Doubles and last: East Germany-Israel relations +[2018-02-13T00:44:58.962] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:44:59.039] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:44:59.096] [INFO] cheese - inserting 1000 documents. first: John Brackenridge (clergyman) and last: Category:Prehistoric crustaceans +[2018-02-13T00:44:59.152] [INFO] cheese - inserting 1000 documents. first: Pterolophia virgulata and last: Wikipedia:Abuse reports/128.163.214.120 +[2018-02-13T00:44:59.171] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:44:59.192] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:44:59.307] [INFO] cheese - inserting 1000 documents. first: Phil Nyokai James and last: Wikipedia:Version 1.0 Editorial Team/Former country articles by quality statistics +[2018-02-13T00:44:59.328] [INFO] cheese - inserting 1000 documents. first: East Germany-Soviet Union relations and last: Mauritius national football team results (1980-1989) +[2018-02-13T00:44:59.352] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:44:59.355] [INFO] cheese - inserting 1000 documents. first: List of oil and gas field of the Barents Sea and last: Large tree-frogs +[2018-02-13T00:44:59.368] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:44:59.439] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:44:59.693] [INFO] cheese - inserting 1000 documents. first: William T. Sedgwick and last: Ciobruciu +[2018-02-13T00:44:59.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Abuse reports/128.178.41.8 and last: Doukas, Andronikos +[2018-02-13T00:44:59.755] [INFO] cheese - inserting 1000 documents. first: Mauritius national football team results (2010-2019) and last: Tennis at the 2011 Summer Universiade - Men's Singles +[2018-02-13T00:44:59.773] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:44:59.807] [INFO] cheese - inserting 1000 documents. first: Francisco Zumaque and last: Dubyonsky District, Republic of Mordovia +[2018-02-13T00:44:59.812] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T00:44:59.830] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:44:59.894] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:45:00.138] [INFO] cheese - inserting 1000 documents. first: Large tree frog and last: Richard Ian Colin Sampson +[2018-02-13T00:45:00.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Former country articles by quality and last: Neil MacFarquhar +[2018-02-13T00:45:00.209] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:45:00.231] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T00:45:00.317] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2011 Summer Universiade - Mixed Doubles and last: Newens Sanitary Dairy Historic District +[2018-02-13T00:45:00.379] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:45:00.435] [INFO] cheese - inserting 1000 documents. first: Pterolophia subnigrosparsa and last: Cæsariana +[2018-02-13T00:45:00.571] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:45:00.592] [INFO] cheese - inserting 1000 documents. first: Portal:Chess/Selected article/Introduction/Chess opening and last: George A. Killenberg +[2018-02-13T00:45:00.639] [INFO] cheese - inserting 1000 documents. first: Category:Bungalow architecture in Virginia and last: Portal:Smooth jazz/Related portals +[2018-02-13T00:45:00.727] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T00:45:00.742] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T00:45:00.969] [INFO] cheese - inserting 1000 documents. first: Royal British Society of Sculptors and last: Queen Cecilia Blanka +[2018-02-13T00:45:01.038] [INFO] cheese - inserting 1000 documents. first: Richard Sampson (author) and last: Who are the Mind Benders? +[2018-02-13T00:45:01.100] [INFO] cheese - inserting 1000 documents. first: Sarah Wilhelmy and last: Herschel Krustovski +[2018-02-13T00:45:01.089] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:45:01.180] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T00:45:01.256] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:45:01.330] [INFO] cheese - inserting 1000 documents. first: Manchester Borough Council election, 1947 and last: Novosieversia +[2018-02-13T00:45:01.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/botswana-holidays.com and last: The Albert Hall +[2018-02-13T00:45:01.375] [INFO] cheese - inserting 1000 documents. first: Supernetto and last: Category:448 BC deaths +[2018-02-13T00:45:01.414] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:45:01.457] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:45:01.461] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T00:45:01.826] [INFO] cheese - inserting 1000 documents. first: Hitcheniopsis alismatifolia and last: Metarbela stivafer +[2018-02-13T00:45:01.893] [INFO] cheese - inserting 1000 documents. first: Aiken High School and last: Wikipedia:Help desk/Archives/2006 October 30 +[2018-02-13T00:45:01.904] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:45:01.938] [INFO] cheese - inserting 1000 documents. first: Imperial Throne (micronation) and last: Category:Articles with obsolete information from February 2017 +[2018-02-13T00:45:01.979] [INFO] cheese - inserting 1000 documents. first: Herschel Shmoikel Pinchas Yerucham Krustovski and last: National Iranian Gas Export Company +[2018-02-13T00:45:02.004] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:45:02.012] [INFO] cheese - inserting 1000 documents. first: Compagnie Francaise D’assurance Pour Le Commerce Exterieur and last: Category:People murdered in Angola +[2018-02-13T00:45:02.049] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T00:45:02.087] [INFO] cheese - inserting 1000 documents. first: Aleksanteri Saarvala and last: Dedekind-MacNeille completion +[2018-02-13T00:45:02.097] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T00:45:02.119] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:45:02.171] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:45:02.395] [INFO] cheese - inserting 1000 documents. first: Saturation dive and last: Arbelodes guttata +[2018-02-13T00:45:02.440] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:45:02.464] [INFO] cheese - inserting 1000 documents. first: Category:Articles needing cleanup from February 2017 and last: ROAD FC 033 +[2018-02-13T00:45:02.520] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:45:02.546] [INFO] cheese - inserting 1000 documents. first: ASCII 7 and last: Category:1977 in British motorsport +[2018-02-13T00:45:02.568] [INFO] cheese - inserting 1000 documents. first: Fibre supplement and last: Guzmania undulatobracteata +[2018-02-13T00:45:02.590] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:45:02.616] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:45:02.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Agriculture/Beekeeping task force/Assessment and last: Long Black +[2018-02-13T00:45:02.704] [INFO] cheese - inserting 1000 documents. first: Sextuple and last: Kenjiro Haitani +[2018-02-13T00:45:02.715] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:45:02.799] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:45:02.907] [INFO] cheese - inserting 1000 documents. first: Arbelodes semifasciata and last: Alex Smith (footballer born 1939) +[2018-02-13T00:45:03.012] [INFO] cheese - inserting 1000 documents. first: File:InLoveAndWar2011Poster.jpg and last: Phālguṇa +[2018-02-13T00:45:03.048] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:45:03.122] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:45:03.183] [INFO] cheese - inserting 1000 documents. first: Murlocs and last: Russian War +[2018-02-13T00:45:03.264] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:45:03.288] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Budua and last: File:Ndèye Coumba Mbengue Diakhaté died 2001.png +[2018-02-13T00:45:03.347] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T00:45:03.433] [INFO] cheese - inserting 1000 documents. first: Wasted Youth (British Band) and last: Gulabrao patil +[2018-02-13T00:45:03.507] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:45:03.600] [INFO] cheese - inserting 1000 documents. first: Church Buildings and last: Digital Cafe +[2018-02-13T00:45:03.618] [INFO] cheese - inserting 1000 documents. first: Park View School (Birmingham) and last: 7th Earl of Galloway +[2018-02-13T00:45:03.680] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T00:45:03.700] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:45:03.719] [INFO] cheese - inserting 1000 documents. first: Petroleum fuels and last: Combe Inc. +[2018-02-13T00:45:03.814] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:45:03.889] [INFO] cheese - inserting 1000 documents. first: New Bridge Street railway station and last: British Army during the American War of Independence +[2018-02-13T00:45:03.946] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:45:03.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Obama administration health care proposal (2nd nomination) and last: Route 263 (Maryland) +[2018-02-13T00:45:03.998] [INFO] cheese - inserting 1000 documents. first: Gym Teacher: The Movie and last: Richard Jacobs Group +[2018-02-13T00:45:04.055] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:45:04.074] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:45:04.244] [INFO] cheese - inserting 1000 documents. first: Yumen Pass and last: Catalan regional elections, 2006 +[2018-02-13T00:45:04.260] [INFO] cheese - inserting 1000 documents. first: Idaho panhandle and last: Category:Canadian draughts players +[2018-02-13T00:45:04.280] [INFO] cheese - inserting 1000 documents. first: Malév Magyar Légiközlekedési Zrt. and last: Weight-of-conflict conjecture +[2018-02-13T00:45:04.317] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:45:04.328] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:45:04.338] [INFO] cheese - inserting 1000 documents. first: Category:Loyola Greyhounds basketball and last: Draft:Niranjan Pati +[2018-02-13T00:45:04.358] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:45:04.395] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:45:04.654] [INFO] cheese - inserting 1000 documents. first: Ober-Logone and last: Thierry Paterlini +[2018-02-13T00:45:04.671] [INFO] cheese - inserting 1000 documents. first: American Duties Act and last: Olympia orchestra +[2018-02-13T00:45:04.748] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:45:04.747] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:45:04.796] [INFO] cheese - inserting 1000 documents. first: Category:1722 in Massachusetts and last: Novo-Mikhaylovka +[2018-02-13T00:45:04.817] [INFO] cheese - inserting 1000 documents. first: Statute Law (Repeals) Act 1975 and last: File:Houdini FTP.JPG +[2018-02-13T00:45:04.832] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:45:04.871] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:45:04.872] [INFO] cheese - inserting 1000 documents. first: File:RC Rig sideview.jpg and last: Patterson State Park +[2018-02-13T00:45:04.942] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:45:05.136] [INFO] cheese - inserting 1000 documents. first: Somaiya sion and last: Independent Corrupt Practices and Other Related Offences Commission +[2018-02-13T00:45:05.186] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:45:05.208] [INFO] cheese - inserting 1000 documents. first: Category:Railway depots in Scotland and last: Dur-Dur +[2018-02-13T00:45:05.254] [INFO] cheese - inserting 1000 documents. first: Hold On! I'm a Comin' and last: 2008 Pacific Curling Championships +[2018-02-13T00:45:05.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/American Football League articles by quality statistics and last: Peter Pearson (British Army officer) +[2018-02-13T00:45:05.292] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T00:45:05.387] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:45:05.422] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:45:05.517] [INFO] cheese - inserting 1000 documents. first: Category:425 establishments and last: Category:Saint Leo Lions basketball +[2018-02-13T00:45:05.528] [INFO] cheese - inserting 1000 documents. first: Dreams (The Whitest Boy Alive album) and last: Skyhawk (2006) +[2018-02-13T00:45:05.607] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:45:05.635] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:45:05.774] [INFO] cheese - inserting 1000 documents. first: 1917–18 Mexican Primera Division season and last: 2007–08 Argentine Primera Division season +[2018-02-13T00:45:05.849] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:45:05.863] [INFO] cheese - inserting 1000 documents. first: Tinsley Green, West Sussex and last: Wikipedia:Version 1.0 Editorial Team/Pennsylvania articles by quality/70 +[2018-02-13T00:45:05.920] [INFO] cheese - inserting 1000 documents. first: Category:Christian missionaries in Sudan and last: Inga pithecolobioides +[2018-02-13T00:45:05.951] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Ingham County, Michigan and last: Category:Deaf templates +[2018-02-13T00:45:05.991] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:45:06.002] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:45:06.068] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:45:06.224] [INFO] cheese - inserting 1000 documents. first: Category:Diplomatic documents and last: File:TheGreatGatsby2012Poster.jpg +[2018-02-13T00:45:06.301] [INFO] cheese - inserting 1000 documents. first: 2007–08 Atletico Madrid season and last: Dimitri and Erica +[2018-02-13T00:45:06.308] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:45:06.312] [INFO] cheese - inserting 1000 documents. first: Rutanya Alda and last: File:Priopcea.jpg +[2018-02-13T00:45:06.337] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:45:06.448] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:45:06.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 January 9 and last: Wikipedia:Featured list candidates/Austin Aztex all-time roster/archive1 +[2018-02-13T00:45:06.673] [INFO] cheese - inserting 1000 documents. first: Pithecellobium reductum and last: File:Stormwater maintenance.jpg +[2018-02-13T00:45:06.708] [INFO] cheese - inserting 1000 documents. first: File:HeroFactoryTitleCard.jpg and last: 1990–91 Ohio Bobcats men's basketball team +[2018-02-13T00:45:06.708] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:45:06.738] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T00:45:06.744] [INFO] cheese - inserting 1000 documents. first: Erica and Dimitri and last: Ali Kucik +[2018-02-13T00:45:06.776] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:45:06.791] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:45:06.818] [INFO] cheese - inserting 1000 documents. first: Draft:Choppafield and last: John II of Cottereau, Baron of Jauche +[2018-02-13T00:45:06.877] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:45:06.988] [INFO] cheese - inserting 1000 documents. first: Miracle at Troas and last: Hestina hadeni +[2018-02-13T00:45:07.025] [INFO] cheese - batch complete in: 0.234 secs +[2018-02-13T00:45:07.032] [INFO] cheese - inserting 1000 documents. first: S Club 7 in L.A. and last: Rodney Come Home +[2018-02-13T00:45:07.097] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:45:07.119] [INFO] cheese - inserting 1000 documents. first: Eurogroup for Animals and last: Tess Oliveira +[2018-02-13T00:45:07.125] [INFO] cheese - inserting 1000 documents. first: Újireg and last: Tarek Abu Khdeir +[2018-02-13T00:45:07.187] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:45:07.191] [INFO] cheese - inserting 1000 documents. first: Category:135 mm artillery and last: Category:Litigation by party +[2018-02-13T00:45:07.197] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:45:07.265] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:45:07.296] [INFO] cheese - inserting 1000 documents. first: Phaya Thai (disambiguation) and last: Wikipedia:Articles for deletion/Russian help for Serbia during world war I +[2018-02-13T00:45:07.336] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:45:07.420] [INFO] cheese - inserting 1000 documents. first: Ardiconu, Tasova and last: Cross cover test +[2018-02-13T00:45:07.464] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:45:07.602] [INFO] cheese - inserting 1000 documents. first: A. A. Townsend and last: Wikipedia:WikiProject Architecture/Historic houses task force/Scope +[2018-02-13T00:45:07.617] [INFO] cheese - inserting 1000 documents. first: Confédération Syndicale Internationale and last: Kōji Yusa +[2018-02-13T00:45:07.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ocean Drive (album) and last: Tiny Meat +[2018-02-13T00:45:07.658] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:45:07.770] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:45:07.792] [INFO] cheese - inserting 1000 documents. first: Category:Calgary Oval X-Treme players and last: Wikipedia:Templates for discussion/Log/2010 January 14 +[2018-02-13T00:45:07.799] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:45:07.848] [INFO] cheese - inserting 1000 documents. first: File:2015 IIHF World U18 Championship Division II.png and last: Bowling Green massacre +[2018-02-13T00:45:07.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia Blackout and last: Banja, Arandelovac +[2018-02-13T00:45:07.944] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:45:07.959] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:45:07.958] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:45:08.308] [INFO] cheese - inserting 1000 documents. first: Category:Moths described in 2007 and last: File:Insomniac Folklore Sleep Cassette.jpg +[2018-02-13T00:45:08.359] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:45:08.570] [INFO] cheese - inserting 1000 documents. first: 2007-08 NHL transactions and last: Wikipedia:Articles for deletion/Terry George (entrepreneur) +[2018-02-13T00:45:08.682] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:45:08.697] [INFO] cheese - inserting 1000 documents. first: Banjalucka Pivara and last: Hypsopygia decetialis +[2018-02-13T00:45:08.715] [INFO] cheese - inserting 1000 documents. first: Grover Cleveland presidencies and last: Category:1985 in women's sport by country +[2018-02-13T00:45:08.811] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:45:08.815] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T00:45:08.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2010 January 14 and last: Science fiction/Soft science fiction +[2018-02-13T00:45:08.969] [INFO] cheese - inserting 1000 documents. first: 1747 English cricket season and last: Kaiser Shipbuilding Corporation +[2018-02-13T00:45:08.969] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T00:45:09.034] [INFO] cheese - inserting 1000 documents. first: Ulster Valley and last: Evripides Demosthenous +[2018-02-13T00:45:09.103] [INFO] cheese - batch complete in: 1.332 secs +[2018-02-13T00:45:09.114] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:45:09.368] [INFO] cheese - inserting 1000 documents. first: Category:1984 in women's sport by country and last: Template:2017 Mid-American Conference men's soccer standings +[2018-02-13T00:45:09.370] [INFO] cheese - inserting 1000 documents. first: Microchâteau and last: 2005 A Lyga +[2018-02-13T00:45:09.458] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:45:09.488] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:45:09.498] [INFO] cheese - inserting 1000 documents. first: 4th Alberta Senate nominee election and last: Beth Cuje +[2018-02-13T00:45:09.597] [INFO] cheese - inserting 1000 documents. first: Schizothorax huegelii and last: Asota concolora +[2018-02-13T00:45:09.595] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:45:09.700] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:45:09.840] [INFO] cheese - inserting 1000 documents. first: Getting to yes and last: Topsportcentrum Rotterdam +[2018-02-13T00:45:09.842] [INFO] cheese - inserting 1000 documents. first: Evripedes Demosthenous and last: Category:Trade unions established in 1939 +[2018-02-13T00:45:09.924] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:45:09.935] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T00:45:09.960] [INFO] cheese - inserting 1000 documents. first: Bethlen, son of Lorinc and last: Cape Kamui +[2018-02-13T00:45:10.009] [INFO] cheese - inserting 1000 documents. first: Category:Lutheranism in China and last: Category:Rowing in Vanuatu +[2018-02-13T00:45:10.011] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:45:10.064] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:45:10.129] [INFO] cheese - inserting 1000 documents. first: Culture of Mangalore and last: Bettina Shaw-Lawrence +[2018-02-13T00:45:10.173] [INFO] cheese - inserting 1000 documents. first: Tianhe Sports Center South Station and last: Wikipedia:Articles for deletion/Dragón Negro +[2018-02-13T00:45:10.179] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:45:10.243] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:45:10.266] [INFO] cheese - inserting 1000 documents. first: Bucje (Priboj) and last: F. Nevanlinna +[2018-02-13T00:45:10.303] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:45:10.326] [INFO] cheese - inserting 1000 documents. first: Afroartelida teunisseni and last: Gray-breasted flycatcher +[2018-02-13T00:45:10.385] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:45:10.410] [INFO] cheese - inserting 1000 documents. first: Category:Canadian docufiction films and last: Diocese of Arges and Muscel +[2018-02-13T00:45:10.479] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:45:10.518] [INFO] cheese - inserting 1000 documents. first: File:Rt3 screenshot.png and last: John Schwartz +[2018-02-13T00:45:10.579] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:45:10.676] [INFO] cheese - inserting 1000 documents. first: File:Salys statue of Frederik V 2.jpg and last: Cape Gyobumi +[2018-02-13T00:45:10.688] [INFO] cheese - inserting 1000 documents. first: Template:1983-84 NHL season by team and last: 1988-89 Chicago Blackhawks season +[2018-02-13T00:45:10.710] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:45:10.748] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:45:10.765] [INFO] cheese - inserting 1000 documents. first: 118th meridian and last: Joseph Nane +[2018-02-13T00:45:10.790] [INFO] cheese - inserting 1000 documents. first: Category:Human overpopulation think tank and last: Nicholas Ball (Alderman) +[2018-02-13T00:45:10.822] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:45:10.850] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:45:10.857] [INFO] cheese - inserting 1000 documents. first: Qatar-Sweden relations and last: Category:1996–97 in British basketball leagues +[2018-02-13T00:45:10.904] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:45:10.982] [INFO] cheese - inserting 1000 documents. first: Cape Inubo and last: Four Leaf Studios +[2018-02-13T00:45:11.080] [INFO] cheese - inserting 1000 documents. first: Template:Timeline of El Greco's life and last: Yellowman (candy) +[2018-02-13T00:45:11.094] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:45:11.251] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:45:11.442] [INFO] cheese - inserting 1000 documents. first: Template:Frati aircraft and last: Rotatory canter +[2018-02-13T00:45:11.446] [INFO] cheese - inserting 1000 documents. first: List of Asian Games medalists in softball and last: FSM flag +[2018-02-13T00:45:11.551] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:45:11.539] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:45:11.643] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eric Schmidt (DJ) and last: Wikipedia:Arbitration Committee/Discretionary sanctions +[2018-02-13T00:45:11.675] [INFO] cheese - inserting 1000 documents. first: Category:Organisations based in Estonia and last: 2017 Ecuador Open Quito - Doubles +[2018-02-13T00:45:11.710] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T00:45:11.718] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T00:45:11.796] [INFO] cheese - inserting 1000 documents. first: Chateau de Durfort and last: Idaho newspapers +[2018-02-13T00:45:11.842] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:45:12.044] [INFO] cheese - inserting 1000 documents. first: File:Stuart hogg.jpg and last: Bellows Free Academy, Fairfax +[2018-02-13T00:45:12.123] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:45:12.255] [INFO] cheese - inserting 1000 documents. first: Kopje warbler and last: Template:Wexford Under-21 Hurling Team 1970 +[2018-02-13T00:45:12.267] [INFO] cheese - inserting 1000 documents. first: Category:Belarusian nuns and last: Monte di Pietà +[2018-02-13T00:45:12.303] [INFO] cheese - inserting 1000 documents. first: Portal:National Football League/Selected picture and last: Cuno Pumpin +[2018-02-13T00:45:12.321] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:45:12.329] [INFO] cheese - inserting 1000 documents. first: Category:Identity documents by country and last: Template:User Rebol-1 +[2018-02-13T00:45:12.333] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:45:12.347] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:45:12.438] [INFO] cheese - inserting 1000 documents. first: Culture of Brisbane and last: Carolina Police Department +[2018-02-13T00:45:12.441] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:45:12.552] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:45:12.872] [INFO] cheese - inserting 1000 documents. first: Cunegonde (disambiguation) and last: Army-proof +[2018-02-13T00:45:12.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Indian Wikipedians' notice board/It's new and last: Zakerana nepalensis +[2018-02-13T00:45:12.945] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:45:13.002] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T00:45:13.019] [INFO] cheese - inserting 1000 documents. first: File:Panoply logo.png and last: Category:Lists of football clubs in the United Kingdom +[2018-02-13T00:45:13.076] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions established in 1931 and last: Cheesquatalawny +[2018-02-13T00:45:13.153] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T00:45:13.194] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T00:45:13.238] [INFO] cheese - inserting 1000 documents. first: Category:Austrian Catholics and last: K-58 (Kansas highway) +[2018-02-13T00:45:13.309] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T00:45:13.316] [INFO] cheese - inserting 1000 documents. first: Category:Spanish sprinters and last: It's Lonely at the Bottom/Unstuck in Time +[2018-02-13T00:45:13.408] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T00:45:13.625] [INFO] cheese - inserting 1000 documents. first: Australian troops and last: Template:Taxonomy/Callichthyidae +[2018-02-13T00:45:13.638] [INFO] cheese - inserting 1000 documents. first: Bar screen and last: Wikipedia:Articles for deletion/2011 MLS Reserve Division +[2018-02-13T00:45:13.689] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:45:13.700] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:45:13.747] [INFO] cheese - inserting 1000 documents. first: State Highway 41 (Texas) and last: Murray Chotiner +[2018-02-13T00:45:13.749] [INFO] cheese - inserting 1000 documents. first: Robert Campbell (Northern Ireland politician) and last: Enzo Andía +[2018-02-13T00:45:13.808] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:45:13.813] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:45:13.884] [INFO] cheese - inserting 1000 documents. first: Great Indian Rhinoceros and last: Category:Romanian heavy metal musical groups +[2018-02-13T00:45:13.959] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:45:14.054] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 1035-1 and last: K. Chandrashekhar Rao +[2018-02-13T00:45:14.085] [INFO] cheese - inserting 1000 documents. first: Deutsches Geodatisches Forschungsinstitut and last: Dragojlovice +[2018-02-13T00:45:14.118] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:45:14.183] [INFO] cheese - inserting 1000 documents. first: Felicite (2017 film) and last: File:Belton House 2006.jpg +[2018-02-13T00:45:14.209] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:45:14.243] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:45:14.331] [INFO] cheese - inserting 1000 documents. first: Argo (2012 movie) and last: Beattie Limestone +[2018-02-13T00:45:14.396] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:45:14.490] [INFO] cheese - inserting 1000 documents. first: Yekaterina Bikert and last: Charles Burnett (RAF officer) +[2018-02-13T00:45:14.550] [INFO] cheese - inserting 1000 documents. first: 1991-92 AHL season and last: Wikipedia:Stub types for deletion/Log/2008/April/3 +[2018-02-13T00:45:14.572] [INFO] cheese - inserting 1000 documents. first: Dragoljub Duricic and last: Wikipedia:Reference desk/Archives/Humanities/2012 February 9 +[2018-02-13T00:45:14.569] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:45:14.628] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:45:14.659] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:45:14.661] [INFO] cheese - inserting 1000 documents. first: File:Bezbozhnik u stanka 22-1929.jpg and last: Hittite Sun Course Monument +[2018-02-13T00:45:14.678] [INFO] cheese - inserting 1000 documents. first: Ofla of Mercia and last: Explosive-driven ferromagnetic generator +[2018-02-13T00:45:14.709] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:45:14.746] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:45:14.919] [INFO] cheese - inserting 1000 documents. first: Johnson Formation and last: 2001 1000 Guineas +[2018-02-13T00:45:14.953] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:45:14.960] [INFO] cheese - inserting 1000 documents. first: El amor despues del amor and last: Encyclopaedia Britannica Second Edition +[2018-02-13T00:45:14.968] [INFO] cheese - inserting 1000 documents. first: Venogram (medical) and last: Lauren Phillips +[2018-02-13T00:45:14.997] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:45:15.009] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:45:15.022] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Actuality (Hegel) and last: Category:English social commentators +[2018-02-13T00:45:15.067] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:45:15.099] [INFO] cheese - inserting 1000 documents. first: Isaías Marques Soares and last: ITK-Snap +[2018-02-13T00:45:15.122] [INFO] cheese - inserting 1000 documents. first: Category:Larry Carlton albums and last: Wikipedia:WikiProject North Carolina State Highways/Renumberings +[2018-02-13T00:45:15.198] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:45:15.199] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:45:15.226] [INFO] cheese - inserting 1000 documents. first: Out of the Ashes (2010 film) and last: Fenerbahce Ulker Euroleague 2009–10 +[2018-02-13T00:45:15.262] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T00:45:15.371] [INFO] cheese - inserting 1000 documents. first: I Don't Dance (album) and last: Tererro Formation +[2018-02-13T00:45:15.420] [INFO] cheese - inserting 1000 documents. first: Draft:Hao Qi Chang Liu and last: Louisiana Highway 897-3 +[2018-02-13T00:45:15.421] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:45:15.466] [INFO] cheese - inserting 1000 documents. first: 1864 English cricket season and last: The McKenzie Break +[2018-02-13T00:45:15.487] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:45:15.491] [INFO] cheese - inserting 1000 documents. first: Fenerbahce Ulker Euroleague 2010–11 and last: Kartvelian Language +[2018-02-13T00:45:15.529] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:45:15.535] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:45:15.583] [INFO] cheese - inserting 1000 documents. first: File:Ornstein-Suicide Airplane.ogg and last: Victor Hugo Andrada +[2018-02-13T00:45:15.632] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:45:15.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/2009 Duel in the Pool/archive1 and last: List of United States Presidents by judicial appointments +[2018-02-13T00:45:15.903] [INFO] cheese - inserting 1000 documents. first: Frederic Cermeno and last: Alfred Fleischer +[2018-02-13T00:45:15.944] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:45:15.976] [INFO] cheese - inserting 1000 documents. first: Alamitos Formation and last: Egogepa crassata +[2018-02-13T00:45:15.988] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:45:16.027] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 897-4 and last: Artistic Skating World Championship +[2018-02-13T00:45:16.061] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:45:16.135] [INFO] cheese - inserting 1000 documents. first: Category:Passenger rail transport in Alberta and last: Category:Zoé albums +[2018-02-13T00:45:16.146] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:45:16.185] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:45:16.308] [INFO] cheese - inserting 1000 documents. first: Timeline of Ancient Mesopotamia and last: Category:1904 racehorse deaths +[2018-02-13T00:45:16.414] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T00:45:16.460] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Eugène Ionesco and last: Girls, Girls, Girls (Motley Crue song) +[2018-02-13T00:45:16.500] [INFO] cheese - inserting 1000 documents. first: Category:High-speed trains of Russia and last: File:Regain poster.jpg +[2018-02-13T00:45:16.510] [INFO] cheese - inserting 1000 documents. first: Category:Coal-fired power stations in Saskatchewan and last: MG 11 +[2018-02-13T00:45:16.506] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:45:16.568] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:45:16.565] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:45:16.597] [INFO] cheese - inserting 1000 documents. first: Shrigley (disambiguation) and last: Lo Chih-An +[2018-02-13T00:45:16.657] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:45:16.735] [INFO] cheese - inserting 1000 documents. first: Giro-Live Ballers Osnabruck and last: Gallivare Malmbergets FF +[2018-02-13T00:45:16.742] [INFO] cheese - inserting 1000 documents. first: Template:Aragonese Bloc/meta/color and last: Vict +[2018-02-13T00:45:16.755] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T00:45:16.800] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:45:16.874] [INFO] cheese - inserting 1000 documents. first: Tri sestry and last: Cylindrical Bessel functions of the second kind +[2018-02-13T00:45:16.933] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:45:16.948] [INFO] cheese - inserting 1000 documents. first: Category:Courthouses on the National Register of Historic Places in Louisiana and last: Herrgarden +[2018-02-13T00:45:16.951] [INFO] cheese - inserting 1000 documents. first: 2014–15 PBC CSKA Moscow season and last: People's Climate March +[2018-02-13T00:45:16.967] [INFO] cheese - inserting 1000 documents. first: File:A cheerful gang turns the earth.jpg and last: Template:User Wikipedian for/sandbox +[2018-02-13T00:45:16.968] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T00:45:17.018] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:45:17.022] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:45:17.033] [INFO] cheese - inserting 1000 documents. first: Blanc and last: File:Stc-colour-logo-copy2.jpg +[2018-02-13T00:45:17.082] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:45:17.154] [INFO] cheese - inserting 1000 documents. first: Food of ancient israel and last: Ij Io̧kwe Lo̧k Aelon̄ Eo Ao +[2018-02-13T00:45:17.183] [INFO] cheese - batch complete in: 0.215 secs +[2018-02-13T00:45:17.214] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches in Amazonas (Brazilian state) and last: File:The Word Exchange (novel) first edition 2014.png +[2018-02-13T00:45:17.254] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:45:17.334] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/March 31, 2008 and last: Wikipedia:Tip of the day/October 24, 2008 +[2018-02-13T00:45:17.370] [INFO] cheese - inserting 1000 documents. first: Iker Martinez de Lizarduy and last: Hondo High School (Texas) +[2018-02-13T00:45:17.387] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:45:17.401] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:45:17.447] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mike Gastonguay and last: Harold Gore +[2018-02-13T00:45:17.465] [INFO] cheese - inserting 1000 documents. first: Azaspiracids and last: Category:Western Pennsylvania Registered Historic Place stubs +[2018-02-13T00:45:17.492] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:45:17.500] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:45:17.599] [INFO] cheese - inserting 1000 documents. first: Old Beth Israel Synagogue (Greenville, South Carolina) and last: Inigo Pascual +[2018-02-13T00:45:17.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Ilecity and last: Sanitas +[2018-02-13T00:45:17.651] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:45:17.679] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:45:17.888] [INFO] cheese - inserting 1000 documents. first: Jean-Marie Keletigui and last: Mikey Devlin +[2018-02-13T00:45:17.944] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/October 25, 2008 and last: Learjet 29 +[2018-02-13T00:45:17.949] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:45:18.085] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:45:18.145] [INFO] cheese - inserting 1000 documents. first: Juan Pablo Gil and last: List of North Carolina Civil War Confederate units +[2018-02-13T00:45:18.218] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:45:18.265] [INFO] cheese - inserting 1000 documents. first: Gornal, West Midlands and last: Portal:NWT +[2018-02-13T00:45:18.279] [INFO] cheese - inserting 1000 documents. first: Sarah Huckabee and last: Category:1730s archaeological discoveries +[2018-02-13T00:45:18.339] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T00:45:18.350] [INFO] cheese - inserting 1000 documents. first: Richebourg L'Avoue and last: Theosophia +[2018-02-13T00:45:18.357] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T00:45:18.462] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T00:45:18.489] [INFO] cheese - inserting 1000 documents. first: R-29RMU2 Liner and last: Wikipedia:Articles for deletion/Space Tourism Society +[2018-02-13T00:45:18.551] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:45:18.639] [INFO] cheese - inserting 1000 documents. first: MCBA and last: 1987 FA Cup Final +[2018-02-13T00:45:18.707] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:45:18.811] [INFO] cheese - inserting 1000 documents. first: H.W. Blair and last: Alex Balcoba +[2018-02-13T00:45:18.845] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:45:18.849] [INFO] cheese - inserting 1000 documents. first: Category:The Outfield and last: Template:The Redirect Barnstar/sandbox +[2018-02-13T00:45:18.880] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Knowsley and last: Lymire lactealis +[2018-02-13T00:45:18.886] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:45:18.890] [INFO] cheese - inserting 1000 documents. first: Gidgee Gold Mine and last: Wikipedia:WikiProject Spam/LinkReports/weather-and-climate.com +[2018-02-13T00:45:18.905] [INFO] cheese - inserting 1000 documents. first: The Sophia and last: Archie Hallam +[2018-02-13T00:45:18.912] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:45:18.951] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:45:18.967] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:45:19.151] [INFO] cheese - inserting 1000 documents. first: Courtney Simon and last: Category:Early steam locomotives +[2018-02-13T00:45:19.197] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:45:19.251] [INFO] cheese - inserting 1000 documents. first: Budalić and last: 1991 Hammer Throw Year Ranking +[2018-02-13T00:45:19.254] [INFO] cheese - inserting 1000 documents. first: Titania (oxide) and last: Biram Singh Rathore of Marwar +[2018-02-13T00:45:19.300] [INFO] cheese - inserting 1000 documents. first: Hypsotropha heterocerella and last: Furtum +[2018-02-13T00:45:19.313] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:45:19.334] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:45:19.357] [INFO] cheese - inserting 1000 documents. first: Chris Walsh and last: Continentality (wine) +[2018-02-13T00:45:19.364] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:45:19.430] [INFO] cheese - inserting 1000 documents. first: Charles Umpherston Aitchinson and last: Javier Olaizola +[2018-02-13T00:45:19.435] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:45:19.478] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:45:19.670] [INFO] cheese - inserting 1000 documents. first: File:Pg-ballorder.jpg and last: Bothrops xanthogramma +[2018-02-13T00:45:19.724] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:45:19.748] [INFO] cheese - inserting 1000 documents. first: 1995 Hammer Throw Year Ranking and last: Juan Felipe Alves Ribeiro +[2018-02-13T00:45:19.805] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Okan Derici (2nd nomination) and last: List of Compulsory Process Clause cases +[2018-02-13T00:45:19.804] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:45:19.891] [INFO] cheese - inserting 1000 documents. first: File:Korn Project4.png and last: Template:Canadian federal election, 2006/Beauport—Limoilou +[2018-02-13T00:45:19.906] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:45:19.938] [INFO] cheese - inserting 1000 documents. first: Ganga Rathore of Marwar and last: Schnabl +[2018-02-13T00:45:20.038] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:45:20.065] [INFO] cheese - inserting 1000 documents. first: Trauma Hawk and last: Behoust +[2018-02-13T00:45:20.077] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T00:45:20.210] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:45:20.387] [INFO] cheese - inserting 1000 documents. first: Chapacura–Wanham languages and last: Ceylon at the 1960 Summer Olympics +[2018-02-13T00:45:20.468] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:45:20.555] [INFO] cheese - inserting 1000 documents. first: Suruj and last: File:An Phoblacht June 2014 post-election.jpg +[2018-02-13T00:45:20.604] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:45:20.610] [INFO] cheese - inserting 1000 documents. first: List of Wipeout video games and last: Swimming at the 2007 World Aquatics Championships – Men's 100m backstroke +[2018-02-13T00:45:20.628] [INFO] cheese - inserting 1000 documents. first: Yuval Ron Ensemble and last: Andrés Bello Municipality, Miranda +[2018-02-13T00:45:20.717] [INFO] cheese - inserting 1000 documents. first: Τ Arietis and last: 2017 ABN AMRO World Tennis Tournament – Singles +[2018-02-13T00:45:20.719] [INFO] cheese - inserting 1000 documents. first: Arnouville-les-Mantes and last: Oregon State Fairgrounds +[2018-02-13T00:45:20.724] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:45:20.783] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T00:45:20.800] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:45:20.839] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:45:21.228] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom locations: Ce-Ck and last: Kautz graph +[2018-02-13T00:45:21.277] [INFO] cheese - inserting 1000 documents. first: Gern hab' ich die Frau'n geküßt' and last: Ch'iyar Jaqhi (Peru) +[2018-02-13T00:45:21.315] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T00:45:21.321] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:45:21.327] [INFO] cheese - inserting 1000 documents. first: Template:Checked-sock-nb and last: Miranda Municipality, Mérida +[2018-02-13T00:45:21.330] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2007 World Aquatics Championships – Men's 200m backstroke and last: Lung-Plague Pleuro-Pneumonia +[2018-02-13T00:45:21.374] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:45:21.389] [INFO] cheese - inserting 1000 documents. first: Iohannes Amos Comenius and last: HD 330075 b +[2018-02-13T00:45:21.451] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:45:21.470] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T00:45:21.567] [INFO] cheese - inserting 1000 documents. first: Draft:Spencer James Porter and last: Filipino New Wave +[2018-02-13T00:45:21.660] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:45:21.756] [INFO] cheese - inserting 1000 documents. first: Goulburn–Murray Water and last: Vetri Padigal +[2018-02-13T00:45:21.805] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:45:21.833] [INFO] cheese - inserting 1000 documents. first: Louis Segatore and last: File:TinManWasADreamer cover.jpg +[2018-02-13T00:45:21.932] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:45:21.991] [INFO] cheese - inserting 1000 documents. first: Estádio Nossa Senhora do Monte and last: List of Presidents of the Philippines by education +[2018-02-13T00:45:22.112] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:45:22.190] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2009 Tippeligaen and last: David Prottas +[2018-02-13T00:45:22.208] [INFO] cheese - inserting 1000 documents. first: Category:Glossata stubs and last: Wikipedia:Articles for deletion/Portugal Golden Visa +[2018-02-13T00:45:22.276] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:45:22.273] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:45:22.283] [INFO] cheese - inserting 1000 documents. first: Theresa Fairbanks Harris and last: Wikipedia:Sockpuppet investigations/Sweet mi/Archive +[2018-02-13T00:45:22.382] [INFO] cheese - inserting 1000 documents. first: Dylan Burns and last: Template:Ethnic Vienna sidebar +[2018-02-13T00:45:22.409] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T00:45:22.460] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:45:22.643] [INFO] cheese - inserting 1000 documents. first: Portal:Georgia (U.S. state)/Selected biography/9 and last: Tsegay +[2018-02-13T00:45:22.738] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T00:45:22.832] [INFO] cheese - inserting 1000 documents. first: Beaches FC (United States) and last: Category:Suspected Wikipedia sockpuppets of Chilifrenzy +[2018-02-13T00:45:22.851] [INFO] cheese - inserting 1000 documents. first: Brittany Pollack and last: Category:Incorporated places in Abitibi-Témiscamingue +[2018-02-13T00:45:22.903] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:45:22.949] [INFO] cheese - inserting 1000 documents. first: Maverick missile and last: Microatoll +[2018-02-13T00:45:22.957] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Greene County, Ohio and last: Buarahuarani +[2018-02-13T00:45:22.957] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:45:23.050] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:45:23.063] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T00:45:23.176] [INFO] cheese - inserting 1000 documents. first: Pressure flow theory and last: Cloantha evicta +[2018-02-13T00:45:23.275] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T00:45:23.315] [INFO] cheese - inserting 1000 documents. first: Burmese general election, 1922 and last: Rudolf Werlieh +[2018-02-13T00:45:23.394] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:45:23.451] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Augenblink and last: Category:Suspected Wikipedia sockpuppets of Asifquamar +[2018-02-13T00:45:23.566] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:45:23.692] [INFO] cheese - inserting 1000 documents. first: Neuroterus and last: Tahmilah +[2018-02-13T00:45:23.745] [INFO] cheese - inserting 1000 documents. first: File:Parenthood Season 5.jpg and last: Portal:Hellenism/Selected picture/9 +[2018-02-13T00:45:23.760] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:45:23.789] [INFO] cheese - inserting 1000 documents. first: Mineral Extraction and last: Horcón Tract +[2018-02-13T00:45:23.826] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:45:23.828] [INFO] cheese - inserting 1000 documents. first: Cloantha vomerina and last: Zemmouri +[2018-02-13T00:45:23.880] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T00:45:23.893] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:45:23.989] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 82satish and last: Balkrishna "Raosaheb" Gogte +[2018-02-13T00:45:23.994] [INFO] cheese - inserting 1000 documents. first: 'Til I Can Make it On My Own and last: Taumaka +[2018-02-13T00:45:24.042] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:45:24.147] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:45:24.236] [INFO] cheese - inserting 1000 documents. first: Si.mobil - Vodafone and last: Red Frangipani +[2018-02-13T00:45:24.302] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:45:24.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/CaitlinQuinn1 and last: 1914-15 National Association Foot Ball League season +[2018-02-13T00:45:24.414] [INFO] cheese - inserting 1000 documents. first: Category:1736 in theatre and last: Wikipedia:Miscellany for deletion/User:Chrisishawtt/Don Kivowitz +[2018-02-13T00:45:24.439] [INFO] cheese - inserting 1000 documents. first: Nelson-Blenheim notional railway and last: Dixa nubilipennis +[2018-02-13T00:45:24.445] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:45:24.474] [INFO] cheese - inserting 1000 documents. first: Extra Gentleman Usher and last: Aida Cuevas +[2018-02-13T00:45:24.476] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:45:24.507] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:45:24.604] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:45:24.682] [INFO] cheese - inserting 1000 documents. first: Popotai and last: Duje Bajrušovic +[2018-02-13T00:45:24.779] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:45:24.890] [INFO] cheese - inserting 1000 documents. first: Category:Entertainment venues in Romania and last: The Century Foundation, Inc. +[2018-02-13T00:45:24.940] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:45:24.987] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Classicleague15/Grant Lindsey and last: Wikipedia:Articles for deletion/The Kneeling Christian +[2018-02-13T00:45:25.001] [INFO] cheese - inserting 1000 documents. first: Template:Alan Rudolph and last: Anne Henderson +[2018-02-13T00:45:25.008] [INFO] cheese - inserting 1000 documents. first: Disproved and last: File:ISSafterSTS96.jpg +[2018-02-13T00:45:25.046] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:45:25.085] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:45:25.099] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:45:25.142] [INFO] cheese - inserting 1000 documents. first: Antidiuretic and last: ボボボーボ ボーボボ +[2018-02-13T00:45:25.143] [INFO] cheese - inserting 1000 documents. first: 1921 Big Ten Conference football season and last: Category:Wikipedia sockpuppets of Btarik77 +[2018-02-13T00:45:25.160] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:45:25.202] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:45:25.242] [INFO] cheese - inserting 1000 documents. first: Template:REH bibliography and last: Capivariano Futebol Clube +[2018-02-13T00:45:25.285] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:45:25.382] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Zawaydh and last: Wikipedia:WikiProject Women in Red/Outreach/International list +[2018-02-13T00:45:25.406] [INFO] cheese - batch complete in: 0.246 secs +[2018-02-13T00:45:25.523] [INFO] cheese - inserting 1000 documents. first: Arvid Nyberg and last: Suk Min-hee +[2018-02-13T00:45:25.574] [INFO] cheese - inserting 1000 documents. first: Philip Louis I, Count of Hanau-Münzenberg and last: Sextant Formation +[2018-02-13T00:45:25.583] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:45:25.590] [INFO] cheese - inserting 1000 documents. first: Albertoppelia and last: Aemona peali +[2018-02-13T00:45:25.611] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:45:25.651] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:45:25.692] [INFO] cheese - inserting 1000 documents. first: Madhavan (actor) and last: William Henry Kurtz +[2018-02-13T00:45:25.752] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:45:25.788] [INFO] cheese - inserting 1000 documents. first: Dej. and last: Category:Bilateral military relations of Azerbaijan +[2018-02-13T00:45:25.817] [INFO] cheese - inserting 1000 documents. first: Nikolay Dimitrov and last: Giambelli-Thom-Porteous formula +[2018-02-13T00:45:25.832] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:45:25.870] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:45:26.023] [INFO] cheese - inserting 1000 documents. first: Global Day for Darfur and last: Nicrophorus hispaniola +[2018-02-13T00:45:26.037] [INFO] cheese - inserting 1000 documents. first: Category:Liuzhou and last: Category:Virginia counties on the Potomac River +[2018-02-13T00:45:26.116] [INFO] cheese - inserting 1000 documents. first: Diva montelaba and last: Deccan White carp +[2018-02-13T00:45:26.125] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:45:26.123] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:45:26.232] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:45:26.309] [INFO] cheese - inserting 1000 documents. first: Category:2008–09 in Belarusian basketball and last: Category:Dashboard.wikiedu.org courses, The University of Mississippi +[2018-02-13T00:45:26.309] [INFO] cheese - inserting 1000 documents. first: Great day in harlem and last: Victorinus of Ptuj +[2018-02-13T00:45:26.314] [INFO] cheese - inserting 1000 documents. first: 1994 Federation Cup Americas Zone – Knockout Stage and last: Jose Amalfitani +[2018-02-13T00:45:26.353] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:45:26.357] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:45:26.378] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:45:26.506] [INFO] cheese - inserting 1000 documents. first: Fungiidae and last: Taipei Public Library Beitou Branch +[2018-02-13T00:45:26.588] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:45:26.604] [INFO] cheese - inserting 1000 documents. first: Yosefa and last: Justoy +[2018-02-13T00:45:26.631] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:45:26.717] [INFO] cheese - inserting 1000 documents. first: Blount, WV and last: Cadillac Hotel (Florida) +[2018-02-13T00:45:26.724] [INFO] cheese - inserting 1000 documents. first: William Blessington and last: C-162 +[2018-02-13T00:45:26.754] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:45:26.768] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:45:26.790] [INFO] cheese - inserting 1000 documents. first: 4th City of London Regiment (Royal Fusiliers) and last: Category:Residential buildings in Bolivia +[2018-02-13T00:45:26.826] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:45:26.836] [INFO] cheese - inserting 1000 documents. first: Rico tan and last: Newtown Flicks Short Film Festival +[2018-02-13T00:45:26.900] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:45:26.956] [INFO] cheese - inserting 1000 documents. first: Mark Tacher Feingold and last: Kemalettin Sami Gokcen +[2018-02-13T00:45:26.987] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:45:27.016] [INFO] cheese - inserting 1000 documents. first: Mebibits and last: Museum of Anthropology, University of Athens +[2018-02-13T00:45:27.069] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:45:27.197] [INFO] cheese - inserting 1000 documents. first: File:EarthSky radio program logo.jpg and last: Category:1861 establishments in Colorado +[2018-02-13T00:45:27.249] [INFO] cheese - inserting 1000 documents. first: Kemalpasa (disambiguation) and last: Zawtar El Charkiyeh +[2018-02-13T00:45:27.269] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:45:27.271] [INFO] cheese - inserting 1000 documents. first: List of Kings of Thailand and last: Category:FC Barcelona Futsal players +[2018-02-13T00:45:27.294] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:45:27.346] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:45:27.405] [INFO] cheese - inserting 1000 documents. first: Circling the Drain and last: List of constituencies of Manipur Legislative Assembly +[2018-02-13T00:45:27.460] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:45:27.503] [INFO] cheese - inserting 1000 documents. first: Davidsbündler and last: Mattisse +[2018-02-13T00:45:27.531] [INFO] cheese - inserting 1000 documents. first: Category:1993 labor disputes and strikes and last: House of Bylandt-Halt-Spaldorf +[2018-02-13T00:45:27.576] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:45:27.585] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:45:27.596] [INFO] cheese - inserting 1000 documents. first: Kucane and last: Landesliga Luneburg +[2018-02-13T00:45:27.669] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:45:27.699] [INFO] cheese - inserting 1000 documents. first: Category:1868 establishments in Colorado and last: National Register of Historic Places in Pike County, Alabama +[2018-02-13T00:45:27.757] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:45:27.847] [INFO] cheese - inserting 1000 documents. first: Category:FC Barcelona Futsal and last: File:BridgeHead Software logo.gif +[2018-02-13T00:45:27.901] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:45:27.941] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Randolph County, Alabama and last: National Register of Historic Places in Stanton County, Kansas +[2018-02-13T00:45:27.942] [INFO] cheese - inserting 1000 documents. first: Category:Sports in insular areas of the United States by sport and last: Kashani Rios +[2018-02-13T00:45:27.967] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:45:27.989] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:45:28.011] [INFO] cheese - inserting 1000 documents. first: Landestheater Tubingen and last: Thomas Anderson (Medal of Honor) +[2018-02-13T00:45:28.078] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:45:28.105] [INFO] cheese - inserting 1000 documents. first: AG-3F2 and last: Category:Massachusetts General Court elections +[2018-02-13T00:45:28.129] [INFO] cheese - inserting 1000 documents. first: Mattise and last: Kanazuka Station +[2018-02-13T00:45:28.137] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Stevens County, Kansas and last: National Register of Historic Places in Smithtown (town), New York +[2018-02-13T00:45:28.154] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T00:45:28.173] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:45:28.213] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:45:28.317] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Southampton (town), New York and last: National Register of Historic Places in Cumberland County, Virginia +[2018-02-13T00:45:28.333] [INFO] cheese - batch complete in: 0.179 secs +[2018-02-13T00:45:28.375] [INFO] cheese - inserting 1000 documents. first: Amplitude-frequency response and last: Hora razorbelly Minnow +[2018-02-13T00:45:28.403] [INFO] cheese - inserting 1000 documents. first: Category:Germany–Norway military relations and last: Pola Nowakowska +[2018-02-13T00:45:28.425] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:45:28.453] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:45:28.519] [INFO] cheese - inserting 1000 documents. first: Ulrich Kortz and last: List of Sinn Fein elected representatives +[2018-02-13T00:45:28.560] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:45:28.620] [INFO] cheese - inserting 1000 documents. first: Charles Starr and last: Help Me (Alkaline Trio song) +[2018-02-13T00:45:28.692] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Dickenson County, Virginia and last: Geogepa zeuxidia +[2018-02-13T00:45:28.699] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:45:28.739] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:45:28.757] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Australia/Units/November 11 and last: Wikipedia:Articles for deletion/Liza Wright +[2018-02-13T00:45:28.809] [INFO] cheese - inserting 1000 documents. first: List of Super Lig top scorers and last: Leon Bence +[2018-02-13T00:45:28.820] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:45:28.825] [INFO] cheese - inserting 1000 documents. first: Gober (disambiguation) and last: Murder in the Cathedral (1962 film) +[2018-02-13T00:45:28.837] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:45:28.896] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eureka 7 V.1: New Wave and last: File:Again Cover.jpg +[2018-02-13T00:45:28.908] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:45:28.943] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:45:29.087] [INFO] cheese - inserting 1000 documents. first: Leon Bertin and last: Bat Guano +[2018-02-13T00:45:29.137] [INFO] cheese - batch complete in: 0.3 secs +[2018-02-13T00:45:29.176] [INFO] cheese - inserting 1000 documents. first: Draft:AmiChart and last: Category:Suspected Wikipedia sockpuppets of Father Stuart +[2018-02-13T00:45:29.204] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:45:29.206] [INFO] cheese - inserting 1000 documents. first: Fort Chafee and last: José de la Cruz Porfirio Díaz Mori +[2018-02-13T00:45:29.213] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Illinois, 2016 and last: Wikipedia:Articles for deletion/Compassvale Primary School +[2018-02-13T00:45:29.256] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:45:29.269] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:45:29.362] [INFO] cheese - inserting 1000 documents. first: Komsomolsk, Ivanovo Oblast and last: Lam Thap +[2018-02-13T00:45:29.371] [INFO] cheese - inserting 1000 documents. first: Martin Cupr and last: Wikipedia:Miscellany for deletion/User:Vignesv +[2018-02-13T00:45:29.428] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:45:29.435] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:45:29.506] [INFO] cheese - inserting 1000 documents. first: List of McDonnell Douglas MD-80 operators and last: Vega (album) +[2018-02-13T00:45:29.540] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Colin todd and last: Southampton to Fareham Line +[2018-02-13T00:45:29.585] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:45:29.611] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:45:29.758] [INFO] cheese - inserting 1000 documents. first: Mai lányok and last: Category:Churches in the Roman Catholic Diocese of Madison +[2018-02-13T00:45:29.765] [INFO] cheese - inserting 1000 documents. first: Milan Vasic and last: Ferdinand Holtkamp +[2018-02-13T00:45:29.767] [INFO] cheese - inserting 1000 documents. first: Template:WWK and last: Government of Nevada +[2018-02-13T00:45:29.802] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:45:29.805] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:45:29.830] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:45:29.869] [INFO] cheese - inserting 1000 documents. first: Yeovil to Taunton Line and last: Category:Suspected Wikipedia sockpuppets of Zanditra +[2018-02-13T00:45:29.923] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:45:30.048] [INFO] cheese - inserting 1000 documents. first: Loas and last: Arkady Andreasyan +[2018-02-13T00:45:30.094] [INFO] cheese - inserting 1000 documents. first: Alec Hill and last: Bad Tölz-Wolfratshausen district +[2018-02-13T00:45:30.139] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:45:30.150] [INFO] cheese - inserting 1000 documents. first: May Tao Mountains and last: Nikola Celebic +[2018-02-13T00:45:30.158] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:45:30.183] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:45:30.209] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Theted99 and last: Jammu East (Vidhan Sabha constituency) +[2018-02-13T00:45:30.254] [INFO] cheese - inserting 1000 documents. first: Government of New Mexico and last: Waqt Batayega Kaun Apna Kaun Paraya +[2018-02-13T00:45:30.278] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:45:30.309] [INFO] cheese - inserting 1000 documents. first: Grass River (Manitoba) and last: Virginia State Route 63 (1940) +[2018-02-13T00:45:30.330] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:45:30.356] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:45:30.723] [INFO] cheese - inserting 1000 documents. first: Old Stan in the Mountain and last: Category:AFL-CIO people +[2018-02-13T00:45:30.780] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:45:30.795] [INFO] cheese - inserting 1000 documents. first: Ocean Hai and last: Mucizonia +[2018-02-13T00:45:30.833] [INFO] cheese - inserting 1000 documents. first: Virginia State Route 64 (1940) and last: Template:S-line/OASA Rail left/P3 +[2018-02-13T00:45:30.859] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:45:30.944] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:45:30.945] [INFO] cheese - inserting 1000 documents. first: Category:Indian politicians convicted of corruption and last: Category:Sudanese awards +[2018-02-13T00:45:30.946] [INFO] cheese - inserting 1000 documents. first: Joel Jones and last: Crossroads Motel (Album) +[2018-02-13T00:45:30.996] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T00:45:31.067] [INFO] cheese - inserting 1000 documents. first: Nya Folkviljan and last: Dance Dance Revolution 2ndReMix Append Club Version Vol.1 +[2018-02-13T00:45:31.068] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:45:31.145] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T00:45:31.264] [INFO] cheese - inserting 1000 documents. first: File:Jimmy Lennon Sr.jpg and last: Ole Svendsen Iglerod +[2018-02-13T00:45:31.321] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:45:31.465] [INFO] cheese - inserting 1000 documents. first: DKids (TV Channel) and last: Ørjar Øyen +[2018-02-13T00:45:31.470] [INFO] cheese - inserting 1000 documents. first: Cryogenic (Band) and last: Hearts and minds (Iraq) +[2018-02-13T00:45:31.497] [INFO] cheese - inserting 1000 documents. first: File:Angels and airwaves live.JPG and last: Darwin School +[2018-02-13T00:45:31.574] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:45:31.588] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:45:31.610] [INFO] cheese - inserting 1000 documents. first: Hy-Kinsellagh and last: Twerk It Like Miley +[2018-02-13T00:45:31.642] [INFO] cheese - inserting 1000 documents. first: Dance Dance Revolution 2ndReMix Append Club Version Vol.2 and last: Football at the 1992 Summer Olympics – Men's team squads +[2018-02-13T00:45:31.683] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T00:45:31.690] [INFO] cheese - inserting 1000 documents. first: Portal:Cartoon/Did you know/2 and last: Ecclesiastical faculty +[2018-02-13T00:45:31.713] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:45:31.724] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:45:31.725] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:45:32.020] [INFO] cheese - inserting 1000 documents. first: File:Varsity Nottingham.jpg and last: Pozeg +[2018-02-13T00:45:32.025] [INFO] cheese - inserting 1000 documents. first: Cp 1101 and last: Code page 1392 +[2018-02-13T00:45:32.052] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:45:32.084] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:45:32.132] [INFO] cheese - inserting 1000 documents. first: Java Content Repository and last: Jawi (script) +[2018-02-13T00:45:32.154] [INFO] cheese - inserting 1000 documents. first: Democratic Party (Republic of Korea, 2008) and last: Portal:New York/Selected quotes/Archives +[2018-02-13T00:45:32.166] [INFO] cheese - inserting 1000 documents. first: Eurysternum and last: Small inverted retrosnub icosicosidodecahedron +[2018-02-13T00:45:32.196] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:45:32.210] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:45:32.258] [INFO] cheese - inserting 1000 documents. first: Hansel DeBartolo and last: Alpha3beta2 nACh receptor +[2018-02-13T00:45:32.282] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:45:32.359] [INFO] cheese - inserting 1000 documents. first: Pozega (Novi Pazar) and last: Ramon Ramirez (footballer) +[2018-02-13T00:45:32.359] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:45:32.409] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:45:32.640] [INFO] cheese - inserting 1000 documents. first: File:Sherwood Metros Official Logo.jpg and last: Eric Vivier +[2018-02-13T00:45:32.666] [INFO] cheese - inserting 1000 documents. first: Ramon Ramirez (pitcher, born 1977) and last: 2809 BC +[2018-02-13T00:45:32.689] [INFO] cheese - inserting 1000 documents. first: École La Croisée de Robertville and last: Kelling Heath Park railway station +[2018-02-13T00:45:32.692] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:45:32.695] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T00:45:32.697] [INFO] cheese - inserting 1000 documents. first: Template:Bergen County, New Jersey School Districts and last: Van der Grinten +[2018-02-13T00:45:32.740] [INFO] cheese - inserting 1000 documents. first: Korea Baseball League and last: Wikipedia:Articles for deletion/Drake (fairy) +[2018-02-13T00:45:32.757] [INFO] cheese - inserting 1000 documents. first: Sirsid and last: Takht Jamshid Cup 1973-74 +[2018-02-13T00:45:32.785] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:45:32.785] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:45:32.819] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:45:32.838] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:45:33.020] [INFO] cheese - inserting 1000 documents. first: Template:Karachay–Cherkessia and last: Rudolfuv kamen +[2018-02-13T00:45:33.070] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:45:33.088] [INFO] cheese - inserting 1000 documents. first: Myiolestes megarhynchus and last: Sindhoori +[2018-02-13T00:45:33.164] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:45:33.223] [INFO] cheese - inserting 1000 documents. first: Template:2015 in American soccer and last: File:BAP Japan Tour Warrior Begins.jpg +[2018-02-13T00:45:33.284] [INFO] cheese - inserting 1000 documents. first: A’Quonesia Franklin and last: ACSS2 +[2018-02-13T00:45:33.285] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:45:33.317] [INFO] cheese - inserting 1000 documents. first: Takht Jamshid Cup 1974-75 and last: Portal:United States Marine Corps/article/2010July +[2018-02-13T00:45:33.353] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:45:33.357] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:45:33.365] [INFO] cheese - inserting 1000 documents. first: Dits from the Commuter Belt and last: Children's Bureau +[2018-02-13T00:45:33.380] [INFO] cheese - inserting 1000 documents. first: Category:2010s establishments in Latvia and last: 3059 BC +[2018-02-13T00:45:33.451] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:45:33.514] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:45:33.629] [INFO] cheese - inserting 1000 documents. first: Johann Heinrich von Carmer and last: 2017 Morelos Open - Singles +[2018-02-13T00:45:33.687] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:45:33.860] [INFO] cheese - inserting 1000 documents. first: Category:Works based on The Three Little Pigs and last: Raghuvar Das +[2018-02-13T00:45:33.945] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:45:33.959] [INFO] cheese - inserting 1000 documents. first: 3060 BC and last: Category:Geography of Haliburton County +[2018-02-13T00:45:33.974] [INFO] cheese - inserting 1000 documents. first: Hugh P. Mullin and last: For Darwen +[2018-02-13T00:45:33.998] [INFO] cheese - inserting 1000 documents. first: Butlins Barryisland and last: Stephen McBride (footballer, born 1983) +[2018-02-13T00:45:34.027] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:45:34.062] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:45:34.076] [INFO] cheese - inserting 1000 documents. first: Blocker Gundan IV Machine Blaster and last: Longphorts +[2018-02-13T00:45:34.143] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T00:45:34.204] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:45:34.279] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1995 Pan American Games - Women's 100 metres and last: File:American Fable.jpg +[2018-02-13T00:45:34.326] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:45:34.510] [INFO] cheese - inserting 1000 documents. first: Rang Stong and last: Template:Howard University presidents +[2018-02-13T00:45:34.560] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:45:34.618] [INFO] cheese - inserting 1000 documents. first: Category:Bus stations in Kerala and last: Template:ConvertAbbrev/ISO 3166-2/EG +[2018-02-13T00:45:34.633] [INFO] cheese - inserting 1000 documents. first: File:Johncenainring.jpg and last: Thérèse Tanguay Dion +[2018-02-13T00:45:34.652] [INFO] cheese - inserting 1000 documents. first: August kusche and last: Category:Wikipedia sockpuppets of Megameeting +[2018-02-13T00:45:34.677] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:45:34.694] [INFO] cheese - inserting 1000 documents. first: Totonacan language and last: Minami-Makigahara Station +[2018-02-13T00:45:34.697] [INFO] cheese - inserting 1000 documents. first: Obarenes Mountains and last: Revolutionary Internationalist Organisation +[2018-02-13T00:45:34.702] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:45:34.714] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:45:34.776] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:45:34.791] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:45:34.881] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Fakir005 and last: Category:Suspected Wikipedia sockpuppets of Angelb88 +[2018-02-13T00:45:34.899] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:45:35.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Council/Proposals/Cricket Stadiums and last: Tomáš Hanák +[2018-02-13T00:45:35.062] [INFO] cheese - inserting 1000 documents. first: Quiché Airport and last: Sarigol, Haymana +[2018-02-13T00:45:35.064] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:45:35.133] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:45:35.176] [INFO] cheese - inserting 1000 documents. first: Günter Mielke and last: File:Centriq Logo72.jpg +[2018-02-13T00:45:35.230] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:45:35.245] [INFO] cheese - inserting 1000 documents. first: Category:Basketball coaches in Greece by club and last: Category:GA-Class American Samoa road transport articles +[2018-02-13T00:45:35.274] [INFO] cheese - inserting 1000 documents. first: Dorothy Nelkin and last: List of SVD schools +[2018-02-13T00:45:35.307] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:45:35.326] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:45:35.344] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 217.140.193.123 and last: Draft:Cocoweb +[2018-02-13T00:45:35.378] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:45:35.395] [INFO] cheese - inserting 1000 documents. first: The Houston 620 and last: Simao Jatene +[2018-02-13T00:45:35.418] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:45:35.445] [INFO] cheese - inserting 1000 documents. first: Inertia Recordings and last: File:Bradford City 1906-07.jpg +[2018-02-13T00:45:35.482] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:45:35.572] [INFO] cheese - inserting 1000 documents. first: Simon Bolivar (1942 film) and last: Station Buttiniere (Tram de Bordeaux) +[2018-02-13T00:45:35.598] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:45:35.625] [INFO] cheese - inserting 1000 documents. first: List of Frank Zappa musicians and last: Exploding foil initiator +[2018-02-13T00:45:35.649] [INFO] cheese - inserting 1000 documents. first: Category:A-Class American Samoa road transport articles and last: MV SeaFrance Molière +[2018-02-13T00:45:35.684] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:45:35.697] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:45:35.717] [INFO] cheese - inserting 1000 documents. first: Category:Commercial buildings in Kazakhstan and last: Kazakhstan men's national under-17 basketball team +[2018-02-13T00:45:35.765] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:45:35.808] [INFO] cheese - inserting 1000 documents. first: Boulogne Bowl and last: Type A Fujian flu +[2018-02-13T00:45:35.835] [INFO] cheese - inserting 1000 documents. first: The Bloodless Revolution: Radical Vegetarians and the Discovery of India and last: 32nd Aviation Division +[2018-02-13T00:45:35.843] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:45:35.870] [INFO] cheese - inserting 1000 documents. first: Hillsbourgh (ship) and last: Takeoff (disambiguation) +[2018-02-13T00:45:35.877] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:45:35.903] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:45:36.127] [INFO] cheese - inserting 1000 documents. first: SiS 300 and last: Russet Batomys +[2018-02-13T00:45:36.242] [INFO] cheese - inserting 1000 documents. first: El Cajon Police Department and last: Sormarka Arena +[2018-02-13T00:45:36.248] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:45:36.260] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/WASEEM SPORTS (SPORTS WEAR MANUFACTURER) and last: Draft:BBC MIDLAND RADIO ORCHESTRA +[2018-02-13T00:45:36.284] [INFO] cheese - inserting 1000 documents. first: Zaragon and last: Marbles +[2018-02-13T00:45:36.327] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:45:36.331] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:45:36.353] [INFO] cheese - inserting 1000 documents. first: 4th Aviation Bomber Division and last: Fan Qibli +[2018-02-13T00:45:36.378] [INFO] cheese - inserting 1000 documents. first: Edgardo M. Chatto and last: Panzerchrist +[2018-02-13T00:45:36.370] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:45:36.552] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:45:36.564] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:45:36.792] [INFO] cheese - inserting 1000 documents. first: 2012 Regions Morgan Keegan Championships and the Cellular South Cup and last: Theodore Dezamy +[2018-02-13T00:45:36.828] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:45:36.865] [INFO] cheese - inserting 1000 documents. first: Vermont Route 122 Alternate and last: Roy Kline (footballer) +[2018-02-13T00:45:36.938] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:45:37.047] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Liber HVHI and last: Barnsley Academy +[2018-02-13T00:45:37.052] [INFO] cheese - inserting 1000 documents. first: File:Boy Meets Curl.jpg and last: The B-52’s +[2018-02-13T00:45:37.120] [INFO] cheese - inserting 1000 documents. first: Al-Ghawi and last: Hydrocampa pulchralis +[2018-02-13T00:45:37.124] [INFO] cheese - inserting 1000 documents. first: Jeeva (actor) and last: Jiang Fengzhi +[2018-02-13T00:45:37.136] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:45:37.142] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:45:37.160] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:45:37.229] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:45:37.277] [INFO] cheese - inserting 1000 documents. first: The Kalahari Typing School for Men and last: Šarišské Dravce +[2018-02-13T00:45:37.354] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:45:37.415] [INFO] cheese - inserting 1000 documents. first: Evektor SportStar RTC and last: Senior League World Series (Southwest Region) +[2018-02-13T00:45:37.502] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:45:37.657] [INFO] cheese - inserting 1000 documents. first: Sultan valide and last: British 46th Infantry Brigade +[2018-02-13T00:45:37.693] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:45:37.708] [INFO] cheese - inserting 1000 documents. first: Museum of the War of Chinese People's Resistance Against Japanese Aggression and last: Taby IS FK +[2018-02-13T00:45:37.733] [INFO] cheese - inserting 1000 documents. first: Triplophysa daqiaoensis and last: Romodanovskiy Raion +[2018-02-13T00:45:37.756] [INFO] cheese - inserting 1000 documents. first: File:Faulu Microfinance Bank Limited Logo.jpg and last: Peach-fronted conure +[2018-02-13T00:45:37.764] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:45:37.834] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:45:37.837] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:45:37.986] [INFO] cheese - inserting 1000 documents. first: Sauce boat and last: Wisconsin State Colleges +[2018-02-13T00:45:38.058] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:45:38.086] [INFO] cheese - inserting 1000 documents. first: Georges-Olivier Châteaureynaud and last: Category:1794 disestablishments in the Habsburg Monarchy +[2018-02-13T00:45:38.154] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:45:38.271] [INFO] cheese - inserting 1000 documents. first: Taby church and last: Wikipedia:Articles for deletion/Weighted Million Operations Per Second +[2018-02-13T00:45:38.330] [INFO] cheese - inserting 1000 documents. first: File:CNLiewColourSculpture.jpg and last: Integrál-DAC +[2018-02-13T00:45:38.344] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:45:38.431] [INFO] cheese - inserting 1000 documents. first: Tarraby and last: File:Godiva Chocolatier Logo.svg +[2018-02-13T00:45:38.442] [INFO] cheese - inserting 1000 documents. first: Template:Men's European Volleyball Championship winners and last: Urgleptes celtis +[2018-02-13T00:45:38.447] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T00:45:38.496] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:45:38.554] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:45:38.609] [INFO] cheese - inserting 1000 documents. first: Turbulence 1 and last: Dr. Naseem uz Zafar Baquiri +[2018-02-13T00:45:38.706] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:45:38.726] [INFO] cheese - inserting 1000 documents. first: Dystimia and last: Wikipedia:Articles for deletion/GPSBabel +[2018-02-13T00:45:38.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hacı Karay and last: Category:Odd Fellows buildings in Wyoming +[2018-02-13T00:45:38.830] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:45:38.895] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:45:38.958] [INFO] cheese - inserting 1000 documents. first: Category:Gijón and last: UN/LOCODE:CHNYO +[2018-02-13T00:45:39.014] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:45:39.033] [INFO] cheese - inserting 1000 documents. first: Todd Reynolds and last: Category:Video games based on films directed by Frank Marshall +[2018-02-13T00:45:39.116] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:45:39.128] [INFO] cheese - inserting 1000 documents. first: Asian white-lips and last: Category:FIFA World Cup posters +[2018-02-13T00:45:39.223] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:45:39.244] [INFO] cheese - inserting 1000 documents. first: Thatchernomics and last: File:Bergen County Cooperative Library System logo.jpg +[2018-02-13T00:45:39.328] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:45:39.372] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Italy and last: Doubly-fed generator +[2018-02-13T00:45:39.403] [INFO] cheese - inserting 1000 documents. first: Coxen baronets and last: 3501 BC +[2018-02-13T00:45:39.467] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:45:39.485] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:45:39.493] [INFO] cheese - inserting 1000 documents. first: Farm Road 528 and last: Shkorpilovtsi +[2018-02-13T00:45:39.593] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:45:39.711] [INFO] cheese - inserting 1000 documents. first: St. Lawrence, Essex and last: Operating temperature range +[2018-02-13T00:45:39.726] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Taphrinomycetes and last: Category:Suspected Wikipedia sockpuppets of Middle East Editor +[2018-02-13T00:45:39.754] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2014 Commonwealth Games - Men's Keirin and last: Category:Călărași +[2018-02-13T00:45:39.793] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:45:39.801] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:45:39.845] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:45:39.988] [INFO] cheese - inserting 1000 documents. first: Maiden grass and last: Wikipedia:Articles for deletion/List of soap opera popular couples +[2018-02-13T00:45:39.990] [INFO] cheese - inserting 1000 documents. first: SPEED (Kpop) and last: Visoce, Sentjur +[2018-02-13T00:45:40.029] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of J robson1 and last: Category:Women's basketball competitions in Greece +[2018-02-13T00:45:40.048] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:45:40.075] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:45:40.078] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:45:40.325] [INFO] cheese - inserting 1000 documents. first: Toyama Thunderbirds and last: Template:User wikipedia/Rollback +[2018-02-13T00:45:40.325] [INFO] cheese - inserting 1000 documents. first: Visocka and last: Deh-e Hasanali, Lorestan +[2018-02-13T00:45:40.352] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:45:40.419] [INFO] cheese - inserting 1000 documents. first: Category:Media in Călărași and last: New Granada cross-banded treefrog +[2018-02-13T00:45:40.423] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T00:45:40.536] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:45:40.616] [INFO] cheese - inserting 1000 documents. first: Andrej Sakharov and last: Johns, Geoff +[2018-02-13T00:45:40.707] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T00:45:40.718] [INFO] cheese - inserting 1000 documents. first: BAND (application) and last: Wikipedia:WikiProject Spam/Local/theholyseedchurch.org +[2018-02-13T00:45:40.748] [INFO] cheese - inserting 1000 documents. first: Wittnau, Baden-Wurttemberg and last: Wikipedia:Articles for deletion/Cross generation ship +[2018-02-13T00:45:40.765] [INFO] cheese - inserting 1000 documents. first: Socle (architecture) and last: Donald's Hill +[2018-02-13T00:45:40.779] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T00:45:40.813] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:45:40.837] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:45:40.956] [INFO] cheese - inserting 1000 documents. first: File:Bombayrockers.jpg and last: Template:Fb round2 2007-08 UCL GS +[2018-02-13T00:45:40.974] [INFO] cheese - inserting 1000 documents. first: 3720 BC and last: Category:Candidates for President of India +[2018-02-13T00:45:40.998] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T00:45:41.004] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:45:41.110] [INFO] cheese - inserting 1000 documents. first: Clausotrypa elegans and last: Category:Novels by Max Kidruk +[2018-02-13T00:45:41.138] [INFO] cheese - inserting 1000 documents. first: Scepticism in Law and last: EX 34 +[2018-02-13T00:45:41.148] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:45:41.154] [INFO] cheese - inserting 1000 documents. first: New Granada cross-banded treefrogs and last: Body In A Hole EP +[2018-02-13T00:45:41.195] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:45:41.241] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:45:41.263] [INFO] cheese - inserting 1000 documents. first: Hooligans Holiday and last: Midichloria +[2018-02-13T00:45:41.286] [INFO] cheese - inserting 1000 documents. first: AEthelberht, king of the Hwicce and last: Eric Vigner +[2018-02-13T00:45:41.307] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:45:41.321] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:45:41.384] [INFO] cheese - inserting 1000 documents. first: French number-one hits of 2004 and last: Adam Hieronim Sieniawski (1623-1650) +[2018-02-13T00:45:41.421] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:45:41.588] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed Telangana articles and last: Colt 600 convertible +[2018-02-13T00:45:41.625] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:45:41.633] [INFO] cheese - inserting 1000 documents. first: Category:Bridges in Henry County, Iowa and last: File:Screen Shot Target Nevada.png +[2018-02-13T00:45:41.650] [INFO] cheese - inserting 1000 documents. first: Esera and last: Pujol i Bausis factory +[2018-02-13T00:45:41.693] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:45:41.694] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:45:41.745] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada articles by quality statistics and last: Alison baronets +[2018-02-13T00:45:41.790] [INFO] cheese - inserting 1000 documents. first: File:Donnaworkhardforthemoney.jpg and last: Water-Fueled Car +[2018-02-13T00:45:41.798] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:45:41.921] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:45:41.967] [INFO] cheese - inserting 1000 documents. first: Template:BSrow and last: Ulles gas field +[2018-02-13T00:45:42.009] [INFO] cheese - inserting 1000 documents. first: File:MX vs. ATV Box Art from Amazon.jpg and last: Cricketfrog +[2018-02-13T00:45:42.040] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:45:42.088] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:45:42.148] [INFO] cheese - inserting 1000 documents. first: Flame structure and last: Panzer Lehr Division (Germany) +[2018-02-13T00:45:42.235] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T00:45:42.425] [INFO] cheese - inserting 1000 documents. first: ג'ק וולש and last: Filipino-Australian +[2018-02-13T00:45:42.438] [INFO] cheese - inserting 1000 documents. first: Category:Personal property law of the United States and last: Category:1810 in Scotland +[2018-02-13T00:45:42.458] [INFO] cheese - inserting 1000 documents. first: Category:Interior ministers of Guinea-Bissau and last: Newtork Three +[2018-02-13T00:45:42.481] [INFO] cheese - inserting 1000 documents. first: Cricketfrogs and last: Mont Formation +[2018-02-13T00:45:42.494] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:45:42.529] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:45:42.544] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:45:42.546] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:45:42.780] [INFO] cheese - inserting 1000 documents. first: 273rd Reserve Panzer Division (Germany) and last: List of open air and living history museums in the United States +[2018-02-13T00:45:42.849] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:45:42.911] [INFO] cheese - inserting 1000 documents. first: Laziska Power Station and last: Fathe Edward Petre +[2018-02-13T00:45:42.945] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:45:42.953] [INFO] cheese - inserting 1000 documents. first: Keith Anthony Morrison and last: File:InZealBomb by RoTto.jpg +[2018-02-13T00:45:43.009] [INFO] cheese - inserting 1000 documents. first: List of Tale Spin characters and last: Heike Hartwig +[2018-02-13T00:45:43.012] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:45:43.048] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:45:43.087] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Germany to Singapore and last: Wikipedia:WikiProject Women in Red/Missing articles by education/Russia - Moscow Conservatory +[2018-02-13T00:45:43.162] [INFO] cheese - inserting 1000 documents. first: Oolite Blanche and last: List of songs recorded by Usher +[2018-02-13T00:45:43.185] [INFO] cheese - batch complete in: 1.49 secs +[2018-02-13T00:45:43.268] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:45:43.357] [INFO] cheese - inserting 1000 documents. first: GSM SIM and last: Go (Jón Þór Birgisson album) +[2018-02-13T00:45:43.402] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:45:43.409] [INFO] cheese - inserting 1000 documents. first: Sight and sound and last: Stitch in Time (episode) +[2018-02-13T00:45:43.450] [INFO] cheese - inserting 1000 documents. first: Steven levitt and last: Bubble sheet +[2018-02-13T00:45:43.468] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:45:43.523] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:45:43.543] [INFO] cheese - inserting 1000 documents. first: Category:Ardabil County geography stubs and last: Leonard Henry Caleb Tippett +[2018-02-13T00:45:43.616] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:45:43.631] [INFO] cheese - inserting 1000 documents. first: Draft:Shahid Saleem and last: Don't Knock Twice (film) +[2018-02-13T00:45:43.702] [INFO] cheese - inserting 1000 documents. first: Polyove, Shakhtarsk Raion and last: Category:1967–68 Southern Conference men's basketball season +[2018-02-13T00:45:43.703] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:45:43.749] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:45:43.857] [INFO] cheese - inserting 1000 documents. first: West Cuban anole and last: Portal:India/Header +[2018-02-13T00:45:43.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Wesley Rawles and last: Template:Mozart horn concertos +[2018-02-13T00:45:43.929] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:45:43.939] [INFO] cheese - inserting 1000 documents. first: I Hear You Calling (episode) and last: Broadcasting (networks) +[2018-02-13T00:45:43.957] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:45:44.040] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:45:44.087] [INFO] cheese - inserting 1000 documents. first: Constituency PP-116 and last: Category:Academies in Coventry +[2018-02-13T00:45:44.136] [INFO] cheese - inserting 1000 documents. first: Cabildo Mayor del pueblo Muisca and last: Takiah +[2018-02-13T00:45:44.149] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:45:44.192] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:45:44.325] [INFO] cheese - inserting 1000 documents. first: 1997 Salford Reds season and last: Category:Sportspeople from Vernon, British Columbia +[2018-02-13T00:45:44.368] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:45:44.445] [INFO] cheese - inserting 1000 documents. first: Joe Thomas (communist) and last: Dwarf anole +[2018-02-13T00:45:44.459] [INFO] cheese - inserting 1000 documents. first: Category:National Lacrosse League season templates and last: Callicarpa cathayana +[2018-02-13T00:45:44.464] [INFO] cheese - inserting 1000 documents. first: Nature's Garden and last: Ležiachov +[2018-02-13T00:45:44.481] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:45:44.506] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:45:44.510] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:45:44.567] [INFO] cheese - inserting 1000 documents. first: Portal:Freedom of speech/Selected quote/41 and last: Template:Archdeacon of the Isle of Man +[2018-02-13T00:45:44.586] [INFO] cheese - inserting 1000 documents. first: Category:1785 by city and last: Draft:William Finch +[2018-02-13T00:45:44.616] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:45:44.638] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:45:44.809] [INFO] cheese - inserting 1000 documents. first: Student quiz show and last: Covers (Young Statues EP) +[2018-02-13T00:45:44.835] [INFO] cheese - inserting 1000 documents. first: Anolis occultus and last: Template:Sa-journeyman-ubx +[2018-02-13T00:45:44.858] [INFO] cheese - inserting 1000 documents. first: Tubba-Bubba's Now Hubba-Hubba and last: Harry Mangurian +[2018-02-13T00:45:44.859] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:45:44.877] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:45:44.911] [INFO] cheese - inserting 1000 documents. first: Valča and last: Sweyn Estridsen +[2018-02-13T00:45:44.912] [INFO] cheese - inserting 1000 documents. first: File:The Pepper-Knepper Quintet.jpg and last: Shapes (band) +[2018-02-13T00:45:44.927] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:45:44.958] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:45:44.960] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:45:44.997] [INFO] cheese - inserting 1000 documents. first: Hiram Rhoads Revels and last: Category:Autonomous provinces of Serbia +[2018-02-13T00:45:45.065] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:45:45.208] [INFO] cheese - inserting 1000 documents. first: Template:Sa-grognard-ubx and last: Wikipedia:Articles for deletion/Kinuyo Yamashita +[2018-02-13T00:45:45.241] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:45:45.277] [INFO] cheese - inserting 1000 documents. first: Age Isn't Ours and last: File:Pride Prejudice 1995 VHS PAL Rated U Double Pack.jpg +[2018-02-13T00:45:45.301] [INFO] cheese - inserting 1000 documents. first: Days of Future Past (Part 2) and last: Student / Teacher Ratio +[2018-02-13T00:45:45.316] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:45:45.323] [INFO] cheese - inserting 1000 documents. first: Xiang Huaqiang and last: AFCS +[2018-02-13T00:45:45.332] [INFO] cheese - inserting 1000 documents. first: Nicolas d'Ailleboust de Manthet and last: List of Riverdale episodes +[2018-02-13T00:45:45.346] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:45:45.360] [INFO] cheese - inserting 1000 documents. first: File:The Assassination of Trotsky.jpg and last: Wikipedia:WikiProject Spam/LinkReports/ruradio.me +[2018-02-13T00:45:45.402] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:45:45.411] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:45:45.483] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:45:45.774] [INFO] cheese - inserting 1000 documents. first: African Dream Root and last: Reginald Gray +[2018-02-13T00:45:45.792] [INFO] cheese - inserting 1000 documents. first: 1999 NCAA Rifle Championships and last: Rhaphiptera boliviana +[2018-02-13T00:45:45.821] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:45:45.837] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:45:45.940] [INFO] cheese - inserting 1000 documents. first: File:Magic Square Canvas.png and last: Category:Film scores by Mano Murthy +[2018-02-13T00:45:45.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oildex and last: Termite pre-treatment +[2018-02-13T00:45:45.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AIRPORTS/AN and last: Category:Books by Hunter S. Thompson +[2018-02-13T00:45:45.991] [INFO] cheese - inserting 1000 documents. first: George Phillips Odom, Jr and last: Notochthamalus +[2018-02-13T00:45:46.002] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:45:46.045] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:45:46.061] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:45:46.081] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:45:46.267] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand male taekwondo practitioners and last: Coptosia tauricola +[2018-02-13T00:45:46.292] [INFO] cheese - inserting 1000 documents. first: Guus ter Horst and last: Category:Canada subdivision navigational boxes +[2018-02-13T00:45:46.331] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:45:46.351] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:45:46.478] [INFO] cheese - inserting 1000 documents. first: Damien Quinn (hurler) and last: Expeed3 +[2018-02-13T00:45:46.525] [INFO] cheese - inserting 1000 documents. first: Dennis Heath and last: Category:Yuchi +[2018-02-13T00:45:46.539] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:45:46.600] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:45:46.631] [INFO] cheese - inserting 1000 documents. first: Coptosia cinerascens and last: Category:Suspected Wikipedia sockpuppets of Vichay Phommachan +[2018-02-13T00:45:46.676] [INFO] cheese - inserting 1000 documents. first: File:Santaposterbigla3.jpg and last: Mount Bowen (Queensland) +[2018-02-13T00:45:46.699] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:45:46.748] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:45:46.802] [INFO] cheese - inserting 1000 documents. first: Thomas Prickett and last: File:Enfield District Scout Band.png +[2018-02-13T00:45:46.849] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:45:46.914] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of QZDRE3 and last: Β Serpentis +[2018-02-13T00:45:46.928] [INFO] cheese - inserting 1000 documents. first: Citizens Industrial Alliance and last: Dille–Koppanyi reagent +[2018-02-13T00:45:46.936] [INFO] cheese - batch complete in: 0.237 secs +[2018-02-13T00:45:46.946] [INFO] cheese - inserting 1000 documents. first: File:Wmya 2008.png and last: Category:MI5 personnel +[2018-02-13T00:45:46.978] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:45:47.018] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T00:45:47.192] [INFO] cheese - inserting 1000 documents. first: Maamul Goboleedka Jubbaland ee Soomaaliya and last: Template:Camus +[2018-02-13T00:45:47.239] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Sisak-Moslavina County and last: One hundred eighty-nine +[2018-02-13T00:45:47.252] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:45:47.307] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:45:47.373] [INFO] cheese - inserting 1000 documents. first: Big Electric Cat and last: Category:WikiProject Paintball templates +[2018-02-13T00:45:47.399] [INFO] cheese - inserting 1000 documents. first: Larmer Bay ruin and last: National Treasures of Japan (statistics) +[2018-02-13T00:45:47.406] [INFO] cheese - inserting 1000 documents. first: Template:Alliance for the Republic - Yaakaar/meta/shortname and last: File:Parts & Labor in Brooklyn, 2009.jpg +[2018-02-13T00:45:47.423] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:45:47.479] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:45:47.474] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:45:47.555] [INFO] cheese - inserting 1000 documents. first: Kotoba no Puzzle Mojipittan and last: Shichinin no Nana +[2018-02-13T00:45:47.645] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:45:47.674] [INFO] cheese - inserting 1000 documents. first: One hundred eighty-three and last: Capital Plaza +[2018-02-13T00:45:47.770] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:45:47.868] [INFO] cheese - inserting 1000 documents. first: Jake Cave and last: Naby Deco Keita +[2018-02-13T00:45:47.951] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:45:47.964] [INFO] cheese - inserting 1000 documents. first: Deutscher Kaiser and last: Category:Wheelchair curling +[2018-02-13T00:45:48.055] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:45:48.103] [INFO] cheese - inserting 1000 documents. first: Template:Olympics infobox and last: Wikipedia:Articles for deletion/YaBB +[2018-02-13T00:45:48.108] [INFO] cheese - inserting 1000 documents. first: Faster than the speed of light (disambiguation) and last: Sterkfontein caves +[2018-02-13T00:45:48.138] [INFO] cheese - inserting 1000 documents. first: San Pedro District, Lucanas and last: Georgia Highway 338 +[2018-02-13T00:45:48.196] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:45:48.203] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:45:48.212] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:45:48.231] [INFO] cheese - inserting 1000 documents. first: Norwegian County Road 913 and last: Category:Political office-holders in Arunachal Pradesh +[2018-02-13T00:45:48.297] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:45:48.536] [INFO] cheese - inserting 1000 documents. first: Template:Infobox silver/sandbox and last: Memories Are Made of This (Deana Martin album) +[2018-02-13T00:45:48.580] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:45:48.598] [INFO] cheese - inserting 1000 documents. first: Iva Landeka and last: Bariša Čolak +[2018-02-13T00:45:48.668] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:45:48.678] [INFO] cheese - inserting 1000 documents. first: Highway 338 (Georgia) and last: Sue Merz +[2018-02-13T00:45:48.698] [INFO] cheese - inserting 1000 documents. first: Directive 66/683 and last: Template:AFLGameHeader/doc +[2018-02-13T00:45:48.712] [INFO] cheese - inserting 1000 documents. first: Category:Political office-holders in Assam and last: Wikipedia:Featured list candidates/Alfred Hitchcock filmography/archive1 +[2018-02-13T00:45:48.729] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:45:48.746] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:45:48.796] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:45:48.919] [INFO] cheese - inserting 1000 documents. first: Properties window and last: West Linn High School +[2018-02-13T00:45:48.983] [INFO] cheese - inserting 1000 documents. first: Myelois multiflorella and last: Template:Deans of St George's Chapel at Windsor Castle +[2018-02-13T00:45:48.994] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T00:45:49.055] [INFO] cheese - inserting 1000 documents. first: Template:Db-u1/testcases and last: Little Anita's +[2018-02-13T00:45:49.085] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:45:49.116] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:45:49.160] [INFO] cheese - inserting 1000 documents. first: 1917–18 FC Barcelona season and last: Interventricular foramen of monro +[2018-02-13T00:45:49.209] [INFO] cheese - inserting 1000 documents. first: Clifton, North Carolina and last: Olusẹgun Mathew Okikiọla Arẹmu Ọbasanjọ +[2018-02-13T00:45:49.229] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:45:49.297] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:45:49.567] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Animation/Warner Bros. Animation work group/Importance scale and last: Template:Attached KML/Sheridan County, North Dakota +[2018-02-13T00:45:49.592] [INFO] cheese - inserting 1000 documents. first: File:ThePoolMedfieldDennisMillerBunker1889.jpg and last: Category:Scottish pool players +[2018-02-13T00:45:49.622] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:45:49.674] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:45:49.683] [INFO] cheese - inserting 1000 documents. first: Marie-Caroline Du Fresnay and last: File:Aquinas College Nashville logo.svg +[2018-02-13T00:45:49.744] [INFO] cheese - inserting 1000 documents. first: The Whistler (Chana song) and last: Wikipedia:Articles for deletion/Aarti Rana +[2018-02-13T00:45:49.750] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:45:49.793] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:45:49.834] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Ratatouille and last: Keyla Ohs +[2018-02-13T00:45:49.929] [INFO] cheese - batch complete in: 1.183 secs +[2018-02-13T00:45:49.975] [INFO] cheese - inserting 1000 documents. first: Marconi-Osram Valve and last: Parliament of the Federation of Bosnia and Herzegovina +[2018-02-13T00:45:50.000] [INFO] cheese - inserting 1000 documents. first: Longlin and last: File:IJandSpearofDestiny.jpg +[2018-02-13T00:45:50.017] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:45:50.068] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T00:45:50.195] [INFO] cheese - inserting 1000 documents. first: Skales and last: Biryukovo +[2018-02-13T00:45:50.254] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:45:50.293] [INFO] cheese - inserting 1000 documents. first: File:Pancho group 1 500.jpg and last: NKMK +[2018-02-13T00:45:50.350] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:45:50.402] [INFO] cheese - inserting 1000 documents. first: Glossary of chemistry and last: White Heat (TV series) +[2018-02-13T00:45:50.463] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:45:50.490] [INFO] cheese - inserting 1000 documents. first: William Pile Shipbuilder and last: State (law) +[2018-02-13T00:45:50.492] [INFO] cheese - inserting 1000 documents. first: Razorcake fanzine and last: Charles W. Ray +[2018-02-13T00:45:50.567] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:45:50.574] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:45:50.582] [INFO] cheese - inserting 1000 documents. first: Draft:San Fransisco World Game and last: Oaxaca PE-1 Pegasus +[2018-02-13T00:45:50.664] [INFO] cheese - inserting 1000 documents. first: Category:1989 in women's association football and last: Category:Landforms of Grant County, Kansas +[2018-02-13T00:45:50.695] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T00:45:50.717] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:45:50.749] [INFO] cheese - inserting 1000 documents. first: Dépeçage and last: File:Hitoriyorifutari.jpg +[2018-02-13T00:45:50.825] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:45:51.003] [INFO] cheese - inserting 1000 documents. first: Inspector George Gently (TV series) and last: Wikipedia:Reference desk/Archives/Humanities/2012 February 27 +[2018-02-13T00:45:51.043] [INFO] cheese - inserting 1000 documents. first: 2008 Acura Classic and last: Inger Brattstrom +[2018-02-13T00:45:51.047] [INFO] cheese - inserting 1000 documents. first: Confederation Life Building, Toronto and last: Category:The Young Gods songs +[2018-02-13T00:45:51.047] [INFO] cheese - inserting 1000 documents. first: Category:United States at the Olympic Men's Basketball Tournament and last: Matías Sborowitz +[2018-02-13T00:45:51.059] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:45:51.085] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:45:51.089] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:45:51.104] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Meade County, Kansas and last: Michael Gotthelf +[2018-02-13T00:45:51.112] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:45:51.185] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:45:51.269] [INFO] cheese - inserting 1000 documents. first: Abstract Factory and last: Lady Tweedsmuir +[2018-02-13T00:45:51.337] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:45:51.390] [INFO] cheese - inserting 1000 documents. first: Good-Hartle Farm and last: Richville, Arizona +[2018-02-13T00:45:51.417] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:45:51.504] [INFO] cheese - inserting 1000 documents. first: William Powers (politics) and last: Bonneville Dam Historic District +[2018-02-13T00:45:51.546] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:45:51.562] [INFO] cheese - inserting 1000 documents. first: Morro da Mineira and last: VNG +[2018-02-13T00:45:51.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2012 February 26 and last: File:Anna of Brooklyn.jpg +[2018-02-13T00:45:51.619] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:45:51.663] [INFO] cheese - inserting 1000 documents. first: Herman Nickel and last: Assignment polytope +[2018-02-13T00:45:51.671] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:45:51.714] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:45:51.773] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adam Wylde and last: Category:Wikipedia sockpuppets of Factsldn15 +[2018-02-13T00:45:51.807] [INFO] cheese - inserting 1000 documents. first: File:Chelsea01.jpg and last: Portal:Psychology/Selected psychologist/8 +[2018-02-13T00:45:51.822] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:45:51.848] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:45:51.972] [INFO] cheese - inserting 1000 documents. first: Two Weeks (FKA Twigs song) and last: Wrestling at the 2014 Commonwealth Games – Women's freestyle 69 kg +[2018-02-13T00:45:52.025] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:45:52.032] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mr. Unknown and last: Psychikou B.C. +[2018-02-13T00:45:52.059] [INFO] cheese - batch complete in: 0.237 secs +[2018-02-13T00:45:52.164] [INFO] cheese - inserting 1000 documents. first: Portal:Psychology/Selected psychologist/9 and last: A Hobo's Christmas (Film) +[2018-02-13T00:45:52.204] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:45:52.224] [INFO] cheese - inserting 1000 documents. first: Category:ATP Tashkent Open and last: List of trails in Fremont County, Wyoming +[2018-02-13T00:45:52.230] [INFO] cheese - inserting 1000 documents. first: Placabis and last: Barkhamsted Forks +[2018-02-13T00:45:52.297] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:45:52.342] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:45:52.364] [INFO] cheese - inserting 1000 documents. first: Izuna: The Legend of the Unemployed Ninja and last: Template:German Verbandsligas and Landesligas (football) +[2018-02-13T00:45:52.423] [INFO] cheese - inserting 1000 documents. first: Paddington tube station (Circle and Hammersmith & City lines) and last: Giulio Masi +[2018-02-13T00:45:52.440] [INFO] cheese - inserting 1000 documents. first: List of Collaborators with Communist Security Agency and last: Category:2014–15 ISU Speed Skating World Cup templates +[2018-02-13T00:45:52.475] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:45:52.488] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T00:45:52.525] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:45:52.705] [INFO] cheese - inserting 1000 documents. first: File:MSU South Campus skyline.jpg and last: Charles Schumer +[2018-02-13T00:45:52.753] [INFO] cheese - inserting 1000 documents. first: Palora Canton and last: Wikipedia:Featured article candidates/Court of Chancery/archive1 +[2018-02-13T00:45:52.761] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:45:52.824] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:45:52.830] [INFO] cheese - inserting 1000 documents. first: Live and Louder and last: Safe Sex Designer Drugs & the Death of Rock 'N' Roll +[2018-02-13T00:45:52.882] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:45:52.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/watkinsbooks.com and last: Will You Marry Me +[2018-02-13T00:45:52.960] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:45:53.017] [INFO] cheese - inserting 1000 documents. first: I Get Along (Libertines song) and last: Hari Shankar Parsai +[2018-02-13T00:45:53.087] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:45:53.234] [INFO] cheese - inserting 1000 documents. first: Infrared Atmospheric Sounding Interferometer and last: Category:Colorado Independents +[2018-02-13T00:45:53.329] [INFO] cheese - inserting 1000 documents. first: Barton Line and last: A. T. M. Shamsul Huda +[2018-02-13T00:45:53.332] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:45:53.340] [INFO] cheese - inserting 1000 documents. first: Bolehall Swifts and last: Template:10 costliest US tornadoes +[2018-02-13T00:45:53.373] [INFO] cheese - inserting 1000 documents. first: Gymnastics at the 1960 Summer Olympics – Men's artistic team all-around and last: Stephen Edgar Paul Karamagi +[2018-02-13T00:45:53.449] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:45:53.450] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:45:53.514] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T00:45:53.554] [INFO] cheese - inserting 1000 documents. first: List of twin towns and sister cities in New Zealand and last: MD 81 +[2018-02-13T00:45:53.605] [INFO] cheese - inserting 1000 documents. first: Template:Order of Lenin and last: 113th Infantry Regiment (United States) +[2018-02-13T00:45:53.680] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:45:53.700] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:45:53.875] [INFO] cheese - inserting 1000 documents. first: Sidney Greidanus and last: University College London Partners +[2018-02-13T00:45:53.910] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/A Man with a Quilted Sleeve and last: Anna Sibylla Sergell +[2018-02-13T00:45:53.936] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:45:53.980] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:45:54.081] [INFO] cheese - inserting 1000 documents. first: Reece Power Station, Tasmania and last: Kashmiri Shaivism +[2018-02-13T00:45:54.091] [INFO] cheese - inserting 1000 documents. first: Nepenthes globamphora and last: WFRH +[2018-02-13T00:45:54.137] [INFO] cheese - inserting 1000 documents. first: Infrared vision and last: Blackadder 1 +[2018-02-13T00:45:54.150] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:45:54.158] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:45:54.202] [INFO] cheese - inserting 1000 documents. first: SESAT 1 and last: Category:City of Tshwane Metropolitan Municipality +[2018-02-13T00:45:54.206] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:45:54.279] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:45:54.338] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Sanitary Board of Hong Kong and last: Addison Roswell Thompson +[2018-02-13T00:45:54.362] [INFO] cheese - inserting 1000 documents. first: Mubarka Al-Naemi and last: 1990 Duke Blue Devils football team +[2018-02-13T00:45:54.377] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:45:54.398] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:45:54.550] [INFO] cheese - inserting 1000 documents. first: Anatoli Radenko and last: Middle Weser Valley +[2018-02-13T00:45:54.569] [INFO] cheese - inserting 1000 documents. first: Moon-Face and last: Katy IFL +[2018-02-13T00:45:54.590] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:45:54.621] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:45:54.688] [INFO] cheese - inserting 1000 documents. first: File:SacramentoSolons caplogo.svg and last: The Blue Trees +[2018-02-13T00:45:54.705] [INFO] cheese - inserting 1000 documents. first: Category:Venezuelan psychologists and last: Category:User Tang +[2018-02-13T00:45:54.716] [INFO] cheese - inserting 1000 documents. first: List of Fred: The Show episodes and last: OAPI patent +[2018-02-13T00:45:54.732] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:45:54.744] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:45:54.775] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:45:54.861] [INFO] cheese - inserting 1000 documents. first: Khun Tan Railway Station and last: Gaurotes atricornis +[2018-02-13T00:45:54.909] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:45:55.006] [INFO] cheese - inserting 1000 documents. first: Conservative Anglican Church of North America and last: Wikipedia:Suspected copyright violations/2010-02-04 +[2018-02-13T00:45:55.033] [INFO] cheese - inserting 1000 documents. first: Autovía A-49 and last: Ian Fleming's Goldfinger +[2018-02-13T00:45:55.069] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T00:45:55.116] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:45:55.151] [INFO] cheese - inserting 1000 documents. first: Category:People from Johnsburg, Illinois and last: Diocese of Laohekou +[2018-02-13T00:45:55.270] [INFO] cheese - inserting 1000 documents. first: Norberg-hodge and last: Portal:James Bond/Selected picture/22 +[2018-02-13T00:45:55.296] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:45:55.372] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:45:55.394] [INFO] cheese - inserting 1000 documents. first: 2012 Copa de España de Futsal and last: William Wickham (1831–1897) +[2018-02-13T00:45:55.467] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:45:55.474] [INFO] cheese - inserting 1000 documents. first: Gaurotes atripennis and last: SUN 'n FUN +[2018-02-13T00:45:55.591] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:45:55.717] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of George Town, Penang and last: Four Four South Village +[2018-02-13T00:45:55.769] [INFO] cheese - inserting 1000 documents. first: File:Red phone.jpg and last: Margaritifer sinus +[2018-02-13T00:45:55.778] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:45:55.841] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:45:55.970] [INFO] cheese - inserting 1000 documents. first: Wiradech Kothny and last: Template:Did you know nominations/Movement for Oneness and Jihad in West Africa +[2018-02-13T00:45:55.979] [INFO] cheese - inserting 1000 documents. first: Shelaylee and last: Muay at the 2009 Southeast Asian Games +[2018-02-13T00:45:56.030] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:45:56.058] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T00:45:56.068] [INFO] cheese - inserting 1000 documents. first: Xbox Game Pass and last: Briana Stewart +[2018-02-13T00:45:56.101] [INFO] cheese - inserting 1000 documents. first: Payena griffithii and last: New York Apples +[2018-02-13T00:45:56.118] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:45:56.161] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:45:56.271] [INFO] cheese - inserting 1000 documents. first: Portal:James Bond/Selected picture/23 and last: Intrinsic redshift +[2018-02-13T00:45:56.286] [INFO] cheese - inserting 1000 documents. first: File:Thee Phantom's Hero Complex (album cover).jpg and last: Johann Steyn, Baron Steyn +[2018-02-13T00:45:56.320] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T00:45:56.331] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:45:56.450] [INFO] cheese - inserting 1000 documents. first: Category:Queen Anne architecture in Kansas and last: Burututu +[2018-02-13T00:45:56.451] [INFO] cheese - inserting 1000 documents. first: 1959 Boston Red Sox and last: Category:Malayalam film scores by G. K. Venkatesh +[2018-02-13T00:45:56.492] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:45:56.501] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:45:56.531] [INFO] cheese - inserting 1000 documents. first: Typhoon Juan and last: Polytechnic movie +[2018-02-13T00:45:56.557] [INFO] cheese - inserting 1000 documents. first: Waterstonellidea and last: File:AshMarkHamilton.jpg +[2018-02-13T00:45:56.574] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:45:56.606] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:45:56.671] [INFO] cheese - inserting 1000 documents. first: Kukovoyt and last: Áno Alissós, Greece +[2018-02-13T00:45:56.704] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:45:56.721] [INFO] cheese - inserting 1000 documents. first: Daman Village, Nepal and last: Miles Automotive Group +[2018-02-13T00:45:56.765] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:45:56.780] [INFO] cheese - inserting 1000 documents. first: Rdeysky Nature Reserve and last: Varahamoorthi +[2018-02-13T00:45:56.810] [INFO] cheese - inserting 1000 documents. first: The Caxton Private Lending Library & Book Depository and last: Oriental Black-Headed Oriole +[2018-02-13T00:45:56.827] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:45:56.853] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:45:57.039] [INFO] cheese - inserting 1000 documents. first: Free India Centre and last: Category:Louisville metropolitan area-related lists +[2018-02-13T00:45:57.042] [INFO] cheese - inserting 1000 documents. first: Áno Alissós and last: Mentawai macaque +[2018-02-13T00:45:57.098] [INFO] cheese - inserting 1000 documents. first: Poretskoye and last: Oum El Bouaghi District +[2018-02-13T00:45:57.108] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:45:57.111] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:45:57.163] [INFO] cheese - inserting 1000 documents. first: Lavi (D.Gray Man) and last: Wikipedia:Reference desk/Archives/Computing/2008 April 15 +[2018-02-13T00:45:57.205] [INFO] cheese - inserting 1000 documents. first: National Library of São Tomé e Príncipe and last: Category:Disestablishments in South-West Africa by decade +[2018-02-13T00:45:57.212] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:45:57.255] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:45:57.266] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:45:57.364] [INFO] cheese - inserting 1000 documents. first: Institute for Community Studies and last: Alive Magazine +[2018-02-13T00:45:57.411] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:45:57.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ANMU and last: Category:Chinese Sanskrit scholars +[2018-02-13T00:45:57.537] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T00:45:57.650] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian expatriates in Belarus and last: Leptura plagifera +[2018-02-13T00:45:57.714] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:45:57.790] [INFO] cheese - inserting 1000 documents. first: Category:Expatriates in Jamaica and last: Griffing Park, Port Arthur, Texas +[2018-02-13T00:45:57.853] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:45:57.872] [INFO] cheese - inserting 1000 documents. first: East Stroudsburg station (Pennsylvania) and last: Category:Association football in County Londonderry +[2018-02-13T00:45:57.911] [INFO] cheese - inserting 1000 documents. first: Natural satellites in fiction and last: File:Bus (electronics).svg +[2018-02-13T00:45:57.913] [INFO] cheese - inserting 1000 documents. first: CJFO-FM and last: Gulumbu Yunupingu +[2018-02-13T00:45:57.913] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:45:57.942] [INFO] cheese - inserting 1000 documents. first: Portal:Kilkenny/Selected biography/15 and last: Lee Valley Regional Park +[2018-02-13T00:45:57.968] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T00:45:58.007] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T00:45:58.013] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:45:58.248] [INFO] cheese - inserting 1000 documents. first: Draft:James Pearson and last: Category:1938 in Australian women's sport +[2018-02-13T00:45:58.255] [INFO] cheese - inserting 1000 documents. first: Long Island (New York) and last: Frank Cecil Eve +[2018-02-13T00:45:58.282] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:45:58.331] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:45:58.341] [INFO] cheese - inserting 1000 documents. first: Griffing Park, Texas and last: Marsha Milan Londoh +[2018-02-13T00:45:58.379] [INFO] cheese - inserting 1000 documents. first: Lille Stesichorus and last: National Clinical Guideline Centre +[2018-02-13T00:45:58.403] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:45:58.407] [INFO] cheese - inserting 1000 documents. first: KVCE and last: Category:Banks of Ghana +[2018-02-13T00:45:58.453] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:45:58.463] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:45:58.466] [INFO] cheese - inserting 1000 documents. first: Template:User nci-5 and last: File:Smallville-Brent Stait as Doctor Fate.jpg +[2018-02-13T00:45:58.520] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:45:58.626] [INFO] cheese - inserting 1000 documents. first: Anglican Bishop of the Western Region of Sydney and last: Wikipedia:KCL +[2018-02-13T00:45:58.665] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:45:58.775] [INFO] cheese - inserting 1000 documents. first: Galliano Masini and last: Allen Township, Jewell County, Kansas +[2018-02-13T00:45:58.796] [INFO] cheese - inserting 1000 documents. first: Category:Plays set in Texas and last: 96th Division (disambiguation) +[2018-02-13T00:45:58.818] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:45:58.858] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:45:58.877] [INFO] cheese - inserting 1000 documents. first: Heat Latin Music Awards and last: Template:Taxonomy/Harttia +[2018-02-13T00:45:58.894] [INFO] cheese - inserting 1000 documents. first: Category:Banks of Guinea and last: Fundus of uterus +[2018-02-13T00:45:58.909] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:45:58.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured list/April 9, 2012 and last: Kawase (surname) +[2018-02-13T00:45:58.982] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:45:59.025] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:45:59.210] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Harttiella and last: Dryburgh (Dundee district) +[2018-02-13T00:45:59.256] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:45:59.372] [INFO] cheese - inserting 1000 documents. first: Notable cemeteries and last: Category:People by educational institution in Greece +[2018-02-13T00:45:59.409] [INFO] cheese - inserting 1000 documents. first: Little Bay Island and last: Category:Canadian expatriates in Paraguay +[2018-02-13T00:45:59.434] [INFO] cheese - inserting 1000 documents. first: Il Consigliori and last: U.S. Route 220 Alternate (Biscoe, North Carolina) +[2018-02-13T00:45:59.491] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:45:59.491] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:45:59.494] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T00:45:59.495] [INFO] cheese - inserting 1000 documents. first: Margaret Sutherland and last: Bill vicenzino +[2018-02-13T00:45:59.539] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:45:59.578] [INFO] cheese - inserting 1000 documents. first: File:Bad Boys Blue (album).jpg and last: Niethammeriodes diremptella +[2018-02-13T00:45:59.619] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:45:59.644] [INFO] cheese - inserting 1000 documents. first: Category:Conference USA women's soccer seasons and last: Template:ISO 639 name crk-Cans +[2018-02-13T00:45:59.692] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:45:59.840] [INFO] cheese - inserting 1000 documents. first: Hoop crown and last: S. uliginosa +[2018-02-13T00:45:59.881] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:45:59.895] [INFO] cheese - inserting 1000 documents. first: Fenton, Mich. and last: Gorgeous Barb +[2018-02-13T00:45:59.906] [INFO] cheese - inserting 1000 documents. first: Troilus and criseyde and last: Lámpeia, Greece +[2018-02-13T00:45:59.943] [INFO] cheese - inserting 1000 documents. first: Category:Expatriates in Paraguay and last: Category:2009 in Belize +[2018-02-13T00:45:59.945] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:45:59.949] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:46:00.026] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:46:00.054] [INFO] cheese - inserting 1000 documents. first: Ancylosis diremptella and last: MLS All-Star 2010 +[2018-02-13T00:46:00.098] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:46:00.145] [INFO] cheese - inserting 1000 documents. first: Template:WP Cambodia and last: Arthur Woodward (footballer) +[2018-02-13T00:46:00.224] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:46:00.306] [INFO] cheese - inserting 1000 documents. first: List of nautiloid genera and last: Fine Guidance Sensor (HST) +[2018-02-13T00:46:00.310] [INFO] cheese - inserting 1000 documents. first: Nilgiris Barb and last: NGC 6560 +[2018-02-13T00:46:00.348] [INFO] cheese - inserting 1000 documents. first: Lámpeia and last: File:MelbLGA-MorningtonPeninsula.gif +[2018-02-13T00:46:00.357] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:46:00.360] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:46:00.392] [INFO] cheese - inserting 1000 documents. first: William II of Nevers and last: Grill Me +[2018-02-13T00:46:00.409] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:46:00.451] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:46:00.599] [INFO] cheese - inserting 1000 documents. first: Miniyeh and last: Turbonilla dakoi +[2018-02-13T00:46:00.695] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:46:00.713] [INFO] cheese - inserting 1000 documents. first: Neoregelia 'Zeus' and last: Fibrous fracture +[2018-02-13T00:46:00.783] [INFO] cheese - inserting 1000 documents. first: Kalem railway station and last: Category:February 2015 events in Africa +[2018-02-13T00:46:00.828] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:46:00.840] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:46:00.964] [INFO] cheese - inserting 1000 documents. first: File:1950Nobel.JPG and last: Shōko Kikuchi +[2018-02-13T00:46:00.969] [INFO] cheese - inserting 1000 documents. first: St. Louis Trotters and last: Calamotropha argyrostola +[2018-02-13T00:46:01.004] [INFO] cheese - inserting 1000 documents. first: File:MelbLGA-Nillumbik.gif and last: FC Krymteplytsia Molodizhne +[2018-02-13T00:46:01.016] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:46:01.032] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:46:01.055] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:46:01.210] [INFO] cheese - inserting 1000 documents. first: Turbonilla dalli and last: Smoky Honeyeater (disambiguation) +[2018-02-13T00:46:01.263] [INFO] cheese - inserting 1000 documents. first: Final boiling point and last: ZPHS Dongala Dharmaram +[2018-02-13T00:46:01.286] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:46:01.290] [INFO] cheese - inserting 1000 documents. first: Category:2003 in women's curling and last: Category:Vincent van Gogh scholars +[2018-02-13T00:46:01.345] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:46:01.410] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:46:01.581] [INFO] cheese - inserting 1000 documents. first: Crambus argyrostola and last: Easley, Iowa +[2018-02-13T00:46:01.585] [INFO] cheese - inserting 1000 documents. first: Banjo-Kazooie360 and last: Template:1911 Essendon premiership players +[2018-02-13T00:46:01.621] [INFO] cheese - inserting 1000 documents. first: Ashino-Koen Station and last: David Goodway +[2018-02-13T00:46:01.631] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:46:01.665] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:46:01.744] [INFO] cheese - inserting 1000 documents. first: Claudio Corti (disambiguation) and last: Hosn Banu Ghazanfar +[2018-02-13T00:46:01.753] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:46:01.828] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:46:01.872] [INFO] cheese - inserting 1000 documents. first: Doodle 4 Google and last: Sarao +[2018-02-13T00:46:01.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2017 February 23 and last: Template:Sí Se Puede Llucmajor/meta/color +[2018-02-13T00:46:01.951] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:46:01.973] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:46:02.212] [INFO] cheese - inserting 1000 documents. first: Tessaiga and last: Dead Kennedeys +[2018-02-13T00:46:02.272] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:46:02.288] [INFO] cheese - inserting 1000 documents. first: LGBT history in Michigan and last: HMAS St Giles +[2018-02-13T00:46:02.332] [INFO] cheese - inserting 1000 documents. first: 1987 Mediterranean Games and last: Day of remembrance +[2018-02-13T00:46:02.349] [INFO] cheese - inserting 1000 documents. first: Vriesea sanctae-crucis and last: Template:Attached KML/Virginia State Route 259 +[2018-02-13T00:46:02.359] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:46:02.366] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Matt Sorum and last: Template:Goseiger +[2018-02-13T00:46:02.398] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:46:02.454] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T00:46:02.469] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:46:02.498] [INFO] cheese - inserting 1000 documents. first: Camelot/3000 and last: Westbury (Salop) railway station +[2018-02-13T00:46:02.558] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:46:02.789] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tim Ahern and last: Russ Ochsenhirt +[2018-02-13T00:46:02.808] [INFO] cheese - inserting 1000 documents. first: Syrian Red Crescent and last: Wilsie, West Virginia +[2018-02-13T00:46:02.833] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:46:02.882] [INFO] cheese - inserting 1000 documents. first: Irvin S. Yeaworth and last: F.U. +[2018-02-13T00:46:02.900] [INFO] cheese - inserting 1000 documents. first: Flavocrambus striatellus and last: Category:1976 establishments in the Kazakh Soviet Socialist Republic +[2018-02-13T00:46:02.899] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:46:02.934] [INFO] cheese - inserting 1000 documents. first: Alto Rio Negro Indigenous Territory and last: Susan Narduli +[2018-02-13T00:46:02.949] [INFO] cheese - inserting 1000 documents. first: Snowboarding at the 2002 Winter Olympics – Women's halfpipe and last: ENEV +[2018-02-13T00:46:02.995] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:46:03.003] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:46:03.021] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:46:03.079] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:46:03.416] [INFO] cheese - inserting 1000 documents. first: Central offfice code and last: Santo Pecora +[2018-02-13T00:46:03.443] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/dilovely.com and last: 2si 460F-45 +[2018-02-13T00:46:03.500] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:46:03.555] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:46:03.602] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/U.S. Route 136 in Illinois and last: Wikipedia:Articles for deletion/Flying Horse +[2018-02-13T00:46:03.602] [INFO] cheese - inserting 1000 documents. first: List of select Jewish baseball players and last: 2016 World Outdoor Bowls Championship - Women's Pairs +[2018-02-13T00:46:03.611] [INFO] cheese - inserting 1000 documents. first: ENHK and last: Category:Political movements in Indonesia +[2018-02-13T00:46:03.643] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:46:03.700] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:46:03.706] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:46:03.709] [INFO] cheese - inserting 1000 documents. first: FabricLive.29 and last: Andrej Šali +[2018-02-13T00:46:03.784] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T00:46:04.079] [INFO] cheese - inserting 1000 documents. first: 2016 World Outdoor Bowls Championship - Men's Fours and last: Wikipedia:WikiProject Spam/LinkReports/njgladiatorsoccer.com +[2018-02-13T00:46:04.108] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:46:04.147] [INFO] cheese - inserting 1000 documents. first: Category:Publications disestablished in 1929 and last: Fântâneaua Rece River +[2018-02-13T00:46:04.197] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Iran and last: C14H21N3O3 +[2018-02-13T00:46:04.199] [INFO] cheese - inserting 1000 documents. first: Kamaleswarar Temple and last: Transvaal presidential election, 1888 +[2018-02-13T00:46:04.213] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:46:04.244] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:46:04.289] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:46:04.304] [INFO] cheese - inserting 1000 documents. first: Don Camillo's Last Round and last: Let Yourself be Loved +[2018-02-13T00:46:04.354] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:46:04.393] [INFO] cheese - inserting 1000 documents. first: Category:1481 events and last: Category:Lists of Bangladesh cricket records and statistics +[2018-02-13T00:46:04.401] [INFO] cheese - inserting 1000 documents. first: Elaine Murphy and last: George Bridgeman +[2018-02-13T00:46:04.415] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:46:04.460] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:46:04.589] [INFO] cheese - inserting 1000 documents. first: Charles Molyneux, 5th Earl of Sefton and last: Vegetarianism in Hinduism +[2018-02-13T00:46:04.634] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:46:04.639] [INFO] cheese - inserting 1000 documents. first: Category:1888 elections in Africa and last: File:The Miracle (1991 film).jpg +[2018-02-13T00:46:04.666] [INFO] cheese - inserting 1000 documents. first: 82nd Airbourne Division (United States) and last: Wikipedia:Expert review/coordinators/access +[2018-02-13T00:46:04.679] [INFO] cheese - inserting 1000 documents. first: Bettina von Zwehl and last: Parc del Fòrum +[2018-02-13T00:46:04.701] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:46:04.722] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T00:46:04.742] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:46:04.788] [INFO] cheese - inserting 1000 documents. first: Zaïre virus strain Mayinga and last: Czar tank +[2018-02-13T00:46:04.846] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:46:04.974] [INFO] cheese - inserting 1000 documents. first: Fransson and last: Spodnja Idrija, Slovenia +[2018-02-13T00:46:05.012] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:46:05.047] [INFO] cheese - inserting 1000 documents. first: Valongo Municipality and last: Golgen +[2018-02-13T00:46:05.072] [INFO] cheese - inserting 1000 documents. first: Lori and Reba Schappell and last: Lights Out Puzzle +[2018-02-13T00:46:05.086] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:46:05.122] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:46:05.193] [INFO] cheese - inserting 1000 documents. first: File:Seongnam-Hanam Map.png and last: William Frederick Wyndham +[2018-02-13T00:46:05.196] [INFO] cheese - inserting 1000 documents. first: Czar Tank and last: Individual (disambiguation) +[2018-02-13T00:46:05.231] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:46:05.254] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:46:05.557] [INFO] cheese - inserting 1000 documents. first: Spodnje Hoče, Slovenia and last: Template:Did you know nominations/Teacher I Need You +[2018-02-13T00:46:05.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Braveheart5050 and last: Wikipedia:WikiProject Spam/LinkReports/udr-music.com +[2018-02-13T00:46:05.669] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:46:05.698] [INFO] cheese - inserting 1000 documents. first: Tomislav Dujmović and last: Category:1982 in judo +[2018-02-13T00:46:05.728] [INFO] cheese - inserting 1000 documents. first: Portal:The Legend of Zelda/Zelda topics and last: Wikipedia:Articles for deletion/Daheshism +[2018-02-13T00:46:05.760] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:46:05.773] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:46:05.793] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:46:05.857] [INFO] cheese - inserting 1000 documents. first: Europe asia land bridge and last: File:Double vision Strindberg.jpg +[2018-02-13T00:46:05.896] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:46:06.232] [INFO] cheese - inserting 1000 documents. first: I. B. Rai Dharmawijaya Mantra and last: Tropical Storm Winona (1985) +[2018-02-13T00:46:06.254] [INFO] cheese - inserting 1000 documents. first: Roger Dodger (disambiguation) and last: Inez (singer) +[2018-02-13T00:46:06.271] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:46:06.287] [INFO] cheese - inserting 1000 documents. first: María Rosa Leggol and last: Category:French women scientists +[2018-02-13T00:46:06.315] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:46:06.334] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:46:06.397] [INFO] cheese - inserting 1000 documents. first: Viva Festival and last: Abdul Jalil Shah I +[2018-02-13T00:46:06.410] [INFO] cheese - inserting 1000 documents. first: WD Velociraptor and last: Category:Kannada grammar +[2018-02-13T00:46:06.433] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:46:06.468] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:46:06.716] [INFO] cheese - inserting 1000 documents. first: Typhoon Winona (1990) and last: Mary Travis Arny +[2018-02-13T00:46:06.718] [INFO] cheese - inserting 1000 documents. first: Jaime Gomez (golfer) and last: Category:Bada games +[2018-02-13T00:46:06.761] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:46:06.762] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:46:06.791] [INFO] cheese - inserting 1000 documents. first: Livatica and last: Yoko Shibui +[2018-02-13T00:46:06.810] [INFO] cheese - inserting 1000 documents. first: Adam Michael Richard Sopp and last: Golden Mouse (rodent) +[2018-02-13T00:46:06.838] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:46:06.848] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:46:06.967] [INFO] cheese - inserting 1000 documents. first: KTED and last: Meltdown (film) +[2018-02-13T00:46:07.012] [INFO] cheese - inserting 1000 documents. first: File:Naan Kanda Sorgam.jpg and last: Northern California Athletic Conference football champion seasons +[2018-02-13T00:46:07.029] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:46:07.129] [INFO] cheese - batch complete in: 2.713 secs +[2018-02-13T00:46:07.159] [INFO] cheese - inserting 1000 documents. first: Category:1959 in the Republic of Dahomey and last: Template:Clist fiduciary loyalty +[2018-02-13T00:46:07.196] [INFO] cheese - inserting 1000 documents. first: File:ShriekDoppel.jpg and last: Category:European Formula 5000 Championship +[2018-02-13T00:46:07.205] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:46:07.230] [INFO] cheese - inserting 1000 documents. first: Ghafoor Ahmed and last: Louis of France (1751–1761) +[2018-02-13T00:46:07.243] [INFO] cheese - inserting 1000 documents. first: Template:Ryazan Oblast and last: FCE USA +[2018-02-13T00:46:07.341] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:46:07.372] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:46:07.400] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:46:07.612] [INFO] cheese - inserting 1000 documents. first: Ballplayers House, Central Park and last: Category:Chinese investors +[2018-02-13T00:46:07.719] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:46:07.726] [INFO] cheese - inserting 1000 documents. first: Category:Luxembourgers of French descent and last: Hallstatt D +[2018-02-13T00:46:07.807] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T00:46:07.900] [INFO] cheese - inserting 1000 documents. first: Francisco Portillo (footballer, born 1990) and last: Category:Jahangirnagar University faculty +[2018-02-13T00:46:07.900] [INFO] cheese - inserting 1000 documents. first: Maiwa language and last: List of castles in Lower Saxony +[2018-02-13T00:46:07.928] [INFO] cheese - inserting 1000 documents. first: Prentragk Stogiakovits and last: CA (state) +[2018-02-13T00:46:07.941] [INFO] cheese - inserting 1000 documents. first: Galante (pedigree) and last: Wikipedia:Articles for deletion/The Game Of Drink +[2018-02-13T00:46:07.969] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T00:46:07.969] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:46:08.018] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:46:08.025] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T00:46:08.318] [INFO] cheese - inserting 1000 documents. first: Taiwan travel document and last: File:Dance Dance Revolution SuperNova 2 North American PlayStation 2 cover art.png +[2018-02-13T00:46:08.323] [INFO] cheese - inserting 1000 documents. first: Richard Saucedo and last: Template:Singular and plural/doc +[2018-02-13T00:46:08.417] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:46:08.429] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:46:08.488] [INFO] cheese - inserting 1000 documents. first: Tripartite Program and last: Fenner A. Chace Jr. +[2018-02-13T00:46:08.542] [INFO] cheese - inserting 1000 documents. first: Attila Menyhard and last: Werner Scholz (footballer born 1944) +[2018-02-13T00:46:08.563] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:46:08.568] [INFO] cheese - inserting 1000 documents. first: Hyangsan County and last: File:Ponte do Açude, Coimbra, Portugal.jpg +[2018-02-13T00:46:08.623] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:46:08.662] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:46:08.771] [INFO] cheese - inserting 1000 documents. first: Vegetative zone and last: The Iceman Cometh (1960 TV production) +[2018-02-13T00:46:08.834] [INFO] cheese - inserting 1000 documents. first: Category:Military installations established in the 21st century and last: Category:1942 establishments in Idaho +[2018-02-13T00:46:08.864] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T00:46:08.879] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:46:09.070] [INFO] cheese - inserting 1000 documents. first: Tom Schuman and last: Wikipedia:OI +[2018-02-13T00:46:09.084] [INFO] cheese - inserting 1000 documents. first: Oita Heatdevils and last: Template:Grand Alliance for National Unity/meta/color +[2018-02-13T00:46:09.101] [INFO] cheese - inserting 1000 documents. first: Good as Gold! and last: Invasion of Hanover (1757) +[2018-02-13T00:46:09.121] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:46:09.130] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:46:09.140] [INFO] cheese - inserting 1000 documents. first: Ultraman monsters and last: Boundary layer theory +[2018-02-13T00:46:09.149] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:46:09.197] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:46:09.293] [INFO] cheese - inserting 1000 documents. first: Hong Kong Film Award for Best Asian Film and last: Nieuport-Delage NiD 942 +[2018-02-13T00:46:09.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oleg Stepanov (polymath) and last: Futurology (Song) +[2018-02-13T00:46:09.340] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:46:09.387] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:46:09.505] [INFO] cheese - inserting 1000 documents. first: Joseph Graves Olney alias "Joe Hill" and last: Phigalia revocata +[2018-02-13T00:46:09.550] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:46:09.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/epiccrafts.co.uk and last: Francisco Azorín Izquierdo +[2018-02-13T00:46:09.644] [INFO] cheese - inserting 1000 documents. first: KJIT-LP and last: Category:Mayors of Hillsboro, Oregon +[2018-02-13T00:46:09.664] [INFO] cheese - inserting 1000 documents. first: Basilica of Our Lady of the Martyrs, Lisboa and last: Draft:Lorna McDonald (Australian historian) +[2018-02-13T00:46:09.697] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:46:09.712] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:46:09.723] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:46:09.742] [INFO] cheese - inserting 1000 documents. first: Nasseridine Kraouche and last: File:Rocket from the Crypt - Group Sounds cover.jpg +[2018-02-13T00:46:09.820] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:46:09.857] [INFO] cheese - inserting 1000 documents. first: Tenali (disambiguation) and last: Marineamt +[2018-02-13T00:46:09.894] [INFO] cheese - inserting 1000 documents. first: Seller's Wood and last: Portal:Liberalism/Categories +[2018-02-13T00:46:09.918] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:46:09.947] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:46:10.143] [INFO] cheese - inserting 1000 documents. first: Hongling Middle School and last: Beverly Davenport +[2018-02-13T00:46:10.185] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:46:10.247] [INFO] cheese - inserting 1000 documents. first: Wilhelm Kinsky and last: Beloholunickiy +[2018-02-13T00:46:10.327] [INFO] cheese - inserting 1000 documents. first: Dio Padre misericordioso and last: Philip Leverhulme Equine Hospital +[2018-02-13T00:46:10.344] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:46:10.379] [INFO] cheese - inserting 1000 documents. first: Template:CIAPrisons and last: United Kingdom agency worker law +[2018-02-13T00:46:10.416] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:46:10.481] [INFO] cheese - inserting 1000 documents. first: La godiva and last: Wikipedia:Articles for deletion/Kevin Clarke (politician) +[2018-02-13T00:46:10.490] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:46:10.552] [INFO] cheese - inserting 1000 documents. first: Federal Intermediate Credit Bank and last: Tiwi, Kenya +[2018-02-13T00:46:10.569] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:46:10.650] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:46:10.808] [INFO] cheese - inserting 1000 documents. first: Wee Dot and last: Santo Antão Island League (North) +[2018-02-13T00:46:10.871] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:46:10.904] [INFO] cheese - inserting 1000 documents. first: Category:JMT Records albums and last: Highway 133 (Wisconsin) +[2018-02-13T00:46:10.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/circlecityalarm.com and last: Whatcom Chief +[2018-02-13T00:46:10.959] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:46:10.965] [INFO] cheese - inserting 1000 documents. first: V.I.P. Road and last: History of language +[2018-02-13T00:46:10.982] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:46:11.054] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:46:11.059] [INFO] cheese - inserting 1000 documents. first: Polar Tower II and last: File:TheSearch2014.jpg +[2018-02-13T00:46:11.122] [INFO] cheese - inserting 1000 documents. first: Xu Mengtao and last: File:ThomasAHendricks.png +[2018-02-13T00:46:11.135] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:46:11.234] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:46:11.380] [INFO] cheese - inserting 1000 documents. first: Santo Antao North Premier Division and last: Dusen's nymph +[2018-02-13T00:46:11.419] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:46:11.500] [INFO] cheese - inserting 1000 documents. first: Category:People from Whakatane and last: Jorge Luis Clavelo +[2018-02-13T00:46:11.509] [INFO] cheese - inserting 1000 documents. first: AA Command and last: Indonesian Ulemas Council +[2018-02-13T00:46:11.519] [INFO] cheese - inserting 1000 documents. first: Highway 134 (Wisconsin) and last: Wikipedia:AIRLINE +[2018-02-13T00:46:11.545] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:46:11.559] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:46:11.603] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:46:11.613] [INFO] cheese - inserting 1000 documents. first: Crambus peralbellus and last: A&P Catholic +[2018-02-13T00:46:11.652] [INFO] cheese - inserting 1000 documents. first: Surgical device and last: United Nations Security Council Resolution 684 +[2018-02-13T00:46:11.660] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:46:11.710] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:46:11.799] [INFO] cheese - inserting 1000 documents. first: Final Cut (band) and last: Category:Suspected Wikipedia sockpuppets of OhioLeda +[2018-02-13T00:46:11.839] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:46:11.920] [INFO] cheese - inserting 1000 documents. first: Episode in the Early Life of Privy Councillor D. and last: Lawrence Memorial Library +[2018-02-13T00:46:11.961] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:46:11.982] [INFO] cheese - inserting 1000 documents. first: The Lightning Process and last: Face paints +[2018-02-13T00:46:12.031] [INFO] cheese - inserting 1000 documents. first: Wiregrass Ranch High School and last: Leatherer +[2018-02-13T00:46:12.031] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:46:12.118] [INFO] cheese - inserting 1000 documents. first: List of mayors of Huntington, West Virginia and last: Hugo Oberstein +[2018-02-13T00:46:12.124] [INFO] cheese - inserting 1000 documents. first: PACE Catholic and last: Wikipedia:Articles for deletion/Janet Emerson Bashen +[2018-02-13T00:46:12.135] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:46:12.146] [INFO] cheese - inserting 1000 documents. first: Plebeius orbitulus and last: Wikipedia:WikiProject Spam/LinkReports/harboroughfm.webs.com +[2018-02-13T00:46:12.171] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:46:12.193] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:46:12.202] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:46:12.317] [INFO] cheese - inserting 1000 documents. first: Face painted and last: File:BrandySnaps.jpg +[2018-02-13T00:46:12.349] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:46:12.522] [INFO] cheese - inserting 1000 documents. first: Cafunfo Airport and last: Template:2008 Summer Olympics Australia women's field hockey team roster +[2018-02-13T00:46:12.557] [INFO] cheese - inserting 1000 documents. first: Arachnorchis procera and last: Phoenix Forgotten +[2018-02-13T00:46:12.640] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:46:12.683] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T00:46:12.686] [INFO] cheese - inserting 1000 documents. first: 2010 in athletics (track and field) and last: Kurt Heissmeyer +[2018-02-13T00:46:12.694] [INFO] cheese - inserting 1000 documents. first: Category:Flora of Querétaro and last: Self discipline +[2018-02-13T00:46:12.700] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Jeff Davis County, Georgia and last: Lesional demyelinations of the CNS +[2018-02-13T00:46:12.746] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:46:12.758] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:46:12.740] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:46:12.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2008-04-25 Attachment theory and last: BU Castle +[2018-02-13T00:46:12.983] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T00:46:13.211] [INFO] cheese - inserting 1000 documents. first: File:Delia Weber.jpg and last: Category:1997–98 Midwestern Collegiate Conference men's basketball season +[2018-02-13T00:46:13.231] [INFO] cheese - inserting 1000 documents. first: Dawsons fingers and last: Holochlamys ornata +[2018-02-13T00:46:13.253] [INFO] cheese - inserting 1000 documents. first: House of Deréon and last: Trench map +[2018-02-13T00:46:13.250] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:46:13.266] [INFO] cheese - inserting 1000 documents. first: Georg Klaus and last: Ravenswood School, Keston, Bromley +[2018-02-13T00:46:13.273] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:46:13.299] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:46:13.315] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:46:13.330] [INFO] cheese - inserting 1000 documents. first: Template:Infobox language/family-color/sandbox and last: Category:Politics of Southern Rhodesia before 1923 +[2018-02-13T00:46:13.403] [INFO] cheese - inserting 1000 documents. first: Chelonodon and last: Elliott's blueberry +[2018-02-13T00:46:13.417] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:46:13.449] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:46:13.682] [INFO] cheese - inserting 1000 documents. first: B roads in Zimbabwe and last: Psychoanalysis and religion +[2018-02-13T00:46:13.693] [INFO] cheese - inserting 1000 documents. first: Category:1999–2000 Midwestern Collegiate Conference men's basketball season and last: Academician of the Academy of the Social Science +[2018-02-13T00:46:13.742] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:46:13.783] [INFO] cheese - inserting 1000 documents. first: International Radon Project and last: Morning Bugle +[2018-02-13T00:46:13.795] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:46:13.884] [INFO] cheese - inserting 1000 documents. first: Fuka Angel and last: Rulers of Travancore +[2018-02-13T00:46:13.885] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:46:13.898] [INFO] cheese - inserting 1000 documents. first: Department of State Services and last: Joonas Korpisalo +[2018-02-13T00:46:13.947] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:46:13.949] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:46:14.003] [INFO] cheese - inserting 1000 documents. first: Aqua Kids (TV series) and last: O’Connell Consolidated High School +[2018-02-13T00:46:14.065] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:46:14.071] [INFO] cheese - inserting 1000 documents. first: Category:Lebanese Basketball League and last: Ζ Leonis +[2018-02-13T00:46:14.114] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:46:14.153] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space Dreams and last: Family tree of Vietnamese monarchs +[2018-02-13T00:46:14.189] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:46:14.252] [INFO] cheese - inserting 1000 documents. first: Brinkhaven, Ohio and last: Francois-Auguste Parseval-Grandmaison +[2018-02-13T00:46:14.353] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:46:14.520] [INFO] cheese - inserting 1000 documents. first: Museum Leverianum and last: Karaurus sharovi +[2018-02-13T00:46:14.595] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Sumatro and last: Crop (hair) +[2018-02-13T00:46:14.595] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:46:14.636] [INFO] cheese - inserting 1000 documents. first: Ζ Leo and last: HCoV-OC43 +[2018-02-13T00:46:14.675] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:46:14.691] [INFO] cheese - inserting 1000 documents. first: Category:Version 1.0 articles by importance and last: Live in Gdańsk +[2018-02-13T00:46:14.704] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:46:14.756] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:46:14.903] [INFO] cheese - inserting 1000 documents. first: Felix Arvers and last: Maudheim medal +[2018-02-13T00:46:14.904] [INFO] cheese - inserting 1000 documents. first: Coppa Italia (Futsal) and last: Muntadhar al-Zaidi shoe incident +[2018-02-13T00:46:14.953] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:46:14.982] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T00:46:15.059] [INFO] cheese - inserting 1000 documents. first: Weymer's glider and last: Draft:Johannes Susen +[2018-02-13T00:46:15.066] [INFO] cheese - inserting 1000 documents. first: Anna Pratt Romney and last: Muir Mackenzie +[2018-02-13T00:46:15.117] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:46:15.160] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:46:15.192] [INFO] cheese - inserting 1000 documents. first: Cropped hair and last: Hasamdia massacre +[2018-02-13T00:46:15.198] [INFO] cheese - inserting 1000 documents. first: Moravia-Silesia football league and last: Drops Out +[2018-02-13T00:46:15.249] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:46:15.253] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:46:15.359] [INFO] cheese - inserting 1000 documents. first: Category:Olympic biathletes of China and last: Wikipedia:The final word +[2018-02-13T00:46:15.396] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:46:15.407] [INFO] cheese - inserting 1000 documents. first: Soshi-kaimei and last: PerkinElmer, Inc. +[2018-02-13T00:46:15.492] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:46:15.511] [INFO] cheese - inserting 1000 documents. first: Stefanija Statkuviené and last: Rainham War Memorial +[2018-02-13T00:46:15.531] [INFO] cheese - inserting 1000 documents. first: Ángel Scull and last: Vinay Jha +[2018-02-13T00:46:15.607] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:46:15.609] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:46:15.683] [INFO] cheese - inserting 1000 documents. first: Crowdfunded satellites and last: Klaus von Dambrowski +[2018-02-13T00:46:15.735] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:46:15.764] [INFO] cheese - inserting 1000 documents. first: Template:Love County, Oklahoma and last: Jurriaen Aernoutsz +[2018-02-13T00:46:15.828] [INFO] cheese - inserting 1000 documents. first: Nevena Ignjatović and last: Template:NRHP in Montgomery County, Alabama +[2018-02-13T00:46:15.837] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:46:15.893] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:46:15.900] [INFO] cheese - inserting 1000 documents. first: Hexamethyldisilathiane and last: File:Lgworkshop1.jpg +[2018-02-13T00:46:15.956] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:46:16.074] [INFO] cheese - inserting 1000 documents. first: List of converts to Hinduism from Buddhism and last: Wikipedia:Peer review/Algoman orogeny/archive1 +[2018-02-13T00:46:16.099] [INFO] cheese - inserting 1000 documents. first: Sanda lighthouse and last: Category:Automotive companies of Russia +[2018-02-13T00:46:16.132] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:46:16.140] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:46:16.235] [INFO] cheese - inserting 1000 documents. first: Tony Ferguson (skateboarder) and last: Math symbol parentheses +[2018-02-13T00:46:16.330] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:46:16.377] [INFO] cheese - inserting 1000 documents. first: Tungting and last: Armand-Emmanuel du Plessis, Duc de Richelieu +[2018-02-13T00:46:16.417] [INFO] cheese - inserting 1000 documents. first: Staff Benda Bilili and last: 103d Fighter Squadron +[2018-02-13T00:46:16.439] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:46:16.505] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:46:16.515] [INFO] cheese - inserting 1000 documents. first: Dobričevo and last: Robert Alfred McCall +[2018-02-13T00:46:16.603] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:46:16.699] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Warren County, Ohio and last: Winfred Jacobs +[2018-02-13T00:46:16.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2017-06-09/Technology report and last: File:Screenshot of Main window f4analyse 2.0.png +[2018-02-13T00:46:16.722] [INFO] cheese - inserting 1000 documents. first: Cyber Trance presents ELT Trance and last: Encyclopædia Britannica website +[2018-02-13T00:46:16.745] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:46:16.800] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T00:46:16.822] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:46:17.017] [INFO] cheese - inserting 1000 documents. first: Hurricane Madeline (1998) and last: Union Nacional de Ciudadanos Eticos +[2018-02-13T00:46:17.027] [INFO] cheese - inserting 1000 documents. first: File:LabourListCrop.png and last: Stark Raving Mad (1983 film) +[2018-02-13T00:46:17.108] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:46:17.116] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:46:17.133] [INFO] cheese - inserting 1000 documents. first: Adam Rachel and last: Vera Glass +[2018-02-13T00:46:17.233] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:46:17.312] [INFO] cheese - inserting 1000 documents. first: Khan Doun Penh and last: Downton Creek (Chilcotin Plateau) +[2018-02-13T00:46:17.337] [INFO] cheese - inserting 1000 documents. first: Encyclopædia Britannica web site and last: Crambus tolli +[2018-02-13T00:46:17.368] [INFO] cheese - inserting 1000 documents. first: Chinese Ambassadors to Latvia and last: Tino Schwierzina +[2018-02-13T00:46:17.371] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:46:17.399] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:46:17.483] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:46:17.680] [INFO] cheese - inserting 1000 documents. first: 91st Strategic Reconnaissance Group and last: Alfredo G. Duran +[2018-02-13T00:46:17.686] [INFO] cheese - inserting 1000 documents. first: Springerichthys and last: Deane (Bolton) +[2018-02-13T00:46:17.715] [INFO] cheese - inserting 1000 documents. first: Movimiento Patria Querida and last: Vilavila District +[2018-02-13T00:46:17.728] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:46:17.729] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:46:17.771] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:46:17.810] [INFO] cheese - inserting 1000 documents. first: Timothy Bozon and last: Youa +[2018-02-13T00:46:17.859] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:46:17.866] [INFO] cheese - inserting 1000 documents. first: Ampeg SVT-Pro and last: Template:Did you know nominations/George W. Hooker +[2018-02-13T00:46:17.880] [INFO] cheese - inserting 1000 documents. first: Jock Henderson (footballer born 1871) and last: Esther Timberlake +[2018-02-13T00:46:17.927] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:46:17.936] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:46:18.113] [INFO] cheese - inserting 1000 documents. first: File:Chief Red Eagle grave site.JPG and last: Faellanden +[2018-02-13T00:46:18.143] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:46:18.168] [INFO] cheese - inserting 1000 documents. first: Inhlawulo and last: File:Kiuasnewcd.jpg +[2018-02-13T00:46:18.212] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:46:18.241] [INFO] cheese - inserting 1000 documents. first: Tom Mason (Falling Skies) and last: File:Hola, ¿estas sola? (Hi, are you Alone?.jpg +[2018-02-13T00:46:18.247] [INFO] cheese - inserting 1000 documents. first: Ring (computer game) and last: Denardo Coleman +[2018-02-13T00:46:18.266] [INFO] cheese - inserting 1000 documents. first: Aujan Group and last: Sweetiopsis +[2018-02-13T00:46:18.273] [INFO] cheese - inserting 1000 documents. first: Lee Sun-Bai and last: Carmine bee-eater (disambiguation) +[2018-02-13T00:46:18.300] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:46:18.306] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T00:46:18.321] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:46:18.332] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:46:18.532] [INFO] cheese - inserting 1000 documents. first: Andy Meisner and last: Jackie Smyth +[2018-02-13T00:46:18.568] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:46:18.601] [INFO] cheese - inserting 1000 documents. first: Bowling Green-Perrysburg Road and last: Category:Andy LaVerne albums +[2018-02-13T00:46:18.640] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:46:18.651] [INFO] cheese - inserting 1000 documents. first: Speedy González and last: Sukanta Mahavidyalaya +[2018-02-13T00:46:18.687] [INFO] cheese - inserting 1000 documents. first: Ralph Ehrenbrink and last: Payena lancifolia +[2018-02-13T00:46:18.717] [INFO] cheese - inserting 1000 documents. first: Mary Walter Elementary and last: National Route 526 +[2018-02-13T00:46:18.722] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:46:18.788] [INFO] cheese - inserting 1000 documents. first: When My Baby Smiles at Me (film) and last: Members of the New South Wales Legislative Assembly, 1895–1898 +[2018-02-13T00:46:18.790] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:46:18.818] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:46:18.898] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:46:18.947] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Lofty Chiltern and last: Category:Ontario general election, 1937 results by riding +[2018-02-13T00:46:18.975] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:46:19.112] [INFO] cheese - inserting 1000 documents. first: Forsskaolea tenacissima and last: SR 824 +[2018-02-13T00:46:19.153] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:46:19.171] [INFO] cheese - inserting 1000 documents. first: Template:Gaelic games venues and last: Federal Research Division +[2018-02-13T00:46:19.234] [INFO] cheese - inserting 1000 documents. first: Bignonia umbellulata and last: Calamotropha aureliella +[2018-02-13T00:46:19.272] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:46:19.321] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:46:19.370] [INFO] cheese - inserting 1000 documents. first: Ecologist Alternative of Catalonia and last: Hartford Area Roller Derby +[2018-02-13T00:46:19.435] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:46:19.464] [INFO] cheese - inserting 1000 documents. first: The Throne Verse and last: Category:1972 NCAA University Division baseball standings templates +[2018-02-13T00:46:19.466] [INFO] cheese - inserting 1000 documents. first: Victorian Railways V class and last: Helen, West Virginia +[2018-02-13T00:46:19.524] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:46:19.592] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T00:46:19.685] [INFO] cheese - inserting 1000 documents. first: Category:Japanese expatriates in Brazil and last: Huangjin Airport +[2018-02-13T00:46:19.762] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:46:19.873] [INFO] cheese - inserting 1000 documents. first: Taiwanese identity and last: Wikipedia:HOC +[2018-02-13T00:46:19.962] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:46:19.985] [INFO] cheese - inserting 1000 documents. first: Category:Muğla Central District and last: Glacial Squid +[2018-02-13T00:46:20.039] [INFO] cheese - inserting 1000 documents. first: Spanish Agency for Quality Assessment and University Accreditation and last: Template:Taxonomy/Mioxena +[2018-02-13T00:46:20.075] [INFO] cheese - inserting 1000 documents. first: Category:1972 Pacific-8 Conference baseball season and last: XOXO Exo +[2018-02-13T00:46:20.083] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T00:46:20.117] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:46:20.191] [INFO] cheese - inserting 1000 documents. first: File:Thehubscreenshot.jpg and last: Wikipedia:DERM:A +[2018-02-13T00:46:20.195] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:46:20.249] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:46:20.372] [INFO] cheese - inserting 1000 documents. first: TG-11A and last: Merle Johnson +[2018-02-13T00:46:20.423] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:46:20.535] [INFO] cheese - inserting 1000 documents. first: Coastal Prairie and last: Jesus Chávez +[2018-02-13T00:46:20.583] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2017 March 6 and last: Wikipedia:WikiProject Spam/LinkReports/thelordscovenantchurch.org +[2018-02-13T00:46:20.590] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:46:20.641] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:46:20.651] [INFO] cheese - inserting 1000 documents. first: File:Flores de otro mundo film poster.jpg and last: San E +[2018-02-13T00:46:20.657] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Caldwell County, Texas and last: Template:Tlw +[2018-02-13T00:46:20.694] [INFO] cheese - inserting 1000 documents. first: Suhua Highway and last: 1904 Utah Utes football team +[2018-02-13T00:46:20.710] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:46:20.717] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:46:20.787] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:46:21.001] [INFO] cheese - inserting 1000 documents. first: Deer Hunter (computer game) and last: Jason L. Honigman +[2018-02-13T00:46:21.073] [INFO] cheese - inserting 1000 documents. first: Category:Indiana in the American Civil War and last: Portal:El Salvador/El Salvador topics +[2018-02-13T00:46:21.135] [INFO] cheese - inserting 1000 documents. first: Draft:Kitale Museum and last: State Route 73 (Virginia 1958) +[2018-02-13T00:46:21.138] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:46:21.197] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:46:21.202] [INFO] cheese - inserting 1000 documents. first: Category:History of Kosovo during Ottoman administration and last: Renzo Meynet +[2018-02-13T00:46:21.212] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:46:21.227] [INFO] cheese - inserting 1000 documents. first: Template:Test-mode notice/doc and last: Pazuzu (comics) +[2018-02-13T00:46:21.263] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:46:21.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thelordscovenantchurch.org and last: Flixthorpe +[2018-02-13T00:46:21.347] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:46:21.374] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:46:21.702] [INFO] cheese - inserting 1000 documents. first: SANAKO and last: Portal:El Salvador/News +[2018-02-13T00:46:21.759] [INFO] cheese - inserting 1000 documents. first: File:Marjorie Hillis 1937.jpg and last: Joe Pondelik +[2018-02-13T00:46:21.768] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:46:21.782] [INFO] cheese - inserting 1000 documents. first: Robert Flixthorpe and last: Critical Masses: Opposition to Nuclear Power in California, 1958-1978 +[2018-02-13T00:46:21.785] [INFO] cheese - inserting 1000 documents. first: Meynet and last: Muhammad Mahdi Salih +[2018-02-13T00:46:21.824] [INFO] cheese - inserting 1000 documents. first: Allusiveness and last: CITF Memorandum +[2018-02-13T00:46:21.850] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:46:21.854] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:46:21.865] [INFO] cheese - inserting 1000 documents. first: Annas Farmhouse and last: Nemzeti Bajnokság I 1931-32 +[2018-02-13T00:46:21.893] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:46:21.930] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T00:46:21.975] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:46:22.313] [INFO] cheese - inserting 1000 documents. first: Chrysoteuchia deltella and last: Sea mussels +[2018-02-13T00:46:22.347] [INFO] cheese - inserting 1000 documents. first: William Ruane (actor) and last: George Robinson (cricketer, born 1908) +[2018-02-13T00:46:22.377] [INFO] cheese - inserting 1000 documents. first: File:Parmaarms.gif and last: Christian Ernst II, Duke of Saxe-Coburg-Saalfeld +[2018-02-13T00:46:22.381] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:46:22.409] [INFO] cheese - inserting 1000 documents. first: Frank Lewis (wrestler) and last: Violent Machine +[2018-02-13T00:46:22.414] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:46:22.430] [INFO] cheese - inserting 1000 documents. first: Tal (singer) and last: Asus Transformer Infinity +[2018-02-13T00:46:22.484] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:46:22.495] [INFO] cheese - inserting 1000 documents. first: Bartlesville Examiner-Enterprise and last: François Xavier Préfontaine +[2018-02-13T00:46:22.503] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:46:22.527] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:46:22.592] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:46:22.932] [INFO] cheese - inserting 1000 documents. first: Elizabeth Ansbach and last: Battle of Berea +[2018-02-13T00:46:22.966] [INFO] cheese - inserting 1000 documents. first: Marine mussel and last: Category:Kookmin University +[2018-02-13T00:46:22.977] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:46:22.999] [INFO] cheese - inserting 1000 documents. first: Software development engineer and last: Patrick, 4th Earl of Dunbar +[2018-02-13T00:46:23.008] [INFO] cheese - inserting 1000 documents. first: Category:Surinamese socialists and last: Harry O. Downey +[2018-02-13T00:46:23.036] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:46:23.099] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:46:23.104] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:46:23.142] [INFO] cheese - inserting 1000 documents. first: ASUS Eee Pad Transformer infinity and last: Les Feuillants Abbey +[2018-02-13T00:46:23.179] [INFO] cheese - inserting 1000 documents. first: We Are The Physics and last: Veenendaal-Veenendaal +[2018-02-13T00:46:23.231] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:46:23.262] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:46:23.376] [INFO] cheese - inserting 1000 documents. first: Tavşan Island and last: Zerstörer Shrugged +[2018-02-13T00:46:23.426] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:46:23.628] [INFO] cheese - inserting 1000 documents. first: Computer sentience and last: Noah Buschel +[2018-02-13T00:46:23.669] [INFO] cheese - inserting 1000 documents. first: Jon Sandsmark and last: Adetus catemaco +[2018-02-13T00:46:23.719] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:46:23.729] [INFO] cheese - inserting 1000 documents. first: File:Lauryn Hill-Everything Is Everything.jpg and last: Forswears +[2018-02-13T00:46:23.732] [INFO] cheese - inserting 1000 documents. first: Melanoma Research and last: Alister Campbell (rugby union) +[2018-02-13T00:46:23.732] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:46:23.791] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:46:23.795] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:46:23.813] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian art historians and last: Western Australian Black head triplefin +[2018-02-13T00:46:23.883] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:46:23.961] [INFO] cheese - inserting 1000 documents. first: Increase (given name) and last: Summer nicks +[2018-02-13T00:46:24.020] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:46:24.306] [INFO] cheese - inserting 1000 documents. first: Adetus cecamirim and last: 2014 Hiroshima landslides +[2018-02-13T00:46:24.332] [INFO] cheese - inserting 1000 documents. first: Fokker F28-4000 and last: Hockey at the Olympics +[2018-02-13T00:46:24.332] [INFO] cheese - inserting 1000 documents. first: Demographic history of Novi Sad and last: Mezhdurechensky Raion +[2018-02-13T00:46:24.354] [INFO] cheese - inserting 1000 documents. first: Orce Nikolov and last: Ten Zen Men Project +[2018-02-13T00:46:24.357] [INFO] cheese - inserting 1000 documents. first: Western Australian black Head Triplefin and last: Bishoha +[2018-02-13T00:46:24.364] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:46:24.382] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:46:24.420] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:46:24.423] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T00:46:24.439] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:46:24.616] [INFO] cheese - inserting 1000 documents. first: Tyre of the Maronites and last: Category:Kindersley +[2018-02-13T00:46:24.664] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:46:24.783] [INFO] cheese - inserting 1000 documents. first: Kathleen Brinson and last: Hopf line bundle +[2018-02-13T00:46:24.811] [INFO] cheese - inserting 1000 documents. first: Ayşe Hatun (wife of Selim I) and last: Smt easwaramma english medium school +[2018-02-13T00:46:24.832] [INFO] cheese - inserting 1000 documents. first: Category:American legal drama films and last: Gem of Tanzania +[2018-02-13T00:46:24.835] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:46:24.859] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:46:24.877] [INFO] cheese - inserting 1000 documents. first: A Class Act and last: Lovey Dovey Stuff +[2018-02-13T00:46:24.903] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:46:24.932] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:46:24.971] [INFO] cheese - inserting 1000 documents. first: Catbox and last: File:Tree trunks by Great Sacandaga Lake (2008).jpg +[2018-02-13T00:46:25.031] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:46:25.070] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Andhra Pradesh articles of Top-importance and last: Category:Slovak emigrants to the Czech Republic +[2018-02-13T00:46:25.114] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:46:25.176] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Avilés and last: Alaguilac language +[2018-02-13T00:46:25.220] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:46:25.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/requests/2011 Lamar Hunt U.S. Open Cup Final and last: Tehelka Daily +[2018-02-13T00:46:25.285] [INFO] cheese - inserting 1000 documents. first: Constitution of Senegal and last: Matheson (compressed gas & equipment) +[2018-02-13T00:46:25.295] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:46:25.300] [INFO] cheese - inserting 1000 documents. first: Vigilanza and last: Dongnipgun +[2018-02-13T00:46:25.343] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:46:25.350] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:46:25.385] [INFO] cheese - inserting 1000 documents. first: Draft:PEN Oakland and last: Category:Security divisions of Germany during World War II +[2018-02-13T00:46:25.414] [INFO] cheese - batch complete in: 0.3 secs +[2018-02-13T00:46:25.534] [INFO] cheese - inserting 1000 documents. first: The Experts (1989 film) and last: 2005 United States motorcycle Grand Prix +[2018-02-13T00:46:25.576] [INFO] cheese - inserting 1000 documents. first: 1994 Segunda División B play-offs and last: Chief of the Land Staff +[2018-02-13T00:46:25.607] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:46:25.651] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:46:25.714] [INFO] cheese - inserting 1000 documents. first: Delta Ship 41 and last: Georgia State Route 52 (1921-1937) +[2018-02-13T00:46:25.767] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:46:25.769] [INFO] cheese - inserting 1000 documents. first: Ollin Yoliztli Prize and last: The Sentry (painting) +[2018-02-13T00:46:25.842] [INFO] cheese - inserting 1000 documents. first: Mercuric (album) and last: Portuguese Electronic Passport +[2018-02-13T00:46:25.850] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:46:25.917] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:46:25.988] [INFO] cheese - inserting 1000 documents. first: Magdalena Pajala and last: File:Historical population of Wake island.png +[2018-02-13T00:46:26.051] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:46:26.147] [INFO] cheese - inserting 1000 documents. first: List of universities in the China and last: Pijanskiy District +[2018-02-13T00:46:26.336] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:46:26.345] [INFO] cheese - inserting 1000 documents. first: Y (Jaejoong EP) and last: EO 13780 +[2018-02-13T00:46:26.349] [INFO] cheese - inserting 1000 documents. first: Benzamil and last: Cygnet Rowing Club +[2018-02-13T00:46:26.426] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:46:26.443] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T00:46:26.626] [INFO] cheese - inserting 1000 documents. first: Team O'Grady and last: Ogden High School (disambiguation) +[2018-02-13T00:46:26.633] [INFO] cheese - inserting 1000 documents. first: Category:Wheelchair fencers at the 1988 Summer Paralympics and last: The Mentalist (TV series) +[2018-02-13T00:46:26.806] [INFO] cheese - inserting 1000 documents. first: Pijanski District and last: Die Roten +[2018-02-13T00:46:26.806] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T00:46:26.832] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:46:26.884] [INFO] cheese - inserting 1000 documents. first: Angel Camouflaged and last: Guide to style +[2018-02-13T00:46:26.996] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T00:46:27.012] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:46:27.366] [INFO] cheese - inserting 1000 documents. first: Clan Tweedy and last: Wikipedia:Articles for deletion/Yodasnews.com +[2018-02-13T00:46:27.380] [INFO] cheese - inserting 1000 documents. first: Chittatukara and last: Openness to experience +[2018-02-13T00:46:27.403] [INFO] cheese - inserting 1000 documents. first: Category:Games Workshop articles that need to differentiate between fact and fiction and last: John Day (cricketer, born 1881) +[2018-02-13T00:46:27.415] [INFO] cheese - inserting 1000 documents. first: Bethel Church (Redding California) and last: Template:S-line/RandstadRail right/4 +[2018-02-13T00:46:27.463] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T00:46:27.472] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:46:27.488] [INFO] cheese - batch complete in: 1.062 secs +[2018-02-13T00:46:27.490] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:46:27.534] [INFO] cheese - inserting 1000 documents. first: Mark Pennington and last: Ulam, Adam +[2018-02-13T00:46:27.587] [INFO] cheese - inserting 1000 documents. first: Alice Tissot and last: Didier Dubois +[2018-02-13T00:46:27.608] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T00:46:27.673] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:46:27.937] [INFO] cheese - inserting 1000 documents. first: 2010 Asian Indoor Championships in Athletics and last: Tuskegee syphilis experiments +[2018-02-13T00:46:27.985] [INFO] cheese - inserting 1000 documents. first: File:LIBlogoRightsmr.jpg and last: Phillipa Finch +[2018-02-13T00:46:28.014] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:46:28.060] [INFO] cheese - inserting 1000 documents. first: Leon Stover and last: Schlatt b. Winterthur +[2018-02-13T00:46:28.099] [INFO] cheese - inserting 1000 documents. first: File:Triggermen.jpg and last: Iamgold Corp. +[2018-02-13T00:46:28.102] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:46:28.111] [INFO] cheese - inserting 1000 documents. first: Ross Clow and last: East of Ireland +[2018-02-13T00:46:28.139] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:46:28.250] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:46:28.613] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T00:46:29.149] [INFO] cheese - inserting 1000 documents. first: USS Caprice and last: The Devil and Sherlock Holmes: Tales of Murder, Madness, and Obsession +[2018-02-13T00:46:29.242] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T00:46:29.277] [INFO] cheese - inserting 1000 documents. first: Route nationale 1 and last: Chris Kuper +[2018-02-13T00:46:29.374] [INFO] cheese - inserting 1000 documents. first: File:CreRecombActiveSite.png and last: Assumption College, Bangkok +[2018-02-13T00:46:29.397] [INFO] cheese - inserting 1000 documents. first: Ellen Halpenny and last: Vermilion Lake (Sudbury) +[2018-02-13T00:46:29.405] [INFO] cheese - batch complete in: 1.266 secs +[2018-02-13T00:46:29.483] [INFO] cheese - batch complete in: 1.233 secs +[2018-02-13T00:46:29.489] [INFO] cheese - batch complete in: 1.387 secs +[2018-02-13T00:46:29.727] [INFO] cheese - inserting 1000 documents. first: Crambus inconspicuellus and last: Template:WPBannerDoc/doc +[2018-02-13T00:46:29.808] [INFO] cheese - batch complete in: 1.195 secs +[2018-02-13T00:46:29.850] [INFO] cheese - inserting 1000 documents. first: Sled hockey at the 2010 Winter Paralympics and last: Derek 'Deek' Henderson +[2018-02-13T00:46:29.861] [INFO] cheese - inserting 1000 documents. first: Independent candidates, 1985 Ontario provincial election and last: Scouting Slovakia +[2018-02-13T00:46:29.933] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:46:29.942] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:46:30.000] [INFO] cheese - inserting 1000 documents. first: Conductor ideal and last: Ziaran Meat Packing Company +[2018-02-13T00:46:30.036] [INFO] cheese - inserting 1000 documents. first: Adventures in the DC Universe and last: Category:Districts of the Julcán Province +[2018-02-13T00:46:30.078] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:46:30.111] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:46:30.270] [INFO] cheese - inserting 1000 documents. first: Energy to matter conversion and last: Randomness merger +[2018-02-13T00:46:30.326] [INFO] cheese - inserting 1000 documents. first: Category:Serbian alpine skiers and last: Almost Heathen +[2018-02-13T00:46:30.327] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:46:30.366] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:46:30.509] [INFO] cheese - inserting 1000 documents. first: The Swedish Guide and Scout Council and last: File:Linda Bengtzing - Ingenting att Förlora album cover.jpg +[2018-02-13T00:46:30.541] [INFO] cheese - inserting 1000 documents. first: Calamarca District and last: Bargny-Gouddau +[2018-02-13T00:46:30.579] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:46:30.636] [INFO] cheese - inserting 1000 documents. first: Portal:Jazz/Selected picture/Archive and last: Template:HS number/211.232.2 +[2018-02-13T00:46:30.635] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:46:30.697] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:46:30.768] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Anniversaries/August/August 29 and last: Marcos Alonso Mendoza +[2018-02-13T00:46:30.823] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:46:30.925] [INFO] cheese - inserting 1000 documents. first: Firas Al-Lateef and last: County Route 23 (Genesee County, New York) +[2018-02-13T00:46:31.028] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T00:46:31.229] [INFO] cheese - inserting 1000 documents. first: Template:HS number/211.242.2 and last: Wikipedia:WikiProject Spam/LinkReports/exclusivevent.ro +[2018-02-13T00:46:31.293] [INFO] cheese - inserting 1000 documents. first: Oghul Ghaymish and last: Svetlana Alexievich +[2018-02-13T00:46:31.298] [INFO] cheese - inserting 1000 documents. first: Marías District and last: File:IHCCLogo.jpg +[2018-02-13T00:46:31.305] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:46:31.387] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T00:46:31.432] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T00:46:31.700] [INFO] cheese - inserting 1000 documents. first: Portal:Malawi/Featured article/3 and last: Two Americas (comics) +[2018-02-13T00:46:31.778] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T00:46:31.923] [INFO] cheese - inserting 1000 documents. first: Roy Dexter and last: Inter de Grand-Goâve +[2018-02-13T00:46:31.960] [INFO] cheese - inserting 1000 documents. first: County Route 9 (Genesee County, New York) and last: Category:Redirect-Class FC Bayern Munich articles +[2018-02-13T00:46:31.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BLOWUP and last: Wikipedia:Miscellany for deletion/User:1archie99/Artvoice +[2018-02-13T00:46:32.022] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T00:46:32.027] [INFO] cheese - batch complete in: 4.539 secs +[2018-02-13T00:46:32.027] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:46:32.073] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Scouting/Userboxes/Order of the Arrow and last: Ab. +[2018-02-13T00:46:32.151] [INFO] cheese - inserting 1000 documents. first: List of Sailor Moon chapters and last: Derrick De Marney +[2018-02-13T00:46:32.155] [INFO] cheese - inserting 1000 documents. first: File:Hell-to-pay-roberto gomez martin.jpg and last: NKR2B4 +[2018-02-13T00:46:32.195] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:46:32.191] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:46:32.219] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T00:46:32.395] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Kalaua and last: Fluctuat, nec mergitur +[2018-02-13T00:46:32.395] [INFO] cheese - inserting 1000 documents. first: Tal Block and last: John Currie (footballer born 1939) +[2018-02-13T00:46:32.441] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:46:32.462] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:46:32.571] [INFO] cheese - inserting 1000 documents. first: 2010 Kor Royal Cup unrest and last: Template:Country data Catalunya +[2018-02-13T00:46:32.588] [INFO] cheese - inserting 1000 documents. first: Otloh and last: Safi (given name) +[2018-02-13T00:46:32.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Merchant of Venice (computer program) and last: Liao Tartars +[2018-02-13T00:46:32.610] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:46:32.642] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:46:32.668] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:46:32.862] [INFO] cheese - inserting 1000 documents. first: Taiko Risshiden and last: Belmont Lions Club +[2018-02-13T00:46:32.901] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:46:32.911] [INFO] cheese - inserting 1000 documents. first: St Laurenz Basilica, Kempten and last: Pilot (Allen Gregory) +[2018-02-13T00:46:32.966] [INFO] cheese - inserting 1000 documents. first: WLOM-FM and last: And lo...a pilot shall come! +[2018-02-13T00:46:32.986] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:46:33.014] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:46:33.165] [INFO] cheese - inserting 1000 documents. first: 14th Samoan Parliament and last: Template:Bengali-film-stub +[2018-02-13T00:46:33.168] [INFO] cheese - inserting 1000 documents. first: Average Frustrated Chump and last: The Game (wrestler) +[2018-02-13T00:46:33.204] [INFO] cheese - inserting 1000 documents. first: A Centaur's Life and last: Communion of the Apostles (Barocci) +[2018-02-13T00:46:33.206] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:46:33.220] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:46:33.293] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:46:33.371] [INFO] cheese - inserting 1000 documents. first: Template:Cultures of Slavs and last: Category:1977 establishments in the Soviet Union +[2018-02-13T00:46:33.406] [INFO] cheese - inserting 1000 documents. first: File:Ultimatemiracles.jpg and last: Category:People from Vrlika +[2018-02-13T00:46:33.462] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:46:33.478] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:46:33.554] [INFO] cheese - inserting 1000 documents. first: Samsung Galaxy J7 Prime and last: Wikipedia:WikiProject Royalty and Nobility/Popular pages +[2018-02-13T00:46:33.638] [INFO] cheese - batch complete in: 1.61 secs +[2018-02-13T00:46:33.675] [INFO] cheese - inserting 1000 documents. first: Yugoslav partisan and last: AqME +[2018-02-13T00:46:33.688] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Wes Scantlin and last: Ng Hong-mun +[2018-02-13T00:46:33.747] [INFO] cheese - inserting 1000 documents. first: Useless Trinkets and last: Serkan celikoz +[2018-02-13T00:46:33.747] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:46:33.788] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T00:46:33.857] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:46:33.973] [INFO] cheese - inserting 1000 documents. first: Portal:Miami/Selected Photo/4 and last: Category:Houses in the London Borough of Enfield +[2018-02-13T00:46:34.028] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:46:34.108] [INFO] cheese - inserting 1000 documents. first: Will Clarke (disambiguation) and last: 1998–99 EuroLeague Women +[2018-02-13T00:46:34.233] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T00:46:34.361] [INFO] cheese - inserting 1000 documents. first: Gufo and last: File:En cuerpo ajeno poster.jpg +[2018-02-13T00:46:34.390] [INFO] cheese - inserting 1000 documents. first: Banner page and last: Wikipedia:Version 1.0 Editorial Team/College basketball articles by quality statistics +[2018-02-13T00:46:34.432] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:46:34.452] [INFO] cheese - inserting 1000 documents. first: German submarine U-46 (1938) and last: File:Stripesposter.jpg +[2018-02-13T00:46:34.471] [INFO] cheese - inserting 1000 documents. first: Melanchthonweg RandstadRail station and last: Bruce Larkin +[2018-02-13T00:46:34.496] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:46:34.538] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:46:34.613] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:46:34.857] [INFO] cheese - inserting 1000 documents. first: Auti Angel and last: A. verticillata (disambiguation) +[2018-02-13T00:46:34.938] [INFO] cheese - inserting 1000 documents. first: Chitra Pournami (film) and last: Category:Actresses from Durango +[2018-02-13T00:46:34.959] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:46:35.025] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:46:35.132] [INFO] cheese - inserting 1000 documents. first: Ferdinand Pelez and last: File:Mix1063.jpg +[2018-02-13T00:46:35.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Pnelnik and last: Portal:Current events/2010 February 23 +[2018-02-13T00:46:35.193] [INFO] cheese - inserting 1000 documents. first: Cookie time and last: TOC (Debate) +[2018-02-13T00:46:35.199] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:46:35.304] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:46:35.298] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:46:35.560] [INFO] cheese - inserting 1000 documents. first: Crossing Creek and last: Kazuhiko Aomoto +[2018-02-13T00:46:35.589] [INFO] cheese - inserting 1000 documents. first: China Railways HXD3D and last: Archbishop Blanch School +[2018-02-13T00:46:35.637] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:46:35.758] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:46:35.988] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Geekbrief and last: Tartarus (spider) +[2018-02-13T00:46:36.025] [INFO] cheese - inserting 1000 documents. first: May devotions to the Blessed Virgin Mary and last: Kolanda +[2018-02-13T00:46:36.072] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T00:46:36.180] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T00:46:36.226] [INFO] cheese - inserting 1000 documents. first: File:Spider-Woman 1 (2009).jpg and last: Dečina +[2018-02-13T00:46:36.275] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T00:46:36.283] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Biography/Science and academia/Popular pages and last: Zomaron Merchant Services +[2018-02-13T00:46:36.373] [INFO] cheese - inserting 1000 documents. first: National symbols of Indonesia and last: L'Ange-Gardien, Les Collines-de-l'Outaouais, Quebec +[2018-02-13T00:46:36.379] [INFO] cheese - batch complete in: 2.741 secs +[2018-02-13T00:46:36.414] [INFO] cheese - inserting 1000 documents. first: Category:18th century in Birmingham, West Midlands and last: Kaiser Darrin 161 +[2018-02-13T00:46:36.478] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:46:36.499] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:46:36.723] [INFO] cheese - inserting 1000 documents. first: Cardiff skyline and last: Anti-Japanese Army For The Salvation Of The Country +[2018-02-13T00:46:36.815] [INFO] cheese - inserting 1000 documents. first: Felix de Andreis and last: Amilkar Ariza +[2018-02-13T00:46:36.830] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:46:36.871] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T00:46:36.974] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Layali El Bidh and last: Cornelia Schleime +[2018-02-13T00:46:37.003] [INFO] cheese - inserting 1000 documents. first: John Marston and last: Category:WikiProject Ice Hockey/Vancouver Canucks task force members +[2018-02-13T00:46:37.020] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:46:37.073] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T00:46:37.086] [INFO] cheese - inserting 1000 documents. first: Sir Peter Petrie, 5th Baronet and last: Disturbance term +[2018-02-13T00:46:37.192] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:46:37.324] [INFO] cheese - inserting 1000 documents. first: Tom Mix filmography and last: Template:User Triathlon +[2018-02-13T00:46:37.336] [INFO] cheese - inserting 1000 documents. first: Category:Historic house museums in Bristol and last: Typisms +[2018-02-13T00:46:37.408] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T00:46:37.408] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:46:37.443] [INFO] cheese - inserting 1000 documents. first: Category:Oceanitinae and last: Phomopsis leaf +[2018-02-13T00:46:37.500] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:46:37.537] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/monorobot and last: Vaggelis Kryos +[2018-02-13T00:46:37.596] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T00:46:37.636] [INFO] cheese - inserting 1000 documents. first: Category:Defunct clubs and societies of the United States and last: Garland E. Pierce +[2018-02-13T00:46:37.691] [INFO] cheese - inserting 1000 documents. first: James Warlick and last: Save the Children Canada +[2018-02-13T00:46:37.697] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:46:37.747] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T00:46:37.850] [INFO] cheese - inserting 1000 documents. first: Armin Bauer and last: Doug Gabbard, II +[2018-02-13T00:46:37.929] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:46:37.964] [INFO] cheese - inserting 1000 documents. first: File:Muir logo.gif and last: Picton Reading Room +[2018-02-13T00:46:38.018] [INFO] cheese - inserting 1000 documents. first: Somchai Chantarasamrit and last: Template:Representative/current/New York assembly/doc +[2018-02-13T00:46:38.019] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:46:38.065] [INFO] cheese - inserting 1000 documents. first: Category:IEEPA sanctions fair use images and last: Plastic Surgeon +[2018-02-13T00:46:38.103] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:46:38.149] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:46:38.207] [INFO] cheese - inserting 1000 documents. first: Miquihuana and last: Cainogenion +[2018-02-13T00:46:38.242] [INFO] cheese - inserting 1000 documents. first: Handbook On Japanes Military Forces and last: Ἀρτέμιδος +[2018-02-13T00:46:38.257] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:46:38.288] [INFO] cheese - inserting 1000 documents. first: Long-tailed Chinchilla and last: Nepenthes acid proteinase +[2018-02-13T00:46:38.305] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:46:38.344] [INFO] cheese - inserting 1000 documents. first: File:Islamic Iran Solidarity Party.jpg and last: Bartholomaeus Olivieri +[2018-02-13T00:46:38.347] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:46:38.419] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:46:38.539] [INFO] cheese - inserting 1000 documents. first: Portal:Philosophy of science/Wikimedia and last: Template:PD-India-old +[2018-02-13T00:46:38.588] [INFO] cheese - inserting 1000 documents. first: South Bourke and Mornington Journal and last: Category:Actresses from Guerrero +[2018-02-13T00:46:38.599] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:46:38.663] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:46:38.747] [INFO] cheese - inserting 1000 documents. first: Triple lutz and last: Elabuzhski District +[2018-02-13T00:46:38.752] [INFO] cheese - inserting 1000 documents. first: Category:798 by country and last: Qaleh, Avaj +[2018-02-13T00:46:38.774] [INFO] cheese - inserting 1000 documents. first: Seigneur de Joinville and last: Oberea kanarensis +[2018-02-13T00:46:38.805] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:46:38.819] [INFO] cheese - inserting 1000 documents. first: Category:Government agencies established in 1912 and last: File:Annabelle-Resilience.jpg +[2018-02-13T00:46:38.821] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:46:38.864] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:46:38.901] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:46:39.174] [INFO] cheese - inserting 1000 documents. first: File:AllTheRageBackHome.jpg and last: Thaumatosaurus oolithicus +[2018-02-13T00:46:39.240] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:46:39.375] [INFO] cheese - inserting 1000 documents. first: Oberea luluensis and last: Balapokuna Raja Maha Vihara +[2018-02-13T00:46:39.378] [INFO] cheese - inserting 1000 documents. first: Portal:New Zealand/Selected picture/Week 51, 2006 and last: Khooni Darwaza +[2018-02-13T00:46:39.411] [INFO] cheese - inserting 1000 documents. first: Elabuzhskii District and last: MTV Movie Award for Best Song From a Movie +[2018-02-13T00:46:39.410] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:46:39.431] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Didar and last: Category:1576 in art +[2018-02-13T00:46:39.433] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T00:46:39.479] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:46:39.528] [INFO] cheese - inserting 1000 documents. first: Mogliamante and last: Cospan District +[2018-02-13T00:46:39.541] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:46:39.652] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:46:39.890] [INFO] cheese - inserting 1000 documents. first: Los Exóticos and last: 2005–06 Liga de Fútbol Profesional Boliviano +[2018-02-13T00:46:39.896] [INFO] cheese - inserting 1000 documents. first: Il mercante di Venezia and last: Matilda and the Ramsay Bunch (Series 1) +[2018-02-13T00:46:39.934] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:46:39.957] [INFO] cheese - inserting 1000 documents. first: Category:1579 in art and last: Yaranskiy District +[2018-02-13T00:46:39.980] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:46:40.016] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:46:40.086] [INFO] cheese - inserting 1000 documents. first: Law of chemical combinations and last: Ian Bolton +[2018-02-13T00:46:40.109] [INFO] cheese - inserting 1000 documents. first: Live from the Relapse Contamination Festival and last: File:Pokhi screenshot.jpg +[2018-02-13T00:46:40.129] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T00:46:40.208] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T00:46:40.247] [INFO] cheese - inserting 1000 documents. first: What They Had and last: Category:Universities and colleges in Bidar district +[2018-02-13T00:46:40.255] [INFO] cheese - inserting 1000 documents. first: Portal:Florida/Selected panorama/9 and last: Memorial Hall (Richmond, Illinois) +[2018-02-13T00:46:40.289] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:46:40.346] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:46:40.443] [INFO] cheese - inserting 1000 documents. first: Neoeromene felix and last: Category:Tropidion +[2018-02-13T00:46:40.491] [INFO] cheese - inserting 1000 documents. first: Yaranski District and last: Category:Books by John Hay +[2018-02-13T00:46:40.501] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:46:40.604] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:46:40.652] [INFO] cheese - inserting 1000 documents. first: Kerrville Bus and last: Urauna +[2018-02-13T00:46:40.748] [INFO] cheese - inserting 1000 documents. first: Santa Vera Cruz and last: Template:User visited Indiana/doc +[2018-02-13T00:46:40.748] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:46:40.816] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:46:40.832] [INFO] cheese - inserting 1000 documents. first: Lists of Finnish films and last: Dendroid (math) +[2018-02-13T00:46:40.986] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T00:46:41.084] [INFO] cheese - inserting 1000 documents. first: Franciszek Kaminski and last: Verbal fluency test +[2018-02-13T00:46:41.271] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T00:46:41.289] [INFO] cheese - inserting 1000 documents. first: Lunella moniliformis and last: Element 162 +[2018-02-13T00:46:41.361] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Seycellesa and last: Wikipedia:WikiProject National Basketball League of Canada/Article alerts/Archive +[2018-02-13T00:46:41.384] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T00:46:41.404] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:46:41.437] [INFO] cheese - inserting 1000 documents. first: Another Minute (Sahaj album) and last: Tom Madden +[2018-02-13T00:46:41.571] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T00:46:41.657] [INFO] cheese - inserting 1000 documents. first: Lisa Anderson and last: Izod lacoste +[2018-02-13T00:46:41.756] [INFO] cheese - inserting 1000 documents. first: Category:Naval trawlers of the United Kingdom and last: Carrarese +[2018-02-13T00:46:41.786] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T00:46:41.833] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T00:46:41.916] [INFO] cheese - inserting 1000 documents. first: Reefer (ship) and last: Category:Templates for redirects based on synonymy +[2018-02-13T00:46:41.939] [INFO] cheese - inserting 1000 documents. first: The Graun and last: Pulau Indah Industrial Park +[2018-02-13T00:46:41.940] [INFO] cheese - inserting 1000 documents. first: Element 163 and last: Eoreuma loftini +[2018-02-13T00:46:41.976] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:46:41.981] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:46:41.997] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:46:42.094] [INFO] cheese - inserting 1000 documents. first: Zhao Dezhao and last: Rank-revealing QR factorization +[2018-02-13T00:46:42.160] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:46:42.427] [INFO] cheese - inserting 1000 documents. first: Eoreuma morbidellus and last: Ptychopseustis fuscivenalis +[2018-02-13T00:46:42.440] [INFO] cheese - inserting 1000 documents. first: Speed skating at the 2014 Winter Olympics – Women's 5000 metres and last: Drifter (1981 song) +[2018-02-13T00:46:42.492] [INFO] cheese - inserting 1000 documents. first: Conspiracy? and last: Adrian Dingli +[2018-02-13T00:46:42.603] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:46:42.605] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T00:46:42.610] [INFO] cheese - inserting 1000 documents. first: Category:Turkish crime drama television series and last: Draft:Chico Air Museum +[2018-02-13T00:46:42.658] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T00:46:42.699] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T00:46:42.713] [INFO] cheese - inserting 1000 documents. first: Seyfang Laboratories and last: Facilities Protection Service +[2018-02-13T00:46:42.789] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:46:42.798] [INFO] cheese - inserting 1000 documents. first: Conscious Evolution and last: Sheyd Esfahan +[2018-02-13T00:46:42.869] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:46:43.124] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Corythangela and last: Category:Boxers from Washington, D. C. +[2018-02-13T00:46:43.133] [INFO] cheese - inserting 1000 documents. first: Ptychopseustis ictericalis and last: Tarski's theorem on choice +[2018-02-13T00:46:43.159] [INFO] cheese - inserting 1000 documents. first: Spirit filled and last: Henri Coëffier Ruzé d'Effiat +[2018-02-13T00:46:43.171] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:46:43.180] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:46:43.187] [INFO] cheese - inserting 1000 documents. first: Bahraini Premier League 1981–82 and last: Matoush Aerodrome +[2018-02-13T00:46:43.189] [INFO] cheese - inserting 1000 documents. first: Template:Val/Print and last: ORVM +[2018-02-13T00:46:43.201] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:46:43.250] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:46:43.254] [INFO] cheese - inserting 1000 documents. first: Tamara Griesser Pečar and last: Computer human chess +[2018-02-13T00:46:43.302] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:46:43.304] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:46:43.493] [INFO] cheese - inserting 1000 documents. first: Category:Tom McCall Waterfront Park and last: SECI (disambiguation) +[2018-02-13T00:46:43.526] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:46:43.622] [INFO] cheese - inserting 1000 documents. first: CRS7 and last: Category:People from Phra Nakhon Si Ayutthaya Province +[2018-02-13T00:46:43.640] [INFO] cheese - inserting 1000 documents. first: Category:Vangueria and last: Category:Paracanoeists of Brazil +[2018-02-13T00:46:43.661] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:46:43.682] [INFO] cheese - inserting 1000 documents. first: Mathias Morris and last: Category:Top-importance European Union articles +[2018-02-13T00:46:43.691] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:46:43.728] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:46:43.786] [INFO] cheese - inserting 1000 documents. first: Human computer chess and last: Pattukkottai Prabakar +[2018-02-13T00:46:43.828] [INFO] cheese - inserting 1000 documents. first: Wing-mirror and last: Charles Russell House (disambiguation) +[2018-02-13T00:46:43.848] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:46:43.871] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:46:43.928] [INFO] cheese - inserting 1000 documents. first: Vasisht (disambiguation) and last: Category:Articles with Ilocano-language external links +[2018-02-13T00:46:43.962] [INFO] cheese - inserting 1000 documents. first: Category:Ballet companies in Chile and last: Sokos Hotel Torni +[2018-02-13T00:46:43.979] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:46:44.012] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:46:44.088] [INFO] cheese - inserting 1000 documents. first: Niccolo dell'Abati and last: Template:Infobox tornado/sandbox +[2018-02-13T00:46:44.133] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:46:44.355] [INFO] cheese - inserting 1000 documents. first: Category:Ukraine subdivision templates and last: Grupo 2002 Murcia +[2018-02-13T00:46:44.362] [INFO] cheese - inserting 1000 documents. first: Category:Wooden churches in Moldova and last: Category:1927 in Latvian sport +[2018-02-13T00:46:44.402] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:46:44.409] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:46:44.479] [INFO] cheese - inserting 1000 documents. first: Safadin and last: Portal:Speculative fiction/Anniversaries/November/November 7 +[2018-02-13T00:46:44.498] [INFO] cheese - inserting 1000 documents. first: File:Reformationposttlc.jpg and last: Genetically modified food controversies +[2018-02-13T00:46:44.515] [INFO] cheese - inserting 1000 documents. first: Philip of Exon and last: Kawasaki Superbikes +[2018-02-13T00:46:44.539] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:46:44.587] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T00:46:44.601] [INFO] cheese - inserting 1000 documents. first: Portal:Sexuality/Random picture/21 and last: Argyria leucomeralis +[2018-02-13T00:46:44.602] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T00:46:44.666] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:46:44.849] [INFO] cheese - inserting 1000 documents. first: Bily Clocks Museum and last: Template:Did you know nominations/The Old Axolotl +[2018-02-13T00:46:44.886] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:46:44.958] [INFO] cheese - inserting 1000 documents. first: Donald Watson, artist and last: Central High School (Columbus, Ohio) +[2018-02-13T00:46:44.967] [INFO] cheese - inserting 1000 documents. first: Sertv and last: Eastern Egyptian Bedawi Spoken Arabic language +[2018-02-13T00:46:45.062] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:46:45.089] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:46:45.106] [INFO] cheese - inserting 1000 documents. first: Of Reuss and last: Odette Lapierre +[2018-02-13T00:46:45.175] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Anniversaries/July/July 7 and last: K34HO +[2018-02-13T00:46:45.195] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/globaldatabase.co.uk and last: Largest Wikipedia +[2018-02-13T00:46:45.200] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:46:45.236] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:46:45.296] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:46:45.349] [INFO] cheese - inserting 1000 documents. first: Japan baseball team and last: Thea Landa +[2018-02-13T00:46:45.488] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:46:45.618] [INFO] cheese - inserting 1000 documents. first: 28 July 2003 Mumbai bus bombing and last: Philagathus +[2018-02-13T00:46:45.689] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:46:45.716] [INFO] cheese - inserting 1000 documents. first: 4th (Quetta) Division and last: Infant Jesus Academy of Silang +[2018-02-13T00:46:45.819] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:46:45.828] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Pennsylvania Route 154 and last: Template:Towns in Zhuhai +[2018-02-13T00:46:45.895] [INFO] cheese - inserting 1000 documents. first: File:Great Big Western Howdy.jpg and last: Central Mashonaland +[2018-02-13T00:46:45.912] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:46:45.961] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:46:46.059] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ski articles by quality/2 and last: Pindorama Biological Reserve +[2018-02-13T00:46:46.071] [INFO] cheese - inserting 1000 documents. first: Sentro ng Alternatibong Lingap Panligan and last: Donald Trump wiretapping claim +[2018-02-13T00:46:46.181] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:46:46.236] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T00:46:46.308] [INFO] cheese - inserting 1000 documents. first: Incurvaria splendidella and last: William Fulford +[2018-02-13T00:46:46.358] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:46:46.463] [INFO] cheese - inserting 1000 documents. first: Realmente bella Señorita Panama and last: List of windmills in Kent +[2018-02-13T00:46:46.501] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:46:46.557] [INFO] cheese - inserting 1000 documents. first: 1921 in China and last: Module:Location map/data/USA Indiana Wells County +[2018-02-13T00:46:46.607] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:46:46.716] [INFO] cheese - inserting 1000 documents. first: Agadir air disaster and last: Histia +[2018-02-13T00:46:46.720] [INFO] cheese - inserting 1000 documents. first: Category:People from Hornsey and last: Wikipedia:Suspected sock puppets/Daniel575 (2nd) +[2018-02-13T00:46:46.752] [INFO] cheese - inserting 1000 documents. first: Condescension (religion) and last: Aster linariifolius +[2018-02-13T00:46:46.760] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:46:46.771] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T00:46:46.808] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:46:46.951] [INFO] cheese - inserting 1000 documents. first: Category:2013–14 in Hong Kong basketball and last: Wilcox County Courthouse (Camden, Alabama) +[2018-02-13T00:46:46.965] [INFO] cheese - inserting 1000 documents. first: Salah Abdul Rasool Al Bloushi and last: The garbage heap of history +[2018-02-13T00:46:46.995] [INFO] cheese - inserting 1000 documents. first: Echinocereus coccineus and last: Maiden Trail +[2018-02-13T00:46:47.012] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T00:46:47.021] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:46:47.043] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:46:47.134] [INFO] cheese - inserting 1000 documents. first: Barra Velodrome and last: Template:Lang-nod +[2018-02-13T00:46:47.161] [INFO] cheese - inserting 1000 documents. first: Maktab al-Khadamat and last: Sèvres - Lecourbe (Paris Metro) +[2018-02-13T00:46:47.173] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:46:47.210] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:46:47.246] [INFO] cheese - inserting 1000 documents. first: United States Navy Argus Units and last: S. haenkeana +[2018-02-13T00:46:47.318] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:46:47.412] [INFO] cheese - inserting 1000 documents. first: File:Trill Entertainment Presents - Survival of the Fittest.jpg and last: Labyrinth of the World and Paradise of the Heart +[2018-02-13T00:46:47.455] [INFO] cheese - inserting 1000 documents. first: File:Got a Hold on Me.jpg and last: File:Who Shot Patakango?.jpg +[2018-02-13T00:46:47.472] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:46:47.483] [INFO] cheese - inserting 1000 documents. first: Zhu Yuchen (born 1961) and last: Mansour (TV series) +[2018-02-13T00:46:47.490] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:46:47.526] [INFO] cheese - inserting 1000 documents. first: Alphabetical list of comuni of Italy: A and last: Coniesta rufifusalis +[2018-02-13T00:46:47.543] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:46:47.569] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:46:47.587] [INFO] cheese - inserting 1000 documents. first: Guaranís and last: Angel Maria Garibay Kintana +[2018-02-13T00:46:47.633] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T00:46:47.691] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 April 4 and last: John Hals +[2018-02-13T00:46:47.746] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:46:47.798] [INFO] cheese - inserting 1000 documents. first: Humanitarian response to the 2010 Chile earthquake and last: Melampyrum sylvaticum +[2018-02-13T00:46:47.932] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:46:48.103] [INFO] cheese - inserting 1000 documents. first: Baern (Smallville) and last: Notre-Dame-de-Lorette (Paris Metro) +[2018-02-13T00:46:48.104] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Jesus work group articles and last: Category:Chrysler people +[2018-02-13T00:46:48.117] [INFO] cheese - inserting 1000 documents. first: Scythris turiensis and last: Template:Editnotices/Page/Marka refugee camp +[2018-02-13T00:46:48.152] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:46:48.191] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:46:48.286] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T00:46:48.550] [INFO] cheese - inserting 1000 documents. first: Chithariyavar and last: Metadata edit +[2018-02-13T00:46:48.599] [INFO] cheese - inserting 1000 documents. first: File:Generation-Goldman-Volume2.jpg and last: File:Univ puebla seal.png +[2018-02-13T00:46:48.638] [INFO] cheese - inserting 1000 documents. first: Spend a penny and last: Category:1950s in Europe +[2018-02-13T00:46:48.689] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T00:46:48.718] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:46:48.737] [INFO] cheese - inserting 1000 documents. first: Maksim Aleksandrovich Belyayev and last: UN Enemy State Clause +[2018-02-13T00:46:48.740] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T00:46:48.773] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:46:48.982] [INFO] cheese - inserting 1000 documents. first: Marx Dormoy (Paris Metro) and last: Aggio +[2018-02-13T00:46:49.030] [INFO] cheese - inserting 1000 documents. first: Brian Sherratt (educator) and last: Byrana Nagappa Suresh +[2018-02-13T00:46:49.033] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T00:46:49.111] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:46:49.145] [INFO] cheese - inserting 1000 documents. first: Carrai afoveolata and last: Plymouth settlement +[2018-02-13T00:46:49.237] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:46:49.242] [INFO] cheese - inserting 1000 documents. first: Vittorio Croizat and last: Wikipedia:Articles for deletion/ANC Today +[2018-02-13T00:46:49.322] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:46:49.347] [INFO] cheese - inserting 1000 documents. first: Collegeinsider.com and last: Wikipedia:Sockpuppet investigations/Baboon43/Archive +[2018-02-13T00:46:49.464] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:46:49.477] [INFO] cheese - inserting 1000 documents. first: Book:Bohrium and last: Category:Political organizations in the United States +[2018-02-13T00:46:49.564] [INFO] cheese - inserting 1000 documents. first: Harley-Davidson Museum and last: Demski +[2018-02-13T00:46:49.600] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T00:46:49.662] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:46:49.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Conservatism/References and last: Category:People from Mount Morris, New York +[2018-02-13T00:46:49.777] [INFO] cheese - inserting 1000 documents. first: Poona Mounted Infantry and last: Zitenga Department +[2018-02-13T00:46:49.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saswat saubhagya rout and last: Template:User visited Rhode Island +[2018-02-13T00:46:49.849] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:46:49.886] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T00:46:49.961] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:46:50.240] [INFO] cheese - inserting 1000 documents. first: Barbara Ringer and last: Category:Software companies of Wales +[2018-02-13T00:46:50.335] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hamlet and last: Template:Did you know nominations/Hotel Janzen +[2018-02-13T00:46:50.366] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T00:46:50.387] [INFO] cheese - inserting 1000 documents. first: West 25th-Ohio City (RTA RedCtc Line Rapid Transit station) and last: Snipperclips: Cut It Out, Together! +[2018-02-13T00:46:50.397] [INFO] cheese - inserting 1000 documents. first: Category:People associated with the University of Hertfordshire and last: Winfield Scott, Jr. +[2018-02-13T00:46:50.417] [INFO] cheese - inserting 1000 documents. first: Treblinka II and last: Chițoveni +[2018-02-13T00:46:50.424] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T00:46:50.432] [INFO] cheese - inserting 1000 documents. first: West Sussex County Council and last: 3630 Lubomír +[2018-02-13T00:46:50.443] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:46:50.470] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:46:50.471] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:46:50.555] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:46:50.891] [INFO] cheese - inserting 1000 documents. first: Lathrocordulia metallica and last: Valeriy Vdovin +[2018-02-13T00:46:51.004] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:46:51.035] [INFO] cheese - inserting 1000 documents. first: Uno (surname) and last: HV71 Jonkoping +[2018-02-13T00:46:51.079] [INFO] cheese - inserting 1000 documents. first: Eric Carlson (musician) and last: Standard Russian +[2018-02-13T00:46:51.082] [INFO] cheese - inserting 1000 documents. first: Bădiuți and last: Wikipedia:Articles for deletion/East Side (Phoenix) +[2018-02-13T00:46:51.125] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T00:46:51.144] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:46:51.224] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:46:51.239] [INFO] cheese - inserting 1000 documents. first: Takayuki Okada and last: Chronic disease in Northern Ontario +[2018-02-13T00:46:51.262] [INFO] cheese - inserting 1000 documents. first: Danzig Rebellion and last: Portal:Military of Australia/Selected anniversaries/October/October 24 +[2018-02-13T00:46:51.340] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:46:51.361] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T00:46:51.534] [INFO] cheese - inserting 1000 documents. first: Gillermo Faerber and last: File:San Francisco Bicycle Coalition Logo.png +[2018-02-13T00:46:51.621] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:46:51.763] [INFO] cheese - inserting 1000 documents. first: Lauri Lahesalu and last: Route 43 (MTA Maryland) +[2018-02-13T00:46:51.789] [INFO] cheese - inserting 1000 documents. first: List of U.S. Army, Navy and volunteer units in the Mexican–American War and last: Theodore Samuel Adams +[2018-02-13T00:46:51.838] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:46:51.858] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:46:51.883] [INFO] cheese - inserting 1000 documents. first: SBMP and last: Ezra Lee +[2018-02-13T00:46:51.922] [INFO] cheese - inserting 1000 documents. first: Graphium weiskei and last: Edith Wilson (singer) +[2018-02-13T00:46:52.005] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:46:52.059] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:46:52.197] [INFO] cheese - inserting 1000 documents. first: File:Artist Rosemary Mayer.jpg and last: Template:Did you know nominations/Pendleton Dudley +[2018-02-13T00:46:52.252] [INFO] cheese - inserting 1000 documents. first: Taub–NUT metric and last: Robert le diable (opera) +[2018-02-13T00:46:52.264] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:46:52.346] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T00:46:52.413] [INFO] cheese - inserting 1000 documents. first: Mei Fanggu and last: Noctua simulatrix +[2018-02-13T00:46:52.484] [INFO] cheese - inserting 1000 documents. first: Jach'a Q'awa and last: Zonilia argentifera +[2018-02-13T00:46:52.499] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:46:52.516] [INFO] cheese - inserting 1000 documents. first: Category:Stradivari violins and last: Rub It Better +[2018-02-13T00:46:52.551] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:46:52.621] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:46:52.623] [INFO] cheese - inserting 1000 documents. first: Third Age Foundation (UK) and last: G-type +[2018-02-13T00:46:52.677] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:46:52.809] [INFO] cheese - inserting 1000 documents. first: Joan Schmidt (cricketer) and last: Rabb Da Radio +[2018-02-13T00:46:52.874] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:46:52.887] [INFO] cheese - inserting 1000 documents. first: Khuman and last: File:Trevor Hall (album).jpg +[2018-02-13T00:46:52.959] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:46:52.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/moviedl.net and last: AMICE +[2018-02-13T00:46:53.068] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:46:53.225] [INFO] cheese - inserting 1000 documents. first: Yadava College and last: Template:USSenDemLead +[2018-02-13T00:46:53.279] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:46:53.295] [INFO] cheese - inserting 1000 documents. first: Category:Amphibians of Australia and last: Mazda 717 +[2018-02-13T00:46:53.351] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:46:53.370] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Travis Smith (musician) and last: Wikipedia:WikiProject Spam/Local/inadds.com +[2018-02-13T00:46:53.399] [INFO] cheese - inserting 1000 documents. first: Liv (Skins series 6) and last: Wikipedia:WikiProject Spam/LinkReports/lifeline.org.au +[2018-02-13T00:46:53.434] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T00:46:53.462] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:46:53.531] [INFO] cheese - inserting 1000 documents. first: Εργατικό Επαναστατικό Κόμμα and last: Greek Idol (season 1) +[2018-02-13T00:46:53.579] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:46:53.717] [INFO] cheese - inserting 1000 documents. first: Oleksiy Boryslavskiy and last: Category:Norwegian horse trainers +[2018-02-13T00:46:53.749] [INFO] cheese - inserting 1000 documents. first: Kameyama castle and last: Joseph Smith House +[2018-02-13T00:46:53.749] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:46:53.801] [INFO] cheese - inserting 1000 documents. first: Mark of Gideon and last: Shangaj +[2018-02-13T00:46:53.807] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:46:53.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/lifeline.org.au and last: Museum Villas +[2018-02-13T00:46:53.864] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:46:53.868] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:46:53.870] [INFO] cheese - inserting 1000 documents. first: Protected from Reality and last: NForce 900 +[2018-02-13T00:46:53.915] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:46:54.160] [INFO] cheese - inserting 1000 documents. first: Libre Cultural Work and last: Shenin +[2018-02-13T00:46:54.190] [INFO] cheese - inserting 1000 documents. first: Template:Ligue Nationale de Basketball A teams 2011-12 and last: Results of the Queensland state election, 1947 (A-K) +[2018-02-13T00:46:54.197] [INFO] cheese - inserting 1000 documents. first: 10 CMi and last: Zeppos, Nicholas +[2018-02-13T00:46:54.201] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:46:54.202] [INFO] cheese - inserting 1000 documents. first: MAGfest and last: Template:Fooian children +[2018-02-13T00:46:54.239] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:46:54.263] [INFO] cheese - inserting 1000 documents. first: Jewish Russians and last: Giuseppe Patroni Griffi +[2018-02-13T00:46:54.286] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:46:54.285] [INFO] cheese - batch complete in: 1.725 secs +[2018-02-13T00:46:54.361] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:46:54.486] [INFO] cheese - inserting 1000 documents. first: H.H. Baselios Mar Thoma Didymos I and last: Wango +[2018-02-13T00:46:54.630] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T00:46:54.802] [INFO] cheese - inserting 1000 documents. first: Zeppos, Nicholas S. and last: Wikipedia:Sockpuppet investigations/Yash Pal Rao +[2018-02-13T00:46:54.877] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:46:54.966] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject International law/to do and last: Krannónas, Greece +[2018-02-13T00:46:55.013] [INFO] cheese - inserting 1000 documents. first: Shiniyin and last: Category:Wikipedia categories named after American people +[2018-02-13T00:46:55.014] [INFO] cheese - inserting 1000 documents. first: Leif Dietrichson and last: Draft:Generation Yes +[2018-02-13T00:46:55.043] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T00:46:55.088] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T00:46:55.105] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T00:46:55.144] [INFO] cheese - inserting 1000 documents. first: Molten Corporation and last: Binkley +[2018-02-13T00:46:55.220] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T00:46:55.432] [INFO] cheese - inserting 1000 documents. first: Ambohimana and last: Mike O'Berry +[2018-02-13T00:46:55.461] [INFO] cheese - inserting 1000 documents. first: St John the Baptist Church, Winchester and last: St Giles's and St George's Bloomsbury Volunteers +[2018-02-13T00:46:55.497] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T00:46:55.505] [INFO] cheese - inserting 1000 documents. first: Murder of Walsh and Pitman and last: Basketball at the 1972 Summer Olympics – Final +[2018-02-13T00:46:55.520] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:46:55.546] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:46:55.570] [INFO] cheese - inserting 1000 documents. first: Aon Corporation and last: Confederate Memorial Carving +[2018-02-13T00:46:55.570] [INFO] cheese - inserting 1000 documents. first: Kranón and last: Indiatimes portal +[2018-02-13T00:46:55.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stephen Jackson & The Juggernauts and last: Aral Kara Kum +[2018-02-13T00:46:55.625] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:46:55.631] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:46:55.649] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:46:55.866] [INFO] cheese - inserting 1000 documents. first: Draft:َAzim Shor (عظیم شور فارسی) and last: Template:Taxonomy/Khorassania +[2018-02-13T00:46:55.903] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:46:55.904] [INFO] cheese - inserting 1000 documents. first: Khasan Akhriev and last: Category:Waukesha County Technical College alumni +[2018-02-13T00:46:55.908] [INFO] cheese - inserting 1000 documents. first: Category:Art galleries disestablished in 1971 and last: Parfen'yevskii District +[2018-02-13T00:46:55.947] [INFO] cheese - inserting 1000 documents. first: List of broadcasting licenses held by Asian Television Network International Limited and last: Lisa hopp +[2018-02-13T00:46:55.971] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:46:55.975] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:46:56.054] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:46:56.096] [INFO] cheese - inserting 1000 documents. first: Mayfair, Washington, D.C. and last: Kano Eitoku +[2018-02-13T00:46:56.151] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:46:56.208] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Heather Tallchief and last: Judiciary of Italy +[2018-02-13T00:46:56.253] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:46:56.301] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/TheLangmasGroupInc and last: TNA X Division Championship +[2018-02-13T00:46:56.335] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:46:56.347] [INFO] cheese - inserting 1000 documents. first: Nandini Layout and last: 2012/2013 snooker season +[2018-02-13T00:46:56.350] [INFO] cheese - inserting 1000 documents. first: Parfenyyevsky District and last: List of county routes in Ulster County, New York +[2018-02-13T00:46:56.396] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:46:56.442] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:46:56.495] [INFO] cheese - inserting 1000 documents. first: File:Armourtransportlogo.PNG and last: Category:Indian singers by genre +[2018-02-13T00:46:56.559] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:46:56.598] [INFO] cheese - inserting 1000 documents. first: William E. Peterson and last: Fadel Brahami +[2018-02-13T00:46:56.691] [INFO] cheese - inserting 1000 documents. first: Bangladeshi Intelligence Community and last: Tönet, ihr Pauken! Erschallet, Trompeten! +[2018-02-13T00:46:56.694] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:46:56.749] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:46:56.816] [INFO] cheese - inserting 1000 documents. first: Brandan Wilkinson and last: Template:Infobox caesium isotopes +[2018-02-13T00:46:56.856] [INFO] cheese - inserting 1000 documents. first: Category:Papua New Guinean ornithologists and last: Category:Marshallese literature +[2018-02-13T00:46:56.860] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:46:56.866] [INFO] cheese - inserting 1000 documents. first: Category:Paintings by Georges Seurat and last: Christopher J. R. Garrett +[2018-02-13T00:46:56.909] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:46:56.919] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:46:57.088] [INFO] cheese - inserting 1000 documents. first: Garfield 2: A Tale of Two Kitties and last: Research Octane Number +[2018-02-13T00:46:57.120] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:46:57.148] [INFO] cheese - inserting 1000 documents. first: Ke'ara and last: List of Saudi Arabian billionaires by net worth +[2018-02-13T00:46:57.215] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T00:46:57.231] [INFO] cheese - inserting 1000 documents. first: New populist and last: 1991 430km of Silverstone +[2018-02-13T00:46:57.253] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Anonaepestis and last: Category:1959–60 in Austrian ice hockey +[2018-02-13T00:46:57.275] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:46:57.297] [INFO] cheese - inserting 1000 documents. first: File:NationalTrustScotland.svg and last: Template:Fb team Box Hill United +[2018-02-13T00:46:57.303] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:46:57.324] [INFO] cheese - inserting 1000 documents. first: Tilge, Höchster, meine Sünden and last: File:SpoolWhippetsBanner.jpg +[2018-02-13T00:46:57.357] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:46:57.395] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:46:57.519] [INFO] cheese - inserting 1000 documents. first: Winfried Zillig and last: Wikipedia:Bots/Requests for approval/STBotD +[2018-02-13T00:46:57.575] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:46:57.680] [INFO] cheese - inserting 1000 documents. first: Category:1958–59 in Austrian ice hockey and last: File:Walt Dickerson 1976.jpg +[2018-02-13T00:46:57.698] [INFO] cheese - inserting 1000 documents. first: Here There Be Monsters (audio drama) and last: Loch Awe station +[2018-02-13T00:46:57.711] [INFO] cheese - inserting 1000 documents. first: Hong Kong legislative election, 1988 and last: Bubble net +[2018-02-13T00:46:57.727] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:46:57.742] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:46:57.764] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:46:57.789] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of fictional television shows (3rd nomination) and last: Porrectaria triatomea +[2018-02-13T00:46:57.820] [INFO] cheese - inserting 1000 documents. first: List of municipalities of Serbia and last: Stephen Goodin +[2018-02-13T00:46:57.825] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:46:57.830] [INFO] cheese - inserting 1000 documents. first: X-wave and last: Fahy JU +[2018-02-13T00:46:57.864] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:46:57.867] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:46:58.060] [INFO] cheese - inserting 1000 documents. first: Cottonworld and last: Template:Infobox einsteinium isotopes +[2018-02-13T00:46:58.079] [INFO] cheese - inserting 1000 documents. first: Bunker Hill (film) and last: NRN (disambiguation) +[2018-02-13T00:46:58.084] [INFO] cheese - inserting 1000 documents. first: Little Bones and last: Baulmes VD +[2018-02-13T00:46:58.100] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:46:58.118] [INFO] cheese - inserting 1000 documents. first: Opekiska, West Virginia and last: Indianapolis Freeman +[2018-02-13T00:46:58.131] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:46:58.164] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:46:58.182] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:46:58.189] [INFO] cheese - inserting 1000 documents. first: Clifford Scott (psychoanalyst) and last: DOS 5.50 +[2018-02-13T00:46:58.208] [INFO] cheese - inserting 1000 documents. first: Elachista triatomella and last: Ann-Marie Gyllenspetz +[2018-02-13T00:46:58.234] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:46:58.244] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:46:58.344] [INFO] cheese - inserting 1000 documents. first: Alexandria Ariana and last: Oberried am Brienzersee BE +[2018-02-13T00:46:58.363] [INFO] cheese - batch complete in: 0.232 secs +[2018-02-13T00:46:58.379] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Elliot Scheiner and last: Apple I Computer +[2018-02-13T00:46:58.425] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:46:58.471] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Kingston, Ontario and last: ElDorado (the movie) +[2018-02-13T00:46:58.512] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:46:58.516] [INFO] cheese - inserting 1000 documents. first: Glidersport LightHawk and last: Acrolepiopsis infundibulosa +[2018-02-13T00:46:58.553] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:46:58.628] [INFO] cheese - inserting 1000 documents. first: Hampton on sea and last: Category:Belarusian Soviet cosmonauts +[2018-02-13T00:46:58.662] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:46:58.667] [INFO] cheese - inserting 1000 documents. first: Black Wattle and last: Revolting Children +[2018-02-13T00:46:58.751] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:46:58.822] [INFO] cheese - inserting 1000 documents. first: Obersteckholz BE and last: Bellmore, NY +[2018-02-13T00:46:58.847] [INFO] cheese - inserting 1000 documents. first: Category:Millennia in Zimbabwe and last: Columbia Journal of Tax Law +[2018-02-13T00:46:58.872] [INFO] cheese - inserting 1000 documents. first: Category:2015 FIBA Americas Championship and last: Faunus anglewing +[2018-02-13T00:46:58.887] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:46:58.906] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:46:58.954] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:46:58.979] [INFO] cheese - inserting 1000 documents. first: Answer to life, universe and everything and last: Arsenal Underground station +[2018-02-13T00:46:59.020] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:46:59.043] [INFO] cheese - inserting 1000 documents. first: 2 P.M. and last: New Zealand DL class locomotive +[2018-02-13T00:46:59.133] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:46:59.168] [INFO] cheese - inserting 1000 documents. first: Ceratophyllus coahuilensis and last: Gray-hooded bush-tanager +[2018-02-13T00:46:59.253] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:46:59.326] [INFO] cheese - inserting 1000 documents. first: Babylon, NY and last: Bovernier, Switzerland +[2018-02-13T00:46:59.364] [INFO] cheese - inserting 1000 documents. first: Category:Sailboat type designs by Juan Kouyoumdjian and last: Francis Barnard (English cricketer) +[2018-02-13T00:46:59.397] [INFO] cheese - inserting 1000 documents. first: Pyshchugsky and last: Wikipedia:Articles for deletion/2011-12 Colwyn Bay F.C. season +[2018-02-13T00:46:59.400] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:46:59.420] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:46:59.454] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jochen Heisenberg and last: ⊇ +[2018-02-13T00:46:59.481] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:46:59.511] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:46:59.621] [INFO] cheese - inserting 1000 documents. first: NZR DK class and last: George Parker Scarburgh +[2018-02-13T00:46:59.696] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:46:59.734] [INFO] cheese - inserting 1000 documents. first: Bowil, Switzerland and last: Isenthal, Switzerland +[2018-02-13T00:46:59.782] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:46:59.884] [INFO] cheese - inserting 1000 documents. first: Template:Progressive Labor Party (Bermuda)/meta/color and last: Phosphorus virescens +[2018-02-13T00:46:59.942] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:46:59.985] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Rcardiffcity27 and last: Jim Hogan (disambiguation) +[2018-02-13T00:47:00.013] [INFO] cheese - inserting 1000 documents. first: Globules of fat and last: Floss pick +[2018-02-13T00:47:00.017] [INFO] cheese - inserting 1000 documents. first: Isérables, Switzerland and last: Siselen, Switzerland +[2018-02-13T00:47:00.043] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:47:00.047] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T00:47:00.063] [INFO] cheese - inserting 1000 documents. first: 2014–15 United States network television schedule (late night) and last: 2012–13 Austin Peay State Governors basketball team +[2018-02-13T00:47:00.065] [INFO] cheese - inserting 1000 documents. first: Partido del Sol and last: Timoteo Kamalehua Haʻalilio +[2018-02-13T00:47:00.087] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:47:00.139] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T00:47:00.142] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:47:00.296] [INFO] cheese - inserting 1000 documents. first: British-Dutch Wars and last: 1939-40 Football League Third Division South +[2018-02-13T00:47:00.334] [INFO] cheese - inserting 1000 documents. first: Jakaltek (disambiguation) and last: Anglo-Saxon Genealogies +[2018-02-13T00:47:00.339] [INFO] cheese - inserting 1000 documents. first: Sisikon, Switzerland and last: File:GrantHS(OR)Seal.png +[2018-02-13T00:47:00.339] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:47:00.367] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:47:00.376] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:47:00.508] [INFO] cheese - inserting 1000 documents. first: Fulham Broadway station and last: John F. Adams House +[2018-02-13T00:47:00.554] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:47:00.658] [INFO] cheese - inserting 1000 documents. first: Polish prisoners and internees in the Soviet Union and Lithuania (1919–21) and last: 9 Eridani +[2018-02-13T00:47:00.711] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:47:00.720] [INFO] cheese - inserting 1000 documents. first: Cambyreta and last: All Saints Day Flood +[2018-02-13T00:47:00.724] [INFO] cheese - inserting 1000 documents. first: County Route 77 (Cattaraugus County, New York) and last: Category:LGBT figure skaters +[2018-02-13T00:47:00.726] [INFO] cheese - inserting 1000 documents. first: File:Itm2a CCDS report.png and last: D. discoides +[2018-02-13T00:47:00.742] [INFO] cheese - inserting 1000 documents. first: Tilichiki Airport and last: Category:Johnstown Chiefs players +[2018-02-13T00:47:00.763] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:47:00.783] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:47:00.796] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:47:00.868] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:47:01.030] [INFO] cheese - inserting 1000 documents. first: Thirteen cards and last: Draft:Jero (musician) +[2018-02-13T00:47:01.087] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:47:01.130] [INFO] cheese - inserting 1000 documents. first: The Black Swan (Bert Jansch album) and last: Guillaume Moreau +[2018-02-13T00:47:01.205] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:47:01.232] [INFO] cheese - inserting 1000 documents. first: Christopher lee (singaporean actor) and last: Latin Tropical/Salsa Airplay +[2018-02-13T00:47:01.290] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:47:01.297] [INFO] cheese - inserting 1000 documents. first: Ruan Dreyer and last: County Route 113 (Sullivan County, New York) +[2018-02-13T00:47:01.297] [INFO] cheese - inserting 1000 documents. first: IWatch and last: Tikoma (ship) +[2018-02-13T00:47:01.370] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:47:01.371] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:47:01.421] [INFO] cheese - inserting 1000 documents. first: 2009 AL Central tie-breaker game and last: Exaggerate +[2018-02-13T00:47:01.487] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:47:01.499] [INFO] cheese - inserting 1000 documents. first: Corsi (ice hockey) and last: File:Queanbeyan City FC colours icon.png +[2018-02-13T00:47:01.557] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:47:01.602] [INFO] cheese - inserting 1000 documents. first: Felix Bryk and last: Category:Mythic aquatic creatures +[2018-02-13T00:47:01.647] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:47:01.788] [INFO] cheese - inserting 1000 documents. first: Thunder in the Morning Calm (novel) and last: Draft:Bluff Europe +[2018-02-13T00:47:01.837] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:47:01.906] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Broken Down Dam and last: File:Take Off (2017 film).jpg +[2018-02-13T00:47:01.915] [INFO] cheese - inserting 1000 documents. first: Trisadekaphobia and last: Wikipedia:Articles for deletion/2012 Twenty20 World Championship +[2018-02-13T00:47:01.922] [INFO] cheese - inserting 1000 documents. first: Barbara Hannigan and last: File:Radisson Hotel Logo.svg +[2018-02-13T00:47:01.940] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:47:01.948] [INFO] cheese - inserting 1000 documents. first: Template:2006 PBA Philippine Cup Playoffs bracket and last: File:Trlawards2012.jpg +[2018-02-13T00:47:01.966] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:47:01.978] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:47:01.996] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T00:47:02.047] [INFO] cheese - inserting 1000 documents. first: Category:Light Rapid Transit depots and last: John St George +[2018-02-13T00:47:02.079] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:47:02.213] [INFO] cheese - inserting 1000 documents. first: Cross Road (Mr. Children song) and last: Milking the Stars: A Reimagining Of Last Patrol +[2018-02-13T00:47:02.253] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:47:02.290] [INFO] cheese - inserting 1000 documents. first: Template:Tokyu Line Symbol and last: Category:Paleozoic Chile +[2018-02-13T00:47:02.320] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Nantucket County, Massachusetts and last: Selena Gomez & the Scene Discography +[2018-02-13T00:47:02.324] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:47:02.371] [INFO] cheese - inserting 1000 documents. first: Geology of the Rocky Mountains and last: Category:1952 Summer Olympics stubs +[2018-02-13T00:47:02.371] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:47:02.387] [INFO] cheese - inserting 1000 documents. first: Skibbereen Eagle and last: Clinton Duffy +[2018-02-13T00:47:02.428] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:47:02.430] [INFO] cheese - inserting 1000 documents. first: Pinstriping brush and last: Nutana SDA, Saskatoon, Saskatchewan +[2018-02-13T00:47:02.448] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:47:02.479] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:47:02.637] [INFO] cheese - inserting 1000 documents. first: Hoag, Nicholas and last: Serdang Raya North MRT Station +[2018-02-13T00:47:02.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramnagar,Alapur and last: Operation Redoubt +[2018-02-13T00:47:02.665] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:47:02.696] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:47:02.705] [INFO] cheese - inserting 1000 documents. first: Category:People educated by school in New Zealand and last: Wikipedia:Featured picture candidates/John Biddle +[2018-02-13T00:47:02.741] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T00:47:02.764] [INFO] cheese - inserting 1000 documents. first: Capatcha and last: Wikipedia:Articles for deletion/Milivoje Božić +[2018-02-13T00:47:02.770] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/NWA Pro Wrestling Roster and last: Desk jockey +[2018-02-13T00:47:02.807] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:47:02.816] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:47:02.914] [INFO] cheese - inserting 1000 documents. first: Category:Persian rebels and last: 1972-73 Rheinlandliga +[2018-02-13T00:47:02.918] [INFO] cheese - inserting 1000 documents. first: University Heights SDA, Saskatoon, Saskatchewan and last: Agnostic Atheist +[2018-02-13T00:47:02.952] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:47:03.024] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:47:03.151] [INFO] cheese - inserting 1000 documents. first: Peter the Cossack and last: Template:Aaron Neville +[2018-02-13T00:47:03.217] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:47:03.220] [INFO] cheese - inserting 1000 documents. first: 924th Fighter Wing and last: File:Firoze Noon and Khaled Zia.jpg +[2018-02-13T00:47:03.229] [INFO] cheese - inserting 1000 documents. first: Hard Bop and last: Tito Guízar +[2018-02-13T00:47:03.294] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:47:03.314] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:47:03.386] [INFO] cheese - inserting 1000 documents. first: Help:Gadget-ImageAnnotator and last: Tour of Sardinia +[2018-02-13T00:47:03.404] [INFO] cheese - inserting 1000 documents. first: Heinz ketchup and last: Category:Event venues in Tennessee +[2018-02-13T00:47:03.455] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:47:03.477] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:47:03.652] [INFO] cheese - inserting 1000 documents. first: Rēzeknes District and last: Adam Cohan +[2018-02-13T00:47:03.717] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:47:03.753] [INFO] cheese - inserting 1000 documents. first: When Ladies Meet (film) and last: Kiga, Iran +[2018-02-13T00:47:03.819] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:47:03.912] [INFO] cheese - inserting 1000 documents. first: North Eastern and last: Oasys +[2018-02-13T00:47:03.923] [INFO] cheese - inserting 1000 documents. first: 1974 European Athletics Championships – Men's shot put and last: File:Braid-NoCoast-cover.jpg +[2018-02-13T00:47:03.982] [INFO] cheese - inserting 1000 documents. first: Filmfare Award for Best Music Director – Malayalam and last: Sarbo District +[2018-02-13T00:47:03.989] [INFO] cheese - inserting 1000 documents. first: Draft:DataToCapital Consulting and last: Wikipedia:Articles for deletion/Independent Talent Group Ltd. +[2018-02-13T00:47:03.986] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:47:03.993] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:47:04.062] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:47:04.087] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:47:04.267] [INFO] cheese - inserting 1000 documents. first: Fellgate station and last: Category:People from Chicago +[2018-02-13T00:47:04.336] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:47:04.439] [INFO] cheese - inserting 1000 documents. first: Charles Burney (priest) and last: Wikipedia:WikiProject Spam/Local/pakun.org +[2018-02-13T00:47:04.472] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 2015/Coquitlam—Port Coquitlam and last: Category:2010 sports in California +[2018-02-13T00:47:04.513] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:47:04.514] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:47:04.590] [INFO] cheese - inserting 1000 documents. first: Monastery Immaculate Conception and last: Ana Tapardel +[2018-02-13T00:47:04.638] [INFO] cheese - inserting 1000 documents. first: File:SeeTheDaySample.ogg and last: Wikipedia:Articles for deletion/Bat For Lashes +[2018-02-13T00:47:04.659] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:47:04.670] [INFO] cheese - inserting 1000 documents. first: Thomas Means and last: Minka bird +[2018-02-13T00:47:04.728] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:47:04.757] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:47:04.845] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Bigotilia and last: Category:Politics of Havering +[2018-02-13T00:47:04.855] [INFO] cheese - inserting 1000 documents. first: Egyptian-Russian relations and last: Template:Insignia/doc +[2018-02-13T00:47:04.883] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:47:04.923] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:47:05.062] [INFO] cheese - inserting 1000 documents. first: Hudson - Oka Icebridge and last: Niq Mhlongo +[2018-02-13T00:47:05.146] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:47:05.187] [INFO] cheese - inserting 1000 documents. first: File:Red Chillies Poster.jpg and last: Category:2006 in netball +[2018-02-13T00:47:05.190] [INFO] cheese - inserting 1000 documents. first: The Best Bang and last: File:Logo eFront.jpg +[2018-02-13T00:47:05.248] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:47:05.299] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:47:05.324] [INFO] cheese - inserting 1000 documents. first: Cosmophyllum (insect genus) and last: 1982 European Athletics Indoor Championships – Women's 1500 metres +[2018-02-13T00:47:05.349] [INFO] cheese - inserting 1000 documents. first: List of states in the Holy Roman Empire (S) and last: Kamichetty Venugopala Rao Naidou +[2018-02-13T00:47:05.367] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:47:05.469] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:47:05.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Deletion sorting/Museums and libraries and last: Wikipedia:Version 1.0 Editorial Team/DC comics articles by quality/2 +[2018-02-13T00:47:05.797] [INFO] cheese - inserting 1000 documents. first: Nicholas Mhlongo and last: Godwin Ababaka +[2018-02-13T00:47:05.801] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T00:47:05.890] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:47:05.923] [INFO] cheese - inserting 1000 documents. first: Consumers Federation of Australia and last: Macy-Colby House +[2018-02-13T00:47:05.962] [INFO] cheese - inserting 1000 documents. first: Kizilsky Kozhuun and last: Anna Wilson (disambiguation) +[2018-02-13T00:47:05.987] [INFO] cheese - inserting 1000 documents. first: X.Org Developer's Conference and last: Lyzohub government +[2018-02-13T00:47:06.015] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:47:06.074] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T00:47:06.096] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T00:47:06.132] [INFO] cheese - inserting 1000 documents. first: Gustav Mahler Jugendorchester and last: High Street, Victoria, Australia +[2018-02-13T00:47:06.189] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:47:06.398] [INFO] cheese - inserting 1000 documents. first: Nanhui County and last: Template:Ross County F.C. +[2018-02-13T00:47:06.475] [INFO] cheese - inserting 1000 documents. first: 2005 D1 Grand Prix season and last: MasterChef (U.S. season 8) +[2018-02-13T00:47:06.480] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:47:06.513] [INFO] cheese - inserting 1000 documents. first: Mușata and last: Portal:Jazz/Selected picture/89 +[2018-02-13T00:47:06.556] [INFO] cheese - inserting 1000 documents. first: Alloway Township School District and last: Modereko +[2018-02-13T00:47:06.564] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:47:06.614] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:47:06.638] [INFO] cheese - inserting 1000 documents. first: Earlscourt, Toronto and last: Feis Maitiu Corcaigh +[2018-02-13T00:47:06.651] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T00:47:06.700] [INFO] cheese - inserting 1000 documents. first: Ted milton and last: Louisa Ann Swain +[2018-02-13T00:47:06.715] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:47:06.774] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:47:06.991] [INFO] cheese - inserting 1000 documents. first: Category:2013–14 in Latvian ice hockey and last: 40 Librae +[2018-02-13T00:47:07.040] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:47:07.116] [INFO] cheese - inserting 1000 documents. first: Virgin Broadband (UK) and last: Force (Superfly album) +[2018-02-13T00:47:07.125] [INFO] cheese - inserting 1000 documents. first: W. D. Mohammed High School and last: Falcon 9 Flight 8 upper stage +[2018-02-13T00:47:07.174] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:47:07.238] [INFO] cheese - inserting 1000 documents. first: Category:Lo Fidelity Allstars albums and last: Sokol'skii Raion +[2018-02-13T00:47:07.241] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:47:07.286] [INFO] cheese - inserting 1000 documents. first: File:Pitteurs.jpg and last: 2008 Lebanon Conflict +[2018-02-13T00:47:07.294] [INFO] cheese - inserting 1000 documents. first: NV 319 and last: Wikipedia:Articles for deletion/Lil Fate +[2018-02-13T00:47:07.305] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:47:07.383] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:47:07.391] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:47:07.507] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dilipa and last: Category:2004–05 in Bulgarian ice hockey +[2018-02-13T00:47:07.568] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T00:47:07.710] [INFO] cheese - inserting 1000 documents. first: Krähenberg, Bremen and last: Disney Infinity Marvel Super Heroes +[2018-02-13T00:47:07.769] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:47:07.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mgallop and last: Buffalo River (Groot River) +[2018-02-13T00:47:07.928] [INFO] cheese - inserting 1000 documents. first: Category:Keyboardists from Northern Ireland and last: Piy-Khemsky +[2018-02-13T00:47:07.965] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:47:08.004] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:47:08.077] [INFO] cheese - inserting 1000 documents. first: Category:7th Jatiyo Sangshad members and last: Stop-n-Go +[2018-02-13T00:47:08.085] [INFO] cheese - inserting 1000 documents. first: File:Rebelwithoutbookcover.jpg and last: Jupiter Science Academy +[2018-02-13T00:47:08.087] [INFO] cheese - inserting 1000 documents. first: EMT-I/85 and last: Academia das Ciências de Lisboa +[2018-02-13T00:47:08.133] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:47:08.146] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:47:08.169] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T00:47:08.242] [INFO] cheese - inserting 1000 documents. first: Altamura railway station and last: Dinosaurology +[2018-02-13T00:47:08.277] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T00:47:08.446] [INFO] cheese - inserting 1000 documents. first: Thomas Heurtel and last: Template:Did you know nominations/Mitsubishi Motors Corp. v. Soler Chrysler-Plymouth, Inc. +[2018-02-13T00:47:08.488] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:47:08.495] [INFO] cheese - inserting 1000 documents. first: Piy-Khemskiy and last: Template:Swiss populations/testcases +[2018-02-13T00:47:08.535] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:47:08.562] [INFO] cheese - inserting 1000 documents. first: Pan-tsu and last: Draft:OKICA +[2018-02-13T00:47:08.567] [INFO] cheese - inserting 1000 documents. first: Kamen Rider Black (manga) and last: File:Enlarged Silhouette.jpg +[2018-02-13T00:47:08.610] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:47:08.620] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:47:08.627] [INFO] cheese - inserting 1000 documents. first: Online Newspaper and last: Morrisville–Stowe State Airport +[2018-02-13T00:47:08.692] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:47:08.770] [INFO] cheese - inserting 1000 documents. first: Category:1977 in Vatican City and last: Category:People from Sol Plaatje Local Municipality +[2018-02-13T00:47:08.811] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:47:08.851] [INFO] cheese - inserting 1000 documents. first: Category:People of Monegasque descent and last: TOKYO GIRLS' STYLE +[2018-02-13T00:47:08.897] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wikinfo (6th nomination) and last: Category:Tunnels in Nevada +[2018-02-13T00:47:08.902] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:47:08.963] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:47:08.986] [INFO] cheese - inserting 1000 documents. first: Juan Diego Gutiérrez and last: Sequoyah state park +[2018-02-13T00:47:08.997] [INFO] cheese - inserting 1000 documents. first: File:Prime Minister P. V. Narasimha Rao with Subramanian Swamy 1991.jpg and last: Deareating feed tank +[2018-02-13T00:47:09.039] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:47:09.039] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:47:09.055] [INFO] cheese - inserting 1000 documents. first: MVL and last: Wikipedia:Articles for deletion/Run your boy +[2018-02-13T00:47:09.107] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:47:09.205] [INFO] cheese - inserting 1000 documents. first: Robert J Healey and last: Kent Crusaders +[2018-02-13T00:47:09.253] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T00:47:09.285] [INFO] cheese - inserting 1000 documents. first: File:Bukovyna 2009.png and last: X-51 (Machine Man) +[2018-02-13T00:47:09.331] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:47:09.509] [INFO] cheese - inserting 1000 documents. first: Half-bond and last: Y B Normal? +[2018-02-13T00:47:09.510] [INFO] cheese - inserting 1000 documents. first: Italians in Cuba and last: Kim Tairoa +[2018-02-13T00:47:09.523] [INFO] cheese - inserting 1000 documents. first: Backwater (film) and last: Category:Malaysian non-fiction literature +[2018-02-13T00:47:09.591] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:47:09.617] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:47:09.660] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:47:09.711] [INFO] cheese - inserting 1000 documents. first: Novelty (train) and last: Savoir Faire +[2018-02-13T00:47:09.766] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:47:09.840] [INFO] cheese - inserting 1000 documents. first: Techlink and last: Carbaca prognealis +[2018-02-13T00:47:09.923] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:47:10.022] [INFO] cheese - inserting 1000 documents. first: Pi (Kate Bush song) and last: Carlos André Jesus +[2018-02-13T00:47:10.054] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:47:10.123] [INFO] cheese - inserting 1000 documents. first: Seaway Trail Discovery Center and last: Creeping water bug +[2018-02-13T00:47:10.164] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:47:10.165] [INFO] cheese - inserting 1000 documents. first: Crown Lands Act 1623 and last: Habeshli +[2018-02-13T00:47:10.212] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:47:10.247] [INFO] cheese - inserting 1000 documents. first: Category:PowerPC Macintosh computers and last: Wikipedia:WikiProject Judaism/featured +[2018-02-13T00:47:10.295] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:47:10.347] [INFO] cheese - inserting 1000 documents. first: Satellite Award for Best DVD Extras and last: Category:Songs written by Rasmus Seebach +[2018-02-13T00:47:10.372] [INFO] cheese - inserting 1000 documents. first: Hafler circuit and last: The LEGO Movie Videogame +[2018-02-13T00:47:10.390] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:47:10.421] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:47:10.521] [INFO] cheese - inserting 1000 documents. first: Habishi and last: Template:Editnotices/Page/Rush (band) +[2018-02-13T00:47:10.539] [INFO] cheese - inserting 1000 documents. first: Latitude 49 degrees N and last: 3017 Petrovič +[2018-02-13T00:47:10.555] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:47:10.586] [INFO] cheese - inserting 1000 documents. first: File:Black N Blue Black N Blue.jpg and last: Canal des Vosges +[2018-02-13T00:47:10.589] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:47:10.653] [INFO] cheese - batch complete in: 1.322 secs +[2018-02-13T00:47:10.705] [INFO] cheese - inserting 1000 documents. first: Medscape General Medicine and last: Template:Taxonomy/Nuphar sect. Nuphar +[2018-02-13T00:47:10.720] [INFO] cheese - inserting 1000 documents. first: File:Je crois toi promo.jpg and last: CA Rentistas +[2018-02-13T00:47:10.778] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:47:10.792] [INFO] cheese - inserting 1000 documents. first: Construction dumpster and last: Dave McComas +[2018-02-13T00:47:10.797] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:47:10.845] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:47:10.890] [INFO] cheese - inserting 1000 documents. first: Filomeno Mata Totonac and last: Category:1138 in art +[2018-02-13T00:47:10.931] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:47:10.985] [INFO] cheese - inserting 1000 documents. first: Template:Jackson County, Tennessee and last: The Minotaur (opera) +[2018-02-13T00:47:11.036] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:47:11.078] [INFO] cheese - inserting 1000 documents. first: Hélène Perret and last: VEXNEWS +[2018-02-13T00:47:11.136] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:47:11.163] [INFO] cheese - inserting 1000 documents. first: Abdoulaye Soumah and last: Buile Suibne +[2018-02-13T00:47:11.283] [INFO] cheese - inserting 1000 documents. first: Edson Cardoso and last: List of senators from Newfoundland and Labrador +[2018-02-13T00:47:11.295] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:47:11.331] [INFO] cheese - inserting 1000 documents. first: Squirrel River (Wisconsin) and last: Laxmanpur-a village of Vaishali +[2018-02-13T00:47:11.387] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:47:11.384] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:47:11.472] [INFO] cheese - inserting 1000 documents. first: Busenbach–Ittersbach railway and last: Golden Girls (disambiguation) +[2018-02-13T00:47:11.538] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T00:47:11.700] [INFO] cheese - inserting 1000 documents. first: File:Sitting king logo.png and last: Je serai (ta meilleure amie) +[2018-02-13T00:47:11.752] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:47:11.794] [INFO] cheese - inserting 1000 documents. first: Category:American multimedia artists and last: Marie-Louise Bévis +[2018-02-13T00:47:11.855] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:47:11.895] [INFO] cheese - inserting 1000 documents. first: Sir Arthur Cotton and last: Spirit Mountain (ski area) +[2018-02-13T00:47:11.930] [INFO] cheese - inserting 1000 documents. first: List of senators from Nova Scotia and last: Mark Kachanov +[2018-02-13T00:47:11.978] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:47:11.985] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:47:11.997] [INFO] cheese - inserting 1000 documents. first: Adelpherupa terreus and last: Aude (writer) +[2018-02-13T00:47:12.027] [INFO] cheese - inserting 1000 documents. first: Category:Boston Cannons players and last: Empresa Interbancária de Serviços +[2018-02-13T00:47:12.073] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:47:12.133] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:47:12.230] [INFO] cheese - inserting 1000 documents. first: Øyeflaten Station and last: Category:1867 in Asia +[2018-02-13T00:47:12.314] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:47:12.442] [INFO] cheese - inserting 1000 documents. first: Marie Louise Bevis and last: Rodney Alcala +[2018-02-13T00:47:12.490] [INFO] cheese - inserting 1000 documents. first: Piran Bishop and last: Yunker +[2018-02-13T00:47:12.493] [INFO] cheese - inserting 1000 documents. first: Alexa & Katie and last: Category:BWF ID different from Wikidata +[2018-02-13T00:47:12.507] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:47:12.521] [INFO] cheese - inserting 1000 documents. first: Operating structure and last: Shashank R. Joshi +[2018-02-13T00:47:12.565] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:47:12.570] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:47:12.590] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:47:12.704] [INFO] cheese - inserting 1000 documents. first: Category:2006 FIFA World Cup qualification (CAF) and last: Glam Slam West +[2018-02-13T00:47:12.805] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:47:12.859] [INFO] cheese - inserting 1000 documents. first: 13816 Stülpner and last: Ken Jones (disambiguation) +[2018-02-13T00:47:12.912] [INFO] cheese - inserting 1000 documents. first: Austrosticta fieldi and last: Fshati turistik DARDHË +[2018-02-13T00:47:12.930] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:47:12.952] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:47:13.033] [INFO] cheese - inserting 1000 documents. first: Dovercourt Village and last: List of films based on war books — peace +[2018-02-13T00:47:13.113] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T00:47:13.131] [INFO] cheese - inserting 1000 documents. first: Farmingdale Observer and last: Mother-in-law's Cushion +[2018-02-13T00:47:13.196] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Battle of Crazy Woman's Fork and last: Wikipedia:Articles for deletion/Skywind +[2018-02-13T00:47:13.208] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:47:13.270] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:47:13.341] [INFO] cheese - inserting 1000 documents. first: Lê Trung Tông (Early Lê) and last: Category:2002–03 in American college basketball +[2018-02-13T00:47:13.370] [INFO] cheese - inserting 1000 documents. first: Template:Planetmath instructions and last: Aubanel Wind Project +[2018-02-13T00:47:13.380] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T00:47:13.429] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:47:13.537] [INFO] cheese - inserting 1000 documents. first: Salim bin Thuwaini and last: Illinois River Valley +[2018-02-13T00:47:13.605] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T00:47:13.679] [INFO] cheese - inserting 1000 documents. first: File:Billy Joe Shaver - Long in the Tooth.jpg and last: Portal:San Diego County/Selected pictures/16 +[2018-02-13T00:47:13.718] [INFO] cheese - inserting 1000 documents. first: Popess Joan and last: Category:WikiProject Cuba members +[2018-02-13T00:47:13.735] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lookatmyfire.com and last: Category:Seychellois diaspora +[2018-02-13T00:47:13.738] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:47:13.781] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:47:13.805] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T00:47:13.896] [INFO] cheese - inserting 1000 documents. first: 1928 Pacific Tigers football team and last: Category:People from Barguna district +[2018-02-13T00:47:13.957] [INFO] cheese - inserting 1000 documents. first: Triga (chariot) and last: Uintah Meridian +[2018-02-13T00:47:13.959] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:47:14.012] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:47:14.039] [INFO] cheese - inserting 1000 documents. first: Minnesota River Valley and last: Barazin +[2018-02-13T00:47:14.108] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T00:47:14.142] [INFO] cheese - inserting 1000 documents. first: Portal:San Diego County/Selected pictures/17 and last: 1948 Orszagos Bajnoksag I (men's water polo) +[2018-02-13T00:47:14.205] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:47:14.218] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions in East Timor and last: Wikipedia:Articles for deletion/When Brummies Met Sindhis +[2018-02-13T00:47:14.284] [INFO] cheese - inserting 1000 documents. first: Christopher Wilcock and last: Alex Flinn +[2018-02-13T00:47:14.294] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:47:14.339] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:47:14.404] [INFO] cheese - inserting 1000 documents. first: 1948 Taca de Portugal Final and last: 2012 Internazionali Tennis Val Gardena Sudtirol – Singles +[2018-02-13T00:47:14.418] [INFO] cheese - inserting 1000 documents. first: Ryobi Holdings and last: FC Vermoim +[2018-02-13T00:47:14.428] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:47:14.460] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:47:14.463] [INFO] cheese - inserting 1000 documents. first: Template:Largest cities of Somalia and last: Category:Pentathlon navigational boxes +[2018-02-13T00:47:14.488] [INFO] cheese - inserting 1000 documents. first: Sequential exit numbering and last: County Route J132 (Tuolumne County, California) +[2018-02-13T00:47:14.512] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:47:14.542] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:47:14.663] [INFO] cheese - inserting 1000 documents. first: 2012 Kosice Open and last: File:SocialMarketFoundationLogoOfficial.jpg +[2018-02-13T00:47:14.719] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:47:14.802] [INFO] cheese - inserting 1000 documents. first: Template:Central Pulse and last: Category:People from Zubří +[2018-02-13T00:47:14.858] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:47:15.015] [INFO] cheese - inserting 1000 documents. first: Draft:Michael Reisch and last: Category:Lists of road transport incidents +[2018-02-13T00:47:15.024] [INFO] cheese - inserting 1000 documents. first: 5 (Alizee album) and last: Alberto Perez (musician) +[2018-02-13T00:47:15.042] [INFO] cheese - inserting 1000 documents. first: Pietro Vitalini and last: Ivan Parke +[2018-02-13T00:47:15.092] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:47:15.102] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:47:15.119] [INFO] cheese - inserting 1000 documents. first: County Route J132 (Mariposa County, California) and last: 2 P +[2018-02-13T00:47:15.142] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:47:15.195] [INFO] cheese - inserting 1000 documents. first: Naviamente and last: 1899 Georgia Bulldogs football team +[2018-02-13T00:47:15.234] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:47:15.337] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T00:47:15.359] [INFO] cheese - inserting 1000 documents. first: Draft:Jusufi and last: Andre Zimmermann +[2018-02-13T00:47:15.427] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:47:15.520] [INFO] cheese - inserting 1000 documents. first: Sidi Slimane Airport and last: Qin Shi Huang's wars of unification +[2018-02-13T00:47:15.608] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T00:47:15.720] [INFO] cheese - inserting 1000 documents. first: Andre baronets and last: Virginia State Route 4A (1935-1937) +[2018-02-13T00:47:15.755] [INFO] cheese - inserting 1000 documents. first: Adrien Duvillard (alpine skier born 1969) and last: Walt (Hollyoaks) +[2018-02-13T00:47:15.762] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:47:15.787] [INFO] cheese - inserting 1000 documents. first: Paul tergat and last: Apostolic Prefecture of Calabar +[2018-02-13T00:47:15.818] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:47:15.834] [INFO] cheese - inserting 1000 documents. first: File:Map of Horsham Township, Montgomery County, Pennsylvania Highlighted.gif and last: Alison Bishop +[2018-02-13T00:47:15.838] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:47:15.904] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:47:15.963] [INFO] cheese - inserting 1000 documents. first: Atalar, Savsat and last: Category:2000 disestablishments in Massachusetts +[2018-02-13T00:47:15.988] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:47:15.992] [INFO] cheese - inserting 1000 documents. first: Manchester Exchange and last: Cadaver Trial +[2018-02-13T00:47:16.055] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:47:16.091] [INFO] cheese - inserting 1000 documents. first: Leland v. Oregon and last: Category:Tourism in the Western Cape +[2018-02-13T00:47:16.134] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:47:16.147] [INFO] cheese - inserting 1000 documents. first: Category:V8 Supercar and last: 2017 in Kenyan football +[2018-02-13T00:47:16.183] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:47:16.208] [INFO] cheese - inserting 1000 documents. first: Alison Lurie (Bishop) and last: Ensiform cartilage +[2018-02-13T00:47:16.239] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:47:16.303] [INFO] cheese - inserting 1000 documents. first: Battle of Parkumaki and last: Andrew Cole (musician) +[2018-02-13T00:47:16.330] [INFO] cheese - inserting 1000 documents. first: Auditory moving-window and last: Green Chri$tma$ +[2018-02-13T00:47:16.340] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:47:16.393] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:47:16.481] [INFO] cheese - inserting 1000 documents. first: Pratt's Falls Park and last: Draft:James Bautista +[2018-02-13T00:47:16.495] [INFO] cheese - inserting 1000 documents. first: Chortodes elymi and last: Wikipedia:Puffery +[2018-02-13T00:47:16.502] [INFO] cheese - inserting 1000 documents. first: Wild West shows and last: Wikipedia:Articles for deletion/Scott Sherman +[2018-02-13T00:47:16.519] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:47:16.552] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:47:16.556] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:47:16.602] [INFO] cheese - inserting 1000 documents. first: BCS Professional Examinations and last: Wikipedia:Articles for deletion/Scot24news +[2018-02-13T00:47:16.633] [INFO] cheese - inserting 1000 documents. first: Torre River, Portugal and last: Burhanettin Bigali +[2018-02-13T00:47:16.650] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:47:16.666] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:47:16.726] [INFO] cheese - inserting 1000 documents. first: Uyghur New script and last: Hat Trick +[2018-02-13T00:47:16.775] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:47:16.814] [INFO] cheese - inserting 1000 documents. first: Estadio Municipal de Santo Domingo (Alcorcón) and last: Mira, Lawrence +[2018-02-13T00:47:16.853] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T00:47:16.892] [INFO] cheese - inserting 1000 documents. first: Shivaji Engineering College, Akola and last: Goyü +[2018-02-13T00:47:16.951] [INFO] cheese - inserting 1000 documents. first: Burhaniye, Vezirkopru and last: Cecilio Dominguez +[2018-02-13T00:47:16.965] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:47:16.988] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:47:17.019] [INFO] cheese - inserting 1000 documents. first: Elza Gazuyeva and last: Wikipedia:Version 1.0 Editorial Team/Philosophers articles by quality +[2018-02-13T00:47:17.090] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:47:17.160] [INFO] cheese - inserting 1000 documents. first: Haroriya and last: Miss USA 1984 +[2018-02-13T00:47:17.214] [INFO] cheese - inserting 1000 documents. first: Template:User Pune Warriors India 1 and last: Frédéric Covili +[2018-02-13T00:47:17.227] [INFO] cheese - inserting 1000 documents. first: Cecilio Guzman de Rojas and last: Wikipedia:Meetup/UK/Sheffield 1 +[2018-02-13T00:47:17.267] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:47:17.285] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:47:17.289] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:47:17.342] [INFO] cheese - inserting 1000 documents. first: Lagenochitina dalbyensis and last: File:WWNT ACTIVA1380 logo.png +[2018-02-13T00:47:17.383] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:47:17.567] [INFO] cheese - inserting 1000 documents. first: Andres Chitiva and last: Market Street Tunnel (San Francisco) +[2018-02-13T00:47:17.569] [INFO] cheese - inserting 1000 documents. first: College Louise-Michel in Paris and last: Box wagon +[2018-02-13T00:47:17.626] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:47:17.656] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:47:17.716] [INFO] cheese - inserting 1000 documents. first: Phoenix Star and last: Hiroshi Fukushima +[2018-02-13T00:47:17.757] [INFO] cheese - inserting 1000 documents. first: Tatsuguchi and last: Galeopsis speciosa +[2018-02-13T00:47:17.768] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:47:17.842] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T00:47:17.846] [INFO] cheese - inserting 1000 documents. first: James Hutchison Cockburn and last: Munster pilchard fishery 1570-1750 +[2018-02-13T00:47:17.905] [INFO] cheese - inserting 1000 documents. first: Heliophanus proszynskii and last: Marc Barta +[2018-02-13T00:47:17.906] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:47:17.909] [INFO] cheese - inserting 1000 documents. first: Danisment, Yenipazar and last: Erik De Boer +[2018-02-13T00:47:17.970] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:47:17.985] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:47:18.202] [INFO] cheese - inserting 1000 documents. first: Donato Alvarez and last: Electrodomesticos +[2018-02-13T00:47:18.216] [INFO] cheese - inserting 1000 documents. first: Maryland State Highway 611 and last: Guanella Pass Scenic Byway +[2018-02-13T00:47:18.222] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:47:18.232] [INFO] cheese - inserting 1000 documents. first: File:Cavalryatbalaklava2.jpg and last: W209AG +[2018-02-13T00:47:18.265] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:47:18.284] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:47:18.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/silverspringpenguin.com and last: Portal:American football/Selected picture/2008 21 +[2018-02-13T00:47:18.335] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:47:18.336] [INFO] cheese - inserting 1000 documents. first: Albert Anae and last: Queen Street bus station, Brisbane +[2018-02-13T00:47:18.357] [INFO] cheese - inserting 1000 documents. first: Category:Macedonian people of Finnish descent and last: Society of the Four Arts Gardens +[2018-02-13T00:47:18.378] [INFO] cheese - inserting 1000 documents. first: Electronic Cafe International and last: Fabian Bosch +[2018-02-13T00:47:18.384] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:47:18.398] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:47:18.402] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:47:18.563] [INFO] cheese - inserting 1000 documents. first: April 1st Vidudala and last: Frantisek Adam Mica +[2018-02-13T00:47:18.585] [INFO] cheese - batch complete in: 0.183 secs +[2018-02-13T00:47:18.621] [INFO] cheese - inserting 1000 documents. first: W230BD and last: Badulla Electoral District +[2018-02-13T00:47:18.661] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:47:18.669] [INFO] cheese - inserting 1000 documents. first: US Park Police and last: Wikipedia:Articles for deletion/Crack cocaine and hip hop +[2018-02-13T00:47:18.672] [INFO] cheese - inserting 1000 documents. first: Smiths Creek, Kentucky and last: Category:Arabic drinks +[2018-02-13T00:47:18.695] [INFO] cheese - inserting 1000 documents. first: Prachi Mishra and last: Ulinzi Stars F.C. +[2018-02-13T00:47:18.709] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:47:18.731] [INFO] cheese - inserting 1000 documents. first: Firebug and last: 55th (West Lancashire) Infantry Division (United Kingdom) +[2018-02-13T00:47:18.736] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:47:18.738] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:47:18.788] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:47:18.812] [INFO] cheese - inserting 1000 documents. first: Yellow-throated wood-warbler and last: Tahina Palm +[2018-02-13T00:47:18.843] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T00:47:18.965] [INFO] cheese - inserting 1000 documents. first: George Khevenhuller and last: Gerard Rudolf +[2018-02-13T00:47:18.983] [INFO] cheese - batch complete in: 0.14 secs +[2018-02-13T00:47:19.019] [INFO] cheese - inserting 1000 documents. first: 71st Infantry Division (Russian Empire) and last: Category:Holy Roman Empire–Portugal relations +[2018-02-13T00:47:19.058] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:47:19.070] [INFO] cheese - inserting 1000 documents. first: The Loved One (song) and last: Category:Renaissance Papacy +[2018-02-13T00:47:19.083] [INFO] cheese - inserting 1000 documents. first: Front projector and last: Münchringen (Berne) +[2018-02-13T00:47:19.117] [INFO] cheese - inserting 1000 documents. first: 48th (South Midland) Infantry Division (United Kingdom) and last: William G. Congdon +[2018-02-13T00:47:19.123] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:47:19.128] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:47:19.150] [INFO] cheese - inserting 1000 documents. first: Gerard Theberge and last: Henrik Jorgen Huitfeldt-Kaas +[2018-02-13T00:47:19.154] [INFO] cheese - inserting 1000 documents. first: Ulinzi Stars FC and last: COOL Award Winners +[2018-02-13T00:47:19.164] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:47:19.187] [INFO] cheese - batch complete in: 0.204 secs +[2018-02-13T00:47:19.281] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T00:47:19.389] [INFO] cheese - inserting 1000 documents. first: Münsingen (Berne) and last: Vuadens (Fribourg) +[2018-02-13T00:47:19.453] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:47:19.500] [INFO] cheese - inserting 1000 documents. first: Henrik Jorgen Schibsted Huitfeldt and last: Category:Women's volleyball teams +[2018-02-13T00:47:19.524] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T00:47:19.666] [INFO] cheese - inserting 1000 documents. first: 2002 Catalunyan motorcycle Grand Prix and last: International Society of Limnology +[2018-02-13T00:47:19.675] [INFO] cheese - inserting 1000 documents. first: Rosebudd's Revenge and last: Zambezi Yellow-bellied Greenbul +[2018-02-13T00:47:19.677] [INFO] cheese - inserting 1000 documents. first: Vuarmarens (Fribourg) and last: Marthalen (Zurich) +[2018-02-13T00:47:19.680] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Comanche County, Kansas and last: Wikipedia:Sockpuppet investigations/Hfiiz deshi MC +[2018-02-13T00:47:19.697] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:47:19.731] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:47:19.736] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:47:19.737] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:47:19.792] [INFO] cheese - inserting 1000 documents. first: Mount Saint Joseph and last: List of military diving units +[2018-02-13T00:47:19.877] [INFO] cheese - inserting 1000 documents. first: Category:Women's volleyball teams in Serbia and last: A l'ami qui ne m'a pas sauve la vie +[2018-02-13T00:47:19.894] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:47:19.898] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:47:20.013] [INFO] cheese - inserting 1000 documents. first: Maschwanden (Zurich) and last: Liestal (Basel-Land) +[2018-02-13T00:47:20.044] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:47:20.268] [INFO] cheese - inserting 1000 documents. first: A l'ombre and last: Ciflik, Demir Kapija +[2018-02-13T00:47:20.287] [INFO] cheese - inserting 1000 documents. first: Small leaf beaufortia and last: I've Got a Feeling (New Order song) +[2018-02-13T00:47:20.288] [INFO] cheese - inserting 1000 documents. first: The Fire in Your Eyes and last: WRES +[2018-02-13T00:47:20.301] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:47:20.344] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:47:20.353] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:47:20.365] [INFO] cheese - inserting 1000 documents. first: Alexander Kotzebue and last: Christian Howes (musician) +[2018-02-13T00:47:20.362] [INFO] cheese - inserting 1000 documents. first: Category:Art museums established in 1831 and last: Lebiazhyevskii Raion +[2018-02-13T00:47:20.435] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:47:20.453] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:47:20.616] [INFO] cheese - inserting 1000 documents. first: Lupsingen (Basel-Land) and last: Lynn Road +[2018-02-13T00:47:20.622] [INFO] cheese - inserting 1000 documents. first: Lawrence M. Rulison and last: New Britain kingfisher +[2018-02-13T00:47:20.649] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:47:20.661] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:47:20.790] [INFO] cheese - inserting 1000 documents. first: List of wealthiest people in Kenya and last: International Breweries Plc +[2018-02-13T00:47:20.797] [INFO] cheese - inserting 1000 documents. first: Band of the Irish Guards and last: C. Randy Taylor +[2018-02-13T00:47:20.803] [INFO] cheese - inserting 1000 documents. first: Lebiazh'yevsky Raion and last: Owlia +[2018-02-13T00:47:20.822] [INFO] cheese - inserting 1000 documents. first: Janos Jeszenak and last: John Narvaez +[2018-02-13T00:47:20.830] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:47:20.841] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:47:20.845] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:47:20.876] [INFO] cheese - batch complete in: 0.227 secs +[2018-02-13T00:47:20.899] [INFO] cheese - inserting 1000 documents. first: Public sector debt and last: Grimes House +[2018-02-13T00:47:20.946] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:47:21.082] [INFO] cheese - inserting 1000 documents. first: Complainte pour Ste. Cathérine and last: Jose Torres Laboy +[2018-02-13T00:47:21.105] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:47:21.107] [INFO] cheese - inserting 1000 documents. first: Loss-DiVincenzo and last: Jay Bakker +[2018-02-13T00:47:21.145] [INFO] cheese - inserting 1000 documents. first: Ψ Pegasi and last: Template:POTD/2017-04-26 +[2018-02-13T00:47:21.178] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:47:21.200] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:47:21.292] [INFO] cheese - inserting 1000 documents. first: Serafino Cavalli and last: 2012 CIS football season +[2018-02-13T00:47:21.314] [INFO] cheese - inserting 1000 documents. first: George E. Edwards and last: Shoe-shining +[2018-02-13T00:47:21.393] [INFO] cheese - inserting 1000 documents. first: Jose Torres Ramirez and last: Kan man alska na'n pa avstand +[2018-02-13T00:47:21.416] [INFO] cheese - inserting 1000 documents. first: Opokuma and last: Agrostis tenuis var. pumila +[2018-02-13T00:47:21.419] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:47:21.403] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:47:21.503] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:47:21.546] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:47:21.868] [INFO] cheese - inserting 1000 documents. first: List of Major League Baseball career putouts as a right fielder leaders and last: Griseargiolestes intermedius +[2018-02-13T00:47:21.921] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Edgar Quinet-class cruiser and last: Klaus Kaergard +[2018-02-13T00:47:21.973] [INFO] cheese - inserting 1000 documents. first: Racial quotas and last: 52872 Okyrhoe +[2018-02-13T00:47:21.998] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:47:21.997] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:47:22.140] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T00:47:22.363] [INFO] cheese - inserting 1000 documents. first: File:Lightsleeperfilm.jpg and last: 2009–10 UEFA Europa League knockout stage +[2018-02-13T00:47:22.408] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese-language operas and last: Category:Sudanese prisoners and detainees +[2018-02-13T00:47:22.416] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T00:47:22.469] [INFO] cheese - inserting 1000 documents. first: Klaus Zahringer and last: Laby Church +[2018-02-13T00:47:22.518] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:47:22.594] [INFO] cheese - batch complete in: 1.175 secs +[2018-02-13T00:47:22.633] [INFO] cheese - inserting 1000 documents. first: Template:2012 OUA football standings and last: Phemeranthus rugospermus +[2018-02-13T00:47:22.740] [INFO] cheese - inserting 1000 documents. first: 14 Days to Life and last: Wikipedia:Featured picture candidates/Train on the Bernina line, Switzerland +[2018-02-13T00:47:22.785] [INFO] cheese - batch complete in: 1.382 secs +[2018-02-13T00:47:22.794] [INFO] cheese - inserting 1000 documents. first: Vincent Gigs and last: International Institute for Environment and Development +[2018-02-13T00:47:22.813] [INFO] cheese - inserting 1000 documents. first: Labyrinth (Miro, Joan) and last: Wikipedia:Today's articles for improvement/2014/42 +[2018-02-13T00:47:22.833] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:47:22.862] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T00:47:22.903] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T00:47:23.033] [INFO] cheese - inserting 1000 documents. first: List of Lulea HF seasons and last: Lyden na +[2018-02-13T00:47:23.073] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:47:23.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/betheboss.ca and last: Template:Cite German law/core +[2018-02-13T00:47:23.157] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:47:23.168] [INFO] cheese - inserting 1000 documents. first: Jenny Robinson and last: Template:Fb team Bidco United +[2018-02-13T00:47:23.176] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2008 May 18 and last: Raffaele Fitto +[2018-02-13T00:47:23.222] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:47:23.258] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:47:23.269] [INFO] cheese - inserting 1000 documents. first: 2017–18 Tampa Bay Lightning season and last: File:Long-Strange-Trip-soundtrack-album.jpg +[2018-02-13T00:47:23.288] [INFO] cheese - inserting 1000 documents. first: Lydia Ludic Burundi Academic FC and last: Mario Bonic +[2018-02-13T00:47:23.319] [INFO] cheese - batch complete in: 0.246 secs +[2018-02-13T00:47:23.332] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:47:23.357] [INFO] cheese - inserting 1000 documents. first: Tom stephens and last: Karl Fredrich Bonhoeffer +[2018-02-13T00:47:23.409] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:47:23.537] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Anniversaries/April/April 1 and last: Bobber (fishing) +[2018-02-13T00:47:23.583] [INFO] cheese - inserting 1000 documents. first: Mario Brandao da Silveira and last: Category:People from Hauppauge, New York +[2018-02-13T00:47:23.589] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:47:23.637] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:47:23.681] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Coast United and last: Ahmadabad-e Kashani +[2018-02-13T00:47:23.708] [INFO] cheese - inserting 1000 documents. first: Ceza of Swaziland and last: Edgar Magnin +[2018-02-13T00:47:23.736] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:47:23.747] [INFO] cheese - inserting 1000 documents. first: 2007 Ukrainian Super Cup and last: A Tribute To Mario Lanza +[2018-02-13T00:47:23.767] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:47:23.789] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:47:23.857] [INFO] cheese - inserting 1000 documents. first: Professor Mark Cleary and last: Portal:World War I/Selected biography/4 +[2018-02-13T00:47:23.872] [INFO] cheese - inserting 1000 documents. first: Mieczyslaw Gocul and last: Sri Lankan provincial council election, September 2014 +[2018-02-13T00:47:23.901] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:47:23.917] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:47:24.102] [INFO] cheese - inserting 1000 documents. first: Rumonge and last: File:Scarsmirrodin expsym.svg +[2018-02-13T00:47:24.129] [INFO] cheese - inserting 1000 documents. first: File:Durdle Door Overview.jpg and last: FV4201 Chieftain +[2018-02-13T00:47:24.141] [INFO] cheese - inserting 1000 documents. first: George Frederic Stewart Bowles and last: Mary Towne Burt +[2018-02-13T00:47:24.179] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:47:24.187] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:47:24.220] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:47:24.234] [INFO] cheese - inserting 1000 documents. first: Nunapitchuk Airport and last: Category:1970s ballads +[2018-02-13T00:47:24.244] [INFO] cheese - inserting 1000 documents. first: Municipality of Sezana and last: Nikola Sakic +[2018-02-13T00:47:24.264] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:47:24.279] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:47:24.414] [INFO] cheese - inserting 1000 documents. first: Nikola Saric (footballer) and last: File:BBC Four HD Logo.svg +[2018-02-13T00:47:24.425] [INFO] cheese - inserting 1000 documents. first: File:Botanikuri.JPG and last: We've Always Been At War With Eurasia +[2018-02-13T00:47:24.432] [INFO] cheese - batch complete in: 0.168 secs +[2018-02-13T00:47:24.477] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:47:24.504] [INFO] cheese - inserting 1000 documents. first: Sharon Springs Historic District and last: Wikipedia:Articles for deletion/Mesame Dasi +[2018-02-13T00:47:24.510] [INFO] cheese - inserting 1000 documents. first: Debabarrena-Kirolgi and last: Fulvestrant-3-boronoate +[2018-02-13T00:47:24.519] [INFO] cheese - inserting 1000 documents. first: Chaos Code and last: Saint-François-Ouest +[2018-02-13T00:47:24.540] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T00:47:24.545] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:47:24.551] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:47:24.591] [INFO] cheese - inserting 1000 documents. first: Oriol de Bolos and last: Pedro Cintron Rodriguez +[2018-02-13T00:47:24.607] [INFO] cheese - batch complete in: 0.175 secs +[2018-02-13T00:47:24.646] [INFO] cheese - inserting 1000 documents. first: Trois nouvelles études and last: E-SIGN Act +[2018-02-13T00:47:24.694] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:47:24.734] [INFO] cheese - inserting 1000 documents. first: Pedro Colon Osorio and last: Promec Television +[2018-02-13T00:47:24.752] [INFO] cheese - batch complete in: 0.145 secs +[2018-02-13T00:47:24.781] [INFO] cheese - inserting 1000 documents. first: Kim Voss and last: André Leon Talley +[2018-02-13T00:47:24.792] [INFO] cheese - inserting 1000 documents. first: Fulvestrant-3 boronoate and last: Lachnia parallela +[2018-02-13T00:47:24.824] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:47:24.824] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:47:24.856] [INFO] cheese - inserting 1000 documents. first: Jacques Dupre House and last: Category:Ivorian expatriates in Greece +[2018-02-13T00:47:24.863] [INFO] cheese - inserting 1000 documents. first: Ontario Highway 95 and last: Wikipedia:Peer review/Jessica Mauboy discography/archive1 +[2018-02-13T00:47:24.899] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:47:24.903] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T00:47:24.967] [INFO] cheese - inserting 1000 documents. first: Pronto... c'e una certa Giuliana per te and last: Repoyane +[2018-02-13T00:47:25.013] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:47:25.115] [INFO] cheese - inserting 1000 documents. first: Washington Beltrán Barbat and last: Amikam +[2018-02-13T00:47:25.123] [INFO] cheese - inserting 1000 documents. first: Lamia aedificator and last: Sotalia borneensis +[2018-02-13T00:47:25.208] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T00:47:25.218] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:47:25.310] [INFO] cheese - inserting 1000 documents. first: Wall-column and last: 2010–11 NBL season +[2018-02-13T00:47:25.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Butterfly Body Liners and last: Rusmin Dedic +[2018-02-13T00:47:25.330] [INFO] cheese - inserting 1000 documents. first: File:What if it Works.jpg and last: State Route 56 Spur (Georgia) +[2018-02-13T00:47:25.373] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:47:25.406] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T00:47:25.446] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:47:25.486] [INFO] cheese - inserting 1000 documents. first: Maguire, Samuel and last: Louisa Mary Bacon +[2018-02-13T00:47:25.566] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:47:25.650] [INFO] cheese - inserting 1000 documents. first: Sotalia chinensis and last: Template:Roman Catholic Diocese of Ponce +[2018-02-13T00:47:25.694] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:47:25.710] [INFO] cheese - inserting 1000 documents. first: Pro Wrestling Alliance Australia and last: Savo Kovacevic +[2018-02-13T00:47:25.763] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:47:25.768] [INFO] cheese - inserting 1000 documents. first: Estonian car number plates and last: Rudolf Raimann +[2018-02-13T00:47:25.815] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:47:25.974] [INFO] cheese - inserting 1000 documents. first: Drinks can and last: Alexandra the Great +[2018-02-13T00:47:25.991] [INFO] cheese - inserting 1000 documents. first: Savo Zlatic and last: Skarbovik Church +[2018-02-13T00:47:26.012] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T00:47:26.018] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:47:26.041] [INFO] cheese - inserting 1000 documents. first: Georgia Highway 56 Spur and last: File:Phalacrocorax auritusZZ.jpg +[2018-02-13T00:47:26.096] [INFO] cheese - inserting 1000 documents. first: Norwich Festival and last: Andrei Shreiner +[2018-02-13T00:47:26.109] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:47:26.161] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T00:47:26.178] [INFO] cheese - inserting 1000 documents. first: Rose City Riveters and last: Draft:Blackshot player since 2006. +[2018-02-13T00:47:26.225] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:47:26.256] [INFO] cheese - inserting 1000 documents. first: Skarbovik IF and last: Stig Ostling +[2018-02-13T00:47:26.267] [INFO] cheese - inserting 1000 documents. first: HMS Mary Galley and last: Airbase +[2018-02-13T00:47:26.274] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:47:26.339] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T00:47:26.439] [INFO] cheese - inserting 1000 documents. first: Autumn Frost and last: Shadow Tower Abyss +[2018-02-13T00:47:26.481] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:47:26.524] [INFO] cheese - inserting 1000 documents. first: Hydrocampa randalis and last: Teatro Joao Caetano +[2018-02-13T00:47:26.557] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:47:26.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/VillegasD2002/Archive and last: Naehyuck Chang +[2018-02-13T00:47:26.621] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:47:26.641] [INFO] cheese - inserting 1000 documents. first: Gasanda and last: HUNTRESS (band) +[2018-02-13T00:47:26.701] [INFO] cheese - inserting 1000 documents. first: Kubanychbek Jumaliev and last: Steven Carroll +[2018-02-13T00:47:26.710] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:47:26.762] [INFO] cheese - inserting 1000 documents. first: Teatro Pavon and last: Alisa Kozhikina +[2018-02-13T00:47:26.772] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T00:47:26.784] [INFO] cheese - batch complete in: 0.227 secs +[2018-02-13T00:47:26.884] [INFO] cheese - inserting 1000 documents. first: Gospel Harmony and last: Toni Gilhooley +[2018-02-13T00:47:26.958] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:47:27.027] [INFO] cheese - inserting 1000 documents. first: Thearubigins and last: Birthday Card Stakes +[2018-02-13T00:47:27.039] [INFO] cheese - inserting 1000 documents. first: 2013-14 FA Trophy and last: Vange Church, Uppland +[2018-02-13T00:47:27.055] [INFO] cheese - inserting 1000 documents. first: Category:Street of the Prophets, Jerusalem and last: Wikipedia:Articles for deletion/Talk:Kiran Dabhi +[2018-02-13T00:47:27.071] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:47:27.119] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T00:47:27.120] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:47:27.246] [INFO] cheese - inserting 1000 documents. first: Tirfi Tsegaye and last: Template:S-line/Nizhny Novgorod Metro left/Avtozavodskaya line +[2018-02-13T00:47:27.314] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:47:27.368] [INFO] cheese - inserting 1000 documents. first: Vanina Sanchez and last: Wakatenryu Yuzo +[2018-02-13T00:47:27.402] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:47:27.432] [INFO] cheese - inserting 1000 documents. first: Zhigulevsk and last: František Ladislav Čelakovský +[2018-02-13T00:47:27.504] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T00:47:27.604] [INFO] cheese - inserting 1000 documents. first: Numbered Account and last: Category:Lithuania at the European Championships in Athletics +[2018-02-13T00:47:27.656] [INFO] cheese - inserting 1000 documents. first: Draft:List of churches on the Isle of Man and last: Minimum Interval Takeoff +[2018-02-13T00:47:27.662] [INFO] cheese - inserting 1000 documents. first: Waldbuhne (disambiguation) and last: Yucatan moist forests +[2018-02-13T00:47:27.678] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:47:27.682] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:47:27.697] [INFO] cheese - inserting 1000 documents. first: Simon The Sorcerer's Puzzle Pack and last: 1975–76 Cypriot First Division +[2018-02-13T00:47:27.766] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:47:27.879] [INFO] cheese - inserting 1000 documents. first: Gustav Oehrli and last: Edward James Milford +[2018-02-13T00:47:27.889] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T00:47:27.927] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:47:28.090] [INFO] cheese - inserting 1000 documents. first: Category:Conakry and last: Peter Weir (footballer) +[2018-02-13T00:47:28.142] [INFO] cheese - inserting 1000 documents. first: Yucatan mushroomtongue salamander and last: Template:2008 NSW Cup Team of the Year +[2018-02-13T00:47:28.157] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T00:47:28.184] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T00:47:28.253] [INFO] cheese - inserting 1000 documents. first: CATMAN and last: File:Lancashirewolverineslogo.jpg +[2018-02-13T00:47:28.308] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T00:47:28.328] [INFO] cheese - inserting 1000 documents. first: St Pancras (disambiguation) and last: List of Test cricket centuries at The WACA Ground +[2018-02-13T00:47:28.381] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:47:28.394] [INFO] cheese - inserting 1000 documents. first: Category:Black English comedians and last: SS Fort Athabaska +[2018-02-13T00:47:28.464] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:47:28.556] [INFO] cheese - inserting 1000 documents. first: Template:2009 NYC Team of the Year and last: Perbromobenzene +[2018-02-13T00:47:28.603] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:47:28.643] [INFO] cheese - inserting 1000 documents. first: Forgotten Memories and last: Danny Murphy (second baseman) +[2018-02-13T00:47:28.689] [INFO] cheese - inserting 1000 documents. first: Category:Politicians from Enid, Oklahoma and last: IU Natatorium +[2018-02-13T00:47:28.693] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:47:28.740] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:47:28.775] [INFO] cheese - inserting 1000 documents. first: 1976–77 Cypriot First Division and last: Streptomyces venezuelae +[2018-02-13T00:47:28.851] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T00:47:28.879] [INFO] cheese - inserting 1000 documents. first: Futurenow and last: Dickenson County Healthcare System +[2018-02-13T00:47:28.932] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:47:28.952] [INFO] cheese - inserting 1000 documents. first: Margaret Alford and last: Category:2015 in New Zealand motorsport +[2018-02-13T00:47:28.975] [INFO] cheese - inserting 1000 documents. first: Tempus clausum and last: Live at Roadburn 2008 (Year of No Light album) +[2018-02-13T00:47:28.995] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:47:29.060] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:47:29.151] [INFO] cheese - inserting 1000 documents. first: Huzam Nabaah and last: Theodore B. Werner +[2018-02-13T00:47:29.169] [INFO] cheese - inserting 1000 documents. first: F. E. Kuhn and last: D. 882 +[2018-02-13T00:47:29.270] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:47:29.320] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:47:29.422] [INFO] cheese - inserting 1000 documents. first: Slavery and the Bible and last: File:Haunting of Thomas Brewster.jpg +[2018-02-13T00:47:29.447] [INFO] cheese - inserting 1000 documents. first: Prestwood (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/ingush-studio.com +[2018-02-13T00:47:29.459] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:47:29.497] [INFO] cheese - inserting 1000 documents. first: Undulambia fovecosta and last: Category:Archdeacons of St Vincent +[2018-02-13T00:47:29.499] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:47:29.581] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:47:29.697] [INFO] cheese - inserting 1000 documents. first: Draft:Paul Bentley and last: Category:Wikipedia sockpuppets of Solomon joe +[2018-02-13T00:47:29.728] [INFO] cheese - inserting 1000 documents. first: Auvergne (région) and last: Elmers Verden +[2018-02-13T00:47:29.735] [INFO] cheese - inserting 1000 documents. first: Pur River (India) and last: The Clique: Queen Teen +[2018-02-13T00:47:29.749] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:47:29.780] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:47:29.790] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:47:29.871] [INFO] cheese - inserting 1000 documents. first: Linda Lopez and last: Al Hubbard (baseball) +[2018-02-13T00:47:29.912] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:47:30.084] [INFO] cheese - inserting 1000 documents. first: Avant-Garde music and last: Vince Coutie +[2018-02-13T00:47:30.096] [INFO] cheese - inserting 1000 documents. first: Aleksander Janicki (artist) and last: BRCPS +[2018-02-13T00:47:30.128] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:47:30.148] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:47:30.239] [INFO] cheese - inserting 1000 documents. first: File:Randfan's Sand Castle.jpg and last: 2004 Haiti rebellion +[2018-02-13T00:47:30.287] [INFO] cheese - inserting 1000 documents. first: Hands in the Air (Miley Cyrus) and last: Segundo Navarrete +[2018-02-13T00:47:30.302] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:47:30.312] [INFO] cheese - inserting 1000 documents. first: File:Colrisuni.gif and last: St Michael's Prep School, Otford +[2018-02-13T00:47:30.359] [INFO] cheese - inserting 1000 documents. first: Yacimientos Carboniferos Fiscales and last: Lichtenhain Bergbahn +[2018-02-13T00:47:30.380] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:47:30.393] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:47:30.468] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T00:47:30.634] [INFO] cheese - inserting 1000 documents. first: Raymond James Inc and last: Category:Tengnoupal district +[2018-02-13T00:47:30.673] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:47:30.689] [INFO] cheese - inserting 1000 documents. first: Burn recovery bed and last: Wikipedia:Version 1.0 Editorial Team/University of California articles by quality/1 +[2018-02-13T00:47:30.790] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:47:30.862] [INFO] cheese - inserting 1000 documents. first: Category:Luxembourgian people of Cape Verde descent and last: Ebenau's leaf chameleon +[2018-02-13T00:47:30.864] [INFO] cheese - inserting 1000 documents. first: Top Four Cup and last: Molecular crystal +[2018-02-13T00:47:30.930] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T00:47:30.945] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:47:30.972] [INFO] cheese - inserting 1000 documents. first: New Frontier (Matt Finish CD) and last: Category:Civilian Conservation Corps in Mississippi +[2018-02-13T00:47:31.084] [INFO] cheese - inserting 1000 documents. first: Metropolitan Iziaslav (Brutskiy) and last: Wikipedia:Articles for deletion/UK professors of complementary medicine +[2018-02-13T00:47:31.106] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:47:31.154] [INFO] cheese - inserting 1000 documents. first: Asian Productivity Organization and last: Elder Beck +[2018-02-13T00:47:31.219] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:47:31.238] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T00:47:31.421] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/University of California articles by quality/2 and last: Kalonymides +[2018-02-13T00:47:31.444] [INFO] cheese - inserting 1000 documents. first: Template:WPSOUTHPARK and last: OECD Report +[2018-02-13T00:47:31.480] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:47:31.543] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:47:31.550] [INFO] cheese - inserting 1000 documents. first: File:Symbiosis (album).jpg and last: Noveko +[2018-02-13T00:47:31.595] [INFO] cheese - inserting 1000 documents. first: Do U Lie? and last: John Camp (English politician) +[2018-02-13T00:47:31.647] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:47:31.656] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:47:31.801] [INFO] cheese - inserting 1000 documents. first: Skew-commutative associative algebra and last: Otto II van Lippe +[2018-02-13T00:47:31.808] [INFO] cheese - inserting 1000 documents. first: Category:Miami Seahawks coaches and last: Category:Redirect-Class film articles +[2018-02-13T00:47:31.897] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:47:31.910] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T00:47:32.051] [INFO] cheese - inserting 1000 documents. first: Mark Goffeney and last: New York Atlantics +[2018-02-13T00:47:32.144] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T00:47:32.208] [INFO] cheese - inserting 1000 documents. first: Sauzier's teal and last: File:This Burning Effigy - After Thought.ogg +[2018-02-13T00:47:32.209] [INFO] cheese - inserting 1000 documents. first: Piotr Kuczera and last: K299BT +[2018-02-13T00:47:32.259] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T00:47:32.273] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:47:32.345] [INFO] cheese - inserting 1000 documents. first: File:Muriel Bevis.jpg and last: Timothy M. Lohman +[2018-02-13T00:47:32.421] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:47:32.529] [INFO] cheese - inserting 1000 documents. first: Category:1982 in cricket and last: Haitian legislative elections, 1990/91 +[2018-02-13T00:47:32.562] [INFO] cheese - inserting 1000 documents. first: Barcelona managers and last: Infrared spectroscopy of metal carbonyls +[2018-02-13T00:47:32.607] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T00:47:32.631] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T00:47:32.670] [INFO] cheese - inserting 1000 documents. first: Phyz and last: Brotherhood of St Lawrence +[2018-02-13T00:47:32.695] [INFO] cheese - inserting 1000 documents. first: Hilario Ulloa and last: File:Freur Doot Doot test pressing with stamped and handwritten logo.jpg +[2018-02-13T00:47:32.711] [INFO] cheese - inserting 1000 documents. first: Red kidney beans and last: Zec de la Rivière-Bonaventure +[2018-02-13T00:47:32.715] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T00:47:32.727] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:47:32.753] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:47:32.856] [INFO] cheese - inserting 1000 documents. first: Category:People from Levoča and last: Cadet gray +[2018-02-13T00:47:32.906] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T00:47:32.970] [INFO] cheese - inserting 1000 documents. first: List of minor planets/145701–145800 and last: Saskatchewan Highway 929 +[2018-02-13T00:47:32.972] [INFO] cheese - inserting 1000 documents. first: Middle Cornish and last: Medland +[2018-02-13T00:47:32.972] [INFO] cheese - inserting 1000 documents. first: Ravipadu (disambiguation) and last: Back to the Factory +[2018-02-13T00:47:33.009] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T00:47:33.022] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:47:33.027] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:47:33.057] [INFO] cheese - inserting 1000 documents. first: SR 217 (AZ) and last: File:ShaanatImprint.jpg +[2018-02-13T00:47:33.095] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:47:33.110] [INFO] cheese - inserting 1000 documents. first: File:LED Eco Lights Company Logo.jpg and last: Harry Langford +[2018-02-13T00:47:33.157] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:47:33.236] [INFO] cheese - inserting 1000 documents. first: Ikosi and last: Wikipedia:Wikipedia Loves Art/Brooklyn Museum rules +[2018-02-13T00:47:33.276] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T00:47:33.284] [INFO] cheese - inserting 1000 documents. first: Raphael Vieira De Oliveira and last: File:It's That Man Again (1943 film).jpg +[2018-02-13T00:47:33.326] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:47:33.399] [INFO] cheese - inserting 1000 documents. first: Kuramatengu and last: Wikipedia:Articles for deletion/Taran Rampersad (2nd nomination) +[2018-02-13T00:47:33.407] [INFO] cheese - inserting 1000 documents. first: Category:1981 establishments in Chile and last: County Route 16 (Oneida County, New York) +[2018-02-13T00:47:33.448] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:47:33.453] [INFO] cheese - inserting 1000 documents. first: Pierre ii de luxembourg and last: Paria, Utah +[2018-02-13T00:47:33.459] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T00:47:33.525] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:47:33.549] [INFO] cheese - inserting 1000 documents. first: Template:Latest preview software release/Viber and last: Mission Trail Athletic League +[2018-02-13T00:47:33.608] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T00:47:33.668] [INFO] cheese - inserting 1000 documents. first: Usta Mourad Mosque and last: File:ShoestringDVD.jpg +[2018-02-13T00:47:33.751] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:47:33.982] [INFO] cheese - inserting 1000 documents. first: Lagaan: Once Upon a Time in India (2001 film) and last: Category:Montana State Bobcats football coaches +[2018-02-13T00:47:33.998] [INFO] cheese - inserting 1000 documents. first: County Route 17 (Oneida County, New York) and last: Troyzan +[2018-02-13T00:47:34.045] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:47:34.058] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:47:34.062] [INFO] cheese - inserting 1000 documents. first: Chris Watson (disambiguation) and last: Wikipedia:Articles for deletion/List of castes from the Alien expanded universe +[2018-02-13T00:47:34.128] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Art/Carnegie Museum of Art rules and last: Saint-Georges Saint-Émilion +[2018-02-13T00:47:34.147] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:47:34.343] [INFO] cheese - inserting 1000 documents. first: File:Esti jerusalem.JPG and last: Zec de la Rivière-Petit-Saguenay +[2018-02-13T00:47:34.348] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T00:47:34.419] [INFO] cheese - inserting 1000 documents. first: Watzke and last: List of Hampshire County Cricket Club first-class players (1895-1914) +[2018-02-13T00:47:34.433] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T00:47:34.492] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T00:47:34.691] [INFO] cheese - inserting 1000 documents. first: Homonomous hemianopsia and last: Žarkovac (Ruma) +[2018-02-13T00:47:34.760] [INFO] cheese - inserting 1000 documents. first: Okhli and last: Aberffraw (cantref) +[2018-02-13T00:47:34.765] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T00:47:34.801] [INFO] cheese - inserting 1000 documents. first: Cuckoo Farm and last: Vojvodina Academy of Sciences and Arts +[2018-02-13T00:47:34.840] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T00:47:34.876] [INFO] cheese - inserting 1000 documents. first: Category:Species endangered by slash-and-burn and last: World Fuel Services Corp +[2018-02-13T00:47:34.908] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T00:47:34.912] [INFO] cheese - inserting 1000 documents. first: INS Tarshish and last: Wayne Fraser +[2018-02-13T00:47:34.919] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:47:34.991] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:47:35.233] [INFO] cheese - inserting 1000 documents. first: Fonte Avellana and last: Lateral nasal process +[2018-02-13T00:47:35.280] [INFO] cheese - inserting 1000 documents. first: Category:541 BC deaths and last: Mallosia graeca +[2018-02-13T00:47:35.298] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T00:47:35.317] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:47:35.350] [INFO] cheese - inserting 1000 documents. first: File:Tearringsaga boxart.PNG and last: 630s in Ireland +[2018-02-13T00:47:35.351] [INFO] cheese - inserting 1000 documents. first: The Ghost Map: The Story of London's Most Terrifying Epidemic – and How it Changed Science, Cities and the Modern World and last: Ship of Condemned Women +[2018-02-13T00:47:35.365] [INFO] cheese - inserting 1000 documents. first: Module:Uses Wikidata/sandbox and last: Geography of Ōta, Tokyo +[2018-02-13T00:47:35.388] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:47:35.397] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:47:35.430] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:47:35.598] [INFO] cheese - inserting 1000 documents. first: Izman and last: Category:Samphanthawong District +[2018-02-13T00:47:35.633] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:47:35.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Amanda Carpenter (second nomination) and last: Portal:United States Navy/Selected picture/2 +[2018-02-13T00:47:35.675] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T00:47:35.688] [INFO] cheese - inserting 1000 documents. first: Víctor Moreira and last: John Crutcher +[2018-02-13T00:47:35.705] [INFO] cheese - inserting 1000 documents. first: Category:Egyptian sport shooters and last: Arabia Steamboat +[2018-02-13T00:47:35.729] [INFO] cheese - inserting 1000 documents. first: East Troy, Maine and last: Dark Souls 3: The Fire Fades +[2018-02-13T00:47:35.738] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:47:35.772] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:47:35.774] [INFO] cheese - batch complete in: 1.426 secs +[2018-02-13T00:47:35.807] [INFO] cheese - inserting 1000 documents. first: Category:Canadian chess writers and last: General of the artillery +[2018-02-13T00:47:35.869] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:47:36.077] [INFO] cheese - inserting 1000 documents. first: Malabar grouper and last: Escape to Hell +[2018-02-13T00:47:36.095] [INFO] cheese - inserting 1000 documents. first: Gaya Railway Station and last: Sir Stephen de Vere, 4th Baronet +[2018-02-13T00:47:36.115] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:47:36.132] [INFO] cheese - inserting 1000 documents. first: List of Questlove Supreme Episodes and last: Ceratichthys labrosus +[2018-02-13T00:47:36.159] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:47:36.195] [INFO] cheese - inserting 1000 documents. first: Heart On My Sleeve (Mary Lambert album) and last: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2014 September 23 +[2018-02-13T00:47:36.198] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:47:36.286] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:47:36.295] [INFO] cheese - inserting 1000 documents. first: Relief Hose Company No. 2 Engine House and last: Roscommon Castle +[2018-02-13T00:47:36.405] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:47:36.411] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Waste Management (album) and last: Processability theory +[2018-02-13T00:47:36.443] [INFO] cheese - inserting 1000 documents. first: Moneta Sleet Jr. and last: African-American Film Critics Association Awards 2003 +[2018-02-13T00:47:36.489] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:47:36.523] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:47:36.663] [INFO] cheese - inserting 1000 documents. first: File:Doctor Laennec.jpg and last: Draft:Louis Horne (musician) +[2018-02-13T00:47:36.712] [INFO] cheese - inserting 1000 documents. first: Place, New Hampshire and last: Władysław Sławny +[2018-02-13T00:47:36.733] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:47:36.777] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:47:36.850] [INFO] cheese - inserting 1000 documents. first: Minye Thihathu II of Toungoo and last: Ornithomimus tenuis +[2018-02-13T00:47:36.876] [INFO] cheese - inserting 1000 documents. first: 11'09"01 and last: Template:Cardiff Bus 21/23 RDT +[2018-02-13T00:47:36.899] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:47:36.915] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:47:37.038] [INFO] cheese - inserting 1000 documents. first: François N'Doumbé and last: Indie Queen +[2018-02-13T00:47:37.103] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:47:37.120] [INFO] cheese - inserting 1000 documents. first: Clawed feather-flower and last: Porlammi encirclement +[2018-02-13T00:47:37.152] [INFO] cheese - inserting 1000 documents. first: Rock garden (disambiguation) and last: List of parasites of humans +[2018-02-13T00:47:37.176] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:47:37.226] [INFO] cheese - inserting 1000 documents. first: Neodyschirius and last: Now Deh Bam +[2018-02-13T00:47:37.275] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T00:47:37.310] [INFO] cheese - inserting 1000 documents. first: Ornithomimus altus and last: Günther Ruprecht +[2018-02-13T00:47:37.324] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T00:47:37.377] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:47:37.507] [INFO] cheese - inserting 1000 documents. first: Category:Atlanta Blackhawks players and last: File:A Promise To Burn.jpg +[2018-02-13T00:47:37.610] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T00:47:37.801] [INFO] cheese - inserting 1000 documents. first: Tungjoy and last: DJ E-Feezy +[2018-02-13T00:47:37.859] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:47:37.939] [INFO] cheese - inserting 1000 documents. first: KTDZ and last: Mashpee and Wakeby Ponds +[2018-02-13T00:47:38.000] [INFO] cheese - inserting 1000 documents. first: Category:1976–77 in Canadian ice hockey by league and last: The Movie Star +[2018-02-13T00:47:38.019] [INFO] cheese - inserting 1000 documents. first: Magruder Plots and last: Nemanja Ćorović +[2018-02-13T00:47:38.021] [INFO] cheese - inserting 1000 documents. first: Carlos Gabriel Rodríguez and last: Cascadia fault zone +[2018-02-13T00:47:38.022] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T00:47:38.090] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:47:38.146] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T00:47:38.163] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T00:47:38.195] [INFO] cheese - inserting 1000 documents. first: Swahili blonde and last: Zunun Kadir +[2018-02-13T00:47:38.256] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:47:38.361] [INFO] cheese - inserting 1000 documents. first: Lavina Keough and last: Bridaltree +[2018-02-13T00:47:38.412] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:47:38.474] [INFO] cheese - inserting 1000 documents. first: File:Keith LeBlanc - Time Traveller.jpg and last: Megachile albicaudella +[2018-02-13T00:47:38.506] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:47:38.514] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/taxi-service.me and last: Andrea Lussardi +[2018-02-13T00:47:38.563] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:47:38.624] [INFO] cheese - inserting 1000 documents. first: Korean titles and last: Schoolboy +[2018-02-13T00:47:38.626] [INFO] cheese - inserting 1000 documents. first: Porterella and last: Keep On Movin' (Alexia) +[2018-02-13T00:47:38.663] [INFO] cheese - inserting 1000 documents. first: Cascadia fault Zone and last: Polyclonal response/GA2 +[2018-02-13T00:47:38.678] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T00:47:38.688] [INFO] cheese - inserting 1000 documents. first: Epepeotes meridianus and last: António José Pereira de Carvalho +[2018-02-13T00:47:38.688] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T00:47:38.740] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:47:38.751] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:47:38.831] [INFO] cheese - inserting 1000 documents. first: Route 311 (Virginia-West Virginia) and last: Wikipedia:Articles for deletion/Bahman Gholipouri +[2018-02-13T00:47:38.872] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:47:38.974] [INFO] cheese - inserting 1000 documents. first: Template:Sports governing bodies in Poland and last: Pottangi Ollar Gadaba language +[2018-02-13T00:47:39.010] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:47:39.034] [INFO] cheese - inserting 1000 documents. first: File:TheSwingleSingers BachsGreatestHits.jpg and last: File:Drowningpool250.jpg +[2018-02-13T00:47:39.072] [INFO] cheese - inserting 1000 documents. first: NNS Andoni and last: Engineers Without Borders Australia +[2018-02-13T00:47:39.082] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:47:39.112] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:47:39.115] [INFO] cheese - inserting 1000 documents. first: Patrick Arthur Devlin, Lord Devlin and last: Eye Castle +[2018-02-13T00:47:39.180] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:47:39.235] [INFO] cheese - inserting 1000 documents. first: Teacher (music) and last: Bill Brogan +[2018-02-13T00:47:39.263] [INFO] cheese - inserting 1000 documents. first: Selvanagar and last: Aerobic Granulation +[2018-02-13T00:47:39.291] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:47:39.339] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:47:39.401] [INFO] cheese - inserting 1000 documents. first: Zbigniew Herman and last: Curtiss P-40F +[2018-02-13T00:47:39.463] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:47:39.559] [INFO] cheese - inserting 1000 documents. first: Eastern purple-glossed snake and last: Draft:Ernst Weigang +[2018-02-13T00:47:39.583] [INFO] cheese - inserting 1000 documents. first: Ropeadope and last: Kahraman Dogan +[2018-02-13T00:47:39.599] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T00:47:39.659] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:47:39.754] [INFO] cheese - inserting 1000 documents. first: Category:Talleres de Córdoba managers and last: Template:RussiaBasicLawRef/vla +[2018-02-13T00:47:39.775] [INFO] cheese - inserting 1000 documents. first: File:AcousticliveatWOW.jpg and last: Mariah a. taylor +[2018-02-13T00:47:39.779] [INFO] cheese - inserting 1000 documents. first: Bandoeng Inlandsche Voetball Bond and last: Bow-string arch bridge +[2018-02-13T00:47:39.807] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T00:47:39.840] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:47:39.844] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:47:39.895] [INFO] cheese - inserting 1000 documents. first: Curtiss Kittyhawk Mk II and last: Coal shovel +[2018-02-13T00:47:39.954] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:47:40.016] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gtamoneyonline.com and last: Agents of Shield (season 4) +[2018-02-13T00:47:40.023] [INFO] cheese - inserting 1000 documents. first: Nantenbach Curve and last: Nebiogastes +[2018-02-13T00:47:40.051] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T00:47:40.071] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:47:40.296] [INFO] cheese - inserting 1000 documents. first: Southwestern Proving Ground Officers Quarters Historic District and last: Battle On Broadway +[2018-02-13T00:47:40.339] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:47:40.352] [INFO] cheese - inserting 1000 documents. first: S.W. Harris and last: Agricultural Training Institute (Philippines) +[2018-02-13T00:47:40.362] [INFO] cheese - inserting 1000 documents. first: Donald Kerst and last: Category:Western Macedonia geography stubs +[2018-02-13T00:47:40.409] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T00:47:40.429] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Icahn School of Medicine at Mount Sinai/Outcomes of teaching students 2017 and last: Category:Former roller coasters in North Carolina +[2018-02-13T00:47:40.449] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:47:40.460] [INFO] cheese - inserting 1000 documents. first: Alipiri and last: Vercengitorix +[2018-02-13T00:47:40.527] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:47:40.526] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:47:40.566] [INFO] cheese - inserting 1000 documents. first: Category:Ottoman scientists and last: Ski 2 Sea +[2018-02-13T00:47:40.642] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:47:40.856] [INFO] cheese - inserting 1000 documents. first: August 2021 and last: Category:Biographical films about Ma Barker +[2018-02-13T00:47:40.873] [INFO] cheese - inserting 1000 documents. first: Deák Ferenc tér (Budapest Metro M3) and last: Ashburn Village +[2018-02-13T00:47:40.912] [INFO] cheese - inserting 1000 documents. first: Category:Filipino Indologists and last: Bairagarh Airport +[2018-02-13T00:47:40.914] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:47:40.927] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:47:40.947] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Choke (Glee) and last: May Collins +[2018-02-13T00:47:40.989] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:47:41.007] [INFO] cheese - inserting 1000 documents. first: Papyrus Oxyrhynchus 1008 and last: Lamborghini Aventador S +[2018-02-13T00:47:40.998] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:47:41.072] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T00:47:41.219] [INFO] cheese - inserting 1000 documents. first: County Route 75 (Erie County, New York) and last: YOTBR +[2018-02-13T00:47:41.299] [INFO] cheese - inserting 1000 documents. first: Sedberry-Holmes House and last: Category:Polish animated short films +[2018-02-13T00:47:41.303] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:47:41.333] [INFO] cheese - inserting 1000 documents. first: Chikkalthana Airport and last: Catholic Extension +[2018-02-13T00:47:41.340] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T00:47:41.355] [INFO] cheese - inserting 1000 documents. first: Saŋyojana and last: Raymond J. Johnson Jr. +[2018-02-13T00:47:41.388] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T00:47:41.450] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:47:41.489] [INFO] cheese - inserting 1000 documents. first: File:In My Father's Garden.jpg and last: Rudnickis +[2018-02-13T00:47:41.595] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:47:41.702] [INFO] cheese - inserting 1000 documents. first: Botle Castle and last: Sat-IP +[2018-02-13T00:47:41.792] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:47:41.817] [INFO] cheese - inserting 1000 documents. first: Dunsmuir station (British Columbia) and last: Logical fallacy/Gamblers fallacy +[2018-02-13T00:47:41.894] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T00:47:41.968] [INFO] cheese - inserting 1000 documents. first: Belhar and last: Bourassa State Forest +[2018-02-13T00:47:41.984] [INFO] cheese - inserting 1000 documents. first: Israel Yishayahu and last: Category:Pajama Party (group) albums +[2018-02-13T00:47:42.030] [INFO] cheese - inserting 1000 documents. first: Template:Schools in Ipoh and last: Hartland Four Corners, Vermont +[2018-02-13T00:47:42.046] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:47:42.063] [INFO] cheese - inserting 1000 documents. first: Raeder and last: Mydeton +[2018-02-13T00:47:42.093] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:47:42.170] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:47:42.192] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:47:42.284] [INFO] cheese - inserting 1000 documents. first: File:Mrs. Whitney in the winners circle.jpg and last: HP PhotoSmart R727 (V01.00) +[2018-02-13T00:47:42.363] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T00:47:42.378] [INFO] cheese - inserting 1000 documents. first: Richard Ellena and last: Revelation Zero (Part 2) +[2018-02-13T00:47:42.415] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:47:42.573] [INFO] cheese - inserting 1000 documents. first: Federal judiciary of Switzerland and last: Granulation (solar physics) +[2018-02-13T00:47:42.592] [INFO] cheese - inserting 1000 documents. first: The Well (1951 film) and last: Gurbuz +[2018-02-13T00:47:42.634] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:47:42.638] [INFO] cheese - inserting 1000 documents. first: Category:Ministers of the Brandenburg State Government and last: Hooper's rule +[2018-02-13T00:47:42.641] [INFO] cheese - inserting 1000 documents. first: Category:Paint It Black (band) albums and last: Anton Gág +[2018-02-13T00:47:42.655] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:47:42.747] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:47:42.768] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T00:47:42.833] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Kingswood House School and last: Wikipedia:Articles for deletion/Bhimjee Parikh +[2018-02-13T00:47:42.912] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:47:43.018] [INFO] cheese - inserting 1000 documents. first: Conus darkini and last: Paris-Dakar (Newspaper) +[2018-02-13T00:47:43.062] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:47:43.128] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/May 2 and last: Rye whisky +[2018-02-13T00:47:43.140] [INFO] cheese - inserting 1000 documents. first: Acanthophis praelongus and last: Draft:R.S. Field +[2018-02-13T00:47:43.178] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:47:43.186] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:47:43.194] [INFO] cheese - inserting 1000 documents. first: File:Perry Jewelry.jpg and last: Coat of Arms bridge +[2018-02-13T00:47:43.197] [INFO] cheese - inserting 1000 documents. first: File:Jennifer Hudson - Spotlight.jpeg and last: Wikipedia:Articles for deletion/Genuine Warranty +[2018-02-13T00:47:43.262] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:47:43.316] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:47:43.421] [INFO] cheese - inserting 1000 documents. first: Timeline of the 2011–2012 Syrian uprising (from January 2012) and last: Lecithocera pseudocathra +[2018-02-13T00:47:43.508] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:47:43.572] [INFO] cheese - inserting 1000 documents. first: List of parasites of the marsh rice rat and last: Brand Fourie +[2018-02-13T00:47:43.647] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:47:43.692] [INFO] cheese - inserting 1000 documents. first: Draft:Spider-Man (animated film) and last: Amin al-Din (disambiguation) +[2018-02-13T00:47:43.717] [INFO] cheese - inserting 1000 documents. first: David Price (Football) and last: Tristan White +[2018-02-13T00:47:43.763] [INFO] cheese - inserting 1000 documents. first: Category:The Jayhawks albums and last: Benjamin Woods Labaree +[2018-02-13T00:47:43.778] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:47:43.803] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:47:43.865] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:47:43.882] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Julian Alps and last: Portal:Time/Selected Article/Suggest/criteria +[2018-02-13T00:47:43.940] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T00:47:44.062] [INFO] cheese - inserting 1000 documents. first: Template:NCAA Division I FBS football rankings/sandbox and last: Cierva C.6C +[2018-02-13T00:47:44.125] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:47:44.174] [INFO] cheese - inserting 1000 documents. first: Eisenstadt-Umgebung and last: Holt Hotel +[2018-02-13T00:47:44.214] [INFO] cheese - inserting 1000 documents. first: Category:German musicals and last: Flo McClintock +[2018-02-13T00:47:44.227] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:47:44.244] [INFO] cheese - inserting 1000 documents. first: Lighting effects and last: File:Love U Crazy Girl (Film) Poster.jpg +[2018-02-13T00:47:44.269] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:47:44.293] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:47:44.365] [INFO] cheese - inserting 1000 documents. first: Kanuka and last: Shibar District +[2018-02-13T00:47:44.406] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:47:44.511] [INFO] cheese - inserting 1000 documents. first: People vs. Money Tour and last: Maria Willoughby +[2018-02-13T00:47:44.560] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T00:47:44.564] [INFO] cheese - inserting 1000 documents. first: The Merry Month of May and last: Eutrichillus +[2018-02-13T00:47:44.630] [INFO] cheese - inserting 1000 documents. first: Protestant church of Aldtsjerk and last: Suzanne Bonnard +[2018-02-13T00:47:44.640] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:47:44.642] [INFO] cheese - inserting 1000 documents. first: Valur Ingimundarson and last: Category:Freedom of religion in Malaysia +[2018-02-13T00:47:44.673] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:47:44.713] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:47:44.770] [INFO] cheese - inserting 1000 documents. first: Getting Free and last: Hauptbahnhof (Berlin U-Bahn) +[2018-02-13T00:47:44.810] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:47:44.817] [INFO] cheese - inserting 1000 documents. first: Battle of Long Run and last: The Sideways Door +[2018-02-13T00:47:44.880] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T00:47:45.024] [INFO] cheese - inserting 1000 documents. first: Cryptocephalus pusillus and last: Category:Use Jamaican English from May 2017 +[2018-02-13T00:47:45.060] [INFO] cheese - inserting 1000 documents. first: ES Thaon and last: Category:French people of Vietnamese descent +[2018-02-13T00:47:45.060] [INFO] cheese - inserting 1000 documents. first: Aminolevulinic acid dehydratase deficiency porphyria and last: Category:GET-ligaen +[2018-02-13T00:47:45.060] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:47:45.077] [INFO] cheese - inserting 1000 documents. first: Grey-backed Sparrow-lark and last: KGBV Scheme +[2018-02-13T00:47:45.125] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:47:45.147] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:47:45.157] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T00:47:45.270] [INFO] cheese - inserting 1000 documents. first: 2014–15 American Eagles men's basketball team and last: Ron Foos +[2018-02-13T00:47:45.324] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:47:45.344] [INFO] cheese - inserting 1000 documents. first: Mount Kunyit and last: Portal:Religion/On this day/June 25 +[2018-02-13T00:47:45.409] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:47:45.431] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles needing a junction list from May 2017 and last: Template:Taxonomy/Ubirodynerus +[2018-02-13T00:47:45.495] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T00:47:45.602] [INFO] cheese - inserting 1000 documents. first: Odd Fellows lodge and last: Ovingham, Northumberland +[2018-02-13T00:47:45.638] [INFO] cheese - inserting 1000 documents. first: Petit de la Saussaye and last: Javorje, Velike Lašče +[2018-02-13T00:47:45.651] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:47:45.692] [INFO] cheese - inserting 1000 documents. first: Aybek Orozaliyev and last: Truth and Purpose (Album) +[2018-02-13T00:47:45.699] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:47:45.778] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:47:45.788] [INFO] cheese - inserting 1000 documents. first: Danny Krause and last: File:MMB, Logo.gif +[2018-02-13T00:47:45.857] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:47:45.898] [INFO] cheese - inserting 1000 documents. first: Portal:Religion/On this day/June 26 and last: Shaligram Shilas +[2018-02-13T00:47:46.022] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:47:46.089] [INFO] cheese - inserting 1000 documents. first: Pink dryandra and last: Chhota Singh +[2018-02-13T00:47:46.172] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:47:46.176] [INFO] cheese - inserting 1000 documents. first: Template:Queensland Rail rail lines and last: Category:Birmingham Maroons players +[2018-02-13T00:47:46.257] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:47:46.347] [INFO] cheese - inserting 1000 documents. first: Template:PrinceWilliamCountyVA-NRHP-stub and last: Antonio Colinas Lobato +[2018-02-13T00:47:46.388] [INFO] cheese - inserting 1000 documents. first: List of number-one singles in 1998 (NZ) and last: FCS Star +[2018-02-13T00:47:46.420] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:47:46.496] [INFO] cheese - inserting 1000 documents. first: Battlihorn and last: Category:George Wein albums +[2018-02-13T00:47:46.543] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T00:47:46.590] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:47:46.679] [INFO] cheese - inserting 1000 documents. first: Emmton Magan and last: Wikipedia:Articles for deletion/Forss Fagerström +[2018-02-13T00:47:46.749] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T00:47:46.821] [INFO] cheese - inserting 1000 documents. first: The Melancholy Fantastic and last: John Tasker Henderson +[2018-02-13T00:47:46.860] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T00:47:46.920] [INFO] cheese - inserting 1000 documents. first: Soviet Russia (exhibition, 1975) and last: Çamlıköy Kıbrıs +[2018-02-13T00:47:46.957] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:47:47.003] [INFO] cheese - inserting 1000 documents. first: Charles Leavitt and last: Given, West Virginia +[2018-02-13T00:47:47.050] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:47:47.053] [INFO] cheese - inserting 1000 documents. first: Tax loophole and last: Template:1994–95 football in Portugal +[2018-02-13T00:47:47.093] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samir Palnitkar and last: File:Peter Kay's Car Share titles.jpg +[2018-02-13T00:47:47.095] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:47:47.140] [INFO] cheese - inserting 1000 documents. first: Panzer X and last: United Nations Security Council Resolution 14 +[2018-02-13T00:47:47.166] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T00:47:47.182] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:47:47.290] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Network as a service and last: Goat Islands +[2018-02-13T00:47:47.309] [INFO] cheese - inserting 1000 documents. first: Richard Nyarko and last: List of Strawberry 100% manga chapters +[2018-02-13T00:47:47.332] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:47:47.341] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:47:47.412] [INFO] cheese - inserting 1000 documents. first: Tony Branson and last: US Geography Challenge +[2018-02-13T00:47:47.433] [INFO] cheese - inserting 1000 documents. first: Category:History of Cumberland, MD-WV MSA and last: Mikkel Thorup +[2018-02-13T00:47:47.449] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:47:47.451] [INFO] cheese - inserting 1000 documents. first: Kvitashvili, Alexander and last: File:Utah Flash.png +[2018-02-13T00:47:47.475] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:47:47.508] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:47:47.602] [INFO] cheese - inserting 1000 documents. first: Teleost fish and last: Postprocessing +[2018-02-13T00:47:47.646] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:47:47.690] [INFO] cheese - inserting 1000 documents. first: Porokeratotic eccrine ostial and dermal duct nevus and last: Wikipedia:Wikipedia essays showcase/Featured essay/4 +[2018-02-13T00:47:47.748] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:47:47.772] [INFO] cheese - inserting 1000 documents. first: Draft:Cuchara and last: Emmanuel Garib +[2018-02-13T00:47:47.799] [INFO] cheese - inserting 1000 documents. first: Celianella montana and last: MiG Monument +[2018-02-13T00:47:47.805] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:47:47.815] [INFO] cheese - inserting 1000 documents. first: Michael O'Connor (footballer) and last: Joe Bonham +[2018-02-13T00:47:47.852] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:47:47.854] [INFO] cheese - inserting 1000 documents. first: Esfidan, Maneh and Samalqan and last: Howmeh Rural District (Shirvan County) +[2018-02-13T00:47:47.930] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T00:47:48.009] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:47:48.098] [INFO] cheese - inserting 1000 documents. first: XSL stylesheet and last: List of asteroids (31001-32000) +[2018-02-13T00:47:48.164] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:47:48.337] [INFO] cheese - inserting 1000 documents. first: Winston Chapman and last: Nelle Hayes +[2018-02-13T00:47:48.372] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Book:Hindu Proud and last: Power Core Combiners +[2018-02-13T00:47:48.373] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T00:47:48.436] [INFO] cheese - inserting 1000 documents. first: Portal:Mexico/Selected picture/41 and last: Ethiralikal +[2018-02-13T00:47:48.451] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:47:48.464] [INFO] cheese - inserting 1000 documents. first: List of college football rivalries and last: Category:New Zealand Māori broadcasters +[2018-02-13T00:47:48.487] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:47:48.534] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:47:48.578] [INFO] cheese - inserting 1000 documents. first: The Circle (file system) and last: Kb (disambiguation) +[2018-02-13T00:47:48.635] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:47:48.686] [INFO] cheese - inserting 1000 documents. first: File:FeelTheSpirit.jpg and last: Cocodrilos Sports Park +[2018-02-13T00:47:48.741] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:47:48.839] [INFO] cheese - inserting 1000 documents. first: Draft:North American Board of Certified Energy Practitioners and last: Fred Gilman +[2018-02-13T00:47:48.872] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T00:47:48.908] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 3001–3500 and last: Category:Cenozoic geologic formations +[2018-02-13T00:47:48.910] [INFO] cheese - inserting 1000 documents. first: Jaruwat Cheawaram and last: Nissiopi +[2018-02-13T00:47:48.911] [INFO] cheese - inserting 1000 documents. first: Kentucky Route 171 and last: File:The Rosie Project.jpg +[2018-02-13T00:47:48.958] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T00:47:48.960] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:47:48.965] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:47:49.049] [INFO] cheese - inserting 1000 documents. first: Leopard of the Central Provinces and last: Association of Black Psychologists +[2018-02-13T00:47:49.093] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T00:47:49.145] [INFO] cheese - inserting 1000 documents. first: Marie McCormick and last: 28/4 +[2018-02-13T00:47:49.181] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T00:47:49.205] [INFO] cheese - inserting 1000 documents. first: Molecular marker (disambiguation) and last: Ryohei Yamamoto +[2018-02-13T00:47:49.354] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T00:47:49.519] [INFO] cheese - inserting 1000 documents. first: Category:1965 in Japanese television and last: Pharmaceutical products +[2018-02-13T00:47:49.652] [INFO] cheese - inserting 1000 documents. first: Mayor Bill Harrison and last: Vimochanasamaram (film) +[2018-02-13T00:47:49.654] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:47:49.670] [INFO] cheese - inserting 1000 documents. first: Kenodactylus and last: Kukeli, Iran +[2018-02-13T00:47:49.734] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T00:47:49.746] [INFO] cheese - inserting 1000 documents. first: Gruenspan and last: Al Mac's Diner-Restaurant +[2018-02-13T00:47:49.763] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T00:47:49.829] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:47:49.896] [INFO] cheese - inserting 1000 documents. first: 29/4 and last: Wenig +[2018-02-13T00:47:49.936] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:47:50.081] [INFO] cheese - inserting 1000 documents. first: Off-Leash Area and last: Rufous Night-heron +[2018-02-13T00:47:50.166] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T00:47:50.166] [INFO] cheese - inserting 1000 documents. first: Patricia Darcy Jones and last: Category:Articles lacking sources from April 2010 +[2018-02-13T00:47:50.196] [INFO] cheese - inserting 1000 documents. first: Category:1970 in Dutch television and last: Anjali (1977 film) +[2018-02-13T00:47:50.257] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T00:47:50.279] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:47:50.294] [INFO] cheese - inserting 1000 documents. first: Warranting Theory and last: Monastery of Santa María (Cañas) +[2018-02-13T00:47:50.364] [INFO] cheese - inserting 1000 documents. first: Toné and last: Gmina Swieciechowa +[2018-02-13T00:47:50.376] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:47:50.427] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:47:50.631] [INFO] cheese - inserting 1000 documents. first: John Toepp and last: Pashkov, Alexander +[2018-02-13T00:47:50.743] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T00:47:50.811] [INFO] cheese - inserting 1000 documents. first: Javan Pond-heron and last: Bob Lambert (cricketer) +[2018-02-13T00:47:50.875] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T00:47:50.964] [INFO] cheese - inserting 1000 documents. first: Template:Anime-music-stub and last: TMK OAO +[2018-02-13T00:47:50.984] [INFO] cheese - inserting 1000 documents. first: Betty Hill (disambiguation) and last: Professor Em. Dr. Wim A. G. Blonk +[2018-02-13T00:47:50.990] [INFO] cheese - inserting 1000 documents. first: Signeta flammeata and last: John Vincent (lawyer) +[2018-02-13T00:47:51.019] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:47:51.079] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:47:51.164] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T00:47:51.354] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Plasticity Forum and last: Twenty-fourth United Kingdom general election +[2018-02-13T00:47:51.431] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:47:51.568] [INFO] cheese - inserting 1000 documents. first: File:Anglo Chinese College.jpg and last: File:ACDC Itsalongway.ogg +[2018-02-13T00:47:51.609] [INFO] cheese - inserting 1000 documents. first: File:Filmworks 1986-1990 Nonesuch.jpg and last: File:Shabazz-pohc.jpg +[2018-02-13T00:47:51.629] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T00:47:51.654] [INFO] cheese - batch complete in: 1.227 secs +[2018-02-13T00:47:51.693] [INFO] cheese - inserting 1000 documents. first: Discoceps fasciatus and last: Template:1960s-thriller-film-stub +[2018-02-13T00:47:51.736] [INFO] cheese - inserting 1000 documents. first: Lotherton cum Aberford and last: Category:Albums produced by Rico Love +[2018-02-13T00:47:51.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/Napoleon and Tabitha D'umo/1 and last: Aforia indomaris +[2018-02-13T00:47:51.751] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T00:47:51.803] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T00:47:51.882] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:47:52.031] [INFO] cheese - inserting 1000 documents. first: Twenty-fifth United Kingdom general election and last: Nélson António Soares da Gama +[2018-02-13T00:47:52.042] [INFO] cheese - inserting 1000 documents. first: Lorenzo Ma'afu and last: Stix +[2018-02-13T00:47:52.118] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T00:47:52.148] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:47:52.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samix and last: The Ritz (play) +[2018-02-13T00:47:52.366] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T00:47:52.430] [INFO] cheese - inserting 1000 documents. first: Italians in Montreal and last: Phloeus +[2018-02-13T00:47:52.542] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T00:47:52.658] [INFO] cheese - inserting 1000 documents. first: Category:Horse breeds originating in Hungary and last: Aziz Sydykov +[2018-02-13T00:47:52.693] [INFO] cheese - inserting 1000 documents. first: Brian Bement and last: Shaler, Alexander +[2018-02-13T00:47:52.765] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:47:52.767] [INFO] cheese - inserting 1000 documents. first: Aforia inoperculata and last: File:Map complex1.jpg +[2018-02-13T00:47:52.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Untitled Ashley Tisdale album and last: Jordanus catalani de Severac +[2018-02-13T00:47:52.778] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T00:47:52.850] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T00:47:52.851] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T00:47:53.052] [INFO] cheese - inserting 1000 documents. first: Cennino (d'Andrea) Cennini and last: Communes of the Cantal département +[2018-02-13T00:47:53.086] [INFO] cheese - inserting 1000 documents. first: Bruno Vides and last: Mitsubishi Navy Type 1 Attack Bomber Model 22 +[2018-02-13T00:47:53.125] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T00:47:53.138] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:47:53.285] [INFO] cheese - inserting 1000 documents. first: Shand, Alexander and last: Win.Trojan.DNSChanger +[2018-02-13T00:47:53.332] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:47:53.352] [INFO] cheese - inserting 1000 documents. first: My Family (TVB) and last: January 2005 Iraqi elections +[2018-02-13T00:47:53.367] [INFO] cheese - inserting 1000 documents. first: Rowy, Pomeranian Voivodeship and last: Simpson Strait +[2018-02-13T00:47:53.406] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T00:47:53.414] [INFO] cheese - inserting 1000 documents. first: Daryl Dixon (disambiguation) and last: Category:International lacrosse competitions hosted by Canada +[2018-02-13T00:47:53.429] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:47:53.509] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:47:53.556] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jesse Samek and last: High Plains Blizzards of December 2006 +[2018-02-13T00:47:53.606] [INFO] cheese - inserting 1000 documents. first: Mitsubishi Navy Type 1 Attack Bomber Model 22 Ko and last: Megachile electrum +[2018-02-13T00:47:53.657] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:47:53.710] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T00:47:53.944] [INFO] cheese - inserting 1000 documents. first: Syd Moore and last: File:Pronunciation of the name of the letter (u) in European languages.png +[2018-02-13T00:47:54.011] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T00:47:54.193] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/swissmail.org and last: Category:Pakistani documentary films +[2018-02-13T00:47:54.259] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T00:47:54.352] [INFO] cheese - inserting 1000 documents. first: Levon II the Magnificent and last: Twisted Tales (book series) +[2018-02-13T00:47:54.384] [INFO] cheese - inserting 1000 documents. first: Megachile elizabethae and last: W43BO +[2018-02-13T00:47:54.394] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Tag & Assess 2008/132 and last: Kinki Evangelical Lutheran Church +[2018-02-13T00:47:54.395] [INFO] cheese - inserting 1000 documents. first: Anaphora of Deir Balyzeh and last: File:Coldplay X&Y Latin tour editon.svg +[2018-02-13T00:47:54.425] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:47:54.426] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T00:47:54.440] [INFO] cheese - inserting 1000 documents. first: File:Anonymous Street Artist WRDSMTH in front of one of his works in DTLA.jpg and last: Uganda icterine bulbul +[2018-02-13T00:47:54.494] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:47:54.494] [INFO] cheese - batch complete in: 0.985 secs +[2018-02-13T00:47:54.504] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T00:47:54.667] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Template talk:Did you know and last: Stygge Krumpen +[2018-02-13T00:47:54.709] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:47:54.869] [INFO] cheese - inserting 1000 documents. first: W43BP and last: Odell Murray +[2018-02-13T00:47:54.909] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:47:54.929] [INFO] cheese - inserting 1000 documents. first: Erasmus D. Barlow and last: Template:S-line/MBTA left/Plymouth +[2018-02-13T00:47:54.938] [INFO] cheese - inserting 1000 documents. first: Tejana and last: Pierre Vidal (disambiguation) +[2018-02-13T00:47:54.949] [INFO] cheese - inserting 1000 documents. first: Vasilevsky, Alexander and last: Apostolic Vicariate of Manado +[2018-02-13T00:47:54.961] [INFO] cheese - inserting 1000 documents. first: Bannang Sata (town) and last: Darkglass Mountain +[2018-02-13T00:47:54.969] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:47:54.982] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:47:54.985] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:47:55.026] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:47:55.090] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Selected works/29 and last: Colombian Grass Mouse +[2018-02-13T00:47:55.152] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:47:55.225] [INFO] cheese - inserting 1000 documents. first: Category:Brighton and Hove City Council and last: Synchronus flowering +[2018-02-13T00:47:55.260] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:47:55.282] [INFO] cheese - inserting 1000 documents. first: File:Stony Road.jpg and last: Kheredine Idessane +[2018-02-13T00:47:55.316] [INFO] cheese - inserting 1000 documents. first: Draft:Terry Duffy and last: Alnoor International School +[2018-02-13T00:47:55.331] [INFO] cheese - inserting 1000 documents. first: File:The Shadowcatchers book cover.jpg and last: Pic de Rochebrune +[2018-02-13T00:47:55.343] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:47:55.383] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:47:55.406] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:47:55.476] [INFO] cheese - inserting 1000 documents. first: Follow You Down and last: Category:Films directed by René Clair +[2018-02-13T00:47:55.539] [INFO] cheese - inserting 1000 documents. first: Cordillera Occidental Akodont and last: Neelysia nemoricola +[2018-02-13T00:47:55.539] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:47:55.616] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:47:55.763] [INFO] cheese - inserting 1000 documents. first: Category:Baroque architecture in Veneto and last: Nyota Uhura +[2018-02-13T00:47:55.827] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T00:47:55.869] [INFO] cheese - inserting 1000 documents. first: Quirpa de Tres Mujeres and last: Template:Taxonomy/Xiphydrioidea +[2018-02-13T00:47:55.936] [INFO] cheese - inserting 1000 documents. first: De la Hoya versus Mayweather and last: Category:Wars involving Estonia +[2018-02-13T00:47:56.096] [INFO] cheese - inserting 1000 documents. first: Category:Destroyed spacecraft and last: Dollard-des-Ormeaux–Roxboro +[2018-02-13T00:47:56.052] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T00:47:56.181] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T00:47:56.189] [INFO] cheese - inserting 1000 documents. first: Landscapes in the Mist and last: L. terrestris +[2018-02-13T00:47:56.272] [INFO] cheese - inserting 1000 documents. first: Psalm 11 and last: Portal:Mauritius/Selected panorama/6 +[2018-02-13T00:47:56.293] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T00:47:56.297] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T00:47:56.347] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T00:47:56.486] [INFO] cheese - inserting 1000 documents. first: Template:Temporal illusions and last: Megachile montezuma +[2018-02-13T00:47:56.518] [INFO] cheese - inserting 1000 documents. first: Sexpionage and last: Category:1896–97 collegiate men's basketball independents season in the United States +[2018-02-13T00:47:56.544] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:47:56.589] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:47:56.703] [INFO] cheese - inserting 1000 documents. first: Les Enfants du siècle and last: File:The Stones of Nomuru.jpg +[2018-02-13T00:47:56.749] [INFO] cheese - inserting 1000 documents. first: Tecnu and last: Everybody Out! (album) +[2018-02-13T00:47:56.759] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:47:56.808] [INFO] cheese - inserting 1000 documents. first: T .N. Manoharan and last: Category:Russian people of Romanian descent +[2018-02-13T00:47:56.822] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T00:47:56.929] [INFO] cheese - inserting 1000 documents. first: Geyuk, Iran and last: Chloë Moretz +[2018-02-13T00:47:56.930] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:47:56.975] [INFO] cheese - inserting 1000 documents. first: Mendel University Brno and last: Wikipedia:WikiProject Spam/Local/128casinos.com +[2018-02-13T00:47:57.000] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T00:47:57.058] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:47:57.146] [INFO] cheese - inserting 1000 documents. first: Megachile montibia and last: St. John Climacus's Orthodox Church, Warsaw +[2018-02-13T00:47:57.224] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:47:57.262] [INFO] cheese - inserting 1000 documents. first: Still Waiting (disambiguation) and last: Karnail Singh Stadium +[2018-02-13T00:47:57.293] [INFO] cheese - inserting 1000 documents. first: The Emperor's Pearl and last: File:SoledadMiria.jpg +[2018-02-13T00:47:57.337] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:47:57.360] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:47:57.432] [INFO] cheese - inserting 1000 documents. first: Draft:Mácsár Gábor and last: Category:Railway accidents in West Bengal +[2018-02-13T00:47:57.471] [INFO] cheese - inserting 1000 documents. first: Category:People from Beşiktaş and last: Shamanism in Eskimo culture +[2018-02-13T00:47:57.470] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:47:57.478] [INFO] cheese - inserting 1000 documents. first: Template:Dutch governors of Ceylon and last: China SCE Property Holdings Limited +[2018-02-13T00:47:57.513] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:47:57.542] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:47:57.557] [INFO] cheese - inserting 1000 documents. first: Category:College football articles needing expert attention and last: Jean Coleman +[2018-02-13T00:47:57.600] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:47:57.667] [INFO] cheese - inserting 1000 documents. first: Category:Aviation in Chad and last: 15th Infantry Regiment (South Korea) +[2018-02-13T00:47:57.708] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:47:57.797] [INFO] cheese - inserting 1000 documents. first: Israel-uae relations and last: Phenom X6 +[2018-02-13T00:47:57.803] [INFO] cheese - inserting 1000 documents. first: Glory to the Heroes and last: Drewes' worm snake +[2018-02-13T00:47:57.810] [INFO] cheese - inserting 1000 documents. first: Gerardo Rubén Morales and last: Jože Brejc +[2018-02-13T00:47:57.827] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:47:57.847] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:47:57.865] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:47:57.906] [INFO] cheese - inserting 1000 documents. first: Template:PBB/23240 and last: Trideceth +[2018-02-13T00:47:57.947] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:47:58.030] [INFO] cheese - inserting 1000 documents. first: Navajo flag and last: José Anastasio Torrens +[2018-02-13T00:47:58.075] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:47:58.083] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 2006/York South—Weston and last: Emanuel Wynne +[2018-02-13T00:47:58.086] [INFO] cheese - inserting 1000 documents. first: Marcelo De Alvear and last: Peltiphyllum +[2018-02-13T00:47:58.122] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:47:58.161] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:47:58.181] [INFO] cheese - inserting 1000 documents. first: Teodor Kufel and last: Terence Robbins +[2018-02-13T00:47:58.222] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:47:58.316] [INFO] cheese - inserting 1000 documents. first: Henry Crosby Emery and last: Heinz (surname) +[2018-02-13T00:47:58.334] [INFO] cheese - inserting 1000 documents. first: Sudan blind snake and last: 2017–18 Vitesse season +[2018-02-13T00:47:58.425] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:47:58.443] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:47:58.522] [INFO] cheese - inserting 1000 documents. first: William Haslam and last: Template:Birmingham Thunderbolts roster +[2018-02-13T00:47:58.614] [INFO] cheese - inserting 1000 documents. first: You Ain't Got Nuthin' and last: WALL • E +[2018-02-13T00:47:58.656] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T00:47:58.715] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:47:58.826] [INFO] cheese - inserting 1000 documents. first: Otto Danieli and last: File:SWALEC Cup.gif +[2018-02-13T00:47:58.842] [INFO] cheese - inserting 1000 documents. first: Perfect (Courage the Cowardly Dog) and last: Like a Boy +[2018-02-13T00:47:58.896] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:47:58.921] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T00:47:59.016] [INFO] cheese - inserting 1000 documents. first: Denly and last: File:Hazyville cover.jpg +[2018-02-13T00:47:59.053] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:47:59.082] [INFO] cheese - inserting 1000 documents. first: Franco Faría and last: George Sorensen +[2018-02-13T00:47:59.099] [INFO] cheese - inserting 1000 documents. first: File:The Bachelor's Daughters poster.jpg and last: James Roger Otteson +[2018-02-13T00:47:59.140] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T00:47:59.153] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T00:47:59.228] [INFO] cheese - inserting 1000 documents. first: Hourou Musuko and last: Captaincy general +[2018-02-13T00:47:59.298] [INFO] cheese - inserting 1000 documents. first: P. teres and last: File:Mayimague.jpg +[2018-02-13T00:47:59.303] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:47:59.382] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T00:47:59.409] [INFO] cheese - inserting 1000 documents. first: North American Society for Oceanic History and last: PlayTone Records +[2018-02-13T00:47:59.460] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:47:59.526] [INFO] cheese - inserting 1000 documents. first: Sil-gochu and last: Wikipedia:Articles for deletion/Lorca Cohen +[2018-02-13T00:47:59.560] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T00:47:59.583] [INFO] cheese - inserting 1000 documents. first: German cities and last: Potęgowo Commune +[2018-02-13T00:47:59.610] [INFO] cheese - inserting 1000 documents. first: Category:Salvadoran guerrillas and last: Keith Davies +[2018-02-13T00:47:59.623] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:47:59.627] [INFO] cheese - inserting 1000 documents. first: Category:Elsewhere (band) albums and last: Template:BledsoeCountyTN-geo-stub +[2018-02-13T00:47:59.677] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:47:59.680] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:47:59.833] [INFO] cheese - inserting 1000 documents. first: Asociación Paraguaya de Futbol and last: Miscanthus floridulus +[2018-02-13T00:47:59.892] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:47:59.922] [INFO] cheese - inserting 1000 documents. first: Cwmderi and last: Portal:Business and economics/Did you know/January 2007 +[2018-02-13T00:47:59.972] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:47:59.985] [INFO] cheese - inserting 1000 documents. first: Potegowo Commune and last: Abdelhamid Bouchouk +[2018-02-13T00:48:00.053] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:48:00.089] [INFO] cheese - inserting 1000 documents. first: Latching End Effector and last: HMS Jalouse (1797) +[2018-02-13T00:48:00.168] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:48:00.277] [INFO] cheese - inserting 1000 documents. first: Five-needle telegraph and last: Joseph Aloysius Sheehy +[2018-02-13T00:48:00.287] [INFO] cheese - inserting 1000 documents. first: File:Maximum (film) poster.jpg and last: Graphium polistratus +[2018-02-13T00:48:00.326] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:48:00.406] [INFO] cheese - inserting 1000 documents. first: Trivial Pursuit Turbo and last: Tomellana hupferi +[2018-02-13T00:48:00.410] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:48:00.472] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:48:00.509] [INFO] cheese - inserting 1000 documents. first: Foster rhode island and last: High Bridge Township, New Jersey +[2018-02-13T00:48:00.520] [INFO] cheese - inserting 1000 documents. first: Mary brown bullock and last: File:Clint Black, Greatest Hits.jpg +[2018-02-13T00:48:00.566] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:48:00.587] [INFO] cheese - inserting 1000 documents. first: Khirbat el Mansura and last: Sardar Muhammad Yaqoob Khan +[2018-02-13T00:48:00.615] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:48:00.661] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:48:00.756] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:List of banned users/Banned by the Arbitration Committee and last: Category:John Mann (musician) albums +[2018-02-13T00:48:00.806] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:48:00.854] [INFO] cheese - inserting 1000 documents. first: Park Jung-Hye and last: Baltinglass Rebellion +[2018-02-13T00:48:00.911] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:48:00.942] [INFO] cheese - inserting 1000 documents. first: Tomellana leschkei and last: Fox Kids Play +[2018-02-13T00:48:01.008] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T00:48:01.050] [INFO] cheese - inserting 1000 documents. first: Red Randall Series and last: Chris Christenson +[2018-02-13T00:48:01.070] [INFO] cheese - inserting 1000 documents. first: 1960 NCAA College Division football rankings and last: Keri Maletto +[2018-02-13T00:48:01.098] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:48:01.130] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:48:01.180] [INFO] cheese - inserting 1000 documents. first: John Welwood and last: Wikipedia:WikiProject Military history/Peer review/USS Texas (BB-35) +[2018-02-13T00:48:01.217] [INFO] cheese - inserting 1000 documents. first: Category:Mann (rapper) albums and last: Category:1945–46 in American ice hockey by team +[2018-02-13T00:48:01.234] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:48:01.254] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T00:48:01.354] [INFO] cheese - inserting 1000 documents. first: Category:Dakota Wesleyan Tigers baseball coaches and last: Speed2 +[2018-02-13T00:48:01.382] [INFO] cheese - inserting 1000 documents. first: The Story of Martha and last: Sam Huihahau +[2018-02-13T00:48:01.401] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:48:01.426] [INFO] cheese - inserting 1000 documents. first: Chimo (greeting) and last: Detroit Titans football +[2018-02-13T00:48:01.427] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:48:01.474] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T00:48:01.535] [INFO] cheese - inserting 1000 documents. first: Operation GIRAFFE 3 and last: Mario Balbuena González +[2018-02-13T00:48:01.587] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:48:01.648] [INFO] cheese - inserting 1000 documents. first: Check Post and last: Category:Albums by Tunisian artists by genre +[2018-02-13T00:48:01.678] [INFO] cheese - inserting 1000 documents. first: Diving at the 1956 Summer Olympics – Women's 3 metre springboard and last: Exposure with response prevention +[2018-02-13T00:48:01.683] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:48:01.740] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:48:01.797] [INFO] cheese - inserting 1000 documents. first: Hyposmocoma domicolens and last: Isaac Smith (sailor) +[2018-02-13T00:48:01.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Wooster Scot Center and last: Category:Professional certification in engineering +[2018-02-13T00:48:01.835] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:48:01.854] [INFO] cheese - inserting 1000 documents. first: Rosztoczy Andras and last: Oxylamia basilewskyi +[2018-02-13T00:48:01.878] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwean cricket tours of Pakistan and last: The real eeepc +[2018-02-13T00:48:01.885] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:48:01.897] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:48:01.918] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:48:02.173] [INFO] cheese - inserting 1000 documents. first: Category:Rock albums by Tunisian artists and last: File:Kerala State Cashew Corporation Logo.jpg +[2018-02-13T00:48:02.282] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:48:02.317] [INFO] cheese - inserting 1000 documents. first: Not Like Us and last: Wikipedia:WikiProject Spam/Local/indieex.com +[2018-02-13T00:48:02.406] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:48:02.429] [INFO] cheese - inserting 1000 documents. first: Cochrane Database Syst. Rev. and last: Raphitoma purpurea +[2018-02-13T00:48:02.431] [INFO] cheese - inserting 1000 documents. first: Mesa Redonda International and last: Model-driven testing +[2018-02-13T00:48:02.496] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T00:48:02.535] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T00:48:02.553] [INFO] cheese - inserting 1000 documents. first: The Tyne Songster by W & T Fordyce - 1840 and last: Portal:Hisar/box-header +[2018-02-13T00:48:02.566] [INFO] cheese - inserting 1000 documents. first: Category:1983 in Greece and last: Holger Bertrand Flöttmann +[2018-02-13T00:48:02.615] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T00:48:02.648] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T00:48:03.102] [INFO] cheese - inserting 1000 documents. first: Bill Ralston (footballer) and last: Draft:Johannes de Cuba +[2018-02-13T00:48:03.118] [INFO] cheese - inserting 1000 documents. first: Cassiopeia (wife of Phoenix) and last: Executive Order 13797 +[2018-02-13T00:48:03.201] [INFO] cheese - inserting 1000 documents. first: Franconian International School and last: Coppa Italia 2000–01 +[2018-02-13T00:48:03.234] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T00:48:03.309] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T00:48:03.407] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T00:48:03.448] [INFO] cheese - inserting 1000 documents. first: Aberdovey Harbour railway station and last: Template:Fb team Sturm Graz +[2018-02-13T00:48:03.449] [INFO] cheese - inserting 1000 documents. first: Governor's Troop and last: Presidente Médici, Rondônia +[2018-02-13T00:48:03.530] [INFO] cheese - inserting 1000 documents. first: Portal:Hisar/box-footer and last: Metetherial world +[2018-02-13T00:48:03.586] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T00:48:03.599] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T00:48:03.663] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T00:48:04.067] [INFO] cheese - inserting 1000 documents. first: Category:Battles involving Chechnya and last: Executive Order 11111 +[2018-02-13T00:48:04.118] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1936 Summer Olympics – Men's 100 metres and last: Serbian League West 2007-08 +[2018-02-13T00:48:04.165] [INFO] cheese - inserting 1000 documents. first: Charlie Nicklas and last: Wikipedia:Articles for deletion/Andy Carnegie +[2018-02-13T00:48:04.172] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T00:48:04.209] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T00:48:04.226] [INFO] cheese - inserting 1000 documents. first: Phillips Middle School and last: Colls v. Home & Colonial Stores Ltd +[2018-02-13T00:48:04.231] [INFO] cheese - inserting 1000 documents. first: André Bollier and last: Kim Seong-Yong +[2018-02-13T00:48:04.300] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T00:48:04.335] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:48:04.341] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:48:04.378] [INFO] cheese - inserting 1000 documents. first: Salome (cartoon pig) and last: Wikipedia:Esperanza/Calendar/February/29 +[2018-02-13T00:48:04.445] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T00:48:04.702] [INFO] cheese - inserting 1000 documents. first: Bat wing development and last: Bauntovskiy Evenkiyskiy Raion +[2018-02-13T00:48:04.764] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:48:04.812] [INFO] cheese - inserting 1000 documents. first: Luigi Annoni and last: Denise Frigo +[2018-02-13T00:48:04.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/San Francisco and last: List of Syrian Air Force bases +[2018-02-13T00:48:04.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Darren Carnegie and last: Category:Paleontological protected areas in the United States +[2018-02-13T00:48:04.866] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T00:48:04.890] [INFO] cheese - inserting 1000 documents. first: Holtzhey and last: Category:Academies by country +[2018-02-13T00:48:04.888] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T00:48:04.893] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:48:04.970] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:48:04.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Esperanza/Calendar/February/26 and last: Cityscape of Ashland, Kentucky +[2018-02-13T00:48:05.048] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:48:05.272] [INFO] cheese - inserting 1000 documents. first: MDXLIV and last: Paris Peasant +[2018-02-13T00:48:05.305] [INFO] cheese - inserting 1000 documents. first: Bauntovskiy Evenkiyski Raion and last: Pine Hill (disambiguation) +[2018-02-13T00:48:05.326] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:48:05.360] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Pah Wongso and last: Deputy Secretary of the Department of Energy +[2018-02-13T00:48:05.381] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:48:05.463] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T00:48:05.515] [INFO] cheese - inserting 1000 documents. first: Diving at the 1960 Summer Olympics – Men's 10 metre platform and last: Oh rly? +[2018-02-13T00:48:05.533] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Zadanya garcia and last: Niceville High +[2018-02-13T00:48:05.549] [INFO] cheese - inserting 1000 documents. first: Dian hong tea and last: Triphoturus +[2018-02-13T00:48:05.574] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T00:48:05.624] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:48:05.660] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T00:48:05.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Jazz/Categories and last: Fairbanks Museum +[2018-02-13T00:48:05.956] [INFO] cheese - inserting 1000 documents. first: Boone County Airlines and last: Rino Benedettii +[2018-02-13T00:48:06.014] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:48:06.039] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:48:06.090] [INFO] cheese - inserting 1000 documents. first: Coronation Street: Episode 1 and last: Nacra Infusion +[2018-02-13T00:48:06.128] [INFO] cheese - inserting 1000 documents. first: Draft:Cocteaufest and last: Template:Internationalize +[2018-02-13T00:48:06.160] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T00:48:06.210] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T00:48:06.263] [INFO] cheese - inserting 1000 documents. first: Heather Kessler and last: Lamine Diack +[2018-02-13T00:48:06.301] [INFO] cheese - inserting 1000 documents. first: Louisa So and last: Ali Tajvidi +[2018-02-13T00:48:06.309] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T00:48:06.382] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T00:48:06.545] [INFO] cheese - inserting 1000 documents. first: Barbus pobeguini and last: Brazelton, William +[2018-02-13T00:48:06.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Emilydickinsonmason7534 and last: MV Toko Maru +[2018-02-13T00:48:06.589] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:48:06.661] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T00:48:06.689] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Jack Lawrence (musician) and last: Megachile peculifera +[2018-02-13T00:48:06.694] [INFO] cheese - inserting 1000 documents. first: 2012 Kurume Best Amenity International Women's Tennis – Doubles and last: Portal:Scotland/Selected article/Week 23, 2012 +[2018-02-13T00:48:06.739] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:48:06.761] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T00:48:06.797] [INFO] cheese - inserting 1000 documents. first: Category:Characters in mystery novel series by century and last: Poornathrayeesa Temple +[2018-02-13T00:48:06.859] [INFO] cheese - inserting 1000 documents. first: James Findlay (congressman) and last: Wikipedia:Esperanza/Calendar/January/29 +[2018-02-13T00:48:06.860] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:48:06.945] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T00:48:06.990] [INFO] cheese - inserting 1000 documents. first: Brazier, William and last: Vladimir Ivanovich Stepanov +[2018-02-13T00:48:07.033] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:48:07.062] [INFO] cheese - inserting 1000 documents. first: Toko Maru and last: Bolsheuluysky District +[2018-02-13T00:48:07.118] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:48:07.321] [INFO] cheese - inserting 1000 documents. first: John Oglander and last: Template:Youvegotmail +[2018-02-13T00:48:07.381] [INFO] cheese - inserting 1000 documents. first: 2008–09 Nemzeti Bajnokság I and last: Category:Characters in British novels of the 21st century +[2018-02-13T00:48:07.386] [INFO] cheese - inserting 1000 documents. first: Category:2015 in sambo and last: Marcos Salas Contreras +[2018-02-13T00:48:07.407] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:48:07.465] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T00:48:07.465] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T00:48:07.513] [INFO] cheese - inserting 1000 documents. first: Draft:Iván Morales Bravo and last: Matthew Boulton (epidemiologist) +[2018-02-13T00:48:07.540] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Esperanza/Calendar/January/31 and last: Comtessa de Dia +[2018-02-13T00:48:07.553] [INFO] cheese - inserting 1000 documents. first: Catocala ixion and last: Ameen Rihani bibliography +[2018-02-13T00:48:07.570] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T00:48:07.581] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:48:07.629] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T00:48:07.970] [INFO] cheese - inserting 1000 documents. first: North Schleswig and last: Media Agua +[2018-02-13T00:48:07.998] [INFO] cheese - inserting 1000 documents. first: Category:Jordin Sparks and last: Boom (album) +[2018-02-13T00:48:08.005] [INFO] cheese - inserting 1000 documents. first: Category:Corruption in Slovenia and last: Wikipedia:Miscellany for deletion/User:Hartsellml +[2018-02-13T00:48:08.015] [INFO] cheese - inserting 1000 documents. first: USS Tensaw (YT-418) and last: Carnforth station +[2018-02-13T00:48:08.014] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:48:08.022] [INFO] cheese - inserting 1000 documents. first: Libby Mettam and last: Megachile pusilla +[2018-02-13T00:48:08.042] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:48:08.059] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:48:08.059] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T00:48:08.082] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:48:08.215] [INFO] cheese - inserting 1000 documents. first: Neumont University and last: What's That Shadow? +[2018-02-13T00:48:08.264] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T00:48:08.312] [INFO] cheese - inserting 1000 documents. first: Great Falls Expo Park and last: Masini Situ Kumbanga +[2018-02-13T00:48:08.347] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:48:08.356] [INFO] cheese - inserting 1000 documents. first: Euterebra fernandesi and last: Keep It Movin' (album) +[2018-02-13T00:48:08.386] [INFO] cheese - inserting 1000 documents. first: Coat of arms of Zürich and last: Mid Northamptonshire by-election, 1892 +[2018-02-13T00:48:08.396] [INFO] cheese - inserting 1000 documents. first: 154th Tactical Reconnaissance Squadron and last: Return of the Crimson Guard +[2018-02-13T00:48:08.399] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:48:08.432] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:48:08.469] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:48:08.480] [INFO] cheese - inserting 1000 documents. first: John. Gibson (songwriter) and last: Kareem Valentine +[2018-02-13T00:48:08.517] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:48:08.624] [INFO] cheese - inserting 1000 documents. first: Martin Stern and last: J. B. Gunn +[2018-02-13T00:48:08.691] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T00:48:08.716] [INFO] cheese - inserting 1000 documents. first: Lake Mâțelor and last: Template:Dominican Summer League Diamondbacks 2 roster +[2018-02-13T00:48:08.737] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/auburnfansite.com and last: The Great Heroes +[2018-02-13T00:48:08.781] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T00:48:08.803] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:48:08.824] [INFO] cheese - inserting 1000 documents. first: Kennedy Farm and last: Łazy Commune +[2018-02-13T00:48:08.854] [INFO] cheese - inserting 1000 documents. first: Akiodoris and last: American Experience (season 6) +[2018-02-13T00:48:08.902] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:48:08.953] [INFO] cheese - inserting 1000 documents. first: Category:Lists of National Football League retired numbers and last: File:Tunnel War Cover Picture.jpg +[2018-02-13T00:48:08.981] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T00:48:09.114] [INFO] cheese - inserting 1000 documents. first: Gmina Lazy and last: Siemiatkowo Commune +[2018-02-13T00:48:09.150] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:48:09.158] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T00:48:09.316] [INFO] cheese - inserting 1000 documents. first: Choraut and last: File:Maria the Maid.jpg +[2018-02-13T00:48:09.364] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:48:09.389] [INFO] cheese - inserting 1000 documents. first: File:Magnets (The Vapors album) coverart.jpg and last: The Oriely Factor +[2018-02-13T00:48:09.406] [INFO] cheese - inserting 1000 documents. first: Category:Sports competitions in Cyprus and last: Navy-Wright XF3W-1 Apache +[2018-02-13T00:48:09.447] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:48:09.494] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T00:48:09.598] [INFO] cheese - inserting 1000 documents. first: Category:Industry by city and last: Peaky Blinders (series 2) +[2018-02-13T00:48:09.629] [INFO] cheese - inserting 1000 documents. first: Siennica Commune and last: Arno Suislep +[2018-02-13T00:48:09.663] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T00:48:09.689] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T00:48:09.804] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Part One of the Constitution of India and last: Template:Footer CAC Champions 100m Freestyle Men +[2018-02-13T00:48:09.850] [INFO] cheese - inserting 1000 documents. first: Fetislam and last: Taeniotes albiplagiatus +[2018-02-13T00:48:09.876] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T00:48:09.908] [INFO] cheese - inserting 1000 documents. first: Category:Converts to Judaism from Anglicanism and last: List of United States Navy ships: N-O +[2018-02-13T00:48:09.916] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:48:09.943] [INFO] cheese - inserting 1000 documents. first: List of U.S. military vessels named after Presidents and last: File:Open water.JPG +[2018-02-13T00:48:09.987] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:48:10.033] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:48:10.098] [INFO] cheese - inserting 1000 documents. first: Category:1927–28 in Canadian ice hockey by team and last: Bas-Sassandra District +[2018-02-13T00:48:10.164] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:48:10.282] [INFO] cheese - inserting 1000 documents. first: Lasse Svan Hansen and last: HR 63 +[2018-02-13T00:48:10.348] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T00:48:10.415] [INFO] cheese - inserting 1000 documents. first: Maple-leafed plane and last: Draft:Max Eliscu (businessman) +[2018-02-13T00:48:10.421] [INFO] cheese - inserting 1000 documents. first: Juodis and last: Open Source Routing Machine +[2018-02-13T00:48:10.468] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T00:48:10.493] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T00:48:10.556] [INFO] cheese - inserting 1000 documents. first: Category:UN and last: Kate Major +[2018-02-13T00:48:10.659] [INFO] cheese - inserting 1000 documents. first: Category:Airships of the United States and last: Bi-parental care +[2018-02-13T00:48:10.661] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:48:10.758] [INFO] cheese - inserting 1000 documents. first: Template:1983 Atlantic Coast Conference baseball standings and last: Smithbooks +[2018-02-13T00:48:10.773] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T00:48:10.846] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T00:48:10.927] [INFO] cheese - inserting 1000 documents. first: Henry De Saussure and last: Herb Wakabayashi +[2018-02-13T00:48:10.979] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:48:10.995] [INFO] cheese - inserting 1000 documents. first: Western goblin and last: Personal assets tax +[2018-02-13T00:48:11.042] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T00:48:11.088] [INFO] cheese - inserting 1000 documents. first: Neyg and last: Category:Latter Day Saint movement in South Carolina +[2018-02-13T00:48:11.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jeudebelote.org and last: Protexarnis balanitis +[2018-02-13T00:48:11.129] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T00:48:11.175] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T00:48:11.179] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Disco79 and last: 25th Division (Japan) +[2018-02-13T00:48:11.240] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T00:48:11.293] [INFO] cheese - inserting 1000 documents. first: Who I Am (Lena Katina song) and last: Wikipedia:Sockpuppet investigations/Mediaent123 +[2018-02-13T00:48:11.337] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T00:48:11.410] [INFO] cheese - inserting 1000 documents. first: Draft:Indiana Forest Alliance and last: Cuckold Formation +[2018-02-13T00:48:11.453] [INFO] cheese - inserting 1000 documents. first: London Silly Nannies and last: Porte de Hal +[2018-02-13T00:48:11.461] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T00:48:11.469] [INFO] cheese - inserting 1000 documents. first: File:Garuda-di-dadaku.jpg and last: Salmson 9Za +[2018-02-13T00:48:11.521] [INFO] cheese - inserting 1000 documents. first: Battle of al-Auja and last: Tom Van Meter +[2018-02-13T00:48:11.527] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:48:11.535] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:48:11.563] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:48:11.625] [INFO] cheese - inserting 1000 documents. first: Melkite Greek Catholic Eparchy of Saint Michael Archangel in Sydney and last: Castles in Scotland +[2018-02-13T00:48:11.665] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T00:48:11.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meade Kincke and last: State Route 729 (Culpeper County, Virginia) +[2018-02-13T00:48:11.746] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:48:11.774] [INFO] cheese - inserting 1000 documents. first: Weaves (band) and last: Wikipedia:Miscellany for deletion/User:CmdrDan/Subpage Usage Examples +[2018-02-13T00:48:11.809] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:48:11.889] [INFO] cheese - inserting 1000 documents. first: Éric Battista and last: CPC Loop +[2018-02-13T00:48:11.915] [INFO] cheese - inserting 1000 documents. first: Kalahandi Balangir Koraput Region and last: Welch bounds +[2018-02-13T00:48:11.944] [INFO] cheese - inserting 1000 documents. first: Sergei Leonov and last: Robert Roloson Houses +[2018-02-13T00:48:11.943] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:48:11.960] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:48:12.042] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:48:12.148] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:RocketMaster/My Gallery and last: Takuya Murata +[2018-02-13T00:48:12.190] [INFO] cheese - inserting 1000 documents. first: Blue Sky Bones and last: Carol S. Aneshensel +[2018-02-13T00:48:12.209] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:48:12.281] [INFO] cheese - inserting 1000 documents. first: Template:British Columbia provincial election, 2013/Vancouver-Kensington and last: Parazelota mima +[2018-02-13T00:48:12.299] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:48:12.331] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T00:48:12.506] [INFO] cheese - inserting 1000 documents. first: File:MadMazAus.jpg and last: Michael Flynn (disambiguation) +[2018-02-13T00:48:12.544] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T00:48:12.549] [INFO] cheese - inserting 1000 documents. first: Local cluster and last: Anagasta kuchinella +[2018-02-13T00:48:12.565] [INFO] cheese - inserting 1000 documents. first: Fahda bint Saud Al Saud and last: Cand. real. +[2018-02-13T00:48:12.602] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T00:48:12.682] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T00:48:12.918] [INFO] cheese - inserting 1000 documents. first: Toowoomba Permanent Building Society and last: United States Senate election in Virginia, 1871 +[2018-02-13T00:48:12.925] [INFO] cheese - inserting 1000 documents. first: Jin'an Open and last: Royal Bank of Canada Building, Havana +[2018-02-13T00:48:12.929] [INFO] cheese - inserting 1000 documents. first: Association of Zoos & Aquariums and last: Runcinia acuminata +[2018-02-13T00:48:12.996] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T00:48:13.007] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T00:48:13.037] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T00:48:13.236] [INFO] cheese - inserting 1000 documents. first: File:Res pantages grillworkers.jpg and last: Wikipedia:Articles for deletion/Log/2008 June 11 +[2018-02-13T00:48:13.362] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:48:13.430] [INFO] cheese - inserting 1000 documents. first: Yehuda Bacon and last: Arsaber +[2018-02-13T00:48:13.481] [INFO] cheese - inserting 1000 documents. first: Nonsensical song and last: William Bate Hardy Prize +[2018-02-13T00:48:13.537] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T00:48:13.576] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T00:48:13.630] [INFO] cheese - inserting 1000 documents. first: AMD RX Vega series and last: Ter-Mkrtychyan +[2018-02-13T00:48:13.687] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:48:13.693] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Virginia, 1877 and last: Wikipedia:Articles for deletion/Esmat Yahia +[2018-02-13T00:48:13.751] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:48:13.810] [INFO] cheese - inserting 1000 documents. first: File:Ciis main building.jpg and last: Narendra chanchal +[2018-02-13T00:48:13.949] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T00:48:14.141] [INFO] cheese - inserting 1000 documents. first: Cedar Lake Speedway and last: Bandini 750 sport internazionale +[2018-02-13T00:48:14.202] [INFO] cheese - inserting 1000 documents. first: Capillary haemangioma and last: Karratha Senior High School +[2018-02-13T00:48:14.207] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T00:48:14.260] [INFO] cheese - inserting 1000 documents. first: House of Odd and last: Broads National Park +[2018-02-13T00:48:14.288] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T00:48:14.360] [INFO] cheese - inserting 1000 documents. first: MOS:TITLECASE and last: Wikipedia:Featured list candidates/List of accolades received by Madras (film)/archive1 +[2018-02-13T00:48:14.350] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T00:48:14.426] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T00:48:14.439] [INFO] cheese - inserting 1000 documents. first: På vårt sätt (Scotts album) and last: Category:Concert tours of Canada +[2018-02-13T00:48:14.453] [INFO] cheese - inserting 1000 documents. first: Ayw and last: Tropic Sun Theatre +[2018-02-13T00:48:14.506] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T00:48:14.514] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T00:48:14.659] [INFO] cheese - inserting 1000 documents. first: Guy Butler (disambiguation) and last: 1999–2000 United States network television schedule (weekday) +[2018-02-13T00:48:14.739] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:48:14.841] [INFO] cheese - inserting 1000 documents. first: File:The Age of Kali.jpg and last: List of UK Rock & Metal Albums Chart number ones of 2005 +[2018-02-13T00:48:14.877] [INFO] cheese - inserting 1000 documents. first: Wojciech Seweryn and last: Sixtus IV Appointing Platina as Prefect of the Vatican Library +[2018-02-13T00:48:14.878] [INFO] cheese - inserting 1000 documents. first: Bernardino de Mendoza y Pacheco (Captain General) and last: Leiopus nebulosus +[2018-02-13T00:48:14.916] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T00:48:14.941] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:48:14.949] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T00:48:15.049] [INFO] cheese - inserting 1000 documents. first: Category:Central Michigan Chippewas football coaches and last: Perap +[2018-02-13T00:48:15.077] [INFO] cheese - inserting 1000 documents. first: Dongsha Marine National Park and last: Círculo de Escritores Cinematográficos +[2018-02-13T00:48:15.146] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:48:15.149] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T00:48:15.474] [INFO] cheese - inserting 1000 documents. first: Dundee United F.C. in the 1970s and last: Moara, Burkina Faso +[2018-02-13T00:48:15.527] [INFO] cheese - inserting 1000 documents. first: California Numb and last: Everhart, William +[2018-02-13T00:48:15.559] [INFO] cheese - inserting 1000 documents. first: Seyyedadan and last: File:GaryBarlow&TCB.jpg +[2018-02-13T00:48:15.560] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T00:48:15.611] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T00:48:15.664] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T00:48:15.801] [INFO] cheese - inserting 1000 documents. first: Trọng Nguyễn and last: Draft:Ford Transit Courier +[2018-02-13T00:48:15.808] [INFO] cheese - inserting 1000 documents. first: Violeta Urmanavičiūtė and last: NEAT 8 +[2018-02-13T00:48:15.811] [INFO] cheese - inserting 1000 documents. first: Bir Foda and last: K-1 MAX Final 16 +[2018-02-13T00:48:15.847] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:48:15.851] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T00:48:15.885] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T00:48:15.995] [INFO] cheese - inserting 1000 documents. first: Template:Namibia-rugbyunion-bio-stub and last: 1934 National Challenge Cup +[2018-02-13T00:48:16.038] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T00:48:16.087] [INFO] cheese - inserting 1000 documents. first: Everingham, William and last: Feetham, William +[2018-02-13T00:48:16.096] [INFO] cheese - inserting 1000 documents. first: Category:National Football League franchise relocations and last: Pixley Airport +[2018-02-13T00:48:16.132] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T00:48:16.143] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T00:48:16.185] [INFO] cheese - inserting 1000 documents. first: James Ford Bell Museum of Natural History and last: Cone of answers +[2018-02-13T00:48:16.218] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:48:16.302] [INFO] cheese - inserting 1000 documents. first: Adrien-Nicolas Piédefer, marquis de La Salle and last: Vera Gibson-Amado +[2018-02-13T00:48:16.304] [INFO] cheese - inserting 1000 documents. first: Progeria syndrome and last: File:Should Have Seen It Coming.jpg +[2018-02-13T00:48:16.340] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T00:48:16.342] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T00:48:16.399] [INFO] cheese - inserting 1000 documents. first: Uzbekistan women's national rugby union team and last: Kenneth Doraty +[2018-02-13T00:48:16.434] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:48:16.514] [INFO] cheese - inserting 1000 documents. first: Ono.es and last: Wikipedia:Articles for deletion/The Babies +[2018-02-13T00:48:16.586] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:48:16.592] [INFO] cheese - inserting 1000 documents. first: Eurycreon leucostictalis and last: Black Mirror episodes +[2018-02-13T00:48:16.638] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:48:16.727] [INFO] cheese - inserting 1000 documents. first: Fehlandt, William and last: File:RSSM State Prize.png +[2018-02-13T00:48:16.780] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T00:48:16.788] [INFO] cheese - inserting 1000 documents. first: Category:Anglican schools in India and last: Argiphila inquinatella +[2018-02-13T00:48:16.839] [INFO] cheese - inserting 1000 documents. first: Boyz N Da Hood (album) and last: Percy Girouard +[2018-02-13T00:48:16.894] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T00:48:16.920] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T00:48:17.053] [INFO] cheese - inserting 1000 documents. first: Riddim Driven: Engine and last: Wikipedia:Featured list candidates/List of Cincinnati Bengals head coaches +[2018-02-13T00:48:17.159] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T00:48:17.163] [INFO] cheese - inserting 1000 documents. first: Kalimullah Khan and last: Mordellistena flavospinosa +[2018-02-13T00:48:17.183] [INFO] cheese - inserting 1000 documents. first: Category:Classical albums by Japanese artists and last: Wikipedia:Reference desk/Archives/Language/2014 October 18 +[2018-02-13T00:48:17.226] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T00:48:17.265] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T00:48:17.385] [INFO] cheese - inserting 1000 documents. first: Pediasia inquinatalis and last: Burton Berry +[2018-02-13T00:48:17.398] [INFO] cheese - inserting 1000 documents. first: Somewhere (Soundgarden song) and last: Frontier Scout +[2018-02-13T00:48:17.442] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T00:48:17.513] [INFO] cheese - inserting 1000 documents. first: Día da Patria Galega and last: Template:Fb competition 2004 Second League of Serbia and Montenegro playoffs +[2018-02-13T00:48:17.525] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T00:48:17.579] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:48:17.644] [INFO] cheese - inserting 1000 documents. first: Drunk Horse and last: Impact, Mueang Thong Thani +[2018-02-13T00:48:17.763] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T00:48:17.907] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2014 October 18 and last: Wilfried Trott +[2018-02-13T00:48:17.910] [INFO] cheese - inserting 1000 documents. first: CP-39,332 and last: Ashlyne Huff +[2018-02-13T00:48:17.948] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:48:17.988] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T00:48:18.141] [INFO] cheese - inserting 1000 documents. first: Dyera and last: Torodo +[2018-02-13T00:48:18.191] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:48:18.209] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures completed in 1107 and last: Portal:Bible/Featured chapter/Proverbs 9 +[2018-02-13T00:48:18.264] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T00:48:18.278] [INFO] cheese - inserting 1000 documents. first: Trebbi and last: File:Limo driver.ogg +[2018-02-13T00:48:18.344] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T00:48:18.364] [INFO] cheese - inserting 1000 documents. first: 2009 Aberto Santa Catarina De Tenis and last: Highway 546 (Ontario) +[2018-02-13T00:48:18.389] [INFO] cheese - inserting 1000 documents. first: German Society for Hygiene and Microbiology and last: Category:Sexual violence +[2018-02-13T00:48:18.402] [INFO] cheese - inserting 1000 documents. first: File:Mahakaliyantra.jpg and last: Category:Michigan high school sports conferences +[2018-02-13T00:48:18.408] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:48:18.445] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:48:18.462] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T00:48:18.631] [INFO] cheese - inserting 1000 documents. first: CoEur - In the heart of European paths and last: File:Day-O (1992) Film Poster.jpg +[2018-02-13T00:48:18.666] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:48:18.669] [INFO] cheese - inserting 1000 documents. first: Ásgeir Hallgrimsson and last: 2008 HomeSense Skate Canada International +[2018-02-13T00:48:18.723] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T00:48:18.778] [INFO] cheese - inserting 1000 documents. first: Highway 547 (Ontario) and last: Miles M.27 +[2018-02-13T00:48:18.851] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T00:48:18.928] [INFO] cheese - inserting 1000 documents. first: Dalek War: Chapter Two and last: Phantom Limb (song) +[2018-02-13T00:48:18.938] [INFO] cheese - inserting 1000 documents. first: Category:Christian music albums by English artists and last: Louis Joseph Hill +[2018-02-13T00:48:18.993] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T00:48:18.997] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:48:19.019] [INFO] cheese - inserting 1000 documents. first: Siri (MacOS) and last: Category:Defunct sports competitions in Singapore +[2018-02-13T00:48:19.058] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T00:48:19.261] [INFO] cheese - inserting 1000 documents. first: 2008 Homesense Skate Canada International and last: Category:Vocational education in the Philippines +[2018-02-13T00:48:19.328] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T00:48:19.367] [INFO] cheese - inserting 1000 documents. first: Portal:Heraldry/DYK/1/26 and last: Hs-100 +[2018-02-13T00:48:19.461] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:48:19.578] [INFO] cheese - inserting 1000 documents. first: Category:Defunct sports competitions in South Africa and last: Category:Puttalam District society +[2018-02-13T00:48:19.666] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T00:48:19.728] [INFO] cheese - inserting 1000 documents. first: Justice Palace and last: Miss Utah +[2018-02-13T00:48:19.788] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T00:48:19.836] [INFO] cheese - inserting 1000 documents. first: Beach athletics at the 2014 Asian Beach Games and last: Uist & Barra Amateur Football Association +[2018-02-13T00:48:19.904] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese sociologists and last: Cillian Boyd +[2018-02-13T00:48:19.912] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T00:48:19.937] [INFO] cheese - inserting 1000 documents. first: Henrik Arnold Thaulow Wergeland and last: Ogi-ohashi Station +[2018-02-13T00:48:19.983] [INFO] cheese - inserting 1000 documents. first: Hs-200 and last: Category:Buildings and structures in the Republic of Ireland by city +[2018-02-13T00:48:20.006] [INFO] cheese - batch complete in: 1.742 secs +[2018-02-13T00:48:20.021] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T00:48:20.046] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T00:48:20.081] [INFO] cheese - inserting 1000 documents. first: Lü Zhong and last: Draft:Jeffrey Thomas +[2018-02-13T00:48:20.130] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T00:48:20.351] [INFO] cheese - inserting 1000 documents. first: Allen Mendler and last: 1099 Figneria +[2018-02-13T00:48:20.405] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T00:48:20.468] [INFO] cheese - inserting 1000 documents. first: MobileSafari and last: Gaongo +[2018-02-13T00:48:20.472] [INFO] cheese - inserting 1000 documents. first: Styles Brook and last: Diocese of Virginia +[2018-02-13T00:48:20.478] [INFO] cheese - inserting 1000 documents. first: Template:Henri Verneuil and last: Ivan Pecel +[2018-02-13T00:48:20.534] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T00:48:20.547] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:48:20.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Specifically Feminine-Feminist Narrative and last: Pyridinylpiperazine +[2018-02-13T00:48:20.589] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T00:48:20.667] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T00:48:20.810] [INFO] cheese - inserting 1000 documents. first: Royal consorts of Sweden and last: Siksashtaka +[2018-02-13T00:48:20.854] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T00:48:21.013] [INFO] cheese - inserting 1000 documents. first: West Hills Hospital and last: Meshullam (son of Besodeiah) +[2018-02-13T00:48:21.060] [INFO] cheese - inserting 1000 documents. first: Tony O'Gorman and last: Category:Mexican ophthalmologists +[2018-02-13T00:48:21.068] [INFO] cheese - inserting 1000 documents. first: Gero Camilo and last: Sata Lota Pan Sagla Khota +[2018-02-13T00:48:21.092] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:48:21.118] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:48:21.127] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T00:48:21.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pyaarkabandhan.com and last: File:Pussboots.jpg +[2018-02-13T00:48:21.243] [INFO] cheese - inserting 1000 documents. first: Philippine Basques and last: Tachornis phoenicobia +[2018-02-13T00:48:21.295] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:48:21.308] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T00:48:21.504] [INFO] cheese - inserting 1000 documents. first: Head of Government of Egypt and last: Navraj +[2018-02-13T00:48:21.547] [INFO] cheese - inserting 1000 documents. first: Giuseppe Benedetto Dusmet and last: John Tréllez +[2018-02-13T00:48:21.574] [INFO] cheese - inserting 1000 documents. first: Abigail Watson and last: Category:Renova Group +[2018-02-13T00:48:21.583] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:48:21.628] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:48:21.647] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T00:48:21.913] [INFO] cheese - inserting 1000 documents. first: Krasnogorsky District, Altai Krai and last: Category:Villages in Rudraprayag district +[2018-02-13T00:48:21.919] [INFO] cheese - inserting 1000 documents. first: Template:John Singleton and last: Carlos Averhoff "Sax" +[2018-02-13T00:48:21.981] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T00:48:21.985] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:48:22.193] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Myscelia and last: University of California Extension +[2018-02-13T00:48:22.228] [INFO] cheese - inserting 1000 documents. first: Padaleeputhram and last: Category:AfC submissions by date/06 November 2014 +[2018-02-13T00:48:22.254] [INFO] cheese - inserting 1000 documents. first: List of listed buildings in Kingoldrum, Angus and last: Lithium-ion battery recalls +[2018-02-13T00:48:22.276] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T00:48:22.283] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T00:48:22.395] [INFO] cheese - batch complete in: 2.389 secs +[2018-02-13T00:48:22.418] [INFO] cheese - inserting 1000 documents. first: The Israel Project and last: Wikipedia:Articles for deletion/Out Here Grindin' +[2018-02-13T00:48:22.488] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T00:48:22.494] [INFO] cheese - inserting 1000 documents. first: Wyrley and Cheslyn Hay railway station and last: Category:Books by Tony Hillerman +[2018-02-13T00:48:22.562] [INFO] cheese - inserting 1000 documents. first: A. australis and last: AC-2 (cable system) +[2018-02-13T00:48:22.571] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:48:22.593] [INFO] cheese - inserting 1000 documents. first: 2014 midterm elections and last: File:Phoenix Stadium.jpg +[2018-02-13T00:48:22.651] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:48:22.652] [INFO] cheese - inserting 1000 documents. first: Symphony for Solo Piano (Alkan) and last: Balasinor (Vidhan Sabha constituency) +[2018-02-13T00:48:22.655] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T00:48:22.720] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:48:22.972] [INFO] cheese - inserting 1000 documents. first: Ma Yongfeng and last: Economy of Medieval England +[2018-02-13T00:48:22.974] [INFO] cheese - inserting 1000 documents. first: Canton of Cluses and last: Category:Japanese disability organizations +[2018-02-13T00:48:22.979] [INFO] cheese - inserting 1000 documents. first: Megamalai Wildlife Sanctuary and last: Mubungere +[2018-02-13T00:48:22.979] [INFO] cheese - inserting 1000 documents. first: Red-and-black colobus and last: Project Megiddo +[2018-02-13T00:48:23.018] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:48:23.046] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T00:48:23.049] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T00:48:23.047] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:48:23.140] [INFO] cheese - inserting 1000 documents. first: UK-414495 and last: Template:MAAC Men's Basketball Player of the Year +[2018-02-13T00:48:23.140] [INFO] cheese - inserting 1000 documents. first: File:The Vanishings (Left Behind Book).jpg and last: Brian Bigger +[2018-02-13T00:48:23.197] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:48:23.233] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:48:23.581] [INFO] cheese - inserting 1000 documents. first: Category:2005 FIFA Confederations Cup and last: Flanagan, Thomas Canon +[2018-02-13T00:48:23.587] [INFO] cheese - inserting 1000 documents. first: Grampians by-election, 1917 and last: Wikipedia:Articles for deletion/UTasker +[2018-02-13T00:48:23.679] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T00:48:23.689] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T00:48:23.702] [INFO] cheese - inserting 1000 documents. first: Frankism and last: Nevel'ski Raion +[2018-02-13T00:48:23.759] [INFO] cheese - inserting 1000 documents. first: Roxane Dawson and last: Bee eaters +[2018-02-13T00:48:23.782] [INFO] cheese - inserting 1000 documents. first: Thoracic injuries and last: File:PFM Jetlag.jpg +[2018-02-13T00:48:23.790] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:48:23.807] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T00:48:23.868] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T00:48:23.956] [INFO] cheese - inserting 1000 documents. first: Category:Jordanian disability organisations and last: Ernakulam–Kayamkulam coastal railway line +[2018-02-13T00:48:24.049] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T00:48:24.212] [INFO] cheese - inserting 1000 documents. first: MEGAL pipeline and last: Portal:Arizona/Selected picture/9 +[2018-02-13T00:48:24.216] [INFO] cheese - inserting 1000 documents. first: Category:Books by Richard A. Muller and last: Vagra (Vidhan Sabha constituency) +[2018-02-13T00:48:24.304] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T00:48:24.317] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T00:48:24.334] [INFO] cheese - inserting 1000 documents. first: Edward Mordrake and last: Čop Street, Ljubljana +[2018-02-13T00:48:24.421] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T00:48:24.425] [INFO] cheese - inserting 1000 documents. first: Matthias Habich and last: Andrew J. Thayer +[2018-02-13T00:48:24.437] [INFO] cheese - inserting 1000 documents. first: Family dysfunctions and last: Dil Ki Baat +[2018-02-13T00:48:24.515] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T00:48:24.537] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:48:24.573] [INFO] cheese - inserting 1000 documents. first: Big Time Wrestling (Stu Hart promotion) and last: Wikipedia:Articles for deletion/Sporting Patna FC +[2018-02-13T00:48:24.659] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:48:24.844] [INFO] cheese - inserting 1000 documents. first: Portal:U.S. Roads/Selected picture/December 2014 and last: Medrylamine +[2018-02-13T00:48:24.883] [INFO] cheese - inserting 1000 documents. first: Lincoln City, Delaware and last: Gil of Santarem, Blessed +[2018-02-13T00:48:24.889] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:48:24.930] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T00:48:24.933] [INFO] cheese - inserting 1000 documents. first: Max Puig and last: Brassy minnow +[2018-02-13T00:48:24.967] [INFO] cheese - inserting 1000 documents. first: Category:The Simpsons (season 17) episodes and last: Fljótshlíð +[2018-02-13T00:48:25.007] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:48:25.041] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:48:25.090] [INFO] cheese - inserting 1000 documents. first: Quran Oath Controversy of the 110th United States Congress and last: 107th Fighter Squadron +[2018-02-13T00:48:25.150] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T00:48:25.216] [INFO] cheese - inserting 1000 documents. first: File:TumbleweedTheaterIntro.jpg and last: Joshaviah +[2018-02-13T00:48:25.271] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T00:48:25.368] [INFO] cheese - inserting 1000 documents. first: Ffestiniog transmitting station and last: Pseudotomoxia quadrinotata +[2018-02-13T00:48:25.405] [INFO] cheese - inserting 1000 documents. first: Liver dysfunction and last: Embury +[2018-02-13T00:48:25.408] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:48:25.413] [INFO] cheese - inserting 1000 documents. first: 2012–13 Mersin İdmanyurdu season and last: Rhizoplaca chrysoleuca +[2018-02-13T00:48:25.453] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T00:48:25.507] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T00:48:25.559] [INFO] cheese - inserting 1000 documents. first: File:Male chicken (Gallus gallus domesticus) with prominent plumage.jpg and last: Farakka dam +[2018-02-13T00:48:25.602] [INFO] cheese - inserting 1000 documents. first: Category:Angolan female middle-distance runners and last: Melkite Greek Catholic Archeparchy of Sidon and Deir el-Kamar +[2018-02-13T00:48:25.612] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:48:25.637] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:48:25.732] [INFO] cheese - inserting 1000 documents. first: Glosses, Scriptural and last: Bungo Township, Minnesota +[2018-02-13T00:48:25.749] [INFO] cheese - inserting 1000 documents. first: File:Pont Flavien, Bouches-du-Rhône, France. Pic 02.jpg and last: C14H15N5O +[2018-02-13T00:48:25.786] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:48:25.830] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T00:48:25.877] [INFO] cheese - inserting 1000 documents. first: File:Dar Chashm Bad .jpg and last: Portal:Capital District/Selected panorama/8 +[2018-02-13T00:48:25.925] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:48:26.048] [INFO] cheese - inserting 1000 documents. first: File:Life Is Toff titlecard.jpg and last: Robertsia +[2018-02-13T00:48:26.107] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:48:26.224] [INFO] cheese - inserting 1000 documents. first: Category:1895 in the Caribbean and last: List of Chief Justices of the United States +[2018-02-13T00:48:26.237] [INFO] cheese - inserting 1000 documents. first: Oldpark Avenue and last: Hendelove, William +[2018-02-13T00:48:26.265] [INFO] cheese - inserting 1000 documents. first: Yavana rani and last: Radio America (band) +[2018-02-13T00:48:26.280] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:48:26.305] [INFO] cheese - inserting 1000 documents. first: Crooked Lake Township, Minnesota and last: File:Nunavut coat of arms.jpg +[2018-02-13T00:48:26.309] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T00:48:26.333] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T00:48:26.403] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:48:26.422] [INFO] cheese - inserting 1000 documents. first: Hypsibema missouriensis and last: Ahistorical +[2018-02-13T00:48:26.477] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:48:26.585] [INFO] cheese - inserting 1000 documents. first: Sclerocladus and last: Capsule Inn Osaka +[2018-02-13T00:48:26.654] [INFO] cheese - inserting 1000 documents. first: Hendley, William and last: Category:Geology of Liaoning +[2018-02-13T00:48:26.659] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T00:48:26.694] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:48:26.700] [INFO] cheese - inserting 1000 documents. first: Arthur March and last: Ilse Lehiste +[2018-02-13T00:48:26.776] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:48:26.925] [INFO] cheese - inserting 1000 documents. first: Redlands Boulevard and last: File:Tylosema esculenta pod.PNG +[2018-02-13T00:48:26.982] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T00:48:26.990] [INFO] cheese - inserting 1000 documents. first: Norris-Whitney Communications Inc. and last: Fly, Robin, Fly +[2018-02-13T00:48:26.998] [INFO] cheese - inserting 1000 documents. first: Category:St. Louis Soccer League teams and last: Category:Basketball teams established in 1948 +[2018-02-13T00:48:27.057] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T00:48:27.077] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T00:48:27.236] [INFO] cheese - inserting 1000 documents. first: Category:Lists of historical drama films and last: Category:Articles needing sections from November 2014 +[2018-02-13T00:48:27.260] [INFO] cheese - inserting 1000 documents. first: Nephusim and last: Category:People from Franklin, Michigan +[2018-02-13T00:48:27.316] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:48:27.385] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T00:48:27.445] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Austria by millennium and last: Rákóczi Avenue +[2018-02-13T00:48:27.496] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T00:48:27.572] [INFO] cheese - inserting 1000 documents. first: NOKR and last: Southern Carnarvon Basin +[2018-02-13T00:48:27.640] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T00:48:27.699] [INFO] cheese - inserting 1000 documents. first: Template:Location map Saint Martin and last: Bamum script +[2018-02-13T00:48:27.737] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T00:48:27.768] [INFO] cheese - inserting 1000 documents. first: Lesbisk Bevægelse and last: Kidston, William +[2018-02-13T00:48:27.811] [INFO] cheese - inserting 1000 documents. first: Cathar castle and last: Sand and Pebbles +[2018-02-13T00:48:27.810] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T00:48:27.866] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T00:48:27.894] [INFO] cheese - inserting 1000 documents. first: Category:Articles needing cleanup from November 2014 and last: Campilostachis +[2018-02-13T00:48:27.911] [INFO] cheese - inserting 1000 documents. first: Ambrym Island and last: Crystal Lagoons +[2018-02-13T00:48:27.951] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T00:48:27.948] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T00:48:28.115] [INFO] cheese - inserting 1000 documents. first: Narsinhrao Divetia and last: Cotonopsis phuketensis +[2018-02-13T00:48:28.125] [INFO] cheese - inserting 1000 documents. first: Kiernan, William and last: Rakkath +[2018-02-13T00:48:28.145] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:48:28.151] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:48:28.234] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Airports/New articles/Archive 2008 and last: Werewolf Sonic +[2018-02-13T00:48:28.235] [INFO] cheese - inserting 1000 documents. first: Year Zero (album) and last: Category:Roman Catholic Ecclesiastical Province of Nouméa +[2018-02-13T00:48:28.265] [INFO] cheese - inserting 1000 documents. first: Kandewe Heritage Centre and last: Giacomo Bazzan +[2018-02-13T00:48:28.274] [INFO] cheese - inserting 1000 documents. first: Ampol Tangnoppakul and last: Implicit Runge–Kutta method +[2018-02-13T00:48:28.277] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T00:48:28.288] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T00:48:28.310] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:48:28.354] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:48:28.510] [INFO] cheese - inserting 1000 documents. first: Category:1553 establishments in the Ottoman Empire and last: Category:Danish still life painters +[2018-02-13T00:48:28.576] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:48:28.715] [INFO] cheese - inserting 1000 documents. first: Euplica brunnidentata and last: Ardenode +[2018-02-13T00:48:28.803] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T00:48:28.815] [INFO] cheese - inserting 1000 documents. first: Elkem ASA and last: All Quiet on the Western Front (song) +[2018-02-13T00:48:28.871] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T00:48:28.890] [INFO] cheese - inserting 1000 documents. first: Ingebrigt Belle and last: Hugo Maiocco +[2018-02-13T00:48:28.892] [INFO] cheese - inserting 1000 documents. first: Nezela and last: File:Suhozanet.jpg +[2018-02-13T00:48:28.986] [INFO] cheese - inserting 1000 documents. first: 2017–18 Orlando Magic season and last: Opae +[2018-02-13T00:48:29.069] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T00:48:29.166] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T00:48:29.184] [INFO] cheese - inserting 1000 documents. first: Portal:Library and last: New Bedford Standard-Times +[2018-02-13T00:48:29.221] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T00:48:29.421] [INFO] cheese - batch complete in: 1.111 secs +[2018-02-13T00:48:29.699] [INFO] cheese - inserting 1000 documents. first: Harold Raynor and last: Chryseofusus subangulatus +[2018-02-13T00:48:29.704] [INFO] cheese - inserting 1000 documents. first: Mapping of Airline Traffic over Internet Protocol and last: Abdul Haleem +[2018-02-13T00:48:29.801] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T00:48:29.818] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T00:48:29.846] [INFO] cheese - inserting 1000 documents. first: Chyorny (inhabited locality) and last: Vladimír Rusnák +[2018-02-13T00:48:29.894] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T00:48:29.915] [INFO] cheese - inserting 1000 documents. first: Millie Simmonds and last: Template:Taxonomy/Dodonaea +[2018-02-13T00:48:29.957] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T00:48:30.068] [INFO] cheese - inserting 1000 documents. first: New Bedford Standard Times and last: Category:International ice hockey competitions hosted by Latvia +[2018-02-13T00:48:30.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Allegations of state terrorism by United States of America (3rd nomination) and last: Tenth Letter (Plato) +[2018-02-13T00:48:30.107] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:48:30.143] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T00:48:30.246] [INFO] cheese - inserting 1000 documents. first: Fair Park Medical Careers Magnet High School and last: File:Harold (2008 film character).jpg +[2018-02-13T00:48:30.287] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T00:48:30.308] [INFO] cheese - inserting 1000 documents. first: Fusinus suturalis and last: Travis d'Arnaud +[2018-02-13T00:48:30.340] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:48:30.379] [INFO] cheese - inserting 1000 documents. first: Category:West Virginia elections, 1898 and last: Wikipedia:Copyright problems/preload +[2018-02-13T00:48:30.390] [INFO] cheese - inserting 1000 documents. first: Chahar Farsakh and last: Boeing SLV +[2018-02-13T00:48:30.416] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:48:30.433] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T00:48:30.449] [INFO] cheese - inserting 1000 documents. first: Category:American explorers of the Pacific and last: File:Portion of ((tag)) testcases page.jpg +[2018-02-13T00:48:30.490] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T00:48:30.532] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Martin Luther King, Jr./archive1 and last: Teziutlán, Puebla +[2018-02-13T00:48:30.564] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:48:30.569] [INFO] cheese - inserting 1000 documents. first: No ni Saku Hana no Yō ni and last: Keroppi +[2018-02-13T00:48:30.615] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:48:30.668] [INFO] cheese - inserting 1000 documents. first: Shulamit Cohen-Kishik and last: KDEF +[2018-02-13T00:48:30.696] [INFO] cheese - inserting 1000 documents. first: Rossmoor, California and last: Yasuj Chain dam +[2018-02-13T00:48:30.706] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:48:30.713] [INFO] cheese - inserting 1000 documents. first: 1950 Wilkes 200 and last: Template:2012 Summer Olympics women's field hockey game B1 +[2018-02-13T00:48:30.738] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:48:30.755] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:48:30.868] [INFO] cheese - inserting 1000 documents. first: Nagaragawa Onsen and last: Trichambaram +[2018-02-13T00:48:30.908] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T00:48:30.937] [INFO] cheese - inserting 1000 documents. first: Yi Meng Wei Ma and last: Wikipedia:WikiProject Spam/LinkReports/concertconfessions.com +[2018-02-13T00:48:30.989] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T00:48:31.001] [INFO] cheese - inserting 1000 documents. first: Category:User ku-5 and last: Category:Defunct organisations of the Turks and Caicos Islands +[2018-02-13T00:48:31.042] [INFO] cheese - inserting 1000 documents. first: Category:Clubs and societies in Sweden and last: Telecommunications company +[2018-02-13T00:48:31.045] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T00:48:31.048] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Amanpreet S Sokhi and last: Rovny +[2018-02-13T00:48:31.078] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:48:31.097] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:48:31.131] [INFO] cheese - inserting 1000 documents. first: Template:Basketball-videogame-stub and last: Category:1994–95 domestic association football leagues +[2018-02-13T00:48:31.189] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T00:48:31.400] [INFO] cheese - inserting 1000 documents. first: Category:Defunct organisations of Uganda and last: File:The pond at Swaylands.jpg +[2018-02-13T00:48:31.433] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/concertconfessions.com and last: ASTRID (reactor) +[2018-02-13T00:48:31.436] [INFO] cheese - inserting 1000 documents. first: Divili and last: The Tai Chi Master +[2018-02-13T00:48:31.467] [INFO] cheese - inserting 1000 documents. first: Kapaneus and last: Abshir +[2018-02-13T00:48:31.489] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T00:48:31.543] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:48:31.552] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T00:48:31.592] [INFO] cheese - inserting 1000 documents. first: Rovny (disambiguation) and last: AEXS +[2018-02-13T00:48:31.588] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T00:48:31.670] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T00:48:31.719] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject China/Peer review/2007 and last: Stefan Korboński +[2018-02-13T00:48:31.783] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T00:48:31.879] [INFO] cheese - inserting 1000 documents. first: Visa requirements for Djibouti citizens and last: Endarasha +[2018-02-13T00:48:31.904] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:48:32.018] [INFO] cheese - inserting 1000 documents. first: Qeshlaq Khas and last: HD 221776 +[2018-02-13T00:48:32.023] [INFO] cheese - inserting 1000 documents. first: Category:1983 North Indian Ocean cyclone season and last: Category:Religion in Matara, Sri Lanka +[2018-02-13T00:48:32.075] [INFO] cheese - inserting 1000 documents. first: Zeynabad Sharqi and last: Fowlerichthys +[2018-02-13T00:48:32.076] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T00:48:32.085] [INFO] cheese - inserting 1000 documents. first: Falck USA and last: Alison Wonderland +[2018-02-13T00:48:32.115] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T00:48:32.146] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T00:48:32.170] [INFO] cheese - inserting 1000 documents. first: Bibee and last: Danzl +[2018-02-13T00:48:32.172] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:48:32.224] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:48:32.322] [INFO] cheese - inserting 1000 documents. first: Rocket Dive and last: Iuzhno-Kurilskiy District +[2018-02-13T00:48:32.383] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T00:48:32.555] [INFO] cheese - inserting 1000 documents. first: Gachichi and last: Flagsymphony +[2018-02-13T00:48:32.580] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Columbia County, Oregon and last: Category:Rivers of Ada County, Idaho +[2018-02-13T00:48:32.585] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:48:32.605] [INFO] cheese - inserting 1000 documents. first: Template:Arw and last: Template:2012 Summer Olympics men's field hockey game A15 +[2018-02-13T00:48:32.661] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T00:48:32.685] [INFO] cheese - inserting 1000 documents. first: 2003 Denver Broncos season and last: Museum of Indian Culture +[2018-02-13T00:48:32.687] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:48:32.784] [INFO] cheese - inserting 1000 documents. first: Jakab Marastoni and last: Shlomo Ben-Haim +[2018-02-13T00:48:32.784] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:48:32.922] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T00:48:32.944] [INFO] cheese - inserting 1000 documents. first: Iuzhno-Kurilski District and last: Cross Your T's and Gouge Your I's +[2018-02-13T00:48:33.036] [INFO] cheese - inserting 1000 documents. first: Flammario and last: John F. Kennedy Middle School (Northampton, Massachusetts) +[2018-02-13T00:48:33.045] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T00:48:33.081] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:48:33.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:School and university projects/Psyc3330 w12/Group13 and last: Mark Wentges +[2018-02-13T00:48:33.197] [INFO] cheese - inserting 1000 documents. first: Na Fianna GAA and last: SysVinit +[2018-02-13T00:48:33.206] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T00:48:33.277] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T00:48:33.318] [INFO] cheese - inserting 1000 documents. first: Category:Canadian people murdered abroad and last: Template:User USAFw2 +[2018-02-13T00:48:33.372] [INFO] cheese - inserting 1000 documents. first: Clarrie Shields and last: Kana Kacha railway station +[2018-02-13T00:48:33.380] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T00:48:33.449] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T00:48:33.465] [INFO] cheese - inserting 1000 documents. first: Kabieni and last: Jessenius +[2018-02-13T00:48:33.547] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T00:48:33.612] [INFO] cheese - inserting 1000 documents. first: Steve Jaffe and last: E. A. Smythies +[2018-02-13T00:48:33.702] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T00:48:33.747] [INFO] cheese - inserting 1000 documents. first: Template:2010-11 in Kenyan football - CAN Qualifiers matches and last: Gordon Wallace (Scottish footballer) +[2018-02-13T00:48:33.828] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T00:48:33.859] [INFO] cheese - inserting 1000 documents. first: Kholokhongo and last: Väinö Leskinen +[2018-02-13T00:48:33.896] [INFO] cheese - inserting 1000 documents. first: You Have to be Beautiful and last: Category:Buddhist temples in Monaragala District +[2018-02-13T00:48:33.936] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T00:48:33.967] [INFO] cheese - inserting 1000 documents. first: XEOQ-AM and last: James Knowles +[2018-02-13T00:48:33.990] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T00:48:33.995] [INFO] cheese - inserting 1000 documents. first: Over Stratton, Somerset and last: Roy Ferguson (rugby league) +[2018-02-13T00:48:34.056] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T00:48:34.068] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T00:48:34.259] [INFO] cheese - inserting 1000 documents. first: List of Grendizer characters and last: Template:Senior British Open Championship champions +[2018-02-13T00:48:34.265] [INFO] cheese - inserting 1000 documents. first: Choneteuthis and last: Anthony Claude Leach, Jr. +[2018-02-13T00:48:34.291] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:48:34.308] [INFO] cheese - inserting 1000 documents. first: Anthony Francis Nugent, 9th Earl of Westmeath and last: Olena Baltacha +[2018-02-13T00:48:34.317] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T00:48:34.395] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T00:48:34.447] [INFO] cheese - inserting 1000 documents. first: File:Ox the Fox.png and last: Two Weeks +[2018-02-13T00:48:34.524] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T00:48:34.602] [INFO] cheese - inserting 1000 documents. first: Mattgenge and last: Pajka +[2018-02-13T00:48:34.638] [INFO] cheese - inserting 1000 documents. first: File:Benjamin West - Joshua passing the River Jordan with the Ark of the Covenant - Google Art Project.jpg and last: Pionea xanthographa +[2018-02-13T00:48:34.641] [INFO] cheese - inserting 616 documents. first: Rose (2011 film) and last: Pethup Gompa +[2018-02-13T00:48:34.641] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T00:48:34.648] [INFO] cheese - inserting 1000 documents. first: Redpath Township, Minnesota and last: List of countries by irrigated land area +[2018-02-13T00:48:34.677] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T00:48:34.677] [INFO] cheese - worker pid:56525 is done. inserted 2763617 pages in 0 secs. +[2018-02-13T00:48:34.699] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T00:48:34.706] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T00:48:34.820] [INFO] cheese - inserting 1000 documents. first: Mohammad Baqer Baqeri and last: Soviet fleet +[2018-02-13T00:48:34.880] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T00:48:34.922] [INFO] cheese - inserting 1000 documents. first: Draft:Robert E. Bourdeau and last: Module:Country extract/BE +[2018-02-13T00:48:34.940] [INFO] cheese - inserting 1000 documents. first: Template:Bismuth compounds and last: Preussentum und Sozialismus +[2018-02-13T00:48:34.988] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T00:48:34.993] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:48:35.199] [INFO] cheese - inserting 1000 documents. first: Draft:BBC Lab UK and last: Klaw and Erlanger +[2018-02-13T00:48:35.240] [INFO] cheese - inserting 1000 documents. first: List of components of oil drilling rigs and last: List of Neo Angelique Abyss episodes +[2018-02-13T00:48:35.285] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:48:35.328] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T00:48:35.469] [INFO] cheese - inserting 1000 documents. first: List of Original Signers of the 1849 California Constitution and last: Pudsey & Otley +[2018-02-13T00:48:35.477] [INFO] cheese - inserting 1000 documents. first: Saddlemyer and last: File:JeepJamboreeGameBoyPic.jpg +[2018-02-13T00:48:35.540] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian female middle-distance runners and last: Electrical capacitance volume tomography +[2018-02-13T00:48:35.541] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T00:48:35.591] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T00:48:35.673] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:48:35.828] [INFO] cheese - inserting 1000 documents. first: Tabei and last: Yeshuhua +[2018-02-13T00:48:35.845] [INFO] cheese - inserting 1000 documents. first: Portal:Anarchism/Anniversaries/June/June 30 and last: Allosaurus tendagurensis +[2018-02-13T00:48:35.853] [INFO] cheese - inserting 1000 documents. first: Kundian Junction railway station and last: Wikipedia:Today's featured article/requests/Kenneth Walker +[2018-02-13T00:48:35.859] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:48:35.874] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T00:48:35.888] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:48:35.997] [INFO] cheese - inserting 1000 documents. first: Sword of François I and last: 2017-18 Duke Blue Devils men's basketball team +[2018-02-13T00:48:36.009] [INFO] cheese - inserting 1000 documents. first: Édouard Brissaud and last: Essex North +[2018-02-13T00:48:36.061] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:48:36.084] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:48:36.195] [INFO] cheese - inserting 1000 documents. first: Yeungchuchiu and last: Matolani +[2018-02-13T00:48:36.214] [INFO] cheese - inserting 1000 documents. first: HMS Gift (G45) and last: Priyam Priyamkaram +[2018-02-13T00:48:36.228] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:48:36.234] [INFO] cheese - inserting 1000 documents. first: Pizza-ghetti and last: Council Members +[2018-02-13T00:48:36.251] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:48:36.279] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T00:48:36.385] [INFO] cheese - inserting 1000 documents. first: Lady Jessie Street and last: Henry Chandler Bowen +[2018-02-13T00:48:36.432] [INFO] cheese - inserting 1000 documents. first: Frank Buckley (businessman) and last: If This Is Hell, Then I'm Lucky +[2018-02-13T00:48:36.432] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:48:36.482] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:48:36.550] [INFO] cheese - inserting 1000 documents. first: Matondoni and last: File:Shearersfoods.png +[2018-02-13T00:48:36.586] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T00:48:36.587] [INFO] cheese - inserting 1000 documents. first: GCUWF and last: James Addison Bushnell +[2018-02-13T00:48:36.610] [INFO] cheese - inserting 1000 documents. first: Lee Paterson and last: Cécile Nowak +[2018-02-13T00:48:36.627] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:48:36.645] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:48:36.692] [INFO] cheese - inserting 1000 documents. first: File:Juli-Insel.jpg and last: Ahmed Mohammad Kathrada +[2018-02-13T00:48:36.728] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:48:36.923] [INFO] cheese - inserting 1000 documents. first: James Lowther (1753–1837) and last: Kiambiu +[2018-02-13T00:48:36.984] [INFO] cheese - inserting 1000 documents. first: George Huntingford and last: Mira Khel +[2018-02-13T00:48:36.988] [INFO] cheese - inserting 1000 documents. first: Front Lot (Walt Disney Studios Park) and last: Category:The NHL Network (1975–79) affiliates +[2018-02-13T00:48:37.000] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:48:37.011] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:48:37.032] [INFO] cheese - inserting 38 documents. first: File:Deadmalls dot com screenshot.jpg and last: Franz Winterhalter +[2018-02-13T00:48:37.034] [INFO] cheese - batch complete in: 0.034 secs +[2018-02-13T00:48:37.034] [INFO] cheese - worker pid:56522 is done. inserted 2307039 pages in 0 secs. +[2018-02-13T00:48:37.040] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T00:48:37.075] [INFO] cheese - inserting 1000 documents. first: Category:Corporate warfare in fiction and last: File:The Lilac Serenade.jpeg +[2018-02-13T00:48:37.121] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:48:37.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Putnis and last: File:B.B. Studio logo.svg +[2018-02-13T00:48:37.164] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T00:48:37.335] [INFO] cheese - inserting 1000 documents. first: Theatre actress and last: Wikipedia:Articles for deletion/The Return of the G.O.A.T. +[2018-02-13T00:48:37.382] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:48:37.408] [INFO] cheese - inserting 1000 documents. first: Tutu Plantation House and last: Scouting and Guiding in the Republic of China +[2018-02-13T00:48:37.409] [INFO] cheese - inserting 1000 documents. first: Category:Villages in the canton of Zug and last: Enteroenteric circulation +[2018-02-13T00:48:37.433] [INFO] cheese - inserting 1000 documents. first: Ralte Lalthuammawia and last: Category:Singaporean high jumpers +[2018-02-13T00:48:37.449] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:48:37.478] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:48:37.484] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T00:48:37.685] [INFO] cheese - inserting 1000 documents. first: Jewish National Fund Tree of Life Award and last: Chris Okemo +[2018-02-13T00:48:37.705] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T00:48:37.707] [INFO] cheese - inserting 1000 documents. first: Sweet Apple Berry and last: Category:Bodies of water of Davison County, South Dakota +[2018-02-13T00:48:37.729] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T00:48:37.757] [INFO] cheese - inserting 1000 documents. first: Eliza Wheeler and last: Template:1966 Missouri Valley Conference football standings +[2018-02-13T00:48:37.782] [INFO] cheese - inserting 1000 documents. first: Category:1985 elections in North America and last: Mohibullah Samim +[2018-02-13T00:48:37.784] [INFO] cheese - batch complete in: 0.3 secs +[2018-02-13T00:48:37.804] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:48:37.965] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Haters (La, La, La) and last: StickK +[2018-02-13T00:48:37.971] [INFO] cheese - inserting 1000 documents. first: Posthumous wedding and last: File:Genesys Logo 2017.svg +[2018-02-13T00:48:38.001] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:48:38.003] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T00:48:38.025] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whelen WPS 4000 Series and last: List of battles and wars involving the Islamic State of Iraq and the Levant +[2018-02-13T00:48:38.075] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:48:38.181] [INFO] cheese - inserting 1000 documents. first: Modal shift and last: Wikipedia:Articles for deletion/Amsterdam's Garden +[2018-02-13T00:48:38.233] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:48:38.240] [INFO] cheese - inserting 1000 documents. first: Armenians in Slovenia and last: Category:RSD Alcalá managers +[2018-02-13T00:48:38.263] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:48:38.277] [INFO] cheese - inserting 1000 documents. first: Central Ranges Taipan and last: Iowa University +[2018-02-13T00:48:38.317] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:48:38.379] [INFO] cheese - inserting 1000 documents. first: Nisa Azeezi and last: File:1980 Kannada film Minchina Ota VCD cover.jpg +[2018-02-13T00:48:38.396] [INFO] cheese - inserting 1000 documents. first: That Was Then, This Is Now (album) and last: Wikipedia:Votes for deletion/Boprah +[2018-02-13T00:48:38.420] [INFO] cheese - batch complete in: 0.186 secs +[2018-02-13T00:48:38.423] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T00:48:38.577] [INFO] cheese - inserting 1000 documents. first: Azerbaijan State Theatre "Yuğ" and last: Nauplius smithii +[2018-02-13T00:48:38.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Boris Bertrand and last: Wikipedia:Votes for deletion/Denis Howe +[2018-02-13T00:48:38.607] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T00:48:38.625] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:48:38.778] [INFO] cheese - inserting 1000 documents. first: National University of Chilecito and last: A Boy Called Hate +[2018-02-13T00:48:38.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Denise Davis and last: Wikipedia:Votes for deletion/Gods & Heroes +[2018-02-13T00:48:38.797] [INFO] cheese - batch complete in: 0.189 secs +[2018-02-13T00:48:38.801] [INFO] cheese - inserting 1000 documents. first: Template:Country data MALAYSIA and last: Trapania toddi +[2018-02-13T00:48:38.809] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T00:48:38.840] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:48:38.919] [INFO] cheese - inserting 1000 documents. first: Dutch people in Namibia and last: Category:Rivers of Beadle County, South Dakota +[2018-02-13T00:48:38.940] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gods of greec and last: Ion Sîrbu +[2018-02-13T00:48:38.955] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:48:38.963] [INFO] cheese - batch complete in: 0.166 secs +[2018-02-13T00:48:39.128] [INFO] cheese - inserting 1000 documents. first: File:View of Nuremberg, Pennsylvania from the south.JPG and last: Liberal Party (Republic of Macedonia) +[2018-02-13T00:48:39.158] [INFO] cheese - inserting 1000 documents. first: Category:Association football in County Cork and last: Wikipedia:Votes for deletion/Maggie Haskins +[2018-02-13T00:48:39.172] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:48:39.204] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:48:39.262] [INFO] cheese - inserting 1000 documents. first: Template:Keikyu Station Numbering and last: J. W. Boateng +[2018-02-13T00:48:39.288] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:48:39.308] [INFO] cheese - inserting 1000 documents. first: Honda HA-420 and last: Wikipedia:Votes for deletion/Peanut butter jelly time +[2018-02-13T00:48:39.328] [INFO] cheese - batch complete in: 0.124 secs +[2018-02-13T00:48:39.343] [INFO] cheese - inserting 1000 documents. first: Giovanni Maria Lancisi and last: Wikipedia:WikiProject Geelong/Cleanup listing +[2018-02-13T00:48:39.391] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T00:48:39.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Pearl 'n' Mearl and last: Wikipedia:Votes for deletion/Sleep sex +[2018-02-13T00:48:39.485] [INFO] cheese - batch complete in: 0.157 secs +[2018-02-13T00:48:39.523] [INFO] cheese - inserting 1000 documents. first: Shobhanam and last: Sex Is Law +[2018-02-13T00:48:39.543] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Northwestern Mexico and last: Fat and Thin +[2018-02-13T00:48:39.560] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:48:39.573] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:48:39.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Sleepy's Law and last: Wikipedia:Votes for deletion/Ubergeek +[2018-02-13T00:48:39.656] [INFO] cheese - batch complete in: 0.171 secs +[2018-02-13T00:48:39.788] [INFO] cheese - inserting 1000 documents. first: Kathleen Friedrich and last: File:Central Bank of Russia.jpg +[2018-02-13T00:48:39.810] [INFO] cheese - inserting 1000 documents. first: Marie-Eugenie of Jesus and last: Memories Off 3.5 +[2018-02-13T00:48:39.812] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:48:39.826] [INFO] cheese - inserting 1000 documents. first: Episode 9 (Twin Peaks) and last: Juan Cayetano Fernández de Agüero +[2018-02-13T00:48:39.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Ubitsa and last: Admiralty Research Establishment +[2018-02-13T00:48:39.887] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:48:39.893] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:48:39.935] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:48:40.186] [INFO] cheese - inserting 1000 documents. first: File:Girls Le Disko.jpg and last: Vlora wind farm +[2018-02-13T00:48:40.204] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:48:40.208] [INFO] cheese - inserting 1000 documents. first: Yi Tso-lin and last: File:Greatest Hits (Album Cover).jpg +[2018-02-13T00:48:40.216] [INFO] cheese - inserting 1000 documents. first: Category:1930 establishments in Alberta and last: AEON Stores +[2018-02-13T00:48:40.216] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Improve2009 and last: Category:Australian booksellers +[2018-02-13T00:48:40.236] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:48:40.249] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:48:40.257] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:48:40.472] [INFO] cheese - inserting 1000 documents. first: Portal:Professional wrestling/Topics/11 and last: Category:Spain football templates +[2018-02-13T00:48:40.487] [INFO] cheese - inserting 1000 documents. first: Template:2011 UFL (Philippines) Division 2 table and last: Čajle +[2018-02-13T00:48:40.496] [INFO] cheese - inserting 1000 documents. first: File:Elisabeth Dhanens.jpg and last: Jadwiga Cieszyńska +[2018-02-13T00:48:40.502] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:48:40.517] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T00:48:40.526] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:48:40.529] [INFO] cheese - inserting 1000 documents. first: Media of the Soviet Union and last: Anticlerical art +[2018-02-13T00:48:40.568] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:48:40.764] [INFO] cheese - inserting 1000 documents. first: Banco del Pichincha and last: Draft:Janey-E Jones +[2018-02-13T00:48:40.766] [INFO] cheese - inserting 1000 documents. first: Category:Swiss biographical films and last: Wikipedia:Articles for deletion/Intaction +[2018-02-13T00:48:40.769] [INFO] cheese - inserting 1000 documents. first: Point St. Charles and last: Menegazzia albida +[2018-02-13T00:48:40.795] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:48:40.803] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T00:48:40.804] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T00:48:40.883] [INFO] cheese - inserting 1000 documents. first: Yutaka and last: Wilbur Mitcham +[2018-02-13T00:48:40.928] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:48:41.007] [INFO] cheese - inserting 1000 documents. first: East Side Story (Will & Grace) and last: My Mother's Eyes (disambiguation) +[2018-02-13T00:48:41.040] [INFO] cheese - batch complete in: 0.237 secs +[2018-02-13T00:48:41.069] [INFO] cheese - inserting 1000 documents. first: Calliostoma peregrinum and last: Acalyptris maritima +[2018-02-13T00:48:41.112] [INFO] cheese - inserting 1000 documents. first: Bill Neely (American football) and last: The Doreen Valiente Foundation +[2018-02-13T00:48:41.111] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:48:41.162] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:48:41.328] [INFO] cheese - inserting 1000 documents. first: Osteen (disambiguation) and last: Imperial Tutor Pang +[2018-02-13T00:48:41.383] [INFO] cheese - inserting 1000 documents. first: Later with Jules Holland and last: File:Persepolisfc classic .jpg +[2018-02-13T00:48:41.397] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T00:48:41.506] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T00:48:41.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rv1865.com and last: Heloecius +[2018-02-13T00:48:41.570] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:48:41.771] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Puebla and last: 2007 European Athletics U23 Championships – Men's 1500 metres +[2018-02-13T00:48:41.831] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T00:48:41.893] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2017 Riverside Cessna 310 crash and last: Gurjaradesh +[2018-02-13T00:48:41.956] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T00:48:42.006] [INFO] cheese - inserting 1000 documents. first: Kunnuvarankottai Kasi Visalakshi-Viswanathar Temple and last: RLIF Awards 2008 +[2018-02-13T00:48:42.036] [INFO] cheese - inserting 1000 documents. first: Jean-Baptiste-Henri Lacordaire and last: Francois Bruneri +[2018-02-13T00:48:42.071] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T00:48:42.197] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T00:48:42.226] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Top 25 Report/October 26 to November 1, 2014 and last: Yn Cheshaght Ghailckagh +[2018-02-13T00:48:42.272] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:48:42.302] [INFO] cheese - inserting 1000 documents. first: File:La Piloto official poster.jpg and last: Waltensburg/Vuorz railway station +[2018-02-13T00:48:42.353] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T00:48:42.400] [INFO] cheese - inserting 1000 documents. first: The Wall Live (2010/2011 Tour) and last: Japanese Association of Management Accounting +[2018-02-13T00:48:42.447] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:48:42.551] [INFO] cheese - inserting 1000 documents. first: Free Methodist Bible Quiz and last: Template:Air Supply +[2018-02-13T00:48:42.557] [INFO] cheese - inserting 1000 documents. first: Jerónimo de Garro and last: Nesla +[2018-02-13T00:48:42.584] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:48:42.586] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:48:42.617] [INFO] cheese - inserting 1000 documents. first: ENG display and last: Johann von Mayr +[2018-02-13T00:48:42.647] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T00:48:42.825] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/systemsinthecity.co.uk and last: Vexillum turriger +[2018-02-13T00:48:42.852] [INFO] cheese - inserting 1000 documents. first: Novo Bardo and last: Aster major +[2018-02-13T00:48:42.859] [INFO] cheese - inserting 1000 documents. first: Percival Goodman and last: List of Ambassadors from the United Kingdom to the Ottoman Empire +[2018-02-13T00:48:42.865] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:48:42.883] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T00:48:42.904] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:48:42.937] [INFO] cheese - inserting 1000 documents. first: Category:Retailing in Peru and last: BioCurious +[2018-02-13T00:48:42.987] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:48:43.328] [INFO] cheese - inserting 1000 documents. first: John Mark Colquhoun and last: Hendricks Township, Minnesota +[2018-02-13T00:48:43.333] [INFO] cheese - inserting 1000 documents. first: Category:Head and neck cancer and last: Wholesale District, Los Angeles, California +[2018-02-13T00:48:43.374] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T00:48:43.377] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T00:48:43.412] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Klag-Lied and last: Al Despertar (Mercedes Sosa song) +[2018-02-13T00:48:43.456] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T00:48:43.547] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Ilocos Sur and last: Menezes, William +[2018-02-13T00:48:43.591] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T00:48:43.688] [INFO] cheese - inserting 1000 documents. first: Hope Township, Minnesota and last: Category:FL-Class Indian politics articles of High-importance +[2018-02-13T00:48:43.736] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T00:48:43.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gaëlle Comparat and last: Anthony G. Petti +[2018-02-13T00:48:43.839] [INFO] cheese - inserting 1000 documents. first: Howie Montgomery and last: Hrdinný kapitán Korkorán +[2018-02-13T00:48:43.871] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T00:48:43.874] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:48:43.924] [INFO] cheese - inserting 1000 documents. first: Meninger, William and last: Af Urur +[2018-02-13T00:48:43.957] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:48:44.068] [INFO] cheese - inserting 1000 documents. first: Topical outline of calculus and last: Yanachaga–Chemillen National Park +[2018-02-13T00:48:44.113] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:48:44.212] [INFO] cheese - inserting 1000 documents. first: Category:1976 in karate and last: Transition modeling +[2018-02-13T00:48:44.245] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T00:48:44.321] [INFO] cheese - inserting 1000 documents. first: Ada Major and last: Izō Iburi +[2018-02-13T00:48:44.364] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T00:48:44.379] [INFO] cheese - inserting 1000 documents. first: Ġnien il-Kmand and last: Mancic +[2018-02-13T00:48:44.384] [INFO] cheese - inserting 1000 documents. first: The Church of Jesus Christ of Latter-day Saints in Oklahoma and last: The Brick City +[2018-02-13T00:48:44.414] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:48:44.417] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T00:48:44.649] [INFO] cheese - inserting 1000 documents. first: Östgötaderbyt and last: List of Tennessee Volunteers starting quarterbacks +[2018-02-13T00:48:44.695] [INFO] cheese - inserting 1000 documents. first: Aleksandar Stanojević and last: Maculotriton digitalis +[2018-02-13T00:48:44.697] [INFO] cheese - inserting 1000 documents. first: Chariesthes aureovitticollis and last: Ngeleja, William +[2018-02-13T00:48:44.699] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T00:48:44.721] [INFO] cheese - inserting 1000 documents. first: Linguistic discrimination and last: Vampyrodes +[2018-02-13T00:48:44.723] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:48:44.729] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:48:44.759] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:48:44.947] [INFO] cheese - inserting 1000 documents. first: Taira Shige and last: PGL 2001 +[2018-02-13T00:48:44.972] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T00:48:44.996] [INFO] cheese - inserting 1000 documents. first: Maculotriton serriale and last: Vaughtia squamata +[2018-02-13T00:48:45.002] [INFO] cheese - inserting 1000 documents. first: File:Mesrobianmilitary.jpg and last: Klaus Henkes +[2018-02-13T00:48:45.014] [INFO] cheese - inserting 1000 documents. first: Spechhorn and last: Elize Hele +[2018-02-13T00:48:45.022] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:48:45.046] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T00:48:45.055] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:48:45.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2017 June 9 and last: Template:Did you know nominations/Anthonio Hurdt +[2018-02-13T00:48:45.255] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:48:45.310] [INFO] cheese - inserting 1000 documents. first: Nepal at the 2014 Asian Beach Games and last: Estevao Silva +[2018-02-13T00:48:45.350] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:48:45.360] [INFO] cheese - inserting 1000 documents. first: Vaughtia transkeiensis and last: 66th Strategic Reconnaissance Group +[2018-02-13T00:48:45.398] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:48:45.422] [INFO] cheese - inserting 1000 documents. first: Treaty of Fontainebleau of 1762 and last: Category:C-Class Genetics articles +[2018-02-13T00:48:45.470] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T00:48:45.565] [INFO] cheese - inserting 1000 documents. first: Koinange wa Mbiyu and last: Category:February 2003 events by continent +[2018-02-13T00:48:45.616] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:48:45.682] [INFO] cheese - inserting 1000 documents. first: Template:Nebraska-geography-stub and last: National Highway 2 (India) +[2018-02-13T00:48:45.718] [INFO] cheese - inserting 1000 documents. first: Category:25th United States Congress and last: Category:Houses in New Haven County, Connecticut +[2018-02-13T00:48:45.737] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:48:45.757] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:48:45.773] [INFO] cheese - inserting 1000 documents. first: Killing Me Softly (Ferrante & Teicher album) and last: Joey Leung Wing-Chung +[2018-02-13T00:48:45.812] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:48:45.923] [INFO] cheese - inserting 1000 documents. first: Pamidimarru Gramam and last: Template:United Kingdom party elections, 2017 +[2018-02-13T00:48:45.961] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:48:46.093] [INFO] cheese - inserting 1000 documents. first: National Highway 2A (India) and last: Caius Norbanus Sorex +[2018-02-13T00:48:46.128] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:48:46.169] [INFO] cheese - inserting 1000 documents. first: Education in Tunisia and last: Michmoret +[2018-02-13T00:48:46.207] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T00:48:46.225] [INFO] cheese - inserting 1000 documents. first: Lyons, France and last: File:Ovenden-Emily.jpg +[2018-02-13T00:48:46.240] [INFO] cheese - inserting 1000 documents. first: Jordan Reginald Howard and last: Ron Nirenberg +[2018-02-13T00:48:46.274] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:48:46.277] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:48:46.583] [INFO] cheese - inserting 1000 documents. first: Category:Isuzu-class destroyer escorts and last: Thousand day war +[2018-02-13T00:48:46.584] [INFO] cheese - inserting 1000 documents. first: Category:Middlebury Panthers men's basketball and last: Category:Image captions for cleanup/With examples/With inadequate context +[2018-02-13T00:48:46.607] [INFO] cheese - inserting 1000 documents. first: List of Playboy Playmates of 1987 and last: Ceratodon dimorphus +[2018-02-13T00:48:46.615] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:48:46.635] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:48:46.671] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:48:46.719] [INFO] cheese - inserting 1000 documents. first: Akbarpur (Lok Sabha constituency) and last: Grande Lui +[2018-02-13T00:48:46.771] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T00:48:46.863] [INFO] cheese - inserting 1000 documents. first: Category:Image captions for cleanup/Without examples/With inadequate context and last: Siberian Express (disambiguation) +[2018-02-13T00:48:46.890] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:48:47.002] [INFO] cheese - inserting 1000 documents. first: The Foundling and last: Category:Viral infections of the central nervous system +[2018-02-13T00:48:47.044] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T00:48:47.060] [INFO] cheese - inserting 1000 documents. first: Koganejōshi Station and last: SCR-193 +[2018-02-13T00:48:47.082] [INFO] cheese - inserting 1000 documents. first: Yanjing County and last: Clot (disambiguation) +[2018-02-13T00:48:47.112] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T00:48:47.120] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:48:47.304] [INFO] cheese - inserting 1000 documents. first: Thiyyattunni and last: Pontus, William +[2018-02-13T00:48:47.349] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T00:48:47.452] [INFO] cheese - inserting 1000 documents. first: List of settlements in the Federation of Bosnia and Herzegovina/G and last: Kachin red-backed vole +[2018-02-13T00:48:47.473] [INFO] cheese - inserting 1000 documents. first: File:William Stainton Moses.jpg and last: Portal:Music of Canada/Did you know?/4 +[2018-02-13T00:48:47.496] [INFO] cheese - inserting 1000 documents. first: Category:1996 Czech television series debuts and last: Lakeshore, Louisiana +[2018-02-13T00:48:47.499] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T00:48:47.548] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T00:48:47.552] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T00:48:47.806] [INFO] cheese - inserting 1000 documents. first: Pulgram, William and last: Wikipedia:Articles for deletion/Miss Jozi +[2018-02-13T00:48:47.856] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:48:47.988] [INFO] cheese - inserting 1000 documents. first: Henry Ferdinand Mudge and last: Luella Creighton +[2018-02-13T00:48:48.016] [INFO] cheese - inserting 1000 documents. first: 24198 Xiaomengzeng and last: St. Paul-Minneapolis metropolitan area +[2018-02-13T00:48:48.048] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T00:48:48.086] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T00:48:48.294] [INFO] cheese - inserting 1000 documents. first: Wapta Glacier and last: Katherine Carl +[2018-02-13T00:48:48.376] [INFO] cheese - inserting 1000 documents. first: Category:May 1976 events in Europe and last: Rowlands, William +[2018-02-13T00:48:48.381] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T00:48:48.451] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T00:48:48.601] [INFO] cheese - inserting 1000 documents. first: Department of East Asian Studies, University of Delhi and last: Category:Characters in Azerbaijani novels of the 21st century +[2018-02-13T00:48:48.673] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T00:48:48.707] [INFO] cheese - inserting 1000 documents. first: Kawasaki Kisen Kaisha, Ltd. and last: UCMSA Universalis +[2018-02-13T00:48:48.784] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T00:48:48.837] [INFO] cheese - inserting 1000 documents. first: Ryle, William and last: Mutua (surname) +[2018-02-13T00:48:48.859] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:48:49.017] [INFO] cheese - inserting 1000 documents. first: Avra (Kozani), Greece and last: Choedrak Monastery +[2018-02-13T00:48:49.050] [INFO] cheese - inserting 1000 documents. first: Category:Indicator (genus) and last: D. 49 +[2018-02-13T00:48:49.066] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T00:48:49.094] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T00:48:49.196] [INFO] cheese - inserting 1000 documents. first: File:Innisfil logo.png and last: Category:All image captions for cleanup +[2018-02-13T00:48:49.247] [INFO] cheese - inserting 1000 documents. first: Hockerill Educational Foundation and last: 2003-04 Los Angeles Lakers season +[2018-02-13T00:48:49.247] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:48:49.290] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T00:48:49.484] [INFO] cheese - inserting 1000 documents. first: Motion to raise a question of privilege and last: Gusztáv Kálniczky +[2018-02-13T00:48:49.546] [INFO] cheese - inserting 1000 documents. first: Owensboro Daviess County Regional Airport and last: Josef Salvat +[2018-02-13T00:48:49.547] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T00:48:49.582] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T00:48:49.590] [INFO] cheese - inserting 1000 documents. first: Paride and last: Wikipedia:WikiProject Spam/LinkReports/goombaybash.com +[2018-02-13T00:48:49.611] [INFO] cheese - inserting 1000 documents. first: File:Prison Memoirs.jpg and last: White angelfish +[2018-02-13T00:48:49.636] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:48:49.656] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:48:49.848] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2014-11-18 and last: Root apps +[2018-02-13T00:48:49.892] [INFO] cheese - inserting 1000 documents. first: Gusztav Kalniczky and last: Erdős discrepancy problem +[2018-02-13T00:48:49.894] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:48:49.961] [INFO] cheese - inserting 1000 documents. first: Draft:Kunal Saraff and last: Wikipedia:Miscellany for deletion/User:Ap Motion Pictures/sandbox +[2018-02-13T00:48:49.963] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:48:49.971] [INFO] cheese - inserting 1000 documents. first: Aelius Lampridius Cervinus and last: 1928–29 Maltese Premier League +[2018-02-13T00:48:50.002] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:48:50.021] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T00:48:50.301] [INFO] cheese - inserting 1000 documents. first: Yu pengnian and last: Category:Ptychatractidae +[2018-02-13T00:48:50.320] [INFO] cheese - inserting 1000 documents. first: Draft:Honda SS125A and last: Wikipedia:Articles for deletion/Erica Farrell +[2018-02-13T00:48:50.349] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dacnonypha and last: File:PDSshield-small.jpg +[2018-02-13T00:48:50.350] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T00:48:50.357] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T00:48:50.403] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:48:50.433] [INFO] cheese - inserting 1000 documents. first: 1929–30 Maltese Premier League and last: Zalesie, Bydgoszcz County +[2018-02-13T00:48:50.502] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T00:48:50.595] [INFO] cheese - inserting 1000 documents. first: Category:Football people in Martinique and last: Yarmolenko +[2018-02-13T00:48:50.624] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:48:50.673] [INFO] cheese - inserting 1000 documents. first: Instruction (Jax Jones song) and last: Bjorn Nilsen (athlete) +[2018-02-13T00:48:50.709] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:48:50.734] [INFO] cheese - inserting 1000 documents. first: Un homme qui crie and last: File:Oldsportsdayweb.jpg +[2018-02-13T00:48:50.783] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T00:48:50.871] [INFO] cheese - inserting 1000 documents. first: Zła Wieś and last: Agrochola lota +[2018-02-13T00:48:50.909] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:48:50.952] [INFO] cheese - inserting 1000 documents. first: José Antonio Díaz García and last: Open-bill stork +[2018-02-13T00:48:50.991] [INFO] cheese - inserting 1000 documents. first: Robert David Mariani and last: Sit-in movement +[2018-02-13T00:48:50.999] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T00:48:51.027] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T00:48:51.148] [INFO] cheese - inserting 1000 documents. first: Bulgarian Hound and last: Amalda angustata +[2018-02-13T00:48:51.191] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T00:48:51.250] [INFO] cheese - inserting 1000 documents. first: UEFA Euro 1996 Group C and last: File:Nick Gallegos.jpg +[2018-02-13T00:48:51.292] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T00:48:51.396] [INFO] cheese - inserting 1000 documents. first: Roydon Island Conservation Area and last: Secretary General of FIBA +[2018-02-13T00:48:51.437] [INFO] cheese - inserting 1000 documents. first: Chancelade man and last: File:The spiral model.jpg +[2018-02-13T00:48:51.437] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T00:48:51.481] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T00:48:51.558] [INFO] cheese - inserting 1000 documents. first: Amalda aureocallosa and last: M. A. Muthiah Chettiar +[2018-02-13T00:48:51.581] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Hiwhispees and last: Tempest (disambiguation) +[2018-02-13T00:48:51.612] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T00:48:51.613] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:48:51.686] [INFO] cheese - inserting 1000 documents. first: Teste de Turke and last: Steeves, William +[2018-02-13T00:48:51.716] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:48:51.852] [INFO] cheese - inserting 1000 documents. first: Pamela Abbott and last: Jake Perry +[2018-02-13T00:48:51.899] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:48:51.947] [INFO] cheese - inserting 1000 documents. first: Harvey Girls and last: Reem Al Numery +[2018-02-13T00:48:51.970] [INFO] cheese - inserting 1000 documents. first: Steffe, William and last: Help:IPA for Azeri +[2018-02-13T00:48:51.979] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T00:48:51.998] [INFO] cheese - inserting 1000 documents. first: Performed and last: Bob Murphy (broadcaster) +[2018-02-13T00:48:51.999] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:48:52.051] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T00:48:52.205] [INFO] cheese - inserting 1000 documents. first: Gąsawa Massacre and last: Chionanthus elaeocarpus +[2018-02-13T00:48:52.245] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T00:48:52.306] [INFO] cheese - inserting 1000 documents. first: Ornamental initial and last: Wikipedia:Peer review/Laterite/archive1 +[2018-02-13T00:48:52.329] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Gresham, Oregon and last: Trueheart, William +[2018-02-13T00:48:52.338] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T00:48:52.353] [INFO] cheese - inserting 1000 documents. first: Utah State Route 319 and last: Wikipedia:Articles for deletion/Yorusora ni YOUKISS! +[2018-02-13T00:48:52.365] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:48:52.392] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T00:48:52.624] [INFO] cheese - inserting 1000 documents. first: Chionanthus insignis and last: Ratnagiri-Sindhudurg (Lok Sabha constituency) +[2018-02-13T00:48:52.646] [INFO] cheese - inserting 1000 documents. first: Truelove, William and last: Corinne Olympios +[2018-02-13T00:48:52.678] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T00:48:52.684] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T00:48:52.689] [INFO] cheese - inserting 1000 documents. first: List of Ministers of the Universal Life Church and last: Moviliţa, Constanţa +[2018-02-13T00:48:52.741] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:48:52.781] [INFO] cheese - inserting 1000 documents. first: Daddy Longlegs (2009 film) and last: Earth juice +[2018-02-13T00:48:52.843] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T00:48:52.923] [INFO] cheese - inserting 1000 documents. first: Category:1877 disestablishments in Missouri and last: Template:2017–18 Welsh Premier League table +[2018-02-13T00:48:52.954] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:48:53.022] [INFO] cheese - inserting 1000 documents. first: File:Robert Nelson - Broken Bulb Studios.jpg and last: File:QormiFC.png +[2018-02-13T00:48:53.053] [INFO] cheese - inserting 1000 documents. first: Category:Kazakhstan sports templates and last: Template:Fb team Slaven Belupo +[2018-02-13T00:48:53.069] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:48:53.092] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:48:53.181] [INFO] cheese - inserting 1000 documents. first: Template:USAF Weapons and last: A.S. Lucchese Libertas +[2018-02-13T00:48:53.221] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T00:48:53.302] [INFO] cheese - inserting 1000 documents. first: Draft:Vicente Barros and last: Category:Companies based in Chelyabinsk Oblast +[2018-02-13T00:48:53.340] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T00:48:53.442] [INFO] cheese - inserting 1000 documents. first: List of stations on the Bakerloo line and last: Majed Baryan +[2018-02-13T00:48:53.453] [INFO] cheese - inserting 1000 documents. first: Brendan Healy (comic) and last: Maura Dynasty +[2018-02-13T00:48:53.473] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:48:53.486] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T00:48:53.515] [INFO] cheese - inserting 1000 documents. first: Devudu Chesina Manushulu and last: Deathcore music +[2018-02-13T00:48:53.549] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:48:53.667] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Omsk Oblast and last: Category:Pride parades in India +[2018-02-13T00:48:53.701] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:48:53.853] [INFO] cheese - inserting 1000 documents. first: TVA Shawnee and last: Template:Did you know nominations/Phyllis Richman +[2018-02-13T00:48:53.878] [INFO] cheese - inserting 1000 documents. first: John Parrish (baseball player) and last: Category:Clayton locomotives +[2018-02-13T00:48:53.886] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:48:53.905] [INFO] cheese - inserting 1000 documents. first: The Second Coming of Jesus Christ and last: Category:Bodies of water of Sanilac County, Michigan +[2018-02-13T00:48:53.920] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T00:48:53.936] [INFO] cheese - batch complete in: 0.235 secs +[2018-02-13T00:48:54.023] [INFO] cheese - inserting 1000 documents. first: Commemorative coins of Poland: 2010 and last: Portal:Speculative fiction/Anniversaries/June/June 15 +[2018-02-13T00:48:54.089] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T00:48:54.138] [INFO] cheese - inserting 1000 documents. first: Aspy Bay and last: Draft:Georges Balagny +[2018-02-13T00:48:54.187] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:48:54.237] [INFO] cheese - inserting 1000 documents. first: Eesti Orienteerumisliit and last: Template:Los Angeles Lakers 1979-80 NBA champions +[2018-02-13T00:48:54.275] [INFO] cheese - inserting 1000 documents. first: Mooyah and last: File:KQBL 101.9TheBull logo.png +[2018-02-13T00:48:54.285] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T00:48:54.341] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T00:48:54.536] [INFO] cheese - inserting 1000 documents. first: Slender-billed cuckoo-shrike and last: Tyssilio +[2018-02-13T00:48:54.547] [INFO] cheese - inserting 1000 documents. first: Honda Touru and last: 2006 UCI Track Cycling World Championships – Men's 1 km Time Trial +[2018-02-13T00:48:54.588] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:48:54.599] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T00:48:54.703] [INFO] cheese - inserting 1000 documents. first: Template:Los Angeles Lakers 1981-82 NBA champions and last: Chiba Institute of Technology +[2018-02-13T00:48:54.733] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pomarj and last: Category:Earls of Dorset +[2018-02-13T00:48:54.746] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T00:48:54.772] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:48:54.876] [INFO] cheese - inserting 1000 documents. first: Noorda molybdis and last: ASC-2 +[2018-02-13T00:48:54.903] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:48:54.943] [INFO] cheese - inserting 1000 documents. first: 2007 UCI Track Cycling World Championships – Men's 1 km Time Trial and last: Portal:Ontario/Selected biography +[2018-02-13T00:48:54.987] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T00:48:55.049] [INFO] cheese - inserting 1000 documents. first: Template:NCAA conference full membership table and last: Draft:Asif Ghauri +[2018-02-13T00:48:55.078] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:48:55.109] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anthony Nigro and last: Wikipedia:Bots/Requests for approval/naudefjbot +[2018-02-13T00:48:55.155] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T00:48:55.164] [INFO] cheese - inserting 1000 documents. first: 5 (Peanuts) and last: Category:Nicaragua Copa Centroamericana squad navigational boxes +[2018-02-13T00:48:55.215] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:48:55.339] [INFO] cheese - inserting 1000 documents. first: Grade II listed buildings in Liverpool-L17 and last: Catoctin, Arizona +[2018-02-13T00:48:55.348] [INFO] cheese - inserting 1000 documents. first: Muhtarophis and last: I325 +[2018-02-13T00:48:55.377] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:48:55.384] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:48:55.437] [INFO] cheese - inserting 1000 documents. first: Template:Simply Red and last: Propagation parameters +[2018-02-13T00:48:55.467] [INFO] cheese - inserting 1000 documents. first: Category:1883 establishments in Manitoba and last: Category:Electronic albums by Portuguese artists +[2018-02-13T00:48:55.469] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:48:55.505] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T00:48:55.643] [INFO] cheese - inserting 1000 documents. first: Portal:Nova Scotia/Selected article/2 and last: Gibbula adriatica +[2018-02-13T00:48:55.662] [INFO] cheese - inserting 1000 documents. first: 2017 Finsbury Park Mosque attack and last: Category:Companies based in the London Borough of Hammersmith and Fulham +[2018-02-13T00:48:55.681] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:48:55.695] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T00:48:55.735] [INFO] cheese - inserting 1000 documents. first: File:Way of the Samurai Coverart.png and last: Journey of Souls +[2018-02-13T00:48:55.784] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:48:55.832] [INFO] cheese - inserting 1000 documents. first: File:Kannada film Ramachaari poster.jpg and last: Mousehole, Cornwall +[2018-02-13T00:48:55.875] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:48:55.959] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code United States Pennsylvania and last: Lewes Presbyterian Church +[2018-02-13T00:48:56.002] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T00:48:56.042] [INFO] cheese - inserting 1000 documents. first: Op 47 and last: Herr Jesu Christ, du höchstes Gut +[2018-02-13T00:48:56.085] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T00:48:56.201] [INFO] cheese - inserting 1000 documents. first: Andukondan and last: Template:ISO 3166 code Cambodia Kampot +[2018-02-13T00:48:56.219] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T00:48:56.231] [INFO] cheese - inserting 1000 documents. first: Category:Ice hockey competitions in Asia by country and last: Category:1920 establishments in Saskatchewan +[2018-02-13T00:48:56.243] [INFO] cheese - inserting 1000 documents. first: Earnings Quality and last: Achleitner +[2018-02-13T00:48:56.266] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T00:48:56.304] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T00:48:56.363] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Cambodia Kâmpôt and last: Template:ISO 3166 code Honduras Copán +[2018-02-13T00:48:56.386] [INFO] cheese - batch complete in: 0.167 secs +[2018-02-13T00:48:56.496] [INFO] cheese - inserting 1000 documents. first: Renad Zhdanov and last: File:Rob Buckley Jr of Towanda Pa and Ang his wife of 20 yrs.jpg +[2018-02-13T00:48:56.523] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Honduras Cortés and last: Template:ISO 3166 code Liechtenstein Eschen +[2018-02-13T00:48:56.526] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T00:48:56.544] [INFO] cheese - batch complete in: 0.158 secs +[2018-02-13T00:48:56.568] [INFO] cheese - inserting 1000 documents. first: File:Life Begins with Love.jpg and last: Category:1990s Romanian television series debuts +[2018-02-13T00:48:56.606] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:48:56.627] [INFO] cheese - inserting 1000 documents. first: The Diplomat (novel) and last: Bacolod City-class logistics support vessel +[2018-02-13T00:48:56.673] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T00:48:56.674] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Liechtenstein Gamprin and last: Template:ISO 3166 code Poland Podlaskie +[2018-02-13T00:48:56.694] [INFO] cheese - batch complete in: 0.15 secs +[2018-02-13T00:48:56.843] [INFO] cheese - inserting 1000 documents. first: Template:Chile Vamos/meta/shortname and last: Nspr +[2018-02-13T00:48:56.848] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Poland Pomorskie and last: Template:ISO 3166 code Sudan Garb-al-Istiwaiyyah +[2018-02-13T00:48:56.861] [INFO] cheese - batch complete in: 0.167 secs +[2018-02-13T00:48:56.868] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T00:48:56.948] [INFO] cheese - inserting 1000 documents. first: Category:1996 Romanian television series debuts and last: SR 211 (OH) +[2018-02-13T00:48:56.970] [INFO] cheese - inserting 1000 documents. first: Portal:Chicago/Selected list/7 and last: Złotniczki +[2018-02-13T00:48:56.982] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T00:48:56.994] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Sudan Gharb al Istiwaiyya and last: Template:Armenian Culture +[2018-02-13T00:48:57.009] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T00:48:57.012] [INFO] cheese - batch complete in: 0.151 secs +[2018-02-13T00:48:57.167] [INFO] cheese - inserting 1000 documents. first: File:Clay Greenfield Motorsports.png and last: Wikipedia:Articles for deletion/Lee Dae-hwi +[2018-02-13T00:48:57.213] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T00:48:57.304] [INFO] cheese - inserting 1000 documents. first: Złotniczki, Kuyavian-Pomeranian Voivodeship and last: Portal:Scotland/Selected quote/Week 39, 2008 +[2018-02-13T00:48:57.305] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Uganda Oyam and last: Pakistanis in Bangladesh +[2018-02-13T00:48:57.342] [INFO] cheese - inserting 1000 documents. first: SR 212 (OH) and last: French playing cards +[2018-02-13T00:48:57.344] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T00:48:57.349] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T00:48:57.388] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:48:57.458] [INFO] cheese - inserting 1000 documents. first: Category:Wall anchors and last: Scabricola fissurata +[2018-02-13T00:48:57.491] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:48:57.753] [INFO] cheese - inserting 1000 documents. first: File:REC 4 soundtrack.jpg and last: Wedelia rubra +[2018-02-13T00:48:57.811] [INFO] cheese - inserting 1000 documents. first: Fernand Jourdant and last: File:65 redroses.jpg +[2018-02-13T00:48:57.833] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T00:48:57.849] [INFO] cheese - inserting 1000 documents. first: Kevin Oghenetega Tamaraebi Bakumo-Abraham and last: Wen Chang Temple +[2018-02-13T00:48:57.853] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:48:57.920] [INFO] cheese - inserting 1000 documents. first: Portal:Scotland/Selected quote/Week 40, 2008 and last: Category:C-Class Holy Roman Empire articles +[2018-02-13T00:48:57.921] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T00:48:58.049] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T00:48:58.107] [INFO] cheese - inserting 476 documents. first: Racial bias and last: David Green (NASCAR) +[2018-02-13T00:48:58.180] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:48:58.180] [INFO] cheese - worker pid:56524 is done. inserted 2743477 pages in 0 secs. +[2018-02-13T00:48:58.286] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chevy Chase Elementary School and last: Chirinda Forest Botanical Reserve +[2018-02-13T00:48:58.326] [INFO] cheese - inserting 1000 documents. first: Surčin railway station and last: Sidi-Amara +[2018-02-13T00:48:58.343] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T00:48:58.378] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T00:48:58.493] [INFO] cheese - inserting 1000 documents. first: Foksal Foundation and last: File:KBSE33.jpg +[2018-02-13T00:48:58.532] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T00:48:58.617] [INFO] cheese - inserting 1000 documents. first: Guillaume Kasbarian and last: Draft:Tap & Go +[2018-02-13T00:48:58.619] [INFO] cheese - inserting 1000 documents. first: Khushal Khan Khattak University Karak and last: Category:Nichols and May albums +[2018-02-13T00:48:58.645] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:48:58.647] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:48:58.879] [INFO] cheese - inserting 1000 documents. first: Duets 2001 and last: Pseudonoorda brunneifusalis +[2018-02-13T00:48:58.906] [INFO] cheese - inserting 1000 documents. first: File:Clary 2008.JPG and last: High Rock Canyon Hills +[2018-02-13T00:48:58.907] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:48:58.934] [INFO] cheese - inserting 1000 documents. first: File:Young Eisner Scholars (logo).jpg and last: Category:1958 documents +[2018-02-13T00:48:58.948] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:48:58.973] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:48:59.125] [INFO] cheese - inserting 1000 documents. first: Pseudonoorda distigmalis and last: Category:1962 Hungarian television series debuts +[2018-02-13T00:48:59.154] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:48:59.171] [INFO] cheese - inserting 1000 documents. first: Poteau School Gymnasium-Auditorium and last: Draft:JavaParser +[2018-02-13T00:48:59.196] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:48:59.239] [INFO] cheese - inserting 1000 documents. first: BD-60 and last: Belce +[2018-02-13T00:48:59.278] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:48:59.373] [INFO] cheese - inserting 1000 documents. first: Nathaniel Davies and last: Category:Young Fathers albums +[2018-02-13T00:48:59.401] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:48:59.428] [INFO] cheese - inserting 1000 documents. first: Vikentije I, Archbishop of Peć and last: Third Asquith ministry +[2018-02-13T00:48:59.453] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T00:48:59.517] [INFO] cheese - inserting 1000 documents. first: NG-EK and last: Wikipedia:Articles for deletion/Racebannon +[2018-02-13T00:48:59.551] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T00:48:59.671] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Laxmi Narayan Chaudhary and last: Category:1953 in literature +[2018-02-13T00:48:59.709] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:48:59.746] [INFO] cheese - inserting 1000 documents. first: Christine Barber and last: Malaysia-China Friendship Year +[2018-02-13T00:48:59.797] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T00:48:59.829] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The union of Iranian library and information science student associations (ADKA) and last: Category:C-Class Dravidian people articles +[2018-02-13T00:48:59.870] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:48:59.984] [INFO] cheese - inserting 1000 documents. first: Category:1954 in literature and last: Like the Roman: The Life of Enoch Powell +[2018-02-13T00:49:00.012] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:49:00.045] [INFO] cheese - inserting 1000 documents. first: 2 factor authentication and last: Renata von Tscharner +[2018-02-13T00:49:00.073] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:49:00.158] [INFO] cheese - inserting 1000 documents. first: Paul Kirk Manhunter and last: Challa Kota +[2018-02-13T00:49:00.198] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T00:49:00.247] [INFO] cheese - inserting 1000 documents. first: Tyias and last: Template:Ckb +[2018-02-13T00:49:00.267] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:49:00.370] [INFO] cheese - inserting 1000 documents. first: William Christensen and last: MD 107 +[2018-02-13T00:49:00.402] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T00:49:00.456] [INFO] cheese - inserting 1000 documents. first: File:Kshan Amrutache cover.jpg.jpg and last: Constituency PP-125 (Sialkot-VI) +[2018-02-13T00:49:00.485] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T00:49:00.490] [INFO] cheese - inserting 1000 documents. first: Template:Clw and last: Category:People from Collinsville, Mississippi +[2018-02-13T00:49:00.522] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:49:00.630] [INFO] cheese - inserting 1000 documents. first: Route 107 (Maryland) and last: Category:Bilateral relations of San Marino +[2018-02-13T00:49:00.662] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:49:00.705] [INFO] cheese - inserting 1000 documents. first: Constituency PP-158 (Lahore-XXII) and last: Lund (Kristiansand) +[2018-02-13T00:49:00.726] [INFO] cheese - inserting 1000 documents. first: Riyanka chanda and last: One Legged Inverted Staff Pose - Eka Pada Viparita Dandasana +[2018-02-13T00:49:00.733] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:49:00.751] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:49:00.916] [INFO] cheese - inserting 1000 documents. first: Category:Bilateral relations of Ukraine and last: File:Kimi Tsunagi Five M Cover.jpg +[2018-02-13T00:49:00.950] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:49:00.960] [INFO] cheese - inserting 1000 documents. first: Yaël Braun-Pivet and last: Eakin, Michael +[2018-02-13T00:49:00.995] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:49:01.090] [INFO] cheese - inserting 1000 documents. first: James Harold Thompson and last: Category:Film schools in New Mexico +[2018-02-13T00:49:01.131] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T00:49:01.160] [INFO] cheese - inserting 1000 documents. first: Thomas J. Fogarty and last: Dré Moore +[2018-02-13T00:49:01.191] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T00:49:01.217] [INFO] cheese - inserting 1000 documents. first: Ealy, Michael and last: Category:Bodies of water of Alabama by county +[2018-02-13T00:49:01.243] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:49:01.509] [INFO] cheese - inserting 1000 documents. first: Category:1980s Thai television series debuts and last: Category:1986 NCAA Division III football season +[2018-02-13T00:49:01.513] [INFO] cheese - inserting 1000 documents. first: I'm Willing (Marker Starling album) and last: Category:Railway stations in North Western Province +[2018-02-13T00:49:01.548] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T00:49:01.551] [INFO] cheese - inserting 1000 documents. first: William Snell and last: Room For Love +[2018-02-13T00:49:01.561] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T00:49:01.605] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T00:49:01.828] [INFO] cheese - inserting 1000 documents. first: Vaccine denial and last: Justice Durham (disambiguation) +[2018-02-13T00:49:01.853] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T00:49:01.935] [INFO] cheese - inserting 1000 documents. first: Category:1987 NCAA Division III football season and last: Sandra Webster +[2018-02-13T00:49:01.967] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T00:49:01.990] [INFO] cheese - inserting 1000 documents. first: Getap, Aragatsotn and last: Kyushu Ohtani Junior College +[2018-02-13T00:49:02.042] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T00:49:02.051] [INFO] cheese - inserting 1000 documents. first: Mission scanner and last: Vancouver Group of Medical Editors +[2018-02-13T00:49:02.074] [INFO] cheese - batch complete in: 0.221 secs +[2018-02-13T00:49:02.206] [INFO] cheese - inserting 1000 documents. first: Westmoreland County Coal Strike of 1910–11 and last: Category:Centuries in Phnom Penh +[2018-02-13T00:49:02.233] [INFO] cheese - batch complete in: 0.266 secs +[2018-02-13T00:49:02.294] [INFO] cheese - inserting 1000 documents. first: Wellington Hospital (United Kingdom) and last: Category:Copa América stadiums +[2018-02-13T00:49:02.321] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T00:49:02.378] [INFO] cheese - inserting 1000 documents. first: Gudinski, Michael and last: I Just Feel So "Sweet" +[2018-02-13T00:49:02.409] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T00:49:02.468] [INFO] cheese - inserting 1000 documents. first: Category:History of Phnom Penh and last: Hersham Boys +[2018-02-13T00:49:02.495] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:49:02.572] [INFO] cheese - inserting 1000 documents. first: WHCR-LP and last: Johnny Walsh (hurler) +[2018-02-13T00:49:02.601] [INFO] cheese - inserting 1000 documents. first: Elorde and last: Category:Church of England archdeacons +[2018-02-13T00:49:02.605] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T00:49:02.628] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T00:49:02.693] [INFO] cheese - inserting 1000 documents. first: André Brunot and last: Blepharomastix mononalis +[2018-02-13T00:49:02.710] [INFO] cheese - batch complete in: 0.215 secs +[2018-02-13T00:49:02.847] [INFO] cheese - inserting 1000 documents. first: File:Fos Psila Cover.jpg and last: Category:Anglican archdeacons in Canada +[2018-02-13T00:49:02.870] [INFO] cheese - batch complete in: 0.242 secs +[2018-02-13T00:49:02.926] [INFO] cheese - inserting 1000 documents. first: Template:1949 BAA Draft and last: Roundtop Antiques Fair +[2018-02-13T00:49:02.965] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T00:49:02.999] [INFO] cheese - inserting 1000 documents. first: Blepharomastix hyperochalis and last: 2014–15 FK Dukla Prague season +[2018-02-13T00:49:03.041] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:49:03.069] [INFO] cheese - inserting 1000 documents. first: Hymenochilus confertus and last: Egilof von Hohenheim +[2018-02-13T00:49:03.101] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T00:49:03.230] [INFO] cheese - inserting 1000 documents. first: Martin Sherson and last: Ford Motor Company Assembly Plant (Atlanta) +[2018-02-13T00:49:03.261] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T00:49:03.295] [INFO] cheese - inserting 1000 documents. first: Karmika Kallanalla and last: Category:2009 CAF Confederation Cup +[2018-02-13T00:49:03.335] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T00:49:03.381] [INFO] cheese - inserting 1000 documents. first: Jay Z and last: Peter S. Kalikow +[2018-02-13T00:49:03.427] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T00:49:03.609] [INFO] cheese - inserting 1000 documents. first: Mantang narrow mouthed frog and last: Wikipedia:Possibly unfree files/2014 November 30 +[2018-02-13T00:49:03.653] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:49:03.695] [INFO] cheese - inserting 1000 documents. first: Python (painter) and last: Category:Currency introduced in 1948 +[2018-02-13T00:49:03.719] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T00:49:03.764] [INFO] cheese - inserting 1000 documents. first: 1923 Grand Prix season and last: Category:1927 in Lebanon +[2018-02-13T00:49:03.805] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T00:49:03.882] [INFO] cheese - inserting 1000 documents. first: K47KU-D and last: Dennis L. Algiere +[2018-02-13T00:49:03.912] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:49:03.972] [INFO] cheese - inserting 1000 documents. first: Quartilla and last: McCormack, Michael +[2018-02-13T00:49:04.029] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:49:04.144] [INFO] cheese - inserting 1000 documents. first: Kolkata-Gorakhpur Poorvanchal Express and last: K22IT +[2018-02-13T00:49:04.175] [INFO] cheese - inserting 1000 documents. first: Antonio Caponigro and last: Ananda Marg +[2018-02-13T00:49:04.174] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:49:04.219] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T00:49:04.301] [INFO] cheese - inserting 1000 documents. first: McCoy, Michael and last: File:WRJD Poder1410am logo.jpg +[2018-02-13T00:49:04.341] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:49:04.404] [INFO] cheese - inserting 1000 documents. first: K23BP and last: Hunedoara-Timisana +[2018-02-13T00:49:04.433] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:49:04.562] [INFO] cheese - inserting 1000 documents. first: Hitler's Pawn and last: List of Dallas Stars draft picks +[2018-02-13T00:49:04.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Djparagbiswas and last: Niavarani, Michael +[2018-02-13T00:49:04.606] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T00:49:04.606] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T00:49:04.821] [INFO] cheese - inserting 1000 documents. first: Chestnuts long barrow and last: List of radio stations in Nelson +[2018-02-13T00:49:04.865] [INFO] cheese - inserting 1000 documents. first: Nicholas, Michael and last: Argentinian army +[2018-02-13T00:49:04.865] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:49:04.905] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:49:05.022] [INFO] cheese - inserting 1000 documents. first: Cedarmere-Clayton Estates and last: File:Sparklers on the Fourth of July in Lewiston Maine.JPG +[2018-02-13T00:49:05.078] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T00:49:05.243] [INFO] cheese - inserting 1000 documents. first: Fort-221 and last: Stenocorus irroratus +[2018-02-13T00:49:05.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2017 June 30 and last: Military Vicariate of Paraguay +[2018-02-13T00:49:05.296] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T00:49:05.323] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T00:49:05.544] [INFO] cheese - inserting 1000 documents. first: Super-numerary teeth and last: Aguda +[2018-02-13T00:49:05.607] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T00:49:05.723] [INFO] cheese - inserting 1000 documents. first: Stenocorus spinicornis and last: Lennox Alves +[2018-02-13T00:49:05.769] [INFO] cheese - inserting 1000 documents. first: IMO 8635162 and last: Mohammad Usman (politician) +[2018-02-13T00:49:05.811] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T00:49:05.831] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T00:49:06.088] [INFO] cheese - inserting 1000 documents. first: Hindustantimes and last: Scânteia, Ialomița +[2018-02-13T00:49:06.100] [INFO] cheese - inserting 1000 documents. first: Category:2011 in Prince Edward Island and last: Bocchoris trivitralis +[2018-02-13T00:49:06.125] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T00:49:06.128] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T00:49:06.153] [INFO] cheese - inserting 1000 documents. first: Mir Humayun Aziz Kurd and last: Nadia Kassem +[2018-02-13T00:49:06.186] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:49:06.412] [INFO] cheese - inserting 1000 documents. first: Don Wilson (Canadian football) and last: Category:1991 Icelandic television series debuts +[2018-02-13T00:49:06.446] [INFO] cheese - inserting 1000 documents. first: NGC 7035A and last: Fay Foster +[2018-02-13T00:49:06.450] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:49:06.478] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:49:06.487] [INFO] cheese - inserting 1000 documents. first: Săveni, Ialomița and last: American games +[2018-02-13T00:49:06.526] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T00:49:06.730] [INFO] cheese - inserting 1000 documents. first: Category:1992 Icelandic television series debuts and last: Wolf in White Van +[2018-02-13T00:49:06.757] [INFO] cheese - inserting 1000 documents. first: Category:Archaeological protected monuments in Kegalle District and last: Colour-Staff method +[2018-02-13T00:49:06.757] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:49:06.802] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:49:06.862] [INFO] cheese - inserting 1000 documents. first: Residenz, Munich and last: Category:People executed by the Weimar Republic +[2018-02-13T00:49:06.900] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T00:49:06.970] [INFO] cheese - inserting 1000 documents. first: Part lace and last: Category:Cities in Kansas City metropolitan area +[2018-02-13T00:49:06.990] [INFO] cheese - batch complete in: 0.233 secs +[2018-02-13T00:49:07.072] [INFO] cheese - inserting 1000 documents. first: Colour-Staff and last: Luna Nørgaard Gewitz +[2018-02-13T00:49:07.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Strings (Unix) and last: Stellarium +[2018-02-13T00:49:07.121] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:49:07.136] [INFO] cheese - batch complete in: 0.236 secs +[2018-02-13T00:49:07.227] [INFO] cheese - inserting 1000 documents. first: Bobby Whitehead and last: List of churches in Frederikssund Municipality +[2018-02-13T00:49:07.266] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T00:49:07.399] [INFO] cheese - inserting 1000 documents. first: IEEE Transactions on NanoBioscience and last: Butterfly (Deen album) +[2018-02-13T00:49:07.424] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T00:49:07.445] [INFO] cheese - inserting 1000 documents. first: The Real Ronaldo and last: USS Florence +[2018-02-13T00:49:07.459] [INFO] cheese - inserting 1000 documents. first: Bogle-Chandler case and last: Category:Albums produced by John Hill (record producer) +[2018-02-13T00:49:07.465] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:49:07.484] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:49:07.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Glory of Heracles and last: File:Washington Redskins logo.svg +[2018-02-13T00:49:07.664] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:49:07.675] [INFO] cheese - inserting 1000 documents. first: 1970 World Championship of Drivers and last: George Klein (disc jockey) +[2018-02-13T00:49:07.682] [INFO] cheese - inserting 1000 documents. first: Category:Track cycling at the 1900 Summer Olympics and last: Gettler Boys +[2018-02-13T00:49:07.705] [INFO] cheese - batch complete in: 0.221 secs +[2018-02-13T00:49:07.707] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:49:07.881] [INFO] cheese - inserting 1000 documents. first: Karghilik and last: Eduardo e cristina +[2018-02-13T00:49:07.900] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Mexican cinema articles and last: Caitlin Reilly and Jamieson Wilson v Secretary of State for Work and Pensions +[2018-02-13T00:49:07.909] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:49:07.927] [INFO] cheese - batch complete in: 0.222 secs +[2018-02-13T00:49:07.931] [INFO] cheese - inserting 1000 documents. first: San Carlos Handicap and last: Record, Michael +[2018-02-13T00:49:07.965] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T00:49:08.144] [INFO] cheese - inserting 1000 documents. first: Template:TFA title/December 10, 2014 and last: Template:Did you know nominations/Ovi (poetry) +[2018-02-13T00:49:08.185] [INFO] cheese - inserting 1000 documents. first: Music of the SaGa series and last: Przepałkowo +[2018-02-13T00:49:08.188] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:49:08.203] [INFO] cheese - inserting 1000 documents. first: Rector, Michael and last: Philippe Etienne (athlete) +[2018-02-13T00:49:08.221] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:49:08.233] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:49:08.488] [INFO] cheese - inserting 1000 documents. first: Rimau-rimau and last: Arao Station (Kumamoto) +[2018-02-13T00:49:08.495] [INFO] cheese - inserting 1000 documents. first: List of Statutes of New Zealand (1840–90) and last: Labor election +[2018-02-13T00:49:08.502] [INFO] cheese - inserting 1000 documents. first: Psilocybe pseudozapotecorum and last: Category:Albania transport templates +[2018-02-13T00:49:08.529] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T00:49:08.556] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T00:49:08.568] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:49:08.798] [INFO] cheese - inserting 644 documents. first: Minami-Arao Station and last: HD 206067 +[2018-02-13T00:49:08.828] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:49:08.828] [INFO] cheese - worker pid:56523 is done. inserted 2756645 pages in 0 secs. +[2018-02-13T00:49:08.859] [INFO] cheese - inserting 1000 documents. first: Labor leadership election and last: Template:2017–18 Armenian Premier League table +[2018-02-13T00:49:08.862] [INFO] cheese - inserting 1000 documents. first: Made in Texas and last: Template:Big Ten Conference Women's Basketball Tournament navbox +[2018-02-13T00:49:08.887] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:49:08.893] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T00:49:09.045] [INFO] cheese - inserting 1000 documents. first: Category:Judicial Committee of the Privy Council cases on appeal from Brunei and last: N-65 National Highway +[2018-02-13T00:49:09.059] [INFO] cheese - batch complete in: 0.166 secs +[2018-02-13T00:49:09.092] [INFO] cheese - inserting 1000 documents. first: Category:Ceramics manufacturers of Portugal and last: High Life (film) +[2018-02-13T00:49:09.110] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:49:09.246] [INFO] cheese - inserting 1000 documents. first: Category:Banks disestablished in 2012 and last: Category:Film schools in Bulgaria +[2018-02-13T00:49:09.261] [INFO] cheese - inserting 1000 documents. first: Aṣṭachāp and last: Category:FIA Formula 2 Championship teams +[2018-02-13T00:49:09.268] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:49:09.278] [INFO] cheese - batch complete in: 0.168 secs +[2018-02-13T00:49:09.440] [INFO] cheese - inserting 1000 documents. first: Corynothrix and last: European Youth Orienteering Championships +[2018-02-13T00:49:09.456] [INFO] cheese - batch complete in: 0.178 secs +[2018-02-13T00:49:09.469] [INFO] cheese - inserting 1000 documents. first: Smart (Hey! Say! JUMP album) and last: Lúcio Flávio, o Passageiro da Agonia +[2018-02-13T00:49:09.493] [INFO] cheese - batch complete in: 0.225 secs +[2018-02-13T00:49:09.597] [INFO] cheese - inserting 1000 documents. first: Minecraft: Console Edition and last: English Electric KDP10 +[2018-02-13T00:49:09.615] [INFO] cheese - batch complete in: 0.159 secs +[2018-02-13T00:49:09.660] [INFO] cheese - inserting 1000 documents. first: Template:User USAF SAC and last: Signé Arsène Lupin +[2018-02-13T00:49:09.678] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T00:49:09.774] [INFO] cheese - inserting 1000 documents. first: Category:1890s establishments in Georgia (country) and last: Holywell Park Conference Centre +[2018-02-13T00:49:09.790] [INFO] cheese - batch complete in: 0.175 secs +[2018-02-13T00:49:09.841] [INFO] cheese - inserting 1000 documents. first: George Jones (musician) and last: Category:National Register of Historic Places in Putnam County, Ohio +[2018-02-13T00:49:09.867] [INFO] cheese - batch complete in: 0.189 secs +[2018-02-13T00:49:09.984] [INFO] cheese - inserting 1000 documents. first: Jean-Yves Mallat and last: Wikipedia:Database reports/Top new page reviewers +[2018-02-13T00:49:10.008] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T00:49:10.115] [INFO] cheese - inserting 1000 documents. first: Daira Dinpanah railway station and last: Sara Keane +[2018-02-13T00:49:10.148] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T00:49:10.224] [INFO] cheese - inserting 1000 documents. first: File:Yearbook photo of Elaine Anthony.jpg and last: Immersive Commerce (i-Commerce) +[2018-02-13T00:49:10.252] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:49:10.423] [INFO] cheese - inserting 1000 documents. first: Frédéric Bitsamou and last: Roberts Elementary +[2018-02-13T00:49:10.439] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T00:49:10.464] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of AdamTayl and last: Spanish forts of Texas +[2018-02-13T00:49:10.499] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:49:10.595] [INFO] cheese - inserting 1000 documents. first: O.M. Roberts Elementary and last: File:Kamen Rider 555, Paradise Lost, Blu-ray Cover.jpg +[2018-02-13T00:49:10.610] [INFO] cheese - batch complete in: 0.17 secs +[2018-02-13T00:49:10.727] [INFO] cheese - inserting 1000 documents. first: Cross-serial dependency and last: Category:2004 establishments in Laos +[2018-02-13T00:49:10.764] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T00:49:10.806] [INFO] cheese - inserting 1000 documents. first: Jailto Bonfim and last: Canton of Saint-Céré +[2018-02-13T00:49:10.833] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:49:11.017] [INFO] cheese - inserting 1000 documents. first: Category:1964 telenovelas and last: Daniel Graham (apothecary) +[2018-02-13T00:49:11.028] [INFO] cheese - inserting 1000 documents. first: Saint Ninian's Chapel and last: Military Division of the Potomac +[2018-02-13T00:49:11.043] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:49:11.061] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T00:49:11.226] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Plucheeae and last: Elvira Cabbarova +[2018-02-13T00:49:11.240] [INFO] cheese - batch complete in: 0.179 secs +[2018-02-13T00:49:11.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2014 December 2 and last: Category:SD Leioa footballers +[2018-02-13T00:49:11.268] [INFO] cheese - batch complete in: 0.225 secs +[2018-02-13T00:49:11.398] [INFO] cheese - inserting 1000 documents. first: Wandmacher, Michael and last: Countess of Harcourt (1812 ship) +[2018-02-13T00:49:11.420] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:49:11.430] [INFO] cheese - inserting 1000 documents. first: John Peace Jr. House and last: Texas State Highway 76 (pre-1939) +[2018-02-13T00:49:11.457] [INFO] cheese - batch complete in: 0.189 secs +[2018-02-13T00:49:11.618] [INFO] cheese - inserting 1000 documents. first: Grassland Research Institute and last: File:Betty1.jpg +[2018-02-13T00:49:11.640] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:49:11.686] [INFO] cheese - inserting 1000 documents. first: Texas State Highway 77 (pre-1939) and last: Cruz Family +[2018-02-13T00:49:11.710] [INFO] cheese - batch complete in: 0.253 secs +[2018-02-13T00:49:11.814] [INFO] cheese - inserting 1000 documents. first: Florrum and last: Dharmapuri, Telangana +[2018-02-13T00:49:11.840] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:49:11.900] [INFO] cheese - inserting 1000 documents. first: Diacme mopsalis and last: Turfan (volcano) +[2018-02-13T00:49:11.920] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:49:12.002] [INFO] cheese - inserting 1000 documents. first: Zavolzhye engine plant and last: Category:Bodies of water of Talladega County, Alabama +[2018-02-13T00:49:12.021] [INFO] cheese - batch complete in: 0.181 secs +[2018-02-13T00:49:12.143] [INFO] cheese - inserting 1000 documents. first: Category:Mexican telenovelas stubs and last: MakovskyIntegratedCommunications +[2018-02-13T00:49:12.180] [INFO] cheese - inserting 1000 documents. first: New Zealand Top 50 singles of 2005 and last: Charles Homan +[2018-02-13T00:49:12.182] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:49:12.201] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:49:12.366] [INFO] cheese - inserting 1000 documents. first: Linda Gross Theater and last: Wikipedia:Articles for deletion/Andrew Sesinyi +[2018-02-13T00:49:12.388] [INFO] cheese - inserting 1000 documents. first: Gentile converts to Judaism and last: Emmett Dougherty +[2018-02-13T00:49:12.391] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:49:12.412] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:49:12.587] [INFO] cheese - inserting 1000 documents. first: Thudiyalur railway station and last: File:Matlock Rose.jpeg +[2018-02-13T00:49:12.591] [INFO] cheese - inserting 1000 documents. first: Havat Ma'on and last: Tătăreşti, Străşeni +[2018-02-13T00:49:12.604] [INFO] cheese - batch complete in: 0.192 secs +[2018-02-13T00:49:12.610] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T00:49:12.762] [INFO] cheese - inserting 1000 documents. first: Draft:Ceosonson and last: Category:Bodies of water of Lee County, Iowa +[2018-02-13T00:49:12.790] [INFO] cheese - batch complete in: 0.186 secs +[2018-02-13T00:49:12.855] [INFO] cheese - inserting 1000 documents. first: Hendl and last: 1985 Women's World Open Squash Championship +[2018-02-13T00:49:12.889] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:49:13.003] [INFO] cheese - inserting 1000 documents. first: 1907 Syracuse Orangemen football team and last: Wikipedia:WikiProject Spam/Local/glaucoomfonds.nl +[2018-02-13T00:49:13.026] [INFO] cheese - batch complete in: 0.236 secs +[2018-02-13T00:49:13.143] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Metro FC and last: Şandor Gal +[2018-02-13T00:49:13.171] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T00:49:13.201] [INFO] cheese - inserting 1000 documents. first: Christian Green Wood Senior Secondary School and last: Cino, Maria +[2018-02-13T00:49:13.223] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:49:13.294] [INFO] cheese - inserting 1000 documents. first: Template:Infobox PBA team/doc and last: Akita Publishing Co., Ltd. +[2018-02-13T00:49:13.307] [INFO] cheese - batch complete in: 0.136 secs +[2018-02-13T00:49:13.391] [INFO] cheese - inserting 1000 documents. first: Ciobanu, Maria and last: Damla Colbay +[2018-02-13T00:49:13.414] [INFO] cheese - batch complete in: 0.191 secs +[2018-02-13T00:49:13.486] [INFO] cheese - inserting 1000 documents. first: Ştefania Vătafu and last: Category:Ragusan scholars +[2018-02-13T00:49:13.508] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:49:13.584] [INFO] cheese - inserting 1000 documents. first: Sri Konda Laxman Telangana State Horticultural University and last: Exeter vs Andover +[2018-02-13T00:49:13.602] [INFO] cheese - batch complete in: 0.188 secs +[2018-02-13T00:49:13.689] [INFO] cheese - inserting 1000 documents. first: Module:Location map/data/Vatican City/doc and last: Ken Wookey (footballer born 1922) +[2018-02-13T00:49:13.707] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:49:13.730] [INFO] cheese - inserting 1000 documents. first: Category:Bodies of water of Jefferson County, Mississippi and last: Category:Burials at Beaufort National Cemetery (South Carolina) +[2018-02-13T00:49:13.750] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T00:49:13.930] [INFO] cheese - inserting 1000 documents. first: Uday Express and last: File:Cook County Illinois Incorporated and Unincorporated areas Sauk Village Highlighted.svg +[2018-02-13T00:49:13.931] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saint Ignatius Church, Baltimore and last: File:GloryDaysSpringsteen.jpg +[2018-02-13T00:49:13.949] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:49:13.958] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T00:49:14.069] [INFO] cheese - inserting 1000 documents. first: File:Clair County Illinois Incorporated and Unincorporated areas Sauget Highlighted.svg and last: Wikipedia:WikiProject Spam/LinkReports/aurcade.com +[2018-02-13T00:49:14.081] [INFO] cheese - batch complete in: 0.132 secs +[2018-02-13T00:49:14.146] [INFO] cheese - inserting 1000 documents. first: Bau-Bataillon 121 and last: 1986 Intercontinental Final +[2018-02-13T00:49:14.175] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T00:49:14.339] [INFO] cheese - inserting 1000 documents. first: 24 Commando Regiment (United Kingdom) and last: Incertae sedis (Arctiinae) +[2018-02-13T00:49:14.396] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:49:14.489] [INFO] cheese - inserting 1000 documents. first: Taketomi Tokitoshi and last: CSA Scientific Research on the International Space Station +[2018-02-13T00:49:14.537] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T00:49:14.767] [INFO] cheese - inserting 1000 documents. first: Reputation (Lewis episode) and last: Cloeon fluviatile +[2018-02-13T00:49:14.799] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T00:49:14.840] [INFO] cheese - inserting 1000 documents. first: File:Crossroads marker.jpg and last: Category:Belizean television series endings by year +[2018-02-13T00:49:14.891] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T00:49:14.993] [INFO] cheese - inserting 1000 documents. first: Cloeon languidum and last: Dimeragrion +[2018-02-13T00:49:15.009] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:49:15.248] [INFO] cheese - inserting 1000 documents. first: Gillis Peeters and last: Kumar Sanu discography and filmography +[2018-02-13T00:49:15.268] [INFO] cheese - inserting 1000 documents. first: Calilestes and last: Kun, Maria +[2018-02-13T00:49:15.285] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T00:49:15.319] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:49:15.610] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Canada Amateur Hockey Association seasons and last: Draft:Pretail +[2018-02-13T00:49:15.640] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T00:49:15.644] [INFO] cheese - inserting 1000 documents. first: Kuncewiczowa, Maria and last: William Kelly (Australian cricketer) +[2018-02-13T00:49:15.721] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T00:49:16.173] [INFO] cheese - inserting 1000 documents. first: File:The Old Forester House.jpg and last: Wikipedia:Articles for deletion/Furler +[2018-02-13T00:49:16.185] [INFO] cheese - inserting 1000 documents. first: Captain America: Civil War (film) and last: Category:Songs written by Greg Camp +[2018-02-13T00:49:16.211] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T00:49:16.238] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T00:49:16.392] [INFO] cheese - inserting 1000 documents. first: Godson (surname) and last: File:Adams County Pennsylvania Incorporated and Unincorporated areas Arendtsville Highlighted.svg +[2018-02-13T00:49:16.412] [INFO] cheese - batch complete in: 0.201 secs +[2018-02-13T00:49:16.513] [INFO] cheese - inserting 1000 documents. first: Montecore: en unik tiger and last: The Breakwater +[2018-02-13T00:49:16.552] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T00:49:16.707] [INFO] cheese - inserting 1000 documents. first: File:Lackawanna County Pennsylvania Incorporated and Unincorporated areas Archbald Highlighted.svg and last: Phetchabun F.C. +[2018-02-13T00:49:16.741] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T00:49:16.780] [INFO] cheese - inserting 1000 documents. first: Category:1236 establishments in Italy and last: Bronius Laurinavicius +[2018-02-13T00:49:16.801] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T00:49:16.976] [INFO] cheese - inserting 1000 documents. first: Category:Presidents of the Senate (Cambodia) and last: Brăteni (disambiguation) +[2018-02-13T00:49:16.993] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dichromanthus and last: Black-and-white laughingthrush +[2018-02-13T00:49:16.998] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:49:17.027] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T00:49:17.281] [INFO] cheese - inserting 1000 documents. first: File:Go for It, Baby.jpg and last: File:Dane County Wisconsin Incorporated and Unincorporated areas Marshall Highlighted.svg +[2018-02-13T00:49:17.301] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T00:49:17.342] [INFO] cheese - inserting 1000 documents. first: Brătești (disambiguation) and last: W-X Freeway +[2018-02-13T00:49:17.370] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T00:49:17.446] [INFO] cheese - inserting 1000 documents. first: Ahmed Younis and last: File:Simon1Gameplay.png +[2018-02-13T00:49:17.462] [INFO] cheese - batch complete in: 0.161 secs +[2018-02-13T00:49:17.590] [INFO] cheese - inserting 1000 documents. first: Flint, Michigan railway station and last: Allendea +[2018-02-13T00:49:17.624] [INFO] cheese - inserting 1000 documents. first: Anomisma and last: File:Marion County West Virginia Incorporated and Unincorporated areas Barrackville Highlighted.svg +[2018-02-13T00:49:17.625] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:49:17.642] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:49:17.807] [INFO] cheese - inserting 1000 documents. first: File:Cabell County West Virginia Incorporated and Unincorporated areas Barboursville Highlighted.svg and last: Category:New Zealand youth international footballers +[2018-02-13T00:49:17.827] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T00:49:17.865] [INFO] cheese - inserting 1000 documents. first: Starkea and last: 1967–68 Yugoslav First Basketball League +[2018-02-13T00:49:17.892] [INFO] cheese - batch complete in: 0.267 secs +[2018-02-13T00:49:18.043] [INFO] cheese - inserting 1000 documents. first: 1964 All-Ireland Under-21 Football Championship and last: BBC2 Wales +[2018-02-13T00:49:18.075] [INFO] cheese - batch complete in: 0.248 secs +[2018-02-13T00:49:18.141] [INFO] cheese - inserting 1000 documents. first: Second Programme (NERIT) and last: Peerless +[2018-02-13T00:49:18.180] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:49:18.238] [INFO] cheese - inserting 1000 documents. first: Category:American lawyers admitted to the bar by reading law and last: Susan P. Holmes +[2018-02-13T00:49:18.256] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:49:18.436] [INFO] cheese - inserting 1000 documents. first: Walid Khazen and last: Category:2005 in English rugby league +[2018-02-13T00:49:18.440] [INFO] cheese - inserting 1000 documents. first: File:KairosDB Architecture Diagram.png and last: IMO 9155559 +[2018-02-13T00:49:18.465] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:49:18.479] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T00:49:18.700] [INFO] cheese - inserting 1000 documents. first: IMO 9155561 and last: Dipodarctus +[2018-02-13T00:49:18.724] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:49:18.737] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/edifice.cc and last: Râul Cheii (disambiguation) +[2018-02-13T00:49:18.772] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T00:49:18.887] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Jenna Joseph and last: FX Latin America +[2018-02-13T00:49:18.905] [INFO] cheese - batch complete in: 0.181 secs +[2018-02-13T00:49:18.982] [INFO] cheese - inserting 1000 documents. first: Bani Yas International Tournament and last: Category:National Assembly (Venezuela) +[2018-02-13T00:49:19.010] [INFO] cheese - batch complete in: 0.237 secs +[2018-02-13T00:49:19.045] [INFO] cheese - inserting 1000 documents. first: Category:Burials in Alameda County, California and last: File:Cullman County and Marshall County Alabama Incorporated and Unincorporated areas Arab Highlighted 0102116.svg +[2018-02-13T00:49:19.062] [INFO] cheese - batch complete in: 0.157 secs +[2018-02-13T00:49:19.194] [INFO] cheese - inserting 1000 documents. first: Category:Members of the National Assembly (Venezuela) and last: Template:Infobox Eurovision/1968 +[2018-02-13T00:49:19.219] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T00:49:19.247] [INFO] cheese - inserting 1000 documents. first: File:Lauderdale County Alabama Incorporated and Unincorporated areas Anderson Highlighted 0101756.svg and last: Wikipedia:Articles for deletion/Qrator +[2018-02-13T00:49:19.269] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:49:19.456] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/heropt.net and last: JS Hiuchi (AMS-4301) +[2018-02-13T00:49:19.462] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Eurovision/1969 and last: Tarma, Kentucky +[2018-02-13T00:49:19.483] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:49:19.498] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:49:19.773] [INFO] cheese - inserting 1000 documents. first: Strnovac and last: List of archaeological sites beyond national boundaries +[2018-02-13T00:49:19.818] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T00:49:19.979] [INFO] cheese - inserting 1000 documents. first: Canton of Castres-2 and last: File:Pinal County Arizona Incorporated and Unincorporated areas Wet Camp Village Highlighted 0482060.svg +[2018-02-13T00:49:20.024] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T00:49:20.093] [INFO] cheese - inserting 1000 documents. first: Biblia Paulistów and last: Category:1945 radio programme debuts +[2018-02-13T00:49:20.124] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:49:20.238] [INFO] cheese - inserting 1000 documents. first: File:La Paz County Arizona Incorporated and Unincorporated areas Wenden Highlighted 0481550.svg and last: Template:2017–18 First Professional Football League (Bulgaria) Relegation Round Group B table +[2018-02-13T00:49:20.257] [INFO] cheese - batch complete in: 0.233 secs +[2018-02-13T00:49:20.451] [INFO] cheese - inserting 1000 documents. first: Isabella de Coucy and last: Always (band) +[2018-02-13T00:49:20.456] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ROBLOX Studio and last: Template:Justcurious/doc +[2018-02-13T00:49:20.483] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:49:20.504] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T00:49:20.706] [INFO] cheese - inserting 1000 documents. first: Northern celadon and last: 🏴󠁣󠁡󠁳󠁫󠁿 +[2018-02-13T00:49:20.735] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:49:20.795] [INFO] cheese - inserting 1000 documents. first: Osage, Texas and last: Melanis cinaron +[2018-02-13T00:49:20.828] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T00:49:20.947] [INFO] cheese - inserting 1000 documents. first: Medard Makanga and last: Syncoelidium +[2018-02-13T00:49:20.969] [INFO] cheese - batch complete in: 0.234 secs +[2018-02-13T00:49:21.080] [INFO] cheese - inserting 1000 documents. first: John Marion Galloway House and last: Carlos Samuel Moreno Terán +[2018-02-13T00:49:21.111] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T00:49:21.153] [INFO] cheese - inserting 1000 documents. first: Bdelloura and last: Book:Psychiatry +[2018-02-13T00:49:21.183] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:49:21.367] [INFO] cheese - inserting 1000 documents. first: Lakhdar Ben Cherif and last: File:Los Angeles County California Incorporated and Unincorporated areas Manhattan Beach Highlighted 0645400.svg +[2018-02-13T00:49:21.391] [INFO] cheese - batch complete in: 0.208 secs +[2018-02-13T00:49:21.401] [INFO] cheese - inserting 1000 documents. first: File:The Cup of Life cover.png and last: Blendtron +[2018-02-13T00:49:21.444] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T00:49:21.563] [INFO] cheese - inserting 1000 documents. first: File:Mendocino County California Incorporated and Unincorporated areas Manchester Highlighted 0645386.svg and last: Draft:Frederick J. Stoever +[2018-02-13T00:49:21.591] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:49:21.759] [INFO] cheese - inserting 1000 documents. first: Wanqani Apachita and last: File:Santa Ignacia Tarlac.png +[2018-02-13T00:49:21.811] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T00:49:21.874] [INFO] cheese - inserting 1000 documents. first: The Americans Season 2 Episode 6 : Behind the Red Door and last: P. K. Thakur +[2018-02-13T00:49:21.910] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:49:22.110] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Abbey Vale and last: American Journal of Pathology +[2018-02-13T00:49:22.154] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:49:22.163] [INFO] cheese - inserting 1000 documents. first: File:Last Man Club.jpg and last: Liers +[2018-02-13T00:49:22.220] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:49:22.474] [INFO] cheese - inserting 1000 documents. first: Elizabeth duck and last: File:Tori Amos Past the Mission UK US cover.jpg +[2018-02-13T00:49:22.494] [INFO] cheese - inserting 1000 documents. first: Nikolay Vasilyevich Belov and last: Baku–Tbilisi–Akhalkalaki–Kars railway +[2018-02-13T00:49:22.510] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T00:49:22.538] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T00:49:22.825] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Igor Aleksovski and last: Caesalpinia nhatrangense +[2018-02-13T00:49:22.838] [INFO] cheese - inserting 1000 documents. first: Tseax and last: William Brill +[2018-02-13T00:49:22.865] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T00:49:22.927] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T00:49:23.142] [INFO] cheese - inserting 1000 documents. first: Andy Maloney and last: Canton El Tablon +[2018-02-13T00:49:23.175] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T00:49:23.202] [INFO] cheese - inserting 1000 documents. first: Jammu and Kashmir Legislative Assembly election, 1987 and last: Desnianskyi District +[2018-02-13T00:49:23.228] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T00:49:23.352] [INFO] cheese - inserting 1000 documents. first: Ahmed Warsama and last: Basic RV Repair and Palmistry +[2018-02-13T00:49:23.355] [INFO] cheese - inserting 1000 documents. first: SS Van Heemskerk (1909) and last: Robert J. Munson +[2018-02-13T00:49:23.373] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T00:49:23.377] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T00:49:23.605] [INFO] cheese - inserting 1000 documents. first: Sri Lanka women's national under-19 basketball team and last: Template:Europe of the Peoples (2004)/meta/shortname +[2018-02-13T00:49:23.637] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T00:49:23.667] [INFO] cheese - inserting 1000 documents. first: 北斗 and last: Baía das Pontas +[2018-02-13T00:49:23.708] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T00:49:23.846] [INFO] cheese - inserting 1000 documents. first: Category:1912 Swedish novels and last: Wikipedia:Articles for deletion/Happy Birthday, Robot! +[2018-02-13T00:49:23.864] [INFO] cheese - batch complete in: 0.227 secs +[2018-02-13T00:49:23.993] [INFO] cheese - inserting 1000 documents. first: TCL Communication and last: Template:England-cricket-bio-1710s-stub +[2018-02-13T00:49:24.027] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T00:49:24.078] [INFO] cheese - inserting 1000 documents. first: William Meigh Goodman and last: Cratera pseudovaginuloides +[2018-02-13T00:49:24.110] [INFO] cheese - batch complete in: 0.246 secs +[2018-02-13T00:49:24.340] [INFO] cheese - inserting 1000 documents. first: Category:1856 in the Caribbean and last: File:Something i need cover.png +[2018-02-13T00:49:24.363] [INFO] cheese - inserting 1000 documents. first: Cratera anamariae and last: Saratov Electrical Components Production Association +[2018-02-13T00:49:24.376] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T00:49:24.390] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T00:49:24.587] [INFO] cheese - inserting 1000 documents. first: Template:Works of Henri Bergson and last: Minyak coinage during the Western Xia +[2018-02-13T00:49:24.604] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T00:49:24.617] [INFO] cheese - inserting 1000 documents. first: Category:1924 in Central America and last: Paige Smith +[2018-02-13T00:49:24.641] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T00:49:24.739] [INFO] cheese - inserting 1000 documents. first: Minyak coinage in the Western Xia and last: Imler, Pennsylvania +[2018-02-13T00:49:24.757] [INFO] cheese - batch complete in: 0.153 secs +[2018-02-13T00:49:24.888] [INFO] cheese - inserting 1000 documents. first: Techniques of genetic engineering and last: Dryobates +[2018-02-13T00:49:24.947] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:49:24.959] [INFO] cheese - inserting 1000 documents. first: Draft:Ytram and last: Halorhabdus utahensis +[2018-02-13T00:49:24.986] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T00:49:25.163] [INFO] cheese - inserting 1000 documents. first: Halorhabdus tiamatea and last: Global Business School Barcelona +[2018-02-13T00:49:25.184] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:49:25.194] [INFO] cheese - inserting 1000 documents. first: Ghzan-stong and last: Five-bar swordtail +[2018-02-13T00:49:25.225] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:49:25.379] [INFO] cheese - inserting 1000 documents. first: You Can't Turn Me Off and last: Bangladesh Railway Class 2900 +[2018-02-13T00:49:25.412] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T00:49:25.536] [INFO] cheese - inserting 1000 documents. first: Common mime and last: Category:1887 in Central America +[2018-02-13T00:49:25.576] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T00:49:25.618] [INFO] cheese - inserting 1000 documents. first: Ledderhose and last: Acidianus manzaensis +[2018-02-13T00:49:25.638] [INFO] cheese - batch complete in: 0.226 secs +[2018-02-13T00:49:25.800] [INFO] cheese - inserting 1000 documents. first: Acidianus pozzuoliensis and last: Ela I Si Vzemi +[2018-02-13T00:49:25.818] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:49:25.837] [INFO] cheese - inserting 1000 documents. first: Anantaboga and last: Living in the Moment (EP) +[2018-02-13T00:49:25.864] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T00:49:25.993] [INFO] cheese - inserting 1000 documents. first: Stylianos Stratakos and last: File:R.E.M. 7IN—83-88 Box Set.jpg +[2018-02-13T00:49:26.011] [INFO] cheese - batch complete in: 0.193 secs +[2018-02-13T00:49:26.047] [INFO] cheese - inserting 1000 documents. first: Living in the Moment and last: Bhale Bullodu +[2018-02-13T00:49:26.069] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T00:49:26.168] [INFO] cheese - inserting 1000 documents. first: Category:Moorish Revival architecture in New York City and last: Goodman, Victor +[2018-02-13T00:49:26.191] [INFO] cheese - batch complete in: 0.179 secs +[2018-02-13T00:49:26.277] [INFO] cheese - inserting 1000 documents. first: Digital Communications Associates and last: Category:Sportswomen from Northern Ireland +[2018-02-13T00:49:26.301] [INFO] cheese - batch complete in: 0.232 secs +[2018-02-13T00:49:26.347] [INFO] cheese - inserting 1000 documents. first: File:Madera County California Incorporated and Unincorporated areas Ahwahnee Highlighted 0600478.svg and last: Optare OmniDekka +[2018-02-13T00:49:26.362] [INFO] cheese - batch complete in: 0.171 secs +[2018-02-13T00:49:26.484] [INFO] cheese - inserting 1000 documents. first: Reona Aoki and last: Bo Lynn's Grocery +[2018-02-13T00:49:26.498] [INFO] cheese - batch complete in: 0.136 secs +[2018-02-13T00:49:26.513] [INFO] cheese - inserting 1000 documents. first: Steve Mallan and last: Category:Terrorism in Southeast Asia +[2018-02-13T00:49:26.539] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T00:49:26.727] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Älmhult Municipality and last: Pulaski County Courthouse (Pulaski, Virginia) +[2018-02-13T00:49:26.754] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:49:26.760] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2015 January 1 and last: Walden's Path +[2018-02-13T00:49:26.807] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T00:49:26.969] [INFO] cheese - inserting 1000 documents. first: Pulaski County Courthouse (Waynesville, Missouri) and last: Karate in Japan +[2018-02-13T00:49:26.994] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:49:27.051] [INFO] cheese - inserting 1000 documents. first: European route E25 in Belgium and last: Global position system +[2018-02-13T00:49:27.079] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T00:49:27.151] [INFO] cheese - inserting 1000 documents. first: Bloc identitaire and last: File:Cook County Georgia Incorporated and Unincorporated areas Sparks Highlighted 1372556.svg +[2018-02-13T00:49:27.174] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T00:49:27.293] [INFO] cheese - inserting 1000 documents. first: Postmates and last: New Haven Profs +[2018-02-13T00:49:27.310] [INFO] cheese - inserting 1000 documents. first: File:Treutlen County Georgia Incorporated and Unincorporated areas Soperton Highlighted 1371772.svg and last: File:Samrat Yadav Dakshin dare 2017 Winner.jpg +[2018-02-13T00:49:27.330] [INFO] cheese - batch complete in: 0.156 secs +[2018-02-13T00:49:27.335] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T00:49:27.502] [INFO] cheese - inserting 1000 documents. first: File:Kootenai County Idaho Incorporated and Unincorporated areas Hayden Highlighted 1636370.svg and last: Category:Education in Munger district +[2018-02-13T00:49:27.525] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T00:49:27.542] [INFO] cheese - inserting 1000 documents. first: Category:Turkish girl groups and last: Category:Companies that filed for Chapter 11 bankruptcy in 2006 +[2018-02-13T00:49:27.568] [INFO] cheese - batch complete in: 0.233 secs +[2018-02-13T00:49:27.700] [INFO] cheese - inserting 1000 documents. first: Arizona (US band) and last: United States presidential election in New Hampshire, 1789 +[2018-02-13T00:49:27.719] [INFO] cheese - batch complete in: 0.194 secs +[2018-02-13T00:49:27.791] [INFO] cheese - inserting 1000 documents. first: Rectus capitus (disambiguation) and last: Ṭihrán +[2018-02-13T00:49:27.813] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:49:27.953] [INFO] cheese - inserting 1000 documents. first: Andrew Parkinson (artist) and last: File:Pasco County Florida Incorporated and Unincorporated areas Heritage Pines Highlighted 1229385.svg +[2018-02-13T00:49:27.983] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T00:49:28.034] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Israel coins and medals and last: Wikipedia:WikiProject Spam/LinkReports/points.speechanddebate.org +[2018-02-13T00:49:28.075] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T00:49:28.193] [INFO] cheese - inserting 1000 documents. first: File:Pasco County Florida Incorporated and Unincorporated areas Holiday Highlighted 1231075.svg and last: Christie Mountain (ski area) +[2018-02-13T00:49:28.230] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T00:49:28.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/points.speechanddebate.org and last: Daben +[2018-02-13T00:49:28.418] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T00:49:28.476] [INFO] cheese - inserting 1000 documents. first: England Lost and last: Category:People from Shelby, Montana +[2018-02-13T00:49:28.506] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T00:49:28.636] [INFO] cheese - inserting 1000 documents. first: Dermantsi and last: The Slave Market (film) +[2018-02-13T00:49:28.661] [INFO] cheese - batch complete in: 0.242 secs +[2018-02-13T00:49:28.678] [INFO] cheese - inserting 1000 documents. first: Category:2003 in Libyan sport and last: List of governors of Saga Prefecture +[2018-02-13T00:49:28.704] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T00:49:28.874] [INFO] cheese - inserting 1000 documents. first: 2005 Army Black Knights football team and last: MBC Entertainment Award +[2018-02-13T00:49:28.901] [INFO] cheese - inserting 1000 documents. first: File:Gulliver Bookplate.jpg and last: 3β-Androstenol +[2018-02-13T00:49:28.901] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T00:49:28.927] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:49:29.096] [INFO] cheese - inserting 1000 documents. first: Brian J. Morris and last: Filip Krovinović +[2018-02-13T00:49:29.130] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T00:49:29.151] [INFO] cheese - inserting 1000 documents. first: Draft:Educational Passages and last: TEDxWellington +[2018-02-13T00:49:29.187] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T00:49:29.371] [INFO] cheese - inserting 1000 documents. first: Deanna Church and last: Category:Military units and formations in Suffolk +[2018-02-13T00:49:29.412] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T00:49:29.509] [INFO] cheese - inserting 1000 documents. first: File:Datuk-aziz-sattar.jpg and last: Zinchuk, Victor +[2018-02-13T00:49:29.568] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T00:49:29.660] [INFO] cheese - inserting 1000 documents. first: Underworld series and last: Category:16th-century establishments in Venezuela +[2018-02-13T00:49:29.701] [INFO] cheese - batch complete in: 0.289 secs +[2018-02-13T00:49:29.854] [INFO] cheese - inserting 1000 documents. first: Zonana, Victor and last: Calymene blumenbachi +[2018-02-13T00:49:29.881] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T00:49:29.968] [INFO] cheese - inserting 755 documents. first: Category:Reservoirs in Kerala and last: Passara Electoral District +[2018-02-13T00:49:30.017] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T00:49:30.017] [INFO] cheese - worker pid:56526 is done. inserted 2932756 pages in 0 secs. +[2018-02-13T00:49:30.104] [INFO] cheese - inserting 1000 documents. first: Chad Johnson (TV personality) and last: Book:Justifiable Genocide: Volume 4 +[2018-02-13T00:49:30.141] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:49:30.378] [INFO] cheese - inserting 1000 documents. first: Category:Energy companies established in 2017 and last: Punchi Apith Baya Na Dan +[2018-02-13T00:49:30.414] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T00:49:30.616] [INFO] cheese - inserting 1000 documents. first: Southern Italian (disambiguation) and last: Kichi Jargylchak +[2018-02-13T00:49:30.638] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T00:49:30.805] [INFO] cheese - inserting 1000 documents. first: 2017 Holden Cup and last: BWV 1089 +[2018-02-13T00:49:30.834] [INFO] cheese - batch complete in: 0.196 secs +[2018-02-13T00:49:31.053] [INFO] cheese - inserting 1000 documents. first: Nuru, Sara and last: Storer, Sara +[2018-02-13T00:49:31.079] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:49:31.330] [INFO] cheese - inserting 1000 documents. first: Category:Defunct soccer clubs in South Carolina and last: Tailteann Games (Irish Free State) +[2018-02-13T00:49:31.356] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T00:49:31.593] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Austroglanis and last: File:Wildrose Party logo 2017.png +[2018-02-13T00:49:31.616] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T00:49:31.812] [INFO] cheese - inserting 1000 documents. first: List of Adult Contemporary top 10 singles in 1996 (U.S.) and last: 88th Regiment of Foot (1779) +[2018-02-13T00:49:31.844] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T00:49:32.025] [INFO] cheese - inserting 1000 documents. first: Biotechnol. Bioprocess Eng. and last: Draft:Dembel +[2018-02-13T00:49:32.051] [INFO] cheese - batch complete in: 0.207 secs +[2018-02-13T00:49:32.253] [INFO] cheese - inserting 1000 documents. first: Tebyan Cultural and Information Institute and last: Wikipedia:Articles for deletion/Autocrat, LLC +[2018-02-13T00:49:32.281] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T00:49:32.458] [INFO] cheese - inserting 1000 documents. first: Arhopala annulata and last: Reeves, Richard +[2018-02-13T00:49:32.480] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:49:32.661] [INFO] cheese - inserting 1000 documents. first: Michael Nathanson (actor) and last: Ocean Robbins +[2018-02-13T00:49:32.690] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:49:32.879] [INFO] cheese - inserting 1000 documents. first: Show Album No.1 and last: Wikipedia:Wiki Loves Pride 2015/Rome +[2018-02-13T00:49:32.908] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T00:49:33.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wiki Loves Pride 2015/San Francisco and last: Ivory Coast at the 2017 World Championships in Athletics +[2018-02-13T00:49:33.153] [INFO] cheese - batch complete in: 0.244 secs +[2018-02-13T00:49:33.406] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Women's National Wheelchair Basketball League and last: 🏴󠁰󠁨󠁳󠁬󠁥󠁿 +[2018-02-13T00:49:33.451] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T00:49:33.682] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hot Topics in... and last: Wikipedia:Abuse reports/203.97.42.131 +[2018-02-13T00:49:33.706] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T00:49:33.879] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Abuse reports/204.10.221.253 and last: Rhapsodies in Black +[2018-02-13T00:49:33.909] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:49:34.136] [INFO] cheese - inserting 1000 documents. first: Liaoningvenator and last: Maguire, Sarah +[2018-02-13T00:49:34.159] [INFO] cheese - batch complete in: 0.25 secs +[2018-02-13T00:49:34.339] [INFO] cheese - inserting 1000 documents. first: Main, Sarah and last: Steigviliai +[2018-02-13T00:49:34.359] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:49:34.624] [INFO] cheese - inserting 1000 documents. first: Schenirer, Sarah and last: The Legend of Mata Nui +[2018-02-13T00:49:34.646] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:49:34.871] [INFO] cheese - inserting 1000 documents. first: Category:Swarnavahini television series and last: Kleinmann-Low nebula +[2018-02-13T00:49:34.898] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:49:35.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Klase gonzales and last: Barnett, Christopher +[2018-02-13T00:49:35.129] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T00:49:35.347] [INFO] cheese - inserting 1000 documents. first: File:2017 Honda Ridgeline Frame Drawing.png and last: Knowles Creek +[2018-02-13T00:49:35.381] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:49:35.531] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dixon Park & Ride and last: List of @midnight episodes (2013) +[2018-02-13T00:49:35.546] [INFO] cheese - batch complete in: 0.165 secs +[2018-02-13T00:49:35.768] [INFO] cheese - inserting 1000 documents. first: Milwaukee/North Line and last: Pär Öberg +[2018-02-13T00:49:35.798] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T00:49:35.963] [INFO] cheese - inserting 1000 documents. first: File:Elisabeth of Austria (film).jpg and last: Draft:Raja Feather Kelly +[2018-02-13T00:49:35.981] [INFO] cheese - batch complete in: 0.183 secs +[2018-02-13T00:49:36.175] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/10 August 2017 and last: Archivio Storico del Ministero degli Affari Esteri +[2018-02-13T00:49:36.192] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T00:49:36.368] [INFO] cheese - inserting 1000 documents. first: File:University of Washington Seal.svg and last: Hjort, Christopher +[2018-02-13T00:49:36.389] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:49:36.664] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jamil Ahmed Nizamani and last: Golden Powers (disambiguation) +[2018-02-13T00:49:36.695] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T00:49:36.873] [INFO] cheese - inserting 1000 documents. first: Harper and McIntire Company Warehouse and last: Hesperia pann +[2018-02-13T00:49:36.907] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T00:49:37.097] [INFO] cheese - inserting 1000 documents. first: Template:Ranks and Insignia of Non NATO Armies/OF/Tajikistan and last: Championnat LNA +[2018-02-13T00:49:37.128] [INFO] cheese - batch complete in: 0.221 secs +[2018-02-13T00:49:37.269] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Colección Patricia Phelps de Cisneros/Workshops/2017-08-09 and last: Pil Tor +[2018-02-13T00:49:37.287] [INFO] cheese - batch complete in: 0.159 secs +[2018-02-13T00:49:37.446] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Panda and last: Larry McCormack +[2018-02-13T00:49:37.483] [INFO] cheese - batch complete in: 0.196 secs +[2018-02-13T00:49:37.669] [INFO] cheese - inserting 1000 documents. first: Draft:Palmer Simplified Layout and last: The Wild Horses +[2018-02-13T00:49:37.686] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:49:37.848] [INFO] cheese - inserting 1000 documents. first: File:EverWing official.jpg and last: Cape Bernouilli +[2018-02-13T00:49:37.865] [INFO] cheese - batch complete in: 0.179 secs +[2018-02-13T00:49:38.020] [INFO] cheese - inserting 1000 documents. first: New Haven (Martian crater) and last: Template:Taxonomy/Gazellospira +[2018-02-13T00:49:38.042] [INFO] cheese - batch complete in: 0.176 secs +[2018-02-13T00:49:38.252] [INFO] cheese - inserting 1000 documents. first: Mr Citizen and last: Dibenz(b,f)oxepines +[2018-02-13T00:49:38.272] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T00:49:38.448] [INFO] cheese - inserting 1000 documents. first: Dibenz(b,f)oxepins and last: You Get My Love (Pink song) +[2018-02-13T00:49:38.471] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T00:49:38.660] [INFO] cheese - inserting 1000 documents. first: File:Plymouth PA Old Stone House.jpg and last: Category:Sudanese rappers +[2018-02-13T00:49:38.681] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:49:38.832] [INFO] cheese - inserting 1000 documents. first: Killeen Cowpark and last: Law of New York +[2018-02-13T00:49:38.846] [INFO] cheese - batch complete in: 0.165 secs +[2018-02-13T00:49:39.034] [INFO] cheese - inserting 1000 documents. first: Archeparchy of Mosul (disambiguation) and last: 2017 UCI Road World Championships – Men's road race +[2018-02-13T00:49:39.056] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T00:49:39.206] [INFO] cheese - inserting 1000 documents. first: Draft:2017-18 United States network television schedule daytime and last: 1979 Copa América Finals +[2018-02-13T00:49:39.231] [INFO] cheese - batch complete in: 0.175 secs +[2018-02-13T00:49:39.384] [INFO] cheese - inserting 1000 documents. first: 1983 Copa América Finals and last: Arizona Territory +[2018-02-13T00:49:39.405] [INFO] cheese - batch complete in: 0.174 secs +[2018-02-13T00:49:39.583] [INFO] cheese - inserting 1000 documents. first: Qutlugh Qocha and last: Byfield, Richard +[2018-02-13T00:49:39.605] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T00:49:39.755] [INFO] cheese - inserting 1000 documents. first: Byrnes, Richard and last: Inverse trigonometric secant +[2018-02-13T00:49:39.777] [INFO] cheese - batch complete in: 0.172 secs +[2018-02-13T00:49:39.953] [INFO] cheese - inserting 1000 documents. first: Inverse trigonometric cosecant and last: Category:Michigan State Spartans men's tennis +[2018-02-13T00:49:39.974] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T00:49:40.235] [INFO] cheese - inserting 1000 documents. first: Valeria Brinton Young and last: Galefele Moroko +[2018-02-13T00:49:40.261] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T00:49:40.479] [INFO] cheese - inserting 1000 documents. first: Antony (given name) and last: Montenegrin independent championship (1992-1999) +[2018-02-13T00:49:40.506] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T00:49:40.694] [INFO] cheese - inserting 1000 documents. first: Montenegrin Republic Cup (1947-2006) and last: Category:Dari dialects of Afghanistan +[2018-02-13T00:49:40.723] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T00:49:40.916] [INFO] cheese - inserting 1000 documents. first: Derrynaflan Church and last: The Killing Machine (2010 film) +[2018-02-13T00:49:40.955] [INFO] cheese - batch complete in: 0.232 secs +[2018-02-13T00:49:41.143] [INFO] cheese - inserting 1000 documents. first: Sheetla Mata Mandir Gurgaon and last: Cross slabs +[2018-02-13T00:49:41.160] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T00:49:41.323] [INFO] cheese - inserting 1000 documents. first: Wheel crosses and last: Wikipedia:Reference desk/Archives/Science/2017 August 10 +[2018-02-13T00:49:41.357] [INFO] cheese - batch complete in: 0.196 secs +[2018-02-13T00:49:41.527] [INFO] cheese - inserting 1000 documents. first: Pierpont, John and last: Wikipedia:AOCD +[2018-02-13T00:49:41.544] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T00:49:41.719] [INFO] cheese - inserting 1000 documents. first: A. N. Rajan Babu and last: King of Dál nAraidi +[2018-02-13T00:49:41.747] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:49:41.937] [INFO] cheese - inserting 1000 documents. first: Category:Fauna of the Western Ghats and last: 2016 Deauville American Film Festival +[2018-02-13T00:49:41.951] [INFO] cheese - batch complete in: 0.204 secs +[2018-02-13T00:49:42.088] [INFO] cheese - inserting 1000 documents. first: Charlie Ware (hurler, born 1900) and last: Denys Hawthorne +[2018-02-13T00:49:42.106] [INFO] cheese - batch complete in: 0.155 secs +[2018-02-13T00:49:42.308] [INFO] cheese - inserting 1000 documents. first: Draft:Dytto and last: Template:User WP Earthquakes +[2018-02-13T00:49:42.326] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T00:49:42.529] [INFO] cheese - inserting 1000 documents. first: Mean Streak and last: 'ahdnâme +[2018-02-13T00:49:42.560] [INFO] cheese - batch complete in: 0.234 secs +[2018-02-13T00:49:42.726] [INFO] cheese - inserting 1000 documents. first: Wa1a and last: Randa Ayoubi +[2018-02-13T00:49:42.745] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T00:49:42.925] [INFO] cheese - inserting 1000 documents. first: Communist Revolutionary Centre and last: Wikipedia:WikiProject Spam/LinkReports/andoportugal.org +[2018-02-13T00:49:42.949] [INFO] cheese - batch complete in: 0.204 secs +[2018-02-13T00:49:43.195] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Two Ton Baker and last: File:Princess1986.jpg +[2018-02-13T00:49:43.218] [INFO] cheese - batch complete in: 0.269 secs +[2018-02-13T00:49:43.388] [INFO] cheese - inserting 1000 documents. first: Kim Dong-min and last: Miliukaitė +[2018-02-13T00:49:43.413] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T00:49:43.568] [INFO] cheese - inserting 1000 documents. first: Doctor's Wife and last: Template:Taxonomy/Heterobathmia +[2018-02-13T00:49:43.586] [INFO] cheese - batch complete in: 0.173 secs +[2018-02-13T00:49:43.747] [INFO] cheese - inserting 1000 documents. first: Kingdom of Larantuka and last: The Brookfield Library +[2018-02-13T00:49:43.765] [INFO] cheese - batch complete in: 0.179 secs +[2018-02-13T00:49:43.951] [INFO] cheese - inserting 1000 documents. first: The Brookfield Public Library and last: Cavalaris +[2018-02-13T00:49:43.968] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T00:49:44.136] [INFO] cheese - inserting 1000 documents. first: Casalinuovo and last: Zamorano Pan American Agricultural School +[2018-02-13T00:49:44.158] [INFO] cheese - batch complete in: 0.19 secs +[2018-02-13T00:49:44.388] [INFO] cheese - inserting 1000 documents. first: Priory Street and last: Laszlo Baksay +[2018-02-13T00:49:44.419] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T00:49:44.623] [INFO] cheese - inserting 1000 documents. first: Untitled Obi Wan Kenobi film and last: HolidayMe +[2018-02-13T00:49:44.658] [INFO] cheese - batch complete in: 0.239 secs +[2018-02-13T00:49:44.806] [INFO] cheese - inserting 677 documents. first: Villani, Pat J. and last: SV Marken +[2018-02-13T00:49:44.818] [INFO] cheese - batch complete in: 0.16 secs +[2018-02-13T00:49:44.818] [INFO] cheese - worker pid:56527 is done. inserted 3096677 pages in 0 secs. +[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71711 is now alive. startByte: 0 endByte: 7918988581 +[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71713 is now alive. startByte: 15830977162 endByte: 23749965743 +[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71714 is now alive. startByte: 23746965743 endByte: 31665954324 +[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71716 is now alive. startByte: 39578942905 endByte: 47497931486 +[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71717 is now alive. startByte: 47494931486 endByte: 55413920067 +[2018-02-13T08:18:59.234] [INFO] cheese - worker pid:71718 is now alive. startByte: 55410920067 endByte: 63329908648 +[2018-02-13T08:18:59.881] [INFO] cheese - inserting 1000 documents. first: Pyroxene grouplet and last: NWA American Heavyweight Championship +[2018-02-13T08:18:59.991] [INFO] cheese - inserting 1000 documents. first: Karl-Liebknecht-Stadion and last: Harold Greene (journalist) +[2018-02-13T08:19:00.032] [INFO] cheese - inserting 1000 documents. first: War epic films and last: Cistercian order +[2018-02-13T08:19:00.045] [INFO] cheese - inserting 1000 documents. first: Thomas Leighton Decker and last: Alexei Romanov (disambiguation) +[2018-02-13T08:19:00.081] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:19:00.131] [INFO] cheese - inserting 1000 documents. first: Yuki Yamanouchi and last: Rondo in B minor for violin and piano (Schubert) +[2018-02-13T08:19:00.176] [INFO] cheese - inserting 1000 documents. first: Comunidad Democrática Cristiana and last: North Kurdistan insurgency +[2018-02-13T08:19:00.181] [INFO] cheese - inserting 1000 documents. first: St Roch's F.C. and last: Sydenhams Chorea +[2018-02-13T08:19:00.238] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:19:00.239] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:19:00.292] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:19:00.423] [INFO] cheese - batch complete in: 1.144 secs +[2018-02-13T08:19:00.503] [INFO] cheese - batch complete in: 1.219 secs +[2018-02-13T08:19:00.586] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:19:01.152] [INFO] cheese - inserting 1000 documents. first: National Council against Health Fraud and last: Wikipedia:Featured topic removal candidates/Iowa class battleships/archive1 +[2018-02-13T08:19:01.475] [INFO] cheese - inserting 1000 documents. first: Fachhochschule Braunschweig and last: Someone Else Will +[2018-02-13T08:19:01.482] [INFO] cheese - batch complete in: 1.401 secs +[2018-02-13T08:19:01.486] [INFO] cheese - inserting 1000 documents. first: Texas Valley and last: Template:2014–15 Premier League PFA Team of the Year +[2018-02-13T08:19:01.493] [INFO] cheese - inserting 1000 documents. first: Bloody Week and last: Tuberous sclerosis 1 +[2018-02-13T08:19:01.581] [INFO] cheese - inserting 1000 documents. first: King's Academy and last: New York Philharmonic Symphony Orchesra +[2018-02-13T08:19:01.699] [INFO] cheese - batch complete in: 1.406 secs +[2018-02-13T08:19:01.732] [INFO] cheese - batch complete in: 1.308 secs +[2018-02-13T08:19:01.838] [INFO] cheese - batch complete in: 1.6 secs +[2018-02-13T08:19:01.860] [INFO] cheese - batch complete in: 1.621 secs +[2018-02-13T08:19:02.098] [INFO] cheese - inserting 1000 documents. first: Category:Toulouse and last: Kenneth Lavery Rider +[2018-02-13T08:19:02.214] [INFO] cheese - inserting 1000 documents. first: Bury Me Dead and last: Battle of St. Kitts +[2018-02-13T08:19:02.573] [INFO] cheese - batch complete in: 2.069 secs +[2018-02-13T08:19:02.687] [INFO] cheese - batch complete in: 2.101 secs +[2018-02-13T08:19:02.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Iowa class battleship/archive2 and last: TWIP steel +[2018-02-13T08:19:03.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Anarchism articles by quality log and last: 1973 European Cup Winners' Cup Final +[2018-02-13T08:19:03.157] [INFO] cheese - batch complete in: 1.675 secs +[2018-02-13T08:19:03.263] [INFO] cheese - inserting 1000 documents. first: Glenforsa and last: Category:Mountain ranges of Midi-Pyrénées +[2018-02-13T08:19:03.280] [INFO] cheese - inserting 1000 documents. first: Category:Great Basin National Park and last: Legality of cannabis in ghana +[2018-02-13T08:19:03.309] [INFO] cheese - batch complete in: 1.449 secs +[2018-02-13T08:19:03.417] [INFO] cheese - batch complete in: 1.684 secs +[2018-02-13T08:19:03.502] [INFO] cheese - batch complete in: 1.802 secs +[2018-02-13T08:19:03.521] [INFO] cheese - inserting 1000 documents. first: Mouse racing and last: Mythimna +[2018-02-13T08:19:03.655] [INFO] cheese - batch complete in: 1.816 secs +[2018-02-13T08:19:03.804] [INFO] cheese - inserting 1000 documents. first: AccessibleComputing and last: Airline +[2018-02-13T08:19:03.939] [INFO] cheese - inserting 1000 documents. first: 2013 Czech Presidential election and last: Template:Editnotices/Page/Hao Zhao +[2018-02-13T08:19:04.042] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:19:04.051] [INFO] cheese - inserting 1000 documents. first: Tropical Cyclone Arthur (2007) and last: Category:Media in Maricopa County, Arizona +[2018-02-13T08:19:04.052] [INFO] cheese - inserting 1000 documents. first: Watanabe Yoshio and last: NIT Tiruchirappalli +[2018-02-13T08:19:04.106] [INFO] cheese - inserting 1000 documents. first: The Android and last: Self propelled howitzer +[2018-02-13T08:19:04.129] [INFO] cheese - inserting 1000 documents. first: Vaugondry and last: Man year +[2018-02-13T08:19:04.122] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:19:04.178] [INFO] cheese - batch complete in: 1.491 secs +[2018-02-13T08:19:04.207] [INFO] cheese - batch complete in: 4.929 secs +[2018-02-13T08:19:04.247] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:19:04.254] [INFO] cheese - inserting 1000 documents. first: Denise Herzing and last: Dave Greszczyszyn +[2018-02-13T08:19:04.401] [INFO] cheese - batch complete in: 1.827 secs +[2018-02-13T08:19:04.533] [INFO] cheese - batch complete in: 1.116 secs +[2018-02-13T08:19:04.640] [INFO] cheese - inserting 1000 documents. first: Dog notice and last: Csit +[2018-02-13T08:19:04.767] [INFO] cheese - batch complete in: 1.111 secs +[2018-02-13T08:19:04.831] [INFO] cheese - inserting 1000 documents. first: Matthysse and last: En pointe +[2018-02-13T08:19:04.990] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:19:05.174] [INFO] cheese - inserting 1000 documents. first: Do You Know What It Means to Miss New Orleans and last: Category:Road incident deaths in Norway +[2018-02-13T08:19:05.194] [INFO] cheese - inserting 1000 documents. first: Albanians in Germany and last: Fred Jurgen Schnepel +[2018-02-13T08:19:05.225] [INFO] cheese - inserting 1000 documents. first: Malayalam films of 1968 and last: Category:United States Senate elections, 1898 +[2018-02-13T08:19:05.232] [INFO] cheese - inserting 1000 documents. first: File:Justin Green (1972) Binky Brown Meets the Holy Virgin Mary splash page.jpg and last: Wikipedia:Miscellany for deletion/User:Motionride +[2018-02-13T08:19:05.327] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T08:19:05.348] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:19:05.370] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:19:05.488] [INFO] cheese - batch complete in: 1.31 secs +[2018-02-13T08:19:05.715] [INFO] cheese - inserting 1000 documents. first: Victory Grill and last: Deiseal +[2018-02-13T08:19:05.724] [INFO] cheese - inserting 1000 documents. first: Ayina River and last: Category:Alejandra Guzmán video albums +[2018-02-13T08:19:05.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/OurColony and last: Mark IX tank +[2018-02-13T08:19:05.818] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:19:05.824] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:19:05.860] [INFO] cheese - batch complete in: 1.458 secs +[2018-02-13T08:19:06.157] [INFO] cheese - inserting 1000 documents. first: Category:1982–83 in African football by country and last: Jon Stankovič +[2018-02-13T08:19:06.237] [INFO] cheese - inserting 1000 documents. first: Cuando pase el temblor and last: Template:Lang-ain +[2018-02-13T08:19:06.267] [INFO] cheese - inserting 1000 documents. first: Precalentines Day and last: Camana Province +[2018-02-13T08:19:06.264] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:19:06.271] [INFO] cheese - inserting 1000 documents. first: Jon & Kate and last: File:Sfwd-lissy-trullie-self-taught-learner-ep-cover.png +[2018-02-13T08:19:06.342] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:19:06.488] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:19:06.520] [INFO] cheese - batch complete in: 1.193 secs +[2018-02-13T08:19:06.584] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in the Gambia and last: Siderus tephraeus +[2018-02-13T08:19:06.704] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:19:06.895] [INFO] cheese - inserting 1000 documents. first: Radcliffe Award and last: MPG: Motion Picture Genocide +[2018-02-13T08:19:06.913] [INFO] cheese - inserting 1000 documents. first: Barano d'Ischia and last: José de Jesús Corona Rodriguez +[2018-02-13T08:19:07.040] [INFO] cheese - batch complete in: 1.222 secs +[2018-02-13T08:19:07.052] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:19:07.055] [INFO] cheese - inserting 1000 documents. first: The Jester (film) and last: Calluga +[2018-02-13T08:19:07.148] [INFO] cheese - inserting 1000 documents. first: Category:Ordovician geology of Texas and last: Croatian Society of Medical Biochemistry and Laboratory Medicine +[2018-02-13T08:19:07.167] [INFO] cheese - inserting 1000 documents. first: TS Patriot State and last: Carmen Ortiz +[2018-02-13T08:19:07.172] [INFO] cheese - inserting 1000 documents. first: The Legend of Heroes VI: Sora no Kiseki and last: Category:Novels set in Vietnam +[2018-02-13T08:19:07.181] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:19:07.292] [INFO] cheese - inserting 1000 documents. first: Category:Preston North End F.C. templates and last: Wikipedia:Version 1.0 Editorial Team/Aviation articles by quality/47 +[2018-02-13T08:19:07.313] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:19:07.320] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:19:07.342] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:19:07.523] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:19:07.729] [INFO] cheese - inserting 1000 documents. first: Histone modification and last: Juan Francisco Torres Belén +[2018-02-13T08:19:07.738] [INFO] cheese - inserting 1000 documents. first: Callurapteryx and last: Victoria Theater (Wheeling, West Virginia) +[2018-02-13T08:19:07.796] [INFO] cheese - inserting 1000 documents. first: Elaine Black Yoneda and last: Kunio Shimizu +[2018-02-13T08:19:07.809] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:19:07.819] [INFO] cheese - inserting 1000 documents. first: File:Bachelor's Double at 1911 Jubilee.jpg and last: Category:1969–70 in European football by country +[2018-02-13T08:19:07.820] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:19:07.913] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:19:07.920] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:19:07.980] [INFO] cheese - inserting 1000 documents. first: Australian Democrats and last: Big Dipper (disambiguation) +[2018-02-13T08:19:08.019] [INFO] cheese - inserting 1000 documents. first: Kevin Owen Foley and last: Category:Czech Republic articles by quality +[2018-02-13T08:19:08.049] [INFO] cheese - inserting 1000 documents. first: Harry Kimberlin and last: Carter Sans +[2018-02-13T08:19:08.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2005-04-11/Privacy policy and last: Halifax, England +[2018-02-13T08:19:08.094] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:19:08.132] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:19:08.142] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:19:08.160] [INFO] cheese - batch complete in: 3.953 secs +[2018-02-13T08:19:08.309] [INFO] cheese - inserting 1000 documents. first: Echineulima mittrei and last: Wikipedia:Articles for deletion/Orly Shani +[2018-02-13T08:19:08.310] [INFO] cheese - inserting 1000 documents. first: Les Herbes folles and last: Merchiston railway station +[2018-02-13T08:19:08.362] [INFO] cheese - inserting 1000 documents. first: Lavochne and last: Category:Kyrgyzstan Futsal League +[2018-02-13T08:19:08.384] [INFO] cheese - inserting 1000 documents. first: Miller Group (marketing agency) and last: Walter Adolf Georg Gropius +[2018-02-13T08:19:08.424] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:19:08.427] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:19:08.537] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:19:08.619] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:19:08.783] [INFO] cheese - inserting 1000 documents. first: Huelsemann, Johannes and last: Mologino, Tver Oblast +[2018-02-13T08:19:08.783] [INFO] cheese - inserting 1000 documents. first: New York State Bicycle Route 17 and last: Color Robot Battle +[2018-02-13T08:19:08.831] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:19:08.840] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:19:09.053] [INFO] cheese - inserting 1000 documents. first: SA – Harlem 2 and last: HR Branson +[2018-02-13T08:19:09.125] [INFO] cheese - inserting 1000 documents. first: Oscar by the Sea and last: Saulius Mikalajūnas +[2018-02-13T08:19:09.139] [INFO] cheese - inserting 1000 documents. first: Woolwich Building Society and last: Isokon +[2018-02-13T08:19:09.144] [INFO] cheese - inserting 1000 documents. first: Spunk (album) and last: XP 819 +[2018-02-13T08:19:09.192] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:19:09.248] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:19:09.259] [INFO] cheese - batch complete in: 1.117 secs +[2018-02-13T08:19:09.372] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:19:09.473] [INFO] cheese - inserting 1000 documents. first: Jeanne Marie Bouvier de La Motte Guyon and last: Emil Kemeneş +[2018-02-13T08:19:09.588] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:19:09.642] [INFO] cheese - inserting 1000 documents. first: Uleyki and last: Wikipedia:WikiProject Spam/LinkReports/facebook.sohbetlive.com +[2018-02-13T08:19:09.737] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:19:09.842] [INFO] cheese - inserting 1000 documents. first: Category:1629 establishments by country and last: Cărbunaru River +[2018-02-13T08:19:09.857] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/UniversityJunction.com and last: Badrashin railway accident +[2018-02-13T08:19:09.927] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:19:09.933] [INFO] cheese - batch complete in: 1.092 secs +[2018-02-13T08:19:09.939] [INFO] cheese - inserting 1000 documents. first: Saulius Mikalajunas and last: File:Alberta Highway 40 (Bighorn).svg +[2018-02-13T08:19:09.951] [INFO] cheese - inserting 1000 documents. first: Lita Cabellut and last: Linda Singh +[2018-02-13T08:19:10.014] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:19:10.057] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:19:10.104] [INFO] cheese - inserting 1000 documents. first: ScrollKeeper and last: Karl Ploetz +[2018-02-13T08:19:10.210] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:19:10.242] [INFO] cheese - inserting 1000 documents. first: Christ the King (Almada) and last: KTBN (shortwave) +[2018-02-13T08:19:10.332] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:19:10.389] [INFO] cheese - inserting 1000 documents. first: File:The King of Milu Deer poster.jpg and last: 713 series +[2018-02-13T08:19:10.410] [INFO] cheese - inserting 1000 documents. first: 2010-11 Etisalat Emirates Cup and last: Rydaholms GoIF +[2018-02-13T08:19:10.464] [INFO] cheese - inserting 1000 documents. first: Cyrano de Berger's Back and last: Amergin Gluingel +[2018-02-13T08:19:10.473] [INFO] cheese - inserting 1000 documents. first: Carolina buckthorn and last: Wikipedia:Articles for deletion/The Culinary Institute of America (Korean translation) +[2018-02-13T08:19:10.474] [INFO] cheese - inserting 1000 documents. first: Masti (Kannada) and last: Italy-occupied France +[2018-02-13T08:19:10.477] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:19:10.478] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:19:10.558] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:19:10.617] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:19:10.637] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:19:10.915] [INFO] cheese - inserting 1000 documents. first: Barry McKenzie and last: Amerer Air +[2018-02-13T08:19:10.926] [INFO] cheese - inserting 1000 documents. first: Category:British Roman Catholic bishop stubs and last: Category:Middle schools in South Korea +[2018-02-13T08:19:10.928] [INFO] cheese - inserting 1000 documents. first: Scopula sjostedti and last: Amurrhyparia leopardinula +[2018-02-13T08:19:10.988] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T08:19:11.014] [INFO] cheese - inserting 1000 documents. first: South Germantown, Wisconsin and last: 2014–15 Angola Basketball Cup +[2018-02-13T08:19:11.011] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:19:11.050] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:19:11.112] [INFO] cheese - inserting 1000 documents. first: Lamb meat and last: Battle of Droop Mountain +[2018-02-13T08:19:11.126] [INFO] cheese - inserting 1000 documents. first: Amorgen Glúingel and last: 1971 European Championships in Athletics +[2018-02-13T08:19:11.188] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:19:11.260] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:19:11.291] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:19:11.306] [INFO] cheese - inserting 1000 documents. first: Tom Burns (publisher) and last: Province of brabant +[2018-02-13T08:19:11.488] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T08:19:11.602] [INFO] cheese - inserting 1000 documents. first: Bursa and last: Bill Bryson +[2018-02-13T08:19:11.607] [INFO] cheese - inserting 1000 documents. first: Welcome (Doyle Bramhall II album) and last: Gurnard scorpionfish +[2018-02-13T08:19:11.673] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:19:11.683] [INFO] cheese - inserting 1000 documents. first: Filter (air) and last: Norah Stoner +[2018-02-13T08:19:11.684] [INFO] cheese - inserting 1000 documents. first: Non-residential Indians and last: Diamond (typography) +[2018-02-13T08:19:11.685] [INFO] cheese - inserting 1000 documents. first: Province of brandenburg and last: The beginning was the end +[2018-02-13T08:19:11.708] [INFO] cheese - inserting 1000 documents. first: Michal Pavlu and last: Boudreauville, Nova Scotia +[2018-02-13T08:19:11.737] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T08:19:11.793] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:19:11.820] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:19:11.832] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:19:11.858] [INFO] cheese - batch complete in: 3.698 secs +[2018-02-13T08:19:11.907] [INFO] cheese - inserting 1000 documents. first: Category:Sammarinese expatriate footballers and last: Echoes: The Einaudi Collection +[2018-02-13T08:19:12.045] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:19:12.166] [INFO] cheese - inserting 1000 documents. first: Category:Christian statements of faith and last: Category:Marya Roxx albums +[2018-02-13T08:19:12.208] [INFO] cheese - inserting 1000 documents. first: Strawberry Sound and last: Project 985 +[2018-02-13T08:19:12.245] [INFO] cheese - inserting 1000 documents. first: The beginning of all things to end and last: Wikipedia:WikiProject Spam/LinkReports/plantesminiatures.com +[2018-02-13T08:19:12.283] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:19:12.345] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:19:12.403] [INFO] cheese - batch complete in: 1.142 secs +[2018-02-13T08:19:12.434] [INFO] cheese - inserting 1000 documents. first: Template:Vitrinidae-stub and last: Gladswood House, Double Bay, New South Wales +[2018-02-13T08:19:12.533] [INFO] cheese - inserting 1000 documents. first: Brilliant (typography) and last: Townwood +[2018-02-13T08:19:12.589] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:19:12.600] [INFO] cheese - inserting 1000 documents. first: Garagum District and last: Mandyam Tamil +[2018-02-13T08:19:12.621] [INFO] cheese - inserting 1000 documents. first: Jiang Yuegui and last: Thomastown Township, MN +[2018-02-13T08:19:12.659] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:19:12.672] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:19:12.751] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:19:12.913] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Main Page history/2013 January 16 and last: Nate Wolters +[2018-02-13T08:19:13.024] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:19:13.134] [INFO] cheese - inserting 1000 documents. first: Mr. Monk and the 12th Man and last: State Route 32B (New York) +[2018-02-13T08:19:13.286] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:19:13.290] [INFO] cheese - inserting 1000 documents. first: Category:Project 985 and last: Laws of Duplicate Bridge +[2018-02-13T08:19:13.426] [INFO] cheese - inserting 1000 documents. first: LWOH and last: Sid Helliwell +[2018-02-13T08:19:13.482] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:19:13.570] [INFO] cheese - inserting 1000 documents. first: 1947 BOAC Douglas C-47 crash and last: Sticky rice cake +[2018-02-13T08:19:13.640] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:19:13.643] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Millau Viaduct/archive1 and last: Dichlorodifluoromethane +[2018-02-13T08:19:13.662] [INFO] cheese - inserting 1000 documents. first: Parchim class corvette and last: Category:Folk albums by Bahamian artists +[2018-02-13T08:19:13.676] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Ambassis jacksoniensis and last: Finance Act 2014 +[2018-02-13T08:19:13.707] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T08:19:13.732] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:19:13.775] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:19:13.812] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T08:19:14.068] [INFO] cheese - inserting 1000 documents. first: Category:Diana King albums and last: Wikipedia:WikiProject Comics/Notice board/Proposed merges and splits/2008 +[2018-02-13T08:19:14.152] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:19:14.190] [INFO] cheese - inserting 1000 documents. first: Sexy no Jutsu and last: Gabe Khouth +[2018-02-13T08:19:14.207] [INFO] cheese - inserting 1000 documents. first: R12 and last: Vasa Township, MN +[2018-02-13T08:19:14.229] [INFO] cheese - inserting 1000 documents. first: Template:Ifparadef/doc and last: Rue Mercière +[2018-02-13T08:19:14.252] [INFO] cheese - inserting 1000 documents. first: Category:People from Pechenihy Raion and last: Small world (TV miniseries) +[2018-02-13T08:19:14.274] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:19:14.275] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:19:14.332] [INFO] cheese - inserting 1000 documents. first: File:Florida Gateway College (emblem).png and last: Wikipedia:WikiProject Pharmacology/Log/2011-02-05 +[2018-02-13T08:19:14.343] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:19:14.411] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:19:14.426] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:19:14.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2015 May 9 and last: 2014–15 Championship +[2018-02-13T08:19:14.627] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:19:14.840] [INFO] cheese - inserting 1000 documents. first: Black Noddies and last: CSF1R +[2018-02-13T08:19:14.889] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:19:14.900] [INFO] cheese - inserting 1000 documents. first: Ensoulment and last: Wikipedia:Articles for deletion/Mahabon +[2018-02-13T08:19:14.975] [INFO] cheese - inserting 1000 documents. first: Tel Aviv Arlozorov Terminal and last: Wikipedia:Articles for deletion/Japan-Oceania relations +[2018-02-13T08:19:14.984] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Dexter episodes/archive2 and last: Category:Dallas-Fort Worth Rangers players +[2018-02-13T08:19:14.989] [INFO] cheese - inserting 1000 documents. first: Huang Hui-Wen and last: Category:1825 establishments in the United Kingdom +[2018-02-13T08:19:15.002] [INFO] cheese - inserting 1000 documents. first: George Washington (TV miniseries) and last: Template:Israel-journalist-stub +[2018-02-13T08:19:15.029] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:19:15.057] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:19:15.059] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:19:15.121] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:19:15.148] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:19:15.222] [INFO] cheese - inserting 1000 documents. first: File:Beyond the Mask 2015.jpg and last: Dabney T. Smith +[2018-02-13T08:19:15.290] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:19:15.417] [INFO] cheese - inserting 1000 documents. first: Big Audio Dynamite and last: Conditional proof +[2018-02-13T08:19:15.550] [INFO] cheese - inserting 1000 documents. first: Blackbeard Island National Wildlife Refuge and last: Ichc +[2018-02-13T08:19:15.561] [INFO] cheese - inserting 1000 documents. first: South Georgia Council and last: Wikipedia:Featured list removal candidates/List of numbered highways in Amenia (CDP), New York/archive1 +[2018-02-13T08:19:15.661] [INFO] cheese - batch complete in: 3.803 secs +[2018-02-13T08:19:15.670] [INFO] cheese - inserting 1000 documents. first: Category:1825 establishments in England and last: Pribumi (Native Indonesians) +[2018-02-13T08:19:15.741] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:19:15.751] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:19:15.827] [INFO] cheese - inserting 1000 documents. first: File:Edward Grigg.jpg and last: Wikipedia:WikiProject Spam/Local/floyd-flora.info +[2018-02-13T08:19:15.854] [INFO] cheese - inserting 1000 documents. first: Bühl-Stollhofen and last: Category:Bird family (Antigua and Barbuda) +[2018-02-13T08:19:15.857] [INFO] cheese - inserting 1000 documents. first: Stryker MGS and last: Chitrabhanu (mathematician) +[2018-02-13T08:19:15.873] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:19:15.954] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:19:15.959] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:19:16.007] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:19:16.028] [INFO] cheese - inserting 1000 documents. first: Conference of Badasht and last: California State Highway 38 +[2018-02-13T08:19:16.151] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:19:16.394] [INFO] cheese - inserting 1000 documents. first: Mount Titiroa and last: Antaphylatic shock +[2018-02-13T08:19:16.413] [INFO] cheese - inserting 1000 documents. first: Wolfsberg, Austria and last: Lanmeur +[2018-02-13T08:19:16.473] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:19:16.476] [INFO] cheese - inserting 1000 documents. first: Gas to liquid and last: Mayor of Esch-sur-Alzette +[2018-02-13T08:19:16.486] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:19:16.498] [INFO] cheese - inserting 1000 documents. first: Convolution algorithm and last: Rhamnopyranose +[2018-02-13T08:19:16.514] [INFO] cheese - inserting 1000 documents. first: Holeček and last: Denham Golf Club +[2018-02-13T08:19:16.560] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:19:16.587] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:19:16.612] [INFO] cheese - inserting 1000 documents. first: File:Reno Rumble Title Card.png and last: PFA Young Women's Player of the Year +[2018-02-13T08:19:16.661] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:19:16.723] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:19:16.907] [INFO] cheese - inserting 1000 documents. first: California State Highway 37 and last: Parve +[2018-02-13T08:19:17.069] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Palau articles and last: Apparent distance +[2018-02-13T08:19:17.103] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:19:17.131] [INFO] cheese - inserting 1000 documents. first: Hōkoku jinja and last: Bara Pind Lohtian +[2018-02-13T08:19:17.172] [INFO] cheese - inserting 1000 documents. first: Lenin Stadium (disambiguation) and last: File:Ruthwell Cross, Front.jpg +[2018-02-13T08:19:17.182] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:19:17.250] [INFO] cheese - inserting 1000 documents. first: Fatih mosque and last: Category:1949 American television series debuts +[2018-02-13T08:19:17.252] [INFO] cheese - inserting 1000 documents. first: American archaeology and last: Eggbeater kick +[2018-02-13T08:19:17.273] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:19:17.326] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:19:17.353] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:19:17.398] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:19:17.493] [INFO] cheese - inserting 1000 documents. first: William Samuel Lilly and last: Peter Masten Dunne +[2018-02-13T08:19:17.593] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:19:17.812] [INFO] cheese - inserting 1000 documents. first: Robert Seddon and last: Template:2002 bowl game navbox +[2018-02-13T08:19:17.845] [INFO] cheese - inserting 1000 documents. first: American Highway Flower and last: Mava, Razavi Khorasan +[2018-02-13T08:19:17.848] [INFO] cheese - inserting 1000 documents. first: Acid2 and last: Kel-Morian Combine +[2018-02-13T08:19:17.904] [INFO] cheese - inserting 1000 documents. first: Nobuyuki Hosaka and last: Dařbuján a Pandrhola +[2018-02-13T08:19:17.902] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:19:17.913] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:19:17.949] [INFO] cheese - inserting 1000 documents. first: Encap and last: CEACAM6 +[2018-02-13T08:19:17.984] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:19:18.026] [INFO] cheese - inserting 1000 documents. first: Venecuela and last: Riverdale High School (Muscoda, Wisconsin) +[2018-02-13T08:19:18.067] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:19:18.139] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:19:18.154] [INFO] cheese - inserting 1000 documents. first: Robert Power (cricketer) and last: C.J. Uzomah +[2018-02-13T08:19:18.215] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:19:18.294] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:19:18.481] [INFO] cheese - inserting 1000 documents. first: Largest dams and last: Category:Food and drink companies of Wales +[2018-02-13T08:19:18.587] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:19:18.733] [INFO] cheese - inserting 1000 documents. first: Like You and last: Simon Wilson +[2018-02-13T08:19:18.728] [INFO] cheese - inserting 1000 documents. first: Hochwald (Zittau Mountains) and last: Leucopodella +[2018-02-13T08:19:18.758] [INFO] cheese - inserting 1000 documents. first: Conjunction introduction and last: Donald Knuth +[2018-02-13T08:19:18.871] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:19:18.882] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:19:18.928] [INFO] cheese - inserting 1000 documents. first: Shoreline Unified School District and last: Yuriy Zakharkiv +[2018-02-13T08:19:18.967] [INFO] cheese - inserting 1000 documents. first: Atkinson Principles and last: Chasseguet-Smirguel +[2018-02-13T08:19:19.018] [INFO] cheese - batch complete in: 3.357 secs +[2018-02-13T08:19:19.056] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:19:19.112] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:19:19.207] [INFO] cheese - inserting 1000 documents. first: Kanjūrō Arashi and last: Richard Haynes (musician) +[2018-02-13T08:19:19.215] [INFO] cheese - inserting 1000 documents. first: Hybrid fibre coax and last: Warrenton, GA +[2018-02-13T08:19:19.360] [INFO] cheese - batch complete in: 1.376 secs +[2018-02-13T08:19:19.363] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:19:19.456] [INFO] cheese - inserting 1000 documents. first: List of members of the European Parliament for Greece, 1989–94 and last: Ramilton do Rosario +[2018-02-13T08:19:19.556] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:19:19.562] [INFO] cheese - inserting 1000 documents. first: City (Texas) and last: Stanislav Kunitskii +[2018-02-13T08:19:19.685] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:19:19.960] [INFO] cheese - inserting 1000 documents. first: Category:Record collectors and last: Portal:Current events/May 2015/Calendar +[2018-02-13T08:19:20.050] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:19:20.053] [INFO] cheese - inserting 1000 documents. first: 1998 COSAFA Cup and last: File:ShriSwamiSamarth.jpg +[2018-02-13T08:19:20.111] [INFO] cheese - inserting 1000 documents. first: Non-associativity and last: Tom Blinkhorn +[2018-02-13T08:19:20.124] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:19:20.171] [INFO] cheese - inserting 1000 documents. first: Rambé do Rosario and last: MS Nana Maru +[2018-02-13T08:19:20.174] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:19:20.177] [INFO] cheese - inserting 1000 documents. first: Warrenton, MO and last: KochelamSee +[2018-02-13T08:19:20.276] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:19:20.279] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:19:20.336] [INFO] cheese - inserting 1000 documents. first: Timo Koskela and last: Sfakia Province +[2018-02-13T08:19:20.405] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:19:20.529] [INFO] cheese - inserting 1000 documents. first: Jog (Raga) and last: 1965 in films +[2018-02-13T08:19:20.557] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T08:19:20.566] [INFO] cheese - inserting 1000 documents. first: Mail (application) and last: Duets (disambiguation) +[2018-02-13T08:19:20.642] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:19:20.715] [INFO] cheese - inserting 1000 documents. first: Debout Sur Le Zinc and last: William Slade (disambiguation) +[2018-02-13T08:19:20.771] [INFO] cheese - inserting 1000 documents. first: Xylophanes undata and last: Topaze-class cruiser +[2018-02-13T08:19:20.797] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:19:20.851] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T08:19:20.859] [INFO] cheese - inserting 1000 documents. first: Ochilview Park and last: Sgùrr a' Mhàim +[2018-02-13T08:19:20.917] [INFO] cheese - inserting 1000 documents. first: 1965 in the cinema and last: Anole (Somalia) +[2018-02-13T08:19:20.941] [INFO] cheese - inserting 1000 documents. first: Rorschach (Switzerland) and last: Château of Chillon +[2018-02-13T08:19:20.967] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:19:21.003] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T08:19:21.067] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:19:21.208] [INFO] cheese - inserting 1000 documents. first: Mosque No. 7 and last: Portal:Trains/Selected picture/Week 19, 2015/link +[2018-02-13T08:19:21.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/calyon.sk and last: Kyle Justin (disambiguation) +[2018-02-13T08:19:21.286] [INFO] cheese - inserting 1000 documents. first: Mark Brandenburg (politician) and last: Overdetermination +[2018-02-13T08:19:21.294] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T08:19:21.329] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T08:19:21.358] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T08:19:21.578] [INFO] cheese - inserting 1000 documents. first: Category:Folland aircraft and last: International Race of Champions V +[2018-02-13T08:19:21.655] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:19:21.673] [INFO] cheese - inserting 1000 documents. first: Käthe Kollwitz Museum (disambiguation) and last: New Amsterdam (song) +[2018-02-13T08:19:21.683] [INFO] cheese - inserting 1000 documents. first: Category:Winona State University faculty and last: Aaj Samaj +[2018-02-13T08:19:21.720] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T08:19:21.734] [INFO] cheese - inserting 1000 documents. first: Edwin A. Anderson, Jr. and last: Makapu'u +[2018-02-13T08:19:21.747] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T08:19:21.824] [INFO] cheese - inserting 1000 documents. first: Decimoputzu and last: OFK Grbalj +[2018-02-13T08:19:21.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/IP-VPN Lite and last: Category:Ghanaian people of Grenadian descent +[2018-02-13T08:19:21.900] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:19:21.941] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:19:22.003] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:19:22.081] [INFO] cheese - inserting 1000 documents. first: Donald E. Knuth and last: Eigenstate +[2018-02-13T08:19:22.123] [INFO] cheese - inserting 1000 documents. first: Template:User WPAnimation Coordinator and last: Strategies Against Architecture (disambiguation) +[2018-02-13T08:19:22.152] [INFO] cheese - inserting 1000 documents. first: Mwankoko and last: Karatsu Ware +[2018-02-13T08:19:22.176] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:19:22.229] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:19:22.284] [INFO] cheese - batch complete in: 3.266 secs +[2018-02-13T08:19:22.397] [INFO] cheese - inserting 1000 documents. first: Robertson Daniel and last: Pollution of the Chesapeake Bay +[2018-02-13T08:19:22.469] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:19:22.479] [INFO] cheese - inserting 1000 documents. first: File:Birmingham UK Boundary.png and last: Category:Bermudian beauty pageant winners +[2018-02-13T08:19:22.559] [INFO] cheese - inserting 1000 documents. first: Army Materiel Command (Denmark) and last: Filial imprinting +[2018-02-13T08:19:22.572] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:19:22.644] [INFO] cheese - inserting 1000 documents. first: Parameshi Prema Prasanga and last: Positive Women +[2018-02-13T08:19:22.650] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:19:22.695] [INFO] cheese - inserting 1000 documents. first: File:Culabula flag.jpg and last: Wikipedia:Mediation Cabal/Cases/2006-09-03 Falun Gong +[2018-02-13T08:19:22.715] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:19:22.827] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:19:22.832] [INFO] cheese - inserting 1000 documents. first: Karatsu-yaki and last: Wikipedia:Articles for deletion/Mark Draycott +[2018-02-13T08:19:22.902] [INFO] cheese - inserting 1000 documents. first: The Eraserheads discography and last: Template:BBC Radio 3 +[2018-02-13T08:19:22.932] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:19:23.015] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T08:19:23.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Mythology of Carnivàle/archive1 and last: THPO +[2018-02-13T08:19:23.108] [INFO] cheese - inserting 1000 documents. first: Sweetscented bedstraw and last: British Journal of Canadian Studies +[2018-02-13T08:19:23.190] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:19:23.264] [INFO] cheese - inserting 1000 documents. first: Jefferson Park (CTA station) and last: Order of Yaroslav the Wise +[2018-02-13T08:19:23.319] [INFO] cheese - batch complete in: 5.18 secs +[2018-02-13T08:19:23.360] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:19:23.450] [INFO] cheese - inserting 1000 documents. first: Brazilian slender opossum and last: I Am Not Afraid Of You And I Will Beat Your Ass +[2018-02-13T08:19:23.450] [INFO] cheese - inserting 1000 documents. first: LLEZ and last: Orion, California +[2018-02-13T08:19:23.519] [INFO] cheese - inserting 1000 documents. first: Bob Kelley and last: FK GGS Arma Ústí nad Labem +[2018-02-13T08:19:23.574] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:19:23.589] [INFO] cheese - inserting 1000 documents. first: L'Ami du peuple and last: Madison Area Technical College +[2018-02-13T08:19:23.590] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:19:23.625] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:19:23.672] [INFO] cheese - inserting 1000 documents. first: Liberation Day (Denmark) and last: Wikipedia:WikiProject Invader Zim +[2018-02-13T08:19:23.698] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:19:23.752] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:19:23.944] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Colfax County, New Mexico and last: Category:Populated places in Hidalgo County, New Mexico +[2018-02-13T08:19:24.007] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:19:24.122] [INFO] cheese - inserting 1000 documents. first: Zero (game engine) and last: Daniersburg +[2018-02-13T08:19:24.147] [INFO] cheese - inserting 1000 documents. first: 2012–2013 UCI Track Cycling World Cup Classic in Glasgow – Men's keirin and last: Wikipedia:Articles for deletion/How the West was Won: A Pioneer Pageant +[2018-02-13T08:19:24.161] [INFO] cheese - inserting 1000 documents. first: Pioneer DVJ1000 and last: File:1999 - Unplugged.jpg +[2018-02-13T08:19:24.172] [INFO] cheese - inserting 1000 documents. first: Wes Roach and last: Tyrone Brooks +[2018-02-13T08:19:24.186] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:19:24.188] [INFO] cheese - inserting 1000 documents. first: Fourteen Mile Creek and last: List of Members of the Pan-African Parliament +[2018-02-13T08:19:24.194] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:19:24.245] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:19:24.268] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:19:24.330] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:19:24.411] [INFO] cheese - inserting 1000 documents. first: Gnaeus and last: Ouzoud Falls +[2018-02-13T08:19:24.502] [INFO] cheese - inserting 1000 documents. first: Category:Greek hairdressers and last: Wikipedia:WikiProject Spam/LinkReports/adsettspartnership.co.uk +[2018-02-13T08:19:24.509] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:19:24.606] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:19:24.708] [INFO] cheese - inserting 1000 documents. first: RTN3 and last: La riba de escalote +[2018-02-13T08:19:24.716] [INFO] cheese - inserting 1000 documents. first: Ralph Klein Park and last: File:AnsulLogo.gif +[2018-02-13T08:19:24.727] [INFO] cheese - inserting 1000 documents. first: Japanese National Championship and last: Template:French schools in Indian Ocean +[2018-02-13T08:19:24.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Scott Kurland and last: WDVY +[2018-02-13T08:19:24.771] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:19:24.789] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:19:24.835] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:19:24.848] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:19:24.924] [INFO] cheese - inserting 1000 documents. first: List of African Union Institutions and last: Christmas In The Stars +[2018-02-13T08:19:25.016] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:19:25.035] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/adsettspartnership.co.uk and last: Cyberpipe +[2018-02-13T08:19:25.112] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:19:25.136] [INFO] cheese - inserting 1000 documents. first: Elizabeth Barrett Browning and last: Fatah +[2018-02-13T08:19:25.186] [INFO] cheese - inserting 1000 documents. first: La rinconada de la sierra and last: Ammari District +[2018-02-13T08:19:25.226] [INFO] cheese - inserting 1000 documents. first: Jiranakorn Stadium and last: R. J. Rosales, Jr. +[2018-02-13T08:19:25.236] [INFO] cheese - inserting 1000 documents. first: SHBG and last: Atlanta Black Crackers +[2018-02-13T08:19:25.269] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:19:25.290] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:19:25.338] [INFO] cheese - inserting 1000 documents. first: Lucy Walker steamboat disaster and last: Palaio +[2018-02-13T08:19:25.357] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/New Jersey Route 160 and last: File:Hallgrímskirkja at night.jpg +[2018-02-13T08:19:25.377] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:19:25.462] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:19:25.504] [INFO] cheese - batch complete in: 3.219 secs +[2018-02-13T08:19:25.612] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:19:25.815] [INFO] cheese - inserting 1000 documents. first: Category:Amphibious vehicles of World War II and last: FTSE4GOOD index +[2018-02-13T08:19:25.838] [INFO] cheese - inserting 1000 documents. first: Firmin Dugas and last: Route 44 (Virginia 1933) +[2018-02-13T08:19:25.897] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:19:25.991] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:19:26.166] [INFO] cheese - inserting 1000 documents. first: R. J. Rosales and last: Category:2003–04 in Syrian football +[2018-02-13T08:19:26.171] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Greece politics articles and last: Heidi Johansen +[2018-02-13T08:19:26.187] [INFO] cheese - inserting 1000 documents. first: 1905 County Championship and last: Wikipedia:Reference desk/Archives/Entertainment/2013 January 19 +[2018-02-13T08:19:26.296] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:19:26.310] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:19:26.342] [INFO] cheese - inserting 1000 documents. first: Mohamed Messaoud and last: Wikipedia:WikiProject Spam/LinkReports/gomerch.com +[2018-02-13T08:19:26.347] [INFO] cheese - inserting 1000 documents. first: Cerebrosides and last: Wikipedia:Articles for deletion/Possible successors to Pope John Paul II +[2018-02-13T08:19:26.363] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:19:26.451] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:19:26.485] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T08:19:26.686] [INFO] cheese - inserting 1000 documents. first: Gare de Buzy and last: Category:Gold Coast Football Club seasons +[2018-02-13T08:19:26.770] [INFO] cheese - inserting 1000 documents. first: Dacca University and last: Markku Pusenius +[2018-02-13T08:19:26.791] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:19:26.927] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:19:26.943] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 January 19 and last: Henry Christopher +[2018-02-13T08:19:26.962] [INFO] cheese - inserting 1000 documents. first: Borgs and last: Sparterá, Greece +[2018-02-13T08:19:27.042] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:19:27.042] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:19:27.134] [INFO] cheese - inserting 1000 documents. first: Category:Badminton tournaments in Scotland and last: File:Trans Media Watch logo.png +[2018-02-13T08:19:27.143] [INFO] cheese - inserting 1000 documents. first: Category:The Jungle Book (Disney) video games and last: Baba (2008 film) +[2018-02-13T08:19:27.176] [INFO] cheese - inserting 1000 documents. first: Pope Benedictus XVI and last: Pasqualina Napoletano +[2018-02-13T08:19:27.216] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:19:27.249] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:19:27.385] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:19:27.472] [INFO] cheese - inserting 1000 documents. first: Arlindo Gomes Semedo and last: George Deloy +[2018-02-13T08:19:27.743] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:19:27.781] [INFO] cheese - inserting 1000 documents. first: Grob Vigilant and last: M-212 (Michigan highway) +[2018-02-13T08:19:27.791] [INFO] cheese - inserting 1000 documents. first: Powellia guadarramensis and last: Template:RussiaAdmMunRef/smo/munlist/shumyachsky +[2018-02-13T08:19:27.808] [INFO] cheese - inserting 1000 documents. first: Spartera, Greece and last: Barbara Fields +[2018-02-13T08:19:27.954] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:19:27.988] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:19:28.008] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:19:28.062] [INFO] cheese - inserting 1000 documents. first: Amazing journey and last: Al Hussein (missile) +[2018-02-13T08:19:28.092] [INFO] cheese - inserting 1000 documents. first: Ucrupata and last: Category:International schools in North Rhine–Westphalia +[2018-02-13T08:19:28.176] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:19:28.220] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:19:28.540] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/IncidentArchive671 and last: Bad Elster Bademuseum +[2018-02-13T08:19:28.690] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:19:28.709] [INFO] cheese - inserting 1000 documents. first: Pedro Camacho and last: Category:Aeronautes +[2018-02-13T08:19:28.710] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Anoshirawan and last: YMS-1 Class Auxiliary Motor Minesweeper +[2018-02-13T08:19:28.752] [INFO] cheese - inserting 1000 documents. first: Na-Ri and last: Portal:Anime and manga/Selected picture/11 +[2018-02-13T08:19:28.807] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:19:28.824] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:19:28.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/List of awards and nominations received by Rage Against the Machine/archive1 and last: File:Infinity War 1.jpg +[2018-02-13T08:19:28.903] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:19:29.018] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:19:29.143] [INFO] cheese - inserting 1000 documents. first: Rockford University and last: Wikipedia:Peer review/Polish Constitution of May 3, 1791/archive1 +[2018-02-13T08:19:29.160] [INFO] cheese - inserting 1000 documents. first: File:Everything Put Together.jpg and last: EDCA +[2018-02-13T08:19:29.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Bombing of Hamburg.ogg and last: FC Vitebsk-2 +[2018-02-13T08:19:29.243] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T08:19:29.283] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:19:29.309] [INFO] cheese - batch complete in: 1.924 secs +[2018-02-13T08:19:29.414] [INFO] cheese - inserting 1000 documents. first: Forteana and last: Eurogame +[2018-02-13T08:19:29.417] [INFO] cheese - inserting 1000 documents. first: Smile of a Child and last: Clara Sorensen +[2018-02-13T08:19:29.485] [INFO] cheese - inserting 1000 documents. first: Saybagh District and last: Cytherea (erotic actress) +[2018-02-13T08:19:29.500] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:19:29.535] [INFO] cheese - inserting 1000 documents. first: National association of theatre owners and last: National lesbian and gay journalists association +[2018-02-13T08:19:29.536] [INFO] cheese - inserting 1000 documents. first: Billy Moores and last: Vera Thomas-Dace +[2018-02-13T08:19:29.580] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:19:29.625] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T08:19:29.689] [INFO] cheese - batch complete in: 4.185 secs +[2018-02-13T08:19:29.687] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:19:29.738] [INFO] cheese - inserting 1000 documents. first: Nikola Ivanov and last: Wikipedia:WikiProject Spam/LinkReports/january-girl.net +[2018-02-13T08:19:29.843] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:19:30.051] [INFO] cheese - inserting 1000 documents. first: Williams-Yulee v. Florida Bar and last: Template:BotTask/doc +[2018-02-13T08:19:30.137] [INFO] cheese - inserting 1000 documents. first: Acta Mathematicae Applicatae Sinica and last: Sphinx japix +[2018-02-13T08:19:30.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/maxstegi.f2d.de and last: Draihoek +[2018-02-13T08:19:30.256] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:19:30.227] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:19:30.274] [INFO] cheese - inserting 1000 documents. first: Cerro Huachamakari and last: Carl Alexandre +[2018-02-13T08:19:30.274] [INFO] cheese - inserting 1000 documents. first: Muslem and last: Tara brooch +[2018-02-13T08:19:30.349] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:19:30.497] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:19:30.522] [INFO] cheese - batch complete in: 1.213 secs +[2018-02-13T08:19:30.540] [INFO] cheese - inserting 1000 documents. first: File:Domino - premier issue.jpg and last: Iwan (disambiguation) +[2018-02-13T08:19:30.629] [INFO] cheese - inserting 1000 documents. first: Darren Toney and last: 1653 in poetry +[2018-02-13T08:19:30.697] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:19:30.724] [INFO] cheese - batch complete in: 1.144 secs +[2018-02-13T08:19:31.000] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Laurel McGoff and last: Gadfield Elm Chapel +[2018-02-13T08:19:31.001] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/smo/munlist/velizhsky and last: Category:Saint Kitts and Nevis judges on the courts of Anguilla +[2018-02-13T08:19:31.051] [INFO] cheese - inserting 1000 documents. first: Helen Hayes (politician) and last: Hairyfruit chewstick +[2018-02-13T08:19:31.056] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:19:31.064] [INFO] cheese - inserting 1000 documents. first: Cornipalpus succinctus and last: List of World Cup Ski jumping Team events medalists +[2018-02-13T08:19:31.074] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:19:31.138] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:19:31.157] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:19:31.257] [INFO] cheese - inserting 1000 documents. first: Today's Top 10 Award and last: Meterpreter +[2018-02-13T08:19:31.269] [INFO] cheese - inserting 1000 documents. first: Browsehappy and last: Wellsville, OH +[2018-02-13T08:19:31.341] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:19:31.353] [INFO] cheese - inserting 1000 documents. first: Qasimabad, Punjab and last: Wikipedia:Categories for discussion/Log/2009 June 24 +[2018-02-13T08:19:31.338] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:19:31.457] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:19:31.588] [INFO] cheese - inserting 1000 documents. first: Template:US R&B Chart and last: Catch Me If You Can (The Vampire Diaries) +[2018-02-13T08:19:31.678] [INFO] cheese - inserting 1000 documents. first: Uzzy and last: Judas (Lady Gaga) +[2018-02-13T08:19:31.757] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:19:31.786] [INFO] cheese - inserting 1000 documents. first: Nissakio, Greece and last: Cassia senna +[2018-02-13T08:19:31.845] [INFO] cheese - inserting 1000 documents. first: 1/1st Cheshire Yeomanry and last: Gekijōban Meiji Tokyo Renka: Yumihari no Serenade +[2018-02-13T08:19:31.816] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:19:31.990] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:19:32.008] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:19:32.125] [INFO] cheese - inserting 1000 documents. first: Polar shift and last: Oleshky +[2018-02-13T08:19:32.234] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:19:32.254] [INFO] cheese - inserting 1000 documents. first: Wellsville, PA and last: Buxton, Derbyshire +[2018-02-13T08:19:32.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mimika Air Flight 514 and last: File:All Is Wel cover.jpg +[2018-02-13T08:19:32.351] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:19:32.400] [INFO] cheese - inserting 1000 documents. first: House of Gold & Bones and last: Roan, Iran +[2018-02-13T08:19:32.420] [INFO] cheese - batch complete in: 1.082 secs +[2018-02-13T08:19:32.469] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:19:32.505] [INFO] cheese - inserting 1000 documents. first: The Journal of Social, Political, and Economic Studies and last: Roman polanski +[2018-02-13T08:19:32.565] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Arifhasan23 and last: Ciliated fringewort +[2018-02-13T08:19:32.590] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:19:32.634] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:19:32.678] [INFO] cheese - inserting 1000 documents. first: Senna angustifolia and last: Tropomodulin 1 +[2018-02-13T08:19:32.784] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:19:32.802] [INFO] cheese - inserting 1000 documents. first: File:Building 429 - space.jpg and last: Kalarippayattu films +[2018-02-13T08:19:32.823] [INFO] cheese - inserting 1000 documents. first: Thrack, Splack and Sizzle and last: File:ADLINK-logo.png +[2018-02-13T08:19:32.861] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:19:32.897] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:19:32.970] [INFO] cheese - inserting 1000 documents. first: Peter W. Hutchins and last: Category:NA-importance Italian historical states articles +[2018-02-13T08:19:32.999] [INFO] cheese - inserting 1000 documents. first: Grand Unified Theory and last: History of Africa +[2018-02-13T08:19:33.023] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:19:33.045] [INFO] cheese - inserting 1000 documents. first: San Isidro (Lima, Peru) and last: File:Bubbi Morthens (Nóttin Langa).jpg +[2018-02-13T08:19:33.077] [INFO] cheese - inserting 1000 documents. first: Portal:Horses/Selected breed/28 and last: Naval Surface Warfare Center Port Hueneme Division, Virginia Beach Detachment +[2018-02-13T08:19:33.114] [INFO] cheese - inserting 1000 documents. first: Brian G. Sparkes and last: Pearcey integral +[2018-02-13T08:19:33.141] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T08:19:33.189] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:19:33.225] [INFO] cheese - batch complete in: 3.536 secs +[2018-02-13T08:19:33.241] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:19:33.270] [INFO] cheese - inserting 1000 documents. first: Dorset Coast and last: Office of laboratory animal welfare +[2018-02-13T08:19:33.369] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:19:33.443] [INFO] cheese - inserting 1000 documents. first: Nazmi Mehmeti and last: Wikipedia:Articles for deletion/DSmeet +[2018-02-13T08:19:33.477] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2013 January 21 and last: Zakabannaya Mosque +[2018-02-13T08:19:33.484] [INFO] cheese - inserting 1000 documents. first: Life Is like a Mountain Railroad and last: How the Grinch Stole Christmas! +[2018-02-13T08:19:33.547] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:19:33.555] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:19:33.598] [INFO] cheese - inserting 1000 documents. first: Elizabeth Armitstead and last: Domenico del Barbiere +[2018-02-13T08:19:33.575] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:19:33.686] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T08:19:33.774] [INFO] cheese - inserting 1000 documents. first: La Trappe Quadrupel and last: Category:Art in Washington (state) +[2018-02-13T08:19:33.844] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:19:33.865] [INFO] cheese - inserting 1000 documents. first: Dosch and last: Boeing 707-3D3C +[2018-02-13T08:19:33.987] [INFO] cheese - inserting 1000 documents. first: Neumarkt in der oberpfalz and last: New york city mayoralty elections +[2018-02-13T08:19:33.993] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:19:34.010] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T08:19:34.182] [INFO] cheese - inserting 1000 documents. first: Obvious and last: CSIX (disambiguation) +[2018-02-13T08:19:34.203] [INFO] cheese - inserting 1000 documents. first: Bukit Indah Highway and last: Monterey Sports Car Championships +[2018-02-13T08:19:34.221] [INFO] cheese - inserting 1000 documents. first: Michael Phelan (hurler) and last: Template:Metropolitans of British Columbia +[2018-02-13T08:19:34.223] [INFO] cheese - inserting 1000 documents. first: C.Ss.R. and last: Carboxylic group +[2018-02-13T08:19:34.239] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:19:34.281] [INFO] cheese - inserting 1000 documents. first: Charles Edward Curzon and last: TM-62 Landmine +[2018-02-13T08:19:34.281] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:19:34.299] [INFO] cheese - inserting 1000 documents. first: One night in paris and last: Nick cave i przyjaciele +[2018-02-13T08:19:34.315] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:19:34.370] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:19:34.371] [INFO] cheese - batch complete in: 1.23 secs +[2018-02-13T08:19:34.378] [INFO] cheese - batch complete in: 0.368 secs +[2018-02-13T08:19:34.551] [INFO] cheese - inserting 1000 documents. first: Ilyushin II-62M and last: Venelin Khubenov +[2018-02-13T08:19:34.654] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:19:34.819] [INFO] cheese - inserting 1000 documents. first: Nick drake discography and last: Phonating +[2018-02-13T08:19:34.904] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:19:34.962] [INFO] cheese - inserting 1000 documents. first: Ben Ohau and last: PHILM 1 +[2018-02-13T08:19:34.973] [INFO] cheese - inserting 1000 documents. first: First League of the Republika Srpska 2001–02 and last: Auto de fe (disambiguation) +[2018-02-13T08:19:35.040] [INFO] cheese - inserting 1000 documents. first: Elfin forest, San Diego County and last: Route 480 (Maryland) +[2018-02-13T08:19:35.048] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:19:35.073] [INFO] cheese - inserting 1000 documents. first: Northeast Grand Prix and last: Wikipedia:Wikipedia Signpost/2013-01-28/Recent research +[2018-02-13T08:19:35.074] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:19:35.151] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:19:35.203] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:19:35.300] [INFO] cheese - inserting 1000 documents. first: Category:Pages using infobox tennis biography with tennishofid and last: Lǐ Líng-wèi +[2018-02-13T08:19:35.358] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:19:35.529] [INFO] cheese - inserting 1000 documents. first: Opus Dei: Prominent Members and last: Wikipedia:Articles for deletion/Christopher A. Reh +[2018-02-13T08:19:35.529] [INFO] cheese - inserting 1000 documents. first: John R. G. Hassard and last: 高円寺百景 +[2018-02-13T08:19:35.539] [INFO] cheese - inserting 1000 documents. first: Ed Hovlik and last: 300 Metres Dash +[2018-02-13T08:19:35.613] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:19:35.645] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:19:35.686] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T08:19:35.739] [INFO] cheese - inserting 1000 documents. first: Holy Cross Catholic Academy and last: John Madsen (American football) +[2018-02-13T08:19:35.855] [INFO] cheese - inserting 1000 documents. first: Lǐ Líng-Wèi and last: 179th Tunnelling Company +[2018-02-13T08:19:35.856] [INFO] cheese - inserting 1000 documents. first: Atlanta Heights and last: Annenberg (surname) +[2018-02-13T08:19:35.875] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:19:35.973] [INFO] cheese - inserting 1000 documents. first: Michael Jackson's Moonwalker Sega Genesis and last: Wikipedia:Valued picture candidates/Hudson River +[2018-02-13T08:19:35.977] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:19:36.094] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:19:36.173] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T08:19:36.299] [INFO] cheese - inserting 1000 documents. first: Little Morton Hall and last: Template:Berner Oberland Bahn lines +[2018-02-13T08:19:36.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Biography/Peer review/Evanescence and last: Category:Trees of the Plains-Midwest (United States) +[2018-02-13T08:19:36.359] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:19:36.448] [INFO] cheese - inserting 1000 documents. first: Poul Nielson and last: Arcic +[2018-02-13T08:19:36.462] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:19:36.469] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Akhil.s.vijayan and last: Berner's Heath +[2018-02-13T08:19:36.498] [INFO] cheese - inserting 1000 documents. first: History of Oceania and last: JohnnyUnitas +[2018-02-13T08:19:36.558] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:19:36.564] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:19:36.567] [INFO] cheese - inserting 1000 documents. first: Michigan Algorithm Decoder and last: Category:Wikipedia sockpuppets of Outoftuneviolin +[2018-02-13T08:19:36.662] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:19:36.717] [INFO] cheese - inserting 1000 documents. first: File:MBRRACE-UK logo transparent.png and last: Category:Wind power in Maine +[2018-02-13T08:19:36.726] [INFO] cheese - batch complete in: 3.5 secs +[2018-02-13T08:19:36.822] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:19:36.870] [INFO] cheese - inserting 1000 documents. first: Chocolate Cliffs and last: The intimates +[2018-02-13T08:19:36.947] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:19:36.994] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elevator Sweep and last: Syndactyly type 2 +[2018-02-13T08:19:37.063] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T08:19:37.173] [INFO] cheese - inserting 1000 documents. first: Doping cases in athletics and last: USS Slate (IX-152) +[2018-02-13T08:19:37.180] [INFO] cheese - inserting 1000 documents. first: KLC2 and last: Japanese aircraft carrier Chitōse +[2018-02-13T08:19:37.252] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:19:37.300] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:19:37.462] [INFO] cheese - inserting 1000 documents. first: Adolphe von Menzel and last: The Ape of Naples +[2018-02-13T08:19:37.528] [INFO] cheese - inserting 1000 documents. first: Cubic wisdom and last: ZTE +[2018-02-13T08:19:37.546] [INFO] cheese - inserting 1000 documents. first: Polymedicine and last: File:Hippie 97.5.jpg +[2018-02-13T08:19:37.648] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:19:37.741] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:19:37.802] [INFO] cheese - batch complete in: 1.244 secs +[2018-02-13T08:19:37.898] [INFO] cheese - inserting 1000 documents. first: Category:Category-Class History of Canada articles and last: Fiestas de Quito +[2018-02-13T08:19:37.968] [INFO] cheese - inserting 1000 documents. first: Beach 67th Street – Arverne By The Sea (IND Rockaway Line) and last: Orrius +[2018-02-13T08:19:38.014] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:19:38.056] [INFO] cheese - inserting 1000 documents. first: Ciresanu and last: Río Anon +[2018-02-13T08:19:38.103] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:19:38.229] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T08:19:38.263] [INFO] cheese - inserting 1000 documents. first: File:Terazije Theatre logo.jpg and last: Category:Vehicles introduced in 1997 +[2018-02-13T08:19:38.353] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:19:38.460] [INFO] cheese - inserting 1000 documents. first: Sandro Montefusco and last: Category:1189 disestablishments by country +[2018-02-13T08:19:38.513] [INFO] cheese - inserting 1000 documents. first: José Sá and last: Betel-chewing +[2018-02-13T08:19:38.527] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:19:38.549] [INFO] cheese - inserting 1000 documents. first: Worship with Don Moen and last: Category:Aquaria in Portugal +[2018-02-13T08:19:38.594] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:19:38.629] [INFO] cheese - inserting 1000 documents. first: North carolina commissioner of agriculture and last: Nuances of a theme by williams +[2018-02-13T08:19:38.651] [INFO] cheese - inserting 1000 documents. first: Simon Diamond and last: Big and Ugly Rendering Project +[2018-02-13T08:19:38.658] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T08:19:38.657] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:19:38.718] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 7 and last: New Mexico Open +[2018-02-13T08:19:38.750] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:19:38.793] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:19:38.929] [INFO] cheese - inserting 1000 documents. first: James Mackay Langtry and last: Shipping bandages +[2018-02-13T08:19:39.015] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:19:39.047] [INFO] cheese - inserting 1000 documents. first: Category:1189 in India and last: Prehistory of Germany +[2018-02-13T08:19:39.100] [INFO] cheese - inserting 1000 documents. first: Nuaym ibn masud and last: West Ham United F.C. 1980-1981 +[2018-02-13T08:19:39.122] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:19:39.130] [INFO] cheese - inserting 1000 documents. first: Gastón Soffritti and last: Chris Suharlim +[2018-02-13T08:19:39.141] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:19:39.203] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:19:39.243] [INFO] cheese - inserting 1000 documents. first: The Good Thing and last: Wikipedia:Miscellany for deletion/Wikipedia:Deleted articles with freaky titles +[2018-02-13T08:19:39.253] [INFO] cheese - inserting 1000 documents. first: Jackie Blue (album) and last: 546th Fighter Squadron +[2018-02-13T08:19:39.375] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:19:39.398] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:19:39.715] [INFO] cheese - inserting 1000 documents. first: United States House Financial Services Subcommittee on International Monetary Policy and Trade and last: Chiayi Air Base +[2018-02-13T08:19:39.724] [INFO] cheese - inserting 1000 documents. first: West Ham United F.C. 1979-1980 and last: File:L'Amour n'est rien... (video).jpg +[2018-02-13T08:19:39.741] [INFO] cheese - inserting 1000 documents. first: Hellas-Sat and last: Audi RS2 +[2018-02-13T08:19:39.784] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:19:39.821] [INFO] cheese - inserting 1000 documents. first: Govinda IV and last: Caparaó hocicudo +[2018-02-13T08:19:39.853] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:19:39.887] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:19:39.904] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:19:39.999] [INFO] cheese - inserting 1000 documents. first: Yumbe District and last: Pedro Rubiano +[2018-02-13T08:19:40.001] [INFO] cheese - inserting 1000 documents. first: Advance Auto 150 and last: Wikipedia:WikiProject Spam/LinkReports/skmrf.ru +[2018-02-13T08:19:40.090] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:19:40.142] [INFO] cheese - batch complete in: 1.391 secs +[2018-02-13T08:19:40.356] [INFO] cheese - inserting 1000 documents. first: David Oelhoffen and last: Ye Olde Trip To Jerusalem +[2018-02-13T08:19:40.425] [INFO] cheese - inserting 1000 documents. first: Denis Selimovič and last: Benjamin Burge +[2018-02-13T08:19:40.507] [INFO] cheese - inserting 1000 documents. first: Template:Nintendo.com and last: Esophageal motility disorders +[2018-02-13T08:19:40.550] [INFO] cheese - inserting 1000 documents. first: Pxt and last: GSP algorithm +[2018-02-13T08:19:40.555] [INFO] cheese - batch complete in: 1.433 secs +[2018-02-13T08:19:40.559] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:19:40.673] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:19:40.740] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:19:40.799] [INFO] cheese - inserting 1000 documents. first: Max Rosenmann and last: Fabric Live 35 +[2018-02-13T08:19:40.825] [INFO] cheese - inserting 1000 documents. first: Johnny Unitas and last: Kesgrave +[2018-02-13T08:19:40.889] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:19:40.982] [INFO] cheese - inserting 1000 documents. first: Márton Joób and last: Jacobi polynomials +[2018-02-13T08:19:41.053] [INFO] cheese - batch complete in: 4.326 secs +[2018-02-13T08:19:41.083] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T08:19:41.103] [INFO] cheese - inserting 1000 documents. first: China Town and last: John Martin-Harvey +[2018-02-13T08:19:41.154] [INFO] cheese - inserting 1000 documents. first: Category:1999 animal births and last: Tamagawa University +[2018-02-13T08:19:41.155] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Maryland Route 478 and last: Isolation Transformer (Dry) +[2018-02-13T08:19:41.247] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:19:41.262] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:19:41.265] [INFO] cheese - inserting 1000 documents. first: Category:1470 in Guatemala and last: Victory Day (August 14) +[2018-02-13T08:19:41.290] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:19:41.355] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:19:41.422] [INFO] cheese - inserting 1000 documents. first: Bienhua and last: Siege of Shigisan +[2018-02-13T08:19:41.484] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:19:41.605] [INFO] cheese - inserting 1000 documents. first: FabricLive 35 and last: File:Incomplete haida pole.jpg +[2018-02-13T08:19:41.728] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:19:41.806] [INFO] cheese - inserting 1000 documents. first: Futami District, Hokkaidō and last: File:Amharic Braille chart.jpg +[2018-02-13T08:19:41.947] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:19:42.019] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2007 December 18 and last: Mikolaj Abramowicz +[2018-02-13T08:19:42.175] [INFO] cheese - inserting 1000 documents. first: Victory Day (August 14th) and last: Isiah Lord Thomas the Third +[2018-02-13T08:19:42.274] [INFO] cheese - inserting 1000 documents. first: NetAcquire and last: Wellesley Hospital +[2018-02-13T08:19:42.273] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:19:42.395] [INFO] cheese - batch complete in: 1.04 secs +[2018-02-13T08:19:42.480] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:19:42.487] [INFO] cheese - inserting 1000 documents. first: 30 Foot Fall and last: Trife Diesel +[2018-02-13T08:19:42.599] [INFO] cheese - inserting 1000 documents. first: When You Dish Upon a Star and last: Great Britain at the 1988 Summer Olympics +[2018-02-13T08:19:42.638] [INFO] cheese - batch complete in: 1.553 secs +[2018-02-13T08:19:42.755] [INFO] cheese - batch complete in: 1.493 secs +[2018-02-13T08:19:42.785] [INFO] cheese - inserting 1000 documents. first: Friedrich Nicolaus Brauns and last: Bulu-Bene language +[2018-02-13T08:19:42.892] [INFO] cheese - inserting 1000 documents. first: Gmina Świerzawa and last: San lorenzo in damaso +[2018-02-13T08:19:42.893] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:19:42.949] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:19:43.090] [INFO] cheese - inserting 1000 documents. first: Template:Articles with dead external links progress and last: Korakohorion, Greece +[2018-02-13T08:19:43.132] [INFO] cheese - inserting 1000 documents. first: 2015 Sprint All-Star Race and last: (Norman) John Balfour Blakiston +[2018-02-13T08:19:43.209] [INFO] cheese - batch complete in: 1.478 secs +[2018-02-13T08:19:43.218] [INFO] cheese - inserting 1000 documents. first: Category:Time in the United Kingdom and last: Road speed limit enforcement in Australia +[2018-02-13T08:19:43.224] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:19:43.327] [INFO] cheese - inserting 1000 documents. first: San lorenzo in lucina and last: Jim Rogan +[2018-02-13T08:19:43.332] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:19:43.343] [INFO] cheese - inserting 1000 documents. first: 1911 U.S. National Championships – Men's Singles and last: Kharand +[2018-02-13T08:19:43.375] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T08:19:43.470] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:19:43.670] [INFO] cheese - inserting 1000 documents. first: Minty Peterson and last: File:LeagueLogo80pc.jpg +[2018-02-13T08:19:43.771] [INFO] cheese - batch complete in: 1.133 secs +[2018-02-13T08:19:43.873] [INFO] cheese - inserting 1000 documents. first: Category:Portsmouth Truckers players and last: Template:1982 Hurling All Stars +[2018-02-13T08:19:43.884] [INFO] cheese - inserting 1000 documents. first: Sainte-Marie-Madeleine, Quebec and last: 1988 in art +[2018-02-13T08:19:43.926] [INFO] cheese - inserting 1000 documents. first: La Troienne and last: Wikipedia:Articles for deletion/My Gothic Heart +[2018-02-13T08:19:43.990] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:19:44.008] [INFO] cheese - batch complete in: 1.253 secs +[2018-02-13T08:19:44.073] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:19:44.144] [INFO] cheese - inserting 1000 documents. first: St Ives Roosters and last: The Gannett Company +[2018-02-13T08:19:44.147] [INFO] cheese - inserting 1000 documents. first: Aparamán Tepui and last: Category:Articles sourced only by IMDb from February 2013 +[2018-02-13T08:19:44.222] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:19:44.214] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:19:44.405] [INFO] cheese - inserting 1000 documents. first: WestJet Destinations and last: Cuisine of Belize +[2018-02-13T08:19:44.412] [INFO] cheese - inserting 1000 documents. first: Kurt Waldheim and last: Laurence of Canterbury +[2018-02-13T08:19:44.472] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:19:44.507] [INFO] cheese - inserting 1000 documents. first: File:Final Fantasy XIII battle.png and last: Marat Galimov +[2018-02-13T08:19:44.563] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:19:44.608] [INFO] cheese - batch complete in: 3.555 secs +[2018-02-13T08:19:44.708] [INFO] cheese - inserting 1000 documents. first: Template:Italy-company-stub and last: Blood Arm +[2018-02-13T08:19:44.709] [INFO] cheese - inserting 1000 documents. first: Gannett Co., Inc. and last: Papa John's.com Bowl +[2018-02-13T08:19:44.802] [INFO] cheese - inserting 1000 documents. first: Category:People extradited from Yugoslavia and last: Scopula vicina (Gaede, 1917) +[2018-02-13T08:19:44.959] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:19:44.982] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:19:45.012] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:19:45.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Faqmagazine and last: Elvis +[2018-02-13T08:19:45.307] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T08:19:45.450] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Aliceelisabethmay/JBA Consulting and last: WFMT (FM) +[2018-02-13T08:19:45.469] [INFO] cheese - inserting 1000 documents. first: Icelandic independence movement and last: Outline of Washington territorial evolution +[2018-02-13T08:19:45.625] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T08:19:45.638] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:19:45.789] [INFO] cheese - inserting 1000 documents. first: Siege of Montreal and last: Seaboard Coastline Railroad Passenger Station/version 2 +[2018-02-13T08:19:45.855] [INFO] cheese - inserting 1000 documents. first: Xiaqiong Town and last: Antillean cave rail +[2018-02-13T08:19:45.873] [INFO] cheese - inserting 1000 documents. first: Mammolshain and last: Erkes-e Pa'in +[2018-02-13T08:19:45.910] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:19:45.978] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:19:46.014] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:19:46.234] [INFO] cheese - inserting 1000 documents. first: Macroevolutionary Theory and last: Eyebrow modification +[2018-02-13T08:19:46.412] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:19:46.522] [INFO] cheese - inserting 1000 documents. first: Category:1996 disestablishments in the Comoros and last: Wikipedia:WikiProject Spam/LinkReports/web2.utc.edu +[2018-02-13T08:19:46.647] [INFO] cheese - batch complete in: 3.423 secs +[2018-02-13T08:19:46.676] [INFO] cheese - inserting 1000 documents. first: General Motors Agila and last: Classical guitar repertoire +[2018-02-13T08:19:46.742] [INFO] cheese - inserting 1000 documents. first: Cape longclaw and last: Retaruke River +[2018-02-13T08:19:46.779] [INFO] cheese - inserting 1000 documents. first: House Committee on Financial Services and last: Sarbesti +[2018-02-13T08:19:46.781] [INFO] cheese - inserting 1000 documents. first: Arges, Iran (disambiguation) and last: Tryptophan N-hydroxylase +[2018-02-13T08:19:46.789] [INFO] cheese - inserting 1000 documents. first: George Kojac and last: Template:Atago class destroyer +[2018-02-13T08:19:46.839] [INFO] cheese - batch complete in: 1.214 secs +[2018-02-13T08:19:46.922] [INFO] cheese - batch complete in: 1.615 secs +[2018-02-13T08:19:46.959] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:19:46.896] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:19:46.973] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:19:47.119] [INFO] cheese - inserting 1000 documents. first: Archstone-Smith Trust and last: Wikipedia:Articles for deletion/Middleverse +[2018-02-13T08:19:47.207] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:19:47.389] [INFO] cheese - inserting 1000 documents. first: Kalaja and last: Manyflower Geranium +[2018-02-13T08:19:47.586] [INFO] cheese - inserting 1000 documents. first: Trần Vũ and last: Kola class frigate +[2018-02-13T08:19:47.661] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:19:47.742] [INFO] cheese - inserting 1000 documents. first: Criticism of NASCAR and last: Canoga parque X3 +[2018-02-13T08:19:47.787] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:19:47.982] [INFO] cheese - batch complete in: 1.022 secs +[2018-02-13T08:19:48.047] [INFO] cheese - inserting 1000 documents. first: Template:R from disambiguation and last: The Witness (1969 film) +[2018-02-13T08:19:48.171] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:19:48.263] [INFO] cheese - inserting 1000 documents. first: Sylvan Lake (Alberta) and last: Robb Sapp +[2018-02-13T08:19:48.330] [INFO] cheese - inserting 1000 documents. first: Hillury Duff and last: DPDT +[2018-02-13T08:19:48.350] [INFO] cheese - inserting 1000 documents. first: Luis Santos (disambiguation) and last: Gansky +[2018-02-13T08:19:48.369] [INFO] cheese - inserting 1000 documents. first: Haleakalā Geranium and last: Atchison County Raceway +[2018-02-13T08:19:48.442] [INFO] cheese - batch complete in: 1.546 secs +[2018-02-13T08:19:48.460] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:19:48.496] [INFO] cheese - batch complete in: 1.574 secs +[2018-02-13T08:19:48.523] [INFO] cheese - inserting 1000 documents. first: Bruce Coulter and last: Jack Off Jill +[2018-02-13T08:19:48.537] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:19:48.701] [INFO] cheese - batch complete in: 1.862 secs +[2018-02-13T08:19:48.812] [INFO] cheese - inserting 1000 documents. first: Little Big Inch and last: Portal:Gibraltar/Quotes/7 +[2018-02-13T08:19:48.932] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:19:49.062] [INFO] cheese - inserting 1000 documents. first: Britt Township, Hancock County, Iowa and last: Pierluigi Da Palestrina +[2018-02-13T08:19:49.105] [INFO] cheese - inserting 1000 documents. first: Pak Super League and last: Fucket +[2018-02-13T08:19:49.219] [INFO] cheese - inserting 1000 documents. first: Vrhobreznica Chronicle and last: Wikipedia:Articles for deletion/Prakriti Shrestha +[2018-02-13T08:19:49.220] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:19:49.304] [INFO] cheese - inserting 1000 documents. first: La Banda Sinaloense and last: Mehmed III +[2018-02-13T08:19:49.307] [INFO] cheese - inserting 1000 documents. first: Maybach Taniguchi and last: Template:Knott's Berry Farm +[2018-02-13T08:19:49.314] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:19:49.364] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:19:49.438] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:19:49.679] [INFO] cheese - batch complete in: 5.071 secs +[2018-02-13T08:19:49.700] [INFO] cheese - inserting 1000 documents. first: File:Preston Reed - Pointing Up.jpg and last: Portal:Current events/2007 December 24 +[2018-02-13T08:19:49.772] [INFO] cheese - inserting 1000 documents. first: PL-4 and last: You Forgot It In People +[2018-02-13T08:19:49.816] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:19:49.944] [INFO] cheese - batch complete in: 1.448 secs +[2018-02-13T08:19:49.963] [INFO] cheese - inserting 1000 documents. first: Page County Courthouse (Clarinda, Iowa) and last: Hungarian name days +[2018-02-13T08:19:49.966] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Chaetostoma microps and last: Category:Chinese female badminton players +[2018-02-13T08:19:50.031] [INFO] cheese - inserting 1000 documents. first: Suicides (short story) and last: Category:Seals of Philippine provinces +[2018-02-13T08:19:50.076] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:19:50.093] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:19:50.135] [INFO] cheese - inserting 1000 documents. first: Jorge Sapag and last: Scenes from an italian restaurant +[2018-02-13T08:19:50.136] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:19:50.179] [INFO] cheese - inserting 1000 documents. first: Poly(A) polymerase and last: Route 134 (Virginia pre-1933) +[2018-02-13T08:19:50.180] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T08:19:50.306] [INFO] cheese - inserting 1000 documents. first: Crunch (candy) and last: Skewer (chess) +[2018-02-13T08:19:50.419] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:19:50.449] [INFO] cheese - batch complete in: 1.748 secs +[2018-02-13T08:19:50.743] [INFO] cheese - inserting 1000 documents. first: Tale of the mummy and last: Taxonomy of the cactaceae +[2018-02-13T08:19:50.825] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:19:50.926] [INFO] cheese - inserting 1000 documents. first: Bahá'í Faith in Europe and last: Category:2000 in Odisha +[2018-02-13T08:19:50.938] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 36 and last: Category:Songs written by Pharrell Williams +[2018-02-13T08:19:50.969] [INFO] cheese - inserting 1000 documents. first: Obultronius sabinus and last: Jump (Kylie Minogue song) +[2018-02-13T08:19:50.989] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:19:51.024] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:19:51.137] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:19:51.158] [INFO] cheese - inserting 1000 documents. first: Scouting in greater manchester west and last: Seat of the coptic orthodox pope of alexandria +[2018-02-13T08:19:51.208] [INFO] cheese - inserting 1000 documents. first: Love Among the Ruins (album) and last: Lyndon Hooper +[2018-02-13T08:19:51.190] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T08:19:51.354] [INFO] cheese - batch complete in: 1.409 secs +[2018-02-13T08:19:51.441] [INFO] cheese - inserting 1000 documents. first: Temple of amenhotep iv and last: Sejm of the republic of poland +[2018-02-13T08:19:51.444] [INFO] cheese - inserting 1000 documents. first: State Route 74 (Virginia 1940) and last: Bishop of Konstanz +[2018-02-13T08:19:51.475] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T08:19:51.565] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:19:51.736] [INFO] cheese - inserting 1000 documents. first: Category:2001 in Odisha and last: 𝄵 +[2018-02-13T08:19:51.756] [INFO] cheese - inserting 1000 documents. first: Skewer (Chess) and last: Category:People from Woodburn, Kentucky +[2018-02-13T08:19:51.891] [INFO] cheese - inserting 1000 documents. first: Category:Sporting goods manufacturers of Austria and last: Xonacatlán +[2018-02-13T08:19:51.891] [INFO] cheese - batch complete in: 1.44 secs +[2018-02-13T08:19:51.942] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:19:52.021] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:19:52.105] [INFO] cheese - inserting 1000 documents. first: Temple Buell College and last: Brickelia desertorum +[2018-02-13T08:19:52.123] [INFO] cheese - inserting 1000 documents. first: Texas tech university health sciences center school of pharmacy abilene campus and last: Dedham, Mass +[2018-02-13T08:19:52.190] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:19:52.238] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:19:52.455] [INFO] cheese - inserting 1000 documents. first: Solihull Metropolitan Borough Council election, 1995 and last: Category:Songs written by Lisa Greene +[2018-02-13T08:19:52.468] [INFO] cheese - inserting 1000 documents. first: Toni Söderholm and last: List of newspapers in Sudan +[2018-02-13T08:19:52.472] [INFO] cheese - inserting 1000 documents. first: Tobias Vincent "Tobey" Maguire and last: Jon DaCosta +[2018-02-13T08:19:52.503] [INFO] cheese - inserting 1000 documents. first: Longster trail and last: Frog Museum (Münchenstein) +[2018-02-13T08:19:52.540] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:19:52.537] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:19:52.574] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:19:52.580] [INFO] cheese - inserting 1000 documents. first: Motion Picture Alliance for the Preservation of American Ideals and last: Apple Backup +[2018-02-13T08:19:52.585] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T08:19:52.642] [INFO] cheese - inserting 1000 documents. first: Agoseris hirsuta and last: Franseria cuneifolia +[2018-02-13T08:19:52.675] [INFO] cheese - inserting 1000 documents. first: Deerfield, Ma and last: Nantucket, Mass +[2018-02-13T08:19:52.701] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T08:19:52.708] [INFO] cheese - batch complete in: 1.353 secs +[2018-02-13T08:19:52.818] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:19:53.073] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Claude Le Péron and last: Wikipedia:Miscellany for deletion/User:Ferry Lane Estate Wildlife/sandbox +[2018-02-13T08:19:53.075] [INFO] cheese - inserting 1000 documents. first: Edge list and last: Speed Kelly +[2018-02-13T08:19:53.097] [INFO] cheese - inserting 1000 documents. first: Vladicaris and last: Category:Michigan City White Caps players +[2018-02-13T08:19:53.122] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:19:53.120] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:19:53.199] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:19:53.242] [INFO] cheese - inserting 1000 documents. first: San Felipe (shipwreck) and last: Orny Adams +[2018-02-13T08:19:53.311] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:19:53.370] [INFO] cheese - inserting 1000 documents. first: 1965 Men's British Open Squash Championship and last: Category:Imperial Russian schoolteachers +[2018-02-13T08:19:53.507] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:19:53.542] [INFO] cheese - inserting 1000 documents. first: Natick, Ma and last: DPP7 +[2018-02-13T08:19:53.546] [INFO] cheese - inserting 1000 documents. first: Mustafa I and last: List of national anthems +[2018-02-13T08:19:53.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Neopaganism/Prospectus and last: Category:Slovak people of Bosnia and Herzegovina descent +[2018-02-13T08:19:53.696] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:19:53.705] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:19:53.809] [INFO] cheese - inserting 1000 documents. first: Parker High School (Illinois) and last: File:Tamil Nadu Civil Supplies Corporation (emblem).gif +[2018-02-13T08:19:53.830] [INFO] cheese - batch complete in: 4.151 secs +[2018-02-13T08:19:53.859] [INFO] cheese - inserting 1000 documents. first: File:Spartina alterniflora.jpg and last: Primera Divisió 2007-08 +[2018-02-13T08:19:53.966] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:19:54.006] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:19:54.123] [INFO] cheese - inserting 1000 documents. first: Baseball telecasts technology and last: File:Strandstrip.jpg +[2018-02-13T08:19:54.187] [INFO] cheese - inserting 1000 documents. first: Deerfield Beach Arboretum and last: Michael Morbius +[2018-02-13T08:19:54.228] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:19:54.319] [INFO] cheese - inserting 1000 documents. first: AaronCarter and last: Lovers Are Never Losers +[2018-02-13T08:19:54.425] [INFO] cheese - batch complete in: 1.704 secs +[2018-02-13T08:19:54.462] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:19:54.583] [INFO] cheese - inserting 1000 documents. first: File:Caseyology.jpg and last: File:L'Excelsior, Au Salon d'Automne, Les Indépendants, October 1912, Metzinger, Gleizes, Kupka reproduced.jpg +[2018-02-13T08:19:54.632] [INFO] cheese - inserting 1000 documents. first: Template:STV Election box begin2 and last: Buckingham-Pi theorem +[2018-02-13T08:19:54.704] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:19:54.731] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:19:54.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Textile Arts/References and last: PPP1R10 +[2018-02-13T08:19:54.791] [INFO] cheese - inserting 1000 documents. first: Category:South Korean idols and last: Category:Hertfordshire subdivision navigational boxes +[2018-02-13T08:19:54.885] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:19:54.935] [INFO] cheese - batch complete in: 1.238 secs +[2018-02-13T08:19:55.091] [INFO] cheese - inserting 1000 documents. first: NACAC U23 Championships and last: The Vast Spoils of America (From the Badlands through the Ocean) +[2018-02-13T08:19:55.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adetola Faminu and last: Bishop of Hereford +[2018-02-13T08:19:55.135] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:19:55.156] [INFO] cheese - inserting 1000 documents. first: Afzal Ahmed Khan and last: Highlands long-finned eel +[2018-02-13T08:19:55.203] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:19:55.237] [INFO] cheese - inserting 1000 documents. first: Category:Peoples of Anglo-Saxon England and last: Frédéric Joly +[2018-02-13T08:19:55.243] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:19:55.302] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:19:55.372] [INFO] cheese - inserting 1000 documents. first: The Mighty Rio Grande and last: Albert Hawkins +[2018-02-13T08:19:55.516] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:19:55.608] [INFO] cheese - inserting 1000 documents. first: PRCC (gene) and last: Wellesley, Ma +[2018-02-13T08:19:55.691] [INFO] cheese - inserting 1000 documents. first: Anguilla interioris and last: List of supermarket chains in the Republic of the Congo +[2018-02-13T08:19:55.699] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:19:55.716] [INFO] cheese - inserting 1000 documents. first: The Last Lie I Told and last: Warwick War Memorial +[2018-02-13T08:19:55.797] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:19:55.919] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:19:55.965] [INFO] cheese - inserting 1000 documents. first: Category:Government responses to UFOs and last: Tatiana Guderzo +[2018-02-13T08:19:56.043] [INFO] cheese - inserting 1000 documents. first: Carbondale Historical Society & Museum and last: Template:User in Guinea +[2018-02-13T08:19:56.055] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:19:56.082] [INFO] cheese - inserting 1000 documents. first: Category:Anglican congregations established in the 17th century and last: Template:R from character +[2018-02-13T08:19:56.122] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:19:56.197] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:19:56.205] [INFO] cheese - inserting 1000 documents. first: Armaan (1966 film) and last: Mike Newdow +[2018-02-13T08:19:56.287] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from New Jersey and last: Mordellina gracilis +[2018-02-13T08:19:56.289] [INFO] cheese - batch complete in: 1.864 secs +[2018-02-13T08:19:56.339] [INFO] cheese - inserting 1000 documents. first: WWI truce and last: Dos Palos, Ca +[2018-02-13T08:19:56.374] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:19:56.451] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:19:56.480] [INFO] cheese - inserting 1000 documents. first: Saturns Pattern - Single and last: Grove Park, Charlestown +[2018-02-13T08:19:56.610] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:19:56.654] [INFO] cheese - inserting 1000 documents. first: Aronia arbutifolia and last: Template:Retailing-subscription +[2018-02-13T08:19:56.760] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:19:56.786] [INFO] cheese - inserting 1000 documents. first: Maji Desu ka Ska! and last: Aetheliparis rossi +[2018-02-13T08:19:56.940] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:19:56.956] [INFO] cheese - inserting 1000 documents. first: Zythos modesta and last: Category:My Bloody Valentine (band) EPs +[2018-02-13T08:19:57.029] [INFO] cheese - inserting 1000 documents. first: File:Logo stm.jpg and last: File:Logo-rw-blue.jpg +[2018-02-13T08:19:57.097] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:19:57.207] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:19:57.242] [INFO] cheese - inserting 1000 documents. first: Flammable ice and last: Portal:Film/Selected article/59 +[2018-02-13T08:19:57.350] [INFO] cheese - inserting 1000 documents. first: Nikola Tesla and last: Postmaster General +[2018-02-13T08:19:57.324] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:19:57.501] [INFO] cheese - inserting 1000 documents. first: Grove Park (Charlestown) and last: 2008 in Shark Fights +[2018-02-13T08:19:57.555] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:19:57.618] [INFO] cheese - inserting 1000 documents. first: A28 motorway (Portugal) and last: Route 40 +[2018-02-13T08:19:57.662] [INFO] cheese - inserting 1000 documents. first: May Parker and last: Symphony of Psalms +[2018-02-13T08:19:57.678] [INFO] cheese - batch complete in: 3.848 secs +[2018-02-13T08:19:57.718] [INFO] cheese - inserting 1000 documents. first: Never Say Die (play) and last: Nuclear threat +[2018-02-13T08:19:57.751] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:19:57.797] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:19:57.891] [INFO] cheese - batch complete in: 1.602 secs +[2018-02-13T08:19:57.942] [INFO] cheese - inserting 1000 documents. first: Category:People from Alleghany County, North Carolina and last: Steyning Methodist Church +[2018-02-13T08:19:57.970] [INFO] cheese - inserting 1000 documents. first: Sciences, The and last: Oleksandr Pryzetko +[2018-02-13T08:19:58.067] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:19:58.072] [INFO] cheese - batch complete in: 1.132 secs +[2018-02-13T08:19:58.306] [INFO] cheese - inserting 1000 documents. first: Portal:Film/Selected article/5 and last: Canadian football field +[2018-02-13T08:19:58.322] [INFO] cheese - inserting 1000 documents. first: Bert Nienhuis and last: File:Dragon Mountain (boxed set).jpg +[2018-02-13T08:19:58.359] [INFO] cheese - inserting 1000 documents. first: Glipa isolata and last: Evangelical Lutheran Church in Romania +[2018-02-13T08:19:58.393] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T08:19:58.451] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:19:58.509] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:19:58.675] [INFO] cheese - inserting 1000 documents. first: Palauans and last: Malayan Colleges +[2018-02-13T08:19:58.689] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian engineers and last: Maxatawny Township, Pennsylvania +[2018-02-13T08:19:58.758] [INFO] cheese - batch complete in: 0.961 secs +[2018-02-13T08:19:58.759] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:19:58.801] [INFO] cheese - inserting 1000 documents. first: Mayin and last: Finalizer +[2018-02-13T08:19:58.872] [INFO] cheese - inserting 1000 documents. first: List of universities in Fiji and last: Category:History books about Ukraine +[2018-02-13T08:19:58.878] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:19:58.990] [INFO] cheese - inserting 1000 documents. first: Index of physics articles: Z and last: Spergularia bocconi +[2018-02-13T08:19:59.009] [INFO] cheese - inserting 1000 documents. first: Battle of Delft and last: Compound of twelve pentagonal antiprisms with rotational freedom +[2018-02-13T08:19:59.017] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:19:59.112] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:19:59.187] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:19:59.274] [INFO] cheese - inserting 1000 documents. first: Slicker hat and last: Chotyně +[2018-02-13T08:19:59.360] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:19:59.403] [INFO] cheese - inserting 1000 documents. first: Muhlenberg Township, Pennsylvania and last: Radio Windy +[2018-02-13T08:19:59.540] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:19:59.631] [INFO] cheese - inserting 1000 documents. first: Q'umir Qucha (Bolivia) and last: EC 2.1.1.4 +[2018-02-13T08:19:59.679] [INFO] cheese - inserting 1000 documents. first: Lan Yin Mandarin and last: Portal:United States/Selected article/25 +[2018-02-13T08:19:59.699] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:19:59.810] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:19:59.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tarek El Moussa and last: Reduced-Price Lunch Program +[2018-02-13T08:19:59.984] [INFO] cheese - inserting 1000 documents. first: Template:Washington County, Kentucky and last: Wikipedia:Image copyright help desk/Archive 2 +[2018-02-13T08:20:00.049] [INFO] cheese - inserting 1000 documents. first: Dime Box, Texas and last: Hallam Sinfonia +[2018-02-13T08:20:00.055] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:20:00.091] [INFO] cheese - inserting 1000 documents. first: Millgram experiment and last: USS Bell (DD-587) +[2018-02-13T08:20:00.091] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:20:00.193] [INFO] cheese - batch complete in: 1.435 secs +[2018-02-13T08:20:00.251] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:20:00.281] [INFO] cheese - inserting 1000 documents. first: Miami, California and last: Zactane +[2018-02-13T08:20:00.411] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:20:00.539] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected article/26 and last: Portal:United States/Selected culture biography/24 +[2018-02-13T08:20:00.624] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:20:00.638] [INFO] cheese - inserting 1000 documents. first: File:DC3 nut traces.jpg and last: Hansa - The Movie +[2018-02-13T08:20:00.700] [INFO] cheese - inserting 1000 documents. first: Roy Firebrace and last: File:Tonight at 830 promo.jpg +[2018-02-13T08:20:00.782] [INFO] cheese - batch complete in: 1.083 secs +[2018-02-13T08:20:00.789] [INFO] cheese - inserting 1000 documents. first: Free Lunch Program and last: Justin Jose +[2018-02-13T08:20:00.845] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:20:00.901] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:20:00.951] [INFO] cheese - inserting 1000 documents. first: Schawartzenegger and last: The Jaffna Kingdom +[2018-02-13T08:20:00.977] [INFO] cheese - inserting 1000 documents. first: 2009 Ordina Open – Men's Singles and last: Antonio Sánchez de la Calle +[2018-02-13T08:20:01.070] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:20:01.087] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:20:01.174] [INFO] cheese - inserting 1000 documents. first: Paul Cohen and last: Pope Valentine +[2018-02-13T08:20:01.202] [INFO] cheese - inserting 1000 documents. first: Sebesteny Cube and last: North Antrim (constituency) +[2018-02-13T08:20:01.230] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected culture biography/25 and last: Wikipedia:Requests for feedback/2011 February 19 +[2018-02-13T08:20:01.322] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:20:01.346] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T08:20:01.480] [INFO] cheese - inserting 1000 documents. first: Bukhan sanseong and last: M.N. Reddi +[2018-02-13T08:20:01.502] [INFO] cheese - batch complete in: 3.824 secs +[2018-02-13T08:20:01.527] [INFO] cheese - inserting 1000 documents. first: Isabel Gemio and last: A J A Symons +[2018-02-13T08:20:01.723] [INFO] cheese - inserting 1000 documents. first: Baton Rouge General Medical Center - Bluebonnet Campus and last: Haggui +[2018-02-13T08:20:01.722] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:20:01.757] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:20:01.969] [INFO] cheese - batch complete in: 1.186 secs +[2018-02-13T08:20:02.167] [INFO] cheese - inserting 1000 documents. first: Category:Lodi Padres players and last: William VI of Angoulême +[2018-02-13T08:20:02.255] [INFO] cheese - inserting 1000 documents. first: Slender weasel shark and last: Jérémy Morel +[2018-02-13T08:20:02.276] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:20:02.391] [INFO] cheese - batch complete in: 1.321 secs +[2018-02-13T08:20:02.406] [INFO] cheese - inserting 1000 documents. first: A J Allmendinger and last: A. S. Roma statistics and records +[2018-02-13T08:20:02.415] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected biography/33 and last: Cernusco +[2018-02-13T08:20:02.456] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:20:02.569] [INFO] cheese - batch complete in: 1.241 secs +[2018-02-13T08:20:02.791] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Ewald Gerhard Seeliger and last: File:CartesianLinguistics.jpg +[2018-02-13T08:20:02.806] [INFO] cheese - inserting 1000 documents. first: Mark Kolterman and last: File:Headwaters Incorporated logo.png +[2018-02-13T08:20:02.985] [INFO] cheese - inserting 1000 documents. first: Included by reference and last: UD Aretxabaleta +[2018-02-13T08:20:03.015] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T08:20:03.141] [INFO] cheese - batch complete in: 1.419 secs +[2018-02-13T08:20:03.170] [INFO] cheese - inserting 1000 documents. first: A. S. Sestese Calcio and last: AS Hitchcock +[2018-02-13T08:20:03.260] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T08:20:03.304] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:20:03.551] [INFO] cheese - inserting 1000 documents. first: Rotgut the Zombie and last: Belchalwell +[2018-02-13T08:20:03.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PROMOSINGLE and last: Salman Gambarov +[2018-02-13T08:20:03.614] [INFO] cheese - inserting 1000 documents. first: Category:Bishops of Sheffield and last: UFN 3 +[2018-02-13T08:20:03.724] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T08:20:03.772] [INFO] cheese - batch complete in: 2.426 secs +[2018-02-13T08:20:03.843] [INFO] cheese - batch complete in: 1.452 secs +[2018-02-13T08:20:03.858] [INFO] cheese - inserting 1000 documents. first: Mondo Mini Shows and last: Category:Chief Justices of Tonga +[2018-02-13T08:20:03.944] [INFO] cheese - inserting 1000 documents. first: Sega Sound Team Band and last: Annie MG Schmidt +[2018-02-13T08:20:04.126] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:20:04.126] [INFO] cheese - batch complete in: 1.111 secs +[2018-02-13T08:20:04.182] [INFO] cheese - inserting 1000 documents. first: Subcostales muscle and last: Sopot, Lovech Province +[2018-02-13T08:20:04.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2015-05-27/In the media and last: Henderson v. United States (disambiguation) +[2018-02-13T08:20:04.331] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T08:20:04.346] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T08:20:04.611] [INFO] cheese - inserting 1000 documents. first: TXNDC13 and last: Barrackpore II +[2018-02-13T08:20:04.617] [INFO] cheese - inserting 1000 documents. first: Alfred Gottschalk (biochemist) and last: Ruefrex +[2018-02-13T08:20:04.626] [INFO] cheese - inserting 1000 documents. first: File:Portableatheistcover.jpg and last: Marini, Luigi Gaetano +[2018-02-13T08:20:04.733] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T08:20:04.762] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:20:04.764] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:20:04.801] [INFO] cheese - inserting 1000 documents. first: Early February 2013 North American blizzard and last: Samuel Way Building +[2018-02-13T08:20:04.836] [INFO] cheese - inserting 1000 documents. first: Hill 60 (disambiguation) and last: The Adventures of Esplandián +[2018-02-13T08:20:04.858] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:20:04.898] [INFO] cheese - inserting 1000 documents. first: Kenule "Ken" Beeson Saro-Wiwa and last: Campoa +[2018-02-13T08:20:04.940] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:20:05.071] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:20:05.155] [INFO] cheese - inserting 1000 documents. first: B. C. 's Quest for Tires and last: Vulliens, Switzerland +[2018-02-13T08:20:05.216] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:20:05.364] [INFO] cheese - inserting 1000 documents. first: William Courtney and last: St. James Court Art Show +[2018-02-13T08:20:05.386] [INFO] cheese - inserting 1000 documents. first: Seddik Berradja and last: Source of the Amazon river +[2018-02-13T08:20:05.412] [INFO] cheese - inserting 1000 documents. first: Conker live and reloaded and last: James Glaser +[2018-02-13T08:20:05.508] [INFO] cheese - inserting 1000 documents. first: Sarubobo (wrestler) and last: S-adenosyl-L-methionine:5-hydroxyfuranocoumarin 5-O-methyltransferase +[2018-02-13T08:20:05.543] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:20:05.561] [INFO] cheese - batch complete in: 1.789 secs +[2018-02-13T08:20:05.576] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:20:05.669] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:20:05.694] [INFO] cheese - inserting 1000 documents. first: Aulacostroma and last: Viktor Haus +[2018-02-13T08:20:05.769] [INFO] cheese - inserting 1000 documents. first: Assassination of Gaidar Gadzhiyev and last: The Rise and Fall of the City of Mahagonny +[2018-02-13T08:20:05.784] [INFO] cheese - inserting 1000 documents. first: Constant Camber 3M and last: Wikipedia:WikiProject Spam/Local/kifoth.de +[2018-02-13T08:20:05.798] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:20:05.900] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:20:05.971] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:20:06.060] [INFO] cheese - inserting 1000 documents. first: Pope Victor I and last: Range voting +[2018-02-13T08:20:06.199] [INFO] cheese - inserting 1000 documents. first: Front Row Motorsports with Yates Racing and last: Ragnvald the Wise +[2018-02-13T08:20:06.294] [INFO] cheese - inserting 1000 documents. first: Halloween haunt and last: Kitja language +[2018-02-13T08:20:06.308] [INFO] cheese - batch complete in: 4.806 secs +[2018-02-13T08:20:06.312] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:20:06.369] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:20:06.421] [INFO] cheese - inserting 1000 documents. first: José Saúl Wermus and last: William H. Smith (Alamo defender) +[2018-02-13T08:20:06.436] [INFO] cheese - inserting 1000 documents. first: GNSS positioning and last: File:Karhu.png +[2018-02-13T08:20:06.531] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:20:06.571] [INFO] cheese - inserting 1000 documents. first: Bola de Nieve and last: Langi Kal Kal +[2018-02-13T08:20:06.583] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:20:06.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Jason Bonham and last: Bishop F D Washington +[2018-02-13T08:20:06.640] [INFO] cheese - inserting 1000 documents. first: Hedong Township, Jinchuan County and last: Kitaoka Akiyoshi +[2018-02-13T08:20:06.679] [INFO] cheese - batch complete in: 1.117 secs +[2018-02-13T08:20:06.689] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:20:06.796] [INFO] cheese - batch complete in: 1.127 secs +[2018-02-13T08:20:06.991] [INFO] cheese - inserting 1000 documents. first: Shawnee Territory and last: Racism in Uganda +[2018-02-13T08:20:07.053] [INFO] cheese - inserting 1000 documents. first: Meganoton joachimi and last: Book:Slayer discography +[2018-02-13T08:20:07.082] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:20:07.226] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:20:07.299] [INFO] cheese - inserting 1000 documents. first: Richard Starr (Alamo defender) and last: Kehar +[2018-02-13T08:20:07.303] [INFO] cheese - inserting 1000 documents. first: Kidja language and last: Galena High School (Nevada) +[2018-02-13T08:20:07.412] [INFO] cheese - inserting 1000 documents. first: Bishop FD Washington and last: Gmina Piszczac +[2018-02-13T08:20:07.447] [INFO] cheese - inserting 1000 documents. first: Gustavs (name) and last: Category:Films directed by Max W. Kimmich +[2018-02-13T08:20:07.458] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:20:07.519] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T08:20:07.590] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:20:07.621] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:20:07.860] [INFO] cheese - inserting 1000 documents. first: File:Wenceslao Roces Suárez.jpg and last: Eupterote petola +[2018-02-13T08:20:07.955] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:20:08.071] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/BabbaQ/Archive and last: Nadunissi Naaygal +[2018-02-13T08:20:08.178] [INFO] cheese - inserting 1000 documents. first: Consolidated Rail and last: Mayandi Kudumbathar +[2018-02-13T08:20:08.198] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:20:08.210] [INFO] cheese - inserting 1000 documents. first: Naomi C. Earp and last: The Urban Academy (England) +[2018-02-13T08:20:08.267] [INFO] cheese - inserting 1000 documents. first: New Jersey Hall of Fame and last: Reusens, Edmond +[2018-02-13T08:20:08.269] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:20:08.338] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:20:08.387] [INFO] cheese - inserting 1000 documents. first: VC La Pomme Marseille and last: Apogon parvulus +[2018-02-13T08:20:08.400] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:20:08.479] [INFO] cheese - inserting 1000 documents. first: Category:616 births and last: Rimac (disambiguation) +[2018-02-13T08:20:08.496] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:20:08.642] [INFO] cheese - batch complete in: 1.963 secs +[2018-02-13T08:20:08.678] [INFO] cheese - inserting 1000 documents. first: Category:17th-century establishments in South America and last: Category:Chilean male ballet dancers +[2018-02-13T08:20:08.696] [INFO] cheese - inserting 1000 documents. first: Radin Mas Primary School and last: Category:WikiProject American Old West templates +[2018-02-13T08:20:08.842] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:20:08.900] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:20:08.924] [INFO] cheese - inserting 1000 documents. first: Ballade Op. 38 (Chopin) and last: L.U.C +[2018-02-13T08:20:09.038] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:20:09.199] [INFO] cheese - inserting 1000 documents. first: Pilea and last: Category:Bishops of Woolwich +[2018-02-13T08:20:09.246] [INFO] cheese - inserting 1000 documents. first: Gmina Fajsławice and last: Gmina Łaszczów +[2018-02-13T08:20:09.290] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Málaga and last: Government Accountability and Transparency Board +[2018-02-13T08:20:09.331] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:20:09.387] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:20:09.417] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:20:09.679] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Aircrash and last: Wikipedia:WikiProject Spam/LinkReports/theimpactandexitevent.com +[2018-02-13T08:20:09.728] [INFO] cheese - inserting 1000 documents. first: Wan Wu Sheng Zhang and last: Template:Did you know nominations/Roland Rudd +[2018-02-13T08:20:09.796] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:20:09.902] [INFO] cheese - inserting 1000 documents. first: Develop (magazine) and last: Lineatin +[2018-02-13T08:20:09.909] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:20:10.060] [INFO] cheese - inserting 1000 documents. first: Miles Hendon and last: Fractional factorial design +[2018-02-13T08:20:10.103] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:20:10.171] [INFO] cheese - inserting 1000 documents. first: A2020 road and last: File:VH1Storytellers Cash&Nelson.jpg +[2018-02-13T08:20:10.255] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:20:10.307] [INFO] cheese - inserting 1000 documents. first: Army Military Intelligence and last: A vörös grófnö +[2018-02-13T08:20:10.344] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:20:10.362] [INFO] cheese - inserting 1000 documents. first: Robert A Heinlein and last: Economy of South Africa +[2018-02-13T08:20:10.468] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:20:10.680] [INFO] cheese - inserting 1000 documents. first: Used, Zaragoza and last: Halianthella +[2018-02-13T08:20:10.808] [INFO] cheese - inserting 1000 documents. first: Oppenheimer (play) and last: The Quill of the Porcupine +[2018-02-13T08:20:10.784] [INFO] cheese - batch complete in: 4.475 secs +[2018-02-13T08:20:10.911] [INFO] cheese - batch complete in: 1.114 secs +[2018-02-13T08:20:10.975] [INFO] cheese - inserting 1000 documents. first: Heróico Colegio Militar and last: Chastity Sun Bono +[2018-02-13T08:20:11.077] [INFO] cheese - batch complete in: 1.167 secs +[2018-02-13T08:20:11.153] [INFO] cheese - inserting 1000 documents. first: Treasure: In Search of the Golden Horse and last: Sir Lamorak +[2018-02-13T08:20:11.183] [INFO] cheese - inserting 1000 documents. first: Category:Iboga and last: Lewesite +[2018-02-13T08:20:11.204] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:20:11.293] [INFO] cheese - inserting 1000 documents. first: A voros grofno and last: Wikipedia:WikiProject Taoism/Prospectus +[2018-02-13T08:20:11.330] [INFO] cheese - inserting 1000 documents. first: The Harrowed and last: Template:Goleniów County +[2018-02-13T08:20:11.381] [INFO] cheese - batch complete in: 1.126 secs +[2018-02-13T08:20:11.431] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:20:11.475] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:20:11.475] [INFO] cheese - batch complete in: 2.833 secs +[2018-02-13T08:20:11.729] [INFO] cheese - inserting 1000 documents. first: Shake Sherry and last: Sphingidites weidneri +[2018-02-13T08:20:11.820] [INFO] cheese - inserting 1000 documents. first: Joe Barton (soccer) and last: 2009 swine flu outbreak in Spain +[2018-02-13T08:20:11.913] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:20:11.924] [INFO] cheese - inserting 1000 documents. first: Republic of Azawad and last: List of Asia's Next Top Model contestants +[2018-02-13T08:20:11.979] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:20:12.018] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:20:12.038] [INFO] cheese - inserting 1000 documents. first: American Society of Microbiology and last: Artemisia brittonii +[2018-02-13T08:20:12.115] [INFO] cheese - inserting 1000 documents. first: The Moment of Truth (disambiguation) and last: Nováčany +[2018-02-13T08:20:12.120] [INFO] cheese - batch complete in: 1.043 secs +[2018-02-13T08:20:12.213] [INFO] cheese - inserting 1000 documents. first: Portal:Television/Selected picture/8 and last: 9984 Gregbryant +[2018-02-13T08:20:12.255] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:20:12.363] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:20:12.628] [INFO] cheese - inserting 1000 documents. first: Huyện and last: Kimball (piano) +[2018-02-13T08:20:12.628] [INFO] cheese - inserting 1000 documents. first: Cathal Cregg and last: Adenoid cyctic carcinoma +[2018-02-13T08:20:12.722] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:20:12.789] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:20:12.842] [INFO] cheese - inserting 1000 documents. first: 1027 in poetry and last: File:Jack's Heroes.jpg +[2018-02-13T08:20:12.946] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T08:20:13.114] [INFO] cheese - inserting 1000 documents. first: Brazier hieroglyph and last: Wikipedia:Articles for deletion/BC logging road etiquette +[2018-02-13T08:20:13.181] [INFO] cheese - inserting 1000 documents. first: The Last Resort (Australian TV series) and last: Isaac ben Asher ha-Levi +[2018-02-13T08:20:13.191] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:20:13.324] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:20:13.451] [INFO] cheese - inserting 1000 documents. first: Panama at the Olympics and last: Category:Health in Paraguay +[2018-02-13T08:20:13.476] [INFO] cheese - inserting 1000 documents. first: Template:Japan-church-stub and last: Bus conductors +[2018-02-13T08:20:13.600] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:20:13.657] [INFO] cheese - inserting 1000 documents. first: Sm2bat and last: Prudential Regulatory Authority (disambiguation) +[2018-02-13T08:20:13.660] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:20:13.741] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:20:13.755] [INFO] cheese - inserting 1000 documents. first: Pano Koutrafas and last: New Great Game +[2018-02-13T08:20:13.860] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:20:13.974] [INFO] cheese - inserting 1000 documents. first: Robert Burnham and last: National Trade Union Congress of Belize +[2018-02-13T08:20:14.248] [INFO] cheese - batch complete in: 2.772 secs +[2018-02-13T08:20:14.335] [INFO] cheese - inserting 1000 documents. first: Template:Cork Hurling Team 2005 and last: Electronic Classroom +[2018-02-13T08:20:14.467] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:20:14.524] [INFO] cheese - inserting 1000 documents. first: Dog Days (anime) and last: Category:States and territories disestablished in 1547 +[2018-02-13T08:20:14.635] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:20:14.826] [INFO] cheese - inserting 1000 documents. first: Amo non amo and last: Swimmer (film) +[2018-02-13T08:20:14.839] [INFO] cheese - inserting 1000 documents. first: Bifrenaria vitellina and last: Jan Wladyslaw Dawid +[2018-02-13T08:20:14.857] [INFO] cheese - inserting 1000 documents. first: Category:Numic languages and last: San Bernardino Air Material Area +[2018-02-13T08:20:14.875] [INFO] cheese - batch complete in: 1.274 secs +[2018-02-13T08:20:14.890] [INFO] cheese - inserting 1000 documents. first: File:Dreams (High and Mighty Color single - cover art).jpg and last: Category:Olympic Nordic combined skiers of the Czech Republic +[2018-02-13T08:20:14.958] [INFO] cheese - batch complete in: 1.766 secs +[2018-02-13T08:20:15.029] [INFO] cheese - batch complete in: 1.369 secs +[2018-02-13T08:20:15.037] [INFO] cheese - batch complete in: 1.176 secs +[2018-02-13T08:20:15.269] [INFO] cheese - inserting 1000 documents. first: Victor Vito (disambiguation) and last: Billy Ollis +[2018-02-13T08:20:15.284] [INFO] cheese - inserting 1000 documents. first: Category:Indo-European deities and last: Izuhara domain +[2018-02-13T08:20:15.330] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:20:15.433] [INFO] cheese - inserting 1000 documents. first: Modern expressionism and last: File:Rockwell.jpg +[2018-02-13T08:20:15.440] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:20:15.452] [INFO] cheese - inserting 1000 documents. first: Rain (Joe Jackson album) and last: Akademie der bildenden Künste, München +[2018-02-13T08:20:15.541] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:20:15.544] [INFO] cheese - inserting 1000 documents. first: Telecommunications in South Africa and last: Silesian Voivodeship +[2018-02-13T08:20:15.539] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:20:15.657] [INFO] cheese - inserting 1000 documents. first: The Museum of Modern Art, Gunma and last: Brandon Eric Guyer +[2018-02-13T08:20:15.708] [INFO] cheese - inserting 1000 documents. first: Anind Dey and last: Bridport F C +[2018-02-13T08:20:15.769] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:20:15.791] [INFO] cheese - inserting 1000 documents. first: Stubomycin and last: San Juan Colorado +[2018-02-13T08:20:15.886] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:20:15.937] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:20:16.017] [INFO] cheese - batch complete in: 5.233 secs +[2018-02-13T08:20:16.019] [INFO] cheese - inserting 1000 documents. first: Tête de l'Enchastraye and last: Category:People from Boyne City, Michigan +[2018-02-13T08:20:16.105] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:20:16.147] [INFO] cheese - inserting 1000 documents. first: ર and last: Anaxandridas I +[2018-02-13T08:20:16.218] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:20:16.252] [INFO] cheese - inserting 1000 documents. first: Fatih Tekke and last: Lord Lewis of Newnham +[2018-02-13T08:20:16.295] [INFO] cheese - inserting 1000 documents. first: Harbutowice, Silesian Voivodeship and last: Category:2008 in Cuba +[2018-02-13T08:20:16.341] [INFO] cheese - inserting 1000 documents. first: Neuroendocrine cells and last: Joe Lydon (boxer) +[2018-02-13T08:20:16.374] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:20:16.407] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:20:16.446] [INFO] cheese - inserting 1000 documents. first: Kevin James Kiermaier and last: Floyd County John Doe +[2018-02-13T08:20:16.480] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:20:16.579] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:20:16.667] [INFO] cheese - inserting 1000 documents. first: American Treasures and last: List of political parties in Ukraine +[2018-02-13T08:20:16.751] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:20:16.770] [INFO] cheese - inserting 1000 documents. first: San Juan Comaltepec and last: Sergio Ferrer +[2018-02-13T08:20:16.886] [INFO] cheese - inserting 1000 documents. first: Category:Canadian anatomists and last: Abdullahpur Underpass +[2018-02-13T08:20:16.905] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:20:17.008] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:20:17.102] [INFO] cheese - inserting 1000 documents. first: File:Dvd seemabaddha sat.jpg and last: Deadman Bay +[2018-02-13T08:20:17.169] [INFO] cheese - inserting 1000 documents. first: Felix, Edler von Munzberg Weingartner and last: Wood County, WI +[2018-02-13T08:20:17.179] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:20:17.243] [INFO] cheese - inserting 1000 documents. first: Simon Cooper (disambiguation) and last: Rakhi Kapoor Tandon +[2018-02-13T08:20:17.271] [INFO] cheese - inserting 1000 documents. first: Messiano and last: Ladies' Gaelic Football Association +[2018-02-13T08:20:17.283] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:20:17.329] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:20:17.404] [INFO] cheese - inserting 1000 documents. first: Lord Tonga Tu'i'afitu and last: 2011–12 Minnesota Wild season +[2018-02-13T08:20:17.400] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:20:17.464] [INFO] cheese - inserting 1000 documents. first: History of gujarat and last: File:WisCongMap1983.jpg +[2018-02-13T08:20:17.502] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T08:20:17.501] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:20:17.690] [INFO] cheese - inserting 1000 documents. first: Banana Joe V Tani Kazari and last: Category:1991 in Dutch sport +[2018-02-13T08:20:17.700] [INFO] cheese - inserting 1000 documents. first: War Angel (album) and last: Santiago Amoltepec +[2018-02-13T08:20:17.786] [INFO] cheese - inserting 1000 documents. first: History of the jews during world war ii and last: Homosexual readings of jesus and john +[2018-02-13T08:20:17.787] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:20:17.808] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:20:17.836] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in Niue and last: Murlida fraterna +[2018-02-13T08:20:17.855] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T08:20:17.956] [INFO] cheese - inserting 1000 documents. first: Wood Dale, IL and last: File:Catjudging.jpg +[2018-02-13T08:20:18.003] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:20:18.054] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:20:18.222] [INFO] cheese - inserting 1000 documents. first: Robin Kovař and last: Alpineum +[2018-02-13T08:20:18.258] [INFO] cheese - inserting 1000 documents. first: Al-Baqara 256 and last: Emmanuel Christopher Loblack (E.C. Loblack) +[2018-02-13T08:20:18.329] [INFO] cheese - inserting 1000 documents. first: Homosexuality and anglicanism and last: House of sponheim +[2018-02-13T08:20:18.340] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:20:18.358] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:20:18.399] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:20:18.465] [INFO] cheese - inserting 1000 documents. first: Katarki, Bilagi and last: Hadiya Pendelton +[2018-02-13T08:20:18.541] [INFO] cheese - inserting 1000 documents. first: Sigma Draconis IV and last: Apaganum-like Epidendrum +[2018-02-13T08:20:18.563] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:20:18.659] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:20:18.677] [INFO] cheese - inserting 1000 documents. first: Regiment Oos Rand and last: Jean-François Yvon +[2018-02-13T08:20:18.748] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:20:18.825] [INFO] cheese - inserting 1000 documents. first: House of stairs and last: Hymns and psalms +[2018-02-13T08:20:18.856] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T08:20:18.949] [INFO] cheese - inserting 1000 documents. first: Category:Costa Rican Roman Catholic bishops and last: Făgeţel River (Bistriţa) +[2018-02-13T08:20:19.013] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T08:20:19.123] [INFO] cheese - inserting 1000 documents. first: FMES/SFA and last: Powell Panthers football +[2018-02-13T08:20:19.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Maps of Korea/Old and last: Nils Johanson +[2018-02-13T08:20:19.175] [INFO] cheese - inserting 1000 documents. first: Members of the Lok Sabha and last: Category:17th-century establishments in France +[2018-02-13T08:20:19.179] [INFO] cheese - inserting 1000 documents. first: File:Naomi Kelly90210.jpg and last: Haruo Inoue +[2018-02-13T08:20:19.236] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:20:19.226] [INFO] cheese - batch complete in: 1.172 secs +[2018-02-13T08:20:19.287] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:20:19.306] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:20:19.378] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from Boston and last: Doina Şnep-Bălan +[2018-02-13T08:20:19.419] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T08:20:19.441] [INFO] cheese - inserting 1000 documents. first: Hymns and spiritual songs and last: Ceric sulfate +[2018-02-13T08:20:19.548] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:20:19.566] [INFO] cheese - inserting 1000 documents. first: SECD machine and last: 2001 Tour de France +[2018-02-13T08:20:19.661] [INFO] cheese - inserting 1000 documents. first: Vyckie Garrison and last: Morbakka +[2018-02-13T08:20:19.700] [INFO] cheese - inserting 1000 documents. first: Cornel Nemţoc and last: Topliţa River (Caraş) +[2018-02-13T08:20:19.745] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:20:19.771] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T08:20:19.802] [INFO] cheese - batch complete in: 3.785 secs +[2018-02-13T08:20:19.906] [INFO] cheese - inserting 1000 documents. first: Category:Freeform (TV channel) and last: Wikipedia:MORIBUND +[2018-02-13T08:20:19.911] [INFO] cheese - inserting 1000 documents. first: USS Seagrape (YN-90) and last: Category:Science museums in New Jersey +[2018-02-13T08:20:19.914] [INFO] cheese - inserting 1000 documents. first: Fuel And Sensor Tactical packs and last: Jantzen & Thormählen +[2018-02-13T08:20:20.007] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:20:20.022] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:20:20.022] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:20:20.071] [INFO] cheese - inserting 1000 documents. first: Brahminism and last: SS Naronic +[2018-02-13T08:20:20.223] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:20:20.236] [INFO] cheese - inserting 1000 documents. first: Refusés and last: Иatural (Orange Range album) +[2018-02-13T08:20:20.237] [INFO] cheese - inserting 1000 documents. first: Topliţa River (Timiş) and last: Ionuţ Dan Ion +[2018-02-13T08:20:20.289] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:20:20.309] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:20:20.354] [INFO] cheese - inserting 1000 documents. first: Category:International volleyball competitions hosted by Austria and last: South Eastern main line diagram +[2018-02-13T08:20:20.417] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:20:20.626] [INFO] cheese - inserting 1000 documents. first: Kandou and last: Category:1843 in the United States +[2018-02-13T08:20:20.687] [INFO] cheese - inserting 1000 documents. first: 1859 in philosophy and last: Mario and Luigi Dream Team +[2018-02-13T08:20:20.699] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:20:20.759] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T08:20:20.787] [INFO] cheese - inserting 1000 documents. first: Patrick the Great and last: Kirche 2011: Ein notwendiger Aufbruch +[2018-02-13T08:20:20.842] [INFO] cheese - inserting 1000 documents. first: Heinz Strobl and last: Verizon Wireless Amphitheater Charlotte +[2018-02-13T08:20:20.977] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:20:20.990] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T08:20:21.168] [INFO] cheese - inserting 1000 documents. first: Yonatan Revivo and last: CK Thakker +[2018-02-13T08:20:21.208] [INFO] cheese - inserting 1000 documents. first: Ferdinand Bilali and last: Floored division +[2018-02-13T08:20:21.275] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:20:21.319] [INFO] cheese - inserting 1000 documents. first: Sălcioara, Dâmboviţa and last: Şovarna +[2018-02-13T08:20:21.322] [INFO] cheese - inserting 1000 documents. first: Hemorroids and last: Newport railway station +[2018-02-13T08:20:21.339] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:20:21.404] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:20:21.537] [INFO] cheese - inserting 1000 documents. first: Fimbristylis vahlii and last: Robert Martin (basketball player) +[2018-02-13T08:20:21.599] [INFO] cheese - batch complete in: 1.376 secs +[2018-02-13T08:20:21.701] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:20:21.795] [INFO] cheese - inserting 1000 documents. first: CL Barnhouse Company and last: Clipstone Welfare F C +[2018-02-13T08:20:21.853] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:20:21.892] [INFO] cheese - inserting 1000 documents. first: Jugaloe and last: Cool "Gator" +[2018-02-13T08:20:21.912] [INFO] cheese - inserting 1000 documents. first: University of Paris 6 and last: Template:User WP Macedonia/doc +[2018-02-13T08:20:21.916] [INFO] cheese - inserting 1000 documents. first: Sky Jockey and last: Drahnov +[2018-02-13T08:20:21.963] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:20:22.036] [INFO] cheese - inserting 1000 documents. first: File:Land and Shade poster.jpg and last: Category:Populated places in the Regional Municipality of Halton +[2018-02-13T08:20:22.038] [INFO] cheese - batch complete in: 1.047 secs +[2018-02-13T08:20:22.048] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T08:20:22.163] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:20:22.280] [INFO] cheese - inserting 1000 documents. first: Book:Algebraic Mathematics and Logics and last: Philip Henry Christopher Jackson +[2018-02-13T08:20:22.346] [INFO] cheese - inserting 1000 documents. first: Clipstone Welfare F. C. and last: Hyperpolarization-activated cyclic nucleotide-gated potassium channel +[2018-02-13T08:20:22.434] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:20:22.444] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:20:22.550] [INFO] cheese - inserting 1000 documents. first: Rhythmic Airplay Chart and last: Fuscapex talismani +[2018-02-13T08:20:22.609] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:20:22.803] [INFO] cheese - inserting 1000 documents. first: Thjorsa and last: Type 93 surface-to-air missile +[2018-02-13T08:20:22.807] [INFO] cheese - inserting 1000 documents. first: D H Asson and last: Not of This World (film) +[2018-02-13T08:20:22.833] [INFO] cheese - inserting 1000 documents. first: Malcolm Root and last: Dragan Kresoja +[2018-02-13T08:20:22.855] [INFO] cheese - inserting 1000 documents. first: The Blake Project: Spring and last: Agutaynen +[2018-02-13T08:20:22.894] [INFO] cheese - inserting 1000 documents. first: 2014 independence referendum and last: Valea Şindrilelor River +[2018-02-13T08:20:22.922] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T08:20:22.954] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T08:20:22.958] [INFO] cheese - batch complete in: 1.359 secs +[2018-02-13T08:20:22.959] [INFO] cheese - inserting 1000 documents. first: Art valuation and last: Category:Sanskrit scholars +[2018-02-13T08:20:22.971] [INFO] cheese - inserting 1000 documents. first: Template:Adminstats/Chrislk02 and last: Wikipedia:WikiProject Directory/Description/WikiProject Beauty Pageants +[2018-02-13T08:20:22.972] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:20:22.981] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:20:23.089] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:20:23.157] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:20:23.259] [INFO] cheese - inserting 1000 documents. first: Bodovlje Mass Grave and last: Finiş River +[2018-02-13T08:20:23.300] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T08:20:23.387] [INFO] cheese - inserting 1000 documents. first: Daniel I J Thornton and last: Portal:Journalism/Selected quote/5 +[2018-02-13T08:20:23.510] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:20:23.645] [INFO] cheese - inserting 1000 documents. first: Alhambra and last: Ulster +[2018-02-13T08:20:23.680] [INFO] cheese - inserting 1000 documents. first: Henry D'Avigdor-Goldsmid and last: Hafnia (bacteria) +[2018-02-13T08:20:23.715] [INFO] cheese - inserting 1000 documents. first: Gianni and the Ogre and last: Parinibbāna +[2018-02-13T08:20:23.730] [INFO] cheese - inserting 1000 documents. first: South Africa national futsal team and last: Diarthropus +[2018-02-13T08:20:23.759] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:20:23.801] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Bedfordshire and last: Wikipedia:Related WikiProjects/GLAM/Balboa Park +[2018-02-13T08:20:23.805] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:20:23.819] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:20:23.908] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:20:23.943] [INFO] cheese - inserting 1000 documents. first: Bek David Campbell and last: Triatominae +[2018-02-13T08:20:23.976] [INFO] cheese - batch complete in: 4.174 secs +[2018-02-13T08:20:24.083] [INFO] cheese - inserting 1000 documents. first: Finişel River and last: Kregar Ravine 3 Mass Grave +[2018-02-13T08:20:24.093] [INFO] cheese - batch complete in: 1.135 secs +[2018-02-13T08:20:24.225] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:20:24.400] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Animation/Machinima work group and last: Wikipedia:Related WikiProjects/WikiProject Meteorology +[2018-02-13T08:20:24.408] [INFO] cheese - inserting 1000 documents. first: File:DalmacijaSrbi.JPG and last: Browning Road Park, Banbury +[2018-02-13T08:20:24.424] [INFO] cheese - inserting 1000 documents. first: DN-galan and last: Phyllorkis inaequalis +[2018-02-13T08:20:24.444] [INFO] cheese - inserting 1000 documents. first: Daphinia and last: Margaret I, Countess of Hainaut +[2018-02-13T08:20:24.471] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:20:24.579] [INFO] cheese - inserting 1000 documents. first: File:Benson-logo.PNG and last: Stacy Wilson +[2018-02-13T08:20:24.559] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:20:24.599] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:20:24.635] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:20:24.803] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:20:24.978] [INFO] cheese - inserting 1000 documents. first: Template:Borough of Ribble Valley and last: Portal:Bollywood/Selected article/17 +[2018-02-13T08:20:25.073] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:20:25.237] [INFO] cheese - inserting 1000 documents. first: Harshi Mad and last: Allescheria boydii +[2018-02-13T08:20:25.376] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:20:25.406] [INFO] cheese - inserting 1000 documents. first: Duroplast and last: Ralph Lawler +[2018-02-13T08:20:25.557] [INFO] cheese - batch complete in: 1.464 secs +[2018-02-13T08:20:25.637] [INFO] cheese - inserting 1000 documents. first: Smith Building and last: F.C. Internazionale Milano season 2009-10 +[2018-02-13T08:20:25.660] [INFO] cheese - inserting 1000 documents. first: Portal:Australian cars/Selected biography/1 and last: Steve Hunt +[2018-02-13T08:20:25.724] [INFO] cheese - inserting 1000 documents. first: Johannes Ronge and last: State Route 143 (Virginia 1923-1928) +[2018-02-13T08:20:25.730] [INFO] cheese - inserting 1000 documents. first: Ster van Zwolle and last: Prognostic chart +[2018-02-13T08:20:25.735] [INFO] cheese - batch complete in: 1.176 secs +[2018-02-13T08:20:25.790] [INFO] cheese - inserting 1000 documents. first: File:Badger Cub Feeding.jpg and last: Gabriele Basilico +[2018-02-13T08:20:25.809] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T08:20:25.875] [INFO] cheese - batch complete in: 1.275 secs +[2018-02-13T08:20:25.994] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:20:26.089] [INFO] cheese - batch complete in: 1.286 secs +[2018-02-13T08:20:26.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject U.S. Roads/Ohio and last: Samguk Yusa +[2018-02-13T08:20:26.336] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:20:26.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Outline of Knowlege and last: Template:User bo-0 +[2018-02-13T08:20:26.651] [INFO] cheese - inserting 1000 documents. first: Category:Hydroelectricity in Malawi and last: Category:Fletcher-class destroyers of the Peruvian Navy +[2018-02-13T08:20:26.703] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Selected picture/Month 01, 2008 and last: Portal:Tropical cyclones/Featured article/Tropical Storm Ana (2003) +[2018-02-13T08:20:26.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Peneda-Gerês National Park/archive1 and last: Polet Airlines +[2018-02-13T08:20:26.715] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:20:26.736] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:20:26.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Adjectives in your votes and last: Serbian Orthodox Diocese of Eastern America +[2018-02-13T08:20:26.884] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:20:26.922] [INFO] cheese - batch complete in: 1.047 secs +[2018-02-13T08:20:26.921] [INFO] cheese - inserting 1000 documents. first: State Route 392 (Virginia 1923-1928) and last: Yinhe Li +[2018-02-13T08:20:26.947] [INFO] cheese - batch complete in: 1.389 secs +[2018-02-13T08:20:27.074] [INFO] cheese - batch complete in: 0.985 secs +[2018-02-13T08:20:27.175] [INFO] cheese - inserting 1000 documents. first: Anthony stewart head and last: Wikipedia:Articles for deletion/OWSLA +[2018-02-13T08:20:27.311] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:20:27.438] [INFO] cheese - inserting 1000 documents. first: Template:Chief Ministers of Indian States and last: Lrytas.lt +[2018-02-13T08:20:27.596] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:20:27.631] [INFO] cheese - inserting 1000 documents. first: Jean Berthoin and last: Category:Chinese art critics +[2018-02-13T08:20:27.720] [INFO] cheese - inserting 1000 documents. first: Rosoxacin and last: West Covina, Ca +[2018-02-13T08:20:27.722] [INFO] cheese - inserting 1000 documents. first: PP-90M1 and last: 2011 Challenger DCNS de Cherbourg – Doubles +[2018-02-13T08:20:27.749] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:20:27.826] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:20:27.840] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:20:27.992] [INFO] cheese - inserting 1000 documents. first: Category:Male dancers from Northern Ireland and last: Epijana cinerea +[2018-02-13T08:20:27.999] [INFO] cheese - inserting 1000 documents. first: The Lovehammers and last: IntCodec +[2018-02-13T08:20:28.056] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:20:28.117] [INFO] cheese - batch complete in: 1.043 secs +[2018-02-13T08:20:28.142] [INFO] cheese - inserting 1000 documents. first: Radical politics and last: Creole English +[2018-02-13T08:20:28.273] [INFO] cheese - batch complete in: 1.326 secs +[2018-02-13T08:20:28.335] [INFO] cheese - inserting 1000 documents. first: United States Internal Revenue Service and last: William the Conqueror +[2018-02-13T08:20:28.355] [INFO] cheese - inserting 1000 documents. first: Ymir Vigfusson and last: Micromax A116 Canvas HD +[2018-02-13T08:20:28.460] [INFO] cheese - inserting 1000 documents. first: Catasetum saccatum var. eusaccatum and last: File:Jpba-logov.png +[2018-02-13T08:20:28.467] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:20:28.567] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:20:28.608] [INFO] cheese - inserting 1000 documents. first: WRDW (AM) and last: Ovacue +[2018-02-13T08:20:28.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Florida/Userbox and last: William Osborne (umpire) +[2018-02-13T08:20:28.618] [INFO] cheese - inserting 1000 documents. first: Alpine laurel and last: Edwin Maxwell (attorney general) +[2018-02-13T08:20:28.629] [INFO] cheese - batch complete in: 4.652 secs +[2018-02-13T08:20:28.696] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:20:28.708] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:20:28.753] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:20:28.906] [INFO] cheese - inserting 1000 documents. first: Paradise Independent School District and last: Phazotron +[2018-02-13T08:20:29.004] [INFO] cheese - inserting 1000 documents. first: Category:Habsburg-class battleships and last: File:Crash Time 2 Cover.jpg +[2018-02-13T08:20:29.021] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:20:29.129] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:20:29.304] [INFO] cheese - inserting 1000 documents. first: Monestary and last: Station Casinos +[2018-02-13T08:20:29.393] [INFO] cheese - inserting 1000 documents. first: Churches in Omaha and last: Chatom, Al +[2018-02-13T08:20:29.483] [INFO] cheese - batch complete in: 1.21 secs +[2018-02-13T08:20:29.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lepseut.blogspot.com and last: Andreevo +[2018-02-13T08:20:29.664] [INFO] cheese - inserting 1000 documents. first: Corinthia (peripheral unit) and last: Olav Skjevesland +[2018-02-13T08:20:29.728] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T08:20:29.783] [INFO] cheese - inserting 1000 documents. first: Cattleya warneri var. semialba and last: BMW R80G/S Paris-Dakar +[2018-02-13T08:20:29.828] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:20:29.902] [INFO] cheese - batch complete in: 1.206 secs +[2018-02-13T08:20:29.974] [INFO] cheese - inserting 1000 documents. first: Category:Burials in County Cork and last: Killer (role-playing game) +[2018-02-13T08:20:30.022] [INFO] cheese - batch complete in: 1.455 secs +[2018-02-13T08:20:30.119] [INFO] cheese - inserting 1000 documents. first: 1996 in Luxembourg and last: Breast prostheses +[2018-02-13T08:20:30.109] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:20:30.347] [INFO] cheese - batch complete in: 1.326 secs +[2018-02-13T08:20:30.568] [INFO] cheese - inserting 1000 documents. first: Leslie-Alford-Mims House and last: File:Two-Face (DC Animated Universe).png +[2018-02-13T08:20:30.663] [INFO] cheese - inserting 1000 documents. first: Chelsea, Al and last: John Hyde (Australian federal politician) +[2018-02-13T08:20:30.729] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:20:30.846] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T08:20:30.900] [INFO] cheese - inserting 1000 documents. first: Bazna pig and last: Alqadhafi +[2018-02-13T08:20:31.017] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:20:31.021] [INFO] cheese - inserting 1000 documents. first: Gang Banged with a Headache, and Live and last: Perkins Street (MBTA station) +[2018-02-13T08:20:31.081] [INFO] cheese - inserting 1000 documents. first: Palazzo della Cancelleria and last: Northern Chorus +[2018-02-13T08:20:31.105] [INFO] cheese - inserting 1000 documents. first: Yelizaveta Andreyevna Lawrowska and last: Diodora +[2018-02-13T08:20:31.186] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:20:31.246] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T08:20:31.269] [INFO] cheese - inserting 1000 documents. first: Phil Gartside and last: David Davis National Historic Landmark +[2018-02-13T08:20:31.336] [INFO] cheese - batch complete in: 1.853 secs +[2018-02-13T08:20:31.448] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:20:31.539] [INFO] cheese - inserting 1000 documents. first: Hecate et ses chiens and last: 9990s +[2018-02-13T08:20:31.595] [INFO] cheese - inserting 1000 documents. first: File:Badge of Wah Yan College, Hong Kong.svg and last: File:Very best of.jpg +[2018-02-13T08:20:31.672] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:20:31.750] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:20:31.776] [INFO] cheese - inserting 1000 documents. first: Flirting with Twilight and last: Template:User Papua New Guinea +[2018-02-13T08:20:31.893] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:20:32.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dermot Gascoyne and last: Rapid transit in China +[2018-02-13T08:20:32.105] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:20:32.125] [INFO] cheese - inserting 1000 documents. first: Ray Trowbridge and last: The Beast (2009 TV series) +[2018-02-13T08:20:32.263] [INFO] cheese - inserting 1000 documents. first: EH Crump and last: F S Bell +[2018-02-13T08:20:32.271] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:20:32.346] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:20:32.525] [INFO] cheese - inserting 1000 documents. first: Rose madder and last: Lasara Independent School District +[2018-02-13T08:20:32.640] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz M103 and last: Orochon +[2018-02-13T08:20:32.659] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:20:32.707] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic ecclesiastical provinces in Algeria and last: Bill Jordan (trade unionist) +[2018-02-13T08:20:32.710] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Côte-Nord and last: Wikipedia:WikiProject Directory/Description/WikiProject Equine +[2018-02-13T08:20:32.757] [INFO] cheese - batch complete in: 1.421 secs +[2018-02-13T08:20:32.811] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:20:32.915] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:20:32.963] [INFO] cheese - inserting 1000 documents. first: SAP-VN and last: Fort D A Russell +[2018-02-13T08:20:33.041] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:20:33.141] [INFO] cheese - inserting 1000 documents. first: Chelonanthera miniata and last: Wikipedia:NK +[2018-02-13T08:20:33.169] [INFO] cheese - inserting 1000 documents. first: Category:United States Senate elections, 1810 and last: Ride on the Edge +[2018-02-13T08:20:33.189] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:20:33.261] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:20:33.457] [INFO] cheese - inserting 1000 documents. first: Muhajir Urdu and last: GFJ Dart +[2018-02-13T08:20:33.496] [INFO] cheese - inserting 1000 documents. first: WD postcode area and last: Blond Kouros's Head of the Acropolis +[2018-02-13T08:20:33.509] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:20:33.604] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:20:33.687] [INFO] cheese - inserting 1000 documents. first: United Nations Security Council Resolution 1618 and last: Category:Landforms of Sherman County, Oregon +[2018-02-13T08:20:33.706] [INFO] cheese - inserting 1000 documents. first: The Association of Congenital Diaphragmatic Hernia Research, Awareness and Support and last: Debub-Keih-Bahri Region +[2018-02-13T08:20:33.748] [INFO] cheese - inserting 1000 documents. first: Blue and white pottery and last: Tuscan Archipelago +[2018-02-13T08:20:33.798] [INFO] cheese - inserting 1000 documents. first: William II of England and last: AD 23 +[2018-02-13T08:20:33.831] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:20:33.911] [INFO] cheese - inserting 1000 documents. first: Category:Youth organisations based in Uruguay and last: Mt mary college +[2018-02-13T08:20:33.955] [INFO] cheese - batch complete in: 1.144 secs +[2018-02-13T08:20:34.020] [INFO] cheese - inserting 1000 documents. first: Yuaytacondorsenja and last: Wikipedia:WikiProject Directory/Description/WikiProject Micronesia +[2018-02-13T08:20:34.035] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:20:34.110] [INFO] cheese - batch complete in: 1.352 secs +[2018-02-13T08:20:34.224] [INFO] cheese - batch complete in: 1.309 secs +[2018-02-13T08:20:34.252] [INFO] cheese - batch complete in: 5.623 secs +[2018-02-13T08:20:34.277] [INFO] cheese - inserting 1000 documents. first: GG Coulton and last: Pike Road, Al +[2018-02-13T08:20:34.373] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:20:34.574] [INFO] cheese - inserting 1000 documents. first: The Doug Wright Awards and last: Miracle Mile District +[2018-02-13T08:20:34.689] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T08:20:34.700] [INFO] cheese - inserting 1000 documents. first: Semenawi Keyih Bahri Region and last: 2009 Wimbledon Championships – Women's Doubles +[2018-02-13T08:20:34.846] [INFO] cheese - inserting 1000 documents. first: Mt mary and last: Hoel I, Duke of Brittany +[2018-02-13T08:20:34.879] [INFO] cheese - inserting 1000 documents. first: File:Filthy (Egyptian Lover album - cover art).jpg and last: Harvey Grammar School +[2018-02-13T08:20:34.892] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T08:20:35.007] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:20:35.036] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:20:35.185] [INFO] cheese - inserting 1000 documents. first: Greystones Town Council and last: Acleris tungurahuae +[2018-02-13T08:20:35.358] [INFO] cheese - batch complete in: 1.403 secs +[2018-02-13T08:20:35.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Central America articles by quality/13 and last: Xenia, Oh +[2018-02-13T08:20:35.565] [INFO] cheese - inserting 1000 documents. first: Coordination failure (political science) and last: R378 road (South Africa) +[2018-02-13T08:20:35.631] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:20:35.656] [INFO] cheese - batch complete in: 1.545 secs +[2018-02-13T08:20:35.689] [INFO] cheese - inserting 1000 documents. first: File:Kainos logo.jpg and last: Wikipedia:Contributor copyright investigations/Snigdhasinghsweet +[2018-02-13T08:20:35.724] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/laco.org and last: James Garfield Stewart +[2018-02-13T08:20:35.766] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pi.vu and last: Wikipedia:WikiProject Directory/Description/WikiProject Secret Societies +[2018-02-13T08:20:35.785] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:20:35.823] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:20:35.950] [INFO] cheese - inserting 1000 documents. first: 1933 Virginia state highway renumbering and last: Shane (B&B) +[2018-02-13T08:20:35.974] [INFO] cheese - batch complete in: 1.749 secs +[2018-02-13T08:20:36.108] [INFO] cheese - inserting 1000 documents. first: AD 24 and last: 1117 +[2018-02-13T08:20:36.109] [INFO] cheese - batch complete in: 1.42 secs +[2018-02-13T08:20:36.160] [INFO] cheese - inserting 1000 documents. first: Category:Tortricini and last: Spey River (Tasman) +[2018-02-13T08:20:36.174] [INFO] cheese - inserting 1000 documents. first: Gymnasium F C and last: Football (soccer) in Western Australia +[2018-02-13T08:20:36.243] [INFO] cheese - batch complete in: 1.991 secs +[2018-02-13T08:20:36.254] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:20:36.305] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:20:36.450] [INFO] cheese - inserting 1000 documents. first: Bunny Style! and last: Raymond Siday +[2018-02-13T08:20:36.514] [INFO] cheese - inserting 1000 documents. first: Vladimir Kobzev and last: Wells Fargo Securities +[2018-02-13T08:20:36.566] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:20:36.628] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:20:36.685] [INFO] cheese - inserting 1000 documents. first: Category:Green Line (MBTA) and last: Talking Voice vs. Singing Voice +[2018-02-13T08:20:36.744] [INFO] cheese - inserting 1000 documents. first: John Alnander and last: Wikipedia:Version 1.0 Editorial Team/Biography (politics and government) articles by quality/46 +[2018-02-13T08:20:36.828] [INFO] cheese - batch complete in: 1.172 secs +[2018-02-13T08:20:36.853] [INFO] cheese - inserting 1000 documents. first: File:NovoBrdoWall2.jpg and last: File:The Creeps dvd cover.jpg +[2018-02-13T08:20:36.859] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:20:36.952] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:20:36.960] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Hernando de Soto Bridge Memphis.jpg and last: Wikipedia:Articles for deletion/Bloodhound Gang's fifth studio album +[2018-02-13T08:20:36.965] [INFO] cheese - inserting 1000 documents. first: Reading United AC and last: Wikipedia:WikiProject Spam/LinkReports/skynet.lk +[2018-02-13T08:20:37.036] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:20:37.090] [INFO] cheese - inserting 1000 documents. first: Siday and last: File:Distribution of professional opinion on anthropogenic climate change - by Tobis and Ban.jpg +[2018-02-13T08:20:37.094] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:20:37.180] [INFO] cheese - inserting 1000 documents. first: IPinkVisualpass.com and last: Death of Autotune +[2018-02-13T08:20:37.182] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:20:37.310] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:20:37.445] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (politics and government) articles by quality/47 and last: Wikipedia:Articles for deletion/DEVFS +[2018-02-13T08:20:37.531] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:20:37.542] [INFO] cheese - inserting 1000 documents. first: History of the Italians in Baltimore and last: Frend, William +[2018-02-13T08:20:37.642] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:20:37.707] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz W116 and last: Category:Indian weightlifters +[2018-02-13T08:20:37.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/skynet.lk and last: Lucas Cornelisz. +[2018-02-13T08:20:37.781] [INFO] cheese - inserting 1000 documents. first: Rock Island (Nunavut) and last: Ee Parakkum Thalika +[2018-02-13T08:20:37.800] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:20:37.804] [INFO] cheese - inserting 1000 documents. first: Anheuser and last: Stellorkis +[2018-02-13T08:20:37.818] [INFO] cheese - inserting 1000 documents. first: Category:Cuisine of Provence and last: José Miguel Pérez (disambiguation) +[2018-02-13T08:20:37.857] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:20:37.903] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:20:37.928] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:20:38.015] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:20:38.252] [INFO] cheese - inserting 1000 documents. first: Parvez Musharraf and last: Doggejávri +[2018-02-13T08:20:38.369] [INFO] cheese - inserting 1000 documents. first: Wiseman, William and last: Category:Residential buildings completed in the 10th century +[2018-02-13T08:20:38.409] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:20:38.433] [INFO] cheese - inserting 1000 documents. first: KAMB (disambiguation) and last: ௐ +[2018-02-13T08:20:38.510] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:20:38.563] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:20:38.586] [INFO] cheese - inserting 1000 documents. first: 1118 and last: Fallopia japonica +[2018-02-13T08:20:38.626] [INFO] cheese - inserting 1000 documents. first: LiteFoot ATV and last: Weak in the Presence of Beauty (album) +[2018-02-13T08:20:38.703] [INFO] cheese - inserting 1000 documents. first: Category:People from Haveri and last: NRHP in Wasco County +[2018-02-13T08:20:38.704] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:20:38.740] [INFO] cheese - inserting 1000 documents. first: Orach Hayyim and last: (aq) +[2018-02-13T08:20:38.795] [INFO] cheese - batch complete in: 2.549 secs +[2018-02-13T08:20:38.839] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:20:38.855] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:20:38.931] [INFO] cheese - inserting 1000 documents. first: Wilhelm Fliess and last: Category:Catholic Church in North America +[2018-02-13T08:20:39.130] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:20:39.302] [INFO] cheese - inserting 1000 documents. first: Category:Residential buildings completed in the 11th century and last: When contact changes minds: An experiment on transmission of support for gay equality +[2018-02-13T08:20:39.304] [INFO] cheese - inserting 1000 documents. first: Ports of Öland and last: J. W. Alexander (musician) +[2018-02-13T08:20:39.320] [INFO] cheese - inserting 1000 documents. first: Party-led mediation and last: Maconaquah High School +[2018-02-13T08:20:39.440] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:20:39.448] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:20:39.534] [INFO] cheese - batch complete in: 1.125 secs +[2018-02-13T08:20:39.737] [INFO] cheese - inserting 1000 documents. first: Template:Honduras squad 2009 CONCACAF Gold Cup and last: 1920 American Cup +[2018-02-13T08:20:39.866] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T08:20:40.041] [INFO] cheese - inserting 1000 documents. first: Jakub Krupa and last: Amanieu II +[2018-02-13T08:20:40.204] [INFO] cheese - inserting 1000 documents. first: Ana María Simo and last: Template:Magoffin County, Kentucky +[2018-02-13T08:20:40.221] [INFO] cheese - batch complete in: 1.517 secs +[2018-02-13T08:20:40.310] [INFO] cheese - inserting 1000 documents. first: File:"This Man Is News" (1938).jpg and last: File:Diego Velázquez - The Three Musicians - Google Art Project.jpg +[2018-02-13T08:20:40.401] [INFO] cheese - inserting 1000 documents. first: Sexual abuse in Haiti and last: Category:LGBT mayors of places in Canada +[2018-02-13T08:20:40.435] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:20:40.492] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T08:20:40.517] [INFO] cheese - batch complete in: 1.677 secs +[2018-02-13T08:20:40.540] [INFO] cheese - inserting 1000 documents. first: Coarse woody habitat and last: Caps lock button +[2018-02-13T08:20:40.587] [INFO] cheese - inserting 1000 documents. first: Category:Grand Prix teams and last: Junctional complexes +[2018-02-13T08:20:40.806] [INFO] cheese - batch complete in: 1.667 secs +[2018-02-13T08:20:40.816] [INFO] cheese - inserting 1000 documents. first: Marial, Oregon and last: Gadolinium-153 +[2018-02-13T08:20:40.822] [INFO] cheese - batch complete in: 1.288 secs +[2018-02-13T08:20:40.957] [INFO] cheese - batch complete in: 1.091 secs +[2018-02-13T08:20:41.420] [INFO] cheese - inserting 1000 documents. first: Tehran Mehrabad Airport and last: Transportes Urbanos de Vitoria +[2018-02-13T08:20:41.505] [INFO] cheese - inserting 1000 documents. first: Category:Education in Grant County, Wisconsin and last: Category:Buildings and structures in Lafayette County, Wisconsin +[2018-02-13T08:20:41.508] [INFO] cheese - inserting 1000 documents. first: Meliorator Chimkent and last: Draft:Stephanie Bond-Author +[2018-02-13T08:20:41.531] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:20:41.626] [INFO] cheese - batch complete in: 1.191 secs +[2018-02-13T08:20:41.668] [INFO] cheese - batch complete in: 1.447 secs +[2018-02-13T08:20:41.686] [INFO] cheese - inserting 1000 documents. first: Dawn (ballet) and last: Punto y Hora +[2018-02-13T08:20:41.801] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:20:41.870] [INFO] cheese - inserting 1000 documents. first: G. A. Kolkhorst and last: 300 BC in Ireland +[2018-02-13T08:20:41.899] [INFO] cheese - inserting 1000 documents. first: Bill Easley and last: File:Irina Reaching.jpg +[2018-02-13T08:20:41.991] [INFO] cheese - batch complete in: 1.169 secs +[2018-02-13T08:20:42.026] [INFO] cheese - batch complete in: 1.508 secs +[2018-02-13T08:20:42.149] [INFO] cheese - inserting 1000 documents. first: Meurig ap Hywel and last: Category:2013 in Uganda +[2018-02-13T08:20:42.233] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:20:42.258] [INFO] cheese - inserting 1000 documents. first: Soccer AM's AllSports Show and last: Template:Switzerland-election-stub +[2018-02-13T08:20:42.268] [INFO] cheese - inserting 1000 documents. first: Jack Soble and last: List of Malcolm in the Middle episodes +[2018-02-13T08:20:42.329] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:20:42.361] [INFO] cheese - inserting 1000 documents. first: Richar, Duke of Lower Lotharingia and last: Category:1925 in labour relations +[2018-02-13T08:20:42.378] [INFO] cheese - inserting 1000 documents. first: Rubidium-83 and last: Wikipedia:Arbitration Committee/Agenda/Calendar/10 August 2009 +[2018-02-13T08:20:42.401] [INFO] cheese - batch complete in: 1.595 secs +[2018-02-13T08:20:42.522] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:20:42.541] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:20:42.554] [INFO] cheese - inserting 1000 documents. first: English mythology and last: Telugu language +[2018-02-13T08:20:42.602] [INFO] cheese - inserting 1000 documents. first: Precision guidance and last: Ernest Hemingway House +[2018-02-13T08:20:42.673] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Noahcs/Userboxes/Vince Foster and last: Wikipedia:WikiProject Spam/LinkReports/runtrackdir.com +[2018-02-13T08:20:42.687] [INFO] cheese - inserting 1000 documents. first: Provisional Siberian Government (Vologodskii) and last: Portal:Atlantic Coast Conference/Selected biography/Layout +[2018-02-13T08:20:42.702] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:20:42.816] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:20:42.840] [INFO] cheese - batch complete in: 4.043 secs +[2018-02-13T08:20:42.866] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:20:42.959] [INFO] cheese - inserting 1000 documents. first: Tellurium-110 and last: Antimony-111 +[2018-02-13T08:20:43.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject on open proxies/Archives/Unblock/2011/March and last: File:TalkinBoutMen.jpg +[2018-02-13T08:20:43.059] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:20:43.129] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:20:43.250] [INFO] cheese - inserting 1000 documents. first: Tenant McLanahan and last: Domestic Terrorism +[2018-02-13T08:20:43.277] [INFO] cheese - inserting 1000 documents. first: Category:1926 in labour relations and last: The Cheerful Cherub +[2018-02-13T08:20:43.287] [INFO] cheese - inserting 1000 documents. first: SS Henry R. Schoolcraft and last: Niimi Station +[2018-02-13T08:20:43.359] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:20:43.391] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:20:43.410] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:20:43.530] [INFO] cheese - inserting 1000 documents. first: Thomas A. Greene Memorial Museum and last: Algenib in Perseus +[2018-02-13T08:20:43.542] [INFO] cheese - inserting 1000 documents. first: Antimony-112 and last: Kaduvettividuthy +[2018-02-13T08:20:43.546] [INFO] cheese - inserting 1000 documents. first: File:2013 WAC Basketball Tournament Logo.jpg and last: Troubador Press +[2018-02-13T08:20:43.608] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:20:43.648] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:20:43.699] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:20:43.898] [INFO] cheese - inserting 1000 documents. first: Troels Jørgensen and last: Thore Boye +[2018-02-13T08:20:44.010] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:20:44.172] [INFO] cheese - inserting 1000 documents. first: Spinal v nucleus and last: Gmina Trzebielino +[2018-02-13T08:20:44.227] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:20:44.330] [INFO] cheese - inserting 1000 documents. first: Like a River Runs and last: Durgakund Temple +[2018-02-13T08:20:44.359] [INFO] cheese - inserting 1000 documents. first: Timothy R. Parsons and last: Wikipedia:Articles for deletion/Dalian Plant +[2018-02-13T08:20:44.374] [INFO] cheese - inserting 1000 documents. first: Lovers (song) and last: CO3 +[2018-02-13T08:20:44.385] [INFO] cheese - inserting 1000 documents. first: ¿Dónde Están Mis Amigos? and last: ISO 639:bjm +[2018-02-13T08:20:44.422] [INFO] cheese - inserting 1000 documents. first: Tenryukyo Station and last: Institute of Statistical Research and Training +[2018-02-13T08:20:44.461] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T08:20:44.503] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:20:44.520] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:20:44.570] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:20:44.643] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:20:44.778] [INFO] cheese - inserting 1000 documents. first: Halesowen Town FC and last: L-Valine +[2018-02-13T08:20:44.819] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:20:44.916] [INFO] cheese - inserting 1000 documents. first: Al hindawiyah and last: Category:Parr family +[2018-02-13T08:20:44.964] [INFO] cheese - inserting 1000 documents. first: Udgaon gram panchayat and last: ISO 639:dhl +[2018-02-13T08:20:44.979] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:20:45.027] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:20:45.179] [INFO] cheese - inserting 1000 documents. first: Surval Montreux and last: Category:Frazioni of the Province of Pistoia +[2018-02-13T08:20:45.187] [INFO] cheese - inserting 1000 documents. first: Historical US Census Totals for Belknap County, New Hampshire and last: ILY ~Yokubou~ +[2018-02-13T08:20:45.224] [INFO] cheese - inserting 1000 documents. first: The weather in Oxford and last: Email Service Provider +[2018-02-13T08:20:45.226] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T08:20:45.258] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:20:45.273] [INFO] cheese - inserting 1000 documents. first: Miss World 1983 and last: List of castles and fortresses in Switzerland +[2018-02-13T08:20:45.306] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:20:45.392] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:20:45.436] [INFO] cheese - inserting 1000 documents. first: Gödel code and last: Grand Mesa +[2018-02-13T08:20:45.462] [INFO] cheese - inserting 1000 documents. first: ISO 639:dhm and last: ISO 639:ino +[2018-02-13T08:20:45.525] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:20:45.576] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:20:45.580] [INFO] cheese - inserting 1000 documents. first: Romana Tabaková and last: Wide Hive Records +[2018-02-13T08:20:45.653] [INFO] cheese - inserting 1000 documents. first: IM Dharmadasa and last: Mobile Suit Gundam: Federation vs. Zeon +[2018-02-13T08:20:45.669] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:20:45.732] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:20:45.771] [INFO] cheese - inserting 1000 documents. first: Battle of Bennington and last: USS Merrimack +[2018-02-13T08:20:45.821] [INFO] cheese - inserting 1000 documents. first: NoxiK and last: ISO 639:lke +[2018-02-13T08:20:45.848] [INFO] cheese - inserting 1000 documents. first: Ulupamir and last: Cobalt-53m +[2018-02-13T08:20:45.855] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T08:20:46.034] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:20:46.034] [INFO] cheese - batch complete in: 3.194 secs +[2018-02-13T08:20:46.194] [INFO] cheese - inserting 1000 documents. first: Category:Malayalam encyclopedias and last: Kisou (鬼葬) +[2018-02-13T08:20:46.201] [INFO] cheese - inserting 1000 documents. first: J J Dossen and last: La Paz, In +[2018-02-13T08:20:46.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sarai Sierra and last: Mudflat quillplant +[2018-02-13T08:20:46.261] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:20:46.318] [INFO] cheese - inserting 1000 documents. first: ISO 639:lkh and last: Incruit +[2018-02-13T08:20:46.340] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:20:46.374] [INFO] cheese - inserting 1000 documents. first: Bethenny Getting Married and last: James Frew jr +[2018-02-13T08:20:46.441] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:20:46.450] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:20:46.577] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T08:20:46.702] [INFO] cheese - inserting 1000 documents. first: Suffolk Downs and last: Startrek +[2018-02-13T08:20:46.714] [INFO] cheese - inserting 1000 documents. first: Cobalt-54m and last: Toroidal inductor +[2018-02-13T08:20:46.825] [INFO] cheese - batch complete in: 1.249 secs +[2018-02-13T08:20:46.875] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:20:46.975] [INFO] cheese - inserting 1000 documents. first: Category:Pan American Games medalists for Canada and last: Category:WikiProject Prehistoric Mammals +[2018-02-13T08:20:46.989] [INFO] cheese - inserting 1000 documents. first: J.G. Robinson and last: Folsom Man +[2018-02-13T08:20:47.069] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:20:47.073] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:20:47.275] [INFO] cheese - inserting 1000 documents. first: Category:Power stations in North Korea and last: Digital Tape Format +[2018-02-13T08:20:47.383] [INFO] cheese - inserting 1000 documents. first: Kurzwellen and last: Connor Ripley +[2018-02-13T08:20:47.470] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:20:47.479] [INFO] cheese - inserting 1000 documents. first: ISO 639:qxi and last: Andrzej krauze +[2018-02-13T08:20:47.501] [INFO] cheese - inserting 1000 documents. first: Accidental (music) and last: Stop signal +[2018-02-13T08:20:47.526] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:20:47.558] [INFO] cheese - inserting 1000 documents. first: A Season in Hell (1964 film) and last: Osama Nujaifi +[2018-02-13T08:20:47.572] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:20:47.787] [INFO] cheese - batch complete in: 1.753 secs +[2018-02-13T08:20:47.846] [INFO] cheese - batch complete in: 1.396 secs +[2018-02-13T08:20:47.911] [INFO] cheese - inserting 1000 documents. first: File:Sears tower orthogonal.jpg and last: Sagala Ratnayaka +[2018-02-13T08:20:48.038] [INFO] cheese - batch complete in: 1.162 secs +[2018-02-13T08:20:48.191] [INFO] cheese - inserting 1000 documents. first: Sørvágur and last: Motorized artillery +[2018-02-13T08:20:48.377] [INFO] cheese - inserting 1000 documents. first: Palea (botany) and last: JB Munro +[2018-02-13T08:20:48.384] [INFO] cheese - inserting 1000 documents. first: Category:Croatian football friendly trophies and last: Posen Robbins School District +[2018-02-13T08:20:48.408] [INFO] cheese - batch complete in: 1.582 secs +[2018-02-13T08:20:48.429] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:20:48.540] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Herzegovina and last: List of Hero System books +[2018-02-13T08:20:48.600] [INFO] cheese - inserting 1000 documents. first: Portal:Trinidad and Tobago/On this day/July 24 and last: Edinburgh Ladies' Emancipation Society +[2018-02-13T08:20:48.646] [INFO] cheese - batch complete in: 1.577 secs +[2018-02-13T08:20:48.670] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:20:48.765] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:20:48.873] [INFO] cheese - inserting 1000 documents. first: File:Brooke230Album.jpg and last: Zaō Station +[2018-02-13T08:20:48.963] [INFO] cheese - inserting 1000 documents. first: Separating mixtures and last: Cours-de-Monsegur +[2018-02-13T08:20:49.040] [INFO] cheese - inserting 1000 documents. first: ISO 639:wja and last: Sotiria Aliberti +[2018-02-13T08:20:49.053] [INFO] cheese - batch complete in: 1.583 secs +[2018-02-13T08:20:49.077] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:20:49.087] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:20:49.215] [INFO] cheese - inserting 1000 documents. first: JB Patnaik and last: John MC Smith +[2018-02-13T08:20:49.312] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:20:49.617] [INFO] cheese - inserting 1000 documents. first: Louis the Sixteenth and last: Sleeman Centre (Guelph) +[2018-02-13T08:20:49.621] [INFO] cheese - inserting 1000 documents. first: Category:Adaptations of works by Raymond Chandler and last: Maya Kidowaki +[2018-02-13T08:20:49.672] [INFO] cheese - inserting 1000 documents. first: Radivojević and last: Wikipedia:Articles for deletion/Yahya Arodaki +[2018-02-13T08:20:49.713] [INFO] cheese - inserting 1000 documents. first: Cañon City Record and last: The Apology of Sokrates +[2018-02-13T08:20:49.734] [INFO] cheese - batch complete in: 1.326 secs +[2018-02-13T08:20:49.752] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:20:49.828] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:20:49.844] [INFO] cheese - inserting 1000 documents. first: File:Morris Seal.jpg and last: 1972 Torneo Descentralizado +[2018-02-13T08:20:49.849] [INFO] cheese - inserting 1000 documents. first: File:Lineage on Gv6.gif and last: KT Oslin +[2018-02-13T08:20:49.968] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T08:20:49.953] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:20:50.037] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:20:50.145] [INFO] cheese - inserting 1000 documents. first: Presidents of the U.S.A. and last: Hawkins Island +[2018-02-13T08:20:50.226] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:20:50.309] [INFO] cheese - inserting 1000 documents. first: Store-and-forward switching center and last: Nemertea +[2018-02-13T08:20:50.440] [INFO] cheese - inserting 1000 documents. first: Paris peace conference 1919 and last: Category:Frauen DFB-Pokal seasons +[2018-02-13T08:20:50.484] [INFO] cheese - inserting 1000 documents. first: Kemeny Castle (Brancovenesti) and last: Teresa Miller +[2018-02-13T08:20:50.499] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:20:50.503] [INFO] cheese - inserting 1000 documents. first: ZFHX3 and last: Street Mobster +[2018-02-13T08:20:50.528] [INFO] cheese - batch complete in: 2.741 secs +[2018-02-13T08:20:50.558] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:20:50.597] [INFO] cheese - inserting 1000 documents. first: Euthyphron and last: Hypognathous +[2018-02-13T08:20:50.696] [INFO] cheese - inserting 1000 documents. first: LTU International Airlines and last: It Had to Be You (TV series) +[2018-02-13T08:20:50.708] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:20:50.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2005-05-16/Image uploading and last: Category:Forgotten Realms stubs +[2018-02-13T08:20:50.873] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:20:50.906] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:20:51.100] [INFO] cheese - batch complete in: 1.366 secs +[2018-02-13T08:20:51.297] [INFO] cheese - inserting 1000 documents. first: Category:Furman University and last: East Berkshire +[2018-02-13T08:20:51.404] [INFO] cheese - batch complete in: 1.177 secs +[2018-02-13T08:20:51.565] [INFO] cheese - inserting 1000 documents. first: Stray dogs in Bangkok and last: Lucknow Charbagh Railway Station +[2018-02-13T08:20:51.657] [INFO] cheese - batch complete in: 1.158 secs +[2018-02-13T08:20:51.698] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/GreenEarth Cleaning/Archive and last: Anders Göran Kulläng +[2018-02-13T08:20:51.771] [INFO] cheese - inserting 1000 documents. first: Nate Davis and last: Pretty Polly (film) +[2018-02-13T08:20:51.776] [INFO] cheese - inserting 1000 documents. first: Charles Glover (disambiguation) and last: Centre National d'Art et de Culture Georges +[2018-02-13T08:20:51.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/OCEF and last: Category:Norton Records artists +[2018-02-13T08:20:51.825] [INFO] cheese - batch complete in: 1.267 secs +[2018-02-13T08:20:51.917] [INFO] cheese - batch complete in: 1.208 secs +[2018-02-13T08:20:51.926] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:20:52.075] [INFO] cheese - batch complete in: 1.169 secs +[2018-02-13T08:20:52.339] [INFO] cheese - inserting 1000 documents. first: Akrom Yo‘ldoshev and last: First Baptist Church of Ottawa +[2018-02-13T08:20:52.348] [INFO] cheese - inserting 1000 documents. first: Population of Pudong and last: The Sower (Grohar) +[2018-02-13T08:20:52.449] [INFO] cheese - inserting 1000 documents. first: Berkshire East and last: Spanish Coquina Quarries +[2018-02-13T08:20:52.449] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:20:52.509] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T08:20:52.545] [INFO] cheese - inserting 1000 documents. first: Homorthodes lindseyi and last: Ace of swords +[2018-02-13T08:20:52.554] [INFO] cheese - inserting 1000 documents. first: Category:Beninese people of American descent and last: Hinigaran, Negros Occidental +[2018-02-13T08:20:52.593] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:20:52.650] [INFO] cheese - inserting 1000 documents. first: St. Bride of Kildare and last: SYNPR +[2018-02-13T08:20:52.631] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:20:52.710] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:20:52.728] [INFO] cheese - inserting 1000 documents. first: Max eastley and last: Wikipedia:WikiProject Spam/LinkReports/uzbek-film.ru +[2018-02-13T08:20:52.791] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:20:52.896] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:20:53.095] [INFO] cheese - inserting 1000 documents. first: Ace of wands and last: List of Microscopy Visualization Systems +[2018-02-13T08:20:53.124] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T08:20:53.170] [INFO] cheese - inserting 1000 documents. first: Canoeing at the 2015 Southeast Asian Games – Men's K-2 1000 metres and last: Johan Persson (disambiguation) +[2018-02-13T08:20:53.174] [INFO] cheese - inserting 1000 documents. first: Cheonma and last: Papyrus Oxyrhynchus 267 +[2018-02-13T08:20:53.244] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:20:53.270] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:20:53.356] [INFO] cheese - inserting 1000 documents. first: Category:Musicians from Georgia (country) by instrument and last: Al-Adiliyah Mosque +[2018-02-13T08:20:53.425] [INFO] cheese - inserting 1000 documents. first: Perry, Fl and last: KIYK +[2018-02-13T08:20:53.432] [INFO] cheese - inserting 1000 documents. first: List of Brazilian television channels and last: SECA +[2018-02-13T08:20:53.432] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:20:53.454] [INFO] cheese - inserting 1000 documents. first: Adorcelino wesley gomes da silva and last: Agriculture in cuba +[2018-02-13T08:20:53.486] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T08:20:53.540] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:20:53.601] [INFO] cheese - inserting 1000 documents. first: Norton and Nancy Dodge Collection of Soviet Nonconformist Art and last: Joseph Rene Bellot +[2018-02-13T08:20:53.611] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:20:53.728] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:20:53.796] [INFO] cheese - inserting 1000 documents. first: Reunite (disambiguation) and last: Xoylu (Shamakhi) +[2018-02-13T08:20:53.883] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:20:53.898] [INFO] cheese - inserting 1000 documents. first: Baby Lloyd and last: Zeyti-ye Do +[2018-02-13T08:20:53.928] [INFO] cheese - inserting 1000 documents. first: Agriculture in cyprus and last: Inalta Curte de Casatie si Justitie +[2018-02-13T08:20:53.992] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:20:54.021] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:20:54.035] [INFO] cheese - inserting 1000 documents. first: Studio Theatre in Łódź and last: Template:Slovenia-poli-stub +[2018-02-13T08:20:54.065] [INFO] cheese - inserting 1000 documents. first: Platyhelmintha and last: Printing +[2018-02-13T08:20:54.120] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:20:54.208] [INFO] cheese - inserting 1000 documents. first: Drain, Or and last: Rhy +[2018-02-13T08:20:54.242] [INFO] cheese - inserting 1000 documents. first: File:IPod Zune Comparison.jpg and last: Kedzie station (CTA Green Line) +[2018-02-13T08:20:54.276] [INFO] cheese - batch complete in: 3.748 secs +[2018-02-13T08:20:54.305] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:20:54.347] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:20:54.366] [INFO] cheese - inserting 1000 documents. first: 1997 RFL Division Two and last: Toney Penna (Tri-Rail) +[2018-02-13T08:20:54.448] [INFO] cheese - inserting 1000 documents. first: Malaxis crenulata and last: EDG7 +[2018-02-13T08:20:54.472] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:20:54.539] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:20:54.601] [INFO] cheese - inserting 1000 documents. first: David Paul Weber and last: Wikipedia:Articles for deletion/Palestinian Peruvian +[2018-02-13T08:20:54.685] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:20:54.691] [INFO] cheese - inserting 1000 documents. first: Template:BosniaHerzegovina-poli-stub and last: Category:People from St. Joseph, Michigan +[2018-02-13T08:20:54.774] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:20:54.818] [INFO] cheese - inserting 1000 documents. first: PocketZip and last: Povel +[2018-02-13T08:20:54.990] [INFO] cheese - inserting 1000 documents. first: American society of appraisers and last: Apollodorus of pergamon +[2018-02-13T08:20:55.015] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T08:20:55.030] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:20:55.160] [INFO] cheese - inserting 1000 documents. first: Blodgett, Oregon and last: Cass Township, Indiana +[2018-02-13T08:20:55.161] [INFO] cheese - inserting 1000 documents. first: Malcom and Melvin and last: Gérald Mossé +[2018-02-13T08:20:55.251] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:20:55.282] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T08:20:55.305] [INFO] cheese - inserting 1000 documents. first: Anishinaabe Center and last: Category:1933 establishments in Asia +[2018-02-13T08:20:55.306] [INFO] cheese - inserting 1000 documents. first: G.j. and last: Transport in Somaliland +[2018-02-13T08:20:55.364] [INFO] cheese - inserting 1000 documents. first: Apollodorus of seleucia and last: Ashdod port attack +[2018-02-13T08:20:55.376] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:20:55.396] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T08:20:55.401] [INFO] cheese - inserting 1000 documents. first: Massilia cf. timonae and last: ප +[2018-02-13T08:20:55.428] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:20:55.527] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:20:55.697] [INFO] cheese - inserting 1000 documents. first: Ashdon halt railway station and last: Baby boy da prince +[2018-02-13T08:20:55.707] [INFO] cheese - inserting 1000 documents. first: Cedar Creek Township, Indiana and last: Ririe, Id +[2018-02-13T08:20:55.722] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T08:20:55.784] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:20:55.830] [INFO] cheese - inserting 1000 documents. first: Ramel Povel and last: NATO expansion +[2018-02-13T08:20:55.957] [INFO] cheese - inserting 1000 documents. first: Directive 93/98/EEC and last: Eppan +[2018-02-13T08:20:55.958] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T08:20:56.017] [INFO] cheese - inserting 1000 documents. first: Extreme points of Kazakhstan and last: Čtvrtlík +[2018-02-13T08:20:56.036] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:20:56.060] [INFO] cheese - inserting 1000 documents. first: Category:18th-century establishments in the French colonial empire and last: Franjo Dijak +[2018-02-13T08:20:56.077] [INFO] cheese - inserting 1000 documents. first: Baby come on over and last: Bangladesh university of engineering and technology +[2018-02-13T08:20:56.112] [INFO] cheese - inserting 1000 documents. first: ඵ and last: Illinois Route 42 +[2018-02-13T08:20:56.122] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T08:20:56.137] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:20:56.165] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:20:56.254] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:20:56.314] [INFO] cheese - inserting 1000 documents. first: Chen Di (linguist) and last: Royerton, Indiana +[2018-02-13T08:20:56.392] [INFO] cheese - inserting 1000 documents. first: Bangladesh university of professionals and last: Bart van der leck +[2018-02-13T08:20:56.402] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:20:56.457] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T08:20:56.846] [INFO] cheese - inserting 1000 documents. first: Draft:Shellyph/my sandbox and last: White Congolese +[2018-02-13T08:20:56.848] [INFO] cheese - inserting 1000 documents. first: Ambrose Ussher and last: Template:User Samoa +[2018-02-13T08:20:56.886] [INFO] cheese - inserting 1000 documents. first: Barthold douma van burmania and last: Battle of caesarea +[2018-02-13T08:20:56.892] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:20:56.907] [INFO] cheese - inserting 1000 documents. first: List of Fijian Heads of State and last: Mario Vazquez (album) +[2018-02-13T08:20:57.050] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:20:57.062] [INFO] cheese - inserting 1000 documents. first: Route 42 (Illinois) and last: Charlie Yeung +[2018-02-13T08:20:57.111] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:20:57.166] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:20:57.175] [INFO] cheese - inserting 1000 documents. first: Yugoslavian civil war and last: Manele +[2018-02-13T08:20:57.254] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:20:57.360] [INFO] cheese - batch complete in: 1.402 secs +[2018-02-13T08:20:57.589] [INFO] cheese - inserting 1000 documents. first: Battle of cagayan de misamis and last: Category:FC Dynamo Stavropol managers +[2018-02-13T08:20:57.599] [INFO] cheese - inserting 1000 documents. first: Smithfield, Indiana and last: B. Russell Murphy (football coach) +[2018-02-13T08:20:57.667] [INFO] cheese - batch complete in: 1.265 secs +[2018-02-13T08:20:57.673] [INFO] cheese - inserting 1000 documents. first: Cavalcade (play) and last: March 28, 2002 +[2018-02-13T08:20:57.676] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:20:57.867] [INFO] cheese - inserting 1000 documents. first: Template:Pentagonal tiling table and last: Megaloprepia formosa +[2018-02-13T08:20:57.967] [INFO] cheese - batch complete in: 3.691 secs +[2018-02-13T08:20:57.982] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:20:58.049] [INFO] cheese - inserting 1000 documents. first: Palm Desert, Calif. and last: Thracian tomb Shushmanets +[2018-02-13T08:20:58.133] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Devizes Town and last: Mohammad Mokhtari (protester) +[2018-02-13T08:20:58.163] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:20:58.167] [INFO] cheese - inserting 1000 documents. first: Kalgin Island and last: Marano (river) +[2018-02-13T08:20:58.171] [INFO] cheese - inserting 1000 documents. first: Battle of jalula and last: Battle of philiphaugh +[2018-02-13T08:20:58.212] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:20:58.283] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T08:20:58.324] [INFO] cheese - batch complete in: 1.158 secs +[2018-02-13T08:20:58.427] [INFO] cheese - inserting 1000 documents. first: Joseph Lightner (football coach) and last: Nicolas Girod +[2018-02-13T08:20:58.556] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:20:58.560] [INFO] cheese - inserting 1000 documents. first: Battle of philippeville and last: Oxycodone/naloxone +[2018-02-13T08:20:58.621] [INFO] cheese - inserting 1000 documents. first: Raw Food Diet and last: Bank of nova scotia +[2018-02-13T08:20:58.635] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T08:20:58.788] [INFO] cheese - batch complete in: 1.427 secs +[2018-02-13T08:20:58.870] [INFO] cheese - inserting 1000 documents. first: Bruce Hobbs (scientist) and last: Peruvian Democratic Constituent Congress election, 1992 +[2018-02-13T08:20:58.923] [INFO] cheese - inserting 1000 documents. first: Julie Lopes Curval and last: United States Senate election in Idaho, 1962 +[2018-02-13T08:20:58.999] [INFO] cheese - inserting 1000 documents. first: Battle of worringen and last: Beer in ireland +[2018-02-13T08:20:59.046] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:20:59.082] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T08:20:59.106] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:20:59.156] [INFO] cheese - inserting 1000 documents. first: Typhinae and last: Wikipedia:Articles for deletion/Provanhall +[2018-02-13T08:20:59.237] [INFO] cheese - inserting 1000 documents. first: Cormac Mac Art and last: File:NITJ Admin Block.jpg +[2018-02-13T08:20:59.297] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:20:59.407] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T08:20:59.565] [INFO] cheese - inserting 1000 documents. first: 2008 Democratic Presidential Primaries (Results) and last: Category:Arkansas road transport articles by importance +[2018-02-13T08:20:59.576] [INFO] cheese - inserting 1000 documents. first: Minuscule 460 and last: Bertrand de jouvenel +[2018-02-13T08:20:59.626] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:20:59.667] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:20:59.893] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Idaho, 1966 and last: El Espinal, Los Santos +[2018-02-13T08:20:59.903] [INFO] cheese - inserting 1000 documents. first: Ligo Feast and last: Category:Fire stations completed in 1937 +[2018-02-13T08:20:59.945] [INFO] cheese - inserting 1000 documents. first: Bertrand de molleville and last: Birbhum institute of technology +[2018-02-13T08:20:59.935] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:20:59.983] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:21:00.005] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T08:21:00.144] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for arbitration/Wareware/Evidence and last: Panoramagram +[2018-02-13T08:21:00.154] [INFO] cheese - inserting 1000 documents. first: Category:Electric railways in Mexico and last: Pöschl +[2018-02-13T08:21:00.155] [INFO] cheese - inserting 1000 documents. first: Landoger Trow and last: Charles William Jones House +[2018-02-13T08:21:00.222] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:21:00.218] [INFO] cheese - batch complete in: 1.43 secs +[2018-02-13T08:21:00.283] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:21:00.340] [INFO] cheese - inserting 1000 documents. first: Birch mountains kimberlite field and last: Bloodchild and other stories +[2018-02-13T08:21:00.442] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:21:00.496] [INFO] cheese - inserting 1000 documents. first: Category:Colorado road transport articles by quality and last: Portal:Louisville/Sunnyside/8 +[2018-02-13T08:21:00.611] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:21:00.679] [INFO] cheese - inserting 1000 documents. first: Category:Sri Lankan American and last: Wikipedia:CULTIVAR +[2018-02-13T08:21:00.688] [INFO] cheese - inserting 1000 documents. first: Blooded on arachne and last: Category:Turkish company stubs +[2018-02-13T08:21:00.727] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T08:21:00.818] [INFO] cheese - inserting 1000 documents. first: Category:Comiskey family and last: Albert Schreiner +[2018-02-13T08:21:00.839] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:21:00.904] [INFO] cheese - inserting 1000 documents. first: Phyre2 and last: Airflow mechanism +[2018-02-13T08:21:00.934] [INFO] cheese - inserting 1000 documents. first: Jack McDevitt and last: Battle of Naissus +[2018-02-13T08:21:00.952] [INFO] cheese - inserting 1000 documents. first: K2r riddim and last: All the Negatives Have Been Destroyed +[2018-02-13T08:21:00.987] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:21:00.987] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T08:21:01.053] [INFO] cheese - inserting 1000 documents. first: Augusto B. Leguía y Salcedo and last: Dimocarpus longan +[2018-02-13T08:21:01.050] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:21:01.123] [INFO] cheese - inserting 1000 documents. first: Boot stamping on a human face forever and last: Breathing for a living +[2018-02-13T08:21:01.153] [INFO] cheese - batch complete in: 3.186 secs +[2018-02-13T08:21:01.143] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:21:01.163] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T08:21:01.428] [INFO] cheese - inserting 1000 documents. first: Caprellida and last: It Happens All the Time +[2018-02-13T08:21:01.517] [INFO] cheese - inserting 1000 documents. first: Breathing the water and last: Broken stone in uji bridge +[2018-02-13T08:21:01.517] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:21:01.578] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T08:21:01.587] [INFO] cheese - inserting 1000 documents. first: Strikeforce Challengers: Riggs vs. Taylor and last: Category:Psychiatric instruments: mania +[2018-02-13T08:21:01.646] [INFO] cheese - inserting 1000 documents. first: Category:1530s establishments in New France and last: Category:1751 establishments in Europe +[2018-02-13T08:21:01.667] [INFO] cheese - inserting 1000 documents. first: Organizational Dissent and last: St John Fisher Catholic High School, Peterborough +[2018-02-13T08:21:01.672] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:21:01.797] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:21:01.857] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T08:21:01.871] [INFO] cheese - inserting 1000 documents. first: Bob Ralston and last: Route 111 (Virginia) +[2018-02-13T08:21:01.904] [INFO] cheese - inserting 1000 documents. first: Broken in pieces and last: Pro rata cancellation +[2018-02-13T08:21:01.973] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T08:21:01.978] [INFO] cheese - inserting 1000 documents. first: Category:St. Cloud, Minnesota and last: Arthur Newbery park +[2018-02-13T08:21:02.054] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:21:02.135] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T08:21:02.314] [INFO] cheese - inserting 1000 documents. first: Bureau of military history and last: Trudy (American comic strip) +[2018-02-13T08:21:02.316] [INFO] cheese - inserting 1000 documents. first: Suriname national under-20 football team and last: Tick Bonesteel +[2018-02-13T08:21:02.375] [INFO] cheese - inserting 1000 documents. first: Category:2012 establishments in Slovenia and last: Template:Factual accuracy +[2018-02-13T08:21:02.386] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T08:21:02.414] [INFO] cheese - inserting 1000 documents. first: Surgical knot and last: Dublin City Gallery The Hugh Lane +[2018-02-13T08:21:02.432] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:21:02.562] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T08:21:02.651] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:21:02.802] [INFO] cheese - inserting 1000 documents. first: Virginia Route 111 and last: French ship Bretagne +[2018-02-13T08:21:02.804] [INFO] cheese - inserting 1000 documents. first: U.S. Route 223 in Ohio and last: Clay Township, Andrew County, Missouri +[2018-02-13T08:21:02.871] [INFO] cheese - inserting 1000 documents. first: Vielka Veronica Valenzuela Lama and last: Canadian lesbian and gay archives +[2018-02-13T08:21:03.006] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:21:03.011] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:21:03.075] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:21:03.328] [INFO] cheese - inserting 1000 documents. first: Elizabeth Steiner Hayward and last: XIA 1st World Tour Concert (2012) +[2018-02-13T08:21:03.348] [INFO] cheese - inserting 1000 documents. first: Daniel Lee and last: Pericallis x hybrida +[2018-02-13T08:21:03.358] [INFO] cheese - inserting 1000 documents. first: Canadian letters and images project and last: Capital punishment in hong kong +[2018-02-13T08:21:03.397] [INFO] cheese - inserting 1000 documents. first: Sister Susie's Sewing Shirts for Soldiers and last: Coomi kapoor +[2018-02-13T08:21:03.407] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:21:03.425] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T08:21:03.480] [INFO] cheese - inserting 1000 documents. first: George Fenwick (disambiguation) and last: Wikipedia:WikiProject Spam/Local/capitalpower.com +[2018-02-13T08:21:03.530] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:21:03.554] [INFO] cheese - batch complete in: 1.419 secs +[2018-02-13T08:21:03.661] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T08:21:03.742] [INFO] cheese - inserting 1000 documents. first: Capital punishment in hungary and last: Wikipedia:Articles for deletion/The Fallouts +[2018-02-13T08:21:03.793] [INFO] cheese - inserting 1000 documents. first: Nevada State Route 878 and last: Chkhalta +[2018-02-13T08:21:03.803] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T08:21:03.902] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:21:03.913] [INFO] cheese - inserting 1000 documents. first: 3rd Legions Infantry Division and last: Disco dance floor +[2018-02-13T08:21:03.971] [INFO] cheese - inserting 1000 documents. first: Eamonn Keane and last: Category:French foresters +[2018-02-13T08:21:04.013] [INFO] cheese - inserting 1000 documents. first: Strange loop and last: Link awareness +[2018-02-13T08:21:04.021] [INFO] cheese - inserting 1000 documents. first: Fleet Flag Officer 2nd rank and last: Muhammad Hargianto +[2018-02-13T08:21:04.034] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:21:04.067] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:21:04.106] [INFO] cheese - inserting 1000 documents. first: Cassa di risparmio della repubblica di san marino and last: Celia kitzinger and sue wilkinson +[2018-02-13T08:21:04.179] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T08:21:04.205] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:21:04.323] [INFO] cheese - inserting 1000 documents. first: Waldron-Haslam and last: Jm. +[2018-02-13T08:21:04.323] [INFO] cheese - batch complete in: 3.17 secs +[2018-02-13T08:21:04.425] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:21:04.461] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fictional Frontiers with Sohaib and last: Centre of communist revolutionaries of india +[2018-02-13T08:21:04.462] [INFO] cheese - inserting 1000 documents. first: Bos gruniens and last: Keihin Tohoku Line +[2018-02-13T08:21:04.490] [INFO] cheese - batch complete in: 0.31 secs +[2018-02-13T08:21:04.603] [INFO] cheese - inserting 1000 documents. first: Marieke and last: Kim Hyaun-chang +[2018-02-13T08:21:04.765] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:21:04.776] [INFO] cheese - inserting 1000 documents. first: Category:Journalists killed in East Timor and last: Land and sea breeze +[2018-02-13T08:21:04.804] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:21:04.860] [INFO] cheese - inserting 1000 documents. first: Joan Hall (UK politician) and last: List of mountain peaks of Martinique +[2018-02-13T08:21:04.901] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:21:04.909] [INFO] cheese - inserting 1000 documents. first: Centre of contemporary art and last: Charles de marillac +[2018-02-13T08:21:04.946] [INFO] cheese - inserting 1000 documents. first: Gmina Miłki and last: Chassidic philosophy +[2018-02-13T08:21:04.976] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:21:05.014] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:21:05.122] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:21:05.252] [INFO] cheese - inserting 1000 documents. first: Lo. and last: Church of All Saints, Haugham +[2018-02-13T08:21:05.340] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:21:05.360] [INFO] cheese - inserting 1000 documents. first: Charles de mazade and last: China central radio and tv university +[2018-02-13T08:21:05.406] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T08:21:05.562] [INFO] cheese - inserting 1000 documents. first: Gim Hyaun-chang and last: Category:Sports clubs established in 1886 +[2018-02-13T08:21:05.660] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:21:05.731] [INFO] cheese - inserting 1000 documents. first: List of mountain peaks of Saint Vincent and the Grenadines and last: あひるの空 +[2018-02-13T08:21:05.794] [INFO] cheese - inserting 1000 documents. first: Moroccan architecture and last: Category:New Orleans Saints players +[2018-02-13T08:21:05.846] [INFO] cheese - inserting 1000 documents. first: China central television headquarters building and last: Chrysler k platform +[2018-02-13T08:21:05.863] [INFO] cheese - inserting 1000 documents. first: 1980–1981 United States network television schedule (late night) and last: Category:1785 in Connecticut +[2018-02-13T08:21:05.930] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:21:05.975] [INFO] cheese - batch complete in: 1.21 secs +[2018-02-13T08:21:05.985] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:21:06.100] [INFO] cheese - inserting 1000 documents. first: Cardigans Best of and last: Mary V. Wade +[2018-02-13T08:21:06.126] [INFO] cheese - batch complete in: 1.225 secs +[2018-02-13T08:21:06.233] [INFO] cheese - inserting 1000 documents. first: Category:Bolivian long-distance runners and last: Lankadahanam +[2018-02-13T08:21:06.258] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:21:06.366] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:21:06.516] [INFO] cheese - inserting 1000 documents. first: Chrysler la engine and last: City of adelaide pipe band +[2018-02-13T08:21:06.599] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:21:06.701] [INFO] cheese - inserting 1000 documents. first: Elvis & JV and last: Owston +[2018-02-13T08:21:06.766] [INFO] cheese - inserting 1000 documents. first: Nanyang Film Company and last: Hoboken High School +[2018-02-13T08:21:06.796] [INFO] cheese - batch complete in: 1.135 secs +[2018-02-13T08:21:06.830] [INFO] cheese - inserting 1000 documents. first: Itt a szabadság! and last: Category:1989–90 in German football +[2018-02-13T08:21:06.862] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:21:06.935] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:21:06.994] [INFO] cheese - inserting 1000 documents. first: City of alachua downtown historic district and last: Clerk of the green cloth +[2018-02-13T08:21:07.032] [INFO] cheese - batch complete in: 0.433 secs +[2018-02-13T08:21:07.123] [INFO] cheese - inserting 1000 documents. first: Mg. and last: Warchild (album) +[2018-02-13T08:21:07.183] [INFO] cheese - inserting 1000 documents. first: Tufted Puffins and last: Brima Acha Kamara +[2018-02-13T08:21:07.228] [INFO] cheese - inserting 1000 documents. first: Communist Party of the Portuguese Workers and last: Battle of Podul Înalt +[2018-02-13T08:21:07.240] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:21:07.360] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T08:21:07.434] [INFO] cheese - batch complete in: 1.459 secs +[2018-02-13T08:21:07.458] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dealwithus.co.in and last: Augustus Cornelius Johnson, Jr. +[2018-02-13T08:21:07.514] [INFO] cheese - inserting 1000 documents. first: Clerk of the house of commons and last: Coat of arms of syria +[2018-02-13T08:21:07.539] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:21:07.588] [INFO] cheese - inserting 1000 documents. first: Category:1990–91 in German football and last: 1991–1992 United States network television schedule (Saturday morning) +[2018-02-13T08:21:07.592] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:21:07.734] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:21:07.897] [INFO] cheese - inserting 1000 documents. first: Stanley Baldwin and last: Single-occupancy vehicle +[2018-02-13T08:21:07.912] [INFO] cheese - inserting 1000 documents. first: Broken Melody and last: Colonial militia in canada +[2018-02-13T08:21:07.959] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T08:21:08.088] [INFO] cheese - inserting 1000 documents. first: Category:1688 establishments by continent and last: Encephalo-myelitis periaxialis scleroticans +[2018-02-13T08:21:08.112] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pilgrim Gardens Shopping Center and last: Earthquake hypocenter +[2018-02-13T08:21:08.179] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:21:08.197] [INFO] cheese - batch complete in: 3.873 secs +[2018-02-13T08:21:08.275] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:21:08.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Rublevka and last: Wikipedia:Articles for deletion/List of Grand Theft Auto: San Andreas Missions +[2018-02-13T08:21:08.331] [INFO] cheese - inserting 1000 documents. first: 1992–1993 United States network television schedule (Saturday morning) and last: Val Meets... The VIPS +[2018-02-13T08:21:08.443] [INFO] cheese - inserting 1000 documents. first: Colonial navies of australia and last: Communes of the martinique department +[2018-02-13T08:21:08.472] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:21:08.523] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:21:08.548] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T08:21:08.640] [INFO] cheese - inserting 1000 documents. first: CZilla and last: Cochimi-Yuman +[2018-02-13T08:21:08.816] [INFO] cheese - batch complete in: 1.382 secs +[2018-02-13T08:21:09.004] [INFO] cheese - inserting 1000 documents. first: Harold Mutobola and last: Selinum anisum +[2018-02-13T08:21:09.092] [INFO] cheese - inserting 1000 documents. first: Communes of the mayenne department and last: AtomRedMetZoloto +[2018-02-13T08:21:09.138] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:21:09.160] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:21:09.303] [INFO] cheese - inserting 1000 documents. first: Terpna pratti and last: Supreme Council of the Lithuanian Republic +[2018-02-13T08:21:09.345] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in North Holland and last: ♭VII-I +[2018-02-13T08:21:09.422] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:21:09.529] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/clubgalactik.com and last: Constitution of burkina faso +[2018-02-13T08:21:09.571] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:21:09.614] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T08:21:09.619] [INFO] cheese - inserting 1000 documents. first: 2000 Webby Awards and last: Template:UK Breakfast TV +[2018-02-13T08:21:09.849] [INFO] cheese - batch complete in: 1.3 secs +[2018-02-13T08:21:09.927] [INFO] cheese - inserting 1000 documents. first: Seseli gilliesii and last: Nyfco.net +[2018-02-13T08:21:10.151] [INFO] cheese - inserting 1000 documents. first: Category:Images of Greece and last: Wikipedia:Reference desk/Archives/Science/2013 March 2 +[2018-02-13T08:21:10.201] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:21:10.249] [INFO] cheese - inserting 1000 documents. first: Constitution of burma and last: Cornelis van tienhoven +[2018-02-13T08:21:10.248] [INFO] cheese - inserting 1000 documents. first: Shalersville Township, Portage County, Ohio and last: Afrikaans (Eastern Cape dialect) +[2018-02-13T08:21:10.360] [INFO] cheese - inserting 1000 documents. first: Route 136 (Virginia) and last: Human Trafficking +[2018-02-13T08:21:10.431] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:21:10.445] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:21:10.604] [INFO] cheese - batch complete in: 1.787 secs +[2018-02-13T08:21:10.847] [INFO] cheese - inserting 1000 documents. first: BVII-I and last: Omen Engine +[2018-02-13T08:21:10.970] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Resource Exchange/Resource Request and last: File:JodiNumberOne.jpg +[2018-02-13T08:21:11.081] [INFO] cheese - inserting 1000 documents. first: Cornelis van vollenhoven and last: James Bernard Fay +[2018-02-13T08:21:11.149] [INFO] cheese - batch complete in: 1.577 secs +[2018-02-13T08:21:11.158] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:21:11.178] [INFO] cheese - batch complete in: 1.328 secs +[2018-02-13T08:21:11.317] [INFO] cheese - batch complete in: 4.52 secs +[2018-02-13T08:21:11.400] [INFO] cheese - inserting 1000 documents. first: Kiernan's Corner and last: Category:Visby-class corvettes +[2018-02-13T08:21:11.459] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:21:11.521] [INFO] cheese - inserting 1000 documents. first: Ofcs.org and last: Category:2005 establishments in Africa +[2018-02-13T08:21:11.787] [INFO] cheese - inserting 1000 documents. first: Country of particular concern and last: Arnshtam +[2018-02-13T08:21:11.824] [INFO] cheese - batch complete in: 1.623 secs +[2018-02-13T08:21:11.960] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:21:12.099] [INFO] cheese - inserting 1000 documents. first: DOS32 and last: Philip Courtenay (died 1406) +[2018-02-13T08:21:12.135] [INFO] cheese - inserting 1000 documents. first: Tafilalt and last: GOELRO plan +[2018-02-13T08:21:12.155] [INFO] cheese - inserting 1000 documents. first: Category:Stockholm-class corvettes and last: Category:1967 NCAA University Division independents football season +[2018-02-13T08:21:12.239] [INFO] cheese - inserting 1000 documents. first: Quercus kelloggii and last: Van de Graaff generator +[2018-02-13T08:21:12.264] [INFO] cheese - inserting 1000 documents. first: Andel, Côtes-d'Armor and last: Canelas (Arouca) +[2018-02-13T08:21:12.269] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:21:12.281] [INFO] cheese - batch complete in: 1.132 secs +[2018-02-13T08:21:12.385] [INFO] cheese - batch complete in: 1.781 secs +[2018-02-13T08:21:12.493] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T08:21:12.571] [INFO] cheese - inserting 1000 documents. first: Category:2006 establishments in Africa and last: Lawrence Hazard +[2018-02-13T08:21:12.645] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:21:12.956] [INFO] cheese - inserting 1000 documents. first: Bunty Bailey and last: Wikipedia:WikiProject Spam/LinkReports/conceptualfiction.com +[2018-02-13T08:21:13.074] [INFO] cheese - batch complete in: 4.877 secs +[2018-02-13T08:21:13.163] [INFO] cheese - batch complete in: 1.203 secs +[2018-02-13T08:21:13.166] [INFO] cheese - inserting 1000 documents. first: H.V. Conolly and last: David Phillipson +[2018-02-13T08:21:13.256] [INFO] cheese - inserting 1000 documents. first: Portal:Australia/Featured picture/Week 3, 2008 and last: March 29, 2006 Capitol Hill Police Incident +[2018-02-13T08:21:13.294] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:21:13.301] [INFO] cheese - inserting 1000 documents. first: Category:Truman family residences and last: Category:Mountains and hills of Rhondda Cynon Taf +[2018-02-13T08:21:13.302] [INFO] cheese - inserting 1000 documents. first: Max Cassidy and last: George Gulliver +[2018-02-13T08:21:13.351] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:21:13.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Byeard Maggott and last: Cheboksarski Raion +[2018-02-13T08:21:13.433] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:21:13.498] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:21:13.582] [INFO] cheese - batch complete in: 2.265 secs +[2018-02-13T08:21:13.881] [INFO] cheese - inserting 1000 documents. first: Hydroelectric power plant and last: Mikolaj z Bogoryi i Skotnik +[2018-02-13T08:21:13.911] [INFO] cheese - inserting 1000 documents. first: Supplementary oxygen and last: Pissutsit +[2018-02-13T08:21:14.012] [INFO] cheese - batch complete in: 1.627 secs +[2018-02-13T08:21:14.016] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:21:14.077] [INFO] cheese - inserting 1000 documents. first: Hettstädt and last: Wikipedia:WikiProject Spam/LinkReports/eonon.com +[2018-02-13T08:21:14.092] [INFO] cheese - inserting 1000 documents. first: Krim Belkacem Airport and last: H. R. Piyasiri +[2018-02-13T08:21:14.244] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:21:14.259] [INFO] cheese - inserting 1000 documents. first: Category:Cricket grounds in Hertfordshire and last: Amphoe Ban Ta Khun +[2018-02-13T08:21:14.264] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:21:14.326] [INFO] cheese - inserting 1000 documents. first: Only Right and last: Baie Georgienne +[2018-02-13T08:21:14.341] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians who convert reference tags and last: Rich Animation Studios +[2018-02-13T08:21:14.348] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:21:14.435] [INFO] cheese - inserting 1000 documents. first: Category:Argentine literary magazines and last: Category:Admiralty M-class destroyers +[2018-02-13T08:21:14.491] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:21:14.523] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:21:14.550] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:21:14.822] [INFO] cheese - inserting 1000 documents. first: Amphoe Phanom and last: Antilepsin +[2018-02-13T08:21:14.883] [INFO] cheese - inserting 1000 documents. first: LST 3035 and last: David Walsh (disambiguation) +[2018-02-13T08:21:14.887] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:21:14.962] [INFO] cheese - inserting 1000 documents. first: Stanislawa z Bogoryi i Skotnik and last: Jeep Jeepster Commando +[2018-02-13T08:21:14.988] [INFO] cheese - inserting 1000 documents. first: Santhosh Thundiyil and last: Bushmanland (disambiguation) +[2018-02-13T08:21:14.990] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:21:14.993] [INFO] cheese - inserting 1000 documents. first: WBFG (FM) and last: Vomit fruit +[2018-02-13T08:21:15.068] [INFO] cheese - inserting 1000 documents. first: Koi plaa and last: Klein-Flugzeugträger +[2018-02-13T08:21:15.107] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:21:15.190] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:21:15.195] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:21:15.212] [INFO] cheese - batch complete in: 1.2 secs +[2018-02-13T08:21:15.318] [INFO] cheese - inserting 1000 documents. first: File:Triptychdeluxeedition.jpg and last: File:Phantom1922DVD.jpg +[2018-02-13T08:21:15.441] [INFO] cheese - inserting 1000 documents. first: Cloazepam and last: Peter Barnes (lighting designer) +[2018-02-13T08:21:15.443] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:21:15.503] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:21:15.635] [INFO] cheese - inserting 1000 documents. first: Werewolf of Bedburg and last: Wikipedia:Articles for deletion/Barbie as Rapunzel +[2018-02-13T08:21:15.641] [INFO] cheese - inserting 1000 documents. first: Flin Aerodrome and last: Wikipedia:Miscellany for deletion/Talk:Abyssinian (cat +[2018-02-13T08:21:15.670] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:21:15.688] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:21:15.709] [INFO] cheese - inserting 1000 documents. first: Category:2014 AFC Women's Asian Cup and last: Category:2010 disestablishments by continent +[2018-02-13T08:21:15.800] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:21:15.893] [INFO] cheese - inserting 1000 documents. first: Josefsdorf and last: Stupinii Prejmerului +[2018-02-13T08:21:15.961] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:21:15.976] [INFO] cheese - inserting 1000 documents. first: The ARC group and last: Luk tung sa on 6 +[2018-02-13T08:21:16.017] [INFO] cheese - inserting 1000 documents. first: Van de Graff generator and last: Vitamin P +[2018-02-13T08:21:16.024] [INFO] cheese - inserting 1000 documents. first: Province of North Gyeongsang and last: Batch file programming +[2018-02-13T08:21:16.078] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:21:16.084] [INFO] cheese - inserting 1000 documents. first: Corlm and last: The Institute of Peace and Conflict Studies +[2018-02-13T08:21:16.114] [INFO] cheese - inserting 1000 documents. first: 2012 ICC European T20 Championship Division Three and last: Pa-ye Godar +[2018-02-13T08:21:16.137] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:21:16.207] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:21:16.211] [INFO] cheese - inserting 1000 documents. first: Category:2011 disestablishments by continent and last: Category:Landforms of East Lothian +[2018-02-13T08:21:16.240] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:21:16.328] [INFO] cheese - batch complete in: 3.254 secs +[2018-02-13T08:21:16.345] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:21:16.508] [INFO] cheese - inserting 1000 documents. first: 1779 in Wales and last: Bikers for christ +[2018-02-13T08:21:16.608] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:21:16.738] [INFO] cheese - inserting 1000 documents. first: Portal:Logic/Selected article/12 and last: Product Liability +[2018-02-13T08:21:16.743] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of East Renfrewshire and last: Category:2000s disestablishments in Europe +[2018-02-13T08:21:16.748] [INFO] cheese - inserting 1000 documents. first: Khet Bangna and last: File:Sprague Electric Logo.jpg +[2018-02-13T08:21:16.772] [INFO] cheese - inserting 1000 documents. first: Perimeter/diameter and last: Amphoe Khao Chakan +[2018-02-13T08:21:16.788] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T08:21:16.816] [INFO] cheese - inserting 1000 documents. first: Guy Morel and last: File:BonoboDaysToCome.jpg +[2018-02-13T08:21:16.908] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:21:16.918] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:21:16.896] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:21:17.012] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:21:17.056] [INFO] cheese - inserting 1000 documents. first: Insight Magazine and last: Albert Schickedanz +[2018-02-13T08:21:17.189] [INFO] cheese - batch complete in: 1.111 secs +[2018-02-13T08:21:17.292] [INFO] cheese - inserting 1000 documents. first: Cinculeasa River and last: Peter Nyman +[2018-02-13T08:21:17.365] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:21:17.473] [INFO] cheese - inserting 1000 documents. first: Category:1990s disestablishments in Europe and last: Vracejte konve na místo (album) +[2018-02-13T08:21:17.479] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron 26 and last: Fluoxetine Hydrochloride +[2018-02-13T08:21:17.510] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:21:17.514] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:21:17.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Triumphant Institute of Management Education and last: Wikipedia:WikiProject Spam/LinkReports/kuzbass85.ru +[2018-02-13T08:21:17.579] [INFO] cheese - inserting 1000 documents. first: File:Originalremoteviewer.jpg and last: Louis Léonard de Loménie +[2018-02-13T08:21:17.632] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:21:17.680] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:21:17.844] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:No one really cares and last: Mohamed B. Daramy +[2018-02-13T08:21:17.912] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:21:17.926] [INFO] cheese - inserting 1000 documents. first: Scourie and last: File:Flags - crossed - do not swim.jpg +[2018-02-13T08:21:17.997] [INFO] cheese - inserting 1000 documents. first: Mannlicher 1893 and last: Carduus cynara +[2018-02-13T08:21:18.031] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:21:18.078] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:21:18.139] [INFO] cheese - inserting 1000 documents. first: Category:1966 NCAA University Division independents football season and last: Fathabad Rural District +[2018-02-13T08:21:18.209] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:21:18.255] [INFO] cheese - inserting 1000 documents. first: File:Wildhearts Fishing.jpg and last: Wikipedia:WikiProject Spam/LinkReports/philippinebeat.com +[2018-02-13T08:21:18.255] [INFO] cheese - inserting 1000 documents. first: Theodore Wirth and last: Wikipedia:WikiProject Louisville/Members +[2018-02-13T08:21:18.325] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:21:18.361] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:21:18.492] [INFO] cheese - inserting 1000 documents. first: Rulander Weiss and last: Halictus malachurus +[2018-02-13T08:21:18.492] [INFO] cheese - inserting 1000 documents. first: When I Stop Leavin' (I'll Be Gone) and last: Sauerbrunn +[2018-02-13T08:21:18.616] [INFO] cheese - inserting 1000 documents. first: Carduus scolymus and last: Friedrich August Karl Ferdinand Julius von Holstein +[2018-02-13T08:21:18.619] [INFO] cheese - inserting 1000 documents. first: Pantothenic acid and last: 970s BC +[2018-02-13T08:21:18.622] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:21:18.736] [INFO] cheese - batch complete in: 1.84 secs +[2018-02-13T08:21:18.753] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 1911/Ottawa (City of) and last: Category:Robert D. Conrad-class oceanographic research ships of the Royal New Zealand Navy +[2018-02-13T08:21:18.789] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:21:18.802] [INFO] cheese - batch complete in: 2.474 secs +[2018-02-13T08:21:18.887] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:21:18.895] [INFO] cheese - inserting 1000 documents. first: Gerstmann Sträussler Scheinker syndrome and last: Music for a Stranger World +[2018-02-13T08:21:19.200] [INFO] cheese - inserting 1000 documents. first: Browne House, Stamford and last: Taku Mayumura +[2018-02-13T08:21:19.203] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T08:21:19.252] [INFO] cheese - inserting 1000 documents. first: Government worker and last: Baroness Miller of Hendon +[2018-02-13T08:21:19.303] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:21:19.330] [INFO] cheese - inserting 1000 documents. first: Dominator (The Time Frequency album) and last: El Patrón de la Vereda +[2018-02-13T08:21:19.335] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:21:19.481] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:21:19.581] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian school stubs and last: Dipterygonotus +[2018-02-13T08:21:19.589] [INFO] cheese - inserting 1000 documents. first: Akademisk Arkitektforening and last: Lobster malai curry +[2018-02-13T08:21:19.695] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:21:19.726] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:21:19.802] [INFO] cheese - inserting 1000 documents. first: John McDonald (pitcher) and last: Paramount Leader Hu Jintao +[2018-02-13T08:21:19.859] [INFO] cheese - batch complete in: 1.123 secs +[2018-02-13T08:21:20.163] [INFO] cheese - inserting 1000 documents. first: Word of Thoth and last: Grosses Haff +[2018-02-13T08:21:20.244] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwean revolutionaries and last: Portal:Extinct and endangered species/Did you know +[2018-02-13T08:21:20.251] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:21:20.389] [INFO] cheese - inserting 1000 documents. first: Wilmer Allison, Jr. and last: Nenad Petrović (writer) +[2018-02-13T08:21:20.416] [INFO] cheese - batch complete in: 1.113 secs +[2018-02-13T08:21:20.441] [INFO] cheese - inserting 1000 documents. first: Knowles (Middlesex cricketer) and last: Kurtz, Indiana +[2018-02-13T08:21:20.572] [INFO] cheese - batch complete in: 1.091 secs +[2018-02-13T08:21:20.607] [INFO] cheese - inserting 1000 documents. first: Template:Europe of Nations and Freedom/meta/color and last: Château de Wahlenbourg +[2018-02-13T08:21:20.608] [INFO] cheese - batch complete in: 1.405 secs +[2018-02-13T08:21:20.663] [INFO] cheese - inserting 1000 documents. first: Krata Ta Matia Sou Kleista and last: Nunn vs Georgia +[2018-02-13T08:21:20.694] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:21:20.774] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:21:20.866] [INFO] cheese - inserting 1000 documents. first: Busanjin-gu, Busan and last: Template:2010–11 in Israeli football +[2018-02-13T08:21:20.957] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:21:20.977] [INFO] cheese - inserting 1000 documents. first: Wielki Zalew and last: John Rawlinson +[2018-02-13T08:21:21.057] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:21:21.113] [INFO] cheese - inserting 1000 documents. first: West Germany national handball team and last: Abhijat Joshi +[2018-02-13T08:21:21.212] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:21:21.227] [INFO] cheese - inserting 1000 documents. first: Mark Zinger and last: Selwyn Sese Aala +[2018-02-13T08:21:21.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Italian War of 1542–46 and last: Lateral retinaculum +[2018-02-13T08:21:21.283] [INFO] cheese - inserting 1000 documents. first: Eutriana curtipendula and last: Category:1989 disestablishments in North America +[2018-02-13T08:21:21.330] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:21:21.348] [INFO] cheese - inserting 1000 documents. first: 980s BC and last: Lake Baikal +[2018-02-13T08:21:21.360] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:21:21.368] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:21:21.395] [INFO] cheese - inserting 1000 documents. first: Choko and last: Beta HCG +[2018-02-13T08:21:21.488] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:21:21.498] [INFO] cheese - batch complete in: 2.696 secs +[2018-02-13T08:21:21.655] [INFO] cheese - inserting 1000 documents. first: KUVE-TV and last: Spider-Man Origins +[2018-02-13T08:21:21.690] [INFO] cheese - inserting 1000 documents. first: Woods Hole fixed point theorem and last: Lee School (Leesburg, Florida) +[2018-02-13T08:21:21.722] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:21:21.756] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:21:21.894] [INFO] cheese - inserting 1000 documents. first: Category:1988 disestablishments in North America and last: Category:Transport in Uşak Province +[2018-02-13T08:21:21.974] [INFO] cheese - inserting 1000 documents. first: Category:Taekwondo in Armenia and last: Category:Tudor Revival architecture in Nebraska +[2018-02-13T08:21:21.987] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:21:22.016] [INFO] cheese - inserting 1000 documents. first: Blaze (song) and last: Template:Location map Paraguay +[2018-02-13T08:21:22.072] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:21:22.085] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:21:22.164] [INFO] cheese - inserting 1000 documents. first: Richard Baylie and last: Rebecca Lowe +[2018-02-13T08:21:22.225] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:21:22.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Danw12/User:Danw12/DCS and last: Kerr, Minnesota +[2018-02-13T08:21:22.337] [INFO] cheese - inserting 1000 documents. first: History of Suffolk, VA and last: A rape in cyberspace +[2018-02-13T08:21:22.420] [INFO] cheese - batch complete in: 1.463 secs +[2018-02-13T08:21:22.454] [INFO] cheese - inserting 1000 documents. first: Benvindo António Moreira and last: Occupation-induced contact dermatitis +[2018-02-13T08:21:22.465] [INFO] cheese - inserting 1000 documents. first: Heroes of Might and Magic VII and last: Anabel Thomas +[2018-02-13T08:21:22.491] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:21:22.507] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:21:22.561] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:21:22.584] [INFO] cheese - inserting 1000 documents. first: Missouri State Highway 11 and last: Missouri highway 64B +[2018-02-13T08:21:22.712] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T08:21:22.759] [INFO] cheese - inserting 1000 documents. first: Temaraia and last: LILRA2 +[2018-02-13T08:21:22.786] [INFO] cheese - inserting 1000 documents. first: Maram Piti and last: Fondicola +[2018-02-13T08:21:22.881] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:21:22.898] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:21:23.018] [INFO] cheese - inserting 1000 documents. first: Fake History (Re-release) - Epitaph Records (2011) and last: Mamas Don't Let Your Babies Grow Up To Be Cowboys (artwork) +[2018-02-13T08:21:23.108] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:21:23.119] [INFO] cheese - inserting 1000 documents. first: Route 64B (MO) and last: Geta Bera +[2018-02-13T08:21:23.173] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T08:21:23.167] [INFO] cheese - inserting 1000 documents. first: Sharda Ramlogan and last: Claudio Coldebella +[2018-02-13T08:21:23.182] [INFO] cheese - inserting 1000 documents. first: Occupation induced contact dermatitis and last: Myspaceim +[2018-02-13T08:21:23.247] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:21:23.305] [INFO] cheese - inserting 1000 documents. first: Bydo and last: Wikipedia:Articles for deletion/Are You Sure +[2018-02-13T08:21:23.316] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:21:23.351] [INFO] cheese - inserting 1000 documents. first: PIM2 (gene) and last: LAYLAH Antirecords +[2018-02-13T08:21:23.439] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:21:23.469] [INFO] cheese - inserting 1000 documents. first: Missouri State Route 107 and last: State Highway 151 (MO) +[2018-02-13T08:21:23.475] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:21:23.509] [INFO] cheese - inserting 1000 documents. first: Yank (Automobile) and last: UDP-glucose:protein 4-alpha-glucosyltransferase +[2018-02-13T08:21:23.540] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T08:21:23.662] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:21:23.685] [INFO] cheese - inserting 1000 documents. first: File:Witchfinder general resurrected.jpg and last: Category:1802 establishments in Ireland +[2018-02-13T08:21:23.775] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:21:23.823] [INFO] cheese - inserting 1000 documents. first: Valerie (Mark Ronson song) and last: Desdemona Mazza +[2018-02-13T08:21:23.858] [INFO] cheese - inserting 1000 documents. first: Oskars Cibuļskis and last: Category:Racehorses trained in Barbados +[2018-02-13T08:21:23.911] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:21:23.931] [INFO] cheese - inserting 1000 documents. first: Andorran Federation of Ice Sports and last: Route 213 (Missouri) +[2018-02-13T08:21:23.931] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:21:24.006] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:21:24.034] [INFO] cheese - inserting 1000 documents. first: Yam and last: Cocoa programming +[2018-02-13T08:21:24.074] [INFO] cheese - inserting 1000 documents. first: File:Holyoke Houses.jpg and last: Jim Thompson House +[2018-02-13T08:21:24.171] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Drbkmurali and last: Module:Infobox road/meta/mask/subtype1 +[2018-02-13T08:21:24.183] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:21:24.231] [INFO] cheese - batch complete in: 2.733 secs +[2018-02-13T08:21:24.245] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:21:24.290] [INFO] cheese - inserting 1000 documents. first: Category:1801 establishments in Russia and last: Goran Vinčetić +[2018-02-13T08:21:24.432] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:21:24.485] [INFO] cheese - inserting 1000 documents. first: Tasneem Shah and last: Category:1845 establishments in Oceania +[2018-02-13T08:21:24.525] [INFO] cheese - inserting 1000 documents. first: Template:List of drugs J and last: Open de España +[2018-02-13T08:21:24.543] [INFO] cheese - inserting 1000 documents. first: Highway 213 (Missouri) and last: The Legend of Swordsman and Fairy +[2018-02-13T08:21:24.567] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:21:24.614] [INFO] cheese - inserting 1000 documents. first: West Allerton and last: File:Juarez (1939).jpg +[2018-02-13T08:21:24.656] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:21:24.656] [INFO] cheese - batch complete in: 1.217 secs +[2018-02-13T08:21:24.820] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:21:24.889] [INFO] cheese - inserting 1000 documents. first: Cindy Mangsen and last: Promapp +[2018-02-13T08:21:24.939] [INFO] cheese - inserting 1000 documents. first: Siege of Kumamoto Castle and last: Template:PsychologyTopicTOC +[2018-02-13T08:21:25.085] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:21:25.097] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:21:25.099] [INFO] cheese - inserting 1000 documents. first: List of Characters in Banjo-Tooie and last: Peninsula Shield +[2018-02-13T08:21:25.202] [INFO] cheese - inserting 1000 documents. first: House of Poitiers and last: Hiroe Suga +[2018-02-13T08:21:25.220] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:21:25.305] [INFO] cheese - inserting 1000 documents. first: Category:1846 establishments in Oceania and last: Michaël Abiteboul +[2018-02-13T08:21:25.305] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:21:25.403] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:21:25.526] [INFO] cheese - inserting 1000 documents. first: Category:1428 by country and last: 1996 Vuelta a España +[2018-02-13T08:21:25.568] [INFO] cheese - inserting 1000 documents. first: Anscarid dynasty and last: Esther Applunius (Singer) +[2018-02-13T08:21:25.569] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:21:25.634] [INFO] cheese - inserting 1000 documents. first: St Paul's Church, Grangetown and last: In Time R.E.M. +[2018-02-13T08:21:25.645] [INFO] cheese - inserting 1000 documents. first: Jazztel Open de España en Andalucía and last: Gorilliaz +[2018-02-13T08:21:25.656] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:21:25.711] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:21:25.778] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:21:25.838] [INFO] cheese - inserting 1000 documents. first: John Halifax and last: Portal:Human body/Musculoskeletal System/Selected Picture +[2018-02-13T08:21:25.864] [INFO] cheese - inserting 1000 documents. first: Seven Stones Reef and last: File:SOE Station VIIb Today 1.jpg +[2018-02-13T08:21:26.004] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:21:26.061] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:21:26.092] [INFO] cheese - inserting 1000 documents. first: Llanfair United F. C. and last: Kirklees Way +[2018-02-13T08:21:26.193] [INFO] cheese - inserting 1000 documents. first: Richard Francis Pacquette and last: Pierre Nicolas Rolland +[2018-02-13T08:21:26.209] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:21:26.290] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:21:26.458] [INFO] cheese - inserting 1000 documents. first: In Time REM and last: Template:Country data Labuan/doc +[2018-02-13T08:21:26.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tamala.ru and last: Andrey Misyuk +[2018-02-13T08:21:26.570] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:21:26.575] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:21:26.639] [INFO] cheese - inserting 1000 documents. first: Charles Spencer (journalist) and last: State Highway 180 (AR) +[2018-02-13T08:21:26.662] [INFO] cheese - inserting 1000 documents. first: Category:Tajikistani people of Ukrainian descent and last: EISA Title 14: Virginia Graeme Baker Pool and Spa Safety Act +[2018-02-13T08:21:26.723] [INFO] cheese - inserting 1000 documents. first: MJ Gopalan and last: Middlesbrough F. C. season 2000-01 +[2018-02-13T08:21:26.740] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:21:26.804] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:21:26.893] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:21:27.003] [INFO] cheese - inserting 1000 documents. first: Second Arab-Israeli War and last: Scabbers +[2018-02-13T08:21:27.009] [INFO] cheese - inserting 1000 documents. first: Land elevation and last: Bayash +[2018-02-13T08:21:27.138] [INFO] cheese - inserting 1000 documents. first: Dichomeris brachyptila and last: Echinops tenuifolius +[2018-02-13T08:21:27.135] [INFO] cheese - batch complete in: 1.357 secs +[2018-02-13T08:21:27.199] [INFO] cheese - batch complete in: 2.967 secs +[2018-02-13T08:21:27.212] [INFO] cheese - inserting 1000 documents. first: Manchester School of Design and last: Logroño Airport +[2018-02-13T08:21:27.226] [INFO] cheese - inserting 1000 documents. first: Andrei Misyuk and last: Aleksei Belousov +[2018-02-13T08:21:27.204] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:21:27.341] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:21:27.366] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:21:27.442] [INFO] cheese - inserting 1000 documents. first: Applied Arts Academy of Vienna and last: Royal House Order of Hohenzollern +[2018-02-13T08:21:27.463] [INFO] cheese - inserting 1000 documents. first: 2000 Vuelta a Espana and last: St Chad's, Wybunbury +[2018-02-13T08:21:27.491] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:21:27.566] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:21:27.720] [INFO] cheese - inserting 1000 documents. first: Category:Indigenous Mexican artists and last: Wikipedia:Wikipedia is not a webhost +[2018-02-13T08:21:27.825] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:21:27.887] [INFO] cheese - inserting 1000 documents. first: Echinops meyeri and last: Oliver Ian Banks +[2018-02-13T08:21:27.893] [INFO] cheese - inserting 1000 documents. first: Evalyn Bates and last: Kushk-e Pain, Kerman +[2018-02-13T08:21:27.987] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:21:28.037] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:21:28.120] [INFO] cheese - inserting 1000 documents. first: File:Asteroids ico.png and last: State Route 113 (Washington) +[2018-02-13T08:21:28.191] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:21:28.234] [INFO] cheese - inserting 1000 documents. first: National debt by U S presidential terms and last: DVD Play +[2018-02-13T08:21:28.255] [INFO] cheese - inserting 1000 documents. first: Phoenix Inferno and last: Páesan +[2018-02-13T08:21:28.308] [INFO] cheese - inserting 1000 documents. first: Nam Koo Terrace and last: Portal:Weather/Featured content/GA/86 +[2018-02-13T08:21:28.310] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:21:28.361] [INFO] cheese - inserting 1000 documents. first: Category:Filipino expatriate sportspeople and last: File:Magnitude of Externalities.jpg +[2018-02-13T08:21:28.382] [INFO] cheese - batch complete in: 1.247 secs +[2018-02-13T08:21:28.422] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T08:21:28.424] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:21:28.505] [INFO] cheese - inserting 1000 documents. first: Psychiatric Institute of Washington and last: File:Schnetztor in Konstanz.jpg +[2018-02-13T08:21:28.640] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:21:28.662] [INFO] cheese - inserting 1000 documents. first: Allure (film) and last: Category:1659 establishments by continent +[2018-02-13T08:21:28.720] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:21:28.936] [INFO] cheese - inserting 1000 documents. first: File:PenguinsChicagoAquarium.jpg and last: Kaewsan Atibodhi +[2018-02-13T08:21:28.976] [INFO] cheese - inserting 1000 documents. first: Rachkovski and last: Fusiles +[2018-02-13T08:21:29.021] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:21:29.039] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:21:29.098] [INFO] cheese - inserting 1000 documents. first: The Passionate Plumber and last: Wikipedia:Peer review/Russian Business Network/archive1 +[2018-02-13T08:21:29.198] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:21:29.286] [INFO] cheese - inserting 1000 documents. first: Category:1660 establishments by continent and last: Kolkata Knight Riders in 2012 +[2018-02-13T08:21:29.304] [INFO] cheese - inserting 1000 documents. first: Template:Liberal Oppositionist/meta/shortname and last: Hawaiian Sunset +[2018-02-13T08:21:29.350] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:21:29.402] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:21:29.576] [INFO] cheese - inserting 1000 documents. first: Páesan languages and last: 2004 French Open +[2018-02-13T08:21:29.596] [INFO] cheese - inserting 1000 documents. first: Vodafone Japan and last: Category:Banbury +[2018-02-13T08:21:29.620] [INFO] cheese - inserting 1000 documents. first: Long-legged marsh glider and last: Aruküla (Harjumaa) +[2018-02-13T08:21:29.702] [INFO] cheese - inserting 1000 documents. first: Lake Zurich and last: Ptolemy III Euergetes +[2018-02-13T08:21:29.701] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:21:29.725] [INFO] cheese - batch complete in: 1.34 secs +[2018-02-13T08:21:29.738] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:21:29.751] [INFO] cheese - inserting 1000 documents. first: Independence of Quebec and last: Turrbal +[2018-02-13T08:21:29.844] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:21:29.920] [INFO] cheese - batch complete in: 2.721 secs +[2018-02-13T08:21:29.977] [INFO] cheese - inserting 1000 documents. first: Template:France-sport-team-stub and last: Sean Eddy +[2018-02-13T08:21:30.053] [INFO] cheese - inserting 1000 documents. first: FC Sloboda and last: Tell Ruman +[2018-02-13T08:21:30.099] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:21:30.171] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:21:30.481] [INFO] cheese - inserting 1000 documents. first: Wallis Hihifo Airport and last: File:Anthony Jeselnik Caligula.jpg +[2018-02-13T08:21:30.485] [INFO] cheese - inserting 1000 documents. first: M17 gas mask and last: Soyuz 9K +[2018-02-13T08:21:30.603] [INFO] cheese - inserting 1000 documents. first: Latest common ancestor and last: Chris Stockton +[2018-02-13T08:21:30.606] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:21:30.615] [INFO] cheese - inserting 1000 documents. first: Portal:Literature/Quotes/Week 51 and last: List of Maya Sites +[2018-02-13T08:21:30.707] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:21:30.725] [INFO] cheese - batch complete in: 2.3 secs +[2018-02-13T08:21:30.822] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:21:30.844] [INFO] cheese - inserting 1000 documents. first: Sam Massell and last: Bedminster Township, NJ +[2018-02-13T08:21:30.846] [INFO] cheese - inserting 1000 documents. first: Salisbury District, North Carolina and last: Banny de Brum +[2018-02-13T08:21:30.958] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:21:30.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Partha Pratim Sarkar and last: Frances Caroline Wedderburn Webster +[2018-02-13T08:21:31.056] [INFO] cheese - batch complete in: 1.331 secs +[2018-02-13T08:21:31.192] [INFO] cheese - inserting 1000 documents. first: File:Salinas City Oldtown Farmer's Market, 2008.jpg and last: Eupithecia secura +[2018-02-13T08:21:31.234] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:21:31.309] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:21:31.631] [INFO] cheese - inserting 1000 documents. first: Sutemos and last: H:IW +[2018-02-13T08:21:31.640] [INFO] cheese - inserting 1000 documents. first: St. Mary's and St. Michael's Church, Burleydam and last: Category:People from Rockwall County, Texas +[2018-02-13T08:21:31.754] [INFO] cheese - inserting 1000 documents. first: Black maidenhair fern and last: Zero Zero +[2018-02-13T08:21:31.748] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:21:31.764] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:21:31.888] [INFO] cheese - inserting 1000 documents. first: Eric's Hot Cousin (That '70s Show episode) and last: Cavour (Piedmont) +[2018-02-13T08:21:31.944] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:21:32.022] [INFO] cheese - inserting 1000 documents. first: 1991 Men's South American Volleyball Championship and last: Wikipedia:Articles for deletion/Richie Garnet +[2018-02-13T08:21:32.063] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:21:32.108] [INFO] cheese - inserting 1000 documents. first: Paris Métro Line 14 (1937–76) and last: Bourbon (whiskey) +[2018-02-13T08:21:32.133] [INFO] cheese - batch complete in: 1.406 secs +[2018-02-13T08:21:32.158] [INFO] cheese - inserting 1000 documents. first: Beech Bottom, WV and last: Joseph Kimhi +[2018-02-13T08:21:32.265] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:21:32.285] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T08:21:32.488] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/datei.sektenausstieg.net and last: Bañado de Ovanta +[2018-02-13T08:21:32.598] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:21:32.625] [INFO] cheese - inserting 1000 documents. first: Narrative techniques pertaining to plot and last: Pratar med min müsli +[2018-02-13T08:21:32.721] [INFO] cheese - inserting 1000 documents. first: Qiu Le and last: Agent Mahone +[2018-02-13T08:21:32.735] [INFO] cheese - inserting 1000 documents. first: Ernest Burdett and last: Valchedram Municipality +[2018-02-13T08:21:32.737] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:21:32.844] [INFO] cheese - inserting 1000 documents. first: File:Basil-hood-1917.tif and last: Category:Railway stations in Erode district +[2018-02-13T08:21:32.906] [INFO] cheese - inserting 1000 documents. first: Category:American Civil War museums in Delaware and last: Wikipedia:WikiProject Spam/LinkReports/crimea-land.info +[2018-02-13T08:21:32.923] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:21:32.990] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:21:33.160] [INFO] cheese - batch complete in: 1.412 secs +[2018-02-13T08:21:33.174] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:21:33.280] [INFO] cheese - inserting 1000 documents. first: Pistacia lentiscus and last: Graptolithina +[2018-02-13T08:21:33.574] [INFO] cheese - inserting 1000 documents. first: Changi East Airbase and last: Jerry (Totally Spies) +[2018-02-13T08:21:33.581] [INFO] cheese - batch complete in: 3.661 secs +[2018-02-13T08:21:33.639] [INFO] cheese - inserting 1000 documents. first: Zambia/Transportation and last: Wikipedia:Articles for deletion/Brokencyde +[2018-02-13T08:21:33.657] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Australian cinema articles and last: File:F16 Armt Museum.JPG +[2018-02-13T08:21:33.658] [INFO] cheese - inserting 1000 documents. first: Alex Marshall and last: File:Squire Beryl.jpg +[2018-02-13T08:21:33.696] [INFO] cheese - inserting 1000 documents. first: Giren's greed and last: Legislative district of Zamboanga del Norte +[2018-02-13T08:21:33.698] [INFO] cheese - inserting 1000 documents. first: Mahmoud Hassan "Trezeguet" and last: Reformed Christian Church in Croatia +[2018-02-13T08:21:33.720] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:21:33.709] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T08:21:33.805] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:21:33.814] [INFO] cheese - batch complete in: 1.214 secs +[2018-02-13T08:21:33.822] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:21:33.819] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:21:34.156] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Texas State Highway 172 and last: South American spongeplant +[2018-02-13T08:21:34.176] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 1974-75 CWC FR and last: Glycerol-3-phosphate-glucose phosphotransferase +[2018-02-13T08:21:34.273] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:21:34.295] [INFO] cheese - batch complete in: 1.558 secs +[2018-02-13T08:21:34.364] [INFO] cheese - inserting 1000 documents. first: File:William John House VC.jpg and last: Five Spot +[2018-02-13T08:21:34.466] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:21:34.481] [INFO] cheese - inserting 1000 documents. first: Pargu and last: 福爾摩沙三角 +[2018-02-13T08:21:34.529] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Selected picture/2006 and last: Legislative districts of Lanao del Sur +[2018-02-13T08:21:34.545] [INFO] cheese - inserting 1000 documents. first: 1,3,7-trimethyl-1H-purine-2,6(3H,7H)-dione and last: ILTK +[2018-02-13T08:21:34.577] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:21:34.682] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:21:34.720] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:21:34.782] [INFO] cheese - inserting 1000 documents. first: Alex Pires De Souza and last: 2010–2011 Middle East and Maghreb protests +[2018-02-13T08:21:34.806] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/King Deco and last: Lady Sarah-Armstrong Jones +[2018-02-13T08:21:34.836] [INFO] cheese - inserting 1000 documents. first: Laurentius Andreae and last: Pale november moth +[2018-02-13T08:21:34.842] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:21:34.850] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:21:34.871] [INFO] cheese - inserting 1000 documents. first: Robert of Cricklade and last: Molodizhne, Simferopol Raion +[2018-02-13T08:21:34.960] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T08:21:35.056] [INFO] cheese - batch complete in: 1.346 secs +[2018-02-13T08:21:35.306] [INFO] cheese - inserting 1000 documents. first: File:BradburyNortonRobinsonJr.jpg and last: CurtCo +[2018-02-13T08:21:35.492] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Anniversaries/February/February 4 and last: Marcia Moore +[2018-02-13T08:21:35.501] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/djsiqueira.com and last: Botnia banan +[2018-02-13T08:21:35.508] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:21:35.585] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:21:35.605] [INFO] cheese - inserting 1000 documents. first: Category:1938 in New Jersey and last: MARD (campaign) +[2018-02-13T08:21:35.645] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:21:35.667] [INFO] cheese - inserting 1000 documents. first: First stamp of the Russian Empire and last: Acholeplasma phage L2 +[2018-02-13T08:21:35.735] [INFO] cheese - inserting 1000 documents. first: Christian Thomas (ice hockey) and last: Bridge and Tunnel Productions +[2018-02-13T08:21:35.737] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:21:35.842] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:21:35.919] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:21:36.176] [INFO] cheese - inserting 1000 documents. first: Weeb Eubank and last: Buffet froid +[2018-02-13T08:21:36.221] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:21:36.265] [INFO] cheese - inserting 1000 documents. first: Earnings guidance and last: Guy bannister +[2018-02-13T08:21:36.431] [INFO] cheese - batch complete in: 1.375 secs +[2018-02-13T08:21:36.432] [INFO] cheese - inserting 1000 documents. first: Connecticut's 145th assembly district and last: Dijon Museum +[2018-02-13T08:21:36.440] [INFO] cheese - inserting 1000 documents. first: Hippocrates: Diary of a French Doctor and last: Merionethshire by-election (1899) +[2018-02-13T08:21:36.464] [INFO] cheese - inserting 1000 documents. first: Yurigaoka and last: Wikipedia:WikiProject Spam/LinkReports/telangana.aginfoway.com +[2018-02-13T08:21:36.489] [INFO] cheese - inserting 1000 documents. first: Catholic University of Utrecht and last: File:Serena Hotel Attack 2.PNG +[2018-02-13T08:21:36.504] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:21:36.563] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:21:36.589] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:21:36.598] [INFO] cheese - inserting 1000 documents. first: Alice in Wonderland (1933 film) and last: Draconic month +[2018-02-13T08:21:36.612] [INFO] cheese - inserting 1000 documents. first: File:Tiyd.png and last: Template:User citizen Mexico +[2018-02-13T08:21:36.649] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T08:21:36.704] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:21:36.805] [INFO] cheese - batch complete in: 3.224 secs +[2018-02-13T08:21:36.967] [INFO] cheese - inserting 1000 documents. first: 2d Pursuit Group and last: Dive-under +[2018-02-13T08:21:37.013] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Gaming Control Board and last: File:Barbara Acklin.jpg +[2018-02-13T08:21:37.035] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:21:37.047] [INFO] cheese - inserting 1000 documents. first: Category:1110 establishments by continent and last: Dennis Yates Wheatley +[2018-02-13T08:21:37.087] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:21:37.154] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:21:37.199] [INFO] cheese - inserting 1000 documents. first: Kevin Dunion and last: Grayson, Saskatchewan +[2018-02-13T08:21:37.212] [INFO] cheese - inserting 1000 documents. first: Banzai Bill and last: File:Kompeito.jpg +[2018-02-13T08:21:37.268] [INFO] cheese - inserting 1000 documents. first: List of University of Massachusetts Amherst faculty and last: MarSTU +[2018-02-13T08:21:37.271] [INFO] cheese - inserting 1000 documents. first: Regional Development Agency for Greater London and last: Gulf of Chiriquí National Marine Park +[2018-02-13T08:21:37.294] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:21:37.386] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:21:37.387] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:21:37.408] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:21:37.541] [INFO] cheese - inserting 1000 documents. first: Lila Santean and last: Wikipedia:Articles for deletion/Lulwa Khas, India +[2018-02-13T08:21:37.658] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:21:37.838] [INFO] cheese - inserting 1000 documents. first: 2000 Tottori earthquake and last: National Amateur League +[2018-02-13T08:21:38.007] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:21:38.071] [INFO] cheese - inserting 1000 documents. first: Stunner Shades and last: Macroburst (The Incredibles) +[2018-02-13T08:21:38.105] [INFO] cheese - inserting 1000 documents. first: Cartography of the United States and last: Wikipedia:WikiProject Spam/LinkReports/alexpettyfersource.com +[2018-02-13T08:21:38.155] [INFO] cheese - inserting 1000 documents. first: Cîrnățeni and last: Aripuanã River +[2018-02-13T08:21:38.167] [INFO] cheese - inserting 1000 documents. first: Love in the Afternoon (disambiguation) and last: Operation TKO +[2018-02-13T08:21:38.177] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:21:38.295] [INFO] cheese - batch complete in: 1.208 secs +[2018-02-13T08:21:38.372] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T08:21:38.450] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:21:38.582] [INFO] cheese - inserting 1000 documents. first: Auxiliary force and last: Wenedyk language +[2018-02-13T08:21:38.649] [INFO] cheese - inserting 1000 documents. first: Apollo (comics) and last: Cheadle by-election +[2018-02-13T08:21:38.648] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:21:38.660] [INFO] cheese - inserting 1000 documents. first: Dichomeris sevectella and last: File:LloydAustin0609-03.jpg +[2018-02-13T08:21:38.760] [INFO] cheese - inserting 1000 documents. first: Oakland Hills manzanita and last: Treasure galaxy +[2018-02-13T08:21:38.733] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:21:38.756] [INFO] cheese - batch complete in: 1.37 secs +[2018-02-13T08:21:38.806] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:21:38.971] [INFO] cheese - inserting 1000 documents. first: Anomalistic month and last: BCP +[2018-02-13T08:21:38.978] [INFO] cheese - inserting 1000 documents. first: Heritage Square (LACMTA station) and last: Open Education +[2018-02-13T08:21:38.994] [INFO] cheese - inserting 1000 documents. first: 10.5 and last: Pass Out Of Existence +[2018-02-13T08:21:39.020] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:21:39.050] [INFO] cheese - inserting 1000 documents. first: Leonīds Ostrovskis and last: Pontifical Commission of Sacred Archæology +[2018-02-13T08:21:39.072] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:21:39.101] [INFO] cheese - batch complete in: 2.296 secs +[2018-02-13T08:21:39.179] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:21:39.314] [INFO] cheese - inserting 1000 documents. first: 1996-97 Plymouth Argyle F.C. season and last: Wikipedia:WikiProject Spam/LinkReports/biologia.ucv.cl +[2018-02-13T08:21:39.325] [INFO] cheese - inserting 1000 documents. first: Kohat Enclave (Delhi Metro) and last: William Knoedelseder +[2018-02-13T08:21:39.346] [INFO] cheese - inserting 1000 documents. first: Jim Tilley and last: Hoei Corporation +[2018-02-13T08:21:39.433] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:21:39.451] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:21:39.534] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:21:39.660] [INFO] cheese - inserting 1000 documents. first: Category:Operas by Béla Bartók and last: Attleborough/Stoughton Line +[2018-02-13T08:21:39.683] [INFO] cheese - inserting 1000 documents. first: Category:Yvonne Elliman songs and last: The Halo Effect (business book) +[2018-02-13T08:21:39.717] [INFO] cheese - inserting 1000 documents. first: File:Miami Olympic Pool.jpg and last: Formamidiumium +[2018-02-13T08:21:39.722] [INFO] cheese - inserting 1000 documents. first: Al Khartoum SC and last: Lonely Days, Lonely Nights +[2018-02-13T08:21:39.801] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T08:21:39.809] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:21:39.829] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:21:39.890] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:21:39.962] [INFO] cheese - inserting 1000 documents. first: Terrorist attacks in New Jersey and last: Chiautempan (municipality) +[2018-02-13T08:21:40.069] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:21:40.077] [INFO] cheese - inserting 1000 documents. first: Category:Regencies of North Kalimantan and last: TSB Bank (United Kingdom) +[2018-02-13T08:21:40.157] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:21:40.168] [INFO] cheese - inserting 1000 documents. first: Category:History books about the Czech Republic and last: Obatoclax mesylate +[2018-02-13T08:21:40.253] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:21:40.460] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Adventures of Pleakley and last: Wikipedia:Tip of the day/February 1 +[2018-02-13T08:21:40.471] [INFO] cheese - inserting 1000 documents. first: Tachileik and last: File:Livanov-cab-park-2.jpg +[2018-02-13T08:21:40.543] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:21:40.579] [INFO] cheese - inserting 1000 documents. first: Category:New York (state) elections, 1903 and last: Category:Infrastructure completed in 1728 +[2018-02-13T08:21:40.566] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:21:40.615] [INFO] cheese - inserting 1000 documents. first: Category:Active submarines of Russia and last: Nebojsa Radmanovic +[2018-02-13T08:21:40.638] [INFO] cheese - inserting 1000 documents. first: Alpine bird's-foot trefoil and last: Category:2015 disestablishments in Germany +[2018-02-13T08:21:40.644] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T08:21:40.653] [INFO] cheese - inserting 1000 documents. first: Stoughton Branch and last: Charge Conjugation +[2018-02-13T08:21:40.733] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:21:40.737] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:21:40.784] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:21:40.905] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/List of YuYu Hakusho episodes (season 4)/archive1 and last: Ghardabiya Airbase +[2018-02-13T08:21:41.003] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:21:41.088] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/February 2 and last: List of cast members from Baldwin Hills +[2018-02-13T08:21:41.151] [INFO] cheese - inserting 1000 documents. first: Mary Jane Marcasiano and last: H.C.Bold +[2018-02-13T08:21:41.161] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:21:41.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mohammed bin Osama bin Laden and last: Wikipedia:Recent additions 195 +[2018-02-13T08:21:41.264] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:21:41.303] [INFO] cheese - inserting 1000 documents. first: Szczecińskie Przedsiębiorstwo Autobusowe "Klonowica" and last: Marsea canadensis +[2018-02-13T08:21:41.324] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:21:41.384] [INFO] cheese - inserting 1000 documents. first: Robert O. Lowery and last: Patten Report +[2018-02-13T08:21:41.433] [INFO] cheese - inserting 1000 documents. first: Video Electronics Standards Association and last: Stanley Cup +[2018-02-13T08:21:41.445] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:21:41.493] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:21:41.611] [INFO] cheese - inserting 1000 documents. first: Sez O'Reilly to McNab and last: Wikipedia:WikiProject Spam/LinkReports/vapir.com +[2018-02-13T08:21:41.679] [INFO] cheese - batch complete in: 2.578 secs +[2018-02-13T08:21:41.683] [INFO] cheese - inserting 1000 documents. first: Tastebud and last: Template:NiloSaharan-lang-stub +[2018-02-13T08:21:41.769] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:21:41.776] [INFO] cheese - inserting 1000 documents. first: Yelena Golovina and last: Unleashed (tour) +[2018-02-13T08:21:41.819] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:21:41.859] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:21:41.985] [INFO] cheese - inserting 1000 documents. first: Sakuragi Yukiya and last: Find A Grave +[2018-02-13T08:21:42.041] [INFO] cheese - inserting 1000 documents. first: Senecio ciliatus and last: Template:Infobox Eurovision Song Contest National Year/Year +[2018-02-13T08:21:42.098] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:21:42.122] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:21:42.277] [INFO] cheese - inserting 1000 documents. first: File:I-form offset strong green.PNG and last: Hindustani Classical Music +[2018-02-13T08:21:42.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/vapir.com and last: Chloroclystis inductata +[2018-02-13T08:21:42.343] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T08:21:42.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ethics/User:Wjhonson and last: Sustainable economy +[2018-02-13T08:21:42.420] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:21:42.492] [INFO] cheese - inserting 1000 documents. first: Sandhawalias and last: 27th pope +[2018-02-13T08:21:42.523] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:21:42.538] [INFO] cheese - inserting 1000 documents. first: List of members of the Seimas, 2012–2016 and last: Category:1197 establishments by continent +[2018-02-13T08:21:42.553] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:21:42.575] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:21:42.692] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gypsy Dave and last: Wikipedia:Articles for deletion/National "Say 'Hi' to Joe" Day +[2018-02-13T08:21:42.759] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:21:42.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kilaueatours.com and last: Georgian Post +[2018-02-13T08:21:42.863] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Glades County, Florida and last: Wikipedia:WikiProject Spam/LinkReports/sangimignano1300.com +[2018-02-13T08:21:42.882] [INFO] cheese - inserting 1000 documents. first: Ashe baronets and last: Category:Austrian volleyball clubs +[2018-02-13T08:21:42.914] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:21:42.924] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:21:42.942] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:21:43.046] [INFO] cheese - inserting 1000 documents. first: Category:1199 establishments by continent and last: Labour law in Bulgaria +[2018-02-13T08:21:43.090] [INFO] cheese - inserting 1000 documents. first: Algal fuel and last: Wikipedia:WikiProject Spam/LinkReports/selvis.alnet.com.ua +[2018-02-13T08:21:43.105] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:21:43.126] [INFO] cheese - inserting 1000 documents. first: 28th pope and last: Elle india cover models +[2018-02-13T08:21:43.173] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:21:43.207] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:21:43.373] [INFO] cheese - inserting 1000 documents. first: Category:Me First and the Gimme Gimmes album covers and last: Hsien-ming Meng +[2018-02-13T08:21:43.407] [INFO] cheese - inserting 1000 documents. first: File:Across-the-Dark.png and last: Conradi-Hünermann syndrome +[2018-02-13T08:21:43.449] [INFO] cheese - inserting 1000 documents. first: Template:Backlog and last: Highland Park High School +[2018-02-13T08:21:43.450] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:21:43.529] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:21:43.546] [INFO] cheese - inserting 1000 documents. first: 1957 Mongolia earthquake and last: 2007–08 A PFG +[2018-02-13T08:21:43.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Radio Free Satan and last: Barice, Plandište +[2018-02-13T08:21:43.626] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:21:43.634] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:21:43.680] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations in Jhang District and last: Category:Women's sports teams in Iceland +[2018-02-13T08:21:43.799] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:21:43.867] [INFO] cheese - inserting 1000 documents. first: Ofra Haza and last: Ocean thermal energy conversion +[2018-02-13T08:21:43.888] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:21:44.076] [INFO] cheese - inserting 1000 documents. first: Template:Tort footer and last: ISO 14644-3 +[2018-02-13T08:21:44.182] [INFO] cheese - batch complete in: 2.503 secs +[2018-02-13T08:21:44.198] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:21:44.377] [INFO] cheese - inserting 1000 documents. first: Robles Del Rio, California and last: Skate Chucks +[2018-02-13T08:21:44.392] [INFO] cheese - inserting 1000 documents. first: ALP-46A and last: East Kanpur +[2018-02-13T08:21:44.494] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:21:44.510] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:21:44.615] [INFO] cheese - inserting 1000 documents. first: 2008–09 A PFG and last: Rhinolophus affinis +[2018-02-13T08:21:44.742] [INFO] cheese - inserting 1000 documents. first: Category:Women's sport in Iceland and last: "Unbelievable Mysteries Solved" Lost and Found (TV series) +[2018-02-13T08:21:44.828] [INFO] cheese - inserting 1000 documents. first: Egregore and last: Category:Hotels in India +[2018-02-13T08:21:44.853] [INFO] cheese - batch complete in: 1.219 secs +[2018-02-13T08:21:44.859] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:21:44.965] [INFO] cheese - batch complete in: 1.339 secs +[2018-02-13T08:21:44.968] [INFO] cheese - inserting 1000 documents. first: The Big Tease and last: Tragedy of the Siskwit +[2018-02-13T08:21:45.103] [INFO] cheese - batch complete in: 1.304 secs +[2018-02-13T08:21:45.202] [INFO] cheese - inserting 1000 documents. first: Category:1957 in Brazil and last: File:3rd Bass.jpg +[2018-02-13T08:21:45.307] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:21:45.441] [INFO] cheese - inserting 1000 documents. first: Paulus van de Perre and last: Portal:Mining/Selected picture/9 +[2018-02-13T08:21:45.461] [INFO] cheese - inserting 1000 documents. first: Skatechucks and last: .xn--p1ai +[2018-02-13T08:21:45.548] [INFO] cheese - inserting 1000 documents. first: Category:Chōfu, Tokyo and last: Coded mask +[2018-02-13T08:21:45.576] [INFO] cheese - inserting 1000 documents. first: Template:1924-winter-Olympic-stub and last: Gustave Tridon +[2018-02-13T08:21:45.572] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:21:45.635] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:21:45.663] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:21:45.724] [INFO] cheese - batch complete in: 1.214 secs +[2018-02-13T08:21:45.857] [INFO] cheese - inserting 1000 documents. first: Category:International Criminal Tribunal for Rwanda prosecutors and last: Debre Selam +[2018-02-13T08:21:45.927] [INFO] cheese - inserting 1000 documents. first: KSLI and last: Virginia State Highway 221 +[2018-02-13T08:21:45.969] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:21:46.027] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:21:46.102] [INFO] cheese - inserting 1000 documents. first: Wartislaw II of Szczecin and last: Category:Musical groups from Vranje +[2018-02-13T08:21:46.139] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kathy Coleman and last: Karlslunds IF +[2018-02-13T08:21:46.144] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:21:46.308] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Matveev and last: Wikipedia:WikiProject Greater Boston Public Transit/Assessment +[2018-02-13T08:21:46.339] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:21:46.417] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:21:46.426] [INFO] cheese - inserting 1000 documents. first: File:Innis House Interior in Fredericksburg and Spotsylvania National Military Park.jpg and last: Tomás Balduino +[2018-02-13T08:21:46.499] [INFO] cheese - inserting 1000 documents. first: Charlotte Helene and last: Christian Vision +[2018-02-13T08:21:46.501] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:21:46.651] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/contrapontoeditora.com.br and last: Augustana Divinity School (Neuendettelsau) +[2018-02-13T08:21:46.659] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:21:46.677] [INFO] cheese - inserting 1000 documents. first: Mount Dale (Western Australia) and last: Ice House at Captiva Rocks +[2018-02-13T08:21:46.747] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:21:46.765] [INFO] cheese - inserting 1000 documents. first: Category:Colorado elections, 1964 and last: Category:1961–62 Missouri Valley Conference men's basketball season +[2018-02-13T08:21:46.764] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:21:46.835] [INFO] cheese - inserting 1000 documents. first: Brain aneurysm and last: Vanguard-class submarine +[2018-02-13T08:21:46.856] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:21:46.970] [INFO] cheese - inserting 1000 documents. first: Aspidoglossa korschefskyi and last: Category:Cartoonists by city +[2018-02-13T08:21:46.991] [INFO] cheese - batch complete in: 2.808 secs +[2018-02-13T08:21:47.085] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:21:47.180] [INFO] cheese - inserting 1000 documents. first: Comedie lyrique and last: List of country subdivisions by GDP (nominal) +[2018-02-13T08:21:47.211] [INFO] cheese - inserting 1000 documents. first: Hindolvestone railway station (England) and last: I-35 in Minnesota +[2018-02-13T08:21:47.219] [INFO] cheese - inserting 1000 documents. first: Cosmas of Maiuma and last: Chateau de Lavaux Sainte Anne +[2018-02-13T08:21:47.258] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:21:47.304] [INFO] cheese - inserting 1000 documents. first: Robert Frost Farm (Ripton, Vermont) and last: Gazon Maudit +[2018-02-13T08:21:47.322] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T08:21:47.320] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:21:47.412] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:21:47.420] [INFO] cheese - inserting 1000 documents. first: George Chaldakov and last: Ethnic groups in Thailand +[2018-02-13T08:21:47.436] [INFO] cheese - inserting 1000 documents. first: Rzhevskii District and last: Universal point set +[2018-02-13T08:21:47.487] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:21:47.494] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:21:47.673] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Northern Ireland by county and last: DS2 +[2018-02-13T08:21:47.717] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:21:47.857] [INFO] cheese - inserting 1000 documents. first: I-94 in Minnesota and last: Skin itch +[2018-02-13T08:21:47.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/monclerjacketsnews.com and last: Men's Soft Styles at WAKO World Championships 2007 Coimbra +[2018-02-13T08:21:47.935] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:21:47.979] [INFO] cheese - inserting 1000 documents. first: Esmond, ND and last: Sundacarpus amarus +[2018-02-13T08:21:47.997] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2013 March 17 and last: Eupithecia minorata +[2018-02-13T08:21:48.003] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:21:48.092] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:21:48.107] [INFO] cheese - inserting 1000 documents. first: Template:Fb team ground Brussels and last: Template:Syracuse Chiefs roster +[2018-02-13T08:21:48.130] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:21:48.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/MarkStreet and last: Template:1954 Philippine National Basketball Team +[2018-02-13T08:21:48.234] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:21:48.284] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:21:48.429] [INFO] cheese - inserting 1000 documents. first: Hell (novel) and last: Category:1996–97 in French women's football +[2018-02-13T08:21:48.494] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:21:48.553] [INFO] cheese - inserting 1000 documents. first: File:Jandek - One Foot in the North.jpg and last: Hugh Willoughby (sea captain) +[2018-02-13T08:21:48.575] [INFO] cheese - inserting 1000 documents. first: Eupithecia insignificata and last: Composers' Publishing Company +[2018-02-13T08:21:48.663] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:21:48.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Suisei (mythology) and last: Corvus jamaicensis +[2018-02-13T08:21:48.668] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:21:48.722] [INFO] cheese - inserting 1000 documents. first: Category:Capnophiles and last: Category:Airports in Aleutians East Borough, Alaska +[2018-02-13T08:21:48.741] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:21:48.822] [INFO] cheese - inserting 1000 documents. first: Quessoy and last: Nicki (singer) +[2018-02-13T08:21:48.841] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:21:48.891] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:21:49.014] [INFO] cheese - inserting 1000 documents. first: Winder Henry and last: Università per Stranieri di Perugia +[2018-02-13T08:21:49.092] [INFO] cheese - inserting 1000 documents. first: The Clash of Ignorance and last: List of bisexuality-related organizations and conferences +[2018-02-13T08:21:49.099] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:21:49.153] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T08:21:49.200] [INFO] cheese - inserting 1000 documents. first: Template:Gretna 2008 F.C. and last: Wikipedia:WikiProject Spam/LinkReports/quora.com +[2018-02-13T08:21:49.236] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julie Frith and last: Phalaenopsis lueddemanniana var. ochrata +[2018-02-13T08:21:49.351] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:21:49.357] [INFO] cheese - inserting 1000 documents. first: Isaac D'Israeli and last: Collier County, Florida +[2018-02-13T08:21:49.371] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:21:49.502] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Iraq and last: Keith Courage in Alpha Zones +[2018-02-13T08:21:49.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Psycho Dad and last: Obermorschwihr +[2018-02-13T08:21:49.587] [INFO] cheese - batch complete in: 2.596 secs +[2018-02-13T08:21:49.617] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:21:49.638] [INFO] cheese - inserting 1000 documents. first: Kenny Daglish Soccer Manager and last: Supplementary ∠s +[2018-02-13T08:21:49.718] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:21:49.828] [INFO] cheese - inserting 1000 documents. first: Walkaway Wind Farm and last: Anthony James Clarke, Baron Clarke of Hampstead +[2018-02-13T08:21:49.836] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:21:49.897] [INFO] cheese - inserting 1000 documents. first: Strandgade and last: Nossa Senhora Medianeira +[2018-02-13T08:21:49.917] [INFO] cheese - inserting 1000 documents. first: Peter village enclosure and last: Portal:Carboniferous/DYK/2 +[2018-02-13T08:21:49.959] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:21:49.978] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:21:49.956] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:21:50.155] [INFO] cheese - inserting 1000 documents. first: Rugby union in Lebanon and last: J. W. Sandstrom +[2018-02-13T08:21:50.284] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:21:50.382] [INFO] cheese - inserting 1000 documents. first: File:Tamiya TT-01D Chassis.jpg and last: Old Bradwell United F C +[2018-02-13T08:21:50.445] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:21:50.466] [INFO] cheese - inserting 1000 documents. first: Italy at the 2012 Summer Olympics and last: 2007 European Athletics Indoor Championships – Men's heptathlon +[2018-02-13T08:21:50.531] [INFO] cheese - inserting 1000 documents. first: Category:1820s in Mississippi and last: Jordan Canning +[2018-02-13T08:21:50.597] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:21:50.598] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:21:50.603] [INFO] cheese - inserting 1000 documents. first: Saint Mary's Battery (Marsalforn) and last: Australia at the 2015 Pacific Games +[2018-02-13T08:21:50.685] [INFO] cheese - inserting 1000 documents. first: Anthony James Clarke, Baron Clarke and last: Portal:Biography/Selected anniversaries/October 10 +[2018-02-13T08:21:50.689] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:21:50.787] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:21:50.844] [INFO] cheese - inserting 1000 documents. first: Template:Finnish mobile phone companies and last: Seth Macfarlane +[2018-02-13T08:21:50.857] [INFO] cheese - inserting 1000 documents. first: Old Bradwell United F. C. and last: P.L. Gairola +[2018-02-13T08:21:50.861] [INFO] cheese - inserting 1000 documents. first: Admiral Sir Hugh Tweedie and last: Perry Rosemond +[2018-02-13T08:21:50.893] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:21:50.966] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:21:50.978] [INFO] cheese - batch complete in: 1.361 secs +[2018-02-13T08:21:51.107] [INFO] cheese - inserting 1000 documents. first: Miami-Fort Lauderdale-West Palm Beach, FL Metropolitan Statistical Area and last: News Vendor Model +[2018-02-13T08:21:51.150] [INFO] cheese - inserting 1000 documents. first: Pakistani fashion and last: File:Phyllis McGinley.jpg +[2018-02-13T08:21:51.172] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:21:51.213] [INFO] cheese - inserting 1000 documents. first: Jiří Hrneček and last: Fact-checking websites +[2018-02-13T08:21:51.245] [INFO] cheese - inserting 1000 documents. first: Saint-Juvat and last: Wikipedia:WikiProject Spam/LinkReports/gkmap.moy.su +[2018-02-13T08:21:51.250] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:21:51.282] [INFO] cheese - inserting 1000 documents. first: John Beckett QC and last: Modern Jazz Classics +[2018-02-13T08:21:51.320] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:21:51.333] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T08:21:51.405] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:21:51.557] [INFO] cheese - inserting 1000 documents. first: Life Left to Go and last: Dovedale Baptist Church +[2018-02-13T08:21:51.620] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:21:51.650] [INFO] cheese - inserting 1000 documents. first: Category:Football in Sikkim and last: File:Yansheui Township.png +[2018-02-13T08:21:51.680] [INFO] cheese - inserting 1000 documents. first: Seth Mcfarlane and last: UP Diliman Department of Computer Science +[2018-02-13T08:21:51.698] [INFO] cheese - inserting 1000 documents. first: The Beach (novel) and last: Ferdinand V of Spain +[2018-02-13T08:21:51.723] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T08:21:51.837] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:21:51.875] [INFO] cheese - inserting 1000 documents. first: Plymouth Argyle FC statistics and last: Wikipedia:Articles for deletion/TimeLETSystems +[2018-02-13T08:21:51.877] [INFO] cheese - inserting 1000 documents. first: Category:Baseball in Colombia and last: Ashley Green (footballer) +[2018-02-13T08:21:51.908] [INFO] cheese - batch complete in: 2.32 secs +[2018-02-13T08:21:51.946] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:21:51.989] [INFO] cheese - inserting 1000 documents. first: Category:Valleys of Northumberland and last: Untomia horista +[2018-02-13T08:21:52.033] [INFO] cheese - inserting 1000 documents. first: Template:NCSLC and last: SR 310 (VA) +[2018-02-13T08:21:52.065] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:21:52.121] [INFO] cheese - inserting 1000 documents. first: 2013 V-Varen Nagasaki season and last: Valentin Bianki +[2018-02-13T08:21:52.129] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:21:52.180] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:21:52.212] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:21:52.249] [INFO] cheese - inserting 1000 documents. first: List of Rhode Island counties and last: Loire Mk +[2018-02-13T08:21:52.355] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:21:52.554] [INFO] cheese - inserting 1000 documents. first: No Way Out (Porridge) and last: Category:WikiProject Malawi +[2018-02-13T08:21:52.637] [INFO] cheese - inserting 1000 documents. first: Vereinigung der gegenseitigen Bauernhilfe and last: St. Rita of Cascia +[2018-02-13T08:21:52.637] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:21:52.641] [INFO] cheese - inserting 1000 documents. first: Blazer (surname) and last: Category:Infrastructure in Tanzania +[2018-02-13T08:21:52.650] [INFO] cheese - inserting 1000 documents. first: Rainbow Flag and last: Doctor Light (comics) +[2018-02-13T08:21:52.675] [INFO] cheese - inserting 1000 documents. first: Kıznaz Türkeli and last: Wash It All Away +[2018-02-13T08:21:52.693] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:21:52.707] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T08:21:52.788] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:21:52.808] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:21:52.842] [INFO] cheese - inserting 1000 documents. first: VA-310 and last: Afonso, Prince of Beira +[2018-02-13T08:21:52.959] [INFO] cheese - inserting 1000 documents. first: Australian Rules Football in Scotland and last: Hassan Parhat +[2018-02-13T08:21:53.061] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:21:53.164] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:21:53.353] [INFO] cheese - inserting 1000 documents. first: Algebraic Reconstruction Technique and last: Ricardo Mejia Hernandez +[2018-02-13T08:21:53.389] [INFO] cheese - inserting 1000 documents. first: Charles Winters (journalist) and last: Trevor Findlay +[2018-02-13T08:21:53.443] [INFO] cheese - inserting 1000 documents. first: Sehnsucht (1921 film) and last: Category:Actresses from Fujian +[2018-02-13T08:21:53.453] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:21:53.521] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:21:53.541] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:21:53.580] [INFO] cheese - inserting 1000 documents. first: Walter Bingham (journalist) and last: Collinsium +[2018-02-13T08:21:53.709] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:21:53.820] [INFO] cheese - inserting 1000 documents. first: Gaming keyboard and last: Platanthera chlorantha var. grandiflora +[2018-02-13T08:21:53.838] [INFO] cheese - inserting 1000 documents. first: Category:Titles of Mary and last: Wikipedia:Articles for deletion/Bob program +[2018-02-13T08:21:53.858] [INFO] cheese - inserting 1000 documents. first: Electromagnetic modeling and last: Textil Mandiyú +[2018-02-13T08:21:53.888] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:21:53.984] [INFO] cheese - batch complete in: 1.195 secs +[2018-02-13T08:21:53.994] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:21:54.008] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Zambia articles and last: Megumi Oji +[2018-02-13T08:21:54.160] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:21:54.217] [INFO] cheese - inserting 1000 documents. first: Folk metal and last: Biot–Savart law +[2018-02-13T08:21:54.275] [INFO] cheese - inserting 1000 documents. first: Collinsium ciliosum and last: Dwaram Mallikarjun Reddy +[2018-02-13T08:21:54.367] [INFO] cheese - inserting 1000 documents. first: Needlecraft and last: File:TXE1 Common Control 1.JPG +[2018-02-13T08:21:54.403] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:21:54.481] [INFO] cheese - inserting 1000 documents. first: Category:Huracán Valencia CF managers and last: File:Six Finger Satellite - The Pigeon Is the Most Popular Bird.jpg +[2018-02-13T08:21:54.483] [INFO] cheese - batch complete in: 2.575 secs +[2018-02-13T08:21:54.569] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:21:54.692] [INFO] cheese - batch complete in: 1.151 secs +[2018-02-13T08:21:54.922] [INFO] cheese - inserting 1000 documents. first: PGP disk and last: Category:Capdown albums +[2018-02-13T08:21:55.057] [INFO] cheese - inserting 1000 documents. first: Ōji Megumi and last: R P Keigwin +[2018-02-13T08:21:55.056] [INFO] cheese - inserting 1000 documents. first: Boydville and last: Brzonkala v. Polytechnic Institute and State University +[2018-02-13T08:21:55.114] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:21:55.196] [INFO] cheese - batch complete in: 1.308 secs +[2018-02-13T08:21:55.205] [INFO] cheese - inserting 1000 documents. first: Category:Oregon Country and last: Letchery +[2018-02-13T08:21:55.323] [INFO] cheese - inserting 1000 documents. first: Meyer Dwass and last: Sotiris Delis +[2018-02-13T08:21:55.352] [INFO] cheese - inserting 1000 documents. first: 2012-13 Central African Republic conflict and last: Kota Maidanam +[2018-02-13T08:21:55.357] [INFO] cheese - batch complete in: 1.197 secs +[2018-02-13T08:21:55.448] [INFO] cheese - batch complete in: 1.464 secs +[2018-02-13T08:21:55.624] [INFO] cheese - batch complete in: 1.221 secs +[2018-02-13T08:21:55.646] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:21:55.734] [INFO] cheese - inserting 1000 documents. first: National Soccer League 1998–99 and last: Blackbrow bleak +[2018-02-13T08:21:55.805] [INFO] cheese - inserting 1000 documents. first: Vehicle registration plates of European Union and last: Haversin Castle +[2018-02-13T08:21:55.809] [INFO] cheese - batch complete in: 1.24 secs +[2018-02-13T08:21:55.961] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:21:56.066] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian Preston North End F.C. fans and last: Beyond Boundaries +[2018-02-13T08:21:56.101] [INFO] cheese - inserting 1000 documents. first: R P Patnaik and last: Category:Mid-importance Lesotho articles +[2018-02-13T08:21:56.215] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:21:56.256] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:21:56.371] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/July 15, 2015 and last: Wikipedia:WikiProject Spam/Local/homewetbar.com +[2018-02-13T08:21:56.395] [INFO] cheese - inserting 1000 documents. first: American College of Greece (Deere College) and last: Branched-chain oxo acid dehydrogenase kinase (phosphorylating) +[2018-02-13T08:21:56.503] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:21:56.578] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:21:56.658] [INFO] cheese - inserting 1000 documents. first: Louis Silas and last: Spencer Joshua Alwyne Compton, 2nd Marquess of Northampton +[2018-02-13T08:21:56.719] [INFO] cheese - inserting 1000 documents. first: File:Page Two – Sings a Collection of Her Most Famous Songs cover.jpg and last: Category:Categories by locality in Japan +[2018-02-13T08:21:56.820] [INFO] cheese - batch complete in: 1.372 secs +[2018-02-13T08:21:56.830] [INFO] cheese - inserting 1000 documents. first: Havré Castle and last: ByNet +[2018-02-13T08:21:56.831] [INFO] cheese - batch complete in: 1.022 secs +[2018-02-13T08:21:56.903] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:21:56.960] [INFO] cheese - inserting 1000 documents. first: FL-13 and last: Disney Channel Original Movies (DCOMs) +[2018-02-13T08:21:57.073] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:21:57.097] [INFO] cheese - inserting 1000 documents. first: YFT and last: Glyptoscorpius +[2018-02-13T08:21:57.119] [INFO] cheese - inserting 1000 documents. first: List of FIFA Club World Championship and Club World Cup finals and last: Template:1995 Big Ten Conference baseball standings +[2018-02-13T08:21:57.129] [INFO] cheese - inserting 1000 documents. first: Template:User in US-MN and last: Category:1944 establishments in the French colonial empire +[2018-02-13T08:21:57.172] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:21:57.214] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:21:57.309] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:21:57.492] [INFO] cheese - inserting 1000 documents. first: Taylor County, Florida and last: SOM +[2018-02-13T08:21:57.591] [INFO] cheese - inserting 1000 documents. first: Book:Platonism, Aristotelianism, and Thomism and last: Category:Islands of Ceredigion +[2018-02-13T08:21:57.622] [INFO] cheese - inserting 1000 documents. first: Amy Gibson and last: File:The Mercenaries 3D.jpg +[2018-02-13T08:21:57.659] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T08:21:57.712] [INFO] cheese - inserting 1000 documents. first: Sharon Freeman and last: King's Domain, Melbourne +[2018-02-13T08:21:57.745] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Zakofal and last: Disco Infiltrator +[2018-02-13T08:21:57.763] [INFO] cheese - batch complete in: 3.28 secs +[2018-02-13T08:21:57.783] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:21:57.791] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:21:57.943] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T08:21:57.952] [INFO] cheese - inserting 1000 documents. first: Portal:Feminism/box-footer and last: Coventry and North Warwickshire (European Parliament constituency) +[2018-02-13T08:21:58.008] [INFO] cheese - inserting 1000 documents. first: File:Visions 1993.jpg and last: Alain de Greef +[2018-02-13T08:21:58.078] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:21:58.090] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:21:58.225] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian practitioners of Brazilian jiu-jitsu and last: Molyneux Nepean, 2nd Baronet +[2018-02-13T08:21:58.342] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:21:58.635] [INFO] cheese - inserting 1000 documents. first: Jordanita budensis and last: Donald Pellmann +[2018-02-13T08:21:58.699] [INFO] cheese - inserting 1000 documents. first: Andre Beauneveu and last: EMD GP40-2L(W) +[2018-02-13T08:21:58.711] [INFO] cheese - inserting 1000 documents. first: Erisort and last: Sergey Lapin (police officer) +[2018-02-13T08:21:58.839] [INFO] cheese - batch complete in: 1.056 secs +[2018-02-13T08:21:58.864] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:21:58.937] [INFO] cheese - batch complete in: 2.034 secs +[2018-02-13T08:21:58.973] [INFO] cheese - inserting 1000 documents. first: Lieutenant Governor of Grenada and last: Route 74 (New York) +[2018-02-13T08:21:59.104] [INFO] cheese - inserting 1000 documents. first: Father of the Constitution and last: Category:Suzuki engines +[2018-02-13T08:21:59.116] [INFO] cheese - inserting 1000 documents. first: Template:Paris Metro/Station/doc and last: ᵟ +[2018-02-13T08:21:59.161] [INFO] cheese - inserting 1000 documents. first: Years in Malta and last: Portal:Paleontology/On this day/February 12 +[2018-02-13T08:21:59.178] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:21:59.289] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:21:59.300] [INFO] cheese - batch complete in: 1.357 secs +[2018-02-13T08:21:59.309] [INFO] cheese - batch complete in: 1.219 secs +[2018-02-13T08:21:59.537] [INFO] cheese - inserting 1000 documents. first: Prince Bovoradej and last: Albert Elijah Dunning +[2018-02-13T08:21:59.575] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:21:59.637] [INFO] cheese - inserting 1000 documents. first: Daily Record and last: O26 +[2018-02-13T08:21:59.672] [INFO] cheese - inserting 1000 documents. first: Category:1995–96 Midwestern Collegiate Conference men's basketball season and last: MTR KTT (Kowloon Through Train) +[2018-02-13T08:21:59.704] [INFO] cheese - inserting 1000 documents. first: Kokmuiža Manor and last: Inline four engine +[2018-02-13T08:21:59.778] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:21:59.800] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T08:21:59.863] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:21:59.950] [INFO] cheese - inserting 1000 documents. first: Portal:Paleontology/On this day/February 13 and last: List of years in Denmark +[2018-02-13T08:21:59.961] [INFO] cheese - inserting 1000 documents. first: Valea Orății River (Teleajen) and last: Wikipedia:Articles for deletion/Richard Muhammad +[2018-02-13T08:22:00.059] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:22:00.087] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:22:00.149] [INFO] cheese - inserting 1000 documents. first: Self-organizing map and last: Elliptical orbit +[2018-02-13T08:22:00.268] [INFO] cheese - inserting 1000 documents. first: Joe benitez and last: Lympstone +[2018-02-13T08:22:00.358] [INFO] cheese - inserting 1000 documents. first: Rayleigh-Bénard convection and last: Requiem: The Grim Harvest +[2018-02-13T08:22:00.389] [INFO] cheese - batch complete in: 2.626 secs +[2018-02-13T08:22:00.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2013 March 25 and last: Ngulu language (Mozambique) +[2018-02-13T08:22:00.428] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:22:00.479] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:22:00.568] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:22:00.649] [INFO] cheese - inserting 1000 documents. first: Kamon Tatsuo and last: Lincoln Highway in California +[2018-02-13T08:22:00.737] [INFO] cheese - inserting 1000 documents. first: Kings Never Die and last: Religions of Brazil +[2018-02-13T08:22:00.766] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:22:00.819] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:22:00.899] [INFO] cheese - inserting 1000 documents. first: Portal:Mammals/Selected pictures/1 and last: File:Terry Duckworth.jpg +[2018-02-13T08:22:00.973] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:22:01.110] [INFO] cheese - inserting 1000 documents. first: House at 3609 Via de la Reina and last: Skull Creek +[2018-02-13T08:22:01.139] [INFO] cheese - inserting 1000 documents. first: St. Louis Saints and last: File:Humphry'slogoStokePark.jpg +[2018-02-13T08:22:01.193] [INFO] cheese - inserting 1000 documents. first: Joseph T. Goodman and last: Category:Research and development in the United Kingdom +[2018-02-13T08:22:01.244] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:22:01.250] [INFO] cheese - batch complete in: 1.45 secs +[2018-02-13T08:22:01.320] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:22:01.473] [INFO] cheese - inserting 1000 documents. first: List of Loveline episodes (2003) and last: Category:Torpedoes of Russia +[2018-02-13T08:22:01.510] [INFO] cheese - inserting 1000 documents. first: Mudanjiang and last: National Special Security Events +[2018-02-13T08:22:01.561] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:22:01.634] [INFO] cheese - inserting 1000 documents. first: File:Saio genji.jpg and last: Wikipedia:Version 1.0 Editorial Team/Biography (arts and entertainment) articles by quality/133 +[2018-02-13T08:22:01.696] [INFO] cheese - batch complete in: 1.268 secs +[2018-02-13T08:22:01.721] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T08:22:01.903] [INFO] cheese - inserting 1000 documents. first: Black Hills Ambush and last: Wikipedia:WikiProject Television/TUGS task force/Article alerts/Archive +[2018-02-13T08:22:01.917] [INFO] cheese - inserting 1000 documents. first: Dan McDonnell and last: Nefteiuganski Raion +[2018-02-13T08:22:01.989] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:22:02.068] [INFO] cheese - inserting 1000 documents. first: Delbert Tibbs and last: Category:Sports venues in Livingston County, New York +[2018-02-13T08:22:02.103] [INFO] cheese - batch complete in: 1.284 secs +[2018-02-13T08:22:02.202] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:22:02.449] [INFO] cheese - inserting 1000 documents. first: De Branges space and last: Heung-Gil Yun +[2018-02-13T08:22:02.571] [INFO] cheese - inserting 1000 documents. first: Cat poo and last: Reid and Sigrist RS 1 +[2018-02-13T08:22:02.593] [INFO] cheese - batch complete in: 1.343 secs +[2018-02-13T08:22:02.661] [INFO] cheese - inserting 1000 documents. first: Jon McLaughlan and last: Crixás River +[2018-02-13T08:22:02.659] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:22:02.821] [INFO] cheese - inserting 1000 documents. first: Bolton council election 1980 and last: Gujarati (Unicode block) +[2018-02-13T08:22:02.854] [INFO] cheese - inserting 1000 documents. first: File:TlnHD.png and last: Wikipedia:Articles for deletion/Credit Union Deposit Insurance Corporation (Prince Edward Island) +[2018-02-13T08:22:02.874] [INFO] cheese - batch complete in: 1.312 secs +[2018-02-13T08:22:02.920] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:22:03.024] [INFO] cheese - inserting 1000 documents. first: Alcyone and last: Furies +[2018-02-13T08:22:03.035] [INFO] cheese - inserting 1000 documents. first: Lisa's Sax and last: São Tomé Province +[2018-02-13T08:22:03.074] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:22:03.214] [INFO] cheese - batch complete in: 1.518 secs +[2018-02-13T08:22:03.304] [INFO] cheese - inserting 1000 documents. first: Battle of Camulodunum and last: S D Somasundaram +[2018-02-13T08:22:03.355] [INFO] cheese - batch complete in: 2.966 secs +[2018-02-13T08:22:03.476] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:22:03.518] [INFO] cheese - inserting 1000 documents. first: Heung-gil Yun and last: Burke Baker Planetarium +[2018-02-13T08:22:03.605] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:22:03.622] [INFO] cheese - inserting 1000 documents. first: North Carolina gubernatorial election, 1992 and last: Karri Narayana Rao +[2018-02-13T08:22:03.657] [INFO] cheese - inserting 1000 documents. first: Category:Aeroprogress aircraft and last: Category:1970s establishments in Dominica +[2018-02-13T08:22:03.735] [INFO] cheese - inserting 1000 documents. first: Masdevallia swertiifolia and last: Wikipedia:WikiProject Trains/ICC valuations/Oshkosh Transportation Company +[2018-02-13T08:22:03.756] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:22:03.804] [INFO] cheese - batch complete in: 1.602 secs +[2018-02-13T08:22:03.867] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:22:04.167] [INFO] cheese - inserting 1000 documents. first: John Halligan and last: Erigeron cervinus +[2018-02-13T08:22:04.188] [INFO] cheese - inserting 1000 documents. first: Elahieh and last: Datin +[2018-02-13T08:22:04.223] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Gard and last: Category:Geography of Flintshire +[2018-02-13T08:22:04.228] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:22:04.319] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:22:04.308] [INFO] cheese - batch complete in: 1.094 secs +[2018-02-13T08:22:04.378] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Birthdays/December 19 and last: Agdistis nigra +[2018-02-13T08:22:04.386] [INFO] cheese - inserting 1000 documents. first: Florence Roberts and last: Category:Wikipedians interested in Ornithology +[2018-02-13T08:22:04.504] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:22:04.521] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:22:04.620] [INFO] cheese - inserting 1000 documents. first: File:UWCLOGO.png and last: CBS Cincinnati +[2018-02-13T08:22:04.689] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:22:04.894] [INFO] cheese - inserting 1000 documents. first: The Cleveland YMCA School of Technology and last: Category:1328 establishments by country +[2018-02-13T08:22:04.931] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:22:04.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vanessa Hudgens Second Studio Album and last: Sydney George Smith +[2018-02-13T08:22:05.090] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:22:05.097] [INFO] cheese - inserting 1000 documents. first: Tim & Sid and last: Category:577 disestablishments in Asia +[2018-02-13T08:22:05.110] [INFO] cheese - inserting 1000 documents. first: Friend of Bill W. and last: Wikipedia:Articles for deletion/Log/2005 June 11 +[2018-02-13T08:22:05.172] [INFO] cheese - inserting 1000 documents. first: Alazopeptin and last: Category:Wikipedians by alma mater: West Virginia +[2018-02-13T08:22:05.255] [INFO] cheese - batch complete in: 2.181 secs +[2018-02-13T08:22:05.342] [INFO] cheese - inserting 1000 documents. first: Mantou's riflebird and last: Río Nigua +[2018-02-13T08:22:05.346] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:22:05.362] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:22:05.445] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:22:05.534] [INFO] cheese - inserting 1000 documents. first: The New Swiss Family Robinson and last: Pahino +[2018-02-13T08:22:05.558] [INFO] cheese - inserting 1000 documents. first: Portal:Mining/Did you know/17 and last: Category:Cliffs of Powys +[2018-02-13T08:22:05.569] [INFO] cheese - inserting 1000 documents. first: Hipponax and last: Dom Pedro II +[2018-02-13T08:22:05.606] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T08:22:05.630] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:22:05.685] [INFO] cheese - inserting 1000 documents. first: Qatar national handball team and last: Powers Music School +[2018-02-13T08:22:05.735] [INFO] cheese - batch complete in: 2.38 secs +[2018-02-13T08:22:05.764] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:22:05.993] [INFO] cheese - inserting 1000 documents. first: Category:577 disestablishments by continent and last: Kooletah +[2018-02-13T08:22:06.017] [INFO] cheese - inserting 1000 documents. first: File:Smileage - Tabidachi no Haru ga Kita (Regular Edition, HKCN-50587) cover.jpg and last: Eupithecia pauliani +[2018-02-13T08:22:06.098] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:22:06.103] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:22:06.106] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians by alma mater: New Mexico and last: Wikipedia:Articles for deletion/Jayeeta Ghosh +[2018-02-13T08:22:06.138] [INFO] cheese - inserting 1000 documents. first: Beatrix Cenci and last: Hod Stuart +[2018-02-13T08:22:06.184] [INFO] cheese - inserting 1000 documents. first: Nigua River (Arroyo, Puerto Rico) and last: Wunnummin Lake +[2018-02-13T08:22:06.236] [INFO] cheese - inserting 1000 documents. first: Glounthaune railway station and last: Performance Application Programming Interface +[2018-02-13T08:22:06.264] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:22:06.324] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:22:06.342] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:22:06.417] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:22:06.463] [INFO] cheese - inserting 1000 documents. first: Bromfenac and last: Erigeron lassenianus +[2018-02-13T08:22:06.566] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:22:06.731] [INFO] cheese - inserting 1000 documents. first: Chesnut and last: ቹ +[2018-02-13T08:22:06.749] [INFO] cheese - inserting 1000 documents. first: File:The Three Friends and Jerry.jpeg and last: Wikipedia:Articles for deletion/Amin Khoury +[2018-02-13T08:22:06.770] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:22:06.817] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:22:06.931] [INFO] cheese - inserting 1000 documents. first: Noel White (rugby league) and last: Wikipedia:Articles for deletion/Jack Cuozzo +[2018-02-13T08:22:07.062] [INFO] cheese - inserting 1000 documents. first: Kentucky State Highway 1 and last: Churchills +[2018-02-13T08:22:07.097] [INFO] cheese - inserting 1000 documents. first: José Ernesto Ochoa and last: FusionReactor +[2018-02-13T08:22:07.164] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:22:07.246] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:22:07.278] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:22:07.311] [INFO] cheese - inserting 1000 documents. first: Cases (wine) and last: Fort Ransom State Park +[2018-02-13T08:22:07.430] [INFO] cheese - inserting 1000 documents. first: Royal Hungarian Opera House and last: David Buckner +[2018-02-13T08:22:07.474] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:22:07.476] [INFO] cheese - inserting 1000 documents. first: ቺ and last: Music Concierge +[2018-02-13T08:22:07.572] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:22:07.601] [INFO] cheese - inserting 1000 documents. first: Leo Davies and last: Daang Hari LRT Station +[2018-02-13T08:22:07.599] [INFO] cheese - batch complete in: 1.256 secs +[2018-02-13T08:22:07.672] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:22:07.892] [INFO] cheese - inserting 1000 documents. first: File:Ragtime film.jpg and last: Laelia lobata var. alba +[2018-02-13T08:22:07.982] [INFO] cheese - inserting 1000 documents. first: Manor Primary School and last: Eugenie Besserer +[2018-02-13T08:22:07.999] [INFO] cheese - inserting 1000 documents. first: Saint Kitts and Nevis/Geography and last: Music notation +[2018-02-13T08:22:07.980] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:22:08.030] [INFO] cheese - inserting 1000 documents. first: Goguette and last: Election board +[2018-02-13T08:22:08.068] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:22:08.118] [INFO] cheese - inserting 1000 documents. first: Esmailabad, Bardsir and last: File:ErbilAirport logo.jpg +[2018-02-13T08:22:08.117] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:22:08.127] [INFO] cheese - inserting 1000 documents. first: John Johnstone (baseball) and last: Wikipedia:WikiProject Spam/LinkReports/support.us.dell.com +[2018-02-13T08:22:08.166] [INFO] cheese - inserting 1000 documents. first: Category:320s by continent and last: Voigtlander Bessa R2M +[2018-02-13T08:22:08.232] [INFO] cheese - batch complete in: 2.496 secs +[2018-02-13T08:22:08.281] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:22:08.285] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:22:08.302] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:22:08.437] [INFO] cheese - inserting 1000 documents. first: Lajos Csordák and last: Hillsview, SD +[2018-02-13T08:22:08.512] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:22:08.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/How to dominate at ludo and last: Spathoglottis augustorum +[2018-02-13T08:22:08.627] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:22:08.748] [INFO] cheese - inserting 1000 documents. first: City Learning Centre and last: Two Family House +[2018-02-13T08:22:08.789] [INFO] cheese - inserting 1000 documents. first: Cosina Voigtländer Bessa R2M and last: Randy Bean +[2018-02-13T08:22:08.807] [INFO] cheese - inserting 1000 documents. first: Ben Hanowski and last: Katie: My Beautiful Face +[2018-02-13T08:22:08.841] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/William Chilufya and last: The Social Animal (Brooks book) +[2018-02-13T08:22:08.847] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:22:08.861] [INFO] cheese - inserting 1000 documents. first: Maine Republican caucuses, 2008 and last: Steinberg-Dorfl +[2018-02-13T08:22:08.893] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:22:08.916] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:22:08.976] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:22:08.992] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:22:09.142] [INFO] cheese - inserting 1000 documents. first: March 31 (Orthodox Liturgics) and last: Vienna Sezession +[2018-02-13T08:22:09.185] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:22:09.303] [INFO] cheese - inserting 1000 documents. first: Spathoglottis rosea and last: Red Bopple Nut +[2018-02-13T08:22:09.467] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:22:09.486] [INFO] cheese - inserting 1000 documents. first: Powiat ropczycko-sedziszowski and last: Powiat gostynski +[2018-02-13T08:22:09.544] [INFO] cheese - inserting 1000 documents. first: File:Listen to the Man.jpg and last: Reproduction system +[2018-02-13T08:22:09.547] [INFO] cheese - inserting 1000 documents. first: St. Matthias and last: Wikipedia:Templates for deletion/Log/2006 October 12 +[2018-02-13T08:22:09.559] [INFO] cheese - inserting 1000 documents. first: Raja Shivaji Vidyalaya and last: Csák (surname) +[2018-02-13T08:22:09.563] [INFO] cheese - inserting 1000 documents. first: 2010-11 Bosnia and Herzegovina Hockey League season and last: Trump Organization +[2018-02-13T08:22:09.564] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:22:09.620] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:22:09.639] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:22:09.694] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:22:09.703] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:22:09.809] [INFO] cheese - inserting 1000 documents. first: A Real Dead One and last: Geocarpa groundnut +[2018-02-13T08:22:09.856] [INFO] cheese - inserting 1000 documents. first: Sniglet and last: Antiochus I Soter +[2018-02-13T08:22:09.884] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:22:09.966] [INFO] cheese - batch complete in: 1.733 secs +[2018-02-13T08:22:10.092] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/i17.photobucket.com and last: Daniel's Frog +[2018-02-13T08:22:10.110] [INFO] cheese - inserting 1000 documents. first: Dia Kensetsu and last: Wikipedia:Articles for deletion/Crimson & Catharsis +[2018-02-13T08:22:10.181] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:22:10.191] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:22:10.253] [INFO] cheese - inserting 1000 documents. first: Kaleef Wyatt and last: Old Kalevala +[2018-02-13T08:22:10.295] [INFO] cheese - inserting 1000 documents. first: St Bartholomew's Church, Goodnestone and last: Two Lines Oblique Down, Variation III (Indianapolis) +[2018-02-13T08:22:10.307] [INFO] cheese - inserting 1000 documents. first: D. C. Armory and last: File:Riverstage Lblock.jpg +[2018-02-13T08:22:10.347] [INFO] cheese - inserting 1000 documents. first: File:YesterdayOnceMoreAlbum.jpg and last: Tsuri-daiko +[2018-02-13T08:22:10.371] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:22:10.406] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:22:10.440] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:22:10.596] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:22:10.708] [INFO] cheese - inserting 1000 documents. first: Japhethite and last: Arthur Shaw (athlete) +[2018-02-13T08:22:10.846] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:22:10.924] [INFO] cheese - inserting 1000 documents. first: Category:People executed by Turkey by hanging and last: Siva I of Anuradhapura +[2018-02-13T08:22:10.980] [INFO] cheese - inserting 1000 documents. first: File:Dave Matthews Band - Grey Street.ogg and last: MQST +[2018-02-13T08:22:10.980] [INFO] cheese - inserting 1000 documents. first: Pistruieni and last: Chotýšany +[2018-02-13T08:22:11.018] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:22:11.095] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:22:11.101] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:22:11.222] [INFO] cheese - inserting 1000 documents. first: Out Goin' Cattin' (song) and last: Category:Honourable citizens of Khanty-Mansi Autonomous Okrug +[2018-02-13T08:22:11.288] [INFO] cheese - inserting 1000 documents. first: Constanze Backes and last: Harold Charles International Airport +[2018-02-13T08:22:11.368] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:22:11.436] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:22:11.487] [INFO] cheese - inserting 1000 documents. first: Glyptothorax and last: Wesley Butters +[2018-02-13T08:22:11.563] [INFO] cheese - inserting 1000 documents. first: Tsuen Wan Government Secondary School and last: Portal:Trains/Featured picture candidates/8FSTMARTINS23.5.66RNC.JPG +[2018-02-13T08:22:11.586] [INFO] cheese - batch complete in: 1.145 secs +[2018-02-13T08:22:11.642] [INFO] cheese - inserting 1000 documents. first: Famous gay lesbian and bisexual people and last: Ethal +[2018-02-13T08:22:11.710] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:22:11.713] [INFO] cheese - inserting 1000 documents. first: Fraudulent misrepresentation and last: Procris algirica +[2018-02-13T08:22:11.771] [INFO] cheese - inserting 1000 documents. first: Wheat silos in Western Australia and last: Category:Prefects of Loire-Atlantique +[2018-02-13T08:22:11.773] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T08:22:11.800] [INFO] cheese - batch complete in: 1.834 secs +[2018-02-13T08:22:11.889] [INFO] cheese - inserting 1000 documents. first: Mud - TV series and last: Category:Biosphere reserves of China +[2018-02-13T08:22:11.902] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:22:11.996] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:22:12.046] [INFO] cheese - inserting 1000 documents. first: Category:1520 disestablishments in the Aztec civilization and last: Joseph Penzer +[2018-02-13T08:22:12.161] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:22:12.176] [INFO] cheese - inserting 1000 documents. first: Frederick Flintstone and last: Wikipedia:WikiProject Military history/Academy/Writing an effective article introduction +[2018-02-13T08:22:12.287] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:22:12.323] [INFO] cheese - inserting 1000 documents. first: Nordic keyed fiddle and last: Phoebe Gilman +[2018-02-13T08:22:12.349] [INFO] cheese - inserting 1000 documents. first: Mist, OR and last: Oasis, IA +[2018-02-13T08:22:12.356] [INFO] cheese - inserting 1000 documents. first: Vigabatrinum and last: Benjamin F. Hake +[2018-02-13T08:22:12.402] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:22:12.436] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:22:12.450] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:22:12.615] [INFO] cheese - inserting 1000 documents. first: Joseph Penzer (Australian politician) and last: Typhoon Mamie (disambiguation) +[2018-02-13T08:22:12.730] [INFO] cheese - inserting 1000 documents. first: Pushin' Against a Stone and last: Wikipedia:Articles for deletion/Dbfree +[2018-02-13T08:22:12.745] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:22:12.819] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:22:12.831] [INFO] cheese - inserting 1000 documents. first: Lady Cassandra and last: Egyptian Cottonworm +[2018-02-13T08:22:12.967] [INFO] cheese - inserting 1000 documents. first: Gymnammodytes cicerelus and last: Muskeeg-Seepee Settlement, Alberta +[2018-02-13T08:22:12.967] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:22:13.075] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:22:13.237] [INFO] cheese - inserting 1000 documents. first: Jungle Boy (song) and last: Di vaio +[2018-02-13T08:22:13.259] [INFO] cheese - inserting 1000 documents. first: Oatman, AZ and last: Theoretical astronomy +[2018-02-13T08:22:13.280] [INFO] cheese - inserting 1000 documents. first: Anubal and last: Susana Giménez +[2018-02-13T08:22:13.363] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed Bedfordshire articles and last: Lucretia Edwards +[2018-02-13T08:22:13.378] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:22:13.348] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:22:13.477] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:22:13.495] [INFO] cheese - batch complete in: 1.695 secs +[2018-02-13T08:22:13.628] [INFO] cheese - inserting 1000 documents. first: University of Kampen (disambiguation) and last: Desmiphora circumspecta +[2018-02-13T08:22:13.645] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/Uirauna and last: Roxosul Tablets +[2018-02-13T08:22:13.673] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:22:13.814] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:22:13.927] [INFO] cheese - inserting 1000 documents. first: Ridgeback Resources and last: Committee to Promote Virtue and Prevent Vice +[2018-02-13T08:22:14.022] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:22:14.026] [INFO] cheese - inserting 1000 documents. first: Roxoxol and last: 1946–47 Texas Tech Red Raiders men's basketball team +[2018-02-13T08:22:14.085] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T08:22:14.140] [INFO] cheese - inserting 1000 documents. first: Caldecott Hill and last: MTA new york +[2018-02-13T08:22:14.190] [INFO] cheese - inserting 1000 documents. first: Powell River, VA and last: Piper PA-48 Enforcer +[2018-02-13T08:22:14.239] [INFO] cheese - inserting 1000 documents. first: File:Average Temperature for Millington.jpg and last: Category:Wendt aircraft +[2018-02-13T08:22:14.265] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:22:14.324] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:22:14.394] [INFO] cheese - batch complete in: 1.573 secs +[2018-02-13T08:22:14.416] [INFO] cheese - inserting 1000 documents. first: United People's Party (Poland) and last: Ivankovo, Croatia +[2018-02-13T08:22:14.455] [INFO] cheese - inserting 1000 documents. first: Aldazine and last: Haldol La +[2018-02-13T08:22:14.458] [INFO] cheese - inserting 1000 documents. first: Template:British Columbia provincial election, 1983/Vancouver Centre and last: Category:Unidentified murder victims in Maryland +[2018-02-13T08:22:14.534] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:22:14.541] [INFO] cheese - batch complete in: 1.064 secs +[2018-02-13T08:22:14.580] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:22:14.812] [INFO] cheese - inserting 1000 documents. first: The Want (band) and last: Middle Miocene Disruption +[2018-02-13T08:22:14.816] [INFO] cheese - inserting 1000 documents. first: Beyblade Trading Card Game and last: Japanese Philosophy +[2018-02-13T08:22:14.898] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:22:14.903] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:22:14.912] [INFO] cheese - inserting 1000 documents. first: Haldol Solutab and last: Rubacina +[2018-02-13T08:22:14.915] [INFO] cheese - inserting 1000 documents. first: Thig and last: John II of Nassau +[2018-02-13T08:22:14.967] [INFO] cheese - inserting 1000 documents. first: Chloe piene and last: Luštěnice +[2018-02-13T08:22:15.016] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T08:22:14.984] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:22:15.137] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:22:15.153] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/BAE AUDIO and last: Candidates of the New South Wales colonial election, 1887 +[2018-02-13T08:22:15.205] [INFO] cheese - inserting 1000 documents. first: Template:Toronto municipal election, 2003/Position/Councillor, Ward Eight and last: Electronic Poeme +[2018-02-13T08:22:15.315] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:22:15.250] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:22:15.436] [INFO] cheese - inserting 1000 documents. first: Sedanium-R and last: Reloaded (The Demolition Crew Voodoo Remix Collection) (Alexz Johnson album) +[2018-02-13T08:22:15.474] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T08:22:15.506] [INFO] cheese - inserting 1000 documents. first: History of music and last: Powell Doctrine +[2018-02-13T08:22:15.583] [INFO] cheese - inserting 1000 documents. first: Resident Evil Code: Veronica X and last: Boyle Travers Finniss +[2018-02-13T08:22:15.619] [INFO] cheese - inserting 1000 documents. first: File:Sweethearts and Wives 1930 Poster.jpg and last: Category:Motorcycling people +[2018-02-13T08:22:15.686] [INFO] cheese - batch complete in: 2.189 secs +[2018-02-13T08:22:15.714] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:22:15.718] [INFO] cheese - inserting 1000 documents. first: Blue Water Studios and last: Piazza Vittorio Emanuele II (Rome) +[2018-02-13T08:22:15.723] [INFO] cheese - inserting 1000 documents. first: Tolumnia guianensis and last: Americas Paralympic Committee +[2018-02-13T08:22:15.726] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:22:15.815] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:22:15.840] [INFO] cheese - inserting 1000 documents. first: Coat of Arms of the Orange Free State and last: Reudo +[2018-02-13T08:22:15.855] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:22:15.879] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T08:22:15.946] [INFO] cheese - inserting 1000 documents. first: Goriyoshi and last: 2015–16 Olympique de Marseille season +[2018-02-13T08:22:16.079] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:22:16.266] [INFO] cheese - inserting 1000 documents. first: Running Out of Time (Ozzy Osbourne song) and last: Wikipedia:Fact laundering +[2018-02-13T08:22:16.306] [INFO] cheese - inserting 1000 documents. first: Reudox and last: Template:Euxoa-stub +[2018-02-13T08:22:16.339] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T08:22:16.366] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:22:16.451] [INFO] cheese - inserting 1000 documents. first: Hsu ching cheng and last: US $50 +[2018-02-13T08:22:16.526] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:22:16.603] [INFO] cheese - inserting 1000 documents. first: WRC: World Rally Championship and last: Logny-lès-Aubenton +[2018-02-13T08:22:16.641] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alex Yuan and last: Little Lottery River +[2018-02-13T08:22:16.652] [INFO] cheese - inserting 1000 documents. first: Sawamin and last: Dani Jacobs +[2018-02-13T08:22:16.670] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:22:16.690] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T08:22:16.747] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:22:16.814] [INFO] cheese - inserting 1000 documents. first: Pkg-config and last: Masta Ace +[2018-02-13T08:22:16.868] [INFO] cheese - inserting 1000 documents. first: Al Reem Biosphere Reserve and last: Portal:Cretaceous/DYK/14 +[2018-02-13T08:22:16.905] [INFO] cheese - batch complete in: 1.191 secs +[2018-02-13T08:22:16.977] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:22:16.997] [INFO] cheese - inserting 1000 documents. first: List of colleges & universities in Massachusetts and last: Polycycline +[2018-02-13T08:22:17.075] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T08:22:17.107] [INFO] cheese - inserting 1000 documents. first: Ricardo Morán (director) and last: Face2 Face (Babyface album) +[2018-02-13T08:22:17.179] [INFO] cheese - inserting 1000 documents. first: Clan Gayre and last: Canadian Institute of Health Information +[2018-02-13T08:22:17.182] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:22:17.283] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:22:17.390] [INFO] cheese - inserting 1000 documents. first: Alvin Plantinga and last: Xilonen +[2018-02-13T08:22:17.395] [INFO] cheese - inserting 1000 documents. first: Polyotic and last: Secorbate +[2018-02-13T08:22:17.403] [INFO] cheese - inserting 1000 documents. first: Tipsport arena and last: Attack of the Graveyard Ghouls +[2018-02-13T08:22:17.415] [INFO] cheese - inserting 1000 documents. first: Little Onahau River and last: SFU Peak +[2018-02-13T08:22:17.466] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T08:22:17.520] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:22:17.537] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:22:17.649] [INFO] cheese - batch complete in: 1.962 secs +[2018-02-13T08:22:17.757] [INFO] cheese - inserting 1000 documents. first: Portal:Cretaceous/DYK/15 and last: Category:Leiosaurids +[2018-02-13T08:22:17.874] [INFO] cheese - inserting 1000 documents. first: Tag League the Best and last: 1913-14 Galatasaray S.K. season +[2018-02-13T08:22:17.876] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:22:17.955] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:22:17.989] [INFO] cheese - inserting 1000 documents. first: Zapadnyy and last: Malamar 50 +[2018-02-13T08:22:18.015] [INFO] cheese - inserting 1000 documents. first: Cuna de lobos and last: Patagium +[2018-02-13T08:22:18.043] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:22:18.182] [INFO] cheese - batch complete in: 1.277 secs +[2018-02-13T08:22:18.349] [INFO] cheese - inserting 1000 documents. first: 280 mm mortar M1939 (Br-5) and last: Jevany +[2018-02-13T08:22:18.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2015 July 3 and last: Category:High-importance Graffiti articles +[2018-02-13T08:22:18.385] [INFO] cheese - inserting 1000 documents. first: File:Rockslide.jpg and last: Thomas Croft +[2018-02-13T08:22:18.424] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/ros/munlist/konstantinovsky and last: Ranitidin Dyna +[2018-02-13T08:22:18.423] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:22:18.457] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:22:18.472] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:22:18.498] [INFO] cheese - inserting 1000 documents. first: Hercules and Xena – The Animated Movie: The Battle for Mount Olympus and last: Lyres (band) +[2018-02-13T08:22:18.512] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:22:18.560] [INFO] cheese - batch complete in: 1.277 secs +[2018-02-13T08:22:18.572] [INFO] cheese - inserting 1000 documents. first: Melvin Fleur and last: Adelaide Eliza Ironside +[2018-02-13T08:22:18.727] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:22:18.757] [INFO] cheese - inserting 1000 documents. first: West Swanzey, NH and last: Embellishments (music) +[2018-02-13T08:22:18.869] [INFO] cheese - inserting 1000 documents. first: Ranitidin Helvepharm and last: Acetonyl +[2018-02-13T08:22:18.872] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:22:18.927] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:22:18.954] [INFO] cheese - inserting 1000 documents. first: Professional network service and last: S. H. E +[2018-02-13T08:22:18.990] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Graffiti articles and last: David M. Buck House +[2018-02-13T08:22:19.003] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T08:22:19.049] [INFO] cheese - inserting 1000 documents. first: Rooney River and last: North Fork Red River +[2018-02-13T08:22:19.062] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:22:19.131] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:22:19.140] [INFO] cheese - inserting 1000 documents. first: Curse of Blackmoor Manor and last: ឱ +[2018-02-13T08:22:19.214] [INFO] cheese - inserting 1000 documents. first: Acetophen and last: Pen-Vee K +[2018-02-13T08:22:19.249] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T08:22:19.274] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:22:19.385] [INFO] cheese - inserting 1000 documents. first: S. H. I. E. L. D. (Amalgam Comics) and last: Eights +[2018-02-13T08:22:19.405] [INFO] cheese - inserting 1000 documents. first: Keith Lander Best and last: Category:Wikipedian iaidoka +[2018-02-13T08:22:19.472] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:22:19.488] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:22:19.490] [INFO] cheese - inserting 1000 documents. first: Penapar-Vk and last: Boysen Dam +[2018-02-13T08:22:19.534] [INFO] cheese - batch complete in: 0.285 secs +[2018-02-13T08:22:19.748] [INFO] cheese - inserting 1000 documents. first: North Pease River and last: 2008–2009 hadrosaur chewing study +[2018-02-13T08:22:19.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whie Malreaux and last: Xiong Shili +[2018-02-13T08:22:19.789] [INFO] cheese - inserting 1000 documents. first: Peripherine and last: China International Consumer Goods Fair +[2018-02-13T08:22:19.808] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T08:22:19.831] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:22:19.873] [INFO] cheese - inserting 1000 documents. first: Category:1950s crime film stubs and last: Parig +[2018-02-13T08:22:19.908] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:22:19.965] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:22:20.035] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Gadget-sidebar-ca-modern.js and last: Atlas CAVA +[2018-02-13T08:22:20.068] [INFO] cheese - inserting 1000 documents. first: Dar'a Governorate and last: Dorfl +[2018-02-13T08:22:20.098] [INFO] cheese - inserting 1000 documents. first: Belmazol and last: Lucorteum Sol +[2018-02-13T08:22:20.111] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:22:20.138] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:22:20.141] [INFO] cheese - inserting 1000 documents. first: Solidago pruinosa and last: Female-female competition +[2018-02-13T08:22:20.159] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T08:22:20.259] [INFO] cheese - inserting 1000 documents. first: Chicomecoatl and last: Polk County, Texas +[2018-02-13T08:22:20.274] [INFO] cheese - batch complete in: 1.212 secs +[2018-02-13T08:22:20.392] [INFO] cheese - inserting 1000 documents. first: Category:Devonian arthropods and last: Sohran-e Vasat +[2018-02-13T08:22:20.394] [INFO] cheese - inserting 1000 documents. first: Trichosalpinx orbicularis and last: Acreage base +[2018-02-13T08:22:20.451] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:22:20.447] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:22:20.491] [INFO] cheese - batch complete in: 2.841 secs +[2018-02-13T08:22:20.685] [INFO] cheese - inserting 1000 documents. first: First contact (science fiction) and last: Wikipedia:WikiProject Orphanage/Orphaned Articles/T +[2018-02-13T08:22:20.755] [INFO] cheese - inserting 1000 documents. first: Luteal Hormone and last: Thieves by Law +[2018-02-13T08:22:20.811] [INFO] cheese - inserting 1000 documents. first: Category:Radio stations established in 1934 and last: Noirval +[2018-02-13T08:22:20.890] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:22:20.929] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:22:21.048] [INFO] cheese - inserting 1000 documents. first: Mulberry River Bridge (disambiguation) and last: Santi Biagio e Carlo ai Catinari +[2018-02-13T08:22:21.045] [INFO] cheese - inserting 1000 documents. first: Legislative district of Surigao del Norte and last: Number in Chinese culture +[2018-02-13T08:22:21.065] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:22:21.136] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:22:21.280] [INFO] cheese - inserting 1000 documents. first: Category:Air and Space Manufacturing aircraft and last: Eupithecia ridiculata +[2018-02-13T08:22:21.292] [INFO] cheese - batch complete in: 1.154 secs +[2018-02-13T08:22:21.474] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:22:21.542] [INFO] cheese - inserting 1000 documents. first: Category:Documentary films about surfing and last: Velká Buková +[2018-02-13T08:22:21.689] [INFO] cheese - batch complete in: 1.238 secs +[2018-02-13T08:22:21.883] [INFO] cheese - inserting 1000 documents. first: Qaqortoq Museum and last: Lift strut +[2018-02-13T08:22:22.016] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:22:22.080] [INFO] cheese - inserting 1000 documents. first: Red vines and last: File:Maxwell relax spectra.PNG +[2018-02-13T08:22:22.082] [INFO] cheese - inserting 1000 documents. first: Nouart and last: Portal:Anarchism/Anniversaries/January/January 29 +[2018-02-13T08:22:22.162] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:22:22.226] [INFO] cheese - inserting 1000 documents. first: A Christmas Sing with Bing Around the World and last: Category:Articles written from a fan's POV +[2018-02-13T08:22:22.299] [INFO] cheese - batch complete in: 1.409 secs +[2018-02-13T08:22:22.300] [INFO] cheese - inserting 1000 documents. first: Gardiner Historic District (Gardiner, Oregon) and last: Ortet +[2018-02-13T08:22:22.366] [INFO] cheese - batch complete in: 1.229 secs +[2018-02-13T08:22:22.428] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:22:22.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-10-30/Interwiki report and last: Orignolles +[2018-02-13T08:22:22.562] [INFO] cheese - inserting 1000 documents. first: Category:Plays by Seamus Heaney and last: File:Riceboy.jpg +[2018-02-13T08:22:22.705] [INFO] cheese - batch complete in: 1.413 secs +[2018-02-13T08:22:22.752] [INFO] cheese - batch complete in: 1.062 secs +[2018-02-13T08:22:23.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mrtvshow/Archive and last: Template:Manitoba provincial election, 2011/Dauphin +[2018-02-13T08:22:23.037] [INFO] cheese - inserting 1000 documents. first: Category:Articles written like resumes and last: Category:18th-century disestablishments in the Old Swiss Confederacy +[2018-02-13T08:22:23.066] [INFO] cheese - inserting 1000 documents. first: Bechara Choucair and last: Viburnum farreri +[2018-02-13T08:22:23.075] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:22:23.119] [INFO] cheese - inserting 1000 documents. first: Bagneux-la-Fosse and last: Salinas Airport +[2018-02-13T08:22:23.137] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:22:23.151] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:22:23.192] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:22:23.274] [INFO] cheese - inserting 1000 documents. first: Pantodon buchholzi and last: E941 +[2018-02-13T08:22:23.325] [INFO] cheese - inserting 1000 documents. first: Internet Locator Server and last: The free software movement +[2018-02-13T08:22:23.413] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:22:23.420] [INFO] cheese - inserting 1000 documents. first: Wilderness house literary review and last: Utah State Route 83 +[2018-02-13T08:22:23.438] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:22:23.529] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:22:23.623] [INFO] cheese - inserting 1000 documents. first: Superlinear convergence and last: Template:Olympic venues weightlifting +[2018-02-13T08:22:23.677] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:22:23.684] [INFO] cheese - inserting 1000 documents. first: Category:1940 in Asian sport and last: Less-than symbol +[2018-02-13T08:22:23.715] [INFO] cheese - inserting 1000 documents. first: File:1972 All-Ireland Senior Hurling Championship Final.jpg and last: Frank Eric Lloyd +[2018-02-13T08:22:23.797] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:22:23.842] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:22:23.927] [INFO] cheese - inserting 1000 documents. first: Fontcouverte, Aude and last: Frozen (House) +[2018-02-13T08:22:23.988] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:22:24.173] [INFO] cheese - inserting 1000 documents. first: E942 and last: Plymouth Blitz +[2018-02-13T08:22:24.220] [INFO] cheese - inserting 1000 documents. first: Baptist Youth and last: File:FK Palilulac.png +[2018-02-13T08:22:24.238] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:22:24.273] [INFO] cheese - inserting 1000 documents. first: Leonora Knatchbull and last: Bharia people +[2018-02-13T08:22:24.333] [INFO] cheese - inserting 1000 documents. first: Dormition Cathedral (disambiguation) and last: Critically Endangered species +[2018-02-13T08:22:24.335] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:22:24.347] [INFO] cheese - inserting 1000 documents. first: File:Logo of Royal Central College - Polonnaruwa.png and last: File:Supersoft.svg +[2018-02-13T08:22:24.353] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:22:24.419] [INFO] cheese - inserting 1000 documents. first: Less than bracket and last: Hoanib River +[2018-02-13T08:22:24.459] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:22:24.499] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:22:24.543] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:22:24.628] [INFO] cheese - inserting 1000 documents. first: Miyamoto-san and last: Neubois +[2018-02-13T08:22:24.671] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:22:24.701] [INFO] cheese - inserting 1000 documents. first: Pecos County, Texas and last: Port Laoise +[2018-02-13T08:22:24.803] [INFO] cheese - inserting 1000 documents. first: Rusko Selo and last: Pardes Hanna-Karkur Railway Station +[2018-02-13T08:22:24.884] [INFO] cheese - batch complete in: 4.393 secs +[2018-02-13T08:22:24.909] [INFO] cheese - inserting 1000 documents. first: Kazakhstan national beach soccer team and last: Charles Person +[2018-02-13T08:22:24.911] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:22:24.939] [INFO] cheese - inserting 1000 documents. first: File:Candon Civic Center.jpg and last: Zoo Botanical Park Dois Irmãos +[2018-02-13T08:22:24.990] [INFO] cheese - inserting 1000 documents. first: Alternating diagram and last: Sar Asiab, Jiroft +[2018-02-13T08:22:24.991] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:22:25.105] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:22:25.109] [INFO] cheese - inserting 1000 documents. first: Category:People from Selston and last: List of The Best Show with Tom Scharpling episodes +[2018-02-13T08:22:25.161] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:22:25.246] [INFO] cheese - inserting 1000 documents. first: Urago and last: Vin +[2018-02-13T08:22:25.265] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:22:25.548] [INFO] cheese - batch complete in: 1.194 secs +[2018-02-13T08:22:25.601] [INFO] cheese - inserting 1000 documents. first: Neugartheim-Ittlenheim and last: Point au Gaul +[2018-02-13T08:22:25.699] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:22:25.797] [INFO] cheese - inserting 1000 documents. first: 19th Cavalry Regiment (United States) and last: Sawbwa Barb +[2018-02-13T08:22:25.817] [INFO] cheese - inserting 1000 documents. first: Paasiku and last: Linerider +[2018-02-13T08:22:25.836] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:22:25.856] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:22:25.896] [INFO] cheese - inserting 1000 documents. first: RPP (disambiguation) and last: Кипелов (band) +[2018-02-13T08:22:26.007] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:22:26.059] [INFO] cheese - inserting 1000 documents. first: WhoaVerse and last: Category:Cenozoic geochronology +[2018-02-13T08:22:26.195] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:22:26.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Bible/Watchlist and last: Taliesin III +[2018-02-13T08:22:26.323] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:22:26.464] [INFO] cheese - inserting 1000 documents. first: Point Lance and last: Category:FA-Class Robotics articles +[2018-02-13T08:22:26.468] [INFO] cheese - inserting 1000 documents. first: Count of Cavour and last: Category:Belgian expatriate rugby union players +[2018-02-13T08:22:26.548] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:22:26.547] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:22:26.553] [INFO] cheese - inserting 1000 documents. first: Big Brother (Suomi) and last: Table of planets and dwarf planets in the solar system +[2018-02-13T08:22:26.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NUKE and last: ESAKE A1 Ethniki 2008–09 +[2018-02-13T08:22:26.664] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:22:26.669] [INFO] cheese - inserting 1000 documents. first: Bacacay, Albay and last: Wikipedia:Articles for deletion/We Are the Eighties +[2018-02-13T08:22:26.717] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:22:26.791] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:22:26.829] [INFO] cheese - inserting 1000 documents. first: 1st arrondissement of Marseille and last: Performace Operational analysis +[2018-02-13T08:22:26.853] [INFO] cheese - inserting 1000 documents. first: Lamellicornia and last: Template:Australia Squad Ashes 1886-87 +[2018-02-13T08:22:26.905] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T08:22:26.973] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:22:27.027] [INFO] cheese - inserting 1000 documents. first: John Tucker (merchant trader) and last: William Frances Schey +[2018-02-13T08:22:27.081] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:22:27.139] [INFO] cheese - inserting 1000 documents. first: Sugeng Wayudi and last: Saadat Hasan Manto (TV series) +[2018-02-13T08:22:27.173] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:22:27.303] [INFO] cheese - inserting 1000 documents. first: Melanie Papalia and last: Wikipedia:Files for deletion/2011 April 9 +[2018-02-13T08:22:27.346] [INFO] cheese - inserting 1000 documents. first: Calgary Cardinals and last: Prentiss Oakley +[2018-02-13T08:22:27.362] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:22:27.388] [INFO] cheese - inserting 1000 documents. first: Template:England Squad Ashes 1886-87 and last: La Course à l'échalote +[2018-02-13T08:22:27.506] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:22:27.513] [INFO] cheese - inserting 1000 documents. first: Gold-front and last: List of American recessions +[2018-02-13T08:22:27.523] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:22:27.607] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:22:27.715] [INFO] cheese - inserting 1000 documents. first: St. Severin, Keitum and last: Category:2008 in Hungarian sport +[2018-02-13T08:22:27.730] [INFO] cheese - inserting 1000 documents. first: Equador and last: Campbell Brown +[2018-02-13T08:22:27.813] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:22:27.829] [INFO] cheese - inserting 1000 documents. first: Template:Independent Ecological Movement/meta/color and last: Caroline Halle +[2018-02-13T08:22:27.870] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:22:27.948] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:22:28.124] [INFO] cheese - inserting 1000 documents. first: Powerade Zero and last: Integrist Party +[2018-02-13T08:22:28.138] [INFO] cheese - inserting 1000 documents. first: Drouillard and last: Muhammad Abdul Qayyum Khan +[2018-02-13T08:22:28.194] [INFO] cheese - inserting 1000 documents. first: Chac Uayab Xoc and last: Crofton Park, London, England +[2018-02-13T08:22:28.197] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:22:28.215] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:22:28.342] [INFO] cheese - inserting 1000 documents. first: Category:1961 establishments in Alaska and last: Hedgesville, Virginia +[2018-02-13T08:22:28.343] [INFO] cheese - inserting 1000 documents. first: Jerry Maygarden and last: Karjakin +[2018-02-13T08:22:28.399] [INFO] cheese - batch complete in: 3.515 secs +[2018-02-13T08:22:28.404] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:22:28.588] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T08:22:28.688] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class British Antarctic Territory articles and last: Sharks F. C. +[2018-02-13T08:22:28.720] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 2toy mora and last: What's the Time? +[2018-02-13T08:22:28.743] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:22:29.012] [INFO] cheese - batch complete in: 1.405 secs +[2018-02-13T08:22:29.298] [INFO] cheese - inserting 1000 documents. first: St. Albans Diocese and last: Moi, Aust-Agder +[2018-02-13T08:22:29.316] [INFO] cheese - inserting 1000 documents. first: Tiffanie Ward and last: Sébastien Migné +[2018-02-13T08:22:29.375] [INFO] cheese - inserting 1000 documents. first: Category:Architects from Friuli-Venezia Giulia and last: 53-K +[2018-02-13T08:22:29.450] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T08:22:29.455] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:22:29.513] [INFO] cheese - inserting 1000 documents. first: Sharks FC and last: File:Iced Earth Overture of the Wicked.jpg +[2018-02-13T08:22:29.525] [INFO] cheese - batch complete in: 1.31 secs +[2018-02-13T08:22:29.600] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:22:29.656] [INFO] cheese - inserting 1000 documents. first: Otto IV of Wittelsbach and last: Nightstar (train) +[2018-02-13T08:22:29.686] [INFO] cheese - inserting 1000 documents. first: .xls and last: Boundary Stelae of Akhenaten +[2018-02-13T08:22:29.806] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:22:29.856] [INFO] cheese - batch complete in: 1.986 secs +[2018-02-13T08:22:29.971] [INFO] cheese - inserting 1000 documents. first: IEC 5009 and last: USAT Thomas F. Farrel, Jr. +[2018-02-13T08:22:30.134] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T08:22:30.238] [INFO] cheese - inserting 1000 documents. first: Mollestad and last: Dirac's theorem on cycles in k-connected graphs +[2018-02-13T08:22:30.271] [INFO] cheese - inserting 1000 documents. first: Roja Kootam (TV series) and last: Amrinder Singh Raja Warring +[2018-02-13T08:22:30.303] [INFO] cheese - inserting 1000 documents. first: Pat Bradley (boxer) and last: Ould Nouroudine +[2018-02-13T08:22:30.316] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:22:30.392] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:22:30.429] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:22:30.465] [INFO] cheese - inserting 1000 documents. first: Talleyville, Delaware and last: Category:Districts of Dong Nai Province +[2018-02-13T08:22:30.557] [INFO] cheese - inserting 1000 documents. first: County cup and last: Pithecia monhachus +[2018-02-13T08:22:30.592] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:22:30.690] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:22:30.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Coverage of Mathworld topics/N and last: The End (A Series of Unfortunate Events) +[2018-02-13T08:22:30.892] [INFO] cheese - inserting 1000 documents. first: Archbishop's Palace, Armagh and last: Category:Landforms of Loir-et-Cher +[2018-02-13T08:22:30.904] [INFO] cheese - inserting 1000 documents. first: Parallel Reduced Instruction Set Machine and last: Adipose Tissue +[2018-02-13T08:22:30.915] [INFO] cheese - inserting 1000 documents. first: Category:Former Mid-America Intercollegiate Athletics Association schools and last: Pseudepigraph +[2018-02-13T08:22:30.927] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:22:30.957] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:22:30.990] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:22:30.993] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:22:31.047] [INFO] cheese - inserting 1000 documents. first: Sucker punch (film) and last: List of World Heritage Sites by year of inscription +[2018-02-13T08:22:31.070] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kayky sthefany.zip.net and last: Solanum paniculatum +[2018-02-13T08:22:31.123] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:22:31.195] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:22:31.271] [INFO] cheese - inserting 1000 documents. first: Category:Latino templates and last: Quilmes de Mar del Plata +[2018-02-13T08:22:31.358] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:22:31.414] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 14 Business (Abbeville) and last: Fujinon XF 56mm F1.2 R +[2018-02-13T08:22:31.490] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:22:31.504] [INFO] cheese - inserting 1000 documents. first: Raymond Hill (musician) and last: National Register of Historic Places listings in Kenedy County, Texas +[2018-02-13T08:22:31.569] [INFO] cheese - inserting 1000 documents. first: Qatar Foundation and last: Australia in England in 2005 +[2018-02-13T08:22:31.575] [INFO] cheese - inserting 1000 documents. first: PSU South/Southwest College Street and PSU South/Southwest Jackson Street (MAX stations) and last: Hemipyrrha +[2018-02-13T08:22:31.589] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:22:31.651] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:22:31.722] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:22:31.771] [INFO] cheese - inserting 1000 documents. first: Malicious executables and last: Giou-de-Mamou +[2018-02-13T08:22:31.867] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Duisburg and last: Book:Deborah Cox +[2018-02-13T08:22:31.901] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:22:31.984] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:22:32.130] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Kinney County, Texas and last: Class 53 (disambiguation) +[2018-02-13T08:22:32.156] [INFO] cheese - inserting 1000 documents. first: Gateshead West (UK Parliament constituency) and last: File:Wmdata.png +[2018-02-13T08:22:32.172] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of artists who have resided in Brooklyn and last: Carl Rathjens +[2018-02-13T08:22:32.182] [INFO] cheese - inserting 1000 documents. first: Element 93 and last: Khazaran, Khazaria +[2018-02-13T08:22:32.202] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:22:32.208] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:22:32.254] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:22:32.263] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/thehealthtime.com and last: Neodesmodes +[2018-02-13T08:22:32.329] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:22:32.434] [INFO] cheese - batch complete in: 4.035 secs +[2018-02-13T08:22:32.530] [INFO] cheese - inserting 1000 documents. first: Western super Mare and last: Friedrich Amerling +[2018-02-13T08:22:32.568] [INFO] cheese - inserting 1000 documents. first: Girgols and last: Category:Stub-Class Paraguay articles +[2018-02-13T08:22:32.602] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:22:32.607] [INFO] cheese - inserting 1000 documents. first: Cleveland Elementary School shooting (disambiguation) and last: Croton japonicus +[2018-02-13T08:22:32.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Scotland national football team hat-tricks/archive1 and last: Tadeu Terra +[2018-02-13T08:22:32.646] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:22:32.673] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:22:32.715] [INFO] cheese - inserting 1000 documents. first: Madre de Dios (mine) and last: Helenium apterum +[2018-02-13T08:22:32.744] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:22:32.790] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T08:22:32.895] [INFO] cheese - inserting 1000 documents. first: Spaeth and last: Record Separator +[2018-02-13T08:22:32.983] [INFO] cheese - inserting 1000 documents. first: Neodontopera and last: 2010 U.S. Women's Open Golf Championship +[2018-02-13T08:22:32.991] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:22:33.047] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:22:33.146] [INFO] cheese - inserting 1000 documents. first: Deanthony Thomas and last: MEPs for Denmark 1984–1989 +[2018-02-13T08:22:33.161] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kenophobia and last: Aisne's 3rd constituency +[2018-02-13T08:22:33.205] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:22:33.208] [INFO] cheese - inserting 1000 documents. first: Category:1291 in the Holy Roman Empire and last: Nevado Sacsa Ananta +[2018-02-13T08:22:33.226] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:22:33.299] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:22:33.308] [INFO] cheese - inserting 1000 documents. first: Robe à l'Anglaise and last: Melittia chalconota +[2018-02-13T08:22:33.361] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:22:33.422] [INFO] cheese - inserting 1000 documents. first: Joe Varner and last: Archermos +[2018-02-13T08:22:33.501] [INFO] cheese - inserting 1000 documents. first: Zealand River and last: Eritrean Telecommunications Corporation +[2018-02-13T08:22:33.519] [INFO] cheese - inserting 1000 documents. first: Canada, Western and last: Mostaganem Airport +[2018-02-13T08:22:33.521] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:22:33.545] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:22:33.579] [INFO] cheese - inserting 1000 documents. first: MEPs for France 1984–1989 and last: Wilcox County Schools (Alabama) +[2018-02-13T08:22:33.640] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:22:33.672] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T08:22:33.851] [INFO] cheese - inserting 1000 documents. first: Nambooripad's natural partial order and last: Pterynotus fulgens +[2018-02-13T08:22:33.861] [INFO] cheese - inserting 1000 documents. first: H-62 and last: Formula Off Road +[2018-02-13T08:22:33.904] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:22:33.940] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:22:33.954] [INFO] cheese - inserting 1000 documents. first: Category:Hatakeyama clan and last: Santucho +[2018-02-13T08:22:34.064] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:22:34.103] [INFO] cheese - inserting 1000 documents. first: Wamberal Lagoon and last: Category:International speed skating competitions +[2018-02-13T08:22:34.217] [INFO] cheese - inserting 1000 documents. first: Category:Indoor arenas in Malaysia and last: File:Wild Lavander.JPG +[2018-02-13T08:22:34.251] [INFO] cheese - inserting 1000 documents. first: Tepexpan man and last: Blacklist (band) +[2018-02-13T08:22:34.262] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:22:34.292] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:22:34.379] [INFO] cheese - inserting 1000 documents. first: History of the Arabic alphabet / from French and last: Bombing of Hiroshima +[2018-02-13T08:22:34.421] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:22:34.500] [INFO] cheese - inserting 1000 documents. first: Template:User citizen Falkland Islands and last: 1976–77 Colchester United F.C. season +[2018-02-13T08:22:34.523] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:22:34.627] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:22:34.707] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2008 January 25 and last: Carl Marotte +[2018-02-13T08:22:34.818] [INFO] cheese - inserting 1000 documents. first: Mirna funk and last: Patriarch Alexander I of Alexandria +[2018-02-13T08:22:34.816] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:22:34.833] [INFO] cheese - inserting 1000 documents. first: Kirkwall airport and last: Osteocephalus pearsoni +[2018-02-13T08:22:34.886] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:22:34.900] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:22:35.099] [INFO] cheese - inserting 1000 documents. first: Ken Booth (academic) and last: Albert Cunha +[2018-02-13T08:22:35.118] [INFO] cheese - inserting 1000 documents. first: Victoria Dunlap and last: Smoky the Cow Horse +[2018-02-13T08:22:35.197] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:22:35.198] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:22:35.226] [INFO] cheese - inserting 1000 documents. first: Atomic authorization and last: Teaching for King Merikare +[2018-02-13T08:22:35.287] [INFO] cheese - inserting 1000 documents. first: Geology of Yorkshire and last: Willoughby-Eastlake City School District +[2018-02-13T08:22:35.317] [INFO] cheese - inserting 1000 documents. first: Muraviev-Amurskiy and last: JPI +[2018-02-13T08:22:35.332] [INFO] cheese - inserting 1000 documents. first: Parole camp and last: Wikipedia:Phishing e-mails +[2018-02-13T08:22:35.341] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:22:35.335] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:22:35.473] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:22:35.475] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:22:35.600] [INFO] cheese - inserting 1000 documents. first: Balanjar, Khazaria and last: Realencyclopädie der classischen Altertumswissenschaft +[2018-02-13T08:22:35.689] [INFO] cheese - inserting 1000 documents. first: 2004 Cape Verdean Football Championships and last: Phogat, Bhiwani +[2018-02-13T08:22:35.756] [INFO] cheese - batch complete in: 3.322 secs +[2018-02-13T08:22:35.778] [INFO] cheese - inserting 1000 documents. first: Heathrow (disambiguation) and last: Sinagoga mare +[2018-02-13T08:22:35.825] [INFO] cheese - inserting 1000 documents. first: Minnesota Zoological Garden and last: St Austell & Newquay +[2018-02-13T08:22:35.849] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:22:35.883] [INFO] cheese - inserting 1000 documents. first: Stefani Carter and last: Category:Drive Like Jehu +[2018-02-13T08:22:35.941] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:22:35.949] [INFO] cheese - inserting 1000 documents. first: Berthelet and last: The Tale of Neferkare and Sasenet +[2018-02-13T08:22:36.038] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:22:36.098] [INFO] cheese - inserting 1000 documents. first: 52 Motorised Division Torino and last: Eupithecia derogata +[2018-02-13T08:22:36.138] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:22:36.169] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:22:36.204] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:22:36.492] [INFO] cheese - inserting 1000 documents. first: T J Reid and last: Wikipedia:Articles for deletion/Alphacell +[2018-02-13T08:22:36.496] [INFO] cheese - inserting 1000 documents. first: Showstopper bug and last: Wikipedia:Articles for deletion/TAO (software) +[2018-02-13T08:22:36.594] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:22:36.664] [INFO] cheese - inserting 1000 documents. first: Super Hits (Peabo Bryson album) and last: Category:1966 in the Spanish Empire +[2018-02-13T08:22:36.664] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:22:36.768] [INFO] cheese - inserting 1000 documents. first: Choir of St George's Chapel, Windsor Castle and last: U.S. Highway 25E (Virginia) +[2018-02-13T08:22:36.779] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:22:36.865] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Phrygia and last: File:FStourposter.jpeg +[2018-02-13T08:22:36.881] [INFO] cheese - inserting 1000 documents. first: Makram N. Kaiser and last: Template:Fb team FIU men +[2018-02-13T08:22:36.935] [INFO] cheese - inserting 1000 documents. first: Eri Tanaka and last: Template:Frozenbyte +[2018-02-13T08:22:36.964] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:22:37.024] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:22:37.090] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:22:37.094] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:22:37.317] [INFO] cheese - inserting 1000 documents. first: Template:1972 Baseball HOF and last: File:Every Day's a Holiday 1937.jpg +[2018-02-13T08:22:37.409] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:22:37.489] [INFO] cheese - inserting 1000 documents. first: ChoroQ and last: Death and state funeral of JFK +[2018-02-13T08:22:37.547] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:22:37.605] [INFO] cheese - inserting 1000 documents. first: Palaui Island and last: Naturwaldreservat Wettersteinwald +[2018-02-13T08:22:37.636] [INFO] cheese - inserting 1000 documents. first: David Painter (disambiguation) and last: Category:Suspected Wikipedia sockpuppets of Lupe-340 +[2018-02-13T08:22:37.738] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:22:37.743] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:22:37.776] [INFO] cheese - inserting 1000 documents. first: U.S. Highway 25E in Virginia and last: Intimate Portrait +[2018-02-13T08:22:37.791] [INFO] cheese - inserting 1000 documents. first: 3rd Canadian Battalion (Toronto Regiment), CEF and last: NVLR +[2018-02-13T08:22:37.886] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:22:37.905] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:22:37.956] [INFO] cheese - inserting 1000 documents. first: John F. R. Kerr and last: Cook Shire Hall +[2018-02-13T08:22:38.077] [INFO] cheese - inserting 1000 documents. first: Khwarezmiyya and last: Papers +[2018-02-13T08:22:38.097] [INFO] cheese - batch complete in: 1.318 secs +[2018-02-13T08:22:38.166] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:22:38.335] [INFO] cheese - inserting 1000 documents. first: Category:Kishwaukee College and last: Enid, Oklahoma micropolitan area +[2018-02-13T08:22:38.454] [INFO] cheese - inserting 1000 documents. first: Funbag Animation Studios and last: Louise Bourgeois Boursier +[2018-02-13T08:22:38.455] [INFO] cheese - inserting 1000 documents. first: Once on This Island and last: Wikipedia:Articles for deletion/Twat +[2018-02-13T08:22:38.455] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:22:38.530] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:22:38.549] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:22:38.575] [INFO] cheese - inserting 1000 documents. first: Converting and last: Pressure volume work +[2018-02-13T08:22:38.664] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:22:38.734] [INFO] cheese - inserting 1000 documents. first: I Was Totally Destroying It and last: Pierre Nothomb +[2018-02-13T08:22:38.751] [INFO] cheese - inserting 1000 documents. first: Expectation hypothesis and last: Category:Track cycling at the 2015 Pan American Games +[2018-02-13T08:22:38.762] [INFO] cheese - inserting 1000 documents. first: 2008 Pattaya Women's Open – Doubles and last: Norman Uprichard +[2018-02-13T08:22:38.793] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:22:38.802] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:22:38.871] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:22:38.893] [INFO] cheese - inserting 1000 documents. first: Template:Iraq Squad 2000 AFC Asian Cup and last: Eupithecia kostjuki +[2018-02-13T08:22:39.009] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:22:39.045] [INFO] cheese - inserting 1000 documents. first: Fíjate bien and last: Wikipedia:WikiProject Spam/LinkReports/zo-osijek.hr +[2018-02-13T08:22:39.054] [INFO] cheese - inserting 1000 documents. first: Cornerstone Festival and last: The Plimsouls +[2018-02-13T08:22:39.116] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:22:39.178] [INFO] cheese - inserting 1000 documents. first: Patriarch Constantine III and last: Nycteras +[2018-02-13T08:22:39.223] [INFO] cheese - batch complete in: 3.467 secs +[2018-02-13T08:22:39.247] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T08:22:39.250] [INFO] cheese - inserting 1000 documents. first: Anthem (We Are the Fire) and last: Wikipedia:Articles for deletion/Fancies +[2018-02-13T08:22:39.350] [INFO] cheese - inserting 1000 documents. first: Psilosetia and last: 2009 Mercedes Cup +[2018-02-13T08:22:39.367] [INFO] cheese - inserting 1000 documents. first: Full figured model and last: Wikipedia:Articles for deletion/Vincent Hermany +[2018-02-13T08:22:39.369] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:22:39.439] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:22:39.519] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:22:39.532] [INFO] cheese - inserting 1000 documents. first: File:PREMIER COLLEGE.jpg and last: William FitzAlan, Lord of Oswestry +[2018-02-13T08:22:39.586] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:22:39.768] [INFO] cheese - inserting 1000 documents. first: Vice magazine and last: Champagne, Charente-Maritime +[2018-02-13T08:22:39.828] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:22:39.850] [INFO] cheese - inserting 1000 documents. first: Wyscig Dookola Mazowsza and last: Pothaipalle +[2018-02-13T08:22:39.935] [INFO] cheese - inserting 1000 documents. first: Érik Morales vs. Marco Antonio Barrera II and last: Category:1969 in the Netherlands Antilles +[2018-02-13T08:22:39.957] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:22:40.031] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:22:40.139] [INFO] cheese - inserting 1000 documents. first: Minor oilseeds and last: Pamiat Merkuria +[2018-02-13T08:22:40.141] [INFO] cheese - inserting 1000 documents. first: Day-for-a-year principle and last: Little Miss Shy +[2018-02-13T08:22:40.188] [INFO] cheese - inserting 1000 documents. first: Pseudobagrus wittenburgi and last: Category:Demolished buildings and structures in Dortmund +[2018-02-13T08:22:40.205] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:22:40.261] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:22:40.250] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:22:40.468] [INFO] cheese - inserting 1000 documents. first: File:Yeondong college logo.jpg and last: Wikipedia:Collaboration of the week/Midtown (Manhattan) +[2018-02-13T08:22:40.551] [INFO] cheese - inserting 1000 documents. first: 1884 Cleveland Blues season and last: Lord Barrymore +[2018-02-13T08:22:40.561] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T08:22:40.572] [INFO] cheese - inserting 1000 documents. first: Elavamkodu Desam and last: Generalized Multi-Protocol Label Switching +[2018-02-13T08:22:40.623] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:22:40.673] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:22:40.758] [INFO] cheese - inserting 1000 documents. first: The 100: A ranking of the most influential persons in history and last: Devon (England) +[2018-02-13T08:22:40.807] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:22:40.826] [INFO] cheese - inserting 1000 documents. first: Marvelman and last: Nagas +[2018-02-13T08:22:40.877] [INFO] cheese - inserting 1000 documents. first: Characters of Smash and last: Anton Rodgers (footballer) +[2018-02-13T08:22:40.970] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:22:40.973] [INFO] cheese - batch complete in: 1.75 secs +[2018-02-13T08:22:41.055] [INFO] cheese - inserting 1000 documents. first: Benjamin Stevens (cricketer) and last: Paris of China +[2018-02-13T08:22:41.106] [INFO] cheese - inserting 1000 documents. first: Little Miss Somersault and last: Cork (Parliament of Ireland constituency) +[2018-02-13T08:22:41.107] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:22:41.132] [INFO] cheese - inserting 1000 documents. first: Category:People from Siberia and last: Wikipedia:WikiProject Film/Review/FAR/Instructions +[2018-02-13T08:22:41.137] [INFO] cheese - inserting 1000 documents. first: O'Higgins family and last: Sagaga-Le-Falefa +[2018-02-13T08:22:41.206] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:22:41.218] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T08:22:41.256] [INFO] cheese - inserting 1000 documents. first: WrestleMania: All Grown Up and last: Category:Formula Two series +[2018-02-13T08:22:41.250] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:22:41.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/TamarNavrotzky and last: Bill Ritter (journalist) +[2018-02-13T08:22:41.355] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:22:41.415] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:22:41.477] [INFO] cheese - inserting 1000 documents. first: Category:Art by topic and last: Plank unit +[2018-02-13T08:22:41.543] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:22:41.863] [INFO] cheese - inserting 1000 documents. first: Romolo Valentino Benedetto Nati and last: Blockbuster Video Entertainment +[2018-02-13T08:22:41.917] [INFO] cheese - inserting 1000 documents. first: Tilgarsley and last: File:John Kerr.JPG +[2018-02-13T08:22:41.976] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:22:42.002] [INFO] cheese - inserting 1000 documents. first: Sound 360 and last: Wikipedia:Articles for deletion/Colonic Felon +[2018-02-13T08:22:42.034] [INFO] cheese - inserting 1000 documents. first: Vaimauga West and last: GBRT +[2018-02-13T08:22:42.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/Review/FC/Instructions and last: File:JasonJollinsPachaBsAs.jpg +[2018-02-13T08:22:42.150] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:22:42.197] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:22:42.231] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:22:42.293] [INFO] cheese - batch complete in: 1.086 secs +[2018-02-13T08:22:42.390] [INFO] cheese - inserting 1000 documents. first: Steve Marriner and last: Trechus thomasbarri +[2018-02-13T08:22:42.470] [INFO] cheese - inserting 1000 documents. first: Dispatch News Service and last: West Preston +[2018-02-13T08:22:42.543] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:22:42.605] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:22:42.826] [INFO] cheese - inserting 1000 documents. first: Serpulorbis inopertus and last: Category:Ancient Hinduism +[2018-02-13T08:22:42.870] [INFO] cheese - inserting 1000 documents. first: Mclaren Mercedes SLR and last: Jane Moffet +[2018-02-13T08:22:42.874] [INFO] cheese - inserting 1000 documents. first: Ananta and last: Richmond Range National Park +[2018-02-13T08:22:42.886] [INFO] cheese - inserting 1000 documents. first: Touch typeing and last: Melbourne Girls' College +[2018-02-13T08:22:42.902] [INFO] cheese - inserting 1000 documents. first: Assize (England) and last: Cinygma +[2018-02-13T08:22:42.903] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:22:42.906] [INFO] cheese - inserting 1000 documents. first: Trechus thunderheadensis and last: Category:American emigrants to Honduras +[2018-02-13T08:22:42.961] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T08:22:43.029] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:22:43.036] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:22:43.088] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T08:22:43.151] [INFO] cheese - batch complete in: 2.178 secs +[2018-02-13T08:22:43.200] [INFO] cheese - inserting 1000 documents. first: An Minh District and last: Inherent bias +[2018-02-13T08:22:43.296] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:22:43.626] [INFO] cheese - inserting 1000 documents. first: Category:United States Department of Health and Human Services and last: Thomson's gazelle +[2018-02-13T08:22:43.667] [INFO] cheese - inserting 1000 documents. first: Gunars Saliņš and last: File:Redshirts Cover.jpg +[2018-02-13T08:22:43.705] [INFO] cheese - inserting 1000 documents. first: PBA Sportsmanship Award and last: File:Marco Polo sheep manuscript.jpg +[2018-02-13T08:22:43.707] [INFO] cheese - inserting 1000 documents. first: Randy Paul Gage and last: Bagrat of Tao +[2018-02-13T08:22:43.755] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:22:43.772] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:22:43.855] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:22:43.902] [INFO] cheese - inserting 1000 documents. first: Canadian federal election 2011 and last: Plain-trick game +[2018-02-13T08:22:43.910] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T08:22:43.931] [INFO] cheese - inserting 1000 documents. first: Harold Goodwin and last: TI Presents the P$C: 25 to Life +[2018-02-13T08:22:43.939] [INFO] cheese - inserting 1000 documents. first: Malsquando and last: Mel Martin +[2018-02-13T08:22:44.016] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:22:44.044] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:22:44.093] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:22:44.308] [INFO] cheese - inserting 1000 documents. first: CVS Pharmacies and last: Lake Spivey +[2018-02-13T08:22:44.392] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T08:22:44.456] [INFO] cheese - inserting 1000 documents. first: Nullapon B acid and last: Eccellenza Piedmont-Aosta Valley +[2018-02-13T08:22:44.484] [INFO] cheese - inserting 1000 documents. first: Bagrat of Tao (disambiguation) and last: The Understanding of Self and Identity +[2018-02-13T08:22:44.542] [INFO] cheese - inserting 1000 documents. first: Template:WWIISovAerosani and last: Love's a Loaded Gun +[2018-02-13T08:22:44.559] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:22:44.564] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:22:44.580] [INFO] cheese - inserting 1000 documents. first: 1930 Central American and Caribbean Games and last: DTOC +[2018-02-13T08:22:44.621] [INFO] cheese - inserting 1000 documents. first: The plantation complex in the Southeastern United States and last: Template:Thessaloniki Bus Route Map (No. 78N) +[2018-02-13T08:22:44.638] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:22:44.673] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:22:44.706] [INFO] cheese - inserting 1000 documents. first: 0-0 and last: Black Rob +[2018-02-13T08:22:44.728] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:22:44.846] [INFO] cheese - inserting 1000 documents. first: Non-ideal resistor and last: File:Falck logo.jpg +[2018-02-13T08:22:44.869] [INFO] cheese - batch complete in: 1.113 secs +[2018-02-13T08:22:44.975] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:22:45.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Abu Dhabi articles by quality statistics and last: Emanuele Paterno +[2018-02-13T08:22:45.103] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:22:45.111] [INFO] cheese - inserting 1000 documents. first: Royal National Park and last: Jack Parsons (rocket engineer) +[2018-02-13T08:22:45.143] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Pembroke Athleta and last: Tommy Hunter CM O.Ont +[2018-02-13T08:22:45.281] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:22:45.307] [INFO] cheese - batch complete in: 2.155 secs +[2018-02-13T08:22:45.393] [INFO] cheese - inserting 1000 documents. first: Harris Teachers College and last: Category:Top-importance Inheritance Cycle articles +[2018-02-13T08:22:45.435] [INFO] cheese - inserting 1000 documents. first: Rented from local authorities and last: File:UniversalJuveniles.jpg +[2018-02-13T08:22:45.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 April 8 and last: Category:1961 in Indian sports +[2018-02-13T08:22:45.456] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:22:45.467] [INFO] cheese - inserting 1000 documents. first: Willink and last: File:Samba in Your Casa Album.jpeg +[2018-02-13T08:22:45.551] [INFO] cheese - inserting 1000 documents. first: Thorne Colliery FC and last: Jack Gilligan +[2018-02-13T08:22:45.556] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:22:45.561] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:22:45.638] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:22:45.655] [INFO] cheese - inserting 1000 documents. first: Thomas Hunter CM O.Ont and last: Davies, Thomas +[2018-02-13T08:22:45.660] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:22:45.730] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:22:45.753] [INFO] cheese - inserting 1000 documents. first: Federal tribunals in the United States and last: Matthias Ziegler +[2018-02-13T08:22:45.876] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:22:46.218] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Inheritance Cycle articles and last: Economic compass +[2018-02-13T08:22:46.234] [INFO] cheese - inserting 1000 documents. first: Oaxacania and last: List of birds of italy +[2018-02-13T08:22:46.267] [INFO] cheese - inserting 1000 documents. first: Category:1962 in Indian sports and last: Dinara, Bihar +[2018-02-13T08:22:46.335] [INFO] cheese - inserting 1000 documents. first: Dawson, Thomas and last: Unn (Bhiwani) +[2018-02-13T08:22:46.345] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:22:46.417] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:22:46.426] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:22:46.449] [INFO] cheese - inserting 1000 documents. first: Haute-Sangha and last: Varaždinske Toplice +[2018-02-13T08:22:46.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/snowathome.com and last: Hudson's Bay Company Archives +[2018-02-13T08:22:46.474] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:22:46.599] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:22:46.598] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:22:46.717] [INFO] cheese - inserting 1000 documents. first: Maneans and last: Iu-mein +[2018-02-13T08:22:46.850] [INFO] cheese - inserting 1000 documents. first: File:Ann Rinaldi - An Acquaintance with Darkness.jpeg and last: 209th pope +[2018-02-13T08:22:46.853] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:22:46.950] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:22:46.969] [INFO] cheese - inserting 1000 documents. first: Holy Week (album) and last: Arisa Sato (model) +[2018-02-13T08:22:47.006] [INFO] cheese - inserting 1000 documents. first: W.A.S.T.E. (Band) and last: Twelve romanesque churches of Cologne +[2018-02-13T08:22:47.042] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:22:47.112] [INFO] cheese - inserting 1000 documents. first: Semiaugmented seventh and last: Rapid City Area School District (South Dakota) +[2018-02-13T08:22:47.182] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:22:47.265] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:22:47.361] [INFO] cheese - inserting 1000 documents. first: Johnny Lozada and last: Shorter, Alabama +[2018-02-13T08:22:47.425] [INFO] cheese - inserting 1000 documents. first: Hoste da Reggio and last: The British Aerosol Manufacturers' Association +[2018-02-13T08:22:47.449] [INFO] cheese - inserting 1000 documents. first: 210th pope and last: Strictosidine b-glucosidase +[2018-02-13T08:22:47.469] [INFO] cheese - inserting 1000 documents. first: Khabees and last: White-eared hummingbird +[2018-02-13T08:22:47.538] [INFO] cheese - batch complete in: 2.231 secs +[2018-02-13T08:22:47.552] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:22:47.597] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:22:47.746] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:22:47.931] [INFO] cheese - inserting 1000 documents. first: 1940s in games and last: Princess Alexia of Greece and Denmark +[2018-02-13T08:22:47.968] [INFO] cheese - inserting 1000 documents. first: Masoud Roghani Zanjani and last: Category:Dutch real estate brokers +[2018-02-13T08:22:48.165] [INFO] cheese - batch complete in: 1.123 secs +[2018-02-13T08:22:48.209] [INFO] cheese - inserting 1000 documents. first: Reunification of Vietnam and last: FC Dynamo-D Stavropol +[2018-02-13T08:22:48.226] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:22:48.339] [INFO] cheese - inserting 1000 documents. first: Furan (disambiguation) and last: Template:Year in various calendars/sandbox +[2018-02-13T08:22:48.457] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:22:48.504] [INFO] cheese - batch complete in: 1.322 secs +[2018-02-13T08:22:48.650] [INFO] cheese - inserting 1000 documents. first: EC 3.2.1.105 and last: Teesdale District Council elections +[2018-02-13T08:22:48.764] [INFO] cheese - inserting 1000 documents. first: Don't Walk Away and last: Stefan Filipović (singer) +[2018-02-13T08:22:48.788] [INFO] cheese - batch complete in: 1.236 secs +[2018-02-13T08:22:48.867] [INFO] cheese - inserting 1000 documents. first: Birkir Bjarnason and last: Harlan K. Ullman +[2018-02-13T08:22:48.914] [INFO] cheese - inserting 1000 documents. first: Category:Major League Baseball Record vs. opponents templates and last: Ekjp +[2018-02-13T08:22:48.912] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T08:22:49.016] [INFO] cheese - batch complete in: 1.27 secs +[2018-02-13T08:22:49.058] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:22:49.246] [INFO] cheese - inserting 1000 documents. first: Thomas Underwood and last: Work Haven +[2018-02-13T08:22:49.287] [INFO] cheese - inserting 1000 documents. first: File:LogoUPACIFICO.gif and last: Wikipedia:Version 1.0 Editorial Team/Metalworking articles by quality/2 +[2018-02-13T08:22:49.324] [INFO] cheese - inserting 1000 documents. first: Pleinfeld station and last: Category:1940 in North Dakota +[2018-02-13T08:22:49.315] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:22:49.363] [INFO] cheese - inserting 1000 documents. first: Willibald Kreß and last: Euroleague 2007–08 Top 16 Group F +[2018-02-13T08:22:49.384] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:22:49.401] [INFO] cheese - inserting 1000 documents. first: Lincoln Perera and last: Figuralchor der Gedächtniskirche Stuttgart +[2018-02-13T08:22:49.417] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:22:49.430] [INFO] cheese - inserting 1000 documents. first: Artland (landscape) and last: Dromoland Castle Golf and Country Club +[2018-02-13T08:22:49.469] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:22:49.540] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:22:49.542] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:22:49.551] [INFO] cheese - inserting 1000 documents. first: Sacalinu Mic Island and last: Category:Hungarian musicians by instrument +[2018-02-13T08:22:49.649] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:22:49.942] [INFO] cheese - inserting 1000 documents. first: Category:1942 in North Dakota and last: Category:NA-Class Australia road transport articles +[2018-02-13T08:22:50.036] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battlefield 2 and last: WECC (FM) +[2018-02-13T08:22:50.038] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:22:50.049] [INFO] cheese - inserting 1000 documents. first: Portal:A Nightmare on Elm Street/Selected actor/4 and last: Category:Wikipedia oversighters +[2018-02-13T08:22:50.114] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:22:50.141] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:22:50.144] [INFO] cheese - inserting 1000 documents. first: Presentation at the Temple and last: Old Skool +[2018-02-13T08:22:50.203] [INFO] cheese - inserting 1000 documents. first: Category:History books about the Zulu Kingdom and last: File:Iss logo.gif +[2018-02-13T08:22:50.237] [INFO] cheese - inserting 1000 documents. first: Double Dragon II (disambiguation) and last: File:Rte2fmlogo.png +[2018-02-13T08:22:50.236] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:22:50.276] [INFO] cheese - inserting 1000 documents. first: Tuskegee, Alabama and last: Aqueous solution +[2018-02-13T08:22:50.331] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:22:50.339] [INFO] cheese - inserting 1000 documents. first: Antwone Quenton Fisher and last: People Who Use People +[2018-02-13T08:22:50.358] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:22:50.472] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:22:50.491] [INFO] cheese - inserting 1000 documents. first: Harbans Bhalla and last: Lauricocha Lake +[2018-02-13T08:22:50.491] [INFO] cheese - batch complete in: 2.952 secs +[2018-02-13T08:22:50.615] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:22:50.766] [INFO] cheese - inserting 1000 documents. first: Fort a la Corne and last: Portal:Current events/Bangladesh/Selected Article/Current +[2018-02-13T08:22:50.774] [INFO] cheese - inserting 1000 documents. first: Tukuma Apriņķis and last: Art. 519 codice penale +[2018-02-13T08:22:50.824] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:22:50.927] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:22:51.145] [INFO] cheese - inserting 1000 documents. first: Russian winters and last: Siw Karlström +[2018-02-13T08:22:51.171] [INFO] cheese - inserting 1000 documents. first: Texas Spur 729 and last: Bedl-i askeri +[2018-02-13T08:22:51.189] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:22:51.199] [INFO] cheese - inserting 1000 documents. first: Independent Macedonia sport hall and last: Kjartansson constant Q model +[2018-02-13T08:22:51.250] [INFO] cheese - inserting 1000 documents. first: Hot Tub lung and last: Georgi Lomaia +[2018-02-13T08:22:51.251] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:22:51.310] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:22:51.377] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:22:51.417] [INFO] cheese - inserting 1000 documents. first: Dark Indigo and last: Environmental Justice +[2018-02-13T08:22:51.515] [INFO] cheese - inserting 1000 documents. first: Keith Getty discography and last: Willem den Toom +[2018-02-13T08:22:51.544] [INFO] cheese - batch complete in: 1.307 secs +[2018-02-13T08:22:51.578] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:22:51.583] [INFO] cheese - inserting 1000 documents. first: Siv Karlström and last: Template:Userbox Dead-end pages +[2018-02-13T08:22:51.675] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T08:22:51.729] [INFO] cheese - inserting 1000 documents. first: Vietnam tea and last: Viișoara, Mureș +[2018-02-13T08:22:51.787] [INFO] cheese - inserting 1000 documents. first: Spanish Conquistadors and last: Sanjiang, Qiandongnan +[2018-02-13T08:22:51.819] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:22:51.831] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:22:51.961] [INFO] cheese - inserting 1000 documents. first: Bukhara State Architectural Art Museum-Preserve and last: Shitenntu014d-ji pagoda +[2018-02-13T08:22:51.963] [INFO] cheese - inserting 1000 documents. first: Amendment 26 and last: Companhia União Fabril +[2018-02-13T08:22:52.040] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:22:52.057] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:22:52.123] [INFO] cheese - inserting 1000 documents. first: Edzo Toxopeus and last: Wikipedia:Featured picture candidates/USMC War Memorial Night +[2018-02-13T08:22:52.165] [INFO] cheese - inserting 1000 documents. first: Cow Oil and last: Stanley Gullan +[2018-02-13T08:22:52.191] [INFO] cheese - inserting 1000 documents. first: W227AW and last: U. S. Route 61 Business (Muscatine, Iowa) +[2018-02-13T08:22:52.223] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:22:52.332] [INFO] cheese - inserting 1000 documents. first: Dartmoor (disambiguation) and last: Wikipedia:Articles on suicides/FAQs +[2018-02-13T08:22:52.356] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:22:52.357] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:22:52.472] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:22:52.543] [INFO] cheese - inserting 1000 documents. first: Thomas Griffiths Wainewright and last: Turgay Seren +[2018-02-13T08:22:52.559] [INFO] cheese - inserting 1000 documents. first: Distilled water and last: Angels Camp, California +[2018-02-13T08:22:52.650] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:22:52.661] [INFO] cheese - inserting 1000 documents. first: Teresa Carpenter and last: Boulevard de l'Outaouais +[2018-02-13T08:22:52.715] [INFO] cheese - batch complete in: 2.223 secs +[2018-02-13T08:22:52.807] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:22:52.854] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox Atlantic 1914–1918 and last: File:Konk flares.jpg +[2018-02-13T08:22:52.918] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:22:52.967] [INFO] cheese - inserting 1000 documents. first: Chionodes scotodes and last: Federation Academic Classical style +[2018-02-13T08:22:52.969] [INFO] cheese - inserting 1000 documents. first: U. S. Route 61 and last: File:Official heights map.jpg +[2018-02-13T08:22:53.027] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:22:53.037] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:22:53.149] [INFO] cheese - inserting 1000 documents. first: Edward Henry Pedris and last: Template:Taxonomy/Sinosaurus +[2018-02-13T08:22:53.240] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:22:53.356] [INFO] cheese - inserting 1000 documents. first: Eranos, Greece and last: File:StatenIslandTech logo.png +[2018-02-13T08:22:53.438] [INFO] cheese - inserting 1000 documents. first: File:The Evolution of Calpurnia Tate.jpeg and last: Category:Dublin University Football Club +[2018-02-13T08:22:53.506] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:22:53.586] [INFO] cheese - inserting 1000 documents. first: Template:Paul Di'Anno and last: Cain, John +[2018-02-13T08:22:53.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Canadian football/Player pages format and last: Beto Carrero +[2018-02-13T08:22:53.595] [INFO] cheese - batch complete in: 1.537 secs +[2018-02-13T08:22:53.675] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:22:53.691] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:22:53.737] [INFO] cheese - inserting 1000 documents. first: Mermaid Man and Barnacle Boy (SpongeBob SquarePants) and last: Francis Walker (entomologist) +[2018-02-13T08:22:53.795] [INFO] cheese - inserting 1000 documents. first: Yevgeni Blokhin and last: Mowtowr-e Kal Mohammad Qanbari +[2018-02-13T08:22:53.810] [INFO] cheese - inserting 1000 documents. first: 33rd Primetime Emmy Awards and last: Incident (film) +[2018-02-13T08:22:53.840] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T08:22:53.910] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:22:53.984] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:22:54.238] [INFO] cheese - inserting 1000 documents. first: Cairns, John and last: Wikipedia:WikiProject Rutgers/Article alerts +[2018-02-13T08:22:54.305] [INFO] cheese - inserting 1000 documents. first: Category:Bicheiros and last: File:Debbs Potts.jpg +[2018-02-13T08:22:54.306] [INFO] cheese - inserting 1000 documents. first: Electrochemicals and last: West Virginia Route 1 +[2018-02-13T08:22:54.343] [INFO] cheese - inserting 1000 documents. first: Mowtowr-e Ali Ahmad Khalqpur and last: 24/Seven (Big Time Rush album) +[2018-02-13T08:22:54.386] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:22:54.432] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:22:54.449] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:22:54.485] [INFO] cheese - inserting 1000 documents. first: Pandoras Tower and last: Hereditary cystatin C amyloid angiopathy +[2018-02-13T08:22:54.486] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:22:54.627] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:22:54.648] [INFO] cheese - inserting 1000 documents. first: Fulton Street (IRT Broadway – Seventh Avenue Line) and last: Sura Penza +[2018-02-13T08:22:54.692] [INFO] cheese - inserting 1000 documents. first: Water (data page) and last: List of governors of the Straits Settlements +[2018-02-13T08:22:54.771] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:22:54.811] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:22:54.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Seton Hall University/Article alerts and last: Diplogon falcatum +[2018-02-13T08:22:54.963] [INFO] cheese - inserting 1000 documents. first: Qasemabad, Rudbar-e Jonubi and last: Category:Media in Sassari +[2018-02-13T08:22:54.985] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:22:55.008] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:22:55.105] [INFO] cheese - inserting 1000 documents. first: File:Mrs. America 1957.JPG and last: Lugny-Bourbonnais +[2018-02-13T08:22:55.152] [INFO] cheese - inserting 1000 documents. first: West Virginia Route 3 (1920s) and last: Quito Square +[2018-02-13T08:22:55.240] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:22:55.246] [INFO] cheese - inserting 1000 documents. first: Chrysargyron and last: Category:1833 establishments in Australia +[2018-02-13T08:22:55.248] [INFO] cheese - inserting 1000 documents. first: Paris Francesco Alghisi and last: Heinz Donhauser +[2018-02-13T08:22:55.262] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:22:55.319] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:22:55.349] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:22:55.443] [INFO] cheese - inserting 1000 documents. first: Diplogon villosum and last: John G. S. Buchanan +[2018-02-13T08:22:55.473] [INFO] cheese - inserting 1000 documents. first: George, South Africa and last: History of Timisoara +[2018-02-13T08:22:55.492] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:22:55.593] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:22:55.615] [INFO] cheese - inserting 1000 documents. first: Pariva Pranati and last: United States House of Representatives election in Wyoming, 1996 +[2018-02-13T08:22:55.693] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:22:55.750] [INFO] cheese - inserting 1000 documents. first: Arnold, California and last: Cherry Hills Village, Colorado +[2018-02-13T08:22:55.789] [INFO] cheese - inserting 1000 documents. first: C18H18Cl18 and last: Expanded Memory Manager +[2018-02-13T08:22:55.870] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T08:22:55.938] [INFO] cheese - inserting 1000 documents. first: United States Box Office Records and last: 17th Duke of York's Royal Canadian Hussars +[2018-02-13T08:22:55.962] [INFO] cheese - batch complete in: 3.246 secs +[2018-02-13T08:22:55.991] [INFO] cheese - inserting 1000 documents. first: Zatch Bell season 1 and last: Mullah Adahdad +[2018-02-13T08:22:56.004] [INFO] cheese - inserting 1000 documents. first: File:Transaero logo (2015).svg and last: MacKay, John +[2018-02-13T08:22:56.052] [INFO] cheese - inserting 1000 documents. first: Sofiya Gubaydulina and last: Slaveholder +[2018-02-13T08:22:56.055] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:22:56.055] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:22:56.094] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:22:56.095] [INFO] cheese - inserting 1000 documents. first: Lugny-Champagne and last: Yakov Eshpai +[2018-02-13T08:22:56.166] [INFO] cheese - inserting 1000 documents. first: Template:Bobsleigh at the 1994 Winter Olympics and last: Mo' Rock +[2018-02-13T08:22:56.189] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:22:56.202] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:22:56.307] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:22:56.434] [INFO] cheese - inserting 1000 documents. first: HA IL AZIZ AHMED AL MAYTHALI and last: Ap'khazet'is Avtonomiuri Respublika +[2018-02-13T08:22:56.498] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:22:56.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kobort Koffa and last: Robogals North America +[2018-02-13T08:22:56.676] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:22:56.768] [INFO] cheese - inserting 1000 documents. first: Keppels Column and last: Norrisian professor +[2018-02-13T08:22:56.870] [INFO] cheese - inserting 1000 documents. first: Said S. Samatar and last: File:Walla Walla locator-MJC.png +[2018-02-13T08:22:56.885] [INFO] cheese - inserting 1000 documents. first: Cussy-le-Châtel and last: Cavalese cable car disaster (1976) +[2018-02-13T08:22:56.943] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:22:56.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected copyright violations/2013-04-17 and last: Bosara errabunda +[2018-02-13T08:22:56.967] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:22:56.973] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:22:57.064] [INFO] cheese - inserting 1000 documents. first: Contus and last: Pierre Etienne Louis Dumont +[2018-02-13T08:22:57.066] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:22:57.109] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of AndreaMimi and last: Wikipedia:Version 1.0 Editorial Team/Festivals articles by quality log +[2018-02-13T08:22:57.173] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T08:22:57.193] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:22:57.309] [INFO] cheese - inserting 1000 documents. first: Dhanana and last: Arizona RedHawks +[2018-02-13T08:22:57.362] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:22:57.457] [INFO] cheese - inserting 1000 documents. first: Pontailler-sur-Saône and last: US Route 33 +[2018-02-13T08:22:57.486] [INFO] cheese - inserting 1000 documents. first: Jurrasic and last: Symon Archer +[2018-02-13T08:22:57.505] [INFO] cheese - inserting 1000 documents. first: Józef Aleksander Jablonowski and last: Slawomir Mrozek +[2018-02-13T08:22:57.506] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:22:57.538] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T08:22:57.586] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:22:57.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/loyaltyfacts.com and last: Elisabeh rohm +[2018-02-13T08:22:57.606] [INFO] cheese - inserting 1000 documents. first: Hypothalamic pituitary adrenal axis and last: Category:Churches in Chicot County, Arkansas +[2018-02-13T08:22:57.631] [INFO] cheese - inserting 1000 documents. first: Timothy McAuliffe and last: File:Le Moulin de Daudet Klaus Schulze Album.jpg +[2018-02-13T08:22:57.690] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:22:57.700] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:22:57.727] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:22:57.858] [INFO] cheese - inserting 1000 documents. first: Man of Straw (novel) and last: Wikipedia:WikiProject Spam/LinkReports/univistainsurance.com +[2018-02-13T08:22:57.903] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:22:57.921] [INFO] cheese - inserting 1000 documents. first: Skoda Superb and last: Gaddget +[2018-02-13T08:22:57.965] [INFO] cheese - inserting 1000 documents. first: Template:1972 Football HOF and last: Sainte-Verge +[2018-02-13T08:22:58.018] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:22:58.120] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:22:58.271] [INFO] cheese - inserting 1000 documents. first: File:Lbss chorus photo.jpg and last: Wikipedia:Version 1.0 Editorial Team/National Register of Historic Places articles by quality/2 +[2018-02-13T08:22:58.273] [INFO] cheese - inserting 1000 documents. first: Mainz Institute of Microtechnology and last: Wikipedia:Articles for deletion/Margaux with an x +[2018-02-13T08:22:58.300] [INFO] cheese - inserting 1000 documents. first: Category:Churches in Tanzania and last: James Wreford Watson +[2018-02-13T08:22:58.336] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:22:58.380] [INFO] cheese - inserting 1000 documents. first: File:Soundanddramacover.jpg and last: Wikipedia:Articles for deletion/Tim Coons +[2018-02-13T08:22:58.380] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:22:58.386] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:22:58.468] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:22:58.605] [INFO] cheese - inserting 1000 documents. first: Sean Ryan and last: Fritz and Chesster +[2018-02-13T08:22:58.632] [INFO] cheese - inserting 1000 documents. first: University College Dublin A. F. C. and last: Language class +[2018-02-13T08:22:58.645] [INFO] cheese - inserting 1000 documents. first: Joe Coleman (1970s pitcher) and last: McShane, John +[2018-02-13T08:22:58.651] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:22:58.694] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:22:58.751] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:22:58.839] [INFO] cheese - inserting 1000 documents. first: Columbine, Colorado and last: West Samoset, Florida +[2018-02-13T08:22:58.895] [INFO] cheese - inserting 1000 documents. first: Paskenta Band of Nomlaki Indians of California and last: 1933 Chesapeake Potomac hurricane +[2018-02-13T08:22:58.969] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:22:58.991] [INFO] cheese - inserting 1000 documents. first: Hezb-E-Islami Gulbuddin and last: Hrabovec nad Laborcom +[2018-02-13T08:22:59.052] [INFO] cheese - batch complete in: 3.09 secs +[2018-02-13T08:22:59.101] [INFO] cheese - inserting 1000 documents. first: Template:Super Cup of the Netherlands and last: 2013 Badminton Asia Championships +[2018-02-13T08:22:59.105] [INFO] cheese - inserting 1000 documents. first: Kane Miller Books and last: Imad Abdel Ghani Sabouni +[2018-02-13T08:22:59.122] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:22:59.205] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:22:59.239] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:22:59.281] [INFO] cheese - inserting 1000 documents. first: W D Caroe and last: Windermere Way +[2018-02-13T08:22:59.355] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:22:59.430] [INFO] cheese - inserting 1000 documents. first: McTaggart, John and last: Opinion polling for the Scottish Parliament election, 2016 +[2018-02-13T08:22:59.478] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:22:59.490] [INFO] cheese - inserting 1000 documents. first: File:MartinaMcBrideGreatestHits.jpg and last: Patrick Hayes +[2018-02-13T08:22:59.582] [INFO] cheese - inserting 1000 documents. first: Football League Cup 1960–61 and last: Lani McIntire +[2018-02-13T08:22:59.590] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:22:59.625] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T08:22:59.660] [INFO] cheese - inserting 1000 documents. first: Arthur Gaskin (squash player) and last: Sylvan Farms Vineyard +[2018-02-13T08:22:59.721] [INFO] cheese - inserting 1000 documents. first: Aghios Antonios and last: Jose de Jesus Corona +[2018-02-13T08:22:59.750] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T08:22:59.800] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:22:59.810] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Did you know?/12 and last: Godfrey Walusimbi +[2018-02-13T08:22:59.904] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:22:59.990] [INFO] cheese - inserting 1000 documents. first: File:Shafter.jpg and last: Fallacy of questionable analogy +[2018-02-13T08:23:00.020] [INFO] cheese - inserting 1000 documents. first: Draft:Alice Rebecca Appenzeller and last: 2018 FIFA World Cup broadcasting rights +[2018-02-13T08:23:00.051] [INFO] cheese - inserting 1000 documents. first: List of keyboardists and last: Koprivnica-Krizevci County +[2018-02-13T08:23:00.074] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T08:23:00.085] [INFO] cheese - inserting 1000 documents. first: Template:Mosques in Brunei and last: The Jonzun Crew +[2018-02-13T08:23:00.085] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:23:00.160] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:23:00.161] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:23:00.323] [INFO] cheese - inserting 1000 documents. first: Das sündige Dorf (disambiguation) and last: Category:Iranian football clubs 2011–12 season +[2018-02-13T08:23:00.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Inakube and last: Craft International +[2018-02-13T08:23:00.366] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:23:00.372] [INFO] cheese - inserting 1000 documents. first: Quiero Ser Como Tu and last: 1944 NFL Championship Game +[2018-02-13T08:23:00.386] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:23:00.474] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:23:00.611] [INFO] cheese - inserting 1000 documents. first: Jacob Hodges and last: Category:Landforms of West Attica +[2018-02-13T08:23:00.679] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:23:00.708] [INFO] cheese - inserting 1000 documents. first: Bor County and last: File:Thriller25.jpg +[2018-02-13T08:23:00.802] [INFO] cheese - inserting 1000 documents. first: Template:UNI deletion and last: File:Asturias president.jpg +[2018-02-13T08:23:00.814] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:23:00.896] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:23:00.986] [INFO] cheese - inserting 1000 documents. first: Inverness-Shire and last: Jamgon mipham rinpoche +[2018-02-13T08:23:00.987] [INFO] cheese - inserting 1000 documents. first: Category:1638 compositions and last: The grill +[2018-02-13T08:23:01.049] [INFO] cheese - inserting 1000 documents. first: Williams v Walker-Thomas Furniture Co and last: File:Burt Shotton.jpg +[2018-02-13T08:23:01.082] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:23:01.080] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:23:01.133] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:23:01.191] [INFO] cheese - inserting 1000 documents. first: Pour Que Tu M'aimes Encore and last: CA-12 +[2018-02-13T08:23:01.277] [INFO] cheese - inserting 1000 documents. first: File:Asubha Body Contemplation 1.png and last: Wikipedia:Articles for deletion/Vadasar +[2018-02-13T08:23:01.313] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:23:01.361] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:23:01.556] [INFO] cheese - inserting 1000 documents. first: Bad Malente-Gremsmühlen and last: McDonald & Co. +[2018-02-13T08:23:01.588] [INFO] cheese - inserting 1000 documents. first: Floirac, Lot and last: Anti-technology +[2018-02-13T08:23:01.632] [INFO] cheese - inserting 1000 documents. first: Vida!... and last: East Gate, British Columbia +[2018-02-13T08:23:01.641] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:23:01.655] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:23:01.683] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Sumbiar ítróttarfelag and last: Development of children +[2018-02-13T08:23:01.715] [INFO] cheese - inserting 1000 documents. first: Whitfield, Manatee County, Florida and last: Rossville, Georgia +[2018-02-13T08:23:01.715] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:23:01.795] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:23:01.829] [INFO] cheese - inserting 1000 documents. first: In the City (The Jam album) and last: Sebkha de Ndrhamcha +[2018-02-13T08:23:01.870] [INFO] cheese - batch complete in: 2.818 secs +[2018-02-13T08:23:01.900] [INFO] cheese - inserting 1000 documents. first: France at the 2015 World Aquatics Championships and last: File:Mildred Fahrni.jpg +[2018-02-13T08:23:01.921] [INFO] cheese - inserting 1000 documents. first: Henri Corbin and last: Minister of housing, spatial planning, and the environment +[2018-02-13T08:23:01.940] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:23:01.967] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:23:02.073] [INFO] cheese - inserting 1000 documents. first: Bite & Chew (Demo) and last: 1970 NCAA football season +[2018-02-13T08:23:02.073] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:23:02.095] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T08:23:02.192] [INFO] cheese - inserting 1000 documents. first: Selinsgrove, PA Micropolitan Statistical Area and last: Brooke Forrester (Brooke Logan) +[2018-02-13T08:23:02.220] [INFO] cheese - inserting 1000 documents. first: On The First Beat (TVB) and last: File:First Afro-Asian Games Logo and Mascot.PNG +[2018-02-13T08:23:02.257] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T08:23:02.301] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:23:02.375] [INFO] cheese - inserting 1000 documents. first: Category:Redirect-Class Universal Parks & Resorts articles and last: Template:POTD/2011-04-24 +[2018-02-13T08:23:02.445] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:23:02.453] [INFO] cheese - inserting 1000 documents. first: Whatever Happened to PJ Soles? and last: Orchard Wyndham +[2018-02-13T08:23:02.469] [INFO] cheese - inserting 1000 documents. first: Yang Huizhen and last: Category:1991 mass shootings in the United States +[2018-02-13T08:23:02.532] [INFO] cheese - inserting 1000 documents. first: Technical University of Crete and last: Cook Neilson +[2018-02-13T08:23:02.576] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T08:23:02.634] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:23:02.701] [INFO] cheese - inserting 1000 documents. first: Pavle Ivic and last: A.net +[2018-02-13T08:23:02.740] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:23:02.829] [INFO] cheese - inserting 1000 documents. first: Gainesville, TX Micropolitan Statistical Area and last: Category:1954 in Turkish sport +[2018-02-13T08:23:02.834] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:23:02.896] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:23:02.924] [INFO] cheese - inserting 1000 documents. first: Birther conspiracy and last: Bob Osborn +[2018-02-13T08:23:03.020] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:23:03.112] [INFO] cheese - inserting 1000 documents. first: Z Z Hill and last: 1967 US National Championships - Men's Singles +[2018-02-13T08:23:03.149] [INFO] cheese - inserting 1000 documents. first: Barbara Anderson (The Young And The Restless) and last: Template:Editnotices/Page/User talk:Chzz/Archive 31 +[2018-02-13T08:23:03.167] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:23:03.210] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:23:03.310] [INFO] cheese - inserting 1000 documents. first: Fray (comic) and last: Marcos Nicolás Delía +[2018-02-13T08:23:03.344] [INFO] cheese - inserting 1000 documents. first: Producer (film) and last: File:PlannedParenthood.JPG +[2018-02-13T08:23:03.372] [INFO] cheese - inserting 1000 documents. first: Category:1953 in Turkish sport and last: Leopold Ružicka +[2018-02-13T08:23:03.388] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:23:03.432] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:23:03.448] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T08:23:03.540] [INFO] cheese - inserting 1000 documents. first: Secret societies in Singapore and last: Iset River +[2018-02-13T08:23:03.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Milosppf/Serbian rock and last: Artillery Battalion +[2018-02-13T08:23:03.587] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:23:03.628] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:23:03.684] [INFO] cheese - inserting 1000 documents. first: Kellogg Airport and last: Category:Wikipedia requested maps of roads in New Mexico +[2018-02-13T08:23:03.764] [INFO] cheese - inserting 1000 documents. first: Galápagos four-Eyed blenny and last: Mongolian legislative election, 1981 +[2018-02-13T08:23:03.802] [INFO] cheese - inserting 1000 documents. first: Ibn Kurr and last: Shrubby daisybush +[2018-02-13T08:23:03.818] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T08:23:03.873] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:23:03.912] [INFO] cheese - inserting 1000 documents. first: Category:20th-century executions by Lithuania and last: El Guettar (Tunisia) +[2018-02-13T08:23:03.939] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T08:23:03.989] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:23:04.141] [INFO] cheese - inserting 1000 documents. first: P. W. Bridgman and last: 118401 Linear +[2018-02-13T08:23:04.202] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:23:04.221] [INFO] cheese - inserting 1000 documents. first: Electoral results for the Division of Gippsland and last: 1989 Virginia Slims of Indian Wells – Doubles +[2018-02-13T08:23:04.299] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:23:04.335] [INFO] cheese - inserting 1000 documents. first: National Natural Landmark and last: Fernand Pelloutier +[2018-02-13T08:23:04.402] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested maps of roads in North Dakota and last: Wikipedia:Articles for deletion/Techorate design +[2018-02-13T08:23:04.406] [INFO] cheese - inserting 1000 documents. first: Category:1917 establishments in Japan and last: Andrzejewska +[2018-02-13T08:23:04.417] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:23:04.444] [INFO] cheese - inserting 1000 documents. first: Trailing African daisy and last: Together (Christine Fan album) +[2018-02-13T08:23:04.446] [INFO] cheese - inserting 1000 documents. first: File:Manchester oxford road and palace theatre 01.jpg and last: Constituency NA-262 +[2018-02-13T08:23:04.454] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:23:04.478] [INFO] cheese - inserting 1000 documents. first: Between, Georgia and last: Victoria, Illinois +[2018-02-13T08:23:04.507] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:23:04.552] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:23:04.564] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:23:04.655] [INFO] cheese - batch complete in: 2.784 secs +[2018-02-13T08:23:04.715] [INFO] cheese - inserting 1000 documents. first: Asdfjkl; and last: Fidelity Fiduciary Bank +[2018-02-13T08:23:04.742] [INFO] cheese - inserting 1000 documents. first: Bull Smith and last: Nacional (Serbia) +[2018-02-13T08:23:04.840] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:23:04.867] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:23:05.139] [INFO] cheese - inserting 1000 documents. first: Battle of Radda and last: SC 11 (disambiguation) +[2018-02-13T08:23:05.172] [INFO] cheese - inserting 1000 documents. first: Francis Mallett and last: Vernois-lès-Belvoir +[2018-02-13T08:23:05.173] [INFO] cheese - inserting 1000 documents. first: Marina Loheit and last: Wikipedia:Reference desk/Archives/Miscellaneous/2011 April 22 +[2018-02-13T08:23:05.185] [INFO] cheese - inserting 1000 documents. first: Litton Das and last: Category:1523 in New Spain +[2018-02-13T08:23:05.227] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:23:05.257] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:23:05.271] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Ford.circles.gif and last: John Corabi +[2018-02-13T08:23:05.286] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:23:05.342] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:23:05.448] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:23:05.646] [INFO] cheese - inserting 1000 documents. first: Bonville, New South Wales and last: Category:Telecommunications companies of Denmark +[2018-02-13T08:23:05.704] [INFO] cheese - inserting 1000 documents. first: File:Family Album DVD cover.jpg and last: Molinos de Viento +[2018-02-13T08:23:05.722] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:23:05.741] [INFO] cheese - inserting 1000 documents. first: Sean Reynolds (disambiguation) and last: 𐎢 +[2018-02-13T08:23:05.829] [INFO] cheese - inserting 1000 documents. first: Le Vernoy and last: Portland–Montreal Pipe Line +[2018-02-13T08:23:05.837] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:23:05.854] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:23:05.873] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2011 April 22 and last: Ahmed Mukhtar Pasha +[2018-02-13T08:23:05.903] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:23:05.915] [INFO] cheese - inserting 1000 documents. first: Sant'Agostino, Lucca and last: Hemis Shukpachan +[2018-02-13T08:23:05.949] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:23:06.033] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:23:06.050] [INFO] cheese - inserting 1000 documents. first: Rivalry and last: Svatopluk Cech +[2018-02-13T08:23:06.112] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:23:06.298] [INFO] cheese - inserting 1000 documents. first: 𐎣 and last: France Angola relations +[2018-02-13T08:23:06.326] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:23:06.351] [INFO] cheese - inserting 1000 documents. first: Category:Telecommunications companies of Sweden and last: Little Black Heart +[2018-02-13T08:23:06.417] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:23:06.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Miss United Continent 2013 (2nd nomination) and last: Wikipedia:Sockpuppet investigations/220.240.44.143 +[2018-02-13T08:23:06.553] [INFO] cheese - inserting 1000 documents. first: File:WGI Dinner.jpg and last: Colgate, West Sussex +[2018-02-13T08:23:06.633] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:23:06.645] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:23:06.708] [INFO] cheese - inserting 1000 documents. first: بازئی and last: Daneu +[2018-02-13T08:23:06.755] [INFO] cheese - inserting 1000 documents. first: France – Angola relations and last: Template:TFA title/April 26, 2013 +[2018-02-13T08:23:06.809] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:23:06.887] [INFO] cheese - inserting 1000 documents. first: Babak and last: Work-flow +[2018-02-13T08:23:06.891] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:23:06.965] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/bobanddan.com and last: Wikipedia:Articles for deletion/Shane O'Connor (soccer) +[2018-02-13T08:23:07.061] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:23:07.137] [INFO] cheese - batch complete in: 1.3 secs +[2018-02-13T08:23:07.326] [INFO] cheese - inserting 1000 documents. first: North Herefordshire and last: Wikipedia:Articles for deletion/Siġġiewi (streets) +[2018-02-13T08:23:07.397] [INFO] cheese - inserting 1000 documents. first: Roman-Sabine wars and last: Nara Shumsher JBR +[2018-02-13T08:23:07.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jonathan Davis (audiobook narrator) and last: Wikipedia:WikiProject Spam/LinkReports/petit-train.info +[2018-02-13T08:23:07.467] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:23:07.493] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:23:07.566] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:23:07.607] [INFO] cheese - inserting 1000 documents. first: Category:Governors of North Jeolla Province and last: Category:Men's national sports teams of Scotland +[2018-02-13T08:23:07.616] [INFO] cheese - inserting 1000 documents. first: Wataga, Illinois and last: Michiana Shores, Indiana +[2018-02-13T08:23:07.651] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:23:07.691] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Sandusky County, Ohio and last: Figurines (album) +[2018-02-13T08:23:07.758] [INFO] cheese - batch complete in: 3.103 secs +[2018-02-13T08:23:07.793] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T08:23:07.858] [INFO] cheese - inserting 1000 documents. first: Music Choice/Dance Channel and last: Wikipedia:Articles for deletion/Stephanie Snodgrass +[2018-02-13T08:23:07.939] [INFO] cheese - inserting 1000 documents. first: Template:Languages of Ukraine and last: 2015–16 Middle Tennessee Blue Raiders men's basketball team +[2018-02-13T08:23:07.959] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:23:07.990] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:23:08.008] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sister Cities of Quincy, Illinois and last: Stefan Heidemann +[2018-02-13T08:23:08.026] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Saskatchewan and last: Leeds college of art and design +[2018-02-13T08:23:08.096] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:23:08.110] [INFO] cheese - inserting 1000 documents. first: Route Verte and last: Myvideo +[2018-02-13T08:23:08.150] [INFO] cheese - batch complete in: 1.013 secs +[2018-02-13T08:23:08.178] [INFO] cheese - inserting 1000 documents. first: Category:Hotels in Pyongyang and last: Hoseynabad-e Do, Rayen +[2018-02-13T08:23:08.183] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:23:08.257] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:23:08.351] [INFO] cheese - inserting 1000 documents. first: Category:Saudi Arabian bloggers and last: Personalised television +[2018-02-13T08:23:08.362] [INFO] cheese - inserting 1000 documents. first: Benito Juárez Municipality, Zacatecas and last: Harrower, Elizabeth +[2018-02-13T08:23:08.403] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T08:23:08.492] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:23:08.748] [INFO] cheese - inserting 1000 documents. first: Guerrero Negro Jr and last: Bazhanova coal mine +[2018-02-13T08:23:08.781] [INFO] cheese - inserting 1000 documents. first: Cello tape and last: 2003 term United States Supreme Court opinions of Anthony Kennedy +[2018-02-13T08:23:08.807] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Trains/ICC valuations/Burlington, Muscatine and Northwestern Railway and last: Tico Zamora +[2018-02-13T08:23:08.807] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:23:08.834] [INFO] cheese - inserting 1000 documents. first: Myvideo.de and last: Wikipedia:Featured article candidates/Ross Sea party +[2018-02-13T08:23:08.844] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T08:23:08.900] [INFO] cheese - inserting 1000 documents. first: Lumix TZ3 and last: Evergreen huckleberry +[2018-02-13T08:23:08.909] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:23:08.929] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:23:08.940] [INFO] cheese - inserting 1000 documents. first: Frank C. McCord and last: Hambleton (disambiguation) +[2018-02-13T08:23:09.003] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:23:09.108] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:23:09.116] [INFO] cheese - inserting 1000 documents. first: Category:Railway locomotives introduced in 1865 and last: Template:Hugo Award for Best Dramatic Presentation, Long Form +[2018-02-13T08:23:09.196] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:23:09.304] [INFO] cheese - inserting 1000 documents. first: Michael Williamson (swimmer) and last: File:Katy Garbi - Apo Kardias 2013 (Commercial Release).jpg +[2018-02-13T08:23:09.378] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:23:09.414] [INFO] cheese - inserting 1000 documents. first: Matthew Paige "Matt" Damon and last: Template:PDB Gallery/6347 +[2018-02-13T08:23:09.444] [INFO] cheese - inserting 1000 documents. first: Rairakhol State and last: Affairs Today +[2018-02-13T08:23:09.446] [INFO] cheese - inserting 1000 documents. first: News4Kids and last: Highest Waterfall +[2018-02-13T08:23:09.455] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:23:09.545] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T08:23:09.556] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:23:09.611] [INFO] cheese - inserting 1000 documents. first: Hamzat Gelayev and last: R31 +[2018-02-13T08:23:09.679] [INFO] cheese - inserting 1000 documents. first: Michigan City, Indiana and last: Fine Gael Party +[2018-02-13T08:23:09.731] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:23:09.803] [INFO] cheese - inserting 1000 documents. first: Adams & Prentice and last: Blackbar blenny +[2018-02-13T08:23:09.869] [INFO] cheese - inserting 1000 documents. first: Category:James Pond and last: Aceh Rat +[2018-02-13T08:23:09.985] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:23:09.990] [INFO] cheese - batch complete in: 2.232 secs +[2018-02-13T08:23:10.001] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T08:23:10.087] [INFO] cheese - inserting 1000 documents. first: Eduard Friedrich Eversmann and last: Live 8 concert, Cornwall +[2018-02-13T08:23:10.138] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:23:10.175] [INFO] cheese - inserting 1000 documents. first: Davis–Kahan theorem and last: Wikipedia:GIJOE +[2018-02-13T08:23:10.235] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:23:10.333] [INFO] cheese - inserting 1000 documents. first: Template:R from E2 symmetry/doc and last: Azoyú Municipality +[2018-02-13T08:23:10.373] [INFO] cheese - inserting 1000 documents. first: File:Twotracking.jpg and last: Mario Cotelo +[2018-02-13T08:23:10.379] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:23:10.402] [INFO] cheese - inserting 1000 documents. first: Helle, Sogn og Fjordane and last: Jason Sebastian Russo +[2018-02-13T08:23:10.448] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:23:10.474] [INFO] cheese - inserting 1000 documents. first: Blackbar Blenny and last: Bulgaria – Denmark relations +[2018-02-13T08:23:10.500] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Idaho/tasks/Under review/FAC and last: Dave's Picks Volume 6 +[2018-02-13T08:23:10.521] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:23:10.627] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:23:10.629] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:23:10.771] [INFO] cheese - inserting 1000 documents. first: The Californian (1880s magazine) and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/1569 +[2018-02-13T08:23:10.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sebastian Noack and last: Maraş lion +[2018-02-13T08:23:10.888] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:23:10.941] [INFO] cheese - inserting 1000 documents. first: Czech Republic France relations and last: Category:LGBT culture in Riga +[2018-02-13T08:23:10.971] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T08:23:10.993] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:23:11.080] [INFO] cheese - inserting 1000 documents. first: Political parties in Western Sahara and last: Jackson 5 Christmas Album +[2018-02-13T08:23:11.123] [INFO] cheese - inserting 1000 documents. first: Mike Potekhen and last: Learndirect +[2018-02-13T08:23:11.141] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:23:11.180] [INFO] cheese - inserting 1000 documents. first: Chris Terry and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Rational Skepticism +[2018-02-13T08:23:11.202] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:23:11.235] [INFO] cheese - inserting 1000 documents. first: Denmark – Romania relations and last: Wikipedia:Articles for deletion/Dj Ashley Power +[2018-02-13T08:23:11.253] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:23:11.303] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:23:11.395] [INFO] cheese - inserting 1000 documents. first: Category:Papua (province) geography stubs and last: Wikipedia:Articles for deletion/ME-Mydoc +[2018-02-13T08:23:11.411] [INFO] cheese - inserting 1000 documents. first: Number One (DVD) and last: Crayons to classrooms +[2018-02-13T08:23:11.443] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T08:23:11.488] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:23:11.607] [INFO] cheese - inserting 1000 documents. first: List of ethnobotanists and last: Cheshmeh-ye Gazuiyeh +[2018-02-13T08:23:11.685] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:23:11.700] [INFO] cheese - inserting 1000 documents. first: Dury, Somme and last: Delmar, Vina +[2018-02-13T08:23:11.764] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:23:11.849] [INFO] cheese - inserting 1000 documents. first: Tecophilaea and last: Wikipedia:Articles for deletion/Kimber West +[2018-02-13T08:23:11.855] [INFO] cheese - inserting 1000 documents. first: ACWW and last: Card Mondor +[2018-02-13T08:23:11.953] [INFO] cheese - inserting 1000 documents. first: Hesarooie Motor-e Nazar Narooyi Ahmad and last: Stephen Keech +[2018-02-13T08:23:11.956] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:23:11.957] [INFO] cheese - inserting 1000 documents. first: The War in the Air and last: Chatrapati +[2018-02-13T08:23:11.957] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:23:11.980] [INFO] cheese - inserting 1000 documents. first: Geothermal power in Iceland and last: Winona, Kansas +[2018-02-13T08:23:12.025] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T08:23:12.068] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Gazu'iyeh and last: File:Pattern sheet, MS 32a 17A for Essex class.jpg +[2018-02-13T08:23:12.113] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:23:12.191] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Trains/ICC valuations/Central Railway of Arkansas and last: J.A. Douglas McCurdy +[2018-02-13T08:23:12.235] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:23:12.244] [INFO] cheese - batch complete in: 2.254 secs +[2018-02-13T08:23:12.337] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:23:12.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/maxxx.ucoz.ru and last: Template:User Standard Grade student +[2018-02-13T08:23:12.521] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:23:12.702] [INFO] cheese - inserting 1000 documents. first: P marker and last: File:Boise State San Diego State 2014.png +[2018-02-13T08:23:12.718] [INFO] cheese - inserting 1000 documents. first: File:ShootMeDown.jpg and last: State Road 30 (Florida) +[2018-02-13T08:23:12.763] [INFO] cheese - inserting 1000 documents. first: Template:2011 WFA Northwest Division standings and last: League of Communists of Vojvodina +[2018-02-13T08:23:12.784] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:23:12.809] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:23:12.834] [INFO] cheese - inserting 1000 documents. first: Pesticide use in the United States and last: Template:PDB Gallery/22992 +[2018-02-13T08:23:12.858] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:23:12.875] [INFO] cheese - inserting 1000 documents. first: Lucien Adam and last: Karl Riedl +[2018-02-13T08:23:12.921] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:23:12.987] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:23:12.990] [INFO] cheese - inserting 1000 documents. first: Danny Baldwin and last: The Radiators from Space +[2018-02-13T08:23:13.034] [INFO] cheese - inserting 1000 documents. first: Joe mondragon and last: Mastoid fontanelle +[2018-02-13T08:23:13.093] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:23:13.145] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:23:13.303] [INFO] cheese - inserting 1000 documents. first: BVC Amsterdam and last: Chusan City +[2018-02-13T08:23:13.319] [INFO] cheese - inserting 1000 documents. first: Beecher Bay Indian Ban and last: Chess/FamousPlayers +[2018-02-13T08:23:13.350] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:23:13.372] [INFO] cheese - inserting 1000 documents. first: MNC-Kalonji and last: Euan Dale +[2018-02-13T08:23:13.377] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:23:13.463] [INFO] cheese - inserting 1000 documents. first: Fragmentality and last: Khurcha +[2018-02-13T08:23:13.463] [INFO] cheese - inserting 1000 documents. first: Decorative Art Museum and last: File:Winter In Manhattan2.jpg +[2018-02-13T08:23:13.477] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:23:13.535] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:23:13.536] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:23:13.685] [INFO] cheese - inserting 1000 documents. first: Sphenoidal fontanelle and last: Haryana Board of School Education +[2018-02-13T08:23:13.752] [INFO] cheese - inserting 1000 documents. first: File:Alberto Lysy.jpg and last: Bryan Stanley +[2018-02-13T08:23:13.755] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:23:13.838] [INFO] cheese - inserting 1000 documents. first: Category:1805 establishments in Sweden and last: Walter Vaz +[2018-02-13T08:23:13.840] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T08:23:13.932] [INFO] cheese - inserting 1000 documents. first: PZL.23 Karas and last: Joe Banister +[2018-02-13T08:23:13.934] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:23:14.005] [INFO] cheese - inserting 1000 documents. first: Bert Longstaff and last: Hans-Joachim Recknitz +[2018-02-13T08:23:14.005] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:23:14.050] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T08:23:14.106] [INFO] cheese - inserting 1000 documents. first: US 401 (NC) and last: Single slit diffraction +[2018-02-13T08:23:14.113] [INFO] cheese - inserting 1000 documents. first: Cavalhada and last: Jericho (J-Twizzle) +[2018-02-13T08:23:14.150] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/5831 and last: William Greig +[2018-02-13T08:23:14.210] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:23:14.224] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T08:23:14.228] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:23:14.382] [INFO] cheese - inserting 1000 documents. first: High Density Lipoprotein and last: Chiliss +[2018-02-13T08:23:14.403] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2013 April 26 and last: Safety-valve organization +[2018-02-13T08:23:14.418] [INFO] cheese - inserting 1000 documents. first: William M. Blackburn and last: A.J. Brooks +[2018-02-13T08:23:14.440] [INFO] cheese - inserting 1000 documents. first: Admire, Kansas and last: Rayville, Louisiana +[2018-02-13T08:23:14.425] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:23:14.487] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:23:14.509] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:23:14.618] [INFO] cheese - batch complete in: 2.373 secs +[2018-02-13T08:23:14.677] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/7090 and last: List of villages in Agra district +[2018-02-13T08:23:14.716] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:23:14.789] [INFO] cheese - inserting 1000 documents. first: Prove your love and last: 1889 English cricket season +[2018-02-13T08:23:14.884] [INFO] cheese - inserting 1000 documents. first: Diaspora terrorism and last: Treasury Wine Estates +[2018-02-13T08:23:14.888] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:23:14.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gifford Observatory and last: Bellevue High School, Bellevue, Washington +[2018-02-13T08:23:15.029] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:23:15.058] [INFO] cheese - inserting 1000 documents. first: Safety-valve organisation and last: Category:Presidents of the Cook County Board of Commissioners +[2018-02-13T08:23:15.072] [INFO] cheese - inserting 1000 documents. first: .CZ and last: Martin Township, Allegan County, Michigan +[2018-02-13T08:23:15.077] [INFO] cheese - inserting 1000 documents. first: Live in London (Helen Reddy album) and last: Category:1601 in the Spanish East Indies +[2018-02-13T08:23:15.094] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:23:15.143] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:23:15.198] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:23:15.291] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:23:15.436] [INFO] cheese - inserting 1000 documents. first: National defence policy and last: File:Plant ID 004 (Medium).jpg +[2018-02-13T08:23:15.503] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:23:15.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Import classic 2 and last: In-air refueling +[2018-02-13T08:23:15.562] [INFO] cheese - inserting 1000 documents. first: Category:1603 in the Spanish East Indies and last: Sin Escape Con Correas +[2018-02-13T08:23:15.600] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:23:15.618] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:23:15.713] [INFO] cheese - inserting 1000 documents. first: File:BedlamXForce.jpg and last: Sofia Winters +[2018-02-13T08:23:15.737] [INFO] cheese - inserting 1000 documents. first: Mossoul and last: Lower Yangtze Mandarin Chinese +[2018-02-13T08:23:15.787] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:23:15.803] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:23:15.824] [INFO] cheese - inserting 1000 documents. first: Keke Mortson and last: Category:Sportspeople of Indian descent +[2018-02-13T08:23:15.905] [INFO] cheese - inserting 1000 documents. first: Olli Wisdom and last: Irish Party +[2018-02-13T08:23:15.921] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:23:16.041] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:23:16.122] [INFO] cheese - inserting 1000 documents. first: Category:Bostrichidae and last: Brooks-Simms +[2018-02-13T08:23:16.142] [INFO] cheese - inserting 1000 documents. first: Overcharge and last: The Pursuit of Garlic +[2018-02-13T08:23:16.173] [INFO] cheese - inserting 1000 documents. first: Wila Kunka (Cusco) and last: Robert E. Campbell +[2018-02-13T08:23:16.206] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:23:16.224] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:23:16.280] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:23:16.385] [INFO] cheese - inserting 1000 documents. first: MPW Boulton and last: Category:Songs written by Géraldine Delacoux +[2018-02-13T08:23:16.388] [INFO] cheese - inserting 1000 documents. first: Poirieria hemmenorum and last: Chris Culliver +[2018-02-13T08:23:16.456] [INFO] cheese - inserting 1000 documents. first: 1994 Swiss Indoors and last: Category:Media in Northumberland +[2018-02-13T08:23:16.484] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:23:16.640] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:23:16.652] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:23:16.899] [INFO] cheese - inserting 1000 documents. first: Three Bridges depot and last: Musi Rawas +[2018-02-13T08:23:16.907] [INFO] cheese - inserting 1000 documents. first: Hettinger Municipal Airport and last: FCK Handball +[2018-02-13T08:23:16.924] [INFO] cheese - inserting 1000 documents. first: Converse, Louisiana and last: Smith Mills, Massachusetts +[2018-02-13T08:23:16.955] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:23:17.016] [INFO] cheese - inserting 1000 documents. first: Cross-presentation and last: Datu Saudi-Ampatuan, Maguindanao +[2018-02-13T08:23:17.019] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:23:17.080] [INFO] cheese - inserting 1000 documents. first: State Road 363 (Florida) and last: Category:Israeli classical violinists +[2018-02-13T08:23:17.136] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:23:17.189] [INFO] cheese - inserting 1000 documents. first: File:What Technology Wants, Book Cover Art.jpg and last: Morris Murdock Travel, LLC +[2018-02-13T08:23:17.193] [INFO] cheese - batch complete in: 2.575 secs +[2018-02-13T08:23:17.149] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T08:23:17.284] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:23:17.335] [INFO] cheese - inserting 1000 documents. first: File:Caughtupinyou.jpg and last: Julián Sotelo Madrazo +[2018-02-13T08:23:17.336] [INFO] cheese - inserting 1000 documents. first: IL18R1 and last: Igor Stojaković +[2018-02-13T08:23:17.421] [INFO] cheese - inserting 1000 documents. first: FujiFilm FinePix M603 and last: Calothamnus phellosus +[2018-02-13T08:23:17.404] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:23:17.450] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:23:17.528] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:23:17.538] [INFO] cheese - inserting 1000 documents. first: Category:Australian horse racing lists and last: Sydney F. Foster +[2018-02-13T08:23:17.588] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:23:17.740] [INFO] cheese - inserting 1000 documents. first: Latitude Learning LLC and last: Raplun +[2018-02-13T08:23:17.793] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:23:17.806] [INFO] cheese - inserting 1000 documents. first: The Secret Snake Club vs. P.E. / King Tooten Pooten and last: Hannah Greenwood +[2018-02-13T08:23:17.901] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:23:17.941] [INFO] cheese - inserting 1000 documents. first: Lactucopsis and last: Pugh Ford Bridge +[2018-02-13T08:23:17.974] [INFO] cheese - inserting 1000 documents. first: KWQ and last: File:Room to Live.jpg +[2018-02-13T08:23:17.983] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:23:18.015] [INFO] cheese - inserting 1000 documents. first: Walnut Township, Brown County, Kansas and last: Marchais-Beton +[2018-02-13T08:23:18.062] [INFO] cheese - inserting 1000 documents. first: Template:Ibdb title and last: Āsavas +[2018-02-13T08:23:18.086] [INFO] cheese - inserting 1000 documents. first: Love & Rage and last: Farm Town, Leicestershire +[2018-02-13T08:23:18.089] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:23:18.106] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:23:18.163] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:23:18.225] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:23:18.240] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Leonard Marbury and last: Walk and Talk short film +[2018-02-13T08:23:18.329] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:23:18.405] [INFO] cheese - inserting 1000 documents. first: List of niger-related topics and last: Aspidosperma olivaceum +[2018-02-13T08:23:18.407] [INFO] cheese - inserting 1000 documents. first: Lullaby and... THE CEASLESS ROAR and last: Notre Dame Academy, Park Hills, Kentucky +[2018-02-13T08:23:18.464] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T08:23:18.532] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:23:18.679] [INFO] cheese - inserting 1000 documents. first: Coed Confidential and last: Ding Xian +[2018-02-13T08:23:18.704] [INFO] cheese - inserting 1000 documents. first: Stanley primary school and last: Mozambique – Canada relations +[2018-02-13T08:23:18.734] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:23:18.790] [INFO] cheese - inserting 1000 documents. first: Shining Darkness (novel) and last: William Jordan Graves +[2018-02-13T08:23:18.868] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:23:18.958] [INFO] cheese - inserting 1000 documents. first: Category:Northern Mariana Islands football (soccer) clubs and last: Category:Shudra castes +[2018-02-13T08:23:18.966] [INFO] cheese - inserting 1000 documents. first: Wolf Frankenstein and last: Wikipedia:Articles for deletion/Thebrokenoperation +[2018-02-13T08:23:18.997] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:23:19.069] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:23:19.120] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:23:19.175] [INFO] cheese - inserting 1000 documents. first: Category:People from Pochayiv and last: Dave Ewing (footballer, born 1881) +[2018-02-13T08:23:19.288] [INFO] cheese - inserting 1000 documents. first: Erich von Hornbostel and last: Coe Township, Michigan +[2018-02-13T08:23:19.286] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:23:19.371] [INFO] cheese - inserting 1000 documents. first: Category:Companies established in 1842 and last: Eustace II Grenier +[2018-02-13T08:23:19.405] [INFO] cheese - batch complete in: 2.209 secs +[2018-02-13T08:23:19.475] [INFO] cheese - inserting 1000 documents. first: Mozambique Canada relations and last: Category:1880s in Montana +[2018-02-13T08:23:19.517] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:23:19.526] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:23:19.541] [INFO] cheese - inserting 1000 documents. first: List of number-one country albums of 1996 (Canada) and last: Wikipedia:Version 1.0 Editorial Team/Motorcycling articles by quality/4 +[2018-02-13T08:23:19.657] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:23:19.757] [INFO] cheese - inserting 1000 documents. first: Ed Morgan (baseball) and last: Cham Wings Airlines +[2018-02-13T08:23:19.799] [INFO] cheese - inserting 1000 documents. first: Steritruncated 5-cube and last: Template:Canadian federal election, 2011/ab-e +[2018-02-13T08:23:19.833] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:23:19.866] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:23:19.981] [INFO] cheese - inserting 1000 documents. first: Autofinger and last: Al Ewing +[2018-02-13T08:23:20.007] [INFO] cheese - inserting 1000 documents. first: File:Picture of Gravestone Marker.jpg and last: Atassi mosque +[2018-02-13T08:23:20.008] [INFO] cheese - inserting 1000 documents. first: Ernst Mahler (painter) and last: Balochistan University of Engineering and Technology Khuzdar +[2018-02-13T08:23:20.072] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:23:20.079] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:23:20.124] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:23:20.235] [INFO] cheese - inserting 1000 documents. first: Category:Rebel Highway series and last: Ury House +[2018-02-13T08:23:20.256] [INFO] cheese - inserting 1000 documents. first: Richard Matheson's Hell House and last: Category:People from Taliaferro County, Georgia +[2018-02-13T08:23:20.291] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:23:20.338] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:23:20.490] [INFO] cheese - inserting 1000 documents. first: A360 Lena Highway and last: Windham and Brooklyn Turnpike +[2018-02-13T08:23:20.539] [INFO] cheese - inserting 1000 documents. first: Bernard (Bishop of Gaeta) and last: Ponor cave +[2018-02-13T08:23:20.566] [INFO] cheese - inserting 1000 documents. first: File:Mullah Omar reveals the Prophet's cloak.jpg and last: Courthouse Historic District (Logansport, Indiana) +[2018-02-13T08:23:20.569] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:23:20.604] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:23:20.646] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:23:20.715] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Bermuda and last: Category:Protected areas of Vanderburgh County, Indiana +[2018-02-13T08:23:20.813] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:23:20.881] [INFO] cheese - inserting 1000 documents. first: Bulgaria at the 1924 Summer Olympics and last: File:Naeim Giladi.jpg +[2018-02-13T08:23:20.907] [INFO] cheese - inserting 1000 documents. first: Luca Delia Robbia and last: Adrian Ward (American football) +[2018-02-13T08:23:20.982] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:23:21.002] [INFO] cheese - inserting 1000 documents. first: Template:MecklenburgischeSeenplatte-geo-stub and last: Wikipedia:Templates for deletion/Log/2009 August 1 +[2018-02-13T08:23:21.092] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:23:21.129] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:23:21.274] [INFO] cheese - inserting 1000 documents. first: Coldwater Township, Isabella County, Michigan and last: Interior Township, Michigan +[2018-02-13T08:23:21.292] [INFO] cheese - inserting 1000 documents. first: Preeti Malhotra and last: Gymnoscelis tibialis +[2018-02-13T08:23:21.315] [INFO] cheese - inserting 1000 documents. first: River Leven (Dunbartonshire) and last: Trichymenia wrightii +[2018-02-13T08:23:21.377] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:23:21.403] [INFO] cheese - batch complete in: 1.997 secs +[2018-02-13T08:23:21.459] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:23:21.506] [INFO] cheese - inserting 1000 documents. first: Adrian Sager and last: Le Villey +[2018-02-13T08:23:21.643] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:23:21.684] [INFO] cheese - inserting 1000 documents. first: TeenNick "The 90's Are All That!" and last: Camayura +[2018-02-13T08:23:21.793] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:23:21.803] [INFO] cheese - inserting 1000 documents. first: SITD and last: Daniel Gélin +[2018-02-13T08:23:21.879] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:23:21.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2009 August 1 and last: Cavallone Cave +[2018-02-13T08:23:22.024] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:23:22.040] [INFO] cheese - inserting 1000 documents. first: VF-92 (1952–75) and last: Category:Aradan County geography stubs +[2018-02-13T08:23:22.104] [INFO] cheese - inserting 1000 documents. first: Category:Novels about art and creativity and last: Eklöf +[2018-02-13T08:23:22.104] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:23:22.151] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:23:22.287] [INFO] cheese - inserting 1000 documents. first: Bay State Raceway and last: Bufallo Bills +[2018-02-13T08:23:22.309] [INFO] cheese - inserting 1000 documents. first: West Australian Newspapers Holdings Limited and last: Bella Woolf Southorn +[2018-02-13T08:23:22.342] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:23:22.346] [INFO] cheese - inserting 1000 documents. first: Canticle for Leibowitz and last: Missouri Route 175 +[2018-02-13T08:23:22.377] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:23:22.387] [INFO] cheese - inserting 1000 documents. first: Shin'ichirō Nakamura and last: Alejandro Melchor +[2018-02-13T08:23:22.437] [INFO] cheese - inserting 1000 documents. first: Ulysses (movie) and last: Camp Douglas (disambiguation) +[2018-02-13T08:23:22.478] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:23:22.513] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:23:22.530] [INFO] cheese - batch complete in: 1.438 secs +[2018-02-13T08:23:22.626] [INFO] cheese - inserting 1000 documents. first: Template:Columbus Crew squad and last: Terengganu State Football Association +[2018-02-13T08:23:22.627] [INFO] cheese - inserting 1000 documents. first: Category:Aradan County and last: Template:Location map United Kingdom Gibraltar +[2018-02-13T08:23:22.667] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:23:22.683] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:23:22.863] [INFO] cheese - inserting 1000 documents. first: HK Vitebsk and last: Borza +[2018-02-13T08:23:22.884] [INFO] cheese - inserting 1000 documents. first: Longeville-lès-Saint-Avold and last: Wikipedia:MESO/CITEA +[2018-02-13T08:23:22.905] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:23:22.906] [INFO] cheese - inserting 1000 documents. first: Matchwood Township, Michigan and last: Jenkins Township, Crow Wing County, Minnesota +[2018-02-13T08:23:22.954] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:23:22.974] [INFO] cheese - inserting 1000 documents. first: Portal:Government of India/Selected anniversaries/November 7 and last: Ion Sancho +[2018-02-13T08:23:22.996] [INFO] cheese - inserting 1000 documents. first: File:Rev cover.jpg and last: 1999 World Championships in Athletics - Women's 4 x 100 metres relay +[2018-02-13T08:23:23.033] [INFO] cheese - batch complete in: 1.63 secs +[2018-02-13T08:23:23.073] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:23:23.115] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:23:23.119] [INFO] cheese - inserting 1000 documents. first: Botswana-Bangladesh relations and last: Category:Andorran expatriates in Spain +[2018-02-13T08:23:23.128] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean people of Indian descent and last: Radischevskiy Raion +[2018-02-13T08:23:23.206] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:23:23.215] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:23:23.219] [INFO] cheese - inserting 1000 documents. first: Secondary boycotts and last: Kanarese language +[2018-02-13T08:23:23.326] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:23:23.397] [INFO] cheese - inserting 1000 documents. first: Fodorkút and last: Category:Listed buildings in Merthyr Tydfil County Borough +[2018-02-13T08:23:23.465] [INFO] cheese - inserting 1000 documents. first: Monica Sandve and last: Opoutere, New Zealand +[2018-02-13T08:23:23.494] [INFO] cheese - inserting 1000 documents. first: Bombardier Wells and last: Intertoto Cup 1962–63 +[2018-02-13T08:23:23.523] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:23:23.575] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:23:23.578] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T08:23:23.637] [INFO] cheese - inserting 1000 documents. first: Portal:Snakes/Selected picture and last: G.B Soria +[2018-02-13T08:23:23.673] [INFO] cheese - inserting 1000 documents. first: Radischevski Raion and last: Macroplanar +[2018-02-13T08:23:23.685] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:23:23.729] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T08:23:23.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Uruguay/Article Classification and last: Domaša +[2018-02-13T08:23:23.909] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:23:24.064] [INFO] cheese - inserting 1000 documents. first: Games People Play! (The Raccoons) and last: SS Supporting Members' Organisation +[2018-02-13T08:23:24.072] [INFO] cheese - inserting 1000 documents. first: Intertoto Cup 1963–64 and last: Days between stations (novel) +[2018-02-13T08:23:24.088] [INFO] cheese - inserting 1000 documents. first: File:SomethingRightCD1.jpg and last: La Guéroulde +[2018-02-13T08:23:24.127] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:23:24.145] [INFO] cheese - inserting 1000 documents. first: Category:2022 in Asian football and last: European field-pansy +[2018-02-13T08:23:24.161] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:23:24.163] [INFO] cheese - inserting 1000 documents. first: Zeiss Macroplanar and last: Category:1894 establishments in Portugal +[2018-02-13T08:23:24.191] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:23:24.224] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T08:23:24.250] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:23:24.304] [INFO] cheese - inserting 1000 documents. first: Disposable Teens and last: Bennedetto Croce +[2018-02-13T08:23:24.329] [INFO] cheese - inserting 1000 documents. first: Lake Edward Township, Crow Wing County, Minnesota and last: Randall, Minnesota +[2018-02-13T08:23:24.411] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T08:23:24.443] [INFO] cheese - batch complete in: 1.41 secs +[2018-02-13T08:23:24.523] [INFO] cheese - inserting 1000 documents. first: The Whartons and last: Bourgoin +[2018-02-13T08:23:24.659] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:23:24.700] [INFO] cheese - inserting 1000 documents. first: Category:Nuclear Assault video albums and last: Versus (manga) +[2018-02-13T08:23:24.764] [INFO] cheese - inserting 1000 documents. first: Sungnye and last: Bloomington Symphony Orchestra +[2018-02-13T08:23:24.784] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:23:24.820] [INFO] cheese - inserting 1000 documents. first: SS Supporting Members' Organization and last: Jesse Schell +[2018-02-13T08:23:24.864] [INFO] cheese - inserting 1000 documents. first: Template:Mansas of Mali Empire and last: Template:Taxonomy/Prionomyrmecini +[2018-02-13T08:23:24.883] [INFO] cheese - inserting 1000 documents. first: Category:1894 in Portuguese Timor and last: Jorge Salgado-Reyes +[2018-02-13T08:23:24.886] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:23:24.973] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:23:24.991] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:23:25.029] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:23:25.284] [INFO] cheese - inserting 1000 documents. first: 1997 South East Asia haze and last: Zhukovski +[2018-02-13T08:23:25.309] [INFO] cheese - inserting 1000 documents. first: Alfred Sarant and last: Elphinstone College +[2018-02-13T08:23:25.311] [INFO] cheese - inserting 1000 documents. first: Vs. (manga) and last: Wikipedia:Articles for deletion/Eva Fontaine +[2018-02-13T08:23:25.334] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:23:25.383] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:23:25.424] [INFO] cheese - inserting 1000 documents. first: 1997 Coppa Italia Final and last: Category:South Africa FIFA World Cup squad navigational boxes +[2018-02-13T08:23:25.430] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Tarachodes maurus and last: Category:Filipino contemporary artists +[2018-02-13T08:23:25.439] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:23:25.506] [INFO] cheese - inserting 1000 documents. first: Pairc Chronain and last: Emil Bührle +[2018-02-13T08:23:25.610] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:23:25.656] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:23:25.726] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:23:25.874] [INFO] cheese - inserting 1000 documents. first: High Sheriff of Wexford and last: Template:Taxonomy/Pimoidae +[2018-02-13T08:23:25.992] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:23:26.074] [INFO] cheese - inserting 1000 documents. first: Richardson Township, Morrison County, Minnesota and last: Donnelly, Minnesota +[2018-02-13T08:23:26.087] [INFO] cheese - inserting 1000 documents. first: Red (Character) and last: BCCI Corporate Trophy +[2018-02-13T08:23:26.090] [INFO] cheese - inserting 1000 documents. first: R69S and last: 2007 World Series of Poker +[2018-02-13T08:23:26.157] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:23:26.161] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:23:26.214] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for upload/August 2015 and last: Barong Landung +[2018-02-13T08:23:26.214] [INFO] cheese - batch complete in: 1.77 secs +[2018-02-13T08:23:26.256] [INFO] cheese - inserting 1000 documents. first: Huruiyeh and last: Escherichia coli proteinase La +[2018-02-13T08:23:26.340] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:23:26.353] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:23:26.441] [INFO] cheese - inserting 1000 documents. first: Frontline (AUS) and last: George Adams (football player) +[2018-02-13T08:23:26.531] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Avoiding POV funnels and last: Live writer +[2018-02-13T08:23:26.548] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:23:26.590] [INFO] cheese - inserting 1000 documents. first: Trichinella and last: Lichwort +[2018-02-13T08:23:26.607] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:23:26.642] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jake Sully (Avatar) and last: Betel-Nut +[2018-02-13T08:23:26.689] [INFO] cheese - batch complete in: 1.25 secs +[2018-02-13T08:23:26.815] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:23:26.893] [INFO] cheese - inserting 1000 documents. first: Cheonji and last: Lion of fallujah +[2018-02-13T08:23:26.922] [INFO] cheese - inserting 1000 documents. first: Bop Redux and last: Derna Campaign (2014–15) +[2018-02-13T08:23:27.000] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:23:27.035] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:23:27.045] [INFO] cheese - inserting 1000 documents. first: Kitamaat 2, British Columbia and last: Wikipedia:WikiProject Christianity/Outreach/August 2014 +[2018-02-13T08:23:27.134] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:23:27.191] [INFO] cheese - inserting 1000 documents. first: Bálványosváralja and last: Thangal Kunju Musaliar Institute of Technology +[2018-02-13T08:23:27.238] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:23:27.260] [INFO] cheese - inserting 1000 documents. first: Zhutian and last: Template:Aesop Rock +[2018-02-13T08:23:27.271] [INFO] cheese - inserting 1000 documents. first: Hot needle perforation and last: Wikipedia:Reference desk/Archives/Humanities/2008 February 8 +[2018-02-13T08:23:27.319] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:23:27.350] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:23:27.409] [INFO] cheese - inserting 1000 documents. first: Fermat’s principle and last: Pavlos Kountouriotis +[2018-02-13T08:23:27.410] [INFO] cheese - inserting 1000 documents. first: Exoteleia succinctella and last: Wikipedia:Sockpuppet investigations/Damionscott/Archive +[2018-02-13T08:23:27.452] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T08:23:27.485] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:23:27.497] [INFO] cheese - inserting 1000 documents. first: Tom Brady (film director) and last: Australian English sexual, body-part and toilet slang +[2018-02-13T08:23:27.556] [INFO] cheese - inserting 1000 documents. first: John Leasure and last: How Many More Years? +[2018-02-13T08:23:27.603] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:23:27.697] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:23:27.766] [INFO] cheese - inserting 1000 documents. first: Category:String orchestra pieces and last: H K +[2018-02-13T08:23:27.834] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:23:27.846] [INFO] cheese - inserting 1000 documents. first: Donnelly Township, Stevens County, Minnesota and last: Ethel, Missouri +[2018-02-13T08:23:27.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2008 February 8 and last: Category:Non-free Canadian stamp images +[2018-02-13T08:23:28.074] [INFO] cheese - inserting 1000 documents. first: Arichanna melanaria and last: Template:F1 driver results legend +[2018-02-13T08:23:28.132] [INFO] cheese - batch complete in: 1.917 secs +[2018-02-13T08:23:28.150] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:23:28.155] [INFO] cheese - inserting 1000 documents. first: Mohammed Al Habtoor and last: Victor H. Perrin +[2018-02-13T08:23:28.254] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T08:23:28.307] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:23:28.405] [INFO] cheese - inserting 1000 documents. first: Fizz Factor and last: File:Thjalfi and Hrungnir.png +[2018-02-13T08:23:28.458] [INFO] cheese - inserting 1000 documents. first: Route 190 and last: Val Ramos, international Flamenco guitarist +[2018-02-13T08:23:28.541] [INFO] cheese - batch complete in: 1.056 secs +[2018-02-13T08:23:28.560] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:23:28.571] [INFO] cheese - inserting 1000 documents. first: H L and last: Myctophum asperum +[2018-02-13T08:23:28.588] [INFO] cheese - inserting 1000 documents. first: Fall of Edessa and last: File:Deutschland sucht den Superstar 2013 logo.png +[2018-02-13T08:23:28.639] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:23:28.666] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:23:28.728] [INFO] cheese - inserting 1000 documents. first: Di Pietro motor and last: Wikipedia:Featured article review/Golden plates/archive1 +[2018-02-13T08:23:28.745] [INFO] cheese - inserting 1000 documents. first: Virgil C. Smith and last: Category:Academics from Northern Ireland +[2018-02-13T08:23:28.804] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:23:28.820] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:23:28.914] [INFO] cheese - inserting 1000 documents. first: Olfa Youssef and last: Wikipedia:Don't feed the divas +[2018-02-13T08:23:29.037] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:23:29.148] [INFO] cheese - inserting 1000 documents. first: Category:2001 ITF Women's Circuit and last: Category:2013 Metro Atlantic Athletic Conference baseball season +[2018-02-13T08:23:29.232] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:23:29.277] [INFO] cheese - inserting 1000 documents. first: Deutsche Tanz-und-Unterhaltungsorchester and last: Jacareí Atlético Clube +[2018-02-13T08:23:29.291] [INFO] cheese - inserting 1000 documents. first: Category:CD Leganés players and last: Ecuador at the 1968 Summer Olympics +[2018-02-13T08:23:29.330] [INFO] cheese - inserting 1000 documents. first: Internet chess server and last: Wikipedia:Articles for deletion/Dave Parsons +[2018-02-13T08:23:29.435] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:23:29.439] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:23:29.471] [INFO] cheese - inserting 1000 documents. first: M/V Kalama and last: Mette Davidsen +[2018-02-13T08:23:29.495] [INFO] cheese - inserting 1000 documents. first: Columbia River and Oregon Central Railroad and last: IEEE 200-1975 +[2018-02-13T08:23:29.508] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T08:23:29.617] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:23:29.634] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:23:29.790] [INFO] cheese - inserting 1000 documents. first: Linosyris wrightii and last: Power Hawk +[2018-02-13T08:23:29.859] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:23:30.013] [INFO] cheese - inserting 1000 documents. first: Puntius anchisporus and last: European Bermudians +[2018-02-13T08:23:30.117] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:23:30.247] [INFO] cheese - inserting 1000 documents. first: Template:Stephen Woodworth and last: CIA Triad +[2018-02-13T08:23:30.282] [INFO] cheese - inserting 1000 documents. first: Nenad Veselji and last: Wikipedia:WikiProject Spam/LinkReports/malatya.us +[2018-02-13T08:23:30.323] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:23:30.340] [INFO] cheese - inserting 1000 documents. first: Category:Nature centers in New Hampshire and last: Alk phos +[2018-02-13T08:23:30.343] [INFO] cheese - inserting 1000 documents. first: Federação Tocantinense de Futebol and last: Abdominal decompression +[2018-02-13T08:23:30.358] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:23:30.512] [INFO] cheese - inserting 1000 documents. first: La Plata, Missouri and last: Hampton, Nebraska +[2018-02-13T08:23:30.519] [INFO] cheese - inserting 1000 documents. first: Coniogyra dilucescens and last: Wilson L. Flores +[2018-02-13T08:23:30.583] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:23:30.605] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:23:30.575] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:23:30.729] [INFO] cheese - inserting 1000 documents. first: Transmitter Chillerton Down and last: James Sanders (American football) +[2018-02-13T08:23:30.761] [INFO] cheese - batch complete in: 2.629 secs +[2018-02-13T08:23:30.825] [INFO] cheese - batch complete in: 1.316 secs +[2018-02-13T08:23:30.915] [INFO] cheese - inserting 1000 documents. first: European Bermudian and last: 14th National Film Awards +[2018-02-13T08:23:31.096] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:23:31.154] [INFO] cheese - inserting 1000 documents. first: St Joseph's Co-Cathedral and last: PaleVioletRed +[2018-02-13T08:23:31.192] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:23:31.299] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/User talk:Jamietw/May 2011 and last: Cutpoint method +[2018-02-13T08:23:31.348] [INFO] cheese - inserting 1000 documents. first: Draft:Charles A. Munn and last: Category:1803 in sports by country +[2018-02-13T08:23:31.413] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:23:31.427] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:23:31.624] [INFO] cheese - inserting 1000 documents. first: Girth (album) and last: Another Weeping Woman +[2018-02-13T08:23:31.745] [INFO] cheese - inserting 1000 documents. first: Kokichi Akune and last: Igor Alexeev +[2018-02-13T08:23:31.746] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T08:23:31.790] [INFO] cheese - inserting 1000 documents. first: Leonard Aloysius Scott Stokes and last: Template:Country data Kingdom of Albania +[2018-02-13T08:23:31.821] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:23:31.893] [INFO] cheese - inserting 1000 documents. first: Boglestone, Port Glasgow and last: LITS +[2018-02-13T08:23:31.928] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:23:32.002] [INFO] cheese - inserting 1000 documents. first: RV Coriolis II and last: Marolles-les-Buis +[2018-02-13T08:23:32.053] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T08:23:32.149] [INFO] cheese - inserting 1000 documents. first: Periclimenes magnificus and last: Nikki ashton +[2018-02-13T08:23:32.150] [INFO] cheese - inserting 1000 documents. first: White fiddlewood and last: File:Stealth Inc logo.png +[2018-02-13T08:23:32.209] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:23:32.237] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:23:32.316] [INFO] cheese - batch complete in: 1.711 secs +[2018-02-13T08:23:32.440] [INFO] cheese - inserting 1000 documents. first: Template:Bobby Brown and last: Peter myers (basketball) +[2018-02-13T08:23:32.628] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:23:32.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ageiola and last: Mid-Western Regional Council, New South Wales +[2018-02-13T08:23:32.812] [INFO] cheese - inserting 1000 documents. first: Kjell Landsverk and last: ⦾ +[2018-02-13T08:23:32.875] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T08:23:32.969] [INFO] cheese - batch complete in: 1.04 secs +[2018-02-13T08:23:33.051] [INFO] cheese - inserting 1000 documents. first: Template:Belarus in the Eurovision Young Dancers and last: Mary M Morrissey +[2018-02-13T08:23:33.072] [INFO] cheese - inserting 1000 documents. first: Category:1920s establishments in Uruguay and last: Banglalion Wimax +[2018-02-13T08:23:33.102] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:23:33.170] [INFO] cheese - inserting 1000 documents. first: Zero page (CP/M) and last: Physical Fatness +[2018-02-13T08:23:33.211] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:23:33.331] [INFO] cheese - batch complete in: 1.278 secs +[2018-02-13T08:23:33.394] [INFO] cheese - inserting 1000 documents. first: File:CMF Logo.jpg and last: Charles Denton (television and film producer) +[2018-02-13T08:23:33.476] [INFO] cheese - inserting 1000 documents. first: Hordville, Nebraska and last: Shamong Township, New Jersey +[2018-02-13T08:23:33.482] [INFO] cheese - inserting 1000 documents. first: Fog desert and last: Postcard from Morocco +[2018-02-13T08:23:33.529] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:23:33.618] [INFO] cheese - inserting 1000 documents. first: Shen mue and last: Monte Carlo Country Club +[2018-02-13T08:23:33.616] [INFO] cheese - batch complete in: 1.3 secs +[2018-02-13T08:23:33.679] [INFO] cheese - inserting 1000 documents. first: White Guy Talk Show and last: Template:Districts of Ulan Bator +[2018-02-13T08:23:33.744] [INFO] cheese - batch complete in: 2.982 secs +[2018-02-13T08:23:33.775] [INFO] cheese - inserting 1000 documents. first: ⦿ and last: Jelena Balsic +[2018-02-13T08:23:33.783] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:23:33.799] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:23:33.897] [INFO] cheese - inserting 1000 documents. first: George Renwick, 1st Baronet and last: Pectis linifolia +[2018-02-13T08:23:33.930] [INFO] cheese - batch complete in: 0.961 secs +[2018-02-13T08:23:34.027] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:23:34.307] [INFO] cheese - inserting 1000 documents. first: Derby Castle Depôt and last: Andkhoy City, Afghanistan +[2018-02-13T08:23:34.414] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:23:34.448] [INFO] cheese - inserting 1000 documents. first: Palazzo Bernardini, Lucca and last: Myanmar women's national under-20 football team +[2018-02-13T08:23:34.485] [INFO] cheese - inserting 1000 documents. first: Davao International Airport and last: Damle +[2018-02-13T08:23:34.494] [INFO] cheese - inserting 1000 documents. first: Baigneaux, Eure-et-Loir and last: Category:1431 in Portugal +[2018-02-13T08:23:34.536] [INFO] cheese - inserting 1000 documents. first: Mirai Ball and last: Template:Bangladesh Jamaat-e-Islami/meta/color +[2018-02-13T08:23:34.539] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:23:34.546] [INFO] cheese - inserting 1000 documents. first: List of rowing blades – Club oars and last: Mary Ann Cotton +[2018-02-13T08:23:34.654] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:23:34.706] [INFO] cheese - batch complete in: 1.375 secs +[2018-02-13T08:23:34.749] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:23:34.765] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:23:34.849] [INFO] cheese - inserting 1000 documents. first: Pectis longipes and last: Category:1922 establishments in Greece +[2018-02-13T08:23:34.890] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:23:35.026] [INFO] cheese - inserting 1000 documents. first: Biological marker and last: Wikipedia:WikiProject Intertranswiki/Lithuanian/Culture +[2018-02-13T08:23:35.170] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:23:35.255] [INFO] cheese - inserting 1000 documents. first: Pak Tho Railway Station and last: Elckerlijc (film) +[2018-02-13T08:23:35.335] [INFO] cheese - inserting 1000 documents. first: File:Super Sabado Sensacional (2012).png and last: Empress Dowager Du +[2018-02-13T08:23:35.423] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:23:35.444] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 928 and last: File:Lens2a.svg +[2018-02-13T08:23:35.460] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:23:35.506] [INFO] cheese - inserting 1000 documents. first: Invaders From Mars and last: PopCultured +[2018-02-13T08:23:35.549] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:23:35.622] [INFO] cheese - inserting 1000 documents. first: Rubber bungs and last: Porto Grande +[2018-02-13T08:23:35.659] [INFO] cheese - inserting 1000 documents. first: Moncreiffe (disambiguation) and last: Hebron Christian Academy +[2018-02-13T08:23:35.690] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T08:23:35.765] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:23:35.821] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:23:36.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Intertranswiki/Lithuanian/History and last: Template:1997 NCAA Men's Basketball Consensus All-Americans +[2018-02-13T08:23:36.017] [INFO] cheese - inserting 1000 documents. first: Livingston Parliament constituency and last: Portal:Traditional African religion/Selected biography/4 +[2018-02-13T08:23:36.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/On a conjecture concerning the petersen graph and last: Category:Transportation in Grant County, South Dakota +[2018-02-13T08:23:36.145] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:23:36.168] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:23:36.248] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:23:36.375] [INFO] cheese - inserting 1000 documents. first: Germanicopolis (Isauria) and last: Wikipedia:WikiProject Spam/LinkReports/sbthp.org +[2018-02-13T08:23:36.463] [INFO] cheese - inserting 1000 documents. first: Free settler and last: Drigo +[2018-02-13T08:23:36.512] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:23:36.569] [INFO] cheese - inserting 1000 documents. first: Red Service and last: Scottish pure Gaelic +[2018-02-13T08:23:36.578] [INFO] cheese - inserting 1000 documents. first: International Union of Psychological Science and last: Pugh–Schiff precession +[2018-02-13T08:23:36.638] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:23:36.687] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:23:36.739] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:23:36.955] [INFO] cheese - inserting 1000 documents. first: Category:Lists of 1969 films by country or language and last: 1961 Cameroonian Premier League +[2018-02-13T08:23:36.959] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Walworth County, South Dakota and last: Wiman Andrus +[2018-02-13T08:23:37.022] [INFO] cheese - inserting 1000 documents. first: Industrial autoclave and last: Reginald Dos Remedios +[2018-02-13T08:23:37.044] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:23:37.111] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:23:37.189] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:23:37.231] [INFO] cheese - inserting 1000 documents. first: Sitronics and last: Croy, Highland +[2018-02-13T08:23:37.233] [INFO] cheese - inserting 1000 documents. first: Southampton Township, New Jersey and last: East Otto, New York +[2018-02-13T08:23:37.311] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:23:37.422] [INFO] cheese - inserting 1000 documents. first: GB 20600-2006 and last: Barony of Närpiö +[2018-02-13T08:23:37.448] [INFO] cheese - inserting 1000 documents. first: Cers Cup and last: La Jolla Reservation +[2018-02-13T08:23:37.556] [INFO] cheese - batch complete in: 3.812 secs +[2018-02-13T08:23:37.611] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:23:37.617] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:23:37.684] [INFO] cheese - inserting 1000 documents. first: Burning of the Jew and last: Sibley's Cove, Newfoundland and Labrador +[2018-02-13T08:23:37.696] [INFO] cheese - inserting 1000 documents. first: Population and Development Review and last: Amisos Treasure +[2018-02-13T08:23:37.762] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:23:37.777] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:23:37.782] [INFO] cheese - inserting 1000 documents. first: Native Hackberry and last: Diceratucha xenopis +[2018-02-13T08:23:37.843] [INFO] cheese - inserting 1000 documents. first: Reginald dos Remedios and last: Category:Speed skating at the 2007 Asian Winter Games +[2018-02-13T08:23:37.894] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:23:37.935] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:23:38.048] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nirvana FC and last: Conrad B. Harrison +[2018-02-13T08:23:38.181] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:23:38.283] [INFO] cheese - inserting 1000 documents. first: Barons of Närpiö and last: 1997 Survivor Series +[2018-02-13T08:23:38.283] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Birthdays/January 15 and last: Category:Referendums in Liechtenstein +[2018-02-13T08:23:38.421] [INFO] cheese - inserting 1000 documents. first: Summer Rain (ATB song) and last: Great Equarry of France +[2018-02-13T08:23:38.478] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:23:38.523] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:23:38.545] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:23:38.637] [INFO] cheese - inserting 1000 documents. first: Nycteropa and last: Wikipedia:WikiProject Spam/LinkReports/cwfwrestlingfed.webs.com +[2018-02-13T08:23:38.681] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:23:38.700] [INFO] cheese - inserting 1000 documents. first: Portal:Latter-day Saints/Selected Quotes/2 and last: Category:Landforms of Phu Yen Province +[2018-02-13T08:23:38.756] [INFO] cheese - inserting 1000 documents. first: Thouless energy and last: Richard Décarie +[2018-02-13T08:23:38.816] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:23:38.915] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T08:23:38.956] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/LOT, Bristol and last: Category:Sanyo mobile phones +[2018-02-13T08:23:39.037] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:23:39.080] [INFO] cheese - inserting 1000 documents. first: Lyon King-of-Arms and last: Mazar Dam +[2018-02-13T08:23:39.111] [INFO] cheese - inserting 1000 documents. first: Kdka and last: Philip J. Fry I +[2018-02-13T08:23:39.127] [INFO] cheese - inserting 1000 documents. first: Oystein Jarlsbo and last: Darshen +[2018-02-13T08:23:39.142] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/LGBT/2 and last: Ramgea annulispora +[2018-02-13T08:23:39.148] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:23:39.222] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:23:39.228] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:23:39.235] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:23:39.236] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Soc Trang Province and last: Wikipedia:Articles for deletion/Ram Khilawan Mishra +[2018-02-13T08:23:39.328] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:23:39.668] [INFO] cheese - inserting 1000 documents. first: Camp Seminole and last: Category:Baseball teams in Nebraska +[2018-02-13T08:23:39.790] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:23:39.828] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Milton S. Eisenhower Foundation and last: Southern Star (observation wheel) +[2018-02-13T08:23:39.888] [INFO] cheese - inserting 1000 documents. first: Sao José and last: Wikipedia:Articles for deletion/Colm Kearney +[2018-02-13T08:23:39.992] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:23:40.061] [INFO] cheese - inserting 1000 documents. first: File:Arx Fatalis cover.png and last: Life is Good Company +[2018-02-13T08:23:40.079] [INFO] cheese - batch complete in: 1.164 secs +[2018-02-13T08:23:40.082] [INFO] cheese - inserting 1000 documents. first: Chan King Ming and last: 1987–88 UAE Football League +[2018-02-13T08:23:40.109] [INFO] cheese - inserting 1000 documents. first: Borveny and last: Short Read Archive +[2018-02-13T08:23:40.148] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:23:40.203] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:23:40.268] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:23:40.344] [INFO] cheese - inserting 1000 documents. first: MS Aramis and last: File:GJ b&w protest.jpg +[2018-02-13T08:23:40.730] [INFO] cheese - batch complete in: 1.502 secs +[2018-02-13T08:23:40.762] [INFO] cheese - inserting 1000 documents. first: East Randolph, New York and last: Pitcairn, New York +[2018-02-13T08:23:40.858] [INFO] cheese - inserting 1000 documents. first: Lie algebra action and last: Category:Iranian railway station stubs +[2018-02-13T08:23:40.913] [INFO] cheese - inserting 1000 documents. first: Gary Barnes and last: AsCl5 +[2018-02-13T08:23:40.932] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:23:41.190] [INFO] cheese - batch complete in: 1.399 secs +[2018-02-13T08:23:41.223] [INFO] cheese - inserting 1000 documents. first: Acura Classic and last: Sport For Jove Theatre Company +[2018-02-13T08:23:41.267] [INFO] cheese - batch complete in: 3.71 secs +[2018-02-13T08:23:41.344] [INFO] cheese - inserting 1000 documents. first: Conrad Festival and last: Category:Pandelis Karayorgis albums +[2018-02-13T08:23:41.403] [INFO] cheese - inserting 1000 documents. first: Jörg Kuebart and last: Wikipedia:WikiProject Spam/LinkReports/rendaxdespesas.wordpress.com) +[2018-02-13T08:23:41.454] [INFO] cheese - batch complete in: 1.186 secs +[2018-02-13T08:23:41.519] [INFO] cheese - batch complete in: 1.316 secs +[2018-02-13T08:23:41.566] [INFO] cheese - batch complete in: 1.418 secs +[2018-02-13T08:23:41.658] [INFO] cheese - inserting 1000 documents. first: Atholl brose and last: Joseph W. Tkach +[2018-02-13T08:23:41.802] [INFO] cheese - inserting 1000 documents. first: Craig McMurtry and last: Throckmorton (disambiguation) +[2018-02-13T08:23:41.847] [INFO] cheese - batch complete in: 1.768 secs +[2018-02-13T08:23:41.926] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T08:23:42.024] [INFO] cheese - inserting 1000 documents. first: Fraser v Children's Court, Pretoria North and Others and last: NC Clean Water Management Trust Fund +[2018-02-13T08:23:42.131] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:23:42.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Image-Heliconius ismenius 2 Richard Bartz.jpg and last: Cierp-Gaud +[2018-02-13T08:23:42.296] [INFO] cheese - inserting 1000 documents. first: Template:Romania-university-stub and last: 1983 UCLA Bruins football team +[2018-02-13T08:23:42.311] [INFO] cheese - inserting 1000 documents. first: Aurore Dupin and last: Dougherty, James +[2018-02-13T08:23:42.334] [INFO] cheese - inserting 1000 documents. first: 2003 ICC Cricket World Cup Final and last: William Baird (physician) +[2018-02-13T08:23:42.453] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:23:42.498] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:23:42.505] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T08:23:42.624] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T08:23:42.815] [INFO] cheese - inserting 1000 documents. first: Larry Myricks and last: Dip belt +[2018-02-13T08:23:42.887] [INFO] cheese - inserting 1000 documents. first: File:Characters Uchuusen Sagittarius.jpg and last: Alert (gum) +[2018-02-13T08:23:42.909] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:23:42.967] [INFO] cheese - inserting 1000 documents. first: Cadaver (video game) and last: Soap and Detergent +[2018-02-13T08:23:43.010] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:23:43.111] [INFO] cheese - batch complete in: 1.263 secs +[2018-02-13T08:23:43.167] [INFO] cheese - inserting 1000 documents. first: Douglass, James and last: 140journos +[2018-02-13T08:23:43.241] [INFO] cheese - inserting 1000 documents. first: Harap Alb and last: C9H21N +[2018-02-13T08:23:43.243] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:23:43.305] [INFO] cheese - inserting 1000 documents. first: Coleophora dianthi and last: Mysterious Power +[2018-02-13T08:23:43.308] [INFO] cheese - inserting 1000 documents. first: Fishermen's Village and last: Template:Wikipediapools +[2018-02-13T08:23:43.341] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:23:43.431] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:23:43.444] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:23:43.597] [INFO] cheese - inserting 1000 documents. first: Town of Northam and last: Cater +[2018-02-13T08:23:43.697] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:23:43.735] [INFO] cheese - inserting 1000 documents. first: Larry Tieu and last: Hong Kong Ice Hockey Championship +[2018-02-13T08:23:43.769] [INFO] cheese - inserting 1000 documents. first: John Ryder (boxer) and last: Template:User in BWA +[2018-02-13T08:23:43.822] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:23:43.843] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:23:43.923] [INFO] cheese - inserting 1000 documents. first: Ralph Perretta and last: Maddur, Ranga Reddy district +[2018-02-13T08:23:43.936] [INFO] cheese - inserting 1000 documents. first: WSSC and last: Șcheiu River (Râul Șes) +[2018-02-13T08:23:43.949] [INFO] cheese - inserting 1000 documents. first: Benmore Gardens and last: Takao Omori +[2018-02-13T08:23:44.008] [INFO] cheese - inserting 1000 documents. first: Darren Smith (Australian rules footballer) and last: Template:Fb team Jomo Cosmos +[2018-02-13T08:23:44.007] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:23:44.019] [INFO] cheese - inserting 1000 documents. first: Rensselaer Falls, New York and last: Brevard, North Carolina +[2018-02-13T08:23:44.019] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:23:44.091] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:23:44.138] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:23:44.239] [INFO] cheese - batch complete in: 2.972 secs +[2018-02-13T08:23:44.349] [INFO] cheese - inserting 1000 documents. first: Tis better to have loved and lost and last: The Stolen Body and Other Tales of the Unexpected +[2018-02-13T08:23:44.353] [INFO] cheese - inserting 1000 documents. first: Nevada State Route 537 and last: Portal:Nontheism/Quotes/September +[2018-02-13T08:23:44.430] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:23:44.456] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:23:44.547] [INFO] cheese - inserting 1000 documents. first: Euler top and last: Rock Drill (Ezra Pound) +[2018-02-13T08:23:44.548] [INFO] cheese - inserting 1000 documents. first: Lenny Barker and last: Marburg Branch Railway +[2018-02-13T08:23:44.594] [INFO] cheese - inserting 1000 documents. first: Saint-Laurent, Haute-Garonne and last: Colorado Women's College +[2018-02-13T08:23:44.593] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:23:44.634] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:23:44.677] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:23:44.779] [INFO] cheese - inserting 1000 documents. first: The Favorite Short Stories of H. G. Wells and last: XHFCT-FM +[2018-02-13T08:23:44.821] [INFO] cheese - inserting 1000 documents. first: Protolith and last: Category:Canadian orchestras +[2018-02-13T08:23:44.814] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T08:23:44.839] [INFO] cheese - inserting 1000 documents. first: Template:S-line/NSW Country lines left/Unanderra-Moss Vale and last: Gbowr +[2018-02-13T08:23:44.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:FILMPR and last: Valenticarbo praetermissus +[2018-02-13T08:23:44.923] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:23:44.923] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:23:45.009] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:23:45.147] [INFO] cheese - inserting 1000 documents. first: 1999 Louis Vuitton Cup and last: Tom Pratt (footballer) +[2018-02-13T08:23:45.153] [INFO] cheese - inserting 1000 documents. first: Coleophora pilion and last: Mozhaiskiy +[2018-02-13T08:23:45.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/i69.photobucket.com and last: Wikipedia:Peer review/Australia-Indonesia Prisoner Exchange Agreement +[2018-02-13T08:23:45.207] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:23:45.234] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:23:45.309] [INFO] cheese - inserting 1000 documents. first: Category:Chess woman players and last: Graves, James +[2018-02-13T08:23:45.312] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:23:45.384] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:23:45.571] [INFO] cheese - inserting 1000 documents. first: Old Addenbrooke's Site and last: File:CEPJSW2.jpg +[2018-02-13T08:23:45.639] [INFO] cheese - inserting 1000 documents. first: Shire of Busselton, Western Australia and last: Category:UD Almería players +[2018-02-13T08:23:45.652] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:23:45.745] [INFO] cheese - inserting 1000 documents. first: George Ward Cole and last: Category:Midwestern State University faculty +[2018-02-13T08:23:45.751] [INFO] cheese - inserting 1000 documents. first: San Juan Bautista, Paraguay and last: Come Taste the Band +[2018-02-13T08:23:45.761] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:23:45.832] [INFO] cheese - inserting 1000 documents. first: Green, James and last: Rubus huttonii +[2018-02-13T08:23:45.842] [INFO] cheese - inserting 1000 documents. first: East Germany women's national volleyball team and last: Wavelength (soundtrack) +[2018-02-13T08:23:45.868] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:23:45.873] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:23:45.940] [INFO] cheese - inserting 1000 documents. first: Mozhaiski and last: Madharam +[2018-02-13T08:23:45.990] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:23:46.013] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:23:46.105] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:23:46.269] [INFO] cheese - inserting 1000 documents. first: Rosman, North Carolina and last: Mariemont, Ohio +[2018-02-13T08:23:46.376] [INFO] cheese - inserting 1000 documents. first: Uclms and last: Dmytro +[2018-02-13T08:23:46.391] [INFO] cheese - batch complete in: 2.152 secs +[2018-02-13T08:23:46.413] [INFO] cheese - inserting 1000 documents. first: Suntory Sunbirds and last: Natalie Allyn Wakeley +[2018-02-13T08:23:46.427] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hamshakal's and last: Category:1902 in Oregon +[2018-02-13T08:23:46.446] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:23:46.476] [INFO] cheese - inserting 1000 documents. first: Pope Kyrillos VI and last: Portal:Socialism/Selected article/2 +[2018-02-13T08:23:46.471] [INFO] cheese - inserting 1000 documents. first: Biol. Pharm. Bull. and last: Kum-song +[2018-02-13T08:23:46.487] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:23:46.496] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:23:46.548] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:23:46.548] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:23:46.650] [INFO] cheese - inserting 1000 documents. first: USNS Rappahannock (T-AO-204) and last: Authority figures in comedy +[2018-02-13T08:23:46.707] [INFO] cheese - inserting 1000 documents. first: Mittakodur and last: NAPTOSA Union +[2018-02-13T08:23:46.740] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:23:46.946] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:23:47.155] [INFO] cheese - inserting 1000 documents. first: The Roland Kirk Quartet Meets the Benny Golson Orchestra and last: Thesis of Pulacayo +[2018-02-13T08:23:47.290] [INFO] cheese - inserting 1000 documents. first: Environmental effects of oil shale industry and last: Scientrier +[2018-02-13T08:23:47.290] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:23:47.315] [INFO] cheese - inserting 1000 documents. first: Category:1904 in Oregon and last: ADAM 17 endopeptidase +[2018-02-13T08:23:47.349] [INFO] cheese - inserting 1000 documents. first: Geum-seong and last: Patriarch Theodosios +[2018-02-13T08:23:47.382] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:23:47.477] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:23:47.484] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:23:47.504] [INFO] cheese - inserting 1000 documents. first: Bothrops atrox colombiensis and last: Collecting Team +[2018-02-13T08:23:47.631] [INFO] cheese - batch complete in: 1.135 secs +[2018-02-13T08:23:47.640] [INFO] cheese - inserting 1000 documents. first: Template:Bahrain squad 2004 AFC Asian Cup and last: Kisszántó +[2018-02-13T08:23:47.758] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:23:47.904] [INFO] cheese - inserting 1000 documents. first: Past & Present (journal) and last: Battle of Coamo +[2018-02-13T08:23:47.919] [INFO] cheese - inserting 1000 documents. first: Priya Sisters - Shanmukhapriya & Haripriya and last: Category:Nils Gaelic footballers +[2018-02-13T08:23:48.023] [INFO] cheese - inserting 1000 documents. first: Poulos and last: Vein (botany) +[2018-02-13T08:23:48.023] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:23:48.039] [INFO] cheese - inserting 1000 documents. first: The Women of Genesis series and last: List of heads of state of Burma +[2018-02-13T08:23:48.046] [INFO] cheese - batch complete in: 1.306 secs +[2018-02-13T08:23:48.105] [INFO] cheese - inserting 1000 documents. first: Essert-Romand and last: Carlos López (baseball) +[2018-02-13T08:23:48.117] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:23:48.162] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:23:48.186] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:23:48.334] [INFO] cheese - inserting 1000 documents. first: Vicosoprano and last: Jörg van Nieuwenhuijzen +[2018-02-13T08:23:48.433] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:23:48.440] [INFO] cheese - inserting 1000 documents. first: Nagyszántó and last: File:OpenBSD49-boot.png +[2018-02-13T08:23:48.537] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:23:48.685] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2009-08-08/John Dillinger and last: Wikipedia:WikiProject Spam/LinkReports/electricvelocipede.com +[2018-02-13T08:23:48.749] [INFO] cheese - inserting 1000 documents. first: Monfort Heights East, Ohio and last: Goldsby, Oklahoma +[2018-02-13T08:23:48.755] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:23:48.855] [INFO] cheese - inserting 1000 documents. first: Category:Foreign relations of Singapore and last: Category:1960s fashion +[2018-02-13T08:23:48.887] [INFO] cheese - inserting 1000 documents. first: Vilmos Patay and last: Category:Rhodesian Bush War +[2018-02-13T08:23:48.904] [INFO] cheese - inserting 1000 documents. first: Kenwood, New York and last: La Chapelle-Blanche-Saint-Martin +[2018-02-13T08:23:48.936] [INFO] cheese - batch complete in: 2.545 secs +[2018-02-13T08:23:48.982] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:23:49.015] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:23:49.024] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T08:23:49.237] [INFO] cheese - inserting 1000 documents. first: Bishop of Mortlach-Aberdeen and last: Tour of Chongming Island Time Trial +[2018-02-13T08:23:49.323] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:23:49.423] [INFO] cheese - inserting 1000 documents. first: Mt Pelée and last: Frank Duckworth +[2018-02-13T08:23:49.537] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:23:49.604] [INFO] cheese - inserting 1000 documents. first: How to Explain Pictures to a Dead Hare and last: Bani humi +[2018-02-13T08:23:49.700] [INFO] cheese - inserting 1000 documents. first: Category:18th-century disestablishments in Scotland and last: Shawn Saunders +[2018-02-13T08:23:49.755] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:23:49.777] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Empires: Dawn of the Modern World and last: Category:Ireland in the Eurovision Song Contest +[2018-02-13T08:23:49.852] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:23:49.940] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:23:49.953] [INFO] cheese - inserting 1000 documents. first: Ann Calvello and last: Yaşargil +[2018-02-13T08:23:50.116] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:23:50.126] [INFO] cheese - inserting 1000 documents. first: Barnyard (Video Game) and last: Wikipedia:Good article reassessment/St La Salle Hall/1 +[2018-02-13T08:23:50.192] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:23:50.454] [INFO] cheese - inserting 1000 documents. first: Alice Baldwin and last: EC 3.5.4.26 +[2018-02-13T08:23:50.503] [INFO] cheese - inserting 1000 documents. first: Distributive law between monads and last: Panchacharyas +[2018-02-13T08:23:50.539] [INFO] cheese - inserting 1000 documents. first: Bani jawbah and last: Template:Turacos +[2018-02-13T08:23:50.607] [INFO] cheese - inserting 1000 documents. first: Manipulation of atoms by optical field and last: File:ClaypigeonLobby.jpg +[2018-02-13T08:23:50.628] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:23:50.670] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:23:50.694] [INFO] cheese - batch complete in: 1.157 secs +[2018-02-13T08:23:50.802] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:23:50.949] [INFO] cheese - inserting 1000 documents. first: TimedText:Kelly Clarkson - Nostalgic.ogg.en.srt and last: O'Leary, James +[2018-02-13T08:23:50.975] [INFO] cheese - inserting 1000 documents. first: Liri Blues Festival and last: Victoria Square, Toronto +[2018-02-13T08:23:51.007] [INFO] cheese - inserting 1000 documents. first: Category:History of Italy by region and last: Gulbargah +[2018-02-13T08:23:51.087] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:23:51.119] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:23:51.113] [INFO] cheese - batch complete in: 2.951 secs +[2018-02-13T08:23:51.238] [INFO] cheese - inserting 1000 documents. first: Category:Suicides by jumping in Canada and last: Vengeful Spirit +[2018-02-13T08:23:51.297] [INFO] cheese - inserting 1000 documents. first: Amietophrynus pardalis and last: Saint-Jean-d'Étreux +[2018-02-13T08:23:51.328] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:23:51.388] [INFO] cheese - inserting 1000 documents. first: Salisbury hall and last: Findory.com +[2018-02-13T08:23:51.408] [INFO] cheese - inserting 1000 documents. first: Ladainian tomlinson and last: Lochee Harp +[2018-02-13T08:23:51.437] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:23:51.466] [INFO] cheese - inserting 1000 documents. first: Newcastle, Oklahoma and last: Strausstown, Pennsylvania +[2018-02-13T08:23:51.506] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:23:51.540] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:23:51.669] [INFO] cheese - batch complete in: 2.733 secs +[2018-02-13T08:23:51.682] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elections.gov.sg and last: DFS Schulgleiter SG.38 +[2018-02-13T08:23:51.774] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:23:51.857] [INFO] cheese - inserting 1000 documents. first: Onboard safety videos and last: James Wilson (Dean of Tuam) +[2018-02-13T08:23:51.925] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:23:52.009] [INFO] cheese - inserting 1000 documents. first: Means-testing and last: Sweeney +[2018-02-13T08:23:52.011] [INFO] cheese - inserting 1000 documents. first: Ceratophyllus borealis and last: Cheshmehsefid +[2018-02-13T08:23:52.057] [INFO] cheese - inserting 1000 documents. first: L'entraînement du champion avant la course and last: Chidambaranatha Nadar +[2018-02-13T08:23:52.070] [INFO] cheese - inserting 1000 documents. first: Saint-Julien, Jura and last: Wikipedia:Peer review/Holden VE Commodore +[2018-02-13T08:23:52.079] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:23:52.090] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:23:52.126] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:23:52.110] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:23:52.197] [INFO] cheese - inserting 1000 documents. first: File:No such thing.jpg and last: Shen Kuei +[2018-02-13T08:23:52.303] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:23:52.363] [INFO] cheese - inserting 1000 documents. first: Category:Kickboxing in Austria and last: Wikipedia:WikiProject Spam/LinkReports/dundalkfc.com +[2018-02-13T08:23:52.481] [INFO] cheese - inserting 1000 documents. first: Sadduguntepalya and last: Rio Corcovado +[2018-02-13T08:23:52.512] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:23:52.594] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:23:52.622] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Sefid and last: Shoftim (parsha) +[2018-02-13T08:23:52.640] [INFO] cheese - inserting 1000 documents. first: File:Fast Food Tycoon 2 Coverart.png and last: 2007-08 Indian cricket season +[2018-02-13T08:23:52.689] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:23:52.737] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:23:52.854] [INFO] cheese - inserting 1000 documents. first: C3La2O9 and last: El Faraon +[2018-02-13T08:23:52.931] [INFO] cheese - inserting 1000 documents. first: Mystical Ninja Starring Goemon (Game Boy) and last: Wikipedia:Translation/Serapeum +[2018-02-13T08:23:52.942] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:23:52.957] [INFO] cheese - inserting 1000 documents. first: Juan José Medina and last: Queen Tawosret +[2018-02-13T08:23:53.053] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:23:53.104] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:23:53.138] [INFO] cheese - inserting 1000 documents. first: Rubus nocivus and last: 2004 Oceania Handball Championship +[2018-02-13T08:23:53.154] [INFO] cheese - inserting 1000 documents. first: G200 (disambiguation) and last: Sheja +[2018-02-13T08:23:53.208] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:23:53.264] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:23:53.318] [INFO] cheese - inserting 1000 documents. first: Politico's History of British Political Parties and last: Musa ibn Faris al-Mutawakkil +[2018-02-13T08:23:53.354] [INFO] cheese - inserting 1000 documents. first: File:WGAA logo.png and last: Pélussin +[2018-02-13T08:23:53.417] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:23:53.441] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:23:53.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Council/Proposals/NDH and last: Ruislip gardens primary school +[2018-02-13T08:23:53.655] [INFO] cheese - inserting 1000 documents. first: List of songs written by Shane McAnally and last: Category:Louisiana elections, 1855 +[2018-02-13T08:23:53.738] [INFO] cheese - inserting 1000 documents. first: Tilden Township, Berks County, Pennsylvania and last: Lima, Pennsylvania +[2018-02-13T08:23:53.729] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:23:53.775] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:23:53.892] [INFO] cheese - inserting 1000 documents. first: Finnish torpedo boat S2 and last: George Fuller (congressman) +[2018-02-13T08:23:53.994] [INFO] cheese - inserting 1000 documents. first: Chapel royal and last: Second sack +[2018-02-13T08:23:54.048] [INFO] cheese - batch complete in: 2.379 secs +[2018-02-13T08:23:54.051] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:23:54.070] [INFO] cheese - inserting 1000 documents. first: Template:Brussels-Capital Region Parliament election, 2009 and last: Foundation for Child Development +[2018-02-13T08:23:54.101] [INFO] cheese - inserting 1000 documents. first: Rick Outman and last: Wikipedia:WikiProject Spam/LinkReports/pabloaimarweb.blogspot.com +[2018-02-13T08:23:54.163] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:23:54.185] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:23:54.282] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:23:54.360] [INFO] cheese - inserting 1000 documents. first: Dancé, Loire and last: Thou, Loiret +[2018-02-13T08:23:54.548] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T08:23:54.621] [INFO] cheese - inserting 1000 documents. first: Category:Louisiana elections, 1859 and last: Guyana at the 2015 World Championships in Athletics +[2018-02-13T08:23:54.705] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:23:54.766] [INFO] cheese - inserting 1000 documents. first: List of forest regions and districts of British Columbia and last: 2006 Supercopa de España +[2018-02-13T08:23:54.849] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:23:54.886] [INFO] cheese - inserting 1000 documents. first: Buchwaldoboletus lignicola and last: HD 113538 c +[2018-02-13T08:23:54.937] [INFO] cheese - inserting 1000 documents. first: The Daily Journal (Venezuela) and last: Oxford East +[2018-02-13T08:23:55.026] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:23:55.118] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:23:55.246] [INFO] cheese - inserting 1000 documents. first: Otto I of Pomerania and last: Call It Spring +[2018-02-13T08:23:55.250] [INFO] cheese - inserting 1000 documents. first: Tretyakovskaya Gallery and last: Cowdray Park +[2018-02-13T08:23:55.266] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Berube and last: File:Anpgrh canal gharsana.jpg +[2018-02-13T08:23:55.351] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:23:55.465] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:23:55.504] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:23:55.775] [INFO] cheese - inserting 1000 documents. first: Hans Wimmer and last: Life on Enceladus +[2018-02-13T08:23:55.890] [INFO] cheese - inserting 1000 documents. first: List of Quebec railways and last: Ron Cash +[2018-02-13T08:23:55.907] [INFO] cheese - inserting 1000 documents. first: Ängelholm–Helsingborg and last: Harland (name) +[2018-02-13T08:23:55.920] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T08:23:56.007] [INFO] cheese - batch complete in: 1.158 secs +[2018-02-13T08:23:56.033] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T08:23:56.077] [INFO] cheese - inserting 1000 documents. first: Sittingbourne and Sheppey and last: Coracite +[2018-02-13T08:23:56.197] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:23:56.207] [INFO] cheese - inserting 1000 documents. first: Australia 2020 and last: File:Do17z 20mm.jpg +[2018-02-13T08:23:56.258] [INFO] cheese - inserting 1000 documents. first: File:André Pieyre de Mandiargues.jpg and last: En la ardiente oscuridad +[2018-02-13T08:23:56.374] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:23:56.384] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:23:56.414] [INFO] cheese - inserting 1000 documents. first: Category:Education in Cyprus and last: Medium Wave +[2018-02-13T08:23:56.596] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/August 16, 2015 and last: Ulhasnagar taluka +[2018-02-13T08:23:56.606] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:23:56.669] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:23:56.860] [INFO] cheese - inserting 1000 documents. first: Sunrise (Uriah Heep's song) and last: Robert Corteen Carswell +[2018-02-13T08:23:56.961] [INFO] cheese - inserting 1000 documents. first: Progress 7K-TG and last: Alexis Creek +[2018-02-13T08:23:57.105] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:23:57.194] [INFO] cheese - batch complete in: 1.187 secs +[2018-02-13T08:23:57.194] [INFO] cheese - inserting 1000 documents. first: Pittinite and last: Category:Books by V. S. Naipaul +[2018-02-13T08:23:57.195] [INFO] cheese - inserting 1000 documents. first: Linwood, Pennsylvania and last: North Catasauqua, Pennsylvania +[2018-02-13T08:23:57.318] [INFO] cheese - inserting 1000 documents. first: Joint method of agreement and difference and last: Grez-Neuville +[2018-02-13T08:23:57.325] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:23:57.453] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dwu.org and last: Category:Australian assassins +[2018-02-13T08:23:57.506] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:23:57.614] [INFO] cheese - batch complete in: 3.566 secs +[2018-02-13T08:23:57.669] [INFO] cheese - batch complete in: 1.295 secs +[2018-02-13T08:23:57.867] [INFO] cheese - inserting 1000 documents. first: Hussain Al-Rumaihi and last: Ryosuke Nomura +[2018-02-13T08:23:58.037] [INFO] cheese - inserting 1000 documents. first: Adam Nichols and last: Amy's Baking Company +[2018-02-13T08:23:58.027] [INFO] cheese - inserting 1000 documents. first: Law of comparative judgment and last: Father Paul +[2018-02-13T08:23:58.091] [INFO] cheese - batch complete in: 1.42 secs +[2018-02-13T08:23:58.224] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:23:58.230] [INFO] cheese - batch complete in: 1.623 secs +[2018-02-13T08:23:58.286] [INFO] cheese - inserting 1000 documents. first: Grugé-l'Hôpital and last: Wikipedia:Peer review/Maulana Abul Kalam Azad +[2018-02-13T08:23:58.417] [INFO] cheese - inserting 1000 documents. first: Mesabolone and last: Europe Tour +[2018-02-13T08:23:58.439] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:23:58.657] [INFO] cheese - inserting 1000 documents. first: List of colonial governors of florida and last: St. Helena Rail +[2018-02-13T08:23:58.691] [INFO] cheese - batch complete in: 1.497 secs +[2018-02-13T08:23:58.725] [INFO] cheese - inserting 1000 documents. first: Botti Biabi and last: Wishenpoof! +[2018-02-13T08:23:58.761] [INFO] cheese - batch complete in: 1.435 secs +[2018-02-13T08:23:58.787] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:23:59.002] [INFO] cheese - inserting 1000 documents. first: Arthur "Dooley" Wilson and last: Category:Electric power in Vietnam +[2018-02-13T08:23:59.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Mauna Loa and last: Wikipedia:Peer review/Nicktropolis +[2018-02-13T08:23:59.166] [INFO] cheese - inserting 1000 documents. first: Category:Swiss writers in German and last: Mother Natures Kitchen +[2018-02-13T08:23:59.220] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:23:59.426] [INFO] cheese - batch complete in: 1.202 secs +[2018-02-13T08:23:59.595] [INFO] cheese - batch complete in: 1.925 secs +[2018-02-13T08:23:59.606] [INFO] cheese - inserting 1000 documents. first: Category:Brazilian reality television series and last: Heather Craney +[2018-02-13T08:23:59.728] [INFO] cheese - inserting 1000 documents. first: 1965 in Singapore and last: Benoni +[2018-02-13T08:23:59.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alive and Hostile E.P. and last: Template:2015 AFC U-14 Regional Festival of Football Group A +[2018-02-13T08:23:59.769] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:23:59.870] [INFO] cheese - batch complete in: 1.639 secs +[2018-02-13T08:23:59.891] [INFO] cheese - inserting 1000 documents. first: Fictional Jimmy Wales and last: Brokedown Palace: Music from the Original Motion Picture Soundtrack +[2018-02-13T08:23:59.946] [INFO] cheese - batch complete in: 1.158 secs +[2018-02-13T08:24:00.048] [INFO] cheese - batch complete in: 1.286 secs +[2018-02-13T08:24:00.204] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Indian Christianity work group articles and last: Saint-Jean-le-Thomas +[2018-02-13T08:24:00.264] [INFO] cheese - inserting 1000 documents. first: File:You Don't Love Me (No, No, No) single cover.jpg and last: Moreau's opera house +[2018-02-13T08:24:00.306] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T08:24:00.479] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:24:00.601] [INFO] cheese - inserting 1000 documents. first: Template:Bodoland People's Front/meta/shortname and last: Provinces of Australia +[2018-02-13T08:24:00.605] [INFO] cheese - inserting 1000 documents. first: Naukšēni Municipality and last: Chaque feu... +[2018-02-13T08:24:00.669] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by James Franco and last: Wikipedia:Articles for deletion/Edward W. Gosselin +[2018-02-13T08:24:00.691] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:24:00.690] [INFO] cheese - batch complete in: 1.094 secs +[2018-02-13T08:24:00.819] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:24:00.849] [INFO] cheese - inserting 1000 documents. first: Northampton, Pennsylvania and last: Bradley, South Carolina +[2018-02-13T08:24:00.857] [INFO] cheese - inserting 1000 documents. first: Symbol of Christianity and last: Category:Birds of Argentina +[2018-02-13T08:24:00.973] [INFO] cheese - inserting 1000 documents. first: Saint-Laurent-de-Cuves and last: Edmund Sheffield, 1st Baron Sheffield +[2018-02-13T08:24:00.995] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:24:01.005] [INFO] cheese - inserting 1000 documents. first: Tumbling Tumbleweed and last: CYFS +[2018-02-13T08:24:01.047] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:24:01.115] [INFO] cheese - batch complete in: 3.501 secs +[2018-02-13T08:24:01.165] [INFO] cheese - batch complete in: 1.295 secs +[2018-02-13T08:24:01.395] [INFO] cheese - inserting 1000 documents. first: Joshua Peters and last: Ryazan Plant for Manufacturing and Processing Non-Ferrous Metals +[2018-02-13T08:24:01.514] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:24:01.613] [INFO] cheese - inserting 1000 documents. first: Abdurahmanov's pugolovka and last: Csoklovina +[2018-02-13T08:24:01.658] [INFO] cheese - inserting 1000 documents. first: Rocky Pass and last: Just an American Boy (album) +[2018-02-13T08:24:01.683] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Michael Douglas on stage and screen and last: One Last Kiss (Full House) +[2018-02-13T08:24:01.788] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:24:01.816] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:24:01.838] [INFO] cheese - inserting 1000 documents. first: Synergetic and last: 1918–19 Northern Rugby Football Union season +[2018-02-13T08:24:01.847] [INFO] cheese - inserting 1000 documents. first: Alameda County (California) and last: NWA United National Championship +[2018-02-13T08:24:01.891] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:24:01.935] [INFO] cheese - inserting 1000 documents. first: Child, youth and family services and last: GranDracmon +[2018-02-13T08:24:02.005] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:24:02.075] [INFO] cheese - batch complete in: 1.384 secs +[2018-02-13T08:24:02.158] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:24:02.356] [INFO] cheese - inserting 1000 documents. first: Category:2004 establishments in New Mexico and last: Hjortsberg +[2018-02-13T08:24:02.411] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:24:02.489] [INFO] cheese - inserting 1000 documents. first: Nova Chemicals Corporation and last: Zero Township, Adams County, Nebraska +[2018-02-13T08:24:02.527] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:24:02.556] [INFO] cheese - inserting 1000 documents. first: Gyeongju Seokbinggo and last: File:George Washington Memorial Parkway, Alexandria, VA.jpg +[2018-02-13T08:24:02.583] [INFO] cheese - inserting 1000 documents. first: Against The Grain (Acoustic Alchemy album) and last: Aaq26 +[2018-02-13T08:24:02.601] [INFO] cheese - inserting 1000 documents. first: Bobaja and last: Pama–Maran languages +[2018-02-13T08:24:02.644] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:24:02.680] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:24:02.731] [INFO] cheese - inserting 1000 documents. first: City of Bradford Metropolitan District Council election, 1999 and last: The Journal of Physical Chemistry B +[2018-02-13T08:24:02.776] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:24:02.901] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:24:02.958] [INFO] cheese - inserting 1000 documents. first: Stanley Theater (Jersey City) and last: Wherton +[2018-02-13T08:24:02.958] [INFO] cheese - inserting 1000 documents. first: Optical pulsar and last: Wikipedia:Peer review/Slipknot (band) +[2018-02-13T08:24:02.976] [INFO] cheese - inserting 1000 documents. first: Brasiliorchis schunkeana and last: Category:Treaties of the Empire of Brazil +[2018-02-13T08:24:02.998] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:24:03.074] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:24:03.103] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:24:03.229] [INFO] cheese - inserting 1000 documents. first: AN-AAQ-26 and last: Michaël Borremans +[2018-02-13T08:24:03.280] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:24:03.313] [INFO] cheese - inserting 1000 documents. first: Cokesbury, South Carolina and last: Nash, Texas +[2018-02-13T08:24:03.441] [INFO] cheese - inserting 1000 documents. first: Stronger woman and last: Portal:United States/On this day/April 18 +[2018-02-13T08:24:03.444] [INFO] cheese - batch complete in: 2.323 secs +[2018-02-13T08:24:03.457] [INFO] cheese - inserting 1000 documents. first: Sonkatch, Bhopal and last: Category:Naval ships of Burma +[2018-02-13T08:24:03.484] [INFO] cheese - inserting 1000 documents. first: Paramacrobiotus craterlaki and last: Tohu and Tikkun +[2018-02-13T08:24:03.505] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:24:03.590] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Army Song and last: Yevgeniy Khudobko +[2018-02-13T08:24:03.596] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:24:03.604] [INFO] cheese - inserting 1000 documents. first: Endless Love (2015 film) and last: Thirteen Moons (novel) +[2018-02-13T08:24:03.688] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:24:03.824] [INFO] cheese - batch complete in: 1.144 secs +[2018-02-13T08:24:03.831] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:24:04.161] [INFO] cheese - inserting 1000 documents. first: Liebster Gott, wenn werd ich sterben? BWV 8 and last: Category:222 BC +[2018-02-13T08:24:04.202] [INFO] cheese - inserting 1000 documents. first: Persistent data structure with confluence and last: William Henry Emerson +[2018-02-13T08:24:04.214] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of ParanormalResources and last: File:Bob and Tom Radio Show- The Comedy Tour Volume1.jpg +[2018-02-13T08:24:04.235] [INFO] cheese - inserting 1000 documents. first: Frederick B. Rowe and last: Timeline of Saratoga Springs, New York +[2018-02-13T08:24:04.277] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:24:04.311] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:24:04.320] [INFO] cheese - batch complete in: 1.04 secs +[2018-02-13T08:24:04.374] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:24:04.609] [INFO] cheese - inserting 1000 documents. first: Reg Graycar and last: Wikipedia:Reference desk/Archives/Entertainment/2013 May 15 +[2018-02-13T08:24:04.655] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:24:04.709] [INFO] cheese - inserting 1000 documents. first: Gunnar Ólason and last: Runcicantitruncated 6-orthoplex +[2018-02-13T08:24:04.766] [INFO] cheese - inserting 1000 documents. first: Yevgeny Khudobko and last: Sexy M.F. +[2018-02-13T08:24:04.804] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:24:04.825] [INFO] cheese - inserting 1000 documents. first: Biak language and last: Reid Paley +[2018-02-13T08:24:04.862] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:24:04.989] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:24:05.068] [INFO] cheese - inserting 1000 documents. first: Category:223 BC and last: Yushin constitution +[2018-02-13T08:24:05.069] [INFO] cheese - inserting 1000 documents. first: Brittany Force and last: Wikipedia:Featured picture candidates/Condom Cathedral +[2018-02-13T08:24:05.073] [INFO] cheese - inserting 1000 documents. first: Dobie Center and last: Saint Thomas, North Dakota +[2018-02-13T08:24:05.195] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:24:05.197] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:24:05.290] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:24:05.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 May 16 and last: Category:2004 establishments in Nebraska +[2018-02-13T08:24:05.688] [INFO] cheese - inserting 1000 documents. first: Collateral management software and last: Template:Botswana National Front/meta/shortname +[2018-02-13T08:24:05.790] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T08:24:05.806] [INFO] cheese - inserting 1000 documents. first: USS Emily B. (ID-3731) and last: Template:Frisco RoughRiders roster +[2018-02-13T08:24:05.831] [INFO] cheese - batch complete in: 1.175 secs +[2018-02-13T08:24:05.923] [INFO] cheese - inserting 1000 documents. first: DCAS Testing and last: Coleophora thymiphaga +[2018-02-13T08:24:05.927] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:24:05.948] [INFO] cheese - inserting 1000 documents. first: KYRS and last: 25 equal temperament +[2018-02-13T08:24:06.035] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:24:06.037] [INFO] cheese - inserting 1000 documents. first: Overseas Community Affairs Council and last: Nikare +[2018-02-13T08:24:06.102] [INFO] cheese - batch complete in: 1.297 secs +[2018-02-13T08:24:06.130] [INFO] cheese - inserting 1000 documents. first: New Boston, Texas and last: Henderson, Texas +[2018-02-13T08:24:06.136] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:24:06.199] [INFO] cheese - inserting 1000 documents. first: Queen Anne's Bounty and last: Air defence +[2018-02-13T08:24:06.320] [INFO] cheese - batch complete in: 2.875 secs +[2018-02-13T08:24:06.346] [INFO] cheese - batch complete in: 1.149 secs +[2018-02-13T08:24:06.514] [INFO] cheese - inserting 1000 documents. first: Sonny rollins and last: Wlodzimierz Kotonski +[2018-02-13T08:24:06.547] [INFO] cheese - inserting 1000 documents. first: Category:Low usage railway stations in the United Kingdom and last: WUPC-LP +[2018-02-13T08:24:06.631] [INFO] cheese - inserting 1000 documents. first: 26 equal temperament and last: Leuk. Res. +[2018-02-13T08:24:06.635] [INFO] cheese - inserting 1000 documents. first: Mad Catz Interactive, Inc and last: Ladenburg Thalmann Financial Services Inc +[2018-02-13T08:24:06.770] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:24:06.776] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:24:06.893] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:24:06.892] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T08:24:06.990] [INFO] cheese - inserting 1000 documents. first: Colleen Powell and last: Category:Diodontidae +[2018-02-13T08:24:07.088] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:24:07.355] [INFO] cheese - inserting 1000 documents. first: Orthographis thymiella and last: Athletics at the 2012 Summer Olympics – Men's pole vault +[2018-02-13T08:24:07.372] [INFO] cheese - inserting 1000 documents. first: Johann Poggendorff and last: Lumba-Bayabao +[2018-02-13T08:24:07.571] [INFO] cheese - batch complete in: 1.225 secs +[2018-02-13T08:24:07.646] [INFO] cheese - batch complete in: 1.544 secs +[2018-02-13T08:24:07.727] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Water supply and sanitation in Colombia and last: Category:Heritage railroads in Rhode Island +[2018-02-13T08:24:07.735] [INFO] cheese - inserting 1000 documents. first: Cornelius Becker and last: Ultima Online Pacific Shard +[2018-02-13T08:24:07.845] [INFO] cheese - inserting 1000 documents. first: Mad Catz Interactive Inc and last: Chinese language romanization in Hong Kong +[2018-02-13T08:24:07.868] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:24:07.968] [INFO] cheese - inserting 1000 documents. first: Leuk Res and last: Alonzo Cooper Rand +[2018-02-13T08:24:07.994] [INFO] cheese - inserting 1000 documents. first: Artur Svensson and last: Category:University of Santa Clara alumni +[2018-02-13T08:24:08.029] [INFO] cheese - batch complete in: 1.253 secs +[2018-02-13T08:24:08.068] [INFO] cheese - batch complete in: 1.158 secs +[2018-02-13T08:24:08.183] [INFO] cheese - batch complete in: 1.29 secs +[2018-02-13T08:24:08.272] [INFO] cheese - batch complete in: 1.183 secs +[2018-02-13T08:24:08.759] [INFO] cheese - inserting 1000 documents. first: Négreville and last: October 1998 Central Texas floods +[2018-02-13T08:24:08.803] [INFO] cheese - inserting 1000 documents. first: Sclerograptis oxytypa and last: Wiehle–Reston East station (Washington Metro) +[2018-02-13T08:24:08.813] [INFO] cheese - inserting 1000 documents. first: 1986 European Championships in Athletics - Men's Triple Jump and last: GOES 3 +[2018-02-13T08:24:08.867] [INFO] cheese - inserting 1000 documents. first: Lumbatan and last: Tigervespamon +[2018-02-13T08:24:08.880] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2012 Summer Olympics – Women's 5000 metres and last: File:The Information Gleick 2011.jpg +[2018-02-13T08:24:08.887] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:24:08.907] [INFO] cheese - inserting 1000 documents. first: Northern Kashmir and last: File:Logo of the 2008 European Road Championships.jpg +[2018-02-13T08:24:08.938] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:24:08.941] [INFO] cheese - inserting 1000 documents. first: German occupation of the Netherlands and last: Category:Sierra Leonean Methodists +[2018-02-13T08:24:09.099] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:24:09.164] [INFO] cheese - batch complete in: 1.593 secs +[2018-02-13T08:24:09.282] [INFO] cheese - batch complete in: 1.214 secs +[2018-02-13T08:24:09.297] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:24:09.322] [INFO] cheese - batch complete in: 1.676 secs +[2018-02-13T08:24:09.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Interfaith articles by quality/3 and last: Dnace Dance +[2018-02-13T08:24:09.924] [INFO] cheese - inserting 1000 documents. first: Dulles International Airport station (Washington Metro) and last: Alessandro Montagnoli +[2018-02-13T08:24:09.931] [INFO] cheese - inserting 1000 documents. first: Mount Enterprise, Texas and last: Lincolnia, Virginia +[2018-02-13T08:24:10.040] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T08:24:10.090] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T08:24:10.181] [INFO] cheese - inserting 1000 documents. first: Maksim Kiselyov (footballer, born 1991) and last: Kosmos 307 +[2018-02-13T08:24:10.229] [INFO] cheese - inserting 1000 documents. first: Eric Spoto and last: Hanjarak-e Bala +[2018-02-13T08:24:10.360] [INFO] cheese - inserting 1000 documents. first: Serbian ultranationalist and last: The Girl (2000 film) +[2018-02-13T08:24:10.399] [INFO] cheese - batch complete in: 1.3 secs +[2018-02-13T08:24:10.447] [INFO] cheese - batch complete in: 1.165 secs +[2018-02-13T08:24:10.476] [INFO] cheese - inserting 1000 documents. first: Marondera and last: Harry Potter and the Halfblood Prince +[2018-02-13T08:24:10.592] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rlc.org and last: St james's cake +[2018-02-13T08:24:10.600] [INFO] cheese - batch complete in: 1.303 secs +[2018-02-13T08:24:10.706] [INFO] cheese - batch complete in: 4.386 secs +[2018-02-13T08:24:10.785] [INFO] cheese - batch complete in: 1.619 secs +[2018-02-13T08:24:10.837] [INFO] cheese - batch complete in: 1.515 secs +[2018-02-13T08:24:11.087] [INFO] cheese - inserting 1000 documents. first: Template:Infobox pepper/sandbox and last: Ylang-ylang vine +[2018-02-13T08:24:11.267] [INFO] cheese - batch complete in: 1.227 secs +[2018-02-13T08:24:11.348] [INFO] cheese - inserting 1000 documents. first: Giant snakehead fish and last: File:Palmystery.jpg +[2018-02-13T08:24:11.455] [INFO] cheese - batch complete in: 1.365 secs +[2018-02-13T08:24:11.527] [INFO] cheese - inserting 1000 documents. first: Hanjarak and last: Wikipedia:Articles for deletion/Wiscasset Carla Pierce Day +[2018-02-13T08:24:11.574] [INFO] cheese - inserting 1000 documents. first: R. Amirtharaj and last: 2009 World Championships in Athletics – Men's 1500 metres +[2018-02-13T08:24:11.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/March 7, 2007 and last: Mesopotamian Campaign +[2018-02-13T08:24:11.693] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:24:11.797] [INFO] cheese - batch complete in: 1.397 secs +[2018-02-13T08:24:11.885] [INFO] cheese - batch complete in: 1.284 secs +[2018-02-13T08:24:11.952] [INFO] cheese - inserting 1000 documents. first: Category:Defunct railway stations in Paris and last: File:Norman Foster1.jpg +[2018-02-13T08:24:12.092] [INFO] cheese - inserting 1000 documents. first: Angry Red Planet and last: Scott mclellan +[2018-02-13T08:24:12.146] [INFO] cheese - batch complete in: 1.309 secs +[2018-02-13T08:24:12.237] [INFO] cheese - inserting 1000 documents. first: Dai Suli and last: History of Andalusia +[2018-02-13T08:24:12.281] [INFO] cheese - batch complete in: 1.495 secs +[2018-02-13T08:24:12.330] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:24:12.377] [INFO] cheese - inserting 1000 documents. first: Colour of Spring and last: Eugene Venzke +[2018-02-13T08:24:12.483] [INFO] cheese - inserting 1000 documents. first: Aznar Galíndez and last: Günz +[2018-02-13T08:24:12.588] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:24:12.633] [INFO] cheese - batch complete in: 1.178 secs +[2018-02-13T08:24:12.879] [INFO] cheese - inserting 1000 documents. first: Category:People from Wiveliscombe and last: Wikipedia:Version 1.0 Editorial Team/Glacier articles by quality/2 +[2018-02-13T08:24:12.897] [INFO] cheese - inserting 1000 documents. first: 秀水街 and last: Ulič +[2018-02-13T08:24:12.968] [INFO] cheese - batch complete in: 1.083 secs +[2018-02-13T08:24:13.096] [INFO] cheese - batch complete in: 1.299 secs +[2018-02-13T08:24:13.099] [INFO] cheese - inserting 1000 documents. first: Heavy Weather (Michael Sembello song) and last: Grand Cross of Aeronautical Merit +[2018-02-13T08:24:13.222] [INFO] cheese - inserting 1000 documents. first: File:Nilkamal Plastics logo.svg and last: Jakob III von Eltz +[2018-02-13T08:24:13.224] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:24:13.273] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Turquoise Parrot and last: KL Gangster +[2018-02-13T08:24:13.306] [INFO] cheese - inserting 1000 documents. first: Le Brassus and last: Portal:Weather/On this day list/October 2 +[2018-02-13T08:24:13.346] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:24:13.388] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:24:13.498] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stuycom.net and last: File:LangelyGreenJug.jpg +[2018-02-13T08:24:13.518] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:24:13.723] [INFO] cheese - batch complete in: 1.442 secs +[2018-02-13T08:24:14.075] [INFO] cheese - inserting 1000 documents. first: VPN (disambiguation) and last: Pažiť +[2018-02-13T08:24:14.077] [INFO] cheese - inserting 1000 documents. first: Lorton, Virginia and last: Parsons, West Virginia +[2018-02-13T08:24:14.230] [INFO] cheese - inserting 1000 documents. first: Gelechia sematica and last: Architecture of Bogor +[2018-02-13T08:24:14.302] [INFO] cheese - batch complete in: 1.334 secs +[2018-02-13T08:24:14.357] [INFO] cheese - inserting 1000 documents. first: Jakob von Eltz and last: Liverpool (Tithebarn Street) railway station +[2018-02-13T08:24:14.427] [INFO] cheese - inserting 1000 documents. first: Behnu'iyeh and last: Category:LSU Tigers women's soccer venues +[2018-02-13T08:24:14.441] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:24:14.646] [INFO] cheese - batch complete in: 1.3 secs +[2018-02-13T08:24:14.689] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day list/October 3 and last: Treslon +[2018-02-13T08:24:14.777] [INFO] cheese - batch complete in: 1.389 secs +[2018-02-13T08:24:14.857] [INFO] cheese - batch complete in: 4.15 secs +[2018-02-13T08:24:14.905] [INFO] cheese - batch complete in: 1.387 secs +[2018-02-13T08:24:15.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/Assessment/Tag & Assess 2009-2010/086 and last: Wikipedia:WikiProject Spam/LinkReports/russianhockey.de +[2018-02-13T08:24:15.265] [INFO] cheese - inserting 1000 documents. first: Fiordo Baker and last: Population Reference Bureau +[2018-02-13T08:24:15.316] [INFO] cheese - inserting 1000 documents. first: Wladyslaw Kozakiewicz and last: United States v. American Trucking Ass'ns +[2018-02-13T08:24:15.381] [INFO] cheese - batch complete in: 2.285 secs +[2018-02-13T08:24:15.406] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:24:15.485] [INFO] cheese - batch complete in: 1.762 secs +[2018-02-13T08:24:15.689] [INFO] cheese - inserting 1000 documents. first: Vilayet of Manastır and last: Decretalists +[2018-02-13T08:24:15.692] [INFO] cheese - inserting 1000 documents. first: Alain Turicchia and last: NCEI +[2018-02-13T08:24:15.768] [INFO] cheese - inserting 1000 documents. first: Trigny and last: Troost Elementary +[2018-02-13T08:24:15.811] [INFO] cheese - batch complete in: 1.162 secs +[2018-02-13T08:24:15.871] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:24:15.888] [INFO] cheese - batch complete in: 1.447 secs +[2018-02-13T08:24:16.029] [INFO] cheese - inserting 1000 documents. first: Yuan Tze-yu and last: Arundel Cricket Club +[2018-02-13T08:24:16.121] [INFO] cheese - batch complete in: 1.344 secs +[2018-02-13T08:24:16.387] [INFO] cheese - inserting 1000 documents. first: European Centre for Antiziganism Research and last: Heciyê Cindî +[2018-02-13T08:24:16.423] [INFO] cheese - inserting 1000 documents. first: Kosmos 388 and last: File:Ram Narayan - Lalit excerpt.ogg +[2018-02-13T08:24:16.432] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:24:16.448] [INFO] cheese - inserting 1000 documents. first: Koffi Olie and last: Category:Years of the 21st century in Burma +[2018-02-13T08:24:16.488] [INFO] cheese - inserting 1000 documents. first: Decretalist and last: Display technologies +[2018-02-13T08:24:16.543] [INFO] cheese - batch complete in: 1.162 secs +[2018-02-13T08:24:16.566] [INFO] cheese - inserting 1000 documents. first: Ponto dos Volantes and last: SubPop +[2018-02-13T08:24:16.617] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:24:16.713] [INFO] cheese - inserting 1000 documents. first: Futar and last: Najibullah Ahmadzai +[2018-02-13T08:24:16.759] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:24:16.759] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:24:16.932] [INFO] cheese - inserting 1000 documents. first: Battle of al-Qusayr (2013) and last: MS-DOS 8.0 +[2018-02-13T08:24:16.917] [INFO] cheese - batch complete in: 1.432 secs +[2018-02-13T08:24:17.098] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T08:24:17.108] [INFO] cheese - inserting 1000 documents. first: File:Salitre 20061111 61.JPG and last: Arunkumar Vaidya +[2018-02-13T08:24:17.326] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:24:17.361] [INFO] cheese - inserting 1000 documents. first: Thomas, West Virginia and last: Richland Center, Wisconsin +[2018-02-13T08:24:17.392] [INFO] cheese - inserting 1000 documents. first: File:Eugene England.jpg and last: Rosalinda +[2018-02-13T08:24:17.474] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:24:17.629] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sandisk.com and last: Kuntzig +[2018-02-13T08:24:17.681] [INFO] cheese - batch complete in: 2.824 secs +[2018-02-13T08:24:17.695] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2011-05-22 and last: Jamie Raeburn +[2018-02-13T08:24:17.701] [INFO] cheese - inserting 1000 documents. first: Category:Alumni by university or college in Burma and last: Template:1920 NL Record vs. opponents/doc +[2018-02-13T08:24:17.721] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:24:17.852] [INFO] cheese - batch complete in: 1.224 secs +[2018-02-13T08:24:17.863] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:24:17.907] [INFO] cheese - inserting 1000 documents. first: Albertskroon and last: Baby Face (film) +[2018-02-13T08:24:17.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Scripts/Script for X-chat and last: Les Jardins Christophe +[2018-02-13T08:24:18.111] [INFO] cheese - batch complete in: 1.194 secs +[2018-02-13T08:24:18.127] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:24:18.165] [INFO] cheese - inserting 1000 documents. first: Wolverhampton City Council and last: Gunnar Strang +[2018-02-13T08:24:18.257] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum emarginatum and last: Nancy Mygatt +[2018-02-13T08:24:18.312] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:24:18.318] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:24:18.448] [INFO] cheese - inserting 1000 documents. first: Lagarde, Moselle and last: Tax me if you can +[2018-02-13T08:24:18.491] [INFO] cheese - inserting 1000 documents. first: Gibeşti and last: See How They Fall +[2018-02-13T08:24:18.498] [INFO] cheese - inserting 1000 documents. first: Nederlandsch Indische Spoorweg Maatschappij and last: Ranjana Baghel +[2018-02-13T08:24:18.632] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:24:18.635] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:24:18.641] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:24:19.015] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of the Duchy of Nassau and last: Anisodes rapistriaria +[2018-02-13T08:24:19.148] [INFO] cheese - inserting 1000 documents. first: Conway's law and last: Margaret Hilda Roberts Thatcher +[2018-02-13T08:24:19.200] [INFO] cheese - inserting 1000 documents. first: St Helen's Church, Wheathampstead and last: Snake plantain +[2018-02-13T08:24:19.276] [INFO] cheese - batch complete in: 1.149 secs +[2018-02-13T08:24:19.312] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:24:19.349] [INFO] cheese - batch complete in: 1.236 secs +[2018-02-13T08:24:19.370] [INFO] cheese - inserting 1000 documents. first: Dangerous (Cascada song) and last: Bulbophyllum physocoryphum +[2018-02-13T08:24:19.433] [INFO] cheese - inserting 1000 documents. first: WJHH and last: Maja Mihalinec +[2018-02-13T08:24:19.481] [INFO] cheese - batch complete in: 1.169 secs +[2018-02-13T08:24:19.555] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:24:19.612] [INFO] cheese - inserting 1000 documents. first: Controlled Drinking Area and last: Category:Redirect-Class Bulgaria articles +[2018-02-13T08:24:19.689] [INFO] cheese - inserting 1000 documents. first: Vendar and last: The Veteran (book) +[2018-02-13T08:24:19.753] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:24:19.760] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T08:24:19.950] [INFO] cheese - inserting 1000 documents. first: Uuno Pelander and last: Wikipedia:Articles for deletion/Greg W. Locke +[2018-02-13T08:24:19.997] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ernest Oppenheimer Hall and last: Implied multiplication +[2018-02-13T08:24:20.029] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:24:20.076] [INFO] cheese - inserting 1000 documents. first: Richwood, Wisconsin and last: History of Baden-Württemberg +[2018-02-13T08:24:20.081] [INFO] cheese - inserting 1000 documents. first: 2008 FINA World Open Water Swimming Championships – Women's 5K and last: Bulbophyllum tumoriferum +[2018-02-13T08:24:20.150] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:24:20.171] [INFO] cheese - inserting 1000 documents. first: Recreation Ground (Aldershot) and last: Category:Bathylutichthyidae +[2018-02-13T08:24:20.206] [INFO] cheese - inserting 1000 documents. first: Real Unión and last: Lake of Ägeri +[2018-02-13T08:24:20.317] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:24:20.426] [INFO] cheese - batch complete in: 1.113 secs +[2018-02-13T08:24:20.496] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Bulgaria articles and last: Părăuşani +[2018-02-13T08:24:20.499] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:24:20.520] [INFO] cheese - batch complete in: 2.839 secs +[2018-02-13T08:24:20.585] [INFO] cheese - inserting 1000 documents. first: Jim Coleman (actor) and last: Category:1879 in Europe +[2018-02-13T08:24:20.716] [INFO] cheese - inserting 1000 documents. first: 2008 Omloop der Kempen and last: Martha Canary +[2018-02-13T08:24:20.770] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:24:20.786] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:24:20.914] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:24:21.028] [INFO] cheese - inserting 1000 documents. first: Eat 17 and last: File:Herbie Mann Returns to the Village Gate.jpg +[2018-02-13T08:24:21.190] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T08:24:21.273] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum turgidum and last: Category:Hegemonic Leagues +[2018-02-13T08:24:21.368] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:24:21.463] [INFO] cheese - inserting 1000 documents. first: Bevis Marks Congregation and last: Tim Vanhamel +[2018-02-13T08:24:21.613] [INFO] cheese - batch complete in: 1.187 secs +[2018-02-13T08:24:21.707] [INFO] cheese - inserting 1000 documents. first: Qur'an 3:7 and last: Swedish International Development Agency +[2018-02-13T08:24:21.735] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ETAG and last: Edmonton Grads +[2018-02-13T08:24:21.788] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:24:21.811] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Smithsonian Institution/tasks and last: Kenta Furube +[2018-02-13T08:24:21.843] [INFO] cheese - inserting 1000 documents. first: Category:19th-century New Zealand painters and last: Gelechia machinata +[2018-02-13T08:24:21.869] [INFO] cheese - inserting 1000 documents. first: Parausani and last: Adrien Delorme +[2018-02-13T08:24:21.915] [INFO] cheese - batch complete in: 1.415 secs +[2018-02-13T08:24:21.952] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:24:22.004] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:24:22.063] [INFO] cheese - batch complete in: 1.276 secs +[2018-02-13T08:24:22.147] [INFO] cheese - inserting 1000 documents. first: Awk programming language and last: Trifluoperazine +[2018-02-13T08:24:22.277] [INFO] cheese - inserting 1000 documents. first: Shelter Dogs and last: Category:Sofia Metro +[2018-02-13T08:24:22.279] [INFO] cheese - batch complete in: 1.758 secs +[2018-02-13T08:24:22.399] [INFO] cheese - inserting 1000 documents. first: Greatest Hits - Volume One and last: Ámfissa, Greece +[2018-02-13T08:24:22.441] [INFO] cheese - batch complete in: 1.073 secs +[2018-02-13T08:24:22.589] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:24:22.758] [INFO] cheese - inserting 1000 documents. first: Halfway River First Nations and last: A.B.C. Whipple +[2018-02-13T08:24:22.785] [INFO] cheese - inserting 1000 documents. first: Telphusa machinata and last: Domonique Swain +[2018-02-13T08:24:22.826] [INFO] cheese - inserting 1000 documents. first: Worsley Hall and last: Church of Saints Eusebius and Polion, Vinkovci +[2018-02-13T08:24:22.964] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T08:24:23.030] [INFO] cheese - batch complete in: 1.242 secs +[2018-02-13T08:24:23.054] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:24:23.199] [INFO] cheese - inserting 1000 documents. first: Vahelna and last: Template:S-Bahn Nürnberg +[2018-02-13T08:24:23.384] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Richard Harris (writer) and last: Quentin Bell +[2018-02-13T08:24:23.688] [INFO] cheese - batch complete in: 1.625 secs +[2018-02-13T08:24:23.711] [INFO] cheese - batch complete in: 1.795 secs +[2018-02-13T08:24:23.811] [INFO] cheese - inserting 1000 documents. first: Rail bank and last: Order of the dracula +[2018-02-13T08:24:23.815] [INFO] cheese - inserting 1000 documents. first: List of California Ranchos and last: Free Officers and Civilians Movement +[2018-02-13T08:24:23.961] [INFO] cheese - batch complete in: 1.372 secs +[2018-02-13T08:24:24.049] [INFO] cheese - inserting 1000 documents. first: Weyl-Schouten tensor and last: Battle of Hanging Rock +[2018-02-13T08:24:24.155] [INFO] cheese - batch complete in: 1.713 secs +[2018-02-13T08:24:24.258] [INFO] cheese - inserting 1000 documents. first: Keur Simbara and last: JNV Pfukhro Mao +[2018-02-13T08:24:24.272] [INFO] cheese - batch complete in: 1.241 secs +[2018-02-13T08:24:24.376] [INFO] cheese - inserting 1000 documents. first: Template:Saraperos de Saltillo roster and last: Radke +[2018-02-13T08:24:24.450] [INFO] cheese - batch complete in: 1.486 secs +[2018-02-13T08:24:24.665] [INFO] cheese - batch complete in: 1.61 secs +[2018-02-13T08:24:25.054] [INFO] cheese - inserting 1000 documents. first: 1906 SF Earthquake and last: Wikipedia:Articles for deletion/Everholt +[2018-02-13T08:24:25.057] [INFO] cheese - inserting 1000 documents. first: How Much Is That Liam In The Window (90210 (TV Series)) and last: Category:Houses in Porter County, Indiana +[2018-02-13T08:24:25.272] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:24:25.290] [INFO] cheese - inserting 1000 documents. first: Peter Wherrett and last: Wikipedia:Article series boxes policy (proposed) +[2018-02-13T08:24:25.499] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Desertificationableism and last: Wikipedia:ARSN/Header +[2018-02-13T08:24:25.506] [INFO] cheese - inserting 1000 documents. first: Contrat Social and last: Long Scale +[2018-02-13T08:24:25.529] [INFO] cheese - batch complete in: 1.841 secs +[2018-02-13T08:24:25.518] [INFO] cheese - batch complete in: 1.557 secs +[2018-02-13T08:24:25.815] [INFO] cheese - inserting 1000 documents. first: File:Woman's Head - 2012.jpg and last: Eliza (1811 ship) +[2018-02-13T08:24:26.024] [INFO] cheese - batch complete in: 1.869 secs +[2018-02-13T08:24:26.160] [INFO] cheese - batch complete in: 2.448 secs +[2018-02-13T08:24:26.184] [INFO] cheese - batch complete in: 1.734 secs +[2018-02-13T08:24:26.334] [INFO] cheese - inserting 1000 documents. first: Pitt Street, Manhattan and last: List of Iraq national football team managers +[2018-02-13T08:24:26.417] [INFO] cheese - inserting 1000 documents. first: Bass horn and last: Lake District +[2018-02-13T08:24:26.620] [INFO] cheese - batch complete in: 1.955 secs +[2018-02-13T08:24:26.684] [INFO] cheese - inserting 1000 documents. first: La Puglia and last: Bhikku Bodhi +[2018-02-13T08:24:26.950] [INFO] cheese - batch complete in: 1.678 secs +[2018-02-13T08:24:27.025] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators/Administrator Accountability Policy and last: Cherniahovski District +[2018-02-13T08:24:27.200] [INFO] cheese - batch complete in: 4.921 secs +[2018-02-13T08:24:27.317] [INFO] cheese - inserting 1000 documents. first: Template:Airports in Bulgaria and last: 2011 Sligo Rovers F.C. season +[2018-02-13T08:24:27.410] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ARSN/Header/doc and last: Slovo +[2018-02-13T08:24:27.411] [INFO] cheese - batch complete in: 1.89 secs +[2018-02-13T08:24:27.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Life on Mercury and last: Sikorsky MH-53M Pave Low +[2018-02-13T08:24:27.514] [INFO] cheese - batch complete in: 1.985 secs +[2018-02-13T08:24:27.779] [INFO] cheese - batch complete in: 1.755 secs +[2018-02-13T08:24:27.861] [INFO] cheese - batch complete in: 1.676 secs +[2018-02-13T08:24:28.203] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9912 and last: Ellei Johndro +[2018-02-13T08:24:28.214] [INFO] cheese - inserting 1000 documents. first: Short Scale and last: Stevie Wright +[2018-02-13T08:24:28.387] [INFO] cheese - batch complete in: 1.767 secs +[2018-02-13T08:24:28.473] [INFO] cheese - inserting 1000 documents. first: Cherniahovskii District and last: Capital Department, Catamarca +[2018-02-13T08:24:28.510] [INFO] cheese - batch complete in: 2.35 secs +[2018-02-13T08:24:28.742] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Arab astrologers and last: King Midas In Reverse +[2018-02-13T08:24:28.768] [INFO] cheese - inserting 1000 documents. first: Acronicta hasta and last: The Parliament (magazine) +[2018-02-13T08:24:28.771] [INFO] cheese - batch complete in: 1.359 secs +[2018-02-13T08:24:28.784] [INFO] cheese - inserting 1000 documents. first: Römpp's Chemistry Lexicon and last: Environmental impact of natural gas +[2018-02-13T08:24:28.943] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:24:28.951] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:24:28.963] [INFO] cheese - batch complete in: 1.449 secs +[2018-02-13T08:24:29.041] [INFO] cheese - inserting 1000 documents. first: Bosjean and last: Saint-Quentin-des-Prés +[2018-02-13T08:24:29.452] [INFO] cheese - inserting 1000 documents. first: Tagore Government College of Education and last: Whiptail Conger +[2018-02-13T08:24:29.456] [INFO] cheese - batch complete in: 2.506 secs +[2018-02-13T08:24:29.510] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:24:29.618] [INFO] cheese - inserting 1000 documents. first: Category:German newspaper publishing families and last: Prunella Margaret Rumney Illingworth +[2018-02-13T08:24:29.626] [INFO] cheese - inserting 1000 documents. first: Pravdinskii Raion and last: Newton ring +[2018-02-13T08:24:29.700] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:24:29.753] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:24:30.026] [INFO] cheese - inserting 1000 documents. first: Theoretical production ecology and last: Zäta höglund +[2018-02-13T08:24:30.053] [INFO] cheese - inserting 1000 documents. first: Lynn Hamilton (disambiguation) and last: Pionea limbalis +[2018-02-13T08:24:30.076] [INFO] cheese - inserting 1000 documents. first: Desná (Svitavy District) and last: Il mio canto libero +[2018-02-13T08:24:30.091] [INFO] cheese - inserting 1000 documents. first: Bangladeshi wedding and last: Denver Air Defense Sector +[2018-02-13T08:24:30.112] [INFO] cheese - batch complete in: 1.602 secs +[2018-02-13T08:24:30.151] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T08:24:30.332] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:24:30.434] [INFO] cheese - batch complete in: 1.491 secs +[2018-02-13T08:24:30.482] [INFO] cheese - inserting 1000 documents. first: Saint-Remy-en-l'Eau and last: Mauricio Gómez +[2018-02-13T08:24:30.565] [INFO] cheese - inserting 1000 documents. first: 1929 All-Big Six Conference football team and last: Elizabeth (1825 New Brunswick barque) +[2018-02-13T08:24:30.586] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:24:30.608] [INFO] cheese - inserting 1000 documents. first: Landing ship support, large and last: File:East vs. west in el sob.JPG +[2018-02-13T08:24:30.623] [INFO] cheese - inserting 1000 documents. first: Gidea Park, London, England and last: Gaston (comics) +[2018-02-13T08:24:30.678] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:24:30.798] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T08:24:31.007] [INFO] cheese - batch complete in: 3.807 secs +[2018-02-13T08:24:31.069] [INFO] cheese - inserting 1000 documents. first: Pseudotropheus macrophthalmus and last: Template:Little Shop of Horrors +[2018-02-13T08:24:31.085] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Vanderburgh County, Indiana and last: Guy Dupuis +[2018-02-13T08:24:31.129] [INFO] cheese - inserting 1000 documents. first: Dmitri Rybakin and last: C10H14ClNO2 +[2018-02-13T08:24:31.219] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:24:31.227] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:24:31.262] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:24:31.346] [INFO] cheese - inserting 1000 documents. first: Category:1825 establishments in Pennsylvania and last: Murder of Alison Parker and Adam Ward +[2018-02-13T08:24:31.384] [INFO] cheese - inserting 1000 documents. first: Category:Youth organizations based in Bulgaria and last: Wikipedia:Goings-on/February 24, 2008 +[2018-02-13T08:24:31.451] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:24:31.463] [INFO] cheese - inserting 1000 documents. first: Naryn River and last: Asepsis +[2018-02-13T08:24:31.464] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:24:31.700] [INFO] cheese - batch complete in: 1.588 secs +[2018-02-13T08:24:31.747] [INFO] cheese - inserting 1000 documents. first: M-130 (Michigan highway) and last: Oscar Minambres +[2018-02-13T08:24:31.865] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:24:31.933] [INFO] cheese - inserting 1000 documents. first: Template:Delfines del Carmen roster and last: The Last Witch Hunter (film) +[2018-02-13T08:24:32.014] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:24:32.154] [INFO] cheese - inserting 1000 documents. first: Million Dollar Bill (song) and last: Rikki-Tikki Tavi +[2018-02-13T08:24:32.256] [INFO] cheese - inserting 1000 documents. first: Kein Platz für Liebe and last: Portal:Physics/Selected article/July 2011 +[2018-02-13T08:24:32.259] [INFO] cheese - inserting 1000 documents. first: The Basket and last: Russian Rat Snake +[2018-02-13T08:24:32.259] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:24:32.334] [INFO] cheese - inserting 1000 documents. first: Template:Imagemap of counties in Alabama and last: Echo (steam tug) +[2018-02-13T08:24:32.422] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:24:32.451] [INFO] cheese - batch complete in: 1.229 secs +[2018-02-13T08:24:32.525] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:24:32.793] [INFO] cheese - inserting 1000 documents. first: The Last Witch Hunter (2014 film) and last: Kim You-jeong +[2018-02-13T08:24:32.803] [INFO] cheese - inserting 1000 documents. first: Ildirans in The Saga of Seven Suns and last: Ronney Householder +[2018-02-13T08:24:32.801] [INFO] cheese - inserting 1000 documents. first: Diagnosan and last: John Fitzgibbon, 1st Earl of Clare +[2018-02-13T08:24:32.898] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:24:33.034] [INFO] cheese - batch complete in: 1.333 secs +[2018-02-13T08:24:33.049] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:24:33.177] [INFO] cheese - inserting 1000 documents. first: Pokharan, Dahanu and last: Hispano-Suiza 12Hb +[2018-02-13T08:24:33.193] [INFO] cheese - inserting 1000 documents. first: James K. Hugessen and last: Gazelle class light cruiser +[2018-02-13T08:24:33.293] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:24:33.313] [INFO] cheese - inserting 1000 documents. first: 8 Days of Christmas (song) and last: Schuch +[2018-02-13T08:24:33.319] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:24:33.378] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 May 22 and last: Shirin M. Rai +[2018-02-13T08:24:33.429] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:24:33.484] [INFO] cheese - inserting 1000 documents. first: Theory of General Relativity and last: Orthodox Church in America +[2018-02-13T08:24:33.528] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:24:33.778] [INFO] cheese - batch complete in: 2.771 secs +[2018-02-13T08:24:33.856] [INFO] cheese - inserting 1000 documents. first: Königsberg class light cruiser (1905) and last: Kucinich Amendment +[2018-02-13T08:24:33.873] [INFO] cheese - inserting 1000 documents. first: 2010 GB174 and last: C. greggii +[2018-02-13T08:24:33.918] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:24:33.931] [INFO] cheese - inserting 1000 documents. first: John Fitzgibbon, 2nd Earl of Clare and last: Contra Apion +[2018-02-13T08:24:33.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cha Dao Tea Company and last: Draft:Francis W. Sullivan +[2018-02-13T08:24:34.019] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:24:34.055] [INFO] cheese - inserting 1000 documents. first: Schulich School of Music and last: Banksia spinulosa var. cunninghamii 'Lemon Glow' +[2018-02-13T08:24:34.080] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:24:34.093] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:24:34.202] [INFO] cheese - batch complete in: 1.304 secs +[2018-02-13T08:24:34.222] [INFO] cheese - inserting 1000 documents. first: Noosa River Ferry and last: Betty Faire +[2018-02-13T08:24:34.229] [INFO] cheese - inserting 1000 documents. first: Jacques Chevallier and last: File:Anetamerkourial.jpg +[2018-02-13T08:24:34.318] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:24:34.349] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:24:34.439] [INFO] cheese - inserting 1000 documents. first: Hospital warehouse and last: Harvey (2013 film) +[2018-02-13T08:24:34.522] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T08:24:34.538] [INFO] cheese - inserting 1000 documents. first: All I Want Is U and last: Philippus Fruytiers +[2018-02-13T08:24:34.586] [INFO] cheese - inserting 1000 documents. first: Draft:Frank A. Tirrell, Jr. and last: TeRina Keenan +[2018-02-13T08:24:34.595] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:24:34.662] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:24:34.894] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Agentsoo (archive) and last: Innenstadt (Frankfurt am Main) +[2018-02-13T08:24:34.904] [INFO] cheese - inserting 1000 documents. first: Index cards and last: Robert gall +[2018-02-13T08:24:35.037] [INFO] cheese - inserting 1000 documents. first: History of the United Kingdom (1945–2000) and last: Amoron'i Mania Region +[2018-02-13T08:24:35.038] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:24:35.058] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:24:35.147] [INFO] cheese - inserting 1000 documents. first: White Elephant (song) and last: Virtual CD-ROM Control Panel +[2018-02-13T08:24:35.172] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:24:35.209] [INFO] cheese - inserting 1000 documents. first: Leidesia procumbens and last: Wolf Street (Ljubljana) +[2018-02-13T08:24:35.356] [INFO] cheese - inserting 1000 documents. first: If It Kills Me and last: Star Hotel riot +[2018-02-13T08:24:35.363] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:24:35.402] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:24:35.480] [INFO] cheese - inserting 1000 documents. first: List of Hawaii Five-0 (2010 TV series) characters and last: Draft:John S. McDonald +[2018-02-13T08:24:35.545] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:24:35.604] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:24:35.941] [INFO] cheese - inserting 1000 documents. first: Joseph Cummings and last: Lipnur LT-200 +[2018-02-13T08:24:35.983] [INFO] cheese - inserting 1000 documents. first: Bristol Jupiter and last: Choiseul +[2018-02-13T08:24:35.989] [INFO] cheese - inserting 1000 documents. first: File:Photonics Spectra Logo.gif and last: Harlingtox Angel Divine +[2018-02-13T08:24:35.995] [INFO] cheese - inserting 1000 documents. first: Draft:Nelson Sharpe and last: Category:19th-century Italian dancers +[2018-02-13T08:24:35.995] [INFO] cheese - inserting 1000 documents. first: Centro de Estudos e Pesquisas Ambientais and last: Senegalese Solidarity Party +[2018-02-13T08:24:36.026] [INFO] cheese - inserting 1000 documents. first: Rosina Bonavota and last: Microglanis leptostriatus +[2018-02-13T08:24:36.039] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:24:36.061] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T08:24:36.160] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:24:36.201] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:24:36.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Palestine-related articles by quality/13 and last: File:Timothy-Taylor-Logo.jpg +[2018-02-13T08:24:36.287] [INFO] cheese - inserting 1000 documents. first: Mario Griguol and last: Category:Albania–Italy relations +[2018-02-13T08:24:36.290] [INFO] cheese - batch complete in: 2.511 secs +[2018-02-13T08:24:36.292] [INFO] cheese - batch complete in: 1.254 secs +[2018-02-13T08:24:36.436] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T08:24:36.448] [INFO] cheese - batch complete in: 1.083 secs +[2018-02-13T08:24:36.802] [INFO] cheese - inserting 1000 documents. first: File:Banksia burdettii.jpg and last: FC Metallurg Olmaliq +[2018-02-13T08:24:36.826] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected picture/9, 2008 and last: Strâmba River (Cibin) +[2018-02-13T08:24:36.852] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:24:36.855] [INFO] cheese - inserting 1000 documents. first: EC 4.3.1.3 and last: Josef Kramolín +[2018-02-13T08:24:36.929] [INFO] cheese - inserting 1000 documents. first: Raymundus Martini and last: Brent Hawkins +[2018-02-13T08:24:36.940] [INFO] cheese - inserting 1000 documents. first: Žichlínek and last: I. Periasamy +[2018-02-13T08:24:36.961] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:24:36.965] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:24:36.987] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:24:37.070] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:24:37.113] [INFO] cheese - inserting 1000 documents. first: Category:Education in Ethiopia and last: Safety standards +[2018-02-13T08:24:37.207] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:24:37.262] [INFO] cheese - inserting 1000 documents. first: Zoltan Mechlovits and last: Wikipedia:WikiProject Spam/LinkReports/musiquemachine.com +[2018-02-13T08:24:37.305] [INFO] cheese - inserting 1000 documents. first: Acmariu River and last: Sayeed Khokon +[2018-02-13T08:24:37.330] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:24:37.422] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:24:37.493] [INFO] cheese - inserting 1000 documents. first: Portal:Indianapolis/On this day/August 12 and last: Taiko master +[2018-02-13T08:24:37.523] [INFO] cheese - inserting 1000 documents. first: Drunk Last Night and last: Acidalia carmenta +[2018-02-13T08:24:37.535] [INFO] cheese - inserting 1000 documents. first: Ulmus glabra 'Gittisham' and last: If I Had Words +[2018-02-13T08:24:37.591] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:24:37.623] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:24:37.635] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:24:37.698] [INFO] cheese - inserting 1000 documents. first: Cheslea fc and last: Hollyoaks: The Morning After The Night Before +[2018-02-13T08:24:37.816] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:24:38.066] [INFO] cheese - inserting 1000 documents. first: Antoine Joseph Wiertz and last: DMR +[2018-02-13T08:24:38.078] [INFO] cheese - inserting 1000 documents. first: Penn's Woods and last: Category:Books by publisher country +[2018-02-13T08:24:38.132] [INFO] cheese - inserting 1000 documents. first: Hessian soldiers and last: Mammal Club +[2018-02-13T08:24:38.178] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:24:38.217] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:24:38.275] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:24:38.372] [INFO] cheese - inserting 1000 documents. first: File:Agony Coverart.jpg and last: Cal McCombs +[2018-02-13T08:24:38.473] [INFO] cheese - inserting 1000 documents. first: Category:Turkish-language television programming and last: Madan-e Gol Gohar +[2018-02-13T08:24:38.494] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:24:38.515] [INFO] cheese - inserting 1000 documents. first: It's Only A Theory and last: Panchayati Raj +[2018-02-13T08:24:38.533] [INFO] cheese - inserting 1000 documents. first: Lucky Luciano and last: Rievaulx Abbey +[2018-02-13T08:24:38.549] [INFO] cheese - inserting 1000 documents. first: Functional movement and last: Sainte Anne de Bellevue +[2018-02-13T08:24:38.641] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T08:24:38.689] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:24:38.787] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T08:24:38.800] [INFO] cheese - batch complete in: 2.51 secs +[2018-02-13T08:24:38.981] [INFO] cheese - inserting 1000 documents. first: Aslam Khan (cricketer, born 1935) and last: Quercus afghanistanensis +[2018-02-13T08:24:39.007] [INFO] cheese - inserting 1000 documents. first: File:ConfessionsofaCompulsiveEntrepreneur.png and last: Antonov Standard-1 +[2018-02-13T08:24:39.075] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:24:39.108] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:24:39.260] [INFO] cheese - inserting 1000 documents. first: Dengaku and last: Taroona +[2018-02-13T08:24:39.263] [INFO] cheese - inserting 1000 documents. first: Category:Best Drama Actor Golden Globe (television) winners and last: Portal:Textile arts/Selected biography/4 +[2018-02-13T08:24:39.335] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:24:39.398] [INFO] cheese - inserting 1000 documents. first: Best of Geri and last: Ymitós, Greece +[2018-02-13T08:24:39.400] [INFO] cheese - inserting 1000 documents. first: Namwater and last: DWBG-TV +[2018-02-13T08:24:39.469] [INFO] cheese - batch complete in: 1.29 secs +[2018-02-13T08:24:39.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rizzosports.com and last: Skrīveri Municipality +[2018-02-13T08:24:39.555] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:24:39.575] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:24:39.721] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:24:39.920] [INFO] cheese - inserting 1000 documents. first: File:BARFC Club Crest.jpg and last: Jeon Yeongeun +[2018-02-13T08:24:39.951] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:24:39.955] [INFO] cheese - inserting 1000 documents. first: Antonov Standard-2 and last: Last Chance To See +[2018-02-13T08:24:40.118] [INFO] cheese - batch complete in: 1.043 secs +[2018-02-13T08:24:40.236] [INFO] cheese - inserting 1000 documents. first: Hardaway Site and last: Linn-Kristin Riegelhuth Koren +[2018-02-13T08:24:40.291] [INFO] cheese - inserting 1000 documents. first: Ymittós, Greece and last: Joseph Calleja +[2018-02-13T08:24:40.303] [INFO] cheese - inserting 1000 documents. first: Juha Toivonen and last: Bloody, but Unbowed (disambiguation) +[2018-02-13T08:24:40.335] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:24:40.412] [INFO] cheese - inserting 1000 documents. first: Kolinec and last: Texas Reds Festival +[2018-02-13T08:24:40.447] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:24:40.417] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:24:40.654] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:24:40.761] [INFO] cheese - inserting 1000 documents. first: Cecil Walter Hardy Beaton and last: Green Lantern (Six Flags Great Adventure) +[2018-02-13T08:24:40.873] [INFO] cheese - inserting 1000 documents. first: BS II and last: Wikipedia:Teahouse/Questions/Archive 380 +[2018-02-13T08:24:40.894] [INFO] cheese - batch complete in: 1.424 secs +[2018-02-13T08:24:40.973] [INFO] cheese - inserting 1000 documents. first: Mon-Fayette Expressway and last: File:2011 FIL Women's U-19 World Lacrosse Championship Logo.png +[2018-02-13T08:24:41.046] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T08:24:41.196] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:24:41.299] [INFO] cheese - inserting 1000 documents. first: Self-harmer and last: Category:People from West Drayton +[2018-02-13T08:24:41.317] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Featured picture and last: Tabula cebetis +[2018-02-13T08:24:41.332] [INFO] cheese - inserting 1000 documents. first: Imperial Forest Research Institute and College and last: Wherever You Are Tonight +[2018-02-13T08:24:41.350] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:24:41.427] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:24:41.493] [INFO] cheese - batch complete in: 1.158 secs +[2018-02-13T08:24:41.503] [INFO] cheese - inserting 1000 documents. first: Dutch-Jewish and last: Ratikant Kanungo +[2018-02-13T08:24:41.610] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:24:41.710] [INFO] cheese - inserting 1000 documents. first: Rhazes and last: Reklaw, Texas +[2018-02-13T08:24:41.711] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CITOID and last: Squib case +[2018-02-13T08:24:41.815] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:24:41.909] [INFO] cheese - inserting 1000 documents. first: Karl I Ludwig, Elector Palatine and last: Operation Little Switch +[2018-02-13T08:24:41.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/whaleofatime.org and last: Kelyn Rowe +[2018-02-13T08:24:41.917] [INFO] cheese - batch complete in: 3.117 secs +[2018-02-13T08:24:42.037] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:24:42.047] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T08:24:42.089] [INFO] cheese - inserting 1000 documents. first: Goffin's Corella and last: দুর্গা পূজা +[2018-02-13T08:24:42.153] [INFO] cheese - inserting 1000 documents. first: File:Where in world is osama.jpg and last: WTTM +[2018-02-13T08:24:42.234] [INFO] cheese - inserting 1000 documents. first: Humanitarian Overseas Service Medal and last: Leo Nobile +[2018-02-13T08:24:42.329] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:24:42.384] [INFO] cheese - inserting 1000 documents. first: Category:Mississippian geologic formations and last: Genadish +[2018-02-13T08:24:42.406] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:24:42.510] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T08:24:42.602] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:24:42.955] [INFO] cheese - inserting 1000 documents. first: Squib Case and last: Alan Jones (cricketer) +[2018-02-13T08:24:43.093] [INFO] cheese - inserting 1000 documents. first: KDI School of Public Policy and Management and last: Mi Ricordo Anna Frank +[2018-02-13T08:24:43.151] [INFO] cheese - inserting 1000 documents. first: Ganarish and last: MOS:REDIR +[2018-02-13T08:24:43.188] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:24:43.256] [INFO] cheese - inserting 1000 documents. first: Mieczysława Ćwiklińska and last: August Zaba +[2018-02-13T08:24:43.268] [INFO] cheese - batch complete in: 1.231 secs +[2018-02-13T08:24:43.286] [INFO] cheese - inserting 1000 documents. first: Tied arch bridge and last: Wikipedia:WikiProject Spam/LinkReports/georadary.pl +[2018-02-13T08:24:43.292] [INFO] cheese - inserting 1000 documents. first: Minneapolis/duluth corridor and last: Ross McFarlane (footballer) +[2018-02-13T08:24:43.304] [INFO] cheese - inserting 1000 documents. first: The Last Revelation and last: List of mayors of Penticton +[2018-02-13T08:24:43.329] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:24:43.410] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:24:43.422] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:24:43.434] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:24:43.463] [INFO] cheese - batch complete in: 1.416 secs +[2018-02-13T08:24:43.739] [INFO] cheese - inserting 1000 documents. first: Island Climate Update tropical cyclone outlook and last: New Jersey gubernatorial election, 1943 +[2018-02-13T08:24:43.838] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:24:43.961] [INFO] cheese - inserting 1000 documents. first: La Trobe Secondary College and last: Groff (surname) +[2018-02-13T08:24:44.010] [INFO] cheese - inserting 1000 documents. first: Kurt van Raefelghem and last: Wikipedia:Possibly unfree files/2011 May 29 +[2018-02-13T08:24:44.013] [INFO] cheese - inserting 1000 documents. first: Existentially quantified and last: Triceps skin fold +[2018-02-13T08:24:44.029] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:24:44.215] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:24:44.282] [INFO] cheese - inserting 1000 documents. first: Your Move (album) and last: Roy Clark (UK) +[2018-02-13T08:24:44.289] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:24:44.303] [INFO] cheese - inserting 1000 documents. first: W. J. Holland and last: Quonset Naval Air Station +[2018-02-13T08:24:44.406] [INFO] cheese - inserting 1000 documents. first: Yan Qing and last: M.k.s. system +[2018-02-13T08:24:44.452] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:24:44.457] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:24:44.553] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:24:44.694] [INFO] cheese - inserting 1000 documents. first: Sheliak in fiction and last: Exposed.su +[2018-02-13T08:24:44.801] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:24:44.804] [INFO] cheese - inserting 1000 documents. first: EC 5.2.1.1 and last: Category:2004 Mid-American Conference baseball season +[2018-02-13T08:24:44.933] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:24:44.956] [INFO] cheese - inserting 1000 documents. first: Upper arm circumference and last: Combination underwear +[2018-02-13T08:24:44.964] [INFO] cheese - inserting 1000 documents. first: Troup, Texas and last: Electrical connector +[2018-02-13T08:24:45.065] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:24:45.151] [INFO] cheese - inserting 1000 documents. first: If I Could (Wiley song) and last: Robert Auld (British Army officer) +[2018-02-13T08:24:45.165] [INFO] cheese - inserting 1000 documents. first: Yerong Creek and last: Andante Cantabile e Presto Agitato in B (Mendelssohn) +[2018-02-13T08:24:45.169] [INFO] cheese - batch complete in: 3.252 secs +[2018-02-13T08:24:45.179] [INFO] cheese - inserting 1000 documents. first: Karolyn Kirby and last: Office de Radiodiffusion Television du Mali +[2018-02-13T08:24:45.284] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:24:45.307] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T08:24:45.352] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:24:45.440] [INFO] cheese - inserting 1000 documents. first: John A. Wickham Jr. and last: Template:Indiana Pacers roster +[2018-02-13T08:24:45.556] [INFO] cheese - inserting 1000 documents. first: Journal of Crohn's and Colitis and last: Category:Cambrian portal FA-class Natural world articles +[2018-02-13T08:24:45.569] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:24:45.699] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:24:45.761] [INFO] cheese - inserting 1000 documents. first: 190th (2nd Durham Light Infantry) Brigade and last: Nonuple +[2018-02-13T08:24:45.940] [INFO] cheese - inserting 1000 documents. first: I'm from Arkansas and last: Sir William McMahon, GCMG, CH +[2018-02-13T08:24:45.952] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:24:46.073] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T08:24:46.237] [INFO] cheese - inserting 1000 documents. first: Mary Isobel Catherine Bernadette O'Brien and last: Michael Saward (British Army officer) +[2018-02-13T08:24:46.243] [INFO] cheese - inserting 1000 documents. first: Downtown Camden, New Jersey and last: Cayman Islands–United States relations +[2018-02-13T08:24:46.394] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:24:46.452] [INFO] cheese - inserting 1000 documents. first: Backstretch and last: Palais Strousberg +[2018-02-13T08:24:46.462] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:24:46.678] [INFO] cheese - batch complete in: 1.394 secs +[2018-02-13T08:24:46.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kachin Church and last: 4th earl of clarendon +[2018-02-13T08:24:46.762] [INFO] cheese - inserting 1000 documents. first: Damien Borel and last: Felipe Francisco Macedo +[2018-02-13T08:24:46.932] [INFO] cheese - batch complete in: 1.363 secs +[2018-02-13T08:24:46.957] [INFO] cheese - inserting 1000 documents. first: Decuple and last: Christine Brehmer +[2018-02-13T08:24:47.047] [INFO] cheese - batch complete in: 1.348 secs +[2018-02-13T08:24:47.108] [INFO] cheese - batch complete in: 1.155 secs +[2018-02-13T08:24:47.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Christos Kotsakis and last: Rabbi Zamir Cohen +[2018-02-13T08:24:47.295] [INFO] cheese - batch complete in: 1.222 secs +[2018-02-13T08:24:47.335] [INFO] cheese - inserting 1000 documents. first: Lungs and last: Salvador Artigas +[2018-02-13T08:24:47.440] [INFO] cheese - inserting 1000 documents. first: File:Ren Höek.jpg and last: Georges Gueril +[2018-02-13T08:24:47.507] [INFO] cheese - inserting 1000 documents. first: Connector (mathematics) and last: Paraconsistent logics +[2018-02-13T08:24:47.548] [INFO] cheese - batch complete in: 1.154 secs +[2018-02-13T08:24:47.565] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T08:24:47.660] [INFO] cheese - inserting 1000 documents. first: Komádi and last: Wikipedia:Requests for comment/Seabhcan +[2018-02-13T08:24:47.754] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:24:47.806] [INFO] cheese - batch complete in: 2.637 secs +[2018-02-13T08:24:48.043] [INFO] cheese - inserting 1000 documents. first: File:Cover of the novel Aurora by Kim Stanley Robinson.jpg and last: History of Burroughs Corporation +[2018-02-13T08:24:48.053] [INFO] cheese - inserting 1000 documents. first: Stara Pazova and last: Piperacillin sodium +[2018-02-13T08:24:48.184] [INFO] cheese - batch complete in: 1.137 secs +[2018-02-13T08:24:48.221] [INFO] cheese - batch complete in: 1.289 secs +[2018-02-13T08:24:48.253] [INFO] cheese - inserting 1000 documents. first: ARTES and last: Lamkani +[2018-02-13T08:24:48.292] [INFO] cheese - inserting 1000 documents. first: Bennet High School and last: Pternistis clappertoni +[2018-02-13T08:24:48.362] [INFO] cheese - inserting 1000 documents. first: Jacobson semisimple ring and last: Category:Buenos Aires Province geography stubs +[2018-02-13T08:24:48.425] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:24:48.489] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:24:48.518] [INFO] cheese - inserting 1000 documents. first: Lama (surname) and last: Electronic Café International (ECI) +[2018-02-13T08:24:48.603] [INFO] cheese - inserting 1000 documents. first: Gruffudd ab yr Ynad Coch and last: Superior vertebral notch +[2018-02-13T08:24:48.627] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:24:48.704] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:24:48.786] [INFO] cheese - batch complete in: 1.678 secs +[2018-02-13T08:24:49.280] [INFO] cheese - inserting 1000 documents. first: Isabel of Portugal and last: Dymitriads +[2018-02-13T08:24:49.287] [INFO] cheese - inserting 1000 documents. first: Gelechia aerobatis and last: Oliver Sacks Foundation +[2018-02-13T08:24:49.398] [INFO] cheese - batch complete in: 1.214 secs +[2018-02-13T08:24:49.449] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T08:24:49.532] [INFO] cheese - inserting 1000 documents. first: Pternistis erckelii and last: Wikipedia:Categories for discussion/Log/2011 July 3 +[2018-02-13T08:24:49.556] [INFO] cheese - inserting 1000 documents. first: File:LotarSiewerdt.jpg and last: St. Brieuc Airport +[2018-02-13T08:24:49.582] [INFO] cheese - inserting 1000 documents. first: Highway 346 and last: 2007–08 CE Lleida Bàsquet season +[2018-02-13T08:24:49.804] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T08:24:49.808] [INFO] cheese - batch complete in: 1.18 secs +[2018-02-13T08:24:49.826] [INFO] cheese - batch complete in: 1.401 secs +[2018-02-13T08:24:50.056] [INFO] cheese - inserting 1000 documents. first: 2013-14 New York Islanders season and last: Monika Meyer (athlete) +[2018-02-13T08:24:50.168] [INFO] cheese - inserting 1000 documents. first: Portal:Utah/Selected article/1 and last: Portal:China/Archive +[2018-02-13T08:24:50.202] [INFO] cheese - inserting 1000 documents. first: Quercus brevipedunculata and last: Charlie Grainger +[2018-02-13T08:24:50.209] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T08:24:50.330] [INFO] cheese - batch complete in: 1.626 secs +[2018-02-13T08:24:50.334] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:24:50.506] [INFO] cheese - inserting 1000 documents. first: Bronto Bright Pebbles and last: Sony Ericsson C510 +[2018-02-13T08:24:50.539] [INFO] cheese - inserting 1000 documents. first: Fansub and last: Heinrich Schutz +[2018-02-13T08:24:50.738] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:24:50.754] [INFO] cheese - inserting 1000 documents. first: File:The Beverly Hillbillies.jpg and last: I'm as mad as hell, and I'm not going to take this anymore +[2018-02-13T08:24:50.765] [INFO] cheese - batch complete in: 2.956 secs +[2018-02-13T08:24:50.801] [INFO] cheese - inserting 1000 documents. first: The Dukes of Hazzard (movie) and last: Minting error +[2018-02-13T08:24:50.951] [INFO] cheese - inserting 1000 documents. first: The Diary of Anne Frank (1987 miniseries) and last: File:New Year Baby Poster.jpeg +[2018-02-13T08:24:50.968] [INFO] cheese - batch complete in: 1.16 secs +[2018-02-13T08:24:50.986] [INFO] cheese - batch complete in: 1.536 secs +[2018-02-13T08:24:51.154] [INFO] cheese - batch complete in: 1.35 secs +[2018-02-13T08:24:51.211] [INFO] cheese - inserting 1000 documents. first: Dimydarian oyster and last: Lucas Campana +[2018-02-13T08:24:51.275] [INFO] cheese - inserting 1000 documents. first: Mustoe House and last: Samuel Daskam +[2018-02-13T08:24:51.360] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:24:51.427] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:24:51.489] [INFO] cheese - inserting 1000 documents. first: Gerry Blaauw and last: Olivia Barber Winters +[2018-02-13T08:24:51.634] [INFO] cheese - batch complete in: 1.304 secs +[2018-02-13T08:24:51.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DJ Panic and last: File:Pussbootpretend.jpg +[2018-02-13T08:24:51.767] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:24:51.847] [INFO] cheese - inserting 1000 documents. first: Silvia Solar and last: El Morro or Port San Juan Light +[2018-02-13T08:24:51.914] [INFO] cheese - inserting 1000 documents. first: Walter John Raymond and last: Xu Feng-xiong +[2018-02-13T08:24:51.920] [INFO] cheese - inserting 1000 documents. first: Oxi and last: Category:Years in Brazilian association football navigational boxes +[2018-02-13T08:24:51.937] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2015-09-04 and last: Annemarie Davidson +[2018-02-13T08:24:51.955] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:24:52.011] [INFO] cheese - inserting 1000 documents. first: Birger Sjoberg and last: Mara Region +[2018-02-13T08:24:52.020] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:24:52.057] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:24:52.076] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:24:52.216] [INFO] cheese - batch complete in: 1.23 secs +[2018-02-13T08:24:52.351] [INFO] cheese - inserting 1000 documents. first: Set This Circus Down and last: UCAS points +[2018-02-13T08:24:52.393] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:24:52.462] [INFO] cheese - inserting 1000 documents. first: Quercetin-3-rhamnoside and last: Cascade waterfalls +[2018-02-13T08:24:52.564] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:24:52.595] [INFO] cheese - inserting 1000 documents. first: Category:1205 in Europe and last: Wikipedia:Articles for deletion/To Know That You're Alive +[2018-02-13T08:24:52.677] [INFO] cheese - inserting 1000 documents. first: Family Circle Cup and last: Category:Houses in Waller County, Texas +[2018-02-13T08:24:52.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dewayne jackson and last: Night Convoy +[2018-02-13T08:24:52.748] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:24:52.806] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:24:52.861] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:24:52.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Latinam-Zine and last: Intentional forgetting +[2018-02-13T08:24:52.957] [INFO] cheese - inserting 1000 documents. first: Antiphonitis and last: Battle of Dresden +[2018-02-13T08:24:53.067] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:24:53.126] [INFO] cheese - inserting 1000 documents. first: Pwani Region and last: Bahamani +[2018-02-13T08:24:53.193] [INFO] cheese - batch complete in: 2.428 secs +[2018-02-13T08:24:53.231] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian anti-abortion activists and last: Invasion of Serbian Krajina +[2018-02-13T08:24:53.332] [INFO] cheese - batch complete in: 1.116 secs +[2018-02-13T08:24:53.363] [INFO] cheese - inserting 1000 documents. first: Cascade waterfall and last: Jersey Surf +[2018-02-13T08:24:53.396] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:24:53.523] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:24:53.560] [INFO] cheese - inserting 1000 documents. first: Category:1397 in Europe and last: Agriculture in Chad +[2018-02-13T08:24:53.646] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/richcelebs.com and last: Category:Wikipedia requested photographs in Tate County, Mississippi +[2018-02-13T08:24:53.669] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:24:53.687] [INFO] cheese - inserting 1000 documents. first: Lawless (surname) and last: Template:Serbian White Eagles managers +[2018-02-13T08:24:53.710] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:24:53.877] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:24:53.924] [INFO] cheese - inserting 1000 documents. first: Lexico-grammar and last: File:Maize Craze Logo.jpg +[2018-02-13T08:24:54.048] [INFO] cheese - inserting 1000 documents. first: Daggy Dearest / Dag's List and last: Shaken and Stirred: The David Arnold James Bond Project +[2018-02-13T08:24:54.056] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:24:54.087] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:24:54.257] [INFO] cheese - inserting 1000 documents. first: Gentry Center and last: Category:Peterborough, Ontario +[2018-02-13T08:24:54.286] [INFO] cheese - inserting 1000 documents. first: Why Not Sneeze, Rrose Sélavy? and last: 3,5,7-trihydroxy-2-(4-hydroxy-3-methoxyphenyl)chromen-4-one +[2018-02-13T08:24:54.315] [INFO] cheese - inserting 1000 documents. first: File:Jaathre Audio Cover.jpg and last: Bagdi Raja +[2018-02-13T08:24:54.331] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:24:54.364] [INFO] cheese - inserting 1000 documents. first: Karol Chodkiewicz and last: Category:Ricochet (band) albums +[2018-02-13T08:24:54.374] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:24:54.397] [INFO] cheese - inserting 1000 documents. first: Aliaksandr Hukau and last: Ewing Galloway +[2018-02-13T08:24:54.404] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:24:54.479] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:24:54.486] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:24:54.621] [INFO] cheese - inserting 1000 documents. first: Dosh and last: Luxury Lounge (The Sopranos episode) +[2018-02-13T08:24:54.673] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:24:54.820] [INFO] cheese - inserting 1000 documents. first: Riley Milne and last: File:Union Street Fire, Borough.jpg +[2018-02-13T08:24:54.855] [INFO] cheese - inserting 1000 documents. first: Scrobipalpa bahai and last: That We Can Play +[2018-02-13T08:24:54.862] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T08:24:54.888] [INFO] cheese - inserting 1000 documents. first: File:KEmodel.jpg and last: Telmo Zarraonaindía +[2018-02-13T08:24:54.933] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:24:54.943] [INFO] cheese - inserting 1000 documents. first: Battle of Eckmühl and last: Bill Cosby +[2018-02-13T08:24:54.972] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T08:24:55.320] [INFO] cheese - inserting 1000 documents. first: Strobe register and last: NAVAIR +[2018-02-13T08:24:55.318] [INFO] cheese - batch complete in: 2.125 secs +[2018-02-13T08:24:55.415] [INFO] cheese - inserting 1000 documents. first: Johnny Cakes (The Sopranos episode) and last: Richardus Armachanus +[2018-02-13T08:24:55.529] [INFO] cheese - batch complete in: 1.198 secs +[2018-02-13T08:24:55.618] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:24:55.801] [INFO] cheese - inserting 1000 documents. first: Category:1963 establishments in Arkansas and last: Category:Eurovision Song Contest 1984 +[2018-02-13T08:24:55.918] [INFO] cheese - inserting 1000 documents. first: Antoni Bazaniak and last: Tenax II +[2018-02-13T08:24:55.963] [INFO] cheese - batch complete in: 1.484 secs +[2018-02-13T08:24:56.004] [INFO] cheese - inserting 1000 documents. first: Matthew Ferchius and last: Wikipedia:Articles for deletion/DVD releases for 2008 +[2018-02-13T08:24:56.055] [INFO] cheese - batch complete in: 1.193 secs +[2018-02-13T08:24:56.118] [INFO] cheese - inserting 1000 documents. first: K215AF and last: Wikipedia:WikiProject Spam/LinkReports/nalandapharmacy.ac.in +[2018-02-13T08:24:56.160] [INFO] cheese - batch complete in: 1.187 secs +[2018-02-13T08:24:56.239] [INFO] cheese - batch complete in: 1.306 secs +[2018-02-13T08:24:56.554] [INFO] cheese - inserting 1000 documents. first: Moravka and last: Enjoy Yourself (It's Later Than You Think) +[2018-02-13T08:24:56.598] [INFO] cheese - inserting 1000 documents. first: Flipnote Memo and last: Category:FL-Class maritime warfare articles +[2018-02-13T08:24:56.636] [INFO] cheese - inserting 1000 documents. first: Face-to-face discourse and last: A/b testing +[2018-02-13T08:24:56.734] [INFO] cheese - inserting 1000 documents. first: Naval Air Systems Command and last: Somophyllin-crt +[2018-02-13T08:24:56.775] [INFO] cheese - batch complete in: 2.719 secs +[2018-02-13T08:24:56.794] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:24:56.840] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:24:56.859] [INFO] cheese - inserting 1000 documents. first: Cow-Cow Boogie and last: Waiau, New Zealand +[2018-02-13T08:24:56.922] [INFO] cheese - batch complete in: 1.393 secs +[2018-02-13T08:24:56.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/nalandapharmacy.ac.in and last: European Christian Book Store Journal +[2018-02-13T08:24:57.002] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:24:57.165] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:24:57.204] [INFO] cheese - inserting 1000 documents. first: Daisy Miller (film) and last: Glacier forelands +[2018-02-13T08:24:57.309] [INFO] cheese - batch complete in: 1.149 secs +[2018-02-13T08:24:57.691] [INFO] cheese - inserting 1000 documents. first: Enter the Guardsman and last: Wikipedia:Sockpuppet investigations/Hunghim/Archive +[2018-02-13T08:24:57.714] [INFO] cheese - inserting 1000 documents. first: The Heads of the Proposals and last: Read Now With Power Up! +[2018-02-13T08:24:57.869] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Medieval warfare articles and last: 3D Systems Corp. +[2018-02-13T08:24:57.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blackthorn Asylum and last: 2009 European GP2 Race +[2018-02-13T08:24:57.904] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:24:57.927] [INFO] cheese - inserting 1000 documents. first: PLOS and last: Foreign relations of Macedonia +[2018-02-13T08:24:57.927] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:24:58.031] [INFO] cheese - inserting 1000 documents. first: ECBJ and last: Frederick William Matthiessen +[2018-02-13T08:24:58.032] [INFO] cheese - inserting 1000 documents. first: Alex G. Spanos Center and last: Ana María Martínez +[2018-02-13T08:24:58.047] [INFO] cheese - batch complete in: 1.272 secs +[2018-02-13T08:24:58.057] [INFO] cheese - batch complete in: 1.047 secs +[2018-02-13T08:24:58.141] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:24:58.171] [INFO] cheese - batch complete in: 1.247 secs +[2018-02-13T08:24:58.335] [INFO] cheese - batch complete in: 3.017 secs +[2018-02-13T08:24:58.483] [INFO] cheese - inserting 1000 documents. first: Kay Burdekin and last: File:CTConventionCenter.jpg +[2018-02-13T08:24:58.631] [INFO] cheese - batch complete in: 1.322 secs +[2018-02-13T08:24:58.739] [INFO] cheese - inserting 1000 documents. first: Russia national beach handball team and last: British Non-Ferrous Metals Research Association +[2018-02-13T08:24:58.882] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:24:58.912] [INFO] cheese - inserting 1000 documents. first: Dmitriyevsky (rural locality) and last: James John Van Alen +[2018-02-13T08:24:58.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Proghazalsrinivas/Archive and last: File:Rocca Massima-Stemma.png +[2018-02-13T08:24:58.951] [INFO] cheese - inserting 1000 documents. first: 2009 German GP2 Race and last: Wikipedia:Articles for deletion/D.A.D.O. +[2018-02-13T08:24:58.960] [INFO] cheese - inserting 1000 documents. first: Category:1913 establishments in Kenya and last: In the Shadow of Fear +[2018-02-13T08:24:59.054] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T08:24:59.100] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:24:59.163] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:24:59.193] [INFO] cheese - batch complete in: 1.265 secs +[2018-02-13T08:24:59.315] [INFO] cheese - inserting 1000 documents. first: Category:Cynical Wikipedians and last: Field Marshal (Pakistan) +[2018-02-13T08:24:59.432] [INFO] cheese - batch complete in: 1.261 secs +[2018-02-13T08:24:59.494] [INFO] cheese - inserting 1000 documents. first: 1st seimas and last: Kartellverband +[2018-02-13T08:24:59.667] [INFO] cheese - batch complete in: 1.036 secs +[2018-02-13T08:24:59.787] [INFO] cheese - inserting 1000 documents. first: University of Nevada-Reno and last: Wikipedia:Articles for deletion/Deal or No Deal, Series 1 (UK) +[2018-02-13T08:24:59.814] [INFO] cheese - inserting 1000 documents. first: Robail and last: Light Up the World (song) +[2018-02-13T08:24:59.887] [INFO] cheese - inserting 1000 documents. first: Jim White (basketball) and last: Category:Marine steam propulsion +[2018-02-13T08:24:59.908] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:25:00.063] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T08:25:00.070] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:25:00.082] [INFO] cheese - inserting 1000 documents. first: Mirnel Sadović and last: File:Equivalent incident wave and load.svg +[2018-02-13T08:25:00.197] [INFO] cheese - inserting 1000 documents. first: Mamadee and last: Should've Known Better (disambiguation) +[2018-02-13T08:25:00.240] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:25:00.530] [INFO] cheese - batch complete in: 1.337 secs +[2018-02-13T08:25:00.608] [INFO] cheese - inserting 1000 documents. first: Sharon, Middlesex County, Ontario and last: Ius civile +[2018-02-13T08:25:00.704] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:25:00.750] [INFO] cheese - inserting 1000 documents. first: Chapelle Sainte-Agathe and last: Friedrich-Wilhelm Wichmann +[2018-02-13T08:25:00.799] [INFO] cheese - inserting 1000 documents. first: Freeze frame and last: Dr ken +[2018-02-13T08:25:00.821] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:25:00.873] [INFO] cheese - inserting 1000 documents. first: Office of Legal Policy and last: Wikipedia:Reference desk/Archives/Humanities/2006 November 19 +[2018-02-13T08:25:00.906] [INFO] cheese - batch complete in: 1.474 secs +[2018-02-13T08:25:00.991] [INFO] cheese - inserting 1000 documents. first: EV9D9 and last: Redmarbled lizardfish +[2018-02-13T08:25:01.045] [INFO] cheese - inserting 1000 documents. first: Veinticinco de Mayo, Uruguay and last: Chacras de Dolores +[2018-02-13T08:25:01.054] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T08:25:01.058] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:25:01.180] [INFO] cheese - inserting 1000 documents. first: Mori no Tonto Tachi and last: Wikipedia:Today's articles for improvement/2013/30 +[2018-02-13T08:25:01.282] [INFO] cheese - batch complete in: 1.212 secs +[2018-02-13T08:25:01.386] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:25:01.424] [INFO] cheese - inserting 1000 documents. first: Ius gentium and last: Rise of Darkrai +[2018-02-13T08:25:01.530] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:25:01.584] [INFO] cheese - inserting 1000 documents. first: The Jabberwock (club) and last: Party Time (album by The Heptones) +[2018-02-13T08:25:01.740] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:25:01.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (Arabic)/Articles needing Arabic Script and last: File:Bloody Knife.jpg +[2018-02-13T08:25:02.080] [INFO] cheese - inserting 1000 documents. first: Alberta Highway 795 and last: Heredity and environment +[2018-02-13T08:25:02.106] [INFO] cheese - inserting 1000 documents. first: The light on the hill and last: Sir George Bullough +[2018-02-13T08:25:02.140] [INFO] cheese - batch complete in: 1.234 secs +[2018-02-13T08:25:02.286] [INFO] cheese - inserting 1000 documents. first: Melian and last: Love and Rockets +[2018-02-13T08:25:02.362] [INFO] cheese - batch complete in: 1.303 secs +[2018-02-13T08:25:02.375] [INFO] cheese - inserting 1000 documents. first: Minor Ignacio López and last: Tim Osswald +[2018-02-13T08:25:02.387] [INFO] cheese - batch complete in: 1.333 secs +[2018-02-13T08:25:02.422] [INFO] cheese - inserting 1000 documents. first: Strict determinism and last: Wikipedia:Sockpuppet investigations/Judenwatch +[2018-02-13T08:25:02.604] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:25:02.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Sciencegeck123/how to create a website and last: K220GR +[2018-02-13T08:25:02.656] [INFO] cheese - batch complete in: 1.374 secs +[2018-02-13T08:25:02.737] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:25:02.746] [INFO] cheese - batch complete in: 4.411 secs +[2018-02-13T08:25:02.751] [INFO] cheese - inserting 1000 documents. first: Sainte Pazanne and last: Escos +[2018-02-13T08:25:02.902] [INFO] cheese - batch complete in: 1.372 secs +[2018-02-13T08:25:03.015] [INFO] cheese - inserting 1000 documents. first: National Romantic Style and last: The Century Company +[2018-02-13T08:25:03.202] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:25:03.219] [INFO] cheese - inserting 1000 documents. first: Rebešovice and last: Spanish destroyer Alcala Galiano (D24) +[2018-02-13T08:25:03.261] [INFO] cheese - inserting 1000 documents. first: Compendium of postage stamp issuers (Aa–Al) and last: Bermuda ern +[2018-02-13T08:25:03.351] [INFO] cheese - inserting 1000 documents. first: Category:Jeonbuk Hyundai Motors players and last: Mammillaria goodridgei +[2018-02-13T08:25:03.355] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T08:25:03.388] [INFO] cheese - inserting 1000 documents. first: Category:People from the Northern Governorate and last: Jatindra Nath Dowerah +[2018-02-13T08:25:03.485] [INFO] cheese - inserting 1000 documents. first: Factions in the Libertarian Party (United States) and last: Wikipedia:WikiProject Spam/LinkReports/de.oocities.com +[2018-02-13T08:25:03.493] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:25:03.548] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T08:25:03.583] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:25:03.707] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:25:03.885] [INFO] cheese - inserting 1000 documents. first: File:Rotaru-2004-teche voda.gif and last: National Art Gallery of New Zealand +[2018-02-13T08:25:04.082] [INFO] cheese - inserting 1000 documents. first: Bel Amica and last: Des Hackett +[2018-02-13T08:25:04.101] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:25:04.154] [INFO] cheese - inserting 1000 documents. first: File:Colby College old mule logo.png and last: Philadelphia Phoenix (AUDL) +[2018-02-13T08:25:04.201] [INFO] cheese - inserting 1000 documents. first: Spanish destroyer Alcalá Galiano and last: Template:User wikipedia/CVU-Vandal Fighter +[2018-02-13T08:25:04.278] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:25:04.306] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:25:04.409] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:25:04.555] [INFO] cheese - inserting 1000 documents. first: Draft:Blue growth and last: Category:Tourist attractions in Isabella County, Michigan +[2018-02-13T08:25:04.596] [INFO] cheese - inserting 1000 documents. first: Feet Don't Fail Me Now (song) and last: Robur Siena S.S.D. +[2018-02-13T08:25:04.630] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:25:04.690] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T08:25:04.715] [INFO] cheese - inserting 1000 documents. first: 71000 Hughdowns and last: USS Gleaves (DD-423) +[2018-02-13T08:25:04.826] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dawn Valley Bible Methodist Church and last: Category:Houston articles by importance +[2018-02-13T08:25:04.839] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T08:25:04.872] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:25:04.920] [INFO] cheese - inserting 1000 documents. first: Mongaillard and last: Silent Majority Group +[2018-02-13T08:25:04.988] [INFO] cheese - inserting 1000 documents. first: Yakub (Elijah Muhammad) and last: Choi Seolri +[2018-02-13T08:25:04.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2013 June 4 and last: Category:Houses in Botetourt County, Virginia +[2018-02-13T08:25:05.095] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:25:05.117] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:25:05.124] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:25:05.385] [INFO] cheese - inserting 1000 documents. first: A-Trane and last: Doha,Qatar +[2018-02-13T08:25:05.537] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:25:05.552] [INFO] cheese - inserting 1000 documents. first: Template:Podemos Region of Murcia/meta/shortname and last: Tirukkollampudur Vilvaranyeswarar Temple +[2018-02-13T08:25:05.636] [INFO] cheese - inserting 1000 documents. first: Keloid and last: The (Young) Rascals +[2018-02-13T08:25:05.704] [INFO] cheese - inserting 1000 documents. first: Kahle v. Gonzales and last: Joe Kennedy (disambiguation) +[2018-02-13T08:25:05.734] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:25:05.840] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:25:05.952] [INFO] cheese - batch complete in: 3.206 secs +[2018-02-13T08:25:05.960] [INFO] cheese - inserting 1000 documents. first: Richard Basciano and last: Category:1985 establishments in Malaysia +[2018-02-13T08:25:05.971] [INFO] cheese - inserting 1000 documents. first: Peräaukko Sivistyksessä and last: Libotenice +[2018-02-13T08:25:05.983] [INFO] cheese - inserting 1000 documents. first: Montigny-sur-l'Hallue and last: David Willis (producer) +[2018-02-13T08:25:06.033] [INFO] cheese - inserting 1000 documents. first: Maathodaa (Gaafu Dhaalu Atoll) and last: Wada Pav +[2018-02-13T08:25:06.084] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:25:06.122] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T08:25:06.189] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:25:06.225] [INFO] cheese - batch complete in: 1.385 secs +[2018-02-13T08:25:06.393] [INFO] cheese - inserting 1000 documents. first: Penicillium stolkiae and last: Wikipedia:WikiProject Spam/LinkReports/mackenna-and-janssen.net +[2018-02-13T08:25:06.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/abergavennyboroughband.org.uk and last: Shibainu +[2018-02-13T08:25:06.546] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:25:06.795] [INFO] cheese - batch complete in: 1.258 secs +[2018-02-13T08:25:06.967] [INFO] cheese - inserting 1000 documents. first: Frederick Nettlefold and last: Crookesmoor road +[2018-02-13T08:25:07.086] [INFO] cheese - inserting 1000 documents. first: Herbert Henderson and last: Mae (surname) +[2018-02-13T08:25:07.179] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hind Hassan and last: Newt fencing +[2018-02-13T08:25:07.185] [INFO] cheese - batch complete in: 1.344 secs +[2018-02-13T08:25:07.321] [INFO] cheese - inserting 1000 documents. first: Lkáň and last: Budeč (Žďár nad Sázavou District) +[2018-02-13T08:25:07.348] [INFO] cheese - inserting 1000 documents. first: Saudi Ministry of Defense and Aviation and last: Velidhoo (Noonu Atoll) +[2018-02-13T08:25:07.362] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:25:07.396] [INFO] cheese - batch complete in: 1.274 secs +[2018-02-13T08:25:07.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mackenna-and-janssen.net and last: File:The Calm before the Storm by Colton Dixon.jpg +[2018-02-13T08:25:07.504] [INFO] cheese - batch complete in: 1.279 secs +[2018-02-13T08:25:07.641] [INFO] cheese - batch complete in: 1.557 secs +[2018-02-13T08:25:07.678] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:25:08.075] [INFO] cheese - inserting 1000 documents. first: Ballard, Queensland and last: Steve Shirreffs +[2018-02-13T08:25:08.276] [INFO] cheese - inserting 1000 documents. first: File:Gorka Old Futures Gone.jpg and last: Rashid Aushev Central Stadium +[2018-02-13T08:25:08.278] [INFO] cheese - batch complete in: 1.483 secs +[2018-02-13T08:25:08.497] [INFO] cheese - batch complete in: 1.312 secs +[2018-02-13T08:25:08.518] [INFO] cheese - inserting 1000 documents. first: Remak bundles and last: Category:People from Karakalpakstan +[2018-02-13T08:25:08.535] [INFO] cheese - inserting 1000 documents. first: Bukov (Žďár nad Sázavou District) and last: Wikings-NSK +[2018-02-13T08:25:08.552] [INFO] cheese - inserting 1000 documents. first: List of International cricket centuries by Sachin Tendulkar and last: File:Si te dicen que caí.jpg +[2018-02-13T08:25:08.595] [INFO] cheese - inserting 1000 documents. first: Nicolai Frederick Severin Grundtvig and last: Very Best Of Thomas and Friends +[2018-02-13T08:25:08.676] [INFO] cheese - batch complete in: 1.28 secs +[2018-02-13T08:25:08.686] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:25:08.780] [INFO] cheese - inserting 1000 documents. first: Category:Visitor attractions in the United Kingdom and last: United Nations statistical divisions for the Americas +[2018-02-13T08:25:08.787] [INFO] cheese - batch complete in: 1.425 secs +[2018-02-13T08:25:08.791] [INFO] cheese - batch complete in: 1.286 secs +[2018-02-13T08:25:08.955] [INFO] cheese - batch complete in: 1.277 secs +[2018-02-13T08:25:09.222] [INFO] cheese - inserting 1000 documents. first: 1907 VMI Keydets football team and last: Leaksville, North Carolina +[2018-02-13T08:25:09.273] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:25:09.426] [INFO] cheese - inserting 1000 documents. first: Novye Khimki Stadium and last: List of Webcomics +[2018-02-13T08:25:09.448] [INFO] cheese - inserting 1000 documents. first: Greenwich University and last: Fakenham College +[2018-02-13T08:25:09.457] [INFO] cheese - inserting 1000 documents. first: Aksel Magdahl and last: Template:User WikiProject Flagged Revisions +[2018-02-13T08:25:09.460] [INFO] cheese - inserting 1000 documents. first: Boy Meets World (Disney) and last: Incheon International Airport +[2018-02-13T08:25:09.473] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:25:09.500] [INFO] cheese - inserting 1000 documents. first: Le Mesge and last: Wikipedia:Featured article candidates/Blackface +[2018-02-13T08:25:09.522] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:25:09.535] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:25:09.623] [INFO] cheese - inserting 1000 documents. first: Amritanandamayi and last: Schürzenjäger +[2018-02-13T08:25:09.614] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:25:09.642] [INFO] cheese - inserting 1000 documents. first: United Nations statistical divisions for Asia and last: Wikipedia:WikiProject Spam/LinkReports/salud.uma.es +[2018-02-13T08:25:09.795] [INFO] cheese - batch complete in: 3.843 secs +[2018-02-13T08:25:09.808] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:25:09.826] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:25:10.096] [INFO] cheese - inserting 1000 documents. first: Sir graham bower and last: Personae +[2018-02-13T08:25:10.107] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ostodolepidae and last: Alcohol Tobacco Firearms +[2018-02-13T08:25:10.130] [INFO] cheese - inserting 1000 documents. first: Çözüm Süreci and last: Afro-Antiguan and Barbudan +[2018-02-13T08:25:10.165] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:25:10.198] [INFO] cheese - inserting 1000 documents. first: Lonjé Molen, Bolsward and last: Fencing at the 1924 Summer Olympics – Men's team foil +[2018-02-13T08:25:10.235] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:25:10.319] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:25:10.376] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Youth Olympics and last: Historic Buildings in Stirling, Alberta +[2018-02-13T08:25:10.438] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:25:10.536] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:25:10.635] [INFO] cheese - inserting 1000 documents. first: Hans Willem van Aylva and last: Harry Prout +[2018-02-13T08:25:10.780] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:25:10.829] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bommannan and last: Andy Ross +[2018-02-13T08:25:10.987] [INFO] cheese - batch complete in: 1.16 secs +[2018-02-13T08:25:11.033] [INFO] cheese - inserting 1000 documents. first: Professional Ski Simulator and last: George Harris (footballer, born 1877) +[2018-02-13T08:25:11.084] [INFO] cheese - inserting 1000 documents. first: Joe Nealon and last: Goscombe John +[2018-02-13T08:25:11.092] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:25:11.173] [INFO] cheese - inserting 1000 documents. first: Grand Ballroom and last: Tullahoma Municipal Airport +[2018-02-13T08:25:11.176] [INFO] cheese - inserting 1000 documents. first: Shabbethai Sheftel Horowitz and last: Hulliche +[2018-02-13T08:25:11.186] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T08:25:11.310] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:25:11.317] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:25:11.326] [INFO] cheese - inserting 1000 documents. first: Jaroslav Bouček and last: File:NoCompromise29.jpg +[2018-02-13T08:25:11.450] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:25:11.513] [INFO] cheese - inserting 1000 documents. first: To the Heart of the Storm and last: Gelechia culminicolella +[2018-02-13T08:25:11.583] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:25:11.609] [INFO] cheese - inserting 1000 documents. first: Yap Ah Shak and last: Éva Marion +[2018-02-13T08:25:11.672] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:25:11.735] [INFO] cheese - inserting 1000 documents. first: Brent Gretzky and last: Nicholas Eden, 2nd Earl of Avon +[2018-02-13T08:25:11.780] [INFO] cheese - inserting 1000 documents. first: Jeanne d'Arc (1900 film) and last: Quinnia laetifica +[2018-02-13T08:25:11.792] [INFO] cheese - inserting 1000 documents. first: Andreas Wolf and last: Flight test instrumentation +[2018-02-13T08:25:11.800] [INFO] cheese - inserting 1000 documents. first: Arthur Elmore Bostwick and last: Jazz Journalists' Awards +[2018-02-13T08:25:11.840] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:25:11.858] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:25:11.867] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:25:11.927] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:25:12.020] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Republic of Kosovo and last: File:Pirateswalkplank.jpg +[2018-02-13T08:25:12.123] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:25:12.127] [INFO] cheese - inserting 1000 documents. first: Musakhel Bazar and last: Sow-bugs +[2018-02-13T08:25:12.157] [INFO] cheese - inserting 1000 documents. first: Einstein-Podolsky-Rosen paradox and last: Bolshevism +[2018-02-13T08:25:12.194] [INFO] cheese - inserting 1000 documents. first: Template:Connected contributor (paid)/doc and last: Pottsville (SEPTA station) +[2018-02-13T08:25:12.199] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:25:12.282] [INFO] cheese - batch complete in: 2.487 secs +[2018-02-13T08:25:12.298] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:25:12.444] [INFO] cheese - inserting 1000 documents. first: Family Guy Pilot and last: Guillermo Mordillo +[2018-02-13T08:25:12.642] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:25:12.688] [INFO] cheese - inserting 1000 documents. first: Quinnia limatula and last: Princess Kunegunda +[2018-02-13T08:25:12.728] [INFO] cheese - inserting 1000 documents. first: Category:1993 graphic novels and last: Mr. Bigg's +[2018-02-13T08:25:12.807] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:25:12.830] [INFO] cheese - inserting 1000 documents. first: Walk the Plank (Pirates of the Mississippi album) and last: Sumrai–Miltu languages +[2018-02-13T08:25:12.923] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:25:12.947] [INFO] cheese - inserting 1000 documents. first: Solomon Drowne and last: Squids: Obsession and Devotion +[2018-02-13T08:25:12.997] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Puerto Princesa and last: Template:Did you know nominations/Demands of the Slovak Nation +[2018-02-13T08:25:13.023] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:25:13.053] [INFO] cheese - inserting 1000 documents. first: Single winner electoral systems and last: Wikipedia:Sockpuppet investigations/TheFix63/Archive +[2018-02-13T08:25:13.128] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:25:13.150] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:25:13.174] [INFO] cheese - batch complete in: 1.334 secs +[2018-02-13T08:25:13.415] [INFO] cheese - inserting 1000 documents. first: Slight of hand and last: Wikipedia:Articles for deletion/web directories +[2018-02-13T08:25:13.511] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:25:13.555] [INFO] cheese - inserting 1000 documents. first: Category:Insurance companies based in Florida and last: Rapses +[2018-02-13T08:25:13.616] [INFO] cheese - inserting 1000 documents. first: Edna Worthley Underwood and last: Category:Coal mines in Mozambique +[2018-02-13T08:25:13.732] [INFO] cheese - inserting 1000 documents. first: Mt. Kŏmdan-san and last: Wikipedia:Articles for deletion/Nathan Norman +[2018-02-13T08:25:13.656] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:25:13.791] [INFO] cheese - inserting 1000 documents. first: August Thalheimer and last: Downingtown Middle School +[2018-02-13T08:25:13.792] [INFO] cheese - batch complete in: 0.985 secs +[2018-02-13T08:25:13.811] [INFO] cheese - inserting 1000 documents. first: European University (disambiguation) and last: Killacycle +[2018-02-13T08:25:13.880] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:25:13.949] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:25:13.964] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:25:14.099] [INFO] cheese - inserting 1000 documents. first: Josiah Plumb and last: Silver Stream (New Zealand) +[2018-02-13T08:25:14.223] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:25:14.232] [INFO] cheese - inserting 1000 documents. first: Woodbridge new jersey and last: The Adventures of Mark and Brian +[2018-02-13T08:25:14.287] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:25:14.361] [INFO] cheese - inserting 1000 documents. first: Francis Edward Henry Farquharson and last: USS Kirwin (APD-90) +[2018-02-13T08:25:14.430] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:25:14.447] [INFO] cheese - inserting 1000 documents. first: Category:Mines in Mozambique and last: Saiyidha Dawetahwand +[2018-02-13T08:25:14.476] [INFO] cheese - inserting 1000 documents. first: Rehabilitative growth and last: Jo Daveiss +[2018-02-13T08:25:14.522] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:25:14.572] [INFO] cheese - inserting 1000 documents. first: Lionville Middle School and last: Xian heng tavern +[2018-02-13T08:25:14.582] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:25:14.715] [INFO] cheese - inserting 1000 documents. first: File:PONG+GAN+FC.png and last: Mel Meeks +[2018-02-13T08:25:14.733] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:25:14.805] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:25:14.856] [INFO] cheese - inserting 1000 documents. first: Jim Meddick and last: Act of Navigation +[2018-02-13T08:25:14.877] [INFO] cheese - inserting 1000 documents. first: George Smyth Baden-Powell and last: Maris Wrixon +[2018-02-13T08:25:14.976] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:25:14.986] [INFO] cheese - batch complete in: 2.703 secs +[2018-02-13T08:25:15.006] [INFO] cheese - inserting 1000 documents. first: Banu Güven and last: Category:1939 establishments in Chile +[2018-02-13T08:25:15.038] [INFO] cheese - inserting 1000 documents. first: Queen Gerbera of France and last: James Couper Brash +[2018-02-13T08:25:15.043] [INFO] cheese - inserting 1000 documents. first: Taxicabs of Chicago and last: Wikipedia:Articles for deletion/Cass V. Cibelli +[2018-02-13T08:25:15.071] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:25:15.088] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:25:15.164] [INFO] cheese - inserting 1000 documents. first: Category:Murder in 1940 and last: Tambelin railway station, Adelaide +[2018-02-13T08:25:15.166] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:25:15.266] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:25:15.304] [INFO] cheese - inserting 1000 documents. first: City of Springvale and last: File:Lemon-jelly-rolled.gif +[2018-02-13T08:25:15.400] [INFO] cheese - inserting 1000 documents. first: Erin Burke and last: Draft:Asia Regional Organic Standards +[2018-02-13T08:25:15.400] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:25:15.500] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:25:15.561] [INFO] cheese - inserting 1000 documents. first: MediaWeek and last: Shared Variables +[2018-02-13T08:25:15.625] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:25:15.629] [INFO] cheese - inserting 1000 documents. first: Tishman Speyer Properties, Inc. and last: 1990 British Formula Three Championship +[2018-02-13T08:25:15.675] [INFO] cheese - inserting 1000 documents. first: Okay Bill and last: File:Intelligent Systems logo.png +[2018-02-13T08:25:15.713] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:25:15.758] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:25:15.796] [INFO] cheese - inserting 1000 documents. first: Turakhan beg and last: Lars Dietrich (Musician) +[2018-02-13T08:25:15.856] [INFO] cheese - inserting 1000 documents. first: European Steel Technology Platform and last: Wang Lei (chess) +[2018-02-13T08:25:15.890] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:25:15.937] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T08:25:16.022] [INFO] cheese - inserting 1000 documents. first: Neha Bam and last: Burtons Corner +[2018-02-13T08:25:16.065] [INFO] cheese - inserting 1000 documents. first: Alexander-Conway polynomial and last: Horace Cameron +[2018-02-13T08:25:16.121] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:25:16.212] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T08:25:16.290] [INFO] cheese - inserting 1000 documents. first: Portal:Tropical cyclones/Anniversaries/January 19 and last: Venae stellatae +[2018-02-13T08:25:16.369] [INFO] cheese - inserting 1000 documents. first: Pollick and last: Konstantin Priahin +[2018-02-13T08:25:16.393] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:25:16.397] [INFO] cheese - inserting 1000 documents. first: Grand Canyon: The Hidden Secrets and last: Wikipedia:WikiProject Spam/LinkReports/res.es +[2018-02-13T08:25:16.502] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:25:16.550] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:25:16.660] [INFO] cheese - inserting 1000 documents. first: Template:Highland League map and last: Category:British sinologists +[2018-02-13T08:25:16.698] [INFO] cheese - inserting 1000 documents. first: File:London Thames Sunset panorama - Feb 2008.jpg and last: Ken Solheim +[2018-02-13T08:25:16.738] [INFO] cheese - inserting 1000 documents. first: Category:1869 establishments in Mississippi and last: Template:1909 AL Record vs. opponents +[2018-02-13T08:25:16.778] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:25:16.816] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:25:16.904] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:25:17.106] [INFO] cheese - inserting 1000 documents. first: Kongo ivory and last: Emam Qoli +[2018-02-13T08:25:17.107] [INFO] cheese - inserting 1000 documents. first: Page view and last: Fuji Syusuke +[2018-02-13T08:25:17.168] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Draconity and last: Salamumu +[2018-02-13T08:25:17.189] [INFO] cheese - inserting 1000 documents. first: Navigation Acts and last: Jeremy Gelbwaks +[2018-02-13T08:25:17.274] [INFO] cheese - batch complete in: 1.062 secs +[2018-02-13T08:25:17.296] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:25:17.300] [INFO] cheese - inserting 1000 documents. first: Archibald Thomas Peachey and last: Kinetics Internet Protocol +[2018-02-13T08:25:17.402] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:25:17.482] [INFO] cheese - inserting 1000 documents. first: Annabessacook Lake and last: Top Run Motorsport +[2018-02-13T08:25:17.494] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:25:17.556] [INFO] cheese - batch complete in: 2.57 secs +[2018-02-13T08:25:17.630] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:25:17.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cedarsurfboards.com and last: File:2007 Austria 25 Euro Austrian Aviation back.jpg +[2018-02-13T08:25:17.727] [INFO] cheese - inserting 1000 documents. first: Dave Mitchell (disambiguation) and last: History of horse domestication theories +[2018-02-13T08:25:17.820] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T08:25:17.902] [INFO] cheese - batch complete in: 1.124 secs +[2018-02-13T08:25:17.981] [INFO] cheese - inserting 1000 documents. first: Emamqoli Direh and last: Template:Country data Federal Dependencies of Venezuela +[2018-02-13T08:25:18.086] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:25:18.140] [INFO] cheese - inserting 1000 documents. first: Faleseela and last: Richy Müller +[2018-02-13T08:25:18.153] [INFO] cheese - inserting 1000 documents. first: Secretary Hawkins and last: Khoisa panaula +[2018-02-13T08:25:18.162] [INFO] cheese - inserting 1000 documents. first: Droungos and last: RM 1832 +[2018-02-13T08:25:18.183] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:25:18.220] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:25:18.253] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:25:18.394] [INFO] cheese - inserting 1000 documents. first: Judaica Press and last: Disney's Fort Wilderness Resort & Campground +[2018-02-13T08:25:18.584] [INFO] cheese - batch complete in: 1.309 secs +[2018-02-13T08:25:18.606] [INFO] cheese - inserting 1000 documents. first: William Bradshaw (Puritan) and last: SR 906 (WA) +[2018-02-13T08:25:18.753] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:25:18.767] [INFO] cheese - inserting 1000 documents. first: Arthur Frank Burns and last: Liga de Fútbol Profesional Boliviano 2002 +[2018-02-13T08:25:18.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Checkmarx (company) and last: Super League (Pakistan) +[2018-02-13T08:25:18.914] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:25:18.925] [INFO] cheese - inserting 1000 documents. first: Khoisa triloba and last: Holidays Bulgaria +[2018-02-13T08:25:18.967] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:25:19.044] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:25:19.062] [INFO] cheese - inserting 1000 documents. first: Doulting and last: Dane Court Grammar School +[2018-02-13T08:25:19.203] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T08:25:19.261] [INFO] cheese - inserting 1000 documents. first: Rolling Thunder World Championships and last: Jinan Taishan Jiangjun +[2018-02-13T08:25:19.389] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:25:19.477] [INFO] cheese - inserting 1000 documents. first: SR 908 (WA) and last: Wikipedia:WikiProject Spam/LinkReports/ashlandalliance.com +[2018-02-13T08:25:19.579] [INFO] cheese - inserting 1000 documents. first: Targu Mures Airport and last: File:Dick Poole 1954.jpeg +[2018-02-13T08:25:19.591] [INFO] cheese - inserting 1000 documents. first: List of United States terrestrial television networks and last: Goostrey +[2018-02-13T08:25:19.608] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:25:19.650] [INFO] cheese - inserting 1000 documents. first: McMeechan v SS for Employment and last: Humanist Party (Peru) +[2018-02-13T08:25:19.670] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:25:19.706] [INFO] cheese - inserting 1000 documents. first: Rhodophyceæ and last: Category:1985 in West Virginia +[2018-02-13T08:25:19.735] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:25:19.747] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:25:19.779] [INFO] cheese - inserting 1000 documents. first: Mumble and last: Category:Arts in London +[2018-02-13T08:25:19.780] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:25:19.892] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:25:19.941] [INFO] cheese - inserting 1000 documents. first: Shenzhen Feiyada and last: C9H6O4 +[2018-02-13T08:25:20.029] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:25:20.063] [INFO] cheese - inserting 1000 documents. first: Borje Fredriksson and last: National Route 381 +[2018-02-13T08:25:20.127] [INFO] cheese - inserting 1000 documents. first: Oleg Kokushkin and last: Category:Supercopa Centroamericana +[2018-02-13T08:25:20.118] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:25:20.198] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:25:20.301] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance biography (musicians) articles and last: Sahhas +[2018-02-13T08:25:20.334] [INFO] cheese - inserting 1000 documents. first: Qualitative economics and last: East Cobb +[2018-02-13T08:25:20.371] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:25:20.421] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:25:20.427] [INFO] cheese - inserting 1000 documents. first: Jason West (game designer) and last: Wikipedia:WikiProject Spam/LinkReports/sleipnir.fo +[2018-02-13T08:25:20.455] [INFO] cheese - inserting 1000 documents. first: At Home with Their Greatest Hits and last: Nigel Edward Buxton +[2018-02-13T08:25:20.482] [INFO] cheese - inserting 1000 documents. first: Flygvapenmuseum and last: Desembocadura de la Cruz de Río Grande +[2018-02-13T08:25:20.579] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:25:20.614] [INFO] cheese - inserting 1000 documents. first: Graeme Swan and last: Greek destroyer Vasilissa Olga (D 15) +[2018-02-13T08:25:20.703] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:25:20.754] [INFO] cheese - inserting 1000 documents. first: Neil C. Roberts and last: Template:Unicode chart Balinese +[2018-02-13T08:25:20.814] [INFO] cheese - batch complete in: 3.258 secs +[2018-02-13T08:25:20.928] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:25:20.965] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:25:21.178] [INFO] cheese - inserting 1000 documents. first: Big Red (sculpture) and last: Ecole Française de Riyad +[2018-02-13T08:25:21.253] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:25:21.378] [INFO] cheese - inserting 1000 documents. first: Category:Georgia Tech Yellow Jackets women's basketball seasons and last: Category:Theatres in Northampton +[2018-02-13T08:25:21.423] [INFO] cheese - inserting 1000 documents. first: Nena feat. Nena and last: Category:Filmfare Awards South (Telugu) +[2018-02-13T08:25:21.494] [INFO] cheese - inserting 1000 documents. first: Maganlal Dresswala and last: Erft-Bahn +[2018-02-13T08:25:21.527] [INFO] cheese - batch complete in: 1.155 secs +[2018-02-13T08:25:21.595] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T08:25:21.695] [INFO] cheese - batch complete in: 1.116 secs +[2018-02-13T08:25:21.855] [INFO] cheese - inserting 1000 documents. first: 1981 birth and last: Pioneer Place/Southwest 5th (MAX station) +[2018-02-13T08:25:21.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/rays and last: Wikipedia:WikiProject Military history/Peer review/Benjamin Brice +[2018-02-13T08:25:21.952] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T08:25:21.983] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:25:22.038] [INFO] cheese - inserting 1000 documents. first: Ecole Francaise de Riyad and last: Wikipedia:Articles for deletion/Kharkiv +[2018-02-13T08:25:22.075] [INFO] cheese - inserting 1000 documents. first: El Ayote and last: Velde, Henry Clemens van de +[2018-02-13T08:25:22.173] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:25:22.211] [INFO] cheese - batch complete in: 1.508 secs +[2018-02-13T08:25:22.229] [INFO] cheese - inserting 1000 documents. first: Prince Nashimoto and last: St. Peter (Graubünden) +[2018-02-13T08:25:22.308] [INFO] cheese - inserting 1000 documents. first: Oath of Pontida and last: Branchiobdellida +[2018-02-13T08:25:22.324] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:25:22.475] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:25:22.626] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Northampton and last: Auchnagatt Primary School +[2018-02-13T08:25:22.765] [INFO] cheese - batch complete in: 1.238 secs +[2018-02-13T08:25:22.781] [INFO] cheese - inserting 1000 documents. first: Cognoscere and last: Dudu (footballer) +[2018-02-13T08:25:22.868] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:25:22.986] [INFO] cheese - inserting 1000 documents. first: Stampa (Graubünden) and last: Chesopelloz +[2018-02-13T08:25:23.002] [INFO] cheese - inserting 1000 documents. first: Musée d’Art moderne et contemporain, Saint-Étienne Metropole and last: Category:Enhanced quote templates +[2018-02-13T08:25:23.024] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:25:23.093] [INFO] cheese - inserting 1000 documents. first: File:Qingdao University new logo.svg and last: Emin Guliyev (swimmer) +[2018-02-13T08:25:23.093] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:25:23.106] [INFO] cheese - inserting 1000 documents. first: File:Willow movie.jpg and last: Robert Stone (rugby league) +[2018-02-13T08:25:23.169] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:25:23.213] [INFO] cheese - inserting 1000 documents. first: Auchterellon Primary School and last: National Register of Historic Places listings in Acadia National Park +[2018-02-13T08:25:23.218] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:25:23.312] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:25:23.428] [INFO] cheese - inserting 1000 documents. first: Corinne Griffith and last: Jesus in Islam +[2018-02-13T08:25:23.435] [INFO] cheese - inserting 1000 documents. first: Chezard-Saint-Martin and last: Rudolph A. Weinert +[2018-02-13T08:25:23.468] [INFO] cheese - inserting 1000 documents. first: Plus! for Kids and last: Wikipedia:WikiProject U.S. Roads/Washington/1907 laws +[2018-02-13T08:25:23.469] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T08:25:23.585] [INFO] cheese - batch complete in: 2.771 secs +[2018-02-13T08:25:23.589] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:25:23.629] [INFO] cheese - inserting 1000 documents. first: Sanarudravaram and last: Portal:Ravidassia/Selected picture/1 +[2018-02-13T08:25:23.697] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:25:23.748] [INFO] cheese - inserting 1000 documents. first: Frank B. Haviland and last: Ekspress AM8 +[2018-02-13T08:25:23.812] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:25:23.815] [INFO] cheese - inserting 1000 documents. first: Wittman D-12 Bonzo and last: Category:Fungi described in 1886 +[2018-02-13T08:25:23.898] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:25:23.900] [INFO] cheese - inserting 1000 documents. first: Joe Willie Namath and last: Nabucodonosor +[2018-02-13T08:25:23.997] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:25:24.092] [INFO] cheese - inserting 1000 documents. first: Tolentino and Macerata and last: Fred breinersdorfer +[2018-02-13T08:25:24.098] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Dwight Yoakam and last: Second Battle of Picardy +[2018-02-13T08:25:24.135] [INFO] cheese - inserting 1000 documents. first: Coventry University Students' Union and last: Yavan, Iran +[2018-02-13T08:25:24.144] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:25:24.194] [INFO] cheese - inserting 1000 documents. first: Konemetsä and last: Alex French +[2018-02-13T08:25:24.204] [INFO] cheese - batch complete in: 2.252 secs +[2018-02-13T08:25:24.204] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:25:24.241] [INFO] cheese - inserting 1000 documents. first: Malik ibn Kaydar and last: Trachylepis aurata +[2018-02-13T08:25:24.308] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:25:24.371] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:25:24.528] [INFO] cheese - inserting 1000 documents. first: Kimball Hotel and last: Noise and Resistance +[2018-02-13T08:25:24.591] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:25:24.630] [INFO] cheese - inserting 1000 documents. first: Liquaemin sodium and last: Wikipedia:Articles for deletion/Millburn School, Wadsworth, Illinois +[2018-02-13T08:25:24.754] [INFO] cheese - inserting 1000 documents. first: In-Shik Hwang and last: Age dependency +[2018-02-13T08:25:24.791] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:25:24.803] [INFO] cheese - inserting 1000 documents. first: Hymno da Carta and last: Category:Festivals in Oceania +[2018-02-13T08:25:24.832] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:25:24.918] [INFO] cheese - inserting 1000 documents. first: Mayer, Texas and last: File:BridgeofDragons1999.poster.jpg +[2018-02-13T08:25:25.037] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:25:25.130] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:25:25.171] [INFO] cheese - inserting 1000 documents. first: Monet (comics) and last: Hooves and Harlots (Xena episode) +[2018-02-13T08:25:25.193] [INFO] cheese - inserting 1000 documents. first: Golomt bank and last: Bellevue Investments +[2018-02-13T08:25:25.229] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:25:25.234] [INFO] cheese - inserting 1000 documents. first: Diarrhoea and last: SQL programming language +[2018-02-13T08:25:25.292] [INFO] cheese - batch complete in: 1.088 secs +[2018-02-13T08:25:25.382] [INFO] cheese - batch complete in: 1.797 secs +[2018-02-13T08:25:25.570] [INFO] cheese - inserting 1000 documents. first: Abba (Talmud) and last: Slice of cake +[2018-02-13T08:25:25.650] [INFO] cheese - inserting 1000 documents. first: Phase Shift and last: E.N.T. +[2018-02-13T08:25:25.668] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:25:25.689] [INFO] cheese - inserting 1000 documents. first: List of Hunter × Hunter (1999) episodes and last: Portal:Indonesia/ST List/SP Subak +[2018-02-13T08:25:25.712] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:25:25.802] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:25:25.810] [INFO] cheese - inserting 1000 documents. first: Government House (Antigua & Barbuda) and last: Shovel Ready +[2018-02-13T08:25:25.854] [INFO] cheese - inserting 1000 documents. first: Sim Templeman and last: Category:Test cricket captains +[2018-02-13T08:25:25.862] [INFO] cheese - inserting 1000 documents. first: Gaultheria ovatifolia and last: Djoue +[2018-02-13T08:25:25.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/css.edu.hk and last: Category:Animal breeds originating in Lithuania +[2018-02-13T08:25:25.903] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:25:25.909] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:25:25.937] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:25:26.012] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:25:26.231] [INFO] cheese - inserting 1000 documents. first: Category:Banks established in 1834 and last: History of Tokyo Game Show +[2018-02-13T08:25:26.338] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:25:26.406] [INFO] cheese - inserting 1000 documents. first: Wikipedia:MediaWiki Edition Toolbar and last: Angie Tsang +[2018-02-13T08:25:26.541] [INFO] cheese - inserting 1000 documents. first: Isafe and last: Tropical chinchweed +[2018-02-13T08:25:26.543] [INFO] cheese - inserting 1000 documents. first: Kdebase and last: Asioot +[2018-02-13T08:25:26.548] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:25:26.589] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:25:26.607] [INFO] cheese - inserting 1000 documents. first: Andrei Dikan and last: Harry Jones +[2018-02-13T08:25:26.612] [INFO] cheese - inserting 1000 documents. first: Custódio Muchate and last: 1977–78 Rangers F.C. season +[2018-02-13T08:25:26.635] [INFO] cheese - inserting 1000 documents. first: El Daein Airport and last: Cambridge University Museum +[2018-02-13T08:25:26.636] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:25:26.708] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:25:26.742] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:25:26.768] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:25:26.877] [INFO] cheese - inserting 1000 documents. first: Quévy and last: European Capital of Culture +[2018-02-13T08:25:26.951] [INFO] cheese - inserting 1000 documents. first: M.I (Nigerian Rapper) and last: Category:Kampala Central Division +[2018-02-13T08:25:26.988] [INFO] cheese - batch complete in: 1.605 secs +[2018-02-13T08:25:27.005] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:25:27.136] [INFO] cheese - inserting 1000 documents. first: Wax Wood and last: Magister Chirurgiae +[2018-02-13T08:25:27.175] [INFO] cheese - inserting 1000 documents. first: Vinci (automobile) and last: Omega Roberts +[2018-02-13T08:25:27.187] [INFO] cheese - inserting 1000 documents. first: Blondie in the Dough and last: Duran Sartor de Paernas +[2018-02-13T08:25:27.205] [INFO] cheese - inserting 1000 documents. first: Tropical cinchweed and last: Jugend (journal) +[2018-02-13T08:25:27.228] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:25:27.251] [INFO] cheese - inserting 1000 documents. first: RMS Empress of England and last: Japan Democratic Party +[2018-02-13T08:25:27.269] [INFO] cheese - inserting 1000 documents. first: Alexander, Harold Rupert Leofric George, 1st Earl Alexander of Tunis and last: Dove, Arthur Garfield +[2018-02-13T08:25:27.270] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T08:25:27.283] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:25:27.286] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:25:27.397] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:25:27.391] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:25:27.600] [INFO] cheese - inserting 1000 documents. first: Tangible User Interface and last: Guatemala at the 1955 Pan American Games +[2018-02-13T08:25:27.626] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:25:27.701] [INFO] cheese - inserting 1000 documents. first: Nturei karta and last: File:Terpischore -Unidentified -circa 1900.JPG +[2018-02-13T08:25:27.711] [INFO] cheese - inserting 1000 documents. first: Eugeni Redkin and last: Capital of Benin +[2018-02-13T08:25:27.763] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:25:27.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/October 2, 2015 and last: Christian Monsod +[2018-02-13T08:25:27.815] [INFO] cheese - inserting 1000 documents. first: Felix Resurrección Hidalgo and last: Category:Dams on the Peace River +[2018-02-13T08:25:27.820] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:25:27.843] [INFO] cheese - inserting 1000 documents. first: EWwy Award and last: Single source published +[2018-02-13T08:25:27.877] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:25:27.899] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:25:27.914] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Morno and last: James Kocsis +[2018-02-13T08:25:27.919] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:25:28.022] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:25:28.073] [INFO] cheese - inserting 1000 documents. first: Guatemala at the 1959 Pan American Games and last: Wenzhou–Fuzhou Railway +[2018-02-13T08:25:28.133] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:25:28.326] [INFO] cheese - inserting 1000 documents. first: Fitness to plead and last: Wikipedia:Articles for deletion/Microcasting +[2018-02-13T08:25:28.351] [INFO] cheese - inserting 1000 documents. first: HMS Whitehall (1919) and last: Template:Did you know nominations/Secret Ponchos +[2018-02-13T08:25:28.355] [INFO] cheese - inserting 1000 documents. first: Capital of Botswana and last: Berta Gardner +[2018-02-13T08:25:28.362] [INFO] cheese - inserting 1000 documents. first: 2016 State of Origin series and last: John Bale (MP) +[2018-02-13T08:25:28.387] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:25:28.401] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:25:28.440] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:25:28.501] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:25:28.539] [INFO] cheese - inserting 1000 documents. first: PNS Tippu Sultan (1941) and last: Anita O'Day Collates (Anita O'Day Album) +[2018-02-13T08:25:28.613] [INFO] cheese - inserting 1000 documents. first: Ancyromonas and last: Albulario +[2018-02-13T08:25:28.614] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:25:28.668] [INFO] cheese - inserting 1000 documents. first: Dario Fo and last: John MacBride +[2018-02-13T08:25:28.737] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:25:28.738] [INFO] cheese - inserting 1000 documents. first: Apple Mountain Lake and last: Template:Rivals.com coach/doc +[2018-02-13T08:25:28.807] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:25:28.807] [INFO] cheese - batch complete in: 1.819 secs +[2018-02-13T08:25:28.952] [INFO] cheese - inserting 1000 documents. first: Policies and guidelines of Wikipedia and last: Junior Fernandes da Silva +[2018-02-13T08:25:28.979] [INFO] cheese - inserting 1000 documents. first: Category:Record labels established in 1975 and last: Banaras Gharana +[2018-02-13T08:25:28.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Washington/1931 laws and last: Wikipedia:Featured picture candidates/William-Adolphe Bouguereau (1825-1905) - Sewing (1898) +[2018-02-13T08:25:29.007] [INFO] cheese - inserting 1000 documents. first: Russia - New Zealand relations and last: Phalonia conversana +[2018-02-13T08:25:29.030] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:25:29.037] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:25:29.086] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:25:29.174] [INFO] cheese - inserting 1000 documents. first: Category:People from Kraśnik County and last: Congregation of the Damned +[2018-02-13T08:25:29.180] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:25:29.289] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:25:29.410] [INFO] cheese - inserting 1000 documents. first: Editorial Académica Española and last: Daqing First High School +[2018-02-13T08:25:29.412] [INFO] cheese - inserting 1000 documents. first: Pennine Chain and last: Rinehart, Mary Roberts +[2018-02-13T08:25:29.484] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:25:29.496] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:25:29.655] [INFO] cheese - inserting 1000 documents. first: File:LCK Terminal.jpg and last: Scientia Pharmaceutica +[2018-02-13T08:25:29.706] [INFO] cheese - inserting 1000 documents. first: Category:Prehistoric vertebrates of Asia and last: Charles Hepburn Scott +[2018-02-13T08:25:29.720] [INFO] cheese - inserting 1000 documents. first: Musgrave railway station and last: Monkey business +[2018-02-13T08:25:29.776] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:25:29.803] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:25:29.817] [INFO] cheese - inserting 1000 documents. first: Roads in New Brunswick and last: Category:Ancient Alexandria +[2018-02-13T08:25:29.817] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:25:29.862] [INFO] cheese - inserting 1000 documents. first: Wildlife farming and last: List of Elitserien seasons +[2018-02-13T08:25:29.895] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:25:29.970] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:25:30.075] [INFO] cheese - inserting 1000 documents. first: Jack Jones (pitcher) and last: Portal:Horror/This day in horror archive/June/8 +[2018-02-13T08:25:30.108] [INFO] cheese - inserting 1000 documents. first: Glukhov and last: The Prague Post +[2018-02-13T08:25:30.156] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:25:30.181] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:25:30.337] [INFO] cheese - inserting 1000 documents. first: Category:French cricketers and last: Joseph Gaylord +[2018-02-13T08:25:30.343] [INFO] cheese - inserting 1000 documents. first: 2010 FIVB Volleyball World League qualification and last: K. Rosaiah +[2018-02-13T08:25:30.368] [INFO] cheese - inserting 1000 documents. first: Nasi campur and last: Open Heaven / River Wild +[2018-02-13T08:25:30.380] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T08:25:30.390] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Lebanon articles and last: Jeanine Micheau +[2018-02-13T08:25:30.398] [INFO] cheese - inserting 1000 documents. first: Category:Restaurants in Lima and last: Garage band (TV series) +[2018-02-13T08:25:30.398] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:25:30.467] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:25:30.480] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:25:30.502] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:25:30.578] [INFO] cheese - inserting 1000 documents. first: William Ward (Texas) and last: New York's At-large congressional district +[2018-02-13T08:25:30.626] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T08:25:30.638] [INFO] cheese - inserting 1000 documents. first: Liam Gallagher and last: Loyalist feud +[2018-02-13T08:25:30.753] [INFO] cheese - batch complete in: 1.941 secs +[2018-02-13T08:25:30.838] [INFO] cheese - inserting 1000 documents. first: Peter Richards and last: Ultrabasic +[2018-02-13T08:25:30.904] [INFO] cheese - inserting 1000 documents. first: Category:1911 in French Equatorial Africa and last: Mark Hendrickson (American football coach) +[2018-02-13T08:25:30.934] [INFO] cheese - inserting 1000 documents. first: File:When Zachary Beaver Came To Town.jpg and last: Maximilian Gowran Townley +[2018-02-13T08:25:30.970] [INFO] cheese - inserting 1000 documents. first: Enemies of Children and last: Jane's All the World's Aircraft 1919 +[2018-02-13T08:25:31.019] [INFO] cheese - inserting 1000 documents. first: File:Douarnenez-port-rhu.jpg and last: The Glory of their times +[2018-02-13T08:25:31.034] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:25:31.037] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:25:31.038] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:25:31.135] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:25:31.135] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:25:31.186] [INFO] cheese - inserting 1000 documents. first: Chalkuyruk and last: Daylight saving time in the United States +[2018-02-13T08:25:31.285] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:25:31.531] [INFO] cheese - inserting 1000 documents. first: Renault Clio Ragnotti and last: Samuel Bogart +[2018-02-13T08:25:31.606] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:25:31.662] [INFO] cheese - inserting 1000 documents. first: Category:Karnali Zone and last: Category:1676 in France +[2018-02-13T08:25:31.680] [INFO] cheese - inserting 1000 documents. first: Mount Vernon, Baltimore, Maryland and last: File:Tsar Kandavl or Le Roi Candaule -Lev Ivanov -1899.jpg +[2018-02-13T08:25:31.681] [INFO] cheese - inserting 1000 documents. first: Andrey Meshchaninov and last: 3 chak +[2018-02-13T08:25:31.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Nathan1234591/Archive and last: Draft:Tony Moore (Olympic Athlete) +[2018-02-13T08:25:31.697] [INFO] cheese - inserting 1000 documents. first: Talan Teidit and last: File:Junip Straight Lines cover.jpg +[2018-02-13T08:25:31.727] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T08:25:31.772] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:25:31.781] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:25:31.798] [INFO] cheese - inserting 1000 documents. first: List of North American Deserts and last: William Cavendish-Bentinck, 6th Duke of Portland +[2018-02-13T08:25:31.804] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:25:31.798] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:25:31.945] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:25:32.141] [INFO] cheese - inserting 1000 documents. first: File:Mighty-Gabby-2007.jpg and last: Wikipedia:Articles for deletion/Tim Mudde +[2018-02-13T08:25:32.191] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:25:32.196] [INFO] cheese - inserting 1000 documents. first: Category:File-Class South African politics articles and last: Jiangning County +[2018-02-13T08:25:32.224] [INFO] cheese - inserting 1000 documents. first: Template:Chital macher muitha and last: Talento Dorado +[2018-02-13T08:25:32.253] [INFO] cheese - inserting 1000 documents. first: Rouville, Seine-Maritime and last: Pogonomyrmex maricopa +[2018-02-13T08:25:32.261] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:25:32.270] [INFO] cheese - inserting 1000 documents. first: Iecava (river) and last: 5th cranial nerve +[2018-02-13T08:25:32.284] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T08:25:32.312] [INFO] cheese - inserting 1000 documents. first: Category:Karnataka articles by importance and last: Category:Museums by type +[2018-02-13T08:25:32.340] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:25:32.346] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:25:32.393] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T08:25:32.526] [INFO] cheese - inserting 1000 documents. first: Coat of arms of New York and last: Yitschak Rabin +[2018-02-13T08:25:32.562] [INFO] cheese - inserting 1000 documents. first: Rising Sun (yacht) and last: Chichester, Sir Francis Charles +[2018-02-13T08:25:32.602] [INFO] cheese - inserting 1000 documents. first: George DeBenedicty and last: Category:British television articles by quality +[2018-02-13T08:25:32.609] [INFO] cheese - batch complete in: 1.856 secs +[2018-02-13T08:25:32.625] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:25:32.681] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T08:25:32.791] [INFO] cheese - inserting 1000 documents. first: Largest bones and last: Paula Lanz +[2018-02-13T08:25:32.804] [INFO] cheese - inserting 1000 documents. first: Carposina anopta and last: Linda Griffiths (playwright) +[2018-02-13T08:25:32.857] [INFO] cheese - inserting 1000 documents. first: Kesek and last: Category:Swing bridges in the United Kingdom +[2018-02-13T08:25:32.871] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:25:32.876] [INFO] cheese - inserting 1000 documents. first: D-trisomy syndrome and last: National Tang Soo Do Congress +[2018-02-13T08:25:32.886] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:25:32.894] [INFO] cheese - inserting 1000 documents. first: Gerald MacIntosh Johnston and last: Phospho Silicate Glass +[2018-02-13T08:25:32.986] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:25:33.041] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:25:33.045] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:25:33.311] [INFO] cheese - inserting 1000 documents. first: Shuvescha and last: Category:Populated places in Branch County, Michigan +[2018-02-13T08:25:33.324] [INFO] cheese - inserting 1000 documents. first: Fateless (film) and last: Even in Blackouts +[2018-02-13T08:25:33.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battle of Ismailia/archive1 and last: Category:10th-century establishments in Germany +[2018-02-13T08:25:33.414] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:25:33.422] [INFO] cheese - inserting 1000 documents. first: L'Aldosa and last: Bossuet, Jacques Benigne +[2018-02-13T08:25:33.481] [INFO] cheese - inserting 1000 documents. first: Paula Blazquez and last: Category:Counties of South Shore (Massachusetts) +[2018-02-13T08:25:33.494] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:25:33.497] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:25:33.527] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:25:33.645] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:25:33.657] [INFO] cheese - inserting 1000 documents. first: Velcro dogs and last: Jean Pierre de Caussade +[2018-02-13T08:25:33.808] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:25:33.940] [INFO] cheese - inserting 1000 documents. first: Paros Airport and last: Joshua Mauga +[2018-02-13T08:25:33.980] [INFO] cheese - inserting 1000 documents. first: Nils Otto Gustaf Nordenskjoeld and last: Hastings--Frontenac--Lennox & Addington +[2018-02-13T08:25:34.002] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:25:34.015] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T08:25:34.117] [INFO] cheese - inserting 1000 documents. first: Category:990s in Germany and last: Valeska Stock +[2018-02-13T08:25:34.191] [INFO] cheese - inserting 1000 documents. first: Bučka and last: Balta Tocila +[2018-02-13T08:25:34.223] [INFO] cheese - inserting 1000 documents. first: John S. Ridley and last: Albert Gore Jr. +[2018-02-13T08:25:34.297] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:25:34.309] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:25:34.398] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:25:34.471] [INFO] cheese - inserting 1000 documents. first: Portal:Dogs/Selected breed/57 and last: Frankenia salina +[2018-02-13T08:25:34.482] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/146.115.179.22/Archive and last: Rèpertoire Bibliographique de la Philosophie +[2018-02-13T08:25:34.560] [INFO] cheese - inserting 1000 documents. first: Ahmed Shukairy and last: Mathematicians +[2018-02-13T08:25:34.603] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:25:34.615] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:25:34.693] [INFO] cheese - inserting 1000 documents. first: Volveras and last: Levitation (film) +[2018-02-13T08:25:34.722] [INFO] cheese - inserting 1000 documents. first: Auckland Supercity and last: Achupallas Parish +[2018-02-13T08:25:34.844] [INFO] cheese - inserting 1000 documents. first: 1969–70 AL-Bank Ligaen season and last: Wikipedia:GLAM/JoburgpediA/No1 Challenge +[2018-02-13T08:25:34.917] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:25:34.937] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:25:34.996] [INFO] cheese - batch complete in: 2.386 secs +[2018-02-13T08:25:35.065] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:25:35.208] [INFO] cheese - inserting 1000 documents. first: Golu Grabicina and last: St. Elmo (1923 British film) +[2018-02-13T08:25:35.318] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:25:35.415] [INFO] cheese - inserting 1000 documents. first: Big Brothers/Big Sisters of America and last: U.S. Patents Law +[2018-02-13T08:25:35.430] [INFO] cheese - inserting 1000 documents. first: Template:UC Santa Barbara Gauchos athletic director navbox and last: Sarann Knight Preddy +[2018-02-13T08:25:35.454] [INFO] cheese - inserting 1000 documents. first: Frank McEwen and last: File:Year of the dragon poster.jpg +[2018-02-13T08:25:35.512] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:25:35.514] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:25:35.551] [INFO] cheese - inserting 1000 documents. first: Category:Utah elections, 2004 and last: Wenatchee metropolitan statistical area +[2018-02-13T08:25:35.587] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:25:35.654] [INFO] cheese - inserting 1000 documents. first: Dating Agency Cyrano and last: Frans Sales Lega Airport +[2018-02-13T08:25:35.734] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:25:35.775] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:25:35.924] [INFO] cheese - inserting 1000 documents. first: Elisabeth Wiener and last: Dagmar Rubsam-Neubauer +[2018-02-13T08:25:36.020] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T08:25:36.049] [INFO] cheese - inserting 1000 documents. first: Hermits of the Most Blessed Virgin Mary of Mount Carmel and last: Category:231 establishments +[2018-02-13T08:25:36.113] [INFO] cheese - inserting 1000 documents. first: Louis L 'Amour and last: Boltana, Spain +[2018-02-13T08:25:36.164] [INFO] cheese - inserting 1000 documents. first: Romona, Indiana and last: Hugh Montgomery (mathematician) +[2018-02-13T08:25:36.220] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T08:25:36.236] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:25:36.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jungjangbi Plaza and last: The X File +[2018-02-13T08:25:36.302] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:25:36.421] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T08:25:36.467] [INFO] cheese - inserting 1000 documents. first: Ruteng Airport and last: File:City of Hazard Seal.gif +[2018-02-13T08:25:36.512] [INFO] cheese - inserting 1000 documents. first: Category:1909 in military history and last: Carrion de Calatrava +[2018-02-13T08:25:36.574] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T08:25:36.573] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:25:36.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Say Hey and last: Amazon weasel +[2018-02-13T08:25:36.742] [INFO] cheese - inserting 1000 documents. first: Dagmar Rübsam-Neubauer and last: Category:Trinidad and Tobago beach volleyball players +[2018-02-13T08:25:36.782] [INFO] cheese - inserting 1000 documents. first: John Randolph Grymes and last: Syncopacma linella +[2018-02-13T08:25:36.827] [INFO] cheese - batch complete in: 1.24 secs +[2018-02-13T08:25:36.821] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:25:36.864] [INFO] cheese - inserting 1000 documents. first: Home Construction Limited and last: La Hoya de Bunol +[2018-02-13T08:25:36.866] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:25:36.949] [INFO] cheese - inserting 1000 documents. first: Description Logic and last: Safari +[2018-02-13T08:25:36.952] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T08:25:36.956] [INFO] cheese - inserting 1000 documents. first: Jostein Løfsgaard and last: Allen Penner +[2018-02-13T08:25:37.068] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:25:37.078] [INFO] cheese - batch complete in: 2.082 secs +[2018-02-13T08:25:37.199] [INFO] cheese - inserting 1000 documents. first: Alton station (Illinois) and last: Debra Ann Livingston +[2018-02-13T08:25:37.245] [INFO] cheese - inserting 1000 documents. first: Sally (TV series) and last: Hajji Alian +[2018-02-13T08:25:37.291] [INFO] cheese - inserting 1000 documents. first: CaSO4*2H2O and last: Nijo Yasumichi +[2018-02-13T08:25:37.294] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:25:37.360] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T08:25:37.420] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:25:37.599] [INFO] cheese - inserting 1000 documents. first: Vonani Bila and last: Wynton Rufer +[2018-02-13T08:25:37.602] [INFO] cheese - inserting 1000 documents. first: Marny Eng and last: Category:Baker City, Oregon +[2018-02-13T08:25:37.624] [INFO] cheese - inserting 1000 documents. first: G. A. L. Burgeon and last: Category:GA-Class Pakistan Super League articles +[2018-02-13T08:25:37.686] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:25:37.725] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:25:37.759] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:25:37.829] [INFO] cheese - inserting 1000 documents. first: Nuestra Senora de Loreto and last: Garcia de Loaysa +[2018-02-13T08:25:37.882] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:25:38.019] [INFO] cheese - inserting 1000 documents. first: Category:People from Schkeuditz and last: Papineau, Quebec +[2018-02-13T08:25:38.055] [INFO] cheese - inserting 1000 documents. first: Kabudeh-ye Olya and last: 150th Indiana Infantry Regiment +[2018-02-13T08:25:38.105] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:25:38.145] [INFO] cheese - inserting 1000 documents. first: History of tax protesters and last: IHP-100 +[2018-02-13T08:25:38.156] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:25:38.317] [INFO] cheese - inserting 1000 documents. first: Schoenwald, Brandenburg and last: Guarneri del Gesu +[2018-02-13T08:25:38.418] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:25:38.425] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:25:38.570] [INFO] cheese - inserting 1000 documents. first: File:Dandenong Thunder SC Logo.jpg and last: 2011 UEFA European Under-21 Championship qualification play-offs +[2018-02-13T08:25:38.605] [INFO] cheese - inserting 1000 documents. first: Hiver (software) and last: Wikipedia:WikiProject Spam/LinkReports/tendonpain.org +[2018-02-13T08:25:38.704] [INFO] cheese - inserting 1000 documents. first: Lake Hayq and last: Platen, August, Graf von Platen-Hallermund +[2018-02-13T08:25:38.754] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:25:38.786] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:25:38.895] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:25:39.011] [INFO] cheese - inserting 1000 documents. first: Raise a question of privilege and last: Mogol-Korgon +[2018-02-13T08:25:39.076] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (anglicization) and last: Primitive root modulo n +[2018-02-13T08:25:39.090] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:25:39.147] [INFO] cheese - inserting 1000 documents. first: 2007 All-Ireland Minor Hurling Championship and last: TJ Sokol Živanice +[2018-02-13T08:25:39.223] [INFO] cheese - inserting 1000 documents. first: A262 road and last: Mary of Magdelene +[2018-02-13T08:25:39.284] [INFO] cheese - inserting 1000 documents. first: Category:1993 establishments in Malawi and last: Bébé et fillettes +[2018-02-13T08:25:39.305] [INFO] cheese - batch complete in: 1.149 secs +[2018-02-13T08:25:39.307] [INFO] cheese - batch complete in: 2.229 secs +[2018-02-13T08:25:39.338] [INFO] cheese - inserting 1000 documents. first: Dublin Film Critics Circle Awards of 2011 and last: Hallo, Fräulein! +[2018-02-13T08:25:39.434] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T08:25:39.482] [INFO] cheese - batch complete in: 1.376 secs +[2018-02-13T08:25:39.502] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:25:39.597] [INFO] cheese - inserting 1000 documents. first: Norra Vasterbotten and last: Francois Daunou +[2018-02-13T08:25:39.643] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:25:39.651] [INFO] cheese - inserting 1000 documents. first: Sergey Darkin (politician) and last: B1 road (Croatia) +[2018-02-13T08:25:39.752] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:25:39.761] [INFO] cheese - inserting 1000 documents. first: Money Don't Matter 2 Night and last: Round-robin networks +[2018-02-13T08:25:39.859] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:25:39.999] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Latin America/sandbox and last: Portal:Supreme Court of the United States/Selected anniversaries +[2018-02-13T08:25:40.048] [INFO] cheese - inserting 1000 documents. first: Citroën D Special and last: Handball at the 2015 African Games – Men's tournament +[2018-02-13T08:25:40.057] [INFO] cheese - inserting 1000 documents. first: Category:People from Circleville, Ohio and last: Haplopappus foliosus +[2018-02-13T08:25:40.063] [INFO] cheese - inserting 1000 documents. first: Piedra Plat and last: Five Forks, North Carolina +[2018-02-13T08:25:40.064] [INFO] cheese - inserting 1000 documents. first: Universal Indicator Red and last: A1023 road +[2018-02-13T08:25:40.067] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:25:40.132] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:25:40.142] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:25:40.154] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:25:40.211] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:25:40.351] [INFO] cheese - inserting 1000 documents. first: Mutnedjmet (21st dynasty) and last: Category:Museums in Washington County, Nebraska +[2018-02-13T08:25:40.446] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:25:40.502] [INFO] cheese - inserting 1000 documents. first: Huntley and Palmer and last: Branimir Bajić +[2018-02-13T08:25:40.635] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:25:40.651] [INFO] cheese - inserting 1000 documents. first: Peach production in China and last: Impress service +[2018-02-13T08:25:40.702] [INFO] cheese - inserting 1000 documents. first: Category:20th-century deaths from tuberculosis and last: Wikipedia:WikiProject Spam/LinkReports/googletv.blogspot.de +[2018-02-13T08:25:40.720] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:25:40.741] [INFO] cheese - inserting 1000 documents. first: A1011 road and last: Morgenthau Lectures +[2018-02-13T08:25:40.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Good articles/Recruitment Centre/Recruiter Central/Archives/Domesticenginerd and last: Mathias Schamp +[2018-02-13T08:25:40.755] [INFO] cheese - inserting 1000 documents. first: Djelida and last: Alien vs. Predator series +[2018-02-13T08:25:40.783] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:25:40.818] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:25:40.909] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:25:40.913] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:25:41.047] [INFO] cheese - inserting 1000 documents. first: Liebe Ist Fur Alle Da and last: Coniston Railway +[2018-02-13T08:25:41.105] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:25:41.141] [INFO] cheese - inserting 1000 documents. first: Category:Works based on religious texts and last: Ucte vaikom +[2018-02-13T08:25:41.150] [INFO] cheese - inserting 1000 documents. first: Press and last: Gusto (album) +[2018-02-13T08:25:41.247] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:25:41.294] [INFO] cheese - inserting 1000 documents. first: Portal:Amphibians/Things you can do and last: Staret +[2018-02-13T08:25:41.305] [INFO] cheese - batch complete in: 1.998 secs +[2018-02-13T08:25:41.333] [INFO] cheese - inserting 1000 documents. first: JFK assassination Timeline and last: Labour Party League of Youth +[2018-02-13T08:25:41.350] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:25:41.360] [INFO] cheese - inserting 1000 documents. first: Székelys of Bukovina and last: Wikipedia:Miscellany for deletion/Wikipedia:Infobox standardisation +[2018-02-13T08:25:41.366] [INFO] cheese - inserting 1000 documents. first: A4232 road and last: Nicholas Mukomberanwa +[2018-02-13T08:25:41.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lakesidetrader.com and last: Pygora bourgoini +[2018-02-13T08:25:41.441] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:25:41.448] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:25:41.541] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:25:41.621] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:25:41.734] [INFO] cheese - inserting 1000 documents. first: Proragrotis longidens and last: Deepcar, South Yorkshire +[2018-02-13T08:25:41.781] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:25:41.901] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Mawza Exile and last: Gavan Moran +[2018-02-13T08:25:41.937] [INFO] cheese - inserting 1000 documents. first: James Cook Boys Technology High School and last: Dilatory motions and tactics +[2018-02-13T08:25:41.945] [INFO] cheese - inserting 1000 documents. first: Template:AFR lines and last: Martin Volke +[2018-02-13T08:25:42.004] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:25:42.040] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:25:42.075] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:25:42.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Latter Day Saint movement/Temples and last: Memorial Lake State Park +[2018-02-13T08:25:42.256] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:25:42.460] [INFO] cheese - inserting 1000 documents. first: Shoulder pad sign and last: Focke-Wulf Rochen +[2018-02-13T08:25:42.470] [INFO] cheese - inserting 1000 documents. first: Trade show display and last: Portal:History/Featured picture/March, 2008 +[2018-02-13T08:25:42.472] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/roboticsdesign.qc.ca and last: Brief Crossing +[2018-02-13T08:25:42.516] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T08:25:42.546] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:25:42.565] [INFO] cheese - inserting 1000 documents. first: File:FK Ala-Too Naryn Logo.png and last: Aleksey Grechkin +[2018-02-13T08:25:42.564] [INFO] cheese - inserting 1000 documents. first: Chercher la femme and last: Jim Hamilton (footballer, born 1976) +[2018-02-13T08:25:42.591] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:25:42.639] [INFO] cheese - inserting 1000 documents. first: HKU Students' Union and last: Golden Bamboo +[2018-02-13T08:25:42.664] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:25:42.922] [INFO] cheese - batch complete in: 1.377 secs +[2018-02-13T08:25:42.880] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:25:43.013] [INFO] cheese - inserting 1000 documents. first: Therain and last: Ruhen +[2018-02-13T08:25:43.103] [INFO] cheese - inserting 1000 documents. first: Boulogne Forest and last: Rudby +[2018-02-13T08:25:43.097] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:25:43.225] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:25:43.239] [INFO] cheese - inserting 1000 documents. first: L'Hopital's rule and last: 1921 in literature +[2018-02-13T08:25:43.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Johanstr and last: List of asteroids/173601–173700 +[2018-02-13T08:25:43.357] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:25:43.370] [INFO] cheese - batch complete in: 2.065 secs +[2018-02-13T08:25:43.416] [INFO] cheese - inserting 1000 documents. first: At the Beautiful Blue Danube and last: Yujiulu Anluochen +[2018-02-13T08:25:43.459] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T08:25:43.466] [INFO] cheese - inserting 1000 documents. first: Drill music and last: Category:1998–99 in Croatian football +[2018-02-13T08:25:43.648] [INFO] cheese - inserting 1000 documents. first: Shillingstone Station Project and last: Chinese Flora +[2018-02-13T08:25:43.661] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Iron County, Michigan and last: National Settlement Depository +[2018-02-13T08:25:43.759] [INFO] cheese - batch complete in: 1.213 secs +[2018-02-13T08:25:43.772] [INFO] cheese - inserting 1000 documents. first: List of asteroids/173701–173800 and last: List of asteroids/95401–95500 +[2018-02-13T08:25:43.856] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:25:43.943] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:25:43.999] [INFO] cheese - batch complete in: 1.408 secs +[2018-02-13T08:25:44.123] [INFO] cheese - inserting 1000 documents. first: Karpos Opstina, Republic of Macedonia and last: Woodruff cutter +[2018-02-13T08:25:44.226] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:25:44.243] [INFO] cheese - inserting 1000 documents. first: Loo brush and last: Ruthin School +[2018-02-13T08:25:44.265] [INFO] cheese - inserting 1000 documents. first: File:Joni Ladies.jpg and last: Agamedes and Trophonius +[2018-02-13T08:25:44.301] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:25:44.338] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T08:25:44.533] [INFO] cheese - inserting 1000 documents. first: Toyota New Global Architecture and last: LA 607 +[2018-02-13T08:25:44.540] [INFO] cheese - inserting 1000 documents. first: An tAthair Padraig O Duinnin and last: Va Dire A L'Amour +[2018-02-13T08:25:44.560] [INFO] cheese - inserting 1000 documents. first: Algernon de Courcy Lyons and last: Onctylus punctiger +[2018-02-13T08:25:44.560] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T08:25:44.589] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:25:44.620] [INFO] cheese - inserting 1000 documents. first: Barton Holiday and last: Notre Dame Univerisity +[2018-02-13T08:25:44.622] [INFO] cheese - inserting 1000 documents. first: Liis Lemsalu and last: Template:Hugo Award Best Novel 1961-1980 +[2018-02-13T08:25:44.665] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:25:44.687] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:25:44.748] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:25:44.898] [INFO] cheese - inserting 1000 documents. first: Ramsar Convention wetland and last: Perotin the Great +[2018-02-13T08:25:44.927] [INFO] cheese - inserting 1000 documents. first: Groove FM and last: Louis Baruch +[2018-02-13T08:25:44.949] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T08:25:45.040] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:25:45.159] [INFO] cheese - inserting 1000 documents. first: Sacco Societies Regulatory Authority and last: Category:Suspected Wikipedia sockpuppets of 2.98.218.197 +[2018-02-13T08:25:45.186] [INFO] cheese - inserting 1000 documents. first: LA 611-10 and last: Jiangzhou (historical prefecture in Jiangxi) +[2018-02-13T08:25:45.252] [INFO] cheese - inserting 1000 documents. first: Template:Scottish railway lines and last: Jean Charles +[2018-02-13T08:25:45.275] [INFO] cheese - inserting 1000 documents. first: 1900 in literature and last: Welly Wanging +[2018-02-13T08:25:45.279] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:25:45.272] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:25:45.348] [INFO] cheese - inserting 1000 documents. first: Template:Hugo Award Best Novel 1946-1960 and last: Macapaar +[2018-02-13T08:25:45.389] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:25:45.413] [INFO] cheese - batch complete in: 2.042 secs +[2018-02-13T08:25:45.491] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:25:45.554] [INFO] cheese - inserting 1000 documents. first: Soviet submarine V-1 and last: Commencement at Central Connecticut State University +[2018-02-13T08:25:45.678] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:25:45.789] [INFO] cheese - inserting 1000 documents. first: Lancaster, SC mSA and last: Utah State Route 21 +[2018-02-13T08:25:45.873] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:25:45.916] [INFO] cheese - inserting 1000 documents. first: Qianzhou (in modern Jiangxi) and last: File:KDNA studios, Granger WA, September 2015.jpg +[2018-02-13T08:25:45.944] [INFO] cheese - inserting 1000 documents. first: Thomas Coleman Andrews and last: File:Rangoon1969SEAG.PNG +[2018-02-13T08:25:45.988] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Jimkio12 and last: Venus Palermo +[2018-02-13T08:25:46.077] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:25:46.084] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:25:46.099] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:25:46.343] [INFO] cheese - inserting 1000 documents. first: File:Australian 2c Coin.png and last: Ecumenical Patriarch Dionysius II of Constantinople +[2018-02-13T08:25:46.462] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:25:46.513] [INFO] cheese - inserting 1000 documents. first: Template:Hierodula-stub and last: Drosera bifida +[2018-02-13T08:25:46.584] [INFO] cheese - inserting 1000 documents. first: Turones and last: Basilica ta' Pinu +[2018-02-13T08:25:46.589] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:25:46.747] [INFO] cheese - batch complete in: 1.358 secs +[2018-02-13T08:25:46.763] [INFO] cheese - inserting 1000 documents. first: Master Dinanath and last: Category:Youth organizations based in Arizona +[2018-02-13T08:25:46.889] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:25:46.956] [INFO] cheese - inserting 1000 documents. first: Category:1901 in Washington (state) and last: Centre-left politics +[2018-02-13T08:25:46.965] [INFO] cheese - inserting 1000 documents. first: Category:1743 in Africa and last: UAAP Season 33 men's basketball tournament +[2018-02-13T08:25:47.004] [INFO] cheese - inserting 1000 documents. first: Portal:Philosophy of science/Selected article/16 and last: File:Forgednote.jpg +[2018-02-13T08:25:47.047] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:25:47.056] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:25:47.109] [INFO] cheese - inserting 1000 documents. first: The Cosmopolitan of Las Vegas and last: Alaska's congressional district +[2018-02-13T08:25:47.135] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:25:47.271] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:25:47.311] [INFO] cheese - inserting 1000 documents. first: List of Portuguese and last: National Drug Code +[2018-02-13T08:25:47.352] [INFO] cheese - inserting 1000 documents. first: Extra-ocular muscles and last: Wellingsbüttel +[2018-02-13T08:25:47.450] [INFO] cheese - inserting 1000 documents. first: Exocrine pancreas cell and last: Chalonvillars +[2018-02-13T08:25:47.474] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:25:47.500] [INFO] cheese - batch complete in: 2.059 secs +[2018-02-13T08:25:47.532] [INFO] cheese - inserting 1000 documents. first: Elijah Mizrachi and last: River Beck +[2018-02-13T08:25:47.587] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:25:47.722] [INFO] cheese - inserting 1000 documents. first: Julie Rowe and last: Rung (Transformers) +[2018-02-13T08:25:47.767] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:25:47.888] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:25:47.979] [INFO] cheese - inserting 1000 documents. first: FR. LOURDINO BARRETO and last: British Overseas Airways Corporation Flight 777-A +[2018-02-13T08:25:47.981] [INFO] cheese - inserting 1000 documents. first: Category:Washington articles with to-do lists and last: Template:User Part Time Resident-SF +[2018-02-13T08:25:48.040] [INFO] cheese - inserting 1000 documents. first: Pullet's Offspring and last: Category:Schools in Chisago County, Minnesota +[2018-02-13T08:25:48.119] [INFO] cheese - inserting 1000 documents. first: Cheirophanes ligaminosa and last: Valérie Tétreault +[2018-02-13T08:25:48.112] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:25:48.164] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:25:48.186] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:25:48.316] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:25:48.421] [INFO] cheese - inserting 1000 documents. first: Goldeneye platform and last: Skechup +[2018-02-13T08:25:48.487] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:25:48.574] [INFO] cheese - inserting 1000 documents. first: Pieve di Santo Stefano, Pesaro and last: Anton Profes +[2018-02-13T08:25:48.642] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:25:48.767] [INFO] cheese - inserting 1000 documents. first: Dakis Joannou and last: LIRF +[2018-02-13T08:25:48.814] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Clay County, Minnesota and last: Elizabeth Templetown +[2018-02-13T08:25:48.829] [INFO] cheese - inserting 1000 documents. first: Kansas History (journal) and last: File:Borgo San Dalmazzo-Stemma.png +[2018-02-13T08:25:48.847] [INFO] cheese - inserting 1000 documents. first: Sticky barley and last: ITunes 9 +[2018-02-13T08:25:48.848] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T08:25:48.938] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:25:48.965] [INFO] cheese - inserting 1000 documents. first: Template:North America in topic and last: Abbey of the Park +[2018-02-13T08:25:48.948] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:25:49.041] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:25:49.092] [INFO] cheese - inserting 1000 documents. first: 2015 Open d'Orléans – Singles and last: Bemis Inc +[2018-02-13T08:25:49.130] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:25:49.159] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:25:49.183] [INFO] cheese - inserting 1000 documents. first: Portal:Books/Selected biography/10 and last: Gilia minor +[2018-02-13T08:25:49.297] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:25:49.430] [INFO] cheese - inserting 1000 documents. first: Young Marble Giants and last: Notable Irish buildings +[2018-02-13T08:25:49.453] [INFO] cheese - inserting 1000 documents. first: Martin Mesik and last: Wikipedia:Sockpuppet investigations/SquirtsDream +[2018-02-13T08:25:49.516] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:25:49.520] [INFO] cheese - inserting 1000 documents. first: GEICO commercials and last: Studio International +[2018-02-13T08:25:49.534] [INFO] cheese - batch complete in: 2.033 secs +[2018-02-13T08:25:49.580] [INFO] cheese - inserting 1000 documents. first: Super Bad (Lil Boosie Album) and last: Mario Bros. (video game) +[2018-02-13T08:25:49.602] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:25:49.725] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:25:49.735] [INFO] cheese - inserting 1000 documents. first: Barbara De Fina and last: Template:Wrestler-stub +[2018-02-13T08:25:49.745] [INFO] cheese - inserting 1000 documents. first: Category:Malaysian martial arts films and last: Max Hetherington +[2018-02-13T08:25:49.838] [INFO] cheese - inserting 1000 documents. first: Wilfredo Santa-Gómez and last: Lists of Jews associated with literature and journalism +[2018-02-13T08:25:49.854] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:25:49.860] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:25:49.887] [INFO] cheese - inserting 1000 documents. first: Dubai Gold Souk and last: Batken District +[2018-02-13T08:25:49.989] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:25:49.995] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T08:25:50.164] [INFO] cheese - inserting 1000 documents. first: 1766 in Denmark and last: New Horizons (The Sylvers Album) +[2018-02-13T08:25:50.184] [INFO] cheese - inserting 1000 documents. first: Template:Age in years, months, weeks, days and hours/doc and last: Jabo na kena? Jabo +[2018-02-13T08:25:50.238] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T08:25:50.301] [INFO] cheese - inserting 1000 documents. first: Matchday II and last: Presidents of Montenegro +[2018-02-13T08:25:50.312] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:25:50.354] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:25:50.482] [INFO] cheese - inserting 1000 documents. first: Macho (nickname) and last: Athletics at the 2015 African Games – Women's shot put +[2018-02-13T08:25:50.552] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:25:50.579] [INFO] cheese - inserting 1000 documents. first: Usuki (Neopets) and last: Georgia Route 38 Business +[2018-02-13T08:25:50.603] [INFO] cheese - inserting 1000 documents. first: Karman limit and last: Birdy Sweeney +[2018-02-13T08:25:50.679] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:25:50.695] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:25:50.829] [INFO] cheese - inserting 1000 documents. first: Category:Chemehuevi and last: Ch'ienmen +[2018-02-13T08:25:50.834] [INFO] cheese - inserting 1000 documents. first: Sa'did dynasty and last: Dumpas +[2018-02-13T08:25:50.901] [INFO] cheese - inserting 1000 documents. first: Pittsburgh mayoral election 1993 and last: Jones v. United States +[2018-02-13T08:25:50.899] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:25:50.933] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:25:50.985] [INFO] cheese - inserting 1000 documents. first: Category:Sports in Metro Detroit and last: Bealings +[2018-02-13T08:25:50.994] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:25:51.107] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:25:51.182] [INFO] cheese - inserting 1000 documents. first: Arandas (baseball club) and last: Stomopteryx cirrhocoma +[2018-02-13T08:25:51.254] [INFO] cheese - inserting 1000 documents. first: Byelorussian Soviet Socialist Republic and last: Honor Lost: Love and Death in Modern-Day Jordan +[2018-02-13T08:25:51.261] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:25:51.310] [INFO] cheese - inserting 1000 documents. first: Georgia State Highway 38 Business and last: Wikipedia:Articles for deletion/Soul-Crusher (song) +[2018-02-13T08:25:51.388] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:25:51.388] [INFO] cheese - batch complete in: 1.854 secs +[2018-02-13T08:25:51.491] [INFO] cheese - inserting 1000 documents. first: Chienmen and last: Gladstone Peak +[2018-02-13T08:25:51.577] [INFO] cheese - inserting 1000 documents. first: John Somers Dines and last: Southern Pacific 1293 +[2018-02-13T08:25:51.579] [INFO] cheese - inserting 1000 documents. first: Category:Breton masculine given names and last: Wikipedia:Reference desk/Archives/Language/2011 June 17 +[2018-02-13T08:25:51.597] [INFO] cheese - inserting 1000 documents. first: Escape From Cluster Prime and last: Wikipedia:Articles for deletion/Mechanical Fingerprint +[2018-02-13T08:25:51.625] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:25:51.640] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:25:51.696] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:25:51.724] [INFO] cheese - inserting 1000 documents. first: Category:American religion academics and last: Wikipedia:Articles for deletion/Last Name +[2018-02-13T08:25:51.767] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:25:51.929] [INFO] cheese - inserting 1000 documents. first: Stomopteryx credula and last: Edge of Paradise (disambiguation) +[2018-02-13T08:25:51.954] [INFO] cheese - batch complete in: 1.259 secs +[2018-02-13T08:25:52.083] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:25:52.204] [INFO] cheese - inserting 1000 documents. first: George Knight and last: Wikipedia:Articles for deletion/Mike pinto +[2018-02-13T08:25:52.310] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:25:52.451] [INFO] cheese - inserting 1000 documents. first: Robert Mosley Master and last: Category:Little Ferry, New Jersey +[2018-02-13T08:25:52.508] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:25:52.521] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elinor McKenzie Shield and last: Gillmeria irakella +[2018-02-13T08:25:52.618] [INFO] cheese - inserting 1000 documents. first: Lawyer bird and last: Sergey Plakhtiy +[2018-02-13T08:25:52.633] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:25:52.721] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:25:52.727] [INFO] cheese - inserting 1000 documents. first: File:Bontnewyddstationsept2015.jpg and last: File:University seal.png +[2018-02-13T08:25:52.774] [INFO] cheese - inserting 1000 documents. first: Wentzel-Kramers-Brillouin approximation and last: Wawayanda Railroad +[2018-02-13T08:25:52.798] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:25:52.834] [INFO] cheese - inserting 1000 documents. first: Outline of Lebanon and last: Route 4 (Nagoya Expressway) +[2018-02-13T08:25:52.876] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:25:52.956] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:25:53.014] [INFO] cheese - inserting 1000 documents. first: Technomancer and last: Santa Catalina la Tinta +[2018-02-13T08:25:53.069] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:25:53.167] [INFO] cheese - inserting 1000 documents. first: New York Leader and last: The Man With Icy Eyes +[2018-02-13T08:25:53.194] [INFO] cheese - inserting 1000 documents. first: Pavel Vyskočil and last: Abdulbari Gadzhiev +[2018-02-13T08:25:53.205] [INFO] cheese - inserting 1000 documents. first: ActiveRisk and last: Dibang Valley Wildlife Sanctuary +[2018-02-13T08:25:53.238] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:25:53.280] [INFO] cheese - inserting 1000 documents. first: Carl Bengts and last: Ohio State Route 387 +[2018-02-13T08:25:53.285] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:25:53.297] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:25:53.330] [INFO] cheese - inserting 1000 documents. first: List of tunnels in the Netherlands and last: Einstein shift +[2018-02-13T08:25:53.334] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:25:53.492] [INFO] cheese - inserting 1000 documents. first: Orange County Railroad and last: Xamesike +[2018-02-13T08:25:53.526] [INFO] cheese - batch complete in: 2.138 secs +[2018-02-13T08:25:53.712] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:25:53.832] [INFO] cheese - inserting 1000 documents. first: St. Furseus and last: File:Redriders replica cover.jpg +[2018-02-13T08:25:53.839] [INFO] cheese - inserting 1000 documents. first: File:PleasantonRidge12.jpg and last: Template:Infobox National Paralympic Committee/doc +[2018-02-13T08:25:53.888] [INFO] cheese - inserting 1000 documents. first: Oscar S. Heiser and last: African Basketball Championship +[2018-02-13T08:25:53.902] [INFO] cheese - inserting 1000 documents. first: Category:Hellenistic Pontus and last: Rope and Skin +[2018-02-13T08:25:53.915] [INFO] cheese - inserting 1000 documents. first: International Motorcycle and Scooter Show and last: Sleagh Maith +[2018-02-13T08:25:53.931] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:25:53.967] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T08:25:53.995] [INFO] cheese - inserting 1000 documents. first: Category:Books by James Ellroy and last: Trysfjorden +[2018-02-13T08:25:54.064] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:25:54.068] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:25:54.128] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:25:54.172] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:25:54.446] [INFO] cheese - inserting 1000 documents. first: Severomoravský and last: Takutea +[2018-02-13T08:25:54.556] [INFO] cheese - inserting 1000 documents. first: Robert Peralta and last: Category:Houses in Brighton and Hove +[2018-02-13T08:25:54.557] [INFO] cheese - inserting 1000 documents. first: Template:1967 Richmond premiership players and last: Wikipedia:WikiProject Spam/LinkReports/ywamonestory.org +[2018-02-13T08:25:54.522] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:25:54.589] [INFO] cheese - inserting 1000 documents. first: Dan Oniroku nawa to hada and last: Fate: The Traitor Soul +[2018-02-13T08:25:54.606] [INFO] cheese - inserting 1000 documents. first: Category:2003 establishments in Qatar and last: W. Jeffrey Bolster +[2018-02-13T08:25:54.626] [INFO] cheese - inserting 1000 documents. first: Behavioral Biology and last: Wikipedia:Articles for deletion/Say the Time (2nd nomination) +[2018-02-13T08:25:54.635] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:25:54.678] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:25:54.683] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:25:54.689] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:25:54.708] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:25:54.858] [INFO] cheese - inserting 1000 documents. first: HARRY HOPKINSON (HARRY TORRANI) and last: The Haitian (Heroes) +[2018-02-13T08:25:54.936] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:25:55.110] [INFO] cheese - inserting 1000 documents. first: File:Champion 33.jpg and last: Johan Olof Nystroem +[2018-02-13T08:25:55.114] [INFO] cheese - inserting 1000 documents. first: American Journal of Medical Quality and last: Fruit pectin +[2018-02-13T08:25:55.142] [INFO] cheese - batch complete in: 0.434 secs +[2018-02-13T08:25:55.155] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:25:55.178] [INFO] cheese - inserting 1000 documents. first: Leman International School and last: FMLS +[2018-02-13T08:25:55.207] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bodybalance and last: Bose-Einstein Statistics +[2018-02-13T08:25:55.222] [INFO] cheese - inserting 1000 documents. first: Clyde Tolson and last: Neanderthals Bandits and Farmers +[2018-02-13T08:25:55.231] [INFO] cheese - inserting 1000 documents. first: Kondana Caves and last: Pepita; or, the Girl with the Glass Eyes +[2018-02-13T08:25:55.232] [INFO] cheese - inserting 1000 documents. first: YWCA, Phyllis Weatley Branch and last: Mícheál Mac Suibhne +[2018-02-13T08:25:55.256] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:25:55.283] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:25:55.324] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:25:55.333] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:25:55.389] [INFO] cheese - batch complete in: 1.863 secs +[2018-02-13T08:25:55.465] [INFO] cheese - inserting 1000 documents. first: Elzbieta Pierzchala and last: Schonhausen (Mecklenburg) +[2018-02-13T08:25:55.522] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T08:25:55.563] [INFO] cheese - inserting 1000 documents. first: Paris-Beauvais-Tille Airport and last: Jimmy Dixon +[2018-02-13T08:25:55.653] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:25:55.769] [INFO] cheese - inserting 1000 documents. first: Forest Springs, California (disambiguation) and last: File:JuliavonAnstetten.jpg +[2018-02-13T08:25:55.808] [INFO] cheese - inserting 1000 documents. first: Category:Football at the All-Africa Games and last: The BBC Sessions (Ocean Colour Scene) +[2018-02-13T08:25:55.811] [INFO] cheese - inserting 1000 documents. first: Evin-Malmaison and last: Gonnersdorf (Eifel) +[2018-02-13T08:25:55.820] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:25:55.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Rhodotus/archive1 and last: Theodora of Alexandria +[2018-02-13T08:25:55.851] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T08:25:55.872] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:25:56.036] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:25:56.046] [INFO] cheese - inserting 1000 documents. first: Michael Barbiero and last: Advanced Data Guarding +[2018-02-13T08:25:56.178] [INFO] cheese - inserting 1000 documents. first: Category:1867 establishments in Bavaria and last: Manimaran +[2018-02-13T08:25:56.189] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:25:56.283] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:25:56.357] [INFO] cheese - inserting 1000 documents. first: MetroTen and last: Koos Ras +[2018-02-13T08:25:56.388] [INFO] cheese - inserting 1000 documents. first: D.I.E. and last: File:Teenage Animator Patrick Beardmore.jpg +[2018-02-13T08:25:56.470] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:25:56.540] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:25:56.583] [INFO] cheese - inserting 1000 documents. first: Template:WP Penn and last: Vyacheslav Vsevolodovich Ivanov +[2018-02-13T08:25:56.628] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Spring Valley, Nevada and last: Darenth Country Park +[2018-02-13T08:25:56.668] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:25:56.702] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:25:56.721] [INFO] cheese - inserting 1000 documents. first: David Frederick Cunningham and last: File:NotSinceCarrie.jpg +[2018-02-13T08:25:56.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/PHP Mirrors and last: File:JGBallard.jpg +[2018-02-13T08:25:56.812] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:25:56.858] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T08:25:56.948] [INFO] cheese - inserting 1000 documents. first: Frederick William Lillywhite and last: Distance (SS501 song) +[2018-02-13T08:25:56.952] [INFO] cheese - inserting 1000 documents. first: WBO and last: File:BostonBoston.jpg +[2018-02-13T08:25:56.998] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:25:57.003] [INFO] cheese - inserting 1000 documents. first: Borgo Press and last: File:EnglandCambridgeshireTrad.png +[2018-02-13T08:25:57.040] [INFO] cheese - batch complete in: 1.65 secs +[2018-02-13T08:25:57.074] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:25:57.119] [INFO] cheese - inserting 1000 documents. first: Adao Nunes Dornelles and last: Anales de Fisica +[2018-02-13T08:25:57.168] [INFO] cheese - inserting 1000 documents. first: Knickerbocker Holiday (film) and last: Template:WP Airport +[2018-02-13T08:25:57.176] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T08:25:57.217] [INFO] cheese - inserting 1000 documents. first: Get Stoned and last: Wikipedia:AVATARMAIN +[2018-02-13T08:25:57.259] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:25:57.283] [INFO] cheese - inserting 1000 documents. first: Category:840s BC births and last: Template:Country data Baroda State +[2018-02-13T08:25:57.284] [INFO] cheese - inserting 1000 documents. first: File:Le Livre du cœur d'amour épris1 edited.jpg and last: Arkansas Highway 308 Business +[2018-02-13T08:25:57.356] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:25:57.367] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:25:57.438] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:25:57.554] [INFO] cheese - inserting 1000 documents. first: Ilheus Jorge Amado Airport and last: 2008 V8 Supercars Manufacturers Challenge +[2018-02-13T08:25:57.572] [INFO] cheese - inserting 1000 documents. first: Category:NIFL Championship and last: File:Rylan-Zamprogna Dante-Lulu2013.jpg +[2018-02-13T08:25:57.605] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:25:57.661] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:25:57.771] [INFO] cheese - inserting 1000 documents. first: Dial (display) and last: Persephone (goddess) +[2018-02-13T08:25:57.918] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:25:57.941] [INFO] cheese - inserting 1000 documents. first: Category:People from Scornicești and last: 2005 Hyderabad Open +[2018-02-13T08:25:57.955] [INFO] cheese - inserting 1000 documents. first: Waterloo Road tram stop and last: Clown shoe +[2018-02-13T08:25:57.968] [INFO] cheese - inserting 1000 documents. first: Template:Wrathchild America and last: Ray Cat +[2018-02-13T08:25:58.043] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:25:58.070] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:25:58.113] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:25:58.160] [INFO] cheese - inserting 1000 documents. first: Order and Chaos Online and last: Mahindra Reva Electric Vehicles Private Limited +[2018-02-13T08:25:58.231] [INFO] cheese - inserting 1000 documents. first: Columbia Recording Studio and last: Interchanges '54 +[2018-02-13T08:25:58.266] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:25:58.272] [INFO] cheese - inserting 1000 documents. first: Day of the Barricades and last: Corte de’ Cortesi con Cignone +[2018-02-13T08:25:58.334] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:25:58.411] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:25:58.437] [INFO] cheese - inserting 1000 documents. first: Boston (album) and last: Celine Dion +[2018-02-13T08:25:58.539] [INFO] cheese - inserting 1000 documents. first: Safe Conducts Act 1414 and last: Abdel Hamid Badawi +[2018-02-13T08:25:58.553] [INFO] cheese - batch complete in: 1.513 secs +[2018-02-13T08:25:58.610] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:25:58.629] [INFO] cheese - inserting 1000 documents. first: Field dressing (bandage) and last: Wikipedia:Featured picture candidates/Autofellatio +[2018-02-13T08:25:58.664] [INFO] cheese - inserting 1000 documents. first: Yvon Côté and last: Carpentarian Pseudantechinus +[2018-02-13T08:25:58.712] [INFO] cheese - inserting 1000 documents. first: Ray cat and last: Amtrak America +[2018-02-13T08:25:58.734] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:25:58.739] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:25:58.788] [INFO] cheese - inserting 1000 documents. first: Halifax Explosion Memorial Sculpture and last: Carmelo Juan Giaquinta +[2018-02-13T08:25:58.847] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:25:58.874] [INFO] cheese - inserting 1000 documents. first: Category:1891–92 in Canadian ice hockey and last: Leptopelis uluguruensis +[2018-02-13T08:25:58.916] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Leigh Jason and last: Alojzy Gonzaga Zolkowski +[2018-02-13T08:25:58.989] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:25:59.107] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:25:59.084] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:25:59.309] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ashida Kim (7th nomination) and last: Jose Vicente +[2018-02-13T08:25:59.355] [INFO] cheese - inserting 1000 documents. first: San Juan Bautista, Suchitepequez and last: Suederdeich +[2018-02-13T08:25:59.372] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:25:59.388] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T08:25:59.431] [INFO] cheese - inserting 1000 documents. first: The War Nerd and last: Aldege "Baz" Bastien Memorial Award +[2018-02-13T08:25:59.438] [INFO] cheese - inserting 1000 documents. first: Template:United States vice presidential candidate selection and last: File:Ranviir the Marshal Poster.jpg +[2018-02-13T08:25:59.463] [INFO] cheese - inserting 1000 documents. first: Le Sacre du Sauvage and last: Category:Articles with empty sections from July 2013 +[2018-02-13T08:25:59.489] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:25:59.554] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:25:59.577] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:25:59.610] [INFO] cheese - inserting 1000 documents. first: The ship of state and last: Category:Rugby union fullbacks +[2018-02-13T08:25:59.614] [INFO] cheese - inserting 1000 documents. first: Vagli di Sotto and last: Category:Local museums in Hertfordshire +[2018-02-13T08:25:59.682] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:25:59.715] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:25:59.753] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Salt Lake City and last: Rengsjobilen +[2018-02-13T08:25:59.826] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T08:25:59.911] [INFO] cheese - inserting 1000 documents. first: P = BPP problem and last: Lady GaGa The Fame:Monster +[2018-02-13T08:26:00.049] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:26:00.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lake Alice Hospital and last: Cronian +[2018-02-13T08:26:00.126] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia introduction cleanup from July 2013 and last: Artur Kopytin +[2018-02-13T08:26:00.142] [INFO] cheese - inserting 1000 documents. first: Wahlstroem & Widstrand and last: Teo, A Coruna +[2018-02-13T08:26:00.145] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:26:00.225] [INFO] cheese - inserting 1000 documents. first: Robert E. Connick and last: Emperor Akihito of Japan +[2018-02-13T08:26:00.265] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T08:26:00.283] [INFO] cheese - inserting 1000 documents. first: Ikka Singh and last: Template:Sports icon 2 +[2018-02-13T08:26:00.299] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:26:00.328] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Ysgol y Strade and last: Medical grafting +[2018-02-13T08:26:00.429] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:26:00.445] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:26:00.463] [INFO] cheese - batch complete in: 1.91 secs +[2018-02-13T08:26:00.561] [INFO] cheese - inserting 1000 documents. first: Silent call and last: Category:Law enforcement in Kenya +[2018-02-13T08:26:00.590] [INFO] cheese - inserting 1000 documents. first: Szoelloesy and last: 洛陽 +[2018-02-13T08:26:00.603] [INFO] cheese - inserting 1000 documents. first: Paraibinha River and last: Notre Dame Fighting Irish football (1950-1959) +[2018-02-13T08:26:00.632] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T08:26:00.646] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:26:00.667] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:26:00.903] [INFO] cheese - inserting 1000 documents. first: Śēkh Mujibur Rahmān and last: Zsa Zsa Zaturnnah +[2018-02-13T08:26:00.909] [INFO] cheese - inserting 1000 documents. first: Stilon Gorzów and last: Victor Tiedjens +[2018-02-13T08:26:00.918] [INFO] cheese - inserting 1000 documents. first: Frere Jacques in popular culture and last: Crossle Car Company +[2018-02-13T08:26:00.939] [INFO] cheese - inserting 1000 documents. first: Eagle-Picher Industries and last: All Souls' Church Sutton Green +[2018-02-13T08:26:00.961] [INFO] cheese - inserting 1000 documents. first: Media of Libya and last: Ebonite International +[2018-02-13T08:26:00.993] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:26:01.005] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T08:26:01.038] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:26:01.076] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:26:01.144] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:26:01.291] [INFO] cheese - inserting 1000 documents. first: Private Parriage and last: Category:Venezuelan people of Argentine descent +[2018-02-13T08:26:01.531] [INFO] cheese - inserting 1000 documents. first: Spring overshoot and last: Category:512 deaths +[2018-02-13T08:26:01.556] [INFO] cheese - inserting 1000 documents. first: Zaoldyeck Family and last: Truemmerliteratur +[2018-02-13T08:26:01.555] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:26:01.628] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:26:01.649] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:26:01.731] [INFO] cheese - inserting 1000 documents. first: 1927-28 Netherlands Football League Championship and last: 1977 IBF World Championships - Mixed Doubles +[2018-02-13T08:26:01.790] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:26:01.913] [INFO] cheese - inserting 1000 documents. first: Tatyarao Lahane and last: Offrejoie +[2018-02-13T08:26:01.978] [INFO] cheese - inserting 1000 documents. first: Dumlupinar (District), Kutahya and last: Category:Economy of New Orleans +[2018-02-13T08:26:02.035] [INFO] cheese - inserting 1000 documents. first: Infinite Vulcan and last: Jungle Operations Training Center +[2018-02-13T08:26:02.055] [INFO] cheese - inserting 1000 documents. first: Robert Mackenzie Beverley and last: Salt (sodium chloride) +[2018-02-13T08:26:02.054] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T08:26:02.067] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T08:26:02.171] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:26:02.214] [INFO] cheese - inserting 1000 documents. first: 1977 IBF World Championships - Women's Doubles and last: 1995 World Championships in Athletics - Women's 1500 metres +[2018-02-13T08:26:02.237] [INFO] cheese - batch complete in: 1.198 secs +[2018-02-13T08:26:02.333] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:26:02.405] [INFO] cheese - inserting 1000 documents. first: Quanta Plus and last: Caricature +[2018-02-13T08:26:02.445] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Tilaran and last: Bach Ho +[2018-02-13T08:26:02.482] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T08:26:02.492] [INFO] cheese - inserting 1000 documents. first: Suzhou Sports Center and last: File:The graph y = x√2.png +[2018-02-13T08:26:02.521] [INFO] cheese - inserting 1000 documents. first: Shaggy Man and last: Cypriot flag +[2018-02-13T08:26:02.539] [INFO] cheese - batch complete in: 2.076 secs +[2018-02-13T08:26:02.659] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T08:26:02.756] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T08:26:02.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mylanviewer.com and last: 2002 European Athletics Indoor Championships - Men's 60 metres +[2018-02-13T08:26:02.832] [INFO] cheese - inserting 1000 documents. first: File:Logotype of Offrejoie.jpg and last: Bojan Mijailović (footballer, born 1995) +[2018-02-13T08:26:02.837] [INFO] cheese - inserting 1000 documents. first: Ostgoeta nation (Uppsala) and last: FK Zlatibor Cajetina +[2018-02-13T08:26:02.859] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T08:26:02.872] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:26:02.898] [INFO] cheese - inserting 1000 documents. first: Leslie H. Saunders and last: Eberswalde (Martian crater) +[2018-02-13T08:26:02.913] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:26:02.997] [INFO] cheese - inserting 1000 documents. first: Category:Soft rock and last: JetBrains +[2018-02-13T08:26:02.991] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:26:03.201] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:26:03.253] [INFO] cheese - inserting 1000 documents. first: Category:Egyptian emigrants to Canada and last: 2007-08 TFF First League +[2018-02-13T08:26:03.355] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:26:03.362] [INFO] cheese - inserting 1000 documents. first: Twentysix-spotted potato ladybird and last: Kingdom of the East Angles +[2018-02-13T08:26:03.571] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:26:03.741] [INFO] cheese - inserting 1000 documents. first: V-Powerdeg and last: Val Schier (Cairns Mayor) +[2018-02-13T08:26:03.764] [INFO] cheese - inserting 1000 documents. first: Batman smells and last: Philippine-related topics +[2018-02-13T08:26:03.785] [INFO] cheese - inserting 1000 documents. first: Augustin Tschinkel and last: Soil density +[2018-02-13T08:26:03.805] [INFO] cheese - inserting 1000 documents. first: 2007-08 Torquay United F.C. season and last: Forest Springs, Nevada County, California +[2018-02-13T08:26:03.854] [INFO] cheese - inserting 1000 documents. first: Sir John Lauder, 1st Baronet and last: Neon-22 +[2018-02-13T08:26:03.859] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:26:03.942] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:26:03.955] [INFO] cheese - batch complete in: 1.198 secs +[2018-02-13T08:26:03.973] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:26:04.035] [INFO] cheese - inserting 1000 documents. first: File:American Girl Bonnie McKee.jpg and last: Gcloud +[2018-02-13T08:26:04.050] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:26:04.304] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T08:26:04.379] [INFO] cheese - inserting 1000 documents. first: Kevin Byrne (Cairns Mayor) and last: Linderud Videregaende Skole +[2018-02-13T08:26:04.468] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:26:04.561] [INFO] cheese - inserting 1000 documents. first: 2010 World Weightlifting Championships - Men's 94 kg and last: Category:Mexican emigrants to Uruguay +[2018-02-13T08:26:04.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RoomSaver and last: Index of Windows games (Y) +[2018-02-13T08:26:04.664] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T08:26:04.735] [INFO] cheese - batch complete in: 1.164 secs +[2018-02-13T08:26:04.768] [INFO] cheese - inserting 1000 documents. first: Stephano and last: Zeppelin bend +[2018-02-13T08:26:04.809] [INFO] cheese - inserting 1000 documents. first: Joseph-Elie Thibaudeau and last: Munster, Bavaria +[2018-02-13T08:26:04.850] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T08:26:04.878] [INFO] cheese - inserting 1000 documents. first: Tidal Wave (1943) and last: Susumanskii +[2018-02-13T08:26:04.896] [INFO] cheese - inserting 1000 documents. first: Did You Ever Have a Family and last: Chowilla floodplain +[2018-02-13T08:26:04.955] [INFO] cheese - batch complete in: 2.416 secs +[2018-02-13T08:26:04.980] [INFO] cheese - inserting 1000 documents. first: Chromium(III) oxide and last: 1930 in American television +[2018-02-13T08:26:05.003] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T08:26:05.019] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:26:05.086] [INFO] cheese - inserting 1000 documents. first: GCloud and last: Wikipedia:WikiProject Spam/Local/sculpturesbythesea.com.au +[2018-02-13T08:26:05.093] [INFO] cheese - inserting 1000 documents. first: Category:Apostle Islands National Lakeshore and last: Athletics at the 1924 Summer Olympics - Men's 3000 metres team race +[2018-02-13T08:26:05.101] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:26:05.175] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T08:26:05.204] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:26:05.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Anglicanism articles by quality/14 and last: IPA Extensions unicode block +[2018-02-13T08:26:05.469] [INFO] cheese - inserting 1000 documents. first: Lonsoeraefi and last: Petin +[2018-02-13T08:26:05.507] [INFO] cheese - inserting 1000 documents. first: Category:Sierra Leonean emigrants to the United States and last: Cycling at the 2010 Summer Youth Olympics - Girls' cross country +[2018-02-13T08:26:05.529] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:26:05.555] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:26:05.588] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T08:26:05.680] [INFO] cheese - inserting 1000 documents. first: Karuppu Panam (1964 film) and last: James Hesketh Biggs +[2018-02-13T08:26:05.839] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:26:05.854] [INFO] cheese - inserting 1000 documents. first: Ray Campbell (ice hockey) and last: Wikipedia:Articles for deletion/Géza von Neményi +[2018-02-13T08:26:05.966] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:26:06.010] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2010 Summer Youth Olympics - Girls' time trial and last: List of Scotland international footballers (1 - 4 caps) +[2018-02-13T08:26:06.082] [INFO] cheese - inserting 1000 documents. first: Grażyna Osmańska and last: File:SkudinaEkaterina5.jpg +[2018-02-13T08:26:06.082] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T08:26:06.092] [INFO] cheese - inserting 1000 documents. first: パラセクト and last: Confessions, part 2 +[2018-02-13T08:26:06.154] [INFO] cheese - inserting 1000 documents. first: Second Battle of Zuerich and last: V337 Car +[2018-02-13T08:26:06.213] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:26:06.263] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:26:06.275] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T08:26:06.455] [INFO] cheese - inserting 1000 documents. first: Latin Extended-B unicode block and last: Category:Permanent Secretaries of the Ministry of Technology +[2018-02-13T08:26:06.604] [INFO] cheese - inserting 1000 documents. first: List of Scotland international footballers (5 - 19 caps) and last: List of minor planets/166801-166900 +[2018-02-13T08:26:06.639] [INFO] cheese - batch complete in: 1.083 secs +[2018-02-13T08:26:06.670] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:26:06.817] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2015/44/picture/caption and last: Jerry Dixon (actor) +[2018-02-13T08:26:06.818] [INFO] cheese - inserting 1000 documents. first: Water vapor feedback and last: Lordship of Chios +[2018-02-13T08:26:06.850] [INFO] cheese - inserting 1000 documents. first: Operation Decisive and last: Jean-Bertrand-Leon Foucault +[2018-02-13T08:26:06.984] [INFO] cheese - batch complete in: 1.145 secs +[2018-02-13T08:26:06.994] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:26:07.019] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:26:07.137] [INFO] cheese - inserting 1000 documents. first: Double bowline and last: Thoughtpolice +[2018-02-13T08:26:07.183] [INFO] cheese - inserting 1000 documents. first: Patsy Kinsey and last: SMT 4 +[2018-02-13T08:26:07.288] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:26:07.330] [INFO] cheese - batch complete in: 2.375 secs +[2018-02-13T08:26:07.354] [INFO] cheese - inserting 1000 documents. first: Confessions Part 2 and last: File:Electric City of Music Instructor.jpg +[2018-02-13T08:26:07.384] [INFO] cheese - inserting 1000 documents. first: List of minor planets/166901-167000 and last: Template:TonyAward BestAuthor +[2018-02-13T08:26:07.459] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:26:07.487] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:26:07.546] [INFO] cheese - inserting 1000 documents. first: Villa de Sonador and last: Al Jenkins (EastEnders) +[2018-02-13T08:26:07.557] [INFO] cheese - inserting 1000 documents. first: Ocotlan Zapotec language and last: Froetuna +[2018-02-13T08:26:07.630] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:26:07.669] [INFO] cheese - inserting 1000 documents. first: Maya Station and last: Food stamp (disambiguation) +[2018-02-13T08:26:07.696] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:26:07.774] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:26:07.804] [INFO] cheese - inserting 1000 documents. first: Moses Najara I and last: State Route 528 (Ohio) +[2018-02-13T08:26:07.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/theusfl.com and last: Gerdkani-ye Olya +[2018-02-13T08:26:07.939] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:26:08.014] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:26:08.071] [INFO] cheese - inserting 1000 documents. first: Church of Our Lady in front of Tyn and last: IrisVision +[2018-02-13T08:26:08.130] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T08:26:08.163] [INFO] cheese - inserting 1000 documents. first: Jaswinder Singh and last: Georgetown, New Jersey +[2018-02-13T08:26:08.268] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:26:08.326] [INFO] cheese - inserting 1000 documents. first: Emperor Ichijo of Japan and last: Elliot Goldenthal +[2018-02-13T08:26:08.476] [INFO] cheese - inserting 1000 documents. first: Shearson Loeb Rhoades and last: Rosstown Railway Heritage Trail +[2018-02-13T08:26:08.480] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:26:08.485] [INFO] cheese - inserting 1000 documents. first: Frederic Jones (cricketer) and last: Phyllodesmium lizardense +[2018-02-13T08:26:08.547] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:26:08.602] [INFO] cheese - inserting 1000 documents. first: AquaMan and last: Rocket sauce +[2018-02-13T08:26:08.605] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:26:08.677] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:26:08.910] [INFO] cheese - inserting 1000 documents. first: List of minor planets/82701-82800 and last: HanAhReum +[2018-02-13T08:26:09.024] [INFO] cheese - inserting 1000 documents. first: Girdehkani Bala and last: Munson (surname) +[2018-02-13T08:26:09.056] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:26:09.093] [INFO] cheese - inserting 1000 documents. first: Viscardi and last: Hermis Moutardier +[2018-02-13T08:26:09.215] [INFO] cheese - batch complete in: 1.201 secs +[2018-02-13T08:26:09.335] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T08:26:09.441] [INFO] cheese - inserting 1000 documents. first: Theocrastus Bombastus von Hohenheim and last: Colouring algorithm +[2018-02-13T08:26:09.481] [INFO] cheese - inserting 1000 documents. first: John McLean (US Associate Justice) and last: Forest school (education) +[2018-02-13T08:26:09.589] [INFO] cheese - inserting 1000 documents. first: Sirius satellite radio at the glen and last: Mario Frick (politician) +[2018-02-13T08:26:09.591] [INFO] cheese - inserting 1000 documents. first: Ben Loft and last: Cyprus turpentine +[2018-02-13T08:26:09.605] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:26:09.670] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T08:26:09.735] [INFO] cheese - inserting 1000 documents. first: 1759 in United States history and last: Portal:Maryland/On this day/August 24 +[2018-02-13T08:26:09.758] [INFO] cheese - batch complete in: 1.278 secs +[2018-02-13T08:26:09.780] [INFO] cheese - batch complete in: 2.449 secs +[2018-02-13T08:26:09.784] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:26:09.857] [INFO] cheese - inserting 1000 documents. first: Christopher Milo and last: Kostroga (PKP station) +[2018-02-13T08:26:09.966] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:26:10.103] [INFO] cheese - inserting 1000 documents. first: Universal Dictionary and last: Kuitun, Xinjiang +[2018-02-13T08:26:10.189] [INFO] cheese - inserting 1000 documents. first: Dorze language and last: Template:POTD protected/2008-03-19 +[2018-02-13T08:26:10.233] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:26:10.288] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:26:10.446] [INFO] cheese - inserting 1000 documents. first: Total Divas (season 5) and last: Wikipedia:WikiProject Spam/LinkReports/deordevandenacht.nl +[2018-02-13T08:26:10.476] [INFO] cheese - inserting 1000 documents. first: Crank It Up (Ashley Tisdale song) and last: C8H5Cl3O3 +[2018-02-13T08:26:10.486] [INFO] cheese - inserting 1000 documents. first: Shirawaka Tennō and last: The Crimson White +[2018-02-13T08:26:10.593] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:26:10.601] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:26:10.630] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:26:10.698] [INFO] cheese - inserting 1000 documents. first: 1st century in poetry and last: Category:2005 short stories +[2018-02-13T08:26:10.792] [INFO] cheese - inserting 1000 documents. first: Navigation Primary School and last: Eckeroe Linjen +[2018-02-13T08:26:10.838] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T08:26:10.952] [INFO] cheese - inserting 1000 documents. first: Bhavana (actor) and last: File:Traves-Stemma.png +[2018-02-13T08:26:10.956] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:26:11.042] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:26:11.327] [INFO] cheese - inserting 1000 documents. first: Cypriot Young Scientists ISCHYS (ISKhUS) and last: Felicien Chapuis +[2018-02-13T08:26:11.328] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/inventingelliot.googlepages.com and last: Dooryard plantain +[2018-02-13T08:26:11.335] [INFO] cheese - inserting 1000 documents. first: Alexander Alexandrovich Volkov (footballer) and last: Le Bon (disambiguation) +[2018-02-13T08:26:11.372] [INFO] cheese - inserting 1000 documents. first: Shaman King: Master of Spirits 2 and last: Matar Marka Al Dawli +[2018-02-13T08:26:11.379] [INFO] cheese - inserting 1000 documents. first: Template:Infobox rugby biography/sandbox3 and last: Portal:Iranian Azerbaijan/Selected picture/1 +[2018-02-13T08:26:11.437] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:26:11.466] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:26:11.500] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T08:26:11.535] [INFO] cheese - inserting 1000 documents. first: Qalat Shmemis and last: Weeverfish +[2018-02-13T08:26:11.497] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:26:11.612] [INFO] cheese - batch complete in: 1.379 secs +[2018-02-13T08:26:11.668] [INFO] cheese - inserting 1000 documents. first: Wire-and-string puzzle and last: Plateau (disambiguation) +[2018-02-13T08:26:11.721] [INFO] cheese - batch complete in: 1.091 secs +[2018-02-13T08:26:11.858] [INFO] cheese - inserting 1000 documents. first: Im Schatten der Arzte and last: (SAT, e-UNSAT) +[2018-02-13T08:26:11.883] [INFO] cheese - batch complete in: 2.102 secs +[2018-02-13T08:26:11.962] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T08:26:12.103] [INFO] cheese - inserting 1000 documents. first: Category:Townships in Kittson County, Minnesota and last: Spectrum Saloon Car (SSC) +[2018-02-13T08:26:12.283] [INFO] cheese - batch complete in: 1.241 secs +[2018-02-13T08:26:12.407] [INFO] cheese - inserting 1000 documents. first: Lamb's foot and last: Alias Pink Puzz +[2018-02-13T08:26:12.423] [INFO] cheese - inserting 1000 documents. first: Wing of Wor and last: Pan de Azucar National Park +[2018-02-13T08:26:12.460] [INFO] cheese - inserting 1000 documents. first: Bon Accord (disambiguation) and last: Wikipedia:Articles for deletion/British Non-Regional Pronunciation +[2018-02-13T08:26:12.477] [INFO] cheese - inserting 1000 documents. first: Jason Farradane award and last: Trzycież +[2018-02-13T08:26:12.547] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:26:12.552] [INFO] cheese - inserting 1000 documents. first: Warriors (Super editions) and last: Category:Orders, decorations, and medals of Lippe +[2018-02-13T08:26:12.594] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:26:12.685] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T08:26:12.686] [INFO] cheese - batch complete in: 1.249 secs +[2018-02-13T08:26:12.828] [INFO] cheese - batch complete in: 1.215 secs +[2018-02-13T08:26:13.034] [INFO] cheese - inserting 1000 documents. first: Varttikakara and last: Template:MassEffect +[2018-02-13T08:26:13.143] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T08:26:13.255] [INFO] cheese - inserting 1000 documents. first: Prague Bandurist Capella and last: Le Pâquier FR +[2018-02-13T08:26:13.325] [INFO] cheese - inserting 1000 documents. first: FAR 23 and last: Dubai Debates +[2018-02-13T08:26:13.338] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:26:13.354] [INFO] cheese - inserting 1000 documents. first: Roman miles and last: Peter Gould (professor) +[2018-02-13T08:26:13.500] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:26:13.519] [INFO] cheese - batch complete in: 1.236 secs +[2018-02-13T08:26:13.616] [INFO] cheese - inserting 1000 documents. first: Jose Maria Morelos Pavon and last: Powell Carter +[2018-02-13T08:26:13.634] [INFO] cheese - inserting 1000 documents. first: Nadiya Hussain and last: Wikipedia:WikiProject Spam/LinkReports/iris-solutions.ca +[2018-02-13T08:26:13.683] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:26:13.799] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T08:26:13.830] [INFO] cheese - inserting 1000 documents. first: Trachinidae and last: José Gaspar +[2018-02-13T08:26:13.838] [INFO] cheese - inserting 1000 documents. first: Petaurus australis and last: Subingen SO +[2018-02-13T08:26:13.862] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2008 Summer Paralympics – Men's team sprint (LC1–4 CP3/4) and last: Farnworth Grammar School +[2018-02-13T08:26:13.956] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:26:14.014] [INFO] cheese - batch complete in: 1.184 secs +[2018-02-13T08:26:14.048] [INFO] cheese - batch complete in: 2.326 secs +[2018-02-13T08:26:14.248] [INFO] cheese - inserting 1000 documents. first: John of Lancaster, 1st Duke of Bedford and last: Abducens nerve +[2018-02-13T08:26:14.258] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Little League articles by quality and last: Tamalitos +[2018-02-13T08:26:14.267] [INFO] cheese - inserting 1000 documents. first: Pope Pius XII (Cardinal Cushing) and last: Category:Kim clans +[2018-02-13T08:26:14.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2008 March 18 and last: G N R lies +[2018-02-13T08:26:14.287] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T08:26:14.297] [INFO] cheese - inserting 1000 documents. first: Roger Simon (journalist) and last: Spain in the Junior Eurovision Song Contest 2003 +[2018-02-13T08:26:14.341] [INFO] cheese - batch complete in: 2.458 secs +[2018-02-13T08:26:14.341] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:26:14.359] [INFO] cheese - inserting 1000 documents. first: Michael Smith (Irish Journalist and Environmentalist) and last: USS Brontes +[2018-02-13T08:26:14.359] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:26:14.463] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:26:14.503] [INFO] cheese - inserting 1000 documents. first: Flagrant délit and last: St. John Health System Detroit Hospitals +[2018-02-13T08:26:14.506] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:26:14.615] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:26:14.637] [INFO] cheese - inserting 1000 documents. first: Hebrew Calander and last: Portal:Trains/Did you know/September 2005 +[2018-02-13T08:26:14.680] [INFO] cheese - inserting 1000 documents. first: Truttikon ZH and last: Fulleda +[2018-02-13T08:26:14.716] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:26:14.736] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:26:14.866] [INFO] cheese - inserting 1000 documents. first: Template:Updateme and last: Japanese Twenty-First Army +[2018-02-13T08:26:14.869] [INFO] cheese - inserting 1000 documents. first: 1992 Rugby League State of Origin series and last: Objects in Mirror Are Closer Than They Appear +[2018-02-13T08:26:14.918] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:26:14.948] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:26:14.974] [INFO] cheese - inserting 1000 documents. first: Category:People from Vilkaviškis and last: File:Evolution (Nektar album).jpg +[2018-02-13T08:26:15.036] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:26:15.201] [INFO] cheese - inserting 1000 documents. first: Delplace and last: Department of Ayurveda, Yoga and Naturopathy, Unani, Siddha and Homoeopathy +[2018-02-13T08:26:15.296] [INFO] cheese - inserting 1000 documents. first: Blasphemy (album) and last: General-feldwachtmeister +[2018-02-13T08:26:15.329] [INFO] cheese - inserting 1000 documents. first: Shuten-dōji (disambiguation) and last: Ameca +[2018-02-13T08:26:15.339] [INFO] cheese - inserting 1000 documents. first: Ibrahim Mousawi and last: Commercial kitchens +[2018-02-13T08:26:15.339] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:26:15.386] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:26:15.438] [INFO] cheese - inserting 1000 documents. first: Trans-Australian Railway and last: Template:Infobox Philippine region +[2018-02-13T08:26:15.455] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:26:15.459] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:26:15.518] [INFO] cheese - inserting 1000 documents. first: WYRC-FM and last: Portal:Trinidad and Tobago/Selected panorama/2 +[2018-02-13T08:26:15.599] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:26:15.660] [INFO] cheese - inserting 1000 documents. first: Valkjaervi and last: Boldon James +[2018-02-13T08:26:15.685] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:26:15.741] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T08:26:15.772] [INFO] cheese - inserting 1000 documents. first: Royal Botanical Expedition of the Nuevo Reyno de Granada and last: R.M. White +[2018-02-13T08:26:15.806] [INFO] cheese - inserting 1000 documents. first: Victory in Europe Day and last: The Institute of Technology at Linköping University +[2018-02-13T08:26:15.881] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:26:15.966] [INFO] cheese - batch complete in: 1.625 secs +[2018-02-13T08:26:16.069] [INFO] cheese - inserting 1000 documents. first: Yamagata han and last: Aicard +[2018-02-13T08:26:16.107] [INFO] cheese - inserting 1000 documents. first: Category:Fishery protection vessels and last: Ordinariaat voor buitenlandse studenten in belgië +[2018-02-13T08:26:16.147] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:26:16.184] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:26:16.190] [INFO] cheese - inserting 1000 documents. first: Lindstroem theorem and last: San Jose de Mayo +[2018-02-13T08:26:16.240] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T08:26:16.361] [INFO] cheese - inserting 1000 documents. first: Rogue Legacy and last: File:KTP-Basket logo.png +[2018-02-13T08:26:16.411] [INFO] cheese - inserting 1000 documents. first: Wilder Cemetery and last: Template:Infobox province +[2018-02-13T08:26:16.477] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:26:16.524] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:26:16.571] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space Vector Inducer and last: List of British fascist parties +[2018-02-13T08:26:16.604] [INFO] cheese - inserting 1000 documents. first: Emmetten, Switzerland and last: Niederstocken, Switzerland +[2018-02-13T08:26:16.643] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:26:16.686] [INFO] cheese - inserting 1000 documents. first: Shay Kelly and last: Kids 4 Afghan Kids +[2018-02-13T08:26:16.735] [INFO] cheese - inserting 1000 documents. first: Category:Dukes of Schleswig-Holstein-Sonderburg-Plon-Rethwisch and last: Nirmala Convent School +[2018-02-13T08:26:16.737] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:26:16.758] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T08:26:16.865] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T08:26:16.999] [INFO] cheese - inserting 1000 documents. first: Vladimir Veryovkin and last: Balcerzak +[2018-02-13T08:26:17.083] [INFO] cheese - inserting 1000 documents. first: Niederurnen, Switzerland and last: Collombey Muraz +[2018-02-13T08:26:17.111] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:26:17.125] [INFO] cheese - inserting 1000 documents. first: Sankt Veit im Muhlkreis and last: Kaelvesta air disaster +[2018-02-13T08:26:17.179] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:26:17.184] [INFO] cheese - inserting 1000 documents. first: Eduardo Mezzacapo and last: File:Mystery Diners logo.jpg +[2018-02-13T08:26:17.236] [INFO] cheese - inserting 1000 documents. first: Cocteleria and last: Portuguese Liga 1935–36 +[2018-02-13T08:26:17.243] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:26:17.286] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:26:17.333] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:26:17.549] [INFO] cheese - inserting 1000 documents. first: Naviauxella and last: City'US Târgu Mures +[2018-02-13T08:26:17.557] [INFO] cheese - inserting 1000 documents. first: Moku o Lo`e Island and last: Eric Meyer (Professor) +[2018-02-13T08:26:17.597] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T08:26:17.648] [INFO] cheese - inserting 1000 documents. first: Sogut and last: American Law Institute +[2018-02-13T08:26:17.652] [INFO] cheese - inserting 1000 documents. first: Pierre Jeanneret and last: Applecross +[2018-02-13T08:26:17.662] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:26:17.747] [INFO] cheese - inserting 1000 documents. first: Collonge Bellerive and last: St-Moritz +[2018-02-13T08:26:17.760] [INFO] cheese - inserting 1000 documents. first: Danny pudi and last: MediaTek Camera Application +[2018-02-13T08:26:17.793] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:26:17.835] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:26:17.837] [INFO] cheese - batch complete in: 1.871 secs +[2018-02-13T08:26:17.840] [INFO] cheese - inserting 1000 documents. first: Hero of Tomorrow and last: Template:Location map Japan Tokyo +[2018-02-13T08:26:17.893] [INFO] cheese - inserting 1000 documents. first: Teatro metropolitan and last: Alpha High School +[2018-02-13T08:26:17.889] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:26:17.968] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:26:18.026] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:26:18.049] [INFO] cheese - inserting 1000 documents. first: SDKU-DS and last: Deluge (novel) +[2018-02-13T08:26:18.113] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:26:18.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Armorik and last: Nothoapiole +[2018-02-13T08:26:18.535] [INFO] cheese - inserting 1000 documents. first: Twee Redfin and last: HPA-1a +[2018-02-13T08:26:18.573] [INFO] cheese - inserting 1000 documents. first: St-Peter, Switzerland and last: Parliamentary Secretaries of the 18th Dáil +[2018-02-13T08:26:18.602] [INFO] cheese - inserting 1000 documents. first: Prince Kalman and last: Jean Baptiste Edouard Bornet +[2018-02-13T08:26:18.612] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:26:18.618] [INFO] cheese - inserting 1000 documents. first: List of schools in Sunshine Coast, Queensland and last: Santa Fe Catholic High School (Lakeland, Florida) +[2018-02-13T08:26:18.655] [INFO] cheese - inserting 1000 documents. first: HW Gourlay and last: American Made (album) +[2018-02-13T08:26:18.661] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:26:18.726] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:26:18.789] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:26:18.841] [INFO] cheese - batch complete in: 1.178 secs +[2018-02-13T08:26:18.905] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T08:26:18.961] [INFO] cheese - inserting 1000 documents. first: Dutch ship Eendracht and last: Tantalus Theatre Group +[2018-02-13T08:26:19.143] [INFO] cheese - batch complete in: 1.35 secs +[2018-02-13T08:26:19.328] [INFO] cheese - inserting 1000 documents. first: 17 a-hydroxylase and last: College Jean-Eudes +[2018-02-13T08:26:19.388] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:26:19.583] [INFO] cheese - inserting 1000 documents. first: Maria Victoria Casares y Perez and last: 2015 China Open Superseries Premier +[2018-02-13T08:26:19.635] [INFO] cheese - inserting 1000 documents. first: Svenska Seriefraemjandet and last: Template:TSN AL Comeback Players of the Year +[2018-02-13T08:26:19.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bioregional decolonization and last: Jung Woo +[2018-02-13T08:26:19.641] [INFO] cheese - inserting 1000 documents. first: Ikadotoi and last: Kypsela +[2018-02-13T08:26:19.653] [INFO] cheese - inserting 1000 documents. first: List of surviving drafts and copies of the United States Declaration of Independence and last: Polistichus +[2018-02-13T08:26:19.681] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T08:26:19.685] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:26:19.741] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:26:19.808] [INFO] cheese - batch complete in: 1.082 secs +[2018-02-13T08:26:19.831] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:26:19.840] [INFO] cheese - inserting 1000 documents. first: Edward L. Wright and last: Ibrahim Meite +[2018-02-13T08:26:19.941] [INFO] cheese - inserting 1000 documents. first: Corpus Juris Secundum and last: Christopher North (composer) +[2018-02-13T08:26:20.077] [INFO] cheese - batch complete in: 1.172 secs +[2018-02-13T08:26:20.142] [INFO] cheese - batch complete in: 2.305 secs +[2018-02-13T08:26:20.182] [INFO] cheese - inserting 1000 documents. first: Washington State Route 205 and last: Magnus I (of Norway and Denmark) +[2018-02-13T08:26:20.213] [INFO] cheese - inserting 1000 documents. first: List of asteroids/52601-52700 and last: Aluar nunez cabeca de vaca +[2018-02-13T08:26:20.300] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:26:20.415] [INFO] cheese - batch complete in: 1.272 secs +[2018-02-13T08:26:20.627] [INFO] cheese - inserting 1000 documents. first: Commissioners of Sind and last: Cradle to the Grave (album) +[2018-02-13T08:26:20.635] [INFO] cheese - inserting 1000 documents. first: Anisolabis pacifica and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/1610 +[2018-02-13T08:26:20.651] [INFO] cheese - inserting 1000 documents. first: The Amsterdams and last: Category:Art museums and galleries in Berkshire +[2018-02-13T08:26:20.665] [INFO] cheese - inserting 1000 documents. first: Chérif Abdeslam and last: Koduvila +[2018-02-13T08:26:20.701] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:26:20.740] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:26:20.768] [INFO] cheese - inserting 1000 documents. first: Etykinskoye mine and last: SMBBMC +[2018-02-13T08:26:20.737] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T08:26:20.860] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:26:20.948] [INFO] cheese - batch complete in: 1.207 secs +[2018-02-13T08:26:21.096] [INFO] cheese - inserting 1000 documents. first: Theodwyn and last: Magnus Jonsson (disambiguation) +[2018-02-13T08:26:21.148] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T08:26:21.245] [INFO] cheese - inserting 1000 documents. first: Chandrasekhar Limit and last: Wikipedia:Featured article candidates/Appointment to the Order of Canada/archive1 +[2018-02-13T08:26:21.302] [INFO] cheese - inserting 1000 documents. first: File:Diastemabefore.JPG and last: List of Star Trek planets (R–S) +[2018-02-13T08:26:21.411] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:26:21.469] [INFO] cheese - batch complete in: 1.392 secs +[2018-02-13T08:26:21.605] [INFO] cheese - inserting 1000 documents. first: Magnus, Duke of Ostergoetland and last: Magnus Ver +[2018-02-13T08:26:21.654] [INFO] cheese - inserting 1000 documents. first: Al Moore (American football) and last: Mighty Favog +[2018-02-13T08:26:21.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/David horta and last: Morar (disambiguation) +[2018-02-13T08:26:21.704] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:26:21.799] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:26:21.784] [INFO] cheese - batch complete in: 1.083 secs +[2018-02-13T08:26:21.928] [INFO] cheese - inserting 1000 documents. first: St. Joseph's Higher Secondary School (Cuddalore) and last: Venom gt +[2018-02-13T08:26:22.093] [INFO] cheese - batch complete in: 1.145 secs +[2018-02-13T08:26:22.111] [INFO] cheese - inserting 1000 documents. first: Vicuna family and last: Los Melodicos +[2018-02-13T08:26:22.142] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T08:26:22.265] [INFO] cheese - inserting 1000 documents. first: File:AS Baylinson.jpg and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Animation/Cartoon Network work group/Watchlist +[2018-02-13T08:26:22.306] [INFO] cheese - inserting 1000 documents. first: Faith freedom and last: Beecher Creek +[2018-02-13T08:26:22.390] [INFO] cheese - inserting 1000 documents. first: Economic Calculation Debate and last: Black Mask (radical group) +[2018-02-13T08:26:22.409] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:26:22.419] [INFO] cheese - batch complete in: 1.558 secs +[2018-02-13T08:26:22.531] [INFO] cheese - inserting 1000 documents. first: Kosorin and last: Template:Texas-NRHP-stub +[2018-02-13T08:26:22.550] [INFO] cheese - inserting 1000 documents. first: Favog and last: 6-Chloro-MDMA +[2018-02-13T08:26:22.565] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T08:26:22.622] [INFO] cheese - inserting 1000 documents. first: Est Playing the Game and last: Wikipedia:Articles for deletion/Videotape (video) +[2018-02-13T08:26:22.648] [INFO] cheese - batch complete in: 2.506 secs +[2018-02-13T08:26:22.664] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:26:22.782] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:26:22.899] [INFO] cheese - inserting 1000 documents. first: Grodersby and last: Mo DeHui +[2018-02-13T08:26:22.921] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T08:26:23.104] [INFO] cheese - inserting 1000 documents. first: Tanguito and last: Hanna-Maria Seppala +[2018-02-13T08:26:23.129] [INFO] cheese - inserting 1000 documents. first: File:Shams el-Ghinnieh album cover art.jpg and last: Template:COBISS +[2018-02-13T08:26:23.132] [INFO] cheese - inserting 1000 documents. first: RDW CV and last: Wikipedia:WikiProject Spam/Local/instarich.net +[2018-02-13T08:26:23.238] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:26:23.250] [INFO] cheese - inserting 1000 documents. first: Cacem (Sintra) and last: Cesky sen +[2018-02-13T08:26:23.266] [INFO] cheese - inserting 1000 documents. first: AGi32 and last: Johann Jakob Hess +[2018-02-13T08:26:23.267] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T08:26:23.341] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T08:26:23.346] [INFO] cheese - inserting 1000 documents. first: Purna (disambiguation) and last: F. B. Squire +[2018-02-13T08:26:23.352] [INFO] cheese - batch complete in: 1.941 secs +[2018-02-13T08:26:23.446] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:26:23.453] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:26:23.613] [INFO] cheese - inserting 1000 documents. first: Das Herz der Konigin and last: List of districts in south east England by population +[2018-02-13T08:26:23.777] [INFO] cheese - inserting 1000 documents. first: Schuettor and last: Harry Potter and the Half Blood Prince (film) +[2018-02-13T08:26:23.807] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:26:23.883] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:26:24.018] [INFO] cheese - inserting 1000 documents. first: Every Eye and last: Siege of Syracuse (877-878) +[2018-02-13T08:26:24.056] [INFO] cheese - inserting 1000 documents. first: Category:Greek Revival churches in Arizona and last: State Route 32A (Nevada) +[2018-02-13T08:26:24.083] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:26:24.119] [INFO] cheese - inserting 1000 documents. first: Valea Oratii River and last: Regierungsbezirk Dusseldorf +[2018-02-13T08:26:24.127] [INFO] cheese - inserting 1000 documents. first: Leonard Limosin and last: Dinner lady +[2018-02-13T08:26:24.129] [INFO] cheese - inserting 1000 documents. first: Watery sign and last: Wikipedia:Articles for deletion/Hector trevino +[2018-02-13T08:26:24.160] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:26:24.171] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T08:26:24.298] [INFO] cheese - inserting 1000 documents. first: Loucks and last: Paul Wright (Archdeacon of Bromley & Bexley) +[2018-02-13T08:26:24.333] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:26:24.333] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T08:26:24.445] [INFO] cheese - inserting 1000 documents. first: Walking with Monsters - Life Before the Dinosaurs and last: Category:Ethnic groups in the Maldives +[2018-02-13T08:26:24.465] [INFO] cheese - batch complete in: 1.198 secs +[2018-02-13T08:26:24.488] [INFO] cheese - inserting 1000 documents. first: Western Digital and last: Absolute Humidity +[2018-02-13T08:26:24.571] [INFO] cheese - inserting 1000 documents. first: Zolta szlafmyca and last: Sabinian and Potentian +[2018-02-13T08:26:24.595] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:26:24.668] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:26:24.694] [INFO] cheese - batch complete in: 2.046 secs +[2018-02-13T08:26:24.778] [INFO] cheese - inserting 1000 documents. first: Siege of Tyana (707-708) and last: Yevgeni Maskinskov +[2018-02-13T08:26:24.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Siccness Network and last: File:Oola GAA crest.png +[2018-02-13T08:26:24.903] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:26:24.985] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:26:25.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Onedotzero and last: István Bocskay +[2018-02-13T08:26:25.250] [INFO] cheese - inserting 1000 documents. first: Occidental Tigers baseball and last: Garma Shah +[2018-02-13T08:26:25.357] [INFO] cheese - inserting 1000 documents. first: Hy Eisman and last: Congenital lacrimal duct obstruction +[2018-02-13T08:26:25.366] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:26:25.443] [INFO] cheese - inserting 1000 documents. first: Category:Football venues in the Maldives and last: Thyas coronata +[2018-02-13T08:26:25.458] [INFO] cheese - batch complete in: 1.124 secs +[2018-02-13T08:26:25.584] [INFO] cheese - batch complete in: 1.251 secs +[2018-02-13T08:26:25.586] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:26:25.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:New contributors' help page/Archive/New archive 4 and last: Wusta +[2018-02-13T08:26:25.743] [INFO] cheese - inserting 1000 documents. first: Manchester Hospital for Diseases of Children and last: Alexis Remizov +[2018-02-13T08:26:25.791] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T08:26:25.895] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:26:25.905] [INFO] cheese - inserting 1000 documents. first: Template:Split2/sandbox and last: Yuli Railway +[2018-02-13T08:26:26.110] [INFO] cheese - batch complete in: 1.207 secs +[2018-02-13T08:26:26.117] [INFO] cheese - inserting 1000 documents. first: F. Max-Mueller and last: Carly Corinthos and Sonny Corinthos +[2018-02-13T08:26:26.221] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T08:26:26.288] [INFO] cheese - inserting 1000 documents. first: Garmasha and last: Wikipedia:WikiProject Spam/LinkReports/latinum.org.uk +[2018-02-13T08:26:26.339] [INFO] cheese - inserting 1000 documents. first: Municipalities of Hungary and last: Wikipedia:WikiProject Spam/LinkReports/uggsmvp.com +[2018-02-13T08:26:26.420] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:26:26.498] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:26:26.519] [INFO] cheese - inserting 1000 documents. first: Popkart and last: Jaden Smith +[2018-02-13T08:26:26.654] [INFO] cheese - batch complete in: 1.194 secs +[2018-02-13T08:26:26.691] [INFO] cheese - inserting 1000 documents. first: Kaertnertortheater and last: Martin Kahler +[2018-02-13T08:26:26.722] [INFO] cheese - inserting 1000 documents. first: TrSS St Patrick (1906) and last: Wikipedia:FILM/MOS +[2018-02-13T08:26:26.831] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:26:26.836] [INFO] cheese - inserting 1000 documents. first: Sir Oliver Napier and last: Ngong +[2018-02-13T08:26:26.891] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:26:26.964] [INFO] cheese - inserting 1000 documents. first: Category:1899 establishments in New Zealand and last: Peter Daniel (footballer, born 1946) +[2018-02-13T08:26:27.059] [INFO] cheese - batch complete in: 1.475 secs +[2018-02-13T08:26:27.078] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:26:27.286] [INFO] cheese - inserting 1000 documents. first: Eliska krasnohorska and last: Rontgen (crater) +[2018-02-13T08:26:27.337] [INFO] cheese - inserting 1000 documents. first: London Metal Exchange and last: Mam'zelle Champagne +[2018-02-13T08:26:27.350] [INFO] cheese - inserting 1000 documents. first: Category:Ordination of women and last: Template:Infobox Weather/colp +[2018-02-13T08:26:27.349] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:26:27.447] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:26:27.479] [INFO] cheese - inserting 1000 documents. first: Category:1922 in the Dutch East Indies and last: Category:Musicians from Long Beach, California +[2018-02-13T08:26:27.505] [INFO] cheese - inserting 1000 documents. first: File:Red 2007 gtcs front.jpg and last: Rigo 95 +[2018-02-13T08:26:27.647] [INFO] cheese - batch complete in: 2.952 secs +[2018-02-13T08:26:27.663] [INFO] cheese - inserting 1000 documents. first: Schwarzenbach (surname) and last: Finch (car) +[2018-02-13T08:26:27.676] [INFO] cheese - batch complete in: 1.022 secs +[2018-02-13T08:26:27.714] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:26:27.773] [INFO] cheese - inserting 1000 documents. first: Perrault’s Colonnade and last: Tieling station +[2018-02-13T08:26:27.864] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:26:28.016] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:26:28.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Marginated Tortoise and last: Da Luan Dou sumatusiyu burazazu X +[2018-02-13T08:26:28.059] [INFO] cheese - inserting 1000 documents. first: Sensory processing and last: Sullan Proscriptions +[2018-02-13T08:26:28.154] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:26:28.249] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T08:26:28.517] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Primates/Project banner and last: Oziljak +[2018-02-13T08:26:28.550] [INFO] cheese - inserting 1000 documents. first: Category:Yugoslav diaspora by country and last: Fairbanks High School, Milford Center +[2018-02-13T08:26:28.556] [INFO] cheese - inserting 1000 documents. first: Portal:NASCAR/Did you know/34 and last: Bidak-e Olya +[2018-02-13T08:26:28.594] [INFO] cheese - inserting 1000 documents. first: Thutmoid Dynasty and last: File:Mihail 1997.jpg +[2018-02-13T08:26:28.595] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T08:26:28.601] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Weather/colpastel and last: 2009 German Formula Three Championship +[2018-02-13T08:26:28.667] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:26:28.686] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:26:28.713] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:26:28.716] [INFO] cheese - batch complete in: 1.269 secs +[2018-02-13T08:26:28.747] [INFO] cheese - inserting 1000 documents. first: File:Captain Philippines and Boy Pinoy poster.jpg and last: Total known mass +[2018-02-13T08:26:28.889] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:26:28.916] [INFO] cheese - inserting 1000 documents. first: Segundas partes tambien son buenas and last: Arthur Kostler +[2018-02-13T08:26:28.943] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T08:26:29.072] [INFO] cheese - inserting 1000 documents. first: File:Margot Frank,May 1942.JPG and last: Retrovision +[2018-02-13T08:26:29.120] [INFO] cheese - inserting 1000 documents. first: Karl von Naegeli and last: Uspantan +[2018-02-13T08:26:29.122] [INFO] cheese - inserting 1000 documents. first: Category:Singaporean expatriate actors and last: Phillies 2016 +[2018-02-13T08:26:29.136] [INFO] cheese - inserting 1000 documents. first: Hightower falls and last: Yuga Purusha +[2018-02-13T08:26:29.148] [INFO] cheese - inserting 1000 documents. first: Empty Room / Nutshell and last: Category:Mobile software stubs +[2018-02-13T08:26:29.148] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T08:26:29.149] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:26:29.227] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:26:29.238] [INFO] cheese - inserting 1000 documents. first: VWAG and last: Silver Streak (1934 film) +[2018-02-13T08:26:29.244] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:26:29.332] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T08:26:29.395] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:26:29.449] [INFO] cheese - inserting 1000 documents. first: Justin Kleiner and last: KH Kastrioti +[2018-02-13T08:26:29.512] [INFO] cheese - inserting 1000 documents. first: Institut fuer Sozialforschung and last: Ilha de Sao Sebastiao +[2018-02-13T08:26:29.527] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:26:29.573] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T08:26:29.737] [INFO] cheese - inserting 1000 documents. first: Florodora and last: Col Needham +[2018-02-13T08:26:29.739] [INFO] cheese - inserting 1000 documents. first: North Carolina Aquarium on Roanoke Island and last: Holy Spirit Catholic School California +[2018-02-13T08:26:29.785] [INFO] cheese - inserting 1000 documents. first: Dly. Princetonian and last: Category:Malaysian diaspora in China +[2018-02-13T08:26:29.789] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T08:26:29.834] [INFO] cheese - batch complete in: 2.187 secs +[2018-02-13T08:26:29.858] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:26:29.898] [INFO] cheese - inserting 1000 documents. first: Thomas Phifer and last: Template:Attached KML/Ohio State Route 186 +[2018-02-13T08:26:29.939] [INFO] cheese - inserting 1000 documents. first: Sluzhylyye lyudi and last: Spice Route +[2018-02-13T08:26:29.946] [INFO] cheese - inserting 1000 documents. first: Pindur and last: Rus Kozmonatlari +[2018-02-13T08:26:29.947] [INFO] cheese - inserting 1000 documents. first: Borskiy District and last: Anastasios Kyriakos +[2018-02-13T08:26:29.962] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:26:30.003] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:26:30.032] [INFO] cheese - inserting 1000 documents. first: Danish National Football Tournament 1919–20 and last: F.M. Scherer +[2018-02-13T08:26:30.043] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:26:30.190] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:26:30.298] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:26:30.503] [INFO] cheese - inserting 1000 documents. first: 15144 Araas and last: 21505 Bernert +[2018-02-13T08:26:30.572] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:26:30.625] [INFO] cheese - inserting 1000 documents. first: Chaldean Catholic Archdiocese of Kirkuk and last: Daniel Hartvig +[2018-02-13T08:26:30.658] [INFO] cheese - inserting 1000 documents. first: Konstantin Podkorytov and last: Portal:Agropedia/Intro +[2018-02-13T08:26:30.703] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:26:30.713] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:26:30.842] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Wolverton Town and last: Khalafabad, Gachsaran +[2018-02-13T08:26:30.863] [INFO] cheese - inserting 1000 documents. first: Karol - papież, który pozostał człowiekiem and last: Nolde Forest Environmental Educational Center +[2018-02-13T08:26:30.962] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:26:31.002] [INFO] cheese - inserting 1000 documents. first: Andrew Rawnsley and last: Wikipedia:Votes for deletion/Unbiennium +[2018-02-13T08:26:30.957] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:26:31.030] [INFO] cheese - inserting 1000 documents. first: Block-Nested-Loop and last: File:Metro 14 logo.svg +[2018-02-13T08:26:31.038] [INFO] cheese - inserting 1000 documents. first: Stade Agoe-Nyive and last: Nyirgyulaj +[2018-02-13T08:26:31.074] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:26:31.125] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:26:31.160] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:26:31.282] [INFO] cheese - inserting 1000 documents. first: Category:Members of gentlemen's clubs and last: Smithsonidrilus involutus +[2018-02-13T08:26:31.312] [INFO] cheese - inserting 1000 documents. first: File:Panty raid zh.jpg and last: File:Wikiproject LEBANON Silver Medal.png +[2018-02-13T08:26:31.412] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:26:31.501] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:26:31.553] [INFO] cheese - inserting 1000 documents. first: Hausen am Albis (Zuerich) and last: Washington Park (disambiguation) +[2018-02-13T08:26:31.601] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:26:31.654] [INFO] cheese - inserting 1000 documents. first: Golden West College and last: Enzkreis +[2018-02-13T08:26:31.671] [INFO] cheese - inserting 1000 documents. first: File:Lego Znap (logo).png and last: The Leela Palaces, Hotels and Resorts +[2018-02-13T08:26:31.673] [INFO] cheese - inserting 1000 documents. first: Constantine Corniaktos and last: File:Sticks the movie.jpg +[2018-02-13T08:26:31.802] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:26:31.809] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:26:31.823] [INFO] cheese - inserting 1000 documents. first: Summify and last: Evgeny Ostaschenko +[2018-02-13T08:26:31.839] [INFO] cheese - batch complete in: 2.005 secs +[2018-02-13T08:26:31.969] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:26:31.972] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Untriunium and last: Ole Edvart Rölvaag +[2018-02-13T08:26:31.972] [INFO] cheese - inserting 1000 documents. first: Fellini 712 and last: Annerys Victoria Vargas Valdez +[2018-02-13T08:26:32.058] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:26:32.113] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:26:32.132] [INFO] cheese - inserting 1000 documents. first: File:Wikiproject LEBANON Bronze Medal.png and last: File:Newmdpdinterceptor.JPG +[2018-02-13T08:26:32.254] [INFO] cheese - inserting 1000 documents. first: 6945 Dahlgren and last: Myrskyntuoja +[2018-02-13T08:26:32.277] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:26:32.305] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:26:32.530] [INFO] cheese - inserting 1000 documents. first: Japanese Lighthouse (Poluwat, Federated States of Micronesia) and last: Venus Barbata +[2018-02-13T08:26:32.621] [INFO] cheese - inserting 1000 documents. first: Tibicen canicularis and last: Race of champions +[2018-02-13T08:26:32.639] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:26:32.720] [INFO] cheese - inserting 1000 documents. first: Category:1964 radio dramas and last: File:Dom Reardon.png +[2018-02-13T08:26:32.748] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:26:32.810] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:26:32.860] [INFO] cheese - inserting 1000 documents. first: Time (album) and last: International Hotel (San Francisco) +[2018-02-13T08:26:32.863] [INFO] cheese - inserting 1000 documents. first: Evelyn Carrera Pichardo and last: Rupsha Bridge +[2018-02-13T08:26:32.882] [INFO] cheese - inserting 1000 documents. first: Adioryx diadema and last: GEDitCOM +[2018-02-13T08:26:32.887] [INFO] cheese - inserting 1000 documents. first: Scottish Catholic Hierarchy and last: Schuetz +[2018-02-13T08:26:32.947] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:26:33.086] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:26:33.091] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:26:33.114] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:26:33.235] [INFO] cheese - inserting 1000 documents. first: Croatian Disabled Homeland War Veterans Association and last: Fujiwara no Yoshitsune +[2018-02-13T08:26:33.292] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:26:33.390] [INFO] cheese - inserting 1000 documents. first: Lukas of Bulgaria and last: Decretales Clementis Papae VIII +[2018-02-13T08:26:33.423] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T08:26:33.438] [INFO] cheese - inserting 1000 documents. first: The Long Road Home – In Concert and last: Amtrak Downeaster +[2018-02-13T08:26:33.445] [INFO] cheese - inserting 1000 documents. first: Anciente and Secret Order of Quiet Birdmen and last: List of signers of the United States Declaration of Independence +[2018-02-13T08:26:33.523] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:26:33.551] [INFO] cheese - inserting 1000 documents. first: Herrick Corporation and last: Florence ward stiles +[2018-02-13T08:26:33.573] [INFO] cheese - inserting 1000 documents. first: Alexander Mackenzie (explorer) and last: First trimester +[2018-02-13T08:26:33.595] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:26:33.739] [INFO] cheese - inserting 1000 documents. first: File:Eric Christmas.jpg and last: Trk-A +[2018-02-13T08:26:33.755] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:26:33.803] [INFO] cheese - batch complete in: 1.964 secs +[2018-02-13T08:26:33.826] [INFO] cheese - inserting 1000 documents. first: Religion and drugs and last: Haldane, John Burdon Sanderson +[2018-02-13T08:26:33.827] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:26:33.890] [INFO] cheese - inserting 1000 documents. first: Oscar Raymundo Benavides Larrea and last: El Boqueron (El Salvador) +[2018-02-13T08:26:33.937] [INFO] cheese - inserting 1000 documents. first: Eddie Wolf and last: Ab Gol, Kohgiluyeh and Boyer-Ahmad +[2018-02-13T08:26:33.938] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:26:33.996] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:26:34.051] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:26:34.384] [INFO] cheese - inserting 1000 documents. first: Jesus "Chucho" Sanoja and last: Gabbro Hills +[2018-02-13T08:26:34.386] [INFO] cheese - inserting 1000 documents. first: Kensington Football Club and last: File:The Vision Fcatory oficial logo.png +[2018-02-13T08:26:34.414] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T08:26:34.456] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:26:34.493] [INFO] cheese - inserting 1000 documents. first: Category:Films based on The Tempest and last: Penthus tenebrioides +[2018-02-13T08:26:34.598] [INFO] cheese - inserting 1000 documents. first: Zenwalk Linux and last: Forever In A Day +[2018-02-13T08:26:34.602] [INFO] cheese - inserting 1000 documents. first: Shlomo Helbrans and last: Boys in the Band/Hex Games +[2018-02-13T08:26:34.665] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:26:34.703] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:26:34.770] [INFO] cheese - batch complete in: 1.175 secs +[2018-02-13T08:26:34.888] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bill Ainashe and last: Wah Cantonment +[2018-02-13T08:26:34.897] [INFO] cheese - inserting 1000 documents. first: V. n. Volosinov and last: Steinbrueckenhoehle +[2018-02-13T08:26:34.900] [INFO] cheese - inserting 1000 documents. first: Spenger's Fresh Fish Grotto and last: Building at 826 North Main Street +[2018-02-13T08:26:34.938] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:26:35.018] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T08:26:35.032] [INFO] cheese - batch complete in: 1.036 secs +[2018-02-13T08:26:35.189] [INFO] cheese - inserting 1000 documents. first: Category:Keystone species and last: Reduced Level +[2018-02-13T08:26:35.222] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:26:35.360] [INFO] cheese - inserting 1000 documents. first: 1996 Philippine Basketball League season and last: Hiletinae +[2018-02-13T08:26:35.398] [INFO] cheese - inserting 1000 documents. first: Sleuth hound and last: Nikolaus zu Dohna-Schlodien +[2018-02-13T08:26:35.405] [INFO] cheese - inserting 1000 documents. first: 20305 Feliciayen and last: 7728 Giblin +[2018-02-13T08:26:35.430] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:26:35.435] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:26:35.454] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:26:35.503] [INFO] cheese - inserting 1000 documents. first: Alex Cox (musician) and last: Samantha Stephens +[2018-02-13T08:26:35.539] [INFO] cheese - inserting 1000 documents. first: Third trimester and last: Joseph Autran +[2018-02-13T08:26:35.543] [INFO] cheese - inserting 1000 documents. first: Baree, Queensland and last: Category:1836 disestablishments in Nova Scotia +[2018-02-13T08:26:35.563] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:26:35.635] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:26:35.673] [INFO] cheese - batch complete in: 1.869 secs +[2018-02-13T08:26:35.725] [INFO] cheese - inserting 1000 documents. first: James Sherwin and last: Jack Laviollette +[2018-02-13T08:26:35.731] [INFO] cheese - inserting 1000 documents. first: Serguei Grankine and last: Wenceslao Diaz +[2018-02-13T08:26:35.752] [INFO] cheese - inserting 1000 documents. first: Jamyang Khyentse Choekyi Lodroe and last: Kunten (Aargau) +[2018-02-13T08:26:35.850] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T08:26:35.868] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:26:35.900] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:26:36.027] [INFO] cheese - inserting 1000 documents. first: Category:Education in Hamilton County, Iowa and last: Category:Pan American Games competitors for Paraguay +[2018-02-13T08:26:36.090] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:26:36.131] [INFO] cheese - inserting 1000 documents. first: Ab Chenaru (disambiguation) and last: GOSH! Magazine +[2018-02-13T08:26:36.185] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:26:36.262] [INFO] cheese - inserting 1000 documents. first: Vivara and last: Aarnivalkea +[2018-02-13T08:26:36.305] [INFO] cheese - inserting 1000 documents. first: X-Posed and last: 2015 dengue outbreak in Taiwan +[2018-02-13T08:26:36.456] [INFO] cheese - inserting 1000 documents. first: 4582 Hank and last: File:Johnson Hall of Science Building (front).jpg +[2018-02-13T08:26:36.476] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:26:36.491] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:26:36.481] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:26:36.501] [INFO] cheese - inserting 1000 documents. first: Cannonball arezzo clarinets and last: Wikipedia:WikiProject Academic Journals/Danish journal list/57 +[2018-02-13T08:26:36.680] [INFO] cheese - batch complete in: 1.225 secs +[2018-02-13T08:26:36.716] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Pilot Episode and last: Lo kui +[2018-02-13T08:26:36.786] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:26:36.884] [INFO] cheese - inserting 1000 documents. first: Category:Equestrian at the 1920 Summer Olympics and last: Category:Disciples of Gautama Buddha +[2018-02-13T08:26:36.952] [INFO] cheese - inserting 1000 documents. first: Nossa Senhora dos Remedios and last: Hanina ben Teradyon +[2018-02-13T08:26:36.956] [INFO] cheese - inserting 1000 documents. first: Template:R from father and last: Category:1810s establishments in New Brunswick +[2018-02-13T08:26:36.975] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:26:37.017] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:26:37.084] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:26:37.127] [INFO] cheese - inserting 1000 documents. first: Nadia riots and last: Obergefell vs. Hodges +[2018-02-13T08:26:37.138] [INFO] cheese - inserting 1000 documents. first: Inco term and last: Category:Egyptian ethnologists +[2018-02-13T08:26:37.192] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:26:37.195] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:26:37.271] [INFO] cheese - inserting 1000 documents. first: File:Faris odeh03a.jpg and last: Coates College for Women +[2018-02-13T08:26:37.278] [INFO] cheese - inserting 1000 documents. first: Funk & Wagnalls and last: Tree warbler +[2018-02-13T08:26:37.298] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T08:26:37.381] [INFO] cheese - inserting 1000 documents. first: Cragin station and last: Servetta +[2018-02-13T08:26:37.417] [INFO] cheese - batch complete in: 1.743 secs +[2018-02-13T08:26:37.568] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:26:37.674] [INFO] cheese - inserting 1000 documents. first: Clamp Champ and last: File:Superman in Red Son.png +[2018-02-13T08:26:37.683] [INFO] cheese - inserting 1000 documents. first: Dealer Team Vauxhall and last: Valea Lungă-Ogrea +[2018-02-13T08:26:37.751] [INFO] cheese - inserting 1000 documents. first: Category:1817 in New Brunswick and last: Category:2000–01 Southern Conference men's basketball season +[2018-02-13T08:26:37.754] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:26:37.769] [INFO] cheese - inserting 1000 documents. first: Araguita and last: Urliesu River +[2018-02-13T08:26:37.754] [INFO] cheese - inserting 1000 documents. first: Scuola Italiana di Tehran and last: Juan Carlos López Martínez +[2018-02-13T08:26:37.809] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T08:26:37.805] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:26:37.947] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:26:37.968] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:26:38.029] [INFO] cheese - inserting 1000 documents. first: Template:Infobox martial art and last: John Brush +[2018-02-13T08:26:38.086] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:26:38.154] [INFO] cheese - inserting 1000 documents. first: Finspang Castle and last: Fort Beasejour +[2018-02-13T08:26:38.217] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T08:26:38.447] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Liv Ullmann and last: Avid Champion +[2018-02-13T08:26:38.531] [INFO] cheese - inserting 1000 documents. first: The Adam Carolla Show (terrestrial radio) and last: File:Children's Museum of Winston-Salem logo.GIF +[2018-02-13T08:26:38.557] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:26:38.576] [INFO] cheese - inserting 1000 documents. first: File:Loc-Agra.png and last: Lajedo, Brazil +[2018-02-13T08:26:38.583] [INFO] cheese - inserting 1000 documents. first: McDonalds, North Carolina and last: 4703 Kagoshima +[2018-02-13T08:26:38.639] [INFO] cheese - inserting 1000 documents. first: Jorge Echavarría and last: Carter's buttercup +[2018-02-13T08:26:38.689] [INFO] cheese - inserting 1000 documents. first: Template:2000–01 Southern Conference men's basketball standings and last: Category:2008–09 in Luxembourgian football +[2018-02-13T08:26:38.695] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:26:38.741] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:26:38.781] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:26:38.876] [INFO] cheese - inserting 1000 documents. first: Debt negotiation and last: S^ +[2018-02-13T08:26:38.891] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:26:38.894] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:26:38.998] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:26:39.260] [INFO] cheese - inserting 1000 documents. first: Stellar association and last: Hessians +[2018-02-13T08:26:39.311] [INFO] cheese - inserting 1000 documents. first: Charya and last: File:HeflinOKdiary03.jpg +[2018-02-13T08:26:39.423] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:26:39.430] [INFO] cheese - batch complete in: 2.012 secs +[2018-02-13T08:26:39.450] [INFO] cheese - inserting 1000 documents. first: Argentina National Congress Building and last: Wikipedia:Meetup/Mumbai/Mumbai26 +[2018-02-13T08:26:39.545] [INFO] cheese - inserting 1000 documents. first: Shadiman Baratashvili and last: TATA STEEL +[2018-02-13T08:26:39.558] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:26:39.570] [INFO] cheese - inserting 1000 documents. first: Athletic Association of the Greater Public Schools of New South Wales and last: Apagón +[2018-02-13T08:26:39.597] [INFO] cheese - inserting 1000 documents. first: Fourth constituency for French residents overseas and last: W.H. Morgan House +[2018-02-13T08:26:39.662] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:26:39.693] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:26:39.779] [INFO] cheese - inserting 1000 documents. first: Devonte Hynes and last: Bristol Type 407 +[2018-02-13T08:26:39.799] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:26:39.908] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:26:40.078] [INFO] cheese - inserting 1000 documents. first: File:Calotropisgigantea.jpg and last: File:Politiciansdinner.jpg +[2018-02-13T08:26:40.136] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:26:40.226] [INFO] cheese - inserting 1000 documents. first: 7991 Kaguyahime and last: US Jeanne d'Arc Carquefou +[2018-02-13T08:26:40.238] [INFO] cheese - inserting 1000 documents. first: Bergen National Academy of the Arts and last: Ecole Suedoise de Paris +[2018-02-13T08:26:40.345] [INFO] cheese - inserting 1000 documents. first: File:Tougen no Fue.jpg and last: Yogventures! +[2018-02-13T08:26:40.351] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:26:40.420] [INFO] cheese - batch complete in: 1.677 secs +[2018-02-13T08:26:40.528] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:26:40.601] [INFO] cheese - inserting 1000 documents. first: Gorno altai assr and last: Philorhizus +[2018-02-13T08:26:40.601] [INFO] cheese - inserting 1000 documents. first: File:RedShoulderedHawk.jpg and last: Universal rule +[2018-02-13T08:26:40.731] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:26:40.831] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:26:41.072] [INFO] cheese - inserting 1000 documents. first: Mana Tatsumiya and last: Template:Amerie +[2018-02-13T08:26:41.169] [INFO] cheese - inserting 1000 documents. first: Woodward Island (California) and last: Wikipedia:WikiProject Spam/LinkReports/uzeit.ru +[2018-02-13T08:26:41.313] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic Azerbaijani screenwriters and last: Darren Fisher +[2018-02-13T08:26:41.317] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T08:26:41.429] [INFO] cheese - inserting 1000 documents. first: Oleksandr Kratov and last: Template:Bolivia-diplomat-stub +[2018-02-13T08:26:41.481] [INFO] cheese - batch complete in: 1.345 secs +[2018-02-13T08:26:41.587] [INFO] cheese - inserting 1000 documents. first: Democracy: An American Novel and last: FBI Ten Most Wanted Fugitives +[2018-02-13T08:26:41.616] [INFO] cheese - inserting 1000 documents. first: Civita castelana and last: Michael wycoff +[2018-02-13T08:26:41.610] [INFO] cheese - batch complete in: 1.259 secs +[2018-02-13T08:26:41.675] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T08:26:41.749] [INFO] cheese - batch complete in: 1.328 secs +[2018-02-13T08:26:41.813] [INFO] cheese - inserting 1000 documents. first: ECSA (disambiguation) and last: Molla Hadi Sabzevari +[2018-02-13T08:26:41.891] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:26:41.878] [INFO] cheese - batch complete in: 2.448 secs +[2018-02-13T08:26:42.063] [INFO] cheese - inserting 1000 documents. first: Turf moor and last: Unionist Party (South Africa) +[2018-02-13T08:26:42.188] [INFO] cheese - batch complete in: 1.457 secs +[2018-02-13T08:26:42.242] [INFO] cheese - inserting 1000 documents. first: The Witman Boys and last: Salem Witches(NEL) +[2018-02-13T08:26:42.259] [INFO] cheese - inserting 1000 documents. first: Philosophy of Architecture and last: Parachaetolopha ornatipennis +[2018-02-13T08:26:42.327] [INFO] cheese - inserting 1000 documents. first: Jim Brown (politician) and last: File:Cg sanga balende.gif +[2018-02-13T08:26:42.331] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:26:42.334] [INFO] cheese - inserting 1000 documents. first: Sail sign of the elbow and last: Princess Luisa Maria, Archduchess of Austria-Este +[2018-02-13T08:26:42.353] [INFO] cheese - inserting 1000 documents. first: Čevljarski Bridge and last: Les Rhinoceros +[2018-02-13T08:26:42.390] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:26:42.466] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:26:42.489] [INFO] cheese - batch complete in: 1.172 secs +[2018-02-13T08:26:42.500] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:26:42.630] [INFO] cheese - inserting 1000 documents. first: School of Saint Anthony and last: Billy Garland (Ex Black Panther) +[2018-02-13T08:26:42.824] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:26:42.928] [INFO] cheese - inserting 1000 documents. first: Category:1977 in military history and last: Urosevac District +[2018-02-13T08:26:43.029] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:26:43.172] [INFO] cheese - inserting 1000 documents. first: 2012 Indonesian Movie Awards and last: Category:13 BC deaths +[2018-02-13T08:26:43.209] [INFO] cheese - inserting 1000 documents. first: La Ville dont le prince est un enfant and last: Wikipedia:Reference desk/Archives/Mathematics/2009 September 24 +[2018-02-13T08:26:43.324] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:26:43.364] [INFO] cheese - inserting 1000 documents. first: Category:Women's national rugby league teams and last: Category:1876 in the British Empire +[2018-02-13T08:26:43.418] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:26:43.451] [INFO] cheese - inserting 1000 documents. first: File:Coveralbumbig.jpg and last: Template:Lang-Urdu1 +[2018-02-13T08:26:43.460] [INFO] cheese - inserting 1000 documents. first: Dies Bildnis ist bezaubernd schoen and last: Jupitergigantensaule +[2018-02-13T08:26:43.527] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:26:43.580] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T08:26:43.591] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T08:26:43.753] [INFO] cheese - inserting 1000 documents. first: Category:Junior-heavyweight boxers and last: Indians in Finland +[2018-02-13T08:26:43.782] [INFO] cheese - inserting 1000 documents. first: Six Pack (Record) and last: Anton Rogan +[2018-02-13T08:26:43.855] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:26:43.867] [INFO] cheese - batch complete in: 1.679 secs +[2018-02-13T08:26:43.898] [INFO] cheese - inserting 1000 documents. first: Mendonca, Sao Paulo and last: 1819 Laputa +[2018-02-13T08:26:43.933] [INFO] cheese - inserting 1000 documents. first: Deformable bodies and last: Pandava +[2018-02-13T08:26:44.000] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:26:44.065] [INFO] cheese - batch complete in: 2.187 secs +[2018-02-13T08:26:44.137] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Phil Prince and last: Wikipedia:Templates for discussion/Log/2015 October 21 +[2018-02-13T08:26:44.164] [INFO] cheese - inserting 1000 documents. first: Vicente Zarzo Pitarch and last: Wikipedia:Miscellany for deletion/User:Khalidmahmood390 +[2018-02-13T08:26:44.216] [INFO] cheese - inserting 1000 documents. first: Pathanistan and last: October (Singer) +[2018-02-13T08:26:44.259] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T08:26:44.307] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:26:44.378] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:26:44.489] [INFO] cheese - inserting 1000 documents. first: Category:Korean military personnel and last: Exaliter +[2018-02-13T08:26:44.661] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T08:26:44.725] [INFO] cheese - inserting 1000 documents. first: Pisarzowice, Bielsko-Biala County and last: 3589 Loyola +[2018-02-13T08:26:44.732] [INFO] cheese - inserting 1000 documents. first: Čmeliak and last: Mike Tatum +[2018-02-13T08:26:44.791] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:26:44.845] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:26:44.941] [INFO] cheese - inserting 1000 documents. first: Countermine System and last: Hartebeestfontein Mine +[2018-02-13T08:26:45.002] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anna Carter and last: 2006 Fed Cup +[2018-02-13T08:26:45.130] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:26:45.191] [INFO] cheese - batch complete in: 1.323 secs +[2018-02-13T08:26:45.229] [INFO] cheese - inserting 1000 documents. first: Template:Biskra-geo-stub and last: County Route 690 (Burlington County, New Jersey) +[2018-02-13T08:26:45.259] [INFO] cheese - inserting 1000 documents. first: Valeri Kazaishvili and last: Academy of Fine Arts, Istanbul +[2018-02-13T08:26:45.338] [INFO] cheese - inserting 1000 documents. first: 17358 Lozino-Lozinskij and last: 17354 Matrosov +[2018-02-13T08:26:45.350] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:26:45.393] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T08:26:45.403] [INFO] cheese - batch complete in: 1.144 secs +[2018-02-13T08:26:45.488] [INFO] cheese - inserting 1000 documents. first: Zettaliter and last: Vitebsk Air Base +[2018-02-13T08:26:45.543] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:26:45.560] [INFO] cheese - inserting 1000 documents. first: Category:North American Lacrosse League and last: File:Questionmarkcover.jpg +[2018-02-13T08:26:45.688] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:26:45.764] [INFO] cheese - inserting 1000 documents. first: Dawlat Isra'il and last: Nghe An Province, Vietnam +[2018-02-13T08:26:45.846] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T08:26:45.872] [INFO] cheese - inserting 1000 documents. first: Abdurrahman Sulaeman and last: John Michell (cricketer) +[2018-02-13T08:26:45.948] [INFO] cheese - inserting 1000 documents. first: J. Cell. Biochem. and last: Vladislavs Agurjanovs +[2018-02-13T08:26:45.949] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:26:46.018] [INFO] cheese - inserting 1000 documents. first: The One (Deuce Song) and last: Category:Rapid transit stations in the United States by operator +[2018-02-13T08:26:46.050] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:26:46.087] [INFO] cheese - inserting 1000 documents. first: Gateaux derivative and last: WEZB-FM +[2018-02-13T08:26:46.172] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:26:46.245] [INFO] cheese - inserting 1000 documents. first: Annette Huber-Klawitter and last: Template:User from Arkansas/doc +[2018-02-13T08:26:46.254] [INFO] cheese - inserting 1000 documents. first: 21089 Mochizuki and last: 5507 Niijima +[2018-02-13T08:26:46.270] [INFO] cheese - inserting 1000 documents. first: The Girl Was Young and last: Avie Tevanian +[2018-02-13T08:26:46.281] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:26:46.298] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:26:46.330] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:26:46.351] [INFO] cheese - inserting 1000 documents. first: Giedo van der Garde and last: Providence & Worcester Railroad +[2018-02-13T08:26:46.449] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:26:46.507] [INFO] cheese - batch complete in: 2.442 secs +[2018-02-13T08:26:46.667] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Freddy Powers and last: Template:Did you know nominations/Ecco Ripley +[2018-02-13T08:26:46.705] [INFO] cheese - inserting 1000 documents. first: Economy of People's Republic of China and last: Radwansky +[2018-02-13T08:26:46.734] [INFO] cheese - inserting 1000 documents. first: 2972 Niilo and last: Naval Air Station Niagara Falls +[2018-02-13T08:26:46.764] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:26:46.789] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:26:46.819] [INFO] cheese - inserting 1000 documents. first: Nilalang and last: File:League of Legends Champions Korea logo.jpg +[2018-02-13T08:26:46.839] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:26:46.937] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:26:47.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/burberrybluelabelstore.com and last: File:Travel Sentry Mark.jpg +[2018-02-13T08:26:47.078] [INFO] cheese - inserting 1000 documents. first: File:Total Eclipse.jpg and last: Gândul +[2018-02-13T08:26:47.079] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:26:47.116] [INFO] cheese - inserting 1000 documents. first: Category:Women's cricket in Australia and last: Shatalovo (air base) +[2018-02-13T08:26:47.178] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:26:47.184] [INFO] cheese - inserting 1000 documents. first: 冯友兰 and last: Philippines–European Union relations +[2018-02-13T08:26:47.195] [INFO] cheese - inserting 1000 documents. first: Category:Cockroach stubs and last: Less Than Jake (Band) +[2018-02-13T08:26:47.212] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:26:47.290] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:26:47.304] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:26:47.411] [INFO] cheese - inserting 1000 documents. first: Yourka Reserve and last: 21471 Pavelchvykov +[2018-02-13T08:26:47.453] [INFO] cheese - inserting 1000 documents. first: Monique Di Mattina and last: Chinese actresses +[2018-02-13T08:26:47.487] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:26:47.561] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:26:47.619] [INFO] cheese - inserting 1000 documents. first: The Orbis School and last: Member of the State Council +[2018-02-13T08:26:47.699] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:26:47.799] [INFO] cheese - inserting 1000 documents. first: File:Johnchristie.jpg and last: Skirtingboards +[2018-02-13T08:26:47.883] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:26:47.906] [INFO] cheese - inserting 1000 documents. first: Category:Geréb family and last: Category:PFC Chernomorets Burgas Sofia players +[2018-02-13T08:26:47.922] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of indexes to tables of contents and last: RSD +[2018-02-13T08:26:47.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Food metaphors for race and last: Leopold, Count of Daun +[2018-02-13T08:26:47.987] [INFO] cheese - inserting 1000 documents. first: 16274 Pavlica and last: 2457 Rublyov +[2018-02-13T08:26:48.000] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:26:48.011] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:26:48.078] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:26:48.090] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:26:48.124] [INFO] cheese - inserting 1000 documents. first: National Anthem of the Republic of China and last: Li Tieh Kuai +[2018-02-13T08:26:48.245] [INFO] cheese - inserting 1000 documents. first: Gillian Lester and last: Władysław Wankie +[2018-02-13T08:26:48.276] [INFO] cheese - batch complete in: 1.769 secs +[2018-02-13T08:26:48.348] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:26:48.353] [INFO] cheese - inserting 1000 documents. first: 1963–64 Czechoslovak Extraliga season and last: File:Thing a Week Three.jpg +[2018-02-13T08:26:48.398] [INFO] cheese - inserting 1000 documents. first: 4286 Rubtsov and last: Glos Pana +[2018-02-13T08:26:48.473] [INFO] cheese - inserting 1000 documents. first: Belvidere (structure) and last: Thalheim (Aargau) +[2018-02-13T08:26:48.482] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T08:26:48.508] [INFO] cheese - inserting 1000 documents. first: Gary Weight and last: Plica palpebronasalis +[2018-02-13T08:26:48.522] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:26:48.537] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:26:48.629] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:26:48.694] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 20th century in Northern Rhodesia and last: Wikipedia:WikiProject Spam/LinkReports/skyrecordsent.com +[2018-02-13T08:26:48.785] [INFO] cheese - inserting 1000 documents. first: EmsAuenWeg and last: File:Islands-arcadefire-mixing-at-jamies.jpg +[2018-02-13T08:26:48.785] [INFO] cheese - inserting 1000 documents. first: Portal:Thailand/Selected article/29 and last: Vandœuvre +[2018-02-13T08:26:48.800] [INFO] cheese - inserting 1000 documents. first: Battle of Rawdat Muhanna and last: Distrito de Viseu +[2018-02-13T08:26:48.818] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T08:26:48.846] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T08:26:48.874] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:26:48.963] [INFO] cheese - inserting 1000 documents. first: 2010 Oklahoma earthquake and last: Jonathan Agnew (cricketer) +[2018-02-13T08:26:49.054] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:26:49.122] [INFO] cheese - inserting 1000 documents. first: File:Belluswi.jpg and last: Sturmgeschutz III Ausf. G +[2018-02-13T08:26:49.130] [INFO] cheese - inserting 1000 documents. first: Rüttenen (Solothurn) and last: Pieterlen (Bern) +[2018-02-13T08:26:49.162] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T08:26:49.171] [INFO] cheese - inserting 1000 documents. first: Embassy of the United States, Juba and last: Sigma coordinate system +[2018-02-13T08:26:49.199] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T08:26:49.236] [INFO] cheese - inserting 1000 documents. first: List of Murder, She Wrote characters and last: EVA Airways Corp +[2018-02-13T08:26:49.318] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:26:49.386] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:26:49.418] [INFO] cheese - inserting 1000 documents. first: Josephine Bakhita and last: Ruffushi +[2018-02-13T08:26:49.450] [INFO] cheese - inserting 1000 documents. first: Euroleague 1994-95 and last: Wunderkind (fashion) +[2018-02-13T08:26:49.462] [INFO] cheese - inserting 1000 documents. first: Banici and last: Konrad IV +[2018-02-13T08:26:49.501] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:26:49.566] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T08:26:49.636] [INFO] cheese - inserting 1000 documents. first: Plagne (Bern) and last: Emmanuel Santos +[2018-02-13T08:26:49.641] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:26:49.733] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:26:49.816] [INFO] cheese - inserting 1000 documents. first: Deux Fois and last: Ali Reza Razm Hosseini +[2018-02-13T08:26:49.875] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:26:49.903] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/soloaja.com and last: Category:Converts to Judaism from Protestantism +[2018-02-13T08:26:49.907] [INFO] cheese - inserting 1000 documents. first: Operation Weserubung order of battle and last: Ni Freud, Ni Tu Mama +[2018-02-13T08:26:49.971] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T08:26:49.980] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:26:50.020] [INFO] cheese - inserting 1000 documents. first: Category:1986 in Arizona and last: Christianity in Qinghai +[2018-02-13T08:26:50.022] [INFO] cheese - inserting 1000 documents. first: Slovenian music and last: Chicago Sun-Times +[2018-02-13T08:26:50.113] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:26:50.168] [INFO] cheese - batch complete in: 1.891 secs +[2018-02-13T08:26:50.187] [INFO] cheese - inserting 1000 documents. first: Baila Conmigo (Adelén song) and last: Vijaya Bhaskara Reddy +[2018-02-13T08:26:50.208] [INFO] cheese - inserting 1000 documents. first: Vaikaramuraidhoo and last: Shark (moth) +[2018-02-13T08:26:50.286] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:26:50.298] [INFO] cheese - inserting 1000 documents. first: Lietuvos teises universitetas and last: Religious minorities in Greece +[2018-02-13T08:26:50.307] [INFO] cheese - inserting 1000 documents. first: Martin Stone (wrestler) and last: George de La Poer Beresford, 1st Marquess of Waterford +[2018-02-13T08:26:50.310] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:26:50.350] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T08:26:50.349] [INFO] cheese - inserting 1000 documents. first: Palazzo Papadopoli and last: Gulfstream Pictures +[2018-02-13T08:26:50.412] [INFO] cheese - inserting 1000 documents. first: Marx tér (Budapest Metro) and last: Kim Mi-ja +[2018-02-13T08:26:50.421] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:26:50.444] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:26:50.520] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:26:50.732] [INFO] cheese - inserting 1000 documents. first: Alan Pyatt and last: 2008–09 NLA season +[2018-02-13T08:26:50.855] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:26:50.933] [INFO] cheese - inserting 1000 documents. first: Secunderabad-Cantonment constituency and last: Zhegalkin normal form +[2018-02-13T08:26:50.956] [INFO] cheese - inserting 1000 documents. first: Holy Week in Taxco and last: Wet-printing +[2018-02-13T08:26:50.986] [INFO] cheese - inserting 1000 documents. first: Machine Gun Funk and last: Domenico Leoni +[2018-02-13T08:26:50.996] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:26:51.017] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:26:51.097] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:26:51.183] [INFO] cheese - inserting 1000 documents. first: Dragon Valor and last: Michael Yon +[2018-02-13T08:26:51.193] [INFO] cheese - inserting 1000 documents. first: SSN-716 and last: Michael Bell-Smith +[2018-02-13T08:26:51.244] [INFO] cheese - inserting 1000 documents. first: Sweet Solera Stakes and last: Adrian Branch +[2018-02-13T08:26:51.263] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:26:51.275] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T08:26:51.355] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:26:51.382] [INFO] cheese - inserting 1000 documents. first: Kyushu Kogyo Daigaku and last: James Troisi +[2018-02-13T08:26:51.392] [INFO] cheese - inserting 1000 documents. first: Category:Educational organisations in Ukraine and last: Pilate and Others +[2018-02-13T08:26:51.428] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T08:26:51.459] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:26:51.509] [INFO] cheese - inserting 1000 documents. first: Wolf herring and last: Take Me Out To The Ball Game +[2018-02-13T08:26:51.554] [INFO] cheese - inserting 1000 documents. first: Pioneers FC and last: Spithamn +[2018-02-13T08:26:51.626] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:26:51.632] [INFO] cheese - batch complete in: 1.463 secs +[2018-02-13T08:26:51.687] [INFO] cheese - inserting 1000 documents. first: Cyclophora dyschroa and last: Pataveh, Boyer-Ahmad (disambiguation) +[2018-02-13T08:26:51.725] [INFO] cheese - inserting 1000 documents. first: Dorothea Roschmann and last: BibTeKh +[2018-02-13T08:26:51.774] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:26:51.789] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T08:26:51.811] [INFO] cheese - inserting 1000 documents. first: Guigues VIII de La Tour du Pin, Dauphin de Viennois and last: Wakusei daikaijû Negadon +[2018-02-13T08:26:51.932] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:26:51.995] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mbtsshoessale.com and last: Koron (music) +[2018-02-13T08:26:52.054] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:26:52.107] [INFO] cheese - inserting 1000 documents. first: Mann-whitney u test and last: Portal:Oz/Categories +[2018-02-13T08:26:52.226] [INFO] cheese - inserting 1000 documents. first: Sutlep and last: Barlow, North Dakota +[2018-02-13T08:26:52.250] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:26:52.255] [INFO] cheese - inserting 1000 documents. first: 淡路島 and last: List of minor planets/178301–178400 +[2018-02-13T08:26:52.335] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Thomas M. Disch and last: Wikipedia:WikiProject Aviation/Contest/Submissions/Marcusmax +[2018-02-13T08:26:52.354] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:26:52.378] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:26:52.491] [INFO] cheese - batch complete in: 1.227 secs +[2018-02-13T08:26:52.605] [INFO] cheese - inserting 1000 documents. first: Template:Arona–Novara railway diagram and last: Wikipedia:WikiProject Spam/LinkReports/amazing-fiji-vacations.com +[2018-02-13T08:26:52.669] [INFO] cheese - inserting 1000 documents. first: Jul i Toyengata and last: Jewell Williams +[2018-02-13T08:26:52.692] [INFO] cheese - inserting 1000 documents. first: Kishan Singh Rathore and last: Portal:Aviation/Selected picture/33 +[2018-02-13T08:26:52.696] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:26:52.754] [INFO] cheese - inserting 1000 documents. first: Hamdy Abowgliel and last: Joanna Janét +[2018-02-13T08:26:52.771] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T08:26:52.792] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:26:52.840] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:26:52.999] [INFO] cheese - inserting 1000 documents. first: Mascara (musician) and last: Maria Gómez +[2018-02-13T08:26:53.013] [INFO] cheese - inserting 1000 documents. first: College Sadiki and last: Oswaldo Paya Sardinas +[2018-02-13T08:26:53.018] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Aviation/Contest/Submissions/MoHasanie and last: Swing (music group) +[2018-02-13T08:26:53.032] [INFO] cheese - batch complete in: 0.26 secs +[2018-02-13T08:26:53.038] [INFO] cheese - inserting 1000 documents. first: David Goloschekin and last: File:Dandelion clock.jpg +[2018-02-13T08:26:53.041] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:26:53.082] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:26:53.198] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:26:53.314] [INFO] cheese - inserting 1000 documents. first: William E. Morris and last: Aravind Eye Care Hospital +[2018-02-13T08:26:53.343] [INFO] cheese - inserting 1000 documents. first: Ryunosuke Uryu and last: Canamero +[2018-02-13T08:26:53.356] [INFO] cheese - inserting 1000 documents. first: Saljut I and last: Music terminology +[2018-02-13T08:26:53.368] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T08:26:53.391] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject United States Public Policy/Courses/Spring 2011/Media and Telecommunication Policy (Obar) and last: Category:1998 in Indiana +[2018-02-13T08:26:53.395] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:26:53.416] [INFO] cheese - inserting 1000 documents. first: Category:Fictional depictions of Abraham Lincoln in film and last: 2013 Campeonato Acreano +[2018-02-13T08:26:53.471] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:26:53.512] [INFO] cheese - batch complete in: 1.879 secs +[2018-02-13T08:26:53.561] [INFO] cheese - inserting 1000 documents. first: Constantin Alexandru Rosetti and last: Otto Bernhardt +[2018-02-13T08:26:53.562] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:26:53.646] [INFO] cheese - inserting 1000 documents. first: R City and last: Members of the New South Wales Legislative Council, 1891–1894 +[2018-02-13T08:26:53.664] [INFO] cheese - inserting 1000 documents. first: Saint-Andre-d'Hebertot and last: Hoei Nojiri +[2018-02-13T08:26:53.670] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:26:53.704] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T08:26:53.721] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:26:53.999] [INFO] cheese - inserting 1000 documents. first: File:Somefantasticplace.jpg and last: 2000 Copa Interclubes UNCAF +[2018-02-13T08:26:54.013] [INFO] cheese - inserting 1000 documents. first: Egyptair Flight 648 and last: Strange Celebrity +[2018-02-13T08:26:54.055] [INFO] cheese - inserting 1000 documents. first: Vrsac fortress and last: Clement Jannequin +[2018-02-13T08:26:54.083] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:26:54.111] [INFO] cheese - inserting 1000 documents. first: Vinītaruci and last: Bougainville Copper Ltd +[2018-02-13T08:26:54.116] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:26:54.119] [INFO] cheese - inserting 1000 documents. first: Able v. United States and last: Ait Melloul +[2018-02-13T08:26:54.140] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T08:26:54.288] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:26:54.332] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:26:54.342] [INFO] cheese - inserting 1000 documents. first: Christoph Bergner and last: Template:Pallacanestro Varese 1975-76 Euroleague champions +[2018-02-13T08:26:54.445] [INFO] cheese - inserting 1000 documents. first: Héliodore Cote and last: Category:Wikipedians contributing under Creative Commons 2.0 +[2018-02-13T08:26:54.445] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:26:54.524] [INFO] cheese - inserting 1000 documents. first: Oton Zupancic and last: Elisabeth von Schonau +[2018-02-13T08:26:54.525] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:26:54.599] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T08:26:54.774] [INFO] cheese - inserting 1000 documents. first: Portal:Scouting/Did you know.../January and last: Coathanger Antennae +[2018-02-13T08:26:54.786] [INFO] cheese - inserting 1000 documents. first: The Wall (2012 documentary film) and last: Module:Sidebar/doc +[2018-02-13T08:26:54.793] [INFO] cheese - inserting 1000 documents. first: Savo Martinovic and last: Richard Rostel +[2018-02-13T08:26:54.808] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T08:26:54.822] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:26:54.877] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T08:26:54.901] [INFO] cheese - inserting 1000 documents. first: Amr-Ibn-El-Ass and last: Category:Internments +[2018-02-13T08:26:54.954] [INFO] cheese - inserting 1000 documents. first: Ibitoke banana and last: Category:1990 in Arkansas +[2018-02-13T08:26:55.026] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:26:55.036] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:26:55.084] [INFO] cheese - inserting 1000 documents. first: Beli andeo and last: Dede Andersson +[2018-02-13T08:26:55.109] [INFO] cheese - inserting 1000 documents. first: Template:Pallacanestro Virtus Roma 1983-84 Euroleague champions and last: Ariola Japan +[2018-02-13T08:26:55.122] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T08:26:55.193] [INFO] cheese - inserting 1000 documents. first: Baillie and last: Anthony Gilbert (MP) +[2018-02-13T08:26:55.214] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:26:55.324] [INFO] cheese - inserting 1000 documents. first: Carcassonne (board game) and last: Jacqueline Lichtenberg +[2018-02-13T08:26:55.357] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:26:55.509] [INFO] cheese - inserting 1000 documents. first: Septariyanto and last: Estonia Australia relations +[2018-02-13T08:26:55.517] [INFO] cheese - batch complete in: 2.005 secs +[2018-02-13T08:26:55.544] [INFO] cheese - inserting 1000 documents. first: Lan Yue and last: File:Wind Riders-the crew 011.jpg +[2018-02-13T08:26:55.586] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T08:26:55.600] [INFO] cheese - inserting 1000 documents. first: Defense of Marriage Coalition and last: Untxillalitz +[2018-02-13T08:26:55.642] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:26:55.691] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:26:55.966] [INFO] cheese - inserting 1000 documents. first: Category:Haryana-related lists and last: Commas +[2018-02-13T08:26:55.968] [INFO] cheese - inserting 1000 documents. first: Tietz and last: Antonio Luna +[2018-02-13T08:26:55.970] [INFO] cheese - inserting 1000 documents. first: Category:1992 in Arkansas and last: Wikipedia:Sockpuppet investigations/ChahtaGal +[2018-02-13T08:26:56.038] [INFO] cheese - inserting 1000 documents. first: Saint-Onen and last: Old City Hall (Guelph) +[2018-02-13T08:26:56.060] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:26:56.097] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:26:56.132] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T08:26:56.138] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T08:26:56.183] [INFO] cheese - inserting 1000 documents. first: Nancy, Benton County and last: Laughing Irish Eyes +[2018-02-13T08:26:56.302] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:26:56.355] [INFO] cheese - inserting 1000 documents. first: Australia - Estonia relations and last: Sir William Borlase's Grammar Scool +[2018-02-13T08:26:56.388] [INFO] cheese - inserting 1000 documents. first: File:Mary05.jpg and last: Sharneyford +[2018-02-13T08:26:56.433] [INFO] cheese - inserting 1000 documents. first: Radio y Television Interamericana and last: Portal:Doctor Who/Selected story/33 +[2018-02-13T08:26:56.460] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:26:56.487] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:26:56.491] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T08:26:56.771] [INFO] cheese - inserting 1000 documents. first: Kerr-McGee Chemical Corporation and last: Al Nasr SC (Egypt) +[2018-02-13T08:26:56.834] [INFO] cheese - inserting 1000 documents. first: Al Wusta Wilayah, Sudan and last: Jose Agripino Barnet +[2018-02-13T08:26:56.838] [INFO] cheese - inserting 1000 documents. first: Beyond Foo and last: List of Yu-Gi-Oh! Duel Monsters episodes (season 4) +[2018-02-13T08:26:56.902] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:26:56.939] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T08:26:57.003] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:26:57.060] [INFO] cheese - inserting 1000 documents. first: File:ComodoDragon-Logo.png and last: David T. Griggs +[2018-02-13T08:26:57.066] [INFO] cheese - inserting 1000 documents. first: Lada Taiga and last: List of US senators from South Carolina +[2018-02-13T08:26:57.120] [INFO] cheese - inserting 1000 documents. first: Four Eyes and Six Guns and last: Senguerr River +[2018-02-13T08:26:57.195] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:26:57.255] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:26:57.312] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:26:57.347] [INFO] cheese - inserting 1000 documents. first: Sell Out (Pist.On album) and last: Spartaeinae +[2018-02-13T08:26:57.455] [INFO] cheese - inserting 1000 documents. first: Confederation Democratique des Travailleurs du Niger and last: Jean-Francois Hubert +[2018-02-13T08:26:57.476] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:26:57.522] [INFO] cheese - inserting 1000 documents. first: Methuen Treaty and last: Harve Bennett +[2018-02-13T08:26:57.547] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:26:57.644] [INFO] cheese - batch complete in: 2.127 secs +[2018-02-13T08:26:57.659] [INFO] cheese - inserting 1000 documents. first: Maurice Crum Jr. and last: AFL Western Conference +[2018-02-13T08:26:57.785] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:26:57.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Securxx and last: Draft:David J. Sugarbaker +[2018-02-13T08:26:57.855] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Crusades task force/Resources and last: The Bed-Sit Girl +[2018-02-13T08:26:57.886] [INFO] cheese - inserting 1000 documents. first: International Society for Soil Mechanics and Geotechnical Engineering and last: Category:Pico-Union, Los Angeles +[2018-02-13T08:26:57.912] [INFO] cheese - inserting 1000 documents. first: List of Yu-Gi-Oh! Duel Monsters episodes (season 3) and last: Category:2004 in Delaware +[2018-02-13T08:26:57.942] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:26:57.948] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T08:26:58.045] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:26:58.070] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:26:58.227] [INFO] cheese - inserting 1000 documents. first: Special Emergency Response Team and last: Phantom access +[2018-02-13T08:26:58.349] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:26:58.367] [INFO] cheese - inserting 1000 documents. first: Category:Bell Labs Unices and last: Joan V. Hartley +[2018-02-13T08:26:58.407] [INFO] cheese - inserting 1000 documents. first: AFL East and last: Treaty of Salisbury +[2018-02-13T08:26:58.436] [INFO] cheese - inserting 1000 documents. first: Jason Rae (musician) and last: Kochel catalogue +[2018-02-13T08:26:58.469] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:26:58.536] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:26:58.548] [INFO] cheese - inserting 1000 documents. first: File:The Lucky Star (film).jpg and last: Jeff Littlejohn +[2018-02-13T08:26:58.548] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:26:58.653] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:26:58.751] [INFO] cheese - inserting 1000 documents. first: Regimen Sanitatis Salerni and last: Bonari (disambiguation) +[2018-02-13T08:26:58.814] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:26:58.853] [INFO] cheese - inserting 1000 documents. first: Antoine de Pas de Feuquieres and last: Thomas, N. G. +[2018-02-13T08:26:58.867] [INFO] cheese - inserting 1000 documents. first: IFAF World Cup and last: Goody's +[2018-02-13T08:26:58.911] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T08:26:58.983] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:26:59.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fender bender and last: John A. Scali +[2018-02-13T08:26:59.194] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australian military history articles by quality/8 and last: Wikipedia:WikiProject Military history/World War I task force/Centenary drive +[2018-02-13T08:26:59.266] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:26:59.280] [INFO] cheese - inserting 1000 documents. first: Hassan Rajab Khatib and last: Hekate (disambiguation) +[2018-02-13T08:26:59.289] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:26:59.317] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dpiworx/BeGoodtoYourPlanet.com and last: Wikipedia:Articles for deletion/TechSandBox +[2018-02-13T08:26:59.389] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:26:59.428] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:26:59.452] [INFO] cheese - inserting 1000 documents. first: Vivir con alegria and last: Paraul lui Toader +[2018-02-13T08:26:59.492] [INFO] cheese - inserting 1000 documents. first: Category:1880 in Texas and last: Greece – Austria relations +[2018-02-13T08:26:59.549] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:26:59.636] [INFO] cheese - inserting 1000 documents. first: Category:Natural disasters in South Sudan and last: Erin Silver (character) +[2018-02-13T08:26:59.645] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:26:59.702] [INFO] cheese - inserting 1000 documents. first: Paul Émile Lecoq de Boisbaudran and last: Regent's Park +[2018-02-13T08:26:59.737] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:26:59.851] [INFO] cheese - inserting 1000 documents. first: Mueller's maneuver and last: Timothy Koogle +[2018-02-13T08:26:59.864] [INFO] cheese - batch complete in: 2.22 secs +[2018-02-13T08:26:59.886] [INFO] cheese - inserting 1000 documents. first: Alexandrovca and last: Wikipedia:WikiProject Outline of knowledge/Drafts/Outline of databases +[2018-02-13T08:26:59.893] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T08:26:59.985] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:27:00.015] [INFO] cheese - inserting 1000 documents. first: Category:Art Nouveau architecture in Strasbourg and last: Idris Lewis +[2018-02-13T08:27:00.016] [INFO] cheese - inserting 1000 documents. first: Church grim and last: Wikipedia:Votes for deletion/Log/2005 February 7 +[2018-02-13T08:27:00.142] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:27:00.155] [INFO] cheese - inserting 1000 documents. first: List of NSW TrainLink train routes and last: Very Warm for May +[2018-02-13T08:27:00.201] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:27:00.246] [INFO] cheese - inserting 1000 documents. first: Greece Austria relations and last: Shay Tards +[2018-02-13T08:27:00.284] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:27:00.354] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:27:00.387] [INFO] cheese - inserting 1000 documents. first: Corazon Iluminado and last: Uruemci +[2018-02-13T08:27:00.476] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T08:27:00.520] [INFO] cheese - inserting 1000 documents. first: Fluff (fiction) and last: Acupunct Med. +[2018-02-13T08:27:00.668] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:27:00.882] [INFO] cheese - inserting 1000 documents. first: Caenurgia togataria and last: C. Allin Cornell +[2018-02-13T08:27:01.037] [INFO] cheese - inserting 1000 documents. first: Francois de Bourbon, Count of Enghien and last: Aanekoski bus disaster +[2018-02-13T08:27:01.045] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:27:01.144] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:27:01.166] [INFO] cheese - inserting 1000 documents. first: Atherton Line and last: Tang-e Sar Asiab +[2018-02-13T08:27:01.189] [INFO] cheese - inserting 1000 documents. first: Sinișa Dragin and last: Pi1 Columbae +[2018-02-13T08:27:01.203] [INFO] cheese - inserting 1000 documents. first: Intrastate airline and last: Zenithar +[2018-02-13T08:27:01.270] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:27:01.333] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:27:01.368] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T08:27:01.402] [INFO] cheese - inserting 1000 documents. first: Portal:Netherlands/Featured article and last: Hypophosphorous acid +[2018-02-13T08:27:01.492] [INFO] cheese - inserting 1000 documents. first: Schumann resonance and last: Rolando Reategui +[2018-02-13T08:27:01.503] [INFO] cheese - batch complete in: 1.361 secs +[2018-02-13T08:27:01.550] [INFO] cheese - batch complete in: 0.405 secs +[2018-02-13T08:27:01.635] [INFO] cheese - inserting 1000 documents. first: Category:Israeli football club seasons and last: Donald Attig +[2018-02-13T08:27:01.638] [INFO] cheese - inserting 1000 documents. first: Diary of a Wimpy Kid 3 and last: Wikipedia:Articles for deletion/Paris 2005 +[2018-02-13T08:27:01.693] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:27:01.752] [INFO] cheese - inserting 1000 documents. first: David Croft (TV producer) and last: Mad Max +[2018-02-13T08:27:01.777] [INFO] cheese - inserting 1000 documents. first: Eusebius Fermendzin and last: Union Europeenne de Radio-Television +[2018-02-13T08:27:01.785] [INFO] cheese - batch complete in: 1.117 secs +[2018-02-13T08:27:01.837] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T08:27:01.847] [INFO] cheese - inserting 1000 documents. first: Tang Asiab-e Ajam and last: Qaleh Chenan Rural District +[2018-02-13T08:27:01.872] [INFO] cheese - inserting 1000 documents. first: Kara Pryor and last: File:CAN-S1930c-Bank of Prince Edward Island-2 Dollars (1877).jpg +[2018-02-13T08:27:01.906] [INFO] cheese - inserting 1000 documents. first: Portal:European Union/Selected article/10 and last: Javerlhac +[2018-02-13T08:27:01.910] [INFO] cheese - batch complete in: 2.046 secs +[2018-02-13T08:27:01.963] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:27:01.970] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:27:02.038] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:27:02.254] [INFO] cheese - inserting 1000 documents. first: Barons of Narpio and last: A'mak-i Hayal +[2018-02-13T08:27:02.326] [INFO] cheese - inserting 1000 documents. first: Timeline of the 2004 Pacific typhoon season and last: Samuel Taylor Marshall +[2018-02-13T08:27:02.347] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T08:27:02.510] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T08:27:02.516] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tupac-shakur-life.skyblog.com and last: File:Civilization Poster cropped.jpg +[2018-02-13T08:27:02.651] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:27:02.673] [INFO] cheese - inserting 1000 documents. first: Estación Central railway station and last: Bishop of Galway and Kilmacduagh +[2018-02-13T08:27:02.776] [INFO] cheese - inserting 1000 documents. first: Swieta Katarzyna, Lower Silesian Voivodeship and last: Wikipedia:Articles for deletion/List of World War II veterans +[2018-02-13T08:27:02.786] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:27:02.796] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T08:27:02.858] [INFO] cheese - inserting 1000 documents. first: File:CAN-S1931c-Bank of Prince Edward Island-5 Dollars (1877).jpg and last: Wikipedia:WikiProject Spam/Local/visakhapatnamairport.com +[2018-02-13T08:27:02.941] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/brinno.com and last: Phước Thành province +[2018-02-13T08:27:02.969] [INFO] cheese - inserting 1000 documents. first: Javerlhac, France and last: Ziaur Rahman (kabaddi) +[2018-02-13T08:27:02.996] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:27:03.035] [INFO] cheese - inserting 1000 documents. first: Lupsa River (Olt) and last: Jianliang "Jenrya" Lee +[2018-02-13T08:27:03.075] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T08:27:03.084] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T08:27:03.105] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:27:03.304] [INFO] cheese - inserting 1000 documents. first: Template:User English descent and last: Národní +[2018-02-13T08:27:03.389] [INFO] cheese - inserting 1000 documents. first: Hjoervard Ylfing and last: Francois-Andre Isambert +[2018-02-13T08:27:03.435] [INFO] cheese - inserting 1000 documents. first: David Linton and last: Home (Procol Harum album) +[2018-02-13T08:27:03.436] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:27:03.454] [INFO] cheese - inserting 1000 documents. first: CIT, Rajnandgoan and last: File:Finnthehalfgreat.jpg +[2018-02-13T08:27:03.488] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T08:27:03.668] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:27:03.747] [INFO] cheese - batch complete in: 1.237 secs +[2018-02-13T08:27:03.781] [INFO] cheese - inserting 1000 documents. first: Herodias and last: Lisle (town), Broome County, New York +[2018-02-13T08:27:03.823] [INFO] cheese - inserting 1000 documents. first: Neath FC and last: Postal Museum (Taiwan) +[2018-02-13T08:27:04.179] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Featured topics and last: Borredà +[2018-02-13T08:27:04.192] [INFO] cheese - batch complete in: 2.282 secs +[2018-02-13T08:27:04.221] [INFO] cheese - inserting 1000 documents. first: Children's Museum of Taipei and last: Health care in singapore +[2018-02-13T08:27:04.221] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:27:04.303] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:27:04.496] [INFO] cheese - batch complete in: 1.391 secs +[2018-02-13T08:27:04.661] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Persib Bandung and last: ATCvet code QA16 +[2018-02-13T08:27:04.742] [INFO] cheese - batch complete in: 1.306 secs +[2018-02-13T08:27:04.753] [INFO] cheese - inserting 1000 documents. first: File:Mama Runs Wild poster.jpg and last: Cassa di Risparmio di Fabriano e Cupramontana +[2018-02-13T08:27:04.757] [INFO] cheese - inserting 1000 documents. first: Parc des Sports Rene Froger and last: Template:Wally-nav +[2018-02-13T08:27:04.814] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:27:04.876] [INFO] cheese - inserting 1000 documents. first: Windsor (village), Broome County, New York and last: Jackson (town), Washington County, Wisconsin +[2018-02-13T08:27:04.932] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:27:04.934] [INFO] cheese - batch complete in: 1.938 secs +[2018-02-13T08:27:05.016] [INFO] cheese - inserting 1000 documents. first: 2001–02 Liga Nacional de Hockey Hielo season and last: Category:2008–09 in English football +[2018-02-13T08:27:05.129] [INFO] cheese - batch complete in: 1.461 secs +[2018-02-13T08:27:05.139] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-08-10 and last: Category:2004 in Finnish football +[2018-02-13T08:27:05.228] [INFO] cheese - inserting 1000 documents. first: Poivet and last: Kadra Bezpieczenstwa +[2018-02-13T08:27:05.241] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:27:05.243] [INFO] cheese - inserting 1000 documents. first: Yazgulyami language and last: Jessie Harlan +[2018-02-13T08:27:05.304] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:27:05.454] [INFO] cheese - batch complete in: 1.707 secs +[2018-02-13T08:27:05.594] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/moigorod-a.ucoz.ru and last: Gracias A Tí +[2018-02-13T08:27:05.658] [INFO] cheese - inserting 1000 documents. first: Sleeping with Ghosts (song) and last: Template:Cricketyearcat +[2018-02-13T08:27:05.673] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:27:05.740] [INFO] cheese - inserting 1000 documents. first: Adult educator and last: Sao Vicente Ferreira +[2018-02-13T08:27:05.757] [INFO] cheese - batch complete in: 1.261 secs +[2018-02-13T08:27:05.780] [INFO] cheese - inserting 1000 documents. first: Saijiki and last: Chlaenius superbus +[2018-02-13T08:27:05.800] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:27:05.829] [INFO] cheese - inserting 1000 documents. first: Drumkeeragh Forest and last: John Costas (Greek revolutionary) +[2018-02-13T08:27:05.887] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:27:05.911] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T08:27:06.028] [INFO] cheese - inserting 1000 documents. first: Abbas Ali Khalatbari and last: Saint Pius Heights, Kentucky +[2018-02-13T08:27:06.154] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:27:06.171] [INFO] cheese - inserting 1000 documents. first: San Juan y Martinez, Cuba and last: Grunewald, Germany +[2018-02-13T08:27:06.265] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T08:27:06.306] [INFO] cheese - inserting 1000 documents. first: Rossel and last: Trakai District Municipality +[2018-02-13T08:27:06.384] [INFO] cheese - inserting 1000 documents. first: Sergey Afanasyev (racing driver) and last: Adhaim Dam +[2018-02-13T08:27:06.436] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:27:06.437] [INFO] cheese - inserting 1000 documents. first: Ryūkyū Trench and last: Predrag Filipović (footballer) +[2018-02-13T08:27:06.460] [INFO] cheese - inserting 1000 documents. first: Chlaenius superstes and last: Portal:Capital District/Selected article/Layout +[2018-02-13T08:27:06.470] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:27:06.559] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:27:06.643] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:27:06.673] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/ゼーロ/Archive and last: Template:Attached KML/Alabama State Route 237 +[2018-02-13T08:27:06.691] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Jwvoiland and last: Communes of the Gard departement +[2018-02-13T08:27:06.734] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:27:06.770] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:27:06.846] [INFO] cheese - inserting 1000 documents. first: St. Pius Heights, Kentucky and last: Ossetic language +[2018-02-13T08:27:06.878] [INFO] cheese - inserting 1000 documents. first: Jackson (village), Washington County, Wisconsin and last: Milford, New York +[2018-02-13T08:27:06.995] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:27:07.248] [INFO] cheese - batch complete in: 2.316 secs +[2018-02-13T08:27:07.275] [INFO] cheese - inserting 1000 documents. first: Jose Maria O'Neill and last: Breathing Space (album) +[2018-02-13T08:27:07.354] [INFO] cheese - inserting 1000 documents. first: Germán Ospina and last: File:Husslin.jpg +[2018-02-13T08:27:07.404] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:27:07.511] [INFO] cheese - inserting 1000 documents. first: Francois de Belleforest and last: George Clarke (handyman) +[2018-02-13T08:27:07.620] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:27:07.664] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T08:27:07.781] [INFO] cheese - inserting 1000 documents. first: Mehl-Mülhens-Rennen and last: Dahlerus +[2018-02-13T08:27:07.814] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Summit County, Utah and last: Tim Evans (British Army officer) +[2018-02-13T08:27:07.901] [INFO] cheese - inserting 1000 documents. first: Ram - Balaram and last: Category:1915 establishments in Vietnam +[2018-02-13T08:27:07.902] [INFO] cheese - batch complete in: 1.259 secs +[2018-02-13T08:27:07.907] [INFO] cheese - inserting 1000 documents. first: File:Agathiyar 1972 .jpg and last: Wikipedia:WikiProject Spam/LinkReports/tocan.de +[2018-02-13T08:27:07.915] [INFO] cheese - inserting 1000 documents. first: List of Legendary Pokemon and last: Israel Kamakawiwo`ole +[2018-02-13T08:27:07.944] [INFO] cheese - batch complete in: 1.385 secs +[2018-02-13T08:27:07.952] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:27:08.039] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:27:08.087] [INFO] cheese - batch complete in: 1.317 secs +[2018-02-13T08:27:08.348] [INFO] cheese - inserting 1000 documents. first: Victor Jara (album) and last: File:Chet Atkins Almost Alone.jpg +[2018-02-13T08:27:08.365] [INFO] cheese - inserting 1000 documents. first: True Love (Clubstar's True Club Mix) and last: Okayasu Kiley +[2018-02-13T08:27:08.445] [INFO] cheese - inserting 1000 documents. first: Nishovaj and last: SC Lyon +[2018-02-13T08:27:08.455] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:27:08.471] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:27:08.562] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:27:08.600] [INFO] cheese - inserting 1000 documents. first: Penn State–Fogelsville Nittany Lions and last: Category:African-American museums in Florida +[2018-02-13T08:27:08.653] [INFO] cheese - inserting 1000 documents. first: Demitrios Tsafendas and last: David Yip +[2018-02-13T08:27:08.674] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:27:08.739] [INFO] cheese - inserting 1000 documents. first: Alfred Stephens and last: Willits Municipal Airport +[2018-02-13T08:27:08.767] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T08:27:08.794] [INFO] cheese - inserting 1000 documents. first: I Shall Rise and last: File:Radioclassique.png +[2018-02-13T08:27:08.830] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Keimoes-Upington and last: Cheryl L. Clarke +[2018-02-13T08:27:08.866] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:27:08.886] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:27:08.888] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T08:27:09.073] [INFO] cheese - inserting 1000 documents. first: Momo Adachi and last: James Thomson Callender +[2018-02-13T08:27:09.112] [INFO] cheese - inserting 1000 documents. first: Two stage theory and last: Last shuttle mission +[2018-02-13T08:27:09.126] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:27:09.132] [INFO] cheese - inserting 1000 documents. first: Category:African-American museums in California and last: Muskegon (disambiguation) +[2018-02-13T08:27:09.188] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T08:27:09.191] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:27:09.238] [INFO] cheese - inserting 1000 documents. first: Luliang Campaign and last: Michelangelo's Pieta (Florence) +[2018-02-13T08:27:09.331] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T08:27:09.415] [INFO] cheese - inserting 1000 documents. first: Morris (village), New York and last: Yue cuisine +[2018-02-13T08:27:09.499] [INFO] cheese - inserting 1000 documents. first: Saunderstown and last: Timeline of Brunswick +[2018-02-13T08:27:09.534] [INFO] cheese - inserting 1000 documents. first: Parramatta ferry wharf and last: Bergen Storsenter +[2018-02-13T08:27:09.672] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:27:09.685] [INFO] cheese - batch complete in: 2.437 secs +[2018-02-13T08:27:09.687] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:27:09.764] [INFO] cheese - inserting 1000 documents. first: Auberon E. W. M. Herbert and last: Metrobús +[2018-02-13T08:27:09.838] [INFO] cheese - inserting 1000 documents. first: Jackson Township, Geary County, Kansas and last: Paersi +[2018-02-13T08:27:09.910] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:27:09.920] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:27:09.923] [INFO] cheese - inserting 1000 documents. first: Final shuttle mission and last: Agelaioides oreopsar +[2018-02-13T08:27:09.954] [INFO] cheese - inserting 1000 documents. first: Frances Greenhow and last: Skytürk 360 +[2018-02-13T08:27:09.963] [INFO] cheese - inserting 1000 documents. first: Portal:College football/Selected article/30 and last: Hans Detterman Cronman +[2018-02-13T08:27:10.037] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:27:10.040] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:27:10.053] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:27:10.166] [INFO] cheese - inserting 1000 documents. first: 2008 World Polo Championship and last: Ass, Gas, or Cash (No One Rides for Free) +[2018-02-13T08:27:10.187] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T08:27:10.317] [INFO] cheese - inserting 1000 documents. first: East Ridge High School and last: Category:2006 in Nigeria +[2018-02-13T08:27:10.338] [INFO] cheese - inserting 1000 documents. first: Thumbay clinic and last: Usama al-Nujayfi +[2018-02-13T08:27:10.359] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:27:10.433] [INFO] cheese - inserting 1000 documents. first: Kuetahya dumlupinar ueniversitesi and last: President's House (Princeton University) +[2018-02-13T08:27:10.441] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:27:10.448] [INFO] cheese - inserting 1000 documents. first: File:Adam Helms, "Untitled (48 Portraits, 2010)," 2010, charcoal on paper (installation view).jpg and last: Category:1915 establishments in Washington (state) +[2018-02-13T08:27:10.466] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T08:27:10.511] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:27:10.568] [INFO] cheese - inserting 1000 documents. first: E-cash and last: Sports Unlimited +[2018-02-13T08:27:10.572] [INFO] cheese - inserting 1000 documents. first: Leonardo Bittencourt and last: (7283) 1989 TX15 +[2018-02-13T08:27:10.641] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:27:10.671] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:27:10.689] [INFO] cheese - inserting 1000 documents. first: Spring Branch Memorial High School and last: V. Ramakrishnan +[2018-02-13T08:27:10.802] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:27:10.914] [INFO] cheese - inserting 1000 documents. first: Szilvia Peter Szabo and last: Israel BaAliya +[2018-02-13T08:27:10.986] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:27:11.024] [INFO] cheese - inserting 1000 documents. first: Category:Torture in Cambodia and last: Saskatchewan Highway 943 +[2018-02-13T08:27:11.068] [INFO] cheese - inserting 1000 documents. first: File:Brian Kesinger21.jpg and last: Tawfiq-e-Elahi Chowdhury +[2018-02-13T08:27:11.098] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:27:11.119] [INFO] cheese - inserting 1000 documents. first: Petrie Hosken and last: 1997 French Open – Women's Doubles +[2018-02-13T08:27:11.127] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:27:11.242] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:27:11.248] [INFO] cheese - inserting 1000 documents. first: Template:Estonian Socialist Workers' Party/meta/shortname and last: Siniša Dobrasinović +[2018-02-13T08:27:11.308] [INFO] cheese - inserting 1000 documents. first: Canton cuisine and last: Self bondage +[2018-02-13T08:27:11.319] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:27:11.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fr.bioshock.wikia.com and last: File:Clientele-bonfires-on-heath.jpg +[2018-02-13T08:27:11.513] [INFO] cheese - batch complete in: 1.828 secs +[2018-02-13T08:27:11.566] [INFO] cheese - inserting 1000 documents. first: Knygnesiai and last: Fredegonda +[2018-02-13T08:27:11.570] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:27:11.689] [INFO] cheese - inserting 1000 documents. first: Mayor of Cagayan de Oro and last: Richard Hawkyns +[2018-02-13T08:27:11.760] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:27:11.832] [INFO] cheese - inserting 1000 documents. first: Herpes neonatorum and last: House of Mehrān +[2018-02-13T08:27:11.881] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:27:11.896] [INFO] cheese - inserting 1000 documents. first: Charles-Étienne Chaussegros de Léry and last: Israel Williams +[2018-02-13T08:27:11.985] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:27:12.039] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:27:12.115] [INFO] cheese - inserting 1000 documents. first: Hazel Schmoll and last: Lions (song) +[2018-02-13T08:27:12.174] [INFO] cheese - inserting 1000 documents. first: Mezősomlyó and last: Biel running days +[2018-02-13T08:27:12.191] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:27:12.282] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:27:12.307] [INFO] cheese - inserting 1000 documents. first: Emnambithi-Ladysmith Municipality and last: House of Ergadia +[2018-02-13T08:27:12.427] [INFO] cheese - inserting 1000 documents. first: National Festival of the Dividivi and last: Eugene Huetz +[2018-02-13T08:27:12.467] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:27:12.489] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:27:12.551] [INFO] cheese - inserting 1000 documents. first: Sensitive but unclassified and last: Wikipedia:Naming conventions (computer and video games) +[2018-02-13T08:27:12.635] [INFO] cheese - inserting 1000 documents. first: Self-certifying Filesystem and last: Life and Labour of the People in London +[2018-02-13T08:27:12.659] [INFO] cheese - inserting 1000 documents. first: File:Partido Socialista Democratico Espanol symbol, used at time of 1977 election.png and last: Category:1979 establishments in Curaçao +[2018-02-13T08:27:12.703] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:27:12.787] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:27:12.880] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:27:12.975] [INFO] cheese - inserting 1000 documents. first: Lions (Ben Haenow song) and last: Islamo-Leftism +[2018-02-13T08:27:13.023] [INFO] cheese - inserting 1000 documents. first: Red dwarf (star) and last: Bataguacu +[2018-02-13T08:27:13.052] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:27:13.060] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:27:13.112] [INFO] cheese - inserting 1000 documents. first: Gary Wackett and last: Wikipedia:WikiProject Spam/LinkReports/rtl-longueuil.qc.ca +[2018-02-13T08:27:13.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ORDINAL and last: Feurstein +[2018-02-13T08:27:13.189] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:27:13.206] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:27:13.363] [INFO] cheese - inserting 1000 documents. first: Chen Yun and last: Fritjov Capra +[2018-02-13T08:27:13.365] [INFO] cheese - inserting 1000 documents. first: Desire Cardinal Mercier and last: Goteborgs hogre latinlaroverk +[2018-02-13T08:27:13.422] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T08:27:13.520] [INFO] cheese - batch complete in: 2.006 secs +[2018-02-13T08:27:13.522] [INFO] cheese - inserting 1000 documents. first: Ryan Drese and last: Address Unknown +[2018-02-13T08:27:13.553] [INFO] cheese - inserting 1000 documents. first: Flight Commander (disambiguation) and last: The Squad (1981 film) +[2018-02-13T08:27:13.553] [INFO] cheese - inserting 1000 documents. first: Olympique de Béjà and last: Line of succession to the Greek Throne +[2018-02-13T08:27:13.631] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:27:13.649] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:27:13.721] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:27:13.780] [INFO] cheese - inserting 1000 documents. first: James Cope Christie and last: Giulio Cesare Tassoni +[2018-02-13T08:27:13.796] [INFO] cheese - inserting 1000 documents. first: Longest rivers of Missouri and last: Northeast Alabama Community College +[2018-02-13T08:27:13.797] [INFO] cheese - inserting 1000 documents. first: Ramon Pichot Girones and last: Dezso Szentgyorgyi +[2018-02-13T08:27:13.800] [INFO] cheese - inserting 1000 documents. first: RAMBAM and last: 508th Missile Squadron +[2018-02-13T08:27:13.836] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:27:13.852] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T08:27:13.918] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:27:13.937] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:27:14.162] [INFO] cheese - inserting 1000 documents. first: List of asteroids/158001-158100 and last: Villafranca di Forli +[2018-02-13T08:27:14.208] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T08:27:14.297] [INFO] cheese - inserting 1000 documents. first: Prača and last: Psyren chapters +[2018-02-13T08:27:14.342] [INFO] cheese - inserting 1000 documents. first: Category:Sikhism articles by importance and last: Category:A-Class Zoroastrianism articles +[2018-02-13T08:27:14.355] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:27:14.421] [INFO] cheese - inserting 1000 documents. first: File:Gremlins2poster.jpg and last: Pierre Courayer +[2018-02-13T08:27:14.439] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:27:14.442] [INFO] cheese - inserting 1000 documents. first: Bonington Halls and last: Eighth and I +[2018-02-13T08:27:14.476] [INFO] cheese - inserting 1000 documents. first: PICMG 1.3 and last: Hellaween: Pure Horror +[2018-02-13T08:27:14.503] [INFO] cheese - inserting 1000 documents. first: Pablo Roberto Munhoz Rodriguez and last: Francisco penalosa +[2018-02-13T08:27:14.528] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:27:14.552] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T08:27:14.593] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:27:14.588] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:27:15.020] [INFO] cheese - inserting 1000 documents. first: Sangeris River and last: St Helena Heliotrope +[2018-02-13T08:27:15.026] [INFO] cheese - inserting 1000 documents. first: Homer A. Stone and last: Category:Moroccan human rights activists +[2018-02-13T08:27:15.027] [INFO] cheese - inserting 1000 documents. first: Category:Redirects from Italian-language terms and last: Mohammad Al-Emlah +[2018-02-13T08:27:15.079] [INFO] cheese - inserting 1000 documents. first: Category:Yukon civil servants and last: Blue-grey Robin +[2018-02-13T08:27:15.085] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:27:15.093] [INFO] cheese - inserting 1000 documents. first: Tracked vehicle and last: Neoconservatives +[2018-02-13T08:27:15.143] [INFO] cheese - inserting 1000 documents. first: Ewing Oil and last: File:Palisadespark45.jpg +[2018-02-13T08:27:15.176] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:27:15.159] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:27:15.263] [INFO] cheese - batch complete in: 1.326 secs +[2018-02-13T08:27:15.273] [INFO] cheese - inserting 1000 documents. first: BR Class 395 and last: Category:Spanish-American War monitors +[2018-02-13T08:27:15.314] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:27:15.389] [INFO] cheese - batch complete in: 1.85 secs +[2018-02-13T08:27:15.404] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:27:15.505] [INFO] cheese - inserting 1000 documents. first: Skylark (publisher) and last: Hokuriku ginkou +[2018-02-13T08:27:15.636] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T08:27:15.865] [INFO] cheese - inserting 1000 documents. first: Category:Greenlandic politicians and last: The Digger Farm +[2018-02-13T08:27:15.903] [INFO] cheese - inserting 1000 documents. first: Sulphur-bellied Tyrant-manakin and last: Wilhelm Schubert van Ehrenberg +[2018-02-13T08:27:15.934] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:27:15.938] [INFO] cheese - inserting 1000 documents. first: Shrishailam and last: Deux Cents Milles sous les mers ou le Cauchemar du pêcheur +[2018-02-13T08:27:15.972] [INFO] cheese - inserting 1000 documents. first: Category:1999 in the Republic of the Congo and last: Category:Crimean War naval ships of the Ottoman Empire +[2018-02-13T08:27:15.983] [INFO] cheese - inserting 1000 documents. first: Morrell Park, Baltimore and last: Wikipedia:Articles for deletion/Irmtraut Sell +[2018-02-13T08:27:15.988] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:27:16.033] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:27:16.042] [INFO] cheese - inserting 1000 documents. first: Xystophora scutatella and last: Mut'im ibn Adi +[2018-02-13T08:27:16.064] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:27:16.136] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:27:16.197] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:27:16.496] [INFO] cheese - inserting 1000 documents. first: Hokuriku ginko and last: Pokémon World (Single) +[2018-02-13T08:27:16.590] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:27:16.645] [INFO] cheese - inserting 1000 documents. first: Agreed Framework (1994) and last: Varcsaro +[2018-02-13T08:27:16.688] [INFO] cheese - inserting 1000 documents. first: TONY! and last: Category:Morecambe F.C. matches +[2018-02-13T08:27:16.708] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:27:16.737] [INFO] cheese - inserting 1000 documents. first: File:Pi Magazine, October 2012.jpg and last: Andamion Murataj +[2018-02-13T08:27:16.742] [INFO] cheese - inserting 1000 documents. first: West Bačka and last: Transfer stations +[2018-02-13T08:27:16.767] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:27:16.844] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:27:16.854] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:27:16.885] [INFO] cheese - inserting 1000 documents. first: Benedetto Pistrucci and last: Wikipedia:References +[2018-02-13T08:27:16.929] [INFO] cheese - inserting 1000 documents. first: Mangal Ram Premi and last: Huang Fuyuan +[2018-02-13T08:27:17.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fanny Eleonore Baur and last: List of people on stamps of Boyaca +[2018-02-13T08:27:17.046] [INFO] cheese - batch complete in: 1.655 secs +[2018-02-13T08:27:17.056] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:27:17.126] [INFO] cheese - inserting 1000 documents. first: Jose Veiga (footballer) and last: Burglen UR +[2018-02-13T08:27:17.172] [INFO] cheese - inserting 1000 documents. first: Prilipec and last: Category:Politics of Vaughan +[2018-02-13T08:27:17.212] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T08:27:17.235] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T08:27:17.275] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:27:17.298] [INFO] cheese - inserting 1000 documents. first: Video RAM (dual-ported DRAM) and last: Army ranks and insignia of the Russian Federation +[2018-02-13T08:27:17.447] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:27:17.451] [INFO] cheese - inserting 1000 documents. first: Category:Redirects from Cherokee-language terms and last: Komlenović +[2018-02-13T08:27:17.587] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:27:17.621] [INFO] cheese - inserting 1000 documents. first: Category:Malla rulers and last: Rotozaza +[2018-02-13T08:27:17.697] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:27:17.704] [INFO] cheese - inserting 1000 documents. first: Valea Lunga River (Turcu) and last: Wikipedia:Articles for deletion/Navicat +[2018-02-13T08:27:17.738] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:27:17.936] [INFO] cheese - inserting 1000 documents. first: La Vieille Dame et les pigeons and last: Wikipedia:Articles for deletion/Son Jeong-Ryun +[2018-02-13T08:27:17.975] [INFO] cheese - inserting 1000 documents. first: List of people on stamps of Cundinamarca and last: Jews of Provence +[2018-02-13T08:27:18.033] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:27:18.048] [INFO] cheese - inserting 1000 documents. first: Jaskinia Raj and last: Wikipedia:WikiProject Spam/LinkReports/ahkstudio.blogspot.com +[2018-02-13T08:27:18.060] [INFO] cheese - inserting 1000 documents. first: Eschbach (Markgraeflerland) and last: Grobner Bases +[2018-02-13T08:27:18.070] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:27:18.095] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T08:27:18.151] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T08:27:18.265] [INFO] cheese - inserting 1000 documents. first: Komlenovic and last: Qiam +[2018-02-13T08:27:18.287] [INFO] cheese - inserting 1000 documents. first: File:My Girls Animal Collective.jpeg and last: Wikipedia:WikiProject Spam/LinkReports/amerieonline.am.funpic.de +[2018-02-13T08:27:18.339] [INFO] cheese - inserting 1000 documents. first: Derek Anderson (footballl player) and last: HSR Layout +[2018-02-13T08:27:18.367] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:27:18.368] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:27:18.421] [INFO] cheese - inserting 1000 documents. first: Colorado State Highway 159 and last: Ugrin Csak (archbishop) +[2018-02-13T08:27:18.466] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T08:27:18.500] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:27:18.567] [INFO] cheese - inserting 1000 documents. first: Bunmi Koko and last: Epi Map +[2018-02-13T08:27:18.736] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:27:18.811] [INFO] cheese - inserting 1000 documents. first: File:Fast Break game.png and last: File:ShanghaiFilmGroup.jpg +[2018-02-13T08:27:18.880] [INFO] cheese - inserting 1000 documents. first: Ukrainian nationality law and last: USAT David C. Shanks +[2018-02-13T08:27:18.898] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:27:18.915] [INFO] cheese - inserting 1000 documents. first: Gaia and last: Terence O'Neill +[2018-02-13T08:27:18.927] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T08:27:18.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2009-10-12/Bing search and last: Born of osiris +[2018-02-13T08:27:18.998] [INFO] cheese - inserting 1000 documents. first: Aseptis ferruginea and last: Quantum configuration space +[2018-02-13T08:27:19.001] [INFO] cheese - inserting 1000 documents. first: Kal Shur and last: File:Static DVD cover.jpg +[2018-02-13T08:27:19.020] [INFO] cheese - batch complete in: 1.974 secs +[2018-02-13T08:27:19.041] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:27:19.124] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:27:19.139] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:27:19.248] [INFO] cheese - inserting 1000 documents. first: St Oswald's Church, Thornton in Lonsdale and last: Category:Rhode Island Rams baseball +[2018-02-13T08:27:19.257] [INFO] cheese - inserting 1000 documents. first: Centre democrate humaniste and last: La Legion d'Orient +[2018-02-13T08:27:19.297] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T08:27:19.329] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:27:19.372] [INFO] cheese - inserting 1000 documents. first: Nippon Flour Mills and last: Gonzalo Hernandez y Aguilar +[2018-02-13T08:27:19.514] [INFO] cheese - inserting 1000 documents. first: Gheorghe Ursu and last: Mt. Cook National Park +[2018-02-13T08:27:19.558] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:27:19.577] [INFO] cheese - inserting 1000 documents. first: Juergen Vollmer and last: List of asteroids/80801-80900 +[2018-02-13T08:27:19.613] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T08:27:19.635] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:27:19.668] [INFO] cheese - inserting 1000 documents. first: Venus 2000 and last: Nephelochloa +[2018-02-13T08:27:19.763] [INFO] cheese - inserting 1000 documents. first: Cole swindell and last: Template:Brazil Squad 2003 Women's World Cup +[2018-02-13T08:27:19.782] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:27:19.867] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:27:20.006] [INFO] cheese - inserting 1000 documents. first: James B. French and last: Flávio Dino +[2018-02-13T08:27:20.069] [INFO] cheese - inserting 1000 documents. first: Sassi's Greenbul and last: Institute Of Dental Sciences Bareilly +[2018-02-13T08:27:20.088] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:27:20.109] [INFO] cheese - inserting 1000 documents. first: J'ai vole la vie and last: Valea Alba River (Aries) +[2018-02-13T08:27:20.145] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T08:27:20.210] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:27:20.257] [INFO] cheese - inserting 1000 documents. first: File:Amado Carrillo Fuentes.jpg and last: Waiting (SpongeBob SquarePants) +[2018-02-13T08:27:20.339] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:27:20.384] [INFO] cheese - inserting 1000 documents. first: Duchenne-Erb paralysis. and last: Economy of São Paulo +[2018-02-13T08:27:20.435] [INFO] cheese - inserting 1000 documents. first: Template:Canada Squad 2003 Women's World Cup and last: Tan Bien District +[2018-02-13T08:27:20.435] [INFO] cheese - inserting 1000 documents. first: Munana, Avila and last: Ecoivres +[2018-02-13T08:27:20.448] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:27:20.466] [INFO] cheese - inserting 1000 documents. first: It (1927 film) and last: Leonard Peikoff +[2018-02-13T08:27:20.474] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T08:27:20.522] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:27:20.606] [INFO] cheese - batch complete in: 1.586 secs +[2018-02-13T08:27:20.647] [INFO] cheese - inserting 1000 documents. first: Category:Ourém Municipality and last: I3-6300T +[2018-02-13T08:27:20.733] [INFO] cheese - inserting 1000 documents. first: Ecole Secondaire catholique Theriault and last: Si On Avait Besoin D'une Cinquieme Saison +[2018-02-13T08:27:20.769] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:27:20.801] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T08:27:20.818] [INFO] cheese - inserting 1000 documents. first: Gonzalvo di Cordova and last: Referral +[2018-02-13T08:27:20.873] [INFO] cheese - inserting 1000 documents. first: Chester and West Cheshire Junction Railway and last: Category:Paksi SE seasons +[2018-02-13T08:27:20.953] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:27:20.955] [INFO] cheese - batch complete in: 1.397 secs +[2018-02-13T08:27:21.068] [INFO] cheese - inserting 1000 documents. first: Tony the Wonder Horse and last: Doggie Style +[2018-02-13T08:27:21.125] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:27:21.155] [INFO] cheese - inserting 1000 documents. first: Hord, Illinois and last: Template:LCR style +[2018-02-13T08:27:21.205] [INFO] cheese - inserting 1000 documents. first: File:Edmonton Cracker Cats.png and last: Learning Commons +[2018-02-13T08:27:21.279] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:27:21.295] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:27:21.303] [INFO] cheese - inserting 1000 documents. first: Kardla meteorite crater and last: Wikipedia:BeBold +[2018-02-13T08:27:21.307] [INFO] cheese - inserting 1000 documents. first: I3-6100TE and last: Myrtus javanica +[2018-02-13T08:27:21.393] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:27:21.403] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:27:21.631] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Gibraltar and last: Mangaia Island Airport +[2018-02-13T08:27:21.648] [INFO] cheese - inserting 1000 documents. first: Say Yes (Elliott Smith song) and last: Chilul Hashem +[2018-02-13T08:27:21.697] [INFO] cheese - inserting 1000 documents. first: Canon EOS 350D DIGITAL and last: Wikipedia:Reference desk archive/Computing/Early/cleanup/double redirects/20050713/15 +[2018-02-13T08:27:21.705] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:27:21.732] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:27:21.783] [INFO] cheese - inserting 1000 documents. first: Janamashtmi and last: Scottish handball season 2010/11 +[2018-02-13T08:27:21.837] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:27:21.861] [INFO] cheese - inserting 1000 documents. first: Bhavik Gandhi and last: Свадьба +[2018-02-13T08:27:22.008] [INFO] cheese - inserting 1000 documents. first: Wooly rhino and last: Darach Ó Catháin +[2018-02-13T08:27:22.015] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:27:22.066] [INFO] cheese - inserting 1000 documents. first: Jambosa samarangensis and last: Jesse James, Jr. (film) +[2018-02-13T08:27:22.084] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:27:22.164] [INFO] cheese - inserting 1000 documents. first: Faces (film) and last: Canada lynx +[2018-02-13T08:27:22.193] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:27:22.192] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:27:22.389] [INFO] cheese - batch complete in: 1.783 secs +[2018-02-13T08:27:22.406] [INFO] cheese - inserting 1000 documents. first: Jawed nasir and last: USS BATR-20 +[2018-02-13T08:27:22.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/AvicBot 5 and last: Transcosmos Stadium Nagasaki +[2018-02-13T08:27:22.494] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:27:22.501] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:27:22.631] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Goh Lay Kuan and last: West Buffalo (disambiguation) +[2018-02-13T08:27:22.677] [INFO] cheese - inserting 1000 documents. first: Scottish Handball Season 2011/12 and last: Dak R'Lap District +[2018-02-13T08:27:22.687] [INFO] cheese - inserting 1000 documents. first: Svadba and last: USCGC Point Brown (WPB-82362) +[2018-02-13T08:27:22.687] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T08:27:22.696] [INFO] cheese - inserting 1000 documents. first: Police Contingent SWAT Unit (UTC, Malaysia) and last: File:WHR Studio Computer.jpg +[2018-02-13T08:27:22.734] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:27:22.747] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:27:22.795] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:27:22.861] [INFO] cheese - inserting 1000 documents. first: Template:Tls and last: Leo Clijsters +[2018-02-13T08:27:22.962] [INFO] cheese - inserting 1000 documents. first: Allied Victory Medal (Italy) and last: Sound radical +[2018-02-13T08:27:22.951] [INFO] cheese - batch complete in: 1.114 secs +[2018-02-13T08:27:23.032] [INFO] cheese - inserting 1000 documents. first: Barbara Cox (writer) and last: William L. DeAndrea +[2018-02-13T08:27:23.057] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:27:23.136] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:27:23.144] [INFO] cheese - inserting 1000 documents. first: Woolbrook (disambiguation) and last: Epiphthora poliopasta +[2018-02-13T08:27:23.225] [INFO] cheese - inserting 1000 documents. first: Clean Cities award and last: File:California 1946 poster small.jpg +[2018-02-13T08:27:23.222] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:27:23.299] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T08:27:23.305] [INFO] cheese - inserting 1000 documents. first: Guido Forti and last: Kolsch (dialect) +[2018-02-13T08:27:23.318] [INFO] cheese - inserting 1000 documents. first: Archangelo Palmentieri and last: Xixiu District +[2018-02-13T08:27:23.393] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:27:23.397] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:27:23.555] [INFO] cheese - inserting 1000 documents. first: Hanriot HD-3 and last: Recopa Sudamericana (disambiguation) +[2018-02-13T08:27:23.632] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:27:23.642] [INFO] cheese - inserting 1000 documents. first: Socialist Labour Party of Croatia and last: Tsander (crater) +[2018-02-13T08:27:23.669] [INFO] cheese - inserting 1000 documents. first: Canadian lynx and last: Black Sabbath (album) +[2018-02-13T08:27:23.675] [INFO] cheese - inserting 1000 documents. first: Waldbuettelbrunn and last: Jacques-Andre Istel +[2018-02-13T08:27:23.686] [INFO] cheese - inserting 1000 documents. first: Category:Czech ice hockey coaches and last: File:Focoth3b.jpg +[2018-02-13T08:27:23.725] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T08:27:23.742] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:27:23.782] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:27:23.855] [INFO] cheese - batch complete in: 1.466 secs +[2018-02-13T08:27:23.880] [INFO] cheese - inserting 1000 documents. first: Kepler-25b and last: Shinee World 2012 (arena tour) +[2018-02-13T08:27:23.925] [INFO] cheese - inserting 1000 documents. first: File:LUX (soap) logo.png and last: Breath of Fire 6 +[2018-02-13T08:27:23.980] [INFO] cheese - inserting 1000 documents. first: List of Thai royal consorts and last: Only Men Aloud! (album) +[2018-02-13T08:27:24.015] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:27:24.117] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:27:24.150] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:27:24.196] [INFO] cheese - inserting 1000 documents. first: Karel Hartmann and last: 2308 Schilt +[2018-02-13T08:27:24.236] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T08:27:24.329] [INFO] cheese - inserting 1000 documents. first: Template:Kolkata Metro color and last: 2011–12 Gimnàstic de Tarragona season +[2018-02-13T08:27:24.490] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:27:24.639] [INFO] cheese - inserting 1000 documents. first: Power play (disambiguation) and last: International Baseball League of Australia +[2018-02-13T08:27:24.746] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:27:24.750] [INFO] cheese - inserting 1000 documents. first: Lotta Hedstrom and last: Herraengs Gruf AB +[2018-02-13T08:27:24.792] [INFO] cheese - inserting 1000 documents. first: Zakarpattia region and last: Chemotype +[2018-02-13T08:27:24.794] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:27:24.874] [INFO] cheese - inserting 1000 documents. first: Category:Lists of ambassadors of Pakistan and last: Broidy +[2018-02-13T08:27:24.936] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:27:24.938] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T08:27:24.942] [INFO] cheese - inserting 1000 documents. first: Lincoln-Douglas debates of 1858 and last: Diplazoptilon +[2018-02-13T08:27:25.094] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:27:25.187] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 412 and last: Category:Polish people of the American Civil War +[2018-02-13T08:27:25.238] [INFO] cheese - inserting 1000 documents. first: 1950 Titleholders Championship and last: Category:Breast cancer organizations +[2018-02-13T08:27:25.253] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T08:27:25.333] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:27:25.346] [INFO] cheese - inserting 1000 documents. first: 1854 Skvortsov and last: 7947 Toland +[2018-02-13T08:27:25.486] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:27:25.519] [INFO] cheese - inserting 1000 documents. first: Vishwamitra and last: Special Collection Service +[2018-02-13T08:27:25.575] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:27:25.614] [INFO] cheese - inserting 1000 documents. first: Alfred Page (priest) and last: Template:User pno-3 +[2018-02-13T08:27:25.741] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:27:25.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alexander Belikov and last: Thapar University +[2018-02-13T08:27:25.907] [INFO] cheese - inserting 1000 documents. first: Dimorphocoma and last: Ville Oksanen +[2018-02-13T08:27:26.026] [INFO] cheese - batch complete in: 1.088 secs +[2018-02-13T08:27:26.058] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:27:26.070] [INFO] cheese - inserting 1000 documents. first: Peso (song) and last: Jin invasion of Song +[2018-02-13T08:27:26.114] [INFO] cheese - inserting 1000 documents. first: Wadsworth and last: Stacks +[2018-02-13T08:27:26.124] [INFO] cheese - inserting 1000 documents. first: Nguyễn The Loc and last: Aszubeszterce +[2018-02-13T08:27:26.209] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:27:26.217] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:27:26.290] [INFO] cheese - batch complete in: 2.435 secs +[2018-02-13T08:27:26.308] [INFO] cheese - inserting 1000 documents. first: Portal:Religion/On this day/April 6 and last: Teardrops (elena paparizou song) +[2018-02-13T08:27:26.322] [INFO] cheese - inserting 1000 documents. first: List of Australian rugby league grand final records and last: Shōzō Sakurai +[2018-02-13T08:27:26.349] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:27:26.426] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:27:26.497] [INFO] cheese - inserting 1000 documents. first: Brookline-Newfane Bridge and last: Bracted nutrush +[2018-02-13T08:27:26.500] [INFO] cheese - inserting 1000 documents. first: Jason D. Brown and last: Clay Triple-lines +[2018-02-13T08:27:26.538] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:27:26.587] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:27:26.704] [INFO] cheese - inserting 1000 documents. first: Jin conquest of China and last: Category:Unincorporated communities in Wisconsin by county +[2018-02-13T08:27:26.724] [INFO] cheese - inserting 1000 documents. first: Jamieson City and last: Kari MacLean +[2018-02-13T08:27:26.771] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:27:26.823] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:27:27.040] [INFO] cheese - inserting 1000 documents. first: Sports in England and last: Sher-e-Kashmir University of Agricultural Sciences & Technology of Jammu +[2018-02-13T08:27:27.089] [INFO] cheese - inserting 1000 documents. first: Vector Slime and last: Category:United Kingdom Acts of Parliament 1832 +[2018-02-13T08:27:27.124] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:27:27.186] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:27:27.263] [INFO] cheese - inserting 1000 documents. first: File:Andy Grammer - Honey, I'm Good.png and last: Of Course, the Motorists +[2018-02-13T08:27:27.273] [INFO] cheese - inserting 1000 documents. first: Sorcerer's Apprentice Syndrome and last: Brian Peterson (footballer) +[2018-02-13T08:27:27.324] [INFO] cheese - inserting 1000 documents. first: Rule of consensus and last: Alejandro Urtasun +[2018-02-13T08:27:27.382] [INFO] cheese - inserting 1000 documents. first: Duke MacIsaac and last: Faulhaber +[2018-02-13T08:27:27.455] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:27:27.438] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:27:27.508] [INFO] cheese - batch complete in: 1.482 secs +[2018-02-13T08:27:27.548] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:27:27.572] [INFO] cheese - inserting 1000 documents. first: Never Could Toe the Mark (song) and last: Singapore at the 2002 Asian Games +[2018-02-13T08:27:27.733] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:27:27.758] [INFO] cheese - inserting 1000 documents. first: Beech Fork Lake Wildlife Management Area and last: Wikipedia:Articles for deletion/Menara-e-Noor +[2018-02-13T08:27:27.843] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:27:27.903] [INFO] cheese - inserting 1000 documents. first: Félicien Rops and last: Motor Torpedo Boat PT-109 +[2018-02-13T08:27:28.036] [INFO] cheese - inserting 1000 documents. first: José Iturbi International Music Competition and last: Fodhil Hadjadj +[2018-02-13T08:27:28.101] [INFO] cheese - batch complete in: 1.811 secs +[2018-02-13T08:27:28.133] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:27:28.183] [INFO] cheese - inserting 1000 documents. first: Campeonato Brasileiro Série D 2009 and last: File:Majors Pro.jpg +[2018-02-13T08:27:28.236] [INFO] cheese - inserting 1000 documents. first: Michael Esper and last: 2003–04 Bosnia and Herzegovina Football Cup +[2018-02-13T08:27:28.258] [INFO] cheese - inserting 1000 documents. first: Le Plessis-Pate and last: Magha (nakshatra) +[2018-02-13T08:27:28.341] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:27:28.343] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:27:28.358] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:27:28.415] [INFO] cheese - inserting 1000 documents. first: Fronteira, Minas Gerais and last: Hannover CL III +[2018-02-13T08:27:28.417] [INFO] cheese - inserting 1000 documents. first: NFL GameDay Highlights and last: Cecil White (footballer) +[2018-02-13T08:27:28.462] [INFO] cheese - inserting 1000 documents. first: Usman Tariq (cricketer) and last: File:Hamburg-Altona (1989).jpg +[2018-02-13T08:27:28.486] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:27:28.565] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:27:28.611] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:27:28.770] [INFO] cheese - inserting 1000 documents. first: File:MiniFlex1973.jpg and last: Duwag +[2018-02-13T08:27:28.803] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:27:28.827] [INFO] cheese - inserting 1000 documents. first: Oblique view map and last: 12+1 +[2018-02-13T08:27:28.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adithya Srinivasan and last: Shulkesh Zangava +[2018-02-13T08:27:28.946] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:27:28.978] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2009 October 10 and last: Associação Internacional dos Trabalhadores – Secção Portuguesa +[2018-02-13T08:27:29.014] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:27:29.043] [INFO] cheese - inserting 1000 documents. first: Category:Festivals in Wyoming and last: Cyrillomethodian +[2018-02-13T08:27:29.150] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:27:29.302] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:27:29.352] [INFO] cheese - inserting 1000 documents. first: Jarmund Øyen and last: For We Are +[2018-02-13T08:27:29.404] [INFO] cheese - inserting 1000 documents. first: John Brack and last: Category:User mt-N +[2018-02-13T08:27:29.428] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:27:29.563] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:27:29.637] [INFO] cheese - inserting 1000 documents. first: CN electric multiple unit and last: Template:Fs team Luch Yekaterinburg +[2018-02-13T08:27:29.763] [INFO] cheese - inserting 1000 documents. first: Bibesco, Elizabeth and last: VW Corrado +[2018-02-13T08:27:29.767] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:27:29.811] [INFO] cheese - inserting 1000 documents. first: Phuleli and last: 8700 BC +[2018-02-13T08:27:29.846] [INFO] cheese - inserting 1000 documents. first: Stuart Reid (English journalist) and last: Shin-Keisei N800 series +[2018-02-13T08:27:29.876] [INFO] cheese - inserting 1000 documents. first: Suicide (novel) and last: Category:Anglo-Egyptian Sudan +[2018-02-13T08:27:29.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/diamant.net and last: 19" +[2018-02-13T08:27:29.911] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:27:29.956] [INFO] cheese - batch complete in: 1.854 secs +[2018-02-13T08:27:29.971] [INFO] cheese - batch complete in: 1.022 secs +[2018-02-13T08:27:30.008] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:27:30.036] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:27:30.252] [INFO] cheese - inserting 1000 documents. first: File:Stand By Your Man LL.jpg and last: A Mandate for Change +[2018-02-13T08:27:30.381] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:27:30.494] [INFO] cheese - inserting 1000 documents. first: Sony Pictures Studios and last: Kinky Boots (film) +[2018-02-13T08:27:30.541] [INFO] cheese - inserting 1000 documents. first: Gingko nut and last: List of minor planets/29501–29600 +[2018-02-13T08:27:30.576] [INFO] cheese - batch complete in: 1.013 secs +[2018-02-13T08:27:30.664] [INFO] cheese - inserting 1000 documents. first: Mike Keller and last: TBLG +[2018-02-13T08:27:30.678] [INFO] cheese - inserting 1000 documents. first: Template:Fs team Metallurg Serov and last: Wikipedia:Articles for deletion/Dwaitham +[2018-02-13T08:27:30.737] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:27:30.744] [INFO] cheese - inserting 1000 documents. first: José Assis and last: Sándor Szabó (disambiguation) +[2018-02-13T08:27:30.817] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:27:30.838] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T08:27:30.909] [INFO] cheese - inserting 1000 documents. first: Shuangluan District and last: Wikipedia:WikiProject Spam/LinkReports/techsuperb.com +[2018-02-13T08:27:30.906] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:27:31.043] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T08:27:31.082] [INFO] cheese - inserting 1000 documents. first: Beige box and last: 12th September +[2018-02-13T08:27:31.244] [INFO] cheese - inserting 1000 documents. first: Eastgippsland and last: Ferrey +[2018-02-13T08:27:31.254] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:27:31.350] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:27:31.501] [INFO] cheese - inserting 1000 documents. first: Chebuloyl and last: Mortal Kombat: Mythologies +[2018-02-13T08:27:31.505] [INFO] cheese - inserting 1000 documents. first: Tabaré (disambiguation) and last: Barnstable Hundred +[2018-02-13T08:27:31.569] [INFO] cheese - inserting 1000 documents. first: Spermophilus mohavensis and last: Peace Prize of the German Book Trade +[2018-02-13T08:27:31.586] [INFO] cheese - inserting 1000 documents. first: USRC James C. Dobbin (1853) and last: Admiralty Lake +[2018-02-13T08:27:31.636] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:27:31.645] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:27:31.758] [INFO] cheese - inserting 1000 documents. first: Joes, Colorado and last: International Federation of Rock Art Organizations +[2018-02-13T08:27:31.849] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:27:31.863] [INFO] cheese - batch complete in: 1.287 secs +[2018-02-13T08:27:32.002] [INFO] cheese - inserting 1000 documents. first: Category:1927 establishments in Bosnia and Herzegovina and last: Template:Country data Velsen +[2018-02-13T08:27:32.019] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T08:27:32.381] [INFO] cheese - batch complete in: 1.543 secs +[2018-02-13T08:27:32.558] [INFO] cheese - inserting 1000 documents. first: Öhlund and last: Earth Defense Force +[2018-02-13T08:27:32.595] [INFO] cheese - inserting 1000 documents. first: Roloff Township, North Dakota and last: Template:Latest preview release/Netscape Navigator +[2018-02-13T08:27:32.650] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:27:32.657] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for creation/Rogue Valley Terminal Railroad Corporation and last: Chargar +[2018-02-13T08:27:32.736] [INFO] cheese - batch complete in: 1.385 secs +[2018-02-13T08:27:32.887] [INFO] cheese - batch complete in: 1.242 secs +[2018-02-13T08:27:32.900] [INFO] cheese - inserting 1000 documents. first: September 12th and last: The Magic School Bus Gets Ants In It's Pants +[2018-02-13T08:27:32.933] [INFO] cheese - inserting 1000 documents. first: George Seurat and last: List of surnames in Russian Federation +[2018-02-13T08:27:33.036] [INFO] cheese - inserting 1000 documents. first: Tina Romanus and last: File:Sophia and jayne.jpg +[2018-02-13T08:27:33.059] [INFO] cheese - batch complete in: 1.209 secs +[2018-02-13T08:27:33.135] [INFO] cheese - batch complete in: 1.881 secs +[2018-02-13T08:27:33.146] [INFO] cheese - inserting 1000 documents. first: Kent, Kansas and last: Template:Country data Oryol +[2018-02-13T08:27:33.210] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:27:33.333] [INFO] cheese - inserting 1000 documents. first: 6teen and last: Neubidschow +[2018-02-13T08:27:33.345] [INFO] cheese - batch complete in: 1.326 secs +[2018-02-13T08:27:33.467] [INFO] cheese - batch complete in: 1.604 secs +[2018-02-13T08:27:33.518] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Parmer County, Texas and last: Svendsen +[2018-02-13T08:27:33.621] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:27:33.631] [INFO] cheese - inserting 1000 documents. first: La Barra and last: Maltese Premier League 1918–19 +[2018-02-13T08:27:33.701] [INFO] cheese - inserting 1000 documents. first: Charkar and last: Đồng Phúc, Bac Giang +[2018-02-13T08:27:33.738] [INFO] cheese - batch complete in: 1.088 secs +[2018-02-13T08:27:33.840] [INFO] cheese - inserting 1000 documents. first: Aleksandr Popov (canoeist) and last: Carey Cash +[2018-02-13T08:27:33.847] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:27:33.863] [INFO] cheese - inserting 1000 documents. first: John T. McNaughton Bridge and last: Template:Country data Terrassa +[2018-02-13T08:27:33.933] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:27:33.954] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:27:34.055] [INFO] cheese - inserting 1000 documents. first: Mac Evangelist and last: Satyendra Prasanno Sinha, 1st Baron Sinha of Raipur +[2018-02-13T08:27:34.185] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:27:34.365] [INFO] cheese - inserting 1000 documents. first: Mora Ferenc and last: Drahomír Kadlec +[2018-02-13T08:27:34.373] [INFO] cheese - inserting 1000 documents. first: Trinity Hospital (Augusta, Georgia) and last: Wikipedia:Articles for deletion/Joshua Plague +[2018-02-13T08:27:34.501] [INFO] cheese - inserting 1000 documents. first: Maltese Premier League 1919–20 and last: Category:Mississippi elections, 2004 +[2018-02-13T08:27:34.502] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:27:34.513] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T08:27:34.596] [INFO] cheese - inserting 1000 documents. first: Davenport Center and last: Template:Country data Kutaisi +[2018-02-13T08:27:34.626] [INFO] cheese - inserting 1000 documents. first: Đồng Sơn, Bac Giang and last: Jumbor +[2018-02-13T08:27:34.645] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:27:34.704] [INFO] cheese - inserting 1000 documents. first: Altyn Mosque and last: Marcelle Bergerol +[2018-02-13T08:27:34.718] [INFO] cheese - inserting 1000 documents. first: Music of Venezuela and last: Unitary representation +[2018-02-13T08:27:34.719] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:27:34.740] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:27:34.847] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:27:34.852] [INFO] cheese - inserting 1000 documents. first: Janet mead and last: Ginataan +[2018-02-13T08:27:34.941] [INFO] cheese - batch complete in: 1.805 secs +[2018-02-13T08:27:34.998] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:27:35.243] [INFO] cheese - inserting 1000 documents. first: West Kwa languages and last: HOAC H36 +[2018-02-13T08:27:35.288] [INFO] cheese - inserting 1000 documents. first: BWV 1061a and last: Template:NYARC +[2018-02-13T08:27:35.304] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:27:35.328] [INFO] cheese - inserting 1000 documents. first: Autonomous District of Kosovo and Metohija and last: Thach An District +[2018-02-13T08:27:35.331] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bert Tatham and last: Greater Kansas City +[2018-02-13T08:27:35.332] [INFO] cheese - inserting 1000 documents. first: Afro-juju and last: Daphne (Greek mythology) +[2018-02-13T08:27:35.380] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:27:35.424] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:27:35.425] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:27:35.450] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:27:35.468] [INFO] cheese - inserting 1000 documents. first: Vicky Hall and last: John Lund (politician) +[2018-02-13T08:27:35.555] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:27:35.822] [INFO] cheese - inserting 1000 documents. first: Mahjong Hourouki Classic and last: 1st Independent Battery Wisconsin Light Artillery +[2018-02-13T08:27:35.909] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:27:35.920] [INFO] cheese - inserting 1000 documents. first: Category:Publishing companies established in 1951 and last: Daegu Hyehwa Girls' High School +[2018-02-13T08:27:36.003] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:27:36.089] [INFO] cheese - inserting 1000 documents. first: Category:People from Ilinden Municipality and last: Category:Castles in Flanders +[2018-02-13T08:27:36.113] [INFO] cheese - inserting 1000 documents. first: Template:2014 Winter Olympics men's ice hockey game A1 and last: Loire-Nieuport LN.30 +[2018-02-13T08:27:36.119] [INFO] cheese - inserting 1000 documents. first: 2009 Masters of Formula 3 and last: Category:Rodent articles by quality +[2018-02-13T08:27:36.122] [INFO] cheese - inserting 1000 documents. first: K. Wah International Holdings Ltd. and last: Wikipedia:CAES +[2018-02-13T08:27:36.174] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:27:36.188] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:27:36.202] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:27:36.241] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:27:36.280] [INFO] cheese - inserting 1000 documents. first: Kazuo Aoki and last: James Fletcher (entomologist) +[2018-02-13T08:27:36.397] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:27:36.641] [INFO] cheese - inserting 1000 documents. first: Simulated anealing and last: List of minor planets/25001–25100 +[2018-02-13T08:27:36.733] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:27:36.749] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Western Australia and last: Maupertus-sur-Mer Airfield +[2018-02-13T08:27:36.756] [INFO] cheese - inserting 1000 documents. first: Easily recognizable code and last: Peter–Weyl theorem +[2018-02-13T08:27:36.836] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:27:36.867] [INFO] cheese - inserting 1000 documents. first: List of multilingual regions and last: Pithecellobium triflorum +[2018-02-13T08:27:36.918] [INFO] cheese - inserting 1000 documents. first: Martin Scorcese and last: The Oliver Pocher Show +[2018-02-13T08:27:36.986] [INFO] cheese - inserting 1000 documents. first: Template:Country data Kramatorsk and last: Wikipedia:WikiProject Professional wrestling/Roster watchlist +[2018-02-13T08:27:37.018] [INFO] cheese - batch complete in: 2.077 secs +[2018-02-13T08:27:37.095] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:27:37.099] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:27:37.102] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:27:37.258] [INFO] cheese - inserting 1000 documents. first: Marek Saganowski and last: Parker v South Eastern Rly Co +[2018-02-13T08:27:37.365] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:27:37.389] [INFO] cheese - inserting 1000 documents. first: Category:Copper Age Europe and last: Buffalo exchange +[2018-02-13T08:27:37.443] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:27:37.555] [INFO] cheese - inserting 1000 documents. first: Mohamed Thakurufaanu and last: Category:Schools in Caribou County, Idaho +[2018-02-13T08:27:37.667] [INFO] cheese - inserting 1000 documents. first: Category:Mark Knopfler and last: Hill River (disambiguation) +[2018-02-13T08:27:37.668] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:27:37.732] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:27:37.775] [INFO] cheese - inserting 1000 documents. first: Snapshot (video game) and last: Rob Lloyd (Comedian) +[2018-02-13T08:27:37.855] [INFO] cheese - inserting 1000 documents. first: Samanea guajacifolia and last: Anthony Waldman House +[2018-02-13T08:27:37.898] [INFO] cheese - inserting 1000 documents. first: Makau Musyoki and last: Esteban Alvarado +[2018-02-13T08:27:37.921] [INFO] cheese - batch complete in: 1.733 secs +[2018-02-13T08:27:37.973] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:27:38.043] [INFO] cheese - inserting 1000 documents. first: Franco Rivera and last: Riex VD +[2018-02-13T08:27:38.101] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:27:38.209] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:27:38.267] [INFO] cheese - inserting 1000 documents. first: Scheherazade (Rimsky-Korsakov) and last: Category:Wikipedians by alma mater: University of Kansas +[2018-02-13T08:27:38.375] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:27:38.423] [INFO] cheese - inserting 1000 documents. first: Category:Education in Caribou County, Idaho and last: Joseph Welsh +[2018-02-13T08:27:38.441] [INFO] cheese - inserting 1000 documents. first: Kerala Gauthameeyam and last: Vernon R. Boeckmann +[2018-02-13T08:27:38.517] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:27:38.590] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:27:38.694] [INFO] cheese - inserting 1000 documents. first: Expelled the movie and last: The Last Pin +[2018-02-13T08:27:38.702] [INFO] cheese - inserting 1000 documents. first: W207BG and last: Wikipedia:WikiProject Spam/LinkReports/pennparanormal.thestreetgods.com +[2018-02-13T08:27:38.714] [INFO] cheese - inserting 1000 documents. first: Tuan Giao District and last: Zarrik +[2018-02-13T08:27:38.716] [INFO] cheese - inserting 1000 documents. first: Anthony Van Dyck and last: Mike Levey +[2018-02-13T08:27:38.741] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:27:38.766] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:27:38.828] [INFO] cheese - inserting 1000 documents. first: 1999-2000 Zimbabwean cricket season and last: Category:Salford City F.C. players +[2018-02-13T08:27:38.833] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:27:38.905] [INFO] cheese - batch complete in: 1.886 secs +[2018-02-13T08:27:38.940] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:27:39.100] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/12stedentocht.tk and last: Mediterranean Interregional Committee +[2018-02-13T08:27:39.144] [INFO] cheese - inserting 1000 documents. first: Aesthetic Dentistry and last: Vålerenga IF +[2018-02-13T08:27:39.190] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:27:39.229] [INFO] cheese - inserting 1000 documents. first: Bartini T-117 and last: Category:Rosoman Municipality +[2018-02-13T08:27:39.330] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:27:39.383] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T08:27:39.435] [INFO] cheese - inserting 1000 documents. first: Category:Boxers from Maryland and last: Wikipedia:Articles for deletion/Democratic Labour Party (UK) +[2018-02-13T08:27:39.464] [INFO] cheese - inserting 1000 documents. first: Zarik, Iran and last: Category:Wikipedian Toronto Blue Jays fans +[2018-02-13T08:27:39.517] [INFO] cheese - inserting 1000 documents. first: Carol Migden and last: Ra-4 +[2018-02-13T08:27:39.600] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:27:39.613] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:27:39.619] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:27:39.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Archive debates/2006 November index and last: Harper's and Queen +[2018-02-13T08:27:39.766] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:27:39.899] [INFO] cheese - inserting 1000 documents. first: Botswanan records in athletics and last: Clément Cailleau +[2018-02-13T08:27:39.924] [INFO] cheese - inserting 1000 documents. first: Template:Country data Llanes and last: Template:Country data Aracaju +[2018-02-13T08:27:40.023] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:27:40.030] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:27:40.151] [INFO] cheese - inserting 1000 documents. first: Template:TMbegin/doc and last: Edward H. Griffith +[2018-02-13T08:27:40.190] [INFO] cheese - inserting 1000 documents. first: Serenity film and last: Category:Geography of Indianapolis +[2018-02-13T08:27:40.202] [INFO] cheese - inserting 1000 documents. first: Ptolemy III of Egypt and last: Duffs device +[2018-02-13T08:27:40.224] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:27:40.297] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:27:40.371] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:27:40.483] [INFO] cheese - inserting 1000 documents. first: Raphael Semmes and last: Marc Rich +[2018-02-13T08:27:40.491] [INFO] cheese - inserting 1000 documents. first: Fitzralph, Richard and last: Horrors (GARO) +[2018-02-13T08:27:40.626] [INFO] cheese - inserting 1000 documents. first: Template:User from Cape Verde/doc and last: Richard Battley +[2018-02-13T08:27:40.669] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:27:40.673] [INFO] cheese - batch complete in: 1.768 secs +[2018-02-13T08:27:40.701] [INFO] cheese - inserting 1000 documents. first: Master Players Concert Series and last: 1901 Maryland Aggies football team +[2018-02-13T08:27:40.716] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:27:40.829] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:27:40.842] [INFO] cheese - inserting 1000 documents. first: Onorede Ehwareme and last: Mariana Roriz +[2018-02-13T08:27:40.933] [INFO] cheese - inserting 1000 documents. first: Turkmenneft and last: Kings Creek (Mississippi River Ontario) +[2018-02-13T08:27:40.958] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:27:41.005] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:27:41.184] [INFO] cheese - inserting 1000 documents. first: Category:Women in finance and last: Category:Hawaii Rainbow Warriors baseball players +[2018-02-13T08:27:41.196] [INFO] cheese - inserting 1000 documents. first: Minister of Agriculture, Forestry and Fisheries and last: Dave McCanles +[2018-02-13T08:27:41.250] [INFO] cheese - inserting 1000 documents. first: File:Killafornia.jpg and last: NZR DXR class +[2018-02-13T08:27:41.257] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:27:41.263] [INFO] cheese - inserting 1000 documents. first: The Herd (1979 film) and last: Madeline Island, Wis. +[2018-02-13T08:27:41.287] [INFO] cheese - batch complete in: 1.668 secs +[2018-02-13T08:27:41.362] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:27:41.369] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:27:41.494] [INFO] cheese - inserting 1000 documents. first: Billiebob Ultralight Flightpark and last: Wikipedia:WikiProject Spam/LinkReports/ridof-acne.com +[2018-02-13T08:27:41.571] [INFO] cheese - inserting 1000 documents. first: Single Carrier FDMA (SC-FDMA) and last: Template:A Region D +[2018-02-13T08:27:41.606] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:27:41.645] [INFO] cheese - inserting 1000 documents. first: Williams Lake First Nation and last: Postmodern vertigo +[2018-02-13T08:27:41.696] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:27:41.831] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:27:41.996] [INFO] cheese - inserting 1000 documents. first: Emperor Houzhu of Northern Qi and last: Switchin' Kitten +[2018-02-13T08:27:42.084] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:27:42.129] [INFO] cheese - inserting 1000 documents. first: The League of the Militant Atheist and last: Bathyuroconger +[2018-02-13T08:27:42.222] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:27:42.234] [INFO] cheese - inserting 1000 documents. first: File:Secretorigins manhunters.jpg and last: Sergei Pavlovich Baltacha +[2018-02-13T08:27:42.292] [INFO] cheese - inserting 1000 documents. first: Category:Transportation buildings and structures in West Virginia and last: Template:Taxonomy/Breda +[2018-02-13T08:27:42.295] [INFO] cheese - inserting 1000 documents. first: Daniel Ziegler and last: Captain Cook +[2018-02-13T08:27:42.301] [INFO] cheese - inserting 1000 documents. first: Guinness Publishing and last: Fiori di polvere +[2018-02-13T08:27:42.334] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:27:42.389] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:27:42.461] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:27:42.466] [INFO] cheese - inserting 1000 documents. first: Ben E. King's Greatest Hits and last: Independent Citizens' Association +[2018-02-13T08:27:42.539] [INFO] cheese - batch complete in: 1.866 secs +[2018-02-13T08:27:42.664] [INFO] cheese - inserting 1000 documents. first: Permian investment partners and last: File:Erasure single VOL.jpg +[2018-02-13T08:27:42.671] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:27:42.780] [INFO] cheese - inserting 1000 documents. first: Drabske svetnicky and last: IV&V +[2018-02-13T08:27:42.787] [INFO] cheese - batch complete in: 1.499 secs +[2018-02-13T08:27:42.890] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:27:42.920] [INFO] cheese - inserting 1000 documents. first: Hégen and last: Bahama warbler +[2018-02-13T08:27:43.003] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:27:43.093] [INFO] cheese - inserting 1000 documents. first: Jaane Kya Hoga Rama Re and last: Ahmed Raza (cricketer, born 1983) +[2018-02-13T08:27:43.120] [INFO] cheese - inserting 1000 documents. first: File:Max Terhune.gif and last: Gum Comics Plus +[2018-02-13T08:27:43.179] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:27:43.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tortoise Vs. Hare and last: Koban (coin) +[2018-02-13T08:27:43.250] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:27:43.308] [INFO] cheese - inserting 1000 documents. first: File:EHSS OriginalSchoolDrawing.jpg and last: Putney Town Rowing Club +[2018-02-13T08:27:43.329] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:27:43.393] [INFO] cheese - inserting 1000 documents. first: Surmalinsky Uyezd and last: The Slow Mo Guys +[2018-02-13T08:27:43.439] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:27:43.524] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:27:43.546] [INFO] cheese - inserting 1000 documents. first: Girard (MFL station) and last: Pietro Faccini +[2018-02-13T08:27:43.570] [INFO] cheese - inserting 1000 documents. first: ITunes Festival: London 2011 (Adele EP) and last: Category:Bank buildings in New York City +[2018-02-13T08:27:43.654] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:27:43.683] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:27:43.778] [INFO] cheese - inserting 1000 documents. first: Star Parivaar Award for Favourite Sasur and last: Wikipedia:Meetup/NYC/AfroCrowd/12-2015-Film-BPL +[2018-02-13T08:27:43.808] [INFO] cheese - inserting 1000 documents. first: Violin Sonata (Shostakovich) and last: The Roman Catholic Church in Tanzania +[2018-02-13T08:27:43.846] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:27:43.881] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:27:43.941] [INFO] cheese - inserting 1000 documents. first: Psychological projection and last: Bai Chongxi +[2018-02-13T08:27:44.049] [INFO] cheese - inserting 1000 documents. first: Children of Men (film) and last: Spiritwood, North Dakota +[2018-02-13T08:27:44.072] [INFO] cheese - batch complete in: 1.533 secs +[2018-02-13T08:27:44.137] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:27:44.168] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates with red links/133 and last: Italian films of 1943 +[2018-02-13T08:27:44.198] [INFO] cheese - inserting 1000 documents. first: Belesis and last: Martin Hudec (rally driver) +[2018-02-13T08:27:44.259] [INFO] cheese - inserting 1000 documents. first: Vaughan (disambiguation) and last: WTTH +[2018-02-13T08:27:44.267] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:27:44.304] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:27:44.339] [INFO] cheese - inserting 1000 documents. first: Mu Ursae Majoris and last: Wikipedia:Votes for deletion/FilePile (second nomination) +[2018-02-13T08:27:44.377] [INFO] cheese - inserting 1000 documents. first: White bully and last: File:Metro bazar silchar.jpg +[2018-02-13T08:27:44.408] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:27:44.464] [INFO] cheese - inserting 1000 documents. first: David Kennerly and last: Guatemalan presidential election, August 1920 +[2018-02-13T08:27:44.486] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:27:44.524] [INFO] cheese - batch complete in: 1.195 secs +[2018-02-13T08:27:44.617] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:27:44.839] [INFO] cheese - inserting 1000 documents. first: Ken Zisa and last: Adamsville, Rhode Island +[2018-02-13T08:27:44.927] [INFO] cheese - inserting 1000 documents. first: Category:Campeonato Goiano seasons and last: Great Hanging at Gainesville +[2018-02-13T08:27:44.937] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:27:44.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/portable-usb.com and last: Ágotakövesd +[2018-02-13T08:27:44.985] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:27:45.138] [INFO] cheese - inserting 1000 documents. first: Timeline of Islamic history 14th Century and last: Wikipedia:Votes for deletion/Dom The Bomb +[2018-02-13T08:27:45.197] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:27:45.266] [INFO] cheese - inserting 1000 documents. first: Coventry Lake and last: Filipe Ferreira +[2018-02-13T08:27:45.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Santa's Village East Dundee, Illinois and last: Biogeographic provinces +[2018-02-13T08:27:45.317] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:27:45.371] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:27:45.408] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:27:45.459] [INFO] cheese - inserting 1000 documents. first: Beizhen and last: Fall for Dance 2004 +[2018-02-13T08:27:45.564] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:27:45.702] [INFO] cheese - inserting 1000 documents. first: Carolina, Rhode Island and last: Wikipedia:Articles for deletion/Nina Nevelson +[2018-02-13T08:27:45.708] [INFO] cheese - inserting 1000 documents. first: Puerto Rico Airport and last: Only Royale +[2018-02-13T08:27:45.785] [INFO] cheese - inserting 1000 documents. first: Union Carbide and last: Floris V, Count of Holland +[2018-02-13T08:27:45.805] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:27:45.814] [INFO] cheese - inserting 1000 documents. first: Rozsonda and last: Orbitofrontal artery +[2018-02-13T08:27:45.790] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:27:45.879] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:27:45.933] [INFO] cheese - inserting 1000 documents. first: Rose Marie Pangborn and last: Orv Madden +[2018-02-13T08:27:45.936] [INFO] cheese - batch complete in: 1.863 secs +[2018-02-13T08:27:46.005] [INFO] cheese - inserting 1000 documents. first: Category:Rail transport in Chile and last: John Litchfield (politician) +[2018-02-13T08:27:46.006] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:27:46.046] [INFO] cheese - inserting 1000 documents. first: Template:National Action (Italy)/meta/color and last: Keep Up (KSI song) +[2018-02-13T08:27:46.156] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T08:27:46.216] [INFO] cheese - inserting 1000 documents. first: Around the World in 80 days and last: Sangre De Mi Sangre +[2018-02-13T08:27:46.267] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:27:46.376] [INFO] cheese - inserting 1000 documents. first: The Great British Bake Off (series 4) and last: National parks in Venezuela +[2018-02-13T08:27:46.506] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:27:46.570] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Spiritual density/archive1 and last: Wikipedia:Votes for deletion/Nutrient premix +[2018-02-13T08:27:46.594] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:27:46.642] [INFO] cheese - inserting 1000 documents. first: Kirmiyan and last: Cheung Kin Fung +[2018-02-13T08:27:46.639] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:27:46.779] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:27:46.864] [INFO] cheese - inserting 1000 documents. first: Henry Edward Fox-Strangways, 5th Earl of Ilchester and last: Cecil (Passions) +[2018-02-13T08:27:46.886] [INFO] cheese - inserting 1000 documents. first: Strojnik S-2A and last: Timoci Matanavou +[2018-02-13T08:27:46.981] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T08:27:47.155] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:27:47.187] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Levels of organization (ecology) and last: Healthcare in Madagascar +[2018-02-13T08:27:47.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Nick Naysmyth and last: Wikipedia:Votes for deletion/Buzz beer +[2018-02-13T08:27:47.264] [INFO] cheese - inserting 1000 documents. first: Michael Kinzer House and last: SUPREME BEING +[2018-02-13T08:27:47.292] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/File:Biological cell.svg and last: File:Abacus 1997 DavidFosterWallace GirlwithCuriousHair FrontCover.jpg +[2018-02-13T08:27:47.319] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T08:27:47.331] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:27:47.325] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:27:47.437] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:27:47.702] [INFO] cheese - inserting 1000 documents. first: Template:16TeamBracket-2legs-except final/doc and last: 389th Bombardment Group (Heavy) +[2018-02-13T08:27:47.816] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:27:47.870] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/David Boothroyd and last: File:Flash And The Pan - Lights In The Night CD album cover.jpg +[2018-02-13T08:27:47.954] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:27:47.986] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2011-08-01 and last: Dara Khosrowshahi +[2018-02-13T08:27:47.999] [INFO] cheese - inserting 1000 documents. first: Pistols Akimbo and last: File:Gay Blades poster.jpg +[2018-02-13T08:27:48.037] [INFO] cheese - inserting 1000 documents. first: Serumavilangai and last: City of Las Vegas, Las Vegas Boulevard State Scenic Byway +[2018-02-13T08:27:48.053] [INFO] cheese - inserting 1000 documents. first: Neon lamp and last: New Jersey Route 179 +[2018-02-13T08:27:48.076] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:27:48.078] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T08:27:48.131] [INFO] cheese - inserting 1000 documents. first: Alexandru Cornea and last: CH3CH2CH2COOCH2CH2CH2CH3 +[2018-02-13T08:27:48.175] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Christian Metal and last: Template:LDS Temple/Dallas Texas Temple +[2018-02-13T08:27:48.190] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:27:48.271] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:27:48.318] [INFO] cheese - batch complete in: 2.382 secs +[2018-02-13T08:27:48.435] [INFO] cheese - batch complete in: 1.28 secs +[2018-02-13T08:27:48.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Frontpage turd and last: Wikipedia:Votes for deletion/Mike wilder +[2018-02-13T08:27:48.555] [INFO] cheese - inserting 1000 documents. first: Merrill Lynch's Application and last: Mark Blake +[2018-02-13T08:27:48.671] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:27:48.757] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:27:48.961] [INFO] cheese - inserting 1000 documents. first: Eugene Haynes and last: Bloor-Yonge (TTC) +[2018-02-13T08:27:49.065] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:27:49.092] [INFO] cheese - inserting 1000 documents. first: Leslie L. R. Hausburg and last: Semyon Alesker +[2018-02-13T08:27:49.100] [INFO] cheese - inserting 1000 documents. first: J. League Cup 2009 and last: Referendum 71 +[2018-02-13T08:27:49.153] [INFO] cheese - inserting 1000 documents. first: Dai Hoa and last: Christopaganism +[2018-02-13T08:27:49.260] [INFO] cheese - inserting 1000 documents. first: Furness Vale railway station and last: Wikipedia:Votes for deletion/English travellers +[2018-02-13T08:27:49.265] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:27:49.266] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T08:27:49.333] [INFO] cheese - inserting 1000 documents. first: Hacketon and last: Wikipedia:Suspected sock puppets/Creepy Crawler +[2018-02-13T08:27:49.342] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:27:49.354] [INFO] cheese - batch complete in: 1.083 secs +[2018-02-13T08:27:49.523] [INFO] cheese - batch complete in: 1.088 secs +[2018-02-13T08:27:49.659] [INFO] cheese - inserting 1000 documents. first: Christina baily and last: South Texas Community College +[2018-02-13T08:27:49.709] [INFO] cheese - inserting 1000 documents. first: Template:Country data Biervliet and last: Template:Sound & Color track listing +[2018-02-13T08:27:49.758] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:27:49.838] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:27:49.847] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/EFFL and last: Wikipedia:Votes for deletion/Dandenong Valley Highway +[2018-02-13T08:27:49.937] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:27:49.949] [INFO] cheese - inserting 1000 documents. first: Louise Xenia Rose Mountbatten and last: San Clemente loggerhead shrike +[2018-02-13T08:27:50.046] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:27:50.164] [INFO] cheese - inserting 1000 documents. first: St. Paul's Church, Diu and last: Panayapatti +[2018-02-13T08:27:50.254] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:27:50.296] [INFO] cheese - inserting 1000 documents. first: County Route 583 (New Jersey) and last: Ebla +[2018-02-13T08:27:50.415] [INFO] cheese - inserting 1000 documents. first: File:Florida Education Association (logo).png and last: Bismarck-Monument (Hamburg) +[2018-02-13T08:27:50.460] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Hanson County, South Dakota and last: File:MillisMA-seal.png +[2018-02-13T08:27:50.459] [INFO] cheese - batch complete in: 2.14 secs +[2018-02-13T08:27:50.546] [INFO] cheese - inserting 1000 documents. first: Strung Up (Nashville String Band album) and last: Cookeville, Tennessee micropolitan area +[2018-02-13T08:27:50.579] [INFO] cheese - inserting 1000 documents. first: Rock Dancer and last: Caesar Film +[2018-02-13T08:27:50.627] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:27:50.676] [INFO] cheese - batch complete in: 1.41 secs +[2018-02-13T08:27:50.807] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:27:50.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The old men and last: Studies in Swing +[2018-02-13T08:27:50.887] [INFO] cheese - inserting 1000 documents. first: Category:Treaties extended to the Coral Sea Islands and last: Wikipedia:Articles for deletion/Kenneth A. Bollen +[2018-02-13T08:27:50.917] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T08:27:50.981] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:27:51.000] [INFO] cheese - inserting 1000 documents. first: File:Neo Pornographia vol. 1 Cover.jpg and last: Certified Tissue Bank Specialist (CTBS) +[2018-02-13T08:27:51.045] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:27:51.142] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:27:51.514] [INFO] cheese - inserting 1000 documents. first: John Derek Page, Baron Whaddon and last: Patrick Houstoun, 1st Baronet +[2018-02-13T08:27:51.635] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T08:27:51.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bloxwich United A.F.C. and last: Haufe HA-G-1 Buggie +[2018-02-13T08:27:51.758] [INFO] cheese - inserting 1000 documents. first: Heritage Field at Stater Bros. Stadium and last: Category:Ambassadors of the Soviet Union to North Korea +[2018-02-13T08:27:51.789] [INFO] cheese - inserting 1000 documents. first: Głowiński monoplane and last: Ballets Russes and descendants +[2018-02-13T08:27:51.797] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:27:51.906] [INFO] cheese - batch complete in: 1.23 secs +[2018-02-13T08:27:51.934] [INFO] cheese - inserting 1000 documents. first: Donna Sheldon and last: Template:Membership/Data/São Tomé and Príncipe +[2018-02-13T08:27:51.983] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:27:52.077] [INFO] cheese - inserting 1000 documents. first: File:Pei plan galleria.jpg and last: Saginaw, Michigan (song) +[2018-02-13T08:27:52.180] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Roxie King and last: Jean Pariseau +[2018-02-13T08:27:52.180] [INFO] cheese - batch complete in: 1.135 secs +[2018-02-13T08:27:52.221] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:27:52.386] [INFO] cheese - batch complete in: 1.405 secs +[2018-02-13T08:27:52.442] [INFO] cheese - inserting 1000 documents. first: PHI-base and last: Oberland canal +[2018-02-13T08:27:52.586] [INFO] cheese - inserting 1000 documents. first: Decimal digit and last: William J. Janklow +[2018-02-13T08:27:52.590] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T08:27:52.651] [INFO] cheese - inserting 1000 documents. first: File:CJCD-FM 2015.png and last: 02nd Vidhan Sabha of Uttar Pradesh +[2018-02-13T08:27:52.694] [INFO] cheese - inserting 1000 documents. first: Urs Vercoli and last: Real me (Ayumi Hamasaki song) +[2018-02-13T08:27:52.789] [INFO] cheese - inserting 1000 documents. first: Hammer (Home and Away) and last: FC Ural +[2018-02-13T08:27:52.834] [INFO] cheese - inserting 1000 documents. first: Template:Membership/Data/Swaziland and last: Agta (mythical creature) +[2018-02-13T08:27:52.887] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:27:52.873] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:27:52.824] [INFO] cheese - batch complete in: 2.365 secs +[2018-02-13T08:27:52.985] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:27:52.995] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:27:53.270] [INFO] cheese - inserting 1000 documents. first: Denis Odoi and last: 11th Century CE +[2018-02-13T08:27:53.396] [INFO] cheese - batch complete in: 1.175 secs +[2018-02-13T08:27:53.494] [INFO] cheese - inserting 1000 documents. first: Saskatchewan Highway 755 and last: Sharon Runner +[2018-02-13T08:27:53.523] [INFO] cheese - inserting 1000 documents. first: Senator Ralph Owen Brewster and last: Realtime Games +[2018-02-13T08:27:53.525] [INFO] cheese - inserting 1000 documents. first: Portal:American Civil War/Selected event/09 and last: Svenska Cupen (disambiguation) +[2018-02-13T08:27:53.633] [INFO] cheese - inserting 1000 documents. first: Category:Romanesque architecture in the United Kingdom and last: File:CKAN Logo full color.png +[2018-02-13T08:27:53.641] [INFO] cheese - inserting 1000 documents. first: Category:Youth athletics and last: Aero Mirage TC-2 +[2018-02-13T08:27:53.666] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:27:53.710] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:27:53.727] [INFO] cheese - batch complete in: 1.341 secs +[2018-02-13T08:27:53.746] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:27:53.779] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:27:53.865] [INFO] cheese - inserting 1000 documents. first: 2nd Vidhan Sabha of Uttar Pradesh and last: Ron Southwick +[2018-02-13T08:27:53.955] [INFO] cheese - batch complete in: 1.082 secs +[2018-02-13T08:27:54.003] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Roger Mills County, Oklahoma and last: Category:Kyrgyzstani law +[2018-02-13T08:27:54.060] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:27:54.319] [INFO] cheese - inserting 1000 documents. first: Pain and nociception and last: Mozcom Communications +[2018-02-13T08:27:54.452] [INFO] cheese - inserting 1000 documents. first: Category:Bengali encyclopedias and last: Dorsal rami +[2018-02-13T08:27:54.600] [INFO] cheese - inserting 1000 documents. first: Education in romania and last: Legal Practice Course +[2018-02-13T08:27:54.618] [INFO] cheese - inserting 1000 documents. first: File:Corrected sami map III.PNG and last: Vstrechnaya +[2018-02-13T08:27:54.708] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:27:54.714] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T08:27:54.730] [INFO] cheese - inserting 1000 documents. first: Pantacordis scotinellum and last: Do Tappeh Pa'in +[2018-02-13T08:27:54.785] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:27:54.849] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T08:27:54.970] [INFO] cheese - inserting 1000 documents. first: File:Disability Now logo.png and last: Category:Tibetan diaspora in Europe +[2018-02-13T08:27:54.986] [INFO] cheese - inserting 1000 documents. first: Code name and last: Hugh McCalmont Cairns, 1st Earl of Cairns +[2018-02-13T08:27:55.001] [INFO] cheese - batch complete in: 1.221 secs +[2018-02-13T08:27:55.037] [INFO] cheese - inserting 1000 documents. first: Category:Angel Moroni and last: Kasra Anghaee +[2018-02-13T08:27:55.116] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:27:55.225] [INFO] cheese - batch complete in: 1.479 secs +[2018-02-13T08:27:55.364] [INFO] cheese - batch complete in: 2.54 secs +[2018-02-13T08:27:55.535] [INFO] cheese - inserting 1000 documents. first: Prescote and last: Workforce sciences +[2018-02-13T08:27:55.590] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:27:55.681] [INFO] cheese - inserting 1000 documents. first: File:Ths logo prev.jpg and last: The Rajon Music Group +[2018-02-13T08:27:55.886] [INFO] cheese - inserting 1000 documents. first: Do Tappeh Pain and last: SMUG +[2018-02-13T08:27:55.924] [INFO] cheese - inserting 1000 documents. first: Wanderlust (Gavin Rossdale album) and last: Henry de Beaumont, 4th Earl of Buchan +[2018-02-13T08:27:55.930] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:27:55.956] [INFO] cheese - inserting 1000 documents. first: Template:Ukraine squad UEFA Euro 2016 and last: Category:Namur geography stubs +[2018-02-13T08:27:55.988] [INFO] cheese - inserting 1000 documents. first: Common Poppy and last: Category:Former world's tallest buildings +[2018-02-13T08:27:56.069] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gloria Brame and last: Wikipedia:Featured picture candidates/Phantasmal poison frog +[2018-02-13T08:27:56.091] [INFO] cheese - batch complete in: 1.242 secs +[2018-02-13T08:27:56.147] [INFO] cheese - batch complete in: 1.145 secs +[2018-02-13T08:27:56.170] [INFO] cheese - batch complete in: 1.054 secs +[2018-02-13T08:27:56.282] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:27:56.297] [INFO] cheese - batch complete in: 1.511 secs +[2018-02-13T08:27:56.648] [INFO] cheese - inserting 1000 documents. first: Anti-war activist and last: Avalon Gardens, Los Angeles, California +[2018-02-13T08:27:56.729] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:27:56.838] [INFO] cheese - inserting 1000 documents. first: 1933–34 FC Barcelona season and last: Wikipedia:U&MSPACE +[2018-02-13T08:27:56.854] [INFO] cheese - inserting 1000 documents. first: Kim Dong Moon and last: Conseil constitutionnel +[2018-02-13T08:27:56.933] [INFO] cheese - inserting 1000 documents. first: File:XYZ Show Logo.png and last: Omct.org +[2018-02-13T08:27:56.971] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:27:56.973] [INFO] cheese - inserting 1000 documents. first: Koji Harunayan and last: Category:Pipile +[2018-02-13T08:27:56.962] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:27:57.034] [INFO] cheese - inserting 1000 documents. first: Forest red gum and last: USS Quicksilver (SP-281) +[2018-02-13T08:27:57.064] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:27:57.060] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:27:57.129] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:27:57.178] [INFO] cheese - inserting 1000 documents. first: Lord Cairns and last: Ellesmere Port +[2018-02-13T08:27:57.180] [INFO] cheese - inserting 1000 documents. first: Hardwicke, Gloucestershire and last: Wikipedia:ESP/S +[2018-02-13T08:27:57.319] [INFO] cheese - batch complete in: 1.022 secs +[2018-02-13T08:27:57.398] [INFO] cheese - batch complete in: 2.034 secs +[2018-02-13T08:27:57.627] [INFO] cheese - inserting 1000 documents. first: High School Musical 4: East Meets West and last: Meadowhead School +[2018-02-13T08:27:57.630] [INFO] cheese - inserting 1000 documents. first: Jessica Garretson Finch and last: 1964 Cupa României Final +[2018-02-13T08:27:57.637] [INFO] cheese - inserting 1000 documents. first: Krishna Paksha and last: Template:2013–14 Summit League men's basketball standings +[2018-02-13T08:27:57.730] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:27:57.791] [INFO] cheese - inserting 1000 documents. first: Erkembode and last: Rowing at the 2008 Summer Olympics +[2018-02-13T08:27:57.833] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:27:57.834] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:27:57.886] [INFO] cheese - inserting 1000 documents. first: Demographics of North Dakota and last: Veshist +[2018-02-13T08:27:57.920] [INFO] cheese - inserting 1000 documents. first: Burren Way and last: Colorado bug +[2018-02-13T08:27:57.968] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T08:27:58.020] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:27:58.139] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:27:58.379] [INFO] cheese - inserting 1000 documents. first: Capitoline Grounds and last: Miroslav Škoro i Ravnica +[2018-02-13T08:27:58.536] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:27:58.549] [INFO] cheese - inserting 1000 documents. first: Trade to GDP ratio and last: Louisiana Highway 1171 +[2018-02-13T08:27:58.564] [INFO] cheese - inserting 1000 documents. first: Kambarskoye Urban Settlement and last: HP Converged Cloud +[2018-02-13T08:27:58.666] [INFO] cheese - inserting 1000 documents. first: South American Championship 1945 and last: Association of Guineans in France +[2018-02-13T08:27:58.726] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:27:58.733] [INFO] cheese - inserting 1000 documents. first: Alamanii and last: Noble amateur +[2018-02-13T08:27:58.748] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T08:27:58.882] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:27:58.924] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:27:58.967] [INFO] cheese - inserting 1000 documents. first: Implementation (computer science) and last: 1988–89 Bulgarian Hockey League season +[2018-02-13T08:27:59.037] [INFO] cheese - inserting 1000 documents. first: Martin Garrick and last: Perpendicular plate of the ethmoid bone +[2018-02-13T08:27:59.135] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:27:59.181] [INFO] cheese - batch complete in: 1.213 secs +[2018-02-13T08:27:59.287] [INFO] cheese - inserting 1000 documents. first: Nisqually and last: Daito Bunka University +[2018-02-13T08:27:59.414] [INFO] cheese - batch complete in: 2.015 secs +[2018-02-13T08:27:59.572] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ADMINGUIDE/R and last: Category:University of Seychelles +[2018-02-13T08:27:59.625] [INFO] cheese - inserting 1000 documents. first: Category:Short stories by Arkady Gaidar and last: David Eifion Evans +[2018-02-13T08:27:59.630] [INFO] cheese - inserting 1000 documents. first: Mechanical traveler and last: The Girona +[2018-02-13T08:27:59.651] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:27:59.675] [INFO] cheese - inserting 1000 documents. first: Gordon Henderson (band director) and last: El Embrujo Airport +[2018-02-13T08:27:59.730] [INFO] cheese - inserting 1000 documents. first: The Two Pound Tram and last: Ethical Oil +[2018-02-13T08:27:59.756] [INFO] cheese - batch complete in: 1.22 secs +[2018-02-13T08:27:59.761] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:27:59.810] [INFO] cheese - inserting 1000 documents. first: When Cicadas Cry Bonds and last: 1956 in the United States +[2018-02-13T08:27:59.809] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:27:59.910] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:27:59.914] [INFO] cheese - inserting 1000 documents. first: Colour Out of Space and last: Akatarawa +[2018-02-13T08:28:00.055] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:28:00.063] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T08:28:00.224] [INFO] cheese - inserting 1000 documents. first: Category:Animation studios navigational boxes and last: Xinping Liang +[2018-02-13T08:28:00.366] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:28:00.593] [INFO] cheese - inserting 1000 documents. first: Sharp, Philip Allen and last: Ron Villone +[2018-02-13T08:28:00.640] [INFO] cheese - inserting 1000 documents. first: College sa and last: File:IrremeDIABLE cover.jpg +[2018-02-13T08:28:00.655] [INFO] cheese - inserting 1000 documents. first: Breathe (Don't Stop) and last: Coffee poop +[2018-02-13T08:28:00.706] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:28:00.785] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:28:00.811] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:28:00.899] [INFO] cheese - inserting 1000 documents. first: Category:1864 in Kansas and last: Parau Gruiului +[2018-02-13T08:28:00.965] [INFO] cheese - inserting 1000 documents. first: Emile Mbamba and last: Category:University museums in Canada +[2018-02-13T08:28:00.969] [INFO] cheese - inserting 1000 documents. first: Category:Wars involving Guinea-Bissau and last: Air Prods & Chems +[2018-02-13T08:28:01.027] [INFO] cheese - inserting 1000 documents. first: Ministero degli Affari Esteri della Repubblica Italiana and last: Category:1501 establishments in Japan +[2018-02-13T08:28:01.030] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:28:01.101] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:28:01.102] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T08:28:01.157] [INFO] cheese - batch complete in: 1.094 secs +[2018-02-13T08:28:01.169] [INFO] cheese - inserting 1000 documents. first: SAME (protocol) and last: Martin Short +[2018-02-13T08:28:01.346] [INFO] cheese - batch complete in: 1.932 secs +[2018-02-13T08:28:01.420] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jo Green and last: Wikipedia:Votes for deletion/Michael E. Brooks +[2018-02-13T08:28:01.473] [INFO] cheese - inserting 1000 documents. first: Lists of secularists and last: Hangar Radio Z +[2018-02-13T08:28:01.524] [INFO] cheese - inserting 1000 documents. first: James Forrest (footballer born 1991) and last: Wikipedia:Articles for deletion/Mashregh News +[2018-02-13T08:28:01.548] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:28:01.588] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:28:01.674] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:28:01.830] [INFO] cheese - inserting 1000 documents. first: Ludwig Worman and last: Brad Zavisha +[2018-02-13T08:28:01.883] [INFO] cheese - inserting 1000 documents. first: SsangYong Tivolan and last: Category:Political symbols by ideology +[2018-02-13T08:28:01.892] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:28:01.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/xoxo-gossipgirl.tv-soap.com and last: MacIntosh Fort +[2018-02-13T08:28:01.906] [INFO] cheese - inserting 1000 documents. first: Patrangeni and last: Ov3640 +[2018-02-13T08:28:01.997] [INFO] cheese - inserting 1000 documents. first: Dainohara Station, Sendai and last: Wikipedia:Votes for deletion/Hamster Language +[2018-02-13T08:28:02.017] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:28:02.018] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:28:02.089] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:28:02.101] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:28:02.295] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Logical abacus and last: Category:19th-century establishments in German East Africa +[2018-02-13T08:28:02.406] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:28:02.410] [INFO] cheese - inserting 1000 documents. first: Mayor Buenaventura Vivas Airport and last: Have I Got a Story for You (Batman: Gotham Knight) +[2018-02-13T08:28:02.538] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:28:02.587] [INFO] cheese - inserting 1000 documents. first: André Sogliuzzo and last: Saskatchewan Highway 752 +[2018-02-13T08:28:02.592] [INFO] cheese - inserting 1000 documents. first: Action of 12 October 1798 and last: Wikipedia:Votes for deletion/Alfredo naim +[2018-02-13T08:28:02.639] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:28:02.671] [INFO] cheese - inserting 1000 documents. first: Santissima Annunziata, Barga and last: File:L.A. Noire motion capture.jpg +[2018-02-13T08:28:02.708] [INFO] cheese - inserting 1000 documents. first: Zhang Xi (volleyball) and last: Taylor Ridge, Illinois +[2018-02-13T08:28:02.740] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:28:02.822] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:28:02.844] [INFO] cheese - inserting 1000 documents. first: Ngota Ifeny and last: 11th Wisconsin Regiment +[2018-02-13T08:28:02.870] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:28:02.996] [INFO] cheese - inserting 1000 documents. first: Cristofano Malvezzi and last: Noether +[2018-02-13T08:28:02.933] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:28:03.163] [INFO] cheese - inserting 1000 documents. first: Ivy Lea, Ontario and last: Gallichan, Quebec +[2018-02-13T08:28:03.173] [INFO] cheese - batch complete in: 1.827 secs +[2018-02-13T08:28:03.234] [INFO] cheese - inserting 1000 documents. first: Frederick Elmes and last: Snake River (Nebraska) +[2018-02-13T08:28:03.237] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:28:03.357] [INFO] cheese - inserting 1000 documents. first: Gorimaya Tamang and last: Korolev, Nikolai Fyodorovich +[2018-02-13T08:28:03.366] [INFO] cheese - inserting 1000 documents. first: Parallel 36° north and last: Karlton Rosholt +[2018-02-13T08:28:03.431] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:28:03.473] [INFO] cheese - inserting 1000 documents. first: Category:Political history of Samoa and last: Template:Baseball primary link/doc +[2018-02-13T08:28:03.499] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:28:03.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tracilordsmovieclub.org and last: Jillian Vegan +[2018-02-13T08:28:03.689] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:28:03.703] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:28:03.756] [INFO] cheese - inserting 1000 documents. first: Template:Burt Reynolds and last: Mink Mile +[2018-02-13T08:28:03.808] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:28:04.082] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:28:04.212] [INFO] cheese - inserting 1000 documents. first: Soviet-Polish War and last: Mitiga International Airport +[2018-02-13T08:28:04.288] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:28:04.438] [INFO] cheese - inserting 1000 documents. first: Squash at the 2013 Asian Youth Games and last: Riptide (Vance Joy song) +[2018-02-13T08:28:04.488] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:28:04.513] [INFO] cheese - inserting 1000 documents. first: Universidad de Antofagasta and last: Val de Fontenay (Paris RER) +[2018-02-13T08:28:04.628] [INFO] cheese - batch complete in: 1.391 secs +[2018-02-13T08:28:04.634] [INFO] cheese - inserting 1000 documents. first: Drinking in Finland and last: Kwamtim One language +[2018-02-13T08:28:04.700] [INFO] cheese - inserting 1000 documents. first: George Britton Halford and last: Nick Warren (cricketer) +[2018-02-13T08:28:04.733] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/American Society for the Defense of Tradition, Family and Property and last: Clairvaux MacKillop College +[2018-02-13T08:28:04.764] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:28:04.816] [INFO] cheese - inserting 1000 documents. first: Template:Baseball secondary link/doc and last: There's Irish in Our Eyes +[2018-02-13T08:28:04.836] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T08:28:04.840] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T08:28:04.933] [INFO] cheese - inserting 1000 documents. first: Craig Thomson (disambiguation) and last: Entrapment neuropathy +[2018-02-13T08:28:04.957] [INFO] cheese - batch complete in: 1.254 secs +[2018-02-13T08:28:05.056] [INFO] cheese - inserting 1000 documents. first: Neoconger perlongus and last: File:The Story of My Life Cover.jpg +[2018-02-13T08:28:05.069] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:28:05.174] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:28:05.246] [INFO] cheese - inserting 1000 documents. first: Whitney Clayton and last: Cronan Naofa BNS +[2018-02-13T08:28:05.284] [INFO] cheese - inserting 1000 documents. first: Federal Charter of 1291 and last: Guy Steele, Jr. +[2018-02-13T08:28:05.364] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:28:05.399] [INFO] cheese - inserting 1000 documents. first: Peach-tree and last: Wikipedia:Votes for deletion/Sunder +[2018-02-13T08:28:05.434] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:28:05.490] [INFO] cheese - inserting 1000 documents. first: Welling (disambiguation) and last: Template:A Coruña (province) +[2018-02-13T08:28:05.539] [INFO] cheese - batch complete in: 2.365 secs +[2018-02-13T08:28:05.590] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:28:05.615] [INFO] cheese - inserting 1000 documents. first: Category:Circuits of the Song dynasty and last: McCallum Medal +[2018-02-13T08:28:05.621] [INFO] cheese - inserting 1000 documents. first: Kabore One language and last: Allgemeiner Deutscher Gewerkschaftsbund +[2018-02-13T08:28:05.737] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:28:05.825] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:28:05.831] [INFO] cheese - inserting 1000 documents. first: Namua and last: 1998 Gold Coast Classic +[2018-02-13T08:28:05.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Scamper and last: Acoustic feedback +[2018-02-13T08:28:06.017] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:28:06.019] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:28:06.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/MyDailyLeaks and last: 380SEL +[2018-02-13T08:28:06.229] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:28:06.417] [INFO] cheese - inserting 1000 documents. first: Category:Airlines established in 1981 and last: Category:Iron and steel mills +[2018-02-13T08:28:06.435] [INFO] cheese - inserting 1000 documents. first: Société française pour l'arbitrage entre les Nations and last: Vaggeryds kommun +[2018-02-13T08:28:06.470] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Musaeus College and last: Category:1919 in Nebraska +[2018-02-13T08:28:06.533] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:28:06.557] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Homosexual Cakewalk and last: Wikipedia:Votes for deletion/GameTalk +[2018-02-13T08:28:06.623] [INFO] cheese - batch complete in: 1.259 secs +[2018-02-13T08:28:06.640] [INFO] cheese - inserting 1000 documents. first: Draft:Bill Asher (guitar maker) and last: Category:Bengali-speaking people by occupation +[2018-02-13T08:28:06.656] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:28:06.662] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:28:06.854] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:28:06.980] [INFO] cheese - inserting 1000 documents. first: Eskandar and last: File:Moody Foundation Logo.png +[2018-02-13T08:28:07.023] [INFO] cheese - inserting 1000 documents. first: Light Up the World (album) and last: Guanqiao, Liuyang +[2018-02-13T08:28:07.251] [INFO] cheese - batch complete in: 1.234 secs +[2018-02-13T08:28:07.252] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:28:07.388] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Port Arthur massacre theories and last: Wikipedia:Votes for deletion/Jewish Renegades +[2018-02-13T08:28:07.562] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:28:07.948] [INFO] cheese - inserting 1000 documents. first: List of énarques and last: London Cheerleaders Zoo Riot +[2018-02-13T08:28:07.968] [INFO] cheese - inserting 1000 documents. first: Blood's Voice and last: Dniester Hydro-Accumulating Power Station +[2018-02-13T08:28:07.983] [INFO] cheese - inserting 1000 documents. first: File:Pamela1982112706GMS2IR.jpg and last: Bloody Crescent +[2018-02-13T08:28:08.020] [INFO] cheese - inserting 1000 documents. first: International date line and last: Wildcard DNS entry +[2018-02-13T08:28:08.036] [INFO] cheese - batch complete in: 1.182 secs +[2018-02-13T08:28:08.043] [INFO] cheese - inserting 1000 documents. first: Pontiac 200 (Nazareth) and last: File:Conviction of the Heart by Kenny Loggins.jpg +[2018-02-13T08:28:08.061] [INFO] cheese - batch complete in: 1.405 secs +[2018-02-13T08:28:08.078] [INFO] cheese - batch complete in: 1.545 secs +[2018-02-13T08:28:08.080] [INFO] cheese - inserting 1000 documents. first: Russian Dalian and last: Category:Internet companies of France +[2018-02-13T08:28:08.082] [INFO] cheese - inserting 1000 documents. first: File:22 Squadron RAF crest.jpg and last: Wikipedia:Votes for deletion/CreateWindow +[2018-02-13T08:28:08.095] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:28:08.187] [INFO] cheese - inserting 1000 documents. first: Kinda kommun and last: Religion in Liberia +[2018-02-13T08:28:08.287] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:28:08.387] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:28:08.339] [INFO] cheese - batch complete in: 1.715 secs +[2018-02-13T08:28:08.402] [INFO] cheese - batch complete in: 2.863 secs +[2018-02-13T08:28:08.869] [INFO] cheese - inserting 1000 documents. first: Mark Greaney (author) and last: Poriyya-Kefar Avoda +[2018-02-13T08:28:08.893] [INFO] cheese - inserting 1000 documents. first: File:Theo3reflection.png and last: Category:Stub-Class Medieval warfare articles +[2018-02-13T08:28:08.931] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:28:08.954] [INFO] cheese - inserting 1000 documents. first: BAH and last: David Anderson (Australian governor) +[2018-02-13T08:28:08.959] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:28:09.007] [INFO] cheese - inserting 1000 documents. first: Category:Internet companies of Germany and last: Кузьмин +[2018-02-13T08:28:09.023] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:28:09.026] [INFO] cheese - inserting 1000 documents. first: Prince Yun and last: Pizhansky District +[2018-02-13T08:28:09.071] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:28:09.120] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:28:09.155] [INFO] cheese - inserting 1000 documents. first: Cabinet İnönü VIII and last: NB&M Railways +[2018-02-13T08:28:09.156] [INFO] cheese - inserting 1000 documents. first: Paxton's Tower and last: Nicrophorus sausai +[2018-02-13T08:28:09.344] [INFO] cheese - batch complete in: 1.248 secs +[2018-02-13T08:28:09.360] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:28:09.667] [INFO] cheese - inserting 1000 documents. first: Category:Military aviation articles by quality and last: Pygmy chimp +[2018-02-13T08:28:09.669] [INFO] cheese - inserting 1000 documents. first: Poriyya-Newe Oved and last: Wikipedia:Sockpuppet investigations/Aamir.aka.mraka +[2018-02-13T08:28:09.687] [INFO] cheese - inserting 1000 documents. first: Giron, Ain and last: Wikipedia:Votes for deletion/Fletcher International Abattoir +[2018-02-13T08:28:09.752] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:28:09.770] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:28:09.785] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:28:10.038] [INFO] cheese - inserting 1000 documents. first: File:Colorado esporte clube logo.gif and last: The Lizard King +[2018-02-13T08:28:10.041] [INFO] cheese - inserting 1000 documents. first: The National Center on Time & Learning and last: Wikipedia:Possibly unfree files/2013 August 20 +[2018-02-13T08:28:10.100] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:28:10.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Lithuania/Watchlist and last: Rebel Drones +[2018-02-13T08:28:10.179] [INFO] cheese - inserting 1000 documents. first: Podosinovsky District and last: Primera División de Fútbol Profesional - Clausura 2011 +[2018-02-13T08:28:10.297] [INFO] cheese - batch complete in: 1.226 secs +[2018-02-13T08:28:10.356] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:28:10.359] [INFO] cheese - batch complete in: 1.239 secs +[2018-02-13T08:28:10.610] [INFO] cheese - inserting 1000 documents. first: TINLA and last: List of Aromanians +[2018-02-13T08:28:10.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Islamic fascism and last: Tommy Victor +[2018-02-13T08:28:10.731] [INFO] cheese - inserting 1000 documents. first: Houston's whitebeam and last: Yaguaraparo +[2018-02-13T08:28:10.780] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:28:10.915] [INFO] cheese - batch complete in: 2.513 secs +[2018-02-13T08:28:10.954] [INFO] cheese - batch complete in: 1.184 secs +[2018-02-13T08:28:11.036] [INFO] cheese - inserting 1000 documents. first: 1985-86 Pakistani cricket season and last: File:REX021 036.jpg +[2018-02-13T08:28:11.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 August 20 and last: Category:Underwater diving templates +[2018-02-13T08:28:11.114] [INFO] cheese - batch complete in: 1.329 secs +[2018-02-13T08:28:11.212] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/WikiPrincess and last: Tu Vuo Fa L'Americano +[2018-02-13T08:28:11.238] [INFO] cheese - inserting 1000 documents. first: Receiver function and last: Scheitholt +[2018-02-13T08:28:11.266] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T08:28:11.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Constance E. Cumbey and last: Wikipedia:Votes for deletion/Andrew Krystal +[2018-02-13T08:28:11.414] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:28:11.443] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:28:11.450] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T08:28:11.631] [INFO] cheese - inserting 1000 documents. first: Professor Griff - Disturb N Tha Peace (Freedom Is Just A Mind Revolution Away) and last: Half-cocked (film) +[2018-02-13T08:28:11.927] [INFO] cheese - batch complete in: 1.568 secs +[2018-02-13T08:28:12.033] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Fifteen (restaurant) and last: Richardson's Law +[2018-02-13T08:28:12.195] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:28:12.242] [INFO] cheese - inserting 1000 documents. first: Löwenthal's method and last: Category:Climate of Vatican City +[2018-02-13T08:28:12.270] [INFO] cheese - inserting 1000 documents. first: Template:Proriv (Transnistria)/meta/color and last: Jay Sanders +[2018-02-13T08:28:12.287] [INFO] cheese - inserting 1000 documents. first: List of national historic trails in Colorado and last: Sun Daly +[2018-02-13T08:28:12.315] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:28:12.354] [INFO] cheese - batch complete in: 1.4 secs +[2018-02-13T08:28:12.394] [INFO] cheese - inserting 1000 documents. first: Northern Court (Japan) and last: Template:User cu-3 +[2018-02-13T08:28:12.455] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:28:12.555] [INFO] cheese - inserting 1000 documents. first: Hadambu and last: SS Empire Beaver +[2018-02-13T08:28:12.554] [INFO] cheese - batch complete in: 1.439 secs +[2018-02-13T08:28:12.682] [INFO] cheese - batch complete in: 1.232 secs +[2018-02-13T08:28:12.787] [INFO] cheese - inserting 1000 documents. first: Kameshkovsky District and last: J. Cole production discography +[2018-02-13T08:28:12.905] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:28:13.165] [INFO] cheese - inserting 1000 documents. first: Le Hien Tong (disambiguation) and last: La vila Joiosa +[2018-02-13T08:28:13.251] [INFO] cheese - inserting 1000 documents. first: Freddie Foxxx Is Here and last: M1942 Bayonet +[2018-02-13T08:28:13.297] [INFO] cheese - inserting 1000 documents. first: Paul van Buitenen and last: Treaty of London (1839) +[2018-02-13T08:28:13.373] [INFO] cheese - inserting 1000 documents. first: Ferdowsi Gas Field and last: File:Drive You Home Again.jpg +[2018-02-13T08:28:13.408] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:28:13.451] [INFO] cheese - inserting 1000 documents. first: Lmpat Monastery and last: Category:Olympiacos F.C. players +[2018-02-13T08:28:13.464] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Trevico and last: File:Edin Atic 2015.jpg +[2018-02-13T08:28:13.477] [INFO] cheese - inserting 1000 documents. first: Robbie Shakespeare and last: Heliconid +[2018-02-13T08:28:13.524] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:28:13.607] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T08:28:13.627] [INFO] cheese - batch complete in: 1.273 secs +[2018-02-13T08:28:13.688] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:28:13.805] [INFO] cheese - batch complete in: 1.61 secs +[2018-02-13T08:28:13.921] [INFO] cheese - batch complete in: 3.006 secs +[2018-02-13T08:28:14.055] [INFO] cheese - inserting 1000 documents. first: Category:Sheffield United F.C. articles by quality and last: Pagothenia +[2018-02-13T08:28:14.223] [INFO] cheese - batch complete in: 1.318 secs +[2018-02-13T08:28:14.226] [INFO] cheese - inserting 1000 documents. first: Category:1869 in British Columbia and last: Category:TAAR1 agonists +[2018-02-13T08:28:14.323] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:28:14.416] [INFO] cheese - inserting 1000 documents. first: Lloyd Tombleson and last: Flint-Goodridge Hospital +[2018-02-13T08:28:14.571] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:28:14.651] [INFO] cheese - inserting 1000 documents. first: XHY-TDT and last: Sanctuary Cove +[2018-02-13T08:28:14.703] [INFO] cheese - inserting 1000 documents. first: Category:Performing arts centers in New York (state) and last: L'Indien +[2018-02-13T08:28:14.716] [INFO] cheese - inserting 1000 documents. first: W. R. Grace Building and last: Stix Baer & Fuller +[2018-02-13T08:28:14.778] [INFO] cheese - inserting 1000 documents. first: Artificial Voice Box and last: Entoloma +[2018-02-13T08:28:14.795] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T08:28:14.802] [INFO] cheese - inserting 1000 documents. first: K-1 Beast 2004 in Shizuoka and last: Vergiss Es +[2018-02-13T08:28:14.850] [INFO] cheese - batch complete in: 1.161 secs +[2018-02-13T08:28:14.940] [INFO] cheese - inserting 1000 documents. first: Edgars Bergs and last: Modi group +[2018-02-13T08:28:14.964] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:28:15.082] [INFO] cheese - batch complete in: 1.277 secs +[2018-02-13T08:28:15.134] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:28:15.166] [INFO] cheese - batch complete in: 1.641 secs +[2018-02-13T08:28:15.377] [INFO] cheese - inserting 1000 documents. first: Category:2016 American television series endings and last: Template:Parent monthly clean-up category progress/doc +[2018-02-13T08:28:15.466] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:28:15.685] [INFO] cheese - inserting 1000 documents. first: 1961 Cotton Bowl and last: Mopa-Muro +[2018-02-13T08:28:15.704] [INFO] cheese - inserting 1000 documents. first: 2013–14 Georgian Cup and last: Template:Did you know nominations/Michael Edgson +[2018-02-13T08:28:15.707] [INFO] cheese - inserting 1000 documents. first: Edward Craig (disambiguation) and last: Category:1993 in Brazilian football +[2018-02-13T08:28:15.737] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:28:15.767] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:28:15.771] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:28:15.865] [INFO] cheese - inserting 1000 documents. first: File:Eg3.png and last: Clarence Jones +[2018-02-13T08:28:15.932] [INFO] cheese - inserting 1000 documents. first: Drug education and last: Volcán Santamaria +[2018-02-13T08:28:15.932] [INFO] cheese - inserting 1000 documents. first: Antoine Louis Camille Lemonnier and last: Myrsini +[2018-02-13T08:28:15.946] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:28:15.951] [INFO] cheese - inserting 1000 documents. first: Hespererato columbella and last: Dalip Frashëri +[2018-02-13T08:28:16.021] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:28:16.079] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:28:16.124] [INFO] cheese - inserting 1000 documents. first: Alejandro Abellan and last: The Benzino Project +[2018-02-13T08:28:16.137] [INFO] cheese - batch complete in: 2.216 secs +[2018-02-13T08:28:16.227] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:28:16.261] [INFO] cheese - inserting 1000 documents. first: Joe Doakes and last: Healy, KS +[2018-02-13T08:28:16.353] [INFO] cheese - inserting 1000 documents. first: Love Me Forever and last: Alevtina Aparina +[2018-02-13T08:28:16.391] [INFO] cheese - inserting 1000 documents. first: Category:LGBT military personnel and last: John Cooper (tennis) +[2018-02-13T08:28:16.394] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:28:16.435] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:28:16.462] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:28:16.484] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oliver Fritz and last: Soldiers of Freedom +[2018-02-13T08:28:16.539] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Enrique Sanchez and last: Wikipedia:Votes for deletion/Leighann Starkey +[2018-02-13T08:28:16.622] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:28:16.678] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:28:17.042] [INFO] cheese - inserting 1000 documents. first: Category:People from Grand Junction, Tennessee and last: Template:Expressway code (Sri Lanka) +[2018-02-13T08:28:17.077] [INFO] cheese - inserting 1000 documents. first: Shoreland, Ohio and last: Marie-Josée Laloy +[2018-02-13T08:28:17.110] [INFO] cheese - inserting 1000 documents. first: Timeline of human prehistory and last: Category:Canadian expatriates in Austria +[2018-02-13T08:28:17.113] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:28:17.138] [INFO] cheese - inserting 1000 documents. first: Micky Dore and last: Stage Rallying +[2018-02-13T08:28:17.160] [INFO] cheese - inserting 1000 documents. first: D. J. Shockley and last: Wikipedia:Votes for deletion/Ziotaki language +[2018-02-13T08:28:17.186] [INFO] cheese - inserting 1000 documents. first: String Quartet No. 17 and last: Ray Ratkowski +[2018-02-13T08:28:17.251] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T08:28:17.300] [INFO] cheese - inserting 1000 documents. first: File:Cencoroll DVD cover.jpg and last: A. Judson Clark +[2018-02-13T08:28:17.326] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:28:17.326] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:28:17.387] [INFO] cheese - batch complete in: 1.365 secs +[2018-02-13T08:28:17.430] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:28:17.462] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:28:17.594] [INFO] cheese - inserting 1000 documents. first: Caribe Hilton Hotel and last: Prometheus Bound +[2018-02-13T08:28:17.741] [INFO] cheese - batch complete in: 1.604 secs +[2018-02-13T08:28:17.858] [INFO] cheese - inserting 1000 documents. first: The Rev and last: Wikipedia:Votes for deletion/The Daffodil Song +[2018-02-13T08:28:17.918] [INFO] cheese - inserting 1000 documents. first: Patalpani waterfalls and last: Mammoth Museum +[2018-02-13T08:28:17.928] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:28:17.932] [INFO] cheese - inserting 1000 documents. first: Providence Day and last: Wikipedia:WikiProject Deletion/to do +[2018-02-13T08:28:17.935] [INFO] cheese - inserting 1000 documents. first: Donald A. Gillies and last: Roberto Santamaria Ciprian +[2018-02-13T08:28:17.970] [INFO] cheese - inserting 1000 documents. first: File:ConLuTo.jpg and last: Mauser pistol +[2018-02-13T08:28:17.981] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:28:17.984] [INFO] cheese - inserting 1000 documents. first: Battle of Aberdeen and last: John Lake (MP) +[2018-02-13T08:28:18.048] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:28:18.092] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Album articles and last: Robert C. Zampano +[2018-02-13T08:28:18.099] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:28:18.150] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:28:18.221] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T08:28:18.280] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:28:18.700] [INFO] cheese - inserting 1000 documents. first: Tambor, Costa Rica and last: Michigan Ave. +[2018-02-13T08:28:18.739] [INFO] cheese - inserting 1000 documents. first: File:Asahi no Ataru Hashi.jpg and last: Los Tuxtlas Biosphere Reserve +[2018-02-13T08:28:18.806] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:28:18.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality and last: Kcom +[2018-02-13T08:28:18.926] [INFO] cheese - inserting 1000 documents. first: Category:Military of Tunisia and last: Kaiser, Henry J. +[2018-02-13T08:28:19.003] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:28:19.010] [INFO] cheese - inserting 1000 documents. first: United States Senate election in New York, 1863 and last: Mean Dependence +[2018-02-13T08:28:19.020] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:28:19.057] [INFO] cheese - inserting 1000 documents. first: Die, All Right and last: Mackenzie Porter +[2018-02-13T08:28:19.067] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:28:19.104] [INFO] cheese - inserting 1000 documents. first: Category:Aquaculture and last: Saracens RFC +[2018-02-13T08:28:19.202] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:28:19.296] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:28:19.314] [INFO] cheese - batch complete in: 1.164 secs +[2018-02-13T08:28:19.524] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Men's Issues articles and last: File:Eremite Records logo.jpeg +[2018-02-13T08:28:19.580] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:28:19.778] [INFO] cheese - inserting 1000 documents. first: Claudio Francisci and last: Agera +[2018-02-13T08:28:19.834] [INFO] cheese - inserting 1000 documents. first: Ray Senkowski and last: Fatal Vision (disambiguation) +[2018-02-13T08:28:19.892] [INFO] cheese - inserting 1000 documents. first: King Xiang of Zhou and last: Dwarf throw +[2018-02-13T08:28:19.900] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:28:19.911] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:28:19.973] [INFO] cheese - inserting 1000 documents. first: Category:Counts of Frisia and last: Euro gold and silver commemorative coins (Ireland) +[2018-02-13T08:28:20.020] [INFO] cheese - inserting 1000 documents. first: The Bailey-Matthews Shell Museum and last: Vaughan Brothers +[2018-02-13T08:28:20.149] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:28:20.157] [INFO] cheese - inserting 1000 documents. first: Globcal and last: SM U-92 +[2018-02-13T08:28:20.166] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T08:28:20.157] [INFO] cheese - batch complete in: 2.416 secs +[2018-02-13T08:28:20.289] [INFO] cheese - inserting 1000 documents. first: Lost (2004 television series) and last: Wikipedia:Articles for deletion/Ekrōnja +[2018-02-13T08:28:20.317] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:28:20.345] [INFO] cheese - inserting 1000 documents. first: Cylindera brevis and last: Extreme points of Iceland +[2018-02-13T08:28:20.480] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:28:20.515] [INFO] cheese - batch complete in: 1.51 secs +[2018-02-13T08:28:20.865] [INFO] cheese - inserting 1000 documents. first: Friedrich Beck and last: Category:People from Salland +[2018-02-13T08:28:20.933] [INFO] cheese - inserting 1000 documents. first: Anna quel particolare piacere and last: The Sleeping Voice +[2018-02-13T08:28:21.002] [INFO] cheese - inserting 1000 documents. first: Vidhansabha and last: NOB1 +[2018-02-13T08:28:21.033] [INFO] cheese - batch complete in: 1.132 secs +[2018-02-13T08:28:21.054] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:28:21.076] [INFO] cheese - inserting 1000 documents. first: Aguardente and last: Shalom (film) +[2018-02-13T08:28:21.102] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:28:21.187] [INFO] cheese - inserting 1000 documents. first: Category:Frigates of the Russian Navy and last: File:WilliamStewart.jpg +[2018-02-13T08:28:21.226] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:28:21.302] [INFO] cheese - batch complete in: 0.985 secs +[2018-02-13T08:28:21.304] [INFO] cheese - inserting 1000 documents. first: Alois Confais and last: Fortín de San Gerónimo de Boquerón +[2018-02-13T08:28:21.410] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:28:21.705] [INFO] cheese - inserting 1000 documents. first: Planet cuisines and last: Communications-based train control +[2018-02-13T08:28:21.782] [INFO] cheese - inserting 1000 documents. first: Term-document matrix and last: Nigerien Party for Democracy and Socialism +[2018-02-13T08:28:21.792] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:28:21.795] [INFO] cheese - inserting 1000 documents. first: List of Presidents of Lazio and last: Template:POTD/2013-09-07 +[2018-02-13T08:28:21.885] [INFO] cheese - inserting 1000 documents. first: Eric N. Vitaliano and last: Gwinner Airport +[2018-02-13T08:28:21.926] [INFO] cheese - batch complete in: 1.411 secs +[2018-02-13T08:28:21.933] [INFO] cheese - inserting 1000 documents. first: Category:Social Democratic Federation and last: New Brunswick School District 14 +[2018-02-13T08:28:21.979] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:28:22.051] [INFO] cheese - inserting 1000 documents. first: Kurdish Unified Alphabet and last: HMS Caicos (K505) +[2018-02-13T08:28:22.065] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:28:22.071] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:28:22.167] [INFO] cheese - inserting 1000 documents. first: J. Quin Monson and last: Encarnación de Rosas +[2018-02-13T08:28:22.236] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:28:22.315] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:28:22.402] [INFO] cheese - inserting 1000 documents. first: Aleksandr Kuprin and last: Lamar Hunt +[2018-02-13T08:28:22.529] [INFO] cheese - batch complete in: 2.372 secs +[2018-02-13T08:28:22.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/European Magpie and last: Borzia +[2018-02-13T08:28:22.666] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:28:22.780] [INFO] cheese - inserting 1000 documents. first: English Triple Crown race winners and last: Echinopsis lageniformis +[2018-02-13T08:28:22.837] [INFO] cheese - inserting 1000 documents. first: Rugrats (film series) and last: Zhaneta Ilieva +[2018-02-13T08:28:22.900] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:28:22.967] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:28:23.033] [INFO] cheese - inserting 1000 documents. first: PCDHA3 and last: Category:Slovak sex workers +[2018-02-13T08:28:23.037] [INFO] cheese - inserting 1000 documents. first: Adam Seybert and last: Demon King of Confusion +[2018-02-13T08:28:23.085] [INFO] cheese - inserting 1000 documents. first: File:Manuel Azcárate - Europa Press.jpg and last: Aven Nelson +[2018-02-13T08:28:23.100] [INFO] cheese - inserting 1000 documents. first: Nathalie Pâque and last: Let It Be Me (1955 song) +[2018-02-13T08:28:23.144] [INFO] cheese - batch complete in: 1.073 secs +[2018-02-13T08:28:23.274] [INFO] cheese - batch complete in: 1.209 secs +[2018-02-13T08:28:23.369] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:28:23.404] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:28:23.560] [INFO] cheese - inserting 1000 documents. first: Mech flood and last: Wikipedia:Votes for deletion/Wario the Quario +[2018-02-13T08:28:23.601] [INFO] cheese - inserting 1000 documents. first: Iod and last: Category:VAP (company) games +[2018-02-13T08:28:23.621] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T08:28:23.781] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:28:23.919] [INFO] cheese - inserting 1000 documents. first: Alexander Hill (academic) and last: Unfamiliar (song) +[2018-02-13T08:28:24.051] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T08:28:24.081] [INFO] cheese - inserting 1000 documents. first: Category:Olsen family and last: (8252) 1981 EY14 +[2018-02-13T08:28:24.168] [INFO] cheese - inserting 1000 documents. first: Surface web and last: VPI +[2018-02-13T08:28:24.187] [INFO] cheese - inserting 1000 documents. first: Joel Langellott and last: Origin of Species (episode) +[2018-02-13T08:28:24.208] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:28:24.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anti-cnn and last: My Horse & Me +[2018-02-13T08:28:24.273] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:28:24.339] [INFO] cheese - inserting 1000 documents. first: French tanker Durance (A629) and last: Henry Champion House +[2018-02-13T08:28:24.505] [INFO] cheese - batch complete in: 1.231 secs +[2018-02-13T08:28:24.656] [INFO] cheese - batch complete in: 1.512 secs +[2018-02-13T08:28:24.820] [INFO] cheese - batch complete in: 1.451 secs +[2018-02-13T08:28:24.937] [INFO] cheese - inserting 1000 documents. first: Malkaram, Ranga Reddy district and last: Template:MathWelcome +[2018-02-13T08:28:24.967] [INFO] cheese - inserting 1000 documents. first: Travel visa and last: Isabel J. Cox +[2018-02-13T08:28:25.033] [INFO] cheese - batch complete in: 1.252 secs +[2018-02-13T08:28:25.094] [INFO] cheese - inserting 1000 documents. first: Sennen (song) and last: W.S. Percy +[2018-02-13T08:28:25.217] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T08:28:25.256] [INFO] cheese - batch complete in: 2.727 secs +[2018-02-13T08:28:25.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Farmer with shotgun and last: The Gary Grill +[2018-02-13T08:28:25.461] [INFO] cheese - batch complete in: 1.252 secs +[2018-02-13T08:28:25.493] [INFO] cheese - inserting 1000 documents. first: Unionport, Indiana and last: The Wedding March (1929 film) +[2018-02-13T08:28:25.521] [INFO] cheese - inserting 1000 documents. first: Never Stop (Planetshakers album) and last: International Commission on Peace and Food +[2018-02-13T08:28:25.617] [INFO] cheese - batch complete in: 1.344 secs +[2018-02-13T08:28:25.696] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T08:28:25.709] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/forumcarvicais.com and last: 2009–10 MAC men's basketball season +[2018-02-13T08:28:25.742] [INFO] cheese - inserting 1000 documents. first: Québec (territory equivalent to a regional county municipality) and last: John Cox (disambiguation) +[2018-02-13T08:28:25.837] [INFO] cheese - batch complete in: 1.331 secs +[2018-02-13T08:28:25.858] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:28:26.155] [INFO] cheese - inserting 1000 documents. first: Times Square Station and last: FMA IA X 59 Dronner +[2018-02-13T08:28:26.324] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T08:28:26.412] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Maltepespor and last: Max Elbaum +[2018-02-13T08:28:26.463] [INFO] cheese - inserting 1000 documents. first: Union des étudiants juifs de France and last: Muchawiec River +[2018-02-13T08:28:26.517] [INFO] cheese - inserting 1000 documents. first: La marche nuptiale and last: Template:2015 Esiliiga table +[2018-02-13T08:28:26.616] [INFO] cheese - batch complete in: 1.583 secs +[2018-02-13T08:28:26.667] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:28:26.687] [INFO] cheese - inserting 1000 documents. first: Adrie Koster and last: Panchmarhi +[2018-02-13T08:28:26.688] [INFO] cheese - batch complete in: 1.227 secs +[2018-02-13T08:28:26.732] [INFO] cheese - inserting 1000 documents. first: Systems engineers and last: Template:User Highland +[2018-02-13T08:28:26.835] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:28:26.921] [INFO] cheese - batch complete in: 1.224 secs +[2018-02-13T08:28:26.960] [INFO] cheese - inserting 1000 documents. first: Natalie Hundt and last: Category:Army Black Knights football seasons +[2018-02-13T08:28:27.180] [INFO] cheese - batch complete in: 1.322 secs +[2018-02-13T08:28:27.245] [INFO] cheese - inserting 1000 documents. first: Tobias Haitz and last: Abdullah Awad Al Juhany +[2018-02-13T08:28:27.365] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:28:27.428] [INFO] cheese - inserting 1000 documents. first: Frederick Church and last: 2000 Summer Paralympics +[2018-02-13T08:28:27.483] [INFO] cheese - inserting 1000 documents. first: Thomas A. Furness III and last: Category:Wikipedia categories named after football clubs in Bermuda +[2018-02-13T08:28:27.605] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:28:27.670] [INFO] cheese - batch complete in: 2.414 secs +[2018-02-13T08:28:27.755] [INFO] cheese - inserting 1000 documents. first: Tours-Val de Loire and last: 1962 ACC Men's Basketball +[2018-02-13T08:28:27.835] [INFO] cheese - inserting 1000 documents. first: Palace of Linares and last: Template:Db-f11 +[2018-02-13T08:28:27.836] [INFO] cheese - inserting 1000 documents. first: Sri Lankan Tamil cinema and last: California Game Wardens +[2018-02-13T08:28:27.894] [INFO] cheese - inserting 1000 documents. first: Barney (dog) and last: Wikipedia:Featured article candidates/Belarusian Republican Youth Union/Attempt 3 +[2018-02-13T08:28:27.897] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spaceflight/Userbox and last: Lake Wawasee history +[2018-02-13T08:28:27.997] [INFO] cheese - batch complete in: 1.162 secs +[2018-02-13T08:28:28.050] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:28:28.114] [INFO] cheese - batch complete in: 1.498 secs +[2018-02-13T08:28:28.133] [INFO] cheese - batch complete in: 1.212 secs +[2018-02-13T08:28:28.155] [INFO] cheese - batch complete in: 1.467 secs +[2018-02-13T08:28:28.493] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Taylor County, Wisconsin and last: File:Bournemouth Airport logo.svg +[2018-02-13T08:28:28.526] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after organisations based in Bermuda and last: Wikipedia:Sockpuppet investigations/Sheriwndprakash/Archive +[2018-02-13T08:28:28.628] [INFO] cheese - batch complete in: 1.263 secs +[2018-02-13T08:28:28.618] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:28:28.767] [INFO] cheese - inserting 1000 documents. first: Richard Brook and last: Solent Sky +[2018-02-13T08:28:28.847] [INFO] cheese - inserting 1000 documents. first: 1959 ACC Men's Basketball and last: Wikipedia:WikiProject Spam/LinkReports/tcblades.com +[2018-02-13T08:28:28.875] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:28:28.902] [INFO] cheese - inserting 1000 documents. first: KUMY-LD and last: Barking At Ariplanes (Kim Carnes album) +[2018-02-13T08:28:29.062] [INFO] cheese - inserting 1000 documents. first: Template:Silom Line route and last: Obârşa +[2018-02-13T08:28:29.069] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:28:29.068] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T08:28:29.218] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meatspin and last: Party for Defence of Workers Rights +[2018-02-13T08:28:29.274] [INFO] cheese - batch complete in: 1.16 secs +[2018-02-13T08:28:29.379] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T08:28:29.457] [INFO] cheese - inserting 1000 documents. first: Pesnya vsegda s nami and last: Søren Løvtrup +[2018-02-13T08:28:29.510] [INFO] cheese - inserting 1000 documents. first: CyberCrime (TV series) and last: File:Logo Universidad Centroamericana Managua.svg +[2018-02-13T08:28:29.607] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:28:29.668] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:28:29.864] [INFO] cheese - inserting 1000 documents. first: Sale, Trafford, Greater Manchester and last: Washington County Airport +[2018-02-13T08:28:29.960] [INFO] cheese - inserting 1000 documents. first: List of content management systems and last: Goldman Sachs +[2018-02-13T08:28:30.001] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:28:30.011] [INFO] cheese - inserting 1000 documents. first: Fontana del Nettuno, Piazza del Popolo) and last: Satanic cult abuse +[2018-02-13T08:28:30.038] [INFO] cheese - inserting 1000 documents. first: Binky Gets Cancelled and last: Hethel old thorn +[2018-02-13T08:28:30.061] [INFO] cheese - inserting 1000 documents. first: Leauţ and last: Template:Football League Select XIs +[2018-02-13T08:28:30.111] [INFO] cheese - batch complete in: 1.236 secs +[2018-02-13T08:28:30.186] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T08:28:30.267] [INFO] cheese - batch complete in: 2.597 secs +[2018-02-13T08:28:30.307] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:28:30.321] [INFO] cheese - inserting 1000 documents. first: Lakki Marwat and last: Category:Communications in Zimbabwe +[2018-02-13T08:28:30.403] [INFO] cheese - inserting 1000 documents. first: File:The Crown Of Ptolemy cover.jpg and last: Denny Denson +[2018-02-13T08:28:30.440] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T08:28:30.479] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:28:30.599] [INFO] cheese - inserting 1000 documents. first: Hofmeister House and last: Mike Brown (ice hockey b. 1979) +[2018-02-13T08:28:30.694] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:28:30.771] [INFO] cheese - inserting 1000 documents. first: Template:Platonic Idealism and last: File:Sinnbild Autobahnkreuz-grau.svg +[2018-02-13T08:28:30.837] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:28:31.137] [INFO] cheese - inserting 1000 documents. first: California State Route 27 and last: Agona Swedru +[2018-02-13T08:28:31.199] [INFO] cheese - inserting 1000 documents. first: Millennium Communities initiative and last: Dixie Browning +[2018-02-13T08:28:31.214] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:28:31.242] [INFO] cheese - inserting 1000 documents. first: Lycee francais La Perouse and last: Allahabad, Zahedan +[2018-02-13T08:28:31.264] [INFO] cheese - inserting 1000 documents. first: Fuller flatiron and last: Josipina Urbančič +[2018-02-13T08:28:31.312] [INFO] cheese - batch complete in: 1.126 secs +[2018-02-13T08:28:31.351] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:28:31.410] [INFO] cheese - inserting 1000 documents. first: C.D. De los Altos and last: Sheshtomad District +[2018-02-13T08:28:31.434] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:28:31.451] [INFO] cheese - inserting 1000 documents. first: Category:Cultural depictions of W. C. Fields and last: Wikipedia:Peer review/Effects of genocide on youth/archive1 +[2018-02-13T08:28:31.552] [INFO] cheese - batch complete in: 1.245 secs +[2018-02-13T08:28:31.629] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:28:31.863] [INFO] cheese - inserting 1000 documents. first: Highland Park distillery and last: Haimirich +[2018-02-13T08:28:31.947] [INFO] cheese - inserting 1000 documents. first: Maryland School for the Deaf and last: PJ Thum +[2018-02-13T08:28:31.978] [INFO] cheese - batch complete in: 1.711 secs +[2018-02-13T08:28:32.005] [INFO] cheese - inserting 1000 documents. first: Allahabad Baku and last: Nagraur, Bahraich +[2018-02-13T08:28:32.129] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:FRMTG and last: Jim Fix +[2018-02-13T08:28:32.169] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T08:28:32.232] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:28:32.242] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:28:32.374] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after organizations based in Bulgaria and last: Category:Wikipedia requested photographs of people of Arizona +[2018-02-13T08:28:32.529] [INFO] cheese - inserting 1000 documents. first: Chris Shaffer and last: Resident Evil 4: Afterlife +[2018-02-13T08:28:32.572] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:28:32.715] [INFO] cheese - batch complete in: 1.403 secs +[2018-02-13T08:28:32.734] [INFO] cheese - inserting 1000 documents. first: Lakeshore Alternative Elementary School and last: Ascalenia albitergis +[2018-02-13T08:28:33.033] [INFO] cheese - batch complete in: 1.48 secs +[2018-02-13T08:28:33.196] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs of people of Virginia and last: Seltenbach (Eisbach) +[2018-02-13T08:28:33.293] [INFO] cheese - inserting 1000 documents. first: Ritan and last: 409 in Your Coffeemaker +[2018-02-13T08:28:33.299] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:28:33.317] [INFO] cheese - inserting 1000 documents. first: UN refugee convention and last: X-Men Archives +[2018-02-13T08:28:33.374] [INFO] cheese - inserting 1000 documents. first: Les mille et une nuits and last: Hyposwiss Private Bank Ltd. +[2018-02-13T08:28:33.568] [INFO] cheese - batch complete in: 1.326 secs +[2018-02-13T08:28:33.619] [INFO] cheese - batch complete in: 1.387 secs +[2018-02-13T08:28:33.644] [INFO] cheese - batch complete in: 1.475 secs +[2018-02-13T08:28:33.754] [INFO] cheese - inserting 1000 documents. first: Haldeman-Julius Co. and last: Burundi–China relations +[2018-02-13T08:28:33.970] [INFO] cheese - inserting 1000 documents. first: 1992 Australian motorcycle Grand Prix and last: A Lesson In Crime +[2018-02-13T08:28:33.986] [INFO] cheese - inserting 1000 documents. first: Hoxun Court and last: Hispano-Suiza 8Aa +[2018-02-13T08:28:34.122] [INFO] cheese - batch complete in: 1.405 secs +[2018-02-13T08:28:34.132] [INFO] cheese - inserting 1000 documents. first: California Proposition 54 (2003) and last: Bedřich Hrozný +[2018-02-13T08:28:34.155] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T08:28:34.251] [INFO] cheese - batch complete in: 4.14 secs +[2018-02-13T08:28:34.365] [INFO] cheese - inserting 1000 documents. first: Hard Problems and last: WEEV-LD +[2018-02-13T08:28:34.498] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:28:34.504] [INFO] cheese - batch complete in: 2.526 secs +[2018-02-13T08:28:34.693] [INFO] cheese - inserting 1000 documents. first: Anarchism in us and last: Antonio Corraro +[2018-02-13T08:28:34.787] [INFO] cheese - inserting 1000 documents. first: DASA S.A. and last: Catholic Workers’ College +[2018-02-13T08:28:34.835] [INFO] cheese - batch complete in: 1.267 secs +[2018-02-13T08:28:34.885] [INFO] cheese - batch complete in: 1.266 secs +[2018-02-13T08:28:34.983] [INFO] cheese - inserting 1000 documents. first: Hispano-Suiza 8Ba and last: Wikipedia:Sockpuppet investigations/Idealisis +[2018-02-13T08:28:35.028] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:28:35.037] [INFO] cheese - inserting 1000 documents. first: Category:Tokyo Police Club albums and last: File:UNCQuake.jpg +[2018-02-13T08:28:35.052] [INFO] cheese - inserting 1000 documents. first: Sir Nicholas Mander, 4th Baronet and last: Cypriot Australian +[2018-02-13T08:28:35.062] [INFO] cheese - inserting 1000 documents. first: File:Arab Liberation Front (logo).png and last: BarlowGirl (album) +[2018-02-13T08:28:35.138] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:28:35.159] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:28:35.234] [INFO] cheese - batch complete in: 1.59 secs +[2018-02-13T08:28:35.262] [INFO] cheese - inserting 1000 documents. first: Photovoltaic film and last: W3 Consortium +[2018-02-13T08:28:35.366] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:28:35.394] [INFO] cheese - inserting 1000 documents. first: A Secret History of the IRA and last: Portal:Medicine/Did you know/12 +[2018-02-13T08:28:35.482] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:28:35.579] [INFO] cheese - inserting 1000 documents. first: File:LocaPeople.jpg and last: Hayley sings Japanese Songs 2 +[2018-02-13T08:28:35.602] [INFO] cheese - inserting 1000 documents. first: Template:Pannaxiakos sections and last: Kapala (genus) +[2018-02-13T08:28:35.649] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:28:35.684] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:28:35.772] [INFO] cheese - inserting 1000 documents. first: Amblyglyphidodon curacao and last: Groß Bösitz +[2018-02-13T08:28:35.791] [INFO] cheese - inserting 1000 documents. first: Naval aircrewman and last: Category:United Kingdom Parliamentary constituencies established in 1992 +[2018-02-13T08:28:35.846] [INFO] cheese - inserting 1000 documents. first: Belgrade, Serbia and last: Sir Richard Squires +[2018-02-13T08:28:35.859] [INFO] cheese - inserting 1000 documents. first: Pierre Alexis Ponson du Terrail and last: Mount San Antonio College +[2018-02-13T08:28:35.919] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:28:35.996] [INFO] cheese - inserting 1000 documents. first: Cloward–Piven Strategy and last: Edward Everett Cox +[2018-02-13T08:28:36.010] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:28:36.161] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:28:36.167] [INFO] cheese - inserting 1000 documents. first: Kapooloku Poomaikelani and last: Catholic Community of St. Finbar +[2018-02-13T08:28:36.211] [INFO] cheese - batch complete in: 1.707 secs +[2018-02-13T08:28:36.304] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:28:36.386] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:28:36.596] [INFO] cheese - inserting 1000 documents. first: File:Youtopia.jpg and last: Wikipedia:Articles for deletion/Georg Essl +[2018-02-13T08:28:36.688] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:28:36.781] [INFO] cheese - inserting 1000 documents. first: Category:United Kingdom Parliamentary constituencies established in 1997 and last: Interlude (EP) +[2018-02-13T08:28:36.852] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:28:36.870] [INFO] cheese - inserting 1000 documents. first: File:Cullen Bloodstone Avengers Arena 6.jpg and last: Lumberton, New Mexico +[2018-02-13T08:28:36.926] [INFO] cheese - inserting 1000 documents. first: Mount Read (Tasmania) and last: Wikipedia:Votes for deletion/Nuremberg Diary +[2018-02-13T08:28:36.984] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:28:37.000] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:28:37.030] [INFO] cheese - inserting 1000 documents. first: Dallas Dhu (distillery) and last: Template:CA2064-Taplejung-1 +[2018-02-13T08:28:37.100] [INFO] cheese - inserting 1000 documents. first: Prophecy of the Shadow and last: Template:Aftershock +[2018-02-13T08:28:37.164] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:28:37.234] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:28:37.310] [INFO] cheese - inserting 1000 documents. first: Tiru parameswara vinnagaram and last: Sărsig +[2018-02-13T08:28:37.432] [INFO] cheese - inserting 1000 documents. first: Rolladen-Schneider LS-6 and last: Wikipedia:Votes for deletion/Cherry Creek News +[2018-02-13T08:28:37.468] [INFO] cheese - inserting 1000 documents. first: UWW TV and last: Molenberg (Zwalm) +[2018-02-13T08:28:37.480] [INFO] cheese - batch complete in: 1.831 secs +[2018-02-13T08:28:37.504] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:28:37.530] [INFO] cheese - inserting 1000 documents. first: Hyacinthe Francois Joseph Despinoy and last: Brandon Peterson (footballer) +[2018-02-13T08:28:37.587] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:28:37.640] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:28:37.660] [INFO] cheese - inserting 1000 documents. first: Three Jewels Temples and last: Cellulase +[2018-02-13T08:28:37.668] [INFO] cheese - inserting 1000 documents. first: Bernard Desjean, Baron de Pointis and last: Don mcsween +[2018-02-13T08:28:37.797] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:28:37.803] [INFO] cheese - inserting 1000 documents. first: Category:Fictional Democrats (United States) and last: Battle of Mount Haemus +[2018-02-13T08:28:37.803] [INFO] cheese - batch complete in: 1.592 secs +[2018-02-13T08:28:37.935] [INFO] cheese - inserting 1000 documents. first: File:Red kangaroo resting.JPG and last: Template:Marshals of Italy +[2018-02-13T08:28:37.945] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:28:38.090] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:28:38.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gawronska and last: Summer Services +[2018-02-13T08:28:38.251] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:28:38.400] [INFO] cheese - inserting 1000 documents. first: All to Myself and last: File:Magyar Cserkészszövetség 2010.svg +[2018-02-13T08:28:38.507] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:28:38.658] [INFO] cheese - inserting 1000 documents. first: Guti.Haz and last: Inigo Perez +[2018-02-13T08:28:38.676] [INFO] cheese - inserting 1000 documents. first: New Era for Democracy and last: List of terrorist incidents, July–December 2015 +[2018-02-13T08:28:38.712] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:28:38.779] [INFO] cheese - inserting 1000 documents. first: File:Thekillerslogoband.JPG and last: VP-94 +[2018-02-13T08:28:38.838] [INFO] cheese - batch complete in: 1.251 secs +[2018-02-13T08:28:38.910] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected Article/71 and last: Duuh +[2018-02-13T08:28:38.937] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:28:39.079] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:28:39.124] [INFO] cheese - inserting 1000 documents. first: Kobo Aura and last: Disk floret +[2018-02-13T08:28:39.184] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:28:39.206] [INFO] cheese - inserting 1000 documents. first: Sanlazar and last: Wikipedia:Village pump (miscellaneous)/Archive O +[2018-02-13T08:28:39.283] [INFO] cheese - inserting 1000 documents. first: Template:Createaccount and last: File:Head of State film.jpg +[2018-02-13T08:28:39.360] [INFO] cheese - batch complete in: 1.879 secs +[2018-02-13T08:28:39.419] [INFO] cheese - batch complete in: 1.167 secs +[2018-02-13T08:28:39.496] [INFO] cheese - inserting 1000 documents. first: Professional education and last: Template:Pre-American Revolution documents +[2018-02-13T08:28:39.645] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:28:39.659] [INFO] cheese - inserting 1000 documents. first: Al Van Camp and last: File:OZ Sword of Etheria.jpg +[2018-02-13T08:28:39.672] [INFO] cheese - inserting 1000 documents. first: Lennard jones potential and last: Samuel Segal, Baron Segal +[2018-02-13T08:28:39.680] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Non-free content review/Archive 28 and last: Category:Romanian drama films +[2018-02-13T08:28:39.701] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T08:28:39.737] [INFO] cheese - inserting 1000 documents. first: Habib Diallo and last: Brooksfield (Maxi yacht) +[2018-02-13T08:28:39.718] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:28:39.772] [INFO] cheese - inserting 1000 documents. first: Linear space and last: Mint-made errors +[2018-02-13T08:28:39.815] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:28:39.893] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:28:40.000] [INFO] cheese - batch complete in: 2.197 secs +[2018-02-13T08:28:40.215] [INFO] cheese - inserting 1000 documents. first: Grant Munro (footballer) and last: HNN extension +[2018-02-13T08:28:40.298] [INFO] cheese - inserting 1000 documents. first: Psychological and sociological effects of spaceflight and last: File:MedioLogo 2013.png +[2018-02-13T08:28:40.311] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:28:40.358] [INFO] cheese - inserting 1000 documents. first: File:Boogie la pelicula.jpg and last: Greek Gods and Goddesses of Greek mythology +[2018-02-13T08:28:40.386] [INFO] cheese - inserting 1000 documents. first: Sir John Eardley-Wilmot, 2nd Baronet and last: File:Amajorguitar213.png +[2018-02-13T08:28:40.410] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:28:40.489] [INFO] cheese - inserting 1000 documents. first: Cumings and last: Wikipedia:Translation/Yellow Cathedral +[2018-02-13T08:28:40.514] [INFO] cheese - inserting 1000 documents. first: Category:1907–08 Athletic League of New England State Colleges men's basketball season and last: Melika Foroutan +[2018-02-13T08:28:40.538] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:28:40.547] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:28:40.564] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Village pump (miscellaneous)/Archive P and last: File:No Deposit, No Return FilmPoster.jpeg +[2018-02-13T08:28:40.717] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:28:40.767] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:28:40.816] [INFO] cheese - batch complete in: 1.456 secs +[2018-02-13T08:28:41.271] [INFO] cheese - inserting 1000 documents. first: Biathlon at the Asian Winter Games and last: Sometimes Things Just Disappear +[2018-02-13T08:28:41.358] [INFO] cheese - inserting 1000 documents. first: Ahmadabad, Kowsar and last: John William Gamaliel Ross +[2018-02-13T08:28:41.445] [INFO] cheese - inserting 1000 documents. first: 8 Hilarious Gods and last: Stewart House and Howard–Stewart Family Cemetery +[2018-02-13T08:28:41.502] [INFO] cheese - inserting 1000 documents. first: Template:Sports at the Olympics and last: Narcissa Black Malfoy +[2018-02-13T08:28:41.537] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:28:41.571] [INFO] cheese - batch complete in: 1.161 secs +[2018-02-13T08:28:41.621] [INFO] cheese - batch complete in: 1.083 secs +[2018-02-13T08:28:41.629] [INFO] cheese - inserting 1000 documents. first: Anita Zucker and last: Ramat Yishay +[2018-02-13T08:28:41.631] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:28:41.762] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:28:41.833] [INFO] cheese - inserting 1000 documents. first: File:Stardust FilmPoster.jpeg and last: Homeopathic Institute and Hospital of San José +[2018-02-13T08:28:41.855] [INFO] cheese - inserting 1000 documents. first: Tholian and last: Externsteine +[2018-02-13T08:28:41.933] [INFO] cheese - batch complete in: 1.114 secs +[2018-02-13T08:28:42.095] [INFO] cheese - batch complete in: 2.094 secs +[2018-02-13T08:28:42.166] [INFO] cheese - inserting 1000 documents. first: Category:Eritrea geography stubs and last: Igors Stepanovs +[2018-02-13T08:28:42.294] [INFO] cheese - inserting 1000 documents. first: Protuotrov and last: The Sins of the Father +[2018-02-13T08:28:42.309] [INFO] cheese - inserting 1000 documents. first: B. V. Nimbkar and last: Category:Wikipedia requested photographs of basketball people +[2018-02-13T08:28:42.322] [INFO] cheese - batch complete in: 2.011 secs +[2018-02-13T08:28:42.390] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:28:42.490] [INFO] cheese - inserting 1000 documents. first: Bellatrix Black Lestrange and last: 2006 European Seniors Tour +[2018-02-13T08:28:42.531] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:28:42.586] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Charters Towers Miners and last: File:Francesblackeire.jpg +[2018-02-13T08:28:42.725] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:28:42.757] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:28:42.784] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia references cleanup from September 2013 and last: Module:Japanese calendar/data/doc +[2018-02-13T08:28:42.857] [INFO] cheese - inserting 1000 documents. first: Instituto Homeopático y Hospital de San José and last: File:Kajaani University of Applied Sciences.svg +[2018-02-13T08:28:42.911] [INFO] cheese - batch complete in: 1.339 secs +[2018-02-13T08:28:42.986] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T08:28:43.099] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs of boxing people and last: Justin's House +[2018-02-13T08:28:43.184] [INFO] cheese - inserting 1000 documents. first: Akbayan Citizens’ Action Party and last: The Education, Audiovisual and Culture Executive Agency +[2018-02-13T08:28:43.194] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:28:43.276] [INFO] cheese - inserting 1000 documents. first: Glassy water and last: Category:Foreign relations of Vietnam +[2018-02-13T08:28:43.288] [INFO] cheese - inserting 1000 documents. first: David Vickers and last: Route 286 (Massachusetts/New Hampshire) +[2018-02-13T08:28:43.328] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:28:43.366] [INFO] cheese - inserting 1000 documents. first: File:WesleyCrest.jpg and last: Ramón María Narváez y Campos +[2018-02-13T08:28:43.369] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:28:43.434] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T08:28:43.598] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:28:43.805] [INFO] cheese - inserting 1000 documents. first: Kajaani University of Applied Sciences and last: Category:Geography of Maries County, Missouri +[2018-02-13T08:28:43.917] [INFO] cheese - inserting 1000 documents. first: Kawauchi Station and last: Danielson (band) +[2018-02-13T08:28:43.968] [INFO] cheese - inserting 1000 documents. first: Understanding Comics and last: V. R. Krishna Iyer +[2018-02-13T08:28:44.034] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:28:44.036] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:28:44.184] [INFO] cheese - batch complete in: 2.089 secs +[2018-02-13T08:28:44.218] [INFO] cheese - inserting 1000 documents. first: Magnus Carlson and last: Curling at the Winter Universiade +[2018-02-13T08:28:44.305] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:28:44.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada-related articles by quality/3 and last: Shakespearean authorship +[2018-02-13T08:28:44.421] [INFO] cheese - inserting 1000 documents. first: Yupiltepegue language and last: ¿Quién Manda? +[2018-02-13T08:28:44.435] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:28:44.531] [INFO] cheese - batch complete in: 1.62 secs +[2018-02-13T08:28:44.582] [INFO] cheese - inserting 1000 documents. first: Food Labelling and the Law and last: File:M1w1Layout.jpg +[2018-02-13T08:28:44.601] [INFO] cheese - inserting 1000 documents. first: Tarpon River and last: Saldula saltatoria +[2018-02-13T08:28:44.723] [INFO] cheese - batch complete in: 1.289 secs +[2018-02-13T08:28:44.718] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:28:44.739] [INFO] cheese - inserting 1000 documents. first: Mortmar, California and last: "Esa Pekka Salonen" +[2018-02-13T08:28:44.865] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:28:45.045] [INFO] cheese - inserting 1000 documents. first: Evolution of the hippocampus and last: Pressure transmitter +[2018-02-13T08:28:45.071] [INFO] cheese - inserting 1000 documents. first: Umegaoka Station and last: Sergey Vyshedkevich +[2018-02-13T08:28:45.086] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:28:45.104] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/David Owen Dodd/archive1 and last: Little Basses Reef Lighthouse +[2018-02-13T08:28:45.227] [INFO] cheese - inserting 1000 documents. first: ¿Quien Manda? and last: Template:Westar Rules Ladder/1999 +[2018-02-13T08:28:45.255] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:28:45.328] [INFO] cheese - batch complete in: 1.729 secs +[2018-02-13T08:28:45.435] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:28:45.443] [INFO] cheese - inserting 1000 documents. first: Category:1933 in squash and last: Simple Songs (Jim O'Rourke album) +[2018-02-13T08:28:45.504] [INFO] cheese - inserting 1000 documents. first: Nora Aunor and last: Wikipedia:Ancientpages +[2018-02-13T08:28:45.524] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:28:45.556] [INFO] cheese - inserting 1000 documents. first: Taxco and last: Lake City +[2018-02-13T08:28:45.613] [INFO] cheese - inserting 1000 documents. first: Shōriki and last: Battle of Jabal Shammar (1929) +[2018-02-13T08:28:45.672] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:28:45.699] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:28:45.704] [INFO] cheese - batch complete in: 1.52 secs +[2018-02-13T08:28:45.862] [INFO] cheese - inserting 1000 documents. first: Meridian High School (Illinois) and last: Template:Golden State Warriors 1974–75 NBA champions +[2018-02-13T08:28:45.951] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:28:45.986] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Grant County, Minnesota and last: Penonemeño language +[2018-02-13T08:28:45.991] [INFO] cheese - inserting 1000 documents. first: Template:Rushden & Diamonds F.C. and last: Sho'rva +[2018-02-13T08:28:46.003] [INFO] cheese - inserting 1000 documents. first: Lessay Airfield and last: Akushinsky District +[2018-02-13T08:28:46.043] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Ara Canal/archive1 and last: Category:1500 in Africa +[2018-02-13T08:28:46.093] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:28:46.110] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:28:46.125] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:28:46.121] [INFO] cheese - inserting 1000 documents. first: Borownica, Subcarpathian Voivodeship and last: Category:People from Wooster, Ohio +[2018-02-13T08:28:46.176] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:28:46.241] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T08:28:46.362] [INFO] cheese - inserting 1000 documents. first: Wikipedia:LCM and last: Martin David Kahane +[2018-02-13T08:28:46.484] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:28:46.648] [INFO] cheese - inserting 1000 documents. first: Edge House and last: Portal:Military of the United States/Units and Awards/13 +[2018-02-13T08:28:46.737] [INFO] cheese - inserting 1000 documents. first: Kendra Slewenski and last: Kagando Hospital +[2018-02-13T08:28:46.776] [INFO] cheese - inserting 1000 documents. first: Village Vets Australia and last: Wikipedia:WikiProject Spam/Local/concussionfoundation.org +[2018-02-13T08:28:46.778] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:28:46.787] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:28:46.908] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:28:46.934] [INFO] cheese - inserting 1000 documents. first: 450SL and last: Victoria Rodriguez +[2018-02-13T08:28:46.982] [INFO] cheese - inserting 1000 documents. first: Kenneth Dubuque Memorial State Forest and last: Template:Masta Killa +[2018-02-13T08:28:47.029] [INFO] cheese - inserting 1000 documents. first: Danka Kovinic and last: Sunstrum, Ontario +[2018-02-13T08:28:47.042] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:28:47.072] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:28:47.146] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:28:47.337] [INFO] cheese - inserting 1000 documents. first: Milemarker and last: File:MarkRae RaeRoad albumcover.jpgMarkRae RaeRoad albumcover.jpg +[2018-02-13T08:28:47.357] [INFO] cheese - inserting 1000 documents. first: Email advertising and last: SoCal +[2018-02-13T08:28:47.395] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:28:47.403] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Peaknik (2nd nomination) and last: Donald B. Smith +[2018-02-13T08:28:47.436] [INFO] cheese - inserting 1000 documents. first: Ss decontrol and last: Luigi Turci +[2018-02-13T08:28:47.491] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:28:47.502] [INFO] cheese - batch complete in: 1.798 secs +[2018-02-13T08:28:47.547] [INFO] cheese - inserting 1000 documents. first: Pauline Croft and last: Lulingu Tshionka Airport +[2018-02-13T08:28:47.545] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:28:47.671] [INFO] cheese - inserting 1000 documents. first: Emil Larsen (wrestler) and last: A Night at Boomers, Vol. 2 +[2018-02-13T08:28:47.677] [INFO] cheese - inserting 1000 documents. first: Ray Tellier and last: Logarska Dolina +[2018-02-13T08:28:47.678] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:28:47.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2011 August 16 and last: Category:National political office-holders in South Africa +[2018-02-13T08:28:47.801] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:28:47.850] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:28:47.879] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:28:48.082] [INFO] cheese - inserting 1000 documents. first: Japan Super League and last: William Levett (Rector of Buxted) +[2018-02-13T08:28:48.127] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:28:48.147] [INFO] cheese - inserting 1000 documents. first: File:MarkRae IntoTheDepths albumcover.jpg and last: Bracken's World +[2018-02-13T08:28:48.154] [INFO] cheese - inserting 1000 documents. first: Hot spot volcanoes and last: Track day +[2018-02-13T08:28:48.214] [INFO] cheese - inserting 1000 documents. first: File:Ester Valerie Noronha.jpg and last: Jeffery Stork +[2018-02-13T08:28:48.238] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:28:48.257] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:28:48.315] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Randolph County, Indiana and last: Category:Royal House of Perak +[2018-02-13T08:28:48.320] [INFO] cheese - inserting 1000 documents. first: Guckenheimer Warehouse and last: Category:Brewton Millers players +[2018-02-13T08:28:48.360] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:28:48.421] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:28:48.424] [INFO] cheese - inserting 1000 documents. first: James Orrock and last: File:James White 01.png +[2018-02-13T08:28:48.480] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:28:48.635] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:28:49.141] [INFO] cheese - inserting 1000 documents. first: Demidov (town) and last: Gulf of Eastern Corea +[2018-02-13T08:28:49.299] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:28:49.307] [INFO] cheese - inserting 1000 documents. first: Category:Austrian speculative fiction films and last: 1/2nd Wessex Field Company, Royal Engineers +[2018-02-13T08:28:49.319] [INFO] cheese - inserting 1000 documents. first: Andrés García and last: Musée de Cluny -- Musée national du Moyen Âge +[2018-02-13T08:28:49.453] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:28:49.465] [INFO] cheese - inserting 1000 documents. first: Mitsuo Nakamura and last: John Porter (horseman) +[2018-02-13T08:28:49.490] [INFO] cheese - inserting 1000 documents. first: September 11, 2001 War Games and last: Bio-nano generator +[2018-02-13T08:28:49.566] [INFO] cheese - batch complete in: 2.064 secs +[2018-02-13T08:28:49.707] [INFO] cheese - inserting 1000 documents. first: Category:Irish expatriates in Croatia and last: Wikipedia:WikiProject Biography/Peer review/Tenacious D +[2018-02-13T08:28:49.716] [INFO] cheese - batch complete in: 1.478 secs +[2018-02-13T08:28:49.749] [INFO] cheese - inserting 1000 documents. first: Elkeson de Oliveira Cardozo and last: Faringdon, Oxfordshire +[2018-02-13T08:28:49.773] [INFO] cheese - batch complete in: 1.516 secs +[2018-02-13T08:28:49.776] [INFO] cheese - inserting 1000 documents. first: Norman Gerry Jones and last: File:ShadowKiss Novel.jpg +[2018-02-13T08:28:49.822] [INFO] cheese - batch complete in: 1.695 secs +[2018-02-13T08:28:49.915] [INFO] cheese - batch complete in: 1.434 secs +[2018-02-13T08:28:49.997] [INFO] cheese - batch complete in: 1.362 secs +[2018-02-13T08:28:50.128] [INFO] cheese - inserting 1000 documents. first: Template:NC Dinos roster and last: Shanell aka SnL +[2018-02-13T08:28:50.264] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T08:28:50.458] [INFO] cheese - inserting 1000 documents. first: Xcode Tools and last: Adolf Šimperský +[2018-02-13T08:28:50.459] [INFO] cheese - inserting 1000 documents. first: Cnemaspis ranwellai and last: Category:Lists of people from Georgia (U.S. state) +[2018-02-13T08:28:50.500] [INFO] cheese - inserting 1000 documents. first: Artificial foreskin and last: Category:Association football in Northern Ireland +[2018-02-13T08:28:50.526] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:28:50.542] [INFO] cheese - inserting 1000 documents. first: Khambhoj and last: Discover magazine +[2018-02-13T08:28:50.548] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:28:50.584] [INFO] cheese - inserting 1000 documents. first: 1/3rd Wessex Field Company, Royal Engineers and last: ǁKhara Hais Local Municipality +[2018-02-13T08:28:50.638] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:28:50.713] [INFO] cheese - inserting 1000 documents. first: Nikopol's'kyi Zavod Ferosplaviv and last: Mastocytosis, systemic +[2018-02-13T08:28:50.712] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:28:50.738] [INFO] cheese - batch complete in: 1.285 secs +[2018-02-13T08:28:50.887] [INFO] cheese - inserting 1000 documents. first: Petridul de Mijloc and last: Hôtel d'Angoulême Lamoignon +[2018-02-13T08:28:50.889] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:28:50.982] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:28:51.140] [INFO] cheese - inserting 1000 documents. first: Flinders Ranges Worm-lizard and last: Loving WR-1 Love +[2018-02-13T08:28:51.182] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:28:51.206] [INFO] cheese - inserting 1000 documents. first: The Lady with the Unicorn and last: Big Cat +[2018-02-13T08:28:51.282] [INFO] cheese - inserting 1000 documents. first: Oregon Labor Market Information System and last: History of toilet +[2018-02-13T08:28:51.286] [INFO] cheese - inserting 1000 documents. first: File:Robert Carter -Halo.jpg and last: Haspra +[2018-02-13T08:28:51.331] [INFO] cheese - inserting 1000 documents. first: Mark Zuckerberg and last: Teja (character) +[2018-02-13T08:28:51.354] [INFO] cheese - batch complete in: 1.788 secs +[2018-02-13T08:28:51.398] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:28:51.416] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:28:51.435] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:28:51.559] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Green Bay, Wisconsin and last: NO-DO +[2018-02-13T08:28:51.602] [INFO] cheese - inserting 1000 documents. first: Category:Women's basketball by country and last: Rayavaram (Tamil Nadu) +[2018-02-13T08:28:51.646] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:28:51.689] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:28:51.805] [INFO] cheese - inserting 1000 documents. first: Ooms and last: List of Category A listed buildings in Na h-Eileanan Siar +[2018-02-13T08:28:51.864] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:28:51.899] [INFO] cheese - inserting 1000 documents. first: Fear (Dota 2 player) and last: Frank Hawkins (rugby player) +[2018-02-13T08:28:52.007] [INFO] cheese - batch complete in: 1.269 secs +[2018-02-13T08:28:52.046] [INFO] cheese - inserting 1000 documents. first: Schroon lake and last: Kalyana Varadharaja Perumal Temple +[2018-02-13T08:28:52.083] [INFO] cheese - inserting 1000 documents. first: Yolo City and last: The G Spot and Other Recent Discoveries About Human Sexuality +[2018-02-13T08:28:52.110] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:28:52.183] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:28:52.215] [INFO] cheese - inserting 1000 documents. first: Mancha Alta Albaceteña and last: 1955 Cincinnati Reds +[2018-02-13T08:28:52.217] [INFO] cheese - inserting 1000 documents. first: Panopoulo, Greece and last: Oppositional defiant disorder +[2018-02-13T08:28:52.255] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pharmamedics.com and last: ARM Alvarez +[2018-02-13T08:28:52.286] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:28:52.400] [INFO] cheese - inserting 1000 documents. first: Category:Royal Navy in World War I and last: Marquisate of Monferrato +[2018-02-13T08:28:52.421] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:28:52.436] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:28:52.543] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:28:52.779] [INFO] cheese - inserting 1000 documents. first: Category:1915 disestablishments in China and last: Vorotan Hydropower Plant +[2018-02-13T08:28:52.830] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:28:52.875] [INFO] cheese - inserting 1000 documents. first: Template:Covenantor Rebellion of 1770's and last: General Montcalm +[2018-02-13T08:28:52.887] [INFO] cheese - inserting 1000 documents. first: Xbalanque and last: Washington Allston +[2018-02-13T08:28:52.976] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:28:53.015] [INFO] cheese - batch complete in: 1.661 secs +[2018-02-13T08:28:53.045] [INFO] cheese - inserting 1000 documents. first: 1956 Cincinnati Reds and last: Samuel Wale +[2018-02-13T08:28:53.148] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:28:53.203] [INFO] cheese - inserting 1000 documents. first: Richard Hay (disambiguation) and last: File:Zolarxtimelesscvr.jpg +[2018-02-13T08:28:53.232] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sam Kelley and last: Wangxian, Liling +[2018-02-13T08:28:53.347] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:28:53.370] [INFO] cheese - inserting 1000 documents. first: John R. Carter and last: Oka River (Siberia) +[2018-02-13T08:28:53.403] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:28:53.457] [INFO] cheese - inserting 1000 documents. first: David Evyn Canter and last: 奇瑞汽车 +[2018-02-13T08:28:53.468] [INFO] cheese - inserting 1000 documents. first: Better By You, Better Than Me and last: Una S. Ryan +[2018-02-13T08:28:53.542] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:28:53.551] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T08:28:53.636] [INFO] cheese - batch complete in: 1.453 secs +[2018-02-13T08:28:53.646] [INFO] cheese - inserting 1000 documents. first: Mamadou Seck (footballer) and last: Category:Mid-importance science fiction articles +[2018-02-13T08:28:53.742] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:28:53.894] [INFO] cheese - inserting 1000 documents. first: Cholamandalam coast and last: Heishuihe Township +[2018-02-13T08:28:53.898] [INFO] cheese - inserting 1000 documents. first: Bengali-American and last: Tumar Darrehsi-ye Bala +[2018-02-13T08:28:53.905] [INFO] cheese - inserting 1000 documents. first: Cook levin theorem and last: Wikipedia:Articles for deletion/Ruatoki +[2018-02-13T08:28:53.951] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:28:53.970] [INFO] cheese - inserting 1000 documents. first: Category:Hanlim Multi Art School alumni and last: April 2003 +[2018-02-13T08:28:53.980] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:28:54.022] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:28:54.048] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:28:54.160] [INFO] cheese - inserting 1000 documents. first: Bristle-spined rat and last: C F Booth +[2018-02-13T08:28:54.217] [INFO] cheese - inserting 1000 documents. first: Gerald Mcboingboing and last: 5280 magazine +[2018-02-13T08:28:54.235] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:28:54.299] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:28:54.342] [INFO] cheese - inserting 1000 documents. first: Maurus Servius Honoratius and last: File:KIS cover.jpg +[2018-02-13T08:28:54.366] [INFO] cheese - inserting 1000 documents. first: Julianna Margulies and last: Compound noun +[2018-02-13T08:28:54.502] [INFO] cheese - batch complete in: 1.487 secs +[2018-02-13T08:28:54.504] [INFO] cheese - inserting 1000 documents. first: West Bank settlement and last: Ophisurus versicolor +[2018-02-13T08:28:54.514] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:28:54.597] [INFO] cheese - inserting 1000 documents. first: Huaiyang, Hebei and last: Category:1873 in London +[2018-02-13T08:28:54.604] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:28:54.698] [INFO] cheese - inserting 1000 documents. first: Category:1987 in Macau and last: Western People's Front +[2018-02-13T08:28:54.701] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T08:28:54.763] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:28:54.793] [INFO] cheese - inserting 1000 documents. first: Neo wheels and last: File:UnwillingEmigrants.jpg +[2018-02-13T08:28:54.886] [INFO] cheese - inserting 1000 documents. first: Muscles of the hand and last: Maryland State Route 95 +[2018-02-13T08:28:54.919] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:28:54.966] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:28:55.214] [INFO] cheese - inserting 1000 documents. first: Bladder diseases and last: Inuit group +[2018-02-13T08:28:55.214] [INFO] cheese - inserting 1000 documents. first: Timbisha people and last: Category:People from Cherven Bryag +[2018-02-13T08:28:55.269] [INFO] cheese - inserting 1000 documents. first: Dexter National Fish Hatchery and last: Patrick Bowes-Lyon (tennis player) +[2018-02-13T08:28:55.297] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:28:55.314] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:28:55.471] [INFO] cheese - inserting 1000 documents. first: File:Age of Empire Online cover.jpg and last: Category:Townships in Rush County, Indiana +[2018-02-13T08:28:55.475] [INFO] cheese - batch complete in: 0.961 secs +[2018-02-13T08:28:55.570] [INFO] cheese - inserting 1000 documents. first: SwapMagic and last: Steatocranus gibbiceps +[2018-02-13T08:28:55.617] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:28:55.663] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:28:55.722] [INFO] cheese - inserting 1000 documents. first: Symphony No. 2 (Borodin) and last: Barbatesti, Gorj +[2018-02-13T08:28:55.743] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:FFX Tools and last: ARA Independencia (1891) +[2018-02-13T08:28:55.833] [INFO] cheese - inserting 1000 documents. first: Compound adjective and last: Unary +[2018-02-13T08:28:55.840] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:28:55.858] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:28:56.004] [INFO] cheese - batch complete in: 1.502 secs +[2018-02-13T08:28:56.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oak Hill Middle School and last: Dust and mist collection +[2018-02-13T08:28:56.212] [INFO] cheese - inserting 1000 documents. first: José Barrionuevo and last: Anita Belle Colton +[2018-02-13T08:28:56.254] [INFO] cheese - inserting 1000 documents. first: Alan Marshall (disambiguation) and last: 2011–12 Celtic league +[2018-02-13T08:28:56.258] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:28:56.282] [INFO] cheese - inserting 1000 documents. first: Gallic group and last: Doucet-Boudreau v. Nova Scotia +[2018-02-13T08:28:56.311] [INFO] cheese - inserting 1000 documents. first: Emmett Vogan and last: Ruslan Sirota +[2018-02-13T08:28:56.316] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:28:56.402] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:28:56.426] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T08:28:56.553] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T08:28:56.748] [INFO] cheese - inserting 1000 documents. first: Draft:Audacieux and last: File:Headlong.jpg +[2018-02-13T08:28:56.826] [INFO] cheese - inserting 1000 documents. first: Bengesti and last: Pine Tree Flag +[2018-02-13T08:28:56.934] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:28:57.003] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:28:57.157] [INFO] cheese - inserting 1000 documents. first: CUED and last: Futaleufú Airport +[2018-02-13T08:28:57.229] [INFO] cheese - inserting 1000 documents. first: Category:Minato, Tokyo and last: File:BravoGiovanni.jpg +[2018-02-13T08:28:57.246] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:28:57.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jessica-jarrell-daily.skyrock.com. and last: Category:North East England articles by quality +[2018-02-13T08:28:57.337] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:28:57.340] [INFO] cheese - inserting 1000 documents. first: Namida wo Misenaide (Boys Don't Cry) and last: Deep Space Nine (fictional space station) +[2018-02-13T08:28:57.375] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:28:57.483] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:28:57.567] [INFO] cheese - inserting 1000 documents. first: Southwark Bridge and last: Socialist Worker's Party +[2018-02-13T08:28:57.655] [INFO] cheese - inserting 1000 documents. first: (252) Clementina and last: Scottish Executive agencies +[2018-02-13T08:28:57.737] [INFO] cheese - batch complete in: 1.733 secs +[2018-02-13T08:28:57.903] [INFO] cheese - inserting 1000 documents. first: Giovanni Manzuoli and last: Template:Grande Prairie Radio +[2018-02-13T08:28:57.929] [INFO] cheese - batch complete in: 1.503 secs +[2018-02-13T08:28:58.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Latif Halmat and last: File:Mustard-seed-international-logo-white-footer.png +[2018-02-13T08:28:58.113] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:28:58.144] [INFO] cheese - inserting 1000 documents. first: Fernando Cuéllar Reyes and last: File:Metro FM Logo2.gif +[2018-02-13T08:28:58.154] [INFO] cheese - batch complete in: 1.22 secs +[2018-02-13T08:28:58.243] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:28:58.436] [INFO] cheese - inserting 1000 documents. first: South African birds and last: Otradny, Samara Oblast +[2018-02-13T08:28:58.452] [INFO] cheese - inserting 1000 documents. first: Charles Gilbert Heathcote and last: Wikipedia:Articles for deletion/David Eager +[2018-02-13T08:28:58.533] [INFO] cheese - inserting 1000 documents. first: Indonesian Basketball League and last: Obomkpa +[2018-02-13T08:28:58.557] [INFO] cheese - batch complete in: 1.22 secs +[2018-02-13T08:28:58.566] [INFO] cheese - batch complete in: 1.191 secs +[2018-02-13T08:28:58.669] [INFO] cheese - batch complete in: 1.185 secs +[2018-02-13T08:28:58.869] [INFO] cheese - inserting 1000 documents. first: Thriplow and last: Liselotte Herrmann +[2018-02-13T08:28:58.870] [INFO] cheese - inserting 1000 documents. first: Stanley Community College and last: José María Larios +[2018-02-13T08:28:58.938] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Dictionary of National Biography/Artists/wikidata and last: Hôtel Dieu in Paris +[2018-02-13T08:28:58.975] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:28:58.991] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T08:28:59.082] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:28:59.265] [INFO] cheese - inserting 1000 documents. first: Railway electric traction and last: La bandera Argentina +[2018-02-13T08:28:59.280] [INFO] cheese - inserting 1000 documents. first: Diego de la Vega and last: Joe Tex +[2018-02-13T08:28:59.398] [INFO] cheese - inserting 1000 documents. first: Cistanthe tweedyi and last: Asemnantha pubescens +[2018-02-13T08:28:59.410] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:28:59.513] [INFO] cheese - batch complete in: 1.776 secs +[2018-02-13T08:28:59.522] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:28:59.607] [INFO] cheese - inserting 1000 documents. first: Pullankuzhal and last: Wikipedia:Articles for deletion/Pokémon Movie 13 +[2018-02-13T08:28:59.705] [INFO] cheese - inserting 1000 documents. first: Morgan Aero8 and last: Assistant commissioner +[2018-02-13T08:28:59.767] [INFO] cheese - inserting 1000 documents. first: Harran, Idlib and last: Boutheïna Amiche +[2018-02-13T08:28:59.781] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T08:28:59.786] [INFO] cheese - inserting 1000 documents. first: 2013–14 Saint Mary's Gaels women's basketball team and last: Template:Attached KML/Kentucky Route 842 +[2018-02-13T08:28:59.865] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:28:59.939] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:28:59.970] [INFO] cheese - batch complete in: 1.857 secs +[2018-02-13T08:29:00.019] [INFO] cheese - inserting 1000 documents. first: HVDC Wolgograd-Donbass and last: Slanesville Pike +[2018-02-13T08:29:00.108] [INFO] cheese - inserting 1000 documents. first: Astiella delicatula and last: Category:Greenville Groove +[2018-02-13T08:29:00.180] [INFO] cheese - inserting 1000 documents. first: Hamilton P. Bee and last: Portal:Heavy Metal +[2018-02-13T08:29:00.188] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:29:00.190] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:29:00.353] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:29:00.553] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2009 November 5 and last: CANTOR Georg +[2018-02-13T08:29:00.658] [INFO] cheese - inserting 1000 documents. first: Hall, Joseph and last: Batavia Coast +[2018-02-13T08:29:00.692] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:29:00.773] [INFO] cheese - inserting 1000 documents. first: Lolol Palo Alto Airport and last: Dukenet communications +[2018-02-13T08:29:00.811] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:29:00.851] [INFO] cheese - inserting 1000 documents. first: John Rogan and last: Uoit +[2018-02-13T08:29:01.013] [INFO] cheese - inserting 1000 documents. first: Carl Faulkner and last: Wikipedia:Files for deletion/2011 August 21 +[2018-02-13T08:29:01.016] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:29:01.028] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:29:01.142] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:29:01.166] [INFO] cheese - inserting 1000 documents. first: Springfield Pike and last: Springbok (disambiguation) +[2018-02-13T08:29:01.269] [INFO] cheese - inserting 1000 documents. first: Common Slavic and last: BSNL Mobile +[2018-02-13T08:29:01.287] [INFO] cheese - inserting 1000 documents. first: Richard Lewontin and last: Ferenc Mádl +[2018-02-13T08:29:01.293] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T08:29:01.311] [INFO] cheese - inserting 1000 documents. first: Joce of York and last: Harbourvest Partners +[2018-02-13T08:29:01.444] [INFO] cheese - batch complete in: 1.091 secs +[2018-02-13T08:29:01.444] [INFO] cheese - batch complete in: 1.931 secs +[2018-02-13T08:29:01.452] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:29:01.520] [INFO] cheese - inserting 1000 documents. first: Bandolero (band) and last: Abu Dali, Idlib +[2018-02-13T08:29:01.597] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:29:01.601] [INFO] cheese - inserting 1000 documents. first: File:Marillion cover-my-eyes.jpg and last: Transport in Hyderabad, India +[2018-02-13T08:29:01.690] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:29:01.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/USS Comfort (AH-3) and last: Jackson County Courthouse (Medford, Oregon) +[2018-02-13T08:29:01.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2011 August 21 and last: Template:Nfl predraft/doc +[2018-02-13T08:29:01.785] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:29:01.833] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:29:02.053] [INFO] cheese - inserting 1000 documents. first: RAE Hurricane and last: Grote Street, Adelaide +[2018-02-13T08:29:02.110] [INFO] cheese - inserting 1000 documents. first: Tsuyoshi Hasegawa and last: Dinah the Dining Car +[2018-02-13T08:29:02.115] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:29:02.130] [INFO] cheese - inserting 1000 documents. first: Center School (Connecticut) and last: Kirkby, Geoffrey John, Captain, Royal Navy, CBE, DSC ** +[2018-02-13T08:29:02.175] [INFO] cheese - inserting 1000 documents. first: Bartaman Bharat and last: 2013 Morocco Tennis Tour – Meknes +[2018-02-13T08:29:02.206] [INFO] cheese - inserting 1000 documents. first: Abu Omar, Idlib and last: Wikipedia:Articles for deletion/Madagascar Oil +[2018-02-13T08:29:02.189] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:29:02.234] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:29:02.247] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:29:02.332] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:29:02.436] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Why is plastic surgery bad and last: File:LiveAtTheVillageVanguard a ThadJonesMelLewis.jpg +[2018-02-13T08:29:02.491] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:29:02.621] [INFO] cheese - inserting 1000 documents. first: Understudy and last: Patrick Leahy +[2018-02-13T08:29:02.649] [INFO] cheese - inserting 1000 documents. first: Coroá language and last: Shandaar (1990 film) +[2018-02-13T08:29:02.676] [INFO] cheese - inserting 1000 documents. first: Sputnik music and last: Jan Willem Eduard Buijs +[2018-02-13T08:29:02.686] [INFO] cheese - batch complete in: 1.242 secs +[2018-02-13T08:29:02.687] [INFO] cheese - inserting 1000 documents. first: Graham Rees and last: Pornthip Nakhirunkanok +[2018-02-13T08:29:02.726] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:29:02.783] [INFO] cheese - inserting 1000 documents. first: Template:UK decimalisation and last: Boldface hierarchy +[2018-02-13T08:29:02.832] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:29:02.834] [INFO] cheese - inserting 1000 documents. first: Argentino hasta la muerte and last: Category:Samoan society +[2018-02-13T08:29:02.890] [INFO] cheese - inserting 1000 documents. first: Heacham and last: Fantastic Factory +[2018-02-13T08:29:02.956] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:29:02.980] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:29:03.033] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:29:03.205] [INFO] cheese - inserting 1000 documents. first: GEMS Royal Dubai School and last: Shannon peters +[2018-02-13T08:29:03.234] [INFO] cheese - inserting 1000 documents. first: Sibford and last: Category:Cities in Morgan County, Illinois +[2018-02-13T08:29:03.319] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:29:03.337] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:29:03.593] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Ron Elliott (musician) and last: Wikipedia:WikiProject Spam/LinkReports/motorolafans.info +[2018-02-13T08:29:03.754] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:29:03.783] [INFO] cheese - inserting 1000 documents. first: Ophthalmitis viridior and last: Antaeotricha tectoria +[2018-02-13T08:29:03.917] [INFO] cheese - inserting 1000 documents. first: The Daily Citizen and last: Wikipedia:MMOG/OR/NEWS +[2018-02-13T08:29:03.971] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:29:04.041] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:29:04.085] [INFO] cheese - inserting 1000 documents. first: Levada and last: Charter trustee +[2018-02-13T08:29:04.113] [INFO] cheese - inserting 1000 documents. first: Category:Hazara politicians and last: Category:Houses completed in 1906 +[2018-02-13T08:29:04.119] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Moultrie County, Illinois and last: Category:1811 in Thailand +[2018-02-13T08:29:04.138] [INFO] cheese - inserting 1000 documents. first: Category:2008 Monte Carlo Masters and last: Nirtza +[2018-02-13T08:29:04.191] [INFO] cheese - inserting 1000 documents. first: Lisa Murkowski and last: Fushengji shi +[2018-02-13T08:29:04.205] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T08:29:04.213] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:29:04.218] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:29:04.327] [INFO] cheese - batch complete in: 1.493 secs +[2018-02-13T08:29:04.568] [INFO] cheese - batch complete in: 1.882 secs +[2018-02-13T08:29:04.629] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Techno bass and last: T. indicus +[2018-02-13T08:29:04.763] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:29:04.837] [INFO] cheese - inserting 1000 documents. first: The Birth of a Baby and last: Category:Films directed by Urban Gad +[2018-02-13T08:29:04.867] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:29:04.969] [INFO] cheese - inserting 1000 documents. first: Thomas Hope, Lord Kerse and last: Wikipedia:WikiProject Spam/Local/bhesan-com.webnode.in +[2018-02-13T08:29:04.971] [INFO] cheese - inserting 1000 documents. first: American Flyers and last: Category:Mohawk Valley Prowlers players +[2018-02-13T08:29:05.048] [INFO] cheese - inserting 1000 documents. first: Parlican and last: Zakk Irius +[2018-02-13T08:29:05.047] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:29:05.062] [INFO] cheese - inserting 1000 documents. first: Category:Houses completed in 1907 and last: Buddleja speciosissima +[2018-02-13T08:29:05.070] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:29:05.124] [INFO] cheese - inserting 1000 documents. first: Neostriatum and last: Epsilon2 Arae +[2018-02-13T08:29:05.140] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:29:05.143] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:29:05.251] [INFO] cheese - inserting 1000 documents. first: You Were Right, Joe and last: Category:Administrators of The Royal Ballet +[2018-02-13T08:29:05.257] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T08:29:05.344] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:29:05.352] [INFO] cheese - inserting 1000 documents. first: 20th Saturn Awards and last: File:Gators cross country logo.jpeg +[2018-02-13T08:29:05.450] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:29:05.609] [INFO] cheese - inserting 1000 documents. first: Theodore Wright and last: First Sale Doctrine +[2018-02-13T08:29:05.653] [INFO] cheese - inserting 1000 documents. first: Category:New Haven Knights players and last: Dirichlet algebra +[2018-02-13T08:29:05.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/stampcollecting.wikia.com and last: Template:Cite California statute/title 1999 724 +[2018-02-13T08:29:05.683] [INFO] cheese - inserting 1000 documents. first: Pelcoya Canton and last: Battle of Kuala Lumpur +[2018-02-13T08:29:05.731] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:29:05.736] [INFO] cheese - batch complete in: 1.168 secs +[2018-02-13T08:29:05.763] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:29:05.771] [INFO] cheese - inserting 1000 documents. first: Al Meem and last: File:O costa do castelo.jpg +[2018-02-13T08:29:05.833] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:29:05.985] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:29:06.114] [INFO] cheese - inserting 1000 documents. first: Epsilon-1 Arae and last: Romance of the Grail +[2018-02-13T08:29:06.174] [INFO] cheese - inserting 1000 documents. first: Category:People of medieval Bulgaria and last: Human centipede +[2018-02-13T08:29:06.226] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:29:06.266] [INFO] cheese - inserting 1000 documents. first: Self‑oscillation and last: Al-Arien +[2018-02-13T08:29:06.294] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:29:06.352] [INFO] cheese - inserting 1000 documents. first: Hiroshima Port Station and last: Rejected cartoons +[2018-02-13T08:29:06.390] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:29:06.412] [INFO] cheese - inserting 1000 documents. first: Category:Works by region of setting and last: Mr. Slate +[2018-02-13T08:29:06.457] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:29:06.468] [INFO] cheese - inserting 1000 documents. first: George Arthur Harwin Branson and last: File:AUS Alphanumeric Route C707.svg +[2018-02-13T08:29:06.536] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:29:06.572] [INFO] cheese - inserting 1000 documents. first: File:Ghostship.jpg and last: Portal:Tropical cyclones/Selected picture/Hurricane Dean +[2018-02-13T08:29:06.581] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:29:06.659] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:29:06.900] [INFO] cheese - inserting 1000 documents. first: United Mexican States (1824-1835) and last: Townshend, Paul +[2018-02-13T08:29:06.993] [INFO] cheese - inserting 1000 documents. first: 韻圖 and last: Category:People from Zwettl +[2018-02-13T08:29:07.093] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:29:07.128] [INFO] cheese - inserting 1000 documents. first: John Cox (sound engineer) and last: Template:Taxonomy/Lomariopsidaceae +[2018-02-13T08:29:07.153] [INFO] cheese - inserting 1000 documents. first: Pear Tree House and last: Sørumsand +[2018-02-13T08:29:07.189] [INFO] cheese - inserting 1000 documents. first: 802.11u and last: Gun Alley Murder +[2018-02-13T08:29:07.198] [INFO] cheese - inserting 1000 documents. first: Rubber Soul (manga) and last: William Kingsbury +[2018-02-13T08:29:07.211] [INFO] cheese - inserting 1000 documents. first: File:AUS Alphanumeric Route C708.svg and last: File:Hermann Greiner.jpg +[2018-02-13T08:29:07.273] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:29:07.277] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:29:07.330] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:29:07.336] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:29:07.403] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:29:07.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Spider and fly April 2008-6.jpg and last: Wikipedia:Notability (geographic features) +[2018-02-13T08:29:07.502] [INFO] cheese - batch complete in: 1.766 secs +[2018-02-13T08:29:07.530] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:29:07.743] [INFO] cheese - inserting 1000 documents. first: Tucker, Paul and last: Book:Billy Paul +[2018-02-13T08:29:07.795] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:29:07.899] [INFO] cheese - inserting 1000 documents. first: Zeitz (surname) and last: Category:Bus incidents in Guatemala +[2018-02-13T08:29:07.909] [INFO] cheese - inserting 1000 documents. first: Prikubansky District, Karachay-Cherkess Republic and last: Marriage in Judaism +[2018-02-13T08:29:07.951] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:29:07.980] [INFO] cheese - inserting 1000 documents. first: List of volcanoes in Borneo and last: Fahad Khamees Mubarak +[2018-02-13T08:29:07.989] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:29:08.092] [INFO] cheese - inserting 1000 documents. first: Théâtre de la Gaîté (disambiguation) and last: Portal:Animation/Anniversaries/September/September 8 +[2018-02-13T08:29:08.106] [INFO] cheese - inserting 1000 documents. first: Grind (2003 film) and last: Effect of Hurricane Katrina on Florida +[2018-02-13T08:29:08.185] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:29:08.217] [INFO] cheese - inserting 1000 documents. first: Be-Knighted and last: The Diceman (TV Series) +[2018-02-13T08:29:08.231] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:29:08.268] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:29:08.366] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:29:08.506] [INFO] cheese - inserting 1000 documents. first: MARG Limited (India) and last: Cheshmeh Vazan +[2018-02-13T08:29:08.536] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:29:08.621] [INFO] cheese - inserting 1000 documents. first: Suresh Perera (Old Cambrians cricketer) and last: Kilia Kiel +[2018-02-13T08:29:08.700] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:29:08.754] [INFO] cheese - inserting 1000 documents. first: List of Finance Ministers of France and last: Emergency Vets +[2018-02-13T08:29:08.795] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2009 November 9 and last: Category:People from Sousse Governorate +[2018-02-13T08:29:08.818] [INFO] cheese - inserting 1000 documents. first: File:Kecksies.jpg and last: Wikipedia:Articles for deletion/Machosexual (2nd nomination) +[2018-02-13T08:29:08.880] [INFO] cheese - batch complete in: 1.378 secs +[2018-02-13T08:29:08.875] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:29:08.917] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:29:08.931] [INFO] cheese - inserting 1000 documents. first: Template:Country data Libyan Arab Jamahiriya and last: American Chamber of Commerce in Sri Lanka +[2018-02-13T08:29:08.986] [INFO] cheese - inserting 1000 documents. first: Egyptian Current Party and last: S.C. Trestina A.S.D. +[2018-02-13T08:29:09.041] [INFO] cheese - inserting 1000 documents. first: Strong ontology and last: Category:Museums in North Dakota +[2018-02-13T08:29:09.042] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:29:09.044] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:29:09.095] [INFO] cheese - inserting 1000 documents. first: Daylar and last: Cycling at the 2016 Summer Olympics – Women's Keirin +[2018-02-13T08:29:09.151] [INFO] cheese - inserting 1000 documents. first: Milonoff and last: Transparent identifiers +[2018-02-13T08:29:09.150] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:29:09.170] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:29:09.238] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:29:09.326] [INFO] cheese - inserting 1000 documents. first: Miun and last: 2009-10 Detroit Pistons season +[2018-02-13T08:29:09.376] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T08:29:09.473] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Mexican-American articles and last: Category:2002 in South Dakota +[2018-02-13T08:29:09.510] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:29:09.513] [INFO] cheese - inserting 1000 documents. first: Template:Cleanup-spam/doc and last: MCAS Eagle Mountain Lake +[2018-02-13T08:29:09.580] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:29:09.583] [INFO] cheese - inserting 1000 documents. first: Carnosinase deficiency and last: Official Nationality +[2018-02-13T08:29:09.628] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2016 Summer Olympics – Women's Omnium and last: Lukas Schubert +[2018-02-13T08:29:09.646] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:29:09.704] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:29:09.800] [INFO] cheese - inserting 1000 documents. first: Sutura lambdoidea and last: Jiu Hua Shan +[2018-02-13T08:29:09.825] [INFO] cheese - inserting 1000 documents. first: Zuid-Willemsvaart and last: Category:2016 in Canadian music +[2018-02-13T08:29:09.873] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:29:09.919] [INFO] cheese - inserting 1000 documents. first: Template:Lang-ace and last: Flippin-Lodge +[2018-02-13T08:29:09.936] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:29:10.057] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:29:10.176] [INFO] cheese - inserting 1000 documents. first: Tree homomorphism and last: Col d'Andrion +[2018-02-13T08:29:10.181] [INFO] cheese - inserting 1000 documents. first: Category:2004 in South Dakota and last: Wikipedia:Articles for deletion/Secret Key Generation Via Wireless Channel Characterization +[2018-02-13T08:29:10.194] [INFO] cheese - inserting 1000 documents. first: Energies of God and last: Return To Castle Wolfenstein +[2018-02-13T08:29:10.225] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:29:10.263] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:29:10.281] [INFO] cheese - inserting 1000 documents. first: File:Soy el mismo royce.jpg and last: Brooklyn Library, Multnomah County +[2018-02-13T08:29:10.294] [INFO] cheese - inserting 1000 documents. first: Form genera and last: Kiichi! +[2018-02-13T08:29:10.337] [INFO] cheese - batch complete in: 1.456 secs +[2018-02-13T08:29:10.389] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:29:10.457] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:29:10.618] [INFO] cheese - inserting 1000 documents. first: KaloBios Pharmaceuticals and last: The Sultan of Johore +[2018-02-13T08:29:10.630] [INFO] cheese - inserting 1000 documents. first: Flippin Lodge and last: Tedi Sarafian +[2018-02-13T08:29:10.687] [INFO] cheese - inserting 1000 documents. first: The Little White Cloud That Cried and last: Army ranks of the Japanese Empire during World War II +[2018-02-13T08:29:10.695] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:29:10.708] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T08:29:10.780] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:29:10.791] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 1983–84 FA Cup 2R and last: Goldenspotted snake eel +[2018-02-13T08:29:10.851] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T08:29:10.926] [INFO] cheese - inserting 1000 documents. first: Mary Alcock and last: Freotfe4pda +[2018-02-13T08:29:10.935] [INFO] cheese - inserting 1000 documents. first: Zion Crossroads, Virginia and last: Prima Esposizione Internazionale d'Arte Decorativa Moderna +[2018-02-13T08:29:11.042] [INFO] cheese - inserting 1000 documents. first: 2011 World Judo Championships – Women's 63 kg and last: Hotot +[2018-02-13T08:29:11.049] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:29:11.073] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:29:11.183] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:29:11.244] [INFO] cheese - inserting 1000 documents. first: John Allum and last: Malpaso Company +[2018-02-13T08:29:11.315] [INFO] cheese - inserting 1000 documents. first: Der Sultan von Johore and last: Category:Members of fraternal orders +[2018-02-13T08:29:11.332] [INFO] cheese - inserting 1000 documents. first: MD 707 and last: Shire of Walloon +[2018-02-13T08:29:11.353] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:29:11.433] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:29:11.535] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:29:11.738] [INFO] cheese - inserting 1000 documents. first: List of minor planets/10701–10800 and last: New Era Academy +[2018-02-13T08:29:11.738] [INFO] cheese - inserting 1000 documents. first: RTCW and last: Phocoena +[2018-02-13T08:29:11.775] [INFO] cheese - inserting 1000 documents. first: Category:Education in Tanzania and last: Jonathan Lee Iverson +[2018-02-13T08:29:11.844] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:29:11.864] [INFO] cheese - inserting 1000 documents. first: Wikipedia:COATRACKING and last: Apollonia Museum (Libya) +[2018-02-13T08:29:11.869] [INFO] cheese - batch complete in: 1.531 secs +[2018-02-13T08:29:11.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Magic Wands and last: Warren, Oregon +[2018-02-13T08:29:11.923] [INFO] cheese - batch complete in: 1.142 secs +[2018-02-13T08:29:12.006] [INFO] cheese - inserting 1000 documents. first: Kevin M. Beaver and last: File:Mohun Bagan A.C. Logo.png +[2018-02-13T08:29:12.109] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:29:12.194] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:29:12.199] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:29:12.239] [INFO] cheese - inserting 1000 documents. first: Savez za bolju budućnost BiH and last: Meja Road +[2018-02-13T08:29:12.287] [INFO] cheese - inserting 1000 documents. first: Walloon Division and last: File:Tossy Spivakovsky, Violinist.jpg +[2018-02-13T08:29:12.321] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:29:12.400] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:29:12.824] [INFO] cheese - inserting 1000 documents. first: Ilya Ganaba and last: First French empire +[2018-02-13T08:29:12.842] [INFO] cheese - inserting 1000 documents. first: Hurricane Dora (1999) and last: Kawaihae (band) +[2018-02-13T08:29:12.859] [INFO] cheese - inserting 1000 documents. first: Category:Reservoirs in St. Lawrence County, New York and last: Category:1900 disestablishments in the Netherlands +[2018-02-13T08:29:12.900] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:29:12.913] [INFO] cheese - inserting 1000 documents. first: Ungathered (Mormonism) and last: Category:Cities in Cobb County, Georgia +[2018-02-13T08:29:12.960] [INFO] cheese - inserting 1000 documents. first: Peter Mahon (judge) and last: Matt Peccini +[2018-02-13T08:29:12.981] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:29:12.990] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:29:13.017] [INFO] cheese - inserting 1000 documents. first: Replacement migration and last: Gozdni Joža +[2018-02-13T08:29:13.021] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:29:13.054] [INFO] cheese - inserting 1000 documents. first: Telemusik and last: Paco Clos +[2018-02-13T08:29:13.216] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:29:13.218] [INFO] cheese - batch complete in: 1.294 secs +[2018-02-13T08:29:13.212] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:29:13.537] [INFO] cheese - inserting 1000 documents. first: File:Clutter Nutters.png and last: Hitler's murder paradox +[2018-02-13T08:29:13.590] [INFO] cheese - inserting 1000 documents. first: Julia Maesa and last: Victoria Ka'iulani +[2018-02-13T08:29:13.601] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:29:13.626] [INFO] cheese - inserting 1000 documents. first: File:Brother to brother.jpg and last: Timebomb Records +[2018-02-13T08:29:13.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nyds-discographies.com and last: Free and Easy (1930 film) +[2018-02-13T08:29:13.689] [INFO] cheese - inserting 1000 documents. first: Category:1944 disestablishments in the Netherlands and last: The Buddenbrooks (film) +[2018-02-13T08:29:13.692] [INFO] cheese - inserting 1000 documents. first: King Kong (musician) and last: Mt. Data Shrew Rat +[2018-02-13T08:29:13.730] [INFO] cheese - batch complete in: 1.861 secs +[2018-02-13T08:29:13.746] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:29:13.765] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:29:13.777] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:29:13.794] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:29:13.839] [INFO] cheese - inserting 1000 documents. first: Fransisco Javier Clos Orozco and last: Marilyn Jean Buck +[2018-02-13T08:29:14.007] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:29:14.015] [INFO] cheese - inserting 1000 documents. first: David Follett and last: Wikipedia:Articles for deletion/Farrell Curry +[2018-02-13T08:29:14.137] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:29:14.271] [INFO] cheese - inserting 1000 documents. first: Category:Prime (New Zealand) programmes and last: QR Pedia +[2018-02-13T08:29:14.430] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:29:14.455] [INFO] cheese - inserting 1000 documents. first: Ernst Tognetti and last: Wikipedia:Miscellany for deletion/User:Splendidamente/sandbox +[2018-02-13T08:29:14.583] [INFO] cheese - inserting 1000 documents. first: International Buddhist Progress Society and last: Robert Black (auditor) +[2018-02-13T08:29:14.588] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:29:14.595] [INFO] cheese - inserting 1000 documents. first: Freddy Mullins and last: Category:UCLA Bruins athletic directors +[2018-02-13T08:29:14.669] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:29:14.698] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:29:14.788] [INFO] cheese - inserting 1000 documents. first: Dan Keplinger and last: Blue Agave +[2018-02-13T08:29:14.810] [INFO] cheese - inserting 1000 documents. first: Brown thomas and last: Mary Star of the Sea Catholic Church, San Pedro, California +[2018-02-13T08:29:14.873] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T08:29:14.928] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:29:15.002] [INFO] cheese - inserting 1000 documents. first: Category:Canadian freeskiers and last: Rory Read +[2018-02-13T08:29:15.096] [INFO] cheese - inserting 1000 documents. first: File:EllaSwingsBrightlywithNelson.jpg and last: Netherlands national basketball team +[2018-02-13T08:29:15.165] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:29:15.195] [INFO] cheese - inserting 1000 documents. first: Early modern demography and last: One Banded Snake eel +[2018-02-13T08:29:15.233] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T08:29:15.304] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:29:15.338] [INFO] cheese - inserting 1000 documents. first: 2000 in science and last: Walrein +[2018-02-13T08:29:15.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stephen Barchan and last: Template:Equipe Matra Sports +[2018-02-13T08:29:15.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Apollo 17 (Eugene Cernan) and last: Kyeon Mi Ri +[2018-02-13T08:29:15.434] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:29:15.483] [INFO] cheese - batch complete in: 1.753 secs +[2018-02-13T08:29:15.547] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:29:15.617] [INFO] cheese - inserting 1000 documents. first: Treasure HD (Canada) and last: 2004 Taboo Tuesday +[2018-02-13T08:29:15.653] [INFO] cheese - inserting 1000 documents. first: Klash-n-krors and last: Template:Steely Dan +[2018-02-13T08:29:15.682] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:29:15.831] [INFO] cheese - inserting 1000 documents. first: Jean Tragodara and last: Category:Colorado Mammoth seasons +[2018-02-13T08:29:15.844] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:29:15.889] [INFO] cheese - inserting 1000 documents. first: One Banded snake Eel and last: MultiPar +[2018-02-13T08:29:15.986] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:29:16.005] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:29:16.042] [INFO] cheese - inserting 1000 documents. first: Highway 401-403-410 Bottleneck and last: Marisol Maldonado +[2018-02-13T08:29:16.085] [INFO] cheese - inserting 1000 documents. first: Jack Diamond (Casualty) and last: Category:Spinoza scholars +[2018-02-13T08:29:16.132] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:29:16.179] [INFO] cheese - inserting 1000 documents. first: Luke Tonkin and last: Portal:Solar System/Did you know/15 +[2018-02-13T08:29:16.354] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:29:16.450] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:29:16.514] [INFO] cheese - inserting 1000 documents. first: Margaret Blackwell and last: Buffalo and Lake Erie Traction Company +[2018-02-13T08:29:16.596] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:29:16.641] [INFO] cheese - inserting 1000 documents. first: Ian Richards (Judge) and last: List of Scheduled prehistoric Monuments in Carmarthenshire +[2018-02-13T08:29:16.684] [INFO] cheese - inserting 1000 documents. first: Category:Edmonton Rush seasons and last: Kurodasho Station +[2018-02-13T08:29:16.712] [INFO] cheese - inserting 1000 documents. first: Queen of Night and last: Kattappana +[2018-02-13T08:29:16.724] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:29:16.803] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:29:16.820] [INFO] cheese - inserting 1000 documents. first: Rosedale, Defiance County, Ohio and last: Ery Bos +[2018-02-13T08:29:16.860] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:29:16.919] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:29:16.986] [INFO] cheese - inserting 1000 documents. first: Mt Selinda High School and last: MacKenzie College +[2018-02-13T08:29:16.989] [INFO] cheese - inserting 1000 documents. first: Kecleon and last: Moleskin +[2018-02-13T08:29:17.004] [INFO] cheese - inserting 1000 documents. first: C. Delores Tucker and last: Jan Wlodarkiewicz +[2018-02-13T08:29:17.040] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:29:17.079] [INFO] cheese - batch complete in: 1.596 secs +[2018-02-13T08:29:17.109] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:29:17.150] [INFO] cheese - inserting 1000 documents. first: Category:NewYork–Presbyterian Hospital and last: Wikipedia:Styletips/19 +[2018-02-13T08:29:17.300] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:29:17.342] [INFO] cheese - inserting 1000 documents. first: File:Shorter University Athletics Logo.jpg and last: Waverley Bus Depot +[2018-02-13T08:29:17.412] [INFO] cheese - inserting 1000 documents. first: Sino-Tibetan relations during the Ming Dynasty and last: Smrkovsky +[2018-02-13T08:29:17.435] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:29:17.450] [INFO] cheese - inserting 1000 documents. first: Kwikwasut'inux First Nation and last: Lee–Fendall House +[2018-02-13T08:29:17.530] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:29:17.593] [INFO] cheese - inserting 1000 documents. first: Club Puebla Premier and last: Fountain Park, Ohio +[2018-02-13T08:29:17.601] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:29:17.664] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:29:17.685] [INFO] cheese - inserting 1000 documents. first: Stranger in Possum Meadows (The Twilight Zone) and last: Hau Hau +[2018-02-13T08:29:17.753] [INFO] cheese - inserting 1000 documents. first: RSJ and last: Queen Elizabeth Hospital (Hong Kong) +[2018-02-13T08:29:17.797] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:29:17.832] [INFO] cheese - inserting 1000 documents. first: Verkhnetoemskiy District and last: Wikipedia:Articles for deletion/Kulshreshtha +[2018-02-13T08:29:17.865] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:29:17.912] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:29:17.994] [INFO] cheese - inserting 1000 documents. first: Template:Jesuits in the Netherlands and last: Jordan Omley +[2018-02-13T08:29:18.083] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:29:18.095] [INFO] cheese - inserting 1000 documents. first: Ciara Sotto and last: Wikipedia:Categories for discussion/Log/2006 July 14 +[2018-02-13T08:29:18.105] [INFO] cheese - inserting 1000 documents. first: Łużyce, Otwock County and last: Goddess of Yesterday +[2018-02-13T08:29:18.148] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:29:18.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cunnilingus tongue and last: File:Kattu Roja Film .jpg +[2018-02-13T08:29:18.216] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:29:18.236] [INFO] cheese - inserting 1000 documents. first: John Stagliano and last: Bayside +[2018-02-13T08:29:18.310] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:29:18.414] [INFO] cheese - inserting 1000 documents. first: The Eurasia Foundation and last: Template:Extra chronology/doc +[2018-02-13T08:29:18.418] [INFO] cheese - batch complete in: 1.339 secs +[2018-02-13T08:29:18.489] [INFO] cheese - inserting 1000 documents. first: Yaśovarman I and last: Template:WAFL EF +[2018-02-13T08:29:18.502] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:29:18.586] [INFO] cheese - inserting 1000 documents. first: Mike Mani and last: Template:YLeague MH +[2018-02-13T08:29:18.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2006 July 15 and last: Wikipedia:Categories for discussion/Log/2006 February 25 +[2018-02-13T08:29:18.648] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:29:18.712] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:29:18.780] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:29:18.813] [INFO] cheese - inserting 1000 documents. first: Houston merritt and last: Roman Catholic Diocese of Dubrovnik +[2018-02-13T08:29:18.931] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:29:19.024] [INFO] cheese - inserting 1000 documents. first: LA 30 and last: White Cloud (disambiguation) +[2018-02-13T08:29:19.063] [INFO] cheese - inserting 1000 documents. first: Category:Business in Egypt and last: Etmopterus benchleyi +[2018-02-13T08:29:19.123] [INFO] cheese - batch complete in: 0.907 secs +[2018-02-13T08:29:19.137] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:29:19.233] [INFO] cheese - inserting 1000 documents. first: Template:YLeague WSW and last: File:Mikael Gabriel - Mun maailma.jpg +[2018-02-13T08:29:19.234] [INFO] cheese - inserting 1000 documents. first: Vanguardia Popular Socialista and last: Harold Davies (disambiguation) +[2018-02-13T08:29:19.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2006 February 26 and last: Wikipedia:Peer review/Rensselaer Polytechnic Institute/archive1 +[2018-02-13T08:29:19.255] [INFO] cheese - inserting 1000 documents. first: Template:WAFL EP and last: Category:Coalfields of India +[2018-02-13T08:29:19.302] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:29:19.304] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:29:19.305] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:29:19.360] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:29:19.615] [INFO] cheese - inserting 1000 documents. first: File:BeatlesTwistanShoutSingle.jpg and last: Diplomonads +[2018-02-13T08:29:19.670] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:29:19.705] [INFO] cheese - inserting 1000 documents. first: Healthcare in Kuwait and last: Wikipedia:Administrators' noticeboard/3RRArchive303 +[2018-02-13T08:29:19.748] [INFO] cheese - inserting 1000 documents. first: Eskimo Limon and last: Qaleh Juq-e Pain +[2018-02-13T08:29:19.775] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:29:19.814] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:29:19.920] [INFO] cheese - inserting 1000 documents. first: Thanskgiving Day and last: Thomas Nuttall +[2018-02-13T08:29:19.933] [INFO] cheese - inserting 1000 documents. first: Bruguiera exaristata and last: Portal:Ecology/Selected biographies/23 +[2018-02-13T08:29:20.024] [INFO] cheese - inserting 1000 documents. first: Bemidji State Beavers men's ice hockey and last: Brewcaria brocchinioides +[2018-02-13T08:29:20.042] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:29:20.054] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/List of films without article/List of missing Chinese language Films and last: Hawk-dove game +[2018-02-13T08:29:20.059] [INFO] cheese - inserting 1000 documents. first: File:Swingstatesx.png and last: File:Dow jones.png +[2018-02-13T08:29:20.077] [INFO] cheese - batch complete in: 1.659 secs +[2018-02-13T08:29:20.122] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:29:20.134] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:29:20.179] [INFO] cheese - batch complete in: 1.056 secs +[2018-02-13T08:29:20.302] [INFO] cheese - inserting 1000 documents. first: Benchmark (bourbon) and last: Turkey at the 2016 Summer Paralympics +[2018-02-13T08:29:20.342] [INFO] cheese - inserting 1000 documents. first: Magda Tagliafero and last: Death Banded Snake Eel +[2018-02-13T08:29:20.402] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:29:20.432] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:29:20.555] [INFO] cheese - inserting 1000 documents. first: Baileya (plant) and last: 79 Cancri +[2018-02-13T08:29:20.590] [INFO] cheese - inserting 1000 documents. first: Portal:Ecology/Selected biographies/24 and last: John Sinklo +[2018-02-13T08:29:20.625] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T08:29:20.646] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:29:20.688] [INFO] cheese - inserting 1000 documents. first: Tenniscoats and last: DVE +[2018-02-13T08:29:20.741] [INFO] cheese - inserting 1000 documents. first: École polytechnique fédérale de Lausanne and last: Category:Zonguldak Province +[2018-02-13T08:29:20.806] [INFO] cheese - inserting 1000 documents. first: Death Banded Snake eel and last: Portal:Aviation/Historical anniversaries/February in aviation/February 11 +[2018-02-13T08:29:20.806] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:29:20.862] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:29:20.904] [INFO] cheese - inserting 1000 documents. first: Brewcaria duidensis and last: Black Army Cutworm +[2018-02-13T08:29:20.954] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T08:29:21.087] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:29:21.122] [INFO] cheese - inserting 1000 documents. first: Michael Punke and last: Arnold Mærsk Møller +[2018-02-13T08:29:21.268] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:29:21.343] [INFO] cheese - inserting 1000 documents. first: Category:Baseball in Catalonia and last: File:Barnes and noble.jpg +[2018-02-13T08:29:21.406] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:29:21.497] [INFO] cheese - inserting 1000 documents. first: Category:Aksaray Province and last: Becky Bell +[2018-02-13T08:29:21.507] [INFO] cheese - inserting 1000 documents. first: 80 Cancri and last: Slogen +[2018-02-13T08:29:21.576] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Sioni Bolnisi and last: Graves AOC +[2018-02-13T08:29:21.588] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:29:21.607] [INFO] cheese - inserting 1000 documents. first: Arthur Helps and last: MediaWiki:Linktrail +[2018-02-13T08:29:21.657] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:29:21.683] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:29:21.717] [INFO] cheese - inserting 1000 documents. first: Portal:Aviation/Historical anniversaries/February in aviation/February 10 and last: Wikipedia:WikiProject Spam/Local/ishraqi.com +[2018-02-13T08:29:21.760] [INFO] cheese - inserting 1000 documents. first: Category:1793 in Oceania and last: Category:Battles and operations of the Vietnam War in 1968 +[2018-02-13T08:29:21.844] [INFO] cheese - inserting 1000 documents. first: Arnold Mærsk and last: Ed Schwager +[2018-02-13T08:29:21.872] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:29:21.886] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:29:21.899] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:29:21.915] [INFO] cheese - inserting 1000 documents. first: Category:College baseball venues by team in the United States and last: P. V. Rao +[2018-02-13T08:29:21.952] [INFO] cheese - batch complete in: 1.875 secs +[2018-02-13T08:29:22.071] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:29:22.455] [INFO] cheese - inserting 1000 documents. first: John Marlay and last: Category:Castles in Nottinghamshire +[2018-02-13T08:29:22.476] [INFO] cheese - inserting 1000 documents. first: Institute of History and Archaeology of the Baltic Region and last: 29 Squadron +[2018-02-13T08:29:22.485] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Belgian sculptors and last: Pyrmont, Albany +[2018-02-13T08:29:22.486] [INFO] cheese - inserting 1000 documents. first: Michael J. Lindell and last: Edgar Denis +[2018-02-13T08:29:22.519] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:29:22.550] [INFO] cheese - inserting 1000 documents. first: Peter Bruff and last: Bielaja Vieža +[2018-02-13T08:29:22.582] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:29:22.584] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:29:22.569] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:29:22.733] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:29:22.808] [INFO] cheese - inserting 1000 documents. first: Priozyorny District and last: The Wedding Camels +[2018-02-13T08:29:22.887] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:29:23.095] [INFO] cheese - inserting 1000 documents. first: 29th Squadron and last: Wikipedia:Articles for deletion/William Lauder (contractor) +[2018-02-13T08:29:23.113] [INFO] cheese - inserting 1000 documents. first: Category:Vallone family and last: Component reuse +[2018-02-13T08:29:23.156] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Wikititlesuffix and last: Brittas Empire +[2018-02-13T08:29:23.164] [INFO] cheese - inserting 1000 documents. first: Droplets (disambiguation) and last: 251st Battalion (Good Fellows), CEF +[2018-02-13T08:29:23.167] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:29:23.198] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:29:23.210] [INFO] cheese - inserting 1000 documents. first: Natukhai Adyghe dialect and last: Template:Canadian federal election, 2000/Saint-Maurice (electoral district) +[2018-02-13T08:29:23.253] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:29:23.289] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:29:23.345] [INFO] cheese - batch complete in: 1.392 secs +[2018-02-13T08:29:23.436] [INFO] cheese - inserting 1000 documents. first: Category:Vyškov District and last: Grianan of Aileach +[2018-02-13T08:29:23.458] [INFO] cheese - inserting 1000 documents. first: Krizhanich and last: APAV40 +[2018-02-13T08:29:23.621] [INFO] cheese - inserting 1000 documents. first: Template:State est decade cat/doc and last: Song of the Water +[2018-02-13T08:29:23.652] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:29:23.675] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:29:23.849] [INFO] cheese - batch complete in: 1.778 secs +[2018-02-13T08:29:23.964] [INFO] cheese - inserting 1000 documents. first: Utulei Youth and last: Maigret (2016 TV series) +[2018-02-13T08:29:24.027] [INFO] cheese - inserting 1000 documents. first: Elevated privilege and last: Category:Swiss media scholars +[2018-02-13T08:29:24.046] [INFO] cheese - inserting 1000 documents. first: Impereal and last: Paw Paw Township, Van Buren County, Michigan +[2018-02-13T08:29:24.067] [INFO] cheese - inserting 1000 documents. first: Template:Country data South Sudan and last: Beige People +[2018-02-13T08:29:24.068] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:29:24.091] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:29:24.195] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:29:24.222] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:29:24.254] [INFO] cheese - inserting 1000 documents. first: Content writing and last: List of guitarists considered the greatest +[2018-02-13T08:29:24.302] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:29:24.453] [INFO] cheese - inserting 1000 documents. first: Ressurection from the Dead and last: Shillappadikaram +[2018-02-13T08:29:24.624] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:29:24.651] [INFO] cheese - inserting 1000 documents. first: Template:User Roxbury Community College and last: Mountain of Despair +[2018-02-13T08:29:24.717] [INFO] cheese - inserting 1000 documents. first: Ministry of Finance (Tanzania) and last: Wikipedia:WikiProject Spam/LinkReports/ostratorphandelsplats.se +[2018-02-13T08:29:24.727] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:29:24.789] [INFO] cheese - inserting 1000 documents. first: Vladislaus II of Moravia and last: Temple Israel Center +[2018-02-13T08:29:24.794] [INFO] cheese - inserting 1000 documents. first: Pontypool United RFC and last: Political Quarterly +[2018-02-13T08:29:24.830] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:29:25.086] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T08:29:25.138] [INFO] cheese - inserting 1000 documents. first: Qasr al-Hayr al-Gharbî and last: Lindmania tillandsioides +[2018-02-13T08:29:25.029] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:29:25.212] [INFO] cheese - inserting 1000 documents. first: H. Wessely and last: Stéphane Zubar +[2018-02-13T08:29:25.218] [INFO] cheese - inserting 1000 documents. first: Saint Vincent de Paul and last: John Agyekum Kufuor +[2018-02-13T08:29:25.261] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:29:25.343] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:29:25.403] [INFO] cheese - batch complete in: 2.058 secs +[2018-02-13T08:29:25.566] [INFO] cheese - inserting 1000 documents. first: Factory acts and last: Square root of a matrix +[2018-02-13T08:29:25.613] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Trionychinae and last: Duisburg-Meiderich Süd station +[2018-02-13T08:29:25.645] [INFO] cheese - inserting 1000 documents. first: Dolgoma striata and last: Aqajan Kandi +[2018-02-13T08:29:25.664] [INFO] cheese - batch complete in: 1.04 secs +[2018-02-13T08:29:25.693] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:29:25.710] [INFO] cheese - inserting 1000 documents. first: Category:Ridges of Arkansas and last: Miquelets de Catalunya +[2018-02-13T08:29:25.753] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:29:25.826] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:29:25.901] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 346 and last: Angela Baraquio Gray +[2018-02-13T08:29:25.903] [INFO] cheese - inserting 1000 documents. first: Brdo, Nova Gorica and last: GGSS +[2018-02-13T08:29:25.975] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/Selected article archive and last: Ajina-higashi Station +[2018-02-13T08:29:26.000] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:29:26.006] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:29:26.069] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:29:26.133] [INFO] cheese - inserting 1000 documents. first: Duisburg-Meiderich Ost station and last: Template:Taxonomy/Arrhinoceratops +[2018-02-13T08:29:26.189] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:29:26.282] [INFO] cheese - inserting 1000 documents. first: Baba Gar Gar, East Azerbaijan and last: Southfield, Staten Island +[2018-02-13T08:29:26.334] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Spanish physicians and last: Category:Redirect-Class military historiography articles +[2018-02-13T08:29:26.423] [INFO] cheese - inserting 1000 documents. first: USS Atlantis (SP-40) and last: Wikipedia:Articles for deletion/Kyle Mina +[2018-02-13T08:29:26.432] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:29:26.518] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:29:26.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Ambulance/archive2 and last: Khivskiy District +[2018-02-13T08:29:26.630] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:29:26.695] [INFO] cheese - inserting 1000 documents. first: The Beast (comic books) and last: James I of Cyprus +[2018-02-13T08:29:26.700] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:29:26.706] [INFO] cheese - inserting 1000 documents. first: Johns Hopkins Applied Physics Laboratory and last: Icknield High School Arts College +[2018-02-13T08:29:26.779] [INFO] cheese - inserting 1000 documents. first: The Silent World: A Story of Undersea Discovery and Adventure and last: File:Vmail-Envelope.jpg +[2018-02-13T08:29:26.779] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:29:26.842] [INFO] cheese - batch complete in: 1.439 secs +[2018-02-13T08:29:26.857] [INFO] cheese - inserting 1000 documents. first: Tell Khardane and last: Category:Behabad County +[2018-02-13T08:29:26.880] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:29:27.022] [INFO] cheese - inserting 1000 documents. first: Calodesma itaitubae and last: Minister of Health, Labour and Welfare (Japan) +[2018-02-13T08:29:27.071] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:29:27.093] [INFO] cheese - inserting 1000 documents. first: Category:SIA-Class military historiography articles and last: Kerr, Robert +[2018-02-13T08:29:27.118] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:29:27.179] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:29:27.352] [INFO] cheese - inserting 1000 documents. first: USS Pawtucket (YTM-7) and last: Bolo (self-aware tank) +[2018-02-13T08:29:27.405] [INFO] cheese - inserting 1000 documents. first: Khivski District and last: Curly-hairs +[2018-02-13T08:29:27.430] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T08:29:27.490] [INFO] cheese - inserting 1000 documents. first: Andy Johnson (disambiguation) and last: Plymouth Charter Township, Wayne County, Michigan +[2018-02-13T08:29:27.586] [INFO] cheese - inserting 1000 documents. first: Canadian Council of Churches v Canada (Minister of Employment and Immigration) and last: Moedling +[2018-02-13T08:29:27.635] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:29:27.680] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:29:27.805] [INFO] cheese - inserting 1000 documents. first: 9x29mm and last: Pokemon Black + White +[2018-02-13T08:29:27.815] [INFO] cheese - inserting 1000 documents. first: Book:Wikipedia Signpost/2013-09-18 and last: Wikipedia:Articles for deletion/Gatestone Institute +[2018-02-13T08:29:27.814] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:29:27.911] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:29:27.936] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:29:28.085] [INFO] cheese - inserting 1000 documents. first: Key, Robert and last: Nuts of the uk +[2018-02-13T08:29:28.269] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:29:28.377] [INFO] cheese - inserting 1000 documents. first: Soeharto and last: Resona +[2018-02-13T08:29:28.411] [INFO] cheese - inserting 1000 documents. first: Route 40 (MTA Maryland) and last: Uno Per Tutte +[2018-02-13T08:29:28.473] [INFO] cheese - batch complete in: 1.631 secs +[2018-02-13T08:29:28.532] [INFO] cheese - inserting 1000 documents. first: Curlyhairs and last: Nolina interrata +[2018-02-13T08:29:28.545] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:29:28.625] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:29:28.684] [INFO] cheese - inserting 1000 documents. first: Moadamiyah and last: File:SuperClassGGundam.jpg +[2018-02-13T08:29:28.738] [INFO] cheese - inserting 1000 documents. first: Martin Dies Jr. State Park and last: Dendle's Wood SSSI +[2018-02-13T08:29:28.787] [INFO] cheese - inserting 1000 documents. first: Ishikawajima and last: Björn Nordqvist +[2018-02-13T08:29:28.794] [INFO] cheese - inserting 1000 documents. first: Neil Swarbrick and last: Rutherford Aris +[2018-02-13T08:29:28.797] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:29:28.831] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:29:28.910] [INFO] cheese - batch complete in: 1.23 secs +[2018-02-13T08:29:28.940] [INFO] cheese - batch complete in: 1.125 secs +[2018-02-13T08:29:29.016] [INFO] cheese - inserting 1000 documents. first: Regions of britain and last: 1926 Harvard Crimson football team +[2018-02-13T08:29:29.117] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:29:29.299] [INFO] cheese - inserting 1000 documents. first: Category:1978 in France and last: List of airports in Mauritius +[2018-02-13T08:29:29.390] [INFO] cheese - inserting 1000 documents. first: Claymore (G.I. Joe) and last: St. Louis hip hop +[2018-02-13T08:29:29.404] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/100 Sexiest Women in Comics and last: Xymmer +[2018-02-13T08:29:29.471] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:29:29.479] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:29:29.542] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:29:29.595] [INFO] cheese - inserting 1000 documents. first: Elachista levipes and last: Nuteni +[2018-02-13T08:29:29.675] [INFO] cheese - inserting 1000 documents. first: Quarterly Review of Wines and last: Wikipedia:Featured list candidates/List of Pittsburgh Steelers head coaches/archive1 +[2018-02-13T08:29:29.675] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:29:29.752] [INFO] cheese - inserting 1000 documents. first: Clinical Lycanthropy and last: Wikipedia:Articles for deletion/...Baby One More Time Tour +[2018-02-13T08:29:29.753] [INFO] cheese - inserting 1000 documents. first: Susan Fischer and last: Manithan Maravillai +[2018-02-13T08:29:29.769] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:29:29.840] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:29:29.845] [INFO] cheese - inserting 1000 documents. first: Onychomyrmex and last: Category:Professional wrestlers from Pennsylvania +[2018-02-13T08:29:29.863] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:29:29.907] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T08:29:29.962] [INFO] cheese - inserting 1000 documents. first: Resona impact and last: Allied Control Authority (ACA) +[2018-02-13T08:29:29.997] [INFO] cheese - inserting 1000 documents. first: Zumwalt-class destroyer (DDG-1000) and last: Atlantic Sun Men's Basketball Tournament venues +[2018-02-13T08:29:30.062] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:29:30.092] [INFO] cheese - batch complete in: 1.619 secs +[2018-02-13T08:29:30.103] [INFO] cheese - inserting 1000 documents. first: Laguna Merin and last: Polare +[2018-02-13T08:29:30.199] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:29:30.313] [INFO] cheese - inserting 1000 documents. first: V Raetorum and last: Pangaia +[2018-02-13T08:29:30.397] [INFO] cheese - inserting 1000 documents. first: Caquena Canton and last: Category:Disambig-Class Montana articles +[2018-02-13T08:29:30.399] [INFO] cheese - inserting 1000 documents. first: Cooper, Ohio and last: Men going their own way +[2018-02-13T08:29:30.401] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:29:30.480] [INFO] cheese - inserting 1000 documents. first: Iri-ye Sofla and last: Öffa bills +[2018-02-13T08:29:30.511] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:29:30.581] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:29:30.595] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:29:30.607] [INFO] cheese - inserting 1000 documents. first: Jacob H. Smith and last: Île aux Coudres Airport +[2018-02-13T08:29:30.711] [INFO] cheese - inserting 1000 documents. first: Template:Country data LIB and last: Koshehabl'sky Raion +[2018-02-13T08:29:30.720] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:29:30.762] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:29:31.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/projektmanagementhandbuch.de and last: Category:2010 in Uruguay +[2018-02-13T08:29:31.185] [INFO] cheese - inserting 1000 documents. first: William Mitchinson Hicks and last: Copani District +[2018-02-13T08:29:31.197] [INFO] cheese - inserting 1000 documents. first: Willard Erastus Christianson and last: Jesus in art +[2018-02-13T08:29:31.208] [INFO] cheese - batch complete in: 1.145 secs +[2018-02-13T08:29:31.285] [INFO] cheese - inserting 1000 documents. first: Koshehabl'skiy Raion and last: Template:Virginia-newspaper-stub +[2018-02-13T08:29:31.349] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:29:31.368] [INFO] cheese - inserting 1000 documents. first: Barrasso and last: NWA Television Championship (Tennessee) +[2018-02-13T08:29:31.421] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:29:31.496] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:29:31.509] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:29:31.667] [INFO] cheese - inserting 1000 documents. first: Akkrum and last: Wikipedia:Village pump/December 2003 archive 2 +[2018-02-13T08:29:31.761] [INFO] cheese - inserting 1000 documents. first: Category:Tasman rugby league team coaches and last: 1950–56 Pacific typhoon seasons +[2018-02-13T08:29:31.794] [INFO] cheese - inserting 1000 documents. first: Isle-aux-Grues Airport and last: Wikipedia:Articles for deletion/J.R. Hunter +[2018-02-13T08:29:31.896] [INFO] cheese - batch complete in: 1.804 secs +[2018-02-13T08:29:31.896] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T08:29:31.936] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:29:31.981] [INFO] cheese - inserting 1000 documents. first: Category:Galicia and last: Iona – Skeleton Coast Transfrontier Conservation Area +[2018-02-13T08:29:32.081] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:29:32.140] [INFO] cheese - inserting 1000 documents. first: Tyvon Branch and last: I Delmatarum +[2018-02-13T08:29:32.206] [INFO] cheese - inserting 1000 documents. first: Nikita Melnikov and last: Rostam Kandi +[2018-02-13T08:29:32.209] [INFO] cheese - inserting 1000 documents. first: Head tax (Canada) and last: Core (group) +[2018-02-13T08:29:32.236] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:29:32.303] [INFO] cheese - inserting 1000 documents. first: A1 Ring and last: RPI Observatory +[2018-02-13T08:29:32.315] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:29:32.332] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:29:32.417] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:29:32.586] [INFO] cheese - inserting 1000 documents. first: Sandara Park and last: De Troyes Chrétien +[2018-02-13T08:29:32.604] [INFO] cheese - inserting 1000 documents. first: Portal:Balochistan, Pakistan/WikiProjects and last: Colentina Bucureşti +[2018-02-13T08:29:32.632] [INFO] cheese - inserting 1000 documents. first: McArthur Glen Designer Outlet and last: State Route 537 +[2018-02-13T08:29:32.652] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:29:32.654] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:29:32.686] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:29:32.735] [INFO] cheese - inserting 1000 documents. first: Brethren World Assembly and last: Category:Wikipedia sockpuppets of Deathlibrarian +[2018-02-13T08:29:32.863] [INFO] cheese - inserting 1000 documents. first: Results of the Queensland state election, 1929 (L-Z) and last: Margaret Harkness +[2018-02-13T08:29:32.884] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:29:32.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2013 September 26 and last: Category:Squash tournaments in Thailand +[2018-02-13T08:29:33.000] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:29:33.002] [INFO] cheese - inserting 1000 documents. first: Cläven and last: Wood County Courthouse (West Virginia) +[2018-02-13T08:29:33.062] [INFO] cheese - inserting 1000 documents. first: State Highway 537 and last: SR878 +[2018-02-13T08:29:33.085] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:29:33.078] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:29:33.147] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T08:29:33.226] [INFO] cheese - inserting 1000 documents. first: Empress Entertainment Centre and last: Yanticaw +[2018-02-13T08:29:33.245] [INFO] cheese - inserting 1000 documents. first: Abolhassan Banisadr and last: Once & Again +[2018-02-13T08:29:33.329] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:29:33.356] [INFO] cheese - batch complete in: 1.459 secs +[2018-02-13T08:29:33.368] [INFO] cheese - inserting 1000 documents. first: Sternothyroideus and last: Sir Paul Haddocks +[2018-02-13T08:29:33.465] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:29:33.523] [INFO] cheese - inserting 1000 documents. first: Crowdfind and last: Lockendes Gift +[2018-02-13T08:29:33.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sally Freud and last: Gravity (TV series) +[2018-02-13T08:29:33.628] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:29:33.678] [INFO] cheese - inserting 1000 documents. first: Cocks Biddulph and last: Qeshlaq-e Sowmeeh +[2018-02-13T08:29:33.719] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:29:33.752] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:29:33.764] [INFO] cheese - inserting 1000 documents. first: The Gas and the Clutch and last: List of Argentine films of the 2000s +[2018-02-13T08:29:33.809] [INFO] cheese - inserting 1000 documents. first: SH878 and last: Aircraft Braking Systems +[2018-02-13T08:29:33.879] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:29:33.919] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:29:33.945] [INFO] cheese - inserting 1000 documents. first: File:Miss u book cover.jpg and last: Category:Shahrud County +[2018-02-13T08:29:33.996] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:29:34.259] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Tala'ea El Geish and last: Ministry of Education, Ceylon +[2018-02-13T08:29:34.322] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:29:34.357] [INFO] cheese - inserting 1000 documents. first: Qush Qayahsi, Kaleybar and last: Sarijalu, East Azerbaijan +[2018-02-13T08:29:34.367] [INFO] cheese - inserting 1000 documents. first: Chris Luder and last: University of Maryland Law School +[2018-02-13T08:29:34.451] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:29:34.545] [INFO] cheese - inserting 1000 documents. first: Alcohol dependence syndrome and last: Wikipedia:WikiProject Spam/LinkReports/cuscotouristinformation.com +[2018-02-13T08:29:34.546] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T08:29:34.610] [INFO] cheese - inserting 1000 documents. first: Alternate reality (disambiguation) and last: St. Eustorgio +[2018-02-13T08:29:34.623] [INFO] cheese - inserting 1000 documents. first: Thierry of Freburg and last: Lee Jong-wook (baseball) +[2018-02-13T08:29:34.653] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:29:34.688] [INFO] cheese - inserting 1000 documents. first: Category:School districts in Cochran County, Texas and last: Template:Canadian federal election, 1984/Bourassa +[2018-02-13T08:29:34.703] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:29:34.749] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:29:34.836] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:29:34.933] [INFO] cheese - inserting 1000 documents. first: Honours of the Principality of Wales and last: Charolais cattle +[2018-02-13T08:29:34.943] [INFO] cheese - inserting 1000 documents. first: Yuraqmayu (Lima) and last: Herbert, Alan +[2018-02-13T08:29:34.971] [INFO] cheese - inserting 1000 documents. first: Sari Jallu and last: Pacific Snake eel +[2018-02-13T08:29:35.013] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:29:35.058] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:29:35.065] [INFO] cheese - batch complete in: 1.709 secs +[2018-02-13T08:29:35.246] [INFO] cheese - inserting 1000 documents. first: Diego Hurtado de Mendoza, 2nd Marquis of Cañete and last: Pseudoconversational transaction +[2018-02-13T08:29:35.251] [INFO] cheese - inserting 1000 documents. first: Crosby stills nash young and last: Jackson 5 Record Sales +[2018-02-13T08:29:35.309] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:29:35.337] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:29:35.350] [INFO] cheese - inserting 1000 documents. first: List of parks in Delhi and last: Roger de Mowbray, 1st Baron Mowbray +[2018-02-13T08:29:35.452] [INFO] cheese - inserting 1000 documents. first: Non-covalent interaction and last: Category:American college sports infobox templates +[2018-02-13T08:29:35.453] [INFO] cheese - inserting 1000 documents. first: Hoffman, Alan and last: Anatomical terms of neuroanatomy +[2018-02-13T08:29:35.462] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:29:35.482] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:29:35.539] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:29:35.645] [INFO] cheese - inserting 1000 documents. first: Centennial F.C. and last: Template:HD/c +[2018-02-13T08:29:35.701] [INFO] cheese - inserting 1000 documents. first: Pacific snake Eel and last: Embalse de Puente Nuevo +[2018-02-13T08:29:35.749] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:29:35.867] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:29:36.019] [INFO] cheese - inserting 1000 documents. first: Erectile impotence and last: Masaaki Kozu +[2018-02-13T08:29:36.060] [INFO] cheese - inserting 1000 documents. first: Category:NCAA Division I wrestling by conference navigational boxes and last: きんさんぎんさん +[2018-02-13T08:29:36.072] [INFO] cheese - inserting 1000 documents. first: J. C. MacKenzie and last: Adam's needle +[2018-02-13T08:29:36.153] [INFO] cheese - inserting 1000 documents. first: Category:1975 murals and last: Fowler, George +[2018-02-13T08:29:36.170] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:29:36.197] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:29:36.214] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:29:36.233] [INFO] cheese - inserting 1000 documents. first: Sci-fi (tv channel) and last: National Unity (Peru) +[2018-02-13T08:29:36.314] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:29:36.368] [INFO] cheese - batch complete in: 1.303 secs +[2018-02-13T08:29:36.505] [INFO] cheese - inserting 1000 documents. first: Isador Cortez and last: Hacıhalil +[2018-02-13T08:29:36.547] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:29:36.565] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Cities articles needing infoboxes and last: UC-35B +[2018-02-13T08:29:36.589] [INFO] cheese - inserting 1000 documents. first: Conservations and last: Admirals Men +[2018-02-13T08:29:36.666] [INFO] cheese - batch complete in: 1.203 secs +[2018-02-13T08:29:36.676] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:29:36.746] [INFO] cheese - inserting 1000 documents. first: US Initial Post-Surrender Policy for Japan and last: Old Man on His Back Prairie and Heritage Conservation Area +[2018-02-13T08:29:36.790] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:29:36.847] [INFO] cheese - inserting 1000 documents. first: Phil Hinkle and last: Category:Lausitzer Füchse players +[2018-02-13T08:29:36.900] [INFO] cheese - inserting 1000 documents. first: À Tout le Monde and last: Template:RNLI lifeboat classes +[2018-02-13T08:29:36.905] [INFO] cheese - inserting 1000 documents. first: Fraser, George and last: Mohra Gujarn +[2018-02-13T08:29:36.979] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:29:37.033] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:29:37.041] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:29:37.064] [INFO] cheese - inserting 1000 documents. first: Franco-Spanish War (1595–98) and last: Black spotted snake Eel +[2018-02-13T08:29:37.120] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:29:37.404] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Treaty between the Netherlands and Ahanta 1656/archive1 and last: St. Theobald +[2018-02-13T08:29:37.453] [INFO] cheese - inserting 1000 documents. first: Next Montenegrin parliamentary election and last: 1111 (year) +[2018-02-13T08:29:37.478] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:29:37.501] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:29:37.504] [INFO] cheese - inserting 1000 documents. first: Fizis and last: Junikowo +[2018-02-13T08:29:37.586] [INFO] cheese - inserting 1000 documents. first: Pseudodrephalys hypargos and last: Mix 1011 +[2018-02-13T08:29:37.593] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:29:37.704] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:29:37.729] [INFO] cheese - inserting 1000 documents. first: 1110 (year) and last: 142 (year) +[2018-02-13T08:29:37.749] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T08:29:37.753] [INFO] cheese - inserting 1000 documents. first: Black Spotted snake eel and last: File:Genesis Prize logo.png +[2018-02-13T08:29:37.785] [INFO] cheese - inserting 1000 documents. first: Unidad Nacional and last: Cherokee Indian Normal School of Robeson County +[2018-02-13T08:29:37.859] [INFO] cheese - inserting 1000 documents. first: File:Brechin City FC logo.svg and last: Hawker Siddeley Trident 3B +[2018-02-13T08:29:37.944] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:29:37.955] [INFO] cheese - batch complete in: 1.586 secs +[2018-02-13T08:29:37.977] [INFO] cheese - inserting 1000 documents. first: Cda and last: R.G. Willis +[2018-02-13T08:29:37.984] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:29:38.099] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:29:38.212] [INFO] cheese - inserting 1000 documents. first: 141 (year) and last: Year 1444 +[2018-02-13T08:29:38.216] [INFO] cheese - inserting 1000 documents. first: Town drunks and last: Wikipedia:Good article reassessment/Thomas Cranmer/1 +[2018-02-13T08:29:38.243] [INFO] cheese - inserting 1000 documents. first: Calophasidia radiata and last: Beachwood (disambiguation) +[2018-02-13T08:29:38.254] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T08:29:38.304] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:29:38.315] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:29:38.465] [INFO] cheese - inserting 1000 documents. first: Thirumalai Nayakkar Mahal and last: Bushwick Leaders High School for Academic Excellence +[2018-02-13T08:29:38.474] [INFO] cheese - inserting 1000 documents. first: Year 1443 and last: Year 462 +[2018-02-13T08:29:38.502] [INFO] cheese - inserting 1000 documents. first: G/M/1 queue and last: Wikipedia:Articles for deletion/Anthony Tat +[2018-02-13T08:29:38.518] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T08:29:38.543] [INFO] cheese - inserting 1000 documents. first: Boeing 777-236ER and last: Frankfurt (Main) Hbf station +[2018-02-13T08:29:38.553] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:29:38.601] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:29:38.654] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:29:38.886] [INFO] cheese - inserting 1000 documents. first: Year 461 and last: Nicol Stephen, Baron Stephen +[2018-02-13T08:29:38.913] [INFO] cheese - inserting 1000 documents. first: KTEQ-FM and last: Moondog Spot +[2018-02-13T08:29:38.923] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T08:29:38.984] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Bernie Marsden and last: Thomas Adamson (master gunner) +[2018-02-13T08:29:38.987] [INFO] cheese - inserting 1000 documents. first: Bshift and last: Thixomolding +[2018-02-13T08:29:39.059] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:29:39.117] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:29:39.198] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:29:39.238] [INFO] cheese - inserting 1000 documents. first: Portal:University of Pittsburgh/On this day/September 28 and last: Category:Moveable holidays (Christmas date based) +[2018-02-13T08:29:39.261] [INFO] cheese - inserting 1000 documents. first: Bootable disc and last: Hilary Barte +[2018-02-13T08:29:39.270] [INFO] cheese - inserting 1000 documents. first: Sakaigawa Namiemon and last: Playmo +[2018-02-13T08:29:39.307] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:29:39.334] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:29:39.452] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:29:39.666] [INFO] cheese - inserting 1000 documents. first: Pembroke State College for Indians and last: Cambyses I +[2018-02-13T08:29:39.751] [INFO] cheese - inserting 1000 documents. first: Stoke, England and last: List of UK Dance Chart number-one singles of 2008 +[2018-02-13T08:29:39.790] [INFO] cheese - inserting 1000 documents. first: International Border and last: Service-learning in engineering education +[2018-02-13T08:29:39.774] [INFO] cheese - batch complete in: 1.819 secs +[2018-02-13T08:29:39.911] [INFO] cheese - inserting 1000 documents. first: Sue Weinlein Cook and last: Cuckoo (song) +[2018-02-13T08:29:39.979] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:29:40.082] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:29:40.091] [INFO] cheese - inserting 1000 documents. first: Daniel Lieberman and last: Daniel Rocha +[2018-02-13T08:29:40.202] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:29:40.220] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:29:40.281] [INFO] cheese - inserting 1000 documents. first: RPL35 and last: Joanna Cotten +[2018-02-13T08:29:40.287] [INFO] cheese - inserting 1000 documents. first: John T. Schuessler and last: Experimental Radio Station Eberswalde +[2018-02-13T08:29:40.379] [INFO] cheese - inserting 1000 documents. first: Belthorn and last: Wikipedia:Articles for deletion/Stuffed article +[2018-02-13T08:29:40.433] [INFO] cheese - batch complete in: 1.315 secs +[2018-02-13T08:29:40.458] [INFO] cheese - batch complete in: 1.124 secs +[2018-02-13T08:29:40.491] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T08:29:40.813] [INFO] cheese - inserting 1000 documents. first: File:Charles A. Sprague Oregon Governor.jpg and last: Template:WikiProject University of Oxford/class +[2018-02-13T08:29:40.842] [INFO] cheese - inserting 1000 documents. first: File:Barbra Streisand & Kim Carnes - Make No Mistake, He's Mine.jpg and last: File:Scuderia Toro Rosso Powered by Cosworth.png +[2018-02-13T08:29:40.870] [INFO] cheese - inserting 1000 documents. first: Cohen's horseshoe bat and last: A.S.D. Città di Marino Calcio +[2018-02-13T08:29:40.932] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:29:40.941] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Animation/Hanna-Barbera work group/Participants and last: Shotwell Hall, West Liberty State College +[2018-02-13T08:29:40.953] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:29:40.963] [INFO] cheese - inserting 1000 documents. first: Nell Hodgson Woodruff School of Nursing and last: University city loop +[2018-02-13T08:29:40.981] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:29:41.049] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:29:41.101] [INFO] cheese - inserting 1000 documents. first: Template:Scotland-stub and last: Z-Saber +[2018-02-13T08:29:41.163] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T08:29:41.282] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:29:41.452] [INFO] cheese - inserting 1000 documents. first: Yengejeh-ye Yaranmish and last: Arnoldius +[2018-02-13T08:29:41.487] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:29:41.503] [INFO] cheese - inserting 1000 documents. first: Teneliximab and last: Wikipedia:Articles for deletion/Academic Citizenship +[2018-02-13T08:29:41.567] [INFO] cheese - inserting 1000 documents. first: Yuki Tanaka (historian) and last: Pigeon Hill, New Brunswick +[2018-02-13T08:29:41.647] [INFO] cheese - inserting 1000 documents. first: Réunion ibis and last: Worker-communist Party of Iraq +[2018-02-13T08:29:41.681] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:29:41.708] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:29:41.764] [INFO] cheese - inserting 1000 documents. first: Hans Frangenheim and last: Davit Usupashvili +[2018-02-13T08:29:41.785] [INFO] cheese - inserting 1000 documents. first: Template:Unendorsed Labour candidates, 1931/meta/color and last: Axmed Gaab +[2018-02-13T08:29:41.922] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:29:41.925] [INFO] cheese - inserting 1000 documents. first: First period of World War II and last: List of Italian films of 1912 +[2018-02-13T08:29:41.942] [INFO] cheese - batch complete in: 2.168 secs +[2018-02-13T08:29:41.984] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:29:42.116] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:29:42.290] [INFO] cheese - inserting 1000 documents. first: Junge Freiheit and last: CBC Museum +[2018-02-13T08:29:42.458] [INFO] cheese - inserting 1000 documents. first: Timothy A. Kinnan and last: Michael McCarthy (politician) +[2018-02-13T08:29:42.464] [INFO] cheese - batch complete in: 1.182 secs +[2018-02-13T08:29:42.479] [INFO] cheese - inserting 1000 documents. first: Category:Czech-American culture in Washington, D.C. and last: File:PebbleBeachnoHotouJPBoxShot.jpg +[2018-02-13T08:29:42.482] [INFO] cheese - inserting 1000 documents. first: 1984 British Touring Car Championship season and last: Darlington, Prince Edward Island +[2018-02-13T08:29:42.575] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:29:42.602] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:29:42.614] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:29:42.674] [INFO] cheese - inserting 1000 documents. first: Category:American music-related lists and last: Wikipedia:Articles for deletion/2015 Gothenburg pub shooting (2nd nomination) +[2018-02-13T08:29:42.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mo-germans.com and last: Stephen Halpin +[2018-02-13T08:29:42.816] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:29:42.855] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:29:43.068] [INFO] cheese - inserting 1000 documents. first: Pramac and last: Echarate District +[2018-02-13T08:29:43.214] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:29:43.448] [INFO] cheese - inserting 1000 documents. first: Aaahh! Real Monsters and last: 150 Mile House +[2018-02-13T08:29:43.457] [INFO] cheese - inserting 1000 documents. first: Pornography and Violence in the Communications Media and last: Shivyar, Meyaneh +[2018-02-13T08:29:43.488] [INFO] cheese - inserting 1000 documents. first: Silicious and last: Rudolf Heinze +[2018-02-13T08:29:43.537] [INFO] cheese - inserting 1000 documents. first: Sunbeam Products, Inc. and last: Zeitschrift für englische Philologie +[2018-02-13T08:29:43.551] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:29:43.652] [INFO] cheese - batch complete in: 1.188 secs +[2018-02-13T08:29:43.653] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:29:43.739] [INFO] cheese - batch complete in: 1.125 secs +[2018-02-13T08:29:43.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Correllian Nativist Tradition and last: Category:2016 in aviation +[2018-02-13T08:29:43.973] [INFO] cheese - inserting 1000 documents. first: Richard Beatniffe and last: File:Bethesda Hospital.jpg +[2018-02-13T08:29:44.005] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:29:44.172] [INFO] cheese - batch complete in: 1.317 secs +[2018-02-13T08:29:44.202] [INFO] cheese - inserting 1000 documents. first: Candida dubliniensis and last: Michelle Thomas +[2018-02-13T08:29:44.350] [INFO] cheese - batch complete in: 2.408 secs +[2018-02-13T08:29:44.535] [INFO] cheese - inserting 1000 documents. first: Calorie per hour and last: The Man Who Was Dead +[2018-02-13T08:29:44.610] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:29:44.641] [INFO] cheese - inserting 1000 documents. first: Category:Free jazz trombonists and last: Eric Genden +[2018-02-13T08:29:44.737] [INFO] cheese - inserting 1000 documents. first: Zoraxe and last: Category:Maccabi Herzliya F.C. players +[2018-02-13T08:29:44.921] [INFO] cheese - batch complete in: 1.707 secs +[2018-02-13T08:29:45.030] [INFO] cheese - batch complete in: 1.479 secs +[2018-02-13T08:29:45.079] [INFO] cheese - inserting 1000 documents. first: Something Something Something Dark Side and last: Denis McBride (rugby footballer) +[2018-02-13T08:29:45.081] [INFO] cheese - inserting 1000 documents. first: Keith, Bill and last: NJCC +[2018-02-13T08:29:45.092] [INFO] cheese - inserting 1000 documents. first: Connellan Airport and last: The Politicians +[2018-02-13T08:29:45.203] [INFO] cheese - inserting 1000 documents. first: HanDover (album) and last: Magnolia Award +[2018-02-13T08:29:45.202] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T08:29:45.214] [INFO] cheese - batch complete in: 1.474 secs +[2018-02-13T08:29:45.296] [INFO] cheese - batch complete in: 1.644 secs +[2018-02-13T08:29:45.384] [INFO] cheese - inserting 1000 documents. first: List of Dipper's Guide to the Unexplained episodes and last: Category:2011 disestablishments in Croatia +[2018-02-13T08:29:45.402] [INFO] cheese - batch complete in: 1.23 secs +[2018-02-13T08:29:45.512] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:29:45.778] [INFO] cheese - inserting 1000 documents. first: 205 Signal Squadron and last: Indigen +[2018-02-13T08:29:45.907] [INFO] cheese - inserting 1000 documents. first: Lamp Black and last: Sorède +[2018-02-13T08:29:45.937] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:29:46.061] [INFO] cheese - inserting 1000 documents. first: Government spin-off and last: Deanne Lundin +[2018-02-13T08:29:46.101] [INFO] cheese - inserting 1000 documents. first: Views (album) and last: Egypt, Belmont County, Ohio +[2018-02-13T08:29:46.119] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:29:46.279] [INFO] cheese - inserting 1000 documents. first: Antoan Richardson and last: Jeff Wayne's Video Game Version of The War of the Worlds +[2018-02-13T08:29:46.317] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T08:29:46.328] [INFO] cheese - batch complete in: 1.126 secs +[2018-02-13T08:29:46.453] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:29:46.480] [INFO] cheese - inserting 1000 documents. first: Category:Cabinets disestablished in 2011 and last: Lowry Auxiliary Landing Field +[2018-02-13T08:29:46.499] [INFO] cheese - inserting 1000 documents. first: Goldfrapp Discography and last: Naruto Ninja Council +[2018-02-13T08:29:46.600] [INFO] cheese - inserting 1000 documents. first: Janata Dal (United) and last: Islamic Republic of Iran Air Force +[2018-02-13T08:29:46.714] [INFO] cheese - batch complete in: 1.201 secs +[2018-02-13T08:29:46.739] [INFO] cheese - batch complete in: 1.442 secs +[2018-02-13T08:29:46.972] [INFO] cheese - batch complete in: 2.622 secs +[2018-02-13T08:29:47.098] [INFO] cheese - inserting 1000 documents. first: Frank Bourne and last: Template:Localities in Svenljunga Municipality +[2018-02-13T08:29:47.193] [INFO] cheese - inserting 1000 documents. first: Managed mobility services and last: Dirk Balster +[2018-02-13T08:29:47.240] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:29:47.344] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:29:47.482] [INFO] cheese - inserting 1000 documents. first: File:Car & Boat Storage.jpg and last: List of airports in the United Arab Emirates +[2018-02-13T08:29:47.548] [INFO] cheese - inserting 1000 documents. first: Vino Novello and last: File:Patanjali yogpeeth residendialbldg.jpg +[2018-02-13T08:29:47.688] [INFO] cheese - inserting 1000 documents. first: Sree Narayana Poly (S.N.Poly) Technic College (S.N.P.T.C) and last: File:DINA S.A. logo.png +[2018-02-13T08:29:47.703] [INFO] cheese - inserting 1000 documents. first: Governor of Gaza and last: Boxing at the 1998 Asian Games – Men's +91 kg +[2018-02-13T08:29:47.701] [INFO] cheese - batch complete in: 1.581 secs +[2018-02-13T08:29:47.790] [INFO] cheese - batch complete in: 1.473 secs +[2018-02-13T08:29:47.906] [INFO] cheese - batch complete in: 1.453 secs +[2018-02-13T08:29:47.960] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T08:29:48.239] [INFO] cheese - inserting 1000 documents. first: James Wilson Henderson and last: Best of Friends +[2018-02-13T08:29:48.547] [INFO] cheese - batch complete in: 1.808 secs +[2018-02-13T08:29:48.565] [INFO] cheese - inserting 1000 documents. first: Huacracocha and last: Portal:New York Roads/Selected article/January 2016 +[2018-02-13T08:29:48.723] [INFO] cheese - inserting 1000 documents. first: Anne Bourchier, Baroness Dacre and last: Reyhan Arabacioglu +[2018-02-13T08:29:48.762] [INFO] cheese - inserting 1000 documents. first: Template:Localities in Säffle Municipality and last: Allowance for bad debts +[2018-02-13T08:29:48.883] [INFO] cheese - batch complete in: 1.539 secs +[2018-02-13T08:29:48.920] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:29:49.069] [INFO] cheese - batch complete in: 1.828 secs +[2018-02-13T08:29:49.068] [INFO] cheese - inserting 1000 documents. first: Katnappe (Xiaolin Showdown) and last: Kausambi +[2018-02-13T08:29:49.268] [INFO] cheese - inserting 1000 documents. first: FYFT G-series unmanned blimp and last: Thayet War Cemetery +[2018-02-13T08:29:49.406] [INFO] cheese - batch complete in: 1.705 secs +[2018-02-13T08:29:49.424] [INFO] cheese - inserting 1000 documents. first: Air Forces and last: Autonomous prefecture +[2018-02-13T08:29:49.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/IABot and last: Yeşilçiftlik, Sultandağı +[2018-02-13T08:29:49.596] [INFO] cheese - batch complete in: 1.634 secs +[2018-02-13T08:29:49.742] [INFO] cheese - batch complete in: 2.77 secs +[2018-02-13T08:29:49.825] [INFO] cheese - batch complete in: 1.918 secs +[2018-02-13T08:29:49.831] [INFO] cheese - inserting 1000 documents. first: Gorsafawddachaidraigodanheddogleddollonpenrhynareurdraethceredigion and last: VW Touareg +[2018-02-13T08:29:50.025] [INFO] cheese - inserting 1000 documents. first: Template:Socialist Left Party (Norway)/meta/color and last: Gara Gara Go! +[2018-02-13T08:29:50.064] [INFO] cheese - batch complete in: 1.517 secs +[2018-02-13T08:29:50.073] [INFO] cheese - inserting 1000 documents. first: Category:Former states and territories by country and last: Kangson Station +[2018-02-13T08:29:50.164] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T08:29:50.227] [INFO] cheese - batch complete in: 1.307 secs +[2018-02-13T08:29:50.477] [INFO] cheese - inserting 1000 documents. first: John C. Reed and last: Category:National Historic Sites in North Carolina +[2018-02-13T08:29:50.599] [INFO] cheese - inserting 1000 documents. first: James E Strates Midways and last: Lim Gi-han +[2018-02-13T08:29:50.717] [INFO] cheese - batch complete in: 1.648 secs +[2018-02-13T08:29:50.718] [INFO] cheese - inserting 1000 documents. first: Template:Miss World Continental Queen of Beauty titleholders 2013 and last: 1935 International Cross Country Championships +[2018-02-13T08:29:50.851] [INFO] cheese - batch complete in: 1.441 secs +[2018-02-13T08:29:50.969] [INFO] cheese - inserting 1000 documents. first: Çamözü, Sultandağı and last: My Little Funhouse +[2018-02-13T08:29:51.037] [INFO] cheese - batch complete in: 1.441 secs +[2018-02-13T08:29:51.194] [INFO] cheese - batch complete in: 1.369 secs +[2018-02-13T08:29:51.210] [INFO] cheese - inserting 1000 documents. first: File:The Byrds - Eight Miles High Why.jpg and last: Seventh Commandment +[2018-02-13T08:29:51.393] [INFO] cheese - inserting 1000 documents. first: Tarek Kamel and last: Tom zbikowski +[2018-02-13T08:29:51.399] [INFO] cheese - inserting 1000 documents. first: Franz Joseph Toussaint and last: Category:Korean Broadcasting System people +[2018-02-13T08:29:51.478] [INFO] cheese - batch complete in: 1.251 secs +[2018-02-13T08:29:51.591] [INFO] cheese - batch complete in: 1.527 secs +[2018-02-13T08:29:51.653] [INFO] cheese - batch complete in: 1.489 secs +[2018-02-13T08:29:51.915] [INFO] cheese - inserting 1000 documents. first: Turo's Hevi Gee and last: A5M Claude +[2018-02-13T08:29:51.970] [INFO] cheese - inserting 1000 documents. first: Sira' Fi al-Wady and last: Artificial neural membrane +[2018-02-13T08:29:52.053] [INFO] cheese - batch complete in: 1.335 secs +[2018-02-13T08:29:52.120] [INFO] cheese - inserting 1000 documents. first: Lewis Leonard Forman and last: Wikipedia:Today's featured article/October 11, 2013 +[2018-02-13T08:29:52.149] [INFO] cheese - batch complete in: 1.297 secs +[2018-02-13T08:29:52.291] [INFO] cheese - inserting 1000 documents. first: Ed Boyd and last: Category:Census-designated places in Washington County, Pennsylvania +[2018-02-13T08:29:52.339] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:29:52.354] [INFO] cheese - inserting 1000 documents. first: Bagram Airbase and last: Cynog Dafis +[2018-02-13T08:29:52.452] [INFO] cheese - inserting 1000 documents. first: Grey Flesh Fly and last: Joe Togher +[2018-02-13T08:29:52.486] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Freefall 3050 A.D. and last: Molecular similarity +[2018-02-13T08:29:52.503] [INFO] cheese - batch complete in: 1.309 secs +[2018-02-13T08:29:52.630] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:29:52.651] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:29:52.850] [INFO] cheese - batch complete in: 3.108 secs +[2018-02-13T08:29:53.078] [INFO] cheese - inserting 1000 documents. first: R. v. Morgentaler (1988) and last: Agnes Water +[2018-02-13T08:29:53.250] [INFO] cheese - batch complete in: 1.659 secs +[2018-02-13T08:29:53.478] [INFO] cheese - inserting 1000 documents. first: Women in Arab societies and last: KSTO +[2018-02-13T08:29:53.491] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Disambiguation pages with links/October 2013 and last: 1936 International Cross Country Championships +[2018-02-13T08:29:53.824] [INFO] cheese - batch complete in: 1.485 secs +[2018-02-13T08:29:53.827] [INFO] cheese - batch complete in: 1.678 secs +[2018-02-13T08:29:53.939] [INFO] cheese - inserting 1000 documents. first: Embassy of the United States in Manila and last: Maxim Yeliseev +[2018-02-13T08:29:53.953] [INFO] cheese - inserting 1000 documents. first: Behavioral trap and last: Jake Jarmel +[2018-02-13T08:29:54.012] [INFO] cheese - inserting 1000 documents. first: Jerome Erceau and last: File:International Journal Of Biochemistry And Cell Biology Cover.gif +[2018-02-13T08:29:54.180] [INFO] cheese - batch complete in: 1.677 secs +[2018-02-13T08:29:54.184] [INFO] cheese - inserting 1000 documents. first: Bus Bustami and last: Appolstory +[2018-02-13T08:29:54.236] [INFO] cheese - batch complete in: 1.585 secs +[2018-02-13T08:29:54.425] [INFO] cheese - batch complete in: 2.372 secs +[2018-02-13T08:29:54.433] [INFO] cheese - batch complete in: 1.802 secs +[2018-02-13T08:29:54.759] [INFO] cheese - inserting 1000 documents. first: Template:Expert review and last: Golujeh-ye Eslam +[2018-02-13T08:29:54.853] [INFO] cheese - inserting 1000 documents. first: John III, Count of Holstein-Plön and last: FCIC +[2018-02-13T08:29:54.888] [INFO] cheese - batch complete in: 1.064 secs +[2018-02-13T08:29:55.093] [INFO] cheese - batch complete in: 1.839 secs +[2018-02-13T08:29:55.108] [INFO] cheese - inserting 1000 documents. first: Perryville Battlefield State Historic Site and last: FC Saarbrucken +[2018-02-13T08:29:55.203] [INFO] cheese - batch complete in: 1.376 secs +[2018-02-13T08:29:55.272] [INFO] cheese - inserting 1000 documents. first: Upholstory and last: AD 1708 +[2018-02-13T08:29:55.393] [INFO] cheese - inserting 1000 documents. first: (11902) 1991 PZ12 and last: ProFe Duo Banjo +[2018-02-13T08:29:55.402] [INFO] cheese - inserting 1000 documents. first: List of Futari wa Pretty Cure Splash Star episodes and last: Théatre du Chatelet +[2018-02-13T08:29:55.504] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T08:29:55.565] [INFO] cheese - inserting 1000 documents. first: Heinrich IX and last: Batang Hari Regency +[2018-02-13T08:29:55.633] [INFO] cheese - batch complete in: 1.453 secs +[2018-02-13T08:29:55.700] [INFO] cheese - batch complete in: 1.464 secs +[2018-02-13T08:29:55.802] [INFO] cheese - batch complete in: 1.377 secs +[2018-02-13T08:29:55.806] [INFO] cheese - inserting 1000 documents. first: AD 1707 and last: AD 721 +[2018-02-13T08:29:55.952] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T08:29:56.209] [INFO] cheese - inserting 1000 documents. first: Blackburnian warbler and last: ZFV +[2018-02-13T08:29:56.288] [INFO] cheese - inserting 1000 documents. first: Gavanlu, East Azerbaijan and last: Juliper League +[2018-02-13T08:29:56.341] [INFO] cheese - inserting 1000 documents. first: After Burner: Black Falcon and last: Geronimo de Ghinucci +[2018-02-13T08:29:56.342] [INFO] cheese - inserting 1000 documents. first: AD 720 and last: AD 151 +[2018-02-13T08:29:56.374] [INFO] cheese - inserting 1000 documents. first: JoJo White and last: Altocumulus +[2018-02-13T08:29:56.378] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T08:29:56.551] [INFO] cheese - inserting 1000 documents. first: ProFe BanjoMH and last: Aly Ibrahim +[2018-02-13T08:29:56.657] [INFO] cheese - batch complete in: 1.769 secs +[2018-02-13T08:29:56.659] [INFO] cheese - batch complete in: 1.566 secs +[2018-02-13T08:29:56.782] [INFO] cheese - batch complete in: 1.578 secs +[2018-02-13T08:29:56.794] [INFO] cheese - batch complete in: 3.935 secs +[2018-02-13T08:29:56.890] [INFO] cheese - batch complete in: 1.257 secs +[2018-02-13T08:29:57.076] [INFO] cheese - inserting 1000 documents. first: Giorgio van Straten and last: San Francisco de Cayrán District +[2018-02-13T08:29:57.106] [INFO] cheese - inserting 1000 documents. first: Captain Falcon (video game character) and last: Wikipedia:WikiProject Spam/LinkReports/ccitoamasina.org +[2018-02-13T08:29:57.301] [INFO] cheese - batch complete in: 1.499 secs +[2018-02-13T08:29:57.319] [INFO] cheese - batch complete in: 1.618 secs +[2018-02-13T08:29:57.621] [INFO] cheese - inserting 1000 documents. first: AD 152 and last: File:Lotto-Soudal logo.png +[2018-02-13T08:29:57.769] [INFO] cheese - batch complete in: 1.391 secs +[2018-02-13T08:29:57.884] [INFO] cheese - inserting 1000 documents. first: Template:PBB/25836 and last: File:Coventry City FC logo.svg +[2018-02-13T08:29:57.993] [INFO] cheese - inserting 1000 documents. first: Muswell Hill railway station and last: Template:US-airport2 +[2018-02-13T08:29:58.008] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:29:58.133] [INFO] cheese - inserting 1000 documents. first: Ishikawadai Station and last: File:Ayyamna-al-Helwa.jpg +[2018-02-13T08:29:58.241] [INFO] cheese - batch complete in: 1.582 secs +[2018-02-13T08:29:58.302] [INFO] cheese - inserting 1000 documents. first: List of cultural property of national significance in Switzerland: Aargau and last: Fugue in G minor +[2018-02-13T08:29:58.342] [INFO] cheese - batch complete in: 1.56 secs +[2018-02-13T08:29:58.463] [INFO] cheese - inserting 1000 documents. first: San Pedro de Chaulán District and last: Choice on Termination of Pregnancy Amendment Act +[2018-02-13T08:29:58.530] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:29:58.671] [INFO] cheese - inserting 1000 documents. first: 1999 Mongolia Premier League and last: Bishop of Central America +[2018-02-13T08:29:58.715] [INFO] cheese - batch complete in: 1.414 secs +[2018-02-13T08:29:58.864] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T08:29:59.094] [INFO] cheese - inserting 1000 documents. first: Tanks of World War II and last: 2011 Tashkent Open – Singles +[2018-02-13T08:29:59.363] [INFO] cheese - inserting 1000 documents. first: ZDJ and last: Preston Bissett +[2018-02-13T08:29:59.365] [INFO] cheese - batch complete in: 1.355 secs +[2018-02-13T08:29:59.530] [INFO] cheese - inserting 1000 documents. first: File:Thai Kuti Illustration.jpg and last: Kaagse zeilmarathon +[2018-02-13T08:29:59.528] [INFO] cheese - inserting 1000 documents. first: Between 10th and 11th and last: Epic Trance +[2018-02-13T08:29:59.582] [INFO] cheese - inserting 1000 documents. first: Angola national basketball team roster and last: Koi Aanay Wala Hai (song) +[2018-02-13T08:29:59.834] [INFO] cheese - batch complete in: 1.593 secs +[2018-02-13T08:29:59.839] [INFO] cheese - batch complete in: 1.496 secs +[2018-02-13T08:29:59.904] [INFO] cheese - batch complete in: 3.107 secs +[2018-02-13T08:29:59.945] [INFO] cheese - batch complete in: 1.413 secs +[2018-02-13T08:30:00.028] [INFO] cheese - inserting 1000 documents. first: Episcopal Diocese of Central America and last: Mubarak Dahi Waleed +[2018-02-13T08:30:00.354] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Obozedalteima and last: Cecile Gotaas Johnsen +[2018-02-13T08:30:00.358] [INFO] cheese - inserting 1000 documents. first: File:Bahamove.jpg and last: Category:Ceylonese military personnel +[2018-02-13T08:30:00.475] [INFO] cheese - batch complete in: 1.611 secs +[2018-02-13T08:30:00.659] [INFO] cheese - inserting 1000 documents. first: Gryfici and last: Henry Worsley (disambiguation) +[2018-02-13T08:30:00.686] [INFO] cheese - batch complete in: 1.97 secs +[2018-02-13T08:30:01.013] [INFO] cheese - batch complete in: 1.648 secs +[2018-02-13T08:30:01.127] [INFO] cheese - batch complete in: 4.47 secs +[2018-02-13T08:30:01.489] [INFO] cheese - inserting 1000 documents. first: File:Seneca.JPG and last: Let Me Be the One (Carpenters song) +[2018-02-13T08:30:01.544] [INFO] cheese - inserting 1000 documents. first: C-Day and last: Sophie-Charlotte-Platz (Berlin U-Bahn) +[2018-02-13T08:30:01.580] [INFO] cheese - inserting 1000 documents. first: File:Virginia Henry Curtiss Heckscher (1932).png and last: Template:VIA Station +[2018-02-13T08:30:01.681] [INFO] cheese - inserting 1000 documents. first: Centrist politics and last: Timyra palathodes +[2018-02-13T08:30:01.727] [INFO] cheese - batch complete in: 1.887 secs +[2018-02-13T08:30:01.919] [INFO] cheese - batch complete in: 2.083 secs +[2018-02-13T08:30:01.955] [INFO] cheese - batch complete in: 2.01 secs +[2018-02-13T08:30:01.958] [INFO] cheese - batch complete in: 1.481 secs +[2018-02-13T08:30:02.318] [INFO] cheese - inserting 1000 documents. first: Henry Peckham (disambiguation) and last: Volchansky +[2018-02-13T08:30:02.320] [INFO] cheese - inserting 1000 documents. first: Hardin City Center, Montana and last: File:InCoS v2.png +[2018-02-13T08:30:02.427] [INFO] cheese - batch complete in: 1.741 secs +[2018-02-13T08:30:02.536] [INFO] cheese - batch complete in: 1.523 secs +[2018-02-13T08:30:02.594] [INFO] cheese - inserting 1000 documents. first: Arbeiderungdommen (1923–1927) and last: Médaille commémorative française +[2018-02-13T08:30:02.799] [INFO] cheese - batch complete in: 1.672 secs +[2018-02-13T08:30:02.928] [INFO] cheese - inserting 1000 documents. first: Sir James Caird, 1st Baronet and last: Xigatse +[2018-02-13T08:30:02.998] [INFO] cheese - inserting 1000 documents. first: William Marvin Watson and last: Category:Argentine biochemists +[2018-02-13T08:30:03.113] [INFO] cheese - inserting 1000 documents. first: Template:VIA color and last: Nuto Revelli +[2018-02-13T08:30:03.122] [INFO] cheese - batch complete in: 1.395 secs +[2018-02-13T08:30:03.146] [INFO] cheese - inserting 1000 documents. first: Vacat page and last: S.V. Arsenal +[2018-02-13T08:30:03.348] [INFO] cheese - batch complete in: 1.428 secs +[2018-02-13T08:30:03.366] [INFO] cheese - batch complete in: 1.408 secs +[2018-02-13T08:30:03.484] [INFO] cheese - batch complete in: 1.529 secs +[2018-02-13T08:30:03.613] [INFO] cheese - inserting 1000 documents. first: Volchanskaya and last: Archmere Academy Mastersingers +[2018-02-13T08:30:03.657] [INFO] cheese - inserting 1000 documents. first: Screen magnifier and last: Odalist +[2018-02-13T08:30:03.715] [INFO] cheese - inserting 1000 documents. first: Bolton Metropolitan Borough Council election, 2007 and last: Ryan Pierce (The West Wing) +[2018-02-13T08:30:03.764] [INFO] cheese - batch complete in: 1.228 secs +[2018-02-13T08:30:03.825] [INFO] cheese - inserting 1000 documents. first: Symphonia Chronicles and last: Tal Keinan +[2018-02-13T08:30:03.872] [INFO] cheese - batch complete in: 1.444 secs +[2018-02-13T08:30:03.876] [INFO] cheese - batch complete in: 3.971 secs +[2018-02-13T08:30:03.918] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:30:04.130] [INFO] cheese - inserting 1000 documents. first: Geronimo Mendieta and last: Krembanan +[2018-02-13T08:30:04.220] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:30:04.231] [INFO] cheese - inserting 1000 documents. first: Clara Conway and last: Dungeons and Dragons Player's Strategy Guide +[2018-02-13T08:30:04.243] [INFO] cheese - inserting 1000 documents. first: Rhine-Main and last: List of traditional Chinese musical instruments +[2018-02-13T08:30:04.267] [INFO] cheese - inserting 1000 documents. first: Isabella Ochichi and last: Category:Films about chess +[2018-02-13T08:30:04.286] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:30:04.341] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:30:04.401] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:30:04.446] [INFO] cheese - inserting 1000 documents. first: Category:History of New Brunswick by location and last: ROKS Su Yong (LST-813) +[2018-02-13T08:30:04.488] [INFO] cheese - inserting 1000 documents. first: Van Auken (disambiguation) and last: File:Feminism & Psychology journal front cover.gif +[2018-02-13T08:30:04.569] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:30:04.592] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:30:04.602] [INFO] cheese - inserting 1000 documents. first: Watalangue and last: Orto Botanico del Monte Baldo +[2018-02-13T08:30:04.746] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:30:04.823] [INFO] cheese - inserting 1000 documents. first: Live at the Westbeth Theater and last: Charlotte Walker, actress +[2018-02-13T08:30:04.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Turkspasha/Archive and last: Suji-gu Office Station +[2018-02-13T08:30:04.891] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:30:04.908] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:30:04.951] [INFO] cheese - inserting 1000 documents. first: Category:UEFA competitions for women's national teams and last: File:Bungalow Heaven.jpg +[2018-02-13T08:30:05.061] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:30:05.246] [INFO] cheese - inserting 1000 documents. first: Low-fiber/low-residue diet and last: Suzanne Marie James +[2018-02-13T08:30:05.262] [INFO] cheese - inserting 1000 documents. first: Viceroyalties of New Spain and last: Sacred fire of Vesta +[2018-02-13T08:30:05.285] [INFO] cheese - inserting 1000 documents. first: Gerald G. May and last: Roncancio +[2018-02-13T08:30:05.399] [INFO] cheese - inserting 1000 documents. first: Zaroşad and last: Chernishevskii District +[2018-02-13T08:30:05.399] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:30:05.404] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:30:05.454] [INFO] cheese - batch complete in: 1.576 secs +[2018-02-13T08:30:05.532] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:30:05.616] [INFO] cheese - inserting 1000 documents. first: Template:Ayeyarwady-geo-stub and last: Wikipedia:WikiProject St. Louis/Politics +[2018-02-13T08:30:05.763] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:30:05.803] [INFO] cheese - inserting 1000 documents. first: Bugueño Pinnacle and last: Homaloxestis tenuipalpella +[2018-02-13T08:30:05.881] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Music of the United Kingdom articles and last: Ogongo Constituency +[2018-02-13T08:30:05.904] [INFO] cheese - inserting 1000 documents. first: Ichor (The Black League album) and last: Pueai Noi District +[2018-02-13T08:30:05.948] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:30:06.035] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:30:06.124] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:30:06.284] [INFO] cheese - inserting 1000 documents. first: Unitedworld Institute of Design and last: Wikipedia:Miscellany for deletion/User:Vennira Iravuggal +[2018-02-13T08:30:06.312] [INFO] cheese - inserting 1000 documents. first: Chernyshevsky Raion and last: Category:Willa Cather +[2018-02-13T08:30:06.375] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:30:06.395] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:30:06.436] [INFO] cheese - inserting 1000 documents. first: Ted Price and last: Wikipedia:Articles for deletion/Bolter +[2018-02-13T08:30:06.549] [INFO] cheese - batch complete in: 1.15 secs +[2018-02-13T08:30:06.604] [INFO] cheese - inserting 1000 documents. first: Category:Danish expatriates in India and last: Wikipedia:Categories for discussion/Log/2009 December 8 +[2018-02-13T08:30:06.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Canadian Fraternal Organization - L'Association Fraternelle Canadienne and last: Portal:Mali/Related portals +[2018-02-13T08:30:06.662] [INFO] cheese - inserting 1000 documents. first: Lecithocera tenuipalpella and last: Martin Werhand +[2018-02-13T08:30:06.744] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:30:06.744] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:30:06.770] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:30:06.875] [INFO] cheese - inserting 1000 documents. first: Category:Washington DC and last: New World Tower +[2018-02-13T08:30:06.946] [INFO] cheese - inserting 1000 documents. first: Category:Defunct newspapers of Iceland and last: 1990–91 IHF Women's Cup Winners' Cup +[2018-02-13T08:30:07.005] [INFO] cheese - inserting 1000 documents. first: William Vander Zalm and last: Interval class +[2018-02-13T08:30:07.037] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:30:07.104] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:30:07.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/September 18, 2011 and last: Centro Nazionale delle Ricerche +[2018-02-13T08:30:07.251] [INFO] cheese - batch complete in: 1.797 secs +[2018-02-13T08:30:07.389] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:30:07.397] [INFO] cheese - inserting 1000 documents. first: Gotha Go 244 and last: Olga Kapeliuk +[2018-02-13T08:30:07.544] [INFO] cheese - inserting 1000 documents. first: File:GPA Screenshot 2015.png and last: File:Sivakavi .jpg +[2018-02-13T08:30:07.653] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:30:07.750] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:30:07.907] [INFO] cheese - inserting 1000 documents. first: Nordik beat and last: Addiscombe (ward) +[2018-02-13T08:30:07.969] [INFO] cheese - inserting 1000 documents. first: Plasmamembrane calmodulin-dependent calcium ATPase and last: Purple grenadier +[2018-02-13T08:30:07.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2009 December 9 and last: Template:GongolaStateGovernors +[2018-02-13T08:30:07.994] [INFO] cheese - inserting 1000 documents. first: Golujeh, Tabriz and last: List of AEW&C aircraft +[2018-02-13T08:30:08.055] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:30:08.087] [INFO] cheese - batch complete in: 1.343 secs +[2018-02-13T08:30:08.106] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:30:08.167] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T08:30:08.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/grammarbank.com and last: Fathallah +[2018-02-13T08:30:08.430] [INFO] cheese - inserting 1000 documents. first: Serow, West Azerbaijan and last: Joel tabora +[2018-02-13T08:30:08.499] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:30:08.526] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:30:08.757] [INFO] cheese - inserting 1000 documents. first: Aristotle's ethics and last: Pete Marshal +[2018-02-13T08:30:08.779] [INFO] cheese - inserting 1000 documents. first: Template:Wpkentucky and last: WNEG (disambiguation) +[2018-02-13T08:30:08.888] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T08:30:08.896] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:30:08.933] [INFO] cheese - inserting 1000 documents. first: The Show Must Go On (musical by Walsh and Whiting) and last: Challenge Show +[2018-02-13T08:30:09.020] [INFO] cheese - inserting 1000 documents. first: 1st Philippine Legislature and last: Michael E. Bratman +[2018-02-13T08:30:09.024] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:30:09.049] [INFO] cheese - inserting 1000 documents. first: Hikitsuke-kata and last: Awa province (Tokushima) +[2018-02-13T08:30:09.135] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:30:09.180] [INFO] cheese - batch complete in: 1.928 secs +[2018-02-13T08:30:09.189] [INFO] cheese - inserting 1000 documents. first: Oklahoma State University homecoming parade car ramming and last: Category:Leonardo da Vinci in fiction +[2018-02-13T08:30:09.222] [INFO] cheese - inserting 1000 documents. first: Rastafarian vocabulary and last: File:Man in the moonlight.jpg +[2018-02-13T08:30:09.258] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:30:09.283] [INFO] cheese - inserting 1000 documents. first: Mulk, Iran and last: PDQ (computer) +[2018-02-13T08:30:09.293] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:30:09.397] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T08:30:09.599] [INFO] cheese - inserting 1000 documents. first: Qalb and last: Wasp Star (Apple Venus Volume 2) +[2018-02-13T08:30:09.636] [INFO] cheese - inserting 1000 documents. first: Daniel Sheffer and last: São Cristóvão (Rio de Janeiro neighbourhood) +[2018-02-13T08:30:09.647] [INFO] cheese - inserting 1000 documents. first: File:Palm Beach Drive bridge, Patterson Lakes.jpg and last: Maheriraty +[2018-02-13T08:30:09.668] [INFO] cheese - inserting 1000 documents. first: Bangalore Elevated Tollway and last: SER-Ninos II +[2018-02-13T08:30:09.677] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:30:09.706] [INFO] cheese - inserting 1000 documents. first: PDQ (laptop) and last: Category:1931 disestablishments in Turkey +[2018-02-13T08:30:09.732] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:30:09.783] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:30:09.832] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T08:30:09.834] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:30:09.885] [INFO] cheese - inserting 1000 documents. first: Category:Fountains in Bangladesh and last: Hydrocortamate hydrochloride +[2018-02-13T08:30:10.008] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:30:10.308] [INFO] cheese - inserting 1000 documents. first: Sanuki province and last: Gardiner +[2018-02-13T08:30:10.357] [INFO] cheese - inserting 1000 documents. first: List of animals of Long Island Sound and last: J. Am. Ceram. Soc. +[2018-02-13T08:30:10.372] [INFO] cheese - inserting 1000 documents. first: Interdigital transducers and last: Salahuddin Governorate +[2018-02-13T08:30:10.390] [INFO] cheese - batch complete in: 1.21 secs +[2018-02-13T08:30:10.421] [INFO] cheese - inserting 1000 documents. first: Ligia Curvaria and last: Category:Canadian military personnel from Quebec +[2018-02-13T08:30:10.425] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:30:10.461] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:30:10.536] [INFO] cheese - inserting 1000 documents. first: E. O. Lyte and last: Bulgarians in Serbia and Montenegro +[2018-02-13T08:30:10.535] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:30:10.548] [INFO] cheese - inserting 1000 documents. first: Shirin Bakhtiar and last: Gray Council +[2018-02-13T08:30:10.587] [INFO] cheese - inserting 1000 documents. first: (14423) 1991 SM2 and last: Akaflieg Stuttgart FS-26 Moseppl +[2018-02-13T08:30:10.645] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:30:10.710] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:30:10.774] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:30:11.022] [INFO] cheese - inserting 1000 documents. first: Januzaj and last: Nikolett Krausz +[2018-02-13T08:30:11.064] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:30:11.113] [INFO] cheese - inserting 1000 documents. first: Sujin Naknayom and last: Loughrea, Co. Galway +[2018-02-13T08:30:11.244] [INFO] cheese - inserting 1000 documents. first: Bust a nut and last: File:SCUBA diving flag icon.gif +[2018-02-13T08:30:11.295] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:30:11.372] [INFO] cheese - inserting 1000 documents. first: Mom's Dead Upset and last: Glenn Greenberg +[2018-02-13T08:30:11.415] [INFO] cheese - inserting 1000 documents. first: Veera Chozhan river and last: 雒龍君 +[2018-02-13T08:30:11.425] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:30:11.527] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:30:11.606] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:30:11.634] [INFO] cheese - inserting 1000 documents. first: Shinobi X and last: Harry Potter Wands +[2018-02-13T08:30:11.819] [INFO] cheese - inserting 1000 documents. first: Yangsan Province (film) and last: Alıç (disambiguation) +[2018-02-13T08:30:11.831] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:30:11.978] [INFO] cheese - inserting 1000 documents. first: Leslie and last: 53rd Division (British) +[2018-02-13T08:30:12.002] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:30:12.130] [INFO] cheese - inserting 1000 documents. first: Women representations in Municipal elections in Israel and last: Buckler-mustard +[2018-02-13T08:30:12.194] [INFO] cheese - batch complete in: 1.804 secs +[2018-02-13T08:30:12.291] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:30:12.402] [INFO] cheese - inserting 1000 documents. first: File:Tamagotchi2.jpeg and last: Wikipedia:Articles for deletion/Mushroom Jack +[2018-02-13T08:30:12.540] [INFO] cheese - inserting 1000 documents. first: Template:Gene-17-stub and last: Schleswig-Holstein-Glücksburg +[2018-02-13T08:30:12.598] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:30:12.659] [INFO] cheese - inserting 1000 documents. first: Schwarza (Black Forest) and last: Category:Multi-purpose stadiums in Switzerland +[2018-02-13T08:30:12.659] [INFO] cheese - inserting 1000 documents. first: Andrei Volobuyev (disambiguation) and last: Talbert, California +[2018-02-13T08:30:12.708] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T08:30:12.711] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:30:12.969] [INFO] cheese - batch complete in: 1.363 secs +[2018-02-13T08:30:13.025] [INFO] cheese - inserting 1000 documents. first: Mickey Mania: The Timeless Adventures of Mickey Mouse and last: 546 Herodias +[2018-02-13T08:30:13.297] [INFO] cheese - batch complete in: 1.465 secs +[2018-02-13T08:30:13.316] [INFO] cheese - inserting 1000 documents. first: Sanadamaru and last: Mount Pleasant railway station, South Australia +[2018-02-13T08:30:13.549] [INFO] cheese - batch complete in: 1.256 secs +[2018-02-13T08:30:13.646] [INFO] cheese - inserting 1000 documents. first: Levkowitz and last: Poetry of Scotland +[2018-02-13T08:30:13.703] [INFO] cheese - inserting 1000 documents. first: Through the Flames and last: Category:American expatriates in New Zealand +[2018-02-13T08:30:13.723] [INFO] cheese - inserting 1000 documents. first: 27P/Crommelin and last: Category:Video game cheating +[2018-02-13T08:30:13.765] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:30:13.833] [INFO] cheese - batch complete in: 1.124 secs +[2018-02-13T08:30:13.907] [INFO] cheese - batch complete in: 1.307 secs +[2018-02-13T08:30:14.147] [INFO] cheese - inserting 1000 documents. first: Lamin Samateh and last: Itolizumab +[2018-02-13T08:30:14.211] [INFO] cheese - inserting 1000 documents. first: VK Ceske Budejovice and last: Tayeb Korbosli +[2018-02-13T08:30:14.239] [INFO] cheese - batch complete in: 1.27 secs +[2018-02-13T08:30:14.267] [INFO] cheese - inserting 1000 documents. first: Poltergasm and last: File:Breaking the News (1912 film) - still.jpg +[2018-02-13T08:30:14.331] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:30:14.370] [INFO] cheese - inserting 1000 documents. first: Operation Headstrong and last: Herzog & de Meuron +[2018-02-13T08:30:14.389] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:30:14.414] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Highway 100 and last: Category:Middle schools in Minnesota +[2018-02-13T08:30:14.513] [INFO] cheese - inserting 1000 documents. first: Mitbanchan and last: Category:Deputy Lieutenants of Ross-shire +[2018-02-13T08:30:14.639] [INFO] cheese - inserting 1000 documents. first: Chromatic aberrations and last: ATHF Marketing Scandal +[2018-02-13T08:30:14.719] [INFO] cheese - inserting 1000 documents. first: Cleveland (TV series) and last: Category:New Zealand politics stubs +[2018-02-13T08:30:14.897] [INFO] cheese - batch complete in: 1.064 secs +[2018-02-13T08:30:14.966] [INFO] cheese - batch complete in: 2.772 secs +[2018-02-13T08:30:15.024] [INFO] cheese - batch complete in: 1.727 secs +[2018-02-13T08:30:15.102] [INFO] cheese - batch complete in: 1.195 secs +[2018-02-13T08:30:15.275] [INFO] cheese - inserting 1000 documents. first: Olokizumab and last: (23492) 1991 RA20 +[2018-02-13T08:30:15.407] [INFO] cheese - inserting 1000 documents. first: Portal:California Roads/Selected article/18 and last: Narrow-leaved Bitter-cress +[2018-02-13T08:30:15.485] [INFO] cheese - batch complete in: 1.245 secs +[2018-02-13T08:30:15.580] [INFO] cheese - inserting 1000 documents. first: Category:Gothic Revival architecture in Herefordshire and last: Andy Little (footballer) +[2018-02-13T08:30:15.729] [INFO] cheese - batch complete in: 1.398 secs +[2018-02-13T08:30:15.771] [INFO] cheese - batch complete in: 1.381 secs +[2018-02-13T08:30:15.822] [INFO] cheese - batch complete in: 7.654 secs +[2018-02-13T08:30:16.212] [INFO] cheese - inserting 1000 documents. first: 1956 U.S. Open (golf) and last: Wikipedia:Articles for deletion/Brian Sherwin +[2018-02-13T08:30:16.298] [INFO] cheese - batch complete in: 1.401 secs +[2018-02-13T08:30:16.433] [INFO] cheese - inserting 1000 documents. first: File:Moja domovina.jpg and last: Keyword advertising +[2018-02-13T08:30:16.477] [INFO] cheese - inserting 1000 documents. first: FK Sibiryak Bratsk and last: "Armavia" Air Company +[2018-02-13T08:30:16.489] [INFO] cheese - inserting 1000 documents. first: Aleph nought and last: 834 Burnhamia +[2018-02-13T08:30:16.524] [INFO] cheese - inserting 1000 documents. first: Four greats of Chilean poetry and last: Margaret Wilson (judge) +[2018-02-13T08:30:16.663] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:30:16.685] [INFO] cheese - inserting 1000 documents. first: Red Light district and last: Category:Paintings in California +[2018-02-13T08:30:16.726] [INFO] cheese - batch complete in: 1.623 secs +[2018-02-13T08:30:16.765] [INFO] cheese - batch complete in: 1.741 secs +[2018-02-13T08:30:16.768] [INFO] cheese - batch complete in: 1.283 secs +[2018-02-13T08:30:16.955] [INFO] cheese - batch complete in: 1.226 secs +[2018-02-13T08:30:17.242] [INFO] cheese - inserting 1000 documents. first: Arne Naess and last: Vernix +[2018-02-13T08:30:17.406] [INFO] cheese - inserting 1000 documents. first: Steele (supercomputer) and last: Hilarion-Pit +[2018-02-13T08:30:17.423] [INFO] cheese - batch complete in: 2.456 secs +[2018-02-13T08:30:17.689] [INFO] cheese - inserting 1000 documents. first: Songo Songo Airstrip and last: Alpha (Magic: The Gathering) +[2018-02-13T08:30:17.757] [INFO] cheese - batch complete in: 1.459 secs +[2018-02-13T08:30:17.959] [INFO] cheese - inserting 1000 documents. first: CMRN and last: File:Stel forawhile.jpg +[2018-02-13T08:30:18.070] [INFO] cheese - inserting 1000 documents. first: Lecithocera lasioides and last: Ämmuste +[2018-02-13T08:30:18.085] [INFO] cheese - batch complete in: 1.421 secs +[2018-02-13T08:30:18.129] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Cass County, Missouri and last: Andrei Kovalenco +[2018-02-13T08:30:18.260] [INFO] cheese - batch complete in: 1.533 secs +[2018-02-13T08:30:18.292] [INFO] cheese - inserting 1000 documents. first: 832 Karin and last: File:Gaffney.jpg +[2018-02-13T08:30:18.308] [INFO] cheese - batch complete in: 1.353 secs +[2018-02-13T08:30:18.477] [INFO] cheese - batch complete in: 1.712 secs +[2018-02-13T08:30:18.591] [INFO] cheese - inserting 1000 documents. first: Wicki-Hayden note layout and last: File:20091123 Newsweek Palin Cover.png +[2018-02-13T08:30:18.589] [INFO] cheese - batch complete in: 1.821 secs +[2018-02-13T08:30:18.769] [INFO] cheese - batch complete in: 2.947 secs +[2018-02-13T08:30:18.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Devonshire Collection of Period Costume and last: Atta-faire language +[2018-02-13T08:30:19.014] [INFO] cheese - inserting 1000 documents. first: The Semonski Sisters and last: New media artist +[2018-02-13T08:30:19.048] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:30:19.184] [INFO] cheese - batch complete in: 1.427 secs +[2018-02-13T08:30:19.322] [INFO] cheese - inserting 1000 documents. first: File:CoASigismundKingofHungary.png and last: Geiselbach (Kahl) +[2018-02-13T08:30:19.381] [INFO] cheese - inserting 1000 documents. first: Category:Festivals in Turkey by city and last: Category:Paintings in Youngstown, Ohio +[2018-02-13T08:30:19.404] [INFO] cheese - inserting 1000 documents. first: Eadmer of Canterbury and last: Big Malcolm +[2018-02-13T08:30:19.565] [INFO] cheese - inserting 1000 documents. first: Hollywood – My Way and last: Kaleval'skii +[2018-02-13T08:30:19.579] [INFO] cheese - batch complete in: 1.271 secs +[2018-02-13T08:30:19.581] [INFO] cheese - batch complete in: 1.319 secs +[2018-02-13T08:30:19.661] [INFO] cheese - inserting 1000 documents. first: Robert C. Byrd placenames and last: Fayetteville Area System of Transit +[2018-02-13T08:30:19.698] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:30:19.809] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:30:19.899] [INFO] cheese - inserting 1000 documents. first: Category:Chinese former Muslims and last: Yu Daimonzi +[2018-02-13T08:30:20.085] [INFO] cheese - batch complete in: 1.606 secs +[2018-02-13T08:30:20.089] [INFO] cheese - inserting 1000 documents. first: Ictineo and last: Wallon +[2018-02-13T08:30:20.246] [INFO] cheese - batch complete in: 1.198 secs +[2018-02-13T08:30:20.297] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Wyoming Highway 132 and last: Typhochlaena costae +[2018-02-13T08:30:20.495] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:30:20.678] [INFO] cheese - inserting 1000 documents. first: List of Japan-related topics (numbers and symbols) and last: CC Lockwood +[2018-02-13T08:30:20.719] [INFO] cheese - batch complete in: 3.296 secs +[2018-02-13T08:30:20.905] [INFO] cheese - batch complete in: 1.721 secs +[2018-02-13T08:30:20.968] [INFO] cheese - inserting 1000 documents. first: Sukkok and last: Richmond-Petersburg +[2018-02-13T08:30:21.082] [INFO] cheese - inserting 1000 documents. first: Mupwi and last: Christian Brothers High School (Memphis, Tennessee) +[2018-02-13T08:30:21.096] [INFO] cheese - inserting 1000 documents. first: Halve Maen (ship) and last: Frank St. John Sidway +[2018-02-13T08:30:21.100] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T08:30:21.118] [INFO] cheese - inserting 1000 documents. first: Edward Hannes and last: 62nd General Assembly of Nova Scotia +[2018-02-13T08:30:21.243] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:30:21.272] [INFO] cheese - batch complete in: 1.574 secs +[2018-02-13T08:30:21.297] [INFO] cheese - batch complete in: 1.714 secs +[2018-02-13T08:30:21.332] [INFO] cheese - inserting 1000 documents. first: Animation Magazine and last: Wikipedia:Articles for deletion/Samuel Morris Penthouse +[2018-02-13T08:30:21.624] [INFO] cheese - inserting 1000 documents. first: John Coghlan (footballer) and last: Alexander Liziukov +[2018-02-13T08:30:21.664] [INFO] cheese - batch complete in: 1.579 secs +[2018-02-13T08:30:21.791] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:30:22.040] [INFO] cheese - inserting 1000 documents. first: Guantanamo captive 090 and last: Arp 226 +[2018-02-13T08:30:22.126] [INFO] cheese - batch complete in: 1.221 secs +[2018-02-13T08:30:22.161] [INFO] cheese - inserting 1000 documents. first: Pompey Center, New York and last: Charles Laplace +[2018-02-13T08:30:22.172] [INFO] cheese - inserting 1000 documents. first: United States presidential election in New York, 1884 and last: Cosmosoma festiva +[2018-02-13T08:30:22.231] [INFO] cheese - inserting 1000 documents. first: Assault with intent to commit felony and last: Siah Jamegan Aboumoslem Khorasan F.C. +[2018-02-13T08:30:22.237] [INFO] cheese - inserting 1000 documents. first: Nicolau Eymerich and last: Wikipedia:WikiProject Military history/Peer review/Battle of Shanghai +[2018-02-13T08:30:22.268] [INFO] cheese - batch complete in: 1.167 secs +[2018-02-13T08:30:22.332] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:30:22.350] [INFO] cheese - batch complete in: 1.052 secs +[2018-02-13T08:30:22.356] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T08:30:22.501] [INFO] cheese - inserting 1000 documents. first: Doug Selby and last: Success factors +[2018-02-13T08:30:22.537] [INFO] cheese - inserting 1000 documents. first: Bahai Faith in China and last: National Union of Shop Assistants +[2018-02-13T08:30:22.554] [INFO] cheese - inserting 1000 documents. first: House wren and last: Pinus taeda +[2018-02-13T08:30:22.614] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:30:22.655] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:30:22.848] [INFO] cheese - batch complete in: 2.128 secs +[2018-02-13T08:30:22.878] [INFO] cheese - inserting 1000 documents. first: Cosmosoma aleus and last: Firuraq Rural District +[2018-02-13T08:30:22.908] [INFO] cheese - inserting 1000 documents. first: Dwight Yates and last: Template:Spider Loc +[2018-02-13T08:30:22.960] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:30:22.972] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:30:23.047] [INFO] cheese - inserting 1000 documents. first: Abdolhossein Zarinkoob and last: 4th U.S. Colored Infantry Regiment +[2018-02-13T08:30:23.103] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Hunter2hunter and last: The 12 Steps +[2018-02-13T08:30:23.124] [INFO] cheese - inserting 1000 documents. first: Category:Minnesota Golden Gophers men's basketball seasons and last: David Murray Cowie +[2018-02-13T08:30:23.169] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:30:23.251] [INFO] cheese - inserting 1000 documents. first: National Amalgamated Union of Shop Assistants and last: Derby Road (disambiguation) +[2018-02-13T08:30:23.254] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:30:23.266] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:30:23.346] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:30:23.382] [INFO] cheese - inserting 1000 documents. first: Panchachuli and last: List of Pacific hurricanes before 1900 +[2018-02-13T08:30:23.474] [INFO] cheese - inserting 1000 documents. first: Gowharan Rural District (West Azerbaijan Province) and last: Karla MacFarlane +[2018-02-13T08:30:23.484] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:30:23.535] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:30:23.603] [INFO] cheese - inserting 1000 documents. first: List of places in the Heraklion prefecture and last: Yaʿăqōḇ +[2018-02-13T08:30:23.708] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:30:23.736] [INFO] cheese - inserting 1000 documents. first: Sonderborg Airport and last: Category:New Zealand judges +[2018-02-13T08:30:23.790] [INFO] cheese - inserting 1000 documents. first: Noctua carnea and last: Template:Tohoku Rakuten Golden Eagles roster +[2018-02-13T08:30:23.796] [INFO] cheese - inserting 1000 documents. first: The Army and Navy Journal and last: Murder on the High Seas (book) +[2018-02-13T08:30:23.899] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:30:23.919] [INFO] cheese - inserting 1000 documents. first: Battles of Batočina and Jagodina and last: Murray State Racers men's golf +[2018-02-13T08:30:23.893] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:30:24.029] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:30:24.099] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:30:24.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Whendjlizawasdjlisa and last: Glenwood Memorial Gardens +[2018-02-13T08:30:24.283] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:30:24.412] [INFO] cheese - inserting 1000 documents. first: File:Rasinari Church.png and last: Battle of zaoyang yichang +[2018-02-13T08:30:24.415] [INFO] cheese - inserting 1000 documents. first: David Hookes and last: Hate group +[2018-02-13T08:30:24.551] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:30:24.583] [INFO] cheese - batch complete in: 1.734 secs +[2018-02-13T08:30:24.691] [INFO] cheese - inserting 1000 documents. first: Chapter 9 bankruptcy and last: Arnfield +[2018-02-13T08:30:24.736] [INFO] cheese - inserting 1000 documents. first: The Family Jewels (Marina and the Diamonds album) and last: Rusty: A Dog's Tale +[2018-02-13T08:30:24.765] [INFO] cheese - inserting 1000 documents. first: Gose Elbe and last: Tapinurus +[2018-02-13T08:30:24.783] [INFO] cheese - inserting 1000 documents. first: Cal State Northridge Matadors men's golf and last: Mall cop 2 +[2018-02-13T08:30:24.787] [INFO] cheese - inserting 1000 documents. first: Wal-Mart Supercentre and last: Binley, Coventry +[2018-02-13T08:30:24.788] [INFO] cheese - inserting 1000 documents. first: Titanium diselenide and last: António Baltasar Marcelino +[2018-02-13T08:30:24.802] [INFO] cheese - batch complete in: 1.094 secs +[2018-02-13T08:30:24.850] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:30:24.914] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:30:24.967] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:30:24.966] [INFO] cheese - batch complete in: 1.073 secs +[2018-02-13T08:30:24.985] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:30:25.323] [INFO] cheese - inserting 1000 documents. first: Enséñame a Olvidar (Aventura song) and last: SLC5A7 +[2018-02-13T08:30:25.364] [INFO] cheese - inserting 1000 documents. first: Zamora (municipality) and last: Cloudland +[2018-02-13T08:30:25.379] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T08:30:25.400] [INFO] cheese - inserting 1000 documents. first: File:Holly Happy Days.jpeg and last: Maji Desu ka Ska +[2018-02-13T08:30:25.457] [INFO] cheese - inserting 1000 documents. first: IEC 61960 and last: 2010 Football NSW season +[2018-02-13T08:30:25.483] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:30:25.514] [INFO] cheese - inserting 1000 documents. first: List of countries by uranium reserves and last: Category:1997 in Indonesia +[2018-02-13T08:30:25.512] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:30:25.553] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:30:25.632] [INFO] cheese - inserting 1000 documents. first: Gurukula Kangri Vishwavidyalaya and last: Portal:India/Quiz/Archive49 +[2018-02-13T08:30:25.642] [INFO] cheese - inserting 1000 documents. first: Burning Up Years and last: Green Township, Harrison County, Ohio +[2018-02-13T08:30:25.649] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:30:25.727] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:30:25.740] [INFO] cheese - inserting 1000 documents. first: Nuristanis and last: Shmoo Group +[2018-02-13T08:30:25.753] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:30:25.953] [INFO] cheese - batch complete in: 1.368 secs +[2018-02-13T08:30:26.088] [INFO] cheese - inserting 1000 documents. first: Bobot and last: Pryazhinskii District +[2018-02-13T08:30:26.135] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/htb.co.jp and last: Bob Curnow +[2018-02-13T08:30:26.132] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:30:26.152] [INFO] cheese - inserting 1000 documents. first: Paul W. Draper and last: Kent station (Washington) +[2018-02-13T08:30:26.251] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:30:26.257] [INFO] cheese - inserting 1000 documents. first: Giant bikes and last: Lasdon Park and Arboretum +[2018-02-13T08:30:26.288] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:30:26.394] [INFO] cheese - inserting 1000 documents. first: Christ School and last: Tourism in Gary, Indiana +[2018-02-13T08:30:26.396] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:30:26.410] [INFO] cheese - inserting 1000 documents. first: Welfare in Brazil and last: Geographic center of Belarus +[2018-02-13T08:30:26.518] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:30:26.547] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:30:26.641] [INFO] cheese - inserting 1000 documents. first: Monroe Township, Harrison County, Ohio and last: Lee Township, Athens County, Ohio +[2018-02-13T08:30:26.698] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:30:26.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Delaware/Article alerts and last: Category:Municipal parks in North Carolina +[2018-02-13T08:30:26.758] [INFO] cheese - inserting 1000 documents. first: Pryajinsky District and last: Wikipedia:Templates for discussion/Log/2009 March 29 +[2018-02-13T08:30:26.882] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:30:26.892] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:30:26.986] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julianna Pollifrone and last: Lijuan Geng +[2018-02-13T08:30:27.102] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:30:27.356] [INFO] cheese - inserting 1000 documents. first: Sevskoye Urban Settlement and last: Romel Quiñónez +[2018-02-13T08:30:27.445] [INFO] cheese - inserting 1000 documents. first: Utricularia macrocheilos and last: Levon "Bo" Jones +[2018-02-13T08:30:27.465] [INFO] cheese - inserting 1000 documents. first: Donald Wandrei and last: Wikipedia:Articles for deletion/Mystii +[2018-02-13T08:30:27.467] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:30:27.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2009 March 30 and last: Wikipedia:Templates for discussion/Log/2008 August 31 +[2018-02-13T08:30:27.567] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:30:27.583] [INFO] cheese - batch complete in: 1.186 secs +[2018-02-13T08:30:27.683] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:30:27.722] [INFO] cheese - inserting 1000 documents. first: Trimble Township, Athens County, Ohio and last: ATN cricket plus +[2018-02-13T08:30:27.838] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ALBUMS/REVSIT and last: Theoria (social and political journal) +[2018-02-13T08:30:27.850] [INFO] cheese - batch complete in: 1.151 secs +[2018-02-13T08:30:27.861] [INFO] cheese - inserting 1000 documents. first: Category:Dance festivals in Thailand and last: 狄漢臣 +[2018-02-13T08:30:27.864] [INFO] cheese - inserting 1000 documents. first: Marquess of Ailesbury and last: Youth sexuality +[2018-02-13T08:30:27.906] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T08:30:27.980] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:30:28.040] [INFO] cheese - batch complete in: 2.087 secs +[2018-02-13T08:30:28.101] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2008 September 1 and last: File:Sunset view at Fagatele Bay.jpg +[2018-02-13T08:30:28.114] [INFO] cheese - inserting 1000 documents. first: The New Girl (Haven) and last: Rintaro Norizuki +[2018-02-13T08:30:28.179] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:30:28.190] [INFO] cheese - inserting 1000 documents. first: Leaf-carrying ant and last: Christian Law of Adoption in India +[2018-02-13T08:30:28.218] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:30:28.284] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:30:28.388] [INFO] cheese - inserting 1000 documents. first: Michael Bolotin and last: Category:Soviet diplomats +[2018-02-13T08:30:28.594] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T08:30:28.618] [INFO] cheese - inserting 1000 documents. first: ATN cricketplus and last: Polyrectangle +[2018-02-13T08:30:28.619] [INFO] cheese - inserting 1000 documents. first: Οὔγγροι and last: Doug Carter +[2018-02-13T08:30:28.735] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:30:28.793] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:30:28.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Video games/Reference library/The One and last: Template:Attached KML/Interstate 580 (Nevada) +[2018-02-13T08:30:28.987] [INFO] cheese - inserting 1000 documents. first: Adel Bencherif and last: New Zealand National +[2018-02-13T08:30:29.003] [INFO] cheese - inserting 1000 documents. first: Category:Environmental Microbiology and last: Milford Junction +[2018-02-13T08:30:29.009] [INFO] cheese - inserting 1000 documents. first: Category:20th-century establishments in the Cape Colony and last: File:UT Press logo.PNG +[2018-02-13T08:30:29.049] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:30:29.111] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:30:29.131] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:30:29.132] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:30:29.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/GeeseUK and last: Frank Schleck +[2018-02-13T08:30:29.570] [INFO] cheese - inserting 1000 documents. first: Reddish brown and last: Frank Velásquez +[2018-02-13T08:30:29.602] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T08:30:29.688] [INFO] cheese - inserting 1000 documents. first: File:Monstersquadposter.jpg and last: Ōsaki-Hirokōji Station +[2018-02-13T08:30:29.713] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:30:29.763] [INFO] cheese - inserting 1000 documents. first: 2009–10 Biathlon World Cup – Individual Men and last: Manuel Monge +[2018-02-13T08:30:29.818] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:30:29.872] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:30:30.030] [INFO] cheese - inserting 1000 documents. first: Category:Trinity Bantams and last: Beside Still Waters (film) +[2018-02-13T08:30:30.080] [INFO] cheese - inserting 1000 documents. first: Category:Religious texts articles needing infoboxes and last: The Frye Apartments Guy +[2018-02-13T08:30:30.085] [INFO] cheese - inserting 1000 documents. first: Toyota Celica (T230) and last: Japan Gasoline Co. +[2018-02-13T08:30:30.111] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:30:30.130] [INFO] cheese - inserting 1000 documents. first: Muhammad Ayub Khan and last: Mario Party +[2018-02-13T08:30:30.145] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:30:30.179] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:30:30.296] [INFO] cheese - batch complete in: 2.256 secs +[2018-02-13T08:30:30.395] [INFO] cheese - inserting 1000 documents. first: Sins of a Solar Empire: Rebellion and last: Template:Cities and towns in Požega-Slavonia +[2018-02-13T08:30:30.405] [INFO] cheese - inserting 1000 documents. first: List of American jazz musicians of Sicilian origin and last: Old-man's-beard +[2018-02-13T08:30:30.481] [INFO] cheese - inserting 1000 documents. first: Master Eraqus and last: Adyge-Khablskoye +[2018-02-13T08:30:30.484] [INFO] cheese - inserting 1000 documents. first: Nicșeni and last: Stephen P. Clark Center +[2018-02-13T08:30:30.500] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:30:30.519] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:30:30.614] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:30:30.617] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:30:30.783] [INFO] cheese - inserting 1000 documents. first: 1958–59 Liverpool F.C. season and last: Template:Cycling data MCG +[2018-02-13T08:30:30.822] [INFO] cheese - inserting 1000 documents. first: Chainstore makeover and last: El Mundo del Siglo Veintiuno +[2018-02-13T08:30:30.833] [INFO] cheese - inserting 1000 documents. first: Category:1990s in the environment and last: La Grange Road station (Metra) +[2018-02-13T08:30:30.933] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:30:30.986] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:30:31.103] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:30:31.349] [INFO] cheese - inserting 1000 documents. first: Doctor Who (series 24) and last: De Meritens +[2018-02-13T08:30:31.355] [INFO] cheese - inserting 1000 documents. first: Medial dorsal nucleus and last: Niwa Nagakuni +[2018-02-13T08:30:31.368] [INFO] cheese - inserting 1000 documents. first: Wonderer and last: Category:Discoveries by Yoshisada Shimizu +[2018-02-13T08:30:31.435] [INFO] cheese - inserting 1000 documents. first: Curse of the bambino and last: International Union of Guides and Scouts of Europe +[2018-02-13T08:30:31.442] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:30:31.466] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:30:31.608] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:30:31.745] [INFO] cheese - batch complete in: 1.244 secs +[2018-02-13T08:30:31.935] [INFO] cheese - inserting 1000 documents. first: List of natural regions in Saxony and last: Category:486 in Europe +[2018-02-13T08:30:32.007] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:30:32.065] [INFO] cheese - inserting 1000 documents. first: HMS Serapis (1779) and last: The Dears +[2018-02-13T08:30:32.104] [INFO] cheese - inserting 1000 documents. first: La Grange Road station (Illinois) and last: Retort gas +[2018-02-13T08:30:32.209] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T08:30:32.281] [INFO] cheese - batch complete in: 1.984 secs +[2018-02-13T08:30:32.286] [INFO] cheese - inserting 1000 documents. first: Battle of Hyrba and last: File:Full Circle (Doctor Who).jpg +[2018-02-13T08:30:32.341] [INFO] cheese - inserting 1000 documents. first: Eight street middle school and last: Category:B-Class Computer Security articles of High-importance +[2018-02-13T08:30:32.401] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T08:30:32.406] [INFO] cheese - inserting 1000 documents. first: Category:Lynchburg (minor league baseball) players and last: Reno Air Races Crash +[2018-02-13T08:30:32.409] [INFO] cheese - inserting 1000 documents. first: Grafeneck Euthanasia Centre and last: Martin Windrow +[2018-02-13T08:30:32.463] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:30:32.511] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:30:32.555] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:30:32.700] [INFO] cheese - inserting 1000 documents. first: Category:489 in Europe and last: Eumelea genuina +[2018-02-13T08:30:32.746] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:30:32.803] [INFO] cheese - inserting 1000 documents. first: Category:Paintings in Düsseldorf and last: Shane Julien +[2018-02-13T08:30:32.810] [INFO] cheese - inserting 1000 documents. first: List of minor planets/115001–115100 and last: Essential thrombocythemia +[2018-02-13T08:30:32.864] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:30:32.909] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:30:33.097] [INFO] cheese - inserting 1000 documents. first: Template:UEFA Europa League winners and last: Temples in Jerusalem +[2018-02-13T08:30:33.123] [INFO] cheese - inserting 1000 documents. first: Fashion capital and last: Five-coloured munia +[2018-02-13T08:30:33.129] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Computer Security articles of Mid-importance and last: Category:2009–10 Atlantic Coast Conference men's basketball season +[2018-02-13T08:30:33.154] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:30:33.253] [INFO] cheese - inserting 1000 documents. first: Indian Health Transfer Policy (Canada) and last: Template:Forth and Clyde Canal map +[2018-02-13T08:30:33.266] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:30:33.349] [INFO] cheese - inserting 1000 documents. first: Dave Considine and last: NASL Final 70 +[2018-02-13T08:30:33.474] [INFO] cheese - batch complete in: 1.011 secs +[2018-02-13T08:30:33.483] [INFO] cheese - batch complete in: 1.082 secs +[2018-02-13T08:30:33.518] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:30:33.672] [INFO] cheese - inserting 1000 documents. first: Category:Grenadian expatriates in Barbados and last: Franco Cotana +[2018-02-13T08:30:33.837] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:30:33.931] [INFO] cheese - inserting 1000 documents. first: Music of Extremadura and last: Richard Burdon Haldane +[2018-02-13T08:30:33.939] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in the Netherlands and last: File:Tengwar tanwi.png +[2018-02-13T08:30:33.993] [INFO] cheese - inserting 1000 documents. first: Lieutenant General (UK) and last: Triathlon at the 2011 Pan American Games – Men's +[2018-02-13T08:30:34.102] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:30:34.118] [INFO] cheese - batch complete in: 1.836 secs +[2018-02-13T08:30:34.122] [INFO] cheese - inserting 1000 documents. first: File:The Whispering of the Gods DVD Cover.jpg and last: Newtonian theory +[2018-02-13T08:30:34.152] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:30:34.246] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:30:34.260] [INFO] cheese - inserting 1000 documents. first: John Acton (canon lawyer) and last: Template:Yasuharu Hasebe +[2018-02-13T08:30:34.331] [INFO] cheese - inserting 1000 documents. first: File:Centrelink-brand.png and last: File:HU-emblem.jpg +[2018-02-13T08:30:34.415] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:30:34.474] [INFO] cheese - batch complete in: 1.207 secs +[2018-02-13T08:30:34.547] [INFO] cheese - inserting 1000 documents. first: 7999 Nesvorný and last: Secondary State Highway 3F +[2018-02-13T08:30:34.671] [INFO] cheese - batch complete in: 1.187 secs +[2018-02-13T08:30:34.799] [INFO] cheese - inserting 1000 documents. first: Triathlon at the 2011 Pan American Games – Women's and last: Higher education in New Zealand +[2018-02-13T08:30:34.826] [INFO] cheese - inserting 1000 documents. first: Arimasa Osawa and last: Equinox Day +[2018-02-13T08:30:34.898] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:30:34.901] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:30:35.058] [INFO] cheese - inserting 1000 documents. first: Hatanga Airport and last: Sir Charles Clow Tennant, 1st Baronet +[2018-02-13T08:30:35.122] [INFO] cheese - inserting 1000 documents. first: McGregor station (British Columbia) and last: StarCraft (comics) +[2018-02-13T08:30:35.122] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:30:35.148] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Sabaragamuwa Province and last: Category:Professional associations based in Vietnam +[2018-02-13T08:30:35.264] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:30:35.329] [INFO] cheese - batch complete in: 1.492 secs +[2018-02-13T08:30:35.374] [INFO] cheese - inserting 1000 documents. first: Ecumenical Theological Seminary and last: Rodrigo Avila +[2018-02-13T08:30:35.410] [INFO] cheese - inserting 1000 documents. first: University of Maryland, College Park Terrapins and last: December (song) +[2018-02-13T08:30:35.471] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:30:35.510] [INFO] cheese - inserting 1000 documents. first: Category:Merited Master of Sports of the USSR and last: Ebodina simplex +[2018-02-13T08:30:35.540] [INFO] cheese - inserting 1000 documents. first: Category:Religious buildings completed in 1222 and last: Category:Steyr-Puch vehicles +[2018-02-13T08:30:35.539] [INFO] cheese - batch complete in: 1.387 secs +[2018-02-13T08:30:35.612] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:30:35.664] [INFO] cheese - inserting 1000 documents. first: Watford Gap and last: Closed list +[2018-02-13T08:30:35.689] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:30:35.822] [INFO] cheese - inserting 1000 documents. first: Lech Kolakowski and last: Template:User Vietnam +[2018-02-13T08:30:35.833] [INFO] cheese - batch complete in: 1.714 secs +[2018-02-13T08:30:35.912] [INFO] cheese - inserting 1000 documents. first: Saleh Al-Arfej and last: Mount Vernon Clippers +[2018-02-13T08:30:35.930] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota State University people and last: Gabe Cash +[2018-02-13T08:30:35.931] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:30:36.015] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:30:36.020] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:30:36.312] [INFO] cheese - inserting 1000 documents. first: Arsallah Jamal and last: Bayan Chowli +[2018-02-13T08:30:36.382] [INFO] cheese - inserting 1000 documents. first: Category:Cars of Austria and last: Club Atlético Madrid (handball) +[2018-02-13T08:30:36.395] [INFO] cheese - inserting 1000 documents. first: Cuihu Gongyuan and last: File:I sometimew wish i was famous.jpg +[2018-02-13T08:30:36.403] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:30:36.457] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:30:36.508] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:30:36.587] [INFO] cheese - inserting 1000 documents. first: Collaborationist and last: Igor Svyatoslavych +[2018-02-13T08:30:36.662] [INFO] cheese - batch complete in: 1.123 secs +[2018-02-13T08:30:36.751] [INFO] cheese - inserting 1000 documents. first: Da Costa v. Jones and last: Widduyim +[2018-02-13T08:30:36.822] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:30:36.927] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sammie Rhodes and last: Richard Ronald John Copeland Esq +[2018-02-13T08:30:36.939] [INFO] cheese - inserting 1000 documents. first: Bayancholi-ye Pain and last: Kim Ji-woon +[2018-02-13T08:30:36.986] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:30:37.078] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T08:30:37.095] [INFO] cheese - inserting 1000 documents. first: Terrorist incidents in Pakistan in 2004 and last: Category:Unincorporated communities in Mississippi County, Missouri +[2018-02-13T08:30:37.208] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:30:37.220] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Kocaeli and last: File:DirkWearsWhiteSoxOriginalCover.gif +[2018-02-13T08:30:37.300] [INFO] cheese - inserting 1000 documents. first: Shandilya Upanishad and last: Template:Team Pune Roster +[2018-02-13T08:30:37.356] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:30:37.478] [INFO] cheese - inserting 1000 documents. first: Yanomama and last: Wolf Hirth +[2018-02-13T08:30:37.517] [INFO] cheese - batch complete in: 1.497 secs +[2018-02-13T08:30:37.554] [INFO] cheese - inserting 1000 documents. first: Grands Établissements and last: Larry Manetti +[2018-02-13T08:30:37.599] [INFO] cheese - batch complete in: 1.765 secs +[2018-02-13T08:30:37.621] [INFO] cheese - inserting 1000 documents. first: Algonquin wit and last: Mini-dvi +[2018-02-13T08:30:37.720] [INFO] cheese - batch complete in: 1.057 secs +[2018-02-13T08:30:37.730] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:30:37.800] [INFO] cheese - inserting 1000 documents. first: Loran Township, Stephenson County, Illinois and last: Phantom reference +[2018-02-13T08:30:37.817] [INFO] cheese - inserting 1000 documents. first: Methylliberine and last: 16-O-methylcafestol +[2018-02-13T08:30:37.899] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:30:37.906] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:30:37.920] [INFO] cheese - inserting 1000 documents. first: Category:Air divisions of the Wehrmacht Luftwaffe and last: Category:Old Town, Maine +[2018-02-13T08:30:38.020] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:30:38.083] [INFO] cheese - inserting 1000 documents. first: Airyhall Primary School and last: ދިވެހިބަސ +[2018-02-13T08:30:38.133] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:30:38.240] [INFO] cheese - inserting 1000 documents. first: Template:Rising Pune Supergiant and last: EuroVision - Museums Exhibiting Europe +[2018-02-13T08:30:38.265] [INFO] cheese - inserting 1000 documents. first: File:Marsh Harvester 1860.jpg and last: United Football League (disambiguation) +[2018-02-13T08:30:38.298] [INFO] cheese - inserting 1000 documents. first: Thomas Midgeley and last: ACL reconstruction +[2018-02-13T08:30:38.300] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:30:38.354] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:30:38.465] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:30:38.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/T-34 and last: Akkad Bakkad Bambey Bo +[2018-02-13T08:30:38.589] [INFO] cheese - inserting 1000 documents. first: Earthed neutral and last: Timothy J. Yeatman +[2018-02-13T08:30:38.628] [INFO] cheese - batch complete in: 0.721 secs +[2018-02-13T08:30:38.691] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:30:38.701] [INFO] cheese - inserting 1000 documents. first: 1981 South American Rugby Championship and last: OP ruft Dr. Bruckner +[2018-02-13T08:30:38.721] [INFO] cheese - inserting 1000 documents. first: Yakima Training Center and last: *Gebô +[2018-02-13T08:30:38.782] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:30:38.788] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:30:38.866] [INFO] cheese - inserting 1000 documents. first: BePink–La Classica and last: Koreatown NYC +[2018-02-13T08:30:38.958] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:30:39.007] [INFO] cheese - inserting 1000 documents. first: Tipulodina and last: List of 2009 box office number-one films in Brazil +[2018-02-13T08:30:39.058] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:30:39.142] [INFO] cheese - inserting 1000 documents. first: Teresa Teng and last: Ifrit +[2018-02-13T08:30:39.228] [INFO] cheese - inserting 1000 documents. first: Piranshahr Industrial Estate and last: Category:Towns in Perquimans County, North Carolina +[2018-02-13T08:30:39.269] [INFO] cheese - batch complete in: 1.665 secs +[2018-02-13T08:30:39.279] [INFO] cheese - inserting 1000 documents. first: St. Theresita's Academy and last: 6 U.S.C. +[2018-02-13T08:30:39.282] [INFO] cheese - inserting 1000 documents. first: Category:1456 paintings and last: K. Engel +[2018-02-13T08:30:39.298] [INFO] cheese - inserting 1000 documents. first: Jim McFadden and last: I ♡ Natural +[2018-02-13T08:30:39.326] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:30:39.386] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:30:39.400] [INFO] cheese - inserting 1000 documents. first: Dima Halam Daoga and last: Michael Bacon (musician) +[2018-02-13T08:30:39.406] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:30:39.413] [INFO] cheese - inserting 1000 documents. first: Peter Chaus and last: File:Bill Hudson SOE.JPG +[2018-02-13T08:30:39.402] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:30:39.500] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:30:39.593] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:30:39.599] [INFO] cheese - inserting 1000 documents. first: R.J. Reynods and last: Jean-Bernard Ndongo Essomba +[2018-02-13T08:30:39.723] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:30:39.905] [INFO] cheese - inserting 1000 documents. first: Friedrich Paul Cilliers and last: File:Stan Walker - Take It Easy.jpg +[2018-02-13T08:30:40.055] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:30:40.152] [INFO] cheese - inserting 1000 documents. first: 2012 NAIA football rankings and last: Thomas Godwin (dean) +[2018-02-13T08:30:40.168] [INFO] cheese - inserting 1000 documents. first: Charles Salatka and last: Mentor Township, Lake County, Ohio +[2018-02-13T08:30:40.208] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:30:40.235] [INFO] cheese - inserting 1000 documents. first: Dor Deah and last: David Zabel +[2018-02-13T08:30:40.257] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:30:40.318] [INFO] cheese - inserting 1000 documents. first: Category:Videotape and last: Category:Armenia city templates +[2018-02-13T08:30:40.360] [INFO] cheese - inserting 1000 documents. first: Frank M. Angellotti and last: O-minimal +[2018-02-13T08:30:40.405] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:30:40.417] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:30:40.510] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:30:40.619] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Royalty Check and last: Phlogiston (Theory) +[2018-02-13T08:30:40.659] [INFO] cheese - inserting 1000 documents. first: Charles Baker (actor) and last: Habashi, West Azerbaijan +[2018-02-13T08:30:40.739] [INFO] cheese - inserting 1000 documents. first: Michael P. Decker and last: Heterobasidiomycetes +[2018-02-13T08:30:40.754] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:30:40.758] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:30:40.836] [INFO] cheese - inserting 1000 documents. first: Pansy Methodist Church School and last: Category:Southwestern Athletic Conference templates +[2018-02-13T08:30:40.903] [INFO] cheese - batch complete in: 1.634 secs +[2018-02-13T08:30:40.956] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T08:30:41.138] [INFO] cheese - inserting 1000 documents. first: Hajo Hecht and last: Template:Trademark/doc +[2018-02-13T08:30:41.152] [INFO] cheese - inserting 1000 documents. first: Saughall and last: Château de Montrésor +[2018-02-13T08:30:41.220] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:30:41.354] [INFO] cheese - inserting 1000 documents. first: Service Ferry Training Squadron and last: Titanic Republic +[2018-02-13T08:30:41.362] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T08:30:41.458] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:30:41.464] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Osborne (writer) and last: St. Stephen's Episcopal School, Bradenton Fl. +[2018-02-13T08:30:41.471] [INFO] cheese - inserting 1000 documents. first: Hamzeh Kandi and last: Shirani, Sardasht +[2018-02-13T08:30:41.536] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:30:41.553] [INFO] cheese - inserting 1000 documents. first: Viscount Loftus and last: White Lake Middle School +[2018-02-13T08:30:41.551] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:30:41.667] [INFO] cheese - batch complete in: 1.157 secs +[2018-02-13T08:30:41.747] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Panditejashri/Archive and last: Template:Missouri Valley Football Conference coach navbox +[2018-02-13T08:30:41.800] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:30:41.924] [INFO] cheese - inserting 1000 documents. first: BMC ADO 17 and last: 2008 PRC earthquake +[2018-02-13T08:30:41.928] [INFO] cheese - inserting 1000 documents. first: Rugby Channel and last: George Vail +[2018-02-13T08:30:41.975] [INFO] cheese - inserting 1000 documents. first: Sam Albarado and last: Cité internationale (Lyon) +[2018-02-13T08:30:41.985] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:30:41.988] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:30:42.013] [INFO] cheese - inserting 1000 documents. first: Tillandsia organensis and last: Wikipedia:Peer review/Bizenghast/archive1 +[2018-02-13T08:30:42.042] [INFO] cheese - inserting 1000 documents. first: Sanjuh and last: Sound Devices +[2018-02-13T08:30:42.048] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:30:42.099] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:30:42.126] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:30:42.276] [INFO] cheese - inserting 1000 documents. first: Margin call and last: No! +[2018-02-13T08:30:42.287] [INFO] cheese - inserting 1000 documents. first: Le Jour Ou La Pluie Viendra and last: Double Trouble (Thomas and Friends) +[2018-02-13T08:30:42.296] [INFO] cheese - inserting 1000 documents. first: Baton Rouge Observatory and last: Azimov +[2018-02-13T08:30:42.330] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:30:42.380] [INFO] cheese - batch complete in: 1.477 secs +[2018-02-13T08:30:42.401] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:30:42.565] [INFO] cheese - inserting 1000 documents. first: Arrested development (psychology) and last: Portal:Strategy games +[2018-02-13T08:30:42.630] [INFO] cheese - inserting 1000 documents. first: Cité Internationale (Lyon) and last: Category:Catholic church buildings in India +[2018-02-13T08:30:42.664] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:30:42.699] [INFO] cheese - inserting 1000 documents. first: Bayer Leverkusen II and last: Template:Texas (band) +[2018-02-13T08:30:42.702] [INFO] cheese - inserting 1000 documents. first: Category:1881 elections in the United States and last: Beth Ostrosky-Stern +[2018-02-13T08:30:42.710] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:30:42.753] [INFO] cheese - inserting 1000 documents. first: Shig Fukuyama and last: Portuguese national debt +[2018-02-13T08:30:42.783] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:30:42.791] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:30:42.852] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:30:42.964] [INFO] cheese - inserting 1000 documents. first: Christian - Serbian Orthodox and last: Wikipedia:WikiProject Spam/Local/paulzarzyski.com +[2018-02-13T08:30:43.039] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:30:43.118] [INFO] cheese - inserting 1000 documents. first: Enéas and last: Harold Josiah Finch +[2018-02-13T08:30:43.122] [INFO] cheese - inserting 1000 documents. first: Isaac azimov and last: Friedrich von Esmarch +[2018-02-13T08:30:43.148] [INFO] cheese - inserting 1000 documents. first: NV 50 and last: Forts in Wyoming +[2018-02-13T08:30:43.154] [INFO] cheese - inserting 1000 documents. first: Monte Ceneri (disambiguation) and last: Discus (website) +[2018-02-13T08:30:43.170] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:30:43.202] [INFO] cheese - inserting 1000 documents. first: Skinhead Rob Aston and last: Dharam Vir Magla +[2018-02-13T08:30:43.198] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:30:43.206] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T08:30:43.206] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T08:30:43.274] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:30:43.277] [INFO] cheese - inserting 1000 documents. first: Shantanu Kumar Acharya and last: Domestic violence in China +[2018-02-13T08:30:43.369] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:30:43.503] [INFO] cheese - inserting 1000 documents. first: Interstate 895 (Rhode Island-Massachusetts) and last: Klaipedos Nafta +[2018-02-13T08:30:43.537] [INFO] cheese - inserting 1000 documents. first: History of the Scots language and last: Rhön-Grabfeld +[2018-02-13T08:30:43.565] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:30:43.575] [INFO] cheese - inserting 1000 documents. first: List of parliaments by country and last: Mahon, Peter +[2018-02-13T08:30:43.623] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:30:43.639] [INFO] cheese - inserting 1000 documents. first: Gay Hills and last: Moray and Nairn byelection 1922 +[2018-02-13T08:30:43.673] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T08:30:43.789] [INFO] cheese - inserting 1000 documents. first: Schinia jaegeri and last: Felsenegg-Girstel TV-tower +[2018-02-13T08:30:43.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Robert O'Connor and last: Dolphin cove (SeaWorld) +[2018-02-13T08:30:43.839] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:30:43.886] [INFO] cheese - inserting 1000 documents. first: Eugenio Coseriu and last: Conny Wessmann +[2018-02-13T08:30:43.901] [INFO] cheese - inserting 1000 documents. first: Dagur Eggertsson and last: Template:Djursholmsbanan +[2018-02-13T08:30:43.905] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:30:43.912] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:30:44.003] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:30:44.015] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:30:44.179] [INFO] cheese - inserting 1000 documents. first: 1931–32 Galatasaray S.K. season and last: Central District (Saravan County) +[2018-02-13T08:30:44.259] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:30:44.285] [INFO] cheese - inserting 1000 documents. first: Marsh, Peter and last: Shipton Hall +[2018-02-13T08:30:44.377] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:30:44.412] [INFO] cheese - inserting 1000 documents. first: Windows 4 and last: Anson Class +[2018-02-13T08:30:44.443] [INFO] cheese - inserting 1000 documents. first: Ketao and last: Category:Suspected Wikipedia sockpuppets of Mudaliar +[2018-02-13T08:30:44.448] [INFO] cheese - inserting 1000 documents. first: Template:Uk-bio-stub and last: Intel Clear Video HD +[2018-02-13T08:30:44.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saša Milivojev and last: Category:UMKC Kangaroos +[2018-02-13T08:30:44.477] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:30:44.529] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:30:44.531] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:30:44.555] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:30:44.711] [INFO] cheese - inserting 1000 documents. first: Archimedes' number and last: Camp Beauregard +[2018-02-13T08:30:44.808] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:30:44.858] [INFO] cheese - inserting 1000 documents. first: Template:National Ringette League teams (2015-16) and last: Category:1892 disasters in the United States +[2018-02-13T08:30:44.923] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T08:30:44.926] [INFO] cheese - inserting 1000 documents. first: Plopart and last: Skaggs, Ricky +[2018-02-13T08:30:44.999] [INFO] cheese - inserting 1000 documents. first: Hand gestures and last: Fukuyama, Kagoshima +[2018-02-13T08:30:45.030] [INFO] cheese - inserting 1000 documents. first: NYU Poly Fighting Jays and last: Template:Did you know nominations/Mercurana +[2018-02-13T08:30:45.036] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:30:45.089] [INFO] cheese - inserting 1000 documents. first: Vinegar Hill Township, Jo Daviess County, Illinois and last: Credit quality +[2018-02-13T08:30:45.126] [INFO] cheese - inserting 1000 documents. first: WTF? (song) and last: Leading-edge slots +[2018-02-13T08:30:45.134] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:30:45.181] [INFO] cheese - batch complete in: 1.558 secs +[2018-02-13T08:30:45.314] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:30:45.326] [INFO] cheese - inserting 1000 documents. first: World Hum and last: Maitree Wickremasinghe +[2018-02-13T08:30:45.328] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:30:45.441] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:30:45.557] [INFO] cheese - inserting 1000 documents. first: Germanic place names in Australia, changed in 1917 and last: Wikipedia:Articles for deletion/England Women v Australia Women 2 September 2005 +[2018-02-13T08:30:45.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gourock Park Bowling Club and last: Category:Rugby union at the World Games +[2018-02-13T08:30:45.628] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:30:45.702] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:30:45.784] [INFO] cheese - inserting 1000 documents. first: Osor (disambiguation) and last: Paul Zarzyski +[2018-02-13T08:30:45.837] [INFO] cheese - inserting 1000 documents. first: Crazy Love (TV series) and last: Classical music in Scotland +[2018-02-13T08:30:45.874] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:30:45.934] [INFO] cheese - inserting 1000 documents. first: FIFA 03 and last: Vivek Rajkumar +[2018-02-13T08:30:45.933] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:30:45.947] [INFO] cheese - inserting 1000 documents. first: Quiksilver Big Wave Invitational and last: Indos +[2018-02-13T08:30:45.992] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:30:46.060] [INFO] cheese - inserting 1000 documents. first: Nether kellet and last: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality/10 +[2018-02-13T08:30:46.092] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:30:46.127] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:30:46.216] [INFO] cheese - inserting 1000 documents. first: Category:Philately-related lists and last: File:Nesthaekchen und ihre enkel.jpg +[2018-02-13T08:30:46.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/England Women v Australia Women 24-27 August 2005 and last: Summit Inn +[2018-02-13T08:30:46.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/go4customer.com and last: Dokuztekne, Ceyhan +[2018-02-13T08:30:46.286] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:30:46.290] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:30:46.449] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:30:46.548] [INFO] cheese - inserting 1000 documents. first: Aira District, Kagoshima and last: File:NikolaiBukharin.jpg +[2018-02-13T08:30:46.651] [INFO] cheese - inserting 1000 documents. first: Shrek the First and last: Wikipedia:Today's articles for improvement/2013/44/3 +[2018-02-13T08:30:46.700] [INFO] cheese - inserting 1000 documents. first: Cheddar Valley and Yatton Railway and last: Regulatory feedback network +[2018-02-13T08:30:46.703] [INFO] cheese - batch complete in: 1.522 secs +[2018-02-13T08:30:46.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality/11 and last: Russo-Turkish relations +[2018-02-13T08:30:46.759] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:30:46.776] [INFO] cheese - inserting 1000 documents. first: File:David Gray- Live (US cover).jpg and last: British Ambassador to Jordan +[2018-02-13T08:30:46.847] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:30:46.938] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:30:46.944] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:30:47.036] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Sweden and last: Jonathan G. Callahan +[2018-02-13T08:30:47.109] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:30:47.273] [INFO] cheese - inserting 1000 documents. first: Dumlu, Ceyhan and last: Lajar Terkembang +[2018-02-13T08:30:47.308] [INFO] cheese - inserting 1000 documents. first: Belarusian Premier League and last: Birdshot +[2018-02-13T08:30:47.342] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:30:47.437] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:30:47.497] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2013/44/4 and last: DMCH (disambiguation) +[2018-02-13T08:30:47.600] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:30:47.616] [INFO] cheese - inserting 1000 documents. first: The Devil Wears Prada (disambiguation) and last: Coleophora bothnicella +[2018-02-13T08:30:47.623] [INFO] cheese - inserting 1000 documents. first: Dark lager and last: Pebble-dashed +[2018-02-13T08:30:47.625] [INFO] cheese - inserting 1000 documents. first: British Ambassadors to Jordan and last: The :20 Minute Workout +[2018-02-13T08:30:47.710] [INFO] cheese - inserting 1000 documents. first: 48492 Utewielen and last: Category:Educational institutions in Auvergne-Rhône-Alpes +[2018-02-13T08:30:47.731] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:30:47.732] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:30:47.843] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:30:47.878] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:30:48.016] [INFO] cheese - inserting 1000 documents. first: Akpınar, Yüreğir and last: Kolb (disambiguation) +[2018-02-13T08:30:48.125] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:30:48.154] [INFO] cheese - inserting 1000 documents. first: HaKochav Lod F.C. and last: Category:Protected areas in Uva Province +[2018-02-13T08:30:48.168] [INFO] cheese - inserting 1000 documents. first: 1918 in Mexico and last: Wikipedia:Teahouse/Questions/Archive 150 +[2018-02-13T08:30:48.202] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T08:30:48.228] [INFO] cheese - inserting 1000 documents. first: Mega Tokoyo and last: District School Board of Niagara +[2018-02-13T08:30:48.267] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:30:48.269] [INFO] cheese - inserting 1000 documents. first: Ram Jam and last: Chinese Wall +[2018-02-13T08:30:48.412] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:30:48.463] [INFO] cheese - inserting 1000 documents. first: 1204 CE and last: 216 CE +[2018-02-13T08:30:48.477] [INFO] cheese - batch complete in: 1.773 secs +[2018-02-13T08:30:48.539] [INFO] cheese - inserting 1000 documents. first: Happy Lion and last: List of minor planets/149901–150000 +[2018-02-13T08:30:48.558] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T08:30:48.616] [INFO] cheese - inserting 1000 documents. first: Eco-costs value ratio and last: Chomkarmorn +[2018-02-13T08:30:48.725] [INFO] cheese - inserting 1000 documents. first: Iván Rocha and last: A Girl in Every Port (1928 film) +[2018-02-13T08:30:48.729] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:30:48.760] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:30:48.812] [INFO] cheese - inserting 1000 documents. first: File:Cover of Illusion and Realtity 1937.jpg and last: William C. Anderson (disambiguation) +[2018-02-13T08:30:48.871] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:30:48.986] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:30:48.993] [INFO] cheese - inserting 1000 documents. first: 215 CE and last: Template:Festivals by year pre1000 cat/doc +[2018-02-13T08:30:49.041] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Teahouse/Questions/Archive 151 and last: Ross, Jeanne W. +[2018-02-13T08:30:49.101] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:30:49.177] [INFO] cheese - inserting 1000 documents. first: Saturday Night Live TV show sketches and last: Slask Swietochlowice +[2018-02-13T08:30:49.193] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:30:49.225] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:30:49.508] [INFO] cheese - inserting 1000 documents. first: Category:Justiciars of Ireland and last: Polarsun Motor +[2018-02-13T08:30:49.527] [INFO] cheese - inserting 1000 documents. first: Lewis Wesley Cutrer and last: Malyavat Mountains +[2018-02-13T08:30:49.621] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:30:49.645] [INFO] cheese - inserting 1000 documents. first: IT Performance Management and last: Kaşköy, Adıyaman +[2018-02-13T08:30:49.683] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:30:49.707] [INFO] cheese - inserting 1000 documents. first: Template:Serbia men's water polo squad 2012 Summer Olympics and last: Brosh (disambiguation) +[2018-02-13T08:30:49.751] [INFO] cheese - inserting 1000 documents. first: I Run This and last: St Lizier d'Ustou +[2018-02-13T08:30:49.799] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:30:49.904] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:30:49.957] [INFO] cheese - batch complete in: 1.086 secs +[2018-02-13T08:30:50.079] [INFO] cheese - inserting 1000 documents. first: List of Polish Uprisings and last: Kostroma (river) +[2018-02-13T08:30:50.094] [INFO] cheese - inserting 1000 documents. first: Livestock in the Basque Country and last: Day One: Garry's Incident +[2018-02-13T08:30:50.186] [INFO] cheese - inserting 1000 documents. first: Beta Columbae and last: AFDX +[2018-02-13T08:30:50.190] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:30:50.234] [INFO] cheese - batch complete in: 1.757 secs +[2018-02-13T08:30:50.365] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:30:50.488] [INFO] cheese - inserting 1000 documents. first: Performance based building design and last: Wine in Australia +[2018-02-13T08:30:50.531] [INFO] cheese - inserting 1000 documents. first: Waterlow baronets and last: Cape Feare (The Simpsons) +[2018-02-13T08:30:50.618] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:30:50.682] [INFO] cheese - inserting 1000 documents. first: Kemerkaya, Adıyaman and last: John William McIntosh +[2018-02-13T08:30:50.684] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:30:50.769] [INFO] cheese - inserting 1000 documents. first: Category:Film people from Northern Ireland and last: Norton House Historic District +[2018-02-13T08:30:50.773] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:30:50.898] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:30:50.909] [INFO] cheese - inserting 1000 documents. first: PSEI and last: Flag of Krasnodar Krai +[2018-02-13T08:30:50.917] [INFO] cheese - inserting 1000 documents. first: Portal:Geography of Kenya/Categories and last: Veenaa-Murali +[2018-02-13T08:30:50.994] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:30:51.009] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:30:51.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Varel and last: Wikipedia:Articles for deletion/Gary Gilbert Daffins +[2018-02-13T08:30:51.312] [INFO] cheese - inserting 1000 documents. first: Www.ucc.ie and last: Kevin Mannoia +[2018-02-13T08:30:51.367] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:30:51.395] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:30:51.501] [INFO] cheese - inserting 1000 documents. first: Esmee Denters and last: Perry Township, Pickaway County, Ohio +[2018-02-13T08:30:51.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Athlete's foot and last: Jiri Rezac +[2018-02-13T08:30:51.528] [INFO] cheese - inserting 1000 documents. first: Esma'ilaqa Qal'ehsi and last: 1987 IAAF World Cross Country Championships – Senior women's race +[2018-02-13T08:30:51.531] [INFO] cheese - inserting 1000 documents. first: Mologa (town) and last: Earl of Iddesleigh +[2018-02-13T08:30:51.563] [INFO] cheese - inserting 1000 documents. first: Bednye Rodstvenniki and last: Brian Jamieson (director) +[2018-02-13T08:30:51.587] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:30:51.603] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:30:51.643] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:30:51.637] [INFO] cheese - batch complete in: 1.403 secs +[2018-02-13T08:30:51.760] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:30:51.812] [INFO] cheese - inserting 1000 documents. first: Trams of Putilov plant and last: Appleton, Nathan, Residence +[2018-02-13T08:30:51.939] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:30:52.251] [INFO] cheese - inserting 1000 documents. first: File:Santicover.jpg and last: Cconio +[2018-02-13T08:30:52.302] [INFO] cheese - inserting 1000 documents. first: Asplenium parvum and last: Mayor of Pitcairn +[2018-02-13T08:30:52.350] [INFO] cheese - inserting 1000 documents. first: Edele Lynch and last: The Pursuit of Illusion +[2018-02-13T08:30:52.359] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:30:52.362] [INFO] cheese - inserting 1000 documents. first: Mihajlo Anđelović and last: Wikipedia:WikiProject Military history/Assessment/Melbourne Castle +[2018-02-13T08:30:52.421] [INFO] cheese - inserting 1000 documents. first: TNN Motor Sports Hardcore 4x4 and last: Peter Barrett (cricketer) +[2018-02-13T08:30:52.430] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:30:52.530] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:30:52.614] [INFO] cheese - inserting 1000 documents. first: 2011 Lexus of Las Vegas Open and last: Category:History of Vatican City +[2018-02-13T08:30:52.614] [INFO] cheese - batch complete in: 1.247 secs +[2018-02-13T08:30:52.652] [INFO] cheese - batch complete in: 1.229 secs +[2018-02-13T08:30:52.745] [INFO] cheese - inserting 1000 documents. first: Joe Odegbami and last: Fantasia (singer) +[2018-02-13T08:30:52.816] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:30:52.853] [INFO] cheese - batch complete in: 1.091 secs +[2018-02-13T08:30:53.211] [INFO] cheese - inserting 1000 documents. first: Kyle Sweeney and last: Cex +[2018-02-13T08:30:53.244] [INFO] cheese - inserting 1000 documents. first: File:Jack Truelove (on loan) Brackley Town 2015-2016.jpg and last: Infra (video game) +[2018-02-13T08:30:53.329] [INFO] cheese - inserting 1000 documents. first: Alexander J. Kaleri and last: Generalized special orthogonal group +[2018-02-13T08:30:53.351] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:30:53.353] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:30:53.460] [INFO] cheese - inserting 1000 documents. first: Pory Island and last: Tupuzabad, Urmia +[2018-02-13T08:30:53.475] [INFO] cheese - inserting 1000 documents. first: File:KayKayAlbumCover.jpg and last: The Battle of Piccadilly +[2018-02-13T08:30:53.460] [INFO] cheese - batch complete in: 1.823 secs +[2018-02-13T08:30:53.483] [INFO] cheese - inserting 1000 documents. first: Tharu and last: Jez diamond +[2018-02-13T08:30:53.546] [INFO] cheese - inserting 1000 documents. first: Arachnoid cyst and last: Cotton Mouth (disambiguation) +[2018-02-13T08:30:53.563] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:30:53.602] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:30:53.594] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:30:53.654] [INFO] cheese - inserting 1000 documents. first: Sampson Mordan and last: Wikipedia:WikiProject Spam/LinkReports/cacclw.ahf.nmci.navy.mil +[2018-02-13T08:30:53.744] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T08:30:53.861] [INFO] cheese - batch complete in: 1.208 secs +[2018-02-13T08:30:54.036] [INFO] cheese - inserting 1000 documents. first: Anton Holenkov and last: 李春城 +[2018-02-13T08:30:54.060] [INFO] cheese - inserting 1000 documents. first: Metea Valley High School and last: Richmond Upon Thames College +[2018-02-13T08:30:54.127] [INFO] cheese - inserting 1000 documents. first: Borhanlu and last: Severance, Idaho +[2018-02-13T08:30:54.157] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:30:54.192] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:30:54.261] [INFO] cheese - inserting 1000 documents. first: Cochran's test and last: File:Dickson multiplier with 2nd transistor.svg +[2018-02-13T08:30:54.296] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:30:54.383] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:30:54.434] [INFO] cheese - inserting 1000 documents. first: Andris Nauduzas and last: Wikipedia:Articles for deletion/Cast of Characters vs. The League of Extraordinary Gentlemen lawsuit +[2018-02-13T08:30:54.613] [INFO] cheese - inserting 1000 documents. first: John Mathews (lawyer) and last: Amicale des Originaires de l'A.E.F. +[2018-02-13T08:30:54.612] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:30:54.681] [INFO] cheese - inserting 1000 documents. first: Chancery Standard and last: Sam Hoger +[2018-02-13T08:30:54.759] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:30:54.857] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T08:30:54.886] [INFO] cheese - inserting 1000 documents. first: 金道铭 and last: Đuričić (disambiguation) +[2018-02-13T08:30:54.901] [INFO] cheese - inserting 1000 documents. first: Little Red Lighthouse and last: LPR +[2018-02-13T08:30:54.988] [INFO] cheese - inserting 1000 documents. first: Aden International Airport and last: Theory-theory +[2018-02-13T08:30:55.079] [INFO] cheese - inserting 1000 documents. first: Chaldoran-e Jonubi and last: Best play +[2018-02-13T08:30:55.103] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:30:55.112] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:30:55.143] [INFO] cheese - batch complete in: 1.683 secs +[2018-02-13T08:30:55.169] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 1231 and last: Shake it up +[2018-02-13T08:30:55.254] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:30:55.349] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:30:55.525] [INFO] cheese - inserting 1000 documents. first: Red McGregor and last: Texas Spur 77 +[2018-02-13T08:30:55.530] [INFO] cheese - inserting 1000 documents. first: Prva Petoletka and last: File:Ottawa jail.jpg +[2018-02-13T08:30:55.587] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:30:55.600] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:30:55.761] [INFO] cheese - inserting 1000 documents. first: File:LÉtrangeDéfaite.gif and last: Template:Get URL from WikiData/doc +[2018-02-13T08:30:55.814] [INFO] cheese - inserting 1000 documents. first: Steve Brooks (singer) and last: Magdalene Boat Club +[2018-02-13T08:30:55.854] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:30:55.892] [INFO] cheese - inserting 1000 documents. first: Erik Tammer and last: Category:Maine Supreme Judicial Court +[2018-02-13T08:30:55.899] [INFO] cheese - inserting 1000 documents. first: Heroes (season 4) and last: Susan Earner +[2018-02-13T08:30:55.949] [INFO] cheese - inserting 1000 documents. first: Pericopis modesta and last: Template:Stony Brook Seawolves men's basketball +[2018-02-13T08:30:55.969] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T08:30:56.038] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:30:56.060] [INFO] cheese - inserting 1000 documents. first: Hansenocaris and last: Regional School Unit 57 +[2018-02-13T08:30:56.081] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:30:56.093] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:30:56.180] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:30:56.226] [INFO] cheese - inserting 1000 documents. first: File:KKBS logo.jpg and last: Wikipedia:Articles for deletion/Boeing 797 (2nd nomination) +[2018-02-13T08:30:56.278] [INFO] cheese - inserting 1000 documents. first: QuikAir and last: CD Radio +[2018-02-13T08:30:56.351] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:30:56.497] [INFO] cheese - inserting 1000 documents. first: Rollins, Jack and last: Schottky junction solar cell +[2018-02-13T08:30:56.485] [INFO] cheese - batch complete in: 1.342 secs +[2018-02-13T08:30:56.611] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:30:56.680] [INFO] cheese - inserting 1000 documents. first: Benjamin Kipkoech Limo and last: Sheykh Mahalleh, Amol +[2018-02-13T08:30:56.742] [INFO] cheese - inserting 1000 documents. first: The 45 king and last: Yordim +[2018-02-13T08:30:56.753] [INFO] cheese - inserting 1000 documents. first: Category:University of Guyana and last: Frank Fertitta III +[2018-02-13T08:30:56.768] [INFO] cheese - inserting 1000 documents. first: Bobby Herrera and last: Category:Education in West Baton Rouge Parish, Louisiana +[2018-02-13T08:30:56.772] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:30:56.821] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:30:56.877] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:30:56.919] [INFO] cheese - inserting 1000 documents. first: Category:Wisconsin Badgers women's ice hockey players and last: Matki (earthen pot) +[2018-02-13T08:30:56.926] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:30:57.044] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:30:57.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Hilary of Chichester/archive1 and last: Tuó +[2018-02-13T08:30:57.236] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:30:57.331] [INFO] cheese - inserting 1000 documents. first: 31487 Parthchopra and last: Draft:Dr. Robert M. Shuter +[2018-02-13T08:30:57.399] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:30:57.419] [INFO] cheese - inserting 1000 documents. first: Tiran, Mazandaran and last: Dutch Americans in Michigan +[2018-02-13T08:30:57.487] [INFO] cheese - inserting 1000 documents. first: Marius Lăcătuş and last: United States House of Representatives elections in Tennessee, 1928 +[2018-02-13T08:30:57.500] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:30:57.525] [INFO] cheese - inserting 1000 documents. first: Moon Six and last: Duhem–Quine thesis +[2018-02-13T08:30:57.531] [INFO] cheese - inserting 1000 documents. first: Ding Dong mine and last: City of Sherbrooke +[2018-02-13T08:30:57.585] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:30:57.606] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:30:57.735] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:30:57.856] [INFO] cheese - inserting 1000 documents. first: 1962–63 Austrian football championship and last: Nag Hammâdi +[2018-02-13T08:30:57.867] [INFO] cheese - inserting 1000 documents. first: Élton José Xavier Gomes and last: William Irvine (Scotland) +[2018-02-13T08:30:57.869] [INFO] cheese - inserting 1000 documents. first: USWA and last: A Small Killing +[2018-02-13T08:30:57.903] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:30:57.983] [INFO] cheese - batch complete in: 1.056 secs +[2018-02-13T08:30:58.013] [INFO] cheese - batch complete in: 1.528 secs +[2018-02-13T08:30:58.075] [INFO] cheese - inserting 1000 documents. first: Dr. Robert M. Shuter and last: Regina Russell +[2018-02-13T08:30:58.240] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:30:58.290] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Tennessee, 1934 and last: Ercole Calvi +[2018-02-13T08:30:58.322] [INFO] cheese - inserting 1000 documents. first: File:Signal it left.gif and last: Ralph Wycherley +[2018-02-13T08:30:58.388] [INFO] cheese - inserting 1000 documents. first: Golden Eye: Rogue Agent and last: UEC European Champion jersey +[2018-02-13T08:30:58.482] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:30:58.499] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:30:58.613] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:30:58.804] [INFO] cheese - inserting 1000 documents. first: Tasar and last: Category:Municipalities of Compostela Valley +[2018-02-13T08:30:58.853] [INFO] cheese - inserting 1000 documents. first: Gaja(2008 film) and last: Obruchevichthys +[2018-02-13T08:30:58.895] [INFO] cheese - batch complete in: 1.16 secs +[2018-02-13T08:30:58.925] [INFO] cheese - inserting 1000 documents. first: Smoke Jaguar and last: Category:Politics of Chhattisgarh +[2018-02-13T08:30:58.973] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T08:30:59.111] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:30:59.174] [INFO] cheese - inserting 1000 documents. first: Foolproof plant and last: Category:1975 establishments in Sri Lanka +[2018-02-13T08:30:59.311] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T08:30:59.404] [INFO] cheese - inserting 1000 documents. first: Now Deh-e Harazpey and last: Category:Chinese women philosophers +[2018-02-13T08:30:59.465] [INFO] cheese - inserting 1000 documents. first: Minuscule 511 and last: Charlie Palmer (chef) +[2018-02-13T08:30:59.488] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:30:59.537] [INFO] cheese - inserting 1000 documents. first: Marcelino Vargas and last: E. M. B. Ingram +[2018-02-13T08:30:59.615] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:30:59.667] [INFO] cheese - inserting 1000 documents. first: Andre Leysen and last: Frank Schatzing +[2018-02-13T08:30:59.687] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T08:30:59.736] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:30:59.861] [INFO] cheese - inserting 1000 documents. first: 13775 Thébault and last: Category:Tamil Nadu state legislation +[2018-02-13T08:30:59.878] [INFO] cheese - inserting 1000 documents. first: Alfriston and last: Carl Swartz +[2018-02-13T08:30:59.942] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:31:00.023] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:31:00.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/beatnjuice.cz and last: Robert Wiblin +[2018-02-13T08:31:00.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion requests and last: White separatism +[2018-02-13T08:31:00.116] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Rankin County, Mississippi and last: Anupama chandrasekhar +[2018-02-13T08:31:00.196] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:31:00.228] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:31:00.264] [INFO] cheese - inserting 1000 documents. first: Celtic Woman: Songs From The Heart and last: Dyckia saxatilis +[2018-02-13T08:31:00.281] [INFO] cheese - batch complete in: 2.268 secs +[2018-02-13T08:31:00.379] [INFO] cheese - inserting 1000 documents. first: Frank Worndl and last: Category:New Zealand field hockey biography stubs +[2018-02-13T08:31:00.431] [INFO] cheese - inserting 1000 documents. first: Gökçe, Kahta and last: File:It Ain't Me Babe Johnny Cash June Carter.ogg +[2018-02-13T08:31:00.437] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:31:00.468] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:31:00.617] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:31:00.847] [INFO] cheese - inserting 1000 documents. first: John II, Count of Blois and last: Seccession +[2018-02-13T08:31:00.872] [INFO] cheese - inserting 1000 documents. first: 2916 Voronveliya and last: Template:Bulgaria in World War I +[2018-02-13T08:31:00.973] [INFO] cheese - inserting 1000 documents. first: Alexander Harper (priest) and last: Green Man Fest +[2018-02-13T08:31:00.993] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:31:00.995] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:31:01.103] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ciro Ayala and last: File:Pronto Airways Logo.gif +[2018-02-13T08:31:01.163] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T08:31:01.222] [INFO] cheese - inserting 1000 documents. first: Rust-eze and last: Wikipedia:Worldwide view +[2018-02-13T08:31:01.276] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:31:01.349] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:31:01.431] [INFO] cheese - inserting 1000 documents. first: Nadeem (actor) and last: Wikipedia:WikiProject Spam/LinkReports/astrovashikaran.com +[2018-02-13T08:31:01.585] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:31:01.690] [INFO] cheese - inserting 1000 documents. first: Captured Live at Carnegie Hall and last: Longford, Gloucester +[2018-02-13T08:31:01.819] [INFO] cheese - batch complete in: 1.623 secs +[2018-02-13T08:31:01.918] [INFO] cheese - inserting 1000 documents. first: WCRS and last: Talbut +[2018-02-13T08:31:01.953] [INFO] cheese - inserting 1000 documents. first: Gunther Bechem and last: Wikipedia:Reference desk/Archives/Computing/2007 January 29 +[2018-02-13T08:31:02.050] [INFO] cheese - batch complete in: 1.054 secs +[2018-02-13T08:31:02.138] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:31:02.146] [INFO] cheese - inserting 1000 documents. first: Lorton (VA) and last: The Crusades (film) +[2018-02-13T08:31:02.156] [INFO] cheese - inserting 1000 documents. first: Over the Rainbow and last: Wikipedia:Historical archive/Imported pictures/Pictures from southwarkphotolibrary.co.uk details +[2018-02-13T08:31:02.185] [INFO] cheese - inserting 1000 documents. first: Mora (fish) and last: Atherton Church House +[2018-02-13T08:31:02.295] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:31:02.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/astrovashikaran.com and last: Category:Austro-Hungarian fighter aircraft 1910–1919 +[2018-02-13T08:31:02.346] [INFO] cheese - inserting 1000 documents. first: Speedway Casino and last: HeSung +[2018-02-13T08:31:02.361] [INFO] cheese - inserting 1000 documents. first: Torodora characteris and last: 30061 Vishnushankar +[2018-02-13T08:31:02.382] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:31:02.451] [INFO] cheese - batch complete in: 2.169 secs +[2018-02-13T08:31:02.539] [INFO] cheese - batch complete in: 1.375 secs +[2018-02-13T08:31:02.616] [INFO] cheese - batch complete in: 1.34 secs +[2018-02-13T08:31:02.697] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:31:02.849] [INFO] cheese - inserting 1000 documents. first: Geometric isomerase and last: Category:Operating system criticisms +[2018-02-13T08:31:03.010] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:31:03.135] [INFO] cheese - inserting 1000 documents. first: Johannes Jonsson and last: University of Pittsburgh Graduate School of Public & International Affairs (GSPIA) +[2018-02-13T08:31:03.222] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T08:31:03.272] [INFO] cheese - inserting 1000 documents. first: Program in Placebo Studies and last: Ciaran Gribbin +[2018-02-13T08:31:03.328] [INFO] cheese - inserting 1000 documents. first: Tuoba Liwei and last: 1784 in art +[2018-02-13T08:31:03.353] [INFO] cheese - inserting 1000 documents. first: Sipenit and last: Category:Start-Class Karachi articles +[2018-02-13T08:31:03.409] [INFO] cheese - inserting 1000 documents. first: Microsoft Corp. v Commission of the European Communities and last: Farmingdale, South Dakota +[2018-02-13T08:31:03.486] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:31:03.502] [INFO] cheese - batch complete in: 1.206 secs +[2018-02-13T08:31:03.508] [INFO] cheese - inserting 1000 documents. first: File:Jonny Logan.jpg and last: Thomas Elliot (disambiguation) +[2018-02-13T08:31:03.510] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:31:03.632] [INFO] cheese - batch complete in: 0.935 secs +[2018-02-13T08:31:03.686] [INFO] cheese - inserting 1000 documents. first: Āsoār and last: Template:POTD protected/2008-05-20 +[2018-02-13T08:31:03.669] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:31:03.847] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:31:04.076] [INFO] cheese - inserting 1000 documents. first: Template:Kalmar County and last: Hilltop Youth +[2018-02-13T08:31:04.126] [INFO] cheese - inserting 1000 documents. first: Atatürk Kültür Merkezi and last: Template:Dutch municipality Coevorden +[2018-02-13T08:31:04.197] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:31:04.207] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Karachi articles and last: Wikipedia:Articles for deletion/If You Feel My Love (album) +[2018-02-13T08:31:04.209] [INFO] cheese - batch complete in: 1.758 secs +[2018-02-13T08:31:04.227] [INFO] cheese - inserting 1000 documents. first: Sevel HaYerushah and last: Christiana Louizu +[2018-02-13T08:31:04.239] [INFO] cheese - inserting 1000 documents. first: Poincaré–Einstein synchronization and last: Category:United States House of Representatives elections, 1908 +[2018-02-13T08:31:04.284] [INFO] cheese - inserting 1000 documents. first: Sunday Mail and last: Josiah Quincy (disambiguation) +[2018-02-13T08:31:04.304] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:31:04.302] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:31:04.318] [INFO] cheese - inserting 1000 documents. first: United States federal government shutdowns of 1995–96 and last: A Coney Island Princess +[2018-02-13T08:31:04.346] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:31:04.420] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:31:04.495] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:31:04.565] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2008-05-21 and last: Bowling Green, KY Metropolitan Area +[2018-02-13T08:31:04.719] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:31:04.897] [INFO] cheese - inserting 1000 documents. first: Bediagal and last: Mg road bangalore +[2018-02-13T08:31:04.927] [INFO] cheese - inserting 1000 documents. first: File:GPL front gate added by Saurabhsulabh Singh.jpeg and last: List of television programs: E +[2018-02-13T08:31:04.997] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:31:05.090] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:31:05.230] [INFO] cheese - inserting 1000 documents. first: Manu Guix and last: Billy Best +[2018-02-13T08:31:05.269] [INFO] cheese - inserting 1000 documents. first: Springfield High School (Akron, Ohio) and last: United States House of Representatives elections in Minnesota, 1940 +[2018-02-13T08:31:05.315] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:31:05.379] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Montgomery County, Ohio and last: Stephen Jackson (canoer) +[2018-02-13T08:31:05.384] [INFO] cheese - inserting 1000 documents. first: Bowling Green, KY metropolitan area and last: Katie Sierra +[2018-02-13T08:31:05.415] [INFO] cheese - inserting 1000 documents. first: Chocolate Starfish And The Hot Dog Flavored Water and last: Category:Danish archers +[2018-02-13T08:31:05.416] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T08:31:05.498] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:31:05.494] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:31:05.513] [INFO] cheese - inserting 1000 documents. first: Belgorod and last: Empetrum +[2018-02-13T08:31:05.561] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T08:31:05.722] [INFO] cheese - batch complete in: 1.512 secs +[2018-02-13T08:31:05.731] [INFO] cheese - inserting 1000 documents. first: Ali Nassirian and last: Teleki Pál +[2018-02-13T08:31:05.747] [INFO] cheese - inserting 1000 documents. first: Lymphatic systems and last: Papilla duodeni +[2018-02-13T08:31:05.854] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:31:05.873] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:31:06.032] [INFO] cheese - inserting 1000 documents. first: Transformers: The War for Cybertron and last: Template:Humanist Party (Chile)/meta/color +[2018-02-13T08:31:06.066] [INFO] cheese - inserting 1000 documents. first: Template:Video game awards and last: Lamarun +[2018-02-13T08:31:06.087] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:31:06.142] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:31:06.171] [INFO] cheese - inserting 1000 documents. first: Sheep Pool and last: 5031 Švejcar +[2018-02-13T08:31:06.244] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:31:06.403] [INFO] cheese - inserting 1000 documents. first: Jonas Svensson (bandy) and last: Cesar Chavez State Park +[2018-02-13T08:31:06.449] [INFO] cheese - inserting 1000 documents. first: Sergey Miroshnichenko (ice hockey) and last: Trudl Dubsky +[2018-02-13T08:31:06.459] [INFO] cheese - inserting 1000 documents. first: Category:Danish table tennis players and last: File:CBDTSVsth.jpg +[2018-02-13T08:31:06.499] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:31:06.612] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:31:06.615] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Minnesota, 1942 and last: Template:Latter Day Saint biography/Spencer W. Kimball +[2018-02-13T08:31:06.656] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:31:06.697] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T08:31:06.858] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Image Tag Team and last: Indiana University – Purdue University Indianapolis +[2018-02-13T08:31:06.869] [INFO] cheese - inserting 1000 documents. first: Template:Independent Democratic Union/meta/color and last: Serrolândia +[2018-02-13T08:31:06.916] [INFO] cheese - inserting 1000 documents. first: File:Chiquititas-2013-logo-2013.jpg and last: Pija Kola +[2018-02-13T08:31:06.950] [INFO] cheese - inserting 1000 documents. first: Karl Max, Fürst von Lichnowsky and last: Rieko Matsuura +[2018-02-13T08:31:06.962] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:31:06.981] [INFO] cheese - batch complete in: 1.259 secs +[2018-02-13T08:31:07.057] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:31:07.134] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:31:07.138] [INFO] cheese - inserting 1000 documents. first: MTech and last: 1734 in poetry +[2018-02-13T08:31:07.252] [INFO] cheese - inserting 1000 documents. first: RXNO and last: Sara Annie Burstall +[2018-02-13T08:31:07.267] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:31:07.368] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:31:07.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/HMS Duke of Edinburgh and last: Stittsville station +[2018-02-13T08:31:07.714] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:31:07.828] [INFO] cheese - inserting 1000 documents. first: Qadi Kola, Babol and last: Eilema erythropleura +[2018-02-13T08:31:07.857] [INFO] cheese - inserting 1000 documents. first: Cadaley and last: (100044) 1991 TX +[2018-02-13T08:31:08.016] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:31:08.061] [INFO] cheese - inserting 1000 documents. first: C. harold smith and last: File:The new lot 160.jpg +[2018-02-13T08:31:08.127] [INFO] cheese - batch complete in: 1.43 secs +[2018-02-13T08:31:08.234] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T08:31:08.480] [INFO] cheese - inserting 1000 documents. first: Várzea do Poço and last: Sensitisers +[2018-02-13T08:31:08.495] [INFO] cheese - inserting 1000 documents. first: Windham High School (Ohio) and last: File:Citycreek.jpg +[2018-02-13T08:31:08.553] [INFO] cheese - batch complete in: 1.591 secs +[2018-02-13T08:31:08.593] [INFO] cheese - inserting 1000 documents. first: Saproscincus galli and last: PE teacher +[2018-02-13T08:31:08.674] [INFO] cheese - inserting 1000 documents. first: Casa Cosmana Navarra and last: The Journey Home (book) +[2018-02-13T08:31:08.717] [INFO] cheese - batch complete in: 1.449 secs +[2018-02-13T08:31:08.741] [INFO] cheese - inserting 1000 documents. first: Indiana University Purdue University at Indianapolis and last: Thousand islands dressing +[2018-02-13T08:31:08.799] [INFO] cheese - batch complete in: 1.431 secs +[2018-02-13T08:31:08.823] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:31:09.031] [INFO] cheese - batch complete in: 2.05 secs +[2018-02-13T08:31:09.199] [INFO] cheese - inserting 1000 documents. first: File:Our Gracie.jpeg and last: KDE Contour +[2018-02-13T08:31:09.341] [INFO] cheese - inserting 1000 documents. first: Donald James Randall and last: EV Lacertae +[2018-02-13T08:31:09.359] [INFO] cheese - batch complete in: 1.232 secs +[2018-02-13T08:31:09.413] [INFO] cheese - inserting 1000 documents. first: Neko Case and her Boyfriends and last: Hapag +[2018-02-13T08:31:09.476] [INFO] cheese - batch complete in: 1.242 secs +[2018-02-13T08:31:09.726] [INFO] cheese - inserting 1000 documents. first: Giorgi Kilasonia and last: Wikipedia:Articles for deletion/Virtual Dispatch +[2018-02-13T08:31:09.763] [INFO] cheese - inserting 1000 documents. first: Candy Lachance and last: Jeremy Erhart +[2018-02-13T08:31:09.780] [INFO] cheese - inserting 1000 documents. first: Aliénor D'aquitaine and last: Al Kaleh +[2018-02-13T08:31:09.805] [INFO] cheese - batch complete in: 2.091 secs +[2018-02-13T08:31:09.831] [INFO] cheese - batch complete in: 1.113 secs +[2018-02-13T08:31:09.903] [INFO] cheese - inserting 1000 documents. first: Category:2 star officers of the Bundeswehr and last: Maecky Ngombo +[2018-02-13T08:31:09.966] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:31:09.998] [INFO] cheese - batch complete in: 1.445 secs +[2018-02-13T08:31:10.162] [INFO] cheese - batch complete in: 1.363 secs +[2018-02-13T08:31:10.385] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Self-portrait with a friend and last: Trial of Doctor Conrad Murray +[2018-02-13T08:31:10.479] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:31:10.558] [INFO] cheese - inserting 1000 documents. first: Raymond Murray (speed skater) and last: Hypatius of Gangra +[2018-02-13T08:31:10.655] [INFO] cheese - batch complete in: 1.179 secs +[2018-02-13T08:31:10.807] [INFO] cheese - inserting 1000 documents. first: Category:Former communes of Haut-Rhin and last: File:The Death of Bessie Smith by Rose Piper, 1947.jpg +[2018-02-13T08:31:10.850] [INFO] cheese - inserting 1000 documents. first: HAPAG and last: GE Dash 8-32BWH +[2018-02-13T08:31:10.967] [INFO] cheese - inserting 1000 documents. first: Manchester Township, Boone County, Illinois and last: Photo 51 +[2018-02-13T08:31:10.989] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:31:11.012] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Rwanda and last: Water Management Areas +[2018-02-13T08:31:11.051] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T08:31:11.126] [INFO] cheese - inserting 1000 documents. first: Dizeh Posht and last: Faac +[2018-02-13T08:31:11.130] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:31:11.144] [INFO] cheese - batch complete in: 1.313 secs +[2018-02-13T08:31:11.248] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T08:31:11.301] [INFO] cheese - inserting 1000 documents. first: Anton Ens and last: File:LiverpoolNSWmap.jpg +[2018-02-13T08:31:11.363] [INFO] cheese - inserting 1000 documents. first: Random oracle model and last: Battle of Savo Island +[2018-02-13T08:31:11.396] [INFO] cheese - inserting 1000 documents. first: Kweku Adoboli and last: File:Cyborg JLA.jpg +[2018-02-13T08:31:11.465] [INFO] cheese - inserting 1000 documents. first: Association des Oulémas Musulmans Algériens and last: Flattened Meadow-grass +[2018-02-13T08:31:11.472] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:31:11.475] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:31:11.580] [INFO] cheese - batch complete in: 2.549 secs +[2018-02-13T08:31:11.599] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:31:11.775] [INFO] cheese - inserting 1000 documents. first: Plasq and last: Primera Divison Argentina +[2018-02-13T08:31:11.777] [INFO] cheese - inserting 1000 documents. first: 1988 Singapore Open – Doubles (women's tennis) and last: Wikipedia:Articles for deletion/Netty Leek +[2018-02-13T08:31:11.849] [INFO] cheese - inserting 1000 documents. first: Dirty Pop Fantasy and last: Category:1981–82 Sun Belt Conference men's basketball season +[2018-02-13T08:31:11.866] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:31:11.879] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:31:11.949] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:31:11.956] [INFO] cheese - inserting 1000 documents. first: Moelln (Schleswig-Holstein) and last: CDGVAL +[2018-02-13T08:31:11.958] [INFO] cheese - inserting 1000 documents. first: Gomponsom Department and last: Choshuenco +[2018-02-13T08:31:12.024] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Panola County, Mississippi and last: 1971 VFA Grand Final +[2018-02-13T08:31:12.024] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:31:12.069] [INFO] cheese - inserting 1000 documents. first: Category:400s BC by continent and last: File:Ohel - interior.jpg +[2018-02-13T08:31:12.073] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:31:12.118] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:31:12.137] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:31:12.315] [INFO] cheese - inserting 1000 documents. first: David Aldus and last: Churchill UK +[2018-02-13T08:31:12.352] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:31:12.358] [INFO] cheese - inserting 1000 documents. first: Category:1982–83 Sun Belt Conference men's basketball season and last: Photobombed +[2018-02-13T08:31:12.380] [INFO] cheese - inserting 1000 documents. first: Twin Valley South High School and last: File:Las americas sunset.JPG +[2018-02-13T08:31:12.419] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:31:12.454] [INFO] cheese - inserting 1000 documents. first: Template:Annotated image/doc and last: Utah State Route 69 (pre-1977) +[2018-02-13T08:31:12.454] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:31:12.516] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T08:31:12.537] [INFO] cheese - inserting 1000 documents. first: Category:Embry–Riddle Aeronautical University and last: Mirte Kraaijkamp +[2018-02-13T08:31:12.558] [INFO] cheese - inserting 1000 documents. first: USS Conner (DD-582) and last: Wikipedia:Articles for deletion/Eurotophobia +[2018-02-13T08:31:12.589] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T08:31:12.619] [INFO] cheese - inserting 1000 documents. first: O. Y. Schmidt and last: Vespiri Siciliani +[2018-02-13T08:31:12.627] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:31:12.673] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:31:12.763] [INFO] cheese - inserting 1000 documents. first: Lockheed TR-1 and last: Orange box +[2018-02-13T08:31:12.775] [INFO] cheese - inserting 1000 documents. first: Template:S-line/VGF left/U3 and last: Pu'apu'a +[2018-02-13T08:31:12.826] [INFO] cheese - inserting 1000 documents. first: Photobomber and last: Category:Cities and towns in Ramabai Nagar district +[2018-02-13T08:31:12.868] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:31:12.873] [INFO] cheese - batch complete in: 1.292 secs +[2018-02-13T08:31:12.914] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T08:31:12.925] [INFO] cheese - inserting 1000 documents. first: Utah State Route 69 (1977) and last: Jarrod O'Donnell +[2018-02-13T08:31:12.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fashion.about.com and last: King, Andrew +[2018-02-13T08:31:13.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Yaacov Deyo and last: Maouloud Baby v. State +[2018-02-13T08:31:13.050] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T08:31:13.056] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:31:13.206] [INFO] cheese - inserting 1000 documents. first: Bela dama Devinska and last: 1999 World Indoor Championships in Athletics – Men's 60 metres +[2018-02-13T08:31:13.232] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:31:13.247] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:31:13.383] [INFO] cheese - inserting 1000 documents. first: Mayor of Munich and last: Gunnamatta Bay +[2018-02-13T08:31:13.437] [INFO] cheese - inserting 1000 documents. first: 1980 TANFL season and last: Picoazà +[2018-02-13T08:31:13.460] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:31:13.483] [INFO] cheese - inserting 1000 documents. first: King, Ben and last: Doppels +[2018-02-13T08:31:13.494] [INFO] cheese - inserting 1000 documents. first: LP (Insomniac Folklore album) and last: Accelerando (novel) +[2018-02-13T08:31:13.535] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:31:13.607] [INFO] cheese - inserting 1000 documents. first: File:Dr. Who Cushing.jpg and last: Wikipedia:Editor review/Bob the Wikipedian +[2018-02-13T08:31:13.617] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:31:13.637] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:31:13.695] [INFO] cheese - inserting 1000 documents. first: 1999 IAAF World Indoor Championships in Athletics – Men's 60 metres and last: File:Logo Twibbon.png +[2018-02-13T08:31:13.738] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:31:13.815] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:31:14.066] [INFO] cheese - inserting 1000 documents. first: Group 12 element and last: Albert Woolson +[2018-02-13T08:31:14.142] [INFO] cheese - inserting 1000 documents. first: Angela Salvagno and last: Category:Phi Kappa Tau +[2018-02-13T08:31:14.179] [INFO] cheese - inserting 1000 documents. first: Sir Bors de Ganis and last: Category:Lakes of Pennsylvania +[2018-02-13T08:31:14.185] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Rahul Thakkar and last: File:Gonzo the Great.jpg +[2018-02-13T08:31:14.199] [INFO] cheese - inserting 1000 documents. first: Scenic Cruiser and last: Flammulaster erinaceellus +[2018-02-13T08:31:14.218] [INFO] cheese - batch complete in: 1.344 secs +[2018-02-13T08:31:14.251] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:31:14.317] [INFO] cheese - inserting 1000 documents. first: × Ortholarium 'Hades' and last: Muscat rouge à petits grains +[2018-02-13T08:31:14.325] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:31:14.374] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:31:14.386] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:31:14.475] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Montreal and last: File:Maj Gen K Zorawar Singh.jpg +[2018-02-13T08:31:14.490] [INFO] cheese - inserting 1000 documents. first: Luqiao Airport and last: Antrostomus arizonae +[2018-02-13T08:31:14.492] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:31:14.563] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T08:31:14.581] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:31:14.721] [INFO] cheese - inserting 1000 documents. first: School Mates and last: Wikipedia:Alternative term +[2018-02-13T08:31:14.764] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:31:14.899] [INFO] cheese - inserting 1000 documents. first: Half-Wit and last: Mobilome +[2018-02-13T08:31:14.971] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:31:14.996] [INFO] cheese - inserting 1000 documents. first: Diabetic angiopathy and last: Wikipedia:Articles for deletion/Revelation 4:11 +[2018-02-13T08:31:15.029] [INFO] cheese - inserting 1000 documents. first: International Association of Financial Executives Institutes and last: KOI-94 +[2018-02-13T08:31:15.071] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:31:15.087] [INFO] cheese - inserting 1000 documents. first: Coleophora ochripennella: and last: Ayloffe (surname) +[2018-02-13T08:31:15.110] [INFO] cheese - inserting 1000 documents. first: Guy Giorno and last: Boeing 707-300 +[2018-02-13T08:31:15.122] [INFO] cheese - inserting 1000 documents. first: Larisa Krivtsova and last: Price, Walter +[2018-02-13T08:31:15.124] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:31:15.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DenyHosts and last: Milhã +[2018-02-13T08:31:15.176] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T08:31:15.261] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:31:15.299] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:31:15.377] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:31:15.616] [INFO] cheese - inserting 1000 documents. first: Skew form and last: Michaël Isabey +[2018-02-13T08:31:15.632] [INFO] cheese - inserting 1000 documents. first: Chitterlings and last: Platanista Gangetica +[2018-02-13T08:31:15.703] [INFO] cheese - inserting 1000 documents. first: Rea, Walter and last: Dehar Hydroelectric Project +[2018-02-13T08:31:15.730] [INFO] cheese - inserting 1000 documents. first: Taiwan Sugar Museum (Kaohsiung) and last: Crush (Haven) +[2018-02-13T08:31:15.744] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:31:15.763] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:31:15.805] [INFO] cheese - batch complete in: 1.587 secs +[2018-02-13T08:31:15.861] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:31:15.904] [INFO] cheese - inserting 1000 documents. first: Gaston casas and last: Qasr el-sir +[2018-02-13T08:31:15.928] [INFO] cheese - inserting 1000 documents. first: Valters and Kazha and last: R.D.Winters +[2018-02-13T08:31:15.993] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:31:15.999] [INFO] cheese - inserting 1000 documents. first: Ventricular septum and last: Southern Pacific class GS-4 +[2018-02-13T08:31:16.089] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:31:16.101] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T08:31:16.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Industrial design/Header and last: Aichi S1A +[2018-02-13T08:31:16.331] [INFO] cheese - inserting 1000 documents. first: File:Live223.jpg and last: Vitebskaya +[2018-02-13T08:31:16.333] [INFO] cheese - inserting 1000 documents. first: Yanping Yuan and last: Thomas Busby (disambiguation) +[2018-02-13T08:31:16.340] [INFO] cheese - inserting 1000 documents. first: Last Shot (Gregg Hurwitz novel) and last: Chatelain, Jeremy +[2018-02-13T08:31:16.415] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:31:16.523] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:31:16.603] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:31:16.610] [INFO] cheese - inserting 1000 documents. first: Tva and last: Category:Establishments in Turkmenistan by decade +[2018-02-13T08:31:16.629] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:31:16.657] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Joinville and last: Wikipedia:WikiProject Cricket/Peer review/The Ashes +[2018-02-13T08:31:16.765] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:31:16.798] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:31:16.996] [INFO] cheese - inserting 1000 documents. first: Technion University and last: Bendezium +[2018-02-13T08:31:17.101] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:31:17.114] [INFO] cheese - inserting 1000 documents. first: Jack Nelson (disambiguation) and last: Ben L. Parker +[2018-02-13T08:31:17.187] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:31:17.196] [INFO] cheese - inserting 1000 documents. first: Enrique Amorim and last: Wikipedia:Selected anniversaries/July 3 +[2018-02-13T08:31:17.206] [INFO] cheese - inserting 1000 documents. first: Hayes, Jeremy and last: Bartlett, Jason +[2018-02-13T08:31:17.230] [INFO] cheese - inserting 1000 documents. first: Électre (opera) and last: Argyros family +[2018-02-13T08:31:17.280] [INFO] cheese - inserting 1000 documents. first: Portal:Napoleonic Wars/GA/85 and last: James & Oliver Phelps +[2018-02-13T08:31:17.326] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:31:17.331] [INFO] cheese - batch complete in: 1.525 secs +[2018-02-13T08:31:17.359] [INFO] cheese - inserting 1000 documents. first: Wohlk brothers and last: Category:People from Willenhall +[2018-02-13T08:31:17.363] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:31:17.405] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:31:17.423] [INFO] cheese - inserting 1000 documents. first: BeRTOS and last: Agias +[2018-02-13T08:31:17.486] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:31:17.552] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:31:17.787] [INFO] cheese - inserting 1000 documents. first: Donald M. Davis and last: File:Feelingb-grunundblaubig.jpg +[2018-02-13T08:31:17.844] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-11-20 and last: List of Polish artists nominated for MTV Europe Music Awards +[2018-02-13T08:31:17.848] [INFO] cheese - inserting 1000 documents. first: Blair, Jason and last: Barrowammo +[2018-02-13T08:31:17.849] [INFO] cheese - inserting 1000 documents. first: Supergate and last: Sakaki (disambiguation) +[2018-02-13T08:31:17.850] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:31:17.944] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:31:17.953] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:31:17.999] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:31:18.166] [INFO] cheese - inserting 1000 documents. first: File:Cockroaches.ogg and last: File:Malolos Santor.jpg +[2018-02-13T08:31:18.285] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:31:18.396] [INFO] cheese - inserting 1000 documents. first: Janet Perry and last: Mohanpur Upazila +[2018-02-13T08:31:18.519] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:31:18.548] [INFO] cheese - inserting 1000 documents. first: Category:1830s in the Papal States and last: Template:Schools managed by GEMS Education +[2018-02-13T08:31:18.595] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:31:18.618] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Selected anniversaries/July 4 and last: Italo-Ethiopian War +[2018-02-13T08:31:18.642] [INFO] cheese - inserting 1000 documents. first: Joshua Silva and last: Gimeracil/tegafur/oteracil +[2018-02-13T08:31:18.695] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:31:18.706] [INFO] cheese - batch complete in: 1.375 secs +[2018-02-13T08:31:18.762] [INFO] cheese - inserting 1000 documents. first: Sympetrum internum and last: Itupiranga +[2018-02-13T08:31:18.878] [INFO] cheese - inserting 1000 documents. first: Frances Margaret Taylor and last: Cedric Wallace +[2018-02-13T08:31:18.899] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:31:18.940] [INFO] cheese - inserting 1000 documents. first: Marie Collier and last: Iris Taylor +[2018-02-13T08:31:18.996] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:31:19.065] [INFO] cheese - inserting 1000 documents. first: Laal Rang and last: Category:Years of the 13th century in the Republic of Florence +[2018-02-13T08:31:19.098] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T08:31:19.149] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:31:19.326] [INFO] cheese - inserting 1000 documents. first: Gimeracil/oteracil/tegafur and last: Ayasli Ismail Pasa +[2018-02-13T08:31:19.333] [INFO] cheese - inserting 1000 documents. first: File:Maglev Propulsion.png and last: Chill (casting) +[2018-02-13T08:31:19.438] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:31:19.457] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:31:19.579] [INFO] cheese - inserting 1000 documents. first: Jacundá and last: Wikipedia:WikiProject Spam/LinkReports/navadurga.wordpress.com +[2018-02-13T08:31:19.679] [INFO] cheese - inserting 1000 documents. first: Cyberjustice and last: 1989–90 Connecticut Huskies men's basketball team +[2018-02-13T08:31:19.664] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:31:19.757] [INFO] cheese - inserting 1000 documents. first: Conn smythe trophy and last: File:Ruda-Stemma.jpg +[2018-02-13T08:31:19.806] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:31:19.942] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:31:19.994] [INFO] cheese - inserting 1000 documents. first: File:Luteplayer,Caravaggio,detail.jpg and last: Colby Mitchell Chester +[2018-02-13T08:31:20.096] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:31:20.261] [INFO] cheese - inserting 1000 documents. first: Nişancı İsmail Kemalettin Pasha and last: Jaddy Simai Jaddy +[2018-02-13T08:31:20.271] [INFO] cheese - inserting 1000 documents. first: Hinduism in Greece and last: Template:GAReview +[2018-02-13T08:31:20.344] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:31:20.351] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:31:20.483] [INFO] cheese - inserting 1000 documents. first: Mosimanegape Ramoshibidu and last: Barulaganye Bolofete +[2018-02-13T08:31:20.485] [INFO] cheese - inserting 1000 documents. first: South American Plate and last: Historical Jesus +[2018-02-13T08:31:20.535] [INFO] cheese - inserting 1000 documents. first: Modest Aronstam and last: UK citizen +[2018-02-13T08:31:20.621] [INFO] cheese - batch complete in: 0.957 secs +[2018-02-13T08:31:20.641] [INFO] cheese - batch complete in: 1.935 secs +[2018-02-13T08:31:20.683] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:31:21.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OLD and last: Blue Sky Green Field Wind Energy Center +[2018-02-13T08:31:21.029] [INFO] cheese - inserting 1000 documents. first: Kate and Kacey Coppola and last: Farm Road 769 +[2018-02-13T08:31:21.039] [INFO] cheese - inserting 1000 documents. first: Negotiable Order of Withdrawal and last: Neal Potter +[2018-02-13T08:31:21.045] [INFO] cheese - inserting 1000 documents. first: Coelostathma contigua and last: File:Chinnor rfc logo.png +[2018-02-13T08:31:21.084] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/June 3 and last: Timothy D. Bellavia +[2018-02-13T08:31:21.091] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:31:21.119] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:31:21.179] [INFO] cheese - inserting 1000 documents. first: 180th Motor Rifle Division and last: E. Otis Kendall +[2018-02-13T08:31:21.131] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:31:21.188] [INFO] cheese - batch complete in: 3.783 secs +[2018-02-13T08:31:21.207] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:31:21.236] [INFO] cheese - inserting 1000 documents. first: List of United Nations Security Council Resolutions 1901 to 2000 and last: File:In The Key Of Night album cover.jpg +[2018-02-13T08:31:21.336] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:31:21.418] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:31:21.752] [INFO] cheese - inserting 1000 documents. first: Niala, Iran and last: Wikipedia:Copyright problems/2013 November 5 +[2018-02-13T08:31:21.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chris Cafero and last: County Road 51 (Anoka County, Minnesota) +[2018-02-13T08:31:21.824] [INFO] cheese - inserting 1000 documents. first: Breezeway and last: Brush-tailed Marsupial Rat +[2018-02-13T08:31:21.845] [INFO] cheese - inserting 1000 documents. first: Saint-Constant station and last: 2005 Guangzhou International Women's Open – Singles +[2018-02-13T08:31:21.918] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:31:21.923] [INFO] cheese - inserting 1000 documents. first: Muhammad Khantumani and last: Category:Pizza chains +[2018-02-13T08:31:21.958] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:31:21.989] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:31:22.026] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:31:22.110] [INFO] cheese - inserting 1000 documents. first: Category:Category-Class Rufus Wainwright articles and last: Benhar, New Zealand +[2018-02-13T08:31:22.116] [INFO] cheese - inserting 1000 documents. first: List of villains and ghosts in Danny Phantom and last: Steppingstone assumption +[2018-02-13T08:31:22.171] [INFO] cheese - inserting 1000 documents. first: Rod Smart and last: Two Knights defence +[2018-02-13T08:31:22.168] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:31:22.276] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:31:22.308] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:31:22.389] [INFO] cheese - batch complete in: 1.747 secs +[2018-02-13T08:31:22.676] [INFO] cheese - inserting 1000 documents. first: Gentile Zanardi and last: DIBP (disambiguation) +[2018-02-13T08:31:22.721] [INFO] cheese - inserting 1000 documents. first: Talam and last: Paul Nowak +[2018-02-13T08:31:22.747] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:31:22.804] [INFO] cheese - inserting 1000 documents. first: Iraq Institute for Strategic Studies and last: Glycoside hydrolase family 77 +[2018-02-13T08:31:22.867] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:31:22.880] [INFO] cheese - inserting 1000 documents. first: Crest-Tailed Marsupial Rat and last: FK Cukaricki Stankom +[2018-02-13T08:31:22.897] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:31:22.928] [INFO] cheese - inserting 1000 documents. first: Communications in Contemporary Mathematics and last: Wikipedia:Articles for deletion/Exun +[2018-02-13T08:31:22.988] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:31:23.081] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:31:23.108] [INFO] cheese - inserting 1000 documents. first: Jamie-San and last: Herman Finkers +[2018-02-13T08:31:23.201] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:31:23.404] [INFO] cheese - inserting 1000 documents. first: List of number-one singles of 1960 (France) and last: 2004 BNP Paribas Masters +[2018-02-13T08:31:23.419] [INFO] cheese - inserting 1000 documents. first: Oregon Masonic Lodge (Wisconsin) and last: Khowrshidabad +[2018-02-13T08:31:23.426] [INFO] cheese - inserting 1000 documents. first: Prefiguration (disambiguation) and last: Category:Establishments in Libya +[2018-02-13T08:31:23.436] [INFO] cheese - inserting 1000 documents. first: EC Pfaffenhofen and last: Kladas, Greece +[2018-02-13T08:31:23.477] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:31:23.482] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:31:23.484] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:31:23.519] [INFO] cheese - batch complete in: 1.351 secs +[2018-02-13T08:31:23.582] [INFO] cheese - inserting 1000 documents. first: Two Knights Defence and last: Irenism +[2018-02-13T08:31:23.610] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Amy rubio and last: 2006 PDL season +[2018-02-13T08:31:23.619] [INFO] cheese - inserting 1000 documents. first: Disney Cinemagic +1 and last: Template:W-FAQ/Helpme +[2018-02-13T08:31:23.687] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:31:23.703] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:31:23.741] [INFO] cheese - batch complete in: 1.352 secs +[2018-02-13T08:31:23.963] [INFO] cheese - inserting 1000 documents. first: Johann Friedrich Eschscholtz and last: List of classes of the Bundesmarine and Deutsche Marine +[2018-02-13T08:31:23.978] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by B.o.B and last: My Lucky Day (Scrubs) +[2018-02-13T08:31:24.022] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:31:24.025] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:31:24.047] [INFO] cheese - inserting 1000 documents. first: Elinda Rademeyer and last: Elm River (South Dakota) +[2018-02-13T08:31:24.092] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sophie Louise Bay and last: Tennessee State Route 351 +[2018-02-13T08:31:24.196] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:31:24.201] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:31:24.237] [INFO] cheese - inserting 1000 documents. first: Category:Politburo of the Central Committee of the Communist Party of the Soviet Union members and last: Dr. Mario Soares +[2018-02-13T08:31:24.348] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:31:24.373] [INFO] cheese - inserting 1000 documents. first: Tochihara Station and last: Robert Ortiz (gridiron football) +[2018-02-13T08:31:24.389] [INFO] cheese - inserting 1000 documents. first: Africanus, Sextus Julius and last: Jarosite +[2018-02-13T08:31:24.436] [INFO] cheese - inserting 1000 documents. first: Mercy Njoroge and last: Wikipedia:Articles for deletion/Jim Lynch (Survivor) +[2018-02-13T08:31:24.456] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:31:24.506] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:31:24.558] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:31:24.766] [INFO] cheese - inserting 1000 documents. first: Desert gum and last: 9415 Yujiokimura +[2018-02-13T08:31:24.781] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Danny Howard and last: Re Ng Extradition +[2018-02-13T08:31:24.875] [INFO] cheese - inserting 1000 documents. first: Pima indian and last: Bill DeSteph +[2018-02-13T08:31:24.953] [INFO] cheese - inserting 1000 documents. first: Category:German patrol aircraft 1940–1949 and last: Claire McLean +[2018-02-13T08:31:24.955] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:31:24.987] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:31:25.032] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:31:25.063] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:31:25.138] [INFO] cheese - inserting 1000 documents. first: Template:Lebanon-singer-stub and last: Wikipedia:Articles for deletion/Daryl Youngblood +[2018-02-13T08:31:25.266] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:31:25.343] [INFO] cheese - inserting 1000 documents. first: Giovanni Balbi and last: Template:MOTD Barnstar +[2018-02-13T08:31:25.418] [INFO] cheese - inserting 1000 documents. first: Federalna Televizija and last: 2 Tone (genre) +[2018-02-13T08:31:25.426] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Chico Bennett and last: College Radio WUMD +[2018-02-13T08:31:25.455] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:31:25.465] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:31:25.523] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:31:25.642] [INFO] cheese - inserting 1000 documents. first: The File on H. (novel) and last: Tirak Deh-e Sofla +[2018-02-13T08:31:25.643] [INFO] cheese - inserting 1000 documents. first: Martin Chávez and last: John Taylor, Baron Taylor of Warwick +[2018-02-13T08:31:25.669] [INFO] cheese - inserting 1000 documents. first: Category:Swiss civil utility aircraft 1960–1969 and last: Jack K. Clarke +[2018-02-13T08:31:25.700] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:31:25.781] [INFO] cheese - batch complete in: 1.272 secs +[2018-02-13T08:31:25.785] [INFO] cheese - inserting 1000 documents. first: Re Manitoba Language Rights and last: Horace de Gunzburg +[2018-02-13T08:31:25.806] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:31:25.881] [INFO] cheese - inserting 1000 documents. first: One Light Year at Snail Speed and last: File:Cone sisters with Gertrude Stein.jpg +[2018-02-13T08:31:25.885] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:31:25.935] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:31:26.021] [INFO] cheese - inserting 1000 documents. first: Reggae punk and last: 1939–40 Czechoslovak First League +[2018-02-13T08:31:26.080] [INFO] cheese - inserting 1000 documents. first: Mahuta Tawhiao and last: Category:Tahltan +[2018-02-13T08:31:26.100] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:31:26.190] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:31:26.230] [INFO] cheese - inserting 1000 documents. first: Template:WP Phillies Invite and last: Laurent Mohellebi +[2018-02-13T08:31:26.308] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:31:26.402] [INFO] cheese - inserting 1000 documents. first: Vazak and last: Tem Braille +[2018-02-13T08:31:26.433] [INFO] cheese - inserting 1000 documents. first: Lady Davis Postdoctoral Fellowship and last: WOW Hits 2012 +[2018-02-13T08:31:26.473] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:31:26.506] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:31:26.535] [INFO] cheese - inserting 1000 documents. first: Wyndham Street and last: Avon Dassett +[2018-02-13T08:31:26.556] [INFO] cheese - inserting 1000 documents. first: 1940–41 Czechoslovak First League and last: Kalmyk Bible +[2018-02-13T08:31:26.584] [INFO] cheese - inserting 1000 documents. first: Aeropuerto Internacional Del Cibao and last: Chinquapin Parkway +[2018-02-13T08:31:26.598] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:31:26.598] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:31:26.676] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:31:26.754] [INFO] cheese - inserting 1000 documents. first: Aleksandr Khinstein and last: The Brain of My Existence +[2018-02-13T08:31:26.817] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:31:26.867] [INFO] cheese - inserting 1000 documents. first: Armando Doda and last: Demerera sugar +[2018-02-13T08:31:26.952] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:31:27.035] [INFO] cheese - inserting 1000 documents. first: Nik Vucevic and last: Tropical Cyclone Carina (2006) +[2018-02-13T08:31:27.057] [INFO] cheese - inserting 1000 documents. first: Protypanthes hybristis and last: Barf Kola +[2018-02-13T08:31:27.076] [INFO] cheese - inserting 1000 documents. first: Throughput Accounting and last: File:Ohio capital conference logo.jpg +[2018-02-13T08:31:27.077] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T08:31:27.143] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:31:27.158] [INFO] cheese - inserting 1000 documents. first: Stela of Ankh-ef-en-Khonsu and last: History of the Catholic Church in Brazil +[2018-02-13T08:31:27.155] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:31:27.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Compton Scool and last: Skooma +[2018-02-13T08:31:27.210] [INFO] cheese - inserting 1000 documents. first: Rome (Paris Métro) and last: Server-side include +[2018-02-13T08:31:27.253] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:31:27.302] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:31:27.315] [INFO] cheese - batch complete in: 1.534 secs +[2018-02-13T08:31:27.404] [INFO] cheese - inserting 1000 documents. first: Monarch High School (Florida) and last: Glasgow, United Kingdom +[2018-02-13T08:31:27.481] [INFO] cheese - inserting 1000 documents. first: Nieuport-Delage NiD 590 and last: Wikipedia:Articles for deletion/Tuleap (project management) +[2018-02-13T08:31:27.599] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:31:27.607] [INFO] cheese - inserting 1000 documents. first: Miguel Ángel López Jaén and last: Bits of Life +[2018-02-13T08:31:27.611] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:31:27.692] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:31:27.790] [INFO] cheese - inserting 1000 documents. first: Wuzhou Airport and last: Ali Kılıç +[2018-02-13T08:31:27.818] [INFO] cheese - inserting 1000 documents. first: Bibi Kola and last: Talesh Mahalleh-ye Fatuk +[2018-02-13T08:31:27.913] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:31:27.936] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:31:28.044] [INFO] cheese - inserting 1000 documents. first: Lignification and last: Mari-Tureksky District +[2018-02-13T08:31:28.109] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:31:28.168] [INFO] cheese - inserting 1000 documents. first: Christmas store and last: Category:Palestinian actors by medium +[2018-02-13T08:31:28.282] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:31:28.291] [INFO] cheese - inserting 1000 documents. first: Donald "Ducky" Mallard and last: Exchange Quay tram stop +[2018-02-13T08:31:28.382] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:31:28.384] [INFO] cheese - inserting 1000 documents. first: Radio Bremen and last: Tashelhit +[2018-02-13T08:31:28.390] [INFO] cheese - inserting 1000 documents. first: Index of South Carolina-related articles and last: Mike Krusee +[2018-02-13T08:31:28.470] [INFO] cheese - inserting 1000 documents. first: José Perelló Torrens and last: Category:Canadian ultralight aircraft 1990–1999 +[2018-02-13T08:31:28.473] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T08:31:28.476] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:31:28.556] [INFO] cheese - inserting 1000 documents. first: Tazeh Patak and last: Mike Watson (American football) +[2018-02-13T08:31:28.560] [INFO] cheese - inserting 1000 documents. first: Arncliffe, North Yorkshire and last: Kay Kendall +[2018-02-13T08:31:28.562] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:31:28.635] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:31:28.664] [INFO] cheese - batch complete in: 1.348 secs +[2018-02-13T08:31:28.784] [INFO] cheese - inserting 1000 documents. first: Young's Bluecrest and last: Vanessa Arauz +[2018-02-13T08:31:28.803] [INFO] cheese - inserting 1000 documents. first: Hong Kong representative football team and last: Category:Technology trade associations +[2018-02-13T08:31:28.819] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T08:31:28.863] [INFO] cheese - inserting 1000 documents. first: Curtiss-Wright CW-3 Duckling and last: Konstyantyn Hryshchenko +[2018-02-13T08:31:28.880] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:31:28.944] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:31:28.958] [INFO] cheese - inserting 1000 documents. first: Serishevski and last: Mohammadabad Gonbaki +[2018-02-13T08:31:28.987] [INFO] cheese - inserting 1000 documents. first: File:Earthlastavengers8.jpg and last: Alexander Corina +[2018-02-13T08:31:29.053] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:31:29.089] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:31:29.104] [INFO] cheese - inserting 1000 documents. first: Category:People from Korba district and last: Planetary object +[2018-02-13T08:31:29.171] [INFO] cheese - inserting 1000 documents. first: Amagat and last: Ronee Blakely +[2018-02-13T08:31:29.184] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:31:29.275] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:31:29.396] [INFO] cheese - inserting 1000 documents. first: Love Put a Song in My Heart (song) and last: Marc-René de Voyer de Paulmy d'Argenson (1623-1700) +[2018-02-13T08:31:29.443] [INFO] cheese - inserting 1000 documents. first: File:Medan Prijaji (volume 4 issue 3).pdf and last: Template:Bad Aibling rail accident RDT +[2018-02-13T08:31:29.527] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:31:29.538] [INFO] cheese - inserting 1000 documents. first: Articaine hydrochloride and last: Benny Chong +[2018-02-13T08:31:29.570] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:31:29.640] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:31:29.679] [INFO] cheese - inserting 1000 documents. first: Major League Baseball Delivery Man of the Year Award and last: Vector map +[2018-02-13T08:31:29.711] [INFO] cheese - inserting 1000 documents. first: Concord Records and last: List of Billboard Hot 100 number-one singles of 1995 +[2018-02-13T08:31:29.794] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:31:29.835] [INFO] cheese - inserting 1000 documents. first: Khugiani (village) and last: Sveva da Montefeltro +[2018-02-13T08:31:29.853] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:31:29.968] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:31:30.053] [INFO] cheese - inserting 1000 documents. first: Veluyeh-ye Olya and last: Category:Directors of Disney +[2018-02-13T08:31:30.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Rafa Figueiredo/Archive and last: Amazonía +[2018-02-13T08:31:30.114] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:31:30.149] [INFO] cheese - inserting 1000 documents. first: Marc-René de Voyer de Paulmy d'Argenson (1652-1721) and last: File:Uliaga.jpg +[2018-02-13T08:31:30.160] [INFO] cheese - inserting 1000 documents. first: Bulghur and last: Daimler Benz Aerospace +[2018-02-13T08:31:30.124] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:31:30.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alexander Duvall and last: Hip Hop Soul +[2018-02-13T08:31:30.227] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:31:30.281] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:31:30.332] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:31:30.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elmallorca.com and last: Pittsburgh Science of Learning Center +[2018-02-13T08:31:30.549] [INFO] cheese - inserting 1000 documents. first: Anne Maddocks and last: 33rd State +[2018-02-13T08:31:30.590] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:31:30.706] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:31:30.798] [INFO] cheese - inserting 1000 documents. first: Techonology and last: Triangular trapezohedron +[2018-02-13T08:31:30.799] [INFO] cheese - inserting 1000 documents. first: Newark Broad Street station (New Jersey) and last: Apocalypse in view of Shia +[2018-02-13T08:31:30.819] [INFO] cheese - inserting 1000 documents. first: Pedigree Schmedigree and last: Category:People of Asian descent +[2018-02-13T08:31:30.848] [INFO] cheese - inserting 1000 documents. first: Barboursville Seminary of the Southern Methodist Church and last: File:GodInvitingChristDetail.jpg +[2018-02-13T08:31:30.862] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:31:30.878] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:31:30.882] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:31:30.895] [INFO] cheese - inserting 1000 documents. first: Pinus serotina and last: Bobby Flay England +[2018-02-13T08:31:30.945] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:31:31.018] [INFO] cheese - batch complete in: 1.165 secs +[2018-02-13T08:31:31.082] [INFO] cheese - inserting 1000 documents. first: Juan Francisco Guerra and last: Bowman (surname) +[2018-02-13T08:31:31.139] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:31:31.160] [INFO] cheese - inserting 1000 documents. first: Bache, Cheshire and last: SchoolNet Namibia +[2018-02-13T08:31:31.232] [INFO] cheese - inserting 1000 documents. first: Pseudominla castaneceps and last: 1 E+0 m +[2018-02-13T08:31:31.246] [INFO] cheese - batch complete in: 0.965 secs +[2018-02-13T08:31:31.320] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:31:31.322] [INFO] cheese - inserting 1000 documents. first: Category:Equatoguinean film people and last: Hydrophilus (insect) +[2018-02-13T08:31:31.357] [INFO] cheese - inserting 1000 documents. first: List of people removed from the Privy Council of the United Kingdom and last: Mangotsfield Rural +[2018-02-13T08:31:31.364] [INFO] cheese - inserting 1000 documents. first: Resistance Inside the Army and last: Na/Cl cotransporter +[2018-02-13T08:31:31.387] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:31:31.479] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:31:31.485] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:31:31.620] [INFO] cheese - inserting 1000 documents. first: John Dunbar, 4th Earl of Moray and last: Battle of the Ch'ongch'on River +[2018-02-13T08:31:31.627] [INFO] cheese - inserting 1000 documents. first: Template:1949 College Football Consensus All-Americans and last: Audi Type B +[2018-02-13T08:31:31.716] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:31:31.783] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:31:31.958] [INFO] cheese - inserting 1000 documents. first: SF-88 and last: Muzi Bon +[2018-02-13T08:31:31.996] [INFO] cheese - inserting 1000 documents. first: Rimush (Akkad) and last: Sándor Terplán +[2018-02-13T08:31:32.023] [INFO] cheese - inserting 1000 documents. first: File:The Fray - How to Save a Life.jpg and last: Portal:Trains/Selected article/Week 47, 2006 +[2018-02-13T08:31:32.028] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:31:32.061] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:31:32.085] [INFO] cheese - inserting 1000 documents. first: Bobby England and last: Baron Balfour of Inchrye +[2018-02-13T08:31:32.081] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Tatineni Rama Rao and last: Barron, Chuck +[2018-02-13T08:31:32.130] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:31:32.163] [INFO] cheese - inserting 1000 documents. first: Shmidt Bridge and last: Category:Food infobox templates +[2018-02-13T08:31:32.225] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:31:32.258] [INFO] cheese - batch complete in: 1.24 secs +[2018-02-13T08:31:32.298] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:31:32.392] [INFO] cheese - inserting 1000 documents. first: Category:Centralia, Missouri and last: Michael Coteau +[2018-02-13T08:31:32.481] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:31:32.610] [INFO] cheese - inserting 1000 documents. first: Panbeh Zar Koti and last: ROCS Chu Hwa (AGS-564) +[2018-02-13T08:31:32.633] [INFO] cheese - inserting 1000 documents. first: Milton Brandão and last: Takeshi Nakazato +[2018-02-13T08:31:32.678] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:31:32.714] [INFO] cheese - inserting 1000 documents. first: Courtney, Chuck and last: Huang An (singer) +[2018-02-13T08:31:32.740] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T08:31:32.760] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:31:32.763] [INFO] cheese - inserting 1000 documents. first: Armand Mondakan and last: Sebastien de Chaunac +[2018-02-13T08:31:32.901] [INFO] cheese - inserting 1000 documents. first: Nasty Girl and last: By the way +[2018-02-13T08:31:32.905] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:31:32.981] [INFO] cheese - inserting 1000 documents. first: HR 7578 and last: Category:Tourist attractions in Chambers County, Alabama +[2018-02-13T08:31:32.983] [INFO] cheese - inserting 1000 documents. first: Federation Slovene de Cyclisme and last: NACAI +[2018-02-13T08:31:32.997] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:31:33.062] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:31:33.135] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:31:33.303] [INFO] cheese - inserting 1000 documents. first: La Tante DC10 Restaurant and last: Template:Infobox summit meeting/sandbox +[2018-02-13T08:31:33.335] [INFO] cheese - inserting 1000 documents. first: Vinyl Records and last: Handley-Page 0/400 +[2018-02-13T08:31:33.361] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:31:33.365] [INFO] cheese - inserting 1000 documents. first: Professional Rugby Organization and last: Gradient Domain Image Processing +[2018-02-13T08:31:33.479] [INFO] cheese - inserting 1000 documents. first: Jaicós and last: Trouvelot Crater +[2018-02-13T08:31:33.480] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:31:33.483] [INFO] cheese - batch complete in: 1.224 secs +[2018-02-13T08:31:33.509] [INFO] cheese - inserting 1000 documents. first: The Roads We Choose – A Retrospective and last: Timeline of the history of Indonesia +[2018-02-13T08:31:33.559] [INFO] cheese - inserting 1000 documents. first: Professional Baseball Spirits and last: 3Player +[2018-02-13T08:31:33.579] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:31:33.589] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:31:33.644] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T08:31:33.661] [INFO] cheese - inserting 1000 documents. first: David Greenaway and last: Technical singularity +[2018-02-13T08:31:33.816] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:31:33.901] [INFO] cheese - inserting 1000 documents. first: Héctor Suarez Gomiz and last: Thomas Michael Kettle +[2018-02-13T08:31:34.022] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:31:34.196] [INFO] cheese - inserting 1000 documents. first: Template:LPF 2013-14 teamlist and last: Runaway (1964 film) +[2018-02-13T08:31:34.244] [INFO] cheese - inserting 1000 documents. first: Taylor's Eye Witness Works and last: Jinx (TV series) +[2018-02-13T08:31:34.245] [INFO] cheese - inserting 1000 documents. first: Saturn's Children (disambiguation) and last: Tx college of osteopathic +[2018-02-13T08:31:34.270] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:31:34.369] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:31:34.394] [INFO] cheese - inserting 1000 documents. first: Livestock‑branding and last: Niculae I. Herescu +[2018-02-13T08:31:34.412] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:31:34.495] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:31:34.538] [INFO] cheese - inserting 1000 documents. first: The Demon Haunted World: Science as a Candle in the Dark and last: Seshatu +[2018-02-13T08:31:34.605] [INFO] cheese - inserting 1000 documents. first: Nigel Stafford-Clark and last: E3 m +[2018-02-13T08:31:34.733] [INFO] cheese - inserting 1000 documents. first: Mister Mxyzptlk and last: Wisconsin State Assembly +[2018-02-13T08:31:34.751] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:31:34.770] [INFO] cheese - batch complete in: 1.191 secs +[2018-02-13T08:31:34.906] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T08:31:35.033] [INFO] cheese - inserting 1000 documents. first: Bardsey cum Rigton and last: Manitouwadge +[2018-02-13T08:31:35.085] [INFO] cheese - inserting 1000 documents. first: List of Governors-General of Saint Kitts and Nevis and last: Keseleyan +[2018-02-13T08:31:35.123] [INFO] cheese - inserting 1000 documents. first: AFL reserves affiliations and last: Category:Geography of Crisp County, Georgia +[2018-02-13T08:31:35.141] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:31:35.159] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:31:35.210] [INFO] cheese - inserting 1000 documents. first: Niculae Herescu and last: Johan Sundkvist +[2018-02-13T08:31:35.219] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:31:35.251] [INFO] cheese - inserting 1000 documents. first: History of Norfolk County, Massachusetts and last: Category:Transportation in Belknap County, New Hampshire +[2018-02-13T08:31:35.280] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:31:35.390] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:31:35.510] [INFO] cheese - inserting 1000 documents. first: Louise Marie Thérèse of France and last: UN/LOCODE:INCAM +[2018-02-13T08:31:35.520] [INFO] cheese - inserting 1000 documents. first: James Parsons Burkitt and last: Wikipedia:Irish Wikipedians' notice board/Stubs +[2018-02-13T08:31:35.603] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:31:35.640] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:31:35.697] [INFO] cheese - inserting 1000 documents. first: San Diego State University Georgia Campus and last: File:National Unity Party.svg +[2018-02-13T08:31:35.719] [INFO] cheese - inserting 1000 documents. first: Kaseliyan and last: Category:Kashmir (band) albums +[2018-02-13T08:31:35.802] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:31:35.825] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:31:35.850] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Crisp County, Georgia and last: Category:Geography of Franklin County, Georgia +[2018-02-13T08:31:35.936] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:31:36.001] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Ecclesiastical Province of Mobile and last: Indigent +[2018-02-13T08:31:36.124] [INFO] cheese - inserting 1000 documents. first: Ben Romans and last: Category:Iijoki basin +[2018-02-13T08:31:36.207] [INFO] cheese - batch complete in: 1.062 secs +[2018-02-13T08:31:36.259] [INFO] cheese - inserting 1000 documents. first: SC Bose and last: Edystone +[2018-02-13T08:31:36.296] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:31:36.502] [INFO] cheese - inserting 1000 documents. first: Switched mesh and last: Penn dot +[2018-02-13T08:31:36.609] [INFO] cheese - batch complete in: 1.703 secs +[2018-02-13T08:31:36.631] [INFO] cheese - inserting 1000 documents. first: 28184 Vaishnavirao and last: Kompass-Karten GmbH +[2018-02-13T08:31:36.650] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:31:36.669] [INFO] cheese - inserting 1000 documents. first: Category:Kashmir (band) video albums and last: Constantin Pigla +[2018-02-13T08:31:36.713] [INFO] cheese - inserting 1000 documents. first: Christopher Gaudet and last: Super Fly +[2018-02-13T08:31:36.731] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T08:31:36.777] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:31:36.807] [INFO] cheese - inserting 1000 documents. first: 2005-06 Olympique de Marseille season and last: Alexander JR Ferrer +[2018-02-13T08:31:36.851] [INFO] cheese - batch complete in: 1.248 secs +[2018-02-13T08:31:36.958] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:31:37.126] [INFO] cheese - inserting 1000 documents. first: Borbo borbonica and last: Henry Howard, 19th Earl of Suffolk +[2018-02-13T08:31:37.140] [INFO] cheese - inserting 1000 documents. first: Serpil Çapar and last: Category:Lists of documentary television series episodes +[2018-02-13T08:31:37.195] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:31:37.233] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:31:37.274] [INFO] cheese - inserting 1000 documents. first: Snow lepard and last: University of Vicenza +[2018-02-13T08:31:37.401] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:31:37.455] [INFO] cheese - inserting 1000 documents. first: Robert Millikan and last: N-322 (Road) +[2018-02-13T08:31:37.485] [INFO] cheese - inserting 1000 documents. first: Frank Irwin and last: Kachan, Iran +[2018-02-13T08:31:37.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Reference Library/Mechademia and last: Category:Geography of Lee County, Georgia +[2018-02-13T08:31:37.631] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:31:37.643] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:31:37.662] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:31:37.680] [INFO] cheese - inserting 1000 documents. first: Xrinh and last: Carl Liscombe +[2018-02-13T08:31:37.793] [INFO] cheese - inserting 1000 documents. first: Yvan Pierrot and last: Mimi Barthélemy +[2018-02-13T08:31:37.841] [INFO] cheese - inserting 1000 documents. first: Selvanagar(MoonRoad) and last: Park Corner Heath +[2018-02-13T08:31:37.852] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:31:37.953] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T08:31:37.956] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:31:38.051] [INFO] cheese - inserting 1000 documents. first: Meir Hai and last: Précoce +[2018-02-13T08:31:38.195] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:31:38.276] [INFO] cheese - inserting 1000 documents. first: Clarkeulia spectanda and last: Lash, Gilan +[2018-02-13T08:31:38.353] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:31:38.391] [INFO] cheese - inserting 1000 documents. first: Transcription activators and last: Consumer Tenancy and Trader Tribunal of New South Wales +[2018-02-13T08:31:38.397] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Lee County, Georgia and last: Runnin' Wild (song) +[2018-02-13T08:31:38.420] [INFO] cheese - inserting 1000 documents. first: Judith Rodin and last: Category:Roman Catholic Ecclesiastical Province of Philadelphia +[2018-02-13T08:31:38.552] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:31:38.626] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:31:38.640] [INFO] cheese - batch complete in: 1.238 secs +[2018-02-13T08:31:38.725] [INFO] cheese - inserting 1000 documents. first: U.S. Federal Building and Courthouse (Anchorage, Alaska) and last: La Historia Continúa... Parte II +[2018-02-13T08:31:38.767] [INFO] cheese - inserting 1000 documents. first: Jack Dailey Creek and last: Christian Lasson +[2018-02-13T08:31:38.805] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:31:38.848] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:31:38.850] [INFO] cheese - inserting 1000 documents. first: Khalid Kelly and last: Wikipedia:Suspected sock puppets/Tellus archivist +[2018-02-13T08:31:38.933] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:31:39.187] [INFO] cheese - inserting 1000 documents. first: 2013–14 Wisconsin Badgers women's basketball team and last: Hard-easy effect +[2018-02-13T08:31:39.308] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T08:31:39.320] [INFO] cheese - inserting 1000 documents. first: Alien Contamination and last: Hôtel de Bourbon-Condé +[2018-02-13T08:31:39.337] [INFO] cheese - inserting 1000 documents. first: Time Was Endless and last: Who Do You Do? +[2018-02-13T08:31:39.346] [INFO] cheese - inserting 1000 documents. first: Paillette and last: View-source URI scheme +[2018-02-13T08:31:39.373] [INFO] cheese - inserting 1000 documents. first: Gove County and last: Turner Fenton High School +[2018-02-13T08:31:39.386] [INFO] cheese - inserting 1000 documents. first: Khoibu Naga language and last: File:Written in the Stars (Elton John and LeAnn Rimes song).jpg +[2018-02-13T08:31:39.407] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:31:39.405] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:31:39.445] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:31:39.530] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:31:39.537] [INFO] cheese - batch complete in: 1.685 secs +[2018-02-13T08:31:39.614] [INFO] cheese - inserting 1000 documents. first: Richard Bedford and last: John Michael Jacks +[2018-02-13T08:31:39.691] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:31:39.821] [INFO] cheese - inserting 1000 documents. first: File:The Magic School Bus title credit.jpg and last: Helgi Kolvidsson +[2018-02-13T08:31:39.886] [INFO] cheese - inserting 1000 documents. first: The Orange Monkey (PJ Harvey song) and last: Lycee francais A. Malraux +[2018-02-13T08:31:39.886] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:31:39.895] [INFO] cheese - inserting 1000 documents. first: Innocent Blood and last: Emergency vehicle equipment +[2018-02-13T08:31:39.919] [INFO] cheese - inserting 1000 documents. first: File:Deutsche Tourenwagen Masters (logo).png and last: Wikipedia:Version 1.0 Editorial Team/Israel-related articles by quality/21 +[2018-02-13T08:31:39.955] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:31:39.983] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:31:40.037] [INFO] cheese - batch complete in: 1.397 secs +[2018-02-13T08:31:40.145] [INFO] cheese - inserting 1000 documents. first: MTV Europe Music Award for Biggest Fans and last: Motoakasaka, Minato, Tokyo +[2018-02-13T08:31:40.243] [INFO] cheese - inserting 1000 documents. first: Raion Orekhovo-Borisovo Iuzhnoye and last: Category:Tourist attractions in Oregon +[2018-02-13T08:31:40.393] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:31:40.399] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T08:31:40.643] [INFO] cheese - inserting 1000 documents. first: Lycee Francais A. Malraux and last: Expo / Bundy station +[2018-02-13T08:31:40.663] [INFO] cheese - inserting 1000 documents. first: Akuma (character) and last: Template:Fb round2 2006 Intertoto Cup R1 +[2018-02-13T08:31:40.766] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:31:40.809] [INFO] cheese - inserting 1000 documents. first: List of current governors of Afghanistan and last: Template:Chessington World of Adventures +[2018-02-13T08:31:40.821] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:31:40.967] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T08:31:40.996] [INFO] cheese - inserting 1000 documents. first: Template:Historical provinces of Finland and last: Penal laws +[2018-02-13T08:31:41.045] [INFO] cheese - inserting 1000 documents. first: Lucas Mansion and last: Category:Karlskoga Municipality +[2018-02-13T08:31:41.188] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T08:31:41.281] [INFO] cheese - batch complete in: 1.743 secs +[2018-02-13T08:31:41.285] [INFO] cheese - inserting 1000 documents. first: Listen to the Band (song) and last: File:Ross perot net favorability 1992-1996.svg +[2018-02-13T08:31:41.415] [INFO] cheese - inserting 1000 documents. first: Blaine Calkins and last: Miles M.39B Libellula +[2018-02-13T08:31:41.478] [INFO] cheese - batch complete in: 1.441 secs +[2018-02-13T08:31:41.482] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:31:41.552] [INFO] cheese - inserting 1000 documents. first: Canadian red ensign and last: Marsh Giddings +[2018-02-13T08:31:41.565] [INFO] cheese - inserting 1000 documents. first: Bundy station and last: Siege of Rhodes (305 BC) +[2018-02-13T08:31:41.697] [INFO] cheese - inserting 1000 documents. first: One (German TV channel) and last: Jonathan ben Uziel +[2018-02-13T08:31:41.696] [INFO] cheese - batch complete in: 0.93 secs +[2018-02-13T08:31:41.706] [INFO] cheese - batch complete in: 1.307 secs +[2018-02-13T08:31:41.777] [INFO] cheese - inserting 1000 documents. first: East Jaffrey Historic District and last: La MICA Biological Station +[2018-02-13T08:31:41.784] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:31:41.820] [INFO] cheese - inserting 1000 documents. first: Nine Stones, Winterbourne Abbas and last: Exact functor theorem +[2018-02-13T08:31:41.908] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:31:42.154] [INFO] cheese - batch complete in: 1.186 secs +[2018-02-13T08:31:42.265] [INFO] cheese - inserting 1000 documents. first: My Story (Julia Gillard) and last: File:MIT Global Startup Workshop.jpg +[2018-02-13T08:31:42.413] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:31:42.502] [INFO] cheese - inserting 1000 documents. first: File:HardingUniversity logo.svg and last: Dionysus in 69 +[2018-02-13T08:31:42.628] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:31:42.709] [INFO] cheese - inserting 1000 documents. first: The Philosophy of Poverty and last: File:Walk Live Material Cover.jpg +[2018-02-13T08:31:42.710] [INFO] cheese - inserting 1000 documents. first: Blessed Robert Johnson and last: Guyana Air Force +[2018-02-13T08:31:42.803] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:31:42.811] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:31:42.889] [INFO] cheese - inserting 1000 documents. first: Robin Handique and last: Vadaveekam +[2018-02-13T08:31:42.903] [INFO] cheese - inserting 1000 documents. first: Parkhouse Hill and last: John M. Stone +[2018-02-13T08:31:42.966] [INFO] cheese - inserting 1000 documents. first: Category:1919 elections in Abkhazia and last: Burger, Joseph +[2018-02-13T08:31:43.032] [INFO] cheese - inserting 1000 documents. first: Category:Bathymophila and last: Sheshtanrud +[2018-02-13T08:31:42.997] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:31:43.045] [INFO] cheese - batch complete in: 1.567 secs +[2018-02-13T08:31:43.051] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:31:43.056] [INFO] cheese - inserting 1000 documents. first: Lisbon Strategy and last: Isuzu Motors +[2018-02-13T08:31:43.156] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:31:43.262] [INFO] cheese - batch complete in: 1.981 secs +[2018-02-13T08:31:43.319] [INFO] cheese - inserting 1000 documents. first: Ray Vanderby and last: Barasat I (Community development block) +[2018-02-13T08:31:43.432] [INFO] cheese - inserting 1000 documents. first: A. G. Mathews and last: Alexander de Kininmund (died 1380) +[2018-02-13T08:31:43.434] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:31:43.482] [INFO] cheese - inserting 1000 documents. first: VictorRamdin and last: Template:Takhar-geo-stub +[2018-02-13T08:31:43.575] [INFO] cheese - inserting 1000 documents. first: ShowStopper (song) and last: Category:FL-Class Tampa Bay Buccaneers articles +[2018-02-13T08:31:43.589] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:31:43.605] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:31:43.792] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:31:43.795] [INFO] cheese - inserting 1000 documents. first: Sheshtanrud-e Pa'in and last: Chokam +[2018-02-13T08:31:43.848] [INFO] cheese - inserting 1000 documents. first: Burnett, Joseph and last: Lycée français de Gavà +[2018-02-13T08:31:43.986] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:31:44.032] [INFO] cheese - inserting 1000 documents. first: Aurelia Cotta and last: Iranian movies +[2018-02-13T08:31:44.070] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:31:44.259] [INFO] cheese - batch complete in: 1.214 secs +[2018-02-13T08:31:44.453] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dycode.net and last: Business Intelligence software +[2018-02-13T08:31:44.651] [INFO] cheese - inserting 1000 documents. first: Template:Wardak-geo-stub and last: JC De Vera +[2018-02-13T08:31:44.654] [INFO] cheese - batch complete in: 1.219 secs +[2018-02-13T08:31:44.667] [INFO] cheese - inserting 1000 documents. first: Havana Club (Bacardi) and last: Artificial limbs +[2018-02-13T08:31:44.670] [INFO] cheese - inserting 1000 documents. first: Best-selling Christmas/Holiday albums in the United States and last: Str8 Out Da Slums +[2018-02-13T08:31:44.811] [INFO] cheese - batch complete in: 1.222 secs +[2018-02-13T08:31:44.831] [INFO] cheese - batch complete in: 1.225 secs +[2018-02-13T08:31:44.861] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:31:44.926] [INFO] cheese - inserting 1000 documents. first: Chowkam and last: Minah (disambiguation) +[2018-02-13T08:31:44.991] [INFO] cheese - inserting 1000 documents. first: Template:Swiftsure class submarine and last: Voiceless labialized velar approximant +[2018-02-13T08:31:45.006] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:31:45.053] [INFO] cheese - inserting 1000 documents. first: Lycée Français de Gavà and last: 待阳村 +[2018-02-13T08:31:45.169] [INFO] cheese - batch complete in: 1.907 secs +[2018-02-13T08:31:45.203] [INFO] cheese - inserting 1000 documents. first: Project Chapleau and last: Black chinned sparrow +[2018-02-13T08:31:45.165] [INFO] cheese - batch complete in: 1.179 secs +[2018-02-13T08:31:45.309] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:31:45.409] [INFO] cheese - inserting 1000 documents. first: Pig (2010 film) and last: Edgar Everaldo Valencia +[2018-02-13T08:31:45.423] [INFO] cheese - inserting 1000 documents. first: Norman Parker (author) and last: FC Smarhon +[2018-02-13T08:31:45.452] [INFO] cheese - inserting 1000 documents. first: Serena Township, LaSalle County, Illinois and last: Template:Naked Brothers Band +[2018-02-13T08:31:45.471] [INFO] cheese - inserting 1000 documents. first: Cleo Pineau and last: Though I know the river is dry +[2018-02-13T08:31:45.475] [INFO] cheese - inserting 1000 documents. first: Dawson Bros and last: Mayo (disambiguation) +[2018-02-13T08:31:45.480] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:31:45.483] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:31:45.522] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:31:45.532] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:31:45.536] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:31:45.669] [INFO] cheese - inserting 1000 documents. first: File:Nacional Deva Boys logo.png and last: Wikipedia:Sockpuppet investigations/Mypassis1234/Archive +[2018-02-13T08:31:45.743] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:31:45.866] [INFO] cheese - inserting 1000 documents. first: Template:NAC Breda and last: Selina Parvin +[2018-02-13T08:31:45.995] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:31:46.060] [INFO] cheese - inserting 1000 documents. first: Babylon Rogues and last: Category:Costa Rican triathletes +[2018-02-13T08:31:46.076] [INFO] cheese - inserting 1000 documents. first: Homotopy limits and last: Category:Census-designated places in Pierce County, Wisconsin +[2018-02-13T08:31:46.171] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:31:46.199] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:31:46.305] [INFO] cheese - inserting 1000 documents. first: Centre for Rural and Northern Health Research and last: Rosa Lewis +[2018-02-13T08:31:46.322] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bengali fish/Archive and last: Jay Cross +[2018-02-13T08:31:46.337] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/St Eugrad's Church, Llaneugrad and last: Phulbani district +[2018-02-13T08:31:46.379] [INFO] cheese - inserting 1000 documents. first: Al Brady and last: Bernard Benstock +[2018-02-13T08:31:46.387] [INFO] cheese - inserting 1000 documents. first: Voiceless labiodental fricative and last: Spiritual Five +[2018-02-13T08:31:46.408] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:31:46.431] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:31:46.508] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:31:46.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rainy Davis and last: 1983 Alpine Skiing World Cup - Men's Combined +[2018-02-13T08:31:46.568] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:31:46.627] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:31:46.681] [INFO] cheese - batch complete in: 1.51 secs +[2018-02-13T08:31:46.932] [INFO] cheese - inserting 1000 documents. first: Template:Illinois road map and last: Morqaye +[2018-02-13T08:31:46.952] [INFO] cheese - inserting 1000 documents. first: Smit, Jan and last: Smith, Willard +[2018-02-13T08:31:46.998] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:31:47.000] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:31:47.061] [INFO] cheese - inserting 1000 documents. first: Leptalis albania and last: Leningradka St. Petersburg +[2018-02-13T08:31:47.073] [INFO] cheese - inserting 1000 documents. first: Category:Chilean triathletes and last: Wikipedia:Articles for deletion/List of Jewish American political figures (2nd nomination) +[2018-02-13T08:31:47.155] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:31:47.318] [INFO] cheese - inserting 1000 documents. first: Vertical Disease Transmission and last: Kirkpatrick & Lockhart Nicholson Graham +[2018-02-13T08:31:47.339] [INFO] cheese - inserting 1000 documents. first: Portal:Biography/Selected article/June 16 and last: Saskatchewan Highway 680 +[2018-02-13T08:31:47.358] [INFO] cheese - batch complete in: 1.176 secs +[2018-02-13T08:31:47.451] [INFO] cheese - inserting 1000 documents. first: 1983 Alpine Skiing World Cup - Men's Downhill and last: 2010 Aircel Chennai Open – Doubles +[2018-02-13T08:31:47.494] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:31:47.600] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:31:47.620] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:31:47.763] [INFO] cheese - inserting 1000 documents. first: Mahji dialect and last: John Ingleby (painter) +[2018-02-13T08:31:47.825] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:31:47.950] [INFO] cheese - inserting 1000 documents. first: Eisenstadt (surname) and last: Idomeno Re Di Creta +[2018-02-13T08:31:48.031] [INFO] cheese - inserting 1000 documents. first: Lake Manicouagan and last: The Integral Trees +[2018-02-13T08:31:48.107] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:31:48.152] [INFO] cheese - inserting 1000 documents. first: Kindaichi Kōsuke and last: Category:Cellular telephony +[2018-02-13T08:31:48.275] [INFO] cheese - batch complete in: 1.593 secs +[2018-02-13T08:31:48.360] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:31:48.364] [INFO] cheese - inserting 1000 documents. first: File:Mubarakal-Kabir computer rendition.jpg and last: Davis High School (Washington) +[2018-02-13T08:31:48.384] [INFO] cheese - inserting 1000 documents. first: Fireman Save My Child (film) and last: United States House of Representatives elections in Kentucky, 1952 +[2018-02-13T08:31:48.453] [INFO] cheese - inserting 1000 documents. first: Steam tunnel incident and last: 1988 Nutri-Metics Open - Doubles +[2018-02-13T08:31:48.455] [INFO] cheese - inserting 1000 documents. first: Abercrombie's syndrome and last: Cottens, Vaud +[2018-02-13T08:31:48.518] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:31:48.528] [INFO] cheese - batch complete in: 1.372 secs +[2018-02-13T08:31:48.648] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:31:48.666] [INFO] cheese - inserting 1000 documents. first: Left Shark (Viral Phenomenon) and last: Posterior cardinal veins +[2018-02-13T08:31:48.709] [INFO] cheese - batch complete in: 1.35 secs +[2018-02-13T08:31:48.777] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:31:48.933] [INFO] cheese - inserting 1000 documents. first: Yang Cheng-wei and last: Mitchell Hallahan +[2018-02-13T08:31:49.107] [INFO] cheese - inserting 1000 documents. first: 1988 Nutri-Metics Open - Singles and last: 1997 Faber Grand Prix - Singles +[2018-02-13T08:31:49.110] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:31:49.152] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:31:49.186] [INFO] cheese - inserting 1000 documents. first: Piezoelectric Speakers and last: Anne C. Lynch Botta +[2018-02-13T08:31:49.268] [INFO] cheese - inserting 1000 documents. first: Apne Apne (1987 film) and last: Public domain mark +[2018-02-13T08:31:49.287] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:31:49.391] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:31:49.551] [INFO] cheese - inserting 1000 documents. first: Susan L. Adams and last: Category:Species described in the 1860s +[2018-02-13T08:31:49.591] [INFO] cheese - inserting 1000 documents. first: German 1st Panzer Group and last: List of birds of Brazil +[2018-02-13T08:31:49.593] [INFO] cheese - inserting 1000 documents. first: 1997 Family Circle Cup - Doubles and last: 2007 Pilot Pen Tennis - Men's Doubles +[2018-02-13T08:31:49.664] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T08:31:49.637] [INFO] cheese - inserting 1000 documents. first: Jean-Charles Lapierre and last: Vaughn Monroe +[2018-02-13T08:31:49.773] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:31:49.801] [INFO] cheese - batch complete in: 1.283 secs +[2018-02-13T08:31:49.958] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Atlanta Braves articles and last: 1998 ARFU Asian Rugby Championship +[2018-02-13T08:31:50.031] [INFO] cheese - batch complete in: 1.756 secs +[2018-02-13T08:31:50.133] [INFO] cheese - inserting 1000 documents. first: Category:Sam Cooke tribute albums and last: John Baker White +[2018-02-13T08:31:50.233] [INFO] cheese - batch complete in: 1.705 secs +[2018-02-13T08:31:50.330] [INFO] cheese - batch complete in: 1.22 secs +[2018-02-13T08:31:50.444] [INFO] cheese - inserting 1000 documents. first: Braithwaite, George and last: Shades Of Death Road +[2018-02-13T08:31:50.550] [INFO] cheese - inserting 1000 documents. first: 2007 Pilot Pen Tennis - Men's Singles and last: Medvedevsky +[2018-02-13T08:31:50.534] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:31:50.645] [INFO] cheese - inserting 1000 documents. first: Maria Campbell and last: Love is All +[2018-02-13T08:31:50.662] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:31:50.734] [INFO] cheese - inserting 1000 documents. first: 217th (Qu'Appelle) Battalion, CEF and last: Lord of the rings music +[2018-02-13T08:31:50.747] [INFO] cheese - batch complete in: 1.459 secs +[2018-02-13T08:31:50.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Actual Condition and last: Make Me Over (Lifehouse song) +[2018-02-13T08:31:50.847] [INFO] cheese - batch complete in: 1.183 secs +[2018-02-13T08:31:50.879] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:31:51.015] [INFO] cheese - inserting 1000 documents. first: Arterial insufficiency and last: David G. Hooker +[2018-02-13T08:31:51.030] [INFO] cheese - inserting 1000 documents. first: Khanpur, Sindh and last: GeNMR +[2018-02-13T08:31:51.099] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:31:51.151] [INFO] cheese - inserting 1000 documents. first: Issam Abdel-Tawab and last: 2009 LA Tennis Open - Doubles +[2018-02-13T08:31:51.155] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:31:51.173] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Ivory Coast and last: Brown, Randy +[2018-02-13T08:31:51.240] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:31:51.286] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:31:51.354] [INFO] cheese - inserting 1000 documents. first: Wallis and futana and last: Readlyn +[2018-02-13T08:31:51.483] [INFO] cheese - inserting 1000 documents. first: Little King's Story and last: Adam Goldworm +[2018-02-13T08:31:51.495] [INFO] cheese - inserting 1000 documents. first: Don coldsmith and last: Molly Day Thatcher +[2018-02-13T08:31:51.540] [INFO] cheese - batch complete in: 1.509 secs +[2018-02-13T08:31:51.574] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:31:51.603] [INFO] cheese - inserting 1000 documents. first: 2009 LA Tennis Open - Singles and last: Paano Na Kaya +[2018-02-13T08:31:51.681] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:31:51.736] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T08:31:51.832] [INFO] cheese - inserting 1000 documents. first: List of air-filtering plants and last: Bournemouth Borough Council elections +[2018-02-13T08:31:51.893] [INFO] cheese - inserting 1000 documents. first: Derby City Council elections 2014-2016 and last: Pakistani foreign relations +[2018-02-13T08:31:51.938] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:31:51.963] [INFO] cheese - inserting 1000 documents. first: Brown, Robin and last: Lucky Jo +[2018-02-13T08:31:52.009] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:31:52.105] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:31:52.111] [INFO] cheese - inserting 1000 documents. first: Babesch - Bulletin Antieke Beschaving and last: Diving at the 1976 Summer Olympics - Women's 3 metre springboard +[2018-02-13T08:31:52.192] [INFO] cheese - inserting 1000 documents. first: Category:Florida Gators basketball venues and last: 1914 Columbus Panhandles season +[2018-02-13T08:31:52.220] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:31:52.289] [INFO] cheese - inserting 1000 documents. first: Francis Oscar Lindquist and last: Trash compactor +[2018-02-13T08:31:52.319] [INFO] cheese - batch complete in: 1.22 secs +[2018-02-13T08:31:52.358] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:31:52.530] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dave Breen and last: Wikipedia:BRD violations +[2018-02-13T08:31:52.532] [INFO] cheese - inserting 1000 documents. first: University of California, Pomona and last: Lethal Weapon - The Ride +[2018-02-13T08:31:52.602] [INFO] cheese - inserting 1000 documents. first: Soviet occupation of Northeast China and last: File:Lobo bravo logo.png +[2018-02-13T08:31:52.611] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T08:31:52.702] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:31:52.719] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:31:52.825] [INFO] cheese - inserting 1000 documents. first: Aridaman jit singh and last: Echols, John +[2018-02-13T08:31:52.834] [INFO] cheese - inserting 1000 documents. first: Old Jersey and last: St. David's Parish, Prince Edward Island +[2018-02-13T08:31:52.903] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:31:53.012] [INFO] cheese - inserting 1000 documents. first: Letzte Tage - Letzte Nächte and last: Shameful shitting +[2018-02-13T08:31:53.066] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:31:53.069] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T08:31:53.118] [INFO] cheese - inserting 1000 documents. first: Post-tensioned concrete and last: Plon +[2018-02-13T08:31:53.148] [INFO] cheese - inserting 1000 documents. first: Ruger M77 Mark II and last: A Mother's Confession +[2018-02-13T08:31:53.181] [INFO] cheese - inserting 1000 documents. first: In Flanders Field and last: St. Margaret's Church +[2018-02-13T08:31:53.223] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:31:53.245] [INFO] cheese - batch complete in: 1.705 secs +[2018-02-13T08:31:53.255] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:31:53.394] [INFO] cheese - inserting 1000 documents. first: Fondation Vincent van Gogh Arles and last: Category:Blues Magoos albums +[2018-02-13T08:31:53.528] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:31:53.612] [INFO] cheese - inserting 1000 documents. first: Shooting at the 2000 Summer Olympics - Men's trap and last: Time line of the British Army 1800 - 1899 +[2018-02-13T08:31:53.628] [INFO] cheese - inserting 1000 documents. first: International Museum and Library of the Conjuring Arts and last: 1964 Nemzeti Bajnokság I +[2018-02-13T08:31:53.645] [INFO] cheese - inserting 1000 documents. first: British-Ukrainian Symposium (BUS) and last: Manjari (singer) +[2018-02-13T08:31:53.685] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:31:53.725] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:31:53.786] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:31:53.807] [INFO] cheese - inserting 1000 documents. first: File:Map of Prince Edward Island highlighting St. David's Parish.png and last: Lady Friday +[2018-02-13T08:31:53.914] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:31:53.917] [INFO] cheese - inserting 1000 documents. first: Terias sodalis and last: Thomas Clifton +[2018-02-13T08:31:54.022] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:31:54.114] [INFO] cheese - inserting 1000 documents. first: Category:Blue Lagoon (band) songs and last: Sendes +[2018-02-13T08:31:54.170] [INFO] cheese - inserting 1000 documents. first: Martin Luther School and last: Rocham Phoeung +[2018-02-13T08:31:54.203] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:31:54.303] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:31:54.441] [INFO] cheese - inserting 1000 documents. first: 26422 Marekbuchman and last: Jain iconography +[2018-02-13T08:31:54.522] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:31:54.529] [INFO] cheese - inserting 1000 documents. first: Kato Yasuaki and last: Samurai Evolution: Oukoku Geist +[2018-02-13T08:31:54.643] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:31:54.708] [INFO] cheese - inserting 1000 documents. first: Time line of the British Army 1900 - 1999 and last: List of characters in the Amelia Peabody series +[2018-02-13T08:31:54.716] [INFO] cheese - inserting 1000 documents. first: Retroactive interference and last: Transylvania County +[2018-02-13T08:31:54.785] [INFO] cheese - inserting 1000 documents. first: Category:Secondary schools in West Yorkshire and last: Wikipedia:Sockpuppet investigations/John Torn/Archive +[2018-02-13T08:31:54.791] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T08:31:54.858] [INFO] cheese - batch complete in: 1.613 secs +[2018-02-13T08:31:54.871] [INFO] cheese - inserting 1000 documents. first: Sandas, Iran and last: Lizard orchid +[2018-02-13T08:31:54.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Spiderio and last: Captain Birdseye +[2018-02-13T08:31:54.902] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:31:55.000] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:31:55.062] [INFO] cheese - inserting 1000 documents. first: Christopher Helm Publishers and last: Antelope (passenger train) +[2018-02-13T08:31:55.076] [INFO] cheese - batch complete in: 1.162 secs +[2018-02-13T08:31:55.246] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:31:55.324] [INFO] cheese - inserting 1000 documents. first: Emily Kate Johnston and last: Easistore Self Storage +[2018-02-13T08:31:55.359] [INFO] cheese - inserting 1000 documents. first: MaildeQuest and last: Hamilton High School Fine Arts Program +[2018-02-13T08:31:55.481] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:31:55.536] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:31:55.739] [INFO] cheese - inserting 1000 documents. first: List of characters in Angels & Demons and last: Breathe & Stop +[2018-02-13T08:31:55.751] [INFO] cheese - inserting 1000 documents. first: Centro Galleria and last: Baldeh Sara +[2018-02-13T08:31:55.787] [INFO] cheese - inserting 1000 documents. first: Ölkofra tale and last: Category:Education in Richmond County, Georgia +[2018-02-13T08:31:55.855] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:31:55.916] [INFO] cheese - batch complete in: 1.125 secs +[2018-02-13T08:31:55.937] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:31:56.036] [INFO] cheese - inserting 1000 documents. first: Governors of Vancouver Island and last: Queen Saleha +[2018-02-13T08:31:56.057] [INFO] cheese - inserting 1000 documents. first: List of asteroids (117001-118000) and last: Joseph Octave Arsenault +[2018-02-13T08:31:56.123] [INFO] cheese - inserting 1000 documents. first: 413th Strategic Fighter Wing and last: Revista ERES +[2018-02-13T08:31:56.159] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:31:56.188] [INFO] cheese - inserting 1000 documents. first: 1962–63 Segunda División and last: Wildlife of Ratanakiri +[2018-02-13T08:31:56.235] [INFO] cheese - batch complete in: 1.157 secs +[2018-02-13T08:31:56.251] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:31:56.265] [INFO] cheese - inserting 1000 documents. first: Bulkington and last: Local Authority Accommodation +[2018-02-13T08:31:56.405] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:31:56.542] [INFO] cheese - batch complete in: 1.684 secs +[2018-02-13T08:31:56.680] [INFO] cheese - inserting 1000 documents. first: Bandbon-e Beneksar and last: Category:Faroe Islands under-21 international footballers +[2018-02-13T08:31:56.749] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Burke County, Georgia and last: Čeřenice +[2018-02-13T08:31:56.803] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:31:56.868] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:31:57.030] [INFO] cheese - inserting 1000 documents. first: Juventud Guerrera and Psicosis and last: Sergio Torres Guardeño +[2018-02-13T08:31:57.084] [INFO] cheese - inserting 1000 documents. first: Shi Zhou Pian and last: 28816 Kimneville +[2018-02-13T08:31:57.129] [INFO] cheese - batch complete in: 1.213 secs +[2018-02-13T08:31:57.249] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:31:57.316] [INFO] cheese - inserting 1000 documents. first: Knock in and last: Oxford Council election, 2006 +[2018-02-13T08:31:57.380] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Al Gore criticisms and misconceptions and last: Welsh Canadian +[2018-02-13T08:31:57.382] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:31:57.535] [INFO] cheese - inserting 1000 documents. first: Austrian National Bank and last: Pieing +[2018-02-13T08:31:57.584] [INFO] cheese - inserting 1000 documents. first: File:AIUB-Oratory-Club.jpg and last: The Sackless Games +[2018-02-13T08:31:57.646] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Arbitration Committee Elections December 2013/Candidates/LFaraone and last: Joshua Vanlandingham +[2018-02-13T08:31:57.682] [INFO] cheese - batch complete in: 1.522 secs +[2018-02-13T08:31:57.715] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:31:57.728] [INFO] cheese - batch complete in: 1.493 secs +[2018-02-13T08:31:57.818] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:31:57.916] [INFO] cheese - inserting 1000 documents. first: Ooshima Naoto and last: HMS Intrepid +[2018-02-13T08:31:58.047] [INFO] cheese - inserting 1000 documents. first: 28817 Simoneflood and last: Joe Borg (screenwriter) +[2018-02-13T08:31:58.066] [INFO] cheese - batch complete in: 1.524 secs +[2018-02-13T08:31:58.101] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:31:58.419] [INFO] cheese - inserting 1000 documents. first: Czerwieńsk Commune and last: Template:Top German World War II Aces +[2018-02-13T08:31:58.532] [INFO] cheese - inserting 1000 documents. first: Joseph Ronald Quiñahan and last: Inas El Degheidi +[2018-02-13T08:31:58.586] [INFO] cheese - inserting 1000 documents. first: Mneumonic device and last: The Rolling Stones European Tour 1970 +[2018-02-13T08:31:58.653] [INFO] cheese - batch complete in: 1.271 secs +[2018-02-13T08:31:58.727] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:31:58.897] [INFO] cheese - inserting 1000 documents. first: Royal College of Music of Stockholm and last: Guichenot +[2018-02-13T08:31:58.902] [INFO] cheese - batch complete in: 1.22 secs +[2018-02-13T08:31:59.014] [INFO] cheese - inserting 1000 documents. first: Society of Muslim Brotherhood and last: Oklahoma State Highway 110 +[2018-02-13T08:31:59.109] [INFO] cheese - batch complete in: 1.98 secs +[2018-02-13T08:31:59.307] [INFO] cheese - batch complete in: 1.579 secs +[2018-02-13T08:31:59.398] [INFO] cheese - inserting 1000 documents. first: Category:Artists from Leiden and last: Reasons to Be Miserable (Part 10) +[2018-02-13T08:31:59.488] [INFO] cheese - inserting 1000 documents. first: 1981 World Weightlifting Championships and last: 2011 Samsung Securities Cup – Womens' Doubles +[2018-02-13T08:31:59.579] [INFO] cheese - batch complete in: 1.477 secs +[2018-02-13T08:31:59.722] [INFO] cheese - batch complete in: 1.904 secs +[2018-02-13T08:31:59.860] [INFO] cheese - inserting 1000 documents. first: Philautus hainanus and last: Jir Mahalleh, Shaft +[2018-02-13T08:31:59.930] [INFO] cheese - inserting 1000 documents. first: File:Bijou Bleu Bartholemew1.jpg and last: File:One Time Bells.jpg +[2018-02-13T08:31:59.947] [INFO] cheese - inserting 1000 documents. first: Helen St. John and last: FKF President's Cup +[2018-02-13T08:32:00.064] [INFO] cheese - batch complete in: 1.337 secs +[2018-02-13T08:32:00.137] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T08:32:00.156] [INFO] cheese - batch complete in: 1.501 secs +[2018-02-13T08:32:00.349] [INFO] cheese - inserting 1000 documents. first: Ticker tape and last: North Carolina Agriculture and Technology University +[2018-02-13T08:32:00.414] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adrian ferguson and last: Warday +[2018-02-13T08:32:00.424] [INFO] cheese - inserting 1000 documents. first: Jules Muck and last: 27417 Jessjohnson +[2018-02-13T08:32:00.675] [INFO] cheese - batch complete in: 1.095 secs +[2018-02-13T08:32:00.681] [INFO] cheese - batch complete in: 2.615 secs +[2018-02-13T08:32:00.695] [INFO] cheese - batch complete in: 1.388 secs +[2018-02-13T08:32:01.015] [INFO] cheese - inserting 1000 documents. first: Template:UNIFFAC football and last: Elmin Kurbegovic +[2018-02-13T08:32:01.175] [INFO] cheese - inserting 1000 documents. first: Liudolfings and last: Blue Max Droid +[2018-02-13T08:32:01.178] [INFO] cheese - inserting 1000 documents. first: English rugby premiership and last: Protochondrostoma +[2018-02-13T08:32:01.188] [INFO] cheese - inserting 1000 documents. first: Dundee Engine Plant and last: Peñamayor +[2018-02-13T08:32:01.274] [INFO] cheese - batch complete in: 2.165 secs +[2018-02-13T08:32:01.387] [INFO] cheese - batch complete in: 1.323 secs +[2018-02-13T08:32:01.425] [INFO] cheese - batch complete in: 1.288 secs +[2018-02-13T08:32:01.485] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Dorothy Arzner and last: St Peter's School (Cambridge) +[2018-02-13T08:32:01.647] [INFO] cheese - batch complete in: 1.925 secs +[2018-02-13T08:32:01.778] [INFO] cheese - batch complete in: 1.622 secs +[2018-02-13T08:32:01.867] [INFO] cheese - inserting 1000 documents. first: 27421 Nathanhan and last: Category:Carnivals in Saint Vincent and the Grenadines +[2018-02-13T08:32:02.007] [INFO] cheese - inserting 1000 documents. first: Coney Island Yards and last: Electronically-controlled Continuously Variable Transmission +[2018-02-13T08:32:02.097] [INFO] cheese - batch complete in: 1.422 secs +[2018-02-13T08:32:02.260] [INFO] cheese - batch complete in: 1.564 secs +[2018-02-13T08:32:02.421] [INFO] cheese - inserting 1000 documents. first: PLCγ and last: Sērā Mākyurī +[2018-02-13T08:32:02.470] [INFO] cheese - inserting 1000 documents. first: Bobo doll experiment and last: Bubble +[2018-02-13T08:32:02.532] [INFO] cheese - inserting 1000 documents. first: Category:Appalachian State Mountaineers and last: Osburga +[2018-02-13T08:32:02.568] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:32:02.574] [INFO] cheese - inserting 1000 documents. first: Katherin Yelick and last: Template:NFLAltPrimaryColor/doc +[2018-02-13T08:32:02.691] [INFO] cheese - inserting 1000 documents. first: Jamaican giant swallowtail and last: Huang (state) +[2018-02-13T08:32:02.681] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T08:32:02.765] [INFO] cheese - batch complete in: 2.084 secs +[2018-02-13T08:32:02.798] [INFO] cheese - batch complete in: 1.411 secs +[2018-02-13T08:32:02.902] [INFO] cheese - batch complete in: 1.255 secs +[2018-02-13T08:32:02.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject India/Assessment/Tag & Assess 2008/018 and last: Nimbb-diliman +[2018-02-13T08:32:03.074] [INFO] cheese - inserting 1000 documents. first: Category:Parades in Saint Vincent and the Grenadines and last: 𑃤 +[2018-02-13T08:32:03.253] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:32:03.281] [INFO] cheese - batch complete in: 1.501 secs +[2018-02-13T08:32:03.494] [INFO] cheese - inserting 1000 documents. first: Col. Flagg and last: Tornadoes by Year +[2018-02-13T08:32:03.655] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:32:03.667] [INFO] cheese - inserting 1000 documents. first: Châteaubernard and last: 1800 in art +[2018-02-13T08:32:03.693] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/NHMandSM/8th Month Report and last: Akademiska damkören lyran +[2018-02-13T08:32:03.838] [INFO] cheese - batch complete in: 1.577 secs +[2018-02-13T08:32:03.850] [INFO] cheese - inserting 1000 documents. first: Childless and last: Baitala deula +[2018-02-13T08:32:03.937] [INFO] cheese - inserting 1000 documents. first: 𑃥 and last: Wikipedia:LTA/Jermboy27 +[2018-02-13T08:32:03.950] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T08:32:04.047] [INFO] cheese - inserting 1000 documents. first: Category:Shropshire Yeomanry officers and last: Latitude 1 degree S +[2018-02-13T08:32:04.104] [INFO] cheese - batch complete in: 1.202 secs +[2018-02-13T08:32:04.115] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:32:04.132] [INFO] cheese - inserting 1000 documents. first: Marginal Utility and last: Beaches (film) +[2018-02-13T08:32:04.223] [INFO] cheese - batch complete in: 1.542 secs +[2018-02-13T08:32:04.429] [INFO] cheese - batch complete in: 1.662 secs +[2018-02-13T08:32:04.568] [INFO] cheese - inserting 1000 documents. first: Shoplifts and last: Wikipedia:Articles for deletion/Maxwell's House +[2018-02-13T08:32:04.598] [INFO] cheese - inserting 1000 documents. first: 3 (The Black Heart Procession album) and last: 46th Rocket Division +[2018-02-13T08:32:04.623] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:32:04.816] [INFO] cheese - batch complete in: 1.535 secs +[2018-02-13T08:32:04.990] [INFO] cheese - inserting 1000 documents. first: Fish-louse and last: Siege of Ganjaku +[2018-02-13T08:32:05.185] [INFO] cheese - inserting 1000 documents. first: Vishkheseh Mahalleh and last: Ron Burton (Dallas Cowboys) +[2018-02-13T08:32:05.228] [INFO] cheese - batch complete in: 1.573 secs +[2018-02-13T08:32:05.235] [INFO] cheese - inserting 1000 documents. first: Mini compact disc and last: Battle of Baçente +[2018-02-13T08:32:05.309] [INFO] cheese - batch complete in: 1.358 secs +[2018-02-13T08:32:05.385] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Clarke County, Georgia and last: Elisabeth-Louise Vigée Le Brun +[2018-02-13T08:32:05.495] [INFO] cheese - batch complete in: 1.39 secs +[2018-02-13T08:32:05.501] [INFO] cheese - inserting 1000 documents. first: Malovishersky Municipal District and last: Erez border crossing +[2018-02-13T08:32:05.512] [INFO] cheese - batch complete in: 1.674 secs +[2018-02-13T08:32:05.556] [INFO] cheese - inserting 1000 documents. first: Latitude 2 degrees S and last: Music For Boys +[2018-02-13T08:32:05.672] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:32:05.732] [INFO] cheese - batch complete in: 1.509 secs +[2018-02-13T08:32:06.012] [INFO] cheese - inserting 1000 documents. first: Les Infideles and last: Staatsexamen +[2018-02-13T08:32:06.113] [INFO] cheese - batch complete in: 1.297 secs +[2018-02-13T08:32:06.351] [INFO] cheese - inserting 1000 documents. first: 6th World Science Fiction Convention and last: Paul, Weiss, Rifkind, Wharton and Garrison +[2018-02-13T08:32:06.516] [INFO] cheese - inserting 1000 documents. first: Sansara Naga 1x2 and last: Yūko Kurita +[2018-02-13T08:32:06.522] [INFO] cheese - batch complete in: 1.294 secs +[2018-02-13T08:32:06.616] [INFO] cheese - inserting 1000 documents. first: The Fall of the House of Usher and last: Kingdom of Spain +[2018-02-13T08:32:06.669] [INFO] cheese - inserting 1000 documents. first: Lullubi and last: Wikipedia:Articles for deletion/Faith Harrington +[2018-02-13T08:32:06.712] [INFO] cheese - batch complete in: 1.217 secs +[2018-02-13T08:32:06.733] [INFO] cheese - inserting 1000 documents. first: Thomas Kuczynski and last: End-run +[2018-02-13T08:32:06.905] [INFO] cheese - batch complete in: 1.233 secs +[2018-02-13T08:32:06.930] [INFO] cheese - batch complete in: 1.417 secs +[2018-02-13T08:32:06.934] [INFO] cheese - batch complete in: 2.505 secs +[2018-02-13T08:32:07.288] [INFO] cheese - inserting 1000 documents. first: Portal:American football/Anniversaries/June 23 and last: O. C. Barber Colt Barn +[2018-02-13T08:32:07.430] [INFO] cheese - batch complete in: 1.317 secs +[2018-02-13T08:32:07.508] [INFO] cheese - inserting 1000 documents. first: File:WDDD station logo.png and last: Republic of Jamtland +[2018-02-13T08:32:07.543] [INFO] cheese - inserting 1000 documents. first: Granite Wash and last: Legislative district of Lapu-Lapu +[2018-02-13T08:32:07.605] [INFO] cheese - inserting 1000 documents. first: Bane Harbour and last: Type-checked +[2018-02-13T08:32:07.918] [INFO] cheese - batch complete in: 1.395 secs +[2018-02-13T08:32:07.951] [INFO] cheese - batch complete in: 2.642 secs +[2018-02-13T08:32:07.969] [INFO] cheese - batch complete in: 2.237 secs +[2018-02-13T08:32:08.028] [INFO] cheese - inserting 1000 documents. first: Kurita Yūko and last: Hulstia undulatella +[2018-02-13T08:32:08.246] [INFO] cheese - batch complete in: 1.534 secs +[2018-02-13T08:32:08.492] [INFO] cheese - inserting 1000 documents. first: Coralie Simmons and last: Cadillac Model S +[2018-02-13T08:32:08.590] [INFO] cheese - inserting 1000 documents. first: File:Cypress Point Creamery.jpg and last: Steinar Karlsen +[2018-02-13T08:32:08.595] [INFO] cheese - inserting 1000 documents. first: Abby Cunningham Ewing Sumner and last: Kamakura's proposed World Heritage sites +[2018-02-13T08:32:08.682] [INFO] cheese - batch complete in: 1.751 secs +[2018-02-13T08:32:08.851] [INFO] cheese - batch complete in: 1.421 secs +[2018-02-13T08:32:08.907] [INFO] cheese - batch complete in: 2.002 secs +[2018-02-13T08:32:09.045] [INFO] cheese - inserting 1000 documents. first: Ayana (name) and last: Quinn Sharp +[2018-02-13T08:32:09.124] [INFO] cheese - inserting 1000 documents. first: Consciousness expansion and last: Wikipedia:Sockpuppet investigations/AngelaVidal/Archive +[2018-02-13T08:32:09.229] [INFO] cheese - batch complete in: 1.277 secs +[2018-02-13T08:32:09.319] [INFO] cheese - inserting 1000 documents. first: Tegnsprak and last: Edward Rowlands +[2018-02-13T08:32:09.376] [INFO] cheese - inserting 1000 documents. first: Retroauricular lymph nodes and last: 1968 European Formula Two Championship +[2018-02-13T08:32:09.399] [INFO] cheese - batch complete in: 1.43 secs +[2018-02-13T08:32:09.476] [INFO] cheese - inserting 1000 documents. first: File:Goodbye (Bobo Stenson album).jpg and last: (9120) 1998 DR8 +[2018-02-13T08:32:09.636] [INFO] cheese - batch complete in: 1.718 secs +[2018-02-13T08:32:09.710] [INFO] cheese - batch complete in: 1.464 secs +[2018-02-13T08:32:09.769] [INFO] cheese - batch complete in: 2.834 secs +[2018-02-13T08:32:09.966] [INFO] cheese - inserting 1000 documents. first: Born to Be Bad (1950 film) and last: Murray Brown +[2018-02-13T08:32:10.147] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:32:10.259] [INFO] cheese - inserting 1000 documents. first: David Dorfman (choreographer) and last: Category:New Zealand national rugby union team coaches +[2018-02-13T08:32:10.321] [INFO] cheese - inserting 1000 documents. first: Cadillac Model T and last: Metamagnetism +[2018-02-13T08:32:10.350] [INFO] cheese - inserting 1000 documents. first: List of cities by country that have Stolpersteine and last: 2010 Speedway Premier League KOC +[2018-02-13T08:32:10.457] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:32:10.522] [INFO] cheese - batch complete in: 1.293 secs +[2018-02-13T08:32:10.549] [INFO] cheese - batch complete in: 1.866 secs +[2018-02-13T08:32:10.588] [INFO] cheese - inserting 1000 documents. first: Charles Critchett and last: ImaGemInc +[2018-02-13T08:32:10.697] [INFO] cheese - inserting 1000 documents. first: La Victoria Arduino and last: A Chrysanthemum Bursts in Cincoesquinas +[2018-02-13T08:32:10.740] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T08:32:10.914] [INFO] cheese - inserting 1000 documents. first: Category:2008 podcast debuts and last: February 2016 Pulwama militant siege +[2018-02-13T08:32:10.932] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:32:11.113] [INFO] cheese - batch complete in: 2.206 secs +[2018-02-13T08:32:11.191] [INFO] cheese - inserting 1000 documents. first: SAP Research and last: Slobodan Janković (disambiguation) +[2018-02-13T08:32:11.249] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T08:32:11.596] [INFO] cheese - inserting 1000 documents. first: Template:2014 Cascadia Cup and last: François Fages +[2018-02-13T08:32:11.653] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:32:11.673] [INFO] cheese - inserting 1000 documents. first: CH3NO2 and last: Obverse (logic) +[2018-02-13T08:32:11.786] [INFO] cheese - inserting 1000 documents. first: 2010 Cincinnati Bengals season and last: Wikipedia:Valued picture candidates/Bigelow Bridge +[2018-02-13T08:32:11.842] [INFO] cheese - batch complete in: 1.293 secs +[2018-02-13T08:32:11.881] [INFO] cheese - batch complete in: 1.423 secs +[2018-02-13T08:32:11.894] [INFO] cheese - inserting 1000 documents. first: Kineshma Urban Okrug and last: Category:1733 in Denmark +[2018-02-13T08:32:11.914] [INFO] cheese - inserting 1000 documents. first: Dynamic memory allocation and last: Zionist conspiracy theories regarding the September 11, 2001 Attacks +[2018-02-13T08:32:11.997] [INFO] cheese - inserting 1000 documents. first: Merchantville Country Club and last: Ecumenical Patriarch Photius II of Constantinople +[2018-02-13T08:32:12.047] [INFO] cheese - inserting 1000 documents. first: TNMD and last: Template:Taxonomy/Holmesina +[2018-02-13T08:32:12.054] [INFO] cheese - inserting 1000 documents. first: C. crispa and last: Klaw (comics) +[2018-02-13T08:32:12.126] [INFO] cheese - batch complete in: 1.386 secs +[2018-02-13T08:32:12.164] [INFO] cheese - batch complete in: 2.395 secs +[2018-02-13T08:32:12.200] [INFO] cheese - batch complete in: 1.268 secs +[2018-02-13T08:32:12.209] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T08:32:12.250] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:32:12.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Training/tour/be bold14 and last: Mount Whitecap +[2018-02-13T08:32:12.607] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:32:12.815] [INFO] cheese - inserting 1000 documents. first: University Park (Indianapolis, Indiana) and last: Bernard Fitzalan-Howard +[2018-02-13T08:32:12.906] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions by former country and last: Wikipedia:Sockpuppet investigations/90.217.191.31/Archive +[2018-02-13T08:32:12.914] [INFO] cheese - inserting 1000 documents. first: Compact Oxford Dictionary and last: Berberyan +[2018-02-13T08:32:12.932] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:32:12.962] [INFO] cheese - inserting 1000 documents. first: Independent Primary School Heads of Australia and last: Jennifer L. Knox +[2018-02-13T08:32:12.995] [INFO] cheese - inserting 1000 documents. first: Hsiahou Tun and last: Submarine telecommunications cable +[2018-02-13T08:32:12.998] [INFO] cheese - inserting 1000 documents. first: Kofi (comics) and last: Wikipedia:Articles for deletion/Today I Caught the Plague +[2018-02-13T08:32:13.028] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:32:13.066] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:32:13.154] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:32:13.204] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T08:32:13.185] [INFO] cheese - batch complete in: 1.339 secs +[2018-02-13T08:32:13.384] [INFO] cheese - inserting 1000 documents. first: Kani Seyf and last: José María Dueso +[2018-02-13T08:32:13.493] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:32:13.715] [INFO] cheese - inserting 1000 documents. first: Chico Carrasquel and last: Foreign terrorist organizations +[2018-02-13T08:32:13.854] [INFO] cheese - inserting 1000 documents. first: Svenska Cupen 1943 and last: Category:Bomber aircraft 1910-1919 +[2018-02-13T08:32:14.015] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:32:14.097] [INFO] cheese - batch complete in: 1.932 secs +[2018-02-13T08:32:14.285] [INFO] cheese - inserting 1000 documents. first: Samuel H. Hoge and last: Wikipedia:Articles for deletion/Fake Chapter Records +[2018-02-13T08:32:14.308] [INFO] cheese - inserting 1000 documents. first: Caithness Glass and last: I Megaliteres Epitihies (Mando album) +[2018-02-13T08:32:14.418] [INFO] cheese - batch complete in: 1.389 secs +[2018-02-13T08:32:14.422] [INFO] cheese - inserting 1000 documents. first: Mpaglamas and last: European Parliament election, 1979 +[2018-02-13T08:32:14.444] [INFO] cheese - inserting 1000 documents. first: Category:Shipping in Scotland and last: Country codes: R +[2018-02-13T08:32:14.447] [INFO] cheese - inserting 1000 documents. first: Snow Speedwell and last: Bácum Municipality +[2018-02-13T08:32:14.471] [INFO] cheese - batch complete in: 1.317 secs +[2018-02-13T08:32:14.559] [INFO] cheese - batch complete in: 1.355 secs +[2018-02-13T08:32:14.664] [INFO] cheese - inserting 1000 documents. first: Archaic-Early Basketmaker Era and last: Actinoplanes +[2018-02-13T08:32:14.665] [INFO] cheese - inserting 1000 documents. first: File:Sport Ancash Old.gif and last: Stereoelectronic effect +[2018-02-13T08:32:14.719] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:32:14.722] [INFO] cheese - batch complete in: 1.528 secs +[2018-02-13T08:32:14.742] [INFO] cheese - batch complete in: 1.809 secs +[2018-02-13T08:32:14.900] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T08:32:15.246] [INFO] cheese - inserting 1000 documents. first: MagillOn and last: Byron Smith (rugby league) +[2018-02-13T08:32:15.282] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:32:15.412] [INFO] cheese - inserting 1000 documents. first: Blue Movie (film) and last: 1998 World Rally Championship season +[2018-02-13T08:32:15.450] [INFO] cheese - inserting 1000 documents. first: Category:Fighter aircraft 1920-1929 and last: Izbičanj +[2018-02-13T08:32:15.507] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:32:15.511] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:32:15.535] [INFO] cheese - inserting 1000 documents. first: Banámichi Municipality and last: Chlorodius bidentatus +[2018-02-13T08:32:15.710] [INFO] cheese - inserting 1000 documents. first: Mowbray herald extraordinary and last: Category:National Basketball Association players from Lithuania +[2018-02-13T08:32:15.716] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:32:15.721] [INFO] cheese - inserting 1000 documents. first: Moskow and last: Barnstable County +[2018-02-13T08:32:15.762] [INFO] cheese - inserting 1000 documents. first: Melkizedek and last: McAlmond House +[2018-02-13T08:32:15.799] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:32:15.834] [INFO] cheese - inserting 1000 documents. first: ANSI character set and last: Quadraplegia +[2018-02-13T08:32:15.882] [INFO] cheese - inserting 1000 documents. first: Czechowice-Dziedzice Commune and last: HR 603 +[2018-02-13T08:32:15.936] [INFO] cheese - batch complete in: 1.377 secs +[2018-02-13T08:32:16.033] [INFO] cheese - batch complete in: 1.936 secs +[2018-02-13T08:32:16.069] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:32:16.119] [INFO] cheese - batch complete in: 1.396 secs +[2018-02-13T08:32:16.345] [INFO] cheese - inserting 1000 documents. first: Category:Israeli military aircraft 1980-1989 and last: Wikipedia:WikiProject Spam/LinkReports/jcbrasil.webnode.com +[2018-02-13T08:32:16.419] [INFO] cheese - inserting 1000 documents. first: Li Shan (volleybal) and last: Jan Tarło (XV-1550) +[2018-02-13T08:32:16.496] [INFO] cheese - inserting 1000 documents. first: Confucius Lives Next Door: What living in the East teaches us about living in the west and last: Richard Greeff +[2018-02-13T08:32:16.506] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:32:16.628] [INFO] cheese - batch complete in: 1.116 secs +[2018-02-13T08:32:16.744] [INFO] cheese - inserting 1000 documents. first: Chlorodiella bidentata and last: KLICK syndrome +[2018-02-13T08:32:16.755] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:32:16.858] [INFO] cheese - inserting 1000 documents. first: Pentecostalists and last: Andrica Conjecture +[2018-02-13T08:32:16.888] [INFO] cheese - inserting 1000 documents. first: Template:Foreign relations of Moldova and last: Diocese of Boulogne-sur-Mer +[2018-02-13T08:32:16.909] [INFO] cheese - batch complete in: 1.193 secs +[2018-02-13T08:32:17.039] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:32:17.069] [INFO] cheese - batch complete in: 1.132 secs +[2018-02-13T08:32:17.300] [INFO] cheese - inserting 1000 documents. first: Mikołaj Firlej (?-1588) and last: The Blockbuster Buster +[2018-02-13T08:32:17.316] [INFO] cheese - inserting 1000 documents. first: Gemmae and last: Borough Fen +[2018-02-13T08:32:17.380] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:32:17.485] [INFO] cheese - batch complete in: 1.365 secs +[2018-02-13T08:32:17.559] [INFO] cheese - inserting 1000 documents. first: Carlos Motta Taracena and last: Baby Aston +[2018-02-13T08:32:17.606] [INFO] cheese - inserting 1000 documents. first: Q+/Papias hypothesis and last: Argyllshire by-election, 1940 +[2018-02-13T08:32:17.613] [INFO] cheese - inserting 1000 documents. first: Barnes County and last: STS-83 +[2018-02-13T08:32:17.720] [INFO] cheese - batch complete in: 1.214 secs +[2018-02-13T08:32:17.866] [INFO] cheese - inserting 1000 documents. first: Andrzej Bialynicki-Birula and last: Manitoba Junior Hockey League 2007 +[2018-02-13T08:32:17.885] [INFO] cheese - inserting 1000 documents. first: Krumlov (disambiguation) and last: The Methods of Ethics +[2018-02-13T08:32:17.893] [INFO] cheese - batch complete in: 1.138 secs +[2018-02-13T08:32:17.931] [INFO] cheese - batch complete in: 1.898 secs +[2018-02-13T08:32:17.987] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:32:18.031] [INFO] cheese - inserting 1000 documents. first: Alfred Barton Rendle and last: Wikipedia:Peer review/List of elements by nuclear stability/archive1 +[2018-02-13T08:32:18.051] [INFO] cheese - batch complete in: 1.142 secs +[2018-02-13T08:32:18.219] [INFO] cheese - batch complete in: 1.179 secs +[2018-02-13T08:32:18.325] [INFO] cheese - inserting 1000 documents. first: Nationwide League (Kenya Rugby Union) and last: Archdiocese of St Andrews (Episcopal) +[2018-02-13T08:32:18.452] [INFO] cheese - inserting 1000 documents. first: Matthew Crabb and last: Category:Soviet sport aircraft 1980-1989 +[2018-02-13T08:32:18.487] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:32:18.530] [INFO] cheese - batch complete in: 1.149 secs +[2018-02-13T08:32:18.640] [INFO] cheese - inserting 1000 documents. first: Podcast Pickle and last: Statute of Uses Act 1535 +[2018-02-13T08:32:18.851] [INFO] cheese - inserting 1000 documents. first: Invictus (Means) Unconquered and last: Sigismunda mourning over the Heart of Guiscardo +[2018-02-13T08:32:18.935] [INFO] cheese - batch complete in: 1.45 secs +[2018-02-13T08:32:18.955] [INFO] cheese - inserting 1000 documents. first: Na-Meo language and last: Paul Clauson +[2018-02-13T08:32:19.013] [INFO] cheese - inserting 1000 documents. first: Multipurpose Laboratory Module and last: Bilton Junior School +[2018-02-13T08:32:18.887] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:32:19.063] [INFO] cheese - inserting 1000 documents. first: Alfred Neumann (writer) and last: Small red damselfly +[2018-02-13T08:32:19.214] [INFO] cheese - batch complete in: 1.321 secs +[2018-02-13T08:32:19.232] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T08:32:19.430] [INFO] cheese - batch complete in: 1.443 secs +[2018-02-13T08:32:19.455] [INFO] cheese - inserting 1000 documents. first: Archdiocese of Saint Andrew's (Episcopal) and last: Rabdion grovesi +[2018-02-13T08:32:19.468] [INFO] cheese - inserting 1000 documents. first: Goločelo (Stanovo) and last: Nur az-Zaman +[2018-02-13T08:32:19.664] [INFO] cheese - inserting 1000 documents. first: Furmint and last: Mūlamadhyamakakārikā +[2018-02-13T08:32:19.677] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T08:32:19.670] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:32:19.938] [INFO] cheese - batch complete in: 2.006 secs +[2018-02-13T08:32:20.227] [INFO] cheese - inserting 1000 documents. first: File:Girl Guides South Africa.png and last: Della Pia Glacier +[2018-02-13T08:32:20.259] [INFO] cheese - inserting 1000 documents. first: ISO 8601:1988 and last: Armand Louis de Gontaut-Biron +[2018-02-13T08:32:20.293] [INFO] cheese - inserting 1000 documents. first: Craigmore, Zimbabwe and last: Busy wait +[2018-02-13T08:32:20.382] [INFO] cheese - batch complete in: 1.168 secs +[2018-02-13T08:32:20.410] [INFO] cheese - batch complete in: 1.523 secs +[2018-02-13T08:32:20.437] [INFO] cheese - inserting 1000 documents. first: Tillandsia eizii and last: 2010 Copa Rommel Fernández +[2018-02-13T08:32:20.482] [INFO] cheese - inserting 1000 documents. first: Jessica Denay and last: Roman Catholic Diocese of St. Andrew's +[2018-02-13T08:32:20.549] [INFO] cheese - batch complete in: 1.614 secs +[2018-02-13T08:32:20.649] [INFO] cheese - batch complete in: 1.417 secs +[2018-02-13T08:32:20.664] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:32:20.758] [INFO] cheese - inserting 1000 documents. first: File:OtisSkinner.jpg and last: Konzo +[2018-02-13T08:32:20.785] [INFO] cheese - inserting 1000 documents. first: Fitzhugh Mounds and last: File:Zbirka - Doktor Sen.jpeg +[2018-02-13T08:32:20.884] [INFO] cheese - batch complete in: 1.453 secs +[2018-02-13T08:32:20.946] [INFO] cheese - batch complete in: 1.269 secs +[2018-02-13T08:32:21.135] [INFO] cheese - inserting 1000 documents. first: California Grand Casino and last: Ty Cullen +[2018-02-13T08:32:21.233] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:32:21.257] [INFO] cheese - inserting 1000 documents. first: Template:Maryland-basketball-team-stub and last: Wish chip +[2018-02-13T08:32:21.298] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of St Andrew's and last: 935th Military Airlift Group +[2018-02-13T08:32:21.358] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:32:21.384] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:32:21.501] [INFO] cheese - inserting 1000 documents. first: Copa Rommel Fernandez 2010 and last: File:Rough 'n' Tumble.jpg +[2018-02-13T08:32:21.590] [INFO] cheese - inserting 1000 documents. first: Anglican Church of Australia and last: Compass variation +[2018-02-13T08:32:21.607] [INFO] cheese - inserting 1000 documents. first: Philosophies of time and last: Cover Girl (New Kids on the Block song) +[2018-02-13T08:32:21.607] [INFO] cheese - inserting 1000 documents. first: Category:Columbia University Graduate School of Journalism faculty and last: File:ThermiteReaction Crop.jpg +[2018-02-13T08:32:21.651] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:32:21.718] [INFO] cheese - inserting 1000 documents. first: Crazy Little Thing Called Love (D:TNG episode) and last: Wikipedia:Articles for deletion/Thomas & Friends: A Day at the Races +[2018-02-13T08:32:21.785] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:32:21.780] [INFO] cheese - batch complete in: 1.841 secs +[2018-02-13T08:32:21.809] [INFO] cheese - batch complete in: 1.26 secs +[2018-02-13T08:32:21.938] [INFO] cheese - batch complete in: 1.054 secs +[2018-02-13T08:32:22.130] [INFO] cheese - inserting 1000 documents. first: Category:Law enforcement agencies of Northern Ireland and last: 2000 North American Championship +[2018-02-13T08:32:22.144] [INFO] cheese - inserting 1000 documents. first: Category:Writers from São Vicente, Cape Verde and last: Portal:Rock music/OnThisDay/February 10 +[2018-02-13T08:32:22.172] [INFO] cheese - inserting 1000 documents. first: Chatham-Kent—Leamington and last: File:FreedomOf'76.jpeg +[2018-02-13T08:32:22.173] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:32:22.218] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:32:22.305] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T08:32:22.506] [INFO] cheese - inserting 1000 documents. first: Problem fiction and last: Kabaka Ronald +[2018-02-13T08:32:22.696] [INFO] cheese - inserting 1000 documents. first: St Bernard's Catholic School, Buckinghamshire and last: Dave Reid (ice hockey) +[2018-02-13T08:32:22.711] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:32:22.752] [INFO] cheese - inserting 1000 documents. first: Edgar Dykstra and last: Adagur H. Vishwanath +[2018-02-13T08:32:22.903] [INFO] cheese - batch complete in: 1.117 secs +[2018-02-13T08:32:23.043] [INFO] cheese - batch complete in: 1.234 secs +[2018-02-13T08:32:23.229] [INFO] cheese - inserting 1000 documents. first: Rafflesia consueloae and last: Casco Histórico de Vicálvaro +[2018-02-13T08:32:23.239] [INFO] cheese - inserting 1000 documents. first: Awareness days and last: Poznań Society of Friends of Arts and Sciences +[2018-02-13T08:32:23.298] [INFO] cheese - inserting 1000 documents. first: MN-111 mine and last: Kotapalle +[2018-02-13T08:32:23.389] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:32:23.427] [INFO] cheese - batch complete in: 1.209 secs +[2018-02-13T08:32:23.527] [INFO] cheese - batch complete in: 1.589 secs +[2018-02-13T08:32:23.600] [INFO] cheese - inserting 1000 documents. first: 21 Lutetia and last: Sing Lung +[2018-02-13T08:32:23.730] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dubrovnik-online.net and last: Up All Night – Deric Ruttan Live +[2018-02-13T08:32:23.769] [INFO] cheese - batch complete in: 1.987 secs +[2018-02-13T08:32:23.847] [INFO] cheese - inserting 1000 documents. first: Lonely Nights (song) and last: Template:User Baltic states +[2018-02-13T08:32:23.864] [INFO] cheese - inserting 1000 documents. first: Lilu shi and last: List of mayors of Merton +[2018-02-13T08:32:23.865] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:32:24.007] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:32:24.043] [INFO] cheese - batch complete in: 1.738 secs +[2018-02-13T08:32:24.256] [INFO] cheese - inserting 1000 documents. first: Nature Coast, Florida and last: University admissions +[2018-02-13T08:32:24.271] [INFO] cheese - inserting 1000 documents. first: Category:Vicálvaro and last: Category:1507 establishments in India +[2018-02-13T08:32:24.332] [INFO] cheese - inserting 1000 documents. first: Dmitry I Starshiy and last: Birou +[2018-02-13T08:32:24.391] [INFO] cheese - batch complete in: 1.348 secs +[2018-02-13T08:32:24.396] [INFO] cheese - batch complete in: 0.969 secs +[2018-02-13T08:32:24.533] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:32:24.599] [INFO] cheese - inserting 1000 documents. first: Kouthala and last: The Duchess of Kent +[2018-02-13T08:32:24.806] [INFO] cheese - inserting 1000 documents. first: Hundred of Taunton Deane and last: Cetancodonta +[2018-02-13T08:32:24.808] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T08:32:24.899] [INFO] cheese - inserting 1000 documents. first: Richard Williams (cricketer, born 1957) and last: 2013-14 Oregon State Beavers women's basketball team +[2018-02-13T08:32:24.916] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:32:24.923] [INFO] cheese - inserting 1000 documents. first: NYS Route 291 and last: Speechmakers +[2018-02-13T08:32:25.006] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:32:25.154] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T08:32:25.257] [INFO] cheese - inserting 1000 documents. first: Category:Rodent taxonomy and last: Ride of Your Life +[2018-02-13T08:32:25.355] [INFO] cheese - inserting 1000 documents. first: Chéng Lóng and last: Doc Daneeka +[2018-02-13T08:32:25.384] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:32:25.651] [INFO] cheese - batch complete in: 1.882 secs +[2018-02-13T08:32:25.714] [INFO] cheese - inserting 1000 documents. first: Skullstep and last: Danny Lamb +[2018-02-13T08:32:25.755] [INFO] cheese - inserting 1000 documents. first: MBM (filename) and last: Tom Ferrick +[2018-02-13T08:32:25.767] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Trollaxor (2nd nomination) and last: Bloubergstrand +[2018-02-13T08:32:25.810] [INFO] cheese - batch complete in: 1.276 secs +[2018-02-13T08:32:25.948] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:32:26.029] [INFO] cheese - batch complete in: 1.638 secs +[2018-02-13T08:32:26.043] [INFO] cheese - inserting 1000 documents. first: Borah and last: S. lanceolata +[2018-02-13T08:32:26.169] [INFO] cheese - inserting 1000 documents. first: Wallace Smith (illustrator) and last: Penthina thapsiana +[2018-02-13T08:32:26.170] [INFO] cheese - batch complete in: 1.254 secs +[2018-02-13T08:32:26.206] [INFO] cheese - inserting 1000 documents. first: Speech-makers and last: Wikipedia:LSDL +[2018-02-13T08:32:26.282] [INFO] cheese - inserting 1000 documents. first: Night of the Auk and last: Category:National Register of Historic Places in Kings County, California +[2018-02-13T08:32:26.353] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:32:26.372] [INFO] cheese - batch complete in: 1.366 secs +[2018-02-13T08:32:26.448] [INFO] cheese - batch complete in: 1.063 secs +[2018-02-13T08:32:26.834] [INFO] cheese - inserting 1000 documents. first: Leo Kasper and last: Betta pellets +[2018-02-13T08:32:26.837] [INFO] cheese - inserting 1000 documents. first: Transient acantholytic dermatosis and last: R684 road (Ireland) +[2018-02-13T08:32:26.877] [INFO] cheese - inserting 1000 documents. first: Lanceolata and last: Fanshawe (surname) +[2018-02-13T08:32:26.919] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:32:26.940] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:32:27.008] [INFO] cheese - inserting 1000 documents. first: Category:1965 in the Solomon Islands and last: Sophronica bituberculata +[2018-02-13T08:32:26.992] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:32:27.146] [INFO] cheese - inserting 1000 documents. first: Ayşe Hatun (wife of Bayezid II) and last: Category:People from Tengushevsky District +[2018-02-13T08:32:27.151] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:32:27.162] [INFO] cheese - inserting 1000 documents. first: LET SLEEPING DOGS LIE and last: Miroslav Bednařík +[2018-02-13T08:32:27.218] [INFO] cheese - inserting 1000 documents. first: Arrondissement of Nanterre and last: File:Nolan10.jpg +[2018-02-13T08:32:27.249] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:32:27.238] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:32:27.335] [INFO] cheese - inserting 1000 documents. first: Glyfada and last: Lancashire and Yorkshire Railway +[2018-02-13T08:32:27.396] [INFO] cheese - batch complete in: 1.365 secs +[2018-02-13T08:32:27.607] [INFO] cheese - batch complete in: 1.956 secs +[2018-02-13T08:32:27.904] [INFO] cheese - inserting 1000 documents. first: Template:Biology-journal-stub and last: Ferenc Sánta +[2018-02-13T08:32:27.911] [INFO] cheese - inserting 1000 documents. first: Category:Transport in the City of Sunderland and last: Portal:Numismatics/Banknotes/5 +[2018-02-13T08:32:28.002] [INFO] cheese - inserting 1000 documents. first: Craig Shapiro and last: Template:Montana Grizzlies football navbox +[2018-02-13T08:32:28.019] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:32:28.032] [INFO] cheese - batch complete in: 1.092 secs +[2018-02-13T08:32:28.039] [INFO] cheese - inserting 1000 documents. first: Administrative division of the Grand Duchy of Lithuania (1569–1795) and last: Silent Comedy +[2018-02-13T08:32:28.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Demo '93 and last: Move act +[2018-02-13T08:32:28.178] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:32:28.210] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:32:28.296] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T08:32:28.644] [INFO] cheese - inserting 1000 documents. first: Sir Nikolaus Pevsner and last: Primrose Gardner +[2018-02-13T08:32:28.786] [INFO] cheese - batch complete in: 1.39 secs +[2018-02-13T08:32:28.822] [INFO] cheese - inserting 1000 documents. first: Category:Tourism in Jharkhand and last: International Federation for Information and Documentation +[2018-02-13T08:32:28.860] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Michael Jackson/Barnstar Workshop and last: Jascinda barrett +[2018-02-13T08:32:28.906] [INFO] cheese - inserting 1000 documents. first: Sophronica bituberosa and last: Sternoptyx diaphana +[2018-02-13T08:32:29.002] [INFO] cheese - inserting 1000 documents. first: National Board for Safeguarding Children in the Catholic Church and last: Eunice W. Johnson +[2018-02-13T08:32:29.014] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:32:29.034] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:32:29.047] [INFO] cheese - inserting 1000 documents. first: Cigno and last: July Revolution of 1968 +[2018-02-13T08:32:29.105] [INFO] cheese - batch complete in: 1.954 secs +[2018-02-13T08:32:29.109] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:32:29.111] [INFO] cheese - inserting 1000 documents. first: Oxymora and last: Scooter (band) +[2018-02-13T08:32:29.233] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:32:29.335] [INFO] cheese - batch complete in: 1.727 secs +[2018-02-13T08:32:29.535] [INFO] cheese - inserting 1000 documents. first: This Night (song) and last: Category:Heaven Below albums +[2018-02-13T08:32:29.668] [INFO] cheese - inserting 1000 documents. first: Pitelis and last: Category:Roman Catholic churches in West Virginia +[2018-02-13T08:32:29.669] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:32:29.781] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:32:29.794] [INFO] cheese - inserting 1000 documents. first: Second Italian-Abyssian War and last: Mikhail Iampolski +[2018-02-13T08:32:29.888] [INFO] cheese - inserting 1000 documents. first: July 1968 revolution and last: Projekat Rastko +[2018-02-13T08:32:29.886] [INFO] cheese - inserting 1000 documents. first: Marinestation Nordsee and last: Thomas Buchmayer +[2018-02-13T08:32:29.925] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:32:29.955] [INFO] cheese - inserting 1000 documents. first: Primo Victoria and last: Charles Barnard (castaway) +[2018-02-13T08:32:29.964] [INFO] cheese - inserting 1000 documents. first: USS Observation Island (AGM-23) and last: Mark Wardell +[2018-02-13T08:32:30.039] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:32:30.048] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:32:30.063] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:32:30.215] [INFO] cheese - batch complete in: 1.428 secs +[2018-02-13T08:32:30.466] [INFO] cheese - inserting 1000 documents. first: Leximetrics and last: Category:Articles needing cleanup from December 2013 +[2018-02-13T08:32:30.645] [INFO] cheese - inserting 1000 documents. first: State Route 441 (New York) and last: David Neal +[2018-02-13T08:32:30.664] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:32:30.896] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:32:30.955] [INFO] cheese - inserting 1000 documents. first: Jianqiao Airport and last: File:Woodrow Wilson High School (Washington, D.C.) logo.jpg +[2018-02-13T08:32:31.023] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1560s BC and last: Terri Nickels +[2018-02-13T08:32:31.069] [INFO] cheese - inserting 1000 documents. first: Category:United States Virgin Islands-related lists and last: Wikipedia:Version 1.0 Editorial Team/India articles by quality/97 +[2018-02-13T08:32:31.131] [INFO] cheese - batch complete in: 1.091 secs +[2018-02-13T08:32:31.166] [INFO] cheese - inserting 1000 documents. first: Yohlmo language and last: To Love-Ru episodes +[2018-02-13T08:32:31.201] [INFO] cheese - batch complete in: 1.138 secs +[2018-02-13T08:32:31.284] [INFO] cheese - batch complete in: 1.359 secs +[2018-02-13T08:32:31.372] [INFO] cheese - inserting 1000 documents. first: Billy(Billy and Mandy) and last: Unesco masterpieces +[2018-02-13T08:32:31.396] [INFO] cheese - batch complete in: 1.348 secs +[2018-02-13T08:32:31.518] [INFO] cheese - inserting 1000 documents. first: John Forrest (Victorian politician) and last: David Auburn +[2018-02-13T08:32:31.527] [INFO] cheese - batch complete in: 1.312 secs +[2018-02-13T08:32:31.738] [INFO] cheese - inserting 1000 documents. first: Category:Use New Zealand English from December 2013 and last: Bread and Roses (1993 film) +[2018-02-13T08:32:31.746] [INFO] cheese - batch complete in: 2.41 secs +[2018-02-13T08:32:31.843] [INFO] cheese - batch complete in: 1.179 secs +[2018-02-13T08:32:31.933] [INFO] cheese - inserting 1000 documents. first: Music schools in Germany and last: Dunakisfalud +[2018-02-13T08:32:31.935] [INFO] cheese - inserting 1000 documents. first: Borinqueña and last: Janet Alexander +[2018-02-13T08:32:31.995] [INFO] cheese - inserting 1000 documents. first: I Wanna Go Backwards and last: Ślemień Commune +[2018-02-13T08:32:32.103] [INFO] cheese - batch complete in: 1.207 secs +[2018-02-13T08:32:32.118] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Isla Riordan/Archive and last: File:Grateful Edyta Gorniak.jpeg +[2018-02-13T08:32:32.111] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:32:32.173] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:32:32.242] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:32:32.282] [INFO] cheese - inserting 1000 documents. first: The First Cathedral and last: Florence Reville Gibbs +[2018-02-13T08:32:32.383] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:32:32.533] [INFO] cheese - inserting 1000 documents. first: Gmina Slemien and last: Wasewo Commune +[2018-02-13T08:32:32.561] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T08:32:32.613] [INFO] cheese - inserting 1000 documents. first: Ostkaka and last: The Highlight Reel +[2018-02-13T08:32:32.671] [INFO] cheese - inserting 1000 documents. first: Category:Hermitages in Croatia and last: Mantispoidea +[2018-02-13T08:32:32.814] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:32:32.878] [INFO] cheese - batch complete in: 1.351 secs +[2018-02-13T08:32:32.957] [INFO] cheese - inserting 1000 documents. first: Trait Leadership and last: Badminton at the 2003 All-Africa Games +[2018-02-13T08:32:33.034] [INFO] cheese - inserting 1000 documents. first: Michel Le Denmat and last: Category:Captains General of the Church +[2018-02-13T08:32:33.117] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:32:33.179] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:32:33.234] [INFO] cheese - inserting 1000 documents. first: Category:Victorian architecture in Rhode Island and last: Choiskiy Raion +[2018-02-13T08:32:33.385] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T08:32:33.627] [INFO] cheese - inserting 1000 documents. first: Honda Ishiro and last: Infield fly rule +[2018-02-13T08:32:33.635] [INFO] cheese - inserting 1000 documents. first: Category:Mumbai templates and last: Nikolaj Koch-Hansen +[2018-02-13T08:32:33.650] [INFO] cheese - inserting 1000 documents. first: David Kelley (disambiguation) and last: Fresno, CA MSA +[2018-02-13T08:32:33.748] [INFO] cheese - batch complete in: 1.187 secs +[2018-02-13T08:32:33.932] [INFO] cheese - inserting 1000 documents. first: Category:Mantispoidea and last: Category:Census-designated places in Tompkins County, New York +[2018-02-13T08:32:33.945] [INFO] cheese - batch complete in: 2.199 secs +[2018-02-13T08:32:34.045] [INFO] cheese - batch complete in: 1.662 secs +[2018-02-13T08:32:34.107] [INFO] cheese - inserting 1000 documents. first: Liane Cartman and last: Rolls-Royce Hawk +[2018-02-13T08:32:34.128] [INFO] cheese - inserting 1000 documents. first: Brett Breitkreuz and last: Wikipedia:Today's featured article/October 28, 2011 +[2018-02-13T08:32:34.171] [INFO] cheese - inserting 1000 documents. first: 1961 New Mexico State Aggies football team and last: Stephensoniella (genus) +[2018-02-13T08:32:34.217] [INFO] cheese - batch complete in: 1.403 secs +[2018-02-13T08:32:34.313] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T08:32:34.432] [INFO] cheese - batch complete in: 1.253 secs +[2018-02-13T08:32:34.495] [INFO] cheese - batch complete in: 1.617 secs +[2018-02-13T08:32:34.875] [INFO] cheese - inserting 1000 documents. first: Choiski Raion and last: Zorbees +[2018-02-13T08:32:34.988] [INFO] cheese - batch complete in: 1.603 secs +[2018-02-13T08:32:35.129] [INFO] cheese - inserting 1000 documents. first: Augustus Stephenson and last: Henley byelection +[2018-02-13T08:32:35.164] [INFO] cheese - inserting 1000 documents. first: Fresno-Madera, CA CSA and last: File:P-K Language Method fig6.png +[2018-02-13T08:32:35.196] [INFO] cheese - batch complete in: 1.448 secs +[2018-02-13T08:32:35.250] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Ulster County, New York and last: Alabama crimson +[2018-02-13T08:32:35.289] [INFO] cheese - batch complete in: 1.244 secs +[2018-02-13T08:32:35.373] [INFO] cheese - inserting 1000 documents. first: Outer Mongolia (modern) and last: Koguryo people +[2018-02-13T08:32:35.435] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:32:35.440] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T08:32:35.482] [INFO] cheese - inserting 1000 documents. first: Zhestky and last: Alliance des Mouvements pour l'Emergence du Niger +[2018-02-13T08:32:35.493] [INFO] cheese - inserting 1000 documents. first: Duffing differential equation and last: Philosophy in the Tragic Age of the Greeks +[2018-02-13T08:32:35.618] [INFO] cheese - batch complete in: 1.305 secs +[2018-02-13T08:32:35.667] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T08:32:35.788] [INFO] cheese - inserting 1000 documents. first: File:Pijibeofestival.jpg and last: Einar Bragi Sigurðsson +[2018-02-13T08:32:35.846] [INFO] cheese - inserting 1000 documents. first: Labour Zionism and last: The Crusades +[2018-02-13T08:32:35.925] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:32:36.038] [INFO] cheese - inserting 1000 documents. first: Xwáýxway and last: Schiller–Duval body +[2018-02-13T08:32:36.043] [INFO] cheese - batch complete in: 2.098 secs +[2018-02-13T08:32:36.151] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:32:36.184] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian pop musicians and last: Pedro Nuno Colon de Portugal +[2018-02-13T08:32:36.227] [INFO] cheese - inserting 1000 documents. first: Category:Infocomm in Singapore and last: Paul Kitchen (musician) +[2018-02-13T08:32:36.348] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:32:36.412] [INFO] cheese - inserting 1000 documents. first: Zipit Wireless Messenger (Z2) and last: Celius Dougherty +[2018-02-13T08:32:36.429] [INFO] cheese - batch complete in: 0.994 secs +[2018-02-13T08:32:36.518] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:32:36.593] [INFO] cheese - inserting 1000 documents. first: Baxterley, Warwickshire and last: Clark Mountain Range +[2018-02-13T08:32:36.683] [INFO] cheese - inserting 1000 documents. first: Category:Fictional Special Air Service personnel and last: Friend and Lover +[2018-02-13T08:32:36.743] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:32:36.787] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:32:36.823] [INFO] cheese - inserting 1000 documents. first: Ornithoctonus gadgili and last: World War II Memorial (disambiguation) +[2018-02-13T08:32:37.032] [INFO] cheese - batch complete in: 1.414 secs +[2018-02-13T08:32:37.124] [INFO] cheese - inserting 1000 documents. first: Madison central high school and last: Peak Dale, Derbyshire +[2018-02-13T08:32:37.169] [INFO] cheese - inserting 1000 documents. first: Big fan and last: Paulist Press +[2018-02-13T08:32:37.314] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:32:37.413] [INFO] cheese - batch complete in: 1.262 secs +[2018-02-13T08:32:37.422] [INFO] cheese - inserting 1000 documents. first: File:The Bird is Free Album Cover.jpg and last: Sipahsalar +[2018-02-13T08:32:37.425] [INFO] cheese - inserting 1000 documents. first: Cluster chord and last: Dennis Waterman +[2018-02-13T08:32:37.544] [INFO] cheese - batch complete in: 1.115 secs +[2018-02-13T08:32:37.546] [INFO] cheese - inserting 1000 documents. first: တင်အောင်မြင့်ဦး and last: Jimmy Dunn (Scottish footballer born 1923) +[2018-02-13T08:32:37.601] [INFO] cheese - batch complete in: 1.558 secs +[2018-02-13T08:32:37.776] [INFO] cheese - batch complete in: 1.258 secs +[2018-02-13T08:32:37.812] [INFO] cheese - inserting 1000 documents. first: Tender Comrade and last: File:Favouritehives.jpg +[2018-02-13T08:32:37.836] [INFO] cheese - inserting 1000 documents. first: Army Aviation Corps (Germany) and last: Wikipedia:Articles for deletion/Pipestone, Alberta +[2018-02-13T08:32:37.964] [INFO] cheese - batch complete in: 1.221 secs +[2018-02-13T08:32:37.986] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:32:38.030] [INFO] cheese - inserting 1000 documents. first: Chavdartsi (disambiguation) and last: Yaletown–Roundhouse Station +[2018-02-13T08:32:38.119] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:32:38.165] [INFO] cheese - inserting 1000 documents. first: TN Permit and last: Portal:West Bengal/Did you know/37 +[2018-02-13T08:32:38.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mysterious Universe and last: Roman Catholic Diocese of Formosa, Brazil +[2018-02-13T08:32:38.354] [INFO] cheese - batch complete in: 1.04 secs +[2018-02-13T08:32:38.434] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:32:38.466] [INFO] cheese - inserting 1000 documents. first: LUTA Sportswear and last: Bishop McGuinness Catholic High School +[2018-02-13T08:32:38.670] [INFO] cheese - batch complete in: 1.126 secs +[2018-02-13T08:32:38.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/African Icons and last: Island castle +[2018-02-13T08:32:39.032] [INFO] cheese - inserting 1000 documents. first: Manius Aquillius (consul 129 BC) and last: Moon Landing Hoax +[2018-02-13T08:32:39.051] [INFO] cheese - inserting 1000 documents. first: 1920 Tulsa Orange and Black football team and last: Category:Controversies in Brazil +[2018-02-13T08:32:39.164] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pocahontas, Alberta and last: File:Sakartvelos Skauturi Modzraobis Organizatsia 1992.svg +[2018-02-13T08:32:39.233] [INFO] cheese - batch complete in: 1.457 secs +[2018-02-13T08:32:39.326] [INFO] cheese - batch complete in: 1.207 secs +[2018-02-13T08:32:39.434] [INFO] cheese - batch complete in: 1.47 secs +[2018-02-13T08:32:39.446] [INFO] cheese - inserting 1000 documents. first: Annoyed grunt and last: St Louis Browns +[2018-02-13T08:32:39.578] [INFO] cheese - batch complete in: 1.592 secs +[2018-02-13T08:32:39.927] [INFO] cheese - inserting 1000 documents. first: Moue and last: We Did It +[2018-02-13T08:32:40.096] [INFO] cheese - inserting 1000 documents. first: Ruri no shima and last: File:Lords of Madness book cover.jpg +[2018-02-13T08:32:40.118] [INFO] cheese - batch complete in: 2.516 secs +[2018-02-13T08:32:40.238] [INFO] cheese - inserting 1000 documents. first: Bishop McGuinness High School and last: Nau Garan +[2018-02-13T08:32:40.232] [INFO] cheese - batch complete in: 1.79 secs +[2018-02-13T08:32:40.468] [INFO] cheese - batch complete in: 2.113 secs +[2018-02-13T08:32:40.713] [INFO] cheese - batch complete in: 2.043 secs +[2018-02-13T08:32:41.188] [INFO] cheese - inserting 1000 documents. first: Disparagement of goods and last: Burlos +[2018-02-13T08:32:41.271] [INFO] cheese - inserting 1000 documents. first: George Pruteanu and last: CYD +[2018-02-13T08:32:41.283] [INFO] cheese - inserting 1000 documents. first: Tab Two (Tab Two Album) and last: Kanbi +[2018-02-13T08:32:41.348] [INFO] cheese - inserting 1000 documents. first: Master of the Lübeck Bible and last: Western patch-nosed snake +[2018-02-13T08:32:41.447] [INFO] cheese - inserting 1000 documents. first: James Coombs and last: Patrick Liljestrand +[2018-02-13T08:32:41.451] [INFO] cheese - batch complete in: 2.125 secs +[2018-02-13T08:32:41.610] [INFO] cheese - inserting 1000 documents. first: Buddhist Novitiate and last: The New Party +[2018-02-13T08:32:41.622] [INFO] cheese - batch complete in: 1.376 secs +[2018-02-13T08:32:41.628] [INFO] cheese - batch complete in: 2.194 secs +[2018-02-13T08:32:41.663] [INFO] cheese - batch complete in: 2.43 secs +[2018-02-13T08:32:41.812] [INFO] cheese - batch complete in: 2.232 secs +[2018-02-13T08:32:41.914] [INFO] cheese - inserting 1000 documents. first: Navgaran and last: Grandi magazzini +[2018-02-13T08:32:41.978] [INFO] cheese - batch complete in: 1.509 secs +[2018-02-13T08:32:42.261] [INFO] cheese - batch complete in: 1.548 secs +[2018-02-13T08:32:42.625] [INFO] cheese - inserting 1000 documents. first: American Society for Tropical Medicine and Hygiene and last: Draft:Betsy Wolfston +[2018-02-13T08:32:42.870] [INFO] cheese - batch complete in: 1.419 secs +[2018-02-13T08:32:42.955] [INFO] cheese - inserting 1000 documents. first: St Louis County and last: SatireWire +[2018-02-13T08:32:42.971] [INFO] cheese - inserting 1000 documents. first: Jérémy Hélan and last: Wikipedia:SW/MOS +[2018-02-13T08:32:43.070] [INFO] cheese - inserting 1000 documents. first: Acheilognathus tabira erythropterus and last: Burma Worker's Party +[2018-02-13T08:32:43.146] [INFO] cheese - inserting 1000 documents. first: Vegard Samdahl and last: Agua Fria (disambiguation) +[2018-02-13T08:32:43.151] [INFO] cheese - batch complete in: 1.339 secs +[2018-02-13T08:32:43.173] [INFO] cheese - inserting 1000 documents. first: Template:Cathead age of sail ships of the and last: Hermann Neuling +[2018-02-13T08:32:43.268] [INFO] cheese - batch complete in: 1.604 secs +[2018-02-13T08:32:43.354] [INFO] cheese - batch complete in: 3.235 secs +[2018-02-13T08:32:43.442] [INFO] cheese - inserting 1000 documents. first: SEMESRA and last: 3"/50 caliber gun +[2018-02-13T08:32:43.554] [INFO] cheese - inserting 1000 documents. first: Japanese dictionaries and last: 1938 German Grand Prix +[2018-02-13T08:32:43.615] [INFO] cheese - batch complete in: 1.987 secs +[2018-02-13T08:32:43.714] [INFO] cheese - batch complete in: 2.091 secs +[2018-02-13T08:32:43.815] [INFO] cheese - batch complete in: 1.553 secs +[2018-02-13T08:32:43.967] [INFO] cheese - batch complete in: 1.988 secs +[2018-02-13T08:32:44.478] [INFO] cheese - inserting 1000 documents. first: Yourba and last: Category:World's fairs in Texas +[2018-02-13T08:32:44.653] [INFO] cheese - batch complete in: 1.783 secs +[2018-02-13T08:32:44.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:STARW/MOS and last: Category:Wikipedia sockpuppets of Marburg72 +[2018-02-13T08:32:44.699] [INFO] cheese - inserting 1000 documents. first: Template:Finance Ministers of Germany and last: Alexis Alexiou +[2018-02-13T08:32:44.809] [INFO] cheese - inserting 1000 documents. first: Pleasant Valley Grange Hall and last: Roads to You +[2018-02-13T08:32:44.879] [INFO] cheese - inserting 1000 documents. first: Department of Federal Revenue of Brazil and last: Computer access control +[2018-02-13T08:32:44.914] [INFO] cheese - batch complete in: 1.2 secs +[2018-02-13T08:32:44.923] [INFO] cheese - batch complete in: 1.655 secs +[2018-02-13T08:32:44.982] [INFO] cheese - batch complete in: 1.831 secs +[2018-02-13T08:32:45.187] [INFO] cheese - batch complete in: 1.372 secs +[2018-02-13T08:32:45.300] [INFO] cheese - inserting 1000 documents. first: Photosensitivity in animals and last: Bhor +[2018-02-13T08:32:45.485] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2007 February 26 and last: Young and restless (disambiguation) +[2018-02-13T08:32:45.583] [INFO] cheese - inserting 1000 documents. first: File:Teasin you cover.jpeg and last: Superior ligaments of the malleus bone +[2018-02-13T08:32:45.592] [INFO] cheese - batch complete in: 1.977 secs +[2018-02-13T08:32:45.809] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:32:45.817] [INFO] cheese - batch complete in: 1.85 secs +[2018-02-13T08:32:45.867] [INFO] cheese - inserting 1000 documents. first: Neoregelia 'Grey Nurse' and last: FC Střížkov Praha +[2018-02-13T08:32:45.920] [INFO] cheese - inserting 1000 documents. first: Yamaguti prefecture and last: Sharpstown scandal +[2018-02-13T08:32:46.039] [INFO] cheese - inserting 1000 documents. first: Broadway Bro Down and last: Category:Tourist attractions in Campbell County, Tennessee +[2018-02-13T08:32:46.148] [INFO] cheese - batch complete in: 1.224 secs +[2018-02-13T08:32:46.166] [INFO] cheese - batch complete in: 1.184 secs +[2018-02-13T08:32:46.296] [INFO] cheese - batch complete in: 2.942 secs +[2018-02-13T08:32:46.447] [INFO] cheese - inserting 1000 documents. first: Repeating circle and last: Neocaesarea (episcopal see) +[2018-02-13T08:32:46.551] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To the Unknown Land and last: Chinese General Chamber of Commerce +[2018-02-13T08:32:46.679] [INFO] cheese - batch complete in: 1.765 secs +[2018-02-13T08:32:46.824] [INFO] cheese - batch complete in: 1.637 secs +[2018-02-13T08:32:46.869] [INFO] cheese - inserting 1000 documents. first: Superior ligaments of malleus bone and last: Template:Japan PR list end +[2018-02-13T08:32:46.890] [INFO] cheese - inserting 1000 documents. first: Austin Ant and last: Turkic alphabets +[2018-02-13T08:32:47.158] [INFO] cheese - batch complete in: 1.348 secs +[2018-02-13T08:32:47.167] [INFO] cheese - batch complete in: 1.35 secs +[2018-02-13T08:32:47.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/blackboard.bangor.ac.uk and last: Wikipedia:WikiProject Spam/LinkReports/metaldelirium.net +[2018-02-13T08:32:47.376] [INFO] cheese - inserting 1000 documents. first: Stapleford, Zimbabwe and last: Automatas +[2018-02-13T08:32:47.405] [INFO] cheese - inserting 1000 documents. first: Canyon Overlook Trail and last: Template:Muang Thong United F.C. squad +[2018-02-13T08:32:47.411] [INFO] cheese - batch complete in: 1.263 secs +[2018-02-13T08:32:47.627] [INFO] cheese - inserting 1000 documents. first: List of English words of Old Irish origin and last: Imloth Melui +[2018-02-13T08:32:47.667] [INFO] cheese - batch complete in: 1.501 secs +[2018-02-13T08:32:47.744] [INFO] cheese - batch complete in: 2.151 secs +[2018-02-13T08:32:48.003] [INFO] cheese - batch complete in: 1.324 secs +[2018-02-13T08:32:48.104] [INFO] cheese - inserting 1000 documents. first: Lau Chu-pak and last: Idyl Ibrahim +[2018-02-13T08:32:48.141] [INFO] cheese - inserting 1000 documents. first: Tati Talvar and last: Draft:Whittle likelihood +[2018-02-13T08:32:48.223] [INFO] cheese - batch complete in: 1.399 secs +[2018-02-13T08:32:48.300] [INFO] cheese - batch complete in: 1.142 secs +[2018-02-13T08:32:48.447] [INFO] cheese - inserting 1000 documents. first: Kluskus Indian Band and last: Sir George Bowyer, 7th Baronet +[2018-02-13T08:32:48.502] [INFO] cheese - inserting 1000 documents. first: At the Dream's Edge and last: Norman Bowell +[2018-02-13T08:32:48.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/metaldelirium.net and last: Sorkhrud-e Gharbi +[2018-02-13T08:32:48.629] [INFO] cheese - batch complete in: 1.462 secs +[2018-02-13T08:32:48.647] [INFO] cheese - inserting 1000 documents. first: Sharpstown affair and last: A Shropshire Lad +[2018-02-13T08:32:48.705] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T08:32:48.858] [INFO] cheese - batch complete in: 1.191 secs +[2018-02-13T08:32:48.885] [INFO] cheese - inserting 1000 documents. first: Nédogo-Peulh and last: Wikipedia:Copyright problems/2008 June 12/Images +[2018-02-13T08:32:48.903] [INFO] cheese - batch complete in: 2.606 secs +[2018-02-13T08:32:48.944] [INFO] cheese - inserting 1000 documents. first: Delayed orgasm and last: Aethelric of Bernicia +[2018-02-13T08:32:49.020] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T08:32:49.235] [INFO] cheese - batch complete in: 1.491 secs +[2018-02-13T08:32:49.337] [INFO] cheese - inserting 1000 documents. first: File:Paleface Jack head and shoulders shillouuette.tif and last: Category:Freestyle skiing in Italy +[2018-02-13T08:32:49.401] [INFO] cheese - inserting 1000 documents. first: File:Industrie und Melodie album cover.jpg and last: Tohoshinki Live Tour 2013: Time +[2018-02-13T08:32:49.655] [INFO] cheese - batch complete in: 1.354 secs +[2018-02-13T08:32:49.668] [INFO] cheese - batch complete in: 1.445 secs +[2018-02-13T08:32:49.811] [INFO] cheese - inserting 1000 documents. first: Prt Sc and last: Category:Zoos in North Carolina +[2018-02-13T08:32:49.976] [INFO] cheese - batch complete in: 1.346 secs +[2018-02-13T08:32:50.265] [INFO] cheese - inserting 1000 documents. first: Audio video disco and last: Durchmarsch +[2018-02-13T08:32:50.324] [INFO] cheese - inserting 1000 documents. first: Pozhiyoor and last: An Anglo-Saxon Dictionary +[2018-02-13T08:32:50.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2008 June 12 and last: File:L'Innomable - 1st Edition Cover.jpg +[2018-02-13T08:32:50.515] [INFO] cheese - inserting 1000 documents. first: STAG3 (gene) and last: Portal:Australian roads/Selected picture/6 +[2018-02-13T08:32:50.526] [INFO] cheese - batch complete in: 1.506 secs +[2018-02-13T08:32:50.585] [INFO] cheese - inserting 1000 documents. first: Howling III: The Marsupials and last: Category:Endemism +[2018-02-13T08:32:50.668] [INFO] cheese - batch complete in: 1.962 secs +[2018-02-13T08:32:50.787] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:32:50.814] [INFO] cheese - batch complete in: 1.956 secs +[2018-02-13T08:32:50.913] [INFO] cheese - batch complete in: 1.678 secs +[2018-02-13T08:32:51.007] [INFO] cheese - inserting 1000 documents. first: Category:Freestyle skiing in Norway and last: Meitei Guun +[2018-02-13T08:32:51.054] [INFO] cheese - inserting 1000 documents. first: List of play techniques (bridge) and last: Oxydative phosphorylation +[2018-02-13T08:32:51.103] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:32:51.152] [INFO] cheese - batch complete in: 1.497 secs +[2018-02-13T08:32:51.333] [INFO] cheese - inserting 1000 documents. first: Trowel and last: VGA connector +[2018-02-13T08:32:51.344] [INFO] cheese - inserting 1000 documents. first: Dorota Świeniewicz and last: Osuiu +[2018-02-13T08:32:51.496] [INFO] cheese - batch complete in: 1.52 secs +[2018-02-13T08:32:51.682] [INFO] cheese - batch complete in: 2.779 secs +[2018-02-13T08:32:51.716] [INFO] cheese - inserting 1000 documents. first: Category:Local authorities in Gloucestershire and last: Rabolina weiss +[2018-02-13T08:32:51.720] [INFO] cheese - inserting 1000 documents. first: File:The Fitzpatricks.jpg and last: Lu Xiaoman +[2018-02-13T08:32:51.913] [INFO] cheese - batch complete in: 1.125 secs +[2018-02-13T08:32:51.919] [INFO] cheese - batch complete in: 1.251 secs +[2018-02-13T08:32:52.032] [INFO] cheese - inserting 1000 documents. first: Draft:Ricardo Karam and last: Category:Compositions by Zakaria Paliashvili +[2018-02-13T08:32:52.117] [INFO] cheese - inserting 1000 documents. first: Perion and last: Black British +[2018-02-13T08:32:52.197] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:32:52.206] [INFO] cheese - inserting 1000 documents. first: Google image search and last: The Homes of Football +[2018-02-13T08:32:52.245] [INFO] cheese - inserting 1000 documents. first: Boario Terme and last: Esperanza, Ucayali +[2018-02-13T08:32:52.308] [INFO] cheese - batch complete in: 1.394 secs +[2018-02-13T08:32:52.465] [INFO] cheese - batch complete in: 1.651 secs +[2018-02-13T08:32:52.493] [INFO] cheese - batch complete in: 1.39 secs +[2018-02-13T08:32:52.882] [INFO] cheese - inserting 1000 documents. first: Welsh Oak (pub) and last: Maveyan +[2018-02-13T08:32:52.958] [INFO] cheese - inserting 1000 documents. first: Category:Hindu iconography and last: Odeborn +[2018-02-13T08:32:52.986] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Trees and sunshine.JPG and last: Dangle (espionage) +[2018-02-13T08:32:53.027] [INFO] cheese - batch complete in: 1.114 secs +[2018-02-13T08:32:53.096] [INFO] cheese - inserting 1000 documents. first: St. Richard of Chichester Church, Slindon and last: Category:Sledding competitions +[2018-02-13T08:32:53.192] [INFO] cheese - batch complete in: 1.273 secs +[2018-02-13T08:32:53.238] [INFO] cheese - batch complete in: 1.742 secs +[2018-02-13T08:32:53.300] [INFO] cheese - batch complete in: 1.102 secs +[2018-02-13T08:32:53.576] [INFO] cheese - inserting 1000 documents. first: Heckler & Koch P8 and last: State Highway Route 84 (New Jersey) +[2018-02-13T08:32:53.599] [INFO] cheese - inserting 1000 documents. first: Wayen Rapadama and last: Darreh-ye Bum +[2018-02-13T08:32:53.690] [INFO] cheese - inserting 1000 documents. first: Stojanski Vrh and last: Robert Alexander Shafto Adair +[2018-02-13T08:32:53.730] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm Tempel and last: Tickhill +[2018-02-13T08:32:53.812] [INFO] cheese - batch complete in: 1.504 secs +[2018-02-13T08:32:53.835] [INFO] cheese - batch complete in: 1.342 secs +[2018-02-13T08:32:53.894] [INFO] cheese - inserting 1000 documents. first: Mir Assar and last: 2014 NWSL College Draft +[2018-02-13T08:32:53.894] [INFO] cheese - batch complete in: 1.428 secs +[2018-02-13T08:32:54.083] [INFO] cheese - batch complete in: 2.401 secs +[2018-02-13T08:32:54.231] [INFO] cheese - inserting 1000 documents. first: Puerto Rico Highway 34 and last: Fear of a Black Hat (1993) +[2018-02-13T08:32:54.284] [INFO] cheese - batch complete in: 1.257 secs +[2018-02-13T08:32:54.384] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Plagiosaurus and last: Charlie Brown's Wind Up +[2018-02-13T08:32:54.393] [INFO] cheese - inserting 1000 documents. first: Template:US-screen-actor-1910s-stub and last: 2007 New Zealand rugby league season +[2018-02-13T08:32:54.541] [INFO] cheese - batch complete in: 1.241 secs +[2018-02-13T08:32:54.565] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:32:54.584] [INFO] cheese - batch complete in: 1.346 secs +[2018-02-13T08:32:54.770] [INFO] cheese - inserting 1000 documents. first: Sir Robert Alexander Shafto Adair, 2nd Baronet and last: Pitcairnia hitchcockiana +[2018-02-13T08:32:54.810] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:32:54.938] [INFO] cheese - inserting 1000 documents. first: Thomas Deruda and last: Outdoor clothes +[2018-02-13T08:32:54.992] [INFO] cheese - inserting 1000 documents. first: Grass eating men and last: Edward Brennan (disambiguation) +[2018-02-13T08:32:55.066] [INFO] cheese - inserting 1000 documents. first: New Jersey State Highway Route 84 and last: Category:Nebraska Cornhuskers football +[2018-02-13T08:32:55.071] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T08:32:55.139] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:32:55.201] [INFO] cheese - batch complete in: 1.389 secs +[2018-02-13T08:32:55.568] [INFO] cheese - inserting 1000 documents. first: Stripling and last: Vipera russelli limitis +[2018-02-13T08:32:55.666] [INFO] cheese - inserting 1000 documents. first: Mirza (lemur) and last: Illegal Music 3: The Finale +[2018-02-13T08:32:55.714] [INFO] cheese - inserting 1000 documents. first: Mulinan and last: Valezhir +[2018-02-13T08:32:55.766] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:32:55.868] [INFO] cheese - batch complete in: 1.284 secs +[2018-02-13T08:32:55.900] [INFO] cheese - batch complete in: 1.357 secs +[2018-02-13T08:32:56.010] [INFO] cheese - inserting 1000 documents. first: 2009–10 AFC Ajax season and last: Template:2008 Summer Olympics women's volleyball game B14 +[2018-02-13T08:32:56.237] [INFO] cheese - inserting 1000 documents. first: Dantrolene Sodium and last: António Araújo +[2018-02-13T08:32:56.242] [INFO] cheese - batch complete in: 1.676 secs +[2018-02-13T08:32:56.369] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Swimming Members and last: Isabel Le Brun de Pinochet +[2018-02-13T08:32:56.433] [INFO] cheese - batch complete in: 1.623 secs +[2018-02-13T08:32:56.617] [INFO] cheese - batch complete in: 1.546 secs +[2018-02-13T08:32:56.638] [INFO] cheese - inserting 1000 documents. first: Nogeoldae and last: Boleslaus V, Duke of Poland +[2018-02-13T08:32:56.701] [INFO] cheese - inserting 1000 documents. first: Category:Heartland Collegiate Athletic Conference and last: Long Serpent +[2018-02-13T08:32:56.869] [INFO] cheese - batch complete in: 1.668 secs +[2018-02-13T08:32:56.900] [INFO] cheese - batch complete in: 2.817 secs +[2018-02-13T08:32:56.935] [INFO] cheese - inserting 1000 documents. first: Just Another Girl (disambiguation) and last: Obed Arizona +[2018-02-13T08:32:57.031] [INFO] cheese - inserting 1000 documents. first: Xiao xian rou and last: Stenidea insignis +[2018-02-13T08:32:57.124] [INFO] cheese - inserting 1000 documents. first: Kim Gyusik and last: Route nationale 22 +[2018-02-13T08:32:57.177] [INFO] cheese - batch complete in: 1.411 secs +[2018-02-13T08:32:57.201] [INFO] cheese - batch complete in: 1.301 secs +[2018-02-13T08:32:57.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Grey2K USA and last: Third coalition +[2018-02-13T08:32:57.383] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T08:32:57.383] [INFO] cheese - batch complete in: 1.514 secs +[2018-02-13T08:32:57.407] [INFO] cheese - inserting 1000 documents. first: Khalifa Bin Jassim and last: Euplocia moderata +[2018-02-13T08:32:57.668] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T08:32:57.672] [INFO] cheese - inserting 1000 documents. first: The Phantom Zone and last: File:Cornteapackage.jpg +[2018-02-13T08:32:57.883] [INFO] cheese - batch complete in: 1.266 secs +[2018-02-13T08:32:57.984] [INFO] cheese - inserting 1000 documents. first: Structure, Sign, and Play in the Discourse of the Human Sciences and last: Deal (NJ) +[2018-02-13T08:32:58.127] [INFO] cheese - batch complete in: 1.258 secs +[2018-02-13T08:32:58.295] [INFO] cheese - inserting 1000 documents. first: Tazehabad-e Saravaryeh and last: Category:Indian Internet celebrities +[2018-02-13T08:32:58.500] [INFO] cheese - batch complete in: 1.322 secs +[2018-02-13T08:32:58.546] [INFO] cheese - inserting 1000 documents. first: University Of Nebraska and last: Octopuses +[2018-02-13T08:32:58.579] [INFO] cheese - inserting 1000 documents. first: Schrote and last: Empress Wang (Huizong) +[2018-02-13T08:32:58.737] [INFO] cheese - inserting 1000 documents. first: Edward Evans (murder victim) and last: South Ferry (ferry) +[2018-02-13T08:32:58.738] [INFO] cheese - inserting 1000 documents. first: File:Now 93 UK Cover.jpg and last: Lehigh Line (June 11, 1855–September 11, 1855) +[2018-02-13T08:32:58.765] [INFO] cheese - batch complete in: 1.865 secs +[2018-02-13T08:32:58.772] [INFO] cheese - batch complete in: 1.387 secs +[2018-02-13T08:32:58.795] [INFO] cheese - inserting 1000 documents. first: Euplocia inconspicua and last: Ingersleben +[2018-02-13T08:32:58.931] [INFO] cheese - inserting 1000 documents. first: Eileen Whelan and last: Category:Novels by Aphra Behn +[2018-02-13T08:32:58.948] [INFO] cheese - batch complete in: 1.565 secs +[2018-02-13T08:32:58.994] [INFO] cheese - batch complete in: 1.793 secs +[2018-02-13T08:32:59.096] [INFO] cheese - batch complete in: 1.427 secs +[2018-02-13T08:32:59.234] [INFO] cheese - batch complete in: 1.351 secs +[2018-02-13T08:32:59.527] [INFO] cheese - inserting 1000 documents. first: Category:German Internet celebrities and last: Kabud Khani-ye Pa'in +[2018-02-13T08:32:59.689] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:32:59.887] [INFO] cheese - inserting 1000 documents. first: Luis Alcazar and last: Koh Seh +[2018-02-13T08:32:59.786] [INFO] cheese - inserting 1000 documents. first: West Long Branch (NJ) and last: Potti Sri Ramulu +[2018-02-13T08:33:00.113] [INFO] cheese - batch complete in: 1.165 secs +[2018-02-13T08:33:00.138] [INFO] cheese - batch complete in: 2.01 secs +[2018-02-13T08:33:00.171] [INFO] cheese - inserting 1000 documents. first: InsideOUT Writers and last: Trikala, Corinthia +[2018-02-13T08:33:00.291] [INFO] cheese - inserting 1000 documents. first: Soil Natural Capital and last: St Antholin Watling Street +[2018-02-13T08:33:00.294] [INFO] cheese - inserting 1000 documents. first: Catholic Educational Association and last: David Kennedy (Australian politician) +[2018-02-13T08:33:00.299] [INFO] cheese - batch complete in: 1.305 secs +[2018-02-13T08:33:00.375] [INFO] cheese - inserting 1000 documents. first: Category:1994 in Chad and last: Category:Julian Marley albums +[2018-02-13T08:33:00.442] [INFO] cheese - inserting 1000 documents. first: Tyubu and last: Taygete (moon) +[2018-02-13T08:33:00.467] [INFO] cheese - batch complete in: 1.233 secs +[2018-02-13T08:33:00.487] [INFO] cheese - batch complete in: 1.714 secs +[2018-02-13T08:33:00.617] [INFO] cheese - batch complete in: 1.52 secs +[2018-02-13T08:33:00.698] [INFO] cheese - batch complete in: 1.933 secs +[2018-02-13T08:33:00.828] [INFO] cheese - inserting 1000 documents. first: Kabud Khani-ye Pain and last: Rude Removal System +[2018-02-13T08:33:00.988] [INFO] cheese - batch complete in: 1.299 secs +[2018-02-13T08:33:01.103] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Captchadefiner and last: The Parkers: Kim's 21st Birthday +[2018-02-13T08:33:01.181] [INFO] cheese - inserting 1000 documents. first: WTWS-FM and last: Punch marked coins of india +[2018-02-13T08:33:01.302] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:33:01.337] [INFO] cheese - batch complete in: 1.224 secs +[2018-02-13T08:33:01.444] [INFO] cheese - inserting 1000 documents. first: Clipping (audio) and last: Rally Point (novel) +[2018-02-13T08:33:01.546] [INFO] cheese - inserting 1000 documents. first: Allhallows the Great, Thames Street and last: CLs method (particle physics) +[2018-02-13T08:33:01.558] [INFO] cheese - batch complete in: 1.42 secs +[2018-02-13T08:33:01.678] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dr John Pridgeon and last: Hypsa ghara +[2018-02-13T08:33:01.722] [INFO] cheese - batch complete in: 1.233 secs +[2018-02-13T08:33:01.813] [INFO] cheese - inserting 1000 documents. first: File:It Aint 4 Play.jpg and last: Alfred Gaertner +[2018-02-13T08:33:01.887] [INFO] cheese - batch complete in: 1.27 secs +[2018-02-13T08:33:02.267] [INFO] cheese - batch complete in: 1.8 secs +[2018-02-13T08:33:02.330] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian actors by century and last: Scaruffi +[2018-02-13T08:33:02.409] [INFO] cheese - inserting 1000 documents. first: Chronicle of Anna Magdalena Bach and last: Steve McQwark +[2018-02-13T08:33:02.430] [INFO] cheese - inserting 1000 documents. first: Robinson soll nicht sterben and last: Suzanne Jackson +[2018-02-13T08:33:02.537] [INFO] cheese - batch complete in: 1.548 secs +[2018-02-13T08:33:02.605] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:33:02.665] [INFO] cheese - inserting 1000 documents. first: Lazy eye and last: Malcolm Bradbury +[2018-02-13T08:33:02.705] [INFO] cheese - batch complete in: 1.367 secs +[2018-02-13T08:33:02.955] [INFO] cheese - batch complete in: 2.257 secs +[2018-02-13T08:33:03.016] [INFO] cheese - inserting 1000 documents. first: The Yellow Princess (John Fahey album) and last: Cassau +[2018-02-13T08:33:03.089] [INFO] cheese - inserting 1000 documents. first: Ugly (Single) and last: File:WHB Logo.png +[2018-02-13T08:33:03.123] [INFO] cheese - inserting 1000 documents. first: Phalaena heliconia and last: A. elliptica +[2018-02-13T08:33:03.200] [INFO] cheese - batch complete in: 1.478 secs +[2018-02-13T08:33:03.310] [INFO] cheese - batch complete in: 1.422 secs +[2018-02-13T08:33:03.357] [INFO] cheese - batch complete in: 1.799 secs +[2018-02-13T08:33:03.545] [INFO] cheese - inserting 1000 documents. first: The Muffin King and last: Donald W. Riegle, Jr +[2018-02-13T08:33:03.657] [INFO] cheese - inserting 1000 documents. first: Neelam Shirke and last: Nashua nh +[2018-02-13T08:33:03.617] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:33:03.735] [INFO] cheese - inserting 1000 documents. first: Template:Bollywood hungama and last: Category:People from Saale-Holzland-Kreis +[2018-02-13T08:33:03.818] [INFO] cheese - batch complete in: 1.549 secs +[2018-02-13T08:33:03.931] [INFO] cheese - batch complete in: 1.394 secs +[2018-02-13T08:33:04.152] [INFO] cheese - inserting 1000 documents. first: Jim Nesich and last: Merle Jeeter +[2018-02-13T08:33:04.355] [INFO] cheese - inserting 1000 documents. first: Category:Dunhill hurlers and last: Alvin F. Sortwell +[2018-02-13T08:33:04.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Scottrade and last: WMAZ-TV +[2018-02-13T08:33:04.415] [INFO] cheese - batch complete in: 1.215 secs +[2018-02-13T08:33:04.445] [INFO] cheese - inserting 1000 documents. first: Template:Element color/Metals and last: Salome Kammer +[2018-02-13T08:33:04.577] [INFO] cheese - batch complete in: 1.256 secs +[2018-02-13T08:33:04.612] [INFO] cheese - inserting 1000 documents. first: Girolamo dal Pane and last: Joe McGrogan +[2018-02-13T08:33:04.662] [INFO] cheese - batch complete in: 1.304 secs +[2018-02-13T08:33:04.869] [INFO] cheese - batch complete in: 2.164 secs +[2018-02-13T08:33:04.919] [INFO] cheese - inserting 1000 documents. first: Husaibah Al Sharqiah and last: Sleeping With The Past +[2018-02-13T08:33:04.924] [INFO] cheese - batch complete in: 1.307 secs +[2018-02-13T08:33:05.192] [INFO] cheese - inserting 1000 documents. first: Polandish Passage and last: Andrew Crommelin +[2018-02-13T08:33:05.240] [INFO] cheese - batch complete in: 1.422 secs +[2018-02-13T08:33:05.424] [INFO] cheese - inserting 1000 documents. first: Academy Color Encoding System and last: "Central New York Regional Market" +[2018-02-13T08:33:05.505] [INFO] cheese - batch complete in: 2.55 secs +[2018-02-13T08:33:05.705] [INFO] cheese - batch complete in: 1.774 secs +[2018-02-13T08:33:05.737] [INFO] cheese - inserting 1000 documents. first: Brandon Miller (driver) and last: Campus of the University of Tokyo +[2018-02-13T08:33:05.888] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/UNC and last: Republic Airways Holdings, Inc. +[2018-02-13T08:33:05.959] [INFO] cheese - batch complete in: 1.543 secs +[2018-02-13T08:33:06.067] [INFO] cheese - batch complete in: 1.143 secs +[2018-02-13T08:33:06.194] [INFO] cheese - inserting 1000 documents. first: Vladimir Utkin and last: Solar eclipse 15th january +[2018-02-13T08:33:06.375] [INFO] cheese - batch complete in: 1.797 secs +[2018-02-13T08:33:06.421] [INFO] cheese - inserting 1000 documents. first: Template:Tlrowtop and last: Template:Inv3 +[2018-02-13T08:33:06.472] [INFO] cheese - inserting 1000 documents. first: Chain of lakes middle school and last: Theodore Vahlen +[2018-02-13T08:33:06.625] [INFO] cheese - batch complete in: 1.385 secs +[2018-02-13T08:33:06.664] [INFO] cheese - inserting 1000 documents. first: Sompal Kami and last: Wikipedia:Articles for deletion/Hold Tight (Justin Bieber song) +[2018-02-13T08:33:06.719] [INFO] cheese - batch complete in: 1.85 secs +[2018-02-13T08:33:06.879] [INFO] cheese - inserting 1000 documents. first: Ruf 3400S and last: Rodoanel Mário Covas +[2018-02-13T08:33:06.941] [INFO] cheese - inserting 1000 documents. first: Template:Slovenia-transport-stub and last: Lilla skogssjön +[2018-02-13T08:33:07.063] [INFO] cheese - batch complete in: 1.358 secs +[2018-02-13T08:33:07.113] [INFO] cheese - batch complete in: 2.45 secs +[2018-02-13T08:33:07.136] [INFO] cheese - batch complete in: 1.176 secs +[2018-02-13T08:33:07.328] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Santa Lucia in Septisolio and last: List of Farm to Market Roads in Texas (3000–3099) +[2018-02-13T08:33:07.687] [INFO] cheese - inserting 1000 documents. first: Category:Skin names and last: High Holidays (disambiguation) +[2018-02-13T08:33:07.695] [INFO] cheese - batch complete in: 1.628 secs +[2018-02-13T08:33:07.941] [INFO] cheese - batch complete in: 1.566 secs +[2018-02-13T08:33:07.952] [INFO] cheese - inserting 1000 documents. first: Portal:Arizona/Selected Article/10 and last: Cong Fu Cheng +[2018-02-13T08:33:08.046] [INFO] cheese - inserting 1000 documents. first: List of mountain types and last: Samuel Byck +[2018-02-13T08:33:08.159] [INFO] cheese - inserting 1000 documents. first: Diego De Paz Pazo and last: Sheykh Vajam +[2018-02-13T08:33:08.163] [INFO] cheese - inserting 1000 documents. first: Torus tammer and last: File:Bunker Jacket JustinDiPierro.jpg +[2018-02-13T08:33:08.208] [INFO] cheese - batch complete in: 1.582 secs +[2018-02-13T08:33:08.351] [INFO] cheese - batch complete in: 2.846 secs +[2018-02-13T08:33:08.410] [INFO] cheese - batch complete in: 1.347 secs +[2018-02-13T08:33:08.501] [INFO] cheese - inserting 1000 documents. first: Dream-Star Button Nose and last: 1922-23 Dumbarton F.C. season +[2018-02-13T08:33:08.505] [INFO] cheese - batch complete in: 1.786 secs +[2018-02-13T08:33:08.618] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:33:08.683] [INFO] cheese - inserting 1000 documents. first: Lissmasjön and last: Torre Europa (L'Hospitalet de Llobregat) +[2018-02-13T08:33:08.742] [INFO] cheese - inserting 1000 documents. first: Thug Walkin' and last: Doris Downes +[2018-02-13T08:33:08.787] [INFO] cheese - batch complete in: 1.651 secs +[2018-02-13T08:33:08.858] [INFO] cheese - batch complete in: 1.744 secs +[2018-02-13T08:33:08.959] [INFO] cheese - inserting 1000 documents. first: Portal:Google/Tools/Tools and last: College of Radiology, Academy of Medicine Malaysia +[2018-02-13T08:33:09.014] [INFO] cheese - inserting 1000 documents. first: Idaho State Highway 29 (1930s) and last: Tianzhu Road Station +[2018-02-13T08:33:09.027] [INFO] cheese - inserting 1000 documents. first: 1840-50 Atlantic hurricane seasons and last: 1938 European Athletics Championships - Men's 50 kilometres walk +[2018-02-13T08:33:09.051] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:33:09.165] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:33:09.177] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:33:09.395] [INFO] cheese - inserting 1000 documents. first: Dhauli and last: Category:User ase +[2018-02-13T08:33:09.497] [INFO] cheese - inserting 1000 documents. first: 1939-40 Taça de Portugal and last: Okinawa At-large district (House of Councillors) +[2018-02-13T08:33:09.531] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T08:33:09.639] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T08:33:09.699] [INFO] cheese - inserting 1000 documents. first: Ngbinda language and last: Category:Computer science institutes in China +[2018-02-13T08:33:09.825] [INFO] cheese - inserting 1000 documents. first: Naduparambil Pappachan Pradeep and last: Dorchester, IA. +[2018-02-13T08:33:09.827] [INFO] cheese - inserting 1000 documents. first: Once Upon a Time in New York City and last: Bratislava bridgehead +[2018-02-13T08:33:09.829] [INFO] cheese - inserting 1000 documents. first: Dutch process chocolate and last: Anti-disestablishmentarianism +[2018-02-13T08:33:09.850] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Christian theologian and last: Lucien James "Luc" Longley +[2018-02-13T08:33:09.861] [INFO] cheese - inserting 1000 documents. first: Omar Bin Alkahttab and last: The Great Pig War +[2018-02-13T08:33:09.861] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:33:09.967] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:33:10.089] [INFO] cheese - batch complete in: 1.23 secs +[2018-02-13T08:33:10.132] [INFO] cheese - batch complete in: 1.924 secs +[2018-02-13T08:33:10.146] [INFO] cheese - batch complete in: 1.794 secs +[2018-02-13T08:33:10.180] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T08:33:10.225] [INFO] cheese - inserting 1000 documents. first: Alfred S. Barnett and last: 1952-53 Rochester Royals season +[2018-02-13T08:33:10.389] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:33:10.499] [INFO] cheese - inserting 1000 documents. first: Panitya, Victoria and last: Ankkarock +[2018-02-13T08:33:10.564] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:33:10.733] [INFO] cheese - inserting 1000 documents. first: Harry Alexander (rugby footballer) and last: Sun Pharma +[2018-02-13T08:33:10.821] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:33:10.835] [INFO] cheese - inserting 1000 documents. first: Category:Films shot in Cambridgeshire and last: We Walk The Line: A Celebration of the Music of Johnny Cash +[2018-02-13T08:33:10.880] [INFO] cheese - inserting 1000 documents. first: 1957-58 Israel State Cup and last: Category:Suspected Wikipedia sockpuppets of AJ Mclean 1978 +[2018-02-13T08:33:10.924] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:33:10.933] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:33:10.943] [INFO] cheese - inserting 1000 documents. first: Bessarabia (disambiguation) and last: Wikipedia:Articles for deletion/Sahaba's first blood +[2018-02-13T08:33:11.174] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Harry L. Fraser and last: John Hudson (football player) +[2018-02-13T08:33:11.246] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:33:11.266] [INFO] cheese - inserting 1000 documents. first: Meridian circle and last: Florida Botanical Gardens +[2018-02-13T08:33:11.421] [INFO] cheese - batch complete in: 1.289 secs +[2018-02-13T08:33:11.533] [INFO] cheese - batch complete in: 1.444 secs +[2018-02-13T08:33:11.562] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Alan Fillings and last: 1967-68 Division 1 +[2018-02-13T08:33:11.698] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:33:11.699] [INFO] cheese - inserting 1000 documents. first: Category:Compositions by Daron Hagen and last: Sarah Noble Intermediate School +[2018-02-13T08:33:11.836] [INFO] cheese - batch complete in: 1.015 secs +[2018-02-13T08:33:11.869] [INFO] cheese - inserting 1000 documents. first: Category:Deathlands book covers and last: Sadigjan +[2018-02-13T08:33:11.901] [INFO] cheese - inserting 1000 documents. first: Exeter Times-Advocate and last: Holika Bonfire +[2018-02-13T08:33:11.971] [INFO] cheese - batch complete in: 1.407 secs +[2018-02-13T08:33:12.001] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T08:33:12.060] [INFO] cheese - inserting 1000 documents. first: The Green Bus and last: Opium of the People +[2018-02-13T08:33:12.133] [INFO] cheese - inserting 1000 documents. first: Ernst Toch and last: Cigarette lighters +[2018-02-13T08:33:12.137] [INFO] cheese - inserting 1000 documents. first: 1966-67 Yugoslav Cup and last: 1972-73 Fußball-Regionalliga +[2018-02-13T08:33:12.171] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:33:12.199] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:33:12.205] [INFO] cheese - inserting 1000 documents. first: William John Plessington and last: The Immortal Legions +[2018-02-13T08:33:12.286] [INFO] cheese - batch complete in: 2.14 secs +[2018-02-13T08:33:12.332] [INFO] cheese - inserting 1000 documents. first: Category:Metropolitan boroughs and last: List of State Highway Routes in New Jersey +[2018-02-13T08:33:12.335] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:33:12.458] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:33:12.465] [INFO] cheese - inserting 1000 documents. first: Category:Articles that may contain original research from November 2011 and last: Department of African American Studies – Syracuse University +[2018-02-13T08:33:12.481] [INFO] cheese - inserting 1000 documents. first: Category:Special elections to the 105th United States Congress and last: 1973-74 Ranji Trophy +[2018-02-13T08:33:12.532] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T08:33:12.566] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:33:12.633] [INFO] cheese - inserting 1000 documents. first: County Route 83 (Rockland County, New York) and last: Charleston station (West Virginia) +[2018-02-13T08:33:12.645] [INFO] cheese - inserting 1000 documents. first: Category:Carpenter Gothic houses in the United States and last: Atlantic Coast Line Railroad Commercial and Industrial Historic District +[2018-02-13T08:33:12.669] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:33:12.738] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:33:12.771] [INFO] cheese - inserting 1000 documents. first: Berryz工房 スッペシャル ベスト Vol.2 and last: 1980 IAAF World Cross Country Championships - Junior men's race +[2018-02-13T08:33:12.805] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T08:33:12.840] [INFO] cheese - inserting 1000 documents. first: Orloff chicken and last: Saints Herald +[2018-02-13T08:33:12.932] [INFO] cheese - inserting 1000 documents. first: Poupée Girl and last: Blue ridge quartet +[2018-02-13T08:33:12.990] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:33:13.094] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:33:13.207] [INFO] cheese - inserting 1000 documents. first: Johanna and last: Columbia-Revelstoke +[2018-02-13T08:33:13.283] [INFO] cheese - inserting 1000 documents. first: 1981-82 National Football League (Ireland) and last: 1984-85 Dallas Mavericks season +[2018-02-13T08:33:13.334] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:33:13.349] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:33:13.358] [INFO] cheese - inserting 1000 documents. first: Dhaiso language and last: Wikipedia:Categories for discussion/Log/2011 December 5 +[2018-02-13T08:33:13.536] [INFO] cheese - inserting 1000 documents. first: Methodist circuit rider and last: Obatu +[2018-02-13T08:33:13.557] [INFO] cheese - inserting 1000 documents. first: Thromboxane synthase and last: Sharon bush +[2018-02-13T08:33:13.572] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:33:13.696] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:33:13.823] [INFO] cheese - inserting 1000 documents. first: Corning Community College and last: Écublens, Vaud +[2018-02-13T08:33:13.825] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:33:13.901] [INFO] cheese - inserting 1000 documents. first: 1985-86 FIBA Women's European Champions Cup and last: 1984 Virginia Slims Championships - Singles +[2018-02-13T08:33:13.977] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:33:14.096] [INFO] cheese - batch complete in: 1.81 secs +[2018-02-13T08:33:14.316] [INFO] cheese - inserting 1000 documents. first: Snake River Plain (ecoregion) and last: Sergei Andronov +[2018-02-13T08:33:14.362] [INFO] cheese - inserting 1000 documents. first: Jeanette McCurdy and last: File:Big Mello.jpg +[2018-02-13T08:33:14.454] [INFO] cheese - inserting 1000 documents. first: 1985-86 FC Dinamo București season and last: Category:Chinese special-purpose aircraft +[2018-02-13T08:33:14.544] [INFO] cheese - batch complete in: 1.45 secs +[2018-02-13T08:33:14.571] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:33:14.544] [INFO] cheese - batch complete in: 1.553 secs +[2018-02-13T08:33:14.826] [INFO] cheese - inserting 1000 documents. first: Booker–Open Russia Literary Prize and last: Category:Cement companies of Portugal +[2018-02-13T08:33:14.848] [INFO] cheese - inserting 1000 documents. first: Category:FA-Class electronic articles and last: Barmston and Fraisthorpe +[2018-02-13T08:33:14.889] [INFO] cheese - inserting 1000 documents. first: Csikszék and last: Boston Theological Institute +[2018-02-13T08:33:14.951] [INFO] cheese - batch complete in: 1.379 secs +[2018-02-13T08:33:14.962] [INFO] cheese - batch complete in: 1.137 secs +[2018-02-13T08:33:15.050] [INFO] cheese - batch complete in: 1.701 secs +[2018-02-13T08:33:15.163] [INFO] cheese - inserting 1000 documents. first: Panjeh Ali and last: Portal:Current events/2013 December 13 +[2018-02-13T08:33:15.163] [INFO] cheese - inserting 1000 documents. first: 1990 World Junior Championships in Athletics - Women's shot put and last: Arctic Lily (My Little Pony) +[2018-02-13T08:33:15.251] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:33:15.354] [INFO] cheese - batch complete in: 1.658 secs +[2018-02-13T08:33:15.515] [INFO] cheese - inserting 1000 documents. first: Copa do Brasil 1994 and last: Wikipedia:Valued picture candidates/Columbus Zoo Front Gate +[2018-02-13T08:33:15.536] [INFO] cheese - inserting 1000 documents. first: Translucence/Drift Music and last: Slab (phone) +[2018-02-13T08:33:15.624] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:33:15.675] [INFO] cheese - inserting 1000 documents. first: Ardent (My Little Pony) and last: Category:Wikipedia sockpuppets of Smilesnew55 +[2018-02-13T08:33:15.684] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:33:15.799] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:33:15.858] [INFO] cheese - inserting 1000 documents. first: Plead and last: Hurrian language +[2018-02-13T08:33:16.000] [INFO] cheese - inserting 1000 documents. first: File:Thegoblintree.jpg and last: Category:Wikipedians by alma mater: New Jersey Institute of Technology +[2018-02-13T08:33:16.100] [INFO] cheese - batch complete in: 2.004 secs +[2018-02-13T08:33:16.204] [INFO] cheese - inserting 1000 documents. first: Category:Chocobo games and last: First Capital Connect +[2018-02-13T08:33:16.210] [INFO] cheese - batch complete in: 1.247 secs +[2018-02-13T08:33:16.246] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Sonashaskew and last: Category:2020 elections in the United States by state +[2018-02-13T08:33:16.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Poverty Justice and Human Capabilities (Diana Strassmann and Michael Emerson)/Create Account & User Page and last: Linc Blakely +[2018-02-13T08:33:16.333] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:33:16.476] [INFO] cheese - batch complete in: 1.425 secs +[2018-02-13T08:33:16.496] [INFO] cheese - inserting 1000 documents. first: Brice Meuleman and last: Syrian civil war spillover in Lebanon +[2018-02-13T08:33:16.500] [INFO] cheese - batch complete in: 1.549 secs +[2018-02-13T08:33:16.658] [INFO] cheese - inserting 1000 documents. first: 1988 World's Strongest Man and last: Siloam daylilies +[2018-02-13T08:33:16.685] [INFO] cheese - inserting 1000 documents. first: Cytochrome P450 system and last: Category:Mitsubishi Motors engines +[2018-02-13T08:33:16.723] [INFO] cheese - batch complete in: 1.369 secs +[2018-02-13T08:33:16.907] [INFO] cheese - inserting 1000 documents. first: Azad Kashmir Regular Forces and last: Alegrians in Italy +[2018-02-13T08:33:16.920] [INFO] cheese - batch complete in: 1.236 secs +[2018-02-13T08:33:16.946] [INFO] cheese - batch complete in: 1.322 secs +[2018-02-13T08:33:17.051] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:33:17.319] [INFO] cheese - inserting 1000 documents. first: NCEL Premier Division and last: File:Wattie-creek-handover.jpg +[2018-02-13T08:33:17.428] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:33:17.473] [INFO] cheese - inserting 1000 documents. first: 1996-97 Országos Bajnokság I (men's water polo) and last: 1998 Fed Cup Europe/Africa Zone Group II - Pool B +[2018-02-13T08:33:17.559] [INFO] cheese - inserting 1000 documents. first: Campbell Burnap and last: Audi "S4 25quattro" +[2018-02-13T08:33:17.566] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Aciliu Viaduct and last: Template:Campaignbox Syrian civil war spillover in Lebanon +[2018-02-13T08:33:17.579] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:33:17.651] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:33:17.662] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:33:17.699] [INFO] cheese - inserting 1000 documents. first: List of city nicknames in Kansas and last: Wikipedia:WikiProject Spam/LinkReports/raisedbythestars.com +[2018-02-13T08:33:17.788] [INFO] cheese - inserting 1000 documents. first: Edgardo Codesal and last: Maria van der Hoeven +[2018-02-13T08:33:17.859] [INFO] cheese - batch complete in: 1.359 secs +[2018-02-13T08:33:18.002] [INFO] cheese - inserting 1000 documents. first: Thomas Dashwood and last: Brimstone (Parker novel) +[2018-02-13T08:33:18.035] [INFO] cheese - inserting 1000 documents. first: Green liberalism and last: Child safety lock +[2018-02-13T08:33:18.056] [INFO] cheese - batch complete in: 1.58 secs +[2018-02-13T08:33:18.202] [INFO] cheese - inserting 1000 documents. first: James Drysdale Brown and last: 2000 Asian Athletics Championships - Men's triple jump +[2018-02-13T08:33:18.233] [INFO] cheese - batch complete in: 2.133 secs +[2018-02-13T08:33:18.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/18027 Gokcay and last: Aliabad-e Chah-e Bolagh +[2018-02-13T08:33:18.423] [INFO] cheese - batch complete in: 1.477 secs +[2018-02-13T08:33:18.436] [INFO] cheese - inserting 1000 documents. first: Ceslaus, Saint and last: The Very Best of Antique +[2018-02-13T08:33:18.444] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:33:18.490] [INFO] cheese - inserting 1000 documents. first: Poems 1912-13 and last: List of radio stations in Tamaulipas +[2018-02-13T08:33:18.647] [INFO] cheese - batch complete in: 1.219 secs +[2018-02-13T08:33:18.695] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:33:18.703] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/raisedbythestars.com and last: Altare della patria +[2018-02-13T08:33:18.799] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:33:18.926] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:33:19.192] [INFO] cheese - inserting 1000 documents. first: 2000 Estoril Open - Men's Singles and last: 2002 Challenge Bell - Doubles +[2018-02-13T08:33:19.308] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:33:19.428] [INFO] cheese - inserting 1000 documents. first: Template:Family tree and last: Template:User falcons +[2018-02-13T08:33:19.686] [INFO] cheese - batch complete in: 1.63 secs +[2018-02-13T08:33:19.793] [INFO] cheese - inserting 1000 documents. first: Imbros (horse) and last: Template:2007 in Thai football +[2018-02-13T08:33:19.849] [INFO] cheese - inserting 1000 documents. first: 2002 European Athletics Championships - Men's 4 × 400 metres relay and last: 2002 Asian Athletics Championships - Women's 400 metres hurdles +[2018-02-13T08:33:19.859] [INFO] cheese - inserting 1000 documents. first: Pham Buu Loc and last: Category:Pathanamthitta district +[2018-02-13T08:33:19.893] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:33:19.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Gastropods/Related Wikiprojects and last: Template:JULIANDAY.HOUR/doc +[2018-02-13T08:33:19.959] [INFO] cheese - inserting 1000 documents. first: Mazraeh-ye Khalil Rowshan va Amir Khamushi and last: Golisano Children’s Museum of Naples +[2018-02-13T08:33:20.057] [INFO] cheese - batch complete in: 1.634 secs +[2018-02-13T08:33:20.157] [INFO] cheese - batch complete in: 1.358 secs +[2018-02-13T08:33:20.204] [INFO] cheese - batch complete in: 1.555 secs +[2018-02-13T08:33:20.215] [INFO] cheese - inserting 1000 documents. first: Kensington Oval, Dunedin and last: Template:Uw-spam1-short +[2018-02-13T08:33:20.320] [INFO] cheese - batch complete in: 1.623 secs +[2018-02-13T08:33:20.397] [INFO] cheese - inserting 1000 documents. first: Henri I de Montmorency and last: Caine, Hall, Sir +[2018-02-13T08:33:20.446] [INFO] cheese - batch complete in: 1.52 secs +[2018-02-13T08:33:20.708] [INFO] cheese - inserting 1000 documents. first: 2002-03 FC Dinamo București season and last: 2003-04 Barnsley F.C. season +[2018-02-13T08:33:20.838] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:33:20.835] [INFO] cheese - batch complete in: 2.598 secs +[2018-02-13T08:33:21.086] [INFO] cheese - inserting 1000 documents. first: National Folk Festival (Australia) and last: CHYR +[2018-02-13T08:33:21.117] [INFO] cheese - inserting 1000 documents. first: Terell davis and last: File:Fine Young Cannibals - I'm Not the Man I Used to Be.jpg +[2018-02-13T08:33:21.234] [INFO] cheese - batch complete in: 1.177 secs +[2018-02-13T08:33:21.239] [INFO] cheese - inserting 1000 documents. first: Krum dynasty and last: Category:Governors of Qom Province +[2018-02-13T08:33:21.240] [INFO] cheese - inserting 1000 documents. first: Backhand (disambiguation) and last: The words +[2018-02-13T08:33:21.311] [INFO] cheese - batch complete in: 1.625 secs +[2018-02-13T08:33:21.346] [INFO] cheese - inserting 1000 documents. first: Template:JULIANDAY.MINUTE/doc and last: Wikipedia:WikiProject Deletion sorting/Palestine +[2018-02-13T08:33:21.357] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:33:21.422] [INFO] cheese - inserting 1000 documents. first: Karen Senties and last: Creative Commons jurisdiction ports +[2018-02-13T08:33:21.448] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:33:21.495] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T08:33:21.629] [INFO] cheese - batch complete in: 1.472 secs +[2018-02-13T08:33:21.647] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Lawrence County, Tennessee and last: Template:Epinay-Le Treport railway diagram +[2018-02-13T08:33:21.892] [INFO] cheese - batch complete in: 1.446 secs +[2018-02-13T08:33:21.973] [INFO] cheese - inserting 1000 documents. first: 2006-07 Galatasaray S.K. season and last: 2007-11 Belgian political crisis +[2018-02-13T08:33:22.018] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:33:22.064] [INFO] cheese - inserting 1000 documents. first: Justin Davis and last: File:Oneworld 10 Years Anniversary.svg +[2018-02-13T08:33:22.260] [INFO] cheese - inserting 1000 documents. first: Paicĩ and last: Kainji Dam +[2018-02-13T08:33:22.280] [INFO] cheese - inserting 1000 documents. first: Azog the defiler and last: Category:Boxing in Wyoming +[2018-02-13T08:33:22.302] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T08:33:22.466] [INFO] cheese - batch complete in: 1.154 secs +[2018-02-13T08:33:22.528] [INFO] cheese - batch complete in: 1.08 secs +[2018-02-13T08:33:22.609] [INFO] cheese - inserting 1000 documents. first: German Green party and last: Wikipedia:Articles for deletion/Diamond (rapper) +[2018-02-13T08:33:22.657] [INFO] cheese - inserting 1000 documents. first: 2008 African Championships in Athletics - Men's 1500 metres and last: 2008 Australian Open - women's singles +[2018-02-13T08:33:22.722] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:33:22.725] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T08:33:22.804] [INFO] cheese - inserting 1000 documents. first: Le Duy Loan and last: Federal Executive Council (Nigeria) +[2018-02-13T08:33:22.885] [INFO] cheese - inserting 1000 documents. first: Michael Maurice Micklewhite and last: Disputed territories +[2018-02-13T08:33:22.940] [INFO] cheese - inserting 1000 documents. first: Audio plug-in and last: Be My Baby (Wonder Girls song) +[2018-02-13T08:33:22.987] [INFO] cheese - batch complete in: 1.492 secs +[2018-02-13T08:33:23.085] [INFO] cheese - batch complete in: 1.193 secs +[2018-02-13T08:33:23.267] [INFO] cheese - inserting 1000 documents. first: Museo de Bellas Artes (Málaga) and last: Template:Linkaudit/doc +[2018-02-13T08:33:23.305] [INFO] cheese - batch complete in: 2.47 secs +[2018-02-13T08:33:23.412] [INFO] cheese - inserting 1000 documents. first: 2008 World Junior Championships in Athletics - Men's hammer throw and last: Kurian kachapally +[2018-02-13T08:33:23.459] [INFO] cheese - batch complete in: 1.155 secs +[2018-02-13T08:33:23.618] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:33:23.733] [INFO] cheese - inserting 1000 documents. first: Template:SwimmingAt2013SoutheastAsianGames and last: MSA 1988 +[2018-02-13T08:33:23.866] [INFO] cheese - inserting 1000 documents. first: Infernal and last: Zooper car +[2018-02-13T08:33:23.891] [INFO] cheese - batch complete in: 1.363 secs +[2018-02-13T08:33:23.897] [INFO] cheese - inserting 1000 documents. first: Gorstan and last: Mykola Arkas +[2018-02-13T08:33:23.965] [INFO] cheese - inserting 1000 documents. first: Ras/Raf/MAP kinase and last: Wikipedia:WikiProject Spam/Local/thetalleys.com +[2018-02-13T08:33:23.977] [INFO] cheese - batch complete in: 1.252 secs +[2018-02-13T08:33:23.987] [INFO] cheese - inserting 1000 documents. first: Wise Foods and last: Tboung Khmum District +[2018-02-13T08:33:24.059] [INFO] cheese - batch complete in: 1.585 secs +[2018-02-13T08:33:24.146] [INFO] cheese - inserting 1000 documents. first: River End and last: 2010 UCI Mountain Bike & Trials World Championships - Women's cross-country +[2018-02-13T08:33:24.204] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T08:33:24.293] [INFO] cheese - batch complete in: 1.306 secs +[2018-02-13T08:33:24.303] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:33:24.482] [INFO] cheese - inserting 1000 documents. first: Spomenka Hribar and last: UNSCR 1904 +[2018-02-13T08:33:24.597] [INFO] cheese - batch complete in: 1.138 secs +[2018-02-13T08:33:24.642] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Hampshire County, West Virginia articles and last: 2011 EmblemHealth Bronx Open - Singles +[2018-02-13T08:33:24.682] [INFO] cheese - inserting 1000 documents. first: Factortame litigation and last: Category:People from Cheorwon County +[2018-02-13T08:33:24.765] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:33:24.791] [INFO] cheese - inserting 1000 documents. first: File:Cornwall Transit Logo.png and last: XHEOLA-FM +[2018-02-13T08:33:24.804] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:33:25.004] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:33:25.160] [INFO] cheese - inserting 1000 documents. first: Marguerite de Launay, baronne de Staal and last: Filosofy +[2018-02-13T08:33:25.311] [INFO] cheese - inserting 1000 documents. first: Template:Prefectures of the Central African Republic Image Map and last: Vox Angeli Children's Choir +[2018-02-13T08:33:25.433] [INFO] cheese - batch complete in: 2.128 secs +[2018-02-13T08:33:25.454] [INFO] cheese - inserting 1000 documents. first: Wedding receptions and last: Scottish Barony +[2018-02-13T08:33:25.485] [INFO] cheese - inserting 1000 documents. first: 2011 Grand Prix Hassan II - Qualifying and last: Category:Draft-Class Latter Day Saint movement articles +[2018-02-13T08:33:25.569] [INFO] cheese - batch complete in: 1.364 secs +[2018-02-13T08:33:25.606] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:33:25.666] [INFO] cheese - inserting 1000 documents. first: 1947-48 NBA season and last: 2005 South American Under-17 Football Championship +[2018-02-13T08:33:25.790] [INFO] cheese - batch complete in: 1.497 secs +[2018-02-13T08:33:25.805] [INFO] cheese - batch complete in: 1.745 secs +[2018-02-13T08:33:25.895] [INFO] cheese - inserting 1000 documents. first: Yelniki and last: Template:Moscow - Fryazino/Fryazevo +[2018-02-13T08:33:26.105] [INFO] cheese - batch complete in: 1.507 secs +[2018-02-13T08:33:26.202] [INFO] cheese - inserting 1000 documents. first: David Peter John Ross and last: Subaru Group +[2018-02-13T08:33:26.342] [INFO] cheese - inserting 1000 documents. first: 2011-12 Budapest Honved FC II season and last: 2010 Chang-Sat Bangkok 2 Open - Doubles +[2018-02-13T08:33:26.404] [INFO] cheese - inserting 1000 documents. first: Two People Fell in Love and last: Labute +[2018-02-13T08:33:26.431] [INFO] cheese - batch complete in: 1.627 secs +[2018-02-13T08:33:26.431] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:33:26.555] [INFO] cheese - batch complete in: 1.549 secs +[2018-02-13T08:33:26.682] [INFO] cheese - inserting 1000 documents. first: Category:Compositions by Aarre Merikanto and last: Russian Roulette (1992 film) +[2018-02-13T08:33:26.716] [INFO] cheese - inserting 1000 documents. first: Brachypelma vagans and last: Category:Purdue Boilermakers football players +[2018-02-13T08:33:26.767] [INFO] cheese - inserting 1000 documents. first: Category:Agricultural buildings and structures in Iowa and last: 2011-12 Illinois State Redbirds men's basketball team +[2018-02-13T08:33:26.790] [INFO] cheese - batch complete in: 1.221 secs +[2018-02-13T08:33:26.868] [INFO] cheese - inserting 1000 documents. first: The Last Live Video and last: Mate Records +[2018-02-13T08:33:26.902] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:33:26.934] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T08:33:27.082] [INFO] cheese - batch complete in: 1.292 secs +[2018-02-13T08:33:27.161] [INFO] cheese - inserting 1000 documents. first: Category:Diesel multiple units of the United States and last: Brandon Coleman +[2018-02-13T08:33:27.227] [INFO] cheese - inserting 1000 documents. first: Shanti Devi and last: In Japan during the 1990s +[2018-02-13T08:33:27.267] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:33:27.330] [INFO] cheese - inserting 1000 documents. first: Phylosophy and last: Loop splitting +[2018-02-13T08:33:27.435] [INFO] cheese - inserting 1000 documents. first: Micro 17, Satu Mare and last: 2012 Abierto Mexicano Telcel - Men's Singles +[2018-02-13T08:33:27.447] [INFO] cheese - batch complete in: 1.342 secs +[2018-02-13T08:33:27.574] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:33:27.644] [INFO] cheese - batch complete in: 2.211 secs +[2018-02-13T08:33:27.785] [INFO] cheese - inserting 1000 documents. first: Mirnes Mesic and last: Ralph Peterson +[2018-02-13T08:33:27.831] [INFO] cheese - inserting 1000 documents. first: National Institutes of Standards and Technology and last: (59486) 1999 JV +[2018-02-13T08:33:27.951] [INFO] cheese - batch complete in: 1.16 secs +[2018-02-13T08:33:28.018] [INFO] cheese - batch complete in: 1.463 secs +[2018-02-13T08:33:28.071] [INFO] cheese - inserting 1000 documents. first: 2012 Australian Open - Boys' Singles and last: 2012-13 ISU Speed Skating World Cup - Men's 1500 metres +[2018-02-13T08:33:28.094] [INFO] cheese - inserting 1000 documents. first: Amasa Mason Lyman and last: William Irwin (Unionist politician) +[2018-02-13T08:33:28.132] [INFO] cheese - inserting 1000 documents. first: CJPN and last: Ariel Motor Company +[2018-02-13T08:33:28.142] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:33:28.269] [INFO] cheese - batch complete in: 1.187 secs +[2018-02-13T08:33:28.333] [INFO] cheese - batch complete in: 1.398 secs +[2018-02-13T08:33:28.578] [INFO] cheese - inserting 1000 documents. first: Central Park, Wallasey and last: Category:Cinema of Madagascar +[2018-02-13T08:33:28.649] [INFO] cheese - inserting 1000 documents. first: File:Tasgetius coin.jpg and last: Patricia Strachota +[2018-02-13T08:33:28.665] [INFO] cheese - inserting 1000 documents. first: 2012-13 Leeds United F.C. season and last: Kovan, Hougang +[2018-02-13T08:33:28.704] [INFO] cheese - batch complete in: 1.437 secs +[2018-02-13T08:33:28.785] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:33:28.939] [INFO] cheese - batch complete in: 1.492 secs +[2018-02-13T08:33:28.954] [INFO] cheese - inserting 1000 documents. first: Portal:Military of ancient Rome/Selected article/6 and last: Apostrophized +[2018-02-13T08:33:29.097] [INFO] cheese - inserting 1000 documents. first: Category:Libraries in Antigua and Barbuda and last: Singam II +[2018-02-13T08:33:29.119] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:33:29.233] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T08:33:29.258] [INFO] cheese - inserting 1000 documents. first: Category:People from the Province of Trapani and last: Keong mas +[2018-02-13T08:33:29.314] [INFO] cheese - inserting 1000 documents. first: 2012-13 IRB Women's Sevens World Series and last: 2013 Seguros Bolivar Open Barranquilla - Singles +[2018-02-13T08:33:29.357] [INFO] cheese - inserting 1000 documents. first: I2i and last: WHEC +[2018-02-13T08:33:29.380] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:33:29.459] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T08:33:29.563] [INFO] cheese - batch complete in: 1.23 secs +[2018-02-13T08:33:29.595] [INFO] cheese - inserting 1000 documents. first: Apocalyptic Raids and last: List of state leaders in 1761 +[2018-02-13T08:33:29.704] [INFO] cheese - inserting 1000 documents. first: واہگہ and last: Thessalian barbel +[2018-02-13T08:33:29.807] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:33:29.819] [INFO] cheese - batch complete in: 2.174 secs +[2018-02-13T08:33:29.854] [INFO] cheese - inserting 1000 documents. first: Marlag and last: Icelandic-Canadian +[2018-02-13T08:33:29.989] [INFO] cheese - inserting 1000 documents. first: 2013 European Athletics U23 Championships - Women's 4 × 400 metres relay and last: Roman Catholic Diocese of Paphos +[2018-02-13T08:33:30.091] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:33:30.108] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:33:30.258] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Monroe County, Alabama and last: Category:Spacecraft launched in 1995 +[2018-02-13T08:33:30.407] [INFO] cheese - inserting 1000 documents. first: Doe Ching and last: Odostomia angularis +[2018-02-13T08:33:30.436] [INFO] cheese - batch complete in: 1.732 secs +[2018-02-13T08:33:30.445] [INFO] cheese - inserting 1000 documents. first: PopMart: Live From Mexico City and last: Wikipedia:Reference desk/Archives/Entertainment/2007 March 9 +[2018-02-13T08:33:30.554] [INFO] cheese - batch complete in: 1.321 secs +[2018-02-13T08:33:30.568] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:33:30.621] [INFO] cheese - inserting 1000 documents. first: 2013 Napa Valley Challenger - Doubles and last: 2013-14 Martyr's Memorial A-Division League +[2018-02-13T08:33:30.640] [INFO] cheese - inserting 1000 documents. first: Category:Fictional ants and last: Yupiks +[2018-02-13T08:33:30.757] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:33:30.811] [INFO] cheese - inserting 1000 documents. first: Hussein Mustahil and last: Tribalism (album) +[2018-02-13T08:33:30.921] [INFO] cheese - batch complete in: 1.357 secs +[2018-02-13T08:33:30.972] [INFO] cheese - batch complete in: 1.165 secs +[2018-02-13T08:33:31.038] [INFO] cheese - inserting 1000 documents. first: Morosaurus lentus and last: Daniel Lam Wai-keung +[2018-02-13T08:33:31.192] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T08:33:31.255] [INFO] cheese - inserting 1000 documents. first: Rosa Lee Ingram and last: Tom Chandler (The Last Ship) +[2018-02-13T08:33:31.297] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:33:31.368] [INFO] cheese - inserting 1000 documents. first: Vox Humana (album) and last: Way Out +[2018-02-13T08:33:31.444] [INFO] cheese - inserting 1000 documents. first: Category:Spacecraft launched in 1997 and last: Aliabad, Aqda +[2018-02-13T08:33:31.473] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:33:31.549] [INFO] cheese - inserting 1000 documents. first: Killing of David Wilkie and last: Tionesta Creek +[2018-02-13T08:33:31.632] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T08:33:31.717] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:33:31.833] [INFO] cheese - inserting 1000 documents. first: 2014 Aegon Championships - Singles and last: 2014 Fed Cup Americas Zone Group I - Pool A +[2018-02-13T08:33:31.870] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1762 and last: Yousef Alavi +[2018-02-13T08:33:31.900] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:33:31.953] [INFO] cheese - inserting 1000 documents. first: 温家宝 and last: Category:Gardens in Bangladesh +[2018-02-13T08:33:32.010] [INFO] cheese - inserting 1000 documents. first: Ultrawave and last: Camp Hero State Park +[2018-02-13T08:33:32.055] [INFO] cheese - inserting 1000 documents. first: Daniel Lam Wai Keung and last: Scarborough, North Yorkshire (borough and district) +[2018-02-13T08:33:32.082] [INFO] cheese - batch complete in: 2.262 secs +[2018-02-13T08:33:32.120] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:33:32.185] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:33:32.238] [INFO] cheese - batch complete in: 1.317 secs +[2018-02-13T08:33:32.442] [INFO] cheese - inserting 1000 documents. first: Le Cap d'Agde and last: Ramon "Bong" Revilla Jr +[2018-02-13T08:33:32.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lina Scott Gatty and last: 2014 World Junior Championships in Athletics - Men's 10,000 metres +[2018-02-13T08:33:32.556] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:33:32.613] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:33:32.720] [INFO] cheese - inserting 1000 documents. first: Anarestan, Yazd and last: Norton Grinding Company +[2018-02-13T08:33:32.866] [INFO] cheese - batch complete in: 1.234 secs +[2018-02-13T08:33:32.877] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/May/13/Selected article and last: Gerotor pump +[2018-02-13T08:33:33.015] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T08:33:33.058] [INFO] cheese - inserting 1000 documents. first: 5th Space Operations Squadron (United States) and last: Wikipedia:Requests for checkuser/Case/Xted +[2018-02-13T08:33:33.169] [INFO] cheese - inserting 1000 documents. first: 2014 World Wrestling Championships - Men's freestyle 97 kg and last: 2014-15 Lafayette Leopards men's basketball team +[2018-02-13T08:33:33.228] [INFO] cheese - batch complete in: 1.043 secs +[2018-02-13T08:33:33.293] [INFO] cheese - inserting 1000 documents. first: Clavigesta and last: File:HobartDouble-DeckerTram.JPG +[2018-02-13T08:33:33.298] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:33:33.389] [INFO] cheese - batch complete in: 1.269 secs +[2018-02-13T08:33:33.445] [INFO] cheese - inserting 1000 documents. first: Eric Mackenzie and last: Simultaneous orthogonal rotations angle +[2018-02-13T08:33:33.514] [INFO] cheese - inserting 1000 documents. first: Steve Sakoman and last: ALCO DL-110 +[2018-02-13T08:33:33.540] [INFO] cheese - batch complete in: 0.927 secs +[2018-02-13T08:33:33.619] [INFO] cheese - batch complete in: 1.38 secs +[2018-02-13T08:33:33.645] [INFO] cheese - inserting 1000 documents. first: 2014-15 Idaho Vandals men's basketball team and last: 2014-15 Syrian Premier League +[2018-02-13T08:33:33.688] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T08:33:33.805] [INFO] cheese - inserting 1000 documents. first: Decanter (Magazine) and last: Georgiadis +[2018-02-13T08:33:33.825] [INFO] cheese - inserting 1000 documents. first: File:Pastorale (album).jpg and last: Scoparia animosa +[2018-02-13T08:33:33.832] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed-Class Haryana articles of Unknown-importance and last: The Airing of Grievances +[2018-02-13T08:33:33.851] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:33:33.931] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:33:33.938] [INFO] cheese - inserting 1000 documents. first: List of mammals and last: Greatest Hits III +[2018-02-13T08:33:33.956] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:33:34.080] [INFO] cheese - inserting 1000 documents. first: 2014-15 Segunda Liga and last: 2014-15 Turkish Cup +[2018-02-13T08:33:34.100] [INFO] cheese - inserting 1000 documents. first: Dumaguete Airport and last: Izakaya Choji +[2018-02-13T08:33:34.097] [INFO] cheese - batch complete in: 2.015 secs +[2018-02-13T08:33:34.118] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T08:33:34.278] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:33:34.365] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Davidson County, Tennessee and last: Darzazin +[2018-02-13T08:33:34.659] [INFO] cheese - inserting 1000 documents. first: Radek Novotný and last: Category:FL-Class Tamil Nadu articles of Unknown-importance +[2018-02-13T08:33:34.677] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:33:34.717] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tungstem and last: Langres cheese +[2018-02-13T08:33:34.751] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:33:34.885] [INFO] cheese - inserting 1000 documents. first: 2015 Canberra Tennis International - Singles and last: 2015 Lale Cup - Singles +[2018-02-13T08:33:35.065] [INFO] cheese - batch complete in: 1.446 secs +[2018-02-13T08:33:35.080] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:33:35.119] [INFO] cheese - inserting 1000 documents. first: HAPM and last: Sandy Creek (Allegheny River) +[2018-02-13T08:33:35.204] [INFO] cheese - inserting 1000 documents. first: Center Cemetery (Southampton, Massachusetts) and last: Bermudian general election, 1983 +[2018-02-13T08:33:35.332] [INFO] cheese - inserting 1000 documents. first: Ambedkar Institute of Technology and last: John Eyles (disambiguation) +[2018-02-13T08:33:35.343] [INFO] cheese - batch complete in: 1.387 secs +[2018-02-13T08:33:35.348] [INFO] cheese - batch complete in: 1.496 secs +[2018-02-13T08:33:35.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Summary motion regarding biographies of living people deletions and last: Promise (margarine) +[2018-02-13T08:33:35.492] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:33:35.615] [INFO] cheese - batch complete in: 1.336 secs +[2018-02-13T08:33:35.651] [INFO] cheese - inserting 1000 documents. first: 2015 Wimbledon Championships - Wheelchair Men's Doubles and last: 2015-16 Galatasaray S.K. season +[2018-02-13T08:33:35.687] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:33:35.828] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Tamil Nadu articles of Top-importance and last: Utah State Route 151 (1933) +[2018-02-13T08:33:35.950] [INFO] cheese - batch complete in: 1.198 secs +[2018-02-13T08:33:36.010] [INFO] cheese - inserting 1000 documents. first: Rotenberg (disambiguation) and last: Jesús María Serrano +[2018-02-13T08:33:36.106] [INFO] cheese - inserting 1000 documents. first: File:Everything at Once (Front Cover).png and last: 2015-16 Esbjerg fB season +[2018-02-13T08:33:36.121] [INFO] cheese - inserting 1000 documents. first: Bahurim and last: Churchill, Ontario +[2018-02-13T08:33:36.128] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:33:36.251] [INFO] cheese - inserting 1000 documents. first: The Tufts Observer and last: Bernard "Bernie" McLaughlin +[2018-02-13T08:33:36.245] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:33:36.296] [INFO] cheese - inserting 1000 documents. first: Aber station and last: Robert Baden-Powell, 3rd Baron Baden-Powell +[2018-02-13T08:33:36.306] [INFO] cheese - inserting 1000 documents. first: Soviet rule in Armenia and last: Worst-case scenario +[2018-02-13T08:33:36.351] [INFO] cheese - batch complete in: 2.254 secs +[2018-02-13T08:33:36.382] [INFO] cheese - inserting 1000 documents. first: Category:Silesian politicians and last: Niasoma +[2018-02-13T08:33:36.449] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:33:36.465] [INFO] cheese - batch complete in: 1.4 secs +[2018-02-13T08:33:36.479] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:33:36.566] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:33:36.635] [INFO] cheese - inserting 1000 documents. first: Miriam Ginestier and last: 2016 Australian Open - Women Legends' Doubles +[2018-02-13T08:33:36.802] [INFO] cheese - inserting 1000 documents. first: Utah State Route 151 (pre-1977) and last: Category:CFU Club Championship +[2018-02-13T08:33:36.815] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:33:36.912] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:33:37.165] [INFO] cheese - inserting 1000 documents. first: Van der Waal force and last: Stem ginger +[2018-02-13T08:33:37.274] [INFO] cheese - inserting 1000 documents. first: 2016 Brisbane International - Women's Singles and last: Air Base 942 Lyon - Mont Verdun +[2018-02-13T08:33:37.322] [INFO] cheese - batch complete in: 1.171 secs +[2018-02-13T08:33:37.323] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:33:37.425] [INFO] cheese - inserting 1000 documents. first: Niphothixa and last: Imaduddin School +[2018-02-13T08:33:37.533] [INFO] cheese - inserting 1000 documents. first: Lightweight programming language and last: Category:Isan geography stubs +[2018-02-13T08:33:37.561] [INFO] cheese - inserting 1000 documents. first: File:Prince LetsWork.jpg and last: List of University of Sydney people +[2018-02-13T08:33:37.590] [INFO] cheese - inserting 1000 documents. first: Bootleg Recordings 1963 and last: 2013–14 San Diego Sockers season +[2018-02-13T08:33:37.667] [INFO] cheese - batch complete in: 1.218 secs +[2018-02-13T08:33:37.709] [INFO] cheese - batch complete in: 1.142 secs +[2018-02-13T08:33:37.791] [INFO] cheese - inserting 1000 documents. first: Afrikaanse Woordelys en Spelreëls - Introductory paragraph, English and last: Aristides de Sousa Mendes - O Consul de Bordeus +[2018-02-13T08:33:37.794] [INFO] cheese - batch complete in: 1.329 secs +[2018-02-13T08:33:37.806] [INFO] cheese - batch complete in: 1.327 secs +[2018-02-13T08:33:38.122] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:33:38.190] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Shir and last: Category:High-importance Daman and Diu articles +[2018-02-13T08:33:38.368] [INFO] cheese - batch complete in: 1.456 secs +[2018-02-13T08:33:38.477] [INFO] cheese - inserting 1000 documents. first: Corythornis leucogaster and last: Marines, France +[2018-02-13T08:33:38.592] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 1992 Winter Olympics - Women's super-G and last: Athletics at the 2002 Asian Games - Women's 100 metres hurdles +[2018-02-13T08:33:38.596] [INFO] cheese - inserting 1000 documents. first: Churchville, Ontario and last: Intercal +[2018-02-13T08:33:38.603] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T08:33:38.680] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:33:38.732] [INFO] cheese - inserting 1000 documents. first: Collingwood (New Zealand electorate) and last: 1991-92 Cuban National Series +[2018-02-13T08:33:38.747] [INFO] cheese - inserting 1000 documents. first: Margarita (song) and last: List of tallest structures in Kosovo +[2018-02-13T08:33:38.788] [INFO] cheese - inserting 1000 documents. first: Cheung Siu Wai and last: Wild Search +[2018-02-13T08:33:38.865] [INFO] cheese - batch complete in: 1.156 secs +[2018-02-13T08:33:38.934] [INFO] cheese - batch complete in: 2.583 secs +[2018-02-13T08:33:39.062] [INFO] cheese - batch complete in: 1.256 secs +[2018-02-13T08:33:39.118] [INFO] cheese - batch complete in: 1.451 secs +[2018-02-13T08:33:39.183] [INFO] cheese - inserting 1000 documents. first: Dehradun district and last: The Spirit of Christmas Past +[2018-02-13T08:33:39.232] [INFO] cheese - inserting 1000 documents. first: 1951-52 Magyar Kupa and last: Quatar at the 2014 Asian Beach Games +[2018-02-13T08:33:39.332] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:33:39.418] [INFO] cheese - inserting 1000 documents. first: 保定軍校 and last: Czech Republic – Germany border +[2018-02-13T08:33:39.423] [INFO] cheese - batch complete in: 1.629 secs +[2018-02-13T08:33:39.536] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:33:39.714] [INFO] cheese - inserting 1000 documents. first: Labour City, Quatar and last: Aomori 1st district (1947-1993) +[2018-02-13T08:33:39.841] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:33:39.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Henry Clay Senate and last: Malibu's Most Wanted (soundtrack) +[2018-02-13T08:33:39.925] [INFO] cheese - inserting 1000 documents. first: Football-Mundial and last: Portal:Nautical/July/19/Selected picture +[2018-02-13T08:33:39.953] [INFO] cheese - inserting 1000 documents. first: Category:Lists of roads in Virginia and last: Wikipedia:Articles for deletion/Ahmed Ennaji +[2018-02-13T08:33:40.019] [INFO] cheese - batch complete in: 1.153 secs +[2018-02-13T08:33:40.061] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:33:40.130] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:33:40.217] [INFO] cheese - inserting 1000 documents. first: Polish-Czech Friendship Trail and last: Tandia language +[2018-02-13T08:33:40.245] [INFO] cheese - inserting 1000 documents. first: Archery at the 2014 Asian Games - Women's team compound and last: Athletics at the 2015 African Games - Men's 100 metres +[2018-02-13T08:33:40.301] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:33:40.373] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:33:40.419] [INFO] cheese - inserting 1000 documents. first: The Spirit of Christmas Present and last: TBTA +[2018-02-13T08:33:40.542] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Daman and Diu articles and last: Sweet & Sour Tears +[2018-02-13T08:33:40.542] [INFO] cheese - batch complete in: 1.118 secs +[2018-02-13T08:33:40.727] [INFO] cheese - batch complete in: 2.359 secs +[2018-02-13T08:33:40.761] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/July/20/Selected picture and last: Derby h:o racing club +[2018-02-13T08:33:40.783] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2015 Southeast Asian Games - Men's 10,000 metres and last: Bahnstrecke Nürnberg-Crailsheim +[2018-02-13T08:33:40.812] [INFO] cheese - inserting 1000 documents. first: International emergency medicine and last: The Moss +[2018-02-13T08:33:40.818] [INFO] cheese - inserting 1000 documents. first: Traditional boat race at the 2013 Southeast Asian Games and last: Category:Government agencies established in 1826 +[2018-02-13T08:33:40.823] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:33:40.901] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:33:40.979] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:33:41.043] [INFO] cheese - inserting 1000 documents. first: Andrea Briotti and last: Robert Widdowfield +[2018-02-13T08:33:41.071] [INFO] cheese - inserting 1000 documents. first: Horace Arthur Rose and last: Mitchell Callaway +[2018-02-13T08:33:41.142] [INFO] cheese - batch complete in: 2.207 secs +[2018-02-13T08:33:41.232] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:33:41.344] [INFO] cheese - batch complete in: 1.325 secs +[2018-02-13T08:33:41.555] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2015 Pan American Games - Women's discus throw and last: Battle of Baiji (October-December 2014) +[2018-02-13T08:33:41.623] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:33:41.731] [INFO] cheese - inserting 1000 documents. first: List of Black Books episode and last: Vintgar Gorge +[2018-02-13T08:33:41.771] [INFO] cheese - inserting 1000 documents. first: File:Evpic.jpg and last: Hexanchus +[2018-02-13T08:33:41.823] [INFO] cheese - inserting 1000 documents. first: Joe Huxley and last: Wikipedia:Articles for deletion/Rob Edmond +[2018-02-13T08:33:41.843] [INFO] cheese - inserting 1000 documents. first: The Phantom Rider (Universal serial) and last: Natalie Bodanya +[2018-02-13T08:33:41.856] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T08:33:41.888] [INFO] cheese - inserting 1000 documents. first: Biathlon at the 1999 Asian Winter Games - Women's individual and last: DRESS syndrome +[2018-02-13T08:33:41.919] [INFO] cheese - batch complete in: 1.376 secs +[2018-02-13T08:33:41.958] [INFO] cheese - batch complete in: 1.056 secs +[2018-02-13T08:33:42.012] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T08:33:42.014] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:33:42.043] [INFO] cheese - inserting 1000 documents. first: Hassel Auxiliary Dam and last: Eastern cape Redfin +[2018-02-13T08:33:42.120] [INFO] cheese - inserting 1000 documents. first: Andrew Wishart and last: Category:Organizations based in Winston-Salem, North Carolina +[2018-02-13T08:33:42.140] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:33:42.223] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T08:33:42.401] [INFO] cheese - inserting 1000 documents. first: Bulgarian National Union - New Democracy and last: China-Kazakhstan relations +[2018-02-13T08:33:42.443] [INFO] cheese - inserting 1000 documents. first: Arthur L. Benton and last: Wikipedia:WikiProject Topical outlines/Draft/List of basic Cuba topics +[2018-02-13T08:33:42.461] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:33:42.499] [INFO] cheese - inserting 1000 documents. first: Chennai-Bangalore line and last: The Ancient Allan +[2018-02-13T08:33:42.528] [INFO] cheese - inserting 1000 documents. first: Ulrich von Brockdorff-Rantzau and last: The Legend Of Zelda: Oracle of Ages +[2018-02-13T08:33:42.562] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:33:42.629] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:33:42.668] [INFO] cheese - batch complete in: 1.526 secs +[2018-02-13T08:33:42.679] [INFO] cheese - inserting 1000 documents. first: The Sicilian Vespers and last: Esterhazy (town of) +[2018-02-13T08:33:42.770] [INFO] cheese - inserting 1000 documents. first: Hampshire Garden Apartment Buildings and last: Category:Roller coasters introduced in 2000 +[2018-02-13T08:33:42.796] [INFO] cheese - inserting 1000 documents. first: Saint Valerius and last: No. 10 in F minor, "Allegro Agitato", or "Appassionata" +[2018-02-13T08:33:42.819] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:33:42.834] [INFO] cheese - inserting 1000 documents. first: Chapter 2. Why So Serious? - The Misconceptions of Me and last: Croatian-Serbian +[2018-02-13T08:33:42.841] [INFO] cheese - inserting 1000 documents. first: Anwaruddin Choudhury and last: Piaggio P.111 +[2018-02-13T08:33:42.953] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T08:33:42.969] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:33:42.993] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:33:43.084] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:33:43.308] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topical outlines/Draft/List of basic Cyprus topics and last: Mylargadda +[2018-02-13T08:33:43.379] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:33:43.476] [INFO] cheese - inserting 1000 documents. first: Costa Rica-Iceland relations and last: Delaware-William & Mary football rivalry +[2018-02-13T08:33:43.571] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:33:43.576] [INFO] cheese - inserting 1000 documents. first: Flint maize and last: Category:1968–69 Scottish Football League +[2018-02-13T08:33:43.703] [INFO] cheese - inserting 1000 documents. first: Category:Trinidad and Tobago and the Commonwealth of Nations and last: List of tallest twin buildings in the Philippines +[2018-02-13T08:33:43.717] [INFO] cheese - inserting 1000 documents. first: No. 2 in A minor, "Molto Vivace", or "Fusées" (Rockets) and last: Chengdu Metro +[2018-02-13T08:33:43.735] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:33:43.815] [INFO] cheese - inserting 1000 documents. first: Saarländischer Rundfunk and last: Willard Van Quine +[2018-02-13T08:33:43.830] [INFO] cheese - inserting 1000 documents. first: Point of Entry (Doctor Who audio) and last: Template:CTB minutes/06-1932-01 +[2018-02-13T08:33:43.873] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:33:43.881] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:33:43.913] [INFO] cheese - batch complete in: 1.094 secs +[2018-02-13T08:33:43.949] [INFO] cheese - inserting 1000 documents. first: Dancesport at the 2010 Asian Games - Five standard dances and last: Daniel Esterhazy (1585-1654) +[2018-02-13T08:33:43.980] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:33:44.038] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T08:33:44.213] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2008 June 21 and last: Wilbur mitcham +[2018-02-13T08:33:44.239] [INFO] cheese - inserting 1000 documents. first: Last House on the Left and last: Voronoi diagrams +[2018-02-13T08:33:44.318] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:33:44.336] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Cumberland County, Kentucky and last: Cham, Iran (disambiguation) +[2018-02-13T08:33:44.406] [INFO] cheese - inserting 1000 documents. first: Directors Guild of America Award for Outstanding Directing - Documentaries and last: Template:Country data Phitsanulok +[2018-02-13T08:33:44.408] [INFO] cheese - batch complete in: 1.74 secs +[2018-02-13T08:33:44.450] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:33:44.589] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:33:44.649] [INFO] cheese - inserting 1000 documents. first: Lemuel Wells and last: Sonoma Valley Regional Park +[2018-02-13T08:33:44.692] [INFO] cheese - inserting 1000 documents. first: St. Andrew's Cathedral, Singapore and last: Kemeko +[2018-02-13T08:33:44.746] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:33:44.872] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Database reports/User template redirects and last: Category:Ivorian expatriates in Romania +[2018-02-13T08:33:44.877] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:33:44.994] [INFO] cheese - inserting 1000 documents. first: Malabo Airport and last: Zeus-Ammon +[2018-02-13T08:33:45.050] [INFO] cheese - batch complete in: 1.07 secs +[2018-02-13T08:33:45.146] [INFO] cheese - inserting 1000 documents. first: Template:Country data Phitsanulok/doc and last: Downtown West - Kerby +[2018-02-13T08:33:45.150] [INFO] cheese - batch complete in: 1.237 secs +[2018-02-13T08:33:45.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Midnight Escape (band) and last: Capes of the Kimberley coastline of Western Australia +[2018-02-13T08:33:45.219] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:33:45.304] [INFO] cheese - inserting 1000 documents. first: Coins of the Venezuelan venezolano and last: George Marple +[2018-02-13T08:33:45.303] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:33:45.396] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:33:45.465] [INFO] cheese - inserting 1000 documents. first: File:KennetOceanographyCentre.jpg and last: Papadimos +[2018-02-13T08:33:45.528] [INFO] cheese - inserting 1000 documents. first: Embry-Riddle-Prescott Eagles and last: Făgăraș-Sibiu Motorway +[2018-02-13T08:33:45.554] [INFO] cheese - inserting 1000 documents. first: Andrey Pervozvanny class battleship and last: Alosa volgensis +[2018-02-13T08:33:45.558] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:33:45.579] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T08:33:45.637] [INFO] cheese - inserting 1000 documents. first: Template:North Omaha and last: River Plate F.C. +[2018-02-13T08:33:45.655] [INFO] cheese - inserting 1000 documents. first: Treaty of San Ildefonse and last: Broadcasting, Entertainment, Cinematograph and Theatre Union +[2018-02-13T08:33:45.666] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:33:45.685] [INFO] cheese - inserting 1000 documents. first: U+28B2 and last: Template:Did you know nominations/Black bun +[2018-02-13T08:33:45.723] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T08:33:45.733] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:33:45.798] [INFO] cheese - batch complete in: 1.39 secs +[2018-02-13T08:33:45.841] [INFO] cheese - inserting 1000 documents. first: Batallion wars and last: North Plainfield (NJ) +[2018-02-13T08:33:45.925] [INFO] cheese - inserting 1000 documents. first: Little Sebakwe River and last: Gregers Gram (1846-1929) +[2018-02-13T08:33:45.934] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:33:45.974] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T08:33:46.049] [INFO] cheese - inserting 1000 documents. first: Filigranes and last: Paul Lambert (disambiguation) +[2018-02-13T08:33:46.149] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:33:46.251] [INFO] cheese - inserting 1000 documents. first: Idol (Swedish TV series) 2013 and last: Taekwondo at the 2010 Asian Games – Women's 73 kg +[2018-02-13T08:33:46.283] [INFO] cheese - inserting 1000 documents. first: (118294) 1998 SQ75 and last: The Monstruous Regiment of Women +[2018-02-13T08:33:46.307] [INFO] cheese - inserting 1000 documents. first: Danny Morrison (Carolina Panthers) and last: Pusa hispida saimensis +[2018-02-13T08:33:46.427] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:33:46.450] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:33:46.457] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:33:46.534] [INFO] cheese - inserting 1000 documents. first: Georgia and Florida Railway (1906-26) and last: Hanover-Würzburg high-speed railway +[2018-02-13T08:33:46.577] [INFO] cheese - inserting 1000 documents. first: Monticello Hotel (Longview) and last: American Japanese +[2018-02-13T08:33:46.634] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:33:46.761] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:33:46.891] [INFO] cheese - inserting 1000 documents. first: Frenchtown (NJ) and last: Ashland Stakes +[2018-02-13T08:33:47.021] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:33:47.108] [INFO] cheese - inserting 1000 documents. first: Swimcaps and last: Juntendo University +[2018-02-13T08:33:47.111] [INFO] cheese - inserting 1000 documents. first: MBS-TV and last: Draft:MassRoots +[2018-02-13T08:33:47.180] [INFO] cheese - inserting 1000 documents. first: Porvenir Municipality and last: Wikipedia:Articles for deletion/Easycore +[2018-02-13T08:33:47.190] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:33:47.208] [INFO] cheese - inserting 1000 documents. first: File:Somewhere Slow.jpg and last: Category:Finley Football Club players +[2018-02-13T08:33:47.208] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:33:47.217] [INFO] cheese - inserting 1000 documents. first: Hardman Philips House and last: Category:Geography of Randolph County, North Carolina +[2018-02-13T08:33:47.358] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:33:47.375] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:33:47.441] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T08:33:47.621] [INFO] cheese - inserting 1000 documents. first: Beretta 9000S Type F40 and last: Mohammed Neguib +[2018-02-13T08:33:47.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/3GPP Long Term Evolution and last: Indonesia-Tunisia relations +[2018-02-13T08:33:47.697] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:33:47.702] [INFO] cheese - batch complete in: 1.904 secs +[2018-02-13T08:33:47.838] [INFO] cheese - inserting 1000 documents. first: Isarn (bishop of Grenoble) and last: File:KYMC-FM logo.png +[2018-02-13T08:33:47.845] [INFO] cheese - inserting 1000 documents. first: Durbach and last: Wikipedia:WikiProject Spam/LinkSearch/Proboards49.com +[2018-02-13T08:33:47.884] [INFO] cheese - inserting 1000 documents. first: (404) Arsinoë and last: Malmö Airport +[2018-02-13T08:33:47.896] [INFO] cheese - inserting 1000 documents. first: Category:Murray Football League players and last: Chiesa di Santa Maria Maddalena dei Pazzi +[2018-02-13T08:33:47.993] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:33:48.008] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:33:48.017] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:33:48.067] [INFO] cheese - batch complete in: 1.305 secs +[2018-02-13T08:33:48.111] [INFO] cheese - inserting 1000 documents. first: Noble Virgins of Jesus and last: Nate Willems +[2018-02-13T08:33:48.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Heriberto Gil Martínez and last: Coastal rowing +[2018-02-13T08:33:48.218] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:33:48.308] [INFO] cheese - inserting 1000 documents. first: Category:Women in Mizoram politics and last: Illinois-Indiana men's basketball rivalry +[2018-02-13T08:33:48.343] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:33:48.378] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:33:48.584] [INFO] cheese - inserting 1000 documents. first: Category:Anglican suffragan bishops in the Diocese of Chelmsford and last: Murray International Trust +[2018-02-13T08:33:48.623] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:33:48.813] [INFO] cheese - inserting 1000 documents. first: Ameer Muawiyah and last: Fencing at the 1972 Summer Olympics - Men's epee +[2018-02-13T08:33:48.815] [INFO] cheese - inserting 1000 documents. first: Manny's Music and last: Category:Alaska education-related lists +[2018-02-13T08:33:48.854] [INFO] cheese - inserting 1000 documents. first: Ouvrage Reservoir and last: Category:Wikipedia sockpuppets of Bosnipedian +[2018-02-13T08:33:48.864] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:33:48.867] [INFO] cheese - inserting 1000 documents. first: Antonio Farré and last: Category:Plantar flexors +[2018-02-13T08:33:48.878] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:33:48.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkSearch/Proboards50.com and last: Strainer cycle +[2018-02-13T08:33:48.893] [INFO] cheese - inserting 1000 documents. first: Melusina, Countess of Walsingham and last: Battle of Southern Shansi +[2018-02-13T08:33:48.917] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:33:48.931] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:33:49.030] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:33:49.061] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:33:49.211] [INFO] cheese - inserting 1000 documents. first: Papineau Avenue and last: Adam Jones (football cornerback) +[2018-02-13T08:33:49.221] [INFO] cheese - inserting 1000 documents. first: Index of physics articles: A-G and last: List of Alderson-Broaddus Battlers head football coaches +[2018-02-13T08:33:49.254] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T08:33:49.267] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:33:49.321] [INFO] cheese - inserting 1000 documents. first: Kornel Ujejski and last: The Merv Griffin Show +[2018-02-13T08:33:49.385] [INFO] cheese - inserting 1000 documents. first: Far North Queensland Bulls FC and last: Template:Did you know nominations/Hellcow +[2018-02-13T08:33:49.415] [INFO] cheese - batch complete in: 1.713 secs +[2018-02-13T08:33:49.433] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:33:49.500] [INFO] cheese - inserting 1000 documents. first: Medical grade silicone and last: Wikipedia:Articles for deletion/Tux, of Math Command +[2018-02-13T08:33:49.520] [INFO] cheese - inserting 1000 documents. first: Dwitiya and last: Category:Plants described in 1779 +[2018-02-13T08:33:49.580] [INFO] cheese - inserting 1000 documents. first: Template:Iowa Democratic primary polls, 2016 and last: List of Japanese football transfers winter 2015-16 +[2018-02-13T08:33:49.581] [INFO] cheese - inserting 1000 documents. first: Devi and Vrkis and last: Mary Ballou +[2018-02-13T08:33:49.595] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:33:49.612] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T08:33:49.638] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:33:49.711] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:33:49.837] [INFO] cheese - inserting 1000 documents. first: Topical outline of crafts and last: Donald Horowitz (New Jersey lawyer) +[2018-02-13T08:33:49.915] [INFO] cheese - inserting 1000 documents. first: CF União de Coimbra and last: Home, WA +[2018-02-13T08:33:49.973] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:33:50.176] [INFO] cheese - inserting 1000 documents. first: Alexander Macleod and last: Collinia beringensis +[2018-02-13T08:33:50.208] [INFO] cheese - batch complete in: 1.147 secs +[2018-02-13T08:33:50.222] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Transpositional modulation and last: List of members of the European Parliament for Greece, 1994-99 +[2018-02-13T08:33:50.326] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:33:50.532] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:33:50.803] [INFO] cheese - inserting 1000 documents. first: File:Blood Sweat And Tears The Owl And the Pussy Cat.jpg and last: Cecil B. Brown Jr. +[2018-02-13T08:33:51.024] [INFO] cheese - batch complete in: 1.386 secs +[2018-02-13T08:33:51.049] [INFO] cheese - inserting 1000 documents. first: Gessertshausen and last: Person-fit analysis +[2018-02-13T08:33:51.237] [INFO] cheese - inserting 1000 documents. first: Judo at the 2014 Commonwealth Games - Women's 70 kg and last: Lloyd Wood (director) +[2018-02-13T08:33:51.279] [INFO] cheese - inserting 1000 documents. first: Category:Thought experiments in physics and last: Theodor Quandt +[2018-02-13T08:33:51.297] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:33:51.445] [INFO] cheese - batch complete in: 1.734 secs +[2018-02-13T08:33:51.573] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Indian literature articles of Low-importance and last: Causal set bibliography +[2018-02-13T08:33:51.613] [INFO] cheese - batch complete in: 2.018 secs +[2018-02-13T08:33:51.665] [INFO] cheese - inserting 1000 documents. first: International political economy and last: Youth work +[2018-02-13T08:33:51.726] [INFO] cheese - batch complete in: 1.753 secs +[2018-02-13T08:33:51.933] [INFO] cheese - inserting 1000 documents. first: Hoodsport, WA and last: Jaap Eden baan +[2018-02-13T08:33:51.973] [INFO] cheese - inserting 1000 documents. first: List of members of the Italian Senate, 2008-13 and last: List of minor planets: 419001-420000 +[2018-02-13T08:33:52.028] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:33:52.042] [INFO] cheese - batch complete in: 2.626 secs +[2018-02-13T08:33:52.091] [INFO] cheese - batch complete in: 1.883 secs +[2018-02-13T08:33:52.230] [INFO] cheese - inserting 1000 documents. first: Orson Welles and People and last: Category:1910 in British sport +[2018-02-13T08:33:52.259] [INFO] cheese - inserting 1000 documents. first: File:FK Skopje Logo.png and last: Garudinistis variegata +[2018-02-13T08:33:52.332] [INFO] cheese - batch complete in: 1.308 secs +[2018-02-13T08:33:52.408] [INFO] cheese - inserting 1000 documents. first: Kane & Abel (miniseries) and last: Sproing awards +[2018-02-13T08:33:52.410] [INFO] cheese - batch complete in: 1.875 secs +[2018-02-13T08:33:52.579] [INFO] cheese - inserting 1000 documents. first: Cryptolechia glischrodes and last: Manchester united season 2011-12 +[2018-02-13T08:33:52.611] [INFO] cheese - inserting 1000 documents. first: Hugh Montgomery and last: Ofenhorn +[2018-02-13T08:33:52.691] [INFO] cheese - batch complete in: 1.245 secs +[2018-02-13T08:33:52.794] [INFO] cheese - inserting 1000 documents. first: Category:Plutonic rocks and last: File:K-os the trill a journey so far album cover.jpg +[2018-02-13T08:33:52.810] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:33:52.700] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:33:53.040] [INFO] cheese - batch complete in: 1.425 secs +[2018-02-13T08:33:53.211] [INFO] cheese - inserting 1000 documents. first: Mausoleum Meisdorf and last: Category:2008 in Maltese sport +[2018-02-13T08:33:53.324] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:33:53.347] [INFO] cheese - inserting 1000 documents. first: International Rutabaga Curling Championship and last: List of episodes of Arrested Development +[2018-02-13T08:33:53.360] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 260001-261000 and last: Moroccan Arabic-African Federation Treaty referendum, 1984 +[2018-02-13T08:33:53.411] [INFO] cheese - inserting 1000 documents. first: Community West Bancshares and last: Harpers ferry raid +[2018-02-13T08:33:53.425] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:33:53.459] [INFO] cheese - inserting 1000 documents. first: Route 34A (New York) and last: Parker Canyon Lake +[2018-02-13T08:33:53.460] [INFO] cheese - batch complete in: 1.369 secs +[2018-02-13T08:33:53.538] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:33:53.541] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:33:53.632] [INFO] cheese - inserting 1000 documents. first: Sand Olive and last: Do You Remember the First Time? +[2018-02-13T08:33:53.662] [INFO] cheese - inserting 1000 documents. first: Denominación de origen calificada and last: 2010 in sumo +[2018-02-13T08:33:53.676] [INFO] cheese - inserting 1000 documents. first: Filinota gratiosa and last: DS Valdivia +[2018-02-13T08:33:53.722] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T08:33:53.759] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:33:53.783] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:33:53.796] [INFO] cheese - inserting 1000 documents. first: Ella Grasso and last: Adorno family +[2018-02-13T08:33:53.833] [INFO] cheese - inserting 1000 documents. first: Detroit-Dearborn Motor Car Company and last: Bust of Francesco I d'Este +[2018-02-13T08:33:53.952] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:33:53.980] [INFO] cheese - batch complete in: 1.936 secs +[2018-02-13T08:33:54.005] [INFO] cheese - inserting 1000 documents. first: File:FK Sateska Logo.jpg and last: Wikipedia:Articles for deletion/Scott Manville +[2018-02-13T08:33:54.162] [INFO] cheese - inserting 1000 documents. first: New York State Route 15 (1924-1938) and last: PENTA - Pena Táxi Aéreo +[2018-02-13T08:33:54.193] [INFO] cheese - inserting 1000 documents. first: The Virgins (album) and last: Philip Gilbert Hammerton +[2018-02-13T08:33:54.230] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:33:54.233] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:33:54.266] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:33:54.428] [INFO] cheese - inserting 1000 documents. first: Brazilian snapper and last: Category:Villages in Prakasam district +[2018-02-13T08:33:54.434] [INFO] cheese - inserting 1000 documents. first: Civic guild of old mercers and last: 2004 UEFA European Under-17 Championship +[2018-02-13T08:33:54.490] [INFO] cheese - inserting 1000 documents. first: Michael Oscislawski and last: Wikipedia:WikiProject Category sorting/userbox +[2018-02-13T08:33:54.551] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:33:54.559] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:33:54.611] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:33:54.651] [INFO] cheese - inserting 1000 documents. first: Pa vag, 1982-86 and last: Phillippines Campaign (1944-45) +[2018-02-13T08:33:54.707] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:33:54.775] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meenush and last: Paraguay–India relations +[2018-02-13T08:33:54.904] [INFO] cheese - inserting 1000 documents. first: File:Cover me 96.jpg and last: Category:British travel books +[2018-02-13T08:33:54.994] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:33:55.064] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Anatolia Region and last: Category:Operas by Vicente Martín y Soler +[2018-02-13T08:33:55.092] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:33:55.221] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:33:55.245] [INFO] cheese - inserting 1000 documents. first: Pittsburgh-Penn State football rivalry and last: Our Neighbors - The Carters +[2018-02-13T08:33:55.285] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:33:55.369] [INFO] cheese - inserting 1000 documents. first: Mike Howlett and last: Fall of France +[2018-02-13T08:33:55.373] [INFO] cheese - inserting 1000 documents. first: Valdurmon and last: Kera railway station +[2018-02-13T08:33:55.417] [INFO] cheese - inserting 1000 documents. first: Towsontown Boulevard and last: Laureta +[2018-02-13T08:33:55.427] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:33:55.440] [INFO] cheese - inserting 1000 documents. first: Portal:Languages and last: Uranous +[2018-02-13T08:33:55.511] [INFO] cheese - batch complete in: 1.531 secs +[2018-02-13T08:33:55.539] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T08:33:55.573] [INFO] cheese - batch complete in: 1.014 secs +[2018-02-13T08:33:55.575] [INFO] cheese - inserting 1000 documents. first: Paraguay - India relations and last: Playboy mansion +[2018-02-13T08:33:55.645] [INFO] cheese - inserting 1000 documents. first: Polska Liga Hokejowa season (1997-98) and last: Alpelisib +[2018-02-13T08:33:55.659] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:33:55.684] [INFO] cheese - inserting 1000 documents. first: Story Quarterly and last: Tremont Row +[2018-02-13T08:33:55.684] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T08:33:55.739] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:33:55.975] [INFO] cheese - inserting 1000 documents. first: Deutsche Schule — Dörpfeld-Gymnasium — and last: Route 114A (Massachusetts - Rhode Island) +[2018-02-13T08:33:55.999] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T08:33:56.017] [INFO] cheese - inserting 1000 documents. first: Rudzani Ramudzuli and last: Wikipedia:Articles for deletion/City of Caterpillar +[2018-02-13T08:33:56.060] [INFO] cheese - inserting 1000 documents. first: Peak Hill, Western Australia and last: Barabanki (Lok Sabha constituency) +[2018-02-13T08:33:56.094] [INFO] cheese - inserting 1000 documents. first: Sa'ad ad-Din and last: Bernard Raymond Fink +[2018-02-13T08:33:56.114] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:33:56.171] [INFO] cheese - batch complete in: 0.95 secs +[2018-02-13T08:33:56.201] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:33:56.307] [INFO] cheese - inserting 1000 documents. first: Central Oklahoma Bronchos men's basketball and last: 27 rue de Fleurus +[2018-02-13T08:33:56.323] [INFO] cheese - inserting 1000 documents. first: CIGI Campus and last: The Paterson Press +[2018-02-13T08:33:56.341] [INFO] cheese - inserting 1000 documents. first: List of Tool-lending libraries and last: William of Jülich-Cleves-Berg +[2018-02-13T08:33:56.402] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:33:56.450] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:33:56.523] [INFO] cheese - inserting 1000 documents. first: Sailing at the 2015 Pan American Games - Hobie 16 and last: Covet (song) +[2018-02-13T08:33:56.544] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:33:56.599] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:33:56.738] [INFO] cheese - inserting 1000 documents. first: Two-seam fastball and last: Cael Sanderson +[2018-02-13T08:33:56.836] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/1999 September 28 and last: Our Lady of Sheshan +[2018-02-13T08:33:56.846] [INFO] cheese - batch complete in: 1.334 secs +[2018-02-13T08:33:56.922] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:33:56.926] [INFO] cheese - inserting 1000 documents. first: Spoiled (Basement song) and last: Siege of Antwerp (1584-85) +[2018-02-13T08:33:56.941] [INFO] cheese - inserting 1000 documents. first: Gansett and last: Independent Lubricant Manufacturer Association +[2018-02-13T08:33:56.962] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T08:33:57.048] [INFO] cheese - inserting 1000 documents. first: Monad University and last: Dnipro Ukraine +[2018-02-13T08:33:57.072] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:33:57.099] [INFO] cheese - inserting 1000 documents. first: National Lampoon Gentleman's Bathroom Companion II and last: Category:Boxers from West Virginia +[2018-02-13T08:33:57.142] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:33:57.224] [INFO] cheese - inserting 1000 documents. first: Harittu and last: Lamaseries +[2018-02-13T08:33:57.254] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:33:57.257] [INFO] cheese - inserting 1000 documents. first: Visa requirements for Bahraini citizens and last: Battle of Elaia–Kalamas +[2018-02-13T08:33:57.354] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:33:57.362] [INFO] cheese - inserting 1000 documents. first: Ski jumping at the 2015 Winter Universiade - Women's team normal hill and last: Speed skating at the 2014 Winter Olympics - Men's team pursuit +[2018-02-13T08:33:57.367] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T08:33:57.433] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:33:57.505] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ships articles by quality/43 and last: Aldershot North railway station +[2018-02-13T08:33:57.622] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:33:57.735] [INFO] cheese - inserting 1000 documents. first: WTKV and last: Category:University Athletic Association of the Philippines seasons +[2018-02-13T08:33:57.737] [INFO] cheese - inserting 1000 documents. first: Sri Lankan women's cricket team in New Zealand in 2015-16 and last: Peritornenta stigmatias +[2018-02-13T08:33:57.748] [INFO] cheese - inserting 1000 documents. first: Phi4 Ceti and last: Category:359 in Europe +[2018-02-13T08:33:57.764] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T08:33:57.788] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:33:57.829] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:33:57.863] [INFO] cheese - inserting 1000 documents. first: Borkhar and last: The 30th Annual John Lennon Tribute: Live from the Beacon Theatre, NYC +[2018-02-13T08:33:57.958] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:33:58.010] [INFO] cheese - inserting 1000 documents. first: Zuph and last: Sacix +[2018-02-13T08:33:58.044] [INFO] cheese - inserting 1000 documents. first: Battle of Elaia-Kalamas and last: Crotaphytus grismeri +[2018-02-13T08:33:58.098] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2004 Summer Paralympics - Women's 50 metre freestyle S13 and last: Swimming at the 2013 Southeast Asian Games - Women's 4 × 200 metre freestyle relay +[2018-02-13T08:33:58.112] [INFO] cheese - batch complete in: 1.266 secs +[2018-02-13T08:33:58.126] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T08:33:58.132] [INFO] cheese - inserting 1000 documents. first: Born for this and last: Lyn Lemaire +[2018-02-13T08:33:58.136] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:33:58.281] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:33:58.288] [INFO] cheese - inserting 1000 documents. first: Louie Kelcher and last: Category:TCU Horned Frogs football +[2018-02-13T08:33:58.347] [INFO] cheese - inserting 1000 documents. first: Orchids of Ireland and last: Template:Pitchfork (website) +[2018-02-13T08:33:58.374] [INFO] cheese - batch complete in: 1.019 secs +[2018-02-13T08:33:58.420] [INFO] cheese - inserting 1000 documents. first: Edgar Bowers and last: The X-Files Mythology, Volume 4 – Super Soldiers +[2018-02-13T08:33:58.439] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:33:58.467] [INFO] cheese - inserting 1000 documents. first: Pârse and last: Nataliya Meshcheryakova +[2018-02-13T08:33:58.480] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2008 Summer Paralympics - Men's 100 metre backstroke S9 and last: Riga-Lugazi Railway +[2018-02-13T08:33:58.503] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:33:58.522] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T08:33:58.569] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:33:58.841] [INFO] cheese - inserting 1000 documents. first: Perry Stokes Airport and last: Wikipedia:Miscellany for deletion/User:Alantauber +[2018-02-13T08:33:58.941] [INFO] cheese - inserting 1000 documents. first: Penn State-Berks Nittany Lions and last: Technological University of the Philippines - Visayas +[2018-02-13T08:33:58.979] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:33:58.995] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:33:59.165] [INFO] cheese - inserting 1000 documents. first: Callionymus reticulatus and last: Mar Thomite +[2018-02-13T08:33:59.177] [INFO] cheese - inserting 1000 documents. first: Ground pepper and last: London Portal +[2018-02-13T08:33:59.237] [INFO] cheese - inserting 1000 documents. first: Russell Rickford and last: Category:ECM Records live albums +[2018-02-13T08:33:59.289] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:33:59.328] [INFO] cheese - batch complete in: 1.192 secs +[2018-02-13T08:33:59.388] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:33:59.400] [INFO] cheese - inserting 1000 documents. first: Taiwan-South Korea relations and last: Say No To The Devil +[2018-02-13T08:33:59.474] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:33:59.491] [INFO] cheese - inserting 1000 documents. first: Bic code and last: The art of computer programming +[2018-02-13T08:33:59.520] [INFO] cheese - inserting 1000 documents. first: BB&T Ballpark at Historic Bowman Field and last: GNB +[2018-02-13T08:33:59.569] [INFO] cheese - inserting 1000 documents. first: 312th Fighter-Bomber Squadron and last: Bradevelt, NJ +[2018-02-13T08:33:59.572] [INFO] cheese - batch complete in: 1.069 secs +[2018-02-13T08:33:59.621] [INFO] cheese - batch complete in: 1.509 secs +[2018-02-13T08:33:59.644] [INFO] cheese - inserting 1000 documents. first: Blake School (Lake City, Florida) and last: Shoshanat HaAmakim +[2018-02-13T08:33:59.688] [INFO] cheese - batch complete in: 1.249 secs +[2018-02-13T08:33:59.714] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:33:59.756] [INFO] cheese - inserting 1000 documents. first: U.S. Route 5 Alternate (New Haven, Connecticut 1941-1966) and last: The Souther-Hillman-Furay Band +[2018-02-13T08:33:59.791] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T08:33:59.832] [INFO] cheese - inserting 1000 documents. first: Michelle Maulkin and last: File:1972 awardwinning.jpg +[2018-02-13T08:33:59.846] [INFO] cheese - inserting 1000 documents. first: Law of Nigeria and last: Rub and tug +[2018-02-13T08:33:59.909] [INFO] cheese - inserting 1000 documents. first: Jonathan Harker and last: Thought Adjuster +[2018-02-13T08:33:59.912] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:33:59.915] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:33:59.991] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:34:00.215] [INFO] cheese - inserting 1000 documents. first: Without You (Oh Wonder song) and last: Wheelchair fencing at the 2004 Summer Paralympics - Men's foil A +[2018-02-13T08:34:00.257] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:34:00.268] [INFO] cheese - inserting 1000 documents. first: Template:Israeli top flight seasons and last: Patrick McNamee +[2018-02-13T08:34:00.400] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:34:00.417] [INFO] cheese - inserting 1000 documents. first: Troclosene and last: Template:Fb competition 2009-10 Challenge League +[2018-02-13T08:34:00.454] [INFO] cheese - inserting 1000 documents. first: Bradevelt and last: Tamil blogosphere +[2018-02-13T08:34:00.457] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:34:00.563] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:34:00.593] [INFO] cheese - inserting 1000 documents. first: Category:Dune series adaptations and last: Wushu at the 2010 Asian Games - Men's sanda 60 kg +[2018-02-13T08:34:00.598] [INFO] cheese - inserting 1000 documents. first: Hayatullah (disambiguation) and last: Presidential elections in Moldova +[2018-02-13T08:34:00.607] [INFO] cheese - inserting 1000 documents. first: Rub 'n tug and last: Dorsets +[2018-02-13T08:34:00.647] [INFO] cheese - inserting 1000 documents. first: Lolth and last: Western front +[2018-02-13T08:34:00.654] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T08:34:00.690] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:34:00.734] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:34:00.797] [INFO] cheese - batch complete in: 1.176 secs +[2018-02-13T08:34:00.856] [INFO] cheese - inserting 1000 documents. first: Ann Baskett and last: Ultra lounge +[2018-02-13T08:34:00.997] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:34:01.025] [INFO] cheese - inserting 1000 documents. first: USDA National Nutrient Database and last: Charlottesville Fashion Square +[2018-02-13T08:34:01.088] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:34:01.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 March 17 and last: Tinker vs. Des Moines +[2018-02-13T08:34:01.118] [INFO] cheese - inserting 1000 documents. first: Category:Irish country singers templates and last: Uprising of May 2-3, 1808 +[2018-02-13T08:34:01.178] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:34:01.178] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:34:01.182] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Robert Pearsall (architect) and last: Anne Perkin +[2018-02-13T08:34:01.261] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:34:01.379] [INFO] cheese - inserting 1000 documents. first: Category:World Airways accidents and incidents and last: Wikipedia:Articles for deletion/Pacific Square +[2018-02-13T08:34:01.514] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:34:01.569] [INFO] cheese - inserting 1000 documents. first: H.T. Burleigh and last: Wikipedia:Articles for deletion/Larry Sanders (politician) +[2018-02-13T08:34:01.630] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:34:01.701] [INFO] cheese - inserting 1000 documents. first: Fernando Fernandes and last: 1978–79 Maltese Premier League +[2018-02-13T08:34:01.734] [INFO] cheese - inserting 1000 documents. first: Guadalupe Contreras Ramos and last: University of denver +[2018-02-13T08:34:01.746] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:34:01.790] [INFO] cheese - inserting 1000 documents. first: UCI Mountain Bike & Trials World Championships - Men's cross-country eliminator and last: File:APeacocksTale.jpg +[2018-02-13T08:34:01.817] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:34:01.839] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:34:01.887] [INFO] cheese - inserting 1000 documents. first: Category:Marvel Comics Atlanteans and last: Corbett and Courtney Before the Kinetograph +[2018-02-13T08:34:01.925] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:34:01.933] [INFO] cheese - inserting 1000 documents. first: Annie Perkin and last: 2014 Grand Prix of Bahrain +[2018-02-13T08:34:01.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The real students of telecom and last: Further Continuing Appropriations, 2010 +[2018-02-13T08:34:02.030] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:34:02.059] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:34:02.066] [INFO] cheese - inserting 1000 documents. first: Imperial pint and last: The Buzz +[2018-02-13T08:34:02.155] [INFO] cheese - batch complete in: 1.358 secs +[2018-02-13T08:34:02.159] [INFO] cheese - inserting 1000 documents. first: John McDougall (disambiguation) and last: Category:Futsal in Slovakia +[2018-02-13T08:34:02.226] [INFO] cheese - inserting 1000 documents. first: 1979–80 Maltese Premier League and last: Ryazanskiy Prospekt +[2018-02-13T08:34:02.246] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:34:02.310] [INFO] cheese - inserting 1000 documents. first: Transverse mesocolons and last: Category:North Vietnamese military personnel of the Vietnam War +[2018-02-13T08:34:02.321] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:34:02.387] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:34:02.412] [INFO] cheese - inserting 1000 documents. first: Joseph Wanton Morrison and last: Adventures in slumberland (film) +[2018-02-13T08:34:02.464] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:34:02.523] [INFO] cheese - inserting 1000 documents. first: 2014 Grand Prix of Spain and last: Category:Rugby union at the 2002 Asian Games +[2018-02-13T08:34:02.537] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/William Olin and last: File:Himg logo.jpg +[2018-02-13T08:34:02.592] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:34:02.732] [INFO] cheese - inserting 1000 documents. first: 1959–60 Danish Ice Hockey Championship season and last: James Franklin (quarterback) +[2018-02-13T08:34:02.759] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:34:02.812] [INFO] cheese - inserting 1000 documents. first: Longmans, Green and co. and last: Howard-Payne Junior College +[2018-02-13T08:34:02.832] [INFO] cheese - inserting 1000 documents. first: Minister of Foreign Affairs (Mongolia) and last: January 2006 deaths +[2018-02-13T08:34:02.832] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:34:02.866] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:34:02.955] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:34:03.228] [INFO] cheese - inserting 1000 documents. first: Acronicta cuspis and last: Wikipedia:WikiProject Spam/LinkReports/powerplaymanager.com +[2018-02-13T08:34:03.287] [INFO] cheese - inserting 1000 documents. first: Lombardi Trophy and last: Felipe Massa +[2018-02-13T08:34:03.295] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:34:03.348] [INFO] cheese - inserting 1000 documents. first: Ghost Dance shirt and last: Category:Boxing in Colombia +[2018-02-13T08:34:03.431] [INFO] cheese - inserting 1000 documents. first: File:Haigh's Mrs Kimble.jpg and last: Wikipedia:Articles for deletion/Mootstormfront +[2018-02-13T08:34:03.464] [INFO] cheese - batch complete in: 1.309 secs +[2018-02-13T08:34:03.485] [INFO] cheese - inserting 1000 documents. first: Ken Halverson and last: Let's Talk About It (single) +[2018-02-13T08:34:03.492] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:34:03.508] [INFO] cheese - inserting 1000 documents. first: December 2005 deaths and last: Category:Suicide by city +[2018-02-13T08:34:03.529] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:34:03.580] [INFO] cheese - inserting 1000 documents. first: Category:1984 Summer Olympics stubs and last: Maasniel +[2018-02-13T08:34:03.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Bejucal and last: Tom Jones (lyricist) +[2018-02-13T08:34:03.656] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:34:03.720] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:34:03.748] [INFO] cheese - batch complete in: 0.916 secs +[2018-02-13T08:34:03.787] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:34:04.072] [INFO] cheese - inserting 1000 documents. first: Nello Di Costanzo and last: Samuel Tuitupou +[2018-02-13T08:34:04.125] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:34:04.136] [INFO] cheese - inserting 1000 documents. first: Grossglockner Automobile and Motorcycle Races and last: Pepelu Vidal +[2018-02-13T08:34:04.237] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:34:04.297] [INFO] cheese - inserting 1000 documents. first: Life in a Day (single) and last: Template:Arrondissements of Haiti +[2018-02-13T08:34:04.311] [INFO] cheese - inserting 1000 documents. first: Category:Discoveries by Filip Fratev and last: Apollonius (ambassador) +[2018-02-13T08:34:04.322] [INFO] cheese - inserting 1000 documents. first: 1958 New York Film Critics Circle Awards and last: Wikipedia:Version 1.0 Editorial Team/AFL articles by quality log +[2018-02-13T08:34:04.401] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ours (song) and last: Republic of China (1949–present) +[2018-02-13T08:34:04.409] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T08:34:04.411] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:34:04.427] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:34:04.515] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:34:04.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Netflix distribution centers and last: File:Slaverweapon.jpg +[2018-02-13T08:34:04.605] [INFO] cheese - inserting 1000 documents. first: British Open (tennis) and last: DC vs. Heller +[2018-02-13T08:34:04.614] [INFO] cheese - batch complete in: 1.085 secs +[2018-02-13T08:34:04.712] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:34:04.720] [INFO] cheese - inserting 1000 documents. first: Möbius mu function and last: Interstate 696 +[2018-02-13T08:34:04.845] [INFO] cheese - inserting 1000 documents. first: Freweyni and last: Template:Location map Indonesia Maluku-Western New Guinea +[2018-02-13T08:34:04.850] [INFO] cheese - batch complete in: 1.385 secs +[2018-02-13T08:34:04.925] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:34:04.968] [INFO] cheese - inserting 1000 documents. first: File:More-Bad-News-Record-Store-250.jpg and last: Montreal Science Centre +[2018-02-13T08:34:05.021] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:34:05.029] [INFO] cheese - inserting 1000 documents. first: Causal dynamic triangulation and last: Alaska Newspapers, Inc. +[2018-02-13T08:34:05.040] [INFO] cheese - inserting 1000 documents. first: Mbayar and last: Robert J.S. Ross +[2018-02-13T08:34:05.110] [INFO] cheese - inserting 1000 documents. first: Offenbach-Ost station and last: Nimrod Shapria Bar-Or +[2018-02-13T08:34:05.205] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:34:05.209] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:34:05.334] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:34:05.417] [INFO] cheese - inserting 1000 documents. first: Pete Mathews Coliseum and last: Tendayi Jembere +[2018-02-13T08:34:05.507] [INFO] cheese - inserting 1000 documents. first: Marcus Williams (basketball, born 1986) and last: Jonas Karlsson (ice hockey) +[2018-02-13T08:34:05.552] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:34:05.594] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:34:05.636] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/In God We Trust: But Which One? and last: Bbf3 +[2018-02-13T08:34:05.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Texas Tech University/WP and last: Osborn Anderson +[2018-02-13T08:34:05.805] [INFO] cheese - batch complete in: 1.093 secs +[2018-02-13T08:34:05.950] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:34:05.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cummer Valley Middle School and last: 278197 Touvron +[2018-02-13T08:34:05.976] [INFO] cheese - inserting 1000 documents. first: File:IntentionalTalklogo.jpg and last: Geothlypis formosa +[2018-02-13T08:34:05.989] [INFO] cheese - inserting 1000 documents. first: List of Moomin characters and last: Amt-ertl +[2018-02-13T08:34:06.048] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:34:06.066] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:34:06.068] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg Conservatory and last: Hawk (aircraft) +[2018-02-13T08:34:06.094] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:34:06.161] [INFO] cheese - inserting 1000 documents. first: Hymenocallis duvalensis and last: John Antwi +[2018-02-13T08:34:06.252] [INFO] cheese - batch complete in: 1.402 secs +[2018-02-13T08:34:06.299] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:34:06.410] [INFO] cheese - inserting 1000 documents. first: Mandy Ashford and last: Sichuan treecreeper +[2018-02-13T08:34:06.580] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:34:06.596] [INFO] cheese - inserting 1000 documents. first: BBF3 and last: Filmweb +[2018-02-13T08:34:06.703] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:34:06.719] [INFO] cheese - inserting 1000 documents. first: Varanus nebulosus and last: The O's +[2018-02-13T08:34:06.776] [INFO] cheese - inserting 1000 documents. first: Seventh Democratic Party presidential debate, March 2016 in Flint, Michigan and last: Category:Mountain passes of Bhutan +[2018-02-13T08:34:06.789] [INFO] cheese - inserting 1000 documents. first: General Philip Rey and last: Roger Malina +[2018-02-13T08:34:06.800] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T08:34:06.815] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1954 Central American and Caribbean Games and last: Category:Energy in Zimbabwe +[2018-02-13T08:34:06.857] [INFO] cheese - inserting 1000 documents. first: Civil Aviation Authority (Vietnam) and last: Gândul Mâței +[2018-02-13T08:34:06.857] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:34:06.902] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:34:06.931] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:34:06.969] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:34:07.161] [INFO] cheese - inserting 1000 documents. first: Dijkgraaf, Gelderland and last: File:David Brewer.jpg +[2018-02-13T08:34:07.219] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:34:07.226] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Misyulya and last: Pochayevsko-Uspenskaya Lavra +[2018-02-13T08:34:07.361] [INFO] cheese - inserting 1000 documents. first: Norman Nicholson and last: Papilio rutulus +[2018-02-13T08:34:07.372] [INFO] cheese - inserting 1000 documents. first: Brier Creek and last: William S. Thomas +[2018-02-13T08:34:07.401] [INFO] cheese - inserting 1000 documents. first: Portuguese Basketball Premier League and last: Wikipedia:Articles for deletion/Franciscan Missionaries of Divine Compassion +[2018-02-13T08:34:07.421] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T08:34:07.443] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:34:07.557] [INFO] cheese - batch complete in: 1.303 secs +[2018-02-13T08:34:07.577] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:34:07.581] [INFO] cheese - inserting 1000 documents. first: Austro-Hungarian crown and last: Multidimensional Transform +[2018-02-13T08:34:07.622] [INFO] cheese - inserting 1000 documents. first: Category:Sanz (Hasidic dynasty) and last: The Hunt (1963 film) +[2018-02-13T08:34:07.698] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:34:07.703] [INFO] cheese - inserting 1000 documents. first: Melinda's World and last: Template:HornedFrogsBBCoach +[2018-02-13T08:34:07.827] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:34:07.989] [INFO] cheese - inserting 1000 documents. first: Category:1982 in golf and last: Emilio Aldama +[2018-02-13T08:34:08.213] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T08:34:08.309] [INFO] cheese - batch complete in: 1.09 secs +[2018-02-13T08:34:08.502] [INFO] cheese - inserting 1000 documents. first: File:Vadim Yemelyanov.jpg and last: VSI (disambiguation) +[2018-02-13T08:34:08.560] [INFO] cheese - inserting 1000 documents. first: Pinnacle Valley and last: Template:Lebanese parliamentary election, 2005 +[2018-02-13T08:34:08.680] [INFO] cheese - batch complete in: 1.259 secs +[2018-02-13T08:34:08.686] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:34:08.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hkcolordigital.com and last: Popular music in Latvia +[2018-02-13T08:34:08.801] [INFO] cheese - inserting 1000 documents. first: Sejong-City and last: Fred Hilton +[2018-02-13T08:34:08.822] [INFO] cheese - inserting 1000 documents. first: St. James' Way and last: Winfs Opath +[2018-02-13T08:34:08.880] [INFO] cheese - batch complete in: 1.182 secs +[2018-02-13T08:34:08.905] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:34:08.907] [INFO] cheese - batch complete in: 1.079 secs +[2018-02-13T08:34:08.983] [INFO] cheese - inserting 1000 documents. first: White Wilderness and last: Portal:Philadelphia/Philadelphia news/July 2008 +[2018-02-13T08:34:09.044] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:34:09.117] [INFO] cheese - inserting 1000 documents. first: Breithorn and last: Wikipedia:Incomplete lists +[2018-02-13T08:34:09.126] [INFO] cheese - inserting 1000 documents. first: 332706 Karlheidlas and last: Pugachev Airport +[2018-02-13T08:34:09.185] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:34:09.199] [INFO] cheese - inserting 1000 documents. first: Harold W. Wells and last: File:Richardson Heritage Room.png +[2018-02-13T08:34:09.244] [INFO] cheese - batch complete in: 1.687 secs +[2018-02-13T08:34:09.338] [INFO] cheese - batch complete in: 1.761 secs +[2018-02-13T08:34:09.350] [INFO] cheese - inserting 1000 documents. first: The Foreign Exchange and last: Take down +[2018-02-13T08:34:09.422] [INFO] cheese - inserting 1000 documents. first: KITG and last: Lee Ju-hwan +[2018-02-13T08:34:09.477] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:34:09.521] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:34:09.604] [INFO] cheese - inserting 1000 documents. first: Derived stem and last: Micronisation +[2018-02-13T08:34:09.625] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Archdiocese of Mendoza and last: Wikipedia:Miscellany for deletion/User:Kid Hurricane +[2018-02-13T08:34:09.640] [INFO] cheese - inserting 1000 documents. first: Province No. 1 and last: 2016 IIHF World U18 Championship Division I +[2018-02-13T08:34:09.673] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:34:09.683] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:34:09.828] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:34:09.973] [INFO] cheese - inserting 1000 documents. first: Category:Singapore transport templates and last: Hauerseter-Gardermobanen +[2018-02-13T08:34:10.077] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:34:10.115] [INFO] cheese - inserting 1000 documents. first: So Much 2 Say (Take 6 album) and last: The 2009–10 PBA Season +[2018-02-13T08:34:10.172] [INFO] cheese - inserting 1000 documents. first: Takedowns and last: Nba finals +[2018-02-13T08:34:10.233] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:34:10.277] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:34:10.329] [INFO] cheese - inserting 1000 documents. first: Skagenfondene and last: File:Page from Codex, the Damascus Pentateuch.jpg +[2018-02-13T08:34:10.379] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:34:10.381] [INFO] cheese - inserting 1000 documents. first: Aimerikos and last: Hailey (given name) +[2018-02-13T08:34:10.444] [INFO] cheese - inserting 1000 documents. first: Salviati (glassmakers) and last: Wikipedia:Articles for deletion/Man glue +[2018-02-13T08:34:10.485] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:34:10.543] [INFO] cheese - inserting 1000 documents. first: Template:National sports teams of Switzerland and last: Premium e-mail +[2018-02-13T08:34:10.591] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:34:10.691] [INFO] cheese - batch complete in: 1.169 secs +[2018-02-13T08:34:10.699] [INFO] cheese - inserting 1000 documents. first: Eureka Flag and last: The Surgeon's Mate (novel) +[2018-02-13T08:34:10.782] [INFO] cheese - inserting 1000 documents. first: Doc Elliott and last: Template:Philadelphia 76ers 1982-83 NBA champions +[2018-02-13T08:34:10.843] [INFO] cheese - batch complete in: 1.598 secs +[2018-02-13T08:34:10.883] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:34:11.053] [INFO] cheese - inserting 1000 documents. first: Château de Pornic and last: Dihydroxynaphthoquinone +[2018-02-13T08:34:11.102] [INFO] cheese - inserting 1000 documents. first: Enharmonic note and last: Collaboration (Shorty Rogers and André Previn album) +[2018-02-13T08:34:11.166] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:34:11.242] [INFO] cheese - inserting 1000 documents. first: Neureichenau and last: Category:1919 in film +[2018-02-13T08:34:11.304] [INFO] cheese - inserting 1000 documents. first: File:The-music-of-christmas.scc.jpg and last: CPF6 +[2018-02-13T08:34:11.311] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:34:11.377] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:34:11.429] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T08:34:11.510] [INFO] cheese - inserting 1000 documents. first: José Fuentes Mares National Prize for Literature and last: Evci, Ayaş +[2018-02-13T08:34:11.585] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:34:11.677] [INFO] cheese - inserting 1000 documents. first: Rueter-Hess Reservoir (project) and last: Template:All India Rashtriya Janata Party/meta/shortname +[2018-02-13T08:34:11.744] [INFO] cheese - inserting 1000 documents. first: Template:Philadelphia Warriors 1946-47 BAA champions and last: Michigan Grrrowl +[2018-02-13T08:34:11.761] [INFO] cheese - batch complete in: 1.276 secs +[2018-02-13T08:34:11.827] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:34:11.885] [INFO] cheese - inserting 1000 documents. first: Ashéninga language and last: Nakhtmin (charioteer) +[2018-02-13T08:34:11.946] [INFO] cheese - inserting 1000 documents. first: File:Toyah dreamchild.jpg and last: Han Yin +[2018-02-13T08:34:11.965] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:34:12.021] [INFO] cheese - inserting 1000 documents. first: The Nutmeg of Consolation (novel) and last: Ain't Misbehaving +[2018-02-13T08:34:12.041] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:34:12.082] [INFO] cheese - inserting 1000 documents. first: Simple Certificate Enrollment Protocol and last: File:Spidertrike.jpg +[2018-02-13T08:34:12.121] [INFO] cheese - inserting 1000 documents. first: Feruz, Ayaş and last: Category:Schools in Wakefield District +[2018-02-13T08:34:12.155] [INFO] cheese - batch complete in: 1.311 secs +[2018-02-13T08:34:12.218] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:34:12.232] [INFO] cheese - inserting 1000 documents. first: Stoney Point (Le Cunff) Airport and last: Wikipedia:Featured article candidates/never proposal +[2018-02-13T08:34:12.196] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:34:12.346] [INFO] cheese - inserting 1000 documents. first: File:Kennedy Center Ribbon.svg and last: Robert Kemeys Thomas +[2018-02-13T08:34:12.416] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:34:12.489] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:34:12.710] [INFO] cheese - inserting 1000 documents. first: Devil guts and last: Draft:Presidential Preference Election +[2018-02-13T08:34:12.750] [INFO] cheese - inserting 1000 documents. first: Domination (Domino album) and last: Template:Cambrian substrate revolution/doc +[2018-02-13T08:34:12.778] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:34:12.817] [INFO] cheese - inserting 1000 documents. first: Liang Gang and last: Rolandylis +[2018-02-13T08:34:12.904] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:34:12.931] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:34:12.992] [INFO] cheese - inserting 1000 documents. first: TEPCO and last: Template:Cr icon +[2018-02-13T08:34:13.051] [INFO] cheese - inserting 1000 documents. first: Lake Karachay and last: Category:Norwegian biologists +[2018-02-13T08:34:13.077] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:34:13.095] [INFO] cheese - inserting 1000 documents. first: Seticosta chlorothicta and last: Brighton by-election, 1914 +[2018-02-13T08:34:13.128] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:34:13.153] [INFO] cheese - inserting 1000 documents. first: Hail To The Chief and last: Vodyanoi +[2018-02-13T08:34:13.210] [INFO] cheese - inserting 1000 documents. first: Vaginal microbicide and last: Icelandic Modern Media Initiative +[2018-02-13T08:34:13.209] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:34:13.283] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:34:13.320] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:34:13.333] [INFO] cheese - inserting 1000 documents. first: File:2003 Carolina Dodge Dealers 400 finish.jpg and last: Oţelul Galaţi +[2018-02-13T08:34:13.349] [INFO] cheese - inserting 1000 documents. first: File:Afro-Cuban Influence.jpg and last: Streptomyces prunicolor +[2018-02-13T08:34:13.402] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:34:13.471] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:34:13.501] [INFO] cheese - inserting 1000 documents. first: Jarque-Bera and last: Movable Cellular Automata +[2018-02-13T08:34:13.566] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:34:13.770] [INFO] cheese - inserting 1000 documents. first: Elements Of Life (album) and last: Montgomery County High School +[2018-02-13T08:34:13.855] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:34:13.892] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/adondeirhoy.com and last: Khirkiqocha +[2018-02-13T08:34:13.913] [INFO] cheese - inserting 1000 documents. first: Template:User OS:Solaris and last: Niagara Parks Commission +[2018-02-13T08:34:14.045] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:34:14.078] [INFO] cheese - inserting 1000 documents. first: South Korean films of 1976 and last: Gaith Abdul-Ghani +[2018-02-13T08:34:14.095] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:34:14.150] [INFO] cheese - inserting 1000 documents. first: Lodekka (Music) and last: Category:Sexism in Canada +[2018-02-13T08:34:14.218] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:34:14.285] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:34:14.336] [INFO] cheese - inserting 1000 documents. first: Joseph Thunder and last: Category:Frisia articles needing attention +[2018-02-13T08:34:14.451] [INFO] cheese - inserting 1000 documents. first: Template:Los Angeles Buccaneers coach navbox and last: Cognitive Neuroscience of Disgust +[2018-02-13T08:34:14.479] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T08:34:14.575] [INFO] cheese - batch complete in: 1.009 secs +[2018-02-13T08:34:14.653] [INFO] cheese - inserting 1000 documents. first: Regnitzlosau and last: Edward Algernon FitzRoy +[2018-02-13T08:34:14.683] [INFO] cheese - inserting 1000 documents. first: Orville Faubus and last: Clifford Jarvis +[2018-02-13T08:34:14.742] [INFO] cheese - inserting 1000 documents. first: Category:Mixed martial arts in Oceania and last: Wikipedia:WikiProject Spam/Local/25cineframes.com +[2018-02-13T08:34:14.747] [INFO] cheese - inserting 1000 documents. first: Category:Scientists from Meghalaya and last: Lupercalia ignita +[2018-02-13T08:34:14.752] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:34:14.783] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:34:14.803] [INFO] cheese - batch complete in: 1.519 secs +[2018-02-13T08:34:14.893] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:34:14.952] [INFO] cheese - inserting 1000 documents. first: Lotf 'Ali Khan and last: Category:En Vogue albums +[2018-02-13T08:34:15.071] [INFO] cheese - inserting 1000 documents. first: Clay Office and Conference Center and last: KCVL +[2018-02-13T08:34:15.071] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:34:15.136] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dashes.js and last: Typhoon Yancy (Gading) +[2018-02-13T08:34:15.164] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:34:15.200] [INFO] cheese - inserting 1000 documents. first: Honored Artist and last: John Bollard (politician) +[2018-02-13T08:34:15.213] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:34:15.275] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:34:15.421] [INFO] cheese - inserting 1000 documents. first: File:Active voltage-to-current 1000.jpg and last: Category:Unknown-importance Israel-related articles +[2018-02-13T08:34:15.445] [INFO] cheese - inserting 1000 documents. first: German submarine U-1104 and last: Wikipedia:Miscellany for deletion/Draft:Collage +[2018-02-13T08:34:15.521] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:34:15.576] [INFO] cheese - inserting 1000 documents. first: Category:Tropidomarga and last: MV Stena Shipper +[2018-02-13T08:34:15.605] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:34:15.629] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:34:15.839] [INFO] cheese - inserting 1000 documents. first: Differential dynamic programming and last: Lysichiton camtschatcensis +[2018-02-13T08:34:15.847] [INFO] cheese - inserting 1000 documents. first: File:Les Bijoux v1.jpg and last: AbcFamily +[2018-02-13T08:34:15.976] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:34:15.977] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:34:16.043] [INFO] cheese - inserting 1000 documents. first: Kemijärvi and last: Arcadia (disambiguation) +[2018-02-13T08:34:16.192] [INFO] cheese - inserting 1000 documents. first: Sportcity Metrolink station and last: File:NBprovincialElectoralDistricts.PNG +[2018-02-13T08:34:16.294] [INFO] cheese - inserting 1000 documents. first: Aquaspirillum fasciculus and last: Category:Roman Catholic churches completed in 1711 +[2018-02-13T08:34:16.312] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:34:16.375] [INFO] cheese - inserting 1000 documents. first: Cardenolides and last: Wikipedia:Articles for deletion/Pawel Plaszczak +[2018-02-13T08:34:16.377] [INFO] cheese - batch complete in: 1.574 secs +[2018-02-13T08:34:16.568] [INFO] cheese - batch complete in: 1.047 secs +[2018-02-13T08:34:16.485] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:34:16.662] [INFO] cheese - inserting 1000 documents. first: Democratic Socialist Coalition and last: Wikipedia:WikiProject Spam/LinkReports/chosimsodep.com +[2018-02-13T08:34:16.695] [INFO] cheese - inserting 1000 documents. first: Sprawl position and last: National Register of Historic Places listings in Vermont +[2018-02-13T08:34:16.764] [INFO] cheese - batch complete in: 1.135 secs +[2018-02-13T08:34:16.826] [INFO] cheese - batch complete in: 1.755 secs +[2018-02-13T08:34:16.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nomad-mytravel.blogspot.com and last: Celeste West +[2018-02-13T08:34:16.930] [INFO] cheese - inserting 1000 documents. first: Measurement of a Circle and last: Chalin, Kuyavian-Pomeranian Voivodeship +[2018-02-13T08:34:16.959] [INFO] cheese - batch complete in: 0.983 secs +[2018-02-13T08:34:17.007] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:34:17.086] [INFO] cheese - inserting 1000 documents. first: Category:Vietnamese officials and last: Category:Rolando +[2018-02-13T08:34:17.119] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marcin Chumiecki and last: Peter Nedved +[2018-02-13T08:34:17.132] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:34:17.166] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches completed in 1710 and last: Wikipedia:Articles for deletion/Fingon +[2018-02-13T08:34:17.177] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:34:17.236] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:34:17.263] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 1960 Winter Olympics – Men's giant slalom and last: Red Pencil protest +[2018-02-13T08:34:17.332] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:34:17.396] [INFO] cheese - inserting 1000 documents. first: Bas-Uele and last: Robert Casey (disambiguation) +[2018-02-13T08:34:17.435] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T08:34:17.460] [INFO] cheese - inserting 1000 documents. first: Yaroslav III of Kiev and last: Forced-vortex +[2018-02-13T08:34:17.467] [INFO] cheese - inserting 1000 documents. first: Phyllis George and last: Hsü Shih-Ch'ang +[2018-02-13T08:34:17.496] [INFO] cheese - inserting 1000 documents. first: Chalin-Kolonia and last: Ruprecht Gerngroß +[2018-02-13T08:34:17.542] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:34:17.583] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:34:17.613] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T08:34:17.682] [INFO] cheese - inserting 1000 documents. first: Category:People from Sribne Raion and last: Destiny: World Domination from Stone Age to Space Age +[2018-02-13T08:34:17.766] [INFO] cheese - inserting 1000 documents. first: London Taxi: Rushour and last: Mulbarton, Norfolk +[2018-02-13T08:34:17.794] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:34:17.846] [INFO] cheese - inserting 1000 documents. first: Oberes Wesertal and last: Yokota Shōkai +[2018-02-13T08:34:17.870] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:34:17.927] [INFO] cheese - inserting 1000 documents. first: Paul O'Grady's Animal Orphans and last: House of Mgeladze +[2018-02-13T08:34:17.931] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:34:18.010] [INFO] cheese - inserting 1000 documents. first: Rodriguan (disambiguation) and last: Wikipedia:WikiProject Dispute Resolution/Proposals/Content Committee +[2018-02-13T08:34:18.015] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:34:18.061] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:34:18.180] [INFO] cheese - inserting 1000 documents. first: Ray Brown (offensive lineman) and last: Category:Memphis Tigers football +[2018-02-13T08:34:18.217] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:34:18.221] [INFO] cheese - inserting 1000 documents. first: Aban (urban-type settlement) and last: Category:July 2008 peer reviews +[2018-02-13T08:34:18.273] [INFO] cheese - inserting 1000 documents. first: Moon Studios and last: MUOS-1 +[2018-02-13T08:34:18.328] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:34:18.363] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:34:18.459] [INFO] cheese - inserting 1000 documents. first: Fuchstal and last: 383 in Ireland +[2018-02-13T08:34:18.462] [INFO] cheese - inserting 1000 documents. first: Category:Spanish publishers (people) and last: Chesmenskii Raion +[2018-02-13T08:34:18.535] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:34:18.552] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:34:18.570] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Baldwin County, Alabama and last: Wikipedia:Goings-on/January 5, 2014 +[2018-02-13T08:34:18.644] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:34:18.689] [INFO] cheese - inserting 1000 documents. first: Hsü Shihch'ang and last: Pu Chou Mountain +[2018-02-13T08:34:18.727] [INFO] cheese - inserting 1000 documents. first: Aleksandra Wasowicz and last: Laspeyresia ibeeliana +[2018-02-13T08:34:18.884] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:34:18.921] [INFO] cheese - inserting 1000 documents. first: Piz Tasna and last: Élégie (ballet) +[2018-02-13T08:34:18.934] [INFO] cheese - batch complete in: 1.32 secs +[2018-02-13T08:34:18.983] [INFO] cheese - inserting 1000 documents. first: Category:Churches completed in 1580 and last: Reti Film +[2018-02-13T08:34:18.985] [INFO] cheese - inserting 1000 documents. first: Portal:Law/Picture/Week 19 2006 and last: Hills (store) +[2018-02-13T08:34:19.096] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:34:19.128] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:34:19.146] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:34:19.234] [INFO] cheese - inserting 1000 documents. first: Bassano (photographers) and last: Anonimo veneziano +[2018-02-13T08:34:19.242] [INFO] cheese - inserting 1000 documents. first: Category:Here! original productions and last: Category:A-Class Melanesia articles +[2018-02-13T08:34:19.281] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:34:19.319] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:34:19.369] [INFO] cheese - inserting 1000 documents. first: File:Jewish Bakers Voice cover.jpg and last: Weather Machine (sculpture) +[2018-02-13T08:34:19.459] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:34:19.607] [INFO] cheese - inserting 1000 documents. first: Lopho and last: Tri-Cities Prep Highschool (Pasco, Washington) +[2018-02-13T08:34:19.656] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:34:19.691] [INFO] cheese - inserting 1000 documents. first: Ambovombe and last: Pat Broderick +[2018-02-13T08:34:19.716] [INFO] cheese - inserting 1000 documents. first: Dambyn Tömörtsog and last: Draft:YouTheology +[2018-02-13T08:34:19.780] [INFO] cheese - inserting 1000 documents. first: Party Unity My Ass and last: Wikipedia:WikiProject U.S. Roads/Utah/Mines +[2018-02-13T08:34:19.782] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:34:19.788] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/purplecirclesband.co.uk and last: Valley of Decision (disambiguation) +[2018-02-13T08:34:19.791] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Metros of the former Soviet Union articles and last: Fort Hunt Park +[2018-02-13T08:34:19.792] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:34:19.885] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:34:19.895] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:34:19.903] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:34:19.943] [INFO] cheese - inserting 1000 documents. first: List of geological features on Rhea and last: Telcordia LERG Routing Guide +[2018-02-13T08:34:20.035] [INFO] cheese - inserting 1000 documents. first: Category:Sri Lankan Chetty people by occupation and last: Wikipedia:Articles for deletion/5 Wits +[2018-02-13T08:34:20.183] [INFO] cheese - batch complete in: 1.249 secs +[2018-02-13T08:34:20.202] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:34:20.377] [INFO] cheese - inserting 1000 documents. first: Category:Chinese Taipei at the World Aquatics Championships and last: Pierre Affre +[2018-02-13T08:34:20.487] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Debian Free Software Guidelines and last: Large Print Books +[2018-02-13T08:34:20.475] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:34:20.541] [INFO] cheese - inserting 1000 documents. first: File:In Vanda's Room FilmPoster.jpeg and last: Svetozar Šapurić +[2018-02-13T08:34:20.584] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:34:20.622] [INFO] cheese - inserting 1000 documents. first: Joe Frank (american football) and last: Tafersit +[2018-02-13T08:34:20.629] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:34:20.702] [INFO] cheese - inserting 1000 documents. first: Corporation of Dun Laoghaire and last: Francois Labbé +[2018-02-13T08:34:20.731] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:34:20.764] [INFO] cheese - inserting 1000 documents. first: Template:User Legitimate Regime in Iran and last: Milla, Burkina Faso +[2018-02-13T08:34:20.831] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:34:20.843] [INFO] cheese - inserting 1000 documents. first: Leslie Cornfeld and last: Category:Former State Roads in Hernando County, Florida +[2018-02-13T08:34:20.871] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:34:20.949] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:34:21.070] [INFO] cheese - inserting 1000 documents. first: Okhla railway station and last: Wikipedia:Articles for deletion/Sex scandals in local schools (Hong Kong) +[2018-02-13T08:34:21.095] [INFO] cheese - inserting 1000 documents. first: Salicylic acid (plant hormone) and last: List of Perth suburbs +[2018-02-13T08:34:21.145] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:34:21.198] [INFO] cheese - inserting 1000 documents. first: 0.999999999999999999999 and last: Jack Russell (character) +[2018-02-13T08:34:21.248] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:34:21.264] [INFO] cheese - inserting 1000 documents. first: Ascenção E Queda de um Paquera and last: Testify, Parts 1 and 2 +[2018-02-13T08:34:21.339] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:34:21.479] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T08:34:21.538] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Check Wikipedia/Error 019 whitelist and last: Visa policy of the British Overseas Territories +[2018-02-13T08:34:21.634] [INFO] cheese - inserting 1000 documents. first: Hans Androschin and last: Category:Financial services companies of Peru +[2018-02-13T08:34:21.657] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:34:21.667] [INFO] cheese - inserting 1000 documents. first: Andrew jarvis and last: Hou (currency) +[2018-02-13T08:34:21.685] [INFO] cheese - inserting 1000 documents. first: Cyclostyle (copier) and last: Gombak River +[2018-02-13T08:34:21.704] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:34:21.792] [INFO] cheese - batch complete in: 1.061 secs +[2018-02-13T08:34:21.879] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:34:22.011] [INFO] cheese - inserting 1000 documents. first: Illinois Central Passenger Depot-Storm Lake and last: Template:Did you know nominations/Something Beautiful (Jordan Smith album) +[2018-02-13T08:34:22.132] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:34:22.203] [INFO] cheese - inserting 1000 documents. first: Idalus simplex and last: Estonia national football team results +[2018-02-13T08:34:22.301] [INFO] cheese - inserting 1000 documents. first: 1079 in art and last: Category:C-Class Tibet articles +[2018-02-13T08:34:22.317] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:34:22.321] [INFO] cheese - inserting 1000 documents. first: Deining and last: Rahovart +[2018-02-13T08:34:22.399] [INFO] cheese - inserting 1000 documents. first: Mobile BayBears and last: GNFS +[2018-02-13T08:34:22.389] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:34:22.458] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:34:22.572] [INFO] cheese - inserting 1000 documents. first: Sweet verbena-tree and last: EC 1.1.1.17 +[2018-02-13T08:34:22.585] [INFO] cheese - batch complete in: 1.337 secs +[2018-02-13T08:34:22.659] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:34:22.676] [INFO] cheese - inserting 1000 documents. first: Automobilclub von Deutschland and last: Template:US-electronic-band-stub +[2018-02-13T08:34:22.748] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:34:22.779] [INFO] cheese - inserting 1000 documents. first: Little Things (Oak Ridge Boys song) and last: Santa Fina +[2018-02-13T08:34:22.816] [INFO] cheese - inserting 1000 documents. first: Macau Baptist Convention and last: Ödön Tersztyánszky +[2018-02-13T08:34:22.865] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T08:34:22.898] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T08:34:23.016] [INFO] cheese - inserting 1000 documents. first: Glidecam and last: Mazra'eh-ye Khodabandehlu +[2018-02-13T08:34:23.043] [INFO] cheese - inserting 1000 documents. first: Benedict Nicolson and last: Miller Reese Hutchison +[2018-02-13T08:34:23.061] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:34:23.079] [INFO] cheese - inserting 1000 documents. first: EC 1.3.1.63 and last: Otrokovice railway station +[2018-02-13T08:34:23.134] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:34:23.162] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T08:34:23.304] [INFO] cheese - inserting 1000 documents. first: Theory of rent and last: OVS language +[2018-02-13T08:34:23.414] [INFO] cheese - batch complete in: 1.934 secs +[2018-02-13T08:34:23.418] [INFO] cheese - inserting 1000 documents. first: Behelit and last: Adelanto, CA +[2018-02-13T08:34:23.531] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:34:23.544] [INFO] cheese - inserting 1000 documents. first: Doo rag and last: 3 count +[2018-02-13T08:34:23.547] [INFO] cheese - inserting 1000 documents. first: Democracy 250 and last: MacAdams +[2018-02-13T08:34:23.577] [INFO] cheese - inserting 1000 documents. first: Holophaea eurytorna and last: Category:River islands of Washington (state) +[2018-02-13T08:34:23.604] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:34:23.657] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:34:23.724] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:34:23.836] [INFO] cheese - inserting 1000 documents. first: Australasian College of Health Informatics and last: Philadelphia Phillie +[2018-02-13T08:34:23.886] [INFO] cheese - inserting 1000 documents. first: Gridapp and last: File:Liberator250.jpg +[2018-02-13T08:34:23.949] [INFO] cheese - batch complete in: 1.05 secs +[2018-02-13T08:34:24.022] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:34:24.070] [INFO] cheese - inserting 1000 documents. first: Bibliotheca scriptorium graecorum et romanorum teubneriana and last: Category:2005 establishments in North Dakota +[2018-02-13T08:34:24.108] [INFO] cheese - inserting 1000 documents. first: Weekend Breakfast and last: Friedrich-Märker-Preis +[2018-02-13T08:34:24.150] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:34:24.220] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:34:24.278] [INFO] cheese - inserting 1000 documents. first: Template:Current Senate crossbench and last: Alexander Mackenzie of Kintail +[2018-02-13T08:34:24.378] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:34:24.520] [INFO] cheese - inserting 1000 documents. first: Emily Pauline Johnson and last: Allensville, KY +[2018-02-13T08:34:24.544] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/fcmb.com and last: Yanıkhan +[2018-02-13T08:34:24.627] [INFO] cheese - batch complete in: 0.903 secs +[2018-02-13T08:34:24.662] [INFO] cheese - batch complete in: 1.131 secs +[2018-02-13T08:34:24.707] [INFO] cheese - inserting 1000 documents. first: Phalaena astrea and last: Mechanics Hall, Worcester +[2018-02-13T08:34:24.714] [INFO] cheese - inserting 1000 documents. first: Tarascosaurus and last: IHCOYC XPICTOC +[2018-02-13T08:34:24.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mister Iraq and last: File:SIGIR logo.jpg +[2018-02-13T08:34:24.785] [INFO] cheese - inserting 1000 documents. first: Category:User yue-hk-3 and last: Category:Abbots of Czerwińsk +[2018-02-13T08:34:24.794] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:34:24.857] [INFO] cheese - inserting 1000 documents. first: File:Maavichiguru.jpg and last: Eastern correa +[2018-02-13T08:34:24.861] [INFO] cheese - batch complete in: 1.204 secs +[2018-02-13T08:34:24.873] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:34:24.919] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:34:24.968] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:34:25.164] [INFO] cheese - inserting 1000 documents. first: List of Fossil Parks and last: ÖT +[2018-02-13T08:34:25.224] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:34:25.277] [INFO] cheese - inserting 1000 documents. first: Lena Smedsaas and last: Sophia Batchelor +[2018-02-13T08:34:25.351] [INFO] cheese - inserting 1000 documents. first: Skybuilt Power and last: U.S. Route 641 in Tennessee +[2018-02-13T08:34:25.368] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:34:25.404] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:34:25.426] [INFO] cheese - inserting 1000 documents. first: Allenton, MI and last: Damgalnunna +[2018-02-13T08:34:25.504] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:34:25.584] [INFO] cheese - inserting 1000 documents. first: Harold Cox and last: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality log +[2018-02-13T08:34:25.608] [INFO] cheese - inserting 1000 documents. first: Roundleaf correa and last: List of Braniff International Airways destinations +[2018-02-13T08:34:25.681] [INFO] cheese - inserting 1000 documents. first: File:Alderbrook Winery.jpg and last: List of Churchill Brothers S.C. managers +[2018-02-13T08:34:25.739] [INFO] cheese - inserting 1000 documents. first: Palm Atlantis and last: Myint Swe (general) +[2018-02-13T08:34:25.747] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:34:25.755] [INFO] cheese - inserting 1000 documents. first: 1965–66 NBA season and last: Cabot Tower +[2018-02-13T08:34:25.763] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:34:25.801] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:34:25.883] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:34:25.882] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:34:26.150] [INFO] cheese - inserting 1000 documents. first: Lo Nuestro Award for Salsa Artist of the Year and last: File:Sungai Ara FC.png +[2018-02-13T08:34:26.161] [INFO] cheese - inserting 1000 documents. first: Mayonaisse and last: Xiāoshān Qū +[2018-02-13T08:34:26.198] [INFO] cheese - inserting 1000 documents. first: List of Brit Air destinations and last: Carlsson, Daniel +[2018-02-13T08:34:26.207] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:34:26.261] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:34:26.304] [INFO] cheese - inserting 1000 documents. first: Evelyn nesbit thaw and last: Makrihorion, Greece +[2018-02-13T08:34:26.328] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:34:26.394] [INFO] cheese - inserting 1000 documents. first: Episodes of the big bang theory and last: List of FIS Nordic World Ski Championships medalists in nordic combined +[2018-02-13T08:34:26.434] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:34:26.458] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:34:26.539] [INFO] cheese - inserting 1000 documents. first: Unplugged (Alice in Chains album) and last: List of academic statistical associations +[2018-02-13T08:34:26.619] [INFO] cheese - inserting 1000 documents. first: Eugene-Springfield and last: Familialism +[2018-02-13T08:34:26.657] [INFO] cheese - inserting 1000 documents. first: Westinghouse Electric Corporation of 1886 and last: Maria Jelinek +[2018-02-13T08:34:26.693] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:34:26.733] [INFO] cheese - batch complete in: 1.229 secs +[2018-02-13T08:34:26.767] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:34:26.866] [INFO] cheese - inserting 1000 documents. first: Tutti i colori del silenzio and last: File:Back soon on NT.jpg +[2018-02-13T08:34:26.894] [INFO] cheese - inserting 1000 documents. first: Carlsson, Johan and last: Ruth Margery Addoms +[2018-02-13T08:34:26.957] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:34:26.994] [INFO] cheese - inserting 1000 documents. first: Duncan Potts and last: File:Assyriska goteborg.svg +[2018-02-13T08:34:27.000] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:34:27.051] [INFO] cheese - inserting 1000 documents. first: Makrihorio, Greece and last: Category:Members of the École de Nancy +[2018-02-13T08:34:27.062] [INFO] cheese - inserting 1000 documents. first: Category:Dakota and last: Kunwarjibhai Bavaliya +[2018-02-13T08:34:27.097] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:34:27.225] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:34:27.233] [INFO] cheese - batch complete in: 0.799 secs +[2018-02-13T08:34:27.484] [INFO] cheese - inserting 1000 documents. first: Category:RNK Split players and last: Category:Lists of universities and colleges in Africa +[2018-02-13T08:34:27.503] [INFO] cheese - inserting 1000 documents. first: FK Senta and last: R.A.Chandrasena +[2018-02-13T08:34:27.526] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:34:27.579] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:34:27.605] [INFO] cheese - inserting 1000 documents. first: JHQ Rheindahlen bombing 1987 and last: File:Goodwins logo.jpg +[2018-02-13T08:34:27.605] [INFO] cheese - inserting 1000 documents. first: Tanzania at the 2000 Summer Olympics and last: Joachim van den Hove +[2018-02-13T08:34:27.611] [INFO] cheese - inserting 1000 documents. first: Nerea Pérez Machado and last: Island Verditer-flycatcher +[2018-02-13T08:34:27.651] [INFO] cheese - inserting 1000 documents. first: Dinosaur mummy and last: Wikipedia:Version 1.0 Editorial Team/Kurdistan articles by quality +[2018-02-13T08:34:27.663] [INFO] cheese - inserting 1000 documents. first: Florida State Road 270 (pre-1945) and last: Christopher Cumingham +[2018-02-13T08:34:27.671] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:34:27.675] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:34:27.709] [INFO] cheese - batch complete in: 0.941 secs +[2018-02-13T08:34:27.734] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T08:34:27.775] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:34:27.848] [INFO] cheese - inserting 1000 documents. first: Maeterlinck and last: Langnau +[2018-02-13T08:34:27.950] [INFO] cheese - batch complete in: 1.217 secs +[2018-02-13T08:34:28.098] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Australia and last: Tsuchitaru Station +[2018-02-13T08:34:28.143] [INFO] cheese - inserting 1000 documents. first: Category:People from Selkirk, Scottish Borders and last: Suzugamine Women's College +[2018-02-13T08:34:28.144] [INFO] cheese - inserting 1000 documents. first: Dull Verditer-flycatcher and last: Category:Bora–Witoto languages +[2018-02-13T08:34:28.164] [INFO] cheese - inserting 1000 documents. first: File:Rydale Clothing Logo.jpeg and last: Category:San Pablo Bay +[2018-02-13T08:34:28.164] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:34:28.208] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:34:28.350] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:34:28.440] [INFO] cheese - inserting 1000 documents. first: Finger stool and last: Ludwig von Siegen +[2018-02-13T08:34:28.458] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:34:28.496] [INFO] cheese - inserting 1000 documents. first: Category:People from Venlo and last: Macular pucker +[2018-02-13T08:34:28.501] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Catholic cathedrals in the United States and last: SnowyHydro SouthCare +[2018-02-13T08:34:28.582] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:34:28.604] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:34:28.614] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:34:28.909] [INFO] cheese - inserting 1000 documents. first: List of number-one rhythm and blues hits (UK) and last: Ahmed and Salim +[2018-02-13T08:34:28.964] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:34:29.020] [INFO] cheese - inserting 1000 documents. first: Boltus and last: Holy Cross Abbey, Thurles +[2018-02-13T08:34:29.064] [INFO] cheese - inserting 1000 documents. first: Category:Ghana–Togo Mountain languages and last: Prince of Wales International Centre for Research into Schizophrenia and Depression +[2018-02-13T08:34:29.081] [INFO] cheese - inserting 1000 documents. first: Victor Keyru and last: Nereus (nuclear reactor) +[2018-02-13T08:34:29.115] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:34:29.145] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:34:29.215] [INFO] cheese - batch complete in: 1.007 secs +[2018-02-13T08:34:29.237] [INFO] cheese - inserting 1000 documents. first: Southampton brass band and last: CONMEBOL Jubilee Awards +[2018-02-13T08:34:29.268] [INFO] cheese - inserting 1000 documents. first: East Fairfield and last: William Ormand Mitchell +[2018-02-13T08:34:29.288] [INFO] cheese - inserting 1000 documents. first: Sun Certified Business Component Developer and last: Template:Trinidad and Tobago legislative election, 2007 +[2018-02-13T08:34:29.322] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:34:29.377] [INFO] cheese - batch complete in: 1.426 secs +[2018-02-13T08:34:29.386] [INFO] cheese - inserting 1000 documents. first: Lake June in Winter and last: Widnes War Memorial +[2018-02-13T08:34:29.395] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:34:29.533] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:34:29.683] [INFO] cheese - inserting 1000 documents. first: Adaži and last: Michael Buckley (professor) +[2018-02-13T08:34:29.747] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:34:29.902] [INFO] cheese - inserting 1000 documents. first: Sqeezer and last: File:DaddyDearest2016TVB.jpg +[2018-02-13T08:34:29.918] [INFO] cheese - inserting 1000 documents. first: Isøyane Bird Sanctuary and last: Category:Girls Next Door songs +[2018-02-13T08:34:29.976] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:34:29.985] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:34:30.151] [INFO] cheese - inserting 1000 documents. first: Don´t repeat yourself and last: Plast +[2018-02-13T08:34:30.164] [INFO] cheese - inserting 1000 documents. first: The People's Quiz and last: Superbowl I +[2018-02-13T08:34:30.180] [INFO] cheese - inserting 1000 documents. first: Mountains (EP) and last: Nagasako Takashi +[2018-02-13T08:34:30.197] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:34:30.261] [INFO] cheese - inserting 1000 documents. first: Gravity feed and last: Everything Will Be Fine +[2018-02-13T08:34:30.260] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:34:30.273] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:34:30.330] [INFO] cheese - inserting 1000 documents. first: The Talking Machine News and last: Maria Falcione +[2018-02-13T08:34:30.363] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:34:30.435] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:34:30.477] [INFO] cheese - inserting 1000 documents. first: William Ormond Mitchell and last: Fender Musical Instruments Corporation +[2018-02-13T08:34:30.589] [INFO] cheese - inserting 1000 documents. first: Özge Özel and last: Alan Bourne +[2018-02-13T08:34:30.602] [INFO] cheese - batch complete in: 1.225 secs +[2018-02-13T08:34:30.620] [INFO] cheese - inserting 1000 documents. first: William O'Byrne and last: United Nations Security Council Resolution 1806 +[2018-02-13T08:34:30.640] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:34:30.712] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:34:30.851] [INFO] cheese - inserting 1000 documents. first: 46th parallel south and last: Penn Station (Baltimore Light Rail station) +[2018-02-13T08:34:30.947] [INFO] cheese - inserting 1000 documents. first: Category:Bosniaks of Serbia and last: File:RobinDVD.png +[2018-02-13T08:34:30.967] [INFO] cheese - inserting 1000 documents. first: Jullunder and last: Tapanui Branch +[2018-02-13T08:34:30.967] [INFO] cheese - inserting 1000 documents. first: Order of Battle of the Battle of Lanfeng and last: Gudbrandur Torlaksson +[2018-02-13T08:34:30.992] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:34:31.029] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:34:31.030] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:34:31.095] [INFO] cheese - inserting 1000 documents. first: Kobus Vandenberg and last: Harold Y. McSween +[2018-02-13T08:34:31.126] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:34:31.170] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:34:31.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Black Lunch Table/April 2016 New Orleans and last: Category:Footballers from Baden-Württemberg +[2018-02-13T08:34:31.363] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:34:31.403] [INFO] cheese - inserting 1000 documents. first: Template:Ben Aaronovitch and last: Cozumel Island raccoon +[2018-02-13T08:34:31.516] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:34:31.636] [INFO] cheese - inserting 1000 documents. first: M'um and last: Wikipedia:Articles for deletion/Undercut Productions +[2018-02-13T08:34:31.652] [INFO] cheese - inserting 1000 documents. first: Gyula Valyi and last: The Biggest Loser Australia 2006 +[2018-02-13T08:34:31.720] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:34:31.813] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:34:31.821] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class filmmaking articles and last: C 52 +[2018-02-13T08:34:31.900] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2014 January 11 and last: Template:2004DutchOlympicSailingTeam +[2018-02-13T08:34:31.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Groundswell (book) and last: Medija Thermal Spa +[2018-02-13T08:34:31.954] [INFO] cheese - inserting 1000 documents. first: Chambered nautilus and last: Tillamook Cheese Factory +[2018-02-13T08:34:31.985] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:34:32.028] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:34:32.058] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:34:32.141] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Greene County, Indiana and last: Smilus +[2018-02-13T08:34:32.154] [INFO] cheese - batch complete in: 1.552 secs +[2018-02-13T08:34:32.251] [INFO] cheese - inserting 1000 documents. first: Test of Written English and last: Galehband +[2018-02-13T08:34:32.250] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:34:32.359] [INFO] cheese - batch complete in: 0.843 secs +[2018-02-13T08:34:32.517] [INFO] cheese - inserting 1000 documents. first: Template:Age in months/doc and last: MBRL +[2018-02-13T08:34:32.614] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:34:32.674] [INFO] cheese - inserting 1000 documents. first: File:Hotel-school-in-switzerland.jpg and last: Ivan Farmakovsky +[2018-02-13T08:34:32.694] [INFO] cheese - inserting 1000 documents. first: Norman Taber and last: Wikipedia:Articles for deletion/DiggFans +[2018-02-13T08:34:32.762] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:34:32.810] [INFO] cheese - inserting 1000 documents. first: Talmei Yaffe and last: Yuca fries +[2018-02-13T08:34:32.814] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:34:32.908] [INFO] cheese - inserting 1000 documents. first: Galleh Band and last: File:Huabiao Award.gif +[2018-02-13T08:34:32.911] [INFO] cheese - inserting 1000 documents. first: Category:2014 Pacific typhoon season and last: Sack of Salona +[2018-02-13T08:34:32.918] [INFO] cheese - inserting 1000 documents. first: Category:Electoral reform in Wales and last: Jeekel +[2018-02-13T08:34:32.919] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:34:32.991] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:34:33.018] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:34:33.025] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:34:33.156] [INFO] cheese - inserting 1000 documents. first: Dolby Digital EX and last: Category:Chubu region +[2018-02-13T08:34:33.260] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:34:33.309] [INFO] cheese - inserting 1000 documents. first: Burton Drayer and last: History of Sullivan County, New York +[2018-02-13T08:34:33.364] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:34:33.490] [INFO] cheese - inserting 1000 documents. first: Bookmark image and last: List of Bartimaeus characters +[2018-02-13T08:34:33.525] [INFO] cheese - inserting 1000 documents. first: First Baptist Church of Tarrytown (Tarrytown, New York) and last: Category:Tourist attractions in Franklin County, Kentucky +[2018-02-13T08:34:33.530] [INFO] cheese - inserting 1000 documents. first: History of Vietnamese Americans in Boston and last: File:Encore 1996.jpg +[2018-02-13T08:34:33.535] [INFO] cheese - inserting 1000 documents. first: Places named for Pope John Paul II and last: GTYJ +[2018-02-13T08:34:33.575] [INFO] cheese - inserting 1000 documents. first: Love Me No More (film) and last: Wikipedia:WikiProject Academic Journals/Journals cited by Wikipedia/P38 +[2018-02-13T08:34:33.588] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:34:33.631] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:34:33.646] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:34:33.650] [INFO] cheese - inserting 1000 documents. first: Slip-stick phenomenon and last: Template:Kings Of The Lombards +[2018-02-13T08:34:33.660] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T08:34:33.726] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:34:33.739] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:34:33.958] [INFO] cheese - inserting 1000 documents. first: History of Tompkins County, New York and last: This DJ +[2018-02-13T08:34:34.032] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:34:34.075] [INFO] cheese - inserting 1000 documents. first: Category:Kanto region and last: Paul Dodge +[2018-02-13T08:34:34.149] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Kenton County, Kentucky and last: File:JikkyouPowerProWrestling96MaxVoltageScreenshotSNES.png +[2018-02-13T08:34:34.179] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:34:34.244] [INFO] cheese - inserting 1000 documents. first: Gospel Oak (ward) and last: 1981 Heineken Open – Singles +[2018-02-13T08:34:34.281] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:34:34.333] [INFO] cheese - inserting 1000 documents. first: File:Gennady Komnatov.jpg and last: Category:Basketball players from Kerala +[2018-02-13T08:34:34.358] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:34:34.375] [INFO] cheese - inserting 1000 documents. first: Gregory Camp and last: Charles Frederick Ferguson +[2018-02-13T08:34:34.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2006-01-01 source inclusion in Jayendra Saraswathi and last: Kathleen P. King +[2018-02-13T08:34:34.432] [INFO] cheese - inserting 1000 documents. first: Andre Ngongang Ouandji and last: Keith L. Brown +[2018-02-13T08:34:34.471] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:34:34.525] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:34:34.656] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Madagascar and last: The royal college curepipe +[2018-02-13T08:34:34.736] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:34:34.760] [INFO] cheese - batch complete in: 1.172 secs +[2018-02-13T08:34:34.897] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:34:35.067] [INFO] cheese - inserting 1000 documents. first: Paper Wrapped Cake and last: Template:Vermont Catamounts men's basketball coach navbox +[2018-02-13T08:34:35.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/wizardradio.co.uk and last: Forum baths +[2018-02-13T08:34:35.192] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:34:35.305] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:34:35.393] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Ontonagon County, Michigan and last: File:GregoryGerrer.jpg +[2018-02-13T08:34:35.404] [INFO] cheese - inserting 1000 documents. first: File:David Jenkins Welsh composer.jpg and last: Category:Wikipedia sockpuppets of Rinku125 +[2018-02-13T08:34:35.547] [INFO] cheese - inserting 1000 documents. first: Goodrich, Herfordshire and last: Joshua Jebb +[2018-02-13T08:34:35.549] [INFO] cheese - batch complete in: 1.268 secs +[2018-02-13T08:34:35.560] [INFO] cheese - batch complete in: 1.089 secs +[2018-02-13T08:34:35.650] [INFO] cheese - inserting 1000 documents. first: Succinctly representable game and last: Active directory objects +[2018-02-13T08:34:35.692] [INFO] cheese - batch complete in: 1.513 secs +[2018-02-13T08:34:35.710] [INFO] cheese - inserting 1000 documents. first: Sheffield & Hallamshire Football Association and last: Cyclodextrine +[2018-02-13T08:34:35.750] [INFO] cheese - inserting 1000 documents. first: Mihai Bravu, Giurgiu and last: List of call centre companies +[2018-02-13T08:34:35.758] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:34:35.902] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T08:34:35.902] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T08:34:36.000] [INFO] cheese - inserting 1000 documents. first: Manhattan Parade and last: R & W Hawthorn +[2018-02-13T08:34:36.093] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:34:36.142] [INFO] cheese - inserting 1000 documents. first: Category:1911 in Washington, D.C. and last: Seal of Karnataka +[2018-02-13T08:34:36.250] [INFO] cheese - inserting 1000 documents. first: File:Notable Welshmen 1700 1900.pdf and last: Wikipedia:Articles for deletion/Christian Dvorak +[2018-02-13T08:34:36.257] [INFO] cheese - batch complete in: 0.952 secs +[2018-02-13T08:34:36.287] [INFO] cheese - inserting 1000 documents. first: Trisikad and last: Che Det +[2018-02-13T08:34:36.362] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:34:36.379] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:34:36.492] [INFO] cheese - inserting 1000 documents. first: European Commissioner for Institutional Relations and Communication Strategy and last: Instituto Nacional de Sismología, Vulcanología, Metereología e Hidrología +[2018-02-13T08:34:36.585] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:34:36.699] [INFO] cheese - inserting 1000 documents. first: Gulbenkian Professor of Armenian and last: Ususau, Arad +[2018-02-13T08:34:36.736] [INFO] cheese - inserting 1000 documents. first: Universal (Orlando) and last: Missouri Route 23 (decommissioned) +[2018-02-13T08:34:36.815] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:34:36.916] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject University of North Texas/Article alerts/Archive and last: Category:Former Liberty Media subsidiaries +[2018-02-13T08:34:36.940] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:34:37.061] [INFO] cheese - inserting 1000 documents. first: Kenneth Brown (author) and last: Quentin Bryce +[2018-02-13T08:34:37.055] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:34:37.147] [INFO] cheese - inserting 1000 documents. first: Balkan Black Box and last: WILD LAW +[2018-02-13T08:34:37.246] [INFO] cheese - inserting 1000 documents. first: Paul Haywood and last: Jef Chandler +[2018-02-13T08:34:37.250] [INFO] cheese - batch complete in: 1.157 secs +[2018-02-13T08:34:37.254] [INFO] cheese - inserting 1000 documents. first: Guns and Roses (disambiguation) and last: Clemens-Brentano-Preis +[2018-02-13T08:34:37.314] [INFO] cheese - batch complete in: 1.622 secs +[2018-02-13T08:34:37.467] [INFO] cheese - batch complete in: 1.103 secs +[2018-02-13T08:34:37.480] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T08:34:37.483] [INFO] cheese - inserting 1000 documents. first: Nivaria and last: Roots (Everly Brothers album) +[2018-02-13T08:34:37.698] [INFO] cheese - batch complete in: 1.113 secs +[2018-02-13T08:34:37.842] [INFO] cheese - inserting 1000 documents. first: Tarnova, Arad and last: James Murray (hurler) +[2018-02-13T08:34:37.930] [INFO] cheese - inserting 1000 documents. first: Chechen Island and last: 18th Street (Philadelphia) +[2018-02-13T08:34:37.933] [INFO] cheese - inserting 1000 documents. first: Cross harp and last: Stone and Sun +[2018-02-13T08:34:37.992] [INFO] cheese - batch complete in: 1.177 secs +[2018-02-13T08:34:38.183] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:34:38.210] [INFO] cheese - batch complete in: 1.155 secs +[2018-02-13T08:34:38.310] [INFO] cheese - inserting 1000 documents. first: Windymen and last: Jennifer Convertibles +[2018-02-13T08:34:38.390] [INFO] cheese - inserting 1000 documents. first: East Foxley and last: File:In Angel City.jpg +[2018-02-13T08:34:38.481] [INFO] cheese - inserting 1000 documents. first: Simplex (French automobile manufacturer) and last: Box (Mill Lane) Halt railway station +[2018-02-13T08:34:38.497] [INFO] cheese - batch complete in: 1.247 secs +[2018-02-13T08:34:38.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/HMS Lion (1910)/archive1 and last: Chris Talbot +[2018-02-13T08:34:38.647] [INFO] cheese - batch complete in: 1.18 secs +[2018-02-13T08:34:38.652] [INFO] cheese - batch complete in: 1.172 secs +[2018-02-13T08:34:38.780] [INFO] cheese - batch complete in: 1.081 secs +[2018-02-13T08:34:38.972] [INFO] cheese - inserting 1000 documents. first: Category:ISSF shooting events and last: Category:Atlanta Thrashers players +[2018-02-13T08:34:39.080] [INFO] cheese - inserting 1000 documents. first: Home Alone 5: The Holiday Heist and last: US Senate members +[2018-02-13T08:34:39.102] [INFO] cheese - inserting 1000 documents. first: Portuguese America and last: Austin canons +[2018-02-13T08:34:39.209] [INFO] cheese - inserting 1000 documents. first: File:Mnquma CoA.png and last: Alan Woods (public servant) +[2018-02-13T08:34:39.122] [INFO] cheese - batch complete in: 1.808 secs +[2018-02-13T08:34:39.216] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:34:39.255] [INFO] cheese - inserting 1000 documents. first: Narendra Nayak and last: File:Herfølge BK.png +[2018-02-13T08:34:39.279] [INFO] cheese - inserting 1000 documents. first: Mt Misery and last: Wikipedia:Articles for deletion/George Cavanaugh +[2018-02-13T08:34:39.303] [INFO] cheese - batch complete in: 1.311 secs +[2018-02-13T08:34:39.333] [INFO] cheese - inserting 1000 documents. first: Barras (people) and last: Bay View High School +[2018-02-13T08:34:39.408] [INFO] cheese - inserting 1000 documents. first: Cliffs of Dover (song) and last: Museum of National Resistance +[2018-02-13T08:34:39.427] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:34:39.456] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:34:39.464] [INFO] cheese - batch complete in: 1.281 secs +[2018-02-13T08:34:39.514] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T08:34:39.586] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:34:39.770] [INFO] cheese - inserting 1000 documents. first: Miho Takenaka and last: Hypericum bupleuroides +[2018-02-13T08:34:39.827] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:34:39.856] [INFO] cheese - inserting 1000 documents. first: Wind powered generator and last: File:Thebestsofar.jpg +[2018-02-13T08:34:39.914] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:34:40.024] [INFO] cheese - inserting 1000 documents. first: Category:10th-century Danish people and last: Coat of arms of Kent +[2018-02-13T08:34:40.069] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:34:40.080] [INFO] cheese - inserting 1000 documents. first: Van Benschoten House and Guest House and last: Tae Hyeon-sil +[2018-02-13T08:34:40.084] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Dundswk/Archive and last: Carlisle City Council election, 2007 +[2018-02-13T08:34:40.114] [INFO] cheese - inserting 1000 documents. first: Tom Keating (American Football) and last: Cote Chalonnaise +[2018-02-13T08:34:40.165] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:34:40.159] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:34:40.220] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Blackhawks players and last: Kalapana (band) +[2018-02-13T08:34:40.267] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:34:40.199] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/If I Had Changed My Mind and last: SFGate.com +[2018-02-13T08:34:40.512] [INFO] cheese - batch complete in: 1.303 secs +[2018-02-13T08:34:40.523] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:34:40.695] [INFO] cheese - inserting 1000 documents. first: Actual/365 and last: List of people from Caracas +[2018-02-13T08:34:40.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:2008 main page redesign proposal/Nat/Beta and last: East State Street +[2018-02-13T08:34:40.853] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:34:40.911] [INFO] cheese - inserting 1000 documents. first: Template:First and Second Cabinets of Louis Napoleon and last: Wikipedia:WikiProject Spam/Local/publications.maxwellinstitute.byu.edu +[2018-02-13T08:34:40.910] [INFO] cheese - batch complete in: 0.996 secs +[2018-02-13T08:34:40.966] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:34:41.054] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Billie (1964) and last: Television 4 +[2018-02-13T08:34:41.082] [INFO] cheese - inserting 1000 documents. first: Hyun-shil Tae and last: Template:Somerset CCC +[2018-02-13T08:34:41.083] [INFO] cheese - inserting 1000 documents. first: Holtsås and last: Pattress box +[2018-02-13T08:34:41.137] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:34:41.151] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:34:41.256] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:34:41.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/St. Catharines Wine Tasting of 2005 and last: Fungivore +[2018-02-13T08:34:41.465] [INFO] cheese - inserting 1000 documents. first: Ocean Beach Railway and last: Vice presidents of Taiwan +[2018-02-13T08:34:41.526] [INFO] cheese - inserting 1000 documents. first: Vuelta a Argentina and last: 2016 FINA Diving World Cup - Men's 10 metre platform +[2018-02-13T08:34:41.527] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:34:41.541] [INFO] cheese - inserting 1000 documents. first: Noël Lefebvre-Duruflé and last: File:Nongoma CoA.png +[2018-02-13T08:34:41.580] [INFO] cheese - batch complete in: 1.056 secs +[2018-02-13T08:34:41.653] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:34:41.656] [INFO] cheese - inserting 1000 documents. first: Kaimu and last: Macho Man +[2018-02-13T08:34:41.658] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:34:41.774] [INFO] cheese - batch complete in: 1.262 secs +[2018-02-13T08:34:41.798] [INFO] cheese - inserting 1000 documents. first: Nao Kodaira and last: Bugul'minskii Raion +[2018-02-13T08:34:41.839] [INFO] cheese - inserting 1000 documents. first: Internal economies of scale and last: Carlito Cool +[2018-02-13T08:34:41.847] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:34:41.936] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:34:42.054] [INFO] cheese - inserting 1000 documents. first: Category:2018 in West Indian cricket and last: 20 SOS +[2018-02-13T08:34:42.062] [INFO] cheese - inserting 1000 documents. first: File:GW summer2.jpg and last: Trim Road (Ottawa) +[2018-02-13T08:34:42.374] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:34:42.458] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:34:42.576] [INFO] cheese - inserting 1000 documents. first: File:2011 ISAF Sailing World Championships logo.jpg and last: Category:La Massana +[2018-02-13T08:34:43.054] [INFO] cheese - inserting 1000 documents. first: Taiwanese vice presidents and last: Rob McVicar +[2018-02-13T08:34:43.185] [INFO] cheese - inserting 1000 documents. first: Herochroma baibarana and last: Defines +[2018-02-13T08:34:43.282] [INFO] cheese - batch complete in: 2.145 secs +[2018-02-13T08:34:43.392] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Glasscock County, Texas and last: Ají panca +[2018-02-13T08:34:43.323] [INFO] cheese - batch complete in: 1.743 secs +[2018-02-13T08:34:43.439] [INFO] cheese - batch complete in: 1.592 secs +[2018-02-13T08:34:43.434] [INFO] cheese - inserting 1000 documents. first: Council High School (Virginia) and last: The Human Giant +[2018-02-13T08:34:43.876] [INFO] cheese - batch complete in: 2.218 secs +[2018-02-13T08:34:44.071] [INFO] cheese - batch complete in: 2.135 secs +[2018-02-13T08:34:44.230] [INFO] cheese - inserting 1000 documents. first: Large ant-blue and last: Guardian Media Ltd. +[2018-02-13T08:34:44.322] [INFO] cheese - batch complete in: 1.839 secs +[2018-02-13T08:34:44.387] [INFO] cheese - inserting 1000 documents. first: Franklin Strait and last: Górna Grupa +[2018-02-13T08:34:44.387] [INFO] cheese - inserting 1000 documents. first: Category:Titans and last: Ethnism +[2018-02-13T08:34:44.606] [INFO] cheese - batch complete in: 2.21 secs +[2018-02-13T08:34:44.656] [INFO] cheese - batch complete in: 2.881 secs +[2018-02-13T08:34:44.811] [INFO] cheese - inserting 1000 documents. first: Azhikkal and last: Tschadsa +[2018-02-13T08:34:44.853] [INFO] cheese - inserting 1000 documents. first: Category:Ordino and last: Tropical Storm Astride +[2018-02-13T08:34:44.922] [INFO] cheese - inserting 1000 documents. first: Trent Dabbs and last: Kenseth +[2018-02-13T08:34:44.951] [INFO] cheese - batch complete in: 1.663 secs +[2018-02-13T08:34:44.995] [INFO] cheese - batch complete in: 1.664 secs +[2018-02-13T08:34:45.043] [INFO] cheese - batch complete in: 1.604 secs +[2018-02-13T08:34:45.204] [INFO] cheese - inserting 1000 documents. first: Daydream (1981 film) and last: Thomas Stephens (Jesuit) +[2018-02-13T08:34:45.208] [INFO] cheese - inserting 1000 documents. first: Student debt in the United States and last: Template:Taxonomy/Hesperapis +[2018-02-13T08:34:45.259] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:34:45.271] [INFO] cheese - batch complete in: 1.2 secs +[2018-02-13T08:34:45.276] [INFO] cheese - inserting 1000 documents. first: Transalpine Redemptorist and last: Société Wallonne de Financement et de Garantie des Petites et Moyennes Entreprises +[2018-02-13T08:34:45.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Surveillance awareness day and last: Book:Leonardo DiCaprio +[2018-02-13T08:34:45.447] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:34:45.490] [INFO] cheese - batch complete in: 1.605 secs +[2018-02-13T08:34:45.606] [INFO] cheese - inserting 1000 documents. first: Barmedghe and last: File:A Time for Us (album).jpeg +[2018-02-13T08:34:45.723] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:34:45.737] [INFO] cheese - inserting 1000 documents. first: Kali Bannerjee and last: 2010 Regions Morgan Keegan Championships +[2018-02-13T08:34:45.793] [INFO] cheese - inserting 1000 documents. first: Broom-Hilda and last: Cayuni River +[2018-02-13T08:34:45.850] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:34:45.874] [INFO] cheese - inserting 1000 documents. first: Nguyễn Văn Toàn (disambiguation) and last: South Negros BioPower +[2018-02-13T08:34:45.878] [INFO] cheese - inserting 1000 documents. first: Sample (music) and last: Category:Madison County, Ohio +[2018-02-13T08:34:45.887] [INFO] cheese - inserting 1000 documents. first: David Gerstein and last: Amber Asylum +[2018-02-13T08:34:45.924] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:34:45.973] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:34:45.988] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:34:46.023] [INFO] cheese - inserting 1000 documents. first: Template:1916–17 Western Conference men's basketball standings and last: El secretario +[2018-02-13T08:34:46.008] [INFO] cheese - batch complete in: 1.351 secs +[2018-02-13T08:34:46.092] [INFO] cheese - inserting 1000 documents. first: Digital Life (magazine) and last: 1st Battalion, 6th Marine Regiment +[2018-02-13T08:34:46.147] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:34:46.227] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:34:46.422] [INFO] cheese - inserting 1000 documents. first: Template:Metropolitan municipalities in Turkey and last: File:Tiptree United FC logo.png +[2018-02-13T08:34:46.485] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:34:46.551] [INFO] cheese - inserting 1000 documents. first: Silver Fame and last: Category:2018 in winter sports +[2018-02-13T08:34:46.604] [INFO] cheese - inserting 1000 documents. first: Love Bite and last: 2010 Nelonen – Finnish League Division 4 +[2018-02-13T08:34:46.713] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:34:46.725] [INFO] cheese - inserting 1000 documents. first: Gertrude of Hohenberg and last: Are You Listening? (Dolores O'Riordan album) +[2018-02-13T08:34:46.764] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:34:46.783] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/The Day We Fight Back and last: Setoclavine +[2018-02-13T08:34:46.795] [INFO] cheese - inserting 1000 documents. first: Maurice Twomey and last: File:Seeing Double + Don't Stop Movin' album cover.jpg +[2018-02-13T08:34:46.858] [INFO] cheese - batch complete in: 0.869 secs +[2018-02-13T08:34:46.969] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ranch Road 1 and last: Shitlington Crag +[2018-02-13T08:34:46.989] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:34:47.023] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:34:47.152] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:34:47.229] [INFO] cheese - inserting 1000 documents. first: File:Centralwashington.PNG and last: Linear temporal logic +[2018-02-13T08:34:47.304] [INFO] cheese - inserting 1000 documents. first: List of country names in various languages (A-C) and last: Ute Indians +[2018-02-13T08:34:47.311] [INFO] cheese - inserting 1000 documents. first: Category:2002 in winter sports and last: Alykel (airport) +[2018-02-13T08:34:47.373] [INFO] cheese - batch complete in: 1.365 secs +[2018-02-13T08:34:47.389] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:34:47.424] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:34:47.488] [INFO] cheese - inserting 1000 documents. first: Potosa and last: Saint Gothian Sands Local Nature Reserve +[2018-02-13T08:34:47.509] [INFO] cheese - inserting 1000 documents. first: Instrumentenkunde and last: Khafar +[2018-02-13T08:34:47.595] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:34:47.616] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:34:47.669] [INFO] cheese - inserting 1000 documents. first: Am Timan (airport) and last: Moralny codex +[2018-02-13T08:34:47.689] [INFO] cheese - batch complete in: 0.3 secs +[2018-02-13T08:34:47.807] [INFO] cheese - inserting 1000 documents. first: Electoral district of Ashfield-Croydon and last: 2-Bromo-4,5-methylenedioxyamphetamine +[2018-02-13T08:34:47.808] [INFO] cheese - inserting 1000 documents. first: Vetyver and last: Template:PBB/2623 +[2018-02-13T08:34:47.839] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Digison and last: Prince-primate +[2018-02-13T08:34:47.885] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:34:47.913] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:34:47.947] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:34:48.090] [INFO] cheese - inserting 1000 documents. first: Hillcrest Country Club (disambiguation) and last: Heino Hansen +[2018-02-13T08:34:48.096] [INFO] cheese - inserting 1000 documents. first: Kifteh Giv Sin and last: Neo orthodoxy +[2018-02-13T08:34:48.162] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:34:48.187] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:34:48.190] [INFO] cheese - inserting 1000 documents. first: St. Gothian Sands Local Nature Reserve and last: Dallas International School Mission Laïque Française +[2018-02-13T08:34:48.239] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Anatolidion and last: Draft:Allen M. Burdett Jr. +[2018-02-13T08:34:48.266] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:34:48.325] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:34:48.360] [INFO] cheese - inserting 1000 documents. first: Holy cow and last: Banana Republicans +[2018-02-13T08:34:48.482] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:34:48.535] [INFO] cheese - inserting 1000 documents. first: Template:PBB/5764 and last: List of Welsh musicians +[2018-02-13T08:34:48.645] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:34:48.711] [INFO] cheese - inserting 1000 documents. first: 1963 Berlin International Film Festival and last: 2005 Kurdistan governorate elections +[2018-02-13T08:34:48.749] [INFO] cheese - inserting 1000 documents. first: Pallisers and last: Preferred roaming list +[2018-02-13T08:34:48.782] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:34:48.839] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/The Unwinding and last: Suzy Stride +[2018-02-13T08:34:48.868] [INFO] cheese - inserting 1000 documents. first: Wigwag (disambiguation) and last: Ellinitsa +[2018-02-13T08:34:48.869] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:34:48.902] [INFO] cheese - inserting 1000 documents. first: Ðà Nẵng F.C. and last: Association of Independent Colleges and Universities in Massachusetts +[2018-02-13T08:34:48.914] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:34:48.957] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:34:48.992] [INFO] cheese - inserting 1000 documents. first: Liverpool City Council election, 2016 and last: Programme note +[2018-02-13T08:34:49.015] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:34:49.132] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:34:49.279] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1311 and last: Pranab Kumar Mukherjee +[2018-02-13T08:34:49.294] [INFO] cheese - inserting 1000 documents. first: List of Baccano episodes and last: Satellite drag +[2018-02-13T08:34:49.390] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:34:49.399] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:34:49.442] [INFO] cheese - inserting 1000 documents. first: Kaskade (Project Pitchfork album) and last: List of populated places in Hungary (Sz) +[2018-02-13T08:34:49.452] [INFO] cheese - inserting 1000 documents. first: Terminal illness and last: André Courrèges +[2018-02-13T08:34:49.513] [INFO] cheese - inserting 1000 documents. first: Tetralopha cyrilla and last: Classical tradition +[2018-02-13T08:34:49.582] [INFO] cheese - batch complete in: 1.1 secs +[2018-02-13T08:34:49.609] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:34:49.653] [INFO] cheese - inserting 1000 documents. first: Programme notes and last: Rizzato +[2018-02-13T08:34:49.665] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:34:49.736] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:34:49.802] [INFO] cheese - inserting 1000 documents. first: Synthetic ruby and last: Portal:Language/Language topic/January 2006 +[2018-02-13T08:34:49.857] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Computer science articles and last: Liu Heita +[2018-02-13T08:34:49.904] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:34:49.993] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T08:34:50.136] [INFO] cheese - inserting 1000 documents. first: Richard Finan and last: Japanese general election, 1960 +[2018-02-13T08:34:50.222] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:34:50.348] [INFO] cheese - inserting 1000 documents. first: Qal'eh-ye Taqiabad and last: Wikipedia:WikiProject Spam/LinkReports/russianschool.com +[2018-02-13T08:34:50.363] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1618 and last: Template:PBB/222487 +[2018-02-13T08:34:50.374] [INFO] cheese - inserting 1000 documents. first: TBM 930 and last: File:Biffy Clyro - Ellipsis Cover.jpg +[2018-02-13T08:34:50.430] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:34:50.471] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:34:50.473] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:34:50.611] [INFO] cheese - inserting 1000 documents. first: File:Climactichnites - Todd Gass 2.JPG and last: David battley +[2018-02-13T08:34:50.617] [INFO] cheese - inserting 1000 documents. first: Greyabbey and last: Wikipedia:Articles for deletion/Desperados +[2018-02-13T08:34:50.620] [INFO] cheese - inserting 1000 documents. first: Modri e and last: Category:Education in Randolph County, Missouri +[2018-02-13T08:34:50.683] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:34:50.719] [INFO] cheese - inserting 1000 documents. first: Jim McKay and last: Peter Steele +[2018-02-13T08:34:50.759] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:34:50.766] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:34:50.859] [INFO] cheese - batch complete in: 1.276 secs +[2018-02-13T08:34:50.898] [INFO] cheese - inserting 1000 documents. first: Rhythm and Blues (album) and last: Peerumedu +[2018-02-13T08:34:50.987] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:34:50.992] [INFO] cheese - inserting 1000 documents. first: Cladodont and last: Caucasian dog +[2018-02-13T08:34:51.058] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:34:51.065] [INFO] cheese - inserting 1000 documents. first: Category:Canadian ceremonial units and last: K truck +[2018-02-13T08:34:51.130] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:34:51.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/russianschool.com and last: Space Quest IV: Roger Wilco and The Time Rippers +[2018-02-13T08:34:51.293] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:34:51.430] [INFO] cheese - inserting 1000 documents. first: Pike-characin and last: Template:Saint Lucian general election, 2011 +[2018-02-13T08:34:51.431] [INFO] cheese - inserting 1000 documents. first: Template:OldAfdMulti and last: Turnaround jump shot +[2018-02-13T08:34:51.471] [INFO] cheese - inserting 1000 documents. first: Mount Olivet, West Virginia and last: Bella Bella/Shearwater Water Aerodrome +[2018-02-13T08:34:51.486] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:34:51.533] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T08:34:51.610] [INFO] cheese - inserting 1000 documents. first: Vladimir Antonovich Zorich and last: Draft:The Wolf Man (film) +[2018-02-13T08:34:51.612] [INFO] cheese - inserting 1000 documents. first: Category:Architects from New York City and last: WFKX +[2018-02-13T08:34:51.620] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:34:51.657] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:34:51.729] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9058 and last: File:Hindley Station.JPG +[2018-02-13T08:34:51.731] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:34:51.748] [INFO] cheese - inserting 1000 documents. first: File:Kaohsiung County location.jpg and last: 2099 (comics) +[2018-02-13T08:34:51.816] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:34:51.866] [INFO] cheese - inserting 1000 documents. first: Space Quest V: The Next Mutation and last: 1920–21 Georgetown Hoyas men's basketball team +[2018-02-13T08:34:51.862] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:34:51.965] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:34:52.072] [INFO] cheese - inserting 1000 documents. first: Hossein Vafaei and last: List of political parties of the Turks and Caicos Islands +[2018-02-13T08:34:52.132] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:34:52.148] [INFO] cheese - inserting 1000 documents. first: Anil Mathur and last: Art repatriation +[2018-02-13T08:34:52.152] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Newfoundland and Labrador and last: Ayyoubid +[2018-02-13T08:34:52.197] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:34:52.226] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:34:52.252] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Bureaucrat Unchecking and last: Wikipedia:Sockpuppet investigations/Gfdssfdg +[2018-02-13T08:34:52.300] [INFO] cheese - inserting 1000 documents. first: Assault gliders and last: Pereira accounting +[2018-02-13T08:34:52.301] [INFO] cheese - inserting 1000 documents. first: CAW8 and last: Monty Naicker +[2018-02-13T08:34:52.326] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:34:52.346] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:34:52.367] [INFO] cheese - inserting 1000 documents. first: Finding Fela and last: The Best of Jay Sean +[2018-02-13T08:34:52.391] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:34:52.478] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:34:52.645] [INFO] cheese - inserting 1000 documents. first: Acacia auronitens and last: Category:1887 establishments in Zanzibar +[2018-02-13T08:34:52.696] [INFO] cheese - inserting 1000 documents. first: Category:Food additives and last: MIT Press +[2018-02-13T08:34:52.696] [INFO] cheese - inserting 1000 documents. first: Federal Ministry for Economics and Technologies (Germany) and last: Category:Latvian airbases +[2018-02-13T08:34:52.721] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:34:52.803] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:34:52.852] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:34:52.922] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject League of Copyeditors/Requests/Oil shale geology and last: Dogrose +[2018-02-13T08:34:52.937] [INFO] cheese - inserting 1000 documents. first: Charlotte Marie of Saxe-Jena and last: Aggressive (disambiguation) +[2018-02-13T08:34:52.978] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:34:53.017] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:34:53.048] [INFO] cheese - inserting 1000 documents. first: Lucian Bute vs. Jean Pascal and last: Queensland colonial election, 1896 +[2018-02-13T08:34:53.053] [INFO] cheese - inserting 1000 documents. first: ConnectU and last: Stephen Booth (cricketer) +[2018-02-13T08:34:53.115] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:34:53.136] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:34:53.163] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vondruke and last: Space Hulk: Vengeance of the Blood Angels +[2018-02-13T08:34:53.240] [INFO] cheese - inserting 1000 documents. first: Jan Peter van Baurscheit the Elder and last: Jan de Boer +[2018-02-13T08:34:53.248] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:34:53.252] [INFO] cheese - inserting 1000 documents. first: Template:Sul Ross State Lobos football coach navbox and last: Portal:Animation/Anniversaries/May/May 17 +[2018-02-13T08:34:53.286] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:34:53.318] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:34:53.410] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9148 and last: No. 10 Group RAAF +[2018-02-13T08:34:53.446] [INFO] cheese - inserting 1000 documents. first: VNN and last: Viable but nonculturable +[2018-02-13T08:34:53.448] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T08:34:53.516] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T08:34:53.543] [INFO] cheese - inserting 1000 documents. first: Erbin (protein) and last: Arrowfield 3YO Sprint +[2018-02-13T08:34:53.550] [INFO] cheese - inserting 1000 documents. first: José Luis García Muñoz and last: Boisé du Tremblay +[2018-02-13T08:34:53.590] [INFO] cheese - inserting 1000 documents. first: Greed and fear and last: St. Joseph River (Maumee River) +[2018-02-13T08:34:53.601] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T08:34:53.641] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:34:53.728] [INFO] cheese - inserting 1000 documents. first: Template:Sockpuppet category/error and last: Category:Exoplanet navigational boxes +[2018-02-13T08:34:53.738] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:34:53.766] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:34:53.779] [INFO] cheese - inserting 1000 documents. first: Category:Michigan Wolverines football coaches and last: Frustration Plantation +[2018-02-13T08:34:53.799] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian sports businesspeople and last: Wikipedia:Files for discussion/2016 April 11 +[2018-02-13T08:34:53.862] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:34:53.960] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:34:54.041] [INFO] cheese - inserting 1000 documents. first: House at 313 North Main Street and last: Deanna Pappas +[2018-02-13T08:34:54.061] [INFO] cheese - inserting 1000 documents. first: Template:PBB/23142 and last: Template:PBB/10307 +[2018-02-13T08:34:54.127] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:34:54.176] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:34:54.234] [INFO] cheese - inserting 1000 documents. first: Saline Creek and last: America's Secret War: Inside the Hidden Worldwide Struggle Between America and Its Enemies +[2018-02-13T08:34:54.251] [INFO] cheese - inserting 1000 documents. first: Feature-oriented scanning probe microscopy and last: Lilium pardalinum subsp. pitkinense +[2018-02-13T08:34:54.318] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:34:54.364] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:34:54.371] [INFO] cheese - inserting 1000 documents. first: Lean on Me (Kirk Franklin song) and last: 5-pyridoxate,NADPH:oxygen oxidoreductase (decyclizing) +[2018-02-13T08:34:54.398] [INFO] cheese - inserting 1000 documents. first: Category:Military installations of Cyprus and last: Broadway (band) +[2018-02-13T08:34:54.432] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:34:54.501] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:34:54.662] [INFO] cheese - inserting 1000 documents. first: Florida State Road 377 and last: Bolondo +[2018-02-13T08:34:54.688] [INFO] cheese - inserting 1000 documents. first: Template:PBB/10308 and last: Template:PBB/9063 +[2018-02-13T08:34:54.721] [INFO] cheese - inserting 1000 documents. first: Phthalate,NADH:oxygen oxidoreductase (4,5-hydroxylating) and last: S-adenozil-L-metionin:16S rRNA (cytidine1409-2'-O)-methyltransferase +[2018-02-13T08:34:54.740] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:34:54.779] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T08:34:54.805] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:34:54.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Seb Lester and last: Wasp 58 +[2018-02-13T08:34:54.843] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Birdy and last: Kelly Thiebaud +[2018-02-13T08:34:54.951] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:34:54.953] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:34:55.034] [INFO] cheese - inserting 1000 documents. first: Pont Nedd Fechan and last: Best Recording for Children +[2018-02-13T08:34:55.100] [INFO] cheese - inserting 1000 documents. first: S-adenozil-L-metionin:tRNA (guanine37-N1)-methyltransferase and last: ATP:ethanolamine O-phosphotransferase +[2018-02-13T08:34:55.116] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T08:34:55.132] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:34:55.281] [INFO] cheese - inserting 1000 documents. first: Jane (1916 film) and last: Template:TamilNadu-stub +[2018-02-13T08:34:55.380] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:34:55.418] [INFO] cheese - inserting 1000 documents. first: ATP:pseudouridine 5'-phosphotransferase and last: A-League transfers for 2016–17 season +[2018-02-13T08:34:55.450] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T08:34:55.471] [INFO] cheese - inserting 1000 documents. first: Hikari Rail Star (Shinkansen) and last: Richard Corbett +[2018-02-13T08:34:55.500] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9131 and last: Template:PBB/3735 +[2018-02-13T08:34:55.504] [INFO] cheese - inserting 1000 documents. first: Toolchains and last: Alawiyyin +[2018-02-13T08:34:55.551] [INFO] cheese - inserting 1000 documents. first: CCC Chuen Yuen College and last: Miklagård +[2018-02-13T08:34:55.580] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:34:55.599] [INFO] cheese - batch complete in: 1.861 secs +[2018-02-13T08:34:55.606] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:34:55.667] [INFO] cheese - inserting 1000 documents. first: Zermelo–Fraenkel axiomatization and last: Category:Universities in Malawi +[2018-02-13T08:34:55.679] [INFO] cheese - batch complete in: 0.938 secs +[2018-02-13T08:34:55.792] [INFO] cheese - inserting 1000 documents. first: Campagnola, Domenico and last: Tymor yr Heliwr +[2018-02-13T08:34:55.814] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:34:55.908] [INFO] cheese - inserting 1000 documents. first: Soccerstar (EP album) and last: Neil Lynch (disambiguation) +[2018-02-13T08:34:55.917] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:34:55.989] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:34:56.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/5150 (involuntary psychiatric hold) and last: Magpie, Victoria +[2018-02-13T08:34:56.155] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:34:56.320] [INFO] cheese - inserting 1000 documents. first: Template:PBB/3895 and last: Template:PBB/3347 +[2018-02-13T08:34:56.333] [INFO] cheese - inserting 1000 documents. first: PTVS and last: NWT Spruce Coupe +[2018-02-13T08:34:56.367] [INFO] cheese - inserting 1000 documents. first: Southern Beltway (Pittsburgh) and last: U.S. Route 9 Business (Jersey City, New Jersey) +[2018-02-13T08:34:56.387] [INFO] cheese - inserting 1000 documents. first: Morfe Forest and last: Monstersauria +[2018-02-13T08:34:56.387] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:34:56.405] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:34:56.474] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:34:56.510] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:34:56.552] [INFO] cheese - inserting 1000 documents. first: Derbyshire County Cricket Club in 1965 and last: Template:Ball State Cardinals football navbox +[2018-02-13T08:34:56.629] [INFO] cheese - inserting 1000 documents. first: Makuti-Kariba Highway and last: SubTile +[2018-02-13T08:34:56.676] [INFO] cheese - inserting 1000 documents. first: Dark desire and last: Theatre District, New York City +[2018-02-13T08:34:56.680] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:34:56.731] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:34:56.791] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:34:56.884] [INFO] cheese - inserting 1000 documents. first: 1995 Atlantic Hurricane season and last: Wikipedia:Articles for deletion/Median number +[2018-02-13T08:34:57.030] [INFO] cheese - inserting 1000 documents. first: Spruce Coupe and last: Do Sakhli +[2018-02-13T08:34:57.051] [INFO] cheese - batch complete in: 1.452 secs +[2018-02-13T08:34:57.073] [INFO] cheese - inserting 1000 documents. first: ATP phosphohydrolase (nucleosome-assembling) and last: Template:Did you know nominations/United States Senate election in Florida, 1950 +[2018-02-13T08:34:57.122] [INFO] cheese - inserting 1000 documents. first: Template:PBB/3595 and last: Independent Force +[2018-02-13T08:34:57.116] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:34:57.130] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T08:34:57.222] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:34:57.248] [INFO] cheese - inserting 1000 documents. first: Gillman v. Holmes County School District and last: Central Park, Utah +[2018-02-13T08:34:57.299] [INFO] cheese - inserting 1000 documents. first: U.S. Route 1 Business (Jersey City, New Jersey) and last: High Level/Footner Lake Water Aerodrome +[2018-02-13T08:34:57.349] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:34:57.374] [INFO] cheese - inserting 1000 documents. first: George R. Reeves and last: Sharath Gayakwad +[2018-02-13T08:34:57.416] [INFO] cheese - batch complete in: 0.942 secs +[2018-02-13T08:34:57.493] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:34:57.636] [INFO] cheese - inserting 1000 documents. first: L’Atalante and last: Category:British prisoners and detainees +[2018-02-13T08:34:57.664] [INFO] cheese - inserting 1000 documents. first: Do Salkhi and last: The Symbolic Life +[2018-02-13T08:34:57.669] [INFO] cheese - inserting 1000 documents. first: Moulders of Men and last: Hypercallia halobapta +[2018-02-13T08:34:57.705] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T08:34:57.723] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:34:57.729] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:34:57.745] [INFO] cheese - inserting 1000 documents. first: Template:PBB/2041 and last: Template:PBB/23085 +[2018-02-13T08:34:57.818] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T08:34:57.840] [INFO] cheese - inserting 1000 documents. first: Jet Star 2 - Coaster and last: Battle of Mingtiao +[2018-02-13T08:34:57.898] [INFO] cheese - inserting 1000 documents. first: File:Six Pack (Cover art) Front.jpg and last: List of Princesses Episodes +[2018-02-13T08:34:57.900] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T08:34:57.955] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:34:57.974] [INFO] cheese - inserting 1000 documents. first: CEK7 and last: Sir John Riddell, 13th Baronet +[2018-02-13T08:34:58.029] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:34:58.156] [INFO] cheese - inserting 1000 documents. first: Neeyane and last: Sunnistan +[2018-02-13T08:34:58.199] [INFO] cheese - inserting 1000 documents. first: Dkctf and last: Ghost Riders in the Sky (Slim Whitman album) +[2018-02-13T08:34:58.203] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:34:58.244] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Ram Narayan/archive2 and last: Wikipedia:WikiProject Spam/LinkReports/rhythmfmgoa881.yolasite.com +[2018-02-13T08:34:58.248] [INFO] cheese - inserting 1000 documents. first: 10 Hygiea and last: Jan, Count Zizka +[2018-02-13T08:34:58.267] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:34:58.273] [INFO] cheese - inserting 1000 documents. first: Campbell Funeral Church and last: Template:PBB/4722 +[2018-02-13T08:34:58.274] [INFO] cheese - inserting 1000 documents. first: Thomas Carroll (disambiguation) and last: Sassoon General Hospital +[2018-02-13T08:34:58.298] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T08:34:58.314] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class MonmouthpediA-related articles and last: Dioryctria okui +[2018-02-13T08:34:58.320] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:34:58.342] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:34:58.365] [INFO] cheese - batch complete in: 1.314 secs +[2018-02-13T08:34:58.380] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T08:34:58.532] [INFO] cheese - inserting 1000 documents. first: Colegio Mexico Bachillerato, A.C. and last: Nileshwar Railway Station +[2018-02-13T08:34:58.580] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T08:34:58.612] [INFO] cheese - inserting 1000 documents. first: File:Andrew Stevovich oil painting, Bus Stop, 2001, 24" x 24" .jpg and last: Category:1740 establishments in Prussia +[2018-02-13T08:34:58.632] [INFO] cheese - inserting 1000 documents. first: Attock District and last: Magnus Johansson +[2018-02-13T08:34:58.649] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T08:34:58.666] [INFO] cheese - inserting 1000 documents. first: Archbishop Sebouh Chouldjian and last: 1985 TANFL Season +[2018-02-13T08:34:58.727] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:34:58.736] [INFO] cheese - inserting 1000 documents. first: Category:Sevastopol and last: Burger vans +[2018-02-13T08:34:58.758] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T08:34:58.787] [INFO] cheese - inserting 1000 documents. first: Jaanimae and last: Template:PBB/11345 +[2018-02-13T08:34:58.791] [INFO] cheese - inserting 1000 documents. first: Rathcoole (Belfast) and last: Brazilian Remote Sensing Satellite +[2018-02-13T08:34:58.800] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:34:58.842] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T08:34:58.887] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:34:59.043] [INFO] cheese - inserting 1000 documents. first: Category:Bolivian people of Chilean descent and last: Template:Trinity Evangelical Divinity School +[2018-02-13T08:34:59.045] [INFO] cheese - inserting 1000 documents. first: AS Farcha and last: Adonim ha-Levi +[2018-02-13T08:34:59.089] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T08:34:59.132] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T08:34:59.243] [INFO] cheese - inserting 1000 documents. first: 1986 TFL Statewide League Season and last: Mattias Nilsson Jr. +[2018-02-13T08:34:59.270] [INFO] cheese - inserting 1000 documents. first: Taco trucks and last: Polynose +[2018-02-13T08:34:59.312] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:34:59.333] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:34:59.352] [INFO] cheese - inserting 1000 documents. first: Capitrol and last: Rogozarski AZR +[2018-02-13T08:34:59.382] [INFO] cheese - inserting 1000 documents. first: File:Federal Thunderbolt 1000.jpg and last: Paris by Night (song) +[2018-02-13T08:34:59.418] [INFO] cheese - inserting 1000 documents. first: Volutions Magazine and last: Moose Jaw Municipal Airport +[2018-02-13T08:34:59.448] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T08:34:59.459] [INFO] cheese - inserting 1000 documents. first: List of monastic houses on the Isle of Man and last: Wikipedia:Multilingual ranking April 2002 +[2018-02-13T08:34:59.520] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:34:59.539] [INFO] cheese - inserting 1000 documents. first: Chah Shuli and last: Mazra'eh-ye Tang Firuzi +[2018-02-13T08:34:59.559] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:34:59.661] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:34:59.681] [INFO] cheese - batch complete in: 1.316 secs +[2018-02-13T08:34:59.688] [INFO] cheese - inserting 1000 documents. first: Posoquerieae and last: Wikipedia:WikiProject Directory/Description/WikiProject Holidays/Christmas task force +[2018-02-13T08:34:59.873] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:35:00.005] [INFO] cheese - inserting 1000 documents. first: File:Vaptzarov-ship.jpg and last: Daisy-wheel typewriter +[2018-02-13T08:35:00.009] [INFO] cheese - inserting 1000 documents. first: File:Northmayfairbungalow.jpg and last: Arnold Lodge School +[2018-02-13T08:35:00.088] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:35:00.094] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:35:00.217] [INFO] cheese - inserting 1000 documents. first: Slovenian 2011 YouTube Affair and last: Fernanda de Freitas +[2018-02-13T08:35:00.240] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Tulayi and last: Slavery in Denmark +[2018-02-13T08:35:00.246] [INFO] cheese - inserting 1000 documents. first: Bourne Park (football ground) and last: Template:PBB/1175 +[2018-02-13T08:35:00.287] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:35:00.296] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:35:00.305] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:35:00.454] [INFO] cheese - inserting 1000 documents. first: Portal:German Empire/Selected article/8 and last: Women's rights in the Philippines +[2018-02-13T08:35:00.500] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:35:00.545] [INFO] cheese - inserting 1000 documents. first: CJS4 and last: TechCentralStation.com +[2018-02-13T08:35:00.568] [INFO] cheese - inserting 1000 documents. first: The Drop (Brian Eno album) and last: Anorthosis FC +[2018-02-13T08:35:00.600] [INFO] cheese - inserting 1000 documents. first: 16 Wishes and last: IPoDWDM +[2018-02-13T08:35:00.624] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:35:00.626] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:35:00.663] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Multilingual ranking March 2002 and last: Kolomenskoe +[2018-02-13T08:35:00.680] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:35:00.689] [INFO] cheese - inserting 1000 documents. first: Lina Carstens and last: 3-Hydroxytetrahydrofuran +[2018-02-13T08:35:00.697] [INFO] cheese - inserting 1000 documents. first: Phillip Jones of Fonmon and last: Mazra'eh-ye Darishak +[2018-02-13T08:35:00.741] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:35:00.744] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T08:35:00.751] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T08:35:00.814] [INFO] cheese - inserting 1000 documents. first: Second Reformed Dutch Church of Kingston and last: Obiecanowo, Kuyavian-Pomeranian Voivodeship +[2018-02-13T08:35:00.864] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:35:00.961] [INFO] cheese - inserting 1000 documents. first: Category:Politicians of African descent and last: Elpistostege watsoni +[2018-02-13T08:35:01.020] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:35:01.134] [INFO] cheese - inserting 1000 documents. first: Welawa-Bydgoszcz Treaty and last: File:Spinalthing.jpg +[2018-02-13T08:35:01.183] [INFO] cheese - inserting 1000 documents. first: Battersea power station in popular culture and last: Template:Taxonomy/Acer sect. Parviflora +[2018-02-13T08:35:01.191] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Dozdakuiyeh and last: Stenodes bipunctata +[2018-02-13T08:35:01.209] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:35:01.292] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:35:01.379] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:35:01.391] [INFO] cheese - inserting 1000 documents. first: Guy Bingham and last: Andrea Commodi +[2018-02-13T08:35:01.423] [INFO] cheese - inserting 1000 documents. first: Kiev City Council and last: Mobsters and Mormons +[2018-02-13T08:35:01.478] [INFO] cheese - inserting 1000 documents. first: Ośno, Żnin County and last: Template:PBB/56648 +[2018-02-13T08:35:01.511] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:35:01.520] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:35:01.570] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:35:01.623] [INFO] cheese - inserting 1000 documents. first: British Rail Class 717 and last: Preparatoria La Salle Simón Bolívar +[2018-02-13T08:35:01.675] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:35:01.741] [INFO] cheese - inserting 1000 documents. first: Aysén Region and last: Women's Basketball Hall of Fame +[2018-02-13T08:35:01.834] [INFO] cheese - batch complete in: 1.092 secs +[2018-02-13T08:35:01.873] [INFO] cheese - inserting 1000 documents. first: Sergei Valentinovich Novikov and last: Alfredo Travia +[2018-02-13T08:35:01.891] [INFO] cheese - inserting 1000 documents. first: Glasgow slum clearance and last: Evergreen, Alberta +[2018-02-13T08:35:01.916] [INFO] cheese - inserting 1000 documents. first: Maljukgeori janhoksa and last: Phalonia corsicana +[2018-02-13T08:35:01.952] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:35:01.982] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:35:01.990] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:35:02.041] [INFO] cheese - inserting 1000 documents. first: Bachelor (disambiguation) and last: Phillip Furtwangler +[2018-02-13T08:35:02.167] [INFO] cheese - inserting 1000 documents. first: Ḵaasda Héen and last: Neil Tobin +[2018-02-13T08:35:02.189] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:35:02.260] [INFO] cheese - inserting 1000 documents. first: Category:Châteaux in Oise and last: Class AB amplifiers +[2018-02-13T08:35:02.260] [INFO] cheese - inserting 1000 documents. first: Preparatoria La Salle Simon Bolivar and last: Bischoff, Douglas G. +[2018-02-13T08:35:02.293] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:35:02.346] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:35:02.352] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:35:02.464] [INFO] cheese - inserting 1000 documents. first: Conchylis austrinana and last: Amir Salar-e Sar Tang +[2018-02-13T08:35:02.482] [INFO] cheese - inserting 1000 documents. first: James Lyons (admiral) and last: Carl Anschutz +[2018-02-13T08:35:02.510] [INFO] cheese - inserting 1000 documents. first: Garth, Alberta and last: Greek legislative election, 1895 +[2018-02-13T08:35:02.608] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:35:02.648] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:35:02.708] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:35:02.752] [INFO] cheese - inserting 1000 documents. first: Picard existence theorem and last: Category:Reformed Presbyterian Church (denomination) +[2018-02-13T08:35:02.807] [INFO] cheese - inserting 1000 documents. first: Madam Rosmerta and last: Unia Wolnosci +[2018-02-13T08:35:02.849] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:35:02.971] [INFO] cheese - inserting 1000 documents. first: A Presentation of Progressive Jazz and last: Banco Serfín +[2018-02-13T08:35:02.980] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:35:03.037] [INFO] cheese - inserting 1000 documents. first: Muhacir and last: Tunbridge Wells Girls Grammar School +[2018-02-13T08:35:03.050] [INFO] cheese - inserting 1000 documents. first: Category:Altensteig and last: Bodley (library) +[2018-02-13T08:35:03.107] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:35:03.186] [INFO] cheese - batch complete in: 0.893 secs +[2018-02-13T08:35:03.194] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:35:03.310] [INFO] cheese - inserting 1000 documents. first: Chant Noël: Chants For The Holiday Season and last: Category:Diving Universiade champions navigational boxes +[2018-02-13T08:35:03.312] [INFO] cheese - inserting 1000 documents. first: Kushk-i-Sartang and last: Animals in Thai folklore +[2018-02-13T08:35:03.360] [INFO] cheese - inserting 1000 documents. first: Milo Rimbaldi and last: Srbski +[2018-02-13T08:35:03.384] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:35:03.390] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:35:03.468] [INFO] cheese - inserting 1000 documents. first: Bhai kahn Singh Nabha and last: Category:Fictional shapeshifters +[2018-02-13T08:35:03.511] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:35:03.519] [INFO] cheese - inserting 1000 documents. first: Granman and last: Bangor (airport) +[2018-02-13T08:35:03.555] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:35:03.598] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:35:03.878] [INFO] cheese - inserting 1000 documents. first: Bangui M'Poko (airport) and last: The Nor'-westers +[2018-02-13T08:35:03.881] [INFO] cheese - inserting 1000 documents. first: Category:Swimming Universiade champions navigational boxes and last: Divisional Secretariats of Uva Province +[2018-02-13T08:35:03.965] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T08:35:03.984] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:35:03.996] [INFO] cheese - inserting 1000 documents. first: File:7 Sinz.jpg and last: Robert Fechner +[2018-02-13T08:35:04.045] [INFO] cheese - inserting 1000 documents. first: File:ThomasMansfield Logo.jpg and last: Category:1985 in New Mexico +[2018-02-13T08:35:04.056] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:35:04.083] [INFO] cheese - inserting 1000 documents. first: Category:Social issues and last: Wikipedia:Arbitration Committee Elections January 2006 Vote/Vote Tznkai +[2018-02-13T08:35:04.097] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:35:04.123] [INFO] cheese - inserting 1000 documents. first: Eunomia family and last: Multiplicity (film) +[2018-02-13T08:35:04.204] [INFO] cheese - batch complete in: 1.017 secs +[2018-02-13T08:35:04.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of The Fairly OddParents DVD and VHS and last: Radiological fallout +[2018-02-13T08:35:04.265] [INFO] cheese - inserting 1000 documents. first: Pete Wentz (musician) and last: Julius Butty +[2018-02-13T08:35:04.264] [INFO] cheese - batch complete in: 1.284 secs +[2018-02-13T08:35:04.353] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:35:04.386] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:35:04.546] [INFO] cheese - inserting 1000 documents. first: Nattapon Malapun and last: Category:Buddhism in Karnataka +[2018-02-13T08:35:04.630] [INFO] cheese - inserting 1000 documents. first: Zarat, Iran and last: File:Showbiz Police 2014 Titlecard.jpg +[2018-02-13T08:35:04.633] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:35:04.634] [INFO] cheese - inserting 1000 documents. first: Divisional Secretariats of Sabaragamuwa Province and last: Glossary of New Thought terms +[2018-02-13T08:35:04.640] [INFO] cheese - inserting 1000 documents. first: List of Sega Genesis & Sega Mega Drive Games and last: Love Italian Style (film) +[2018-02-13T08:35:04.736] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:35:04.736] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:35:04.744] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:35:04.921] [INFO] cheese - inserting 1000 documents. first: File:Torchy the Battery Boy titlescreen.jpg and last: Total hemolytic complement +[2018-02-13T08:35:04.976] [INFO] cheese - inserting 1000 documents. first: Cool World soundtrack and last: Gave d'Ossau +[2018-02-13T08:35:04.986] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:35:05.053] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:35:05.095] [INFO] cheese - inserting 1000 documents. first: St Mary's Church, Llanfairpwll and last: Sister Luisa Capomazza +[2018-02-13T08:35:05.145] [INFO] cheese - inserting 1000 documents. first: Cacl2 and last: ∇ +[2018-02-13T08:35:05.150] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:35:05.252] [INFO] cheese - inserting 1000 documents. first: Portal:Nick and last: Template:2012 CIFL Standings +[2018-02-13T08:35:05.255] [INFO] cheese - inserting 1000 documents. first: Sonoma State Seawolves baseball and last: Category:1671 in New Spain +[2018-02-13T08:35:05.279] [INFO] cheese - inserting 1000 documents. first: 17th Earl of Oxford, Lord Bulbeck and last: Kármán line +[2018-02-13T08:35:05.282] [INFO] cheese - inserting 1000 documents. first: 1st Man in Space and last: Corporate Dealmaker +[2018-02-13T08:35:05.290] [INFO] cheese - batch complete in: 1.086 secs +[2018-02-13T08:35:05.319] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:35:05.344] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:35:05.396] [INFO] cheese - batch complete in: 1.132 secs +[2018-02-13T08:35:05.408] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:35:05.502] [INFO] cheese - inserting 1000 documents. first: File:Xtro2.jpg and last: Category:Gibraltarian diaspora +[2018-02-13T08:35:05.612] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:35:05.669] [INFO] cheese - inserting 1000 documents. first: Impallomeni and last: Thomas Pearson Moody +[2018-02-13T08:35:05.676] [INFO] cheese - inserting 1000 documents. first: Mandolin Concerto and last: David Kennedy (advertising) +[2018-02-13T08:35:05.751] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:35:05.792] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:35:05.863] [INFO] cheese - inserting 1000 documents. first: Category:1671 in Spain and last: Weird Loners +[2018-02-13T08:35:05.888] [INFO] cheese - inserting 1000 documents. first: Loveless (comic book) and last: Arapi +[2018-02-13T08:35:05.952] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:35:05.993] [INFO] cheese - inserting 1000 documents. first: Gent Go-Go Rollergirls and last: Category:Pacific Games +[2018-02-13T08:35:06.013] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:35:06.055] [INFO] cheese - inserting 1000 documents. first: Archer season 7 and last: Awards and nominations received by Rita Ora +[2018-02-13T08:35:06.087] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T08:35:06.106] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:35:06.244] [INFO] cheese - inserting 1000 documents. first: Porn in the Philippines and last: HVDC Mechanicville-Schenectady +[2018-02-13T08:35:06.250] [INFO] cheese - inserting 1000 documents. first: Prince William of Hesse-Kassel and last: File:Live in Concert (Najwa Karam album).jpg +[2018-02-13T08:35:06.337] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:35:06.349] [INFO] cheese - inserting 1000 documents. first: Charles Onyango Obbo and last: Link edit +[2018-02-13T08:35:06.367] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:35:06.373] [INFO] cheese - inserting 1000 documents. first: St Neots Priory and last: Vladimir Propp +[2018-02-13T08:35:06.399] [INFO] cheese - inserting 1000 documents. first: Laddivadi railway station and last: Get You Back (Mayer Hawthorne song) +[2018-02-13T08:35:06.400] [INFO] cheese - inserting 1000 documents. first: Category:Flora of Shandong and last: Leucanopsis obvia +[2018-02-13T08:35:06.424] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T08:35:06.453] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:35:06.462] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:35:06.488] [INFO] cheese - batch complete in: 1.091 secs +[2018-02-13T08:35:06.579] [INFO] cheese - inserting 1000 documents. first: File:Primer 55 - Family for Life.jpg and last: Category:National Youth Competition seasons +[2018-02-13T08:35:06.588] [INFO] cheese - inserting 1000 documents. first: William Passmore (boxer) and last: Frankie Odell +[2018-02-13T08:35:06.675] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:35:06.674] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:35:06.919] [INFO] cheese - inserting 1000 documents. first: Out of Pocket (song) and last: Sindh Rangers +[2018-02-13T08:35:06.924] [INFO] cheese - inserting 1000 documents. first: George Consider Hale and last: Template:Attached KML/New York State Route 189 +[2018-02-13T08:35:06.969] [INFO] cheese - inserting 1000 documents. first: Template:Infobox road/link/GBR and last: Cow shit +[2018-02-13T08:35:07.001] [INFO] cheese - inserting 1000 documents. first: File:SSI-0.PNG and last: Lan (given name) +[2018-02-13T08:35:07.043] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:35:07.048] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:35:07.050] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:35:07.093] [INFO] cheese - inserting 1000 documents. first: Robert F. Fairlie and last: James McCoy (politician) +[2018-02-13T08:35:07.088] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:35:07.211] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:35:07.228] [INFO] cheese - inserting 1000 documents. first: China–Pakistan Free Trade Agreement and last: Primacy of the Roman pontiff +[2018-02-13T08:35:07.307] [INFO] cheese - inserting 1000 documents. first: Scott Bradley (politician) and last: Kabuli kikar +[2018-02-13T08:35:07.310] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:35:07.325] [INFO] cheese - inserting 1000 documents. first: USS California (SP-647) and last: Bibliography of Prem Rawat +[2018-02-13T08:35:07.326] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T08:35:07.419] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:35:07.490] [INFO] cheese - inserting 1000 documents. first: William E. Colby and last: A Tale of Two Cities (1935) +[2018-02-13T08:35:07.589] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:35:07.627] [INFO] cheese - inserting 1000 documents. first: Liberal Democrat Members of Parliament in London and last: Rik Makarem +[2018-02-13T08:35:07.733] [INFO] cheese - inserting 1000 documents. first: Ralph Bernard and last: Wikipedia:Articles for deletion/List of fashion photographers +[2018-02-13T08:35:07.733] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:35:07.784] [INFO] cheese - inserting 1000 documents. first: Medieval Catalan and last: Emily Arnesen +[2018-02-13T08:35:07.819] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:35:07.835] [INFO] cheese - inserting 1000 documents. first: An Old Man and His Grandson and last: Zenith CH640 +[2018-02-13T08:35:07.933] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:35:07.955] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:35:08.014] [INFO] cheese - inserting 1000 documents. first: 3rd Golden Globe Awards and last: Wikipedia:Articles for deletion/Qincheng Prison +[2018-02-13T08:35:08.048] [INFO] cheese - inserting 1000 documents. first: Vilayati babul and last: Category:Paintings by Hendrick Avercamp +[2018-02-13T08:35:08.093] [INFO] cheese - inserting 1000 documents. first: Töpfer and last: Sun girl +[2018-02-13T08:35:08.133] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:35:08.137] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:35:08.167] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T08:35:08.345] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Fatwhales and last: Jacob`s Ladder +[2018-02-13T08:35:08.348] [INFO] cheese - inserting 1000 documents. first: Category:Icebreakers of Germany and last: (231665) 7602 P-L +[2018-02-13T08:35:08.405] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:35:08.424] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:35:08.499] [INFO] cheese - inserting 1000 documents. first: Hoosier North Athletic Conference and last: Masters M85 100 metres world record progression +[2018-02-13T08:35:08.607] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:35:08.644] [INFO] cheese - inserting 1000 documents. first: Software Automatic Mouth and last: Garden centre +[2018-02-13T08:35:08.659] [INFO] cheese - inserting 1000 documents. first: Cyclone Carmen (1971) and last: Wikipedia:WikiProject Spam/LinkReports/dichvuseo.n.nu +[2018-02-13T08:35:08.757] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:35:08.762] [INFO] cheese - inserting 1000 documents. first: Lapshina and last: 32nd Antiaircraft Artillery Brigade +[2018-02-13T08:35:08.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of best-selling albums in the United States and last: Lovelock +[2018-02-13T08:35:08.775] [INFO] cheese - inserting 1000 documents. first: Timok Mouth and last: The Long Goodbye (Stargate Atlantis) +[2018-02-13T08:35:08.821] [INFO] cheese - batch complete in: 1.225 secs +[2018-02-13T08:35:08.915] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:35:08.883] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:35:08.956] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:35:09.029] [INFO] cheese - inserting 1000 documents. first: Category:Education in Kingston upon Hull and last: Fushengzhuang Railway Station +[2018-02-13T08:35:09.089] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:35:09.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe Prissel and last: Throat microphone +[2018-02-13T08:35:09.180] [INFO] cheese - inserting 1000 documents. first: Ecomonic and last: Halisidota lacteogrisea +[2018-02-13T08:35:09.182] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:35:09.262] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:35:09.332] [INFO] cheese - inserting 1000 documents. first: Papilio soratensis and last: Méndez Núñez +[2018-02-13T08:35:09.365] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:35:09.433] [INFO] cheese - inserting 1000 documents. first: А. П. Прудников and last: Niels Winther Poulsen +[2018-02-13T08:35:09.456] [INFO] cheese - inserting 1000 documents. first: WKDO (AM) and last: Category:Start-Class Tropical cyclone season articles +[2018-02-13T08:35:09.476] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:35:09.481] [INFO] cheese - inserting 1000 documents. first: Personal Aides de Camp to The Queen and last: Checkmate (DC Comics) +[2018-02-13T08:35:09.481] [INFO] cheese - inserting 1000 documents. first: Anju Railway Station and last: Junior e Leonardo +[2018-02-13T08:35:09.498] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:35:09.524] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T08:35:09.562] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:35:09.646] [INFO] cheese - inserting 1000 documents. first: SpaceShipOne flight 13P and last: Edhom +[2018-02-13T08:35:09.684] [INFO] cheese - inserting 1000 documents. first: Sabir Ali (politician) and last: Sakhteman-e Hajj Parviz +[2018-02-13T08:35:09.703] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:35:09.714] [INFO] cheese - inserting 1000 documents. first: File:Psilocybe.tampanensis.two.jpg and last: Kostas Giannidis +[2018-02-13T08:35:09.750] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T08:35:09.756] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T08:35:09.892] [INFO] cheese - inserting 1000 documents. first: File:KateRyanUR My Love.jpeg and last: Der Weibsteufel (1966 film) +[2018-02-13T08:35:09.901] [INFO] cheese - inserting 1000 documents. first: List of mosques in Senegal and last: SSAU (disambiguation) +[2018-02-13T08:35:09.903] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Tropical cyclone season articles and last: 1-random real +[2018-02-13T08:35:09.933] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T08:35:09.946] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:35:09.978] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:35:10.023] [INFO] cheese - inserting 1000 documents. first: Briggs Program and last: Road manager +[2018-02-13T08:35:10.131] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:35:10.184] [INFO] cheese - inserting 1000 documents. first: Sehtolan, Kazerun and last: Category:American film people +[2018-02-13T08:35:10.206] [INFO] cheese - inserting 1000 documents. first: Lisa Yee and last: LaDell Andersen +[2018-02-13T08:35:10.258] [INFO] cheese - inserting 1000 documents. first: WRKZ and last: Andreja Gomboc +[2018-02-13T08:35:10.265] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:35:10.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/electroniccigarettenow.net and last: Pearson College (United Kingdom) +[2018-02-13T08:35:10.336] [INFO] cheese - batch complete in: 1.154 secs +[2018-02-13T08:35:10.373] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:35:10.439] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:35:10.563] [INFO] cheese - inserting 1000 documents. first: Foulfellow and Gideon and last: Template:Afd footer (multiple)/doc +[2018-02-13T08:35:10.615] [INFO] cheese - inserting 1000 documents. first: Kwak Yoon-gy and last: John Howell Collier +[2018-02-13T08:35:10.655] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/2008 UAW-Dodge 400 and last: League for Political Education +[2018-02-13T08:35:10.669] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:35:10.673] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:35:10.730] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:35:10.778] [INFO] cheese - inserting 1000 documents. first: Flynn and last: Wikipedia:Categories for deletion/Log/2006 January 11 +[2018-02-13T08:35:10.785] [INFO] cheese - inserting 1000 documents. first: Gemini Cain and last: Thalesa parva +[2018-02-13T08:35:10.833] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:35:10.849] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:35:10.880] [INFO] cheese - inserting 1000 documents. first: Croftland, Alberta and last: Emilia Turei +[2018-02-13T08:35:10.885] [INFO] cheese - inserting 1000 documents. first: Pal chaudhury high school and last: Peñacerrada +[2018-02-13T08:35:10.922] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:35:10.941] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:35:11.094] [INFO] cheese - inserting 1000 documents. first: Brandau (surname) and last: Category:Actors from Kyoto Prefecture +[2018-02-13T08:35:11.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chicago Engineering Design Team and last: Shakespeare & Company (Massachusetts) +[2018-02-13T08:35:11.099] [INFO] cheese - inserting 1000 documents. first: Super Deformed and last: Franklin MacVeagh +[2018-02-13T08:35:11.121] [INFO] cheese - inserting 1000 documents. first: Papular eruption of blacks and last: Category:Treaties entered into force in 1955 +[2018-02-13T08:35:11.140] [INFO] cheese - batch complete in: 0.409 secs +[2018-02-13T08:35:11.152] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:35:11.165] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:35:11.190] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:35:11.205] [INFO] cheese - inserting 1000 documents. first: Halisidota albipuncta and last: Japanese destroyer Yamayuki (DD-129) +[2018-02-13T08:35:11.263] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T08:35:11.334] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Indian people by community and last: Wilbert (bishop) +[2018-02-13T08:35:11.347] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gunged and last: Indiana-Purdue University Fort Wayne +[2018-02-13T08:35:11.357] [INFO] cheese - inserting 1000 documents. first: Bundesministerium für Familie, Senioren, Frauen und Jugend and last: Vilho Luolajan Mikkola +[2018-02-13T08:35:11.393] [INFO] cheese - inserting 1000 documents. first: Category:Ugly Leaders albums and last: Roman Catholic dioceses in Haiti +[2018-02-13T08:35:11.391] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:35:11.412] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:35:11.415] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:35:11.464] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T08:35:11.535] [INFO] cheese - inserting 1000 documents. first: Foreign aid to Syria and last: Patterson House (Larned, Kansas) +[2018-02-13T08:35:11.569] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T08:35:11.636] [INFO] cheese - inserting 1000 documents. first: I Do (Jewel song) and last: Harry Graham +[2018-02-13T08:35:11.650] [INFO] cheese - inserting 1000 documents. first: Mordekhay and last: Emaanuel de Witte +[2018-02-13T08:35:11.670] [INFO] cheese - inserting 1000 documents. first: NRK P13 and last: Laurenţiu Streza +[2018-02-13T08:35:11.729] [INFO] cheese - inserting 1000 documents. first: Roman Catholic dioceses in Honduras and last: Hamtaro (series) +[2018-02-13T08:35:11.737] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:35:11.739] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:35:11.740] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:35:11.853] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T08:35:11.922] [INFO] cheese - inserting 1000 documents. first: File:Tamil Virtual University.jpg and last: Sir Olivers Song +[2018-02-13T08:35:11.931] [INFO] cheese - inserting 1000 documents. first: Oculinidae and last: Warpes +[2018-02-13T08:35:11.986] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:35:11.996] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:35:12.083] [INFO] cheese - inserting 1000 documents. first: Template:User browser:Any other browser than Microsoft Internet Explorer and last: Main sequence star +[2018-02-13T08:35:12.101] [INFO] cheese - inserting 1000 documents. first: Chateau de Beggen and last: Sava Mutkurov +[2018-02-13T08:35:12.131] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:35:12.166] [INFO] cheese - inserting 1000 documents. first: TasRail TR class and last: Chengdu Tianfu International Airport +[2018-02-13T08:35:12.171] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:35:12.213] [INFO] cheese - inserting 1000 documents. first: Stemness and last: Wikipedia:Village pump (policy)/Archive 127 +[2018-02-13T08:35:12.227] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T08:35:12.259] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/KC Panchal and last: The Decision (song) +[2018-02-13T08:35:12.269] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T08:35:12.320] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:35:12.352] [INFO] cheese - inserting 1000 documents. first: Tehues and last: Tamara Bull +[2018-02-13T08:35:12.399] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T08:35:12.425] [INFO] cheese - inserting 1000 documents. first: Arboleas and last: The Tale of Kieu +[2018-02-13T08:35:12.512] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:35:12.525] [INFO] cheese - inserting 1000 documents. first: Wilbert Jones and last: South Saddle Mountain +[2018-02-13T08:35:12.596] [INFO] cheese - inserting 1000 documents. first: * (disambiguation) and last: Sedes (band) +[2018-02-13T08:35:12.606] [INFO] cheese - inserting 1000 documents. first: Louisiana gubernatorial election, 1963-64 and last: Pickens County Airport (Georgia) +[2018-02-13T08:35:12.624] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:35:12.633] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:35:12.653] [INFO] cheese - inserting 1000 documents. first: Number Seven (Will Hoge album) and last: Wikipedia:Sockpuppet investigations/Trfc06/Archive +[2018-02-13T08:35:12.679] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:35:12.723] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:35:12.728] [INFO] cheese - inserting 1000 documents. first: Pioneer Oil Company Filling Station and last: Category:Albums produced by Rémi Gallego +[2018-02-13T08:35:12.786] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:35:12.838] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Sępólno Krajeńskie and last: Amujan +[2018-02-13T08:35:12.888] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:35:13.015] [INFO] cheese - inserting 1000 documents. first: Pennsylvania House of Representatives, District 4 and last: Duranavir +[2018-02-13T08:35:13.087] [INFO] cheese - inserting 1000 documents. first: Abdrabuh Mansur Hadi and last: Marcus lewis +[2018-02-13T08:35:13.094] [INFO] cheese - inserting 1000 documents. first: State Highway 9 (Kerala) and last: Category:Romanesque Revival architecture in Texas +[2018-02-13T08:35:13.122] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:35:13.146] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:35:13.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Sslib/Archive and last: ACB Player of the Month Award +[2018-02-13T08:35:13.195] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:35:13.247] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:35:13.299] [INFO] cheese - inserting 1000 documents. first: USS Plunger (SS-2) and last: Majority Leader of the House of Representatives +[2018-02-13T08:35:13.356] [INFO] cheese - inserting 1000 documents. first: Freiburg Minster and last: Computer-generated-imagery +[2018-02-13T08:35:13.367] [INFO] cheese - inserting 1000 documents. first: Template:PVésubie and last: Wikipedia:Articles for deletion/2007-08 Lancashire FA Challenge Trophy +[2018-02-13T08:35:13.378] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:35:13.389] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/FlyDubai and last: List of European Union member states by population +[2018-02-13T08:35:13.421] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:35:13.430] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:35:13.463] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:35:13.612] [INFO] cheese - inserting 1000 documents. first: Category:Romanesque Revival architecture in Virginia and last: Farage +[2018-02-13T08:35:13.642] [INFO] cheese - inserting 1000 documents. first: Baneservice and last: Khudadad +[2018-02-13T08:35:13.665] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:35:13.710] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:35:13.764] [INFO] cheese - inserting 1000 documents. first: Emad Deh Rural District and last: Template:Database Population Aramits +[2018-02-13T08:35:13.777] [INFO] cheese - inserting 1000 documents. first: Theodore Joyce and last: Wikipedia:Articles for deletion/List of asteroids/120901-121000 +[2018-02-13T08:35:13.819] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:35:13.830] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T08:35:13.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Harvestmen Macro and last: Category:Members of the Frankfurt Parliament +[2018-02-13T08:35:13.946] [INFO] cheese - inserting 1000 documents. first: Alexander Nisbet and last: Kishi Asako +[2018-02-13T08:35:13.973] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:35:14.021] [INFO] cheese - inserting 1000 documents. first: Yoojimboo (movie) and last: Parthenon marbles +[2018-02-13T08:35:14.032] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:35:14.089] [INFO] cheese - inserting 1000 documents. first: Proto-Austroasiatic language and last: Wikipedia:Articles for deletion/Moldova-South Korea relations +[2018-02-13T08:35:14.118] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:35:14.122] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T08:35:14.162] [INFO] cheese - inserting 1000 documents. first: Chanchamayo FC and last: Wikipedia:Administrators' noticeboard/IncidentArchive599 +[2018-02-13T08:35:14.273] [INFO] cheese - inserting 1000 documents. first: File:BirminghamCorpHydrant.jpg and last: Altinkum +[2018-02-13T08:35:14.294] [INFO] cheese - inserting 1000 documents. first: Category:Intellectual property adjudication bodies and last: Template:WikiProject Latin America/testcases +[2018-02-13T08:35:14.300] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:35:14.365] [INFO] cheese - inserting 1000 documents. first: Daniela Escobar and last: Gudarzi +[2018-02-13T08:35:14.367] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:35:14.435] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:35:14.512] [INFO] cheese - batch complete in: 1.317 secs +[2018-02-13T08:35:14.600] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/Byzantine-Arab Wars (780-1180)/1 and last: Aragami (video game) +[2018-02-13T08:35:14.641] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T08:35:14.700] [INFO] cheese - inserting 1000 documents. first: Alexander Vorobyov and last: File:Manhattan 1 20 025.jpg +[2018-02-13T08:35:14.714] [INFO] cheese - inserting 1000 documents. first: Chukotian languages and last: College of fine arts +[2018-02-13T08:35:14.753] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:35:14.755] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:35:14.840] [INFO] cheese - inserting 1000 documents. first: CVB 42 and last: Edmonton Beverly-Clareview +[2018-02-13T08:35:14.855] [INFO] cheese - inserting 1000 documents. first: File:George Formby with friends - April 1915.JPG and last: File:The Stranglers and Friends - Live in Concert.jpg +[2018-02-13T08:35:14.855] [INFO] cheese - inserting 1000 documents. first: Rick Waugh (Canadian) and last: Qal'eh Gach Giran +[2018-02-13T08:35:14.874] [INFO] cheese - inserting 1000 documents. first: Gstreamer and last: Samuel C. Hyde +[2018-02-13T08:35:14.880] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T08:35:14.881] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:35:14.901] [INFO] cheese - inserting 1000 documents. first: File:Adam Hills in Gordon Street Tonight logo.jpg and last: Dernier domicile connu +[2018-02-13T08:35:14.907] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:35:14.929] [INFO] cheese - inserting 1000 documents. first: Robert Smith (baseball) and last: Air tide +[2018-02-13T08:35:14.947] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:35:14.971] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T08:35:15.014] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:35:15.131] [INFO] cheese - inserting 1000 documents. first: File:Djevara band 2008.jpg and last: Kenny Baysmore +[2018-02-13T08:35:15.164] [INFO] cheese - inserting 1000 documents. first: File:UW-Superior logo.png and last: Template:1939-40 in European Football (UEFA) +[2018-02-13T08:35:15.165] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T08:35:15.176] [INFO] cheese - inserting 1000 documents. first: William Mattice and last: Staedterdorf +[2018-02-13T08:35:15.203] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T08:35:15.228] [INFO] cheese - inserting 1000 documents. first: Qal'eh-ye Kajgiran and last: Ab Naru, Mamasani +[2018-02-13T08:35:15.247] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T08:35:15.299] [INFO] cheese - batch complete in: 0.392 secs +[2018-02-13T08:35:15.317] [INFO] cheese - inserting 1000 documents. first: Category:Croatian Ice Hockey League seasons and last: Mikolaj Marek Dowgielewicz +[2018-02-13T08:35:15.360] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T08:35:15.449] [INFO] cheese - inserting 1000 documents. first: Fast Romantics and last: Category:Princesses of Carignan +[2018-02-13T08:35:15.461] [INFO] cheese - inserting 1000 documents. first: Atmospheric oscillation and last: Argeos +[2018-02-13T08:35:15.522] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:35:15.535] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:35:15.580] [INFO] cheese - inserting 1000 documents. first: Esteé Lauder and last: China (Vangelis album) +[2018-02-13T08:35:15.621] [INFO] cheese - inserting 1000 documents. first: Captain Cook's Pine and last: File:HappyEndingsPoster.jpg +[2018-02-13T08:35:15.670] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:35:15.685] [INFO] cheese - inserting 1000 documents. first: Template:1933-34 Big Ten Conference men's basketball standings and last: Template:1963-64 NHL season by team +[2018-02-13T08:35:15.690] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:35:15.846] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:35:15.862] [INFO] cheese - inserting 1000 documents. first: Abgasht-e Madui and last: Category:Lists of women Twenty20 International cricketers +[2018-02-13T08:35:15.934] [INFO] cheese - inserting 1000 documents. first: Pangi Territory and last: 2012 Copa Inca +[2018-02-13T08:35:15.933] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:35:16.001] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in Ecuador and last: File:RogerWithFriends.jpg +[2018-02-13T08:35:16.042] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:35:16.117] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:35:16.259] [INFO] cheese - inserting 1000 documents. first: The Price of Fame:Tv Series and last: Valverde (province) +[2018-02-13T08:35:16.314] [INFO] cheese - inserting 1000 documents. first: Romano Galvani and last: The Lenox Hotel +[2018-02-13T08:35:16.339] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:35:16.343] [INFO] cheese - inserting 1000 documents. first: Jimmy Whitehouse and last: Woking Muslim Mission +[2018-02-13T08:35:16.363] [INFO] cheese - inserting 1000 documents. first: Frank Freda and last: Template:1962-63 in Spanish football +[2018-02-13T08:35:16.388] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:35:16.423] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:35:16.468] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:35:16.488] [INFO] cheese - inserting 1000 documents. first: Yanaimalai hills and last: 1925 Iowa Hawkeyes football team +[2018-02-13T08:35:16.582] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:35:16.663] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Clan/doc and last: Same-sex civil unions in the united states +[2018-02-13T08:35:16.753] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:35:16.806] [INFO] cheese - inserting 1000 documents. first: Template:1964-69 Sports Illustrated Swimsuit and last: Malovic +[2018-02-13T08:35:16.807] [INFO] cheese - inserting 1000 documents. first: Pieter van der Hurk and last: Palmayra Atoll +[2018-02-13T08:35:16.843] [INFO] cheese - batch complete in: 0.408 secs +[2018-02-13T08:35:16.874] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:35:16.960] [INFO] cheese - inserting 1000 documents. first: Ice cream headache and last: R. Pacheco +[2018-02-13T08:35:16.966] [INFO] cheese - inserting 1000 documents. first: Trusham and last: City and Borough of Sitka, Alaska +[2018-02-13T08:35:17.005] [INFO] cheese - inserting 1000 documents. first: Fano's lemma and last: Archdiocese of Potenza-Muro Lucano-Marsico Nuovo +[2018-02-13T08:35:17.016] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:35:17.044] [INFO] cheese - inserting 1000 documents. first: Climate change delusion and last: Clifford Constitution +[2018-02-13T08:35:17.087] [INFO] cheese - inserting 1000 documents. first: Badamak, Fars and last: File:The Movies original lineup.jpg +[2018-02-13T08:35:17.097] [INFO] cheese - batch complete in: 1.427 secs +[2018-02-13T08:35:17.114] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:35:17.140] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:35:17.174] [INFO] cheese - inserting 1000 documents. first: List of AAA World Cruiserweight Champions and last: Provelosaurus +[2018-02-13T08:35:17.183] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:35:17.215] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:35:17.285] [INFO] cheese - inserting 1000 documents. first: File:Kinetic by Joel Vaughn.jpg and last: Template:2010-11 Division I independents standings (men)/doc +[2018-02-13T08:35:17.326] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:35:17.425] [INFO] cheese - inserting 1000 documents. first: Orwell (disambiguation) and last: Macintosh User Groups in the UK +[2018-02-13T08:35:17.488] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:35:17.512] [INFO] cheese - inserting 1000 documents. first: Samten Migdron and last: Pale Pinion +[2018-02-13T08:35:17.524] [INFO] cheese - inserting 1000 documents. first: Template:2010-11 CCHA standings (men) and last: 1114 AD +[2018-02-13T08:35:17.530] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Joplin Demize and last: Zofia Filip +[2018-02-13T08:35:17.542] [INFO] cheese - inserting 1000 documents. first: Philip Sargant Florence and last: Filthy Rich (TV series) +[2018-02-13T08:35:17.543] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T08:35:17.589] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T08:35:17.592] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:35:17.609] [INFO] cheese - inserting 1000 documents. first: John Thomas Seton and last: Housing Project (album) +[2018-02-13T08:35:17.611] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T08:35:17.694] [INFO] cheese - inserting 1000 documents. first: Euro Taillights and last: Portal:Food/Selected person/12 +[2018-02-13T08:35:17.712] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:35:17.772] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T08:35:17.845] [INFO] cheese - inserting 1000 documents. first: 1115 AD and last: Template:2011-12 NCAA Division I FBS football conferences +[2018-02-13T08:35:17.860] [INFO] cheese - inserting 1000 documents. first: Bush administration (2000) and last: Category:Satirical television programmes +[2018-02-13T08:35:17.877] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T08:35:18.064] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:35:18.247] [INFO] cheese - inserting 1000 documents. first: Template:2011-12 Mountain West Conference men's basketball standings and last: Template:2013-14 Big West men's basketball standings +[2018-02-13T08:35:18.268] [INFO] cheese - inserting 1000 documents. first: Darreh Chapi, Lorestan and last: File:AT&T logo.svg +[2018-02-13T08:35:18.273] [INFO] cheese - inserting 1000 documents. first: We are fed up and last: Saltarelli +[2018-02-13T08:35:18.273] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T08:35:18.289] [INFO] cheese - inserting 1000 documents. first: Notocrypta feisthamelii and last: Ruby Ross Wood +[2018-02-13T08:35:18.318] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Writing your first article and last: FELDA +[2018-02-13T08:35:18.321] [INFO] cheese - inserting 1000 documents. first: That Same Old Feeling and last: Beacom College +[2018-02-13T08:35:18.324] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:35:18.330] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:35:18.355] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:35:18.404] [INFO] cheese - inserting 1000 documents. first: Exeter Township School District and last: Brownstone musical +[2018-02-13T08:35:18.407] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:35:18.417] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:35:18.505] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:35:18.604] [INFO] cheese - inserting 1000 documents. first: Template:2013-14 FA WSL PFA Team of the Year and last: Template:2014-15 Premier League table/testcases +[2018-02-13T08:35:18.649] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T08:35:18.693] [INFO] cheese - inserting 1000 documents. first: Category:C-Class Nickelodeon articles of High-importance and last: BANGLADESH +[2018-02-13T08:35:18.726] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:35:18.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Feng Sushi and last: To India - My Native Land +[2018-02-13T08:35:18.797] [INFO] cheese - inserting 1000 documents. first: Right In The Night (Whigfield Song) and last: W Wells (Middlesex cricketer) +[2018-02-13T08:35:18.816] [INFO] cheese - inserting 1000 documents. first: U.G. Krishnamurti and last: The Witness (1969 French film) +[2018-02-13T08:35:18.843] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:35:18.886] [INFO] cheese - inserting 1000 documents. first: Umbilicus (disambiguation) and last: Risu Akizuki +[2018-02-13T08:35:18.871] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T08:35:18.924] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:35:18.970] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T08:35:18.989] [INFO] cheese - inserting 1000 documents. first: Specialist registrar and last: Nazdrat +[2018-02-13T08:35:19.020] [INFO] cheese - inserting 1000 documents. first: Closing ceremony at the olympic games and last: Index of philosophy of language articles +[2018-02-13T08:35:19.053] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:35:19.059] [INFO] cheese - inserting 1000 documents. first: Sleepwalker (Shtirski) and last: Template:2015-16 UEFA Champions League Group H table/doc +[2018-02-13T08:35:19.089] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:35:19.102] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T08:35:19.136] [INFO] cheese - inserting 1000 documents. first: IRAQ and last: Core Based Statistical Areas +[2018-02-13T08:35:19.173] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T08:35:19.231] [INFO] cheese - inserting 1000 documents. first: Inka Tampu, Huayopata and last: Haymaking (disambiguation) +[2018-02-13T08:35:19.352] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T08:35:19.440] [INFO] cheese - inserting 1000 documents. first: N69 and last: Archdiocese of Fianarantsoa +[2018-02-13T08:35:19.460] [INFO] cheese - inserting 1000 documents. first: Lewis Williams (disambiguation) and last: Template:Campaignbox Lithuanian Civil War of 1431-1435 +[2018-02-13T08:35:19.466] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Kurdistan articles and last: Portal:Nautical/Featured Knot/20 +[2018-02-13T08:35:19.484] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:35:19.522] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T08:35:19.553] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:35:19.601] [INFO] cheese - inserting 1000 documents. first: Couch Park and last: Air Rally +[2018-02-13T08:35:19.601] [INFO] cheese - inserting 1000 documents. first: Kenneth J. Spreitzer and last: Ecoteaux (Vaud) +[2018-02-13T08:35:19.646] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:35:19.657] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:35:19.669] [INFO] cheese - inserting 1000 documents. first: Virginia-class cruiser and last: Transdermal patch +[2018-02-13T08:35:19.699] [INFO] cheese - inserting 1000 documents. first: Geelkuriban and last: Category:1902 in China +[2018-02-13T08:35:19.735] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:35:19.768] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:35:19.825] [INFO] cheese - inserting 1000 documents. first: Deepavali (film) and last: Cheesy Bean & Rice Burrito +[2018-02-13T08:35:19.828] [INFO] cheese - inserting 1000 documents. first: Jiwan Luitel and last: File:TheMosquitoCoastNovel.jpg +[2018-02-13T08:35:19.854] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T08:35:19.873] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:35:19.889] [INFO] cheese - inserting 1000 documents. first: Template:Sbw-big and last: Henry Nicholas (disambiguation) +[2018-02-13T08:35:19.913] [INFO] cheese - inserting 1000 documents. first: Pregnin and last: Shermann Audio +[2018-02-13T08:35:19.932] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:35:19.963] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T08:35:20.037] [INFO] cheese - inserting 1000 documents. first: Joel Henry Hildebrand and last: Kin Platt +[2018-02-13T08:35:20.072] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T08:35:20.186] [INFO] cheese - inserting 1000 documents. first: File:Samson head on.jpg and last: Shield-Wizard Comics +[2018-02-13T08:35:20.187] [INFO] cheese - inserting 1000 documents. first: Ipan, Guam and last: Mountbatten, Devon +[2018-02-13T08:35:20.225] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T08:35:20.242] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:35:20.291] [INFO] cheese - inserting 1000 documents. first: Eddie Roebuck and last: Baragharia +[2018-02-13T08:35:20.305] [INFO] cheese - inserting 1000 documents. first: Sweet Seasons and last: Shayātīn +[2018-02-13T08:35:20.317] [INFO] cheese - inserting 1000 documents. first: Cheesy Roll Up and last: Category:Finnish major generals +[2018-02-13T08:35:20.320] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T08:35:20.357] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T08:35:20.366] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:35:20.423] [INFO] cheese - inserting 1000 documents. first: USS Roosevelt (DDG-80) and last: Repeat --- The Best of Jethro Tull --- Vol II +[2018-02-13T08:35:20.439] [INFO] cheese - inserting 1000 documents. first: Andy Russo and last: Unleashed (Toby Keith album) +[2018-02-13T08:35:20.543] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:35:20.591] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:35:20.696] [INFO] cheese - inserting 1000 documents. first: John Tredinnick Crocker and last: File:Charles W Chesnutt Library.jpg +[2018-02-13T08:35:20.705] [INFO] cheese - inserting 1000 documents. first: Category:Lists of prisons in China and last: Fighting Fools +[2018-02-13T08:35:20.764] [INFO] cheese - inserting 1000 documents. first: Template:Sfrac/sandbox and last: Unsellables (UK TV series) +[2018-02-13T08:35:20.812] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:35:20.811] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:35:20.866] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:35:20.916] [INFO] cheese - inserting 1000 documents. first: Vladimir Lurasov and last: Category:Visitor attractions in Tartu County +[2018-02-13T08:35:20.947] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:35:21.010] [INFO] cheese - inserting 1000 documents. first: Obsza and last: The Who Collection, Volume Two +[2018-02-13T08:35:21.020] [INFO] cheese - inserting 1000 documents. first: State University of New York at Brockport and last: Category:Fal catchment +[2018-02-13T08:35:21.080] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:35:21.091] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:35:21.253] [INFO] cheese - inserting 1000 documents. first: File:PointersOperaHouse.jpg and last: Etrépilly +[2018-02-13T08:35:21.328] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:35:21.375] [INFO] cheese - inserting 1000 documents. first: Category:Defunct townships in Adams County, North Dakota and last: Bruno Bianchi (cartoonist) +[2018-02-13T08:35:21.378] [INFO] cheese - inserting 1000 documents. first: Sentence symbol and last: Category:Christian clergy in Canada +[2018-02-13T08:35:21.394] [INFO] cheese - inserting 1000 documents. first: Joseph (Bible) and last: Dicen que Soy un Mujeriego +[2018-02-13T08:35:21.423] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:35:21.427] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:35:21.468] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:35:21.484] [INFO] cheese - inserting 1000 documents. first: The Salamander (film) and last: Template:Waitemata by-election, 1941 +[2018-02-13T08:35:21.523] [INFO] cheese - inserting 1000 documents. first: 28 June 2004 and last: File:UD 5 Lily.jpg +[2018-02-13T08:35:21.547] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T08:35:21.581] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Don't Tell Me Promo Tour and last: Chartier's Creek, Pennsylvania +[2018-02-13T08:35:21.618] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:35:21.627] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:35:21.661] [INFO] cheese - inserting 1000 documents. first: Liar's Poker and last: Charles M. Price +[2018-02-13T08:35:21.759] [INFO] cheese - inserting 1000 documents. first: Stanisław Antoni Poniatowski and last: CD64 +[2018-02-13T08:35:21.769] [INFO] cheese - batch complete in: 1.226 secs +[2018-02-13T08:35:21.860] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:35:21.917] [INFO] cheese - inserting 1000 documents. first: Felis onca and last: American Guns +[2018-02-13T08:35:21.996] [INFO] cheese - inserting 1000 documents. first: Les Créoles and last: 2011-12 UEFA Champions League +[2018-02-13T08:35:21.998] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2016 April 18 and last: Template:NandiAwardBestActor 2000-2019 +[2018-02-13T08:35:22.018] [INFO] cheese - inserting 1000 documents. first: The Bastards and the Knives and last: Eslamabad, Neyriz +[2018-02-13T08:35:22.055] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:35:22.055] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:35:22.067] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:35:22.109] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:35:22.234] [INFO] cheese - inserting 1000 documents. first: Berdkunk’ and last: Francis Maneoru +[2018-02-13T08:35:22.275] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:35:22.277] [INFO] cheese - inserting 1000 documents. first: Template:IRT Broadway - Seventh Avenue Line and last: Template:Unicode chart CJK Unified Ideographs (8D00-9FFF) +[2018-02-13T08:35:22.306] [INFO] cheese - batch complete in: 0.251 secs +[2018-02-13T08:35:22.337] [INFO] cheese - inserting 1000 documents. first: Category:Animal Liberation Front and last: New Brighton A.F.C., New Zealand +[2018-02-13T08:35:22.405] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:35:22.418] [INFO] cheese - inserting 1000 documents. first: Sieves and last: David Pierre Eto'o Fils +[2018-02-13T08:35:22.485] [INFO] cheese - inserting 1000 documents. first: File:Cirsium muticum.jpg and last: Crocidura negligens +[2018-02-13T08:35:22.492] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:35:22.513] [INFO] cheese - inserting 1000 documents. first: Westminster (district board) and last: Anthony Boam +[2018-02-13T08:35:22.560] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T08:35:22.569] [INFO] cheese - inserting 1000 documents. first: Charles Melvin Price and last: USAir Arena +[2018-02-13T08:35:22.577] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:35:22.591] [INFO] cheese - inserting 1000 documents. first: Badamuyi and last: Sharman's rock-wallaby +[2018-02-13T08:35:22.625] [INFO] cheese - inserting 1000 documents. first: Template:Skøyen-Filipstadlinjen and last: Fathima Reddy +[2018-02-13T08:35:22.661] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T08:35:22.662] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:35:22.717] [INFO] cheese - batch complete in: 0.948 secs +[2018-02-13T08:35:22.741] [INFO] cheese - inserting 1000 documents. first: Monterotondo (RM) and last: Gonatista +[2018-02-13T08:35:22.792] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:35:22.991] [INFO] cheese - inserting 1000 documents. first: USS Repose and last: Guy Hemmings +[2018-02-13T08:35:23.013] [INFO] cheese - inserting 1000 documents. first: ZENworks Desktop Management and last: Musedit +[2018-02-13T08:35:23.019] [INFO] cheese - inserting 1000 documents. first: Stole Beer from a Golfer and last: List of religious leaders in 1914 +[2018-02-13T08:35:23.038] [INFO] cheese - inserting 1000 documents. first: Brookfield Renewable Power and last: Rio Grande (company) +[2018-02-13T08:35:23.076] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T08:35:23.083] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:35:23.133] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:35:23.151] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:35:23.157] [INFO] cheese - inserting 1000 documents. first: Template:Wisconsin-Whitewater Warhawks football coach navbox and last: Clyde Rocks +[2018-02-13T08:35:23.193] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/collectedpapers.com.ua and last: Student Apex Body HNB Garhwal Central University +[2018-02-13T08:35:23.260] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:35:23.300] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:35:23.472] [INFO] cheese - inserting 1000 documents. first: Samadarvish and last: Carillon (Elgar) +[2018-02-13T08:35:23.537] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:35:23.588] [INFO] cheese - inserting 1000 documents. first: Slovak People's Party and last: Gaunts ghosts +[2018-02-13T08:35:23.652] [INFO] cheese - inserting 1000 documents. first: Category:Parks in Lambton County and last: Guam Regional Transit Authority +[2018-02-13T08:35:23.674] [INFO] cheese - inserting 1000 documents. first: John mcain and last: Wikipedia:WikiProject Ukrainian subdivisions +[2018-02-13T08:35:23.707] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:35:23.723] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:35:23.742] [INFO] cheese - inserting 1000 documents. first: Shungu Wembadio Pene Kikumba and last: Frank Torley +[2018-02-13T08:35:23.755] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:35:23.789] [INFO] cheese - inserting 1000 documents. first: George Snow Hill and last: Mazra'eh-ye Pahn +[2018-02-13T08:35:23.807] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:35:23.833] [INFO] cheese - inserting 1000 documents. first: B. A. Botkin and last: Bolivian sol +[2018-02-13T08:35:23.859] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:35:23.898] [INFO] cheese - inserting 1000 documents. first: Wilson-Bonifils Airield and last: Waitpinga +[2018-02-13T08:35:23.923] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:35:23.989] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:35:24.077] [INFO] cheese - inserting 1000 documents. first: Vladimir Astapovsky and last: Sorin Bușu +[2018-02-13T08:35:24.137] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:35:24.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 December 19 and last: Simon Nielsen (disambiguation) +[2018-02-13T08:35:24.228] [INFO] cheese - inserting 1000 documents. first: Template:MICEX and last: Working envelope +[2018-02-13T08:35:24.233] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:35:24.274] [INFO] cheese - inserting 1000 documents. first: Category:Television plays and last: Iran - Georgia relations +[2018-02-13T08:35:24.282] [INFO] cheese - inserting 1000 documents. first: Jake Edward Ryan and last: Category:1988 disestablishments in Louisiana +[2018-02-13T08:35:24.295] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:35:24.314] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:35:24.355] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:35:24.420] [INFO] cheese - inserting 1000 documents. first: Cornelius O. Jansen and last: T. Gehrels +[2018-02-13T08:35:24.467] [INFO] cheese - inserting 1000 documents. first: Gedalia Alon and last: Jaap van der Poll +[2018-02-13T08:35:24.503] [INFO] cheese - inserting 1000 documents. first: VRR (disambiguation) and last: Wikipedia:Articles for deletion/Wizard's Convention +[2018-02-13T08:35:24.511] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:35:24.535] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:35:24.571] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:35:24.639] [INFO] cheese - inserting 1000 documents. first: Thomas Bryan (courtier) and last: Wikipedia:Articles for deletion/Christopher Twitchen +[2018-02-13T08:35:24.687] [INFO] cheese - inserting 1000 documents. first: Traffic classification and last: Lee Cox (disambiguation) +[2018-02-13T08:35:24.690] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:35:24.699] [INFO] cheese - inserting 1000 documents. first: Eugène de Planard and last: Category:1900-01 in Italian football +[2018-02-13T08:35:24.757] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:35:24.795] [INFO] cheese - inserting 1000 documents. first: File:Makemepure.JPG and last: File:Itk GNF1H.png +[2018-02-13T08:35:24.876] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:35:24.968] [INFO] cheese - inserting 1000 documents. first: Category:Rabbinic Judaism and last: Henry Edmund Donnelly +[2018-02-13T08:35:24.983] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:35:25.057] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:35:25.167] [INFO] cheese - inserting 1000 documents. first: Black and Gold (Will Coleman song) and last: Attleboro station +[2018-02-13T08:35:25.183] [INFO] cheese - inserting 1000 documents. first: Annetta and last: Bartlett, TN +[2018-02-13T08:35:25.224] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:35:25.225] [INFO] cheese - inserting 1000 documents. first: Category:2009 Big East Conference football season and last: Gad loch +[2018-02-13T08:35:25.252] [INFO] cheese - inserting 1000 documents. first: Brick Presbyterian Church Complex and last: WSVL-LP +[2018-02-13T08:35:25.258] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:35:25.309] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T08:35:25.361] [INFO] cheese - inserting 1000 documents. first: San Pedro Southwestern Railroad and last: Wikipedia:Featured picture candidates/Musa x paradisiaca flower +[2018-02-13T08:35:25.365] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:35:25.400] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Prince Edward Island and last: Roger Jones (mathematician) +[2018-02-13T08:35:25.430] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:35:25.521] [INFO] cheese - inserting 1000 documents. first: Baithu Rahma and last: Haroon Moghul +[2018-02-13T08:35:25.531] [INFO] cheese - batch complete in: 0.96 secs +[2018-02-13T08:35:25.580] [INFO] cheese - inserting 1000 documents. first: Category:1907-08 in Italian football and last: Category:1936-37 in French football +[2018-02-13T08:35:25.617] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:35:25.630] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T08:35:25.690] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Syracuse to Washington, DC flights and last: Bertsch-Oceanview, CA +[2018-02-13T08:35:25.690] [INFO] cheese - inserting 1000 documents. first: Fernando de Toro and last: Wikipedia:Articles for deletion/Itchycoo Park +[2018-02-13T08:35:25.742] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:35:25.765] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:35:25.889] [INFO] cheese - inserting 1000 documents. first: Heel strike (gait) and last: Duchess consort of Anjou +[2018-02-13T08:35:26.000] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:35:26.026] [INFO] cheese - inserting 1000 documents. first: The Knower (song) and last: Category:1940-41 in German football leagues +[2018-02-13T08:35:26.040] [INFO] cheese - inserting 1000 documents. first: Jesús (wrestler) and last: Sterling SAR 87 +[2018-02-13T08:35:26.047] [INFO] cheese - inserting 1000 documents. first: Martín Travieso Nieva and last: Shimon Ratner +[2018-02-13T08:35:26.083] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T08:35:26.119] [INFO] cheese - inserting 1000 documents. first: Wattenmeer and last: Boyd County, KY +[2018-02-13T08:35:26.136] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:35:26.166] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T08:35:26.207] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:35:26.220] [INFO] cheese - inserting 1000 documents. first: Category:Books by Fredric Jameson and last: The Strange Awakening +[2018-02-13T08:35:26.267] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:35:26.323] [INFO] cheese - inserting 1000 documents. first: Jack White VC and last: J. I. Wedgwood +[2018-02-13T08:35:26.399] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:35:26.547] [INFO] cheese - inserting 1000 documents. first: Abitibi–Témiscamingue and last: List of highways numbered 452 +[2018-02-13T08:35:26.550] [INFO] cheese - inserting 1000 documents. first: Category:1941-42 in European ice hockey and last: Category:1953-54 in Italian football leagues +[2018-02-13T08:35:26.557] [INFO] cheese - inserting 1000 documents. first: Créoles and last: The George C. Marshall Space Flight Center +[2018-02-13T08:35:26.618] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:35:26.625] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:35:26.640] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:35:26.667] [INFO] cheese - inserting 1000 documents. first: Dinosaur Bones and last: Robert Leroux +[2018-02-13T08:35:26.686] [INFO] cheese - inserting 1000 documents. first: Godspeed on the Devil's Thunder and last: Burkes Tavern, Virginia +[2018-02-13T08:35:26.723] [INFO] cheese - inserting 1000 documents. first: Boyd County, NE and last: Wikipedia:Articles for deletion/List of every mayor in the World +[2018-02-13T08:35:26.766] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:35:26.805] [INFO] cheese - inserting 1000 documents. first: Jane Hedges Todd and last: Lahure (disambiguation) +[2018-02-13T08:35:26.821] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:35:26.849] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:35:26.949] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:35:27.016] [INFO] cheese - inserting 1000 documents. first: Category:1956-57 in American soccer and last: Stupinsky Municipal District +[2018-02-13T08:35:27.077] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T08:35:27.194] [INFO] cheese - inserting 1000 documents. first: The story of a mother and last: Pine moth +[2018-02-13T08:35:27.255] [INFO] cheese - inserting 1000 documents. first: Template:Laughlin-Needles-Lake Havasu City Radio and last: Acacia turgida +[2018-02-13T08:35:27.264] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:35:27.284] [INFO] cheese - inserting 1000 documents. first: Antitype armena and last: File:AngieBolen.jpg +[2018-02-13T08:35:27.355] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:35:27.380] [INFO] cheese - inserting 1000 documents. first: Concerti grossi, Op.6 (Handel) and last: Oqulak +[2018-02-13T08:35:27.399] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:35:27.444] [INFO] cheese - inserting 1000 documents. first: Category:1959-60 in Spanish basketball and last: Category:1972-73 in Asian association football leagues +[2018-02-13T08:35:27.457] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:35:27.470] [INFO] cheese - inserting 1000 documents. first: Category:Busan Metro lines and last: File:Mieleton elokuu.jpg +[2018-02-13T08:35:27.498] [INFO] cheese - inserting 1000 documents. first: Abdul 2 Ghani and last: Category:Top-importance emergency medicine and EMS articles +[2018-02-13T08:35:27.507] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:35:27.556] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:35:27.594] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:35:27.634] [INFO] cheese - inserting 1000 documents. first: AS-105 (spacecraft) and last: Brooksville, MS +[2018-02-13T08:35:27.726] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:35:27.767] [INFO] cheese - inserting 1000 documents. first: Category:1972-73 in Spanish football leagues and last: Category:1979-80 in Welsh football +[2018-02-13T08:35:27.788] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T08:35:27.822] [INFO] cheese - inserting 1000 documents. first: Tapps-Gervis-Meyrick baronets and last: BHSF +[2018-02-13T08:35:27.874] [INFO] cheese - inserting 1000 documents. first: El Dorado and Western Railway and last: Canine gait +[2018-02-13T08:35:27.926] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:35:27.932] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:35:27.969] [INFO] cheese - inserting 1000 documents. first: Gillmeria tetradactyla and last: Banksia rufa ssp. tutanningensis +[2018-02-13T08:35:27.972] [INFO] cheese - inserting 1000 documents. first: Owl Molla and last: Technogypsie +[2018-02-13T08:35:28.083] [INFO] cheese - inserting 1000 documents. first: Bemidji State Beavers softball and last: Wikipedia:WikiProject Spam/LinkReports/eautoship.com +[2018-02-13T08:35:28.084] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:35:28.086] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:35:28.106] [INFO] cheese - inserting 1000 documents. first: Kiga Station and last: Super Sapiens +[2018-02-13T08:35:28.164] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:35:28.170] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:35:28.233] [INFO] cheese - inserting 1000 documents. first: Brooksville, OK and last: Lyon Playfair +[2018-02-13T08:35:28.319] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:35:28.325] [INFO] cheese - inserting 1000 documents. first: Category:1978-79 Scottish Football League and last: Template:1966 Japan Soccer League Team of the Year +[2018-02-13T08:35:28.419] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:35:28.472] [INFO] cheese - inserting 1000 documents. first: Debora Kinski and last: Interfaith officiants +[2018-02-13T08:35:28.474] [INFO] cheese - inserting 1000 documents. first: Amtorg Trading Association and last: Cedar Creek Grist Mill +[2018-02-13T08:35:28.526] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T08:35:28.531] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:35:28.566] [INFO] cheese - inserting 1000 documents. first: Category:Las Vegas Locomotives and last: Wikipedia:WikiProject Spam/LinkReports/sante-club.com +[2018-02-13T08:35:28.569] [INFO] cheese - inserting 1000 documents. first: Speak My Mind and last: John Sidney “Sid” Dinsdale +[2018-02-13T08:35:28.630] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:35:28.628] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T08:35:28.670] [INFO] cheese - inserting 1000 documents. first: File:Bgd.png and last: Baloncesto Galicia Ferrol +[2018-02-13T08:35:28.700] [INFO] cheese - inserting 1000 documents. first: Mary Sue Terry and last: Matákoan +[2018-02-13T08:35:28.739] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:35:28.831] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:35:28.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/medicalnewstoday.com and last: River Maine (Kerry) +[2018-02-13T08:35:28.879] [INFO] cheese - inserting 1000 documents. first: Kuusjoki and last: Carlinville, IL +[2018-02-13T08:35:28.924] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:35:28.961] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:35:28.973] [INFO] cheese - inserting 1000 documents. first: Peter Struwwel and last: Wikipedia:Requests for checkuser/Case/Unicorn144 +[2018-02-13T08:35:29.050] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T08:35:29.095] [INFO] cheese - inserting 1000 documents. first: I Never Knew (What That Song Meant Before) (song) and last: Category:Park Ave. members +[2018-02-13T08:35:29.139] [INFO] cheese - inserting 1000 documents. first: Juan Manuel Sánchez, Duke of Almodóvar del Río and last: Integrated computer-aided manufacturing +[2018-02-13T08:35:29.191] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:35:29.251] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:35:29.286] [INFO] cheese - inserting 1000 documents. first: Bahara, India and last: Turoctocog +[2018-02-13T08:35:29.371] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:35:29.397] [INFO] cheese - inserting 1000 documents. first: Conventional truck and last: Mărgineni, Bacău +[2018-02-13T08:35:29.446] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:35:29.473] [INFO] cheese - inserting 1000 documents. first: Carlisle, AR and last: Cherokee, IA +[2018-02-13T08:35:29.506] [INFO] cheese - inserting 1000 documents. first: Infraspecific and last: Doneva +[2018-02-13T08:35:29.524] [INFO] cheese - inserting 1000 documents. first: Matakoan and last: Heidi Zeigler +[2018-02-13T08:35:29.600] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:35:29.620] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:35:29.643] [INFO] cheese - inserting 1000 documents. first: Saijanjoki and last: NightOwl Convenience Stores +[2018-02-13T08:35:29.654] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:35:29.741] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:35:29.756] [INFO] cheese - inserting 1000 documents. first: File:1991 NHL Draft.png and last: 1854 AHS +[2018-02-13T08:35:29.879] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:35:29.920] [INFO] cheese - inserting 1000 documents. first: M G George Muthoot and last: The Hub (Programme) +[2018-02-13T08:35:29.965] [INFO] cheese - inserting 1000 documents. first: Template:Nothanks/doc and last: Wikipedia:Articles for deletion/Owain Phyfe +[2018-02-13T08:35:30.074] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:35:30.119] [INFO] cheese - inserting 1000 documents. first: Cherokee, KS and last: Clinton County, IL +[2018-02-13T08:35:30.119] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:35:30.166] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:35:30.196] [INFO] cheese - inserting 1000 documents. first: Rai Sport and last: Genevieve Dieudonné +[2018-02-13T08:35:30.265] [INFO] cheese - batch complete in: 0.819 secs +[2018-02-13T08:35:30.277] [INFO] cheese - inserting 1000 documents. first: Template:Tinashe singles and last: Hunt Club (disambiguation) +[2018-02-13T08:35:30.351] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:35:30.446] [INFO] cheese - inserting 1000 documents. first: Harbor–UCLA Medical Center and last: John George "Jack" Phillips +[2018-02-13T08:35:30.477] [INFO] cheese - inserting 1000 documents. first: Clinton County, IN and last: Couderay (village), Sawyer County, WI +[2018-02-13T08:35:30.507] [INFO] cheese - inserting 1000 documents. first: Zeyn'ali and last: File:Lil Wayne - Mirror (single cover).jpg +[2018-02-13T08:35:30.508] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T08:35:30.517] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:35:30.528] [INFO] cheese - inserting 1000 documents. first: Khankhamis-e Olya and last: 41st Annual Primetime Emmy Awards +[2018-02-13T08:35:30.596] [INFO] cheese - inserting 1000 documents. first: Joseph-Nicolas-Pancrace Royer and last: Circuit training +[2018-02-13T08:35:30.598] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:35:30.641] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T08:35:30.726] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:35:30.820] [INFO] cheese - inserting 1000 documents. first: Soviet Top League 1957 and last: Średni Łan +[2018-02-13T08:35:30.887] [INFO] cheese - inserting 1000 documents. first: Joe Susan and last: Euxoa epicremna +[2018-02-13T08:35:30.899] [INFO] cheese - inserting 1000 documents. first: Category:Churches completed in 1445 and last: Victor Sosnora +[2018-02-13T08:35:30.901] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:35:30.967] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:35:31.014] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:35:31.047] [INFO] cheese - inserting 1000 documents. first: 1989 Primetime Emmy Awards and last: Old Myakka, FL +[2018-02-13T08:35:31.113] [INFO] cheese - inserting 1000 documents. first: Couderay (village), WI and last: Lakewood Freeway +[2018-02-13T08:35:31.118] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T08:35:31.137] [INFO] cheese - inserting 1000 documents. first: Template:1960 College Football Consensus All-Americans and last: 1967–68 Tranmere Rovers F.C. season +[2018-02-13T08:35:31.147] [INFO] cheese - inserting 1000 documents. first: File:Matt Will Don't Let It Go To Waste Single.JPG and last: Ust-Ianskii Ulus +[2018-02-13T08:35:31.205] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:35:31.225] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:35:31.246] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:35:31.364] [INFO] cheese - inserting 1000 documents. first: Gostinnyi Dvor and last: American girl dolls +[2018-02-13T08:35:31.440] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:35:31.441] [INFO] cheese - inserting 1000 documents. first: Old Town, FL and last: Howey-In-The-Hills, FL +[2018-02-13T08:35:31.448] [INFO] cheese - inserting 1000 documents. first: Tomaszówka and last: Daijiworld Media +[2018-02-13T08:35:31.483] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T08:35:31.510] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:35:31.575] [INFO] cheese - inserting 1000 documents. first: Category:Australian actresses who committed suicide and last: Róger Guedes +[2018-02-13T08:35:31.615] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:35:31.667] [INFO] cheese - inserting 1000 documents. first: Cumberland County, KY and last: 1960–61 United States network television schedule +[2018-02-13T08:35:31.671] [INFO] cheese - inserting 1000 documents. first: LA Tennis Open USTA Men's Challenger (I) and last: Template:POTD/2010-03-05 +[2018-02-13T08:35:31.699] [INFO] cheese - batch complete in: 0.493 secs +[2018-02-13T08:35:31.726] [INFO] cheese - inserting 1000 documents. first: Category:Flathead National Forest and last: Wartaqooqan +[2018-02-13T08:35:31.725] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:35:31.771] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:35:31.837] [INFO] cheese - inserting 1000 documents. first: Frederick Rossini and last: Dynamic-Tension +[2018-02-13T08:35:31.862] [INFO] cheese - inserting 1000 documents. first: Howey in the Hills, FL and last: Tarleton State Texans men's basketball +[2018-02-13T08:35:31.927] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T08:35:31.942] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:35:32.032] [INFO] cheese - inserting 1000 documents. first: Ancient map and last: Meriwan +[2018-02-13T08:35:32.040] [INFO] cheese - inserting 1000 documents. first: Delaware County, IN and last: Paul Rebhan +[2018-02-13T08:35:32.060] [INFO] cheese - inserting 1000 documents. first: Yu Station and last: Acetonedicarboxylic acid +[2018-02-13T08:35:32.065] [INFO] cheese - inserting 1000 documents. first: Radyo5 NewsFM Davao and last: Category:Road accident deaths in Albania +[2018-02-13T08:35:32.078] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T08:35:32.116] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T08:35:32.111] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:35:32.133] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:35:32.242] [INFO] cheese - inserting 1000 documents. first: Web management team and last: Lawry's Restaurants Inc. +[2018-02-13T08:35:32.287] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:35:32.298] [INFO] cheese - inserting 1000 documents. first: Tarleton State TexAnns women's basketball and last: Aalto, Marja-Sisko +[2018-02-13T08:35:32.308] [INFO] cheese - inserting 1000 documents. first: Asadabad Sanjabi-ye Bala and last: Category:Spanish military personnel of the Spanish Civil War (National faction) +[2018-02-13T08:35:32.337] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gregory Arlt and last: Kingdom Hearts X +[2018-02-13T08:35:32.364] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:35:32.390] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:35:32.421] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:35:32.477] [INFO] cheese - inserting 1000 documents. first: Dunwoody, GA and last: Elderton, PA +[2018-02-13T08:35:32.518] [INFO] cheese - inserting 1000 documents. first: Category:Polish actors who committed suicide and last: File:Senate of Poland Composition.svg +[2018-02-13T08:35:32.554] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T08:35:32.579] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T08:35:32.659] [INFO] cheese - inserting 1000 documents. first: Don't Go To Sleep! and last: Aidan Zammit +[2018-02-13T08:35:32.729] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T08:35:32.765] [INFO] cheese - inserting 1000 documents. first: Rin Kono and last: Steve Gainey +[2018-02-13T08:35:32.827] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:35:32.890] [INFO] cheese - inserting 1000 documents. first: Over-investment and last: Kingston Hawthorn Cricket Club +[2018-02-13T08:35:32.892] [INFO] cheese - inserting 1000 documents. first: Due marines e un generale and last: Piazza Armenia +[2018-02-13T08:35:32.895] [INFO] cheese - inserting 1000 documents. first: Aalto, Pauliina and last: SR 833 (FL) +[2018-02-13T08:35:32.908] [INFO] cheese - inserting 1000 documents. first: Eldon, IA and last: Natural deduction logic +[2018-02-13T08:35:32.935] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T08:35:32.938] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:35:32.948] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:35:32.955] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T08:35:33.013] [INFO] cheese - inserting 1000 documents. first: William Laws Calley Jr. and last: Penkov +[2018-02-13T08:35:33.064] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T08:35:33.078] [INFO] cheese - inserting 1000 documents. first: Planned cesarean section and last: 1907 Australasian Championships +[2018-02-13T08:35:33.110] [INFO] cheese - inserting 1000 documents. first: Richard Curran and last: DSC-H3 +[2018-02-13T08:35:33.146] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:35:33.156] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T08:35:33.297] [INFO] cheese - inserting 1000 documents. first: File:Lockheed-logo Winnie-Mae.png and last: Wikipedia:Articles for deletion/Hurst v. Newman +[2018-02-13T08:35:33.314] [INFO] cheese - inserting 1000 documents. first: SR 840 (FL) and last: Wikipedia:Sockpuppet investigations/50.121.48.234 +[2018-02-13T08:35:33.318] [INFO] cheese - inserting 1000 documents. first: Template:Ukrainian Women's Volleyball Super League and last: Erkna Lighthouse +[2018-02-13T08:35:33.321] [INFO] cheese - inserting 1000 documents. first: Balfour House and last: Chaa-Kholskiy +[2018-02-13T08:35:33.344] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:35:33.352] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:35:33.361] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T08:35:33.370] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T08:35:33.422] [INFO] cheese - inserting 1000 documents. first: Mohawk Airlines and last: Yushan (mountain) +[2018-02-13T08:35:33.470] [INFO] cheese - inserting 1000 documents. first: Penkova and last: Category:Bicol Region geography stubs +[2018-02-13T08:35:33.493] [INFO] cheese - batch complete in: 0.538 secs +[2018-02-13T08:35:33.536] [INFO] cheese - inserting 1000 documents. first: Template:Chembox HenryConstant and last: Chimalpahin Quauhtlehuanitzin +[2018-02-13T08:35:33.563] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:35:33.645] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:35:33.662] [INFO] cheese - inserting 1000 documents. first: File:Tonkin Zouave officer.png and last: File:Dr. Jekyll and Sister Hyde.jpg +[2018-02-13T08:35:33.714] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:35:33.791] [INFO] cheese - inserting 1000 documents. first: R. ehrenbergii and last: 100,000 Homes Campaign +[2018-02-13T08:35:33.935] [INFO] cheese - inserting 1000 documents. first: Stephen Askin and last: Category:1593 crimes +[2018-02-13T08:35:33.951] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:35:33.992] [INFO] cheese - inserting 1000 documents. first: File:Image page sandbox.png and last: Nickelodean +[2018-02-13T08:35:34.094] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:35:34.109] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:35:34.140] [INFO] cheese - inserting 1000 documents. first: Traveler's Aid Association and last: 1965–66 West Ham United F.C. season +[2018-02-13T08:35:34.198] [INFO] cheese - inserting 1000 documents. first: Simon François Daumont de Saint-Lusson and last: Gwladys Yvonne McKeon +[2018-02-13T08:35:34.216] [INFO] cheese - inserting 1000 documents. first: Mathmetics and last: Dextrorotation +[2018-02-13T08:35:34.250] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:35:34.278] [INFO] cheese - inserting 1000 documents. first: Aiming station and last: Principal series representation +[2018-02-13T08:35:34.306] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:35:34.302] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:35:34.329] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:35:34.431] [INFO] cheese - inserting 1000 documents. first: Miyagi Gakuin Women's College and last: Hidden Camera +[2018-02-13T08:35:34.475] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:35:34.495] [INFO] cheese - inserting 1000 documents. first: Estação arqueológica do Cabeço do Vouga and last: Wikipedia:Wikipedia Signpost/2014-02-12/Technology report +[2018-02-13T08:35:34.563] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:35:34.653] [INFO] cheese - inserting 1000 documents. first: File:Tecmo Super NBA Basketball.jpg and last: Category:Government-owned companies of Singapore +[2018-02-13T08:35:34.698] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:35:34.707] [INFO] cheese - inserting 1000 documents. first: Kieler Schloss and last: John Bellasis, 1st Baron Bellasis +[2018-02-13T08:35:34.761] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:35:34.793] [INFO] cheese - inserting 1000 documents. first: James Turner, 1st Baron Netherthorpe and last: File:Esc-logo-klein.jpg +[2018-02-13T08:35:34.830] [INFO] cheese - inserting 1000 documents. first: John Dring and last: Arthur Lytlleton +[2018-02-13T08:35:34.847] [INFO] cheese - inserting 1000 documents. first: BitTorrent Party and last: National Association of Boat Owners +[2018-02-13T08:35:34.851] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:35:34.882] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:35:34.890] [INFO] cheese - inserting 1000 documents. first: Broadcast Advertising Clearance Centre and last: Franklin County, TX +[2018-02-13T08:35:34.924] [INFO] cheese - inserting 1000 documents. first: Bathysquillidae and last: Șuștiu +[2018-02-13T08:35:34.923] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:35:34.956] [INFO] cheese - inserting 1000 documents. first: Tetritsq'aro and last: Honors of Wales +[2018-02-13T08:35:34.974] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:35:34.977] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T08:35:35.044] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:35:35.056] [INFO] cheese - inserting 1000 documents. first: Kum (mountain) and last: Working (disambiguation) +[2018-02-13T08:35:35.091] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T08:35:35.151] [INFO] cheese - inserting 1000 documents. first: Colour Fred and last: Portal:University of Oxford/Selected article/15 +[2018-02-13T08:35:35.207] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T08:35:35.273] [INFO] cheese - inserting 1000 documents. first: Edgar Kendall Taylor and last: Balurmachchi +[2018-02-13T08:35:35.274] [INFO] cheese - inserting 1000 documents. first: Four Hours to Kill and last: Galidzor +[2018-02-13T08:35:35.308] [INFO] cheese - inserting 1000 documents. first: File:Yaroslav Golovanov.jpg and last: File:Love-triffids.jpg +[2018-02-13T08:35:35.314] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T08:35:35.324] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T08:35:35.339] [INFO] cheese - inserting 1000 documents. first: Skid Row (disambiguation) and last: SN-42 +[2018-02-13T08:35:35.364] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:35:35.365] [INFO] cheese - inserting 1000 documents. first: J. L. Boerdam and last: Tommy Lee (American football) +[2018-02-13T08:35:35.394] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:35:35.436] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:35:35.469] [INFO] cheese - inserting 1000 documents. first: Abruzzi, Luigi Amedeo Giuseppe Maria Ferdinando Francesco, Duke of the and last: Wikipedia:Votes for deletion/Freetown Elementary School +[2018-02-13T08:35:35.567] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:35:35.616] [INFO] cheese - inserting 1000 documents. first: Yonit Levi and last: W269CJ +[2018-02-13T08:35:35.618] [INFO] cheese - inserting 1000 documents. first: Baka to Test to Shōkanjū: Matsuri and last: Michael von Grünau +[2018-02-13T08:35:35.662] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:35:35.674] [INFO] cheese - inserting 1000 documents. first: Category:Fb team templates Mexico and last: Wikipedia:Articles for deletion/Andino Clarinets +[2018-02-13T08:35:35.735] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:35:35.755] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T08:35:35.806] [INFO] cheese - inserting 1000 documents. first: William F. O'Hare and last: Template:Colorado-transport-stub +[2018-02-13T08:35:35.893] [INFO] cheese - inserting 1000 documents. first: Tony Simmons (American football) and last: Danskøya +[2018-02-13T08:35:35.911] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:35:35.950] [INFO] cheese - inserting 1000 documents. first: Perfect Liberty and last: Category:Museums in Pinellas County, Florida +[2018-02-13T08:35:35.969] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:35:36.004] [INFO] cheese - inserting 1000 documents. first: Daphane Hatzilakos and last: Wikipedia:Featured article candidates/Gross domestic product/archive1 +[2018-02-13T08:35:36.024] [INFO] cheese - inserting 1000 documents. first: Gallipolis, OH and last: Gosnold, MA +[2018-02-13T08:35:36.044] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:35:36.083] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:35:36.123] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:35:36.188] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/ Space Shuttle and last: My Man (Tammy Wynette song) +[2018-02-13T08:35:36.229] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:35:36.243] [INFO] cheese - inserting 1000 documents. first: File:Ashanti- good-good music video.PNG and last: Category:Executed Spanish people +[2018-02-13T08:35:36.289] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:35:36.298] [INFO] cheese - inserting 1000 documents. first: Category:Sweden football manager history navigational boxes and last: Portal:Asia/Featured picture/25 +[2018-02-13T08:35:36.345] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:35:36.418] [INFO] cheese - inserting 1000 documents. first: Kalaka (state constituency) and last: Grave Creek +[2018-02-13T08:35:36.435] [INFO] cheese - inserting 1000 documents. first: Miltochrista eccentropis and last: Khelil +[2018-02-13T08:35:36.446] [INFO] cheese - inserting 1000 documents. first: Renfro Valley, Kentucky and last: File:ParallelStance.gif +[2018-02-13T08:35:36.457] [INFO] cheese - inserting 1000 documents. first: Gosper County, NE and last: Michael Stone (federal government administrator) +[2018-02-13T08:35:36.461] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T08:35:36.512] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:35:36.508] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T08:35:36.566] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:35:36.627] [INFO] cheese - inserting 1000 documents. first: Wehrkunde and last: Pocatello Senior High School +[2018-02-13T08:35:36.667] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Video games/Peer review/Race Driver: Create and Race and last: King Airfield Hangar +[2018-02-13T08:35:36.669] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:35:36.704] [INFO] cheese - inserting 1000 documents. first: Category:Conglomerate companies of Denmark and last: Category:Irvine Meadow XI F.C. +[2018-02-13T08:35:36.710] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T08:35:36.746] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T08:35:36.781] [INFO] cheese - inserting 1000 documents. first: History of the Shakespeare authorship question and last: Hendrik Ernst +[2018-02-13T08:35:36.837] [INFO] cheese - inserting 1000 documents. first: Canada sochi 2014 and last: Sand-e Mirshaban +[2018-02-13T08:35:36.875] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:35:36.890] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T08:35:36.979] [INFO] cheese - inserting 1000 documents. first: Bhuddist and last: Willow (PAT station) +[2018-02-13T08:35:37.037] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:35:37.115] [INFO] cheese - inserting 1000 documents. first: File:Tom Williams - Welsh rugby player born 1887.jpg and last: Category:Indian women choreographers +[2018-02-13T08:35:37.223] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:35:37.216] [INFO] cheese - inserting 1000 documents. first: Category:People from Rennebu and last: The Bass Player and the Blonde +[2018-02-13T08:35:37.255] [INFO] cheese - inserting 1000 documents. first: Colonial Dames of America and last: Slack space +[2018-02-13T08:35:37.291] [INFO] cheese - inserting 1000 documents. first: Fumehood and last: Gulf Breeze, FL +[2018-02-13T08:35:37.297] [INFO] cheese - inserting 1000 documents. first: Absinthe Rose and last: Mulayit Taung +[2018-02-13T08:35:37.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Soldier and the State and last: Category:Films directed by Ray Nazarro +[2018-02-13T08:35:37.329] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:35:37.354] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:35:37.397] [INFO] cheese - inserting 1000 documents. first: High Representative of the European Union and last: File:Nothing Worth Having Comes Easy.jpg +[2018-02-13T08:35:37.407] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:35:37.411] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:35:37.423] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:35:37.509] [INFO] cheese - batch complete in: 0.634 secs +[2018-02-13T08:35:37.742] [INFO] cheese - inserting 1000 documents. first: Cape Pembroke lighthouse and last: Michael John Myers +[2018-02-13T08:35:37.769] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Box Elder County, Utah and last: File:Game-of-Thrones-S06-E02-Home.jpg +[2018-02-13T08:35:37.806] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:35:37.826] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:35:37.841] [INFO] cheese - inserting 1000 documents. first: Hajiabdollah and last: Roberto Menichelli +[2018-02-13T08:35:37.869] [INFO] cheese - inserting 1000 documents. first: Gulf City, FL and last: Alaric, King of the Visigoths +[2018-02-13T08:35:37.875] [INFO] cheese - inserting 1000 documents. first: Georgia and Florida RailNet and last: Commonweal (disambiguation) +[2018-02-13T08:35:37.892] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T08:35:37.917] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T08:35:37.930] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:35:37.956] [INFO] cheese - inserting 1000 documents. first: William Middleton (disambiguation) and last: Wikipedia:Requests for adminship/Llywrch +[2018-02-13T08:35:37.999] [INFO] cheese - inserting 1000 documents. first: Aven Armand and last: Wells City F.C. +[2018-02-13T08:35:38.031] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:35:38.063] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:35:38.066] [INFO] cheese - inserting 1000 documents. first: Pool Party (The Office) and last: Category:Basketball teams in Colombia +[2018-02-13T08:35:38.142] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:35:38.285] [INFO] cheese - inserting 1000 documents. first: Sayid Ali Asghar Kurdistani and last: Category:1503 establishments in Lithuania +[2018-02-13T08:35:38.298] [INFO] cheese - inserting 1000 documents. first: Marco Fidel Suarez and last: Helotes, TX +[2018-02-13T08:35:38.318] [INFO] cheese - inserting 1000 documents. first: Cho Byeong-ok and last: File:Stefan Pierer’s ownership of KTM, Husqvarna and Husaberg.png +[2018-02-13T08:35:38.327] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T08:35:38.335] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T08:35:38.369] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T08:35:38.416] [INFO] cheese - inserting 1000 documents. first: Action of 8 January 1780 and last: 1999–00 FA Cup +[2018-02-13T08:35:38.446] [INFO] cheese - inserting 1000 documents. first: Toronto sports and last: Central Makran range +[2018-02-13T08:35:38.455] [INFO] cheese - inserting 1000 documents. first: Clayton & Black and last: Dr. Walter E. Williams +[2018-02-13T08:35:38.456] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T08:35:38.513] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Caribbean and last: South Milwaukee High School +[2018-02-13T08:35:38.516] [INFO] cheese - batch complete in: 0.374 secs +[2018-02-13T08:35:38.522] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:35:38.585] [INFO] cheese - inserting 1000 documents. first: KAMEN feat.Tatsuya Ishii and last: Massbus +[2018-02-13T08:35:38.597] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:35:38.635] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:35:38.645] [INFO] cheese - inserting 1000 documents. first: Shropshire Wildlife Trust and last: Honaker, VA +[2018-02-13T08:35:38.706] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T08:35:38.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Kenosplit/Archive and last: Evans Timothy Fosu Fosu-Mensah +[2018-02-13T08:35:38.810] [INFO] cheese - inserting 1000 documents. first: File:NIT Kurukshetra RR.png and last: Kalpasi +[2018-02-13T08:35:38.896] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:35:38.906] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T08:35:39.100] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Anniversaries/December/December 22 and last: Elachista canapennella +[2018-02-13T08:35:39.176] [INFO] cheese - inserting 1000 documents. first: Honalo, HI and last: Itasca Township, MN +[2018-02-13T08:35:39.185] [INFO] cheese - inserting 1000 documents. first: Category:Rapid transit in Hong Kong and last: Balsa (software) +[2018-02-13T08:35:39.197] [INFO] cheese - inserting 1000 documents. first: Daneți and last: Tosan tank +[2018-02-13T08:35:39.208] [INFO] cheese - inserting 1000 documents. first: File:WWWH-FM Paradise radio logo.jpg and last: Template:Subatomic particle/symbol/bottom xi +[2018-02-13T08:35:39.220] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T08:35:39.242] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:35:39.251] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:35:39.283] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:35:39.321] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:35:39.343] [INFO] cheese - inserting 1000 documents. first: Tracy Dawson and last: Hechi Airport +[2018-02-13T08:35:39.380] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Diocese of Port Harcourt and last: File:FastCat logo.png +[2018-02-13T08:35:39.441] [INFO] cheese - inserting 1000 documents. first: Web Mining and last: Divine Right of Kings (disambiguation) +[2018-02-13T08:35:39.448] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:35:39.451] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:35:39.526] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:35:39.676] [INFO] cheese - inserting 1000 documents. first: Itawamba County, MS and last: Jordan Township, Northumberland County, PA +[2018-02-13T08:35:39.697] [INFO] cheese - inserting 1000 documents. first: Category:Softball media and last: Japan National Route 392 +[2018-02-13T08:35:39.723] [INFO] cheese - inserting 1000 documents. first: Chevrolet Cup and last: Metallica - Kill 'Em All +[2018-02-13T08:35:39.730] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:35:39.751] [INFO] cheese - inserting 1000 documents. first: Template:Subatomic particle/symbol/bottom xi0 and last: Category:Caves of Jeju Province +[2018-02-13T08:35:39.752] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T08:35:39.804] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:35:39.824] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:35:39.838] [INFO] cheese - inserting 1000 documents. first: Cioabă and last: Newton R. Casey +[2018-02-13T08:35:39.875] [INFO] cheese - inserting 1000 documents. first: King Norris and last: Category:Protected areas of Chile +[2018-02-13T08:35:39.903] [INFO] cheese - inserting 1000 documents. first: Edmond Burat de Gurgy and last: Pukarani (Potosí) +[2018-02-13T08:35:39.906] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T08:35:39.954] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:35:39.974] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:35:40.089] [INFO] cheese - inserting 1000 documents. first: Shahidul Alam and last: Cuisine of Castile-León +[2018-02-13T08:35:40.130] [INFO] cheese - inserting 1000 documents. first: Jordan Township, PA and last: Knox Township, Clarion County, PA +[2018-02-13T08:35:40.160] [INFO] cheese - inserting 1000 documents. first: Japan National Route 393 and last: Ali Azari Karki +[2018-02-13T08:35:40.167] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:35:40.259] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:35:40.299] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:35:40.329] [INFO] cheese - inserting 1000 documents. first: Administrative aide and last: Jéfferson Pérez +[2018-02-13T08:35:40.417] [INFO] cheese - inserting 1000 documents. first: Objects of labour and last: Jacky Chamoun +[2018-02-13T08:35:40.429] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:35:40.471] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:35:40.503] [INFO] cheese - inserting 1000 documents. first: Helpless and last: Mystic (singer) +[2018-02-13T08:35:40.533] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Jeju Province and last: Sgurr an Utha and Fraoch-bheinn +[2018-02-13T08:35:40.553] [INFO] cheese - inserting 1000 documents. first: Attribute certificate and last: Fagot +[2018-02-13T08:35:40.586] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:35:40.594] [INFO] cheese - inserting 1000 documents. first: Feeder (livestock equipment) and last: Nathan Orf +[2018-02-13T08:35:40.600] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T08:35:40.616] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:35:40.684] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:35:40.785] [INFO] cheese - inserting 1000 documents. first: 7RM and last: Oxyophthalmellus somalicus +[2018-02-13T08:35:40.840] [INFO] cheese - inserting 1000 documents. first: Dobříš and last: Emomali Sharipani Ramona +[2018-02-13T08:35:40.856] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:35:40.892] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Abusefilter-ANIbugnotice and last: Cyana obscura +[2018-02-13T08:35:40.893] [INFO] cheese - inserting 1000 documents. first: Lauderdale County, AL and last: Little Wolf, WI +[2018-02-13T08:35:40.916] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T08:35:40.964] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:35:40.971] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T08:35:41.000] [INFO] cheese - inserting 1000 documents. first: SRAS and last: File:Kuttiyattu paradevada temple1.jpg +[2018-02-13T08:35:41.069] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:35:41.102] [INFO] cheese - inserting 1000 documents. first: Baron Wilson of High Wray and last: 6th Corps +[2018-02-13T08:35:41.112] [INFO] cheese - inserting 1000 documents. first: Fatigue jacket and last: Ann Rutledge (Amtrak) +[2018-02-13T08:35:41.153] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:35:41.207] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:35:41.216] [INFO] cheese - inserting 1000 documents. first: Little York, IL and last: Character entity reference +[2018-02-13T08:35:41.272] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T08:35:41.293] [INFO] cheese - inserting 1000 documents. first: Lužani (Derventa) and last: Sixty-third subharmonic +[2018-02-13T08:35:41.398] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:35:41.417] [INFO] cheese - inserting 1000 documents. first: Yard number and last: Kim A-Lang +[2018-02-13T08:35:41.457] [INFO] cheese - inserting 1000 documents. first: Oxyophthalmellus rehni and last: Edmond Paea +[2018-02-13T08:35:41.496] [INFO] cheese - inserting 1000 documents. first: Euxoa rossica and last: Rafael Pereira da Silva (Manchester United) +[2018-02-13T08:35:41.515] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:35:41.561] [INFO] cheese - inserting 1000 documents. first: The National Organisation for Scouts and Guides and last: High & Mighty +[2018-02-13T08:35:41.595] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:35:41.597] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:35:41.716] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:35:41.730] [INFO] cheese - inserting 1000 documents. first: L.H.O.O.Q. and last: Tert-Butylamine +[2018-02-13T08:35:41.819] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:35:41.887] [INFO] cheese - inserting 1000 documents. first: Harry Connick, Jr. and last: List of people with last name Englefield +[2018-02-13T08:35:41.888] [INFO] cheese - inserting 1000 documents. first: Ganiklis and last: Schism fanzine +[2018-02-13T08:35:41.895] [INFO] cheese - inserting 1000 documents. first: CUNA Credit Union and last: Raï'n'B +[2018-02-13T08:35:41.934] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:35:41.991] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:35:42.009] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:35:42.070] [INFO] cheese - inserting 1000 documents. first: CHERUB: Black Friday and last: Bufkan +[2018-02-13T08:35:42.125] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:35:42.130] [INFO] cheese - inserting 1000 documents. first: List of people with last name Entwistle and last: List of people with the last name Dunn +[2018-02-13T08:35:42.151] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T08:35:42.228] [INFO] cheese - inserting 1000 documents. first: Peter Kelder (soap character) and last: 15053 Bochnicek +[2018-02-13T08:35:42.297] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:35:42.318] [INFO] cheese - inserting 1000 documents. first: Marquette (town), Green Lake County, WI and last: Menomonie, WI +[2018-02-13T08:35:42.359] [INFO] cheese - inserting 1000 documents. first: Template:MeSH number and last: Gallowglass +[2018-02-13T08:35:42.374] [INFO] cheese - inserting 1000 documents. first: List of people with the last name Durston and last: People with last name Cruise +[2018-02-13T08:35:42.377] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T08:35:42.387] [INFO] cheese - inserting 1000 documents. first: They (pronoun) and last: The Red Jumpsuit Apparatus (demo) +[2018-02-13T08:35:42.419] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T08:35:42.438] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:35:42.467] [INFO] cheese - inserting 1000 documents. first: Edward Paea and last: Vincenzo Puccitta +[2018-02-13T08:35:42.499] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:35:42.580] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:35:42.584] [INFO] cheese - inserting 1000 documents. first: Rai'n'B and last: Conrad Kilian +[2018-02-13T08:35:42.604] [INFO] cheese - inserting 1000 documents. first: Template:Canvey Island Independent Party/meta/shortname and last: Category:Hydroelectric power stations in Belize +[2018-02-13T08:35:42.611] [INFO] cheese - inserting 1000 documents. first: People with last name Cruse and last: People with the last name Clark +[2018-02-13T08:35:42.630] [INFO] cheese - batch complete in: 0.21 secs +[2018-02-13T08:35:42.656] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:35:42.658] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:35:42.735] [INFO] cheese - inserting 1000 documents. first: Menomonie (city), Dunn County, WI and last: Fra Mauro +[2018-02-13T08:35:42.764] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T08:35:42.843] [INFO] cheese - inserting 1000 documents. first: 15034 Decines and last: File:Hood & Pen - Daikaiju! Giant Monster Tales Coverart.png +[2018-02-13T08:35:42.846] [INFO] cheese - inserting 1000 documents. first: Katrin Velkova and last: Burdon (last name) +[2018-02-13T08:35:42.858] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T08:35:42.885] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:35:42.951] [INFO] cheese - inserting 1000 documents. first: Hinukh people and last: File:Journler Icon.png +[2018-02-13T08:35:42.981] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T08:35:43.035] [INFO] cheese - inserting 1000 documents. first: Monroeville, PA and last: Crash (Dave Matthews Band album) +[2018-02-13T08:35:43.046] [INFO] cheese - inserting 1000 documents. first: Cesare Mariani and last: Delphic of Gamma Sigma Tau +[2018-02-13T08:35:43.048] [INFO] cheese - inserting 1000 documents. first: Molecular tagging velocimetry and last: Émile Georget +[2018-02-13T08:35:43.070] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T08:35:43.106] [INFO] cheese - inserting 1000 documents. first: Burgess (last name) and last: Mityana Hospital +[2018-02-13T08:35:43.118] [INFO] cheese - inserting 1000 documents. first: List of theatres and concert halls in Madrid and last: Terrorism in Poland +[2018-02-13T08:35:43.118] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:35:43.127] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T08:35:43.156] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:35:43.203] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:35:43.266] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Group-autoreviewer/simple and last: Category:Davis & Elkins College faculty +[2018-02-13T08:35:43.514] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/1bonus1.com and last: Chitralekha(deity) +[2018-02-13T08:35:43.515] [INFO] cheese - inserting 1000 documents. first: Ariel (novel series) and last: Template:Administrative levels of Romania (sidebar) +[2018-02-13T08:35:43.538] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:35:43.609] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:35:43.763] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:35:43.816] [INFO] cheese - inserting 1000 documents. first: Yves Bélanger (ice hockey) and last: Category:Sport in Worcester +[2018-02-13T08:35:43.816] [INFO] cheese - inserting 1000 documents. first: Nazlini, AZ and last: Nordick Township, MN +[2018-02-13T08:35:43.863] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:35:43.897] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:35:44.002] [INFO] cheese - inserting 1000 documents. first: File:Improv performing at banglore.jpg and last: Igor Dima +[2018-02-13T08:35:44.006] [INFO] cheese - inserting 1000 documents. first: Martina Müller-Skibbe and last: Category:2016 elections in Turkey +[2018-02-13T08:35:44.050] [INFO] cheese - inserting 1000 documents. first: You Wanna? and last: Thomas' Christmas Wonderland & Other Thomas Adventures +[2018-02-13T08:35:44.067] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:35:44.080] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:35:44.163] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:35:44.309] [INFO] cheese - inserting 1000 documents. first: Deramciclane and last: Thompson Twins - Greatest Hits +[2018-02-13T08:35:44.309] [INFO] cheese - inserting 1000 documents. first: Nordland Township, Aitkin County, MN and last: Okmulgee, OK +[2018-02-13T08:35:44.340] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T08:35:44.411] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:35:44.437] [INFO] cheese - inserting 1000 documents. first: The Chosen (Ricardo Pinto) and last: Portal:Rwanda/Selected panorama +[2018-02-13T08:35:44.531] [INFO] cheese - inserting 1000 documents. first: Masonic Temple (Burlington, Vermont) and last: Lala de Cizique +[2018-02-13T08:35:44.549] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:35:44.637] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:35:44.666] [INFO] cheese - inserting 1000 documents. first: Sterling Institute of Relationship and last: File:Concavemirror raydiagram F.gif +[2018-02-13T08:35:44.760] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:35:44.783] [INFO] cheese - inserting 1000 documents. first: Coolie (Malayalam film) and last: Glen Ellyn (Metra) +[2018-02-13T08:35:44.803] [INFO] cheese - inserting 1000 documents. first: Category:2012 elections in Turkey and last: Hey Ma +[2018-02-13T08:35:44.883] [INFO] cheese - inserting 1000 documents. first: Okmulgee County, OK and last: Panama, IL +[2018-02-13T08:35:44.904] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:35:44.910] [INFO] cheese - batch complete in: 0.569 secs +[2018-02-13T08:35:44.960] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:35:45.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jim Gary and last: Groep T +[2018-02-13T08:35:45.114] [INFO] cheese - inserting 1000 documents. first: Category:Ranma ½ element redirects to lists and last: Indian logics +[2018-02-13T08:35:45.137] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:35:45.202] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:35:45.218] [INFO] cheese - inserting 1000 documents. first: Alexander's Bush Squirrel and last: Betty Tylden +[2018-02-13T08:35:45.264] [INFO] cheese - inserting 1000 documents. first: Category:Fictional survivalists and last: Haywood (family name) +[2018-02-13T08:35:45.285] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T08:35:45.291] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:35:45.400] [INFO] cheese - inserting 1000 documents. first: Hogwarts subjects and last: Great Influenza Pandemic +[2018-02-13T08:35:45.438] [INFO] cheese - inserting 1000 documents. first: Sam Marata and last: Amata stenoptera +[2018-02-13T08:35:45.461] [INFO] cheese - inserting 1000 documents. first: Acid strength and last: Ifuraces +[2018-02-13T08:35:45.467] [INFO] cheese - inserting 1000 documents. first: Wittgenstein rod and last: Delta-system lemma +[2018-02-13T08:35:45.483] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:35:45.528] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:35:45.536] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:35:45.533] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:35:45.594] [INFO] cheese - inserting 1000 documents. first: Hazell (family name) and last: Thomas Austin (cricketer) +[2018-02-13T08:35:45.680] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T08:35:45.757] [INFO] cheese - inserting 1000 documents. first: Christopher Simonsen Fougner and last: RMIT Vietnam +[2018-02-13T08:35:45.789] [INFO] cheese - inserting 1000 documents. first: File:Peaches-Talk-to-Me.jpg and last: James Walter Reeves +[2018-02-13T08:35:45.844] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:35:45.890] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:35:45.940] [INFO] cheese - inserting 1000 documents. first: Mixi and last: Avanti! (Italian newspaper) +[2018-02-13T08:35:46.041] [INFO] cheese - inserting 1000 documents. first: Amata stictoptera and last: Elka discography +[2018-02-13T08:35:46.047] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:35:46.098] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:35:46.144] [INFO] cheese - inserting 1000 documents. first: Mrs. Loring's Secret and last: Template:Mycologist/doc +[2018-02-13T08:35:46.208] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:35:46.232] [INFO] cheese - inserting 1000 documents. first: Food safety in China and last: List of athletes from Alaska +[2018-02-13T08:35:46.324] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:35:46.339] [INFO] cheese - inserting 1000 documents. first: Laid Low (EP) and last: Template:Bluebook website/testcases +[2018-02-13T08:35:46.341] [INFO] cheese - inserting 1000 documents. first: Cathal mac Domhnall Ua Conchobair and last: Seavey House +[2018-02-13T08:35:46.347] [INFO] cheese - inserting 1000 documents. first: UMkhuze Game Reserve and last: Peridot, AZ +[2018-02-13T08:35:46.407] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:35:46.407] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:35:46.510] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:35:46.595] [INFO] cheese - inserting 1000 documents. first: Chotur and last: Wikipedia:Mediation Cabal/Cases/2008-07-27 Articles for deletion/Characters and groups in Bionicle +[2018-02-13T08:35:46.671] [INFO] cheese - inserting 1000 documents. first: Nick (Pakistan) and last: Deh-e Ra'is +[2018-02-13T08:35:46.744] [INFO] cheese - batch complete in: 0.9 secs +[2018-02-13T08:35:46.747] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:35:46.899] [INFO] cheese - inserting 1000 documents. first: E.M.W. Tillyard and last: Sonority Sequencing Principle +[2018-02-13T08:35:46.955] [INFO] cheese - inserting 1000 documents. first: Perkasie, PA and last: Port Wing, WI +[2018-02-13T08:35:46.999] [INFO] cheese - inserting 1000 documents. first: Cardiff, United Kingdom and last: 47 Brand +[2018-02-13T08:35:47.016] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:35:47.050] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:35:47.089] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:35:47.099] [INFO] cheese - inserting 1000 documents. first: 2000 Speed World Challenge season and last: File:All-Time Greatest Hits (Ray Stevens album).jpeg +[2018-02-13T08:35:47.189] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:35:47.197] [INFO] cheese - inserting 1000 documents. first: Mannington Mine disaster and last: Reason (program) +[2018-02-13T08:35:47.276] [INFO] cheese - inserting 1000 documents. first: Deh-e Ra'is-e Garuk and last: Abramov, Vitaliy +[2018-02-13T08:35:47.317] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:35:47.374] [INFO] cheese - inserting 1000 documents. first: Portage, IN and last: Reno, Parker County, TX +[2018-02-13T08:35:47.389] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:35:47.438] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T08:35:47.586] [INFO] cheese - inserting 1000 documents. first: 1960 San Francisco 49ers season and last: La Schelle Tarver +[2018-02-13T08:35:47.620] [INFO] cheese - inserting 1000 documents. first: Template:SA Rugby Results/doc and last: Category:Belgian Pro League players +[2018-02-13T08:35:47.641] [INFO] cheese - inserting 1000 documents. first: Hall of fame racing and last: See the Bombers Fly Up +[2018-02-13T08:35:47.658] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:35:47.698] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:35:47.705] [INFO] cheese - inserting 1000 documents. first: Tim Dudfield and last: Ross Township, MI +[2018-02-13T08:35:47.737] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:35:47.781] [INFO] cheese - inserting 1000 documents. first: Abramov, Yevda and last: PPcoin +[2018-02-13T08:35:47.786] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T08:35:47.815] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tiffany Taylor (pornographic actress) and last: Richard Silcock +[2018-02-13T08:35:47.843] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T08:35:47.898] [INFO] cheese - inserting 1000 documents. first: Keep on Walking (CD) and last: Tert-butylamine +[2018-02-13T08:35:47.902] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:35:47.979] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:35:48.099] [INFO] cheese - inserting 1000 documents. first: Ross Township, MN and last: Santa Claus, GA +[2018-02-13T08:35:48.133] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T08:35:48.188] [INFO] cheese - inserting 1000 documents. first: Category:Belgian Second Division players and last: Category:Albania entertainment templates +[2018-02-13T08:35:48.244] [INFO] cheese - inserting 1000 documents. first: Tanjung Ipoh and last: Joachim Fernández +[2018-02-13T08:35:48.233] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:35:48.265] [INFO] cheese - inserting 1000 documents. first: Praepositus sacri palatii and last: Osvaldo Félix Souza +[2018-02-13T08:35:48.380] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:35:48.406] [INFO] cheese - batch complete in: 1.999 secs +[2018-02-13T08:35:48.410] [INFO] cheese - inserting 1000 documents. first: Occupy ucd and last: IdeaPlane +[2018-02-13T08:35:48.441] [INFO] cheese - inserting 1000 documents. first: Template:User CRS and last: Wikipedia:Articles for deletion/List of English words of Romanian origin +[2018-02-13T08:35:48.514] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:35:48.517] [INFO] cheese - inserting 1000 documents. first: Mangalore Express and last: Hungary women's national goalball team +[2018-02-13T08:35:48.582] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:35:48.641] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:35:48.663] [INFO] cheese - inserting 1000 documents. first: Muhilankudieruppu and last: File:EvoTerra.jpg +[2018-02-13T08:35:48.759] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:35:48.804] [INFO] cheese - inserting 1000 documents. first: Eagle Lake (Fish River) and last: Pink Ocean (EP) +[2018-02-13T08:35:48.825] [INFO] cheese - inserting 1000 documents. first: Category:Aitkin County, Minnesota and last: Sharpsburg, PA +[2018-02-13T08:35:48.919] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:35:48.992] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:35:49.085] [INFO] cheese - inserting 1000 documents. first: Exercise Summer Pulse and last: EllisDon +[2018-02-13T08:35:49.106] [INFO] cheese - inserting 1000 documents. first: Numantianus and last: Wikipedia:Articles for deletion/Live in Montecarlo +[2018-02-13T08:35:49.166] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:35:49.170] [INFO] cheese - batch complete in: 0.79 secs +[2018-02-13T08:35:49.216] [INFO] cheese - inserting 1000 documents. first: Riverdale (Metra) and last: Wikipedia:Reference desk/Archives/Language/2014 February 8 +[2018-02-13T08:35:49.247] [INFO] cheese - inserting 1000 documents. first: Somma-Vesuvio and last: Pam Ann +[2018-02-13T08:35:49.255] [INFO] cheese - inserting 1000 documents. first: Design Assist and last: File:JetsNow&Then.jpg +[2018-02-13T08:35:49.270] [INFO] cheese - inserting 1000 documents. first: Lamrim and last: South Pymatuning Township, PA +[2018-02-13T08:35:49.323] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T08:35:49.326] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:35:49.356] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:35:49.379] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:35:49.610] [INFO] cheese - inserting 1000 documents. first: NGC 7252 and last: Maria Sergeeva +[2018-02-13T08:35:49.632] [INFO] cheese - inserting 1000 documents. first: South Range, MI and last: Stoddard, WI +[2018-02-13T08:35:49.633] [INFO] cheese - inserting 1000 documents. first: John de Gruchy and last: Ubisoft Ukraine +[2018-02-13T08:35:49.666] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T08:35:49.668] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:35:49.700] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:35:49.813] [INFO] cheese - inserting 1000 documents. first: Sahara Force India and last: Category:Mac OS graphics software +[2018-02-13T08:35:49.856] [INFO] cheese - inserting 1000 documents. first: Suarăș and last: 1937 Eastern Suburbs DRLFC season +[2018-02-13T08:35:49.921] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:35:49.935] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Barrett M82 and last: Konrad Wysocki +[2018-02-13T08:35:49.935] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:35:49.952] [INFO] cheese - inserting 1000 documents. first: Carissa Putri and last: K.P. Ummer +[2018-02-13T08:35:50.020] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:35:50.027] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:35:50.108] [INFO] cheese - inserting 1000 documents. first: Stoddard County, MO and last: Estelle Leonard +[2018-02-13T08:35:50.178] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:35:50.280] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Delhi and last: Shahi-Kot Valley +[2018-02-13T08:35:50.287] [INFO] cheese - inserting 1000 documents. first: 1605 in art and last: Kurt Enoch Stenberg +[2018-02-13T08:35:50.308] [INFO] cheese - inserting 1000 documents. first: Cassida affinis and last: Category:Banks disestablished in 1845 +[2018-02-13T08:35:50.355] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:35:50.391] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:35:50.399] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:35:50.510] [INFO] cheese - inserting 1000 documents. first: Eupoecilia anebrica and last: Feel Like Fame +[2018-02-13T08:35:50.567] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:35:50.613] [INFO] cheese - inserting 1000 documents. first: Ur-du-kuga and last: Maurice Noguès +[2018-02-13T08:35:50.683] [INFO] cheese - batch complete in: 0.762 secs +[2018-02-13T08:35:50.698] [INFO] cheese - inserting 1000 documents. first: Bertone and last: File:Folk-sandstone.classification.png +[2018-02-13T08:35:50.767] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:35:50.785] [INFO] cheese - inserting 1000 documents. first: Portal:Transport/Selected anniversaries/August 3 and last: Template:Lubartów-geo-stub +[2018-02-13T08:35:50.861] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:35:50.907] [INFO] cheese - inserting 1000 documents. first: Sungai Besi (federal constituency) and last: Donald Anderson McGavran +[2018-02-13T08:35:50.955] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:35:50.963] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (earth) and last: Brace for impact +[2018-02-13T08:35:50.990] [INFO] cheese - inserting 1000 documents. first: It Was a Business Doing Pleasure and last: Ivan Ilich +[2018-02-13T08:35:51.008] [INFO] cheese - inserting 1000 documents. first: File:AajKaArjun.jpg and last: Category:Tourism in Mauritania +[2018-02-13T08:35:51.041] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:35:51.077] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:35:51.131] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:35:51.172] [INFO] cheese - inserting 1000 documents. first: KFKF-FM and last: Heroes of the East +[2018-02-13T08:35:51.261] [INFO] cheese - inserting 1000 documents. first: Order of Friendship (Vietnam) and last: File:Rush x files.jpg +[2018-02-13T08:35:51.276] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:35:51.384] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:35:51.461] [INFO] cheese - inserting 1000 documents. first: Battle of Tsushima strait and last: Fellowship of the ring soundtrack +[2018-02-13T08:35:51.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The GOAT Store and last: Wólka Rozwadowska +[2018-02-13T08:35:51.548] [INFO] cheese - inserting 1000 documents. first: File:James Yoxall.jpg and last: All the King's Horses (Grover Washington, Jr. album) +[2018-02-13T08:35:51.554] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:35:51.592] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:35:51.665] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:35:51.739] [INFO] cheese - inserting 1000 documents. first: Daniel Muzito and last: Abreu, Átila +[2018-02-13T08:35:51.789] [INFO] cheese - inserting 1000 documents. first: Sunday morning cartoon and last: Fairchild Industries FH-1100 +[2018-02-13T08:35:51.910] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:35:52.028] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:35:52.058] [INFO] cheese - inserting 1000 documents. first: Brace procedure and last: USS Tortuga +[2018-02-13T08:35:52.084] [INFO] cheese - inserting 1000 documents. first: ISRG and last: Father John Dear +[2018-02-13T08:35:52.197] [INFO] cheese - inserting 1000 documents. first: I I Chundrigar and last: Template:Catawba Indians football coach navbox +[2018-02-13T08:35:52.255] [INFO] cheese - batch complete in: 1.178 secs +[2018-02-13T08:35:52.262] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:35:52.368] [INFO] cheese - batch complete in: 0.984 secs +[2018-02-13T08:35:52.411] [INFO] cheese - inserting 1000 documents. first: Symphony No. 1 (Schubert) and last: Portal:Schools/Selected picture/9 +[2018-02-13T08:35:52.441] [INFO] cheese - inserting 1000 documents. first: Seascraper and last: John Charlton (disambiguation) +[2018-02-13T08:35:52.462] [INFO] cheese - inserting 1000 documents. first: Abreu, Cláudia and last: Experimental range +[2018-02-13T08:35:52.535] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:35:52.541] [INFO] cheese - inserting 1000 documents. first: File:A Moon Shaped Pool.jpg and last: Common nettle-tap +[2018-02-13T08:35:52.540] [INFO] cheese - batch complete in: 0.985 secs +[2018-02-13T08:35:52.623] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:35:52.677] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:35:52.904] [INFO] cheese - inserting 1000 documents. first: Church of Peace (Potsdam) and last: Námata +[2018-02-13T08:35:52.942] [INFO] cheese - inserting 1000 documents. first: D. Gale Johnson and last: Adam-Pierre de La Grené +[2018-02-13T08:35:53.000] [INFO] cheese - inserting 1000 documents. first: Chopin's heart and last: File:BugMafiaPanaCandMoarteaNeVaDesparti.ogg +[2018-02-13T08:35:52.993] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:35:53.030] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:35:53.059] [INFO] cheese - inserting 1000 documents. first: Industrial plasticine and last: Template:Libertarianz/meta/color +[2018-02-13T08:35:53.112] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:35:53.116] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steve Corcoran and last: Category:LA Galaxy players +[2018-02-13T08:35:53.163] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:35:53.173] [INFO] cheese - inserting 1000 documents. first: Justice Ingram (disambiguation) and last: Category:Zhengzhou University +[2018-02-13T08:35:53.179] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:35:53.188] [INFO] cheese - inserting 1000 documents. first: ACCENT Speakers Bureau and last: Kopczany +[2018-02-13T08:35:53.259] [INFO] cheese - inserting 1000 documents. first: File:St Mary Cathedral Calgary front statue.jpg and last: Roderick at Random +[2018-02-13T08:35:53.278] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:35:53.305] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:35:53.345] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:35:53.537] [INFO] cheese - inserting 1000 documents. first: Monkey Magic (arcade game) and last: Educational Service Districts in Washington +[2018-02-13T08:35:53.592] [INFO] cheese - inserting 1000 documents. first: Costica Canacheu and last: CRDA CANT Z.506 +[2018-02-13T08:35:53.605] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:35:53.686] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:35:53.717] [INFO] cheese - inserting 1000 documents. first: Functional Capacity Evaluation and last: Ladislao Michele Zaleski +[2018-02-13T08:35:53.736] [INFO] cheese - inserting 1000 documents. first: Category:Television series produced in Toronto and last: Universidad del Valle de Atemajac +[2018-02-13T08:35:53.792] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:35:53.821] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:35:53.899] [INFO] cheese - inserting 1000 documents. first: DataMeet and last: Homshetsi dialect language +[2018-02-13T08:35:53.928] [INFO] cheese - inserting 1000 documents. first: DFW Toros and last: Henrykowo, Podlaskie Voivodeship +[2018-02-13T08:35:53.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jacobo Ríos and last: Siam Empire +[2018-02-13T08:35:53.950] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:35:54.013] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:35:54.060] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:35:54.180] [INFO] cheese - inserting 1000 documents. first: Kuzan-e Olya and last: Category:People from Pisco, Peru +[2018-02-13T08:35:54.247] [INFO] cheese - inserting 1000 documents. first: Dent (fell) and last: Louis MacNeice +[2018-02-13T08:35:54.271] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:35:54.312] [INFO] cheese - inserting 1000 documents. first: Jane loop and last: Jon Hepworth +[2018-02-13T08:35:54.328] [INFO] cheese - inserting 1000 documents. first: Miracle of Dunkirk and last: Blue Mountains Grammar School +[2018-02-13T08:35:54.349] [INFO] cheese - batch complete in: 1.004 secs +[2018-02-13T08:35:54.366] [INFO] cheese - inserting 1000 documents. first: Too Cool To Be Forgotten and last: John Beswick (politician) +[2018-02-13T08:35:54.383] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:35:54.431] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:35:54.477] [INFO] cheese - inserting 1000 documents. first: Monica Kalondo and last: Peirre Omidyar +[2018-02-13T08:35:54.522] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:35:54.558] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:35:54.661] [INFO] cheese - inserting 1000 documents. first: Izoby and last: SWEAT (hypothesis) +[2018-02-13T08:35:54.718] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:35:54.743] [INFO] cheese - inserting 1000 documents. first: Category:World Fantasy Award winners and last: Hupogrammos Disciple's +[2018-02-13T08:35:54.779] [INFO] cheese - inserting 1000 documents. first: Category:People from San Ignacio, Paraguay and last: J. H. Delorey +[2018-02-13T08:35:54.806] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:35:54.860] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:35:54.914] [INFO] cheese - inserting 1000 documents. first: Boesio and last: Halbturn +[2018-02-13T08:35:54.923] [INFO] cheese - inserting 1000 documents. first: Thinicola and last: Wikipedia:Articles for deletion/Ben Briley +[2018-02-13T08:35:54.985] [INFO] cheese - inserting 1000 documents. first: Ragged Lake (Maine) and last: File:Kouvot logo 2016.png +[2018-02-13T08:35:54.978] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:35:55.028] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:35:55.152] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:35:55.182] [INFO] cheese - inserting 1000 documents. first: Richard John Beswick and last: NY 2 (1927–1939) +[2018-02-13T08:35:55.185] [INFO] cheese - inserting 1000 documents. first: Agasta Christie and last: Dreadnought! +[2018-02-13T08:35:55.257] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:35:55.271] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:35:55.375] [INFO] cheese - inserting 1000 documents. first: Bernadette Porter and last: Stefan Dötzler +[2018-02-13T08:35:55.398] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T08:35:55.407] [INFO] cheese - inserting 1000 documents. first: Traumatologists and last: Tonight (1957 TV series) +[2018-02-13T08:35:55.428] [INFO] cheese - inserting 1000 documents. first: Unterstraße and last: Giuseppe Ferrandino +[2018-02-13T08:35:55.448] [INFO] cheese - inserting 1000 documents. first: Frederick Louis MacNeice and last: Langbaurgh +[2018-02-13T08:35:55.466] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:35:55.481] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:35:55.634] [INFO] cheese - batch complete in: 1.285 secs +[2018-02-13T08:35:55.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/411 and last: Wikipedia:Pokémon Collaborative Project/List of articles +[2018-02-13T08:35:55.749] [INFO] cheese - inserting 1000 documents. first: File:Kempston-micro-electronics-logo.png and last: South West 2 East +[2018-02-13T08:35:55.752] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:35:55.768] [INFO] cheese - inserting 1000 documents. first: Cardiff Waterbus and last: Subtle +[2018-02-13T08:35:55.829] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:35:55.848] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:35:55.860] [INFO] cheese - inserting 1000 documents. first: Apache Apex and last: Marusya Bociurkiw +[2018-02-13T08:35:55.931] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:35:55.994] [INFO] cheese - inserting 1000 documents. first: Template:Unity (Hungary)/meta/shortname and last: Purtow +[2018-02-13T08:35:56.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Trickietrickie/Archive and last: 2007–08 A.F.C. Bournemouth season +[2018-02-13T08:35:56.050] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:35:56.064] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:35:56.131] [INFO] cheese - inserting 1000 documents. first: File:WKO logo.PNG and last: The Exiles (Space: 1999) +[2018-02-13T08:35:56.182] [INFO] cheese - inserting 1000 documents. first: ANBO 41 and last: File:Jefferson Blvd South.jpg +[2018-02-13T08:35:56.198] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:35:56.235] [INFO] cheese - inserting 1000 documents. first: Category:People from Florence County, Wisconsin and last: CCAMLR Ecosystem Monitoring Programme +[2018-02-13T08:35:56.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/woodtreks.com and last: Rajsk +[2018-02-13T08:35:56.256] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:35:56.290] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T08:35:56.307] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T08:35:56.397] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2012 January 4 and last: Madhupur, India (disambiguation) +[2018-02-13T08:35:56.426] [INFO] cheese - inserting 1000 documents. first: Morris Hudson and last: Martha Euphemia Lofton Haynes +[2018-02-13T08:35:56.429] [INFO] cheese - inserting 1000 documents. first: Battle of Stepney and last: H. G. Van de Sande Bakhuyzen +[2018-02-13T08:35:56.439] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T08:35:56.477] [INFO] cheese - inserting 1000 documents. first: File:Chien-Ying Chang02.jpg and last: El Rey (Tito Puente album) +[2018-02-13T08:35:56.482] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T08:35:56.514] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:35:56.533] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:35:56.682] [INFO] cheese - inserting 1000 documents. first: Ishamael ax and last: Aashirwaad +[2018-02-13T08:35:56.718] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:35:56.730] [INFO] cheese - inserting 1000 documents. first: Csávoly and last: File:Marlon PE.jpg +[2018-02-13T08:35:56.733] [INFO] cheese - inserting 1000 documents. first: CCAMLR Ecosystem Monitoring Program and last: Breže, Ribnica +[2018-02-13T08:35:56.746] [INFO] cheese - inserting 1000 documents. first: Rzepniewo and last: Gnilec +[2018-02-13T08:35:56.769] [INFO] cheese - inserting 1000 documents. first: Madonna del Prato (disambiguation) and last: File:AAIC.gif +[2018-02-13T08:35:56.779] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:35:56.798] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:35:56.798] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:35:56.829] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T08:35:56.869] [INFO] cheese - inserting 1000 documents. first: Hussain as Waris-e-Anbia and last: Aragonese nationalism +[2018-02-13T08:35:56.930] [INFO] cheese - inserting 1000 documents. first: Tropeiro seedeater and last: Kandy Hospital +[2018-02-13T08:35:56.951] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:35:57.083] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:35:57.223] [INFO] cheese - inserting 1000 documents. first: SMS Greif and last: Zero Divide: The Final Conflict +[2018-02-13T08:35:57.239] [INFO] cheese - inserting 1000 documents. first: (5) Astraea and last: United Democrats +[2018-02-13T08:35:57.265] [INFO] cheese - inserting 1000 documents. first: 1964 Brinks Hotel bombing and last: Wikipedia:Version 1.0 Editorial Team/Good Charlotte articles by quality log +[2018-02-13T08:35:57.273] [INFO] cheese - inserting 1000 documents. first: Grenvillites and last: List of early-modern journals +[2018-02-13T08:35:57.277] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:35:57.322] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:35:57.330] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:35:57.336] [INFO] cheese - inserting 1000 documents. first: Periyakulam (Lok Sabha constituency) and last: File:Edgewater Plant.jpg +[2018-02-13T08:35:57.341] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:35:57.427] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:35:57.475] [INFO] cheese - inserting 1000 documents. first: List of Scottish football transfers summer 2016 and last: Syracuse Orange women's tennis +[2018-02-13T08:35:57.496] [INFO] cheese - inserting 1000 documents. first: Royal Spanish Football Federation and last: Dave Clark (soul musician) +[2018-02-13T08:35:57.584] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:35:57.593] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:35:57.667] [INFO] cheese - inserting 1000 documents. first: Template:Albany Great Danes men's basketball template and last: Lifestyle advice +[2018-02-13T08:35:57.731] [INFO] cheese - inserting 1000 documents. first: Joe Roman and last: Polonskyi Raion +[2018-02-13T08:35:57.742] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:35:57.813] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics German Type UB I submarines good content and last: Annette Dasch +[2018-02-13T08:35:57.785] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:35:57.873] [INFO] cheese - inserting 1000 documents. first: Motorola Motofone and last: Danny bonaduce +[2018-02-13T08:35:57.940] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:35:57.960] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:35:58.043] [INFO] cheese - inserting 1000 documents. first: Build Service and last: E93 +[2018-02-13T08:35:58.117] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:35:58.123] [INFO] cheese - inserting 1000 documents. first: Madras College and last: GNLU +[2018-02-13T08:35:58.210] [INFO] cheese - inserting 1000 documents. first: Georgia State Panthers women's tennis and last: Category:Populated places in Luzon +[2018-02-13T08:35:58.248] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:35:58.339] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:35:58.349] [INFO] cheese - inserting 1000 documents. first: Star-Spangled Kid and last: Social policy +[2018-02-13T08:35:58.450] [INFO] cheese - inserting 1000 documents. first: McKinley Township (disambiguation) and last: Spandau Type 3 20mm cannon +[2018-02-13T08:35:58.493] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:35:58.550] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:35:58.658] [INFO] cheese - inserting 1000 documents. first: Bonne of Artois and last: Jaguaré, Espírito Santo +[2018-02-13T08:35:58.659] [INFO] cheese - inserting 1000 documents. first: Martha McLean - Anza Narrows Park and last: Burlington Northern Depot +[2018-02-13T08:35:58.665] [INFO] cheese - inserting 1000 documents. first: Scantling draft and last: Wolf Boy +[2018-02-13T08:35:58.674] [INFO] cheese - inserting 1000 documents. first: Mandarthi and last: Felix Houphouet Boigny +[2018-02-13T08:35:58.721] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:35:58.726] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:35:58.752] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:35:58.754] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:35:58.867] [INFO] cheese - inserting 1000 documents. first: Star Wars: The Empire Strikes Back (1992 video game) and last: Category:Currencies of the United States +[2018-02-13T08:35:58.877] [INFO] cheese - inserting 1000 documents. first: Roll over protection structure and last: Lowestoft and East Suffolk Maritime Museum +[2018-02-13T08:35:58.954] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:35:58.969] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:35:59.061] [INFO] cheese - inserting 1000 documents. first: Tinea tetricella and last: File:Luke Banned 1990 Original.jpg +[2018-02-13T08:35:59.131] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:35:59.174] [INFO] cheese - inserting 1000 documents. first: Bradford Council and last: Canadian federal election 1968 +[2018-02-13T08:35:59.218] [INFO] cheese - inserting 1000 documents. first: Jean Graton and last: AMC Amitron +[2018-02-13T08:35:59.223] [INFO] cheese - inserting 1000 documents. first: File:James Augustus Grant.jpg and last: Coffee Shop Murder Case +[2018-02-13T08:35:59.225] [INFO] cheese - inserting 1000 documents. first: Template:King George's Fields and last: Embassy of Russia in Yaoundé +[2018-02-13T08:35:59.232] [INFO] cheese - inserting 1000 documents. first: Félix Houphouët Boigny and last: Andrew McNair +[2018-02-13T08:35:59.232] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T08:35:59.288] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:35:59.290] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:35:59.311] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:35:59.307] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:35:59.407] [INFO] cheese - inserting 1000 documents. first: 47P/Ashbrook–Jackson and last: File:JimmyCC.JPG +[2018-02-13T08:35:59.461] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Chicago Justice (TV series) and last: Acacia arrecta +[2018-02-13T08:35:59.524] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:35:59.550] [INFO] cheese - inserting 1000 documents. first: Amir Suljić and last: Facial mocap +[2018-02-13T08:35:59.539] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:35:59.653] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:35:59.747] [INFO] cheese - inserting 1000 documents. first: Scar Top and last: Albert, Prince of Wales +[2018-02-13T08:35:59.867] [INFO] cheese - inserting 1000 documents. first: Oratorio Society of Chicago and last: Category:Early computers articles by quality and importance +[2018-02-13T08:35:59.898] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:35:59.918] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:35:59.969] [INFO] cheese - inserting 1000 documents. first: Category:Livetronica music groups and last: Wikipedia:WikiProject Spam/LinkReports/tienlen.net +[2018-02-13T08:36:00.053] [INFO] cheese - inserting 1000 documents. first: Detective Boys Survival Case and last: Template:Persian Gulf +[2018-02-13T08:36:00.061] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:36:00.130] [INFO] cheese - inserting 1000 documents. first: Edward Streeter and last: South African Students' Association +[2018-02-13T08:36:00.148] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:36:00.265] [INFO] cheese - inserting 1000 documents. first: Edward William Barankin and last: Olly Schoberova +[2018-02-13T08:36:00.266] [INFO] cheese - inserting 1000 documents. first: Mariyampil and last: Libya economy +[2018-02-13T08:36:00.269] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:36:00.317] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:36:00.337] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:36:00.463] [INFO] cheese - inserting 1000 documents. first: Vrbas (river) and last: Psammoperca waigiensis +[2018-02-13T08:36:00.464] [INFO] cheese - inserting 1000 documents. first: File:Reserve Forest PGR1.jpg and last: Majdan Policki +[2018-02-13T08:36:00.467] [INFO] cheese - inserting 1000 documents. first: Fourth Grade (South Park) and last: Ocnogyna valantini +[2018-02-13T08:36:00.535] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:36:00.554] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:36:00.570] [INFO] cheese - batch complete in: 1.262 secs +[2018-02-13T08:36:00.623] [INFO] cheese - inserting 1000 documents. first: 2010 Canadian Senior Curling Championships and last: 293 A.2d 747 +[2018-02-13T08:36:00.685] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Australian House of Representatives for Diamond Valley and last: File:VotB I Think I Love You.jpg +[2018-02-13T08:36:00.692] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:36:00.726] [INFO] cheese - inserting 1000 documents. first: Tanzania economy and last: The Strawberry Roan +[2018-02-13T08:36:00.742] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:36:00.770] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T08:36:00.869] [INFO] cheese - inserting 1000 documents. first: MDash and last: Category:Serbian magazines +[2018-02-13T08:36:00.957] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:36:01.019] [INFO] cheese - inserting 1000 documents. first: Cramer interpretation and last: Lloyds and Bolsa International Bank +[2018-02-13T08:36:01.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Heinz-Wolfgang Schnaufer and last: Kapeenkoski +[2018-02-13T08:36:01.078] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:36:01.157] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:36:01.241] [INFO] cheese - inserting 1000 documents. first: K257AA and last: Anti-RANKL antibody +[2018-02-13T08:36:01.243] [INFO] cheese - inserting 1000 documents. first: Crisp Gascoyne and last: Livermore Optical Transient Imaging System +[2018-02-13T08:36:01.304] [INFO] cheese - inserting 1000 documents. first: Weymouth Wildcats and last: Category:B-Class Fishing articles +[2018-02-13T08:36:01.306] [INFO] cheese - inserting 1000 documents. first: Galtieri and last: Manitoba Labour Party +[2018-02-13T08:36:01.305] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:36:01.323] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:36:01.381] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:36:01.388] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:36:01.465] [INFO] cheese - inserting 1000 documents. first: Nowiny Żukowskie and last: Judo at the 2008 Summer Olympics – Men's 100 kg +[2018-02-13T08:36:01.600] [INFO] cheese - inserting 1000 documents. first: Lloyds & Bolsa International Bank and last: Anglia Hastings & Thanet Building Society +[2018-02-13T08:36:01.609] [INFO] cheese - inserting 1000 documents. first: File:Blake, On the Balcony.jpg and last: Koloniale Tentoonstelling (1914) +[2018-02-13T08:36:01.612] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:36:01.705] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:36:01.709] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:36:01.809] [INFO] cheese - inserting 1000 documents. first: Workers' Power (UK) and last: American Beauty (Bruce Springsteen EP) +[2018-02-13T08:36:01.900] [INFO] cheese - inserting 1000 documents. first: KrohnAir and last: James Kelley House (disambiguation) +[2018-02-13T08:36:01.933] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:36:01.965] [INFO] cheese - inserting 1000 documents. first: Kulabad, Lorestan and last: Cleora repetita +[2018-02-13T08:36:01.983] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:36:02.058] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:36:02.107] [INFO] cheese - inserting 1000 documents. first: Robert Boyd Russell and last: Shadows (Wagon Christ single) +[2018-02-13T08:36:02.175] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:36:02.281] [INFO] cheese - inserting 1000 documents. first: Judo at the 2008 Summer Olympics – Men's +100 kg and last: 98th Hellenic National Guard Higher Command +[2018-02-13T08:36:02.283] [INFO] cheese - inserting 1000 documents. first: Lake Zumbra and last: List of BSA local councils and districts in Maryland +[2018-02-13T08:36:02.325] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:36:02.338] [INFO] cheese - inserting 1000 documents. first: The Firstborn Is Dead and last: André Lwoff +[2018-02-13T08:36:02.345] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:36:02.385] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/1997 September 5 and last: Nataliia Godunko +[2018-02-13T08:36:02.425] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:36:02.438] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Szczecin and last: Adrian Shooter +[2018-02-13T08:36:02.455] [INFO] cheese - inserting 1000 documents. first: Bostall Heath and Woods and last: Category:People from Jos +[2018-02-13T08:36:02.456] [INFO] cheese - inserting 1000 documents. first: Boarmia repetita and last: Der Polizeipräsident in Berlin +[2018-02-13T08:36:02.457] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:36:02.498] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:36:02.516] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:36:02.527] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:36:02.687] [INFO] cheese - inserting 1000 documents. first: Quesnel (sternwheeler) and last: US 29 in Maryland +[2018-02-13T08:36:02.713] [INFO] cheese - inserting 1000 documents. first: Youth exclusion and last: Mackovic +[2018-02-13T08:36:02.766] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:36:02.768] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T08:36:02.801] [INFO] cheese - inserting 1000 documents. first: Caminhos da Colônia and last: Marie Equi +[2018-02-13T08:36:02.875] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:36:02.882] [INFO] cheese - inserting 1000 documents. first: Karl-Heinz Ertel and last: Wikipedia:Articles for deletion/Midtown footbridge +[2018-02-13T08:36:02.906] [INFO] cheese - inserting 1000 documents. first: Historical process of beatification and canonization and last: Chilean battleship Capitán Prat +[2018-02-13T08:36:02.942] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rizwan Library and last: Jose Atienza, Jr. +[2018-02-13T08:36:02.965] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:36:03.003] [INFO] cheese - inserting 1000 documents. first: Pagara fuscipes and last: Noturus elegans +[2018-02-13T08:36:03.022] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T08:36:03.059] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:36:03.125] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:36:03.233] [INFO] cheese - inserting 1000 documents. first: Mikhael Gromov and last: Contra terrene +[2018-02-13T08:36:03.308] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:36:03.352] [INFO] cheese - inserting 1000 documents. first: National Symphony Orchestra of Cuba and last: Sylvain Deplace +[2018-02-13T08:36:03.378] [INFO] cheese - inserting 1000 documents. first: Słupie, Gmina Bakałarzewo and last: Nowe Rzepki +[2018-02-13T08:36:03.431] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:36:03.455] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:36:03.469] [INFO] cheese - inserting 1000 documents. first: Hunt, Texas and last: Commanding what is just +[2018-02-13T08:36:03.547] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Oregonia and last: Stonehaven (Media, Pennsylvania) +[2018-02-13T08:36:03.557] [INFO] cheese - inserting 1000 documents. first: Percina squamata and last: Extended System Description Table +[2018-02-13T08:36:03.574] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:36:03.606] [INFO] cheese - inserting 1000 documents. first: Ford 400 and last: W288CV +[2018-02-13T08:36:03.616] [INFO] cheese - inserting 1000 documents. first: Category:Headlands of Syria and last: Dyurtiulinsky Raion +[2018-02-13T08:36:03.627] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:36:03.638] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:36:03.668] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:36:03.699] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:36:03.886] [INFO] cheese - inserting 1000 documents. first: Nowe Żochy and last: Central American jumping pitviper +[2018-02-13T08:36:03.932] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T08:36:03.960] [INFO] cheese - inserting 1000 documents. first: Fencehouses and last: Attack of the fifty foot woman +[2018-02-13T08:36:04.020] [INFO] cheese - inserting 1000 documents. first: ESDT and last: She-balsam +[2018-02-13T08:36:04.026] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:36:04.052] [INFO] cheese - inserting 1000 documents. first: Iraqi Premier League 2001-02 and last: Bailey Junior High +[2018-02-13T08:36:04.076] [INFO] cheese - inserting 1000 documents. first: Ciro Gomes and last: Light middlewight +[2018-02-13T08:36:04.088] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T08:36:04.110] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T08:36:04.130] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:36:04.146] [INFO] cheese - inserting 1000 documents. first: Pietro Ercole Fava and last: Category:1983 establishments in Pakistan +[2018-02-13T08:36:04.171] [INFO] cheese - inserting 1000 documents. first: Shiozawa, Niigata and last: Smolyan +[2018-02-13T08:36:04.205] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:36:04.249] [INFO] cheese - inserting 1000 documents. first: Category:Baroque Revival architecture in Spain and last: Isthmura +[2018-02-13T08:36:04.281] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:36:04.318] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:36:04.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jordan sydow and last: Wikipedia:WikiProject Spam/COIReports/2008, Aug 1 +[2018-02-13T08:36:04.446] [INFO] cheese - inserting 1000 documents. first: Paweł Klisz and last: 2002 Leeward Islands Junior Championships in Athletics +[2018-02-13T08:36:04.465] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:36:04.539] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T08:36:04.597] [INFO] cheese - inserting 1000 documents. first: Steve Jensen and last: Category:Miss World 1991 delegates +[2018-02-13T08:36:04.607] [INFO] cheese - inserting 1000 documents. first: Patricia Vizitiu and last: Wikipedia:Suspected copyright violations/2010-03-19 +[2018-02-13T08:36:04.647] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:36:04.685] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:36:04.733] [INFO] cheese - inserting 1000 documents. first: Category:1986 establishments in Iran and last: Fahaheel (football club) +[2018-02-13T08:36:04.793] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:36:04.801] [INFO] cheese - inserting 1000 documents. first: City of Ekurhuleni Metropolitan Municipality and last: Category:East Carolina Pirates football coaches +[2018-02-13T08:36:04.821] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Isthmura and last: Cristóforo Chrisostome Carletti +[2018-02-13T08:36:04.879] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T08:36:04.924] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:36:05.085] [INFO] cheese - inserting 1000 documents. first: Susan Smith Blackburn Award and last: 1997 Davis Cup Europe/Africa Zone +[2018-02-13T08:36:05.097] [INFO] cheese - inserting 1000 documents. first: Arboreal decomposition and last: Wikipedia:Articles for deletion/Richard Swann +[2018-02-13T08:36:05.122] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:36:05.139] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:36:05.157] [INFO] cheese - inserting 1000 documents. first: Mahmood Mosque and last: Category:Railway lines opened in 1876 +[2018-02-13T08:36:05.274] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:36:05.285] [INFO] cheese - inserting 1000 documents. first: Expressive language disorder and last: HMS Caesar +[2018-02-13T08:36:05.312] [INFO] cheese - inserting 1000 documents. first: Roy noble and last: Black hayate +[2018-02-13T08:36:05.326] [INFO] cheese - inserting 1000 documents. first: Delaware County National Bank and last: Tinea (Eucarphia) resectella +[2018-02-13T08:36:05.369] [INFO] cheese - batch complete in: 1.088 secs +[2018-02-13T08:36:05.372] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:36:05.386] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:36:05.482] [INFO] cheese - inserting 1000 documents. first: Rhinegrave of Salm and last: Amsterdam Exhibition +[2018-02-13T08:36:05.543] [INFO] cheese - inserting 1000 documents. first: Template:Humornotsuggested and last: Palmov Victor +[2018-02-13T08:36:05.556] [INFO] cheese - inserting 1000 documents. first: Ignorance is Bliss (album) and last: Euterpe leucodrosime +[2018-02-13T08:36:05.559] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:36:05.603] [INFO] cheese - inserting 1000 documents. first: Rock The Nation and last: Maud Shackle +[2018-02-13T08:36:05.620] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:36:05.636] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:36:05.668] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:36:05.711] [INFO] cheese - inserting 1000 documents. first: Category:Railway lines opened in 1897 and last: File:Keane-Call Me What You Like.jpg +[2018-02-13T08:36:05.761] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T08:36:05.827] [INFO] cheese - inserting 1000 documents. first: 1982–83 Watford F.C. season and last: File:CanYouGiveIt.jpg +[2018-02-13T08:36:05.852] [INFO] cheese - inserting 1000 documents. first: Earth Omen and last: Demographics of the Republic of China +[2018-02-13T08:36:05.864] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T08:36:05.920] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:36:05.995] [INFO] cheese - inserting 1000 documents. first: Rangitikei by-election, 1909 and last: Thermal power station Regina Margherita +[2018-02-13T08:36:06.049] [INFO] cheese - inserting 1000 documents. first: I'm Here (film) and last: JUMPstart RNA motif +[2018-02-13T08:36:06.051] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T08:36:06.068] [INFO] cheese - inserting 1000 documents. first: Kenan and kel and last: Behrends +[2018-02-13T08:36:06.077] [INFO] cheese - inserting 1000 documents. first: Terminology Coordination Unit of the European Parliament and last: Portal:Tiruchirappalli +[2018-02-13T08:36:06.087] [INFO] cheese - inserting 1000 documents. first: Kevin rose and last: Tony Geary +[2018-02-13T08:36:06.113] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T08:36:06.128] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T08:36:06.147] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:36:06.157] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:36:06.231] [INFO] cheese - inserting 1000 documents. first: Capt. Oliver Bearse House and last: Category:List-Class Alternate History articles +[2018-02-13T08:36:06.305] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:36:06.313] [INFO] cheese - inserting 1000 documents. first: Baroness Louise Lehzen and last: Falcine +[2018-02-13T08:36:06.377] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:36:06.457] [INFO] cheese - inserting 1000 documents. first: John Lindsay, 20th Earl of Crawford and last: Wikipedia:WikiProject Video games/Peer review/Breed (video game) +[2018-02-13T08:36:06.620] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:36:06.654] [INFO] cheese - inserting 1000 documents. first: Sheffield Municipal election, 1960 and last: Same-sex marriage in Kentucky +[2018-02-13T08:36:06.752] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:36:06.767] [INFO] cheese - inserting 1000 documents. first: Cheyenne Westphal and last: Template:2016-17 Iran Pro League table +[2018-02-13T08:36:06.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RedandNater.com (2nd nomination) and last: St. John's Evangelical Lutheran Church (Springfield, Ohio) +[2018-02-13T08:36:06.846] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:36:06.875] [INFO] cheese - inserting 1000 documents. first: Shadow (Final Fantasy) and last: Paul Westerburg +[2018-02-13T08:36:06.884] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:36:06.962] [INFO] cheese - inserting 1000 documents. first: Behrens and last: Soviet coat of arms +[2018-02-13T08:36:07.031] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:36:07.050] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:36:07.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ambassadors/Courses/Psychology Capstone64APSWI999/Timeline and last: European White-front +[2018-02-13T08:36:07.141] [INFO] cheese - inserting 1000 documents. first: WTO (disambiguation) and last: B-58 +[2018-02-13T08:36:07.150] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:36:07.259] [INFO] cheese - inserting 1000 documents. first: Charles K. McNeil and last: United Nations Observer Group in Central America +[2018-02-13T08:36:07.278] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:36:07.335] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:36:07.345] [INFO] cheese - inserting 1000 documents. first: Nestor von Henko and last: Carl A. Kemme +[2018-02-13T08:36:07.410] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:36:07.453] [INFO] cheese - inserting 1000 documents. first: Template:2016-17 National League 1 Table and last: File:Crying - Don McLean.jpg +[2018-02-13T08:36:07.461] [INFO] cheese - inserting 1000 documents. first: Ramshackled and last: Peotr Kapitsa +[2018-02-13T08:36:07.512] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:36:07.515] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:36:07.552] [INFO] cheese - inserting 1000 documents. first: Superman:Speeding Bullet and last: File:Ciesa2.JPG +[2018-02-13T08:36:07.597] [INFO] cheese - inserting 1000 documents. first: Due Diligence and last: Lyse Doucet +[2018-02-13T08:36:07.604] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:36:07.647] [INFO] cheese - inserting 1000 documents. first: Greenland White-front and last: William Grieve (disambiguation) +[2018-02-13T08:36:07.673] [INFO] cheese - inserting 1000 documents. first: File:Munnar tea field.jpg and last: Mask of satan +[2018-02-13T08:36:07.675] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:36:07.706] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:36:07.711] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T08:36:07.794] [INFO] cheese - inserting 1000 documents. first: Template:Vermont Catamounts men's basketball navbox and last: Template:TFA title/March 7, 2014 +[2018-02-13T08:36:07.830] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T08:36:07.922] [INFO] cheese - inserting 1000 documents. first: Category:Honor societies and last: List of Australian divisions in WWI +[2018-02-13T08:36:07.978] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/J.A.T.D.Nishantha and last: WCPH +[2018-02-13T08:36:07.986] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:36:07.988] [INFO] cheese - inserting 1000 documents. first: Iolas blue and last: History of Berkeley, California +[2018-02-13T08:36:07.992] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Kaunas County and last: John Williams Jr +[2018-02-13T08:36:08.039] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:36:08.047] [INFO] cheese - inserting 1000 documents. first: Dospat Peak and last: Wikipedia:Articles for deletion/Water empire +[2018-02-13T08:36:08.057] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T08:36:08.072] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:36:08.080] [INFO] cheese - inserting 1000 documents. first: McJones and last: Calixto García de Luna e Izquierdo +[2018-02-13T08:36:08.116] [INFO] cheese - inserting 1000 documents. first: The mask of satan and last: Category:Egyptian chefs +[2018-02-13T08:36:08.121] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T08:36:08.182] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T08:36:08.234] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:36:08.244] [INFO] cheese - inserting 1000 documents. first: Category:SYN Media shows and last: Henry Garland Bennett +[2018-02-13T08:36:08.356] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:36:08.602] [INFO] cheese - inserting 1000 documents. first: Bergsma and last: Southern Illinois Normal College +[2018-02-13T08:36:08.653] [INFO] cheese - inserting 1000 documents. first: Arctic Air (TV series) and last: Lockheed XV-4B Hummingbird +[2018-02-13T08:36:08.658] [INFO] cheese - inserting 1000 documents. first: Power of Siberia and last: Strathcona Transit +[2018-02-13T08:36:08.680] [INFO] cheese - batch complete in: 0.641 secs +[2018-02-13T08:36:08.703] [INFO] cheese - inserting 1000 documents. first: File:CBCfront.jpg and last: Toronto Electric Light Company +[2018-02-13T08:36:08.716] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:36:08.764] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:36:08.776] [INFO] cheese - inserting 1000 documents. first: Euro 2016 squads and last: Template:Taxonomy/Toxotidae +[2018-02-13T08:36:08.792] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:36:08.828] [INFO] cheese - inserting 1000 documents. first: Nigel King and last: Donough O'Brien (cricketer) +[2018-02-13T08:36:08.883] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:36:08.941] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:36:09.024] [INFO] cheese - inserting 1000 documents. first: José Miguel Fernández and last: Eddings Point Community Praise House +[2018-02-13T08:36:09.081] [INFO] cheese - inserting 1000 documents. first: Obdurodon dicksoni and last: Binky (Harry Potter) +[2018-02-13T08:36:09.093] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:36:09.253] [INFO] cheese - batch complete in: 1.267 secs +[2018-02-13T08:36:09.361] [INFO] cheese - inserting 1000 documents. first: Nikolai Rimsky-Korsakoff and last: Atsuhiko Ejiri +[2018-02-13T08:36:09.395] [INFO] cheese - inserting 1000 documents. first: Black-eye Goby and last: Cottonwood Creek(Kern County) +[2018-02-13T08:36:09.419] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:36:09.448] [INFO] cheese - inserting 1000 documents. first: Honey Bottom and last: File:Posterreunionusx.jpg +[2018-02-13T08:36:09.462] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:36:09.501] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Toxotes and last: Category:Governors of Samsun +[2018-02-13T08:36:09.527] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:36:09.549] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:36:09.566] [INFO] cheese - inserting 1000 documents. first: Paulsgrove F.C. and last: Wikipedia:ESP/PROG +[2018-02-13T08:36:09.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/freakmuseum.blogspot.com and last: Betsinga language +[2018-02-13T08:36:09.621] [INFO] cheese - inserting 1000 documents. first: Frederick Phillips and last: Category:Nations at the Asian Games +[2018-02-13T08:36:09.642] [INFO] cheese - batch complete in: 0.85 secs +[2018-02-13T08:36:09.636] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:36:09.708] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:36:09.847] [INFO] cheese - inserting 1000 documents. first: NWCDEX and last: History of Muslim Egypt +[2018-02-13T08:36:09.865] [INFO] cheese - inserting 1000 documents. first: Mundair Kalan and last: Masa'aki Mochizuki +[2018-02-13T08:36:09.881] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T08:36:09.924] [INFO] cheese - batch complete in: 0.505 secs +[2018-02-13T08:36:09.975] [INFO] cheese - inserting 1000 documents. first: Walt Disney World Inside Out and last: Category:17th-century Indian literature +[2018-02-13T08:36:09.979] [INFO] cheese - inserting 1000 documents. first: Whistler tip and last: Laona Township, Minnesota +[2018-02-13T08:36:09.996] [INFO] cheese - inserting 1000 documents. first: Super-Dude and last: Jon Lane Kent +[2018-02-13T08:36:10.021] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:36:10.025] [INFO] cheese - inserting 1000 documents. first: Fado (character) and last: Tree sitter +[2018-02-13T08:36:10.071] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:36:10.098] [INFO] cheese - inserting 1000 documents. first: Major (Canada) and last: Port Glasgow Athletic +[2018-02-13T08:36:10.122] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T08:36:10.155] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:36:10.206] [INFO] cheese - inserting 1000 documents. first: Cricket (1914 automobile) and last: Inter.funda.stifle +[2018-02-13T08:36:10.211] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:36:10.285] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:36:10.392] [INFO] cheese - inserting 1000 documents. first: Special routes of U.S. Route 221 and last: Porgi l'altra guancia +[2018-02-13T08:36:10.401] [INFO] cheese - inserting 1000 documents. first: File:Intango.jpg and last: Weyman Bennett +[2018-02-13T08:36:10.473] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:36:10.477] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T08:36:10.579] [INFO] cheese - inserting 1000 documents. first: Category:Epsom and last: Ministry of Environment (Cambodia) +[2018-02-13T08:36:10.602] [INFO] cheese - inserting 1000 documents. first: Fruit stickers and last: Julio Canani +[2018-02-13T08:36:10.674] [INFO] cheese - inserting 1000 documents. first: Tang Jun (politician) and last: EgyptAir MS804 +[2018-02-13T08:36:10.725] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:36:10.734] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:36:10.837] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:36:10.922] [INFO] cheese - inserting 1000 documents. first: Risk (Terminaator album) and last: SMJP +[2018-02-13T08:36:10.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2006 February 1 and last: Astoria (OR) +[2018-02-13T08:36:11.023] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:36:11.103] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:36:11.116] [INFO] cheese - inserting 1000 documents. first: Adamangalampudur and last: Philip Vallance +[2018-02-13T08:36:11.168] [INFO] cheese - inserting 1000 documents. first: Immunities and last: Liberalism and radicalism in Bulgaria +[2018-02-13T08:36:11.207] [INFO] cheese - inserting 1000 documents. first: WGND-FM and last: Kazuya Maeda (footballer, born 1984) +[2018-02-13T08:36:11.219] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:36:11.283] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:36:11.300] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:36:11.463] [INFO] cheese - inserting 1000 documents. first: Monastery of Nonantola and last: Kassanda +[2018-02-13T08:36:11.481] [INFO] cheese - inserting 1000 documents. first: COPS (tv show) and last: Kevin Sullivan (communications professional) +[2018-02-13T08:36:11.497] [INFO] cheese - inserting 1000 documents. first: Kirschst. and last: Template:Leinster Hurling Team 2014 +[2018-02-13T08:36:11.517] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:36:11.523] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:36:11.543] [INFO] cheese - inserting 1000 documents. first: Stanley "Stan" Marsh and last: Take Me Out (disambiguation) +[2018-02-13T08:36:11.569] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:36:11.617] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:36:11.657] [INFO] cheese - inserting 1000 documents. first: Soldier Mountains and last: Category:Secularism in Canada +[2018-02-13T08:36:11.669] [INFO] cheese - inserting 1000 documents. first: Frente Amplio Popular and last: The Second Album (The Spencer Davis Group album) +[2018-02-13T08:36:11.704] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T08:36:11.711] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T08:36:11.743] [INFO] cheese - inserting 1000 documents. first: Forest Grove (OR) and last: Wikipedia:Articles for deletion/Roman verone +[2018-02-13T08:36:11.811] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:36:11.931] [INFO] cheese - inserting 1000 documents. first: 2016 Sri Lanka floods and last: Frank Held +[2018-02-13T08:36:11.946] [INFO] cheese - inserting 1000 documents. first: Lloyd McIntyre and last: Template:Asteras Tripolis squad +[2018-02-13T08:36:11.963] [INFO] cheese - batch complete in: 0.446 secs +[2018-02-13T08:36:11.983] [INFO] cheese - inserting 1000 documents. first: Sorry Seems to be the Hardest Word and last: Asteroid dust +[2018-02-13T08:36:11.991] [INFO] cheese - inserting 1000 documents. first: Gingerbread man and last: Omotegō, Fukushima +[2018-02-13T08:36:12.001] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T08:36:12.026] [INFO] cheese - inserting 1000 documents. first: Philippine Senate elections, 1931 and last: Wikipedia:WikiProject Video games/Command & Conquer +[2018-02-13T08:36:12.041] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:36:12.075] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T08:36:12.081] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:36:12.125] [INFO] cheese - inserting 1000 documents. first: First Congregational Church (Vermontville, Michigan) and last: FIBA's 50 Greatest Players +[2018-02-13T08:36:12.176] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:36:12.228] [INFO] cheese - inserting 1000 documents. first: Rajeev Kanakala and last: Category:Stone circles in Ireland +[2018-02-13T08:36:12.301] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:36:12.309] [INFO] cheese - inserting 1000 documents. first: Elmer McCurdy and last: Asian small-clawed otters +[2018-02-13T08:36:12.367] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:36:12.408] [INFO] cheese - inserting 1000 documents. first: List of tallest buildings in Mississippi and last: File:Absolutedeceptionposter.jpg +[2018-02-13T08:36:12.521] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:36:12.589] [INFO] cheese - inserting 1000 documents. first: Category:Memphis Tigers athletic directors and last: Rail transport in China +[2018-02-13T08:36:12.651] [INFO] cheese - inserting 1000 documents. first: Epidermal growth factor family and last: Template:Disneymania +[2018-02-13T08:36:12.691] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:36:12.741] [INFO] cheese - inserting 1000 documents. first: Illerup inscriptions and last: 163rd (Norfolk & Suffolk) Brigade +[2018-02-13T08:36:12.782] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:36:12.846] [INFO] cheese - inserting 1000 documents. first: Asteroidal dust and last: The Honourable the Commons of the United Kingdom of Great Britain and Northern Ireland in Parliament assembled +[2018-02-13T08:36:12.893] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:36:13.023] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:36:13.060] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2010 South American Games – Men's Madison and last: St Bridget's, Brigham +[2018-02-13T08:36:13.129] [INFO] cheese - inserting 1000 documents. first: Kaub and last: Category:Lebanese films +[2018-02-13T08:36:13.158] [INFO] cheese - inserting 1000 documents. first: Shacal-2 and last: Aleksandr Sergeyevich Pushkin +[2018-02-13T08:36:13.163] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:36:13.252] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:36:13.322] [INFO] cheese - batch complete in: 1.241 secs +[2018-02-13T08:36:13.361] [INFO] cheese - inserting 1000 documents. first: Adilabad mandal and last: Natsuto Wada +[2018-02-13T08:36:13.441] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:36:13.481] [INFO] cheese - inserting 1000 documents. first: Melba Manners and last: Esrefpasa +[2018-02-13T08:36:13.504] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Computer Guy 2/Archive and last: Wikipedia:Articles for deletion/Spandex fetishism +[2018-02-13T08:36:13.509] [INFO] cheese - inserting 1000 documents. first: USS Manayunk (AN-81) and last: R 9 +[2018-02-13T08:36:13.555] [INFO] cheese - inserting 1000 documents. first: The Singles Collection (Silversun Pickups album) and last: File:Prephenate dehydrogenase to arogenate.png +[2018-02-13T08:36:13.556] [INFO] cheese - batch complete in: 0.774 secs +[2018-02-13T08:36:13.572] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:36:13.607] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:36:13.642] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:36:13.671] [INFO] cheese - inserting 1000 documents. first: St. Bridget's, Brigham and last: Transfers of Undertakings Directive 2001 +[2018-02-13T08:36:13.727] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:36:13.829] [INFO] cheese - inserting 1000 documents. first: Strange Bedfellows (DS9 episode) and last: Asian ball-jointed doll +[2018-02-13T08:36:13.897] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:36:13.960] [INFO] cheese - inserting 1000 documents. first: HxC and last: Wikipedia:Articles for deletion/The Story of Tohoshi +[2018-02-13T08:36:13.987] [INFO] cheese - inserting 1000 documents. first: Francisco de Sá Carneiro and last: Aperture synthesis +[2018-02-13T08:36:14.009] [INFO] cheese - inserting 1000 documents. first: Conus chytreus and last: Category:Loyola Ramblers women's basketball +[2018-02-13T08:36:14.008] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T08:36:14.032] [INFO] cheese - inserting 1000 documents. first: Ebersberg district and last: Erin Nicole Peterson +[2018-02-13T08:36:14.052] [INFO] cheese - inserting 1000 documents. first: File:Histidinol Phosphate Trans.jpg and last: Maryland State Highway 105 +[2018-02-13T08:36:14.060] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:36:14.070] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T08:36:14.099] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian speculative fiction artists and last: Category:Fireworks in Canada +[2018-02-13T08:36:14.109] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T08:36:14.130] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:36:14.239] [INFO] cheese - batch complete in: 0.798 secs +[2018-02-13T08:36:14.569] [INFO] cheese - inserting 1000 documents. first: File:Billiongravy.jpg and last: Savery, Wyoming +[2018-02-13T08:36:14.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/k-popexpress.com and last: Distratto +[2018-02-13T08:36:14.583] [INFO] cheese - inserting 1000 documents. first: Roseville Area Schools and last: Scouting in Finland +[2018-02-13T08:36:14.596] [INFO] cheese - inserting 1000 documents. first: Maryland State Route 105 and last: Runyonia +[2018-02-13T08:36:14.628] [INFO] cheese - inserting 1000 documents. first: Australian Liberal Students Federation and last: Ecclesiastical Commissioners +[2018-02-13T08:36:14.648] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:36:14.659] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:36:14.674] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:36:14.714] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:36:14.748] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:36:14.805] [INFO] cheese - inserting 1000 documents. first: 1946 Pittsburgh Panthers football team and last: Sucedió en Sevilla +[2018-02-13T08:36:14.905] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:36:15.033] [INFO] cheese - inserting 1000 documents. first: Nintendo Entertainment System hardware clone and last: RJD2 +[2018-02-13T08:36:15.134] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:36:15.155] [INFO] cheese - inserting 1000 documents. first: Category:1962 in chess and last: Template:Microsoft Expression +[2018-02-13T08:36:15.162] [INFO] cheese - inserting 1000 documents. first: Ir herbowo and last: National Midget Hockey Championship +[2018-02-13T08:36:15.162] [INFO] cheese - inserting 1000 documents. first: Henniker Town Hall and last: Template:Country data Liguria/doc +[2018-02-13T08:36:15.205] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:36:15.211] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:36:15.261] [INFO] cheese - inserting 1000 documents. first: Ren Chengyuan and last: Polycarpos Yiorkadjis +[2018-02-13T08:36:15.285] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:36:15.356] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:36:15.371] [INFO] cheese - inserting 1000 documents. first: Louis Cahuzac and last: File:World-travel.jpg +[2018-02-13T08:36:15.403] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1936 Summer Olympics - Men's eight and last: Draft:Mark Singer +[2018-02-13T08:36:15.444] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T08:36:15.455] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:36:15.558] [INFO] cheese - inserting 1000 documents. first: ARD 2001 and last: Portal:Gabon/Featured picture +[2018-02-13T08:36:15.696] [INFO] cheese - batch complete in: 1.969 secs +[2018-02-13T08:36:15.748] [INFO] cheese - inserting 1000 documents. first: Dowlatabad, Khorramabad and last: AAIIB +[2018-02-13T08:36:15.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rachelmacnair.com and last: Cambaroides koshewnikowi +[2018-02-13T08:36:15.830] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:36:15.875] [INFO] cheese - inserting 1000 documents. first: Analysis of flows and last: Matsuyama, Yamagata +[2018-02-13T08:36:15.889] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:36:15.906] [INFO] cheese - inserting 1000 documents. first: File:Eurozine screenshot.png and last: Grammatotria +[2018-02-13T08:36:16.016] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:36:16.084] [INFO] cheese - inserting 1000 documents. first: Stine Andresen and last: Bernard Lafayette +[2018-02-13T08:36:16.090] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:36:16.223] [INFO] cheese - inserting 1000 documents. first: State Energy Commission of Western Australia and last: Star Wars: Episode V +[2018-02-13T08:36:16.270] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:36:16.284] [INFO] cheese - inserting 1000 documents. first: Kawah Ijen Volcano and last: Justice Lacy +[2018-02-13T08:36:16.338] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:36:16.350] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:36:16.406] [INFO] cheese - inserting 1000 documents. first: The Sixth extinction Elizabeth kolbert and last: Anglo Australian Observatory +[2018-02-13T08:36:16.484] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:36:16.538] [INFO] cheese - inserting 1000 documents. first: Novell "Vladivar" and last: Chalcolepidius porcatus +[2018-02-13T08:36:16.611] [INFO] cheese - inserting 1000 documents. first: Oxyrhynchite and last: Louis Trudel +[2018-02-13T08:36:16.619] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:36:16.716] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:36:16.722] [INFO] cheese - inserting 1000 documents. first: Portal:Gabon/Selected panorama/1 and last: Trenail +[2018-02-13T08:36:16.808] [INFO] cheese - inserting 1000 documents. first: Hirata, Yamagata and last: Canon EOS 10D +[2018-02-13T08:36:16.836] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:36:16.902] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:36:16.929] [INFO] cheese - inserting 1000 documents. first: File:My Life singlecover.jpg and last: Wingman (seduction) +[2018-02-13T08:36:16.946] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the Province of Ancona and last: Saturday Night Live (season 42) +[2018-02-13T08:36:16.985] [INFO] cheese - inserting 1000 documents. first: Canibalism and last: Portsmouth Island, North Carolina +[2018-02-13T08:36:17.045] [INFO] cheese - inserting 1000 documents. first: 2014 Malaysian Open and last: Template:Did you know nominations/The Flask, Highgate +[2018-02-13T08:36:17.050] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:36:17.078] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:36:17.131] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:36:17.151] [INFO] cheese - inserting 1000 documents. first: Oktophonie and last: Robert Thorogood +[2018-02-13T08:36:17.174] [INFO] cheese - batch complete in: 0.689 secs +[2018-02-13T08:36:17.245] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:36:17.401] [INFO] cheese - inserting 1000 documents. first: Den fynske landsby and last: Chloditan +[2018-02-13T08:36:17.493] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:36:17.564] [INFO] cheese - inserting 1000 documents. first: Manuel F. Ayau and last: Oswald Mitchell +[2018-02-13T08:36:17.602] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Template:Tron and last: Abd Al-Salam Al-Hilah +[2018-02-13T08:36:17.664] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:36:17.675] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T08:36:17.723] [INFO] cheese - inserting 1000 documents. first: Boarding passes and last: SG Bad Breisig +[2018-02-13T08:36:17.813] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:36:17.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mitry - Claye (SNCF) and last: File:Selftitledautumnscover.jpg +[2018-02-13T08:36:17.914] [INFO] cheese - inserting 1000 documents. first: Ethmia eupostica and last: Template:2005–06 Big Ten Conference men's basketball standings +[2018-02-13T08:36:17.993] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:36:17.999] [INFO] cheese - inserting 1000 documents. first: Category:1898 and last: Jason Becker +[2018-02-13T08:36:18.031] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:36:18.092] [INFO] cheese - inserting 1000 documents. first: Katy Deepwell and last: James Griffin and the Subterraneans +[2018-02-13T08:36:18.093] [INFO] cheese - inserting 1000 documents. first: Record of fallen vampire and last: Liberty Plains Parish, Cumberland +[2018-02-13T08:36:18.141] [INFO] cheese - batch complete in: 1.239 secs +[2018-02-13T08:36:18.164] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:36:18.173] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:36:18.181] [INFO] cheese - inserting 1000 documents. first: File:D'Artagnan and Three Musketeers.jpg and last: Emertonella taczanowskii +[2018-02-13T08:36:18.263] [INFO] cheese - inserting 1000 documents. first: Triethyl orthoacetate and last: Saints Peter and Paul Roman Catholic Church (Clear Creek) +[2018-02-13T08:36:18.305] [INFO] cheese - batch complete in: 1.255 secs +[2018-02-13T08:36:18.350] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:36:18.406] [INFO] cheese - inserting 1000 documents. first: Zhou Peng (canoeist) and last: Template:SriLankaNationalTeams +[2018-02-13T08:36:18.452] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:36:18.545] [INFO] cheese - inserting 1000 documents. first: Postal Service of Russia and last: Ken Welsh +[2018-02-13T08:36:18.562] [INFO] cheese - inserting 1000 documents. first: Carl V. Weygandt and last: Hajj Khadijeh +[2018-02-13T08:36:18.597] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:36:18.624] [INFO] cheese - inserting 1000 documents. first: Connecticut Hurricanes Drum and Bugle Corps and last: File:Harvard Rugby, 1995.png.jpg +[2018-02-13T08:36:18.628] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:36:18.687] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:36:18.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramsgate Neighborhood and last: File:Audioslave your time has come.png +[2018-02-13T08:36:18.832] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:36:18.835] [INFO] cheese - inserting 1000 documents. first: Étienne-Augustin De Wailly and last: Wikipedia:Reference desk/Archives/Humanities/2016 May 14 +[2018-02-13T08:36:18.905] [INFO] cheese - inserting 1000 documents. first: Capitonym and last: Donald "Buzz" Lukens +[2018-02-13T08:36:18.908] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:36:18.916] [INFO] cheese - inserting 1000 documents. first: Portal:Oxfordshire/Selected picture/5 and last: 2000 Chevrolet Cup +[2018-02-13T08:36:18.932] [INFO] cheese - inserting 1000 documents. first: João N'tyamba and last: State Intellectual Property Office +[2018-02-13T08:36:18.984] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T08:36:19.024] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:36:19.024] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:36:19.093] [INFO] cheese - inserting 1000 documents. first: Hajj Ali-ye Gerehbid and last: Trichocirca decaryanum +[2018-02-13T08:36:19.105] [INFO] cheese - inserting 1000 documents. first: Petalocrinidae and last: Wikipedia:Articles for deletion/Belle Knox +[2018-02-13T08:36:19.119] [INFO] cheese - inserting 1000 documents. first: Robert H. Nelson and last: Cesvaine +[2018-02-13T08:36:19.164] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:36:19.169] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:36:19.175] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:36:19.249] [INFO] cheese - inserting 1000 documents. first: Soiku and last: Federation of Fly Fishers +[2018-02-13T08:36:19.282] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T08:36:19.339] [INFO] cheese - inserting 1000 documents. first: Neighborhoods in Key West and last: Nemet Qasimli +[2018-02-13T08:36:19.433] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:36:19.496] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Mammals/Article templates/stats/Ctenomyidae nav and last: Kendallville, IN µSA +[2018-02-13T08:36:19.603] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:36:19.638] [INFO] cheese - inserting 1000 documents. first: Charles Berkeley, 3rd Baron FitzHardinge and last: Babayevski +[2018-02-13T08:36:19.673] [INFO] cheese - inserting 1000 documents. first: Papilio encelades and last: Nerd jeans +[2018-02-13T08:36:19.695] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:36:19.748] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wookieepedia (3rd nomination) and last: Diet RC Cola +[2018-02-13T08:36:19.777] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:36:19.817] [INFO] cheese - inserting 1000 documents. first: North Alantic Sea Movement and last: Wikipedia:Articles for deletion/Roaming Janitors International +[2018-02-13T08:36:19.833] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:36:19.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tengashop.com.au and last: Yara Shahidi +[2018-02-13T08:36:19.863] [INFO] cheese - inserting 1000 documents. first: Conrad I, Duke of Bohemia and last: Postage stamps and postal history of Bolivar Department +[2018-02-13T08:36:19.901] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:36:19.905] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:36:19.965] [INFO] cheese - inserting 1000 documents. first: Derby Wharf Light Station and last: Steerleaders +[2018-02-13T08:36:19.973] [INFO] cheese - batch complete in: 0.949 secs +[2018-02-13T08:36:20.019] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T08:36:20.049] [INFO] cheese - inserting 1000 documents. first: Suh Jung and last: I-5 Publishing +[2018-02-13T08:36:20.100] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:36:20.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nome.unak.is and last: Wikipedia:WikiProject user warnings/Testing/ImageTaggingBot +[2018-02-13T08:36:20.131] [INFO] cheese - inserting 1000 documents. first: Anhydrophryne hewitti and last: Paul Ellwood, Jr. +[2018-02-13T08:36:20.177] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:36:20.190] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T08:36:20.270] [INFO] cheese - inserting 1000 documents. first: 5 Characters in Search of an Exit and last: Our Lady of the Roses +[2018-02-13T08:36:20.308] [INFO] cheese - inserting 1000 documents. first: Take a Good Look (TV series) and last: Ithaca Falls +[2018-02-13T08:36:20.312] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:36:20.349] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T08:36:20.377] [INFO] cheese - inserting 1000 documents. first: Deadliest Atlantic hurricane and last: Eurovision winners +[2018-02-13T08:36:20.403] [INFO] cheese - inserting 1000 documents. first: Just Friends (Amy Winehouse song) and last: Animo Locke Tech Charter High School +[2018-02-13T08:36:20.443] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T08:36:20.470] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T08:36:20.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject user warnings/Testing/SDPatrolBot and last: 2014 Division 1 Kvalserien +[2018-02-13T08:36:20.520] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T08:36:20.550] [INFO] cheese - inserting 1000 documents. first: The Life of Verdi (docudrama) and last: Scottish delict +[2018-02-13T08:36:20.626] [INFO] cheese - inserting 1000 documents. first: M. Sarada Menon and last: Category:Geography of Kottayam district +[2018-02-13T08:36:20.643] [INFO] cheese - inserting 1000 documents. first: Postage stamps and postal history of the North German Confederation and last: List of bridges in Cambridge +[2018-02-13T08:36:20.668] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T08:36:20.680] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:36:20.786] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:36:20.880] [INFO] cheese - inserting 1000 documents. first: Ishoyahb IV and last: Opera-ballets +[2018-02-13T08:36:20.923] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T08:36:21.014] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/workingdogvids.com and last: Hedwig Eleonora of Schleswig-Holstein-Gottorp +[2018-02-13T08:36:21.031] [INFO] cheese - inserting 1000 documents. first: Philaster and last: List of evolutionary psychologists +[2018-02-13T08:36:21.041] [INFO] cheese - inserting 1000 documents. first: Crimea transfer and last: Ass2mouth +[2018-02-13T08:36:21.075] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:36:21.098] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:36:21.101] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:36:21.138] [INFO] cheese - inserting 1000 documents. first: Category:Bacteria described in the 1960s and last: Nataliconus +[2018-02-13T08:36:21.147] [INFO] cheese - inserting 1000 documents. first: Simmon's citrate agar and last: Times-up! +[2018-02-13T08:36:21.182] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ahmadiyya articles by quality log and last: Category:Mumbai culture +[2018-02-13T08:36:21.208] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:36:21.227] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:36:21.243] [INFO] cheese - inserting 1000 documents. first: Operas-ballets and last: Terrine +[2018-02-13T08:36:21.248] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:36:21.301] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T08:36:21.417] [INFO] cheese - inserting 1000 documents. first: Slip Stich and Pass and last: Ford F-Series +[2018-02-13T08:36:21.486] [INFO] cheese - inserting 1000 documents. first: Rey, Anthony and last: Wikipedia:WikiProject User scripts/Scripts/TimeTraveller.js +[2018-02-13T08:36:21.494] [INFO] cheese - inserting 1000 documents. first: Operation Lava Jato and last: Template:Uruguay squad 1949 South American Championship +[2018-02-13T08:36:21.502] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:36:21.525] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T08:36:21.557] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:36:21.638] [INFO] cheese - inserting 1000 documents. first: Chartered Companies and last: Wikipedia:Articles for deletion/Swansea Bowls +[2018-02-13T08:36:21.682] [INFO] cheese - inserting 1000 documents. first: Postal Address Verification and last: Abernant Colliery +[2018-02-13T08:36:21.705] [INFO] cheese - inserting 1000 documents. first: File:Saya de Malha2b.PNG and last: File:Hzlg.jpg +[2018-02-13T08:36:21.762] [INFO] cheese - batch complete in: 0.661 secs +[2018-02-13T08:36:21.788] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:36:21.875] [INFO] cheese - inserting 1000 documents. first: Sähkönsinistä sinfoniaa (album) and last: LRQ +[2018-02-13T08:36:21.905] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:36:22.048] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:36:22.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Guputa1111 and last: Shortage (economics) +[2018-02-13T08:36:22.114] [INFO] cheese - inserting 1000 documents. first: Untied States House of Representatives elections in Virginia, 1988 and last: Bandžovo Brdo Sports Center +[2018-02-13T08:36:22.149] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:36:22.162] [INFO] cheese - inserting 1000 documents. first: Republic of Zangaro and last: Shepard Block +[2018-02-13T08:36:22.171] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:36:22.215] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:36:22.356] [INFO] cheese - inserting 1000 documents. first: Ford F-150 (F-Series truck) and last: Pneumonoultramicroscopicsilicovolcanokoniosis +[2018-02-13T08:36:22.400] [INFO] cheese - inserting 1000 documents. first: Shooting at the 1974 Asian Games and last: Saud Al Nasser Al Sabah +[2018-02-13T08:36:22.411] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Guffey and last: Red Clay School District +[2018-02-13T08:36:22.420] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:36:22.474] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:36:22.481] [INFO] cheese - inserting 1000 documents. first: LTW and last: 802.11 b/g +[2018-02-13T08:36:22.502] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:36:22.541] [INFO] cheese - inserting 1000 documents. first: Adoro, Marcus and last: Pineville Historic District +[2018-02-13T08:36:22.552] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:36:22.599] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T08:36:22.606] [INFO] cheese - inserting 1000 documents. first: File:Stolen Earth.jpg and last: Wikipedia:Articles for deletion/G-Boy Status +[2018-02-13T08:36:22.626] [INFO] cheese - inserting 1000 documents. first: Robert Smith (cricketer, born 1946) and last: Polaris (composition) +[2018-02-13T08:36:22.665] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T08:36:22.684] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:36:22.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Creating Change 2012 and last: Dongen (plaats) +[2018-02-13T08:36:22.791] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T08:36:22.894] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Swapnil mali/MITSOT and last: Aerts, Peter +[2018-02-13T08:36:22.928] [INFO] cheese - inserting 1000 documents. first: 1st Afro-Asian Games and last: Sebhat Guebre-Egziabher +[2018-02-13T08:36:22.928] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T08:36:23.025] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:36:23.045] [INFO] cheese - inserting 1000 documents. first: Kalasin Province Stadium and last: Category:U.S. Sassuolo Calcio seasons +[2018-02-13T08:36:23.076] [INFO] cheese - inserting 1000 documents. first: José Luis de Quintanar Soto y Ruiz and last: Category:Maddy Prior albums +[2018-02-13T08:36:23.078] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T08:36:23.097] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors to Fiji and last: Template:Hawaii-royal-stub +[2018-02-13T08:36:23.112] [INFO] cheese - inserting 1000 documents. first: Afak and last: Pananmal Punjabi +[2018-02-13T08:36:23.135] [INFO] cheese - inserting 1000 documents. first: Eersel (plaats) and last: Perceptual Robotics +[2018-02-13T08:36:23.147] [INFO] cheese - batch complete in: 1.242 secs +[2018-02-13T08:36:23.155] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:36:23.162] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:36:23.196] [INFO] cheese - inserting 1000 documents. first: K-Y jelly and last: Anne Cox Chambers +[2018-02-13T08:36:23.274] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:36:23.363] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:36:23.466] [INFO] cheese - inserting 1000 documents. first: Aerts, Philippe and last: K24GE-D +[2018-02-13T08:36:23.531] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:36:23.628] [INFO] cheese - inserting 1000 documents. first: Teddy girl and last: Bickerstaff encephalitis +[2018-02-13T08:36:23.673] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:36:23.703] [INFO] cheese - inserting 1000 documents. first: Jasmine Gill and last: James B. McCoy +[2018-02-13T08:36:23.736] [INFO] cheese - inserting 1000 documents. first: 461 U.S. 574 and last: Acleris variegana +[2018-02-13T08:36:23.758] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:36:23.799] [INFO] cheese - inserting 1000 documents. first: UI Chrome and last: Super Commando Dhruva +[2018-02-13T08:36:23.809] [INFO] cheese - batch complete in: 0.654 secs +[2018-02-13T08:36:23.859] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:36:23.897] [INFO] cheese - inserting 1000 documents. first: David Houle (biologist) and last: Category:English editors +[2018-02-13T08:36:23.970] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:36:24.061] [INFO] cheese - inserting 1000 documents. first: BZ Crucis and last: 2012 World Junior Championships in Athletics – Men's 10000 metres +[2018-02-13T08:36:24.121] [INFO] cheese - inserting 1000 documents. first: P3X-888 and last: Wikipedia:Help desk/Archive 5 +[2018-02-13T08:36:24.135] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:36:24.146] [INFO] cheese - inserting 1000 documents. first: Conus mucronatus and last: Wikipedia:WikiProject Spam/LinkReports/alerjik.net +[2018-02-13T08:36:24.174] [INFO] cheese - inserting 1000 documents. first: Template:FC Homburg squad and last: Paddy Knob +[2018-02-13T08:36:24.206] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:36:24.212] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:36:24.243] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T08:36:24.287] [INFO] cheese - inserting 1000 documents. first: 1962 Detroit Lions season and last: Długołęka, Łódź Voivodeship +[2018-02-13T08:36:24.318] [INFO] cheese - inserting 1000 documents. first: Octatonic and last: 20th Century Masters – The Millennium Collection: The Best of George Strait +[2018-02-13T08:36:24.332] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:36:24.383] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:36:24.391] [INFO] cheese - inserting 1000 documents. first: Template:HNK Hajduk Split squad and last: Familiar 48 +[2018-02-13T08:36:24.452] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:36:24.578] [INFO] cheese - inserting 1000 documents. first: File:1059balitafm.jpg and last: Joanne Pricilla Loutoy +[2018-02-13T08:36:24.605] [INFO] cheese - inserting 1000 documents. first: Main Battle Tank and last: Joseph Patrick Walsh +[2018-02-13T08:36:24.653] [INFO] cheese - inserting 1000 documents. first: Albert Monnier and last: 2016 SEABA Cup squads +[2018-02-13T08:36:24.668] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:36:24.723] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:36:24.730] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T08:36:24.833] [INFO] cheese - inserting 1000 documents. first: Glinice and last: Węglewice +[2018-02-13T08:36:24.931] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:36:25.063] [INFO] cheese - inserting 1000 documents. first: Rubik the amazing cube and last: Windowpane (song) +[2018-02-13T08:36:25.071] [INFO] cheese - inserting 1000 documents. first: File:Altbeastplay.png and last: Jusepe de Ribera +[2018-02-13T08:36:25.123] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:36:25.149] [INFO] cheese - inserting 1000 documents. first: File:Coach Tom Scott.jpg and last: Category:Apartment buildings in Kentucky +[2018-02-13T08:36:25.187] [INFO] cheese - inserting 1000 documents. first: Jayy Mannon and last: Dendrocopos noguchii +[2018-02-13T08:36:25.196] [INFO] cheese - batch complete in: 0.981 secs +[2018-02-13T08:36:25.253] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:36:25.276] [INFO] cheese - batch complete in: 2.001 secs +[2018-02-13T08:36:25.311] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Selected works/12 and last: DINFIA IA 46 Ranquel +[2018-02-13T08:36:25.333] [INFO] cheese - inserting 1000 documents. first: Joanne Loutoy and last: Wikipedia:Articles for deletion/Krokodilpoort +[2018-02-13T08:36:25.368] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:36:25.384] [INFO] cheese - inserting 1000 documents. first: A Scholar's Feast and last: Kumt'ap-sa temple +[2018-02-13T08:36:25.410] [INFO] cheese - inserting 1000 documents. first: Węglewice, Łęczyca County and last: Beunans Meriasek +[2018-02-13T08:36:25.406] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:36:25.435] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:36:25.472] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:36:25.601] [INFO] cheese - inserting 1000 documents. first: Brooke Knight and last: Category:French beatified people +[2018-02-13T08:36:25.601] [INFO] cheese - inserting 1000 documents. first: File:Bobbycapo.jpg and last: Dirge of Cerberus: Final Fantasy VII Original Soundtrack +[2018-02-13T08:36:25.636] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T08:36:25.636] [INFO] cheese - batch complete in: 0.513 secs +[2018-02-13T08:36:25.701] [INFO] cheese - inserting 1000 documents. first: Destructo Trucks and last: Category:Argentine female singers +[2018-02-13T08:36:25.741] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T08:36:25.754] [INFO] cheese - inserting 1000 documents. first: DINFIA IA 50 Guarani II and last: Catherine Booth-Clibborn +[2018-02-13T08:36:25.808] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T08:36:25.847] [INFO] cheese - inserting 1000 documents. first: Kumt'ap-sa Temple and last: Sekai kara Neko ga Kieta nara +[2018-02-13T08:36:25.864] [INFO] cheese - inserting 1000 documents. first: Cantellated order-4 hexagonal tiling honeycomb and last: President of the Liberal Party (UK) +[2018-02-13T08:36:25.884] [INFO] cheese - inserting 1000 documents. first: LeRoy Sprankle and last: Red white and blue +[2018-02-13T08:36:25.893] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T08:36:25.931] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:36:25.945] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:36:25.961] [INFO] cheese - inserting 1000 documents. first: Guzelyurt and last: Freestyle Skiing +[2018-02-13T08:36:26.041] [INFO] cheese - inserting 1000 documents. first: ITyphoon and last: Wikipedia:In-Universe +[2018-02-13T08:36:26.067] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:36:26.161] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:36:26.226] [INFO] cheese - inserting 1000 documents. first: Kostandin and Doruntine and last: US intervention in Latin America +[2018-02-13T08:36:26.249] [INFO] cheese - inserting 1000 documents. first: U.S. Route 99E and last: Yojinbo (film) +[2018-02-13T08:36:26.288] [INFO] cheese - inserting 1000 documents. first: List of MLB Managers 2006 and last: Poo-Shi +[2018-02-13T08:36:26.333] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:36:26.345] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:36:26.387] [INFO] cheese - inserting 1000 documents. first: Foley Hoag and last: Gil Álvarez de Albornoz +[2018-02-13T08:36:26.407] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:36:26.465] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:36:26.481] [INFO] cheese - inserting 1000 documents. first: List of nearest exoplanets and last: HackerOne +[2018-02-13T08:36:26.508] [INFO] cheese - inserting 1000 documents. first: Template:Nitric oxide modulators and last: File:Sarah Brightman Steve Harley The Phantom of the Opera 1986 Single.jpg +[2018-02-13T08:36:26.535] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:36:26.572] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:36:26.661] [INFO] cheese - inserting 1000 documents. first: Petru Stirbate and last: Q'Viva!: The Chosen +[2018-02-13T08:36:26.731] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:36:26.790] [INFO] cheese - inserting 1000 documents. first: Vsesportový Areal and last: Achilles hold +[2018-02-13T08:36:26.803] [INFO] cheese - inserting 1000 documents. first: Anterior cutaneous branch and last: Wikipedia:Articles for deletion/Rafiulla Mian Rrahi +[2018-02-13T08:36:26.846] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T08:36:26.873] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:36:26.876] [INFO] cheese - inserting 1000 documents. first: Tricia Marwick and last: Category:Marquette County, Michigan +[2018-02-13T08:36:26.890] [INFO] cheese - inserting 1000 documents. first: Category:Amiens SC and last: Aaron Sears +[2018-02-13T08:36:26.902] [INFO] cheese - inserting 1000 documents. first: Category:American politicians with physical disabilities and last: Aiteta acutipennis +[2018-02-13T08:36:26.924] [INFO] cheese - inserting 1000 documents. first: Héctor Thomas and last: Category:Egyptian cyclists +[2018-02-13T08:36:26.961] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:36:26.984] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:36:26.985] [INFO] cheese - batch complete in: 0.45 secs +[2018-02-13T08:36:27.023] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:36:27.052] [INFO] cheese - inserting 1000 documents. first: 2016–17 Missouri Tigers women's basketball team and last: Sacred Heart High School of Itogon, Inc. +[2018-02-13T08:36:27.120] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:36:27.250] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jannareddy and last: Pakistani Highflyer +[2018-02-13T08:36:27.279] [INFO] cheese - inserting 1000 documents. first: File:Blood Car poster.jpg and last: File:Letschangetheworldwithmusic.jpg +[2018-02-13T08:36:27.320] [INFO] cheese - batch complete in: 0.589 secs +[2018-02-13T08:36:27.331] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T08:36:27.444] [INFO] cheese - inserting 1000 documents. first: Batna (province) and last: Chickenwing +[2018-02-13T08:36:27.474] [INFO] cheese - inserting 1000 documents. first: Paul Robert Cohen, Appellant v. State of California and last: Abbess Martin +[2018-02-13T08:36:27.537] [INFO] cheese - inserting 1000 documents. first: Hal Lashwood and last: Category:Media in Abha +[2018-02-13T08:36:27.543] [INFO] cheese - inserting 1000 documents. first: France–Iceland relations and last: Chiefs of Joint Staff of the Armed Forces of Bosnia and Herzegovina +[2018-02-13T08:36:27.544] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:36:27.551] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:36:27.595] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T08:36:27.606] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:36:27.753] [INFO] cheese - inserting 1000 documents. first: Rower and last: Western Wireless Corporation +[2018-02-13T08:36:27.809] [INFO] cheese - inserting 1000 documents. first: Kevin Bauder and last: List of Unicode characters/CJK Unified Ideographs, part 1 (4E00-62FF) +[2018-02-13T08:36:27.833] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:36:27.900] [INFO] cheese - batch complete in: 0.58 secs +[2018-02-13T08:36:27.928] [INFO] cheese - inserting 1000 documents. first: Kiltsi Airfield and last: Wikipedia:WikiProject Toronto Blue Jays +[2018-02-13T08:36:27.973] [INFO] cheese - inserting 1000 documents. first: Simon Lazenby and last: History of Petersburg, Virginia +[2018-02-13T08:36:27.982] [INFO] cheese - inserting 1000 documents. first: List of initiatives of Punjab Government (2008-13) and last: Yawhen Kalinin +[2018-02-13T08:36:28.004] [INFO] cheese - batch complete in: 0.673 secs +[2018-02-13T08:36:28.032] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:36:28.034] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:36:28.127] [INFO] cheese - inserting 1000 documents. first: Arado SD.III and last: Tiwi Islands Shire +[2018-02-13T08:36:28.139] [INFO] cheese - inserting 1000 documents. first: File:Defrancis.jpg and last: Evil I +[2018-02-13T08:36:28.200] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:36:28.211] [INFO] cheese - inserting 1000 documents. first: Coca cola black cherry vanilla and last: Kjell Borgen +[2018-02-13T08:36:28.218] [INFO] cheese - batch complete in: 1.257 secs +[2018-02-13T08:36:28.264] [INFO] cheese - inserting 1000 documents. first: List of Unicode characters/CJK Unified Ideographs, part 2 (6300-77FF) and last: Non-Intrusive Stress Measurement System +[2018-02-13T08:36:28.328] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:36:28.341] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T08:36:28.391] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pentagon (Bangladeshi band) and last: Widnet il-baħar +[2018-02-13T08:36:28.428] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T08:36:28.437] [INFO] cheese - inserting 1000 documents. first: Vilayet of Van and last: Kurtziella newcombei +[2018-02-13T08:36:28.502] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:36:28.526] [INFO] cheese - inserting 1000 documents. first: Category:UNIDROIT and last: 1943–44 Wisconsin Badgers men's basketball team +[2018-02-13T08:36:28.677] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:36:28.721] [INFO] cheese - inserting 1000 documents. first: Albert S. Marks and last: Parang +[2018-02-13T08:36:28.822] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:36:28.869] [INFO] cheese - inserting 1000 documents. first: Widnet il-bahar and last: Wikipedia:WikiProject Spam/LinkReports/cms.puranastudy.webnode.com +[2018-02-13T08:36:28.901] [INFO] cheese - inserting 1000 documents. first: Kid Herman and last: Wikipedia:Reference desk/Archives/Miscellaneous/2008 August 4 +[2018-02-13T08:36:28.962] [INFO] cheese - inserting 1000 documents. first: Esporte Clube Iranduba da Amazônia and last: Cecilia Liu +[2018-02-13T08:36:28.973] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T08:36:29.017] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:36:29.110] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:36:29.157] [INFO] cheese - inserting 1000 documents. first: Rock City (Royce Da 5'9" album) and last: Kitāb al-jabr wa’l-muqābalah +[2018-02-13T08:36:29.211] [INFO] cheese - inserting 1000 documents. first: H-1B Visas and last: Asida (beetle) +[2018-02-13T08:36:29.253] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:36:29.355] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:36:29.406] [INFO] cheese - inserting 1000 documents. first: Rhipha olafi and last: 天野 正道 +[2018-02-13T08:36:29.471] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:36:29.505] [INFO] cheese - inserting 1000 documents. first: File:CaddyMaxiLife2.JPG and last: A 113 +[2018-02-13T08:36:29.508] [INFO] cheese - inserting 1000 documents. first: Pulseniagara.com and last: AMD Carrizo +[2018-02-13T08:36:29.576] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:36:29.578] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T08:36:29.644] [INFO] cheese - inserting 1000 documents. first: Template:Moyoco Anno and last: Bridge Information Systems +[2018-02-13T08:36:29.660] [INFO] cheese - inserting 1000 documents. first: Ostad Nur Ali Elahi and last: File:UniversalMen.JPG +[2018-02-13T08:36:29.688] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:36:29.744] [INFO] cheese - inserting 1000 documents. first: Kevin Williamson (screenwriter) and last: Wikipedia:Articles for deletion/Psychic Pokémon +[2018-02-13T08:36:29.749] [INFO] cheese - inserting 1000 documents. first: Rasa (aesthetics) and last: Wikipedia:Articles for deletion/Log/2006 February 7 +[2018-02-13T08:36:29.750] [INFO] cheese - batch complete in: 1.532 secs +[2018-02-13T08:36:29.773] [INFO] cheese - inserting 1000 documents. first: Category:English oceanographers and last: Portal:Algeria/Topics +[2018-02-13T08:36:29.816] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:36:29.832] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:36:29.841] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T08:36:30.033] [INFO] cheese - inserting 1000 documents. first: Category:City and town clerks and last: Wikipedia:WikiProject Deletion sorting in The Signpost +[2018-02-13T08:36:30.040] [INFO] cheese - inserting 1000 documents. first: Venus and Adonis (painting) and last: Cromwell, Henry +[2018-02-13T08:36:30.100] [INFO] cheese - inserting 1000 documents. first: File:Shepshed Dynamo FC logo.png and last: Idol series +[2018-02-13T08:36:30.103] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:36:30.107] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:36:30.137] [INFO] cheese - inserting 1000 documents. first: Praxi Simeon and last: Bill of Rights of 1689 +[2018-02-13T08:36:30.156] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:36:30.214] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:36:30.255] [INFO] cheese - inserting 1000 documents. first: File:Arke Stadion.jpg and last: V70 +[2018-02-13T08:36:30.294] [INFO] cheese - inserting 1000 documents. first: File:PotC-RNA.svg and last: Senmon gakko +[2018-02-13T08:36:30.329] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:36:30.347] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Log/2006 February 7 and last: Nisg̱a’a language +[2018-02-13T08:36:30.349] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:36:30.481] [INFO] cheese - inserting 1000 documents. first: Gallurese-Sassarese Sardinian language and last: Category:Hungarian herpetologists +[2018-02-13T08:36:30.482] [INFO] cheese - inserting 1000 documents. first: Cross, Henry and last: List of Britain's Got Talent finalists (series 10) +[2018-02-13T08:36:30.439] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:36:30.630] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T08:36:30.683] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:36:30.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flying Pokémon and last: Eleazar Wheelock +[2018-02-13T08:36:30.756] [INFO] cheese - inserting 1000 documents. first: Battle of Fayetteville and last: File:4,5 & 6PRLP.jpeg +[2018-02-13T08:36:30.937] [INFO] cheese - batch complete in: 1.105 secs +[2018-02-13T08:36:30.938] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:36:30.983] [INFO] cheese - inserting 1000 documents. first: Célio de Castro and last: Politics of Adygea +[2018-02-13T08:36:31.011] [INFO] cheese - inserting 1000 documents. first: Kaunaoa Bay and last: Asian Medical Institute,Kyrgyzstan +[2018-02-13T08:36:31.048] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:36:31.138] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:36:31.235] [INFO] cheese - inserting 1000 documents. first: Skycity Triple Crown and last: Wikipedia:Articles for deletion/Nickel (band) +[2018-02-13T08:36:31.283] [INFO] cheese - batch complete in: 0.6 secs +[2018-02-13T08:36:31.287] [INFO] cheese - inserting 1000 documents. first: Joint Expedition Against Franklin and last: Piel CP.604 Diamant +[2018-02-13T08:36:31.368] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:36:31.403] [INFO] cheese - inserting 1000 documents. first: Mania Metropolitan Area and last: John Stephen Hirsch +[2018-02-13T08:36:31.511] [INFO] cheese - batch complete in: 1.072 secs +[2018-02-13T08:36:31.590] [INFO] cheese - inserting 1000 documents. first: File:CIS Wilfrid Laurier Jersey.png and last: Lamae +[2018-02-13T08:36:31.614] [INFO] cheese - inserting 1000 documents. first: Joseph H. Cook and last: Candyman (album) +[2018-02-13T08:36:31.615] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rotary Club of Pensacola Suburban West and last: Scarface the world is yours +[2018-02-13T08:36:31.646] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:36:31.653] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:36:31.655] [INFO] cheese - inserting 1000 documents. first: Onchidella pachyderma and last: Template:Infobox VG series/doc +[2018-02-13T08:36:31.698] [INFO] cheese - batch complete in: 1.368 secs +[2018-02-13T08:36:31.749] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:36:31.851] [INFO] cheese - inserting 1000 documents. first: Lycoming O-235-C2A and last: Scaptius sanguistrigata +[2018-02-13T08:36:31.929] [INFO] cheese - batch complete in: 0.561 secs +[2018-02-13T08:36:31.971] [INFO] cheese - inserting 1000 documents. first: BMT 60th Street Tunnel Connector and last: A. aeolicus +[2018-02-13T08:36:32.024] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:36:32.035] [INFO] cheese - inserting 1000 documents. first: Galasa dilirialis and last: Mississippi Medal of Efficiency +[2018-02-13T08:36:32.075] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:36:32.106] [INFO] cheese - inserting 1000 documents. first: Bettijane Sills and last: Portal:Speculative fiction/Selected biography/16 +[2018-02-13T08:36:32.120] [INFO] cheese - inserting 1000 documents. first: Wayside Inn (Arlington, Massachusetts) and last: HD 152786 +[2018-02-13T08:36:32.131] [INFO] cheese - inserting 1000 documents. first: Pseudo-homosexuality and last: Clarinet Concerto (Mozart) +[2018-02-13T08:36:32.167] [INFO] cheese - batch complete in: 0.418 secs +[2018-02-13T08:36:32.183] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:36:32.229] [INFO] cheese - batch complete in: 1.292 secs +[2018-02-13T08:36:32.297] [INFO] cheese - inserting 1000 documents. first: Romulo Davide and last: Hemisyntrachelus cortesii +[2018-02-13T08:36:32.353] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T08:36:32.470] [INFO] cheese - inserting 1000 documents. first: Man on the Prowl and last: Awesome Wave +[2018-02-13T08:36:32.480] [INFO] cheese - inserting 1000 documents. first: A. pyrophilus and last: Flue-gas emissions from fossil-fuel combustion +[2018-02-13T08:36:32.503] [INFO] cheese - inserting 1000 documents. first: File:Mtmg.jpg and last: File:AFMS plane monument.jpg +[2018-02-13T08:36:32.534] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:36:32.585] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:36:32.621] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:36:32.742] [INFO] cheese - inserting 1000 documents. first: Pet Food Express and last: The Whiskey Rebellion +[2018-02-13T08:36:32.753] [INFO] cheese - inserting 1000 documents. first: Colin Russell and last: 17th Space Surveillance Squadron +[2018-02-13T08:36:32.825] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:36:32.829] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:36:32.986] [INFO] cheese - inserting 1000 documents. first: Hemisyntrachelus pisanus and last: Bobby Smith (footballer, born 1900s) +[2018-02-13T08:36:33.010] [INFO] cheese - inserting 1000 documents. first: File:Pandamonium.jpg and last: Al-Khayyam +[2018-02-13T08:36:33.043] [INFO] cheese - inserting 1000 documents. first: English words of polish origin and last: Piper (2016 film) +[2018-02-13T08:36:33.053] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:36:33.054] [INFO] cheese - inserting 1000 documents. first: Ravin and last: Alejandro Rodriguez (pioneer child psychiatrist) +[2018-02-13T08:36:33.100] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:36:33.104] [INFO] cheese - batch complete in: 0.519 secs +[2018-02-13T08:36:33.120] [INFO] cheese - batch complete in: 1.422 secs +[2018-02-13T08:36:33.180] [INFO] cheese - inserting 1000 documents. first: Judo at the 2008 Summer Olympics - Women's +78 kg and last: Kumakōgen +[2018-02-13T08:36:33.206] [INFO] cheese - inserting 1000 documents. first: The Mountain School and last: Agua Dulce, California +[2018-02-13T08:36:33.218] [INFO] cheese - inserting 1000 documents. first: Category:New England Blizzard players and last: Category:Macedonian law +[2018-02-13T08:36:33.223] [INFO] cheese - batch complete in: 0.394 secs +[2018-02-13T08:36:33.326] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:36:33.445] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:36:33.535] [INFO] cheese - inserting 1000 documents. first: 1952 Southern 500 and last: Poznań Old Town +[2018-02-13T08:36:33.603] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:36:33.625] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Thebes (Boeotia) and last: P-26A Peashooter +[2018-02-13T08:36:33.687] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:36:33.698] [INFO] cheese - inserting 1000 documents. first: Joe Butler (footballer) and last: Category:Former counties of the United Kingdom +[2018-02-13T08:36:33.720] [INFO] cheese - inserting 1000 documents. first: Diankongou and last: Wikipedia:SALAT +[2018-02-13T08:36:33.763] [INFO] cheese - inserting 1000 documents. first: Category:Environment of Paraíba and last: Reyno de Navarra Arena +[2018-02-13T08:36:33.790] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:36:33.798] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:36:33.871] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:36:34.000] [INFO] cheese - inserting 1000 documents. first: Ingold I of Sweden and last: Subnational entities of Belgium +[2018-02-13T08:36:34.007] [INFO] cheese - inserting 1000 documents. first: Kadra Noor and last: Bombardier Q400 +[2018-02-13T08:36:34.043] [INFO] cheese - inserting 1000 documents. first: File:Milladonovan.jpg and last: Extraction (military) +[2018-02-13T08:36:34.070] [INFO] cheese - inserting 1000 documents. first: John Stezaker and last: Tahnun bin Zayed Al Nahyan +[2018-02-13T08:36:34.146] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:36:34.172] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:36:34.179] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:36:34.214] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:36:34.397] [INFO] cheese - inserting 1000 documents. first: J. E. Ferneley and last: Dar Baluteh Sofla +[2018-02-13T08:36:34.442] [INFO] cheese - inserting 1000 documents. first: Red Booles and last: History of the Roman military +[2018-02-13T08:36:34.466] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:36:34.471] [INFO] cheese - inserting 1000 documents. first: Stanmore Hawks and last: Wikipedia:Articles for deletion/Kaleidoscope (design agency) +[2018-02-13T08:36:34.484] [INFO] cheese - inserting 1000 documents. first: Category:Duterte Administration personnel and last: Recombinant human erythropoietin +[2018-02-13T08:36:34.543] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:36:34.572] [INFO] cheese - batch complete in: 0.701 secs +[2018-02-13T08:36:34.624] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:36:34.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topic candidates/Atlantic campaign of May 1794/addition1 and last: File:2002 UCI Track Cycling World Championships logo.jpg +[2018-02-13T08:36:34.821] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:36:34.937] [INFO] cheese - inserting 1000 documents. first: The king is dead. long live the king and last: Any Team will Do +[2018-02-13T08:36:34.993] [INFO] cheese - inserting 1000 documents. first: Lord Llandaff and last: Category:Pangolins +[2018-02-13T08:36:35.009] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:36:35.014] [INFO] cheese - inserting 1000 documents. first: Mary Murillo and last: The Best Disney Album in the World... Ever! +[2018-02-13T08:36:35.061] [INFO] cheese - inserting 1000 documents. first: Teicha and last: Jornal Nippak +[2018-02-13T08:36:35.066] [INFO] cheese - inserting 1000 documents. first: Roberto Navarro Gonzalez and last: File:MeldrickLewis.jpg +[2018-02-13T08:36:35.072] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:36:35.092] [INFO] cheese - inserting 1000 documents. first: Category:Weightlifting in Estonia and last: Category:Base tunnels +[2018-02-13T08:36:35.103] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:36:35.106] [INFO] cheese - inserting 1000 documents. first: Dar Balut-e Pain and last: Hamburger Kammerspiele +[2018-02-13T08:36:35.128] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:36:35.150] [INFO] cheese - batch complete in: 0.607 secs +[2018-02-13T08:36:35.228] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:36:35.261] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:36:35.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Peer review/22nd Regiment Massachusetts Volunteer Infantry and last: Montpier +[2018-02-13T08:36:35.424] [INFO] cheese - batch complete in: 0.603 secs +[2018-02-13T08:36:35.653] [INFO] cheese - inserting 1000 documents. first: Butler's Dunnart and last: Diane of Orléans +[2018-02-13T08:36:35.696] [INFO] cheese - inserting 1000 documents. first: Jinggangshan college and last: BICEP1 +[2018-02-13T08:36:35.702] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:36:35.717] [INFO] cheese - inserting 1000 documents. first: File:ID4TIME.jpg and last: Wikipedia:Articles for deletion/Rogers Orchards +[2018-02-13T08:36:35.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Richard Dewdney and last: Chemikal underground +[2018-02-13T08:36:35.748] [INFO] cheese - batch complete in: 0.62 secs +[2018-02-13T08:36:35.755] [INFO] cheese - inserting 1000 documents. first: IRLR and last: Allison Flemming (The Grudge Character) +[2018-02-13T08:36:35.773] [INFO] cheese - batch complete in: 0.623 secs +[2018-02-13T08:36:35.805] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:36:35.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To Love Somebody (2014 British film) and last: Category:Exiles of the Iranian Revolution in Mexico +[2018-02-13T08:36:35.839] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:36:35.884] [INFO] cheese - inserting 1000 documents. first: Albert Ramos-Vinolas and last: Grayson Boucher +[2018-02-13T08:36:35.947] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:36:35.988] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:36:36.059] [INFO] cheese - inserting 1000 documents. first: Trevor Dunn and last: The Whiffenpoof Song +[2018-02-13T08:36:36.133] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T08:36:36.236] [INFO] cheese - inserting 1000 documents. first: List of birds of Vanuatu and last: Muhammad Shukri (author) +[2018-02-13T08:36:36.278] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:36:36.302] [INFO] cheese - inserting 1000 documents. first: BICEP3 and last: Ary L. Goldberger +[2018-02-13T08:36:36.321] [INFO] cheese - inserting 1000 documents. first: Draft:Trickster (anime) and last: Bader S. Dweik +[2018-02-13T08:36:36.327] [INFO] cheese - inserting 1000 documents. first: Template:Ffestiniog RDT and last: Ger McDonnell +[2018-02-13T08:36:36.331] [INFO] cheese - inserting 1000 documents. first: Category:1993 floods and last: Gabriel Roman +[2018-02-13T08:36:36.357] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:36:36.365] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T08:36:36.383] [INFO] cheese - inserting 1000 documents. first: Weiss WM-21 Sólyom and last: Stephen Thompson (fighter) +[2018-02-13T08:36:36.383] [INFO] cheese - batch complete in: 0.395 secs +[2018-02-13T08:36:36.394] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:36:36.467] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:36:36.597] [INFO] cheese - inserting 1000 documents. first: Diómedes Diaz and last: The New Left Review +[2018-02-13T08:36:36.652] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:36:36.727] [INFO] cheese - inserting 1000 documents. first: University of Arizona Art Museum, Tucson and last: Events in 1801 +[2018-02-13T08:36:36.762] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T08:36:36.766] [INFO] cheese - inserting 1000 documents. first: Short Type 830 and last: Sir Patrick Dun's Hospital +[2018-02-13T08:36:36.770] [INFO] cheese - inserting 1000 documents. first: Ravin Caldwell and last: Rooker-Feldman +[2018-02-13T08:36:36.834] [INFO] cheese - inserting 1000 documents. first: Baibai-Fas languages and last: Category:Episcopal bishops of Washington (state) +[2018-02-13T08:36:36.920] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T08:36:36.930] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:36:36.963] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:36:36.996] [INFO] cheese - inserting 1000 documents. first: TACHS test and last: Category:Sheriffs' departments of Illinois +[2018-02-13T08:36:37.058] [INFO] cheese - inserting 1000 documents. first: Gabon at the 2004 Summer Olympics and last: Marlene Ahrens +[2018-02-13T08:36:37.060] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:36:37.179] [INFO] cheese - batch complete in: 1.046 secs +[2018-02-13T08:36:37.268] [INFO] cheese - inserting 1000 documents. first: Events in 1800 and last: St. Mark's Chapel, Vancouver +[2018-02-13T08:36:37.281] [INFO] cheese - inserting 1000 documents. first: File:Smokie - Midnight Cafe.jpg and last: Destiny? +[2018-02-13T08:36:37.317] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:36:37.362] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:36:37.446] [INFO] cheese - inserting 1000 documents. first: Nord 1220 Norélan and last: Smith, Jefferson +[2018-02-13T08:36:37.504] [INFO] cheese - inserting 1000 documents. first: Purdue University College of Technology at South Bend Elkhart and last: File:Classroom and administration block, St Mary's School, (Yala Township, Nyanza Province, Kenya)..jpg +[2018-02-13T08:36:37.542] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:36:37.610] [INFO] cheese - inserting 1000 documents. first: Luis Andrés Vargas Gómez and last: R68 (KwaZulu-Natal) +[2018-02-13T08:36:37.629] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T08:36:37.690] [INFO] cheese - inserting 1000 documents. first: 2007 Election and last: Austin Parsons +[2018-02-13T08:36:37.693] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sugar (Shortland Street) and last: File:SWE-OR6.png +[2018-02-13T08:36:37.713] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:36:37.764] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:36:37.803] [INFO] cheese - batch complete in: 0.873 secs +[2018-02-13T08:36:37.951] [INFO] cheese - inserting 1000 documents. first: HSC Natchan World and last: Template:Did you know nominations/Vétra +[2018-02-13T08:36:37.992] [INFO] cheese - inserting 1000 documents. first: 1982 Astro-Bluebonnet Bowl and last: George N Moloney +[2018-02-13T08:36:38.022] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:36:38.110] [INFO] cheese - inserting 1000 documents. first: Smith, Jennifer and last: Template:User x-1/doc +[2018-02-13T08:36:38.128] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:36:38.194] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:36:38.198] [INFO] cheese - inserting 1000 documents. first: Akaka Falls State Park and last: Elections in Latvia +[2018-02-13T08:36:38.319] [INFO] cheese - inserting 1000 documents. first: R69 (KwaZulu-Natal) and last: Rumba clave +[2018-02-13T08:36:38.319] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:36:38.367] [INFO] cheese - inserting 1000 documents. first: Berja and last: Nintendogs: Dachshund and Friends +[2018-02-13T08:36:38.379] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day/10/09 and last: Əmirli +[2018-02-13T08:36:38.414] [INFO] cheese - inserting 1000 documents. first: Mau-mauing and last: Lower Madawaska River Provincial Park +[2018-02-13T08:36:38.429] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:36:38.441] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:36:38.449] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:36:38.473] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:36:38.741] [INFO] cheese - inserting 1000 documents. first: Vito Leonetti and last: Northcote Manor +[2018-02-13T08:36:38.838] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:36:38.845] [INFO] cheese - inserting 1000 documents. first: The Heart Desires and last: Groenkloof Nature Reserve +[2018-02-13T08:36:38.896] [INFO] cheese - inserting 1000 documents. first: Liber Papiensis and last: Cherdonna Shinatra +[2018-02-13T08:36:39.042] [INFO] cheese - inserting 1000 documents. first: Walsh Island and last: Forest Lawn, Calgary +[2018-02-13T08:36:39.048] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:36:39.051] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:36:39.065] [INFO] cheese - inserting 1000 documents. first: Category:Grand Funk Railroad live albums and last: Ahmed Al-Fateh +[2018-02-13T08:36:39.118] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:36:39.170] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:36:39.218] [INFO] cheese - inserting 1000 documents. first: Instruction path length and last: João de Lencastre, 1st Duke of Aveiro +[2018-02-13T08:36:39.298] [INFO] cheese - inserting 1000 documents. first: Iberá and last: NIBBLE +[2018-02-13T08:36:39.348] [INFO] cheese - inserting 1000 documents. first: Cholen and last: Till Midnight +[2018-02-13T08:36:39.357] [INFO] cheese - batch complete in: 0.876 secs +[2018-02-13T08:36:39.369] [INFO] cheese - inserting 1000 documents. first: Turner Classic Movies and last: Olympic Tennis Centre (Athens) +[2018-02-13T08:36:39.415] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:36:39.419] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:36:39.516] [INFO] cheese - batch complete in: 1.197 secs +[2018-02-13T08:36:39.678] [INFO] cheese - inserting 1000 documents. first: File:Covenant-Voices-during-a-rehearsal.jpg and last: Richard Bennett (New Zealand cricketer) +[2018-02-13T08:36:39.688] [INFO] cheese - inserting 1000 documents. first: Queen of North and last: Category:Music festivals in Fredericton +[2018-02-13T08:36:39.715] [INFO] cheese - inserting 1000 documents. first: 1997 Ford World Women's Curling Championship and last: Paint Creek (Johnson County, Kentucky) +[2018-02-13T08:36:39.758] [INFO] cheese - inserting 1000 documents. first: Highland Lawn and last: Johnny Evilguy +[2018-02-13T08:36:39.759] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:36:39.765] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:36:39.802] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:36:39.838] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:36:39.981] [INFO] cheese - inserting 1000 documents. first: Dionychopus rubidus and last: Oronsay (disambiguation) +[2018-02-13T08:36:40.000] [INFO] cheese - inserting 1000 documents. first: Riek Schagen and last: Ireland (name) +[2018-02-13T08:36:40.041] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T08:36:40.064] [INFO] cheese - inserting 1000 documents. first: Serua Province, Fiji and last: The Adventure +[2018-02-13T08:36:40.092] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:36:40.201] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:36:40.318] [INFO] cheese - inserting 1000 documents. first: List of military equipment manufactured in Pakistan and last: Flag of Antigua +[2018-02-13T08:36:40.339] [INFO] cheese - inserting 1000 documents. first: Siena Baseball Field and last: Fifth generation (disambiguation) +[2018-02-13T08:36:40.372] [INFO] cheese - inserting 1000 documents. first: Nikos Kaklamanakis and last: Wikipedia:Articles for deletion/Bingle +[2018-02-13T08:36:40.391] [INFO] cheese - inserting 1000 documents. first: PUPPP syndrome and last: Eliomys occidentalis +[2018-02-13T08:36:40.391] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:36:40.415] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:36:40.476] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:36:40.566] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mohammed Hameeduddin and last: Occa kuronumai +[2018-02-13T08:36:40.543] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:36:40.643] [INFO] cheese - inserting 1000 documents. first: Category:1993 in rugby league and last: Reformed Churches in the Netherlands (Liberated) +[2018-02-13T08:36:40.649] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:36:40.725] [INFO] cheese - batch complete in: 0.886 secs +[2018-02-13T08:36:40.832] [INFO] cheese - inserting 1000 documents. first: Xuan Liu and last: Puckstering +[2018-02-13T08:36:40.931] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:36:41.032] [INFO] cheese - inserting 1000 documents. first: James Taylor (lawyer) and last: Siler semiglaucus +[2018-02-13T08:36:41.055] [INFO] cheese - inserting 1000 documents. first: Guven and last: 1995 Baku Metro fire +[2018-02-13T08:36:41.097] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:36:41.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/retete-culese.blogspot.com and last: RWD-24 +[2018-02-13T08:36:41.176] [INFO] cheese - batch complete in: 0.7 secs +[2018-02-13T08:36:41.221] [INFO] cheese - inserting 1000 documents. first: St Pius X Church and last: Automolis duplicata +[2018-02-13T08:36:41.233] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom locations: S and last: East Maitland +[2018-02-13T08:36:41.244] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:36:41.304] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:36:41.362] [INFO] cheese - batch complete in: 1.161 secs +[2018-02-13T08:36:41.546] [INFO] cheese - inserting 1000 documents. first: Rocky and bullwinkle and last: Seattle seawall +[2018-02-13T08:36:41.551] [INFO] cheese - inserting 1000 documents. first: Holy Crown of Thorns and last: File:Redemption large.jpg +[2018-02-13T08:36:41.574] [INFO] cheese - inserting 1000 documents. first: Value Change Dump and last: 249th EN +[2018-02-13T08:36:41.625] [INFO] cheese - inserting 1000 documents. first: Black September in Jordan and last: Pembe Marmara +[2018-02-13T08:36:41.636] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:36:41.671] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:36:41.675] [INFO] cheese - batch complete in: 1.132 secs +[2018-02-13T08:36:41.709] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:36:41.790] [INFO] cheese - inserting 1000 documents. first: Walter Thomas Mills and last: Quantization of the electromagnetic field +[2018-02-13T08:36:41.855] [INFO] cheese - inserting 1000 documents. first: Category:1943 record charts and last: Category:Olympic handball players of Kazakhstan +[2018-02-13T08:36:41.859] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:36:41.883] [INFO] cheese - inserting 1000 documents. first: Automolis fassli and last: Tyler Evans +[2018-02-13T08:36:41.975] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:36:42.059] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:36:42.061] [INFO] cheese - inserting 1000 documents. first: Commonwealth of Israel and last: Toby gad +[2018-02-13T08:36:42.114] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:36:42.223] [INFO] cheese - inserting 1000 documents. first: File:MDNighthawks.PNG and last: Criticism of Michael Moore +[2018-02-13T08:36:42.254] [INFO] cheese - inserting 1000 documents. first: Broadcast media industry and last: Wikipedia:Articles for deletion/Hans Sandrock +[2018-02-13T08:36:42.260] [INFO] cheese - inserting 1000 documents. first: File:Final Quad Poster (smallest).jpg and last: MATRI Perlis +[2018-02-13T08:36:42.276] [INFO] cheese - inserting 1000 documents. first: JUST Me and last: Methphendrazine +[2018-02-13T08:36:42.283] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:36:42.305] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:36:42.311] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:36:42.322] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Women's triple jump and last: Nathanial Neale +[2018-02-13T08:36:42.324] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T08:36:42.396] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T08:36:42.409] [INFO] cheese - inserting 1000 documents. first: Irina Borechko and last: Masan Group +[2018-02-13T08:36:42.458] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T08:36:42.482] [INFO] cheese - inserting 1000 documents. first: Siai-Marchetti Warrior and last: Wikipedia:Articles for deletion/Maitrayaniya Upanishad +[2018-02-13T08:36:42.541] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:36:42.584] [INFO] cheese - inserting 1000 documents. first: Transportation in Palau and last: Aquae Flaviae +[2018-02-13T08:36:42.650] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:36:42.701] [INFO] cheese - inserting 1000 documents. first: Grooved helmet-orchid and last: Hank the Cowdog season 1 +[2018-02-13T08:36:42.745] [INFO] cheese - inserting 1000 documents. first: Sergey Khorokhordin and last: Petplan USA pet insurance +[2018-02-13T08:36:42.765] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T08:36:42.797] [INFO] cheese - inserting 1000 documents. first: W278AI and last: List of Equatorial Guinean records in athletics +[2018-02-13T08:36:42.823] [INFO] cheese - inserting 1000 documents. first: Nat Neale and last: Category:Sport in Tainan +[2018-02-13T08:36:42.892] [INFO] cheese - inserting 1000 documents. first: Saluc and last: Category:1906 elections in the United States +[2018-02-13T08:36:42.911] [INFO] cheese - inserting 1000 documents. first: Swamp Wallaby and last: Casignetella directella +[2018-02-13T08:36:42.912] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:36:42.928] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:36:42.997] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:36:43.072] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:36:43.079] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:36:43.309] [INFO] cheese - inserting 1000 documents. first: Thailand at the 2006 Winter Olympics and last: George colby chase +[2018-02-13T08:36:43.321] [INFO] cheese - inserting 1000 documents. first: Category:Critics and last: Teletext Limited +[2018-02-13T08:36:43.365] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:36:43.401] [INFO] cheese - inserting 1000 documents. first: IBasis and last: Double Diamond Dude Ranch Dining Hall +[2018-02-13T08:36:43.411] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:36:43.424] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Allerød Municipality and last: 2016 Sparta Prague Open - Doubles +[2018-02-13T08:36:43.425] [INFO] cheese - inserting 1000 documents. first: Slovenian PrvaLiga 2008–09 and last: William II of Brunswick-Calenberg-Göttingen +[2018-02-13T08:36:43.448] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:36:43.476] [INFO] cheese - inserting 1000 documents. first: Casignetella diplodon and last: Conditional fallacy +[2018-02-13T08:36:43.484] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:36:43.514] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:36:43.535] [INFO] cheese - inserting 1000 documents. first: ISO 639:ptq and last: Bell and Hammer +[2018-02-13T08:36:43.573] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T08:36:43.607] [INFO] cheese - batch complete in: 0.61 secs +[2018-02-13T08:36:43.662] [INFO] cheese - inserting 1000 documents. first: Otome game and last: Ontario Highway 49 +[2018-02-13T08:36:43.727] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:36:43.853] [INFO] cheese - inserting 1000 documents. first: Category:Olympic boxers of Papua New Guinea and last: Dragiša Pejović +[2018-02-13T08:36:43.860] [INFO] cheese - inserting 1000 documents. first: Tobias Mattay and last: Henry Hiles +[2018-02-13T08:36:43.891] [INFO] cheese - inserting 1000 documents. first: John Hyacinth de Magellan and last: Scuola italiana di Mosca +[2018-02-13T08:36:43.897] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:36:43.914] [INFO] cheese - inserting 1000 documents. first: 1976 U.S. Clay Court Championships - Women's Doubles and last: Chulahoma (disambiguation) +[2018-02-13T08:36:43.936] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:36:43.939] [INFO] cheese - batch complete in: 0.329 secs +[2018-02-13T08:36:43.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eqt.com and last: Chionodraco kathleenae +[2018-02-13T08:36:43.987] [INFO] cheese - batch complete in: 0.473 secs +[2018-02-13T08:36:44.001] [INFO] cheese - inserting 1000 documents. first: George chase and last: C.L. Jackson +[2018-02-13T08:36:44.041] [INFO] cheese - inserting 1000 documents. first: Tarantella, Incorporated and last: Wicked Witch of the East +[2018-02-13T08:36:44.054] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T08:36:44.070] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:36:44.138] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:36:44.206] [INFO] cheese - inserting 1000 documents. first: Kohan and last: SKGLB Museum +[2018-02-13T08:36:44.274] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:36:44.423] [INFO] cheese - inserting 1000 documents. first: French Lake, California and last: Aftershock (Law & Order) +[2018-02-13T08:36:44.485] [INFO] cheese - inserting 1000 documents. first: Category:Vice Chancellors of the University of South Australia and last: File:President Wanted Poster.jpg +[2018-02-13T08:36:44.489] [INFO] cheese - inserting 1000 documents. first: 2010 NPSL season and last: Ibn Bajja (crater) +[2018-02-13T08:36:44.493] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T08:36:44.543] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:36:44.570] [INFO] cheese - inserting 1000 documents. first: Al–Li and last: Category:Serj Tankian live albums +[2018-02-13T08:36:44.588] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:36:44.680] [INFO] cheese - inserting 1000 documents. first: Chaenichthys rhinoceratus hamatus and last: Film1 Family +[2018-02-13T08:36:44.681] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:36:44.794] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:36:44.889] [INFO] cheese - inserting 1000 documents. first: Lady Yuhwa and last: Template:BE-REG-FLE +[2018-02-13T08:36:44.917] [INFO] cheese - inserting 1000 documents. first: Kostelec u Heřmanova Městce and last: Nonnberg Abbey +[2018-02-13T08:36:44.954] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:36:45.033] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:36:45.116] [INFO] cheese - inserting 1000 documents. first: Ihar Razhkow and last: Category:Public transport in Alberta +[2018-02-13T08:36:45.123] [INFO] cheese - inserting 1000 documents. first: B.H. Roberts and last: Category:1936 in sports +[2018-02-13T08:36:45.147] [INFO] cheese - inserting 1000 documents. first: File:Bonobo Kanzi Panbanisha Sue 2054.jpg and last: Category:Sports venues in Nord-Pas-de-Calais +[2018-02-13T08:36:45.151] [INFO] cheese - inserting 1000 documents. first: Channing Gibson and last: Drillia detecta +[2018-02-13T08:36:45.207] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:36:45.216] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:36:45.267] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T08:36:45.277] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:36:45.325] [INFO] cheese - inserting 1000 documents. first: 1947 Yorkshire Cup and last: House of Commons, Parliament of the United Kingdom of Great Britain and Northern Ireland +[2018-02-13T08:36:45.434] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:36:45.442] [INFO] cheese - inserting 1000 documents. first: Template:Cite DGRBM/testcases and last: Amar-e Mianrud +[2018-02-13T08:36:45.561] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:36:45.691] [INFO] cheese - inserting 1000 documents. first: Lamourby and last: It's About Time (song) +[2018-02-13T08:36:45.739] [INFO] cheese - inserting 1000 documents. first: Category:Universities in Nord-Pas-de-Calais and last: Events in 1082 +[2018-02-13T08:36:45.758] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:36:45.763] [INFO] cheese - inserting 1000 documents. first: Drillia diasi and last: Wikipedia:Articles for deletion/Jim Thornton +[2018-02-13T08:36:45.792] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:36:45.841] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:36:45.892] [INFO] cheese - inserting 1000 documents. first: NAPA Auto Parts 300 and last: Mappila Paattu +[2018-02-13T08:36:45.897] [INFO] cheese - inserting 1000 documents. first: 2008 Toronto explosion and last: Proof (alcohol) +[2018-02-13T08:36:45.960] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:36:45.965] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:36:46.008] [INFO] cheese - inserting 1000 documents. first: House of Lords, Parliament of the United Kingdom of Great Britain and Northern Ireland and last: Beatty Anchorage, British Columbia +[2018-02-13T08:36:46.023] [INFO] cheese - inserting 1000 documents. first: Jiangsu Suning Appliance Group Co., Ltd. and last: Events in 256 +[2018-02-13T08:36:46.025] [INFO] cheese - inserting 1000 documents. first: Davaoeño dialect and last: Shahrak Sarab-e Humian +[2018-02-13T08:36:46.060] [INFO] cheese - batch complete in: 0.268 secs +[2018-02-13T08:36:46.101] [INFO] cheese - inserting 1000 documents. first: Third Reich and Roll and last: Timeline of liberal and democratic parties in New Zealand +[2018-02-13T08:36:46.171] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:36:46.177] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:36:46.267] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:36:46.339] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Patchouli and last: ビ +[2018-02-13T08:36:46.350] [INFO] cheese - inserting 1000 documents. first: Events in 255 and last: Births in 1441 +[2018-02-13T08:36:46.382] [INFO] cheese - inserting 1000 documents. first: HMS Hecate (1839) and last: Category:WikiProject Essays articles +[2018-02-13T08:36:46.390] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T08:36:46.423] [INFO] cheese - inserting 1000 documents. first: Template:Country Radio Stations in Wyoming and last: Category:1918 in rail transport +[2018-02-13T08:36:46.429] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:36:46.483] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:36:46.490] [INFO] cheese - inserting 1000 documents. first: Francisco Rodríguez Jr. and last: Template:Diff3/sandbox +[2018-02-13T08:36:46.499] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:36:46.540] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T08:36:46.598] [INFO] cheese - inserting 1000 documents. first: Mappilapaattu and last: Cadena Salsoul +[2018-02-13T08:36:46.643] [INFO] cheese - inserting 1000 documents. first: Lost in Smoke 2 and last: McDavid (restaurant) +[2018-02-13T08:36:46.676] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T08:36:46.702] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:36:46.707] [INFO] cheese - inserting 1000 documents. first: Category:DOS games and last: Category:757 +[2018-02-13T08:36:46.783] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2012-02-02 and last: Category:Norwegian football clubs 2010 season +[2018-02-13T08:36:46.789] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:36:46.913] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:36:46.990] [INFO] cheese - inserting 1000 documents. first: File:Joe Satriani - 1992 - Friends.jpg and last: Tourism in Crimea +[2018-02-13T08:36:47.009] [INFO] cheese - inserting 1000 documents. first: Category:1919 in rail transport and last: Zarat, Siazan +[2018-02-13T08:36:47.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2007 May 6 and last: Wikipedia:WikiProject Regional and national music/Outreach +[2018-02-13T08:36:47.037] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:36:47.045] [INFO] cheese - inserting 1000 documents. first: Wǔdāngquán and last: Sporting CP in European football +[2018-02-13T08:36:47.063] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:36:47.071] [INFO] cheese - inserting 1000 documents. first: Births in 644 and last: Pravetz-16E +[2018-02-13T08:36:47.095] [INFO] cheese - inserting 1000 documents. first: Template:Footer Olympic Champions 3000 m Steeplechase Men and last: Category:1614 +[2018-02-13T08:36:47.096] [INFO] cheese - batch complete in: 0.667 secs +[2018-02-13T08:36:47.119] [INFO] cheese - batch complete in: 0.443 secs +[2018-02-13T08:36:47.125] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:36:47.137] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T08:36:47.327] [INFO] cheese - inserting 1000 documents. first: Thomas Macdonough and last: Marilena Carpathia +[2018-02-13T08:36:47.380] [INFO] cheese - batch complete in: 0.678 secs +[2018-02-13T08:36:47.424] [INFO] cheese - inserting 1000 documents. first: Yanıq Ələz and last: Bill Lancton +[2018-02-13T08:36:47.488] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T08:36:47.572] [INFO] cheese - inserting 1000 documents. first: Nikonha and last: Category:Moby remix albums +[2018-02-13T08:36:47.572] [INFO] cheese - inserting 1000 documents. first: Swapnil Patil and last: Hanby Hall +[2018-02-13T08:36:47.578] [INFO] cheese - inserting 1000 documents. first: Pravetz-16ES and last: Category:Serbian Orthodox Church in Canada +[2018-02-13T08:36:47.599] [INFO] cheese - inserting 1000 documents. first: Bartolomeo della Porta and last: Kyongwon Ahn +[2018-02-13T08:36:47.648] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:36:47.669] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:36:47.708] [INFO] cheese - inserting 1000 documents. first: Miroslav Lehký and last: File:Hexagonal Coordinates ZigZag Columns.svg +[2018-02-13T08:36:47.722] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:36:47.731] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:36:47.858] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:36:47.935] [INFO] cheese - inserting 1000 documents. first: Category:1615 and last: Wikipedia:Votes for deletion/Ba'thist regime +[2018-02-13T08:36:47.961] [INFO] cheese - inserting 1000 documents. first: Samurai Shodown (series) and last: Category:1986 in British cinema +[2018-02-13T08:36:47.994] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T08:36:48.004] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:36:48.112] [INFO] cheese - inserting 1000 documents. first: Long Island (Boston) and last: Jack Thompson and the Jacob Robida murders +[2018-02-13T08:36:48.120] [INFO] cheese - inserting 1000 documents. first: List of RHPs in Nassau and last: Clore leadership programme +[2018-02-13T08:36:48.219] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:36:48.292] [INFO] cheese - inserting 1000 documents. first: File:Misiaremix1999.jpg and last: Cancellaria parva +[2018-02-13T08:36:48.300] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:36:48.364] [INFO] cheese - inserting 1000 documents. first: List of Iowa Civil War units and last: Jennifer McMahon +[2018-02-13T08:36:48.389] [INFO] cheese - inserting 1000 documents. first: Deaths in 1567 and last: Deaths in 741 +[2018-02-13T08:36:48.420] [INFO] cheese - inserting 1000 documents. first: Western Sahara question and last: Dormition Cathedral, Kiev +[2018-02-13T08:36:48.427] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:36:48.435] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T08:36:48.456] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:36:48.496] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:36:48.501] [INFO] cheese - inserting 1000 documents. first: Angami-Pochuri and last: Wikipedia:WikiProject Spam/LinkReports/nycsubway.org +[2018-02-13T08:36:48.563] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:36:48.767] [INFO] cheese - inserting 1000 documents. first: Deaths in 740 and last: Category:Retail companies of South America +[2018-02-13T08:36:48.782] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T08:36:48.954] [INFO] cheese - inserting 1000 documents. first: Microsveltia patricia and last: Pina (disambiguation) +[2018-02-13T08:36:48.965] [INFO] cheese - inserting 1000 documents. first: ECPP and last: Ara Coeli Church +[2018-02-13T08:36:48.969] [INFO] cheese - inserting 1000 documents. first: Yulia Makhalina and last: Category:Song dynasty eunuchs +[2018-02-13T08:36:48.995] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:36:49.029] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:36:49.063] [INFO] cheese - inserting 1000 documents. first: Allium praecox and last: A.III +[2018-02-13T08:36:49.080] [INFO] cheese - inserting 1000 documents. first: Rude's Hill and last: Central Mashan Miao language +[2018-02-13T08:36:49.084] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:36:49.136] [INFO] cheese - inserting 1000 documents. first: Mankato airport and last: Patrick Forbes of Corse +[2018-02-13T08:36:49.136] [INFO] cheese - inserting 1000 documents. first: Zagreb University and last: Boston Harbor Islands National Recreation Area +[2018-02-13T08:36:49.193] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:36:49.200] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:36:49.227] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:36:49.231] [INFO] cheese - batch complete in: 1.227 secs +[2018-02-13T08:36:49.554] [INFO] cheese - inserting 1000 documents. first: Category:Song dynasty generals and last: Victor Zangiyev +[2018-02-13T08:36:49.588] [INFO] cheese - inserting 1000 documents. first: Henlow Camp station and last: Wikipedia:Articles for deletion/Kuch Gunjoan Ki Shaan Mein +[2018-02-13T08:36:49.624] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:36:49.675] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:36:49.769] [INFO] cheese - inserting 1000 documents. first: Barbecue flavour and last: Uganda national under-19 cricket team +[2018-02-13T08:36:49.791] [INFO] cheese - inserting 1000 documents. first: Greg Broderick and last: Roger W. Riehl +[2018-02-13T08:36:49.824] [INFO] cheese - inserting 1000 documents. first: Adolfo Lazzarini and last: La 1/2 Docena +[2018-02-13T08:36:49.840] [INFO] cheese - inserting 1000 documents. first: José Mariano da Conceição Vellozo and last: File:Birralee logo.JPG +[2018-02-13T08:36:49.869] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:36:49.883] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:36:49.892] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:36:49.932] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:36:50.012] [INFO] cheese - inserting 1000 documents. first: List of women architects and last: Clonca Church & Cross +[2018-02-13T08:36:50.066] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:36:50.136] [INFO] cheese - inserting 1000 documents. first: Constantine and Athanasios Zografi and last: Terebra hancocki +[2018-02-13T08:36:50.176] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T08:36:50.188] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Edgar County, Illinois and last: Platphalonidia dubia +[2018-02-13T08:36:50.258] [INFO] cheese - inserting 1000 documents. first: Wautoma and last: 57-cell +[2018-02-13T08:36:50.273] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:36:50.359] [INFO] cheese - batch complete in: 1.128 secs +[2018-02-13T08:36:50.401] [INFO] cheese - inserting 1000 documents. first: Category:Railway companies established in 1998 and last: Froths +[2018-02-13T08:36:50.434] [INFO] cheese - inserting 1000 documents. first: Persian Armenia and last: St. Patrick's Catholic Church, Yungaburra +[2018-02-13T08:36:50.438] [INFO] cheese - inserting 1000 documents. first: File:Bolinao beacon.JPG and last: CPDLC +[2018-02-13T08:36:50.481] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:36:50.525] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:36:50.546] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:36:50.565] [INFO] cheese - inserting 1000 documents. first: Huhne and last: Composers' Guild of Great Britain +[2018-02-13T08:36:50.644] [INFO] cheese - inserting 1000 documents. first: Bantam (military) and last: Al Masihiya +[2018-02-13T08:36:50.690] [INFO] cheese - inserting 1000 documents. first: Terebra helichrysum and last: De Huinsermolen, Húns +[2018-02-13T08:36:50.693] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:36:50.758] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:36:50.796] [INFO] cheese - inserting 1000 documents. first: Latvian names and last: Category:Community schools in the Royal Borough of Kensington and Chelsea +[2018-02-13T08:36:50.829] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:36:50.946] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:36:51.082] [INFO] cheese - inserting 1000 documents. first: Nightmare (Soul Calibur) and last: Dervishalikyshlak +[2018-02-13T08:36:51.174] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:36:51.298] [INFO] cheese - inserting 1000 documents. first: Mineral resource and last: Mwene-Ditu (commune) +[2018-02-13T08:36:51.302] [INFO] cheese - inserting 1000 documents. first: 2003–04 AFC Ajax season and last: Irn-Bru Cup +[2018-02-13T08:36:51.329] [INFO] cheese - inserting 1000 documents. first: David Brewer (broker) and last: First pair part +[2018-02-13T08:36:51.334] [INFO] cheese - inserting 1000 documents. first: Erromanga (ship) and last: Yorkie Terriers +[2018-02-13T08:36:51.362] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:36:51.365] [INFO] cheese - inserting 1000 documents. first: Projective special linear group and last: Bessacarr +[2018-02-13T08:36:51.373] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:36:51.421] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:36:51.434] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:36:51.476] [INFO] cheese - batch complete in: 0.951 secs +[2018-02-13T08:36:51.557] [INFO] cheese - inserting 1000 documents. first: Sami Jo Small and last: The Outlets +[2018-02-13T08:36:51.618] [INFO] cheese - inserting 1000 documents. first: Early Family Historic District and last: Christie Carpino +[2018-02-13T08:36:51.636] [INFO] cheese - inserting 1000 documents. first: Ərəb, Khachmaz and last: Portal:Early modern Britain/Selected biography/4 +[2018-02-13T08:36:51.636] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:36:51.675] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:36:51.691] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:36:51.826] [INFO] cheese - inserting 1000 documents. first: Sarangapani temple and last: Revue Canadienne de Psychiatrie +[2018-02-13T08:36:51.862] [INFO] cheese - inserting 1000 documents. first: Little Flatrock River and last: File:The Last Desperate Hours.jpg +[2018-02-13T08:36:51.883] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:36:51.929] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:36:51.958] [INFO] cheese - inserting 1000 documents. first: Listowel mutiny and last: Category:Theatres in Croatia +[2018-02-13T08:36:51.958] [INFO] cheese - inserting 1000 documents. first: Feet in the Clouds and last: List of infrared articles +[2018-02-13T08:36:52.019] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:36:52.038] [INFO] cheese - inserting 1000 documents. first: 김해국제공항 and last: Category:Metro Conference soccer +[2018-02-13T08:36:52.053] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:36:52.095] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T08:36:52.122] [INFO] cheese - inserting 1000 documents. first: Shamballah and last: CIGI +[2018-02-13T08:36:52.150] [INFO] cheese - inserting 1000 documents. first: King of the Children and last: St. Paul\'s United Methodist Church (Nyack, New York) +[2018-02-13T08:36:52.183] [INFO] cheese - inserting 1000 documents. first: X-Win64 and last: Portal:Rugby league/Did you know +[2018-02-13T08:36:52.257] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:36:52.273] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:36:52.358] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:36:52.479] [INFO] cheese - inserting 1000 documents. first: L'Intrépide and last: Paralepetopsis ferrugivora +[2018-02-13T08:36:52.568] [INFO] cheese - inserting 1000 documents. first: 501e Régiment de chars de combat and last: Puck (comics character) +[2018-02-13T08:36:52.567] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:36:52.656] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:36:52.716] [INFO] cheese - inserting 1000 documents. first: Wikipedia:RESTRICTED and last: Peter Brady (The Invisible Man) +[2018-02-13T08:36:52.748] [INFO] cheese - inserting 1000 documents. first: McFarlane Lake, Ontario and last: Edward Francis Boyd +[2018-02-13T08:36:52.770] [INFO] cheese - inserting 1000 documents. first: CB Coruña and last: Tiroler Graukäse +[2018-02-13T08:36:52.790] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:36:52.811] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:36:52.817] [INFO] cheese - inserting 1000 documents. first: Category:Lincoln Saltdogs players and last: Template:News/Talk Radio Stations in Maine +[2018-02-13T08:36:52.825] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:36:52.895] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:36:52.934] [INFO] cheese - inserting 1000 documents. first: Boeing LRV and last: Wikipedia:Use of userboxes +[2018-02-13T08:36:52.995] [INFO] cheese - batch complete in: 0.635 secs +[2018-02-13T08:36:53.037] [INFO] cheese - inserting 1000 documents. first: Horslips and last: Vibrating structure gyroscope +[2018-02-13T08:36:53.060] [INFO] cheese - inserting 1000 documents. first: Paralepetopsis floridensis and last: Frank "Deacon" Waite +[2018-02-13T08:36:53.084] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change for the Children Foundation and last: Category:Energy companies established in 1956 +[2018-02-13T08:36:53.114] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:36:53.163] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T08:36:53.179] [INFO] cheese - batch complete in: 0.523 secs +[2018-02-13T08:36:53.188] [INFO] cheese - inserting 1000 documents. first: National Palace (Guatemala) and last: Aura (Revelation Space) +[2018-02-13T08:36:53.211] [INFO] cheese - inserting 1000 documents. first: Belfer Center and last: J Psychohist +[2018-02-13T08:36:53.237] [INFO] cheese - inserting 1000 documents. first: Leslie Pine and last: Wikipedia:Articles for deletion/Virtual Print Fee +[2018-02-13T08:36:53.247] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T08:36:53.251] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T08:36:53.301] [INFO] cheese - inserting 1000 documents. first: Roscommon Township and last: Category:Executed Iraqi women +[2018-02-13T08:36:53.326] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:36:53.357] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:36:53.457] [INFO] cheese - inserting 1000 documents. first: The 1960 Winter Olympics and last: The Emancipation Of Mimi Billboard 200 trajectory +[2018-02-13T08:36:53.515] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:36:53.516] [INFO] cheese - inserting 1000 documents. first: File:Gummibears.jpg and last: List of Beyblade: Metal Fusion episodes (season 1 part 1) +[2018-02-13T08:36:53.580] [INFO] cheese - inserting 1000 documents. first: File:WhatsLeftOfSpiderJohn.jpg and last: Funk Bible +[2018-02-13T08:36:53.586] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T08:36:53.619] [INFO] cheese - batch complete in: 0.44 secs +[2018-02-13T08:36:53.630] [INFO] cheese - inserting 1000 documents. first: Comarchis staurocola and last: Opharus brasiliensis +[2018-02-13T08:36:53.670] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T08:36:53.728] [INFO] cheese - inserting 1000 documents. first: Tarbey and last: SE-tan +[2018-02-13T08:36:53.737] [INFO] cheese - inserting 1000 documents. first: Category:Bus transportation in Mississippi and last: Meanwhile Studios +[2018-02-13T08:36:53.780] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:36:53.891] [INFO] cheese - inserting 1000 documents. first: List of Olympic medalists in swimming (men) and last: Irregular Galaxy M82 +[2018-02-13T08:36:54.005] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:36:54.048] [INFO] cheese - inserting 1000 documents. first: Under the Mersey Wall and last: Wikipedia:Articles for deletion/Ground Control (film) +[2018-02-13T08:36:54.057] [INFO] cheese - batch complete in: 0.943 secs +[2018-02-13T08:36:54.234] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:36:54.239] [INFO] cheese - inserting 1000 documents. first: 2010 National Cricket League Twenty20 and last: Wikipedia:Files for deletion/2010 April 10 +[2018-02-13T08:36:54.244] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/City of God – 10 Years Later and last: American Indian Pidgin English language +[2018-02-13T08:36:54.297] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:36:54.298] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:36:54.300] [INFO] cheese - inserting 1000 documents. first: File:Donovan-The Great Donovan.jpg and last: Journal of the Atmospheric Sciences +[2018-02-13T08:36:54.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of G:link stations/archive1 and last: Palace of Maffei Marescotti +[2018-02-13T08:36:54.394] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:36:54.469] [INFO] cheese - inserting 1000 documents. first: Template:Settlements on the Isle of Wight and last: Songs of the underground railroad +[2018-02-13T08:36:54.507] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:36:54.568] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:36:54.574] [INFO] cheese - inserting 1000 documents. first: Monastery of Chevetogne and last: Hol Horse (manga) +[2018-02-13T08:36:54.675] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:36:54.840] [INFO] cheese - inserting 1000 documents. first: Queensland Kanaka English language and last: Lotta Falkenback +[2018-02-13T08:36:54.875] [INFO] cheese - inserting 1000 documents. first: Jane Elizabeth Harris and last: Category:Les Discrets albums +[2018-02-13T08:36:54.881] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2010 April 10 and last: Aureliano Sanchez Arango +[2018-02-13T08:36:54.913] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:36:54.919] [INFO] cheese - inserting 1000 documents. first: Messier Object 82 and last: Lord's Day Act +[2018-02-13T08:36:54.946] [INFO] cheese - inserting 1000 documents. first: A178 road (Great Britain) and last: Mehdibəyli +[2018-02-13T08:36:54.968] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:36:54.989] [INFO] cheese - inserting 1000 documents. first: File:Petticoat library.jpg and last: Birkat Kohanim +[2018-02-13T08:36:55.012] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:36:55.027] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:36:55.048] [INFO] cheese - inserting 1000 documents. first: Cishomonormativity and last: Fellows, John +[2018-02-13T08:36:55.050] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:36:55.178] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:36:55.215] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:36:55.448] [INFO] cheese - inserting 1000 documents. first: Tinguirica fauna and last: Houngan (Clayfighter) +[2018-02-13T08:36:55.467] [INFO] cheese - inserting 1000 documents. first: Ajmer Chandigarh Garib Rath Express and last: Claude Weston +[2018-02-13T08:36:55.562] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:36:55.621] [INFO] cheese - inserting 1000 documents. first: Kansas National Forest and last: Alıbəyli, Zangilan +[2018-02-13T08:36:55.631] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:36:55.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2010-04-12/Arbitration report and last: Krumbiegel +[2018-02-13T08:36:55.711] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:36:55.801] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:36:55.844] [INFO] cheese - inserting 1000 documents. first: 17-Dihydroequilin sodium sulfate and last: Rocky Bluff Battery and Township +[2018-02-13T08:36:55.935] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:36:55.950] [INFO] cheese - inserting 1000 documents. first: HM Prison Acklington and last: Babotie +[2018-02-13T08:36:56.094] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:36:56.189] [INFO] cheese - inserting 1000 documents. first: Wrinkle ridge and last: Pauline Parker +[2018-02-13T08:36:56.215] [INFO] cheese - inserting 1000 documents. first: Template:R to alternative disambiguation and last: Peter Tossol +[2018-02-13T08:36:56.259] [INFO] cheese - inserting 1000 documents. first: Housetrucker and last: Portal:Aerosmith/box-footer +[2018-02-13T08:36:56.289] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:36:56.293] [INFO] cheese - inserting 1000 documents. first: Three Blind Dates and last: A467 road (Great Britain) +[2018-02-13T08:36:56.305] [INFO] cheese - inserting 1000 documents. first: Doctors to Be: 20 Years On and last: MUC8 +[2018-02-13T08:36:56.306] [INFO] cheese - batch complete in: 1.279 secs +[2018-02-13T08:36:56.345] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:36:56.355] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:36:56.426] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:36:56.455] [INFO] cheese - inserting 1000 documents. first: File:Cover Nergens Zonder Jou.jpg and last: 1912-13 Scottish Football League +[2018-02-13T08:36:56.504] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SZM left/Airport and last: Category:Documents of Slovenia +[2018-02-13T08:36:56.536] [INFO] cheese - batch complete in: 1.567 secs +[2018-02-13T08:36:56.583] [INFO] cheese - batch complete in: 0.648 secs +[2018-02-13T08:36:56.624] [INFO] cheese - inserting 1000 documents. first: U.S. presidential election, 1796 and last: MFPA +[2018-02-13T08:36:56.705] [INFO] cheese - batch complete in: 0.611 secs +[2018-02-13T08:36:56.820] [INFO] cheese - inserting 1000 documents. first: Maren Derlien and last: Portal:Brazil/Selected quote/Archives +[2018-02-13T08:36:56.834] [INFO] cheese - inserting 1000 documents. first: Batman: Battle For The Cowl and last: Fujiwara no Kiyonari +[2018-02-13T08:36:56.854] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T08:36:56.892] [INFO] cheese - inserting 1000 documents. first: Nemuroglanis and last: Barbey D`Aurevilly +[2018-02-13T08:36:56.910] [INFO] cheese - inserting 1000 documents. first: Olav Bjornstad and last: Vishveshwarayya +[2018-02-13T08:36:56.922] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:36:56.967] [INFO] cheese - batch complete in: 0.431 secs +[2018-02-13T08:36:56.985] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:36:57.054] [INFO] cheese - inserting 1000 documents. first: Cindy Burger and last: Bajemelia +[2018-02-13T08:36:57.067] [INFO] cheese - inserting 1000 documents. first: Patricia Aldyen Austin Taylor "Pat" Buckley and last: Long Footed Potoroo +[2018-02-13T08:36:57.093] [INFO] cheese - inserting 1000 documents. first: List of National Titles and last: Hroðulf +[2018-02-13T08:36:57.114] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T08:36:57.126] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:36:57.215] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:36:57.322] [INFO] cheese - inserting 1000 documents. first: 1955-56 Hong Kong First Division League and last: 1978-79 OB I bajnoksag season +[2018-02-13T08:36:57.334] [INFO] cheese - inserting 1000 documents. first: Holddown (disambiguation) and last: PUC-Rio +[2018-02-13T08:36:57.409] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T08:36:57.485] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:36:57.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Walnut Street Historic District and last: File:Squilstand.jpg +[2018-02-13T08:36:57.531] [INFO] cheese - inserting 1000 documents. first: Peter F. (Peter Ferdinand) Drucker and last: Category:Barbados at the Central American and Caribbean Games +[2018-02-13T08:36:57.566] [INFO] cheese - inserting 1000 documents. first: Phtheochroa duponchelana and last: 2011 UEFA European Under-21 Football Championship qualification Group 7 +[2018-02-13T08:36:57.608] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:36:57.632] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:36:57.683] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:36:57.706] [INFO] cheese - inserting 1000 documents. first: Marguerite Viby and last: Tita (footballer) +[2018-02-13T08:36:57.767] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:36:57.925] [INFO] cheese - inserting 1000 documents. first: 1978-79 Polska Liga Hokejowa season and last: Maguta +[2018-02-13T08:36:57.957] [INFO] cheese - inserting 1000 documents. first: K205CY and last: Wajir North Constituency +[2018-02-13T08:36:57.964] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:36:58.016] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T08:36:58.223] [INFO] cheese - inserting 1000 documents. first: Mohammed Al-Balushi and last: Kikonai +[2018-02-13T08:36:58.241] [INFO] cheese - inserting 1000 documents. first: File:Star Fox Adventures GCN Screenshot.jpg and last: Lake Isabella +[2018-02-13T08:36:58.247] [INFO] cheese - inserting 1000 documents. first: Empty category (category theory) and last: 1965 Rutgers Scarlet Knights football team +[2018-02-13T08:36:58.293] [INFO] cheese - inserting 1000 documents. first: Template:Copper Basin Railway and last: Norris Stephen Falla +[2018-02-13T08:36:58.293] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:36:58.301] [INFO] cheese - inserting 1000 documents. first: Dorin Goian and last: Progressive Canadian Party candidates, 2006 Canadian federal election +[2018-02-13T08:36:58.322] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:36:58.354] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T08:36:58.356] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T08:36:58.383] [INFO] cheese - inserting 1000 documents. first: He Whom God Would Make Manifest and last: Wikipedia:GIANTDICK +[2018-02-13T08:36:58.476] [INFO] cheese - inserting 1000 documents. first: 2011 UEFA European Under-21 Football Championship qualification Group 8 and last: Pipariya +[2018-02-13T08:36:58.493] [INFO] cheese - batch complete in: 1.008 secs +[2018-02-13T08:36:58.551] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:36:58.655] [INFO] cheese - batch complete in: 0.972 secs +[2018-02-13T08:36:58.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Greavesville and last: 2011 Kremlin Cup - Women's Singles Qualifying +[2018-02-13T08:36:58.836] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:36:58.878] [INFO] cheese - inserting 1000 documents. first: Gord Reay and last: File:YuccaTheatreMidland.jpg +[2018-02-13T08:36:58.957] [INFO] cheese - inserting 1000 documents. first: A340 road (Great Britain) and last: Sandstone Township +[2018-02-13T08:36:58.979] [INFO] cheese - inserting 1000 documents. first: List of plants used in South Asian cuisine and last: Gerald Michael Browne +[2018-02-13T08:36:59.054] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:36:59.062] [INFO] cheese - batch complete in: 0.769 secs +[2018-02-13T08:36:59.087] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:36:59.149] [INFO] cheese - inserting 1000 documents. first: 2011 Kōfu International Open - Doubles and last: The Mormons (documentary) +[2018-02-13T08:36:59.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Teniii and last: The Islamic Bank of Asia +[2018-02-13T08:36:59.268] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T08:36:59.292] [INFO] cheese - inserting 1000 documents. first: Gary Graham (musician) and last: Erxian +[2018-02-13T08:36:59.305] [INFO] cheese - inserting 1000 documents. first: District courts of Japan and last: Arnold Payne (athlete) +[2018-02-13T08:36:59.338] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:36:59.354] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:36:59.442] [INFO] cheese - batch complete in: 0.787 secs +[2018-02-13T08:36:59.536] [INFO] cheese - inserting 1000 documents. first: Ebauche and last: Ong Bak +[2018-02-13T08:36:59.608] [INFO] cheese - inserting 1000 documents. first: 2011-12 Scottish Junior Cup and last: Communist purges in Serbia in 1944-1945 +[2018-02-13T08:36:59.640] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T08:36:59.680] [INFO] cheese - batch complete in: 1.324 secs +[2018-02-13T08:36:59.690] [INFO] cheese - inserting 1000 documents. first: Secularism in the Arab World and last: The Streamy Awards +[2018-02-13T08:36:59.728] [INFO] cheese - inserting 1000 documents. first: Category:Film artists from Karnataka and last: Category:Beernem +[2018-02-13T08:36:59.784] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:36:59.800] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:36:59.840] [INFO] cheese - inserting 1000 documents. first: Student protests and last: It's Roger Rabbit +[2018-02-13T08:36:59.941] [INFO] cheese - inserting 1000 documents. first: Saint Vincent and the Grenadines at the Commonwealth Games and last: Pederly +[2018-02-13T08:36:59.975] [INFO] cheese - batch complete in: 0.637 secs +[2018-02-13T08:36:59.980] [INFO] cheese - inserting 1000 documents. first: Broginin and last: Template:Steve Martino +[2018-02-13T08:37:00.041] [INFO] cheese - inserting 1000 documents. first: Communities in the Minneapolis-Saint Paul Metro area and last: List of MPs of Colchester, 1885-1983 +[2018-02-13T08:37:00.073] [INFO] cheese - inserting 1000 documents. first: Juno Award for Classical Album of the Year – Large Ensemble or Soloist(s) with Large Ensemble Accompaniment and last: Madhu Purnima +[2018-02-13T08:37:00.098] [INFO] cheese - batch complete in: 0.656 secs +[2018-02-13T08:37:00.110] [INFO] cheese - batch complete in: 1.048 secs +[2018-02-13T08:37:00.177] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T08:37:00.191] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:37:00.329] [INFO] cheese - inserting 1000 documents. first: Guatemala at the 1984 Summer Paralympics and last: Category:Works by David Storey +[2018-02-13T08:37:00.368] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:37:00.497] [INFO] cheese - inserting 1000 documents. first: Architecture of Moscow and last: Swimming at the 2011 World Aquatics Championships - Women's 200 metre butterfly +[2018-02-13T08:37:00.560] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T08:37:00.578] [INFO] cheese - inserting 1000 documents. first: Lutz-Splendore-de Almeida disease and last: Wikipedia:Changing username/Archive4 +[2018-02-13T08:37:00.603] [INFO] cheese - inserting 1000 documents. first: Slit Throats Case and last: William W. Thayer +[2018-02-13T08:37:00.651] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:37:00.718] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:37:00.792] [INFO] cheese - inserting 1000 documents. first: Madison Park High School and last: Dyffryn-bern +[2018-02-13T08:37:00.879] [INFO] cheese - inserting 1000 documents. first: Kelanly and last: 1981 All-Ireland Senior Hurling Championship +[2018-02-13T08:37:00.894] [INFO] cheese - inserting 1000 documents. first: Barbell Nebula and last: Rice car +[2018-02-13T08:37:00.912] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:37:00.992] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2011 World Aquatics Championships - Women's 200 metre freestyle and last: Hardington, Somerset +[2018-02-13T08:37:01.009] [INFO] cheese - inserting 1000 documents. first: Category:Socialist parties in China and last: Les as du turf +[2018-02-13T08:37:01.022] [INFO] cheese - inserting 1000 documents. first: File:8 track sound system.jpg and last: IFLB +[2018-02-13T08:37:01.031] [INFO] cheese - batch complete in: 0.921 secs +[2018-02-13T08:37:01.061] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:37:01.062] [INFO] cheese - batch complete in: 1.382 secs +[2018-02-13T08:37:01.148] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Changing username/Archive40 and last: Longgang Mosque +[2018-02-13T08:37:01.153] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:37:01.204] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:37:01.267] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:37:01.391] [INFO] cheese - inserting 1000 documents. first: List of tall buildings and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/634 +[2018-02-13T08:37:01.429] [INFO] cheese - inserting 1000 documents. first: Cyril Aphrem Karim and last: Chabad Lubavitch News +[2018-02-13T08:37:01.499] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:37:01.514] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:37:01.723] [INFO] cheese - inserting 1000 documents. first: Christopher Wood (English painter) and last: Category:Protégé (TV series) +[2018-02-13T08:37:01.753] [INFO] cheese - inserting 1000 documents. first: Big Babies and last: Cyril Dunne +[2018-02-13T08:37:01.781] [INFO] cheese - inserting 1000 documents. first: Robert Scott Duncanson and last: Hypotia bleusei +[2018-02-13T08:37:01.818] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:37:01.828] [INFO] cheese - inserting 1000 documents. first: Call to power II and last: Iranistan +[2018-02-13T08:37:01.927] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:37:01.936] [INFO] cheese - batch complete in: 0.783 secs +[2018-02-13T08:37:01.977] [INFO] cheese - batch complete in: 0.946 secs +[2018-02-13T08:37:02.053] [INFO] cheese - inserting 1000 documents. first: Sam Gash and last: Grand Moff Governor Wilhuff Tarkin +[2018-02-13T08:37:02.072] [INFO] cheese - inserting 1000 documents. first: Category:Edwards County, Kansas and last: Student council +[2018-02-13T08:37:02.084] [INFO] cheese - inserting 1000 documents. first: Category:Cleveland City Schools and last: Template:Did you know nominations/Sonia Destri Lie +[2018-02-13T08:37:02.136] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:37:02.173] [INFO] cheese - batch complete in: 0.674 secs +[2018-02-13T08:37:02.202] [INFO] cheese - batch complete in: 1.14 secs +[2018-02-13T08:37:02.259] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/635 and last: Edward Belfour +[2018-02-13T08:37:02.352] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:37:02.381] [INFO] cheese - inserting 1000 documents. first: Template:Lists of South African cricketers and last: Category:Taxa named by Alfred Nehring +[2018-02-13T08:37:02.450] [INFO] cheese - inserting 1000 documents. first: File:Anvil - Speed of Sound.jpg and last: File:Love is Gone 2.png +[2018-02-13T08:37:02.534] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:37:02.566] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:37:02.649] [INFO] cheese - inserting 1000 documents. first: Broad Town White Horse and last: Wikipedia:Motto of the day/February 22, 2012 +[2018-02-13T08:37:02.651] [INFO] cheese - inserting 1000 documents. first: Brandy for the Parson and last: Archevan’ +[2018-02-13T08:37:02.766] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:37:02.773] [INFO] cheese - inserting 1000 documents. first: File:Interior of Mirror Lake Library 1915 building.jpg and last: Hanover Town Library +[2018-02-13T08:37:02.800] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:37:02.976] [INFO] cheese - inserting 1000 documents. first: UV/VIS spectroscopy and last: Varsity Show (movie) +[2018-02-13T08:37:03.015] [INFO] cheese - batch complete in: 0.834 secs +[2018-02-13T08:37:03.149] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:37:03.199] [INFO] cheese - inserting 1000 documents. first: The Philanthropist and last: Samantha Jones (character) +[2018-02-13T08:37:03.252] [INFO] cheese - inserting 1000 documents. first: KXET and last: Land of legends (Sagnlandet Lejre) +[2018-02-13T08:37:03.277] [INFO] cheese - inserting 1000 documents. first: Template:March 1943 shipwrecks and last: Quinton Joseph Flynn +[2018-02-13T08:37:03.324] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:37:03.363] [INFO] cheese - inserting 1000 documents. first: Marilyn Brick and last: Maxwell-Boltzmann velocity distribution +[2018-02-13T08:37:03.373] [INFO] cheese - inserting 1000 documents. first: Shiraz Regional Library of Science and Technology and last: The Putney Vale Cemetery and Crematorium +[2018-02-13T08:37:03.388] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:37:03.391] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:37:03.493] [INFO] cheese - inserting 1000 documents. first: Category:Olympic wrestlers of Guinea-Bissau and last: Harringay Green Lanes +[2018-02-13T08:37:03.537] [INFO] cheese - batch complete in: 1.335 secs +[2018-02-13T08:37:03.536] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:37:03.581] [INFO] cheese - inserting 1000 documents. first: Category:Geography of San José de Ocoa Province and last: Graduate Institute of Geneva +[2018-02-13T08:37:03.584] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:37:03.656] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:37:03.847] [INFO] cheese - inserting 1000 documents. first: Vieques Airport and last: Gönen +[2018-02-13T08:37:03.856] [INFO] cheese - inserting 1000 documents. first: Constitution of russia and last: Web harvesting +[2018-02-13T08:37:03.861] [INFO] cheese - inserting 1000 documents. first: Category:People from East Khasi Hills district and last: Homosexuality: A New Christian Ethic +[2018-02-13T08:37:03.894] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:37:03.903] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:37:03.906] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2016-06-18 and last: Koomn Woastn +[2018-02-13T08:37:03.919] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:37:03.973] [INFO] cheese - inserting 1000 documents. first: Amendments to the Constitution of Pakistan and last: The Rosetta Foundation +[2018-02-13T08:37:03.990] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:37:04.020] [INFO] cheese - inserting 1000 documents. first: Graduate Institute in Geneva and last: Pudhu Pudhu Ragangal +[2018-02-13T08:37:04.023] [INFO] cheese - batch complete in: 0.486 secs +[2018-02-13T08:37:04.060] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T08:37:04.119] [INFO] cheese - inserting 1000 documents. first: François Condelmerio and last: Hello Taiwan +[2018-02-13T08:37:04.183] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:37:04.196] [INFO] cheese - inserting 1000 documents. first: Leon Bibel and last: Ådne Søndrål +[2018-02-13T08:37:04.203] [INFO] cheese - inserting 1000 documents. first: Grozden Peak and last: 2015 Puskas Cup +[2018-02-13T08:37:04.232] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T08:37:04.264] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:37:04.338] [INFO] cheese - inserting 1000 documents. first: Sarab-e Abdali and last: I.A.R. 9K Mistral +[2018-02-13T08:37:04.355] [INFO] cheese - inserting 1000 documents. first: Miosgán Médhbh and last: Norwegian National Association for Lesbian and Gay Liberation +[2018-02-13T08:37:04.373] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T08:37:04.390] [INFO] cheese - inserting 1000 documents. first: Bank Holiday Monday (song) and last: Wikipedia:Requests for checkuser/Case/Derex +[2018-02-13T08:37:04.382] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T08:37:04.413] [INFO] cheese - inserting 1000 documents. first: Count Jacob Sievers and last: Category:People from Hylte Municipality +[2018-02-13T08:37:04.446] [INFO] cheese - inserting 1000 documents. first: 2015 Rally Liepaja and last: Ana Petra Perez Florido +[2018-02-13T08:37:04.450] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:37:04.479] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T08:37:04.484] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T08:37:04.509] [INFO] cheese - inserting 1000 documents. first: Easton Bavents and last: Dominique Maltais +[2018-02-13T08:37:04.561] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:37:04.648] [INFO] cheese - inserting 1000 documents. first: Ana Radovic (basketball, born 1990) and last: Wikipedia:Miscellany for deletion/User:MetaphoricalIdiot/Tau (2π) +[2018-02-13T08:37:04.670] [INFO] cheese - batch complete in: 0.191 secs +[2018-02-13T08:37:04.747] [INFO] cheese - inserting 1000 documents. first: Tyler Moore and last: Gukchae Park +[2018-02-13T08:37:04.758] [INFO] cheese - inserting 1000 documents. first: Template:Pretty Ricky and last: Category:Ferry terminals in California +[2018-02-13T08:37:04.775] [INFO] cheese - inserting 1000 documents. first: Hana no Gosho and last: Subbotin oil field +[2018-02-13T08:37:04.810] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:37:04.886] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:37:04.931] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:37:05.038] [INFO] cheese - inserting 1000 documents. first: Bahia de Cata and last: 2015-16 Gazelec Ajaccio season +[2018-02-13T08:37:05.058] [INFO] cheese - inserting 1000 documents. first: Sunny Deol and last: File:FinalFantasyTacticsAdvanceGBACoverArtUS.jpg +[2018-02-13T08:37:05.068] [INFO] cheese - inserting 1000 documents. first: Category:Sports competitions in Indonesia and last: Dysstroma mulleolata +[2018-02-13T08:37:05.072] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:37:05.077] [INFO] cheese - inserting 1000 documents. first: Templum Iovis and last: Sarmouni Brotherhood +[2018-02-13T08:37:05.152] [INFO] cheese - batch complete in: 0.887 secs +[2018-02-13T08:37:05.167] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:37:05.175] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:37:05.324] [INFO] cheese - inserting 1000 documents. first: Convergence (novel) and last: Attendorn +[2018-02-13T08:37:05.342] [INFO] cheese - inserting 1000 documents. first: Borivoj Lazic and last: Cative +[2018-02-13T08:37:05.363] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T08:37:05.390] [INFO] cheese - inserting 1000 documents. first: 2011 FIA WTCC Race of China and last: Category:United States House of Representatives elections, 2003 +[2018-02-13T08:37:05.460] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:37:05.462] [INFO] cheese - inserting 1000 documents. first: Template:IETF RFC 1st april and last: Cha Jong-Bok +[2018-02-13T08:37:05.541] [INFO] cheese - batch complete in: 0.73 secs +[2018-02-13T08:37:05.640] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:37:05.642] [INFO] cheese - inserting 1000 documents. first: The Shops at Iverson and last: Salgira +[2018-02-13T08:37:05.757] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:37:05.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/MrsDietz19 and last: Criona Ni Dhalaigh +[2018-02-13T08:37:05.866] [INFO] cheese - inserting 1000 documents. first: Masahiro Wada and last: Chongqing University of Technology +[2018-02-13T08:37:05.893] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:37:05.933] [INFO] cheese - inserting 1000 documents. first: Youth (Conrad short story) and last: Wikipedia:Articles for deletion/Peter buchanan +[2018-02-13T08:37:06.000] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:37:06.013] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:37:06.132] [INFO] cheese - inserting 1000 documents. first: Catherine Curtin and last: Duena y senora (telenovela) +[2018-02-13T08:37:06.204] [INFO] cheese - inserting 1000 documents. first: Taichang Emperor of China and last: Texas Regulars +[2018-02-13T08:37:06.204] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T08:37:06.234] [INFO] cheese - inserting 1000 documents. first: Shin A-Lam and last: FW Ogilvie +[2018-02-13T08:37:06.272] [INFO] cheese - inserting 1000 documents. first: Template:Office holders in the Diocese of Limerick, Killaloe & Ardfert and last: Graat +[2018-02-13T08:37:06.288] [INFO] cheese - batch complete in: 1.136 secs +[2018-02-13T08:37:06.319] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:37:06.333] [INFO] cheese - inserting 1000 documents. first: Belleisle Creek, New Brunswick and last: Population Research Institute +[2018-02-13T08:37:06.342] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:37:06.442] [INFO] cheese - inserting 1000 documents. first: Category:1643 establishments in Japan and last: Capital of Sardinia +[2018-02-13T08:37:06.450] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:37:06.456] [INFO] cheese - inserting 1000 documents. first: Honda Civic (sixth generation) and last: Sparta Township, Kent County, Michigan +[2018-02-13T08:37:06.481] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T08:37:06.560] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:37:06.578] [INFO] cheese - inserting 1000 documents. first: Csabdi and last: Raphaël Poulain +[2018-02-13T08:37:06.649] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T08:37:06.662] [INFO] cheese - inserting 1000 documents. first: Category:Culture articles needing translation from Chinese Wikipedia and last: Frank Hickling +[2018-02-13T08:37:06.662] [INFO] cheese - inserting 1000 documents. first: Hobbys Yard, New South Wales and last: 2001 Copa America Final +[2018-02-13T08:37:06.718] [INFO] cheese - batch complete in: 0.376 secs +[2018-02-13T08:37:06.755] [INFO] cheese - inserting 1000 documents. first: Eydvor Klakstein and last: Federation Francaise des Societes Feministes +[2018-02-13T08:37:06.768] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:37:06.780] [INFO] cheese - batch complete in: 0.299 secs +[2018-02-13T08:37:06.825] [INFO] cheese - inserting 1000 documents. first: Category:Ittihad FC matches and last: Publique Sportive Mouara +[2018-02-13T08:37:06.879] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:37:06.930] [INFO] cheese - inserting 1000 documents. first: Mithranism and last: Kite Hill, Laguna Niguel, California +[2018-02-13T08:37:06.994] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:37:07.025] [INFO] cheese - inserting 1000 documents. first: Federation Haitienne de Basket-Ball and last: Gerard DuBois +[2018-02-13T08:37:07.065] [INFO] cheese - inserting 1000 documents. first: US Immigration and Naturalization Service and last: Tom Ballard +[2018-02-13T08:37:07.072] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T08:37:07.074] [INFO] cheese - inserting 1000 documents. first: 2001 Copa Peru and last: File:Jerry Douglas Y&R.jpg +[2018-02-13T08:37:07.116] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T08:37:07.122] [INFO] cheese - batch complete in: 0.562 secs +[2018-02-13T08:37:07.202] [INFO] cheese - inserting 1000 documents. first: Soudan Mine and last: Väisälä crater +[2018-02-13T08:37:07.244] [INFO] cheese - inserting 1000 documents. first: Patrick F. Taylor and last: Boulevard Rene-Levesque +[2018-02-13T08:37:07.313] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:37:07.316] [INFO] cheese - inserting 1000 documents. first: Littleton Adventist Hospital and last: Wikipedia:Articles for deletion/Topsite (www) +[2018-02-13T08:37:07.363] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:37:07.367] [INFO] cheese - inserting 1000 documents. first: Karibib Air Base and last: Halleforsnas IF +[2018-02-13T08:37:07.433] [INFO] cheese - inserting 1000 documents. first: Sporting Moura and last: Wikipedia:Sockpuppet investigations/Dinesh Meena92/Archive +[2018-02-13T08:37:07.434] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:37:07.442] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T08:37:07.538] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:37:07.618] [INFO] cheese - inserting 1000 documents. first: The Works (TV series) and last: Alejandro Prospero Reverend +[2018-02-13T08:37:07.629] [INFO] cheese - inserting 1000 documents. first: Wabash Avenue (Baltimore) and last: Lovesong of the Buzzard +[2018-02-13T08:37:07.676] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:37:07.688] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:37:07.743] [INFO] cheese - inserting 1000 documents. first: Hallestad Church and last: James Davis Boriko +[2018-02-13T08:37:07.808] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T08:37:07.815] [INFO] cheese - inserting 1000 documents. first: Baron Boyle of Broghill and last: Naftex +[2018-02-13T08:37:07.941] [INFO] cheese - batch complete in: 0.947 secs +[2018-02-13T08:37:07.949] [INFO] cheese - inserting 1000 documents. first: Talhaearn and last: Bullshitters +[2018-02-13T08:37:07.971] [INFO] cheese - inserting 1000 documents. first: Aenetus crameri and last: Category:Colbie Caillat +[2018-02-13T08:37:08.008] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T08:37:08.076] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:37:08.078] [INFO] cheese - inserting 1000 documents. first: Crestview, Okaloosa County, FL and last: Mildred Z Solomon +[2018-02-13T08:37:08.138] [INFO] cheese - inserting 1000 documents. first: Richard Almgill Harrison and last: Canadians of Greek ancestry +[2018-02-13T08:37:08.148] [INFO] cheese - inserting 1000 documents. first: Jamyangiin Monkhbat and last: Somerset station (Market–Frankford Line) +[2018-02-13T08:37:08.154] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:37:08.191] [INFO] cheese - inserting 1000 documents. first: List of Valencian monarchs and last: Eagle-Vail +[2018-02-13T08:37:08.196] [INFO] cheese - inserting 1000 documents. first: Wielka Wola, Opoczno County and last: Wola Wydrzyna +[2018-02-13T08:37:08.209] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T08:37:08.259] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:37:08.276] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:37:08.333] [INFO] cheese - batch complete in: 1.02 secs +[2018-02-13T08:37:08.530] [INFO] cheese - inserting 1000 documents. first: Jose Guardiola (actor) and last: Jorg Schellmann +[2018-02-13T08:37:08.549] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T08:37:08.556] [INFO] cheese - inserting 1000 documents. first: Antun Palic and last: Wikipedia:Articles for deletion/The California Penal League of Fantasy Baseball +[2018-02-13T08:37:08.586] [INFO] cheese - inserting 1000 documents. first: Banach-Mazur game and last: Japanese Ministry of Education, Culture, Sports, Science and Technology +[2018-02-13T08:37:08.603] [INFO] cheese - batch complete in: 0.595 secs +[2018-02-13T08:37:08.694] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:37:08.703] [INFO] cheese - inserting 1000 documents. first: A.H. Clough and last: Migraine of the eye +[2018-02-13T08:37:08.707] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Atlanta Way (film) and last: Art Museum at SUNY Potsdam +[2018-02-13T08:37:08.798] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:37:08.804] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:37:08.820] [INFO] cheese - inserting 1000 documents. first: Jorg Schneider and last: Foxtrott +[2018-02-13T08:37:08.847] [INFO] cheese - inserting 1000 documents. first: Złotniki, Pajęczno County and last: Konopnica, Poddębice County +[2018-02-13T08:37:08.909] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T08:37:08.957] [INFO] cheese - inserting 1000 documents. first: WTGV-FM and last: Tenno Heika Banzai +[2018-02-13T08:37:08.959] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:37:09.008] [INFO] cheese - inserting 1000 documents. first: Michael Omidi and last: Bahceli, Nigde +[2018-02-13T08:37:09.082] [INFO] cheese - batch complete in: 0.478 secs +[2018-02-13T08:37:09.082] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:37:09.201] [INFO] cheese - inserting 1000 documents. first: 17α-Ethynyl-5(10)-estren-17β-ol and last: List of Djurgardens IF Fotboll managers +[2018-02-13T08:37:09.217] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T08:37:09.226] [INFO] cheese - inserting 1000 documents. first: Sanghamitta and last: FILE ID.DIZ +[2018-02-13T08:37:09.295] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:37:09.311] [INFO] cheese - inserting 1000 documents. first: Driving licence in Canada and last: Wikipedia:Articles for deletion/Only Man +[2018-02-13T08:37:09.383] [INFO] cheese - inserting 1000 documents. first: Archeological sites and last: File:Thegladiatordaredevil.jpg +[2018-02-13T08:37:09.382] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:37:09.402] [INFO] cheese - inserting 1000 documents. first: Eye migraine and last: CGAS Brooklyn +[2018-02-13T08:37:09.414] [INFO] cheese - inserting 1000 documents. first: Case No. 05-cv-1189 and last: The GrooveGrass Boyz +[2018-02-13T08:37:09.425] [INFO] cheese - inserting 1000 documents. first: List of Djurgardens IF Fotboll players (25–99 appearances) and last: Makombe River +[2018-02-13T08:37:09.464] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T08:37:09.466] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:37:09.509] [INFO] cheese - batch complete in: 0.711 secs +[2018-02-13T08:37:09.524] [INFO] cheese - inserting 1000 documents. first: Bahcesehir Koleji and last: Quantitative sciences +[2018-02-13T08:37:09.537] [INFO] cheese - inserting 1000 documents. first: Ray Griff and last: Wikipedia:Version 1.0 Editorial Team/Geology articles by quality/1 +[2018-02-13T08:37:09.591] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T08:37:09.592] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:37:09.670] [INFO] cheese - inserting 1000 documents. first: Makoto Sato (actor) and last: ISO 3166-2:LU-RD +[2018-02-13T08:37:09.686] [INFO] cheese - batch complete in: 0.222 secs +[2018-02-13T08:37:09.764] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Rubia and last: Riverside Secondary +[2018-02-13T08:37:09.830] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:37:09.871] [INFO] cheese - inserting 1000 documents. first: File:Vellum The Book of All Hours by Hal Duncan.jpeg and last: Template:RussiaAdmMunRef/kya/munlist/nizhneingashsky +[2018-02-13T08:37:09.875] [INFO] cheese - inserting 1000 documents. first: Steph rice and last: File:Various artists-star in a million.jpg +[2018-02-13T08:37:09.914] [INFO] cheese - inserting 1000 documents. first: Mellosa Church and last: Category:Laser ranging satellites +[2018-02-13T08:37:09.924] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T08:37:09.933] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T08:37:09.956] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T08:37:10.037] [INFO] cheese - inserting 1000 documents. first: Gavin Whittaker and last: Siberian Yup'ik +[2018-02-13T08:37:10.046] [INFO] cheese - inserting 1000 documents. first: Quantitative science and last: Belotic (Vladimirci) +[2018-02-13T08:37:10.062] [INFO] cheese - inserting 1000 documents. first: Chloe Lane and last: Bone Thugs-N-Harmony discography +[2018-02-13T08:37:10.085] [INFO] cheese - inserting 1000 documents. first: PVCO and last: Category:Belgian jazz pianists +[2018-02-13T08:37:10.087] [INFO] cheese - batch complete in: 0.494 secs +[2018-02-13T08:37:10.092] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:37:10.112] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:37:10.150] [INFO] cheese - inserting 1000 documents. first: Mas negro que la noche (2014 film) and last: O Mundo E Bao, Sebastiao! +[2018-02-13T08:37:10.160] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:37:10.208] [INFO] cheese - batch complete in: 0.252 secs +[2018-02-13T08:37:10.361] [INFO] cheese - inserting 1000 documents. first: Lillien Martin and last: Judith Kelley +[2018-02-13T08:37:10.387] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2008, Aug 22 and last: Category:Olympic beach volleyball players of Angola +[2018-02-13T08:37:10.396] [INFO] cheese - inserting 1000 documents. first: Louisa Alice Baker and last: Brod, Radom County +[2018-02-13T08:37:10.399] [INFO] cheese - inserting 1000 documents. first: Sheikh Ahmed Abdullah and last: Veta La Palma +[2018-02-13T08:37:10.414] [INFO] cheese - batch complete in: 0.584 secs +[2018-02-13T08:37:10.421] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T08:37:10.429] [INFO] cheese - inserting 1000 documents. first: Merida Province (1622-1676) and last: Pierre Antoine Francois Huber +[2018-02-13T08:37:10.450] [INFO] cheese - batch complete in: 0.242 secs +[2018-02-13T08:37:10.468] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:37:10.492] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:37:10.588] [INFO] cheese - inserting 1000 documents. first: Zoltán Béres and last: Ian Shaw (archaeologist) +[2018-02-13T08:37:10.638] [INFO] cheese - batch complete in: 0.526 secs +[2018-02-13T08:37:10.659] [INFO] cheese - inserting 1000 documents. first: Category:Tokyo International University faculty and last: Category:2010s in California by city +[2018-02-13T08:37:10.679] [INFO] cheese - inserting 1000 documents. first: Brohn and last: Trinity Academy +[2018-02-13T08:37:10.688] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T08:37:10.703] [INFO] cheese - inserting 1000 documents. first: Wayne Handley and last: Robert Frederick Foster +[2018-02-13T08:37:10.715] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T08:37:10.757] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:37:10.773] [INFO] cheese - inserting 1000 documents. first: Shirai Ryu and last: Nancy Evans (disambiguation) +[2018-02-13T08:37:10.820] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T08:37:10.833] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pipers and last: Mutating engine +[2018-02-13T08:37:10.891] [INFO] cheese - inserting 1000 documents. first: Regnbagslandet and last: Samuel Herrera Chavez +[2018-02-13T08:37:10.904] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:37:10.913] [INFO] cheese - inserting 1000 documents. first: Marquis of Bute and last: File:Goldfootbikinimachine.jpg +[2018-02-13T08:37:10.914] [INFO] cheese - batch complete in: 0.225 secs +[2018-02-13T08:37:10.935] [INFO] cheese - inserting 1000 documents. first: Superrigidity theorem and last: Antiroll tanks +[2018-02-13T08:37:10.966] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:37:11.014] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sienna Biotec and last: Shuangjing Subdistrict, Beijing +[2018-02-13T08:37:11.016] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:37:11.072] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T08:37:11.125] [INFO] cheese - inserting 1000 documents. first: Samuel Lim Nunez and last: TMSanime +[2018-02-13T08:37:11.148] [INFO] cheese - inserting 1000 documents. first: Elisabeth Cain and last: Red Haw State Park +[2018-02-13T08:37:11.157] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T08:37:11.161] [INFO] cheese - inserting 1000 documents. first: North Road (disambiguation) and last: 2011–13 Saudi Arabian protests +[2018-02-13T08:37:11.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Buffy/Episodes/to do and last: Archives Restaurant (Washington, D.C.) +[2018-02-13T08:37:11.192] [INFO] cheese - batch complete in: 0.372 secs +[2018-02-13T08:37:11.218] [INFO] cheese - batch complete in: 0.461 secs +[2018-02-13T08:37:11.222] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:37:11.340] [INFO] cheese - inserting 1000 documents. first: Cafe Tacvba (album) and last: Church of Santa Teresa y San Jose (Madrid) +[2018-02-13T08:37:11.341] [INFO] cheese - inserting 1000 documents. first: Sladan Scepovic and last: Conlay station +[2018-02-13T08:37:11.359] [INFO] cheese - batch complete in: 0.202 secs +[2018-02-13T08:37:11.363] [INFO] cheese - inserting 1000 documents. first: Aghkilisa (disambiguation) and last: Nawathana +[2018-02-13T08:37:11.405] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T08:37:11.459] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teabagger and last: Enigmaticolus auzendei +[2018-02-13T08:37:11.482] [INFO] cheese - batch complete in: 0.516 secs +[2018-02-13T08:37:11.591] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:37:11.697] [INFO] cheese - inserting 1000 documents. first: Soren Nielsen May and last: Turkey in the Bala Turkvizyon Song Contest +[2018-02-13T08:37:11.698] [INFO] cheese - inserting 1000 documents. first: John Caulfield (footballer) and last: Wikipedia:Help desk/Archives/2014 April 3 +[2018-02-13T08:37:11.704] [INFO] cheese - inserting 1000 documents. first: Music of Saint Lucia and last: Wilno, Ontario +[2018-02-13T08:37:11.715] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T08:37:11.749] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:37:11.754] [INFO] cheese - inserting 1000 documents. first: Astrodynamics and last: Indian general election, 1980 +[2018-02-13T08:37:11.799] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:37:11.808] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:37:11.816] [INFO] cheese - inserting 1000 documents. first: Korban Ha-Edah and last: 1964 in the environment +[2018-02-13T08:37:11.824] [INFO] cheese - inserting 1000 documents. first: Anthony Merry and last: Folke K. Skoog +[2018-02-13T08:37:11.867] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T08:37:11.930] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:37:11.984] [INFO] cheese - inserting 1000 documents. first: APAH and last: Football of Ukraine +[2018-02-13T08:37:12.020] [INFO] cheese - inserting 1000 documents. first: Turkish government – Gulen Movement conflict and last: Euro 2016 statistics +[2018-02-13T08:37:12.025] [INFO] cheese - inserting 1000 documents. first: Manaria canetae and last: Klistervatnet/Bjørnevatnet +[2018-02-13T08:37:12.040] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:37:12.047] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T08:37:12.074] [INFO] cheese - batch complete in: 0.483 secs +[2018-02-13T08:37:12.114] [INFO] cheese - inserting 1000 documents. first: Jacob Lincoln Freund and last: Child soldiers in Africa +[2018-02-13T08:37:12.155] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T08:37:12.161] [INFO] cheese - inserting 1000 documents. first: Idgah (place) and last: Cristian Fernandez Conchuela +[2018-02-13T08:37:12.209] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T08:37:12.239] [INFO] cheese - inserting 1000 documents. first: Vrion, Sarande and last: Agua de Pau Massif +[2018-02-13T08:37:12.240] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kenneth Arbuthnot and last: A Worn Path +[2018-02-13T08:37:12.256] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T08:37:12.299] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:37:12.424] [INFO] cheese - inserting 1000 documents. first: Railroad watch and last: Henry II of Silesia +[2018-02-13T08:37:12.424] [INFO] cheese - inserting 1000 documents. first: Aguas Boas e Forles and last: Module:Key people/sandbox +[2018-02-13T08:37:12.442] [INFO] cheese - inserting 1000 documents. first: 2007 All-Ireland Senior Camogie Championship and last: Frag-fest +[2018-02-13T08:37:12.450] [INFO] cheese - batch complete in: 0.194 secs +[2018-02-13T08:37:12.460] [INFO] cheese - inserting 1000 documents. first: Public Health Service Achievement Medal and last: File:Hbar 338A87E.png +[2018-02-13T08:37:12.462] [INFO] cheese - inserting 1000 documents. first: Claudio Foscarini and last: Category:Book-Class chess articles +[2018-02-13T08:37:12.465] [INFO] cheese - batch complete in: 0.256 secs +[2018-02-13T08:37:12.488] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:37:12.507] [INFO] cheese - inserting 1000 documents. first: Cipriano Cassamá and last: Australian-Zimbabwean relations +[2018-02-13T08:37:12.523] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:37:12.538] [INFO] cheese - inserting 1000 documents. first: Toki wo Koe Sora wo Koe / Password is 0 and last: Wikipedia:Articles for deletion/Homeworkgate +[2018-02-13T08:37:12.542] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:37:12.587] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:37:12.603] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T08:37:12.815] [INFO] cheese - inserting 1000 documents. first: Nikita Nikiforovs and last: Hollocher +[2018-02-13T08:37:12.941] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:37:13.055] [INFO] cheese - inserting 1000 documents. first: Selekuer and last: Joe Hernandez (American football) +[2018-02-13T08:37:13.076] [INFO] cheese - inserting 1000 documents. first: Studio Bellerive and last: Der Jager von Fall (1974 film) +[2018-02-13T08:37:13.076] [INFO] cheese - inserting 1000 documents. first: Khety I (nomarch) and last: Category:One Way (American band) songs +[2018-02-13T08:37:13.079] [INFO] cheese - inserting 1000 documents. first: Vorosto and last: File:Pawlu Camilleri il-Bibi Armonika Awi2001.jpg +[2018-02-13T08:37:13.091] [INFO] cheese - inserting 1000 documents. first: Kisbér and last: Braunau in Rohr Abbey +[2018-02-13T08:37:13.106] [INFO] cheese - inserting 1000 documents. first: Australian-Ukrainian relations and last: Sport Mastermind +[2018-02-13T08:37:13.121] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:37:13.128] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:37:13.136] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:37:13.147] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:37:13.179] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:37:13.184] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:37:13.355] [INFO] cheese - inserting 1000 documents. first: Musierowicz and last: Category:1989 politics in New York (state) +[2018-02-13T08:37:13.389] [INFO] cheese - inserting 1000 documents. first: Final Fight Guy and last: Friedrich Wilhelm Hemprich +[2018-02-13T08:37:13.400] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T08:37:13.422] [INFO] cheese - inserting 1000 documents. first: Syrnola hera and last: Wikipedia:Articles for deletion/Siterra +[2018-02-13T08:37:13.459] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T08:37:13.471] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:37:13.490] [INFO] cheese - inserting 1000 documents. first: Daredevil (TV series) and last: Category:2005–06 NCAA Division I women's basketball season +[2018-02-13T08:37:13.549] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T08:37:13.606] [INFO] cheese - inserting 1000 documents. first: Schaffle and last: Pentecostal Holiness Churches +[2018-02-13T08:37:13.657] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Wedding (Power Rangers) and last: Believe (Brooks & Dunn song) +[2018-02-13T08:37:13.679] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:37:13.708] [INFO] cheese - inserting 1000 documents. first: Kovzha River and last: John D. Harvey +[2018-02-13T08:37:13.738] [INFO] cheese - inserting 1000 documents. first: Stay (Tooji song) and last: Alexander Libermann +[2018-02-13T08:37:13.741] [INFO] cheese - batch complete in: 0.557 secs +[2018-02-13T08:37:13.752] [INFO] cheese - inserting 1000 documents. first: WBSI and last: Oudheusden +[2018-02-13T08:37:13.772] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:37:13.792] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T08:37:13.814] [INFO] cheese - inserting 1000 documents. first: Category:Estonian women judges and last: Pinhook, Lawrence County +[2018-02-13T08:37:13.842] [INFO] cheese - batch complete in: 0.663 secs +[2018-02-13T08:37:13.852] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:37:13.983] [INFO] cheese - inserting 1000 documents. first: File:Grosvenor Park Theatre Logo.png and last: File:ACS Ksar (logo).png +[2018-02-13T08:37:14.088] [INFO] cheese - batch complete in: 0.539 secs +[2018-02-13T08:37:14.154] [INFO] cheese - inserting 1000 documents. first: Manna (gymnastics) and last: Granulifusus staminatus +[2018-02-13T08:37:14.224] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T08:37:14.272] [INFO] cheese - inserting 1000 documents. first: Egana and last: Category:Belarusian words and phrases +[2018-02-13T08:37:14.314] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:37:14.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2016 June 20 and last: AMD A10 5745M +[2018-02-13T08:37:14.360] [INFO] cheese - inserting 1000 documents. first: Andrew Tan (businessman) and last: Krzemienica +[2018-02-13T08:37:14.394] [INFO] cheese - inserting 1000 documents. first: File:Pahoeoe fountain original.jpg and last: Category:American novelty song performers +[2018-02-13T08:37:14.396] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:37:14.418] [INFO] cheese - batch complete in: 0.677 secs +[2018-02-13T08:37:14.435] [INFO] cheese - inserting 1000 documents. first: Bács-Kiskun County and last: Epsilon Proteobacteria +[2018-02-13T08:37:14.459] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:37:14.465] [INFO] cheese - inserting 1000 documents. first: Reithrodontomys megalotis and last: Marc Singer (documentarian) +[2018-02-13T08:37:14.516] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T08:37:14.539] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:37:14.569] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Vera (Openg) and last: Battle on the Kozara +[2018-02-13T08:37:14.600] [INFO] cheese - inserting 1000 documents. first: Export of cryptography in the United States and last: Copper-copper(II) sulfate electrode +[2018-02-13T08:37:14.609] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T08:37:14.678] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:37:14.718] [INFO] cheese - inserting 1000 documents. first: Latirus stenomphalus and last: Tritia goreensis +[2018-02-13T08:37:14.741] [INFO] cheese - inserting 1000 documents. first: A4-5150M and last: Template:Bishop of the Lindisfaras +[2018-02-13T08:37:14.770] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:37:14.774] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T08:37:14.846] [INFO] cheese - inserting 1000 documents. first: Krzemienica, Łódź Voivodeship and last: Łobudzice, Zduńska Wola County +[2018-02-13T08:37:14.871] [INFO] cheese - inserting 1000 documents. first: Farol da Ponta de Sao Lourenco and last: Frederic and Cecilia Cutescu-Storck Art Museum +[2018-02-13T08:37:14.900] [INFO] cheese - inserting 1000 documents. first: The Plan (Six Feet Under Episode) and last: Bad Day For Trains +[2018-02-13T08:37:14.903] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T08:37:14.907] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T08:37:14.984] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:37:15.118] [INFO] cheese - inserting 1000 documents. first: File:Half Note (album).jpg and last: Category:20th-century Lebanese actresses +[2018-02-13T08:37:15.124] [INFO] cheese - inserting 1000 documents. first: Template:Bishops of the Lindisfaras and last: Ces Renwick +[2018-02-13T08:37:15.135] [INFO] cheese - inserting 1000 documents. first: File:Mikko alanne.jpg and last: Displacement ventilation +[2018-02-13T08:37:15.161] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T08:37:15.165] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T08:37:15.167] [INFO] cheese - inserting 1000 documents. first: Template:Prisons in Yorkshire and the Humber and last: Calliotropis francocacii +[2018-02-13T08:37:15.198] [INFO] cheese - inserting 1000 documents. first: Nepenthes sp. Anipahan and last: Algroup +[2018-02-13T08:37:15.208] [INFO] cheese - inserting 1000 documents. first: Star Wars: Droids and last: Avaré, São Paulo +[2018-02-13T08:37:15.205] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:37:15.227] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T08:37:15.240] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T08:37:15.327] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:37:15.431] [INFO] cheese - inserting 1000 documents. first: Nowy Kromolin and last: 2007 BCR Open Romania – Doubles +[2018-02-13T08:37:15.521] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:37:15.562] [INFO] cheese - inserting 1000 documents. first: File:Adolf Dickfeld.jpg and last: Funeral Dirge For The Rotting Sun +[2018-02-13T08:37:15.654] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:37:15.689] [INFO] cheese - inserting 1000 documents. first: Queen's first e.p. and last: Pune District +[2018-02-13T08:37:15.708] [INFO] cheese - inserting 1000 documents. first: King Gaplus and last: Minimum Viable Product (Silicon Valley) +[2018-02-13T08:37:15.737] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:37:15.770] [INFO] cheese - inserting 1000 documents. first: Calliotropis galea and last: 1960 SN +[2018-02-13T08:37:15.792] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:37:15.800] [INFO] cheese - inserting 1000 documents. first: Cecil Renwick and last: Lying Cat +[2018-02-13T08:37:15.839] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:37:15.888] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:37:15.892] [INFO] cheese - inserting 1000 documents. first: Box crab and last: Template:Electoral districts of Western Australia +[2018-02-13T08:37:15.966] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:37:16.007] [INFO] cheese - inserting 1000 documents. first: Gergo Ivancsik and last: Shelford's law of tolerance +[2018-02-13T08:37:16.038] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T08:37:16.082] [INFO] cheese - inserting 1000 documents. first: 1966 CF and last: Henllan, Ceredigion +[2018-02-13T08:37:16.085] [INFO] cheese - inserting 1000 documents. first: File:Golf Bloom.jpg and last: File:Grb FK Mladi Radnik.png +[2018-02-13T08:37:16.115] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T08:37:16.138] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:37:16.154] [INFO] cheese - inserting 1000 documents. first: Standard gravitational parameter and last: William George Horner +[2018-02-13T08:37:16.218] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:37:16.240] [INFO] cheese - inserting 1000 documents. first: Gustav Adolph, Count of Nassau-Saarbrucken and last: Hellas ohne Gotter +[2018-02-13T08:37:16.249] [INFO] cheese - inserting 1000 documents. first: Bando Jonez and last: Wikipedia:Sockpuppet investigations/DataDrivenOne/Archive +[2018-02-13T08:37:16.269] [INFO] cheese - batch complete in: 0.231 secs +[2018-02-13T08:37:16.297] [INFO] cheese - inserting 1000 documents. first: Draft:Amy Leventer and last: Kentucky Route 420 +[2018-02-13T08:37:16.320] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:37:16.351] [INFO] cheese - batch complete in: 0.463 secs +[2018-02-13T08:37:16.374] [INFO] cheese - inserting 1000 documents. first: Template:WikiProjectbasename/doc and last: Category:People from Lysekil Municipality +[2018-02-13T08:37:16.386] [INFO] cheese - inserting 1000 documents. first: Funeral For a Feeling and last: Template:AFL-bio-1940s-stub +[2018-02-13T08:37:16.407] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T08:37:16.461] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:37:16.516] [INFO] cheese - inserting 1000 documents. first: Pierre Rigolout and last: Washington Preparatory High School +[2018-02-13T08:37:16.531] [INFO] cheese - inserting 1000 documents. first: Helle (Spuligbach) and last: Ibirapuera (Sao Paulo Metro) +[2018-02-13T08:37:16.570] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T08:37:16.577] [INFO] cheese - inserting 1000 documents. first: Adobe Photoshop Lightroom 2 and last: Computer game AI +[2018-02-13T08:37:16.593] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:37:16.642] [INFO] cheese - batch complete in: 0.504 secs +[2018-02-13T08:37:16.710] [INFO] cheese - inserting 1000 documents. first: Butov and last: Hewani +[2018-02-13T08:37:16.735] [INFO] cheese - inserting 1000 documents. first: Ibn Baya Ensemble and last: Javier Gonzalez Fraga +[2018-02-13T08:37:16.748] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T08:37:16.767] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T08:37:16.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/BetterThanSuchAsYou/Archive and last: Centennial Broadcasting +[2018-02-13T08:37:16.942] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T08:37:17.037] [INFO] cheese - inserting 1000 documents. first: X-57 Maxwell and last: Template:Attached KML/Newtown Square Branch +[2018-02-13T08:37:17.049] [INFO] cheese - inserting 1000 documents. first: Elizabeth Thomas (poet) and last: Qubani ka meetha +[2018-02-13T08:37:17.101] [INFO] cheese - inserting 1000 documents. first: Dezső and last: Kiiasovskiy +[2018-02-13T08:37:17.106] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:37:17.119] [INFO] cheese - inserting 1000 documents. first: File:Johnny English movie.jpg and last: Category:Art museums and galleries in Russia +[2018-02-13T08:37:17.125] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T08:37:17.136] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T08:37:17.194] [INFO] cheese - inserting 1000 documents. first: Eike and last: Ćiribiribela +[2018-02-13T08:37:17.230] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:37:17.232] [INFO] cheese - inserting 1000 documents. first: Javier Gomez Cifuentes and last: Quigley poll +[2018-02-13T08:37:17.247] [INFO] cheese - inserting 1000 documents. first: File:Pabst100.jpg and last: Smoke and Ashes +[2018-02-13T08:37:17.275] [INFO] cheese - batch complete in: 0.682 secs +[2018-02-13T08:37:17.298] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:37:17.335] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:37:17.376] [INFO] cheese - inserting 1000 documents. first: Grote Kerk and last: Great Negotiations: Agreements that Changed the Modern World +[2018-02-13T08:37:17.417] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T08:37:17.506] [INFO] cheese - inserting 1000 documents. first: Germantitov and last: Idelsonia +[2018-02-13T08:37:17.552] [INFO] cheese - batch complete in: 0.416 secs +[2018-02-13T08:37:17.606] [INFO] cheese - inserting 1000 documents. first: Template:Unicode chart Osage and last: Hayes County Sheriff's Office +[2018-02-13T08:37:17.622] [INFO] cheese - inserting 1000 documents. first: Msn money and last: Yuri Lyapkin +[2018-02-13T08:37:17.642] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:37:17.689] [INFO] cheese - inserting 1000 documents. first: Sonorous Entertainment Inc. and last: Wikipedia:Articles for deletion/Star Mountain Studios +[2018-02-13T08:37:17.697] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:37:17.735] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:37:17.808] [INFO] cheese - inserting 1000 documents. first: Cichostów-Kolonia and last: Jakubówka +[2018-02-13T08:37:17.823] [INFO] cheese - inserting 1000 documents. first: Independent School League (Washington, DC area) and last: Zond Program +[2018-02-13T08:37:17.836] [INFO] cheese - inserting 1000 documents. first: Category:1900s disestablishments in Hawaii and last: Category:Nigerian graphic designers +[2018-02-13T08:37:17.858] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:37:17.907] [INFO] cheese - inserting 1000 documents. first: Idzerda and last: Jyoumon +[2018-02-13T08:37:17.923] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:37:17.925] [INFO] cheese - batch complete in: 0.649 secs +[2018-02-13T08:37:17.962] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T08:37:18.089] [INFO] cheese - inserting 1000 documents. first: Q300 and last: Amoxipen +[2018-02-13T08:37:18.125] [INFO] cheese - inserting 1000 documents. first: Helmut Rauca and last: Thor Halvorsen +[2018-02-13T08:37:18.140] [INFO] cheese - inserting 1000 documents. first: 85 Leonard Street and last: Template:Taxonomy/Gymnarthridae +[2018-02-13T08:37:18.183] [INFO] cheese - batch complete in: 0.953 secs +[2018-02-13T08:37:18.244] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T08:37:18.301] [INFO] cheese - inserting 1000 documents. first: Housing at Yale and last: Template:2000–01 in Serie A +[2018-02-13T08:37:18.235] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:37:18.332] [INFO] cheese - inserting 1000 documents. first: Gyirong County and last: Nitrium (Star Trek) +[2018-02-13T08:37:18.342] [INFO] cheese - inserting 1000 documents. first: Jakubówka, Lublin Voivodeship and last: Adamowice, Lesser Poland Voivodeship +[2018-02-13T08:37:18.364] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:37:18.433] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:37:18.416] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:37:18.611] [INFO] cheese - inserting 1000 documents. first: The Nearness of You (Houston Person album) and last: Ajjamada B. Devaiah +[2018-02-13T08:37:18.690] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:37:18.729] [INFO] cheese - inserting 1000 documents. first: Pakistan Nuclear Society and last: Steppin' Out (song) +[2018-02-13T08:37:18.735] [INFO] cheese - inserting 1000 documents. first: Thorleif Halvorsen and last: Ambikah +[2018-02-13T08:37:18.740] [INFO] cheese - inserting 1000 documents. first: Tain District and last: John Smedley +[2018-02-13T08:37:18.743] [INFO] cheese - inserting 1000 documents. first: Hitler's Putsch and last: Lavalys +[2018-02-13T08:37:18.790] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:37:18.791] [INFO] cheese - batch complete in: 0.425 secs +[2018-02-13T08:37:18.798] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:37:18.849] [INFO] cheese - batch complete in: 0.924 secs +[2018-02-13T08:37:18.964] [INFO] cheese - inserting 1000 documents. first: Triceromeryx and last: Łomnica-Zdrój +[2018-02-13T08:37:19.015] [INFO] cheese - inserting 1000 documents. first: The Mark of Zero and last: Plastics Historical Society +[2018-02-13T08:37:19.021] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:37:19.066] [INFO] cheese - inserting 1000 documents. first: Amoxipenil and last: Relative error +[2018-02-13T08:37:19.074] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:37:19.149] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:37:19.172] [INFO] cheese - inserting 1000 documents. first: Von Dincklage and last: WMXXX +[2018-02-13T08:37:19.201] [INFO] cheese - inserting 1000 documents. first: Miyazakihayao and last: School board (England & Wales) +[2018-02-13T08:37:19.236] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:37:19.241] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:37:19.269] [INFO] cheese - inserting 1000 documents. first: Buddleja davidii 'Windy Hill' and last: Paralititan stromeri +[2018-02-13T08:37:19.306] [INFO] cheese - inserting 1000 documents. first: Ambyka and last: File:Power-rangersadishankar.jpeg +[2018-02-13T08:37:19.330] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:37:19.399] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:37:19.421] [INFO] cheese - inserting 1000 documents. first: Trzepieciny and last: Jim McAlister (soccer) +[2018-02-13T08:37:19.490] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T08:37:19.508] [INFO] cheese - inserting 1000 documents. first: Anna of Brandenburg and last: Riemann theta function +[2018-02-13T08:37:19.536] [INFO] cheese - inserting 1000 documents. first: Piazzia and last: Shcherban' +[2018-02-13T08:37:19.558] [INFO] cheese - inserting 1000 documents. first: St. Thomas Aquinas High School (Overland Park, Kansas) and last: CSI: Miami (season 5) +[2018-02-13T08:37:19.575] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T08:37:19.593] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:37:19.682] [INFO] cheese - batch complete in: 0.608 secs +[2018-02-13T08:37:19.837] [INFO] cheese - inserting 1000 documents. first: Lee Jae-Sung and last: Archdeaconry of Italy and Malta +[2018-02-13T08:37:19.915] [INFO] cheese - inserting 1000 documents. first: Absolute error and last: Albanian Communist Party +[2018-02-13T08:37:19.929] [INFO] cheese - batch complete in: 0.692 secs +[2018-02-13T08:37:19.953] [INFO] cheese - inserting 1000 documents. first: Category:Manx short story writers and last: Toveri +[2018-02-13T08:37:19.970] [INFO] cheese - inserting 1000 documents. first: Cornisepta verenae and last: Tret'yakov +[2018-02-13T08:37:20.027] [INFO] cheese - batch complete in: 0.878 secs +[2018-02-13T08:37:20.046] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:37:20.049] [INFO] cheese - inserting 1000 documents. first: Aptalis Pharmatech and last: Johannesburg City Library +[2018-02-13T08:37:20.057] [INFO] cheese - inserting 1000 documents. first: Euler-MacLaurin formula and last: Wikipedia:Articles for deletion/Birmingham New Road tram stop +[2018-02-13T08:37:20.080] [INFO] cheese - batch complete in: 0.681 secs +[2018-02-13T08:37:20.149] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:37:20.160] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:37:20.324] [INFO] cheese - inserting 1000 documents. first: File:Ami Suzuki - Thank You 4 Every Day Every Body.jpg and last: Canton City School District +[2018-02-13T08:37:20.325] [INFO] cheese - inserting 1000 documents. first: Trevanvoorth and last: Surround array +[2018-02-13T08:37:20.364] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T08:37:20.375] [INFO] cheese - inserting 1000 documents. first: Category:Defunct airports in Germany and last: Jimmy Phillips (footballer, born 1966) +[2018-02-13T08:37:20.378] [INFO] cheese - inserting 1000 documents. first: List of Archdeacons of Italy and Malta and last: Monin–Obukhov similarity theory +[2018-02-13T08:37:20.403] [INFO] cheese - batch complete in: 0.81 secs +[2018-02-13T08:37:20.426] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:37:20.432] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:37:20.590] [INFO] cheese - inserting 1000 documents. first: E.1 and last: Sanagochi +[2018-02-13T08:37:20.591] [INFO] cheese - inserting 1000 documents. first: Category:Sex crimes in Northern Ireland and last: Drew Bledso +[2018-02-13T08:37:20.612] [INFO] cheese - inserting 1000 documents. first: Sakız, Mersin and last: Wang Ying(Screen actress) +[2018-02-13T08:37:20.633] [INFO] cheese - batch complete in: 0.484 secs +[2018-02-13T08:37:20.636] [INFO] cheese - batch complete in: 0.556 secs +[2018-02-13T08:37:20.661] [INFO] cheese - inserting 1000 documents. first: Communist Party of Albania and last: Bernardino de Campos +[2018-02-13T08:37:20.671] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T08:37:20.739] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:37:20.894] [INFO] cheese - inserting 1000 documents. first: Toyota EX-I and last: Pans Lane Halt station +[2018-02-13T08:37:20.934] [INFO] cheese - batch complete in: 0.57 secs +[2018-02-13T08:37:20.946] [INFO] cheese - inserting 1000 documents. first: Oh No Ross and Carrie and last: Nari (letter) +[2018-02-13T08:37:21.024] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:37:21.042] [INFO] cheese - inserting 1000 documents. first: Witanowice, Lesser Poland Voivodeship and last: HIC 10203 +[2018-02-13T08:37:21.051] [INFO] cheese - inserting 1000 documents. first: The goatse man and last: Robert Berry +[2018-02-13T08:37:21.069] [INFO] cheese - inserting 1000 documents. first: Kam Newton and last: Kyiv National Trade-Economics University +[2018-02-13T08:37:21.162] [INFO] cheese - inserting 1000 documents. first: Ohana Punch and last: Consummation (Album) +[2018-02-13T08:37:21.176] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:37:21.203] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:37:21.254] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:37:21.293] [INFO] cheese - inserting 1000 documents. first: Fischhof Manuscript and last: Tallinn French Gymnasium +[2018-02-13T08:37:21.314] [INFO] cheese - batch complete in: 0.911 secs +[2018-02-13T08:37:21.404] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:37:21.449] [INFO] cheese - inserting 1000 documents. first: TAAG Angola Airlines Flight 462 and last: Gen. George Cowles House +[2018-02-13T08:37:21.567] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:37:21.607] [INFO] cheese - inserting 1000 documents. first: Martino’s Summer and last: Christian Schilling +[2018-02-13T08:37:21.628] [INFO] cheese - inserting 1000 documents. first: Ralph O. Brewster and last: Suzukaze Mayo +[2018-02-13T08:37:21.721] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:37:21.721] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:37:21.732] [INFO] cheese - inserting 1000 documents. first: Leonard Horatio Slatter and last: Chłopice +[2018-02-13T08:37:21.818] [INFO] cheese - batch complete in: 0.642 secs +[2018-02-13T08:37:21.852] [INFO] cheese - inserting 1000 documents. first: United Malays National Organisation leadership election, 2004 and last: Christian Brothers' School +[2018-02-13T08:37:21.866] [INFO] cheese - inserting 1000 documents. first: Category:1738 operas and last: Wikipedia:Deletion review/Log/2007 May 16 +[2018-02-13T08:37:21.916] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:37:21.952] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:37:22.070] [INFO] cheese - inserting 1000 documents. first: Portal:Cars/Selected picture/24 and last: Evening Prayer +[2018-02-13T08:37:22.085] [INFO] cheese - inserting 1000 documents. first: Category:Works by Pierre-Joseph Proudhon and last: Sir Gilbert Claughton +[2018-02-13T08:37:22.136] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:37:22.140] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:37:22.174] [INFO] cheese - inserting 1000 documents. first: Annebronte and last: Preventive treatment +[2018-02-13T08:37:22.229] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:37:22.240] [INFO] cheese - inserting 1000 documents. first: Molesworth of Tetcott and last: Cawy Bottling Company +[2018-02-13T08:37:22.289] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:37:22.318] [INFO] cheese - inserting 1000 documents. first: File:BBC Sleepers DVD cover.jpg and last: Ciecierze +[2018-02-13T08:37:22.357] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Monterey, California and last: Vladislav Frolov (field athlete) +[2018-02-13T08:37:22.358] [INFO] cheese - inserting 1000 documents. first: Geoffrey Hoyle and last: Passive park +[2018-02-13T08:37:22.359] [INFO] cheese - batch complete in: 0.541 secs +[2018-02-13T08:37:22.402] [INFO] cheese - inserting 1000 documents. first: Tamatebako and last: Nekromantik +[2018-02-13T08:37:22.416] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T08:37:22.407] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:37:22.508] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:37:22.568] [INFO] cheese - inserting 1000 documents. first: Simplified molecular input line entry system and last: Admission Possible +[2018-02-13T08:37:22.628] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T08:37:22.638] [INFO] cheese - inserting 1000 documents. first: Prophylactic treatment and last: Masonic of Detroit +[2018-02-13T08:37:22.639] [INFO] cheese - inserting 1000 documents. first: Skye (Disambiguation) and last: Kerli Koiv +[2018-02-13T08:37:22.683] [INFO] cheese - batch complete in: 0.454 secs +[2018-02-13T08:37:22.703] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:37:22.783] [INFO] cheese - inserting 1000 documents. first: Bączal Dolny and last: Stare Miasto, Podkarpackie Voivodeship +[2018-02-13T08:37:22.802] [INFO] cheese - inserting 1000 documents. first: 1100 Milam and last: Chilean frigate Covadonga +[2018-02-13T08:37:22.820] [INFO] cheese - inserting 1000 documents. first: File:Hitler and the Occult.jpg and last: Adrian Voo +[2018-02-13T08:37:22.830] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T08:37:22.838] [INFO] cheese - inserting 1000 documents. first: Katekyo Hitman Reborn and last: BCCH +[2018-02-13T08:37:22.868] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:37:22.881] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T08:37:22.921] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T08:37:23.046] [INFO] cheese - inserting 1000 documents. first: Category:Koderma district and last: Ethmia canuisella +[2018-02-13T08:37:23.068] [INFO] cheese - inserting 1000 documents. first: Koforidua Senior High Technical School and last: Martha J. Wong +[2018-02-13T08:37:23.079] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T08:37:23.106] [INFO] cheese - inserting 1000 documents. first: God Shuffled His Feet and last: Category:Archaeological sites in Libya +[2018-02-13T08:37:23.161] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:37:23.253] [INFO] cheese - batch complete in: 0.745 secs +[2018-02-13T08:37:23.287] [INFO] cheese - inserting 1000 documents. first: Scott Oldham and last: Wikipedia:Deletion review/List of interesting or unusual place names (2nd) +[2018-02-13T08:37:23.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:MARINERSNEWS and last: Przędzel-Kolonia +[2018-02-13T08:37:23.349] [INFO] cheese - inserting 1000 documents. first: Draft:Noel Cressie draft and last: Template:Taxonomy/Angonisaurus +[2018-02-13T08:37:23.365] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 3219 and last: Category:Colombian Christians +[2018-02-13T08:37:23.398] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:37:23.402] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:37:23.452] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:37:23.455] [INFO] cheese - inserting 1000 documents. first: Zaksa Kędzierzyn-Koźle and last: Runica, Lipkovo +[2018-02-13T08:37:23.459] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:37:23.533] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:37:23.747] [INFO] cheese - inserting 1000 documents. first: Fenclozic acid and last: File:MCMBLostBoy2010.jpg +[2018-02-13T08:37:23.748] [INFO] cheese - inserting 1000 documents. first: Martha Jee Wong and last: Robert Verdun +[2018-02-13T08:37:23.812] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:37:23.817] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:37:23.867] [INFO] cheese - inserting 1000 documents. first: Daryl Shuttleworth and last: File:Bluebeards Castle screenshot.jpg +[2018-02-13T08:37:23.888] [INFO] cheese - inserting 1000 documents. first: File:Roberta Flack - Killing Me Softly with His Song.jpg and last: File:Water SA.jpg +[2018-02-13T08:37:23.908] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the province of Savona and last: Casa de Guerche +[2018-02-13T08:37:23.915] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:37:23.950] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:37:23.967] [INFO] cheese - batch complete in: 0.508 secs +[2018-02-13T08:37:23.969] [INFO] cheese - inserting 1000 documents. first: Mirko Gashi and last: Category:Stockton-on-Tees Borough +[2018-02-13T08:37:23.977] [INFO] cheese - inserting 1000 documents. first: Al-Husseiniyah and last: Tsai Ting-kuei +[2018-02-13T08:37:24.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Ambition (cards) and last: Wikipedia:Votes for deletion/Charlie Young +[2018-02-13T08:37:24.023] [INFO] cheese - batch complete in: 0.621 secs +[2018-02-13T08:37:24.027] [INFO] cheese - inserting 1000 documents. first: Dave Hyatt and last: Pierre Pelot +[2018-02-13T08:37:24.031] [INFO] cheese - batch complete in: 0.498 secs +[2018-02-13T08:37:24.034] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T08:37:24.104] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:37:24.233] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Charmer and last: Green-lit +[2018-02-13T08:37:24.255] [INFO] cheese - inserting 1000 documents. first: George 'Shadow' Morton and last: Kambarata-2 +[2018-02-13T08:37:24.255] [INFO] cheese - batch complete in: 0.221 secs +[2018-02-13T08:37:24.265] [INFO] cheese - inserting 1000 documents. first: Iran (word) and last: Peterborough Roadrunners +[2018-02-13T08:37:24.309] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:37:24.313] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T08:37:24.359] [INFO] cheese - inserting 1000 documents. first: Ballica and last: Durgasthan +[2018-02-13T08:37:24.372] [INFO] cheese - inserting 1000 documents. first: Tsai Ting-Kuei and last: Portlaoise body +[2018-02-13T08:37:24.381] [INFO] cheese - inserting 1000 documents. first: St. John's Church, Egham and last: William O. Reichert +[2018-02-13T08:37:24.411] [INFO] cheese - batch complete in: 0.496 secs +[2018-02-13T08:37:24.419] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:37:24.444] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Elfrid Sundqvist and last: Long Beach Grand Prix +[2018-02-13T08:37:24.459] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T08:37:24.473] [INFO] cheese - batch complete in: 0.218 secs +[2018-02-13T08:37:24.517] [INFO] cheese - inserting 1000 documents. first: Peter Heathfield and last: List of Star Wars handmaidens +[2018-02-13T08:37:24.590] [INFO] cheese - batch complete in: 0.567 secs +[2018-02-13T08:37:24.599] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron and last: Lipoxin +[2018-02-13T08:37:24.702] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:37:24.773] [INFO] cheese - inserting 1000 documents. first: Khattiya Sawasdipol and last: $2 coin +[2018-02-13T08:37:24.804] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Hot Cut-up Pancake & the Grannies on Flying Wheelchairs and last: Wikipedia:Votes for deletion/Julian Aguilar +[2018-02-13T08:37:24.956] [INFO] cheese - inserting 1000 documents. first: Whatever Tomorrow Brings and last: Conception: Ore no Kodomo wo Undekure +[2018-02-13T08:37:24.967] [INFO] cheese - inserting 1000 documents. first: William Reichert and last: Template:Malaysian general election, 1986 +[2018-02-13T08:37:24.979] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:37:25.005] [INFO] cheese - inserting 1000 documents. first: Discipline (Janet Jackson album) and last: Vente-privee.com +[2018-02-13T08:37:25.009] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:37:25.082] [INFO] cheese - inserting 1000 documents. first: Podocytisus caramanicus and last: Wayne's World 2 (soundtrack) +[2018-02-13T08:37:25.106] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:37:25.114] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:37:25.169] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:37:25.193] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:37:25.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Julian Togelius and last: Wikipedia:Votes for deletion/Misoponia +[2018-02-13T08:37:25.307] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T08:37:25.460] [INFO] cheese - inserting 1000 documents. first: Gwydir Castle and last: Cana Island Light +[2018-02-13T08:37:25.524] [INFO] cheese - batch complete in: 0.934 secs +[2018-02-13T08:37:25.558] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Mission of Maitreya, Eternal Divine Path and last: Wikipedia:Votes for deletion/Quartetarian +[2018-02-13T08:37:25.577] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T08:37:25.590] [INFO] cheese - inserting 1000 documents. first: Portal:Children's literature/Selected quote/week20 and last: Wikipedia:Featured picture candidates/Three Eras of Houston +[2018-02-13T08:37:25.632] [INFO] cheese - inserting 1000 documents. first: Red Nightmare and last: Cuvette Department +[2018-02-13T08:37:25.638] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:37:25.653] [INFO] cheese - inserting 1000 documents. first: Katie Peretti Snyder and last: Amirdovlat Amasiatsi +[2018-02-13T08:37:25.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2014 April 16 and last: Hyamic languages +[2018-02-13T08:37:25.675] [INFO] cheese - inserting 1000 documents. first: Bashdiza and last: Eric Gast +[2018-02-13T08:37:25.695] [INFO] cheese - inserting 1000 documents. first: Template:Infobox DIN and last: The Yodel Napper! +[2018-02-13T08:37:25.696] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:37:25.710] [INFO] cheese - batch complete in: 0.596 secs +[2018-02-13T08:37:25.717] [INFO] cheese - batch complete in: 0.548 secs +[2018-02-13T08:37:25.726] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:37:25.777] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:37:25.779] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Quarto do Chefinho and last: Wikipedia:Votes for deletion/Syprus +[2018-02-13T08:37:25.824] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T08:37:25.956] [INFO] cheese - inserting 1000 documents. first: Jorge Garcia Carneiro and last: Juana Ramirez +[2018-02-13T08:37:25.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Syracuse to Washington, DC flights and last: Wikipedia:Votes for deletion/White-on-black color scheme +[2018-02-13T08:37:25.975] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T08:37:25.987] [INFO] cheese - inserting 1000 documents. first: Tea production in the United States and last: Trust companies +[2018-02-13T08:37:25.992] [INFO] cheese - batch complete in: 0.168 secs +[2018-02-13T08:37:26.054] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:37:26.064] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 1035-2 and last: Cirák +[2018-02-13T08:37:26.082] [INFO] cheese - inserting 1000 documents. first: Category:IS Open and last: Lionardo da Serzana +[2018-02-13T08:37:26.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Volée Air Flight 180 and last: Category:People murdered in Ukraine +[2018-02-13T08:37:26.112] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:37:26.128] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:37:26.167] [INFO] cheese - inserting 1000 documents. first: The Yodel Napper and last: Meet the Press (US TV program) +[2018-02-13T08:37:26.169] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:37:26.248] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:37:26.308] [INFO] cheese - inserting 1000 documents. first: Co-captain and last: Kashii-Jingu Station +[2018-02-13T08:37:26.346] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/White Nationalist Party and last: Consulate-General of Russia in Shenyang +[2018-02-13T08:37:26.356] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T08:37:26.403] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T08:37:26.422] [INFO] cheese - inserting 1000 documents. first: Tokyo Metro Nanboku Line and last: David B. Pall +[2018-02-13T08:37:26.510] [INFO] cheese - inserting 1000 documents. first: Henri-Edgar Lavigueur and last: Category:Paralympic athletes of Latvia +[2018-02-13T08:37:26.509] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:37:26.549] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T08:37:26.621] [INFO] cheese - inserting 1000 documents. first: Cakóháza and last: Pokcy +[2018-02-13T08:37:26.705] [INFO] cheese - inserting 1000 documents. first: Kashii-gu and last: Wikipedia:Teahouse/Host lounge/How-to guides/Other +[2018-02-13T08:37:26.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Louisa Connolly-Burnham and last: Battle of Kiauneliškis +[2018-02-13T08:37:26.724] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:37:26.744] [INFO] cheese - inserting 1000 documents. first: Draft:Crawshay Bailey, Junior and last: Claudia Wiesemann +[2018-02-13T08:37:26.765] [INFO] cheese - inserting 1000 documents. first: Consulate-General of Russia in Guangzhou and last: Bristol Type 45 Scandinavian Tourer +[2018-02-13T08:37:26.784] [INFO] cheese - inserting 1000 documents. first: Philippines under state of emergency, 2003 and last: Promises (group) +[2018-02-13T08:37:26.788] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T08:37:26.809] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T08:37:26.822] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:37:26.825] [INFO] cheese - batch complete in: 0.577 secs +[2018-02-13T08:37:26.847] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:37:27.122] [INFO] cheese - inserting 1000 documents. first: Category:Paralympic competitors for Latvia and last: Bibliography of Canadian nationalism +[2018-02-13T08:37:27.130] [INFO] cheese - inserting 1000 documents. first: Krugers Woche and last: La Vina, Catamarca +[2018-02-13T08:37:27.159] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T08:37:27.164] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:37:27.200] [INFO] cheese - inserting 1000 documents. first: Zudreitai and last: File:Crackinup.jpg +[2018-02-13T08:37:27.236] [INFO] cheese - inserting 1000 documents. first: Bristol Type 81A Greek Military Tourer and last: File:City of the Daleks.jpg +[2018-02-13T08:37:27.249] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:37:27.298] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T08:37:27.308] [INFO] cheese - inserting 1000 documents. first: R. Syme and last: Faílde +[2018-02-13T08:37:27.311] [INFO] cheese - inserting 1000 documents. first: Uelzen–Stendal railway and last: Aleksandar Ðuric +[2018-02-13T08:37:27.365] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:37:27.382] [INFO] cheese - inserting 1000 documents. first: Clara Pinto Correia and last: Vincent I. Maduka +[2018-02-13T08:37:27.394] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:37:27.396] [INFO] cheese - inserting 1000 documents. first: Kjersti Plätzer and last: Sebadoh III +[2018-02-13T08:37:27.438] [INFO] cheese - inserting 1000 documents. first: La Vina, Salta and last: A Cry of Peacocks +[2018-02-13T08:37:27.470] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:37:27.493] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:37:27.498] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T08:37:27.557] [INFO] cheese - inserting 1000 documents. first: Lin Qisheng and last: Wikipedia:Articles for deletion/John McGuinness (Irish footballer) +[2018-02-13T08:37:27.638] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T08:37:27.786] [INFO] cheese - inserting 1000 documents. first: Mubarak Hashem and last: Wikipedia:Articles for deletion/Skyfex +[2018-02-13T08:37:27.852] [INFO] cheese - inserting 1000 documents. first: Booster (electric power) and last: Super Bowl MVP +[2018-02-13T08:37:27.859] [INFO] cheese - inserting 1000 documents. first: Bundy Ranch standoff and last: Leib Carriage House +[2018-02-13T08:37:27.872] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T08:37:27.940] [INFO] cheese - inserting 1000 documents. first: San Rocco alla Lupa, Siena and last: Tomy's Secret +[2018-02-13T08:37:27.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adolf Benda and last: Line 16 (Sao Paulo Metro) +[2018-02-13T08:37:27.956] [INFO] cheese - batch complete in: 0.591 secs +[2018-02-13T08:37:27.983] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:37:28.029] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T08:37:28.064] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:37:28.094] [INFO] cheese - inserting 1000 documents. first: Broker, Lewis and last: Maria Magdalene +[2018-02-13T08:37:28.150] [INFO] cheese - inserting 1000 documents. first: Aysgarth Falls and last: List of Italo-Dalmatian languages +[2018-02-13T08:37:28.211] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:37:28.334] [INFO] cheese - inserting 1000 documents. first: List of Bishops and Archbishops of Kraków and last: Iran at the 2008 Summer Paralympics +[2018-02-13T08:37:28.352] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:37:28.411] [INFO] cheese - inserting 1000 documents. first: Line 17 (Sao Paulo Metro) and last: Gong Suo Xin Yu +[2018-02-13T08:37:28.444] [INFO] cheese - inserting 1000 documents. first: Prague 18 and last: Elliott Richards +[2018-02-13T08:37:28.461] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T08:37:28.471] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:37:28.478] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:37:28.605] [INFO] cheese - inserting 1000 documents. first: Stade Marocain and last: Overworking +[2018-02-13T08:37:28.622] [INFO] cheese - inserting 1000 documents. first: Al-kitāb al-mukhtaṣar fī ḥisāb al-ğabr wa’l-muqābala and last: Émigrés' billions +[2018-02-13T08:37:28.666] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:37:28.711] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:37:28.759] [INFO] cheese - inserting 1000 documents. first: Luvsjon and last: Mario Gonzalez (footballer) +[2018-02-13T08:37:28.782] [INFO] cheese - inserting 1000 documents. first: El secreto de Tomy and last: Category:Business organizations of Africa +[2018-02-13T08:37:28.808] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T08:37:28.834] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:37:28.934] [INFO] cheese - inserting 1000 documents. first: Ryley and last: Category:Albany, New York +[2018-02-13T08:37:28.957] [INFO] cheese - inserting 1000 documents. first: Electoral district of Beeloo and last: Catoptria falsella +[2018-02-13T08:37:28.993] [INFO] cheese - inserting 1000 documents. first: George K. Fraenkel and last: Fishfur +[2018-02-13T08:37:28.992] [INFO] cheese - batch complete in: 0.78 secs +[2018-02-13T08:37:29.009] [INFO] cheese - inserting 1000 documents. first: List of Southern Romance languages and last: Category:1710s deaths +[2018-02-13T08:37:29.016] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T08:37:29.021] [INFO] cheese - inserting 1000 documents. first: Category:Gaelic games governing bodies in Leinster and last: St Paul-without-the-Walls +[2018-02-13T08:37:29.023] [INFO] cheese - batch complete in: 0.215 secs +[2018-02-13T08:37:29.084] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:37:29.089] [INFO] cheese - batch complete in: 0.737 secs +[2018-02-13T08:37:29.167] [INFO] cheese - inserting 1000 documents. first: Template:Nine Network and last: Rheinmetall 120mm Gun +[2018-02-13T08:37:29.217] [INFO] cheese - inserting 1000 documents. first: Dan Simrell and last: League of Legends Challenger Series North America +[2018-02-13T08:37:29.217] [INFO] cheese - inserting 1000 documents. first: I Know (Luther Vandross song) and last: The Life of Josiah Henson +[2018-02-13T08:37:29.225] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:37:29.279] [INFO] cheese - batch complete in: 0.445 secs +[2018-02-13T08:37:29.294] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:37:29.318] [INFO] cheese - inserting 1000 documents. first: Miguel Angel Huerta and last: Mildred Gordon (biologist) +[2018-02-13T08:37:29.378] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T08:37:29.425] [INFO] cheese - inserting 1000 documents. first: DWS Amsterdam and last: Ludwig South-North line +[2018-02-13T08:37:29.456] [INFO] cheese - inserting 1000 documents. first: File:X^x.jpg and last: Category:Transport in Aberdeen +[2018-02-13T08:37:29.468] [INFO] cheese - inserting 1000 documents. first: A New York Christmas and last: Black River, Nova Scotia (disambiguation) +[2018-02-13T08:37:29.477] [INFO] cheese - batch complete in: 0.46 secs +[2018-02-13T08:37:29.524] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:37:29.539] [INFO] cheese - batch complete in: 0.455 secs +[2018-02-13T08:37:29.616] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change-NY and last: Category:Palestine-related articles needing merge action +[2018-02-13T08:37:29.642] [INFO] cheese - inserting 1000 documents. first: Musee des 24 Heures du Mans and last: Charles Turner (water polo) +[2018-02-13T08:37:29.647] [INFO] cheese - inserting 1000 documents. first: 2016–17 UMass Minutemen men's basketball team and last: Morada +[2018-02-13T08:37:29.671] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Belgium in the long nineteenth century and last: Sagittaria pygmaea +[2018-02-13T08:37:29.673] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T08:37:29.682] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T08:37:29.726] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T08:37:29.730] [INFO] cheese - batch complete in: 0.436 secs +[2018-02-13T08:37:29.862] [INFO] cheese - inserting 1000 documents. first: Category:1720s deaths and last: Edgar Ende +[2018-02-13T08:37:29.877] [INFO] cheese - inserting 1000 documents. first: John William Woolsey and last: Stigmella kurilensis +[2018-02-13T08:37:29.925] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T08:37:30.044] [INFO] cheese - batch complete in: 0.955 secs +[2018-02-13T08:37:30.047] [INFO] cheese - inserting 1000 documents. first: Alex Burns (footballer) and last: Wikipedia:Articles for deletion/Mardon +[2018-02-13T08:37:30.109] [INFO] cheese - inserting 1000 documents. first: Elmer Angsman and last: File:Warts and All Volume 2.jpg +[2018-02-13T08:37:30.116] [INFO] cheese - inserting 1000 documents. first: Niccolo Barbieri and last: File:KerrieRobertsalbum.jpg +[2018-02-13T08:37:30.139] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:37:30.194] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:37:30.217] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:37:30.225] [INFO] cheese - inserting 1000 documents. first: Comella insularis and last: Laguna Antaccocha +[2018-02-13T08:37:30.300] [INFO] cheese - inserting 1000 documents. first: Decollation and last: Tente (toy) +[2018-02-13T08:37:30.306] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:37:30.327] [INFO] cheese - inserting 1000 documents. first: Category:1603 in the Papal States and last: Angel Perdomo +[2018-02-13T08:37:30.382] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:37:30.398] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:37:30.539] [INFO] cheese - inserting 1000 documents. first: Zyugyul'ba and last: Dzherembel’ +[2018-02-13T08:37:30.544] [INFO] cheese - inserting 1000 documents. first: The New Reign (Warriors) and last: OFK Dunajska Luzna +[2018-02-13T08:37:30.583] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T08:37:30.606] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T08:37:30.658] [INFO] cheese - inserting 1000 documents. first: Zirngibl and last: François Bazin (disambiguation) +[2018-02-13T08:37:30.663] [INFO] cheese - inserting 1000 documents. first: Category:Government-related professional associations and last: File:The-Birth.jpg +[2018-02-13T08:37:30.680] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T08:37:30.722] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:37:30.765] [INFO] cheese - inserting 1000 documents. first: Lago Antaccocha and last: Remote (location) +[2018-02-13T08:37:30.782] [INFO] cheese - inserting 1000 documents. first: File:Cephalonia and Ithaca elevation.jpg and last: 2003 NAACP Awards +[2018-02-13T08:37:30.809] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/harishsunshine.tk and last: Pascual Echague +[2018-02-13T08:37:30.820] [INFO] cheese - inserting 1000 documents. first: Canadian Criminal Code and last: Steinrode +[2018-02-13T08:37:30.827] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T08:37:30.846] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:37:30.929] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T08:37:30.957] [INFO] cheese - inserting 1000 documents. first: Tb/s and last: File:Lovesongscliffrichard.jpg +[2018-02-13T08:37:30.972] [INFO] cheese - batch complete in: 0.928 secs +[2018-02-13T08:37:31.010] [INFO] cheese - inserting 1000 documents. first: Dzherimbel’ and last: Category:Suicides in Idaho +[2018-02-13T08:37:31.025] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:37:31.065] [INFO] cheese - batch complete in: 0.482 secs +[2018-02-13T08:37:31.142] [INFO] cheese - inserting 1000 documents. first: Andrew Beckwith and last: 1915 Michigan State Normal Normalites football team +[2018-02-13T08:37:31.177] [INFO] cheese - inserting 1000 documents. first: Pasi Maattanen and last: Polzanska vas +[2018-02-13T08:37:31.192] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:37:31.216] [INFO] cheese - inserting 1000 documents. first: File:Musashi-Kosugi-Mid-Sky-Tower-2008-05-17.jpg and last: Carmen Fault +[2018-02-13T08:37:31.242] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T08:37:31.280] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:37:31.286] [INFO] cheese - inserting 1000 documents. first: 2003 Players' Championship and last: Captive Market (short story) +[2018-02-13T08:37:31.342] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:37:31.368] [INFO] cheese - inserting 1000 documents. first: 2003 Image Awards and last: Wikipedia:Articles for deletion/Goober Adventure +[2018-02-13T08:37:31.486] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:37:31.531] [INFO] cheese - inserting 1000 documents. first: Pompeyo Marquez and last: Miller twist rule +[2018-02-13T08:37:31.578] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T08:37:31.610] [INFO] cheese - inserting 1000 documents. first: Jak & Daxter: The Precursor Legacy and last: Darren John Sutherland +[2018-02-13T08:37:31.634] [INFO] cheese - inserting 1000 documents. first: Pappataci fever and last: Greta Von Amburg +[2018-02-13T08:37:31.694] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:37:31.719] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:37:31.737] [INFO] cheese - inserting 1000 documents. first: Periyanayaki Shrine, Thiruvithancode and last: Policía al habla +[2018-02-13T08:37:31.815] [INFO] cheese - inserting 1000 documents. first: Stöckey and last: Ferraz de Vasconcelos +[2018-02-13T08:37:31.820] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:37:31.864] [INFO] cheese - inserting 1000 documents. first: File:American Staffordshire Terrier (Roxy) by Jleon.JPG and last: Mitra contracta +[2018-02-13T08:37:31.890] [INFO] cheese - inserting 1000 documents. first: Rafael Bermudez and last: 2693 BC +[2018-02-13T08:37:31.892] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:37:31.899] [INFO] cheese - batch complete in: 0.619 secs +[2018-02-13T08:37:31.905] [INFO] cheese - inserting 1000 documents. first: Category:VMI Keydets navigational boxes and last: Sangre en el Diván +[2018-02-13T08:37:31.930] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T08:37:31.986] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:37:31.998] [INFO] cheese - inserting 1000 documents. first: Photocopying processes and last: Lake Kejimikujik +[2018-02-13T08:37:32.046] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T08:37:32.077] [INFO] cheese - inserting 1000 documents. first: Jeremy Scott and last: Net Backup +[2018-02-13T08:37:32.106] [INFO] cheese - inserting 1000 documents. first: Great ice storm and last: Template:ISO 639 name os +[2018-02-13T08:37:32.143] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T08:37:32.146] [INFO] cheese - batch complete in: 0.659 secs +[2018-02-13T08:37:32.196] [INFO] cheese - inserting 1000 documents. first: 2694 BC and last: Rosolino Paterno, soldato... +[2018-02-13T08:37:32.226] [INFO] cheese - batch complete in: 0.296 secs +[2018-02-13T08:37:32.248] [INFO] cheese - inserting 1000 documents. first: Category:GAA people from New York (state) and last: Kentucky Route 462 +[2018-02-13T08:37:32.305] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T08:37:32.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/1993 Russian constitutional crisis and last: The Rock Road to Dublin +[2018-02-13T08:37:32.391] [INFO] cheese - inserting 1000 documents. first: Jaroslaw Hrycak and last: College Football Playoff National Championship Trophy +[2018-02-13T08:37:32.391] [INFO] cheese - inserting 1000 documents. first: Mitra coronata and last: SS Empire Clyde (1919) +[2018-02-13T08:37:32.400] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T08:37:32.453] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T08:37:32.463] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:37:32.471] [INFO] cheese - inserting 1000 documents. first: Presentation Convent Girls High School and last: Lansing family +[2018-02-13T08:37:32.560] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T08:37:32.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Leutes and last: 2954 BC +[2018-02-13T08:37:32.615] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T08:37:32.651] [INFO] cheese - inserting 1000 documents. first: Republican Leader of the United States Senate and last: Mr Potato Head +[2018-02-13T08:37:32.757] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:37:32.767] [INFO] cheese - inserting 1000 documents. first: Middlesbrough Borough Council and last: Isser Zalman Meltzer +[2018-02-13T08:37:33.021] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:37:33.098] [INFO] cheese - inserting 1000 documents. first: El Castillo del Terror (2004) and last: Anna Sethne +[2018-02-13T08:37:33.110] [INFO] cheese - inserting 1000 documents. first: Flight Attendant School and last: The Acolytes +[2018-02-13T08:37:33.139] [INFO] cheese - inserting 1000 documents. first: HD 30834 and last: List of registered historic places in Pennsylvania +[2018-02-13T08:37:33.155] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:37:33.173] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:37:33.201] [INFO] cheese - inserting 1000 documents. first: Thomas Hope (MP for Maidstone) and last: Niobe, Red Deer County, Alberta +[2018-02-13T08:37:33.211] [INFO] cheese - inserting 1000 documents. first: 2955 BC and last: Wikipedia:WikiProject Spam/LinkReports/thesite.org +[2018-02-13T08:37:33.216] [INFO] cheese - inserting 1000 documents. first: Babelomurex stenospinus and last: Ocinebrina piantonii +[2018-02-13T08:37:33.268] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:37:33.283] [INFO] cheese - batch complete in: 0.668 secs +[2018-02-13T08:37:33.318] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:37:33.331] [INFO] cheese - batch complete in: 0.867 secs +[2018-02-13T08:37:33.638] [INFO] cheese - inserting 1000 documents. first: Anna Cathrine Sethne and last: Jōwa (second) +[2018-02-13T08:37:33.669] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Did you know/11 and last: File:Hunters' Chorus from The Rose of Erin.ogg +[2018-02-13T08:37:33.671] [INFO] cheese - inserting 1000 documents. first: Ocinebrina purpuroidea and last: ḪARSAG +[2018-02-13T08:37:33.672] [INFO] cheese - inserting 1000 documents. first: Vanatori de munte and last: Portal:Latvia/Featured picture/10 +[2018-02-13T08:37:33.674] [INFO] cheese - inserting 1000 documents. first: Instituto Autónomo del Aeropuerto Internacional de Maiquetía and last: Aya takano +[2018-02-13T08:37:33.680] [INFO] cheese - batch complete in: 0.507 secs +[2018-02-13T08:37:33.684] [INFO] cheese - inserting 1000 documents. first: Niobe, Grande Prairie County No. 1, Alberta and last: Callistus Chukwu +[2018-02-13T08:37:33.695] [INFO] cheese - inserting 1000 documents. first: Qazansu river and last: File:Captain Commando Screenshot.png +[2018-02-13T08:37:33.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thesite.org and last: Duminichsky +[2018-02-13T08:37:33.710] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T08:37:33.731] [INFO] cheese - batch complete in: 0.576 secs +[2018-02-13T08:37:33.740] [INFO] cheese - batch complete in: 0.422 secs +[2018-02-13T08:37:33.725] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T08:37:33.761] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:37:33.787] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T08:37:33.808] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:37:34.146] [INFO] cheese - inserting 1000 documents. first: Hans Georg Pescher and last: Category:Start-Class Tirana articles +[2018-02-13T08:37:34.160] [INFO] cheese - inserting 1000 documents. first: Jackal (The Day Of The Jackal) and last: Therizinosaurid +[2018-02-13T08:37:34.162] [INFO] cheese - inserting 1000 documents. first: Duminichskiy and last: Sant Sebastia de la Guarda +[2018-02-13T08:37:34.171] [INFO] cheese - inserting 1000 documents. first: Joan Kemp-Welch and last: CerS5 +[2018-02-13T08:37:34.174] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Equilio and last: Category:Bird common name disambiguation pages +[2018-02-13T08:37:34.183] [INFO] cheese - inserting 1000 documents. first: Enci and last: Wikipedia:Bots/Requests for approval/Kaspobot 2 +[2018-02-13T08:37:34.186] [INFO] cheese - batch complete in: 0.476 secs +[2018-02-13T08:37:34.210] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:37:34.220] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:37:34.235] [INFO] cheese - batch complete in: 0.555 secs +[2018-02-13T08:37:34.251] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T08:37:34.270] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:37:34.307] [INFO] cheese - inserting 1000 documents. first: Client program and last: CC Chapman +[2018-02-13T08:37:34.359] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T08:37:34.455] [INFO] cheese - inserting 1000 documents. first: Scapular of Our Lady of Mount Carmel and last: Haripur district +[2018-02-13T08:37:34.486] [INFO] cheese - inserting 1000 documents. first: Santa Albertina, Sao Paulo, Brazil and last: Category:1935 in Alabama +[2018-02-13T08:37:34.566] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T08:37:34.575] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:37:34.718] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Profoun education and last: Painted Lady butterflies +[2018-02-13T08:37:34.771] [INFO] cheese - batch complete in: 0.551 secs +[2018-02-13T08:37:34.796] [INFO] cheese - inserting 1000 documents. first: Category:World War I speeches and last: File:Latin kings VTF.jpg +[2018-02-13T08:37:34.804] [INFO] cheese - inserting 1000 documents. first: Golden-rods and last: Karu Diddina Kapuram +[2018-02-13T08:37:34.817] [INFO] cheese - inserting 1000 documents. first: Category:American Battle Monuments Commission and last: Seal of alabama +[2018-02-13T08:37:34.840] [INFO] cheese - inserting 1000 documents. first: Template:User browser:WebKit and last: Music inspired by Watership Down +[2018-02-13T08:37:34.907] [INFO] cheese - batch complete in: 0.672 secs +[2018-02-13T08:37:34.911] [INFO] cheese - batch complete in: 0.725 secs +[2018-02-13T08:37:34.945] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:37:34.960] [INFO] cheese - inserting 1000 documents. first: Sibbarp, Malmo and last: File:Ask the Fish.jpeg +[2018-02-13T08:37:34.980] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:37:34.998] [INFO] cheese - batch complete in: 0.432 secs +[2018-02-13T08:37:35.061] [INFO] cheese - inserting 1000 documents. first: Oradea Transport Local and last: 'Enry the 'Ermit +[2018-02-13T08:37:35.150] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:37:35.302] [INFO] cheese - inserting 1000 documents. first: St. Demetrius' Church, Polican and last: Mevik Chapel +[2018-02-13T08:37:35.325] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T08:37:35.377] [INFO] cheese - inserting 1000 documents. first: Hsu Jui-Te and last: Central Ave/Camelback +[2018-02-13T08:37:35.388] [INFO] cheese - inserting 1000 documents. first: Multi-tasking MS-DOS 4.1 and last: Keith Nelson type lifeboat +[2018-02-13T08:37:35.413] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:37:35.439] [INFO] cheese - inserting 1000 documents. first: List of Uruguayan writers and last: Cedar BRT Line +[2018-02-13T08:37:35.449] [INFO] cheese - inserting 1000 documents. first: Siege of Sebastopol and last: Muskets +[2018-02-13T08:37:35.451] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:37:35.482] [INFO] cheese - batch complete in: 0.537 secs +[2018-02-13T08:37:35.502] [INFO] cheese - inserting 1000 documents. first: Klickitat tribe and last: Mertztown, Pennsylvania +[2018-02-13T08:37:35.519] [INFO] cheese - inserting 1000 documents. first: Utenn and last: Cymbiola intruderi +[2018-02-13T08:37:35.531] [INFO] cheese - batch complete in: 0.956 secs +[2018-02-13T08:37:35.581] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:37:35.614] [INFO] cheese - inserting 1000 documents. first: Stateless society and last: Silver Stadium +[2018-02-13T08:37:35.616] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:37:35.663] [INFO] cheese - inserting 1000 documents. first: SS Acadia (1932) and last: Sebastien Monier +[2018-02-13T08:37:35.695] [INFO] cheese - batch complete in: 0.544 secs +[2018-02-13T08:37:35.729] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T08:37:35.818] [INFO] cheese - inserting 1000 documents. first: Campbell/Central Ave and last: Wikipedia:Articles for deletion/Marguerite Humeau +[2018-02-13T08:37:35.856] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T08:37:35.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The pocket guide to divorce and last: Meridarchis excisa +[2018-02-13T08:37:35.899] [INFO] cheese - inserting 1000 documents. first: Air Coryell and last: 2007 Road World Championships +[2018-02-13T08:37:35.948] [INFO] cheese - batch complete in: 0.466 secs +[2018-02-13T08:37:35.961] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:37:36.001] [INFO] cheese - inserting 1000 documents. first: Sebastien-Melchior Cornu and last: Steve Bassett (disambiguation) +[2018-02-13T08:37:36.018] [INFO] cheese - inserting 1000 documents. first: Cymbiola perplicata and last: File:Aviaries Estate and Midland Works, Armley .png +[2018-02-13T08:37:36.046] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T08:37:36.047] [INFO] cheese - inserting 1000 documents. first: CJCA (AM) and last: L'Éducation sentimentale +[2018-02-13T08:37:36.088] [INFO] cheese - batch complete in: 0.471 secs +[2018-02-13T08:37:36.113] [INFO] cheese - batch complete in: 0.532 secs +[2018-02-13T08:37:36.190] [INFO] cheese - inserting 1000 documents. first: Network analysis and last: Peter Chen +[2018-02-13T08:37:36.200] [INFO] cheese - inserting 1000 documents. first: Abiodun (Nigeria ruler) and last: Category:Canadian female diplomats +[2018-02-13T08:37:36.216] [INFO] cheese - inserting 1000 documents. first: Frostbiter: Wrath of the Wendigo and last: Wikipedia:MAROC +[2018-02-13T08:37:36.232] [INFO] cheese - inserting 1000 documents. first: The Ultimate Collection (Elektricni Orgazam album) and last: Homoeosoma reliquella +[2018-02-13T08:37:36.246] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T08:37:36.251] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T08:37:36.268] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:37:36.293] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:37:36.426] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:GameGuy95/Who Wants to Be a Millionaire (daytime version) and last: Les Gens du voyage +[2018-02-13T08:37:36.539] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:37:36.581] [INFO] cheese - inserting 1000 documents. first: Equality Rocks and last: Kunda, India +[2018-02-13T08:37:36.606] [INFO] cheese - inserting 1000 documents. first: International military decoration authorized by the US military and last: 244BC +[2018-02-13T08:37:36.674] [INFO] cheese - inserting 1000 documents. first: Fan Gang and last: Nepticula ceanothi +[2018-02-13T08:37:36.697] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:37:36.706] [INFO] cheese - batch complete in: 0.593 secs +[2018-02-13T08:37:36.757] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:37:36.952] [INFO] cheese - inserting 1000 documents. first: Mark Esho and last: Category:1872 in British India +[2018-02-13T08:37:37.021] [INFO] cheese - inserting 1000 documents. first: Category:Tram transport in Africa and last: Roderick Norman McIver MacSween +[2018-02-13T08:37:37.024] [INFO] cheese - batch complete in: 0.778 secs +[2018-02-13T08:37:37.098] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:37:37.120] [INFO] cheese - inserting 1000 documents. first: Florida state university college of law and last: G. Trissino +[2018-02-13T08:37:37.171] [INFO] cheese - inserting 1000 documents. first: Bucculatrix ratisbonnensis and last: Church of Saint Nicetas, Moscow +[2018-02-13T08:37:37.177] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:37:37.226] [INFO] cheese - inserting 1000 documents. first: 245BC and last: Westin Westminster +[2018-02-13T08:37:37.235] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:37:37.248] [INFO] cheese - inserting 1000 documents. first: Faustino Asprilla and last: Cellular pathology +[2018-02-13T08:37:37.264] [INFO] cheese - inserting 1000 documents. first: KRPT-FM and last: Turbulent prandtl number +[2018-02-13T08:37:37.288] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T08:37:37.325] [INFO] cheese - batch complete in: 0.628 secs +[2018-02-13T08:37:37.366] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:37:37.453] [INFO] cheese - inserting 1000 documents. first: The Last Hurrah (film) and last: A. L. Strang +[2018-02-13T08:37:37.457] [INFO] cheese - inserting 1000 documents. first: Chaworth Brabazon, 6th Earl of Meath and last: Category:July 2016 peer reviews +[2018-02-13T08:37:37.486] [INFO] cheese - batch complete in: 0.387 secs +[2018-02-13T08:37:37.497] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:37:37.525] [INFO] cheese - inserting 1000 documents. first: Tornadoes of 1997 and last: Portal:Indigenous peoples in Canada/Selected picture/5 +[2018-02-13T08:37:37.585] [INFO] cheese - batch complete in: 0.828 secs +[2018-02-13T08:37:37.630] [INFO] cheese - inserting 1000 documents. first: Betts House (Yale University) and last: My Eyes (Blake Shelton Song) +[2018-02-13T08:37:37.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality/43 and last: Thaang +[2018-02-13T08:37:37.691] [INFO] cheese - batch complete in: 0.456 secs +[2018-02-13T08:37:37.716] [INFO] cheese - batch complete in: 0.428 secs +[2018-02-13T08:37:37.752] [INFO] cheese - inserting 1000 documents. first: Campbell Hill (Logan County, Ohio) and last: William de Soulis +[2018-02-13T08:37:37.800] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T08:37:37.840] [INFO] cheese - inserting 1000 documents. first: File:Nathaniel Clifton.jpg and last: Dalaca brunneotincta +[2018-02-13T08:37:37.841] [INFO] cheese - inserting 1000 documents. first: Silver bullion coin and last: File:Qotsabeaversplitcd.jpg +[2018-02-13T08:37:37.871] [INFO] cheese - inserting 1000 documents. first: William James (rugby) and last: Category:Cricket in North West (South African province) +[2018-02-13T08:37:37.876] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T08:37:37.926] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:37:37.939] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T08:37:37.971] [INFO] cheese - inserting 1000 documents. first: Canton of Baden and last: Category:Lists of English phrases +[2018-02-13T08:37:38.001] [INFO] cheese - inserting 1000 documents. first: Kazys Ladiga and last: Portal:Furry/Selected comic/3 +[2018-02-13T08:37:38.054] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:37:38.077] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T08:37:38.139] [INFO] cheese - inserting 1000 documents. first: Magnolia liliifera and last: Category:2015 in South African rugby union +[2018-02-13T08:37:38.222] [INFO] cheese - inserting 1000 documents. first: Kuzhambu and last: Life on Mars (soundtrack) +[2018-02-13T08:37:38.224] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:37:38.385] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:37:38.446] [INFO] cheese - inserting 1000 documents. first: ZEN Vision W and last: File:Cavalier King Charles Spaniel puppy.jpg +[2018-02-13T08:37:38.503] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Dubai 2 and last: Category:Economy of Kingston upon Hull +[2018-02-13T08:37:38.550] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:37:38.580] [INFO] cheese - inserting 1000 documents. first: Park Hyun-kon and last: Wikipedia:Sockpuppet investigations/195.224.183.184 +[2018-02-13T08:37:38.596] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:37:38.671] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:37:38.832] [INFO] cheese - inserting 1000 documents. first: Henry Wyndham (1790-1860) and last: Leslie Holdsworth Allen +[2018-02-13T08:37:38.874] [INFO] cheese - inserting 1000 documents. first: William Targ and last: Phil Jones (climatologist) +[2018-02-13T08:37:38.890] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:37:38.898] [INFO] cheese - inserting 1000 documents. first: Copernican cosmology and last: "Crazy" (1991) +[2018-02-13T08:37:38.910] [INFO] cheese - inserting 1000 documents. first: W-curve and last: Robert Biddulph (governor) +[2018-02-13T08:37:38.960] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:37:38.968] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T08:37:38.974] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:37:39.054] [INFO] cheese - inserting 1000 documents. first: 50 Number Ones and last: Federal Reserve Bank Building (Boston) +[2018-02-13T08:37:39.081] [INFO] cheese - inserting 1000 documents. first: Serampore Girl's College and last: Vieux-Quebec–Cap-Blanc–colline Parlementaire +[2018-02-13T08:37:39.111] [INFO] cheese - inserting 1000 documents. first: Nahar el-bared and last: Fresh (IDE) +[2018-02-13T08:37:39.122] [INFO] cheese - inserting 1000 documents. first: €2 commemorative coins and last: Zakharovsky Municipal District +[2018-02-13T08:37:39.128] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:37:39.145] [INFO] cheese - batch complete in: 0.549 secs +[2018-02-13T08:37:39.197] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:37:39.231] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:37:39.357] [INFO] cheese - inserting 1000 documents. first: Música en Compostela and last: File:Rodengo-Saiano-Stemma.png +[2018-02-13T08:37:39.412] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T08:37:39.450] [INFO] cheese - inserting 1000 documents. first: FedACH and last: Template:Serbian language +[2018-02-13T08:37:39.457] [INFO] cheese - inserting 1000 documents. first: Forward public school and last: West Zone of Sao Paulo +[2018-02-13T08:37:39.464] [INFO] cheese - inserting 1000 documents. first: St Leonard's Church, Wollaton and last: Hot Choice PPV +[2018-02-13T08:37:39.486] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T08:37:39.499] [INFO] cheese - batch complete in: 0.525 secs +[2018-02-13T08:37:39.536] [INFO] cheese - batch complete in: 0.646 secs +[2018-02-13T08:37:39.667] [INFO] cheese - inserting 1000 documents. first: The Greek Coffin Mystery and last: Michael Dixon (museum director) +[2018-02-13T08:37:39.682] [INFO] cheese - inserting 1000 documents. first: Naji Sayed and last: Virupaksha +[2018-02-13T08:37:39.719] [INFO] cheese - batch complete in: 0.522 secs +[2018-02-13T08:37:39.723] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:37:39.771] [INFO] cheese - inserting 1000 documents. first: Asadabad, Firuzabad and last: Zabrde (Priboj) +[2018-02-13T08:37:39.800] [INFO] cheese - inserting 1000 documents. first: Marker (TV Series) and last: IRT 9th Avenue Line +[2018-02-13T08:37:39.807] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T08:37:39.884] [INFO] cheese - inserting 1000 documents. first: Template:2009–10 Premier League PFA Team of the Year and last: St Mark's School, Hong Kong +[2018-02-13T08:37:39.964] [INFO] cheese - inserting 1000 documents. first: Gashimov Memorial and last: Faubourg Livaudais +[2018-02-13T08:37:39.973] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:37:39.990] [INFO] cheese - batch complete in: 0.578 secs +[2018-02-13T08:37:40.086] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Funeral Orchestra and last: Brookville Equipment Corporation +[2018-02-13T08:37:40.098] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:37:40.183] [INFO] cheese - inserting 1000 documents. first: 3661 BC and last: Kraco Car Stereo 150 +[2018-02-13T08:37:40.192] [INFO] cheese - batch complete in: 1.064 secs +[2018-02-13T08:37:40.208] [INFO] cheese - batch complete in: 0.401 secs +[2018-02-13T08:37:40.238] [INFO] cheese - inserting 1000 documents. first: File:Sherwood tracking drums at Studio Litho, Sept 2015.jpg and last: The Real Story (TV series) +[2018-02-13T08:37:40.240] [INFO] cheese - inserting 1000 documents. first: America's Pulse and last: Ecw tv title +[2018-02-13T08:37:40.310] [INFO] cheese - batch complete in: 0.587 secs +[2018-02-13T08:37:40.351] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:37:40.512] [INFO] cheese - inserting 1000 documents. first: Electric light (illumination) and last: Hacker Craft +[2018-02-13T08:37:40.521] [INFO] cheese - inserting 1000 documents. first: Ake Akerstrom and last: Cigri, Basmakci +[2018-02-13T08:37:40.565] [INFO] cheese - inserting 1000 documents. first: File:Forio-Stemma.gif and last: 3-colourability +[2018-02-13T08:37:40.569] [INFO] cheese - inserting 1000 documents. first: Photobacterium leiognathi and last: Template:Great power diplomacy +[2018-02-13T08:37:40.555] [INFO] cheese - batch complete in: 0.565 secs +[2018-02-13T08:37:40.574] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T08:37:40.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/D.S.G Justice and last: Wikipedia:Wikiproject Rational Skepticism +[2018-02-13T08:37:40.626] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:37:40.648] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:37:40.675] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:37:40.753] [INFO] cheese - inserting 1000 documents. first: Meessen De Clercq and last: Holland station +[2018-02-13T08:37:40.809] [INFO] cheese - batch complete in: 0.499 secs +[2018-02-13T08:37:40.814] [INFO] cheese - inserting 1000 documents. first: John Crews and last: Kung-Ekoka language +[2018-02-13T08:37:40.838] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of innovative inventions and last: Max Lieberman +[2018-02-13T08:37:40.898] [INFO] cheese - batch complete in: 0.547 secs +[2018-02-13T08:37:40.901] [INFO] cheese - inserting 1000 documents. first: Ers people and last: Wikipedia:WikiProject Spam/Local/globalhds.com +[2018-02-13T08:37:40.919] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:37:40.980] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T08:37:41.010] [INFO] cheese - inserting 1000 documents. first: Paraul Morii and last: An Audience With the Cope 2000 +[2018-02-13T08:37:41.042] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T08:37:41.087] [INFO] cheese - inserting 1000 documents. first: Saro Segrave Meteor and last: H-Function +[2018-02-13T08:37:41.149] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:37:41.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tim Deegan (meteorologist) and last: Template:GMORFC notice +[2018-02-13T08:37:41.225] [INFO] cheese - inserting 1000 documents. first: U.S. two-dollar bill and last: Bilgoraj County +[2018-02-13T08:37:41.247] [INFO] cheese - inserting 1000 documents. first: Router Solicitation/Router Advertisement and last: Overtornea SK +[2018-02-13T08:37:41.274] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T08:37:41.291] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T08:37:41.301] [INFO] cheese - batch complete in: 0.626 secs +[2018-02-13T08:37:41.338] [INFO] cheese - inserting 1000 documents. first: Let's Go Get Stoned (R&B song) and last: William J. Whalen III +[2018-02-13T08:37:41.352] [INFO] cheese - inserting 1000 documents. first: List of power stations in Myanmar and last: Category:1911 in Arizona Territory +[2018-02-13T08:37:41.386] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T08:37:41.408] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T08:37:41.589] [INFO] cheese - inserting 1000 documents. first: 3-colouring and last: Terminal services +[2018-02-13T08:37:41.603] [INFO] cheese - inserting 1000 documents. first: Definition of free cultural works and last: Olivella baetica +[2018-02-13T08:37:41.618] [INFO] cheese - inserting 1000 documents. first: TheFacebook and last: Cascading Stylesheets +[2018-02-13T08:37:41.692] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:37:41.701] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:37:41.742] [INFO] cheese - inserting 1000 documents. first: Oxnered and last: Ityoṗṗya +[2018-02-13T08:37:41.755] [INFO] cheese - inserting 1000 documents. first: Young Lions and last: Bendorf +[2018-02-13T08:37:41.750] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:37:41.797] [INFO] cheese - batch complete in: 0.506 secs +[2018-02-13T08:37:41.818] [INFO] cheese - inserting 1000 documents. first: Category:1863 establishments in Arizona Territory and last: Choreutis pelargodes +[2018-02-13T08:37:41.833] [INFO] cheese - inserting 1000 documents. first: Franz Heritsch and last: Gallant discography +[2018-02-13T08:37:41.843] [INFO] cheese - batch complete in: 0.542 secs +[2018-02-13T08:37:41.891] [INFO] cheese - inserting 1000 documents. first: Kangaroo Creek Reservoir and last: What I Cannot Change +[2018-02-13T08:37:41.918] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:37:41.926] [INFO] cheese - batch complete in: 0.652 secs +[2018-02-13T08:37:42.001] [INFO] cheese - batch complete in: 0.615 secs +[2018-02-13T08:37:42.167] [INFO] cheese - inserting 1000 documents. first: IZBAN A.S. and last: UFC 149 +[2018-02-13T08:37:42.197] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T08:37:42.228] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/SyedNaqvi90 and last: Category:B-Class Australia, New Zealand and South Pacific military history articles +[2018-02-13T08:37:42.281] [INFO] cheese - batch complete in: 0.588 secs +[2018-02-13T08:37:42.371] [INFO] cheese - inserting 1000 documents. first: Hanukkah (Khazar) and last: Film shoot +[2018-02-13T08:37:42.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/publicspeakinghelp.info and last: 2014 Liège–Bastogne–Liège +[2018-02-13T08:37:42.410] [INFO] cheese - inserting 1000 documents. first: Foreign eXchange Office and last: Emerson Hart +[2018-02-13T08:37:42.414] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T08:37:42.448] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:37:42.473] [INFO] cheese - batch complete in: 0.63 secs +[2018-02-13T08:37:42.519] [INFO] cheese - inserting 1000 documents. first: Jofra Archer and last: 2015 EU LCS Summer Playoffs +[2018-02-13T08:37:42.536] [INFO] cheese - inserting 1000 documents. first: Lee Clark (footballer) and last: Geoffroy Saint-Hilaire +[2018-02-13T08:37:42.577] [INFO] cheese - inserting 1000 documents. first: Praxis Ethiopia and last: Elias Mudzuri (mayor of Harare) +[2018-02-13T08:37:42.607] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T08:37:42.669] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:37:42.668] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:37:42.724] [INFO] cheese - inserting 1000 documents. first: Category:Start-Class Australia, New Zealand and South Pacific military history articles and last: Zimbabwe Exiles Forum +[2018-02-13T08:37:42.779] [INFO] cheese - inserting 1000 documents. first: Professional Master's in Social Sciences and Humanities and last: Louis Francis Costello +[2018-02-13T08:37:42.781] [INFO] cheese - batch complete in: 0.5 secs +[2018-02-13T08:37:42.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Africa articles by quality/53 and last: Yekaxana, Gobustan +[2018-02-13T08:37:42.867] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:37:42.943] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:37:42.958] [INFO] cheese - inserting 1000 documents. first: 2014 Bardiani–CSF season and last: Wikipedia:WikiProject Editor Retention/Editor of the Week/Hall of Fame/2014-04-26 +[2018-02-13T08:37:43.038] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:37:43.097] [INFO] cheese - inserting 1000 documents. first: 1975 Chadian coup and last: X-Ray Absorption Edge Spectroscopy +[2018-02-13T08:37:43.144] [INFO] cheese - inserting 1000 documents. first: Draft:Cincinnati Food + Wine Classic and last: Pedestredorcadion lianokladii +[2018-02-13T08:37:43.172] [INFO] cheese - batch complete in: 0.699 secs +[2018-02-13T08:37:43.286] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T08:37:43.387] [INFO] cheese - inserting 1000 documents. first: Allegan (meteorite) and last: Three Silent Men +[2018-02-13T08:37:43.394] [INFO] cheese - inserting 1000 documents. first: Stephen Bassett and last: Category:Wikipedia featured topics Alaska class cruisers good content +[2018-02-13T08:37:43.413] [INFO] cheese - inserting 1000 documents. first: List of mammals of Bangladesh and last: Category:Start-Class Nirvana articles +[2018-02-13T08:37:43.488] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:37:43.502] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:37:43.569] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:37:43.617] [INFO] cheese - inserting 1000 documents. first: Geoffroy-Saint-Hilaire and last: Town privileges +[2018-02-13T08:37:43.622] [INFO] cheese - inserting 1000 documents. first: Bogotá Savannah Railway and last: Historical Memory Bill +[2018-02-13T08:37:43.676] [INFO] cheese - inserting 1000 documents. first: Mont Gelé (3518) and last: Ashia +[2018-02-13T08:37:43.708] [INFO] cheese - batch complete in: 0.765 secs +[2018-02-13T08:37:43.734] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:37:43.764] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:37:43.805] [INFO] cheese - inserting 1000 documents. first: Dorian Blues and last: Blank and Jones +[2018-02-13T08:37:43.810] [INFO] cheese - inserting 1000 documents. first: Pedestredorcadion margheritae and last: Hendrick Shnoek +[2018-02-13T08:37:43.861] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:37:43.885] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:37:44.004] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Palm Beach County, Florida and last: Embassy of Russia in Havana +[2018-02-13T08:37:44.007] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics Alaska class cruisers featured content and last: Guizhentang Pharmaceutical Company +[2018-02-13T08:37:44.031] [INFO] cheese - inserting 1000 documents. first: Portal:Hawaii/Kokua and last: 1482 in art +[2018-02-13T08:37:44.054] [INFO] cheese - batch complete in: 0.485 secs +[2018-02-13T08:37:44.061] [INFO] cheese - batch complete in: 0.573 secs +[2018-02-13T08:37:44.111] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:37:44.188] [INFO] cheese - inserting 1000 documents. first: 2008 Australian Rally Championship and last: Mitsubishi Caterpillar Forklift America +[2018-02-13T08:37:44.238] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:37:44.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2014 April 21 and last: Book:North American Aviation +[2018-02-13T08:37:44.336] [INFO] cheese - inserting 1000 documents. first: Category:Presidents of the University of North Dakota and last: Category:People from Gaular +[2018-02-13T08:37:44.374] [INFO] cheese - inserting 1000 documents. first: Volodymyr-Volynsky and last: List of members of the Australian House of Representatives +[2018-02-13T08:37:44.390] [INFO] cheese - batch complete in: 0.529 secs +[2018-02-13T08:37:44.397] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:37:44.418] [INFO] cheese - inserting 1000 documents. first: King of Croatia and last: Tony Hawk: American Sk8land +[2018-02-13T08:37:44.479] [INFO] cheese - batch complete in: 0.744 secs +[2018-02-13T08:37:44.479] [INFO] cheese - batch complete in: 0.594 secs +[2018-02-13T08:37:44.596] [INFO] cheese - inserting 1000 documents. first: Andrea Philip and last: Hyacinth Casteneda +[2018-02-13T08:37:44.619] [INFO] cheese - inserting 1000 documents. first: Book:Hoagy Carmichael and last: Law Institute of Lithuania +[2018-02-13T08:37:44.631] [INFO] cheese - inserting 1000 documents. first: New Year Honours 2000 and last: Emile Descombes +[2018-02-13T08:37:44.651] [INFO] cheese - batch complete in: 0.54 secs +[2018-02-13T08:37:44.681] [INFO] cheese - batch complete in: 0.627 secs +[2018-02-13T08:37:44.693] [INFO] cheese - batch complete in: 0.631 secs +[2018-02-13T08:37:44.787] [INFO] cheese - inserting 1000 documents. first: Aviation in the Arctic and last: Under the City +[2018-02-13T08:37:44.818] [INFO] cheese - inserting 1000 documents. first: FC Gold Pride and last: Mason creek +[2018-02-13T08:37:44.951] [INFO] cheese - inserting 1000 documents. first: Category:Torae albums and last: The 1920 Royal Navy Mission to Enzeli +[2018-02-13T08:37:44.953] [INFO] cheese - batch complete in: 0.715 secs +[2018-02-13T08:37:44.963] [INFO] cheese - batch complete in: 0.571 secs +[2018-02-13T08:37:45.029] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:37:45.273] [INFO] cheese - inserting 1000 documents. first: Luna Leopold and last: Portal:Bible/Bible news +[2018-02-13T08:37:45.333] [INFO] cheese - inserting 1000 documents. first: Category:Districts of Vojvodina and last: Kailasam Balachander filmography +[2018-02-13T08:37:45.376] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:37:45.385] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:37:45.426] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom Parliament constituencies (1885–1918) and last: Wikipedia:Suspected sock puppets/86.152.81.41 +[2018-02-13T08:37:45.481] [INFO] cheese - inserting 1000 documents. first: IAFF Fallen Fire Fighters Memorial and last: File:HoodTreason.jpg +[2018-02-13T08:37:45.513] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:37:45.525] [INFO] cheese - inserting 1000 documents. first: Electrode (Pokemon) and last: Category:Source (journalism) +[2018-02-13T08:37:45.535] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:37:45.599] [INFO] cheese - inserting 1000 documents. first: Mason Creek and last: Sergei Ryzhikov +[2018-02-13T08:37:45.638] [INFO] cheese - inserting 1000 documents. first: A város alatt and last: Category:Pagham F.C. players +[2018-02-13T08:37:45.638] [INFO] cheese - batch complete in: 1.159 secs +[2018-02-13T08:37:45.644] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of Kharkiv and last: Mesteacănu River (Strâmbu-Băiuţ) +[2018-02-13T08:37:45.665] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:37:45.723] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:37:45.736] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:37:45.837] [INFO] cheese - inserting 1000 documents. first: Freewheelers (disambiguation) and last: File:Ferry Corsten - WKND.jpg +[2018-02-13T08:37:45.915] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T08:37:46.002] [INFO] cheese - inserting 1000 documents. first: Aoun Al-Sharif Qasim and last: Achilles Alexandrakis +[2018-02-13T08:37:46.068] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/annickpress.com and last: Xenies, Greece +[2018-02-13T08:37:46.080] [INFO] cheese - batch complete in: 0.703 secs +[2018-02-13T08:37:46.122] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:37:46.125] [INFO] cheese - inserting 1000 documents. first: Miereghiţa River and last: File:Missmatch poster.jpg +[2018-02-13T08:37:46.138] [INFO] cheese - inserting 1000 documents. first: Sergey Ryzhikov and last: NHS Health and Social Care Information Centre +[2018-02-13T08:37:46.183] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T08:37:46.198] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:37:46.257] [INFO] cheese - inserting 1000 documents. first: File:XEAM LaMandona1310 logo.png and last: West Texas Normal College +[2018-02-13T08:37:46.276] [INFO] cheese - inserting 1000 documents. first: Category:Manx politicians and last: Tav Falco +[2018-02-13T08:37:46.298] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:37:46.316] [INFO] cheese - inserting 1000 documents. first: FETCH! with Ruff Ruffman and last: Simon Nikolaus von Montjoye-Hirsingen +[2018-02-13T08:37:46.381] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:37:46.382] [INFO] cheese - batch complete in: 0.467 secs +[2018-02-13T08:37:46.385] [INFO] cheese - inserting 1000 documents. first: Saint Motel and last: Apres Vous (2003 film) +[2018-02-13T08:37:46.571] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:37:46.649] [INFO] cheese - inserting 1000 documents. first: Bremgarten West railway station and last: A.K.A. (album) +[2018-02-13T08:37:46.728] [INFO] cheese - inserting 1000 documents. first: Ágios Ioánnis, Kavála and last: Long Range Development Plan (UCSC) +[2018-02-13T08:37:46.773] [INFO] cheese - batch complete in: 0.59 secs +[2018-02-13T08:37:46.826] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:37:46.932] [INFO] cheese - inserting 1000 documents. first: Routing (EDA) and last: HR 1599 +[2018-02-13T08:37:46.969] [INFO] cheese - inserting 1000 documents. first: Oxycanus beltista and last: Commissioners of the great seal +[2018-02-13T08:37:46.971] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:37:47.002] [INFO] cheese - inserting 1000 documents. first: Waterford Tramore Railway and last: Lise Hilboldt +[2018-02-13T08:37:47.082] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Choosing Wisely/American Congress of Obstetricians and Gynecologists watchlist and last: File:目玉焼き.JPG +[2018-02-13T08:37:47.077] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T08:37:47.090] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:37:47.159] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:37:47.173] [INFO] cheese - inserting 1000 documents. first: File:Bell and gill at outfest 2008 .jpg and last: Udeghe people +[2018-02-13T08:37:47.222] [INFO] cheese - inserting 1000 documents. first: Powderhall Sprint and last: Kaohsiung Harbor Museum +[2018-02-13T08:37:47.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Alexander Kapranos and last: Leliwa coat of arms +[2018-02-13T08:37:47.259] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:37:47.337] [INFO] cheese - batch complete in: 0.564 secs +[2018-02-13T08:37:47.370] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:37:47.480] [INFO] cheese - inserting 1000 documents. first: H. B. G. Austin and last: Schenley Bridge +[2018-02-13T08:37:47.545] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:37:47.549] [INFO] cheese - inserting 1000 documents. first: Henderson Lake (New York) and last: Glossary of spirituality-related terms +[2018-02-13T08:37:47.571] [INFO] cheese - inserting 1000 documents. first: Pandora (website) and last: Category:Royal Norwegian Order of Merit +[2018-02-13T08:37:47.624] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T08:37:47.664] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:37:47.688] [INFO] cheese - inserting 1000 documents. first: Chionoi and last: 1990 Tour de France, Prologue to Stage 10 +[2018-02-13T08:37:47.730] [INFO] cheese - inserting 1000 documents. first: Fruitdale (VTA) and last: Category:Cities and towns in Chelyabinsk Oblast +[2018-02-13T08:37:47.742] [INFO] cheese - batch complete in: 0.583 secs +[2018-02-13T08:37:47.781] [INFO] cheese - inserting 1000 documents. first: Plocaederus bipartitus and last: People's Republic of Luhansk +[2018-02-13T08:37:47.789] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:37:47.814] [INFO] cheese - inserting 1000 documents. first: World Trade Center-Metro Manila and last: Yolandi van der Westhuizen +[2018-02-13T08:37:47.848] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T08:37:47.876] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:37:48.002] [INFO] cheese - inserting 1000 documents. first: Groupe Mixte d'Intervention and last: Wikipedia:Featured picture candidates/Calvin Johnson (football player) +[2018-02-13T08:37:48.006] [INFO] cheese - inserting 1000 documents. first: Little monocacy river and last: Wikipedia:Votes for deletion/Vigatec (Chile) +[2018-02-13T08:37:48.015] [INFO] cheese - inserting 1000 documents. first: Alexander Ebner and last: Raymond Ndong Sima +[2018-02-13T08:37:48.061] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T08:37:48.063] [INFO] cheese - batch complete in: 0.518 secs +[2018-02-13T08:37:48.083] [INFO] cheese - batch complete in: 0.713 secs +[2018-02-13T08:37:48.182] [INFO] cheese - inserting 1000 documents. first: Dr. Linda Baboolal and last: File:Football Manager 2009.jpg +[2018-02-13T08:37:48.213] [INFO] cheese - inserting 1000 documents. first: Timeline of New York City history and last: 1953 Mille Miglia +[2018-02-13T08:37:48.214] [INFO] cheese - inserting 1000 documents. first: Template:Dykn and last: Wikipedia:Sockpuppet investigations/Superkeegan9100/Archive +[2018-02-13T08:37:48.224] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T08:37:48.266] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T08:37:48.274] [INFO] cheese - inserting 1000 documents. first: Lemonescent and last: Stark and Fulton +[2018-02-13T08:37:48.276] [INFO] cheese - batch complete in: 0.533 secs +[2018-02-13T08:37:48.293] [INFO] cheese - inserting 1000 documents. first: Cypress Hills–Grasslands and last: Template:ISO 3166 code Western Sahara +[2018-02-13T08:37:48.339] [INFO] cheese - batch complete in: 0.55 secs +[2018-02-13T08:37:48.341] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T08:37:48.431] [INFO] cheese - inserting 1000 documents. first: Oxycanus goldfinchi and last: Category:Tourist attractions in Fredericton +[2018-02-13T08:37:48.520] [INFO] cheese - inserting 1000 documents. first: Lebanese navy and last: Hiltenfingen +[2018-02-13T08:37:48.585] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:37:48.688] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:37:48.748] [INFO] cheese - inserting 1000 documents. first: Steamtown Heritage Rail Centre and last: Granata sulcifera +[2018-02-13T08:37:48.830] [INFO] cheese - inserting 1000 documents. first: United Cooperative and last: Full Gallop (stage play) +[2018-02-13T08:37:48.831] [INFO] cheese - batch complete in: 0.49 secs +[2018-02-13T08:37:48.846] [INFO] cheese - inserting 1000 documents. first: File:Ganga Bruta.jpg and last: Category:Fortifications in Australia +[2018-02-13T08:37:48.854] [INFO] cheese - inserting 1000 documents. first: U.S. Attorney for the Northern District of Georgia and last: KWR-37 +[2018-02-13T08:37:48.885] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T08:37:48.924] [INFO] cheese - inserting 1000 documents. first: Tourism in Georgia (country) and last: Australian aussies +[2018-02-13T08:37:48.933] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:37:48.943] [INFO] cheese - inserting 1000 documents. first: Family dog and last: Vinaroz +[2018-02-13T08:37:48.972] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:37:49.005] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:37:49.086] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:37:49.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/finance.flemingeurope.com and last: Upmaa +[2018-02-13T08:37:49.268] [INFO] cheese - batch complete in: 0.683 secs +[2018-02-13T08:37:49.349] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code United Kingdom Casnewydd GB-CNW and last: Template:ISO 3166 code Azerbaijan Samaxi +[2018-02-13T08:37:49.374] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:37:49.470] [INFO] cheese - inserting 1000 documents. first: Graded linear space and last: Category:Alevism +[2018-02-13T08:37:49.477] [INFO] cheese - inserting 1000 documents. first: Category:Royal residences in the London Borough of Richmond upon Thames and last: Draft:Luz-Cristal Sanchez Glangchai +[2018-02-13T08:37:49.509] [INFO] cheese - inserting 1000 documents. first: Furdale, Saskatchewan and last: Fo Guang Shan Temple, Toronto +[2018-02-13T08:37:49.557] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:37:49.583] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:37:49.605] [INFO] cheese - inserting 1000 documents. first: 2008–09 Qatar Stars League and last: Batova river +[2018-02-13T08:37:49.607] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:37:49.622] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Azerbaijan Samux and last: Template:ISO 3166 code Czech Republic Stredoceský kraj +[2018-02-13T08:37:49.689] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T08:37:49.708] [INFO] cheese - inserting 1000 documents. first: Wakes Cove Provincial Park and last: Introduction to Arithmetic +[2018-02-13T08:37:49.717] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T08:37:49.739] [INFO] cheese - inserting 1000 documents. first: The Revenge of the Whore and last: College of Science and Technology (Bhutan) +[2018-02-13T08:37:49.820] [INFO] cheese - inserting 1000 documents. first: KWT-37 and last: Barayev +[2018-02-13T08:37:49.839] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:37:49.851] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:37:49.940] [INFO] cheese - batch complete in: 0.968 secs +[2018-02-13T08:37:49.992] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Czech Republic Central Bohemia and last: Template:ISO 3166 code Italy Chieti +[2018-02-13T08:37:50.062] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T08:37:50.093] [INFO] cheese - inserting 1000 documents. first: Ngan Lung and last: Category:Historic districts in Indiana by county +[2018-02-13T08:37:50.142] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T08:37:50.163] [INFO] cheese - inserting 1000 documents. first: Alexei Vasilevsky (ice hockey) and last: Timeline of Luxembourg City history +[2018-02-13T08:37:50.239] [INFO] cheese - batch complete in: 0.632 secs +[2018-02-13T08:37:50.304] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Italy Como and last: Template:ISO 3166 code Mexico Chihuahua +[2018-02-13T08:37:50.451] [INFO] cheese - inserting 1000 documents. first: LSIL-1022 and last: File:Analysisdata.jpg +[2018-02-13T08:37:50.458] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T08:37:50.600] [INFO] cheese - inserting 1000 documents. first: Oxycanus snelleni and last: Brown Ministry +[2018-02-13T08:37:50.609] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:37:50.613] [INFO] cheese - inserting 1000 documents. first: Batova reka and last: The Song of the Sybil +[2018-02-13T08:37:50.725] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:37:50.751] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Mexico Coahuila and last: Template:ISO 3166 code Russian Federation Smolenskaja Oblast +[2018-02-13T08:37:50.768] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:37:50.928] [INFO] cheese - batch complete in: 0.47 secs +[2018-02-13T08:37:51.026] [INFO] cheese - inserting 1000 documents. first: Blue Ridge Museum and last: Västertorp +[2018-02-13T08:37:51.065] [INFO] cheese - inserting 1000 documents. first: David Nolan (swimmer) and last: File:Zoo Laka Taka.jpg +[2018-02-13T08:37:51.160] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:37:51.163] [INFO] cheese - batch complete in: 1.324 secs +[2018-02-13T08:37:51.343] [INFO] cheese - inserting 1000 documents. first: She Lao and last: 2015 in public domain +[2018-02-13T08:37:51.495] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Russian Federation Stavropol'skiy kray and last: Template:ISO 3166 code Thailand Sakon Nakhon +[2018-02-13T08:37:51.637] [INFO] cheese - inserting 1000 documents. first: Category:Uttar Pradesh MLAs 1997-2002 and last: File:CANDU Direct Heat.jpg +[2018-02-13T08:37:51.717] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:37:51.727] [INFO] cheese - inserting 1000 documents. first: Danio nigrofasciatus and last: George A. Smith +[2018-02-13T08:37:51.749] [INFO] cheese - inserting 1000 documents. first: Dano-Swedish War (1657-1658) and last: The Shires Gateway +[2018-02-13T08:37:51.860] [INFO] cheese - inserting 1000 documents. first: Joffery Douglas Lupul and last: Transitus Mariae +[2018-02-13T08:37:51.864] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:37:51.889] [INFO] cheese - batch complete in: 1.65 secs +[2018-02-13T08:37:51.991] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T08:37:52.169] [INFO] cheese - batch complete in: 2.228 secs +[2018-02-13T08:37:52.337] [INFO] cheese - batch complete in: 1.728 secs +[2018-02-13T08:37:52.351] [INFO] cheese - inserting 1000 documents. first: Rhine Villa Football Club and last: Paeonia lemoinei +[2018-02-13T08:37:52.377] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Thailand Samut Prakan and last: Cold-core low +[2018-02-13T08:37:52.452] [INFO] cheese - batch complete in: 0.735 secs +[2018-02-13T08:37:52.548] [INFO] cheese - inserting 1000 documents. first: Romanian-Canadians and last: Alimentation par Sol +[2018-02-13T08:37:52.644] [INFO] cheese - batch complete in: 1.484 secs +[2018-02-13T08:37:52.949] [INFO] cheese - inserting 1000 documents. first: Arabic grammarians and last: Mariette Laenen +[2018-02-13T08:37:53.177] [INFO] cheese - inserting 1000 documents. first: Portal:Jane Austen/Editors and last: Turbonilla acra +[2018-02-13T08:37:52.950] [INFO] cheese - batch complete in: 1.681 secs +[2018-02-13T08:37:53.294] [INFO] cheese - inserting 1000 documents. first: Category:1980 in Haiti and last: Hamdan vs Rumsfeld +[2018-02-13T08:37:53.750] [INFO] cheese - inserting 1000 documents. first: File:Baltimore oriole.ogg and last: File:Melvlog.png +[2018-02-13T08:37:53.770] [INFO] cheese - batch complete in: 1.878 secs +[2018-02-13T08:37:53.913] [INFO] cheese - inserting 1000 documents. first: Communist Party of Turkey 1920 and last: Gino Cassinis +[2018-02-13T08:37:53.937] [INFO] cheese - batch complete in: 1.946 secs +[2018-02-13T08:37:54.029] [INFO] cheese - inserting 1000 documents. first: Litton (disambiguation) and last: Martin-Baker Space Systems +[2018-02-13T08:37:54.056] [INFO] cheese - batch complete in: 2.192 secs +[2018-02-13T08:37:54.348] [INFO] cheese - batch complete in: 2.01 secs +[2018-02-13T08:37:54.414] [INFO] cheese - batch complete in: 1.962 secs +[2018-02-13T08:37:54.522] [INFO] cheese - batch complete in: 1.876 secs +[2018-02-13T08:37:54.720] [INFO] cheese - inserting 1000 documents. first: V. O. Key Jr. and last: Wikipedia:Articles for deletion/Video game proponent +[2018-02-13T08:37:55.869] [INFO] cheese - batch complete in: 3.7 secs +[2018-02-13T08:37:56.504] [INFO] cheese - inserting 1000 documents. first: Territory of Surinam and last: Aythos +[2018-02-13T08:37:56.639] [INFO] cheese - inserting 1000 documents. first: Abstained and last: Trans-activators +[2018-02-13T08:37:56.894] [INFO] cheese - batch complete in: 3.121 secs +[2018-02-13T08:37:56.963] [INFO] cheese - batch complete in: 3.026 secs +[2018-02-13T08:37:57.081] [INFO] cheese - inserting 1000 documents. first: Barrow Park Cenotaph and last: Goran Tosic +[2018-02-13T08:37:57.254] [INFO] cheese - batch complete in: 2.84 secs +[2018-02-13T08:37:57.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Article assessment/1980s comedy films/Twins (film) and last: File:Butler elementary arlington tx.jpg +[2018-02-13T08:37:57.459] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Common paradise kingfisher and last: Category:Simon Property Group templates +[2018-02-13T08:37:57.461] [INFO] cheese - inserting 1000 documents. first: File:Crime Story Cast.jpg and last: Small nucleolar RNA snoMBI-87 +[2018-02-13T08:37:57.577] [INFO] cheese - batch complete in: 3.229 secs +[2018-02-13T08:37:57.583] [INFO] cheese - inserting 1000 documents. first: Turbonilla aculeus and last: 1989 in the Philippines +[2018-02-13T08:37:57.867] [INFO] cheese - batch complete in: 4.87 secs +[2018-02-13T08:37:57.997] [INFO] cheese - batch complete in: 3.475 secs +[2018-02-13T08:37:58.220] [INFO] cheese - batch complete in: 4.164 secs +[2018-02-13T08:37:58.410] [INFO] cheese - inserting 1000 documents. first: Sweet Cuppin' Cakes Theme Song and last: Hachijōko-jima +[2018-02-13T08:37:58.522] [INFO] cheese - inserting 1000 documents. first: Category:Olympic table tennis players of Argentina and last: Hart Plain +[2018-02-13T08:37:58.635] [INFO] cheese - inserting 1000 documents. first: Category:Pre-Confederation Ontario and last: Barbara Shinn-Cunningham +[2018-02-13T08:37:58.707] [INFO] cheese - batch complete in: 1.744 secs +[2018-02-13T08:37:58.781] [INFO] cheese - inserting 1000 documents. first: 2010 Volkswagen Jetta TDI Cup and last: P. Marius Andersen +[2018-02-13T08:37:58.888] [INFO] cheese - batch complete in: 1.993 secs +[2018-02-13T08:37:58.901] [INFO] cheese - batch complete in: 3.031 secs +[2018-02-13T08:37:59.132] [INFO] cheese - batch complete in: 1.878 secs +[2018-02-13T08:37:59.506] [INFO] cheese - inserting 1000 documents. first: Peter Jacob and last: Call of Duty World League Season 1 +[2018-02-13T08:37:59.542] [INFO] cheese - inserting 1000 documents. first: Small nucleolar RNA snoR1 and last: Alfred Jones +[2018-02-13T08:37:59.594] [INFO] cheese - inserting 1000 documents. first: Glossary of computers and last: File:From Bessie to Brazil.jpg +[2018-02-13T08:37:59.600] [INFO] cheese - inserting 1000 documents. first: Hachijoko-jima and last: Parc floral et arboré de la Chènevière +[2018-02-13T08:37:59.661] [INFO] cheese - inserting 1000 documents. first: Template:Cell wall disruptive antibiotics and last: Mohammad ElBaradei +[2018-02-13T08:37:59.670] [INFO] cheese - batch complete in: 1.673 secs +[2018-02-13T08:37:59.765] [INFO] cheese - batch complete in: 1.058 secs +[2018-02-13T08:37:59.808] [INFO] cheese - batch complete in: 1.588 secs +[2018-02-13T08:37:59.929] [INFO] cheese - batch complete in: 2.062 secs +[2018-02-13T08:37:59.995] [INFO] cheese - batch complete in: 2.417 secs +[2018-02-13T08:38:00.288] [INFO] cheese - inserting 1000 documents. first: St Peter's Woodlands and last: Category:List-Class Australia, New Zealand and South Pacific military history articles +[2018-02-13T08:38:00.479] [INFO] cheese - inserting 1000 documents. first: Template:AUTP and last: Edwin Tunis +[2018-02-13T08:38:00.478] [INFO] cheese - inserting 1000 documents. first: Category:PlayStation 2 peripherals and last: Ditfurt +[2018-02-13T08:38:00.496] [INFO] cheese - batch complete in: 1.364 secs +[2018-02-13T08:38:00.782] [INFO] cheese - batch complete in: 1.894 secs +[2018-02-13T08:38:00.727] [INFO] cheese - batch complete in: 1.825 secs +[2018-02-13T08:38:00.905] [INFO] cheese - inserting 1000 documents. first: Call of Duty World League Season 2 and last: Template:User WeChat +[2018-02-13T08:38:01.043] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:38:01.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Psychology Senior Capstone (Greta Munger)/Timeline and last: Millar Burrows +[2018-02-13T08:38:01.139] [INFO] cheese - inserting 1000 documents. first: Willie Geist and last: U.S. Route 89 in Wyoming +[2018-02-13T08:38:01.267] [INFO] cheese - inserting 1000 documents. first: Peter Van Alstine and last: Straight knee strike +[2018-02-13T08:38:01.307] [INFO] cheese - inserting 1000 documents. first: 1988 West German motorcycle Grand Prix and last: Nye Ver, Nye Boysa +[2018-02-13T08:38:01.383] [INFO] cheese - batch complete in: 1.387 secs +[2018-02-13T08:38:01.538] [INFO] cheese - batch complete in: 1.773 secs +[2018-02-13T08:38:01.583] [INFO] cheese - batch complete in: 1.775 secs +[2018-02-13T08:38:01.680] [INFO] cheese - batch complete in: 1.751 secs +[2018-02-13T08:38:01.823] [INFO] cheese - inserting 1000 documents. first: SDU Ireland and last: List of countries by natural disaster risk +[2018-02-13T08:38:02.011] [INFO] cheese - batch complete in: 1.229 secs +[2018-02-13T08:38:02.021] [INFO] cheese - inserting 1000 documents. first: West Ham United F.C. season 2010-11 and last: El Cóndor, Jujuy +[2018-02-13T08:38:02.091] [INFO] cheese - inserting 1000 documents. first: 10 cm Bubble Chamber (CERN) and last: Pholidota (orchid) +[2018-02-13T08:38:02.218] [INFO] cheese - batch complete in: 1.721 secs +[2018-02-13T08:38:02.224] [INFO] cheese - batch complete in: 1.181 secs +[2018-02-13T08:38:02.663] [INFO] cheese - inserting 1000 documents. first: Laura Dickinson incident and last: Wikipedia:WikiProject Spam/LinkReports/gold10.ru +[2018-02-13T08:38:02.670] [INFO] cheese - inserting 1000 documents. first: EADS SPACE and last: Wikipedia:Votes for deletion/Nejaa Halcyon +[2018-02-13T08:38:02.708] [INFO] cheese - inserting 1000 documents. first: Iritriya and last: Puebla American School Model United Nations +[2018-02-13T08:38:02.712] [INFO] cheese - inserting 1000 documents. first: Eremophila nivea and last: Zonbu +[2018-02-13T08:38:02.735] [INFO] cheese - inserting 1000 documents. first: Act on Petition and last: American Power Boat Association +[2018-02-13T08:38:02.897] [INFO] cheese - batch complete in: 1.314 secs +[2018-02-13T08:38:02.929] [INFO] cheese - batch complete in: 1.39 secs +[2018-02-13T08:38:02.923] [INFO] cheese - batch complete in: 2.195 secs +[2018-02-13T08:38:02.972] [INFO] cheese - batch complete in: 1.589 secs +[2018-02-13T08:38:02.915] [INFO] cheese - batch complete in: 1.232 secs +[2018-02-13T08:38:03.224] [INFO] cheese - inserting 1000 documents. first: VOLAGS and last: De la Fonte, Jeanne +[2018-02-13T08:38:03.293] [INFO] cheese - inserting 1000 documents. first: Mr. Right (Website) and last: Template:Did you know nominations/Louis Victor Plessier +[2018-02-13T08:38:03.387] [INFO] cheese - inserting 1000 documents. first: El Talar, Jujuy and last: File:Petersen Sports Complex (logo).png +[2018-02-13T08:38:03.439] [INFO] cheese - batch complete in: 1.428 secs +[2018-02-13T08:38:03.487] [INFO] cheese - batch complete in: 1.263 secs +[2018-02-13T08:38:03.673] [INFO] cheese - batch complete in: 1.455 secs +[2018-02-13T08:38:04.168] [INFO] cheese - inserting 1000 documents. first: Luis Duggan and last: Michael W. D'Arcy +[2018-02-13T08:38:04.213] [INFO] cheese - inserting 1000 documents. first: 1991–92 Japan Ice Hockey League season and last: Category:Musical groups from North Rhine-Westphalia +[2018-02-13T08:38:04.228] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australian biota articles by quality/6 and last: Category:List-Class College baseball articles +[2018-02-13T08:38:04.391] [INFO] cheese - batch complete in: 1.415 secs +[2018-02-13T08:38:04.467] [INFO] cheese - inserting 1000 documents. first: Adorée, Renée and last: Wikipedia:Today's articles for improvement/2014/21 +[2018-02-13T08:38:04.518] [INFO] cheese - batch complete in: 1.609 secs +[2018-02-13T08:38:04.628] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Plumtree School and last: Willie Cross +[2018-02-13T08:38:04.654] [INFO] cheese - batch complete in: 1.724 secs +[2018-02-13T08:38:04.705] [INFO] cheese - batch complete in: 1.265 secs +[2018-02-13T08:38:04.779] [INFO] cheese - inserting 1000 documents. first: The Modern (band) and last: Brzeźno Człuchowskie railway station +[2018-02-13T08:38:04.820] [INFO] cheese - inserting 1000 documents. first: Eddie Hart (athlete) and last: Category:1460s births +[2018-02-13T08:38:04.837] [INFO] cheese - batch complete in: 1.35 secs +[2018-02-13T08:38:04.993] [INFO] cheese - batch complete in: 2.078 secs +[2018-02-13T08:38:05.099] [INFO] cheese - inserting 1000 documents. first: Pomroy Township, Minnesota (disambiguation) and last: Portal:Speculative fiction/Possible futures/22 +[2018-02-13T08:38:05.156] [INFO] cheese - batch complete in: 2.233 secs +[2018-02-13T08:38:05.363] [INFO] cheese - batch complete in: 1.689 secs +[2018-02-13T08:38:05.692] [INFO] cheese - inserting 1000 documents. first: Jacob Tostrup and last: AICA ribonucleotide +[2018-02-13T08:38:05.745] [INFO] cheese - inserting 1000 documents. first: Ergon (Australia) and last: Wikipedia:WikiProject Spam/LinkReports/avoiceformen.org +[2018-02-13T08:38:05.805] [INFO] cheese - inserting 1000 documents. first: Interstate 80N (Oregon-Idaho-Utah) and last: Category:1878 establishments in Ottoman Syria +[2018-02-13T08:38:05.814] [INFO] cheese - batch complete in: 1.422 secs +[2018-02-13T08:38:05.860] [INFO] cheese - inserting 1000 documents. first: Elasticity of complementarity and last: Halls (department store) +[2018-02-13T08:38:05.899] [INFO] cheese - batch complete in: 1.381 secs +[2018-02-13T08:38:06.017] [INFO] cheese - batch complete in: 1.312 secs +[2018-02-13T08:38:06.085] [INFO] cheese - batch complete in: 1.431 secs +[2018-02-13T08:38:06.104] [INFO] cheese - inserting 1000 documents. first: Indiana Veterans’ Home and last: Category:Streets in Contra Costa County, California +[2018-02-13T08:38:06.269] [INFO] cheese - inserting 1000 documents. first: Henrique Arlindo Etges and last: Samuele Modica +[2018-02-13T08:38:06.271] [INFO] cheese - batch complete in: 1.434 secs +[2018-02-13T08:38:06.392] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:38:06.432] [INFO] cheese - inserting 1000 documents. first: Factor X deficiency, congenital and last: Ferrocarriles Nacionales de México +[2018-02-13T08:38:06.632] [INFO] cheese - batch complete in: 1.639 secs +[2018-02-13T08:38:06.843] [INFO] cheese - inserting 1000 documents. first: Category:1460s deaths and last: Warnia coat of arms +[2018-02-13T08:38:06.930] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/William K. Meade and last: Places of Interest in Pandacan +[2018-02-13T08:38:06.953] [INFO] cheese - inserting 1000 documents. first: Aminoimidazole carboxamide ribonucleotide and last: Gamal Abdel-Hameed +[2018-02-13T08:38:07.109] [INFO] cheese - batch complete in: 1.295 secs +[2018-02-13T08:38:07.109] [INFO] cheese - batch complete in: 1.092 secs +[2018-02-13T08:38:07.113] [INFO] cheese - batch complete in: 1.957 secs +[2018-02-13T08:38:07.126] [INFO] cheese - inserting 1000 documents. first: Lost Spirits and last: Filippo Cansacchi +[2018-02-13T08:38:07.175] [INFO] cheese - inserting 1000 documents. first: W. Ben Hunt Cabin and last: Category:Pfeiffer University +[2018-02-13T08:38:07.197] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom by-elections (1979 - 2010) and last: CHKG +[2018-02-13T08:38:07.247] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:38:07.292] [INFO] cheese - batch complete in: 1.393 secs +[2018-02-13T08:38:07.380] [INFO] cheese - batch complete in: 1.295 secs +[2018-02-13T08:38:07.541] [INFO] cheese - inserting 1000 documents. first: Nineteen Stories and last: Here Not There +[2018-02-13T08:38:07.665] [INFO] cheese - inserting 1000 documents. first: Kesagatame and last: Tailwhip air +[2018-02-13T08:38:07.695] [INFO] cheese - batch complete in: 1.303 secs +[2018-02-13T08:38:07.785] [INFO] cheese - batch complete in: 1.152 secs +[2018-02-13T08:38:07.985] [INFO] cheese - inserting 1000 documents. first: Portal:Animation/Selected biography/29 and last: Northwestern Crow +[2018-02-13T08:38:08.037] [INFO] cheese - inserting 1000 documents. first: HNLMS Gouden Leeuw and last: Rendiconti di Matematica e delle sue Applicazioni +[2018-02-13T08:38:08.068] [INFO] cheese - inserting 1000 documents. first: HMS Nile and last: Pontoon Stand +[2018-02-13T08:38:08.108] [INFO] cheese - batch complete in: 0.999 secs +[2018-02-13T08:38:08.112] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/New Jersey articles by quality/9 and last: Tictaalic +[2018-02-13T08:38:08.141] [INFO] cheese - inserting 1000 documents. first: Batrachiderpeton reticulatum and last: Adolescents and food marketing +[2018-02-13T08:38:08.186] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:38:08.230] [INFO] cheese - batch complete in: 1.121 secs +[2018-02-13T08:38:08.239] [INFO] cheese - batch complete in: 0.859 secs +[2018-02-13T08:38:08.279] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:38:08.443] [INFO] cheese - inserting 1000 documents. first: Howard 'Howdy' Quicksell and last: German destroyer Z43 +[2018-02-13T08:38:08.472] [INFO] cheese - inserting 1000 documents. first: Kiss My Grass: A Hillbilly Tribute to Kiss and last: FURB +[2018-02-13T08:38:08.552] [INFO] cheese - batch complete in: 0.856 secs +[2018-02-13T08:38:08.615] [INFO] cheese - batch complete in: 1.502 secs +[2018-02-13T08:38:08.731] [INFO] cheese - inserting 1000 documents. first: Suresh Angadi and last: Jebus (disambiguation) +[2018-02-13T08:38:08.840] [INFO] cheese - batch complete in: 1.055 secs +[2018-02-13T08:38:08.938] [INFO] cheese - inserting 1000 documents. first: Tiktaalic and last: Via Montenapoleone (film) +[2018-02-13T08:38:08.970] [INFO] cheese - inserting 1000 documents. first: Category:Online retailers of the United Arab Emirates and last: Nadja Sellrup +[2018-02-13T08:38:09.046] [INFO] cheese - inserting 1000 documents. first: File:Cloudinary - Official logo.svg and last: Giampiero Iatteri +[2018-02-13T08:38:09.125] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:38:09.130] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:38:09.209] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:38:09.265] [INFO] cheese - inserting 1000 documents. first: Joseph Rorke and last: Anatoli Fedotov +[2018-02-13T08:38:09.371] [INFO] cheese - batch complete in: 1.141 secs +[2018-02-13T08:38:09.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Northern California Solar Regatta and last: Template:Did you know nominations/Battle of Burton Bridge (1322) +[2018-02-13T08:38:09.533] [INFO] cheese - inserting 1000 documents. first: Polymelus and last: Polena +[2018-02-13T08:38:09.660] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T08:38:09.669] [INFO] cheese - batch complete in: 1.39 secs +[2018-02-13T08:38:09.823] [INFO] cheese - inserting 1000 documents. first: Aalborg BK and last: Monno +[2018-02-13T08:38:09.833] [INFO] cheese - inserting 1000 documents. first: Yasukazu Ikari and last: List of aircraft (Ci) +[2018-02-13T08:38:09.877] [INFO] cheese - inserting 1000 documents. first: Category:Estonian biologists and last: Gawen Lawrie +[2018-02-13T08:38:09.923] [INFO] cheese - batch complete in: 0.714 secs +[2018-02-13T08:38:09.992] [INFO] cheese - batch complete in: 1.375 secs +[2018-02-13T08:38:10.083] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:38:10.184] [INFO] cheese - inserting 1000 documents. first: Magelungen and last: Ayrılık Zor +[2018-02-13T08:38:10.221] [INFO] cheese - inserting 1000 documents. first: The Word Magazine and last: Hørning municipality +[2018-02-13T08:38:10.242] [INFO] cheese - inserting 1000 documents. first: File:Trust a Try.ogg and last: Packard Campus for Audio-Visual Conservation +[2018-02-13T08:38:10.319] [INFO] cheese - batch complete in: 1.189 secs +[2018-02-13T08:38:10.364] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:38:10.382] [INFO] cheese - batch complete in: 1.257 secs +[2018-02-13T08:38:10.415] [INFO] cheese - inserting 1000 documents. first: Watut languages and last: Category:1530s establishments in Ireland +[2018-02-13T08:38:10.521] [INFO] cheese - batch complete in: 0.852 secs +[2018-02-13T08:38:10.594] [INFO] cheese - inserting 1000 documents. first: Poleto and last: Aleyski Raion +[2018-02-13T08:38:10.678] [INFO] cheese - inserting 1000 documents. first: Marie Ann Battiste and last: 1959 Honduran Amateur League +[2018-02-13T08:38:10.709] [INFO] cheese - batch complete in: 1.049 secs +[2018-02-13T08:38:10.828] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:38:10.995] [INFO] cheese - inserting 1000 documents. first: Master (judiciary) and last: Song Suk-woo +[2018-02-13T08:38:11.083] [INFO] cheese - inserting 1000 documents. first: Hvorslev municipality and last: Knockouts haircuts for men +[2018-02-13T08:38:11.103] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:38:11.110] [INFO] cheese - inserting 1000 documents. first: Category:Works by Simon Kinberg and last: Canarium grandiflorum +[2018-02-13T08:38:11.150] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:38:11.164] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:38:11.266] [INFO] cheese - inserting 1000 documents. first: James Stanhope, 7th Earl Stanhope and last: Sineus and Truvor +[2018-02-13T08:38:11.353] [INFO] cheese - inserting 1000 documents. first: Promise Not to Tell and last: Inosinate +[2018-02-13T08:38:11.390] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/cellphonesnationwide.com and last: Ariel Amaya +[2018-02-13T08:38:11.401] [INFO] cheese - batch complete in: 1.409 secs +[2018-02-13T08:38:11.539] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T08:38:11.646] [INFO] cheese - batch complete in: 1.125 secs +[2018-02-13T08:38:11.740] [INFO] cheese - inserting 1000 documents. first: Georgi Kirkov and last: Željko Perović +[2018-02-13T08:38:11.807] [INFO] cheese - inserting 1000 documents. first: Ban Du, Chiang Rai and last: ACyS +[2018-02-13T08:38:11.870] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T08:38:12.015] [INFO] cheese - batch complete in: 1.306 secs +[2018-02-13T08:38:12.134] [INFO] cheese - inserting 1000 documents. first: Ghaffur and last: Pudukkottai State +[2018-02-13T08:38:12.257] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T08:38:12.267] [INFO] cheese - inserting 1000 documents. first: Teeth & Tongue and last: Wikipedia:Turkish +[2018-02-13T08:38:12.321] [INFO] cheese - inserting 1000 documents. first: Lashar and last: Thornton, New York +[2018-02-13T08:38:12.392] [INFO] cheese - batch complete in: 1.227 secs +[2018-02-13T08:38:12.411] [INFO] cheese - inserting 1000 documents. first: Mirrodin (plane) and last: Eurasian Turtle-Dove +[2018-02-13T08:38:12.498] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:38:12.543] [INFO] cheese - inserting 1000 documents. first: File:1906 (Bambata album).jpg and last: Category:1680s in Portugal +[2018-02-13T08:38:12.603] [INFO] cheese - batch complete in: 1.5 secs +[2018-02-13T08:38:12.711] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:38:12.937] [INFO] cheese - inserting 1000 documents. first: Moissaye J. Olgin and last: Triaxomera griseolella +[2018-02-13T08:38:12.984] [INFO] cheese - inserting 1000 documents. first: Baron de Hirsch Cemetery, Halifax and last: Dassera +[2018-02-13T08:38:13.004] [INFO] cheese - inserting 1000 documents. first: St Christopher's Cathedral, Manuka and last: Category:Political office-holders in Iowa +[2018-02-13T08:38:13.048] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:38:13.127] [INFO] cheese - batch complete in: 1.257 secs +[2018-02-13T08:38:13.218] [INFO] cheese - batch complete in: 1.817 secs +[2018-02-13T08:38:13.282] [INFO] cheese - inserting 1000 documents. first: Afghan Civil War (disambiguation) and last: File:JSFulton1979.tif +[2018-02-13T08:38:13.301] [INFO] cheese - inserting 1000 documents. first: Counting tube and last: Beverly Hills Cop 4 +[2018-02-13T08:38:13.334] [INFO] cheese - inserting 1000 documents. first: J. C. Massee and last: Pak Se Ri +[2018-02-13T08:38:13.372] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:38:13.478] [INFO] cheese - batch complete in: 0.979 secs +[2018-02-13T08:38:13.496] [INFO] cheese - batch complete in: 1.239 secs +[2018-02-13T08:38:13.594] [INFO] cheese - inserting 1000 documents. first: White rain lily and last: Shen Tan Di Renjie +[2018-02-13T08:38:13.621] [INFO] cheese - inserting 1000 documents. first: Gostivari and last: Styl Kar +[2018-02-13T08:38:13.771] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:38:13.813] [INFO] cheese - batch complete in: 1.21 secs +[2018-02-13T08:38:14.176] [INFO] cheese - inserting 1000 documents. first: Waretini and last: Lucien Dirksz +[2018-02-13T08:38:14.214] [INFO] cheese - inserting 1000 documents. first: Language A Key Mechanism of Control and last: Lockheed AT-18 +[2018-02-13T08:38:14.231] [INFO] cheese - inserting 1000 documents. first: In the Name of Metal (disambiguation) and last: Erik–Michael Estrada +[2018-02-13T08:38:14.224] [INFO] cheese - batch complete in: 1.096 secs +[2018-02-13T08:38:14.349] [INFO] cheese - batch complete in: 1.301 secs +[2018-02-13T08:38:14.460] [INFO] cheese - batch complete in: 1.087 secs +[2018-02-13T08:38:14.571] [INFO] cheese - inserting 1000 documents. first: Category:Synagogues in Bosnia and Herzegovina and last: Little Sark +[2018-02-13T08:38:14.643] [INFO] cheese - inserting 1000 documents. first: Visions of Jesus Christ and last: Morane-Saulnier AF +[2018-02-13T08:38:14.725] [INFO] cheese - inserting 1000 documents. first: Eishō (Muromachi period) and last: Nottingham Girls' High School +[2018-02-13T08:38:14.738] [INFO] cheese - batch complete in: 1.26 secs +[2018-02-13T08:38:14.789] [INFO] cheese - batch complete in: 1.293 secs +[2018-02-13T08:38:14.950] [INFO] cheese - batch complete in: 1.732 secs +[2018-02-13T08:38:15.195] [INFO] cheese - inserting 1000 documents. first: Geoff Chilvers and last: Latin Grammy Award for Best Urban Performance +[2018-02-13T08:38:15.219] [INFO] cheese - inserting 1000 documents. first: File:England-Saint-Michaels-Mount-1900-1.jpg and last: Wikipedia:3rrn +[2018-02-13T08:38:15.301] [INFO] cheese - inserting 1000 documents. first: Onnum and last: Category:My Dying Bride live albums +[2018-02-13T08:38:15.309] [INFO] cheese - inserting 1000 documents. first: Vasily Kalika and last: Lawrence's Thrush +[2018-02-13T08:38:15.328] [INFO] cheese - batch complete in: 1.104 secs +[2018-02-13T08:38:15.460] [INFO] cheese - batch complete in: 1.678 secs +[2018-02-13T08:38:15.513] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:38:15.545] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T08:38:15.595] [INFO] cheese - inserting 1000 documents. first: Trail Smoke Eaters and last: EBaumsWorld +[2018-02-13T08:38:15.805] [INFO] cheese - inserting 1000 documents. first: Fritz Spengler and last: List of diplomatic missions of Guyana +[2018-02-13T08:38:15.829] [INFO] cheese - batch complete in: 2.016 secs +[2018-02-13T08:38:15.839] [INFO] cheese - inserting 1000 documents. first: Liberty and Justice for... and last: Wikipedia:MCD +[2018-02-13T08:38:15.889] [INFO] cheese - batch complete in: 1.151 secs +[2018-02-13T08:38:15.985] [INFO] cheese - batch complete in: 1.196 secs +[2018-02-13T08:38:16.172] [INFO] cheese - inserting 1000 documents. first: Art clay silver and last: South Vacherie +[2018-02-13T08:38:16.272] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Merge articles and last: Pauline Beale and Arthur Fowler +[2018-02-13T08:38:16.308] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 NBA Midwest standings and last: Voices in My Head (Dot Rotten album) +[2018-02-13T08:38:16.334] [INFO] cheese - inserting 1000 documents. first: Category:Mystery characters and last: Wikipedia:WikiProject Wikipack Africa Content/Wikipedia:NPOV +[2018-02-13T08:38:16.351] [INFO] cheese - batch complete in: 1.401 secs +[2018-02-13T08:38:16.396] [INFO] cheese - batch complete in: 1.068 secs +[2018-02-13T08:38:16.438] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:38:16.552] [INFO] cheese - batch complete in: 1.092 secs +[2018-02-13T08:38:16.602] [INFO] cheese - inserting 1000 documents. first: Category:My Dying Bride compilation albums and last: Guantanamo detainee 058 +[2018-02-13T08:38:16.713] [INFO] cheese - batch complete in: 1.168 secs +[2018-02-13T08:38:16.798] [INFO] cheese - inserting 1000 documents. first: TEA Laser and last: We Gon' Ride +[2018-02-13T08:38:16.825] [INFO] cheese - inserting 1000 documents. first: File:Uptown Anthem.jpg and last: 2008–09 ISU Speed Skating World Cup – World Cup 2 +[2018-02-13T08:38:16.828] [INFO] cheese - inserting 1000 documents. first: Category:1993 in horse racing and last: Cmuwest +[2018-02-13T08:38:16.977] [INFO] cheese - batch complete in: 1.148 secs +[2018-02-13T08:38:17.056] [INFO] cheese - batch complete in: 1.071 secs +[2018-02-13T08:38:17.120] [INFO] cheese - batch complete in: 1.231 secs +[2018-02-13T08:38:17.394] [INFO] cheese - inserting 1000 documents. first: Mohamed Albuflasa and last: Küçükçekmece, İstanbul +[2018-02-13T08:38:17.446] [INFO] cheese - inserting 1000 documents. first: 1962 TCU Horned Frogs football team and last: Philadelphia sound +[2018-02-13T08:38:17.586] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:38:17.591] [INFO] cheese - inserting 1000 documents. first: Patricia Tallman and last: Gen (Street Fighter) +[2018-02-13T08:38:17.601] [INFO] cheese - inserting 1000 documents. first: Extended BASIC-86 and last: Ballarat Regional Soccer Facility +[2018-02-13T08:38:17.600] [INFO] cheese - batch complete in: 1.204 secs +[2018-02-13T08:38:17.788] [INFO] cheese - batch complete in: 1.437 secs +[2018-02-13T08:38:17.837] [INFO] cheese - batch complete in: 1.399 secs +[2018-02-13T08:38:17.862] [INFO] cheese - inserting 1000 documents. first: Drops of Jupiter (song) and last: Category:Jordanian people of Iranian descent +[2018-02-13T08:38:17.934] [INFO] cheese - inserting 1000 documents. first: Category:Pilgrimage routes and last: Pir Double Shah +[2018-02-13T08:38:18.055] [INFO] cheese - inserting 1000 documents. first: Kana Cone and last: Category:British Merchant Navy +[2018-02-13T08:38:18.121] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:38:18.171] [INFO] cheese - inserting 1000 documents. first: Leo III (emperor) and last: D1GP +[2018-02-13T08:38:18.183] [INFO] cheese - batch complete in: 1.468 secs +[2018-02-13T08:38:18.218] [INFO] cheese - batch complete in: 1.161 secs +[2018-02-13T08:38:18.336] [INFO] cheese - batch complete in: 1.359 secs +[2018-02-13T08:38:18.475] [INFO] cheese - inserting 1000 documents. first: Sweet Shells and last: Vuelta a los Pirineos +[2018-02-13T08:38:18.589] [INFO] cheese - batch complete in: 0.989 secs +[2018-02-13T08:38:18.708] [INFO] cheese - inserting 1000 documents. first: Côme-Séraphin Cherrier and last: Playatmcd.com +[2018-02-13T08:38:18.805] [INFO] cheese - inserting 1000 documents. first: TEKDOS and last: I Am the Last of All the Field That Fell: A Channel +[2018-02-13T08:38:18.853] [INFO] cheese - batch complete in: 1.267 secs +[2018-02-13T08:38:18.983] [INFO] cheese - batch complete in: 1.146 secs +[2018-02-13T08:38:19.019] [INFO] cheese - inserting 1000 documents. first: Category:Administrative okrugs of Moscow and last: Kristine Roepstorff +[2018-02-13T08:38:19.169] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:38:19.257] [INFO] cheese - inserting 1000 documents. first: Philippe de l'Espinoy and last: 1953 New York Yankees season +[2018-02-13T08:38:19.272] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OLYMOSNAT and last: Irving Kriesberg +[2018-02-13T08:38:19.329] [INFO] cheese - inserting 1000 documents. first: Digimon Adventure and last: Medium of instruction +[2018-02-13T08:38:19.345] [INFO] cheese - inserting 1000 documents. first: Mona Lisa Overdrive (album) and last: Bucket of Blood +[2018-02-13T08:38:19.337] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:38:19.409] [INFO] cheese - inserting 1000 documents. first: Susan Ryan Peters and last: Mainland U.S. +[2018-02-13T08:38:19.419] [INFO] cheese - batch complete in: 1.201 secs +[2018-02-13T08:38:19.469] [INFO] cheese - batch complete in: 1.681 secs +[2018-02-13T08:38:19.491] [INFO] cheese - batch complete in: 1.155 secs +[2018-02-13T08:38:19.502] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:38:19.663] [INFO] cheese - inserting 1000 documents. first: Willie Steenson and last: GUU (disambiguation) +[2018-02-13T08:38:19.742] [INFO] cheese - batch complete in: 0.889 secs +[2018-02-13T08:38:19.758] [INFO] cheese - inserting 1000 documents. first: Joachim Heinz Ehrig and last: Rolf von Goth +[2018-02-13T08:38:19.858] [INFO] cheese - batch complete in: 0.874 secs +[2018-02-13T08:38:19.936] [INFO] cheese - inserting 1000 documents. first: 2007 UCI Track Cycling World Championships – Women's Team Sprint and last: Category:Wildfires in North Carolina +[2018-02-13T08:38:20.065] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:38:20.170] [INFO] cheese - inserting 1000 documents. first: List of members of the Swiss National Council and last: Wendelin Endrédy +[2018-02-13T08:38:20.269] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:38:20.307] [INFO] cheese - inserting 1000 documents. first: Département Protection Sécurité and last: The Frackles +[2018-02-13T08:38:20.410] [INFO] cheese - inserting 1000 documents. first: Achitophel (disambiguation) and last: Samuel Adams (composer) +[2018-02-13T08:38:20.414] [INFO] cheese - inserting 1000 documents. first: Category:1868 ballet premieres and last: Portal:Karachi/Karachi Topics +[2018-02-13T08:38:20.545] [INFO] cheese - inserting 1000 documents. first: New South Wales Xplorer and last: Nevada class battleships +[2018-02-13T08:38:20.554] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:38:20.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2014 May 14 and last: File:Have a Nice Day, Volume 21.jpg +[2018-02-13T08:38:20.610] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:38:20.681] [INFO] cheese - inserting 1000 documents. first: Olt county and last: Basilicas +[2018-02-13T08:38:20.688] [INFO] cheese - batch complete in: 1.269 secs +[2018-02-13T08:38:20.727] [INFO] cheese - batch complete in: 1.39 secs +[2018-02-13T08:38:20.856] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:38:20.965] [INFO] cheese - batch complete in: 1.496 secs +[2018-02-13T08:38:21.179] [INFO] cheese - inserting 1000 documents. first: Jerome Corsi and last: Syrid +[2018-02-13T08:38:21.300] [INFO] cheese - batch complete in: 1.235 secs +[2018-02-13T08:38:21.319] [INFO] cheese - inserting 1000 documents. first: Luis Guzman (disambiguation) and last: Ida Proper +[2018-02-13T08:38:21.353] [INFO] cheese - inserting 1000 documents. first: Malappuram Collectorate and last: SimCity (remake) +[2018-02-13T08:38:21.435] [INFO] cheese - batch complete in: 1.166 secs +[2018-02-13T08:38:21.434] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:38:21.480] [INFO] cheese - inserting 1000 documents. first: Zhu Fatai and last: Portal:American football/Quotes/23 +[2018-02-13T08:38:21.617] [INFO] cheese - inserting 1000 documents. first: Mr. Probz and last: Category:1941 establishments in Burma +[2018-02-13T08:38:21.619] [INFO] cheese - batch complete in: 0.892 secs +[2018-02-13T08:38:21.709] [INFO] cheese - inserting 1000 documents. first: 1925 in baseball and last: Mount St. Mary's (disambiguation) +[2018-02-13T08:38:21.721] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:38:21.770] [INFO] cheese - inserting 1000 documents. first: F-68 and last: Folgerite +[2018-02-13T08:38:21.833] [INFO] cheese - batch complete in: 1.223 secs +[2018-02-13T08:38:21.870] [INFO] cheese - batch complete in: 1.182 secs +[2018-02-13T08:38:21.949] [INFO] cheese - inserting 1000 documents. first: Category:1474 births and last: Cléo de Merode +[2018-02-13T08:38:21.989] [INFO] cheese - inserting 1000 documents. first: Lafayette Daily Advertiser and last: Khet Yan Nawa +[2018-02-13T08:38:22.038] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T08:38:22.094] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:38:22.125] [INFO] cheese - inserting 1000 documents. first: Category:1960s establishments in Liechtenstein and last: Angano... Angano... nouvelles de Madagascar +[2018-02-13T08:38:22.142] [INFO] cheese - inserting 1000 documents. first: Ooyala (film) and last: Chaetosphaeridiales +[2018-02-13T08:38:22.252] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:38:22.250] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:38:22.491] [INFO] cheese - inserting 1000 documents. first: Khyber (Hunza) and last: Hardware cloth +[2018-02-13T08:38:22.554] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Regional and national music articles and last: Category:Uruguayan academics +[2018-02-13T08:38:22.561] [INFO] cheese - inserting 1000 documents. first: Category:Ski areas and resorts in Norway and last: First nation +[2018-02-13T08:38:22.582] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:38:22.691] [INFO] cheese - batch complete in: 0.858 secs +[2018-02-13T08:38:22.697] [INFO] cheese - batch complete in: 1.078 secs +[2018-02-13T08:38:22.824] [INFO] cheese - inserting 1000 documents. first: File:Standards Vol. 1.jpg and last: And I approved this message +[2018-02-13T08:38:22.923] [INFO] cheese - batch complete in: 1.051 secs +[2018-02-13T08:38:22.988] [INFO] cheese - inserting 1000 documents. first: Category:Spouses of Illinois politicians and last: Goff, Bruce +[2018-02-13T08:38:22.988] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Farm to Market Road 742 and last: Statute Law Revision (Miscellaneous Provisions) Act 1993 +[2018-02-13T08:38:23.023] [INFO] cheese - inserting 1000 documents. first: Category:Taxa named by Pierre Viette and last: Sand Fire +[2018-02-13T08:38:23.057] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T08:38:23.061] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:38:23.073] [INFO] cheese - inserting 1000 documents. first: Jules-Elie Delaunay and last: File:Young Adam movie.jpg +[2018-02-13T08:38:23.117] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:38:23.195] [INFO] cheese - inserting 1000 documents. first: Category:Nike (rocket family) and last: Wangman Lowangcha +[2018-02-13T08:38:23.203] [INFO] cheese - batch complete in: 1.165 secs +[2018-02-13T08:38:23.305] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:38:23.386] [INFO] cheese - inserting 1000 documents. first: Evinohório, Greece and last: Merri Rose +[2018-02-13T08:38:23.402] [INFO] cheese - inserting 1000 documents. first: File:Starship Command.png and last: File:Ibniasdaq-2.jpg +[2018-02-13T08:38:23.444] [INFO] cheese - batch complete in: 0.747 secs +[2018-02-13T08:38:23.484] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:38:23.636] [INFO] cheese - inserting 1000 documents. first: Unca and last: Judo at the 2008 Summer Paralympics – Women's 57 kg +[2018-02-13T08:38:23.713] [INFO] cheese - inserting 1000 documents. first: Ellen Nyman and last: 2004 Women's Pan-American Volleyball Cup Squads +[2018-02-13T08:38:23.756] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:38:23.815] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:38:23.880] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/healthca.info and last: John and Elizabeth McMurn Early House +[2018-02-13T08:38:24.092] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:38:24.121] [INFO] cheese - inserting 1000 documents. first: Moshling and last: File:Lincolnshire Independents logo.jpg +[2018-02-13T08:38:24.174] [INFO] cheese - inserting 1000 documents. first: Template:Help me working and last: Sklené, Žďár nad Sázavou +[2018-02-13T08:38:24.257] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:38:24.311] [INFO] cheese - batch complete in: 1.006 secs +[2018-02-13T08:38:24.322] [INFO] cheese - inserting 1000 documents. first: SKP and last: File:The Donnas - Spend the Night.jpg +[2018-02-13T08:38:24.413] [INFO] cheese - inserting 1000 documents. first: CHEF-FM and last: Wikipedia:Arbitration Committee Elections December 2007/Candidate statements/Example/Questions for the candidate +[2018-02-13T08:38:24.315] [INFO] cheese - inserting 1000 documents. first: Heated floor and last: Succession to the Crown Act 1603 +[2018-02-13T08:38:24.534] [INFO] cheese - inserting 1000 documents. first: Liverpool City Council election, 1999 and last: Wikipedia:Categories for deletion/Log/2006 March 11 +[2018-02-13T08:38:24.518] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:38:24.570] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:38:24.581] [INFO] cheese - batch complete in: 1.378 secs +[2018-02-13T08:38:24.681] [INFO] cheese - batch complete in: 1.197 secs +[2018-02-13T08:38:24.750] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Latymer Upper School and last: Agraulis glycera +[2018-02-13T08:38:24.839] [INFO] cheese - batch complete in: 1.024 secs +[2018-02-13T08:38:24.842] [INFO] cheese - inserting 1000 documents. first: Colegio Estilo and last: Category:2014–15 Colonial Athletic Association women's basketball season +[2018-02-13T08:38:24.938] [INFO] cheese - inserting 1000 documents. first: Bertram Bisgood and last: Brown moray eel +[2018-02-13T08:38:24.943] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:38:25.010] [INFO] cheese - inserting 1000 documents. first: Template:Simon & Garfunkel singles and last: Segregation Academy +[2018-02-13T08:38:25.074] [INFO] cheese - batch complete in: 0.816 secs +[2018-02-13T08:38:25.133] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:38:25.166] [INFO] cheese - inserting 1000 documents. first: Gheert Cremer and last: Ivan Yarygin +[2018-02-13T08:38:25.279] [INFO] cheese - batch complete in: 0.709 secs +[2018-02-13T08:38:25.321] [INFO] cheese - inserting 1000 documents. first: Source route bridging and last: Jean Michel Larqué +[2018-02-13T08:38:25.391] [INFO] cheese - inserting 1000 documents. first: Guernsey at the 2006 Commonwealth Games and last: Sri Lankan Muslim +[2018-02-13T08:38:25.409] [INFO] cheese - inserting 1000 documents. first: Atanu Roy and last: Suillellus frostii +[2018-02-13T08:38:25.450] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:38:25.481] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:38:25.482] [INFO] cheese - batch complete in: 0.643 secs +[2018-02-13T08:38:25.746] [INFO] cheese - inserting 1000 documents. first: Cliff 'Em All and last: River Gunboat +[2018-02-13T08:38:25.775] [INFO] cheese - inserting 1000 documents. first: Alfred David McAlpine and last: Dono y 2 +[2018-02-13T08:38:25.821] [INFO] cheese - inserting 1000 documents. first: TV5 (TV Network) and last: Sir Robert Napier, 2nd Baronet +[2018-02-13T08:38:25.838] [INFO] cheese - inserting 1000 documents. first: Cholotis isotacta and last: File:Tower of Love Today.jpg +[2018-02-13T08:38:25.868] [INFO] cheese - batch complete in: 0.925 secs +[2018-02-13T08:38:25.876] [INFO] cheese - batch complete in: 1.295 secs +[2018-02-13T08:38:25.917] [INFO] cheese - batch complete in: 0.842 secs +[2018-02-13T08:38:25.974] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:38:26.006] [INFO] cheese - inserting 1000 documents. first: Ljubljana Matica Alpine Club and last: Kevin Souter +[2018-02-13T08:38:26.114] [INFO] cheese - batch complete in: 0.835 secs +[2018-02-13T08:38:26.266] [INFO] cheese - inserting 1000 documents. first: Tubiporus frostii and last: Category:1991 in Cambodia +[2018-02-13T08:38:26.277] [INFO] cheese - inserting 1000 documents. first: File:Pinatasparty.gif and last: Catch a nigger by the toe +[2018-02-13T08:38:26.311] [INFO] cheese - inserting 1000 documents. first: Ministry of Petroleum and last: 2004–05 Vyshcha Liha +[2018-02-13T08:38:26.399] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:38:26.469] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:38:26.499] [INFO] cheese - batch complete in: 1.018 secs +[2018-02-13T08:38:26.542] [INFO] cheese - inserting 1000 documents. first: 2016 Advantage Cars Prague Open – Women's Singles and last: 2016–17 Rugby Europe International Championships +[2018-02-13T08:38:26.608] [INFO] cheese - inserting 1000 documents. first: Wheelchair racing at the 1984 Summer Olympics and last: Reşid Pasha +[2018-02-13T08:38:26.608] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:38:26.667] [INFO] cheese - inserting 1000 documents. first: Wolverhampton Wanderers F.C. season 1958–59 and last: St. Louis Board of Police Commissioners +[2018-02-13T08:38:26.710] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T08:38:26.757] [INFO] cheese - inserting 1000 documents. first: First Presbyterian Church (Sag Harbor, New York) and last: SAI KZ VII +[2018-02-13T08:38:26.903] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:38:26.936] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:38:27.052] [INFO] cheese - inserting 1000 documents. first: Chicago Film Critics Association and last: Model building code +[2018-02-13T08:38:27.144] [INFO] cheese - inserting 1000 documents. first: Balloon Array for RBSP Relativistic Electron Losses and last: Iku language +[2018-02-13T08:38:27.221] [INFO] cheese - batch complete in: 1.345 secs +[2018-02-13T08:38:27.319] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:38:27.412] [INFO] cheese - inserting 1000 documents. first: Audenarde and last: File:ElectrolinerCNSRRVSEng.jpg +[2018-02-13T08:38:27.464] [INFO] cheese - inserting 1000 documents. first: Reshid Pasha and last: Television Registrada +[2018-02-13T08:38:27.477] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T08:38:27.487] [INFO] cheese - inserting 1000 documents. first: Category:Music schools in Africa and last: Accession (DS9 episode) +[2018-02-13T08:38:27.536] [INFO] cheese - inserting 1000 documents. first: Category:2005 Christmas albums and last: Canoeing at the 2010 South American Games - Women's K-1 1000 metres +[2018-02-13T08:38:27.575] [INFO] cheese - inserting 1000 documents. first: Sackville Relay Station and last: Vasco Road (California) +[2018-02-13T08:38:27.600] [INFO] cheese - batch complete in: 0.89 secs +[2018-02-13T08:38:27.655] [INFO] cheese - batch complete in: 1.186 secs +[2018-02-13T08:38:27.705] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:38:27.721] [INFO] cheese - batch complete in: 1.112 secs +[2018-02-13T08:38:27.766] [INFO] cheese - inserting 1000 documents. first: London Buses route H19 and last: Mike Burgoyne +[2018-02-13T08:38:27.838] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:38:27.966] [INFO] cheese - inserting 1000 documents. first: Iku-Gora-Ankwa language and last: Tschongrad County +[2018-02-13T08:38:28.006] [INFO] cheese - inserting 1000 documents. first: Canoeing at the 2010 South American Games - Women's K-1 200 metres and last: IHS Global Insight +[2018-02-13T08:38:28.027] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:38:28.044] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T08:38:28.184] [INFO] cheese - inserting 1000 documents. first: Template:Country data Federation of Nigeria (Commonwealth realm) and last: Akshar Deri +[2018-02-13T08:38:28.190] [INFO] cheese - inserting 1000 documents. first: Muscle contraction and last: Wikipedia:Articles for deletion/Spanglew +[2018-02-13T08:38:28.229] [INFO] cheese - inserting 1000 documents. first: Septarian nodule and last: Template:OrgSynth +[2018-02-13T08:38:28.377] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:38:28.398] [INFO] cheese - inserting 1000 documents. first: What the World Needs Now: Stan Getz Plays Burt Bacharach and Hal David and last: Category:Argeș basin +[2018-02-13T08:38:28.409] [INFO] cheese - batch complete in: 0.754 secs +[2018-02-13T08:38:28.425] [INFO] cheese - inserting 1000 documents. first: King Arthur Carrousel and last: Wikipedia:Articles for deletion/RandumNess +[2018-02-13T08:38:28.482] [INFO] cheese - batch complete in: 1.261 secs +[2018-02-13T08:38:28.552] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:38:28.579] [INFO] cheese - inserting 1000 documents. first: Olepa and last: File:Love's Unfolding Dream.jpg +[2018-02-13T08:38:28.596] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:38:28.757] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:38:28.839] [INFO] cheese - inserting 1000 documents. first: Mini Hatch and last: File:GMAPINOYTV2012LOGO.jpg +[2018-02-13T08:38:28.851] [INFO] cheese - inserting 1000 documents. first: 1989 New South Wales Open - Women's Singles and last: Lü Wang +[2018-02-13T08:38:28.949] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:38:28.959] [INFO] cheese - batch complete in: 0.932 secs +[2018-02-13T08:38:29.100] [INFO] cheese - inserting 1000 documents. first: Tapasya (1976 film) and last: Abhyankar-moh theorem +[2018-02-13T08:38:29.120] [INFO] cheese - inserting 1000 documents. first: Nandasmo F.C. and last: John Taverner (clergyman) +[2018-02-13T08:38:29.145] [INFO] cheese - inserting 1000 documents. first: John Ivory Talbot and last: Jeon Mi-Gyeong +[2018-02-13T08:38:29.159] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:38:29.222] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:38:29.273] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:38:29.361] [INFO] cheese - inserting 1000 documents. first: Boyardee and last: Cadet Second Lieutenant +[2018-02-13T08:38:29.441] [INFO] cheese - inserting 1000 documents. first: La Mesilla and last: Toshiko Ueda +[2018-02-13T08:38:29.498] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:38:29.550] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:38:29.602] [INFO] cheese - inserting 1000 documents. first: Bakke and last: Palestine (region) +[2018-02-13T08:38:29.623] [INFO] cheese - inserting 1000 documents. first: Category:English football clubs 1928–29 season and last: Category:Video albums by genre +[2018-02-13T08:38:29.689] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/besttattoos.webs.com and last: Template:Togneme Userbox +[2018-02-13T08:38:29.744] [INFO] cheese - batch complete in: 1.262 secs +[2018-02-13T08:38:29.760] [INFO] cheese - inserting 1000 documents. first: Holy Family High School (Port Allen) and last: Eleventeen (album) +[2018-02-13T08:38:29.793] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:38:29.825] [INFO] cheese - batch complete in: 0.866 secs +[2018-02-13T08:38:29.882] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:38:29.944] [INFO] cheese - inserting 1000 documents. first: CAF Super Cup 2017 and last: José María Arroyo +[2018-02-13T08:38:30.114] [INFO] cheese - batch complete in: 0.891 secs +[2018-02-13T08:38:30.171] [INFO] cheese - inserting 1000 documents. first: Ectenessa decorata and last: Oscar (footballer born 1991) +[2018-02-13T08:38:30.300] [INFO] cheese - batch complete in: 1.027 secs +[2018-02-13T08:38:30.387] [INFO] cheese - inserting 1000 documents. first: Mooney 205 and last: Chapter nine institutions +[2018-02-13T08:38:30.406] [INFO] cheese - inserting 1000 documents. first: Template:Governors of Mississippi and last: Category:British television personalities +[2018-02-13T08:38:30.504] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:38:30.527] [INFO] cheese - batch complete in: 1.029 secs +[2018-02-13T08:38:30.559] [INFO] cheese - inserting 1000 documents. first: Template:Most Imposing Togneme Userbox and last: Nepal and Tibet Philatelic Study Circle +[2018-02-13T08:38:30.561] [INFO] cheese - inserting 1000 documents. first: Konjska Reka and last: Glacier Cream +[2018-02-13T08:38:30.638] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic dioceses in the Republic of the Congo and last: Empoli Football Club +[2018-02-13T08:38:30.651] [INFO] cheese - batch complete in: 0.857 secs +[2018-02-13T08:38:30.656] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:38:30.706] [INFO] cheese - batch complete in: 0.824 secs +[2018-02-13T08:38:30.752] [INFO] cheese - inserting 1000 documents. first: Category:1970s disasters and last: Patrick Ambron +[2018-02-13T08:38:30.846] [INFO] cheese - inserting 1000 documents. first: Panda Security and last: Weasel (disambiguation) +[2018-02-13T08:38:30.856] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:38:30.953] [INFO] cheese - inserting 1000 documents. first: Craig Reid (footballer born 1985) and last: Haven't Got Time for the Pain +[2018-02-13T08:38:30.955] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:38:31.060] [INFO] cheese - batch complete in: 0.76 secs +[2018-02-13T08:38:31.126] [INFO] cheese - inserting 1000 documents. first: NY-109 and last: Cow plop +[2018-02-13T08:38:31.132] [INFO] cheese - inserting 1000 documents. first: Big crash and last: File:Prince and Princess Bibesco Wedding, 1919.jpg +[2018-02-13T08:38:31.173] [INFO] cheese - inserting 1000 documents. first: Münchener Bach-Orchester and last: Jelly balls +[2018-02-13T08:38:31.178] [INFO] cheese - inserting 1000 documents. first: Chapter 9 institutions and last: Category:Manitoba Junior Hockey League seasons +[2018-02-13T08:38:31.179] [INFO] cheese - batch complete in: 0.472 secs +[2018-02-13T08:38:31.225] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:38:31.261] [INFO] cheese - inserting 1000 documents. first: File:Stockport County Warm Up vs Cambridge.jpg and last: Knud Morten Lange +[2018-02-13T08:38:31.280] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:38:31.289] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:38:31.346] [INFO] cheese - batch complete in: 0.69 secs +[2018-02-13T08:38:31.405] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Shotton Surface Mine and last: Wesam Malik +[2018-02-13T08:38:31.465] [INFO] cheese - batch complete in: 0.609 secs +[2018-02-13T08:38:31.620] [INFO] cheese - inserting 1000 documents. first: Edward Popham (d. 1772) and last: Chamdo Monastery +[2018-02-13T08:38:31.744] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:38:31.847] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Algeria articles and last: Oligancistrus +[2018-02-13T08:38:31.930] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:38:31.971] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese states and last: File:Amiga Defender of the Crown raid.png +[2018-02-13T08:38:32.015] [INFO] cheese - inserting 1000 documents. first: Owerri Imo Airport and last: Matarova +[2018-02-13T08:38:32.115] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Philadelphia Phillies/Recognized content and last: Kamikaze Taxi +[2018-02-13T08:38:32.117] [INFO] cheese - inserting 1000 documents. first: Doheny Eye Institute and last: File:Confused Feelings.jpg +[2018-02-13T08:38:32.162] [INFO] cheese - inserting 1000 documents. first: NOCTURNAL OPERA and last: American Stores Company +[2018-02-13T08:38:32.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:American Eagle/euNO and last: Chamaemeles +[2018-02-13T08:38:32.146] [INFO] cheese - batch complete in: 1.191 secs +[2018-02-13T08:38:32.185] [INFO] cheese - batch complete in: 0.905 secs +[2018-02-13T08:38:32.283] [INFO] cheese - batch complete in: 0.818 secs +[2018-02-13T08:38:32.320] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:38:32.346] [INFO] cheese - inserting 1000 documents. first: Stefan Witkowski and last: Eritrichium nanum +[2018-02-13T08:38:32.356] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:38:32.390] [INFO] cheese - batch complete in: 1.165 secs +[2018-02-13T08:38:32.450] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:38:32.689] [INFO] cheese - inserting 1000 documents. first: Template:Georgia Southern Eagles men's basketball coach navbox and last: A Time to Stand (DS9 episode) +[2018-02-13T08:38:32.771] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:38:32.996] [INFO] cheese - inserting 1000 documents. first: Ra Graharipu and last: Category:Finnish female swimmers +[2018-02-13T08:38:33.060] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:38:33.083] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/niz/munlist/lukoyanovsky and last: Southern California Lacrosse League +[2018-02-13T08:38:33.109] [INFO] cheese - inserting 1000 documents. first: Jim Mair (musician) and last: Swiss referendum, 1884 +[2018-02-13T08:38:33.127] [INFO] cheese - inserting 1000 documents. first: Dzhafar-Beyli and last: L. M. Alcott +[2018-02-13T08:38:33.129] [INFO] cheese - inserting 1000 documents. first: Pittsfield Railroad Station and last: File:WALR logo.gif +[2018-02-13T08:38:33.134] [INFO] cheese - inserting 1000 documents. first: NetDevil and last: Müllerebe +[2018-02-13T08:38:33.148] [INFO] cheese - batch complete in: 0.698 secs +[2018-02-13T08:38:33.218] [INFO] cheese - batch complete in: 0.862 secs +[2018-02-13T08:38:33.234] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:38:33.252] [INFO] cheese - batch complete in: 1.067 secs +[2018-02-13T08:38:33.326] [INFO] cheese - batch complete in: 1.179 secs +[2018-02-13T08:38:33.559] [INFO] cheese - inserting 1000 documents. first: Jacob ben David Yom Tov and last: Football in Egypt +[2018-02-13T08:38:33.633] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:38:33.652] [INFO] cheese - inserting 1000 documents. first: Category:1993 establishments in Antarctica and last: 2016-17 FIS Freestyle Skiing World Cup +[2018-02-13T08:38:33.732] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:38:33.831] [INFO] cheese - inserting 1000 documents. first: Rennerod and last: Lloyd Anoaʻi +[2018-02-13T08:38:33.851] [INFO] cheese - inserting 1000 documents. first: M P W Bolton and last: File:Punjab medical college.png +[2018-02-13T08:38:33.873] [INFO] cheese - inserting 1000 documents. first: Pettorano and last: Maciej Kozłowski +[2018-02-13T08:38:33.912] [INFO] cheese - inserting 1000 documents. first: Pigott Building and last: Proof by abstract nonsense +[2018-02-13T08:38:33.943] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:38:33.984] [INFO] cheese - batch complete in: 1.594 secs +[2018-02-13T08:38:34.046] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:38:34.054] [INFO] cheese - inserting 1000 documents. first: Carl Günther and last: Erratic boulder +[2018-02-13T08:38:34.056] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:38:34.238] [INFO] cheese - batch complete in: 1.003 secs +[2018-02-13T08:38:34.479] [INFO] cheese - inserting 1000 documents. first: Template:2016-17 Belgian First Division A Europa League play-offs Group B table and last: Whalebone (album) +[2018-02-13T08:38:34.556] [INFO] cheese - batch complete in: 0.823 secs +[2018-02-13T08:38:34.585] [INFO] cheese - inserting 1000 documents. first: Azal Espanhol and last: 1954 British Grand Prix +[2018-02-13T08:38:34.724] [INFO] cheese - batch complete in: 1.397 secs +[2018-02-13T08:38:34.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Bratislava/archive1 and last: Jedediah K. Smith +[2018-02-13T08:38:34.825] [INFO] cheese - inserting 1000 documents. first: The British Chess Championship and last: Template:BBCDWnew/sandbox +[2018-02-13T08:38:34.844] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:38:34.858] [INFO] cheese - inserting 1000 documents. first: Category:1917 in Japanese sport and last: Gagik Siravyan +[2018-02-13T08:38:34.942] [INFO] cheese - inserting 1000 documents. first: Category:Lewisia and last: King's-mantle +[2018-02-13T08:38:34.944] [INFO] cheese - batch complete in: 1.001 secs +[2018-02-13T08:38:34.959] [INFO] cheese - batch complete in: 0.913 secs +[2018-02-13T08:38:34.961] [INFO] cheese - inserting 1000 documents. first: NAH and last: Lappi, Pakistan +[2018-02-13T08:38:35.011] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:38:35.054] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:38:35.178] [INFO] cheese - inserting 1000 documents. first: Kensington and Tacony RR and last: South Australian state election, 1997 +[2018-02-13T08:38:35.226] [INFO] cheese - inserting 1000 documents. first: Category:Anti-Zionism in Belgium and last: Gallbladder attacks +[2018-02-13T08:38:35.270] [INFO] cheese - batch complete in: 1.286 secs +[2018-02-13T08:38:35.331] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:38:35.398] [INFO] cheese - inserting 1000 documents. first: Category:Education in Azad Kashmir and last: Undine Boat Club +[2018-02-13T08:38:35.419] [INFO] cheese - inserting 1000 documents. first: Rich Waltz and last: Category:Suspected Wikipedia sockpuppets of Ellielancaster +[2018-02-13T08:38:35.488] [INFO] cheese - inserting 1000 documents. first: Template:Costa Rica squad 2002 CONCACAF Gold Cup and last: Brown Booby +[2018-02-13T08:38:35.479] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:38:35.513] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:38:35.597] [INFO] cheese - inserting 1000 documents. first: Category:Earls of Northesk and last: Paranerita sithnides +[2018-02-13T08:38:35.612] [INFO] cheese - batch complete in: 0.653 secs +[2018-02-13T08:38:35.727] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:38:35.744] [INFO] cheese - inserting 1000 documents. first: Aron Wilford and last: NINA +[2018-02-13T08:38:36.081] [INFO] cheese - batch complete in: 1.026 secs +[2018-02-13T08:38:36.143] [INFO] cheese - inserting 1000 documents. first: Pilar, Buenos Aires and last: Ethan Brown +[2018-02-13T08:38:36.190] [INFO] cheese - inserting 1000 documents. first: Here Comes The Kraken and last: F8 (classification) +[2018-02-13T08:38:36.248] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:38:36.359] [INFO] cheese - batch complete in: 1.028 secs +[2018-02-13T08:38:36.432] [INFO] cheese - inserting 1000 documents. first: Senatskaya Tower and last: Bill Henderson (UK politician) +[2018-02-13T08:38:36.459] [INFO] cheese - inserting 1000 documents. first: Hatunqucha (Junín) and last: 1998-99 Stockport County F.C. season +[2018-02-13T08:38:36.539] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:38:36.545] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:38:36.605] [INFO] cheese - inserting 1000 documents. first: Bratac and last: Wikipedia:Articles for deletion/Air banding +[2018-02-13T08:38:36.608] [INFO] cheese - inserting 1000 documents. first: Love from Paris and last: Justine (Amnesia: The Dark Descent) +[2018-02-13T08:38:36.703] [INFO] cheese - batch complete in: 1.19 secs +[2018-02-13T08:38:36.712] [INFO] cheese - batch complete in: 0.985 secs +[2018-02-13T08:38:36.895] [INFO] cheese - inserting 1000 documents. first: Similar awlking and last: Category:Fenerbahçe footballers +[2018-02-13T08:38:36.997] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:38:37.002] [INFO] cheese - inserting 1000 documents. first: File:DATEM Systems International.jpg and last: File:Noafteryousir.jpg +[2018-02-13T08:38:37.021] [INFO] cheese - inserting 1000 documents. first: Laser guided bombing and last: Otto Divosta +[2018-02-13T08:38:37.065] [INFO] cheese - inserting 1000 documents. first: Peter Lillback and last: MPT-76 +[2018-02-13T08:38:37.103] [INFO] cheese - batch complete in: 0.558 secs +[2018-02-13T08:38:37.123] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T08:38:37.143] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:38:37.338] [INFO] cheese - inserting 1000 documents. first: File:John Melville Kelly's oil on board painting 'Lei Makers on the Greensward', c. 1930.jpg and last: Ex-Muslims +[2018-02-13T08:38:37.412] [INFO] cheese - inserting 1000 documents. first: William Allen Trimble and last: Histiobranchus bruuni +[2018-02-13T08:38:37.460] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:38:37.545] [INFO] cheese - inserting 1000 documents. first: List of east west streets of Toronto and last: Wikipedia:Miscellany for deletion/Wikipedia:Penguin Path 306 +[2018-02-13T08:38:37.546] [INFO] cheese - batch complete in: 1.298 secs +[2018-02-13T08:38:37.657] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:38:37.806] [INFO] cheese - inserting 1000 documents. first: Draft:Matthew Derr and last: Zimbabwe People First +[2018-02-13T08:38:37.817] [INFO] cheese - inserting 1000 documents. first: File:Southern United FC logo.svg and last: Labdia orthoschema +[2018-02-13T08:38:37.860] [INFO] cheese - inserting 1000 documents. first: SMK Lembah Subang and last: Wikipedia:Articles for deletion/Terry Smith (news anchor) +[2018-02-13T08:38:37.869] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:38:37.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeffrey Kofman and last: Alex de Rakoff +[2018-02-13T08:38:37.895] [INFO] cheese - batch complete in: 0.792 secs +[2018-02-13T08:38:38.006] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:38:38.047] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:38:38.234] [INFO] cheese - inserting 1000 documents. first: Pavels Kolcovs and last: Photographing +[2018-02-13T08:38:38.311] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:38:38.376] [INFO] cheese - inserting 1000 documents. first: Miss Colorado USA and last: Inferior vesical artery +[2018-02-13T08:38:38.401] [INFO] cheese - inserting 1000 documents. first: Labdia orthritis and last: Stantondale F.C. +[2018-02-13T08:38:38.422] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/logsoku.com and last: YMCA UST +[2018-02-13T08:38:38.494] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:38:38.513] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T08:38:38.637] [INFO] cheese - batch complete in: 0.98 secs +[2018-02-13T08:38:38.640] [INFO] cheese - inserting 1000 documents. first: List of schools in the Roman Catholic Archdiocese of Washington and last: Category:Sex education in Europe +[2018-02-13T08:38:38.655] [INFO] cheese - inserting 1000 documents. first: Alexis de Redé and last: Gordon, Illinois +[2018-02-13T08:38:38.777] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:38:38.826] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:38:38.849] [INFO] cheese - inserting 1000 documents. first: File:Jonathan Banal playing for NCAA's Mapua Institute of Technology.jpg and last: Cloud-Chief +[2018-02-13T08:38:38.984] [INFO] cheese - batch complete in: 0.978 secs +[2018-02-13T08:38:39.043] [INFO] cheese - inserting 1000 documents. first: 1954 German Grand Prix and last: Institutions of the European Union +[2018-02-13T08:38:39.178] [INFO] cheese - inserting 1000 documents. first: Zhuang Jiajie and last: NC 134 +[2018-02-13T08:38:39.237] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:38:39.244] [INFO] cheese - inserting 1000 documents. first: Olympique Gymnaste Club Nice Côte d'Azur and last: Category:Bahamian films +[2018-02-13T08:38:39.252] [INFO] cheese - batch complete in: 4.527 secs +[2018-02-13T08:38:39.336] [INFO] cheese - inserting 1000 documents. first: Gary D. Cohn and last: Category:1966 in Antigua and Barbuda +[2018-02-13T08:38:39.346] [INFO] cheese - batch complete in: 1.035 secs +[2018-02-13T08:38:39.473] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:38:39.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Excitint2015 and last: Category:Geothermal energy in Africa +[2018-02-13T08:38:39.516] [INFO] cheese - inserting 1000 documents. first: Slash, Virginia and last: 2010 Manaus plane crash +[2018-02-13T08:38:39.592] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:38:39.606] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:38:39.642] [INFO] cheese - inserting 1000 documents. first: Karamu High School and last: Shortthorn Fangtooth +[2018-02-13T08:38:39.642] [INFO] cheese - inserting 1000 documents. first: Judy Higginbotham and last: CCDM J17305+5218C +[2018-02-13T08:38:39.735] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:38:39.735] [INFO] cheese - batch complete in: 1.222 secs +[2018-02-13T08:38:39.813] [INFO] cheese - inserting 1000 documents. first: Travis Scott (rapper) and last: File:Luneta philippine flag half mast.jpg +[2018-02-13T08:38:39.895] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:38:40.034] [INFO] cheese - inserting 1000 documents. first: Kumanovo, city of the culture and last: Jean-François Coux +[2018-02-13T08:38:40.039] [INFO] cheese - inserting 1000 documents. first: CoCo and last: Dmitriy Vavilov +[2018-02-13T08:38:40.052] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable software release/LimeSurvey and last: Wikipedia:WikiProject Spam/LinkReports/hoga-pr.de +[2018-02-13T08:38:40.146] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:38:40.150] [INFO] cheese - batch complete in: 0.804 secs +[2018-02-13T08:38:40.273] [INFO] cheese - inserting 1000 documents. first: Category:Geothermal energy in North America and last: Francesco Minorello +[2018-02-13T08:38:40.266] [INFO] cheese - batch complete in: 0.789 secs +[2018-02-13T08:38:40.389] [INFO] cheese - batch complete in: 0.782 secs +[2018-02-13T08:38:40.494] [INFO] cheese - inserting 1000 documents. first: BD+52 2065C and last: Ulrich Folkers +[2018-02-13T08:38:40.558] [INFO] cheese - inserting 1000 documents. first: V (Maroon 5 album) and last: Abdurahman Mohamud Turyare +[2018-02-13T08:38:40.575] [INFO] cheese - inserting 1000 documents. first: Kochi Refineries and last: Bunbuku chagama +[2018-02-13T08:38:40.631] [INFO] cheese - batch complete in: 0.896 secs +[2018-02-13T08:38:40.646] [INFO] cheese - inserting 1000 documents. first: 2002 European Grand Prix and last: Saint-Joseph (AOC) +[2018-02-13T08:38:40.671] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:38:40.690] [INFO] cheese - batch complete in: 0.795 secs +[2018-02-13T08:38:40.763] [INFO] cheese - inserting 1000 documents. first: Dmitry Vavilov and last: Vysoky, Murmansk Oblast +[2018-02-13T08:38:40.856] [INFO] cheese - batch complete in: 1.604 secs +[2018-02-13T08:38:40.912] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:38:40.984] [INFO] cheese - inserting 1000 documents. first: Sand, Punjab and last: Category:Use Indian English from August 2016 +[2018-02-13T08:38:40.988] [INFO] cheese - inserting 1000 documents. first: Southern Florida and last: William de Briouze +[2018-02-13T08:38:40.994] [INFO] cheese - inserting 1000 documents. first: Category:Women in Israel and last: Wikipedia:WikiProject Spam/LinkReports/pensamentos.org +[2018-02-13T08:38:41.058] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:38:41.065] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:38:41.096] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:38:41.266] [INFO] cheese - inserting 1000 documents. first: Ethanoligenens harbinense and last: El-Keib Cabinet +[2018-02-13T08:38:41.307] [INFO] cheese - batch complete in: 0.617 secs +[2018-02-13T08:38:41.320] [INFO] cheese - inserting 1000 documents. first: Clutton Brock and last: Stand guidance system +[2018-02-13T08:38:41.370] [INFO] cheese - inserting 1000 documents. first: The Real Thing (Kylie Minogue song) and last: Sherab Palden Beru +[2018-02-13T08:38:41.388] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:38:41.476] [INFO] cheese - batch complete in: 0.805 secs +[2018-02-13T08:38:41.488] [INFO] cheese - inserting 1000 documents. first: Cape Mohican oil spill and last: Khalden Training Camp +[2018-02-13T08:38:41.579] [INFO] cheese - inserting 1000 documents. first: Kalyan Jewellers and last: Category:2009 Regions Morgan Keegan Championships and the Cellular South Cup +[2018-02-13T08:38:41.582] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:38:41.595] [INFO] cheese - inserting 1000 documents. first: Behind the Altar and last: Royal Commission into Juvenile Detention in the Northern Territory +[2018-02-13T08:38:41.617] [INFO] cheese - inserting 1000 documents. first: Robert Zmelík and last: Hit by Pitch +[2018-02-13T08:38:41.667] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:38:41.672] [INFO] cheese - batch complete in: 0.614 secs +[2018-02-13T08:38:41.677] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:38:41.753] [INFO] cheese - inserting 1000 documents. first: UEFA Euro U21 and last: Rgb(255, 255, 0) +[2018-02-13T08:38:41.770] [INFO] cheese - inserting 1000 documents. first: Frangelico and last: Churchill River (Hudson Bay) +[2018-02-13T08:38:41.802] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T08:38:41.887] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:38:42.029] [INFO] cheese - inserting 1000 documents. first: Antics 3D and last: File:Strong Bad.png +[2018-02-13T08:38:42.048] [INFO] cheese - inserting 1000 documents. first: Mike Adams and last: Ma’aleh Adumim +[2018-02-13T08:38:42.091] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:38:42.112] [INFO] cheese - inserting 1000 documents. first: 2010 French Open – Men's Singles and last: File:Alan Country Boy.jpg +[2018-02-13T08:38:42.167] [INFO] cheese - inserting 1000 documents. first: Belasica Petrich and last: BBC Radio 1's Dance Anthems +[2018-02-13T08:38:42.337] [INFO] cheese - batch complete in: 0.861 secs +[2018-02-13T08:38:42.363] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:38:42.375] [INFO] cheese - batch complete in: 0.793 secs +[2018-02-13T08:38:42.427] [INFO] cheese - inserting 1000 documents. first: James Rewcastle and last: Wikipedia:WikiProject Spam/LinkReports/doowansgardensupply.com +[2018-02-13T08:38:42.439] [INFO] cheese - inserting 1000 documents. first: Sturlung Era and last: Ritual combat +[2018-02-13T08:38:42.587] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:38:42.604] [INFO] cheese - batch complete in: 0.937 secs +[2018-02-13T08:38:42.606] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Simon Fuller and last: National Petroleum Reserve in Alaska +[2018-02-13T08:38:42.778] [INFO] cheese - batch complete in: 0.976 secs +[2018-02-13T08:38:42.918] [INFO] cheese - inserting 1000 documents. first: File:NotNecessarilyAcoustic.jpg and last: Ward Inlet +[2018-02-13T08:38:43.014] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:38:43.084] [INFO] cheese - inserting 1000 documents. first: Samuel T. Herring and last: Gough, Thomas +[2018-02-13T08:38:43.086] [INFO] cheese - inserting 1000 documents. first: Time-memory trade-off and last: KFFC +[2018-02-13T08:38:43.121] [INFO] cheese - batch complete in: 0.758 secs +[2018-02-13T08:38:43.139] [INFO] cheese - inserting 1000 documents. first: Michael T. "Nuf Ced" McGreevy and last: A.C. Hardy +[2018-02-13T08:38:43.188] [INFO] cheese - inserting 1000 documents. first: CA1 and last: Piney Flats +[2018-02-13T08:38:43.195] [INFO] cheese - batch complete in: 1.308 secs +[2018-02-13T08:38:43.234] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/doowansgardensupply.com and last: Matthias Woerndle +[2018-02-13T08:38:43.239] [INFO] cheese - batch complete in: 0.864 secs +[2018-02-13T08:38:43.310] [INFO] cheese - inserting 1000 documents. first: Ponderosa Campground and last: Lockheed U-2R +[2018-02-13T08:38:43.336] [INFO] cheese - batch complete in: 0.998 secs +[2018-02-13T08:38:43.353] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:38:43.425] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:38:43.663] [INFO] cheese - inserting 1000 documents. first: Campher and last: Hunter T 72 +[2018-02-13T08:38:43.742] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:38:43.811] [INFO] cheese - inserting 1000 documents. first: Gould, Thomas and last: Irfaan +[2018-02-13T08:38:43.825] [INFO] cheese - inserting 1000 documents. first: Spring Hill, Pike County, Alabama and last: File:Petrus Christus - Portrait of a Young Woman - Google Art Project.jpg +[2018-02-13T08:38:43.828] [INFO] cheese - inserting 1000 documents. first: Pier 57 (Seattle) and last: File:Bay high crest panama city.jpg +[2018-02-13T08:38:43.866] [INFO] cheese - inserting 1000 documents. first: (6033) 1984 SQ4 and last: Category:Golden Arena award +[2018-02-13T08:38:43.888] [INFO] cheese - batch complete in: 0.535 secs +[2018-02-13T08:38:43.897] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:38:43.985] [INFO] cheese - batch complete in: 1.2 secs +[2018-02-13T08:38:44.080] [INFO] cheese - batch complete in: 0.841 secs +[2018-02-13T08:38:44.146] [INFO] cheese - inserting 1000 documents. first: Hattie Johnson and last: Alessandro Mendini +[2018-02-13T08:38:44.255] [INFO] cheese - inserting 1000 documents. first: You're Only Lonely and last: Samuel Balto +[2018-02-13T08:38:44.255] [INFO] cheese - batch complete in: 0.919 secs +[2018-02-13T08:38:44.341] [INFO] cheese - inserting 1000 documents. first: USS Merganser (AM-135) and last: Sam Hobbs +[2018-02-13T08:38:44.362] [INFO] cheese - inserting 1000 documents. first: List of railway stations in Pakistan and last: Wikipedia:Articles for deletion/Tony Grier +[2018-02-13T08:38:44.407] [INFO] cheese - batch complete in: 1.212 secs +[2018-02-13T08:38:44.481] [INFO] cheese - batch complete in: 0.739 secs +[2018-02-13T08:38:44.468] [INFO] cheese - batch complete in: 1.042 secs +[2018-02-13T08:38:44.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dbaj and last: Malanshof, Gauteng +[2018-02-13T08:38:44.715] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:38:44.719] [INFO] cheese - inserting 1000 documents. first: Pyroderces anthinopa and last: Category:Male actors from Edmonton +[2018-02-13T08:38:44.786] [INFO] cheese - batch complete in: 0.8 secs +[2018-02-13T08:38:44.890] [INFO] cheese - inserting 1000 documents. first: AMC-15 (satellite) and last: Jan Panacek +[2018-02-13T08:38:45.016] [INFO] cheese - batch complete in: 1.119 secs +[2018-02-13T08:38:45.147] [INFO] cheese - inserting 1000 documents. first: No, No, Nanoosh and last: Star trek tos +[2018-02-13T08:38:45.147] [INFO] cheese - inserting 1000 documents. first: Laides and last: Breathable liquid +[2018-02-13T08:38:45.156] [INFO] cheese - inserting 1000 documents. first: Joe Tait and last: Character Map (Windows) +[2018-02-13T08:38:45.209] [INFO] cheese - inserting 1000 documents. first: Category:Croatian film awards and last: South Central Rain +[2018-02-13T08:38:45.232] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:38:45.245] [INFO] cheese - batch complete in: 0.777 secs +[2018-02-13T08:38:45.288] [INFO] cheese - batch complete in: 1.033 secs +[2018-02-13T08:38:45.377] [INFO] cheese - inserting 1000 documents. first: List of U.S. Highways in Washington, D.C. and last: Dr. Dharamvir Dhillon +[2018-02-13T08:38:45.392] [INFO] cheese - batch complete in: 1.311 secs +[2018-02-13T08:38:45.474] [INFO] cheese - inserting 1000 documents. first: Maroeladal, Gauteng and last: Category:Populated places in East Kazakhstan Region +[2018-02-13T08:38:45.546] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:38:45.590] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:38:45.608] [INFO] cheese - inserting 1000 documents. first: Black Bindweed and last: Norma McCormick +[2018-02-13T08:38:45.698] [INFO] cheese - batch complete in: 1.291 secs +[2018-02-13T08:38:45.771] [INFO] cheese - inserting 1000 documents. first: Neohebestola vitticollis and last: Jinshi Township +[2018-02-13T08:38:45.849] [INFO] cheese - batch complete in: 0.833 secs +[2018-02-13T08:38:45.909] [INFO] cheese - inserting 1000 documents. first: Çəmənli and last: The Witcher: Enhanced Edition +[2018-02-13T08:38:45.997] [INFO] cheese - inserting 1000 documents. first: BU(n) and last: Black-throated trogon +[2018-02-13T08:38:45.999] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:38:46.008] [INFO] cheese - inserting 1000 documents. first: Agricultural Development Denmark Asia and last: Henry B. Sayler +[2018-02-13T08:38:46.012] [INFO] cheese - inserting 1000 documents. first: A Sorrow Beyond Dreams. A Life Story and last: Chhal (TV series) +[2018-02-13T08:38:46.053] [INFO] cheese - inserting 1000 documents. first: Providing material support to the al-Qaeda terrorist network and last: Halcyon River Diaries +[2018-02-13T08:38:46.067] [INFO] cheese - inserting 1000 documents. first: Port Talbot Steel works and last: Wikipedia:Articles for deletion/Speed alliance +[2018-02-13T08:38:46.091] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:38:46.095] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T08:38:46.102] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:38:46.162] [INFO] cheese - batch complete in: 0.616 secs +[2018-02-13T08:38:46.186] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:38:46.297] [INFO] cheese - inserting 1000 documents. first: Deweese (surname) and last: Holly-leaf grevillea +[2018-02-13T08:38:46.341] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T08:38:46.461] [INFO] cheese - inserting 1000 documents. first: Stoel Rives and last: Project West Wind +[2018-02-13T08:38:46.678] [INFO] cheese - inserting 1000 documents. first: Vancouver 86ers and last: File:AbaBayefsky.png +[2018-02-13T08:38:46.737] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:38:46.865] [INFO] cheese - inserting 1000 documents. first: File:Etna (Disgaea).png and last: Anti-bacterial medicine +[2018-02-13T08:38:46.868] [INFO] cheese - inserting 1000 documents. first: Quill Corp. v. North Dakota and last: Ros Hill +[2018-02-13T08:38:46.904] [INFO] cheese - batch complete in: 1.205 secs +[2018-02-13T08:38:46.921] [INFO] cheese - inserting 1000 documents. first: State Route 141 (California) and last: File:Multicolorbands.jpg +[2018-02-13T08:38:46.924] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Madhya Pradesh articles of Mid-importance and last: Sebastiano Girelli +[2018-02-13T08:38:46.958] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:38:47.032] [INFO] cheese - batch complete in: 0.94 secs +[2018-02-13T08:38:47.056] [INFO] cheese - inserting 1000 documents. first: Hidayat Ullah and last: Vincent (given name) +[2018-02-13T08:38:47.133] [INFO] cheese - batch complete in: 1.038 secs +[2018-02-13T08:38:47.133] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T08:38:47.166] [INFO] cheese - inserting 1000 documents. first: Me 'N Rock 'N Roll Are Here To Stay and last: Antonio Ramon Horta +[2018-02-13T08:38:47.181] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:38:47.294] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T08:38:47.637] [INFO] cheese - inserting 1000 documents. first: Category:Butler Bulldogs football navigational boxes and last: Africa Movie Academy Award for Best Actor in a Supporting Role +[2018-02-13T08:38:47.677] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:38:47.725] [INFO] cheese - inserting 1000 documents. first: Tini Stoessel and last: File:World Billiards Logo.jpg +[2018-02-13T08:38:47.782] [INFO] cheese - inserting 1000 documents. first: Charles G. Bennett and last: Diamond Consulting +[2018-02-13T08:38:47.783] [INFO] cheese - inserting 1000 documents. first: Olympic Aviation Flight 545 and last: James Tunstall +[2018-02-13T08:38:47.793] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:38:47.852] [INFO] cheese - inserting 1000 documents. first: Huang Lee and last: WHKT (AM) +[2018-02-13T08:38:47.862] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:38:47.875] [INFO] cheese - inserting 1000 documents. first: Helobiae and last: Na Sgiathan +[2018-02-13T08:38:47.880] [INFO] cheese - batch complete in: 0.847 secs +[2018-02-13T08:38:47.910] [INFO] cheese - inserting 1000 documents. first: Category:Recipients of the Order of Merit of the Federal Republic of Germany and last: Evgeniy Yerastov +[2018-02-13T08:38:47.941] [INFO] cheese - batch complete in: 1.204 secs +[2018-02-13T08:38:47.978] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:38:48.018] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:38:48.145] [INFO] cheese - inserting 1000 documents. first: Corbett-Terwilliger-Lair Hil and last: Template:Did you know nominations/Yasss Bish +[2018-02-13T08:38:48.170] [INFO] cheese - inserting 1000 documents. first: Lost (television drama) and last: Dune: House Atreides +[2018-02-13T08:38:48.192] [INFO] cheese - batch complete in: 0.515 secs +[2018-02-13T08:38:48.319] [INFO] cheese - batch complete in: 1.415 secs +[2018-02-13T08:38:48.402] [INFO] cheese - inserting 1000 documents. first: Grange City, Washington and last: Category:Three-volume novels +[2018-02-13T08:38:48.418] [INFO] cheese - inserting 1000 documents. first: Dineor language and last: First International Tramways and Light Railways Exhibition +[2018-02-13T08:38:48.468] [INFO] cheese - batch complete in: 0.675 secs +[2018-02-13T08:38:48.489] [INFO] cheese - inserting 1000 documents. first: Francis of Girolama and last: Template:Catholic Schools in Laredo +[2018-02-13T08:38:48.546] [INFO] cheese - inserting 1000 documents. first: Fadi Hammadeh and last: WNUW-FM +[2018-02-13T08:38:48.568] [INFO] cheese - batch complete in: 0.705 secs +[2018-02-13T08:38:48.600] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:38:48.694] [INFO] cheese - inserting 1000 documents. first: Neris river and last: Pink floyd live +[2018-02-13T08:38:48.670] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T08:38:48.793] [INFO] cheese - inserting 1000 documents. first: Anthropological Survey of India and last: Gagince +[2018-02-13T08:38:48.839] [INFO] cheese - inserting 1000 documents. first: Omri Elmakyes and last: Paratheta astigmatica +[2018-02-13T08:38:48.943] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:38:48.980] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:38:49.022] [INFO] cheese - batch complete in: 1.002 secs +[2018-02-13T08:38:49.205] [INFO] cheese - inserting 1000 documents. first: 7-deaza-2’-C-methyladenosine and last: Adesmus divus +[2018-02-13T08:38:49.259] [INFO] cheese - batch complete in: 0.791 secs +[2018-02-13T08:38:49.334] [INFO] cheese - inserting 1000 documents. first: La Trinitaria, Mexico and last: Generalization in ethics +[2018-02-13T08:38:49.417] [INFO] cheese - batch complete in: 0.848 secs +[2018-02-13T08:38:49.490] [INFO] cheese - inserting 1000 documents. first: State of Origin 2005 and last: National Weather Service Forecast Office +[2018-02-13T08:38:49.539] [INFO] cheese - inserting 1000 documents. first: Xenopoulo and last: Wikipedia:Articles for deletion/Top Hat Willy +[2018-02-13T08:38:49.600] [INFO] cheese - inserting 1000 documents. first: Kshitij School (Nepal) and last: List of reflexes (alphabetical) +[2018-02-13T08:38:49.613] [INFO] cheese - batch complete in: 1.013 secs +[2018-02-13T08:38:49.624] [INFO] cheese - inserting 1000 documents. first: Golema Njiva and last: Cerithidea anticipata +[2018-02-13T08:38:49.688] [INFO] cheese - inserting 1000 documents. first: File:Russiancolours.jpg and last: GM Tech IV engine +[2018-02-13T08:38:49.702] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:38:49.732] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:38:49.771] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:38:49.873] [INFO] cheese - batch complete in: 1.554 secs +[2018-02-13T08:38:49.882] [INFO] cheese - inserting 1000 documents. first: Smush and last: Tatiana of Rome +[2018-02-13T08:38:49.969] [INFO] cheese - inserting 1000 documents. first: Category:Handball in Gabon and last: 2003–04 England Hockey League season +[2018-02-13T08:38:50.031] [INFO] cheese - batch complete in: 1.088 secs +[2018-02-13T08:38:50.016] [INFO] cheese - batch complete in: 0.757 secs +[2018-02-13T08:38:50.190] [INFO] cheese - inserting 1000 documents. first: John McLean (footballer) and last: Elena D'Angri +[2018-02-13T08:38:50.297] [INFO] cheese - inserting 1000 documents. first: Category:Predecessors of the Great Northern Railway (U.S.) and last: Category:Railway accidents in Switzerland +[2018-02-13T08:38:50.311] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:38:50.412] [INFO] cheese - inserting 1000 documents. first: Moses T. Stevens and last: Wayamba university +[2018-02-13T08:38:50.428] [INFO] cheese - batch complete in: 0.726 secs +[2018-02-13T08:38:50.496] [INFO] cheese - inserting 1000 documents. first: Evans & Novak and last: Guam League 2006 +[2018-02-13T08:38:50.542] [INFO] cheese - batch complete in: 0.929 secs +[2018-02-13T08:38:50.642] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:38:50.807] [INFO] cheese - inserting 1000 documents. first: Category:Sport in the Cayman Islands and last: John Breckinridge +[2018-02-13T08:38:50.905] [INFO] cheese - inserting 1000 documents. first: Apeba barauna and last: Kamalpur, Bhulath +[2018-02-13T08:38:50.912] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:38:50.968] [INFO] cheese - inserting 1000 documents. first: Sydney Simpson and last: St Peter, Cheapside +[2018-02-13T08:38:50.977] [INFO] cheese - inserting 1000 documents. first: Paradoxurus montanus and last: Category:2014 in Martinique +[2018-02-13T08:38:51.003] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:38:51.081] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:38:51.084] [INFO] cheese - batch complete in: 1.352 secs +[2018-02-13T08:38:51.093] [INFO] cheese - inserting 1000 documents. first: Instructions of Shuruppak and last: Ruzbe +[2018-02-13T08:38:51.146] [INFO] cheese - inserting 1000 documents. first: Category:Saudi Arabian football biography stubs and last: Inverness burghs constituency +[2018-02-13T08:38:51.201] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:38:51.202] [INFO] cheese - inserting 1000 documents. first: Lower Silesian-Mark railway and last: Kosikhinsky +[2018-02-13T08:38:51.241] [INFO] cheese - batch complete in: 0.696 secs +[2018-02-13T08:38:51.335] [INFO] cheese - batch complete in: 0.693 secs +[2018-02-13T08:38:51.520] [INFO] cheese - inserting 1000 documents. first: 1887 Bloody Sunday and last: Category:Women's sport in Peru +[2018-02-13T08:38:51.557] [INFO] cheese - inserting 1000 documents. first: HC Spartak Moscow and last: Ottawa/Rockcliffe Water Aerodrome +[2018-02-13T08:38:51.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ryn Goblin and last: Arthur Farnsworth +[2018-02-13T08:38:51.595] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:38:51.628] [INFO] cheese - inserting 1000 documents. first: Spitfire (Porter Robinson album) and last: Category:Kenyan expatriates in Saudi Arabia +[2018-02-13T08:38:51.673] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:38:51.727] [INFO] cheese - inserting 1000 documents. first: KP Pietersen and last: Paratio language +[2018-02-13T08:38:51.761] [INFO] cheese - inserting 1000 documents. first: Education in Odisha and last: 1948 Washington Senators season +[2018-02-13T08:38:51.771] [INFO] cheese - inserting 1000 documents. first: Rozbe and last: FM 97.5 +[2018-02-13T08:38:51.776] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:38:51.764] [INFO] cheese - batch complete in: 1.891 secs +[2018-02-13T08:38:51.950] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:38:51.959] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:38:51.976] [INFO] cheese - inserting 1000 documents. first: Kosikhinskiy and last: Juan Anacleto Araneta +[2018-02-13T08:38:51.977] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:38:52.084] [INFO] cheese - batch complete in: 0.749 secs +[2018-02-13T08:38:52.372] [INFO] cheese - inserting 1000 documents. first: FM 97.7 and last: The Playhouse to Be Let +[2018-02-13T08:38:52.417] [INFO] cheese - inserting 1000 documents. first: Category:Opinion polling for elections in the Czech Republic and last: Bilochun +[2018-02-13T08:38:52.442] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T08:38:52.513] [INFO] cheese - inserting 1000 documents. first: CTR7 and last: K.W. Lee +[2018-02-13T08:38:52.515] [INFO] cheese - batch complete in: 0.92 secs +[2018-02-13T08:38:52.562] [INFO] cheese - inserting 1000 documents. first: Paratió language and last: Madan Mohan Jiu Temple +[2018-02-13T08:38:52.640] [INFO] cheese - inserting 1000 documents. first: Pahurat and last: Alejandro Cao de Benos de Les y Perez +[2018-02-13T08:38:52.646] [INFO] cheese - inserting 1000 documents. first: Ahl al-Kahf and last: Jeebropilly +[2018-02-13T08:38:52.660] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:38:52.671] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:38:52.770] [INFO] cheese - batch complete in: 0.686 secs +[2018-02-13T08:38:52.772] [INFO] cheese - batch complete in: 0.813 secs +[2018-02-13T08:38:52.842] [INFO] cheese - inserting 1000 documents. first: Transapical Transcatheter Mitral Valve Implantation of the Tiara Bio-prosthesis and last: Jake Thomas (Canadian football) +[2018-02-13T08:38:52.863] [INFO] cheese - inserting 1000 documents. first: Egil Skallagrimsson and last: Disfiguration +[2018-02-13T08:38:52.940] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:38:52.963] [INFO] cheese - batch complete in: 1.199 secs +[2018-02-13T08:38:53.031] [INFO] cheese - inserting 1000 documents. first: Disaster learning and last: Tody-tyrants +[2018-02-13T08:38:53.130] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T08:38:53.166] [INFO] cheese - inserting 1000 documents. first: Gaoqiao, Changsha County and last: Huidobro, Burgos +[2018-02-13T08:38:53.276] [INFO] cheese - inserting 1000 documents. first: Dastira imitatrix and last: Wikipedia:United States Education Program/Courses/Wiki-Project Management (Jonathan Obar)/Group 3 Sandbox/Bookshelf Sandbox/Advanced Section/Discussion Section/Other Section +[2018-02-13T08:38:53.352] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:38:53.413] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:38:53.540] [INFO] cheese - inserting 1000 documents. first: North Pickenham and last: Jesse Alto +[2018-02-13T08:38:53.571] [INFO] cheese - inserting 1000 documents. first: Category:Transportation infrastructure in Mexico and last: Bulling (agricultural) +[2018-02-13T08:38:53.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Strategic essentialism and last: Fishersgate railway station +[2018-02-13T08:38:53.612] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:38:53.628] [INFO] cheese - inserting 1000 documents. first: Jan Roth and last: Mary Woodall +[2018-02-13T08:38:53.685] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:38:53.737] [INFO] cheese - batch complete in: 1.077 secs +[2018-02-13T08:38:53.748] [INFO] cheese - inserting 1000 documents. first: The Bald Knobbers and last: File:Scottish Tartans Society (coat of arms).png +[2018-02-13T08:38:53.777] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:38:53.838] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:38:53.871] [INFO] cheese - inserting 1000 documents. first: Category:1356 deaths and last: Orochimaru +[2018-02-13T08:38:53.955] [INFO] cheese - batch complete in: 0.991 secs +[2018-02-13T08:38:53.965] [INFO] cheese - inserting 1000 documents. first: Orichevskiy and last: Exeter Tramway Company +[2018-02-13T08:38:53.966] [INFO] cheese - inserting 1000 documents. first: Mariano Florentino Cuéllar and last: Category:Chilean male rowers +[2018-02-13T08:38:54.057] [INFO] cheese - batch complete in: 0.644 secs +[2018-02-13T08:38:54.092] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:38:54.287] [INFO] cheese - inserting 1000 documents. first: Bear & Co. and last: Old Canberra Inn +[2018-02-13T08:38:54.294] [INFO] cheese - inserting 1000 documents. first: Here, My Love and last: Roger R. Ream +[2018-02-13T08:38:54.350] [INFO] cheese - inserting 1000 documents. first: File:Scottish Tartarns World Register (logo).png and last: List of number-one Billboard Top Latin Albums of 2005 +[2018-02-13T08:38:54.358] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:38:54.373] [INFO] cheese - inserting 1000 documents. first: Kasama Airport and last: BMW i3 REx +[2018-02-13T08:38:54.391] [INFO] cheese - batch complete in: 0.706 secs +[2018-02-13T08:38:54.439] [INFO] cheese - batch complete in: 0.601 secs +[2018-02-13T08:38:54.495] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:38:54.589] [INFO] cheese - inserting 1000 documents. first: Sikh feminism and last: Nikita Sergeevic Hruscev +[2018-02-13T08:38:54.691] [INFO] cheese - inserting 1000 documents. first: Interstate Route 205 (California) and last: N-base +[2018-02-13T08:38:54.761] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:38:54.876] [INFO] cheese - batch complete in: 1.139 secs +[2018-02-13T08:38:54.923] [INFO] cheese - inserting 1000 documents. first: Electoral Commission of Uganda and last: Category:Women's sports competitions in Brazil +[2018-02-13T08:38:55.084] [INFO] cheese - inserting 1000 documents. first: Rock Lee and last: File:Juliana Hatfield - Bed.jpg +[2018-02-13T08:38:55.102] [INFO] cheese - batch complete in: 1.01 secs +[2018-02-13T08:38:55.367] [INFO] cheese - batch complete in: 1.411 secs +[2018-02-13T08:38:55.412] [INFO] cheese - inserting 1000 documents. first: File:Threeview Shche-2.gif and last: Template:1944 NCAA Men's Basketball Consensus All-Americans +[2018-02-13T08:38:55.418] [INFO] cheese - inserting 1000 documents. first: File:Jack of Clubs (album).jpg and last: Moon Island (Hong Kong) +[2018-02-13T08:38:55.457] [INFO] cheese - inserting 1000 documents. first: New Delhi Ajmer Shatabdi Express and last: Wikipedia:WikiProject Spam/Local/bcud.unipune.ac.in +[2018-02-13T08:38:55.470] [INFO] cheese - inserting 1000 documents. first: Longford, Coventry and last: Samuel T. Worcester +[2018-02-13T08:38:55.492] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:38:55.499] [INFO] cheese - batch complete in: 1.108 secs +[2018-02-13T08:38:55.602] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:38:55.605] [INFO] cheese - batch complete in: 1.247 secs +[2018-02-13T08:38:55.650] [INFO] cheese - inserting 1000 documents. first: Nikita Sergeevic Xruscev and last: Template:Bad English +[2018-02-13T08:38:55.747] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:38:55.754] [INFO] cheese - inserting 1000 documents. first: N-Base and last: Allan Houser +[2018-02-13T08:38:55.786] [INFO] cheese - inserting 1000 documents. first: Ministry of Education Republic of China and last: Kim Song-guk (sport shooter) +[2018-02-13T08:38:55.843] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:38:55.864] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:38:56.134] [INFO] cheese - inserting 1000 documents. first: Ed Swearingen and last: List of airports in Libyan Arab Jamahiriya +[2018-02-13T08:38:56.139] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of the Duchy of Milan and last: Herman van Aldewereld +[2018-02-13T08:38:56.143] [INFO] cheese - inserting 1000 documents. first: Template:Michael Bolton and last: Ivan II Draskovic +[2018-02-13T08:38:56.191] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T08:38:56.208] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:38:56.212] [INFO] cheese - batch complete in: 0.72 secs +[2018-02-13T08:38:56.234] [INFO] cheese - inserting 1000 documents. first: Post Coïtum, Animal Triste and last: Donald McAllister +[2018-02-13T08:38:56.275] [INFO] cheese - inserting 1000 documents. first: Claire Nielson and last: Diplomatic body +[2018-02-13T08:38:56.362] [INFO] cheese - batch complete in: 0.759 secs +[2018-02-13T08:38:56.365] [INFO] cheese - inserting 1000 documents. first: List of works by Elliott Carter and last: Taft CJ +[2018-02-13T08:38:56.415] [INFO] cheese - inserting 1000 documents. first: Daybreak and last: Peek (crater) +[2018-02-13T08:38:56.431] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:38:56.490] [INFO] cheese - batch complete in: 0.647 secs +[2018-02-13T08:38:56.618] [INFO] cheese - batch complete in: 1.251 secs +[2018-02-13T08:38:56.649] [INFO] cheese - inserting 1000 documents. first: Swissmint and last: Chatt G. Wright +[2018-02-13T08:38:56.826] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:38:56.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mulgrave.com and last: Breathlyzer +[2018-02-13T08:38:57.004] [INFO] cheese - inserting 1000 documents. first: Adult video chat and last: Louise Berliawsky Nevelson +[2018-02-13T08:38:57.034] [INFO] cheese - inserting 1000 documents. first: Stylissa and last: Cone ant +[2018-02-13T08:38:57.042] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:38:57.046] [INFO] cheese - batch complete in: 0.838 secs +[2018-02-13T08:38:57.069] [INFO] cheese - inserting 1000 documents. first: European LC Championships 1995 - Men's 100m Freestyle and last: Category:Port cities in Australia +[2018-02-13T08:38:57.159] [INFO] cheese - batch complete in: 0.797 secs +[2018-02-13T08:38:57.196] [INFO] cheese - inserting 1000 documents. first: 1929 in Afghanistan and last: State Highway 16 +[2018-02-13T08:38:57.225] [INFO] cheese - batch complete in: 1.013 secs +[2018-02-13T08:38:57.275] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:38:57.328] [INFO] cheese - inserting 1000 documents. first: Category:Czech male discus throwers and last: Wikipedia:WikiProject Spam/LinkReports/pitbull-info-and-training.com +[2018-02-13T08:38:57.413] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:38:57.615] [INFO] cheese - inserting 1000 documents. first: Category:1839 establishments in Brazil and last: Orlin (disambiguation) +[2018-02-13T08:38:57.632] [INFO] cheese - inserting 1000 documents. first: Capcom Entertainment, Inc. and last: Time Assassins +[2018-02-13T08:38:57.645] [INFO] cheese - inserting 1000 documents. first: Berlin-Görlitz Railway Company and last: The Three Men of Melita Žganjer +[2018-02-13T08:38:57.680] [INFO] cheese - inserting 1000 documents. first: ERK (disambiguation) and last: Styx II +[2018-02-13T08:38:57.687] [INFO] cheese - batch complete in: 0.645 secs +[2018-02-13T08:38:57.734] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:38:57.737] [INFO] cheese - batch complete in: 0.691 secs +[2018-02-13T08:38:57.829] [INFO] cheese - inserting 1000 documents. first: Independent Paralympic Athletes at the 2016 Summer Paralympics and last: United States Post Office and Courthouse (Rome, Georgia) +[2018-02-13T08:38:57.843] [INFO] cheese - batch complete in: 1.224 secs +[2018-02-13T08:38:57.864] [INFO] cheese - inserting 1000 documents. first: Category:Secretaries of State of Michigan and last: The Mock Tempest +[2018-02-13T08:38:57.869] [INFO] cheese - inserting 1000 documents. first: Last Forever – Part 1 and last: Anatinomma bispinosum +[2018-02-13T08:38:57.910] [INFO] cheese - inserting 1000 documents. first: State Highway 17 and last: Scape goat +[2018-02-13T08:38:57.960] [INFO] cheese - batch complete in: 0.546 secs +[2018-02-13T08:38:57.962] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:38:58.033] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:38:58.147] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:38:58.367] [INFO] cheese - inserting 1000 documents. first: Pieter de Valk and last: Wanna go home, baby? +[2018-02-13T08:38:58.483] [INFO] cheese - batch complete in: 0.796 secs +[2018-02-13T08:38:58.557] [INFO] cheese - inserting 1000 documents. first: Let the Wookiee win and last: Jillion Potter +[2018-02-13T08:38:58.611] [INFO] cheese - batch complete in: 0.651 secs +[2018-02-13T08:38:58.644] [INFO] cheese - inserting 1000 documents. first: File:Wonder Boy III Monster Lair - level1.png and last: Lipjani +[2018-02-13T08:38:58.652] [INFO] cheese - inserting 1000 documents. first: Globe Road & Devonshire Street railway station and last: Cancer adspersus +[2018-02-13T08:38:58.672] [INFO] cheese - inserting 1000 documents. first: Baron Lytton and last: Category:Cass County, Indiana +[2018-02-13T08:38:58.685] [INFO] cheese - inserting 1000 documents. first: Kaiwera Downs Wind Farm and last: Category:Irish people of South African descent +[2018-02-13T08:38:58.714] [INFO] cheese - inserting 1000 documents. first: Category:NASCAR on the radio and last: Category:1739 in music +[2018-02-13T08:38:58.729] [INFO] cheese - batch complete in: 0.995 secs +[2018-02-13T08:38:58.731] [INFO] cheese - inserting 1000 documents. first: Heinz Welzel and last: Eulia tristriata +[2018-02-13T08:38:58.780] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:38:58.776] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T08:38:58.761] [INFO] cheese - batch complete in: 0.728 secs +[2018-02-13T08:38:58.842] [INFO] cheese - batch complete in: 0.695 secs +[2018-02-13T08:38:58.887] [INFO] cheese - batch complete in: 0.923 secs +[2018-02-13T08:38:59.152] [INFO] cheese - inserting 1000 documents. first: Holy Spirit (Islam) and last: Josh Ritchart +[2018-02-13T08:38:59.178] [INFO] cheese - inserting 1000 documents. first: Category:Clark County, Indiana and last: Category:Buffalo County, South Dakota +[2018-02-13T08:38:59.208] [INFO] cheese - inserting 1000 documents. first: List of archdeacons of Ashford and last: Falizan +[2018-02-13T08:38:59.210] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:38:59.221] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T08:38:59.304] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:38:59.370] [INFO] cheese - inserting 1000 documents. first: Category:Wards of the London Borough of Bexley and last: Category:Wards of Bradford +[2018-02-13T08:38:59.408] [INFO] cheese - inserting 1000 documents. first: Cancer convexus and last: Tapas Fleming +[2018-02-13T08:38:59.441] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:38:59.555] [INFO] cheese - inserting 1000 documents. first: Spies Like Us (disambiguation) and last: Wikipedia:Miscellany for deletion/User:C09notes +[2018-02-13T08:38:59.559] [INFO] cheese - inserting 1000 documents. first: 1958 Individual Speedway World Championship and last: L'Heritier +[2018-02-13T08:38:59.632] [INFO] cheese - batch complete in: 0.855 secs +[2018-02-13T08:38:59.606] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:38:59.732] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:38:59.865] [INFO] cheese - inserting 1000 documents. first: Category:USA-centric and last: Idrees Bashir +[2018-02-13T08:38:59.890] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1240 and last: Computer reservation system +[2018-02-13T08:38:59.948] [INFO] cheese - inserting 1000 documents. first: Draco cornutus and last: 2016 Challenger Banque Nationale de Gatineau - Women's Doubles +[2018-02-13T08:38:59.954] [INFO] cheese - batch complete in: 0.733 secs +[2018-02-13T08:38:59.994] [INFO] cheese - batch complete in: 1.265 secs +[2018-02-13T08:39:00.107] [INFO] cheese - batch complete in: 0.897 secs +[2018-02-13T08:39:00.209] [INFO] cheese - inserting 1000 documents. first: Category:Educational institutions disestablished in 1933 and last: Petros Mantalos +[2018-02-13T08:39:00.236] [INFO] cheese - inserting 1000 documents. first: AVCA and last: Fierce, Isakowitz and Blalock +[2018-02-13T08:39:00.314] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:39:00.327] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:39:00.381] [INFO] cheese - inserting 1000 documents. first: File:The Third Kiss.jpg and last: Wikipedia:Reference desk/Archives/Humanities/2014 May 22 +[2018-02-13T08:39:00.388] [INFO] cheese - inserting 1000 documents. first: List of accidents and incidents involving military aircraft (1950–1974) and last: Arthur St George +[2018-02-13T08:39:00.434] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics Aston Villa F.C. featured content and last: Gerd wedler +[2018-02-13T08:39:00.460] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:39:00.471] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:39:00.568] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:39:00.719] [INFO] cheese - inserting 1000 documents. first: Rodrigues Alves and last: The Ungrateful Heart +[2018-02-13T08:39:00.839] [INFO] cheese - batch complete in: 0.732 secs +[2018-02-13T08:39:00.898] [INFO] cheese - inserting 1000 documents. first: Runar and last: E-LSA +[2018-02-13T08:39:00.920] [INFO] cheese - inserting 1000 documents. first: Template:Al Arabi SC (Qatar) managers and last: John Gundersen Neergaard +[2018-02-13T08:39:00.951] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Statto-JTA Publishing Corporation and last: Category:Elevators +[2018-02-13T08:39:01.000] [INFO] cheese - inserting 1000 documents. first: File:Swindon town fc badge 1971.PNG and last: Category:Greek coats of arms +[2018-02-13T08:39:01.033] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T08:39:01.024] [INFO] cheese - batch complete in: 0.563 secs +[2018-02-13T08:39:01.086] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marrua and last: Wikipedia:Articles for deletion/Sabzi +[2018-02-13T08:39:01.097] [INFO] cheese - batch complete in: 1.142 secs +[2018-02-13T08:39:01.237] [INFO] cheese - batch complete in: 0.922 secs +[2018-02-13T08:39:01.286] [INFO] cheese - batch complete in: 0.815 secs +[2018-02-13T08:39:01.338] [INFO] cheese - inserting 1000 documents. first: Fire in the Breeze and last: File:National Association of Russian Explorers.png +[2018-02-13T08:39:01.355] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia Emerald access and last: Wikipedia:WikiProject Spam/LinkReports/encontrosdaimagem.com +[2018-02-13T08:39:01.500] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:39:01.607] [INFO] cheese - batch complete in: 0.768 secs +[2018-02-13T08:39:01.731] [INFO] cheese - inserting 1000 documents. first: Category:Scottish political theorists and last: Sarmad Tariq +[2018-02-13T08:39:01.884] [INFO] cheese - batch complete in: 1.557 secs +[2018-02-13T08:39:01.965] [INFO] cheese - inserting 1000 documents. first: Ptilochares melanoma and last: Abatino Faunistic Park +[2018-02-13T08:39:01.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/South-Central Eurasia and last: 2TM +[2018-02-13T08:39:02.123] [INFO] cheese - inserting 1000 documents. first: How to Behave and last: Portal:Energy/Selected picture/Layout +[2018-02-13T08:39:02.156] [INFO] cheese - batch complete in: 1.132 secs +[2018-02-13T08:39:02.206] [INFO] cheese - inserting 1000 documents. first: USAT Bowling Green Victory and last: Lietuvos TSR valstybinis dailės institutas +[2018-02-13T08:39:02.207] [INFO] cheese - batch complete in: 1.173 secs +[2018-02-13T08:39:02.270] [INFO] cheese - inserting 1000 documents. first: Category:Lower Sorbian language and last: Bicocca (quartiere di Milano) +[2018-02-13T08:39:02.296] [INFO] cheese - batch complete in: 1.059 secs +[2018-02-13T08:39:02.317] [INFO] cheese - inserting 1000 documents. first: High Tension and last: Ultima 7, pt. 2 +[2018-02-13T08:39:02.332] [INFO] cheese - batch complete in: 0.832 secs +[2018-02-13T08:39:02.416] [INFO] cheese - batch complete in: 1.13 secs +[2018-02-13T08:39:02.524] [INFO] cheese - batch complete in: 1.427 secs +[2018-02-13T08:39:02.611] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pier-uk.co.uk and last: 2017 TCR International Series +[2018-02-13T08:39:02.742] [INFO] cheese - batch complete in: 1.135 secs +[2018-02-13T08:39:02.815] [INFO] cheese - inserting 1000 documents. first: JJ (Skins character) and last: Gerard Braybrooke I +[2018-02-13T08:39:02.909] [INFO] cheese - batch complete in: 1.025 secs +[2018-02-13T08:39:03.060] [INFO] cheese - inserting 1000 documents. first: 2mrw and last: Category:Newspaper logos +[2018-02-13T08:39:03.208] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:39:03.212] [INFO] cheese - inserting 1000 documents. first: Lietuvos valstybinis dailės institutas and last: CaribVision +[2018-02-13T08:39:03.216] [INFO] cheese - inserting 1000 documents. first: Miss Teen USA 1990 and last: Category:Medieval armour +[2018-02-13T08:39:03.224] [INFO] cheese - inserting 1000 documents. first: 1913 London International Radiotelegraphic Convention and last: Black-throated Antshrike +[2018-02-13T08:39:03.296] [INFO] cheese - inserting 1000 documents. first: Bruzzano and last: 455th Flying Training Squadron +[2018-02-13T08:39:03.337] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:39:03.358] [INFO] cheese - batch complete in: 1.202 secs +[2018-02-13T08:39:03.360] [INFO] cheese - batch complete in: 1.064 secs +[2018-02-13T08:39:03.526] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:39:03.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:EXPLORE and last: Category:Screenplays by Martyn Burke +[2018-02-13T08:39:03.643] [INFO] cheese - batch complete in: 0.901 secs +[2018-02-13T08:39:03.772] [INFO] cheese - inserting 1000 documents. first: Ultima 7 Part Two and last: Eidi +[2018-02-13T08:39:03.909] [INFO] cheese - inserting 1000 documents. first: Brit nat and last: Juno Awards of 2013 +[2018-02-13T08:39:03.951] [INFO] cheese - batch complete in: 1.427 secs +[2018-02-13T08:39:04.070] [INFO] cheese - batch complete in: 1.161 secs +[2018-02-13T08:39:04.107] [INFO] cheese - inserting 1000 documents. first: Undulated Antshrike and last: Double-banded Greytail +[2018-02-13T08:39:04.141] [INFO] cheese - inserting 1000 documents. first: Vital Suit and last: Jissetsu +[2018-02-13T08:39:04.169] [INFO] cheese - batch complete in: 0.811 secs +[2018-02-13T08:39:04.212] [INFO] cheese - inserting 1000 documents. first: UUDL and last: Salvatore Bocchetti +[2018-02-13T08:39:04.220] [INFO] cheese - inserting 1000 documents. first: Francis X. Beytagh and last: Oavelgem +[2018-02-13T08:39:04.239] [INFO] cheese - batch complete in: 0.902 secs +[2018-02-13T08:39:04.245] [INFO] cheese - inserting 1000 documents. first: Educational Attainment and last: Wikipedia:Articles for deletion/Yolanda Soares +[2018-02-13T08:39:04.274] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:39:04.335] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:39:04.343] [INFO] cheese - batch complete in: 0.817 secs +[2018-02-13T08:39:04.393] [INFO] cheese - inserting 1000 documents. first: File:Dimitrij of Rostov.jpg and last: Xenolith (disambiguation) +[2018-02-13T08:39:04.490] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T08:39:04.610] [INFO] cheese - inserting 1000 documents. first: Equatorial Greytail and last: Maxi floppy +[2018-02-13T08:39:04.660] [INFO] cheese - batch complete in: 0.491 secs +[2018-02-13T08:39:04.798] [INFO] cheese - inserting 1000 documents. first: Eliezer Ben-Rafael and last: Category:1998 African Cup of Nations managers +[2018-02-13T08:39:04.820] [INFO] cheese - inserting 1000 documents. first: Getafe Air Force Base and last: Template:Cairo International Film Festival +[2018-02-13T08:39:04.855] [INFO] cheese - inserting 1000 documents. first: Pilot (Best Friends Forever) and last: Wikipedia:WikiProject Spam/LinkReports/aboutthebeatles.com +[2018-02-13T08:39:04.867] [INFO] cheese - batch complete in: 0.524 secs +[2018-02-13T08:39:04.939] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:39:04.958] [INFO] cheese - inserting 1000 documents. first: Kantō Jissetsu and last: Aesthetic object +[2018-02-13T08:39:05.001] [INFO] cheese - inserting 1000 documents. first: File:Ski race at Bánkút, Hungary (2006).jpg and last: Wikipedia:Reference desk/Archives/Mathematics/2007 June 7 +[2018-02-13T08:39:05.009] [INFO] cheese - batch complete in: 0.939 secs +[2018-02-13T08:39:05.042] [INFO] cheese - inserting 1000 documents. first: Saskatchewan general election, 1912 and last: David Euan Wallace +[2018-02-13T08:39:05.123] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:39:05.120] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:39:05.317] [INFO] cheese - batch complete in: 1.366 secs +[2018-02-13T08:39:05.337] [INFO] cheese - inserting 1000 documents. first: Maxi-disk and last: Beth Brooke +[2018-02-13T08:39:05.410] [INFO] cheese - inserting 1000 documents. first: Northwest Airlines Flight 2 and last: Xelhua +[2018-02-13T08:39:05.438] [INFO] cheese - inserting 1000 documents. first: JFK Fried Chicken and last: ISO 639:mus +[2018-02-13T08:39:05.468] [INFO] cheese - batch complete in: 0.808 secs +[2018-02-13T08:39:05.522] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:39:05.589] [INFO] cheese - batch complete in: 1.099 secs +[2018-02-13T08:39:05.612] [INFO] cheese - inserting 1000 documents. first: Draft:Double Mountain Brewery and last: Hades (EP) +[2018-02-13T08:39:05.679] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:39:05.839] [INFO] cheese - inserting 1000 documents. first: Navy of Cape Verde and last: Category:Brutalist architects +[2018-02-13T08:39:05.893] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:39:05.942] [INFO] cheese - inserting 1000 documents. first: NK Neretva and last: Dilip Buwa +[2018-02-13T08:39:05.970] [INFO] cheese - inserting 1000 documents. first: Category:2009–10 Libyan Cup and last: Wikipedia:WikiProject Spam/LinkReports/almogaz.com +[2018-02-13T08:39:06.000] [INFO] cheese - inserting 1000 documents. first: ISO 639:muu and last: ISO 639:squ +[2018-02-13T08:39:06.058] [INFO] cheese - batch complete in: 0.536 secs +[2018-02-13T08:39:06.115] [INFO] cheese - batch complete in: 1.106 secs +[2018-02-13T08:39:06.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/U.S. National Gold Bank Notes (1871-1883) and last: M. quadrilineatus +[2018-02-13T08:39:06.187] [INFO] cheese - batch complete in: 1.064 secs +[2018-02-13T08:39:06.272] [INFO] cheese - batch complete in: 0.803 secs +[2018-02-13T08:39:06.340] [INFO] cheese - inserting 1000 documents. first: Wake in Fright (novel) and last: Crossoona Rath +[2018-02-13T08:39:06.452] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:39:06.455] [INFO] cheese - inserting 1000 documents. first: Gandhi–King Award and last: Berzelius (crater) +[2018-02-13T08:39:06.503] [INFO] cheese - inserting 1000 documents. first: Turyancay and last: Wikipedia:Featured list candidates/List of Bryan Adams awards/archive1 +[2018-02-13T08:39:06.506] [INFO] cheese - inserting 1000 documents. first: James Murray (boxer) and last: UvA +[2018-02-13T08:39:06.560] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:39:06.605] [INFO] cheese - batch complete in: 1.016 secs +[2018-02-13T08:39:06.610] [INFO] cheese - batch complete in: 0.717 secs +[2018-02-13T08:39:06.752] [INFO] cheese - inserting 1000 documents. first: Savara language (Munda) and last: Trebečaj +[2018-02-13T08:39:06.810] [INFO] cheese - batch complete in: 0.752 secs +[2018-02-13T08:39:06.824] [INFO] cheese - inserting 1000 documents. first: Template:Ontario provincial election, 1937/Ottawa South and last: White-tailed Robin +[2018-02-13T08:39:06.871] [INFO] cheese - batch complete in: 0.597 secs +[2018-02-13T08:39:06.923] [INFO] cheese - inserting 1000 documents. first: File:Croatian Swimming Federation logo.jpg and last: Stephen Shaw (tennis) +[2018-02-13T08:39:06.940] [INFO] cheese - inserting 1000 documents. first: Category:South Korean female sprinters and last: Category:People from Uvarovo, Tambov Oblast +[2018-02-13T08:39:07.009] [INFO] cheese - inserting 1000 documents. first: Charles Natusch and last: Contractual terms +[2018-02-13T08:39:07.018] [INFO] cheese - batch complete in: 0.566 secs +[2018-02-13T08:39:07.024] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:39:07.154] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T08:39:07.396] [INFO] cheese - inserting 1000 documents. first: Anton Fritsch and last: Bikes, blues, and bbq +[2018-02-13T08:39:07.423] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Bryan Adams awards/archive2 and last: Patriot Guard +[2018-02-13T08:39:07.444] [INFO] cheese - batch complete in: 0.839 secs +[2018-02-13T08:39:07.521] [INFO] cheese - inserting 1000 documents. first: Sunda Robin and last: Golden-crowned Sparrow +[2018-02-13T08:39:07.637] [INFO] cheese - inserting 1000 documents. first: ISO 639:xml and last: Category:Populated places in Indonesia +[2018-02-13T08:39:07.802] [INFO] cheese - batch complete in: 0.992 secs +[2018-02-13T08:39:07.807] [INFO] cheese - batch complete in: 0.936 secs +[2018-02-13T08:39:07.852] [INFO] cheese - batch complete in: 1.238 secs +[2018-02-13T08:39:07.873] [INFO] cheese - inserting 1000 documents. first: File:GoT A Golden Crown.jpg and last: Aaron Davies (footballer) +[2018-02-13T08:39:08.006] [INFO] cheese - batch complete in: 0.988 secs +[2018-02-13T08:39:08.091] [INFO] cheese - inserting 1000 documents. first: DAT Politics and last: Sinfjötli +[2018-02-13T08:39:08.211] [INFO] cheese - inserting 1000 documents. first: Category:VfL Halle 1896 and last: Joguet +[2018-02-13T08:39:08.248] [INFO] cheese - batch complete in: 1.687 secs +[2018-02-13T08:39:08.379] [INFO] cheese - inserting 1000 documents. first: Martin-Baker MB 1 and last: Wikipedia:Articles for deletion/List of alpha emitting materials +[2018-02-13T08:39:08.381] [INFO] cheese - batch complete in: 1.357 secs +[2018-02-13T08:39:08.478] [INFO] cheese - inserting 1000 documents. first: White-throated Sparrow and last: Warczewiczella velata +[2018-02-13T08:39:08.489] [INFO] cheese - batch complete in: 1.335 secs +[2018-02-13T08:39:08.517] [INFO] cheese - inserting 1000 documents. first: Yadgar Muhammad Mirza and last: The Defendant +[2018-02-13T08:39:08.549] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:39:08.633] [INFO] cheese - inserting 1000 documents. first: Category:2001 fires and last: Category:Unknown-importance Los Angeles Dodgers articles +[2018-02-13T08:39:08.631] [INFO] cheese - batch complete in: 1.187 secs +[2018-02-13T08:39:08.687] [INFO] cheese - inserting 1000 documents. first: Aaron Davis (footballer) and last: Horticulture industry +[2018-02-13T08:39:08.739] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fort Mall and last: Category:Gambian Christians +[2018-02-13T08:39:08.742] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:39:08.790] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:39:08.877] [INFO] cheese - batch complete in: 1.075 secs +[2018-02-13T08:39:09.028] [INFO] cheese - inserting 1000 documents. first: Zygopetalum velatum and last: Loango Weaver +[2018-02-13T08:39:09.077] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand Christian monks and last: University of Trinity College +[2018-02-13T08:39:09.077] [INFO] cheese - batch complete in: 0.528 secs +[2018-02-13T08:39:09.205] [INFO] cheese - inserting 1000 documents. first: Shoujo Tsubaki and last: Alpine snowbell +[2018-02-13T08:39:09.260] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:39:09.374] [INFO] cheese - batch complete in: 0.885 secs +[2018-02-13T08:39:09.422] [INFO] cheese - inserting 1000 documents. first: Template:ZHCOTM and last: West Grey +[2018-02-13T08:39:09.430] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Los Angeles Dodgers articles and last: Philip Abraham +[2018-02-13T08:39:09.432] [INFO] cheese - inserting 1000 documents. first: SS Zachary Taylor and last: Gehrig38 +[2018-02-13T08:39:09.438] [INFO] cheese - inserting 1000 documents. first: Austro-Hungarian Air Service in World War I and last: Bahey eldin hassan +[2018-02-13T08:39:09.555] [INFO] cheese - batch complete in: 0.764 secs +[2018-02-13T08:39:09.613] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:39:09.621] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:39:09.633] [INFO] cheese - inserting 1000 documents. first: Lufira Masked Weaver and last: Lanceolated Warbler +[2018-02-13T08:39:09.643] [INFO] cheese - batch complete in: 1.394 secs +[2018-02-13T08:39:09.690] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:39:09.720] [INFO] cheese - inserting 1000 documents. first: BK-46 and last: Aleksandrovo, Haskovo Province +[2018-02-13T08:39:09.864] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:39:10.037] [INFO] cheese - inserting 1000 documents. first: List of treaties of naval collaboration of the Ottoman Empire and last: Jelena Yankovic +[2018-02-13T08:39:10.041] [INFO] cheese - inserting 1000 documents. first: Continental Stove Works and last: Skunk River Bridge +[2018-02-13T08:39:10.158] [INFO] cheese - batch complete in: 0.784 secs +[2018-02-13T08:39:10.164] [INFO] cheese - batch complete in: 0.904 secs +[2018-02-13T08:39:10.169] [INFO] cheese - inserting 1000 documents. first: 1939 Yale Bulldogs football team and last: Bench research +[2018-02-13T08:39:10.270] [INFO] cheese - inserting 1000 documents. first: Pallas's Grasshopper Warbler and last: O Chirombe +[2018-02-13T08:39:10.282] [INFO] cheese - batch complete in: 0.727 secs +[2018-02-13T08:39:10.368] [INFO] cheese - inserting 1000 documents. first: Category:Hapoel Tayibe F.C. players and last: Sarafxanli +[2018-02-13T08:39:10.397] [INFO] cheese - batch complete in: 0.707 secs +[2018-02-13T08:39:10.457] [INFO] cheese - batch complete in: 0.844 secs +[2018-02-13T08:39:10.620] [INFO] cheese - inserting 1000 documents. first: Bryagovo, Haskovo Province and last: The Hottest Show on Earth Tour +[2018-02-13T08:39:10.665] [INFO] cheese - inserting 1000 documents. first: File:Logo Il Messaggero.png and last: Pyhä-Häkki National Park +[2018-02-13T08:39:10.704] [INFO] cheese - batch complete in: 0.84 secs +[2018-02-13T08:39:10.761] [INFO] cheese - inserting 1000 documents. first: Mississippi Mills and last: Everquest II +[2018-02-13T08:39:10.791] [INFO] cheese - batch complete in: 1.17 secs +[2018-02-13T08:39:10.797] [INFO] cheese - inserting 1000 documents. first: Yelena Yankovic and last: Cercospora janseana +[2018-02-13T08:39:10.939] [INFO] cheese - batch complete in: 1.296 secs +[2018-02-13T08:39:11.009] [INFO] cheese - batch complete in: 0.851 secs +[2018-02-13T08:39:11.115] [INFO] cheese - inserting 1000 documents. first: Category:Chilean female hammer throwers and last: ECMA 94-2 +[2018-02-13T08:39:11.133] [INFO] cheese - inserting 1000 documents. first: Flame-throated Bulbul and last: Assam Laughingthrush +[2018-02-13T08:39:11.175] [INFO] cheese - inserting 1000 documents. first: Divine Legation of Moses and last: Category:1625 in art +[2018-02-13T08:39:11.200] [INFO] cheese - inserting 1000 documents. first: Sharafkhanly and last: Pole Mokotowskie +[2018-02-13T08:39:11.208] [INFO] cheese - batch complete in: 0.926 secs +[2018-02-13T08:39:11.246] [INFO] cheese - batch complete in: 0.849 secs +[2018-02-13T08:39:11.338] [INFO] cheese - batch complete in: 0.881 secs +[2018-02-13T08:39:11.375] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:39:11.733] [INFO] cheese - inserting 1000 documents. first: SeaQuest (disambiguation) and last: Timeline of Asian nations +[2018-02-13T08:39:11.772] [INFO] cheese - inserting 1000 documents. first: Septoria rosae and last: Amory Houghton, Jr. +[2018-02-13T08:39:11.824] [INFO] cheese - batch complete in: 1.12 secs +[2018-02-13T08:39:11.879] [INFO] cheese - inserting 1000 documents. first: Carl Critchlow and last: Second East–West Highway +[2018-02-13T08:39:11.919] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:39:12.009] [INFO] cheese - inserting 1000 documents. first: ECMA-94-2 and last: Doble Copacabana Grand Prix Fides +[2018-02-13T08:39:12.100] [INFO] cheese - inserting 1000 documents. first: Bhutan Laughingthrush and last: Category:Landforms of Jackson County, Florida +[2018-02-13T08:39:12.119] [INFO] cheese - batch complete in: 1.328 secs +[2018-02-13T08:39:12.208] [INFO] cheese - batch complete in: 1 secs +[2018-02-13T08:39:12.286] [INFO] cheese - inserting 1000 documents. first: Category:1626 in art and last: Category:Special schools in Surrey +[2018-02-13T08:39:12.293] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz SLR-Class and last: Yorkshire County Cricket +[2018-02-13T08:39:12.299] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:39:12.403] [INFO] cheese - inserting 1000 documents. first: CFRT and last: Colorado Dory +[2018-02-13T08:39:12.408] [INFO] cheese - batch complete in: 1.032 secs +[2018-02-13T08:39:12.435] [INFO] cheese - batch complete in: 1.097 secs +[2018-02-13T08:39:12.548] [INFO] cheese - batch complete in: 1.609 secs +[2018-02-13T08:39:12.579] [INFO] cheese - inserting 1000 documents. first: File:One Tree Hill - Season 1 - DVD.JPG and last: Bud Yorkin Productions +[2018-02-13T08:39:12.643] [INFO] cheese - inserting 1000 documents. first: Workspace Manager and last: Developments of Transformation optics +[2018-02-13T08:39:12.643] [INFO] cheese - batch complete in: 0.724 secs +[2018-02-13T08:39:12.735] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:39:12.791] [INFO] cheese - inserting 1000 documents. first: Derry Quinn and last: Ud-Din, Qamar +[2018-02-13T08:39:12.833] [INFO] cheese - batch complete in: 0.625 secs +[2018-02-13T08:39:12.972] [INFO] cheese - inserting 1000 documents. first: File:Korengal (film) poster 2014.jpg and last: UMS de Loum +[2018-02-13T08:39:13.002] [INFO] cheese - inserting 1000 documents. first: Wisconsin School of Law and last: List of islands of Vanuatu +[2018-02-13T08:39:13.009] [INFO] cheese - batch complete in: 0.71 secs +[2018-02-13T08:39:13.083] [INFO] cheese - inserting 1000 documents. first: Holger-Madsen and last: Jasmine Chen +[2018-02-13T08:39:13.096] [INFO] cheese - batch complete in: 0.977 secs +[2018-02-13T08:39:13.154] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:39:13.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/colorhexa.com and last: Belebu +[2018-02-13T08:39:13.367] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:39:13.401] [INFO] cheese - inserting 1000 documents. first: Asteromella brassicae and last: Charles H. Atherton +[2018-02-13T08:39:13.460] [INFO] cheese - inserting 1000 documents. first: Native American Venture Fund and last: Shantanu Maheshwari +[2018-02-13T08:39:13.521] [INFO] cheese - batch complete in: 0.877 secs +[2018-02-13T08:39:13.581] [INFO] cheese - inserting 1000 documents. first: White Knuckled Substance and last: Wikipedia:Articles for deletion/California bearing ratio +[2018-02-13T08:39:13.598] [INFO] cheese - inserting 1000 documents. first: Jan Almeloveen and last: File:Gorefest false.jpg +[2018-02-13T08:39:13.635] [INFO] cheese - batch complete in: 0.802 secs +[2018-02-13T08:39:13.641] [INFO] cheese - inserting 1000 documents. first: Luis Angel Firpo managers and last: Sumatran Green Pigeon +[2018-02-13T08:39:13.704] [INFO] cheese - batch complete in: 0.694 secs +[2018-02-13T08:39:13.709] [INFO] cheese - batch complete in: 0.974 secs +[2018-02-13T08:39:13.785] [INFO] cheese - batch complete in: 1.237 secs +[2018-02-13T08:39:14.074] [INFO] cheese - inserting 1000 documents. first: Category:Olympic fencers of Bohemia and last: File:Album The Camera And The Song frontcover.jpg +[2018-02-13T08:39:14.120] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Automatic restroom and last: Isleta del Sur +[2018-02-13T08:39:14.138] [INFO] cheese - inserting 1000 documents. first: Charles Faddis and last: Wikipedia:WikiProject Spam/COIReports/2007, Jun 11 +[2018-02-13T08:39:14.166] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:39:14.269] [INFO] cheese - batch complete in: 0.748 secs +[2018-02-13T08:39:14.305] [INFO] cheese - inserting 1000 documents. first: Candy Candy (song) and last: Monchy & Nathalia +[2018-02-13T08:39:14.317] [INFO] cheese - inserting 1000 documents. first: B. lutea and last: Yellow-browed Woodpecker +[2018-02-13T08:39:14.339] [INFO] cheese - batch complete in: 1.243 secs +[2018-02-13T08:39:14.438] [INFO] cheese - batch complete in: 0.734 secs +[2018-02-13T08:39:14.504] [INFO] cheese - batch complete in: 1.137 secs +[2018-02-13T08:39:14.579] [INFO] cheese - inserting 1000 documents. first: The Clinton Daily Journal and last: Category:Lists of populated places in Greece +[2018-02-13T08:39:14.702] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/8si.ru and last: Category:Iranian pole vaulters +[2018-02-13T08:39:14.714] [INFO] cheese - batch complete in: 1.005 secs +[2018-02-13T08:39:14.847] [INFO] cheese - batch complete in: 1.211 secs +[2018-02-13T08:39:14.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2007 June 9 and last: George Schwabe +[2018-02-13T08:39:14.985] [INFO] cheese - batch complete in: 0.716 secs +[2018-02-13T08:39:14.996] [INFO] cheese - inserting 1000 documents. first: White-winged Woodpecker and last: We gaan naar Rome +[2018-02-13T08:39:14.996] [INFO] cheese - inserting 1000 documents. first: WXCQ and last: Wikipedia:Articles for deletion/Akinobu Uraka +[2018-02-13T08:39:15.022] [INFO] cheese - inserting 1000 documents. first: Male language (Ethiopia) and last: Verhoshizhemskiy District +[2018-02-13T08:39:15.031] [INFO] cheese - inserting 1000 documents. first: Illapel and last: Parabiaugmented dodecahedron +[2018-02-13T08:39:15.095] [INFO] cheese - batch complete in: 0.657 secs +[2018-02-13T08:39:15.141] [INFO] cheese - batch complete in: 0.975 secs +[2018-02-13T08:39:15.159] [INFO] cheese - batch complete in: 0.655 secs +[2018-02-13T08:39:15.205] [INFO] cheese - batch complete in: 1.419 secs +[2018-02-13T08:39:15.228] [INFO] cheese - inserting 1000 documents. first: Adam Polakoff and last: Wikipedia:Requests for comment/Diyako, Heja helweda, Muhamed +[2018-02-13T08:39:15.312] [INFO] cheese - batch complete in: 0.973 secs +[2018-02-13T08:39:15.409] [INFO] cheese - inserting 1000 documents. first: Lorenzino da Bologna and last: Cushing reaction +[2018-02-13T08:39:15.482] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T08:39:15.512] [INFO] cheese - inserting 1000 documents. first: 1958 NCAA Swimming and Diving Championships and last: Gebechán +[2018-02-13T08:39:15.521] [INFO] cheese - inserting 1000 documents. first: Proper names derived from Draz- and last: File:F prendergast.jpg +[2018-02-13T08:39:15.619] [INFO] cheese - batch complete in: 0.772 secs +[2018-02-13T08:39:15.696] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:39:15.722] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of St. Francis County, Arkansas and last: Variable Dwarf Kingfisher +[2018-02-13T08:39:15.809] [INFO] cheese - inserting 1000 documents. first: Verhoshizhemski District and last: Stroud (district) +[2018-02-13T08:39:15.862] [INFO] cheese - batch complete in: 0.767 secs +[2018-02-13T08:39:15.912] [INFO] cheese - batch complete in: 0.753 secs +[2018-02-13T08:39:15.901] [INFO] cheese - inserting 1000 documents. first: Stationary phase (chemistry) and last: Jastrzębia, Świętokrzyskie Voivodeship +[2018-02-13T08:39:15.965] [INFO] cheese - inserting 1000 documents. first: Death of Oury Jalloh and last: Argiope keyserlingi +[2018-02-13T08:39:16.012] [INFO] cheese - batch complete in: 0.87 secs +[2018-02-13T08:39:16.091] [INFO] cheese - batch complete in: 0.779 secs +[2018-02-13T08:39:16.189] [INFO] cheese - inserting 1000 documents. first: Bronze-winged parrot and last: Jacob Yost +[2018-02-13T08:39:16.328] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:39:16.353] [INFO] cheese - inserting 1000 documents. first: Metabiaugmented dodecahedron and last: Richard Wylly Habersham +[2018-02-13T08:39:16.378] [INFO] cheese - inserting 1000 documents. first: Mountain Kingfisher and last: Punawithi BTS Station +[2018-02-13T08:39:16.425] [INFO] cheese - inserting 1000 documents. first: Building & Construction Trades Council v. Associated Builders & Contractors of Massachusetts/Rhode Island, Inc. and last: Category:Bolivian female long-distance runners +[2018-02-13T08:39:16.441] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T08:39:16.491] [INFO] cheese - batch complete in: 0.872 secs +[2018-02-13T08:39:16.502] [INFO] cheese - inserting 1000 documents. first: Template:Moldovan "A" Division seasons and last: BMMRS +[2018-02-13T08:39:16.578] [INFO] cheese - batch complete in: 1.373 secs +[2018-02-13T08:39:16.683] [INFO] cheese - batch complete in: 0.986 secs +[2018-02-13T08:39:16.789] [INFO] cheese - inserting 1000 documents. first: MD-8 and last: Portal:Indigenous peoples of North America/Things you can do +[2018-02-13T08:39:16.804] [INFO] cheese - inserting 1000 documents. first: Smainak and last: Wikipedia:Help desk/Archives/2012 March 25 +[2018-02-13T08:39:16.811] [INFO] cheese - inserting 1000 documents. first: Jacob Fassett and last: John Sherwin +[2018-02-13T08:39:16.838] [INFO] cheese - batch complete in: 0.51 secs +[2018-02-13T08:39:16.857] [INFO] cheese - batch complete in: 0.766 secs +[2018-02-13T08:39:16.902] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:39:16.999] [INFO] cheese - inserting 1000 documents. first: Category:Afghan shot putters and last: File:Domenic Marte.jpg +[2018-02-13T08:39:17.059] [INFO] cheese - batch complete in: 0.568 secs +[2018-02-13T08:39:17.135] [INFO] cheese - inserting 1000 documents. first: Pha Dhampa Sangye and last: Category:Historic house museums in Louisiana +[2018-02-13T08:39:17.210] [INFO] cheese - inserting 1000 documents. first: Paul Dougherty (1877-1947) and last: File:Pachygrapsus marmoratus 2009 G4.jpg +[2018-02-13T08:39:17.237] [INFO] cheese - batch complete in: 1.225 secs +[2018-02-13T08:39:17.272] [INFO] cheese - inserting 1000 documents. first: Bone Box and last: Lee Geyer +[2018-02-13T08:39:17.295] [INFO] cheese - batch complete in: 0.612 secs +[2018-02-13T08:39:17.317] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:39:17.415] [INFO] cheese - inserting 1000 documents. first: Category:South Carolina railroads and last: Trinity Washington University +[2018-02-13T08:39:17.442] [INFO] cheese - inserting 1000 documents. first: Punnawithi BTS station and last: Culama caliginosa +[2018-02-13T08:39:17.496] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/detroityes.com and last: Wikipedia:Main Page history/2012 March 28 +[2018-02-13T08:39:17.549] [INFO] cheese - batch complete in: 0.97 secs +[2018-02-13T08:39:17.551] [INFO] cheese - batch complete in: 1.11 secs +[2018-02-13T08:39:17.600] [INFO] cheese - inserting 1000 documents. first: Category:Bissau-Guinean male sprinters and last: Marcus Garvey: Look for me in the Whirlwind +[2018-02-13T08:39:17.632] [INFO] cheese - inserting 1000 documents. first: Category:Baptist schools and last: Colossus (Roller Coaster) +[2018-02-13T08:39:17.641] [INFO] cheese - batch complete in: 0.738 secs +[2018-02-13T08:39:17.665] [INFO] cheese - batch complete in: 0.605 secs +[2018-02-13T08:39:17.819] [INFO] cheese - batch complete in: 0.962 secs +[2018-02-13T08:39:17.911] [INFO] cheese - inserting 1000 documents. first: Lee W. Metcalf and last: Katsunuma Nobutomo +[2018-02-13T08:39:17.924] [INFO] cheese - inserting 1000 documents. first: Peacock Alley (room) and last: Me album +[2018-02-13T08:39:17.985] [INFO] cheese - batch complete in: 0.666 secs +[2018-02-13T08:39:18.083] [INFO] cheese - batch complete in: 0.846 secs +[2018-02-13T08:39:18.122] [INFO] cheese - inserting 1000 documents. first: Tancred (given name) and last: Mikhail Mikhailovich Roshchin +[2018-02-13T08:39:18.227] [INFO] cheese - batch complete in: 0.931 secs +[2018-02-13T08:39:18.423] [INFO] cheese - inserting 1000 documents. first: Albert II, Duke of Mecklenburg-Stargard and last: HEPCA +[2018-02-13T08:39:18.424] [INFO] cheese - inserting 1000 documents. first: Culama treicleiota and last: Kelly Garrett (actress) +[2018-02-13T08:39:18.455] [INFO] cheese - batch complete in: 0.812 secs +[2018-02-13T08:39:18.503] [INFO] cheese - inserting 1000 documents. first: Enhydriodon and last: Category:Cape Verdean male marathon runners +[2018-02-13T08:39:18.563] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:39:18.628] [INFO] cheese - inserting 1000 documents. first: File:Arms by andrew.jpg and last: List of World Embryo chapters +[2018-02-13T08:39:18.632] [INFO] cheese - batch complete in: 0.966 secs +[2018-02-13T08:39:18.719] [INFO] cheese - inserting 1000 documents. first: Christopher Acosta and last: Floorfillers +[2018-02-13T08:39:18.725] [INFO] cheese - inserting 1000 documents. first: Markham Stouffville Hospital and last: Mount Pleasant, County Durham +[2018-02-13T08:39:18.741] [INFO] cheese - batch complete in: 0.658 secs +[2018-02-13T08:39:18.777] [INFO] cheese - inserting 1000 documents. first: BarcoGraphics and last: File:ABC 7.jpg +[2018-02-13T08:39:18.790] [INFO] cheese - batch complete in: 0.971 secs +[2018-02-13T08:39:18.881] [INFO] cheese - batch complete in: 1.332 secs +[2018-02-13T08:39:18.895] [INFO] cheese - batch complete in: 0.91 secs +[2018-02-13T08:39:19.027] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota maps and last: Pinoy Pop Superstar The Finalists +[2018-02-13T08:39:19.032] [INFO] cheese - inserting 1000 documents. first: Eberhard Grün and last: Tubize 2179 +[2018-02-13T08:39:19.080] [INFO] cheese - batch complete in: 0.624 secs +[2018-02-13T08:39:19.081] [INFO] cheese - batch complete in: 0.854 secs +[2018-02-13T08:39:19.144] [INFO] cheese - inserting 1000 documents. first: Suzana Douglass and last: Metro-Goldwyn-Mayer, Inc. +[2018-02-13T08:39:19.190] [INFO] cheese - inserting 1000 documents. first: Acoustics (Minus the Bear EP) and last: Democratic Party of Texas +[2018-02-13T08:39:19.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wikipack Africa Content/Battle of Sio and last: File:IMI, Kritva'15.jpg +[2018-02-13T08:39:19.203] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:39:19.253] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T08:39:19.261] [INFO] cheese - batch complete in: 0.629 secs +[2018-02-13T08:39:19.342] [INFO] cheese - inserting 1000 documents. first: Samuel Taliaferro and last: Thomas F. Lewis +[2018-02-13T08:39:19.374] [INFO] cheese - batch complete in: 0.479 secs +[2018-02-13T08:39:19.424] [INFO] cheese - inserting 1000 documents. first: Seton Portage Historic Provincial Park and last: Lü Shao +[2018-02-13T08:39:19.493] [INFO] cheese - inserting 1000 documents. first: Category:Emirati airline chief executives and last: Wikipedia:WikiProject Spam/LinkReports/nap.st +[2018-02-13T08:39:19.577] [INFO] cheese - inserting 1000 documents. first: Buftea and last: Clemens non papa +[2018-02-13T08:39:19.560] [INFO] cheese - batch complete in: 0.77 secs +[2018-02-13T08:39:19.643] [INFO] cheese - inserting 1000 documents. first: Pigface Vs. The World and last: Sir William Brown, 1st Baronet, of Astrop +[2018-02-13T08:39:19.655] [INFO] cheese - batch complete in: 0.575 secs +[2018-02-13T08:39:19.666] [INFO] cheese - inserting 1000 documents. first: Category:Deaths from cancer in Thailand and last: Kaladyuz +[2018-02-13T08:39:19.619] [INFO] cheese - inserting 1000 documents. first: U.S. Army Japan Aviation Detachment Japan and last: Scarce dart +[2018-02-13T08:39:19.762] [INFO] cheese - inserting 1000 documents. first: Judith and Holofernes (disambiguation) and last: Tetraibidion sahlbergi +[2018-02-13T08:39:19.756] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T08:39:19.782] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:39:19.826] [INFO] cheese - batch complete in: 0.945 secs +[2018-02-13T08:39:19.838] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:39:19.904] [INFO] cheese - inserting 1000 documents. first: John Ballenden and last: Wikipedia:IANAL +[2018-02-13T08:39:19.922] [INFO] cheese - batch complete in: 0.719 secs +[2018-02-13T08:39:20.043] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:39:20.291] [INFO] cheese - inserting 1000 documents. first: Jacques Villeneuve, Sr. and last: File:Cups14.jpg +[2018-02-13T08:39:20.363] [INFO] cheese - inserting 1000 documents. first: 05-cv-784 and last: Maharaja Jagatjij Singh +[2018-02-13T08:39:20.419] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:39:20.529] [INFO] cheese - batch complete in: 0.773 secs +[2018-02-13T08:39:20.580] [INFO] cheese - inserting 1000 documents. first: Scarce Dart and last: Category:Vietnamese male middle-distance runners +[2018-02-13T08:39:20.608] [INFO] cheese - inserting 1000 documents. first: Grammatical cases and last: Estates of the Netherlands Antilles +[2018-02-13T08:39:20.610] [INFO] cheese - inserting 1000 documents. first: Twilight Records and last: Paul VI Audience Hall +[2018-02-13T08:39:20.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/chicksgrovequarry.co.uk and last: Kiss (Mai Kuraki song) +[2018-02-13T08:39:20.690] [INFO] cheese - batch complete in: 0.908 secs +[2018-02-13T08:39:20.728] [INFO] cheese - batch complete in: 0.685 secs +[2018-02-13T08:39:20.764] [INFO] cheese - batch complete in: 1.204 secs +[2018-02-13T08:39:20.801] [INFO] cheese - inserting 1000 documents. first: Andrew Fetterly Wilkes Krier and last: File:Saraswati Park.jpg +[2018-02-13T08:39:20.879] [INFO] cheese - batch complete in: 1.041 secs +[2018-02-13T08:39:21.008] [INFO] cheese - batch complete in: 1.086 secs +[2018-02-13T08:39:21.012] [INFO] cheese - inserting 1000 documents. first: Better Loosen Up and last: Wikipedia:Articles for deletion/Koenma +[2018-02-13T08:39:21.097] [INFO] cheese - inserting 1000 documents. first: File:Cups13.jpg and last: Mars science laboratory mission +[2018-02-13T08:39:21.129] [INFO] cheese - batch complete in: 1.302 secs +[2018-02-13T08:39:21.191] [INFO] cheese - batch complete in: 0.771 secs +[2018-02-13T08:39:21.234] [INFO] cheese - inserting 1000 documents. first: Brenda Duff Frazier and last: Sequential Walking +[2018-02-13T08:39:21.271] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:39:21.284] [INFO] cheese - inserting 1000 documents. first: Linear extension and last: Javier Mejías Leal +[2018-02-13T08:39:21.390] [INFO] cheese - batch complete in: 0.662 secs +[2018-02-13T08:39:21.544] [INFO] cheese - inserting 1000 documents. first: 2016 Summer Olympic Games and last: Autoroute 30 +[2018-02-13T08:39:21.592] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Reserve Defense Corps and last: Untermyer Fountain +[2018-02-13T08:39:21.631] [INFO] cheese - inserting 1000 documents. first: Hundred of Mongolata and last: Justice Myers +[2018-02-13T08:39:21.667] [INFO] cheese - inserting 1000 documents. first: Category:University of Peradeniya and last: Artemio "Vibora" Ricarte +[2018-02-13T08:39:21.670] [INFO] cheese - batch complete in: 0.906 secs +[2018-02-13T08:39:21.695] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:39:21.756] [INFO] cheese - batch complete in: 1.066 secs +[2018-02-13T08:39:21.839] [INFO] cheese - batch complete in: 0.917 secs +[2018-02-13T08:39:21.896] [INFO] cheese - inserting 1000 documents. first: Major productions of Swan Lake derived from its 1895 revival and last: Kalika, Kaski +[2018-02-13T08:39:21.916] [INFO] cheese - inserting 1000 documents. first: American anthrax attacks and last: Beech T-34C Turbo Mentor +[2018-02-13T08:39:22.059] [INFO] cheese - batch complete in: 0.788 secs +[2018-02-13T08:39:22.071] [INFO] cheese - batch complete in: 0.879 secs +[2018-02-13T08:39:22.140] [INFO] cheese - inserting 1000 documents. first: Better loosen up and last: Willie Hefner +[2018-02-13T08:39:22.178] [INFO] cheese - inserting 1000 documents. first: Category:Liberian folklore and last: Boot shot +[2018-02-13T08:39:22.270] [INFO] cheese - batch complete in: 0.88 secs +[2018-02-13T08:39:22.273] [INFO] cheese - batch complete in: 1.144 secs +[2018-02-13T08:39:22.377] [INFO] cheese - inserting 1000 documents. first: Paul Jones (footballer born 1953) and last: Vishtasp Jalali +[2018-02-13T08:39:22.436] [INFO] cheese - inserting 1000 documents. first: Andy Crawford (1960's footballer) and last: Gaulish languages +[2018-02-13T08:39:22.457] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:39:22.468] [INFO] cheese - inserting 1000 documents. first: Modified BSD licence and last: NPL (disambiguation) +[2018-02-13T08:39:22.474] [INFO] cheese - inserting 1000 documents. first: Artemio "El Vibora" Ricarte and last: Route 1 (Paraguay) +[2018-02-13T08:39:22.508] [INFO] cheese - batch complete in: 0.751 secs +[2018-02-13T08:39:22.540] [INFO] cheese - inserting 1000 documents. first: H. Pollard and last: Category:1974 establishments in Canada +[2018-02-13T08:39:22.552] [INFO] cheese - inserting 1000 documents. first: Pirebedil' and last: Sal Guarriello +[2018-02-13T08:39:22.552] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:39:22.600] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:39:22.641] [INFO] cheese - batch complete in: 0.581 secs +[2018-02-13T08:39:22.671] [INFO] cheese - batch complete in: 0.599 secs +[2018-02-13T08:39:22.840] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 6001-6500 and last: Edmonton-St. Albert +[2018-02-13T08:39:22.842] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 3428 (Texas) and last: Shayne McMenemy +[2018-02-13T08:39:22.859] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T08:39:22.909] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T08:39:23.051] [INFO] cheese - inserting 1000 documents. first: Junior Mance Special and last: NAVSTAR II-4 +[2018-02-13T08:39:23.123] [INFO] cheese - inserting 1000 documents. first: Theodore M. Brown and last: G. T. Popa +[2018-02-13T08:39:23.144] [INFO] cheese - inserting 1000 documents. first: FC Kremin Kremenchuk season 2005-06 and last: List of minor planets: 52001-53000 +[2018-02-13T08:39:23.162] [INFO] cheese - inserting 1000 documents. first: File:EastWindsorCTseal.png and last: Oraukwu, Anambra +[2018-02-13T08:39:23.173] [INFO] cheese - batch complete in: 0.665 secs +[2018-02-13T08:39:23.174] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T08:39:23.283] [INFO] cheese - inserting 1000 documents. first: Category:Art museums established in 1974 and last: Moose Factory, Ontario +[2018-02-13T08:39:23.373] [INFO] cheese - batch complete in: 0.731 secs +[2018-02-13T08:39:23.401] [INFO] cheese - batch complete in: 0.944 secs +[2018-02-13T08:39:23.512] [INFO] cheese - inserting 1000 documents. first: Willie G. Hefner and last: Magnolia macrophylla +[2018-02-13T08:39:23.560] [INFO] cheese - batch complete in: 0.888 secs +[2018-02-13T08:39:23.652] [INFO] cheese - inserting 1000 documents. first: Bonnie Clutter and last: Judith Burmeister +[2018-02-13T08:39:23.735] [INFO] cheese - batch complete in: 1.462 secs +[2018-02-13T08:39:23.814] [INFO] cheese - inserting 1000 documents. first: 1998 Swisscom Challenge - Doubles and last: Bermuda - United States relations +[2018-02-13T08:39:23.875] [INFO] cheese - batch complete in: 1.323 secs +[2018-02-13T08:39:23.878] [INFO] cheese - batch complete in: 0.704 secs +[2018-02-13T08:39:23.994] [INFO] cheese - inserting 1000 documents. first: John Smith (Disney) and last: Alberta Highway 770 +[2018-02-13T08:39:24.125] [INFO] cheese - batch complete in: 1.216 secs +[2018-02-13T08:39:24.220] [INFO] cheese - inserting 1000 documents. first: 1974-75 Portuguese Liga and last: 2008-09 Arab Champions League +[2018-02-13T08:39:24.248] [INFO] cheese - inserting 1000 documents. first: Jeona and last: Category:History of Vyborg +[2018-02-13T08:39:24.259] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T08:39:24.307] [INFO] cheese - inserting 1000 documents. first: Khalil Ahmad al-Saharanpuri and last: Western !Kung +[2018-02-13T08:39:24.324] [INFO] cheese - inserting 1000 documents. first: 2 51 honeycomb and last: Category:Canada political party histogram templates +[2018-02-13T08:39:24.372] [INFO] cheese - inserting 1000 documents. first: List of Melbourne Heart FC players and last: Kimsaqucha (disambiguation) +[2018-02-13T08:39:24.373] [INFO] cheese - batch complete in: 1.2 secs +[2018-02-13T08:39:24.404] [INFO] cheese - batch complete in: 1.031 secs +[2018-02-13T08:39:24.424] [INFO] cheese - batch complete in: 0.863 secs +[2018-02-13T08:39:24.508] [INFO] cheese - batch complete in: 1.107 secs +[2018-02-13T08:39:24.601] [INFO] cheese - inserting 1000 documents. first: Portal:Louisiana/Projects and last: Americana (film) +[2018-02-13T08:39:24.644] [INFO] cheese - batch complete in: 0.385 secs +[2018-02-13T08:39:24.806] [INFO] cheese - inserting 1000 documents. first: Morecambe Bay cockling disaster 2004 and last: Teletouch +[2018-02-13T08:39:24.838] [INFO] cheese - inserting 1000 documents. first: Zagurski and last: Lorestan province +[2018-02-13T08:39:24.917] [INFO] cheese - inserting 1000 documents. first: Punjabi music and last: Odd man out +[2018-02-13T08:39:24.930] [INFO] cheese - batch complete in: 1.054 secs +[2018-02-13T08:39:24.971] [INFO] cheese - inserting 1000 documents. first: Judo at the 2010 South American Games - Women's 78kg and last: Camaldine Abraw +[2018-02-13T08:39:24.979] [INFO] cheese - batch complete in: 0.853 secs +[2018-02-13T08:39:25.048] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T08:39:25.111] [INFO] cheese - batch complete in: 1.376 secs +[2018-02-13T08:39:25.167] [INFO] cheese - inserting 1000 documents. first: Grapevine trunk disease and last: Aberdare Urban District Council election, 1903 +[2018-02-13T08:39:25.210] [INFO] cheese - inserting 1000 documents. first: Greg Billington and last: Category:1988 American novels +[2018-02-13T08:39:25.216] [INFO] cheese - inserting 1000 documents. first: File:Maryland-easternshore.png and last: File:R1a distribution Eurasia.jpg +[2018-02-13T08:39:25.255] [INFO] cheese - inserting 1000 documents. first: Flat-headed Cat and last: Ultra-prominent summits of Hawaii +[2018-02-13T08:39:25.264] [INFO] cheese - batch complete in: 0.756 secs +[2018-02-13T08:39:25.297] [INFO] cheese - inserting 1000 documents. first: 1996-97 Nemzeti Bajnokság I and last: Nicaragua - United States relations +[2018-02-13T08:39:25.331] [INFO] cheese - batch complete in: 0.958 secs +[2018-02-13T08:39:25.391] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T08:39:25.391] [INFO] cheese - batch complete in: 0.987 secs +[2018-02-13T08:39:25.413] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T08:39:25.581] [INFO] cheese - inserting 1000 documents. first: File:Shorey.jpg and last: Vabadussõjalaste Liit +[2018-02-13T08:39:25.619] [INFO] cheese - batch complete in: 0.64 secs +[2018-02-13T08:39:25.696] [INFO] cheese - inserting 1000 documents. first: Namibia-Zimbabwe relations and last: Iran-Switzerland relations +[2018-02-13T08:39:25.728] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T08:39:25.767] [INFO] cheese - inserting 1000 documents. first: Philosophy of psychiatry and last: Charles-Marie de Trolong du Rumain +[2018-02-13T08:39:25.833] [INFO] cheese - inserting 1000 documents. first: Karl Lanckoronski and last: Catellus Development Corporation +[2018-02-13T08:39:25.833] [INFO] cheese - batch complete in: 0.502 secs +[2018-02-13T08:39:25.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/2008 Summer Olympics medal table and last: File:Pacific Coast University logo.png +[2018-02-13T08:39:25.880] [INFO] cheese - inserting 1000 documents. first: Cossula and last: Epipactis cruenta +[2018-02-13T08:39:25.943] [INFO] cheese - inserting 1000 documents. first: R and D and last: USS Southfield (1857) +[2018-02-13T08:39:25.979] [INFO] cheese - inserting 1000 documents. first: The Speed of Darkness (EP) and last: Evelle Younger +[2018-02-13T08:39:26.006] [INFO] cheese - batch complete in: 1.076 secs +[2018-02-13T08:39:26.013] [INFO] cheese - batch complete in: 0.622 secs +[2018-02-13T08:39:26.080] [INFO] cheese - inserting 1000 documents. first: Alexander Schrijver and last: Headful of Ghosts +[2018-02-13T08:39:26.089] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:39:26.097] [INFO] cheese - inserting 1000 documents. first: 1987 World Championships in Athletics - Men's 3000 metre steeplechase and last: 1986-87 New York Rangers season +[2018-02-13T08:39:26.128] [INFO] cheese - batch complete in: 0.509 secs +[2018-02-13T08:39:26.158] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:39:26.172] [INFO] cheese - batch complete in: 1.06 secs +[2018-02-13T08:39:26.325] [INFO] cheese - batch complete in: 0.933 secs +[2018-02-13T08:39:26.592] [INFO] cheese - inserting 1000 documents. first: 1975-76 Nemzeti Bajnokság I and last: 2002-03 Chelsea F.C. season +[2018-02-13T08:39:26.610] [INFO] cheese - inserting 1000 documents. first: Deep Earth Lady and last: File:Turn-Down Day - The Cyrkle.jpg +[2018-02-13T08:39:26.673] [INFO] cheese - inserting 1000 documents. first: 1933 World Figure Skating Championships and last: Frederick S. Perls +[2018-02-13T08:39:26.675] [INFO] cheese - batch complete in: 0.517 secs +[2018-02-13T08:39:26.728] [INFO] cheese - inserting 1000 documents. first: Epipactis subclausa and last: File:Stafford Railway Building Society.png +[2018-02-13T08:39:26.731] [INFO] cheese - batch complete in: 0.898 secs +[2018-02-13T08:39:26.759] [INFO] cheese - inserting 1000 documents. first: Misterton, Nottinghamshire and last: John Fife Symington +[2018-02-13T08:39:26.795] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:39:26.874] [INFO] cheese - batch complete in: 0.785 secs +[2018-02-13T08:39:26.874] [INFO] cheese - batch complete in: 0.746 secs +[2018-02-13T08:39:27.131] [INFO] cheese - inserting 1000 documents. first: Blackwater (town) and last: Wikipedia:Articles for deletion/The conscripts +[2018-02-13T08:39:27.209] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 2012–13 UEL GS and last: 1812 San Juan Capistrano earthquake +[2018-02-13T08:39:27.248] [INFO] cheese - inserting 1000 documents. first: Head Schoolboy and last: 1999-2000 La Liga +[2018-02-13T08:39:27.246] [INFO] cheese - batch complete in: 1.24 secs +[2018-02-13T08:39:27.299] [INFO] cheese - inserting 1000 documents. first: John Symington and last: Robert Gernon +[2018-02-13T08:39:27.336] [INFO] cheese - batch complete in: 0.66 secs +[2018-02-13T08:39:27.354] [INFO] cheese - inserting 1000 documents. first: Mike D and last: Derech Hashem +[2018-02-13T08:39:27.364] [INFO] cheese - batch complete in: 1.037 secs +[2018-02-13T08:39:27.386] [INFO] cheese - inserting 1000 documents. first: File:Janani DO Madhavan.png and last: King Daddy II +[2018-02-13T08:39:27.417] [INFO] cheese - batch complete in: 0.543 secs +[2018-02-13T08:39:27.498] [INFO] cheese - inserting 1000 documents. first: Sugar in wine and last: Tesinon +[2018-02-13T08:39:27.506] [INFO] cheese - batch complete in: 0.775 secs +[2018-02-13T08:39:27.536] [INFO] cheese - batch complete in: 1.364 secs +[2018-02-13T08:39:27.620] [INFO] cheese - batch complete in: 0.825 secs +[2018-02-13T08:39:27.697] [INFO] cheese - inserting 1000 documents. first: Austrian football championship 1954-55 and last: List of roads in Hamilton +[2018-02-13T08:39:27.722] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T08:39:27.781] [INFO] cheese - inserting 1000 documents. first: PASKAL and last: Delaware (chicken) +[2018-02-13T08:39:27.897] [INFO] cheese - batch complete in: 1.023 secs +[2018-02-13T08:39:27.898] [INFO] cheese - inserting 1000 documents. first: Portal:Biotechnology/Title/35 and last: Bambui +[2018-02-13T08:39:27.927] [INFO] cheese - inserting 1000 documents. first: Ivan Niven and last: SnoRNA SNORD50 +[2018-02-13T08:39:27.962] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T08:39:27.969] [INFO] cheese - batch complete in: 0.722 secs +[2018-02-13T08:39:28.058] [INFO] cheese - inserting 1000 documents. first: Sun Bak and last: M. J. Kister +[2018-02-13T08:39:28.085] [INFO] cheese - inserting 1000 documents. first: File:ThisIsArtRecordingslogo.png and last: Another Code: R – A Journey into Lost Memories +[2018-02-13T08:39:28.108] [INFO] cheese - batch complete in: 0.602 secs +[2018-02-13T08:39:28.140] [INFO] cheese - inserting 1000 documents. first: 1936–37 Michigan Wolverines men's basketball team and last: Karasi Bey +[2018-02-13T08:39:28.174] [INFO] cheese - batch complete in: 0.554 secs +[2018-02-13T08:39:28.263] [INFO] cheese - batch complete in: 0.899 secs +[2018-02-13T08:39:28.409] [INFO] cheese - inserting 1000 documents. first: Pareto Priority Index and last: 1998 European Athletics Championships – Men's 110 metre hurdles +[2018-02-13T08:39:28.417] [INFO] cheese - inserting 1000 documents. first: Gary Beach and last: Category:British novels +[2018-02-13T08:39:28.495] [INFO] cheese - batch complete in: 0.959 secs +[2018-02-13T08:39:28.517] [INFO] cheese - inserting 1000 documents. first: Template:Urban Rail Transit in ASEAN and last: Pornographic film star +[2018-02-13T08:39:28.581] [INFO] cheese - inserting 1000 documents. first: Daniel Earhart and last: Arthur Wallace Steere +[2018-02-13T08:39:28.588] [INFO] cheese - batch complete in: 0.865 secs +[2018-02-13T08:39:28.638] [INFO] cheese - batch complete in: 0.741 secs +[2018-02-13T08:39:28.641] [INFO] cheese - inserting 1000 documents. first: Philippe deLacy and last: File:Tattertown.jpg +[2018-02-13T08:39:28.723] [INFO] cheese - batch complete in: 0.761 secs +[2018-02-13T08:39:28.789] [INFO] cheese - batch complete in: 0.82 secs +[2018-02-13T08:39:28.810] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Exeter Racecourse and last: Borough of Greenwich +[2018-02-13T08:39:28.855] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Humboldt County, California and last: Filthy Lucre (Californication episode) +[2018-02-13T08:39:28.884] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:39:28.960] [INFO] cheese - batch complete in: 0.786 secs +[2018-02-13T08:39:29.022] [INFO] cheese - inserting 1000 documents. first: Kazakhstan - United States relations and last: 2007-08 Cymru Alliance +[2018-02-13T08:39:29.075] [INFO] cheese - batch complete in: 0.487 secs +[2018-02-13T08:39:29.285] [INFO] cheese - inserting 1000 documents. first: George Noah and last: Lemelson Capital Management +[2018-02-13T08:39:29.306] [INFO] cheese - inserting 1000 documents. first: Ashbel Parsons Willard and last: Lyon and Healy +[2018-02-13T08:39:29.331] [INFO] cheese - inserting 1000 documents. first: 2012–13 Florida Panthers season and last: File:Eston railway station 1902.jpg +[2018-02-13T08:39:29.340] [INFO] cheese - batch complete in: 0.702 secs +[2018-02-13T08:39:29.410] [INFO] cheese - batch complete in: 0.687 secs +[2018-02-13T08:39:29.441] [INFO] cheese - inserting 1000 documents. first: Rajamundry and last: Note book +[2018-02-13T08:39:29.455] [INFO] cheese - inserting 1000 documents. first: Infantry divisions of the Soviet Union 1917-1957 and last: Fort Madison - Keokuk micropolitan area +[2018-02-13T08:39:29.516] [INFO] cheese - batch complete in: 1.253 secs +[2018-02-13T08:39:29.584] [INFO] cheese - inserting 1000 documents. first: Russ Bell and last: 01 (disambiguation) +[2018-02-13T08:39:29.597] [INFO] cheese - batch complete in: 0.521 secs +[2018-02-13T08:39:29.633] [INFO] cheese - inserting 1000 documents. first: BMW i Performance and last: File:Shaklee Logo.png +[2018-02-13T08:39:29.701] [INFO] cheese - batch complete in: 1.206 secs +[2018-02-13T08:39:29.715] [INFO] cheese - batch complete in: 0.755 secs +[2018-02-13T08:39:29.768] [INFO] cheese - batch complete in: 0.883 secs +[2018-02-13T08:39:29.872] [INFO] cheese - inserting 1000 documents. first: Leningrad udelivaet Ameriku Disk 2 and last: Wikipedia:List of featured articles English Wikipedia should have +[2018-02-13T08:39:29.948] [INFO] cheese - inserting 1000 documents. first: 1957-58 Beşiktaş JK season and last: 2009 World Championships in Athletics - Men's discus throw +[2018-02-13T08:39:29.969] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T08:39:29.972] [INFO] cheese - batch complete in: 1.183 secs +[2018-02-13T08:39:29.987] [INFO] cheese - inserting 1000 documents. first: Kazi Zafar Ahmed and last: Earl Day Ehrhart +[2018-02-13T08:39:30.081] [INFO] cheese - batch complete in: 0.671 secs +[2018-02-13T08:39:30.160] [INFO] cheese - inserting 1000 documents. first: Template:Noarlunga Centre railway line and last: Frank Foss (disambiguation) +[2018-02-13T08:39:30.167] [INFO] cheese - inserting 1000 documents. first: Marion H. Knight and last: Local variables, recursion and reentrancy +[2018-02-13T08:39:30.221] [INFO] cheese - batch complete in: 0.453 secs +[2018-02-13T08:39:30.259] [INFO] cheese - batch complete in: 0.918 secs +[2018-02-13T08:39:30.280] [INFO] cheese - inserting 1000 documents. first: 02 (disambiguation) and last: Wikipedia:Articles for deletion/Problem Solver +[2018-02-13T08:39:30.423] [INFO] cheese - batch complete in: 0.708 secs +[2018-02-13T08:39:30.498] [INFO] cheese - inserting 1000 documents. first: Turbo Cat and last: Common Chimpanzees +[2018-02-13T08:39:30.532] [INFO] cheese - inserting 1000 documents. first: File:The Victorians Their story in pictures titlecard.jpg and last: Robert H. Gibbs, Jr. +[2018-02-13T08:39:30.582] [INFO] cheese - batch complete in: 0.613 secs +[2018-02-13T08:39:30.626] [INFO] cheese - inserting 1000 documents. first: Bernard Docker and last: Jeffrey D. Perry +[2018-02-13T08:39:30.674] [INFO] cheese - batch complete in: 0.592 secs +[2018-02-13T08:39:30.748] [INFO] cheese - inserting 1000 documents. first: Gloucester (MA) and last: Music of Basilicata +[2018-02-13T08:39:30.773] [INFO] cheese - batch complete in: 1.257 secs +[2018-02-13T08:39:30.866] [INFO] cheese - inserting 1000 documents. first: Lomond No. 37, Saskatchewan and last: 2014 Internationaux de Tennis de BLOIS – Singles +[2018-02-13T08:39:30.963] [INFO] cheese - inserting 1000 documents. first: Note-book and last: Congolese franc +[2018-02-13T08:39:30.983] [INFO] cheese - inserting 1000 documents. first: List of minor planets/11401-11500 and last: Category:Tourist attractions in the London Borough of Barking and Dagenham +[2018-02-13T08:39:31.035] [INFO] cheese - batch complete in: 0.776 secs +[2018-02-13T08:39:31.058] [INFO] cheese - inserting 1000 documents. first: Freeze Out (disambiguation) and last: Newfoundland expedition (1585) +[2018-02-13T08:39:31.074] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:39:31.169] [INFO] cheese - inserting 1000 documents. first: Journal of Raman Spectroscopy and last: Nancy J. Boettger +[2018-02-13T08:39:31.134] [INFO] cheese - batch complete in: 0.552 secs +[2018-02-13T08:39:31.211] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:39:31.261] [INFO] cheese - batch complete in: 0.586 secs +[2018-02-13T08:39:31.262] [INFO] cheese - batch complete in: 1.561 secs +[2018-02-13T08:39:31.333] [INFO] cheese - inserting 1000 documents. first: Battle at Rappahannock Station and last: Judge E. C. Hart +[2018-02-13T08:39:31.489] [INFO] cheese - batch complete in: 1.065 secs +[2018-02-13T08:39:31.643] [INFO] cheese - inserting 1000 documents. first: 2008-09 Coventry City F.C. season and last: Cambodia - People's Repbulic of China relations +[2018-02-13T08:39:31.767] [INFO] cheese - batch complete in: 0.633 secs +[2018-02-13T08:39:32.028] [INFO] cheese - inserting 1000 documents. first: Common bladderwort and last: SnoRNA SNORA51 +[2018-02-13T08:39:32.068] [INFO] cheese - batch complete in: 0.807 secs +[2018-02-13T08:39:32.071] [INFO] cheese - inserting 1000 documents. first: Teleki-Bolyai Library and last: Arshak Jamalyan +[2018-02-13T08:39:32.119] [INFO] cheese - inserting 1000 documents. first: Fleetwood Freeport and last: Category:Paintings by Caspar David Friedrich +[2018-02-13T08:39:32.126] [INFO] cheese - batch complete in: 0.915 secs +[2018-02-13T08:39:32.143] [INFO] cheese - inserting 1000 documents. first: Cureton House and last: Category:World War I ships of China +[2018-02-13T08:39:32.197] [INFO] cheese - inserting 1000 documents. first: Middle nasal meatus and last: Kamate haka +[2018-02-13T08:39:32.321] [INFO] cheese - batch complete in: 1.286 secs +[2018-02-13T08:39:32.340] [INFO] cheese - inserting 1000 documents. first: Pelosia and last: File:MoraIK.png +[2018-02-13T08:39:32.383] [INFO] cheese - batch complete in: 1.61 secs +[2018-02-13T08:39:32.413] [INFO] cheese - batch complete in: 1.339 secs +[2018-02-13T08:39:32.555] [INFO] cheese - inserting 1000 documents. first: Belarus - European Union relations and last: 7057 Al-Fārābī +[2018-02-13T08:39:32.701] [INFO] cheese - inserting 1000 documents. first: Young Hotspur and last: Beechmont +[2018-02-13T08:39:32.765] [INFO] cheese - batch complete in: 1.275 secs +[2018-02-13T08:39:32.812] [INFO] cheese - batch complete in: 1.045 secs +[2018-02-13T08:39:32.890] [INFO] cheese - batch complete in: 0.822 secs +[2018-02-13T08:39:32.940] [INFO] cheese - inserting 1000 documents. first: Erectile bone and last: Andrew Stevens +[2018-02-13T08:39:32.961] [INFO] cheese - inserting 1000 documents. first: Jacqulin Hume Foundation and last: Painted Frog +[2018-02-13T08:39:33.156] [INFO] cheese - batch complete in: 1.03 secs +[2018-02-13T08:39:33.295] [INFO] cheese - batch complete in: 2.033 secs +[2018-02-13T08:39:33.333] [INFO] cheese - inserting 1000 documents. first: Elvira, Mistress of the dark and last: Zijad Švrakić +[2018-02-13T08:39:33.569] [INFO] cheese - batch complete in: 1.248 secs +[2018-02-13T08:39:33.757] [INFO] cheese - inserting 1000 documents. first: Emil Strub and last: Sir John Ellerman +[2018-02-13T08:39:33.763] [INFO] cheese - inserting 1000 documents. first: Stress measures and last: File:Springfield Kings.png +[2018-02-13T08:39:33.777] [INFO] cheese - inserting 1000 documents. first: Category:Paintings by Rudolf Frentz and last: Baghalduz-e Olya +[2018-02-13T08:39:33.839] [INFO] cheese - batch complete in: 1.074 secs +[2018-02-13T08:39:33.844] [INFO] cheese - inserting 1000 documents. first: Myxas glutinosa and last: Robert Bowne Minturn +[2018-02-13T08:39:33.923] [INFO] cheese - batch complete in: 1.54 secs +[2018-02-13T08:39:33.927] [INFO] cheese - inserting 1000 documents. first: John Lovelace, 2nd Baron Lovelace and last: Book:Wikipedia Signpost/2006-05-01 +[2018-02-13T08:39:33.931] [INFO] cheese - batch complete in: 1.517 secs +[2018-02-13T08:39:33.943] [INFO] cheese - batch complete in: 1.053 secs +[2018-02-13T08:39:34.170] [INFO] cheese - batch complete in: 1.358 secs +[2018-02-13T08:39:34.253] [INFO] cheese - inserting 1000 documents. first: Symbols of Himachal Pradesh and last: Wikipedia:Articles for deletion/Janine Circincione +[2018-02-13T08:39:34.380] [INFO] cheese - inserting 1000 documents. first: Dominik Kun and last: Wikipedia:BMJ/Navbox +[2018-02-13T08:39:34.402] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T08:39:34.405] [INFO] cheese - inserting 1000 documents. first: Jim Rose Circus and last: Wikipedia:Today's featured article/August 27, 2005 +[2018-02-13T08:39:34.441] [INFO] cheese - batch complete in: 0.871 secs +[2018-02-13T08:39:34.528] [INFO] cheese - inserting 1000 documents. first: Federal electoral districts of Mexico and last: Garadheancal +[2018-02-13T08:39:34.541] [INFO] cheese - batch complete in: 1.246 secs +[2018-02-13T08:39:34.666] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:39:34.774] [INFO] cheese - inserting 1000 documents. first: Classical wave tunneling and last: File:The Benevolent Volume Lurkings.jpg +[2018-02-13T08:39:34.837] [INFO] cheese - batch complete in: 0.914 secs +[2018-02-13T08:39:34.844] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota Supreme Court and last: Byron Brad McCrimmon +[2018-02-13T08:39:34.955] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/News/Newsletter March 2006 and last: Madara (manga) +[2018-02-13T08:39:34.964] [INFO] cheese - batch complete in: 1.021 secs +[2018-02-13T08:39:35.017] [INFO] cheese - inserting 1000 documents. first: Book:Wikipedia Signpost/2006-05-08 and last: Category:Eurovision songs of Portugal +[2018-02-13T08:39:35.095] [INFO] cheese - batch complete in: 1.163 secs +[2018-02-13T08:39:35.191] [INFO] cheese - inserting 1000 documents. first: 72993 Hannahlivsey and last: Shany Kedmy +[2018-02-13T08:39:35.205] [INFO] cheese - batch complete in: 1.034 secs +[2018-02-13T08:39:35.296] [INFO] cheese - batch complete in: 0.894 secs +[2018-02-13T08:39:35.388] [INFO] cheese - inserting 1000 documents. first: Fenario and last: Canadian Journal of Occupational Therapy +[2018-02-13T08:39:35.448] [INFO] cheese - inserting 1000 documents. first: Template:User EU Balkans and last: List of Registered Historic Places in Maine +[2018-02-13T08:39:35.481] [INFO] cheese - batch complete in: 1.039 secs +[2018-02-13T08:39:35.616] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/August 28, 2005 and last: Intermediate representation +[2018-02-13T08:39:35.648] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:39:35.730] [INFO] cheese - inserting 1000 documents. first: Canfield Village Middle School and last: Incurvaria circulella +[2018-02-13T08:39:35.830] [INFO] cheese - batch complete in: 1.288 secs +[2018-02-13T08:39:35.846] [INFO] cheese - inserting 1000 documents. first: Server Appliance and last: Super 530F +[2018-02-13T08:39:35.830] [INFO] cheese - batch complete in: 0.993 secs +[2018-02-13T08:39:35.992] [INFO] cheese - inserting 1000 documents. first: Mpumalanga Province and last: HFSJ +[2018-02-13T08:39:36.044] [INFO] cheese - batch complete in: 1.08 secs +[2018-02-13T08:39:36.188] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 472001–473000 and last: Category:Transportation buildings and structures on the National Register of Historic Places in Oregon +[2018-02-13T08:39:36.169] [INFO] cheese - batch complete in: 1.073 secs +[2018-02-13T08:39:36.278] [INFO] cheese - batch complete in: 0.982 secs +[2018-02-13T08:39:36.409] [INFO] cheese - inserting 1000 documents. first: Wildlife sanctuaries in Uttar Pradesh and last: Wescorp Energy Inc. +[2018-02-13T08:39:36.445] [INFO] cheese - inserting 1000 documents. first: Helston Community College and last: Uganik, Alaska +[2018-02-13T08:39:36.462] [INFO] cheese - inserting 1000 documents. first: Slava Moscow and last: Portal:London/Showcase picture/06 2010 +[2018-02-13T08:39:36.475] [INFO] cheese - batch complete in: 0.827 secs +[2018-02-13T08:39:36.495] [INFO] cheese - inserting 1000 documents. first: Evangelical Church of the Union and last: Eisosomes +[2018-02-13T08:39:36.655] [INFO] cheese - batch complete in: 1.174 secs +[2018-02-13T08:39:36.692] [INFO] cheese - batch complete in: 1.487 secs +[2018-02-13T08:39:36.740] [INFO] cheese - batch complete in: 0.909 secs +[2018-02-13T08:39:36.894] [INFO] cheese - inserting 1000 documents. first: Chile men's national basketball team and last: Haerentibaculum +[2018-02-13T08:39:36.955] [INFO] cheese - inserting 1000 documents. first: İstranca Mountains and last: Fernando Margáin +[2018-02-13T08:39:36.962] [INFO] cheese - batch complete in: 0.684 secs +[2018-02-13T08:39:36.975] [INFO] cheese - inserting 1000 documents. first: Mmm, Mmm, Mmm, Mmm and last: Buford "Mad Dog" Tannen +[2018-02-13T08:39:36.999] [INFO] cheese - inserting 1000 documents. first: Strathcona Baptist Girls' Grammar and last: Portal:Nontheism/Selected biography/December 2006 +[2018-02-13T08:39:37.064] [INFO] cheese - batch complete in: 0.895 secs +[2018-02-13T08:39:37.112] [INFO] cheese - batch complete in: 1.282 secs +[2018-02-13T08:39:37.166] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T08:39:37.224] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Caernarvon Athletic and last: Arudou +[2018-02-13T08:39:37.299] [INFO] cheese - inserting 1000 documents. first: Philiodoron frater and last: Category:Paraguayan historical films +[2018-02-13T08:39:37.344] [INFO] cheese - batch complete in: 0.868 secs +[2018-02-13T08:39:37.394] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cheapkingdom.com and last: File:More Than A Thousand album cover.jpg +[2018-02-13T08:39:37.418] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:39:37.463] [INFO] cheese - inserting 1000 documents. first: Over-the-air broadcasting and last: Chris Stokes (bobsleigh) +[2018-02-13T08:39:37.494] [INFO] cheese - inserting 1000 documents. first: Riba (disambiguation) and last: Dongo language (Ubangian) +[2018-02-13T08:39:37.513] [INFO] cheese - batch complete in: 0.821 secs +[2018-02-13T08:39:37.568] [INFO] cheese - batch complete in: 0.606 secs +[2018-02-13T08:39:37.615] [INFO] cheese - batch complete in: 0.875 secs +[2018-02-13T08:39:37.910] [INFO] cheese - inserting 1000 documents. first: Sumerian calendar and last: Ohio State Route 720 +[2018-02-13T08:39:37.980] [INFO] cheese - batch complete in: 0.814 secs +[2018-02-13T08:39:37.989] [INFO] cheese - inserting 1000 documents. first: Debito and last: Demoblican +[2018-02-13T08:39:38.018] [INFO] cheese - inserting 1000 documents. first: Category:Paraguayan films by genre and last: Thoracibidion flavopictum +[2018-02-13T08:39:38.087] [INFO] cheese - batch complete in: 0.743 secs +[2018-02-13T08:39:38.115] [INFO] cheese - inserting 1000 documents. first: National Museum of the United States Navy and last: KOZK +[2018-02-13T08:39:38.141] [INFO] cheese - batch complete in: 0.723 secs +[2018-02-13T08:39:38.152] [INFO] cheese - inserting 1000 documents. first: Haravrd and last: Jose Vasconcelos +[2018-02-13T08:39:38.228] [INFO] cheese - inserting 1000 documents. first: History of Arrah and last: Template:Ranks and Insignia of Non NATO Navies/OR/New Zealand +[2018-02-13T08:39:38.276] [INFO] cheese - batch complete in: 1.212 secs +[2018-02-13T08:39:38.324] [INFO] cheese - inserting 1000 documents. first: Alexandru Birladeanu and last: Sergei Solnechnikov +[2018-02-13T08:39:38.388] [INFO] cheese - batch complete in: 1.275 secs +[2018-02-13T08:39:38.414] [INFO] cheese - batch complete in: 0.845 secs +[2018-02-13T08:39:38.499] [INFO] cheese - batch complete in: 0.884 secs +[2018-02-13T08:39:38.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Makebelievee and last: Fourth Avenue / Ninth Street (New York City Subway) +[2018-02-13T08:39:38.611] [INFO] cheese - batch complete in: 1.098 secs +[2018-02-13T08:39:38.720] [INFO] cheese - inserting 1000 documents. first: Demublican and last: Lake alta +[2018-02-13T08:39:38.784] [INFO] cheese - batch complete in: 0.697 secs +[2018-02-13T08:39:38.816] [INFO] cheese - inserting 1000 documents. first: Edward Horne and last: Doc Shebeleza +[2018-02-13T08:39:38.891] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:39:39.027] [INFO] cheese - inserting 1000 documents. first: USS Whippoorwill (AMS-207) and last: File:Fiume-class.PNG +[2018-02-13T08:39:39.102] [INFO] cheese - batch complete in: 1.122 secs +[2018-02-13T08:39:39.108] [INFO] cheese - inserting 1000 documents. first: Lake dunstan and last: Novosibirsk reservoir +[2018-02-13T08:39:39.141] [INFO] cheese - batch complete in: 0.357 secs +[2018-02-13T08:39:39.144] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/May 7, 2012 and last: German University of Administrative Sciences +[2018-02-13T08:39:39.201] [INFO] cheese - inserting 1000 documents. first: Draft:Reflective crack and last: Category:Lists of people killed in World War I +[2018-02-13T08:39:39.219] [INFO] cheese - inserting 1000 documents. first: U.S. Route 78 in Alabama and last: UN/LOCODE:CSULC +[2018-02-13T08:39:39.280] [INFO] cheese - batch complete in: 0.781 secs +[2018-02-13T08:39:39.321] [INFO] cheese - inserting 1000 documents. first: Category:Alternative rock groups from Nevada and last: Asana (software) +[2018-02-13T08:39:39.405] [INFO] cheese - batch complete in: 0.99 secs +[2018-02-13T08:39:39.405] [INFO] cheese - batch complete in: 1.129 secs +[2018-02-13T08:39:39.433] [INFO] cheese - inserting 1000 documents. first: Big penis and last: Sanford Independence Bowl +[2018-02-13T08:39:39.442] [INFO] cheese - batch complete in: 0.83 secs +[2018-02-13T08:39:39.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dance Evolution and last: Steven Schwartz (vice-chancellor) +[2018-02-13T08:39:39.542] [INFO] cheese - inserting 1000 documents. first: Fonthill lake and last: Salvation Committee +[2018-02-13T08:39:39.567] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:39:39.572] [INFO] cheese - batch complete in: 1.184 secs +[2018-02-13T08:39:39.570] [INFO] cheese - batch complete in: 0.429 secs +[2018-02-13T08:39:39.917] [INFO] cheese - inserting 1000 documents. first: Cannibal Isles and last: File:Mercer University Historic Quad North.jpg +[2018-02-13T08:39:39.925] [INFO] cheese - inserting 1000 documents. first: File:Syd.dock.jpg and last: Underdaks +[2018-02-13T08:39:40.022] [INFO] cheese - batch complete in: 0.742 secs +[2018-02-13T08:39:40.063] [INFO] cheese - inserting 1000 documents. first: Nogai in the Bala Türkvizyon Song Contest and last: Olympic Art Competition +[2018-02-13T08:39:40.066] [INFO] cheese - batch complete in: 0.964 secs +[2018-02-13T08:39:40.080] [INFO] cheese - inserting 1000 documents. first: Undersecretary of Commerce for International Trade and last: Category:PAOK FC players +[2018-02-13T08:39:40.119] [INFO] cheese - inserting 1000 documents. first: Ricardo Balbín and last: Category:Flamenco musicians by instrument +[2018-02-13T08:39:40.155] [INFO] cheese - batch complete in: 0.75 secs +[2018-02-13T08:39:40.217] [INFO] cheese - batch complete in: 0.65 secs +[2018-02-13T08:39:40.237] [INFO] cheese - batch complete in: 0.831 secs +[2018-02-13T08:39:40.252] [INFO] cheese - inserting 1000 documents. first: Template:Tollywood films and last: Jose Armando Melo +[2018-02-13T08:39:40.278] [INFO] cheese - inserting 1000 documents. first: File:Gela405.PNG and last: Wikipedia:Articles for deletion/Blütreich +[2018-02-13T08:39:40.324] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:39:40.403] [INFO] cheese - batch complete in: 0.809 secs +[2018-02-13T08:39:40.527] [INFO] cheese - inserting 1000 documents. first: MainStay Independence Bowl and last: Weaubleau structure +[2018-02-13T08:39:40.648] [INFO] cheese - inserting 1000 documents. first: Template:SIA Barnstar and last: Template:Editnotices/Page/Mike Mills +[2018-02-13T08:39:40.656] [INFO] cheese - batch complete in: 1.084 secs +[2018-02-13T08:39:40.740] [INFO] cheese - batch complete in: 0.718 secs +[2018-02-13T08:39:40.765] [INFO] cheese - inserting 1000 documents. first: Glabrous dermis and last: Third way +[2018-02-13T08:39:40.774] [INFO] cheese - inserting 1000 documents. first: File:Street in the Sorbian Quarter.jpg and last: Masters W65 800 metres world record progression +[2018-02-13T08:39:40.883] [INFO] cheese - inserting 1000 documents. first: Quarryhouse Moor Ponds and last: Category:Summer Olympics competitors for American Samoa +[2018-02-13T08:39:40.887] [INFO] cheese - batch complete in: 0.67 secs +[2018-02-13T08:39:40.895] [INFO] cheese - batch complete in: 0.829 secs +[2018-02-13T08:39:40.949] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T08:39:40.985] [INFO] cheese - inserting 1000 documents. first: Richard Vigneault and last: Minnesota dot +[2018-02-13T08:39:41.097] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T08:39:41.204] [INFO] cheese - inserting 1000 documents. first: Category:Halloween albums and last: Girlfriend +[2018-02-13T08:39:41.300] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Mine Smell Like Honey and last: County Route 53 (Saratoga County, New York) +[2018-02-13T08:39:41.315] [INFO] cheese - batch complete in: 0.912 secs +[2018-02-13T08:39:41.409] [INFO] cheese - batch complete in: 0.669 secs +[2018-02-13T08:39:41.437] [INFO] cheese - inserting 1000 documents. first: Reicke and last: 13 Voices (song) +[2018-02-13T08:39:41.487] [INFO] cheese - inserting 1000 documents. first: Creighton model and last: Unauthorised copying +[2018-02-13T08:39:41.510] [INFO] cheese - inserting 1000 documents. first: Masters W70 800 metres world record progression and last: Final Fantasy Explorers +[2018-02-13T08:39:41.553] [INFO] cheese - batch complete in: 0.604 secs +[2018-02-13T08:39:41.571] [INFO] cheese - batch complete in: 0.676 secs +[2018-02-13T08:39:41.642] [INFO] cheese - inserting 1000 documents. first: File:CTA red line rerouted.jpg and last: FAR Part 103 +[2018-02-13T08:39:41.651] [INFO] cheese - batch complete in: 0.763 secs +[2018-02-13T08:39:41.767] [INFO] cheese - batch complete in: 1.443 secs +[2018-02-13T08:39:41.790] [INFO] cheese - inserting 1000 documents. first: Etsuko Kozakura and last: Inertial +[2018-02-13T08:39:41.831] [INFO] cheese - inserting 1000 documents. first: William Berger and last: Stuora galbajávri +[2018-02-13T08:39:41.954] [INFO] cheese - batch complete in: 0.638 secs +[2018-02-13T08:39:42.007] [INFO] cheese - batch complete in: 1.351 secs +[2018-02-13T08:39:42.026] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vargathrone and last: WIN 35428 +[2018-02-13T08:39:42.121] [INFO] cheese - inserting 1000 documents. first: County Route 54 (Saratoga County, New York) and last: Graphical waterfall +[2018-02-13T08:39:42.206] [INFO] cheese - batch complete in: 1.109 secs +[2018-02-13T08:39:42.246] [INFO] cheese - batch complete in: 0.837 secs +[2018-02-13T08:39:42.286] [INFO] cheese - inserting 1000 documents. first: Gaz Metan II Mediaș and last: Walther Gothan +[2018-02-13T08:39:42.320] [INFO] cheese - inserting 1000 documents. first: Dumb-Ass Partners and last: River Melfa +[2018-02-13T08:39:42.337] [INFO] cheese - inserting 1000 documents. first: Suolojávri (kautokeino) and last: Heatmeiser +[2018-02-13T08:39:42.356] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T08:39:42.435] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T08:39:42.487] [INFO] cheese - batch complete in: 0.836 secs +[2018-02-13T08:39:42.603] [INFO] cheese - inserting 1000 documents. first: United States women's movement (1963 - 1981) and last: Ammonoossuc +[2018-02-13T08:39:42.624] [INFO] cheese - inserting 1000 documents. first: Forst Cantú and last: Zombification +[2018-02-13T08:39:42.779] [INFO] cheese - inserting 1000 documents. first: Great south pond and last: San Telmo Island +[2018-02-13T08:39:42.781] [INFO] cheese - batch complete in: 1.21 secs +[2018-02-13T08:39:42.779] [INFO] cheese - batch complete in: 1.012 secs +[2018-02-13T08:39:42.901] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T08:39:43.118] [INFO] cheese - inserting 1000 documents. first: Group responsibility and last: Ghaleh Joogh +[2018-02-13T08:39:43.196] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article removal candidates/Economics and last: Mount LeConte +[2018-02-13T08:39:43.201] [INFO] cheese - batch complete in: 0.954 secs +[2018-02-13T08:39:43.205] [INFO] cheese - inserting 1000 documents. first: NBN Virtual School of Emerging Sciences and last: Eucosma lugubrana +[2018-02-13T08:39:43.309] [INFO] cheese - inserting 1000 documents. first: Croniades pieria and last: File:Nigerian Capital Development Fund (NCDF), Old Logo.png +[2018-02-13T08:39:43.313] [INFO] cheese - batch complete in: 0.826 secs +[2018-02-13T08:39:43.371] [INFO] cheese - batch complete in: 1.165 secs +[2018-02-13T08:39:43.424] [INFO] cheese - inserting 1000 documents. first: Leslie Hunterr and last: Katherine Cressida +[2018-02-13T08:39:43.480] [INFO] cheese - batch complete in: 1.044 secs +[2018-02-13T08:39:43.522] [INFO] cheese - batch complete in: 0.74 secs +[2018-02-13T08:39:43.586] [INFO] cheese - inserting 1000 documents. first: Jang Dong-Gun and last: VT52 +[2018-02-13T08:39:43.725] [INFO] cheese - batch complete in: 1.718 secs +[2018-02-13T08:39:43.758] [INFO] cheese - inserting 1000 documents. first: McClelland College and last: Category:Solihull Moors F.C. players +[2018-02-13T08:39:43.769] [INFO] cheese - inserting 1000 documents. first: Category:Kindersley No. 290, Saskatchewan and last: Wikipedia:Featured article candidates/Waddesdon Road railway station/archive1 +[2018-02-13T08:39:43.868] [INFO] cheese - batch complete in: 0.967 secs +[2018-02-13T08:39:43.880] [INFO] cheese - batch complete in: 1.101 secs +[2018-02-13T08:39:43.895] [INFO] cheese - inserting 1000 documents. first: Ghal'eh Joogh and last: Category:Songs written by Michael Scholz +[2018-02-13T08:39:43.978] [INFO] cheese - inserting 1000 documents. first: Joseph Casper and last: USS Longspur (MHC-28) +[2018-02-13T08:39:44.004] [INFO] cheese - batch complete in: 0.801 secs +[2018-02-13T08:39:44.039] [INFO] cheese - inserting 1000 documents. first: Sir Thomas Stanhope and last: Religious drugs +[2018-02-13T08:39:44.054] [INFO] cheese - batch complete in: 0.531 secs +[2018-02-13T08:39:44.119] [INFO] cheese - batch complete in: 0.806 secs diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..284e769 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,2564 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +accepts@~1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" + dependencies: + mime-types "~2.1.16" + negotiator "0.6.1" + +acorn-globals@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" + dependencies: + acorn "^4.0.4" + +acorn@^3.1.0, acorn@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + +acorn@^4.0.4, acorn@~4.0.2: + version "4.0.13" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" + +addressparser@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/addressparser/-/addressparser-1.0.1.tgz#47afbe1a2a9262191db6838e4fd1d39b40821746" + +agent-base@2: + version "2.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" + dependencies: + extend "~3.0.0" + semver "~5.0.1" + +ajv@^5.1.0: + version "5.5.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" + dependencies: + co "^4.6.0" + fast-deep-equal "^1.0.0" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.3.0" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + +amqplib@^0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/amqplib/-/amqplib-0.5.2.tgz#d2d7313c7ffaa4d10bcf1e6252de4591b6cc7b63" + dependencies: + bitsyntax "~0.0.4" + bluebird "^3.4.6" + buffer-more-ints "0.0.2" + readable-stream "1.x >=1.1.9" + safe-buffer "^5.0.1" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +"apparatus@>= 0.0.9": + version "0.0.9" + resolved "https://registry.yarnpkg.com/apparatus/-/apparatus-0.0.9.tgz#37dcd25834ad0b651076596291db823eeb1908bd" + dependencies: + sylvester ">= 0.0.8" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +ast-types@0.x.x: + version "0.10.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.10.2.tgz#aef76a04fde54634976fc94defaad1a67e2eadb0" + +async@~2.1.2: + version "2.1.5" + resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" + dependencies: + lodash "^4.14.0" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + +aws4@^1.2.1, aws4@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + +axios@^0.15.3: + version "0.15.3" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.15.3.tgz#2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053" + dependencies: + follow-redirects "1.0.0" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + +base64-js@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" + +bcrypt-pbkdf@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + dependencies: + tweetnacl "^0.14.3" + +bindings@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7" + +bitsyntax@~0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/bitsyntax/-/bitsyntax-0.0.4.tgz#eb10cc6f82b8c490e3e85698f07e83d46e0cba82" + dependencies: + buffer-more-ints "0.0.2" + +bl@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" + dependencies: + readable-stream "~2.0.5" + +bluebird@^3.4.6: + version "3.5.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" + +body-parser@1.18.2, body-parser@^1.12.2: + version "1.18.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" + dependencies: + bytes "3.0.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.1" + http-errors "~1.6.2" + iconv-lite "0.4.19" + on-finished "~2.3.0" + qs "6.5.1" + raw-body "2.3.2" + type-is "~1.6.15" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +boom@4.x.x: + version "4.3.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" + dependencies: + hoek "4.x.x" + +boom@5.x.x: + version "5.2.0" + resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" + dependencies: + hoek "4.x.x" + +brace-expansion@^1.1.7: + version "1.1.9" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.9.tgz#acdc7dde0e939fb3b32fe933336573e2a7dc2b7c" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +bson@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.4.tgz#93c10d39eaa5b58415cbc4052f3e53e562b0b72c" + +buffer-more-ints@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz#26b3885d10fa13db7fc01aae3aab870199e0124c" + +buffer-shims@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" + +buffer@^3.0.1: + version "3.6.0" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-3.6.0.tgz#a72c936f77b96bf52f5f7e7b467180628551defb" + dependencies: + base64-js "0.0.8" + ieee754 "^1.1.4" + isarray "^1.0.0" + +buildmail@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/buildmail/-/buildmail-4.0.1.tgz#877f7738b78729871c9a105e3b837d2be11a7a72" + dependencies: + addressparser "1.0.1" + libbase64 "0.1.0" + libmime "3.0.0" + libqp "1.1.0" + nodemailer-fetch "1.6.0" + nodemailer-shared "1.1.0" + punycode "1.4.1" + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + +caseless@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@^1.0.0, chalk@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +character-parser@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" + dependencies: + is-regex "^1.0.3" + +circular-json@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.5.1.tgz#b8942a09e535863dc21b04417a91971e1d9cd91f" + +clean-css@^3.3.0: + version "3.4.28" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.28.tgz#bf1945e82fc808f55695e6ddeaec01400efd03ff" + dependencies: + commander "2.8.x" + source-map "0.4.x" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +cluster@^0.7.7: + version "0.7.7" + resolved "https://registry.yarnpkg.com/cluster/-/cluster-0.7.7.tgz#e497e267cc956bd0b0513adb4aa393357d0085ef" + dependencies: + log ">= 1.2.0" + mkdirp ">= 0.0.1" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + +co@~3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/co/-/co-3.0.6.tgz#1445f226c5eb956138e68c9ac30167ea7d2e6bda" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + dependencies: + delayed-stream "~1.0.0" + +commander@2.8.x: + version "2.8.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" + dependencies: + graceful-readlink ">= 1.0.0" + +commander@^2.12.0, commander@^2.9.0: + version "2.14.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" + +component-emitter@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +constantinople@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-3.1.0.tgz#7569caa8aa3f8d5935d62e1fa96f9f702cd81c79" + dependencies: + acorn "^3.1.0" + is-expression "^2.0.1" + +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + +cookiejar@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.1.tgz#41ad57b1b555951ec171412a81942b1e8200d34a" + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +cryptiles@3.x.x: + version "3.1.2" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" + dependencies: + boom "5.x.x" + +css-parse@1.7.x: + version "1.7.0" + resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.7.0.tgz#321f6cf73782a6ff751111390fc05e2c657d8c9b" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + dependencies: + assert-plus "^1.0.0" + +data-uri-to-buffer@1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz#77163ea9c20d8641b4707e8f18abdf9a78f34835" + +date-format@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/date-format/-/date-format-1.2.0.tgz#615e828e233dd1ab9bb9ae0950e0ceccfa6ecad8" + +debug@*, debug@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + dependencies: + ms "2.0.0" + +debug@2, debug@2.6.9, debug@^2.2.0: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + dependencies: + ms "2.0.0" + +debug@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" + dependencies: + ms "0.7.1" + +decamelize@^1.0.0, decamelize@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +deep-equal@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +define-properties@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + dependencies: + foreach "^2.0.5" + object-keys "^1.0.8" + +defined@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + +degenerator@~1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-1.0.4.tgz#fcf490a37ece266464d9cc431ab98c5819ced095" + dependencies: + ast-types "0.x.x" + escodegen "1.x.x" + esprima "3.x.x" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +depd@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" + +depd@~1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + +doctypes@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" + +double-ended-queue@^2.1.0-0: + version "2.1.0-0" + resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" + +duplexer@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + +encodeurl@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + +error-ex@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.5.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + +es-to-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" + dependencies: + is-callable "^1.1.1" + is-date-object "^1.0.1" + is-symbol "^1.0.1" + +es6-promise@3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.2.1.tgz#ec56233868032909207170c39448e24449dd1fc4" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +escodegen@1.x.x: + version "1.9.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" + dependencies: + esprima "^3.1.3" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.5.6" + +esprima@3.x.x, esprima@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + +estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + +event-lite@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/event-lite/-/event-lite-0.1.1.tgz#47cf08a8d37d0b694cdb7b3b17b51faac6576086" + +express@^4.12.2: + version "4.16.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" + dependencies: + accepts "~1.3.4" + array-flatten "1.1.1" + body-parser "1.18.2" + content-disposition "0.5.2" + content-type "~1.0.4" + cookie "0.3.1" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.1" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.1.0" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.2" + path-to-regexp "0.1.7" + proxy-addr "~2.0.2" + qs "6.5.1" + range-parser "~1.2.0" + safe-buffer "5.1.1" + send "0.16.1" + serve-static "1.13.1" + setprototypeof "1.1.0" + statuses "~1.3.1" + type-is "~1.6.15" + utils-merge "1.0.1" + vary "~1.1.2" + +extend@3, extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +extend@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extend/-/extend-1.3.0.tgz#d1516fb0ff5624d2ebf9123ea1dac5a1994004f8" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + +fast-deep-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +figures@^1.4.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +file-uri-to-path@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + +finalhandler@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" + dependencies: + debug "2.6.9" + encodeurl "~1.0.1" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.2" + statuses "~1.3.1" + unpipe "~1.0.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +follow-redirects@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.0.0.tgz#8e34298cbd2e176f254effec75a1c78cc849fd37" + dependencies: + debug "^2.2.0" + +for-each@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" + dependencies: + is-function "~1.0.0" + +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@^2.3.1, form-data@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +form-data@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.11" + +form-data@~2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +formidable@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" + +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +ftp@~0.3.10: + version "0.3.10" + resolved "https://registry.yarnpkg.com/ftp/-/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" + dependencies: + readable-stream "1.1.x" + xregexp "2.0.0" + +function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + +generate-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" + +generate-object-property@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" + dependencies: + is-property "^1.0.0" + +get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-uri@2: + version "2.0.1" + resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-2.0.1.tgz#dbdcacacd8c608a38316869368117697a1631c59" + dependencies: + data-uri-to-buffer "1" + debug "2" + extend "3" + file-uri-to-path "1" + ftp "~0.3.10" + readable-stream "2" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + dependencies: + assert-plus "^1.0.0" + +glob@7.0.x: + version "7.0.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@~7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +graceful-fs@^4.1.2: + version "4.1.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + +"graceful-readlink@>= 1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + +har-validator@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" + dependencies: + chalk "^1.1.1" + commander "^2.9.0" + is-my-json-valid "^2.12.4" + pinkie-promise "^2.0.0" + +har-validator@~5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" + dependencies: + ajv "^5.1.0" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has@^1.0.1, has@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +hawk@~6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" + dependencies: + boom "4.x.x" + cryptiles "3.x.x" + hoek "4.x.x" + sntp "2.x.x" + +hipchat-notifier@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz#b6d249755437c191082367799d3ba9a0f23b231e" + dependencies: + lodash "^4.0.0" + request "^2.0.0" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +hoek@4.x.x: + version "4.2.0" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" + +hosted-git-info@^2.1.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" + +http-errors@1.6.2, http-errors@~1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" + dependencies: + depd "1.1.1" + inherits "2.0.3" + setprototypeof "1.0.3" + statuses ">= 1.3.1 < 2" + +http-proxy-agent@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz#cc1ce38e453bf984a0f7702d2dd59c73d081284a" + dependencies: + agent-base "2" + debug "2" + extend "3" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +httpntlm@1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/httpntlm/-/httpntlm-1.6.1.tgz#ad01527143a2e8773cfae6a96f58656bb52a34b2" + dependencies: + httpreq ">=0.4.22" + underscore "~1.7.0" + +httpreq@>=0.4.22: + version "0.4.24" + resolved "https://registry.yarnpkg.com/httpreq/-/httpreq-0.4.24.tgz#4335ffd82cd969668a39465c929ac61d6393627f" + +https-proxy-agent@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" + dependencies: + agent-base "2" + debug "2" + extend "3" + +iconv-lite@0.4.15: + version "0.4.15" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" + +iconv-lite@0.4.19: + version "0.4.19" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" + +iconv@^2.1.4: + version "2.3.0" + resolved "https://registry.yarnpkg.com/iconv/-/iconv-2.3.0.tgz#9739887c2bd492d9a5e236dd3667c5358601201b" + dependencies: + nan "^2.3.5" + +ieee754@^1.1.4, ieee754@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + +inflection@~1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.10.0.tgz#5bffcb1197ad3e81050f8e17e21668087ee9eb2f" + +inflection@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.3.8.tgz#cbd160da9f75b14c3cc63578d4f396784bf3014e" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.3, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +int64-buffer@^0.1.9: + version "0.1.10" + resolved "https://registry.yarnpkg.com/int64-buffer/-/int64-buffer-0.1.10.tgz#277b228a87d95ad777d07c13832022406a473423" + +interpret@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + +ip@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.0.1.tgz#c7e356cdea225ae71b36d70f2e71a92ba4e42590" + +ip@^1.1.2, ip@^1.1.4: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + +ipaddr.js@1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + dependencies: + builtin-modules "^1.0.0" + +is-callable@^1.1.1, is-callable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + +is-expression@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-2.1.0.tgz#91be9d47debcfef077977e9722be6dcfb4465ef0" + dependencies: + acorn "~3.3.0" + object-assign "^4.0.1" + +is-expression@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-3.0.0.tgz#39acaa6be7fd1f3471dc42c7416e61c24317ac9f" + dependencies: + acorn "~4.0.2" + object-assign "^4.0.1" + +is-finite@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-function@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" + +is-my-json-valid@^2.12.4: + version "2.17.1" + resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz#3da98914a70a22f0a8563ef1511a246c6fc55471" + dependencies: + generate-function "^2.0.0" + generate-object-property "^1.1.0" + jsonpointer "^4.0.0" + xtend "^4.0.0" + +is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + +is-property@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" + +is-regex@^1.0.3, is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-symbol@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + +isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +js-stringify@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + +jshashes@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/jshashes/-/jshashes-1.0.7.tgz#bed8c97a0e9632fd0513916f55f76dd5486be59f" + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stringify-safe@5.0.x, json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + +jsonpointer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +jstransformer@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" + dependencies: + is-promise "^2.0.0" + promise "^7.0.1" + +kind-of@^3.0.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + dependencies: + is-buffer "^1.1.5" + +kue@^0.11.1: + version "0.11.6" + resolved "https://registry.yarnpkg.com/kue/-/kue-0.11.6.tgz#5b76916bcedd56636a107861471c63c94611860a" + dependencies: + body-parser "^1.12.2" + express "^4.12.2" + lodash "^4.0.0" + nib "~1.1.2" + node-redis-warlock "~0.2.0" + pug "^2.0.0-beta3" + redis "~2.6.0-2" + stylus "~0.54.5" + yargs "^4.0.0" + optionalDependencies: + reds "^0.2.5" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +libbase64@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/libbase64/-/libbase64-0.1.0.tgz#62351a839563ac5ff5bd26f12f60e9830bb751e6" + +libmime@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/libmime/-/libmime-3.0.0.tgz#51a1a9e7448ecbd32cda54421675bb21bc093da6" + dependencies: + iconv-lite "0.4.15" + libbase64 "0.1.0" + libqp "1.1.0" + +libqp@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/libqp/-/libqp-1.1.0.tgz#f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8" + +line-by-line@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/line-by-line/-/line-by-line-0.1.6.tgz#6236edd1db2d1695addf11f0268e74a181561c30" + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +lodash.assign@^4.0.3, lodash.assign@^4.0.6: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" + +lodash@^3.6.0: + version "3.10.1" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" + +lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0: + version "4.17.5" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" + +log4js@^2.5.3: + version "2.5.3" + resolved "https://registry.yarnpkg.com/log4js/-/log4js-2.5.3.tgz#38bb7bde5e9c1c181bd75e8bc128c5cd0409caf1" + dependencies: + circular-json "^0.5.1" + date-format "^1.2.0" + debug "^3.1.0" + semver "^5.3.0" + streamroller "^0.7.0" + optionalDependencies: + amqplib "^0.5.2" + axios "^0.15.3" + hipchat-notifier "^1.1.0" + loggly "^1.1.0" + mailgun-js "^0.7.0" + nodemailer "^2.5.0" + redis "^2.7.1" + slack-node "~0.2.0" + +"log@>= 1.2.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/log/-/log-1.4.0.tgz#4ba1d890fde249b031dca03bc37eaaf325656f1c" + +loggly@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/loggly/-/loggly-1.1.1.tgz#0a0fc1d3fa3a5ec44fdc7b897beba2a4695cebee" + dependencies: + json-stringify-safe "5.0.x" + request "2.75.x" + timespan "2.3.x" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +lru-cache@^2.5.0: + version "2.7.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" + +lru-cache@~2.6.5: + version "2.6.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.6.5.tgz#e56d6354148ede8d7707b58d143220fd08df0fd5" + +mailcomposer@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/mailcomposer/-/mailcomposer-4.0.1.tgz#0e1c44b2a07cf740ee17dc149ba009f19cadfeb4" + dependencies: + buildmail "4.0.1" + libmime "3.0.0" + +mailgun-js@^0.7.0: + version "0.7.15" + resolved "https://registry.yarnpkg.com/mailgun-js/-/mailgun-js-0.7.15.tgz#ee366a20dac64c3c15c03d6c1b3e0ed795252abb" + dependencies: + async "~2.1.2" + debug "~2.2.0" + form-data "~2.1.1" + inflection "~1.10.0" + is-stream "^1.1.0" + path-proxy "~1.0.0" + proxy-agent "~2.0.0" + q "~1.4.0" + tsscmp "~1.0.0" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + +methods@^1.1.1, methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + +mime-db@~1.30.0: + version "1.30.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" + +mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7: + version "2.1.17" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" + dependencies: + mime-db "~1.30.0" + +mime@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" + +mime@^1.4.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + +minimatch@^3.0.2, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +mkdirp@0.5.x, "mkdirp@>= 0.0.1", mkdirp@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +moment@^2.20.1: + version "2.20.1" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.20.1.tgz#d6eb1a46cbcc14a2b2f9434112c1ff8907f313fd" + +momentjs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/momentjs/-/momentjs-2.0.0.tgz#73df904b4fa418f6e3c605e831cef6ed5518ebd4" + +mongodb-core@2.1.18: + version "2.1.18" + resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.18.tgz#4c46139bdf3a1f032ded91db49f38eec01659050" + dependencies: + bson "~1.0.4" + require_optional "~1.0.0" + +mongodb@^2.2.33: + version "2.2.34" + resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.34.tgz#a34f59bbeb61754aec432de72c3fe21526a44c1a" + dependencies: + es6-promise "3.2.1" + mongodb-core "2.1.18" + readable-stream "2.2.7" + +ms@0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +msgpack-lite@^0.1.26: + version "0.1.26" + resolved "https://registry.yarnpkg.com/msgpack-lite/-/msgpack-lite-0.1.26.tgz#dd3c50b26f059f25e7edee3644418358e2a9ad89" + dependencies: + event-lite "^0.1.1" + ieee754 "^1.1.8" + int64-buffer "^0.1.9" + isarray "^1.0.0" + +nan@^2.3.5: + version "2.8.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" + +natural@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/natural/-/natural-0.2.1.tgz#1eb5156a9d90b4591949e20e94ebc77bb2339eda" + dependencies: + apparatus ">= 0.0.9" + sylvester ">= 0.0.12" + underscore ">=1.3.1" + +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + +netmask@~1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/netmask/-/netmask-1.0.6.tgz#20297e89d86f6f6400f250d9f4f6b4c1945fcd35" + +nib@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/nib/-/nib-1.1.2.tgz#6a69ede4081b95c0def8be024a4c8ae0c2cbb6c7" + dependencies: + stylus "0.54.5" + +node-expat@^2.3.1: + version "2.3.16" + resolved "https://registry.yarnpkg.com/node-expat/-/node-expat-2.3.16.tgz#adb22174e1aaa5305996bd5b1aa6f2c8d5c0f239" + dependencies: + bindings "^1.2.1" + nan "^2.3.5" + +node-redis-scripty@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/node-redis-scripty/-/node-redis-scripty-0.0.5.tgz#4bf2d365ab6dab202cc08b7ac63f8f55aadc9625" + dependencies: + extend "^1.2.1" + lru-cache "^2.5.0" + +node-redis-warlock@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/node-redis-warlock/-/node-redis-warlock-0.2.0.tgz#56395b994c828e8e32f6aae53b93b6edfcd97990" + dependencies: + node-redis-scripty "0.0.5" + uuid "^2.0.1" + +node-uuid@~1.4.7: + version "1.4.8" + resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" + +nodemailer-direct-transport@3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz#e96fafb90358560947e569017d97e60738a50a86" + dependencies: + nodemailer-shared "1.1.0" + smtp-connection "2.12.0" + +nodemailer-fetch@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz#79c4908a1c0f5f375b73fe888da9828f6dc963a4" + +nodemailer-shared@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz#cf5994e2fd268d00f5cf0fa767a08169edb07ec0" + dependencies: + nodemailer-fetch "1.6.0" + +nodemailer-smtp-pool@2.8.2: + version "2.8.2" + resolved "https://registry.yarnpkg.com/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz#2eb94d6cf85780b1b4725ce853b9cbd5e8da8c72" + dependencies: + nodemailer-shared "1.1.0" + nodemailer-wellknown "0.1.10" + smtp-connection "2.12.0" + +nodemailer-smtp-transport@2.7.2: + version "2.7.2" + resolved "https://registry.yarnpkg.com/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz#03d71c76314f14ac7dbc7bf033a6a6d16d67fb77" + dependencies: + nodemailer-shared "1.1.0" + nodemailer-wellknown "0.1.10" + smtp-connection "2.12.0" + +nodemailer-wellknown@0.1.10: + version "0.1.10" + resolved "https://registry.yarnpkg.com/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz#586db8101db30cb4438eb546737a41aad0cf13d5" + +nodemailer@^2.5.0: + version "2.7.2" + resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-2.7.2.tgz#f242e649aeeae39b6c7ed740ef7b061c404d30f9" + dependencies: + libmime "3.0.0" + mailcomposer "4.0.1" + nodemailer-direct-transport "3.3.2" + nodemailer-shared "1.1.0" + nodemailer-smtp-pool "2.8.2" + nodemailer-smtp-transport "2.7.2" + socks "1.1.9" + +normalize-package-data@^2.3.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +oauth-sign@~0.8.1, oauth-sign@~0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@^4.0.1, object-assign@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-inspect@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" + +object-keys@^1.0.8: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + dependencies: + ee-first "1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +optionator@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + dependencies: + lcid "^1.0.0" + +pac-proxy-agent@1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz#34a385dfdf61d2f0ecace08858c745d3e791fd4d" + dependencies: + agent-base "2" + debug "2" + extend "3" + get-uri "2" + http-proxy-agent "1" + https-proxy-agent "1" + pac-resolver "~2.0.0" + raw-body "2" + socks-proxy-agent "2" + +pac-resolver@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-2.0.0.tgz#99b88d2f193fbdeefc1c9a529c1f3260ab5277cd" + dependencies: + co "~3.0.6" + degenerator "~1.0.2" + ip "1.0.1" + netmask "~1.0.4" + thunkify "~2.1.1" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parse-ms@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" + +parseurl@~1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + dependencies: + pinkie-promise "^2.0.0" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + +path-proxy@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/path-proxy/-/path-proxy-1.0.0.tgz#18e8a36859fc9d2f1a53b48dee138543c020de5e" + dependencies: + inflection "~1.3.0" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +plur@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + +pretty-ms@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" + dependencies: + is-finite "^1.0.1" + parse-ms "^1.0.0" + plur "^1.0.0" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + +promise@^7.0.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + dependencies: + asap "~2.0.3" + +proxy-addr@~2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.5.2" + +proxy-agent@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-2.0.0.tgz#57eb5347aa805d74ec681cb25649dba39c933499" + dependencies: + agent-base "2" + debug "2" + extend "3" + http-proxy-agent "1" + https-proxy-agent "1" + lru-cache "~2.6.5" + pac-proxy-agent "1" + socks-proxy-agent "2" + +pug-attrs@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-2.0.2.tgz#8be2b2225568ffa75d1b866982bff9f4111affcb" + dependencies: + constantinople "^3.0.1" + js-stringify "^1.0.1" + pug-runtime "^2.0.3" + +pug-code-gen@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-2.0.0.tgz#96aea39a9e62f1ec5d2b6a5b42a29d528c70b43d" + dependencies: + constantinople "^3.0.1" + doctypes "^1.1.0" + js-stringify "^1.0.1" + pug-attrs "^2.0.2" + pug-error "^1.3.2" + pug-runtime "^2.0.3" + void-elements "^2.0.1" + with "^5.0.0" + +pug-error@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-1.3.2.tgz#53ae7d9d29bb03cf564493a026109f54c47f5f26" + +pug-filters@^2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-2.1.5.tgz#66bf6e80d97fbef829bab0aa35eddff33fc964f3" + dependencies: + clean-css "^3.3.0" + constantinople "^3.0.1" + jstransformer "1.0.0" + pug-error "^1.3.2" + pug-walk "^1.1.5" + resolve "^1.1.6" + uglify-js "^2.6.1" + +pug-lexer@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-3.1.0.tgz#fd087376d4a675b4f59f8fef422883434e9581a2" + dependencies: + character-parser "^2.1.1" + is-expression "^3.0.0" + pug-error "^1.3.2" + +pug-linker@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-3.0.3.tgz#25f59eb750237f0368e59c3379764229c0189c41" + dependencies: + pug-error "^1.3.2" + pug-walk "^1.1.5" + +pug-load@^2.0.9: + version "2.0.9" + resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-2.0.9.tgz#ee217c914cc1d9324d44b86c32d1df241d36de7a" + dependencies: + object-assign "^4.1.0" + pug-walk "^1.1.5" + +pug-parser@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-4.0.0.tgz#c9f52322e4eabe4bf5beeba64ed18373bb627801" + dependencies: + pug-error "^1.3.2" + token-stream "0.0.1" + +pug-runtime@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-2.0.3.tgz#98162607b0fce9e254d427f33987a5aee7168bda" + +pug-strip-comments@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-1.0.2.tgz#d313afa01bcc374980e1399e23ebf2eb9bdc8513" + dependencies: + pug-error "^1.3.2" + +pug-walk@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-1.1.5.tgz#90e943acbcf7021e6454cf1b32245891cba6f851" + +pug@^2.0.0-beta3: + version "2.0.0-rc.4" + resolved "https://registry.yarnpkg.com/pug/-/pug-2.0.0-rc.4.tgz#b7b08f6599bd5302568042b7436984fb28c80a13" + dependencies: + pug-code-gen "^2.0.0" + pug-filters "^2.1.5" + pug-lexer "^3.1.0" + pug-linker "^3.0.3" + pug-load "^2.0.9" + pug-parser "^4.0.0" + pug-runtime "^2.0.3" + pug-strip-comments "^1.0.2" + +punycode@1.4.1, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +q@~1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" + +qs@6.5.1, qs@^6.5.1, qs@~6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" + +qs@~6.2.0: + version "6.2.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" + +range-parser@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + +raw-body@2, raw-body@2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" + dependencies: + bytes "3.0.0" + http-errors "1.6.2" + iconv-lite "0.4.19" + unpipe "1.0.0" + +re-emitter@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +readable-stream@1.1.x, "readable-stream@1.x >=1.1.9", readable-stream@^1.0.31: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@2, readable-stream@^2.3.0: + version "2.3.4" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readable-stream@2.2.7: + version "2.2.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.7.tgz#07057acbe2467b22042d36f98c5ad507054e95b1" + dependencies: + buffer-shims "~1.0.0" + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~1.0.0" + util-deprecate "~1.0.1" + +readable-stream@^2.0.0, readable-stream@^2.0.5, readable-stream@^2.1.5: + version "2.3.3" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readable-stream@~2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + dependencies: + resolve "^1.1.6" + +redis-commands@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.3.1.tgz#81d826f45fa9c8b2011f4cd7a0fe597d241d442b" + +redis-parser@^2.0.0, redis-parser@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" + +redis@^0.12.1: + version "0.12.1" + resolved "https://registry.yarnpkg.com/redis/-/redis-0.12.1.tgz#64df76ad0fc8acebaebd2a0645e8a48fac49185e" + +redis@^2.7.1: + version "2.8.0" + resolved "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" + dependencies: + double-ended-queue "^2.1.0-0" + redis-commands "^1.2.0" + redis-parser "^2.6.0" + +redis@~2.6.0-2: + version "2.6.5" + resolved "https://registry.yarnpkg.com/redis/-/redis-2.6.5.tgz#87c1eff4a489f94b70871f3d08b6988f23a95687" + dependencies: + double-ended-queue "^2.1.0-0" + redis-commands "^1.2.0" + redis-parser "^2.0.0" + +reds@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/reds/-/reds-0.2.5.tgz#38a767f7663cd749036848697d82c74fd29bc01f" + dependencies: + natural "^0.2.0" + redis "^0.12.1" + +repeat-string@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +request@2.75.x: + version "2.75.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + bl "~1.1.2" + caseless "~0.11.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.0.0" + har-validator "~2.0.6" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + node-uuid "~1.4.7" + oauth-sign "~0.8.1" + qs "~6.2.0" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "~0.4.1" + +request@^2.0.0, request@^2.74.0: + version "2.83.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.6.0" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.1" + forever-agent "~0.6.1" + form-data "~2.3.1" + har-validator "~5.0.3" + hawk "~6.0.2" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.17" + oauth-sign "~0.8.2" + performance-now "^2.1.0" + qs "~6.5.1" + safe-buffer "^5.1.1" + stringstream "~0.0.5" + tough-cookie "~2.3.3" + tunnel-agent "^0.6.0" + uuid "^3.1.0" + +requestretry@^1.2.2: + version "1.13.0" + resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-1.13.0.tgz#213ec1006eeb750e8b8ce54176283d15a8d55d94" + dependencies: + extend "^3.0.0" + lodash "^4.15.0" + request "^2.74.0" + when "^3.7.7" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +require_optional@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" + dependencies: + resolve-from "^2.0.0" + semver "^5.1.0" + +resolve-from@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" + +resolve@^1.1.6: + version "1.5.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" + dependencies: + path-parse "^1.0.5" + +resolve@~1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" + dependencies: + path-parse "^1.0.5" + +resumer@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" + dependencies: + through "~2.3.4" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + +sax@0.5.x: + version "0.5.8" + resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1" + +"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + +semver@~5.0.1: + version "5.0.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" + +send@0.16.1: + version "0.16.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" + dependencies: + debug "2.6.9" + depd "~1.1.1" + destroy "~1.0.4" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.6.2" + mime "1.4.1" + ms "2.0.0" + on-finished "~2.3.0" + range-parser "~1.2.0" + statuses "~1.3.1" + +serve-static@1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" + dependencies: + encodeurl "~1.0.1" + escape-html "~1.0.3" + parseurl "~1.3.2" + send "0.16.1" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +setprototypeof@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + +shelljs@^0.7.8: + version "0.7.8" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +slack-node@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/slack-node/-/slack-node-0.2.0.tgz#de4b8dddaa8b793f61dbd2938104fdabf37dfa30" + dependencies: + requestretry "^1.2.2" + +smart-buffer@^1.0.13, smart-buffer@^1.0.4: + version "1.1.15" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-1.1.15.tgz#7f114b5b65fab3e2a35aa775bb12f0d1c649bf16" + +smtp-connection@2.12.0: + version "2.12.0" + resolved "https://registry.yarnpkg.com/smtp-connection/-/smtp-connection-2.12.0.tgz#d76ef9127cb23c2259edb1e8349c2e8d5e2d74c1" + dependencies: + httpntlm "1.6.1" + nodemailer-shared "1.1.0" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +sntp@2.x.x: + version "2.1.0" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" + dependencies: + hoek "4.x.x" + +socks-proxy-agent@2: + version "2.1.1" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz#86ebb07193258637870e13b7bd99f26c663df3d3" + dependencies: + agent-base "2" + extend "3" + socks "~1.1.5" + +socks@1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/socks/-/socks-1.1.9.tgz#628d7e4d04912435445ac0b6e459376cb3e6d691" + dependencies: + ip "^1.1.2" + smart-buffer "^1.0.4" + +socks@~1.1.5: + version "1.1.10" + resolved "https://registry.yarnpkg.com/socks/-/socks-1.1.10.tgz#5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a" + dependencies: + ip "^1.1.4" + smart-buffer "^1.0.13" + +source-map@0.1.x: + version "0.1.43" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" + dependencies: + amdefine ">=0.0.4" + +source-map@0.4.x: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@~0.5.1, source-map@~0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + +spdx-correct@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" + dependencies: + spdx-license-ids "^1.0.2" + +spdx-expression-parse@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" + +spdx-license-ids@^1.0.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + +split@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" + dependencies: + through "2" + +sshpk@^1.7.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +"statuses@>= 1.3.1 < 2": + version "1.4.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" + +statuses@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + +streamroller@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-0.7.0.tgz#a1d1b7cf83d39afb0d63049a5acbf93493bdf64b" + dependencies: + date-format "^1.2.0" + debug "^3.1.0" + mkdirp "^0.5.1" + readable-stream "^2.3.0" + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string.prototype.trim@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.0" + function-bind "^1.0.2" + +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + +string_decoder@~1.0.0, string_decoder@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" + dependencies: + safe-buffer "~5.1.0" + +stringstream@~0.0.4, stringstream@~0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + dependencies: + is-utf8 "^0.2.0" + +stylus@0.54.5, stylus@~0.54.5: + version "0.54.5" + resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79" + dependencies: + css-parse "1.7.x" + debug "*" + glob "7.0.x" + mkdirp "0.5.x" + sax "0.5.x" + source-map "0.1.x" + +superagent@^3.5.2: + version "3.8.2" + resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.8.2.tgz#e4a11b9d047f7d3efeb3bbe536d9ec0021d16403" + dependencies: + component-emitter "^1.2.0" + cookiejar "^2.1.0" + debug "^3.1.0" + extend "^3.0.0" + form-data "^2.3.1" + formidable "^1.1.1" + methods "^1.1.1" + mime "^1.4.1" + qs "^6.5.1" + readable-stream "^2.0.5" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + +"sylvester@>= 0.0.12", "sylvester@>= 0.0.8": + version "0.0.21" + resolved "https://registry.yarnpkg.com/sylvester/-/sylvester-0.0.21.tgz#2987b1ce2bd2f38b0dce2a34388884bfa4400ea7" + +tap-out@^1.4.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-1.4.2.tgz#c907ec1bf9405111d088263e92f5608b88cbb37a" + dependencies: + re-emitter "^1.0.0" + readable-stream "^2.0.0" + split "^1.0.0" + trim "0.0.1" + +tap-spec@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/tap-spec/-/tap-spec-4.1.1.tgz#e2e9f26f5208232b1f562288c97624d58a88f05a" + dependencies: + chalk "^1.0.0" + duplexer "^0.1.1" + figures "^1.4.0" + lodash "^3.6.0" + pretty-ms "^2.1.0" + repeat-string "^1.5.2" + tap-out "^1.4.1" + through2 "^2.0.0" + +tape@^4.8.0: + version "4.8.0" + resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" + dependencies: + deep-equal "~1.0.1" + defined "~1.0.0" + for-each "~0.3.2" + function-bind "~1.1.0" + glob "~7.1.2" + has "~1.0.1" + inherits "~2.0.3" + minimist "~1.2.0" + object-inspect "~1.3.0" + resolve "~1.4.0" + resumer "~0.0.0" + string.prototype.trim "~1.1.2" + through "~2.3.8" + +through2@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" + dependencies: + readable-stream "^2.1.5" + xtend "~4.0.1" + +through@2, through@^2.3.6, through@~2.3.4, through@~2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + +thunkify@~2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/thunkify/-/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d" + +timespan@2.3.x: + version "2.3.0" + resolved "https://registry.yarnpkg.com/timespan/-/timespan-2.3.0.tgz#4902ce040bd13d845c8f59b27e9d59bad6f39929" + +token-stream@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-0.0.1.tgz#ceeefc717a76c4316f126d0b9dbaa55d7e7df01a" + +tough-cookie@~2.3.0, tough-cookie@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" + dependencies: + punycode "^1.4.1" + +trim@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" + +tsscmp@~1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" + +tunnel-agent@~0.4.1: + version "0.4.3" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +type-is@~1.6.15: + version "1.6.15" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" + dependencies: + media-typer "0.3.0" + mime-types "~2.1.15" + +uglify-js@^2.6.1: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +unbzip2-stream@^1.0.9: + version "1.2.5" + resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz#73a033a567bbbde59654b193c44d48a7e4f43c47" + dependencies: + buffer "^3.0.1" + through "^2.3.6" + +underscore@>=1.3.1: + version "1.8.3" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" + +underscore@~1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + +uuid@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" + +uuid@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" + +validate-npm-package-license@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + dependencies: + spdx-correct "~1.0.0" + spdx-expression-parse "~1.0.0" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +void-elements@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" + +when@^3.7.7: + version "3.7.8" + resolved "https://registry.yarnpkg.com/when/-/when-3.7.8.tgz#c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82" + +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +window-size@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" + +with@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe" + dependencies: + acorn "^3.1.0" + acorn-globals "^3.0.0" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + +worker-nodes@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/worker-nodes/-/worker-nodes-1.6.0.tgz#50dda4bf15c87cc0951e454e7968f420502212b8" + dependencies: + msgpack-lite "^0.1.26" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +wtf_wikipedia@^2.4.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/wtf_wikipedia/-/wtf_wikipedia-2.5.0.tgz#2fe18bb5dcf4b70e6acbbbec2207a0c33c2f73d3" + dependencies: + jshashes "^1.0.6" + superagent "^3.5.2" + +xml-stream@^0.4.5: + version "0.4.5" + resolved "https://registry.yarnpkg.com/xml-stream/-/xml-stream-0.4.5.tgz#7452d85b37f9b881a70eff0cf74a0df02088edeb" + dependencies: + iconv "^2.1.4" + node-expat "^2.3.1" + readable-stream "^1.0.31" + +xmlsplit@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/xmlsplit/-/xmlsplit-1.2.8.tgz#ed8857dbd90eada377d357c8ada704aebfc3a35c" + dependencies: + util "^0.10.3" + +xregexp@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" + +xtend@^4.0.0, xtend@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yargs-parser@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" + dependencies: + camelcase "^3.0.0" + lodash.assign "^4.0.6" + +yargs@^4.0.0: + version "4.8.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" + dependencies: + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + lodash.assign "^4.0.3" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.1" + which-module "^1.0.0" + window-size "^0.2.0" + y18n "^3.2.1" + yargs-parser "^2.4.1" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" From 147d2d781624dd7463bea5e388a16b088ae350cc Mon Sep 17 00:00:00 2001 From: devrim Date: Tue, 13 Feb 2018 10:08:04 -0800 Subject: [PATCH 09/42] infra for skipping pages --- src/worker.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/worker.js b/src/worker.js index 11f1473..15f2505 100644 --- a/src/worker.js +++ b/src/worker.js @@ -39,6 +39,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { page = null; pageCount = 0; pages = []; + var skipPage = false; workerBegin = Date.now() jobBegin = Date.now() insertToDb = function() { @@ -72,6 +73,9 @@ const xmlSplit = async (options, chunkSize, workerNr) => { page._id = line.substring(line.lastIndexOf("") + 7, line.lastIndexOf("")); } } + if (line.indexOf("")) { + skipPage = true; + } } if (line.indexOf("") !== -1) { page = { @@ -81,7 +85,10 @@ const xmlSplit = async (options, chunkSize, workerNr) => { pageCount++; } if (page && line.indexOf("") !== -1) { - pages.push(page); + if (!skipPage){ + pages.push(page); + } + skipPage = false; page = null; if (pageCount % options.batch_size === 0) { return insertToDb(); From e508e8984184ef7f6136d0b91bf4c4424c1b99b7 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Tue, 13 Feb 2018 13:59:01 -0500 Subject: [PATCH 10/42] linter fixes --- .eslintrc | 2 +- scratch.js | 11 +++------ src/index.js | 21 +++++++----------- src/multithreader.js | 21 +++++++++++++----- src/worker.js | 53 ++++++++++++++++++++++++++++---------------- 5 files changed, 61 insertions(+), 47 deletions(-) diff --git a/.eslintrc b/.eslintrc index 8df2f2e..afcbe29 100644 --- a/.eslintrc +++ b/.eslintrc @@ -3,7 +3,7 @@ "es6": true }, "parserOptions": { - "ecmaVersion": 6, + "ecmaVersion": 2017, "sourceType": "module", "ecmaFeatures": { }, }, diff --git a/scratch.js b/scratch.js index 78b2663..4972560 100644 --- a/scratch.js +++ b/scratch.js @@ -1,12 +1,7 @@ const w2m = require('./src') -// w2m({ -// // file: './tests/tinywiki-latest-pages-articles.xml.bz2', -// file: './tests/smallwiki-latest-pages-articles.xml.bz2', -// db: 'enwiki3' -// }) - +const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' w2m({ - file: './tests/tinywiki-latest-pages-articles.xml.bz2', - db: 'tempwiki', + file: path, + db: 'enpwiki', }) diff --git a/src/index.js b/src/index.js index 63a77c8..a8a8c55 100755 --- a/src/index.js +++ b/src/index.js @@ -1,31 +1,26 @@ //stream a big wikipedia xml.bz2 file into mongodb // usage: // node index.js afwiki-latest-pages-articles.xml.bz2 -const fs = require('fs'); -const XmlStream = require('xml-stream'); -const bz2 = require('unbzip2-stream'); const init = require('./00-init-db'); -const doArticle = require('./01-article-logic'); -const writeDb = require('./03-write-db'); -const done = require('./_done'); -const moment = require("moment") const multithreader = require("./multithreader") -const noop = () => {} +const noop = () => { +} var jobBegin = 0 -process.on('unhandledRejection', up => { console.log(up) }) +process.on('unhandledRejection', up => { + console.log(up) +}) //open up a mongo db, and start xml-streaming.. -const main = async (options, callback=noop) => { - +const main = async (options, callback = noop ) => { params = Object.assign({}, options); multithreader.start(params) await init(options) - setInterval( async () => { + setInterval(async () => { count = await options.db.collection("queue").count() console.log(`final doc count: ${count} in last 60 seconds.`) - },60000) + }, 60000) } diff --git a/src/multithreader.js b/src/multithreader.js index 64c64df..36d9202 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -1,4 +1,10 @@ -var WorkerNodes, cpuCount, fs, start, workerLog, workerLogs, workerNodes; +var WorkerNodes, + cpuCount, + fs, + start, + workerLog, + workerLogs, + workerNodes; WorkerNodes = require('worker-nodes'); @@ -8,7 +14,7 @@ cpus = require('os').cpus() cpuCount = cpus.length; workerNodes = new WorkerNodes(__dirname + '/worker.js', { - minWorkers: cpuCount-1, + minWorkers: cpuCount - 1, autoStart: true, maxTasksPerWorker: 1 }); @@ -21,12 +27,13 @@ workerLog = function(msg) { if (workerLogs[name = msg.pid] == null) { workerLogs[name] = {}; } - return workerLogs[msg.pid] = msg; + workerLogs[msg.pid] = msg; } }; start = async function(options) { - var chunkSize, size; + var chunkSize, + size; size = fs.statSync(options.file)["size"]; chunkSize = Math.floor(size / cpuCount); console.log(`${cpuCount} cpu cores detected. file size (bytes): ${size} file will be divided into: ${cpuCount} each process will be given (bytes): ${chunkSize}`); @@ -35,7 +42,7 @@ start = async function(options) { await workerNodes.ready(); - cpus.forEach((val,key) => { + cpus.forEach((val, key) => { workerNodes.call(options, chunkSize, key); }); }; @@ -52,4 +59,6 @@ process.on('SIGINT', async function() { return process.exit(); }); -module.exports = {start:start} +module.exports = { + start: start +} diff --git a/src/worker.js b/src/worker.js index 15f2505..ef30cd6 100644 --- a/src/worker.js +++ b/src/worker.js @@ -1,30 +1,45 @@ const LineByLineReader = require('line-by-line') -const fs = require("fs") const init = require('./00-init-db'); const log4js = require('log4js'); log4js.configure({ - appenders: { cheese: { type: 'file', filename: __dirname+'/../worker.logs' } }, - categories: { default: { appenders: ['cheese'], level: 'info' } } + appenders: { + cheese: { + type: 'file', + filename: __dirname + '/../worker.logs' + } + }, + categories: { + default: { + appenders: ['cheese'], + level: 'info' + } + } }); const logger = log4js.getLogger('cheese'); const xmlSplit = async (options, chunkSize, workerNr) => { - var cpuCount, file, insertToDb, lineNumber, lr, page, pageCount, pages, size; - - if (workerNr === 0){ + var cpuCount, + file, + insertToDb, + lineNumber, + lr, + page, + pageCount, + pages, + size; + + if (workerNr === 0) { startByte = 0 - } - else - { + } else { // start a megabyte earlier - startByte = (workerNr*chunkSize)-1000000 + startByte = (workerNr * chunkSize) - 1000000 } - + // end 2 megabytes later so we don't lose pages cut by chunks - endByte = startByte+chunkSize+3000000 + endByte = startByte + chunkSize + 3000000 logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) @@ -50,12 +65,12 @@ const xmlSplit = async (options, chunkSize, workerNr) => { } lr.pause(); insertMany = Object.assign([], pages); - logger.info("inserting",insertMany.length,"documents. first:", insertMany[0]._id, "and last:", insertMany[insertMany.length - 1]._id); + logger.info("inserting", insertMany.length, "documents. first:", insertMany[0]._id, "and last:", insertMany[insertMany.length - 1]._id); pages = []; options.db.collection("queue").insertMany(insertMany, function() { // tbd. error checks }); - logger.info("batch complete in: "+((Date.now()-jobBegin)/1000)+" secs") + logger.info("batch complete in: " + ((Date.now() - jobBegin) / 1000) + " secs") jobBegin = Date.now() return lr.resume(); }; @@ -63,7 +78,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { // 'err' contains error object return logger.error("linereader error"); }); - + lr.on('line', function(line) { lineNumber++; if (page) { @@ -85,13 +100,13 @@ const xmlSplit = async (options, chunkSize, workerNr) => { pageCount++; } if (page && line.indexOf("") !== -1) { - if (!skipPage){ + if (!skipPage) { pages.push(page); } skipPage = false; page = null; if (pageCount % options.batch_size === 0) { - return insertToDb(); + insertToDb(); } } }); @@ -99,9 +114,9 @@ const xmlSplit = async (options, chunkSize, workerNr) => { // All lines are read, file is closed now. // insert remaining pages. insertToDb(); - logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now()-jobBegin)/1000)} secs.`); + logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now() - jobBegin) / 1000)} secs.`); // process.exit() - return + return }); }; From 93bb07168c7c601937ce1ee0a601ba19ba158e3f Mon Sep 17 00:00:00 2001 From: spencermountain Date: Tue, 13 Feb 2018 14:02:52 -0500 Subject: [PATCH 11/42] move unused files to ./old dir --- {src => old}/01-article-logic.js | 0 {src => old}/02-transform-wiki.js | 0 {src => old}/03-write-db.js | 0 {src => old}/_done.js | 0 package-lock.json | 1503 +- src/index.js | 1 - src/multithreader.js | 2 +- src/worker.js | 6 +- worker.logs | 57453 +--------------------------- 9 files changed, 1508 insertions(+), 57457 deletions(-) rename {src => old}/01-article-logic.js (100%) rename {src => old}/02-transform-wiki.js (100%) rename {src => old}/03-write-db.js (100%) rename {src => old}/_done.js (100%) diff --git a/src/01-article-logic.js b/old/01-article-logic.js similarity index 100% rename from src/01-article-logic.js rename to old/01-article-logic.js diff --git a/src/02-transform-wiki.js b/old/02-transform-wiki.js similarity index 100% rename from src/02-transform-wiki.js rename to old/02-transform-wiki.js diff --git a/src/03-write-db.js b/old/03-write-db.js similarity index 100% rename from src/03-write-db.js rename to old/03-write-db.js diff --git a/src/_done.js b/old/_done.js similarity index 100% rename from src/_done.js rename to old/_done.js diff --git a/package-lock.json b/package-lock.json index 0673402..49f77ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -33,6 +33,45 @@ } } }, + "addressparser": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz", + "integrity": "sha1-R6++GiqSYhkdtoOOT9HTm0CCF0Y=", + "optional": true + }, + "agent-base": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz", + "integrity": "sha1-1t4Q1a9hMtW9aSQn1G/FOFOQlMc=", + "requires": { + "extend": "3.0.1", + "semver": "5.0.3" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "semver": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", + "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=" + } + } + }, + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "optional": true, + "requires": { + "co": "4.6.0", + "fast-deep-equal": "1.0.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" + } + }, "align-text": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", @@ -48,6 +87,45 @@ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" }, + "amqplib": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/amqplib/-/amqplib-0.5.2.tgz", + "integrity": "sha512-l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA==", + "optional": true, + "requires": { + "bitsyntax": "0.0.4", + "bluebird": "3.5.1", + "buffer-more-ints": "0.0.2", + "readable-stream": "1.1.14", + "safe-buffer": "5.1.1" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "optional": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "optional": true + } + } + }, "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", @@ -56,8 +134,7 @@ "ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, "apparatus": { "version": "0.0.9", @@ -78,11 +155,58 @@ "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "optional": true + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "ast-types": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.10.2.tgz", + "integrity": "sha512-ufWX953VU1eIuWqxS0nRDMYlGyFH+yxln5CsmIHlpzEt3fdYqUnRtsFt0XAsQot8OaVCwFqxT1RiwvtzYjeYeg==", + "optional": true + }, + "async": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/async/-/async-2.1.5.tgz", + "integrity": "sha1-5YfGhYCZSsZ/xW/4bTrFa9voELw=", + "optional": true, + "requires": { + "lodash": "4.17.5" + } + }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "optional": true + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", + "optional": true + }, + "axios": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.15.3.tgz", + "integrity": "sha1-LJ1jiy4ZGgjqHWzJiOrda6W9wFM=", + "optional": true, + "requires": { + "follow-redirects": "1.0.0" + } + }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", @@ -93,11 +217,66 @@ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz", "integrity": "sha1-EQHpVE9KdrG8OybUUsqW16NeeXg=" }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, "bindings": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz", "integrity": "sha512-DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw==" }, + "bitsyntax": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/bitsyntax/-/bitsyntax-0.0.4.tgz", + "integrity": "sha1-6xDMb4K4xJDj6FaY8H6D1G4MuoI=", + "optional": true, + "requires": { + "buffer-more-ints": "0.0.2" + } + }, + "bl": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", + "integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=", + "optional": true, + "requires": { + "readable-stream": "2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "optional": true + } + } + }, + "bluebird": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", + "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==", + "optional": true + }, "body-parser": { "version": "1.18.2", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", @@ -115,6 +294,15 @@ "type-is": "1.6.15" } }, + "boom": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", + "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "optional": true, + "requires": { + "hoek": "4.2.0" + } + }, "brace-expansion": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", @@ -139,11 +327,31 @@ "isarray": "1.0.0" } }, + "buffer-more-ints": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz", + "integrity": "sha1-JrOIXRD6E9t/wBquOquHAZngEkw=" + }, "buffer-shims": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=" }, + "buildmail": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz", + "integrity": "sha1-h393OLeHKYccmhBeO4N9K+EaenI=", + "optional": true, + "requires": { + "addressparser": "1.0.1", + "libbase64": "0.1.0", + "libmime": "3.0.0", + "libqp": "1.1.0", + "nodemailer-fetch": "1.6.0", + "nodemailer-shared": "1.1.0", + "punycode": "1.4.1" + } + }, "builtin-modules": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", @@ -159,6 +367,12 @@ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "optional": true + }, "center-align": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", @@ -172,7 +386,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, "requires": { "ansi-styles": "2.2.1", "escape-string-regexp": "1.0.5", @@ -189,6 +402,11 @@ "is-regex": "1.0.4" } }, + "circular-json": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.1.tgz", + "integrity": "sha512-UjgcRlTAhAkLeXmDe2wK7ktwy/tgAqxiSndTIPiFZuIPLZmzHzWMwUIe9h9m/OokypG7snxCDEuwJshGBdPvaw==" + }, "clean-css": { "version": "3.4.28", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", @@ -235,6 +453,12 @@ "mkdirp": "0.5.1" } }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "optional": true + }, "code-point-at": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", @@ -302,11 +526,51 @@ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, + "cryptiles": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", + "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "optional": true, + "requires": { + "boom": "5.2.0" + }, + "dependencies": { + "boom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", + "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "optional": true, + "requires": { + "hoek": "4.2.0" + } + } + } + }, "css-parse": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz", "integrity": "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs=" }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "optional": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "data-uri-to-buffer": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz", + "integrity": "sha512-vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==", + "optional": true + }, + "date-format": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", + "integrity": "sha1-YV6CjiM90aubua4JUODOzPpuytg=" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -326,6 +590,12 @@ "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", "dev": true }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "optional": true + }, "define-properties": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", @@ -342,6 +612,17 @@ "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", "dev": true }, + "degenerator": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-1.0.4.tgz", + "integrity": "sha1-/PSQo37OJmRk2cxDGrmMWBnO0JU=", + "optional": true, + "requires": { + "ast-types": "0.10.2", + "escodegen": "1.9.0", + "esprima": "3.1.3" + } + }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -373,6 +654,15 @@ "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", "dev": true }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -428,14 +718,56 @@ "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "escodegen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.0.tgz", + "integrity": "sha512-v0MYvNQ32bzwoG2OSFzWAkuahDQHK92JBN0pTAALJ4RIxEZe766QJPDR8Hqy7XNUy5K3fnVL76OqYAdc4TZEIw==", + "optional": true, + "requires": { + "esprima": "3.1.3", + "estraverse": "4.2.0", + "esutils": "2.0.2", + "optionator": "0.8.2", + "source-map": "0.5.7" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "optional": true + } + } + }, + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "optional": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "optional": true }, "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" }, + "event-lite": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/event-lite/-/event-lite-0.1.1.tgz", + "integrity": "sha1-R88IqNN9C2lM23s7F7UfqsZXYIY=" + }, "express": { "version": "4.16.2", "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz", @@ -490,6 +822,29 @@ "resolved": "https://registry.npmjs.org/extend/-/extend-1.3.0.tgz", "integrity": "sha1-0VFvsP9WJNLr+RI+odrFoZlABPg=" }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", + "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=", + "optional": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "optional": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "optional": true + }, "figures": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", @@ -500,6 +855,12 @@ "object-assign": "4.1.1" } }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, "finalhandler": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", @@ -530,6 +891,15 @@ "pinkie-promise": "2.0.1" } }, + "follow-redirects": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.0.0.tgz", + "integrity": "sha1-jjQpjL0uF28lTv/sdaHHjMhJ/Tc=", + "optional": true, + "requires": { + "debug": "2.6.9" + } + }, "for-each": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz", @@ -545,6 +915,12 @@ "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", "dev": true }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "optional": true + }, "form-data": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", @@ -575,16 +951,98 @@ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, + "ftp": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", + "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=", + "optional": true, + "requires": { + "readable-stream": "1.1.14", + "xregexp": "2.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "optional": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "optional": true + } + } + }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, + "generate-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", + "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", + "optional": true + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "optional": true, + "requires": { + "is-property": "1.0.2" + } + }, "get-caller-file": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" }, + "get-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-2.0.1.tgz", + "integrity": "sha512-7aelVrYqCLuVjq2kEKRTH8fXPTC0xKTkM+G7UlFkEwCXY3sFbSxvY375JoFowOAYbkaU47SrBvOefUlLZZ+6QA==", + "optional": true, + "requires": { + "data-uri-to-buffer": "1.2.0", + "debug": "2.6.9", + "extend": "3.0.1", + "file-uri-to-path": "1.0.0", + "ftp": "0.3.10", + "readable-stream": "2.2.7" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "optional": true + } + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "optional": true, + "requires": { + "assert-plus": "1.0.0" + } + }, "glob": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", @@ -608,6 +1066,22 @@ "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "optional": true + }, + "har-validator": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "optional": true, + "requires": { + "ajv": "5.5.2", + "har-schema": "2.0.0" + } + }, "has": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", @@ -620,11 +1094,37 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, "requires": { "ansi-regex": "2.1.1" } }, + "hawk": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", + "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "optional": true, + "requires": { + "boom": "4.3.1", + "cryptiles": "3.1.2", + "hoek": "4.2.0", + "sntp": "2.1.0" + } + }, + "hipchat-notifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz", + "integrity": "sha1-ttJJdVQ3wZEII2d5nTupoPI7Ix4=", + "optional": true, + "requires": { + "lodash": "4.17.5", + "request": "2.83.0" + } + }, + "hoek": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", + "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" + }, "hosted-git-info": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", @@ -648,6 +1148,72 @@ } } }, + "http-proxy-agent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz", + "integrity": "sha1-zBzjjkU7+YSg93AtLdWcc9CBKEo=", + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "httpntlm": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz", + "integrity": "sha1-rQFScUOi6Hc8+uapb1hla7UqNLI=", + "requires": { + "httpreq": "0.4.24", + "underscore": "1.7.0" + }, + "dependencies": { + "underscore": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", + "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=" + } + } + }, + "httpreq": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/httpreq/-/httpreq-0.4.24.tgz", + "integrity": "sha1-QzX/2CzZaWaKOUZckprGHWOTYn8=" + }, + "https-proxy-agent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz", + "integrity": "sha1-NffabEjOTdv6JkiRrFk+5f+GceY=", + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + } + } + }, "iconv": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/iconv/-/iconv-2.3.0.tgz", @@ -666,6 +1232,12 @@ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" }, + "inflection": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.10.0.tgz", + "integrity": "sha1-W//LEZetPoEFD44X4hZoCH7p6y8=", + "optional": true + }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -680,6 +1252,11 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, + "int64-buffer": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/int64-buffer/-/int64-buffer-0.1.10.tgz", + "integrity": "sha1-J3siiofZWtd30HwTgyAiQGpHNCM=" + }, "interpret": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", @@ -691,6 +1268,12 @@ "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" }, + "ip": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.0.1.tgz", + "integrity": "sha1-x+NWzeoiWucbNtcPLnGpK6TkJZA=", + "optional": true + }, "ipaddr.js": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz", @@ -758,11 +1341,29 @@ "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=", "dev": true }, + "is-my-json-valid": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz", + "integrity": "sha512-Q2khNw+oBlWuaYvEEHtKSw/pCxD2L5Rc1C+UQme9X6JdRDh7m5D7HkozA0qa3DUkQ6VzCnEm8mVIQPyIRkI5sQ==", + "optional": true, + "requires": { + "generate-function": "2.0.0", + "generate-object-property": "1.2.0", + "jsonpointer": "4.0.1", + "xtend": "4.0.1" + } + }, "is-promise": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" }, + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "optional": true + }, "is-regex": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", @@ -771,12 +1372,24 @@ "has": "1.0.1" } }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "optional": true + }, "is-symbol": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", "dev": true }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "optional": true + }, "is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", @@ -787,16 +1400,63 @@ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "optional": true + }, "js-stringify": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", "integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds=" }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, "jshashes": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/jshashes/-/jshashes-1.0.7.tgz", "integrity": "sha1-vtjJeg6WMv0FE5FvVfdt1Uhr5Z8=" }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "optional": true + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "optional": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", + "optional": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, "jstransformer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", @@ -844,6 +1504,48 @@ "invert-kv": "1.0.0" } }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "optional": true, + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "libbase64": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz", + "integrity": "sha1-YjUag5VjrF/1vSbxL2Dpgwu3UeY=" + }, + "libmime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/libmime/-/libmime-3.0.0.tgz", + "integrity": "sha1-UaGp50SOy9Ms2lRCFnW7IbwJPaY=", + "requires": { + "iconv-lite": "0.4.15", + "libbase64": "0.1.0", + "libqp": "1.1.0" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", + "integrity": "sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es=" + } + } + }, + "libqp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz", + "integrity": "sha1-9ebgatdLeU+1tbZpiL9yjvHe2+g=" + }, + "line-by-line": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz", + "integrity": "sha512-MmwVPfOyp0lWnEZ3fBA8Ah4pMFvxO6WgWovqZNu7Y4J0TNnGcsV4S1LzECHbdgqk1hoHc2mFP1Axc37YUqwafg==" + }, "load-json-file": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", @@ -871,6 +1573,202 @@ "resolved": "https://registry.npmjs.org/log/-/log-1.4.0.tgz", "integrity": "sha1-S6HYkP3iSbAx3KA7w36q8yVlbxw=" }, + "log4js": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-2.5.3.tgz", + "integrity": "sha512-YL/qpTxYtK0iWWbuKCrevDZz5lh+OjyHHD+mICqpjnYGKdNRBvPeh/1uYjkKUemT1CSO4wwLOwphWMpKAnD9kw==", + "requires": { + "amqplib": "0.5.2", + "axios": "0.15.3", + "circular-json": "0.5.1", + "date-format": "1.2.0", + "debug": "3.1.0", + "hipchat-notifier": "1.1.0", + "loggly": "1.1.1", + "mailgun-js": "0.7.15", + "nodemailer": "2.7.2", + "redis": "2.8.0", + "semver": "5.5.0", + "slack-node": "0.2.0", + "streamroller": "0.7.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "redis": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", + "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", + "optional": true, + "requires": { + "double-ended-queue": "2.1.0-0", + "redis-commands": "1.3.1", + "redis-parser": "2.6.0" + } + } + } + }, + "loggly": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/loggly/-/loggly-1.1.1.tgz", + "integrity": "sha1-Cg/B0/o6XsRP3HuJe+uipGlc6+4=", + "optional": true, + "requires": { + "json-stringify-safe": "5.0.1", + "request": "2.75.0", + "timespan": "2.3.0" + }, + "dependencies": { + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "optional": true + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "optional": true + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "requires": { + "hoek": "2.16.3" + } + }, + "caseless": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", + "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", + "optional": true + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "optional": true, + "requires": { + "boom": "2.10.1" + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "optional": true + }, + "form-data": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.0.0.tgz", + "integrity": "sha1-bwrrrcxdoWwT4ezBETfYX5uIOyU=", + "optional": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "har-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", + "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "optional": true, + "requires": { + "chalk": "1.1.3", + "commander": "2.14.1", + "is-my-json-valid": "2.17.1", + "pinkie-promise": "2.0.1" + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "optional": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "optional": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "qs": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz", + "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=", + "optional": true + }, + "request": { + "version": "2.75.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.75.0.tgz", + "integrity": "sha1-0rgmiihtoT6qXQGt9dGMyQ9lfZM=", + "optional": true, + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.6.0", + "bl": "1.1.2", + "caseless": "0.11.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.0.0", + "har-validator": "2.0.6", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "node-uuid": "1.4.8", + "oauth-sign": "0.8.2", + "qs": "6.2.3", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.4.3" + } + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "optional": true, + "requires": { + "hoek": "2.16.3" + } + }, + "tunnel-agent": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", + "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", + "optional": true + } + } + }, "longest": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", @@ -881,6 +1779,61 @@ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=" }, + "mailcomposer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/mailcomposer/-/mailcomposer-4.0.1.tgz", + "integrity": "sha1-DhxEsqB890DuF9wUm6AJ8Zyt/rQ=", + "optional": true, + "requires": { + "buildmail": "4.0.1", + "libmime": "3.0.0" + } + }, + "mailgun-js": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/mailgun-js/-/mailgun-js-0.7.15.tgz", + "integrity": "sha1-7jZqINrGTDwVwD1sGz4O15UlKrs=", + "optional": true, + "requires": { + "async": "2.1.5", + "debug": "2.2.0", + "form-data": "2.1.4", + "inflection": "1.10.0", + "is-stream": "1.1.0", + "path-proxy": "1.0.0", + "proxy-agent": "2.0.0", + "q": "1.4.1", + "tsscmp": "1.0.5" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "optional": true, + "requires": { + "ms": "0.7.1" + } + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "optional": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", + "optional": true + } + } + }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -935,6 +1888,16 @@ "minimist": "0.0.8" } }, + "moment": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz", + "integrity": "sha512-Yh9y73JRljxW5QxN08Fner68eFLxM5ynNOAw2LbIB1YAGeQzZT8QFSUvkAz609Zf+IHhhaUxqZK8dG3W/+HEvg==" + }, + "momentjs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/momentjs/-/momentjs-2.0.0.tgz", + "integrity": "sha1-c9+QS0+kGPbjxgXoMc727VUY69Q=" + }, "mongodb": { "version": "2.2.34", "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.34.tgz", @@ -959,6 +1922,17 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, + "msgpack-lite": { + "version": "0.1.26", + "resolved": "https://registry.npmjs.org/msgpack-lite/-/msgpack-lite-0.1.26.tgz", + "integrity": "sha1-3TxQsm8FnyXn7e42REGDWOKprYk=", + "requires": { + "event-lite": "0.1.1", + "ieee754": "1.1.8", + "int64-buffer": "0.1.10", + "isarray": "1.0.0" + } + }, "nan": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", @@ -980,6 +1954,12 @@ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" }, + "netmask": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz", + "integrity": "sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU=", + "optional": true + }, "nib": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/nib/-/nib-1.1.2.tgz", @@ -1015,6 +1995,95 @@ "uuid": "2.0.3" } }, + "node-uuid": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", + "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=", + "optional": true + }, + "nodemailer": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-2.7.2.tgz", + "integrity": "sha1-8kLmSa7q45tsftdA73sGHEBNMPk=", + "optional": true, + "requires": { + "libmime": "3.0.0", + "mailcomposer": "4.0.1", + "nodemailer-direct-transport": "3.3.2", + "nodemailer-shared": "1.1.0", + "nodemailer-smtp-pool": "2.8.2", + "nodemailer-smtp-transport": "2.7.2", + "socks": "1.1.9" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "optional": true + }, + "socks": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.9.tgz", + "integrity": "sha1-Yo1+TQSRJDVEWsC25Fk3bLPm1pE=", + "optional": true, + "requires": { + "ip": "1.1.5", + "smart-buffer": "1.1.15" + } + } + } + }, + "nodemailer-direct-transport": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz", + "integrity": "sha1-6W+vuQNYVglH5WkBfZfmBzilCoY=", + "optional": true, + "requires": { + "nodemailer-shared": "1.1.0", + "smtp-connection": "2.12.0" + } + }, + "nodemailer-fetch": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz", + "integrity": "sha1-ecSQihwPXzdbc/6IjamCj23JY6Q=" + }, + "nodemailer-shared": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz", + "integrity": "sha1-z1mU4v0mjQD1zw+nZ6CBae2wfsA=", + "requires": { + "nodemailer-fetch": "1.6.0" + } + }, + "nodemailer-smtp-pool": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz", + "integrity": "sha1-LrlNbPhXgLG0clzoU7nL1ejajHI=", + "optional": true, + "requires": { + "nodemailer-shared": "1.1.0", + "nodemailer-wellknown": "0.1.10", + "smtp-connection": "2.12.0" + } + }, + "nodemailer-smtp-transport": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz", + "integrity": "sha1-A9ccdjFPFKx9vHvwM6am0W1n+3c=", + "optional": true, + "requires": { + "nodemailer-shared": "1.1.0", + "nodemailer-wellknown": "0.1.10", + "smtp-connection": "2.12.0" + } + }, + "nodemailer-wellknown": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz", + "integrity": "sha1-WG24EB2zDLRDjrVGc3pBqtDPE9U=" + }, "normalize-package-data": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", @@ -1031,6 +2100,12 @@ "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "optional": true + }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -1064,6 +2139,28 @@ "wrappy": "1.0.2" } }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "optional": true, + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + }, + "dependencies": { + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "optional": true + } + } + }, "os-locale": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", @@ -1072,6 +2169,52 @@ "lcid": "1.0.0" } }, + "pac-proxy-agent": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz", + "integrity": "sha512-QBELCWyLYPgE2Gj+4wUEiMscHrQ8nRPBzYItQNOHWavwBt25ohZHQC4qnd5IszdVVrFbLsQ+dPkm6eqdjJAmwQ==", + "optional": true, + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1", + "get-uri": "2.0.1", + "http-proxy-agent": "1.0.0", + "https-proxy-agent": "1.0.0", + "pac-resolver": "2.0.0", + "raw-body": "2.3.2", + "socks-proxy-agent": "2.1.1" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "optional": true + } + } + }, + "pac-resolver": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-2.0.0.tgz", + "integrity": "sha1-mbiNLxk/ve78HJpSnB8yYKtSd80=", + "optional": true, + "requires": { + "co": "3.0.6", + "degenerator": "1.0.4", + "ip": "1.0.1", + "netmask": "1.0.6", + "thunkify": "2.1.2" + }, + "dependencies": { + "co": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/co/-/co-3.0.6.tgz", + "integrity": "sha1-FEXyJsXrlWE45oyawwFn6n0ua9o=", + "optional": true + } + } + }, "parse-json": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", @@ -1109,6 +2252,23 @@ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=" }, + "path-proxy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz", + "integrity": "sha1-GOijaFn8nS8aU7SN7hOFQ8Ag3l4=", + "optional": true, + "requires": { + "inflection": "1.3.8" + }, + "dependencies": { + "inflection": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.3.8.tgz", + "integrity": "sha1-y9Fg2p91sUw8xjV41POWeEvzAU4=", + "optional": true + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -1124,6 +2284,12 @@ "pinkie-promise": "2.0.1" } }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "optional": true + }, "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", @@ -1148,6 +2314,11 @@ "integrity": "sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY=", "dev": true }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, "pretty-ms": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz", @@ -1181,6 +2352,36 @@ "ipaddr.js": "1.5.2" } }, + "proxy-agent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.0.0.tgz", + "integrity": "sha1-V+tTR6qAXXTsaByyVknbo5yTNJk=", + "optional": true, + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1", + "http-proxy-agent": "1.0.0", + "https-proxy-agent": "1.0.0", + "lru-cache": "2.6.5", + "pac-proxy-agent": "1.1.0", + "socks-proxy-agent": "2.1.1" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "optional": true + }, + "lru-cache": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", + "integrity": "sha1-5W1jVBSO3o13B7WNFDIg/QjfD9U=", + "optional": true + } + } + }, "pug": { "version": "2.0.0-rc.4", "resolved": "https://registry.npmjs.org/pug/-/pug-2.0.0-rc.4.tgz", @@ -1311,6 +2512,18 @@ "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-1.1.5.tgz", "integrity": "sha512-rJlH1lXerCIAtImXBze3dtKq/ykZMA4rpO9FnPcIgsWcxZLOvd8zltaoeOVFyBSSqCkhhJWbEbTMga8UxWUUSA==" }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "optional": true + }, + "q": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", + "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=", + "optional": true + }, "qs": { "version": "6.5.1", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", @@ -1423,6 +2636,70 @@ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" }, + "request": { + "version": "2.83.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", + "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", + "optional": true, + "requires": { + "aws-sign2": "0.7.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.3.1", + "har-validator": "5.0.3", + "hawk": "6.0.2", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "performance-now": "2.1.0", + "qs": "6.5.1", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.6.0", + "uuid": "3.2.1" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "optional": true + }, + "uuid": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", + "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==", + "optional": true + } + } + }, + "requestretry": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/requestretry/-/requestretry-1.13.0.tgz", + "integrity": "sha512-Lmh9qMvnQXADGAQxsXHP4rbgO6pffCfuR8XUBdP9aitJcLQJxhp7YZK4xAVYXnPJ5E52mwrfiKQtKonPL8xsmg==", + "optional": true, + "requires": { + "extend": "3.0.1", + "lodash": "4.17.5", + "request": "2.83.0", + "when": "3.7.8" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "optional": true + } + } + }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -1546,6 +2823,71 @@ "rechoir": "0.6.2" } }, + "slack-node": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/slack-node/-/slack-node-0.2.0.tgz", + "integrity": "sha1-3kuN3aqLeT9h29KTgQT9q/N9+jA=", + "optional": true, + "requires": { + "requestretry": "1.13.0" + } + }, + "smart-buffer": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz", + "integrity": "sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY=" + }, + "smtp-connection": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/smtp-connection/-/smtp-connection-2.12.0.tgz", + "integrity": "sha1-1275EnyyPCJZ7bHoNJwujV4tdME=", + "requires": { + "httpntlm": "1.6.1", + "nodemailer-shared": "1.1.0" + } + }, + "sntp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", + "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "optional": true, + "requires": { + "hoek": "4.2.0" + } + }, + "socks": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz", + "integrity": "sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o=", + "requires": { + "ip": "1.1.5", + "smart-buffer": "1.1.15" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + } + } + }, + "socks-proxy-agent": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz", + "integrity": "sha512-sFtmYqdUK5dAMh85H0LEVFUCO7OhJJe1/z2x/Z6mxp3s7/QPf1RkZmpZy+BpuU0bEjcV9npqKjq9Y3kwFUjnxw==", + "requires": { + "agent-base": "2.1.1", + "extend": "3.0.1", + "socks": "1.1.10" + }, + "dependencies": { + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + } + } + }, "source-map": { "version": "0.1.43", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", @@ -1581,11 +2923,67 @@ "through": "2.3.8" } }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "optional": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + } + }, "statuses": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" }, + "streamroller": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", + "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", + "requires": { + "date-format": "1.2.0", + "debug": "3.1.0", + "mkdirp": "0.5.1", + "readable-stream": "2.3.4" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "readable-stream": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", + "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + } + } + }, "string-width": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", @@ -1615,6 +3013,12 @@ "safe-buffer": "5.1.1" } }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "optional": true + }, "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", @@ -1679,8 +3083,7 @@ "supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" }, "sylvester": { "version": "0.0.21", @@ -1790,17 +3193,67 @@ "xtend": "4.0.1" } }, + "thunkify": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz", + "integrity": "sha1-+qDp0jDFGsyVyhOjYawFyn4EVT0=", + "optional": true + }, + "timespan": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", + "integrity": "sha1-SQLOBAvRPYRcj1myfp1ZutbzmSk=", + "optional": true + }, "token-stream": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-0.0.1.tgz", "integrity": "sha1-zu78cXp2xDFvEm0LnbqlXX598Bo=" }, + "tough-cookie": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", + "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "optional": true, + "requires": { + "punycode": "1.4.1" + } + }, "trim": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", "dev": true }, + "tsscmp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz", + "integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=", + "optional": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "1.1.2" + } + }, "type-is": { "version": "1.6.15", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", @@ -1908,11 +3361,28 @@ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + } + }, "void-elements": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" }, + "when": { + "version": "3.7.8", + "resolved": "https://registry.npmjs.org/when/-/when-3.7.8.tgz", + "integrity": "sha1-xxMLan6gRpPoQs3J56Hyqjmjn4I=", + "optional": true + }, "which-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", @@ -1937,6 +3407,14 @@ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" }, + "worker-nodes": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/worker-nodes/-/worker-nodes-1.6.0.tgz", + "integrity": "sha512-PUI1mQRdrMpJ6HyFj7/M2pKZetSuB12aNaGSIzYeBk4K1sitxZK7k5nKi+/5+iQL59J6Aq2WLp86r7yHxDASrA==", + "requires": { + "msgpack-lite": "0.1.26" + } + }, "wrap-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", @@ -2001,11 +3479,16 @@ "util": "0.10.3" } }, + "xregexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", + "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=", + "optional": true + }, "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", - "dev": true + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" }, "y18n": { "version": "3.2.1", diff --git a/src/index.js b/src/index.js index a8a8c55..9ff55f6 100755 --- a/src/index.js +++ b/src/index.js @@ -6,7 +6,6 @@ const multithreader = require("./multithreader") const noop = () => { } -var jobBegin = 0 process.on('unhandledRejection', up => { console.log(up) }) diff --git a/src/multithreader.js b/src/multithreader.js index 36d9202..808b84a 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -24,7 +24,7 @@ workerLogs = {}; workerLog = function(msg) { var name; if (msg) { - if (workerLogs[name = msg.pid] == null) { + if (workerLogs[name = msg.pid] === undefined) { workerLogs[name] = {}; } workerLogs[msg.pid] = msg; diff --git a/src/worker.js b/src/worker.js index ef30cd6..4048a99 100644 --- a/src/worker.js +++ b/src/worker.js @@ -21,15 +21,13 @@ log4js.configure({ const logger = log4js.getLogger('cheese'); const xmlSplit = async (options, chunkSize, workerNr) => { - var cpuCount, - file, + var file, insertToDb, lineNumber, lr, page, pageCount, - pages, - size; + pages; if (workerNr === 0) { startByte = 0 diff --git a/worker.logs b/worker.logs index 32d47fd..a952792 100644 --- a/worker.logs +++ b/worker.logs @@ -1,57441 +1,12 @@ -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56524 is now alive. startByte: 27139532279 endByte: 36189376372 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56521 is now alive. startByte: 0 endByte: 9049844093 -5236220465 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56527 is now alive. startByte: 54280064558 endByte: 63329908651 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56522 is now alive. startByte: 9045844093 endByte: 18095688186 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56526 is now alive. startByte: 45233220465 endByte: 54283064558 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56523 is now alive. startByte: 18092688186 endByte: 27142532279 -[2018-02-13T00:23:49.238] [INFO] cheese - inserting 1000 documents. first: Life-annuities and last: McCarroll -[2018-02-13T00:23:49.311] [INFO] cheese - inserting 1000 documents. first: Murder Love and last: Kenninji -[2018-02-13T00:23:49.311] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:23:49.321] [INFO] cheese - inserting 1000 documents. first: Judy Corbalis and last: Template:Administrative divisions of Russia -[2018-02-13T00:23:49.327] [INFO] cheese - inserting 1000 documents. first: Category:2015 in the Cook Islands and last: Phos alabaster -[2018-02-13T00:23:49.331] [INFO] cheese - inserting 1000 documents. first: Varian Johnson and last: Flucindole -[2018-02-13T00:23:49.386] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:23:49.398] [INFO] cheese - inserting 1000 documents. first: Sarra Manning and last: SNIA -[2018-02-13T00:23:49.411] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:23:49.416] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:23:49.430] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:23:49.530] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:23:49.740] [INFO] cheese - inserting 1000 documents. first: Ruthenium hexafluoride and last: Wanda Brister -[2018-02-13T00:23:49.792] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:23:49.799] [INFO] cheese - inserting 1000 documents. first: Algerian constitution and last: 80th Division (People's Volunteer Army) -[2018-02-13T00:23:49.800] [INFO] cheese - inserting 1000 documents. first: Cocolmeca and last: Tânia Ribeiro -[2018-02-13T00:23:49.803] [INFO] cheese - inserting 1000 documents. first: Chonta Palm and last: Template:PBB/122876 -[2018-02-13T00:23:49.839] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:23:49.840] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:23:49.874] [INFO] cheese - inserting 1000 documents. first: Category:Pittsburgh Penguins trophies and awards and last: Category:WikiProject OpenStreetMap -[2018-02-13T00:23:49.895] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:23:49.920] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:23:50.120] [INFO] cheese - inserting 1000 documents. first: Pakistanis in Canada and last: Wikipedia:Articles for deletion/2008 Roses Tournament -[2018-02-13T00:23:50.141] [INFO] cheese - inserting 1000 documents. first: Aben ezra and last: File:Katiewilks.gif -[2018-02-13T00:23:50.167] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:50.170] [INFO] cheese - inserting 1000 documents. first: List of TVB series (2004) and last: Category:Detroit Pistons draft picks -[2018-02-13T00:23:50.184] [INFO] cheese - inserting 1000 documents. first: Kibler Park and last: Deutsches Institut für Entwicklungspolitik -[2018-02-13T00:23:50.202] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:23:50.217] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:23:50.221] [INFO] cheese - inserting 1000 documents. first: Freedom of speech in South Korea and last: Jewish nose -[2018-02-13T00:23:50.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kevin Ou and last: Dewey Township, Indiana -[2018-02-13T00:23:50.262] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:23:50.271] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:23:50.322] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:23:50.463] [INFO] cheese - inserting 1000 documents. first: AccessibleComputing and last: Airline -[2018-02-13T00:23:50.524] [INFO] cheese - inserting 1000 documents. first: Template:PBB/958 and last: Conrado Pérez Armenteros -[2018-02-13T00:23:50.539] [INFO] cheese - inserting 1000 documents. first: Podmokly (Děčín) and last: Ostedes albomarmorata -[2018-02-13T00:23:50.561] [INFO] cheese - batch complete in: 1.688 secs -[2018-02-13T00:23:50.563] [INFO] cheese - inserting 1000 documents. first: Sibelius G7 and last: File:Riverside Superior Court Front.jpg -[2018-02-13T00:23:50.568] [INFO] cheese - inserting 1000 documents. first: How to Destroy Angels and last: Wikipedia:WikiProject Spam/LinkReports/pavucina.org -[2018-02-13T00:23:50.573] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:23:50.583] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:23:50.603] [INFO] cheese - inserting 1000 documents. first: Dick Johnson Township, Indiana and last: Winfield Township, Indiana -[2018-02-13T00:23:50.618] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:23:50.624] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:23:50.663] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:23:50.728] [INFO] cheese - inserting 1000 documents. first: 1992 Pacific hurricane season and last: PMTU -[2018-02-13T00:23:50.793] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:23:50.911] [INFO] cheese - inserting 1000 documents. first: St. Martin's Griffin and last: Template:PBB/10097 -[2018-02-13T00:23:50.939] [INFO] cheese - inserting 1000 documents. first: John C. Avise and last: File:Perdido en el espacio.jpg -[2018-02-13T00:23:50.946] [INFO] cheese - inserting 1000 documents. first: Raoul Șorban and last: CS Source -[2018-02-13T00:23:50.966] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:23:50.985] [INFO] cheese - inserting 1000 documents. first: Ostedes andamanica and last: Akihiro Murayama -[2018-02-13T00:23:50.988] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:23:51.000] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:23:51.060] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:23:51.201] [INFO] cheese - inserting 1000 documents. first: Wood Township, Indiana and last: Category:Decorative arts museums in Italy -[2018-02-13T00:23:51.261] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:23:51.263] [INFO] cheese - inserting 1000 documents. first: Sodium pareth sulfate and last: Hedemorapartiet -[2018-02-13T00:23:51.309] [INFO] cheese - inserting 1000 documents. first: FIA Formula One World Championship and last: Lectionary 232 -[2018-02-13T00:23:51.321] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:23:51.349] [INFO] cheese - inserting 1000 documents. first: Maestro Semester One and last: Tiblisi -[2018-02-13T00:23:51.350] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:23:51.402] [INFO] cheese - inserting 1000 documents. first: Raynesway and last: Wikipedia:Sockpuppet investigations/Cavefish777 -[2018-02-13T00:23:51.401] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:23:51.419] [INFO] cheese - inserting 1000 documents. first: Sixpence (British) and last: Template:PBB/8321 -[2018-02-13T00:23:51.443] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:23:51.481] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:23:51.580] [INFO] cheese - inserting 1000 documents. first: Byrnesville and last: County Route 615 (Cumberland County, New Jersey) -[2018-02-13T00:23:51.619] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:23:51.634] [INFO] cheese - inserting 1000 documents. first: Timberforce and last: I. variabilis -[2018-02-13T00:23:51.674] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:23:51.686] [INFO] cheese - inserting 1000 documents. first: Charge (fanfare) and last: Yadollah Royai -[2018-02-13T00:23:51.725] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:23:51.734] [INFO] cheese - inserting 1000 documents. first: March 1925 and last: August 1926 -[2018-02-13T00:23:51.771] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:51.782] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8323 and last: Template:PBB/80333 -[2018-02-13T00:23:51.811] [INFO] cheese - inserting 1000 documents. first: Fürstenberg-Baar and last: Fort Worth Water Gardens -[2018-02-13T00:23:51.815] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:23:51.867] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:23:51.895] [INFO] cheese - inserting 1000 documents. first: County Route 616 (Cumberland County, New Jersey) and last: 5α-Reductase type II -[2018-02-13T00:23:51.933] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:23:51.986] [INFO] cheese - inserting 1000 documents. first: Laird Shipyard and last: Template:Usertalkpage2/doc -[2018-02-13T00:23:52.027] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:23:52.061] [INFO] cheese - inserting 1000 documents. first: Moment of angle and last: Wanza -[2018-02-13T00:23:52.102] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:23:52.110] [INFO] cheese - inserting 1000 documents. first: Miomyrmex and last: My Friend Flicker -[2018-02-13T00:23:52.120] [INFO] cheese - inserting 1000 documents. first: Jeffrey G Kitingan and last: Template:PBB/222 -[2018-02-13T00:23:52.170] [INFO] cheese - inserting 1000 documents. first: Australian Democrats and last: Big Dipper (disambiguation) -[2018-02-13T00:23:52.170] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:23:52.180] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:23:52.249] [INFO] cheese - inserting 1000 documents. first: Cairo Conference (1943) and last: 1985 SEC Baseball Tournament -[2018-02-13T00:23:52.267] [INFO] cheese - inserting 1000 documents. first: File:Columbia TriStar Television.jpg and last: File:Openallhours 1.jpg -[2018-02-13T00:23:52.272] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T00:23:52.296] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:23:52.314] [INFO] cheese - inserting 1000 documents. first: Portal:Nova Scotia/Selected panoramic picture and last: Sombrero calañés -[2018-02-13T00:23:52.329] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:23:52.357] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:23:52.458] [INFO] cheese - inserting 1000 documents. first: Chris Seitz and last: François Pelletier -[2018-02-13T00:23:52.504] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:23:52.510] [INFO] cheese - inserting 1000 documents. first: Bobby Graham and last: Anisocarpus rammii -[2018-02-13T00:23:52.560] [INFO] cheese - inserting 1000 documents. first: Final Fantasy Fables: Chocobo's Dungeon DS and last: Cell Metabolism -[2018-02-13T00:23:52.578] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:23:52.607] [INFO] cheese - inserting 1000 documents. first: Annie Get Your Gun (1986 London revival cast) and last: JPMorgan Chase Multibillion-dollar Trading Loss May, 2012 -[2018-02-13T00:23:52.635] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:23:52.660] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:23:52.756] [INFO] cheese - inserting 1000 documents. first: Watford F.C. season 2009–10 and last: File:KillerBitch FinalCover.jpg -[2018-02-13T00:23:52.787] [INFO] cheese - inserting 1000 documents. first: Samsonite Corporation and last: Prince Edward Island Route 158 -[2018-02-13T00:23:52.792] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:23:52.890] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:23:52.923] [INFO] cheese - inserting 1000 documents. first: Korean G7 and last: Philadelphia Transportation Company -[2018-02-13T00:23:52.927] [INFO] cheese - inserting 1000 documents. first: Information Card Foundation and last: Great Gaddesden -[2018-02-13T00:23:52.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Record Production/TabHeader/doc and last: Angst (1928 film) -[2018-02-13T00:23:52.948] [INFO] cheese - inserting 1000 documents. first: United States Government Printing Office and last: Sit-out powerbomb -[2018-02-13T00:23:52.967] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:23:52.968] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:23:53.021] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:23:53.021] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:23:53.223] [INFO] cheese - inserting 1000 documents. first: Balabanchevo and last: List of UEFA Women's Cup winners -[2018-02-13T00:23:53.251] [INFO] cheese - inserting 1000 documents. first: File:AartKoopmans.jpg and last: Rick Smith (hockey) -[2018-02-13T00:23:53.267] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:23:53.279] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8192 and last: Template:PBB/11177 -[2018-02-13T00:23:53.294] [INFO] cheese - inserting 1000 documents. first: Template:Bostrichiformia-stub and last: Maxine (Blossom) Miles -[2018-02-13T00:23:53.293] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:23:53.321] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:23:53.332] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:23:53.361] [INFO] cheese - inserting 1000 documents. first: Gridmp and last: History of Tatarstan -[2018-02-13T00:23:53.422] [INFO] cheese - inserting 1000 documents. first: Category:House of Vendramin and last: Active Parking Assist -[2018-02-13T00:23:53.425] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:23:53.477] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:23:53.626] [INFO] cheese - inserting 1000 documents. first: Portal:Electronics/Selected biography/7 and last: Wikipedia:Requests for bureaucratship/Grandmasterka -[2018-02-13T00:23:53.639] [INFO] cheese - inserting 1000 documents. first: Julius Posener and last: Template:PBB/84084 -[2018-02-13T00:23:53.653] [INFO] cheese - inserting 1000 documents. first: Jakob Xavery and last: Misión Chaqueña -[2018-02-13T00:23:53.667] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:23:53.670] [INFO] cheese - inserting 1000 documents. first: List of listed buildings in Oban, Argyll and Bute and last: Murder Is No Joke -[2018-02-13T00:23:53.673] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:23:53.708] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:23:53.712] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:23:53.801] [INFO] cheese - inserting 1000 documents. first: Huntsman's Leap and last: Draft:Women in Global Environmental Change -[2018-02-13T00:23:53.845] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:23:53.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Matthew 4:4 and last: Mladost (sports society) -[2018-02-13T00:23:53.964] [INFO] cheese - inserting 1000 documents. first: Egoi Martinez de Esteban and last: Patron system -[2018-02-13T00:23:53.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:2008 main page redesign proposal/Aquillyne and last: Utah State Route 263 (1959–1969) -[2018-02-13T00:23:54.005] [INFO] cheese - inserting 1000 documents. first: Bursa and last: Bill Bryson -[2018-02-13T00:23:54.005] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:23:54.007] [INFO] cheese - inserting 1000 documents. first: Misión Kilómetro 6 and last: Template:National football Supercups (CONCACAF region) -[2018-02-13T00:23:54.003] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:23:54.017] [INFO] cheese - inserting 1000 documents. first: The Ghost Train (1927 film) and last: Chah-e Kashmir -[2018-02-13T00:23:54.036] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:23:54.068] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:23:54.074] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:23:54.137] [INFO] cheese - batch complete in: 1.865 secs -[2018-02-13T00:23:54.180] [INFO] cheese - inserting 1000 documents. first: Bihu Songs of Assam (book) and last: Category:Hockomock League -[2018-02-13T00:23:54.233] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:23:54.361] [INFO] cheese - inserting 1000 documents. first: Senad Lupic and last: Mediterranean–Niger Railway -[2018-02-13T00:23:54.374] [INFO] cheese - inserting 1000 documents. first: Glenn R. Conrad and last: Twin Tiers -[2018-02-13T00:23:54.389] [INFO] cheese - inserting 1000 documents. first: Utah State Route 263 (1959) and last: BRP Diego Silang (PF-9) -[2018-02-13T00:23:54.423] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Shizuoka Prefecture and last: Category:African-American history of Illinois -[2018-02-13T00:23:54.423] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:23:54.436] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:23:54.446] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:23:54.503] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:23:54.525] [INFO] cheese - inserting 1000 documents. first: Christopher Paul Greener and last: Phanerogam -[2018-02-13T00:23:54.583] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:23:54.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dardani (village) and last: Oresteya -[2018-02-13T00:23:54.683] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:23:54.781] [INFO] cheese - inserting 1000 documents. first: Lino-cut and last: 4th Space Operations Squadron -[2018-02-13T00:23:54.795] [INFO] cheese - inserting 1000 documents. first: Category:People from Babadag and last: Aguada Cecilio -[2018-02-13T00:23:54.837] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1678 and last: Mr. Men and Little Miss (Books) -[2018-02-13T00:23:54.835] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:23:54.847] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:23:54.880] [INFO] cheese - inserting 1000 documents. first: File:Photograph of Mr. Amin.jpg and last: Template:Did you know nominations/Centripetal Spring Armchair -[2018-02-13T00:23:54.900] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:23:54.935] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:23:55.036] [INFO] cheese - inserting 1000 documents. first: File:Ursinus College Logo.png and last: Waldegrave Islands -[2018-02-13T00:23:55.097] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:23:55.243] [INFO] cheese - inserting 1000 documents. first: Category:Israeli people of Finnish descent and last: Winter Story 2007–2008 -[2018-02-13T00:23:55.257] [INFO] cheese - inserting 1000 documents. first: New Union Social Liberals and last: Polish anti-Semitism -[2018-02-13T00:23:55.268] [INFO] cheese - inserting 1000 documents. first: Aguada de Guerra and last: Sharon Webb -[2018-02-13T00:23:55.277] [INFO] cheese - inserting 1000 documents. first: Bush pilots and last: Sand table -[2018-02-13T00:23:55.279] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:23:55.325] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:23:55.383] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:23:55.399] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:23:55.432] [INFO] cheese - inserting 1000 documents. first: AMA House and last: Canadian Egg Marketing Agency v. Richardson -[2018-02-13T00:23:55.466] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:23:55.507] [INFO] cheese - inserting 1000 documents. first: Second round of voting in the 2008 Zimbabwean presidential election and last: Template:PBB/54332 -[2018-02-13T00:23:55.554] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:23:55.612] [INFO] cheese - inserting 1000 documents. first: Murgisca cervinalis and last: Graptemys pseudogeographica versa -[2018-02-13T00:23:55.647] [INFO] cheese - inserting 1000 documents. first: Lockheed CL-915 and last: Yury Nikitin -[2018-02-13T00:23:55.655] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:23:55.696] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:23:55.751] [INFO] cheese - inserting 1000 documents. first: R. v. Cuerrier and last: Sean Riley (American football) -[2018-02-13T00:23:55.757] [INFO] cheese - inserting 1000 documents. first: Guitar Hero: 80s Edition and last: Mathematical fictionalism -[2018-02-13T00:23:55.794] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:55.810] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:23:55.816] [INFO] cheese - inserting 1000 documents. first: Hollóko and last: File:HabsburgStammtafelGruftTuscan.png -[2018-02-13T00:23:55.858] [INFO] cheese - inserting 1000 documents. first: Template:PBB/54657 and last: Connecticut Superior Court -[2018-02-13T00:23:55.894] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:23:55.906] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:23:55.979] [INFO] cheese - inserting 1000 documents. first: Hyperestrogenism and last: A Grande Musica -[2018-02-13T00:23:56.005] [INFO] cheese - inserting 1000 documents. first: Book:Flags of the U.S. states and last: File:SageFrancis-SeaLion.jpg -[2018-02-13T00:23:56.023] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:23:56.048] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:23:56.076] [INFO] cheese - inserting 1000 documents. first: New Hampshire Healthy Families and last: Wikipedia:Articles for deletion/James Dodkins -[2018-02-13T00:23:56.084] [INFO] cheese - inserting 1000 documents. first: Big Audio Dynamite and last: Conditional proof -[2018-02-13T00:23:56.106] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:23:56.188] [INFO] cheese - batch complete in: 2.051 secs -[2018-02-13T00:23:56.191] [INFO] cheese - inserting 1000 documents. first: A Jamaa and last: Bratcice -[2018-02-13T00:23:56.229] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:23:56.242] [INFO] cheese - inserting 1000 documents. first: Email relay and last: The Game of Life Card Game -[2018-02-13T00:23:56.244] [INFO] cheese - inserting 1000 documents. first: File:RoyalDodge.jpg and last: Cig (disambiguation) -[2018-02-13T00:23:56.293] [INFO] cheese - inserting 1000 documents. first: Unicorn Plant and last: In taberna mori -[2018-02-13T00:23:56.293] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:23:56.297] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:23:56.348] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:23:56.357] [INFO] cheese - inserting 1000 documents. first: Category:Articles with failed verification from September 2014 and last: File:Rice-Mike-150105-stern.jpg -[2018-02-13T00:23:56.386] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:23:56.451] [INFO] cheese - inserting 1000 documents. first: U.S. Route 411 in Georgia and last: Wikipedia:WikiProject Spam/LinkReports/deallocker.com -[2018-02-13T00:23:56.468] [INFO] cheese - inserting 1000 documents. first: Columbia Gorge Casino and last: Wynyard Memorial Airport -[2018-02-13T00:23:56.500] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:23:56.523] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:23:56.582] [INFO] cheese - inserting 1000 documents. first: Template:PBB/2077 and last: Tseren-Ochiryn Dambadorj -[2018-02-13T00:23:56.622] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:23:56.666] [INFO] cheese - inserting 1000 documents. first: Madheshi and last: Julius Cæsar (play) -[2018-02-13T00:23:56.707] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:23:56.762] [INFO] cheese - inserting 1000 documents. first: Botys oeaxalis and last: File:Bridge on John P Saylor Trail.jpg -[2018-02-13T00:23:56.771] [INFO] cheese - inserting 1000 documents. first: Template:Janet periodic table and last: Darko Pavicevic -[2018-02-13T00:23:56.803] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:23:56.809] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:23:56.816] [INFO] cheese - inserting 1000 documents. first: Wadih Sabrá and last: Stereo MC's -[2018-02-13T00:23:56.851] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 May 4 and last: Radio Yunost -[2018-02-13T00:23:56.887] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:23:56.896] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:23:56.972] [INFO] cheese - inserting 1000 documents. first: Template:PBB/64478 and last: Template:PBB/26539 -[2018-02-13T00:23:57.013] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:23:57.072] [INFO] cheese - inserting 1000 documents. first: List of Roman Catholic missionaries and last: File:Voeflogo.png -[2018-02-13T00:23:57.073] [INFO] cheese - inserting 1000 documents. first: Darko Stanic and last: Es ist euch gut, dass ich hingehe, BWV 108 -[2018-02-13T00:23:57.108] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:23:57.118] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:23:57.154] [INFO] cheese - inserting 1000 documents. first: 7th Lumières Awards and last: Baby baby baby oh -[2018-02-13T00:23:57.173] [INFO] cheese - inserting 1000 documents. first: List of GP3 Series drivers and last: The Hangman (2010 film) -[2018-02-13T00:23:57.195] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:23:57.201] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:23:57.288] [INFO] cheese - inserting 1000 documents. first: Iluppaiyur and last: Solncevski Raion -[2018-02-13T00:23:57.313] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:23:57.365] [INFO] cheese - inserting 1000 documents. first: Akrotiri Peninsula (Crete) and last: Craig Theater -[2018-02-13T00:23:57.403] [INFO] cheese - inserting 1000 documents. first: Embassy of India, Washington, D.C. and last: Template:PBB/8985 -[2018-02-13T00:23:57.425] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:23:57.445] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:23:57.483] [INFO] cheese - inserting 1000 documents. first: Solncevskii Raion and last: Kosaca noble family -[2018-02-13T00:23:57.484] [INFO] cheese - inserting 1000 documents. first: File:Bells at Mission, San Diego.jpg and last: Luis Conrado Batlle y Berres -[2018-02-13T00:23:57.503] [INFO] cheese - batch complete in: 0.19 secs -[2018-02-13T00:23:57.528] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:23:57.629] [INFO] cheese - inserting 1000 documents. first: File:Hangmannew.jpg and last: Category:1963 live albums -[2018-02-13T00:23:57.661] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Metropolitan New York Library Council and last: Rajiv Tomar -[2018-02-13T00:23:57.686] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:23:57.724] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:23:57.738] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8991 and last: Nowiny-Leśniczówka -[2018-02-13T00:23:57.770] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:23:57.791] [INFO] cheese - inserting 1000 documents. first: Kossakowka and last: Matilde Rosa Lopes de Araujo -[2018-02-13T00:23:57.796] [INFO] cheese - inserting 1000 documents. first: International Asperger Year and last: Avco Corporation -[2018-02-13T00:23:57.821] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:23:57.827] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:23:57.871] [INFO] cheese - inserting 1000 documents. first: Conjunction introduction and last: Donald Knuth -[2018-02-13T00:23:57.925] [INFO] cheese - inserting 1000 documents. first: 54th Street Theater and last: Skerryvore -[2018-02-13T00:23:57.968] [INFO] cheese - batch complete in: 1.78 secs -[2018-02-13T00:23:57.985] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:23:58.063] [INFO] cheese - inserting 1000 documents. first: Tarana railway station and last: The White Man's Law -[2018-02-13T00:23:58.064] [INFO] cheese - inserting 1000 documents. first: Flying Snake and last: NuSMV 2 -[2018-02-13T00:23:58.067] [INFO] cheese - inserting 1000 documents. first: Template:PBB/6137 and last: Template:PBB/4212 -[2018-02-13T00:23:58.095] [INFO] cheese - inserting 1000 documents. first: Matjaz Brumen and last: Jake Fury -[2018-02-13T00:23:58.096] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:23:58.099] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:23:58.116] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:23:58.156] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:23:58.163] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ToucH RadiO Internet Broadcasting and last: U.S. Route 38 in Colorado -[2018-02-13T00:23:58.215] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:23:58.427] [INFO] cheese - inserting 1000 documents. first: Senile plaques and last: Düsseldorf school of painting -[2018-02-13T00:23:58.437] [INFO] cheese - inserting 1000 documents. first: Sts. Sergios and Bacchus and last: Argentina Sono film -[2018-02-13T00:23:58.461] [INFO] cheese - inserting 1000 documents. first: Miodrag Koljević and last: Barstow Road -[2018-02-13T00:23:58.477] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:23:58.503] [INFO] cheese - inserting 1000 documents. first: Forest of Mondrem and last: H. C. ten Berge -[2018-02-13T00:23:58.504] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:23:58.517] [INFO] cheese - inserting 1000 documents. first: Bruce Lindahl and last: Doctors (series 9) -[2018-02-13T00:23:58.543] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:58.568] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:23:58.566] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:23:58.630] [INFO] cheese - inserting 1000 documents. first: Osvaldo Ferreño and last: Paradsasvar -[2018-02-13T00:23:58.690] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:23:58.993] [INFO] cheese - inserting 1000 documents. first: Lloyd's bank and last: Edward Somerset, 2nd Marquis of Worcester -[2018-02-13T00:23:59.009] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian people of Irish descent and last: Okeechobee High School (1925) -[2018-02-13T00:23:59.054] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:23:59.068] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:23:59.103] [INFO] cheese - inserting 1000 documents. first: Chris Nelson (photographer) and last: File:ChildhoodsEnd(1stEd).jpg -[2018-02-13T00:23:59.117] [INFO] cheese - inserting 1000 documents. first: Pat Farrell (Fianna Fail) and last: Category:Chilean expatriates in Indonesia -[2018-02-13T00:23:59.140] [INFO] cheese - inserting 1000 documents. first: John Paine (sport shooter) and last: Trip Mines -[2018-02-13T00:23:59.149] [INFO] cheese - inserting 1000 documents. first: Relationship of command and last: 1937 Sugar Bowl -[2018-02-13T00:23:59.161] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:23:59.165] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:23:59.252] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:23:59.260] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:23:59.556] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Rustam Effendi and last: Category:1960s establishments in California -[2018-02-13T00:23:59.567] [INFO] cheese - inserting 1000 documents. first: Orumieh and last: Krasnogorsk uzb -[2018-02-13T00:23:59.602] [INFO] cheese - inserting 1000 documents. first: Forward lateral and last: Wikipedia:Miscellany for deletion/User:Tomas Zenteno -[2018-02-13T00:23:59.604] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:23:59.626] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:23:59.634] [INFO] cheese - inserting 1000 documents. first: Hum-vees and last: Darrington Unit -[2018-02-13T00:23:59.683] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:23:59.711] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:23:59.734] [INFO] cheese - inserting 1000 documents. first: Woolloongabba Branch railway line and last: Pinkilluni (Puno) -[2018-02-13T00:23:59.775] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:23:59.836] [INFO] cheese - inserting 1000 documents. first: Dunfermline East (UK Parliament constituency) and last: Thinking Fellers Union Local -[2018-02-13T00:23:59.914] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:23:59.982] [INFO] cheese - inserting 1000 documents. first: Help:Visual file markup/frameless mode and last: Category:Limburg (Belgium) -[2018-02-13T00:24:00.001] [INFO] cheese - inserting 1000 documents. first: McCormick & Company, Inc. and last: County Route 620 (Morris County, New Jersey) -[2018-02-13T00:24:00.003] [INFO] cheese - inserting 1000 documents. first: Causes of the United States housing bubble and last: Anguis rufa javanica -[2018-02-13T00:24:00.013] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:24:00.067] [INFO] cheese - inserting 1000 documents. first: All-NBA Team Third Time and last: Alexandre sabès pétion -[2018-02-13T00:24:00.068] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:00.074] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:24:00.117] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:24:00.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Yabllib and last: Roderick O'Connor (land commissioner) -[2018-02-13T00:24:00.165] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:24:00.248] [INFO] cheese - inserting 1000 documents. first: Donald E. Knuth and last: Eigenstate -[2018-02-13T00:24:00.262] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2002 Commonwealth Games - Men's 100 Metres and last: Edmund G. Brown Sr. -[2018-02-13T00:24:00.300] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:24:00.369] [INFO] cheese - inserting 1000 documents. first: Stewart McCrae and last: Theresa of Portugal, Countess of Flanders -[2018-02-13T00:24:00.382] [INFO] cheese - batch complete in: 2.414 secs -[2018-02-13T00:24:00.420] [INFO] cheese - inserting 1000 documents. first: Australian Capital Territory Legislative Assembly electorates and last: Hockley, King and Queen County, Virginia -[2018-02-13T00:24:00.451] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:24:00.462] [INFO] cheese - inserting 1000 documents. first: The Galilean Satellites and last: Wikipedia:WikiProject Gospel music/To-do -[2018-02-13T00:24:00.484] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:24:00.487] [INFO] cheese - inserting 1000 documents. first: Ghalib Khan and last: Corinne Marshall -[2018-02-13T00:24:00.496] [INFO] cheese - inserting 1000 documents. first: Robert Sharples (classicist) and last: Category:1671 in law -[2018-02-13T00:24:00.520] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:24:00.547] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:00.590] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:24:00.693] [INFO] cheese - inserting 1000 documents. first: Docs.com and last: Danilo Fernando Avelar -[2018-02-13T00:24:00.767] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:00.862] [INFO] cheese - inserting 1000 documents. first: Yao Tingmei and last: File:KA Most Wanted.jpg -[2018-02-13T00:24:00.905] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:24:00.910] [INFO] cheese - inserting 1000 documents. first: Anthony Volmink and last: Garz/Rügen Castle -[2018-02-13T00:24:00.931] [INFO] cheese - inserting 1000 documents. first: Foiled carbene and last: Wikipedia:Articles for creation/2007-01-20 -[2018-02-13T00:24:00.960] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:24:01.019] [INFO] cheese - inserting 1000 documents. first: Pothyne stictica and last: File:Sherbrooke2003logo.png -[2018-02-13T00:24:01.035] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:24:01.074] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:24:01.099] [INFO] cheese - inserting 1000 documents. first: Godfrey II Count of Louvain and last: Neuchâtel Xamax FC -[2018-02-13T00:24:01.185] [INFO] cheese - inserting 1000 documents. first: Suleyman Ates and last: Etienne Mignot de Montigny -[2018-02-13T00:24:01.214] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:24:01.216] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:24:01.283] [INFO] cheese - inserting 1000 documents. first: Amphidromus semitessellatus and last: Win Clark -[2018-02-13T00:24:01.354] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:01.384] [INFO] cheese - inserting 1000 documents. first: PSR B1257+12A and last: Wikipedia:Articles for deletion/Navnath Sampradaya -[2018-02-13T00:24:01.450] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:24:01.562] [INFO] cheese - inserting 1000 documents. first: Walter Brandt and last: List Of Episodes : The Partially Examined Life -[2018-02-13T00:24:01.575] [INFO] cheese - inserting 1000 documents. first: Saint Vitalis of Gaza and last: Smallville, USA -[2018-02-13T00:24:01.626] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:24:01.645] [INFO] cheese - inserting 1000 documents. first: Etienne Mimard and last: Incomplete and Utter History of Classical Music -[2018-02-13T00:24:01.664] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:24:01.701] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:24:01.737] [INFO] cheese - inserting 1000 documents. first: Srikanth Srinivasan and last: Wikipedia:WikiProject Spam/LinkReports/rehabanklesprain.com -[2018-02-13T00:24:01.759] [INFO] cheese - inserting 1000 documents. first: Neuchatel Xamax FC and last: Emma Gillett -[2018-02-13T00:24:01.804] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:01.831] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:24:01.919] [INFO] cheese - inserting 1000 documents. first: Johann Borenstein and last: India House (Indian High Commision in London) -[2018-02-13T00:24:01.977] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:24:02.045] [INFO] cheese - inserting 1000 documents. first: FC Polet and last: Cuitlateco -[2018-02-13T00:24:02.088] [INFO] cheese - inserting 1000 documents. first: Lou Rell and last: 1915-16 Indian cricket season -[2018-02-13T00:24:02.088] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:02.097] [INFO] cheese - inserting 1000 documents. first: Bret Wood (film director) and last: Hajnalka Kiraly-Picot -[2018-02-13T00:24:02.151] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:02.151] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:24:02.225] [INFO] cheese - inserting 1000 documents. first: Jeremy Penick and last: Illuminating Hadrian's Wall -[2018-02-13T00:24:02.309] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:24:02.403] [INFO] cheese - inserting 1000 documents. first: São Tomé and Principe Dobra and last: Sant Andreu de Llavaneres -[2018-02-13T00:24:02.433] [INFO] cheese - inserting 1000 documents. first: Bibliography of Prem Rawat and related organizations and last: Dharowali -[2018-02-13T00:24:02.457] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:24:02.475] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:02.517] [INFO] cheese - inserting 1000 documents. first: Category:People from Juárez Municipality, Chihuahua and last: Northern pudu -[2018-02-13T00:24:02.541] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Transhumanism articles and last: Category:Project-Class National Institutes of Health articles -[2018-02-13T00:24:02.549] [INFO] cheese - inserting 1000 documents. first: Elizabeth Barrett Browning and last: Fatah -[2018-02-13T00:24:02.563] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:24:02.589] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:24:02.642] [INFO] cheese - batch complete in: 2.26 secs -[2018-02-13T00:24:02.688] [INFO] cheese - inserting 1000 documents. first: 1916-17 Indian cricket season and last: Ben mahmoud -[2018-02-13T00:24:02.700] [INFO] cheese - inserting 1000 documents. first: Tarporley Hunt and last: File:Merle Okie.jpg -[2018-02-13T00:24:02.745] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:02.747] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:02.825] [INFO] cheese - inserting 1000 documents. first: Ornstein-Uhlenbeck and last: Candy Girl: A Year in the Life of an Unlikely Stripper -[2018-02-13T00:24:02.890] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:24:02.935] [INFO] cheese - inserting 1000 documents. first: Napo plump toad and last: Category:German football clubs 1981–82 season -[2018-02-13T00:24:02.963] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class National Institutes of Health articles and last: Prince Carl Philip of Sweden, Duke of Värmland -[2018-02-13T00:24:02.977] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:02.979] [INFO] cheese - inserting 1000 documents. first: Khingans and last: Category:British royalty stubs -[2018-02-13T00:24:02.998] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:24:03.055] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:03.141] [INFO] cheese - inserting 1000 documents. first: Ihor Pokarynin and last: Neil Komadoski (ice hockey, born 1982) -[2018-02-13T00:24:03.200] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:24:03.252] [INFO] cheese - inserting 1000 documents. first: Iulian Dumitraș and last: Template:Editnotices/Page/LittleBigPlanet 2 -[2018-02-13T00:24:03.302] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:24:03.344] [INFO] cheese - inserting 1000 documents. first: 27th Infantry Division (United Kingdom) and last: Billy Graham (evangelist) -[2018-02-13T00:24:03.388] [INFO] cheese - inserting 1000 documents. first: Tuli Lodge Airport and last: County Route 672 (Salem County, New Jersey) -[2018-02-13T00:24:03.395] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:24:03.457] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:03.562] [INFO] cheese - inserting 1000 documents. first: 浦佐駅 and last: Jonathan Earle -[2018-02-13T00:24:03.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ninjas in Pyjamas and last: Fast of esther -[2018-02-13T00:24:03.619] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:24:03.643] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:24:03.680] [INFO] cheese - inserting 1000 documents. first: Bobby Kotic and last: Template:1963 United States Ryder Cup team -[2018-02-13T00:24:03.740] [INFO] cheese - inserting 1000 documents. first: Jiangsu Lu and last: Miami Valley Channel -[2018-02-13T00:24:03.753] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:24:03.829] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:24:03.845] [INFO] cheese - inserting 1000 documents. first: File:Mount Lebanon Shaker Meetinghouse 12July2008.jpg and last: David J. Patterson -[2018-02-13T00:24:03.858] [INFO] cheese - inserting 1000 documents. first: County Route 674 (Salem County, New Jersey) and last: Acraea masamba -[2018-02-13T00:24:03.907] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:24:03.931] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:04.017] [INFO] cheese - inserting 1000 documents. first: Pseudocalamobius rondoni and last: List of college affilated to Calcutta University -[2018-02-13T00:24:04.073] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:04.155] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject R&B and Soul Music/Unreferenced BLPs and last: Human Readable Interpretation -[2018-02-13T00:24:04.191] [INFO] cheese - inserting 1000 documents. first: Fast of ester and last: Dolmus -[2018-02-13T00:24:04.210] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:04.232] [INFO] cheese - inserting 1000 documents. first: Category:User qya-4 and last: Parade of Progress -[2018-02-13T00:24:04.276] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:24:04.302] [INFO] cheese - inserting 1000 documents. first: Union City, Tennessee-Kentucky Micropolitan Statistical Area and last: France Football European Team of the Year -[2018-02-13T00:24:04.313] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:04.340] [INFO] cheese - inserting 1000 documents. first: William Bayles and last: Polytetrafluoroethylen capacitor -[2018-02-13T00:24:04.365] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:04.388] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:04.501] [INFO] cheese - inserting 1000 documents. first: File:Sacred Heart Girls' College Logo.png and last: Monika Ciecierska -[2018-02-13T00:24:04.555] [INFO] cheese - inserting 1000 documents. first: Now and Forever (film) and last: Mostafa Ekrami -[2018-02-13T00:24:04.557] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:04.591] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:24:04.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Radio/to do and last: MS Angelina Lauro -[2018-02-13T00:24:04.680] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/M1jam/Archive and last: Tihvinskii Raion -[2018-02-13T00:24:04.685] [INFO] cheese - inserting 1000 documents. first: Carl Skottberg and last: File:Basil flower.JPG -[2018-02-13T00:24:04.691] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:24:04.713] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:24:04.734] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:24:04.813] [INFO] cheese - inserting 1000 documents. first: Lucian Perkins and last: File:Polynesian triangle poorly drawn.jpg -[2018-02-13T00:24:04.862] [INFO] cheese - inserting 1000 documents. first: Forteana and last: Eurogame -[2018-02-13T00:24:04.877] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:24:04.895] [INFO] cheese - inserting 1000 documents. first: Thomas Williams (rugby league) and last: Dovisdiana -[2018-02-13T00:24:04.953] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:24:04.971] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Fergasonanton and last: Milica Bodrožić -[2018-02-13T00:24:04.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Matt Norman and last: File:Ieremiamovilatombstone9fz.jpg -[2018-02-13T00:24:05.029] [INFO] cheese - batch complete in: 2.387 secs -[2018-02-13T00:24:05.031] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:24:05.046] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:24:05.106] [INFO] cheese - inserting 1000 documents. first: Mordellistena rufifrons and last: Pulaski Cavalry Legion -[2018-02-13T00:24:05.168] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:24:05.169] [INFO] cheese - inserting 1000 documents. first: File:Sen John Williams TN.jpg and last: Güzellik ve Aşk -[2018-02-13T00:24:05.255] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:05.365] [INFO] cheese - inserting 1000 documents. first: File:Head anatomy lateral view 45px.jpg and last: List of Indian films -[2018-02-13T00:24:05.368] [INFO] cheese - inserting 1000 documents. first: Pavonia Terminal (Erie Railroad station) and last: Edmonton Investors Group Limited Partnership -[2018-02-13T00:24:05.393] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:24:05.420] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:05.465] [INFO] cheese - inserting 1000 documents. first: Short line railroad and last: Max the Dog -[2018-02-13T00:24:05.492] [INFO] cheese - inserting 1000 documents. first: Flor Silvestre con el Mariachi México and last: Loretta Tupper -[2018-02-13T00:24:05.518] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:24:05.563] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:24:05.600] [INFO] cheese - inserting 1000 documents. first: File:Official Airtime logo.png and last: Category:1400s establishments in Romania -[2018-02-13T00:24:05.642] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:05.677] [INFO] cheese - inserting 1000 documents. first: Huesn ue Ask and last: Edgard Sorgeloos -[2018-02-13T00:24:05.718] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:24:05.729] [INFO] cheese - inserting 1000 documents. first: Polish Peasant Party and last: Hybris Records -[2018-02-13T00:24:05.772] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:24:05.785] [INFO] cheese - inserting 1000 documents. first: Transfer of sovereignty of Macau and last: Pyotr Il'yich Tchaikovsky -[2018-02-13T00:24:05.824] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:24:05.901] [INFO] cheese - inserting 1000 documents. first: Loretta Clemens and last: 2007 in Liechtenstein -[2018-02-13T00:24:05.938] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:24:05.977] [INFO] cheese - inserting 1000 documents. first: Category:15th-century establishments in Romania and last: Anatomical variation -[2018-02-13T00:24:05.991] [INFO] cheese - inserting 1000 documents. first: Caesar Best and Greatest and last: Charlie Miller -[2018-02-13T00:24:06.005] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:24:06.071] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:06.099] [INFO] cheese - inserting 1000 documents. first: Category:Hambleton geography stubs and last: File:Neuron colored small.jpg -[2018-02-13T00:24:06.103] [INFO] cheese - inserting 1000 documents. first: Anieliny and last: Petey Cipriano -[2018-02-13T00:24:06.138] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:24:06.142] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:24:06.210] [INFO] cheese - inserting 1000 documents. first: Template:Hong Kong football seasons/doc and last: Template:2007-08 Horizon League men's basketball standings -[2018-02-13T00:24:06.256] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:24:06.312] [INFO] cheese - inserting 1000 documents. first: Dnovski and last: Aḥmadzay -[2018-02-13T00:24:06.363] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:24:06.490] [INFO] cheese - inserting 1000 documents. first: Template:Australia-documentary-film-stub and last: Rangdi Krogstad -[2018-02-13T00:24:06.516] [INFO] cheese - inserting 1000 documents. first: Team Cheerios and last: Milltown, County Kerry -[2018-02-13T00:24:06.546] [INFO] cheese - inserting 1000 documents. first: Srikanthakati and last: Template:Maltese Second Division 2008-09 -[2018-02-13T00:24:06.550] [INFO] cheese - inserting 1000 documents. first: Ralph Hyde and last: Star Wars: clone wars -[2018-02-13T00:24:06.551] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:06.594] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:24:06.608] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:24:06.611] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:24:06.636] [INFO] cheese - inserting 1000 documents. first: Abraham M. Halpern and last: Category:Accidental deaths in Algeria -[2018-02-13T00:24:06.704] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:24:06.763] [INFO] cheese - inserting 1000 documents. first: Ušumgallu and last: File:WTCJ-FM Classic Hits radio logo.jpg -[2018-02-13T00:24:06.840] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:07.072] [INFO] cheese - inserting 1000 documents. first: Bavarian Maximilian Railway and last: Pedro Romo (actor) -[2018-02-13T00:24:07.074] [INFO] cheese - inserting 1000 documents. first: Template:Algeria tallest buildings lists and last: Raid Rasheed -[2018-02-13T00:24:07.102] [INFO] cheese - inserting 1000 documents. first: Category:Accidental deaths in Angola and last: Tsutāja -[2018-02-13T00:24:07.126] [INFO] cheese - inserting 1000 documents. first: Star Wars: Clone wars and last: List of Major League Baseball players (D) -[2018-02-13T00:24:07.151] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:24:07.166] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:24:07.157] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:24:07.209] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:07.244] [INFO] cheese - inserting 1000 documents. first: Grand Unified Theory and last: History of Africa -[2018-02-13T00:24:07.253] [INFO] cheese - inserting 1000 documents. first: Anti-LKM antibody and last: 1999 Fed Cup Europe/Africa Zone Group II – Pool B -[2018-02-13T00:24:07.268] [INFO] cheese - inserting 1000 documents. first: Umbrail Pass and last: 1982 in Singapore -[2018-02-13T00:24:07.307] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:07.349] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:24:07.377] [INFO] cheese - batch complete in: 2.347 secs -[2018-02-13T00:24:07.546] [INFO] cheese - inserting 1000 documents. first: Mets–Willets Point (disambiguation) and last: Pardhan (disambiguation) -[2018-02-13T00:24:07.552] [INFO] cheese - inserting 1000 documents. first: File:Londonboys-love4unity.jpeg and last: Wikipedia:Miscellany for deletion/User:Mattbuck/Wikipedia - FUCK YEAH! -[2018-02-13T00:24:07.576] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:24:07.586] [INFO] cheese - inserting 1000 documents. first: Eleonora de Medici and last: Wikipedia:Version 1.0 Editorial Team/Aerospace biography articles by quality -[2018-02-13T00:24:07.629] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:24:07.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Worker Student Alliance and last: Martin Reuben Gainsbrugh -[2018-02-13T00:24:07.682] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:24:07.699] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:24:07.751] [INFO] cheese - inserting 1000 documents. first: Category:1928 elections in the United Kingdom and last: Bogue Chitto, Lincoln County, Mississippi -[2018-02-13T00:24:07.842] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:24:07.912] [INFO] cheese - inserting 1000 documents. first: Resolution 338 and last: Sletta, Hordaland -[2018-02-13T00:24:07.947] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:24:07.951] [INFO] cheese - inserting 1000 documents. first: Sioux Falls Pheasants and last: Batata harra -[2018-02-13T00:24:08.041] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:24:08.175] [INFO] cheese - inserting 1000 documents. first: Category:Television categories for deletion scanning and last: Quincy, Illinois micropolitan Area -[2018-02-13T00:24:08.184] [INFO] cheese - inserting 1000 documents. first: Template:Bids for the 2018 and 2022 FIFA World Cup and last: National American Greek Council -[2018-02-13T00:24:08.225] [INFO] cheese - inserting 1000 documents. first: Martin Gainsbrugh and last: Moncrieff J. Spear -[2018-02-13T00:24:08.251] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:24:08.264] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:24:08.292] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:24:08.314] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eurozone as an optimum currency area and last: Shashishalhem -[2018-02-13T00:24:08.370] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:24:08.422] [INFO] cheese - inserting 1000 documents. first: Critics' Choice Television Award for Best Actress in a Drama Series and last: Tuskestan -[2018-02-13T00:24:08.493] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:08.605] [INFO] cheese - inserting 1000 documents. first: Court of General Surveyors and last: Kshullaka -[2018-02-13T00:24:08.639] [INFO] cheese - inserting 1000 documents. first: History of Ptolemaic Egypt and last: Catnip (disambiguation) -[2018-02-13T00:24:08.643] [INFO] cheese - inserting 1000 documents. first: The Barefoot Rugby League Show and last: Penstemon palmeri var. eglandulosus -[2018-02-13T00:24:08.651] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:24:08.704] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:08.725] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:24:08.820] [INFO] cheese - inserting 1000 documents. first: List of main characters in Bamse and last: Transient lingual papillitis -[2018-02-13T00:24:08.865] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:08.880] [INFO] cheese - inserting 1000 documents. first: Wagon Hill Cemetery Monument and last: Zacharias Peter Paul Obenauf -[2018-02-13T00:24:08.921] [INFO] cheese - inserting 1000 documents. first: Toskastan and last: Category:People of Meiji-period Japan -[2018-02-13T00:24:08.955] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:24:08.988] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:09.065] [INFO] cheese - inserting 1000 documents. first: Live: Meadowbrook, Rochester, Michigan – 12th September 1971 and last: Kaiga Nuclear Power Plant -[2018-02-13T00:24:09.105] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:24:09.163] [INFO] cheese - inserting 1000 documents. first: Tarawa Beachhead and last: Ron Fimrite -[2018-02-13T00:24:09.233] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:24:09.280] [INFO] cheese - inserting 1000 documents. first: Patrick Sjöberg and last: Princess Srirasmi -[2018-02-13T00:24:09.319] [INFO] cheese - inserting 1000 documents. first: Talkers magazine and last: Farhad Ahmed Dockrat -[2018-02-13T00:24:09.340] [INFO] cheese - inserting 1000 documents. first: File:Dorits.jpg and last: Wikipedia:Requested articles/Sports/Association football (soccer) -[2018-02-13T00:24:09.342] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:24:09.375] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:24:09.399] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:24:09.469] [INFO] cheese - inserting 1000 documents. first: Wayne Wilkins and last: Saint-Raphaël Arrondissement -[2018-02-13T00:24:09.492] [INFO] cheese - inserting 1000 documents. first: 1905 law on the Separation of the Churches and the State and last: Monohorgonj Upazila -[2018-02-13T00:24:09.505] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:24:09.543] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:09.664] [INFO] cheese - inserting 1000 documents. first: History of Oceania and last: JohnnyUnitas -[2018-02-13T00:24:09.688] [INFO] cheese - inserting 1000 documents. first: ROSL and last: Iuzhnyy District -[2018-02-13T00:24:09.721] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:24:09.731] [INFO] cheese - inserting 1000 documents. first: Ethnies and last: Cheshmeh-ye Nil -[2018-02-13T00:24:09.737] [INFO] cheese - inserting 1000 documents. first: House of Malatesta and last: United States Air Force Pararescue -[2018-02-13T00:24:09.769] [INFO] cheese - batch complete in: 2.392 secs -[2018-02-13T00:24:09.781] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:09.802] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:09.829] [INFO] cheese - inserting 1000 documents. first: Category:Cardiidae and last: Category:Category-Class Melbourne articles -[2018-02-13T00:24:09.830] [INFO] cheese - inserting 1000 documents. first: WDKB and last: M. rubra -[2018-02-13T00:24:09.887] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:09.900] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:24:10.021] [INFO] cheese - inserting 1000 documents. first: Manoharganj Upazila and last: Lambert III (bishop of Kraków) -[2018-02-13T00:24:10.042] [INFO] cheese - inserting 1000 documents. first: Peter B. Krauser and last: Manuel Antonio Mesones Muro -[2018-02-13T00:24:10.071] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:24:10.103] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:10.207] [INFO] cheese - inserting 1000 documents. first: Dashti, Golestan and last: Wikipedia:Sockpuppet investigations/ScienceApologist -[2018-02-13T00:24:10.236] [INFO] cheese - inserting 1000 documents. first: Diocese of Ariano Irpino-Lacedonia and last: Naseem Kharal -[2018-02-13T00:24:10.262] [INFO] cheese - inserting 1000 documents. first: 2009 in spaceflight (July–December) and last: Cú Mara mac Maic Liac -[2018-02-13T00:24:10.267] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:10.302] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:10.323] [INFO] cheese - inserting 1000 documents. first: Quinidine gluconate and last: A.M.W.S. -[2018-02-13T00:24:10.319] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:24:10.387] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:24:10.475] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Querétaro and last: Olympiada, Chalkidiki -[2018-02-13T00:24:10.499] [INFO] cheese - inserting 1000 documents. first: Fountain Formation and last: Wikipedia:Requests for checkuser/Case/Bosna -[2018-02-13T00:24:10.515] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:24:10.536] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:24:10.651] [INFO] cheese - inserting 1000 documents. first: John McCone and last: Wikipedia:Editor review/AJH16 -[2018-02-13T00:24:10.658] [INFO] cheese - inserting 1000 documents. first: Category:Prairie School architecture in Washington (state) and last: Ace Buchanan -[2018-02-13T00:24:10.690] [INFO] cheese - inserting 1000 documents. first: Aruba at the Pan American Games and last: Kölner Kartause -[2018-02-13T00:24:10.699] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:24:10.716] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:24:10.754] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:10.953] [INFO] cheese - inserting 1000 documents. first: Shocks and discontinuities (magnetohydrodynamics) and last: Submarine earthquake -[2018-02-13T00:24:10.957] [INFO] cheese - inserting 1000 documents. first: File:Leon vance.jpg and last: Wikipedia:Votes for deletion/EdgeSide -[2018-02-13T00:24:10.975] [INFO] cheese - inserting 1000 documents. first: Steven Brusatte and last: Culture of Madeira -[2018-02-13T00:24:11.004] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:11.030] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:24:11.047] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:24:11.102] [INFO] cheese - inserting 1000 documents. first: File:2012 ALCS.gif and last: Universidad San Sebastián -[2018-02-13T00:24:11.106] [INFO] cheese - inserting 1000 documents. first: Genrikh Liushkov and last: Category:Ships of the Royal New Zealand Navy -[2018-02-13T00:24:11.157] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:11.156] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:11.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/neuchess.com and last: Fontana del Nettuno -[2018-02-13T00:24:11.376] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:24:11.507] [INFO] cheese - inserting 1000 documents. first: John George Lambton, 3rd Earl of Durham and last: Wikipedia:Articles for deletion/WikiProject Chinese characters -[2018-02-13T00:24:11.519] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Earth Angel/archive1 and last: Oetenbachgasse -[2018-02-13T00:24:11.535] [INFO] cheese - inserting 1000 documents. first: Shonan Beach FM and last: Ralph J Gleason -[2018-02-13T00:24:11.540] [INFO] cheese - inserting 1000 documents. first: Edward Garvey and last: Niels Dorph -[2018-02-13T00:24:11.557] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:24:11.581] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:24:11.582] [INFO] cheese - inserting 1000 documents. first: Ultras (comics) and last: Category:Russian Civil War films -[2018-02-13T00:24:11.579] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:11.600] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:24:11.656] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:24:11.773] [INFO] cheese - inserting 1000 documents. first: File:Human GALE bound to NADH and UDP-glucose.png and last: Wikipedia:WikiProject Spam/LinkReports/ankaraticaret.org -[2018-02-13T00:24:11.845] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:24:11.909] [INFO] cheese - inserting 1000 documents. first: Yano (disambiguation) and last: Kolonia Kąty -[2018-02-13T00:24:11.941] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:24:11.992] [INFO] cheese - inserting 1000 documents. first: Gandhian socialism and last: Category:B-Class Finland articles -[2018-02-13T00:24:11.994] [INFO] cheese - inserting 1000 documents. first: Daihatsu New Line and last: Gyan Vihar University -[2018-02-13T00:24:11.999] [INFO] cheese - inserting 1000 documents. first: Calcium-binding glycoprotein and last: Wikipedia:WikiProject Indian Premier League/Article alerts -[2018-02-13T00:24:12.041] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:24:12.055] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:12.054] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:12.081] [INFO] cheese - inserting 1000 documents. first: Showing to the moon and last: Flip Saunders -[2018-02-13T00:24:12.094] [INFO] cheese - inserting 1000 documents. first: Johnny Unitas and last: Kesgrave -[2018-02-13T00:24:12.135] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:24:12.225] [INFO] cheese - inserting 1000 documents. first: 2011–12 South Pacific cyclone season and last: 2002 Croatian Figure Skating Championships -[2018-02-13T00:24:12.270] [INFO] cheese - batch complete in: 2.501 secs -[2018-02-13T00:24:12.282] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:24:12.330] [INFO] cheese - inserting 1000 documents. first: Hugo Zoeller and last: Template:Puchov District -[2018-02-13T00:24:12.332] [INFO] cheese - inserting 1000 documents. first: Vn and last: Frits Pirard -[2018-02-13T00:24:12.364] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:24:12.370] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:24:12.441] [INFO] cheese - inserting 1000 documents. first: Timoleague and Courtmacsherry Extension Light Railway and last: Category:Schools in Addis Ababa -[2018-02-13T00:24:12.504] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:24:12.612] [INFO] cheese - inserting 1000 documents. first: Baron von Tauchnitz Bernard and last: Sylvia McNair -[2018-02-13T00:24:12.631] [INFO] cheese - inserting 1000 documents. first: Slovene intimism and last: St John the Baptist Church -[2018-02-13T00:24:12.682] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:12.704] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:24:12.715] [INFO] cheese - inserting 1000 documents. first: Murray Avenue and last: Turritella cornea -[2018-02-13T00:24:12.782] [INFO] cheese - inserting 1000 documents. first: March 1 movement and last: Ghost in the Shell: Stand Alone Complex O.S.T 2 -[2018-02-13T00:24:12.802] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:24:12.811] [INFO] cheese - inserting 1000 documents. first: File:World-Middle-Powers.svg and last: Wikipedia:Articles for deletion/Glastonbury Festival (R.E.M.) -[2018-02-13T00:24:12.850] [INFO] cheese - inserting 1000 documents. first: 2015 Belgium national football team results and last: Doryrhamphus japonicus -[2018-02-13T00:24:12.850] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:12.905] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:24:12.913] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:24:13.195] [INFO] cheese - inserting 1000 documents. first: File:Chhota Chetan.jpg and last: Category:Unknown-importance Washington University in St. Louis articles -[2018-02-13T00:24:13.268] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:24:13.281] [INFO] cheese - inserting 1000 documents. first: Charbonnières Arrondissement and last: Mont Organise -[2018-02-13T00:24:13.282] [INFO] cheese - inserting 1000 documents. first: The Lady Vanished and last: Veliko Trnjane -[2018-02-13T00:24:13.293] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Biology and last: Interstate 39 in Illinois -[2018-02-13T00:24:13.331] [INFO] cheese - inserting 1000 documents. first: Mieczyslaw Horzowski and last: Broken plural -[2018-02-13T00:24:13.347] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:13.356] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:13.363] [INFO] cheese - inserting 1000 documents. first: Honshu pipefish and last: Category:Bonnier family -[2018-02-13T00:24:13.336] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:24:13.408] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:13.428] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:24:13.631] [INFO] cheese - inserting 1000 documents. first: John Taylor (Geordy songwriter) and last: Hart Council -[2018-02-13T00:24:13.679] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:24:13.749] [INFO] cheese - inserting 1000 documents. first: Three-ring circus and last: File:Dario-11.gif -[2018-02-13T00:24:13.752] [INFO] cheese - inserting 1000 documents. first: Vilje Kolo and last: NBA Nation (tour) -[2018-02-13T00:24:13.753] [INFO] cheese - inserting 1000 documents. first: Joachim Ekanga-Ehawa and last: The Lovely Eggs -[2018-02-13T00:24:13.792] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:13.798] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:24:13.800] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:13.810] [INFO] cheese - inserting 1000 documents. first: Aimoin of Fleury and last: Candace Jordan -[2018-02-13T00:24:13.875] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:13.956] [INFO] cheese - inserting 1000 documents. first: Mike Modest and last: Hurricane Orlene -[2018-02-13T00:24:14.023] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:24:14.120] [INFO] cheese - inserting 1000 documents. first: Trance house and last: Category:Rapid City Rush -[2018-02-13T00:24:14.169] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:24:14.179] [INFO] cheese - inserting 1000 documents. first: Sarah Devens and last: Teacher of Latin America -[2018-02-13T00:24:14.254] [INFO] cheese - inserting 1000 documents. first: Black/Matrix (video game series) and last: Why Shoot a Butler -[2018-02-13T00:24:14.291] [INFO] cheese - inserting 1000 documents. first: Gallup survey and last: Michael Scott (Artistic Director) -[2018-02-13T00:24:14.321] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:24:14.384] [INFO] cheese - inserting 1000 documents. first: Category:Musicals based on poems and last: Newmarket West Train Station -[2018-02-13T00:24:14.392] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:24:14.418] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:24:14.520] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:24:14.633] [INFO] cheese - inserting 1000 documents. first: Kurt Waldheim and last: Laurence of Canterbury -[2018-02-13T00:24:14.692] [INFO] cheese - inserting 1000 documents. first: File:Curtiss King PaidDues12.jpg and last: Pozega Valley -[2018-02-13T00:24:14.737] [INFO] cheese - inserting 1000 documents. first: File:The pillows - KOOL SPICE.jpg and last: Moroccan Quarter -[2018-02-13T00:24:14.779] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:24:14.835] [INFO] cheese - batch complete in: 2.565 secs -[2018-02-13T00:24:14.889] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:24:14.991] [INFO] cheese - inserting 1000 documents. first: Dirty Money (duo) and last: Category:Politics of Austria-Hungary -[2018-02-13T00:24:15.023] [INFO] cheese - inserting 1000 documents. first: The Unfinished Clue and last: Template:2015 County Hurling Championships -[2018-02-13T00:24:15.035] [INFO] cheese - inserting 1000 documents. first: Robert German and last: Trilingualism -[2018-02-13T00:24:15.048] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:24:15.124] [INFO] cheese - inserting 1000 documents. first: Portal:Surrey/Selected picture/3 and last: 1984–85 Huddersfield Town A.F.C. season -[2018-02-13T00:24:15.123] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:15.154] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:24:15.229] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:24:15.442] [INFO] cheese - inserting 1000 documents. first: Borts and last: Category:Polish civil aircraft 2010–2019 -[2018-02-13T00:24:15.477] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:24:15.639] [INFO] cheese - inserting 1000 documents. first: Bluecher and last: Vsevolod I -[2018-02-13T00:24:15.666] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Eleanor Robinson and last: Doliops gertrudis -[2018-02-13T00:24:15.678] [INFO] cheese - inserting 1000 documents. first: Japanese Regional Leagues 1985 and last: Mikael Blomkvist -[2018-02-13T00:24:15.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mokhless Al-Hariri and last: Template:2007-08 NBA Atlantic standings -[2018-02-13T00:24:15.696] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:24:15.724] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:24:15.753] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:15.755] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:24:15.784] [INFO] cheese - inserting 1000 documents. first: File:Eli's Cheesecake Logo.jpg and last: Kafsh Mahalleh -[2018-02-13T00:24:15.826] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:24:15.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Doctor's Advocate (song) and last: Template:Euro topics -[2018-02-13T00:24:15.931] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:24:16.126] [INFO] cheese - inserting 1000 documents. first: Draft:William Richardson Belknap and last: Amnokkang Sports Club -[2018-02-13T00:24:16.150] [INFO] cheese - inserting 1000 documents. first: Template:2007-08 NBA Central Division Standings and last: MI 17 -[2018-02-13T00:24:16.156] [INFO] cheese - inserting 1000 documents. first: The Zillo Beast Strikes Back and last: Tom Knoakes -[2018-02-13T00:24:16.180] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:16.208] [INFO] cheese - inserting 1000 documents. first: File:David Schwimmer as Ross Geller.jpg and last: File:SC Vila Rea.png -[2018-02-13T00:24:16.233] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:24:16.245] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:24:16.306] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:24:16.362] [INFO] cheese - inserting 1000 documents. first: Gilad Anni-Padda and last: Billy Payne -[2018-02-13T00:24:16.425] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:24:16.466] [INFO] cheese - inserting 1000 documents. first: 2007 Notre Dame Fighting Irish football team and last: Communal forests of India -[2018-02-13T00:24:16.522] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:24:16.624] [INFO] cheese - inserting 1000 documents. first: Tracy Ryan (actress) and last: Anonychomyrma extensa -[2018-02-13T00:24:16.645] [INFO] cheese - inserting 1000 documents. first: Category:Road transport in South Africa and last: Mongolia - Education System -[2018-02-13T00:24:16.663] [INFO] cheese - inserting 1000 documents. first: Dig-Dig-Joy and last: Gus-Khrustal'nyi District -[2018-02-13T00:24:16.670] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:24:16.692] [INFO] cheese - inserting 1000 documents. first: Chillion L. Miller and last: David Jacobus Bosch -[2018-02-13T00:24:16.703] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:16.719] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:24:16.799] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:24:17.005] [INFO] cheese - inserting 1000 documents. first: File:A Plan of Alexandria now Belhaven.jpg and last: Piqua High School -[2018-02-13T00:24:17.072] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:24:17.075] [INFO] cheese - inserting 1000 documents. first: Gus-Khrustal'niy District and last: File:KuK Maria Theresa, 1895.png -[2018-02-13T00:24:17.079] [INFO] cheese - inserting 1000 documents. first: Mozzarella sticks and last: Soledad Alvear Valenzuela -[2018-02-13T00:24:17.156] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:17.217] [INFO] cheese - inserting 1000 documents. first: Kitzbühele EC and last: Category:Holston River -[2018-02-13T00:24:17.222] [INFO] cheese - inserting 1000 documents. first: Assault & battery and last: Arpeggiated -[2018-02-13T00:24:17.222] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:24:17.271] [INFO] cheese - inserting 1000 documents. first: May 2010 Thai military crackdown and last: Svetlana Vukajlovic -[2018-02-13T00:24:17.312] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:24:17.325] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:24:17.351] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:24:17.469] [INFO] cheese - inserting 1000 documents. first: La Banda Sinaloense and last: Mehmed III -[2018-02-13T00:24:17.560] [INFO] cheese - inserting 1000 documents. first: Portal:Indigenous peoples of North America/Selected article/February and last: Mark McCormack's world golf rankings -[2018-02-13T00:24:17.580] [INFO] cheese - batch complete in: 2.745 secs -[2018-02-13T00:24:17.615] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:24:17.637] [INFO] cheese - inserting 1000 documents. first: Tanit d'or and last: Persistent fault -[2018-02-13T00:24:17.652] [INFO] cheese - inserting 1000 documents. first: Pura Luhur Batukaru and last: OS 11 -[2018-02-13T00:24:17.708] [INFO] cheese - inserting 1000 documents. first: Hold Back the River and last: Doma clasica -[2018-02-13T00:24:17.728] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:17.739] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Zhelyakov and last: The Big Idea (U.S. TV series) -[2018-02-13T00:24:17.743] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:17.765] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:17.815] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:24:17.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Israel Palestine Collaboration/Links to reliable sources discussions and last: Harada Station -[2018-02-13T00:24:17.937] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:24:18.100] [INFO] cheese - inserting 1000 documents. first: Bård Lappegård Lahn and last: Umago -[2018-02-13T00:24:18.118] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RapidKL LRT right/KL Monorail and last: Category:Marussia Formula One drivers -[2018-02-13T00:24:18.157] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:24:18.157] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:18.241] [INFO] cheese - inserting 1000 documents. first: Minister for Women and Equality and last: Category:Populated coastal places in Belgium -[2018-02-13T00:24:18.243] [INFO] cheese - inserting 1000 documents. first: Garrison schools and last: Compulsory education -[2018-02-13T00:24:18.309] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:24:18.312] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:24:18.335] [INFO] cheese - inserting 1000 documents. first: Hoplocorypha acuta and last: Uyghur peoples -[2018-02-13T00:24:18.377] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:24:18.424] [INFO] cheese - inserting 1000 documents. first: Portuguese School of Equestrian Art and last: Time-keeper -[2018-02-13T00:24:18.470] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:18.513] [INFO] cheese - inserting 1000 documents. first: Host–pathogen interaction and last: Vyaznikovskii -[2018-02-13T00:24:18.557] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:24:18.667] [INFO] cheese - inserting 1000 documents. first: Cleeve Hurdle and last: Gilstead -[2018-02-13T00:24:18.677] [INFO] cheese - inserting 1000 documents. first: The Definitive Collection (Level 42) and last: 七 -[2018-02-13T00:24:18.697] [INFO] cheese - inserting 1000 documents. first: File:ImaginationCover.jpg and last: François Eugène Vidocq -[2018-02-13T00:24:18.713] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:24:18.719] [INFO] cheese - inserting 1000 documents. first: Category:Populated coastal places in Belize and last: Taylorcraft BF -[2018-02-13T00:24:18.733] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:24:18.768] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:18.797] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:24:18.907] [INFO] cheese - inserting 1000 documents. first: Viaznikovsky and last: Template:Did you know nominations/Hessentag -[2018-02-13T00:24:18.909] [INFO] cheese - inserting 1000 documents. first: Turris clionellaeformis and last: Hallelujah for the Cross -[2018-02-13T00:24:18.988] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:18.981] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:19.210] [INFO] cheese - inserting 1000 documents. first: Anatol E. Baconschi and last: Midway Mills, Virginia -[2018-02-13T00:24:19.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2007 February 17 and last: Leonid Shvartzman -[2018-02-13T00:24:19.260] [INFO] cheese - inserting 1000 documents. first: Bretenanwealda and last: Category:2007 Pan Arab Games -[2018-02-13T00:24:19.273] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:24:19.332] [INFO] cheese - inserting 1000 documents. first: Analytic element method and last: KDE Dot News -[2018-02-13T00:24:19.332] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:19.343] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:24:19.367] [INFO] cheese - inserting 1000 documents. first: Category:Blinn Buccaneers football and last: Euryphene laetitioides -[2018-02-13T00:24:19.383] [INFO] cheese - inserting 1000 documents. first: Le Grand, Alabama and last: Lamprosema camphorae -[2018-02-13T00:24:19.414] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:24:19.437] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:19.470] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:24:19.648] [INFO] cheese - inserting 1000 documents. first: Jeff Clarke (disambiguation) and last: File:Closeup of pavement with grass.JPG -[2018-02-13T00:24:19.696] [INFO] cheese - inserting 1000 documents. first: Mustafa I and last: List of national anthems -[2018-02-13T00:24:19.697] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:19.725] [INFO] cheese - inserting 1000 documents. first: Swiftboat campaign and last: Category:Maritime incidents in 1981 -[2018-02-13T00:24:19.766] [INFO] cheese - inserting 1000 documents. first: Chūma and last: Hayataella -[2018-02-13T00:24:19.778] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:24:19.793] [INFO] cheese - inserting 1000 documents. first: O Fado da Procura and last: File:Safe Auto logo (low res).jpg -[2018-02-13T00:24:19.809] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:24:19.847] [INFO] cheese - batch complete in: 2.266 secs -[2018-02-13T00:24:19.861] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:19.898] [INFO] cheese - inserting 1000 documents. first: Category:Important Bird Areas of Iceland and last: Lycée Français de Toronto -[2018-02-13T00:24:19.909] [INFO] cheese - inserting 1000 documents. first: Densha Otoko and last: Donald Arseneault -[2018-02-13T00:24:19.940] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:24:20.004] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:24:20.078] [INFO] cheese - inserting 1000 documents. first: Phellinus igniarius and last: Masonic Widows and Orphans Home -[2018-02-13T00:24:20.126] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:20.148] [INFO] cheese - inserting 1000 documents. first: Category:Girls' schools in Louisiana and last: Kasabad -[2018-02-13T00:24:20.198] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:24:20.211] [INFO] cheese - inserting 1000 documents. first: File:Kaathodu Kaathoram.jpg and last: Grappling Hook (video game) -[2018-02-13T00:24:20.271] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:24:20.274] [INFO] cheese - inserting 1000 documents. first: Tacpac and last: Westkapelle-Binnen -[2018-02-13T00:24:20.331] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:20.433] [INFO] cheese - inserting 1000 documents. first: Brzozowiec and last: Godziszów, Lublin Voivodeship -[2018-02-13T00:24:20.443] [INFO] cheese - inserting 1000 documents. first: Lycee Francais Toronto and last: Forelius pruinosus -[2018-02-13T00:24:20.470] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:24:20.503] [INFO] cheese - inserting 1000 documents. first: Pedro Vicente Maldonado Canton and last: List of islands of the Northeast United States -[2018-02-13T00:24:20.503] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:24:20.525] [INFO] cheese - inserting 1000 documents. first: Kasabad-e Pa'in and last: Carabus stscheglowi -[2018-02-13T00:24:20.560] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:24:20.565] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:24:20.668] [INFO] cheese - inserting 1000 documents. first: Anterior tibial vessels and last: Badgerland -[2018-02-13T00:24:20.707] [INFO] cheese - inserting 1000 documents. first: David Branch (fighter) and last: Turó del Samont -[2018-02-13T00:24:20.712] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:24:20.751] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:24:20.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Toymaster and last: Viardo -[2018-02-13T00:24:20.900] [INFO] cheese - inserting 1000 documents. first: High criticism and last: File:CEOSL logo.png -[2018-02-13T00:24:20.932] [INFO] cheese - inserting 1000 documents. first: Cicindela pulchra and last: Social messaging applications -[2018-02-13T00:24:20.931] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:24:20.945] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:24:20.982] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:24:21.108] [INFO] cheese - inserting 1000 documents. first: Dark-frame subtraction and last: File:Wrights Cold Tar Soap Logo.png -[2018-02-13T00:24:21.123] [INFO] cheese - inserting 1000 documents. first: Puig Neulós and last: Wikipedia:WikiProject Spam/LinkReports/paginasweb.com.pe -[2018-02-13T00:24:21.141] [INFO] cheese - inserting 1000 documents. first: Side collision and last: Category:Mind Funk albums -[2018-02-13T00:24:21.150] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:24:21.173] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:21.237] [INFO] cheese - inserting 1000 documents. first: Virapoullé and last: Lords of Galloway -[2018-02-13T00:24:21.241] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:24:21.314] [INFO] cheese - inserting 1000 documents. first: Ahi'ezer and last: Andreas Høy -[2018-02-13T00:24:21.312] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:24:21.366] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:24:21.487] [INFO] cheese - inserting 1000 documents. first: Chat applications and last: Palpita crococosta -[2018-02-13T00:24:21.501] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/karendejo.com and last: ISO 639:bzt -[2018-02-13T00:24:21.553] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:24:21.582] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:24:21.715] [INFO] cheese - inserting 1000 documents. first: Red River Valley (album) and last: USS Gambier Bay (AVG-73) -[2018-02-13T00:24:21.777] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:24:21.829] [INFO] cheese - inserting 1000 documents. first: Living Environs and last: Polish-Swedish War of 1620-1622 -[2018-02-13T00:24:21.857] [INFO] cheese - inserting 1000 documents. first: Category:1963 Canadian television series debuts and last: Category:Rimouski -[2018-02-13T00:24:21.884] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:24:21.917] [INFO] cheese - inserting 1000 documents. first: Cruella DeVil and last: Colonial Heads of Cape Verde -[2018-02-13T00:24:21.916] [INFO] cheese - inserting 1000 documents. first: Nikola Tesla and last: Postmaster General -[2018-02-13T00:24:21.941] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:24:21.978] [INFO] cheese - inserting 1000 documents. first: ISO 639:bzu and last: ISO 639:kng -[2018-02-13T00:24:22.052] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:22.056] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:24:22.072] [INFO] cheese - batch complete in: 2.225 secs -[2018-02-13T00:24:22.086] [INFO] cheese - inserting 1000 documents. first: Palpita eupilosalis and last: Category:Ballets to the music of Henry Purcell -[2018-02-13T00:24:22.198] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:24:22.383] [INFO] cheese - inserting 1000 documents. first: USS Gambier Bay (ACV-73) and last: USS Key West (PG-125) -[2018-02-13T00:24:22.399] [INFO] cheese - inserting 1000 documents. first: Template:Pilipinas Got Talent and last: Wikipedia:WikiProject Spam/LinkReports/cctvpuertorico.com -[2018-02-13T00:24:22.435] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:24:22.462] [INFO] cheese - inserting 1000 documents. first: Category:Symbols of Connecticut and last: Wikipedia:Articles for deletion/The Old-Time Gospel Hour -[2018-02-13T00:24:22.474] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:24:22.542] [INFO] cheese - inserting 1000 documents. first: Central do Brasil (film) and last: File:The Collegiate at The University of Winnipeg.jpg -[2018-02-13T00:24:22.559] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:24:22.632] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:24:22.734] [INFO] cheese - inserting 1000 documents. first: 1845 in Chile and last: Category:Wayne State Wildcats -[2018-02-13T00:24:22.780] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:24:22.786] [INFO] cheese - inserting 1000 documents. first: Heads of Government of Cape Verde and last: Wikipedia:Featured article candidates/Bettie Page/archive1 -[2018-02-13T00:24:22.842] [INFO] cheese - inserting 1000 documents. first: ISO 639:noo and last: Čičke -[2018-02-13T00:24:22.863] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:24:22.890] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:24:22.900] [INFO] cheese - inserting 1000 documents. first: A Cappella Records, Inc. and last: Category:Iraqi people of American descent -[2018-02-13T00:24:22.940] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:23.003] [INFO] cheese - inserting 1000 documents. first: Solina and last: CASCADE(Japanese Band) -[2018-02-13T00:24:23.023] [INFO] cheese - inserting 1000 documents. first: File:PCRpublication.png and last: Kure-Portpier Station -[2018-02-13T00:24:23.052] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:24:23.064] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:24:23.131] [INFO] cheese - inserting 1000 documents. first: Category:Winona State Warriors and last: Category:Swedish Pentecostal Movement -[2018-02-13T00:24:23.188] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:24:23.273] [INFO] cheese - inserting 1000 documents. first: ISO 639:trw and last: Hereford Railway -[2018-02-13T00:24:23.326] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:23.399] [INFO] cheese - inserting 1000 documents. first: George Thorne (disambiguation) and last: File:HTV-3 patch.png -[2018-02-13T00:24:23.407] [INFO] cheese - inserting 1000 documents. first: Vizcacha and last: Ronald Broadhurst -[2018-02-13T00:24:23.423] [INFO] cheese - inserting 1000 documents. first: Calgary Highlanders and last: Summer's Lease -[2018-02-13T00:24:23.457] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:24:23.469] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:24:23.475] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:24:23.511] [INFO] cheese - inserting 1000 documents. first: Khassimirou Diop and last: Uniroyal Fun Cup -[2018-02-13T00:24:23.568] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:24:23.597] [INFO] cheese - inserting 1000 documents. first: Category:Rural councils of Lviv Oblast and last: The Portrait of Mr. W.H. -[2018-02-13T00:24:23.643] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:23.733] [INFO] cheese - inserting 1000 documents. first: List of National Taiwan University people and last: Wikipedia:Reference desk/Archives/Humanities/2010 May 21 -[2018-02-13T00:24:23.789] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:24:23.863] [INFO] cheese - inserting 1000 documents. first: Spinning wheel (animation) and last: File:Limocar logo.png -[2018-02-13T00:24:23.896] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:24:23.902] [INFO] cheese - inserting 1000 documents. first: The Lords of the Nine and last: Peter Malm -[2018-02-13T00:24:23.919] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Ming–Hồ War and last: Category:Nayarit articles missing geocoordinate data -[2018-02-13T00:24:23.972] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:24:23.991] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:24:24.003] [INFO] cheese - inserting 1000 documents. first: Jamestown Red Sox and last: Category:Racehorse owners and breeders -[2018-02-13T00:24:24.049] [INFO] cheese - inserting 1000 documents. first: Financial services company and last: Daniel O'Keeffe (commissioner) -[2018-02-13T00:24:24.067] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:24.083] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:24.135] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:No personal attacks and last: Weightlifting at the 2008 Summer Olympics – Women's 58 kg -[2018-02-13T00:24:24.173] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:24:24.176] [INFO] cheese - inserting 1000 documents. first: LIU Blackbirds men's basketball and last: Category:Associazione Calcio Bellaria Igea Marina SRL -[2018-02-13T00:24:24.181] [INFO] cheese - inserting 1000 documents. first: Paul Cohen and last: Pope Valentine -[2018-02-13T00:24:24.242] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:24.323] [INFO] cheese - batch complete in: 2.25 secs -[2018-02-13T00:24:24.331] [INFO] cheese - inserting 1000 documents. first: Template:Rugby union in Sweden and last: Portal:Indonesia/Featured picture/7 -[2018-02-13T00:24:24.361] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:24:24.438] [INFO] cheese - inserting 1000 documents. first: O'Connor Island and last: File:Teenage Mutant Ninja Turtles II (1991 film) poster.jpg -[2018-02-13T00:24:24.478] [INFO] cheese - inserting 1000 documents. first: Wyoming (1940 film) and last: File:B5album1.jpg -[2018-02-13T00:24:24.474] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:24:24.495] [INFO] cheese - inserting 1000 documents. first: Adhesive Comics and last: M. Thomson -[2018-02-13T00:24:24.543] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:24:24.551] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:24:24.648] [INFO] cheese - inserting 1000 documents. first: Hodam, West Virginia and last: Adhar Kayvan -[2018-02-13T00:24:24.679] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:24:24.749] [INFO] cheese - inserting 1000 documents. first: Category:Upper West Side and last: Category:Cities and towns in Nalgonda district -[2018-02-13T00:24:24.751] [INFO] cheese - inserting 1000 documents. first: Ronnie Barrett and last: 12 hour gap -[2018-02-13T00:24:24.787] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:24:24.837] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:24:24.873] [INFO] cheese - inserting 1000 documents. first: Zed Group and last: Miles Justice Knowlton -[2018-02-13T00:24:24.885] [INFO] cheese - inserting 1000 documents. first: Oregon, Kentucky and last: Category:Potez aircraft engines -[2018-02-13T00:24:24.905] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:24:24.915] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:24:25.005] [INFO] cheese - inserting 1000 documents. first: Gammer Gurton's Garland and last: Line 7, Suzhou Rail Transit -[2018-02-13T00:24:25.054] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:24:25.084] [INFO] cheese - inserting 1000 documents. first: Land of Broken Hearts and last: Paulus de Santa Maria -[2018-02-13T00:24:25.136] [INFO] cheese - inserting 1000 documents. first: Robertson v. United States ex rel. Watson and last: The Bread -[2018-02-13T00:24:25.150] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:24:25.186] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:25.250] [INFO] cheese - inserting 1000 documents. first: Jean Marcot and last: Chapar -[2018-02-13T00:24:25.286] [INFO] cheese - inserting 1000 documents. first: File:Logo of Orexigen Therapeutics.jpg and last: Pyralis flegialis -[2018-02-13T00:24:25.302] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:24:25.335] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:24:25.357] [INFO] cheese - inserting 1000 documents. first: Dydoe piercing and last: Tirfing (Fire Emblem) -[2018-02-13T00:24:25.420] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:24:25.461] [INFO] cheese - inserting 1000 documents. first: Overly Attached Girlfriend and last: Category:1920s in Algeria -[2018-02-13T00:24:25.498] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:24:25.515] [INFO] cheese - inserting 1000 documents. first: File:FredFrith AlbumCover MiddleMoment(1995).jpg and last: Wikipedia:Featured article candidates/C programming language -[2018-02-13T00:24:25.517] [INFO] cheese - inserting 1000 documents. first: Seine-et-Marne I (electoral constituency) and last: Majority representation system -[2018-02-13T00:24:25.555] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:24:25.556] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:24:25.682] [INFO] cheese - inserting 1000 documents. first: Zăvoi and last: Playin' with Fire -[2018-02-13T00:24:25.731] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:25.737] [INFO] cheese - inserting 1000 documents. first: Paradosis villosalis and last: Draft:Dodge & Twist -[2018-02-13T00:24:25.809] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:25.842] [INFO] cheese - inserting 1000 documents. first: Barbara Yung Mei Ling and last: UTC+03:00 -[2018-02-13T00:24:25.868] [INFO] cheese - inserting 1000 documents. first: Vicente Martínez (wrestler) and last: Category:Populated places in Azilal Province -[2018-02-13T00:24:25.902] [INFO] cheese - inserting 1000 documents. first: File:Murder in the Cathedral (movie poster).jpg and last: Wikipedia:Articles for deletion/Visual modularity -[2018-02-13T00:24:25.906] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:25.906] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:24:25.950] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:24:26.040] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lajme.gen.al and last: File:Labyrinth return to heaven denied.jpg -[2018-02-13T00:24:26.079] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:24:26.160] [INFO] cheese - inserting 1000 documents. first: Century Development Corporation and last: Fraktur (Pennsylvania German folk art) -[2018-02-13T00:24:26.215] [INFO] cheese - inserting 1000 documents. first: District Five Schoolhouse and last: Category:Stub-Class Indian cinema articles of Mid-importance -[2018-02-13T00:24:26.238] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:26.295] [INFO] cheese - inserting 1000 documents. first: 1908 Pattern Webbing and last: Category:Populated places in Cojedes (state) -[2018-02-13T00:24:26.293] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:24:26.348] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:26.361] [INFO] cheese - inserting 1000 documents. first: Mount Washington Railway and last: Olivio Premium Products -[2018-02-13T00:24:26.362] [INFO] cheese - inserting 1000 documents. first: Pope Victor I and last: Range voting -[2018-02-13T00:24:26.364] [INFO] cheese - inserting 1000 documents. first: List of compositions by Bohuslav Martinů and last: The Traitor (play) -[2018-02-13T00:24:26.409] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:26.418] [INFO] cheese - inserting 1000 documents. first: Bouc–Wen model of hysteresis and last: Random coefficient model -[2018-02-13T00:24:26.421] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:24:26.490] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:24:26.488] [INFO] cheese - batch complete in: 2.165 secs -[2018-02-13T00:24:26.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Hayley Williams and last: Adriankin -[2018-02-13T00:24:26.688] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:26.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Junior Juice and last: Convention on the Protection and Use of Transboundary Watercourses and International Lakes -[2018-02-13T00:24:26.778] [INFO] cheese - inserting 1000 documents. first: File:Vammalan Lentopallo (emblem).jpg and last: Marathon Lucerne -[2018-02-13T00:24:26.832] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:24:26.841] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:24:26.868] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2010 May 30 and last: File:Williamsoncorrigan12172.jpg -[2018-02-13T00:24:26.886] [INFO] cheese - inserting 1000 documents. first: File:Cape Ann.PNG and last: Ulmus glaucescens var. lasiocarpa -[2018-02-13T00:24:26.908] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:24:26.948] [INFO] cheese - inserting 1000 documents. first: Wallace Bennett and last: Category:Chess images -[2018-02-13T00:24:26.950] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:24:27.039] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:24:27.055] [INFO] cheese - inserting 1000 documents. first: Bad Parents and last: Landing Zone Brace -[2018-02-13T00:24:27.128] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:24:27.145] [INFO] cheese - inserting 1000 documents. first: Marathon luzern and last: St. George's Monastery (Wadi Qilt) -[2018-02-13T00:24:27.159] [INFO] cheese - inserting 1000 documents. first: Jukka-Pekka Tanner and last: The Double (film) -[2018-02-13T00:24:27.185] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:24:27.187] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:24:27.312] [INFO] cheese - inserting 1000 documents. first: 'Alenu prayer and last: Speckled Hen -[2018-02-13T00:24:27.331] [INFO] cheese - inserting 1000 documents. first: Chiappa Rhino and last: Redemption (disambiguation) -[2018-02-13T00:24:27.345] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:24:27.377] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:24:27.521] [INFO] cheese - inserting 1000 documents. first: Jehuda Löw ben Bezalel and last: Template:George Meredith -[2018-02-13T00:24:27.555] [INFO] cheese - inserting 1000 documents. first: File:Flare3D IDE 271.png and last: Drepung Loseling -[2018-02-13T00:24:27.559] [INFO] cheese - inserting 1000 documents. first: All the Kids Agree and last: Karaboya -[2018-02-13T00:24:27.571] [INFO] cheese - inserting 1000 documents. first: File:Pubertyblues.jpg and last: Bestbreeder from 1997 to 2000 -[2018-02-13T00:24:27.577] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:24:27.600] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:24:27.626] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:27.649] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:24:27.745] [INFO] cheese - inserting 1000 documents. first: Rhydfelin and last: Saint Leo the Great School (Pennsylvania) -[2018-02-13T00:24:27.793] [INFO] cheese - inserting 1000 documents. first: Memunneh and last: Berlin-Blankenheimer Eisenbahn -[2018-02-13T00:24:27.826] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:24:27.951] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:24:28.144] [INFO] cheese - inserting 1000 documents. first: Template:Story/doc and last: William Leddra -[2018-02-13T00:24:28.160] [INFO] cheese - inserting 1000 documents. first: Åryd, Karlshamn and last: Communications Security Establishment Canada -[2018-02-13T00:24:28.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Arbitration Committee/CheckUser and Oversight/2012 CUOS appointments/CU/DeltaQuad and last: Gatari Air Service -[2018-02-13T00:24:28.210] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:24:28.227] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:24:28.268] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:24:28.470] [INFO] cheese - inserting 1000 documents. first: Ricardo brown and last: Chain of Lakes Middle School -[2018-02-13T00:24:28.554] [INFO] cheese - inserting 1000 documents. first: Seed (video game) and last: Tommy Decker -[2018-02-13T00:24:28.562] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/'Sgudi 'Snaysi and last: 1st Foreign Parachute Heavy Mortar Company -[2018-02-13T00:24:28.598] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:24:28.684] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:24:28.686] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:24:28.741] [INFO] cheese - inserting 1000 documents. first: V-by-One HS and last: Valday (inhabited locality) -[2018-02-13T00:24:28.799] [INFO] cheese - inserting 1000 documents. first: Category:American distilled drinks and last: Athletics at the 2008 Summer Olympics – Women's long jump -[2018-02-13T00:24:28.800] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:24:28.827] [INFO] cheese - inserting 1000 documents. first: Wikipedia:The Wikipedia Library/Header and last: SMS Saida -[2018-02-13T00:24:28.861] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:24:28.869] [INFO] cheese - inserting 1000 documents. first: Robert A Heinlein and last: Economy of South Africa -[2018-02-13T00:24:28.883] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:24:28.986] [INFO] cheese - batch complete in: 2.497 secs -[2018-02-13T00:24:29.021] [INFO] cheese - inserting 1000 documents. first: Medial femoral circumflex artery and last: CKOB-AM 1400 -[2018-02-13T00:24:29.039] [INFO] cheese - inserting 1000 documents. first: Ornella Barra and last: Street Medicine -[2018-02-13T00:24:29.078] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:24:29.098] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:29.128] [INFO] cheese - inserting 1000 documents. first: Template:PoloAt1920SummerOlympics and last: File:D&DBoggle.JPG -[2018-02-13T00:24:29.172] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:24:29.184] [INFO] cheese - inserting 1000 documents. first: 1995 FINA World Swimming Championships (25 m) and last: Adessive form -[2018-02-13T00:24:29.222] [INFO] cheese - inserting 1000 documents. first: File:This is us.jpg and last: Leicester Hockey Club -[2018-02-13T00:24:29.257] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:24:29.265] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:29.466] [INFO] cheese - inserting 1000 documents. first: Jupa'in and last: Category:Bodies of water of Guinea -[2018-02-13T00:24:29.473] [INFO] cheese - inserting 1000 documents. first: Category:Biosphere reserves of Bolivia and last: Template:Cabañas Department -[2018-02-13T00:24:29.514] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:24:29.540] [INFO] cheese - inserting 1000 documents. first: Alexander Rozenbaum and last: Template:Uw-vandal4 -[2018-02-13T00:24:29.559] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:24:29.564] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pros and last: Conquest of California -[2018-02-13T00:24:29.605] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:24:29.645] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:29.712] [INFO] cheese - inserting 1000 documents. first: Raveena Ravi and last: South Russia -[2018-02-13T00:24:29.757] [INFO] cheese - inserting 1000 documents. first: Jessie M. Rattley and last: Baki Sahari -[2018-02-13T00:24:29.775] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:24:29.779] [INFO] cheese - inserting 1000 documents. first: Takab Rural District (Dargaz County) and last: Sir John Wedderburn, 5th Baronet of Blackness -[2018-02-13T00:24:29.807] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:24:29.832] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:24:29.870] [INFO] cheese - inserting 1000 documents. first: Humboldt Unified School District and last: Vikidia -[2018-02-13T00:24:29.907] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:24:30.017] [INFO] cheese - inserting 1000 documents. first: Template:GFDL/doc and last: Instructional Television Fixed Service -[2018-02-13T00:24:30.027] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/christian-louboutin-shoes.com and last: Tabunski -[2018-02-13T00:24:30.072] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:30.082] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:24:30.096] [INFO] cheese - inserting 1000 documents. first: 🇬🇸 and last: Grass It Up -[2018-02-13T00:24:30.176] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:24:30.190] [INFO] cheese - inserting 1000 documents. first: Crib note and last: Category:1904 in Pennsylvania -[2018-02-13T00:24:30.232] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:30.260] [INFO] cheese - inserting 1000 documents. first: Joseph Martin (Ipswich MP) and last: Thrasher (disambiguation) -[2018-02-13T00:24:30.296] [INFO] cheese - inserting 1000 documents. first: Bakı and last: Jonny Quest: The Real Adventures -[2018-02-13T00:24:30.302] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:24:30.350] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:30.499] [INFO] cheese - inserting 1000 documents. first: Gabriello Carotti and last: Spray Foam Insulation -[2018-02-13T00:24:30.504] [INFO] cheese - inserting 1000 documents. first: Aggregates, West Virginia and last: Rookery Nook (1953 film) -[2018-02-13T00:24:30.512] [INFO] cheese - inserting 1000 documents. first: Gurvan Saikhan Mountains and last: StyleFeeder -[2018-02-13T00:24:30.515] [INFO] cheese - inserting 1000 documents. first: Category:Football leagues in Kazakhstan and last: Cloverhill, New Jersey -[2018-02-13T00:24:30.542] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:24:30.565] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:30.575] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:24:30.573] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:24:30.687] [INFO] cheese - inserting 1000 documents. first: Adam & Yves and last: Kelley (disambiguation) -[2018-02-13T00:24:30.726] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:24:30.796] [INFO] cheese - inserting 1000 documents. first: File:Turok comic first issue logo.png and last: Kim Seon-young (judoka) -[2018-02-13T00:24:30.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Arsenal F.C./archive1 and last: Surveyor-General for Western Australia -[2018-02-13T00:24:30.819] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:24:30.864] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:24:30.953] [INFO] cheese - inserting 1000 documents. first: Category:1970s Hindi-language films and last: Lee Kohler -[2018-02-13T00:24:30.959] [INFO] cheese - inserting 1000 documents. first: Sercan Kaya and last: Outlaw (TV series) -[2018-02-13T00:24:30.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ignore all rules, except for consensus and last: Black-lored waxbill -[2018-02-13T00:24:30.997] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:31.001] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:31.011] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:31.069] [INFO] cheese - inserting 1000 documents. first: Telecommunications in South Africa and last: Silesian Voivodeship -[2018-02-13T00:24:31.093] [INFO] cheese - inserting 1000 documents. first: Kim Seon-Yeong and last: File:Scout Aword.png -[2018-02-13T00:24:31.099] [INFO] cheese - inserting 1000 documents. first: Kelli (disambiguation) and last: Mozart Clarinet Quintet -[2018-02-13T00:24:31.119] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:24:31.143] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:24:31.200] [INFO] cheese - batch complete in: 2.214 secs -[2018-02-13T00:24:31.235] [INFO] cheese - inserting 1000 documents. first: William Macomber and last: Czech Republic - Hungary relations -[2018-02-13T00:24:31.259] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:24:31.315] [INFO] cheese - inserting 1000 documents. first: Boldhome and last: Kings prerogative -[2018-02-13T00:24:31.368] [INFO] cheese - inserting 1000 documents. first: Category:Cuban books and last: Wikipedia:Version 1.0 Editorial Team/Book articles by quality/6 -[2018-02-13T00:24:31.383] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:24:31.408] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:24:31.426] [INFO] cheese - inserting 1000 documents. first: Brisbane Valley and last: Ethan Tate -[2018-02-13T00:24:31.429] [INFO] cheese - inserting 1000 documents. first: US Boxing and last: Wikipedia:Today's featured article/requests/Portrait of a Young Girl (Christus) -[2018-02-13T00:24:31.449] [INFO] cheese - inserting 1000 documents. first: Greece-Luxembourg relations and last: THE-QS World University Rankings, 2008 -[2018-02-13T00:24:31.470] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:24:31.473] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:24:31.534] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:24:31.574] [INFO] cheese - inserting 1000 documents. first: Atropos puniceus and last: Kondagsaz -[2018-02-13T00:24:31.630] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:31.698] [INFO] cheese - inserting 1000 documents. first: 2008-2009 Israel-Gaza War and last: 1979-80 NFL playoffs -[2018-02-13T00:24:31.715] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:24:31.809] [INFO] cheese - inserting 1000 documents. first: Lord Rector of Edinburgh University and last: Swaythling -[2018-02-13T00:24:31.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Book articles by quality/7 and last: Dick Gamble -[2018-02-13T00:24:31.860] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:31.868] [INFO] cheese - inserting 1000 documents. first: 2010 Tunis Open - Doubles and last: Swimming at the 2009 World Aquatics Championships - Women's 200 metre freestyle -[2018-02-13T00:24:31.898] [INFO] cheese - batch complete in: 0.182 secs -[2018-02-13T00:24:31.915] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:31.954] [INFO] cheese - inserting 1000 documents. first: Template:Party shading/None/block and last: Works of Henry Rollins -[2018-02-13T00:24:31.956] [INFO] cheese - inserting 1000 documents. first: Archery History and last: Yazoo Brewing Company -[2018-02-13T00:24:32.009] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:24:32.012] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:24:32.061] [INFO] cheese - inserting 1000 documents. first: European Cup Winners' Cup 1985-86 and last: List of minor planets: 106001-107000 -[2018-02-13T00:24:32.072] [INFO] cheese - inserting 1000 documents. first: Emerald Fire and last: Shagap’ -[2018-02-13T00:24:32.095] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:24:32.191] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:24:32.363] [INFO] cheese - inserting 1000 documents. first: 2009-10 Alabama-Huntsville Chargers ice hockey season and last: List of minor planets/3401-3500 -[2018-02-13T00:24:32.398] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:24:32.481] [INFO] cheese - inserting 1000 documents. first: Minority Report (movie) and last: Matilda dixon -[2018-02-13T00:24:32.517] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2015 February 25 and last: List of Living Legends Award winners -[2018-02-13T00:24:32.517] [INFO] cheese - inserting 1000 documents. first: The Sikh Missionary Society UK and last: Australian legislative election, 1996 -[2018-02-13T00:24:32.528] [INFO] cheese - inserting 1000 documents. first: Area Bishop of Northern Ontario Region and last: Board of Marshals -[2018-02-13T00:24:32.572] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:24:32.602] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:24:32.620] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:32.621] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:24:32.649] [INFO] cheese - inserting 1000 documents. first: Finland - South Korea relations and last: 1901-02 Scottish Cup -[2018-02-13T00:24:32.718] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:24:32.818] [INFO] cheese - inserting 1000 documents. first: Shagab and last: Gray Ghost (television) -[2018-02-13T00:24:32.877] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:24:32.938] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 48001-49000 and last: Primera División de México 1902-03 -[2018-02-13T00:24:32.959] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:24:32.990] [INFO] cheese - inserting 1000 documents. first: Subject bibliography and last: 1990 European Athletics Championships - Men's 20 km walk -[2018-02-13T00:24:33.023] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:24:33.063] [INFO] cheese - inserting 1000 documents. first: List of airports in the Philippines by total passenger traffic and last: File:Frolov-Sergei-Kuzmich-d25sw.jpg -[2018-02-13T00:24:33.104] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:33.108] [INFO] cheese - inserting 1000 documents. first: Crown in Saskatoon and last: Basutodon ferox -[2018-02-13T00:24:33.156] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:24:33.166] [INFO] cheese - inserting 1000 documents. first: Jigme Dorji Wangchuk and last: County executive -[2018-02-13T00:24:33.228] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:24:33.238] [INFO] cheese - inserting 1000 documents. first: Holy See - Lebanon relations and last: 2010 Honolulu Challenger - Doubles -[2018-02-13T00:24:33.270] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:24:33.327] [INFO] cheese - inserting 1000 documents. first: Har Kisi Ko and last: Template:2015 Super Rugby referees -[2018-02-13T00:24:33.333] [INFO] cheese - inserting 1000 documents. first: Imran Arif and last: Template:Romanian princesses -[2018-02-13T00:24:33.367] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:24:33.385] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:24:33.453] [INFO] cheese - inserting 1000 documents. first: 1971-72 in Swiss football and last: 2008-09 Rutgers Scarlet Knights men's basketball team -[2018-02-13T00:24:33.458] [INFO] cheese - inserting 1000 documents. first: Oaksey Halt railway station and last: List of Bunheads episodes -[2018-02-13T00:24:33.478] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:24:33.506] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:24:33.554] [INFO] cheese - inserting 1000 documents. first: SECD machine and last: 2001 Tour de France -[2018-02-13T00:24:33.660] [INFO] cheese - inserting 1000 documents. first: Yateley School and last: Wikipedia:Version 1.0 Editorial Team/Professional sound production articles by quality -[2018-02-13T00:24:33.703] [INFO] cheese - inserting 1000 documents. first: Grand Forks Public Schools and last: Red-tailed boa -[2018-02-13T00:24:33.705] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:24:33.720] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 8501-9000 and last: ISO 639:sjt -[2018-02-13T00:24:33.727] [INFO] cheese - batch complete in: 2.527 secs -[2018-02-13T00:24:33.767] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:24:33.782] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:33.951] [INFO] cheese - inserting 1000 documents. first: People's Party (Turkey) and last: Catephia albirena -[2018-02-13T00:24:34.019] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:24:34.083] [INFO] cheese - inserting 1000 documents. first: Tandzatap’ and last: Nerkin Kanlidzha -[2018-02-13T00:24:34.100] [INFO] cheese - inserting 1000 documents. first: Thanksgiving (The Middle) and last: Category:Presidents of NBC News -[2018-02-13T00:24:34.109] [INFO] cheese - inserting 1000 documents. first: East Bird's Head - Sentani languages and last: 1982-83 Quebec Nordiques season -[2018-02-13T00:24:34.134] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:24:34.150] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:24:34.192] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:24:34.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Professional sound production articles by quality log and last: New Zealand TR class locomotive -[2018-02-13T00:24:34.361] [INFO] cheese - inserting 1000 documents. first: Don Anderson and last: Stephan Cretier -[2018-02-13T00:24:34.361] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:24:34.405] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:24:34.467] [INFO] cheese - inserting 1000 documents. first: Eblen Center and last: Portal:Agriculture and agronomy/Things you can do -[2018-02-13T00:24:34.477] [INFO] cheese - inserting 1000 documents. first: 2005-06 Albanian Superliga and last: Category:San Francisco Art Institute faculty -[2018-02-13T00:24:34.528] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:24:34.556] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:24:34.646] [INFO] cheese - inserting 1000 documents. first: Tour Signal and last: Drumcree conflict -[2018-02-13T00:24:34.699] [INFO] cheese - inserting 1000 documents. first: Category:Japanese expatriates in England and last: Gryazinsky -[2018-02-13T00:24:34.727] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:24:34.777] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:24:34.864] [INFO] cheese - inserting 1000 documents. first: Category:Indian expatriate male actors in Pakistan and last: CAS-1 -[2018-02-13T00:24:34.876] [INFO] cheese - inserting 1000 documents. first: 1645 Poems and last: Low Fell -[2018-02-13T00:24:34.905] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:24:34.922] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:24:34.936] [INFO] cheese - inserting 1000 documents. first: File:Sandflora Baseball Park 2.jpg and last: Template:NS Intercity lines/branches -[2018-02-13T00:24:34.988] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:35.313] [INFO] cheese - inserting 1000 documents. first: Gryazinskiy and last: 2012 Team Saxo Bank season -[2018-02-13T00:24:35.446] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:24:35.453] [INFO] cheese - inserting 1000 documents. first: List of the Angry Video Game Nerd episodes and last: 1997-98 LFF Lyga -[2018-02-13T00:24:35.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Im in ur base and last: List of classic rock songs -[2018-02-13T00:24:35.514] [INFO] cheese - inserting 1000 documents. first: Austrian football championship 1921-22 and last: 1995-96 Danish 1st Division -[2018-02-13T00:24:35.628] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:24:35.598] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:24:35.715] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:24:35.759] [INFO] cheese - inserting 1000 documents. first: File:Try cover.png and last: Howgego -[2018-02-13T00:24:35.832] [INFO] cheese - inserting 1000 documents. first: Category:Police forces of the Crown dependencies and last: Template:Arrondissements of Allier -[2018-02-13T00:24:35.904] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:24:35.979] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T00:24:36.139] [INFO] cheese - inserting 1000 documents. first: 2001 Legg Mason Tennis Classic - Doubles and last: List of minor planets: 29001-30000 -[2018-02-13T00:24:36.196] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:36.343] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Globalization articles and last: Category:Bodies of water of Yukon -[2018-02-13T00:24:36.391] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:24:36.429] [INFO] cheese - inserting 1000 documents. first: 1955-56 in Swiss football and last: Category:1955 elections in Germany -[2018-02-13T00:24:36.443] [INFO] cheese - inserting 1000 documents. first: Brzozówka, Lublin Voivodeship and last: Opera Roanoke -[2018-02-13T00:24:36.446] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:24:36.482] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:24:36.503] [INFO] cheese - inserting 1000 documents. first: Portal:Kurdistan/Selected biography/6 and last: Template:Chiapas F.C. managers -[2018-02-13T00:24:36.544] [INFO] cheese - inserting 1000 documents. first: La Torre di Pisa and last: D. C. Wimberly -[2018-02-13T00:24:36.545] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:24:36.553] [INFO] cheese - inserting 1000 documents. first: Armor Ambush and last: Fuzhou dialect -[2018-02-13T00:24:36.600] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:24:36.614] [INFO] cheese - inserting 1000 documents. first: 1977-78 La Liga and last: Conmacne mara -[2018-02-13T00:24:36.627] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:24:36.641] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:24:36.678] [INFO] cheese - inserting 1000 documents. first: Bazu Band and last: We Created A Monster -[2018-02-13T00:24:36.715] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:24:36.721] [INFO] cheese - inserting 1000 documents. first: Alhambra and last: Ulster -[2018-02-13T00:24:36.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battle of Trenton/archive1 and last: Primera División Verano 2000 -[2018-02-13T00:24:36.775] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:24:36.804] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 198001-199000 and last: Too Much, Too Little, Too Late EP -[2018-02-13T00:24:36.845] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:24:36.870] [INFO] cheese - batch complete in: 3.143 secs -[2018-02-13T00:24:36.937] [INFO] cheese - inserting 1000 documents. first: Category:Journalists from Kentucky and last: File:Oleksandr Muzychko.jpg -[2018-02-13T00:24:37.013] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:24:37.136] [INFO] cheese - inserting 1000 documents. first: Routes (visual novel) and last: Wikipedia:Peer review/Battlefield 2142/archive1 -[2018-02-13T00:24:37.152] [INFO] cheese - inserting 1000 documents. first: File:Shirley's Sounds.jpg and last: Neapolis University Paphos -[2018-02-13T00:24:37.166] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2005 World Aquatics Championships - Men's 50 metre freestyle and last: 2010 Hypo-Meeting -[2018-02-13T00:24:37.206] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:24:37.213] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:37.216] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:24:37.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Temps and last: Philopatyr Mercurius -[2018-02-13T00:24:37.265] [INFO] cheese - inserting 1000 documents. first: 511 in poetry and last: Wikipedia:WikiProject Disambiguation/Disambiguation pages with hatnotes -[2018-02-13T00:24:37.320] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:24:37.320] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:24:37.422] [INFO] cheese - inserting 1000 documents. first: Ronald Truhbuhovich and last: Category:Tunisian expatriates in Sudan -[2018-02-13T00:24:37.462] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:24:37.568] [INFO] cheese - inserting 1000 documents. first: Troy-Waterford Bridge and last: Japanese civil war -[2018-02-13T00:24:37.589] [INFO] cheese - inserting 1000 documents. first: Laurel Fork and last: Derventio -[2018-02-13T00:24:37.629] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:24:37.638] [INFO] cheese - inserting 1000 documents. first: Sithon antimachus and last: Patan Ju -[2018-02-13T00:24:37.641] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:37.673] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:37.709] [INFO] cheese - inserting 1000 documents. first: Gliniski and last: File:Killing Time (Star Trek novel).jpg -[2018-02-13T00:24:37.741] [INFO] cheese - inserting 1000 documents. first: List of Bangladeshi films of 1994 and last: Template:U0400 -[2018-02-13T00:24:37.757] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:24:37.779] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:24:37.837] [INFO] cheese - inserting 1000 documents. first: HadSM3 and last: Tie-in novel -[2018-02-13T00:24:37.897] [INFO] cheese - inserting 1000 documents. first: Gonbatuk and last: Zatičina -[2018-02-13T00:24:37.899] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:24:37.927] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:24:37.975] [INFO] cheese - inserting 1000 documents. first: Category:Olympic silver medalists for the United Team of Germany and last: English cricket team in South Africa in 1964–65 -[2018-02-13T00:24:38.024] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:24:38.059] [INFO] cheese - inserting 1000 documents. first: File:Palimos03.jpg and last: Nx (digraph) -[2018-02-13T00:24:38.116] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:24:38.151] [INFO] cheese - inserting 1000 documents. first: Kamo no yasunori no jo and last: George Metzler -[2018-02-13T00:24:38.161] [INFO] cheese - inserting 1000 documents. first: Has Anyone Seen the Colonel and last: Category:1889 establishments in Dakota Territory -[2018-02-13T00:24:38.195] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:24:38.201] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:38.272] [INFO] cheese - inserting 1000 documents. first: Sophie Roberge and last: 2009 Chinese Artistic Gymnastics Championships -[2018-02-13T00:24:38.306] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:24:38.321] [INFO] cheese - inserting 1000 documents. first: Luigi Mazzella and last: Xiao Rang -[2018-02-13T00:24:38.377] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:38.484] [INFO] cheese - inserting 1000 documents. first: Laté 298 and last: Creative Arts Emmy Awards -[2018-02-13T00:24:38.525] [INFO] cheese - inserting 1000 documents. first: Pericine and last: Hydro-electric plant -[2018-02-13T00:24:38.534] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:24:38.575] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:38.640] [INFO] cheese - inserting 1000 documents. first: Ailey (crater) and last: Alugolla (7°9'N 80°31'E) -[2018-02-13T00:24:38.648] [INFO] cheese - inserting 1000 documents. first: Boardman Lake Trail and last: Wikipedia:WikiProject Spam/LinkReports/jahania.org -[2018-02-13T00:24:38.662] [INFO] cheese - inserting 1000 documents. first: Colors ~Melody and Harmony~ and last: Wilhelm Kempf -[2018-02-13T00:24:38.673] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:24:38.690] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:24:38.735] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:24:38.812] [INFO] cheese - inserting 1000 documents. first: Jujuy and last: Swift Boat Vets -[2018-02-13T00:24:38.860] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:38.897] [INFO] cheese - inserting 1000 documents. first: Astana, Kazakhstan and last: 2008–09 Ukrainian Premier League Reserves -[2018-02-13T00:24:38.968] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:24:38.992] [INFO] cheese - inserting 1000 documents. first: New College, Chennai and last: TV Animation Fullmetal Alchemist Original Soundtrack 1 -[2018-02-13T00:24:39.051] [INFO] cheese - inserting 1000 documents. first: Ambaliyadda (7°1'N 80°54'E) and last: Angela Moroşanu -[2018-02-13T00:24:39.063] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:24:39.133] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:24:39.223] [INFO] cheese - inserting 1000 documents. first: United States Internal Revenue Service and last: William the Conqueror -[2018-02-13T00:24:39.321] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/jahania.org and last: American Fantastic Tales -[2018-02-13T00:24:39.352] [INFO] cheese - inserting 1000 documents. first: Claude Conder and last: Apostol Arsache -[2018-02-13T00:24:39.383] [INFO] cheese - inserting 1000 documents. first: Portal:College football/Selected picture/2008 31 and last: Edward T. Welburn -[2018-02-13T00:24:39.402] [INFO] cheese - batch complete in: 2.531 secs -[2018-02-13T00:24:39.407] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:24:39.447] [INFO] cheese - inserting 1000 documents. first: High Spin and last: Treblinka (disambiguation) -[2018-02-13T00:24:39.446] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:24:39.474] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:24:39.522] [INFO] cheese - inserting 1000 documents. first: Bronchodilation and last: Ann Taylor Corporation -[2018-02-13T00:24:39.563] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:24:39.633] [INFO] cheese - inserting 1000 documents. first: Vinojinidis and last: Non Residential Indian -[2018-02-13T00:24:39.638] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:24:39.698] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:24:39.883] [INFO] cheese - inserting 1000 documents. first: Kergoat and last: Brachypodium salzmannii -[2018-02-13T00:24:39.932] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:24:39.973] [INFO] cheese - inserting 1000 documents. first: Rough green snake and last: Krągłe -[2018-02-13T00:24:40.023] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:24:40.027] [INFO] cheese - inserting 1000 documents. first: Gomoku Narabe and last: Extra-man offense -[2018-02-13T00:24:40.032] [INFO] cheese - inserting 1000 documents. first: The Party's Over (1956 song) and last: Peter Fröjdfeldt -[2018-02-13T00:24:40.084] [INFO] cheese - inserting 1000 documents. first: Union with God and last: St Catherine of Sweden -[2018-02-13T00:24:40.087] [INFO] cheese - inserting 1000 documents. first: USS John L. Clem and last: Template:Albany Great Danes football navbox -[2018-02-13T00:24:40.099] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:40.114] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:24:40.120] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:40.142] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:24:40.293] [INFO] cheese - inserting 1000 documents. first: Festuca salzmannii and last: Template:Roman Catholic Diocese of Houma–Thibodaux -[2018-02-13T00:24:40.342] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:24:40.457] [INFO] cheese - inserting 1000 documents. first: Krągłe, Podlaskie Voivodeship and last: Category:FL-Class Amiga articles of Top-importance -[2018-02-13T00:24:40.589] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:24:40.671] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Irish Republicanism and last: Omar Hijazi -[2018-02-13T00:24:40.712] [INFO] cheese - inserting 1000 documents. first: Thirty-eighth century BC and last: Spindasis kallimon -[2018-02-13T00:24:40.748] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:24:40.808] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:24:40.832] [INFO] cheese - inserting 1000 documents. first: File:Winterwomenreissue.jpg and last: File:Bioshock series.jpg -[2018-02-13T00:24:40.929] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:24:40.971] [INFO] cheese - inserting 1000 documents. first: James William Dunegan and last: Category:Discoveries by Joseph Jean Pierre Laurent -[2018-02-13T00:24:40.975] [INFO] cheese - inserting 1000 documents. first: Sennaar and last: Rhinobatos productus -[2018-02-13T00:24:41.024] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:24:41.051] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:24:41.233] [INFO] cheese - inserting 1000 documents. first: Mark Wotte and last: Lonely for the Last Time -[2018-02-13T00:24:41.245] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Amiga articles of High-importance and last: Reducation -[2018-02-13T00:24:41.269] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:41.277] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RE-Hesse left/50 and last: Jaroslav Erno Sedivy -[2018-02-13T00:24:41.302] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:24:41.317] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:24:41.338] [INFO] cheese - inserting 1000 documents. first: Wu Weizhong and last: Gora pri Pečah -[2018-02-13T00:24:41.390] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:41.454] [INFO] cheese - inserting 1000 documents. first: Boydsville, Kentucky and Tennessee and last: Thomas Pang Cheung-wai -[2018-02-13T00:24:41.494] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:24:41.515] [INFO] cheese - inserting 1000 documents. first: Primary Club and last: Bantock, Sir Granville Ransome -[2018-02-13T00:24:41.557] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:41.594] [INFO] cheese - inserting 1000 documents. first: Dr vino and last: Ability Photoalbum -[2018-02-13T00:24:41.625] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:24:41.693] [INFO] cheese - inserting 1000 documents. first: Khazar Beyg and last: Chayon-ryu -[2018-02-13T00:24:41.721] [INFO] cheese - inserting 1000 documents. first: Ethnic groups in Japan and last: Maarten van der Weijden -[2018-02-13T00:24:41.757] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:41.818] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:24:41.899] [INFO] cheese - inserting 1000 documents. first: Bute by-election, 1885 and last: Category:1940s disestablishments in Minnesota -[2018-02-13T00:24:41.899] [INFO] cheese - inserting 1000 documents. first: Madonna-whore complex and last: Advertising campaigns -[2018-02-13T00:24:41.941] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:24:41.949] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:24:41.982] [INFO] cheese - inserting 1000 documents. first: Eydhafushi and last: Patni -[2018-02-13T00:24:42.040] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:24:42.100] [INFO] cheese - inserting 1000 documents. first: Martin Harvey and last: Mollaret's meningitis -[2018-02-13T00:24:42.106] [INFO] cheese - inserting 1000 documents. first: Leon Smith and last: Al-Madina Souq -[2018-02-13T00:24:42.149] [INFO] cheese - inserting 1000 documents. first: William II of England and last: AD 23 -[2018-02-13T00:24:42.161] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:24:42.175] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:24:42.232] [INFO] cheese - inserting 1000 documents. first: Bronisław Szwarce and last: Category:1961 in television -[2018-02-13T00:24:42.310] [INFO] cheese - batch complete in: 2.907 secs -[2018-02-13T00:24:42.301] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:42.360] [INFO] cheese - inserting 1000 documents. first: Algebraic input method and last: Bearspring, Tennessee -[2018-02-13T00:24:42.459] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:42.593] [INFO] cheese - inserting 1000 documents. first: AK-105 and last: King's Mill Hospital -[2018-02-13T00:24:42.605] [INFO] cheese - inserting 1000 documents. first: Toby Love Reloaded and last: Kalinówka Królewska -[2018-02-13T00:24:42.672] [INFO] cheese - inserting 1000 documents. first: Category:Airliner accidents and incidents in Minnesota and last: School meals initiative for healthy children -[2018-02-13T00:24:42.699] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:24:42.731] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:24:42.762] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:24:42.836] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia books on systems and last: KBytes -[2018-02-13T00:24:42.930] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Internationalist Books and last: Mercer Middle School (Aldie, Virginia) -[2018-02-13T00:24:42.938] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:24:43.019] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:24:43.026] [INFO] cheese - inserting 1000 documents. first: Alan Tennie and last: SV Jenaer Glaswerk -[2018-02-13T00:24:43.072] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:43.245] [INFO] cheese - inserting 1000 documents. first: Kamionka, Mońki County and last: Zaraszów-Kolonia -[2018-02-13T00:24:43.277] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:43.285] [INFO] cheese - inserting 1000 documents. first: Majungaichthys and last: Hayden, Wheeler and Schwend -[2018-02-13T00:24:43.286] [INFO] cheese - inserting 1000 documents. first: Category:1915 in North America and last: Category:Death in West Virginia -[2018-02-13T00:24:43.320] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:24:43.324] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:24:43.345] [INFO] cheese - inserting 1000 documents. first: AD 24 and last: 1117 -[2018-02-13T00:24:43.394] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:24:43.419] [INFO] cheese - inserting 1000 documents. first: Tony Jordan and last: Doughoregan Manor -[2018-02-13T00:24:43.427] [INFO] cheese - inserting 1000 documents. first: How to Dismantle An Atomic Bomb and last: George Mihaita -[2018-02-13T00:24:43.467] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:24:43.476] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:43.486] [INFO] cheese - inserting 1000 documents. first: Marra Developments v BW Rofe and last: George Albert Bowater -[2018-02-13T00:24:43.524] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:24:43.630] [INFO] cheese - inserting 1000 documents. first: Matthew 8:5-13 and last: The Killing House -[2018-02-13T00:24:43.670] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:24:43.741] [INFO] cheese - inserting 1000 documents. first: Dàolǐ Qū and last: Wikipedia:Categories for discussion/Log/2008 August 21 -[2018-02-13T00:24:43.795] [INFO] cheese - inserting 1000 documents. first: Katie Patrick and last: Wikipedia:WikiProject Spam/LinkReports/bargainpump.com -[2018-02-13T00:24:43.801] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:24:43.855] [INFO] cheese - inserting 1000 documents. first: Massively multiplayer online RPG and last: Susan Holloway Scott -[2018-02-13T00:24:43.860] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:24:43.905] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:24:43.939] [INFO] cheese - inserting 1000 documents. first: Category:Novels set in Cape Verde and last: Isis the Amazon -[2018-02-13T00:24:43.968] [INFO] cheese - inserting 1000 documents. first: Federal Judiciary and last: Gabriel Köerner -[2018-02-13T00:24:44.044] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:24:44.106] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:24:44.244] [INFO] cheese - inserting 1000 documents. first: John Gordon, Lord Gordon and last: Category:Roman Catholic secondary schools in the Diocese of Northampton -[2018-02-13T00:24:44.311] [INFO] cheese - inserting 1000 documents. first: Topchihinsky Raion and last: Rohrenkopf -[2018-02-13T00:24:44.366] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:24:44.396] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:24:44.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Pokémon voice actors and last: Szerszenie -[2018-02-13T00:24:44.674] [INFO] cheese - inserting 1000 documents. first: Lindsay Hayward and last: Lake Margherita -[2018-02-13T00:24:44.700] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:24:44.707] [INFO] cheese - inserting 1000 documents. first: History of Connecticut industry and last: Oriani destroyer class -[2018-02-13T00:24:44.759] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:24:44.798] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:24:44.824] [INFO] cheese - inserting 1000 documents. first: RD-107A and last: Category:Unsolved murders in Gambia -[2018-02-13T00:24:44.874] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:24:44.881] [INFO] cheese - inserting 1000 documents. first: Volcanic desert and last: If the Pig had Wings -[2018-02-13T00:24:44.904] [INFO] cheese - inserting 1000 documents. first: Monosexuality and last: Puns on Hollywood -[2018-02-13T00:24:44.916] [INFO] cheese - inserting 1000 documents. first: 1118 and last: Fallopia japonica -[2018-02-13T00:24:44.922] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:24:44.966] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:24:45.037] [INFO] cheese - batch complete in: 1.642 secs -[2018-02-13T00:24:45.059] [INFO] cheese - inserting 1000 documents. first: Tołwin and last: Gladius Dei -[2018-02-13T00:24:45.111] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:24:45.137] [INFO] cheese - inserting 1000 documents. first: Ricarda Jordan and last: Listed buildings in New Mills -[2018-02-13T00:24:45.165] [INFO] cheese - inserting 1000 documents. first: 75 Public Square and last: Herbert Reich (sailor) -[2018-02-13T00:24:45.184] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:45.205] [INFO] cheese - inserting 1000 documents. first: Category:Culture of Uttarakhand and last: Hms royal george -[2018-02-13T00:24:45.207] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:24:45.269] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:24:45.359] [INFO] cheese - inserting 1000 documents. first: Rancho Cañada de los Coches and last: Paul Robert Hale -[2018-02-13T00:24:45.447] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:24:45.522] [INFO] cheese - inserting 1000 documents. first: Juliet Huddy and last: Syas River -[2018-02-13T00:24:45.572] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:24:45.589] [INFO] cheese - inserting 1000 documents. first: Ciemne and last: No 205 Sqn -[2018-02-13T00:24:45.616] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Oak Hill Industrial Academy and last: One Woman to Another -[2018-02-13T00:24:45.629] [INFO] cheese - inserting 1000 documents. first: Naoise O Muiri and last: John MacBrien -[2018-02-13T00:24:45.632] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:45.667] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:24:45.688] [INFO] cheese - inserting 1000 documents. first: Polish 2nd Armoured Regiment and last: Hypoaesthesia -[2018-02-13T00:24:45.689] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:24:45.736] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:45.776] [INFO] cheese - inserting 1000 documents. first: ISO 639:gla and last: Category:1682 in politics -[2018-02-13T00:24:45.809] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:24:45.899] [INFO] cheese - inserting 1000 documents. first: Tanjii Bird Reserve and last: Kemerovo Region -[2018-02-13T00:24:45.944] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:24:45.986] [INFO] cheese - inserting 1000 documents. first: Osijek railway station and last: Barkah, Iran -[2018-02-13T00:24:46.024] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:24:46.040] [INFO] cheese - inserting 1000 documents. first: Gallery of Admiral Cheng Ho and last: Category:Politics of Kırklareli Province -[2018-02-13T00:24:46.059] [INFO] cheese - inserting 1000 documents. first: Isser Yehuda Unterman and last: SOS (ABBA song) -[2018-02-13T00:24:46.112] [INFO] cheese - inserting 1000 documents. first: Liz prince and last: Astronomical Society of London -[2018-02-13T00:24:46.127] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:24:46.139] [INFO] cheese - inserting 1000 documents. first: Category:1683 in politics and last: Wikipedia:Articles for deletion/List of Nobel laureates affiliated with Princeton University -[2018-02-13T00:24:46.150] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:24:46.179] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:24:46.192] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:46.333] [INFO] cheese - inserting 1000 documents. first: Philip Claypool and last: Category:Wikipedians by alma mater: INSEAD -[2018-02-13T00:24:46.387] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:24:46.443] [INFO] cheese - inserting 1000 documents. first: Category:Federal Republic of Central America and last: UNSW International House -[2018-02-13T00:24:46.474] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2015-02-13 and last: Alex pike -[2018-02-13T00:24:46.516] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:24:46.562] [INFO] cheese - inserting 1000 documents. first: Seela Misra and last: Wikipedia:WikiProject Spam/LinkReports/affil.co.uk -[2018-02-13T00:24:46.569] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:46.621] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:46.627] [INFO] cheese - inserting 1000 documents. first: English mythology and last: Telugu language -[2018-02-13T00:24:46.644] [INFO] cheese - inserting 1000 documents. first: Fiennes Stanley Wykeham Cornwallis, 1st Baron Cornwallis and last: Daryl Clare -[2018-02-13T00:24:46.691] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:46.707] [INFO] cheese - inserting 1000 documents. first: Cecily and Cathe and last: Template:FootballIDRIVECurrent -[2018-02-13T00:24:46.717] [INFO] cheese - batch complete in: 1.68 secs -[2018-02-13T00:24:46.764] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:46.885] [INFO] cheese - inserting 1000 documents. first: Forum clause and last: File:Youth Association of Kuwait logo.png -[2018-02-13T00:24:46.889] [INFO] cheese - inserting 1000 documents. first: Maine Prairie Township, Minnesota and last: HMS Prince of Orange (1734) -[2018-02-13T00:24:46.933] [INFO] cheese - inserting 1000 documents. first: Plebeius sorhagenii and last: Charlebois, Manitoba -[2018-02-13T00:24:46.932] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:24:46.965] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:24:47.008] [INFO] cheese - inserting 1000 documents. first: Wang Yin and last: Template:S-line/MOSMETRO right/Filyovskaya -[2018-02-13T00:24:47.025] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:24:47.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Raymarine Marine Electronics and last: Granville Maynard Sharp -[2018-02-13T00:24:47.051] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:47.104] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:24:47.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2015 April 12 and last: Morgan, New Jersey -[2018-02-13T00:24:47.276] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:24:47.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gotz.narod.ru and last: Robert Fuller House -[2018-02-13T00:24:47.341] [INFO] cheese - inserting 1000 documents. first: Victoria River-Daly Shire and last: Elizabeth Stanley -[2018-02-13T00:24:47.359] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:24:47.390] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:24:47.407] [INFO] cheese - inserting 1000 documents. first: Category:Pre-statehood history of Pennsylvania and last: Scraper (biology) -[2018-02-13T00:24:47.428] [INFO] cheese - inserting 1000 documents. first: Storage clamp and last: Gordon Welchman -[2018-02-13T00:24:47.450] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:47.490] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:24:47.574] [INFO] cheese - inserting 1000 documents. first: File:1998 NBA Finals.jpg and last: Crotalus exul -[2018-02-13T00:24:47.625] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:47.633] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian medical doctors and last: Wikipedia:Articles for deletion/Ted Chapelhow -[2018-02-13T00:24:47.676] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:47.743] [INFO] cheese - inserting 1000 documents. first: SS-355 and last: Christopher Grace -[2018-02-13T00:24:47.761] [INFO] cheese - inserting 1000 documents. first: Isoceteth-20 and last: Emmeline Hill -[2018-02-13T00:24:47.765] [INFO] cheese - inserting 1000 documents. first: Megadrive Handheld and last: 1953 NCAA Men's Basketball All-Americans -[2018-02-13T00:24:47.776] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:24:47.813] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:24:47.813] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:47.938] [INFO] cheese - inserting 1000 documents. first: So many dynamos and last: Charles Murray Padday -[2018-02-13T00:24:47.980] [INFO] cheese - inserting 1000 documents. first: Suzuki Liana and last: LoveFilm -[2018-02-13T00:24:47.986] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:24:48.042] [INFO] cheese - inserting 1000 documents. first: Fool (Twelfth Night) and last: Latter Zhou -[2018-02-13T00:24:48.047] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:24:48.056] [INFO] cheese - inserting 1000 documents. first: Mauritania–U.S. relations and last: Category:1921 establishments in Costa Rica -[2018-02-13T00:24:48.086] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:24:48.101] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:48.140] [INFO] cheese - inserting 1000 documents. first: Copa Mustang I 2004 and last: Frullania intermedia -[2018-02-13T00:24:48.169] [INFO] cheese - inserting 1000 documents. first: International Bluegrass Music Hall of Honor and last: Category:Siege of Sarajevo -[2018-02-13T00:24:48.187] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:24:48.221] [INFO] cheese - inserting 1000 documents. first: Battle of Bennington and last: USS Merrimack -[2018-02-13T00:24:48.236] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:48.408] [INFO] cheese - inserting 1000 documents. first: Marcos Espinal and last: Halo: The Graphic Novel -[2018-02-13T00:24:48.428] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T00:24:48.554] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:24:48.617] [INFO] cheese - inserting 1000 documents. first: Category:1920s establishments in Costa Rica and last: Diagnostic Impotence Questionnaire -[2018-02-13T00:24:48.729] [INFO] cheese - inserting 1000 documents. first: Latter Tang and last: Spirama rosacea -[2018-02-13T00:24:48.813] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:24:48.856] [INFO] cheese - inserting 1000 documents. first: Okiek and last: Template:Democratic Korea Party/meta/color -[2018-02-13T00:24:48.865] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:24:48.879] [INFO] cheese - inserting 1000 documents. first: Vandenberg, Arthur H. and last: Sai Van Bridge -[2018-02-13T00:24:49.012] [INFO] cheese - inserting 1000 documents. first: Template:TopicHistoryoutput and last: Template:Fb team Emmen -[2018-02-13T00:24:49.039] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:24:49.071] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T00:24:49.126] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:24:49.341] [INFO] cheese - inserting 1000 documents. first: Branko Schmidt and last: Zara Turner -[2018-02-13T00:24:49.441] [INFO] cheese - inserting 1000 documents. first: Hypopyra mollis and last: Jim F. Heenan -[2018-02-13T00:24:49.462] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:24:49.516] [INFO] cheese - inserting 1000 documents. first: FC Real Odessa and last: Badentarbet Bay -[2018-02-13T00:24:49.542] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:24:49.665] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:24:49.736] [INFO] cheese - inserting 1000 documents. first: 28-out perfect game and last: Sara Hausmann -[2018-02-13T00:24:49.824] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:24:49.832] [INFO] cheese - inserting 1000 documents. first: Herwig Rüdisser and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Wikipedians for local history/mylocalhistorypage -[2018-02-13T00:24:49.879] [INFO] cheese - inserting 1000 documents. first: Accidental (music) and last: Stop signal -[2018-02-13T00:24:49.920] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:24:49.925] [INFO] cheese - inserting 1000 documents. first: Puget Sound Shipyard and last: Wikipedia:Articles for deletion/.hack//fragment -[2018-02-13T00:24:50.045] [INFO] cheese - inserting 1000 documents. first: File:Actionsperadmin.png and last: John Frank Charles Kingman -[2018-02-13T00:24:50.124] [INFO] cheese - batch complete in: 1.696 secs -[2018-02-13T00:24:50.186] [INFO] cheese - inserting 1000 documents. first: The Mermaid (1910 film) and last: Category:1969–70 in Soviet ice hockey -[2018-02-13T00:24:50.198] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:24:50.273] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:24:50.318] [INFO] cheese - inserting 1000 documents. first: U.S.–Norway relations and last: File:Joe Hill Louis - Boogie in the Park.ogg -[2018-02-13T00:24:50.330] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:24:50.365] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:24:50.566] [INFO] cheese - inserting 1000 documents. first: Read India and last: Liu Chi-Wen -[2018-02-13T00:24:50.593] [INFO] cheese - inserting 1000 documents. first: Polish Mountain Hillclimb and last: Billboard Top Rock'n'Roll Hits: 1961 -[2018-02-13T00:24:50.613] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:24:50.693] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:24:50.886] [INFO] cheese - inserting 1000 documents. first: North Monmouthshire (UK Parliament constituency) and last: List of New Jersey rivers -[2018-02-13T00:24:50.913] [INFO] cheese - inserting 1000 documents. first: Category:1970–71 in Soviet ice hockey and last: Template:Suburbs of Mainz -[2018-02-13T00:24:50.945] [INFO] cheese - inserting 1000 documents. first: Acrolepia amseli and last: Dallas (1978 TV series) (season 14) -[2018-02-13T00:24:50.951] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:24:51.009] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:24:51.050] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:24:51.105] [INFO] cheese - inserting 1000 documents. first: Plantar fibromatosis and last: San Carlos Sija -[2018-02-13T00:24:51.231] [INFO] cheese - inserting 1000 documents. first: SS Quersee and last: Calcarovula ildiko -[2018-02-13T00:24:51.243] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T00:24:51.294] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:24:51.401] [INFO] cheese - inserting 1000 documents. first: Linlin Deng and last: Asano Station -[2018-02-13T00:24:51.449] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:24:51.465] [INFO] cheese - inserting 1000 documents. first: Piletocera maculifrons and last: Stadiasmus Patarensis -[2018-02-13T00:24:51.501] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:24:51.536] [INFO] cheese - inserting 1000 documents. first: W25CS and last: Template:Taxonomy/Bellubrunnus -[2018-02-13T00:24:51.539] [INFO] cheese - inserting 1000 documents. first: Constitution of Saudi Arabia and last: Sion (district) -[2018-02-13T00:24:51.572] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:24:51.579] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:24:51.683] [INFO] cheese - inserting 1000 documents. first: Calcarovula longirostrata and last: Nuculoidea -[2018-02-13T00:24:51.700] [INFO] cheese - inserting 1000 documents. first: Store-and-forward switching center and last: Nemertea -[2018-02-13T00:24:51.721] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:24:51.745] [INFO] cheese - inserting 1000 documents. first: San Francisco La Unión and last: Clerk of the Closet -[2018-02-13T00:24:51.783] [INFO] cheese - inserting 1000 documents. first: Pusca Automata model 1986 and last: File:Times Like These (Buddy Jewell album) coverart.jpg -[2018-02-13T00:24:51.784] [INFO] cheese - inserting 1000 documents. first: Porthcuel and last: AH13 -[2018-02-13T00:24:51.833] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:24:51.851] [INFO] cheese - batch complete in: 1.726 secs -[2018-02-13T00:24:51.873] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:51.906] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:24:51.993] [INFO] cheese - inserting 1000 documents. first: File:Richard Skalak.jpg and last: US–Republic of China relations -[2018-02-13T00:24:52.078] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:52.312] [INFO] cheese - inserting 1000 documents. first: Georgi Petrov (footballer, born 1974) and last: Bogu kumite -[2018-02-13T00:24:52.385] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:24:52.415] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Equatorial Guinea and last: The Ruff & Ready Show -[2018-02-13T00:24:52.452] [INFO] cheese - inserting 1000 documents. first: 11 Mile and last: Birdmount -[2018-02-13T00:24:52.455] [INFO] cheese - inserting 1000 documents. first: The Peninsula (newspaper) and last: New Haven Shuttle (Amtrak) -[2018-02-13T00:24:52.475] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:24:52.504] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:24:52.521] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:24:52.571] [INFO] cheese - inserting 1000 documents. first: T Coronae borealis and last: List of Arsenal F.C. players -[2018-02-13T00:24:52.582] [INFO] cheese - inserting 1000 documents. first: United States Republic of China relations and last: FORV Sagar Sampada -[2018-02-13T00:24:52.614] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:24:52.633] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:24:52.801] [INFO] cheese - inserting 1000 documents. first: Peter atte Wood and last: William Carter (Mansfield MP) -[2018-02-13T00:24:52.977] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:24:52.992] [INFO] cheese - inserting 1000 documents. first: Compendium of Macromolecular Nomenclature and last: In Jae Keun -[2018-02-13T00:24:53.018] [INFO] cheese - inserting 1000 documents. first: Mako Kojima and last: Accounting Review -[2018-02-13T00:24:53.068] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:53.075] [INFO] cheese - inserting 1000 documents. first: Pennsylvania gubernatorial election, 1986 and last: Private Wealth Management -[2018-02-13T00:24:53.081] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:24:53.130] [INFO] cheese - inserting 1000 documents. first: Fbins and last: Church Street–Cady Hill Historic District -[2018-02-13T00:24:53.130] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:24:53.182] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:24:53.273] [INFO] cheese - inserting 1000 documents. first: Helmet vanga and last: Nuclear Bomb -[2018-02-13T00:24:53.326] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:24:53.348] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Texas State Highway Spur 86 and last: File:T-34 fully restored.jpg -[2018-02-13T00:24:53.387] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:24:53.394] [INFO] cheese - inserting 1000 documents. first: File:Tattoo Bugle Call.jpg and last: São Miguel das Missões, Rio Grande do Sul -[2018-02-13T00:24:53.403] [INFO] cheese - inserting 1000 documents. first: Least integer principle and last: U.S.-Rwanda relations -[2018-02-13T00:24:53.451] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:24:53.454] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:53.513] [INFO] cheese - inserting 1000 documents. first: Ruth McGregor and last: HBC (disambiguation) -[2018-02-13T00:24:53.558] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:24:53.572] [INFO] cheese - inserting 1000 documents. first: Template:User 2 Minutes to Midnight and last: Category:Top-importance B-Class Palaeontology articles -[2018-02-13T00:24:53.621] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:24:53.659] [INFO] cheese - inserting 1000 documents. first: Low (Inna song) and last: Specialized camping -[2018-02-13T00:24:53.700] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:24:53.725] [INFO] cheese - inserting 1000 documents. first: Yeshivah College, Australia and last: Rap in Sweden -[2018-02-13T00:24:53.762] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:24:53.782] [INFO] cheese - inserting 1000 documents. first: Platyhelmintha and last: Printing -[2018-02-13T00:24:53.809] [INFO] cheese - inserting 1000 documents. first: US-Rwanda relations and last: ModPlug (disambiguation) -[2018-02-13T00:24:53.855] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:24:53.860] [INFO] cheese - inserting 1000 documents. first: São Miguel das Missões, Rio Grande do Sul, Brazil and last: Wikipedia:Articles for deletion/Marcus Fiesel -[2018-02-13T00:24:53.863] [INFO] cheese - inserting 1000 documents. first: Category:Fictional members of the United States House of Representatives and last: Template:Munich U-Bahn U5 navbox -[2018-02-13T00:24:53.880] [INFO] cheese - batch complete in: 2.029 secs -[2018-02-13T00:24:53.909] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:24:53.939] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:24:54.044] [INFO] cheese - inserting 1000 documents. first: Adventure camping and last: Category:Nigerian expatriates in Lebanon -[2018-02-13T00:24:54.064] [INFO] cheese - inserting 1000 documents. first: Energy use in the US and last: No. 5 Squadron RNAS -[2018-02-13T00:24:54.107] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:24:54.218] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:24:54.238] [INFO] cheese - inserting 1000 documents. first: Drain (disambiguation) and last: Redondo Beach (disambiguation) -[2018-02-13T00:24:54.289] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:24:54.346] [INFO] cheese - inserting 1000 documents. first: Latin gamma and last: MTV En Espanol -[2018-02-13T00:24:54.350] [INFO] cheese - inserting 1000 documents. first: Monte Walsh (disambiguation) and last: He and She (film) -[2018-02-13T00:24:54.449] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:24:54.481] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:24:54.555] [INFO] cheese - inserting 1000 documents. first: Wildwood Lake (disambiguation) and last: Category:Populated places established in 1696 -[2018-02-13T00:24:54.563] [INFO] cheese - inserting 1000 documents. first: Shebrew and last: Access Bank Nigerian Government Bond Index -[2018-02-13T00:24:54.652] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:24:54.684] [INFO] cheese - inserting 1000 documents. first: Dobra, India and last: Β-Phenylacetic acid -[2018-02-13T00:24:54.698] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:24:54.779] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:24:54.823] [INFO] cheese - inserting 1000 documents. first: Robyn Hitchcock and the Egyptians and last: Mike Jackson (left-handed pitcher) -[2018-02-13T00:24:54.900] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:24:55.037] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese conductors (music) and last: Roman Catholicism in Tuva -[2018-02-13T00:24:55.049] [INFO] cheese - inserting 1000 documents. first: Concept cars from Opel and last: 2010–11 Segunda División B Play-Off -[2018-02-13T00:24:55.084] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:24:55.138] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:24:55.237] [INFO] cheese - inserting 1000 documents. first: Pollycarpus Priyanto and last: Home Sweet Homediddly-Dum-Doodily -[2018-02-13T00:24:55.271] [INFO] cheese - inserting 1000 documents. first: Chuckie Campbell and last: Category:Racism in Denmark -[2018-02-13T00:24:55.285] [INFO] cheese - inserting 1000 documents. first: 387th Air Expeditionary Group and last: Beta adrenergic receptor kinase -[2018-02-13T00:24:55.320] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:24:55.337] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:24:55.360] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Don Weis and last: Knight Rider (NES) -[2018-02-13T00:24:55.351] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:24:55.417] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:24:55.448] [INFO] cheese - inserting 1000 documents. first: Roman Catholicism in West Papua and last: Thysanoplusia lectula -[2018-02-13T00:24:55.483] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:55.555] [INFO] cheese - inserting 1000 documents. first: 2010–11 Tercera División play-offs and last: Leioheterodon modestus -[2018-02-13T00:24:55.590] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:24:55.636] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Hapoel Majd al-Krum and last: Category:Books by Henry VIII -[2018-02-13T00:24:55.667] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:24:55.686] [INFO] cheese - inserting 1000 documents. first: James Sidney, Baron Ensor Ensor and last: Anno hegirae -[2018-02-13T00:24:55.697] [INFO] cheese - inserting 1000 documents. first: 4 in the Morning and last: File:Ghost pirates.jpg -[2018-02-13T00:24:55.711] [INFO] cheese - inserting 1000 documents. first: Touch Flo 3D and last: Bearden, Knoxville, Tennessee -[2018-02-13T00:24:55.727] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:24:55.728] [INFO] cheese - inserting 1000 documents. first: Inquirições and last: Wikipedia:BUSFAQ -[2018-02-13T00:24:55.746] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:24:55.749] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:24:55.776] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:24:55.866] [INFO] cheese - inserting 1000 documents. first: Category:Organizations based in Ramallah and last: Portal:Trains/Selected picture/Week 28, 2012/link -[2018-02-13T00:24:55.918] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:24:55.966] [INFO] cheese - inserting 1000 documents. first: Cavalcade (play) and last: March 28, 2002 -[2018-02-13T00:24:56.050] [INFO] cheese - inserting 1000 documents. first: Doreen Liu and last: Isaac Mbenza -[2018-02-13T00:24:56.103] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:56.153] [INFO] cheese - batch complete in: 2.273 secs -[2018-02-13T00:24:56.169] [INFO] cheese - inserting 1000 documents. first: Secular Canons of St. John the Evangelist and last: William I, Viscount of Béarn -[2018-02-13T00:24:56.185] [INFO] cheese - inserting 1000 documents. first: Slobodni Tjednik and last: Portland (Oregon) -[2018-02-13T00:24:56.241] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:56.247] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bathroom attendant and last: Wikipedia:Articles for deletion/Mark Foresta -[2018-02-13T00:24:56.249] [INFO] cheese - inserting 1000 documents. first: Template:Xsign and last: Wikipedia:WikiProject Washington (U.S. state) -[2018-02-13T00:24:56.275] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:24:56.292] [INFO] cheese - inserting 1000 documents. first: Template:Chennai Super Kings and last: Template:Membership/Mozambique -[2018-02-13T00:24:56.346] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:24:56.349] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:24:56.383] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:24:57.008] [INFO] cheese - inserting 1000 documents. first: Raymark and last: Edrington plc -[2018-02-13T00:24:57.040] [INFO] cheese - inserting 1000 documents. first: Template:Membership/Namibia and last: Khvor-e Bala -[2018-02-13T00:24:57.049] [INFO] cheese - inserting 1000 documents. first: Dodanim Barboza and last: Narcoota -[2018-02-13T00:24:57.133] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:24:57.154] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T00:24:57.169] [INFO] cheese - inserting 1000 documents. first: Template:MDintbtm and last: Dec. 25 -[2018-02-13T00:24:57.186] [INFO] cheese - inserting 1000 documents. first: Portland (Oregon, United States) and last: Multiprotocol BGP -[2018-02-13T00:24:57.206] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:24:57.242] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:24:57.254] [INFO] cheese - inserting 1000 documents. first: File:Einsjager.jpg and last: Araneids -[2018-02-13T00:24:57.360] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:24:57.591] [INFO] cheese - inserting 1000 documents. first: List of protected heritage sites in La Roche-en-Ardenne and last: Bunguran -[2018-02-13T00:24:57.664] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T00:24:57.760] [INFO] cheese - inserting 1000 documents. first: Al Wasl F.C. season 2009–10 and last: River Rother, Derbyshire -[2018-02-13T00:24:57.766] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:24:57.815] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:24:57.834] [INFO] cheese - inserting 1000 documents. first: Category:Iron sculptures in the United States and last: A Heart in Pawn -[2018-02-13T00:24:57.864] [INFO] cheese - inserting 1000 documents. first: Seascapes and last: Chappelle & Stinnette Records -[2018-02-13T00:24:57.913] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:24:57.983] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:24:58.070] [INFO] cheese - inserting 1000 documents. first: Salonen, Esa-Pekka and last: JBOSS -[2018-02-13T00:24:58.153] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:24:58.210] [INFO] cheese - inserting 1000 documents. first: Suskind book and last: Portal:Yoruba/box-footer -[2018-02-13T00:24:58.284] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:24:58.318] [INFO] cheese - inserting 1000 documents. first: Proteuxoa florescens and last: Chik Mohamad Yusuf -[2018-02-13T00:24:58.370] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:24:58.388] [INFO] cheese - inserting 1000 documents. first: Muhammed bin Saud and last: Austral Photoplay Company -[2018-02-13T00:24:58.403] [INFO] cheese - inserting 1000 documents. first: Amegilla zonata and last: William John Tout -[2018-02-13T00:24:58.455] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:24:58.460] [INFO] cheese - inserting 1000 documents. first: Jack McDevitt and last: Battle of Naissus -[2018-02-13T00:24:58.466] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:58.577] [INFO] cheese - inserting 1000 documents. first: File:2-Perelman-Cyclopedia-Cigars.jpg and last: Portal:Dallas-Fort Worth/news archive/2006 -[2018-02-13T00:24:58.598] [INFO] cheese - batch complete in: 2.445 secs -[2018-02-13T00:24:58.651] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:24:58.736] [INFO] cheese - inserting 1000 documents. first: Holbein family and last: Wikipedia:NC (events) -[2018-02-13T00:24:58.766] [INFO] cheese - inserting 1000 documents. first: Austrian Sports Badge and last: Your Dream Home -[2018-02-13T00:24:58.798] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:24:58.802] [INFO] cheese - inserting 1000 documents. first: International Dawn Chorus Day and last: Pre-medical -[2018-02-13T00:24:58.811] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:24:58.820] [INFO] cheese - inserting 1000 documents. first: Georgina Geikie and last: Ammaa ki boli -[2018-02-13T00:24:58.849] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:24:58.854] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:58.863] [INFO] cheese - inserting 1000 documents. first: Category:Stone sculptures in the United States by state and last: Category:Water transportation in Nebraska -[2018-02-13T00:24:58.916] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:59.050] [INFO] cheese - inserting 1000 documents. first: Titus I Mar Thoma and last: File:When Will I Be Famous.PNG -[2018-02-13T00:24:59.112] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:59.178] [INFO] cheese - inserting 1000 documents. first: Jean Marie Atangana Mebara and last: Crime in Benin -[2018-02-13T00:24:59.265] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:59.277] [INFO] cheese - inserting 1000 documents. first: Asylum Township and last: Zambia–U.S. relations -[2018-02-13T00:24:59.292] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Ulster County, New York and last: Category:Populated places in Ben Tre Province -[2018-02-13T00:24:59.337] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:59.375] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:24:59.427] [INFO] cheese - inserting 1000 documents. first: S&P Global Platts and last: Woodshed treatment -[2018-02-13T00:24:59.424] [INFO] cheese - inserting 1000 documents. first: Category:1780s establishments in the Northwest Territory and last: Alina Tecsor -[2018-02-13T00:24:59.513] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:24:59.566] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:24:59.781] [INFO] cheese - inserting 1000 documents. first: شىنجاڭ ئۇيغۇر ئاپتونوم رايون and last: Selman City -[2018-02-13T00:24:59.811] [INFO] cheese - inserting 1000 documents. first: Zambia–US relations and last: Category:Ambassadors of South Africa to Italy -[2018-02-13T00:24:59.818] [INFO] cheese - inserting 1000 documents. first: The Hangman (film) and last: Kreios -[2018-02-13T00:24:59.857] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:24:59.860] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:24:59.902] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Benešov District and last: Sir Thomas Mildmay -[2018-02-13T00:24:59.943] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:24:59.972] [INFO] cheese - inserting 1000 documents. first: Digital hearing aid and last: Peter Bulling -[2018-02-13T00:24:59.991] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:25:00.061] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:25:00.214] [INFO] cheese - inserting 1000 documents. first: The Grand Shrines of Ise and last: Walter de Camp -[2018-02-13T00:25:00.256] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:25:00.264] [INFO] cheese - inserting 1000 documents. first: Jafarabad, Nishapur and last: List of protected heritage sites in Jemeppe-sur-Sambre -[2018-02-13T00:25:00.285] [INFO] cheese - inserting 1000 documents. first: Jorge Alberto del Río Sálas and last: Europa-Institut -[2018-02-13T00:25:00.308] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:00.354] [INFO] cheese - inserting 1000 documents. first: Change of life and last: Category:Bhola District -[2018-02-13T00:25:00.365] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:00.405] [INFO] cheese - inserting 1000 documents. first: Category:1999 establishments in Kansas and last: Nancy Xynos -[2018-02-13T00:25:00.409] [INFO] cheese - inserting 1000 documents. first: Portal:Queens of the Stone Age/Worklist and last: S-30 -[2018-02-13T00:25:00.427] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:00.456] [INFO] cheese - inserting 1000 documents. first: Strange loop and last: Link awareness -[2018-02-13T00:25:00.463] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:25:00.517] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:25:00.586] [INFO] cheese - batch complete in: 1.988 secs -[2018-02-13T00:25:00.675] [INFO] cheese - inserting 1000 documents. first: Bretton Woods agreements and last: Dieudonne M'bala M'bala -[2018-02-13T00:25:00.703] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:25:00.744] [INFO] cheese - inserting 1000 documents. first: Herding test and last: Gleason Building (Lawrence, Massachusetts) -[2018-02-13T00:25:00.761] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/irazola.co.uk and last: David Lloyd Johnston CC -[2018-02-13T00:25:00.771] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:25:00.791] [INFO] cheese - inserting 1000 documents. first: Itv1 and last: Wikipedia:Articles for deletion/Baraqyal -[2018-02-13T00:25:00.800] [INFO] cheese - inserting 1000 documents. first: File:ShiroiKisetsu SakuraHitohira.png and last: Botys dryalis -[2018-02-13T00:25:00.809] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:00.845] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:25:00.848] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:25:00.915] [INFO] cheese - inserting 1000 documents. first: Tasta IL and last: Category:Ambassadors of Turkey to Northern Cyprus -[2018-02-13T00:25:00.931] [INFO] cheese - inserting 1000 documents. first: Dieudonne Owona and last: Template:UK bilateral relations -[2018-02-13T00:25:00.952] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:25:00.959] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:25:01.164] [INFO] cheese - inserting 1000 documents. first: Template:2006 films and last: Ammanford Colliery Halt railway station -[2018-02-13T00:25:01.182] [INFO] cheese - inserting 1000 documents. first: John Albert Morris and last: Libode, Eastern Cape -[2018-02-13T00:25:01.208] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:25:01.220] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:25:01.281] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Utah State Route 212 (1941–2012) and last: Category:Bronze Age sites in Essex -[2018-02-13T00:25:01.302] [INFO] cheese - inserting 1000 documents. first: Michael E. McMahon and last: João Paulo Cunha -[2018-02-13T00:25:01.318] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rhia Charles and last: Trane Whistle -[2018-02-13T00:25:01.321] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:25:01.349] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:25:01.353] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:25:01.359] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Germany articles by quality/24 and last: Empress XiaoDing -[2018-02-13T00:25:01.402] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:25:01.466] [INFO] cheese - inserting 1000 documents. first: Steynsburg, Eastern Cape and last: Wikipedia:WikiProject Spam/LinkReports/icasualties.org -[2018-02-13T00:25:01.507] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:25:01.584] [INFO] cheese - inserting 1000 documents. first: TI-36X and last: Conversion and Judaism -[2018-02-13T00:25:01.630] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:01.647] [INFO] cheese - inserting 1000 documents. first: Bourget (electoral district) and last: Colonie, NY -[2018-02-13T00:25:01.679] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:25:01.686] [INFO] cheese - inserting 1000 documents. first: Portal:Republika Srpska/sr wiki and last: Pierre-Macario Saba -[2018-02-13T00:25:01.710] [INFO] cheese - inserting 1000 documents. first: An Evening With Herbie Hancock and Chick Corea: In Concert and last: Wikipedia:Miscellany for deletion/User:Patryk Larney -[2018-02-13T00:25:01.721] [INFO] cheese - inserting 1000 documents. first: Sworn Enemy and last: Category:Lithuanian sculptors -[2018-02-13T00:25:01.729] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:25:01.760] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:25:01.791] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:01.817] [INFO] cheese - inserting 1000 documents. first: Pathways Schools and last: Hanila -[2018-02-13T00:25:01.858] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:25:02.040] [INFO] cheese - inserting 1000 documents. first: Jose Eduardo Agualusa and last: Michael Rosch -[2018-02-13T00:25:02.088] [INFO] cheese - inserting 1000 documents. first: Honda Elite and last: Iblees -[2018-02-13T00:25:02.124] [INFO] cheese - inserting 1000 documents. first: Stanley Baldwin and last: Single-occupancy vehicle -[2018-02-13T00:25:02.129] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:25:02.186] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:25:02.213] [INFO] cheese - inserting 1000 documents. first: Latin declensions and last: Princess Tarakanoff -[2018-02-13T00:25:02.251] [INFO] cheese - inserting 1000 documents. first: Eicochrysops sanyere and last: No. 14 Squadron IAF -[2018-02-13T00:25:02.283] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:25:02.318] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:25:02.330] [INFO] cheese - batch complete in: 1.744 secs -[2018-02-13T00:25:02.451] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Nabatieh Governorate and last: Category:Populated places in Western Greece -[2018-02-13T00:25:02.550] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:25:02.703] [INFO] cheese - inserting 1000 documents. first: Barotseland and last: Chorismate -[2018-02-13T00:25:02.755] [INFO] cheese - inserting 1000 documents. first: File:Hello-Sunshine-SFA-Screenshot.jpg and last: Category:1998 Winter Paralympics -[2018-02-13T00:25:02.770] [INFO] cheese - inserting 1000 documents. first: Michael Soderlund and last: Thomas Lewis Horabin -[2018-02-13T00:25:02.796] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T00:25:02.810] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:25:02.842] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:25:02.892] [INFO] cheese - inserting 1000 documents. first: File:WWE Authority.png and last: Wikipedia:Wikipedia Signpost/Newsroom/From the editor -[2018-02-13T00:25:02.897] [INFO] cheese - inserting 1000 documents. first: Franklin Township, Beaver County and last: Category:Ambassadors of India to Botswana -[2018-02-13T00:25:02.951] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:25:02.973] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:25:03.218] [INFO] cheese - inserting 1000 documents. first: GSF Development Driller and last: Category:Former populated places in Greece -[2018-02-13T00:25:03.263] [INFO] cheese - inserting 1000 documents. first: Steve Kuntz and last: Montana in the American Civil War -[2018-02-13T00:25:03.269] [INFO] cheese - inserting 1000 documents. first: WXRY-LP and last: Nuria Espert -[2018-02-13T00:25:03.289] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:25:03.333] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:25:03.346] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:25:03.403] [INFO] cheese - inserting 1000 documents. first: Seven Churches of Asia and last: Foucault, Jean Bernard Léon -[2018-02-13T00:25:03.413] [INFO] cheese - inserting 1000 documents. first: Template:Guangzhou Metro lines/list and last: Signature Panel Code -[2018-02-13T00:25:03.442] [INFO] cheese - inserting 1000 documents. first: Mavado (Mortal Kombat) and last: Fleroya -[2018-02-13T00:25:03.465] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:25:03.467] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:25:03.528] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:25:03.644] [INFO] cheese - inserting 1000 documents. first: Bass-line and last: Category:FA-Class Disability articles -[2018-02-13T00:25:03.673] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:25:03.691] [INFO] cheese - inserting 1000 documents. first: Octavio Pato and last: 18th Utah Senate District -[2018-02-13T00:25:03.721] [INFO] cheese - inserting 1000 documents. first: Dough knots and last: Category:Executed Gambian people -[2018-02-13T00:25:03.752] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:25:03.783] [INFO] cheese - inserting 1000 documents. first: Jezernice and last: Category:Lighthouses completed in 1967 -[2018-02-13T00:25:03.847] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:25:03.886] [INFO] cheese - inserting 1000 documents. first: Unusually Thicke and last: Crawford Corners, New Jersey -[2018-02-13T00:25:03.892] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:25:03.917] [INFO] cheese - inserting 1000 documents. first: Club Atlético Huracán and last: Flist -[2018-02-13T00:25:03.967] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:25:03.985] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:25:04.180] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Disability articles and last: Shiva the Destroyer -[2018-02-13T00:25:04.215] [INFO] cheese - inserting 1000 documents. first: Quercus kelloggii and last: Van de Graaff generator -[2018-02-13T00:25:04.258] [INFO] cheese - inserting 1000 documents. first: File:Jiran2.jpg and last: North Moreton -[2018-02-13T00:25:04.260] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:25:04.330] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:04.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/Imelda Marcos and last: Academic health science centre -[2018-02-13T00:25:04.404] [INFO] cheese - batch complete in: 2.073 secs -[2018-02-13T00:25:04.414] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:25:04.428] [INFO] cheese - inserting 1000 documents. first: Sug Corneluis and last: File:Florence Wald.jpg -[2018-02-13T00:25:04.469] [INFO] cheese - inserting 1000 documents. first: Template:User WikiProject X/doc and last: Sandris Berzinš -[2018-02-13T00:25:04.513] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:25:04.594] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:25:04.649] [INFO] cheese - inserting 1000 documents. first: WWF No Way Out and last: Sveta Nedelja, Istria -[2018-02-13T00:25:04.742] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:25:04.833] [INFO] cheese - inserting 1000 documents. first: Genetic diseases and last: Rolf Osterreich -[2018-02-13T00:25:04.886] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:25:04.981] [INFO] cheese - inserting 1000 documents. first: Doreen McCannell-Botterill and last: Enno III of East Frisia -[2018-02-13T00:25:04.997] [INFO] cheese - inserting 1000 documents. first: China Travel Hong Kong and last: Stary Gołębiewek -[2018-02-13T00:25:05.031] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:25:05.037] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:25:05.120] [INFO] cheese - inserting 1000 documents. first: Pièces de viole and last: Fox ADHD -[2018-02-13T00:25:05.143] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topic candidates/Charlemagne class battleship/archive1 and last: Bayırköy, Alanya -[2018-02-13T00:25:05.176] [INFO] cheese - inserting 1000 documents. first: Te Hāhi Tūhauwiri and last: VGT -[2018-02-13T00:25:05.175] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:25:05.187] [INFO] cheese - inserting 1000 documents. first: Roman Jakobczak and last: 82nd Regiment of Foot (disambiguation) -[2018-02-13T00:25:05.208] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:25:05.220] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:25:05.245] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:25:05.363] [INFO] cheese - inserting 1000 documents. first: Odd Fellows Building (Malden, Massachusetts) and last: List of Longest Serving Soap Opera Actors -[2018-02-13T00:25:05.372] [INFO] cheese - inserting 1000 documents. first: Edzard II of East Frisia and last: Zephyr Books -[2018-02-13T00:25:05.410] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:05.440] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:25:05.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Apeslowy/Eric Martin Nebraska and last: L. C. Crow -[2018-02-13T00:25:05.670] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:25:05.681] [INFO] cheese - inserting 1000 documents. first: File:Coat of arms of Rawtenstall.jpg and last: Ryoki inoue -[2018-02-13T00:25:05.716] [INFO] cheese - inserting 1000 documents. first: Bayırkozağacı, Alanya and last: Gedik, Göle -[2018-02-13T00:25:05.725] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:25:05.748] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:05.792] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Piątek and last: Lipiny, Łódź East County -[2018-02-13T00:25:05.811] [INFO] cheese - inserting 1000 documents. first: Branimir Štulić and last: Werschetz -[2018-02-13T00:25:05.831] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:25:05.845] [INFO] cheese - inserting 1000 documents. first: Central Bontoc language and last: Gary Andrew Speed -[2018-02-13T00:25:05.863] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:25:05.894] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:06.083] [INFO] cheese - inserting 1000 documents. first: Category:1947 in Soviet football leagues and last: Category:1921 disestablishments in Kansas -[2018-02-13T00:25:06.084] [INFO] cheese - inserting 1000 documents. first: Category:Townships in Lee County, Illinois and last: St Valery-en-Caux -[2018-02-13T00:25:06.114] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:06.129] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:06.152] [INFO] cheese - inserting 1000 documents. first: Van de Graff generator and last: Vitamin P -[2018-02-13T00:25:06.155] [INFO] cheese - inserting 1000 documents. first: Gülistan, Göle and last: Wikipedia:WikiProject Goa/Collaboration -[2018-02-13T00:25:06.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alliance Records and last: Women in Tibet -[2018-02-13T00:25:06.196] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:06.228] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:25:06.251] [INFO] cheese - inserting 1000 documents. first: Moskwa, Łódź Voivodeship and last: Reformed Church in Transylvania -[2018-02-13T00:25:06.275] [INFO] cheese - batch complete in: 1.871 secs -[2018-02-13T00:25:06.292] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:25:06.344] [INFO] cheese - inserting 1000 documents. first: Smoke Johnson and last: YPPH -[2018-02-13T00:25:06.405] [INFO] cheese - inserting 1000 documents. first: Piwauwau and last: Open Source Windows Software List -[2018-02-13T00:25:06.413] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:25:06.438] [INFO] cheese - inserting 1000 documents. first: Category:1920s disestablishments in Kansas and last: Wikipedia:Miscellany for deletion/User:Ryanasaurus0077/Obi-Wan Kenobi -[2018-02-13T00:25:06.449] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:25:06.505] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:25:06.560] [INFO] cheese - inserting 1000 documents. first: File:Pourchot-026.jpg and last: Filipino condiments -[2018-02-13T00:25:06.586] [INFO] cheese - inserting 1000 documents. first: Cassolette and last: Boxing at the 2002 South American Games -[2018-02-13T00:25:06.592] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:25:06.629] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:25:06.680] [INFO] cheese - inserting 1000 documents. first: List of flags of Australia and last: Category:Lleida Esportiu footballers -[2018-02-13T00:25:06.747] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:25:06.795] [INFO] cheese - inserting 1000 documents. first: File:WhenWarIsOver.JPG and last: Crescent sign -[2018-02-13T00:25:06.831] [INFO] cheese - inserting 1000 documents. first: Measuring Attractiveness by a Categorical Based Evaluation Technique (MACBETH) and last: Metropolitan Utah -[2018-02-13T00:25:06.845] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:25:06.873] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:06.925] [INFO] cheese - inserting 1000 documents. first: Majnu (disambiguation) and last: Jacob Margido Esp -[2018-02-13T00:25:06.934] [INFO] cheese - inserting 1000 documents. first: Gulong ng Palad and last: La Pérouse, Jean François de Galaup, Comte de -[2018-02-13T00:25:06.998] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:07.003] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:25:07.039] [INFO] cheese - inserting 1000 documents. first: Chuang Chih-yuan and last: Category:Ships built in Australia -[2018-02-13T00:25:07.082] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:25:07.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/List of World War I aces credited with 9 victories and last: Vukadinović -[2018-02-13T00:25:07.155] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:25:07.226] [INFO] cheese - inserting 1000 documents. first: HK Liepāja and last: Gretta -[2018-02-13T00:25:07.245] [INFO] cheese - inserting 1000 documents. first: Van Riebeeck Decoration and last: Technics and Time, 1 -[2018-02-13T00:25:07.261] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:25:07.299] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:07.362] [INFO] cheese - inserting 1000 documents. first: 2000 NatWest Trophy and last: Template:Hildebr. -[2018-02-13T00:25:07.400] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:25:07.426] [INFO] cheese - inserting 1000 documents. first: West Las Vegas Schools and last: Fredrick News Post -[2018-02-13T00:25:07.468] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:07.471] [INFO] cheese - inserting 1000 documents. first: Vukadinovic and last: Portal:Jane Austen/Did you know/10 -[2018-02-13T00:25:07.516] [INFO] cheese - inserting 1000 documents. first: Pygmy gerbil and last: Fabijan Sovagovic -[2018-02-13T00:25:07.584] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:25:07.633] [INFO] cheese - inserting 1000 documents. first: Pantothenic acid and last: 970s BC -[2018-02-13T00:25:07.674] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:25:07.711] [INFO] cheese - inserting 1000 documents. first: Channel 40 low-power TV stations in the United States and last: ABT Sportsline -[2018-02-13T00:25:07.815] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:25:07.968] [INFO] cheese - batch complete in: 1.693 secs -[2018-02-13T00:25:08.120] [INFO] cheese - inserting 1000 documents. first: Swallow (Zhao Wei album) and last: Efrenk River -[2018-02-13T00:25:08.134] [INFO] cheese - inserting 1000 documents. first: The Amateur View and last: Maboroshi no Daichi -[2018-02-13T00:25:08.259] [INFO] cheese - inserting 1000 documents. first: File:2004 Summer Olympics logo.svg and last: 2008 Summer Olympics medal winners -[2018-02-13T00:25:08.257] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:25:08.297] [INFO] cheese - inserting 1000 documents. first: Portal:Jane Austen/Did you know/11 and last: Settle-Carlisle Line -[2018-02-13T00:25:08.302] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:25:08.380] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:25:08.430] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:25:08.446] [INFO] cheese - inserting 1000 documents. first: Parco Natura Viva and last: Ferlin Eugene Husky -[2018-02-13T00:25:08.502] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:25:08.547] [INFO] cheese - inserting 1000 documents. first: Quintiliano H. de Mesquita and last: Ben and Me (movie) -[2018-02-13T00:25:08.603] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T00:25:08.645] [INFO] cheese - inserting 1000 documents. first: Dai Rees (rugby league born c. 1885) and last: Duke of Lancaster's -[2018-02-13T00:25:08.685] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:08.728] [INFO] cheese - inserting 1000 documents. first: Sardinita De Salado and last: File:Another Step Closer to You.jpg -[2018-02-13T00:25:08.763] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:25:08.805] [INFO] cheese - inserting 1000 documents. first: Medina High School (Ohio) and last: File:Karoly-Szabo-October-6-1953x.jpg -[2018-02-13T00:25:08.814] [INFO] cheese - inserting 1000 documents. first: Herb Parker Stadium and last: Königstein (Taunus) -[2018-02-13T00:25:08.821] [INFO] cheese - inserting 1000 documents. first: 2015 Pan American Games torch relay and last: NIH funding -[2018-02-13T00:25:08.854] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:25:08.860] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:25:08.864] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:25:09.055] [INFO] cheese - inserting 1000 documents. first: List of episodes of Power Rangers and last: Chichester Samuel Parkinson-Fortescue, 1st Baron Carlingford -[2018-02-13T00:25:09.101] [INFO] cheese - inserting 1000 documents. first: Template:RadioDept and last: Wikipedia:Articles for deletion/Broughton Anglican College -[2018-02-13T00:25:09.173] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:25:09.206] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:09.328] [INFO] cheese - inserting 1000 documents. first: Common Grass Carp and last: Chanon Lake -[2018-02-13T00:25:09.344] [INFO] cheese - inserting 1000 documents. first: Category:Insignia propers of the Order of the Aztec Eagle and last: Edwin Scott Gaustad -[2018-02-13T00:25:09.352] [INFO] cheese - inserting 1000 documents. first: Minister of Housing, Spatial Planning and the Environment and last: AECB -[2018-02-13T00:25:09.392] [INFO] cheese - inserting 1000 documents. first: Hypoatherina and last: Kenny Heitz -[2018-02-13T00:25:09.392] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:25:09.408] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:25:09.415] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:25:09.459] [INFO] cheese - inserting 1000 documents. first: 980s BC and last: Lake Baikal -[2018-02-13T00:25:09.489] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:25:09.581] [INFO] cheese - batch complete in: 1.609 secs -[2018-02-13T00:25:09.778] [INFO] cheese - inserting 1000 documents. first: File:Nipawin Hawks Logo.svg and last: Caroline Healey Dall -[2018-02-13T00:25:09.839] [INFO] cheese - inserting 1000 documents. first: Template:RubberBible53rd and last: M-5 -[2018-02-13T00:25:09.859] [INFO] cheese - inserting 1000 documents. first: Luis Estrada Paetau and last: Blue Army Tour -[2018-02-13T00:25:09.862] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:25:09.906] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/May 7 and last: Template:Sm -[2018-02-13T00:25:09.914] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:25:09.919] [INFO] cheese - inserting 1000 documents. first: Chavoley Lake and last: St James' Hospital, Leeds -[2018-02-13T00:25:09.919] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:25:09.935] [INFO] cheese - inserting 1000 documents. first: Madrid Municipal Police and last: A-B foam -[2018-02-13T00:25:09.964] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:25:09.968] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:25:09.979] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:10.231] [INFO] cheese - inserting 1000 documents. first: BACTIBASE and last: Wikipedia:NONCE -[2018-02-13T00:25:10.297] [INFO] cheese - inserting 1000 documents. first: 1997 FINA Short Course World Championships – Women's 4x100m Medley Relay and last: Federal League Park (Buffalo) -[2018-02-13T00:25:10.300] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:25:10.331] [INFO] cheese - inserting 1000 documents. first: File:Different Times Playbill.jpg and last: Žurena -[2018-02-13T00:25:10.335] [INFO] cheese - inserting 1000 documents. first: Template:Algoma Central style and last: Georg Grün -[2018-02-13T00:25:10.356] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:25:10.380] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:25:10.384] [INFO] cheese - inserting 1000 documents. first: 2006-07 UEFA Cup and last: Our Lady of Bechouat -[2018-02-13T00:25:10.397] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:25:10.432] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:10.480] [INFO] cheese - inserting 1000 documents. first: El Djem and last: Octafluoropropane (data page) -[2018-02-13T00:25:10.541] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:25:10.675] [INFO] cheese - inserting 1000 documents. first: Xenotaca and last: Smith Shoe Shop -[2018-02-13T00:25:10.710] [INFO] cheese - inserting 1000 documents. first: The Girl With the Red Riding Hood and last: Sonnenkopf -[2018-02-13T00:25:10.716] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:10.766] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:10.794] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dr sreeharii and last: Margarones tritonias -[2018-02-13T00:25:10.804] [INFO] cheese - inserting 1000 documents. first: Union de la Critique de Cinéma and last: Ken Garing -[2018-02-13T00:25:10.837] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:25:10.849] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:10.880] [INFO] cheese - inserting 1000 documents. first: Haut Bages Liberal and last: David Aldrich -[2018-02-13T00:25:10.929] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:25:11.022] [INFO] cheese - inserting 1000 documents. first: Heirloom tomato and last: The Light at the End of the World (My Dying Bride album) -[2018-02-13T00:25:11.073] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:11.101] [INFO] cheese - inserting 1000 documents. first: File:AshteadLogo.PNG and last: Ditte Kotzian -[2018-02-13T00:25:11.104] [INFO] cheese - inserting 1000 documents. first: Sonntagshorn and last: Wheego Whip LiFe -[2018-02-13T00:25:11.108] [INFO] cheese - inserting 1000 documents. first: Yam and last: Cocoa programming -[2018-02-13T00:25:11.144] [INFO] cheese - inserting 1000 documents. first: Margarodes nereis and last: 2004 in French television -[2018-02-13T00:25:11.143] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:25:11.148] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:25:11.176] [INFO] cheese - inserting 1000 documents. first: Amanda Jacqueline Redman and last: Tom Rice -[2018-02-13T00:25:11.243] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T00:25:11.267] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:25:11.277] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:11.397] [INFO] cheese - inserting 1000 documents. first: Central Bank of United Arab Emirates and last: Telephone Organization of Thailand FC -[2018-02-13T00:25:11.478] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:25:11.699] [INFO] cheese - inserting 1000 documents. first: Vivus Inc. and last: Hummelsberg (Schwäbische Alb) -[2018-02-13T00:25:11.707] [INFO] cheese - inserting 1000 documents. first: Z9 and last: Category:Halcyonidae -[2018-02-13T00:25:11.719] [INFO] cheese - inserting 1000 documents. first: Return of the Ankh and last: Scottish Fire and Rescue Service -[2018-02-13T00:25:11.724] [INFO] cheese - inserting 1000 documents. first: Mediterranean seabass and last: Wikipedia:Articles for deletion/List of socialists from Eastern Europe -[2018-02-13T00:25:11.742] [INFO] cheese - inserting 1000 documents. first: Zineb El Rhazoui and last: Jha (Indic) -[2018-02-13T00:25:11.759] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:25:11.794] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:25:11.799] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:11.803] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:25:11.848] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:25:11.979] [INFO] cheese - inserting 1000 documents. first: Zhaotong Airport and last: Cronulla Riot -[2018-02-13T00:25:12.041] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:25:12.167] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jet-CD and last: Daikanbō Station -[2018-02-13T00:25:12.175] [INFO] cheese - inserting 1000 documents. first: Adriaan Backer and last: Salah Dessouki -[2018-02-13T00:25:12.253] [INFO] cheese - inserting 1000 documents. first: Category:1992 disestablishments in Kansas and last: List of 2015 UCI ProTeams and riders -[2018-02-13T00:25:12.280] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:12.300] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:12.322] [INFO] cheese - inserting 1000 documents. first: Georges Goyon and last: Bandarik -[2018-02-13T00:25:12.342] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:25:12.370] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:25:12.471] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 304 and last: George Cram Cook -[2018-02-13T00:25:12.491] [INFO] cheese - inserting 1000 documents. first: Tales of the Beanworld and last: Germantown Academy -[2018-02-13T00:25:12.515] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:25:12.583] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:25:12.697] [INFO] cheese - inserting 1000 documents. first: Judeo-Georgian language and last: Sakigake!! Otoko Juku -[2018-02-13T00:25:12.792] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:25:12.832] [INFO] cheese - inserting 1000 documents. first: Category:Auto GP and last: Calliaster -[2018-02-13T00:25:12.847] [INFO] cheese - inserting 1000 documents. first: 2013–15 detention of Al Jazeera journalists by Egypt and last: Tax refund theft in the United States -[2018-02-13T00:25:12.876] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:25:12.888] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:25:12.890] [INFO] cheese - inserting 1000 documents. first: Valchi Dol and last: Bârgăuani -[2018-02-13T00:25:12.932] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:25:13.010] [INFO] cheese - inserting 1000 documents. first: Second Arab-Israeli War and last: Scabbers -[2018-02-13T00:25:13.031] [INFO] cheese - inserting 1000 documents. first: Fledgling Phoenix and last: Linjiang Campaign -[2018-02-13T00:25:13.083] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:25:13.090] [INFO] cheese - batch complete in: 1.847 secs -[2018-02-13T00:25:13.141] [INFO] cheese - inserting 1000 documents. first: Tavringer Romani and last: Euspira notabilis -[2018-02-13T00:25:13.141] [INFO] cheese - inserting 1000 documents. first: Syllepte rhyparialis and last: Château de la Garoupe -[2018-02-13T00:25:13.150] [INFO] cheese - inserting 1000 documents. first: Category:Land speed record people and last: Thakur Ram Singh(Revolutionary) -[2018-02-13T00:25:13.165] [INFO] cheese - inserting 1000 documents. first: David Eli Lilienthal and last: Festival Prijateljstva -[2018-02-13T00:25:13.177] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:25:13.184] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:25:13.189] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:25:13.249] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:25:13.269] [INFO] cheese - inserting 1000 documents. first: Tug of war at the 1906 Summer Olympics and last: Tessanne Chin -[2018-02-13T00:25:13.315] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:25:13.527] [INFO] cheese - inserting 1000 documents. first: Portal:Architecture/Selected picture/9 and last: Chubin, Razavi Khorasan -[2018-02-13T00:25:13.535] [INFO] cheese - inserting 1000 documents. first: Albert Blue and last: Herbert Perez -[2018-02-13T00:25:13.543] [INFO] cheese - inserting 1000 documents. first: Someone Like Me / Right Now 2004 and last: LSA (Drug) -[2018-02-13T00:25:13.562] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:25:13.573] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:25:13.617] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:25:13.628] [INFO] cheese - inserting 1000 documents. first: Ái (digraph) and last: General purpose macroprocessor -[2018-02-13T00:25:13.681] [INFO] cheese - inserting 1000 documents. first: Euspira obtusa and last: Surviving Summer -[2018-02-13T00:25:13.690] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:13.727] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:25:13.750] [INFO] cheese - inserting 1000 documents. first: Fataluku and last: Padjadjaran University -[2018-02-13T00:25:13.802] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:25:13.891] [INFO] cheese - inserting 1000 documents. first: Chubain and last: New School for the Arts -[2018-02-13T00:25:13.955] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:14.037] [INFO] cheese - inserting 1000 documents. first: Battle of Clitheroe and last: Attorneys-General for England and Wales -[2018-02-13T00:25:14.087] [INFO] cheese - inserting 1000 documents. first: Category:Kharkiv National University of Economics and last: Racemic methamphetamine -[2018-02-13T00:25:14.137] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:25:14.160] [INFO] cheese - inserting 1000 documents. first: Supriyadi and last: File:Pub (Đorđe Balašević album - cover art).jpg -[2018-02-13T00:25:14.193] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:25:14.226] [INFO] cheese - inserting 1000 documents. first: J. E. Thorold Rogers and last: Arkell Museum -[2018-02-13T00:25:14.277] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:25:14.331] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:25:14.458] [INFO] cheese - inserting 1000 documents. first: Fabrizio Faniello and last: Rock Dating -[2018-02-13T00:25:14.477] [INFO] cheese - inserting 1000 documents. first: Category:Fossil taxa described in 1941 and last: Wikipedia:Featured list candidates/List of Malmö FF players/archive1 -[2018-02-13T00:25:14.536] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:25:14.548] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:25:14.587] [INFO] cheese - inserting 1000 documents. first: Lake Zurich and last: Ptolemy III Euergetes -[2018-02-13T00:25:14.691] [INFO] cheese - inserting 1000 documents. first: Heroes (Måns Zelmerlöw song) and last: Nokia Cinemagraph -[2018-02-13T00:25:14.708] [INFO] cheese - batch complete in: 1.618 secs -[2018-02-13T00:25:14.746] [INFO] cheese - inserting 1000 documents. first: Petrus de Aquileia and last: Category:People from Lorain, Ohio -[2018-02-13T00:25:14.811] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:25:14.827] [INFO] cheese - inserting 1000 documents. first: An Ordinale Kernewek and last: Mark Wood (bishop) -[2018-02-13T00:25:14.866] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:25:14.936] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:25:14.979] [INFO] cheese - inserting 1000 documents. first: Palinurus mauritanicus and last: File:Firma vertical.png -[2018-02-13T00:25:15.054] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:25:15.298] [INFO] cheese - inserting 1000 documents. first: E.V.Saroja and last: Tree chart -[2018-02-13T00:25:15.300] [INFO] cheese - inserting 1000 documents. first: Riga, Gulf of and last: Showtime (film) -[2018-02-13T00:25:15.395] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:25:15.397] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:25:15.420] [INFO] cheese - inserting 1000 documents. first: Jember Fashion Carnival and last: Template:Infobox Song Contest/Eurovision Young Musicians 1996 -[2018-02-13T00:25:15.521] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:25:15.541] [INFO] cheese - inserting 1000 documents. first: NDC-GR and last: Immolator -[2018-02-13T00:25:15.608] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:25:15.633] [INFO] cheese - inserting 1000 documents. first: Hassan Khairat and last: Kuanjie Three-self Patriotic Church -[2018-02-13T00:25:15.717] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:25:15.725] [INFO] cheese - inserting 1000 documents. first: Find the Lady (1956 film) and last: Michael Weinstein (disambiguation) -[2018-02-13T00:25:15.801] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:25:15.816] [INFO] cheese - inserting 1000 documents. first: Uwini and last: U.K. Ambassador to Costa Rica -[2018-02-13T00:25:15.942] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:25:16.110] [INFO] cheese - inserting 1000 documents. first: Charles Vincent and last: F Scott -[2018-02-13T00:25:16.128] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Song Contest/Eurovision Young Musicians 1998 and last: Wikipedia:Articles for deletion/The Lion Story Bible -[2018-02-13T00:25:16.211] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:25:16.216] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:25:16.230] [INFO] cheese - inserting 1000 documents. first: Template:Afghanistan-judo-bio-stub and last: 1932 Winter Olympics medal count -[2018-02-13T00:25:16.278] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SBB left/S25 and last: Rcms -[2018-02-13T00:25:16.332] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:25:16.340] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:25:16.351] [INFO] cheese - inserting 1000 documents. first: Dan Weinstein (disambiguation) and last: Homosexual rights in Mauritania -[2018-02-13T00:25:16.399] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:25:16.477] [INFO] cheese - inserting 1000 documents. first: U. K. Ambassador to Costa Rica and last: Nick Cannon Presents: Wild 'n Out -[2018-02-13T00:25:16.527] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:25:16.616] [INFO] cheese - inserting 1000 documents. first: Category:1916–17 in Swedish football and last: Category:Beninese awards -[2018-02-13T00:25:16.667] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:16.745] [INFO] cheese - inserting 1000 documents. first: FCC song and last: Holly Bluff -[2018-02-13T00:25:16.774] [INFO] cheese - inserting 1000 documents. first: 1960 Winter Olympics medal count and last: Category:Filipino sport shooters -[2018-02-13T00:25:16.779] [INFO] cheese - inserting 1000 documents. first: Comic-relief and last: Category:J. G. Thirlwell albums -[2018-02-13T00:25:16.828] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:16.855] [INFO] cheese - inserting 1000 documents. first: Strider Academy and last: Category:Time (magazine) articles -[2018-02-13T00:25:16.862] [INFO] cheese - inserting 1000 documents. first: Pistacia lentiscus and last: Graptolithina -[2018-02-13T00:25:16.869] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:25:16.875] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:25:16.940] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:17.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject SUNY/Active participants and last: Osmanthus bibracteatus -[2018-02-13T00:25:17.034] [INFO] cheese - batch complete in: 2.326 secs -[2018-02-13T00:25:17.095] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:25:17.163] [INFO] cheese - inserting 1000 documents. first: Category:Bahamian awards and last: UK threat level -[2018-02-13T00:25:17.208] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:17.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Donation appeal ideas and last: Waiting Room (band) -[2018-02-13T00:25:17.300] [INFO] cheese - inserting 1000 documents. first: The Álvaro de Bazán (F101) and last: Wikipedia:Articles for deletion/Armando Cesari -[2018-02-13T00:25:17.321] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:25:17.324] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/AMX-30E and last: Hilton Head Island-Beaufort Micropolitan Statistical Area -[2018-02-13T00:25:17.373] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:25:17.392] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:25:17.465] [INFO] cheese - inserting 1000 documents. first: File:New Jersey Trenton.png and last: Saint Alphonsus Liguori -[2018-02-13T00:25:17.475] [INFO] cheese - inserting 1000 documents. first: Osmanthus ilicifolius and last: U. K. Ambassador to Finland -[2018-02-13T00:25:17.543] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:17.542] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:25:17.629] [INFO] cheese - inserting 1000 documents. first: Estació del Nord Sports Hall and last: File:Telford Tigers Logo.png -[2018-02-13T00:25:17.694] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:25:17.831] [INFO] cheese - inserting 1000 documents. first: Esther Mae Nesbitt House and last: Faschnaut Day -[2018-02-13T00:25:17.871] [INFO] cheese - inserting 1000 documents. first: Henny ter Weer and last: Ingeborg Krog -[2018-02-13T00:25:17.880] [INFO] cheese - inserting 1000 documents. first: UK Ambassador to Finland and last: Voltz (disambiguation) -[2018-02-13T00:25:17.883] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:25:17.894] [INFO] cheese - inserting 1000 documents. first: Hilton Head Island-Beaufort Micropolitan Area and last: Category:State law enforcement agencies of Iowa -[2018-02-13T00:25:17.918] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:17.921] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:25:17.952] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:25:18.087] [INFO] cheese - inserting 1000 documents. first: Liguori, Saint Alphonsus and last: Peace of Vasvar -[2018-02-13T00:25:18.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/derefer.unbubble.eu and last: Indian General Elections 2009 -[2018-02-13T00:25:18.142] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:25:18.145] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:18.212] [INFO] cheese - inserting 1000 documents. first: Mauritius India Tax Treaty and last: William Rigby -[2018-02-13T00:25:18.224] [INFO] cheese - inserting 1000 documents. first: Sir William Blackett, 1st Baronet of Matfen and last: David DeGraff House -[2018-02-13T00:25:18.240] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:25:18.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gentlemen's agreement and last: Slinger Super Speedway -[2018-02-13T00:25:18.273] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:25:18.308] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:25:18.381] [INFO] cheese - inserting 1000 documents. first: Li Yuwei and last: Cəfərli, Gadabay -[2018-02-13T00:25:18.425] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:25:18.459] [INFO] cheese - inserting 1000 documents. first: Alice in Wonderland (1933 film) and last: Draconic month -[2018-02-13T00:25:18.527] [INFO] cheese - inserting 1000 documents. first: Schedonorus ferrugineus and last: Panathinaikos Athletics -[2018-02-13T00:25:18.536] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T00:25:18.609] [INFO] cheese - inserting 1000 documents. first: Brâncuși and last: FC Steaua București season 2005-06 -[2018-02-13T00:25:18.613] [INFO] cheese - inserting 1000 documents. first: Carousel (Blink-182 song) and last: Last of the Runaways -[2018-02-13T00:25:18.621] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:25:18.639] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:25:18.677] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:18.678] [INFO] cheese - inserting 1000 documents. first: File:EmptySouls.jpg and last: Norwegian Coast Guard -[2018-02-13T00:25:18.704] [INFO] cheese - inserting 1000 documents. first: Melbourne/Essendon Airport and last: Miss Teen All American -[2018-02-13T00:25:18.724] [INFO] cheese - inserting 1000 documents. first: Operation Iraqi Freedom VI and last: USS Matagorda (AG-122) -[2018-02-13T00:25:18.735] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:25:18.761] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:25:18.774] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:25:18.888] [INFO] cheese - inserting 1000 documents. first: Fænø and last: Județul Lăpușna -[2018-02-13T00:25:18.923] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:25:18.971] [INFO] cheese - inserting 1000 documents. first: Andy Balbirnie and last: Category:Hamdanid emirate of Mosul -[2018-02-13T00:25:19.006] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:25:19.066] [INFO] cheese - inserting 1000 documents. first: Subhanahongsa Award and last: G.G. Grice Jr -[2018-02-13T00:25:19.105] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:19.107] [INFO] cheese - inserting 1000 documents. first: Walsh County Courthouse and last: File:Cento anni d'amore.jpg -[2018-02-13T00:25:19.132] [INFO] cheese - inserting 1000 documents. first: Jidov Cemetery Giurtelecu Șimleului and last: Category:Museums established in 1794 -[2018-02-13T00:25:19.137] [INFO] cheese - inserting 1000 documents. first: USCGC Humboldt (WAVP-373) and last: Wikipedia:Articles for deletion/Justin Meyer -[2018-02-13T00:25:19.136] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:19.152] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:25:19.160] [INFO] cheese - inserting 1000 documents. first: Clash (magazine) and last: Villanovan Culture -[2018-02-13T00:25:19.180] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:19.212] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:25:19.368] [INFO] cheese - inserting 1000 documents. first: Template:LG phones and last: Hermann Maurer -[2018-02-13T00:25:19.404] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:25:19.410] [INFO] cheese - inserting 1000 documents. first: Template:User interest Bahamas/doc and last: Template:ISO 3166 code-3 UY -[2018-02-13T00:25:19.432] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:25:19.442] [INFO] cheese - inserting 1000 documents. first: Ipomoea pes-caprae subsp. brasiliensis and last: U. K. Ambassador to Switzerland -[2018-02-13T00:25:19.443] [INFO] cheese - inserting 1000 documents. first: Eva Philipse and last: Public key pair -[2018-02-13T00:25:19.473] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:25:19.482] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:25:19.487] [INFO] cheese - inserting 1000 documents. first: Anomalistic month and last: BCP -[2018-02-13T00:25:19.490] [INFO] cheese - inserting 1000 documents. first: Mid Atlantic Skateboard Series and last: List of Victoria Crosses by School -[2018-02-13T00:25:19.537] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:25:19.554] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:25:19.615] [INFO] cheese - inserting 1000 documents. first: Choceň and last: Paracas culture -[2018-02-13T00:25:19.648] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code-3 UZ and last: Template:ISO 3166 numeric FI -[2018-02-13T00:25:19.666] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:19.674] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:25:19.705] [INFO] cheese - inserting 1000 documents. first: Thijs Waterink and last: Category:People of Yemeni descent -[2018-02-13T00:25:19.744] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:25:19.752] [INFO] cheese - inserting 1000 documents. first: River Eula and last: Category:Sports venues completed in 2010 -[2018-02-13T00:25:19.804] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:25:19.833] [INFO] cheese - inserting 1000 documents. first: List of Vietnamese American Groups and last: Pic d'Artsinol -[2018-02-13T00:25:19.833] [INFO] cheese - inserting 1000 documents. first: Category:Recipients of the Merit Order of the Bavarian Crown and last: File:Royal Navy Medical Assistant Insignia.JPG -[2018-02-13T00:25:19.864] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:25:19.890] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:25:19.943] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 numeric FR and last: John Shadden -[2018-02-13T00:25:19.967] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:25:20.028] [INFO] cheese - inserting 1000 documents. first: EN postal area and last: Do You Really Want To Hurt Me -[2018-02-13T00:25:20.066] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:25:20.177] [INFO] cheese - inserting 1000 documents. first: Hal Pereira and last: Estonian flag -[2018-02-13T00:25:20.235] [INFO] cheese - inserting 1000 documents. first: Category:Olympics gymnastics team navigational boxes and last: Marina Salandy-Brown -[2018-02-13T00:25:20.260] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:25:20.287] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:25:20.301] [INFO] cheese - inserting 1000 documents. first: Big Red (mascot) and last: Satoshi Shimizu -[2018-02-13T00:25:20.321] [INFO] cheese - inserting 1000 documents. first: NMIMS,Shirpur and last: Utzschneider and Fraunhofer -[2018-02-13T00:25:20.349] [INFO] cheese - inserting 1000 documents. first: Silvașu de Jos and last: Category:Canadian military personnel killed in the War in Afghanistan (2001–2014) -[2018-02-13T00:25:20.354] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:25:20.365] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:25:20.477] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:25:20.732] [INFO] cheese - inserting 1000 documents. first: HRSMN and last: Disc Jockey Jamboree -[2018-02-13T00:25:20.783] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:25:20.803] [INFO] cheese - inserting 1000 documents. first: Betty Erde and last: Federación Estatal de Lesbianas, Gays, Transexuales y Bisexuales -[2018-02-13T00:25:20.827] [INFO] cheese - inserting 1000 documents. first: G. und S. Merz and last: Wikipedia:Suspected copyright violations/2015-03-05 -[2018-02-13T00:25:20.840] [INFO] cheese - inserting 1000 documents. first: Fishing boat (traditional) and last: Abla Ki Shakti -[2018-02-13T00:25:20.854] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:25:20.858] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:25:20.875] [INFO] cheese - inserting 1000 documents. first: Potowatomi and last: Michael Hogan -[2018-02-13T00:25:20.886] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:25:20.889] [INFO] cheese - inserting 1000 documents. first: Air Vallée Holding and last: Bombing of enkhuizen -[2018-02-13T00:25:20.940] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:20.960] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:25:21.073] [INFO] cheese - inserting 1000 documents. first: Video Electronics Standards Association and last: Stanley Cup -[2018-02-13T00:25:21.140] [INFO] cheese - inserting 1000 documents. first: Category:People from Rumphi District and last: Iridient Developer -[2018-02-13T00:25:21.163] [INFO] cheese - inserting 1000 documents. first: Category:Shiraz University alumni and last: Mona Lisas and Mad Hatters -[2018-02-13T00:25:21.168] [INFO] cheese - batch complete in: 1.614 secs -[2018-02-13T00:25:21.181] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:25:21.229] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:21.249] [INFO] cheese - inserting 1000 documents. first: Akbar Ansari and last: Wikipedia:Reference desk/Archives/Miscellaneous/2008 August 11 -[2018-02-13T00:25:21.295] [INFO] cheese - inserting 1000 documents. first: File:Buckcherry all night long.png and last: The Right Worshipful -[2018-02-13T00:25:21.295] [INFO] cheese - inserting 1000 documents. first: Ante Mašić and last: File:Violent Rome.jpg -[2018-02-13T00:25:21.294] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:25:21.333] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:21.351] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:21.418] [INFO] cheese - inserting 1000 documents. first: Maria Stuart and last: Black Sun Productions -[2018-02-13T00:25:21.485] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:25:21.589] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/The dress and last: Category:1965 disestablishments in Minnesota -[2018-02-13T00:25:21.663] [INFO] cheese - inserting 1000 documents. first: Craig Johnson (football coach) and last: Wikipedia:Articles for deletion/Suite101.com (3rd nomination) -[2018-02-13T00:25:21.668] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:25:21.688] [INFO] cheese - inserting 1000 documents. first: Setter (computer science) and last: Dead & Buried -[2018-02-13T00:25:21.708] [INFO] cheese - inserting 1000 documents. first: Promysel Narimanova and last: Roads in Calgary -[2018-02-13T00:25:21.732] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:25:21.759] [INFO] cheese - inserting 1000 documents. first: Polychrome brickwork and last: Wikipedia:Motto of the day/August 28, 2012 -[2018-02-13T00:25:21.796] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:25:21.798] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:25:21.841] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:25:22.024] [INFO] cheese - inserting 1000 documents. first: Սարգիս Տիրանեան and last: Baldwin High School (Baldwin City, Kansas) -[2018-02-13T00:25:22.065] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:22.192] [INFO] cheese - inserting 1000 documents. first: Sintashta and last: Wikipedia:Articles for deletion/North Flinty Knoll -[2018-02-13T00:25:22.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject United States Public Policy/Assessment log and last: Progun -[2018-02-13T00:25:22.250] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:25:22.272] [INFO] cheese - inserting 1000 documents. first: Abdullah Al-Sooli and last: COBIS -[2018-02-13T00:25:22.273] [INFO] cheese - inserting 1000 documents. first: Offset (wheel) and last: Heterozius -[2018-02-13T00:25:22.320] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:25:22.339] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:22.348] [INFO] cheese - inserting 1000 documents. first: File:Here's Jaki.jpg and last: Charles Zomphier -[2018-02-13T00:25:22.359] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:25:22.450] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:25:22.502] [INFO] cheese - inserting 1000 documents. first: Max Vernon Mathews and last: Florida Gators women's cross country -[2018-02-13T00:25:22.558] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:25:22.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Userboxes/Wikipedia/Stats and tools/edit count and last: ATCvet code QA03AX10 -[2018-02-13T00:25:22.747] [INFO] cheese - inserting 1000 documents. first: Ofra Haza and last: Ocean thermal energy conversion -[2018-02-13T00:25:22.755] [INFO] cheese - inserting 1000 documents. first: File:Lumines-roundabout-screenshot.png and last: Qaravəlli, Shamakhi -[2018-02-13T00:25:22.780] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:25:22.786] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:25:22.833] [INFO] cheese - inserting 1000 documents. first: Category:Roads in Hamilton, Ontario and last: Scott Tercero -[2018-02-13T00:25:22.834] [INFO] cheese - batch complete in: 1.666 secs -[2018-02-13T00:25:22.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Comics/To-do and last: Decision-matrix method -[2018-02-13T00:25:22.886] [INFO] cheese - inserting 1000 documents. first: File:TestFlight Icon.png and last: De Excidio (disambiguation) -[2018-02-13T00:25:22.890] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:25:22.913] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:25:22.920] [INFO] cheese - inserting 1000 documents. first: Ivan Opačak and last: File:Amersham Town F.C. logo.png -[2018-02-13T00:25:22.952] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:25:22.987] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:25:23.033] [INFO] cheese - inserting 1000 documents. first: ATC code A03AX11 and last: American football club -[2018-02-13T00:25:23.071] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:23.129] [INFO] cheese - inserting 1000 documents. first: 2008 UCLA Bruins football team and last: HIP 81657 -[2018-02-13T00:25:23.161] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:23.215] [INFO] cheese - inserting 1000 documents. first: Fairy stone (disambiguation) and last: World's busiest airports by aircraft movements -[2018-02-13T00:25:23.243] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:23.291] [INFO] cheese - inserting 1000 documents. first: ATC code A16A and last: 2010 Ontario/Quebec earthquake -[2018-02-13T00:25:23.305] [INFO] cheese - inserting 1000 documents. first: London Goodenough Trust and last: File:Chrispaul.jpg -[2018-02-13T00:25:23.329] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:25:23.340] [INFO] cheese - inserting 1000 documents. first: Carrion/Apologies to Insect Life and last: Choltice (Pardubice District) -[2018-02-13T00:25:23.364] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:25:23.397] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:23.400] [INFO] cheese - inserting 1000 documents. first: Category:Languages by word order and last: Philosophy of life sciences -[2018-02-13T00:25:23.447] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:25:23.517] [INFO] cheese - inserting 1000 documents. first: Category:Algeria location map templates and last: ATC code C09CA04 -[2018-02-13T00:25:23.520] [INFO] cheese - inserting 1000 documents. first: SAO 253651 and last: File:N&VTragedy.jpg -[2018-02-13T00:25:23.541] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:25:23.592] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:25:23.685] [INFO] cheese - inserting 1000 documents. first: World's busiest airports by cargo traffic and last: Japanese cherry tree -[2018-02-13T00:25:23.689] [INFO] cheese - inserting 1000 documents. first: File:Wadati-benioff-zone.png and last: Ermeni -[2018-02-13T00:25:23.712] [INFO] cheese - inserting 1000 documents. first: ATCvet code QC09CA04 and last: ATCvet code QD10AB05 -[2018-02-13T00:25:23.725] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:23.733] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:23.741] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:25:23.770] [INFO] cheese - inserting 1000 documents. first: Liberty Displaying the Arts and Sciences and last: Lake Kawaguchiko -[2018-02-13T00:25:23.810] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CNN and last: Template:Db-nonsense-notice-NPF/doc -[2018-02-13T00:25:23.810] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:25:23.849] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:25:24.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Saphiragold/Archive and last: Wikipedia:PC/F -[2018-02-13T00:25:24.069] [INFO] cheese - inserting 1000 documents. first: Brain aneurysm and last: Vanguard-class submarine -[2018-02-13T00:25:24.071] [INFO] cheese - inserting 1000 documents. first: Logically equivolent and last: Category:European Route of Industrial Heritage Anchor Points -[2018-02-13T00:25:24.098] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:25:24.112] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:24.133] [INFO] cheese - inserting 1000 documents. first: Category:ISO language articles citing sources other than Ethnologue and last: Björn Westerberg -[2018-02-13T00:25:24.159] [INFO] cheese - batch complete in: 1.325 secs -[2018-02-13T00:25:24.167] [INFO] cheese - inserting 1000 documents. first: Jason Castro (disambiguation) and last: Filip Krajinovic -[2018-02-13T00:25:24.170] [INFO] cheese - inserting 1000 documents. first: County Route 55 (Chemung County, New York) and last: Category:Wikipedia featured topics The X-Files (season 8) -[2018-02-13T00:25:24.185] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:24.196] [INFO] cheese - inserting 1000 documents. first: Sakuramachi Tennō and last: Luis Armando Reynoso -[2018-02-13T00:25:24.211] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:25:24.265] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:25:24.287] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:25:24.440] [INFO] cheese - inserting 1000 documents. first: Herman Berlinski (composer, organist and musicologist) and last: ATCvet code QH03BB01 -[2018-02-13T00:25:24.469] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:25:24.497] [INFO] cheese - inserting 1000 documents. first: Compute Unified Device Architecture and last: Journal of international affairs -[2018-02-13T00:25:24.553] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:24.695] [INFO] cheese - inserting 1000 documents. first: Greja Kristen Jawi Wetan and last: Jonathan Brooks House -[2018-02-13T00:25:24.710] [INFO] cheese - inserting 1000 documents. first: ATC code H03BB02 and last: ATCvet code QJ01DB03 -[2018-02-13T00:25:24.720] [INFO] cheese - inserting 1000 documents. first: Category:New Saint Andrews College faculty and last: 185th New York State Legislature -[2018-02-13T00:25:24.733] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:25:24.743] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:25:24.763] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:24.833] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics The X-Files (season 8) good content and last: Monaville, Illinois -[2018-02-13T00:25:24.887] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:25:24.945] [INFO] cheese - inserting 1000 documents. first: ATC code J01DB04 and last: ATC code J06BB -[2018-02-13T00:25:24.980] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:25:25.049] [INFO] cheese - inserting 1000 documents. first: Geoff Richardson (rugby dual code) and last: Flatiron (volcano) -[2018-02-13T00:25:25.052] [INFO] cheese - inserting 1000 documents. first: Central Valley High School (Spokane Valley, Washington) and last: Category:British American Tobacco people -[2018-02-13T00:25:25.077] [INFO] cheese - inserting 1000 documents. first: Bloomfield School District (Indiana) and last: Template:User Scouts (UK) -[2018-02-13T00:25:25.085] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:25:25.093] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:25:25.157] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:25:25.175] [INFO] cheese - inserting 1000 documents. first: U.S.S. Bibb and last: Lougheed Town Centre station -[2018-02-13T00:25:25.237] [INFO] cheese - inserting 1000 documents. first: Katcha language and last: Category:Canadian French -[2018-02-13T00:25:25.238] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:25:25.274] [INFO] cheese - inserting 1000 documents. first: ATC code J06BB01 and last: Category:The Bedroom Philosopher albums -[2018-02-13T00:25:25.329] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:25.330] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:25:25.434] [INFO] cheese - inserting 1000 documents. first: Jane Thornton and last: Can toi -[2018-02-13T00:25:25.463] [INFO] cheese - inserting 1000 documents. first: Pale Green Triangle and last: F2222A -[2018-02-13T00:25:25.473] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:25.506] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:25.541] [INFO] cheese - inserting 1000 documents. first: ATC code L04AB and last: Wikipedia:Miscellany for deletion/User:Jase 17 -[2018-02-13T00:25:25.542] [INFO] cheese - inserting 1000 documents. first: File:LOGO-ST4.jpg and last: Westport Landing -[2018-02-13T00:25:25.571] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:25:25.594] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:25:25.601] [INFO] cheese - inserting 1000 documents. first: Isaac D'Israeli and last: Collier County, Florida -[2018-02-13T00:25:25.664] [INFO] cheese - inserting 1000 documents. first: Category:Guinean academics and last: Tennis and Ski Warehouse -[2018-02-13T00:25:25.677] [INFO] cheese - batch complete in: 1.518 secs -[2018-02-13T00:25:25.708] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:25:25.823] [INFO] cheese - inserting 1000 documents. first: ATCvet code QN02AF01 and last: ATCvet code QN05CM -[2018-02-13T00:25:25.829] [INFO] cheese - inserting 1000 documents. first: Ka-Tet and last: Too Much Too Little Too Late -[2018-02-13T00:25:25.839] [INFO] cheese - inserting 1000 documents. first: 2008 Presidential election and last: Empire Connection -[2018-02-13T00:25:25.852] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:25:25.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kamerhiphop.com and last: Peltophryne -[2018-02-13T00:25:25.922] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:25:25.975] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:25:25.999] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:25:26.020] [INFO] cheese - inserting 1000 documents. first: Gang saw and last: Quality Schools International -[2018-02-13T00:25:26.126] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:26.161] [INFO] cheese - inserting 1000 documents. first: 540 area code and last: Template:Lighthouses of Trinity House -[2018-02-13T00:25:26.244] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:25:26.356] [INFO] cheese - inserting 1000 documents. first: ATC code N05CM01 and last: Maskan Bank -[2018-02-13T00:25:26.389] [INFO] cheese - inserting 1000 documents. first: Łukasz Pawłowski and last: Meta di Sorrento -[2018-02-13T00:25:26.402] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:25:26.417] [INFO] cheese - inserting 1000 documents. first: Mohammad Halilula and last: Women and Girls Lead Global -[2018-02-13T00:25:26.451] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:25:26.474] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:25:26.545] [INFO] cheese - inserting 1000 documents. first: Mikhail Bernadski and last: Vail Lake -[2018-02-13T00:25:26.659] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:25:26.664] [INFO] cheese - inserting 1000 documents. first: Category:Relational database management systems and last: Template:ISO 3166 name CI-19 -[2018-02-13T00:25:26.702] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:25:26.724] [INFO] cheese - inserting 1000 documents. first: Plesiatropha and last: Gw foote -[2018-02-13T00:25:26.800] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:25:26.870] [INFO] cheese - inserting 1000 documents. first: 1987 Australian Sports Car Championship and last: Disc form factors -[2018-02-13T00:25:26.927] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name CI-05 and last: Template:ISO 3166 name JO-MA -[2018-02-13T00:25:26.982] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:25:27.045] [INFO] cheese - inserting 1000 documents. first: File:BCWildlifeParklogo.gif and last: Bari Alphabet -[2018-02-13T00:25:27.030] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:25:27.081] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Co-op/Maximus2929 and last: Template:Did you know nominations/Nocomis platyrhynchus -[2018-02-13T00:25:27.094] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:25:27.167] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:25:27.231] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name JO-AQ and last: Template:ISO 3166 name PG-MBA -[2018-02-13T00:25:27.248] [INFO] cheese - inserting 1000 documents. first: Brookfield Township, LaSalle County, Illinois and last: Arena Football: Road to Glory -[2018-02-13T00:25:27.250] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:25:27.291] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:25:27.430] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name PG-MPL and last: Template:ISO 3166 name ES-BU -[2018-02-13T00:25:27.492] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:25:27.546] [INFO] cheese - inserting 1000 documents. first: Lake Point Tower and last: Frank Slaughter -[2018-02-13T00:25:27.587] [INFO] cheese - inserting 1000 documents. first: Trine Bakke Rognmo and last: Wichita National Forest -[2018-02-13T00:25:27.614] [INFO] cheese - inserting 1000 documents. first: Category:1690s in Sweden and last: Milla, Illinois -[2018-02-13T00:25:27.624] [INFO] cheese - inserting 1000 documents. first: The Beach (novel) and last: Ferdinand V of Spain -[2018-02-13T00:25:27.651] [INFO] cheese - inserting 1000 documents. first: Circulatory system of insects and last: Va Va Voom (disambiguation) -[2018-02-13T00:25:27.658] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:25:27.682] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:25:27.764] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:25:27.767] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name ES-S and last: Template:ISO 3166 name GB-GLS -[2018-02-13T00:25:27.785] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:25:27.822] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:25:27.909] [INFO] cheese - inserting 1000 documents. first: Space Marine Predator and last: California's 31st State Senate district -[2018-02-13T00:25:27.909] [INFO] cheese - batch complete in: 2.232 secs -[2018-02-13T00:25:28.002] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:25:28.150] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name GB-GRE and last: ATCvet code QR05CB12 -[2018-02-13T00:25:28.182] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:28.246] [INFO] cheese - inserting 1000 documents. first: File:Living With Fibromyalgia (DVD cover).jpg and last: File:Addicted Tour.jpg -[2018-02-13T00:25:28.272] [INFO] cheese - inserting 1000 documents. first: File:Chapel123.jpg and last: Petrokimia Putra -[2018-02-13T00:25:28.293] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:25:28.334] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:25:28.375] [INFO] cheese - inserting 1000 documents. first: 2015 Toronto International Film Festival and last: Category:Trelleborgs FF templates -[2018-02-13T00:25:28.445] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:25:28.455] [INFO] cheese - inserting 1000 documents. first: Dollars & Sense and last: Exercise Deep Sabre -[2018-02-13T00:25:28.498] [INFO] cheese - inserting 1000 documents. first: Izačić and last: Wikipedia:Articles for deletion/Nene Thomas -[2018-02-13T00:25:28.533] [INFO] cheese - inserting 1000 documents. first: Ananas sativus and last: The pleasure paradox -[2018-02-13T00:25:28.546] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:25:28.531] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:25:28.634] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:25:28.785] [INFO] cheese - inserting 1000 documents. first: Gemma Mengual and last: A126 road (Great Britain) -[2018-02-13T00:25:28.836] [INFO] cheese - inserting 1000 documents. first: Katheryn Meaklim and last: Bors, Iran -[2018-02-13T00:25:28.850] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:25:28.966] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:25:29.134] [INFO] cheese - inserting 1000 documents. first: ATCvet code QS01HA and last: Plana, Bileća -[2018-02-13T00:25:29.153] [INFO] cheese - inserting 1000 documents. first: Category:Syrianska FC templates and last: Category:Films set in the United States Virgin Islands -[2018-02-13T00:25:29.219] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:25:29.270] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:25:29.290] [INFO] cheese - inserting 1000 documents. first: The paradox of hedonism and last: Jackson Kaujeua -[2018-02-13T00:25:29.383] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:25:29.392] [INFO] cheese - inserting 1000 documents. first: Charles Ross (British Army officer) and last: Acrolepiopsis chirapanthui -[2018-02-13T00:25:29.471] [INFO] cheese - inserting 1000 documents. first: A127 road (Great Britain) and last: Template:History of Belize -[2018-02-13T00:25:29.506] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:29.530] [INFO] cheese - inserting 1000 documents. first: Hungarianisation and last: White Esk -[2018-02-13T00:25:29.597] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:25:29.714] [INFO] cheese - inserting 1000 documents. first: Podgorje, Bileća and last: File:Ebony Eyes.jpg -[2018-02-13T00:25:29.718] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T00:25:29.763] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:25:29.841] [INFO] cheese - inserting 1000 documents. first: Folk metal and last: Biot–Savart law -[2018-02-13T00:25:29.907] [INFO] cheese - inserting 1000 documents. first: 873 area code and last: Orion Cinema -[2018-02-13T00:25:29.910] [INFO] cheese - inserting 1000 documents. first: File:Statue of Queen Victoria, Rosalind Park, Bendigo, Victoria, Australia.jpg and last: N. Prabhakar -[2018-02-13T00:25:29.932] [INFO] cheese - batch complete in: 2.023 secs -[2018-02-13T00:25:29.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Washitaw Nation and last: A654 road (Great Britain) -[2018-02-13T00:25:29.955] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:25:29.973] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:25:29.978] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:25:30.017] [INFO] cheese - inserting 1000 documents. first: Center versus periphery and last: Hernando Ruiz de Alarcón -[2018-02-13T00:25:30.059] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:25:30.182] [INFO] cheese - inserting 1000 documents. first: Morgan Jones (New York) and last: Unknown Soldier (film) -[2018-02-13T00:25:30.227] [INFO] cheese - inserting 1000 documents. first: Library of Ashurbanipal and last: David W. Harper -[2018-02-13T00:25:30.242] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:25:30.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steve Burke and last: A396 road (Great Britain) -[2018-02-13T00:25:30.283] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:25:30.283] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:25:30.292] [INFO] cheese - inserting 1000 documents. first: Mavzuna Chorieva and last: The Great Smoky Mountains -[2018-02-13T00:25:30.323] [INFO] cheese - inserting 1000 documents. first: File:SchemingSchemers1956onesheet.jpg and last: File:Garbage The Chemicals RSD.png -[2018-02-13T00:25:30.335] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:30.368] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:25:30.373] [INFO] cheese - inserting 1000 documents. first: Andrew Charles Anderson and last: 1972 in Northern Ireland -[2018-02-13T00:25:30.417] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:25:30.570] [INFO] cheese - inserting 1000 documents. first: W. K. George and last: SS Greater Buffalo -[2018-02-13T00:25:30.573] [INFO] cheese - inserting 1000 documents. first: Klingonese language and last: A4020 road (Great Britain) -[2018-02-13T00:25:30.588] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 683 BC and last: Alexandr Shvedov -[2018-02-13T00:25:30.611] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:25:30.626] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:30.661] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:30.676] [INFO] cheese - inserting 1000 documents. first: Tournament Capital Center and last: I-376 Bus. -[2018-02-13T00:25:30.707] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:25:30.725] [INFO] cheese - inserting 1000 documents. first: Lovekraft and last: August 28,1898 -[2018-02-13T00:25:30.779] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:30.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject military history and last: Wikipedia:Articles for deletion/FUDD -[2018-02-13T00:25:30.823] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:30.951] [INFO] cheese - inserting 1000 documents. first: Joffa Smith and last: Category:Colonial forts in Rhode Island -[2018-02-13T00:25:30.981] [INFO] cheese - inserting 1000 documents. first: Drone flute and last: De Vasa's hexagonal chess -[2018-02-13T00:25:30.986] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:30.997] [INFO] cheese - inserting 1000 documents. first: Levakend and last: Portal:Arctic/Selected article/9 -[2018-02-13T00:25:31.010] [INFO] cheese - inserting 1000 documents. first: Birket and last: Louis the 20th -[2018-02-13T00:25:31.040] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:25:31.051] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:25:31.073] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:25:31.138] [INFO] cheese - inserting 1000 documents. first: Thaworn Senniam and last: Sugar shanty -[2018-02-13T00:25:31.177] [INFO] cheese - inserting 1000 documents. first: Taylor County, Florida and last: SOM -[2018-02-13T00:25:31.181] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:25:31.256] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T00:25:31.440] [INFO] cheese - inserting 1000 documents. first: Template:Wofford Terriers football navbox and last: SpABdomain -[2018-02-13T00:25:31.476] [INFO] cheese - inserting 1000 documents. first: Minuscule 746 and last: M-protein -[2018-02-13T00:25:31.489] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:31.524] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2007 February 24 and last: Template:India Squad 1999 Cricket World Cup -[2018-02-13T00:25:31.557] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:25:31.571] [INFO] cheese - inserting 1000 documents. first: Louis Alphonse Gonzalve Victor Emmanuel Marc de Bourbon and last: Category:1750 establishments in Pennsylvania -[2018-02-13T00:25:31.593] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:25:31.602] [INFO] cheese - inserting 1000 documents. first: Template:SMUMustangsFBCoach and last: A6211 road (Great Britain) -[2018-02-13T00:25:31.642] [INFO] cheese - inserting 1000 documents. first: Desferrioxamine and last: Schofields, New South Wales -[2018-02-13T00:25:31.661] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:25:31.670] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:25:31.733] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:25:31.873] [INFO] cheese - inserting 1000 documents. first: Category:First Ladies of Zambia and last: File:TheNewBatmanAdventuresLogo.jpg -[2018-02-13T00:25:31.923] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:25:31.975] [INFO] cheese - inserting 1000 documents. first: George C. Read and last: 50th Regiment Infantry U.S. Colored Troops -[2018-02-13T00:25:31.990] [INFO] cheese - inserting 1000 documents. first: Raninder Singh and last: 2002 AFL Womens National Championships -[2018-02-13T00:25:32.028] [INFO] cheese - inserting 1000 documents. first: Malaysian expressway systems 6 and last: Guamal -[2018-02-13T00:25:32.057] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:25:32.063] [INFO] cheese - inserting 1000 documents. first: Washington's 15th Legislative District and last: Smith House (Bentonville, Arkansas) -[2018-02-13T00:25:32.068] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:25:32.089] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:32.137] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:32.249] [INFO] cheese - inserting 1000 documents. first: Wilhelm Normann and last: Istvan, Grof Tisza -[2018-02-13T00:25:32.325] [INFO] cheese - inserting 1000 documents. first: Quzan and last: Qal'eh-ye Mansuria -[2018-02-13T00:25:32.423] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:25:32.491] [INFO] cheese - inserting 1000 documents. first: Self-organizing map and last: Elliptical orbit -[2018-02-13T00:25:32.499] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:25:32.576] [INFO] cheese - inserting 1000 documents. first: 2003 AFL Womens National Championships and last: Template:1910 Helms Foundation NCAA Men's Basketball All-Americans -[2018-02-13T00:25:32.581] [INFO] cheese - batch complete in: 1.325 secs -[2018-02-13T00:25:32.631] [INFO] cheese - inserting 1000 documents. first: European historical fiction and last: Cumbria rail crash -[2018-02-13T00:25:32.646] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:32.661] [INFO] cheese - inserting 1000 documents. first: Opistognathus aurifons and last: Namanga (Tanzanian ward) -[2018-02-13T00:25:32.699] [INFO] cheese - inserting 1000 documents. first: Tetramorium pilosum and last: File:Five-More-Hours-Deorro-Chris-Brown.jpg -[2018-02-13T00:25:32.721] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:25:32.746] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:25:32.792] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:25:32.971] [INFO] cheese - inserting 1000 documents. first: Stevy Nzambe and last: Melaniparus cinerascens -[2018-02-13T00:25:33.041] [INFO] cheese - inserting 1000 documents. first: Punding and last: File:Virgin train at holyhead.jpg -[2018-02-13T00:25:33.049] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:25:33.135] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:25:33.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 June 24 and last: Anatoliy Nenartovich -[2018-02-13T00:25:33.297] [INFO] cheese - inserting 1000 documents. first: List of United States Supreme Court cases, volume 441 and last: Wikipedia:Featured article candidates/Google/archive2 -[2018-02-13T00:25:33.297] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:25:33.335] [INFO] cheese - inserting 1000 documents. first: Dene K'e language and last: Shinkawa Yua -[2018-02-13T00:25:33.348] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:25:33.381] [INFO] cheese - inserting 1000 documents. first: File:Both worlds 69.jpg and last: Tikunei Zohar -[2018-02-13T00:25:33.383] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:25:33.398] [INFO] cheese - inserting 1000 documents. first: Wild Days (song) and last: Relative survival rate -[2018-02-13T00:25:33.414] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:25:33.471] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:25:33.686] [INFO] cheese - inserting 1000 documents. first: OG RON C and last: Vecdaugava -[2018-02-13T00:25:33.733] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:33.739] [INFO] cheese - inserting 1000 documents. first: Aleksander Baumgardten and last: Samy naceri -[2018-02-13T00:25:33.747] [INFO] cheese - inserting 1000 documents. first: Category:2001 in South Africa and last: 2007 Canada Winter Games -[2018-02-13T00:25:33.765] [INFO] cheese - inserting 1000 documents. first: Category:2006 disestablishments in Wales and last: ETV+ -[2018-02-13T00:25:33.767] [INFO] cheese - inserting 1000 documents. first: File:Jodie Connor - Take You There.ogg and last: Ramadhan Saputra -[2018-02-13T00:25:33.795] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:25:33.804] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:25:33.809] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:25:33.825] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:25:33.907] [INFO] cheese - inserting 1000 documents. first: Indochinese serow and last: File:Vahlherberternst.jpg -[2018-02-13T00:25:33.954] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:25:33.990] [INFO] cheese - inserting 1000 documents. first: Alcyone and last: Furies -[2018-02-13T00:25:34.109] [INFO] cheese - batch complete in: 1.528 secs -[2018-02-13T00:25:34.209] [INFO] cheese - inserting 1000 documents. first: K 14 and last: Mash It Up -[2018-02-13T00:25:34.255] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:34.257] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Australian Women's Weekly Children's Birthday Cake Book and last: Wikipedia:Articles for deletion/FEU Advocate -[2018-02-13T00:25:34.303] [INFO] cheese - inserting 1000 documents. first: WYBN and last: Category:National symbols of Bulgaria -[2018-02-13T00:25:34.305] [INFO] cheese - inserting 1000 documents. first: Tango Rosario and last: Anglo-Russian invasion of North Holland in 1799 -[2018-02-13T00:25:34.319] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:25:34.357] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:25:34.362] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:25:34.373] [INFO] cheese - inserting 1000 documents. first: Samir Amin and last: METAL GEAR SOLID 2 SONS OF LIBIRTY -[2018-02-13T00:25:34.442] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:25:34.468] [INFO] cheese - inserting 1000 documents. first: Pat Yisrael and last: Heinz Valk -[2018-02-13T00:25:34.514] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:25:34.561] [INFO] cheese - inserting 1000 documents. first: Killing Me Softly (novel) and last: Superconducting Radio Frequency -[2018-02-13T00:25:34.611] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:25:34.728] [INFO] cheese - inserting 1000 documents. first: Xtreem and last: David Mitchell (admiral) -[2018-02-13T00:25:34.737] [INFO] cheese - inserting 1000 documents. first: Carisa Bianchi and last: Vitor José -[2018-02-13T00:25:34.765] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:25:34.791] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:25:34.815] [INFO] cheese - inserting 1000 documents. first: Category:Bridges completed in 1720 and last: Bass (vocal range) -[2018-02-13T00:25:34.871] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:25:34.920] [INFO] cheese - inserting 1000 documents. first: Crawford Auto-Aviation Museum and last: Laura N. Chick -[2018-02-13T00:25:34.964] [INFO] cheese - inserting 1000 documents. first: Criticism of Western Culture and last: Deep femoral veins -[2018-02-13T00:25:34.979] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:25:34.995] [INFO] cheese - inserting 1000 documents. first: Software patching and last: Thánh Gióng -[2018-02-13T00:25:35.040] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:25:35.076] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:35.316] [INFO] cheese - inserting 1000 documents. first: Template:Lectins and last: Hornbill Films -[2018-02-13T00:25:35.387] [INFO] cheese - inserting 1000 documents. first: Alessandro Ferrara and last: Northwest Region, Cameroon -[2018-02-13T00:25:35.405] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:25:35.504] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:25:35.525] [INFO] cheese - inserting 1000 documents. first: Winter hazel and last: Parti Bersatu Rakyat Jelata Sabah -[2018-02-13T00:25:35.728] [INFO] cheese - inserting 1000 documents. first: Hipponax and last: Dom Pedro II -[2018-02-13T00:25:35.774] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:25:36.030] [INFO] cheese - inserting 1000 documents. first: Category:2015 in New Caledonia and last: Leo (ThunderCats) -[2018-02-13T00:25:36.113] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles incorporating an MLCC with a warning and last: Costas N. Papanicolas -[2018-02-13T00:25:36.187] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable software release/Firefox and last: Vallejo Flour Mill -[2018-02-13T00:25:36.207] [INFO] cheese - batch complete in: 2.098 secs -[2018-02-13T00:25:36.310] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T00:25:36.421] [INFO] cheese - batch complete in: 1.345 secs -[2018-02-13T00:25:36.644] [INFO] cheese - batch complete in: 1.665 secs -[2018-02-13T00:25:36.722] [INFO] cheese - inserting 1000 documents. first: Charlotte Champe Stearns and last: File:Lagos highway.jpg -[2018-02-13T00:25:36.780] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T00:25:36.941] [INFO] cheese - inserting 1000 documents. first: Template:1923 PCC football standings and last: Los Premios MTV Latinoamérica for Best New Artist — International -[2018-02-13T00:25:37.026] [INFO] cheese - batch complete in: 1.522 secs -[2018-02-13T00:25:37.062] [INFO] cheese - inserting 1000 documents. first: Category:Yugoslav war crimes and last: Wave set-down -[2018-02-13T00:25:37.092] [INFO] cheese - inserting 1000 documents. first: Saeculo exeunte and last: Båstad tennisstadion -[2018-02-13T00:25:37.094] [INFO] cheese - inserting 1000 documents. first: Robert M. Wolterstorff and last: Bryan Keith Holland -[2018-02-13T00:25:37.100] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:25:37.160] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T00:25:37.157] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:25:37.267] [INFO] cheese - inserting 1000 documents. first: Karaga District and last: Wikipedia:Featured article candidates/Liberal Party (Utah) -[2018-02-13T00:25:37.311] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:25:37.328] [INFO] cheese - inserting 1000 documents. first: Smirne - Southern Zone, Morocco and last: Small crown chip -[2018-02-13T00:25:37.392] [INFO] cheese - inserting 1000 documents. first: Helicella bierzona and last: The Best Job in the World (advertising) -[2018-02-13T00:25:37.393] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:25:37.448] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:25:37.542] [INFO] cheese - inserting 1000 documents. first: Najafi, Lorestan and last: Hacı Ahmed Muhiddin Piri -[2018-02-13T00:25:37.599] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:25:37.607] [INFO] cheese - inserting 1000 documents. first: Bozuretown, New Jersey and last: Chevalierella congoensis -[2018-02-13T00:25:37.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Business and economics articles by quality/28 and last: Mineapolis -[2018-02-13T00:25:37.650] [INFO] cheese - inserting 1000 documents. first: Quinuclidines and last: Wikipedia:Articles for deletion/Robert V. Somers -[2018-02-13T00:25:37.671] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:25:37.759] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:37.803] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:25:37.899] [INFO] cheese - inserting 1000 documents. first: Johann Radetzky and last: Template:Latest preview software release/Apache OpenOffice -[2018-02-13T00:25:37.953] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:25:38.002] [INFO] cheese - inserting 1000 documents. first: New Mexican rubber plant and last: Wújí -[2018-02-13T00:25:38.017] [INFO] cheese - inserting 1000 documents. first: Template:Time zones of Australia labeled and last: Na Yeon Choi -[2018-02-13T00:25:38.045] [INFO] cheese - inserting 1000 documents. first: Saint Kitts and Nevis/Geography and last: Music notation -[2018-02-13T00:25:38.057] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:25:38.069] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:25:38.082] [INFO] cheese - inserting 1000 documents. first: Estádio do Tafe and last: British Academy Video Games Awards -[2018-02-13T00:25:38.125] [INFO] cheese - inserting 1000 documents. first: True Colors (TSR episode) and last: Jan F. E. Celliers -[2018-02-13T00:25:38.128] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:25:38.141] [INFO] cheese - batch complete in: 1.934 secs -[2018-02-13T00:25:38.185] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:25:38.228] [INFO] cheese - inserting 1000 documents. first: Browserless and last: Hans Hoßfeld -[2018-02-13T00:25:38.287] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:38.360] [INFO] cheese - inserting 1000 documents. first: Julie of the Wolves and last: Biscotasing, ontario -[2018-02-13T00:25:38.363] [INFO] cheese - inserting 1000 documents. first: Turje, Slovenia and last: Abdelhak Aatkani -[2018-02-13T00:25:38.398] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:25:38.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/2018 and last: Category:1990s independent films -[2018-02-13T00:25:38.416] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:38.459] [INFO] cheese - inserting 1000 documents. first: Category:Plays by John Millington Synge and last: Order of Ennead (album) -[2018-02-13T00:25:38.465] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:25:38.522] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:38.562] [INFO] cheese - inserting 1000 documents. first: Carl E. Mapes and last: Fashionista (television show) -[2018-02-13T00:25:38.596] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:25:38.622] [INFO] cheese - inserting 1000 documents. first: Cornelius O'Leary and last: Masonic Building (Newtonville) -[2018-02-13T00:25:38.678] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:25:38.804] [INFO] cheese - inserting 1000 documents. first: Akhmed Avtorkhanov and last: Lochty -[2018-02-13T00:25:38.843] [INFO] cheese - inserting 1000 documents. first: Fancy Dress (film) and last: Template:WP Brunei -[2018-02-13T00:25:38.852] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:38.868] [INFO] cheese - inserting 1000 documents. first: Alexi Murdoch and last: Joseph-Désiré Job -[2018-02-13T00:25:38.896] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:25:38.915] [INFO] cheese - inserting 1000 documents. first: Michigan Madness and last: Kraszków -[2018-02-13T00:25:38.949] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:25:38.956] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:25:39.049] [INFO] cheese - inserting 1000 documents. first: Template:Cities and towns in Neu-Ulm (district) and last: Template:Nsb next local -[2018-02-13T00:25:39.057] [INFO] cheese - inserting 1000 documents. first: Sniglet and last: Antiochus I Soter -[2018-02-13T00:25:39.091] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:25:39.121] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T00:25:39.169] [INFO] cheese - inserting 1000 documents. first: Brooding patch and last: Louis de St Allouarn -[2018-02-13T00:25:39.212] [INFO] cheese - inserting 1000 documents. first: Arrakyul and last: Kruplin-Piaski -[2018-02-13T00:25:39.243] [INFO] cheese - inserting 1000 documents. first: Greeley (surname) and last: Victor Adetunji Haffner -[2018-02-13T00:25:39.248] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:25:39.266] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:25:39.311] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:39.331] [INFO] cheese - inserting 1000 documents. first: Lochtee and last: Charles James (rugby league) -[2018-02-13T00:25:39.390] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:25:39.401] [INFO] cheese - inserting 1000 documents. first: Western Hedgehog and last: 1927 Pulitzer Prize -[2018-02-13T00:25:39.447] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:39.493] [INFO] cheese - inserting 1000 documents. first: Pray for Me (Mobb Deep song) and last: Wikipedia:Articles for deletion/Wallenburg Set -[2018-02-13T00:25:39.540] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:39.589] [INFO] cheese - inserting 1000 documents. first: The Jacksons – An American Dream and last: Omar Mohammed Khalifh -[2018-02-13T00:25:39.644] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:39.655] [INFO] cheese - inserting 1000 documents. first: File:Him - Rupert Holmes.jpg and last: Stathmodera densesulcata -[2018-02-13T00:25:39.671] [INFO] cheese - inserting 1000 documents. first: Von Stackelberg and last: Number-one albums of 2006 (Australia) -[2018-02-13T00:25:39.695] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:25:39.728] [INFO] cheese - inserting 1000 documents. first: Diego Del Real and last: Erik Svensson (Malmö FF footballer 1943–1944) -[2018-02-13T00:25:39.732] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:39.763] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:25:39.889] [INFO] cheese - inserting 1000 documents. first: Levin Schucking and last: Mauno kling -[2018-02-13T00:25:39.925] [INFO] cheese - inserting 1000 documents. first: Category:Singaporean gamblers and last: Electoral district of Cootamundra -[2018-02-13T00:25:39.943] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:25:39.950] [INFO] cheese - inserting 1000 documents. first: Nowa Wieś, Gmina Poddębice and last: Wólka Bankowa -[2018-02-13T00:25:39.961] [INFO] cheese - inserting 1000 documents. first: Famous gay lesbian and bisexual people and last: Ethal -[2018-02-13T00:25:39.990] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:25:40.041] [INFO] cheese - inserting 1000 documents. first: Stathmodera flavescens and last: Bahria College Karachi NORE I -[2018-02-13T00:25:40.057] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:25:40.089] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:40.187] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:25:40.199] [INFO] cheese - inserting 1000 documents. first: Honda XL350R and last: Smartlynx Airlines -[2018-02-13T00:25:40.236] [INFO] cheese - inserting 1000 documents. first: Sound Wave (Stanley Huang album) and last: Bradypterus timoriensis -[2018-02-13T00:25:40.263] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:25:40.306] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:25:40.506] [INFO] cheese - inserting 1000 documents. first: Paul Bley/NHØP and last: File:Madhk1.jpg -[2018-02-13T00:25:40.512] [INFO] cheese - inserting 1000 documents. first: Wólka Włościańska and last: Stefanów Ruszkowski -[2018-02-13T00:25:40.521] [INFO] cheese - inserting 1000 documents. first: Missa Sicca and last: Puberty (Naked Brothers Band Episode) -[2018-02-13T00:25:40.549] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:25:40.550] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:25:40.578] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:25:40.614] [INFO] cheese - inserting 1000 documents. first: Cathedral of the Holy Spirit, Palmerston North and last: 1991 Grand Prix (snooker) -[2018-02-13T00:25:40.651] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:25:40.657] [INFO] cheese - inserting 1000 documents. first: Template:Seeds explanation/doc and last: File:CSKA Moscow.svg -[2018-02-13T00:25:40.683] [INFO] cheese - inserting 1000 documents. first: 2003 Mercedes-Benz Cup – Doubles and last: Luigi Mattei -[2018-02-13T00:25:40.686] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:40.731] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:25:40.886] [INFO] cheese - inserting 1000 documents. first: Anubal and last: Susana Giménez -[2018-02-13T00:25:40.910] [INFO] cheese - inserting 1000 documents. first: Kohniconus janowskyae and last: Schaffner's wattle -[2018-02-13T00:25:40.916] [INFO] cheese - inserting 1000 documents. first: File:Kodakumi03-ddd.01.jpg and last: Portuguese Volleyball League A2 -[2018-02-13T00:25:40.942] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:40.943] [INFO] cheese - inserting 1000 documents. first: Littleham and last: Janice Brown (superintendent) -[2018-02-13T00:25:40.950] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:25:40.951] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:25:40.962] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Gaziantep and last: File:Barefoot Bay Beach.jpg -[2018-02-13T00:25:40.999] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:25:41.014] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:41.148] [INFO] cheese - inserting 1000 documents. first: Chartreuse of Dijon and last: Henry II, King of France -[2018-02-13T00:25:41.152] [INFO] cheese - inserting 1000 documents. first: Mathilda (novella) and last: File:Saintrophimetympanum.jpg -[2018-02-13T00:25:41.183] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:41.204] [INFO] cheese - inserting 1000 documents. first: State Committee for Scientific Research and last: Tutu (Egyptian deity) -[2018-02-13T00:25:41.217] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:25:41.237] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:25:41.305] [INFO] cheese - inserting 1000 documents. first: HSC Jaume II and last: SP-95 -[2018-02-13T00:25:41.335] [INFO] cheese - inserting 1000 documents. first: Mächtig and last: Barton Baronets -[2018-02-13T00:25:41.366] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:41.424] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:25:41.434] [INFO] cheese - inserting 1000 documents. first: Category:1935 in India and last: File:Kora-fm-logo.jpg -[2018-02-13T00:25:41.528] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:25:41.638] [INFO] cheese - inserting 1000 documents. first: Thomas Murray Hall and last: Category:1731 in Christianity -[2018-02-13T00:25:41.686] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:25:41.781] [INFO] cheese - inserting 1000 documents. first: Ahmed Ali Jaber and last: Category:Pop video albums -[2018-02-13T00:25:41.864] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:25:41.876] [INFO] cheese - inserting 1000 documents. first: Soghain and last: São Vicente, Brazil -[2018-02-13T00:25:41.965] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:25:42.043] [INFO] cheese - inserting 1000 documents. first: Bass Baronets and last: Channel 1 (Syria) -[2018-02-13T00:25:42.044] [INFO] cheese - inserting 1000 documents. first: SP-97 and last: Tonia Joy -[2018-02-13T00:25:42.120] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:25:42.127] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:25:42.138] [INFO] cheese - inserting 1000 documents. first: Category:17th century in Ireland and last: Motet in D, "Ave verum Corpus" -[2018-02-13T00:25:42.166] [INFO] cheese - inserting 1000 documents. first: Nina Frausing-Pedersen and last: Avraham Negusa -[2018-02-13T00:25:42.211] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:25:42.236] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:25:42.338] [INFO] cheese - inserting 1000 documents. first: History of music and last: Powell Doctrine -[2018-02-13T00:25:42.352] [INFO] cheese - inserting 1000 documents. first: Category:Dance music video albums and last: Category:Groups that resisted the Greek military junta of 1967-1974 -[2018-02-13T00:25:42.393] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:25:42.444] [INFO] cheese - batch complete in: 1.494 secs -[2018-02-13T00:25:42.455] [INFO] cheese - inserting 1000 documents. first: 2012 FIA WTCC Race of Morocco and last: Ankole Mole Rat -[2018-02-13T00:25:42.482] [INFO] cheese - inserting 1000 documents. first: Sinfonia Finlandia Jyvaskyla and last: Kōko Tsurumi -[2018-02-13T00:25:42.484] [INFO] cheese - inserting 1000 documents. first: Barren Island, Andaman Islands and last: 2.6.13 Linux kernel -[2018-02-13T00:25:42.495] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:42.519] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:25:42.559] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:25:42.613] [INFO] cheese - inserting 1000 documents. first: Tzu Chi Malaysia and last: Portal:Graffiti/Intro -[2018-02-13T00:25:42.670] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:25:42.709] [INFO] cheese - inserting 1000 documents. first: Category:Battles involving the Kingdom of Imereti and last: Conor O'Brien (musician) -[2018-02-13T00:25:42.779] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:25:42.804] [INFO] cheese - inserting 1000 documents. first: CADE COURTLEY and last: Saint Kitts and Nevis at the 2009 World Championships in Athletics -[2018-02-13T00:25:42.860] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:25:42.886] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Decorah Bald Eagles and last: Spotted Snow Flat -[2018-02-13T00:25:42.931] [INFO] cheese - inserting 1000 documents. first: Category:Gates of Beijing and last: B. V. S. Ravi -[2018-02-13T00:25:42.935] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:25:42.982] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:43.017] [INFO] cheese - inserting 1000 documents. first: Sion Hillock Fort and last: Giovanni Comisso -[2018-02-13T00:25:43.059] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:25:43.063] [INFO] cheese - inserting 1000 documents. first: Tajikistan copyright law and last: Category:People from Kaliningrad -[2018-02-13T00:25:43.099] [INFO] cheese - inserting 1000 documents. first: File:Contraband-1980-poster.jpg and last: McVaugh's pine -[2018-02-13T00:25:43.111] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:43.134] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:25:43.158] [INFO] cheese - inserting 1000 documents. first: Dark-Edged Snow Flat and last: File:Rocky 1981.JPG -[2018-02-13T00:25:43.188] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:25:43.251] [INFO] cheese - inserting 1000 documents. first: File:Thai Express (Canada) logo.svg and last: Asch's Conformity Experiment -[2018-02-13T00:25:43.264] [INFO] cheese - inserting 1000 documents. first: Lars Fredrick Nilson and last: Template:South Korea baseball roster 2008 Summer Olympics -[2018-02-13T00:25:43.281] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:43.305] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:25:43.396] [INFO] cheese - inserting 1000 documents. first: Alvin Plantinga and last: Xilonen -[2018-02-13T00:25:43.405] [INFO] cheese - inserting 1000 documents. first: 爆米花夏季棒球聯盟 and last: Çukuryurt -[2018-02-13T00:25:43.432] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:25:43.444] [INFO] cheese - inserting 1000 documents. first: Template:Cities and towns in Borken (district) and last: Zahir Howaida -[2018-02-13T00:25:43.476] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T00:25:43.486] [INFO] cheese - inserting 1000 documents. first: Quadratic acid and last: File:Unity Larry Young.jpg -[2018-02-13T00:25:43.507] [INFO] cheese - inserting 1000 documents. first: File:Octane Trends.jpg and last: Tagetes glandulosa -[2018-02-13T00:25:43.527] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:25:43.550] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:25:43.577] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:25:43.658] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in Wisconsin and last: Joseph Raymond Sarnoski -[2018-02-13T00:25:43.687] [INFO] cheese - inserting 1000 documents. first: Devil's Hole and last: Cta -[2018-02-13T00:25:43.716] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:25:43.736] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:25:43.857] [INFO] cheese - inserting 1000 documents. first: Design to cost and last: Category:Sportspeople in Kristianstad by club or team -[2018-02-13T00:25:43.892] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:25:43.902] [INFO] cheese - inserting 1000 documents. first: Tagetes porophyllum and last: Pogorelec -[2018-02-13T00:25:43.953] [INFO] cheese - inserting 1000 documents. first: Route 23 (MTA Maryland) and last: Geoff Hoyle -[2018-02-13T00:25:43.960] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:25:44.006] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:25:44.045] [INFO] cheese - inserting 1000 documents. first: Crash the boards and last: Sweating sickness (cattle) -[2018-02-13T00:25:44.093] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:25:44.191] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/John F. Long Pool and last: Bjelke-Petersen family -[2018-02-13T00:25:44.197] [INFO] cheese - inserting 1000 documents. first: Mandamus (disambiguation) and last: Esterka, Łódź Voivodeship -[2018-02-13T00:25:44.234] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople in Halmstad by club or team and last: Holoreta rubicunda -[2018-02-13T00:25:44.238] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:25:44.245] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:25:44.285] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:44.305] [INFO] cheese - inserting 1000 documents. first: File:Wade michael page police handout.png and last: Ayaştürkmenli, Mersin -[2018-02-13T00:25:44.364] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:44.449] [INFO] cheese - inserting 1000 documents. first: Recency and last: 1994–95 Tottenham Hotspur F.C. season -[2018-02-13T00:25:44.486] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:44.595] [INFO] cheese - inserting 1000 documents. first: Category:Azonto and last: Johann Martin Boltzius -[2018-02-13T00:25:44.691] [INFO] cheese - inserting 1000 documents. first: Transportation in alaska and last: Boat Harbour, New South Wales -[2018-02-13T00:25:44.708] [INFO] cheese - inserting 1000 documents. first: Category:Scotch-Irish American history and last: Austin 25/30 -[2018-02-13T00:25:44.755] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:44.759] [INFO] cheese - inserting 1000 documents. first: Franciszkany and last: Krzyż -[2018-02-13T00:25:44.810] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:44.814] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:25:44.843] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:25:44.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Royal Mara Safari Lodge (2nd nomination) and last: Meditation in Health Science -[2018-02-13T00:25:44.940] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:44.989] [INFO] cheese - inserting 1000 documents. first: Bradleja and last: She Lives! -[2018-02-13T00:25:45.046] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:25:45.103] [INFO] cheese - inserting 1000 documents. first: Chicomecoatl and last: Polk County, Texas -[2018-02-13T00:25:45.134] [INFO] cheese - inserting 1000 documents. first: Antony James and last: Wikipedia:United States Education Program/Courses/Brain and Behavior (Lisa Lu) -[2018-02-13T00:25:45.136] [INFO] cheese - inserting 1000 documents. first: Krzyż, Łódź Voivodeship and last: Katsiaryna Muliuk -[2018-02-13T00:25:45.170] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:45.176] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:25:45.179] [INFO] cheese - inserting 1000 documents. first: Ditrigona inconspicua and last: Template:Did you know nominations/Every Last Child -[2018-02-13T00:25:45.191] [INFO] cheese - batch complete in: 1.715 secs -[2018-02-13T00:25:45.252] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:25:45.257] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Adore (album)/archive1 and last: Rally for the Progressive Alternative -[2018-02-13T00:25:45.313] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:45.341] [INFO] cheese - inserting 1000 documents. first: Stopce and last: Srpska Kuća -[2018-02-13T00:25:45.384] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:25:45.547] [INFO] cheese - inserting 1000 documents. first: Category:Footballers in Montenegro and last: Koide Ichijūrō -[2018-02-13T00:25:45.575] [INFO] cheese - inserting 1000 documents. first: Maryland Heights Expressway and last: Category:1931 in Mexican sports -[2018-02-13T00:25:45.582] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:25:45.599] [INFO] cheese - inserting 1000 documents. first: Plac Wilsona (metro station) and last: The Black Superman -[2018-02-13T00:25:45.619] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:45.630] [INFO] cheese - inserting 1000 documents. first: Giorvis Duvergel and last: Template:Fb competition 2008-09 FA Youth Cup -[2018-02-13T00:25:45.648] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:25:45.671] [INFO] cheese - inserting 1000 documents. first: Basotho Congress Party and last: Turkish Foreign Ministry -[2018-02-13T00:25:45.687] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:25:45.717] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:45.928] [INFO] cheese - inserting 1000 documents. first: Starac and last: Recognition of states -[2018-02-13T00:25:45.939] [INFO] cheese - inserting 1000 documents. first: Famous in Love and last: Category:Hotels in Gilgit-Baltistan -[2018-02-13T00:25:45.964] [INFO] cheese - inserting 1000 documents. first: Get Tough: The Best of the Del-Lords and last: Straža, Straža -[2018-02-13T00:25:45.962] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:45.986] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:46.010] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:25:46.064] [INFO] cheese - inserting 1000 documents. first: File:Logo trombi.png and last: Leopoldów, Łęczna County -[2018-02-13T00:25:46.084] [INFO] cheese - inserting 1000 documents. first: NPEC and last: Southern pigmy rattlesnake -[2018-02-13T00:25:46.108] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:46.116] [INFO] cheese - inserting 1000 documents. first: Black Superman and last: Alburwic -[2018-02-13T00:25:46.142] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:25:46.188] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:46.325] [INFO] cheese - inserting 1000 documents. first: Jenifer Benitez and last: Angel Mullera -[2018-02-13T00:25:46.343] [INFO] cheese - inserting 1000 documents. first: Category:Factory Records artists and last: Morgny-la-Pommeraye, France -[2018-02-13T00:25:46.349] [INFO] cheese - inserting 1000 documents. first: Prathista and last: Shibei Tuhua -[2018-02-13T00:25:46.362] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:25:46.394] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:25:46.410] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:25:46.450] [INFO] cheese - inserting 1000 documents. first: False etymologies and last: Category:Victims of aviation accidents or incidents in Mali -[2018-02-13T00:25:46.488] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:46.543] [INFO] cheese - inserting 1000 documents. first: Sacerdotal state and last: Rooks Creek Township, Livingston County, Illinois -[2018-02-13T00:25:46.596] [INFO] cheese - inserting 1000 documents. first: Cliff Robinson (artist) and last: Virchow-Seckel syndrome -[2018-02-13T00:25:46.596] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:46.655] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:25:46.747] [INFO] cheese - inserting 1000 documents. first: Saint-Martin-du-Vivier, France and last: The Two of Us -[2018-02-13T00:25:46.787] [INFO] cheese - inserting 1000 documents. first: These Electric Pages Have Been Unplugged and last: Wikipedia:Meetup/Hobart/2 -[2018-02-13T00:25:46.793] [INFO] cheese - inserting 1000 documents. first: Qujiang Hakka-Shibei Shaoguan Tuhua language and last: Portal:Trains/Did you know/April 2015 -[2018-02-13T00:25:46.794] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:25:46.813] [INFO] cheese - inserting 1000 documents. first: Perła and last: Klimkówka -[2018-02-13T00:25:46.835] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:25:46.838] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:46.857] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:25:47.016] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2007 March 1 and last: Battle of Goito -[2018-02-13T00:25:47.084] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:25:47.145] [INFO] cheese - inserting 1000 documents. first: Surubí and last: Rigolets -[2018-02-13T00:25:47.194] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:25:47.254] [INFO] cheese - inserting 1000 documents. first: Javier Aguirre (director) and last: Category:Iowa politicians convicted of crimes -[2018-02-13T00:25:47.259] [INFO] cheese - inserting 1000 documents. first: Derek Theler and last: Pozhoga -[2018-02-13T00:25:47.263] [INFO] cheese - inserting 1000 documents. first: Wohyń and last: File:Boca-logo.jpg -[2018-02-13T00:25:47.270] [INFO] cheese - inserting 1000 documents. first: Template:S-line/TER Nord-Pas-de-Calais left/21 and last: File:Skank Siderado.jpg -[2018-02-13T00:25:47.308] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:25:47.310] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:25:47.318] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:25:47.355] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:25:47.396] [INFO] cheese - inserting 1000 documents. first: Pecos County, Texas and last: Port Laoise -[2018-02-13T00:25:47.396] [INFO] cheese - inserting 1000 documents. first: Lincoln County School District and last: Murcia (autonomous community) -[2018-02-13T00:25:47.430] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:25:47.507] [INFO] cheese - batch complete in: 2.316 secs -[2018-02-13T00:25:47.531] [INFO] cheese - inserting 1000 documents. first: Margaret II of Flanders and last: File:Tuliptree Sign.jpg -[2018-02-13T00:25:47.580] [INFO] cheese - inserting 1000 documents. first: File:Trouble with the Curve Poster.jpg and last: Crofts Baronets -[2018-02-13T00:25:47.570] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:25:47.612] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:25:47.628] [INFO] cheese - inserting 1000 documents. first: Kamienica, Limanowa County and last: Wola Wereszczyńska -[2018-02-13T00:25:47.645] [INFO] cheese - inserting 1000 documents. first: Ma Fu-hsiang and last: Saša Božičič -[2018-02-13T00:25:47.669] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:25:47.694] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:25:47.794] [INFO] cheese - inserting 1000 documents. first: Petit Computer 3 and last: Lamb succory -[2018-02-13T00:25:47.814] [INFO] cheese - inserting 1000 documents. first: The Model and the Star and last: Nayar clan -[2018-02-13T00:25:47.840] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:25:47.865] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:25:47.879] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Takes America/Waldwick/2012 and last: Mackintosh Baronets -[2018-02-13T00:25:47.910] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:25:47.946] [INFO] cheese - inserting 1000 documents. first: Hevaahulhudhoo and last: The Last Days -[2018-02-13T00:25:48.016] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:48.039] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Łabowa and last: Iran Aseman Airlines Flight 6875 -[2018-02-13T00:25:48.091] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Jay Joyce and last: Category:1932 in gymnastics -[2018-02-13T00:25:48.091] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:25:48.126] [INFO] cheese - batch complete in: 0.216 secs -[2018-02-13T00:25:48.166] [INFO] cheese - inserting 1000 documents. first: Caracul and last: Omair Ahmad -[2018-02-13T00:25:48.170] [INFO] cheese - inserting 1000 documents. first: Cricketvine and last: Dr Mohammed Ibrahim -[2018-02-13T00:25:48.226] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:48.240] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:25:48.404] [INFO] cheese - inserting 1000 documents. first: Off-Off Broadway and last: SvR 2007 -[2018-02-13T00:25:48.483] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:25:48.618] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Lockheed Leamington and last: Template:Essays in a nutshell -[2018-02-13T00:25:48.661] [INFO] cheese - inserting 1000 documents. first: Przezwody, Lesser Poland Voivodeship and last: Wikipedia:Featured list candidates/List of numbered highways in Washington -[2018-02-13T00:25:48.672] [INFO] cheese - inserting 1000 documents. first: Dr. Mohammad Ibrahim and last: Porsche PFM N03 -[2018-02-13T00:25:48.695] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:25:48.754] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:25:48.760] [INFO] cheese - inserting 1000 documents. first: Vermont Square, Los Angeles and last: File:Engineer bridge demolition (Korean War).jpg -[2018-02-13T00:25:48.817] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:25:48.958] [INFO] cheese - inserting 1000 documents. first: Category:Pompilidae and last: Stork margarine -[2018-02-13T00:25:48.978] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:25:49.020] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:25:49.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Signposts and last: Mary Swander writer -[2018-02-13T00:25:49.304] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:25:49.366] [INFO] cheese - inserting 1000 documents. first: File:Somji-small.jpg and last: Groń, Tatra County -[2018-02-13T00:25:49.366] [INFO] cheese - inserting 1000 documents. first: International Day of Happiness and last: 2012-13 Texas Longhorns men's basketball team -[2018-02-13T00:25:49.416] [INFO] cheese - inserting 1000 documents. first: Ralph Peter Goldston and last: Now That We're Men -[2018-02-13T00:25:49.441] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:25:49.458] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:25:49.489] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:25:49.664] [INFO] cheese - inserting 1000 documents. first: Squadron vice-admiral and last: Economic Development in Schenectady New York -[2018-02-13T00:25:49.757] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:25:49.877] [INFO] cheese - inserting 1000 documents. first: Pontifical Bolivarian University and last: BBC Wildlife (magazine) -[2018-02-13T00:25:49.934] [INFO] cheese - inserting 1000 documents. first: Hensley Township, Champaign County, Illinois and last: File:Tinkgi2me500.JPG -[2018-02-13T00:25:49.977] [INFO] cheese - inserting 1000 documents. first: Chac Uayab Xoc and last: Crofton Park, London, England -[2018-02-13T00:25:49.976] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:25:50.043] [INFO] cheese - inserting 1000 documents. first: Members of the Western Australian Legislative Council, 1989–1993 and last: Lioré et Olivier LéO 21 -[2018-02-13T00:25:50.071] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:25:50.074] [INFO] cheese - inserting 1000 documents. first: Thalia Mara and last: Sturnira sorianoi -[2018-02-13T00:25:50.080] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:25:50.127] [INFO] cheese - inserting 1000 documents. first: Category:Football at the 1964 Summer Olympics and last: Ministere Francais de l’Education Nationale -[2018-02-13T00:25:50.153] [INFO] cheese - batch complete in: 2.646 secs -[2018-02-13T00:25:50.154] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:25:50.203] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:25:50.370] [INFO] cheese - inserting 1000 documents. first: John Lawes and last: 56th Brigade (disambiguation) -[2018-02-13T00:25:50.433] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:25:50.456] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Category-article-count and last: Jarosławice, Świętokrzyskie Voivodeship -[2018-02-13T00:25:50.494] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:25:50.496] [INFO] cheese - inserting 1000 documents. first: Kalateh-ye Molla, Meyami and last: Miltiadis -[2018-02-13T00:25:50.535] [INFO] cheese - inserting 1000 documents. first: Federal Tax Identification Number and last: Category:Canadian university and college rectors -[2018-02-13T00:25:50.566] [INFO] cheese - inserting 1000 documents. first: Amanda Mallory and last: File:Slatta-crosscountry.jpg -[2018-02-13T00:25:50.569] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:50.574] [INFO] cheese - inserting 1000 documents. first: File:Freeland Community School District logo.png and last: Chennai Coimbatore Shatabdi Express -[2018-02-13T00:25:50.601] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:25:50.624] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:50.629] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:25:50.837] [INFO] cheese - inserting 1000 documents. first: Norris L. Einertson and last: Gare de Saint-Germain-en-Laye-Grande Ceinture -[2018-02-13T00:25:50.865] [INFO] cheese - inserting 1000 documents. first: File:Mount Barker High School logo.jpg and last: File:Lichfield City F.C. logo.png -[2018-02-13T00:25:50.875] [INFO] cheese - inserting 1000 documents. first: Kargów and last: Porąbki, Kielce County -[2018-02-13T00:25:50.877] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:50.906] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:25:50.918] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:25:50.954] [INFO] cheese - inserting 1000 documents. first: File:Davidlowrendezvous.png and last: Bert Broer -[2018-02-13T00:25:50.992] [INFO] cheese - inserting 1000 documents. first: WP Diamonds and last: Excellency over the Masses -[2018-02-13T00:25:50.999] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:25:51.030] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:51.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teenage phsycology and last: Heartland Flyer (Amtrak) -[2018-02-13T00:25:51.186] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:25:51.234] [INFO] cheese - inserting 1000 documents. first: Thierberg (Vogtland) and last: US Post Office-Hyattsville Main -[2018-02-13T00:25:51.252] [INFO] cheese - inserting 1000 documents. first: Category:People murdered in the United States and last: Category:Military templates by country -[2018-02-13T00:25:51.262] [INFO] cheese - inserting 1000 documents. first: Pride of Texas and last: Stainand colour -[2018-02-13T00:25:51.266] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:25:51.286] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:51.302] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:25:51.344] [INFO] cheese - inserting 1000 documents. first: Template:1963 AFL Eastern standings and last: Johan Gustafson (kidnap victim) -[2018-02-13T00:25:51.380] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:25:51.399] [INFO] cheese - inserting 1000 documents. first: List of i-schools and last: NY 170 -[2018-02-13T00:25:51.447] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:51.579] [INFO] cheese - inserting 1000 documents. first: Frank Caplan and last: Category:Mexican people of African descent -[2018-02-13T00:25:51.593] [INFO] cheese - inserting 1000 documents. first: Rembów, Świętokrzyskie Voivodeship and last: Wierzchowiny, Podkarpackie Voivodeship -[2018-02-13T00:25:51.601] [INFO] cheese - inserting 1000 documents. first: Shao Jiang and last: Lord Boothby -[2018-02-13T00:25:51.633] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:25:51.618] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:25:51.689] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:25:51.740] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Sinoadapis and last: Template:Did you know nominations/Procambarus natchitochae -[2018-02-13T00:25:51.754] [INFO] cheese - inserting 1000 documents. first: Staynand colour and last: Category:1960s establishments in Rwanda -[2018-02-13T00:25:51.786] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:51.835] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:51.912] [INFO] cheese - inserting 1000 documents. first: Darlene Chapinni and last: Maviddapuram -[2018-02-13T00:25:51.965] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:25:52.023] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Kazakhstan to South Korea and last: Bagirovkend -[2018-02-13T00:25:52.078] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:25:52.135] [INFO] cheese - inserting 1000 documents. first: Category:Mexican people of Arab descent and last: Ust-Bol'shereckiy District -[2018-02-13T00:25:52.157] [INFO] cheese - inserting 1000 documents. first: Kevin Gilbert (disambiguation) and last: Needmore, Mississippi -[2018-02-13T00:25:52.231] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:25:52.256] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:52.268] [INFO] cheese - inserting 1000 documents. first: Element 93 and last: Khazaran, Khazaria -[2018-02-13T00:25:52.329] [INFO] cheese - inserting 1000 documents. first: Sassanian army and last: Mars Rovers -[2018-02-13T00:25:52.340] [INFO] cheese - inserting 1000 documents. first: Category:1980s establishments in Rwanda and last: Karl Markt -[2018-02-13T00:25:52.384] [INFO] cheese - batch complete in: 2.231 secs -[2018-02-13T00:25:52.396] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:25:52.419] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:25:52.463] [INFO] cheese - inserting 1000 documents. first: Ravensthorpe Airport and last: Szentábrahám -[2018-02-13T00:25:52.512] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:25:52.584] [INFO] cheese - inserting 1000 documents. first: Bagry and last: Category:Olympic alpine skiers of Egypt -[2018-02-13T00:25:52.642] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:25:52.670] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gabriel Brown (actor) and last: Amanush 2 -[2018-02-13T00:25:52.671] [INFO] cheese - inserting 1000 documents. first: Ust-Bol'sherecki District and last: Alliance of Digital Humanities Organizations -[2018-02-13T00:25:52.717] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:25:52.726] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:52.907] [INFO] cheese - inserting 1000 documents. first: Category:2010–11 W-League by team and last: Tandy stores -[2018-02-13T00:25:52.931] [INFO] cheese - inserting 1000 documents. first: Freddie (video game character) and last: File:Thescore.jpg -[2018-02-13T00:25:52.952] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:25:52.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rosetta Stoned and last: Tkachenko Heorhy -[2018-02-13T00:25:52.992] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:25:53.040] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:25:53.061] [INFO] cheese - inserting 1000 documents. first: Category:Melipotis and last: Category:Dinosaur fossils -[2018-02-13T00:25:53.081] [INFO] cheese - inserting 1000 documents. first: Template:F1 driver/doc and last: Night Winds -[2018-02-13T00:25:53.099] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:25:53.117] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/replicaestores.com and last: Cooperative Correspondence Club -[2018-02-13T00:25:53.131] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:53.161] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:53.299] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Yemeni people and last: Category:Rugby league teams in Brisbane -[2018-02-13T00:25:53.338] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:53.400] [INFO] cheese - inserting 1000 documents. first: ASCII Media Works manga and last: File:Dedman College of H&S.png -[2018-02-13T00:25:53.402] [INFO] cheese - inserting 1000 documents. first: Rose Museum and last: Banazur -[2018-02-13T00:25:53.413] [INFO] cheese - inserting 1000 documents. first: Category:Religion in Pakistan and last: Wikipedia:Articles for deletion/Darth Glentract -[2018-02-13T00:25:53.432] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:25:53.434] [INFO] cheese - inserting 1000 documents. first: Song stuck in your head and last: Category:Girls' schools in Trinidad and Tobago -[2018-02-13T00:25:53.437] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:25:53.473] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:25:53.484] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:25:53.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Doc Marten Skins and last: Mayor of Helsinki -[2018-02-13T00:25:53.630] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:25:53.761] [INFO] cheese - inserting 1000 documents. first: M-Tag and last: Tyson DeVree -[2018-02-13T00:25:53.785] [INFO] cheese - inserting 1000 documents. first: Category:Girls' schools in Iraq and last: 1977-78 in Turkish football -[2018-02-13T00:25:53.791] [INFO] cheese - inserting 1000 documents. first: Template:Psf and last: Template:2007-08 Biathlon World Cup -[2018-02-13T00:25:53.813] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:25:53.815] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:25:53.844] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:25:53.866] [INFO] cheese - inserting 1000 documents. first: Alfred Effiong and last: Ana Barros -[2018-02-13T00:25:53.911] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:25:53.921] [INFO] cheese - inserting 1000 documents. first: Nicholas Clapton and last: KWFP -[2018-02-13T00:25:53.942] [INFO] cheese - inserting 1000 documents. first: Double-yolked egg and last: Rye Patch Dam -[2018-02-13T00:25:53.966] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:25:53.997] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:25:54.108] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Featured prefecture/1 and last: Bursumlu -[2018-02-13T00:25:54.112] [INFO] cheese - inserting 1000 documents. first: Interbay, Tampa, Florida and last: Wikipedia:Possibly unfree files/2010 July 11 -[2018-02-13T00:25:54.141] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:25:54.163] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:25:54.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Bronwyn Oliver/archive1 and last: Qahej-e Pa'in -[2018-02-13T00:25:54.216] [INFO] cheese - inserting 1000 documents. first: Terminal complement complex and last: La Granadera -[2018-02-13T00:25:54.222] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:54.251] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:25:54.288] [INFO] cheese - inserting 1000 documents. first: Balanjar, Khazaria and last: Realencyclopädie der classischen Altertumswissenschaft -[2018-02-13T00:25:54.327] [INFO] cheese - inserting 1000 documents. first: Motorola 68851 and last: Category:Russian rock singers -[2018-02-13T00:25:54.361] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:25:54.371] [INFO] cheese - batch complete in: 1.987 secs -[2018-02-13T00:25:54.425] [INFO] cheese - inserting 1000 documents. first: File:Wag The Dog Poster.jpg and last: Wikipedia:Votes for deletion/Log/2005 July 4 -[2018-02-13T00:25:54.470] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2010 July 11 and last: Category:Association football clubs 1930–31 season -[2018-02-13T00:25:54.481] [INFO] cheese - inserting 1000 documents. first: Moises Matias de Andrade and last: Whitemans green -[2018-02-13T00:25:54.509] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:25:54.516] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:54.531] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:54.606] [INFO] cheese - inserting 1000 documents. first: Chris Wilson (golfer) and last: John de Foix, Captal de Buch -[2018-02-13T00:25:54.661] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:25:54.713] [INFO] cheese - inserting 1000 documents. first: Portal:Cuba/Did you know/79 and last: RapidMind -[2018-02-13T00:25:54.754] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:54.836] [INFO] cheese - inserting 1000 documents. first: Everyone Nose (All The Girls Standing In The Line For The Bathroom) and last: Template:GEOnetdab/doc -[2018-02-13T00:25:54.883] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:54.940] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hybrid offshore wind energy and last: Wikipedia:Articles for deletion/Vardough -[2018-02-13T00:25:54.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Log/2005 July 3 and last: Pornchai Thongburan -[2018-02-13T00:25:54.978] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:54.979] [INFO] cheese - inserting 1000 documents. first: Steggles and last: Category:Private Practice task force -[2018-02-13T00:25:54.999] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:55.035] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:55.127] [INFO] cheese - inserting 1000 documents. first: Category:Guam politicians convicted of crimes and last: Valea Sasului River (disambiguation) -[2018-02-13T00:25:55.144] [INFO] cheese - inserting 1000 documents. first: Ulaanbataar and last: Juraj Červenák -[2018-02-13T00:25:55.185] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:25:55.190] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:55.296] [INFO] cheese - inserting 1000 documents. first: Dzhamilli and last: Sedley Cudmore -[2018-02-13T00:25:55.355] [INFO] cheese - inserting 1000 documents. first: Mark Messmer and last: 2007 Indy Japan 300 -[2018-02-13T00:25:55.444] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:25:55.462] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:55.555] [INFO] cheese - inserting 1000 documents. first: File:Environmental Defence Canada Logo.jpg and last: Sergey Bestuchev -[2018-02-13T00:25:55.641] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for comment/Zephram Stark and last: Flexor carpi ulnaris muscle -[2018-02-13T00:25:55.667] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:25:55.772] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:25:55.909] [INFO] cheese - inserting 1000 documents. first: Seymour H. Person and last: Minister of Trade -[2018-02-13T00:25:55.957] [INFO] cheese - inserting 1000 documents. first: Category:Canadian soccer clubs 1975 season and last: Portal:Poland/Selected picture/67 -[2018-02-13T00:25:55.975] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:25:56.095] [INFO] cheese - inserting 1000 documents. first: David Main and last: Template:Infobox deputy first minister -[2018-02-13T00:25:56.112] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:25:56.121] [INFO] cheese - inserting 1000 documents. first: IRUN and last: File:Don't Blame Me.jpg -[2018-02-13T00:25:56.174] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:25:56.227] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:25:56.237] [INFO] cheese - inserting 1000 documents. first: Haq ol Khvajeh and last: Category:1940s in French Togoland -[2018-02-13T00:25:56.294] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:25:56.452] [INFO] cheese - inserting 1000 documents. first: The New Scooby and Scrappy-Doo Show and last: Carl Zimmer -[2018-02-13T00:25:56.474] [INFO] cheese - inserting 1000 documents. first: Cornerstone Festival and last: The Plimsouls -[2018-02-13T00:25:56.506] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:25:56.513] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2007 March 3 and last: Category:Rock formations of New Hampshire -[2018-02-13T00:25:56.538] [INFO] cheese - inserting 1000 documents. first: Template:Infobox deputy prime minister and last: File:TrevorRabin90124.jpg -[2018-02-13T00:25:56.548] [INFO] cheese - inserting 1000 documents. first: Poghos Galstyan and last: Eucalyptus longifolia -[2018-02-13T00:25:56.564] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:25:56.568] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Nic Nac and last: The Wolf Song -[2018-02-13T00:25:56.570] [INFO] cheese - batch complete in: 2.199 secs -[2018-02-13T00:25:56.595] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:56.607] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:25:56.617] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:25:56.630] [INFO] cheese - inserting 1000 documents. first: Category:1950s in French Togoland and last: Pitt-Greensburg -[2018-02-13T00:25:56.672] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:56.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Harbhajan Singh and last: Category:Srikakulam district -[2018-02-13T00:25:56.907] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:25:56.923] [INFO] cheese - inserting 1000 documents. first: Michael Chowen and last: Brühwurst -[2018-02-13T00:25:56.925] [INFO] cheese - inserting 1000 documents. first: Tarsnap and last: Ю́рий Васи́льевич Про́хоров -[2018-02-13T00:25:56.929] [INFO] cheese - inserting 1000 documents. first: William J. Hamblin and last: Human rights of Kurdish people -[2018-02-13T00:25:56.949] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:25:56.950] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:25:56.963] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:56.996] [INFO] cheese - inserting 1000 documents. first: Up in the Clouds and last: File:Best of Both Worlds Davina.jpg -[2018-02-13T00:25:57.000] [INFO] cheese - inserting 1000 documents. first: Worldloppet and last: Comeback Player of the Year Award -[2018-02-13T00:25:57.043] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:57.062] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:25:57.267] [INFO] cheese - inserting 1000 documents. first: Trangie and last: Qaf (letter) -[2018-02-13T00:25:57.285] [INFO] cheese - inserting 1000 documents. first: History of computer art and last: Ceferabad -[2018-02-13T00:25:57.309] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:25:57.323] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:57.364] [INFO] cheese - inserting 1000 documents. first: Peter Holmes (motorcycle racer) and last: Category:Infrastructure completed in 1953 -[2018-02-13T00:25:57.402] [INFO] cheese - inserting 1000 documents. first: Hired armed ship Charles and last: Luke gillespie -[2018-02-13T00:25:57.405] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:57.423] [INFO] cheese - inserting 1000 documents. first: Category:Antigua and Barbuda people of American descent and last: Domaine Chasse Bili Uere -[2018-02-13T00:25:57.428] [INFO] cheese - inserting 1000 documents. first: Marvelman and last: Nagas -[2018-02-13T00:25:57.447] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:25:57.486] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:25:57.498] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:25:57.648] [INFO] cheese - inserting 1000 documents. first: Caleb P. Bennett and last: P. V. Narasimharao -[2018-02-13T00:25:57.758] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:25:57.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2008 August 29 and last: Chobanabdally -[2018-02-13T00:25:57.790] [INFO] cheese - inserting 1000 documents. first: Neolithic discontinuity theory and last: Purdue University at Fort Wayne -[2018-02-13T00:25:57.855] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:57.855] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:25:57.907] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Robeson County, North Carolina and last: Rowland Main Street Historic District -[2018-02-13T00:25:57.975] [INFO] cheese - inserting 1000 documents. first: Second A. K. Antony ministry and last: Igor Vujanovic -[2018-02-13T00:25:58.004] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:25:58.025] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:25:58.045] [INFO] cheese - inserting 1000 documents. first: List of places in northumberland and last: Service Electric Cable -[2018-02-13T00:25:58.110] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:25:58.232] [INFO] cheese - inserting 1000 documents. first: Cohranli and last: Paul Pelletier -[2018-02-13T00:25:58.247] [INFO] cheese - inserting 1000 documents. first: Template:CodeFederalRegulations and last: Wi fi -[2018-02-13T00:25:58.248] [INFO] cheese - inserting 1000 documents. first: Indiana University at Indianapolis and last: Leccinum atrostipitatum -[2018-02-13T00:25:58.270] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:58.302] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:25:58.310] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:25:58.358] [INFO] cheese - inserting 1000 documents. first: Minister of Irrigation, Power and Energy (Sri Lanka) and last: Linguistic substrate -[2018-02-13T00:25:58.386] [INFO] cheese - inserting 1000 documents. first: 2003 Priority Telecom Dutch Open and last: Portal:University of Oxford/Selected panorama/Layout -[2018-02-13T00:25:58.401] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:58.435] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:25:58.437] [INFO] cheese - inserting 1000 documents. first: Ballade Number 2 in F major and last: Second Labour Government of New Zealand -[2018-02-13T00:25:58.499] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:25:58.654] [INFO] cheese - inserting 1000 documents. first: Culture of Mangalorean Catholics and last: File:Deuteronomium - From the Midst of the Battle.jpg -[2018-02-13T00:25:58.658] [INFO] cheese - inserting 1000 documents. first: Ananta and last: Richmond Range National Park -[2018-02-13T00:25:58.663] [INFO] cheese - inserting 1000 documents. first: Sant Joan de Labritja (village) and last: It's Only Love (Tommy James and the Shondells song) -[2018-02-13T00:25:58.696] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:25:58.714] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:25:58.768] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T00:25:58.815] [INFO] cheese - inserting 1000 documents. first: Aetna Township, Logan County, Illinois and last: Georg Wilhelm -[2018-02-13T00:25:58.821] [INFO] cheese - inserting 1000 documents. first: Hulst (municipality) and last: UBM Medica -[2018-02-13T00:25:58.854] [INFO] cheese - inserting 1000 documents. first: Charalambos Simopoulos and last: Nadporuchik -[2018-02-13T00:25:58.877] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:25:58.879] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:25:58.901] [INFO] cheese - inserting 1000 documents. first: L. S. Mason and last: Public reserve -[2018-02-13T00:25:58.939] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:25:58.964] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:59.041] [INFO] cheese - inserting 1000 documents. first: Dread Beat an' Blood and last: C Company, 52nd Infantry Regiment (Anti-Tank) -[2018-02-13T00:25:59.068] [INFO] cheese - inserting 1000 documents. first: Category:Environmental issues in New York (state) and last: John Gerzema -[2018-02-13T00:25:59.077] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:59.107] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:59.214] [INFO] cheese - inserting 1000 documents. first: Symplocos esquirolii and last: Ken Wannberg -[2018-02-13T00:25:59.231] [INFO] cheese - inserting 1000 documents. first: University Gardens High School and last: James Burrough -[2018-02-13T00:25:59.274] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:59.305] [INFO] cheese - inserting 1000 documents. first: Vanity Press and last: List of gelechiid genera: X -[2018-02-13T00:25:59.329] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:25:59.341] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:25:59.397] [INFO] cheese - inserting 1000 documents. first: University of California–Merced and last: Esk Valley Railway -[2018-02-13T00:25:59.446] [INFO] cheese - inserting 1000 documents. first: Soleilmoon and last: Şurtan -[2018-02-13T00:25:59.505] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:25:59.542] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:25:59.606] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Account suspensions/Fenian Swine. and last: Rational singularity -[2018-02-13T00:25:59.691] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:25:59.712] [INFO] cheese - inserting 1000 documents. first: Peronea fulvocristana and last: Atypon -[2018-02-13T00:25:59.778] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:25:59.803] [INFO] cheese - inserting 1000 documents. first: Tyrol knapweed and last: Fossil fuel divestment movement -[2018-02-13T00:25:59.850] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:59.875] [INFO] cheese - inserting 1000 documents. first: File:Kundun1.jpg and last: Template:Pan American Games Boxing -[2018-02-13T00:25:59.894] [INFO] cheese - inserting 1000 documents. first: Roseneath Theatre and last: Lord High Sheriff -[2018-02-13T00:25:59.930] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:25:59.966] [INFO] cheese - inserting 1000 documents. first: Der Dritte and last: Education in Reverse -[2018-02-13T00:25:59.977] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:26:00.046] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:00.057] [INFO] cheese - inserting 1000 documents. first: Royal National Park and last: Jack Parsons (rocket engineer) -[2018-02-13T00:26:00.149] [INFO] cheese - batch complete in: 1.38 secs -[2018-02-13T00:26:00.229] [INFO] cheese - inserting 1000 documents. first: Scottish ethnicity and last: Category:Schools in Guyana -[2018-02-13T00:26:00.238] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Østerbros BK and last: Template:Taxonomy/Asterales -[2018-02-13T00:26:00.273] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:00.275] [INFO] cheese - inserting 1000 documents. first: Michelle Suárez Bértora and last: Jerron Paxton -[2018-02-13T00:26:00.287] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:26:00.333] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:26:00.396] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Did you know/155 and last: Jimmy James (Singer) -[2018-02-13T00:26:00.400] [INFO] cheese - inserting 1000 documents. first: Arche (mythology) and last: Template:Attached KML/Interstate 229 (South Dakota) -[2018-02-13T00:26:00.432] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:00.440] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:26:00.685] [INFO] cheese - inserting 1000 documents. first: Birdu and last: Mayoora -[2018-02-13T00:26:00.735] [INFO] cheese - inserting 1000 documents. first: Category:American bibliophiles and last: Mines and Minerals (Development and Regulation) Amendment Bill, 2015 -[2018-02-13T00:26:00.740] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:26:00.785] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:00.836] [INFO] cheese - inserting 1000 documents. first: Electric fiddle and last: Child day care center -[2018-02-13T00:26:00.837] [INFO] cheese - inserting 1000 documents. first: Chaffyn and last: The Kellys of Tobruk -[2018-02-13T00:26:00.863] [INFO] cheese - inserting 1000 documents. first: Portage Point Inn and last: The Country Gentleman -[2018-02-13T00:26:00.870] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:00.894] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:26:00.902] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:26:00.935] [INFO] cheese - inserting 1000 documents. first: Category:Education in Guyana and last: Player Character Record Sheets -[2018-02-13T00:26:00.984] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:26:01.054] [INFO] cheese - inserting 1000 documents. first: Perquisite (musician) and last: Robert Dean Clatterbuck -[2018-02-13T00:26:01.082] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:26:01.166] [INFO] cheese - inserting 1000 documents. first: Portal:Cuba/Did you know/94 and last: Portal:Caribbean/Selected picture/10 -[2018-02-13T00:26:01.175] [INFO] cheese - inserting 1000 documents. first: Cal State–Humboldt and last: Fabrice Olinga -[2018-02-13T00:26:01.192] [INFO] cheese - inserting 1000 documents. first: Hong Kong First Division League 2005–06 and last: Category:Protected areas of Burundi -[2018-02-13T00:26:01.209] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:26:01.217] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:26:01.240] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:01.289] [INFO] cheese - inserting 1000 documents. first: W-Y-S-I-W-Y-G and last: Katheryn Elizabeth Hudson -[2018-02-13T00:26:01.347] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:26:01.367] [INFO] cheese - inserting 1000 documents. first: Johnny Lozada and last: Shorter, Alabama -[2018-02-13T00:26:01.388] [INFO] cheese - inserting 1000 documents. first: Talking-head and last: Tachilek -[2018-02-13T00:26:01.407] [INFO] cheese - inserting 1000 documents. first: Mimozethes angula and last: Category:Compsosomatini -[2018-02-13T00:26:01.436] [INFO] cheese - batch complete in: 1.287 secs -[2018-02-13T00:26:01.479] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:01.478] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:26:01.541] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2012-08-22 and last: Category:Aviators from Iowa -[2018-02-13T00:26:01.604] [INFO] cheese - inserting 1000 documents. first: Leandro Antonio Martínez and last: Ángel Custodio Quintana -[2018-02-13T00:26:01.622] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:26:01.679] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:01.701] [INFO] cheese - inserting 1000 documents. first: Robert Bradford (NI politician) and last: Tupelo, MS μSA -[2018-02-13T00:26:01.769] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:01.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2008, Aug 31 and last: America a Prophecy -[2018-02-13T00:26:01.875] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:26:01.913] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Effigy (album) and last: José da Avé-Maria Leite da Costa e Silva -[2018-02-13T00:26:01.957] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:01.981] [INFO] cheese - inserting 1000 documents. first: Template:Dario Fo and last: Category:2010s establishments in El Salvador -[2018-02-13T00:26:01.986] [INFO] cheese - inserting 1000 documents. first: Raytheon Intelligence, Information and Services and last: M. K. Čiurlionis -[2018-02-13T00:26:02.030] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:02.038] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:26:02.094] [INFO] cheese - inserting 1000 documents. first: Gimme That (Ciara song) and last: Errinundra plum-pine -[2018-02-13T00:26:02.151] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:02.236] [INFO] cheese - inserting 1000 documents. first: Seremban railway station and last: Speculative mathematics -[2018-02-13T00:26:02.246] [INFO] cheese - inserting 1000 documents. first: Belaya River (Imandra) and last: 30BC -[2018-02-13T00:26:02.275] [INFO] cheese - inserting 1000 documents. first: Portal:Flodden/Ecomuseum Sites/5 and last: Javier Hernández (footballer, born 1988) -[2018-02-13T00:26:02.278] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:26:02.280] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:26:02.313] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:02.404] [INFO] cheese - inserting 1000 documents. first: List of Historic Sites of Japan (Fukushima) and last: John Noseworthy (disambiguation) -[2018-02-13T00:26:02.440] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:02.445] [INFO] cheese - inserting 1000 documents. first: Blue ice (aviation) and last: Caleys -[2018-02-13T00:26:02.500] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:02.506] [INFO] cheese - inserting 1000 documents. first: Rev. Fr. Mariampillai Sarathjeevan and last: Category:Species described in 1769 -[2018-02-13T00:26:02.547] [INFO] cheese - inserting 1000 documents. first: 28BC and last: Wycliffe and the Cycle of Death -[2018-02-13T00:26:02.570] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:26:02.594] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:26:02.632] [INFO] cheese - inserting 1000 documents. first: The embryonic and prenatal development of the male reproductive system (human) and last: Wikipedia:Peer review/Well-made play/archive1 -[2018-02-13T00:26:02.666] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:02.688] [INFO] cheese - inserting 1000 documents. first: Tuskegee, Alabama and last: Aqueous solution -[2018-02-13T00:26:02.748] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T00:26:02.869] [INFO] cheese - inserting 1000 documents. first: Magomed Yevloyev and last: Sidekick '08 -[2018-02-13T00:26:02.873] [INFO] cheese - inserting 1000 documents. first: Csíkpálfalva and last: Line out -[2018-02-13T00:26:02.918] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:26:02.958] [INFO] cheese - inserting 1000 documents. first: Dame Grand Cross of the British Empire and last: Brian Chippendale -[2018-02-13T00:26:02.957] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:26:02.991] [INFO] cheese - inserting 1000 documents. first: Colin Williams (disambiguation) and last: File:Keep the Faith An Evening with Bon Jovi.jpg -[2018-02-13T00:26:03.059] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:26:03.081] [INFO] cheese - inserting 1000 documents. first: Hun lakhon lek and last: Aes Corp -[2018-02-13T00:26:03.092] [INFO] cheese - inserting 1000 documents. first: The encyclopedia Iranica and last: Tōkai earthquakes -[2018-02-13T00:26:03.062] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:26:03.157] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:26:03.166] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:03.283] [INFO] cheese - inserting 1000 documents. first: Template:Religious Radio Stations in Arizona and last: File:Audioslave - I Am The Highway.ogg -[2018-02-13T00:26:03.317] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:26:03.465] [INFO] cheese - inserting 1000 documents. first: Ovayok Territorial Park, Nunavut and last: Atlanta Union Station (1930) -[2018-02-13T00:26:03.496] [INFO] cheese - inserting 1000 documents. first: Occipital nerve and last: Wikipedia:Articles for deletion/Allison Moore (voice actress) -[2018-02-13T00:26:03.517] [INFO] cheese - inserting 1000 documents. first: Avalon High School and last: Idritsa -[2018-02-13T00:26:03.517] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:26:03.531] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:03.564] [INFO] cheese - inserting 1000 documents. first: Category:Honest Don's Records EPs and last: Wikipedia:Miscellany for deletion/User:Weaponbb7/Subpagetostopbickingovervenue/respectculturalrightsofreligion -[2018-02-13T00:26:03.567] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:26:03.593] [INFO] cheese - inserting 1000 documents. first: 2006-2007 roster (DTL EKA AEL) and last: Longitude 90 degrees E -[2018-02-13T00:26:03.607] [INFO] cheese - inserting 1000 documents. first: Treehorn's Treasure and last: ZF expression -[2018-02-13T00:26:03.607] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:03.639] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:26:03.672] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:26:03.873] [INFO] cheese - inserting 1000 documents. first: Political Corruption in Nigeria and last: Ed Loewe -[2018-02-13T00:26:03.901] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ornithogaleae and last: Beaver Creek (Split Rock Creek) -[2018-02-13T00:26:03.910] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:03.935] [INFO] cheese - inserting 1000 documents. first: Bubble Shooter and last: The Excursion (poem) -[2018-02-13T00:26:03.956] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:03.984] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:26:03.997] [INFO] cheese - inserting 1000 documents. first: Distilled water and last: Angels Camp, California -[2018-02-13T00:26:04.044] [INFO] cheese - inserting 1000 documents. first: Hales (disambiguation) and last: Wikipedia:Articles for deletion/Ron Shimshilashvili -[2018-02-13T00:26:04.057] [INFO] cheese - inserting 1000 documents. first: Tom Coates and last: Slavery Reparation Tax Credit -[2018-02-13T00:26:04.063] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T00:26:04.089] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:04.093] [INFO] cheese - inserting 1000 documents. first: Longitude 95 degrees E and last: Category:FL-Class UK Waterways articles -[2018-02-13T00:26:04.111] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:04.176] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:26:04.246] [INFO] cheese - inserting 1000 documents. first: Category:IDW Publishing titles and last: Laurel Micropolitan Area -[2018-02-13T00:26:04.278] [INFO] cheese - inserting 1000 documents. first: RCDP and last: Hot Springs sinkhole -[2018-02-13T00:26:04.286] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:26:04.312] [INFO] cheese - inserting 1000 documents. first: Category:Chinese people of Ivorian descent and last: Miles Store, Virginia -[2018-02-13T00:26:04.342] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:26:04.327] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:26:04.428] [INFO] cheese - inserting 1000 documents. first: File:Strast.jpeg and last: Argentine Naval Hydrographic Service -[2018-02-13T00:26:04.462] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:26:04.526] [INFO] cheese - inserting 1000 documents. first: Allan Heinburg and last: Night Skies -[2018-02-13T00:26:04.536] [INFO] cheese - inserting 1000 documents. first: Top wrap and last: Nicomen Mountain -[2018-02-13T00:26:04.550] [INFO] cheese - inserting 1000 documents. first: AutoGyro Cavalon and last: Garcetti v Ceballos -[2018-02-13T00:26:04.577] [INFO] cheese - batch complete in: 0.235 secs -[2018-02-13T00:26:04.583] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:26:04.587] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:26:04.664] [INFO] cheese - inserting 1000 documents. first: List of alphabets used by Turkic languages and last: Gwendoline Eastlake-Smith -[2018-02-13T00:26:04.697] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:26:04.744] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Transnistria and last: Nyingchi County -[2018-02-13T00:26:04.765] [INFO] cheese - inserting 1000 documents. first: Lily of Java and last: Paradise Cinemas (Kolkata) -[2018-02-13T00:26:04.786] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:04.795] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:26:04.840] [INFO] cheese - inserting 1000 documents. first: Edmond Modeste Lescarbault and last: Groppa -[2018-02-13T00:26:04.895] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:04.983] [INFO] cheese - inserting 1000 documents. first: Edward Wester Creal and last: File:TearsRollDown.jpg -[2018-02-13T00:26:05.021] [INFO] cheese - inserting 1000 documents. first: Bridge Street Bridge (disambiguation) and last: Mooru Guttu Ondu Sullu Ondu Nija -[2018-02-13T00:26:05.036] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:05.050] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:26:05.074] [INFO] cheese - inserting 1000 documents. first: Museum of Ho Chi Minh City and last: Earthquake Cocktail -[2018-02-13T00:26:05.121] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:05.145] [INFO] cheese - inserting 1000 documents. first: 1820 in Brazil and last: Howard Hughes and The Western Approaches -[2018-02-13T00:26:05.152] [INFO] cheese - inserting 1000 documents. first: Musée d'Orsay (Paris RER) and last: East London Transit -[2018-02-13T00:26:05.200] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:26:05.203] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:26:05.223] [INFO] cheese - inserting 1000 documents. first: Ünőmező and last: Donald Hankinson -[2018-02-13T00:26:05.255] [INFO] cheese - inserting 1000 documents. first: Imperial estates and last: Swift & Co. v United States -[2018-02-13T00:26:05.277] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:26:05.279] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:26:05.411] [INFO] cheese - inserting 1000 documents. first: File:Coilunnatural3.jpg and last: 1980 South American Championships – Singles -[2018-02-13T00:26:05.463] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:05.499] [INFO] cheese - inserting 1000 documents. first: Keith Brookman and last: Frank Woodruff Buckles -[2018-02-13T00:26:05.538] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:26:05.558] [INFO] cheese - inserting 1000 documents. first: Nhon Hoi Bridge and last: Hans Zorn -[2018-02-13T00:26:05.563] [INFO] cheese - inserting 1000 documents. first: Swift v Tyson and last: File:Somethin Bout Kreay Cover.jpg -[2018-02-13T00:26:05.588] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:26:05.589] [INFO] cheese - inserting 1000 documents. first: List of Cultural Properties of the Philippines in Tagbilaran and last: Chowara -[2018-02-13T00:26:05.604] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:26:05.649] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:26:05.847] [INFO] cheese - inserting 1000 documents. first: Louis-Jean Pin and last: Going Band -[2018-02-13T00:26:05.891] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:05.906] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Kozakken Boys and last: Embassy of Ecuador in London -[2018-02-13T00:26:05.938] [INFO] cheese - inserting 1000 documents. first: Arnold, California and last: Cherry Hills Village, Colorado -[2018-02-13T00:26:05.953] [INFO] cheese - inserting 1000 documents. first: Cities in Newfoundland and Labrador and last: Brother Mutant (comics) -[2018-02-13T00:26:05.958] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:26:05.964] [INFO] cheese - inserting 1000 documents. first: Tres Fronteiras and last: Yandro Quintana -[2018-02-13T00:26:05.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject NASCAR/Newsletter/NASCARPOM and last: File:Internode logo.svg -[2018-02-13T00:26:06.010] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:06.030] [INFO] cheese - inserting 1000 documents. first: Mudra Bank and last: Canal estate -[2018-02-13T00:26:06.032] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:26:06.042] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:26:06.067] [INFO] cheese - batch complete in: 2.002 secs -[2018-02-13T00:26:06.098] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:26:06.259] [INFO] cheese - inserting 1000 documents. first: Orlando Bloo and last: 1999 World Championships in Athletics – Men's long jump -[2018-02-13T00:26:06.314] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:26:06.337] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Teahouse/Host landing and last: FC Chabab -[2018-02-13T00:26:06.387] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:06.395] [INFO] cheese - inserting 1000 documents. first: Category:Soviet members of the Verkhovna Rada and last: Cricket in Iran -[2018-02-13T00:26:06.435] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:26:06.468] [INFO] cheese - inserting 1000 documents. first: Category:American people of Flemish descent and last: Adrian Franklin -[2018-02-13T00:26:06.471] [INFO] cheese - inserting 1000 documents. first: Kyobashi Station and last: Nicki Billie Nielsen -[2018-02-13T00:26:06.503] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:26:06.503] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:06.546] [INFO] cheese - inserting 1000 documents. first: Harm de Blij and last: Pirquet (crater) -[2018-02-13T00:26:06.618] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:26:06.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NCASTRO and last: Category:Commercial Swimming Club swimmers -[2018-02-13T00:26:06.745] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:26:06.786] [INFO] cheese - inserting 1000 documents. first: Template:Fujifilm DSLR cameras and last: Victor de Broglie (1846-1906) -[2018-02-13T00:26:06.828] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:06.834] [INFO] cheese - inserting 1000 documents. first: Lycee Rene Descartes (Cambodia) and last: File:SPORZA-306x225.jpg -[2018-02-13T00:26:06.877] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:06.899] [INFO] cheese - inserting 1000 documents. first: Category:Jimmy Buffett compilation albums and last: Ana Bárbara (album) -[2018-02-13T00:26:06.941] [INFO] cheese - inserting 1000 documents. first: New Departure (Ireland) and last: File:Thief Of Bagdad (1940).jpg -[2018-02-13T00:26:06.948] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:26:07.006] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:26:07.100] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Guyver85 and last: Antoine du Verdier -[2018-02-13T00:26:07.153] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:07.198] [INFO] cheese - inserting 1000 documents. first: Real-life test and last: Jeff King (author) -[2018-02-13T00:26:07.249] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:26:07.289] [INFO] cheese - inserting 1000 documents. first: Template:I-77 aux and last: People's Solution -[2018-02-13T00:26:07.334] [INFO] cheese - inserting 1000 documents. first: Billy Davies (rugby league) and last: Son of Gutbucket -[2018-02-13T00:26:07.348] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:26:07.374] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Liamorpha and last: File:Trinity line 4-2015.jpg -[2018-02-13T00:26:07.384] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:26:07.408] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:26:07.477] [INFO] cheese - inserting 1000 documents. first: File:MyDinnerWithJimi.jpg and last: Template:Cite Catholic Encyclopedia -[2018-02-13T00:26:07.516] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:26:07.570] [INFO] cheese - inserting 1000 documents. first: Rangers F.C. season 1971-72 and last: File:Big L - Harlem's Finest - A Freestyle History.jpg -[2018-02-13T00:26:07.576] [INFO] cheese - inserting 1000 documents. first: Denmark High School and last: Estonia at the 2012 Summer Paralympics -[2018-02-13T00:26:07.615] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:26:07.626] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:07.742] [INFO] cheese - inserting 1000 documents. first: Amazon Dash Replenishment Service and last: Columbus State Univ. -[2018-02-13T00:26:07.800] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:26:07.842] [INFO] cheese - inserting 1000 documents. first: AC Russell and last: Marquis of Lorne -[2018-02-13T00:26:07.885] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:26:07.905] [INFO] cheese - inserting 1000 documents. first: Columbine, Colorado and last: West Samoset, Florida -[2018-02-13T00:26:07.938] [INFO] cheese - inserting 1000 documents. first: Dietrich of the Goths and last: Mangaltar, Bagmati -[2018-02-13T00:26:07.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Chowkatsun9 and last: Neocollyris subclavata -[2018-02-13T00:26:07.973] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:26:07.978] [INFO] cheese - batch complete in: 1.91 secs -[2018-02-13T00:26:07.987] [INFO] cheese - inserting 1000 documents. first: East Kilbride Pirates and last: Bowie Middle School (Irving, Texas) -[2018-02-13T00:26:08.017] [INFO] cheese - inserting 1000 documents. first: Category:Czech history and last: Category:Wikipedia requested photographs in Guizhou -[2018-02-13T00:26:08.025] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:08.043] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:08.046] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:26:08.139] [INFO] cheese - inserting 1000 documents. first: Miokovci and last: File:Obama victory pdi.jpg -[2018-02-13T00:26:08.209] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:26:08.301] [INFO] cheese - inserting 1000 documents. first: Brahms / Handel and last: Enfermes dehors -[2018-02-13T00:26:08.311] [INFO] cheese - inserting 1000 documents. first: Neocollyris subtileflavescens and last: Francois Wong -[2018-02-13T00:26:08.336] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:08.339] [INFO] cheese - inserting 1000 documents. first: Sea Life Minnesota Aquarium and last: Poy Poy 2 -[2018-02-13T00:26:08.342] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:26:08.373] [INFO] cheese - inserting 1000 documents. first: Category:Nationalist Party of Australia members of the Parliament of Victoria and last: Template:NZ-struct-stub -[2018-02-13T00:26:08.388] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:26:08.407] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:26:08.490] [INFO] cheese - inserting 1000 documents. first: Equivalent concentration and last: Hercules In The Underworld -[2018-02-13T00:26:08.540] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:26:08.639] [INFO] cheese - inserting 1000 documents. first: Images 1966-1967 and last: Jane Pemberton Small -[2018-02-13T00:26:08.657] [INFO] cheese - inserting 1000 documents. first: Compagnie Française de l'Afrique Occidentale and last: Marjory E. Mecklenburg -[2018-02-13T00:26:08.665] [INFO] cheese - inserting 1000 documents. first: Marie Du Toit and last: Lingga Isaq Game Reserve -[2018-02-13T00:26:08.675] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:26:08.693] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:26:08.719] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:26:08.740] [INFO] cheese - inserting 1000 documents. first: Template:NZ-university-stub and last: Portal:Current events/2015 April 8 -[2018-02-13T00:26:08.785] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:26:08.813] [INFO] cheese - inserting 1000 documents. first: Chase Ellison and last: Cestodaria -[2018-02-13T00:26:08.875] [INFO] cheese - inserting 1000 documents. first: 2006 Summer SMTown and last: Rufus Books -[2018-02-13T00:26:08.875] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:26:08.913] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:26:08.986] [INFO] cheese - inserting 1000 documents. first: Marjory M. Mecklenburg and last: 1945 Mass State Aggies football team -[2018-02-13T00:26:09.020] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:26:09.067] [INFO] cheese - inserting 1000 documents. first: File:Cambrian-news-150th-logo.jpg and last: Category:Polydor Records soundtracks -[2018-02-13T00:26:09.101] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:26:09.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Untitled Third Studio Album (2nd nomination) and last: Category:Chinese artistic gymnasts -[2018-02-13T00:26:09.160] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:26:09.191] [INFO] cheese - inserting 1000 documents. first: NOFV and last: Family Values (album) -[2018-02-13T00:26:09.238] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:26:09.259] [INFO] cheese - inserting 1000 documents. first: Bentley Historical Museum and last: Portal:AC/DC/Selected article/Nominations -[2018-02-13T00:26:09.303] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:26:09.339] [INFO] cheese - inserting 1000 documents. first: Somalia federal government and last: Roger-Jean Le Nizerhy -[2018-02-13T00:26:09.372] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:09.442] [INFO] cheese - inserting 1000 documents. first: File:Jimmy Sturr Polka in Paradise cover.jpg and last: Archery medal winners at the 1982 Commonwealth Games -[2018-02-13T00:26:09.483] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:26:09.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alkmania and last: British Rail Class 76 -[2018-02-13T00:26:09.525] [INFO] cheese - inserting 1000 documents. first: Taylor Avenue and last: Wikipedia:Reference desk/Archives/Language/September 2008 -[2018-02-13T00:26:09.552] [INFO] cheese - inserting 1000 documents. first: Whitfield, Manatee County, Florida and last: Rossville, Georgia -[2018-02-13T00:26:09.560] [INFO] cheese - inserting 1000 documents. first: Soho, Hong Kong and last: Coronation of the Danish monarch -[2018-02-13T00:26:09.570] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:09.575] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:26:09.594] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:09.617] [INFO] cheese - inserting 1000 documents. first: A Mi Shabba and last: Broadway (Sacramento RT) -[2018-02-13T00:26:09.638] [INFO] cheese - inserting 1000 documents. first: File:Summer and the City (book cover).jpg and last: Sealdin -[2018-02-13T00:26:09.653] [INFO] cheese - batch complete in: 1.675 secs -[2018-02-13T00:26:09.661] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:26:09.677] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:26:09.846] [INFO] cheese - inserting 1000 documents. first: Sir Spencer Fane and last: Monaco at the 2010 European Athletics Championships -[2018-02-13T00:26:09.899] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:09.953] [INFO] cheese - inserting 1000 documents. first: Charles Kingsley Barrett and last: IMO 7358327 -[2018-02-13T00:26:09.983] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:26:09.985] [INFO] cheese - inserting 1000 documents. first: National fire and rescue service of Scotland and last: Bjørn Tolleivson Frøysok -[2018-02-13T00:26:09.997] [INFO] cheese - inserting 1000 documents. first: World Revolution (political group) and last: Mounir Farah -[2018-02-13T00:26:10.004] [INFO] cheese - inserting 1000 documents. first: Ukrainian Premier League Reserve and last: Portal:Oregon/Selected picture/29 -[2018-02-13T00:26:10.024] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:10.049] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:10.066] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:10.085] [INFO] cheese - inserting 1000 documents. first: De Havilland DH.65 Hound and last: Wikipedia:Featured article review/Revised Standard Version -[2018-02-13T00:26:10.135] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:10.191] [INFO] cheese - inserting 1000 documents. first: Portal:University of Oxford/Selected panorama/12 and last: Ian Emes -[2018-02-13T00:26:10.245] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:10.246] [INFO] cheese - inserting 1000 documents. first: IMO 7358561 and last: Death of Shaima Alawadi -[2018-02-13T00:26:10.269] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:26:10.376] [INFO] cheese - inserting 1000 documents. first: Bjørn Tolleivson Frøysåk and last: File:Emily Hahn.jpg -[2018-02-13T00:26:10.417] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:10.444] [INFO] cheese - inserting 1000 documents. first: Portal:Oregon/Selected picture/28 and last: Səhlaabad -[2018-02-13T00:26:10.462] [INFO] cheese - inserting 1000 documents. first: Charles H. Burke and last: File:Dystopia logo.jpg -[2018-02-13T00:26:10.483] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:26:10.498] [INFO] cheese - inserting 1000 documents. first: Andahuaylas Province and last: Chem. Eur. J. -[2018-02-13T00:26:10.504] [INFO] cheese - inserting 1000 documents. first: IMO 9320544 and last: Dominican Republic Handicap Hurdle -[2018-02-13T00:26:10.515] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:10.530] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:26:10.559] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:10.722] [INFO] cheese - inserting 1000 documents. first: Karel Uyttersprot and last: 10R (disambiguation) -[2018-02-13T00:26:10.753] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 2014 Winter Olympics and last: Morning Glory (band) -[2018-02-13T00:26:10.766] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:26:10.786] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:26:10.838] [INFO] cheese - inserting 1000 documents. first: Category:2015 establishments in Estonia and last: 2015 Batman Cup – Doubles -[2018-02-13T00:26:10.843] [INFO] cheese - inserting 1000 documents. first: Anne no Nikki and last: File:MorganOrganized.jpg -[2018-02-13T00:26:10.861] [INFO] cheese - inserting 1000 documents. first: Bourke County, New South Wales and last: Ongka's Big Moka -[2018-02-13T00:26:10.884] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:26:10.891] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:10.911] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:10.922] [INFO] cheese - inserting 1000 documents. first: Category:Horse health and last: List of Picasso artworks 1951–60 -[2018-02-13T00:26:10.969] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:26:11.104] [INFO] cheese - inserting 1000 documents. first: Template:PowerliftingAt2012SummerParalympics and last: Mario Bazán -[2018-02-13T00:26:11.121] [INFO] cheese - inserting 1000 documents. first: A Force More Powerful (2000 TV series) and last: Norm Row -[2018-02-13T00:26:11.141] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:26:11.143] [INFO] cheese - inserting 1000 documents. first: HMS Blaxton (M1132) and last: VFAT long file name support -[2018-02-13T00:26:11.177] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:26:11.185] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:26:11.270] [INFO] cheese - inserting 1000 documents. first: President Harry Truman and last: Mário João -[2018-02-13T00:26:11.301] [INFO] cheese - inserting 1000 documents. first: ANAPROF in CONCACAF and last: Wikipedia:Wikipedia Signpost/2008-09-08/In the news -[2018-02-13T00:26:11.304] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:11.343] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:11.358] [INFO] cheese - inserting 1000 documents. first: Between, Georgia and last: Victoria, Illinois -[2018-02-13T00:26:11.486] [INFO] cheese - batch complete in: 1.833 secs -[2018-02-13T00:26:11.510] [INFO] cheese - inserting 1000 documents. first: Laundry detergent and last: Category:Science and technology in South Africa -[2018-02-13T00:26:11.514] [INFO] cheese - inserting 1000 documents. first: Charlie Howard (cricketer) and last: Amazing Cooking Kids (season 1) -[2018-02-13T00:26:11.560] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:26:11.569] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:11.619] [INFO] cheese - inserting 1000 documents. first: File:Kbmt news 2010.png and last: File:Emil i Lönneberga.jpg -[2018-02-13T00:26:11.627] [INFO] cheese - inserting 1000 documents. first: MV Westward and last: University College London Hospitals NHS Foundation Trust -[2018-02-13T00:26:11.672] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:26:11.686] [INFO] cheese - inserting 1000 documents. first: VFAT long filename support and last: File:Photos icon for OS X.png -[2018-02-13T00:26:11.696] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:11.733] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians who contribute to the reference desk and last: William Corless Mills -[2018-02-13T00:26:11.756] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:11.802] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:12.003] [INFO] cheese - inserting 1000 documents. first: DSC-RX100 and last: File:TheBigWave.jpg -[2018-02-13T00:26:12.049] [INFO] cheese - inserting 1000 documents. first: File:Nya hyss av Emil i Lönneberga.jpg and last: 1946–47 Liverpool F.C. season -[2018-02-13T00:26:12.049] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:26:12.055] [INFO] cheese - inserting 1000 documents. first: Waikiki (band) and last: Wikipedia:Articles for deletion/Queer West News -[2018-02-13T00:26:12.092] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:26:12.096] [INFO] cheese - inserting 1000 documents. first: Ilamatepec and last: Daewoo Precision Industries K2 -[2018-02-13T00:26:12.100] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:12.126] [INFO] cheese - inserting 1000 documents. first: Taiwan-Bangladesh relations and last: SCIS (disambiguation) -[2018-02-13T00:26:12.185] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:26:12.208] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:12.238] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jambo and last: Horror game -[2018-02-13T00:26:12.295] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:12.440] [INFO] cheese - inserting 1000 documents. first: Hamid Arasly and last: W.S. Burhaus -[2018-02-13T00:26:12.444] [INFO] cheese - inserting 1000 documents. first: Template:Darlington and last: OOTH -[2018-02-13T00:26:12.487] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:26:12.489] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:12.522] [INFO] cheese - inserting 1000 documents. first: Charlie and the Chocolate Factory: The Musical and last: John Wasdin's perfect game -[2018-02-13T00:26:12.525] [INFO] cheese - inserting 1000 documents. first: Template:Modern Rock Radio Stations in Massachusetts and last: Category:Iowa society -[2018-02-13T00:26:12.561] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:12.583] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:12.665] [INFO] cheese - inserting 1000 documents. first: United States Glacier National Park and last: Pierrebraunia -[2018-02-13T00:26:12.705] [INFO] cheese - inserting 1000 documents. first: Isadora (film) and last: Great Short Novels of Adult Fantasy I -[2018-02-13T00:26:12.720] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:26:12.742] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:12.851] [INFO] cheese - inserting 1000 documents. first: OPBN and last: Rumesh Joseph Ratnayake -[2018-02-13T00:26:12.852] [INFO] cheese - inserting 1000 documents. first: Armenians in Belarus and last: Via della Spiga, Milan -[2018-02-13T00:26:12.860] [INFO] cheese - inserting 1000 documents. first: Template:2012 Summer Paralympics women's wheelchair basketball game B6 and last: Francisco Hernández (Peruvian footballer) -[2018-02-13T00:26:12.881] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:26:12.897] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:12.907] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:26:12.974] [INFO] cheese - inserting 1000 documents. first: Wilfred Spruson and last: Wikipedia:WikiProject Spam/LinkReports/buypckeys.com -[2018-02-13T00:26:13.023] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:13.044] [INFO] cheese - inserting 1000 documents. first: Template:Buriram-geo-stub and last: Friend virus -[2018-02-13T00:26:13.092] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:26:13.125] [INFO] cheese - inserting 1000 documents. first: Gallio and last: Lists of tennis records and statistics -[2018-02-13T00:26:13.147] [INFO] cheese - inserting 1000 documents. first: Wataga, Illinois and last: Michiana Shores, Indiana -[2018-02-13T00:26:13.165] [INFO] cheese - inserting 1000 documents. first: Princess Marie of Orléans (1813-1839) and last: Melicytus dentatus -[2018-02-13T00:26:13.167] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:13.184] [INFO] cheese - inserting 1000 documents. first: Vancouver Jazz Festival and last: Category:Dōjin anime -[2018-02-13T00:26:13.208] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:26:13.215] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:26:13.249] [INFO] cheese - batch complete in: 1.763 secs -[2018-02-13T00:26:13.294] [INFO] cheese - inserting 1000 documents. first: Template:History of Papua New Guinea and last: File:Arun Sharma.jpg -[2018-02-13T00:26:13.352] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:13.357] [INFO] cheese - inserting 1000 documents. first: Military Working Dogs and last: Muniments room -[2018-02-13T00:26:13.401] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:26:13.428] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/May/02/Selected picture and last: Noah Creshevsky -[2018-02-13T00:26:13.455] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:13.534] [INFO] cheese - inserting 1000 documents. first: Alfredo Luís da Costa and last: Le Dénouement imprévu -[2018-02-13T00:26:13.577] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:13.591] [INFO] cheese - inserting 1000 documents. first: Co-agonist and last: Marheinecke -[2018-02-13T00:26:13.612] [INFO] cheese - inserting 1000 documents. first: Hanuta and last: Gazz. Chim. Ital. -[2018-02-13T00:26:13.636] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:26:13.654] [INFO] cheese - inserting 1000 documents. first: Ilam Cement Plant and last: Tkil -[2018-02-13T00:26:13.664] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:26:13.714] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:13.759] [INFO] cheese - inserting 1000 documents. first: The Code Project and last: Wikipedia:Featured article candidates/Southern Cross (wordless novel)/archive1 -[2018-02-13T00:26:13.798] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:13.831] [INFO] cheese - inserting 1000 documents. first: San miguel national high school and last: File:Sidneyia.png -[2018-02-13T00:26:13.876] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:13.982] [INFO] cheese - inserting 1000 documents. first: Rainbow Road (Mario Kart track) and last: Syamsul Chaerudin -[2018-02-13T00:26:14.010] [INFO] cheese - inserting 1000 documents. first: Category:Phyllachorales and last: Lehrte, Germany -[2018-02-13T00:26:14.019] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:14.060] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:14.068] [INFO] cheese - inserting 1000 documents. first: Novodevichye Cemetery and last: AF Tschiffely -[2018-02-13T00:26:14.094] [INFO] cheese - inserting 1000 documents. first: Category:Unsolved crimes in Rwanda and last: Template:2015–16 in Turkish football -[2018-02-13T00:26:14.104] [INFO] cheese - inserting 1000 documents. first: J S Carpenter House and last: Jefferson-Hemings controversy -[2018-02-13T00:26:14.127] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:14.136] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:26:14.172] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:14.298] [INFO] cheese - inserting 1000 documents. first: Est, Willem Hessels van and last: File:Nala100.jpg -[2018-02-13T00:26:14.342] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:14.410] [INFO] cheese - inserting 1000 documents. first: Banco Latino and last: Wikipedia:WikiProject Spam/LinkReports/panjewellery.com -[2018-02-13T00:26:14.416] [INFO] cheese - inserting 1000 documents. first: Michigan City, Indiana and last: Fine Gael Party -[2018-02-13T00:26:14.436] [INFO] cheese - inserting 1000 documents. first: Mont-Pérat and last: Cash for votes -[2018-02-13T00:26:14.455] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:26:14.485] [INFO] cheese - inserting 1000 documents. first: HD 20644 and last: Tanja Börzel -[2018-02-13T00:26:14.487] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:14.495] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T00:26:14.537] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:14.563] [INFO] cheese - inserting 1000 documents. first: Data farming and last: Academia Juárez -[2018-02-13T00:26:14.580] [INFO] cheese - inserting 1000 documents. first: Eddie Hice and last: Wikipedia:WikiProject Spam/LinkReports/tiyatropiya.com -[2018-02-13T00:26:14.633] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:26:14.647] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:14.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Moses mayfield and last: Men in White (1998 film) -[2018-02-13T00:26:14.813] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:26:14.819] [INFO] cheese - inserting 1000 documents. first: Factory Girl (TV series) and last: Chastellain, Pierre -[2018-02-13T00:26:14.847] [INFO] cheese - inserting 1000 documents. first: R. H. Mottram and last: Polish 17th Infantry Division -[2018-02-13T00:26:14.857] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:26:14.886] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:26:15.004] [INFO] cheese - inserting 1000 documents. first: C26H54O and last: Perumal Sthanu Ravi Gupta -[2018-02-13T00:26:15.030] [INFO] cheese - inserting 1000 documents. first: The Conservative Mind and last: Automatic Tool Changer -[2018-02-13T00:26:15.039] [INFO] cheese - inserting 1000 documents. first: Oscar Littleton Chaplin and last: London Underground C Stock -[2018-02-13T00:26:15.045] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:26:15.090] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:26:15.085] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:15.144] [INFO] cheese - inserting 1000 documents. first: Mount Ōyama (Kanagawa) and last: Domnall ua Neill -[2018-02-13T00:26:15.185] [INFO] cheese - inserting 1000 documents. first: By the Great Horn Spoon and last: Nellie Clifden -[2018-02-13T00:26:15.185] [INFO] cheese - inserting 1000 documents. first: Polish 1st Independent Parachute Brigade and last: File:Milford140.jpg -[2018-02-13T00:26:15.187] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:26:15.225] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:26:15.229] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:26:15.364] [INFO] cheese - inserting 1000 documents. first: William Page (MP) and last: Wikipedia:Articles for deletion/Jacksonville, Wyoming -[2018-02-13T00:26:15.396] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:26:15.513] [INFO] cheese - inserting 1000 documents. first: London Underground B Stock and last: Sikorsky R-4 -[2018-02-13T00:26:15.534] [INFO] cheese - inserting 1000 documents. first: Ahmadou Bello and last: Mike Stephens -[2018-02-13T00:26:15.539] [INFO] cheese - inserting 1000 documents. first: Épinette des Vosges and last: Sabols -[2018-02-13T00:26:15.570] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:26:15.586] [INFO] cheese - inserting 1000 documents. first: Kaakan and last: Voiceless dental flap -[2018-02-13T00:26:15.583] [INFO] cheese - inserting 1000 documents. first: Category:1851 racehorse births and last: Category:British East India Company Army personnel -[2018-02-13T00:26:15.598] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:26:15.581] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:15.652] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:26:15.654] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:15.728] [INFO] cheese - inserting 1000 documents. first: Maryville Saints and last: Template:German Athletics Champions in women's 800 m -[2018-02-13T00:26:15.788] [INFO] cheese - inserting 1000 documents. first: Geothermal power in Iceland and last: Winona, Kansas -[2018-02-13T00:26:15.863] [INFO] cheese - batch complete in: 1.368 secs -[2018-02-13T00:26:15.768] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:26:15.906] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2008-03-17/SPV and last: Category:Bishops of Orléans -[2018-02-13T00:26:15.951] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:15.972] [INFO] cheese - inserting 1000 documents. first: Red Death at 6:14 and last: Aid to the Church in Need -[2018-02-13T00:26:16.025] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:26:16.039] [INFO] cheese - inserting 1000 documents. first: Winning - The Answers and last: LMOE -[2018-02-13T00:26:16.040] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bojnec and last: Category:1996 in Ecuadorian sport -[2018-02-13T00:26:16.077] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:16.081] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:16.131] [INFO] cheese - inserting 1000 documents. first: Home and Away (album) and last: Category:Sri Lankan people by ethnic or national origin -[2018-02-13T00:26:16.179] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:16.277] [INFO] cheese - inserting 1000 documents. first: Nyree Lewis and last: Sammuel von Soemmering -[2018-02-13T00:26:16.317] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:26:16.368] [INFO] cheese - inserting 1000 documents. first: Fleetwood Pier and last: Category:Culture in Genoa -[2018-02-13T00:26:16.378] [INFO] cheese - inserting 1000 documents. first: Oeceoclades analamerensis and last: Wikipedia:Articles for deletion/Invenergy -[2018-02-13T00:26:16.407] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:26:16.408] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:26:16.432] [INFO] cheese - inserting 1000 documents. first: Levanto (SP) and last: Gare de Fouilloy -[2018-02-13T00:26:16.470] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:16.535] [INFO] cheese - inserting 1000 documents. first: Template:Fair use replace and last: File:Fisherman's Blues Waterboys Album Cover.jpg -[2018-02-13T00:26:16.573] [INFO] cheese - inserting 1000 documents. first: Emergency oxygen system and last: File:Ehwa badge.png -[2018-02-13T00:26:16.591] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:26:16.631] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:16.725] [INFO] cheese - inserting 1000 documents. first: File:1998WomensFinalFourLogo.jpg and last: Monsanto's house of the future -[2018-02-13T00:26:16.739] [INFO] cheese - inserting 1000 documents. first: Columbia University TeenScreen Program and last: Real Time Policy -[2018-02-13T00:26:16.741] [INFO] cheese - inserting 1000 documents. first: Skaručna Basin and last: Woking Council election, 2000 -[2018-02-13T00:26:16.765] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:26:16.772] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:16.779] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:26:16.895] [INFO] cheese - inserting 1000 documents. first: Chorkie and last: Nødebo Church -[2018-02-13T00:26:16.979] [INFO] cheese - inserting 1000 documents. first: Tule River and last: Vancouver School Board -[2018-02-13T00:26:17.018] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:26:17.067] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:17.130] [INFO] cheese - inserting 1000 documents. first: Dominion Stores Ltd. and last: Category:1989 in North Korean football -[2018-02-13T00:26:17.180] [INFO] cheese - inserting 1000 documents. first: Kim Dinh and last: Əliabad, Lerik -[2018-02-13T00:26:17.182] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:17.243] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:26:17.253] [INFO] cheese - inserting 1000 documents. first: Rent (the musical) and last: G-network -[2018-02-13T00:26:17.322] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:26:17.417] [INFO] cheese - inserting 1000 documents. first: Tallest tokyo and last: Hungarian Food Safety Office -[2018-02-13T00:26:17.447] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:26:17.461] [INFO] cheese - inserting 1000 documents. first: Admire, Kansas and last: Rayville, Louisiana -[2018-02-13T00:26:17.498] [INFO] cheese - inserting 1000 documents. first: 2013 European Athletics U23 Championships – Men's 100 metres and last: Agonopterix muricolorella -[2018-02-13T00:26:17.531] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:26:17.627] [INFO] cheese - inserting 1000 documents. first: Kairwan and last: Category:Lierse S.K. players -[2018-02-13T00:26:17.629] [INFO] cheese - batch complete in: 1.766 secs -[2018-02-13T00:26:17.705] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:26:17.721] [INFO] cheese - inserting 1000 documents. first: Camp Delta (Guantanamo) and last: Category:File-Class Dartmouth College articles -[2018-02-13T00:26:17.732] [INFO] cheese - inserting 1000 documents. first: Yugoslavia at the 1987 Mediterranean Games and last: Turbonilla soniliana -[2018-02-13T00:26:17.763] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:26:17.769] [INFO] cheese - inserting 1000 documents. first: America's Got Talent 3 and last: File:1920 Poster.JPG -[2018-02-13T00:26:17.830] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T00:26:17.844] [INFO] cheese - inserting 1000 documents. first: Rokkaku Middle School and last: List of state leaders in 1568 BC -[2018-02-13T00:26:17.848] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:26:17.919] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:26:17.935] [INFO] cheese - inserting 1000 documents. first: Río de la Leche and last: Kiran Shekhawat -[2018-02-13T00:26:17.977] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:18.271] [INFO] cheese - inserting 1000 documents. first: Category:File-Class DC Comics articles and last: Olive de Nice -[2018-02-13T00:26:18.346] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:26:18.400] [INFO] cheese - inserting 1000 documents. first: Turbonilla sororia and last: Template:Anglicise rank/sandbox -[2018-02-13T00:26:18.433] [INFO] cheese - inserting 1000 documents. first: Romain Crevoisier and last: Paul Brown (footballer) -[2018-02-13T00:26:18.434] [INFO] cheese - inserting 1000 documents. first: Oho-Yama and last: Operation Ezra and Nehemiah -[2018-02-13T00:26:18.439] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:26:18.476] [INFO] cheese - inserting 1000 documents. first: Schnelldorf and last: Category:French Wars of Religion -[2018-02-13T00:26:18.484] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:26:18.497] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:26:18.525] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:26:18.643] [INFO] cheese - inserting 1000 documents. first: Val Robertson and last: Florence Hezlet -[2018-02-13T00:26:18.681] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:26:18.773] [INFO] cheese - inserting 1000 documents. first: Macedonian Prva Liga 1999–2000 and last: Template:Imagemap Germany district FRI -[2018-02-13T00:26:18.816] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:26:18.833] [INFO] cheese - inserting 1000 documents. first: Politechnika Świętokrzyska and last: Category:Short duration GRB -[2018-02-13T00:26:18.860] [INFO] cheese - inserting 1000 documents. first: Islam in Côte d'Ivoire and last: Category:Games with concealed rules -[2018-02-13T00:26:18.878] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:26:18.893] [INFO] cheese - inserting 1000 documents. first: Template:Sassoon family tree and last: Gogol, Goa -[2018-02-13T00:26:18.911] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:18.921] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Tibetan Buddhism and last: Wikipedia:Articles for deletion/Ashley Juggs (2nd nomination) -[2018-02-13T00:26:18.941] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:18.993] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:26:19.066] [INFO] cheese - inserting 1000 documents. first: Prehistory of Delaware and last: George L. Hicks -[2018-02-13T00:26:19.121] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:19.172] [INFO] cheese - inserting 1000 documents. first: Corporate insolvency and last: Noble Society -[2018-02-13T00:26:19.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eric Schomburg and last: Wikipedia:Votes for deletion/Everything I Do (I Do It for You) -[2018-02-13T00:26:19.233] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:26:19.243] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:26:19.338] [INFO] cheese - inserting 1000 documents. first: The Call of the Wild (film) and last: Dianne Brimble -[2018-02-13T00:26:19.346] [INFO] cheese - inserting 1000 documents. first: Converse, Louisiana and last: Smith Mills, Massachusetts -[2018-02-13T00:26:19.357] [INFO] cheese - inserting 1000 documents. first: Template:Name culture and last: Secretary of Finance and Public Credit (Mexico) -[2018-02-13T00:26:19.384] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:19.413] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:26:19.428] [INFO] cheese - batch complete in: 1.798 secs -[2018-02-13T00:26:19.452] [INFO] cheese - inserting 1000 documents. first: Portal:Pokémon/Understanding Pokémon/Header and last: Wikipedia:Articles for deletion/Pinewood derby car modifications -[2018-02-13T00:26:19.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Epistle to augusta and last: Wikipedia:Votes for deletion/Mills lighthouse -[2018-02-13T00:26:19.520] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:19.543] [INFO] cheese - inserting 1000 documents. first: Maritime force and last: Wikipedia:Wikipedia Signpost/Templates/Tag series/Usage chart -[2018-02-13T00:26:19.563] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:26:19.598] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:26:19.632] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mazzikabox.com and last: AISB (disambiguation) -[2018-02-13T00:26:19.709] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:19.814] [INFO] cheese - inserting 1000 documents. first: Bras de Brosne and last: Starkey, NY -[2018-02-13T00:26:19.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The Down and Outs and last: Wikipedia:Votes for deletion/Enjoyingtea -[2018-02-13T00:26:19.848] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:26:19.859] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:19.925] [INFO] cheese - inserting 1000 documents. first: Template:Swedish Army Officer Rank Insignia and last: Claude Davey -[2018-02-13T00:26:19.954] [INFO] cheese - inserting 1000 documents. first: James Bourchier Metro Station and last: Jean Vanek -[2018-02-13T00:26:19.967] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:19.987] [INFO] cheese - inserting 1000 documents. first: Eliyahu Zini and last: Kirirom I Hydro Power Plant -[2018-02-13T00:26:20.014] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:26:20.023] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:20.128] [INFO] cheese - inserting 1000 documents. first: Artin-Scheier theory and last: Wikipedia:Votes for deletion/Fred VII -[2018-02-13T00:26:20.167] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:26:20.255] [INFO] cheese - inserting 1000 documents. first: File:Basketcase2.jpg and last: Jake Mauer -[2018-02-13T00:26:20.342] [INFO] cheese - inserting 1000 documents. first: AJP (disambiguation) and last: French football Division 2 1946–47 -[2018-02-13T00:26:20.335] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:20.412] [INFO] cheese - inserting 1000 documents. first: Alba Roma and last: Lemlanti -[2018-02-13T00:26:20.449] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:26:20.511] [INFO] cheese - inserting 1000 documents. first: Template:User Kashmiri Proud and last: Bruno Langlois -[2018-02-13T00:26:20.546] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:20.567] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:26:20.580] [INFO] cheese - inserting 1000 documents. first: Herminio Blanco Mendoza and last: Good, WV -[2018-02-13T00:26:20.620] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:20.660] [INFO] cheese - inserting 1000 documents. first: Cranks restaurant and last: Category:Chaldean kings -[2018-02-13T00:26:20.706] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:26:20.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Abersee and last: Vranov -[2018-02-13T00:26:20.951] [INFO] cheese - inserting 1000 documents. first: Lyclene and last: SAO 64053 -[2018-02-13T00:26:20.961] [INFO] cheese - inserting 1000 documents. first: Bui and last: Yoshiki Hiraki -[2018-02-13T00:26:20.967] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:20.971] [INFO] cheese - inserting 1000 documents. first: Erich von Hornbostel and last: Coe Township, Michigan -[2018-02-13T00:26:20.978] [INFO] cheese - inserting 1000 documents. first: The St. Augustine Academy and last: Dzorgai Qiang language -[2018-02-13T00:26:21.001] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:21.006] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:26:21.028] [INFO] cheese - inserting 1000 documents. first: Lumparlanti and last: Wikipedia:Miscellany for deletion/User:Lizhandlin -[2018-02-13T00:26:21.035] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:26:21.059] [INFO] cheese - batch complete in: 1.631 secs -[2018-02-13T00:26:21.087] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:21.248] [INFO] cheese - inserting 1000 documents. first: After All The Wishing… and last: Spike UK -[2018-02-13T00:26:21.287] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:26:21.325] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The Lonely Sidewalk and last: Německý Brod -[2018-02-13T00:26:21.363] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:21.378] [INFO] cheese - inserting 1000 documents. first: Prohibition of Female Genital Mutilation (Scotland) Act 2005 and last: Morrison v. National Australia Bank -[2018-02-13T00:26:21.430] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:26:21.435] [INFO] cheese - inserting 1000 documents. first: Pingfang Qiang language and last: Cyprus – UK relations -[2018-02-13T00:26:21.481] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:21.522] [INFO] cheese - inserting 1000 documents. first: Category:People from Legionowo and last: Everstiluutnantti -[2018-02-13T00:26:21.552] [INFO] cheese - inserting 1000 documents. first: Prince Henry's Room and last: Apostolic fathers -[2018-02-13T00:26:21.595] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:21.628] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:21.647] [INFO] cheese - inserting 1000 documents. first: Allium waldsteinianum and last: Sandy Edmonds -[2018-02-13T00:26:21.684] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:21.746] [INFO] cheese - inserting 1000 documents. first: Mark Davies (Anglican bishop) and last: Voivodeship Road 430 (Poland) -[2018-02-13T00:26:21.786] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:21.842] [INFO] cheese - inserting 1000 documents. first: Category:Woodworking machines and last: Islamic New Year -[2018-02-13T00:26:21.845] [INFO] cheese - inserting 1000 documents. first: 2012 NCAA Division I FCS football rankings and last: Phineas And Ferb: Summer Belongs To You -[2018-02-13T00:26:21.889] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:21.920] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:26:21.985] [INFO] cheese - inserting 1000 documents. first: Blue schist and last: Coat of arms of Korybut -[2018-02-13T00:26:22.135] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:26:22.150] [INFO] cheese - inserting 1000 documents. first: False heather and last: Crescent (heraldry) -[2018-02-13T00:26:22.164] [INFO] cheese - inserting 1000 documents. first: Cleveland Symphony Orchestra and last: Category:Moroccan Maliki scholars -[2018-02-13T00:26:22.254] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:26:22.282] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:26:22.290] [INFO] cheese - inserting 1000 documents. first: Smithsonian Asian Pacific American Program and last: Kahar Barat -[2018-02-13T00:26:22.350] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:26:22.371] [INFO] cheese - inserting 1000 documents. first: Coldwater Township, Isabella County, Michigan and last: Interior Township, Michigan -[2018-02-13T00:26:22.405] [INFO] cheese - inserting 1000 documents. first: Underarms And Sideways and last: File:Fortune Dane.jpg -[2018-02-13T00:26:22.439] [INFO] cheese - batch complete in: 1.38 secs -[2018-02-13T00:26:22.468] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:22.576] [INFO] cheese - inserting 1000 documents. first: Hahn's Department Stores and last: El Lado oscuro del corazón -[2018-02-13T00:26:22.621] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:26:22.686] [INFO] cheese - inserting 1000 documents. first: Reformation of a contract and last: HLB International -[2018-02-13T00:26:22.696] [INFO] cheese - inserting 1000 documents. first: 1776: The Illustrated Edition and last: Meghan L. O’Sullivan -[2018-02-13T00:26:22.697] [INFO] cheese - inserting 1000 documents. first: Youth Groups and last: File:Interstate77 map.png -[2018-02-13T00:26:22.713] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Duke the Dog and last: Korney Shperling -[2018-02-13T00:26:22.732] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:22.735] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:26:22.786] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:22.795] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:26:22.969] [INFO] cheese - inserting 1000 documents. first: Wheelchair basketball at the 2012 Summer Paralympics – Men and last: Menahem Koretski -[2018-02-13T00:26:23.033] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:26:23.146] [INFO] cheese - inserting 1000 documents. first: File:LoverComeBack-poster.jpg and last: Buccaneers (film) -[2018-02-13T00:26:23.189] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:26:23.202] [INFO] cheese - inserting 1000 documents. first: December 1950 and last: List of visitors to Armenian Genocide Memorial -[2018-02-13T00:26:23.234] [INFO] cheese - inserting 1000 documents. first: Kanevskoi District and last: Mathías Cardacio -[2018-02-13T00:26:23.243] [INFO] cheese - inserting 1000 documents. first: Category:Resorts in the United Kingdom and last: Jining–Tongliao Railway -[2018-02-13T00:26:23.276] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:23.293] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:26:23.320] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:26:23.367] [INFO] cheese - inserting 1000 documents. first: File:Interstate80 map.png and last: Domeykite -[2018-02-13T00:26:23.429] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:26:23.543] [INFO] cheese - inserting 1000 documents. first: Boris at Last: -Feedbacker- and last: Template:Attached KML/Farm to Market Road 1938 -[2018-02-13T00:26:23.600] [INFO] cheese - inserting 1000 documents. first: Esenboğa Uluslararası Havalimanı and last: Philip L. Kohl -[2018-02-13T00:26:23.666] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:26:23.718] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:26:23.804] [INFO] cheese - inserting 1000 documents. first: Matchwood Township, Michigan and last: Jenkins Township, Crow Wing County, Minnesota -[2018-02-13T00:26:23.893] [INFO] cheese - inserting 1000 documents. first: 2015–16 Colorado State Rams men's basketball team and last: Peter Hines -[2018-02-13T00:26:23.906] [INFO] cheese - batch complete in: 1.467 secs -[2018-02-13T00:26:23.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Can Togay and last: Casey Carswell -[2018-02-13T00:26:23.955] [INFO] cheese - inserting 1000 documents. first: Information services and last: Wikipedia:Articles for deletion/Route M4 (Manhattan) -[2018-02-13T00:26:23.956] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:26:24.004] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:26:24.033] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:26:24.121] [INFO] cheese - inserting 1000 documents. first: Glenopolar angle and last: Alpha (band) -[2018-02-13T00:26:24.142] [INFO] cheese - inserting 1000 documents. first: Portal:Hong Kong/Selected biography/2 and last: Water maker and purifier -[2018-02-13T00:26:24.187] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:26:24.185] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:24.215] [INFO] cheese - inserting 1000 documents. first: Non-local object and last: The Hobbit: An Unexpected Journey -[2018-02-13T00:26:24.255] [INFO] cheese - inserting 1000 documents. first: Graeme Bean and last: Subalpine larkspur -[2018-02-13T00:26:24.277] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:26:24.290] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:26:24.417] [INFO] cheese - inserting 1000 documents. first: Percy baynes and last: Wikipedia:WikiProject Spam/LinkReports/dyras.com -[2018-02-13T00:26:24.451] [INFO] cheese - inserting 1000 documents. first: David Gordon Allen d’Aldecamb Lumsden of Cushnie and last: Deccan park -[2018-02-13T00:26:24.459] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:24.516] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:24.532] [INFO] cheese - inserting 1000 documents. first: 2015 South African Athletics Championships and last: Category:Penn Quakers soccer -[2018-02-13T00:26:24.541] [INFO] cheese - inserting 1000 documents. first: Ri Hak-son and last: Igor Melher -[2018-02-13T00:26:24.569] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:26:24.600] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:24.654] [INFO] cheese - inserting 1000 documents. first: Chenab Nagar Bridge and last: File:Reikäleipä view from above.jpg -[2018-02-13T00:26:24.657] [INFO] cheese - inserting 1000 documents. first: Estadio Manuel Ruíz de Lopera and last: Litter (animal) -[2018-02-13T00:26:24.704] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:24.756] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:24.917] [INFO] cheese - inserting 1000 documents. first: Lake Edward Township, Crow Wing County, Minnesota and last: Randall, Minnesota -[2018-02-13T00:26:24.927] [INFO] cheese - inserting 1000 documents. first: Philip Pembroke Stephens and last: Flying observatory -[2018-02-13T00:26:24.951] [INFO] cheese - inserting 1000 documents. first: Lee Garlington and last: Battle of Jarosław -[2018-02-13T00:26:24.962] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:26:24.979] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T00:26:24.998] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:25.003] [INFO] cheese - inserting 1000 documents. first: Category:American college wrestling templates and last: Farm to Market Road 2491 (Texas) -[2018-02-13T00:26:25.052] [INFO] cheese - inserting 1000 documents. first: Bolivar Edwards Kemp and last: Church of Akureyri -[2018-02-13T00:26:25.067] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:25.099] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:25.104] [INFO] cheese - inserting 1000 documents. first: File:Cavity decay process.png and last: Sun tzu ping fa -[2018-02-13T00:26:25.177] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:25.212] [INFO] cheese - inserting 1000 documents. first: Jake paralysis and last: Jonsson -[2018-02-13T00:26:25.296] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:26:25.453] [INFO] cheese - inserting 1000 documents. first: NAfW election, 2003 and last: Category:Oil and gas companies of the Republic of the Congo -[2018-02-13T00:26:25.487] [INFO] cheese - inserting 1000 documents. first: Texas Farm to Market Road 2491 and last: Daytime Emmy Award for Outstanding Entertainment Talk Show Host -[2018-02-13T00:26:25.522] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:26:25.527] [INFO] cheese - inserting 1000 documents. first: Muzeum Geologiczne Instytutu Nauk Geologicznych PAN w Krakowie and last: Bucuria -[2018-02-13T00:26:25.534] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:25.578] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:26:25.600] [INFO] cheese - inserting 1000 documents. first: Papillon-Lefèvre syndrome and last: Craterellus lutescens -[2018-02-13T00:26:25.641] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:26:25.714] [INFO] cheese - inserting 1000 documents. first: Behor and last: Wikipedia:Teahouse/Questions/Archive 39 -[2018-02-13T00:26:25.780] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:26:25.942] [INFO] cheese - inserting 1000 documents. first: EOFAD and last: Constance Fligg Elam Tipper -[2018-02-13T00:26:26.014] [INFO] cheese - inserting 1000 documents. first: Queensboro Ward and last: Category:Welsh Jesuits -[2018-02-13T00:26:26.018] [INFO] cheese - inserting 1000 documents. first: Starshipsofa and last: Brachychiton populneus -[2018-02-13T00:26:26.025] [INFO] cheese - inserting 1000 documents. first: Sad Café and last: CRC Chemicals Rebel 500 -[2018-02-13T00:26:26.031] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:26:26.082] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:26.089] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:26:26.106] [INFO] cheese - inserting 1000 documents. first: File:Uzair 100 0787.JPG and last: File:Bobby Valentino - Slow Down.jpg -[2018-02-13T00:26:26.118] [INFO] cheese - inserting 1000 documents. first: Richardson Township, Morrison County, Minnesota and last: Donnelly, Minnesota -[2018-02-13T00:26:26.120] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:26:26.163] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:26:26.196] [INFO] cheese - inserting 1000 documents. first: Connexin 20 and last: Church of St Christopher, Bare -[2018-02-13T00:26:26.196] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:26:26.245] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:26.403] [INFO] cheese - inserting 1000 documents. first: François Xavier Matthieu and last: Category:2010s Lithuanian television series endings -[2018-02-13T00:26:26.440] [INFO] cheese - inserting 1000 documents. first: Jacob Shaw (comics) and last: File:DeadHomiez.jpg -[2018-02-13T00:26:26.462] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:26.494] [INFO] cheese - inserting 1000 documents. first: Rebel 450 and last: Invalides (Paris RER) -[2018-02-13T00:26:26.507] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:26:26.534] [INFO] cheese - inserting 1000 documents. first: Uppal and last: Taboga -[2018-02-13T00:26:26.548] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:26.581] [INFO] cheese - inserting 1000 documents. first: File:Wikipedia-fonttest-chrome-0.2.149.29-windows-xp.png and last: Zalaháshágy -[2018-02-13T00:26:26.596] [INFO] cheese - inserting 1000 documents. first: Black-bellied Glossy-starling and last: St. Catherine's, Meath Street -[2018-02-13T00:26:26.598] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:26:26.644] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:26:26.644] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:26.857] [INFO] cheese - inserting 1000 documents. first: Les Belles-soeurs and last: Norberto Huezo -[2018-02-13T00:26:26.919] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:26.974] [INFO] cheese - inserting 1000 documents. first: Bruce Coburn and last: A.J. Carlson -[2018-02-13T00:26:27.010] [INFO] cheese - inserting 1000 documents. first: Category:Lithuanian television series endings by year and last: Thomas Browne (died 1891) -[2018-02-13T00:26:27.032] [INFO] cheese - inserting 1000 documents. first: Busaw and last: Ammann-Beenker tiling -[2018-02-13T00:26:27.039] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:27.075] [INFO] cheese - inserting 1000 documents. first: Princess Maria Antonietta of the Two Sicilies and last: Millwall v West Ham -[2018-02-13T00:26:27.108] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:26:27.115] [INFO] cheese - inserting 1000 documents. first: William Charlton (died 1567) and last: Category:Council of European Municipalities and Regions -[2018-02-13T00:26:27.117] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:26:27.183] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:26:27.185] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:27.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Jamal Lost and last: Microteaching -[2018-02-13T00:26:27.300] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:26:27.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Buchli drive and last: RND07 -[2018-02-13T00:26:27.411] [INFO] cheese - inserting 1000 documents. first: Donnelly Township, Stevens County, Minnesota and last: Ethel, Missouri -[2018-02-13T00:26:27.437] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:27.466] [INFO] cheese - inserting 1000 documents. first: Category:1907 establishments in Iceland and last: United States v. Mitchell (disambiguation) -[2018-02-13T00:26:27.564] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T00:26:27.597] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:27.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Artist Point and last: Wikipedia:Votes for deletion/Simon R Jones -[2018-02-13T00:26:27.679] [INFO] cheese - inserting 1000 documents. first: R1200S and last: Kurumba Maldives -[2018-02-13T00:26:27.686] [INFO] cheese - inserting 1000 documents. first: Gastric ulcers and last: Rafael Vasquez (baseball) -[2018-02-13T00:26:27.712] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:27.766] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:26:27.797] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:26:27.847] [INFO] cheese - inserting 1000 documents. first: Millwall v west ham and last: Leonora of Castile -[2018-02-13T00:26:27.904] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:26:27.977] [INFO] cheese - inserting 1000 documents. first: The Nonesuch Press and last: Northern Securities Co. v. United States -[2018-02-13T00:26:28.023] [INFO] cheese - inserting 1000 documents. first: List of butterflies of The Gambia and last: Category:People associated with the University of Sri Jayewardenepura -[2018-02-13T00:26:28.029] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:26:28.057] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:28.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Deepcut Barracks and last: Stay on My Side Tonight -[2018-02-13T00:26:28.147] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:26:28.159] [INFO] cheese - inserting 1000 documents. first: Category:Judiciary of Honduras and last: Beki Adam -[2018-02-13T00:26:28.187] [INFO] cheese - inserting 1000 documents. first: United States Special Envoy for Northern Ireland and last: Wikipedia:Articles for deletion/Millennium Middle School -[2018-02-13T00:26:28.201] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:26:28.255] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:28.452] [INFO] cheese - inserting 1000 documents. first: Leptosaces mataea and last: Category:1980s disestablishments in Syria -[2018-02-13T00:26:28.470] [INFO] cheese - inserting 1000 documents. first: Khambaliya and last: Kharaosta -[2018-02-13T00:26:28.473] [INFO] cheese - inserting 1000 documents. first: File:RyanFrancis-USC12.jpeg and last: European Transport Safety Council -[2018-02-13T00:26:28.480] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:26:28.513] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:26:28.522] [INFO] cheese - inserting 1000 documents. first: Am ol Deyay-e Yek and last: Hayaviyyeh -[2018-02-13T00:26:28.541] [INFO] cheese - inserting 1000 documents. first: Real Madrid C.F. season 1902–03 and last: Jānis Cimze -[2018-02-13T00:26:28.550] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:26:28.577] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:26:28.629] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:26:28.641] [INFO] cheese - inserting 1000 documents. first: Handheld museum guide and last: Für immer (Warlock song) -[2018-02-13T00:26:28.811] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:26:28.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/2003 Doubles Champion and last: File:American Tourister logo.png -[2018-02-13T00:26:28.898] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:29.016] [INFO] cheese - inserting 1000 documents. first: Elizabeth Mary Driver and last: Berrya tahitensis -[2018-02-13T00:26:29.051] [INFO] cheese - inserting 1000 documents. first: Khersheh and last: United States Post Office-Visalia Town Center Station -[2018-02-13T00:26:29.058] [INFO] cheese - inserting 1000 documents. first: Burial (Extol album) and last: Lob Scows -[2018-02-13T00:26:29.069] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:29.094] [INFO] cheese - inserting 1000 documents. first: La Plata, Missouri and last: Hampton, Nebraska -[2018-02-13T00:26:29.112] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:26:29.121] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:26:29.147] [INFO] cheese - inserting 1000 documents. first: Portal:Judaism/Weekly Torah portion/Bereishit and last: Wikipedia:WikiProject Christianity/Church of the Nazarene work group/Category -[2018-02-13T00:26:29.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Dermovision and last: Wikipedia:Votes for deletion/Yara-ma-ya-hoo -[2018-02-13T00:26:29.179] [INFO] cheese - batch complete in: 1.613 secs -[2018-02-13T00:26:29.203] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:26:29.206] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:26:29.311] [INFO] cheese - inserting 1000 documents. first: Paleochannel and last: Forgive me (leona song) -[2018-02-13T00:26:29.374] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:26:29.433] [INFO] cheese - inserting 1000 documents. first: Category:Bahrain-Qatar relations and last: Tampureh-ye Ruisheyd -[2018-02-13T00:26:29.451] [INFO] cheese - inserting 1000 documents. first: Berrya vescoana and last: Lifted Up (1985) -[2018-02-13T00:26:29.462] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:26:29.489] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Frequencies of Brilliance and last: Touch-Tone Terrorists -[2018-02-13T00:26:29.507] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:29.549] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:29.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Christianity/Church of the Nazarene work group/Content and last: Up in the Air (soundtrack) -[2018-02-13T00:26:29.616] [INFO] cheese - inserting 1000 documents. first: File:CM big snow.jpg and last: Taranto air strike -[2018-02-13T00:26:29.615] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:29.673] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:29.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Proxymed and last: Monkey Mia, Western Australia -[2018-02-13T00:26:29.792] [INFO] cheese - inserting 1000 documents. first: Template:User Ps 3 and last: Category:1995 establishments in New Zealand -[2018-02-13T00:26:29.799] [INFO] cheese - inserting 1000 documents. first: FC Shakhtar Donetsk Reserves and Youth Team and last: Rugby Quebec -[2018-02-13T00:26:29.803] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:26:29.830] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:26:29.860] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:26:29.995] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SHM right/2 and last: File:Kurac, pička, govno, sisa.jpg -[2018-02-13T00:26:30.026] [INFO] cheese - inserting 1000 documents. first: Smooth horsetail and last: Udarnenskoye Urban Settlement -[2018-02-13T00:26:30.036] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:30.077] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:26:30.109] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of Ecuador and last: Wikipedia:Articles for deletion/Tommaso Cardile -[2018-02-13T00:26:30.150] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:26:30.182] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Camilla Hall and last: Ray Hayworth -[2018-02-13T00:26:30.207] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:26:30.271] [INFO] cheese - inserting 1000 documents. first: Bettadasanapura, Bangalore and last: Sehjowal chak no.11 -[2018-02-13T00:26:30.312] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:30.362] [INFO] cheese - inserting 1000 documents. first: File:The Apple (1980) Soundtrack.jpg and last: Meigs County (disambiguation) -[2018-02-13T00:26:30.403] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:26:30.476] [INFO] cheese - inserting 1000 documents. first: No Me Sé Rajar and last: Pressure (Billy Ocean song) -[2018-02-13T00:26:30.479] [INFO] cheese - inserting 1000 documents. first: Category:French classical musicians by instrument and last: Mississippi Marine Brigade -[2018-02-13T00:26:30.485] [INFO] cheese - inserting 1000 documents. first: Plains lovegrass and last: File:Qian Xiuling cropped square in 1933.JPG -[2018-02-13T00:26:30.496] [INFO] cheese - inserting 1000 documents. first: W. R. Ogilvie-Grant and last: Scharley -[2018-02-13T00:26:30.524] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:26:30.533] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:26:30.539] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:30.559] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:26:30.639] [INFO] cheese - inserting 1000 documents. first: Hordville, Nebraska and last: Shamong Township, New Jersey -[2018-02-13T00:26:30.689] [INFO] cheese - inserting 1000 documents. first: Choreutis incisalis and last: Chiaia funicular -[2018-02-13T00:26:30.692] [INFO] cheese - inserting 1000 documents. first: File:Joshiraku manga volume 1 cover.jpg and last: Ground Master 400 -[2018-02-13T00:26:30.719] [INFO] cheese - batch complete in: 1.54 secs -[2018-02-13T00:26:30.744] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:26:30.750] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:30.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Integration of Internet Explorer and Windows and last: Wikipedia:Votes for deletion/Canvasion -[2018-02-13T00:26:30.912] [INFO] cheese - inserting 1000 documents. first: Spatzenhausen and last: Underground rivers in London -[2018-02-13T00:26:30.916] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:26:30.939] [INFO] cheese - inserting 1000 documents. first: Henry Winslow Woollett and last: 1994 European Athletics Championships – Women's 100 metres hurdles -[2018-02-13T00:26:30.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/schylaske.co.nf and last: Template:Infobox legislative election/sandbox -[2018-02-13T00:26:30.959] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:26:30.989] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:26:30.999] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:26:31.220] [INFO] cheese - inserting 1000 documents. first: Neuchâtel Open SBS Trophy and last: Low Impact Ion Cannon -[2018-02-13T00:26:31.277] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:26:31.326] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Good Shepherd (2006 film) and last: Wikipedia:Votes for deletion/Alfredo M. Bonanno -[2018-02-13T00:26:31.327] [INFO] cheese - inserting 1000 documents. first: Isovaleryl-coa dehydrogenase and last: Template:Nebraska Pageant Winners -[2018-02-13T00:26:31.379] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:26:31.378] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:31.476] [INFO] cheese - inserting 1000 documents. first: Falla monument and last: 2003 Greenlandic Men's Football Championship -[2018-02-13T00:26:31.479] [INFO] cheese - inserting 1000 documents. first: Münsterhausen and last: Callan -[2018-02-13T00:26:31.517] [INFO] cheese - inserting 1000 documents. first: Alt Pirineu i Aran and last: List of international organization leaders in 2008 -[2018-02-13T00:26:31.525] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:26:31.548] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:31.580] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:26:31.675] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Carlo Beenakker and last: Trinity Island -[2018-02-13T00:26:31.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space 1026 and last: File:Energy Pointer Sisters album.jpg -[2018-02-13T00:26:31.716] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:26:31.729] [INFO] cheese - inserting 1000 documents. first: Category:1955 Canadian television series endings and last: List of names for the Volkswagen Type 1 -[2018-02-13T00:26:31.731] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:31.801] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:26:31.915] [INFO] cheese - inserting 1000 documents. first: Michigan–Minnesota football rivalry and last: Steriruncic 7-cube -[2018-02-13T00:26:31.958] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:31.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Justin Sofio and last: Robert H. Waterman Jr. -[2018-02-13T00:26:31.980] [INFO] cheese - inserting 1000 documents. first: Velaga Dizdarevic and last: Ponder (horse) -[2018-02-13T00:26:31.993] [INFO] cheese - inserting 1000 documents. first: Dermotoxins and last: James Rayside -[2018-02-13T00:26:31.999] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:26:32.024] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:26:32.047] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:32.125] [INFO] cheese - inserting 1000 documents. first: Pride Of The Prairie and last: German submarine U-393 -[2018-02-13T00:26:32.166] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:26:32.208] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Radio KoL and last: Wikipedia:Votes for deletion/Four dumb kids -[2018-02-13T00:26:32.239] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:26:32.269] [INFO] cheese - inserting 1000 documents. first: Labinskiy District and last: Wikipedia:Meetup/Los Angeles -[2018-02-13T00:26:32.310] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:26:32.354] [INFO] cheese - inserting 1000 documents. first: Puerto Limon, Costa Rica and last: Sutton School -[2018-02-13T00:26:32.392] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:26:32.396] [INFO] cheese - inserting 1000 documents. first: Steriruncicantic 7-cube and last: Revolt (Muse song) -[2018-02-13T00:26:32.402] [INFO] cheese - inserting 1000 documents. first: Batavian Society of Arts and Sciences and last: Henry Justin Alan -[2018-02-13T00:26:32.447] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:26:32.460] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:26:32.513] [INFO] cheese - inserting 1000 documents. first: Kjersti Horn and last: West Virginia University-Morgantown -[2018-02-13T00:26:32.545] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:26:32.577] [INFO] cheese - inserting 1000 documents. first: Southampton Township, New Jersey and last: East Otto, New York -[2018-02-13T00:26:32.646] [INFO] cheese - inserting 1000 documents. first: Peter Kivy and last: Category:People from Valparaíso Province -[2018-02-13T00:26:32.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Chigozie okonkwo and last: Assonet Bay -[2018-02-13T00:26:32.695] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:32.730] [INFO] cheese - batch complete in: 2.011 secs -[2018-02-13T00:26:32.746] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:26:32.819] [INFO] cheese - inserting 1000 documents. first: Albertville, AL μSA and last: History of the constellations -[2018-02-13T00:26:32.832] [INFO] cheese - inserting 1000 documents. first: Cleo Merode and last: Arizona Route 202 -[2018-02-13T00:26:32.834] [INFO] cheese - inserting 1000 documents. first: London City & Midland Bank and last: Liubeshiv -[2018-02-13T00:26:32.872] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:32.884] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:26:32.894] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:32.915] [INFO] cheese - inserting 1000 documents. first: West Virginia University Morgantown and last: Victory Square War Memorial -[2018-02-13T00:26:32.958] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:26:33.141] [INFO] cheese - inserting 1000 documents. first: Joe Devine (scout) and last: Wedding arrhae -[2018-02-13T00:26:33.390] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:26:33.519] [INFO] cheese - inserting 1000 documents. first: Jonathan Dorr Bradley and last: United Arab Emirates Bahrain relations -[2018-02-13T00:26:33.544] [INFO] cheese - inserting 1000 documents. first: Hon Alexandra Knatchbull and last: File:Hand water pump.jpg -[2018-02-13T00:26:33.645] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:26:33.689] [INFO] cheese - inserting 1000 documents. first: Mme. Sun Yat-sen and last: Matic Kotnik -[2018-02-13T00:26:33.694] [INFO] cheese - inserting 1000 documents. first: David Preiss and last: Pierre Lambert de la Motte -[2018-02-13T00:26:33.738] [INFO] cheese - inserting 1000 documents. first: Hassō no kamae and last: File:Cyrilalbum.jpg -[2018-02-13T00:26:33.812] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T00:26:33.902] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:26:33.907] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T00:26:34.016] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T00:26:34.209] [INFO] cheese - inserting 1000 documents. first: Bahrain United Arab Emirates relations and last: Gagea gussonei -[2018-02-13T00:26:34.313] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:26:34.354] [INFO] cheese - inserting 1000 documents. first: Naik, J. P. and last: Ankara Railway Station -[2018-02-13T00:26:34.377] [INFO] cheese - inserting 1000 documents. first: Hassan Mohamud and last: Virgilio Rosario -[2018-02-13T00:26:34.404] [INFO] cheese - inserting 1000 documents. first: Júlio de Castilhos, RS and last: Traditional games -[2018-02-13T00:26:34.405] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Kinkead and last: Wikipedia:Articles for deletion/Eeth Koth -[2018-02-13T00:26:34.420] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:26:34.481] [INFO] cheese - inserting 1000 documents. first: Crossing Guard and last: A Letter to a Hindu -[2018-02-13T00:26:34.479] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:26:34.486] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T00:26:34.511] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:26:34.603] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:26:34.803] [INFO] cheese - inserting 1000 documents. first: Bundesvision Song Contest 2010 and last: Portal:Current events/March 2014/Sidebar -[2018-02-13T00:26:34.861] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:26:34.907] [INFO] cheese - inserting 1000 documents. first: File:Sword of chaos.jpg and last: James Allan (disambiguation) -[2018-02-13T00:26:34.919] [INFO] cheese - inserting 1000 documents. first: Department of Primary Industry and last: Weeds -[2018-02-13T00:26:34.919] [INFO] cheese - inserting 1000 documents. first: Circus Redickuless and last: Vita Bergen -[2018-02-13T00:26:34.942] [INFO] cheese - inserting 1000 documents. first: File:G fr navarea-logo.png and last: Arne & Carlos -[2018-02-13T00:26:34.951] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:34.954] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:34.959] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:26:35.009] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:26:35.090] [INFO] cheese - inserting 1000 documents. first: 2009 IPP Trophy and last: Kathleen Cotter -[2018-02-13T00:26:35.155] [INFO] cheese - inserting 1000 documents. first: East Randolph, New York and last: Pitcairn, New York -[2018-02-13T00:26:35.244] [INFO] cheese - inserting 1000 documents. first: False helmet orchid and last: Tommy Gunn (pornographic actor) -[2018-02-13T00:26:35.253] [INFO] cheese - inserting 1000 documents. first: Víctor Manuelle and last: Wikipedia:Votes for deletion/David McKenzie -[2018-02-13T00:26:35.253] [INFO] cheese - batch complete in: 2.523 secs -[2018-02-13T00:26:35.260] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:26:35.302] [INFO] cheese - inserting 1000 documents. first: 1952 Nippon Professional Baseball season and last: Lord Shield -[2018-02-13T00:26:35.339] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:26:35.346] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:26:35.392] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:35.395] [INFO] cheese - inserting 1000 documents. first: Black Suit and last: List of Registered Historic Places in Albany County, New York -[2018-02-13T00:26:35.410] [INFO] cheese - inserting 1000 documents. first: Wallum sedge frog and last: Close Encounters of the Fifth Kind -[2018-02-13T00:26:35.445] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:26:35.478] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:26:35.628] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/Gryphon2 and last: Postlarva -[2018-02-13T00:26:35.661] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Sakai, software project and last: Wikipedia:Votes for deletion/Sleepyshat -[2018-02-13T00:26:35.699] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:35.714] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:26:35.779] [INFO] cheese - inserting 1000 documents. first: Category:2010s disestablishments in Ireland and last: 2000 Oklahoma State Cowboys football team -[2018-02-13T00:26:35.813] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:35.814] [INFO] cheese - inserting 1000 documents. first: File:Official Cover Art of Amelia and Me by Heather Stemp.png and last: Colin McLean -[2018-02-13T00:26:35.837] [INFO] cheese - inserting 1000 documents. first: Arthur Devlin (disambiguation) and last: File:Grimus cover.jpg -[2018-02-13T00:26:35.865] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:26:35.886] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:26:35.924] [INFO] cheese - inserting 1000 documents. first: Category:1876 poems and last: Lunar letters -[2018-02-13T00:26:35.975] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:36.315] [INFO] cheese - inserting 1000 documents. first: Libertarian perspectives on marriage and last: Acadamh Ríoga na hÉireann -[2018-02-13T00:26:36.380] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:26:36.455] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Asuka Fukuda and last: Wikipedia:Articles for deletion/.hack/SIGN -[2018-02-13T00:26:36.459] [INFO] cheese - inserting 1000 documents. first: Béla Bácskai and last: Scouting in Orkney -[2018-02-13T00:26:36.475] [INFO] cheese - inserting 1000 documents. first: Lycaenesthes smithi and last: Portal:Politics/Selected article/18 -[2018-02-13T00:26:36.489] [INFO] cheese - inserting 1000 documents. first: Category:International schools in Gabon and last: Wikipedia:CYCMISSING -[2018-02-13T00:26:36.525] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:26:36.538] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:26:36.539] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:26:36.585] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:26:36.671] [INFO] cheese - inserting 1000 documents. first: Italian cricket team and last: Du Shi -[2018-02-13T00:26:36.744] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:26:36.955] [INFO] cheese - inserting 1000 documents. first: File:Logo of the NSLF.jpg and last: Category:2000 disestablishments in Israel -[2018-02-13T00:26:36.957] [INFO] cheese - inserting 1000 documents. first: Your Starter for... and last: Jaama -[2018-02-13T00:26:37.006] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:26:37.014] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:37.047] [INFO] cheese - inserting 1000 documents. first: Nèiměnggǔ and last: KZHN (AM) -[2018-02-13T00:26:37.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Cycling Missing and last: Lanceleaf thoroughwort -[2018-02-13T00:26:37.108] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:26:37.114] [INFO] cheese - inserting 1000 documents. first: Tere Mere Sapne (1996 film) and last: Qadi Numan -[2018-02-13T00:26:37.112] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:37.125] [INFO] cheese - inserting 1000 documents. first: Rensselaer Falls, New York and last: Brevard, North Carolina -[2018-02-13T00:26:37.155] [INFO] cheese - inserting 1000 documents. first: Ivory Joe Hunter and last: Compression Labs Inc. -[2018-02-13T00:26:37.159] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:37.218] [INFO] cheese - batch complete in: 1.965 secs -[2018-02-13T00:26:37.220] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:26:37.414] [INFO] cheese - inserting 1000 documents. first: Jaama (Illuka) and last: Rarities (The Beatles US album) -[2018-02-13T00:26:37.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Global Allergy Network and last: Andreas Bomba -[2018-02-13T00:26:37.452] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:37.453] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:37.494] [INFO] cheese - inserting 1000 documents. first: False fennel and last: Jones Island (South Australia) -[2018-02-13T00:26:37.536] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:37.569] [INFO] cheese - inserting 1000 documents. first: Danny Spanos and last: Portal:Poetry/Quotes/2 -[2018-02-13T00:26:37.625] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:37.715] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Worcestershire and last: File:SebastianArcelus2008.jpg -[2018-02-13T00:26:37.767] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:26:37.806] [INFO] cheese - inserting 1000 documents. first: Shir Ali and last: Category:Transport infrastructure completed in 1823 -[2018-02-13T00:26:37.807] [INFO] cheese - inserting 1000 documents. first: Chaudhry Rehmat Ali’s and last: Wikipedia:WikiProject Missing encyclopedic articles/Antarctica/R1 -[2018-02-13T00:26:37.837] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:37.842] [INFO] cheese - inserting 1000 documents. first: Portal:Volcanoes/Selected article/16 and last: Thomas Björn Open -[2018-02-13T00:26:37.883] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:26:37.899] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:37.960] [INFO] cheese - inserting 1000 documents. first: Bullet Babe and last: Gagea heldreichii -[2018-02-13T00:26:38.035] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:38.142] [INFO] cheese - inserting 1000 documents. first: Asplundia allenii and last: Template:Local Government Areas of the Northern Territory -[2018-02-13T00:26:38.189] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:26:38.263] [INFO] cheese - inserting 1000 documents. first: File:Galemys pyrenaicus 01 by-dpc.jpg and last: Category:United States presidential campaigns, 2008 -[2018-02-13T00:26:38.274] [INFO] cheese - inserting 1000 documents. first: 1360 AM and last: Norwest Center (Minneapolis) -[2018-02-13T00:26:38.304] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:38.336] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:26:38.499] [INFO] cheese - inserting 1000 documents. first: Category:Anglican bishops of Calgary and last: Helen Quintana Cordero -[2018-02-13T00:26:38.565] [INFO] cheese - inserting 1000 documents. first: Ayiya and last: Cortland Winn -[2018-02-13T00:26:38.644] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:26:38.687] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:26:38.733] [INFO] cheese - inserting 1000 documents. first: Gagea montana and last: Wikipedia:Sockpuppet investigations/Mr.sahota -[2018-02-13T00:26:38.815] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:26:38.885] [INFO] cheese - inserting 1000 documents. first: Haydn's Opus 76 String Quartets and last: Template:Ss icon -[2018-02-13T00:26:38.913] [INFO] cheese - inserting 1000 documents. first: Rosman, North Carolina and last: Mariemont, Ohio -[2018-02-13T00:26:38.926] [INFO] cheese - inserting 1000 documents. first: Goverment of Pakistan and last: Category:Organizations based in Kobe -[2018-02-13T00:26:38.933] [INFO] cheese - inserting 1000 documents. first: File:Gunnerkrigg SecondTreatise.jpg and last: Miroslav Klinger -[2018-02-13T00:26:38.934] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:26:38.985] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:26:39.015] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:26:39.026] [INFO] cheese - batch complete in: 1.807 secs -[2018-02-13T00:26:39.061] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Melvin and Teddy and last: Wikipedia:Votes for deletion/L'inderdit -[2018-02-13T00:26:39.101] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:26:39.113] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Finalfantasy23 and last: Carl, Duke of Ostrogothland -[2018-02-13T00:26:39.156] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:26:39.191] [INFO] cheese - inserting 1000 documents. first: Lucky Buddha Beer and last: Hangard Wood -[2018-02-13T00:26:39.240] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:39.329] [INFO] cheese - inserting 1000 documents. first: Al-Saika and last: Wikipedia:Votes for deletion/Axelrodian education -[2018-02-13T00:26:39.369] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:26:39.376] [INFO] cheese - inserting 1000 documents. first: Zabłocki, Janusz and last: Court of Summary Jurisdiction -[2018-02-13T00:26:39.389] [INFO] cheese - inserting 1000 documents. first: Tony the gun bonello and last: Ballybrown GAA -[2018-02-13T00:26:39.414] [INFO] cheese - inserting 1000 documents. first: Robin White (African Journalist) and last: History of Wrocław -[2018-02-13T00:26:39.430] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:39.446] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:26:39.504] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:39.713] [INFO] cheese - inserting 1000 documents. first: Deutsch-Französisches Gymnasium Freiburg im Breisgau and last: Cryptolechia vestalis -[2018-02-13T00:26:39.722] [INFO] cheese - inserting 1000 documents. first: Topsey Sinden and last: Sudbury municipal election, 1950 -[2018-02-13T00:26:39.775] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:26:39.791] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:26:39.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Meat helmet and last: Template:European Poker Awards Player of the Year -[2018-02-13T00:26:39.865] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:39.978] [INFO] cheese - inserting 1000 documents. first: File:Oklahoma City Oklahoma.jpg and last: John Hunt (New South Wales politician) -[2018-02-13T00:26:40.049] [INFO] cheese - inserting 1000 documents. first: Template:Louisiana–Monroe Warhawks men's basketball coach navbox and last: Pop'n Music Script -[2018-02-13T00:26:40.060] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:26:40.076] [INFO] cheese - inserting 1000 documents. first: William David Pearlman and last: Category:Unincorporated communities in Santa Rosa County, Florida -[2018-02-13T00:26:40.119] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:26:40.124] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:26:40.156] [INFO] cheese - inserting 1000 documents. first: Harpalyce albella and last: Witch mark -[2018-02-13T00:26:40.195] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:26:40.320] [INFO] cheese - inserting 1000 documents. first: East Central Texas forests and last: Jakabaring Stadium -[2018-02-13T00:26:40.363] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:26:40.433] [INFO] cheese - inserting 1000 documents. first: Portal:Toys/Selected article/14 and last: Athletics at the 2012 Summer Paralympics – Women's 200 metres T34 -[2018-02-13T00:26:40.502] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:40.507] [INFO] cheese - inserting 1000 documents. first: South Dakota Highway 89 and last: TV 69 -[2018-02-13T00:26:40.522] [INFO] cheese - inserting 1000 documents. first: Selenite (ion) and last: Harry Lumley (baseball) -[2018-02-13T00:26:40.569] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:40.578] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:26:40.592] [INFO] cheese - inserting 1000 documents. first: Pulmonary gas exchange and last: Category:Grade I listed ships -[2018-02-13T00:26:40.630] [INFO] cheese - inserting 1000 documents. first: Monfort Heights East, Ohio and last: Goldsby, Oklahoma -[2018-02-13T00:26:40.630] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:40.695] [INFO] cheese - inserting 1000 documents. first: Judy Coser and last: SQH -[2018-02-13T00:26:40.718] [INFO] cheese - batch complete in: 1.691 secs -[2018-02-13T00:26:40.749] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:26:40.754] [INFO] cheese - inserting 1000 documents. first: Geoffrey peterson and last: File:Clark Shaughnessy.jpg -[2018-02-13T00:26:40.797] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:26:40.923] [INFO] cheese - inserting 1000 documents. first: File:The Fabled Fourth Graders of Aesop Elementary School.jpg and last: No Fond Return Of Love -[2018-02-13T00:26:40.960] [INFO] cheese - inserting 1000 documents. first: Gatekeepers (game show) and last: Category:Academics of the Helsinki University of Technology -[2018-02-13T00:26:40.980] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:26:40.988] [INFO] cheese - inserting 1000 documents. first: Olean, NY μSA and last: Kingsville, TX μSA -[2018-02-13T00:26:41.010] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:26:41.044] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:26:41.055] [INFO] cheese - inserting 1000 documents. first: Kodakara and last: JFK National Historic Site -[2018-02-13T00:26:41.068] [INFO] cheese - inserting 1000 documents. first: Earthquakes in 1913 and last: 1927 in the Philippines -[2018-02-13T00:26:41.101] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:41.121] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:26:41.185] [INFO] cheese - inserting 1000 documents. first: The Moon and the Nightspirit and last: PADM -[2018-02-13T00:26:41.227] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:41.255] [INFO] cheese - inserting 1000 documents. first: A Man Rides Through and last: File:SchoolsPlusLogo.jpg -[2018-02-13T00:26:41.298] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:26:41.402] [INFO] cheese - inserting 1000 documents. first: Category:1995 establishments in the Bahamas and last: Bell 47-G2 -[2018-02-13T00:26:41.421] [INFO] cheese - inserting 1000 documents. first: Game Design Workshop and last: Gayton, Merseyside -[2018-02-13T00:26:41.448] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:26:41.476] [INFO] cheese - inserting 1000 documents. first: 1928 in the Philippines and last: Category:1786 establishments in Virginia -[2018-02-13T00:26:41.509] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:41.568] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:41.651] [INFO] cheese - inserting 1000 documents. first: Garcinia prainiana and last: Stock Market Regulation in the United States -[2018-02-13T00:26:41.658] [INFO] cheese - inserting 1000 documents. first: Template:USCongRep/MD/81 and last: Wikipedia:Articles for deletion/List of streets in Manchester -[2018-02-13T00:26:41.703] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:41.713] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:26:41.722] [INFO] cheese - inserting 1000 documents. first: Vincent Obsitnik and last: Utah State Route 66 (1931) -[2018-02-13T00:26:41.817] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:41.936] [INFO] cheese - inserting 1000 documents. first: 1967 Iowa–Minnesota tornado outbreak and last: File:Rago1470 160AJ MiddxUni.JPG -[2018-02-13T00:26:41.946] [INFO] cheese - inserting 1000 documents. first: Innovisions and last: Gnathifera aphronesa -[2018-02-13T00:26:41.962] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Cylindrophyllum and last: Template:Bfidb series/doc -[2018-02-13T00:26:41.989] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:41.990] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:42.024] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:26:42.189] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of County Sligo and last: Executive Council of Massachusetts -[2018-02-13T00:26:42.190] [INFO] cheese - inserting 1000 documents. first: Template:Social Democratic Party of Switzerland/meta/color and last: Jason Holley -[2018-02-13T00:26:42.220] [INFO] cheese - inserting 1000 documents. first: Belangalo State Forest and last: Kraul Mountains -[2018-02-13T00:26:42.245] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:42.266] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:26:42.270] [INFO] cheese - inserting 1000 documents. first: Newcastle, Oklahoma and last: Strausstown, Pennsylvania -[2018-02-13T00:26:42.292] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:42.368] [INFO] cheese - batch complete in: 1.65 secs -[2018-02-13T00:26:42.395] [INFO] cheese - inserting 1000 documents. first: File:Gdleen novel cover vol 1.jpg and last: Athletics at the 2007 Summer Universiade – Women's 4 × 400 metres relay -[2018-02-13T00:26:42.403] [INFO] cheese - inserting 1000 documents. first: Gnathifera eurybias and last: Team Øster Hus-Ridley -[2018-02-13T00:26:42.408] [INFO] cheese - inserting 1000 documents. first: Interstate 90 in Wyoming and last: List of Canadian ambassadors to Israel -[2018-02-13T00:26:42.451] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:26:42.464] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:42.520] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:26:42.666] [INFO] cheese - inserting 1000 documents. first: Proper divisors and last: Wikipedia:Articles for deletion/Barikad Crew -[2018-02-13T00:26:42.692] [INFO] cheese - inserting 1000 documents. first: Oslo Cup and last: Lists of English words of international origin -[2018-02-13T00:26:42.713] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:42.741] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:42.784] [INFO] cheese - inserting 1000 documents. first: Barbourville and last: Ton Class Minesweepers -[2018-02-13T00:26:42.844] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:26:42.865] [INFO] cheese - inserting 1000 documents. first: Duwayne Smart and last: Category:Songs written by Tomomi Ogawa -[2018-02-13T00:26:42.873] [INFO] cheese - inserting 1000 documents. first: Dover street market and last: GT3 -[2018-02-13T00:26:42.879] [INFO] cheese - inserting 1000 documents. first: Category:Austria–Poland relations and last: Frost Bank Tower (San Antonio) -[2018-02-13T00:26:42.961] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:26:42.968] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:43.013] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:43.160] [INFO] cheese - inserting 1000 documents. first: Berceuse (in C major) Op. 2, for piano and last: Saint Vitalis (disambiguation) -[2018-02-13T00:26:43.205] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:26:43.233] [INFO] cheese - inserting 1000 documents. first: Meyer-Hanno and last: File:The Heritage Fleet logo.png -[2018-02-13T00:26:43.273] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:26:43.367] [INFO] cheese - inserting 1000 documents. first: Halcyon Class Minesweepers and last: Sorrent -[2018-02-13T00:26:43.423] [INFO] cheese - inserting 1000 documents. first: John Francis Hayes and last: File:The Last Outlaw 1927 Poster.jpg -[2018-02-13T00:26:43.433] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:43.472] [INFO] cheese - inserting 1000 documents. first: Category:Bluffton Beavers and last: Cotul Ostritei -[2018-02-13T00:26:43.487] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:26:43.493] [INFO] cheese - inserting 1000 documents. first: Daniel L. Ackman and last: M8 Buford -[2018-02-13T00:26:43.559] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:26:43.564] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:26:43.655] [INFO] cheese - inserting 1000 documents. first: PAVC and last: John Fleming (1743-1802) -[2018-02-13T00:26:43.685] [INFO] cheese - inserting 1000 documents. first: John Rolph (judge) and last: Mahmoad Abdah v. George W. Bush -[2018-02-13T00:26:43.698] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:43.733] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:26:43.813] [INFO] cheese - inserting 1000 documents. first: Tilden Township, Berks County, Pennsylvania and last: Lima, Pennsylvania -[2018-02-13T00:26:43.868] [INFO] cheese - inserting 1000 documents. first: René Sully Prudhomme and last: Cariamaen -[2018-02-13T00:26:43.913] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T00:26:43.929] [INFO] cheese - inserting 1000 documents. first: Mark Milligan and last: Wikipedia:Articles for deletion/Prussian Blue (band) -[2018-02-13T00:26:43.929] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:44.009] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:26:44.020] [INFO] cheese - inserting 1000 documents. first: Mălinești and last: Bankruptcy in Puerto Rico -[2018-02-13T00:26:44.059] [INFO] cheese - inserting 1000 documents. first: Sparta Township, Knox County, Illinois and last: Category:Hilltop Hoods members -[2018-02-13T00:26:44.084] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:26:44.102] [INFO] cheese - inserting 1000 documents. first: File:War-turks-persian.jpg and last: Metrorail Witwatersrand -[2018-02-13T00:26:44.120] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:26:44.161] [INFO] cheese - inserting 1000 documents. first: C. Burton Hotel and last: Flor Silvestre (1942 Film) -[2018-02-13T00:26:44.160] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:26:44.253] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:26:44.356] [INFO] cheese - inserting 1000 documents. first: File:Official Rain's Coming World Tour poster.jpg and last: Denver (song) -[2018-02-13T00:26:44.395] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:44.472] [INFO] cheese - inserting 1000 documents. first: Darcy law and last: File:Cutleraflatmancover.jpg -[2018-02-13T00:26:44.479] [INFO] cheese - inserting 1000 documents. first: Category:Argentine male writers and last: Template:2015–16 National League table -[2018-02-13T00:26:44.523] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:26:44.548] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:26:44.598] [INFO] cheese - inserting 1000 documents. first: Van Frassen and last: Striker (comic) -[2018-02-13T00:26:44.593] [INFO] cheese - inserting 1000 documents. first: Metrorail (Johannesburg) and last: Alvania moniziana -[2018-02-13T00:26:44.644] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:26:44.668] [INFO] cheese - inserting 1000 documents. first: Çay Qaraqoyunlu and last: Nseries -[2018-02-13T00:26:44.672] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:26:44.730] [INFO] cheese - inserting 1000 documents. first: United Kingdom - Mexico relations and last: Alex Byrne -[2018-02-13T00:26:44.729] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:26:44.760] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:44.948] [INFO] cheese - inserting 1000 documents. first: Category:War films based on actual events and last: Chairman Drek -[2018-02-13T00:26:44.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Four Arms Of Value (FAV) and last: NZ History online -[2018-02-13T00:26:44.998] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:44.998] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:45.097] [INFO] cheese - inserting 1000 documents. first: Category:People's Progressive Alliance (Mauritania) politicians and last: Kirk beadle -[2018-02-13T00:26:45.153] [INFO] cheese - inserting 1000 documents. first: File:Klu-heli-2.jpeg and last: File:Kaldaljos.jpg -[2018-02-13T00:26:45.155] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:45.195] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:45.197] [INFO] cheese - inserting 1000 documents. first: Chimney Point, Vermont and last: Steve Thomas (ice hockey) -[2018-02-13T00:26:45.200] [INFO] cheese - inserting 1000 documents. first: Schizodon intermedius and last: Bristol Theatre Royal -[2018-02-13T00:26:45.270] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:26:45.277] [INFO] cheese - inserting 1000 documents. first: Linwood, Pennsylvania and last: North Catasauqua, Pennsylvania -[2018-02-13T00:26:45.284] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:26:45.560] [INFO] cheese - batch complete in: 1.647 secs -[2018-02-13T00:26:45.563] [INFO] cheese - inserting 1000 documents. first: Cipemastat and last: Telengana Rashtriya Samiti -[2018-02-13T00:26:45.577] [INFO] cheese - inserting 1000 documents. first: Template:San Diego Chargers 2015 draft navbox and last: Tulipa erythronioides -[2018-02-13T00:26:45.616] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:26:45.633] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:26:45.709] [INFO] cheese - inserting 1000 documents. first: 1983–84 Newcastle United F.C. season and last: Jawlan -[2018-02-13T00:26:45.720] [INFO] cheese - inserting 1000 documents. first: Cape Freckled Nightjar and last: Athletics at the 2012 Summer Paralympics – Men's discus throw F54-6 -[2018-02-13T00:26:45.758] [INFO] cheese - inserting 1000 documents. first: Bruneau Hot Springsnail and last: Ni no kuni -[2018-02-13T00:26:45.756] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:26:45.774] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:45.843] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:26:45.946] [INFO] cheese - inserting 1000 documents. first: Vyborg Governorate and last: Wikipedia:Votes for deletion/Ruius Martinus -[2018-02-13T00:26:45.999] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:26:46.077] [INFO] cheese - inserting 1000 documents. first: Tulipa latifolia and last: List of That '70s Show DVDs -[2018-02-13T00:26:46.114] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:46.211] [INFO] cheese - inserting 1000 documents. first: Granite City, Wisconsin and last: Ang Umaga -[2018-02-13T00:26:46.213] [INFO] cheese - inserting 1000 documents. first: Category:Hotels in the Palestinian territories and last: Secretary of State of Spain -[2018-02-13T00:26:46.254] [INFO] cheese - inserting 1000 documents. first: Noordin Mohammad Top and last: Distance-vector routing protocols -[2018-02-13T00:26:46.257] [INFO] cheese - inserting 1000 documents. first: Category:Ricky Nelson songs and last: Draggle -[2018-02-13T00:26:46.273] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:46.276] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:46.277] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:26:46.301] [INFO] cheese - inserting 1000 documents. first: Mother Mother and last: USS Robin Hood (1861) -[2018-02-13T00:26:46.321] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:46.360] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:26:46.470] [INFO] cheese - inserting 1000 documents. first: Trihelium and last: Concave Cake -[2018-02-13T00:26:46.536] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:26:46.632] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gifting way and last: Wikipedia:Votes for deletion/Ramunas Geciauskas -[2018-02-13T00:26:46.707] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:46.712] [INFO] cheese - inserting 1000 documents. first: Abnér and last: Category:University of Texas at Houston -[2018-02-13T00:26:46.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sic 'em Bears and last: File:Wismut Kristall und 1cm3 Wuerfel.jpg -[2018-02-13T00:26:46.715] [INFO] cheese - inserting 1000 documents. first: 1966 Singapore Grand Prix and last: Parklands, South Africa -[2018-02-13T00:26:46.754] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:46.761] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:46.768] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:26:46.793] [INFO] cheese - inserting 1000 documents. first: Kiss Me Again and last: Don Bessillieu -[2018-02-13T00:26:46.843] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:26:46.918] [INFO] cheese - inserting 1000 documents. first: Northampton, Pennsylvania and last: Bradley, South Carolina -[2018-02-13T00:26:46.937] [INFO] cheese - inserting 1000 documents. first: Marie Félicité Brosset and last: Category:Japanese international schools in South Korea -[2018-02-13T00:26:46.986] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:46.994] [INFO] cheese - batch complete in: 1.434 secs -[2018-02-13T00:26:47.052] [INFO] cheese - inserting 1000 documents. first: Category:Prisoners sentenced to death by Niger and last: Pattinarendrapur -[2018-02-13T00:26:47.073] [INFO] cheese - inserting 1000 documents. first: File:Tom Wesselmann.jpg and last: Devils apple -[2018-02-13T00:26:47.091] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:26:47.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/GK Wien-Southeast and last: The Jackson 5 Live -[2018-02-13T00:26:47.124] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:26:47.152] [INFO] cheese - inserting 1000 documents. first: American Osteopathic Board of Physical Medicine and Rehabilitation and last: Corps-de-logis -[2018-02-13T00:26:47.175] [INFO] cheese - inserting 1000 documents. first: Dennis Matthies and last: Blessed by a Broken Heart -[2018-02-13T00:26:47.196] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:47.201] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:47.218] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:26:47.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/UMassBoston and last: Category:Mountain ranges of Hesse -[2018-02-13T00:26:47.436] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:47.480] [INFO] cheese - inserting 1000 documents. first: SUC (disambiguation) and last: Lakeview Islands, Lexington -[2018-02-13T00:26:47.517] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:47.565] [INFO] cheese - inserting 1000 documents. first: Devils Apple and last: Vizezemin -[2018-02-13T00:26:47.600] [INFO] cheese - inserting 1000 documents. first: Christopher Stevens (disambiguation) and last: Don Chamberlain -[2018-02-13T00:26:47.660] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:47.692] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:26:47.718] [INFO] cheese - inserting 1000 documents. first: Bobby Whitlock and last: Diya' al-Dawla -[2018-02-13T00:26:47.748] [INFO] cheese - inserting 1000 documents. first: File:Pogl blacklight.jpg and last: Category:Kenyan women -[2018-02-13T00:26:47.803] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:26:47.800] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:26:47.937] [INFO] cheese - inserting 1000 documents. first: 2005 Grand Prix (snooker) and last: Category:Districts of Upper West Region -[2018-02-13T00:26:47.974] [INFO] cheese - inserting 1000 documents. first: Premo poretta power poll and last: Inngone -[2018-02-13T00:26:47.992] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:48.042] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:26:48.051] [INFO] cheese - inserting 1000 documents. first: École Nationale Supérieure Agronomique de Rennes and last: File:Bobmouldsilverage-e13389992789021-300x300.jpeg -[2018-02-13T00:26:48.090] [INFO] cheese - inserting 1000 documents. first: Vizazamin and last: Alexander Bernardazzi -[2018-02-13T00:26:48.095] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:48.147] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:26:48.253] [INFO] cheese - inserting 1000 documents. first: Baron Burns and last: Learning drug -[2018-02-13T00:26:48.291] [INFO] cheese - inserting 1000 documents. first: Pied du Roi and last: Category:Thoroughbred family 2-n -[2018-02-13T00:26:48.294] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:48.331] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:26:48.339] [INFO] cheese - inserting 1000 documents. first: Quebec provincial by-elections, 2010 and last: The Lost Chords -[2018-02-13T00:26:48.425] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:48.448] [INFO] cheese - inserting 1000 documents. first: Cokesbury, South Carolina and last: Nash, Texas -[2018-02-13T00:26:48.448] [INFO] cheese - inserting 1000 documents. first: Do You Think Of Me and last: Shahrak-e Shahidar Jai, Bagh-e Malek -[2018-02-13T00:26:48.451] [INFO] cheese - inserting 1000 documents. first: Selebi and last: Tukhnakaya -[2018-02-13T00:26:48.482] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:26:48.495] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:26:48.536] [INFO] cheese - batch complete in: 1.541 secs -[2018-02-13T00:26:48.612] [INFO] cheese - inserting 1000 documents. first: Dubréka Prefecture and last: YCM -[2018-02-13T00:26:48.687] [INFO] cheese - inserting 1000 documents. first: Abdulai Dukuly and last: File:DraftRV.png -[2018-02-13T00:26:48.687] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:26:48.732] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Ageing and culture/invitation and last: Electronic Sports World Cup 2010 -[2018-02-13T00:26:48.736] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:48.791] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:48.815] [INFO] cheese - inserting 1000 documents. first: If Not for You (album) and last: Frank Mills (disambiguation) -[2018-02-13T00:26:48.818] [INFO] cheese - inserting 1000 documents. first: Chronological summary of the 2010 Summer Youth Olympics and last: Broadcast and The Focus Group Investigate Witch Cults Of The Radio Age -[2018-02-13T00:26:48.865] [INFO] cheese - inserting 1000 documents. first: Ballydavid, County Tipperary and last: U. K. - Namibia relations -[2018-02-13T00:26:48.891] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:48.887] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:48.947] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:49.233] [INFO] cheese - inserting 1000 documents. first: Parkland Historic District and last: Mont-Royal -[2018-02-13T00:26:49.266] [INFO] cheese - inserting 1000 documents. first: The Gulf Medal 1990-91 and last: Maurolycus -[2018-02-13T00:26:49.267] [INFO] cheese - inserting 1000 documents. first: Podari, Dolj and last: Solanum igneum var. parvifolium -[2018-02-13T00:26:49.276] [INFO] cheese - inserting 1000 documents. first: U. K.–Namibia relations and last: Thestor obscurus -[2018-02-13T00:26:49.286] [INFO] cheese - inserting 1000 documents. first: Template:R from writers and last: Wikipedia:WikiProject Spam/Local/tricent.cz -[2018-02-13T00:26:49.291] [INFO] cheese - inserting 1000 documents. first: Sphaeromimus and last: Water Eaton railway station -[2018-02-13T00:26:49.295] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:26:49.307] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:26:49.315] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:26:49.308] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:26:49.333] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:49.352] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:49.689] [INFO] cheese - inserting 1000 documents. first: File:Gusa Regional Science High School-X Official Seal.png and last: Wikipedia:WikiProject Spam/LinkReports/floortime.org.ua -[2018-02-13T00:26:49.697] [INFO] cheese - inserting 1000 documents. first: Eleuthere Elie Nicolas Mascart and last: NexGen Storage -[2018-02-13T00:26:49.730] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:49.732] [INFO] cheese - inserting 1000 documents. first: My Turn on Earth and last: Wikipedia:Requests for adminship/Hex 2 -[2018-02-13T00:26:49.735] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:49.754] [INFO] cheese - inserting 1000 documents. first: Solanum persicifolium and last: Alices Adventures in Wonderland -[2018-02-13T00:26:49.781] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:26:49.790] [INFO] cheese - inserting 1000 documents. first: Category:Streamline Moderne architecture in Massachusetts and last: Tadpole Fish -[2018-02-13T00:26:49.800] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:49.834] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:49.883] [INFO] cheese - inserting 1000 documents. first: ProSpace and last: Butyrki Prison -[2018-02-13T00:26:49.957] [INFO] cheese - inserting 1000 documents. first: New Boston, Texas and last: Henderson, Texas -[2018-02-13T00:26:49.958] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:26:50.063] [INFO] cheese - batch complete in: 1.526 secs -[2018-02-13T00:26:50.085] [INFO] cheese - inserting 1000 documents. first: Rouzbeh Arghavan and last: Bleach: Hell Chapter -[2018-02-13T00:26:50.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Contemporary Christian and last: Cairn Bannoch -[2018-02-13T00:26:50.122] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:50.124] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:26:50.154] [INFO] cheese - inserting 1000 documents. first: Chris Dangerous and last: List of RHPs in ID -[2018-02-13T00:26:50.177] [INFO] cheese - inserting 1000 documents. first: Electoral district of St Marys and last: Fu Gongshi -[2018-02-13T00:26:50.188] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:26:50.217] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:26:50.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mount Crushmore and last: Pterodactylus elegans -[2018-02-13T00:26:50.276] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:50.382] [INFO] cheese - inserting 1000 documents. first: Freeminded Democratic Party of Switzerland and last: Snake River (United States) -[2018-02-13T00:26:50.422] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Jade Helm 15 and last: Bob Wanner -[2018-02-13T00:26:50.453] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:50.477] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:50.508] [INFO] cheese - inserting 1000 documents. first: Omm ol Helianeh and last: Guy Sayer -[2018-02-13T00:26:50.548] [INFO] cheese - inserting 1000 documents. first: Route 251 (Illinois) and last: Category:Bemidji, Minnesota -[2018-02-13T00:26:50.550] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:50.597] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:50.667] [INFO] cheese - inserting 1000 documents. first: Parker Center for Investment Research and last: File:TAR11RaceRoute6.2.PNG -[2018-02-13T00:26:50.705] [INFO] cheese - inserting 1000 documents. first: Industrial Scripts and last: Aleksandrovo (disambiguation) -[2018-02-13T00:26:50.707] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:50.715] [INFO] cheese - inserting 1000 documents. first: Euclid View Flats and last: Old Bell (disambiguation) -[2018-02-13T00:26:50.746] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:26:50.770] [INFO] cheese - inserting 1000 documents. first: Sony VAIO UX Micro PC and last: Category:Soviet Union–Uruguay relations -[2018-02-13T00:26:50.774] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:50.811] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:26:50.894] [INFO] cheese - inserting 1000 documents. first: Rayleigh (Lunar crater) and last: Abu Horaira -[2018-02-13T00:26:50.941] [INFO] cheese - inserting 1000 documents. first: New South Wales 79 class locomotive and last: New South Wales 45 (later 71) class locomotive -[2018-02-13T00:26:50.951] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:50.988] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:26:51.114] [INFO] cheese - inserting 1000 documents. first: Pedra Furada (disambiguation) and last: Josh Furman -[2018-02-13T00:26:51.118] [INFO] cheese - inserting 1000 documents. first: Cape Torrens Wilderness Protection Area and last: Agonidium explanatum -[2018-02-13T00:26:51.127] [INFO] cheese - inserting 1000 documents. first: The Irish Volunteer and last: Elasonas, Greece -[2018-02-13T00:26:51.172] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:26:51.172] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:51.202] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:51.296] [INFO] cheese - inserting 1000 documents. first: Alexandrovsky (disambiguation) and last: Category:Canterbury-Bankstown Bulldogs templates -[2018-02-13T00:26:51.349] [INFO] cheese - inserting 1000 documents. first: Holy City, CA and last: Shōen Uemura -[2018-02-13T00:26:51.357] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:26:51.382] [INFO] cheese - inserting 1000 documents. first: Template:User rec-4 and last: Caetano N'Tchama -[2018-02-13T00:26:51.413] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:51.455] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:51.486] [INFO] cheese - inserting 1000 documents. first: Mount Enterprise, Texas and last: Lincolnia, Virginia -[2018-02-13T00:26:51.525] [INFO] cheese - inserting 1000 documents. first: Elasonas and last: Gasztowtt -[2018-02-13T00:26:51.560] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:26:51.594] [INFO] cheese - batch complete in: 1.531 secs -[2018-02-13T00:26:51.607] [INFO] cheese - inserting 1000 documents. first: Agonidium exultans and last: Norway–U.K. relations -[2018-02-13T00:26:51.645] [INFO] cheese - inserting 1000 documents. first: Jan Wijnants (cyclist) and last: Wikipedia:WikiProject Spam/Local/shoppingatmsecret.com -[2018-02-13T00:26:51.654] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:51.718] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:26:51.825] [INFO] cheese - inserting 1000 documents. first: Luigi Datome and last: Shil'yan -[2018-02-13T00:26:51.871] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:51.908] [INFO] cheese - inserting 1000 documents. first: 19th century philosophy and last: Wikipedia:Pending changes/Closure -[2018-02-13T00:26:51.943] [INFO] cheese - inserting 1000 documents. first: Mr Van Driessen and last: Asterix and Obelix All at Sea -[2018-02-13T00:26:51.958] [INFO] cheese - inserting 1000 documents. first: Robert E. Wise and last: Manifesto on Freedom and Democracy -[2018-02-13T00:26:51.962] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:26:51.988] [INFO] cheese - inserting 1000 documents. first: Junction City High School (Arkansas) and last: North Texas State Mean Green basketball -[2018-02-13T00:26:51.999] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:52.000] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:26:52.051] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:52.159] [INFO] cheese - inserting 1000 documents. first: 2015 Netherlands Women's Sevens and last: Prey reversal -[2018-02-13T00:26:52.226] [INFO] cheese - inserting 1000 documents. first: Category:Bristol Bulldogs riders and last: File:MrMetSheaSignage.jpg -[2018-02-13T00:26:52.235] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:26:52.286] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:52.360] [INFO] cheese - inserting 1000 documents. first: Pentila maculata and last: Category:Carlsbad, California -[2018-02-13T00:26:52.389] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:26:52.480] [INFO] cheese - inserting 1000 documents. first: Jacques Faivre (bishop) and last: File:Vision of Love (Mariah Carey song - sample).ogg -[2018-02-13T00:26:52.508] [INFO] cheese - inserting 1000 documents. first: Template:Gene and last: Stronghold (game) -[2018-02-13T00:26:52.515] [INFO] cheese - inserting 1000 documents. first: Kirchroth and last: Paul Blanchard -[2018-02-13T00:26:52.531] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:52.553] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:52.600] [INFO] cheese - inserting 1000 documents. first: Category:Futsal Hazfi Cup and last: Thennal Thedunna Poovu -[2018-02-13T00:26:52.629] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:26:52.641] [INFO] cheese - inserting 1000 documents. first: Tavira DOC and last: File:The Flower of My Secret.jpg -[2018-02-13T00:26:52.644] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:52.661] [INFO] cheese - inserting 1000 documents. first: Anatoly Akimov and last: Trinidad and Tobago-U. K. relations -[2018-02-13T00:26:52.681] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:52.742] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:52.952] [INFO] cheese - inserting 1000 documents. first: Service Level Management and last: Edwina Booth -[2018-02-13T00:26:52.974] [INFO] cheese - inserting 1000 documents. first: Lorton, Virginia and last: Parsons, West Virginia -[2018-02-13T00:26:52.999] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:53.039] [INFO] cheese - inserting 1000 documents. first: Elizabeth Sutherland and last: Flores Province -[2018-02-13T00:26:53.039] [INFO] cheese - batch complete in: 1.445 secs -[2018-02-13T00:26:53.048] [INFO] cheese - inserting 1000 documents. first: PS25R-South Richmond HS/IS and last: Ihor Hlavan -[2018-02-13T00:26:53.061] [INFO] cheese - inserting 1000 documents. first: North Carolina Highway 86 Truck and last: William Randolph Stein -[2018-02-13T00:26:53.078] [INFO] cheese - inserting 1000 documents. first: Monkee Chow Mein and last: The Mountain of the Cannibal God -[2018-02-13T00:26:53.079] [INFO] cheese - inserting 1000 documents. first: Less Emissions and last: Ułanowice -[2018-02-13T00:26:53.085] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:26:53.091] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:26:53.125] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:53.156] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:53.210] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:26:53.507] [INFO] cheese - inserting 1000 documents. first: Boston Park Plaza Hotel & Towers and last: QLogic -[2018-02-13T00:26:53.600] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:26:53.696] [INFO] cheese - inserting 1000 documents. first: Daniel Parslow and last: Irrara County, New South Wales -[2018-02-13T00:26:53.698] [INFO] cheese - inserting 1000 documents. first: José Leyver Ojeda and last: Saint Francis (Pa.) Red Flash -[2018-02-13T00:26:53.736] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:26:53.748] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:26:53.779] [INFO] cheese - inserting 1000 documents. first: Randolph Stein and last: Martin Luther Procise III -[2018-02-13T00:26:53.824] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:26:53.889] [INFO] cheese - inserting 1000 documents. first: Węgrce Szlacheckie and last: Wikipedia:RECORD -[2018-02-13T00:26:53.948] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:26:53.977] [INFO] cheese - inserting 1000 documents. first: La montagna del dio cannibale and last: File:Sahour.jpg -[2018-02-13T00:26:54.012] [INFO] cheese - inserting 1000 documents. first: Former members of the Libyan Islamic Fighting Group and last: Anthus novaeseelandiae novaeseelandiae -[2018-02-13T00:26:54.028] [INFO] cheese - inserting 1000 documents. first: Ancient monument and last: 1997 in birding and ornithology -[2018-02-13T00:26:54.041] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:26:54.059] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:26:54.063] [INFO] cheese - inserting 1000 documents. first: Marcion, application and last: Penguin 60's Classics -[2018-02-13T00:26:54.105] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:54.118] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:26:54.196] [INFO] cheese - inserting 1000 documents. first: Thomas B. Buck, III and last: Toni Collette and the Finish -[2018-02-13T00:26:54.223] [INFO] cheese - inserting 1000 documents. first: Thomas, West Virginia and last: Richland Center, Wisconsin -[2018-02-13T00:26:54.250] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:54.276] [INFO] cheese - inserting 1000 documents. first: Clinical rotation and last: Eastern Otomí language -[2018-02-13T00:26:54.286] [INFO] cheese - inserting 1000 documents. first: Colville Wemyss and last: Tsor -[2018-02-13T00:26:54.289] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:26:54.318] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:26:54.332] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:54.526] [INFO] cheese - inserting 1000 documents. first: Temple Records (UK label) and last: Wikipedia:Requests for bureaucratship/Majorly -[2018-02-13T00:26:54.582] [INFO] cheese - inserting 1000 documents. first: KunstHausWien and last: Typhlops inornatus -[2018-02-13T00:26:54.610] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:54.649] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:26:54.654] [INFO] cheese - inserting 1000 documents. first: File:Sent-Myhell-Armys--Arms-of-St-Michael-ca-1460.png and last: Category:Libraries in Japan -[2018-02-13T00:26:54.708] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:26:54.711] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ron Parker and last: Russkiye Borisy -[2018-02-13T00:26:54.729] [INFO] cheese - inserting 1000 documents. first: Reg Dean and last: Category:1919 establishments in the Republic of Macedonia -[2018-02-13T00:26:54.739] [INFO] cheese - inserting 1000 documents. first: Abner Méndez and last: File:Blue Force Gear logo.png -[2018-02-13T00:26:54.745] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:54.761] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:54.790] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:26:54.998] [INFO] cheese - inserting 1000 documents. first: Valerie Martínez and last: Country Sunshine with Myrna Lorrie -[2018-02-13T00:26:55.022] [INFO] cheese - inserting 1000 documents. first: Rrusi Paris and last: Democratic Party (New Mexico) -[2018-02-13T00:26:55.025] [INFO] cheese - inserting 1000 documents. first: Template:GUI widgets and last: John Traphagan -[2018-02-13T00:26:55.036] [INFO] cheese - inserting 1000 documents. first: UNC-Wilmington Seahawks baseball and last: Westbury Square -[2018-02-13T00:26:55.045] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:55.068] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:26:55.078] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:26:55.077] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:55.109] [INFO] cheese - inserting 1000 documents. first: File:2015 A-League Grand Final logo.png and last: Üsküdar Amerikan Lisesi -[2018-02-13T00:26:55.113] [INFO] cheese - inserting 1000 documents. first: Webacholic and last: Wikipedia:Articles for deletion/Claude Bédard -[2018-02-13T00:26:55.185] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:26:55.189] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:55.318] [INFO] cheese - inserting 1000 documents. first: Governor of Ceylon and last: Qayali, Jalilabad -[2018-02-13T00:26:55.355] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:26:55.446] [INFO] cheese - inserting 1000 documents. first: Rhysopleura orbicollis and last: December 11 (Eastern Orthodox liturgics) -[2018-02-13T00:26:55.486] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:55.499] [INFO] cheese - inserting 1000 documents. first: Richwood, Wisconsin and last: History of Baden-Württemberg -[2018-02-13T00:26:55.516] [INFO] cheese - inserting 1000 documents. first: Crosspoint and last: Prodaná nevěsta (film) -[2018-02-13T00:26:55.538] [INFO] cheese - inserting 1000 documents. first: Bank of Pilot Mountain and last: Wikipedia:No original research/Noticeboard/Archive 33 -[2018-02-13T00:26:55.555] [INFO] cheese - inserting 1000 documents. first: Pfofeld and last: File:Ciołek's Missal.jpg -[2018-02-13T00:26:55.581] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:26:55.623] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:55.660] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:26:55.683] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T00:26:55.763] [INFO] cheese - inserting 1000 documents. first: Michael Hoffman (politician) and last: Badahare -[2018-02-13T00:26:55.793] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:55.824] [INFO] cheese - inserting 1000 documents. first: Japanese heavy industry during WW2 times and last: 1935–36 Yugoslav Football Championship -[2018-02-13T00:26:55.898] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:26:55.926] [INFO] cheese - inserting 1000 documents. first: Galong language and last: Garba raas -[2018-02-13T00:26:56.004] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:56.135] [INFO] cheese - inserting 1000 documents. first: Category:1881 establishments in New Mexico Territory and last: Southern Conference Softball Tournament -[2018-02-13T00:26:56.179] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:26:56.180] [INFO] cheese - inserting 1000 documents. first: A.S.D. Riccione 1929 and last: Grigore D. Constantinescu -[2018-02-13T00:26:56.207] [INFO] cheese - inserting 1000 documents. first: Category:Free-minded Liberal Party politicians and last: Duvannaya -[2018-02-13T00:26:56.228] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:26:56.252] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:56.288] [INFO] cheese - inserting 1000 documents. first: Template:User lang subcat/5 and last: Interstate 69 Business (Lansing, Michigan) -[2018-02-13T00:26:56.340] [INFO] cheese - inserting 1000 documents. first: Hans-Joachim Geisler and last: Wikipedia:Sockpuppet investigations/Malarious -[2018-02-13T00:26:56.346] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:26:56.365] [INFO] cheese - inserting 1000 documents. first: WMKS and last: Lambda Aquarii -[2018-02-13T00:26:56.390] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:56.397] [INFO] cheese - inserting 1000 documents. first: Awk programming language and last: Trifluoperazine -[2018-02-13T00:26:56.412] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:26:56.444] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:26:56.522] [INFO] cheese - inserting 1000 documents. first: 18th century Germany and last: Padar Gyul'mali -[2018-02-13T00:26:56.530] [INFO] cheese - inserting 1000 documents. first: Sergeevka and last: Category:1978 in New Zealand association football -[2018-02-13T00:26:56.555] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:26:56.563] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:56.659] [INFO] cheese - inserting 1000 documents. first: Ring-spatha and last: Lake Tudu -[2018-02-13T00:26:56.709] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:56.772] [INFO] cheese - inserting 1000 documents. first: C29H39N5O8 and last: UW–Green Bay Phoenix softball -[2018-02-13T00:26:56.805] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:56.819] [INFO] cheese - inserting 1000 documents. first: Contact, l'encyclopédie de la création and last: Dorzhsuren Munkhbayar -[2018-02-13T00:26:56.819] [INFO] cheese - inserting 1000 documents. first: Padar Gyul’mali and last: Wikipedia:Articles for deletion/Flying High (album) -[2018-02-13T00:26:56.829] [INFO] cheese - inserting 1000 documents. first: Operation Dignity Battle (Benghazi) and last: Amanayara -[2018-02-13T00:26:56.845] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:26:56.859] [INFO] cheese - inserting 1000 documents. first: Kijow Voivodship and last: Tiger-Man -[2018-02-13T00:26:56.861] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:26:56.866] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:26:56.939] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:57.197] [INFO] cheese - inserting 1000 documents. first: Orta-Zeyzit and last: File:Danny'sSongAnne.jpg -[2018-02-13T00:26:57.200] [INFO] cheese - inserting 1000 documents. first: Ubajärv and last: Discrete collision detection -[2018-02-13T00:26:57.210] [INFO] cheese - inserting 1000 documents. first: File:Renewable Energy Sources and Climate Change Mitigation.jpg and last: Category:1950s disestablishments in Mexico -[2018-02-13T00:26:57.233] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:26:57.253] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:26:57.264] [INFO] cheese - inserting 1000 documents. first: Hope's Anthem and last: Template:Denver Pioneers athletic director navbox -[2018-02-13T00:26:57.267] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:57.310] [INFO] cheese - inserting 1000 documents. first: Multisystem disease and last: Don't Try This at Home (TV series) -[2018-02-13T00:26:57.324] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:57.356] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:57.370] [INFO] cheese - inserting 1000 documents. first: Category:Communications in Angola and last: Envelope (aerospace) -[2018-02-13T00:26:57.438] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:57.560] [INFO] cheese - inserting 1000 documents. first: File:Silver City NM seal.png and last: Anti-conversion violence in India -[2018-02-13T00:26:57.585] [INFO] cheese - inserting 1000 documents. first: Category:1916 establishments in Mexico and last: Category:1923 disestablishments in Germany -[2018-02-13T00:26:57.599] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:57.618] [INFO] cheese - inserting 1000 documents. first: Bass horn and last: Lake District -[2018-02-13T00:26:57.647] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:26:57.722] [INFO] cheese - inserting 1000 documents. first: Songs Of Innocence And Experience and last: Yong Zhuang -[2018-02-13T00:26:57.724] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T00:26:57.740] [INFO] cheese - inserting 1000 documents. first: Bánh Mì and last: Džanići -[2018-02-13T00:26:57.755] [INFO] cheese - inserting 1000 documents. first: Category:Assassinated Pakistani activists and last: Category:New Zealand at the FIFA World Cup -[2018-02-13T00:26:57.767] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:26:57.793] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:26:57.842] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:26:57.889] [INFO] cheese - inserting 1000 documents. first: Category:User arc and last: South Keys station -[2018-02-13T00:26:57.957] [INFO] cheese - inserting 1000 documents. first: Sciex and last: Air Force of Mauritania -[2018-02-13T00:26:57.965] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:26:57.991] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:26:58.095] [INFO] cheese - inserting 1000 documents. first: Buick Excelle XT and last: Category:Politicians from County Leitrim -[2018-02-13T00:26:58.109] [INFO] cheese - inserting 1000 documents. first: Flassavatn and last: Wikipedia:Featured article candidates/Thescelosaurus -[2018-02-13T00:26:58.144] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:58.159] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:26:58.167] [INFO] cheese - inserting 1000 documents. first: Kamikaz and last: Category:Egyptian emigrants to Nigeria -[2018-02-13T00:26:58.220] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:26:58.335] [INFO] cheese - inserting 1000 documents. first: Air Force of Moldova and last: ZIP code 30144 -[2018-02-13T00:26:58.392] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:26:58.404] [INFO] cheese - inserting 1000 documents. first: Džepi and last: Portal:Current events/2010 August 17 -[2018-02-13T00:26:58.456] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:26:58.494] [INFO] cheese - inserting 1000 documents. first: Tseen Foo and last: (323) Brucia -[2018-02-13T00:26:58.550] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:26:58.571] [INFO] cheese - inserting 1000 documents. first: Minsan may isang puta and last: Category:Burial sites of Mexican noble families -[2018-02-13T00:26:58.606] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:58.613] [INFO] cheese - inserting 1000 documents. first: Phlong language and last: Category:1910 establishments in Mexico -[2018-02-13T00:26:58.657] [INFO] cheese - inserting 1000 documents. first: File:Sweet&Sour Cover Inner.jpg and last: Karlików -[2018-02-13T00:26:58.661] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:26:58.709] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:26:58.725] [INFO] cheese - inserting 1000 documents. first: Lemon socialism and last: File:Radio Times Vote Dalek cover.jpg -[2018-02-13T00:26:58.751] [INFO] cheese - inserting 1000 documents. first: Gidea Park, London, England and last: Gaston (comics) -[2018-02-13T00:26:58.757] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:26:58.808] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:26:58.821] [INFO] cheese - inserting 1000 documents. first: Criticism of concordats and last: Cayetano Paderanga, Jr. -[2018-02-13T00:26:58.868] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:58.957] [INFO] cheese - inserting 1000 documents. first: Category:Black Prairie albums and last: Supporting role -[2018-02-13T00:26:58.958] [INFO] cheese - inserting 1000 documents. first: (324) Bamberga and last: Category:Humanistic psychology -[2018-02-13T00:26:58.989] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:26:59.020] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:26:59.039] [INFO] cheese - inserting 1000 documents. first: Clarke Sound and last: Eosu Station -[2018-02-13T00:26:59.040] [INFO] cheese - inserting 1000 documents. first: Galactocentrism and last: Comet Machholz 1 -[2018-02-13T00:26:59.074] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:26:59.099] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:26:59.219] [INFO] cheese - inserting 1000 documents. first: Jan Diddens and last: USS Ajax (SP-738) -[2018-02-13T00:26:59.270] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:26:59.272] [INFO] cheese - inserting 1000 documents. first: When I See You Again and last: Apriona gressitti -[2018-02-13T00:26:59.314] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:26:59.396] [INFO] cheese - inserting 1000 documents. first: Category:Grand Slam (tennis) champions in men's singles and last: Category:California elections, 1914 -[2018-02-13T00:26:59.463] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:59.482] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topical outlines/Draft/Topical outline of Greenland and last: File:KBCO logo.png -[2018-02-13T00:26:59.564] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:26:59.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Battle at La Hogue and last: Wikipedia:WikiProject Spam/LinkReports/homeandstone.com -[2018-02-13T00:26:59.637] [INFO] cheese - inserting 1000 documents. first: ATV Evening News and last: Crib (disambiguation) -[2018-02-13T00:26:59.639] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:26:59.672] [INFO] cheese - inserting 1000 documents. first: MADAM-6 and last: Free Press (organization) -[2018-02-13T00:26:59.705] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:26:59.751] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:26:59.802] [INFO] cheese - inserting 1000 documents. first: Apriona japonica and last: Wikipedia:Articles for deletion/Marvin Amparo -[2018-02-13T00:26:59.852] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:26:59.884] [INFO] cheese - inserting 1000 documents. first: The Ace of Cads and last: Category:1997 establishments in Thailand -[2018-02-13T00:26:59.886] [INFO] cheese - inserting 1000 documents. first: Aase (disambiguation) and last: Wikipedia:Sockpuppet investigations/Cde000 -[2018-02-13T00:26:59.913] [INFO] cheese - inserting 1000 documents. first: Masque of Mandragora and last: 74th parallel north -[2018-02-13T00:26:59.913] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:26:59.932] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:26:59.940] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:00.122] [INFO] cheese - inserting 1000 documents. first: Theory of General Relativity and last: Orthodox Church in America -[2018-02-13T00:27:00.138] [INFO] cheese - inserting 1000 documents. first: Ahmed Rami (disambiguation) and last: Alfonso the Chaste (disambiguation) -[2018-02-13T00:27:00.163] [INFO] cheese - inserting 1000 documents. first: Stuart Matsikenyeri and last: Total asset turnover -[2018-02-13T00:27:00.183] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:00.184] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ergonomically Designed Facilities and last: Parker J. Palmer -[2018-02-13T00:27:00.233] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T00:27:00.239] [INFO] cheese - inserting 1000 documents. first: Queen's Park, Brisbane and last: Australia: Boom to Bust -[2018-02-13T00:27:00.243] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:27:00.256] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:27:00.271] [INFO] cheese - inserting 1000 documents. first: Estelle Kohler and last: TT9 (tomb) -[2018-02-13T00:27:00.309] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:27:00.316] [INFO] cheese - inserting 1000 documents. first: International Right to Know Day and last: Mass of the Resurrection -[2018-02-13T00:27:00.319] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:27:00.377] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:00.470] [INFO] cheese - inserting 1000 documents. first: Alfonsów (disambiguation) and last: Jesse Zubot -[2018-02-13T00:27:00.503] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:27:00.673] [INFO] cheese - inserting 1000 documents. first: Blind judo and last: Murguztala -[2018-02-13T00:27:00.707] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:00.733] [INFO] cheese - inserting 1000 documents. first: File:Anarky (vol.2) -8 (December 1999) The Sins of the Father - cover.jpg and last: Quebec provincial by-elections, 2002 -[2018-02-13T00:27:00.759] [INFO] cheese - inserting 1000 documents. first: Template:Country data City of Valencia and last: Maryknoll Sister -[2018-02-13T00:27:00.786] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:27:00.797] [INFO] cheese - inserting 1000 documents. first: Vayeira and last: Noztra -[2018-02-13T00:27:00.817] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:27:00.855] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:00.860] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiWorldDays and last: Benjamin Jefferson Hill -[2018-02-13T00:27:00.873] [INFO] cheese - inserting 1000 documents. first: Andilly (disambiguation) and last: ORV Sagar Kanya -[2018-02-13T00:27:00.903] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:27:00.920] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:27:01.023] [INFO] cheese - inserting 1000 documents. first: File:BarwellFC.png and last: Lecedi -[2018-02-13T00:27:01.058] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:01.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Shirley Marulanda and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Tenacious D -[2018-02-13T00:27:01.186] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:27:01.239] [INFO] cheese - inserting 1000 documents. first: Emergency shut down valve and last: Rahnoja -[2018-02-13T00:27:01.276] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:27:01.310] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Changing username/Usurpations/Completed/36 and last: Category:Science and technology in Warwickshire -[2018-02-13T00:27:01.313] [INFO] cheese - inserting 1000 documents. first: Pat Goss and last: Taipei American School student organizations -[2018-02-13T00:27:01.373] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:27:01.403] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:01.416] [INFO] cheese - inserting 1000 documents. first: File:FC Olimpia Bălţi.png and last: File:Los Angeles Aztecs.png -[2018-02-13T00:27:01.472] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:27:01.528] [INFO] cheese - inserting 1000 documents. first: Bristol Jupiter and last: Choiseul -[2018-02-13T00:27:01.553] [INFO] cheese - inserting 1000 documents. first: Rätsepa, Vändra Parish and last: Ashill (disambiguation) -[2018-02-13T00:27:01.580] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:27:01.603] [INFO] cheese - inserting 1000 documents. first: File:Dunyov István.jpg and last: Quinny Brook -[2018-02-13T00:27:01.642] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T00:27:01.661] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:27:01.892] [INFO] cheese - inserting 1000 documents. first: File:Los Angeles Blades.png and last: File:SC Albi.png -[2018-02-13T00:27:01.911] [INFO] cheese - inserting 1000 documents. first: Erebus dasypterus and last: Llanpumpsaint railway station -[2018-02-13T00:27:01.927] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:27:01.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Virtual Magic Kingdom/archive1 and last: 820 chipset -[2018-02-13T00:27:01.954] [INFO] cheese - inserting 1000 documents. first: Ashiya Station (disambiguation) and last: Ayane (disambiguation) -[2018-02-13T00:27:01.954] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:27:01.987] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:27:02.047] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:27:02.161] [INFO] cheese - inserting 1000 documents. first: The Cautionary Tale of Numero Cinco (Angel) and last: MV al-Salam Boccaccio 98 -[2018-02-13T00:27:02.166] [INFO] cheese - inserting 1000 documents. first: File:TheLessonsOfHistory.jpg and last: Acacia platensis -[2018-02-13T00:27:02.196] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:27:02.222] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:27:02.235] [INFO] cheese - inserting 1000 documents. first: Multiplatform Television Service and last: Edward Joseph Gilbert -[2018-02-13T00:27:02.253] [INFO] cheese - inserting 1000 documents. first: Mituna Captor and last: Pobres Rico -[2018-02-13T00:27:02.264] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:02.299] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:27:02.471] [INFO] cheese - inserting 1000 documents. first: Balara (disambiguation) and last: Megalodicopia hyans -[2018-02-13T00:27:02.483] [INFO] cheese - inserting 1000 documents. first: Burnett Heads and last: Case No. 04-cv-1166 -[2018-02-13T00:27:02.496] [INFO] cheese - inserting 1000 documents. first: Two Minute Warning (Angel City album) and last: Laura Rockefeller Chasin -[2018-02-13T00:27:02.497] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:27:02.523] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:02.542] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:27:02.561] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Edwin Kuh and last: Robert Davis McKenzie -[2018-02-13T00:27:02.627] [INFO] cheese - inserting 1000 documents. first: How Do You Love and last: Template:Alliance for Italy/meta/color -[2018-02-13T00:27:02.630] [INFO] cheese - inserting 1000 documents. first: My Sweet, Yet Brutal Sweetheart and last: Cutting Edge record label -[2018-02-13T00:27:02.646] [INFO] cheese - batch complete in: 1.829 secs -[2018-02-13T00:27:02.675] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:27:02.707] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:02.770] [INFO] cheese - inserting 1000 documents. first: Batovo (disambiguation) and last: Bellevue Palace (disambiguation) -[2018-02-13T00:27:02.820] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:02.915] [INFO] cheese - inserting 1000 documents. first: No. 04-cv-1166 and last: Kapanakci, Goranboy -[2018-02-13T00:27:02.940] [INFO] cheese - inserting 1000 documents. first: Umu Oma and last: Wikipedia:WikiProject Wine/Newsletter/04-1-2007 -[2018-02-13T00:27:02.952] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:02.976] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:27:02.999] [INFO] cheese - inserting 1000 documents. first: Lucky Luciano and last: Rievaulx Abbey -[2018-02-13T00:27:03.023] [INFO] cheese - inserting 1000 documents. first: National Road 540 and last: Bruce and Pepper Wayne Gacy's Home Movies -[2018-02-13T00:27:03.040] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:27:03.046] [INFO] cheese - inserting 1000 documents. first: Active record pattern and last: Siziwang Banner -[2018-02-13T00:27:03.066] [INFO] cheese - inserting 1000 documents. first: Robert McKenzie III and last: Draft:Self system -[2018-02-13T00:27:03.070] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T00:27:03.105] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:27:03.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/IPL Franchise earnings for 2009 and last: Demonstrate -[2018-02-13T00:27:03.130] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:27:03.172] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:27:03.309] [INFO] cheese - inserting 1000 documents. first: Kepenekci, Zaqatala and last: James Hawkins-Whitshed -[2018-02-13T00:27:03.342] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:03.349] [INFO] cheese - inserting 1000 documents. first: Bettenhausen (disambiguation) and last: Frans Peeraer -[2018-02-13T00:27:03.390] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:03.407] [INFO] cheese - inserting 1000 documents. first: Leclanche battery and last: Category:A-Class Cheshire articles -[2018-02-13T00:27:03.414] [INFO] cheese - inserting 1000 documents. first: Duqiong Township and last: De Havilland DH.50A -[2018-02-13T00:27:03.444] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:27:03.449] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:03.513] [INFO] cheese - inserting 1000 documents. first: Colburn's Tuco-tuco and last: Didrah language -[2018-02-13T00:27:03.581] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:27:03.601] [INFO] cheese - inserting 1000 documents. first: Boom crash opera and last: International Patent -[2018-02-13T00:27:03.639] [INFO] cheese - inserting 1000 documents. first: Marcus pohlmann and last: Herbert Schmidt Ostheim -[2018-02-13T00:27:03.665] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:27:03.676] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:27:03.709] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hana Sehu and last: Whitby Morrison -[2018-02-13T00:27:03.736] [INFO] cheese - inserting 1000 documents. first: Pirates 4-D and last: Truman P. White -[2018-02-13T00:27:03.739] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:03.791] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:27:03.807] [INFO] cheese - inserting 1000 documents. first: Altar (disambiguation) and last: Marjory Gordon -[2018-02-13T00:27:03.824] [INFO] cheese - inserting 1000 documents. first: Didra language and last: Barangay justice system -[2018-02-13T00:27:03.856] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:27:03.857] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:03.872] [INFO] cheese - inserting 1000 documents. first: Blumenthal (disambiguation) and last: Bowers School (disambiguation) -[2018-02-13T00:27:03.903] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:27:04.123] [INFO] cheese - inserting 1000 documents. first: Glabrescent and last: Template:R list topic -[2018-02-13T00:27:04.144] [INFO] cheese - inserting 1000 documents. first: 10,000 martyrs and last: Bill C-44 -[2018-02-13T00:27:04.175] [INFO] cheese - inserting 1000 documents. first: File:HMAS manoora crest.png and last: Toledo bend reservoir -[2018-02-13T00:27:04.175] [INFO] cheese - inserting 1000 documents. first: Bowery boys (disambiguation) and last: Brzeźnica (disambiguation) -[2018-02-13T00:27:04.182] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:27:04.207] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:27:04.209] [INFO] cheese - inserting 1000 documents. first: Arteria arcuata and last: Category:Woodley Sports F.C. -[2018-02-13T00:27:04.234] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:27:04.243] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:04.282] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:27:04.321] [INFO] cheese - inserting 1000 documents. first: Wycombe Railway Company and last: Monocat -[2018-02-13T00:27:04.357] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:27:04.393] [INFO] cheese - inserting 1000 documents. first: Big bear lake and last: Chilko lake -[2018-02-13T00:27:04.423] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:27:04.435] [INFO] cheese - inserting 1000 documents. first: Rhazes and last: Reklaw, Texas -[2018-02-13T00:27:04.468] [INFO] cheese - inserting 1000 documents. first: Brzeźnik (disambiguation) and last: C97 (disambiguation) -[2018-02-13T00:27:04.501] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:27:04.504] [INFO] cheese - inserting 1000 documents. first: Template:R flt and last: Template:POTD protected/2015-05-17 -[2018-02-13T00:27:04.528] [INFO] cheese - batch complete in: 1.458 secs -[2018-02-13T00:27:04.547] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:27:04.628] [INFO] cheese - inserting 1000 documents. first: File:LCFR Reserve Rescue 680.jpg and last: Category:Jollibee -[2018-02-13T00:27:04.642] [INFO] cheese - inserting 1000 documents. first: Lough ramor and last: Kim Zwarts -[2018-02-13T00:27:04.662] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:27:04.668] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:04.748] [INFO] cheese - inserting 1000 documents. first: SPAM Town USA and last: Wikipedia:Articles for deletion/Kanvas Grey -[2018-02-13T00:27:04.750] [INFO] cheese - inserting 1000 documents. first: C98 (disambiguation) and last: Cady (disambiguation) -[2018-02-13T00:27:04.760] [INFO] cheese - inserting 1000 documents. first: CAFM and last: HP Pavillion -[2018-02-13T00:27:04.777] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:04.811] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:27:04.814] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:27:04.943] [INFO] cheese - inserting 1000 documents. first: ΚΛΨ and last: Agoseris carnea -[2018-02-13T00:27:04.979] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/exactantigen.com and last: Carlos Baena (disambiguation) -[2018-02-13T00:27:05.001] [INFO] cheese - inserting 1000 documents. first: Lake waswanipi and last: Utah State Route 101 -[2018-02-13T00:27:05.002] [INFO] cheese - inserting 1000 documents. first: Category:Selected anniversaries (October 2012) and last: Sinji language -[2018-02-13T00:27:05.007] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:27:05.015] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:27:05.035] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:27:05.055] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:05.287] [INFO] cheese - inserting 1000 documents. first: Carlos Borja (disambiguation) and last: Chain Lightning (disambiguation) -[2018-02-13T00:27:05.304] [INFO] cheese - inserting 1000 documents. first: File:Jeanne Mas album.jpg and last: Dr. Bonner -[2018-02-13T00:27:05.319] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:27:05.341] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:27:05.365] [INFO] cheese - inserting 1000 documents. first: Lake Burbury and last: Sagar manthan -[2018-02-13T00:27:05.404] [INFO] cheese - inserting 1000 documents. first: Perang and last: Detective Investigation Files II -[2018-02-13T00:27:05.429] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:27:05.443] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:05.521] [INFO] cheese - inserting 1000 documents. first: Agoseris confinis and last: Your Whole -[2018-02-13T00:27:05.538] [INFO] cheese - inserting 1000 documents. first: Senate of Kampuchea and last: GMT355 -[2018-02-13T00:27:05.560] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:05.575] [INFO] cheese - inserting 1000 documents. first: Chain O'Lakes State Park (disambiguation) and last: Chiffon (disambiguation) -[2018-02-13T00:27:05.587] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:27:05.595] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:05.629] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Raffaelli and last: Push pull strategy -[2018-02-13T00:27:05.665] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:05.751] [INFO] cheese - inserting 1000 documents. first: Category:2003 Qatar Open and last: 2001 Cincinnati Bearcats football team -[2018-02-13T00:27:05.808] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:05.821] [INFO] cheese - inserting 1000 documents. first: Guerrero (Mexico) and last: City of Refuge (disambiguation) -[2018-02-13T00:27:05.827] [INFO] cheese - inserting 1000 documents. first: Zachary Lansdowne and last: Roy Giles -[2018-02-13T00:27:05.857] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:27:05.875] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:27:05.887] [INFO] cheese - inserting 1000 documents. first: Colbert Hills and last: Melakwa lake -[2018-02-13T00:27:05.916] [INFO] cheese - inserting 1000 documents. first: Conde de Bonfim and last: Criticism of Ban Ki-moon -[2018-02-13T00:27:05.934] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:27:05.952] [INFO] cheese - inserting 1000 documents. first: Dream Come True (A Flock of Seagulls album) and last: He's A Rebel -[2018-02-13T00:27:05.963] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:05.979] [INFO] cheese - inserting 1000 documents. first: Troup, Texas and last: Electrical connector -[2018-02-13T00:27:05.992] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:06.060] [INFO] cheese - inserting 1000 documents. first: Lake pyasino and last: Barnard Point -[2018-02-13T00:27:06.066] [INFO] cheese - inserting 1000 documents. first: Kampimodromus and last: Valgesoo -[2018-02-13T00:27:06.066] [INFO] cheese - batch complete in: 1.538 secs -[2018-02-13T00:27:06.085] [INFO] cheese - batch complete in: 0.151 secs -[2018-02-13T00:27:06.102] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:27:06.247] [INFO] cheese - inserting 1000 documents. first: Ancient Egyptian tomb and last: Turks And Caicos Creole English language -[2018-02-13T00:27:06.292] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:27:06.314] [INFO] cheese - inserting 1000 documents. first: Ivaylovgrad reservoir and last: Odell lake (oregon) -[2018-02-13T00:27:06.331] [INFO] cheese - inserting 1000 documents. first: Alec Brownstein and last: Gigi (musical) -[2018-02-13T00:27:06.331] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:27:06.350] [INFO] cheese - inserting 1000 documents. first: Teenaged Mutant Ninja Turtles and last: Ballad of a Thin Man -[2018-02-13T00:27:06.352] [INFO] cheese - inserting 1000 documents. first: Category:House of Holland and last: Ted Collinson -[2018-02-13T00:27:06.353] [INFO] cheese - inserting 1000 documents. first: Collins, California (disambiguation) and last: Arthur Quimby -[2018-02-13T00:27:06.364] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:06.377] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:27:06.395] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:27:06.399] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:06.515] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Record Production/October 7 and last: Yasnenskoye -[2018-02-13T00:27:06.550] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:27:06.635] [INFO] cheese - inserting 1000 documents. first: Spelga reservoir and last: Lex Column -[2018-02-13T00:27:06.647] [INFO] cheese - inserting 1000 documents. first: Prang Ku District and last: Qingshangnan -[2018-02-13T00:27:06.670] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:27:06.682] [INFO] cheese - inserting 1000 documents. first: Template:WargameMag and last: Gornji Malovan -[2018-02-13T00:27:06.697] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:27:06.732] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:27:06.744] [INFO] cheese - inserting 1000 documents. first: Greg Richards (rugby league) and last: Leo Lee -[2018-02-13T00:27:06.795] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:27:06.841] [INFO] cheese - inserting 1000 documents. first: 12 Aquilae and last: Kurara -[2018-02-13T00:27:06.878] [INFO] cheese - inserting 1000 documents. first: 1932–33 Illinois Fighting Illini men's basketball team and last: The House on Greenapple Road -[2018-02-13T00:27:06.884] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:27:06.916] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:06.936] [INFO] cheese - inserting 1000 documents. first: Crowsnest (disambiguation) and last: DWR (disambiguation) -[2018-02-13T00:27:06.952] [INFO] cheese - inserting 1000 documents. first: Connector (mathematics) and last: Paraconsistent logics -[2018-02-13T00:27:06.957] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:27:07.016] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T00:27:07.108] [INFO] cheese - inserting 1000 documents. first: Tameside Stadium and last: Mizdow -[2018-02-13T00:27:07.133] [INFO] cheese - inserting 1000 documents. first: Template:Aston Villa F.C. seasons and last: Greg Dewey -[2018-02-13T00:27:07.152] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:27:07.162] [INFO] cheese - inserting 1000 documents. first: DWRT (disambiguation) and last: Natkrižovljan -[2018-02-13T00:27:07.180] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:07.343] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:07.379] [INFO] cheese - inserting 1000 documents. first: Dead finish and last: Wildlife Prairie Park -[2018-02-13T00:27:07.420] [INFO] cheese - inserting 1000 documents. first: Lindell Cooley and last: Leni Kaurin -[2018-02-13T00:27:07.433] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:27:07.474] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:27:07.609] [INFO] cheese - inserting 1000 documents. first: Victoria Leyde and last: Reproductive tract infections -[2018-02-13T00:27:07.717] [INFO] cheese - inserting 1000 documents. first: Dracula (Caminhos do Coração) and last: Prince Gaetan, Count of Girgenti -[2018-02-13T00:27:07.726] [INFO] cheese - inserting 1000 documents. first: David Ireland (disambiguation) and last: Dermopathy (disambiguation) -[2018-02-13T00:27:07.735] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:27:07.757] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:27:07.804] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:27:07.862] [INFO] cheese - inserting 1000 documents. first: Macho Mandow and last: Gnaphalium pes-cati -[2018-02-13T00:27:07.870] [INFO] cheese - inserting 1000 documents. first: Karen Ogden and last: Kondek-e Khanjar -[2018-02-13T00:27:07.920] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:27:07.927] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:27:07.981] [INFO] cheese - inserting 1000 documents. first: Zeta (magazine) and last: Aigaleo, Greece -[2018-02-13T00:27:08.018] [INFO] cheese - inserting 1000 documents. first: Dernbach (disambiguation) and last: Division of Honour (disambiguation) -[2018-02-13T00:27:08.058] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:27:08.064] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:27:08.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Zhu Xiao Di and last: La Junta station -[2018-02-13T00:27:08.184] [INFO] cheese - inserting 1000 documents. first: Fansub and last: Heinrich Schutz -[2018-02-13T00:27:08.211] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:27:08.247] [INFO] cheese - inserting 1000 documents. first: The Piano Sings and last: Nakheel Harbour and Tower -[2018-02-13T00:27:08.274] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T00:27:08.304] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:27:08.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/macht-rap.de and last: Marguerite Geirnaert -[2018-02-13T00:27:08.352] [INFO] cheese - inserting 1000 documents. first: Divisive (disambiguation) and last: Dublin Review (disambiguation) -[2018-02-13T00:27:08.372] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:08.390] [INFO] cheese - inserting 1000 documents. first: Kondek and last: Yazd Now -[2018-02-13T00:27:08.391] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:08.436] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:08.581] [INFO] cheese - inserting 1000 documents. first: File:FnqrAO.png and last: Category:People from Bhopal -[2018-02-13T00:27:08.586] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Disgaea characters and last: 501st Clone Trooper Legion -[2018-02-13T00:27:08.633] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:27:08.640] [INFO] cheese - inserting 1000 documents. first: Whitesand Bay (Cornwall) and last: File:Skarabraelive.jpg -[2018-02-13T00:27:08.645] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:27:08.658] [INFO] cheese - inserting 1000 documents. first: Rhodicinium hexafluorophosphate and last: ESAC (disambiguation) -[2018-02-13T00:27:08.691] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:08.703] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:27:08.769] [INFO] cheese - inserting 1000 documents. first: Marguerite Gorr and last: Cotana germana -[2018-02-13T00:27:08.822] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:08.824] [INFO] cheese - inserting 1000 documents. first: Category:Military ranks of the Soviet Union and last: All-Star break (MLB) -[2018-02-13T00:27:08.872] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:08.981] [INFO] cheese - inserting 1000 documents. first: Stari Farkašić and last: Ashina Nishufu -[2018-02-13T00:27:09.008] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:27:09.009] [INFO] cheese - inserting 1000 documents. first: History of drinking and last: Wikipedia:Bots/Requests for approval/MetsBot 8 -[2018-02-13T00:27:09.018] [INFO] cheese - inserting 1000 documents. first: Broderick Wright and last: DSC-T50 -[2018-02-13T00:27:09.059] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:09.063] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:09.216] [INFO] cheese - inserting 1000 documents. first: M. Roslin Hashim and last: Re-Invention World Tour -[2018-02-13T00:27:09.307] [INFO] cheese - inserting 1000 documents. first: Ashina Funian and last: Eric Rogers (disambiguation) -[2018-02-13T00:27:09.311] [INFO] cheese - inserting 1000 documents. first: Cotana joiceyi and last: League of the Unemployed -[2018-02-13T00:27:09.325] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:27:09.330] [INFO] cheese - inserting 1000 documents. first: Psephocrita melanodoxa and last: Georgian legislative election, 2012 -[2018-02-13T00:27:09.344] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:27:09.390] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:27:09.388] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:27:09.434] [INFO] cheese - inserting 1000 documents. first: Antiphonitis and last: Battle of Dresden -[2018-02-13T00:27:09.495] [INFO] cheese - inserting 1000 documents. first: Frederick Bagg Bonanza Farm and last: Kocesker -[2018-02-13T00:27:09.501] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T00:27:09.544] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:27:09.599] [INFO] cheese - inserting 1000 documents. first: Portal:Hamilton, Ontario/Box-footer and last: Hesitation Waltz -[2018-02-13T00:27:09.613] [INFO] cheese - inserting 1000 documents. first: Eric Rosenthal (disambiguation) and last: FIN (disambiguation) -[2018-02-13T00:27:09.667] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:09.678] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:27:09.801] [INFO] cheese - inserting 1000 documents. first: Wheelchair fencing at the 2012 Summer Paralympics – Men's sabre B and last: Arteria thoracica -[2018-02-13T00:27:09.837] [INFO] cheese - inserting 1000 documents. first: Claude Fell and last: Imani Vol. 1 -[2018-02-13T00:27:09.845] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:27:09.847] [INFO] cheese - inserting 1000 documents. first: Kocvelili and last: Spider Coneflower -[2018-02-13T00:27:09.872] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:27:09.874] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:09.905] [INFO] cheese - inserting 1000 documents. first: Modra Observatory and last: Eragon Shadeslayer -[2018-02-13T00:27:09.906] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2010 Summer Youth Olympics – Girls' 400 metre freestyle and last: Lastine -[2018-02-13T00:27:09.932] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:27:09.972] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:27:10.091] [INFO] cheese - inserting 1000 documents. first: Kids of the Century and last: The Notorious Mrs. Ebbsmith -[2018-02-13T00:27:10.132] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:27:10.139] [INFO] cheese - inserting 1000 documents. first: Erik Sanko and last: Step-sisters -[2018-02-13T00:27:10.172] [INFO] cheese - inserting 1000 documents. first: Windows Eight Point One and last: Colin Cruse -[2018-02-13T00:27:10.173] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:27:10.204] [INFO] cheese - inserting 1000 documents. first: Category:Jersey lawyers and last: Ptilinopus mangoliensis -[2018-02-13T00:27:10.209] [INFO] cheese - inserting 1000 documents. first: Fifth Freedom (disambiguation) and last: Forager (disambiguation) -[2018-02-13T00:27:10.212] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:27:10.238] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:27:10.263] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:10.445] [INFO] cheese - inserting 1000 documents. first: Hoosac River and last: File:PussyfootTheWayThatYouDoIt.ogg -[2018-02-13T00:27:10.478] [INFO] cheese - inserting 1000 documents. first: File:Nelly Cootalot Spoonbeaks Ahoy.png and last: List of Registered Historic Places in Ohio -[2018-02-13T00:27:10.487] [INFO] cheese - inserting 1000 documents. first: Yang Talat District and last: Spain national futsal team -[2018-02-13T00:27:10.500] [INFO] cheese - inserting 1000 documents. first: Foramen cecum (disambiguation) and last: Pulcifer, Wisconsin -[2018-02-13T00:27:10.505] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:27:10.514] [INFO] cheese - inserting 1000 documents. first: Category:Books by Maurice Gee and last: Christopher Seton-Watson -[2018-02-13T00:27:10.514] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:27:10.529] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:27:10.550] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:27:10.572] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:10.602] [INFO] cheese - inserting 1000 documents. first: Battle of Eckmühl and last: Bill Cosby -[2018-02-13T00:27:10.605] [INFO] cheese - inserting 1000 documents. first: Bill Martin (artist) and last: Ahmed Kousay Al-Taie -[2018-02-13T00:27:10.644] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:27:10.689] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T00:27:10.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Andrew Luke (2nd nomination) and last: Lukasrand Tower -[2018-02-13T00:27:10.746] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:27:10.806] [INFO] cheese - inserting 1000 documents. first: 2008 FIU Golden Panthers football and last: Weinberg (disambiguation) -[2018-02-13T00:27:10.840] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:27:10.926] [INFO] cheese - inserting 1000 documents. first: Umberleigh and last: Keith Ham -[2018-02-13T00:27:10.948] [INFO] cheese - inserting 1000 documents. first: Gambian (disambiguation) and last: Germantown, Pennsylvania (disambiguation) -[2018-02-13T00:27:10.959] [INFO] cheese - inserting 1000 documents. first: Fédération Indochinoise des Associations du Scoutisme and last: Wikipedia:WikiProject Spam/LinkReports/kbra.com -[2018-02-13T00:27:10.964] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:10.966] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:27:10.982] [INFO] cheese - inserting 1000 documents. first: Kendal Rugby Union Football Club and last: Hassan Odeola -[2018-02-13T00:27:11.001] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:11.023] [INFO] cheese - inserting 1000 documents. first: OpenFormula and last: Snow field -[2018-02-13T00:27:11.033] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:11.050] [INFO] cheese - inserting 1000 documents. first: Clairaut (disambiguation) and last: Asset recovery software -[2018-02-13T00:27:11.078] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:27:11.086] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:27:11.149] [INFO] cheese - inserting 1000 documents. first: Category:Seton Hall Pirates women's basketball and last: Gordon County (disambiguation) -[2018-02-13T00:27:11.167] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:27:11.386] [INFO] cheese - inserting 1000 documents. first: Photometry (disambiguation) and last: ALCS broadcasters -[2018-02-13T00:27:11.396] [INFO] cheese - inserting 1000 documents. first: Category:Angola–India relations and last: File:Pokemon Chronicles.png -[2018-02-13T00:27:11.396] [INFO] cheese - inserting 1000 documents. first: Bruce Museum and last: Karalahti -[2018-02-13T00:27:11.421] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:27:11.437] [INFO] cheese - inserting 1000 documents. first: Gordon Craig (disambiguation) and last: Matthias of Neuburg -[2018-02-13T00:27:11.441] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:27:11.442] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:11.505] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:27:11.564] [INFO] cheese - inserting 1000 documents. first: File:Disease-Resistant Cassava Revives DRC Agriculture.JPG and last: Milli Yakjehti Council -[2018-02-13T00:27:11.587] [INFO] cheese - inserting 1000 documents. first: Yvain, the knight of the lion and last: 백지선 -[2018-02-13T00:27:11.616] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:27:11.649] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:11.701] [INFO] cheese - inserting 1000 documents. first: Green Lane (disambiguation) and last: HDGF (disambiguation) -[2018-02-13T00:27:11.722] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:27:11.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2012 October 7 and last: New programming language -[2018-02-13T00:27:11.807] [INFO] cheese - inserting 1000 documents. first: Category:Jackson State University alumni and last: Transfer (disambiguation) -[2018-02-13T00:27:11.868] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:11.908] [INFO] cheese - inserting 1000 documents. first: Pic-Pic and last: Jani Sullanmaa -[2018-02-13T00:27:11.914] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:27:11.945] [INFO] cheese - inserting 1000 documents. first: Anemonospermos verbascifolia and last: Order Of 13 Centuries Of Bulgaria -[2018-02-13T00:27:11.975] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:27:11.986] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:11.989] [INFO] cheese - inserting 1000 documents. first: HDMS (disambiguation) and last: Woo Fung -[2018-02-13T00:27:12.018] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:27:12.041] [INFO] cheese - inserting 1000 documents. first: PLOS and last: Foreign relations of Macedonia -[2018-02-13T00:27:12.119] [INFO] cheese - batch complete in: 1.429 secs -[2018-02-13T00:27:12.137] [INFO] cheese - inserting 1000 documents. first: Saint Clair (disambiguation) and last: Wikipedia:Articles for deletion/B-Valentine -[2018-02-13T00:27:12.156] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:27:12.168] [INFO] cheese - inserting 1000 documents. first: Grammatiko, Greece and last: Fleet management -[2018-02-13T00:27:12.224] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:27:12.275] [INFO] cheese - inserting 1000 documents. first: Harwich railway station (disambiguation) and last: Herald Island (disambiguation) -[2018-02-13T00:27:12.279] [INFO] cheese - inserting 1000 documents. first: Category:Lists of landforms by country and last: Barbadians in the Amazon -[2018-02-13T00:27:12.307] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:12.335] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:27:12.343] [INFO] cheese - inserting 1000 documents. first: Cleomenes (disambiguation) and last: GCT (disambiguation) -[2018-02-13T00:27:12.367] [INFO] cheese - inserting 1000 documents. first: Order of 13 Centuries of Bulgaria and last: Wikipedia:Articles for deletion/Log/2015 May 26 -[2018-02-13T00:27:12.370] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:27:12.410] [INFO] cheese - inserting 1000 documents. first: Bullshit episodes and last: Brunswick valley -[2018-02-13T00:27:12.443] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:27:12.472] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:12.558] [INFO] cheese - inserting 1000 documents. first: Chesterfield County Sheriff’s Office (Virginia) and last: Honey Creek, Wisconsin (disambiguation) -[2018-02-13T00:27:12.582] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:27:12.611] [INFO] cheese - inserting 1000 documents. first: Vergile Boumelaha and last: GCE (disambiguation) -[2018-02-13T00:27:12.658] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:27:12.756] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rev. Stephen T. Wheeler and last: Lane Dwinell -[2018-02-13T00:27:12.809] [INFO] cheese - inserting 1000 documents. first: Honey Creek Township (disambiguation) and last: Héricourt (disambiguation) -[2018-02-13T00:27:12.854] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:27:12.871] [INFO] cheese - inserting 1000 documents. first: Hemilability and last: File:G09828gpcz0.jpg -[2018-02-13T00:27:12.876] [INFO] cheese - inserting 1000 documents. first: Carl Bridge and last: Lisa A Callif -[2018-02-13T00:27:12.889] [INFO] cheese - inserting 1000 documents. first: Eucalyptus ovata and last: Chemerinsky -[2018-02-13T00:27:12.921] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:27:12.973] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:27:12.999] [INFO] cheese - inserting 1000 documents. first: Night and Day (disambiguation) and last: Unterseeboot 2513 -[2018-02-13T00:27:13.014] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:27:13.018] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:13.029] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:13.379] [INFO] cheese - inserting 1000 documents. first: Hòa Bình (disambiguation) and last: 2010 Copiapo mining accident -[2018-02-13T00:27:13.499] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:27:13.542] [INFO] cheese - inserting 1000 documents. first: Portal:Bihar/Selected articles/Layout and last: Isidor Barndt (1816-1891) -[2018-02-13T00:27:13.592] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:13.625] [INFO] cheese - inserting 1000 documents. first: David Searls and last: John Fownes-Luttrell -[2018-02-13T00:27:13.654] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:27:13.704] [INFO] cheese - inserting 1000 documents. first: Portal:Apple Inc./Selected article/9 and last: Category:Lists of Norwegian people by occupation -[2018-02-13T00:27:13.706] [INFO] cheese - inserting 1000 documents. first: File:PrabirAndTheSubstitutes.jpg and last: Moesa River -[2018-02-13T00:27:13.708] [INFO] cheese - inserting 1000 documents. first: Lawrence Gordon (producer) and last: Japanese dictionary -[2018-02-13T00:27:13.745] [INFO] cheese - inserting 1000 documents. first: Imperial Standard (disambiguation) and last: Ruby pipeline -[2018-02-13T00:27:13.766] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:27:13.765] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:27:13.778] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:27:13.785] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:27:13.828] [INFO] cheese - inserting 1000 documents. first: German submarine U 803 and last: Axel (disambiguation) -[2018-02-13T00:27:13.881] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:27:13.981] [INFO] cheese - inserting 1000 documents. first: ^? and last: Snežnik, Slovenia (settlement) -[2018-02-13T00:27:13.997] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:27:14.011] [INFO] cheese - inserting 1000 documents. first: Curtis turbine and last: Ibon Areso Mendiguren -[2018-02-13T00:27:14.055] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:14.102] [INFO] cheese - inserting 1000 documents. first: Winnisquam, NH and last: Gandikar -[2018-02-13T00:27:14.105] [INFO] cheese - inserting 1000 documents. first: German submarine UB-65 and last: Hacimemmedoba -[2018-02-13T00:27:14.124] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:27:14.130] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:14.210] [INFO] cheese - inserting 1000 documents. first: Zichron Moshe and last: Jiang (disambiguation) -[2018-02-13T00:27:14.221] [INFO] cheese - inserting 1000 documents. first: Von Hippel-Lindau and last: Category:Las Vegas Quicksilver players -[2018-02-13T00:27:14.224] [INFO] cheese - inserting 1000 documents. first: Melian and last: Love and Rockets -[2018-02-13T00:27:14.241] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:27:14.287] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:27:14.299] [INFO] cheese - inserting 1000 documents. first: Aetheria (disambiguation) and last: Wikipedia:Articles for deletion/The Ups and The Downs -[2018-02-13T00:27:14.300] [INFO] cheese - inserting 1000 documents. first: Kicking and Screaming and last: Baby Washington -[2018-02-13T00:27:14.327] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:27:14.328] [INFO] cheese - batch complete in: 2.208 secs -[2018-02-13T00:27:14.367] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:27:14.426] [INFO] cheese - inserting 1000 documents. first: Lewis acid catalysis and last: Outstanding Sound Design/Composition (Dance) -[2018-02-13T00:27:14.469] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:27:14.472] [INFO] cheese - inserting 1000 documents. first: Storvatnet (Bykle) and last: Iranian football league -[2018-02-13T00:27:14.504] [INFO] cheese - inserting 1000 documents. first: Aqua Zoo Friesland and last: Dávid Vojvoda -[2018-02-13T00:27:14.539] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:27:14.575] [INFO] cheese - inserting 1000 documents. first: Sow (disambiguation) and last: Times-Journal -[2018-02-13T00:27:14.583] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:27:14.624] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:27:14.702] [INFO] cheese - inserting 1000 documents. first: Komancza Republic and last: Matthew Theissen -[2018-02-13T00:27:14.778] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:27:14.795] [INFO] cheese - inserting 1000 documents. first: Smith Newton and last: Queen's Own Royal Glasgow Yeomanry, Lanarkshire (Glasgow) -[2018-02-13T00:27:14.823] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:27:14.874] [INFO] cheese - inserting 1000 documents. first: John Muir Award (disambiguation) and last: Category:Chadian Roman Catholic archbishops -[2018-02-13T00:27:14.892] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:27:14.984] [INFO] cheese - inserting 1000 documents. first: USS Titan and last: Salpistele -[2018-02-13T00:27:15.032] [INFO] cheese - inserting 1000 documents. first: Category:Eskişehir Cup and last: Sir George Parkyns, 4th Baronet -[2018-02-13T00:27:15.047] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:27:15.103] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:27:15.108] [INFO] cheese - inserting 1000 documents. first: Fred Christensen and last: File:Flesheatersposter.jpg -[2018-02-13T00:27:15.145] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Native American leader and last: Łąka, Podkarpackie Voivodeship -[2018-02-13T00:27:15.151] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:15.178] [INFO] cheese - inserting 1000 documents. first: Category:1989 elections in Turkey and last: Black Death (1992 film) -[2018-02-13T00:27:15.222] [INFO] cheese - inserting 1000 documents. first: Frans Gommers and last: KWAY (disambiguation) -[2018-02-13T00:27:15.222] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:27:15.226] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:15.256] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:27:15.529] [INFO] cheese - inserting 1000 documents. first: Currant-tree and last: Template:2000s-rock-single-stub -[2018-02-13T00:27:15.585] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:15.588] [INFO] cheese - inserting 1000 documents. first: KWEY (disambiguation) and last: Dent d'Oche -[2018-02-13T00:27:15.619] [INFO] cheese - inserting 1000 documents. first: Piled Higher and Deeper and last: Aberfoyle Park, South Australia -[2018-02-13T00:27:15.644] [INFO] cheese - inserting 1000 documents. first: Łukawiec, Rzeszów County and last: 11P (disambiguation) -[2018-02-13T00:27:15.667] [INFO] cheese - inserting 1000 documents. first: George Parkyns, 4th Baronet and last: Droughts in Australia -[2018-02-13T00:27:15.678] [INFO] cheese - inserting 1000 documents. first: 1572 in India and last: Category:3rd millennium in Saint Kitts and Nevis -[2018-02-13T00:27:15.693] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:27:15.730] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:27:15.779] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:27:15.785] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:15.805] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:27:16.099] [INFO] cheese - inserting 1000 documents. first: 11th Armored (disambiguation) and last: Category:List-Class Baseball articles by project -[2018-02-13T00:27:16.113] [INFO] cheese - inserting 1000 documents. first: Keloid and last: The (Young) Rascals -[2018-02-13T00:27:16.121] [INFO] cheese - inserting 1000 documents. first: Kast (disambiguation) and last: Kiełpiny (disambiguation) -[2018-02-13T00:27:16.127] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:27:16.152] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:27:16.268] [INFO] cheese - inserting 1000 documents. first: Limuchiha and last: Sweet Waters -[2018-02-13T00:27:16.270] [INFO] cheese - batch complete in: 1.941 secs -[2018-02-13T00:27:16.286] [INFO] cheese - inserting 1000 documents. first: Lexington Airport (Oregon) and last: File:Catalina-62.jpg -[2018-02-13T00:27:16.289] [INFO] cheese - inserting 1000 documents. first: Memory Rd. and last: Geological Survey of Finland, Bulletin -[2018-02-13T00:27:16.309] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:27:16.354] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:27:16.352] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:16.374] [INFO] cheese - inserting 1000 documents. first: Kiha (disambiguation) and last: Kordes (disambiguation) -[2018-02-13T00:27:16.399] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:27:16.494] [INFO] cheese - inserting 1000 documents. first: Sima Pandurović and last: Train Station -[2018-02-13T00:27:16.541] [INFO] cheese - inserting 1000 documents. first: Aukan (disambiguation) and last: Charles Jean Francois Henault -[2018-02-13T00:27:16.594] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:27:16.596] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:27:16.732] [INFO] cheese - inserting 1000 documents. first: KOT (disambiguation) and last: LEDS (disambiguation) -[2018-02-13T00:27:16.759] [INFO] cheese - inserting 1000 documents. first: Template:Olympics archery header/doc and last: Rtw2 -[2018-02-13T00:27:16.765] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:16.801] [INFO] cheese - inserting 1000 documents. first: Unterseeboot 1 (1906) and last: U-36 (1936) -[2018-02-13T00:27:16.810] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:27:16.832] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:27:16.855] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Australia/Units/April 14 and last: Category:Tennis in Lithuania -[2018-02-13T00:27:16.871] [INFO] cheese - inserting 1000 documents. first: Template:Labour LegCo members and last: This Charming Life -[2018-02-13T00:27:16.899] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:16.906] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:27:16.980] [INFO] cheese - inserting 1000 documents. first: LEEP (disambiguation) and last: Langenfeld (disambiguation) -[2018-02-13T00:27:17.012] [INFO] cheese - inserting 1000 documents. first: U 36 (1936) and last: Areeiro (disambiguation) -[2018-02-13T00:27:17.014] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:27:17.045] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:27:17.104] [INFO] cheese - inserting 1000 documents. first: Veniss Underground and last: Non-executive director -[2018-02-13T00:27:17.159] [INFO] cheese - inserting 1000 documents. first: Rtw 2 and last: Template:Office holders in the Diocese of Gloucester -[2018-02-13T00:27:17.204] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:27:17.218] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:17.346] [INFO] cheese - inserting 1000 documents. first: Ares (rocket) (disambiguation) and last: Pennsylvania House of Representatives, District 15 -[2018-02-13T00:27:17.350] [INFO] cheese - inserting 1000 documents. first: Belén de Bajirá and last: Ameristar Jet Charter -[2018-02-13T00:27:17.359] [INFO] cheese - inserting 1000 documents. first: File:Homme-au-bain-christophe-honore.jpg and last: Lev Korolyov (disambiguation) -[2018-02-13T00:27:17.385] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:17.396] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:17.397] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:27:17.597] [INFO] cheese - inserting 1000 documents. first: Chobhar (disambiguation) and last: Gulluk, Azerbaijan -[2018-02-13T00:27:17.618] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:27:17.628] [INFO] cheese - inserting 1000 documents. first: Lev of Galicia (disambiguation) and last: Live and Let Live (disambiguation) -[2018-02-13T00:27:17.653] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:27:17.661] [INFO] cheese - inserting 1000 documents. first: Wretched & Divine and last: Lynda Marchal -[2018-02-13T00:27:17.692] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:17.725] [INFO] cheese - inserting 1000 documents. first: Boy Meets World (Disney) and last: Incheon International Airport -[2018-02-13T00:27:17.738] [INFO] cheese - inserting 1000 documents. first: Patent Ochsner and last: Montréal/Boucherville Water Aerodrome -[2018-02-13T00:27:17.742] [INFO] cheese - inserting 1000 documents. first: Zarankiewicz and last: Category:Al-Qurain SC -[2018-02-13T00:27:17.754] [INFO] cheese - inserting 1000 documents. first: American Cream Draft and last: East Khandesh -[2018-02-13T00:27:17.778] [INFO] cheese - inserting 1000 documents. first: Seattle MLS 2010 and last: Ism (disambiguation) -[2018-02-13T00:27:17.786] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:27:17.790] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:27:17.797] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:27:17.799] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:27:17.807] [INFO] cheese - batch complete in: 1.537 secs -[2018-02-13T00:27:17.825] [INFO] cheese - inserting 1000 documents. first: Live and Rare (disambiguation) and last: Lubów (disambiguation) -[2018-02-13T00:27:17.865] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:27:17.959] [INFO] cheese - inserting 1000 documents. first: Amber Beattie and last: Andravida military airport -[2018-02-13T00:27:17.984] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:27:17.985] [INFO] cheese - inserting 1000 documents. first: Smackdown (song) and last: Shablykinskiy -[2018-02-13T00:27:18.023] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:27:18.069] [INFO] cheese - inserting 1000 documents. first: Category:1983 in darts and last: 1868 Ecuador earthquakes -[2018-02-13T00:27:18.094] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:27:18.132] [INFO] cheese - inserting 1000 documents. first: File:HTML500 Logo Orange BG.png and last: Alvim Pereira -[2018-02-13T00:27:18.157] [INFO] cheese - inserting 1000 documents. first: Utah State Route 2 (disambiguation) and last: Franklin Township School District (disambiguation) -[2018-02-13T00:27:18.183] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:27:18.206] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:27:18.217] [INFO] cheese - inserting 1000 documents. first: Amyloid precursor protein secretase and last: Kimie Shingyoji -[2018-02-13T00:27:18.240] [INFO] cheese - inserting 1000 documents. first: New army sword and last: Oddur Pétursson -[2018-02-13T00:27:18.283] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:18.297] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:18.334] [INFO] cheese - inserting 1000 documents. first: MISA (disambiguation) and last: Shilpi Mudgal -[2018-02-13T00:27:18.343] [INFO] cheese - inserting 1000 documents. first: Shablykinski and last: Eat St -[2018-02-13T00:27:18.355] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:27:18.363] [INFO] cheese - inserting 1000 documents. first: Spring Creek School (disambiguation) and last: USASF (disambiguation) -[2018-02-13T00:27:18.374] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:18.396] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:27:18.496] [INFO] cheese - inserting 1000 documents. first: Adrian Gerald Foley and last: Anonymous Tombs in Amarna -[2018-02-13T00:27:18.571] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:18.716] [INFO] cheese - inserting 1000 documents. first: Kalika and last: LDD (disambiguation) -[2018-02-13T00:27:18.753] [INFO] cheese - inserting 1000 documents. first: Malcolm (disambiguation) and last: Mark Ellis (disambiguation) -[2018-02-13T00:27:18.776] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:27:18.781] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:18.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 April 12 and last: Religious views of Abraham Lincoln -[2018-02-13T00:27:18.927] [INFO] cheese - inserting 1000 documents. first: Barr 6 and last: Solid black (chicken plumage) -[2018-02-13T00:27:18.962] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:27:18.997] [INFO] cheese - inserting 1000 documents. first: Jo Hyeon-jeong and last: Acris -[2018-02-13T00:27:19.020] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:27:19.077] [INFO] cheese - inserting 1000 documents. first: Mark Everett (disambiguation) and last: Mayhew (disambiguation) -[2018-02-13T00:27:19.097] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:27:19.134] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:27:19.186] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Mickleover Royals and last: Batocera rufomaculata var. diana -[2018-02-13T00:27:19.201] [INFO] cheese - inserting 1000 documents. first: Grounded (disambiguation) and last: Pine Tree Council -[2018-02-13T00:27:19.241] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:27:19.256] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:27:19.374] [INFO] cheese - inserting 1000 documents. first: Einstein-Podolsky-Rosen paradox and last: Bolshevism -[2018-02-13T00:27:19.389] [INFO] cheese - inserting 1000 documents. first: Maylands (disambiguation) and last: Michael Culme-Seymour (disambiguation) -[2018-02-13T00:27:19.410] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:27:19.418] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/On the Radio (album) and last: C31H64 -[2018-02-13T00:27:19.462] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Heights, Illinois and last: File:Koufaxbother4.jpg -[2018-02-13T00:27:19.469] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T00:27:19.476] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:27:19.518] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:27:19.534] [INFO] cheese - inserting 1000 documents. first: Baltimore Area Council and last: German submarine U63 -[2018-02-13T00:27:19.566] [INFO] cheese - inserting 1000 documents. first: Batocera rufomaculata var. flavescens and last: Jimmy Batten -[2018-02-13T00:27:19.568] [INFO] cheese - inserting 1000 documents. first: Gatorland and last: Pedro Linares -[2018-02-13T00:27:19.569] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:27:19.593] [INFO] cheese - inserting 1000 documents. first: Illinois-Indiana League and last: Rogério Lourenço -[2018-02-13T00:27:19.611] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:27:19.624] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:27:19.646] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:27:19.778] [INFO] cheese - inserting 1000 documents. first: Alan J. H. Maclean and last: Ebih-Il -[2018-02-13T00:27:19.808] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:19.859] [INFO] cheese - inserting 1000 documents. first: Rhodium (II) Acetate and last: Wilno region -[2018-02-13T00:27:19.865] [INFO] cheese - inserting 1000 documents. first: U-63 and last: Digyakhoba -[2018-02-13T00:27:19.891] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:19.892] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:19.894] [INFO] cheese - inserting 1000 documents. first: Ministério Público (disambiguation) and last: FNCZ -[2018-02-13T00:27:19.919] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:20.005] [INFO] cheese - inserting 1000 documents. first: Thomas Brown (minister) and last: Coudraysien -[2018-02-13T00:27:20.056] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:20.063] [INFO] cheese - inserting 1000 documents. first: Zaboomafoo and last: Burschenschaften -[2018-02-13T00:27:20.106] [INFO] cheese - inserting 1000 documents. first: SVCL and last: Musi (disambiguation) -[2018-02-13T00:27:20.121] [INFO] cheese - inserting 1000 documents. first: Ebih Il and last: Bolerium -[2018-02-13T00:27:20.128] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:27:20.146] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:27:20.160] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:27:20.224] [INFO] cheese - inserting 1000 documents. first: Ignateva and last: Ida Pollock -[2018-02-13T00:27:20.272] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:27:20.333] [INFO] cheese - inserting 1000 documents. first: 4-TE and last: Template:To SVG -[2018-02-13T00:27:20.342] [INFO] cheese - inserting 1000 documents. first: MusicDNA (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/onvibramfivefingersshoes.com -[2018-02-13T00:27:20.366] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:27:20.392] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:27:20.434] [INFO] cheese - inserting 1000 documents. first: Osmar Loss Vieira and last: File:TheMysteryTrainPoster.jpg -[2018-02-13T00:27:20.477] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:27:20.483] [INFO] cheese - inserting 1000 documents. first: Keley-i Kallahan language and last: File:Walt Disney World Dolphin logo.svg -[2018-02-13T00:27:20.534] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:20.600] [INFO] cheese - inserting 1000 documents. first: Template:R7 and last: Category:Dames Grand Cross of the Royal Victorian Order -[2018-02-13T00:27:20.621] [INFO] cheese - inserting 1000 documents. first: Arsenal (Highbury Hill) railway station and last: Freddie Brooks (musician) -[2018-02-13T00:27:20.631] [INFO] cheese - inserting 1000 documents. first: Momiji Dolls and last: Viadukt -[2018-02-13T00:27:20.654] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:27:20.657] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:27:20.681] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:27:20.749] [INFO] cheese - inserting 1000 documents. first: Dan Broström and last: Cry wolf -[2018-02-13T00:27:20.801] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:27:20.865] [INFO] cheese - inserting 1000 documents. first: Jim Meddick and last: Act of Navigation -[2018-02-13T00:27:20.892] [INFO] cheese - inserting 1000 documents. first: Neelum (disambiguation) and last: Niedźwiady (disambiguation) -[2018-02-13T00:27:20.914] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:27:20.925] [INFO] cheese - inserting 1000 documents. first: 2/1st Yorkshire Mounted Brigade and last: C13NH12O2Br -[2018-02-13T00:27:20.948] [INFO] cheese - batch complete in: 1.479 secs -[2018-02-13T00:27:20.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dermatology and last: Henning Bahs -[2018-02-13T00:27:20.972] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:20.996] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:27:21.007] [INFO] cheese - inserting 1000 documents. first: National Institute of Statistics and Census of Panama and last: Wikipedia:Articles for deletion/Pie Rats -[2018-02-13T00:27:21.082] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:27:21.142] [INFO] cheese - inserting 1000 documents. first: Icteric and last: Milan Jovanić -[2018-02-13T00:27:21.222] [INFO] cheese - inserting 1000 documents. first: Niedźwiednik (disambiguation) and last: Nowhere (disambiguation) -[2018-02-13T00:27:21.238] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:27:21.256] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:27:21.362] [INFO] cheese - inserting 1000 documents. first: Batuque (religion) and last: File:Frase de Neil Armstrong.ogg -[2018-02-13T00:27:21.409] [INFO] cheese - inserting 1000 documents. first: Bulgarian Constitutional Clubs and last: Talent (comics) -[2018-02-13T00:27:21.431] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:27:21.498] [INFO] cheese - inserting 1000 documents. first: Nowhere to Go (disambiguation) and last: Olchowiec (disambiguation) -[2018-02-13T00:27:21.501] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:21.558] [INFO] cheese - inserting 1000 documents. first: Akane the Kunoichi and last: Action of 9 February 1799 (South Africa) -[2018-02-13T00:27:21.566] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:27:21.576] [INFO] cheese - inserting 1000 documents. first: Sport (Russian TV channel,2011) and last: The Flatiron Challenge at Lacombe -[2018-02-13T00:27:21.621] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:27:21.661] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:27:21.778] [INFO] cheese - inserting 1000 documents. first: The Fremantle Journal and General Advertiser and last: Makai Kingdom: Chronicles Of The Sacred Tome -[2018-02-13T00:27:21.788] [INFO] cheese - inserting 1000 documents. first: Donde Estas Corazon? and last: Waldron, Washington -[2018-02-13T00:27:21.818] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:27:21.821] [INFO] cheese - inserting 1000 documents. first: IT Acronyms and last: HD 10180 f -[2018-02-13T00:27:21.830] [INFO] cheese - inserting 1000 documents. first: Electric light ochestra and last: Evgeniy Pokhlebaev -[2018-02-13T00:27:21.842] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:27:21.858] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:27:21.869] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:21.955] [INFO] cheese - inserting 1000 documents. first: Category:1968 in paleontology and last: Portal:Current events/2000 October 23 -[2018-02-13T00:27:21.987] [INFO] cheese - inserting 1000 documents. first: Trigonectes and last: Category:Pipelines in Oman -[2018-02-13T00:27:21.991] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:27:22.035] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:22.057] [INFO] cheese - inserting 1000 documents. first: Osieki (disambiguation) and last: PWU (disambiguation) -[2018-02-13T00:27:22.088] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:27:22.142] [INFO] cheese - inserting 1000 documents. first: Joe Smith (CFL football player) and last: Butanenitrile -[2018-02-13T00:27:22.191] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:22.208] [INFO] cheese - inserting 1000 documents. first: Evgueny Pokhlebaev and last: Narayanapuram -[2018-02-13T00:27:22.255] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:22.264] [INFO] cheese - inserting 1000 documents. first: Rennie Lake and last: Chou Chuan-huing -[2018-02-13T00:27:22.317] [INFO] cheese - inserting 1000 documents. first: PXC (disambiguation) and last: Paul Phoenix (disambiguation) -[2018-02-13T00:27:22.328] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:22.359] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:22.368] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2000 October 26 and last: High-level-architecture -[2018-02-13T00:27:22.429] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:22.439] [INFO] cheese - inserting 1000 documents. first: Category:Infrastructure in Oman and last: Wesley Kreder -[2018-02-13T00:27:22.456] [INFO] cheese - inserting 1000 documents. first: Navigation Acts and last: Jeremy Gelbwaks -[2018-02-13T00:27:22.544] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:22.553] [INFO] cheese - inserting 1000 documents. first: Pinchas Cohen Gan and last: Dianat -[2018-02-13T00:27:22.594] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:22.597] [INFO] cheese - inserting 1000 documents. first: Paul Pry (disambiguation) and last: Philippe Gardent (disambiguation) -[2018-02-13T00:27:22.593] [INFO] cheese - batch complete in: 1.645 secs -[2018-02-13T00:27:22.663] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:27:22.717] [INFO] cheese - inserting 1000 documents. first: Polyptychus affinis and last: Music City Championship at Gaylord Opryland -[2018-02-13T00:27:22.758] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:22.853] [INFO] cheese - inserting 1000 documents. first: Nadezda Petrovic and last: Don't you want me -[2018-02-13T00:27:22.922] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Wolfkeeper and last: Category:Dominican Republic at the Pan American Games -[2018-02-13T00:27:22.937] [INFO] cheese - inserting 1000 documents. first: Strictly Come Dancing - Series 10 and last: Category:Albums by Dominican Republic artists by genre -[2018-02-13T00:27:22.954] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:27:22.968] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:27:22.989] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:23.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Molly Bennett and last: Kleptomaniax -[2018-02-13T00:27:23.064] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Adele Schreiber-Krieger and last: Wikipedia:Related WikiProjects/WikiProject Minnesota Twins -[2018-02-13T00:27:23.162] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:27:23.180] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:27:23.267] [INFO] cheese - inserting 1000 documents. first: File:Buckethead-SpinalClock.jpg and last: Wikipedia:WikiProject Spam/LinkReports/thermalsolar.co.uk -[2018-02-13T00:27:23.268] [INFO] cheese - inserting 1000 documents. first: Bop Gun (Endangered Species) and last: Category:2008 in Canada -[2018-02-13T00:27:23.304] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:27:23.309] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:27:23.360] [INFO] cheese - inserting 1000 documents. first: Category:Merrimack College faculty and last: File:KK Smederevo 1953.png -[2018-02-13T00:27:23.396] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:27:23.457] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Caribbean/Turks and Caicos Islands work group and last: Wikipedia:Related WikiProjects/WikiProject Celts -[2018-02-13T00:27:23.512] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:23.594] [INFO] cheese - inserting 1000 documents. first: List of spherical objects in the Solar System and last: Metaformaldehye -[2018-02-13T00:27:23.641] [INFO] cheese - inserting 1000 documents. first: Doulos (SIL) and last: Wikipedia:Requests for adminship/Purplefeltangel2 -[2018-02-13T00:27:23.660] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:27:23.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thermalsolar.co.uk and last: Uinskaya -[2018-02-13T00:27:23.709] [INFO] cheese - inserting 1000 documents. first: Chromatic and diatonic and last: File:Peel sessions-triffids.jpg -[2018-02-13T00:27:23.738] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:27:23.741] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:23.794] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:23.816] [INFO] cheese - inserting 1000 documents. first: Category:Ruined castles in Fife and last: Thecla porthura -[2018-02-13T00:27:23.869] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:23.904] [INFO] cheese - inserting 1000 documents. first: Gábor Korchmáros and last: Wikipedia:Related WikiProjects/WikiProject Public Art -[2018-02-13T00:27:23.963] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:27:23.977] [INFO] cheese - inserting 1000 documents. first: Q106 (disambiguation) and last: Jacques-Marie Le Père -[2018-02-13T00:27:23.991] [INFO] cheese - inserting 1000 documents. first: File:Gotwald, William Washington En.jpg and last: William Best (Nova Scotia politician) -[2018-02-13T00:27:24.007] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:27:24.027] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:27:24.195] [INFO] cheese - inserting 1000 documents. first: Elegy (Twilight Zone episode) and last: Organisation for the Maintenance of Supplies -[2018-02-13T00:27:24.215] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Libraries/2013 (off-season) and last: CMLL Mini-Estrellas tournaments -[2018-02-13T00:27:24.231] [INFO] cheese - inserting 1000 documents. first: Rat-bite fevers and last: Cocos Island, Western Australia -[2018-02-13T00:27:24.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Georgia Tech and last: Complement Ther Med. -[2018-02-13T00:27:24.277] [INFO] cheese - inserting 1000 documents. first: C10H16N4O7 and last: Realistic (disambiguation) -[2018-02-13T00:27:24.276] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:27:24.299] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:24.334] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:24.350] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:24.351] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:24.363] [INFO] cheese - inserting 1000 documents. first: Oil of mirbane and last: Svecc -[2018-02-13T00:27:24.395] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:27:24.447] [INFO] cheese - inserting 1000 documents. first: At Home with Their Greatest Hits and last: Nigel Edward Buxton -[2018-02-13T00:27:24.517] [INFO] cheese - inserting 1000 documents. first: Realize (disambiguation) and last: Rich List (disambiguation) -[2018-02-13T00:27:24.532] [INFO] cheese - batch complete in: 1.937 secs -[2018-02-13T00:27:24.541] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:27:24.606] [INFO] cheese - inserting 1000 documents. first: Feng Zhongpu and last: Template:Attached KML/DG postcode area -[2018-02-13T00:27:24.632] [INFO] cheese - inserting 1000 documents. first: Category:Former Kurdish states and last: Synchrotron accelerator -[2018-02-13T00:27:24.652] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:24.685] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:24.723] [INFO] cheese - inserting 1000 documents. first: Category:Spetsnaz brigades of Russia and last: El Reno Municipal Swimming Pool Bath House -[2018-02-13T00:27:24.759] [INFO] cheese - inserting 1000 documents. first: Rich Township (disambiguation) and last: Robert Waterman (disambiguation) -[2018-02-13T00:27:24.766] [INFO] cheese - inserting 1000 documents. first: Liviu and last: Wikipedia:Articles for deletion/Poptimal -[2018-02-13T00:27:24.774] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:27:24.780] [INFO] cheese - inserting 1000 documents. first: Saraca and last: Matawan Regional High School -[2018-02-13T00:27:24.806] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:27:24.828] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:27:24.859] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:25.004] [INFO] cheese - inserting 1000 documents. first: Category:American Samoan clergy and last: Category:Road speed limit -[2018-02-13T00:27:25.050] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:27:25.064] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/DH postcode area and last: Template:Fb team Fortuna Brazi -[2018-02-13T00:27:25.093] [INFO] cheese - inserting 1000 documents. first: Geoffrey Hill (disambiguation) and last: Agra Cantt. (Vidhan Sabha constituency) -[2018-02-13T00:27:25.096] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:27:25.130] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:25.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Mass spectrometry/Participants and last: Divisions of Kenya -[2018-02-13T00:27:25.255] [INFO] cheese - inserting 1000 documents. first: 4 Stroke Internal Combustion Engine and last: Body and Soul (David Murray album) -[2018-02-13T00:27:25.282] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:27:25.328] [INFO] cheese - inserting 1000 documents. first: Browne v Dunn and last: Roy Wayne Farris -[2018-02-13T00:27:25.332] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:27:25.394] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:27:25.422] [INFO] cheese - inserting 1000 documents. first: Ruben Gonzalez (disambiguation) and last: Fundamenta Botanica -[2018-02-13T00:27:25.487] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:25.659] [INFO] cheese - inserting 1000 documents. first: Chanthaburi Province Stadium and last: Colobothea femorosa -[2018-02-13T00:27:25.674] [INFO] cheese - inserting 1000 documents. first: Fortuna Brazi and last: Wikipedia:Miscellany for deletion/Wikipedia:Articles for creation/Suman Ashraphi -[2018-02-13T00:27:25.694] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:27:25.713] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:27:25.762] [INFO] cheese - inserting 1000 documents. first: McDonald's Championship (golf) and last: Rosie Munter -[2018-02-13T00:27:25.788] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:27:25.911] [INFO] cheese - inserting 1000 documents. first: Cholesteryl pelargonate and last: Lime nitrogen -[2018-02-13T00:27:25.928] [INFO] cheese - inserting 1000 documents. first:  and last: The Barbegal mill -[2018-02-13T00:27:25.944] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:27:25.952] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:27:26.013] [INFO] cheese - inserting 1000 documents. first: Dave Magadan and last: KRNIC -[2018-02-13T00:27:26.020] [INFO] cheese - inserting 1000 documents. first: File:Hmwithsstuff.JPG and last: Old-fashioned (short story) -[2018-02-13T00:27:26.033] [INFO] cheese - inserting 1000 documents. first: Salvatore (disambiguation) and last: Sawgrass (disambiguation) -[2018-02-13T00:27:26.044] [INFO] cheese - inserting 1000 documents. first: Corinne Griffith and last: Jesus in Islam -[2018-02-13T00:27:26.057] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:27:26.077] [INFO] cheese - inserting 1000 documents. first: Colobothea fibrosa and last: Diomedea bidentata -[2018-02-13T00:27:26.077] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:27:26.083] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:27:26.110] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:26.146] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:26.148] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:27:26.166] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T00:27:26.260] [INFO] cheese - inserting 1000 documents. first: Alpha-thiolglycerol and last: TaylorWessing -[2018-02-13T00:27:26.317] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:26.320] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:27:26.332] [INFO] cheese - inserting 1000 documents. first: Luca Coletto and last: Seems Like Old Times (disambiguation) -[2018-02-13T00:27:26.348] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:27:26.386] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:27:26.454] [INFO] cheese - inserting 1000 documents. first: The GSIA and last: Wikipedia:Articles for deletion/The War of Turkish Presidential Elections -[2018-02-13T00:27:26.494] [INFO] cheese - inserting 1000 documents. first: Diomedea linearis and last: Windham Township (Wyoming County, Pennsylvania) -[2018-02-13T00:27:26.501] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:26.506] [INFO] cheese - inserting 1000 documents. first:  and last: File:Bedwetter cover.jpg -[2018-02-13T00:27:26.523] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:27:26.535] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:26.592] [INFO] cheese - inserting 1000 documents. first: Sphincter pupillae and last: The First Duty -[2018-02-13T00:27:26.714] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:27:26.791] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:26.812] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:26.828] [INFO] cheese - inserting 1000 documents. first: Seenu (disambiguation) and last: Carry chain -[2018-02-13T00:27:26.842] [INFO] cheese - inserting 1000 documents. first: 30076 and last: File:VA - Fairfax County Police Badge.jpg -[2018-02-13T00:27:26.860] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:26.892] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:27:27.003] [INFO] cheese - inserting 1000 documents. first: Igreja e Convento de Nossa Senhora do Carmo and last: 2015–16 Regionalliga (women) -[2018-02-13T00:27:27.004] [INFO] cheese - inserting 1000 documents. first: Beatdown Set and last: Pedro Oldoni -[2018-02-13T00:27:27.014] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:27.046] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:27:27.053] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:27.070] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:27:27.165] [INFO] cheese - inserting 1000 documents. first: Wilborn Temple First Church of God in Christ and last: Canvas (film) -[2018-02-13T00:27:27.193] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:27.226] [INFO] cheese - inserting 1000 documents. first: Curtain Call For Clifford and last: Poor housing -[2018-02-13T00:27:27.245] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:27:27.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jagged edges and last: University of La Laguna -[2018-02-13T00:27:27.264] [INFO] cheese - inserting 1000 documents. first: Diarrhoea and last: SQL programming language -[2018-02-13T00:27:27.286] [INFO] cheese - inserting 1000 documents. first: Yenikend, Sabirabad and last: Riding sword -[2018-02-13T00:27:27.307] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:27:27.328] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:27.347] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T00:27:27.368] [INFO] cheese - inserting 1000 documents. first: Sio (disambiguation) and last: Somogyi (disambiguation) -[2018-02-13T00:27:27.387] [INFO] cheese - inserting 1000 documents. first: File:Dharmayutham.jpg and last: Wikipedia:WikiProject Directory/Description/WikiProject Cell Signaling -[2018-02-13T00:27:27.403] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:27:27.410] [INFO] cheese - inserting 1000 documents. first: Patricia Ross and last: Category:Regionally Important Geological / Geomorphicological Sites (RIGS) in Cumbria -[2018-02-13T00:27:27.445] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:27.462] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:27.548] [INFO] cheese - inserting 1000 documents. first: Glease (Glee) and last: Gorgyra mocquerysii -[2018-02-13T00:27:27.577] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:27.662] [INFO] cheese - inserting 1000 documents. first: Somov (disambiguation) and last: Iassy-Chişinău Operation -[2018-02-13T00:27:27.683] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:27:27.749] [INFO] cheese - inserting 1000 documents. first: Adenotrophic viviparity and last: Zhang Xiaobin (footballer, born 1985) -[2018-02-13T00:27:27.767] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Battle of Britpop and last: Bangladesh University of Professionals -[2018-02-13T00:27:27.810] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:27.815] [INFO] cheese - inserting 1000 documents. first: Layline and last: Saint Mary's Regional Medical Center (Reno, Nevada) -[2018-02-13T00:27:27.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Lede section and last: Steven Silver (disambiguation) -[2018-02-13T00:27:27.837] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:27.862] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:27:27.865] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:27.914] [INFO] cheese - inserting 1000 documents. first: Jalan Tengku Ampuan Bariah and last: Archery at the 2004 Summer Paralympics – Men's individual W2 -[2018-02-13T00:27:27.936] [INFO] cheese - inserting 1000 documents. first: Category:1017 establishments by country and last: Wikipedia:WikiProject Directory/Description/WikiProject Intelligence Agency -[2018-02-13T00:27:27.963] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:27.986] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:27:28.053] [INFO] cheese - inserting 1000 documents. first: Steven Vidler (disambiguation) and last: Super Spike V'Ball/Nintendo World Cup (disambiguation) -[2018-02-13T00:27:28.072] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:27:28.232] [INFO] cheese - inserting 1000 documents. first: Super Sunday (disambiguation) and last: TVIS (disambiguation) -[2018-02-13T00:27:28.252] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:27:28.256] [INFO] cheese - inserting 1000 documents. first: Grand Theft Auto: Liberty City Stories Radio Stations and last: File:The Whole of the Moon Waterboys single.jpg -[2018-02-13T00:27:28.267] [INFO] cheese - inserting 1000 documents. first: Missouri - Nebraska Bell and last: Alexander Streatfeild -[2018-02-13T00:27:28.284] [INFO] cheese - inserting 1000 documents. first: HRH The Prince Philip and last: West Farms Square–East Tremont Avenue -[2018-02-13T00:27:28.290] [INFO] cheese - inserting 1000 documents. first: Category:Ecuador communications-related lists and last: Joy Laville -[2018-02-13T00:27:28.303] [INFO] cheese - inserting 1000 documents. first: Quévy and last: European Capital of Culture -[2018-02-13T00:27:28.313] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:28.311] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:28.331] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:28.331] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:27:28.433] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T00:27:28.493] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Interlanguage Links and last: P2P economic system -[2018-02-13T00:27:28.500] [INFO] cheese - inserting 1000 documents. first: TVL (disambiguation) and last: Termini (disambiguation) -[2018-02-13T00:27:28.523] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:28.566] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:27:28.681] [INFO] cheese - inserting 1000 documents. first: File:C.brunneus.png and last: University Medical Center Utrecht -[2018-02-13T00:27:28.688] [INFO] cheese - inserting 1000 documents. first: List of settlement houses in Chicago and last: ⡐ -[2018-02-13T00:27:28.717] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:28.721] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:28.724] [INFO] cheese - inserting 1000 documents. first: Tern Island (disambiguation) and last: Cardiff City F.C. season 1992–93 -[2018-02-13T00:27:28.747] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:27:28.786] [INFO] cheese - inserting 1000 documents. first: Template:Election dual-member and last: Wikipedia:Articles for deletion/Vandalismo -[2018-02-13T00:27:28.787] [INFO] cheese - inserting 1000 documents. first: Just Add Water and last: Vivien Savage -[2018-02-13T00:27:28.822] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:28.841] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:27:28.859] [INFO] cheese - inserting 1000 documents. first: ⡑ and last: Category:Jordan transport-related lists -[2018-02-13T00:27:28.877] [INFO] cheese - batch complete in: 0.155 secs -[2018-02-13T00:27:28.906] [INFO] cheese - inserting 1000 documents. first: The Man I Love (disambiguation) and last: Standing Rules of the United States Senate, Rule XXXV -[2018-02-13T00:27:28.924] [INFO] cheese - batch complete in: 0.177 secs -[2018-02-13T00:27:29.049] [INFO] cheese - inserting 1000 documents. first: File:Dora the Explorer logo.svg and last: 긏 -[2018-02-13T00:27:29.066] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:27:29.088] [INFO] cheese - inserting 1000 documents. first: Done and last: File:The Stuffs.jpg -[2018-02-13T00:27:29.131] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:27:29.136] [INFO] cheese - inserting 1000 documents. first: Thomas Crittenden (disambiguation) and last: Tomisław (disambiguation) -[2018-02-13T00:27:29.140] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Philosophy/Epistemology and last: White-Holman House -[2018-02-13T00:27:29.161] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:27:29.164] [INFO] cheese - inserting 1000 documents. first: Stonor (disambiguation) and last: Zurbahan -[2018-02-13T00:27:29.200] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:27:29.202] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:27:29.255] [INFO] cheese - inserting 1000 documents. first: Neuropsychology (journal) and last: 냅 -[2018-02-13T00:27:29.280] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:27:29.350] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Universal hacking corporation and last: Reserve Bank -[2018-02-13T00:27:29.379] [INFO] cheese - inserting 1000 documents. first: Tomki (disambiguation) and last: Tropical Storm Opal (disambiguation) -[2018-02-13T00:27:29.402] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:27:29.410] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:27:29.449] [INFO] cheese - inserting 1000 documents. first: 냆 and last: 둈 -[2018-02-13T00:27:29.465] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:27:29.499] [INFO] cheese - inserting 1000 documents. first: CONSOL Energy Park and last: Wikipedia:Articles for deletion/Guided self service -[2018-02-13T00:27:29.543] [INFO] cheese - inserting 1000 documents. first: File:Johnny von neumann sig.gif and last: File:Vertex new.jpg -[2018-02-13T00:27:29.547] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:27:29.582] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Ophelia (disambiguation) and last: UMN (disambiguation) -[2018-02-13T00:27:29.588] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:29.600] [INFO] cheese - batch complete in: 0.19 secs -[2018-02-13T00:27:29.622] [INFO] cheese - inserting 1000 documents. first: File:J.C. Deagan, Inc. Logo.png and last: Category:Producer, Artist -[2018-02-13T00:27:29.661] [INFO] cheese - inserting 1000 documents. first: Dario Fo and last: John MacBride -[2018-02-13T00:27:29.666] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:27:29.710] [INFO] cheese - inserting 1000 documents. first: Kolyshleyskaya and last: Kitikmeot Air -[2018-02-13T00:27:29.732] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T00:27:29.742] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:27:29.803] [INFO] cheese - inserting 1000 documents. first: Moorilla Vinyard and last: LANTIRN pods -[2018-02-13T00:27:29.828] [INFO] cheese - inserting 1000 documents. first: UMO (disambiguation) and last: Urtenen (disambiguation) -[2018-02-13T00:27:29.864] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:27:29.871] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:27:29.964] [INFO] cheese - inserting 1000 documents. first: File:Edge new.jpg and last: Inter curtea de arges -[2018-02-13T00:27:29.992] [INFO] cheese - inserting 1000 documents. first: Phi Lambda Alpha and last: Lirası -[2018-02-13T00:27:30.009] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:27:30.042] [INFO] cheese - inserting 1000 documents. first: Long–Evans rat and last: Dakota Jackson -[2018-02-13T00:27:30.059] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:27:30.103] [INFO] cheese - inserting 1000 documents. first: Zoveydi-ye Ramezan and last: 2012–13 Southern Illinois Salukis men's basketball team -[2018-02-13T00:27:30.104] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:30.105] [INFO] cheese - inserting 1000 documents. first: Urubamba (disambiguation) and last: P-51/F-6C Mustang -[2018-02-13T00:27:30.154] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:27:30.239] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:27:30.385] [INFO] cheese - inserting 1000 documents. first: SCUD missiles and last: George Kranky -[2018-02-13T00:27:30.416] [INFO] cheese - inserting 1000 documents. first: Via Nazionale (disambiguation) and last: WFAS (disambiguation) -[2018-02-13T00:27:30.437] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:27:30.453] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:27:30.487] [INFO] cheese - inserting 1000 documents. first: Schizoeaca and last: Diocletian window -[2018-02-13T00:27:30.507] [INFO] cheese - inserting 1000 documents. first: 1994 Northeast Louisiana Indians football team and last: 뚿 -[2018-02-13T00:27:30.532] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:27:30.549] [INFO] cheese - inserting 1000 documents. first: Jack Abbot (disambiguation) and last: Prof. Michael Beesley -[2018-02-13T00:27:30.532] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:27:30.590] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:30.638] [INFO] cheese - inserting 1000 documents. first: ORESKABAND and last: Hanover School District 28 -[2018-02-13T00:27:30.641] [INFO] cheese - inserting 1000 documents. first: WFBR (disambiguation) and last: Tambor huasca -[2018-02-13T00:27:30.665] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:27:30.681] [INFO] cheese - inserting 1000 documents. first: 뛀 and last: 멬 -[2018-02-13T00:27:30.692] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:27:30.696] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:27:30.817] [INFO] cheese - inserting 1000 documents. first: 멭 and last: 븟 -[2018-02-13T00:27:30.820] [INFO] cheese - inserting 1000 documents. first: Theodore Kollek and last: Fawzi Khalid Abdullah Fahad Al Odah -[2018-02-13T00:27:30.837] [INFO] cheese - batch complete in: 0.144 secs -[2018-02-13T00:27:30.869] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:27:30.871] [INFO] cheese - inserting 1000 documents. first: Relligion and last: Yankees—Mets rivalry -[2018-02-13T00:27:30.906] [INFO] cheese - inserting 1000 documents. first: John Gilroy and last: Category:1941 in Switzerland -[2018-02-13T00:27:30.919] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:30.927] [INFO] cheese - inserting 1000 documents. first: Template:Country data Nanyo and last: Category:2012–13 in Surinamese football -[2018-02-13T00:27:30.934] [INFO] cheese - inserting 1000 documents. first: Liam Gallagher and last: Loyalist feud -[2018-02-13T00:27:30.935] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:30.976] [INFO] cheese - inserting 1000 documents. first: 븠 and last: 쇈 -[2018-02-13T00:27:30.979] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:31.001] [INFO] cheese - batch complete in: 0.164 secs -[2018-02-13T00:27:31.030] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T00:27:31.146] [INFO] cheese - inserting 1000 documents. first: 쇉 and last: 앩 -[2018-02-13T00:27:31.160] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:27:31.190] [INFO] cheese - inserting 1000 documents. first: White Marsh (disambiguation) and last: Williamson River (disambiguation) -[2018-02-13T00:27:31.197] [INFO] cheese - inserting 1000 documents. first: Lion's Mane Jelly and last: Category:Rapid transit in the Philippines -[2018-02-13T00:27:31.215] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:27:31.240] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:31.262] [INFO] cheese - inserting 1000 documents. first: Helmuth Duckadam and last: Anton Felkel -[2018-02-13T00:27:31.308] [INFO] cheese - inserting 1000 documents. first: Category:19th-century establishments in Sudan and last: Demographics of Cleveland, Ohio -[2018-02-13T00:27:31.315] [INFO] cheese - inserting 1000 documents. first: Category:Disease-related deaths in Canada and last: Category:Africa politician templates -[2018-02-13T00:27:31.321] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:31.364] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:31.411] [INFO] cheese - inserting 1000 documents. first: Williamsport (disambiguation) and last: Sulaiman Shah II of Kedah -[2018-02-13T00:27:31.424] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:31.503] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:31.600] [INFO] cheese - inserting 1000 documents. first: 앪 and last: Wikipedia:Sockpuppet investigations/117.199.111.175/Archive -[2018-02-13T00:27:31.639] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:27:31.794] [INFO] cheese - inserting 1000 documents. first: De Fructibus Et Seminibus Plantarum and last: Holt Publishers -[2018-02-13T00:27:31.796] [INFO] cheese - inserting 1000 documents. first: X woman (disambiguation) and last: Take a Letter Mr. Jones -[2018-02-13T00:27:31.831] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:31.855] [INFO] cheese - inserting 1000 documents. first: Hydrocarbon classification and last: Robert Spitzer -[2018-02-13T00:27:31.890] [INFO] cheese - inserting 1000 documents. first: Friuli-Venezia Giulia regional election, 2008 and last: FL 7 -[2018-02-13T00:27:31.888] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:27:31.941] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:31.947] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:27:31.958] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Tanzania by decade and last: Eat-the-World -[2018-02-13T00:27:32.055] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:27:32.139] [INFO] cheese - inserting 1000 documents. first: Selçuk Dereli and last: Vietjet Aviation Join Stock Company -[2018-02-13T00:27:32.191] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:32.233] [INFO] cheese - inserting 1000 documents. first: ZPR (disambiguation) and last: Łaszewo (disambiguation) -[2018-02-13T00:27:32.266] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:32.378] [INFO] cheese - inserting 1000 documents. first: Chevy subdivision and last: File:Watchmylips.jpg -[2018-02-13T00:27:32.395] [INFO] cheese - inserting 1000 documents. first: Convair 600 and last: 109th Regiment of Foot (Bombay Infantry) -[2018-02-13T00:27:32.427] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:32.439] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:27:32.547] [INFO] cheese - inserting 1000 documents. first: Coat of arms of New York and last: Yitschak Rabin -[2018-02-13T00:27:32.614] [INFO] cheese - inserting 1000 documents. first: Canada Scoops and last: Jonathan Browning (designer) -[2018-02-13T00:27:32.662] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:27:32.664] [INFO] cheese - inserting 1000 documents. first: Template:Basketball kit and last: Template:Independent Nationalist/meta/color -[2018-02-13T00:27:32.699] [INFO] cheese - batch complete in: 1.669 secs -[2018-02-13T00:27:32.708] [INFO] cheese - inserting 1000 documents. first: Vietjet Aviation Joint Stock Company and last: List of Azerbaijani writers -[2018-02-13T00:27:32.712] [INFO] cheese - inserting 1000 documents. first: Ławica (disambiguation) and last: File:Ksee24.jpg -[2018-02-13T00:27:32.731] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:27:32.813] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:32.832] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:27:32.944] [INFO] cheese - inserting 1000 documents. first: Bigutar and last: Pelamis Wave Power -[2018-02-13T00:27:33.047] [INFO] cheese - inserting 1000 documents. first: String Instrument Repertoire and last: Janssone van Dornicke -[2018-02-13T00:27:33.068] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:27:33.097] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:27:33.360] [INFO] cheese - inserting 1000 documents. first: Punjab Youth Festival and last: Category:Lists by city in the Philippines -[2018-02-13T00:27:33.404] [INFO] cheese - inserting 1000 documents. first: Template:Independent Nationalist/meta/shortname and last: Hearst Communications, Inc -[2018-02-13T00:27:33.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Yannis Spathas and last: List of Lua IDEs -[2018-02-13T00:27:33.430] [INFO] cheese - inserting 1000 documents. first: Chalalán Ecolodge and last: San Javier Municipality, Cercado -[2018-02-13T00:27:33.435] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:27:33.497] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:27:33.505] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:27:33.535] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:27:33.547] [INFO] cheese - inserting 1000 documents. first: Nicholas Paspaley Senior and last: Seikichi Odo -[2018-02-13T00:27:33.593] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:27:33.652] [INFO] cheese - inserting 1000 documents. first: Buck dancing and last: Category:Carlism -[2018-02-13T00:27:33.691] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:27:33.848] [INFO] cheese - inserting 1000 documents. first: Chhitauna and last: Uinskii Raion -[2018-02-13T00:27:33.869] [INFO] cheese - inserting 1000 documents. first: George M. Williamson (architect) and last: Padmapani Acharya -[2018-02-13T00:27:33.878] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:27:33.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of unusual animal anecdotes and last: Heather Ryan (Playboy model) -[2018-02-13T00:27:33.920] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:33.926] [INFO] cheese - inserting 1000 documents. first: List of C Sharp IDEs and last: Concern (organisation) -[2018-02-13T00:27:33.942] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:27:33.990] [INFO] cheese - inserting 1000 documents. first: Stirling County RFC and last: Mitcham Library -[2018-02-13T00:27:33.992] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:27:34.048] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:27:34.085] [INFO] cheese - inserting 1000 documents. first: Ahmed Shukairy and last: Mathematicians -[2018-02-13T00:27:34.144] [INFO] cheese - inserting 1000 documents. first: Daizona pacifica and last: Lukinić Brdo -[2018-02-13T00:27:34.159] [INFO] cheese - batch complete in: 1.46 secs -[2018-02-13T00:27:34.202] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:27:34.254] [INFO] cheese - inserting 1000 documents. first: Veritas Music Entertainment, Inc. and last: Capri, Campania -[2018-02-13T00:27:34.304] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:27:34.332] [INFO] cheese - inserting 1000 documents. first: Niels Werring and last: Portal:Canada/Tab1 -[2018-02-13T00:27:34.353] [INFO] cheese - inserting 1000 documents. first: Category:Lists of companies of the Czech Republic and last: Musculus psoas major -[2018-02-13T00:27:34.373] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:27:34.394] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:34.492] [INFO] cheese - inserting 1000 documents. first: Serrano-class destroyer and last: Eastwood, South Australia -[2018-02-13T00:27:34.535] [INFO] cheese - inserting 1000 documents. first: File:Ambo Mineral Water logo.jpg and last: 2015-16 Minnesota Wild season -[2018-02-13T00:27:34.545] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:27:34.599] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:27:34.612] [INFO] cheese - inserting 1000 documents. first: The God Of Cookery and last: Department of Premier and Cabinet (New South Wales) -[2018-02-13T00:27:34.669] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:27:34.745] [INFO] cheese - inserting 1000 documents. first: St. John (store) and last: List of Hospitals in Macau -[2018-02-13T00:27:34.752] [INFO] cheese - inserting 1000 documents. first: 1979 Alpine Skiing World Cup – Men's Downhill and last: Wikipedia:Articles for deletion/Mi Propio Auto -[2018-02-13T00:27:34.787] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:27:34.792] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:27:34.812] [INFO] cheese - inserting 1000 documents. first: Shrenika and last: Wikipedia:Reference desk/Archives/Mathematics/2008 October 14 -[2018-02-13T00:27:34.871] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:27:34.950] [INFO] cheese - inserting 1000 documents. first: File:Logo Dzair TV.png and last: Dichomeris lotellus -[2018-02-13T00:27:34.995] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:27:35.085] [INFO] cheese - inserting 1000 documents. first: Erindale, South Australia and last: Flixton -[2018-02-13T00:27:35.130] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:27:35.139] [INFO] cheese - inserting 1000 documents. first: Peck NW2 and last: Wikipedia:MSIE Tools -[2018-02-13T00:27:35.178] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:35.225] [INFO] cheese - inserting 1000 documents. first: Ventaquemada and last: Equity feminists -[2018-02-13T00:27:35.253] [INFO] cheese - inserting 1000 documents. first: William Mareshall and last: Stare Garnowo -[2018-02-13T00:27:35.278] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:35.282] [INFO] cheese - inserting 1000 documents. first: Description Logic and last: Safari -[2018-02-13T00:27:35.299] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:27:35.337] [INFO] cheese - inserting 1000 documents. first: Salim Ghazal and last: Ningerum, Papua New Guinea -[2018-02-13T00:27:35.362] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T00:27:35.430] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:27:35.466] [INFO] cheese - inserting 1000 documents. first: Category:German cameras and last: Griswold Home Care -[2018-02-13T00:27:35.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Opera tools and last: North China plain -[2018-02-13T00:27:35.548] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:27:35.591] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:27:35.598] [INFO] cheese - inserting 1000 documents. first: Former Yugoslav Republic of Macedonia - Denar and last: Homologoumena -[2018-02-13T00:27:35.634] [INFO] cheese - inserting 1000 documents. first: Roosevelt Hotel (New Orleans) and last: A Most Peculiar Man -[2018-02-13T00:27:35.642] [INFO] cheese - inserting 1000 documents. first: Andrew Lahde and last: Murowaniec, Masovian Voivodeship -[2018-02-13T00:27:35.657] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:27:35.665] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:35.688] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:35.760] [INFO] cheese - inserting 1000 documents. first: Mait and last: Panzer Division Tatra -[2018-02-13T00:27:35.804] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:35.932] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Vbabey and last: Wikipedia:Sockpuppet investigations/Almightyvegeta/Archive -[2018-02-13T00:27:35.950] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Consumer Reports/Medical education and last: Rodeo (Travis Scott album) -[2018-02-13T00:27:35.964] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:27:36.016] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:27:36.038] [INFO] cheese - inserting 1000 documents. first: Nowa Pułapina and last: Tim the Tiny Horse at Large -[2018-02-13T00:27:36.086] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:27:36.118] [INFO] cheese - inserting 1000 documents. first: Joxer Goes to Stuttgart and last: Self-facilitating media node -[2018-02-13T00:27:36.125] [INFO] cheese - inserting 1000 documents. first: Ledger Hill and last: Creative Music Studio -[2018-02-13T00:27:36.132] [INFO] cheese - inserting 1000 documents. first: Typhoon Namtheun and last: Leo Stepanyan -[2018-02-13T00:27:36.169] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:36.181] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:27:36.205] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:27:36.386] [INFO] cheese - inserting 1000 documents. first: List of Connecticut breweries and last: Hive mind (disambiguation) -[2018-02-13T00:27:36.402] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in New Spain by century and last: Kuzhithurai railway station -[2018-02-13T00:27:36.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (anglicization) and last: Primitive root modulo n -[2018-02-13T00:27:36.452] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:27:36.470] [INFO] cheese - inserting 1000 documents. first: Grzbiet Lasocki and last: Integral Nactiv -[2018-02-13T00:27:36.499] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:27:36.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Planet Recordz and last: Whitaker College of Health Sciences -[2018-02-13T00:27:36.536] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:36.544] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T00:27:36.569] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:27:36.684] [INFO] cheese - inserting 1000 documents. first: 281st Security Division (Wehrmacht) and last: Petionville, Haiti -[2018-02-13T00:27:36.729] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:27:36.774] [INFO] cheese - inserting 1000 documents. first: Kaitarō Hasegawa and last: A man for all islands -[2018-02-13T00:27:36.820] [INFO] cheese - inserting 1000 documents. first: File:Resurrection City Washington D.C. 1968.jpg and last: Wikipedia:Articles for deletion/Lokanatham Nandikeswararao -[2018-02-13T00:27:36.855] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:27:36.885] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:27:36.901] [INFO] cheese - inserting 1000 documents. first: Suchindram railway station and last: Antonella (TV series) -[2018-02-13T00:27:36.925] [INFO] cheese - inserting 1000 documents. first: Category:Ahva politicians and last: Wikipedia:WikiProject Spam/LinkReports/pfculture.net -[2018-02-13T00:27:36.946] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:27:36.971] [INFO] cheese - inserting 1000 documents. first: Natomas Men's Professional Tennis Tournament and last: List of articles about Ontario CCF/NDP members -[2018-02-13T00:27:36.986] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:27:37.046] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:37.241] [INFO] cheese - inserting 1000 documents. first: IPS Panel and last: Cotton Club Casino -[2018-02-13T00:27:37.276] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:37.295] [INFO] cheese - inserting 1000 documents. first: John Borstlap and last: Category:1997–98 in Caribbean football by country -[2018-02-13T00:27:37.320] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blue Prism and last: Labaratorija zvuka -[2018-02-13T00:27:37.336] [INFO] cheese - inserting 1000 documents. first: Situated knowledge and last: Luis de Urquijo -[2018-02-13T00:27:37.335] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:37.368] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the Middle East and last: Nokia 2760 -[2018-02-13T00:27:37.373] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:27:37.384] [INFO] cheese - inserting 1000 documents. first: Category:Palladian Revival architecture in California and last: Sylwia Ejdys -[2018-02-13T00:27:37.427] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:27:37.437] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:37.503] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:37.679] [INFO] cheese - inserting 1000 documents. first: File:MediaCorp okto.jpg and last: List of Ambassadors of Russia to Côte d'Ivoire -[2018-02-13T00:27:37.697] [INFO] cheese - inserting 1000 documents. first: Category:1998–99 in Caribbean football by country and last: File:Dami Im - Smile.jpg -[2018-02-13T00:27:37.764] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:27:37.763] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:27:37.815] [INFO] cheese - inserting 1000 documents. first: Press and last: Gusto (album) -[2018-02-13T00:27:37.937] [INFO] cheese - inserting 1000 documents. first: Zolotaya Dolina and last: Lukas Wooller -[2018-02-13T00:27:37.939] [INFO] cheese - batch complete in: 1.388 secs -[2018-02-13T00:27:37.974] [INFO] cheese - inserting 1000 documents. first: Tatiana Golikova and last: VT-04 -[2018-02-13T00:27:37.984] [INFO] cheese - inserting 1000 documents. first: Code of Laws of the United States of America and last: Template:Infobox Six Nations Championship 2 -[2018-02-13T00:27:38.022] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:27:38.049] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:38.054] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:27:38.074] [INFO] cheese - inserting 1000 documents. first: Template:Shaw Communications and last: Madeleine Bejart -[2018-02-13T00:27:38.165] [INFO] cheese - inserting 1000 documents. first: Sabit Uka and last: Wikipedia:Sockpuppet investigations/YourMamasWeightIsOffTheScale -[2018-02-13T00:27:38.171] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:27:38.200] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:27:38.269] [INFO] cheese - inserting 1000 documents. first: List of colonial governors of Côte d'Ivoire and last: 1984 U.S. Pro Indoor – Doubles -[2018-02-13T00:27:38.322] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:27:38.580] [INFO] cheese - inserting 1000 documents. first: Resonance Records and last: Category:2010 in table tennis -[2018-02-13T00:27:38.590] [INFO] cheese - inserting 1000 documents. first: VT-06 and last: File:Equilibrium sign 15.png -[2018-02-13T00:27:38.676] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:38.677] [INFO] cheese - inserting 1000 documents. first: List of Mississippi state highways and last: Category:Albinism -[2018-02-13T00:27:38.688] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:27:38.718] [INFO] cheese - inserting 1000 documents. first: Karen Strong-Hearth and last: Category:2012–13 Oberliga -[2018-02-13T00:27:38.772] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:27:38.813] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:27:38.823] [INFO] cheese - inserting 1000 documents. first: Armande Gresinde Claire Elizabeth Béjart and last: Pocock Racing Shells -[2018-02-13T00:27:38.903] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:27:38.956] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2004 Summer Paralympics – Women's 100 metre breaststroke SB5 and last: Category:Liberia communications-related lists -[2018-02-13T00:27:38.999] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:27:39.034] [INFO] cheese - inserting 1000 documents. first: Josefina Valencia Muñoz and last: Agboville, Ivory Coast -[2018-02-13T00:27:39.081] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:27:39.159] [INFO] cheese - inserting 1000 documents. first: Samuel Tyszelman and last: Category:Journalists from North Dakota -[2018-02-13T00:27:39.177] [INFO] cheese - inserting 1000 documents. first: Category:Polish Roman Catholic saints and last: Show Boat (book) -[2018-02-13T00:27:39.197] [INFO] cheese - inserting 1000 documents. first: Michael Horton (actor) and last: Reginaldo de Santana Marilia -[2018-02-13T00:27:39.206] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:27:39.223] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:27:39.233] [INFO] cheese - inserting 1000 documents. first: L'Hopital's rule and last: 1921 in literature -[2018-02-13T00:27:39.245] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:39.297] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T00:27:39.314] [INFO] cheese - inserting 1000 documents. first: File:DonaldWolfit.jpg and last: Wikipedia:Reference desk/Archives/Language/2012 October 16 -[2018-02-13T00:27:39.355] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:39.404] [INFO] cheese - inserting 1000 documents. first: Emma Barton and last: Jolinar's Memories -[2018-02-13T00:27:39.456] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:39.534] [INFO] cheese - inserting 1000 documents. first: Category:Bad Taste Records albums and last: Aaron London -[2018-02-13T00:27:39.575] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:27:39.581] [INFO] cheese - inserting 1000 documents. first: Cuticle (hair) and last: Szwelice -[2018-02-13T00:27:39.583] [INFO] cheese - inserting 1000 documents. first: 1995 Peters International – Men's Singles and last: Yao Ziyi -[2018-02-13T00:27:39.600] [INFO] cheese - inserting 1000 documents. first: Iivari Kyykoski and last: List of Italian films of the 1950s -[2018-02-13T00:27:39.617] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:27:39.632] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:39.658] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:27:39.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2012 October 15 and last: Category:Lists of organisations based in Ethiopia -[2018-02-13T00:27:39.803] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:27:39.894] [INFO] cheese - inserting 1000 documents. first: God Loves, Man Kills and last: Breeks -[2018-02-13T00:27:39.941] [INFO] cheese - inserting 1000 documents. first: Nduduzo Makhathini and last: Template:Turkish general election, June 2015 -[2018-02-13T00:27:39.941] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:39.957] [INFO] cheese - inserting 1000 documents. first: Nelson Borges (footballer, born 1992) and last: Palincăria River -[2018-02-13T00:27:39.973] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:40.002] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:40.027] [INFO] cheese - inserting 1000 documents. first: Tłucznice and last: Marianowo, Gmina Szydłowo -[2018-02-13T00:27:40.062] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:27:40.078] [INFO] cheese - inserting 1000 documents. first: 1903 New York Highlanders season and last: Wikipedia:Requests for arbitration/Zeq-Zero0000/Workshop -[2018-02-13T00:27:40.117] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:27:40.119] [INFO] cheese - inserting 1000 documents. first: 1900 in literature and last: Welly Wanging -[2018-02-13T00:27:40.122] [INFO] cheese - inserting 1000 documents. first: Trochulus ataxiacus and last: Chemicals production -[2018-02-13T00:27:40.154] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:40.172] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:27:40.278] [INFO] cheese - inserting 1000 documents. first: Diplôme d'Études Supérieur Approfondies and last: Paulin Demski -[2018-02-13T00:27:40.305] [INFO] cheese - inserting 1000 documents. first: Gandey block and last: Category:Sport in Burkina Faso -[2018-02-13T00:27:40.311] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:27:40.321] [INFO] cheese - inserting 1000 documents. first: Zarnich and last: Wikipedia:Good article reassessment/Lynton K. Caldwell/1 -[2018-02-13T00:27:40.351] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:27:40.371] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:27:40.410] [INFO] cheese - inserting 1000 documents. first: Młodynin and last: Ruda, Ostrów Mazowiecka County -[2018-02-13T00:27:40.415] [INFO] cheese - inserting 1000 documents. first: Sorghum elegans and last: Hop C virus -[2018-02-13T00:27:40.436] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:40.442] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:40.537] [INFO] cheese - inserting 1000 documents. first: Wetwang railway station and last: Wikipedia:Articles for deletion/The Cosmic Circus -[2018-02-13T00:27:40.583] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:27:40.663] [INFO] cheese - inserting 1000 documents. first: Lottery(2009 film) and last: Draft:The Ballad of Yoel Moshe Salomon -[2018-02-13T00:27:40.680] [INFO] cheese - inserting 1000 documents. first: Jari kuosma and last: Teresa Calvesi -[2018-02-13T00:27:40.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/latraceclaraz.org and last: Template:EventsAt1960SummerParalympics -[2018-02-13T00:27:40.698] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:40.709] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:27:40.727] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:27:40.775] [INFO] cheese - inserting 1000 documents. first: Ian Melady and last: Senkele Wildlife Sanctuary -[2018-02-13T00:27:40.787] [INFO] cheese - inserting 1000 documents. first: 2003 Torneo Godó – Singles and last: Category:Lists of biota of South America -[2018-02-13T00:27:40.818] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:40.825] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:40.933] [INFO] cheese - inserting 1000 documents. first: List of Chitpavans and last: Cray X2 -[2018-02-13T00:27:40.978] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:27:41.065] [INFO] cheese - inserting 1000 documents. first: The Promised Land (2015 album) and last: Sergei Gladyshev -[2018-02-13T00:27:41.077] [INFO] cheese - inserting 1000 documents. first: Pack trip and last: Wikipedia:Suspected sock puppets/vyaghradhataki -[2018-02-13T00:27:41.096] [INFO] cheese - inserting 1000 documents. first: 2012 in South Africa and last: Wikipedia:Articles for deletion/LimeLife (2nd nomination) -[2018-02-13T00:27:41.099] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:27:41.112] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:41.138] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:27:41.148] [INFO] cheese - inserting 1000 documents. first: File:COLL-.JPG and last: Category:People of the Ottoman–Saudi War -[2018-02-13T00:27:41.155] [INFO] cheese - inserting 1000 documents. first: List of Portuguese and last: National Drug Code -[2018-02-13T00:27:41.206] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:27:41.254] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:27:41.334] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The man with the smallest penis in existence and the microscope technician who loved him and last: L.O.V.E -[2018-02-13T00:27:41.386] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:27:41.444] [INFO] cheese - inserting 1000 documents. first: File:Shchelkino power station.JPG and last: Snow Chicken -[2018-02-13T00:27:41.528] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:27:41.534] [INFO] cheese - inserting 1000 documents. first: Primus National Soccer League and last: Xerocrassa cretica -[2018-02-13T00:27:41.569] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:27:41.588] [INFO] cheese - inserting 1000 documents. first: Jadis et naguère and last: SR-823 -[2018-02-13T00:27:41.629] [INFO] cheese - inserting 1000 documents. first: Sergey Gladyshev and last: Jonathan Robinson (politician) -[2018-02-13T00:27:41.631] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:27:41.699] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:27:41.773] [INFO] cheese - inserting 1000 documents. first: Emanoil Porumbaru and last: New York State Route 971J -[2018-02-13T00:27:41.827] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:41.858] [INFO] cheese - inserting 1000 documents. first: MWSD and last: Wikipedia:Articles for deletion/World Without Zionism -[2018-02-13T00:27:41.901] [INFO] cheese - inserting 1000 documents. first: Indian-Britons and last: Music in Elizabethan Era -[2018-02-13T00:27:41.930] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:41.952] [INFO] cheese - inserting 1000 documents. first: Eby Shoe Corporation and last: Elena Bonfanti -[2018-02-13T00:27:41.959] [INFO] cheese - inserting 1000 documents. first: Tommy West (Singer/Producer) and last: Nyaa~nyaa -[2018-02-13T00:27:41.980] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:27:42.005] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:42.029] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:27:42.104] [INFO] cheese - inserting 1000 documents. first: Proto-Zhou and last: Template:S-line/MBTA right/Lexington -[2018-02-13T00:27:42.141] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:27:42.200] [INFO] cheese - inserting 1000 documents. first: God Willin' & the Creek Don't Rise and last: Wikipedia:Articles for deletion/Rob Hotchkiss -[2018-02-13T00:27:42.243] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:27:42.322] [INFO] cheese - inserting 1000 documents. first: Central Reservations and last: National Action Party (Turkey) -[2018-02-13T00:27:42.349] [INFO] cheese - inserting 1000 documents. first: Peritoneal fluid excess and last: La Mutualité -[2018-02-13T00:27:42.364] [INFO] cheese - inserting 1000 documents. first: Rostki (Ostrołęka County) and last: Anna van Rijn College -[2018-02-13T00:27:42.371] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:27:42.392] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:27:42.404] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:27:42.423] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2008 Summer Paralympics – Men's individual pursuit (LC 1) and last: Portal:Southern Levant -[2018-02-13T00:27:42.447] [INFO] cheese - inserting 1000 documents. first: Young Marble Giants and last: Notable Irish buildings -[2018-02-13T00:27:42.468] [INFO] cheese - inserting 1000 documents. first: 25–35 Power Street and last: African claw-toed frog -[2018-02-13T00:27:42.487] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:27:42.518] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:27:42.529] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T00:27:42.624] [INFO] cheese - inserting 1000 documents. first: Over The Top and last: Category:Songs with lyrics by Roma Ryan -[2018-02-13T00:27:42.666] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:27:42.722] [INFO] cheese - inserting 1000 documents. first: Template:Volcano project and last: U.S. Air Force Surgeon General -[2018-02-13T00:27:42.746] [INFO] cheese - inserting 1000 documents. first: Cookie (singer) and last: Bisoro -[2018-02-13T00:27:42.760] [INFO] cheese - inserting 1000 documents. first: Fabian von Schlabrendorff and last: Revival (Gillian Welch album) -[2018-02-13T00:27:42.765] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:42.796] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:42.820] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:27:42.825] [INFO] cheese - inserting 1000 documents. first: Template:2015–16 in Dutch football and last: Eloquent ORM -[2018-02-13T00:27:42.894] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:43.039] [INFO] cheese - inserting 1000 documents. first: Maulvi Abdul Haleem and last: Illinois Gov. -[2018-02-13T00:27:43.094] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:27:43.202] [INFO] cheese - inserting 1000 documents. first: Death is Glory...Now and last: Suddenly Yours -[2018-02-13T00:27:43.249] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:27:43.307] [INFO] cheese - inserting 1000 documents. first: Category:1820s in the Portuguese Empire and last: Irene Tobar -[2018-02-13T00:27:43.309] [INFO] cheese - inserting 1000 documents. first: Christoph Dugarry and last: Hazard identification -[2018-02-13T00:27:43.330] [INFO] cheese - inserting 1000 documents. first: Tank Beat and last: Bethany Memorial Chapel -[2018-02-13T00:27:43.340] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:27:43.395] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:27:43.427] [INFO] cheese - inserting 1000 documents. first: Dagelma and last: Wikipedia:Articles for deletion/A&A Global Industries -[2018-02-13T00:27:43.429] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:27:43.489] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:27:43.570] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2012-10-28 and last: Physcomitrium patens -[2018-02-13T00:27:43.630] [INFO] cheese - inserting 1000 documents. first: National Chamber of Commerce and last: Faaa, French Polynesia -[2018-02-13T00:27:43.654] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:27:43.685] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:43.712] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 15th century in Portuguese India and last: Pursuit (1972 film) -[2018-02-13T00:27:43.719] [INFO] cheese - inserting 1000 documents. first: Lents, Oregon and last: List of Registered Historic Places in Gloucester County, New Jersey -[2018-02-13T00:27:43.752] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:27:43.760] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:43.819] [INFO] cheese - inserting 1000 documents. first: Category:1912 in chess and last: Nebo, Queensland -[2018-02-13T00:27:43.823] [INFO] cheese - inserting 1000 documents. first: Byelorussian Soviet Socialist Republic and last: Honor Lost: Love and Death in Modern-Day Jordan -[2018-02-13T00:27:43.858] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:43.892] [INFO] cheese - batch complete in: 1.362 secs -[2018-02-13T00:27:43.942] [INFO] cheese - inserting 1000 documents. first: Sam H. Lawson Middle School and last: Ilya Mashkov -[2018-02-13T00:27:44.000] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:27:44.001] [INFO] cheese - inserting 1000 documents. first: Genthia patens and last: Papuan rugby union team -[2018-02-13T00:27:44.055] [INFO] cheese - inserting 1000 documents. first: Ralph Kerr Maxwell and last: W38BQ -[2018-02-13T00:27:44.064] [INFO] cheese - inserting 1000 documents. first: Template:Mossad Directors and last: Field dressing deer -[2018-02-13T00:27:44.069] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:27:44.119] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:27:44.125] [INFO] cheese - inserting 1000 documents. first: Duder's Beach and last: Wikipedia:Articles for deletion/Blanche Devereaux -[2018-02-13T00:27:44.155] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:27:44.189] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:44.326] [INFO] cheese - inserting 1000 documents. first: 2008 in art and last: Decla-Bioscop -[2018-02-13T00:27:44.363] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:44.433] [INFO] cheese - inserting 1000 documents. first: Greenbank, West Virginia and last: Todd Greene -[2018-02-13T00:27:44.484] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:27:44.509] [INFO] cheese - inserting 1000 documents. first: File:Coroner - Grin.jpg and last: Osmar Donizete Cândido -[2018-02-13T00:27:44.521] [INFO] cheese - inserting 1000 documents. first: Papua New Guinean national rugby union team and last: Category:Commercial buildings completed in 1964 -[2018-02-13T00:27:44.525] [INFO] cheese - inserting 1000 documents. first: Teiya Ichiryūsai and last: Wikipedia:Featured article candidates/Murder of Dwayne Jones/archive2 -[2018-02-13T00:27:44.550] [INFO] cheese - inserting 1000 documents. first: Sawicki and last: Internetnews.com -[2018-02-13T00:27:44.556] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:44.562] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:27:44.625] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:27:44.685] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:27:44.833] [INFO] cheese - inserting 1000 documents. first: Jessica simpson (album) and last: Teague Middle School -[2018-02-13T00:27:44.870] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:44.886] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in Dutch Mauritius by decade and last: Category:1630 establishments by continent -[2018-02-13T00:27:44.912] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:44.970] [INFO] cheese - inserting 1000 documents. first: Rosvalla IP and last: Gnophria ceramensis -[2018-02-13T00:27:45.007] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:27:45.054] [INFO] cheese - inserting 1000 documents. first: Dome Creek, British Columbia and last: Chodkowo-Działki -[2018-02-13T00:27:45.084] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and manga/Anniversaries/June/June 25 and last: Hubert Poelz -[2018-02-13T00:27:45.090] [INFO] cheese - inserting 1000 documents. first: Pullquotes and last: ROSSEM -[2018-02-13T00:27:45.092] [INFO] cheese - inserting 1000 documents. first: List of tunnels in the Netherlands and last: Einstein shift -[2018-02-13T00:27:45.108] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:45.159] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:45.165] [INFO] cheese - inserting 1000 documents. first: Category:1630 by continent and last: Category:8th-century disestablishments in the Maya civilization -[2018-02-13T00:27:45.174] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:27:45.214] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:27:45.214] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T00:27:45.363] [INFO] cheese - inserting 1000 documents. first: Ace (truck) and last: Matt Brandstein -[2018-02-13T00:27:45.446] [INFO] cheese - inserting 1000 documents. first: Lord Southwood and last: Category:FIU Panthers men's basketball seasons -[2018-02-13T00:27:45.459] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:27:45.540] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:27:45.564] [INFO] cheese - inserting 1000 documents. first: Cieśle, Gmina Bodzanów and last: Kuchary Żydowskie -[2018-02-13T00:27:45.599] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:27:45.704] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2015 June 12 and last: 渡部秀 -[2018-02-13T00:27:45.739] [INFO] cheese - inserting 1000 documents. first: Bradley greive and last: USCGC Yamacraw (WLB-333) -[2018-02-13T00:27:45.755] [INFO] cheese - inserting 1000 documents. first: Achimenes and last: Gamliel I -[2018-02-13T00:27:45.758] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:45.834] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:27:45.851] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:27:46.034] [INFO] cheese - inserting 1000 documents. first: Milewo, Płońsk County and last: Paul Warwick (rugby player) -[2018-02-13T00:27:46.060] [INFO] cheese - inserting 1000 documents. first: Musculus biceps brachii and last: Little Raven (Arapaho leader) -[2018-02-13T00:27:46.162] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:46.193] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:27:46.195] [INFO] cheese - inserting 1000 documents. first: Rick Down and last: Peter Lundin -[2018-02-13T00:27:46.255] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:27:46.265] [INFO] cheese - inserting 1000 documents. first: Pays basque français and last: Pakistanis in Sharjah -[2018-02-13T00:27:46.323] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:27:46.414] [INFO] cheese - inserting 1000 documents. first: Chile miners and last: Armée de Liberation de Zgharta -[2018-02-13T00:27:46.503] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:27:46.633] [INFO] cheese - inserting 1000 documents. first: Poniaty-Cibory and last: Crissey Field State Recreation Site -[2018-02-13T00:27:46.639] [INFO] cheese - inserting 1000 documents. first: Case shot and last: Category:Airports in Utah -[2018-02-13T00:27:46.680] [INFO] cheese - inserting 1000 documents. first: Abitar and last: 2005 Fed Cup Europe/Africa Zone Group II – Pool B -[2018-02-13T00:27:46.708] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:27:46.688] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:27:46.796] [INFO] cheese - inserting 1000 documents. first: Clyde Tolson and last: Neanderthals Bandits and Farmers -[2018-02-13T00:27:46.802] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:27:46.810] [INFO] cheese - inserting 1000 documents. first: Ilamai Oonjal Aadukirathu and last: Tarkan Mustafa -[2018-02-13T00:27:46.879] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:27:46.885] [INFO] cheese - inserting 1000 documents. first: 2025 Jaane Kya Hoga Aage and last: State House Historic District -[2018-02-13T00:27:46.965] [INFO] cheese - batch complete in: 1.751 secs -[2018-02-13T00:27:47.015] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:27:47.180] [INFO] cheese - inserting 1000 documents. first: Jungle Love (Steve Miller Band song) and last: Lenggong-Sauk Bypass -[2018-02-13T00:27:47.262] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:27:47.351] [INFO] cheese - inserting 1000 documents. first: Don't Rush (song) and last: 1972 Queen's Club Championships – Men's Singles -[2018-02-13T00:27:47.381] [INFO] cheese - inserting 1000 documents. first: 1543 in art and last: 2005 UK Championship (snooker) -[2018-02-13T00:27:47.389] [INFO] cheese - inserting 1000 documents. first: IT Baseline Protection Catalogs and last: Emil Rilke -[2018-02-13T00:27:47.422] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:27:47.429] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:27:47.460] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:27:47.485] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Nekima Levy-Pounds and last: Rosendahl-Holtwick station -[2018-02-13T00:27:47.526] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:47.549] [INFO] cheese - inserting 1000 documents. first: Orfeo ToolBox and last: Xīnjīapō Mínghángjú -[2018-02-13T00:27:47.586] [INFO] cheese - inserting 1000 documents. first: WWUS 104.1 and last: Meinhart de Schomberg, 3rd Duke of Schomberg -[2018-02-13T00:27:47.593] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:47.646] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:27:47.765] [INFO] cheese - inserting 1000 documents. first: Sheykh Saleh, Shush and last: Wikipedia:Sockpuppet investigations/BStudent0 -[2018-02-13T00:27:47.785] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (musicians) articles by quality/73 and last: Category:Slovenian musicians by genre -[2018-02-13T00:27:47.800] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:27:47.802] [INFO] cheese - inserting 1000 documents. first: Edith New and last: Crepidium glaucum -[2018-02-13T00:27:47.830] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:47.832] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:27:47.867] [INFO] cheese - inserting 1000 documents. first: Classic Period and last: Wilcox Central High School -[2018-02-13T00:27:47.908] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:27:47.944] [INFO] cheese - inserting 1000 documents. first: Archimede Morleo and last: Third Creek Presbyterian Church and Cemetery -[2018-02-13T00:27:47.944] [INFO] cheese - inserting 1000 documents. first: WBO and last: File:BostonBoston.jpg -[2018-02-13T00:27:47.988] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:27:47.996] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:27:48.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Capitalistroadster and last: Wikipedia:WPPun -[2018-02-13T00:27:48.146] [INFO] cheese - inserting 1000 documents. first: Percilla, Texas and last: Beef grade scale -[2018-02-13T00:27:48.151] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:48.207] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:27:48.219] [INFO] cheese - inserting 1000 documents. first: Crepis chamaephylla and last: 1993 Pacific-10 Conference football season -[2018-02-13T00:27:48.221] [INFO] cheese - inserting 1000 documents. first: Society of business practitioners and last: Country-club Republican -[2018-02-13T00:27:48.267] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:27:48.277] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:48.311] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2007 April 21 and last: Category:San Francisco Fog (MISL) players -[2018-02-13T00:27:48.359] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:27:48.387] [INFO] cheese - inserting 1000 documents. first: HomeAway and last: Agustín Fernández Muñoz, Duke of Riansares -[2018-02-13T00:27:48.433] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:48.513] [INFO] cheese - inserting 1000 documents. first: Beef grading and last: Middlemore Train Station -[2018-02-13T00:27:48.546] [INFO] cheese - inserting 1000 documents. first: Category:Components and last: Category:Amphitheaters -[2018-02-13T00:27:48.548] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:27:48.556] [INFO] cheese - inserting 1000 documents. first: Draft:After the Ball (film) and last: Bucknell Bison women's soccer -[2018-02-13T00:27:48.589] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:48.596] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:48.605] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Wiśniew and last: Autostrada A5 -[2018-02-13T00:27:48.661] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:48.804] [INFO] cheese - inserting 1000 documents. first: The Chauffeur Tells a Secret (Dynasty) and last: Two-Double-Seven -[2018-02-13T00:27:48.876] [INFO] cheese - inserting 1000 documents. first: Boston (album) and last: Celine Dion -[2018-02-13T00:27:48.875] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:27:48.887] [INFO] cheese - inserting 1000 documents. first: Break Your Back (Jay Sean song) and last: James Bogdani -[2018-02-13T00:27:48.900] [INFO] cheese - inserting 1000 documents. first: Morningside Train Station and last: NBC Daytona Beach -[2018-02-13T00:27:48.924] [INFO] cheese - inserting 1000 documents. first: Remiszew Duży and last: Marquis de Montcalme -[2018-02-13T00:27:48.940] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:48.943] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:27:48.948] [INFO] cheese - inserting 1000 documents. first: Norman Rule and last: Sovet Ekonomicheskoy Vzaimopomoshchi -[2018-02-13T00:27:48.960] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:27:48.982] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:27:49.032] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:27:49.071] [INFO] cheese - inserting 1000 documents. first: S.K. Wankhede and last: Petroleuse -[2018-02-13T00:27:49.162] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:27:49.236] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Qianxisaurus and last: 2006 Dutch National Track Championships – Women's points race -[2018-02-13T00:27:49.284] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:27:49.306] [INFO] cheese - inserting 1000 documents. first: Barkhausia triangularis and last: 磯村一路 -[2018-02-13T00:27:49.348] [INFO] cheese - inserting 1000 documents. first: Joaquín Calomarde and last: Fourth Rugby League World Cup -[2018-02-13T00:27:49.350] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:27:49.400] [INFO] cheese - inserting 1000 documents. first: Scoparia hawaiiensis and last: District of Columbia's congressional districts -[2018-02-13T00:27:49.416] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:49.454] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:27:49.466] [INFO] cheese - inserting 1000 documents. first: Stored Images and last: Sed card -[2018-02-13T00:27:49.545] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:27:49.661] [INFO] cheese - inserting 1000 documents. first: James Walker (Harvard) and last: Rogue Squadron II: Rogue Leader -[2018-02-13T00:27:49.687] [INFO] cheese - inserting 1000 documents. first: Category:1730s in Portuguese India and last: Category:1130 in the Holy Roman Empire -[2018-02-13T00:27:49.701] [INFO] cheese - inserting 1000 documents. first: ESO 540-030 and last: Yechidah -[2018-02-13T00:27:49.716] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:49.722] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:27:49.750] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:27:49.789] [INFO] cheese - inserting 1000 documents. first: Jake "The Snake" Plummer and last: Wikipedia:WikiProject Spam/LinkReports/cathrosoccerclinic.com -[2018-02-13T00:27:49.835] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:49.891] [INFO] cheese - inserting 1000 documents. first: Assemblage and last: Dutch Dwarf -[2018-02-13T00:27:49.938] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:27:49.939] [INFO] cheese - inserting 1000 documents. first: Puerto Rico's congressional districts and last: Nick Evans -[2018-02-13T00:27:49.978] [INFO] cheese - inserting 1000 documents. first: Liedewy Hawke and last: Category:3rd millennium BC in Africa -[2018-02-13T00:27:49.994] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:27:49.995] [INFO] cheese - inserting 1000 documents. first: Robert E. Connick and last: Emperor Akihito of Japan -[2018-02-13T00:27:50.009] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:27:50.070] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:27:50.071] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/log/November 2012 and last: Garab, Khuzestan -[2018-02-13T00:27:50.110] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:50.146] [INFO] cheese - inserting 1000 documents. first: Original (album) and last: 1989 Miami Dolphins season -[2018-02-13T00:27:50.183] [INFO] cheese - inserting 1000 documents. first: Horki and last: Category:Industrial Ethernet -[2018-02-13T00:27:50.185] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:50.286] [INFO] cheese - inserting 1000 documents. first: Amygdaloid nucleus and last: Ride of Steel (Darien Lake) -[2018-02-13T00:27:50.306] [INFO] cheese - inserting 1000 documents. first: Brachodes caradjae and last: George Seay -[2018-02-13T00:27:50.319] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:27:50.327] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:50.355] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:27:50.369] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Kuwait to the United States and last: Category:1945 establishments in Slovakia -[2018-02-13T00:27:50.445] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:27:50.488] [INFO] cheese - inserting 1000 documents. first: Category:8th-century Irish monarchs and last: Neoborolia nohirae -[2018-02-13T00:27:50.547] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:27:50.627] [INFO] cheese - inserting 1000 documents. first: Footsteps (album) and last: Fred Tauby -[2018-02-13T00:27:50.683] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:27:50.724] [INFO] cheese - inserting 1000 documents. first: Karate at the 2015 European Games – Men's kumite +84 kg and last: Reynaldo Miravalles -[2018-02-13T00:27:50.769] [INFO] cheese - inserting 1000 documents. first: Category:1945 in Slovakia and last: Les Sille -[2018-02-13T00:27:50.769] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:27:50.818] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:50.838] [INFO] cheese - inserting 1000 documents. first: Category:Performers of Christian music and last: Mayian -[2018-02-13T00:27:50.864] [INFO] cheese - inserting 1000 documents. first: Gurab Zarmakh and last: Template:SeattleMeetup -[2018-02-13T00:27:50.910] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:27:50.932] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:27:51.044] [INFO] cheese - inserting 1000 documents. first: 1979-1980 United States network television schedule (late night) and last: OLAF -[2018-02-13T00:27:51.087] [INFO] cheese - inserting 1000 documents. first: Leucania nohirae and last: Category:Commanders by Number of the Order of Isabella the Catholic -[2018-02-13T00:27:51.088] [INFO] cheese - inserting 1000 documents. first: Quanta Plus and last: Caricature -[2018-02-13T00:27:51.094] [INFO] cheese - inserting 1000 documents. first: Bearstack and last: Créole haïtien -[2018-02-13T00:27:51.101] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:51.140] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:51.156] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:27:51.177] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T00:27:51.293] [INFO] cheese - inserting 1000 documents. first: Sergey Makovetskiy and last: File:All Beauty Destroyed.jpg -[2018-02-13T00:27:51.302] [INFO] cheese - inserting 1000 documents. first: Shoot (film) and last: 趙承熙 -[2018-02-13T00:27:51.349] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:27:51.353] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:27:51.461] [INFO] cheese - inserting 1000 documents. first: Hermit of Tong and last: Handen på hjärtat -[2018-02-13T00:27:51.465] [INFO] cheese - inserting 1000 documents. first: File:Tornado warning.gif and last: Aether (disambiguation) -[2018-02-13T00:27:51.469] [INFO] cheese - inserting 1000 documents. first: Paulino Outdoor Oven and last: Lake District, Fribourg -[2018-02-13T00:27:51.556] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:27:51.580] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:27:51.631] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:27:51.678] [INFO] cheese - inserting 1000 documents. first: Jati Umra (Amritsar) and last: Wikipedia:WikiProject Spam/LinkReports/gyn-fansub.zxq.net -[2018-02-13T00:27:51.735] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:27:51.966] [INFO] cheese - inserting 1000 documents. first: I440bx and last: St. Oliver Plunkett GAA -[2018-02-13T00:27:51.992] [INFO] cheese - inserting 1000 documents. first: Body-caudal fin locomotion and last: Best of The Beatles -[2018-02-13T00:27:52.000] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:27:52.051] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:27:52.068] [INFO] cheese - inserting 1000 documents. first: Ricardo Espalter and last: Category:13th-century BC disestablishments -[2018-02-13T00:27:52.070] [INFO] cheese - inserting 1000 documents. first: Canadian Winter Sport Institute and last: Shannon River (Western Australia) -[2018-02-13T00:27:52.103] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:27:52.113] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:27:52.150] [INFO] cheese - inserting 1000 documents. first: Glossary of spirituality-related terms (A–C) and last: Researcher administered survey -[2018-02-13T00:27:52.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Imeprial Crown of Russia and last: DAP Helicopteros -[2018-02-13T00:27:52.215] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:27:52.244] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:52.317] [INFO] cheese - inserting 1000 documents. first: Tell Balgeary, Balgury is Dead and last: George N. Leighton -[2018-02-13T00:27:52.352] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:27:52.360] [INFO] cheese - inserting 1000 documents. first: Stephano and last: Zeppelin bend -[2018-02-13T00:27:52.392] [INFO] cheese - inserting 1000 documents. first: File:I the Mighty Satori Album Cover.jpg and last: Saúl Gutiérrez -[2018-02-13T00:27:52.434] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:52.434] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T00:27:52.471] [INFO] cheese - inserting 1000 documents. first: Labitsky and last: Jose Ferrer (jockey) -[2018-02-13T00:27:52.504] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:52.519] [INFO] cheese - inserting 1000 documents. first: Burg Falkenstein (Niederfalkenstein) and last: Weird tales (disambiguation) -[2018-02-13T00:27:52.569] [INFO] cheese - inserting 1000 documents. first: Hungarian Village and last: File:UBX JP47 16.png -[2018-02-13T00:27:52.590] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:27:52.616] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:27:52.658] [INFO] cheese - inserting 1000 documents. first: Richard Friedman and last: Luis Márquez -[2018-02-13T00:27:52.714] [INFO] cheese - inserting 1000 documents. first: Template:Tercera Division Grupo 14 and last: Devra Davis -[2018-02-13T00:27:52.725] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:52.760] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:52.765] [INFO] cheese - inserting 1000 documents. first: Royal National Orthopaedic Hospital NHS Trust and last: Halbert Lynn White, Jr. -[2018-02-13T00:27:52.809] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:27:52.960] [INFO] cheese - inserting 1000 documents. first: File:UBX JP47 17.png and last: Laira TMD -[2018-02-13T00:27:52.961] [INFO] cheese - inserting 1000 documents. first: Libertarian movement and last: Mr. Hahn (turntablelist) -[2018-02-13T00:27:53.020] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:27:53.050] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:53.183] [INFO] cheese - inserting 1000 documents. first: Wells score (disambiguation) and last: Zogaj, Shkodër -[2018-02-13T00:27:53.231] [INFO] cheese - inserting 1000 documents. first: Nothing to Make a Fuss About and last: CSA Victoria Cahul -[2018-02-13T00:27:53.267] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:27:53.311] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:27:53.318] [INFO] cheese - inserting 1000 documents. first: SouthPark Mall and last: Mathrafal -[2018-02-13T00:27:53.328] [INFO] cheese - inserting 1000 documents. first: Trideps and last: Run Fat Boy Run -[2018-02-13T00:27:53.390] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:27:53.414] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:27:53.650] [INFO] cheese - inserting 1000 documents. first: Double bowline and last: Thoughtpolice -[2018-02-13T00:27:53.665] [INFO] cheese - inserting 1000 documents. first: Christgau (disambiguation) and last: Kamárai, Ahaía -[2018-02-13T00:27:53.718] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:27:53.762] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T00:27:53.811] [INFO] cheese - inserting 1000 documents. first: Veselin Vlahović and last: Dwight Duffus -[2018-02-13T00:27:53.818] [INFO] cheese - inserting 1000 documents. first: Canalis semicircularis superior and last: Category:Compositions by Zygmunt Stojowski -[2018-02-13T00:27:53.898] [INFO] cheese - inserting 1000 documents. first: Raisin River (United States) and last: Atlantic Cape Community College -[2018-02-13T00:27:53.901] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:27:53.908] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:27:53.939] [INFO] cheese - inserting 1000 documents. first: Template:1970–71 ABA season by team and last: 2015 Charleston, South Carolina massacre -[2018-02-13T00:27:53.980] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:27:53.999] [INFO] cheese - inserting 1000 documents. first: Robert Curzon, 14th Baron Zouch and last: Cabo Espichel -[2018-02-13T00:27:53.997] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:27:54.078] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:27:54.268] [INFO] cheese - inserting 1000 documents. first: Janina Konarska and last: Janów, Warsaw West County -[2018-02-13T00:27:54.324] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:27:54.400] [INFO] cheese - inserting 1000 documents. first: Template:1931 NCAA Men's Basketball Consensus All-Americans and last: Cymbidium (disambiguation) -[2018-02-13T00:27:54.444] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:27:54.453] [INFO] cheese - inserting 1000 documents. first: Category:1573 establishments in Macau and last: Conus mindanus -[2018-02-13T00:27:54.460] [INFO] cheese - inserting 1000 documents. first: Category:Association football matches navigational boxes by teams:Brazil and last: Terry Cooke (footballer, born 1962) -[2018-02-13T00:27:54.514] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:54.542] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:27:54.546] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/PCA Masters XI v Nashua Titans 15 September 2005 and last: Alan Anderson (basketball) -[2018-02-13T00:27:54.602] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:27:54.630] [INFO] cheese - inserting 1000 documents. first: Absolute Power (series) and last: Pseudomonas facilis -[2018-02-13T00:27:54.700] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:27:54.755] [INFO] cheese - inserting 1000 documents. first: Klaudyn and last: MVM Group -[2018-02-13T00:27:54.798] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:54.851] [INFO] cheese - inserting 1000 documents. first: Jacobaea viscosa and last: Maryhull -[2018-02-13T00:27:54.858] [INFO] cheese - inserting 1000 documents. first: Vrooman Avenue School and last: National Register of Historic Places listings in Greenwich, Connecticut -[2018-02-13T00:27:54.895] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:27:54.905] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:54.931] [INFO] cheese - inserting 1000 documents. first: San Carlo de' Catinari and last: USS Yankee Hero -[2018-02-13T00:27:54.931] [INFO] cheese - inserting 1000 documents. first: Theocrastus Bombastus von Hohenheim and last: Colouring algorithm -[2018-02-13T00:27:54.971] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:55.013] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T00:27:55.075] [INFO] cheese - inserting 1000 documents. first: Dryden Flight Research Facility and last: Wikipedia:Articles for deletion/Worcestershire v Essex 21-24 September 2005 -[2018-02-13T00:27:55.104] [INFO] cheese - inserting 1000 documents. first: File:Objects db1.png and last: Chesham Town F.C. -[2018-02-13T00:27:55.120] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:55.142] [INFO] cheese - inserting 1000 documents. first: Ławeczko Nowe and last: Duchy of Ingria -[2018-02-13T00:27:55.167] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:27:55.183] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:55.261] [INFO] cheese - inserting 1000 documents. first: Tomás Ó Mellaig and last: Me Gusta Todo de Ti (song) -[2018-02-13T00:27:55.293] [INFO] cheese - inserting 1000 documents. first: Alderville and last: Corentin Denolly -[2018-02-13T00:27:55.296] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:55.345] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:27:55.393] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Luxembourg to the Soviet Union and last: Category:1979 establishments in Slovenia -[2018-02-13T00:27:55.456] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:55.458] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Worcestershire v Glamorgan 17 July 2005 and last: Ravindra Jain -[2018-02-13T00:27:55.514] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:27:55.550] [INFO] cheese - inserting 1000 documents. first: Goose Eye Mountain and last: Jericoacoara beach -[2018-02-13T00:27:55.560] [INFO] cheese - inserting 1000 documents. first: Everybody Is Different and last: Microwaved (single) -[2018-02-13T00:27:55.602] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:55.606] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:55.704] [INFO] cheese - inserting 1000 documents. first: Hemetre and last: Wikipedia:WikiProject Dictionary of National Biography/Topical lists -[2018-02-13T00:27:55.751] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:27:55.767] [INFO] cheese - inserting 1000 documents. first: Bill Brown (English footballer) and last: Earlobe type -[2018-02-13T00:27:55.814] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:27:55.852] [INFO] cheese - inserting 1000 documents. first: Thecla guadala and last: File:Kiladi Kittu poster.jpg -[2018-02-13T00:27:55.907] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:55.939] [INFO] cheese - inserting 1000 documents. first: File:RTÉ The Panel Mug.jpg and last: Interference (Prison Break episode) -[2018-02-13T00:27:55.974] [INFO] cheese - inserting 1000 documents. first: Russell Senior and last: Template:NJ Legislative 07 -[2018-02-13T00:27:55.975] [INFO] cheese - batch complete in: 0.373 secs -t: List of diplomatic missions of Tonga and last: Yakovlev Yak-30 -[2018-02-13T00:27:56.029] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:27:56.040] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:27:56.051] [INFO] cheese - inserting 1000 documents. first: Wire-and-string puzzle and last: Plateau (disambiguation) -[2018-02-13T00:27:56.109] [INFO] cheese - inserting 1000 documents. first: Valmiki (1946 film) and last: FNRS 2 -[2018-02-13T00:27:56.114] [INFO] cheese - inserting 1000 documents. first: Cologne Diocesan Feud and last: Østerø -[2018-02-13T00:27:56.115] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T00:27:56.145] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:56.170] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:27:56.258] [INFO] cheese - inserting 1000 documents. first: John Doe (Prison Break episode) and last: Ring systems -[2018-02-13T00:27:56.295] [INFO] cheese - inserting 1000 documents. first: Timeline of Lille and last: Sarkorreh -[2018-02-13T00:27:56.301] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:27:56.343] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:56.380] [INFO] cheese - inserting 1000 documents. first: Prince's Trust Team and last: Wikipedia:Articles for deletion/Lists of country-related topics -[2018-02-13T00:27:56.428] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:27:56.515] [INFO] cheese - inserting 1000 documents. first: Walker Lambiotte and last: Trichotaphe cyclospila -[2018-02-13T00:27:56.521] [INFO] cheese - inserting 1000 documents. first: Category:Bathyscaphes and last: James D. Dole Homestead -[2018-02-13T00:27:56.523] [INFO] cheese - inserting 1000 documents. first: File:WPNW-Logo.jpg and last: Bonnethead -[2018-02-13T00:27:56.562] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:56.565] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:27:56.586] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:56.637] [INFO] cheese - inserting 1000 documents. first: Sar Kureh and last: FA Penang -[2018-02-13T00:27:56.649] [INFO] cheese - inserting 1000 documents. first: Marten Hoekstra and last: File:Couples.JPG -[2018-02-13T00:27:56.665] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:27:56.687] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:56.814] [INFO] cheese - inserting 1000 documents. first: Venchan Peak and last: 1938 Women's British Open Squash Championship -[2018-02-13T00:27:56.836] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:27:56.903] [INFO] cheese - inserting 1000 documents. first: Category:1980s disestablishments in Spain and last: Neklinovskaya -[2018-02-13T00:27:56.927] [INFO] cheese - inserting 1000 documents. first: Category:People from City of London and last: File:HarlanEstate.jpg -[2018-02-13T00:27:56.927] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:27:56.968] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:27:57.016] [INFO] cheese - inserting 1000 documents. first: Category:Railway companies disestablished in 1940 and last: Category:Italian contraltos -[2018-02-13T00:27:57.047] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:57.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Atomic Raygun Attack and last: James Fearnley -[2018-02-13T00:27:57.098] [INFO] cheese - inserting 1000 documents. first: Giants-Eagles rivalry and last: Bud Thackery -[2018-02-13T00:27:57.140] [INFO] cheese - inserting 1000 documents. first: John of Lancaster, 1st Duke of Bedford and last: Abducens nerve -[2018-02-13T00:27:57.198] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:57.203] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:27:57.252] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Elmore County, Alabama and last: Santa Ana Church (Manila) -[2018-02-13T00:27:57.260] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T00:27:57.310] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:57.345] [INFO] cheese - inserting 1000 documents. first: Neklinovskoye and last: Symmetrocladia -[2018-02-13T00:27:57.405] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:27:57.432] [INFO] cheese - inserting 1000 documents. first: Exact rhyme and last: JoS Bank -[2018-02-13T00:27:57.488] [INFO] cheese - inserting 1000 documents. first: List of Recent Holarctic Bird Species and last: Sharif Murtaza -[2018-02-13T00:27:57.501] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:27:57.550] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:57.655] [INFO] cheese - inserting 1000 documents. first: 3-Hydroxyaspartic acid and last: Category:Historic districts in Sullivan County, New York -[2018-02-13T00:27:57.693] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:27:57.709] [INFO] cheese - inserting 1000 documents. first: Category:Standardbred racehorses and last: Campbell County High School shooting -[2018-02-13T00:27:57.736] [INFO] cheese - inserting 1000 documents. first: Liability and Student Records and last: Samuel McTier -[2018-02-13T00:27:57.769] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:27:57.774] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:27:57.776] [INFO] cheese - inserting 1000 documents. first: Seattle Union Record and last: UFC on Fox 6 -[2018-02-13T00:27:57.844] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:57.866] [INFO] cheese - inserting 1000 documents. first: Shutarou Mendou and last: Leo Tim Kwong -[2018-02-13T00:27:57.910] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:27:57.912] [INFO] cheese - inserting 1000 documents. first: Fenestela 68 Braşov and last: 1996 Qatar ExxonMobil Open – Singles -[2018-02-13T00:27:57.920] [INFO] cheese - inserting 1000 documents. first: Ring billed gull and last: Procure -[2018-02-13T00:27:57.950] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:27:57.979] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:58.118] [INFO] cheese - inserting 1000 documents. first: Goldenwave tickseed and last: Nicolaus Zwetnow -[2018-02-13T00:27:58.151] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:27:58.186] [INFO] cheese - inserting 1000 documents. first: UFC on Fox 6: Johnson vs. Dodson and last: Wikipedia:Articles for deletion/Prime Time League -[2018-02-13T00:27:58.214] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:27:58.226] [INFO] cheese - inserting 1000 documents. first: To be continued and last: Wikipedia:WikiProject Missing encyclopedic articles/Hotlist of Art & Architecture/Z -[2018-02-13T00:27:58.233] [INFO] cheese - inserting 1000 documents. first: Hung Qwan Chuen and last: Adamów -[2018-02-13T00:27:58.246] [INFO] cheese - inserting 1000 documents. first: Victory in Europe Day and last: The Institute of Technology at Linköping University -[2018-02-13T00:27:58.270] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:58.280] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:27:58.312] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T00:27:58.363] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Yale University and last: Heggere -[2018-02-13T00:27:58.371] [INFO] cheese - inserting 1000 documents. first: MOS:QUOTATION MARKS and last: Category:Suspected Wikipedia sockpuppets of Petermaxlawrence -[2018-02-13T00:27:58.393] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Personal attack intervention noticeboard and last: The Great Charter of the Liberties -[2018-02-13T00:27:58.400] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:58.413] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:58.446] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:58.527] [INFO] cheese - inserting 1000 documents. first: Category:I Am Kloot album covers and last: Oxidation ponds -[2018-02-13T00:27:58.562] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:27:58.580] [INFO] cheese - inserting 1000 documents. first: Midayikunnam and last: God of christianity -[2018-02-13T00:27:58.627] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:58.753] [INFO] cheese - inserting 1000 documents. first: Hemmadaga and last: AS DGSSIE -[2018-02-13T00:27:58.832] [INFO] cheese - inserting 1000 documents. first: Jan Brady and last: Ptolemy's Gate -[2018-02-13T00:27:58.840] [INFO] cheese - inserting 1000 documents. first: Category:1938 in American football and last: Wikipedia:Articles for deletion/Terry Duguid -[2018-02-13T00:27:58.848] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:27:58.909] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:27:58.964] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:27:59.197] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/List of doom metal bands and last: Category:Ellen Street, Fremantle -[2018-02-13T00:27:59.227] [INFO] cheese - inserting 1000 documents. first: Alex Scott (footballer) and last: Category:Chinese printers -[2018-02-13T00:27:59.234] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:27:59.253] [INFO] cheese - inserting 1000 documents. first: Safari apple and last: Category:Peruvian Nationalist Party politicians -[2018-02-13T00:27:59.282] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:59.285] [INFO] cheese - inserting 1000 documents. first: School of the Sextian and last: Category:People from Hundested -[2018-02-13T00:27:59.295] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:27:59.341] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:27:59.427] [INFO] cheese - inserting 1000 documents. first: Ralph Waldo Emerson Award and last: Apollinaris Patera -[2018-02-13T00:27:59.452] [INFO] cheese - inserting 1000 documents. first: Sogut and last: American Law Institute -[2018-02-13T00:27:59.480] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:27:59.529] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:27:59.559] [INFO] cheese - inserting 1000 documents. first: Newlands Cricket Ground and last: Birdmen of Catrazza -[2018-02-13T00:27:59.612] [INFO] cheese - inserting 1000 documents. first: Native Development Kit and last: Acıpayam, Elâzığ -[2018-02-13T00:27:59.633] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:27:59.641] [INFO] cheese - inserting 1000 documents. first: Category:1615 in religion and last: Graham Mylne -[2018-02-13T00:27:59.660] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CONTENTDISPUTE and last: People's Republic of China–Ghana relations -[2018-02-13T00:27:59.680] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:27:59.728] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:59.739] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:59.812] [INFO] cheese - inserting 1000 documents. first: The prats and last: NL4 -[2018-02-13T00:27:59.858] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:59.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Google platform and last: The Aesthetic Dimension -[2018-02-13T00:27:59.935] [INFO] cheese - inserting 1000 documents. first: Jakobus ("James"), Count of Lichtenberg and last: La Lettre b -[2018-02-13T00:27:59.959] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:27:59.968] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:28:00.094] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eldebrock and last: Stubenberg family -[2018-02-13T00:28:00.096] [INFO] cheese - inserting 1000 documents. first: People's Republic of China–Guinea-Bissau relations and last: Template:Australia Squad 2000 Summer Olympics -[2018-02-13T00:28:00.120] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Back up jackson and last: Carolus Gustavus -[2018-02-13T00:28:00.131] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:00.140] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:00.162] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:28:00.210] [INFO] cheese - inserting 1000 documents. first: NL4 connector and last: Paikalangadi -[2018-02-13T00:28:00.300] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:28:00.337] [INFO] cheese - inserting 1000 documents. first: Lord Harrowby and last: The Honourable Arumugam Thondaman MP -[2018-02-13T00:28:00.377] [INFO] cheese - inserting 1000 documents. first: Christian Gottlieb Ferdinand von Hochstetter and last: TRC Lorraine 37 L -[2018-02-13T00:28:00.423] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:28:00.438] [INFO] cheese - inserting 1000 documents. first: Corpus Juris Secundum and last: Christopher North (composer) -[2018-02-13T00:28:00.446] [INFO] cheese - inserting 1000 documents. first: Category:Welsh pop music groups and last: Nanmen Subdistrict -[2018-02-13T00:28:00.450] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:28:00.497] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:28:00.556] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:28:00.695] [INFO] cheese - inserting 1000 documents. first: List of schools in Colombia and last: Wikipedia:Articles for deletion/Newsweek's List of the 1,000 Top U.S. Schools (2005) -[2018-02-13T00:28:00.725] [INFO] cheese - inserting 1000 documents. first: Murder Club of Brooklyn and last: Category:Education in Maine by county -[2018-02-13T00:28:00.803] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:28:00.808] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:28:00.819] [INFO] cheese - inserting 1000 documents. first: Federal Charter school program and last: File:Raineycawthon.jpg -[2018-02-13T00:28:00.897] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:28:00.953] [INFO] cheese - inserting 1000 documents. first: Wandy yazid and last: August 7, 4:15 -[2018-02-13T00:28:00.974] [INFO] cheese - inserting 1000 documents. first: Dominique de Caen and last: Template:Animation-studio-stub -[2018-02-13T00:28:01.059] [INFO] cheese - inserting 1000 documents. first: Glen Eden Lutheran Memorial Park and last: Athletics at the 2008 Summer Paralympics – Women's 400 metres T13 -[2018-02-13T00:28:01.059] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:28:01.061] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:28:01.144] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:01.321] [INFO] cheese - inserting 1000 documents. first: Jinja safari and last: South African Class 10E1, Series 1 -[2018-02-13T00:28:01.402] [INFO] cheese - inserting 1000 documents. first: Rubroboletus lupinus and last: Category:1580s establishments in the British Empire -[2018-02-13T00:28:01.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Newsweek’s List of Top High Schools (2003) and last: Jean Baptiste Baron de Cloots -[2018-02-13T00:28:01.437] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:28:01.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Berkeley/2011 and last: Template:Quebec provincial by-election, November 17, 1980/Electoral District/Brome-Missisquoi (provincial electoral district) -[2018-02-13T00:28:01.464] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:01.499] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:01.506] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:28:01.669] [INFO] cheese - inserting 1000 documents. first: Sadykierz (disambiguation) and last: Mitsubishi Fuso Aero Star Eco Hybrid -[2018-02-13T00:28:01.745] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:28:01.837] [INFO] cheese - inserting 1000 documents. first: Category:1600s establishments in the British Empire and last: Draft:Leptosynapta dolabrifera -[2018-02-13T00:28:01.886] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:28:01.894] [INFO] cheese - inserting 1000 documents. first: Economic Calculation Debate and last: Black Mask (radical group) -[2018-02-13T00:28:01.901] [INFO] cheese - inserting 1000 documents. first: Template:Quebec provincial by-election, November 17, 1980/Electoral District/Mégantic-Compton and last: Wikipedia:CATRED -[2018-02-13T00:28:01.912] [INFO] cheese - inserting 1000 documents. first: Shaari Tadin and last: Champion/St. Regis Dam -[2018-02-13T00:28:01.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/juicycouture-outlet.org and last: Charles Darlington -[2018-02-13T00:28:01.947] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:28:01.969] [INFO] cheese - batch complete in: 1.412 secs -[2018-02-13T00:28:01.975] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:28:01.969] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:28:02.004] [INFO] cheese - inserting 1000 documents. first: Tweeter And The Monkey Man and last: Herbert Wilfred Herridge -[2018-02-13T00:28:02.068] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:02.120] [INFO] cheese - inserting 1000 documents. first: Paxar and last: Wikipedia:WikiProject Spam/LinkReports/iso17799.co.uk -[2018-02-13T00:28:02.162] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:02.227] [INFO] cheese - inserting 1000 documents. first: Shooting at the 1968 Summer Olympics – 300 metre free rifle and last: Die Welt (Herzl) -[2018-02-13T00:28:02.271] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:02.333] [INFO] cheese - inserting 1000 documents. first: Bhaswar Chattopadhyay and last: 10 Haters -[2018-02-13T00:28:02.355] [INFO] cheese - inserting 1000 documents. first: Methylobacillus glycogenes and last: List of Beano comic strips -[2018-02-13T00:28:02.376] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:02.391] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:28:02.465] [INFO] cheese - inserting 1000 documents. first: RAF West Ruislip and last: Wikipedia:Files for deletion/2010 September 16 -[2018-02-13T00:28:02.520] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:02.530] [INFO] cheese - inserting 1000 documents. first: Rule of War and last: Orange Township, Ashland County, Ohio -[2018-02-13T00:28:02.599] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:02.628] [INFO] cheese - inserting 1000 documents. first: 1954–55 Toronto Maple Leafs season and last: The Capitol Years 65/77 -[2018-02-13T00:28:02.696] [INFO] cheese - inserting 1000 documents. first: Category:1104 establishments in Europe and last: Butte desertparsley -[2018-02-13T00:28:02.696] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:28:02.757] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:28:02.823] [INFO] cheese - inserting 1000 documents. first: Template:User in Georgia and last: Template:Taxonomy/Amphicyonidae -[2018-02-13T00:28:02.862] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:28:02.925] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2010 September 16 and last: ’u’ (opera) -[2018-02-13T00:28:02.971] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:03.039] [INFO] cheese - inserting 1000 documents. first: Western Digital and last: Absolute Humidity -[2018-02-13T00:28:03.083] [INFO] cheese - inserting 1000 documents. first: Yoshihiko Amino and last: Korean people in the United Arab Emirates -[2018-02-13T00:28:03.096] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:28:03.100] [INFO] cheese - inserting 1000 documents. first: Category:1524 in South America and last: 180 Out -[2018-02-13T00:28:03.117] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Photography "Perfectly Exposed" exposure, f stops, shutter speed and depth of field and last: Ingrow -[2018-02-13T00:28:03.144] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:28:03.148] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:28:03.166] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:03.181] [INFO] cheese - inserting 1000 documents. first: Canadair DC-4M Argonaut and last: Teviot Falls -[2018-02-13T00:28:03.281] [INFO] cheese - inserting 1000 documents. first: Proprietors: Kammath & Kammath and last: Criminal business -[2018-02-13T00:28:03.312] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:28:03.325] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:28:03.358] [INFO] cheese - inserting 1000 documents. first: Hugh hardy and last: BS Moss' Broadway Theater -[2018-02-13T00:28:03.431] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:03.476] [INFO] cheese - inserting 1000 documents. first: The Singular Universe and the Reality of Time and last: Category:1380s establishments in Poland -[2018-02-13T00:28:03.509] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:28:03.539] [INFO] cheese - inserting 1000 documents. first: Heat (1987 movie) and last: Darky -[2018-02-13T00:28:03.590] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:03.614] [INFO] cheese - inserting 1000 documents. first: Korean people in Yemen and last: Capsazepine -[2018-02-13T00:28:03.631] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Carrom articles and last: Legacy of Ashes (album) -[2018-02-13T00:28:03.655] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:28:03.665] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:28:03.729] [INFO] cheese - inserting 1000 documents. first: Suruke and last: Max Rudolph -[2018-02-13T00:28:03.763] [INFO] cheese - inserting 1000 documents. first: Ilya Boldinskiy and last: Charlie Clark (English footballer) -[2018-02-13T00:28:03.768] [INFO] cheese - inserting 1000 documents. first: Electro-System and last: CRM Magazine -[2018-02-13T00:28:03.772] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:03.800] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:28:03.807] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:28:03.962] [INFO] cheese - inserting 1000 documents. first: Angry Video Game Nerd: The Movie and last: 1937 in the Mandatory Palestinian National Authority -[2018-02-13T00:28:03.992] [INFO] cheese - inserting 1000 documents. first: Brian Wenham and last: Maximilian Scheubner-Richter -[2018-02-13T00:28:03.992] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:28:04.046] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:28:04.104] [INFO] cheese - inserting 1000 documents. first: Hal Turpin and last: File:Flyingrhinojuniorhigh.jpg -[2018-02-13T00:28:04.125] [INFO] cheese - inserting 1000 documents. first: K-1 launch vehicle and last: The Payne Brothers -[2018-02-13T00:28:04.136] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:28:04.143] [INFO] cheese - inserting 1000 documents. first: Bayldonite and last: Pachylaelaps quadricombinatus -[2018-02-13T00:28:04.168] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:28:04.178] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:04.229] [INFO] cheese - inserting 1000 documents. first: London Metal Exchange and last: Mam'zelle Champagne -[2018-02-13T00:28:04.282] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Miroslav Holeňák and last: Gail Martin -[2018-02-13T00:28:04.323] [INFO] cheese - inserting 1000 documents. first: Yanaqucha (Cusco) and last: Corpus Christi – Kingsville CSA -[2018-02-13T00:28:04.321] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T00:28:04.337] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:28:04.352] [INFO] cheese - inserting 1000 documents. first: 1937 of the Mandatory Palestinian National Authority and last: File:Bestbreeder from 1997 to 2000.jpg -[2018-02-13T00:28:04.360] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:28:04.401] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:28:04.438] [INFO] cheese - inserting 1000 documents. first: Trimmers and last: File:TheCopperBeech.jpg -[2018-02-13T00:28:04.471] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:28:04.502] [INFO] cheese - inserting 1000 documents. first: Pachylaelaps quadritus and last: Template:ChambersCountyTX-geo-stub -[2018-02-13T00:28:04.541] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:28:04.602] [INFO] cheese - inserting 1000 documents. first: General Electoral Union and last: Permeameter -[2018-02-13T00:28:04.656] [INFO] cheese - inserting 1000 documents. first: Dothan–Enterprise–Ozark CSA and last: Category:1844 disestablishments in Europe -[2018-02-13T00:28:04.667] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:28:04.701] [INFO] cheese - inserting 1000 documents. first: KUUT and last: File:ESPN Full Court logo.svg -[2018-02-13T00:28:04.710] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:28:04.786] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:04.865] [INFO] cheese - inserting 1000 documents. first: Laleli, Refahiye and last: Category:Plains of Taiwan -[2018-02-13T00:28:04.911] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:04.913] [INFO] cheese - inserting 1000 documents. first: Garnock Spout and last: Mallapur Kariyat Nesargi -[2018-02-13T00:28:04.993] [INFO] cheese - inserting 1000 documents. first: List of birds of Zimbabwe and last: File:Pyral-old-logo-1981.jpg -[2018-02-13T00:28:05.013] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:05.100] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:28:05.149] [INFO] cheese - inserting 1000 documents. first: Category:1845 disestablishments in Europe and last: Rathaspick -[2018-02-13T00:28:05.179] [INFO] cheese - inserting 1000 documents. first: Louis Burger and last: Griffonia Simplicifolia -[2018-02-13T00:28:05.188] [INFO] cheese - inserting 1000 documents. first: Sancta Maria and last: Template:Cabinet of Geir Hallgrímsson -[2018-02-13T00:28:05.193] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:28:05.241] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:05.250] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:28:05.321] [INFO] cheese - inserting 1000 documents. first: Signal to Noise (Rise Album) and last: Nichlas Torp -[2018-02-13T00:28:05.395] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:28:05.416] [INFO] cheese - inserting 1000 documents. first: Florodora and last: Col Needham -[2018-02-13T00:28:05.469] [INFO] cheese - inserting 1000 documents. first: Ruwer (municipality) and last: Wikipedia:Articles for deletion/Stream machine -[2018-02-13T00:28:05.527] [INFO] cheese - inserting 1000 documents. first: Mallapur S.A. and last: Sedlare -[2018-02-13T00:28:05.529] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:05.566] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T00:28:05.603] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:28:05.614] [INFO] cheese - inserting 1000 documents. first: Sinyuan, Pingtung and last: 1992 World Junior Championships in Athletics – Women's discus throw -[2018-02-13T00:28:05.677] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:05.794] [INFO] cheese - inserting 1000 documents. first: Bass Sax and last: Template:Naomh Adhamhnáin C.L.G. squad -[2018-02-13T00:28:05.847] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:28:05.881] [INFO] cheese - inserting 1000 documents. first: File:ImmaterielZoneKlein.jpg and last: Template:States in the sphere of influence of Imperial Japan during World War 2 -[2018-02-13T00:28:05.917] [INFO] cheese - inserting 1000 documents. first: Deborah Mayfair and last: Wettonmill -[2018-02-13T00:28:05.921] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:05.992] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:28:06.014] [INFO] cheese - inserting 1000 documents. first: Addison Road Station and last: Buffalo Township (Union County, Pennsylvania) -[2018-02-13T00:28:06.025] [INFO] cheese - inserting 1000 documents. first: Laspeyresia splendana and last: Ansarullah (Ahmadiyya) -[2018-02-13T00:28:06.039] [INFO] cheese - inserting 1000 documents. first: Baltimore Orioles roster and last: Mazda SportsLook -[2018-02-13T00:28:06.049] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:28:06.085] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:28:06.128] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:28:06.312] [INFO] cheese - inserting 1000 documents. first: Naomh Mícheál C.L.G. and last: File:Mark Stewart - The Politics of Envy.jpg -[2018-02-13T00:28:06.349] [INFO] cheese - inserting 1000 documents. first: 39th Tactical Fighter Squadron and last: File:Bobbygonzo.jpg -[2018-02-13T00:28:06.378] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:06.437] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:06.482] [INFO] cheese - inserting 1000 documents. first: Category:League1 Ontario and last: Template:North Hollywood, California -[2018-02-13T00:28:06.525] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:28:06.576] [INFO] cheese - inserting 1000 documents. first: National Council for the Social Studies and last: Whitespot syndrome -[2018-02-13T00:28:06.586] [INFO] cheese - inserting 1000 documents. first: François Heywaert and last: Selenoyl fluoride -[2018-02-13T00:28:06.618] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:06.701] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:28:06.722] [INFO] cheese - inserting 1000 documents. first: Template:Gloucestershire-struct-stub and last: São Nicolau Crioulo language -[2018-02-13T00:28:06.789] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:28:06.870] [INFO] cheese - inserting 1000 documents. first: Golden West College and last: Enzkreis -[2018-02-13T00:28:06.910] [INFO] cheese - inserting 1000 documents. first: Dipropionylmorphine and last: K.A. Nowotny -[2018-02-13T00:28:06.910] [INFO] cheese - inserting 1000 documents. first: Category:People's Republic of China politicians from Hainan and last: Navy Type 96 Carrier Bomber -[2018-02-13T00:28:06.956] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:28:07.022] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:07.019] [INFO] cheese - batch complete in: 1.452 secs -[2018-02-13T00:28:07.095] [INFO] cheese - inserting 1000 documents. first: CAT:FA and last: Ciscarpathia -[2018-02-13T00:28:07.163] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:28:07.215] [INFO] cheese - inserting 1000 documents. first: Saint-Herblain and last: Mount Alvernia Hospital -[2018-02-13T00:28:07.285] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:28:07.291] [INFO] cheese - inserting 1000 documents. first: Category:Vines and last: Marcos Highway -[2018-02-13T00:28:07.355] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:28:07.368] [INFO] cheese - inserting 1000 documents. first: Kagoshima main line and last: Wikipedia:Articles for deletion/Hywel Gwynfryn -[2018-02-13T00:28:07.421] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Metropolitan area of Barranquilla and last: Ishimaru -[2018-02-13T00:28:07.441] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:28:07.493] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:28:07.549] [INFO] cheese - inserting 1000 documents. first: Xeo-Genetic and last: List of steam festivals -[2018-02-13T00:28:07.588] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:07.664] [INFO] cheese - inserting 1000 documents. first: Carenum brevicolle and last: Gateshead West by-election (1955) -[2018-02-13T00:28:07.695] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:28:07.736] [INFO] cheese - inserting 1000 documents. first: Category:History of the Marlborough Region and last: Miss Goat -[2018-02-13T00:28:07.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of songs published as live versions and last: Shaun Scott (actor) -[2018-02-13T00:28:07.766] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:28:07.818] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:07.834] [INFO] cheese - inserting 1000 documents. first: Trudy Walhof-Groenman and last: Wikipedia:Peer review/Don't Bite the Sun/archive1 -[2018-02-13T00:28:07.876] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:28:07.893] [INFO] cheese - inserting 1000 documents. first: Worms: The Director's Cut and last: Lisa Evers -[2018-02-13T00:28:07.919] [INFO] cheese - inserting 1000 documents. first: 2008-09 LA Lakers season and last: Prevention of Corruption Act, 1988 -[2018-02-13T00:28:07.962] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:28:07.974] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:28:08.082] [INFO] cheese - inserting 1000 documents. first: Alexander Mackenzie (explorer) and last: First trimester -[2018-02-13T00:28:08.136] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T00:28:08.155] [INFO] cheese - inserting 1000 documents. first: Wu Jingbiao and last: Asca aphidioides -[2018-02-13T00:28:08.214] [INFO] cheese - inserting 1000 documents. first: File:StockbridgeMA-seal.png and last: Southport, United States -[2018-02-13T00:28:08.213] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:08.258] [INFO] cheese - inserting 1000 documents. first: SNOMED Clinical Terms and last: Category:Bridges in Mexico -[2018-02-13T00:28:08.261] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:08.276] [INFO] cheese - inserting 1000 documents. first: Heman (Bible) and last: Isthmus of Fallopian tube -[2018-02-13T00:28:08.314] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:28:08.317] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:08.394] [INFO] cheese - inserting 1000 documents. first: McCain Democrat and last: Noble Square, Chicago -[2018-02-13T00:28:08.431] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:28:08.518] [INFO] cheese - inserting 1000 documents. first: Asca arboriensis and last: 1991 Maryland Terrapins football team -[2018-02-13T00:28:08.559] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:28:08.582] [INFO] cheese - inserting 1000 documents. first: Stratham new hampshire and last: Category:Template-Class Economics articles -[2018-02-13T00:28:08.622] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:28:08.706] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Brooklyn and last: Negative binomial -[2018-02-13T00:28:08.758] [INFO] cheese - inserting 1000 documents. first: Rem Urasin and last: KSYR -[2018-02-13T00:28:08.759] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:08.763] [INFO] cheese - inserting 1000 documents. first: Fimbriae of Fallopian tube and last: Rhodri Williams (rugby player) -[2018-02-13T00:28:08.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/therealblakeman/Archive and last: Anna of Masovia (b.1270) -[2018-02-13T00:28:08.825] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:28:08.833] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:08.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Requests for comment/User names (2nd nomination) and last: Kozí příběh- pověsti staré Prahy -[2018-02-13T00:28:08.866] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:28:08.907] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:28:08.923] [INFO] cheese - inserting 1000 documents. first: Third trimester and last: Joseph Autran -[2018-02-13T00:28:08.934] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Economics articles and last: Kendra Harrison -[2018-02-13T00:28:08.967] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:28:09.004] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:28:09.165] [INFO] cheese - inserting 1000 documents. first: Martijn Meerdink and last: Tug Daniels -[2018-02-13T00:28:09.190] [INFO] cheese - inserting 1000 documents. first: New Haven, Ohio and last: Portal:2010s/Selected article/3 -[2018-02-13T00:28:09.211] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:28:09.232] [INFO] cheese - inserting 1000 documents. first: Paracuellos (disambiguation) and last: 532d Bombardment Squadron -[2018-02-13T00:28:09.234] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:09.247] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2008 October 31 and last: Fukuoka Subway 2000 series -[2018-02-13T00:28:09.280] [INFO] cheese - inserting 1000 documents. first: Duke of Rohan and last: Alfredo Bojalil Gil -[2018-02-13T00:28:09.286] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:09.318] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:09.332] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:28:09.408] [INFO] cheese - inserting 1000 documents. first: File:Jeanne-Hatto-Walkure-1906.jpg and last: Kathryn Scola -[2018-02-13T00:28:09.470] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:28:09.564] [INFO] cheese - inserting 1000 documents. first: Category:Combined heat and power plants by country and last: Congratulatory first -[2018-02-13T00:28:09.611] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:09.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/TAJJ Championship Wrestling and last: Rome Middle School -[2018-02-13T00:28:09.694] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:09.713] [INFO] cheese - inserting 1000 documents. first: Alternet.com and last: Araya Peninsula -[2018-02-13T00:28:09.722] [INFO] cheese - inserting 1000 documents. first: Prayer for Peace (Hazrat Inayat Khan) and last: Wikipedia:Articles for deletion/Perfect rhyme -[2018-02-13T00:28:09.767] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:09.780] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:28:09.875] [INFO] cheese - inserting 1000 documents. first: William Henry Allchin and last: Wars involving Britain -[2018-02-13T00:28:09.921] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:09.954] [INFO] cheese - inserting 1000 documents. first: Solo (2006 film) and last: List of First Ladies of Puerto Rico -[2018-02-13T00:28:09.997] [INFO] cheese - inserting 1000 documents. first: Funk & Wagnalls and last: Tree warbler -[2018-02-13T00:28:10.000] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:28:10.065] [INFO] cheese - inserting 1000 documents. first: Dog spike and last: King's Norton RD -[2018-02-13T00:28:10.071] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T00:28:10.123] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:10.156] [INFO] cheese - inserting 1000 documents. first: Anguilla National cricket Team and last: Lassens Natural Food & Vitamins -[2018-02-13T00:28:10.255] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:28:10.311] [INFO] cheese - inserting 1000 documents. first: Category:Japanese mountain climbers and last: Bombay blood -[2018-02-13T00:28:10.354] [INFO] cheese - inserting 1000 documents. first: Wars involving Great Britain and last: L'Echappée Belle -[2018-02-13T00:28:10.374] [INFO] cheese - inserting 1000 documents. first: Granitsa, Evrytania and last: Vudu box -[2018-02-13T00:28:10.377] [INFO] cheese - inserting 1000 documents. first: Melton Halt railway station and last: File:Mark Lenzi.jpeg -[2018-02-13T00:28:10.438] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:28:10.470] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:28:10.518] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:28:10.566] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T00:28:10.778] [INFO] cheese - inserting 1000 documents. first: Running Badge and last: Mõisaküla, Torgu Parish -[2018-02-13T00:28:10.790] [INFO] cheese - inserting 1000 documents. first: Bob Smith (right-handed pitcher born 1931) and last: Lewis Carl Davidson Hamilton -[2018-02-13T00:28:10.827] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:28:10.831] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:28:10.884] [INFO] cheese - inserting 1000 documents. first: File:Jag Panzer - Ample Destruction - 04 - Harder than Steel (sample).ogg and last: Kosuke -[2018-02-13T00:28:10.930] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:10.935] [INFO] cheese - inserting 1000 documents. first: Karl II. Franz von Innerösterreich and last: A Summer to Remember -[2018-02-13T00:28:10.974] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:28:10.997] [INFO] cheese - inserting 1000 documents. first: Pizzoletta and last: Lužice -[2018-02-13T00:28:11.083] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:28:11.298] [INFO] cheese - inserting 1000 documents. first: Foreign Languages Specializing School and last: ICC ODI Team of the Year -[2018-02-13T00:28:11.311] [INFO] cheese - inserting 1000 documents. first: Stellar association and last: Hessians -[2018-02-13T00:28:11.313] [INFO] cheese - inserting 1000 documents. first: Kousuke and last: Wikipedia:Training/For Ambassadors/My watchlist 1 -[2018-02-13T00:28:11.314] [INFO] cheese - inserting 1000 documents. first: Category:World War II cemeteries in Germany and last: Andrey Dostoyevsky -[2018-02-13T00:28:11.357] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:11.361] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:11.357] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:11.397] [INFO] cheese - inserting 1000 documents. first: Renewable energy in Indonesia and last: Fati Jamali -[2018-02-13T00:28:11.402] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T00:28:11.438] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:28:11.467] [INFO] cheese - inserting 1000 documents. first: LOW LINE and last: Theming -[2018-02-13T00:28:11.542] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:28:11.645] [INFO] cheese - inserting 1000 documents. first: 1992 NBA Finals and last: Upsilon Bootis -[2018-02-13T00:28:11.735] [INFO] cheese - inserting 1000 documents. first: Gravity (Jamie Woon song) and last: Ligamentum talocalcaneum anterius -[2018-02-13T00:28:11.741] [INFO] cheese - inserting 1000 documents. first: Matti Harju and last: Cinzia de Ponti -[2018-02-13T00:28:11.741] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:28:11.779] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:11.788] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:28:11.894] [INFO] cheese - inserting 1000 documents. first: Evangelical School of Smyrna and last: Bring It On (Kaci Battaglia album) -[2018-02-13T00:28:11.916] [INFO] cheese - inserting 1000 documents. first: Qaraqurtlu and last: Short Fat Fannie -[2018-02-13T00:28:11.950] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:28:11.978] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:28:12.112] [INFO] cheese - inserting 1000 documents. first: Arvis Vilkaste and last: HU-16B Albatross -[2018-02-13T00:28:12.168] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:28:12.197] [INFO] cheese - inserting 1000 documents. first: Bonjour strad and last: Budhanilkantha -[2018-02-13T00:28:12.197] [INFO] cheese - inserting 1000 documents. first: Cinzia Fiordeponti and last: Todor Kozlovski -[2018-02-13T00:28:12.235] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:12.243] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:28:12.320] [INFO] cheese - inserting 1000 documents. first: Democracy: An American Novel and last: FBI Ten Most Wanted Fugitives -[2018-02-13T00:28:12.368] [INFO] cheese - inserting 1000 documents. first: USS Bowfin (AGSS-287) and last: Thampi Kannanthanam -[2018-02-13T00:28:12.374] [INFO] cheese - inserting 1000 documents. first: Template:Boy and last: Iveco EuroPolis -[2018-02-13T00:28:12.391] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:28:12.418] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:12.484] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:28:12.503] [INFO] cheese - inserting 1000 documents. first: Chatsworth Metro Orange Line (Metrolink & Amtrak station) and last: Imogen Miller -[2018-02-13T00:28:12.555] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:28:12.587] [INFO] cheese - inserting 1000 documents. first: Dan-Foam and last: Nepeta (disambiguation) -[2018-02-13T00:28:12.620] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:12.703] [INFO] cheese - inserting 1000 documents. first: Percent for Art and last: Porcupine rim trail -[2018-02-13T00:28:12.765] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T00:28:12.799] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Politics1.com (2nd nomination) and last: Alltagsgeschichte -[2018-02-13T00:28:12.847] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:28:12.920] [INFO] cheese - inserting 1000 documents. first: Serafin Enoss Bertaso Airport and last: Centralnyi -[2018-02-13T00:28:12.939] [INFO] cheese - inserting 1000 documents. first: Heathrow Terminal 4 and last: Egypt II: The Heliopolis Prophecy -[2018-02-13T00:28:12.943] [INFO] cheese - inserting 1000 documents. first: Category:People from Chamdo and last: Category:Wikipedia sockpuppets of MatthewCenance -[2018-02-13T00:28:12.970] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:28:12.978] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:12.985] [INFO] cheese - inserting 1000 documents. first: 1922 Boston College Eagles football team and last: Cazal Eyewear -[2018-02-13T00:28:13.011] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:28:13.044] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:13.313] [INFO] cheese - inserting 1000 documents. first: Quasi-conformal mapping and last: Wikipedia:Articles for deletion/List of Norwegian-Americans -[2018-02-13T00:28:13.323] [INFO] cheese - inserting 1000 documents. first: Deformable bodies and last: Pandava -[2018-02-13T00:28:13.335] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/multicore.ning.com and last: 1895 Ottawa Hockey Club season -[2018-02-13T00:28:13.345] [INFO] cheese - inserting 1000 documents. first: Maxime Arseneau and last: Tracheal tug sign -[2018-02-13T00:28:13.349] [INFO] cheese - inserting 1000 documents. first: Banovci (Bebrina) and last: Plélan -[2018-02-13T00:28:13.366] [INFO] cheese - inserting 1000 documents. first: George Shelly and last: Category:Morocco–Tunisia relations -[2018-02-13T00:28:13.389] [INFO] cheese - inserting 1000 documents. first: Template:Wikiproject banner shell and last: Lee Craig -[2018-02-13T00:28:13.388] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:13.392] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:28:13.399] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:28:13.431] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:13.443] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:28:13.526] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:28:13.554] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T00:28:13.869] [INFO] cheese - inserting 1000 documents. first: Governor of Bilecik and last: Feeling Yes, Feeling No -[2018-02-13T00:28:13.894] [INFO] cheese - inserting 1000 documents. first: Good Friday Prayer for the Jews and last: Bars and stars -[2018-02-13T00:28:13.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User talk:203.171.195.165 and last: Dołęga (disambiguation) -[2018-02-13T00:28:13.930] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:28:13.938] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:13.954] [INFO] cheese - inserting 1000 documents. first: Shades of the Swarm and last: Now: The Hits of Summer 2009 -[2018-02-13T00:28:13.976] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:14.080] [INFO] cheese - inserting 1000 documents. first: File:Rodovia-fernao-dias-2.jpg and last: Landing fee -[2018-02-13T00:28:14.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeroen bours and last: Managua International Airport -[2018-02-13T00:28:14.092] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:28:14.218] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:28:14.225] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:28:14.384] [INFO] cheese - inserting 1000 documents. first: Sir John Robison and last: Bandy Island -[2018-02-13T00:28:14.420] [INFO] cheese - inserting 1000 documents. first: File:Polenabzeichen.jpg and last: Category:Princes of Zvenyhorod -[2018-02-13T00:28:14.428] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:28:14.480] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:14.513] [INFO] cheese - inserting 1000 documents. first: Black Coffee (2005 film) and last: File:Billboard Top Hits 1986.jpg -[2018-02-13T00:28:14.565] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:28:14.614] [INFO] cheese - inserting 1000 documents. first: Category:Ontario, Oregon and last: Bowling at the 2007 Asian Indoor Games -[2018-02-13T00:28:14.617] [INFO] cheese - inserting 1000 documents. first: Henry Heth (Colonel) and last: The Good Shepherd (Christ) -[2018-02-13T00:28:14.659] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:14.677] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:14.739] [INFO] cheese - inserting 1000 documents. first: Castle View School and last: Natalya Antyukh -[2018-02-13T00:28:14.756] [INFO] cheese - inserting 1000 documents. first: Banna Peak and last: Template:Editnotices/Page/Talk:Association football -[2018-02-13T00:28:14.790] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:28:14.797] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:28:14.928] [INFO] cheese - inserting 1000 documents. first: The Girl Was Young and last: Avie Tevanian -[2018-02-13T00:28:14.968] [INFO] cheese - inserting 1000 documents. first: Category:French hoteliers and last: File:SaganWalk.4.5.AsteroidBelt.jpg -[2018-02-13T00:28:15.015] [INFO] cheese - batch complete in: 1.46 secs -[2018-02-13T00:28:15.031] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:15.074] [INFO] cheese - inserting 1000 documents. first: Norway House, Canada and last: Eslamabad (Dashti) -[2018-02-13T00:28:15.127] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:28:15.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/EQMS::LIMS and last: Category:Rugby clubs established in 1910 -[2018-02-13T00:28:15.157] [INFO] cheese - inserting 1000 documents. first: Bonsai cultivation and care and last: Neoparaphytoseius sooretamus -[2018-02-13T00:28:15.165] [INFO] cheese - inserting 1000 documents. first: Rhiana Griffith and last: Alexander Gordon -[2018-02-13T00:28:15.179] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:28:15.191] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:28:15.199] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:28:15.335] [INFO] cheese - inserting 1000 documents. first: Alma heights and last: Wikipedia:Requests for adminship/Sean Black -[2018-02-13T00:28:15.371] [INFO] cheese - inserting 1000 documents. first: Elephas namadicus and last: Andrew J. Levander -[2018-02-13T00:28:15.490] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:28:15.497] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:15.701] [INFO] cheese - inserting 1000 documents. first: Ballyboy (barony) and last: File:Governor of Malatya.png -[2018-02-13T00:28:15.714] [INFO] cheese - inserting 1000 documents. first: David Pierre and last: Wikipedia:WikiProject Spam/LinkReports/adlusa.org -[2018-02-13T00:28:15.720] [INFO] cheese - inserting 1000 documents. first: Big Bang Burger Bar, The and last: Category:1985 elections in Canada -[2018-02-13T00:28:15.744] [INFO] cheese - inserting 1000 documents. first: Category:Conflicts in 1217 and last: Template:Independent Radical Party/meta/color -[2018-02-13T00:28:15.758] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:28:15.776] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:28:15.821] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:28:15.838] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:28:16.049] [INFO] cheese - inserting 1000 documents. first: Alberto Thieroldt and last: Category:Saint Vincent and the Grenadines sprinters -[2018-02-13T00:28:16.058] [INFO] cheese - inserting 1000 documents. first: Fifth millennium and last: Oswald Hanfling -[2018-02-13T00:28:16.101] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:28:16.106] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:28:16.197] [INFO] cheese - inserting 1000 documents. first: Guiana Industrial Workers Union and last: Hypatima haligramma -[2018-02-13T00:28:16.243] [INFO] cheese - inserting 1000 documents. first: Shravakayana and last: Jean-Francois Bachelot -[2018-02-13T00:28:16.279] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:28:16.321] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:16.323] [INFO] cheese - inserting 1000 documents. first: BUI (disambiguation) and last: Category:1925 in fiction -[2018-02-13T00:28:16.386] [INFO] cheese - inserting 1000 documents. first: National Anthem of the Republic of China and last: Li Tieh Kuai -[2018-02-13T00:28:16.394] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:16.415] [INFO] cheese - inserting 1000 documents. first: Life and Death (Dynasty) and last: 15th Hong Kong Film Awards -[2018-02-13T00:28:16.483] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:28:16.515] [INFO] cheese - batch complete in: 1.5 secs -[2018-02-13T00:28:16.650] [INFO] cheese - inserting 1000 documents. first: Category:Maltese sprinters and last: Gładyszów -[2018-02-13T00:28:16.651] [INFO] cheese - inserting 1000 documents. first: Żabinka and last: Peter Bazalgette -[2018-02-13T00:28:16.712] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:28:16.727] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:16.750] [INFO] cheese - inserting 1000 documents. first: SM U VI (Austria-Hungary) and last: Ida Crowe Pollock -[2018-02-13T00:28:16.831] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:28:16.869] [INFO] cheese - inserting 1000 documents. first: Category:1873 establishments in Norway and last: Tony Dortie -[2018-02-13T00:28:16.977] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:28:17.082] [INFO] cheese - inserting 1000 documents. first: Category:Macquarie University and last: Pierce the Veil -[2018-02-13T00:28:17.138] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:28:17.175] [INFO] cheese - inserting 1000 documents. first: Category:21st-century disestablishments in Trinidad and Tobago and last: Avia 137AZ -[2018-02-13T00:28:17.208] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:28:17.282] [INFO] cheese - inserting 1000 documents. first: Le Rhone and last: Live @ Warp10 -[2018-02-13T00:28:17.321] [INFO] cheese - inserting 1000 documents. first: Awre for Blakeney railway station and last: Category:Buckethead task force articles -[2018-02-13T00:28:17.342] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:28:17.364] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:17.451] [INFO] cheese - inserting 1000 documents. first: Babalu Sobral and last: Robert Mohr -[2018-02-13T00:28:17.502] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:17.531] [INFO] cheese - inserting 1000 documents. first: Papillon-Lefevre disease and last: Traver Rains -[2018-02-13T00:28:17.568] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:17.576] [INFO] cheese - inserting 1000 documents. first: Category:Classical music in China and last: Tachina barbata -[2018-02-13T00:28:17.620] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:28:17.679] [INFO] cheese - inserting 1000 documents. first: Slovenian music and last: Chicago Sun-Times -[2018-02-13T00:28:17.695] [INFO] cheese - inserting 1000 documents. first: Piece of My Heart (Tara Kemp song) and last: Ignazia Verzeri -[2018-02-13T00:28:17.708] [INFO] cheese - inserting 1000 documents. first: Tabimorelin and last: Raymond Henry Sherry -[2018-02-13T00:28:17.812] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T00:28:17.818] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:28:17.871] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T00:28:17.917] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2010 September 21 and last: Wikipedia:Articles for deletion/Billy E. Vaughn -[2018-02-13T00:28:17.944] [INFO] cheese - inserting 1000 documents. first: File:Wir sind Helden Die Reklamation.jpg and last: Pamela Goldsmith-Jones -[2018-02-13T00:28:17.962] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:18.006] [INFO] cheese - inserting 1000 documents. first: Tredegar Park, Newport and last: Category:Trails -[2018-02-13T00:28:18.035] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:28:18.086] [INFO] cheese - inserting 1000 documents. first: Paramonacanthus and last: Gishi (disambiguation) -[2018-02-13T00:28:18.086] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:28:18.154] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:28:18.253] [INFO] cheese - inserting 1000 documents. first: Raymond Sherry and last: Lisie heart institute -[2018-02-13T00:28:18.256] [INFO] cheese - inserting 1000 documents. first: Category:Directors General of the Nigerian State Security Service and last: Category:Transport infrastructure completed in the 12th century -[2018-02-13T00:28:18.297] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:28:18.307] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:18.446] [INFO] cheese - inserting 1000 documents. first: File:Baci ceremony.jpg and last: Jeleznodorozhnyy Okrug -[2018-02-13T00:28:18.487] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:18.493] [INFO] cheese - inserting 1000 documents. first: Green Bay, Virginia (disambiguation) and last: British Columbia Premier League -[2018-02-13T00:28:18.559] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:28:18.610] [INFO] cheese - inserting 1000 documents. first: Aggressive NK cell leukemia and last: Jed Z. Buchwald -[2018-02-13T00:28:18.640] [INFO] cheese - inserting 1000 documents. first: File:Soldier River.jpg and last: Fear of Fours -[2018-02-13T00:28:18.695] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:28:18.705] [INFO] cheese - inserting 1000 documents. first: Category:Infrastructure completed in 1127 and last: XELE-AM -[2018-02-13T00:28:18.721] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:28:18.750] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:28:18.812] [INFO] cheese - inserting 1000 documents. first: William Shaw (mathematician) and last: Short R.24/31 -[2018-02-13T00:28:18.878] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:28:18.925] [INFO] cheese - inserting 1000 documents. first: Wolf herring and last: Take Me Out To The Ball Game -[2018-02-13T00:28:18.945] [INFO] cheese - inserting 1000 documents. first: Jeleznodorozhnyi Okrug and last: Wikipedia:Commonname -[2018-02-13T00:28:18.960] [INFO] cheese - inserting 1000 documents. first: Block 15 F-16 Fighting Falcon and last: Decay (film) -[2018-02-13T00:28:18.987] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:28:19.020] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T00:28:19.040] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:28:19.122] [INFO] cheese - inserting 1000 documents. first: Orthilia secunda and last: Awakened (2013 film) -[2018-02-13T00:28:19.175] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:28:19.292] [INFO] cheese - inserting 1000 documents. first: Alastair Gordon, Earl of Aboyne and last: Wikipedia:Articles for deletion/American Orthodox Catholic Church -[2018-02-13T00:28:19.357] [INFO] cheese - inserting 1000 documents. first: Shahin Dezh and last: ⁴ -[2018-02-13T00:28:19.357] [INFO] cheese - inserting 1000 documents. first: Great Hypostyle Hall, Karnak and last: Graveri -[2018-02-13T00:28:19.397] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:28:19.405] [INFO] cheese - inserting 1000 documents. first: Rihand Dam and last: Category:Ivorian expatriates in France -[2018-02-13T00:28:19.442] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:19.497] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:28:19.503] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:28:19.541] [INFO] cheese - inserting 1000 documents. first: Nickel(II) sulfide and last: Category:1969 establishments in Uganda -[2018-02-13T00:28:19.588] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:28:19.692] [INFO] cheese - inserting 1000 documents. first: Hasan İpek and last: Wonkwang University Law School -[2018-02-13T00:28:19.731] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:19.829] [INFO] cheese - inserting 1000 documents. first: Tetrominoes and last: West Side of Stamford, Connecticut -[2018-02-13T00:28:19.869] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:19.891] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and manga/Anniversaries/February/February 8 and last: German stock market index -[2018-02-13T00:28:19.927] [INFO] cheese - inserting 1000 documents. first: Shirgjan and last: Hoffman's Parakeet -[2018-02-13T00:28:19.960] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:28:20.005] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:28:20.018] [INFO] cheese - inserting 1000 documents. first: Mycosphaerella rabiei and last: Wikipedia:Copyright problems/2012 November 23 -[2018-02-13T00:28:20.028] [INFO] cheese - inserting 1000 documents. first: Template:USCongDistStateNC and last: Category:Tourism in Guatemala -[2018-02-13T00:28:20.058] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:28:20.114] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:28:20.149] [INFO] cheese - inserting 1000 documents. first: Yeungnam Law School and last: Tennis at the 2015 Pan American Games – Men's doubles -[2018-02-13T00:28:20.205] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:28:20.269] [INFO] cheese - inserting 1000 documents. first: Saljut I and last: Music terminology -[2018-02-13T00:28:20.381] [INFO] cheese - inserting 1000 documents. first: Xaskul and last: Estelle v. Gamble -[2018-02-13T00:28:20.387] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:28:20.446] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:28:20.456] [INFO] cheese - inserting 1000 documents. first: Hoffmans' Parakeet and last: Save The Last Dance For Me (album) -[2018-02-13T00:28:20.472] [INFO] cheese - inserting 1000 documents. first: Fenerbahçe Ülker season 2008–09 and last: Category:Wikipedia sockpuppets of Mr D Assange118 -[2018-02-13T00:28:20.514] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:28:20.516] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 November 27 and last: Category:1959 in Ukraine -[2018-02-13T00:28:20.538] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:28:20.605] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:28:20.680] [INFO] cheese - inserting 1000 documents. first: Danger Street and last: Category:1869 disestablishments in France -[2018-02-13T00:28:20.681] [INFO] cheese - inserting 1000 documents. first: Carotid sinus massage and last: The One with the Breast Milk -[2018-02-13T00:28:20.719] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:20.739] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:28:20.928] [INFO] cheese - inserting 1000 documents. first: Category:Event venues established in 1999 and last: USSR Ministry of Communications -[2018-02-13T00:28:20.932] [INFO] cheese - inserting 1000 documents. first: Mesici and last: Matti Keinonen -[2018-02-13T00:28:20.938] [INFO] cheese - inserting 1000 documents. first: Critic of the slave trade and last: Whitmore v. Arkansas -[2018-02-13T00:28:20.979] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:20.987] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:28:20.995] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:28:21.041] [INFO] cheese - inserting 1000 documents. first: Spankee Rogers and last: Late Night Tales: Matt Helders -[2018-02-13T00:28:21.076] [INFO] cheese - inserting 1000 documents. first: Elwood Babbitt and last: Category:Archers at the 2015 European Games -[2018-02-13T00:28:21.099] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:21.148] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:21.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anti-atheists and last: Motorcycle enduro -[2018-02-13T00:28:21.265] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:21.295] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Ranjanrampal and last: Priotrochus iris -[2018-02-13T00:28:21.328] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:28:21.331] [INFO] cheese - inserting 1000 documents. first: File:PDF NN in ideal gas.svg and last: Umberto Menegalli -[2018-02-13T00:28:21.365] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:28:21.450] [INFO] cheese - inserting 1000 documents. first: Halley wars and last: Category:Games about extraterrestrial life -[2018-02-13T00:28:21.498] [INFO] cheese - inserting 1000 documents. first: Carcassonne (board game) and last: Jacqueline Lichtenberg -[2018-02-13T00:28:21.513] [INFO] cheese - inserting 1000 documents. first: Federation of Bangladesh Chambers of Commerce and Industries and last: Jamia Uloom-i-Sharia -[2018-02-13T00:28:21.569] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:28:21.606] [INFO] cheese - inserting 1000 documents. first: Rehabilitation Institute of Michigan and last: Zebrahead Discography -[2018-02-13T00:28:21.631] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T00:28:21.640] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:28:21.683] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:28:21.753] [INFO] cheese - inserting 1000 documents. first: Priotrochus kotschyi and last: Thomas Catesby Paget -[2018-02-13T00:28:21.805] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:21.903] [INFO] cheese - inserting 1000 documents. first: The Country Coordinating Mechanism and last: Category:2009 establishments in Canada -[2018-02-13T00:28:21.913] [INFO] cheese - inserting 1000 documents. first: Jewish Year Book and last: Rio Hondo bicycle path -[2018-02-13T00:28:21.950] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:21.959] [INFO] cheese - inserting 1000 documents. first: Black Star Canyon and last: File:Blume KTN.JPG -[2018-02-13T00:28:21.987] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2015 June 29 and last: H:GT -[2018-02-13T00:28:21.991] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:28:22.022] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:28:22.028] [INFO] cheese - inserting 1000 documents. first: Cosmic Hot Interstellar Plasma Spectrometer and last: 1961 Alabama Crimson Tide football team -[2018-02-13T00:28:22.048] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:22.100] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:28:22.198] [INFO] cheese - inserting 1000 documents. first: Category:1880 establishments in Cyprus and last: Masatane -[2018-02-13T00:28:22.249] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:28:22.422] [INFO] cheese - inserting 1000 documents. first: Template:FIFA Women's World Cup Best Young Player and last: File:Hideaway Girl poster.jpg -[2018-02-13T00:28:22.481] [INFO] cheese - inserting 1000 documents. first: Kimi no Iru Machi and last: Wikipedia:WikiProject Screencast/Scripts/Images -[2018-02-13T00:28:22.489] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:22.499] [INFO] cheese - inserting 1000 documents. first: Radio atmospherics and last: Bernard Rich -[2018-02-13T00:28:22.541] [INFO] cheese - inserting 1000 documents. first: Popular Front Party and last: Kinpachi-sensei -[2018-02-13T00:28:22.576] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:22.675] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:28:22.761] [INFO] cheese - inserting 1000 documents. first: 1962 Alabama Crimson Tide football team and last: Secret speech -[2018-02-13T00:28:22.754] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:28:22.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Archive242 and last: Merry Christmas, Baby (album) -[2018-02-13T00:28:22.862] [INFO] cheese - inserting 1000 documents. first: Methuen Treaty and last: Harve Bennett -[2018-02-13T00:28:22.864] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:28:22.930] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:28:22.972] [INFO] cheese - batch complete in: 1.34 secs -[2018-02-13T00:28:23.035] [INFO] cheese - inserting 1000 documents. first: Serpentine Running Club and last: Category:1036 by continent -[2018-02-13T00:28:23.101] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:28:23.134] [INFO] cheese - inserting 1000 documents. first: Railway stations in Sikkim and last: Coombe Junction Halt -[2018-02-13T00:28:23.137] [INFO] cheese - inserting 1000 documents. first: Manifest Destiny (song) and last: Katherine von Bora -[2018-02-13T00:28:23.186] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:28:23.189] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:23.289] [INFO] cheese - inserting 1000 documents. first: Rubber deck and last: Novovasilyevka -[2018-02-13T00:28:23.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Medfordese and last: Bank of America Tower, Albuquerque -[2018-02-13T00:28:23.326] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:28:23.357] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:28:23.423] [INFO] cheese - inserting 1000 documents. first: Category:Dutch sportsmen and last: Singa, Sudan -[2018-02-13T00:28:23.447] [INFO] cheese - inserting 1000 documents. first: Category:Urdu-English translators and last: Category:1792 disestablishments in Ireland -[2018-02-13T00:28:23.494] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:28:23.498] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:23.641] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Belarus and last: Criminal black man -[2018-02-13T00:28:23.755] [INFO] cheese - inserting 1000 documents. first: Rishtey (season 3) and last: Wrapped normal distribution -[2018-02-13T00:28:23.752] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:23.790] [INFO] cheese - inserting 1000 documents. first: Doc Neeson and last: File:Early flight 02561u (5).jpg -[2018-02-13T00:28:23.847] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:28:24.006] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:28:24.096] [INFO] cheese - inserting 1000 documents. first: American Sovereignty Restoration Act and last: Category:Sciaenidae -[2018-02-13T00:28:24.100] [INFO] cheese - inserting 1000 documents. first: Category:Rivers by mountain range and last: Module:Tennis events nav/doc -[2018-02-13T00:28:24.155] [INFO] cheese - inserting 1000 documents. first: Treadaway and last: Category:Renewable energy in the Netherlands -[2018-02-13T00:28:24.193] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:24.194] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:28:24.263] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:28:24.349] [INFO] cheese - inserting 1000 documents. first: Paul Émile Lecoq de Boisbaudran and last: Regent's Park -[2018-02-13T00:28:24.425] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T00:28:24.430] [INFO] cheese - inserting 1000 documents. first: The Long Cairn and last: Category:Assassinated Saudi Arabian people -[2018-02-13T00:28:24.443] [INFO] cheese - inserting 1000 documents. first: W. J. Muller and last: Wikipedia:WikiProject Spam/LinkReports/emmytvlegends.org -[2018-02-13T00:28:24.485] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:28:24.504] [INFO] cheese - inserting 1000 documents. first: David Mack (police officer) and last: Portal:Military history of Africa/Selected anniversaries/February 8 -[2018-02-13T00:28:24.525] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:28:24.603] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:28:24.645] [INFO] cheese - inserting 1000 documents. first: Nothris discretella and last: Federated states of micronesia national under-23 football team -[2018-02-13T00:28:24.707] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:24.732] [INFO] cheese - inserting 1000 documents. first: Warren Crawford and last: DeTas-Yayasan Pahang -[2018-02-13T00:28:24.802] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:24.834] [INFO] cheese - inserting 1000 documents. first: Bzoe and last: Gulf of Kachchh Marine National Park -[2018-02-13T00:28:24.914] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:28:24.919] [INFO] cheese - inserting 1000 documents. first: Template:1987–88 NHL Smythe Division standings and last: Range accrual -[2018-02-13T00:28:24.963] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:28:25.067] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Incidents/Stevertigo/September 2010 and last: Wikipedia:Articles for deletion/Timelog Project -[2018-02-13T00:28:25.234] [INFO] cheese - inserting 1000 documents. first: Dennis Kusinich and last: List of Dublin City University faculties, schools, research centres and laboratories -[2018-02-13T00:28:25.239] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:28:25.301] [INFO] cheese - inserting 1000 documents. first: Sebastián de Morra and last: Template:Pool A Men's Water polo at the 2015 Pan American Games -[2018-02-13T00:28:25.300] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:28:25.390] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:28:25.472] [INFO] cheese - inserting 1000 documents. first: Category:People's Liberation Army generals from Shanghai and last: Dundurn Publishing -[2018-02-13T00:28:25.540] [INFO] cheese - inserting 1000 documents. first: RMIT Music and last: O What a Beautiful Mornin' -[2018-02-13T00:28:25.586] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:28:25.634] [INFO] cheese - inserting 1000 documents. first: Herbert Norkus (ship) and last: Eric and Ernie -[2018-02-13T00:28:25.664] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:28:25.771] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:28:25.799] [INFO] cheese - inserting 1000 documents. first: Emil Holas and last: Marie de Garis -[2018-02-13T00:28:25.849] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:25.858] [INFO] cheese - inserting 1000 documents. first: Romania in the Eurovision Song Contest 1996 and last: SBRT -[2018-02-13T00:28:25.879] [INFO] cheese - inserting 1000 documents. first: David Croft (TV producer) and last: Mad Max -[2018-02-13T00:28:25.888] [INFO] cheese - inserting 1000 documents. first: Discovery Park erratic and last: Bartlett Regional Hospital -[2018-02-13T00:28:25.910] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:28:25.938] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:25.969] [INFO] cheese - batch complete in: 1.544 secs -[2018-02-13T00:28:26.015] [INFO] cheese - inserting 1000 documents. first: HD-39801 and last: Nebraska–Omaha Mavericks men's soccer -[2018-02-13T00:28:26.063] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:26.158] [INFO] cheese - inserting 1000 documents. first: Richard Schope and last: Cocktail effect -[2018-02-13T00:28:26.197] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:26.309] [INFO] cheese - inserting 1000 documents. first: Category:1733 disestablishments in Europe and last: Indian Institute of Technology (Ropar) -[2018-02-13T00:28:26.322] [INFO] cheese - inserting 1000 documents. first: File:Victor Vashi.gif and last: Thoracolumbosacral orthosis -[2018-02-13T00:28:26.337] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:28:26.385] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:28:26.400] [INFO] cheese - inserting 1000 documents. first: Levelling mechanism and last: Know your meme -[2018-02-13T00:28:26.422] [INFO] cheese - inserting 1000 documents. first: File:Short Ride 2.jpg and last: Subcommittee on Superfund and Environmental Health -[2018-02-13T00:28:26.440] [INFO] cheese - inserting 1000 documents. first: Ms frontpage and last: Persistent storage -[2018-02-13T00:28:26.449] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:26.464] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:26.503] [INFO] cheese - inserting 1000 documents. first: Spanish (wine) and last: Sebastián Arrieta -[2018-02-13T00:28:26.529] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:28:26.570] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:28:26.796] [INFO] cheese - inserting 1000 documents. first: Solidago simplex and last: File:MenAmongstMountainsCover.jpg -[2018-02-13T00:28:26.853] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:28:26.951] [INFO] cheese - inserting 1000 documents. first: Unramified morphism and last: George John (cricketer) -[2018-02-13T00:28:26.960] [INFO] cheese - inserting 1000 documents. first: Charles Percy Graham-Montgomery, 6th Baronet Stanhope and last: Category:1983 in New Zealand sport -[2018-02-13T00:28:26.964] [INFO] cheese - inserting 1000 documents. first: Herodias and last: Lisle (town), Broome County, New York -[2018-02-13T00:28:26.990] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:28:27.077] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:28:27.086] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T00:28:27.088] [INFO] cheese - inserting 1000 documents. first: Sadananda (of Vedantasara) and last: Payyavula Kesav -[2018-02-13T00:28:27.236] [INFO] cheese - inserting 1000 documents. first: Okanogan Highland and last: Eupatorium shimadai -[2018-02-13T00:28:27.236] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:28:27.332] [INFO] cheese - inserting 1000 documents. first: Severn Teackle Wallis and last: Chesapeake and Albemarle Railroad -[2018-02-13T00:28:27.386] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:28:27.575] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T00:28:27.767] [INFO] cheese - inserting 1000 documents. first: Windsor (village), Broome County, New York and last: Jackson (town), Washington County, Wisconsin -[2018-02-13T00:28:27.771] [INFO] cheese - inserting 1000 documents. first: Algebris and last: Template:RussiaAdmMunRef/per/munlist/solikamsky -[2018-02-13T00:28:27.808] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:28:27.842] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:28:27.880] [INFO] cheese - inserting 1000 documents. first: Book:Katy Perry and last: 10 (Los Angeles Railway) -[2018-02-13T00:28:27.895] [INFO] cheese - inserting 1000 documents. first: Crâng Park and last: Rebecca Boado Rosas -[2018-02-13T00:28:27.981] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:28:28.052] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:28:28.065] [INFO] cheese - inserting 1000 documents. first: Tanat Nusserbaev and last: Day 'n' Nite -[2018-02-13T00:28:28.081] [INFO] cheese - inserting 1000 documents. first: Ordnance Island, Bermuda and last: Category:1334 in India -[2018-02-13T00:28:28.115] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:28:28.134] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T00:28:28.364] [INFO] cheese - inserting 1000 documents. first: Boho, County Fermanagh and last: Bindi Kullar -[2018-02-13T00:28:28.388] [INFO] cheese - inserting 1000 documents. first: 1993 World Championships in Athletics – Men's 4 x 100 metres relay and last: Fricated alveolar click -[2018-02-13T00:28:28.426] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:28:28.450] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:28:28.531] [INFO] cheese - inserting 1000 documents. first: Butterfly (documentary film) and last: Template:Asian Games Tennis -[2018-02-13T00:28:28.537] [INFO] cheese - inserting 1000 documents. first: Category:Native American people of the Indian Wars and last: Fratres Pontifices -[2018-02-13T00:28:28.551] [INFO] cheese - inserting 1000 documents. first: Template:NRHP in Hudson County, New Jersey and last: St Kevins C.B.S -[2018-02-13T00:28:28.570] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:28.572] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:28:28.593] [INFO] cheese - inserting 1000 documents. first: La Digue Day Gecko and last: Gelechia fuscomaculella -[2018-02-13T00:28:28.619] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:28.649] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:28:28.795] [INFO] cheese - inserting 1000 documents. first: New York compression and last: Category:Scottish new wave musical groups -[2018-02-13T00:28:28.828] [INFO] cheese - inserting 1000 documents. first: Brown-mantled tamarin and last: Category:Libraries in North Carolina -[2018-02-13T00:28:28.835] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:28.878] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:28:28.882] [INFO] cheese - inserting 1000 documents. first: Louisiana and Arkansas Railroad and last: Be With You (MAX song) -[2018-02-13T00:28:28.938] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:28:28.960] [INFO] cheese - inserting 1000 documents. first: Jackson (village), Washington County, Wisconsin and last: Milford, New York -[2018-02-13T00:28:28.982] [INFO] cheese - inserting 1000 documents. first: WKRP In Cincinnati and last: Jake Rodríguez -[2018-02-13T00:28:28.997] [INFO] cheese - inserting 1000 documents. first: 9500 Liberty and last: Alla Gerber -[2018-02-13T00:28:29.016] [INFO] cheese - inserting 1000 documents. first: Lee Martyn Rogers and last: Category:CBeebies -[2018-02-13T00:28:29.035] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T00:28:29.053] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:28:29.074] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:29.097] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:28:29.277] [INFO] cheese - inserting 1000 documents. first: Huygens-Fokker Foundation and last: Sardarah -[2018-02-13T00:28:29.314] [INFO] cheese - inserting 1000 documents. first: File:Laulasiapartment1.jpg and last: Wikipedia:Version 1.0 Editorial Team/Dutch military history articles by quality/2 -[2018-02-13T00:28:29.325] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:28:29.383] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:29.401] [INFO] cheese - inserting 1000 documents. first: Typhoon Imbudo and last: Journal impact factor -[2018-02-13T00:28:29.440] [INFO] cheese - inserting 1000 documents. first: The Daily Grind (EP) and last: Category:Lithuanian mixed martial artists -[2018-02-13T00:28:29.441] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Famous Litvaks of Lithuanian origin and last: Morgan Matson -[2018-02-13T00:28:29.468] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:28:29.528] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:29.534] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:28:29.614] [INFO] cheese - inserting 1000 documents. first: Peter de Blaquiere and last: Template:RussiaAdmMunRef/pri/munlist/krasnoarmeysky -[2018-02-13T00:28:29.657] [INFO] cheese - inserting 1000 documents. first: The Ballad of Forty Dollars and last: Tydemania navigatoris -[2018-02-13T00:28:29.662] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:28:29.698] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:28:29.746] [INFO] cheese - inserting 1000 documents. first: File:Wcpw logo.jpg and last: Wikipedia:WikiProject Trains/ICC valuations/St. Johns River Terminal Company -[2018-02-13T00:28:29.815] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:29.888] [INFO] cheese - inserting 1000 documents. first: Baker’s Dozen and last: Activity on node (AON) diagram -[2018-02-13T00:28:29.905] [INFO] cheese - inserting 1000 documents. first: Teleperformance philippines and last: 2004 World Junior Championships in Athletics – Men's triple jump -[2018-02-13T00:28:29.923] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:28:29.947] [INFO] cheese - inserting 1000 documents. first: Saint Stanisław and last: Ctenotus taeniolatus -[2018-02-13T00:28:29.949] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:28:30.011] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:28:30.042] [INFO] cheese - inserting 1000 documents. first: Tydemania (fish) and last: Rutger de Regt -[2018-02-13T00:28:30.094] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:28:30.140] [INFO] cheese - inserting 1000 documents. first: Leyland Tiger (front-engined) and last: Htoma Myauk -[2018-02-13T00:28:30.176] [INFO] cheese - inserting 1000 documents. first: Southwestern Michigan Athletic Conference and last: Template:Soca music -[2018-02-13T00:28:30.200] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:28:30.229] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:28:30.289] [INFO] cheese - inserting 1000 documents. first: Morris (village), New York and last: Yue cuisine -[2018-02-13T00:28:30.308] [INFO] cheese - inserting 1000 documents. first: Template:Chicago Cubs and last: Kayseri Yeni Stadyumu -[2018-02-13T00:28:30.312] [INFO] cheese - inserting 1000 documents. first: Category:Congressional delegations from Virginia navigational boxes and last: Category:Lists of Hindu religious leaders -[2018-02-13T00:28:30.355] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:28:30.358] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:30.395] [INFO] cheese - batch complete in: 1.36 secs -[2018-02-13T00:28:30.591] [INFO] cheese - inserting 1000 documents. first: St. Luigi Orione and last: Violadores del verso -[2018-02-13T00:28:30.642] [INFO] cheese - inserting 1000 documents. first: Template:Nuclear-powered icebreakers of Russia and last: Remembering 1942 -[2018-02-13T00:28:30.679] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:28:30.703] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:28:30.716] [INFO] cheese - inserting 1000 documents. first: Pauline Calf and last: Cologna -[2018-02-13T00:28:30.770] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:28:30.843] [INFO] cheese - inserting 1000 documents. first: Undisclosed (song) and last: Estephan II -[2018-02-13T00:28:30.856] [INFO] cheese - inserting 1000 documents. first: Nerve guidance conduit and last: Now! 4 (Canadian series) -[2018-02-13T00:28:30.877] [INFO] cheese - inserting 1000 documents. first: Perite and last: Category:Manufacturing companies based in Washington, D.C. -[2018-02-13T00:28:30.886] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:28:30.898] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:28:30.956] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:28:31.098] [INFO] cheese - inserting 1000 documents. first: Douglas Everett (disambiguation) and last: Ditlef Hvistendahl Christiansen -[2018-02-13T00:28:31.144] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:31.147] [INFO] cheese - inserting 1000 documents. first: List of World War II divisions of Germany and last: Matthew Thiessen -[2018-02-13T00:28:31.168] [INFO] cheese - inserting 1000 documents. first: Rugby World Cup 2011 20th Place Playoff and last: Bengali Britons -[2018-02-13T00:28:31.210] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:28:31.244] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:28:31.326] [INFO] cheese - inserting 1000 documents. first: Joseph Reagle and last: Archibald Pitt -[2018-02-13T00:28:31.350] [INFO] cheese - inserting 1000 documents. first: NK Partizan and last: File:Students dancing the Conga (St John's Regional College, Australia, 2007).jpg -[2018-02-13T00:28:31.379] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:31.414] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:31.516] [INFO] cheese - inserting 1000 documents. first: File:Peter Fitzgerald cropped.jpg and last: Category:1962 music awards -[2018-02-13T00:28:31.543] [INFO] cheese - inserting 1000 documents. first: Canton cuisine and last: Self bondage -[2018-02-13T00:28:31.568] [INFO] cheese - inserting 1000 documents. first: Mendota Consolidated Community School District 289 and last: Ebersbach (Fils) station -[2018-02-13T00:28:31.579] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:28:31.616] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:31.642] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T00:28:31.707] [INFO] cheese - inserting 1000 documents. first: Tower City (Cleveland) and last: כּ -[2018-02-13T00:28:31.745] [INFO] cheese - inserting 1000 documents. first: Sampling (A level business) and last: File:MenAgainstTheSea.JPG -[2018-02-13T00:28:31.754] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:28:31.767] [INFO] cheese - inserting 1000 documents. first: You Better Keep It on Your Mind and last: William Ritchie (footballer) -[2018-02-13T00:28:31.815] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:28:31.819] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:28:31.900] [INFO] cheese - inserting 1000 documents. first: Mr. Bass Man and last: Brand Upon the Brain -[2018-02-13T00:28:31.940] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:32.012] [INFO] cheese - inserting 1000 documents. first: Madison-Model High School and last: Wikipedia:WikiProject Spam/Local/blendedbody.com -[2018-02-13T00:28:32.058] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:28:32.137] [INFO] cheese - inserting 1000 documents. first: Solidago hintoniorum and last: Template:User in WF -[2018-02-13T00:28:32.156] [INFO] cheese - inserting 1000 documents. first: William and Mary Quarterly and last: St. Mary Help of Christians Catholic School -[2018-02-13T00:28:32.169] [INFO] cheese - inserting 1000 documents. first: Varig Logistica and last: Renewed judgment as a matter of law -[2018-02-13T00:28:32.170] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:28:32.203] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:28:32.227] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:32.233] [INFO] cheese - inserting 1000 documents. first: Kangdong (village) and last: Template:DLM style -[2018-02-13T00:28:32.287] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:28:32.292] [INFO] cheese - inserting 1000 documents. first: Montereau-sur-le-Jard and last: Mehmet Hakki Hocaoğlu -[2018-02-13T00:28:32.345] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:28:32.476] [INFO] cheese - inserting 1000 documents. first: Buckleria brasilia and last: Bill Tupper -[2018-02-13T00:28:32.535] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:32.564] [INFO] cheese - inserting 1000 documents. first: Staples, William and last: Category:Maritime incidents in February 1940 -[2018-02-13T00:28:32.637] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:32.656] [INFO] cheese - inserting 1000 documents. first: She Used to Wanna Be a Ballerina and last: Spider-Man (1994 TV series: Season 1) -[2018-02-13T00:28:32.673] [INFO] cheese - inserting 1000 documents. first: Chen Yun and last: Fritjov Capra -[2018-02-13T00:28:32.686] [INFO] cheese - inserting 1000 documents. first: Cigarette packets in Australia and last: Category:1910s classical albums -[2018-02-13T00:28:32.723] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:28:32.740] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:32.768] [INFO] cheese - inserting 1000 documents. first: Sir Frederick Pile and last: Edmundo Rivero -[2018-02-13T00:28:32.811] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T00:28:32.864] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:28:32.872] [INFO] cheese - inserting 1000 documents. first: File:Ureme 4 Front.jpg and last: Wikipedia:Requests for adminship/Seattle Skier -[2018-02-13T00:28:32.956] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:28:33.084] [INFO] cheese - inserting 1000 documents. first: Susan Mokotoff Reverby and last: Andrea Mohr -[2018-02-13T00:28:33.229] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:33.280] [INFO] cheese - inserting 1000 documents. first: Government House Canada and last: The Street (1988 TV Series) -[2018-02-13T00:28:33.307] [INFO] cheese - inserting 1000 documents. first: Category:1910s albums and last: Category:Afghanistan-Sweden relations -[2018-02-13T00:28:33.307] [INFO] cheese - inserting 1000 documents. first: Buzzcocks F.O.C. and last: Anthony J. Catanese -[2018-02-13T00:28:33.342] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:28:33.384] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:28:33.389] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:28:33.519] [INFO] cheese - inserting 1000 documents. first: Onoel and last: Air cleaner -[2018-02-13T00:28:33.558] [INFO] cheese - inserting 1000 documents. first: Naturescaping and last: James Madison University College of Visual and Performing Arts -[2018-02-13T00:28:33.627] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:28:33.710] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:28:33.915] [INFO] cheese - inserting 1000 documents. first: File:Jack Goes Boating Poster.jpg and last: List of heads of state of Manchukuo -[2018-02-13T00:28:33.974] [INFO] cheese - inserting 1000 documents. first: David Bowman (bishop) and last: Template:Did you know nominations/List of tallest buildings in Brooklyn -[2018-02-13T00:28:33.999] [INFO] cheese - inserting 1000 documents. first: Blade (Puppet Master Character) and last: Police area -[2018-02-13T00:28:34.015] [INFO] cheese - inserting 1000 documents. first: Category:Afghanistan-Switzerland relations and last: Vientiane Prefecture -[2018-02-13T00:28:34.019] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:28:34.038] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:28:34.068] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:28:34.084] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:28:34.147] [INFO] cheese - inserting 1000 documents. first: Regents v. Bakke and last: Wikipedia:Special:Categories -[2018-02-13T00:28:34.196] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:28:34.209] [INFO] cheese - inserting 1000 documents. first: Tracked vehicle and last: Neoconservatives -[2018-02-13T00:28:34.252] [INFO] cheese - inserting 1000 documents. first: Heroin Chic and last: File:DeltaGoodremPredictableFrontCover.jpg -[2018-02-13T00:28:34.325] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:28:34.340] [INFO] cheese - batch complete in: 1.529 secs -[2018-02-13T00:28:34.392] [INFO] cheese - inserting 1000 documents. first: Tamron SP AF 11-18mm f/4.5-5.6 Di II LD Aspherical IF and last: Wikipedia:Articles for deletion/AFC Wimbledon league record by opponent -[2018-02-13T00:28:34.454] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:28:34.525] [INFO] cheese - inserting 1000 documents. first: Police Area and last: The Hathaways -[2018-02-13T00:28:34.525] [INFO] cheese - inserting 1000 documents. first: BAA airports and last: Something Right (Westlife song) -[2018-02-13T00:28:34.540] [INFO] cheese - inserting 1000 documents. first: Luang Prabang Province and last: Category:Nelson College faculty -[2018-02-13T00:28:34.579] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:28:34.585] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:34.597] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:28:34.606] [INFO] cheese - inserting 1000 documents. first: Beypazarı and last: Musayi District -[2018-02-13T00:28:34.668] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:28:34.789] [INFO] cheese - inserting 1000 documents. first: The Lord's Chosen Charismatic Revival Movement and last: Wikipedia:Articles for deletion/Trishneet Arora (2nd nomination) -[2018-02-13T00:28:34.829] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:28:34.855] [INFO] cheese - inserting 1000 documents. first: Bindon Liberty and last: List of state leaders in 288 -[2018-02-13T00:28:34.914] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:28:34.967] [INFO] cheese - inserting 1000 documents. first: Bucks Bridge and last: Category:Athletics (track and field) venues in Botswana -[2018-02-13T00:28:34.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ultimatemonica.free.fr and last: Wikipedia:Articles for deletion/Mercia Movement -[2018-02-13T00:28:35.013] [INFO] cheese - inserting 1000 documents. first: History of County Londonderry and last: Category:Gold mines in Kosovo -[2018-02-13T00:28:35.014] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:35.030] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:35.122] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:28:35.135] [INFO] cheese - inserting 1000 documents. first: Portal:Military history of Africa/Selected anniversaries/July 6 and last: Nepenthes angustifolia -[2018-02-13T00:28:35.214] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:35.265] [INFO] cheese - inserting 1000 documents. first: Coastal miterwort and last: West of the West -[2018-02-13T00:28:35.296] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:35.453] [INFO] cheese - inserting 1000 documents. first: Benedetto Pistrucci and last: Wikipedia:References -[2018-02-13T00:28:35.516] [INFO] cheese - inserting 1000 documents. first: Raicevic and last: Bhartiya Sarvekshan Sewa -[2018-02-13T00:28:35.520] [INFO] cheese - inserting 1000 documents. first: Category:Athletics (track and field) venues in Belgium and last: Category:1991–92 in Republic of Ireland football -[2018-02-13T00:28:35.562] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T00:28:35.572] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:28:35.580] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:35.597] [INFO] cheese - inserting 1000 documents. first: Klemm Kl.36 and last: Wrestling at the 2010 Commonwealth Games – Men's Greco-Roman 74 kg -[2018-02-13T00:28:35.625] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 287 and last: Harrington-Wilson 2 -[2018-02-13T00:28:35.661] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:35.677] [INFO] cheese - inserting 1000 documents. first: Template:2015 Pan American Games Argentina women's field hockey team roster and last: Many spotted Dichomeris Moth -[2018-02-13T00:28:35.701] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:28:35.736] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:35.763] [INFO] cheese - inserting 1000 documents. first: Borrowing (linguistics) and last: Nemo (American band) -[2018-02-13T00:28:35.807] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:28:35.984] [INFO] cheese - inserting 1000 documents. first: Negative effects of smoking and last: Madar, Nepal -[2018-02-13T00:28:36.044] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:28:36.164] [INFO] cheese - inserting 1000 documents. first: Chris Senn and last: List of mayors of Milan -[2018-02-13T00:28:36.180] [INFO] cheese - inserting 1000 documents. first: Many spotted dichomeris moth and last: Rakovica, Vozdovac -[2018-02-13T00:28:36.197] [INFO] cheese - inserting 1000 documents. first: Liz Tayler and last: Category:Office buildings completed in 1893 -[2018-02-13T00:28:36.205] [INFO] cheese - inserting 1000 documents. first: Wrestling at the 2010 Commonwealth Games – Men's Greco-Roman 84 kg and last: City Journal (Thrissur) -[2018-02-13T00:28:36.209] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:28:36.220] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:36.247] [INFO] cheese - inserting 1000 documents. first: Category:410 births and last: Genetically-modified crops -[2018-02-13T00:28:36.274] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:28:36.276] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:28:36.331] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:28:36.450] [INFO] cheese - inserting 1000 documents. first: Mahadewa Portaha and last: Men without Hats -[2018-02-13T00:28:36.502] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:28:36.611] [INFO] cheese - inserting 1000 documents. first: The Lovemaster (film) and last: Template:TV series based on Arthurian legends -[2018-02-13T00:28:36.623] [INFO] cheese - inserting 1000 documents. first: Helenium mexicanum and last: Filago rotundata -[2018-02-13T00:28:36.642] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:28:36.658] [INFO] cheese - inserting 1000 documents. first: Wellspring Academies and last: Jamie Wall -[2018-02-13T00:28:36.665] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:36.668] [INFO] cheese - inserting 1000 documents. first: Gaia and last: Terence O'Neill -[2018-02-13T00:28:36.695] [INFO] cheese - inserting 1000 documents. first: HMS Raven (1882) and last: List of settlements in Oregon -[2018-02-13T00:28:36.703] [INFO] cheese - inserting 1000 documents. first: Category:Grenada stubs and last: Ebba von Sydow -[2018-02-13T00:28:36.710] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:28:36.752] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:28:36.755] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T00:28:36.760] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:36.851] [INFO] cheese - inserting 1000 documents. first: Category:Murder in Barbados and last: Wendover Will -[2018-02-13T00:28:36.894] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:28:37.021] [INFO] cheese - inserting 1000 documents. first: 67th Texas Legislature and last: Kholus -[2018-02-13T00:28:37.028] [INFO] cheese - inserting 1000 documents. first: Murder of Martha Morrison and last: RU 23908 -[2018-02-13T00:28:37.084] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:28:37.093] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:28:37.152] [INFO] cheese - inserting 1000 documents. first: Brenden Benson and last: Andagaadu -[2018-02-13T00:28:37.158] [INFO] cheese - inserting 1000 documents. first: Lucia Anguissola and last: Ronald Allen Burdo -[2018-02-13T00:28:37.193] [INFO] cheese - inserting 1000 documents. first: Template:China Soccer Squad 2008 Summer Olympics and last: Template:IBAF World Rankings ref -[2018-02-13T00:28:37.205] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:37.243] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:37.267] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:28:37.347] [INFO] cheese - inserting 1000 documents. first: File:Racing Simulation 3.jpg and last: The Glen Campbell Collection (1962–1989) Gentle on My Mind -[2018-02-13T00:28:37.417] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:28:37.682] [INFO] cheese - inserting 1000 documents. first: Kholoos and last: Counterpoint (In the Nursery album) -[2018-02-13T00:28:37.799] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:28:37.841] [INFO] cheese - inserting 1000 documents. first: File:Corn Mo.jpg and last: James Thomas Bailey -[2018-02-13T00:28:37.867] [INFO] cheese - inserting 1000 documents. first: It (1927 film) and last: Leonard Peikoff -[2018-02-13T00:28:37.885] [INFO] cheese - inserting 1000 documents. first: File:My Soul to Take.jpg and last: Margherita Beriza -[2018-02-13T00:28:37.914] [INFO] cheese - inserting 1000 documents. first: Ronald Burdo and last: Mushroom Rock State Park -[2018-02-13T00:28:37.948] [INFO] cheese - inserting 1000 documents. first: Methodios of Thessaloniki and last: Wikipedia:WikiProject Spam/LinkReports/makemoneyonline.mx -[2018-02-13T00:28:37.953] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:28:38.015] [INFO] cheese - batch complete in: 1.26 secs -[2018-02-13T00:28:38.025] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:28:38.032] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:28:38.049] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:28:38.173] [INFO] cheese - inserting 1000 documents. first: 2-Dimethylaminoethylazide and last: Portal:Football in Germany/Selected biography/7 -[2018-02-13T00:28:38.238] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:28:38.352] [INFO] cheese - inserting 1000 documents. first: Jahloul Chico Bouchikhi and last: Category:2008 disestablishments in Wales -[2018-02-13T00:28:38.406] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:28:38.509] [INFO] cheese - inserting 1000 documents. first: Democrat Underground and last: Appleseed (disambiguation) -[2018-02-13T00:28:38.518] [INFO] cheese - inserting 1000 documents. first: Beriza and last: Bystré nad Topľou -[2018-02-13T00:28:38.580] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:38.593] [INFO] cheese - inserting 1000 documents. first: Category:1526 in the Spanish Empire and last: Moía Mane -[2018-02-13T00:28:38.598] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:28:38.659] [INFO] cheese - inserting 1000 documents. first: LNLS and last: Michael Massing -[2018-02-13T00:28:38.668] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:28:38.714] [INFO] cheese - inserting 1000 documents. first: Portal:Football in Germany/Selected biography/8 and last: San Jerónimo de Millapoa -[2018-02-13T00:28:38.752] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:28:38.761] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:28:38.775] [INFO] cheese - inserting 1000 documents. first: Category:2000 in Argentine television and last: Tolombeh-ye Seyyed Toghra -[2018-02-13T00:28:38.826] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:38.952] [INFO] cheese - inserting 1000 documents. first: Karanis and last: Dougco -[2018-02-13T00:28:38.995] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:39.053] [INFO] cheese - inserting 1000 documents. first: Faces (film) and last: Canada lynx -[2018-02-13T00:28:39.060] [INFO] cheese - inserting 1000 documents. first: Dina and Maerseveen Islands and last: Helly space -[2018-02-13T00:28:39.096] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:39.121] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T00:28:39.134] [INFO] cheese - inserting 1000 documents. first: Mikel Balenziaga and last: Gunnar Utterberg -[2018-02-13T00:28:39.141] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture of the day/December 1, 2005 and last: File:FC Indiana logo.jpg -[2018-02-13T00:28:39.161] [INFO] cheese - inserting 1000 documents. first: Dark age renaissance and last: Wikipedia:Sockpuppet investigations/Hammerharder -[2018-02-13T00:28:39.189] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:28:39.206] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:39.214] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:28:39.249] [INFO] cheese - inserting 1000 documents. first: Moia Mané and last: Wikipedia:Articles for deletion/History of tax resistance -[2018-02-13T00:28:39.322] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:28:39.428] [INFO] cheese - inserting 1000 documents. first: Julien Wartelle and last: Count Koopula -[2018-02-13T00:28:39.489] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:28:39.511] [INFO] cheese - inserting 1000 documents. first: Alfred Day and last: Asian Forum for Human Rights and Development -[2018-02-13T00:28:39.559] [INFO] cheese - inserting 1000 documents. first: Kenta Uchida and last: Georgia State University Library -[2018-02-13T00:28:39.564] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:39.609] [INFO] cheese - inserting 1000 documents. first: Scott Sherman (politician) and last: Category:1980 in American motorsport -[2018-02-13T00:28:39.657] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:28:39.674] [INFO] cheese - inserting 1000 documents. first: Category:People murdered in Tokyo and last: Scaleybark -[2018-02-13T00:28:39.695] [INFO] cheese - inserting 1000 documents. first: Antony Lane and last: Rug beater -[2018-02-13T00:28:39.700] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:28:39.750] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:28:39.837] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:28:40.026] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Bakakkaa and last: Burton, Cheshire -[2018-02-13T00:28:40.045] [INFO] cheese - inserting 1000 documents. first: Category:1979 in American motorsport and last: Louisiana State Highway 131 -[2018-02-13T00:28:40.094] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:28:40.108] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:40.130] [INFO] cheese - inserting 1000 documents. first: North Caucasian Emirate and last: Category:1890s establishments by country -[2018-02-13T00:28:40.176] [INFO] cheese - inserting 1000 documents. first: I-485/South Boulevard and last: Aspro-Ocio Group -[2018-02-13T00:28:40.183] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:28:40.232] [INFO] cheese - inserting 1000 documents. first: North African Cup Winners Cup and last: Flasks -[2018-02-13T00:28:40.253] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:28:40.257] [INFO] cheese - inserting 1000 documents. first: Canadian lynx and last: Black Sabbath (album) -[2018-02-13T00:28:40.298] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:28:40.349] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T00:28:40.456] [INFO] cheese - inserting 1000 documents. first: Gammarid amphipods and last: Bismarck Brown Y -[2018-02-13T00:28:40.528] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:28:40.640] [INFO] cheese - inserting 1000 documents. first: In Limbo (song) and last: Sudbrook House -[2018-02-13T00:28:40.685] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:28:40.689] [INFO] cheese - inserting 1000 documents. first: Football at the 1912 Summer Olympics – Consolation tournament and last: File:OLIVER111.jpeg -[2018-02-13T00:28:40.721] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/modeldads.co.uk and last: The Dark of the Moon -[2018-02-13T00:28:40.736] [INFO] cheese - inserting 1000 documents. first: Italo-Albanese Diocese of Piana degli Albanesi and last: Idiopoma doliaris -[2018-02-13T00:28:40.755] [INFO] cheese - inserting 1000 documents. first: Operation Magician and last: Template:POTD protected/2008-11-22 -[2018-02-13T00:28:40.763] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:28:40.782] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:28:40.789] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:28:40.839] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:28:40.982] [INFO] cheese - inserting 1000 documents. first: Marc Zoro and last: Riceland Foods -[2018-02-13T00:28:41.036] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:28:41.153] [INFO] cheese - inserting 1000 documents. first: Hawley smoot tariff and last: Michelle Hamer -[2018-02-13T00:28:41.195] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:41.232] [INFO] cheese - inserting 1000 documents. first: MT Stolt Valor and last: Art Students League of NY -[2018-02-13T00:28:41.269] [INFO] cheese - inserting 1000 documents. first: Category:Prisoners of war held by Italy and last: Iris stylosa -[2018-02-13T00:28:41.283] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:28:41.302] [INFO] cheese - inserting 1000 documents. first: 2009, The Year of Us and last: People's Agenda -[2018-02-13T00:28:41.359] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:28:41.391] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:28:41.435] [INFO] cheese - inserting 1000 documents. first: File:Malaysian Newsprint Industries logo.jpg and last: Kodumudi Magudeswarar temple -[2018-02-13T00:28:41.510] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:28:41.577] [INFO] cheese - inserting 1000 documents. first: Radio orienteering and last: Taka -[2018-02-13T00:28:41.640] [INFO] cheese - inserting 1000 documents. first: Wadsworth and last: Stacks -[2018-02-13T00:28:41.663] [INFO] cheese - inserting 1000 documents. first: List of accolades received by Milk and last: Category:Films directed by John Pasquin -[2018-02-13T00:28:41.689] [INFO] cheese - inserting 1000 documents. first: George "The Fairy Earl" FitzGerald, 16th Earl of Kildare and last: Template:User ANG -[2018-02-13T00:28:41.725] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:28:41.726] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:28:41.732] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:28:41.753] [INFO] cheese - inserting 1000 documents. first: Russian peasants and last: Dick Darby -[2018-02-13T00:28:41.804] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:28:41.835] [INFO] cheese - batch complete in: 1.486 secs -[2018-02-13T00:28:42.027] [INFO] cheese - inserting 1000 documents. first: Category:Thomas College people and last: Wikipedia:WikiProject Spam/LinkReports/emil.input.sk -[2018-02-13T00:28:42.139] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:28:42.278] [INFO] cheese - inserting 1000 documents. first: Shusaku and last: Trace inequalities -[2018-02-13T00:28:42.290] [INFO] cheese - inserting 1000 documents. first: Chandra Mahesh and last: Category:Theatres completed in 1603 -[2018-02-13T00:28:42.311] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:42.321] [INFO] cheese - inserting 1000 documents. first: Médina, Dakar and last: Mominul Haque -[2018-02-13T00:28:42.336] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:28:42.397] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:28:42.419] [INFO] cheese - inserting 1000 documents. first: Hetyefo and last: Rindermarktbrunnen -[2018-02-13T00:28:42.474] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:28:42.491] [INFO] cheese - inserting 1000 documents. first: Category:History of racism in the United States and last: Basic Neuroanatomy -[2018-02-13T00:28:42.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/emil.input.sk and last: List of reported extraterrestrial beings -[2018-02-13T00:28:42.585] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:28:42.627] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:28:42.754] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Disney articles of Unknown-importance and last: Category:1720s in the Viceroyalty of Peru -[2018-02-13T00:28:42.804] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:42.820] [INFO] cheese - inserting 1000 documents. first: Kompong Phluk and last: The Bay Area's News Station -[2018-02-13T00:28:42.855] [INFO] cheese - inserting 1000 documents. first: File:Across My Heart.jpg and last: Evhe -[2018-02-13T00:28:42.871] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:28:42.885] [INFO] cheese - inserting 1000 documents. first: John Waite (broadcaster) and last: Wikipedia:Files for deletion/2007 May 12 -[2018-02-13T00:28:42.924] [INFO] cheese - inserting 1000 documents. first: Félicien Rops and last: Motor Torpedo Boat PT-109 -[2018-02-13T00:28:42.924] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:28:42.943] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:28:43.000] [INFO] cheese - inserting 1000 documents. first: Cheney Racing and last: Wikipedia:WikiProject Spam/LinkReports/generouspeople.blogspot.com -[2018-02-13T00:28:43.021] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T00:28:43.060] [INFO] cheese - inserting 1000 documents. first: Madagascar Current and last: Wikipedia:Articles for deletion/5205 Izard Street -[2018-02-13T00:28:43.077] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:28:43.159] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:28:43.286] [INFO] cheese - inserting 1000 documents. first: Category:1740s in the Viceroyalty of Peru and last: Vanessa Yeung -[2018-02-13T00:28:43.311] [INFO] cheese - inserting 1000 documents. first: Young Broadcasting San Francisco and last: Ghoria gigantea -[2018-02-13T00:28:43.332] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:28:43.390] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:28:43.486] [INFO] cheese - inserting 1000 documents. first: List of Dallas Stars seasons and last: Paul Brydon -[2018-02-13T00:28:43.550] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:28:43.593] [INFO] cheese - inserting 1000 documents. first: Franzbrötchen and last: Oregon Senate Bill 100 (1973) -[2018-02-13T00:28:43.660] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:28:43.704] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/generouspeople.blogspot.com and last: Leo Diogenes -[2018-02-13T00:28:43.764] [INFO] cheese - inserting 1000 documents. first: Agylla gigas and last: Lashtaghan-e Pa'in va Bala -[2018-02-13T00:28:43.772] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:28:43.816] [INFO] cheese - inserting 1000 documents. first: Category:Tennis at the 2015 Summer Universiade and last: File:Marygold.png -[2018-02-13T00:28:43.831] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:43.888] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:28:43.992] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Website template and last: Template:Cathead naval ships of -[2018-02-13T00:28:44.008] [INFO] cheese - inserting 1000 documents. first: CBS Digital Media and last: Vasia Panagopoulou -[2018-02-13T00:28:44.063] [INFO] cheese - inserting 1000 documents. first: Template:Poland-poet-stub and last: Β¹ Mon -[2018-02-13T00:28:44.061] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:28:44.074] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:28:44.123] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:28:44.148] [INFO] cheese - inserting 1000 documents. first: Bibesco, Elizabeth and last: VW Corrado -[2018-02-13T00:28:44.189] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Multi-sport events articles and last: Yoshifumi -[2018-02-13T00:28:44.198] [INFO] cheese - inserting 1000 documents. first: Lord Alexander Russell, GCB and last: List of earthquakes in 1952 -[2018-02-13T00:28:44.219] [INFO] cheese - inserting 1000 documents. first: Lashtaghan-e Pain and last: Air Tractor AT-503A -[2018-02-13T00:28:44.226] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T00:28:44.230] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:28:44.232] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:44.286] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:28:44.515] [INFO] cheese - inserting 1000 documents. first: Boswell, Alexander and last: Adrián Palomares -[2018-02-13T00:28:44.549] [INFO] cheese - inserting 1000 documents. first: Seán Ryan (Irish fiddler) and last: Tayk -[2018-02-13T00:28:44.555] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:28:44.632] [INFO] cheese - inserting 1000 documents. first: Beta Monocerotis A and last: Te Pū Ao -[2018-02-13T00:28:44.637] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:28:44.705] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:28:44.715] [INFO] cheese - inserting 1000 documents. first: Kevin Anderson (Athletic Director) and last: Charlotte of Great Britain and Ireland -[2018-02-13T00:28:44.734] [INFO] cheese - inserting 1000 documents. first: Bumdelling Wildlife Sanctuary and last: Category:Egyptian sportsmen -[2018-02-13T00:28:44.775] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:28:44.779] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:44.790] [INFO] cheese - inserting 1000 documents. first: The Wizard of Oz in Concert and last: Ruff Ryders' First Lady -[2018-02-13T00:28:44.866] [INFO] cheese - inserting 1000 documents. first: Beige box and last: 12th September -[2018-02-13T00:28:44.867] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:28:44.909] [INFO] cheese - inserting 1000 documents. first: Divaricate navarretia and last: File:Nana's Party poster.jpg -[2018-02-13T00:28:44.930] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:28:44.984] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:45.152] [INFO] cheese - inserting 1000 documents. first: List of Sciences Po people and last: Battle of Marracuene -[2018-02-13T00:28:45.158] [INFO] cheese - inserting 1000 documents. first: History of the Saint Thomas Christian tradition and last: Wikipedia:Articles for deletion/Batman/Houdini: The Devil's Workshop -[2018-02-13T00:28:45.260] [INFO] cheese - inserting 1000 documents. first: Andrew Smyth and last: Ayumi Hamasaki Countdown Live 2009–2010 A: Future Classics -[2018-02-13T00:28:45.263] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:28:45.289] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:28:45.329] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:45.348] [INFO] cheese - inserting 1000 documents. first: Queen Charlotte of Hanover and last: Josip Ilicic -[2018-02-13T00:28:45.399] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:28:45.415] [INFO] cheese - inserting 1000 documents. first: Arhus Theatre and last: File:Monorail Station.jpg -[2018-02-13T00:28:45.439] [INFO] cheese - inserting 1000 documents. first: Broadley's Flat Lizard and last: Gutierrezia longipappa -[2018-02-13T00:28:45.471] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:28:45.518] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:28:45.700] [INFO] cheese - inserting 1000 documents. first: 2009 in Iraqi football and last: NLR crane tank -[2018-02-13T00:28:45.707] [INFO] cheese - inserting 1000 documents. first: September 12th and last: The Magic School Bus Gets Ants In It's Pants -[2018-02-13T00:28:45.707] [INFO] cheese - inserting 1000 documents. first: Bessemer Michigan and last: Aloa gangara -[2018-02-13T00:28:45.792] [INFO] cheese - inserting 1000 documents. first: Category:People from Owensboro, Kentucky and last: Tropical agriculture -[2018-02-13T00:28:45.797] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:28:45.833] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:28:45.840] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:28:45.882] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:28:45.908] [INFO] cheese - inserting 1000 documents. first: I rymden finns inga känslor and last: File:Grand-eastbourne.jpg -[2018-02-13T00:28:46.005] [INFO] cheese - inserting 1000 documents. first: Dimitrie Neculuta and last: Murman -[2018-02-13T00:28:46.029] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:28:46.090] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:28:46.095] [INFO] cheese - inserting 1000 documents. first: Jacques Tetreault and last: File:Haka2.png -[2018-02-13T00:28:46.169] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:28:46.361] [INFO] cheese - inserting 1000 documents. first: Residential colleges of Rice University and last: Stein Ringen -[2018-02-13T00:28:46.403] [INFO] cheese - inserting 1000 documents. first: Lisa Says and last: Russian Venezuelan -[2018-02-13T00:28:46.423] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:46.429] [INFO] cheese - inserting 1000 documents. first: Category:Government buildings completed in 1838 and last: Titlagarh Junction -[2018-02-13T00:28:46.450] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:28:46.459] [INFO] cheese - inserting 1000 documents. first: Colum Cille mac Fedelmtheo and last: Roger Yang -[2018-02-13T00:28:46.486] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:28:46.534] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:28:46.558] [INFO] cheese - inserting 1000 documents. first: Lock and Key Party and last: Category:Large burghs -[2018-02-13T00:28:46.634] [INFO] cheese - inserting 1000 documents. first: Ñegro and last: File:Melbournegrammarcrest.jpg -[2018-02-13T00:28:46.650] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:28:46.694] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:46.797] [INFO] cheese - inserting 1000 documents. first: Category:1515 establishments in Spain and last: Heiliger Forest -[2018-02-13T00:28:46.831] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:28:46.876] [INFO] cheese - inserting 1000 documents. first: Public welfare in Puerto Rico and last: Scenes From An Execution -[2018-02-13T00:28:46.879] [INFO] cheese - inserting 1000 documents. first: MT USA and last: William III of Toulouse -[2018-02-13T00:28:46.888] [INFO] cheese - inserting 1000 documents. first: Music of Venezuela and last: Unitary representation -[2018-02-13T00:28:46.913] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:28:46.922] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:28:46.936] [INFO] cheese - inserting 1000 documents. first: File:Roxie Hart - 1942 - Poster.png and last: Fixed set -[2018-02-13T00:28:47.000] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T00:28:47.039] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:28:47.113] [INFO] cheese - inserting 1000 documents. first: Exit (unix) and last: Ackersdijk -[2018-02-13T00:28:47.160] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:47.193] [INFO] cheese - inserting 1000 documents. first: Single-sided/double-sided and last: Vasocontrictor -[2018-02-13T00:28:47.255] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:28:47.306] [INFO] cheese - inserting 1000 documents. first: File:Atom -- An Odyssey from the Big Bang to Life on Earth -- book cover.jpg and last: Alien Nation (album) -[2018-02-13T00:28:47.346] [INFO] cheese - inserting 1000 documents. first: File:Bill Carson.jpg and last: Devil's Castle Dracula X: Rondo of Blood -[2018-02-13T00:28:47.355] [INFO] cheese - inserting 1000 documents. first: Attractive fixed set and last: Mount K'lamm -[2018-02-13T00:28:47.345] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:47.405] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:28:47.410] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:28:47.419] [INFO] cheese - inserting 1000 documents. first: KAMEWA and last: Lorenzo Valla's Dialogue on Free Will -[2018-02-13T00:28:47.463] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:47.707] [INFO] cheese - inserting 1000 documents. first: Political positions of Carly Fiorina and last: Nuno Santos (footballer born 1980) -[2018-02-13T00:28:47.730] [INFO] cheese - inserting 1000 documents. first: Ollywood films of 1973 and last: Category:1976 in Spanish motorsport -[2018-02-13T00:28:47.732] [INFO] cheese - inserting 1000 documents. first: Moss Bros. Group and last: Wikipedia:Articles for deletion/Log/2008 November 24 -[2018-02-13T00:28:47.743] [INFO] cheese - inserting 1000 documents. first: SpongeBob Home Video and last: Capital gains tax in Australia -[2018-02-13T00:28:47.751] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:28:47.768] [INFO] cheese - inserting 1000 documents. first: Template:Duchesses of Orléans and last: Category:Buffalo Sabres logos -[2018-02-13T00:28:47.796] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:28:47.806] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:47.813] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:28:47.842] [INFO] cheese - inserting 1000 documents. first: William Weare and last: Wikipedia:Non-free content review/Archive 1 -[2018-02-13T00:28:47.855] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:47.924] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:28:47.987] [INFO] cheese - inserting 1000 documents. first: Easily recognizable code and last: Peter–Weyl theorem -[2018-02-13T00:28:48.061] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T00:28:48.142] [INFO] cheese - inserting 1000 documents. first: Category:1966 in Taiwanese sport and last: Category:1252 in the Holy Roman Empire -[2018-02-13T00:28:48.176] [INFO] cheese - inserting 1000 documents. first: Gorna Vasilitsa and last: New Town Eco Park -[2018-02-13T00:28:48.210] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:48.224] [INFO] cheese - inserting 1000 documents. first: From the Beggar's Mantle and last: Yeaw v. Boy Scouts of America -[2018-02-13T00:28:48.242] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:28:48.280] [INFO] cheese - inserting 1000 documents. first: Dr. Prof. Anatoly Nikolayevich Perminov and last: Gilla Isa Mac Fir Bisigh -[2018-02-13T00:28:48.284] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:28:48.304] [INFO] cheese - inserting 1000 documents. first: RAF Exeter and last: NYUDL -[2018-02-13T00:28:48.328] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:48.350] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:28:48.419] [INFO] cheese - inserting 1000 documents. first: Rose Gamgee and last: Category:Ferroalloys -[2018-02-13T00:28:48.510] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:28:48.651] [INFO] cheese - inserting 1000 documents. first: Category:1258 in the Holy Roman Empire and last: Koot (disambiguation) -[2018-02-13T00:28:48.656] [INFO] cheese - inserting 1000 documents. first: File:Let's Do Christmas with Gino and Mel.png and last: File:Homer and Ruth Drake Field House.jpg -[2018-02-13T00:28:48.694] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:48.700] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:48.773] [INFO] cheese - inserting 1000 documents. first: The Emerald Forest (film) and last: Neil Reidman -[2018-02-13T00:28:48.817] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:48.833] [INFO] cheese - inserting 1000 documents. first: Hellinsia carphodactyla and last: 1950–51 Ashes series -[2018-02-13T00:28:48.878] [INFO] cheese - inserting 1000 documents. first: Punctate flower chafer and last: Darshan -[2018-02-13T00:28:48.878] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:48.930] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:28:49.049] [INFO] cheese - inserting 1000 documents. first: Kermit-Tipton Stadium and last: Royal Town of Sutton Coldfield -[2018-02-13T00:28:49.070] [INFO] cheese - inserting 1000 documents. first: Diesel and dust and last: Arrondissement of Les Sables-d'Olonne -[2018-02-13T00:28:49.086] [INFO] cheese - inserting 1000 documents. first: Ashkan, Minab and last: 2012 Aceh Governor Cup -[2018-02-13T00:28:49.090] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:28:49.130] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:28:49.136] [INFO] cheese - inserting 1000 documents. first: Anthony Van Dyck and last: Mike Levey -[2018-02-13T00:28:49.138] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:28:49.159] [INFO] cheese - inserting 1000 documents. first: Baise Bichawa and last: Lo Zoo di 105 -[2018-02-13T00:28:49.199] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:28:49.208] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:28:49.311] [INFO] cheese - inserting 1000 documents. first: Maheswaram and last: Ludi Juvenales -[2018-02-13T00:28:49.329] [INFO] cheese - inserting 1000 documents. first: Bairi Sawai and last: Max Whitlock -[2018-02-13T00:28:49.358] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:28:49.378] [INFO] cheese - inserting 1000 documents. first: Lohman (disambiguation) and last: Nzau Namsan -[2018-02-13T00:28:49.379] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:28:49.419] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:28:49.542] [INFO] cheese - inserting 1000 documents. first: Category:1986 establishments in Uganda and last: US biological warfare program -[2018-02-13T00:28:49.577] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:49.653] [INFO] cheese - inserting 1000 documents. first: File:Linger in shadows ps3 cover.png and last: Photogramme -[2018-02-13T00:28:49.686] [INFO] cheese - inserting 1000 documents. first: Kupriyanov Island and last: Renown (German Barque) -[2018-02-13T00:28:49.699] [INFO] cheese - inserting 1000 documents. first: Input/output processing and last: Happy Holiday(s) -[2018-02-13T00:28:49.706] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:28:49.766] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:49.802] [INFO] cheese - inserting 1000 documents. first: Stuart Uhlmann and last: Dyschirius kadleci -[2018-02-13T00:28:49.869] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:28:49.877] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:49.913] [INFO] cheese - inserting 1000 documents. first: Nyumba ya Sanaa and last: Portal:LGBT/Selected anniversaries/8 -[2018-02-13T00:28:49.950] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:28:50.116] [INFO] cheese - inserting 1000 documents. first: Hohes Venn – Eifel Nature Park and last: Mis Kan -[2018-02-13T00:28:50.134] [INFO] cheese - inserting 1000 documents. first: Methoxyethane and last: Ti Grace -[2018-02-13T00:28:50.153] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:28:50.165] [INFO] cheese - inserting 1000 documents. first: File:Xenosaga Episode II - Jenseits von Gut und Bose Coverart.png and last: 2006 Rhythmic Gymnastics European Championships -[2018-02-13T00:28:50.166] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:28:50.169] [INFO] cheese - inserting 1000 documents. first: Dyschirius ruthmuellerae and last: Hieracium absonum -[2018-02-13T00:28:50.212] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:28:50.249] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:28:50.259] [INFO] cheese - inserting 1000 documents. first: Raphael Semmes and last: Marc Rich -[2018-02-13T00:28:50.330] [INFO] cheese - inserting 1000 documents. first: Academic Association of Coimbra and last: David Sherman -[2018-02-13T00:28:50.337] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T00:28:50.345] [INFO] cheese - inserting 1000 documents. first: Diospyros whyteana and last: Juliet Doesn't Live Here Anymore -[2018-02-13T00:28:50.386] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:28:50.410] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:28:50.521] [INFO] cheese - inserting 1000 documents. first: Hieracium chapacanum and last: Hearn, John -[2018-02-13T00:28:50.556] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:28:50.571] [INFO] cheese - inserting 1000 documents. first: Pulad-e Qasemi and last: Category:2005 establishments in Armenia -[2018-02-13T00:28:50.638] [INFO] cheese - inserting 1000 documents. first: Émily de Châtelet and last: Revy -[2018-02-13T00:28:50.644] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:28:50.657] [INFO] cheese - inserting 1000 documents. first: Manoj Hemaratne and last: Thomassen -[2018-02-13T00:28:50.694] [INFO] cheese - inserting 1000 documents. first: North Dakota College Athletic Conference and last: Wikipedia:Articles for deletion/Criticism of Nortel -[2018-02-13T00:28:50.705] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:50.709] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:50.763] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:50.780] [INFO] cheese - inserting 1000 documents. first: Loricariichthys rostratus and last: +x (Martin Garrix album) -[2018-02-13T00:28:50.820] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:28:50.979] [INFO] cheese - inserting 1000 documents. first: Takehito and last: Hajji Khadem -[2018-02-13T00:28:51.003] [INFO] cheese - inserting 1000 documents. first: All Nippon Airways Flight 58 and last: Zettafarad -[2018-02-13T00:28:51.041] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:51.087] [INFO] cheese - inserting 1000 documents. first: Daniel Joseph Daly and last: 2009 Pickup Truck Racing season -[2018-02-13T00:28:51.104] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:51.165] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:28:51.213] [INFO] cheese - inserting 1000 documents. first: Hindle Wakes (1952 film) and last: Wikipedia:WikiProject Spam/LinkReports/rochesterway.com -[2018-02-13T00:28:51.214] [INFO] cheese - inserting 1000 documents. first: Riverside Historic District (Evansville, Indiana) and last: Template:Lago d'Idro -[2018-02-13T00:28:51.222] [INFO] cheese - inserting 1000 documents. first: Daniel Ziegler and last: Captain Cook -[2018-02-13T00:28:51.224] [INFO] cheese - inserting 1000 documents. first: Template:Women's Volleyball World Championship winners and last: Wikipedia:WikiProject Spam/LinkReports/thai-buddha-amulets.com -[2018-02-13T00:28:51.264] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:51.263] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:28:51.290] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:28:51.323] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T00:28:51.420] [INFO] cheese - inserting 1000 documents. first: Mahreghan and last: Tombu Shomali -[2018-02-13T00:28:51.460] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:28:51.600] [INFO] cheese - inserting 1000 documents. first: Taney Place and last: Carbon-based fuel -[2018-02-13T00:28:51.611] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SPP and last: James Potter -[2018-02-13T00:28:51.656] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:28:51.672] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:28:51.695] [INFO] cheese - inserting 1000 documents. first: Category:13th century BC in India and last: The Stoom Stichting Nederland -[2018-02-13T00:28:51.722] [INFO] cheese - inserting 1000 documents. first: Margaret Wild and last: 2008 Bucharest Summit -[2018-02-13T00:28:51.745] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:51.789] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:51.793] [INFO] cheese - inserting 1000 documents. first: Category:21st-century establishments in Spain and last: Charles H. Williams -[2018-02-13T00:28:51.848] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:51.885] [INFO] cheese - inserting 1000 documents. first: Tombu Shemali and last: File:Alliance Review logo.png -[2018-02-13T00:28:51.933] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:52.095] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2008-11-27 and last: Wikipedia:WikiProject Spam/LinkReports/pontaven.org -[2018-02-13T00:28:52.135] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:28:52.180] [INFO] cheese - inserting 1000 documents. first: Category:2009 establishments in Montserrat and last: List of Women's National Basketball Association career steals leaders -[2018-02-13T00:28:52.192] [INFO] cheese - inserting 1000 documents. first: Joseph Ujlaki and last: Lex Poetelia Papiria -[2018-02-13T00:28:52.202] [INFO] cheese - inserting 1000 documents. first: Warren's, Vermont and last: Israel Israeli -[2018-02-13T00:28:52.214] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:28:52.222] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:28:52.234] [INFO] cheese - inserting 1000 documents. first: Psychological projection and last: Bai Chongxi -[2018-02-13T00:28:52.238] [INFO] cheese - inserting 1000 documents. first: Portal:Austria/Selected article/4 and last: Category:1964 establishments in Australia -[2018-02-13T00:28:52.239] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:52.283] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:28:52.290] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:28:52.325] [INFO] cheese - inserting 1000 documents. first: Elm Guest House claims and controversy and last: Tetsuharu -[2018-02-13T00:28:52.354] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:28:52.434] [INFO] cheese - inserting 1000 documents. first: File:BritanniaScan1.jpg and last: Template:1999 WNBA Western Conference standings -[2018-02-13T00:28:52.482] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:28:52.508] [INFO] cheese - inserting 1000 documents. first: Rabbit, Not Rabbot and last: Category:1st-century BC theatre -[2018-02-13T00:28:52.521] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chris Kangas and last: Freaky (song) -[2018-02-13T00:28:52.542] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:28:52.571] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:28:52.609] [INFO] cheese - inserting 1000 documents. first: Lauri Harjola and last: Cizeta-Moroder V16T -[2018-02-13T00:28:52.642] [INFO] cheese - inserting 1000 documents. first: Category:1963 establishments in Australia and last: Category:1840s conflicts -[2018-02-13T00:28:52.662] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:52.684] [INFO] cheese - inserting 1000 documents. first: All My Life (Irving Berlin song) and last: Category:1931 establishments in Montenegro -[2018-02-13T00:28:52.697] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:28:52.728] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:28:52.781] [INFO] cheese - inserting 1000 documents. first: John G. Simcoe and last: Basement apartment -[2018-02-13T00:28:52.835] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:28:52.884] [INFO] cheese - inserting 1000 documents. first: PA 44 and last: South Omaha Main Street Historic District -[2018-02-13T00:28:52.884] [INFO] cheese - inserting 1000 documents. first: Ground-based telescope and last: Ardozyga voluta -[2018-02-13T00:28:52.924] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:28:52.925] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:28:53.081] [INFO] cheese - inserting 1000 documents. first: Koushi Rikudou and last: Fort Duncan -[2018-02-13T00:28:53.098] [INFO] cheese - inserting 1000 documents. first: John rothchild and last: Order of Wen the Eternally Surprised -[2018-02-13T00:28:53.150] [INFO] cheese - inserting 1000 documents. first: Union Carbide and last: Floris V, Count of Holland -[2018-02-13T00:28:53.174] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:28:53.216] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:28:53.223] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Abby Martin and last: Marhun, Rudkhaneh -[2018-02-13T00:28:53.247] [INFO] cheese - inserting 1000 documents. first: Court-Martial Appeal Court and last: 69th Reconnaissance Group -[2018-02-13T00:28:53.279] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:28:53.291] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:28:53.303] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:53.358] [INFO] cheese - inserting 1000 documents. first: Ardozyga xanthocephala and last: Category:LGBT journalists from South Africa -[2018-02-13T00:28:53.367] [INFO] cheese - inserting 1000 documents. first: Boris Mikhailovich Kustodiev and last: Iur'yev-Polskiy District -[2018-02-13T00:28:53.405] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:28:53.413] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:28:53.586] [INFO] cheese - inserting 1000 documents. first: Port 25565 and last: File:H&a romances.jpg -[2018-02-13T00:28:53.627] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:28:53.649] [INFO] cheese - inserting 1000 documents. first: Category:Scottish fiddlers and last: Wikipedia:Articles for deletion/Girafa 2 -[2018-02-13T00:28:53.657] [INFO] cheese - inserting 1000 documents. first: Third Stanhope Ministry and last: Solidarity (social sciences) -[2018-02-13T00:28:53.684] [INFO] cheese - inserting 1000 documents. first: Marhun, Rudan and last: Template:Muhan Dojeon -[2018-02-13T00:28:53.691] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:28:53.708] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:28:53.739] [INFO] cheese - inserting 1000 documents. first: Leader (movie) and last: Chōjūgiga -[2018-02-13T00:28:53.739] [INFO] cheese - inserting 1000 documents. first: File:Genes Reunited.png and last: Seth C. Bradford -[2018-02-13T00:28:53.766] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:28:53.769] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:28:53.772] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:28:53.990] [INFO] cheese - inserting 1000 documents. first: Solidarity (social science) and last: Wikipedia:Articles for deletion/Ryebender -[2018-02-13T00:28:54.024] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:28:54.059] [INFO] cheese - inserting 1000 documents. first: Home and Away: Romances and last: Complete Segal space -[2018-02-13T00:28:54.062] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Max Perlman and last: File:American Atheist magazine cover.png -[2018-02-13T00:28:54.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rory Lindsay and last: Category:English cheeses -[2018-02-13T00:28:54.101] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:28:54.103] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:28:54.128] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:54.133] [INFO] cheese - inserting 1000 documents. first: Second Siege of Warsaw (1794) and last: The secret party -[2018-02-13T00:28:54.153] [INFO] cheese - inserting 1000 documents. first: Froggie went Courting and last: Alice Isen -[2018-02-13T00:28:54.172] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:28:54.192] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:54.215] [INFO] cheese - inserting 1000 documents. first: Neon lamp and last: New Jersey Route 179 -[2018-02-13T00:28:54.400] [INFO] cheese - inserting 1000 documents. first: HMP Kennet and last: Dallas Bradshaw -[2018-02-13T00:28:54.414] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T00:28:54.416] [INFO] cheese - inserting 1000 documents. first: Category:1640s establishments in the Swedish colonial empire and last: Cyclone Raquel -[2018-02-13T00:28:54.456] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:28:54.459] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:54.537] [INFO] cheese - inserting 1000 documents. first: Category:Fairs in Germany and last: Fort Gary - Fort Edmonton Trail -[2018-02-13T00:28:54.587] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:54.601] [INFO] cheese - inserting 1000 documents. first: Category:Thessalian mythology and last: 1982 Fed Cup -[2018-02-13T00:28:54.613] [INFO] cheese - inserting 1000 documents. first: Category:Battleships by country and last: Anek Ngernmool -[2018-02-13T00:28:54.679] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:28:54.687] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:54.743] [INFO] cheese - inserting 1000 documents. first: Ensemble Theatre Cincinnati and last: James Carpenter (actor) -[2018-02-13T00:28:54.795] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:28:54.811] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Geology articles and last: Thomas Acquinas -[2018-02-13T00:28:54.856] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:54.948] [INFO] cheese - inserting 1000 documents. first: Minolta AF 35mm F1.4 G "New" and last: James Clifford Timlin -[2018-02-13T00:28:54.971] [INFO] cheese - inserting 1000 documents. first: Joseph Asher and last: Chaudas Aigas -[2018-02-13T00:28:54.986] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:55.008] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:55.008] [INFO] cheese - inserting 1000 documents. first: Here Comes the Night (disambiguation) and last: Who is Guru Maharaj Ji? -[2018-02-13T00:28:55.060] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:28:55.175] [INFO] cheese - inserting 1000 documents. first: Rainbow Room and last: Brizlincote -[2018-02-13T00:28:55.197] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Newtown, Connecticut and last: File:Luke Srama.jpg -[2018-02-13T00:28:55.227] [INFO] cheese - inserting 1000 documents. first: Category:Politicians of the Holy Roman Empire and last: The Misadventure of Zoo -[2018-02-13T00:28:55.227] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:55.239] [INFO] cheese - inserting 1000 documents. first: County Route 583 (New Jersey) and last: Ebla -[2018-02-13T00:28:55.242] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:55.275] [INFO] cheese - inserting 1000 documents. first: Vlatko Kostov and last: A. H. M. Azwer -[2018-02-13T00:28:55.274] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:28:55.305] [INFO] cheese - inserting 1000 documents. first: E-Wall and last: James Augustine Cunneen -[2018-02-13T00:28:55.306] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:28:55.314] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:28:55.355] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:28:55.358] [INFO] cheese - inserting 1000 documents. first: Tyler-Jacksonville, Texas CSA and last: File:False Mirrors cover.jpg -[2018-02-13T00:28:55.416] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:28:55.728] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/Foo Fighters discography and last: Chinatown, Atlanta -[2018-02-13T00:28:55.736] [INFO] cheese - inserting 1000 documents. first: Chen style and last: Template:Penthouse Pets of 2009 -[2018-02-13T00:28:55.744] [INFO] cheese - inserting 1000 documents. first: File:Aropa records logo.svg and last: Category:People from Picardy -[2018-02-13T00:28:55.748] [INFO] cheese - inserting 1000 documents. first: Draft:Black and White and Dead All Over (film) and last: The Association for Clinical Biochemistry and Laboratory Medicine -[2018-02-13T00:28:55.771] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:28:55.786] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:55.798] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:28:55.815] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:28:55.816] [INFO] cheese - inserting 1000 documents. first: Moor Fountain and last: Category:Paraguayan cuisine -[2018-02-13T00:28:55.866] [INFO] cheese - inserting 1000 documents. first: Petrivente and last: Vaseline (Brand) -[2018-02-13T00:28:55.909] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:55.911] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:28:56.084] [INFO] cheese - inserting 1000 documents. first: Category:Sports governing bodies in Australia by state or territory and last: Portal:Children's and young adult literature/Selected quote/Archive -[2018-02-13T00:28:56.115] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:28:56.132] [INFO] cheese - inserting 1000 documents. first: Calothamnus formosus and last: Dungariya -[2018-02-13T00:28:56.136] [INFO] cheese - inserting 1000 documents. first: Fiat A.22 R and last: Colton Smith -[2018-02-13T00:28:56.170] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:28:56.171] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:28:56.204] [INFO] cheese - inserting 1000 documents. first: Decimal digit and last: William J. Janklow -[2018-02-13T00:28:56.246] [INFO] cheese - inserting 1000 documents. first: Corrimal High School and last: 19th Light Dragoons -[2018-02-13T00:28:56.293] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:56.322] [INFO] cheese - inserting 1000 documents. first: Category:11Water members and last: Pisidium nitidum -[2018-02-13T00:28:56.326] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:28:56.371] [INFO] cheese - inserting 1000 documents. first: Portal:Children's and young adult literature/Selected quote/Layout and last: Kharan Rifles -[2018-02-13T00:28:56.380] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:28:56.392] [INFO] cheese - inserting 1000 documents. first: GIDS and last: The Lakes of Pontchartrain -[2018-02-13T00:28:56.414] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:28:56.456] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:56.494] [INFO] cheese - inserting 1000 documents. first: Template:Ethnic groups of Ghana and last: Eupogonius albipilis -[2018-02-13T00:28:56.533] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:28:56.589] [INFO] cheese - inserting 1000 documents. first: Category:Asian-American culture in New Jersey and last: Category:Locomotives of Mexico -[2018-02-13T00:28:56.638] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:56.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/uggboot-sale.com and last: Tar-mairon -[2018-02-13T00:28:56.710] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:28:56.732] [INFO] cheese - inserting 1000 documents. first: Vladimir Grigorevich Boltyansky and last: Anzali Mordab -[2018-02-13T00:28:56.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Setanta747/temptest and last: Bird-banding -[2018-02-13T00:28:56.792] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:28:56.847] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:56.861] [INFO] cheese - inserting 1000 documents. first: Sam West and last: Wikipedia:Articles for deletion/Fizzlethorpe Bristlebane -[2018-02-13T00:28:56.907] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:56.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nikil Murugan and last: Hoplorana fuscovestita -[2018-02-13T00:28:56.952] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:28:57.002] [INFO] cheese - inserting 1000 documents. first: Spit It Out (disambiguation) and last: Royal Photographic Society of Great Britain -[2018-02-13T00:28:57.051] [INFO] cheese - inserting 1000 documents. first: Alexandre Guedes and last: Daniel E. Bandmann -[2018-02-13T00:28:57.051] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:28:57.097] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:28:57.166] [INFO] cheese - inserting 1000 documents. first: L. Michael White and last: Josephus L. Mavretic -[2018-02-13T00:28:57.211] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:28:57.228] [INFO] cheese - inserting 1000 documents. first: Give it Up Or Turnit A Loose and last: Monteith (surname) -[2018-02-13T00:28:57.229] [INFO] cheese - inserting 1000 documents. first: Code name and last: Hugh McCalmont Cairns, 1st Earl of Cairns -[2018-02-13T00:28:57.280] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:28:57.301] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:28:57.363] [INFO] cheese - inserting 1000 documents. first: Gibberd and last: No Present Like Time -[2018-02-13T00:28:57.412] [INFO] cheese - inserting 1000 documents. first: Selective Service Administration and last: Wikipedia:Articles for deletion/List of programs broadcast by Game Show Network -[2018-02-13T00:28:57.417] [INFO] cheese - inserting 1000 documents. first: Hoplorana mussardi and last: John P. Hand -[2018-02-13T00:28:57.420] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Ritchie County, West Virginia and last: The Wedding at Cana (Veronese) -[2018-02-13T00:28:57.429] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:28:57.470] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:28:57.469] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:57.506] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:57.569] [INFO] cheese - inserting 1000 documents. first: Province Island and last: Austro-Hungarian Unterseeboot XXI -[2018-02-13T00:28:57.620] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:57.687] [INFO] cheese - inserting 1000 documents. first: Imp dehydrogenase and last: James Van Heusen -[2018-02-13T00:28:57.741] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:28:57.806] [INFO] cheese - inserting 1000 documents. first: Spiral (spaceplane) and last: Anthony Clement -[2018-02-13T00:28:57.872] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:28:57.880] [INFO] cheese - inserting 1000 documents. first: Santos (company) and last: Wikipedia:Articles for deletion/Quirkyalone (2nd nomination) -[2018-02-13T00:28:57.888] [INFO] cheese - inserting 1000 documents. first: J. Wesley Graham and last: Öchse -[2018-02-13T00:28:57.904] [INFO] cheese - inserting 1000 documents. first: Barrabus the Grey and last: American Samoan constitutional referendum, 2010 -[2018-02-13T00:28:57.928] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:57.936] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:57.952] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:28:57.966] [INFO] cheese - inserting 1000 documents. first: SM Unterseeboot 21 (Austria-Hungary) and last: Tujani Castle -[2018-02-13T00:28:58.010] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:28:58.178] [INFO] cheese - inserting 1000 documents. first: Eastleigh Borough Council election, 1998 and last: Lorie Skjerven Gildea -[2018-02-13T00:28:58.179] [INFO] cheese - inserting 1000 documents. first: Lord Cairns and last: Ellesmere Port -[2018-02-13T00:28:58.180] [INFO] cheese - inserting 1000 documents. first: Lubbock police department and last: Bruthers of Different Muthers -[2018-02-13T00:28:58.204] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:28:58.211] [INFO] cheese - inserting 1000 documents. first: Cassop-cum-quarrington and last: Sancai Tuhui -[2018-02-13T00:28:58.217] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:28:58.224] [INFO] cheese - inserting 1000 documents. first: 1310News and last: Astronomy of the Soviet Union -[2018-02-13T00:28:58.247] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T00:28:58.255] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:28:58.269] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:28:58.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topics/Petropavlovsk-class battleships and last: Lamina choroidocapillaris -[2018-02-13T00:28:58.333] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:28:58.342] [INFO] cheese - inserting 1000 documents. first: Numular dermatitis and last: Saint Paul Manor Apartments -[2018-02-13T00:28:58.391] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:28:58.452] [INFO] cheese - inserting 1000 documents. first: Linguals and last: Category:Lithuanian human rights activists -[2018-02-13T00:28:58.466] [INFO] cheese - inserting 1000 documents. first: Edouard Schmit and last: Russian philology -[2018-02-13T00:28:58.480] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:28:58.496] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:28:58.610] [INFO] cheese - inserting 1000 documents. first: Category:Arts centres in South Korea and last: Spes phthisica -[2018-02-13T00:28:58.657] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:58.661] [INFO] cheese - inserting 1000 documents. first: In Your Own Sweet Way and last: File:Ameno-by-dj-quicksilver.jpg -[2018-02-13T00:28:58.669] [INFO] cheese - inserting 1000 documents. first: File:KXAN-TV.png and last: Category:Imagination -[2018-02-13T00:28:58.716] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:28:58.720] [INFO] cheese - inserting 1000 documents. first: Atmospheres (unit) and last: Portal:Tropical cyclones/Featured article/Tropical Storm Zeta (2005) -[2018-02-13T00:28:58.723] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:28:58.746] [INFO] cheese - inserting 1000 documents. first: Soviet philology and last: Himno de Aguascalientes -[2018-02-13T00:28:58.768] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:58.771] [INFO] cheese - inserting 1000 documents. first: Marine Park Station and last: Gleichberge -[2018-02-13T00:28:58.794] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:28:58.838] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:28:59.146] [INFO] cheese - inserting 1000 documents. first: Pritilata Waddedar and last: Wikipedia:Articles for deletion/Kiara Belen -[2018-02-13T00:28:59.163] [INFO] cheese - inserting 1000 documents. first: File system in userspace and last: Monument (Ultravox album) -[2018-02-13T00:28:59.189] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:59.217] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:59.222] [INFO] cheese - inserting 1000 documents. first: Nisqually and last: Daito Bunka University -[2018-02-13T00:28:59.292] [INFO] cheese - inserting 1000 documents. first: Union of the Parliaments and last: Strathallan -[2018-02-13T00:28:59.296] [INFO] cheese - inserting 1000 documents. first: Anthem of Aguascalientes and last: Chop blocking -[2018-02-13T00:28:59.300] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T00:28:59.315] [INFO] cheese - inserting 1000 documents. first: Category:1989 in luge and last: Solomon Nunes Carvalho -[2018-02-13T00:28:59.315] [INFO] cheese - inserting 1000 documents. first: Portal:Tropical cyclones/Featured article/2008-53 and last: Template:Ladakh -[2018-02-13T00:28:59.365] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:28:59.360] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:28:59.394] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:59.419] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:28:59.608] [INFO] cheese - inserting 1000 documents. first: Kamyshlinski and last: Help:Reset password -[2018-02-13T00:28:59.628] [INFO] cheese - inserting 1000 documents. first: Süper star and last: Makryotika -[2018-02-13T00:28:59.642] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:59.681] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:28:59.755] [INFO] cheese - inserting 1000 documents. first: File:DK fredsprismedal.png and last: List of engineers of Russia -[2018-02-13T00:28:59.795] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:59.825] [INFO] cheese - inserting 1000 documents. first: Nicolas Hytner and last: Cybershot DSC-HX50 -[2018-02-13T00:28:59.840] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To know and last: Category:Warren G. Harding -[2018-02-13T00:28:59.866] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:59.879] [INFO] cheese - inserting 1000 documents. first: Charnley River and last: Portal:Wisconsin/DYK/6 -[2018-02-13T00:28:59.888] [INFO] cheese - inserting 1000 documents. first: Roxburgh Lake and last: Bisset, Edmonton -[2018-02-13T00:28:59.913] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:59.942] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:28:59.954] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:29:00.018] [INFO] cheese - inserting 1000 documents. first: Les Subsistances and last: Category:Protected areas of Rutland County, Vermont -[2018-02-13T00:29:00.020] [INFO] cheese - inserting 1000 documents. first: Raveh, Markazi and last: Nakasako -[2018-02-13T00:29:00.059] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:29:00.069] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:29:00.160] [INFO] cheese - inserting 1000 documents. first: Cybershot HX50 and last: Category:1229 in Asia -[2018-02-13T00:29:00.241] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:29:00.275] [INFO] cheese - inserting 1000 documents. first: Washington State Route 92 and last: Headies -[2018-02-13T00:29:00.295] [INFO] cheese - inserting 1000 documents. first: SAME (protocol) and last: Martin Short -[2018-02-13T00:29:00.317] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:29:00.360] [INFO] cheese - inserting 1000 documents. first: Paulinho (footballer, born August 1983) and last: Dooleys (Album) -[2018-02-13T00:29:00.374] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Rutland County, Vermont and last: Diving at the 2010 Asian Games -[2018-02-13T00:29:00.368] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:29:00.409] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:29:00.423] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:29:00.457] [INFO] cheese - inserting 1000 documents. first: Category:Equatoguinean judoka and last: Kinel-Cherkasski Raion -[2018-02-13T00:29:00.493] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:00.528] [INFO] cheese - inserting 1000 documents. first: Category:1230 in the Mongol Empire and last: Georgy Zhuravlev -[2018-02-13T00:29:00.542] [INFO] cheese - inserting 1000 documents. first: Pooler and last: Cathedral of Beauvais -[2018-02-13T00:29:00.563] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:29:00.606] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:29:00.674] [INFO] cheese - inserting 1000 documents. first: El Chupadero and last: List of titles and honours of Elizabeth II -[2018-02-13T00:29:00.722] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:00.743] [INFO] cheese - inserting 1000 documents. first: US Patent System and last: American Sean nos Dancing -[2018-02-13T00:29:00.765] [INFO] cheese - inserting 1000 documents. first: R3 (ring road) and last: FN Model 1906 -[2018-02-13T00:29:00.789] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:29:00.801] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:29:00.850] [INFO] cheese - inserting 1000 documents. first: Category:Television series set in the 1810s and last: Zinacatepec Municipality -[2018-02-13T00:29:00.869] [INFO] cheese - inserting 1000 documents. first: Shakardara and last: Dennis Ward -[2018-02-13T00:29:00.896] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:29:00.911] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:29:01.021] [INFO] cheese - inserting 1000 documents. first: Black Bear Road (album) and last: Aesculus californica -[2018-02-13T00:29:01.092] [INFO] cheese - inserting 1000 documents. first: Committee for the Preservation of the White House and last: Tilt up building -[2018-02-13T00:29:01.094] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:29:01.141] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:29:01.167] [INFO] cheese - inserting 1000 documents. first: Cristofano Malvezzi and last: Noether -[2018-02-13T00:29:01.186] [INFO] cheese - inserting 1000 documents. first: American Sean nós Dancing and last: Segunda Aficionados de la Comunidad de Madrid -[2018-02-13T00:29:01.223] [INFO] cheese - inserting 1000 documents. first: Template:Footer World Champions Team event and last: Pearce, Charles -[2018-02-13T00:29:01.227] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:29:01.249] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:01.262] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:29:01.266] [INFO] cheese - inserting 1000 documents. first: North American footbal and last: Booooom, Blast & Ruin -[2018-02-13T00:29:01.379] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:01.564] [INFO] cheese - inserting 1000 documents. first: Edward Rawson (politician) and last: Specific acoustic impedance -[2018-02-13T00:29:01.571] [INFO] cheese - inserting 1000 documents. first: Category:Films about widowhood and last: File:Winnie the War Winner.png -[2018-02-13T00:29:01.607] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:01.629] [INFO] cheese - inserting 1000 documents. first: Stockton-on-the-Forest and last: Category:Condiment stubs -[2018-02-13T00:29:01.631] [INFO] cheese - inserting 1000 documents. first: Pelham, Charles and last: Vincenzo Borghini -[2018-02-13T00:29:01.630] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:29:01.663] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:29:01.677] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:29:01.755] [INFO] cheese - inserting 1000 documents. first: Gabriel Iribarren and last: File:Kathymatteaalbum.jpg -[2018-02-13T00:29:01.794] [INFO] cheese - inserting 1000 documents. first: File:Williams-Happy-2.jpg and last: 2009 Knoxville Challenger -[2018-02-13T00:29:01.799] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:01.853] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:01.983] [INFO] cheese - inserting 1000 documents. first: ESJ Paris and last: Hipervitaminoz -[2018-02-13T00:29:02.012] [INFO] cheese - inserting 1000 documents. first: Vain elämää and last: DITTO -[2018-02-13T00:29:02.018] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:02.066] [INFO] cheese - inserting 1000 documents. first: Reactor design and last: File:Thopramkudy city.jpg -[2018-02-13T00:29:02.082] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:02.137] [INFO] cheese - inserting 1000 documents. first: Federal Charter of 1291 and last: Guy Steele, Jr. -[2018-02-13T00:29:02.144] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:02.192] [INFO] cheese - inserting 1000 documents. first: Godfrey public school and last: 1565 in India -[2018-02-13T00:29:02.218] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T00:29:02.257] [INFO] cheese - inserting 1000 documents. first: List of newspapers in New York in the 18th century and last: Richard Marshall (rugby league) -[2018-02-13T00:29:02.258] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:29:02.306] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:29:02.324] [INFO] cheese - inserting 1000 documents. first: Starmedia and last: Category:Villages in Pembrokeshire -[2018-02-13T00:29:02.396] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:29:02.473] [INFO] cheese - inserting 1000 documents. first: Indianola Historic District and last: Wikipedia:NSUMO -[2018-02-13T00:29:02.489] [INFO] cheese - inserting 1000 documents. first: 2007-08 UEFA Cup and last: Al Uqsur Governorate -[2018-02-13T00:29:02.541] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:02.556] [INFO] cheese - inserting 1000 documents. first: Henry Bentley (Canadian politician) and last: Kingdom of Tigré -[2018-02-13T00:29:02.564] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:02.612] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:02.653] [INFO] cheese - inserting 1000 documents. first: Template:DonleyCountyTX-geo-stub and last: Cuban bibles -[2018-02-13T00:29:02.693] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:02.800] [INFO] cheese - inserting 1000 documents. first: Category:1604 establishments in the Spanish Empire and last: Pao Hsi-jen -[2018-02-13T00:29:02.822] [INFO] cheese - inserting 1000 documents. first: Category:French emigrants to Niger and last: Kati Thanda–Lake Eyre -[2018-02-13T00:29:02.824] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:29:02.856] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:29:02.891] [INFO] cheese - inserting 1000 documents. first: Template:User dsb-1 and last: File:PythonProgLogo.png -[2018-02-13T00:29:02.910] [INFO] cheese - inserting 1000 documents. first: Category:People from Katwijk and last: 1983 Grand Prix (tennis) -[2018-02-13T00:29:02.925] [INFO] cheese - inserting 1000 documents. first: Jumbly and last: Maria d'Oro und Bello Blue -[2018-02-13T00:29:02.965] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:02.975] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:02.988] [INFO] cheese - inserting 1000 documents. first: Cuban bible and last: Template:Medkovets -[2018-02-13T00:29:03.031] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:29:03.040] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:29:03.131] [INFO] cheese - inserting 1000 documents. first: Category:1810s in the Spanish East Indies and last: Template:Pacific Cup tournament -[2018-02-13T00:29:03.144] [INFO] cheese - inserting 1000 documents. first: International date line and last: Wildcard DNS entry -[2018-02-13T00:29:03.172] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:29:03.215] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T00:29:03.273] [INFO] cheese - inserting 1000 documents. first: Robbie Brian Ftorek and last: Dopplereffekt -[2018-02-13T00:29:03.328] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:29:03.355] [INFO] cheese - inserting 1000 documents. first: Schweinfurth (disambiguation) and last: Wikipedia:Teahouse/Questions/Archive 04 -[2018-02-13T00:29:03.363] [INFO] cheese - inserting 1000 documents. first: Hamilton Municipal Election in 2010 and last: Template:Colombia football squad 1992 Summer Olympics -[2018-02-13T00:29:03.395] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:29:03.432] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:29:03.452] [INFO] cheese - inserting 1000 documents. first: Jose Francisco Bermudez and last: Metagalaxy -[2018-02-13T00:29:03.492] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:03.530] [INFO] cheese - inserting 1000 documents. first: Tai-bach and last: List of portable software -[2018-02-13T00:29:03.556] [INFO] cheese - inserting 1000 documents. first: Makkasan Railway Station and last: Fine-Pix HS20EXR -[2018-02-13T00:29:03.599] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:29:03.698] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:29:03.715] [INFO] cheese - inserting 1000 documents. first: Template:2007–08 in Italian football and last: Central Organization for Durable Peace -[2018-02-13T00:29:03.787] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:03.837] [INFO] cheese - inserting 1000 documents. first: Alex Caie and last: Sailing at the 2015 Pan American Games – J/24 -[2018-02-13T00:29:03.858] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:29:03.873] [INFO] cheese - inserting 1000 documents. first: Land of Immortals and last: Wunna Dam -[2018-02-13T00:29:03.874] [INFO] cheese - inserting 1000 documents. first: Category:West Bromwich Albion F.C. non-playing staff and last: K nut -[2018-02-13T00:29:03.911] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:29:03.923] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:29:03.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Spellage and last: Category:1952 disestablishments in China -[2018-02-13T00:29:04.004] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:29:04.171] [INFO] cheese - inserting 1000 documents. first: Malise Graham, 1st Earl of Menteith and last: Adur District Council election, 2002 -[2018-02-13T00:29:04.218] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:29:04.220] [INFO] cheese - inserting 1000 documents. first: TINLA and last: List of Aromanians -[2018-02-13T00:29:04.240] [INFO] cheese - inserting 1000 documents. first: Template:R caps and last: List of Russian ballerinas -[2018-02-13T00:29:04.271] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:29:04.281] [INFO] cheese - inserting 1000 documents. first: Huaibang Hu and last: Aga-Mirza-Obasi -[2018-02-13T00:29:04.293] [INFO] cheese - inserting 1000 documents. first: Sasanian Persia and last: Families with Children from China -[2018-02-13T00:29:04.300] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:29:04.315] [INFO] cheese - inserting 1000 documents. first: Dinajpur District (disambiguation) and last: Centre-half back -[2018-02-13T00:29:04.319] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:29:04.338] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:04.380] [INFO] cheese - inserting 1000 documents. first: Category:2004 in South American sport and last: Sayaka Yamamoto -[2018-02-13T00:29:04.392] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:29:04.444] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:29:04.500] [INFO] cheese - inserting 1000 documents. first: Russian ballerinas and last: Category:Oklahoma elections, 1992 -[2018-02-13T00:29:04.539] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:29:04.595] [INFO] cheese - inserting 1000 documents. first: Italian Fourth Army and last: Aurangabad central jail -[2018-02-13T00:29:04.625] [INFO] cheese - inserting 1000 documents. first: Venus DeMilo and last: Template:Cities of Pima County, Arizona -[2018-02-13T00:29:04.628] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:29:04.678] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:04.690] [INFO] cheese - inserting 1000 documents. first: Friends of Coyle Creek and last: John A. McDougall -[2018-02-13T00:29:04.747] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:29:04.823] [INFO] cheese - inserting 1000 documents. first: Small-stuff and last: Vishera River, Perm Oblast -[2018-02-13T00:29:04.823] [INFO] cheese - inserting 1000 documents. first: George F. Roesch and last: Category:1998 in Central American sport -[2018-02-13T00:29:04.985] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:29:05.028] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:29:05.122] [INFO] cheese - inserting 1000 documents. first: Roderick Moore (disambiguation) and last: River of Tuoni (song) -[2018-02-13T00:29:05.194] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:29:05.252] [INFO] cheese - inserting 1000 documents. first: Category:Jandaia do Sul and last: Category:1922 Missouri Valley Intercollegiate Athletic Association football season -[2018-02-13T00:29:05.266] [INFO] cheese - inserting 1000 documents. first: GIVE Center West and last: Diether Lukesch -[2018-02-13T00:29:05.299] [INFO] cheese - inserting 1000 documents. first: Phoenix FM (Central Victoria) and last: Kolibri Choir -[2018-02-13T00:29:05.314] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:29:05.318] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:29:05.376] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:29:05.394] [INFO] cheese - inserting 1000 documents. first: Category:Culture by city in Norway and last: Yehuda Alcalay -[2018-02-13T00:29:05.446] [INFO] cheese - inserting 1000 documents. first: Paul van Buitenen and last: Treaty of London (1839) -[2018-02-13T00:29:05.451] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:05.516] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T00:29:05.537] [INFO] cheese - inserting 1000 documents. first: Alena Vrzáňová and last: Jefferson Barracks -[2018-02-13T00:29:05.561] [INFO] cheese - inserting 1000 documents. first: Martyno Mažvydo mokykla and last: Category:Officers of the Legion of Merit -[2018-02-13T00:29:05.587] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:29:05.609] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:05.769] [INFO] cheese - inserting 1000 documents. first: Category:Transport in the Ionian Islands and last: Argentina Bangladesh relations -[2018-02-13T00:29:05.795] [INFO] cheese - inserting 1000 documents. first: Joseph Taitatzak and last: Category:Israeli Muay Thai practitioners -[2018-02-13T00:29:05.808] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:29:05.826] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:29:05.828] [INFO] cheese - inserting 1000 documents. first: Buffy the Vampire Killer and last: Werner Reinhart -[2018-02-13T00:29:05.888] [INFO] cheese - inserting 1000 documents. first: David Friedrichsfeld and last: Digital Natives -[2018-02-13T00:29:05.894] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:29:05.938] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:29:05.951] [INFO] cheese - inserting 1000 documents. first: Cape Boggs and last: This Is Bat Country -[2018-02-13T00:29:05.991] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:29:06.061] [INFO] cheese - inserting 1000 documents. first: Cruise (automotive) and last: File:MaxCarlish2.jpg -[2018-02-13T00:29:06.121] [INFO] cheese - inserting 1000 documents. first: Bangladesh-Argentina relations and last: Irene Chepet Cheptai -[2018-02-13T00:29:06.147] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:29:06.149] [INFO] cheese - inserting 1000 documents. first: Microsoft-Novell deal and last: St Mary's University College Twickenham -[2018-02-13T00:29:06.199] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:29:06.207] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:29:06.321] [INFO] cheese - inserting 1000 documents. first: Mon Mane Na (2008 film) and last: West Germany women's national field hockey team -[2018-02-13T00:29:06.339] [INFO] cheese - inserting 1000 documents. first: No 241 Operational Conversion Unit RAF and last: Annie Meinertzhagen -[2018-02-13T00:29:06.339] [INFO] cheese - inserting 1000 documents. first: Antoine Louis Camille Lemonnier and last: Myrsini -[2018-02-13T00:29:06.372] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:29:06.377] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:29:06.406] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:29:06.521] [INFO] cheese - inserting 1000 documents. first: Parent's Music Resource center and last: Crab pan -[2018-02-13T00:29:06.529] [INFO] cheese - inserting 1000 documents. first: Jafarabad, Khomeyn and last: Sexxx -[2018-02-13T00:29:06.575] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:29:06.578] [INFO] cheese - inserting 1000 documents. first: Category:People from Balrampur and last: Macedon (satrapy) -[2018-02-13T00:29:06.583] [INFO] cheese - inserting 1000 documents. first: Irine Chepet Cheptai and last: 2015 BBL Champions Cup -[2018-02-13T00:29:06.582] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:29:06.632] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:29:06.652] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:29:06.722] [INFO] cheese - inserting 1000 documents. first: Naomi Ichihara Roekkum and last: Register in bankruptcy -[2018-02-13T00:29:06.725] [INFO] cheese - inserting 1000 documents. first: On Reflection and last: File:Blitzkrieg book cover.jpg -[2018-02-13T00:29:06.755] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:29:06.763] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:29:06.941] [INFO] cheese - inserting 1000 documents. first: The Lute Player (Orazio Gentileschi) and last: Wikipedia:Reference desk/Archives/Language/2015 July 27 -[2018-02-13T00:29:06.983] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:29:07.042] [INFO] cheese - inserting 1000 documents. first: Glen Oak High School and last: Social grade -[2018-02-13T00:29:07.045] [INFO] cheese - inserting 1000 documents. first: Carter and Burgess Plaza and last: Wikipedia:Peer review/Percy Fender/archive1 -[2018-02-13T00:29:07.083] [INFO] cheese - inserting 1000 documents. first: USS Tananek Bay (CVE-88) and last: Gongo Lutete -[2018-02-13T00:29:07.099] [INFO] cheese - inserting 1000 documents. first: Category:Dams in England and last: Kiyangkongrejo -[2018-02-13T00:29:07.098] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:29:07.141] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:07.181] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:29:07.242] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:29:07.256] [INFO] cheese - inserting 1000 documents. first: Caribe Hilton Hotel and last: Prometheus Bound -[2018-02-13T00:29:07.443] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:29:07.582] [INFO] cheese - inserting 1000 documents. first: 1965 Army Cadets football team and last: Template:Wiktla -[2018-02-13T00:29:07.671] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:29:07.699] [INFO] cheese - inserting 1000 documents. first: Online Nation (TV series) and last: Category:Algerian diplomats -[2018-02-13T00:29:07.732] [INFO] cheese - inserting 1000 documents. first: Worawut Srisupha and last: WarZ -[2018-02-13T00:29:07.739] [INFO] cheese - inserting 1000 documents. first: Leftright politics and last: Jan G.F. Veldhuis -[2018-02-13T00:29:07.749] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Danjin Spear and last: Clement Spiette -[2018-02-13T00:29:07.769] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:29:07.774] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T00:29:07.780] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:29:07.798] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:07.833] [INFO] cheese - inserting 1000 documents. first: Scott Hiley and last: Synethesia -[2018-02-13T00:29:07.887] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:29:08.066] [INFO] cheese - inserting 1000 documents. first: Template:Wiktmy and last: Brian Lacey (Gaelic footballer) -[2018-02-13T00:29:08.118] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:29:08.131] [INFO] cheese - inserting 1000 documents. first: File:Out of the Blue (Blue Mitchell album).jpg and last: USI Holdings Limited -[2018-02-13T00:29:08.167] [INFO] cheese - inserting 1000 documents. first: Armand Pagnoulle and last: Testudinaceae -[2018-02-13T00:29:08.185] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:08.227] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:29:08.288] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2012 December 28 and last: In-game currency -[2018-02-13T00:29:08.343] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:29:08.383] [INFO] cheese - inserting 1000 documents. first: 22nd SS Volunteer Cavalry Division Division Maria Theresa and last: National Wildlife Refuge System -[2018-02-13T00:29:08.385] [INFO] cheese - inserting 1000 documents. first: Category:Notosuchians and last: Category:Music in Rotterdam -[2018-02-13T00:29:08.392] [INFO] cheese - inserting 1000 documents. first: Human Powered Aircraft Group and last: DE-35 -[2018-02-13T00:29:08.411] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:29:08.443] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:08.483] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:29:08.567] [INFO] cheese - inserting 1000 documents. first: Laurent Monsengwo Pasinya and last: Autograph 2010(Bengali) -[2018-02-13T00:29:08.596] [INFO] cheese - inserting 1000 documents. first: King Xiang of Zhou and last: Dwarf throw -[2018-02-13T00:29:08.610] [INFO] cheese - inserting 1000 documents. first: File:Allan Holdsworth - 1987 - Sand.jpg and last: R63 (Western Cape) -[2018-02-13T00:29:08.615] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:29:08.676] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T00:29:08.676] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:29:08.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Yoko Ono articles by quality statistics and last: Category:Athletes from Gansu -[2018-02-13T00:29:08.767] [INFO] cheese - inserting 1000 documents. first: Debinha and last: Octade (unit) -[2018-02-13T00:29:08.788] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:29:08.819] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:08.846] [INFO] cheese - inserting 1000 documents. first: Bill Lawrence (TV producer) and last: Chirbury and Brompton -[2018-02-13T00:29:08.882] [INFO] cheese - inserting 1000 documents. first: Daniel McMann and last: Abi-hime -[2018-02-13T00:29:08.887] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:29:08.923] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:29:08.960] [INFO] cheese - inserting 1000 documents. first: Giovanni Conterno and last: Ibi (tribe) -[2018-02-13T00:29:09.013] [INFO] cheese - inserting 1000 documents. first: Erythromycin Ethylsuccinate and last: Wikipedia:Articles for deletion/Love Makes the World Go 'Round (1986 song) -[2018-02-13T00:29:09.021] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:09.084] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:29:09.118] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2012 December 29 and last: List of archdeacons of Bromley -[2018-02-13T00:29:09.168] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:29:09.221] [INFO] cheese - inserting 1000 documents. first: Octads (computing) and last: Ergatis (Gelechia) staticella -[2018-02-13T00:29:09.265] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:09.333] [INFO] cheese - inserting 1000 documents. first: Dogs damour and last: 9903 Leonhardt -[2018-02-13T00:29:09.377] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:09.404] [INFO] cheese - inserting 1000 documents. first: Glottic and last: Woodlouse spider -[2018-02-13T00:29:09.473] [INFO] cheese - inserting 1000 documents. first: Daily Mail (Pakistan) and last: Golden Globe Awards 2008 -[2018-02-13T00:29:09.491] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:29:09.609] [INFO] cheese - inserting 1000 documents. first: Eufaula tribe and last: Russian-speaking Ukraine -[2018-02-13T00:29:09.654] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:09.715] [INFO] cheese - inserting 1000 documents. first: Aunt Sally (film) and last: Administrative regions of the Federal District -[2018-02-13T00:29:09.718] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:29:09.757] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:29:09.779] [INFO] cheese - inserting 1000 documents. first: Someone like You (Arthur Louis song) and last: Carpenter, Christopher -[2018-02-13T00:29:09.822] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:29:09.863] [INFO] cheese - inserting 1000 documents. first: Aleksandr Kuprin and last: Lamar Hunt -[2018-02-13T00:29:09.909] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Superman and last: Portal:Catholicism/Patron of the Day Archive/May 24 2007 -[2018-02-13T00:29:09.938] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T00:29:09.952] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:29:10.030] [INFO] cheese - inserting 1000 documents. first: Paper Planes – Homeland Security Remixes EP and last: Medicare (for all) -[2018-02-13T00:29:10.085] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:29:10.111] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 582 and last: Ion Dissonance -[2018-02-13T00:29:10.116] [INFO] cheese - inserting 1000 documents. first: 陇南市 and last: Otto Heidkämper -[2018-02-13T00:29:10.156] [INFO] cheese - inserting 1000 documents. first: CSAR Class E 4-8-2T and last: Sen. Dean Heller -[2018-02-13T00:29:10.156] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:29:10.161] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:10.209] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:10.217] [INFO] cheese - inserting 1000 documents. first: Cole, Christopher and last: Category:Trees of the Arabian Peninsula -[2018-02-13T00:29:10.276] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:29:10.384] [INFO] cheese - inserting 1000 documents. first: Ana Margarita Martínez-Casado and last: ISRO Satellite centre -[2018-02-13T00:29:10.425] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:29:10.438] [INFO] cheese - inserting 1000 documents. first: Senator Dean Heller and last: White-tailed Mountain Vole -[2018-02-13T00:29:10.469] [INFO] cheese - inserting 1000 documents. first: British Columbia Colleges' Athletic Association and last: Horikawa River -[2018-02-13T00:29:10.489] [INFO] cheese - inserting 1000 documents. first: Bakhtar News Agency and last: Coppermine Expedition -[2018-02-13T00:29:10.501] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:29:10.517] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:29:10.549] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:29:10.599] [INFO] cheese - inserting 1000 documents. first: Père David's mole and last: Wikipedia:Articles for deletion/Jewish-Arab conflict -[2018-02-13T00:29:10.649] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:29:10.813] [INFO] cheese - inserting 1000 documents. first: Nine Stones of Altarnun and last: Template:Did you know nominations/Jeanne Lampl-de Groot -[2018-02-13T00:29:10.871] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:10.943] [INFO] cheese - inserting 1000 documents. first: Aplonay and last: Kevin Brown (pitcher) -[2018-02-13T00:29:10.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Asthma/archive3 and last: Hindasgeri -[2018-02-13T00:29:10.954] [INFO] cheese - inserting 1000 documents. first: Travel visa and last: Isabel J. Cox -[2018-02-13T00:29:10.972] [INFO] cheese - inserting 1000 documents. first: Category:1937 in South Dakota and last: Anishinabek Education Institute -[2018-02-13T00:29:10.981] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Holly and last: File:Flash Blaine.png -[2018-02-13T00:29:10.990] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:10.993] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:29:11.022] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:29:11.028] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:29:11.054] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:11.168] [INFO] cheese - inserting 1000 documents. first: Aquatic biomonitoring and last: John O'Rourke -[2018-02-13T00:29:11.201] [INFO] cheese - inserting 1000 documents. first: Coconympha iriarcha and last: Neotelphusa phaeomacula -[2018-02-13T00:29:11.215] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:11.274] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:29:11.302] [INFO] cheese - inserting 1000 documents. first: Hirebudihal and last: Wikipedia:WikiProject Films/Outreach/September 2007 Newsletter -[2018-02-13T00:29:11.327] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:29:11.380] [INFO] cheese - inserting 1000 documents. first: Saythu Khocha and last: Portal:Physics/2013 Selected articles -[2018-02-13T00:29:11.405] [INFO] cheese - inserting 1000 documents. first: Hermann Friedrich Waesemann and last: Metropolitan, Carriage, Wagon and Finance -[2018-02-13T00:29:11.419] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:29:11.456] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:11.482] [INFO] cheese - inserting 1000 documents. first: Pegram v. Herdrich and last: Jairou -[2018-02-13T00:29:11.536] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:11.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Films/Outreach/September 2008 Newsletter and last: Category:Parks in Huntingdon County, Pennsylvania -[2018-02-13T00:29:11.586] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:29:11.634] [INFO] cheese - inserting 1000 documents. first: Category:Nations at sport events in 1970 and last: My Lonely Me -[2018-02-13T00:29:11.647] [INFO] cheese - inserting 1000 documents. first: Hesbaye and last: WMGT -[2018-02-13T00:29:11.689] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:11.723] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:29:11.735] [INFO] cheese - inserting 1000 documents. first: Velvet Climbing Mouse and last: Amity University Rajasthan -[2018-02-13T00:29:11.779] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:29:12.010] [INFO] cheese - inserting 1000 documents. first: Seventh-day Adventists and the Sabbath and last: File:SuperFresh-oldlogo.png -[2018-02-13T00:29:12.086] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:29:12.091] [INFO] cheese - inserting 1000 documents. first: N Krishnan and last: LSP Museum -[2018-02-13T00:29:12.152] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:12.161] [INFO] cheese - inserting 1000 documents. first: The Paradise of Bachelors and the Tartarus of Maids and last: Nick jr. UK -[2018-02-13T00:29:12.167] [INFO] cheese - inserting 1000 documents. first: Frederick Church and last: 2000 Summer Paralympics -[2018-02-13T00:29:12.203] [INFO] cheese - inserting 1000 documents. first: Dramatic re-enactment and last: R.W. Macan -[2018-02-13T00:29:12.208] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:29:12.245] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:29:12.243] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:12.312] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg University and last: Flag of mexico -[2018-02-13T00:29:12.314] [INFO] cheese - inserting 1000 documents. first: Zoned binary-coded decimal and last: Category:20th century in British India -[2018-02-13T00:29:12.365] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:29:12.381] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:29:12.557] [INFO] cheese - inserting 1000 documents. first: Louisiana State Penitentiary Museum and last: Wikipedia:Articles for deletion/Martha Lipton -[2018-02-13T00:29:12.573] [INFO] cheese - inserting 1000 documents. first: Greenbriar and last: WGZR-FM -[2018-02-13T00:29:12.635] [INFO] cheese - inserting 1000 documents. first: Marie Solange Pagonendji-Ndakala and last: Snapbacks & Tattoos -[2018-02-13T00:29:12.631] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:29:12.671] [INFO] cheese - inserting 1000 documents. first: Tony Moses and last: Wikipedia:Reference desk/Archives/Science/2008 December 4 -[2018-02-13T00:29:12.630] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:29:12.716] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:29:12.875] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:29:12.907] [INFO] cheese - inserting 1000 documents. first: List of Digambar Jain ascetics and last: Category:Buildings and structures in Panamá Province -[2018-02-13T00:29:12.960] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:13.067] [INFO] cheese - inserting 1000 documents. first: Uncle toms cabin and last: Infinity Radio -[2018-02-13T00:29:13.151] [INFO] cheese - inserting 1000 documents. first: Shabbat HaGadol and last: Banded tubes -[2018-02-13T00:29:13.155] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:29:13.181] [INFO] cheese - inserting 1000 documents. first: British Continental Airways and last: 335 U.S. 464 -[2018-02-13T00:29:13.201] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:13.259] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:13.307] [INFO] cheese - inserting 1000 documents. first: Mauger (French name) and last: Dabbing (motorcycling) -[2018-02-13T00:29:13.369] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:29:13.396] [INFO] cheese - inserting 1000 documents. first: File:Lines - The Beach Boys.ogg and last: Policewoman (disambiguation) -[2018-02-13T00:29:13.438] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:29:13.485] [INFO] cheese - inserting 1000 documents. first: List of content management systems and last: Goldman Sachs -[2018-02-13T00:29:13.566] [INFO] cheese - inserting 1000 documents. first: Samir Mashharawi and last: Zacharias Paulusz -[2018-02-13T00:29:13.600] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T00:29:13.617] [INFO] cheese - inserting 1000 documents. first: Luigi Agricola and last: White-tailed Olalla Rat -[2018-02-13T00:29:13.620] [INFO] cheese - inserting 1000 documents. first: Adèle Isaac and last: Thomas Clarke (disambiguation) -[2018-02-13T00:29:13.641] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:29:13.671] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:29:13.696] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:29:13.725] [INFO] cheese - inserting 1000 documents. first: Holor and last: Bronwyn Drainie -[2018-02-13T00:29:13.773] [INFO] cheese - inserting 1000 documents. first: Ace Metrix and last: Longbottom, Arthur -[2018-02-13T00:29:13.781] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:29:13.825] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:29:13.901] [INFO] cheese - inserting 1000 documents. first: William Peel and last: Funf -[2018-02-13T00:29:13.951] [INFO] cheese - inserting 1000 documents. first: Argentine Brown Bat and last: Portal:Trains/Selected article/Week 43, 2013 -[2018-02-13T00:29:13.957] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:29:13.994] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:29:14.071] [INFO] cheese - inserting 1000 documents. first: Billy Ruane (music promoter) and last: Dukes of Épernon -[2018-02-13T00:29:14.152] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:14.162] [INFO] cheese - inserting 1000 documents. first: Category:Skyscrapers in El Salvador and last: Frank Hannyngton -[2018-02-13T00:29:14.224] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:29:14.267] [INFO] cheese - inserting 1000 documents. first: Lynch, Arthur and last: Ariyapedatha Rahasyam -[2018-02-13T00:29:14.315] [INFO] cheese - inserting 1000 documents. first: Filippo di Ser Brunellesco Brunelleschi and last: Price scissors -[2018-02-13T00:29:14.322] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:14.385] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Selected article/Week 44, 2013 and last: Template:2012–13 CCHA standings (men)/doc -[2018-02-13T00:29:14.389] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:29:14.424] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:29:14.426] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Saskatoon and last: List of sovereign states in 1909 -[2018-02-13T00:29:14.491] [INFO] cheese - inserting 1000 documents. first: Counts of Périgord and last: Baava (2010 film) -[2018-02-13T00:29:14.506] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:14.534] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:29:14.654] [INFO] cheese - inserting 1000 documents. first: Highland Park distillery and last: Haimirich -[2018-02-13T00:29:14.685] [INFO] cheese - inserting 1000 documents. first: Bachelor of Computer Applications and last: Opeas pumilum -[2018-02-13T00:29:14.714] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T00:29:14.751] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:29:14.754] [INFO] cheese - inserting 1000 documents. first: Nirthashala and last: Death and taxes (disambiguation) -[2018-02-13T00:29:14.826] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:14.941] [INFO] cheese - inserting 1000 documents. first: United States Post Office and Courthouse (Eureka, California) and last: Melaka State Secretariat Building -[2018-02-13T00:29:14.965] [INFO] cheese - inserting 1000 documents. first: Lajos Halász and last: Girò di Cagliari -[2018-02-13T00:29:14.985] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:29:15.012] [INFO] cheese - inserting 1000 documents. first: Audrey A. McNiff and last: Lebo M. -[2018-02-13T00:29:15.013] [INFO] cheese - inserting 1000 documents. first: Lawh-i-Tibb and last: Paul Jans -[2018-02-13T00:29:15.030] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:29:15.140] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:29:15.150] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:29:15.307] [INFO] cheese - inserting 1000 documents. first: Leo Morrissey and last: General Von Klinkerhoffen -[2018-02-13T00:29:15.350] [INFO] cheese - inserting 1000 documents. first: Nikolay (Yarushevich) and last: Category:1704 in Gibraltar -[2018-02-13T00:29:15.363] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:29:15.396] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:29:15.568] [INFO] cheese - inserting 1000 documents. first: Category:Greek-American culture in Maryland and last: CONNECT (Alfa Remeo) -[2018-02-13T00:29:15.589] [INFO] cheese - inserting 1000 documents. first: Category:1460s conflicts and last: Wapoga River -[2018-02-13T00:29:15.658] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:29:15.694] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:29:15.775] [INFO] cheese - inserting 1000 documents. first: File:HarrietHarman.jpg and last: Ahlul-Kitaab -[2018-02-13T00:29:15.853] [INFO] cheese - inserting 1000 documents. first: File:Mexico City Polution.jpg and last: Szalaszend -[2018-02-13T00:29:15.861] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:29:15.895] [INFO] cheese - inserting 1000 documents. first: Portal:Serer religion/Selected biography/1 and last: File:Dead & Company logo.png -[2018-02-13T00:29:15.902] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:29:15.944] [INFO] cheese - inserting 1000 documents. first: Deputy-Governors and last: Marsh Gentian -[2018-02-13T00:29:15.948] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:29:15.968] [INFO] cheese - inserting 1000 documents. first: California Proposition 54 (2003) and last: Bedřich Hrozný -[2018-02-13T00:29:15.998] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:29:16.045] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T00:29:16.085] [INFO] cheese - inserting 1000 documents. first: Enrique Echeverría and last: Piplod, Surat -[2018-02-13T00:29:16.119] [INFO] cheese - inserting 1000 documents. first: List of National Basketball Association players with 40 or more rebounds in a game and last: 李小鹏 -[2018-02-13T00:29:16.141] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:29:16.174] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:16.311] [INFO] cheese - inserting 1000 documents. first: Padariya Jat and last: Art (album) -[2018-02-13T00:29:16.363] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:16.391] [INFO] cheese - inserting 1000 documents. first: Chalk Mountains (Colorado) and last: Car company bailout -[2018-02-13T00:29:16.399] [INFO] cheese - inserting 1000 documents. first: Ambiyaa and last: Dr. Abby Lockhart -[2018-02-13T00:29:16.443] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:29:16.450] [INFO] cheese - inserting 1000 documents. first: HgcE RNA and last: Šuta -[2018-02-13T00:29:16.476] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:16.533] [INFO] cheese - inserting 1000 documents. first: Category:Nuova Cosenza Calcio players and last: April 1920 -[2018-02-13T00:29:16.551] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:29:16.566] [INFO] cheese - inserting 1000 documents. first: Black-banded sea kraits and last: Joan, Heiress of Navarre -[2018-02-13T00:29:16.612] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:29:16.619] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:29:16.754] [INFO] cheese - inserting 1000 documents. first: Paraspori and last: File:Scorpion's Revenge DVD.jpg -[2018-02-13T00:29:16.813] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:29:16.876] [INFO] cheese - inserting 1000 documents. first: ISO 3166-2:GB-BKM and last: 1990 Philadelphia Wings -[2018-02-13T00:29:16.917] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:16.955] [INFO] cheese - inserting 1000 documents. first: Megami Tensei Gaiden: Last Bible II and last: United States Department of Justice Tax Division -[2018-02-13T00:29:16.955] [INFO] cheese - inserting 1000 documents. first: Belgrade, Serbia and last: Sir Richard Squires -[2018-02-13T00:29:17.019] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:29:17.049] [INFO] cheese - inserting 1000 documents. first: May 1920 and last: Norton Street Congregational Church -[2018-02-13T00:29:17.057] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:29:17.080] [INFO] cheese - inserting 1000 documents. first: Palaeocyanus and last: Earth Orbiter 1 -[2018-02-13T00:29:17.083] [INFO] cheese - inserting 1000 documents. first: Corazón Aymara and last: Maud of Huntingdon -[2018-02-13T00:29:17.101] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:29:17.150] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:29:17.160] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:29:17.285] [INFO] cheese - inserting 1000 documents. first: Kazuhiro Mori (cyclist) and last: Sodomites (song) -[2018-02-13T00:29:17.331] [INFO] cheese - inserting 1000 documents. first: Oxycirrhites typus and last: Man Who Haunted Himself -[2018-02-13T00:29:17.344] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:29:17.444] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:29:17.523] [INFO] cheese - inserting 1000 documents. first: Parinacochas Lake and last: Wikipedia:Requests for feedback/2010 November 3 -[2018-02-13T00:29:17.568] [INFO] cheese - inserting 1000 documents. first: The Blue Gardenia (1953 film) and last: File:Liveinchicago.jpg -[2018-02-13T00:29:17.572] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:29:17.623] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:17.626] [INFO] cheese - inserting 1000 documents. first: Laguna Parinacota and last: Template:POTD/2013-01-09 -[2018-02-13T00:29:17.656] [INFO] cheese - inserting 1000 documents. first: Nathaniel Dusk and last: Joshua W. Groban -[2018-02-13T00:29:17.693] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:29:17.730] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:17.811] [INFO] cheese - inserting 1000 documents. first: .DZ and last: National Park Association -[2018-02-13T00:29:17.812] [INFO] cheese - inserting 1000 documents. first: Kevin Fogg and last: 2014 Cambodian League -[2018-02-13T00:29:17.847] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:29:17.850] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:29:17.925] [INFO] cheese - inserting 1000 documents. first: Template:Infobox motor race and last: Kurath, Hans -[2018-02-13T00:29:17.939] [INFO] cheese - inserting 1000 documents. first: Three Jewels Temples and last: Cellulase -[2018-02-13T00:29:17.957] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:29:17.985] [INFO] cheese - inserting 1000 documents. first: YP-214 and last: Gbaya People -[2018-02-13T00:29:18.028] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:29:18.047] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:18.154] [INFO] cheese - inserting 1000 documents. first: Category:President of the United States navigational boxes and last: Wikipedia:Article grades -[2018-02-13T00:29:18.209] [INFO] cheese - inserting 1000 documents. first: Craigie High School and last: Uruguay at the 1924 Summer Olympics -[2018-02-13T00:29:18.213] [INFO] cheese - inserting 1000 documents. first: Colin Langley and last: Gérard Pettipas -[2018-02-13T00:29:18.234] [INFO] cheese - inserting 1000 documents. first: Thazhakara (Village) and last: Gol Transportes Aéreos S/A -[2018-02-13T00:29:18.241] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:29:18.274] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:18.282] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:29:18.317] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:18.373] [INFO] cheese - inserting 1000 documents. first: Mohd Noor Ali and last: FM 2917 -[2018-02-13T00:29:18.405] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:29:18.427] [INFO] cheese - inserting 1000 documents. first: Pseudocercospora theae and last: Category:Abenaki communities -[2018-02-13T00:29:18.482] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:18.604] [INFO] cheese - inserting 1000 documents. first: Jason Mitchell (actor) and last: Template:France diplomatic missions -[2018-02-13T00:29:18.625] [INFO] cheese - inserting 1000 documents. first: File:NAAFS logo.png and last: Western Chorus Frog -[2018-02-13T00:29:18.655] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:29:18.687] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:18.766] [INFO] cheese - inserting 1000 documents. first: National Supercomputing Center (Shenzhen) and last: Sonosuke Fujimaki -[2018-02-13T00:29:18.808] [INFO] cheese - inserting 1000 documents. first: Cigar Makers' International Union and last: Jim Dodge -[2018-02-13T00:29:18.823] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:29:18.836] [INFO] cheese - inserting 1000 documents. first: Gol Transportes Aereos S/A and last: File:CharlottetownAbbies.png -[2018-02-13T00:29:18.886] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:18.890] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:29:18.970] [INFO] cheese - inserting 1000 documents. first: Tim Murray (rapper) and last: Signs of Life (1968 film) -[2018-02-13T00:29:19.015] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:29:19.089] [INFO] cheese - inserting 1000 documents. first: Russian Army (1917) and last: Minami Kamakura High School Girls Cycling Club -[2018-02-13T00:29:19.141] [INFO] cheese - inserting 1000 documents. first: Linear space and last: Mint-made errors -[2018-02-13T00:29:19.138] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:29:19.175] [INFO] cheese - inserting 1000 documents. first: San Andrés Tuxtla, Veracruz and last: Fragile (Cherrelle album) -[2018-02-13T00:29:19.214] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:29:19.232] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T00:29:19.245] [INFO] cheese - inserting 1000 documents. first: Spring Peeper and last: Naser Al-Meqlad -[2018-02-13T00:29:19.302] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:19.327] [INFO] cheese - inserting 1000 documents. first: File:Imperial hotel hobart.JPG and last: Template:PulitzerPrize DramaAuthors 1951–1975 -[2018-02-13T00:29:19.382] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:29:19.458] [INFO] cheese - inserting 1000 documents. first: Rapture (Anita Baker album) and last: Chicago Patriots Gaelic Football Club -[2018-02-13T00:29:19.502] [INFO] cheese - inserting 1000 documents. first: Darahičyn and last: 廖洋震 -[2018-02-13T00:29:19.552] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:29:19.570] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:19.632] [INFO] cheese - inserting 1000 documents. first: 2006 Women's British Open Squash Championship and last: The Zodiac killer -[2018-02-13T00:29:19.652] [INFO] cheese - inserting 1000 documents. first: Kensgaila VK-8 Aušra and last: 2-lithiobutane -[2018-02-13T00:29:19.683] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:29:19.687] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:29:19.884] [INFO] cheese - inserting 1000 documents. first: Latsamy Mingboupha and last: Category:1944 in Guam -[2018-02-13T00:29:19.963] [INFO] cheese - inserting 1000 documents. first: Category:Liberal Party (UK) life peers and last: Wikipedia:Articles for deletion/Amberair -[2018-02-13T00:29:19.971] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:29:20.024] [INFO] cheese - inserting 1000 documents. first: File:Handcream for a Generation cover.jpeg and last: Cycling at the 1983 Pan American Games -[2018-02-13T00:29:20.084] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:29:20.104] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:29:20.132] [INFO] cheese - inserting 1000 documents. first: Robert Stanley (aviator) and last: Universal magisterium -[2018-02-13T00:29:20.144] [INFO] cheese - inserting 1000 documents. first: Kinta valley and last: Category:1797 establishments in Virginia -[2018-02-13T00:29:20.145] [INFO] cheese - inserting 1000 documents. first: 531 U.S. 326 and last: Mike Riley (curler) -[2018-02-13T00:29:20.187] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:20.189] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:29:20.200] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:29:20.290] [INFO] cheese - inserting 1000 documents. first: Tholian and last: Externsteine -[2018-02-13T00:29:20.352] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:29:20.387] [INFO] cheese - inserting 1000 documents. first: File:Danville Dashers Hockey Logo.png and last: The Stones Are Rolling -[2018-02-13T00:29:20.429] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:20.449] [INFO] cheese - inserting 1000 documents. first: Deno and last: Davison Peak -[2018-02-13T00:29:20.489] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:20.565] [INFO] cheese - inserting 1000 documents. first: Lewisham City Learning Centre and last: Huo Long Jing -[2018-02-13T00:29:20.571] [INFO] cheese - inserting 1000 documents. first: Category:1856 establishments in Virginia and last: That's How You Know (Nico & Vinz song) -[2018-02-13T00:29:20.613] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:29:20.618] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:20.634] [INFO] cheese - inserting 1000 documents. first: Ricardo Oliveira (rink hockey player) and last: Hong Kong legislative election, 2012 (Kowloon West) -[2018-02-13T00:29:20.649] [INFO] cheese - inserting 1000 documents. first: Ordinary and Universal Magisterium and last: Proper venue -[2018-02-13T00:29:20.688] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:29:20.701] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:29:20.873] [INFO] cheese - inserting 1000 documents. first: Davisville Glacier and last: Kooyman Peak -[2018-02-13T00:29:20.912] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Yorkshire/Newsletter/January 2009 and last: Gravely -[2018-02-13T00:29:20.920] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:29:20.984] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:20.988] [INFO] cheese - inserting 1000 documents. first: Category:Maryland elections, 1972 and last: Thursday (mixtape) -[2018-02-13T00:29:21.048] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:21.050] [INFO] cheese - inserting 1000 documents. first: Fusarium oxysporum f.sp. coffea and last: Chen Zhen (Minister) -[2018-02-13T00:29:21.213] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:21.302] [INFO] cheese - inserting 1000 documents. first: Taibai Stream Salamander and last: 2013 Roger Federer tennis season -[2018-02-13T00:29:21.345] [INFO] cheese - inserting 1000 documents. first: Jack Angel (SHC) and last: Volodymyr Ivasyuk -[2018-02-13T00:29:21.370] [INFO] cheese - inserting 1000 documents. first: Understanding Comics and last: V. R. Krishna Iyer -[2018-02-13T00:29:21.376] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:29:21.440] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:29:21.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Department of Fun/Word Association/Fixed and last: Not sold in stores (marketing) -[2018-02-13T00:29:21.486] [INFO] cheese - inserting 1000 documents. first: Erika Renee Land and last: Buena Vista Plantation -[2018-02-13T00:29:21.509] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T00:29:21.552] [INFO] cheese - inserting 1000 documents. first: File:Elderly logo.png and last: Pavoor -[2018-02-13T00:29:21.554] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:29:21.580] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:29:21.633] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:29:21.796] [INFO] cheese - inserting 1000 documents. first: Anshe Chesed Fairmount Temple and last: Four Provinces (Pakistan) -[2018-02-13T00:29:21.797] [INFO] cheese - inserting 1000 documents. first: Chen Zhen (Martial Artist) and last: Meir Taweig Synagogue -[2018-02-13T00:29:21.837] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:29:21.847] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:29:21.935] [INFO] cheese - inserting 1000 documents. first: Draft:Fascia Training and last: Category:North Carolina elections, 1841 -[2018-02-13T00:29:21.972] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:29:22.014] [INFO] cheese - inserting 1000 documents. first: Meiji University junior college and last: Wikipedia:WikiProject Spam/LinkReports/sneakers-nike.com -[2018-02-13T00:29:22.069] [INFO] cheese - inserting 1000 documents. first: Steve Lilliewhite and last: Nagqu Prefecture -[2018-02-13T00:29:22.081] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:29:22.105] [INFO] cheese - inserting 1000 documents. first: Periya, Kasaragod and last: Haralampie Hadži-Risteski -[2018-02-13T00:29:22.143] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:29:22.170] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:29:22.280] [INFO] cheese - inserting 1000 documents. first: Stylidium subg. Tolypangium and last: St John's College, Agra -[2018-02-13T00:29:22.335] [INFO] cheese - inserting 1000 documents. first: Category:North Carolina elections, 1843 and last: Elections in Sarawak -[2018-02-13T00:29:22.364] [INFO] cheese - inserting 1000 documents. first: WrestleMania X - Seven and last: Girolamo Conestaggio -[2018-02-13T00:29:22.375] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:29:22.406] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:22.410] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:29:22.506] [INFO] cheese - inserting 1000 documents. first: Taxco and last: Lake City -[2018-02-13T00:29:22.568] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/wholesalenikemall.com and last: British Irish Parliamentary Assembly -[2018-02-13T00:29:22.586] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:29:22.628] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:22.645] [INFO] cheese - inserting 1000 documents. first: File:Funtimecomicslogo.png and last: Hassan Sabry Pasha -[2018-02-13T00:29:22.686] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:29:22.739] [INFO] cheese - inserting 1000 documents. first: Philip Sang'ka Marmo and last: Skymaster Excel -[2018-02-13T00:29:22.767] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:29:22.795] [INFO] cheese - inserting 1000 documents. first: Massey Commission and last: Wikipedia:Wikipedia Signpost/2005-12-26/News and notes -[2018-02-13T00:29:22.826] [INFO] cheese - inserting 1000 documents. first: File:Malfatti Commission.jpg and last: Al-Khalīlī -[2018-02-13T00:29:22.848] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for permissions/Approved/January 2013 and last: Atkarskoye -[2018-02-13T00:29:22.861] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:29:22.888] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:29:22.912] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:29:23.064] [INFO] cheese - inserting 1000 documents. first: Portal:Santana/Nominate/Selected article and last: S. L. Sokolov -[2018-02-13T00:29:23.098] [INFO] cheese - inserting 1000 documents. first: Provincia de El Bierzo and last: Thu, Palpa -[2018-02-13T00:29:23.112] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:29:23.160] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:29:23.203] [INFO] cheese - inserting 1000 documents. first: Template:Classical music festival and last: Cardinals (The Wonder Years song) -[2018-02-13T00:29:23.239] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:29:23.317] [INFO] cheese - inserting 1000 documents. first: Portal:Sports/Selected group/4 and last: Hosmer Lake -[2018-02-13T00:29:23.350] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-01-02/Features and admins and last: Category:Political parties in Northern Catalonia -[2018-02-13T00:29:23.376] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:23.406] [INFO] cheese - inserting 1000 documents. first: Specialty show and last: Blogging software -[2018-02-13T00:29:23.493] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:29:23.542] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:29:23.676] [INFO] cheese - inserting 1000 documents. first: List of arches in Oregon and last: 2004 NECBL season -[2018-02-13T00:29:23.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/zorder256 and last: Buru people -[2018-02-13T00:29:23.706] [INFO] cheese - inserting 1000 documents. first: County Route 42 (Rensselaer County, New York) and last: TRIM31 (gene) -[2018-02-13T00:29:23.716] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:23.737] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:29:23.739] [INFO] cheese - inserting 1000 documents. first: Email advertising and last: SoCal -[2018-02-13T00:29:23.743] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:29:23.789] [INFO] cheese - inserting 1000 documents. first: Cigarettes & Saints and last: Uniclam -[2018-02-13T00:29:23.821] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T00:29:23.830] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:29:23.980] [INFO] cheese - inserting 1000 documents. first: St. Albert the Great Elementary School (Kentucky) and last: Niall-Iain McDonald -[2018-02-13T00:29:23.995] [INFO] cheese - inserting 1000 documents. first: STMN2 (gene) and last: File:Feelin's.jpg -[2018-02-13T00:29:24.023] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:29:24.038] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:29:24.097] [INFO] cheese - inserting 1000 documents. first: Alfred Dwight Foster Hamlin and last: Piotrkow Statutes -[2018-02-13T00:29:24.128] [INFO] cheese - inserting 1000 documents. first: File:Hosiden-logo.png and last: Turkmenistan League -[2018-02-13T00:29:24.159] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:29:24.161] [INFO] cheese - inserting 1000 documents. first: Temperature (game theory) and last: Seiha English Academy -[2018-02-13T00:29:24.169] [INFO] cheese - inserting 1000 documents. first: Marché du Porc Breton and last: Cryptosporidium parvum virus 1 -[2018-02-13T00:29:24.182] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:24.215] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:29:24.223] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:24.396] [INFO] cheese - inserting 1000 documents. first: List of NASCAR all-time cup winners and last: ETV4 (gene) -[2018-02-13T00:29:24.429] [INFO] cheese - inserting 1000 documents. first: DNAase and last: Choristoneura occidentalis -[2018-02-13T00:29:24.431] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:24.480] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:29:24.575] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Barbara Samorajczyk and last: The Great Web Black-out -[2018-02-13T00:29:24.591] [INFO] cheese - inserting 1000 documents. first: Portal:Somerset/Selected article/22 and last: SS Helga -[2018-02-13T00:29:24.602] [INFO] cheese - inserting 1000 documents. first: Beebee gun and last: File:KGMB9 Logo 2007.png -[2018-02-13T00:29:24.622] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:29:24.656] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:24.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/White Trash Debutantes and last: Rodney Holman -[2018-02-13T00:29:24.690] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:29:24.734] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:29:24.788] [INFO] cheese - inserting 1000 documents. first: ALAS2 (gene) and last: Wikipedia:Articles for deletion/List of medical schools in Bahrain -[2018-02-13T00:29:24.790] [INFO] cheese - inserting 1000 documents. first: Andrés García and last: Musée de Cluny -- Musée national du Moyen Âge -[2018-02-13T00:29:24.820] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:29:24.859] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:29:24.950] [INFO] cheese - inserting 1000 documents. first: Category:Protests in Venezuela and last: Category:United Kingdom Acts of Parliament 1900 -[2018-02-13T00:29:25.006] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:29:25.041] [INFO] cheese - inserting 1000 documents. first: W.F. Ragle and last: John Lee Wortham -[2018-02-13T00:29:25.091] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:25.130] [INFO] cheese - inserting 1000 documents. first: Martin Riman and last: File:Kmos-tv-logo.png -[2018-02-13T00:29:25.174] [INFO] cheese - inserting 1000 documents. first: Thyon and last: Rosemarie Kother-Gabriel -[2018-02-13T00:29:25.180] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:29:25.231] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:25.254] [INFO] cheese - inserting 1000 documents. first: The Outcry and last: Molybdic -[2018-02-13T00:29:25.324] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:29:25.515] [INFO] cheese - inserting 1000 documents. first: File:Melvins vs. Minneapolis.jpg and last: KAT2A (gene) -[2018-02-13T00:29:25.543] [INFO] cheese - inserting 1000 documents. first: County Route 74 (Rensselaer County, New York) and last: Conway's group -[2018-02-13T00:29:25.594] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:29:25.646] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:25.658] [INFO] cheese - inserting 1000 documents. first: Bangor, County Mayo and last: Painless (House) -[2018-02-13T00:29:25.684] [INFO] cheese - inserting 1000 documents. first: Vladaya and last: Light (automobile) -[2018-02-13T00:29:25.754] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:29:25.761] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:29:25.906] [INFO] cheese - inserting 1000 documents. first: NR6A1 (gene) and last: HLA-A (gene) -[2018-02-13T00:29:25.932] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:29:25.938] [INFO] cheese - inserting 1000 documents. first: The Lady with the Unicorn and last: Big Cat -[2018-02-13T00:29:25.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jill Hardy and last: Clarkson Memorial -[2018-02-13T00:29:26.012] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T00:29:26.030] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:29:26.094] [INFO] cheese - inserting 1000 documents. first: Category:Masonic buildings in North Dakota and last: 屯昌县 -[2018-02-13T00:29:26.129] [INFO] cheese - inserting 1000 documents. first: Labyrint (disambiguation) and last: Category:2012 establishments in Maine -[2018-02-13T00:29:26.161] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:29:26.184] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:29:26.222] [INFO] cheese - inserting 1000 documents. first: Vallassinese dialect and last: USS Partridge -[2018-02-13T00:29:26.230] [INFO] cheese - inserting 1000 documents. first: Oskari Rissanen and last: David Mulhall -[2018-02-13T00:29:26.270] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:29:26.278] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:29:26.437] [INFO] cheese - inserting 1000 documents. first: Japalura major and last: CN Police -[2018-02-13T00:29:26.453] [INFO] cheese - inserting 1000 documents. first: Great Web Black-out and last: Morten Dons -[2018-02-13T00:29:26.461] [INFO] cheese - inserting 1000 documents. first: OR11L1 (gene) and last: History of religion in Ukraine -[2018-02-13T00:29:26.504] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:26.534] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:29:26.579] [INFO] cheese - batch complete in: 1.952 secs -[2018-02-13T00:29:26.713] [INFO] cheese - inserting 1000 documents. first: Vbuletin and last: Cesare Pronti -[2018-02-13T00:29:26.759] [INFO] cheese - inserting 1000 documents. first: Marcus Daly (politics) and last: Panamaram -[2018-02-13T00:29:26.763] [INFO] cheese - inserting 1000 documents. first: South Jasper Range and last: Râșdaș River -[2018-02-13T00:29:26.787] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:29:26.821] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:26.840] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:29:27.011] [INFO] cheese - inserting 1000 documents. first: Template:Comedy Central programming and last: OR10J3 (gene) -[2018-02-13T00:29:27.022] [INFO] cheese - inserting 1000 documents. first: Xbalanque and last: Washington Allston -[2018-02-13T00:29:27.059] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:29:27.124] [INFO] cheese - inserting 1000 documents. first: The Severn and last: Joshua Michael Marshall -[2018-02-13T00:29:27.136] [INFO] cheese - inserting 1000 documents. first: Deborah Joy and last: Template:Ethnic groups in Burma -[2018-02-13T00:29:27.159] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:29:27.212] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:29:27.233] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:29:27.327] [INFO] cheese - inserting 1000 documents. first: Raymond J. Reeves and last: File:Gorkamorka box.jpg -[2018-02-13T00:29:27.331] [INFO] cheese - inserting 1000 documents. first: OR13G1 (gene) and last: MRPS17 (gene) -[2018-02-13T00:29:27.350] [INFO] cheese - inserting 1000 documents. first: Payyampally and last: 2003 ABN AMRO World Tennis Tournament -[2018-02-13T00:29:27.354] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:29:27.356] [INFO] cheese - inserting 1000 documents. first: Pochi (song) and last: Low Intensity Conflict -[2018-02-13T00:29:27.376] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:29:27.411] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:29:27.457] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:27.594] [INFO] cheese - inserting 1000 documents. first: Template:Languages of Burma and last: Category:British religious workers -[2018-02-13T00:29:27.643] [INFO] cheese - inserting 1000 documents. first: Battle of Caldera and last: Punta Gorda Airport (disambiguation) -[2018-02-13T00:29:27.669] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:29:27.658] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:27.748] [INFO] cheese - inserting 1000 documents. first: Robert K. Futterman and last: 1971-72 Michigan Wolverines men's basketball team -[2018-02-13T00:29:27.772] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:29:28.075] [INFO] cheese - inserting 1000 documents. first: Rappbodeblick (oberhalb Eichenberg) and last: Ryan W. Pearson -[2018-02-13T00:29:28.129] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:28.156] [INFO] cheese - inserting 1000 documents. first: USS Maui (ARG-8) and last: Chile at the 1956 Summer Olympics -[2018-02-13T00:29:28.183] [INFO] cheese - inserting 1000 documents. first: Military Operation and last: Comparison of popular optical data-storage systems -[2018-02-13T00:29:28.216] [INFO] cheese - inserting 1000 documents. first: Korak, Nepal and last: JLS (Group) -[2018-02-13T00:29:28.248] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:29:28.261] [INFO] cheese - inserting 1000 documents. first: His Wife's Mother (1932 film) and last: Category:Reform in Morocco -[2018-02-13T00:29:28.265] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:29:28.274] [INFO] cheese - inserting 1000 documents. first: 1971-72 Rangers F.C. season and last: 1994-95 First Macedonian Football League -[2018-02-13T00:29:28.296] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:29:28.402] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:29:28.412] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:29:28.524] [INFO] cheese - inserting 1000 documents. first: Julianna Margulies and last: Compound noun -[2018-02-13T00:29:28.584] [INFO] cheese - inserting 1000 documents. first: Theophilus John Minton Syphax and last: SLC14A1 (gene) -[2018-02-13T00:29:28.631] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:29:28.701] [INFO] cheese - batch complete in: 1.542 secs -[2018-02-13T00:29:28.912] [INFO] cheese - inserting 1000 documents. first: SLC15A1 (gene) and last: CA8 (gene) -[2018-02-13T00:29:28.927] [INFO] cheese - inserting 1000 documents. first: 1994-95 French Division 1 and last: Slammerverse -[2018-02-13T00:29:29.002] [INFO] cheese - inserting 1000 documents. first: Eye to Eye (UK TV series) and last: The Sharyn River -[2018-02-13T00:29:29.018] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:29:29.051] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:29:29.067] [INFO] cheese - inserting 1000 documents. first: Lamar Trotti and last: West Barsham -[2018-02-13T00:29:29.074] [INFO] cheese - inserting 1000 documents. first: File:NASCARcampworldseries.png and last: File:Ndcv.png -[2018-02-13T00:29:29.075] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:29:29.138] [INFO] cheese - inserting 1000 documents. first: 2000 Arizona Diamondbacks season and last: AMS-204 -[2018-02-13T00:29:29.179] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:29:29.218] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:29:29.240] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:29:29.350] [INFO] cheese - inserting 1000 documents. first: Allan Robin Winston Hancox and last: HVCN1 (gene) -[2018-02-13T00:29:29.356] [INFO] cheese - inserting 1000 documents. first: 2004-05 Newcastle United F.C. season and last: 2010-11 in Argentine football -[2018-02-13T00:29:29.376] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:29:29.377] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:29:29.580] [INFO] cheese - inserting 1000 documents. first: USA D.O.D. and last: NREP (gene) -[2018-02-13T00:29:29.607] [INFO] cheese - inserting 1000 documents. first: Template:1971 NL Record vs. opponents/doc and last: Template:CRH color/doc -[2018-02-13T00:29:29.622] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:29:29.635] [INFO] cheese - inserting 1000 documents. first: S. Senadeera and last: File:Nicly.png -[2018-02-13T00:29:29.675] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:29:29.684] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:29:29.700] [INFO] cheese - inserting 1000 documents. first: James Craig Annan and last: Denmark-Tanzania relations -[2018-02-13T00:29:29.700] [INFO] cheese - inserting 1000 documents. first: Compound adjective and last: Unary -[2018-02-13T00:29:29.754] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:29:29.775] [INFO] cheese - inserting 1000 documents. first: Pyotr Leonidovich Kapitsa and last: Studentereksamen -[2018-02-13T00:29:29.776] [INFO] cheese - inserting 1000 documents. first: Aid Convoy and last: Turn Island -[2018-02-13T00:29:29.780] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T00:29:29.839] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:29:29.857] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:29:29.898] [INFO] cheese - inserting 1000 documents. first: COPS2 (gene) and last: Nfsug -[2018-02-13T00:29:29.932] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:29:30.013] [INFO] cheese - inserting 1000 documents. first: Denmark-Uganda relations and last: Netherlands Football League Championship 1902-03 -[2018-02-13T00:29:30.049] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:29:30.108] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sumire (model, born 1990) and last: Category:Houses in Larimer County, Colorado -[2018-02-13T00:29:30.167] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:29:30.186] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Jack Sholder and last: File:Blackadder archbishop.jpg -[2018-02-13T00:29:30.239] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:29:30.299] [INFO] cheese - inserting 1000 documents. first: File:Nicma.png and last: File:Jurongwestavenue1.jpg -[2018-02-13T00:29:30.387] [INFO] cheese - inserting 1000 documents. first: Netherlands Football League Championship 1903-04 and last: Arizona desert centipede -[2018-02-13T00:29:30.388] [INFO] cheese - inserting 1000 documents. first: Dowel bar retrofit and last: Media in Topeka, Kansas -[2018-02-13T00:29:30.398] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:29:30.442] [INFO] cheese - inserting 1000 documents. first: File:Th artcgirlz-1.jpg and last: Pseudopezicula tracheiphila -[2018-02-13T00:29:30.447] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:29:30.460] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:29:30.528] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:29:30.583] [INFO] cheese - inserting 1000 documents. first: Southwark Bridge and last: Socialist Worker's Party -[2018-02-13T00:29:30.641] [INFO] cheese - inserting 1000 documents. first: Amsterdamse Poort (Haarlem) and last: Hamoud Abdullah Hamoud Hassan Al Wady -[2018-02-13T00:29:30.666] [INFO] cheese - inserting 1000 documents. first: Mais Gate and last: Best Direction Award (Locarno International Film Festival) -[2018-02-13T00:29:30.676] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:29:30.678] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:29:30.713] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:30.838] [INFO] cheese - inserting 1000 documents. first: Simeon Slavchev and last: Eugène Barthe -[2018-02-13T00:29:30.897] [INFO] cheese - inserting 1000 documents. first: Justice Taylor and last: Waclaw Szamotulczyk -[2018-02-13T00:29:30.903] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:29:30.953] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:30.969] [INFO] cheese - inserting 1000 documents. first: I am the Walrus and last: File:RootsManuva BrandNewSecondHand albumcover.jpg -[2018-02-13T00:29:31.010] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:29:31.035] [INFO] cheese - inserting 1000 documents. first: Anne & Serge Golon and last: Time and Again (Voyager episode) -[2018-02-13T00:29:31.099] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:29:31.161] [INFO] cheese - inserting 1000 documents. first: Portal:Machine learning/Selected picture and last: Boxun.com -[2018-02-13T00:29:31.197] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:29:31.266] [INFO] cheese - inserting 1000 documents. first: Template:User Chitrapur Saraswat Brahmin and last: File:George and Tammy and Tina.jpg -[2018-02-13T00:29:31.303] [INFO] cheese - inserting 1000 documents. first: Hinko Bauer and last: 2013 Indian Grand Prix -[2018-02-13T00:29:31.311] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:31.514] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:29:31.571] [INFO] cheese - inserting 1000 documents. first: Northampton massachusetts and last: File:University at buffalo 006.JPG -[2018-02-13T00:29:31.608] [INFO] cheese - inserting 1000 documents. first: US Goverment and last: Zdzislaw Kasprzak -[2018-02-13T00:29:31.657] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:29:31.674] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:29:31.724] [INFO] cheese - inserting 1000 documents. first: Diego de la Vega and last: Joe Tex -[2018-02-13T00:29:31.756] [INFO] cheese - inserting 1000 documents. first: KOI-2124.01 and last: Wikipedia:Today's featured article/requests/Serpens -[2018-02-13T00:29:31.817] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T00:29:31.859] [INFO] cheese - inserting 1000 documents. first: File:RootsManuva RunComeSaveMe albumcover.jpg and last: Elizabeth Catlett -[2018-02-13T00:29:31.867] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:31.950] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:29:32.080] [INFO] cheese - inserting 1000 documents. first: Slob, U.S. Virgin Islands and last: La Loba (Mexican Telenovela) -[2018-02-13T00:29:32.126] [INFO] cheese - inserting 1000 documents. first: 2013 Abu Dhabi Grand Prix and last: Craspedia nigristellata -[2018-02-13T00:29:32.171] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:29:32.195] [INFO] cheese - inserting 1000 documents. first: File:PanPacificChamp08.png and last: Binkley brothers dixie clodhoppers -[2018-02-13T00:29:32.211] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:29:32.215] [INFO] cheese - inserting 1000 documents. first: Al-Madhbah and last: Robert Chisholm (disambiguation) -[2018-02-13T00:29:32.269] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:32.303] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:29:32.478] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sleepyhead (band) and last: Athrips pallida -[2018-02-13T00:29:32.631] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:29:32.711] [INFO] cheese - inserting 1000 documents. first: Ron Lynch (American football) and last: 遼陽 -[2018-02-13T00:29:32.711] [INFO] cheese - inserting 1000 documents. first: Treaty of Vienna and last: Wikipedia:Peer review/Military history of African Americans -[2018-02-13T00:29:32.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Most-wanted articles/old and last: Kashkevar, Markazi -[2018-02-13T00:29:32.762] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:29:32.770] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:29:32.778] [INFO] cheese - inserting 1000 documents. first: Amigo (disambiguation) and last: Kituwa -[2018-02-13T00:29:32.824] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian documentary filmmakers and last: Massacre in Dhaka University during 1971 -[2018-02-13T00:29:32.826] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:32.846] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:29:32.898] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:29:32.992] [INFO] cheese - inserting 1000 documents. first: Richard Lewontin and last: Ferenc Mádl -[2018-02-13T00:29:33.088] [INFO] cheese - batch complete in: 1.271 secs -[2018-02-13T00:29:33.130] [INFO] cheese - inserting 1000 documents. first: Athrips punctosa and last: Padus rufula -[2018-02-13T00:29:33.148] [INFO] cheese - inserting 1000 documents. first: Big Man (comics) and last: Wenchow -[2018-02-13T00:29:33.176] [INFO] cheese - inserting 1000 documents. first: Dynaponics and last: Siege of Ochakov (1737) -[2018-02-13T00:29:33.189] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:29:33.204] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:29:33.216] [INFO] cheese - inserting 1000 documents. first: Tarkan discography and last: File:KEUV31.png -[2018-02-13T00:29:33.255] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:29:33.296] [INFO] cheese - inserting 1000 documents. first: Tā marbuta and last: File:SaintPetersburgTimesRussiaLogo.png -[2018-02-13T00:29:33.300] [INFO] cheese - inserting 1000 documents. first: Khunjerab National Park and last: Wikipedia:Articles for deletion/Angels Wake -[2018-02-13T00:29:33.329] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:29:33.358] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:33.385] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:33.613] [INFO] cheese - inserting 1000 documents. first: Jack McCarthy (baseball) and last: The Court -[2018-02-13T00:29:33.653] [INFO] cheese - inserting 1000 documents. first: Al `Ujaylat and last: Mary D. Glasspool -[2018-02-13T00:29:33.752] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:33.749] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:29:33.780] [INFO] cheese - inserting 1000 documents. first: Category:Australian television-related lists and last: Ugo, re d'Italia -[2018-02-13T00:29:33.808] [INFO] cheese - inserting 1000 documents. first: File:Saintplayer blue.png and last: List of asteroids/74001–75000 -[2018-02-13T00:29:33.849] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:29:33.871] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:29:33.950] [INFO] cheese - inserting 1000 documents. first: Prunus parksii and last: Prophet (Islam) -[2018-02-13T00:29:34.019] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:29:34.037] [INFO] cheese - inserting 1000 documents. first: Understudy and last: Patrick Leahy -[2018-02-13T00:29:34.056] [INFO] cheese - inserting 1000 documents. first: Lancaster Regional Airport and last: Alois Riehl -[2018-02-13T00:29:34.116] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T00:29:34.121] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:29:34.132] [INFO] cheese - inserting 1000 documents. first: Category:Internet soap operas and last: File:Borzsony badge.jpg -[2018-02-13T00:29:34.188] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:29:34.249] [INFO] cheese - inserting 1000 documents. first: Lawrence (Seaford, Delaware) and last: 462nd Tactical Fighter Squadron -[2018-02-13T00:29:34.256] [INFO] cheese - inserting 1000 documents. first: 🎽 and last: Category:Republic of China people by occupation -[2018-02-13T00:29:34.277] [INFO] cheese - inserting 1000 documents. first: List of asteroids/73001–74000 and last: Akira Matsunaga -[2018-02-13T00:29:34.290] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:29:34.307] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:34.320] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:29:34.412] [INFO] cheese - inserting 1000 documents. first: Bhoirgaon and last: File:Noi siamo le colonne vittorio de sica luigi filippo damico pcsi.jpg -[2018-02-13T00:29:34.452] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:34.550] [INFO] cheese - inserting 1000 documents. first: 38 (Irish) Brigade and last: Category:German-American culture in New Jersey -[2018-02-13T00:29:34.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Rugby league/to do and last: Security breach notification laws -[2018-02-13T00:29:34.603] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:29:34.611] [INFO] cheese - inserting 1000 documents. first: Pumping on Your Stereo and last: Diocese of Chelmsford -[2018-02-13T00:29:34.642] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:34.661] [INFO] cheese - inserting 1000 documents. first: Derby-Shelton Bridge and last: File:The Telegraph (Calcutta).png -[2018-02-13T00:29:34.669] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:29:34.724] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Huggle/No you can't have instant reverts and last: Category:Dayton Flyers -[2018-02-13T00:29:34.724] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:29:34.799] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:29:34.876] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Legislative Council of Fiji by ethnicity and last: Khiêm Lăng -[2018-02-13T00:29:34.938] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:29:34.947] [INFO] cheese - inserting 1000 documents. first: Lisa Murkowski and last: Fushengji shi -[2018-02-13T00:29:35.022] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:29:35.112] [INFO] cheese - inserting 1000 documents. first: Category:Swedish directors and last: Travis London -[2018-02-13T00:29:35.174] [INFO] cheese - inserting 1000 documents. first: Kidney Diseases and last: Kranji Mile -[2018-02-13T00:29:35.199] [INFO] cheese - inserting 1000 documents. first: Europarl TV and last: Category:Songwriters from Hawaii -[2018-02-13T00:29:35.203] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:29:35.218] [INFO] cheese - inserting 1000 documents. first: Acanthosicyos naudinianus and last: Manlius, NY -[2018-02-13T00:29:35.238] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:35.249] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:29:35.299] [INFO] cheese - inserting 1000 documents. first: "Lucian Blaga" University of Sibiu and last: Standup fighting -[2018-02-13T00:29:35.359] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:29:35.399] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:29:35.416] [INFO] cheese - inserting 1000 documents. first: World of Silence and last: Lycee Victor Hugo (Sofia) -[2018-02-13T00:29:35.535] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:29:35.660] [INFO] cheese - inserting 1000 documents. first: Vento di ponente (television series) and last: Who I Am (book) -[2018-02-13T00:29:35.695] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:29:35.768] [INFO] cheese - inserting 1000 documents. first: Gass the band and last: Shirley Adele Field -[2018-02-13T00:29:35.816] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:29:35.883] [INFO] cheese - inserting 1000 documents. first: Template:Nippon Professional Baseball Seasons and last: Julius Shaambeni Shilongo Mnyika -[2018-02-13T00:29:35.962] [INFO] cheese - inserting 1000 documents. first: Theodore Wright and last: First Sale Doctrine -[2018-02-13T00:29:36.022] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:29:36.082] [INFO] cheese - inserting 1000 documents. first: Marinier Archipelago and last: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2015 August 13 -[2018-02-13T00:29:36.082] [INFO] cheese - inserting 1000 documents. first: Standup fight and last: Cangaceiro -[2018-02-13T00:29:36.088] [INFO] cheese - inserting 1000 documents. first: Ellery Albee Hibbard and last: Raul Alcala -[2018-02-13T00:29:36.122] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T00:29:36.161] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:29:36.169] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:29:36.175] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:29:36.231] [INFO] cheese - inserting 1000 documents. first: Niall Dickson and last: Category:Argentine nobility -[2018-02-13T00:29:36.262] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:29:36.390] [INFO] cheese - inserting 1000 documents. first: Fukuhara and last: Vojsko, Vodice -[2018-02-13T00:29:36.466] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:29:36.520] [INFO] cheese - inserting 1000 documents. first: Climate zones by altitude and last: ER de Belgrade -[2018-02-13T00:29:36.531] [INFO] cheese - inserting 1000 documents. first: Category:Houses in Sioux County, Iowa and last: Gelechia obscurosuffusella -[2018-02-13T00:29:36.559] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:29:36.566] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:36.617] [INFO] cheese - inserting 1000 documents. first: Category:Policy debate and last: Template:Birmingham Landmarks -[2018-02-13T00:29:36.663] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:29:36.668] [INFO] cheese - inserting 1000 documents. first: File:Phyllis Iolanthe and Strephon.jpg and last: Phytotaxonomic -[2018-02-13T00:29:36.672] [INFO] cheese - inserting 1000 documents. first: Carolina Beatriz Ângelo and last: Organogels -[2018-02-13T00:29:36.716] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:36.744] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:36.832] [INFO] cheese - inserting 1000 documents. first: Portal:Royal Air Force/Wikimedia and last: Mojinos Escozíos -[2018-02-13T00:29:36.872] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:29:36.895] [INFO] cheese - inserting 1000 documents. first: Neil Schyan Jeffers and last: Austin Planetarium -[2018-02-13T00:29:36.902] [INFO] cheese - inserting 1000 documents. first: Pear Tree House and last: Sørumsand -[2018-02-13T00:29:36.940] [INFO] cheese - inserting 1000 documents. first: Wild marijuana and last: Iran at the 2015 World Championships in Athletics -[2018-02-13T00:29:36.941] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:29:36.972] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:29:36.986] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:29:37.096] [INFO] cheese - inserting 1000 documents. first: Jerry kindall field at frank sancet stadium and last: Powderfinger discography -[2018-02-13T00:29:37.141] [INFO] cheese - inserting 1000 documents. first: Deutsch-Stamora and last: Category:Tourist attractions in Binghamton, New York -[2018-02-13T00:29:37.247] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:29:37.262] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:37.300] [INFO] cheese - inserting 1000 documents. first: Royal College of Pathologists of Australasia and last: Johnny O’Keefe -[2018-02-13T00:29:37.464] [INFO] cheese - inserting 1000 documents. first: Bohumil Sládek and last: Vasyl Anatoliyovich Lomachenko -[2018-02-13T00:29:37.474] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:29:37.544] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:29:37.647] [INFO] cheese - inserting 1000 documents. first: Alison Cumings and last: Category:Fort Hays State Tigers men's basketball coaches -[2018-02-13T00:29:37.711] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:29:37.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Peer review/Ronald Skirth and last: Mizerable -[2018-02-13T00:29:37.944] [INFO] cheese - inserting 1000 documents. first: Category:Cape Verde national football team navigational boxes and last: Frances Isabella Duberly -[2018-02-13T00:29:37.964] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T00:29:37.992] [INFO] cheese - inserting 1000 documents. first: Meletinsky and last: The Popular Magazine -[2018-02-13T00:29:38.064] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:29:38.122] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:29:38.158] [INFO] cheese - inserting 1000 documents. first: 2FC and last: Pinning hold -[2018-02-13T00:29:38.186] [INFO] cheese - inserting 1000 documents. first: Ganglionic eminences and last: Meanings of asteroid names (113001-114000) -[2018-02-13T00:29:38.197] [INFO] cheese - inserting 1000 documents. first: List of Finance Ministers of France and last: Emergency Vets -[2018-02-13T00:29:38.265] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:29:38.260] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:29:38.338] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:29:38.394] [INFO] cheese - inserting 1000 documents. first: Wiehle–Reston East Station and last: Starlight (Warriors) -[2018-02-13T00:29:38.464] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:29:38.592] [INFO] cheese - inserting 1000 documents. first: ThDP and last: Bonython Park, Adelaide -[2018-02-13T00:29:38.696] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:29:38.706] [INFO] cheese - inserting 1000 documents. first: Category:Music of the Harry Potter films and last: Phanerochaete chrysorhizon -[2018-02-13T00:29:38.710] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wiesława Hunzvi and last: Clarence H. "Du" Burns Arena -[2018-02-13T00:29:38.774] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:29:38.777] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:29:38.846] [INFO] cheese - inserting 1000 documents. first: Oxford Pledge and last: List of shoe-throwing incidents -[2018-02-13T00:29:38.896] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:29:38.901] [INFO] cheese - inserting 1000 documents. first: Nothris kalevalella and last: Category:Future Elections -[2018-02-13T00:29:38.913] [INFO] cheese - inserting 1000 documents. first: The Notorious B.I.G. Duets: The Final Chapter and last: Walton family -[2018-02-13T00:29:38.963] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:29:38.984] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:29:39.113] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations located underground in Norway and last: Schaadt -[2018-02-13T00:29:39.162] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:29:39.345] [INFO] cheese - inserting 1000 documents. first: Whitney, West Virginia and last: Category:Swedish-American culture in Nebraska -[2018-02-13T00:29:39.364] [INFO] cheese - inserting 1000 documents. first: Phanerochaete radicata and last: History of automated adaptive instruction in computer applications -[2018-02-13T00:29:39.410] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:29:39.438] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:29:39.470] [INFO] cheese - inserting 1000 documents. first: Energies of God and last: Return To Castle Wolfenstein -[2018-02-13T00:29:39.511] [INFO] cheese - inserting 1000 documents. first: Mega TV Championship and last: L'album biango -[2018-02-13T00:29:39.536] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (Anatolian gods) and last: John James Hugh Henry Stewart-Murray, 7th Duke of Athole -[2018-02-13T00:29:39.553] [INFO] cheese - batch complete in: 1.215 secs -[2018-02-13T00:29:39.562] [INFO] cheese - inserting 1000 documents. first: Félicie Point and last: Catholic Art Quarterly -[2018-02-13T00:29:39.563] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:29:39.584] [INFO] cheese - inserting 1000 documents. first: Calabi-Yau four-fold and last: Leitrim Observer -[2018-02-13T00:29:39.603] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:29:39.607] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:29:39.643] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:29:39.796] [INFO] cheese - inserting 1000 documents. first: Category:British Columbia general election, 1941 results by riding and last: File:Un biglietto del tram.jpg -[2018-02-13T00:29:39.838] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:29:39.842] [INFO] cheese - inserting 1000 documents. first: Jim kennedy and last: Cecil Forsyth -[2018-02-13T00:29:39.887] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:29:39.933] [INFO] cheese - inserting 1000 documents. first: Template:Airports in Portugal and last: Category:Wildfowl & Wetlands Trust -[2018-02-13T00:29:39.936] [INFO] cheese - inserting 1000 documents. first: Nothing to Lose (S'Express song) and last: Baba Hafusa -[2018-02-13T00:29:39.968] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:39.991] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:29:40.058] [INFO] cheese - inserting 1000 documents. first: Essential supremum and essential infimum and last: File:MersenneLargest.png -[2018-02-13T00:29:40.073] [INFO] cheese - inserting 1000 documents. first: Template:Lotr and last: Mamadou Camara -[2018-02-13T00:29:40.119] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:29:40.160] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:29:40.274] [INFO] cheese - inserting 1000 documents. first: Category:Hedningarna compilation albums and last: File:Idle No More 2013 c.jpg -[2018-02-13T00:29:40.338] [INFO] cheese - inserting 1000 documents. first: Sunday Arts and last: The Kane Family -[2018-02-13T00:29:40.342] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:40.410] [INFO] cheese - inserting 1000 documents. first: Gelechia palpialbella and last: Carolina Hall (University of North Carolina at Chapel Hill) -[2018-02-13T00:29:40.445] [INFO] cheese - inserting 1000 documents. first: RTCW and last: Phocoena -[2018-02-13T00:29:40.460] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:29:40.480] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:29:40.500] [INFO] cheese - inserting 1000 documents. first: So Nice (album) and last: 30th British Columbia general election -[2018-02-13T00:29:40.609] [INFO] cheese - inserting 1000 documents. first: Hyperdrive (storage) and last: I Don't Want to Be Your Friend -[2018-02-13T00:29:40.617] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:29:40.621] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:29:40.697] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:29:40.779] [INFO] cheese - inserting 1000 documents. first: Remire-Montjoly and last: The Blackstone Hotel -[2018-02-13T00:29:40.859] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:29:40.869] [INFO] cheese - inserting 1000 documents. first: Category:Italian actresses and last: Saint Doulchard -[2018-02-13T00:29:40.928] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:29:40.944] [INFO] cheese - inserting 1000 documents. first: Fairfield Township, Tuscarawas County, OH and last: Union Township, Belmont County, OH -[2018-02-13T00:29:40.977] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:29:41.000] [INFO] cheese - inserting 1000 documents. first: Braemar, New South Wales and last: Celeia -[2018-02-13T00:29:41.015] [INFO] cheese - inserting 1000 documents. first: 31st British Columbia general election and last: Remscheid Dam -[2018-02-13T00:29:41.052] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:29:41.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Sustainable Development Goals and last: List of Australian Prank Patrol episodes (series 1) -[2018-02-13T00:29:41.069] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:41.130] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:41.289] [INFO] cheese - inserting 1000 documents. first: Union Township, Brown County, OH and last: Hermann Buchner (SS officer) -[2018-02-13T00:29:41.332] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:29:41.380] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1932 Summer Olympics – Men's double sculls and last: Template:Did you know nominations/William Vane, 2nd Viscount Vane -[2018-02-13T00:29:41.400] [INFO] cheese - inserting 1000 documents. first: Category:Portal-Class Maryland articles and last: Lofty Promenade -[2018-02-13T00:29:41.433] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:41.437] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:29:41.477] [INFO] cheese - inserting 1000 documents. first: List of American films of 1943 and last: Blige -[2018-02-13T00:29:41.542] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:29:41.549] [INFO] cheese - inserting 1000 documents. first: Beaufortia incana and last: 316th Composite Wing -[2018-02-13T00:29:41.626] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:29:41.644] [INFO] cheese - inserting 1000 documents. first: Julia Maesa and last: Victoria Ka'iulani -[2018-02-13T00:29:41.694] [INFO] cheese - inserting 1000 documents. first: UNOSOM and last: We are Voice and Rhythm Only -[2018-02-13T00:29:41.705] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:29:41.731] [INFO] cheese - inserting 1000 documents. first: Everhardt Franßen and last: Tanglewood (Akron, Alabama) -[2018-02-13T00:29:41.773] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:29:41.775] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:29:41.845] [INFO] cheese - inserting 1000 documents. first: Japanese government-issued rupee in Burma and last: Category:Olympic athletes of Upper Volta -[2018-02-13T00:29:41.870] [INFO] cheese - inserting 1000 documents. first: Mount Minami-heito and last: Template:1981 Toronto Blue Jays season game log -[2018-02-13T00:29:41.888] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:29:41.904] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:29:42.004] [INFO] cheese - inserting 1000 documents. first: IOCL and last: Vicesimus Blenkinsop -[2018-02-13T00:29:42.039] [INFO] cheese - inserting 1000 documents. first: Bertie's Brochures and last: William L. Storrs -[2018-02-13T00:29:42.040] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:29:42.107] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:42.206] [INFO] cheese - inserting 1000 documents. first: In the Bush and last: St. Charles High School, Minnesota -[2018-02-13T00:29:42.210] [INFO] cheese - inserting 1000 documents. first: Template:WashingtonDC-stub and last: James Allen (linebacker) -[2018-02-13T00:29:42.235] [INFO] cheese - inserting 1000 documents. first: Hugh Awdeley and last: Koma Kulshan -[2018-02-13T00:29:42.242] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:29:42.251] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Coahomasuchus and last: ICAAP -[2018-02-13T00:29:42.266] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:29:42.292] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:29:42.313] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:29:42.503] [INFO] cheese - inserting 1000 documents. first: File:Teenage Shutdown! The World Ain't Round it's Square.JPEG.jpg and last: Category:Houses in Monroe County, Mississippi -[2018-02-13T00:29:42.547] [INFO] cheese - inserting 1000 documents. first: 2000 in science and last: Walrein -[2018-02-13T00:29:42.551] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:42.557] [INFO] cheese - inserting 1000 documents. first: St. Charles West High School, Missouri and last: Neha Hinge -[2018-02-13T00:29:42.569] [INFO] cheese - inserting 1000 documents. first: Category:People from Drenthe and last: Template:Podilsko-Vyhurivska Line -[2018-02-13T00:29:42.600] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:29:42.605] [INFO] cheese - inserting 1000 documents. first: Irasaiah Ilanthirayan and last: Depron -[2018-02-13T00:29:42.621] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:42.639] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:29:42.671] [INFO] cheese - inserting 1000 documents. first: DJ CXL and last: Morton Norton Cohen -[2018-02-13T00:29:42.682] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:29:42.810] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:42.856] [INFO] cheese - inserting 1000 documents. first: God’s American Israel and last: DMCRA -[2018-02-13T00:29:42.923] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:29:42.963] [INFO] cheese - inserting 1000 documents. first: The Run to the Roses and last: Template:Did you know nominations/Beth Rivkah -[2018-02-13T00:29:42.990] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:29:43.065] [INFO] cheese - inserting 1000 documents. first: Giovanni Poggi and last: Template:Editnotices/Page/Empress Quan Huijie -[2018-02-13T00:29:43.117] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:29:43.198] [INFO] cheese - inserting 1000 documents. first: WindEurope and last: Goslings and Sharpe -[2018-02-13T00:29:43.214] [INFO] cheese - inserting 1000 documents. first: Natural anti-cancer:Pancratistatin and last: 1951 USC Trojans football team -[2018-02-13T00:29:43.227] [INFO] cheese - inserting 1000 documents. first: Category:Quad Cities Cubs players and last: Heale Peak -[2018-02-13T00:29:43.243] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:29:43.266] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:29:43.270] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:43.343] [INFO] cheese - inserting 1000 documents. first: Category:Ice hockey clubs established in 2009 and last: Khanpur Mahar -[2018-02-13T00:29:43.345] [INFO] cheese - inserting 1000 documents. first: Template:User WikiProject Russian federal subjects and last: Sarah Hogg, Viscountess Hailsham -[2018-02-13T00:29:43.389] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:43.410] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:29:43.471] [INFO] cheese - inserting 1000 documents. first: HD 20468 and last: Narcosis (Peruvian band) -[2018-02-13T00:29:43.552] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:43.667] [INFO] cheese - inserting 1000 documents. first: Kecleon and last: Moleskin -[2018-02-13T00:29:43.698] [INFO] cheese - inserting 1000 documents. first: Category:Albanian-language poets and last: Caia (plant) -[2018-02-13T00:29:43.726] [INFO] cheese - inserting 1000 documents. first: Parametric representation and last: Ar'ara al-Naqab -[2018-02-13T00:29:43.732] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:29:43.750] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:43.789] [INFO] cheese - inserting 1000 documents. first: Borderliners and last: Wikipedia:Articles for deletion/Mithunam -[2018-02-13T00:29:43.792] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:43.829] [INFO] cheese - inserting 1000 documents. first: All-Union Communist Party of Bolsheviks (1995) and last: La Misión de Corpus Christi de San Antonio de la Ysleta del Sur -[2018-02-13T00:29:43.861] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:43.904] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:29:43.942] [INFO] cheese - inserting 1000 documents. first: Dokudanjou Beauty and last: Emarginella -[2018-02-13T00:29:43.965] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:29:44.036] [INFO] cheese - inserting 1000 documents. first: KaitO and last: Aniakchak Crater -[2018-02-13T00:29:44.096] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:29:44.102] [INFO] cheese - inserting 1000 documents. first: Arkansas Highway 876 and last: Maxis Taxi -[2018-02-13T00:29:44.143] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:29:44.257] [INFO] cheese - inserting 1000 documents. first: Quinnipiac Bobcats basketball and last: White edged coleotechnites Moth -[2018-02-13T00:29:44.269] [INFO] cheese - inserting 1000 documents. first: Henry Hopkins and last: I Can't Hear The Music -[2018-02-13T00:29:44.292] [INFO] cheese - inserting 1000 documents. first: Timeline of U.S. attack on Afghanistan in November 2001 and last: John B. Steele -[2018-02-13T00:29:44.301] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:29:44.322] [INFO] cheese - inserting 1000 documents. first: Irving Freese and last: Faule Renne -[2018-02-13T00:29:44.320] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:44.358] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:44.411] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:44.576] [INFO] cheese - inserting 1000 documents. first: The Jug and last: Ritarihalli -[2018-02-13T00:29:44.596] [INFO] cheese - inserting 1000 documents. first: John Stagliano and last: Bayside -[2018-02-13T00:29:44.601] [INFO] cheese - inserting 1000 documents. first: White edged Coleotechnites moth and last: Day-Lewis (name) -[2018-02-13T00:29:44.634] [INFO] cheese - inserting 1000 documents. first: Hesse Peak and last: Kirchner Peak -[2018-02-13T00:29:44.689] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:29:44.734] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:44.752] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:29:44.756] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:29:44.823] [INFO] cheese - inserting 1000 documents. first: Titty Hill and last: The Very Best of - Rain, Rain, Beautiful Rain -[2018-02-13T00:29:44.876] [INFO] cheese - inserting 1000 documents. first: The Innocents (1987 film) and last: Category:Culture in Münster -[2018-02-13T00:29:44.894] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:29:44.946] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:29:44.955] [INFO] cheese - inserting 1000 documents. first: John B. Weber and last: Niederrieden -[2018-02-13T00:29:45.075] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:29:45.192] [INFO] cheese - inserting 1000 documents. first: 2014 Malaysia Open Superseries Premier and last: Crescent Heights, Texas -[2018-02-13T00:29:45.226] [INFO] cheese - inserting 1000 documents. first: Kirby Cone and last: 2011 2. Divisjon -[2018-02-13T00:29:45.232] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:29:45.278] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:29:45.316] [INFO] cheese - inserting 1000 documents. first: Nelson Mandella Gardens and last: Wikipedia:WikiProject Spam/LinkReports/img.webme.com -[2018-02-13T00:29:45.318] [INFO] cheese - inserting 1000 documents. first: 1980 Holiday Bowl and last: Meenkarappuzha -[2018-02-13T00:29:45.363] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/World Quest/Pokopon Pekōrya and last: Entry (film) -[2018-02-13T00:29:45.370] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:29:45.383] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:29:45.427] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:45.531] [INFO] cheese - inserting 1000 documents. first: Joseph Showalter Smith and last: WYFZ -[2018-02-13T00:29:45.585] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:45.634] [INFO] cheese - inserting 1000 documents. first: Category:17th century in Moldavia and last: Template:1901 NL Record vs. opponents -[2018-02-13T00:29:45.638] [INFO] cheese - inserting 1000 documents. first: Sunrise Glacier (Montana) and last: File:Lutessa Lena Luthor (Tess Mercer)-.jpg -[2018-02-13T00:29:45.670] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:29:45.686] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:29:45.781] [INFO] cheese - inserting 1000 documents. first: Thanskgiving Day and last: Thomas Nuttall -[2018-02-13T00:29:45.797] [INFO] cheese - inserting 1000 documents. first: Glossotrophia ghirshmani and last: Category:Films directed by Sudz Sutherland -[2018-02-13T00:29:45.818] [INFO] cheese - inserting 1000 documents. first: Glazoué and last: Category:Military units and formations of Czechoslovakia -[2018-02-13T00:29:45.827] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:29:45.847] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:29:45.856] [INFO] cheese - inserting 1000 documents. first: Lamin, Western Division and last: Madonna singles -[2018-02-13T00:29:45.875] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:45.921] [INFO] cheese - inserting 1000 documents. first: Joe Boley and last: Black Jack (Jericho) -[2018-02-13T00:29:45.935] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:29:45.973] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:29:46.010] [INFO] cheese - inserting 1000 documents. first: Category:Thailand Masters (badminton) and last: Kolebira block -[2018-02-13T00:29:46.045] [INFO] cheese - inserting 1000 documents. first: ATC-NS and last: Wikipedia:Requested articles/Social sciences/Geography, cities, regions and named places/Kosovo/Region 08 -[2018-02-13T00:29:46.057] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:29:46.120] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:29:46.195] [INFO] cheese - inserting 1000 documents. first: Aku Hirviniemi and last: Beazer (disambiguation) -[2018-02-13T00:29:46.291] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:46.364] [INFO] cheese - inserting 1000 documents. first: Master of Wilten and last: Jardins ethnobotaniques de la Gardie -[2018-02-13T00:29:46.426] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:29:46.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/IncidentArchive254 and last: Provadiya Hook -[2018-02-13T00:29:46.488] [INFO] cheese - inserting 1000 documents. first: Category:Devonian trilobites of Africa and last: Suresh Prasad Sarbadhikari -[2018-02-13T00:29:46.494] [INFO] cheese - inserting 1000 documents. first: Garden Key Light and last: Edge, Chester, Cheshire -[2018-02-13T00:29:46.504] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:29:46.554] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:46.566] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:29:46.649] [INFO] cheese - inserting 1000 documents. first: Studio crafts and last: Naruhiko -[2018-02-13T00:29:46.699] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:46.756] [INFO] cheese - inserting 1000 documents. first: Category:1560s in England and last: William Codrington -[2018-02-13T00:29:46.816] [INFO] cheese - inserting 1000 documents. first: Malcolm F. Brown and last: Wikipedia:WikiProject Dungeons & Dragons/backlog -[2018-02-13T00:29:46.816] [INFO] cheese - inserting 1000 documents. first: Arthur Helps and last: MediaWiki:Linktrail -[2018-02-13T00:29:46.816] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:29:46.857] [INFO] cheese - inserting 1000 documents. first: Category:Works by Bahram Beyzai and last: Hiding in Plain Sight -[2018-02-13T00:29:46.857] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:29:46.893] [INFO] cheese - inserting 1000 documents. first: The Search For The Next Doll and last: File:GranvilleasSD.jpg -[2018-02-13T00:29:46.899] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T00:29:46.911] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:29:46.943] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:29:47.083] [INFO] cheese - inserting 1000 documents. first: Hala Al Turk and last: Sayf ad-Dawlah -[2018-02-13T00:29:47.121] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:29:47.155] [INFO] cheese - inserting 1000 documents. first: ALCO Century 420 and last: Ignaz Boesendorfer -[2018-02-13T00:29:47.177] [INFO] cheese - inserting 1000 documents. first: Mega Mega Mega and last: Burtville -[2018-02-13T00:29:47.234] [INFO] cheese - inserting 1000 documents. first: Chen Yanxi and last: Jacob Vita Pardo -[2018-02-13T00:29:47.235] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:29:47.218] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:29:47.261] [INFO] cheese - inserting 1000 documents. first: Turnberry Associates and last: File:Prince William School map.png -[2018-02-13T00:29:47.465] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:29:47.538] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:29:47.675] [INFO] cheese - inserting 1000 documents. first: Alexander Ivanov-Kramskoi and last: Template:Infobox philosopher/doc -[2018-02-13T00:29:47.675] [INFO] cheese - inserting 1000 documents. first: Khasi Katha and last: Category:Sara Bareilles video albums -[2018-02-13T00:29:47.762] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:29:47.805] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:29:48.043] [INFO] cheese - inserting 1000 documents. first: Henry B. Lembeck and last: 1906 Uruguayan Primera Division -[2018-02-13T00:29:48.057] [INFO] cheese - inserting 1000 documents. first: Eric Wasmann and last: Category:Japanese people of Ghanaian descent -[2018-02-13T00:29:48.129] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Wikititlesuffix and last: Brittas Empire -[2018-02-13T00:29:48.133] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:29:48.142] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:29:48.174] [INFO] cheese - inserting 1000 documents. first: Siege of Itami (1574) and last: Litchfield, Northern Territory -[2018-02-13T00:29:48.215] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T00:29:48.247] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:29:48.257] [INFO] cheese - inserting 1000 documents. first: Old Bailey House and last: Life and Work of Ludwig van Beethoven -[2018-02-13T00:29:48.280] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Roel Reiné and last: Category:People from Pokrovsk Raion -[2018-02-13T00:29:48.314] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:29:48.330] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:29:48.392] [INFO] cheese - inserting 1000 documents. first: File:Pi-1.jpg and last: Wikipedia:Requests for comment/Magic Trick Instructions -[2018-02-13T00:29:48.436] [INFO] cheese - inserting 1000 documents. first: 1906–07 Nemzeti Bajnoksag I and last: 1995–96 Primera Divisio -[2018-02-13T00:29:48.458] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:29:48.461] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:29:48.564] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pcgamerweb.com and last: Gordon, Henry -[2018-02-13T00:29:48.598] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:29:48.651] [INFO] cheese - inserting 1000 documents. first: Second-order function and last: Mansfield Point -[2018-02-13T00:29:48.673] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:29:48.770] [INFO] cheese - inserting 1000 documents. first: List of municipal districts in Nova Scotia and last: Crepereia (gens) -[2018-02-13T00:29:48.780] [INFO] cheese - inserting 1000 documents. first: Mirza Muhammad Ali and last: El Hajj Aboubacar Somparé -[2018-02-13T00:29:48.844] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:48.855] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:29:48.880] [INFO] cheese - inserting 1000 documents. first: Glenn M. Anderson and last: Online training -[2018-02-13T00:29:48.905] [INFO] cheese - inserting 1000 documents. first: Lofting and last: Edmonton municipal election, 1913 -[2018-02-13T00:29:48.972] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:29:48.981] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:29:49.013] [INFO] cheese - inserting 1000 documents. first: Grady, Henry and last: K203EH -[2018-02-13T00:29:49.062] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:49.132] [INFO] cheese - inserting 1000 documents. first: 2010 Liege–Bastogne–Liege and last: ChEMBLdb -[2018-02-13T00:29:49.265] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:29:49.341] [INFO] cheese - inserting 1000 documents. first: Saint Vincent de Paul and last: John Agyekum Kufuor -[2018-02-13T00:29:49.492] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T00:29:49.507] [INFO] cheese - inserting 1000 documents. first: State Railway Workshops of Western Australia and last: Toxodont -[2018-02-13T00:29:49.513] [INFO] cheese - inserting 1000 documents. first: Atlamajalcingo del Monte (municipality) and last: Guangxi Institute for Nationality Studies -[2018-02-13T00:29:49.603] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:29:49.614] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:29:49.717] [INFO] cheese - inserting 1000 documents. first: Lise Deharme and last: Oleg Protsenko -[2018-02-13T00:29:49.722] [INFO] cheese - inserting 1000 documents. first: Museo Egizio, Florence and last: Yugoslavia/Zagreb -[2018-02-13T00:29:49.724] [INFO] cheese - inserting 1000 documents. first: File:Nymagpies.jpg and last: List of Tyler Perry's House of Payne episodes -[2018-02-13T00:29:49.778] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:29:49.785] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:29:49.776] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:29:49.845] [INFO] cheese - inserting 1000 documents. first: Category:1557 in Japan and last: Template:Fb team Gombe United -[2018-02-13T00:29:49.896] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:29:50.055] [INFO] cheese - inserting 1000 documents. first: Albert Edmunds Cahlan and last: Category:European American culture in Idaho -[2018-02-13T00:29:50.114] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:29:50.131] [INFO] cheese - inserting 1000 documents. first: Chicago band and last: Portal:Esperanto/Article of the month/August -[2018-02-13T00:29:50.161] [INFO] cheese - inserting 1000 documents. first: Template:Burma-archery-bio-stub and last: Category:Media of Sorsogon -[2018-02-13T00:29:50.189] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:29:50.212] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:50.481] [INFO] cheese - inserting 1000 documents. first: Szava and last: ELK (disambiguation) -[2018-02-13T00:29:50.538] [INFO] cheese - inserting 1000 documents. first: Draddy Gymnasium and last: Venerable Edmund Arrowsmith -[2018-02-13T00:29:50.611] [INFO] cheese - inserting 1000 documents. first: WA Conservation Council and last: File:Mayne Family Tomb.JPG -[2018-02-13T00:29:50.799] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:29:50.801] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T00:29:50.887] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:29:51.147] [INFO] cheese - inserting 1000 documents. first: The Beast (comic books) and last: James I of Cyprus -[2018-02-13T00:29:51.382] [INFO] cheese - batch complete in: 1.89 secs -[2018-02-13T00:29:51.410] [INFO] cheese - inserting 1000 documents. first: Category:Folk albums by Bangladeshi artists and last: Park Beom-ho -[2018-02-13T00:29:51.428] [INFO] cheese - inserting 1000 documents. first: Home organ and last: Boots (The Killers song) -[2018-02-13T00:29:51.461] [INFO] cheese - inserting 1000 documents. first: Malini & Co. and last: Wikipedia:Articles for deletion/Peace Lines NGO -[2018-02-13T00:29:51.496] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:29:51.504] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Did you know/17 and last: Drosera (disambiguation) -[2018-02-13T00:29:51.505] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T00:29:51.633] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T00:29:51.655] [INFO] cheese - batch complete in: 1.466 secs -[2018-02-13T00:29:51.725] [INFO] cheese - inserting 1000 documents. first: Long-horned bison and last: Portal:Western Sahara/Quotes -[2018-02-13T00:29:51.732] [INFO] cheese - inserting 1000 documents. first: 1685 in England and last: Lucile packard foundation for children's health -[2018-02-13T00:29:51.777] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:29:51.809] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:29:51.886] [INFO] cheese - inserting 1000 documents. first: E510 (disambiguation) and last: Jaungulbene -[2018-02-13T00:29:51.920] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:51.922] [INFO] cheese - inserting 1000 documents. first: Jesús Colón Berlingeri and last: John Huddart -[2018-02-13T00:29:51.973] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:52.014] [INFO] cheese - inserting 1000 documents. first: K204EX and last: Nidzica castle -[2018-02-13T00:29:52.055] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:29:52.096] [INFO] cheese - inserting 1000 documents. first: Mentschlekhkeyt and last: Vaikom Muhammed Bashir -[2018-02-13T00:29:52.259] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:29:52.324] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dr650.zenseeker.net and last: Wikipedia:WikiProject Spam/LinkReports/referer.us -[2018-02-13T00:29:52.337] [INFO] cheese - inserting 1000 documents. first: Soeharto and last: Resona -[2018-02-13T00:29:52.350] [INFO] cheese - inserting 1000 documents. first: Psikhelekedana and last: File:Openportal mascot.png -[2018-02-13T00:29:52.375] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:29:52.402] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox New Zealand land wars and last: Baldi, Bernardino -[2018-02-13T00:29:52.428] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:29:52.459] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:29:52.496] [INFO] cheese - inserting 1000 documents. first: David Pendleton and last: Szeleslevelu -[2018-02-13T00:29:52.554] [INFO] cheese - inserting 1000 documents. first: Nuestra (La Vida Bohème Album) and last: Draft:Howell Tatum -[2018-02-13T00:29:52.563] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:29:52.641] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:29:52.738] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:29:52.917] [INFO] cheese - inserting 1000 documents. first: Deb fruend and last: Lauzon (disambiguation) -[2018-02-13T00:29:52.969] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:29:53.055] [INFO] cheese - inserting 1000 documents. first: Elk Hill (Nellysford, Virginia) and last: Lee Gooch -[2018-02-13T00:29:53.156] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:29:53.158] [INFO] cheese - inserting 1000 documents. first: Final Smash and last: Laramide Orogeny -[2018-02-13T00:29:53.209] [INFO] cheese - inserting 1000 documents. first: South Australian Art Gallery and last: Reference re Provincial Court Judges -[2018-02-13T00:29:53.217] [INFO] cheese - inserting 1000 documents. first: Category:New York University School of Medicine faculty and last: Hello, Emma -[2018-02-13T00:29:53.236] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:29:53.257] [INFO] cheese - inserting 1000 documents. first: Category:Kenyan physicians and last: Prothylacinidae -[2018-02-13T00:29:53.265] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:29:53.289] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:29:53.315] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:29:53.402] [INFO] cheese - inserting 1000 documents. first: Terry McDonald (disambiguation) and last: Adolph I, Prince of Anhalt-Kothen -[2018-02-13T00:29:53.500] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:29:53.548] [INFO] cheese - inserting 1000 documents. first: Saint-Médard, Haute-Garonne and last: Officer Colicchio -[2018-02-13T00:29:53.596] [INFO] cheese - inserting 1000 documents. first: Wanna Play a Game? and last: Richter, Henry -[2018-02-13T00:29:53.602] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:29:53.642] [INFO] cheese - inserting 1000 documents. first: Resona impact and last: Allied Control Authority (ACA) -[2018-02-13T00:29:53.652] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:29:53.666] [INFO] cheese - inserting 1000 documents. first: Pep Kelly and last: The Story of Thor -[2018-02-13T00:29:53.689] [INFO] cheese - inserting 1000 documents. first: Mladý muž a bílá velryba and last: Meyrick Booth -[2018-02-13T00:29:53.712] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T00:29:53.721] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:53.728] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:29:53.742] [INFO] cheese - inserting 1000 documents. first: Voice Fantasia and last: Gulshan-e-Iqbal II -[2018-02-13T00:29:53.778] [INFO] cheese - inserting 1000 documents. first: Spulerina isonoma and last: Thomas and Friends – Series 1 -[2018-02-13T00:29:53.820] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:29:53.828] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:29:54.001] [INFO] cheese - inserting 1000 documents. first: Paolo Magrassi and last: Bürentogtokh, Khövsgöl -[2018-02-13T00:29:54.034] [INFO] cheese - inserting 1000 documents. first: Rowland, Henry and last: Kristina Háfoss -[2018-02-13T00:29:54.043] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:29:54.089] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:29:54.122] [INFO] cheese - inserting 1000 documents. first: Williamsburg Wizards and last: Workplaces -[2018-02-13T00:29:54.136] [INFO] cheese - inserting 1000 documents. first: Kathleen O'Connor (painter) and last: 1985–86 Clemson Tigers men's basketball team -[2018-02-13T00:29:54.150] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:29:54.174] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:54.177] [INFO] cheese - inserting 1000 documents. first: Macedonian numerals and last: Minuscule 44 -[2018-02-13T00:29:54.231] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:54.357] [INFO] cheese - inserting 1000 documents. first: Comalcalco and last: Moeraki -[2018-02-13T00:29:54.451] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:29:54.491] [INFO] cheese - inserting 1000 documents. first: Skata and last: Category:1994 in Namibia -[2018-02-13T00:29:54.507] [INFO] cheese - inserting 1000 documents. first: Polyarteritis nodos and last: Quercus subera -[2018-02-13T00:29:54.530] [INFO] cheese - inserting 1000 documents. first: D&E Entertainment and last: Sporting KC -[2018-02-13T00:29:54.536] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:29:54.537] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:29:54.574] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:54.611] [INFO] cheese - inserting 1000 documents. first: Farmington Canal State Park Trail and last: Liberal Democrat Party (Turkey) -[2018-02-13T00:29:54.666] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:29:54.692] [INFO] cheese - inserting 1000 documents. first: Akkrum and last: Wikipedia:Village pump/December 2003 archive 2 -[2018-02-13T00:29:54.755] [INFO] cheese - inserting 1000 documents. first: Template:Reference necessary/doc and last: WABG (AM) -[2018-02-13T00:29:54.789] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:29:54.817] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:29:54.897] [INFO] cheese - inserting 1000 documents. first: Category:Filipino people of Scottish descent and last: Aleksandrow, Nowy Dwor Mazowiecki County -[2018-02-13T00:29:54.910] [INFO] cheese - inserting 1000 documents. first: Template:New Zealand Squad 1988 Women's Cricket World Cup and last: K211FR -[2018-02-13T00:29:54.926] [INFO] cheese - inserting 1000 documents. first: Chotec and last: Camptonville, California -[2018-02-13T00:29:54.949] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:29:54.983] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:54.994] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:55.115] [INFO] cheese - inserting 1000 documents. first: Tiguentourine and last: File:MTV2 Guy Code.jpg -[2018-02-13T00:29:55.178] [INFO] cheese - inserting 1000 documents. first: Madame irma and last: Unwan -[2018-02-13T00:29:55.268] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:29:55.316] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:29:55.410] [INFO] cheese - inserting 1000 documents. first: Antonio Carlos Ortega and last: Galactic Orbiting Robot Force -[2018-02-13T00:29:55.468] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:29:55.524] [INFO] cheese - inserting 1000 documents. first: Aleksandrow, Opole Voivodeship and last: Karl-Heinrich Welzel -[2018-02-13T00:29:55.547] [INFO] cheese - inserting 1000 documents. first: EP1 receptor and last: Wikipedia:WikiProject Spam/Local/howtogetintograduateschool.com -[2018-02-13T00:29:55.565] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:29:55.616] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:29:55.675] [INFO] cheese - inserting 1000 documents. first: Sanfjallet and last: Wikipedia:Articles for deletion/Admiral Freebee -[2018-02-13T00:29:55.705] [INFO] cheese - inserting 1000 documents. first: Trusina case and last: 1 January 2013 -[2018-02-13T00:29:55.716] [INFO] cheese - inserting 1000 documents. first: Template:1973/74 Richmond dual premiership players and last: CAVLC -[2018-02-13T00:29:55.728] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:29:55.742] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:55.776] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:55.831] [INFO] cheese - inserting 1000 documents. first: Abolhassan Banisadr and last: Once & Again -[2018-02-13T00:29:55.833] [INFO] cheese - inserting 1000 documents. first: Time to React – Live! and last: Dave Hoskins -[2018-02-13T00:29:55.884] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:29:55.897] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T00:29:55.979] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/WikiD Writing Workshop Melbourne September 2015 and last: Quercus barbanthera -[2018-02-13T00:29:55.992] [INFO] cheese - inserting 1000 documents. first: Turbidity meter and last: Santuccione -[2018-02-13T00:29:56.028] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:56.033] [INFO] cheese - inserting 1000 documents. first: K22FS-D and last: VDE (disambiguation) -[2018-02-13T00:29:56.072] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:29:56.083] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:29:56.126] [INFO] cheese - inserting 1000 documents. first: Around The Way Girl and last: File:Teenage Fanclub Live 2003.JPG -[2018-02-13T00:29:56.170] [INFO] cheese - inserting 1000 documents. first: Texan flag and last: Almost Grown -[2018-02-13T00:29:56.176] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:29:56.184] [INFO] cheese - inserting 1000 documents. first: KLSR-TV and last: Andrew P. O'Rourke -[2018-02-13T00:29:56.211] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:29:56.232] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:56.340] [INFO] cheese - inserting 1000 documents. first: Quercus barbeyana and last: Queen Amina Statue -[2018-02-13T00:29:56.377] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:29:56.440] [INFO] cheese - inserting 1000 documents. first: Urine cytology and last: Academy of Fine Arts Karlsruhe -[2018-02-13T00:29:56.458] [INFO] cheese - inserting 1000 documents. first: Category:Disasters in New Brunswick and last: Julia kwan -[2018-02-13T00:29:56.461] [INFO] cheese - inserting 1000 documents. first: Woman of the World (disambiguation) and last: Bill Ballenger -[2018-02-13T00:29:56.535] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:29:56.558] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:29:56.623] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:29:56.739] [INFO] cheese - inserting 1000 documents. first: File:Senator Xenophon Pierce.jpg and last: File:FarelDalrymple APE04.jpg -[2018-02-13T00:29:56.780] [INFO] cheese - inserting 1000 documents. first: La Spezia-Rimini line and last: File:Mister Jones.jpg -[2018-02-13T00:29:56.790] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:29:56.868] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:29:56.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2015 September and last: Fremantle School building -[2018-02-13T00:29:56.899] [INFO] cheese - inserting 1000 documents. first: Honours of the Principality of Wales and last: Charolais cattle -[2018-02-13T00:29:56.934] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:29:56.946] [INFO] cheese - inserting 1000 documents. first: Action of 14 February 1944 and last: Wikipedia:WikiProject Spam/LinkReports/mikroe.com -[2018-02-13T00:29:56.973] [INFO] cheese - inserting 1000 documents. first: Category:Endosymbiotic events and last: Pontifical Confutation of the Augsburg Confession -[2018-02-13T00:29:56.973] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:29:56.976] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:29:57.017] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:29:57.128] [INFO] cheese - inserting 1000 documents. first: Greek Macedonian Empire and last: Red Sox Hitting Coach -[2018-02-13T00:29:57.207] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:29:57.218] [INFO] cheese - inserting 1000 documents. first: Huautla (municipality of Hidalgo) and last: Mr Justice Blackburn -[2018-02-13T00:29:57.248] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mikroe.com and last: Andras Visky -[2018-02-13T00:29:57.259] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:57.275] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:29:57.335] [INFO] cheese - inserting 1000 documents. first: Banyash Roumanians and last: Ruby (1992 film) -[2018-02-13T00:29:57.336] [INFO] cheese - inserting 1000 documents. first: Sven Olof Andersson and last: Specialised agency -[2018-02-13T00:29:57.370] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:29:57.382] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:57.425] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Pages needing attention/Forestry and last: Abantis amneris -[2018-02-13T00:29:57.486] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:57.540] [INFO] cheese - inserting 1000 documents. first: Andrasfa and last: Aninoasa River (Dambovita) -[2018-02-13T00:29:57.572] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:29:57.659] [INFO] cheese - inserting 1000 documents. first: Silvie von Ziegesar and last: Category:People from Burlington, New York -[2018-02-13T00:29:57.661] [INFO] cheese - inserting 1000 documents. first: Sci-fi (tv channel) and last: National Unity (Peru) -[2018-02-13T00:29:57.677] [INFO] cheese - inserting 1000 documents. first: Category:Diamond Rio albums and last: Hg (software) -[2018-02-13T00:29:57.695] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:29:57.727] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:29:57.730] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:29:57.785] [INFO] cheese - inserting 1000 documents. first: Aniol Dowgird and last: Saab RBS-70 -[2018-02-13T00:29:57.815] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:29:57.833] [INFO] cheese - inserting 1000 documents. first: Category:Taiwanese beauty pageant winners and last: 2011 Marbella Cup -[2018-02-13T00:29:57.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/T. K. Abdullah and last: File:SpongeBob SquarePants characters cast.png -[2018-02-13T00:29:57.895] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:57.977] [INFO] cheese - inserting 1000 documents. first: Suimenkul Chokmorov and last: Ballycogley -[2018-02-13T00:29:57.979] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:29:58.077] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:29:58.289] [INFO] cheese - inserting 1000 documents. first: Die schonsten Melodien aus Derrick & der Alte and last: Amicable Contributionship for the Insurance of Houses against Fire -[2018-02-13T00:29:58.325] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Youtubek and last: D524 (Croatia) -[2018-02-13T00:29:58.337] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:29:58.357] [INFO] cheese - inserting 1000 documents. first: Spotted bowerbird and last: Category:Uchibō Line -[2018-02-13T00:29:58.369] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Zhang Lu (Han dynasty) and last: Mangubat -[2018-02-13T00:29:58.371] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:58.434] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:29:58.438] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:58.508] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/PennyMarketing/Archive and last: Vincent Moore -[2018-02-13T00:29:58.561] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:29:58.666] [INFO] cheese - inserting 1000 documents. first: D525 (Croatia) and last: Template:Two digit year except 00 -[2018-02-13T00:29:58.745] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians by alma mater: University of Leeds and last: File:JetpackEditor.gif -[2018-02-13T00:29:58.762] [INFO] cheese - inserting 1000 documents. first: Unidad Nacional and last: Cherokee Indian Normal School of Robeson County -[2018-02-13T00:29:58.764] [INFO] cheese - inserting 1000 documents. first: Daniel Meyer and last: Peter Nery -[2018-02-13T00:29:58.774] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:29:58.824] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:29:58.838] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:29:58.882] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T00:29:58.950] [INFO] cheese - inserting 1000 documents. first: Antipapacy and last: Gaetano Cardinal Cicognani -[2018-02-13T00:29:59.004] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:59.009] [INFO] cheese - inserting 1000 documents. first: Qushijeh and last: Kim Hyun-Soo (disambiguation) -[2018-02-13T00:29:59.026] [INFO] cheese - inserting 1000 documents. first: Kot Addu Tehsil and last: Avrille, Maine-et-Loire -[2018-02-13T00:29:59.051] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:29:59.082] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:29:59.143] [INFO] cheese - inserting 1000 documents. first: Synthetic viability and last: Category:Prehistory of Europe -[2018-02-13T00:29:59.217] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:29:59.370] [INFO] cheese - inserting 1000 documents. first: Olympia CFR Satu Mare and last: Bare (Gorazde) -[2018-02-13T00:29:59.413] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:29:59.457] [INFO] cheese - inserting 1000 documents. first: United States Ambassador to Hungary and last: Street railways in Poznań -[2018-02-13T00:29:59.466] [INFO] cheese - inserting 1000 documents. first: Bi-blue and last: First Baptist Church of Eufaula -[2018-02-13T00:29:59.509] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:59.511] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:29:59.548] [INFO] cheese - inserting 1000 documents. first: Benderson and last: List of Vice Presidents of Botswana -[2018-02-13T00:29:59.589] [INFO] cheese - inserting 1000 documents. first: Raddock and last: Category:Populated places in Hamadan County -[2018-02-13T00:29:59.597] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:29:59.615] [INFO] cheese - inserting 1000 documents. first: Arthur Albohn and last: Mui Airport -[2018-02-13T00:29:59.631] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:59.663] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:59.696] [INFO] cheese - inserting 1000 documents. first: Jonathan Lewis Seward and last: Belk, Silesian Voivodeship -[2018-02-13T00:29:59.737] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:29:59.907] [INFO] cheese - inserting 1000 documents. first: Jaan Viik and last: Health care in Europe -[2018-02-13T00:29:59.958] [INFO] cheese - inserting 1000 documents. first: ISN 151 and last: Template:Archive bar -[2018-02-13T00:29:59.976] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:00.045] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:30:00.058] [INFO] cheese - inserting 1000 documents. first: Category:Asian Games cricketers and last: Bialopole, Lublin Voivodeship -[2018-02-13T00:30:00.089] [INFO] cheese - inserting 1000 documents. first: Pembroke State College for Indians and last: Cambyses I -[2018-02-13T00:30:00.109] [INFO] cheese - inserting 1000 documents. first: Solomon Richards and last: Pavel Chihuán -[2018-02-13T00:30:00.130] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:30:00.155] [INFO] cheese - inserting 1000 documents. first: Vice President of Botswana and last: Velocisaurus -[2018-02-13T00:30:00.157] [INFO] cheese - inserting 1000 documents. first: Template:HamadanCounty-geo-stub and last: New Zealand Army Long Service and Good Conduct Medal -[2018-02-13T00:30:00.159] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:30:00.165] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T00:30:00.222] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:30:00.229] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:30:00.414] [INFO] cheese - inserting 1000 documents. first: SmithKline and French and last: Ottone Enrico del Caretto, Marquis of Savona -[2018-02-13T00:30:00.478] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:00.546] [INFO] cheese - inserting 1000 documents. first: Bialoskory, Lublin Voivodeship and last: Mount Tempyo -[2018-02-13T00:30:00.573] [INFO] cheese - inserting 1000 documents. first: ISN 094 and last: Majorca rail network -[2018-02-13T00:30:00.599] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:30:00.630] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mailzzang+aus and last: Category:African people of Berber descent -[2018-02-13T00:30:00.688] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:30:00.727] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:30:00.744] [INFO] cheese - inserting 1000 documents. first: Category:American emigrants to the Turks and Caicos Islands and last: Chilla-Kimsa Chata mountain range -[2018-02-13T00:30:00.772] [INFO] cheese - inserting 1000 documents. first: Otakar Vavra and last: The Fairmont Burrard Landing -[2018-02-13T00:30:00.794] [INFO] cheese - inserting 1000 documents. first: Category:Israeli weightlifters and last: Carole Weatherford -[2018-02-13T00:30:00.802] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:30:00.829] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:30:00.839] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:30:01.040] [INFO] cheese - inserting 1000 documents. first: Bayly, Susan and last: Death of Darren Goforth -[2018-02-13T00:30:01.095] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:30:01.271] [INFO] cheese - inserting 1000 documents. first: African red snappers and last: Lachine, Québec -[2018-02-13T00:30:01.294] [INFO] cheese - inserting 1000 documents. first: Ersilia mediterranea and last: Sterling Hill, CT -[2018-02-13T00:30:01.358] [INFO] cheese - inserting 1000 documents. first: Ira William "Bill" McCollum, Jr. and last: Phoma trifolii -[2018-02-13T00:30:01.379] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:30:01.399] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:30:01.475] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:30:01.499] [INFO] cheese - inserting 1000 documents. first: Réunion ibis and last: Worker-communist Party of Iraq -[2018-02-13T00:30:01.518] [INFO] cheese - inserting 1000 documents. first: Tenpyo Zan and last: Soho, Birmingham -[2018-02-13T00:30:01.632] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T00:30:01.636] [INFO] cheese - inserting 1000 documents. first: Mark Denny and last: Percy Westerman -[2018-02-13T00:30:01.721] [INFO] cheese - inserting 1000 documents. first: List of graduate student associations and last: Wikipedia:WikiProject Spam/LinkReports/tankmemorial.vpweb.co.uk -[2018-02-13T00:30:01.726] [INFO] cheese - batch complete in: 1.561 secs -[2018-02-13T00:30:01.792] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T00:30:01.841] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:30:01.956] [INFO] cheese - inserting 1000 documents. first: 3 Dots and last: Category:Jamaican actresses -[2018-02-13T00:30:02.011] [INFO] cheese - inserting 1000 documents. first: Turner Sports and last: David Austin Starkweather -[2018-02-13T00:30:02.022] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:30:02.060] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:30:02.240] [INFO] cheese - inserting 1000 documents. first: Jean E. Riachi and last: Category:LGBT culture in New Zealand -[2018-02-13T00:30:02.305] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:30:02.341] [INFO] cheese - inserting 1000 documents. first: Kerenhappuch and last: Tavola -[2018-02-13T00:30:02.389] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/tankmemorial.vpweb.co.uk and last: Montana Stockgrowers Association -[2018-02-13T00:30:02.437] [INFO] cheese - inserting 1000 documents. first: Missouri gubernatorial special election, 1825 and last: Anri (given name) -[2018-02-13T00:30:02.438] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:30:02.450] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:30:02.772] [INFO] cheese - inserting 1000 documents. first: Bill Lienhard and last: File:WorkBuggy.jpg -[2018-02-13T00:30:03.112] [INFO] cheese - inserting 1000 documents. first: Long's Regiment and last: M. Cantor -[2018-02-13T00:30:03.129] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T00:30:03.180] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:30:03.400] [INFO] cheese - batch complete in: 1.607 secs -[2018-02-13T00:30:03.512] [INFO] cheese - inserting 1000 documents. first: File:1astivers.PNG and last: Vasyl Mykhaylovych Ivanchuk -[2018-02-13T00:30:03.596] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T00:30:03.752] [INFO] cheese - inserting 1000 documents. first: Penny Greely and last: Template:2016 AL West standings/doc -[2018-02-13T00:30:03.784] [INFO] cheese - inserting 1000 documents. first: Backworth Hoard and last: Times Like These (Kid Rock song) -[2018-02-13T00:30:03.787] [INFO] cheese - batch complete in: 1.349 secs -[2018-02-13T00:30:03.840] [INFO] cheese - inserting 1000 documents. first: Brady Seals the Truth and last: Henry D. Bonilla -[2018-02-13T00:30:03.866] [INFO] cheese - batch complete in: 1.416 secs -[2018-02-13T00:30:03.869] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:30:03.896] [INFO] cheese - inserting 1000 documents. first: Candida dubliniensis and last: Michelle Thomas -[2018-02-13T00:30:03.929] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in the Falkland Islands by decade and last: Khislavichsky -[2018-02-13T00:30:03.969] [INFO] cheese - batch complete in: 2.242 secs -[2018-02-13T00:30:03.975] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:30:04.105] [INFO] cheese - inserting 1000 documents. first: Trichia sericea and last: Mumbai Rajdhani Express -[2018-02-13T00:30:04.130] [INFO] cheese - inserting 1000 documents. first: Category:Spandau Ballet albums and last: Behind the sofa -[2018-02-13T00:30:04.148] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:30:04.186] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:30:04.194] [INFO] cheese - inserting 1000 documents. first: Ivan Tkachenko (disambiguation) and last: Category:Conservative Party Prime Ministers of the United Kingdom -[2018-02-13T00:30:04.199] [INFO] cheese - inserting 1000 documents. first: Henry Cassel and last: Staining wood -[2018-02-13T00:30:04.201] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Travis Jeppesen and last: Daniel Lyon (disambiguation) -[2018-02-13T00:30:04.234] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:30:04.252] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:30:04.250] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:30:04.355] [INFO] cheese - inserting 1000 documents. first: Khislavichskiy and last: Multiple Rounds Simultaneous Impact -[2018-02-13T00:30:04.403] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:04.464] [INFO] cheese - inserting 1000 documents. first: CFU-GM and last: Münchenstein castle (Schloss) -[2018-02-13T00:30:04.485] [INFO] cheese - inserting 1000 documents. first: Hananiah ben Teradyon and last: Jethro Hatch -[2018-02-13T00:30:04.519] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:30:04.552] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:30:04.592] [INFO] cheese - inserting 1000 documents. first: File:Thungapuram Ayyannar Temple Infant view -1.JPG and last: Wikipedia:0.8/Index/D3 -[2018-02-13T00:30:04.621] [INFO] cheese - inserting 1000 documents. first: Kim Namjoon and last: Agra Rural Vidhan Sabha constituency -[2018-02-13T00:30:04.626] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:30:04.681] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:30:04.775] [INFO] cheese - inserting 1000 documents. first: Stress concentration factor and last: Colorado state route 391 -[2018-02-13T00:30:04.790] [INFO] cheese - inserting 1000 documents. first: Byron Dobell and last: MasterCuts -[2018-02-13T00:30:04.815] [INFO] cheese - inserting 1000 documents. first: KVLO and last: Joseph Hutcheson -[2018-02-13T00:30:04.826] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:30:04.827] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:04.841] [INFO] cheese - inserting 1000 documents. first: Janata Dal (United) and last: Islamic Republic of Iran Air Force -[2018-02-13T00:30:04.856] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:30:04.925] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:30:05.022] [INFO] cheese - inserting 1000 documents. first: Vernon Haynes and last: Long-capsule suncup -[2018-02-13T00:30:05.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/COSMOLOGY. DIFFERENCES AND HYERARCHY OF INFINITE SETS BY THE EXAMPLE OF MULTIDIMENSIONAL SPACES AND SOME RELATIONS OF THESE SPACES, AND A BIT ABOUT THE UNIVERSE and last: Mann, Michael -[2018-02-13T00:30:05.080] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:05.104] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:05.116] [INFO] cheese - inserting 1000 documents. first: Bjorøyl and last: Muriel H. Brown -[2018-02-13T00:30:05.139] [INFO] cheese - inserting 1000 documents. first: Wikipedia:0.8/Index/D4 and last: Borne, Mysliborz County -[2018-02-13T00:30:05.180] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:30:05.197] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:30:05.212] [INFO] cheese - inserting 1000 documents. first: EC 1.11.1.20 and last: Catechol 2,3-oxygenase -[2018-02-13T00:30:05.304] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Randal McCloy and last: File:Wikitaconiccarnival.jpg -[2018-02-13T00:30:05.321] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:05.351] [INFO] cheese - inserting 1000 documents. first: Manning, Michael and last: Category:1725 in the Holy Roman Empire -[2018-02-13T00:30:05.357] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:30:05.391] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:30:05.451] [INFO] cheese - inserting 1000 documents. first: Heartleaf suncup and last: Mayor of danbury CT U.S.A -[2018-02-13T00:30:05.463] [INFO] cheese - inserting 1000 documents. first: Borojevici and last: Brezje pri Dovskem -[2018-02-13T00:30:05.487] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:30:05.509] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:30:05.609] [INFO] cheese - inserting 1000 documents. first: Circle Link and last: Robert Enoch Withers -[2018-02-13T00:30:05.644] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:05.715] [INFO] cheese - inserting 1000 documents. first: Brezje pri Poljcanah and last: Bukowina, Jaroslaw County -[2018-02-13T00:30:05.740] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:30:05.744] [INFO] cheese - inserting 1000 documents. first: The Sarong Girl and last: MV Kwuna -[2018-02-13T00:30:05.747] [INFO] cheese - inserting 1000 documents. first: Category:1732 in the Holy Roman Empire and last: Emeroleter levis -[2018-02-13T00:30:05.773] [INFO] cheese - inserting 1000 documents. first: John H. Mickey and last: Empress/McNeill Spectra Energy Aerodrome -[2018-02-13T00:30:05.785] [INFO] cheese - inserting 1000 documents. first: Air Forces and last: Autonomous prefecture -[2018-02-13T00:30:05.799] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:05.795] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:05.867] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:05.906] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:30:06.013] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2009 January 1 and last: Robert Müller (Ice Hockey Player) -[2018-02-13T00:30:06.016] [INFO] cheese - inserting 1000 documents. first: Davis family card game and last: Thomas A. D. Fessenden -[2018-02-13T00:30:06.054] [INFO] cheese - inserting 1000 documents. first: Bukowina, Piotrkow County and last: Nikolaisen -[2018-02-13T00:30:06.068] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:06.068] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:30:06.082] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:06.147] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Emeroleter and last: James Riddell (disambiguation) -[2018-02-13T00:30:06.176] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:30:06.260] [INFO] cheese - inserting 1000 documents. first: Campo Largo do Piaui and last: CS Flacara Moreni -[2018-02-13T00:30:06.276] [INFO] cheese - inserting 1000 documents. first: Category:Wrestling at the 2006 Asian Games and last: Neustrashimy class destroyer -[2018-02-13T00:30:06.283] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:30:06.295] [INFO] cheese - inserting 1000 documents. first: Per-Gunnar Andersson (rally driver) and last: Platanovrissi -[2018-02-13T00:30:06.322] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:30:06.368] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:06.418] [INFO] cheese - inserting 1000 documents. first: 7th Marines and last: Wikipedia:Articles for deletion/Philosophical Institute -[2018-02-13T00:30:06.479] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:30:06.486] [INFO] cheese - inserting 1000 documents. first: Charlie Ernst and last: Films about mohammed -[2018-02-13T00:30:06.490] [INFO] cheese - inserting 1000 documents. first: Amy Whelan and last: Gymnastics at the 2015 African Games -[2018-02-13T00:30:06.538] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:06.551] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:06.569] [INFO] cheese - inserting 1000 documents. first: 50th Nova Scotia general election and last: Template:Historical parties in Turkey -[2018-02-13T00:30:06.616] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:30:06.618] [INFO] cheese - inserting 1000 documents. first: Platanovrisi and last: Molly Ockett -[2018-02-13T00:30:06.663] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:30:06.702] [INFO] cheese - inserting 1000 documents. first: Bagram Airbase and last: Cynog Dafis -[2018-02-13T00:30:06.762] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:30:06.793] [INFO] cheese - inserting 1000 documents. first: Quail class destroyer and last: Thresher/Permit class submarine -[2018-02-13T00:30:06.829] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:06.853] [INFO] cheese - inserting 1000 documents. first: Ebiquity and last: Calybites securinella -[2018-02-13T00:30:06.856] [INFO] cheese - inserting 1000 documents. first: Tooth bleaching and last: VoteSpotter -[2018-02-13T00:30:06.891] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:30:06.899] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:30:06.946] [INFO] cheese - inserting 1000 documents. first: Jeremiah Masoli and last: Woolly fern -[2018-02-13T00:30:06.975] [INFO] cheese - inserting 1000 documents. first: File:GMMB title.jpg and last: Category:Cambridge City F.C. players -[2018-02-13T00:30:06.976] [INFO] cheese - inserting 1000 documents. first: San Pietro in Casale and last: Hemorrhagic stroke -[2018-02-13T00:30:06.990] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:30:07.013] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:30:07.154] [INFO] cheese - inserting 1000 documents. first: Caloptilia securinella and last: Category:Project-Class Fencing articles -[2018-02-13T00:30:07.167] [INFO] cheese - inserting 1000 documents. first: Draft:The Sky Has Fallen and last: Roscoe Seely Conkling -[2018-02-13T00:30:07.183] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:30:07.216] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:30:07.225] [INFO] cheese - inserting 1000 documents. first: Tench class submarine and last: Nippon (aircraft) -[2018-02-13T00:30:07.241] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:30:07.281] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:07.481] [INFO] cheese - inserting 1000 documents. first: Mount Robertson (Antarctica) and last: Cehovice -[2018-02-13T00:30:07.501] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Paul Theroux and last: Dan Marriott -[2018-02-13T00:30:07.505] [INFO] cheese - inserting 1000 documents. first: Ländches Railway and last: Squatter (pastoral) -[2018-02-13T00:30:07.504] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:30:07.539] [INFO] cheese - inserting 1000 documents. first: K221DQ and last: Wikipedia:Articles for deletion/Rafiq Subaie -[2018-02-13T00:30:07.550] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:30:07.561] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 142 BC and last: HIF hydroxylase -[2018-02-13T00:30:07.581] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:30:07.605] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:07.639] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:30:07.691] [INFO] cheese - inserting 1000 documents. first: Whirlwind USA and last: Eston Airport -[2018-02-13T00:30:07.742] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:30:07.760] [INFO] cheese - inserting 1000 documents. first: Cehovini and last: Saint Monance -[2018-02-13T00:30:07.792] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:30:07.867] [INFO] cheese - inserting 1000 documents. first: Blackburnian warbler and last: ZFV -[2018-02-13T00:30:07.904] [INFO] cheese - inserting 1000 documents. first: Lander, Venezuela and last: Dilbert's Desktop Toys -[2018-02-13T00:30:07.924] [INFO] cheese - inserting 1000 documents. first: Eulima crossei and last: Template:Attached KML/Maryland Route 364 -[2018-02-13T00:30:07.935] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T00:30:07.941] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:30:07.962] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:30:08.035] [INFO] cheese - inserting 1000 documents. first: Zheng Xunyu and last: Osage Village State Historic Site -[2018-02-13T00:30:08.083] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:08.118] [INFO] cheese - inserting 1000 documents. first: Windmill (Transformers) and last: Category:Government ministers of the Federated States of Micronesia -[2018-02-13T00:30:08.136] [INFO] cheese - inserting 1000 documents. first: Category:1434 establishments in the Holy Roman Empire and last: File:St. Petersburg Pier September 2015.jpg -[2018-02-13T00:30:08.151] [INFO] cheese - inserting 1000 documents. first: CJR4 and last: Chagrin Falls (song) -[2018-02-13T00:30:08.155] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:08.192] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:30:08.194] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:08.243] [INFO] cheese - inserting 1000 documents. first: Template:Rus CUT Stadium and last: Category:United States House of Representatives elections, 1855 -[2018-02-13T00:30:08.271] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:30:08.290] [INFO] cheese - inserting 1000 documents. first: Category:Lebanese painters and last: La Tombe -[2018-02-13T00:30:08.345] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:30:08.373] [INFO] cheese - inserting 1000 documents. first: Chateau de Kolbsheim and last: Chotow, Swietokrzyskie Voivodeship -[2018-02-13T00:30:08.415] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:30:08.578] [INFO] cheese - inserting 1000 documents. first: Chotycany and last: Ciro Diaz -[2018-02-13T00:30:08.596] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:30:08.625] [INFO] cheese - inserting 1000 documents. first: ZDJ and last: Preston Bissett -[2018-02-13T00:30:08.627] [INFO] cheese - inserting 1000 documents. first: Maxime Lacroix and last: Yeshu ben Pandera -[2018-02-13T00:30:08.630] [INFO] cheese - inserting 1000 documents. first: Category:2015 in sailing and last: Category:People extradited from Australia -[2018-02-13T00:30:08.634] [INFO] cheese - inserting 1000 documents. first: Patricia Haruna and last: Wikipedia:Arbitration Committee Elections January 2006/Vote/Everyking -[2018-02-13T00:30:08.665] [INFO] cheese - inserting 1000 documents. first: Stand by Me What you See Is What you Get and last: Attila Simon (footballer born in 1979) -[2018-02-13T00:30:08.669] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:30:08.672] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:30:08.677] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:08.684] [INFO] cheese - inserting 1000 documents. first: Juan Francisco Lombardo and last: Template:TV Newscaf Aus -[2018-02-13T00:30:08.689] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:30:08.712] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:30:08.762] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:30:08.809] [INFO] cheese - inserting 1000 documents. first: Ciro Truhelka and last: Template:Gulf and Ohio Railways -[2018-02-13T00:30:08.835] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:30:09.006] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Consortium of Liberal Arts Colleges and last: De Stem des Bloed -[2018-02-13T00:30:09.020] [INFO] cheese - inserting 1000 documents. first: Auburn Community Mausoleum and last: Wikipedia:Administrators' noticeboard/IncidentArchive898 -[2018-02-13T00:30:09.022] [INFO] cheese - inserting 1000 documents. first: Moxon and last: Specularite -[2018-02-13T00:30:09.044] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:30:09.075] [INFO] cheese - inserting 1000 documents. first: Kumari kandam and last: Legislation on hunting with dogs -[2018-02-13T00:30:09.098] [INFO] cheese - inserting 1000 documents. first: Category:Rider University and last: Category:Eastern Lombard language -[2018-02-13T00:30:09.102] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:30:09.104] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:30:09.103] [INFO] cheese - inserting 1000 documents. first: Commercial space station and last: Rave Mobile Safety -[2018-02-13T00:30:09.119] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:09.174] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:30:09.179] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:30:09.320] [INFO] cheese - inserting 1000 documents. first: Njai Siti and last: Hoseynabad-e Shamlu -[2018-02-13T00:30:09.362] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:30:09.463] [INFO] cheese - inserting 1000 documents. first: M.S. Babu Raj and last: Melanie Figueroa -[2018-02-13T00:30:09.553] [INFO] cheese - inserting 1000 documents. first: Theatre of War and last: Chester Straub -[2018-02-13T00:30:09.565] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:09.577] [INFO] cheese - inserting 1000 documents. first: Inquisitor (search software) and last: Division Bath, Chicago -[2018-02-13T00:30:09.578] [INFO] cheese - inserting 1000 documents. first: Category:573 by continent and last: File:Aalstlogo.jpg -[2018-02-13T00:30:09.631] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:09.636] [INFO] cheese - inserting 1000 documents. first: Coracao de Jesus Basilica and last: Mount Hay -[2018-02-13T00:30:09.657] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:30:09.663] [INFO] cheese - inserting 1000 documents. first: Screen magnifier and last: Odalist -[2018-02-13T00:30:09.668] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:09.692] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:09.723] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T00:30:09.816] [INFO] cheese - inserting 1000 documents. first: File:The Nutt House.jpg and last: File:Peter Henry Emerson (British, born Cuba - Pictures of East Anglian Life. Illustrated with Thirty-Two Photogravures and Fifteen Small Illustrat... - Google Art Project.jpg -[2018-02-13T00:30:09.849] [INFO] cheese - inserting 1000 documents. first: Farm Road 1960 and last: Jack R. Williams -[2018-02-13T00:30:09.870] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:30:09.898] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:30:09.995] [INFO] cheese - inserting 1000 documents. first: Template:Fb team WRB M'Sila and last: File:Solomons Club - Tecmo - Game Boy box art.jpg -[2018-02-13T00:30:10.043] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:30:10.070] [INFO] cheese - inserting 1000 documents. first: File:Greinacher circuit.svg and last: Kenji Takahashi (footballer, born 1985) -[2018-02-13T00:30:10.094] [INFO] cheese - inserting 1000 documents. first: St Mary’s Church, Wreay and last: The Pinnacle (Cleveland) -[2018-02-13T00:30:10.105] [INFO] cheese - inserting 1000 documents. first: Jacob Schowalter and last: Napoleon Brown -[2018-02-13T00:30:10.117] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:30:10.124] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:30:10.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Aecis and last: Cléo from 5 to 7 -[2018-02-13T00:30:10.139] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:30:10.170] [INFO] cheese - inserting 1000 documents. first: Category:Google Art Project works by Rafael Martínez Padilla and last: Category:Agriculture in Northern Africa -[2018-02-13T00:30:10.178] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:30:10.203] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:30:10.241] [INFO] cheese - inserting 1000 documents. first: Jarolim and last: Dabrowki, Podlaskie Voivodeship -[2018-02-13T00:30:10.272] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:30:10.371] [INFO] cheese - inserting 1000 documents. first: Nathan Matthews and last: Lay of Thrym -[2018-02-13T00:30:10.406] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:30:10.426] [INFO] cheese - inserting 1000 documents. first: Viceroyalties of New Spain and last: Sacred fire of Vesta -[2018-02-13T00:30:10.460] [INFO] cheese - inserting 1000 documents. first: Imperial anthem and last: Jarvis Christian -[2018-02-13T00:30:10.479] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:30:10.484] [INFO] cheese - inserting 1000 documents. first: Crnkamenska Kula and last: Walking Bout Company -[2018-02-13T00:30:10.503] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:10.519] [INFO] cheese - inserting 1000 documents. first: Antonio Mucci and last: 39th Army (People's Republic of China) -[2018-02-13T00:30:10.527] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:30:10.550] [INFO] cheese - inserting 1000 documents. first: Sir Charles Cameron Lees and last: Marika hase -[2018-02-13T00:30:10.573] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:30:10.631] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:10.633] [INFO] cheese - inserting 1000 documents. first: Johannes Pullois and last: Barton-le-clay -[2018-02-13T00:30:10.718] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:30:10.780] [INFO] cheese - inserting 1000 documents. first: Fomes geotropus and last: CLi2O3 -[2018-02-13T00:30:10.821] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:30:10.862] [INFO] cheese - inserting 1000 documents. first: X-ray telescopes and last: Mingus Mountain Academy -[2018-02-13T00:30:10.896] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:10.898] [INFO] cheese - inserting 1000 documents. first: Hockey at the 2002 Commonwealth Games – Men's tournament and last: Category:Translated pages -[2018-02-13T00:30:10.942] [INFO] cheese - inserting 1000 documents. first: Panthera onca centralis and last: Parisoma (genus) -[2018-02-13T00:30:10.948] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:10.957] [INFO] cheese - inserting 1000 documents. first: Ernie Rea and last: This Is Me (Camp Rock song) -[2018-02-13T00:30:10.991] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:11.000] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:11.062] [INFO] cheese - inserting 1000 documents. first: CMgO3 and last: Royal Malaysia Police -[2018-02-13T00:30:11.089] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:30:11.107] [INFO] cheese - inserting 1000 documents. first: William Vander Zalm and last: Interval class -[2018-02-13T00:30:11.191] [INFO] cheese - inserting 1000 documents. first: Canadian Prairie Provinces and last: Just a Game Stakes -[2018-02-13T00:30:11.207] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:30:11.226] [INFO] cheese - inserting 1000 documents. first: Double Clutch and last: Steve White-Cooper -[2018-02-13T00:30:11.259] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:30:11.283] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:30:11.351] [INFO] cheese - inserting 1000 documents. first: Template:WP Television and last: 1998 Kentucky Wildcats football team -[2018-02-13T00:30:11.401] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:30:11.405] [INFO] cheese - inserting 1000 documents. first: File:Dragonconlogo.png and last: Chester Culver -[2018-02-13T00:30:11.425] [INFO] cheese - inserting 1000 documents. first: Buffet Group and last: The Mad Empress -[2018-02-13T00:30:11.462] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:30:11.503] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:30:11.507] [INFO] cheese - inserting 1000 documents. first: Garett Jones and last: Phallus cinnabarinus -[2018-02-13T00:30:11.564] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:30:11.624] [INFO] cheese - inserting 1000 documents. first: Phyllonorycter aurifascia and last: 2B11 -[2018-02-13T00:30:11.672] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:11.712] [INFO] cheese - inserting 1000 documents. first: Shipwrecked: Battle of the Islands 2008 and last: Chiltern Edge School -[2018-02-13T00:30:11.737] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:30:11.851] [INFO] cheese - inserting 1000 documents. first: Template:Seoul National University and last: Wikipedia:Templates for deletion/Log/2009 January 4 -[2018-02-13T00:30:11.888] [INFO] cheese - inserting 1000 documents. first: "Saucy Jacky" postcard and last: Category:1988 in female bodybuilding -[2018-02-13T00:30:11.916] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:30:11.950] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:30:12.027] [INFO] cheese - inserting 1000 documents. first: M151 A2 and last: Mare Vitalis -[2018-02-13T00:30:12.037] [INFO] cheese - inserting 1000 documents. first: Harry Lee Carrico and last: Elnur Mammadli -[2018-02-13T00:30:12.061] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:30:12.070] [INFO] cheese - inserting 1000 documents. first: List of cities in Orissa by population and last: African immigrants to Lithuania -[2018-02-13T00:30:12.093] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:30:12.109] [INFO] cheese - inserting 1000 documents. first: Hikitsuke-kata and last: Awa province (Tokushima) -[2018-02-13T00:30:12.115] [INFO] cheese - inserting 1000 documents. first: Margherita Gonzaga d'Este and last: Major airline -[2018-02-13T00:30:12.127] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:30:12.160] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:30:12.181] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:30:12.241] [INFO] cheese - inserting 1000 documents. first: Larry J. Pogemiller and last: Robert Casey, Sr. -[2018-02-13T00:30:12.251] [INFO] cheese - inserting 1000 documents. first: Category:Moist (Canadian band) songs and last: Mt. Hamwŏl -[2018-02-13T00:30:12.261] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:30:12.297] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:12.313] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2009 January 4 and last: Greenpeace china -[2018-02-13T00:30:12.354] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:30:12.486] [INFO] cheese - inserting 1000 documents. first: Black people in Lithuania and last: Masalhan -[2018-02-13T00:30:12.503] [INFO] cheese - inserting 1000 documents. first: Robert P. Casey, Sr. and last: Thomas W. Wilson -[2018-02-13T00:30:12.524] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:30:12.525] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:30:12.530] [INFO] cheese - inserting 1000 documents. first: Aryeh and last: File:Solenta Aviation logo.gif -[2018-02-13T00:30:12.574] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:30:12.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Cape May Gazette and last: Kenny vadas -[2018-02-13T00:30:12.662] [INFO] cheese - inserting 1000 documents. first: Mount Hamwŏl and last: Live at the Checkerboard Lounge: Chicago 1981 -[2018-02-13T00:30:12.678] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:12.701] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:30:12.729] [INFO] cheese - inserting 1000 documents. first: File:Which1.JPG and last: Inverarity (surname) -[2018-02-13T00:30:12.776] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:30:12.797] [INFO] cheese - inserting 1000 documents. first: Template:Libya-mosque-stub and last: Wikipedia:Miscellany for deletion/User:Tomzatarkay -[2018-02-13T00:30:12.830] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/EH74DK and last: Ardanion -[2018-02-13T00:30:12.833] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:30:12.867] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:30:12.888] [INFO] cheese - inserting 1000 documents. first: Lord James Townshend and last: Dasny -[2018-02-13T00:30:12.923] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:30:13.096] [INFO] cheese - inserting 1000 documents. first: Sanuki province and last: Gardiner -[2018-02-13T00:30:13.123] [INFO] cheese - inserting 1000 documents. first: Ocampo, Tamaulipas and last: Horizontal elevator -[2018-02-13T00:30:13.172] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:30:13.174] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:30:13.209] [INFO] cheese - inserting 1000 documents. first: Live at the Checkerboard Lounge Chicago 1981 and last: 2001 Food City 500 -[2018-02-13T00:30:13.215] [INFO] cheese - inserting 1000 documents. first: HMS Archer (1885) and last: File:TheMirror.jpg -[2018-02-13T00:30:13.219] [INFO] cheese - inserting 1000 documents. first: Dasoguz Airport and last: Deux enfoires a Saint-Tropez -[2018-02-13T00:30:13.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Motorcycling/Motorcycle Sport and last: Nitzarim -[2018-02-13T00:30:13.242] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:30:13.246] [INFO] cheese - inserting 1000 documents. first: Ardáni and last: Hello! Project shuffle unit -[2018-02-13T00:30:13.259] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:30:13.303] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:30:13.309] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:13.310] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:30:13.461] [INFO] cheese - inserting 1000 documents. first: Category:1949 in Portugal and last: My So-Called Life (album) -[2018-02-13T00:30:13.490] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:30:13.637] [INFO] cheese - inserting 1000 documents. first: List of cathedrals in Luxembourg and last: Kisa dialect -[2018-02-13T00:30:13.675] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Legislature Historic and last: Two world wars and one world cup -[2018-02-13T00:30:13.676] [INFO] cheese - inserting 1000 documents. first: Sandleford and last: International Association of Hebrew Free Loans -[2018-02-13T00:30:13.680] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:30:13.697] [INFO] cheese - inserting 1000 documents. first: Teeratep Winothai and last: Wikipedia:RFC/KM -[2018-02-13T00:30:13.698] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Not A Facehugger and last: Monsieur Albert -[2018-02-13T00:30:13.704] [INFO] cheese - inserting 1000 documents. first: Dobsice (Nymburk District) and last: Beatrice Lascaris di Tenda -[2018-02-13T00:30:13.724] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:30:13.728] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:13.731] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:30:13.749] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:30:13.747] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:30:13.941] [INFO] cheese - inserting 1000 documents. first: Leslie and last: 53rd Division (British) -[2018-02-13T00:30:13.959] [INFO] cheese - inserting 1000 documents. first: Krista Lahteenmäki and last: Eberhard Louis, Duke of Wurttemberg -[2018-02-13T00:30:13.992] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:30:14.003] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:30:14.017] [INFO] cheese - inserting 1000 documents. first: Kabarasi dialect and last: File:C.L.G. Na Cealla Beaga logo.jpg -[2018-02-13T00:30:14.067] [INFO] cheese - inserting 1000 documents. first: Sinn Féin Bank and last: Wu Jiaxin -[2018-02-13T00:30:14.066] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:14.084] [INFO] cheese - inserting 1000 documents. first: Le Gouffre and last: India mobile numbers -[2018-02-13T00:30:14.139] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:30:14.172] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:30:14.192] [INFO] cheese - inserting 1000 documents. first: East Karelian Uprising and last: Category:Works by Arthur Koestler -[2018-02-13T00:30:14.285] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mikk Haavistu and last: Strâmba River (Geamărtălui) -[2018-02-13T00:30:14.326] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:30:14.360] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:30:14.414] [INFO] cheese - inserting 1000 documents. first: Incorporated businesses and last: Le roi malgré lui -[2018-02-13T00:30:14.461] [INFO] cheese - inserting 1000 documents. first: Category:230s conflicts and last: Conny Andersson -[2018-02-13T00:30:14.466] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:30:14.491] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:30:14.509] [INFO] cheese - inserting 1000 documents. first: Category:1965 establishments in Cape Verde and last: Encolpotis scioplasta -[2018-02-13T00:30:14.559] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:30:14.622] [INFO] cheese - inserting 1000 documents. first: B.Kanabur and last: Dodge Brisa -[2018-02-13T00:30:14.647] [INFO] cheese - inserting 1000 documents. first: Football at the 2011 Pan American Games – Men's tournament and last: Category:Churches in Queen Anne's County, Maryland -[2018-02-13T00:30:14.652] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:30:14.692] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:30:14.752] [INFO] cheese - inserting 1000 documents. first: Category:Irish water skiers and last: MicroRNA mir-395 -[2018-02-13T00:30:14.766] [INFO] cheese - inserting 1000 documents. first: Terra-Filmverleih and last: Baruch Ben Haim -[2018-02-13T00:30:14.793] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:14.802] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:30:14.863] [INFO] cheese - inserting 1000 documents. first: Encolpotis xanthoria and last: 1551 in France -[2018-02-13T00:30:14.895] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:30:14.978] [INFO] cheese - inserting 1000 documents. first: Lars Schmidt and last: Wikipedia:WikiProject Spam/LinkReports/hello-yorick.com -[2018-02-13T00:30:14.990] [INFO] cheese - inserting 1000 documents. first: Lugaid Réoderg and last: Hubbard's Cave -[2018-02-13T00:30:15.017] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:30:15.042] [INFO] cheese - inserting 1000 documents. first: Operation Headstrong and last: Herzog & de Meuron -[2018-02-13T00:30:15.050] [INFO] cheese - inserting 1000 documents. first: File:Tina Manning John Trudell family.jpg and last: Nakane -[2018-02-13T00:30:15.051] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:30:15.078] [INFO] cheese - inserting 1000 documents. first: Eulima mioacutissima and last: Template:2008 Summer Olympics men's handball game C2 -[2018-02-13T00:30:15.097] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:30:15.110] [INFO] cheese - inserting 1000 documents. first: Bob Freeman Smith and last: Krasnogorsk Archive -[2018-02-13T00:30:15.116] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T00:30:15.125] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:30:15.144] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:30:15.274] [INFO] cheese - inserting 1000 documents. first: Ohio State Highway 527 and last: Anthony Smith -[2018-02-13T00:30:15.317] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:30:15.388] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/classicsofgolf.com and last: En concert a l'Olympia -[2018-02-13T00:30:15.426] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:30:15.439] [INFO] cheese - inserting 1000 documents. first: John Abel McPherson and last: Category:Wikipedia sockpuppets of Richard Thoma -[2018-02-13T00:30:15.491] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:15.527] [INFO] cheese - inserting 1000 documents. first: World Festival of Youth and last: Narain (Madhya Pradesh cricketer) -[2018-02-13T00:30:15.589] [INFO] cheese - inserting 1000 documents. first: Celeste Lake and last: Category:2008 Big East Conference baseball season -[2018-02-13T00:30:15.591] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:15.613] [INFO] cheese - inserting 1000 documents. first: Category:1872 establishments and last: File:Frieth overview.JPG -[2018-02-13T00:30:15.634] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:30:15.670] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:30:15.685] [INFO] cheese - inserting 1000 documents. first: En concert au Zenith de Paris and last: Jim Donahue (baseball) -[2018-02-13T00:30:15.720] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:30:15.793] [INFO] cheese - inserting 1000 documents. first: Anthony Smith (singer) and last: Purchase prize -[2018-02-13T00:30:15.840] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:15.883] [INFO] cheese - inserting 1000 documents. first: Ashbya gossypii and last: Robert S. Smith (priest) -[2018-02-13T00:30:15.909] [INFO] cheese - inserting 1000 documents. first: Arne Naess and last: Vernix -[2018-02-13T00:30:15.964] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:30:16.022] [INFO] cheese - inserting 1000 documents. first: Category:Tracked infantry fighting vehicles and last: Yehude Simon Munaro -[2018-02-13T00:30:16.031] [INFO] cheese - inserting 1000 documents. first: Dinesh Mirkar and last: River Cam (disambiguation) -[2018-02-13T00:30:16.037] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:30:16.065] [INFO] cheese - inserting 1000 documents. first: 𐊤 and last: Category:French autobiographies -[2018-02-13T00:30:16.066] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:16.116] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:30:16.133] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:30:16.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/EIN News and last: Arent Crowninshield -[2018-02-13T00:30:16.324] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:30:16.354] [INFO] cheese - inserting 1000 documents. first: Krohn's disease and last: Police corruption in Greece -[2018-02-13T00:30:16.380] [INFO] cheese - inserting 1000 documents. first: Category:John Wiley & Sons and last: Polythrincium trifolii -[2018-02-13T00:30:16.390] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:30:16.431] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:30:16.436] [INFO] cheese - inserting 1000 documents. first: Feenmarchen waltz and last: File:A Date with Jimmy Smith Volume Two.jpg -[2018-02-13T00:30:16.466] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:30:16.540] [INFO] cheese - inserting 1000 documents. first: Amioides grossidens and last: Monroe Doctrine (Japan) -[2018-02-13T00:30:16.579] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:16.678] [INFO] cheese - inserting 1000 documents. first: ISN 139 and last: Higinio Ortuzar -[2018-02-13T00:30:16.722] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:30:16.831] [INFO] cheese - inserting 1000 documents. first: Independent-comics and last: Wireless Internet hotspot -[2018-02-13T00:30:16.835] [INFO] cheese - inserting 1000 documents. first: Reubien and last: STS 59 -[2018-02-13T00:30:16.838] [INFO] cheese - inserting 1000 documents. first: North Elmham railway station and last: Hawthorne (Metro-North station) -[2018-02-13T00:30:16.857] [INFO] cheese - inserting 1000 documents. first: Hector Silva Airstrip and last: Tube Fender -[2018-02-13T00:30:16.869] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:30:16.890] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:30:16.896] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:30:16.927] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:30:16.981] [INFO] cheese - inserting 1000 documents. first: Monroe Doctrine (United States) and last: Tert-Amylol -[2018-02-13T00:30:17.003] [INFO] cheese - inserting 1000 documents. first: Ictineo and last: Wallon -[2018-02-13T00:30:17.024] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:17.073] [INFO] cheese - batch complete in: 1.036 secs -[2018-02-13T00:30:17.116] [INFO] cheese - inserting 1000 documents. first: Godurowo and last: Henri Francois Brosselard-Faidherbe -[2018-02-13T00:30:17.163] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:17.271] [INFO] cheese - inserting 1000 documents. first: 2015 Malaysia Cup group stage and last: Conus donnae -[2018-02-13T00:30:17.279] [INFO] cheese - inserting 1000 documents. first: JSQ-33 and last: Athletics at the 1964 Summer Olympics – Men's pole vault -[2018-02-13T00:30:17.302] [INFO] cheese - inserting 1000 documents. first: STS 62 and last: Portal:Zimbabwe/Selected article -[2018-02-13T00:30:17.303] [INFO] cheese - inserting 1000 documents. first: File:Northsoundseawolves.jpg and last: Fontaine-l'Eveque Castle -[2018-02-13T00:30:17.324] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:17.332] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:17.339] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:30:17.339] [INFO] cheese - inserting 1000 documents. first: 2004–06 European Nations Cup Second Division and last: United States House of Representatives elections in Kansas, 1992 -[2018-02-13T00:30:17.379] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:17.398] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:30:17.514] [INFO] cheese - inserting 1000 documents. first: Fontaine-les-Dijon and last: Frederic Bolley -[2018-02-13T00:30:17.535] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:30:17.564] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Faxcon9xS and last: List of number-one albums of 2009 (New Zealand) -[2018-02-13T00:30:17.618] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:30:17.728] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Vahram Papazyan (athlete) and last: Servo motor -[2018-02-13T00:30:17.754] [INFO] cheese - inserting 1000 documents. first: Bayer HealthCare, India and last: Margaret Ellen Wright -[2018-02-13T00:30:17.780] [INFO] cheese - inserting 1000 documents. first: Frederic Bong and last: Galvao -[2018-02-13T00:30:17.782] [INFO] cheese - inserting 1000 documents. first: File:Buoyancy.jpg and last: Brent Ward Jett, Jr. -[2018-02-13T00:30:17.786] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:30:17.819] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:30:17.829] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:30:17.862] [INFO] cheese - inserting 1000 documents. first: The Great Plan, Volume 2 and last: Wallachs -[2018-02-13T00:30:17.881] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:17.940] [INFO] cheese - inserting 1000 documents. first: House wren and last: Pinus taeda -[2018-02-13T00:30:17.922] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:30:18.023] [INFO] cheese - inserting 1000 documents. first: Galvez (Vino de la Tierra) and last: Geza Teleki (politician) -[2018-02-13T00:30:18.021] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T00:30:18.080] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:30:18.103] [INFO] cheese - inserting 1000 documents. first: Brentwood Tolan and last: Isaac Tatem Hopper -[2018-02-13T00:30:18.117] [INFO] cheese - inserting 1000 documents. first: New Tottenham Hotspur stadium and last: Category:Macal River -[2018-02-13T00:30:18.173] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:30:18.183] [INFO] cheese - inserting 1000 documents. first: Anguilla mossambica and last: 1/2 + 1/4 + 1/8 + 1/16 + ... -[2018-02-13T00:30:18.217] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:30:18.234] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:30:18.326] [INFO] cheese - inserting 1000 documents. first: Alan Coe Bunce and last: Shoestring acacia -[2018-02-13T00:30:18.400] [INFO] cheese - inserting 1000 documents. first: File:Unit Statistics.png and last: Goodbye (Alma Cardzic song) -[2018-02-13T00:30:18.425] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:30:18.447] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:30:18.455] [INFO] cheese - inserting 1000 documents. first: Fuma Conspiracy and last: Robert Allan Ridley Parker -[2018-02-13T00:30:18.530] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:30:18.655] [INFO] cheese - inserting 1000 documents. first: Dong-Hyek Lim and last: Joni pitkanen -[2018-02-13T00:30:18.741] [INFO] cheese - inserting 1000 documents. first: Michal Hrazdira and last: Category:Engineering universities and colleges in Finland -[2018-02-13T00:30:18.803] [INFO] cheese - inserting 1000 documents. first: Goods of the House of Orleans and last: Gradski stadion (Zepce) -[2018-02-13T00:30:18.806] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:30:18.801] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:30:18.824] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:18.839] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Japanese films by year and last: Richard Moore (journalist) -[2018-02-13T00:30:18.891] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:30:18.936] [INFO] cheese - inserting 1000 documents. first: Holcocera baccharisella and last: Duchy of Kopanica -[2018-02-13T00:30:18.974] [INFO] cheese - inserting 1000 documents. first: Robert Rescorla and last: Warner Bros. Feature Animation -[2018-02-13T00:30:18.976] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:30:19.005] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:30:19.016] [INFO] cheese - inserting 1000 documents. first: Punjab Prisons Staff Training Institute and last: Gugnecourt -[2018-02-13T00:30:19.039] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:30:19.104] [INFO] cheese - inserting 1000 documents. first: Sefid Khani, Hamadan and last: Wikipedia:Articles for deletion/Cloud marketing (2nd nomination) -[2018-02-13T00:30:19.120] [INFO] cheese - inserting 1000 documents. first: David Hookes and last: Hate group -[2018-02-13T00:30:19.130] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:30:19.179] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T00:30:19.204] [INFO] cheese - inserting 1000 documents. first: Category:Oulu and last: Saptha Kannimar Padal -[2018-02-13T00:30:19.213] [INFO] cheese - inserting 1000 documents. first: Gugu River (Raul Ses) and last: Hanne Romer -[2018-02-13T00:30:19.216] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Salisbury and last: File:D40 Locomotive.jpg -[2018-02-13T00:30:19.239] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:30:19.267] [INFO] cheese - inserting 1000 documents. first: Oei Invasion and last: Wikipedia:Articles for deletion/Lindsay Lohan's third album -[2018-02-13T00:30:19.280] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:19.280] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:19.326] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:30:19.408] [INFO] cheese - inserting 1000 documents. first: Template:Montreal municipal election, 1998/Position/Councillor, Fleury and last: Gaika (disambiguation) -[2018-02-13T00:30:19.412] [INFO] cheese - inserting 1000 documents. first: Minister for National Education and Religious Affairs and last: Garage Beat '66 Volume 2: Chicks are for Kids! -[2018-02-13T00:30:19.417] [INFO] cheese - inserting 1000 documents. first: Hanne Tomta and last: Henrik Rydstrom -[2018-02-13T00:30:19.440] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:30:19.441] [INFO] cheese - batch complete in: 0.202 secs -[2018-02-13T00:30:19.464] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:30:19.578] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Teen Titans episodes/archive1 and last: Ibenik -[2018-02-13T00:30:19.594] [INFO] cheese - inserting 1000 documents. first: Goździków, Greater Poland Voivodeship and last: Frank Heller -[2018-02-13T00:30:19.614] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:30:19.648] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:30:19.711] [INFO] cheese - inserting 1000 documents. first: Halah and last: Gangrenous stomatitis -[2018-02-13T00:30:19.751] [INFO] cheese - inserting 1000 documents. first: Template:Infobox User-2/doc and last: Le insaziabili -[2018-02-13T00:30:19.757] [INFO] cheese - inserting 1000 documents. first: Chester Heights (PRR station) and last: Wikipedia:WikiProject Spam/LinkReports/tursiops.br.googlepages.com -[2018-02-13T00:30:19.759] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:30:19.775] [INFO] cheese - inserting 1000 documents. first: Gatra (disambiguation) and last: Laurentian View -[2018-02-13T00:30:19.797] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:30:19.801] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:30:19.835] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:30:19.843] [INFO] cheese - inserting 1000 documents. first: Nuristanis and last: Shmoo Group -[2018-02-13T00:30:19.906] [INFO] cheese - inserting 1000 documents. first: Meinborn and last: File:RolandoTinioNatlArtistNCCAgov.jpg -[2018-02-13T00:30:19.912] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:30:19.948] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:30:20.078] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas established in 1995 and last: The adventures of darwin the game -[2018-02-13T00:30:20.140] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:30:20.232] [INFO] cheese - inserting 1000 documents. first: Danse des Ouléd-Naïd and last: The Elbert P. Tuttle U.S. Court of Appeals Building -[2018-02-13T00:30:20.260] [INFO] cheese - inserting 1000 documents. first: Grace Under Pressure (1984 album) and last: Edmund Boyd Osler -[2018-02-13T00:30:20.273] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:30:20.289] [INFO] cheese - inserting 1000 documents. first: John Woodruff (representative) and last: Posterior ligament of incus -[2018-02-13T00:30:20.290] [INFO] cheese - inserting 1000 documents. first: Toto cerca casa and last: Category:Wikipedia articles in need of updating from December 2010 -[2018-02-13T00:30:20.320] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:30:20.343] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:20.347] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:30:20.351] [INFO] cheese - inserting 1000 documents. first: United States presidential election in New York, 1984 and last: Wikipedia:Today's article for improvement/Archives/Unsuccessful Nominations/November 2012 -[2018-02-13T00:30:20.412] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:30:20.520] [INFO] cheese - inserting 1000 documents. first: Dark Avenger (computer virus) and last: Wikipedia:Articles for creation/Redirects/2009-01 -[2018-02-13T00:30:20.565] [INFO] cheese - inserting 1000 documents. first: George W Forbes and last: Template:2004 Summer Olympics France men's handball team roster -[2018-02-13T00:30:20.573] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:30:20.606] [INFO] cheese - inserting 1000 documents. first: Valea Leurdei River and last: Hollental (disambiguation) -[2018-02-13T00:30:20.617] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:30:20.660] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:30:20.696] [INFO] cheese - inserting 1000 documents. first: UK General Election, 1997 and last: Montserrat Carulla -[2018-02-13T00:30:20.730] [INFO] cheese - inserting 1000 documents. first: Stunt Track Racer and last: Template:Deprod/doc -[2018-02-13T00:30:20.739] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:30:20.783] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:30:20.839] [INFO] cheese - inserting 1000 documents. first: Hollental (Franconian Forest) and last: Hyvinkaan Palloseura -[2018-02-13T00:30:20.857] [INFO] cheese - inserting 1000 documents. first: Marquess of Ailesbury and last: Youth sexuality -[2018-02-13T00:30:20.863] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:30:20.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's article for improvement/Archives/Unsuccessful Nominations/October 2012 and last: High Navarrese -[2018-02-13T00:30:20.986] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T00:30:21.004] [INFO] cheese - inserting 1000 documents. first: Facial disc and last: Śródka, Międzychód County -[2018-02-13T00:30:21.012] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:30:21.074] [INFO] cheese - inserting 1000 documents. first: Super Mario World 2: Yoshi's Island and last: Leatherwood Plantation -[2018-02-13T00:30:21.093] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:30:21.148] [INFO] cheese - inserting 1000 documents. first: Way-point and last: INS Mahe -[2018-02-13T00:30:21.159] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:30:21.188] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:30:21.203] [INFO] cheese - inserting 1000 documents. first: Municipal Elections in Santa Perpetua de Mogoda and last: Category:Archbishops of Athens and All Greece -[2018-02-13T00:30:21.242] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:30:21.332] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/Pages needing translation into English and last: Category:Pyramids and bipyramids -[2018-02-13T00:30:21.346] [INFO] cheese - inserting 1000 documents. first: Insekten-Borse and last: Izabelow, Swietokrzyskie Voivodeship -[2018-02-13T00:30:21.360] [INFO] cheese - inserting 1000 documents. first: Erdoğan Yeşilyurt and last: Krafs -[2018-02-13T00:30:21.363] [INFO] cheese - batch complete in: 0.174 secs -[2018-02-13T00:30:21.389] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:30:21.412] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:30:21.445] [INFO] cheese - inserting 1000 documents. first: Strzyżmin and last: Kamal "Chance" Givens -[2018-02-13T00:30:21.464] [INFO] cheese - inserting 1000 documents. first: Antonello Gangini and last: Julia Dorr -[2018-02-13T00:30:21.465] [INFO] cheese - inserting 1000 documents. first: Caterina Irene Elena Maria Imperiali di Francavilla and last: File:Progeny (film).jpg -[2018-02-13T00:30:21.486] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:30:21.502] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:30:21.506] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:30:21.636] [INFO] cheese - inserting 1000 documents. first: Izacic and last: Interstate 25 Business (Douglas, Wyoming) -[2018-02-13T00:30:21.672] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:30:21.698] [INFO] cheese - inserting 1000 documents. first: Scout Craft and last: GroundWorks Theatre -[2018-02-13T00:30:21.732] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/World s Most Hated and last: Tom Korologos -[2018-02-13T00:30:21.754] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:21.759] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:30:21.807] [INFO] cheese - inserting 1000 documents. first: Middle-earth peoples and last: Nizar Sassi -[2018-02-13T00:30:21.864] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:21.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/J. A. D. A Perera and last: Cator’s fantasy -[2018-02-13T00:30:21.906] [INFO] cheese - inserting 1000 documents. first: Rimington's Tigers and last: New Synagogue, Przemyśl -[2018-02-13T00:30:21.911] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:30:21.928] [INFO] cheese - inserting 1000 documents. first: Janos Gyongyosi and last: Wikipedia:Sockpuppet investigations/Strawberrywalruslane/Archive -[2018-02-13T00:30:21.950] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:21.953] [INFO] cheese - inserting 1000 documents. first: Muhammad Ayub Khan and last: Mario Party -[2018-02-13T00:30:21.955] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:30:22.036] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T00:30:22.103] [INFO] cheese - inserting 1000 documents. first: Category:County roads in Okaloosa County, Florida and last: Template:Salvatore -[2018-02-13T00:30:22.132] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic Armenian inventors and last: Ktla.com -[2018-02-13T00:30:22.138] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:30:22.163] [INFO] cheese - inserting 1000 documents. first: Jean-Marc Levy-Leblond and last: Joao Afonso da Costa de Sousa de Macedo, 1st Duke of Albuquerque -[2018-02-13T00:30:22.185] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:30:22.276] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:30:22.306] [INFO] cheese - inserting 1000 documents. first: Loco Locass and last: File:MartinBarre StageLeft.jpg -[2018-02-13T00:30:22.387] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:22.424] [INFO] cheese - inserting 1000 documents. first: Luxborough Street and last: Beverly Deepe Keever -[2018-02-13T00:30:22.476] [INFO] cheese - inserting 1000 documents. first: Stronnictwo Pracy and last: A. W. Gridley House -[2018-02-13T00:30:22.501] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:30:22.560] [INFO] cheese - inserting 1000 documents. first: Courtney Smith Pope and last: Jose Acosta (priest) -[2018-02-13T00:30:22.565] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:30:22.607] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:30:22.717] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/AuggiePaoli and last: Kamishlovskiy District -[2018-02-13T00:30:22.722] [INFO] cheese - inserting 1000 documents. first: Jenny Wilson (politician) and last: Paul Donal Harkins -[2018-02-13T00:30:22.783] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:22.791] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:30:22.878] [INFO] cheese - inserting 1000 documents. first: Jose Adolfo Alvarado Lara and last: Josef Sturmann -[2018-02-13T00:30:22.907] [INFO] cheese - inserting 1000 documents. first: Series connection and last: Oshkosh Air Show -[2018-02-13T00:30:22.915] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:30:22.985] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:23.028] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pacenation.us and last: Yagan's lookout -[2018-02-13T00:30:23.074] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:23.078] [INFO] cheese - inserting 1000 documents. first: HMS Serapis (1779) and last: The Dears -[2018-02-13T00:30:23.116] [INFO] cheese - inserting 1000 documents. first: Josef Sural and last: Category:Unionist Party (Canada) MPs -[2018-02-13T00:30:23.124] [INFO] cheese - inserting 1000 documents. first: Creekside Middle School (Woodstock, Illinois) and last: Gutów, Greater Poland Voivodeship -[2018-02-13T00:30:23.129] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:30:23.140] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:30:23.176] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:30:23.196] [INFO] cheese - inserting 1000 documents. first: Best Nine Award and last: George O'Keefe -[2018-02-13T00:30:23.222] [INFO] cheese - inserting 1000 documents. first: Sanga-Sanga, Kalimantan and last: Cabinet of Kosovo -[2018-02-13T00:30:23.254] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:30:23.273] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:30:23.346] [INFO] cheese - inserting 1000 documents. first: Julian Montellano and last: Sunni fatwas on Shi'as -[2018-02-13T00:30:23.363] [INFO] cheese - inserting 1000 documents. first: Royal Mottos and last: File:AForest single.jpg -[2018-02-13T00:30:23.364] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:30:23.382] [INFO] cheese - inserting 1000 documents. first: John Kasic and last: Quest for a Throne -[2018-02-13T00:30:23.412] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:30:23.422] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:30:23.505] [INFO] cheese - inserting 1000 documents. first: Kantkula, Laane-Viru County and last: Khatoco Khánh Hòa F.C. -[2018-02-13T00:30:23.521] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:30:23.550] [INFO] cheese - inserting 1000 documents. first: Kąkolewo, Ostrów Wielkopolski County and last: Kuh-e Kaf -[2018-02-13T00:30:23.570] [INFO] cheese - inserting 1000 documents. first: Yayasan Senyum and last: Category:WikiProject Terrorism members -[2018-02-13T00:30:23.584] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:23.615] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:30:23.732] [INFO] cheese - inserting 1000 documents. first: Kheir Eddine District and last: Category:Lobanov-Rostovsky family -[2018-02-13T00:30:23.753] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:30:23.757] [INFO] cheese - inserting 1000 documents. first: Le Macchie and last: Category:Library buildings completed in 1893 -[2018-02-13T00:30:23.815] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:30:23.841] [INFO] cheese - inserting 1000 documents. first: Adrian Wilson (actor) and last: Tuberous sclerosis complex tumor suppressors -[2018-02-13T00:30:23.849] [INFO] cheese - inserting 1000 documents. first: Steilhang and last: Wikipedia:WikiProject Spam/LinkReports/easymistry.com -[2018-02-13T00:30:23.885] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:30:23.893] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:30:23.940] [INFO] cheese - inserting 1000 documents. first: Koln-Steinstrasse station and last: Kozia Gora, Pomeranian Voivodeship -[2018-02-13T00:30:23.955] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nafizaydin@hotmail.com and last: Anbu Sagodharargal -[2018-02-13T00:30:23.964] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:30:23.969] [INFO] cheese - inserting 1000 documents. first: Music of Extremadura and last: Richard Burdon Haldane -[2018-02-13T00:30:24.001] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Terrorism articles and last: PSD (Photoshop Document) -[2018-02-13T00:30:24.011] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:30:24.072] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:30:24.149] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:30:24.266] [INFO] cheese - inserting 1000 documents. first: Kozia Gora, Warmian-Masurian Voivodeship and last: Krzyzanowice, Masovian Voivodeship -[2018-02-13T00:30:24.286] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:30:24.287] [INFO] cheese - inserting 1000 documents. first: Hourglass (Squeeze song) and last: Baal Zephon -[2018-02-13T00:30:24.306] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Thema International Fund and last: U.S. Route 29 Business (Danville, Virginia) -[2018-02-13T00:30:24.334] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:24.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/easymistry.com and last: File:1989 5 bolívares Obverse.jpg -[2018-02-13T00:30:24.349] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:30:24.395] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:24.439] [INFO] cheese - inserting 1000 documents. first: Andrei Chukhley and last: Newington College Show -[2018-02-13T00:30:24.480] [INFO] cheese - inserting 1000 documents. first: A&R Cambridge Ltd. and last: La Compania del Tango Nomada -[2018-02-13T00:30:24.485] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:24.507] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:30:24.530] [INFO] cheese - inserting 1000 documents. first: Portal:Maryland/On this day/May 7 and last: Pegky Zina -[2018-02-13T00:30:24.590] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:30:24.670] [INFO] cheese - inserting 1000 documents. first: Leadtime and last: Wikipedia:CHECKWIKI/034 dump -[2018-02-13T00:30:24.697] [INFO] cheese - inserting 1000 documents. first: La Compote and last: Category:Transport in Vietnam by city -[2018-02-13T00:30:24.704] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:30:24.716] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:30:24.759] [INFO] cheese - inserting 1000 documents. first: Brazilian Development Bank and last: Diocese of Qu'Appelle -[2018-02-13T00:30:24.770] [INFO] cheese - inserting 1000 documents. first: Butterfly attractor and last: Baići -[2018-02-13T00:30:24.822] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:30:24.816] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:30:24.904] [INFO] cheese - inserting 1000 documents. first: Lake Tohmajarvi and last: Lazy, Piaseczno County -[2018-02-13T00:30:24.904] [INFO] cheese - inserting 1000 documents. first: Treaty of Ruby Valley 1863 and last: K262AQ -[2018-02-13T00:30:24.919] [INFO] cheese - inserting 1000 documents. first: Watford Gap and last: Closed list -[2018-02-13T00:30:24.924] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:30:24.968] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:24.998] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:30:25.193] [INFO] cheese - inserting 1000 documents. first: AC-130H Hercules and last: Li Qiang (born 1959) -[2018-02-13T00:30:25.246] [INFO] cheese - inserting 1000 documents. first: 1923 in jazz and last: Stephen Don Black -[2018-02-13T00:30:25.299] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:30:25.321] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:30:25.351] [INFO] cheese - inserting 1000 documents. first: Liu Kai and last: The Belle of New York (theatre) -[2018-02-13T00:30:25.589] [INFO] cheese - inserting 1000 documents. first: Template:D.C. Statehood Party/meta/color and last: Un air si pur -[2018-02-13T00:30:25.708] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T00:30:25.839] [INFO] cheese - inserting 1000 documents. first: K262AR and last: Wikipedia:Featured picture candidates/Sarcophaga bercaea -[2018-02-13T00:30:26.110] [INFO] cheese - inserting 1000 documents. first: Les Betises and last: Lineas Aereas Nacionales -[2018-02-13T00:30:26.161] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T00:30:26.138] [INFO] cheese - inserting 1000 documents. first: Paysandisia archon and last: Xavier High School -[2018-02-13T00:30:26.233] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T00:30:26.243] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:30:26.437] [INFO] cheese - batch complete in: 1.62 secs -[2018-02-13T00:30:26.525] [INFO] cheese - inserting 1000 documents. first: D&D 4th edition and last: K. Rajah Iyer -[2018-02-13T00:30:26.592] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T00:30:26.665] [INFO] cheese - inserting 1000 documents. first: Lineas Aereas Nacionales S. A. (Peru) and last: Llevame Donde Naci -[2018-02-13T00:30:26.703] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:30:26.815] [INFO] cheese - inserting 1000 documents. first: File:You Are Everything Ross and Gaye.jpg and last: HD 201567 -[2018-02-13T00:30:26.853] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:30:26.903] [INFO] cheese - inserting 1000 documents. first: Krześlice and last: Cynthia Cruz -[2018-02-13T00:30:26.955] [INFO] cheese - inserting 1000 documents. first: File:Pinellas Special.JPG and last: Template:SGP Results4/reserveB -[2018-02-13T00:30:26.958] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:30:26.997] [INFO] cheese - inserting 1000 documents. first: Yanomama and last: Wolf Hirth -[2018-02-13T00:30:27.005] [INFO] cheese - inserting 1000 documents. first: Llica d'Amunt and last: Luda Zurka – uzivo -[2018-02-13T00:30:27.036] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T00:30:27.045] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:27.052] [INFO] cheese - inserting 1000 documents. first: Uniformity norm and last: Akademie der bildenden Künste Wien -[2018-02-13T00:30:27.109] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:30:27.115] [INFO] cheese - batch complete in: 2.117 secs -[2018-02-13T00:30:27.139] [INFO] cheese - inserting 1000 documents. first: Captain Gantu and last: The Mekons Rock'n'Roll -[2018-02-13T00:30:27.208] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:30:27.385] [INFO] cheese - inserting 1000 documents. first: Category:17th-century disestablishments in Oceania and last: Category:1992–93 Football League Third Division by team -[2018-02-13T00:30:27.415] [INFO] cheese - inserting 1000 documents. first: Ludek (name) and last: Climate Vulnerability Monitor -[2018-02-13T00:30:27.432] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:30:27.459] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:30:27.505] [INFO] cheese - inserting 1000 documents. first: 16S rRNA (guanine1207-N2)-methyltransferase and last: Papilio aeneides -[2018-02-13T00:30:27.515] [INFO] cheese - inserting 1000 documents. first: William T. Cannady and last: File:George Washington Farewell Address by Edward Percy Moran.jpg -[2018-02-13T00:30:27.554] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:27.577] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:30:27.583] [INFO] cheese - inserting 1000 documents. first: Template:R to Swiss municipality (canton) and last: Abbey of St-Germain-des-Prés -[2018-02-13T00:30:27.618] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:30:27.684] [INFO] cheese - inserting 1000 documents. first: Tigre Club and last: Run, Ronnie, Run -[2018-02-13T00:30:27.727] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:30:27.770] [INFO] cheese - inserting 1000 documents. first: Palpal organ and last: Compsolechia succincta -[2018-02-13T00:30:27.821] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:27.848] [INFO] cheese - inserting 1000 documents. first: Eva (2009 film) and last: Lukowiec, Lublin Voivodeship -[2018-02-13T00:30:27.958] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:30:28.014] [INFO] cheese - inserting 1000 documents. first: Parides gargasus and last: Wikipedia:Peer review/Giffnock/archive1 -[2018-02-13T00:30:28.152] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:28.197] [INFO] cheese - inserting 1000 documents. first: Bang The Drum Slowly Dumbass (Beavis and Butt-head Episode) and last: Bahá'í Faith in Sweden -[2018-02-13T00:30:28.273] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:30:28.422] [INFO] cheese - inserting 1000 documents. first: Charles Luckman and last: Nei Lak Shan -[2018-02-13T00:30:28.430] [INFO] cheese - inserting 1000 documents. first: Lukowiec, Masovian Voivodeship and last: पारेवङा -[2018-02-13T00:30:28.484] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:30:28.491] [INFO] cheese - inserting 1000 documents. first: Template:Sampson County, North Carolina and last: I've Got a Crush on Obama -[2018-02-13T00:30:28.523] [INFO] cheese - inserting 1000 documents. first: Teresa Teng and last: Ifrit -[2018-02-13T00:30:28.554] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:30:28.552] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:30:28.565] [INFO] cheese - inserting 1000 documents. first: Compsolechia titanota and last: File:Pavarotti and Friends - Liberia.jpg -[2018-02-13T00:30:28.660] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T00:30:28.689] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:30:28.826] [INFO] cheese - inserting 1000 documents. first: Maieco Domingos Henrique Antonio and last: Marataizes, Espirito Santo -[2018-02-13T00:30:28.902] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:28.905] [INFO] cheese - inserting 1000 documents. first: United States Post Office–Quincy Main and last: Compote (disambiguation) -[2018-02-13T00:30:28.939] [INFO] cheese - inserting 1000 documents. first: Paula Morris and last: File:Gazeta Kombetare February 12, 2013.jpg -[2018-02-13T00:30:28.955] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:30:29.033] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:30:29.235] [INFO] cheese - inserting 1000 documents. first: Shelley Bennett and last: Made in Jamaica -[2018-02-13T00:30:29.238] [INFO] cheese - inserting 1000 documents. first: USS Talbot County (LST-1153) and last: Hugo Laviada Molina -[2018-02-13T00:30:29.310] [INFO] cheese - inserting 1000 documents. first: Chaim Barlev and last: Template:DogImages -[2018-02-13T00:30:29.314] [INFO] cheese - inserting 1000 documents. first: Category:Publications established in 1744 and last: Category:Museums in Nevada County, Arkansas -[2018-02-13T00:30:29.330] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:29.411] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:30:29.416] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:30:29.476] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:30:29.635] [INFO] cheese - inserting 1000 documents. first: Colombian cocaine and last: Category:Beaches of the Northland Region -[2018-02-13T00:30:29.639] [INFO] cheese - inserting 1000 documents. first: Marjan Kovacevic and last: Maurycow, Lask County -[2018-02-13T00:30:29.713] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:30:29.719] [INFO] cheese - inserting 1000 documents. first: River Esk (disambiguation) and last: Tumor alopecia -[2018-02-13T00:30:29.751] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:30:29.846] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:30:29.983] [INFO] cheese - inserting 1000 documents. first: George Mayo and last: Garbahaareey -[2018-02-13T00:30:30.003] [INFO] cheese - inserting 1000 documents. first: Michael P. Decker and last: Heterobasidiomycetes -[2018-02-13T00:30:30.022] [INFO] cheese - inserting 1000 documents. first: Mauvais oil and last: Michalovice (Litomerice District) -[2018-02-13T00:30:30.092] [INFO] cheese - inserting 1000 documents. first: Sharpies (Australian subculture) and last: Bishop of Praeneste -[2018-02-13T00:30:30.144] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:30:30.157] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:30:30.205] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:30:30.250] [INFO] cheese - batch complete in: 1.59 secs -[2018-02-13T00:30:30.299] [INFO] cheese - inserting 1000 documents. first: St. Francis' College and last: U.S. Route 217 -[2018-02-13T00:30:30.471] [INFO] cheese - inserting 1000 documents. first: Municipality of Veržej and last: Orrin Frink -[2018-02-13T00:30:30.543] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T00:30:30.602] [INFO] cheese - inserting 1000 documents. first: Locally inertial coordinates and last: Template:Citroën vehicles timeline (modern) -[2018-02-13T00:30:30.644] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:30:30.686] [INFO] cheese - inserting 1000 documents. first: Michalow, Gmina Brzeziny and last: Minis River (Topa) -[2018-02-13T00:30:30.693] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:30:30.722] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:30:30.892] [INFO] cheese - inserting 1000 documents. first: Akita Senshū Museum of Art and last: Category:17th-century American people by occupation -[2018-02-13T00:30:30.993] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:30:30.993] [INFO] cheese - inserting 1000 documents. first: Mobile packet data service and last: The Politics of Anti-Semitism -[2018-02-13T00:30:31.006] [INFO] cheese - inserting 1000 documents. first: Minister of Foreign Affairs (Sao Tome and Principe) and last: Montcel, Puy-de-Dome -[2018-02-13T00:30:31.062] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:30:31.069] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:30:31.182] [INFO] cheese - inserting 1000 documents. first: ି and last: Template:United States presidential election, 1968 imagemap -[2018-02-13T00:30:31.188] [INFO] cheese - inserting 1000 documents. first: Caro William and last: Bruno Buccellati -[2018-02-13T00:30:31.230] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:30:31.248] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:30:31.346] [INFO] cheese - inserting 1000 documents. first: File:Kelly123.jpg and last: Burn proof -[2018-02-13T00:30:31.366] [INFO] cheese - inserting 1000 documents. first: Holiday Inn Resort Bali Benoa and last: 1996 ITC Estoril round -[2018-02-13T00:30:31.396] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:30:31.425] [INFO] cheese - inserting 1000 documents. first: Montclar, Bergueda and last: Musee des Beaux-Arts de Dijon -[2018-02-13T00:30:31.434] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:31.449] [INFO] cheese - inserting 1000 documents. first: Altscheid and last: Citizens for ethics -[2018-02-13T00:30:31.458] [INFO] cheese - inserting 1000 documents. first: Margin call and last: No! -[2018-02-13T00:30:31.457] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:30:31.497] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:31.547] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T00:30:31.645] [INFO] cheese - inserting 1000 documents. first: Big Bear Lake standoff and last: Rilsan -[2018-02-13T00:30:31.650] [INFO] cheese - inserting 1000 documents. first: Harry Endo and last: Hurşit Meriç -[2018-02-13T00:30:31.663] [INFO] cheese - inserting 1000 documents. first: Musee des Beaux-Arts de Nantes and last: Nemcice (Mlada Boleslav District) -[2018-02-13T00:30:31.687] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:30:31.694] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:31.708] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:31.795] [INFO] cheese - inserting 1000 documents. first: George Ash (Australian politician) and last: Chloe-Jasmine -[2018-02-13T00:30:31.815] [INFO] cheese - inserting 1000 documents. first: Action Contre la Faim and last: Shkhem -[2018-02-13T00:30:31.827] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:30:32.147] [INFO] cheese - inserting 1000 documents. first: Nemcice (Prachatice District) and last: File:Weigel's logo.png -[2018-02-13T00:30:32.306] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:30:32.488] [INFO] cheese - inserting 1000 documents. first: Keri Russel and last: Wikipedia:Suspected sock puppets/Elfred -[2018-02-13T00:30:32.550] [INFO] cheese - inserting 1000 documents. first: Category:Revolvers of the Soviet Union and last: Order of Koutusoff, 1st Grade -[2018-02-13T00:30:32.551] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T00:30:32.624] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:30:32.729] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:30:32.817] [INFO] cheese - inserting 1000 documents. first: Herja and last: Category:1933 in Greece -[2018-02-13T00:30:32.927] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T00:30:32.965] [INFO] cheese - inserting 1000 documents. first: Nisia Floresta, Rio Grande do Norte and last: Nowa Wies, Wschowa County -[2018-02-13T00:30:32.978] [INFO] cheese - inserting 1000 documents. first: Attwood's phacelia and last: Fourseam, KY -[2018-02-13T00:30:32.999] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:30:33.086] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T00:30:33.218] [INFO] cheese - inserting 1000 documents. first: Gudina Tumsa and last: Almaş River (Bistriţa) -[2018-02-13T00:30:33.262] [INFO] cheese - inserting 1000 documents. first: History of the Scots language and last: Rhön-Grabfeld -[2018-02-13T00:30:33.306] [INFO] cheese - inserting 1000 documents. first: William Hoy and last: Coat of arms of Malawi -[2018-02-13T00:30:33.308] [INFO] cheese - inserting 1000 documents. first: Nowa Wies, Zyrardow County and last: Ojakula, Laane-Viru County -[2018-02-13T00:30:33.310] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:30:33.345] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:33.350] [INFO] cheese - inserting 1000 documents. first: 1999 San Diego Film Critics Society Awards and last: Lubbock Lake Landmark -[2018-02-13T00:30:33.389] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:30:33.391] [INFO] cheese - batch complete in: 1.844 secs -[2018-02-13T00:30:33.401] [INFO] cheese - inserting 1000 documents. first: Lambda Omega sorority Norroena and last: Kolopsoides -[2018-02-13T00:30:33.423] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:30:33.496] [INFO] cheese - inserting 1000 documents. first: 1591 in France and last: The Grand Duchy of Baden -[2018-02-13T00:30:33.545] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:30:33.585] [INFO] cheese - inserting 1000 documents. first: Ojala Que Llueva Cafe and last: Orlow, Lesser Poland Voivodeship -[2018-02-13T00:30:33.639] [INFO] cheese - inserting 1000 documents. first: Alunişu River (Cracău) and last: Yalalag Zapoteco language -[2018-02-13T00:30:33.653] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:30:33.658] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:30:33.729] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:30:33.968] [INFO] cheese - inserting 1000 documents. first: Category:Transport in North Korea and last: Otsuchi Station -[2018-02-13T00:30:33.979] [INFO] cheese - inserting 1000 documents. first: File:Snapshot 2007-06-22 14-42-06.jpg and last: J. Scott Smart -[2018-02-13T00:30:33.990] [INFO] cheese - inserting 1000 documents. first: Flag of Normandy and last: Peştiş River (Mureş) -[2018-02-13T00:30:33.989] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:30:34.014] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:30:34.016] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:30:34.138] [INFO] cheese - inserting 1000 documents. first: Mister rogers and last: Journal of orthomolecular medicine -[2018-02-13T00:30:34.144] [INFO] cheese - inserting 1000 documents. first: Federico Archuleta and last: Wikipedia:WikiProject Spam/LinkReports/religioustolerance.org -[2018-02-13T00:30:34.154] [INFO] cheese - inserting 1000 documents. first: Tyloses and last: Take It Easy (Vanessa Carlton song) -[2018-02-13T00:30:34.189] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:30:34.191] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:30:34.195] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:30:34.275] [INFO] cheese - inserting 1000 documents. first: Category:Deputies of Antalya and last: Braşov Council Square (Piaţa Sfatului) -[2018-02-13T00:30:34.310] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:30:34.352] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Hengel and last: Template:The Denmark Barnstar of National Merit -[2018-02-13T00:30:34.396] [INFO] cheese - inserting 1000 documents. first: Hand gestures and last: Fukuyama, Kagoshima -[2018-02-13T00:30:34.408] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:34.434] [INFO] cheese - inserting 1000 documents. first: Places In Between (Terri Hendrix Album) and last: Mark Draycott -[2018-02-13T00:30:34.460] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:30:34.479] [INFO] cheese - inserting 1000 documents. first: Willows (song) and last: Gelechia (Ceratophora) scutella -[2018-02-13T00:30:34.485] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:30:34.499] [INFO] cheese - inserting 1000 documents. first: Braşov railway station and last: PAB1040 (gene) -[2018-02-13T00:30:34.510] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:30:34.559] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:30:34.625] [INFO] cheese - inserting 1000 documents. first: Template:The Indonesia Barnstar of National Merit and last: Template:Editnotices/Page/Wikipedia:Please do not bite the newcomers -[2018-02-13T00:30:34.642] [INFO] cheese - inserting 1000 documents. first: Plessy v. Fergusen and last: Guwolsan Mountain -[2018-02-13T00:30:34.648] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:30:34.702] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:30:34.733] [INFO] cheese - inserting 1000 documents. first: Category:Lehman College alumni and last: Wikipedia:Images and media for deletion/2009 January 13 -[2018-02-13T00:30:34.778] [INFO] cheese - inserting 1000 documents. first: Lætitia Milot and last: Steve L Busby -[2018-02-13T00:30:34.789] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:30:34.804] [INFO] cheese - inserting 1000 documents. first: Băişoara and last: Qaleh-ye Astijan -[2018-02-13T00:30:34.821] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:30:34.856] [INFO] cheese - inserting 1000 documents. first: Cameron Quiseng and last: Pedro Canario, Espirito Santo -[2018-02-13T00:30:34.856] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:30:34.895] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:30:34.909] [INFO] cheese - inserting 1000 documents. first: Ike Harris and last: File:Derby hat.jpg -[2018-02-13T00:30:35.038] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:30:35.177] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Asijan and last: File:Shaggy dog.jpg -[2018-02-13T00:30:35.218] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:35.244] [INFO] cheese - inserting 1000 documents. first: Template:Kōchi Prefecture and last: Philippe de Remi (died 1265) -[2018-02-13T00:30:35.289] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:35.337] [INFO] cheese - inserting 1000 documents. first: Football at the 2002 Asian Games – Women and last: Aframonius diedes -[2018-02-13T00:30:35.341] [INFO] cheese - inserting 1000 documents. first: Aira District, Kagoshima and last: File:NikolaiBukharin.jpg -[2018-02-13T00:30:35.343] [INFO] cheese - inserting 1000 documents. first: Everyday Sunshine and last: Ghana Empire -[2018-02-13T00:30:35.350] [INFO] cheese - inserting 1000 documents. first: WKY Radio and last: Kazakhstan Superleague -[2018-02-13T00:30:35.383] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:30:35.415] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:30:35.427] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:30:35.462] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:30:35.580] [INFO] cheese - inserting 1000 documents. first: Philippe de Remi (died 1296) and last: 1961 Buddy Shuman 250 -[2018-02-13T00:30:35.617] [INFO] cheese - inserting 1000 documents. first: Boat Tail Hollow Point and last: The Last Giant: Anthology -[2018-02-13T00:30:35.617] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:30:35.653] [INFO] cheese - inserting 1000 documents. first: Bumbeşti-Jiu and last: Poiana River (Sălăuţa) -[2018-02-13T00:30:35.675] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:30:35.699] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:30:35.829] [INFO] cheese - inserting 1000 documents. first: Placzki, Silesian Voivodeship and last: Policia (song) -[2018-02-13T00:30:35.866] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:30:35.917] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Kirby's Block Ball and last: File:I Do - Castells.ogg -[2018-02-13T00:30:35.960] [INFO] cheese - inserting 1000 documents. first: 2006 Africa Cup of Nations squads and last: Lakeland High School (Michigan) -[2018-02-13T00:30:35.965] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:30:35.990] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/March 7, 2013 and last: Valcăliţa River -[2018-02-13T00:30:36.003] [INFO] cheese - inserting 1000 documents. first: Catwalk (documentary) and last: G V School -[2018-02-13T00:30:36.011] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:30:36.053] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:30:36.126] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:30:36.130] [INFO] cheese - inserting 1000 documents. first: SubRon and last: Seddonville -[2018-02-13T00:30:36.201] [INFO] cheese - inserting 1000 documents. first: Döderlein bacillus and last: Predboj -[2018-02-13T00:30:36.253] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:30:36.295] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:30:36.341] [INFO] cheese - inserting 1000 documents. first: Vâlceaua Vlădişor River and last: Crngrob 2 Mass Grave -[2018-02-13T00:30:36.382] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:30:36.508] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ketaki Chester and last: S.Coups (에스.쿱스) (Rapper) -[2018-02-13T00:30:36.542] [INFO] cheese - inserting 1000 documents. first: Ram Jam and last: Chinese Wall -[2018-02-13T00:30:36.562] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:30:36.646] [INFO] cheese - inserting 1000 documents. first: Mitsubishi MRX09 Racing Lancer and last: Flutivate -[2018-02-13T00:30:36.654] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T00:30:36.750] [INFO] cheese - inserting 1000 documents. first: Predenice and last: Przewoz, Bytow County -[2018-02-13T00:30:36.782] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:30:36.818] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:36.866] [INFO] cheese - inserting 1000 documents. first: Steve bordin and last: John L. Sullivan (elephant) -[2018-02-13T00:30:36.884] [INFO] cheese - inserting 1000 documents. first: Ahan Tongshan Cup and last: Judge Aldisert -[2018-02-13T00:30:36.897] [INFO] cheese - inserting 1000 documents. first: Cinciş River and last: Charles Dashwood (Royal Navy officer) -[2018-02-13T00:30:36.920] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:30:36.977] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T00:30:37.032] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:30:37.108] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1980 Summer Olympics – Men's coxless pair and last: Taoudeni Basin -[2018-02-13T00:30:37.185] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:30:37.242] [INFO] cheese - inserting 1000 documents. first: Acrocercops perturbata and last: Radimovice u Tabora -[2018-02-13T00:30:37.309] [INFO] cheese - inserting 1000 documents. first: Carolina Entertainment Complex and last: Osaka Evessa -[2018-02-13T00:30:37.315] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:30:37.408] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:30:37.458] [INFO] cheese - inserting 1000 documents. first: Template:House of Aviz-Beja and last: Samuel Farrow -[2018-02-13T00:30:37.549] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:30:37.552] [INFO] cheese - inserting 1000 documents. first: Template:1992 WWF pay-per-view events and last: Waka Waka (disambiguation) -[2018-02-13T00:30:37.587] [INFO] cheese - inserting 1000 documents. first: Mark A. Landis and last: Template:NYCL -[2018-02-13T00:30:37.594] [INFO] cheese - inserting 1000 documents. first: Radimovice u Zelce and last: Recica Kriska -[2018-02-13T00:30:37.602] [INFO] cheese - inserting 1000 documents. first: Hellraiser VIII and last: Scenery And Fish -[2018-02-13T00:30:37.617] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:37.621] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:30:37.655] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:30:37.687] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:30:37.812] [INFO] cheese - inserting 1000 documents. first: List of Polish Uprisings and last: Kostroma (river) -[2018-02-13T00:30:37.858] [INFO] cheese - inserting 1000 documents. first: Template:Municipalities of Goa and last: Beatrice Alfonso of Castile-León -[2018-02-13T00:30:37.898] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T00:30:37.906] [INFO] cheese - inserting 1000 documents. first: Recica, Croatia and last: Chelsea (CDP), Wisconsin -[2018-02-13T00:30:37.931] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:37.953] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:30:38.005] [INFO] cheese - inserting 1000 documents. first: Drovers and last: Category:History of Ireland 1800-1922 -[2018-02-13T00:30:38.012] [INFO] cheese - inserting 1000 documents. first: Waka-waka and last: Transfer of Population Under the Terms of Delhi Agreement -[2018-02-13T00:30:38.041] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:38.072] [INFO] cheese - inserting 1000 documents. first: Template:NYCL/doc and last: Category:Ambassadors of India to Suriname -[2018-02-13T00:30:38.075] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:30:38.118] [INFO] cheese - inserting 1000 documents. first: Rio Duey and last: Vladik Kreinovich -[2018-02-13T00:30:38.120] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:30:38.142] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:30:38.285] [INFO] cheese - inserting 1000 documents. first: Grill and last: Wivelsfield -[2018-02-13T00:30:38.297] [INFO] cheese - inserting 1000 documents. first: Estado de Washington and last: Govinda Roy -[2018-02-13T00:30:38.309] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Lomza and last: Rudnik, Raciborz County -[2018-02-13T00:30:38.339] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:30:38.351] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:30:38.359] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:30:38.419] [INFO] cheese - inserting 1000 documents. first: Ubiquiti and last: Thornley-with-Wheatley -[2018-02-13T00:30:38.449] [INFO] cheese - inserting 1000 documents. first: Reed Township, Ohio and last: Arhopala allata suffusa -[2018-02-13T00:30:38.452] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Marrakesh-Safi and last: QSI Sanaa International School -[2018-02-13T00:30:38.460] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:30:38.492] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:30:38.491] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:30:38.540] [INFO] cheese - inserting 1000 documents. first: Rudnik, Radzyn Podlaski County and last: Category:Documentary film series -[2018-02-13T00:30:38.577] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:30:38.618] [INFO] cheese - inserting 1000 documents. first: Mologa (town) and last: Earl of Iddesleigh -[2018-02-13T00:30:38.690] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:30:38.750] [INFO] cheese - inserting 1000 documents. first: Template:Kraków Fast Tram 50 and last: Humair Hayat Khan Rokhri -[2018-02-13T00:30:38.757] [INFO] cheese - inserting 1000 documents. first: Saint-Creac and last: Glucose bisphosphate -[2018-02-13T00:30:38.785] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:30:38.797] [INFO] cheese - inserting 1000 documents. first: File:Stiv Bators.jpg and last: Category:Russian military historians -[2018-02-13T00:30:38.798] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:30:38.804] [INFO] cheese - inserting 1000 documents. first: Optics & Photonics News and last: Nigel Doughty -[2018-02-13T00:30:38.856] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:30:38.869] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:38.883] [INFO] cheese - inserting 1000 documents. first: PilotsEYE.tv and last: Wikipedia:Route diagram template/BS-anleitung+LR/doc -[2018-02-13T00:30:38.925] [INFO] cheese - inserting 1000 documents. first: Bob Enevoldsen and last: Maija Isola -[2018-02-13T00:30:38.942] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:30:38.989] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:30:39.018] [INFO] cheese - inserting 1000 documents. first: Sainte-Elisabeth, Quebec and last: San Sebastian, Toledo -[2018-02-13T00:30:39.041] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:30:39.123] [INFO] cheese - inserting 1000 documents. first: Yunán Province and last: Hedgehog mortar -[2018-02-13T00:30:39.160] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:39.256] [INFO] cheese - inserting 1000 documents. first: San Secondo (Citta di Castello) and last: Fehaid Al Deehani -[2018-02-13T00:30:39.276] [INFO] cheese - inserting 1000 documents. first: Category:Japanese military historians and last: Category:Leander-class cruisers (1931) of the Royal Navy -[2018-02-13T00:30:39.292] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:30:39.320] [INFO] cheese - inserting 1000 documents. first: The Story So Far (Zack Hexum album) and last: Fujifilm DX-10 -[2018-02-13T00:30:39.330] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:39.343] [INFO] cheese - inserting 1000 documents. first: Karwitz and last: John Sunderland -[2018-02-13T00:30:39.362] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:30:39.393] [INFO] cheese - inserting 1000 documents. first: Category:Silent film portal and last: Byron Barwig -[2018-02-13T00:30:39.398] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:30:39.453] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:30:39.492] [INFO] cheese - inserting 1000 documents. first: Category:Fictional French police detectives and last: Schuzka o pul ctvrte -[2018-02-13T00:30:39.495] [INFO] cheese - inserting 1000 documents. first: Alexander J. Kaleri and last: Generalized special orthogonal group -[2018-02-13T00:30:39.518] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:30:39.535] [INFO] cheese - inserting 1000 documents. first: Georgia University and last: Twenty-three unsolved problems -[2018-02-13T00:30:39.566] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:30:39.568] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:39.652] [INFO] cheese - inserting 1000 documents. first: Christodoulos Tsigantes and last: Category:Havmanden-class submarines (1911) -[2018-02-13T00:30:39.683] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:30:39.700] [INFO] cheese - inserting 1000 documents. first: Salvador Luis Reyes and last: Alive (Nitty Gritty Dirt Band album) -[2018-02-13T00:30:39.723] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:30:39.756] [INFO] cheese - inserting 1000 documents. first: Nicholas Mander and last: Virgin with Child and Chancellor Rolin -[2018-02-13T00:30:39.787] [INFO] cheese - inserting 1000 documents. first: Pacific Front Recordings and last: Dear Diary (Brandy & Mr. Whiskers episode) -[2018-02-13T00:30:39.795] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:30:39.838] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:30:39.847] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:2016-17 United States network television schedule and last: File:Melburnians Ice Hockey Club 1910.png -[2018-02-13T00:30:39.899] [INFO] cheese - inserting 1000 documents. first: Dennis Schmidt and last: Cum hoc non propter hoc -[2018-02-13T00:30:39.905] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:39.913] [INFO] cheese - inserting 1000 documents. first: Sepmistr and last: State of Scott -[2018-02-13T00:30:39.914] [INFO] cheese - inserting 1000 documents. first: Template:Korea University and last: Big Ten Championship -[2018-02-13T00:30:39.933] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:30:39.936] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:30:39.974] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:30:40.106] [INFO] cheese - inserting 1000 documents. first: Simoes, Piaui and last: Slupia, Konskie County -[2018-02-13T00:30:40.134] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:30:40.204] [INFO] cheese - inserting 1000 documents. first: Little Red Lighthouse and last: LPR -[2018-02-13T00:30:40.247] [INFO] cheese - inserting 1000 documents. first: The Paganini Quartet and last: Francisco Quisumbing -[2018-02-13T00:30:40.256] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:30:40.259] [INFO] cheese - inserting 1000 documents. first: File:Airservices Australia logo.png and last: Anthony Bozzella -[2018-02-13T00:30:40.278] [INFO] cheese - inserting 1000 documents. first: Memorial Hermann Life Flight and last: Bataan (disambiguation) -[2018-02-13T00:30:40.300] [INFO] cheese - inserting 1000 documents. first: Big Ten Conference Tournament and last: Matthew O'Reilly -[2018-02-13T00:30:40.301] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:30:40.305] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:40.309] [INFO] cheese - inserting 1000 documents. first: Slupia, Lesser Poland Voivodeship and last: Sosnowka, Podlaskie Voivodeship -[2018-02-13T00:30:40.340] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:40.345] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:30:40.354] [INFO] cheese - inserting 1000 documents. first: Foucaucourt-sur-Thabas, Lorraine and last: Old Post Office (Kirkwood, Delaware) -[2018-02-13T00:30:40.370] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:30:40.400] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:30:40.540] [INFO] cheese - inserting 1000 documents. first: Sosnowka, Wabrzezno County and last: Light Rail and Modern Tramway -[2018-02-13T00:30:40.562] [INFO] cheese - batch complete in: 0.216 secs -[2018-02-13T00:30:40.609] [INFO] cheese - inserting 1000 documents. first: Faber-Jackson Law and last: Yelena Khlusovich -[2018-02-13T00:30:40.618] [INFO] cheese - inserting 1000 documents. first: Captain George Carleton and last: C6H4O5 -[2018-02-13T00:30:40.648] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:40.652] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:30:40.691] [INFO] cheese - inserting 1000 documents. first: H.A.C. Handball and last: Arop-Sissano language -[2018-02-13T00:30:40.732] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:30:40.741] [INFO] cheese - inserting 1000 documents. first: Stary Petrin and last: Sturlic -[2018-02-13T00:30:40.746] [INFO] cheese - inserting 1000 documents. first: School business manager and last: Tai Kok Tsui Ferry -[2018-02-13T00:30:40.773] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:30:40.818] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:30:40.849] [INFO] cheese - inserting 1000 documents. first: Sarsostraca and last: Histopathologic -[2018-02-13T00:30:40.900] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:30:40.975] [INFO] cheese - inserting 1000 documents. first: QuikAir and last: CD Radio -[2018-02-13T00:30:41.007] [INFO] cheese - inserting 1000 documents. first: Category:Swedish people of the Seven Years' War and last: Swietokrzyskie Regional Assembly -[2018-02-13T00:30:41.011] [INFO] cheese - inserting 1000 documents. first: Vikalpa and last: Template:User Tochigi Prefecture -[2018-02-13T00:30:41.013] [INFO] cheese - inserting 1000 documents. first: Category:Cenozoic Caribbean and last: Scotch Free Church -[2018-02-13T00:30:41.040] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:30:41.048] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:30:41.058] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:30:41.164] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:30:41.264] [INFO] cheese - inserting 1000 documents. first: Susanne Henrietta of Lorraine-Elbeuf and last: Taquaracu de Minas -[2018-02-13T00:30:41.320] [INFO] cheese - inserting 1000 documents. first: Follow Me (Pain song) and last: Nap Shea -[2018-02-13T00:30:41.353] [INFO] cheese - inserting 1000 documents. first: Norma Reid Birley and last: Category:North Dakota Fighting Sioux women's ice hockey -[2018-02-13T00:30:41.361] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:30:41.419] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:30:41.430] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:30:41.440] [INFO] cheese - inserting 1000 documents. first: Kinder Morgan and last: Man of the House -[2018-02-13T00:30:41.535] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:30:41.638] [INFO] cheese - inserting 1000 documents. first: File:WAMedcaidBirthGraph.gif and last: Cristina Hoyos -[2018-02-13T00:30:41.642] [INFO] cheese - inserting 1000 documents. first: Interstate 670 (Kansas-Missouri) and last: List of presidential trips made by Barack Obama during 2010 -[2018-02-13T00:30:41.653] [INFO] cheese - inserting 1000 documents. first: Ohio State Route 543 and last: Template:S-line/IT-Eurostar left/Frecciabianco -[2018-02-13T00:30:41.674] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:30:41.701] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:30:41.712] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:30:41.858] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota Fighting Sioux men's ice hockey and last: Alfonso XI of Castille -[2018-02-13T00:30:41.897] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:41.900] [INFO] cheese - inserting 1000 documents. first: File:Cilfynydd RFC.jpg and last: Without A Trace (Trish) -[2018-02-13T00:30:41.930] [INFO] cheese - inserting 1000 documents. first: 24/7 (Rojo album) and last: Template:User in Wales/doc -[2018-02-13T00:30:41.961] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:30:41.964] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:30:42.000] [INFO] cheese - inserting 1000 documents. first: 16th Street (Washington, D.C.) and last: Hypolimnas bolina -[2018-02-13T00:30:42.052] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:30:42.070] [INFO] cheese - inserting 1000 documents. first: Living Legends (charity) and last: File:Cashola.jpg -[2018-02-13T00:30:42.082] [INFO] cheese - inserting 1000 documents. first: USWA and last: A Small Killing -[2018-02-13T00:30:42.089] [INFO] cheese - inserting 1000 documents. first: Astana FC and last: Template:2015–16 National Youth League table -[2018-02-13T00:30:42.112] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:30:42.129] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:30:42.138] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T00:30:42.241] [INFO] cheese - inserting 1000 documents. first: Category:The X Factor (TV series) navigational boxes and last: Dalworth High School -[2018-02-13T00:30:42.299] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:30:42.323] [INFO] cheese - inserting 1000 documents. first: Farnell (cocktail) and last: Extensions (album) -[2018-02-13T00:30:42.372] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:42.432] [INFO] cheese - inserting 1000 documents. first: File:Vladimir Chelomei.jpg and last: John Valentine (cricket) -[2018-02-13T00:30:42.436] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Batangas and last: Rishi Chanda -[2018-02-13T00:30:42.483] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:30:42.510] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:30:42.512] [INFO] cheese - inserting 1000 documents. first: KHAW and last: Template:Current U.S. governors -[2018-02-13T00:30:42.557] [INFO] cheese - inserting 1000 documents. first: Frank Fukuyama and last: Infinity Challenge -[2018-02-13T00:30:42.568] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:30:42.593] [INFO] cheese - inserting 1000 documents. first: Qal'eh Darvish and last: Category:Dominica expatriates in China -[2018-02-13T00:30:42.614] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:42.626] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:30:42.684] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kurort.sergeevka.com.ua and last: 田鳳山 -[2018-02-13T00:30:42.736] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:30:42.800] [INFO] cheese - inserting 1000 documents. first: 1994–95 Pilkington Cup and last: Gary P. Emerson -[2018-02-13T00:30:42.830] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:30:42.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion requests and last: White separatism -[2018-02-13T00:30:42.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Game (drinking game) and last: Fort Garrison -[2018-02-13T00:30:42.994] [INFO] cheese - inserting 1000 documents. first: Category:Dominica expatriates in Iran and last: Mordovsky (disambiguation) -[2018-02-13T00:30:43.003] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Perth/3 and last: File:Me Natalie (1967).jpg -[2018-02-13T00:30:43.019] [INFO] cheese - inserting 1000 documents. first: Catalan-Valencian and last: Ford Supermodel Of The World -[2018-02-13T00:30:43.049] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:30:43.071] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:43.090] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:30:43.105] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:30:43.125] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:30:43.180] [INFO] cheese - inserting 1000 documents. first: Le Chatelier's principle (chemistry) and last: Tocoron River -[2018-02-13T00:30:43.265] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:30:43.387] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of Mecklenburg and last: Category:Media companies established in 1914 -[2018-02-13T00:30:43.439] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:30:43.534] [INFO] cheese - inserting 1000 documents. first: Toczen, Greater Poland Voivodeship and last: ZBGM-75 AICBM -[2018-02-13T00:30:43.575] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:30:43.578] [INFO] cheese - inserting 1000 documents. first: Mordovsky (inhabited locality) and last: GE Healthcare Ltd -[2018-02-13T00:30:43.640] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:30:43.650] [INFO] cheese - inserting 1000 documents. first: General Tormassov and last: 455 (New Jersey bus) -[2018-02-13T00:30:43.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/How to prevent mold and last: Parachute Creek -[2018-02-13T00:30:43.715] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:30:43.717] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:30:43.791] [INFO] cheese - inserting 1000 documents. first: Urmas Rooba and last: Wikipedia:Articles for deletion/Ryan Dowling -[2018-02-13T00:30:43.857] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:30:43.882] [INFO] cheese - inserting 1000 documents. first: Traungoldhohle and last: Turt River -[2018-02-13T00:30:43.918] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:30:44.060] [INFO] cheese - inserting 1000 documents. first: Mamureh and last: Debagram -[2018-02-13T00:30:44.126] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:30:44.143] [INFO] cheese - inserting 1000 documents. first: Spheric section and last: University of Mondragon -[2018-02-13T00:30:44.156] [INFO] cheese - inserting 1000 documents. first: Category:Media companies disestablished in 1961 and last: Slalom water ski -[2018-02-13T00:30:44.176] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:30:44.215] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:30:44.254] [INFO] cheese - inserting 1000 documents. first: Over the Rainbow and last: Wikipedia:Historical archive/Imported pictures/Pictures from southwarkphotolibrary.co.uk details -[2018-02-13T00:30:44.344] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T00:30:44.391] [INFO] cheese - inserting 1000 documents. first: 6-bolt mains and last: List of taxi episodes -[2018-02-13T00:30:44.407] [INFO] cheese - inserting 1000 documents. first: Commercial style and last: Brit hume -[2018-02-13T00:30:44.426] [INFO] cheese - inserting 1000 documents. first: University of Narino and last: Vamonos Pa'l Rio -[2018-02-13T00:30:44.447] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:30:44.493] [INFO] cheese - inserting 1000 documents. first: Category:Municipal presidents of Ensenada and last: Snow Trolls -[2018-02-13T00:30:44.503] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:30:44.530] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:30:44.584] [INFO] cheese - inserting 1000 documents. first: Dream Chronicles: The Eternal Maze and last: Ulrich Füterer -[2018-02-13T00:30:44.601] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:30:44.650] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:30:44.705] [INFO] cheese - inserting 1000 documents. first: Ludicrous Mode and last: Billman (surname) -[2018-02-13T00:30:44.711] [INFO] cheese - inserting 1000 documents. first: Vamoscsalad and last: Veze, Cantal -[2018-02-13T00:30:44.748] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:30:44.775] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:30:44.871] [INFO] cheese - inserting 1000 documents. first: Category:1830 disasters and last: Zayante Band-Winged Grasshopper -[2018-02-13T00:30:44.928] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:30:44.992] [INFO] cheese - inserting 1000 documents. first: Vezelise and last: Vladimir Martinovic -[2018-02-13T00:30:45.041] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:30:45.075] [INFO] cheese - inserting 1000 documents. first: Template:Location map Sweden and last: St. Francis Xavier College (Canberra) -[2018-02-13T00:30:45.114] [INFO] cheese - inserting 1000 documents. first: Boštanj Quarry Mass Grave and last: Atlanta International Documentary Film Festival -[2018-02-13T00:30:45.123] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:30:45.128] [INFO] cheese - inserting 1000 documents. first: Dinmore railway station and last: Gdańsk Nowe Szkoty railway station -[2018-02-13T00:30:45.154] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:30:45.183] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:30:45.201] [INFO] cheese - inserting 1000 documents. first: Vladimir Matic and last: Weglewo, Pila County -[2018-02-13T00:30:45.208] [INFO] cheese - inserting 1000 documents. first: File:Marianas Trench - Astoria (Official Album Cover).jpg and last: Yelena Parkhomenko -[2018-02-13T00:30:45.218] [INFO] cheese - batch complete in: 0.177 secs -[2018-02-13T00:30:45.224] [INFO] cheese - inserting 1000 documents. first: Template:Kalmar County and last: Hilltop Youth -[2018-02-13T00:30:45.250] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:30:45.298] [INFO] cheese - inserting 1000 documents. first: Benalbanach (ship) and last: August of Saxe-Coburg and Gotha, 5th Prince of Kohary -[2018-02-13T00:30:45.320] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:30:45.346] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:45.401] [INFO] cheese - inserting 1000 documents. first: Weglewo, Pomeranian Voivodeship and last: Vyacheslav Vasilevski -[2018-02-13T00:30:45.426] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:30:45.476] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe and the bassett and last: Kiss and Say Goodbye -[2018-02-13T00:30:45.477] [INFO] cheese - inserting 1000 documents. first: George Small (piano maker) and last: Template:Two Gallants -[2018-02-13T00:30:45.508] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:30:45.509] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:45.600] [INFO] cheese - inserting 1000 documents. first: Aikim Andrews and last: Arif (surname) -[2018-02-13T00:30:45.604] [INFO] cheese - inserting 1000 documents. first: Wojtostwo, Piotrkow County and last: Yoko Kasahara -[2018-02-13T00:30:45.625] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:30:45.638] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:30:45.669] [INFO] cheese - inserting 1000 documents. first: Beyliks and last: Meeno Peluce -[2018-02-13T00:30:45.685] [INFO] cheese - inserting 1000 documents. first: File:Beverley Knight - Sista Sista (CD 2).jpg and last: Thuravoor cherthala -[2018-02-13T00:30:45.715] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:45.720] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:30:45.801] [INFO] cheese - inserting 1000 documents. first: File:Osiris statuette cropped.jpg and last: The Skin That I Inhabit -[2018-02-13T00:30:45.832] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:30:45.848] [INFO] cheese - inserting 1000 documents. first: Ribulose-bisphosphate-carboxylase/oxygenase N-methyltransferase and last: Dryden Historic District (North Park, San Diego, California) -[2018-02-13T00:30:45.880] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:30:45.907] [INFO] cheese - inserting 1000 documents. first: Category:Mainstream jazz trombonists and last: Wikipedia:Articles for deletion/Kantebura killas -[2018-02-13T00:30:45.923] [INFO] cheese - inserting 1000 documents. first: Belgorod and last: Empetrum -[2018-02-13T00:30:45.940] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:30:45.995] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:30:45.995] [INFO] cheese - inserting 1000 documents. first: 1559 in France and last: 52 Armored Engineer Squadron -[2018-02-13T00:30:46.040] [INFO] cheese - inserting 1000 documents. first: Ghāghra and last: John DiGilio -[2018-02-13T00:30:46.048] [INFO] cheese - inserting 1000 documents. first: Zaluzany and last: Zerovnica -[2018-02-13T00:30:46.065] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:30:46.109] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:46.117] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:30:46.142] [INFO] cheese - inserting 1000 documents. first: List of Doctor Who universe creatures and aliens (H–P) and last: 2-octaprenyl-6-hydroxyphenyl methylase -[2018-02-13T00:30:46.172] [INFO] cheese - inserting 1000 documents. first: Adam and Eve and Pinch Me (Rendell novel) and last: Sylvester L. Weaver -[2018-02-13T00:30:46.175] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:30:46.241] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:30:46.302] [INFO] cheese - inserting 1000 documents. first: Zerstorergeschwader 1 and last: File:C.D. Howe in aircraft factory.jpg -[2018-02-13T00:30:46.327] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:30:46.340] [INFO] cheese - inserting 1000 documents. first: Zürich Hardbrücke railway station and last: Stub Hub -[2018-02-13T00:30:46.381] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:46.430] [INFO] cheese - inserting 1000 documents. first: Jaroslav Sieger and last: Landgravines of Hesse-Marburg -[2018-02-13T00:30:46.442] [INFO] cheese - inserting 1000 documents. first: S-adenosyl-L-methionine:3-(all-trans-polyprenyl)benzene-1,2-diol 2-O-methyltransferase and last: Trimethylamine methyltransferase -[2018-02-13T00:30:46.449] [INFO] cheese - inserting 1000 documents. first: Template:User phonograph and last: Category:1911 establishments in the Portuguese Empire -[2018-02-13T00:30:46.464] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:30:46.478] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:30:46.533] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:30:46.650] [INFO] cheese - inserting 1000 documents. first: Viva Santana! and last: Category:American painter stubs -[2018-02-13T00:30:46.663] [INFO] cheese - inserting 1000 documents. first: Bonde Farmhouse and last: Guntha -[2018-02-13T00:30:46.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Image Tag Team and last: Indiana University – Purdue University Indianapolis -[2018-02-13T00:30:46.700] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:30:46.713] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:46.718] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:30:46.794] [INFO] cheese - inserting 1000 documents. first: Post-bebop and last: Area code 656 -[2018-02-13T00:30:46.796] [INFO] cheese - inserting 1000 documents. first: First Outlook and last: Czajków, Turek County -[2018-02-13T00:30:46.835] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:30:46.848] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:46.924] [INFO] cheese - inserting 1000 documents. first: Fragmentation bombs and last: Neville Featherstone-Griffin -[2018-02-13T00:30:46.941] [INFO] cheese - inserting 1000 documents. first: William and Helen Koerting House and last: Nina compton -[2018-02-13T00:30:46.970] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:30:46.992] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:30:47.097] [INFO] cheese - inserting 1000 documents. first: Pope Cosmas II of Alexandria and last: Wikipedia:Articles for deletion/Axsellit -[2018-02-13T00:30:47.116] [INFO] cheese - inserting 1000 documents. first: South End, Seattle, Washington and last: Obscurior niasiensis -[2018-02-13T00:30:47.146] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:47.217] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:30:47.297] [INFO] cheese - inserting 1000 documents. first: Czyste, Greater Poland Voivodeship and last: Toby Alderweireld -[2018-02-13T00:30:47.313] [INFO] cheese - inserting 1000 documents. first: Indiana University Purdue University at Indianapolis and last: Thousand islands dressing -[2018-02-13T00:30:47.328] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:30:47.344] [INFO] cheese - inserting 1000 documents. first: Draft:David Phillips (archer) and last: File:Jhurulu School Building Erection.jpg -[2018-02-13T00:30:47.375] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:30:47.379] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:30:47.390] [INFO] cheese - inserting 1000 documents. first: Bishopric of Lodève and last: Remember the Milk -[2018-02-13T00:30:47.435] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:30:47.470] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese football friendly trophies and last: National Kiswahili Association-Kenya -[2018-02-13T00:30:47.510] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:30:47.558] [INFO] cheese - inserting 1000 documents. first: Downtown Historic District (Galesville, Wisconsin) and last: Ruben Alvarez -[2018-02-13T00:30:47.574] [INFO] cheese - inserting 1000 documents. first: Munhar and last: Jean Belanger -[2018-02-13T00:30:47.590] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:30:47.594] [INFO] cheese - inserting 1000 documents. first: Mennen Tullen and last: Gargantuas -[2018-02-13T00:30:47.611] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:47.646] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:30:47.665] [INFO] cheese - inserting 1000 documents. first: Pacman (software) and last: Balkan pine -[2018-02-13T00:30:47.706] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:30:47.716] [INFO] cheese - inserting 1000 documents. first: Giovan Battista Filippo Basile and last: ISO 639:cch -[2018-02-13T00:30:47.740] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:30:47.743] [INFO] cheese - inserting 1000 documents. first: UniTrans and last: Monirul Islam -[2018-02-13T00:30:47.794] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:30:47.861] [INFO] cheese - inserting 1000 documents. first: Category:Events by country and last: Portal:History of science/Selected anniversaries/April 12 -[2018-02-13T00:30:47.895] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:30:47.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/xatzone.com and last: Anodorhynchus martinicus -[2018-02-13T00:30:47.967] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:30:47.978] [INFO] cheese - inserting 1000 documents. first: ISO 639:ccj and last: Funk on Ah Roll -[2018-02-13T00:30:48.007] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:30:48.036] [INFO] cheese - inserting 1000 documents. first: The Farnsworth Parabox and last: File:Scarpa stair.JPG -[2018-02-13T00:30:48.085] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:30:48.105] [INFO] cheese - inserting 1000 documents. first: Category:1851 establishments in Switzerland and last: BT National League Division 3 -[2018-02-13T00:30:48.117] [INFO] cheese - inserting 1000 documents. first: The Baptism of Christ (Piero della Francesca) and last: Malcolm Munthe -[2018-02-13T00:30:48.142] [INFO] cheese - inserting 1000 documents. first: Random oracle model and last: Battle of Savo Island -[2018-02-13T00:30:48.148] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:30:48.165] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:30:48.183] [INFO] cheese - inserting 1000 documents. first: List of advertising agencies by revenue and last: ISO 639:ksj -[2018-02-13T00:30:48.190] [INFO] cheese - inserting 1000 documents. first: Jim Johnson (football coach) and last: Wikipedia:WikiProject Spam/LinkReports/stelling-amsterdam.nl -[2018-02-13T00:30:48.202] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:30:48.221] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:30:48.237] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:48.414] [INFO] cheese - inserting 1000 documents. first: Museum of Life (film) and last: Best of Puddle of Mudd -[2018-02-13T00:30:48.490] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:48.532] [INFO] cheese - inserting 1000 documents. first: ISO 639:ksl and last: CA7 (disambiguation) -[2018-02-13T00:30:48.554] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:30:48.591] [INFO] cheese - inserting 1000 documents. first: Remote Control (1992 film) and last: Rapture Index -[2018-02-13T00:30:48.604] [INFO] cheese - inserting 1000 documents. first: Luigi Marchesi (painter) and last: Farad (disambiguation) -[2018-02-13T00:30:48.627] [INFO] cheese - inserting 1000 documents. first: File:FC Spandau.png and last: Category:Suspected Wikipedia sockpuppets of Ccsheffield -[2018-02-13T00:30:48.643] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:30:48.659] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:48.705] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:30:48.740] [INFO] cheese - inserting 1000 documents. first: Bishop of Vancouver and last: Revista H -[2018-02-13T00:30:48.811] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:30:48.816] [INFO] cheese - inserting 1000 documents. first: ISO 639:mrs and last: ISO 639:pec -[2018-02-13T00:30:48.855] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:30:48.941] [INFO] cheese - inserting 1000 documents. first: Tokio Hotel Best Of and last: The Successor (film) -[2018-02-13T00:30:48.991] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:30:49.036] [INFO] cheese - inserting 1000 documents. first: File:Ho Chi Minh City University of Law Logo.jpeg and last: Al-Qatta'i -[2018-02-13T00:30:49.060] [INFO] cheese - inserting 1000 documents. first: Mary Lasker and last: Wikipedia:Articles for deletion/Brian M. Palmer -[2018-02-13T00:30:49.083] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:49.108] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:49.111] [INFO] cheese - inserting 1000 documents. first: File:Artie bio.JPG and last: Nicole Dufresne -[2018-02-13T00:30:49.121] [INFO] cheese - inserting 1000 documents. first: ISO 639:ped and last: When The Saints Come Marching In -[2018-02-13T00:30:49.135] [INFO] cheese - inserting 1000 documents. first: Sterling-Winthrop Co. and last: José Ramírez III -[2018-02-13T00:30:49.152] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:30:49.163] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:30:49.173] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:49.198] [INFO] cheese - inserting 1000 documents. first: Lockheed TR-1 and last: Orange box -[2018-02-13T00:30:49.278] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:30:49.404] [INFO] cheese - inserting 1000 documents. first: Harlem Shake (meme and last: Oregon Republican primary, 2008 -[2018-02-13T00:30:49.418] [INFO] cheese - inserting 1000 documents. first: Dirk Schulze-Makuch and last: Geronimo (1993 film) -[2018-02-13T00:30:49.427] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:30:49.441] [INFO] cheese - inserting 1000 documents. first: Melty Brain and last: Draft:Danko Sipka -[2018-02-13T00:30:49.465] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:49.482] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:49.673] [INFO] cheese - inserting 1000 documents. first: Xenusian and last: 1973 Cannes Film Festival -[2018-02-13T00:30:49.712] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:30:49.722] [INFO] cheese - inserting 1000 documents. first: Association of Public-Safety communications Officials-International and last: June 2007 Texas flooding -[2018-02-13T00:30:49.748] [INFO] cheese - inserting 1000 documents. first: Brazilian embroidery and last: Template:Subdivisions of Newfoundland and Labrador -[2018-02-13T00:30:49.775] [INFO] cheese - inserting 1000 documents. first: ISO 639:tvs and last: ISO 639:yra -[2018-02-13T00:30:49.782] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:30:49.809] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:30:49.833] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:30:49.964] [INFO] cheese - inserting 1000 documents. first: Nike White Rose Classic and last: Greek Basket League 2004-05 -[2018-02-13T00:30:50.023] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:30:50.100] [INFO] cheese - inserting 1000 documents. first: Humaria hemispherica and last: List of 2006 box office number-one films in the South Korea -[2018-02-13T00:30:50.107] [INFO] cheese - inserting 1000 documents. first: Category:1916 in the United States Virgin Islands and last: Boudjebaa El Bordj -[2018-02-13T00:30:50.224] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:30:50.243] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:30:50.253] [INFO] cheese - inserting 1000 documents. first: Group 12 element and last: Albert Woolson -[2018-02-13T00:30:50.261] [INFO] cheese - inserting 1000 documents. first: ISO 639:yrb and last: Catalan-Talgo -[2018-02-13T00:30:50.291] [INFO] cheese - inserting 1000 documents. first: Reasons (disambiguation) and last: Tim Coyle -[2018-02-13T00:30:50.315] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:30:50.352] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T00:30:50.418] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:30:50.668] [INFO] cheese - inserting 1000 documents. first: Payao Poontarat and last: Template:User Fermanagh -[2018-02-13T00:30:50.773] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:30:50.801] [INFO] cheese - inserting 1000 documents. first: File:The Load-Out Side-B Jackson Browne.jpg and last: Category:Sculptors from Oregon -[2018-02-13T00:30:50.873] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:30:50.951] [INFO] cheese - inserting 1000 documents. first: Josimar da silva Martins and last: Neue Deutsche Welle (Album) -[2018-02-13T00:30:50.960] [INFO] cheese - inserting 1000 documents. first: 1955 NCAA Division I-A football season and last: Category:Top-importance Past Political Scandals and Controversies articles -[2018-02-13T00:30:50.992] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:30:51.025] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:30:51.058] [INFO] cheese - inserting 1000 documents. first: Collaboration with Nazi Germany and last: Nanog -[2018-02-13T00:30:51.118] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:30:51.200] [INFO] cheese - inserting 1000 documents. first: File:Xmastress.PNG and last: The Definitive Simon and Garfunkel -[2018-02-13T00:30:51.264] [INFO] cheese - inserting 1000 documents. first: Lapis armenus and last: Portuguese East Africa Colony -[2018-02-13T00:30:51.285] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:30:51.317] [INFO] cheese - inserting 1000 documents. first: 2016 Superbike World Championship and last: Holiday Chile -[2018-02-13T00:30:51.326] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:30:51.367] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:51.426] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Past Political Scandals and Controversies articles and last: Toll (road usage) -[2018-02-13T00:30:51.442] [INFO] cheese - inserting 1000 documents. first: Never Seen The Light of Day and last: Category:Gearing-class destroyer infobox templates -[2018-02-13T00:30:51.471] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:51.508] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:30:51.515] [INFO] cheese - inserting 1000 documents. first: Cherry Drummond and last: Greatest Hits (Patricia Conroy album) -[2018-02-13T00:30:51.569] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:30:51.626] [INFO] cheese - inserting 1000 documents. first: Chitterlings and last: Platanista Gangetica -[2018-02-13T00:30:51.655] [INFO] cheese - inserting 1000 documents. first: Dismiss with prejudice and last: 1744 in the United Kingdom -[2018-02-13T00:30:51.704] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T00:30:51.710] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:51.813] [INFO] cheese - inserting 1000 documents. first: File:Loose.png and last: Anoushay Abbasi -[2018-02-13T00:30:51.865] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:30:51.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2015 October 2 and last: Michael Clarkson (pastoralist) -[2018-02-13T00:30:51.960] [INFO] cheese - inserting 1000 documents. first: Marcel Busch and last: Category:Vålerenga Ishockey players -[2018-02-13T00:30:51.996] [INFO] cheese - inserting 1000 documents. first: Alliance israélite universelle and last: Wikipedia:Articles for deletion/Oldest Official Student Publication -[2018-02-13T00:30:52.032] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:30:52.045] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:30:52.063] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:30:52.110] [INFO] cheese - inserting 1000 documents. first: Cardinal Wiseman Catholic Technology College and last: Simulex Inc. -[2018-02-13T00:30:52.175] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:30:52.211] [INFO] cheese - inserting 1000 documents. first: File:AllTimeLowStraightToDVD.jpg and last: Mountain Grove, Virginia -[2018-02-13T00:30:52.262] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:30:52.302] [INFO] cheese - inserting 1000 documents. first: San Juan Tamazola Mixtec and last: Category:History of Kerala on film -[2018-02-13T00:30:52.363] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:30:52.437] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Conquer Club and last: State Electricity Regulatory Commission -[2018-02-13T00:30:52.479] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:30:52.502] [INFO] cheese - inserting 1000 documents. first: Book:People and Orders (PT) 11 Seg and last: PS Gael (1867) -[2018-02-13T00:30:52.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiquette assistance/archive2 and last: Rulers of Choson -[2018-02-13T00:30:52.543] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:30:52.592] [INFO] cheese - inserting 1000 documents. first: Enrique Amorim and last: Wikipedia:Selected anniversaries/July 3 -[2018-02-13T00:30:52.601] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:30:52.613] [INFO] cheese - inserting 1000 documents. first: The Godfather I and last: The Angelic Upstarts -[2018-02-13T00:30:52.685] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:30:52.695] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:30:52.749] [INFO] cheese - inserting 1000 documents. first: Camp sites and last: MGZ -[2018-02-13T00:30:52.767] [INFO] cheese - inserting 1000 documents. first: Veni redemptor gentium and last: Dublin GAA Senior B Hurling Championship -[2018-02-13T00:30:52.812] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:30:52.824] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:52.947] [INFO] cheese - inserting 1000 documents. first: Royal Road of Kraków and last: Portal:Istanbul/Categories -[2018-02-13T00:30:52.992] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:30:53.127] [INFO] cheese - inserting 1000 documents. first: Tatyana Gordeyeva and last: Wikipedia:Articles for deletion/Secret Agent 23 Skidoo -[2018-02-13T00:30:53.223] [INFO] cheese - inserting 1000 documents. first: The very best of Level 42 and last: John Oxx -[2018-02-13T00:30:53.236] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:30:53.255] [INFO] cheese - inserting 1000 documents. first: Indoors and last: Jonathan Davis (disambiguation) -[2018-02-13T00:30:53.270] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:53.318] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:30:53.326] [INFO] cheese - inserting 1000 documents. first: Kevin "Dis" McAllister and last: Muzaffarpur Junction -[2018-02-13T00:30:53.332] [INFO] cheese - inserting 1000 documents. first: MHJ and last: Soft Focus -[2018-02-13T00:30:53.363] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:30:53.391] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:30:53.477] [INFO] cheese - inserting 1000 documents. first: File:Captain Barbell.jpg and last: Bob Braithwaite (sport shooter) -[2018-02-13T00:30:53.522] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:30:53.569] [INFO] cheese - inserting 1000 documents. first: Orlando Science Center and last: Uppland Runic Inscription 358 -[2018-02-13T00:30:53.581] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Selected anniversaries/July 4 and last: Italo-Ethiopian War -[2018-02-13T00:30:53.610] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:30:53.615] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fiona Clayton and last: Leman International School (China) -[2018-02-13T00:30:54.082] [INFO] cheese - batch complete in: 1.386 secs -[2018-02-13T00:30:54.199] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:30:54.316] [INFO] cheese - inserting 1000 documents. first: Murray Tosh and last: File:Recruitmovie.jpg -[2018-02-13T00:30:54.371] [INFO] cheese - inserting 1000 documents. first: Mic array and last: Wikipedia:WikiProject Spam/LinkReports/mccb.org -[2018-02-13T00:30:54.463] [INFO] cheese - inserting 1000 documents. first: Darko Karadžić and last: Lined surgeonfish -[2018-02-13T00:30:54.489] [INFO] cheese - inserting 1000 documents. first: Great Ejectment and last: Ban Phônsavan -[2018-02-13T00:30:54.537] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:30:54.590] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T00:30:54.603] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T00:30:54.677] [INFO] cheese - batch complete in: 1.314 secs -[2018-02-13T00:30:54.861] [INFO] cheese - inserting 1000 documents. first: UD Fuengirola Los Boliches and last: Category:15th century in Easter Island -[2018-02-13T00:30:54.885] [INFO] cheese - inserting 1000 documents. first: Voluntary Taxation and last: Kōjimachi Station -[2018-02-13T00:30:54.908] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:30:55.043] [INFO] cheese - batch complete in: 1.433 secs -[2018-02-13T00:30:55.109] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mccb.org and last: Category:Seaside resorts in Oregon -[2018-02-13T00:30:55.149] [INFO] cheese - inserting 1000 documents. first: Thakhèk and last: Doremi Laboratories, Inc. -[2018-02-13T00:30:55.190] [INFO] cheese - inserting 1000 documents. first: Alpha1Estates and last: File:Edinburgh Castle 2005.jpg -[2018-02-13T00:30:55.208] [INFO] cheese - inserting 1000 documents. first: Category:FC Krystal Kherson players and last: Wikipedia:Articles for deletion/JP Cadorin -[2018-02-13T00:30:55.213] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:30:55.221] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:30:55.282] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:30:55.294] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:30:55.390] [INFO] cheese - inserting 1000 documents. first: Hoor of Babylon and last: File:NRJ 12 2015 logo.png -[2018-02-13T00:30:55.544] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:30:55.653] [INFO] cheese - inserting 1000 documents. first: South American Plate and last: Historical Jesus -[2018-02-13T00:30:55.677] [INFO] cheese - inserting 1000 documents. first: File:FlyingWithoutWings.jpg and last: File:Live and die.jpg -[2018-02-13T00:30:55.720] [INFO] cheese - batch complete in: 1.638 secs -[2018-02-13T00:30:55.720] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:30:55.797] [INFO] cheese - inserting 1000 documents. first: United States presidential election in Alabama, 1824 and last: Category:WikiProject Nauru members -[2018-02-13T00:30:55.819] [INFO] cheese - inserting 1000 documents. first: Qays ibn Musahir and last: William with the long beard -[2018-02-13T00:30:55.828] [INFO] cheese - inserting 1000 documents. first: Dichloroacetamide and last: Template:MuswellbrookShire-geo-stub -[2018-02-13T00:30:55.850] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:30:55.859] [INFO] cheese - inserting 1000 documents. first: 2011 Extreme Sailing Series and last: Wikipedia:WikiProject Spam/Local/pashtopro.com -[2018-02-13T00:30:55.868] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:30:55.925] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:30:55.937] [INFO] cheese - inserting 1000 documents. first: Dublin and Southwestern Railroad and last: File:Sentou Yousei Yukikaze.jpg -[2018-02-13T00:30:55.943] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:56.016] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:30:56.114] [INFO] cheese - inserting 1000 documents. first: Saint-Trinit and last: SR-54 -[2018-02-13T00:30:56.148] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:56.258] [INFO] cheese - inserting 1000 documents. first: Oregon Bill of 1848 and last: Grid search -[2018-02-13T00:30:56.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Veritas Aeterna/Draft Kissinger and last: KVIE, Inc. -[2018-02-13T00:30:56.295] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:56.312] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:56.391] [INFO] cheese - inserting 1000 documents. first: Duane Mansion and last: The Jim Morrison Triptych -[2018-02-13T00:30:56.437] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:30:56.457] [INFO] cheese - inserting 1000 documents. first: Template:Maitland-geo-stub and last: List of Heroes of the Russian Federation (B) -[2018-02-13T00:30:56.480] [INFO] cheese - inserting 1000 documents. first: Formal derivative and last: Bánh xèo -[2018-02-13T00:30:56.523] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:56.549] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:30:56.552] [INFO] cheese - inserting 1000 documents. first: Where Were You Last Night (song) and last: Jimmie Jones (defensive end) -[2018-02-13T00:30:56.594] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:56.644] [INFO] cheese - inserting 1000 documents. first: Rod Smart and last: Two Knights defence -[2018-02-13T00:30:56.715] [INFO] cheese - inserting 1000 documents. first: Polo, Valenzuela and last: Karasuk, Russia -[2018-02-13T00:30:56.727] [INFO] cheese - inserting 1000 documents. first: Later Sabeol and last: Jules B Montenier -[2018-02-13T00:30:56.735] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:30:56.752] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:30:56.797] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:30:56.944] [INFO] cheese - inserting 1000 documents. first: Pearl in the Palm and last: Maybe My Baby -[2018-02-13T00:30:56.968] [INFO] cheese - inserting 1000 documents. first: Carlsbad 1907 chess tournament and last: Economic and Social Committee -[2018-02-13T00:30:56.989] [INFO] cheese - inserting 1000 documents. first: Charonia tritonis and last: File for Record -[2018-02-13T00:30:57.007] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:30:57.019] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:30:57.064] [INFO] cheese - inserting 1000 documents. first: Dvd Ram and last: Template:Chapters in the Gospel of Mark -[2018-02-13T00:30:57.065] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:30:57.101] [INFO] cheese - inserting 1000 documents. first: Vyacheslav Derkach and last: List of songs containing the fifties' chord progression -[2018-02-13T00:30:57.149] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:30:57.203] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:30:57.241] [INFO] cheese - inserting 1000 documents. first: Manual Testing and last: Alison Fairlie -[2018-02-13T00:30:57.286] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:30:57.484] [INFO] cheese - inserting 1000 documents. first: File:CILLA BAT BRN.jpg and last: Allegations of breaches of international law by the United States -[2018-02-13T00:30:57.485] [INFO] cheese - inserting 1000 documents. first: E. Clarke Arnold Residence and last: 1993 Malaysian constitutional ammendment -[2018-02-13T00:30:57.502] [INFO] cheese - inserting 1000 documents. first: Two Knights Defence and last: Irenism -[2018-02-13T00:30:57.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/beedbox.com and last: Category:Peaceville Records albums -[2018-02-13T00:30:57.526] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:57.537] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:30:57.577] [INFO] cheese - inserting 1000 documents. first: Mundakanniamman Koil (Chennai MRTS) and last: Sierra de San Carlos -[2018-02-13T00:30:57.579] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:30:57.595] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:30:57.600] [INFO] cheese - inserting 1000 documents. first: Lee Sang-hyun and last: Immurement -[2018-02-13T00:30:57.655] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:57.667] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:30:57.674] [INFO] cheese - inserting 1000 documents. first: Template:1976 AL Record vs. opponents and last: Category:1978 natural disasters in the United States -[2018-02-13T00:30:57.708] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:30:57.956] [INFO] cheese - inserting 1000 documents. first: David Grann and last: Beat Me -[2018-02-13T00:30:57.982] [INFO] cheese - inserting 1000 documents. first: Chosroids and last: Zanesville-Dresden Road -[2018-02-13T00:30:57.997] [INFO] cheese - inserting 1000 documents. first: Category:Permanent Records albums and last: Semi-Detached -[2018-02-13T00:30:58.010] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:30:58.028] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:58.031] [INFO] cheese - inserting 1000 documents. first: Category:1971 natural disasters in the United States and last: Jacobisq/Capacity to be alone -[2018-02-13T00:30:58.047] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:30:58.069] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:30:58.097] [INFO] cheese - inserting 1000 documents. first: Africanus, Sextus Julius and last: Jarosite -[2018-02-13T00:30:58.135] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:30:58.182] [INFO] cheese - inserting 1000 documents. first: Wood gecko and last: Ciphers and Constellations, in Love with a Woman -[2018-02-13T00:30:58.228] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:58.257] [INFO] cheese - inserting 1000 documents. first: Template:Lok Rajya Party/meta/shortname and last: List of bishops in the Episcopal Diocese of Chicago -[2018-02-13T00:30:58.304] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:30:58.326] [INFO] cheese - inserting 1000 documents. first: Toutant Airport and last: Category:Paradime albums -[2018-02-13T00:30:58.361] [INFO] cheese - inserting 1000 documents. first: Ruslan Mirzaliyev and last: Morton d. may -[2018-02-13T00:30:58.363] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:30:58.399] [INFO] cheese - inserting 1000 documents. first: Asmat languages and last: ASHS -[2018-02-13T00:30:58.403] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:30:58.409] [INFO] cheese - inserting 1000 documents. first: 1953 Cupa României Final and last: Shield aralia -[2018-02-13T00:30:58.443] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:30:58.465] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:30:58.556] [INFO] cheese - inserting 1000 documents. first: Category:1788 in Africa and last: Lurch/Butterfly Love -[2018-02-13T00:30:58.564] [INFO] cheese - inserting 1000 documents. first: Category:Paper + Plastick albums and last: Portal:University of Montana/Selected article -[2018-02-13T00:30:58.587] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:30:58.587] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:30:58.737] [INFO] cheese - inserting 1000 documents. first: Martin Chávez and last: John Taylor, Baron Taylor of Warwick -[2018-02-13T00:30:58.744] [INFO] cheese - inserting 1000 documents. first: Izel Jenkins and last: Microparasite -[2018-02-13T00:30:58.747] [INFO] cheese - inserting 1000 documents. first: Ghita of Alizarr and last: Wikipedia:Template messages/Section -[2018-02-13T00:30:58.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Sujitmoto Group and last: Wikipedia:Articles for deletion/The Church at BattleCreek -[2018-02-13T00:30:58.778] [INFO] cheese - inserting 1000 documents. first: EA Distribution and last: The Hip Hop Years -[2018-02-13T00:30:58.787] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:58.806] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:30:58.841] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:30:58.863] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:30:58.929] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:30:59.067] [INFO] cheese - inserting 1000 documents. first: Tokyo Youth Development Ordinance and last: Bafata (disambiguation) -[2018-02-13T00:30:59.139] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:30:59.153] [INFO] cheese - inserting 1000 documents. first: File:Steel Pole Bath Tub - Lurch and Butterfly Love.jpeg and last: Category:1865 in Maryland -[2018-02-13T00:30:59.226] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:30:59.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wendy Sweeney and last: Wikipedia:Articles for deletion/Tom Williams's (stock trader) -[2018-02-13T00:30:59.420] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:30:59.466] [INFO] cheese - inserting 1000 documents. first: Alexander Malcolm Manson and last: Wikipedia:Articles for deletion/American Mayor(film) -[2018-02-13T00:30:59.477] [INFO] cheese - inserting 1000 documents. first: Bishop of St-Lizier and last: Ilona Jokinen -[2018-02-13T00:30:59.491] [INFO] cheese - inserting 1000 documents. first: Baila Conmigo (disambiguation) and last: Template:Packaging -[2018-02-13T00:30:59.512] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:30:59.538] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:59.546] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:30:59.585] [INFO] cheese - inserting 1000 documents. first: Mwanga District and last: Polyols -[2018-02-13T00:30:59.617] [INFO] cheese - inserting 1000 documents. first: You shall not bear false witness against your neighbor and last: Kolkata railway station -[2018-02-13T00:30:59.649] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:30:59.652] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:30:59.758] [INFO] cheese - inserting 1000 documents. first: Category:1941 comics endings and last: Draft:List of blockchain companies -[2018-02-13T00:30:59.789] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:59.930] [INFO] cheese - inserting 1000 documents. first: Hopkinsia and last: Buchtel football -[2018-02-13T00:30:59.963] [INFO] cheese - inserting 1000 documents. first: Cross stitches and last: Menominees -[2018-02-13T00:30:59.978] [INFO] cheese - inserting 1000 documents. first: Rome (Paris Métro) and last: Server-side include -[2018-02-13T00:30:59.980] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:59.990] [INFO] cheese - inserting 1000 documents. first: Portal:Portal/Selected picture/5 and last: Mythos (computer game) -[2018-02-13T00:31:00.005] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:31:00.045] [INFO] cheese - inserting 1000 documents. first: Helen of Troy (TV series) and last: Template:Modern-pentathlon-stub -[2018-02-13T00:31:00.057] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T00:31:00.064] [INFO] cheese - inserting 1000 documents. first: Yumi (disambiguation) and last: Dogger -[2018-02-13T00:31:00.067] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:31:00.088] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:00.145] [INFO] cheese - inserting 1000 documents. first: 2015–16 Esbjerg fB season and last: Second Revolution Day -[2018-02-13T00:31:00.160] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:31:00.274] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:00.498] [INFO] cheese - inserting 1000 documents. first: Nubian Flapshell Turtle and last: Category:Wikipedia featured topics New York and New Jersey campaign featured content -[2018-02-13T00:31:00.528] [INFO] cheese - inserting 1000 documents. first: Chang Hsien-chung and last: Darn That Dream -[2018-02-13T00:31:00.580] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:31:00.593] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:31:00.602] [INFO] cheese - inserting 1000 documents. first: File:We're the Brotherhood Of Man.jpg and last: Folke Sundquist -[2018-02-13T00:31:00.649] [INFO] cheese - inserting 1000 documents. first: Efase kigali and last: Wikipedia:Main Page history/2013 March 3 -[2018-02-13T00:31:00.694] [INFO] cheese - inserting 1000 documents. first: Helensburgh railway station and last: File:SAPN.png -[2018-02-13T00:31:00.697] [INFO] cheese - inserting 1000 documents. first: Nyerere Day and last: 1916 in Russia -[2018-02-13T00:31:00.696] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:31:00.731] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:31:00.768] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:31:00.771] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:31:01.001] [INFO] cheese - inserting 1000 documents. first: Arncliffe, North Yorkshire and last: Kay Kendall -[2018-02-13T00:31:01.069] [INFO] cheese - inserting 1000 documents. first: Portal:Arizonan/News/Wikinews and last: Template:Taxonomy/Priapulidae -[2018-02-13T00:31:01.095] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:31:01.118] [INFO] cheese - inserting 1000 documents. first: Sampov Meas and last: Category:Defunct magazines of Canada -[2018-02-13T00:31:01.122] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:31:01.123] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean diaspora in Asia and last: Joao Paulo Bravo Pereira -[2018-02-13T00:31:01.134] [INFO] cheese - inserting 1000 documents. first: 2006–07 Wisconsin Badgers men's basketball team and last: Asante Kotoko F.C. -[2018-02-13T00:31:01.208] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:31:01.230] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:31:01.239] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:01.252] [INFO] cheese - inserting 1000 documents. first: Avraham (Yair) Stern and last: 134th meridian east -[2018-02-13T00:31:01.373] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:01.453] [INFO] cheese - inserting 1000 documents. first: Coupling (UK) and last: Wikipedia:Articles for deletion/Çağlar -[2018-02-13T00:31:01.525] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:31:01.625] [INFO] cheese - inserting 1000 documents. first: Hendrick Mommers and last: Schall (disambiguation) -[2018-02-13T00:31:01.658] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:31:01.790] [INFO] cheese - inserting 1000 documents. first: Colchuck Glacier and last: Wikipedia:Articles for deletion/Engineering For Kids -[2018-02-13T00:31:01.810] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ethel Lang (supercentenarian) and last: 2002 Major League Baseball Draft -[2018-02-13T00:31:01.830] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:31:01.849] [INFO] cheese - inserting 1000 documents. first: Bustros and last: 2006 Texas Rangers season -[2018-02-13T00:31:01.862] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:31:01.875] [INFO] cheese - inserting 1000 documents. first: List of defunct United States Congressional committees and last: Donald Marron -[2018-02-13T00:31:01.917] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:31:01.943] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:31:01.985] [INFO] cheese - inserting 1000 documents. first: Cuba at the 1900 Summer Olympics and last: Model Penal Code -[2018-02-13T00:31:02.033] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:02.050] [INFO] cheese - inserting 1000 documents. first: FC Homburg and last: 2011 in Japanese television -[2018-02-13T00:31:02.065] [INFO] cheese - inserting 1000 documents. first: Concord Records and last: List of Billboard Hot 100 number-one singles of 1995 -[2018-02-13T00:31:02.089] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:31:02.139] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:31:02.211] [INFO] cheese - inserting 1000 documents. first: 18 Ursae Majoris and last: De Zwarte Raaf -[2018-02-13T00:31:02.253] [INFO] cheese - inserting 1000 documents. first: Category:Wireless internet service providers and last: Krause Center for Leadership and Ethics -[2018-02-13T00:31:02.276] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:02.295] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:31:02.431] [INFO] cheese - inserting 1000 documents. first: Numerical error and last: Augsburg-Firnhaberau -[2018-02-13T00:31:02.464] [INFO] cheese - inserting 1000 documents. first: CADPAC and last: Mirai Ninja (video game) -[2018-02-13T00:31:02.474] [INFO] cheese - inserting 1000 documents. first: Template:Bathurst 1000 winners and last: Nieborowice -[2018-02-13T00:31:02.481] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:31:02.501] [INFO] cheese - inserting 1000 documents. first: Randy Pendleton and last: Elisabeth Aasen -[2018-02-13T00:31:02.536] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:31:02.567] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:31:02.630] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:31:02.688] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Windowgate and last: Krivosheinskii -[2018-02-13T00:31:02.726] [INFO] cheese - inserting 1000 documents. first: Jennifer Chatman and last: Wikipedia:Featured picture candidates/Shangrila Lake -[2018-02-13T00:31:02.731] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:02.771] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:02.860] [INFO] cheese - inserting 1000 documents. first: Pinus serotina and last: Bobby Flay England -[2018-02-13T00:31:02.955] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:31:02.978] [INFO] cheese - inserting 1000 documents. first: Standard Diver Dress and last: Portal:Mumbai/In the news -[2018-02-13T00:31:02.997] [INFO] cheese - inserting 1000 documents. first: Haukåsen Radar and last: Major Jill Metzger -[2018-02-13T00:31:03.024] [INFO] cheese - inserting 1000 documents. first: The Union (newspaper) and last: Rascals in Paradise (short story collection) -[2018-02-13T00:31:03.048] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:03.051] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:31:03.081] [INFO] cheese - inserting 1000 documents. first: Krivosheinskoye and last: Lotus Deities -[2018-02-13T00:31:03.087] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:03.094] [INFO] cheese - inserting 1000 documents. first: Cherokee High School and last: File:Southwell logo.jpg -[2018-02-13T00:31:03.122] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:31:03.146] [INFO] cheese - inserting 1000 documents. first: Akami v. Limelight and last: R v Secretary of State for Transport, ex p Factortame Ltd -[2018-02-13T00:31:03.161] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:31:03.197] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:31:03.419] [INFO] cheese - inserting 1000 documents. first: Bolide impact and last: U.S. Route 64 in Arkansas -[2018-02-13T00:31:03.429] [INFO] cheese - inserting 1000 documents. first: File:Jerry Frei.png and last: Template:Footer World LC Champions 4x100m Freestyle Women -[2018-02-13T00:31:03.460] [INFO] cheese - inserting 1000 documents. first: Tv9 Kannada News Channel and last: Wikipedia:Articles for deletion/Alasdair Macmillan -[2018-02-13T00:31:03.468] [INFO] cheese - inserting 1000 documents. first: Mohammadabad Rural District (Anbarabad County) and last: R.S.Cowan -[2018-02-13T00:31:03.470] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:31:03.482] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:31:03.500] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:31:03.520] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:03.578] [INFO] cheese - inserting 1000 documents. first: St. Simon (horse) and last: Fire Drakes -[2018-02-13T00:31:03.602] [INFO] cheese - inserting 1000 documents. first: Category:Miracles attributed to Jesus and last: 1959–60 Dumbarton F.C. season -[2018-02-13T00:31:03.616] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:03.640] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:31:03.717] [INFO] cheese - inserting 1000 documents. first: Bobby England and last: Baron Balfour of Inchrye -[2018-02-13T00:31:03.861] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:31:03.871] [INFO] cheese - inserting 1000 documents. first: Category:1969 disestablishments in Maryland and last: Eliezer ben Nathan of Mainz -[2018-02-13T00:31:03.915] [INFO] cheese - inserting 1000 documents. first: Cult with No Name and last: Neyinzaya River -[2018-02-13T00:31:03.922] [INFO] cheese - inserting 1000 documents. first: 14 Street (IRT Third Avenue Line) and last: Neurosciences Institute (Saint Thomas Health Services) -[2018-02-13T00:31:03.939] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:31:03.972] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:31:04.004] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of the Tisa-Iza-Vișeu subbasin and last: Myrna Williams (politician) -[2018-02-13T00:31:04.024] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:31:04.073] [INFO] cheese - inserting 1000 documents. first: Editions Gründ and last: Королівство Русі -[2018-02-13T00:31:04.075] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:31:04.115] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:31:04.158] [INFO] cheese - inserting 1000 documents. first: Fire Drake and last: KFQD -[2018-02-13T00:31:04.233] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:31:04.315] [INFO] cheese - inserting 1000 documents. first: Category:Blue Ridge-class command ships and last: ພ -[2018-02-13T00:31:04.357] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:04.371] [INFO] cheese - inserting 1000 documents. first: Jonathan Ignoumba and last: The Dominion -[2018-02-13T00:31:04.392] [INFO] cheese - inserting 1000 documents. first: Bensberg (KVB) and last: Category:Seminaries and theological colleges in Indiana -[2018-02-13T00:31:04.416] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:31:04.439] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:31:04.500] [INFO] cheese - inserting 1000 documents. first: File:Mobile Suit Gundam 0083 Stardust Memory Blu-ray cover.jpg and last: India national under-18 and under-19 basketball team -[2018-02-13T00:31:04.530] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class United States articles and last: Rouelle -[2018-02-13T00:31:04.550] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:31:04.602] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:31:04.650] [INFO] cheese - inserting 1000 documents. first: Vinyl Records and last: Handley-Page 0/400 -[2018-02-13T00:31:04.673] [INFO] cheese - inserting 1000 documents. first: Pygmy scale and last: Bagh Ahani -[2018-02-13T00:31:04.708] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:31:04.708] [INFO] cheese - inserting 1000 documents. first: File:InMyCountry.jpg and last: Hidden room -[2018-02-13T00:31:04.749] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:31:04.788] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:04.819] [INFO] cheese - inserting 1000 documents. first: State Route 146 (New York) and last: I'm on the Outside (Looking In) -[2018-02-13T00:31:04.835] [INFO] cheese - inserting 1000 documents. first: Vriddhagiriswarar Temple, Vriddhachalam and last: Vernawahlshausen station -[2018-02-13T00:31:04.945] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:05.011] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:31:05.082] [INFO] cheese - inserting 1000 documents. first: India national under-16 and under-17 basketball team and last: Spring Tonic -[2018-02-13T00:31:05.113] [INFO] cheese - inserting 1000 documents. first: Glycine N-phenylacetyltransferase and last: EC 2.4.1.56 -[2018-02-13T00:31:05.120] [INFO] cheese - inserting 1000 documents. first: Immigration and Refugee Board and last: Asterocampa -[2018-02-13T00:31:05.130] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:05.153] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:31:05.165] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:31:05.338] [INFO] cheese - inserting 1000 documents. first: Shigureden and last: Jan Joest van Kalkar -[2018-02-13T00:31:05.405] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:31:05.418] [INFO] cheese - inserting 1000 documents. first: René Radembino-Coniquet and last: Legend of the Metallic Blood -[2018-02-13T00:31:05.469] [INFO] cheese - inserting 1000 documents. first: Andrea Fabbri and last: Yuko Takayama -[2018-02-13T00:31:05.473] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:31:05.507] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:31:05.516] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Zambia and last: Wikipedia:WikiProject C/C++/Article alerts -[2018-02-13T00:31:05.536] [INFO] cheese - inserting 1000 documents. first: Mister Mxyzptlk and last: Wisconsin State Assembly -[2018-02-13T00:31:05.560] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:31:05.591] [INFO] cheese - inserting 1000 documents. first: File:TeenNick Top 10 Logo.png and last: Killing Reagan: The Violent Assault That Changed a Presidency -[2018-02-13T00:31:05.601] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:31:05.631] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:31:05.634] [INFO] cheese - inserting 1000 documents. first: Kenneth G. Elzinga and last: L'Amour à La Française -[2018-02-13T00:31:05.684] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:31:05.753] [INFO] cheese - inserting 1000 documents. first: Richard van Bleeck and last: Template:Chembox Elements/sandbox -[2018-02-13T00:31:05.779] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:31:05.848] [INFO] cheese - inserting 1000 documents. first: Cross division and last: Amadeu Teixeira Arena -[2018-02-13T00:31:05.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/chez-soso.picoz.com and last: 103 Monkland -[2018-02-13T00:31:05.893] [INFO] cheese - inserting 1000 documents. first: The Eighteenth of December and last: Category:1991 establishments in the Dominican Republic -[2018-02-13T00:31:05.887] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:31:05.902] [INFO] cheese - inserting 1000 documents. first: John of Kronstadt and last: Jack Russo -[2018-02-13T00:31:05.940] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:31:05.932] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:31:05.979] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:31:06.214] [INFO] cheese - inserting 1000 documents. first: Lefteris Lazarou and last: Professor ordinarius -[2018-02-13T00:31:06.255] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:06.335] [INFO] cheese - inserting 1000 documents. first: William Overton (bishop) and last: St. John's University of Tanzania -[2018-02-13T00:31:06.367] [INFO] cheese - inserting 1000 documents. first: Studies of Broadcasting and last: File:Radiohead - Pop Is Dead music video screen capture.jpg -[2018-02-13T00:31:06.371] [INFO] cheese - inserting 1000 documents. first: SC Bose and last: Edystone -[2018-02-13T00:31:06.376] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:06.386] [INFO] cheese - inserting 1000 documents. first: Addison Alexander Mackenzie and last: Category:Wikipedians who like Babylon 5 -[2018-02-13T00:31:06.422] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:31:06.460] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:31:06.464] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:31:06.508] [INFO] cheese - inserting 1000 documents. first: Dormi jesu and last: Michelle MacLaren -[2018-02-13T00:31:06.546] [INFO] cheese - inserting 1000 documents. first: AMGN and last: Lougheed, Alberta -[2018-02-13T00:31:06.569] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:31:06.595] [INFO] cheese - inserting 1000 documents. first: Dr.hab. and last: 🅼 -[2018-02-13T00:31:06.625] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:31:06.637] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:31:06.739] [INFO] cheese - inserting 1000 documents. first: Bob Hammond (footballer, born 1905) and last: Luis Cámara -[2018-02-13T00:31:06.742] [INFO] cheese - inserting 1000 documents. first: Charles Henry Bennett (illustrator) and last: Wikipedia:Articles for deletion/Ahuva Gray -[2018-02-13T00:31:06.782] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:31:06.800] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:31:06.880] [INFO] cheese - inserting 1000 documents. first: Template:Di-no rationale-caption and last: File:Cryptic Edge of Sanity.jpg -[2018-02-13T00:31:06.941] [INFO] cheese - inserting 1000 documents. first: Dark Passenger and last: Dmitry Nikolayevich Bludov -[2018-02-13T00:31:06.945] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:06.952] [INFO] cheese - inserting 1000 documents. first: 🅽 and last: Template:Puerto Rico 2006 World Baseball Classic roster -[2018-02-13T00:31:07.003] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:31:07.005] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:07.020] [INFO] cheese - inserting 1000 documents. first: Marine Heavy Helicopter Squadron 362 and last: File:Richard-Watson-Gilder.jpg -[2018-02-13T00:31:07.062] [INFO] cheese - inserting 1000 documents. first: Xrinh and last: Carl Liscombe -[2018-02-13T00:31:07.082] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:07.151] [INFO] cheese - inserting 1000 documents. first: I-Road and last: Matt Stephen Targett -[2018-02-13T00:31:07.155] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:31:07.212] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:07.252] [INFO] cheese - inserting 1000 documents. first: File:Hazzy Hilo.jpg and last: Wikipedia:WikiProject Spam/LinkReports/cahiersduvaldebargis.free.fr -[2018-02-13T00:31:07.397] [INFO] cheese - inserting 1000 documents. first: Obadiah Parker Live and last: Sestercii -[2018-02-13T00:31:07.422] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:31:07.478] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:07.533] [INFO] cheese - inserting 1000 documents. first: Ondansetron Hydrochloride and last: Mirabad-e Abadi -[2018-02-13T00:31:07.581] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:31:07.620] [INFO] cheese - inserting 1000 documents. first: A torinói ló and last: Wikipedia:Articles for deletion/Bernard the Arch-elf -[2018-02-13T00:31:07.677] [INFO] cheese - inserting 1000 documents. first: File:Celtic Nations.png and last: Deir al Qamar -[2018-02-13T00:31:07.684] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:31:07.781] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:31:07.800] [INFO] cheese - inserting 1000 documents. first: Category:Shenzhen templates and last: CASC CH-4 -[2018-02-13T00:31:07.862] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:31:07.992] [INFO] cheese - inserting 1000 documents. first: Aston Moore and last: Wikipedia:Articles for deletion/Dixie Chicken (bar) -[2018-02-13T00:31:08.126] [INFO] cheese - inserting 1000 documents. first: Committee on Regional Development and last: Wikipedia:Articles for deletion/Zac Poonen (3rd nomination) -[2018-02-13T00:31:08.158] [INFO] cheese - inserting 1000 documents. first: William Hawley Bowlus and last: PDC-EFR -[2018-02-13T00:31:08.166] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:31:08.249] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:31:08.248] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:31:08.285] [INFO] cheese - inserting 1000 documents. first: Acalyptris nigripexus and last: Harold "Mick" Crocker -[2018-02-13T00:31:08.306] [INFO] cheese - inserting 1000 documents. first: Gove County and last: Turner Fenton High School -[2018-02-13T00:31:08.351] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:31:08.401] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T00:31:08.528] [INFO] cheese - inserting 1000 documents. first: CASC CH4 and last: Diyarbakır Fortress -[2018-02-13T00:31:08.553] [INFO] cheese - inserting 1000 documents. first: Patrick Eddington and last: Wikipedia:Peer review/Rachel Stevens/archive1 -[2018-02-13T00:31:08.584] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:31:08.619] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:31:08.672] [INFO] cheese - inserting 1000 documents. first: Катерина Кондратенко and last: Category:1905 in Ecuador -[2018-02-13T00:31:08.675] [INFO] cheese - inserting 1000 documents. first: Lemon and last: List of glaciers in the United States -[2018-02-13T00:31:08.706] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:08.729] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:31:08.800] [INFO] cheese - inserting 1000 documents. first: Category:Transport disasters in 1777 and last: Trifurcula saturejae -[2018-02-13T00:31:08.837] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:08.886] [INFO] cheese - inserting 1000 documents. first: Thomas P. "Tip" O'Neill and last: NetBEUI Frames protocol -[2018-02-13T00:31:08.923] [INFO] cheese - inserting 1000 documents. first: Conus leviteni and last: Liberal Democratic Party (Chile, 1875) -[2018-02-13T00:31:08.955] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:31:08.971] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:31:08.991] [INFO] cheese - inserting 1000 documents. first: Steven J. Law and last: Ensay, Victoria -[2018-02-13T00:31:09.053] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:31:09.074] [INFO] cheese - inserting 1000 documents. first: Category:1911 in Ecuador and last: Mădălin Martin -[2018-02-13T00:31:09.119] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:31:09.166] [INFO] cheese - inserting 1000 documents. first: Carex subnigricans and last: Acheria -[2018-02-13T00:31:09.168] [INFO] cheese - inserting 1000 documents. first: Template:Historical provinces of Finland and last: Penal laws -[2018-02-13T00:31:09.201] [INFO] cheese - inserting 1000 documents. first: Category:2009 Brazilian television series endings and last: Edmund Moy -[2018-02-13T00:31:09.230] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:31:09.235] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:31:09.259] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:31:09.421] [INFO] cheese - inserting 1000 documents. first: Artillery train and last: Mirela Nichita-Pasca -[2018-02-13T00:31:09.451] [INFO] cheese - inserting 1000 documents. first: File:Helmet rear view mirror.JPG and last: Ma Nishtanah -[2018-02-13T00:31:09.480] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:31:09.514] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:09.532] [INFO] cheese - inserting 1000 documents. first: Pierre Dubois Davaugour and last: File:Legwraps.JPG -[2018-02-13T00:31:09.572] [INFO] cheese - inserting 1000 documents. first: Anaebena and last: Category:2010–12 Algerian protests -[2018-02-13T00:31:09.613] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:31:09.650] [INFO] cheese - inserting 1000 documents. first: Arrouya and last: Wikipedia:Articles for deletion/Muhamet Kyçyku (Çami) -[2018-02-13T00:31:09.670] [INFO] cheese - inserting 1000 documents. first: Kenghkam and last: Gumpoldskirchener Spätrot -[2018-02-13T00:31:09.716] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:31:09.724] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:09.778] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:31:09.920] [INFO] cheese - inserting 1000 documents. first: C elegantissimum and last: Category:Tobacconists -[2018-02-13T00:31:09.960] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:31:10.017] [INFO] cheese - inserting 1000 documents. first: Her Best Move and last: Chichester Senior High School -[2018-02-13T00:31:10.067] [INFO] cheese - inserting 1000 documents. first: Frenchay, Bristol and last: Controlled drug -[2018-02-13T00:31:10.075] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:10.113] [INFO] cheese - inserting 1000 documents. first: Category:People of the 2010–12 Algerian protests and last: Wikipedia:Articles for deletion/BMW 2 Series -[2018-02-13T00:31:10.129] [INFO] cheese - inserting 1000 documents. first: Lisbon Strategy and last: Isuzu Motors -[2018-02-13T00:31:10.142] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:31:10.162] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:31:10.190] [INFO] cheese - inserting 1000 documents. first: Ruth Gerson and last: File:Oozumoutamashiisfc.jpg -[2018-02-13T00:31:10.211] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:31:10.214] [INFO] cheese - inserting 1000 documents. first: Tortkol, Uzbekistan and last: Assistant Principal (university) -[2018-02-13T00:31:10.274] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:31:10.320] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:31:10.364] [INFO] cheese - inserting 1000 documents. first: Template:Fbml manager and last: Ennen aamunkoittoo -[2018-02-13T00:31:10.419] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:31:10.571] [INFO] cheese - inserting 1000 documents. first: Criticom II and last: Rory Hayes (t.v character) -[2018-02-13T00:31:10.624] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:31:10.679] [INFO] cheese - inserting 1000 documents. first: St Peter and All Souls, Peterborough and last: Private Odartey Lamptey -[2018-02-13T00:31:10.707] [INFO] cheese - inserting 1000 documents. first: Janez Puh and last: Paul Stapfer -[2018-02-13T00:31:10.760] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:31:10.792] [INFO] cheese - inserting 1000 documents. first: Ōzumō Spirit and last: Stadiums in Canada -[2018-02-13T00:31:10.801] [INFO] cheese - inserting 1000 documents. first: AIDS origin and last: Wikipedia:WikiProject Vital Articles/Peer review -[2018-02-13T00:31:10.852] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:31:10.925] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:10.936] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:31:11.069] [INFO] cheese - inserting 1000 documents. first: Portal:South Korea/Did you know/102 and last: Wikipedia:5 Millionth Article Message -[2018-02-13T00:31:11.130] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:31:11.272] [INFO] cheese - inserting 1000 documents. first: Template:Swiftsure class submarine and last: Voiceless labialized velar approximant -[2018-02-13T00:31:11.316] [INFO] cheese - inserting 1000 documents. first: Jerrahi-Halveti and last: Category:Taekwondo in China -[2018-02-13T00:31:11.364] [INFO] cheese - inserting 1000 documents. first: The Olive Tree and last: Vanessa Grigoriadis -[2018-02-13T00:31:11.366] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T00:31:11.404] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:31:11.418] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Dragoj and last: Newark Chornomorska Sitch -[2018-02-13T00:31:11.459] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:31:11.477] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:31:11.487] [INFO] cheese - inserting 1000 documents. first: James Richard Dacres (Royal Navy officer, born 1749) and last: Category:18th-century explorers -[2018-02-13T00:31:11.552] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:31:11.636] [INFO] cheese - inserting 1000 documents. first: Joe Borchard and last: Gadsby's Tavern -[2018-02-13T00:31:11.640] [INFO] cheese - inserting 1000 documents. first: File:Max Carey (1912 baseball card).jpg and last: File:Official poster of MDNJK.jpg -[2018-02-13T00:31:11.712] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:31:11.718] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:31:11.865] [INFO] cheese - inserting 1000 documents. first: File:Administrators' noticeboard.png and last: File:Barcan-post-family-1906.gif -[2018-02-13T00:31:11.905] [INFO] cheese - inserting 1000 documents. first: 20th Century Fox Video (1982 Company) and last: Category:Constituencies of Hong Kong Legislative Council -[2018-02-13T00:31:11.914] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:31:11.962] [INFO] cheese - inserting 1000 documents. first: Category:19th-century explorers and last: Wikipedia:Version 1.0 Editorial Team/National Register of Historic Places articles by quality/44 -[2018-02-13T00:31:11.973] [INFO] cheese - inserting 1000 documents. first: Category:Incompatible parameters in rail line template and last: Category:1582 in Russia -[2018-02-13T00:31:11.974] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:31:12.024] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:31:12.084] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:31:12.298] [INFO] cheese - inserting 1000 documents. first: Cameron Donlad and last: Dallas (TV show) -[2018-02-13T00:31:12.351] [INFO] cheese - inserting 1000 documents. first: Spring plan and last: Live cattle trade -[2018-02-13T00:31:12.415] [INFO] cheese - inserting 1000 documents. first: Voiceless labiodental fricative and last: Spiritual Five -[2018-02-13T00:31:12.420] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:31:12.418] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:31:12.507] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T00:31:12.543] [INFO] cheese - inserting 1000 documents. first: Cavendish University and last: File:MPSJHS Logo.png -[2018-02-13T00:31:12.558] [INFO] cheese - inserting 1000 documents. first: Charles Chester (cricketer) and last: H-p filter -[2018-02-13T00:31:12.589] [INFO] cheese - inserting 1000 documents. first: Toumazou v. Republic of Turkey and last: Mountain States Telephone and Telegraph Exchange Building -[2018-02-13T00:31:12.596] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:31:12.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jobs in Nigeria and last: Minuscule 178 -[2018-02-13T00:31:12.620] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:31:12.652] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:31:12.669] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:31:12.811] [INFO] cheese - inserting 1000 documents. first: Bahar Begum and last: Matthew Wright (basketball) -[2018-02-13T00:31:12.867] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:12.999] [INFO] cheese - inserting 1000 documents. first: Malonic aciduria and last: Huey P. Long Bridge (New Orleans) -[2018-02-13T00:31:13.039] [INFO] cheese - inserting 1000 documents. first: St John's Church, Wolverhampton and last: Live at Chastain Park -[2018-02-13T00:31:13.040] [INFO] cheese - inserting 1000 documents. first: Koko Kovacs and last: Accius (disambiguation) -[2018-02-13T00:31:13.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Durvexity and last: Category:2nd-century Roman usurpers -[2018-02-13T00:31:13.074] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:31:13.081] [INFO] cheese - inserting 1000 documents. first: Bastioides and last: Traminer Epice -[2018-02-13T00:31:13.090] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:31:13.098] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:31:13.130] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:13.167] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:31:13.264] [INFO] cheese - inserting 1000 documents. first: Lake Manicouagan and last: The Integral Trees -[2018-02-13T00:31:13.372] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:31:13.381] [INFO] cheese - inserting 1000 documents. first: Category:Finite automata and last: Nisith Ranjan Ray -[2018-02-13T00:31:13.532] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:31:13.585] [INFO] cheese - inserting 1000 documents. first: Yuhei Sato (footballer) and last: Arkivet (Kristiansand) -[2018-02-13T00:31:13.594] [INFO] cheese - inserting 1000 documents. first: East of Chicago Pizza and last: Excelsior (wood wool) -[2018-02-13T00:31:13.610] [INFO] cheese - inserting 1000 documents. first: H. K. Primary School and last: LMO -[2018-02-13T00:31:13.643] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:13.692] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:13.709] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:31:13.761] [INFO] cheese - inserting 1000 documents. first: Traminer Rosa and last: Category:Houses in Culpeper County, Virginia -[2018-02-13T00:31:13.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-02-06/Features and admins and last: K. 111 -[2018-02-13T00:31:13.818] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:31:13.852] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:31:14.112] [INFO] cheese - inserting 1000 documents. first: Songs and Other Things and last: List of saltpeter works in Tarapacá and Antofagasta -[2018-02-13T00:31:14.133] [INFO] cheese - inserting 1000 documents. first: Vytautas Vasiliauskas and last: List of Padma Bhushan Award recipients (1960–1969) -[2018-02-13T00:31:14.149] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:14.176] [INFO] cheese - inserting 1000 documents. first: Sarah Borges and the Broken Singles and last: Ricardo Montero Duque -[2018-02-13T00:31:14.189] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:31:14.212] [INFO] cheese - inserting 1000 documents. first: 1947-48 Basketball Association of America season and last: Agnes Tachyon -[2018-02-13T00:31:14.231] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:31:14.272] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:31:14.277] [INFO] cheese - inserting 1000 documents. first: Category:Places of worship in County Monaghan and last: Palakkulam -[2018-02-13T00:31:14.292] [INFO] cheese - inserting 1000 documents. first: Jean-Charles Lapierre and last: Vaughn Monroe -[2018-02-13T00:31:14.331] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:31:14.355] [INFO] cheese - inserting 1000 documents. first: The Most Holy Tablet and last: Advisory Committee on Human Radiation Experiments -[2018-02-13T00:31:14.386] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:31:14.449] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:31:14.517] [INFO] cheese - inserting 1000 documents. first: Hasanabad-e Olya, Kerman and last: Category:1853 establishments in Missouri -[2018-02-13T00:31:14.604] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:14.681] [INFO] cheese - inserting 1000 documents. first: Luise Henriette von Oranien and last: Waterfall Country (Wales) -[2018-02-13T00:31:14.707] [INFO] cheese - inserting 1000 documents. first: File:2011-World-Series.svg and last: Category:People from Sheikhupura -[2018-02-13T00:31:14.712] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:14.757] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:31:14.772] [INFO] cheese - inserting 1000 documents. first: Qussey and last: Bahia Colonet, Baja California -[2018-02-13T00:31:14.826] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:31:14.869] [INFO] cheese - inserting 1000 documents. first: Thanippara and last: Les Rougons Macquart -[2018-02-13T00:31:14.952] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:31:15.001] [INFO] cheese - inserting 1000 documents. first: Juzuiyeh, Baft and last: EC 2.4.1.268 -[2018-02-13T00:31:15.091] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:15.322] [INFO] cheese - inserting 1000 documents. first: Category:Carboniferous insects and last: Valuation and Valuers -[2018-02-13T00:31:15.353] [INFO] cheese - inserting 1000 documents. first: Category:Paralympic swimmers of Trinidad and Tobago and last: List of Code Lyoko episodes (Season 2) -[2018-02-13T00:31:15.366] [INFO] cheese - inserting 1000 documents. first: Wallis and futana and last: Readlyn -[2018-02-13T00:31:15.418] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:31:15.433] [INFO] cheese - inserting 1000 documents. first: Electoral history of Gholam-Ali Haddad-Adel and last: Category:Nigerian women journalists -[2018-02-13T00:31:15.447] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:31:15.489] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T00:31:15.516] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:31:15.579] [INFO] cheese - inserting 1000 documents. first: Ggs (gene) and last: District of Leominster -[2018-02-13T00:31:15.608] [INFO] cheese - inserting 1000 documents. first: Les Rougons-Macquart and last: Category:Book-Class Animation articles of Bottom-importance -[2018-02-13T00:31:15.633] [INFO] cheese - inserting 1000 documents. first: 1984-85 American Hockey League season and last: USB-6008 -[2018-02-13T00:31:15.677] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:31:15.686] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:31:15.734] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:31:15.884] [INFO] cheese - inserting 1000 documents. first: .guitars and last: Category:Bulgarian women architects -[2018-02-13T00:31:15.931] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:31:16.036] [INFO] cheese - inserting 1000 documents. first: Kui Xing and last: Category:Mongolian martial artists -[2018-02-13T00:31:16.054] [INFO] cheese - inserting 1000 documents. first: Leominster district and last: Hall's Theory of encoding and decoding -[2018-02-13T00:31:16.087] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:31:16.092] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:31:16.106] [INFO] cheese - inserting 1000 documents. first: Category:Redirect-Class Animation articles of Bottom-importance and last: Brain-to-body size -[2018-02-13T00:31:16.132] [INFO] cheese - inserting 1000 documents. first: Ployes and last: Monochromatic Stains -[2018-02-13T00:31:16.177] [INFO] cheese - inserting 1000 documents. first: Category:Burkinabé football referees and last: File:Bring radicals cartoon.svg -[2018-02-13T00:31:16.181] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:31:16.223] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:31:16.244] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:31:16.320] [INFO] cheese - inserting 1000 documents. first: Post-tensioned concrete and last: Plon -[2018-02-13T00:31:16.332] [INFO] cheese - inserting 1000 documents. first: Category:77 BC births and last: Laws of the 16th Congress of the Philippines -[2018-02-13T00:31:16.383] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:31:16.426] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:31:16.498] [INFO] cheese - inserting 1000 documents. first: Elisabeth Gording and last: Afrikan P. Bogaewsky -[2018-02-13T00:31:16.572] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:31:16.599] [INFO] cheese - inserting 1000 documents. first: Mikhail Pashnin and last: Wikipedia:Requests for feedback/2010 December 29 -[2018-02-13T00:31:16.623] [INFO] cheese - inserting 1000 documents. first: Sunderland AFC Women and last: Eye Jewellery -[2018-02-13T00:31:16.646] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:31:16.682] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:31:16.729] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marquis de Piro and last: Saroj Nalini Dutta -[2018-02-13T00:31:16.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Art/US-UK/Jewish Museum rules/list and last: Trey (The OC) -[2018-02-13T00:31:16.786] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:31:16.816] [INFO] cheese - inserting 1000 documents. first: List of most viewed online videos in the first 24 hours and last: Jerome Kass -[2018-02-13T00:31:16.842] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:31:16.859] [INFO] cheese - inserting 1000 documents. first: 1967–68 Atlantic Coast Conference men's basketball season and last: Haplogroup G-M201 (Y-DNA) -[2018-02-13T00:31:16.870] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:16.902] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:31:17.001] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2010-12-27 and last: Category:1860s in Brazil -[2018-02-13T00:31:17.056] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:31:17.122] [INFO] cheese - inserting 1000 documents. first: Fresh Verdicts on Joan of Arc and last: Route 230 (Oregon) -[2018-02-13T00:31:17.188] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:17.230] [INFO] cheese - inserting 1000 documents. first: Retroactive interference and last: Transylvania County -[2018-02-13T00:31:17.247] [INFO] cheese - inserting 1000 documents. first: Dave Hatton and last: Small-toothed long-eared bat -[2018-02-13T00:31:17.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Phipps Conservatory and Botanical Gardens/archive1 and last: 2014 World Field Archery Championships -[2018-02-13T00:31:17.297] [INFO] cheese - inserting 1000 documents. first: Template:TOC US states/doc and last: Jared Homan -[2018-02-13T00:31:17.304] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Microsoft/featured content and last: Chevrolet Impala Limited -[2018-02-13T00:31:17.312] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:31:17.316] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:17.329] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:17.398] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:17.408] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:17.536] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Intelligent design articles by quality statistics and last: Wikipedia:Articles for deletion/Buster Baxter -[2018-02-13T00:31:17.631] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:31:18.052] [INFO] cheese - inserting 1000 documents. first: Agnès Souret and last: Paenibacillus tylopili -[2018-02-13T00:31:18.059] [INFO] cheese - inserting 1000 documents. first: 1912 Republican National Convention and last: Gbits/sec -[2018-02-13T00:31:18.089] [INFO] cheese - inserting 1000 documents. first: Template:Barisal Bulls current squad and last: Category:1985 establishments in Cape Verde -[2018-02-13T00:31:18.101] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:31:18.114] [INFO] cheese - inserting 1000 documents. first: Nyctophilus microdon and last: Big-eared pipistrelle -[2018-02-13T00:31:18.151] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:31:18.168] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:31:18.172] [INFO] cheese - inserting 1000 documents. first: Pressure Reducing Valve and last: Victoria Zhilinskayte -[2018-02-13T00:31:18.203] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:31:18.206] [INFO] cheese - inserting 1000 documents. first: Portal:Industrial music/Selected picture/3 and last: Category:Actors from Montana -[2018-02-13T00:31:18.258] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:31:18.290] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:31:18.463] [INFO] cheese - inserting 1000 documents. first: Bulkington and last: Local Authority Accommodation -[2018-02-13T00:31:18.553] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T00:31:18.606] [INFO] cheese - inserting 1000 documents. first: GByte and last: André Danican Philidor -[2018-02-13T00:31:18.640] [INFO] cheese - inserting 1000 documents. first: Blue-hooded Euphonia and last: Template:AustTRFK6.1 -[2018-02-13T00:31:18.657] [INFO] cheese - inserting 1000 documents. first: List of sugar mills in Queensland and last: Address at Rice University on the Nation's Space Effort -[2018-02-13T00:31:18.703] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:31:18.706] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:18.794] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:31:18.823] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Nebraska and last: Marcelo Ramiro Camacho -[2018-02-13T00:31:18.841] [INFO] cheese - inserting 1000 documents. first: Play Online Viewer and last: Category:Stub-Class The X Factor articles -[2018-02-13T00:31:18.858] [INFO] cheese - inserting 1000 documents. first: Hypsugo macrotis and last: 1996 NHL Eastern Conference Finals -[2018-02-13T00:31:18.948] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:31:18.968] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:31:18.973] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:31:19.186] [INFO] cheese - inserting 1000 documents. first: Bajatey Raho and last: West Derbyshire by-election, 1900 -[2018-02-13T00:31:19.247] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:19.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Collaboration of the week/Child-raising and last: Glabellar reflex -[2018-02-13T00:31:19.355] [INFO] cheese - inserting 1000 documents. first: 1962 New York Mets season and last: Dune hairy-footed gerbil -[2018-02-13T00:31:19.388] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Rogov and last: Zinc Rocks -[2018-02-13T00:31:19.402] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:31:19.428] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:31:19.452] [INFO] cheese - inserting 1000 documents. first: Temporary deafness and last: Template:Gmina Kolsko -[2018-02-13T00:31:19.476] [INFO] cheese - inserting 1000 documents. first: Address at Rice University on the Nations Space Effort and last: Jerome Zeringue -[2018-02-13T00:31:19.477] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:31:19.520] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:31:19.556] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:31:19.602] [INFO] cheese - inserting 1000 documents. first: Category:2000 in Italian sport and last: Category:1983–84 Atlantic Coast Conference men's basketball season -[2018-02-13T00:31:19.644] [INFO] cheese - inserting 1000 documents. first: Ooshima Naoto and last: HMS Intrepid -[2018-02-13T00:31:19.656] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:31:19.743] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T00:31:19.871] [INFO] cheese - inserting 1000 documents. first: Gerbillurus tytonis and last: Niviventer cremoriventer -[2018-02-13T00:31:19.946] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:19.977] [INFO] cheese - inserting 1000 documents. first: Joonas Rask and last: First Brigade of the Polish Legions -[2018-02-13T00:31:20.032] [INFO] cheese - inserting 1000 documents. first: Great Bircham and last: Category:Salesian monasteries -[2018-02-13T00:31:20.038] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:20.040] [INFO] cheese - inserting 1000 documents. first: Maksud Karimov and last: Category:Yukon territorial election results by riding -[2018-02-13T00:31:20.042] [INFO] cheese - inserting 1000 documents. first: Snehansu Kanta Acharya and last: Evan Mervyn Davies -[2018-02-13T00:31:20.085] [INFO] cheese - inserting 1000 documents. first: David F. Bradford and last: Keep it all -[2018-02-13T00:31:20.089] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:31:20.106] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:31:20.121] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:31:20.150] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:31:20.330] [INFO] cheese - inserting 1000 documents. first: Oldfield white-bellied rat and last: Peruvian cotton rat -[2018-02-13T00:31:20.425] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:31:20.426] [INFO] cheese - inserting 1000 documents. first: Larkrise to Candleford and last: Der 18te Brumaire Des Louis Napoleon -[2018-02-13T00:31:20.473] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:31:20.527] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after waterfalls and last: Category:Nuclear missiles of the Cold War -[2018-02-13T00:31:20.625] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:31:20.630] [INFO] cheese - inserting 1000 documents. first: Ticker tape and last: North Carolina Agriculture and Technology University -[2018-02-13T00:31:20.698] [INFO] cheese - inserting 1000 documents. first: Annette Akroyd and last: Palazzo Curti Valmarana -[2018-02-13T00:31:20.761] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:20.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Timothy Solichin and last: Korzeniowski -[2018-02-13T00:31:20.805] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T00:31:20.843] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:31:20.850] [INFO] cheese - inserting 1000 documents. first: Portal:Norway/DYK/81 and last: Meshach Dean -[2018-02-13T00:31:20.851] [INFO] cheese - inserting 1000 documents. first: Category:Former subdivisions of Wales and last: Template:404 -[2018-02-13T00:31:20.933] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:20.996] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:31:21.125] [INFO] cheese - inserting 1000 documents. first: Peoples Will and last: Category:Apostolic Nuncios to South Korea -[2018-02-13T00:31:21.156] [INFO] cheese - inserting 1000 documents. first: Category:1718 establishments in the Thirteen Colonies and last: 1970 European/South American Cup -[2018-02-13T00:31:21.168] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:31:21.226] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:31:21.291] [INFO] cheese - inserting 1000 documents. first: Confidential birth and last: .sb file -[2018-02-13T00:31:21.339] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:31:21.419] [INFO] cheese - inserting 1000 documents. first: Houston-Stafford Electric and last: Citi Movement -[2018-02-13T00:31:21.507] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:31:21.565] [INFO] cheese - inserting 1000 documents. first: Henselt and last: WQO -[2018-02-13T00:31:21.593] [INFO] cheese - inserting 1000 documents. first: Bug Dome and last: Category:Polo in Asia -[2018-02-13T00:31:21.620] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:31:21.625] [INFO] cheese - inserting 1000 documents. first: 2011 Copa Centroamericana and last: Wikipedia:Sockpuppet investigations/Nimbley6/Archive -[2018-02-13T00:31:21.633] [INFO] cheese - inserting 1000 documents. first: Bobo doll experiment and last: Bubble -[2018-02-13T00:31:21.656] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:21.710] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:31:21.712] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Did you know/January 2011 and last: Block of a ring -[2018-02-13T00:31:21.732] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:31:21.889] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:31:21.906] [INFO] cheese - inserting 1000 documents. first: Category:Television series based on the novels of Farhat Ishtiaq and last: Historical Malacca City Council -[2018-02-13T00:31:21.989] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:31:22.011] [INFO] cheese - inserting 1000 documents. first: Trevor Eastwood and last: Eschweilera venezuelica -[2018-02-13T00:31:22.085] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:31:22.221] [INFO] cheese - inserting 1000 documents. first: File:MerleDixon.jpg and last: Bays of the Philipines -[2018-02-13T00:31:22.301] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:31:22.448] [INFO] cheese - inserting 1000 documents. first: Dagen (Norwegian newspaper) and last: Mos:dp -[2018-02-13T00:31:22.488] [INFO] cheese - inserting 1000 documents. first: The Shepheardes' Calender and last: Wareo -[2018-02-13T00:31:22.501] [INFO] cheese - inserting 1000 documents. first: Statue of The Earl Kitchener, London and last: Khun Phawo National Park -[2018-02-13T00:31:22.519] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:31:22.544] [INFO] cheese - inserting 1000 documents. first: Grias colombiana and last: Gobio -[2018-02-13T00:31:22.553] [INFO] cheese - inserting 1000 documents. first: Władysław of Legnica and last: Alexander Mikhailovich -[2018-02-13T00:31:22.594] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:31:22.599] [INFO] cheese - inserting 1000 documents. first: Marginal Utility and last: Beaches (film) -[2018-02-13T00:31:22.602] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:31:22.642] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:31:22.661] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:31:22.744] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:31:23.031] [INFO] cheese - inserting 1000 documents. first: Commando: A One Man Army and last: Salisbury, MD-DE MSA -[2018-02-13T00:31:23.128] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:31:23.203] [INFO] cheese - inserting 1000 documents. first: Victor emanuel range and last: List of U.S. communities with Hispanic majority populations in the 2010 census -[2018-02-13T00:31:23.208] [INFO] cheese - inserting 1000 documents. first: File:John P. 'Clipper' Smith.jpg and last: File:BlackstreetJoySingle.jpg -[2018-02-13T00:31:23.225] [INFO] cheese - inserting 1000 documents. first: Romanogobio benacensis and last: Federal Highway 112 -[2018-02-13T00:31:23.261] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:31:23.272] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:23.298] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:31:23.336] [INFO] cheese - inserting 1000 documents. first: Ober Engadin and last: The San Fransisco Gate -[2018-02-13T00:31:23.351] [INFO] cheese - inserting 1000 documents. first: File:Play Dead - The First Flower (1983).gif and last: Basilica di San Pietro in Vincoli -[2018-02-13T00:31:23.413] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:31:23.483] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:31:23.779] [INFO] cheese - inserting 1000 documents. first: I Don't Want to See You Like This and last: Gerald Abrams -[2018-02-13T00:31:23.797] [INFO] cheese - inserting 1000 documents. first: James Archibald St.George Fitzwarenne Despencer-Robertson and last: Tepui goldenthroat -[2018-02-13T00:31:23.824] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:31:23.857] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:23.883] [INFO] cheese - inserting 1000 documents. first: The Fall of the House of Usher and last: Kingdom of Spain -[2018-02-13T00:31:23.901] [INFO] cheese - inserting 1000 documents. first: List of Sket Dance chapters and last: Category:Medical Subject Headings -[2018-02-13T00:31:23.958] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:31:23.962] [INFO] cheese - inserting 1000 documents. first: Category:2008 establishments in Kosovo and last: Gelechia algeriella -[2018-02-13T00:31:24.025] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T00:31:24.053] [INFO] cheese - inserting 1000 documents. first: Template:Malkangiri district and last: Wikipedia:Special:MostLinkedPages -[2018-02-13T00:31:24.063] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:31:24.095] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:31:24.251] [INFO] cheese - inserting 1000 documents. first: Weinstein Co and last: Penrhyndeudraeth railway station -[2018-02-13T00:31:24.255] [INFO] cheese - inserting 1000 documents. first: File:Rooftop-album-by-ulrik-munther.jpg and last: Category:Wikipedia sockpuppets of Alifriend7 -[2018-02-13T00:31:24.297] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:31:24.313] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:31:24.371] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RedSpotGames and last: Tamás Kovács (fencer) -[2018-02-13T00:31:24.399] [INFO] cheese - inserting 1000 documents. first: Polytmus milleri and last: Seps StriÉ Du Maroc -[2018-02-13T00:31:24.420] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:24.469] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:31:24.549] [INFO] cheese - inserting 1000 documents. first: Template:SJFA North Division Two and last: Honkytonks And Heartaches -[2018-02-13T00:31:24.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/London Burning Book and last: Template:Attached KML/Alabama State Route 179 -[2018-02-13T00:31:24.590] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:31:24.592] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:31:24.674] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Vrave98 and last: Iron Gates (Danube) -[2018-02-13T00:31:24.715] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:31:24.777] [INFO] cheese - inserting 1000 documents. first: Tegnsprak and last: Edward Rowlands -[2018-02-13T00:31:24.787] [INFO] cheese - inserting 1000 documents. first: EslizÓN TridÁCtilo Del Atlas and last: Megalurus pryeri -[2018-02-13T00:31:24.806] [INFO] cheese - inserting 1000 documents. first: St. George Rotunda and last: Bicycle Race -[2018-02-13T00:31:24.818] [INFO] cheese - inserting 1000 documents. first: Lieutenant Esmee Pascal and last: Wikipedia:Redirects for discussion/Log/2011 January 2 -[2018-02-13T00:31:24.823] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:31:24.847] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:31:24.860] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:31:24.872] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:25.091] [INFO] cheese - inserting 1000 documents. first: Honkytonks & Heartaches and last: Genroku akō jiken -[2018-02-13T00:31:25.107] [INFO] cheese - inserting 1000 documents. first: Goran Marić (Volleyball player) and last: Category:1984–85 Pacific-10 Conference men's basketball season -[2018-02-13T00:31:25.114] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/uol.com and last: Aholibah Underwing -[2018-02-13T00:31:25.145] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:25.166] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:31:25.201] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:25.275] [INFO] cheese - inserting 1000 documents. first: Route 65 (Missouri pre-1926) and last: Choir of St John's College, Cambridge -[2018-02-13T00:31:25.317] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:31:25.382] [INFO] cheese - inserting 1000 documents. first: Dead Men Tell and last: File:HRHDanielleSteel.jpg -[2018-02-13T00:31:25.431] [INFO] cheese - inserting 1000 documents. first: Long Lee and last: Oswaldo de Andrade -[2018-02-13T00:31:25.442] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:31:25.508] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:31:25.510] [INFO] cheese - inserting 1000 documents. first: O.W. Holmes and last: Juri Schlünz -[2018-02-13T00:31:25.528] [INFO] cheese - inserting 1000 documents. first: Khajur and last: Alice Creek Historic District -[2018-02-13T00:31:25.547] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:31:25.568] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:31:25.732] [INFO] cheese - inserting 1000 documents. first: George Poe and last: Pathetic Sharks -[2018-02-13T00:31:25.741] [INFO] cheese - inserting 1000 documents. first: Dynamic memory allocation and last: Zionist conspiracy theories regarding the September 11, 2001 Attacks -[2018-02-13T00:31:25.800] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fluoridealert.org and last: Emily Quihampton -[2018-02-13T00:31:25.823] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:25.946] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T00:31:25.948] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:26.040] [INFO] cheese - inserting 1000 documents. first: Anatoma africanae and last: Accademia Di Belle Arti, Florence -[2018-02-13T00:31:26.045] [INFO] cheese - inserting 1000 documents. first: Category:1721 disestablishments in Russia and last: Wikipedia:Articles for deletion/Vadym Troyan -[2018-02-13T00:31:26.057] [INFO] cheese - inserting 1000 documents. first: Pakistan vs West Indies ODI Series in 2008-09 and last: Wikipedia:WikiProject Spam/LinkReports/namore.info -[2018-02-13T00:31:26.062] [INFO] cheese - inserting 1000 documents. first: Van morrison and last: Waiter boy -[2018-02-13T00:31:26.089] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:31:26.120] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:31:26.157] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:31:26.155] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:31:26.378] [INFO] cheese - inserting 1000 documents. first: Order of the golden horseshoe and last: Binoy Basu -[2018-02-13T00:31:26.426] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:31:26.445] [INFO] cheese - inserting 1000 documents. first: Massachusetts Library System and last: File:International Journal of Hematology.jpg -[2018-02-13T00:31:26.517] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:31:26.612] [INFO] cheese - inserting 1000 documents. first: The Gate Thief and last: St. Crispin's Senior Secondary School -[2018-02-13T00:31:26.631] [INFO] cheese - inserting 1000 documents. first: Government Degree College, Bandipora and last: Wikipedia:WikiProject Spam/Local/sceneonhai.wordpress.com -[2018-02-13T00:31:26.667] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:31:26.671] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Valued picture candidates/Nixon's Departure and last: Kerem Özyeğen -[2018-02-13T00:31:26.673] [INFO] cheese - inserting 1000 documents. first: Bestvina and last: Nenenui -[2018-02-13T00:31:26.679] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:31:26.727] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:31:26.730] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:31:26.809] [INFO] cheese - inserting 1000 documents. first: Chico Carrasquel and last: Foreign terrorist organizations -[2018-02-13T00:31:26.882] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:31:26.907] [INFO] cheese - inserting 1000 documents. first: Smitherman and last: Ctenobrycon spilurus -[2018-02-13T00:31:26.909] [INFO] cheese - inserting 1000 documents. first: Black-spotted palm viper and last: Milovan Sikimic -[2018-02-13T00:31:26.958] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:31:26.956] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:27.066] [INFO] cheese - inserting 1000 documents. first: José Antonio Plaza and last: Wikipedia:Miscellany for deletion/User:Islamicdaayee -[2018-02-13T00:31:27.141] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:31:27.322] [INFO] cheese - inserting 1000 documents. first: Template:Fats Domino and last: Category:Articles slanted towards recent events from November 2015 -[2018-02-13T00:31:27.365] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:31:27.388] [INFO] cheese - inserting 1000 documents. first: Paul O'Duffy and last: POME -[2018-02-13T00:31:27.405] [INFO] cheese - inserting 1000 documents. first: Cut offs and last: Pavel Andreyevich Gerdt -[2018-02-13T00:31:27.447] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:31:27.456] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:31:27.641] [INFO] cheese - inserting 1000 documents. first: Mario Und Der Zauberer and last: Toras Chaim (Denver) -[2018-02-13T00:31:27.684] [INFO] cheese - inserting 1000 documents. first: Yazdanabad, Kerman and last: Kenneth Grenville Gee -[2018-02-13T00:31:27.704] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:31:27.727] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:31:27.766] [INFO] cheese - inserting 1000 documents. first: Target (2004 film) and last: Mau rakau -[2018-02-13T00:31:27.805] [INFO] cheese - inserting 1000 documents. first: Moskow and last: Barnstable County -[2018-02-13T00:31:27.841] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:31:27.909] [INFO] cheese - inserting 1000 documents. first: Category:Articles that may contain original research from November 2015 and last: File:Majayjay Flag.jpg -[2018-02-13T00:31:27.924] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:31:27.958] [INFO] cheese - inserting 1000 documents. first: Elizaveta Pavlovna Gerdt and last: Postman's sort -[2018-02-13T00:31:28.014] [INFO] cheese - inserting 1000 documents. first: Lists of American Civil War Regiments by State and last: Paweł Midloch -[2018-02-13T00:31:28.018] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:28.036] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:28.082] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:31:28.131] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Atban3000/Archive and last: David Andrews (director) -[2018-02-13T00:31:28.163] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:28.171] [INFO] cheese - inserting 1000 documents. first: First Sylow Theorem and last: PS Prince Arthur -[2018-02-13T00:31:28.234] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:28.576] [INFO] cheese - inserting 1000 documents. first: File:666 Ways to Love.jpg and last: Misfits Box Set -[2018-02-13T00:31:28.653] [INFO] cheese - inserting 1000 documents. first: Alaipayuthey (soundtrack) and last: City of Greenville -[2018-02-13T00:31:28.655] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:31:28.729] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:31:28.737] [INFO] cheese - inserting 1000 documents. first: Indira Priyadarshini Vrikshamitra and last: Polikarpov MR-1 -[2018-02-13T00:31:28.758] [INFO] cheese - inserting 1000 documents. first: Djenné Cercle and last: Colonia, Yap, FSM -[2018-02-13T00:31:28.768] [INFO] cheese - inserting 1000 documents. first: Glenmont, New York and last: Inside heel hook -[2018-02-13T00:31:28.777] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:31:28.864] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:31:28.912] [INFO] cheese - inserting 1000 documents. first: Barnes County and last: STS-83 -[2018-02-13T00:31:28.952] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:31:29.045] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:31:29.136] [INFO] cheese - inserting 1000 documents. first: István Zsolt and last: Tufts Med -[2018-02-13T00:31:29.228] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:31:29.278] [INFO] cheese - inserting 1000 documents. first: Rigabad, Fahraj and last: Tintina (rock) -[2018-02-13T00:31:29.406] [INFO] cheese - inserting 1000 documents. first: John Hegre and last: Category:Userspace drafts from November 2008 -[2018-02-13T00:31:29.359] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:31:29.483] [INFO] cheese - inserting 1000 documents. first: Terry Ragon and last: John La Touche -[2018-02-13T00:31:29.492] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:31:29.508] [INFO] cheese - inserting 1000 documents. first: Now! (France Joli album) and last: Moniruzzaman (Rajshahi Division cricketer) -[2018-02-13T00:31:29.570] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:31:29.615] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:31:29.831] [INFO] cheese - inserting 1000 documents. first: Guiding Light (1952-1959) and last: Wuky -[2018-02-13T00:31:29.902] [INFO] cheese - inserting 1000 documents. first: Unwelcome and last: Brayan Perea -[2018-02-13T00:31:29.915] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T00:31:29.973] [INFO] cheese - inserting 1000 documents. first: Furmint and last: Mūlamadhyamakakārikā -[2018-02-13T00:31:29.984] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:31:30.031] [INFO] cheese - inserting 1000 documents. first: Baruch Herzfeld and last: Gökçehatipler, Çaycuma -[2018-02-13T00:31:30.058] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T00:31:30.089] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:31:30.093] [INFO] cheese - inserting 1000 documents. first: Ys Strategy and last: Caroline Addyman -[2018-02-13T00:31:30.160] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:31:30.226] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/spazure and last: Members of the Victorian Legislative Council, 1982–1985 -[2018-02-13T00:31:30.270] [INFO] cheese - inserting 1000 documents. first: Guajiro-Spanish and last: Category:Net laying ships of the Royal Navy -[2018-02-13T00:31:30.273] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:31:30.310] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Tommystar and last: Category:Maldivian expatriates in Saudi Arabia -[2018-02-13T00:31:30.320] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:31:30.394] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T00:31:30.508] [INFO] cheese - inserting 1000 documents. first: List of cities, towns, and villages in Hungary (N-Z) and last: File:LBHS.jpg -[2018-02-13T00:31:30.526] [INFO] cheese - inserting 1000 documents. first: Yume Zyûya and last: Category:Netherlands–Tunisia relations -[2018-02-13T00:31:30.536] [INFO] cheese - inserting 1000 documents. first: Template:FC Zürich managers and last: File:Stella Mann Logo.png -[2018-02-13T00:31:30.560] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:31:30.566] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:30.594] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:31:30.631] [INFO] cheese - inserting 1000 documents. first: Category:Net laying ships of the Royal Australian Navy and last: Category:1977 in road cycling -[2018-02-13T00:31:30.664] [INFO] cheese - inserting 1000 documents. first: Category:Cambodian artists and last: Head Coaches of the Boston Bruins -[2018-02-13T00:31:30.666] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:31:30.715] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:31:30.734] [INFO] cheese - inserting 1000 documents. first: Anglican Church of Australia and last: Compass variation -[2018-02-13T00:31:30.805] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:31:30.818] [INFO] cheese - inserting 1000 documents. first: Category:Maldivian expatriates and last: Bechéreau SRAP T.7 -[2018-02-13T00:31:30.870] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:30.999] [INFO] cheese - inserting 1000 documents. first: Stratonovich and last: List of mammals in the United States -[2018-02-13T00:31:31.078] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:31:31.107] [INFO] cheese - inserting 1000 documents. first: Lisunov Li-2 and last: Oceans Act of 2000 -[2018-02-13T00:31:31.142] [INFO] cheese - inserting 1000 documents. first: George Koch and last: Pierre de la Brosse -[2018-02-13T00:31:31.183] [INFO] cheese - inserting 1000 documents. first: Elaine D. Kaplan and last: Category:1964–65 in Canadian ice hockey -[2018-02-13T00:31:31.194] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:31:31.286] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:31:31.303] [INFO] cheese - inserting 1000 documents. first: Amy Polumbo and last: Multiscale Mathematics -[2018-02-13T00:31:31.317] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:31.403] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:31:31.763] [INFO] cheese - inserting 1000 documents. first: Moustapha Sohem and last: Fantanile Negre -[2018-02-13T00:31:31.820] [INFO] cheese - inserting 1000 documents. first: EC 2.6.1.63 and last: Waveney Council election, 2004 -[2018-02-13T00:31:31.832] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:31:31.852] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2015 October 26 and last: Wikipedia:Articles for deletion/Center for Public Administration and Policy -[2018-02-13T00:31:31.872] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:31.888] [INFO] cheese - inserting 1000 documents. first: 21 Lutetia and last: Sing Lung -[2018-02-13T00:31:31.926] [INFO] cheese - inserting 1000 documents. first: Spring Azure and last: SS Heraklion -[2018-02-13T00:31:31.928] [INFO] cheese - inserting 1000 documents. first: Template:Lorenzo the Elder to Giovanni de' Medici il Popolano and last: Gale Staley -[2018-02-13T00:31:31.932] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:31:31.947] [INFO] cheese - inserting 1000 documents. first: Erg of Bilma and last: 1920 St. Louis Browns season -[2018-02-13T00:31:31.986] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:31:31.999] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:31:32.016] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T00:31:32.036] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:31:32.223] [INFO] cheese - inserting 1000 documents. first: Waveney Council election, 2011 and last: Ballina Stephenites GAA -[2018-02-13T00:31:32.265] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:31:32.381] [INFO] cheese - inserting 1000 documents. first: USONA and last: SS Kilkenny -[2018-02-13T00:31:32.461] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:31:32.469] [INFO] cheese - inserting 1000 documents. first: Bell Records artists and last: Bullet Ants -[2018-02-13T00:31:32.500] [INFO] cheese - inserting 1000 documents. first: EnergySolutions and last: Tormod Kristoffer Hustad -[2018-02-13T00:31:32.538] [INFO] cheese - inserting 1000 documents. first: Stigniţa and last: Category:Pennsylvania elections, 1961 -[2018-02-13T00:31:32.563] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:31:32.613] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:31:32.628] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:31:32.745] [INFO] cheese - inserting 1000 documents. first: Caracciolo-class battleship and last: Putijarra language -[2018-02-13T00:31:32.748] [INFO] cheese - inserting 1000 documents. first: Chéng Lóng and last: Doc Daneeka -[2018-02-13T00:31:32.819] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:31:32.860] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:31:33.069] [INFO] cheese - inserting 1000 documents. first: Ministry of Culture (Syria) and last: Quebec Workers' Socialist Group -[2018-02-13T00:31:33.082] [INFO] cheese - inserting 1000 documents. first: WFP Schools and last: Cameeragal language -[2018-02-13T00:31:33.092] [INFO] cheese - inserting 1000 documents. first: Template:FISA/doc and last: Jakub Hanák -[2018-02-13T00:31:33.109] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:31:33.113] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:31:33.143] [INFO] cheese - inserting 1000 documents. first: File:Leeds Fans Community Benefit Society logo.png and last: Category:16th century BC by country -[2018-02-13T00:31:33.149] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:31:33.151] [INFO] cheese - inserting 1000 documents. first: European Speed Skating Championship and last: Kirby Moorside -[2018-02-13T00:31:33.208] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:31:33.213] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:31:33.435] [INFO] cheese - inserting 1000 documents. first: Wonnarua language and last: Template:Evolution-book-stub -[2018-02-13T00:31:33.473] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:31:33.512] [INFO] cheese - inserting 1000 documents. first: 1930 Newark Tornadoes season and last: List of Poirot episodes -[2018-02-13T00:31:33.545] [INFO] cheese - inserting 1000 documents. first: Nail lichen and last: Niko Nieminen -[2018-02-13T00:31:33.559] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:33.578] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:31:33.642] [INFO] cheese - inserting 1000 documents. first: GM K platform (1975) and last: On An Island -[2018-02-13T00:31:33.669] [INFO] cheese - inserting 1000 documents. first: Glyfada and last: Lancashire and Yorkshire Railway -[2018-02-13T00:31:33.690] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:33.753] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:31:33.904] [INFO] cheese - inserting 1000 documents. first: The History of Computers and last: File:Rich Boy Break the Pot.jpg -[2018-02-13T00:31:33.931] [INFO] cheese - inserting 1000 documents. first: Mission sui juris of Drisdale River and last: Bjørn Hoem -[2018-02-13T00:31:33.958] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:33.959] [INFO] cheese - inserting 1000 documents. first: Cuevas de la Araña and last: Template:Lists of Provinces of the Dominican Republic -[2018-02-13T00:31:34.015] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:31:34.042] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:31:34.159] [INFO] cheese - inserting 1000 documents. first: Tamayoa and last: File:Lykke Li - Little Bit alt single cover.jpg -[2018-02-13T00:31:34.253] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:31:34.351] [INFO] cheese - inserting 1000 documents. first: Mp3 surround and last: Indo-Tibetan -[2018-02-13T00:31:34.413] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:31:34.467] [INFO] cheese - inserting 1000 documents. first: Category:B-Class New South Wales articles and last: File:Cold Steel film poster.jpg -[2018-02-13T00:31:34.482] [INFO] cheese - inserting 1000 documents. first: Daemisan and last: Henry Scudamore-Stanhope -[2018-02-13T00:31:34.499] [INFO] cheese - inserting 1000 documents. first: Reconquest of Angola and last: Þjóðskrá -[2018-02-13T00:31:34.550] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:34.560] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:31:34.605] [INFO] cheese - inserting 1000 documents. first: Megacraspedus jablonkayi and last: Mein Herz ruft nach dir -[2018-02-13T00:31:34.620] [INFO] cheese - inserting 1000 documents. first: Oxymora and last: Scooter (band) -[2018-02-13T00:31:34.667] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:34.674] [INFO] cheese - batch complete in: 2.637 secs -[2018-02-13T00:31:34.733] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T00:31:34.757] [INFO] cheese - inserting 1000 documents. first: AMAP-ADS Active Protection System and last: Bridgewater Collieries -[2018-02-13T00:31:34.813] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:31:34.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Coat of arms of Western Sahara and last: Category:Illinois elections, 1838 -[2018-02-13T00:31:34.931] [INFO] cheese - inserting 1000 documents. first: Gulf Coast Indians and last: Empire Betsy -[2018-02-13T00:31:35.023] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:31:35.043] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:31:35.061] [INFO] cheese - inserting 1000 documents. first: Quince Orchard High School and last: Wikipedia:Votes for deletion/Loxie & Zoot -[2018-02-13T00:31:35.202] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:31:35.356] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Paleoheterodonta and last: Waco Model EGC-7 -[2018-02-13T00:31:35.411] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:31:35.495] [INFO] cheese - inserting 1000 documents. first: Category:Images for deletion and last: Wikipedia:Articles for deletion/Organization for Human Brain Mapping -[2018-02-13T00:31:35.559] [INFO] cheese - inserting 1000 documents. first: The Gold Dagger for Non-Fiction and last: Wikipedia:WikiProject Spam/LinkReports/go4expert.com -[2018-02-13T00:31:35.577] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:31:35.611] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:31:35.614] [INFO] cheese - inserting 1000 documents. first: Category:Illinois elections, 1842 and last: Alliance for True Democracy -[2018-02-13T00:31:35.696] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:31:35.765] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Archive28 and last: Our Whole Lives -[2018-02-13T00:31:35.791] [INFO] cheese - inserting 1000 documents. first: John Forrest (Victorian politician) and last: David Auburn -[2018-02-13T00:31:35.814] [INFO] cheese - inserting 1000 documents. first: Waco Model EGC-8 and last: Monashee mountain -[2018-02-13T00:31:35.826] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:31:35.882] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T00:31:35.900] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:35.960] [INFO] cheese - inserting 1000 documents. first: 2007 NRL season results and last: Alexandru Iacob -[2018-02-13T00:31:36.076] [INFO] cheese - batch complete in: 1.402 secs -[2018-02-13T00:31:36.099] [INFO] cheese - inserting 1000 documents. first: Queen of Württemberg and last: Watkins Review -[2018-02-13T00:31:36.183] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:31:36.208] [INFO] cheese - inserting 1000 documents. first: Neurergus microspilotus and last: Wikipedia:Templates for discussion/Log/2013 March 24 -[2018-02-13T00:31:36.271] [INFO] cheese - inserting 1000 documents. first: William Talbot of Kineton and last: Kevin's Hurling club -[2018-02-13T00:31:36.276] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:36.385] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:31:36.552] [INFO] cheese - inserting 1000 documents. first: Freeville and last: Wing turret -[2018-02-13T00:31:36.576] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Quadrigyridae and last: AMET University -[2018-02-13T00:31:36.577] [INFO] cheese - inserting 1000 documents. first: Giovanni Lanza (painter) and last: Category:1963-64 in Welsh rugby union -[2018-02-13T00:31:36.601] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:31:36.605] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:31:36.608] [INFO] cheese - inserting 1000 documents. first: Devonport Navy Base and last: Saskatchewan Highway 43 -[2018-02-13T00:31:36.640] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:31:36.660] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:31:36.801] [INFO] cheese - inserting 1000 documents. first: Paranormal operator and last: Portal:Anglicanism/DYK/25 -[2018-02-13T00:31:36.878] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:31:36.926] [INFO] cheese - inserting 1000 documents. first: Honda Ishiro and last: Infield fly rule -[2018-02-13T00:31:36.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lance Strate and last: File:RasputinaUnknown.jpg -[2018-02-13T00:31:36.939] [INFO] cheese - inserting 1000 documents. first: Category:1963-64 in Scottish rugby union and last: Richard Labonté -[2018-02-13T00:31:36.976] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:31:36.997] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:37.019] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T00:31:37.062] [INFO] cheese - inserting 1000 documents. first: 2011 North Korea national football team results and last: Template:Taxonomy/Stolonoidea -[2018-02-13T00:31:37.107] [INFO] cheese - inserting 1000 documents. first: Star Wars: Episode 4 - A New Hope and last: Php2 -[2018-02-13T00:31:37.121] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:37.182] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:31:37.320] [INFO] cheese - inserting 1000 documents. first: Samuel C. Black and last: Gręzawa -[2018-02-13T00:31:37.326] [INFO] cheese - inserting 1000 documents. first: Template:2013 ANZ Championship finals bracket and last: ABC 15 News -[2018-02-13T00:31:37.331] [INFO] cheese - inserting 1000 documents. first: Hypothetical disaster and last: Harry Lionel Shapiro -[2018-02-13T00:31:37.369] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:31:37.378] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:31:37.427] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:31:37.460] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Graptoloidea and last: Category:People from Bint Jbeil District -[2018-02-13T00:31:37.539] [INFO] cheese - inserting 1000 documents. first: Category:1873 establishments in Indiana and last: Ferzikovo railway station -[2018-02-13T00:31:37.575] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:31:37.679] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:31:37.786] [INFO] cheese - inserting 1000 documents. first: Hemmeroids and last: Body Shop (disambiguation) -[2018-02-13T00:31:37.801] [INFO] cheese - inserting 1000 documents. first: Element from decay and last: Wikipedia:Articles for deletion/Totaro Murakami -[2018-02-13T00:31:37.830] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:37.851] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:31:37.867] [INFO] cheese - inserting 1000 documents. first: Jagłowice and last: Bending iron -[2018-02-13T00:31:37.915] [INFO] cheese - inserting 1000 documents. first: Labour Zionism and last: The Crusades -[2018-02-13T00:31:37.921] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:31:37.990] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:31:38.003] [INFO] cheese - inserting 1000 documents. first: Template:1988 in Ukrainian football and last: Wikipedia:Articles for deletion/2015 Lista cu protestele locale/internationale pentru victimele din clubul Colectiv -[2018-02-13T00:31:38.029] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Sudan and last: Category:FA-Class Blu-ray articles -[2018-02-13T00:31:38.046] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:31:38.075] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:31:38.103] [INFO] cheese - inserting 1000 documents. first: Article 48 (Weimar Republic) and last: Florida State Road 406 -[2018-02-13T00:31:38.127] [INFO] cheese - inserting 1000 documents. first: EC 2.7.6.1 and last: Category:Immigration to Vanuatu -[2018-02-13T00:31:38.163] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:31:38.166] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:31:38.283] [INFO] cheese - inserting 1000 documents. first: Nick Kotys and last: Passo Cereda -[2018-02-13T00:31:38.331] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:31:38.401] [INFO] cheese - inserting 1000 documents. first: Category:2015–16 Mid-Eastern Athletic Conference men's basketball season and last: Category:Justin Trudeau -[2018-02-13T00:31:38.459] [INFO] cheese - inserting 1000 documents. first: List of Parma Calcio 1913 managers and last: 1973 Emperor's Cup -[2018-02-13T00:31:38.466] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:31:38.475] [INFO] cheese - inserting 1000 documents. first: Category:C-Class Coldplay articles and last: Template:Ds/sanction/usageline -[2018-02-13T00:31:38.504] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:31:38.511] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:38.521] [INFO] cheese - inserting 1000 documents. first: Rasabali and last: Union Mining Company -[2018-02-13T00:31:38.577] [INFO] cheese - inserting 1000 documents. first: Cluster chord and last: Dennis Waterman -[2018-02-13T00:31:38.583] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:31:38.606] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Electronic design services companies and last: Competence (human resources) -[2018-02-13T00:31:38.645] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:31:38.647] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:31:38.848] [INFO] cheese - inserting 1000 documents. first: Passo Cibiana and last: Wikipedia:WikiProject Pharmacology/Log/2009-02-10 -[2018-02-13T00:31:38.878] [INFO] cheese - inserting 1000 documents. first: Attractions in Louisville and last: Glacier damming -[2018-02-13T00:31:38.890] [INFO] cheese - inserting 1000 documents. first: File:Molecular Imaging and Biology.jpg and last: File:Mujo Ulqinaku.jpg -[2018-02-13T00:31:38.902] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:31:38.914] [INFO] cheese - inserting 1000 documents. first: Felix Robertson and last: James Ball (economist) -[2018-02-13T00:31:38.919] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:31:38.948] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:31:38.962] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:31:39.181] [INFO] cheese - inserting 1000 documents. first: Adjudicator and last: TCP/IP printer -[2018-02-13T00:31:39.218] [INFO] cheese - inserting 1000 documents. first: Glacier dam and last: Dietz, Robert -[2018-02-13T00:31:39.228] [INFO] cheese - inserting 1000 documents. first: Liberian Development Chartered Company and last: Portal:United Kingdom/Did you know/July 2007 -[2018-02-13T00:31:39.233] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:31:39.244] [INFO] cheese - inserting 1000 documents. first: William Blair Capital Partners and last: Character orientation -[2018-02-13T00:31:39.246] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:31:39.274] [INFO] cheese - inserting 1000 documents. first: ။ and last: Striccarella -[2018-02-13T00:31:39.290] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:31:39.314] [INFO] cheese - inserting 1000 documents. first: Annoyed grunt and last: St Louis Browns -[2018-02-13T00:31:39.316] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:31:39.328] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:31:39.332] [INFO] cheese - inserting 1000 documents. first: File:US Navy 050111-N-6817C-134 Sailors stand-by to load jugs of purified water into an approaching SH-60B Seahawk on the flight deck aboard USS Abraham Lincoln (CVN 72).jpg and last: Major League Baseball Rivalries -[2018-02-13T00:31:39.379] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:31:39.390] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:31:39.609] [INFO] cheese - inserting 1000 documents. first: Digby, Robert and last: Mara Junior Science College Kuching -[2018-02-13T00:31:39.622] [INFO] cheese - inserting 1000 documents. first: Aleksandra Beļcova and last: White Coffee Pot, Jr. -[2018-02-13T00:31:39.648] [INFO] cheese - inserting 1000 documents. first: Trebbiano Viccio and last: Mazin Masoud Al-Kasbi -[2018-02-13T00:31:39.647] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:31:39.682] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:31:39.697] [INFO] cheese - inserting 1000 documents. first: Template:Infobox golfer/sandbox and last: Hotpot (disambiguation) -[2018-02-13T00:31:39.727] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:31:39.804] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:31:39.857] [INFO] cheese - inserting 1000 documents. first: Sale El Sol and last: File:Mfi pic8.jpg -[2018-02-13T00:31:39.927] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Video game articles by quality/44 and last: Arcturos (disambiguation) -[2018-02-13T00:31:40.000] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:31:40.100] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:31:40.302] [INFO] cheese - inserting 1000 documents. first: Chocolate (ice cream) and last: Khanty-Mansiyskii District -[2018-02-13T00:31:40.318] [INFO] cheese - inserting 1000 documents. first: St Louis County and last: SatireWire -[2018-02-13T00:31:40.322] [INFO] cheese - inserting 1000 documents. first: Martin Price (numismatist) and last: Polyhymno walsinghami -[2018-02-13T00:31:40.341] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:31:40.390] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:31:40.399] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:31:40.458] [INFO] cheese - inserting 1000 documents. first: Sachar (disambiguation) and last: Glaphyrina plicata -[2018-02-13T00:31:40.523] [INFO] cheese - inserting 1000 documents. first: Xylotol and last: Hickey hider -[2018-02-13T00:31:40.530] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:31:40.583] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:31:40.611] [INFO] cheese - inserting 1000 documents. first: Arthur Nall-Cain, 2nd Baron Brocket and last: Vejer de la Frontera -[2018-02-13T00:31:40.620] [INFO] cheese - inserting 1000 documents. first: Church of the Holy Transfiguration, Sarajevo and last: Womanizer (disambiguation) -[2018-02-13T00:31:40.641] [INFO] cheese - inserting 1000 documents. first: Mary Wolmarans and last: Matthias Neithardt -[2018-02-13T00:31:40.667] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:31:40.667] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:31:40.685] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T00:31:40.833] [INFO] cheese - inserting 1000 documents. first: Lord Arthur Somerset (1780–1816) and last: Category:Lists of mountains of the Alps -[2018-02-13T00:31:40.883] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:31:40.892] [INFO] cheese - inserting 1000 documents. first: Category:15th-century architecture and last: File:Concord Coach Lines logo.png -[2018-02-13T00:31:40.950] [INFO] cheese - inserting 1000 documents. first: Category:Song recordings produced by Ian Anderson and last: Wikipedia:Articles for deletion/Post-presidency of Bill Clinton -[2018-02-13T00:31:40.950] [INFO] cheese - inserting 1000 documents. first: Striped Weasel and last: Luise Kähler -[2018-02-13T00:31:40.958] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:31:40.988] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:31:41.011] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:31:41.049] [INFO] cheese - inserting 1000 documents. first: Camp Barton and last: Portal:Indonesia/ST List/SA Borneo Clouded Leopard -[2018-02-13T00:31:41.085] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:41.163] [INFO] cheese - inserting 1000 documents. first: Yamaguti prefecture and last: Sharpstown scandal -[2018-02-13T00:31:41.180] [INFO] cheese - inserting 1000 documents. first: LongEZ and last: Vauxhall by-election, 1989 -[2018-02-13T00:31:41.232] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:31:41.250] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:31:41.288] [INFO] cheese - inserting 1000 documents. first: Portal:Astronomy/Events/April 2013 and last: United States House of Representatives elections in New Jersey, 1840 -[2018-02-13T00:31:41.318] [INFO] cheese - inserting 1000 documents. first: Full Tillt Boogie Band and last: Ernie Smith (Negro League baseball player) -[2018-02-13T00:31:41.328] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:31:41.340] [INFO] cheese - inserting 1000 documents. first: Category:United States Attorneys for the District of Mississippi and last: Template:KPL 2009 Map -[2018-02-13T00:31:41.399] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:31:41.401] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:31:41.434] [INFO] cheese - inserting 1000 documents. first: Category:Political parties in Queensland and last: Wikipedia:Articles for deletion/Minnesota Bluegrass and Old-Time Music Festival -[2018-02-13T00:31:41.473] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:31:41.509] [INFO] cheese - inserting 1000 documents. first: Beam Power Challenge and last: Sedgefield Borough Council election, 2003 -[2018-02-13T00:31:41.562] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:31:41.630] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Alabama, 1841 and last: Category:Song recordings produced by Pharrell Williams -[2018-02-13T00:31:41.645] [INFO] cheese - inserting 1000 documents. first: Komthur and last: A Very Special Drawn Together Afterschool Special -[2018-02-13T00:31:41.659] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:31:41.705] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:31:41.788] [INFO] cheese - inserting 1000 documents. first: Cosmopolitan bulrush and last: Nuffield chemistry -[2018-02-13T00:31:41.808] [INFO] cheese - inserting 1000 documents. first: Portal:Dinosaurs/Selected article/28 and last: Balisana -[2018-02-13T00:31:41.821] [INFO] cheese - inserting 1000 documents. first: Orehovica, Vipava and last: Vista Systems -[2018-02-13T00:31:41.831] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:41.858] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:31:41.898] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:41.929] [INFO] cheese - inserting 1000 documents. first: Trigonocephalus halys and last: Puzzles Like You -[2018-02-13T00:31:41.943] [INFO] cheese - inserting 1000 documents. first: Sharpstown affair and last: A Shropshire Lad -[2018-02-13T00:31:41.980] [INFO] cheese - inserting 1000 documents. first: Category:Song recordings produced by Pip Williams and last: Chinese Dream -[2018-02-13T00:31:41.982] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:31:42.026] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:31:42.035] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:31:42.180] [INFO] cheese - inserting 1000 documents. first: Obedience trial and last: Giant Pacific chiton -[2018-02-13T00:31:42.231] [INFO] cheese - inserting 1000 documents. first: Personal Egress Air Packs and last: Inner Harbor Navigation Canal (IHNC) Seabrook Floodgate Structure -[2018-02-13T00:31:42.315] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:42.356] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:42.428] [INFO] cheese - inserting 1000 documents. first: Hyakujuu-Ou Go-Lion and last: Greenville unionist convention -[2018-02-13T00:31:42.452] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Cāmadevivaṃsa and last: File:Bull Promontional Photo.jpg -[2018-02-13T00:31:42.478] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:42.481] [INFO] cheese - inserting 1000 documents. first: File:PuzzlesLikeYou.gif and last: Clervaux railway station -[2018-02-13T00:31:42.508] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:42.528] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:31:42.554] [INFO] cheese - inserting 1000 documents. first: Plan A (song) and last: Rex Gary -[2018-02-13T00:31:42.594] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:31:42.738] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/ast/admlaw and last: Doug Murray (Coronation Street) -[2018-02-13T00:31:42.778] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:31:42.837] [INFO] cheese - inserting 1000 documents. first: Trowel and last: VGA connector -[2018-02-13T00:31:42.871] [INFO] cheese - inserting 1000 documents. first: BGSQ and last: Wikipedia:Valued picture candidates/Childe's Tomb -[2018-02-13T00:31:42.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/July 15, 2007 and last: Sky's The Limit(album) -[2018-02-13T00:31:42.897] [INFO] cheese - inserting 1000 documents. first: Category:Fictional volleyball players and last: Category:McKim, Mead, and White buildings -[2018-02-13T00:31:42.912] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:31:42.926] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:31:42.954] [INFO] cheese - inserting 1000 documents. first: Pink bogbutton and last: Template:Creative Commons topics -[2018-02-13T00:31:42.980] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Coosa County, Alabama and last: Buginese (Unicode block) -[2018-02-13T00:31:42.987] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:31:42.993] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:31:43.038] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:31:43.044] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:31:43.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nosmokingblogdiary.blogspot.com and last: Pakistani Baluchistan -[2018-02-13T00:31:43.226] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:31:43.247] [INFO] cheese - inserting 1000 documents. first: Union des Démocrates de Côte d’Ivoire and last: Paul Humphrey (singer/songwriter) -[2018-02-13T00:31:43.284] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:31:43.366] [INFO] cheese - inserting 1000 documents. first: Mikhail Ryumin and last: Black-Capped Woodland-Warbler -[2018-02-13T00:31:43.381] [INFO] cheese - inserting 1000 documents. first: NOV Fm and last: Phalaena selenitica -[2018-02-13T00:31:43.412] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:31:43.472] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:31:43.613] [INFO] cheese - inserting 1000 documents. first: File:St George logo.png and last: ChiChi -[2018-02-13T00:31:43.644] [INFO] cheese - inserting 1000 documents. first: All We Need (Raury album) and last: Kim Byung-ok -[2018-02-13T00:31:43.670] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:43.680] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm Tempel and last: Tickhill -[2018-02-13T00:31:43.683] [INFO] cheese - inserting 1000 documents. first: David Taw and last: João Maria Barreto Ferreira do Amaral, 2nd Baron of Oliveira Lima -[2018-02-13T00:31:43.707] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:31:43.724] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:31:43.754] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:31:43.763] [INFO] cheese - inserting 1000 documents. first: Fred Papas and last: AACA -[2018-02-13T00:31:43.822] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:31:43.841] [INFO] cheese - inserting 1000 documents. first: Eggers Group and last: National Route 131 -[2018-02-13T00:31:43.903] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:31:44.000] [INFO] cheese - inserting 1000 documents. first: Mordellistenoda melana and last: Category:Media in Lima -[2018-02-13T00:31:44.045] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:31:44.155] [INFO] cheese - inserting 1000 documents. first: Willi Rothhaar and last: Pedro de Silva -[2018-02-13T00:31:44.182] [INFO] cheese - inserting 1000 documents. first: Cryonics in popular culture and last: Template:Country data Bottrop -[2018-02-13T00:31:44.211] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:44.218] [INFO] cheese - inserting 1000 documents. first: Cities of the Faroe Islands and last: Tures valley railroad -[2018-02-13T00:31:44.249] [INFO] cheese - inserting 1000 documents. first: Ahsa and last: Devoted to You (song) -[2018-02-13T00:31:44.264] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:31:44.290] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:31:44.332] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:31:44.406] [INFO] cheese - inserting 1000 documents. first: Chaams and last: CTP:molybdopterin cytidylyltransferase -[2018-02-13T00:31:44.419] [INFO] cheese - inserting 1000 documents. first: Margaret Wade (basketball) and last: Soboșa River -[2018-02-13T00:31:44.442] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:44.461] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:31:44.615] [INFO] cheese - inserting 1000 documents. first: Stjepan Držislav and last: Document Exploitation -[2018-02-13T00:31:44.652] [INFO] cheese - inserting 1000 documents. first: Pedro de Silva Cienfuegos-Jovellanos and last: War Times: Reports From The Opposition -[2018-02-13T00:31:44.661] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:31:44.700] [INFO] cheese - inserting 1000 documents. first: Template:WAM talk 2015 and last: Stalked spikemoss -[2018-02-13T00:31:44.704] [INFO] cheese - inserting 1000 documents. first: Nogeoldae and last: Boleslaus V, Duke of Poland -[2018-02-13T00:31:44.753] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:31:44.774] [INFO] cheese - inserting 1000 documents. first: MoCo cytidylyltransferase and last: Category:Medical and health organisations based in Poland -[2018-02-13T00:31:44.832] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:31:44.844] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:31:44.870] [INFO] cheese - inserting 1000 documents. first: Signatura and last: Contes -[2018-02-13T00:31:44.873] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:31:44.926] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:31:44.948] [INFO] cheese - inserting 1000 documents. first: Devoted To You and last: European Party -[2018-02-13T00:31:44.992] [INFO] cheese - inserting 1000 documents. first: Pietro Moriconi and last: Mettmenhasli-See -[2018-02-13T00:31:45.008] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:31:45.044] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:31:45.214] [INFO] cheese - inserting 1000 documents. first: Patrick Joseph Carew and last: Test tube holder -[2018-02-13T00:31:45.225] [INFO] cheese - inserting 1000 documents. first: Category:Zambian expatriates in the United Kingdom and last: Category:Grammarians of Yiddish -[2018-02-13T00:31:45.247] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:31:45.259] [INFO] cheese - inserting 1000 documents. first: Trachydora pygaea and last: Asser (monk) -[2018-02-13T00:31:45.285] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:45.287] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:31:45.355] [INFO] cheese - inserting 1000 documents. first: Mahmud Abu al-Fath and last: Abdul hay mosallam -[2018-02-13T00:31:45.371] [INFO] cheese - inserting 1000 documents. first: Katharina Haecker and last: Saint-Rose (AMT) -[2018-02-13T00:31:45.408] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:31:45.423] [INFO] cheese - inserting 1000 documents. first: University Of Nebraska and last: Octopuses -[2018-02-13T00:31:45.426] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:31:45.494] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:31:45.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2006 February 12 and last: K. 242 -[2018-02-13T00:31:45.575] [INFO] cheese - inserting 1000 documents. first: Tej Pratap Yadav and last: Ryan Switzer -[2018-02-13T00:31:45.587] [INFO] cheese - inserting 1000 documents. first: A Tribute to the Four Horsemen and last: Bąkowice -[2018-02-13T00:31:45.587] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:31:45.619] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:31:45.635] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Wisconsin, 1994 and last: Per Meinich -[2018-02-13T00:31:45.637] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:31:45.679] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:31:45.767] [INFO] cheese - inserting 1000 documents. first: File:Vipin Verma.jpg and last: Fly-boy -[2018-02-13T00:31:45.813] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:31:45.929] [INFO] cheese - inserting 1000 documents. first: Bielice, Namysłów County and last: Lake of Riesser -[2018-02-13T00:31:45.963] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:31:46.021] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/userweb.pedf.cuni.cz and last: Hygrophoropsis laevis -[2018-02-13T00:31:46.044] [INFO] cheese - inserting 1000 documents. first: T-Link and last: Category:Jewish Jordanian history -[2018-02-13T00:31:46.065] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:46.075] [INFO] cheese - inserting 1000 documents. first: Tyubu and last: Taygete (moon) -[2018-02-13T00:31:46.099] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:31:46.115] [INFO] cheese - inserting 1000 documents. first: Category:Towers completed in 2009 and last: Category:Aircraft manufactured in India -[2018-02-13T00:31:46.134] [INFO] cheese - inserting 1000 documents. first: Ball Of Confusion (That's What The World Is Today) and last: Born A Rebel -[2018-02-13T00:31:46.163] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:31:46.181] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:31:46.240] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:31:46.293] [INFO] cheese - inserting 1000 documents. first: Serbia national under-19 football team and last: Atep Rizal -[2018-02-13T00:31:46.332] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:31:46.404] [INFO] cheese - inserting 1000 documents. first: Hygrophoropsis fuscosquamula and last: List of eruvin -[2018-02-13T00:31:46.407] [INFO] cheese - inserting 1000 documents. first: Großer Plöner-see and last: 12 light field ambulance -[2018-02-13T00:31:46.437] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Irving Quant and last: Arda Envinyanta -[2018-02-13T00:31:46.441] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:31:46.450] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:46.480] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:31:46.508] [INFO] cheese - inserting 1000 documents. first: Category:Aircraft manufactured by the Philippines and last: Template:ABA League rebounding leaders -[2018-02-13T00:31:46.540] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:31:46.650] [INFO] cheese - inserting 1000 documents. first: Campari (disambiguation) and last: Parsley virus 3 -[2018-02-13T00:31:46.685] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:31:46.722] [INFO] cheese - inserting 1000 documents. first: Shelkovnikov Beybut Martirosovich and last: File:Karwar Evening.jpg -[2018-02-13T00:31:46.748] [INFO] cheese - inserting 1000 documents. first: 2011 in São Tomé and Príncipe and last: Anthophila punctosa -[2018-02-13T00:31:46.770] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:46.780] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/annisaa.invisionplus.net and last: 1234567890 day -[2018-02-13T00:31:46.795] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:31:46.815] [INFO] cheese - inserting 1000 documents. first: Sujeong and last: Navy Medical Service -[2018-02-13T00:31:46.822] [INFO] cheese - inserting 1000 documents. first: Lazy eye and last: Malcolm Bradbury -[2018-02-13T00:31:46.825] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:31:46.859] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:46.891] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:31:46.902] [INFO] cheese - inserting 1000 documents. first: Her Şey Aşktan and last: Category:Europa Jupiter System Mission -[2018-02-13T00:31:46.947] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:31:47.228] [INFO] cheese - inserting 1000 documents. first: Silver Wolf Award (The Scout Association) and last: File:Patients and medical staff.jpg -[2018-02-13T00:31:47.271] [INFO] cheese - inserting 1000 documents. first: Choreutis philonyma and last: Evergreen Street -[2018-02-13T00:31:47.285] [INFO] cheese - inserting 1000 documents. first: Ender's Game series and last: Mänttä-Vilppula -[2018-02-13T00:31:47.291] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:31:47.293] [INFO] cheese - inserting 1000 documents. first: Template:ConfirmationImageOTRS and last: Jean-Talon Market -[2018-02-13T00:31:47.306] [INFO] cheese - inserting 1000 documents. first: Donati Salla and last: RGVFC -[2018-02-13T00:31:47.313] [INFO] cheese - inserting 1000 documents. first: Darby End and last: James Sumner (baseball) -[2018-02-13T00:31:47.338] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:31:47.364] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:31:47.386] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:31:47.392] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:31:47.388] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:31:47.769] [INFO] cheese - inserting 1000 documents. first: Polandish Passage and last: Andrew Crommelin -[2018-02-13T00:31:47.784] [INFO] cheese - inserting 1000 documents. first: File:View of Village Market.JPG and last: Paurine Mpariwa -[2018-02-13T00:31:47.804] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ophthalmophaginae and last: Category:Israeli surnames -[2018-02-13T00:31:47.815] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/defendamerica.mil and last: CD53 -[2018-02-13T00:31:47.824] [INFO] cheese - inserting 1000 documents. first: File:Lake People Park, Seattle, March 2013.jpg and last: Rahul Khullar -[2018-02-13T00:31:47.825] [INFO] cheese - inserting 1000 documents. first: Template:Hearthstone and last: West 12 Shepherd's Bush -[2018-02-13T00:31:47.828] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:31:47.858] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:31:47.860] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:31:47.860] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:31:47.891] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:31:47.942] [INFO] cheese - inserting 1000 documents. first: Upper Aulaqi Sultanate and last: Carlenrig -[2018-02-13T00:31:47.961] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:31:48.007] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:31:48.250] [INFO] cheese - inserting 1000 documents. first: Only Fools (Never Fall in Love) and last: Teledyne Turbine Engines -[2018-02-13T00:31:48.267] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/anite.com and last: Pander Brothers -[2018-02-13T00:31:48.285] [INFO] cheese - inserting 1000 documents. first: 2011 F1 season and last: Sladjan Pajić -[2018-02-13T00:31:48.293] [INFO] cheese - inserting 1000 documents. first: Category:Media in Beirut and last: Jelly roll motif -[2018-02-13T00:31:48.341] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:31:48.350] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:31:48.357] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:48.375] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:31:48.441] [INFO] cheese - inserting 1000 documents. first: CD63 and last: Untied aid -[2018-02-13T00:31:48.493] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:48.560] [INFO] cheese - inserting 1000 documents. first: The Last Few Bricks and last: Paranà -[2018-02-13T00:31:48.609] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:31:48.699] [INFO] cheese - inserting 1000 documents. first: Template:Country data Conil de la Frontera and last: Wikipedia:WikiProject Spam/LinkReports/parahat.info -[2018-02-13T00:31:48.735] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:31:48.760] [INFO] cheese - inserting 1000 documents. first: 2013 Conference USA men's soccer season and last: New Musical Theater of San Francisco, Inc. -[2018-02-13T00:31:48.773] [INFO] cheese - inserting 1000 documents. first: List of mountain types and last: Samuel Byck -[2018-02-13T00:31:48.779] [INFO] cheese - inserting 1000 documents. first: Philonides (physician) and last: 2005 Pot Black -[2018-02-13T00:31:48.796] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:31:48.826] [INFO] cheese - inserting 1000 documents. first: Category:Defunct ice hockey leagues in the United Kingdom and last: Wikipedia:WikiProject Azerbaijan/Article alerts/Archive -[2018-02-13T00:31:48.826] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:48.828] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:31:48.846] [INFO] cheese - inserting 1000 documents. first: Arthur, 1st Duke of Connaught and last: File:Roncesvalles Festival-2006.JPG -[2018-02-13T00:31:48.890] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:48.916] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:31:49.011] [INFO] cheese - inserting 1000 documents. first: Bamforth National Wildlife Refuge and last: Beni Ebeid Stadium -[2018-02-13T00:31:49.032] [INFO] cheese - inserting 1000 documents. first: Category:Albanian emigrants to Yugoslavia and last: Category:Chinese baritones -[2018-02-13T00:31:49.064] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:49.074] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:31:49.081] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Montcalm County, Michigan and last: San Diego Sockers (2001–2004) -[2018-02-13T00:31:49.140] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:31:49.211] [INFO] cheese - inserting 1000 documents. first: San Diego-Coronado Bridge and last: Edward Lhwyd -[2018-02-13T00:31:49.256] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:49.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sense and Goodness Without God and last: SGCIM -[2018-02-13T00:31:49.343] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:31:49.586] [INFO] cheese - inserting 1000 documents. first: Fragkias and last: File:Florida Blazers logo 1974.png -[2018-02-13T00:31:49.591] [INFO] cheese - inserting 1000 documents. first: Category:Media in Gyeongju and last: Annette Roque -[2018-02-13T00:31:49.592] [INFO] cheese - inserting 1000 documents. first: Kalbar and last: Heavy metal L-Gaim -[2018-02-13T00:31:49.602] [INFO] cheese - inserting 1000 documents. first: Dutch process chocolate and last: Anti-disestablishmentarianism -[2018-02-13T00:31:49.633] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:49.640] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:31:49.657] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:31:49.686] [INFO] cheese - inserting 1000 documents. first: John Johnstone (disambiguation) and last: The Nightcrawlers -[2018-02-13T00:31:49.696] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:31:49.744] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:31:49.879] [INFO] cheese - inserting 1000 documents. first: Five Years In A LIVEtime and last: Petero Byakatonda -[2018-02-13T00:31:49.921] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:31:49.998] [INFO] cheese - inserting 1000 documents. first: List of Sony television series and last: Un camino hacia el destino -[2018-02-13T00:31:49.999] [INFO] cheese - inserting 1000 documents. first: Maintenance regulation and last: Lithuanian Civil War (1431–1435) -[2018-02-13T00:31:50.035] [INFO] cheese - inserting 1000 documents. first: The 1936 Olympics and last: Patrick Wolridge-Gordon -[2018-02-13T00:31:50.051] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:31:50.077] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:31:50.117] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:31:50.240] [INFO] cheese - inserting 1000 documents. first: Iya Savvina and last: Fishguard and Rosslare Railways and Harbours -[2018-02-13T00:31:50.288] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:50.387] [INFO] cheese - inserting 1000 documents. first: Step It Up (song) and last: Category:Aviation code templates -[2018-02-13T00:31:50.433] [INFO] cheese - inserting 1000 documents. first: Kahurabad-e Sohrabi and last: National Register of Historic Places listings in Kiowa County, Kansas -[2018-02-13T00:31:50.453] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:50.459] [INFO] cheese - inserting 1000 documents. first: Telus Plaza and last: Wikipedia:Arbitration Committee Elections December 2015/Candidates/Keilana/Questions -[2018-02-13T00:31:50.517] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:31:50.533] [INFO] cheese - inserting 1000 documents. first: Ernst Toch and last: Cigarette lighters -[2018-02-13T00:31:50.531] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:31:50.653] [INFO] cheese - inserting 1000 documents. first: List of minor planets/76801–76900 and last: Wikipedia:Articles for deletion/Employee leasing -[2018-02-13T00:31:50.724] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T00:31:50.769] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:50.980] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Lane County, Kansas and last: Municipal councillor (NL) -[2018-02-13T00:31:50.981] [INFO] cheese - inserting 1000 documents. first: Herfast de Crépon and last: 322d Bombardment Squadron -[2018-02-13T00:31:51.018] [INFO] cheese - inserting 1000 documents. first: Predictive Informatics and last: Cicely (disambiguation) -[2018-02-13T00:31:51.023] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:31:51.028] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:31:51.064] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:51.184] [INFO] cheese - inserting 1000 documents. first: B 93 and last: Violet Dancer -[2018-02-13T00:31:51.272] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:51.325] [INFO] cheese - inserting 1000 documents. first: Category:Dundela F.C. players and last: Wikipedia:Files for deletion/2011 January 12 -[2018-02-13T00:31:51.402] [INFO] cheese - inserting 1000 documents. first: File:The movie poster for the 2015 documentary "A Wing and a Prayer".jpg and last: A340-642 -[2018-02-13T00:31:51.409] [INFO] cheese - inserting 1000 documents. first: Category:Pan American Games gold medalists for the United States and last: Wikipedia:0.7/0.7index/Amusements -[2018-02-13T00:31:51.420] [INFO] cheese - inserting 1000 documents. first: Şenlikköy Stadium and last: Paget baronets -[2018-02-13T00:31:51.443] [INFO] cheese - inserting 1000 documents. first: Pasha's Mosque and last: Category:String quartets by Milton Babbitt -[2018-02-13T00:31:51.447] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:31:51.455] [INFO] cheese - batch complete in: 2.539 secs -[2018-02-13T00:31:51.468] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T00:31:51.474] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:31:51.527] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:51.772] [INFO] cheese - inserting 1000 documents. first: Corning Community College and last: Écublens, Vaud -[2018-02-13T00:31:52.095] [INFO] cheese - batch complete in: 1.371 secs -[2018-02-13T00:31:52.181] [INFO] cheese - inserting 1000 documents. first: Christine Malèvre and last: Category:Lacrosse teams -[2018-02-13T00:31:52.241] [INFO] cheese - inserting 1000 documents. first: A340-643 and last: Template:Fb competition 2004-05 Macedonian Prva Liga -[2018-02-13T00:31:52.245] [INFO] cheese - inserting 1000 documents. first: Traubendorn and last: Ingenious Media -[2018-02-13T00:31:52.248] [INFO] cheese - inserting 1000 documents. first: Category:String quartets by Carl Nielsen and last: Qanat Siyah -[2018-02-13T00:31:52.291] [INFO] cheese - inserting 1000 documents. first: Barbatula brandti and last: James O'Kelly -[2018-02-13T00:31:52.316] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:31:52.355] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:31:52.378] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:31:52.407] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:31:52.451] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:31:52.802] [INFO] cheese - inserting 1000 documents. first: Under Secretary for Arms Control and International Security and last: Laura Johnson -[2018-02-13T00:31:52.850] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:31:52.874] [INFO] cheese - inserting 1000 documents. first: Modern Life is War and last: Template:PASOBronzeMedalist -[2018-02-13T00:31:52.874] [INFO] cheese - inserting 1000 documents. first: File:I Thank You ZZ Top.jpg and last: Żychckie Osady -[2018-02-13T00:31:52.879] [INFO] cheese - inserting 1000 documents. first: Qanat Seyah and last: File:Sam Concepcion in World Vision Mission in Cagayan de Oro, 2012.jpg -[2018-02-13T00:31:52.907] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2011 January 12 and last: Razboienii de Jos -[2018-02-13T00:31:52.909] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:31:52.912] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:52.918] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:31:52.957] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T00:31:52.961] [INFO] cheese - inserting 1000 documents. first: Tonight's the Night (1934 film) and last: Category:Arts festivals in North America -[2018-02-13T00:31:53.015] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:31:53.084] [INFO] cheese - inserting 1000 documents. first: Plead and last: Hurrian language -[2018-02-13T00:31:53.181] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T00:31:53.236] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Człuchów County and last: 1988 Guarujá Open -[2018-02-13T00:31:53.281] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:31:53.300] [INFO] cheese - inserting 1000 documents. first: Precious Blood (song) and last: Category:Azerbaijani football clubs 2007–08 season -[2018-02-13T00:31:53.363] [INFO] cheese - inserting 1000 documents. first: Template:Talt and last: Wikipedia:Articles for deletion/Kolinsky sable -[2018-02-13T00:31:53.397] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2007 July 16 and last: DN-1-Class Blimp -[2018-02-13T00:31:53.405] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:53.451] [INFO] cheese - inserting 1000 documents. first: Borşeni and last: File:ACA stageFINAL.JPG -[2018-02-13T00:31:53.493] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:31:53.499] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:31:53.513] [INFO] cheese - inserting 1000 documents. first: Logie Award for Most Popular Drama Program and last: Stella von Schöneberg -[2018-02-13T00:31:53.514] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:31:53.581] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:31:53.647] [INFO] cheese - inserting 1000 documents. first: What Happens at the National Propane Gas Convention in Memphis Stays at the National Propane Gas Convention in Memphis and last: York Regional Road 99 -[2018-02-13T00:31:53.689] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:31:53.791] [INFO] cheese - inserting 1000 documents. first: Pyramid roof and last: USC-Conway Chanticleers -[2018-02-13T00:31:53.867] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:31:53.871] [INFO] cheese - inserting 1000 documents. first: Acoustics Research Institute and last: Pisang raja udang -[2018-02-13T00:31:53.872] [INFO] cheese - inserting 1000 documents. first: Kevlarsjäl and last: Masahiro kawasaki -[2018-02-13T00:31:53.917] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:53.925] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:31:53.987] [INFO] cheese - inserting 1000 documents. first: Oklahoma Wing Civil Air Patrol and last: Template:Editnotices/Page/Dead centre (engineering) -[2018-02-13T00:31:54.056] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:31:54.060] [INFO] cheese - inserting 1000 documents. first: Sandy Bruce-Lockhart, Baron Bruce-Lockhart and last: WAAY-TV -[2018-02-13T00:31:54.074] [INFO] cheese - inserting 1000 documents. first: Green liberalism and last: Child safety lock -[2018-02-13T00:31:54.119] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:31:54.148] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:31:54.201] [INFO] cheese - inserting 1000 documents. first: South Carolina-Conway Chanticleers and last: Category:Moldovan expatriate sportspeople -[2018-02-13T00:31:54.247] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:31:54.264] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Palermo-Juventina and last: Wikipedia:Articles for deletion/Cecil Johnson -[2018-02-13T00:31:54.350] [INFO] cheese - inserting 1000 documents. first: Rueppellii and last: Egletes humifusa -[2018-02-13T00:31:54.366] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:31:54.396] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:31:54.400] [INFO] cheese - inserting 1000 documents. first: Kate Mullins and last: Category:Populated places in Ford County, Illinois -[2018-02-13T00:31:54.490] [INFO] cheese - inserting 1000 documents. first: File:Namibian Army Wolf armed with Air Defence cannon.jpg and last: 16th Transport Squadron -[2018-02-13T00:31:54.540] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:31:54.584] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:31:54.746] [INFO] cheese - inserting 1000 documents. first: American Athletic Conference Baseball Tournament and last: Oeffag series 153 -[2018-02-13T00:31:54.795] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:31:54.796] [INFO] cheese - inserting 1000 documents. first: Thousand Cranes and last: Callicebus (Torquatus) medemi -[2018-02-13T00:31:54.879] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:31:54.895] [INFO] cheese - inserting 1000 documents. first: Claim jump and last: Port Road -[2018-02-13T00:31:54.912] [INFO] cheese - inserting 1000 documents. first: Tiddington railway station and last: Template:Belgium-film-director-stub -[2018-02-13T00:31:54.922] [INFO] cheese - inserting 1000 documents. first: Category:Infectious Records albums and last: William Bradshaw (writer) -[2018-02-13T00:31:54.939] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:31:54.974] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:31:54.983] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:31:55.009] [INFO] cheese - inserting 1000 documents. first: Apatema and last: Lord SatyNarayan -[2018-02-13T00:31:55.036] [INFO] cheese - inserting 1000 documents. first: Henri I de Montmorency and last: Caine, Hall, Sir -[2018-02-13T00:31:55.054] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:31:55.097] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T00:31:55.166] [INFO] cheese - inserting 1000 documents. first: Oeffag series 253 and last: Tower Battery -[2018-02-13T00:31:55.211] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:31:55.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ewell Grove Infant and Nursery School and last: Maritime Air Mass -[2018-02-13T00:31:55.301] [INFO] cheese - inserting 1000 documents. first: The Grolier Club and last: File:Clinical Gastroenterology and Hepatology.gif -[2018-02-13T00:31:55.314] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:31:55.342] [INFO] cheese - inserting 1000 documents. first: Category:Senecio and last: Elmisauridae -[2018-02-13T00:31:55.364] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gümbadey and last: Salman the Persian (film) -[2018-02-13T00:31:55.367] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:31:55.376] [INFO] cheese - inserting 1000 documents. first: Transit car and last: Celtedens -[2018-02-13T00:31:55.403] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:31:55.425] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:31:55.435] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:55.551] [INFO] cheese - inserting 1000 documents. first: Polychrome Glacier and last: EDreams (2) -[2018-02-13T00:31:55.584] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:31:55.705] [INFO] cheese - inserting 1000 documents. first: Mesua kochummenia and last: Saint-Alexis-des-Monts, Quebec -[2018-02-13T00:31:55.715] [INFO] cheese - inserting 1000 documents. first: Category:Parks in Humboldt County, California and last: County board of elections -[2018-02-13T00:31:55.737] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:31:55.750] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:31:55.774] [INFO] cheese - inserting 1000 documents. first: Carrolla and last: Casimir III of Poland -[2018-02-13T00:31:55.834] [INFO] cheese - inserting 1000 documents. first: Anchiniinae and last: George Lawler (EastEnders) -[2018-02-13T00:31:55.869] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:31:55.963] [INFO] cheese - inserting 1000 documents. first: London Buses route 7 and last: I Think I'm A Clone Now -[2018-02-13T00:31:55.976] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:31:56.044] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:31:56.071] [INFO] cheese - inserting 1000 documents. first: Breckenridge, CO Micropolitan Statistical Area and last: United States House of Representatives elections in Illinois, 1890 -[2018-02-13T00:31:56.109] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:31:56.111] [INFO] cheese - inserting 1000 documents. first: Michael Maurice Micklewhite and last: Disputed territories -[2018-02-13T00:31:56.221] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T00:31:56.272] [INFO] cheese - inserting 1000 documents. first: Category:Bloodshot Records albums and last: Totally Táta -[2018-02-13T00:31:56.380] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:31:56.469] [INFO] cheese - inserting 1000 documents. first: Kava, Mali and last: Norm Rogers -[2018-02-13T00:31:56.495] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Missions in 3-D Pinball Space Cadet and last: Cardioglossa pulchra -[2018-02-13T00:31:56.508] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:31:56.575] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:31:56.611] [INFO] cheese - inserting 1000 documents. first: Emagine and last: Doha Stadium (Qatar) -[2018-02-13T00:31:56.690] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:31:56.766] [INFO] cheese - inserting 1000 documents. first: Template:Indian Justice Party/meta/shortname and last: Lestina -[2018-02-13T00:31:56.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/God-Grilla and last: Open-source 3-D printer -[2018-02-13T00:31:56.825] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:31:56.861] [INFO] cheese - inserting 1000 documents. first: Category:Northumberland cuisine and last: The Metro (film) -[2018-02-13T00:31:56.864] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:31:56.954] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:31:56.991] [INFO] cheese - inserting 1000 documents. first: Cardioglossa schioetzi and last: Yokoyama BayStars -[2018-02-13T00:31:56.994] [INFO] cheese - inserting 1000 documents. first: William IV of England,Scotland,and Ireland and last: Category:New Zealand baseball players -[2018-02-13T00:31:57.040] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:31:57.069] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:57.194] [INFO] cheese - inserting 1000 documents. first: Category:Asian-New Zealand culture in Auckland and last: Zdzisław Bradel -[2018-02-13T00:31:57.195] [INFO] cheese - inserting 1000 documents. first: Marguerite de Launay, baronne de Staal and last: Filosofy -[2018-02-13T00:31:57.238] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:31:57.249] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T00:31:57.293] [INFO] cheese - inserting 1000 documents. first: File:Lopez Play.png and last: FSMK -[2018-02-13T00:31:57.334] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:31:57.387] [INFO] cheese - inserting 1000 documents. first: High Definition Televison and last: Ernest Hackel -[2018-02-13T00:31:57.445] [INFO] cheese - inserting 1000 documents. first: Massadio Haïdara and last: Wikipedia:Campus Ambassadors/Louisiana State University/Trained Ambassadors -[2018-02-13T00:31:57.446] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:31:57.468] [INFO] cheese - inserting 1000 documents. first: Alberto Ullastres and last: Suman (actor) -[2018-02-13T00:31:57.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2009 February 15 and last: Pseudanapaea transvestita -[2018-02-13T00:31:57.501] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:31:57.526] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:31:57.559] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:57.675] [INFO] cheese - inserting 1000 documents. first: Alina Bolshakova and last: Nat haversine -[2018-02-13T00:31:57.688] [INFO] cheese - inserting 1000 documents. first: Air Tanzania Corporation and last: Pork Knuckles and Ginger Stew (ZYU GEK GOENG) -[2018-02-13T00:31:57.720] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:31:57.739] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:31:57.881] [INFO] cheese - inserting 1000 documents. first: Category:Continental unions and last: Tachycardia, paroxysmal -[2018-02-13T00:31:57.900] [INFO] cheese - inserting 1000 documents. first: Travis Norton and last: Discrete Uniform Distribution -[2018-02-13T00:31:57.912] [INFO] cheese - inserting 1000 documents. first: Privett church and last: Category:Populated places in Bureau County, Illinois -[2018-02-13T00:31:57.923] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:57.928] [INFO] cheese - inserting 1000 documents. first: 1983 Bristol Open and last: Wallen, Indiana -[2018-02-13T00:31:57.951] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:31:57.975] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:31:57.989] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:58.043] [INFO] cheese - inserting 1000 documents. first: Phylosophy and last: Loop splitting -[2018-02-13T00:31:58.167] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:31:58.201] [INFO] cheese - inserting 1000 documents. first: St. Croix Boom Company House and Barn and last: Category:Referendums in the Åland Islands -[2018-02-13T00:31:58.301] [INFO] cheese - inserting 1000 documents. first: Category:Education in Conwy County Borough and last: Charles Corbett -[2018-02-13T00:31:58.344] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:31:58.377] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:31:58.443] [INFO] cheese - inserting 1000 documents. first: Derk-Elsko Bruins and last: Sino-Tibetan relations during the Tang dynasty -[2018-02-13T00:31:58.488] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:58.500] [INFO] cheese - inserting 1000 documents. first: Trash Pussies and last: State Highway 26 (Texas 1939) -[2018-02-13T00:31:58.575] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:58.594] [INFO] cheese - inserting 1000 documents. first: G. diffusa and last: Thyreostat II -[2018-02-13T00:31:58.603] [INFO] cheese - inserting 1000 documents. first: Category:Burials in Tyne and Wear and last: Phanigiri -[2018-02-13T00:31:58.623] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:31:58.692] [INFO] cheese - inserting 1000 documents. first: Japalura Tree Dragon and last: Pınarbaşı, Kastamonu -[2018-02-13T00:31:58.696] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:31:58.750] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:31:58.787] [INFO] cheese - inserting 1000 documents. first: Ricsinsåt and last: Institute of Politics and Public Service -[2018-02-13T00:31:58.838] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:31:58.906] [INFO] cheese - inserting 1000 documents. first: List of Federal Reserve branches and last: Macquarie Island Cormorant -[2018-02-13T00:31:58.939] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:31:58.945] [INFO] cheese - inserting 1000 documents. first: State Highway 27 (Texas 1939) and last: Dendropsophus leali -[2018-02-13T00:31:58.948] [INFO] cheese - inserting 1000 documents. first: Arawak people and last: Vesikur -[2018-02-13T00:31:58.978] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:31:58.988] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:31:58.998] [INFO] cheese - inserting 1000 documents. first: Rescue Us and last: Les Innommables -[2018-02-13T00:31:59.047] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:31:59.140] [INFO] cheese - inserting 1000 documents. first: Apocalyptic Raids and last: List of state leaders in 1761 -[2018-02-13T00:31:59.196] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T00:31:59.198] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/1996 Andhra Pradesh cyclone and last: Slender sow thistle -[2018-02-13T00:31:59.240] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:31:59.256] [INFO] cheese - inserting 1000 documents. first: Ave (intermunicipal community) and last: Tose Proeski -[2018-02-13T00:31:59.277] [INFO] cheese - inserting 1000 documents. first: Market House (Rothwell, Northamptonshire) and last: Lucrezia (disambiguation) -[2018-02-13T00:31:59.311] [INFO] cheese - inserting 1000 documents. first: DG Flugzeugbau DG-1000T and last: Mott Haven Historic District -[2018-02-13T00:31:59.326] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:31:59.333] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Muslim history and last: Natan Altman -[2018-02-13T00:31:59.351] [INFO] cheese - inserting 1000 documents. first: Category:AEK Athens F.C. chairmen and last: Template:Spain-dessert-stub -[2018-02-13T00:31:59.358] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:31:59.405] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:31:59.427] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:31:59.432] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:31:59.712] [INFO] cheese - inserting 1000 documents. first: Slender sow-thistle and last: Simplemente María (Mexican telenovela) -[2018-02-13T00:31:59.785] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:31:59.886] [INFO] cheese - inserting 1000 documents. first: AKFM and last: Wikipedia:Articles for deletion/Robert trail -[2018-02-13T00:31:59.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Jrmillikan and last: Category:Sharks (rugby union) players -[2018-02-13T00:31:59.941] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:31:59.951] [INFO] cheese - inserting 1000 documents. first: Kent North and last: A. S. Gage Ranch -[2018-02-13T00:31:59.952] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:31:59.982] [INFO] cheese - inserting 1000 documents. first: Wikimedian and last: Puddle City Racing Lights -[2018-02-13T00:32:00.018] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:32:00.036] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:32:00.060] [INFO] cheese - inserting 1000 documents. first: Sarpsborg 08 FF and last: Portal:Oceania/Daily article/9 -[2018-02-13T00:32:00.148] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:32:00.379] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1762 and last: Yousef Alavi -[2018-02-13T00:32:00.395] [INFO] cheese - inserting 1000 documents. first: Category:Sufism in Azad Kashmir and last: Category:Members of the 17th Canadian Ministry -[2018-02-13T00:32:00.404] [INFO] cheese - inserting 1000 documents. first: Category:1923–24 domestic association football cups and last: Quest of Ki -[2018-02-13T00:32:00.422] [INFO] cheese - inserting 1000 documents. first: Template:2011 Vodacom Cup Tables and last: Alan Allport -[2018-02-13T00:32:00.451] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:32:00.453] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:32:00.479] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:32:00.485] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T00:32:00.507] [INFO] cheese - inserting 1000 documents. first: Template:By-elections to the 38th UK Parliament and last: Dayton–Campbell Historic District -[2018-02-13T00:32:00.599] [INFO] cheese - inserting 1000 documents. first: Bony semicircular canals and last: Wikipedia:Articles for deletion/Honestforum -[2018-02-13T00:32:00.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Deletion sorting/Hockey and last: Wikipedia:Miscellany for deletion/User:Abd/JzG -[2018-02-13T00:32:00.616] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:32:00.677] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:32:00.702] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:32:00.936] [INFO] cheese - inserting 1000 documents. first: Home Park (Atlanta) and last: ⎪ -[2018-02-13T00:32:01.000] [INFO] cheese - inserting 1000 documents. first: Calcipotriene 0.005% and Betamethasone Dipropionate 0.064% Foam and last: Latin Patriarchate of Ethiopia -[2018-02-13T00:32:01.046] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:32:01.096] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:32:01.336] [INFO] cheese - inserting 1000 documents. first: SV Estelle and last: Etang de brouquenat -[2018-02-13T00:32:01.394] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:32:01.427] [INFO] cheese - inserting 1000 documents. first: Ellenbrook (disambiguation) and last: Paul Hufford -[2018-02-13T00:32:01.467] [INFO] cheese - inserting 1000 documents. first: Scapel and last: Hallelujah(Single) -[2018-02-13T00:32:01.478] [INFO] cheese - inserting 1000 documents. first: Viktor Zuckerkandl and last: Jenny Jerome -[2018-02-13T00:32:01.509] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T00:32:01.543] [INFO] cheese - inserting 1000 documents. first: Latin Patriarch of Ethiopia and last: Elshan Rzazade -[2018-02-13T00:32:01.603] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:32:01.607] [INFO] cheese - inserting 1000 documents. first: ⎫ and last: Harukazechan -[2018-02-13T00:32:01.621] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:32:01.634] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:32:01.690] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:32:01.821] [INFO] cheese - inserting 1000 documents. first: List of mammals and last: Greatest Hits III -[2018-02-13T00:32:01.960] [INFO] cheese - batch complete in: 1.475 secs -[2018-02-13T00:32:02.016] [INFO] cheese - inserting 1000 documents. first: Lac de goria and last: Gokū no Daibōken -[2018-02-13T00:32:02.072] [INFO] cheese - inserting 1000 documents. first: Eastern architectural history and last: Lucija Zaninović -[2018-02-13T00:32:02.169] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:02.184] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:32:02.323] [INFO] cheese - inserting 1000 documents. first: Concerti Grossi, Op. 3 (Handel) and last: Johnny Aardvark -[2018-02-13T00:32:02.355] [INFO] cheese - inserting 1000 documents. first: Jogiya (disambiguation) and last: List of power plants in Hong Kong -[2018-02-13T00:32:02.368] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:32:02.370] [INFO] cheese - inserting 1000 documents. first: Maryland Route 304 and last: File:Burdett, Alberta, Canada Location.png -[2018-02-13T00:32:02.436] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:32:02.452] [INFO] cheese - inserting 1000 documents. first: Voss Veksel- og Landmandsbank ASA and last: Pugh's Mill Covered Bridge -[2018-02-13T00:32:02.470] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:32:02.571] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:32:02.834] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in San Luis Obispo County, California and last: Neamblysomus -[2018-02-13T00:32:02.857] [INFO] cheese - inserting 1000 documents. first: File:Madhumati 2013.jpg and last: Escherichia coli endodeoxyribonuclease -[2018-02-13T00:32:02.901] [INFO] cheese - inserting 1000 documents. first: Ferrocarril de Chihuahua al Pacifico and last: Coline Mattel -[2018-02-13T00:32:02.905] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:32:02.945] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:32:02.998] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:32:03.013] [INFO] cheese - inserting 1000 documents. first: Category:Tailless delta-wing aircraft and last: Peace Sign (song) -[2018-02-13T00:32:03.035] [INFO] cheese - inserting 1000 documents. first: Bahurim and last: Churchill, Ontario -[2018-02-13T00:32:03.077] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:32:03.097] [INFO] cheese - inserting 1000 documents. first: Eleutherodactylus gossei and last: Pristimantis serendipitus -[2018-02-13T00:32:03.122] [INFO] cheese - inserting 1000 documents. first: Category:Thai musical instruments and last: Dustbin -[2018-02-13T00:32:03.150] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T00:32:03.183] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:32:03.201] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:32:03.383] [INFO] cheese - inserting 1000 documents. first: Red or black and last: C16H9NO2 -[2018-02-13T00:32:03.427] [INFO] cheese - inserting 1000 documents. first: Template:LDS Temple/Rio de Janeiro Brazil Temple and last: Ames, Iowa metropolitan area -[2018-02-13T00:32:03.433] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:32:03.441] [INFO] cheese - inserting 1000 documents. first: German submarine UC 4 and last: Wikipedia:Sockpuppet investigations/Rave92/Archive -[2018-02-13T00:32:03.499] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:32:03.504] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:32:03.534] [INFO] cheese - inserting 1000 documents. first: Peace Sign (Rick Ross song) and last: Jakub Bargiełowski -[2018-02-13T00:32:03.594] [INFO] cheese - inserting 1000 documents. first: Pristimantis shrevei and last: Physalaemus barbouri -[2018-02-13T00:32:03.597] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:32:03.643] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:32:03.820] [INFO] cheese - inserting 1000 documents. first: Three principles of the people and last: Capital punishment in sri lanka -[2018-02-13T00:32:03.867] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:32:03.876] [INFO] cheese - inserting 1000 documents. first: Gazdunuiyeh and last: United States House of Representatives elections in Maine, 1898 -[2018-02-13T00:32:03.967] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:32:03.971] [INFO] cheese - inserting 1000 documents. first: Nitropyrene and last: Yalegoda -[2018-02-13T00:32:03.971] [INFO] cheese - inserting 1000 documents. first: My Side of Your Window and last: Iodotyrosine deiodinase -[2018-02-13T00:32:04.054] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:32:04.044] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:32:04.234] [INFO] cheese - inserting 1000 documents. first: Physalaemus fuscomaculatus and last: Core (India) -[2018-02-13T00:32:04.236] [INFO] cheese - inserting 1000 documents. first: After Love (1948 film) and last: Wikipedia:Sockpuppet investigations/Taichi1 -[2018-02-13T00:32:04.288] [INFO] cheese - inserting 1000 documents. first: Churchville, Ontario and last: Intercal -[2018-02-13T00:32:04.303] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:04.313] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:32:04.441] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T00:32:04.536] [INFO] cheese - inserting 1000 documents. first: Peerage of England and Ireland in 1350 and last: File:Ceramichill 4.jpg -[2018-02-13T00:32:04.623] [INFO] cheese - inserting 1000 documents. first: Assyrian Religion and last: Wikipedia:Articles for deletion/Axototl -[2018-02-13T00:32:04.628] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:04.713] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:32:04.920] [INFO] cheese - inserting 1000 documents. first: Hettigammedda and last: File:Inca scene vidunderlige kartoffel.png -[2018-02-13T00:32:04.961] [INFO] cheese - inserting 1000 documents. first: File:Lily Allen - The Fear.png and last: Ho-Pei Circuit -[2018-02-13T00:32:04.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Old-time Base Ball articles by quality statistics and last: Scutiger brevipes -[2018-02-13T00:32:04.997] [INFO] cheese - inserting 1000 documents. first: Category:Tucker family and last: Vinda International Holdings -[2018-02-13T00:32:05.012] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T00:32:05.070] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:32:05.099] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:32:05.104] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T00:32:05.202] [INFO] cheese - inserting 1000 documents. first: Payson, Arizona micropolitan area and last: Mazra'eh-ye Shahid Beheshti -[2018-02-13T00:32:05.285] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:32:05.410] [INFO] cheese - inserting 1000 documents. first: Marquee and last: Friedrich Ludwig, Fürst zu Hohenlohe-Ingelfingen -[2018-02-13T00:32:05.494] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:32:05.528] [INFO] cheese - inserting 1000 documents. first: The Del Satins and last: Luzon narrow-mouthed frog -[2018-02-13T00:32:05.573] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:05.578] [INFO] cheese - inserting 1000 documents. first: Ho-pei circuit and last: Hinnanit -[2018-02-13T00:32:05.620] [INFO] cheese - inserting 1000 documents. first: Template:Kaitseväe harjutusväljad and last: Lactarius (Lactariidae) -[2018-02-13T00:32:05.635] [INFO] cheese - inserting 1000 documents. first: International emergency medicine and last: The Moss -[2018-02-13T00:32:05.639] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:32:05.654] [INFO] cheese - inserting 1000 documents. first: List of Lincoln City F.C. players (25-99 appearances) and last: Zbu language -[2018-02-13T00:32:05.686] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:32:05.702] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:32:05.735] [INFO] cheese - batch complete in: 1.294 secs -[2018-02-13T00:32:05.757] [INFO] cheese - inserting 1000 documents. first: Georgia marble and last: Crownies -[2018-02-13T00:32:05.823] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:32:05.920] [INFO] cheese - inserting 1000 documents. first: Kaloula rigida and last: Volcano clawed frog -[2018-02-13T00:32:05.995] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:32:06.011] [INFO] cheese - inserting 1000 documents. first: Bjørkelangen and last: Lockheed weapons scandal -[2018-02-13T00:32:06.087] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/zachimalawi.blogspot.fi and last: Category:Films directed by Robert Bibal -[2018-02-13T00:32:06.109] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:32:06.164] [INFO] cheese - inserting 1000 documents. first: Torn meniscus and last: Category:Gallaudet University people -[2018-02-13T00:32:06.217] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:32:06.254] [INFO] cheese - inserting 1000 documents. first: Showu language and last: Category:1935 in Greek sport -[2018-02-13T00:32:06.338] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:32:06.388] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:32:06.441] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2011 January 15 and last: Harold Hippisley -[2018-02-13T00:32:06.541] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:32:06.599] [INFO] cheese - inserting 1000 documents. first: The Cyclops (film) and last: Category:Treasure troves of Italy -[2018-02-13T00:32:06.748] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:32:06.847] [INFO] cheese - inserting 1000 documents. first: Category:People from Korça and last: Lombard Tuscany -[2018-02-13T00:32:06.903] [INFO] cheese - inserting 1000 documents. first: Ulrich von Brockdorff-Rantzau and last: The Legend Of Zelda: Oracle of Ages -[2018-02-13T00:32:06.921] [INFO] cheese - inserting 1000 documents. first: Desenchantee and last: Wikipedia:Articles for deletion/Monica François -[2018-02-13T00:32:06.948] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:32:07.077] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:32:07.105] [INFO] cheese - batch complete in: 1.37 secs -[2018-02-13T00:32:07.142] [INFO] cheese - inserting 1000 documents. first: Category:1930 in Greek sport and last: UFO sightings in India -[2018-02-13T00:32:07.289] [INFO] cheese - inserting 1000 documents. first: Percival hall and last: Portal:United States Air Force/picture/2009March -[2018-02-13T00:32:07.300] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:32:07.414] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:32:07.459] [INFO] cheese - inserting 1000 documents. first: Kåre Karlsson and last: Katana Divisional Secretariat -[2018-02-13T00:32:07.546] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:32:07.671] [INFO] cheese - inserting 1000 documents. first: Michael Audreson and last: Sanctuary of the Madonna di San Luca -[2018-02-13T00:32:07.760] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:32:07.804] [INFO] cheese - inserting 1000 documents. first: C.K. Colley and last: Category:Pegnitz basin -[2018-02-13T00:32:07.843] [INFO] cheese - inserting 1000 documents. first: Hecla, Kentucky and last: Astoria, Oregon micropolitan area -[2018-02-13T00:32:07.878] [INFO] cheese - inserting 1000 documents. first: Pete Lesperance and last: The Long Arm of Looney Coote -[2018-02-13T00:32:07.890] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:32:07.895] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:32:07.970] [INFO] cheese - inserting 1000 documents. first: Ruta Bloomfield and last: Department of the Environment, Transport and the Regions -[2018-02-13T00:32:08.013] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:32:08.045] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:32:08.331] [INFO] cheese - inserting 1000 documents. first: Phnum Srok District and last: Ptychadena wadei -[2018-02-13T00:32:08.370] [INFO] cheese - inserting 1000 documents. first: Kelaniya Divisional Secretariat and last: Koren Jelila Yal -[2018-02-13T00:32:08.388] [INFO] cheese - inserting 1000 documents. first: Laramie, Wyoming micropolitan area and last: Anton Šoltis -[2018-02-13T00:32:08.419] [INFO] cheese - inserting 1000 documents. first: Last House on the Left and last: Voronoi diagrams -[2018-02-13T00:32:08.420] [INFO] cheese - inserting 1000 documents. first: Category:Merchant ships of Fiji and last: File:EastBayPioneers.png -[2018-02-13T00:32:08.437] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:32:08.449] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:08.499] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T00:32:08.526] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:32:08.609] [INFO] cheese - batch complete in: 1.504 secs -[2018-02-13T00:32:08.699] [INFO] cheese - inserting 1000 documents. first: Fenstock and last: USS Winifred -[2018-02-13T00:32:08.802] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:32:08.840] [INFO] cheese - inserting 1000 documents. first: Derrick Alexander (wide receiver) and last: Dj Friction -[2018-02-13T00:32:08.884] [INFO] cheese - inserting 1000 documents. first: African bullfrog and last: Category:Staurois -[2018-02-13T00:32:08.965] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:32:08.967] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:32:09.174] [INFO] cheese - inserting 1000 documents. first: Trichoclystis peregrina and last: Template:EB1911 poster/sandbox -[2018-02-13T00:32:09.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2015 November 19 and last: Peru at the 2017 World Games -[2018-02-13T00:32:09.243] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:32:09.291] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:32:09.357] [INFO] cheese - inserting 1000 documents. first: Koren Jelila and last: IsDate -[2018-02-13T00:32:09.380] [INFO] cheese - inserting 1000 documents. first: Wörterbuch der ägyptischen Sprache and last: Papua conflict -[2018-02-13T00:32:09.425] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:32:09.471] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T00:32:09.611] [INFO] cheese - inserting 1000 documents. first: Staurois natator and last: Kita-Asahikawa Freight Terminal -[2018-02-13T00:32:09.724] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:32:09.755] [INFO] cheese - inserting 1000 documents. first: Black Lake Dene Nation and last: David C. Steinmetz -[2018-02-13T00:32:09.771] [INFO] cheese - inserting 1000 documents. first: Treaty of San Ildefonse and last: Broadcasting, Entertainment, Cinematograph and Theatre Union -[2018-02-13T00:32:09.805] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:09.845] [INFO] cheese - inserting 1000 documents. first: Club Portugalete and last: Deutsche Volksunion -[2018-02-13T00:32:09.878] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T00:32:09.896] [INFO] cheese - inserting 1000 documents. first: Zhang Chunzhen and last: A4135 -[2018-02-13T00:32:09.970] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:32:09.996] [INFO] cheese - inserting 1000 documents. first: File:TheRaceOfTheTiger.jpg and last: Callum Lancaster -[2018-02-13T00:32:10.027] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:32:10.107] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:32:10.213] [INFO] cheese - inserting 1000 documents. first: Frank Rooney and last: Guadahortuna, Spain -[2018-02-13T00:32:10.251] [INFO] cheese - inserting 1000 documents. first: Category:1977 in Pakistani sport and last: Compagnie des Forges et Chantiers de la Méditerranée -[2018-02-13T00:32:10.278] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:32:10.308] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:10.463] [INFO] cheese - inserting 1000 documents. first: Architects in fiction and last: Thomas Christie -[2018-02-13T00:32:10.539] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:32:10.572] [INFO] cheese - inserting 1000 documents. first: A4138 and last: George C Beresford -[2018-02-13T00:32:10.627] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:32:10.714] [INFO] cheese - inserting 1000 documents. first: Carakale Brewing Company and last: File:Devendra Banhart - Mala.jpg -[2018-02-13T00:32:10.730] [INFO] cheese - inserting 1000 documents. first: List of triumphal arches (provincial) and last: Dvals -[2018-02-13T00:32:10.760] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:32:10.801] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:32:10.826] [INFO] cheese - inserting 1000 documents. first: Q'umirqucha (Q'umir Qucha) and last: Convertible husbandry -[2018-02-13T00:32:10.900] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:32:10.908] [INFO] cheese - inserting 1000 documents. first: Category:People from Porédaka and last: Georgia State Route 342 -[2018-02-13T00:32:10.970] [INFO] cheese - inserting 1000 documents. first: Marist College (disambiguation) and last: Template:Islands of the Clyde -[2018-02-13T00:32:10.971] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:32:11.008] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:32:11.140] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topic outline/Drafts/Topic outline of Samoa and last: Czarne Pustkowie -[2018-02-13T00:32:11.190] [INFO] cheese - inserting 1000 documents. first: Beretta 9000S Type F40 and last: Mohammed Neguib -[2018-02-13T00:32:11.243] [INFO] cheese - inserting 1000 documents. first: Category:Griptonite Games and last: Lucien Ceyssens -[2018-02-13T00:32:11.277] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:32:11.299] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:32:11.328] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T00:32:11.376] [INFO] cheese - inserting 1000 documents. first: Ministry of Communications of Pakistan and last: Sound and Vision India -[2018-02-13T00:32:11.413] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:32:11.421] [INFO] cheese - inserting 1000 documents. first: Jim Cornelison and last: File:Milosevic on Trial.jpg -[2018-02-13T00:32:11.437] [INFO] cheese - inserting 1000 documents. first: Dark Canyon Wilderness and last: Decimal fraction -[2018-02-13T00:32:11.455] [INFO] cheese - inserting 1000 documents. first: Thornburg Middle School and last: Rufous-bellied nighthawk -[2018-02-13T00:32:11.473] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:11.500] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:32:11.558] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:32:11.709] [INFO] cheese - inserting 1000 documents. first: Częstkowo and last: Stara Dąbrowa, Pomeranian Voivodeship -[2018-02-13T00:32:11.717] [INFO] cheese - inserting 1000 documents. first: Category:1965 establishments in Albania and last: File:TheWellTemperedCriticFrye.jpg -[2018-02-13T00:32:11.752] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:32:11.764] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:32:11.820] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Great Eastern Hotel (Kolkata) and last: Petro Atlético Handball -[2018-02-13T00:32:11.852] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:32:11.899] [INFO] cheese - inserting 1000 documents. first: Edinburgh Royal Infirmary and last: Saint Helena petrel -[2018-02-13T00:32:11.932] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:12.027] [INFO] cheese - inserting 1000 documents. first: John Franklin Baker, Jr. and last: Wikipedia:WikiProject Spam/LinkReports/apocalypsesurvivalteam.webs.com -[2018-02-13T00:32:12.098] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:12.106] [INFO] cheese - inserting 1000 documents. first: Olympic Ski jumping and last: New York City Panel for Educational Policy -[2018-02-13T00:32:12.151] [INFO] cheese - inserting 1000 documents. first: Joseph Tobji and last: File:TimeAndChance.jpg -[2018-02-13T00:32:12.185] [INFO] cheese - inserting 1000 documents. first: Husayn Fawzi Alnajjar and last: Toni Bernardó -[2018-02-13T00:32:12.193] [INFO] cheese - inserting 1000 documents. first: Strzyżyno and last: Grigory Helbach -[2018-02-13T00:32:12.204] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:32:12.242] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:32:12.273] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:32:12.336] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:32:12.359] [INFO] cheese - inserting 1000 documents. first: Category:People by place and last: Phyllastrephus cerviniventris -[2018-02-13T00:32:12.428] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:32:12.601] [INFO] cheese - inserting 1000 documents. first: Kornel Ujejski and last: The Merv Griffin Show -[2018-02-13T00:32:12.702] [INFO] cheese - inserting 1000 documents. first: Category:The Boston Globe people and last: Khorol'skiy -[2018-02-13T00:32:12.751] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T00:32:12.787] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:32:12.941] [INFO] cheese - inserting 1000 documents. first: Point defense and last: McLeod Center -[2018-02-13T00:32:12.976] [INFO] cheese - inserting 1000 documents. first: Alocolytoceratinae and last: Category:Hell in a Cell -[2018-02-13T00:32:13.019] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:32:13.004] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:32:13.074] [INFO] cheese - inserting 1000 documents. first: Marjorie Sigley and last: Arnd Peiffer -[2018-02-13T00:32:13.099] [INFO] cheese - inserting 1000 documents. first: Lowland tiny greenbul and last: Mental map -[2018-02-13T00:32:13.141] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:32:13.142] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:32:13.242] [INFO] cheese - inserting 1000 documents. first: Rakovac (Beočin) and last: Kala Savage -[2018-02-13T00:32:13.319] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:32:13.363] [INFO] cheese - inserting 1000 documents. first: Khorol'ski and last: Battle of Seven Oaks (1816) -[2018-02-13T00:32:13.417] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:32:13.472] [INFO] cheese - inserting 1000 documents. first: Shared services agreement and last: Oslo–Gardermoen -[2018-02-13T00:32:13.485] [INFO] cheese - inserting 1000 documents. first: Combined pulmonary fibrosis and emphysema and last: Category:AfC submissions by date/16 November 2009 -[2018-02-13T00:32:13.499] [INFO] cheese - inserting 1000 documents. first: Hvassaleiti and last: Lilac-crowned fruit dove -[2018-02-13T00:32:13.528] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:32:13.527] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:13.565] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:13.597] [INFO] cheese - inserting 1000 documents. first: Nadia Ivonne Lopez and last: Gene Littles -[2018-02-13T00:32:13.628] [INFO] cheese - inserting 1000 documents. first: International political economy and last: Youth work -[2018-02-13T00:32:13.645] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:32:13.696] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T00:32:13.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Juan Gossaín and last: File:Belle Le Grand poster.jpg -[2018-02-13T00:32:13.761] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:32:13.810] [INFO] cheese - inserting 1000 documents. first: Ore no Kanojo and last: Turkmenian Weasel -[2018-02-13T00:32:13.856] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:32:13.899] [INFO] cheese - inserting 1000 documents. first: Ptilinopus rarotongensis and last: Stephen Hytner -[2018-02-13T00:32:13.911] [INFO] cheese - inserting 1000 documents. first: Tâmega river and last: Sleep clock -[2018-02-13T00:32:13.943] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:32:13.955] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/24 November 2009 and last: The Cameron Files: Pharaoh's Curse -[2018-02-13T00:32:13.972] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:32:14.060] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:32:14.119] [INFO] cheese - inserting 1000 documents. first: List of Nigerian jurist and last: Template:Did you know nominations/Gärdslösa Church -[2018-02-13T00:32:14.155] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:32:14.160] [INFO] cheese - inserting 1000 documents. first: David michael maurer and last: 2006 in Swiss music -[2018-02-13T00:32:14.246] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:32:14.310] [INFO] cheese - inserting 1000 documents. first: File:Fire & Movement magazine, 10th anniversary edition, number 49, July-Aug 1986, cover page, Trial of Strength.jpg and last: Dorin Recean -[2018-02-13T00:32:14.355] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:32:14.361] [INFO] cheese - inserting 1000 documents. first: Vitali class and last: Alcippe pyrrhoptera -[2018-02-13T00:32:14.404] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:32:14.485] [INFO] cheese - inserting 1000 documents. first: Vanderkaay and last: Political parties in Dominican Republic -[2018-02-13T00:32:14.538] [INFO] cheese - inserting 1000 documents. first: Joel Bennett and last: Jim Steranko bibliography -[2018-02-13T00:32:14.570] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:32:14.601] [INFO] cheese - inserting 1000 documents. first: Portal:Liquor/Header and last: Adreview -[2018-02-13T00:32:14.662] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:32:14.713] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:32:14.828] [INFO] cheese - inserting 1000 documents. first: Chien Chang and last: Category:Antiques shows in the United States -[2018-02-13T00:32:14.858] [INFO] cheese - inserting 1000 documents. first: Spectacled fulvetta and last: Ray Gabelich -[2018-02-13T00:32:14.875] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:32:14.877] [INFO] cheese - inserting 1000 documents. first: Ella Grasso and last: Adorno family -[2018-02-13T00:32:14.925] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:32:14.966] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T00:32:15.136] [INFO] cheese - inserting 1000 documents. first: List of TIME Magazine's 100 most influential people of the 20th century and last: Syro-Malankarese Catholic Church -[2018-02-13T00:32:15.195] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Chemicals/Log/2009-02-24 and last: Prince of Al Zengi Dynasty -[2018-02-13T00:32:15.202] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwe education navigational boxes and last: Malaysian Australian -[2018-02-13T00:32:15.205] [INFO] cheese - inserting 1000 documents. first: Graceanna Lewis and last: Wikipedia:Articles for deletion/Lewis Nicholls -[2018-02-13T00:32:15.263] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T00:32:15.328] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:32:15.336] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:32:15.323] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:32:15.418] [INFO] cheese - inserting 1000 documents. first: COSPAR ID and last: Snout radical -[2018-02-13T00:32:15.500] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:15.670] [INFO] cheese - inserting 1000 documents. first: Government of Manitoba and last: Campylorhamphus falcularius -[2018-02-13T00:32:15.723] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:32:15.794] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of Mower County, Minnesota and last: ABS-CBN Publishing, Inc. -[2018-02-13T00:32:15.814] [INFO] cheese - inserting 1000 documents. first: German Occupation and last: Smat -[2018-02-13T00:32:15.831] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:32:15.852] [INFO] cheese - inserting 1000 documents. first: Category:1298 establishments in England and last: Dinosaurichnium -[2018-02-13T00:32:15.875] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:32:15.894] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:32:15.909] [INFO] cheese - inserting 1000 documents. first: Portal:Film in the United States/Projects and last: Gulf of Gwadar -[2018-02-13T00:32:15.935] [INFO] cheese - inserting 1000 documents. first: Mike Howlett and last: Fall of France -[2018-02-13T00:32:15.953] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:32:15.977] [INFO] cheese - inserting 1000 documents. first: Greene Washington Caldwell and last: Namhae Chemical Corporation -[2018-02-13T00:32:16.003] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:32:16.030] [INFO] cheese - inserting 1000 documents. first: Campylorhamphus and last: Milos Marić -[2018-02-13T00:32:16.028] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:32:16.101] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:32:16.276] [INFO] cheese - inserting 1000 documents. first: St. Elizabeth Seton School (Naples, Florida) and last: Oklahoma Mansion -[2018-02-13T00:32:16.277] [INFO] cheese - inserting 1000 documents. first: Frances James and last: Cramer V -[2018-02-13T00:32:16.307] [INFO] cheese - inserting 1000 documents. first: Kang Mee-sun and last: File:ITV Hub Logo.png -[2018-02-13T00:32:16.309] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:32:16.311] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:32:16.354] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:16.466] [INFO] cheese - inserting 1000 documents. first: File:Private party album.jpg and last: Template:Did you know nominations/Heroes for Sale (Andy Mineo album) -[2018-02-13T00:32:16.534] [INFO] cheese - inserting 1000 documents. first: Lesser green leafbird and last: Fidelma Healy Eames -[2018-02-13T00:32:16.536] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:32:16.627] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:32:16.652] [INFO] cheese - inserting 1000 documents. first: Football in South Australia and last: Soul Sonic Force -[2018-02-13T00:32:16.708] [INFO] cheese - inserting 1000 documents. first: Cramer V (statistics) and last: Farra Design Center -[2018-02-13T00:32:16.714] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Wilkin County, Minnesota and last: Ireland national rugby league team match results -[2018-02-13T00:32:16.720] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:32:16.758] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:32:16.771] [INFO] cheese - inserting 1000 documents. first: Owen Coffin and last: Hendrickson (disambiguation) -[2018-02-13T00:32:16.775] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:32:16.841] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:32:16.853] [INFO] cheese - inserting 1000 documents. first: Two-seam fastball and last: Cael Sanderson -[2018-02-13T00:32:16.880] [INFO] cheese - inserting 1000 documents. first: Category:Polish South African and last: Category:Wetlands of the Gambia -[2018-02-13T00:32:16.926] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:32:16.957] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:32:17.027] [INFO] cheese - inserting 1000 documents. first: Radomil River and last: Cpuz -[2018-02-13T00:32:17.084] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:32:17.159] [INFO] cheese - inserting 1000 documents. first: Charles Morgan Williams and last: Minuscule 819 (Gregory-Aland) -[2018-02-13T00:32:17.184] [INFO] cheese - inserting 1000 documents. first: Category:People from Ennedi-Ouest Region and last: Isopogon uncinatus -[2018-02-13T00:32:17.208] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:32:17.232] [INFO] cheese - inserting 1000 documents. first: Dynamic data and last: Palais Mollard-Clary -[2018-02-13T00:32:17.240] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:32:17.268] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic groups in Pittsburgh and last: Cerro Sentilo -[2018-02-13T00:32:17.304] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:32:17.318] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:32:17.352] [INFO] cheese - inserting 1000 documents. first: Hb S and last: Category:21st century in Zagreb -[2018-02-13T00:32:17.401] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:32:17.522] [INFO] cheese - inserting 1000 documents. first: Delichon nipalense and last: Euneornis campestris -[2018-02-13T00:32:17.627] [INFO] cheese - inserting 1000 documents. first: Essex Church and last: File:Secondary Music School in Tuzla.jpg -[2018-02-13T00:32:17.649] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:32:17.690] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:32:17.709] [INFO] cheese - inserting 1000 documents. first: Job Shadowing and last: August Imgard -[2018-02-13T00:32:17.746] [INFO] cheese - inserting 1000 documents. first: Zuph and last: Sacix -[2018-02-13T00:32:17.750] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:17.752] [INFO] cheese - inserting 1000 documents. first: Category:Women philatelists and last: Draft:Ninth generation of video game consoles -[2018-02-13T00:32:17.802] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:17.816] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:32:17.826] [INFO] cheese - inserting 1000 documents. first: Bert Boeckmann and last: Atatürk Int'l Airport -[2018-02-13T00:32:17.855] [INFO] cheese - inserting 1000 documents. first: Lump In My Throat and last: File:Treebeard.jpg -[2018-02-13T00:32:17.877] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:32:17.924] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:32:17.992] [INFO] cheese - inserting 1000 documents. first: Euneornis and last: Smoke screening -[2018-02-13T00:32:18.051] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:32:18.123] [INFO] cheese - inserting 1000 documents. first: Category:1950s in Iceland and last: The Seventh Curse (film) -[2018-02-13T00:32:18.170] [INFO] cheese - inserting 1000 documents. first: Boston Bombings and last: Absaroka (state) -[2018-02-13T00:32:18.176] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:32:18.193] [INFO] cheese - inserting 1000 documents. first: Fulvio Caccia and last: Wikipedia:Reference desk/Archives/Computing/2015 November 25 -[2018-02-13T00:32:18.225] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:32:18.264] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:18.342] [INFO] cheese - inserting 1000 documents. first: Ataturk Int'l Airport and last: File:BurgerTime arcadeflyer.png -[2018-02-13T00:32:18.381] [INFO] cheese - inserting 1000 documents. first: LUCT and last: Black-and-rufous swallow -[2018-02-13T00:32:18.399] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:32:18.422] [INFO] cheese - inserting 1000 documents. first: Ү and last: List of tropical cyclone spawned tornadoes -[2018-02-13T00:32:18.421] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:32:18.496] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:18.609] [INFO] cheese - inserting 1000 documents. first: Stanley Cowie and last: National Register of Historic Places listings in Clinton County, Michigan -[2018-02-13T00:32:18.636] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2015 December 2 and last: Category:Sunset Boulevard (Los Angeles) -[2018-02-13T00:32:18.660] [INFO] cheese - inserting 1000 documents. first: Category:American female serial killers and last: Recife Dollabarat -[2018-02-13T00:32:18.704] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:32:18.707] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:32:18.769] [INFO] cheese - inserting 1000 documents. first: BB&T Ballpark at Historic Bowman Field and last: GNB -[2018-02-13T00:32:18.796] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:18.897] [INFO] cheese - inserting 1000 documents. first: Hirundo nigrorufa and last: Drake (elm cultivar) -[2018-02-13T00:32:18.911] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:32:18.980] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:32:18.983] [INFO] cheese - inserting 1000 documents. first: Birgitta Johansson and last: Richard Enslen -[2018-02-13T00:32:19.098] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:32:19.308] [INFO] cheese - inserting 1000 documents. first: David Higgins (composer) and last: Luxembourg National Division -[2018-02-13T00:32:19.375] [INFO] cheese - inserting 1000 documents. first: Oakview and last: Abatski -[2018-02-13T00:32:19.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple chlorpromazine and last: Category:People from Lacs District -[2018-02-13T00:32:19.393] [INFO] cheese - inserting 1000 documents. first: List of Michigan State Historic Sites in Clinton County and last: Pinyon Canyon Maneuver Site -[2018-02-13T00:32:19.393] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:32:19.463] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:32:19.497] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:32:19.510] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:32:19.569] [INFO] cheese - inserting 1000 documents. first: Richard Gholson and last: Category:Valleys of South Africa -[2018-02-13T00:32:19.644] [INFO] cheese - inserting 1000 documents. first: Albert runcorn and last: Category:B-Class Low-importance Pornography articles -[2018-02-13T00:32:19.654] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:32:19.696] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:32:19.822] [INFO] cheese - inserting 1000 documents. first: Lolth and last: Western front -[2018-02-13T00:32:19.872] [INFO] cheese - inserting 1000 documents. first: Eric B. Minier and last: Seven years’ war -[2018-02-13T00:32:19.880] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:32:19.907] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:32:19.918] [INFO] cheese - inserting 1000 documents. first: Abatskii and last: Pepdidyl carboxyamidase -[2018-02-13T00:32:19.955] [INFO] cheese - inserting 1000 documents. first: Bromley Rock Provincial Park and last: Ja'afar Abdul El Hakh -[2018-02-13T00:32:19.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Freud and Religion and last: Cowper ministry (1870) -[2018-02-13T00:32:19.967] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:32:19.974] [INFO] cheese - inserting 1000 documents. first: Huon melidectes and last: Myioborus pariae -[2018-02-13T00:32:20.005] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:32:20.009] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:32:20.030] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:32:20.069] [INFO] cheese - inserting 1000 documents. first: File:Shimkent hôtel poster.jpg and last: Rector (college) -[2018-02-13T00:32:20.121] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:32:20.333] [INFO] cheese - inserting 1000 documents. first: Beach starwort and last: 2014 CS Warsaw Cup -[2018-02-13T00:32:20.373] [INFO] cheese - inserting 1000 documents. first: Baird's flycatcher and last: Nectarinia thomensis -[2018-02-13T00:32:20.436] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:32:20.451] [INFO] cheese - inserting 1000 documents. first: Bidan, Kuhbanan and last: Category:Fichtel Mountains -[2018-02-13T00:32:20.479] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:20.607] [INFO] cheese - inserting 1000 documents. first: Mohamed Kassas and last: Yin Ts'ang -[2018-02-13T00:32:20.651] [INFO] cheese - inserting 1000 documents. first: James Boswell (disambiguation) and last: File:Donwinslowof1.jpg -[2018-02-13T00:32:20.682] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:20.724] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:32:20.761] [INFO] cheese - inserting 1000 documents. first: Gastrophryne and last: Status of Women Canada -[2018-02-13T00:32:20.765] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:32:20.869] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:32:20.982] [INFO] cheese - inserting 1000 documents. first: Imperial pint and last: The Buzz -[2018-02-13T00:32:21.093] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T00:32:21.166] [INFO] cheese - inserting 1000 documents. first: Ursula's sunbird and last: Honor Code (NCIS) -[2018-02-13T00:32:21.214] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:32:21.262] [INFO] cheese - inserting 1000 documents. first: Avalon Landing and last: Wikipedia:Suspected copyright violations/2011-01-25 -[2018-02-13T00:32:21.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Close and last: Sociotechnical -[2018-02-13T00:32:21.329] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:32:21.365] [INFO] cheese - inserting 1000 documents. first: 2016 Hobart International and last: Category:Sub-prefectures of Nawa Region -[2018-02-13T00:32:21.374] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:32:21.449] [INFO] cheese - inserting 1000 documents. first: Conoppia palmicinctum and last: File:PoultryBTS.jpg -[2018-02-13T00:32:21.504] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T00:32:21.551] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:32:21.600] [INFO] cheese - inserting 1000 documents. first: Metropolitan Police Act 1839 and last: Arkansas razorback -[2018-02-13T00:32:21.715] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:32:21.786] [INFO] cheese - inserting 1000 documents. first: Valea Boului River (Vasilatu) and last: Lorzem -[2018-02-13T00:32:21.852] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:32:21.989] [INFO] cheese - inserting 1000 documents. first: Socio-technical and last: File:MapleCore Company Logo in Red.jpg -[2018-02-13T00:32:21.996] [INFO] cheese - inserting 1000 documents. first: Venus (Belgian band) and last: Category:Beer brewing companies based in Utah -[2018-02-13T00:32:22.002] [INFO] cheese - inserting 1000 documents. first: Bill Cahr and last: Sanxia Old Street -[2018-02-13T00:32:22.076] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:22.082] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:32:22.079] [INFO] cheese - inserting 1000 documents. first: Thai Border Patrol Police and last: Forever Mery -[2018-02-13T00:32:22.116] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:32:22.158] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:32:22.238] [INFO] cheese - inserting 1000 documents. first: Lombardi Trophy and last: Felipe Massa -[2018-02-13T00:32:22.357] [INFO] cheese - batch complete in: 1.264 secs -[2018-02-13T00:32:22.394] [INFO] cheese - inserting 1000 documents. first: Phrygilus dorsalis and last: Spot-breasted scimitar babbler -[2018-02-13T00:32:22.434] [INFO] cheese - inserting 1000 documents. first: File:Interior of Biosphere 2.jpg and last: October 31, 2004 -[2018-02-13T00:32:22.459] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:32:22.535] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:32:22.597] [INFO] cheese - inserting 1000 documents. first: PMPC Star Award for Best Drama Actor and Actress and last: Category:Portugal government stubs -[2018-02-13T00:32:22.612] [INFO] cheese - inserting 1000 documents. first: Joseph Eron Irenas and last: Tunable resistive pulse sensing -[2018-02-13T00:32:22.648] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:22.666] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:32:22.736] [INFO] cheese - inserting 1000 documents. first: County roads in Ontario and last: Płowce, Warmian-Masurian Voivodeship -[2018-02-13T00:32:22.797] [INFO] cheese - inserting 1000 documents. first: WQBC and last: Wikipedia:London Gazette Index/16/1676 -[2018-02-13T00:32:22.814] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:32:22.875] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:32:22.941] [INFO] cheese - inserting 1000 documents. first: Suyai Steinhaue and last: MediaWiki:HighlightEditSections.js -[2018-02-13T00:32:22.992] [INFO] cheese - inserting 1000 documents. first: Angelo Cannavacciuolo and last: Thomas Gerald Pickavance -[2018-02-13T00:32:23.020] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:32:23.076] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:32:23.229] [INFO] cheese - inserting 1000 documents. first: To Young Men Only and last: R536 road (South Africa) -[2018-02-13T00:32:23.283] [INFO] cheese - inserting 1000 documents. first: Eu four freedoms and last: Gunkanjima -[2018-02-13T00:32:23.322] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:32:23.405] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:32:23.415] [INFO] cheese - inserting 1000 documents. first: Rogale, Ełk County and last: File:UMPIRING AT THE OLD TRAFFORD .jpg -[2018-02-13T00:32:23.516] [INFO] cheese - inserting 1000 documents. first: Möbius mu function and last: Interstate 696 -[2018-02-13T00:32:23.611] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:32:23.667] [INFO] cheese - inserting 1000 documents. first: File:A Day Late and a Dollar Short (The Queers album - cover art).jpg and last: Category:Central Coast, New South Wales geography stubs -[2018-02-13T00:32:23.687] [INFO] cheese - batch complete in: 1.329 secs -[2018-02-13T00:32:23.758] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:32:23.802] [INFO] cheese - inserting 1000 documents. first: Bridgeport, Montgomery County, Pennsylvania and last: No. 101 Squadron IAF -[2018-02-13T00:32:23.895] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:32:23.948] [INFO] cheese - inserting 1000 documents. first: Category:1698 in music and last: Olombelona Ricky -[2018-02-13T00:32:24.003] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:32:24.092] [INFO] cheese - inserting 1000 documents. first: 2004 Tercera División play-offs and last: Category:1609 establishments by country -[2018-02-13T00:32:24.111] [INFO] cheese - inserting 1000 documents. first: Damian Johnson (broadcaster) and last: Digital Britain -[2018-02-13T00:32:24.132] [INFO] cheese - inserting 1000 documents. first: File:Port modification.JPG and last: Northern red currant -[2018-02-13T00:32:24.166] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T00:32:24.181] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:32:24.228] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:32:24.258] [INFO] cheese - inserting 1000 documents. first: Template:CentralCoastNSW-geo-stub and last: Borivoje Djordjević -[2018-02-13T00:32:24.328] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:32:24.349] [INFO] cheese - inserting 1000 documents. first: Mlecchita vikalpa and last: File:2005 IIHF World Championship logo.svg -[2018-02-13T00:32:24.498] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:32:24.518] [INFO] cheese - inserting 1000 documents. first: Like Father Like Son (film) and last: Category:21st-century executions by Arkansas -[2018-02-13T00:32:24.599] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:32:24.632] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg Conservatory and last: Hawk (aircraft) -[2018-02-13T00:32:24.765] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:32:24.776] [INFO] cheese - inserting 1000 documents. first: File:Prime Cuts Peter Lang.jpg and last: Lira Calabrese -[2018-02-13T00:32:24.838] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:32:24.851] [INFO] cheese - inserting 1000 documents. first: 嵇康 and last: Category:People from Miaoli County -[2018-02-13T00:32:24.863] [INFO] cheese - inserting 1000 documents. first: Papuan scrubwren and last: Syndactyla guttulata -[2018-02-13T00:32:24.909] [INFO] cheese - inserting 1000 documents. first: Hans ferlitsch and last: Shah of Bratpuhr -[2018-02-13T00:32:24.939] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:32:24.959] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:32:24.983] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:32:24.985] [INFO] cheese - inserting 1000 documents. first: Category:1932–33 in Turkish football and last: Chlorolestes nylephtha -[2018-02-13T00:32:25.023] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:25.099] [INFO] cheese - inserting 1000 documents. first: 1993 Kazakhstan Cup Final and last: Wikipedia:Wiki Ed/Connecticut College/The Net Generation (fall 2015) -[2018-02-13T00:32:25.181] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:32:25.295] [INFO] cheese - inserting 1000 documents. first: Toltec cotton rat and last: Linwood, Howard County, Maryland -[2018-02-13T00:32:25.350] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:32:25.435] [INFO] cheese - inserting 1000 documents. first: Category:Straits of Papua New Guinea and last: Sulawesi babbler -[2018-02-13T00:32:25.444] [INFO] cheese - inserting 1000 documents. first: 1976 Liberty Bowl and last: Junior Bowl -[2018-02-13T00:32:25.500] [INFO] cheese - inserting 1000 documents. first: Paul Johnson (politician) and last: Thomaston, GA Micropolitan Statistical Area -[2018-02-13T00:32:25.500] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:32:25.524] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:32:25.566] [INFO] cheese - inserting 1000 documents. first: Julia Stegner and last: Steeplecab -[2018-02-13T00:32:25.568] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:32:25.631] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:32:25.648] [INFO] cheese - inserting 1000 documents. first: Norman Nicholson and last: Papilio rutulus -[2018-02-13T00:32:25.728] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:32:25.743] [INFO] cheese - inserting 1000 documents. first: The Free Rider Problem and last: XHES-FM -[2018-02-13T00:32:25.808] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:32:25.818] [INFO] cheese - inserting 1000 documents. first: Xfm UK and last: Wikipedia:Peer review/Cleveland Indians/archive3 -[2018-02-13T00:32:25.888] [INFO] cheese - inserting 1000 documents. first: Trichastoma celebense and last: Starship Children's Hospital -[2018-02-13T00:32:25.888] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:32:25.911] [INFO] cheese - inserting 1000 documents. first: Grow Up (Paramore song) and last: Constituency NA-222 -[2018-02-13T00:32:25.930] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:32:25.946] [INFO] cheese - inserting 1000 documents. first: CD Arenas de Frajanas and last: Wikipedia:WikiProject Food and drink/Beverages Task Force/WikiProject Coca-Cola/Article alerts/Archive -[2018-02-13T00:32:25.970] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:32:26.040] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:32:26.115] [INFO] cheese - inserting 1000 documents. first: The Lord of the Rings: the Battle for Middle-Earth II and last: Clare Tomlinson -[2018-02-13T00:32:26.180] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:32:26.296] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2007 July 24 and last: Geometric Style -[2018-02-13T00:32:26.339] [INFO] cheese - inserting 1000 documents. first: Template:Series and sequence and last: NewtonThree -[2018-02-13T00:32:26.354] [INFO] cheese - inserting 1000 documents. first: Cadbury Eyebrows and last: Ramlat al-Sab'atayn -[2018-02-13T00:32:26.355] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:32:26.358] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Luke Castellan and last: Nutrition Education -[2018-02-13T00:32:26.400] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:32:26.427] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:32:26.441] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:26.499] [INFO] cheese - inserting 1000 documents. first: Phoenix (East Indiaman) and last: Wikipedia:Articles for deletion/Car dealer fraud -[2018-02-13T00:32:26.569] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:32:26.640] [INFO] cheese - inserting 1000 documents. first: Breithorn and last: Wikipedia:Incomplete lists -[2018-02-13T00:32:26.747] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T00:32:26.804] [INFO] cheese - inserting 1000 documents. first: Piculus leucolaemus and last: Tight End Ed / 'Tween a Rock & an Ed Place -[2018-02-13T00:32:26.806] [INFO] cheese - inserting 1000 documents. first: Working condition and last: C1 Hours of Work (Industry) Convention, 1919 -[2018-02-13T00:32:26.858] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:32:26.865] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:32:26.951] [INFO] cheese - inserting 1000 documents. first: List of nations by population density and last: Wikipedia:Miscellany for deletion/User:Mlindstr/Outcast -[2018-02-13T00:32:26.961] [INFO] cheese - inserting 1000 documents. first: Spotted Horse (disambiguation) and last: Wilhelm Gerstenmeier -[2018-02-13T00:32:27.003] [INFO] cheese - inserting 1000 documents. first: Robert Sampson (lawyer) and last: Olorgesailie -[2018-02-13T00:32:27.018] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:32:27.031] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:32:27.092] [INFO] cheese - inserting 1000 documents. first: Republican Party presidential primaries, 1956 and last: Wahluke -[2018-02-13T00:32:27.115] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:32:27.173] [INFO] cheese - inserting 1000 documents. first: Zell, Upper Franconia and last: Appropriation Act 1820 -[2018-02-13T00:32:27.186] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:32:27.217] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:32:27.367] [INFO] cheese - inserting 1000 documents. first: San Marino Stadium and last: Athenee Palace Hilton Hotel -[2018-02-13T00:32:27.395] [INFO] cheese - inserting 1000 documents. first: Category:Cricket grounds in the Maldives and last: Mundus, diabolus, et caro -[2018-02-13T00:32:27.414] [INFO] cheese - inserting 1000 documents. first: Classic Warfare and last: Sanal kumar sasidharan -[2018-02-13T00:32:27.414] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:32:27.447] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:32:27.481] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:32:27.604] [INFO] cheese - inserting 1000 documents. first: One If by Land (Jericho episodes) and last: Bristly Ox-Tongue -[2018-02-13T00:32:27.656] [INFO] cheese - inserting 1000 documents. first: Eureka Flag and last: The Surgeon's Mate (novel) -[2018-02-13T00:32:27.681] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:32:27.692] [INFO] cheese - inserting 1000 documents. first: Appropriation Act 1821 and last: My Ladye Nevell's Booke -[2018-02-13T00:32:27.759] [INFO] cheese - inserting 1000 documents. first: Category:Egyptologist stubs and last: President (TV series) -[2018-02-13T00:32:27.770] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:27.787] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T00:32:27.846] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:27.877] [INFO] cheese - inserting 1000 documents. first: Mundus, diabolus et caro and last: Gilroy (surname) -[2018-02-13T00:32:27.935] [INFO] cheese - inserting 1000 documents. first: An off day game and last: Jim Evans (wide receiver) -[2018-02-13T00:32:27.962] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:32:27.982] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:32:28.117] [INFO] cheese - inserting 1000 documents. first: WCBS-TV/WCBSDT and last: Washington Legal Foundation -[2018-02-13T00:32:28.218] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:32:28.262] [INFO] cheese - inserting 1000 documents. first: Bristly Oxtongue and last: List of Billboard number-one country albums of 2004 -[2018-02-13T00:32:28.334] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:32:28.360] [INFO] cheese - inserting 1000 documents. first: La Fère and last: James 'Jim' King -[2018-02-13T00:32:28.412] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:32:28.413] [INFO] cheese - inserting 1000 documents. first: Pedro Téllez-Girón y Velasco Guzmán y Tovar and last: Connor Wilkinson -[2018-02-13T00:32:28.426] [INFO] cheese - inserting 1000 documents. first: Thomas Harcourt Ambrose Valintine and last: Ron Shuval -[2018-02-13T00:32:28.446] [INFO] cheese - inserting 1000 documents. first: Seyval Blanc and last: Edward Scanlon -[2018-02-13T00:32:28.481] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:32:28.488] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:32:28.509] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:32:28.719] [INFO] cheese - inserting 1000 documents. first: The Nutmeg of Consolation (novel) and last: Ain't Misbehaving -[2018-02-13T00:32:28.797] [INFO] cheese - inserting 1000 documents. first: Ceriani and last: Carlos Silva (hurdler) -[2018-02-13T00:32:28.800] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T00:32:28.846] [INFO] cheese - inserting 1000 documents. first: Eddie Miro and last: Sandwell and West Birmingham Hospitals NHS Trust -[2018-02-13T00:32:28.857] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:28.889] [INFO] cheese - inserting 1000 documents. first: Delia Linsey King and last: File:Lost Control Cover.jpg -[2018-02-13T00:32:28.912] [INFO] cheese - inserting 1000 documents. first: Icelandic Santas and last: Roman Catholic Diocese of Cerreto Sannita -[2018-02-13T00:32:28.933] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:28.964] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:32:28.974] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:28.994] [INFO] cheese - inserting 1000 documents. first: File:FlemingsSteakhouse.png and last: Category:Cemeteries on the National Register of Historic Places in Indiana -[2018-02-13T00:32:29.033] [INFO] cheese - inserting 1000 documents. first: Template:East Lindsey (district) and last: CVAS, Jhang -[2018-02-13T00:32:29.064] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:32:29.095] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:32:29.440] [INFO] cheese - inserting 1000 documents. first: Aanpavam (TV series) and last: Hairy white oldfield aster -[2018-02-13T00:32:29.448] [INFO] cheese - inserting 1000 documents. first: Qinghua Daxue Fushu Zhongxue and last: File:Dixon IL ICRR First St Bridge1.jpg -[2018-02-13T00:32:29.466] [INFO] cheese - inserting 1000 documents. first: Philip of Nevers and last: Augustus Bartholomew -[2018-02-13T00:32:29.499] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:32:29.518] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:32:29.522] [INFO] cheese - inserting 1000 documents. first: Milwaukee Mustangs (1994-2001) and last: Andreas Meyer (civil engineer) -[2018-02-13T00:32:29.561] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:32:29.600] [INFO] cheese - inserting 1000 documents. first: Hail To The Chief and last: Vodyanoi -[2018-02-13T00:32:29.609] [INFO] cheese - inserting 1000 documents. first: Suzanne Coupal and last: Othman Aziz -[2018-02-13T00:32:29.630] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:32:29.687] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:32:29.698] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:32:29.780] [INFO] cheese - inserting 1000 documents. first: Aquakinisis and last: Advice Goddess -[2018-02-13T00:32:29.886] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T00:32:30.017] [INFO] cheese - inserting 1000 documents. first: 2015–16 Central Arkansas Bears men's basketball team and last: Wikipedia:Today's featured article/December 24, 2015 -[2018-02-13T00:32:30.031] [INFO] cheese - inserting 1000 documents. first: File:Cross of Gisulf, 7th century.jpg and last: Template:Widereceiver-1910s-stub -[2018-02-13T00:32:30.083] [INFO] cheese - inserting 1000 documents. first: K Street (District of Columbia) and last: David of Basra -[2018-02-13T00:32:30.117] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:32:30.151] [INFO] cheese - inserting 1000 documents. first: Category:Executed people from South Yorkshire and last: File:Main-Radweg Logo.svg -[2018-02-13T00:32:30.168] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:32:30.170] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:32:30.220] [INFO] cheese - inserting 1000 documents. first: Linguistic functions of pharynx and last: Markaszek -[2018-02-13T00:32:30.239] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:32:30.294] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:32:30.524] [INFO] cheese - inserting 1000 documents. first: Spec 4 and last: W.O. Kuhne -[2018-02-13T00:32:30.641] [INFO] cheese - inserting 1000 documents. first: The Atlas Abbey and last: Hamlet! -[2018-02-13T00:32:30.662] [INFO] cheese - inserting 1000 documents. first: CT Floquet and last: HH Hilton -[2018-02-13T00:32:30.673] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:32:30.714] [INFO] cheese - inserting 1000 documents. first: Gibichung and last: Lisp (language) -[2018-02-13T00:32:30.709] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:32:30.761] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:32:30.787] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:32:30.843] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Best Of UWF and last: Wikipedia:WikiProject National Register of Historic Places/Theatres -[2018-02-13T00:32:30.845] [INFO] cheese - inserting 1000 documents. first: Orville Faubus and last: Clifford Jarvis -[2018-02-13T00:32:30.852] [INFO] cheese - inserting 1000 documents. first: List of accolades received by Frida and last: Wikipedia:Articles for deletion/Nicholas Hagger (2nd nomination) -[2018-02-13T00:32:30.894] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:32:30.895] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:32:30.949] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T00:32:31.113] [INFO] cheese - inserting 1000 documents. first: Category:Polish black-and-white films and last: Category:Philippine speculative fiction -[2018-02-13T00:32:31.162] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:32:31.167] [INFO] cheese - inserting 1000 documents. first: Jimmy Phillips (Texas) and last: Pandjeh Incident -[2018-02-13T00:32:31.210] [INFO] cheese - inserting 1000 documents. first: Packet Processing and last: Dal'eh Heydar -[2018-02-13T00:32:31.218] [INFO] cheese - inserting 1000 documents. first: 95.7 MAX-FM and last: Pattern Variables -[2018-02-13T00:32:31.218] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:32:31.255] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:32:31.266] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:32:31.335] [INFO] cheese - inserting 1000 documents. first: Willingtown Square and last: File:FrontSuperSabrina.jpg -[2018-02-13T00:32:31.339] [INFO] cheese - inserting 1000 documents. first: Category:Bridges on the National Register of Historic Places in Pennsylvania and last: European Revolution of 1848 -[2018-02-13T00:32:31.379] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:32:31.412] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:32:31.600] [INFO] cheese - inserting 1000 documents. first: Ghal'eh Heidar and last: Endomondo -[2018-02-13T00:32:31.617] [INFO] cheese - inserting 1000 documents. first: Atrial Fluter and last: Procolobus verus -[2018-02-13T00:32:31.626] [INFO] cheese - inserting 1000 documents. first: Category:Mountains and hills of the Eifel (North Rhine-Westphalia) and last: Koosharem Junction, Utah -[2018-02-13T00:32:31.631] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:32:31.689] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:32:31.730] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:32:31.819] [INFO] cheese - inserting 1000 documents. first: European Revolutions of 1848 and last: Category:1869 establishments in Wales -[2018-02-13T00:32:31.838] [INFO] cheese - inserting 1000 documents. first: One Piece: Romance Dawn Story and last: Kurashima Ayumi -[2018-02-13T00:32:31.853] [INFO] cheese - inserting 1000 documents. first: Kemijärvi and last: Arcadia (disambiguation) -[2018-02-13T00:32:31.855] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:32:31.862] [INFO] cheese - inserting 1000 documents. first: Royden Park and last: Sandycreek -[2018-02-13T00:32:31.879] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:32:31.921] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:32:31.927] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:32:32.089] [INFO] cheese - inserting 1000 documents. first: Recognition of same-sex unions in the British Indian Ocean Territory and last: Template:Inter-county hurlers category -[2018-02-13T00:32:32.204] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:32:32.237] [INFO] cheese - inserting 1000 documents. first: File:The Groovenians title card.png and last: Category:Philippine anthology films -[2018-02-13T00:32:32.259] [INFO] cheese - inserting 1000 documents. first: Category:Hydrocarbon solvents and last: Exilisciurus concinnus -[2018-02-13T00:32:32.306] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:32:32.328] [INFO] cheese - inserting 1000 documents. first: William Elphinstone Gordon and last: Wikipedia:WikiProject Smithsonian Institution-related -[2018-02-13T00:32:32.354] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:32:32.374] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:32:32.538] [INFO] cheese - inserting 1000 documents. first: Ebert-groener deal and last: Bangladesh Shishu Academy -[2018-02-13T00:32:32.607] [INFO] cheese - inserting 1000 documents. first: Baryshski and last: Template:Latin Extended-A -[2018-02-13T00:32:32.607] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:32:32.657] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:32:32.686] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Chandavaram Buddhist site and last: Category:Works about monarchs -[2018-02-13T00:32:32.735] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:32:32.751] [INFO] cheese - inserting 1000 documents. first: Phyllis George and last: Hsü Shih-Ch'ang -[2018-02-13T00:32:32.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of legislation sponsored by Ron Paul and last: Arnold, Illinois -[2018-02-13T00:32:32.804] [INFO] cheese - inserting 1000 documents. first: Exilisciurus and last: File:Wsop logo.png -[2018-02-13T00:32:32.848] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T00:32:32.891] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:32:32.929] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:32:33.130] [INFO] cheese - inserting 1000 documents. first: Incoherent broad band cavity enhanced absorption spectroscopy and last: El Pelon -[2018-02-13T00:32:33.190] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:32:33.216] [INFO] cheese - inserting 1000 documents. first: The Big Lebowsky and last: Munster Schools Rugby Senior Cup -[2018-02-13T00:32:33.282] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:32:33.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/siteresources.worldbank.org and last: The College of Engineering Scinces at sudan university -[2018-02-13T00:32:33.359] [INFO] cheese - inserting 1000 documents. first: HartCommon and last: Category:Generals under Liu Bei -[2018-02-13T00:32:33.392] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:33.401] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lightning Scientific Martial Arts and Physical Culture and last: Category:Mid-importance Batman articles -[2018-02-13T00:32:33.408] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:32:33.466] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:32:33.536] [INFO] cheese - inserting 1000 documents. first: Mickey Rooney Award and last: Inkaar (1943 film) -[2018-02-13T00:32:33.570] [INFO] cheese - inserting 1000 documents. first: Miyaji Masayuki and last: Nancy Padian -[2018-02-13T00:32:33.593] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:32:33.684] [INFO] cheese - batch complete in: 1.805 secs -[2018-02-13T00:32:33.733] [INFO] cheese - inserting 1000 documents. first: Hsü Shihch'ang and last: Pu Chou Mountain -[2018-02-13T00:32:33.756] [INFO] cheese - inserting 1000 documents. first: David Barrett (football player) and last: John Bock -[2018-02-13T00:32:33.766] [INFO] cheese - inserting 1000 documents. first: Vostochno-Prinovozemelskoye structure and last: Mike Ross -[2018-02-13T00:32:33.801] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:32:33.807] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:32:33.831] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T00:32:33.890] [INFO] cheese - inserting 1000 documents. first: Parliamentary Ombudsman and last: Patrick W. Welch -[2018-02-13T00:32:33.998] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:32:34.146] [INFO] cheese - inserting 1000 documents. first: Assa (river) and last: Scottish Boat Race -[2018-02-13T00:32:34.202] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:32:34.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SAY and last: Category:World War I shipwrecks in the Aegean Sea -[2018-02-13T00:32:34.295] [INFO] cheese - inserting 1000 documents. first: George Wilkins Kendall and last: Wikipedia:Articles for deletion/Alexander Domijan -[2018-02-13T00:32:34.326] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:32:34.348] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:32:34.352] [INFO] cheese - inserting 1000 documents. first: Gerardo Allucingoli and last: Blood-colored Woodpecker -[2018-02-13T00:32:34.426] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:34.436] [INFO] cheese - inserting 1000 documents. first: Mobil Cotton Bowl Classic and last: Shah, Al Gharbia -[2018-02-13T00:32:34.502] [INFO] cheese - inserting 1000 documents. first: Keshtu'iyeh and last: Defamation Bill 2012-13 -[2018-02-13T00:32:34.531] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T00:32:34.595] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:32:34.725] [INFO] cheese - inserting 1000 documents. first: List of geological features on Rhea and last: Telcordia LERG Routing Guide -[2018-02-13T00:32:34.777] [INFO] cheese - inserting 1000 documents. first: Maracaibo Lake (Bolivia) and last: Wikipedia:Articles for deletion/Geoffrey Martin (Australian mathematician) -[2018-02-13T00:32:34.779] [INFO] cheese - inserting 1000 documents. first: Dompfeil and last: Wikipedia:Articles for deletion/Seven Society, Order of the Crown and Dagger -[2018-02-13T00:32:34.791] [INFO] cheese - inserting 1000 documents. first: Crocidura flavescens and last: Second Fußball-Bundesliga 1986/87 -[2018-02-13T00:32:34.796] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:32:34.820] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:32:34.858] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:32:34.866] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:32:34.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Life Begins at 40 (Novel) and last: Template:Taxonomy/Ommastrephinae -[2018-02-13T00:32:34.928] [INFO] cheese - inserting 1000 documents. first: Warped Tour 2013 Tour Compilation and last: Mouftaou -[2018-02-13T00:32:34.967] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:32:34.984] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:32:34.994] [INFO] cheese - inserting 1000 documents. first: Old Coley and last: List of songs recorded by Metallica -[2018-02-13T00:32:35.063] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:32:35.275] [INFO] cheese - inserting 1000 documents. first: News and Notes and last: Hipposideros caffer -[2018-02-13T00:32:35.312] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:32:35.377] [INFO] cheese - inserting 1000 documents. first: Bl. Alanus de Rupe and last: Jacob Dingee House -[2018-02-13T00:32:35.389] [INFO] cheese - inserting 1000 documents. first: El Adoua and last: Elizabeth Burgin -[2018-02-13T00:32:35.430] [INFO] cheese - inserting 1000 documents. first: Category:Journalists from Prince Edward Island and last: Harrison HS -[2018-02-13T00:32:35.435] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:32:35.437] [INFO] cheese - inserting 1000 documents. first: Salicylic acid (plant hormone) and last: List of Perth suburbs -[2018-02-13T00:32:35.443] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:32:35.463] [INFO] cheese - inserting 1000 documents. first: Touraine wine and last: David D'Alessandro -[2018-02-13T00:32:35.495] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:32:35.539] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:32:35.556] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:35.619] [INFO] cheese - inserting 1000 documents. first: Agincourt, Ontario and last: Amherst Ramblers -[2018-02-13T00:32:35.727] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:32:35.736] [INFO] cheese - inserting 1000 documents. first: Spurred roundleaf bat and last: Rhinolophus eloquens -[2018-02-13T00:32:35.806] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:32:35.874] [INFO] cheese - inserting 1000 documents. first: Levedohori, Elis and last: Persiraja Banda -[2018-02-13T00:32:35.883] [INFO] cheese - inserting 1000 documents. first: Smooth Sailin' (Leon Bridges song) and last: Wilshire/Vermont (Los Angeles Metro station) -[2018-02-13T00:32:35.899] [INFO] cheese - inserting 1000 documents. first: Isometry (quadratic forms) and last: Category:1951 in Polish sport -[2018-02-13T00:32:35.926] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:32:35.927] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:35.998] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:36.259] [INFO] cheese - inserting 1000 documents. first: Het Lage Land and last: Category:Public libraries in Scotland -[2018-02-13T00:32:36.375] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:32:36.444] [INFO] cheese - inserting 1000 documents. first: Mobile BayBears and last: GNFS -[2018-02-13T00:32:36.468] [INFO] cheese - inserting 1000 documents. first: Executive government and last: Roger IV, Count of Foix -[2018-02-13T00:32:36.556] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:32:36.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Allied occupation of Europe (2nd nomination) and last: Category:Religious organizations established in 1924 -[2018-02-13T00:32:36.623] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:32:36.649] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:32:36.733] [INFO] cheese - inserting 1000 documents. first: Wilshire/Normandie (Los Angeles Metro station) and last: Taiwan Political parties -[2018-02-13T00:32:36.775] [INFO] cheese - inserting 1000 documents. first: Glaucias (physician 3rd c.BC) and last: Goode Glacier -[2018-02-13T00:32:36.781] [INFO] cheese - inserting 1000 documents. first: File:Baby don't cry cd+dvd.jpg and last: Robert C. Brack -[2018-02-13T00:32:36.786] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:32:36.828] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:32:36.832] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:32:37.064] [INFO] cheese - inserting 1000 documents. first: FIBA Asia Under-16 Championship for Women 2009 and last: Orkdal Church -[2018-02-13T00:32:37.071] [INFO] cheese - inserting 1000 documents. first: File:DetroitShock.png and last: Corporate Sex Offender -[2018-02-13T00:32:37.123] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:32:37.138] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:32:37.163] [INFO] cheese - inserting 1000 documents. first: Minor County cricket and last: ICAW -[2018-02-13T00:32:37.181] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Core topics/Tree and last: Volcanic Islands -[2018-02-13T00:32:37.204] [INFO] cheese - inserting 1000 documents. first: By My Side Again and last: Topic outline of Africa -[2018-02-13T00:32:37.207] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:32:37.208] [INFO] cheese - inserting 1000 documents. first: Bertinazzi and last: Rockhampton City Hall -[2018-02-13T00:32:37.233] [INFO] cheese - inserting 1000 documents. first: Behelit and last: Adelanto, CA -[2018-02-13T00:32:37.258] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:32:37.264] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:37.277] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:32:37.343] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:32:37.541] [INFO] cheese - inserting 1000 documents. first: File:Depeche Mode - Soothe My Soul.jpg and last: José Giménez -[2018-02-13T00:32:37.583] [INFO] cheese - inserting 1000 documents. first: Corporate Sex Offenders and last: Rabbit In The Moon -[2018-02-13T00:32:37.584] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:32:37.629] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:32:37.670] [INFO] cheese - inserting 1000 documents. first: Mitsubishi gallant and last: Suleimani -[2018-02-13T00:32:37.704] [INFO] cheese - inserting 1000 documents. first: Russian Orthodox Ecclesiastical Mission in Jerusalem and last: Category:Wikipedia sockpuppets of AshleyBird1 -[2018-02-13T00:32:37.708] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:32:37.757] [INFO] cheese - inserting 1000 documents. first: Will Hatcher and last: Bradley Stacey -[2018-02-13T00:32:37.758] [INFO] cheese - inserting 1000 documents. first: James L. Dennis and last: Phyllis Dorothy James, Baroness James of Holland Park, OBE, FRSA, FRSL -[2018-02-13T00:32:37.782] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:32:37.863] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:32:37.954] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:32:38.067] [INFO] cheese - inserting 1000 documents. first: Emily Pauline Johnson and last: Allensville, KY -[2018-02-13T00:32:38.086] [INFO] cheese - inserting 1000 documents. first: Template:Chase H.Q. series and last: Alvan F. Sanborn -[2018-02-13T00:32:38.137] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:38.141] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:32:38.190] [INFO] cheese - inserting 1000 documents. first: Omiodes asaphombra and last: Xx male -[2018-02-13T00:32:38.261] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:32:38.375] [INFO] cheese - inserting 1000 documents. first: Filleting (obfuscation) and last: Deadheading (employee) -[2018-02-13T00:32:38.418] [INFO] cheese - inserting 1000 documents. first: Marouf Bakhit and last: Tie Plant, Mississippi -[2018-02-13T00:32:38.438] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:32:38.453] [INFO] cheese - inserting 1000 documents. first: Ruslan Stratonovich and last: Category:Soil contamination -[2018-02-13T00:32:38.466] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:32:38.493] [INFO] cheese - inserting 1000 documents. first: Tarika Ramilison Fenoarivo and last: List of number-one hits of 1990 (Flanders) -[2018-02-13T00:32:38.517] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:32:38.548] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:32:38.564] [INFO] cheese - inserting 1000 documents. first: Allenton, MI and last: Damgalnunna -[2018-02-13T00:32:38.608] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:32:38.617] [INFO] cheese - inserting 1000 documents. first: Lawyer's Prologue and Tale and last: U.s. inventions -[2018-02-13T00:32:38.669] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:38.686] [INFO] cheese - inserting 1000 documents. first: Portal:Houston/Did you know?/August 2007 and last: Fictional universe of Carnivàle -[2018-02-13T00:32:38.735] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:32:38.765] [INFO] cheese - inserting 1000 documents. first: Gordon O. Tanner (lawyer) and last: Heinrich Sir Albemarle Bertie, 1st Baronet -[2018-02-13T00:32:38.801] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:32:38.812] [INFO] cheese - inserting 1000 documents. first: 2006 Rally Deutschland and last: AirCal Tours -[2018-02-13T00:32:38.835] [INFO] cheese - inserting 1000 documents. first: VRT Top 30 number-one hits of 1990 (Flanders) and last: File:Logo of FC Madalena.png -[2018-02-13T00:32:38.853] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:32:38.873] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:32:38.926] [INFO] cheese - inserting 1000 documents. first: File:Srbthrust2.jpg and last: Sergeantsville, New Jersey -[2018-02-13T00:32:38.967] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:32:39.028] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/March 2009 and last: Cloud machine -[2018-02-13T00:32:39.076] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:32:39.161] [INFO] cheese - inserting 1000 documents. first: List of lesbian, gay, bisexual or transgender-related films by year and last: Wo de fu qin mu qin -[2018-02-13T00:32:39.161] [INFO] cheese - inserting 1000 documents. first: Renapur Taluka and last: Freddie Fox -[2018-02-13T00:32:39.214] [INFO] cheese - inserting 1000 documents. first: Unplugged (Alice in Chains album) and last: List of academic statistical associations -[2018-02-13T00:32:39.246] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:32:39.273] [INFO] cheese - inserting 1000 documents. first: File:Alabama Splash Adventure logo.png and last: Hypsirhophus discurus -[2018-02-13T00:32:39.313] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:32:39.355] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:32:39.369] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:32:39.468] [INFO] cheese - inserting 1000 documents. first: Template:MichiganStateBasketballCoach and last: Giambellino (district) -[2018-02-13T00:32:39.574] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:32:39.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Most Liberal Law School and last: File:Target T-1136.JPG -[2018-02-13T00:32:39.697] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:32:39.788] [INFO] cheese - inserting 1000 documents. first: MDCCLXX and last: Janiki Małe -[2018-02-13T00:32:39.825] [INFO] cheese - inserting 1000 documents. first: Albania – Georgia relations and last: File:Mariam Aslamazian.jpg -[2018-02-13T00:32:39.841] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:32:39.871] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:39.905] [INFO] cheese - inserting 1000 documents. first: Template:SwimmingAt1984SummerOlympics and last: File:Micromachine 2.jpg -[2018-02-13T00:32:39.952] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:32:39.954] [INFO] cheese - inserting 1000 documents. first: List of programs broadcast by Spacetoon (Pakistan) and last: Cybernetic Culture Research Unit -[2018-02-13T00:32:39.997] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:32:40.093] [INFO] cheese - inserting 1000 documents. first: Template:Goniodorididae-stub and last: Classic FM (Bulgaria) -[2018-02-13T00:32:40.155] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:32:40.187] [INFO] cheese - inserting 1000 documents. first: Emmanuel Habyarimana and last: Bishop of Poznań -[2018-02-13T00:32:40.248] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:32:40.291] [INFO] cheese - inserting 1000 documents. first: First Gentleman of Pakistan and last: SV Overbos -[2018-02-13T00:32:40.314] [INFO] cheese - inserting 1000 documents. first: Janiki Wielkie and last: Eloka -[2018-02-13T00:32:40.314] [INFO] cheese - inserting 1000 documents. first: Maeterlinck and last: Langnau -[2018-02-13T00:32:40.333] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:40.364] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:40.394] [INFO] cheese - inserting 1000 documents. first: Gazelle Valley and last: Wikipedia:Featured article review/Swastika/archive1 -[2018-02-13T00:32:40.395] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T00:32:40.448] [INFO] cheese - inserting 1000 documents. first: Petroleum Institute of Pakistan and last: F. Gordon Spear -[2018-02-13T00:32:40.449] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:32:40.539] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:32:40.670] [INFO] cheese - inserting 1000 documents. first: Skins (US Series) and last: Wikipedia:Articles for deletion/Dehn plane -[2018-02-13T00:32:40.738] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:32:40.864] [INFO] cheese - inserting 1000 documents. first: 2013–14 Swindon Town F.C. season and last: Helgi Hrafn Gunnarsson -[2018-02-13T00:32:40.882] [INFO] cheese - inserting 1000 documents. first: Gedney Farms, NY and last: Sleeper-hold -[2018-02-13T00:32:40.908] [INFO] cheese - inserting 1000 documents. first: Template:Regional Internet Registry and last: Fresh xpress -[2018-02-13T00:32:40.952] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:32:41.079] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:32:41.106] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:32:41.373] [INFO] cheese - inserting 1000 documents. first: F.G. Spear and last: Category:1700 in horse racing -[2018-02-13T00:32:41.380] [INFO] cheese - inserting 1000 documents. first: Ettrokro and last: Cathedral Church of Saint Peter, Exeter -[2018-02-13T00:32:41.450] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:32:41.495] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T00:32:41.575] [INFO] cheese - inserting 1000 documents. first: Category:Post office buildings in Pennsylvania and last: File:SiphonWithTubeUpperReservoir.png -[2018-02-13T00:32:41.619] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2013 April 27 and last: D-alanyl-D-alanine hydrolase -[2018-02-13T00:32:41.673] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:32:41.681] [INFO] cheese - inserting 1000 documents. first: East Fairfield and last: William Ormand Mitchell -[2018-02-13T00:32:41.770] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:32:41.881] [INFO] cheese - inserting 1000 documents. first: Swiss Federal Supreme Court and last: FM106-3 -[2018-02-13T00:32:41.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/SLSB and last: Curtis Cooper (mathematician) -[2018-02-13T00:32:41.911] [INFO] cheese - batch complete in: 1.515 secs -[2018-02-13T00:32:42.034] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:32:42.124] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:32:42.290] [INFO] cheese - inserting 1000 documents. first: Template:People's Choice Award for Favorite TV Drama and last: Wikipedia:Miscellany for deletion/User:Mattyredd24/Aayush Datt Fan Club -[2018-02-13T00:32:42.385] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:32:42.405] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/123quantumcomputers.webs.com and last: São Paulo F.C. season 2004 -[2018-02-13T00:32:42.488] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:32:42.536] [INFO] cheese - inserting 1000 documents. first: Louis Adolf Gölsdorf and last: Commandement de la force d'action terrestre -[2018-02-13T00:32:42.552] [INFO] cheese - inserting 1000 documents. first: D-alanyl-D-alanine-cleaving carboxypeptidase and last: Ibn 'Ata Allah -[2018-02-13T00:32:42.601] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T00:32:42.620] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:32:42.786] [INFO] cheese - inserting 1000 documents. first: Ayers Saint Gross and last: Meridian (disambiguation) -[2018-02-13T00:32:42.840] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:42.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Special state-to-state relations and last: Varúj...! -[2018-02-13T00:32:42.887] [INFO] cheese - inserting 1000 documents. first: Robert Thomas Grotz and last: Olof "olofmeister" Kajbjer -[2018-02-13T00:32:42.910] [INFO] cheese - inserting 1000 documents. first: William Ormond Mitchell and last: Fender Musical Instruments Corporation -[2018-02-13T00:32:42.926] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:32:42.929] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:32:42.948] [INFO] cheese - inserting 1000 documents. first: WBBO and last: 1000 De La Gauchetiere -[2018-02-13T00:32:42.990] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T00:32:43.031] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T00:32:43.058] [INFO] cheese - inserting 1000 documents. first: X Factor (Poland) and last: List of Acts of the Parliament of South Africa, 1990–1999 -[2018-02-13T00:32:43.092] [INFO] cheese - inserting 1000 documents. first: Thomas Alexander Murphree and last: Royce H. Savage -[2018-02-13T00:32:43.147] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:32:43.158] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:32:43.180] [INFO] cheese - inserting 1000 documents. first: Iris pallida and last: Wikipedia:Articles for deletion/Waitakere Mega Centre -[2018-02-13T00:32:43.221] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:32:43.271] [INFO] cheese - inserting 1000 documents. first: Category:Boise Irrigators players and last: Schadowstrasse (Düsseldorf) -[2018-02-13T00:32:43.328] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:32:43.395] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Seoul Independent Film Festival and last: RT aerostats systems -[2018-02-13T00:32:43.431] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:43.524] [INFO] cheese - inserting 1000 documents. first: List of Acts of the Parliament of South Africa, 2000–2009 and last: File:Musician Atari Blitzkrieg.jpg -[2018-02-13T00:32:43.532] [INFO] cheese - inserting 1000 documents. first: Siva Yoga and last: Miloslav Konopka -[2018-02-13T00:32:43.558] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:32:43.563] [INFO] cheese - inserting 1000 documents. first: 1000 de La Gauchetiere and last: Blåmannsisen -[2018-02-13T00:32:43.585] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:32:43.651] [INFO] cheese - inserting 1000 documents. first: KAPF and last: Tiny house movement -[2018-02-13T00:32:43.676] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:32:43.745] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:32:43.868] [INFO] cheese - inserting 1000 documents. first: N. K. Achumi and last: Athletics at the 1994 Commonwealth Games – Men's marathon -[2018-02-13T00:32:43.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2011 January 31 and last: Petra (sculpture) -[2018-02-13T00:32:43.880] [INFO] cheese - inserting 1000 documents. first: Chambered nautilus and last: Tillamook Cheese Factory -[2018-02-13T00:32:43.910] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:32:43.952] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:32:43.964] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:32:43.985] [INFO] cheese - inserting 1000 documents. first: Nabilla Benattia and last: IX Brigade, Royal Horse Artillery -[2018-02-13T00:32:44.530] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:32:44.572] [INFO] cheese - inserting 1000 documents. first: Near East Side and last: Brândușa River -[2018-02-13T00:32:45.331] [INFO] cheese - batch complete in: 1.746 secs -[2018-02-13T00:32:45.407] [INFO] cheese - inserting 1000 documents. first: Behrouz Afagh and last: Childs v Desormeaux -[2018-02-13T00:32:45.446] [INFO] cheese - inserting 1000 documents. first: Mean score and last: Hae-ryung -[2018-02-13T00:32:45.562] [INFO] cheese - batch complete in: 1.652 secs -[2018-02-13T00:32:45.581] [INFO] cheese - batch complete in: 1.904 secs -[2018-02-13T00:32:45.658] [INFO] cheese - inserting 1000 documents. first: Genocide in Somalia and last: Alaskan Air Defense Sector -[2018-02-13T00:32:45.694] [INFO] cheese - inserting 1000 documents. first: Rustai-ye Abolfazl ebn Magh and last: Diocese of Fond du Lac -[2018-02-13T00:32:45.720] [INFO] cheese - inserting 1000 documents. first: George P. Wanty and last: Richard Browne (artist) -[2018-02-13T00:32:45.731] [INFO] cheese - batch complete in: 1.779 secs -[2018-02-13T00:32:45.766] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T00:32:45.859] [INFO] cheese - batch complete in: 2.114 secs -[2018-02-13T00:32:45.972] [INFO] cheese - inserting 1000 documents. first: Vector State Research Center of Virology and Biotechnology and last: James halpert -[2018-02-13T00:32:46.018] [INFO] cheese - inserting 1000 documents. first: File:Anna Ascends-593646673-large.jpg and last: Gardner, Paul -[2018-02-13T00:32:46.021] [INFO] cheese - inserting 1000 documents. first: Dolby Digital EX and last: Category:Chubu region -[2018-02-13T00:32:46.025] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:32:46.028] [INFO] cheese - inserting 1000 documents. first: Liz Macclarnon and last: Holz -[2018-02-13T00:32:46.055] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:32:46.083] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:46.093] [INFO] cheese - batch complete in: 2.129 secs -[2018-02-13T00:32:46.129] [INFO] cheese - inserting 1000 documents. first: The Enduring Chill and last: Category:University of Peshawar faculty -[2018-02-13T00:32:46.167] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:32:46.196] [INFO] cheese - inserting 1000 documents. first: League of Legends Clash of Fates and last: Wądzyn, Warmian-Masurian Voivodeship -[2018-02-13T00:32:46.240] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:32:46.268] [INFO] cheese - inserting 1000 documents. first: Diocese of Eau Claire and last: Ahlbeck (near Ueckermünde) -[2018-02-13T00:32:46.326] [INFO] cheese - inserting 1000 documents. first: Microsoft Windows Store and last: USAF Weapons and Tactics Center -[2018-02-13T00:32:46.328] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:46.360] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:32:46.395] [INFO] cheese - inserting 1000 documents. first: Pamela beesly and last: Observatoire des Pises -[2018-02-13T00:32:46.443] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:32:46.464] [INFO] cheese - inserting 1000 documents. first: File:JustSoYouKnowSingle.jpg and last: Evan Hlavacek -[2018-02-13T00:32:46.483] [INFO] cheese - inserting 1000 documents. first: Nouméa Cathedral and last: Amardeep Jha -[2018-02-13T00:32:46.524] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:32:46.525] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:32:46.542] [INFO] cheese - inserting 1000 documents. first: Wierzbica, Warmian-Masurian Voivodeship and last: Brzozówko -[2018-02-13T00:32:46.571] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:32:46.640] [INFO] cheese - inserting 1000 documents. first: Category:Kanto region and last: Paul Dodge -[2018-02-13T00:32:46.685] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:32:46.713] [INFO] cheese - inserting 1000 documents. first: Brian Krzanich and last: Lotus wrightii -[2018-02-13T00:32:46.732] [INFO] cheese - inserting 1000 documents. first: 1906 Illinois Fighting Illini football team and last: Category:1510 in the Colony of Santiago -[2018-02-13T00:32:46.748] [INFO] cheese - inserting 1000 documents. first: The Hispanic Society of America and last: 26 July 2007 Baghdad market bombing -[2018-02-13T00:32:46.751] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:32:46.775] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:32:46.790] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:32:46.869] [INFO] cheese - inserting 1000 documents. first: Tamil-murasu and last: File:Ttkidzpromo.jpg -[2018-02-13T00:32:46.875] [INFO] cheese - inserting 1000 documents. first: Budry and last: Henry Rupert Wilhoit Junior -[2018-02-13T00:32:46.944] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe kamensky and last: Fijian newspapers -[2018-02-13T00:32:46.952] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:32:46.963] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:32:47.096] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:47.278] [INFO] cheese - inserting 1000 documents. first: Nadiradze and last: Embassy of Switzerland in Tbilisi (Russian Interests Section) -[2018-02-13T00:32:47.284] [INFO] cheese - inserting 1000 documents. first: Category:1970s establishments in Liberia and last: Dark Guardian (novel) -[2018-02-13T00:32:47.305] [INFO] cheese - inserting 1000 documents. first: Police mole and last: Valea Calului River (Râul Târgului) -[2018-02-13T00:32:47.311] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:32:47.331] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:32:47.361] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:47.435] [INFO] cheese - inserting 1000 documents. first: Category:Regional capitals in Namibia and last: Charles Hartley -[2018-02-13T00:32:47.445] [INFO] cheese - inserting 1000 documents. first: Espírito Santo Sociedade Esportiva and last: Coronado California -[2018-02-13T00:32:47.448] [INFO] cheese - inserting 1000 documents. first: Goodrich, Herfordshire and last: Joshua Jebb -[2018-02-13T00:32:47.481] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:32:47.489] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:32:47.527] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:32:47.649] [INFO] cheese - inserting 1000 documents. first: File:Pengo test.svg and last: Cair Andros -[2018-02-13T00:32:47.670] [INFO] cheese - inserting 1000 documents. first: Embassy of Switzerland in Moscow (Georgian Interests Section) and last: Nusrat Imroz Tisha -[2018-02-13T00:32:47.697] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:32:47.704] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:32:47.721] [INFO] cheese - inserting 1000 documents. first: Southern California InFocus and last: Valea Mare River (Urlățelu) -[2018-02-13T00:32:47.740] [INFO] cheese - inserting 1000 documents. first: Charles Kornmann and last: Marsha Pechman -[2018-02-13T00:32:47.758] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:47.766] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:32:47.808] [INFO] cheese - inserting 1000 documents. first: File:Minsa'y isang Gamu-gamo.jpg and last: EC 3.4.21.74 -[2018-02-13T00:32:47.858] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:32:47.911] [INFO] cheese - inserting 1000 documents. first: Lazonby and Kirkoswald and last: Not for Me -[2018-02-13T00:32:47.961] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:32:48.036] [INFO] cheese - inserting 1000 documents. first: Marshall Neill and last: Walter Keeling -[2018-02-13T00:32:48.082] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:32:48.104] [INFO] cheese - inserting 1000 documents. first: Kenneth Brown (author) and last: Quentin Bryce -[2018-02-13T00:32:48.114] [INFO] cheese - inserting 1000 documents. first: Draft:Brian Shure and last: Syriac Catholic Archeparchy of Homs -[2018-02-13T00:32:48.126] [INFO] cheese - inserting 1000 documents. first: Abdelhak Serhane and last: Osmanabad Tahsil -[2018-02-13T00:32:48.161] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:32:48.169] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:32:48.177] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:32:48.187] [INFO] cheese - inserting 1000 documents. first: Farjestad and last: 13th Legion -[2018-02-13T00:32:48.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Twin Air and last: Category:Alosa -[2018-02-13T00:32:48.293] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:32:48.341] [INFO] cheese - inserting 1000 documents. first: Koichi Togashi and last: Titanic 3D -[2018-02-13T00:32:48.374] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:32:48.417] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:48.539] [INFO] cheese - inserting 1000 documents. first: Walter DeKalb Kelley and last: Elite force -[2018-02-13T00:32:48.605] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:48.667] [INFO] cheese - inserting 1000 documents. first: Syrian Catholic Archdiocese of Homs-Hama-Nabk and last: Category:1763 establishments in Russia -[2018-02-13T00:32:48.720] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:32:48.744] [INFO] cheese - inserting 1000 documents. first: Union Street, Borough and last: Template:Académie Française Seat 9 -[2018-02-13T00:32:48.784] [INFO] cheese - inserting 1000 documents. first: Lide z maringotek and last: Adam Cleghorn Welch -[2018-02-13T00:32:48.816] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:32:48.827] [INFO] cheese - inserting 1000 documents. first: 1959 Elections of Singapore and last: El diputado -[2018-02-13T00:32:48.871] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:32:48.907] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:32:48.980] [INFO] cheese - inserting 1000 documents. first: Boa Gwon and last: Forsterygion flavonigrum -[2018-02-13T00:32:49.012] [INFO] cheese - inserting 1000 documents. first: Category:ISSF shooting events and last: Category:Atlanta Thrashers players -[2018-02-13T00:32:49.071] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:32:49.117] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T00:32:49.136] [INFO] cheese - inserting 1000 documents. first: Batman 3 (Nolan) and last: Lohan, Pakistan -[2018-02-13T00:32:49.217] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Talk:Cisgenesis and last: File:Telenor Group.svg -[2018-02-13T00:32:49.253] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:32:49.318] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:32:49.418] [INFO] cheese - inserting 1000 documents. first: File:Escape Ironic Advertisement Chicago Feb 2 2011 storm.JPG and last: Anwar Ferguson -[2018-02-13T00:32:49.427] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Phil Manzanera and last: Lebanese cinema -[2018-02-13T00:32:49.462] [INFO] cheese - inserting 1000 documents. first: Road To The Riches and last: Monthélie -[2018-02-13T00:32:49.480] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:32:49.500] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:32:49.560] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:32:49.701] [INFO] cheese - inserting 1000 documents. first: Pteroglossus frantzii and last: Voiceless lateral affricate -[2018-02-13T00:32:49.798] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:32:49.893] [INFO] cheese - inserting 1000 documents. first: Category:Reservoirs in Ulster County, New York and last: Category:1838 disestablishments in Ceylon -[2018-02-13T00:32:49.907] [INFO] cheese - inserting 1000 documents. first: Juan Guerrero and last: As-Salih Hajji -[2018-02-13T00:32:49.963] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:32:49.966] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:32:50.061] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Blackhawks players and last: Kalapana (band) -[2018-02-13T00:32:50.068] [INFO] cheese - inserting 1000 documents. first: Dubberman Denmark and last: Joondalup railway line, Perth -[2018-02-13T00:32:50.090] [INFO] cheese - inserting 1000 documents. first: 1st Of Tha Month and last: Clupeoides -[2018-02-13T00:32:50.109] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:32:50.118] [INFO] cheese - inserting 1000 documents. first: Category:Church of England independent schools in the Diocese of Ely and last: Nidamangalam Taluk -[2018-02-13T00:32:50.139] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:32:50.139] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:32:50.182] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:32:50.272] [INFO] cheese - inserting 1000 documents. first: Frisch School and last: Frommer's -[2018-02-13T00:32:50.323] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:32:50.408] [INFO] cheese - inserting 1000 documents. first: Thumathoides and last: Category:Piper family -[2018-02-13T00:32:50.431] [INFO] cheese - inserting 1000 documents. first: Nicktown, Pennsylvania and last: Template:Green Party (Norway)/meta/abbr -[2018-02-13T00:32:50.434] [INFO] cheese - inserting 1000 documents. first: Soufli Province and last: FIS Alpine World Ski Championships 2011 – Women's super-G -[2018-02-13T00:32:50.439] [INFO] cheese - inserting 1000 documents. first: Pat Best and last: Wikipedia:WikiProject Malaysia/Cartography -[2018-02-13T00:32:50.444] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:32:50.473] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:32:50.481] [INFO] cheese - inserting 1000 documents. first: Category:1887 establishments in Florida and last: Paramyxovirus -[2018-02-13T00:32:50.492] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:32:50.502] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:32:50.517] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:32:50.730] [INFO] cheese - inserting 1000 documents. first: Consortium on Financial Systems and Poverty and last: Breeding Ground (album) -[2018-02-13T00:32:50.743] [INFO] cheese - inserting 1000 documents. first: Haplochromis kamiranzovu and last: Wikipedia:Featured picture candidates/Portrait of a cat -[2018-02-13T00:32:50.753] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:32:50.774] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:32:50.813] [INFO] cheese - inserting 1000 documents. first: AIS arena and last: Igor Cherevchenko -[2018-02-13T00:32:50.862] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:32:50.870] [INFO] cheese - inserting 1000 documents. first: Kaimu and last: Macho Man -[2018-02-13T00:32:50.887] [INFO] cheese - inserting 1000 documents. first: Template:Lexa and last: Growth planning -[2018-02-13T00:32:50.931] [INFO] cheese - inserting 1000 documents. first: Spiral Galaxy NGC 4435 and last: Yanornis -[2018-02-13T00:32:50.955] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:32:50.970] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:32:50.981] [INFO] cheese - inserting 1000 documents. first: Listen to Me (disambiguation) and last: Moravská národní obec -[2018-02-13T00:32:51.000] [INFO] cheese - inserting 1000 documents. first: André Lapize and last: Giuseppe Mingione -[2018-02-13T00:32:51.027] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:32:51.034] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:32:51.076] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:32:51.313] [INFO] cheese - inserting 1000 documents. first: Category:Lutjanus and last: Pantanodon -[2018-02-13T00:32:51.395] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:32:51.407] [INFO] cheese - inserting 1000 documents. first: Blue Scapular of the Immaculate Conception and last: Jeffrey Hunter (disambiguation) -[2018-02-13T00:32:51.518] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:32:51.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Pharmacology/Log/2011-02-08 and last: Sysoyev (disambiguation) -[2018-02-13T00:32:51.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/December 20, 2015 and last: Ralph McLean (politician) -[2018-02-13T00:32:51.611] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:32:51.653] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian-American culture by city and last: J.J.C. Bradfield -[2018-02-13T00:32:51.673] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:32:51.719] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:32:51.777] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Uzumaki Carly and last: The History of Mr Polly -[2018-02-13T00:32:51.835] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:32:51.871] [INFO] cheese - inserting 1000 documents. first: Category:Pantanodon and last: Table Cricket -[2018-02-13T00:32:51.907] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:32:51.915] [INFO] cheese - inserting 1000 documents. first: Category:Titans and last: Ethnism -[2018-02-13T00:32:51.931] [INFO] cheese - inserting 1000 documents. first: The Saga of Jenny and last: File:DanD-NoyMoon SharmCover.jpg -[2018-02-13T00:32:51.974] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:51.978] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:32:52.022] [INFO] cheese - inserting 1000 documents. first: Syntarsus (disambiguation) and last: St. Hallvard's Medal -[2018-02-13T00:32:52.040] [INFO] cheese - inserting 1000 documents. first: 2013-14 Portsmouth F.C. season and last: Nevado Callangate -[2018-02-13T00:32:52.073] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:52.076] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:32:52.094] [INFO] cheese - inserting 1000 documents. first: Hammurah and last: 1906 Swarthmore Garnet Tide football team -[2018-02-13T00:32:52.144] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:32:52.211] [INFO] cheese - inserting 1000 documents. first: File:HLR-SHORT-ARC-SUPPLY-A.jpg and last: S-Adenosylmethionine -[2018-02-13T00:32:52.252] [INFO] cheese - inserting 1000 documents. first: File:GuerolitoCover.jpg and last: Project Global -[2018-02-13T00:32:52.255] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:32:52.280] [INFO] cheese - inserting 1000 documents. first: Schools in Nigeria and last: Otis Putnam House -[2018-02-13T00:32:52.291] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:52.311] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:32:52.375] [INFO] cheese - inserting 1000 documents. first: Scullard v Knowles & Southern Regional Council for Education & Training and last: Template:WP Essex -[2018-02-13T00:32:52.380] [INFO] cheese - inserting 1000 documents. first: Bobs burgers episodes and last: Octopamine (disambiguation) -[2018-02-13T00:32:52.404] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:32:52.412] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:32:52.441] [INFO] cheese - inserting 1000 documents. first: Creme Puff (disambiguation) and last: Tsil'ninskii Raion -[2018-02-13T00:32:52.472] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:52.563] [INFO] cheese - inserting 1000 documents. first: Sample (music) and last: Category:Madison County, Ohio -[2018-02-13T00:32:52.608] [INFO] cheese - inserting 1000 documents. first: RCAF Station Mountain View and last: CBON-FM-17 -[2018-02-13T00:32:52.612] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:32:52.634] [INFO] cheese - inserting 1000 documents. first: Ligne de Bourg en Bresse-Bellegarde and last: File:Aintmisbehavin.jpg -[2018-02-13T00:32:52.645] [INFO] cheese - inserting 1000 documents. first: Muslim Countries and last: Atlanta Bliss -[2018-02-13T00:32:52.650] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:32:52.696] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:32:52.710] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:32:52.754] [INFO] cheese - inserting 1000 documents. first: Caterham bypass and last: Totally disconnected groups -[2018-02-13T00:32:52.795] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:32:52.837] [INFO] cheese - inserting 1000 documents. first: Pandulf (disambiguation) and last: Module:ISO 3166/data/AX -[2018-02-13T00:32:52.871] [INFO] cheese - inserting 1000 documents. first: Frank Serratore and last: Wikipedia:WikiProject Academic Journals/Journals cited by Wikipedia/J51 -[2018-02-13T00:32:52.874] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:52.937] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:32:53.134] [INFO] cheese - inserting 1000 documents. first: Audi Le Mans quattro and last: Caught Up (Millie Jackson album) -[2018-02-13T00:32:53.147] [INFO] cheese - inserting 1000 documents. first: Dr.S Radhakrishnan and last: Smiles for Macavity -[2018-02-13T00:32:53.160] [INFO] cheese - inserting 1000 documents. first: SKY TG24 and last: Born to Be Blue! (Bobby Timmons album) -[2018-02-13T00:32:53.170] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Greenville County, South Carolina and last: Kowalewo, West Pomeranian Voivodeship -[2018-02-13T00:32:53.176] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:32:53.199] [INFO] cheese - inserting 1000 documents. first: Anderson Private School For The Gifted and Talented and last: Juan de Argüelles -[2018-02-13T00:32:53.208] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:32:53.219] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:53.251] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:32:53.270] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:53.308] [INFO] cheese - inserting 1000 documents. first: File:Centralwashington.PNG and last: Linear temporal logic -[2018-02-13T00:32:53.322] [INFO] cheese - inserting 1000 documents. first: Casey the Alien and last: Aporia lama -[2018-02-13T00:32:53.361] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:53.360] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:32:53.563] [INFO] cheese - inserting 1000 documents. first: Portal:Indigenous peoples of the Americas/Selected biography/1 and last: Swarm (video game) -[2018-02-13T00:32:53.605] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:32:53.627] [INFO] cheese - inserting 1000 documents. first: Krakowice and last: Jamno, Koszalin -[2018-02-13T00:32:53.663] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:32:53.674] [INFO] cheese - inserting 1000 documents. first: Cernat River (Durbav) and last: Category:Medical colleges in Maharashtra -[2018-02-13T00:32:53.682] [INFO] cheese - inserting 1000 documents. first: PowerHouse (programming language) and last: Box Hill Town Hall -[2018-02-13T00:32:53.683] [INFO] cheese - inserting 1000 documents. first: 2016 Southern Myanmar FC season and last: Deng Furu -[2018-02-13T00:32:53.712] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:32:53.727] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:32:53.734] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:32:53.744] [INFO] cheese - inserting 1000 documents. first: Pieris peloria and last: Aetostreon -[2018-02-13T00:32:53.788] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:32:53.985] [INFO] cheese - inserting 1000 documents. first: Kazimierz Pomorski and last: Nuisance variable -[2018-02-13T00:32:54.011] [INFO] cheese - inserting 1000 documents. first: Helen Nielsen and last: 1997–98 Yemeni League -[2018-02-13T00:32:54.012] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:32:54.050] [INFO] cheese - inserting 1000 documents. first: Holy cow and last: Banana Republicans -[2018-02-13T00:32:54.052] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:32:54.090] [INFO] cheese - inserting 1000 documents. first: Japanese eggplant and last: US 59 (IA) -[2018-02-13T00:32:54.121] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:32:54.131] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:32:54.138] [INFO] cheese - inserting 1000 documents. first: Chah Zangi, Kerman and last: Wikipedia:WikiProject District of Columbia/tasks/Under review/FAC -[2018-02-13T00:32:54.161] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sunshine octopus and last: Category:1958 British Empire and Commonwealth Games -[2018-02-13T00:32:54.176] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:32:54.205] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:32:54.225] [INFO] cheese - inserting 1000 documents. first: Leone Ebreo de Somi and last: Precedent book -[2018-02-13T00:32:54.268] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:32:54.272] [INFO] cheese - inserting 1000 documents. first: Suchao Nutnum and last: Handball at the 2004 Summer Olympics - Men's team squads -[2018-02-13T00:32:54.307] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:32:54.383] [INFO] cheese - inserting 1000 documents. first: Category:European Colombian and last: Category:1993 in Australian rugby union -[2018-02-13T00:32:54.390] [INFO] cheese - inserting 1000 documents. first: 1998–99 Yemeni League and last: File:Greatest of the Delta Blues Singers.jpg -[2018-02-13T00:32:54.410] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:32:54.432] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:32:54.552] [INFO] cheese - inserting 1000 documents. first: Holy Rood Church and last: Kashkarov -[2018-02-13T00:32:54.565] [INFO] cheese - inserting 1000 documents. first: Aaron Edwards and last: Kinship care -[2018-02-13T00:32:54.585] [INFO] cheese - inserting 1000 documents. first: US 75 (IA) and last: Way Out West (festival) -[2018-02-13T00:32:54.590] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:32:54.615] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:32:54.626] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:32:54.645] [INFO] cheese - inserting 1000 documents. first: The unforgiven 2 and last: Sacred and Profane (Britten) -[2018-02-13T00:32:54.684] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:32:54.720] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RB-RP right/31 and last: Nutahara -[2018-02-13T00:32:54.760] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:32:54.790] [INFO] cheese - inserting 1000 documents. first: Kinnarathumbikal and last: Sphinx ceculus -[2018-02-13T00:32:54.813] [INFO] cheese - inserting 1000 documents. first: Terminal illness and last: André Courrèges -[2018-02-13T00:32:54.840] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:32:54.873] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:32:54.899] [INFO] cheese - inserting 1000 documents. first: NanKang Biotech Incubation Center and last: James Franck Institute -[2018-02-13T00:32:54.953] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:32:54.991] [INFO] cheese - inserting 1000 documents. first: Vic Hanson and last: Category:French eugenicists -[2018-02-13T00:32:55.010] [INFO] cheese - inserting 1000 documents. first: Éric Le Chanony and last: List of Old Bristolians born before the 19th century -[2018-02-13T00:32:55.083] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:55.059] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:32:55.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Post-hardcore/leftpanel and last: Waterlaso -[2018-02-13T00:32:55.181] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:32:55.263] [INFO] cheese - inserting 1000 documents. first: Category:1974 in Kansas and last: Anglo-Bhutan War of 1864–65 -[2018-02-13T00:32:55.305] [INFO] cheese - inserting 1000 documents. first: Bus monitoring and last: Research article -[2018-02-13T00:32:55.315] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:32:55.326] [INFO] cheese - inserting 1000 documents. first: Tihomir Orešković and last: Qaṣīdah -[2018-02-13T00:32:55.349] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:32:55.371] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:32:55.429] [INFO] cheese - inserting 1000 documents. first: Group Captain Cheshire and last: Peter Collins (Formula One) -[2018-02-13T00:32:55.467] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:55.503] [INFO] cheese - inserting 1000 documents. first: Category:Filipino professional wrestlers and last: Tumichuqua lake -[2018-02-13T00:32:55.545] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:32:55.598] [INFO] cheese - inserting 1000 documents. first: Jim McKay and last: Peter Steele -[2018-02-13T00:32:55.601] [INFO] cheese - inserting 1000 documents. first: Axel Heiberg Stang and last: Anomaluromorpha -[2018-02-13T00:32:55.605] [INFO] cheese - inserting 1000 documents. first: Rithā' and last: Jade Wang -[2018-02-13T00:32:55.633] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:32:55.647] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:32:55.646] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:32:55.662] [INFO] cheese - inserting 1000 documents. first: Category:Natural phenols and last: Murray Edmund Watts -[2018-02-13T00:32:55.709] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:32:55.737] [INFO] cheese - inserting 1000 documents. first: History of hentai and last: File:Rissa IL.jpg -[2018-02-13T00:32:55.790] [INFO] cheese - inserting 1000 documents. first: San Antonio lake and last: James P. Leamy -[2018-02-13T00:32:55.792] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:32:55.796] [INFO] cheese - inserting 1000 documents. first: Atenia quadrani and last: John Mahnken -[2018-02-13T00:32:55.816] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:32:55.851] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:55.989] [INFO] cheese - inserting 1000 documents. first: Rhizosthenes falciformis and last: Wikipedia:Articles for deletion/Go Solutions Group, Inc. -[2018-02-13T00:32:56.024] [INFO] cheese - inserting 1000 documents. first: Mervyn and last: List of PSone Classics N–Z -[2018-02-13T00:32:56.024] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:32:56.065] [INFO] cheese - inserting 1000 documents. first: Stormer (disambiguation) and last: St.Anselm's School -[2018-02-13T00:32:56.067] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:32:56.072] [INFO] cheese - inserting 1000 documents. first: James R. Nowlin and last: Brighton Blitz -[2018-02-13T00:32:56.101] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:32:56.132] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:32:56.150] [INFO] cheese - inserting 1000 documents. first: File:Kaohsiung County location.jpg and last: 2099 (comics) -[2018-02-13T00:32:56.161] [INFO] cheese - inserting 1000 documents. first: Category:Cochliopina and last: Category:Geomitra -[2018-02-13T00:32:56.189] [INFO] cheese - inserting 1000 documents. first: 2013 Belkin Pro Cycling season and last: Category:Museums in Caracas -[2018-02-13T00:32:56.209] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:32:56.215] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:32:56.291] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:32:56.437] [INFO] cheese - inserting 1000 documents. first: Hochthürmerberg and last: Charlotte Gingras -[2018-02-13T00:32:56.448] [INFO] cheese - inserting 1000 documents. first: Archibald Ronald McDonald Gordon and last: Hoodoo science -[2018-02-13T00:32:56.480] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:56.504] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:32:56.509] [INFO] cheese - inserting 1000 documents. first: Chop Suey! and last: De Mil Colores (Daniela Romo album) -[2018-02-13T00:32:56.564] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:32:56.586] [INFO] cheese - inserting 1000 documents. first: Geomitra delphinuloides and last: Lithasia jayana -[2018-02-13T00:32:56.615] [INFO] cheese - inserting 1000 documents. first: Coris picta and last: Gastric-brooding Frog -[2018-02-13T00:32:56.618] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:32:56.664] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:32:56.679] [INFO] cheese - inserting 1000 documents. first: Cremisan and last: Ma Chu -[2018-02-13T00:32:56.726] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:32:56.835] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Sediment in the Gulf of Mexico and last: Privalov -[2018-02-13T00:32:56.845] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/darryllevine.com and last: Waite Hockin Stirling -[2018-02-13T00:32:56.865] [INFO] cheese - inserting 1000 documents. first: Category:Food additives and last: MIT Press -[2018-02-13T00:32:56.883] [INFO] cheese - inserting 1000 documents. first: Rugose rocksnail and last: FC Lisma-Mordovia Saransk -[2018-02-13T00:32:56.895] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:32:56.906] [INFO] cheese - inserting 1000 documents. first: Spira (Final Fantasy X) and last: Uietkuk -[2018-02-13T00:32:56.910] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:32:56.927] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:32:56.943] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:32:56.956] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:32:57.054] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PASH and last: Scarletstadion Achter de Kazerne -[2018-02-13T00:32:57.090] [INFO] cheese - inserting 1000 documents. first: File:Sir Edwin, Lady Leela & Nissanka Wijeyeratne.jpg and last: Category:Companies based in Coles County, Illinois -[2018-02-13T00:32:57.111] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:32:57.187] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:32:57.262] [INFO] cheese - inserting 1000 documents. first: Tony Church (trailer writer) and last: Philonesia filiceti -[2018-02-13T00:32:57.283] [INFO] cheese - inserting 1000 documents. first: Kingsburg Police Department and last: Narong Wongthongkam -[2018-02-13T00:32:57.293] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:32:57.325] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:32:57.335] [INFO] cheese - inserting 1000 documents. first: John Lee Richmond and last: Wikipedia:WikiProject Spam/LinkReports/xdeal.net -[2018-02-13T00:32:57.351] [INFO] cheese - inserting 1000 documents. first: Slate River (Colorado) and last: Template:Vissel Kobe -[2018-02-13T00:32:57.373] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:32:57.516] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:32:57.643] [INFO] cheese - inserting 1000 documents. first: Philonesia and last: Category:Wikipedians interested in literature -[2018-02-13T00:32:57.689] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:57.741] [INFO] cheese - inserting 1000 documents. first: Tolombeh-ye Hajji Garam and last: Haskett Court -[2018-02-13T00:32:57.773] [INFO] cheese - inserting 1000 documents. first: Bofh and last: File:Escudo-Piloña.jpg -[2018-02-13T00:32:57.778] [INFO] cheese - inserting 1000 documents. first: Greed and fear and last: St. Joseph River (Maumee River) -[2018-02-13T00:32:57.791] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:32:57.812] [INFO] cheese - inserting 1000 documents. first: Kerry District League Premier B and last: Donald Mackenzie (advocate) -[2018-02-13T00:32:57.829] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:32:57.844] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:32:57.869] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:32:57.910] [INFO] cheese - inserting 1000 documents. first: Climate Data Records and last: Climate of Arkansas -[2018-02-13T00:32:57.944] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:57.945] [INFO] cheese - inserting 1000 documents. first: Tapetto Volante and last: Template:Ukraine-hotel-stub -[2018-02-13T00:32:57.993] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:32:58.025] [INFO] cheese - inserting 1000 documents. first: DE-533 and last: Valea Hrăii River -[2018-02-13T00:32:58.068] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:32:58.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Retailing/to do and last: Category:Universities and colleges in Marseille -[2018-02-13T00:32:58.205] [INFO] cheese - inserting 1000 documents. first: Cariogenic and last: Wikipedia:Images and media for deletion/2006 September 9 -[2018-02-13T00:32:58.206] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:32:58.209] [INFO] cheese - inserting 1000 documents. first: Quell (wearable) and last: A Midnight Summer's Dream -[2018-02-13T00:32:58.215] [INFO] cheese - inserting 1000 documents. first: Smos and last: Renal veins -[2018-02-13T00:32:58.234] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:32:58.243] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:32:58.260] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:32:58.371] [INFO] cheese - inserting 1000 documents. first: Ski jumping at the 2011 European Youth Olympic Winter Festival and last: Template:Tamil Nadu Highways Network -[2018-02-13T00:32:58.436] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:32:58.513] [INFO] cheese - inserting 1000 documents. first: Category:Universities and colleges in Bordeaux and last: Daya Master -[2018-02-13T00:32:58.543] [INFO] cheese - inserting 1000 documents. first: Health and Welfare Canada and last: Amcham -[2018-02-13T00:32:58.544] [INFO] cheese - inserting 1000 documents. first: 1928 Colgate football team and last: Autodromo de Turagua -[2018-02-13T00:32:58.559] [INFO] cheese - inserting 1000 documents. first: CXVIII and last: A. A. Delvig -[2018-02-13T00:32:58.561] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:32:58.586] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:32:58.598] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:32:58.616] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:32:58.667] [INFO] cheese - inserting 1000 documents. first: Beebopareebop Rhubarb Pie and last: Paige Young -[2018-02-13T00:32:58.745] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:32:58.814] [INFO] cheese - inserting 1000 documents. first: File:Advertising Standards Council of India Logo.jpg and last: Wikipedia:Copyright problems/2011 February 13 -[2018-02-13T00:32:58.844] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:32:58.970] [INFO] cheese - inserting 1000 documents. first: Tied note and last: Emden, Germany -[2018-02-13T00:32:58.983] [INFO] cheese - inserting 1000 documents. first: Hikari Rail Star (Shinkansen) and last: Richard Corbett -[2018-02-13T00:32:59.004] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:32:59.029] [INFO] cheese - inserting 1000 documents. first: File:Recovery Road (TV series) title.png and last: Babić, Ivan -[2018-02-13T00:32:59.042] [INFO] cheese - inserting 1000 documents. first: Scott Act (1888) and last: Japanese Unconditional Surrender -[2018-02-13T00:32:59.044] [INFO] cheese - inserting 1000 documents. first: Operation Argo and last: Zabrus gravis -[2018-02-13T00:32:59.045] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T00:32:59.077] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:32:59.084] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:32:59.086] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:32:59.152] [INFO] cheese - inserting 1000 documents. first: Category:Living museums in Washington (state) and last: Bulgarian Jewry -[2018-02-13T00:32:59.174] [INFO] cheese - inserting 1000 documents. first: SD Negreira and last: Wikipedia:Articles for deletion/WWII: War of Supremacy -[2018-02-13T00:32:59.195] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:32:59.230] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:32:59.292] [INFO] cheese - inserting 1000 documents. first: 한효주 and last: Joseph Buerger -[2018-02-13T00:32:59.330] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:32:59.344] [INFO] cheese - inserting 1000 documents. first: Linda Chou and last: Wikipedia:Images and media for deletion/2007 January 16 -[2018-02-13T00:32:59.379] [INFO] cheese - inserting 1000 documents. first: Belsky, Ivan and last: Firminus -[2018-02-13T00:32:59.382] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:32:59.412] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:32:59.439] [INFO] cheese - inserting 1000 documents. first: File:Holyfield vs Cooper.jpg and last: Periclimenes priodactylus -[2018-02-13T00:32:59.475] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:32:59.525] [INFO] cheese - inserting 1000 documents. first: Kiesling and last: Wikipedia:Articles for deletion/Gravity Falls -[2018-02-13T00:32:59.571] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:32:59.625] [INFO] cheese - inserting 1000 documents. first: Portal:Cricket/Anniversaries/June/June 9 and last: Carlos Rafael -[2018-02-13T00:32:59.629] [INFO] cheese - inserting 1000 documents. first: Intercounty Maple Leafs and last: Category:Companies of Tajikistan -[2018-02-13T00:32:59.657] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:32:59.677] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:32:59.685] [INFO] cheese - inserting 1000 documents. first: 1995 Atlantic Hurricane season and last: Wikipedia:Articles for deletion/Median number -[2018-02-13T00:32:59.727] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Images and media for deletion/2007 January 15 and last: Raymond Jackson (disambiguation) -[2018-02-13T00:32:59.742] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:32:59.751] [INFO] cheese - inserting 1000 documents. first: 1923 Drake Bulldogs football team and last: Franz Pitzinger -[2018-02-13T00:32:59.775] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:32:59.801] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:32:59.837] [INFO] cheese - inserting 1000 documents. first: Periclimenes signatus and last: Emeka Onyenekwu -[2018-02-13T00:32:59.919] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:32:59.974] [INFO] cheese - inserting 1000 documents. first: Category:Cambridge University Press books and last: Toto Le Héros -[2018-02-13T00:33:00.021] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:33:00.053] [INFO] cheese - inserting 1000 documents. first: Oklahoma State Highway 53A and last: Portal:Ethics/Quotes -[2018-02-13T00:33:00.090] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:00.125] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Tajikistan and last: Wikipedia:POTD row/April 3, 2006 -[2018-02-13T00:33:00.151] [INFO] cheese - inserting 1000 documents. first: TXDADS and last: Lago di santa rosalia -[2018-02-13T00:33:00.175] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:33:00.201] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:33:00.235] [INFO] cheese - inserting 1000 documents. first: Sara Creek and last: United Nations Convention Against Torture -[2018-02-13T00:33:00.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Center for Appropriate Transport and last: Towns and cities in Kosovo -[2018-02-13T00:33:00.281] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:33:00.316] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:33:00.353] [INFO] cheese - inserting 1000 documents. first: Ogliastro Lake and last: Wikipedia:Images and media for deletion/2008 March 23 -[2018-02-13T00:33:00.375] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:33:00.448] [INFO] cheese - inserting 1000 documents. first: Cat House (Charmed) and last: Category:British Library Arundel collection -[2018-02-13T00:33:00.519] [INFO] cheese - inserting 1000 documents. first: Johnny Maulbetsch and last: Category:Succineidae -[2018-02-13T00:33:00.524] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:00.582] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:00.697] [INFO] cheese - inserting 1000 documents. first: Itarildë and last: Connection (fibred manifold) -[2018-02-13T00:33:00.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Images and media for deletion/2008 March 22 and last: Dheri Thothal -[2018-02-13T00:33:00.720] [INFO] cheese - inserting 1000 documents. first: Wikipedia:POTD row/April 5, 2006 and last: Keith Dorney -[2018-02-13T00:33:00.732] [INFO] cheese - inserting 1000 documents. first: 10 Hygiea and last: Jan, Count Zizka -[2018-02-13T00:33:00.740] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:33:00.742] [INFO] cheese - inserting 1000 documents. first: Towns and cities of Kosovo and last: Vallombrosan Benedictines -[2018-02-13T00:33:00.747] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:33:00.793] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:00.813] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T00:33:00.817] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:33:00.916] [INFO] cheese - inserting 1000 documents. first: Uz Jsme Doma and last: Darren Jones -[2018-02-13T00:33:00.948] [INFO] cheese - inserting 1000 documents. first: Vincenzo Ruggiero and last: Template:CinemaofSwitzerland -[2018-02-13T00:33:00.949] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:33:01.018] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:33:01.171] [INFO] cheese - inserting 1000 documents. first: Musume Morning and last: Category:People from Northeast China -[2018-02-13T00:33:01.213] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:33:01.223] [INFO] cheese - inserting 1000 documents. first: Film poem and last: Pendarvis Williams -[2018-02-13T00:33:01.272] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:01.311] [INFO] cheese - inserting 1000 documents. first: File:Forever Worlds - Enter the Unknown coverart.png and last: Splitrock, Wisconsin -[2018-02-13T00:33:01.346] [INFO] cheese - inserting 1000 documents. first: Mizuti and last: Template:Central America topic -[2018-02-13T00:33:01.349] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:01.397] [INFO] cheese - inserting 1000 documents. first: Cone biopsy and last: Template:Warcraft Universe -[2018-02-13T00:33:01.397] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:33:01.441] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:01.565] [INFO] cheese - inserting 1000 documents. first: Template:CinemaofTaiwan and last: Army Reserve Aviation Command -[2018-02-13T00:33:01.580] [INFO] cheese - inserting 1000 documents. first: MEMOrg and last: Wikipedia:Articles for deletion/Apostolic Johannite Church -[2018-02-13T00:33:01.610] [INFO] cheese - inserting 1000 documents. first: Category:2007 establishments in Arizona and last: Spiralisigna gloriae -[2018-02-13T00:33:01.610] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:01.616] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:33:01.662] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:33:01.686] [INFO] cheese - inserting 1000 documents. first: FAI Under-17 Cup and last: Causes of inflation -[2018-02-13T00:33:01.721] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:33:01.733] [INFO] cheese - inserting 1000 documents. first: List of monastic houses on the Isle of Man and last: Wikipedia:Multilingual ranking April 2002 -[2018-02-13T00:33:01.743] [INFO] cheese - inserting 1000 documents. first: Cleveland Council of Independent Schools and last: Cádiz Cortes -[2018-02-13T00:33:01.770] [INFO] cheese - inserting 1000 documents. first: Myadora novaezelandiae and last: File:Aadmi Sadak Ka.jpg -[2018-02-13T00:33:01.779] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:33:01.790] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:33:01.803] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:33:01.898] [INFO] cheese - inserting 1000 documents. first: Pobe Mengao and last: Wikipedia:Flag protection and patrolled revisions/Flag protection -[2018-02-13T00:33:01.934] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:33:01.964] [INFO] cheese - inserting 1000 documents. first: Battlelab and last: File:Roswell Invaders logo.gif -[2018-02-13T00:33:02.008] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:33:02.013] [INFO] cheese - inserting 1000 documents. first: File:Intercourse, first edition.jpg and last: Category:Articles with evidence out of context -[2018-02-13T00:33:02.048] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:33:02.098] [INFO] cheese - inserting 1000 documents. first: 11th Aviation Group (United States) and last: Ani-Mayhem -[2018-02-13T00:33:02.146] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:33:02.160] [INFO] cheese - inserting 1000 documents. first: Ray González and last: Ice sledge hockey at the 2006 Winter Paralympics -[2018-02-13T00:33:02.182] [INFO] cheese - inserting 1000 documents. first: William Augustus Brevoort Coolidge and last: Wikipedia:Articles for deletion/Lodestar -[2018-02-13T00:33:02.230] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:33:02.266] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:33:02.418] [INFO] cheese - inserting 1000 documents. first: Terry Blair (politician) and last: Minuscule 407 -[2018-02-13T00:33:02.426] [INFO] cheese - inserting 1000 documents. first: Abd Allah abu Amir and last: Category:2005 establishments in Michigan -[2018-02-13T00:33:02.461] [INFO] cheese - inserting 1000 documents. first: List of Micropolitan Statistical Areas and last: Category:Festivals established in 2001 -[2018-02-13T00:33:02.486] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:02.489] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:33:02.518] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:02.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Multilingual ranking March 2002 and last: Kolomenskoe -[2018-02-13T00:33:02.583] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:33:02.651] [INFO] cheese - inserting 1000 documents. first: Chlorocypha bambtoni and last: Samuel Fowler -[2018-02-13T00:33:02.703] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:02.721] [INFO] cheese - inserting 1000 documents. first: File:TGFTC.jpg and last: Category:Buildings and structures in Dubai -[2018-02-13T00:33:02.768] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:02.777] [INFO] cheese - inserting 1000 documents. first: Apostolic Vicariate of Villavicencio and last: XHTAZ-TDT -[2018-02-13T00:33:02.800] [INFO] cheese - inserting 1000 documents. first: Anton Krošl and last: Hash tree -[2018-02-13T00:33:02.811] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:33:02.827] [INFO] cheese - inserting 1000 documents. first: Ani-Mayhem! and last: Béla Guttman -[2018-02-13T00:33:02.839] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:02.888] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:33:02.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/File:Tachysphex specie.jpg and last: Joshua Jennison House -[2018-02-13T00:33:02.963] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:33:03.025] [INFO] cheese - inserting 1000 documents. first: Clinton Township, Ohio and last: Marxist Socialism -[2018-02-13T00:33:03.063] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:33:03.152] [INFO] cheese - inserting 1000 documents. first: Pausanias (disambiguation) and last: Tore tanzt -[2018-02-13T00:33:03.159] [INFO] cheese - inserting 1000 documents. first: Aysén Region and last: Women's Basketball Hall of Fame -[2018-02-13T00:33:03.174] [INFO] cheese - inserting 1000 documents. first: XHTAT-TDT and last: Category:Time travelers -[2018-02-13T00:33:03.193] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:03.199] [INFO] cheese - inserting 1000 documents. first: Alfa Romeo Tipo 33 and last: San Francisco School of Design -[2018-02-13T00:33:03.208] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:33:03.223] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:33:03.271] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:03.385] [INFO] cheese - inserting 1000 documents. first: Aidar Kumisbekov and last: File:Colors1.jpg -[2018-02-13T00:33:03.417] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:03.465] [INFO] cheese - inserting 1000 documents. first: List of recreational number theory topics and last: File:Club color pohang.png -[2018-02-13T00:33:03.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Missing encyclopedic articles/DNB Epitome 01 and last: Carboniferous (album) -[2018-02-13T00:33:03.614] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:33:03.644] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:33:03.691] [INFO] cheese - inserting 1000 documents. first: Robert Nosse and last: Wikipedia:Articles for deletion/Vocalocity -[2018-02-13T00:33:03.720] [INFO] cheese - inserting 1000 documents. first: National LIDAR Dataset – USA and last: Economic Club of Pittsburgh -[2018-02-13T00:33:03.776] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:33:03.779] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:33:03.901] [INFO] cheese - inserting 1000 documents. first: Pheidole oculata and last: File:Kent.gif -[2018-02-13T00:33:03.986] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:33:04.018] [INFO] cheese - inserting 1000 documents. first: Madam Rosmerta and last: Unia Wolnosci -[2018-02-13T00:33:04.090] [INFO] cheese - inserting 1000 documents. first: Konstantin Petrovich Mikhailov and last: 1511 (year) -[2018-02-13T00:33:04.120] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:33:04.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mrs. Malfoy, Mrs. Tavington, and Mrs. Keegan Present Themselves and last: Category:Sogn og Fjordane -[2018-02-13T00:33:04.144] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:33:04.231] [INFO] cheese - inserting 1000 documents. first: All by Myself (Grey's Anatomy) and last: Battle of Tuiteam-Tarbhach -[2018-02-13T00:33:04.247] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:33:04.310] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:33:04.374] [INFO] cheese - inserting 1000 documents. first: 1510 (year) and last: 552 (year) -[2018-02-13T00:33:04.388] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:33:04.424] [INFO] cheese - inserting 1000 documents. first: Strongylognathus minutus and last: Bombardier Bi-Level Coach -[2018-02-13T00:33:04.429] [INFO] cheese - inserting 1000 documents. first: Principle of minimal privilege and last: Right You Are, If You Think So -[2018-02-13T00:33:04.451] [INFO] cheese - inserting 1000 documents. first: Economy of Philadelphia and last: Karen E. Goulekas -[2018-02-13T00:33:04.467] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:33:04.508] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:33:04.529] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:33:04.583] [INFO] cheese - inserting 1000 documents. first: 551 (year) and last: Year 1831 -[2018-02-13T00:33:04.601] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:33:04.742] [INFO] cheese - inserting 1000 documents. first: Year 1830 and last: Year 863 -[2018-02-13T00:33:04.766] [INFO] cheese - batch complete in: 0.165 secs -[2018-02-13T00:33:04.791] [INFO] cheese - inserting 1000 documents. first: Battle of Tuttim-Tarwach and last: Non è mai troppo tardi (film 1953) -[2018-02-13T00:33:04.796] [INFO] cheese - inserting 1000 documents. first: Eunomia family and last: Multiplicity (film) -[2018-02-13T00:33:04.805] [INFO] cheese - inserting 1000 documents. first: Rivest-Shamir-Adleman Number and last: File:BradfordPA.PNG -[2018-02-13T00:33:04.824] [INFO] cheese - inserting 1000 documents. first: Right You Are (If You Think You Are) and last: Białobrzeski family -[2018-02-13T00:33:04.839] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:33:04.849] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:33:04.865] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:33:04.874] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:33:04.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cheryl Cran and last: Deh-e Pain, Ravar -[2018-02-13T00:33:04.903] [INFO] cheese - inserting 1000 documents. first: Year 862 and last: Sylph (Dungeons and Dragons) -[2018-02-13T00:33:04.918] [INFO] cheese - batch complete in: 0.152 secs -[2018-02-13T00:33:04.941] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:05.050] [INFO] cheese - inserting 1000 documents. first: Candlegrease bun and last: File:Roland XP-30 Synthesizer.JPG -[2018-02-13T00:33:05.109] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:33:05.149] [INFO] cheese - inserting 1000 documents. first: List of Dungeons and Dragons deities and last: Timeline of the presidency of Barack Obama (2016) -[2018-02-13T00:33:05.169] [INFO] cheese - inserting 1000 documents. first: Mohsen Mostafavi and last: Category:National Football League on the radio -[2018-02-13T00:33:05.180] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:33:05.214] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:33:05.248] [INFO] cheese - inserting 1000 documents. first: Domain Model and last: Category:Bodo nationalism -[2018-02-13T00:33:05.252] [INFO] cheese - inserting 1000 documents. first: Tsarevna Sophia Alekseyevna and last: ZX Spectrum character set -[2018-02-13T00:33:05.285] [INFO] cheese - inserting 1000 documents. first: Buss bar and last: EC 3.6.5.5 -[2018-02-13T00:33:05.297] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:33:05.299] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:05.332] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:33:05.471] [INFO] cheese - inserting 1000 documents. first: Tokyo Subway Attacks and last: Bjørnar Valstad -[2018-02-13T00:33:05.525] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:33:05.530] [INFO] cheese - inserting 1000 documents. first: 17th Earl of Oxford, Lord Bulbeck and last: Kármán line -[2018-02-13T00:33:05.582] [INFO] cheese - inserting 1000 documents. first: List of Ubisoft games and last: 15thOWS -[2018-02-13T00:33:05.638] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:33:05.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Ruby-crowned kinglet and last: 2016 New Zealand Open Grand Prix -[2018-02-13T00:33:05.674] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:33:05.786] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:33:05.845] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Terri Clark (author) and last: George McCall Courts -[2018-02-13T00:33:05.894] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:33:05.998] [INFO] cheese - inserting 1000 documents. first: Post ship and last: Quanzhen School -[2018-02-13T00:33:06.022] [INFO] cheese - inserting 1000 documents. first: CDC14 and last: File:Avolites Logo.svg -[2018-02-13T00:33:06.072] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:06.110] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:33:06.262] [INFO] cheese - inserting 1000 documents. first: Dielectric constant of vacuum and last: File:3lbs title card.jpg -[2018-02-13T00:33:06.309] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:06.351] [INFO] cheese - inserting 1000 documents. first: Faliyu and last: De Finetti’s representation theorem -[2018-02-13T00:33:06.370] [INFO] cheese - inserting 1000 documents. first: File:JoeHenry-FiremansWedding.jpg and last: File:Astronbelt-arcadegame.jpg -[2018-02-13T00:33:06.374] [INFO] cheese - inserting 1000 documents. first: Current account mortgage and last: RBW -[2018-02-13T00:33:06.386] [INFO] cheese - inserting 1000 documents. first: St Neots Priory and last: Vladimir Propp -[2018-02-13T00:33:06.417] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:33:06.437] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:33:06.446] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:33:06.492] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:33:06.642] [INFO] cheese - inserting 1000 documents. first: File:Anna-Rossinelli-Marylou.jpg and last: Lumding–Dibrugarh section -[2018-02-13T00:33:06.678] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:33:06.749] [INFO] cheese - inserting 1000 documents. first: Illinois Open and last: Courtney Love Returns -[2018-02-13T00:33:06.799] [INFO] cheese - inserting 1000 documents. first: Jean-Paul Faber and last: Category:People from Drâa-Tafilalet -[2018-02-13T00:33:06.799] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:33:06.862] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:33:06.865] [INFO] cheese - inserting 1000 documents. first: File:Bandore1.gif and last: File:Look Press.jpg -[2018-02-13T00:33:06.865] [INFO] cheese - inserting 1000 documents. first: Hypermutation and last: Gunther Lutjens -[2018-02-13T00:33:06.929] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:06.949] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:33:06.972] [INFO] cheese - inserting 1000 documents. first: Cladeiodon and last: Boogie Shoes -[2018-02-13T00:33:07.046] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:33:07.095] [INFO] cheese - inserting 1000 documents. first: 1983 K-League and last: Fossil-fuelled power station -[2018-02-13T00:33:07.155] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:07.164] [INFO] cheese - inserting 1000 documents. first: William E. Colby and last: A Tale of Two Cities (1935) -[2018-02-13T00:33:07.229] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:33:07.236] [INFO] cheese - inserting 1000 documents. first: Brandon Williams (cornerback, born 1980) and last: File:Christougenna with katy.jpg -[2018-02-13T00:33:07.265] [INFO] cheese - inserting 1000 documents. first: Liposcelis and last: Economic liberalisation in Myanmar -[2018-02-13T00:33:07.276] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:07.314] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:33:07.334] [INFO] cheese - inserting 1000 documents. first: Bobrowniki, West Pomeranian Voivodeship and last: Nałęcze, West Pomeranian Voivodeship -[2018-02-13T00:33:07.376] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:07.502] [INFO] cheese - inserting 1000 documents. first: 2013 Power Horse Cup – Doubles and last: Template:POTD protected/2013-05-19 -[2018-02-13T00:33:07.503] [INFO] cheese - inserting 1000 documents. first: Philippines Campaign (1944–1945) and last: Udaipur -[2018-02-13T00:33:07.538] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:07.542] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:33:07.639] [INFO] cheese - inserting 1000 documents. first: Akkar and last: Pool cue -[2018-02-13T00:33:07.668] [INFO] cheese - inserting 1000 documents. first: Delivery (song) and last: Peyrolles, Gard -[2018-02-13T00:33:07.691] [INFO] cheese - inserting 1000 documents. first: Steymann v Staatssecretaris van Justitie and last: Margaret Pattens -[2018-02-13T00:33:07.709] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:33:07.713] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:33:07.753] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:07.813] [INFO] cheese - inserting 1000 documents. first: Orzeń and last: File:Full Metal Jacket poster.jpg -[2018-02-13T00:33:07.821] [INFO] cheese - inserting 1000 documents. first: Software Automatic Mouth and last: Garden centre -[2018-02-13T00:33:07.846] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:07.880] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:33:07.960] [INFO] cheese - inserting 1000 documents. first: List of counties and cities in Virginia and last: Cripple Creek (film) -[2018-02-13T00:33:08.016] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:08.026] [INFO] cheese - inserting 1000 documents. first: Maximum Entropy and last: Murphy's World -[2018-02-13T00:33:08.082] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Wyoming Highway 74 and last: 2012 Euskaltel-Euskadi season -[2018-02-13T00:33:08.093] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:08.141] [INFO] cheese - inserting 1000 documents. first: Pairs figure skater and last: Mykola Tomyn -[2018-02-13T00:33:08.150] [INFO] cheese - inserting 1000 documents. first: Sandy Cohen (ice hockey) and last: Perigonia caryae -[2018-02-13T00:33:08.182] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:33:08.279] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:33:08.304] [INFO] cheese - inserting 1000 documents. first: Lagrange interpolation polynomial and last: Second lake, nova scotia -[2018-02-13T00:33:08.312] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:33:08.388] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:33:08.600] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Swiss films and last: Breakfast at Sweethearts (song) -[2018-02-13T00:33:08.637] [INFO] cheese - inserting 1000 documents. first: Amarpal Singh Ajnala and last: Grand Prix racing -[2018-02-13T00:33:08.650] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:33:08.660] [INFO] cheese - inserting 1000 documents. first: SpaceShipOne flight 13P and last: Edhom -[2018-02-13T00:33:08.687] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:33:08.700] [INFO] cheese - inserting 1000 documents. first: Corston, Somersetshire and last: Wikipedia:WikiProject Spam/LinkReports/spleticna.si -[2018-02-13T00:33:08.710] [INFO] cheese - inserting 1000 documents. first: The Wish to Be An Indian and last: The Earth, A Small Man, His Dog And A Chicken -[2018-02-13T00:33:08.726] [INFO] cheese - inserting 1000 documents. first: Deep mine and last: Weezer ("The Blue Album") -[2018-02-13T00:33:08.735] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:33:08.740] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:33:08.752] [INFO] cheese - inserting 1000 documents. first: Lakes in Yukon and last: Wikipedia:Articles for deletion/Criticism of Noam Chomsky (2nd nomination) -[2018-02-13T00:33:08.776] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:33:08.785] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:33:08.827] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:09.062] [INFO] cheese - inserting 1000 documents. first: Grind it! Records and last: Category:People from Coolidge, Arizona -[2018-02-13T00:33:09.091] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Criticism of Hugo Chávez (3nd nomination) and last: Columbarium altocanalis -[2018-02-13T00:33:09.098] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by O Muel and last: India cricket team in Zimbabwe in 2016 -[2018-02-13T00:33:09.110] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:33:09.141] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/spleticna.si and last: Orange Bowl (tennis) -[2018-02-13T00:33:09.144] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:33:09.160] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:33:09.203] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:33:09.221] [INFO] cheese - inserting 1000 documents. first: WRKZ and last: Andreja Gomboc -[2018-02-13T00:33:09.224] [INFO] cheese - inserting 1000 documents. first: The Cream & The Crock - The Best Of You Am I and last: Itamar Batista da Silva -[2018-02-13T00:33:09.239] [INFO] cheese - inserting 1000 documents. first: Bangor (Wales) railway station and last: The Ground of Arts -[2018-02-13T00:33:09.281] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:33:09.281] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:33:09.306] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:33:09.566] [INFO] cheese - inserting 1000 documents. first: Columbarium mariae and last: Black supremism -[2018-02-13T00:33:09.584] [INFO] cheese - inserting 1000 documents. first: N-methylpyridinium and last: Template:Santeros de Aguada roster -[2018-02-13T00:33:09.607] [INFO] cheese - inserting 1000 documents. first: The Way (song) and last: Land of Black Gold (film) -[2018-02-13T00:33:09.618] [INFO] cheese - inserting 1000 documents. first: Adhemarius daphne and last: Pablo Barnansi -[2018-02-13T00:33:09.637] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:09.728] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:09.732] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:33:09.756] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:33:09.861] [INFO] cheese - inserting 1000 documents. first: UAAP Volleyball Champions and last: Great Dodford, Worcestershire -[2018-02-13T00:33:09.904] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:33:09.922] [INFO] cheese - inserting 1000 documents. first: Arithmetick: or, The Grounde of Arts and last: Image stacking -[2018-02-13T00:33:10.026] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:33:10.056] [INFO] cheese - inserting 1000 documents. first: Super Deformed and last: Franklin MacVeagh -[2018-02-13T00:33:10.150] [INFO] cheese - inserting 1000 documents. first: Template:Life graphical timeline and last: Peter Morcom -[2018-02-13T00:33:10.175] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:33:10.214] [INFO] cheese - inserting 1000 documents. first: File:ARS Winnenden.png and last: Jean-Felix Tchicaya -[2018-02-13T00:33:10.279] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:33:10.270] [INFO] cheese - inserting 1000 documents. first: Compé Anansi and last: Art Powell (American football) -[2018-02-13T00:33:10.336] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:33:10.388] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:33:10.410] [INFO] cheese - inserting 1000 documents. first: The Adventures of Tintin: Land of Black Gold and last: Picture It! 2000 -[2018-02-13T00:33:10.530] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:33:10.603] [INFO] cheese - inserting 1000 documents. first: Dąbrówka Kościelna, Greater Poland Voivodeship and last: Saturday Night Live (season 19) -[2018-02-13T00:33:10.680] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:33:10.765] [INFO] cheese - inserting 1000 documents. first: File:Terracina-comune.jpg and last: Downfall (Solitude Aeturnus album) -[2018-02-13T00:33:10.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for permissions/Denied/January 2016 and last: Aaron Frenkel -[2018-02-13T00:33:10.799] [INFO] cheese - inserting 1000 documents. first: Edm. Harbitz and last: Koç Lisesi -[2018-02-13T00:33:10.810] [INFO] cheese - inserting 1000 documents. first: Mordekhay and last: Emaanuel de Witte -[2018-02-13T00:33:10.812] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:33:10.814] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:33:10.853] [INFO] cheese - inserting 1000 documents. first: Puntzi Mountain AS and last: Wikipedia:Join Wikipedia! -[2018-02-13T00:33:10.859] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:33:10.905] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:33:10.948] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:33:11.047] [INFO] cheese - inserting 1000 documents. first: Picture It! 98 and last: Bad video games -[2018-02-13T00:33:11.119] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:33:11.214] [INFO] cheese - inserting 1000 documents. first: B splines and last: Wikipedia:Reference desk/Archives/Mathematics/2007 August 10 -[2018-02-13T00:33:11.258] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:11.310] [INFO] cheese - inserting 1000 documents. first: Category:Squats in Spain and last: John Ruch -[2018-02-13T00:33:11.345] [INFO] cheese - inserting 1000 documents. first: Gerald Curatola and last: Eddie DelGrosso -[2018-02-13T00:33:11.352] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:11.403] [INFO] cheese - inserting 1000 documents. first: North Dakota Highway Patrol and last: A Vision of Judgment -[2018-02-13T00:33:11.448] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:11.524] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:11.552] [INFO] cheese - inserting 1000 documents. first: Pulgoki-jip and last: SVREP -[2018-02-13T00:33:11.576] [INFO] cheese - inserting 1000 documents. first: Category:Northern Rugby Football League seasons and last: Bhadaas -[2018-02-13T00:33:11.632] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:11.703] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:11.834] [INFO] cheese - inserting 1000 documents. first: Arboleas and last: The Tale of Kieu -[2018-02-13T00:33:11.924] [INFO] cheese - inserting 1000 documents. first: Controlled interface and last: Wikipedia:Articles for deletion/Zalefar -[2018-02-13T00:33:11.931] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T00:33:12.017] [INFO] cheese - inserting 1000 documents. first: Template:3OH!3 songs and last: File:Terror Trail poster.jpg -[2018-02-13T00:33:12.025] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:12.081] [INFO] cheese - inserting 1000 documents. first: List of provincial historic sites of Alberta and last: Jean Cousin (composer) -[2018-02-13T00:33:12.113] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:33:12.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Philadelphia articles by quality/6 and last: Plesetsk Cosmodrome Site 43 -[2018-02-13T00:33:12.241] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:33:12.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Antony Crockett and last: Shinhwa videography -[2018-02-13T00:33:12.251] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:33:12.311] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:33:12.318] [INFO] cheese - inserting 1000 documents. first: Khulan khatun and last: Flavian Aponso -[2018-02-13T00:33:12.365] [INFO] cheese - inserting 1000 documents. first: Kattur, Thiruvarur district and last: AD 1128 -[2018-02-13T00:33:12.387] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:33:12.403] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:33:12.528] [INFO] cheese - inserting 1000 documents. first: Reba episodes and last: Anna fantastic -[2018-02-13T00:33:12.550] [INFO] cheese - inserting 1000 documents. first: AD 1127 and last: Tokmakov -[2018-02-13T00:33:12.575] [INFO] cheese - batch complete in: 0.188 secs -[2018-02-13T00:33:12.576] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:12.648] [INFO] cheese - inserting 1000 documents. first: Sulawesi Bronze Bush Skink and last: Bustantigo -[2018-02-13T00:33:12.706] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:33:12.719] [INFO] cheese - inserting 1000 documents. first: USS Plunger (SS-2) and last: Majority Leader of the House of Representatives -[2018-02-13T00:33:12.781] [INFO] cheese - inserting 1000 documents. first: Alexis de Tocqueville Center for Political and Legal Thought and last: Guillaume Mathieu, comte Dumas -[2018-02-13T00:33:12.792] [INFO] cheese - inserting 1000 documents. first: Tolombeh-ye 22 Bahman (disambiguation) and last: Category:People from Aousserd -[2018-02-13T00:33:12.795] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:33:12.852] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:33:12.861] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:33:12.920] [INFO] cheese - inserting 1000 documents. first: StB and last: BCE Emergis -[2018-02-13T00:33:13.008] [INFO] cheese - inserting 1000 documents. first: Holyrood Church, Swindon and last: Episcopal Bishop of Pittsburgh -[2018-02-13T00:33:13.038] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:13.074] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:13.119] [INFO] cheese - inserting 1000 documents. first: Aranwë and last: Robert B. Campbell -[2018-02-13T00:33:13.164] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:33:13.180] [INFO] cheese - inserting 1000 documents. first: 1981 Custom Credit Australian Indoor Championships – Doubles and last: Battle of Barry (folklore) -[2018-02-13T00:33:13.237] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:13.423] [INFO] cheese - inserting 1000 documents. first: Yoojimboo (movie) and last: Parthenon marbles -[2018-02-13T00:33:13.427] [INFO] cheese - inserting 1000 documents. first: Category:People from Bryson City, North Carolina and last: 1929 Yugoslav First League -[2018-02-13T00:33:13.454] [INFO] cheese - inserting 1000 documents. first: Category:People from Augustenborg, Denmark and last: Template:ALeagueVenue Suncorp -[2018-02-13T00:33:13.463] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Bishop of Pittsburgh and last: Mein Kampf in the Arabic language -[2018-02-13T00:33:13.474] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:33:13.476] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:33:13.502] [INFO] cheese - inserting 1000 documents. first: Acustic and last: Melzer See -[2018-02-13T00:33:13.505] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:33:13.517] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:13.545] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:33:13.556] [INFO] cheese - inserting 1000 documents. first: Capital Research & Management Company and last: Great Highland Bagpipe -[2018-02-13T00:33:13.631] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:13.635] [INFO] cheese - inserting 1000 documents. first: William Elliott (American politician) and last: Nebiryraw I -[2018-02-13T00:33:13.694] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:13.806] [INFO] cheese - inserting 1000 documents. first: AunaCable and last: Lake Schmachter -[2018-02-13T00:33:13.829] [INFO] cheese - inserting 1000 documents. first: CBB17 and last: Vanitha (disambiguation) -[2018-02-13T00:33:13.846] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:33:13.868] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:33:13.889] [INFO] cheese - inserting 1000 documents. first: 1930 Yugoslav First League and last: Subhi Bay Barakat al-Khalidi -[2018-02-13T00:33:13.941] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:33:13.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Robson Chavez Santana and last: Anti-Vietnam War activism -[2018-02-13T00:33:14.017] [INFO] cheese - inserting 1000 documents. first: Gstreamer and last: Samuel C. Hyde -[2018-02-13T00:33:14.033] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:33:14.052] [INFO] cheese - inserting 1000 documents. first: Nicole Genier and last: Trinidad and Tobago general election, 1956 -[2018-02-13T00:33:14.088] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:33:14.111] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:33:14.119] [INFO] cheese - inserting 1000 documents. first: John O'Keefe and last: William Semple Green -[2018-02-13T00:33:14.283] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:33:14.315] [INFO] cheese - inserting 1000 documents. first: Großer Prebelow Lake and last: File:For Better or Worse coming out panel.PNG -[2018-02-13T00:33:14.393] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:33:14.400] [INFO] cheese - inserting 1000 documents. first: Category:Manufacturing companies established in 1891 and last: Kcee (disambiguation) -[2018-02-13T00:33:14.474] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:33:14.505] [INFO] cheese - inserting 1000 documents. first: Priory Green Primary School and last: Ranks of the French Navy -[2018-02-13T00:33:14.571] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:33:14.647] [INFO] cheese - inserting 1000 documents. first: Peptidyl-glutamate 4-carboxylase and last: Pyreinoye gas field -[2018-02-13T00:33:14.668] [INFO] cheese - inserting 1000 documents. first: Let's Polka! and last: Wikipedia:Administrators' noticeboard/IncidentArchive284 -[2018-02-13T00:33:14.697] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:33:14.752] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:33:14.819] [INFO] cheese - inserting 1000 documents. first: Kennedy Polamalu and last: Quenby Fung -[2018-02-13T00:33:14.821] [INFO] cheese - inserting 1000 documents. first: Esteé Lauder and last: China (Vangelis album) -[2018-02-13T00:33:14.825] [INFO] cheese - inserting 1000 documents. first: Rana bolavensis and last: Buluan Lake -[2018-02-13T00:33:14.845] [INFO] cheese - inserting 1000 documents. first: Kenmore House (disambiguation) and last: Portal:Prehistory of North America/DYK/15 -[2018-02-13T00:33:14.861] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:33:14.878] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:14.894] [INFO] cheese - inserting 1000 documents. first: Anguissola and last: Wegie -[2018-02-13T00:33:14.897] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:33:14.901] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:33:14.954] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:15.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/WDL/Participants and last: Jonaicha khurd -[2018-02-13T00:33:15.170] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:33:15.201] [INFO] cheese - inserting 1000 documents. first: File:OPENING OF THE ACCESSIBLE PATHWAY AT MOUNT LAVINIA POST OFFICE .JPG and last: Playoff (disambiguation) -[2018-02-13T00:33:15.241] [INFO] cheese - inserting 1000 documents. first: File:Gb 16loverslane.JPG and last: Category:Asian film director stubs -[2018-02-13T00:33:15.264] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:33:15.363] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:33:15.445] [INFO] cheese - inserting 1000 documents. first: Re-cap and last: Wikipedia:Articles for deletion/Elective surgery (male-to-female) -[2018-02-13T00:33:15.505] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:33:15.507] [INFO] cheese - inserting 1000 documents. first: Feysville, Western Australia and last: Eddy Ham -[2018-02-13T00:33:15.514] [INFO] cheese - inserting 1000 documents. first: Portal:Prehistory of North America/DYK/16 and last: Advanced Dungeons and Dragons Player's Handbook -[2018-02-13T00:33:15.569] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:33:15.581] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:33:15.663] [INFO] cheese - inserting 1000 documents. first: Frontera (2014 film) and last: Nemontemi -[2018-02-13T00:33:15.716] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:33:15.718] [INFO] cheese - inserting 1000 documents. first: Jiganski Ulus and last: Tercentenary Lectures -[2018-02-13T00:33:15.800] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:33:15.818] [INFO] cheese - inserting 1000 documents. first: Advanced Dungeons and Dragons Player's Handbook 1st edition and last: Shedu (Dungeons and Dragons) -[2018-02-13T00:33:15.831] [INFO] cheese - inserting 1000 documents. first: Diocese of Katiola and last: File:AFC Wallingford Badge.png -[2018-02-13T00:33:15.839] [INFO] cheese - inserting 1000 documents. first: Ice cream headache and last: R. Pacheco -[2018-02-13T00:33:15.845] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:33:15.894] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:33:15.948] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T00:33:16.043] [INFO] cheese - inserting 1000 documents. first: Infinity chili and last: Distributed Access Control System (DACS) -[2018-02-13T00:33:16.083] [INFO] cheese - inserting 1000 documents. first: Jaigaon and last: Wikipedia:Articles for deletion/Wikitrip -[2018-02-13T00:33:16.118] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:16.214] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:33:16.246] [INFO] cheese - inserting 1000 documents. first: Georges-Robert Lefort and last: List of hospitals in Indianapolis -[2018-02-13T00:33:16.284] [INFO] cheese - inserting 1000 documents. first: Okamura island and last: Collège Saint Joseph – Antoura -[2018-02-13T00:33:16.301] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:33:16.346] [INFO] cheese - inserting 1000 documents. first: File:NIS lynyrd.png and last: Angel Cerenkov -[2018-02-13T00:33:16.346] [INFO] cheese - inserting 1000 documents. first: Shifter (Dungeons and Dragons) and last: Cicely Blair -[2018-02-13T00:33:16.347] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:33:16.413] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:33:16.483] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:33:16.655] [INFO] cheese - inserting 1000 documents. first: Iowa courthouses and last: List of major power stations in Gansu -[2018-02-13T00:33:16.706] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:33:16.721] [INFO] cheese - inserting 1000 documents. first: Bond van Vrije Liberalen and last: USFPS -[2018-02-13T00:33:16.738] [INFO] cheese - inserting 1000 documents. first: Imperial Valley lettuce strike of 1930 and last: Buddy (Italian singer) -[2018-02-13T00:33:16.776] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:33:16.786] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:16.795] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Otsego County, Michigan and last: Weston Doty -[2018-02-13T00:33:16.816] [INFO] cheese - inserting 1000 documents. first: Bush administration (2000) and last: Category:Satirical television programmes -[2018-02-13T00:33:16.846] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:16.882] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:33:16.947] [INFO] cheese - inserting 1000 documents. first: Actinomyces glaucescens and last: Wikipedia:Articles for deletion/Ashlei Nemer -[2018-02-13T00:33:16.996] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:33:17.010] [INFO] cheese - inserting 1000 documents. first: Trod and last: Wikipedia:Reference desk/Archives/Entertainment/2007 August 12 -[2018-02-13T00:33:17.074] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:17.084] [INFO] cheese - inserting 1000 documents. first: Tahar Ben Ammar and last: Elizabeth Ellery Bailey -[2018-02-13T00:33:17.139] [INFO] cheese - inserting 1000 documents. first: Category:Belgian amputees and last: Wikipedia:WikiProject American music/tasks/Under review/FSC -[2018-02-13T00:33:17.142] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:17.187] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:33:17.248] [INFO] cheese - inserting 1000 documents. first: US Post Office (Westhampton Beach, New York) and last: Canadian Biography Online -[2018-02-13T00:33:17.296] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:33:17.301] [INFO] cheese - inserting 1000 documents. first: Paeonia californica and last: Botanical Beach, British Columbia -[2018-02-13T00:33:17.308] [INFO] cheese - inserting 1000 documents. first: 2014-15 DePaul Blue Demons men's basketball team and last: Zachary lazar -[2018-02-13T00:33:17.349] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:17.368] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:33:17.450] [INFO] cheese - inserting 1000 documents. first: File:Last DanceClare.jpg and last: Portal:Syracuse, New York/Old postcards/157 -[2018-02-13T00:33:17.479] [INFO] cheese - inserting 1000 documents. first: U.G. Krishnamurti and last: The Witness (1969 French film) -[2018-02-13T00:33:17.489] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:33:17.527] [INFO] cheese - inserting 1000 documents. first: Rinjūken Akugata and last: KISS IN THE SKY -[2018-02-13T00:33:17.542] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject American Old West/tasks/Under review/FSC and last: 3-hydroxydecanoyl-(acyl-carrier-protein) dehydratase -[2018-02-13T00:33:17.547] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:17.569] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:33:17.601] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:33:17.746] [INFO] cheese - inserting 1000 documents. first: Template:2011 Australian International Rules Team and last: Mbwana Samatta -[2018-02-13T00:33:17.793] [INFO] cheese - inserting 1000 documents. first: Inward and last: Iberoamerican Association of Postgraduate Universities -[2018-02-13T00:33:17.811] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:33:17.895] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:33:18.009] [INFO] cheese - inserting 1000 documents. first: Thomas Morey and last: Leo Burke -[2018-02-13T00:33:18.034] [INFO] cheese - inserting 1000 documents. first: Brecon RFC and last: Gladiators (UK) -[2018-02-13T00:33:18.076] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:33:18.078] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:18.140] [INFO] cheese - inserting 1000 documents. first: Eystein Ivarsson and last: Elana Eden -[2018-02-13T00:33:18.182] [INFO] cheese - inserting 1000 documents. first: LM 22A4 and last: End Productions -[2018-02-13T00:33:18.190] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:33:18.223] [INFO] cheese - inserting 1000 documents. first: EC 4.2.1.60 and last: Sunnyfields (Simeon, Virginia) -[2018-02-13T00:33:18.255] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:33:18.298] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:33:18.303] [INFO] cheese - inserting 1000 documents. first: Virginia-class cruiser and last: Transdermal patch -[2018-02-13T00:33:18.381] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:33:18.505] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for comment/User names/Index and last: Proletariet -[2018-02-13T00:33:18.540] [INFO] cheese - inserting 1000 documents. first: Super Street Fighter and last: Summer Hill railway station, Sydney -[2018-02-13T00:33:18.552] [INFO] cheese - inserting 1000 documents. first: File:Tuskegee Experiments (Byron).jpg and last: Knjaz Miloš a.d. -[2018-02-13T00:33:18.554] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:18.593] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:33:18.607] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:33:18.650] [INFO] cheese - inserting 1000 documents. first: File:Red Red Meat - Jimmywine Majestic.jpg and last: Template:ISO 3166 code Portugal Madeira -[2018-02-13T00:33:18.697] [INFO] cheese - inserting 1000 documents. first: Portal:Orissa/Selected picture/5 and last: Counter steer -[2018-02-13T00:33:18.700] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:33:18.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jaylen D Bledsoe and last: Martin (1999 cyclone) -[2018-02-13T00:33:18.761] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:33:18.776] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:18.939] [INFO] cheese - inserting 1000 documents. first: Palk Straight and last: János Koppány -[2018-02-13T00:33:18.981] [INFO] cheese - inserting 1000 documents. first: Conops vesicularis and last: File:InTheCountryOfLastThings.jpg -[2018-02-13T00:33:19.029] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:33:19.100] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:33:19.145] [INFO] cheese - inserting 1000 documents. first: USS Roosevelt (DDG-80) and last: Repeat --- The Best of Jethro Tull --- Vol II -[2018-02-13T00:33:19.147] [INFO] cheese - inserting 1000 documents. first: Ibrox Primary School and last: Burns T. Walling -[2018-02-13T00:33:19.277] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:33:19.301] [INFO] cheese - inserting 1000 documents. first: Lalisha nurani and last: Noahs Ark -[2018-02-13T00:33:19.301] [INFO] cheese - inserting 1000 documents. first: Martin (1986 cyclone) and last: Template:R from included subject -[2018-02-13T00:33:19.309] [INFO] cheese - inserting 1000 documents. first: Martial Premat and last: National Law Center on Homelessness and Poverty -[2018-02-13T00:33:19.361] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T00:33:19.381] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:33:19.417] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:33:19.518] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:33:19.790] [INFO] cheese - inserting 1000 documents. first: Vladimir Highway and last: Peire de la Gavarana -[2018-02-13T00:33:19.880] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:33:19.894] [INFO] cheese - inserting 1000 documents. first: Category:Kerry Ellis and last: Oklahoma (wine) -[2018-02-13T00:33:19.961] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:33:19.977] [INFO] cheese - inserting 1000 documents. first: 1974 Individual Ice Speedway World Championship and last: Driving license in the Netherlands -[2018-02-13T00:33:19.981] [INFO] cheese - inserting 1000 documents. first: Nanawa Station and last: Uroconger erythraeus -[2018-02-13T00:33:20.057] [INFO] cheese - inserting 1000 documents. first: Muslim Educational Society and last: Vineland nj -[2018-02-13T00:33:20.058] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:33:20.063] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:33:20.139] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1976 Summer Olympics – Men's 200 metre breaststroke and last: International Harvester corporation -[2018-02-13T00:33:20.147] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:33:20.226] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:33:20.383] [INFO] cheese - inserting 1000 documents. first: Peire de la Cà Varana and last: Socialist Register -[2018-02-13T00:33:20.413] [INFO] cheese - inserting 1000 documents. first: Category:2008 in kickboxing and last: ISIRI 6788 -[2018-02-13T00:33:20.430] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:33:20.453] [INFO] cheese - inserting 1000 documents. first: Liar's Poker and last: Charles M. Price -[2018-02-13T00:33:20.474] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:33:20.502] [INFO] cheese - inserting 1000 documents. first: Category:Polish Servants of God and last: File:TheMeaningOfAnxiety.jpg -[2018-02-13T00:33:20.540] [INFO] cheese - inserting 1000 documents. first: Aqua Pura and last: Goodman's Law -[2018-02-13T00:33:20.546] [INFO] cheese - batch complete in: 1.185 secs -[2018-02-13T00:33:20.562] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:20.654] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:20.694] [INFO] cheese - inserting 1000 documents. first: Bonus tax and last: File:Illsaharemkeeper.jpg -[2018-02-13T00:33:20.750] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:33:20.804] [INFO] cheese - inserting 1000 documents. first: International Harvester Corporation and last: Frenstat -[2018-02-13T00:33:20.836] [INFO] cheese - inserting 1000 documents. first: Ričardas Zdančius and last: National Energy Foundation -[2018-02-13T00:33:20.854] [INFO] cheese - inserting 1000 documents. first: DWSY and last: Bellator 44 -[2018-02-13T00:33:20.857] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:33:20.894] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:33:20.983] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:33:21.095] [INFO] cheese - inserting 1000 documents. first: Alan MacRuairi and last: List of fictional United States presidencies of historical figures (A–G) -[2018-02-13T00:33:21.109] [INFO] cheese - inserting 1000 documents. first: János Székely (writer) and last: Grangnolo -[2018-02-13T00:33:21.184] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:21.210] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:33:21.299] [INFO] cheese - inserting 1000 documents. first: Lai neir and last: Björneborgarnas marsch -[2018-02-13T00:33:21.349] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:33:21.379] [INFO] cheese - inserting 1000 documents. first: Charles Melvin Price and last: USAir Arena -[2018-02-13T00:33:21.446] [INFO] cheese - inserting 1000 documents. first: Template:User Rājasthān and last: Lofthouse (disambiguation) -[2018-02-13T00:33:21.447] [INFO] cheese - inserting 1000 documents. first: Opština Opovo and last: Lynnhaven Roads -[2018-02-13T00:33:21.450] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:33:21.500] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:33:21.503] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:33:21.575] [INFO] cheese - inserting 1000 documents. first: File:Night Ranger.jpg and last: Liverpool Warriors -[2018-02-13T00:33:21.629] [INFO] cheese - inserting 1000 documents. first: List of fictional United States presidencies of historical figures (H–J) and last: Johann Scheubel -[2018-02-13T00:33:21.630] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:33:21.654] [INFO] cheese - inserting 1000 documents. first: Bulbourethral and last: Sir John Habakkuk -[2018-02-13T00:33:21.678] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:33:21.729] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:33:21.743] [INFO] cheese - inserting 1000 documents. first: Gertrude Lübbe-Wolff and last: Moya Brennan Band -[2018-02-13T00:33:21.787] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:33:21.851] [INFO] cheese - inserting 1000 documents. first: Dorset Police Authority and last: Paparazzi eye in the dark -[2018-02-13T00:33:21.898] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:33:21.920] [INFO] cheese - inserting 1000 documents. first: List of athletics clubs in Luxembourg and last: Feelin' Sorry...For All The Hearts We've Broken -[2018-02-13T00:33:21.985] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:33:22.060] [INFO] cheese - inserting 1000 documents. first: Gustave Pelgrims and last: Maggie Mancuso -[2018-02-13T00:33:22.065] [INFO] cheese - inserting 1000 documents. first: True real mode and last: File:Portsmouth Naval Prison.jpg -[2018-02-13T00:33:22.099] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:33:22.107] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:22.138] [INFO] cheese - inserting 1000 documents. first: File:CJIQ-FM.png and last: Hierodula fruhstorferi -[2018-02-13T00:33:22.177] [INFO] cheese - inserting 1000 documents. first: Monthélie (AOC) and last: Category:States and territories disestablished in 1792 -[2018-02-13T00:33:22.181] [INFO] cheese - inserting 1000 documents. first: Slovak People's Party and last: Gaunts ghosts -[2018-02-13T00:33:22.222] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:22.235] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:33:22.270] [INFO] cheese - inserting 1000 documents. first: Saint Matfiy and last: Binary pase shift keying -[2018-02-13T00:33:22.275] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:33:22.343] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:33:22.534] [INFO] cheese - inserting 1000 documents. first: Fever In Fever Out and last: Tourneville -[2018-02-13T00:33:22.612] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:33:22.622] [INFO] cheese - inserting 1000 documents. first: Superior Catholic Finger and last: Eid Church (Rauma) -[2018-02-13T00:33:22.681] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:33:22.682] [INFO] cheese - inserting 1000 documents. first: Category:States and territories disestablished in 1833 and last: Lopinavir/ritonavir -[2018-02-13T00:33:22.699] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sajwan Nagar Mitthepur and last: Saleem Mairaj -[2018-02-13T00:33:22.740] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:33:22.757] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:33:22.793] [INFO] cheese - inserting 1000 documents. first: George Bowen (footballer) and last: Wikipedia:Articles for deletion/Carpatair Flight 128 -[2018-02-13T00:33:22.851] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:33:22.984] [INFO] cheese - inserting 1000 documents. first: Billingsdal and last: George Wallace (disambiguation) -[2018-02-13T00:33:22.998] [INFO] cheese - inserting 1000 documents. first: Kotomitsuki and last: Redruth RFC -[2018-02-13T00:33:23.002] [INFO] cheese - inserting 1000 documents. first: Holm Church and last: 2009 APRA Silver Scroll Awards -[2018-02-13T00:33:23.041] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:33:23.059] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:33:23.061] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:33:23.075] [INFO] cheese - inserting 1000 documents. first: Cornelius O. Jansen and last: T. Gehrels -[2018-02-13T00:33:23.095] [INFO] cheese - inserting 1000 documents. first: Latham Trimotor and last: Cabaret (2015 film) -[2018-02-13T00:33:23.104] [INFO] cheese - inserting 1000 documents. first: Grand Sassiere and last: Bers slice -[2018-02-13T00:33:23.145] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:33:23.147] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:33:23.175] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:23.235] [INFO] cheese - inserting 1000 documents. first: File:Maqbaratoshoara09.jpg and last: Cristina Favre -[2018-02-13T00:33:23.277] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:33:23.453] [INFO] cheese - inserting 1000 documents. first: Interactive Systems and last: Category:Over 30s v Under 30s cricketers -[2018-02-13T00:33:23.456] [INFO] cheese - inserting 1000 documents. first: Alfred Marten and last: Dowty, David -[2018-02-13T00:33:23.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alternative Living and last: .lnk -[2018-02-13T00:33:23.489] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:33:23.501] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:33:23.530] [INFO] cheese - inserting 1000 documents. first: Category:New Taipei Members of the Legislative Yuan and last: Iranian Basketball Super League 1998–99 -[2018-02-13T00:33:23.533] [INFO] cheese - inserting 1000 documents. first: Annetta and last: Bartlett, TN -[2018-02-13T00:33:23.538] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:33:23.579] [INFO] cheese - inserting 1000 documents. first: Anthony John La Rose and last: Lecithocera tumidosa -[2018-02-13T00:33:23.587] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:23.595] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:23.707] [INFO] cheese - inserting 1000 documents. first: Epoque hotels and last: Khanbal -[2018-02-13T00:33:23.713] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:33:23.759] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:33:23.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Syracuse to Washington, DC flights and last: Bertsch-Oceanview, CA -[2018-02-13T00:33:23.956] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:33:24.002] [INFO] cheese - inserting 1000 documents. first: Aleksi Makela and last: Chah Zard 1 -[2018-02-13T00:33:24.018] [INFO] cheese - inserting 1000 documents. first: Elitis and last: Picotamide -[2018-02-13T00:33:24.044] [INFO] cheese - inserting 1000 documents. first: Iranian Basketball Super League 1999–00 and last: Grimoire of exalted deeds -[2018-02-13T00:33:24.051] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:33:24.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for discussion/2016 January 12 and last: Category:Sports leagues established in 1886 -[2018-02-13T00:33:24.085] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:24.152] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:33:24.164] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:33:24.197] [INFO] cheese - inserting 1000 documents. first: Wattenmeer and last: Boyd County, KY -[2018-02-13T00:33:24.227] [INFO] cheese - inserting 1000 documents. first: Acrochordonichthys pachyderma and last: Murphy Lake (Price County, Wisconsin) -[2018-02-13T00:33:24.230] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:33:24.243] [INFO] cheese - inserting 1000 documents. first: Davrian and last: Unsolved English murders -[2018-02-13T00:33:24.273] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:33:24.304] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:33:24.503] [INFO] cheese - inserting 1000 documents. first: Nizhny Arkhyz and last: Sunnyside Hospital -[2018-02-13T00:33:24.507] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 May 29 and last: DPMI kernel -[2018-02-13T00:33:24.527] [INFO] cheese - inserting 1000 documents. first: Blepephaeus multinotatus and last: 1st Radio Squadron, Mobile -[2018-02-13T00:33:24.541] [INFO] cheese - inserting 1000 documents. first: Grimoire of Exalted Deeds and last: Battle of St Pol de Leon -[2018-02-13T00:33:24.551] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:24.568] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:33:24.573] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:24.598] [INFO] cheese - inserting 1000 documents. first: Boyd County, NE and last: Wikipedia:Articles for deletion/List of every mayor in the World -[2018-02-13T00:33:24.609] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:33:24.625] [INFO] cheese - inserting 1000 documents. first: Template:Railclosed color and last: Wei Chun -[2018-02-13T00:33:24.654] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:24.681] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:33:24.770] [INFO] cheese - inserting 1000 documents. first: All About Eve (album) and last: Portal:Video games/Wikimedia -[2018-02-13T00:33:24.850] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:33:24.892] [INFO] cheese - inserting 1000 documents. first: Lemuel Goodell and last: National Interagency Confederation for Biological Research -[2018-02-13T00:33:24.953] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:33:25.003] [INFO] cheese - inserting 1000 documents. first: WYAP-LP and last: Reactive material -[2018-02-13T00:33:25.017] [INFO] cheese - inserting 1000 documents. first: Spanish Song Book and last: Dress reform parlor -[2018-02-13T00:33:25.065] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:25.084] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:33:25.124] [INFO] cheese - inserting 1000 documents. first: United Presbyterian Church (disambiguation) and last: Portal:Professional wrestling/Did you know/56 -[2018-02-13T00:33:25.181] [INFO] cheese - inserting 1000 documents. first: Julien MacDonald and last: File:KeyToRebecca.jpg -[2018-02-13T00:33:25.187] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:33:25.216] [INFO] cheese - inserting 1000 documents. first: AS-105 (spacecraft) and last: Brooksville, MS -[2018-02-13T00:33:25.245] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:33:25.279] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:33:25.404] [INFO] cheese - inserting 1000 documents. first: Abdul Kader Haïdara and last: Pietrele River (Râmnicul Sărat) -[2018-02-13T00:33:25.443] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:33:25.470] [INFO] cheese - inserting 1000 documents. first: Effective sample size and last: File:Transpacific Flight.jpg -[2018-02-13T00:33:25.510] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:33:25.513] [INFO] cheese - inserting 1000 documents. first: GU-50 and last: Purusha-Sukta -[2018-02-13T00:33:25.526] [INFO] cheese - inserting 1000 documents. first: British institute of florence and last: Wikipedia:WikiProject Spam/LinkReports/british.tv -[2018-02-13T00:33:25.534] [INFO] cheese - inserting 1000 documents. first: 1999 Washington Summit and last: Gabros United -[2018-02-13T00:33:25.580] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:33:25.583] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:33:25.623] [INFO] cheese - inserting 1000 documents. first: Category:1642 establishments in the Thirteen Colonies and last: Hariharganj block -[2018-02-13T00:33:25.629] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:33:25.663] [INFO] cheese - inserting 1000 documents. first: Brooksville, OK and last: Lyon Playfair -[2018-02-13T00:33:25.693] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:33:25.718] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:25.868] [INFO] cheese - inserting 1000 documents. first: Basilica of the Sacred Heart of Jesus, Syracuse and last: Thiomonas islandica -[2018-02-13T00:33:25.929] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:33:25.936] [INFO] cheese - inserting 1000 documents. first: Survey mark and last: Simon Jackson (cricketer) -[2018-02-13T00:33:25.971] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:33:25.983] [INFO] cheese - inserting 1000 documents. first: Moxos Plains and last: Land reform in zimbabwe -[2018-02-13T00:33:26.008] [INFO] cheese - inserting 1000 documents. first: Purusa and last: Sudan Peoples' Liberation Movement -[2018-02-13T00:33:26.013] [INFO] cheese - inserting 1000 documents. first: File:Stigata album.jpg and last: Joe mcelveen -[2018-02-13T00:33:26.024] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:33:26.050] [INFO] cheese - inserting 1000 documents. first: Wating and last: Category:Protected areas of Green County, Wisconsin -[2018-02-13T00:33:26.055] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:33:26.120] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:33:26.129] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:26.271] [INFO] cheese - inserting 1000 documents. first: Kuusjoki and last: Carlinville, IL -[2018-02-13T00:33:26.401] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:33:26.481] [INFO] cheese - inserting 1000 documents. first: زهران علوش and last: 1960s in European fashion -[2018-02-13T00:33:26.535] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:33:26.588] [INFO] cheese - inserting 1000 documents. first: EC 4.4.1.13 and last: Civsoc brunel -[2018-02-13T00:33:26.655] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Realzdealzio2 and last: MPQ-64 Sentinel -[2018-02-13T00:33:26.659] [INFO] cheese - inserting 1000 documents. first: Portal:Dragon Ball/Related portals and last: NOPSI -[2018-02-13T00:33:26.666] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:33:26.695] [INFO] cheese - inserting 1000 documents. first: List of Kolkata facts and last: Miłość w czasach popkultury -[2018-02-13T00:33:26.715] [INFO] cheese - inserting 1000 documents. first: 30th Air Defense Missile Squadron and last: Portal:United States/Anniversaries/January/January 16 -[2018-02-13T00:33:26.714] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:33:26.739] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:33:26.775] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:33:26.796] [INFO] cheese - inserting 1000 documents. first: Carlisle, AR and last: Cherokee, IA -[2018-02-13T00:33:26.801] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:33:26.864] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:33:26.913] [INFO] cheese - inserting 1000 documents. first: Annonay International Film Festival and last: Wikipedia:Requests for mediation/kebo gotti -[2018-02-13T00:33:26.959] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:33:27.107] [INFO] cheese - inserting 1000 documents. first: Tomarchio and last: IBM DOS 4.00 -[2018-02-13T00:33:27.129] [INFO] cheese - inserting 1000 documents. first: Cherokee, KS and last: Clinton County, IL -[2018-02-13T00:33:27.133] [INFO] cheese - inserting 1000 documents. first: Eaglestone and last: Dhaka zila -[2018-02-13T00:33:27.137] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:27.181] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:33:27.202] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:27.239] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Anniversaries/January/January 17 and last: Category:Towns in Bayfield County, Wisconsin -[2018-02-13T00:33:27.294] [INFO] cheese - inserting 1000 documents. first: Souari Nut and last: Beliefnet.com -[2018-02-13T00:33:27.305] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:33:27.335] [INFO] cheese - inserting 1000 documents. first: 3T Meets the Family of Soul and last: File:SIB structure.jpg -[2018-02-13T00:33:27.363] [INFO] cheese - inserting 1000 documents. first: Arevik National Park and last: Morning Service -[2018-02-13T00:33:27.369] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:33:27.428] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:33:27.433] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:33:27.444] [INFO] cheese - inserting 1000 documents. first: Clinton County, IN and last: Couderay (village), Sawyer County, WI -[2018-02-13T00:33:27.503] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:33:27.550] [INFO] cheese - inserting 1000 documents. first: Smeaton's lighthouse and last: Buraq, Syria -[2018-02-13T00:33:27.602] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:33:27.743] [INFO] cheese - inserting 1000 documents. first: Pericallia matronula and last: Category:1972 in sport wrestling -[2018-02-13T00:33:27.747] [INFO] cheese - inserting 1000 documents. first: Air-tractor sledge and last: Pärnu Tervis -[2018-02-13T00:33:27.800] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:33:27.810] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:33:27.819] [INFO] cheese - inserting 1000 documents. first: Slackers CDs and Games and last: Hindle Wakes (play) -[2018-02-13T00:33:27.851] [INFO] cheese - inserting 1000 documents. first: Dairy production and last: Philmont Scout Ranch flash flood -[2018-02-13T00:33:27.881] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:27.903] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:33:27.909] [INFO] cheese - inserting 1000 documents. first: Colony Club and last: Bank Rakyat Indonesia -[2018-02-13T00:33:27.951] [INFO] cheese - inserting 1000 documents. first: Couderay (village), WI and last: Lakewood Freeway -[2018-02-13T00:33:27.994] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:33:28.026] [INFO] cheese - inserting 1000 documents. first: Braq and last: Antun -[2018-02-13T00:33:28.042] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:28.139] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:33:28.296] [INFO] cheese - inserting 1000 documents. first: Joan McArthur and last: My Gospel -[2018-02-13T00:33:28.326] [INFO] cheese - inserting 1000 documents. first: Demarquette Lee and last: Pârlita River (Taița) -[2018-02-13T00:33:28.345] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:33:28.347] [INFO] cheese - inserting 1000 documents. first: 1998 'Friendship' Cup and last: Arachniography -[2018-02-13T00:33:28.356] [INFO] cheese - inserting 1000 documents. first: Victoria Hall (Ontario) and last: Birkat Hachammah -[2018-02-13T00:33:28.383] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:28.390] [INFO] cheese - inserting 1000 documents. first: Cumberland County, KY and last: 1960–61 United States network television schedule -[2018-02-13T00:33:28.420] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:33:28.449] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:33:28.512] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:28.645] [INFO] cheese - inserting 1000 documents. first: NCAA Division I Men's Swimming and Diving Championships and last: Association of Writers of Montenegro -[2018-02-13T00:33:28.691] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:33:28.709] [INFO] cheese - inserting 1000 documents. first: Portal:Theatre/Selected article and last: Bulan Sabriel -[2018-02-13T00:33:28.799] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:33:28.913] [INFO] cheese - inserting 1000 documents. first: Alseodaphne and last: File:Mexia Public Schools Museum.JPG -[2018-02-13T00:33:28.916] [INFO] cheese - inserting 1000 documents. first: Delaware County, IN and last: Paul Rebhan -[2018-02-13T00:33:28.929] [INFO] cheese - inserting 1000 documents. first: Category:Gucci Mane songs and last: Sea Ape -[2018-02-13T00:33:28.950] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:33:28.956] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:33:28.981] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:29.026] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2016 January 31 and last: Wikipedia:Articles for deletion/Binibining Pilipinas 2016 -[2018-02-13T00:33:29.047] [INFO] cheese - inserting 1000 documents. first: R550 Magic and last: As Long As I'm Rockin' with You -[2018-02-13T00:33:29.092] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:33:29.107] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:33:29.224] [INFO] cheese - inserting 1000 documents. first: Philip Morris v. Uruguay and last: Valerie Coleman -[2018-02-13T00:33:29.252] [INFO] cheese - inserting 1000 documents. first: Category:Places of worship in Finland and last: The Darcy School (New Jersey) -[2018-02-13T00:33:29.275] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:29.317] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:33:29.352] [INFO] cheese - inserting 1000 documents. first: Dunwoody, GA and last: Elderton, PA -[2018-02-13T00:33:29.388] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:33:29.517] [INFO] cheese - inserting 1000 documents. first: Back to Nature for Girl and last: Asteropeia mcphersonii -[2018-02-13T00:33:29.530] [INFO] cheese - inserting 1000 documents. first: Template:Santa Maria Bulacan and last: FM-index -[2018-02-13T00:33:29.598] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:33:29.639] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:33:29.677] [INFO] cheese - inserting 1000 documents. first: Representation of Soul and Body and last: Category:St. Louis Rams draft navigational boxes -[2018-02-13T00:33:29.711] [INFO] cheese - inserting 1000 documents. first: Category:People from Egedal Municipality and last: Serbian Orthodox Eparchy of Australia and New Zealand -[2018-02-13T00:33:29.757] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:29.832] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:33:29.912] [INFO] cheese - inserting 1000 documents. first: Eldon, IA and last: Natural deduction logic -[2018-02-13T00:33:29.961] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:29.990] [INFO] cheese - inserting 1000 documents. first: Michael Klein (businessman) and last: Thomas Anderson (footballer) -[2018-02-13T00:33:30.058] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:33:30.099] [INFO] cheese - inserting 1000 documents. first: Blank Firing Attachment and last: Homer Simpson, This is Your Wife -[2018-02-13T00:33:30.137] [INFO] cheese - inserting 1000 documents. first: Category:Ruderal species and last: Reading F.C. season 2004-05 -[2018-02-13T00:33:30.187] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:33:30.192] [INFO] cheese - inserting 1000 documents. first: Asteropeia micraster and last: Bomarea angustifolia -[2018-02-13T00:33:30.199] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:33:30.308] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:30.464] [INFO] cheese - inserting 1000 documents. first: Solar Aircraft Company and last: El Camino de los gatos -[2018-02-13T00:33:30.465] [INFO] cheese - inserting 1000 documents. first: Survival Island 3 and last: Pre-1967 borders -[2018-02-13T00:33:30.514] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:33:30.518] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:33:30.648] [INFO] cheese - inserting 1000 documents. first: Mohawk Airlines and last: Yushan (mountain) -[2018-02-13T00:33:30.691] [INFO] cheese - inserting 1000 documents. first: Category:Vice-Chancellors of the University of Jaffna and last: 2013–14 Phoenix Coyotes season -[2018-02-13T00:33:30.695] [INFO] cheese - inserting 1000 documents. first: Reading F.C. season 2005-06 and last: Nagahama (moth) -[2018-02-13T00:33:30.728] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:30.741] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:33:30.781] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:33:30.850] [INFO] cheese - inserting 1000 documents. first: Mitch Williams (General Hospital) and last: Who Got The Gravy? -[2018-02-13T00:33:30.936] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:33:30.998] [INFO] cheese - inserting 1000 documents. first: Smash bros. melee and last: Scared Famous/FF» (Haunted Graffiti 3–4) -[2018-02-13T00:33:31.026] [INFO] cheese - inserting 1000 documents. first: Very Mary-Kate and last: Panic of 1930 -[2018-02-13T00:33:31.053] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:33:31.110] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:31.207] [INFO] cheese - inserting 1000 documents. first: El Intransigente and last: Category:2000 in wrestling -[2018-02-13T00:33:31.215] [INFO] cheese - inserting 1000 documents. first: Category:Stins in Friesland and last: Category:Maritimepattu DS Division -[2018-02-13T00:33:31.242] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:33:31.284] [INFO] cheese - inserting 1000 documents. first: Mathmetics and last: Dextrorotation -[2018-02-13T00:33:31.288] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:31.348] [INFO] cheese - inserting 1000 documents. first: Guillem Augier Novella and last: Wikipedia:Peer review/Leona Lewis/archive1 -[2018-02-13T00:33:31.374] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:33:31.392] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:33:31.475] [INFO] cheese - inserting 1000 documents. first: File:KFXN1003.png and last: Seesaw (album) -[2018-02-13T00:33:31.520] [INFO] cheese - inserting 1000 documents. first: Porro and last: Alexander III, King of Scots -[2018-02-13T00:33:31.533] [INFO] cheese - inserting 1000 documents. first: Michael Smith (darts player) and last: M.M. Ahmad -[2018-02-13T00:33:31.546] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:33:31.583] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:31.640] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:31.667] [INFO] cheese - inserting 1000 documents. first: Category:List-Class WikiProject Volcanoes articles and last: Sir Giles Gilbert Scott, OM, FRIBA -[2018-02-13T00:33:31.740] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:33:31.747] [INFO] cheese - inserting 1000 documents. first: Panayotis and last: Snax (musician) -[2018-02-13T00:33:31.836] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:33:31.894] [INFO] cheese - inserting 1000 documents. first: Fiji Teachers Union and last: Category:Centronia -[2018-02-13T00:33:31.973] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:33:32.139] [INFO] cheese - inserting 1000 documents. first: Broadcast Advertising Clearance Centre and last: Franklin County, TX -[2018-02-13T00:33:32.172] [INFO] cheese - inserting 1000 documents. first: Chamamé and last: BWV 540 -[2018-02-13T00:33:32.220] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:33:32.235] [INFO] cheese - inserting 1000 documents. first: Zündnadelgewehr and last: Twin arginine protein transport -[2018-02-13T00:33:32.236] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:33:32.289] [INFO] cheese - inserting 1000 documents. first: 4-oxalomesaconate tautomerase and last: Irregularity (canon law) -[2018-02-13T00:33:32.317] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:33:32.356] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:33:32.362] [INFO] cheese - inserting 1000 documents. first: CBWU-FM and last: Caracosta -[2018-02-13T00:33:32.386] [INFO] cheese - inserting 1000 documents. first: Griffith's plum-yew and last: 150th Training Motor Rifle Division -[2018-02-13T00:33:32.427] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:33:32.433] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:32.511] [INFO] cheese - inserting 1000 documents. first: Knut Olaf Andreasson Strand and last: Euphorbia hofstaetteri -[2018-02-13T00:33:32.556] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:33:32.693] [INFO] cheese - inserting 1000 documents. first: Criegee zwitterion and last: Ian Barker -[2018-02-13T00:33:32.715] [INFO] cheese - inserting 1000 documents. first: John Cotton (fl. 1379-1388) and last: File:Cross Examination Debate Association Logo.jpg -[2018-02-13T00:33:32.730] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:33:32.768] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:32.783] [INFO] cheese - inserting 1000 documents. first: First Job Contract and last: Alchemy (video game) -[2018-02-13T00:33:32.783] [INFO] cheese - inserting 1000 documents. first: Abruzzi, Luigi Amedeo Giuseppe Maria Ferdinando Francesco, Duke of the and last: Wikipedia:Votes for deletion/Freetown Elementary School -[2018-02-13T00:33:32.849] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:33:32.878] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:33:32.895] [INFO] cheese - inserting 1000 documents. first: Vila d'Eivissa and last: Brighton High School (Brighton, Colorado) -[2018-02-13T00:33:32.965] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:33:32.967] [INFO] cheese - inserting 1000 documents. first: Bridge Inn (Middle-earth) and last: Template:Ashland County, Wisconsin -[2018-02-13T00:33:33.024] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:33:33.106] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Fijocrypta and last: Souk En Nhas -[2018-02-13T00:33:33.108] [INFO] cheese - inserting 1000 documents. first: File:Londonboysmoyloveoriginalcover.jpeg and last: 4 Songs (disambiguation) -[2018-02-13T00:33:33.168] [INFO] cheese - inserting 1000 documents. first: Gallipolis, OH and last: Gosnold, MA -[2018-02-13T00:33:33.174] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:33:33.180] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:33:33.196] [INFO] cheese - inserting 1000 documents. first: All-Ireland Senior Hurling Championship 1924 and last: 16S RNA Psi516 synthase -[2018-02-13T00:33:33.221] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:33:33.305] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:33:33.424] [INFO] cheese - inserting 1000 documents. first: Category:Culture by country and last: Daniele Barbaro -[2018-02-13T00:33:33.457] [INFO] cheese - inserting 1000 documents. first: Inter-service Intelligence Directorate and last: The Sins of the Cities of the Plain -[2018-02-13T00:33:33.487] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:33:33.503] [INFO] cheese - inserting 1000 documents. first: File:Trollback nike.jpg and last: Kaleidoscope (Siouxsie album) -[2018-02-13T00:33:33.541] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:33:33.556] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:33.676] [INFO] cheese - inserting 1000 documents. first: Gosper County, NE and last: Michael Stone (federal government administrator) -[2018-02-13T00:33:33.706] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2016 South Asian Games and last: Beauty and the Barge (disambiguation) -[2018-02-13T00:33:33.730] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:33:33.737] [INFO] cheese - inserting 1000 documents. first: RNA pseudouridine synthase RsuA and last: Jie Zhitui -[2018-02-13T00:33:33.746] [INFO] cheese - inserting 1000 documents. first: IdeaPad Z and last: Category:Keene State College alumni -[2018-02-13T00:33:33.759] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:33.821] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:33:33.852] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:33:33.914] [INFO] cheese - inserting 1000 documents. first: Early Morning Rain and last: Cocytodes -[2018-02-13T00:33:33.933] [INFO] cheese - inserting 1000 documents. first: Guioa patentinervis and last: Hopea cagayanensis -[2018-02-13T00:33:33.968] [INFO] cheese - inserting 1000 documents. first: Pentacerotidae and last: Cincinnati State and Technical College -[2018-02-13T00:33:33.987] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:33.988] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:34.043] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:33:34.312] [INFO] cheese - inserting 1000 documents. first: Poshekhonskii Raion and last: GDP of Latvia -[2018-02-13T00:33:34.372] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:34.397] [INFO] cheese - inserting 1000 documents. first: Silent Radar and last: Portal:SAARC/Bhutan/Intro -[2018-02-13T00:33:34.482] [INFO] cheese - inserting 1000 documents. first: Fumehood and last: Gulf Breeze, FL -[2018-02-13T00:33:34.510] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:33:34.519] [INFO] cheese - inserting 1000 documents. first: Codalithia and last: Bernice Cronkhite -[2018-02-13T00:33:34.613] [INFO] cheese - inserting 1000 documents. first: Port Laoise Town Council and last: European Technology Assessment Group (ETAG) -[2018-02-13T00:33:34.639] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:33:34.645] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:34.731] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:33:34.764] [INFO] cheese - inserting 1000 documents. first: File:BA-single2.jpg and last: Income distribution - United States -[2018-02-13T00:33:34.797] [INFO] cheese - inserting 1000 documents. first: File:Come into my World single.png and last: Ngaous -[2018-02-13T00:33:34.837] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:33:34.959] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T00:33:35.103] [INFO] cheese - inserting 1000 documents. first: List of higher education institutions in Denver and last: Thommayanti -[2018-02-13T00:33:35.133] [INFO] cheese - inserting 1000 documents. first: Gulf City, FL and last: Alaric, King of the Visigoths -[2018-02-13T00:33:35.164] [INFO] cheese - inserting 1000 documents. first: Charles Lamarche and last: Wikipedia:WikiProject Spam/LinkReports/articulos-interesantes.blogspot.com -[2018-02-13T00:33:35.167] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:35.192] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:33:35.236] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:33:35.278] [INFO] cheese - inserting 1000 documents. first: Slovenian patrol boat Triglav and last: Portal:Current events/2011 March 2 -[2018-02-13T00:33:35.328] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:33:35.363] [INFO] cheese - inserting 1000 documents. first: File:'Sunagawa No.5' by Hiroshi Nakamura, 1955.jpg and last: Monema melli -[2018-02-13T00:33:35.453] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:33:35.462] [INFO] cheese - inserting 1000 documents. first: Du Lièvre River and last: Harry Bennett -[2018-02-13T00:33:35.542] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:33:35.615] [INFO] cheese - inserting 1000 documents. first: Marco Fidel Suarez and last: Helotes, TX -[2018-02-13T00:33:35.617] [INFO] cheese - inserting 1000 documents. first: Category:Protolychnis and last: Template:Attached KML/Illinois Route 4 -[2018-02-13T00:33:35.636] [INFO] cheese - inserting 1000 documents. first: Category:University of Memphis faculty and last: Vidya Niketan School (Pune) -[2018-02-13T00:33:35.676] [INFO] cheese - inserting 1000 documents. first: At It Again and last: Khaya anthotheca -[2018-02-13T00:33:35.678] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:33:35.736] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:35.748] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:33:35.776] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:33:35.926] [INFO] cheese - inserting 1000 documents. first: What Was I Scared Of? and last: Param Vishisht Seva -[2018-02-13T00:33:35.967] [INFO] cheese - inserting 1000 documents. first: Cnidocampa johanibergmani and last: Category:Organizations for children with health issues -[2018-02-13T00:33:35.995] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:35.998] [INFO] cheese - inserting 1000 documents. first: Shropshire Wildlife Trust and last: Honaker, VA -[2018-02-13T00:33:36.046] [INFO] cheese - inserting 1000 documents. first: Torpedo Stadium (Moscow) and last: Cold Day In the Sun -[2018-02-13T00:33:36.083] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:33:36.145] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:33:36.165] [INFO] cheese - inserting 1000 documents. first: List of My Hero Academia chapters and last: Category:Kingussie -[2018-02-13T00:33:36.187] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:33:36.225] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:33:36.245] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Lithuania and last: Experiment Below -[2018-02-13T00:33:36.262] [INFO] cheese - inserting 1000 documents. first: The Muppet Show (comics) and last: List of Denmark-related articles -[2018-02-13T00:33:36.293] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:33:36.383] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:33:36.579] [INFO] cheese - inserting 1000 documents. first: Honalo, HI and last: Itasca Township, MN -[2018-02-13T00:33:36.605] [INFO] cheese - inserting 1000 documents. first: Tisovec, Dobrepolje and last: Raven Quinn -[2018-02-13T00:33:36.625] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:33:36.682] [INFO] cheese - inserting 1000 documents. first: Echo Church and School and last: Estakhruiyeh, Baft -[2018-02-13T00:33:36.685] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:33:36.760] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:33:36.772] [INFO] cheese - inserting 1000 documents. first: Antoon Stillemans and last: D×D×D -[2018-02-13T00:33:36.866] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:33:36.902] [INFO] cheese - inserting 1000 documents. first: Larry Smith (editor) and last: Meridyrias -[2018-02-13T00:33:36.927] [INFO] cheese - inserting 1000 documents. first: Category:Lovoa and last: Scott christian higher secondary school -[2018-02-13T00:33:36.947] [INFO] cheese - inserting 1000 documents. first: Wanderer Fantasy and last: Sofiiska kotlovina -[2018-02-13T00:33:36.958] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:33:37.003] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:33:37.000] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:33:37.166] [INFO] cheese - inserting 1000 documents. first: Itawamba County, MS and last: Jordan Township, Northumberland County, PA -[2018-02-13T00:33:37.220] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:33:37.274] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Delta, British Columbia and last: Halima-5,13-dien-15-yl-diphosphate lyase -[2018-02-13T00:33:37.275] [INFO] cheese - inserting 1000 documents. first: File:Alisonmoyetweakinthepresenceofbeautysingle.jpeg and last: Wikipedia:WikiProject Military history/Ottoman military history task force/Article alerts/Archive -[2018-02-13T00:33:37.290] [INFO] cheese - inserting 1000 documents. first: Pat Bourke (footballer, born 1923) and last: 1993 IAAF World Indoor Championships – Women's long jump -[2018-02-13T00:33:37.320] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:33:37.346] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:33:37.349] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:33:37.399] [INFO] cheese - inserting 1000 documents. first: Meristides and last: List of Presidents of the Basque Parliament -[2018-02-13T00:33:37.409] [INFO] cheese - inserting 1000 documents. first: Category:Mauria and last: Wikipedia:Bots/Requests for approval/HermesBot 11 -[2018-02-13T00:33:37.447] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:33:37.449] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:33:37.486] [INFO] cheese - inserting 1000 documents. first: Dragonquest (disambiguation) and last: Marvin Perry -[2018-02-13T00:33:37.544] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:33:37.607] [INFO] cheese - inserting 1000 documents. first: Jordan Township, PA and last: Knox Township, Clarion County, PA -[2018-02-13T00:33:37.652] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:33:37.759] [INFO] cheese - inserting 1000 documents. first: List of international cricket five-wicket hauls at the Asgiriya Stadium and last: Falcaria (genus) -[2018-02-13T00:33:37.805] [INFO] cheese - inserting 1000 documents. first: William Vincent Carpenter and last: United Nations Security Council Resolution 381 -[2018-02-13T00:33:37.810] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:33:37.869] [INFO] cheese - inserting 1000 documents. first: Attribute certificate and last: Fagot -[2018-02-13T00:33:37.876] [INFO] cheese - inserting 1000 documents. first: Moranopteris aphelolepis and last: The Watch Below -[2018-02-13T00:33:37.880] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:37.945] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:33:37.948] [INFO] cheese - inserting 1000 documents. first: (S)-beta-macrocarpene synthase and last: Fernley H. Banbury -[2018-02-13T00:33:37.994] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:33:38.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Balkan military history task force/Article alerts/Archive and last: List of Professor Layton media -[2018-02-13T00:33:38.067] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:33:38.169] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:33:38.290] [INFO] cheese - inserting 1000 documents. first: Lauderdale County, AL and last: Little Wolf, WI -[2018-02-13T00:33:38.322] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:33:38.406] [INFO] cheese - inserting 1000 documents. first: Samurai Johnny Frankenstein and last: Yorktown High School (Yorktown, Indiana) -[2018-02-13T00:33:38.413] [INFO] cheese - inserting 1000 documents. first: Pyrgus centaureae and last: DAVIET Jalandhar -[2018-02-13T00:33:38.436] [INFO] cheese - inserting 1000 documents. first: Let's Paint TV and last: Passiflora anfracta -[2018-02-13T00:33:38.450] [INFO] cheese - inserting 1000 documents. first: Three Mustaphas Three and last: Category:1724 in the Spanish Empire -[2018-02-13T00:33:38.460] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:33:38.498] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:33:38.503] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:33:38.583] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:38.619] [INFO] cheese - inserting 1000 documents. first: Little York, IL and last: Character entity reference -[2018-02-13T00:33:38.643] [INFO] cheese - inserting 1000 documents. first: Template:Cite swiss law/doc and last: Champagne-Marne Defensive Campaign -[2018-02-13T00:33:38.665] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:33:38.710] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:33:38.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Moy Salinas and last: Yuji Nakayoshi -[2018-02-13T00:33:38.844] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:33:38.888] [INFO] cheese - inserting 1000 documents. first: Passiflora brachyantha and last: Ramsay wood -[2018-02-13T00:33:38.909] [INFO] cheese - inserting 1000 documents. first: File:Gorillacitydcu0.jpg and last: Tamseale -[2018-02-13T00:33:38.937] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:38.980] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:33:39.052] [INFO] cheese - inserting 1000 documents. first: Category:1724 in Spain and last: Vukovar resolution -[2018-02-13T00:33:39.092] [INFO] cheese - inserting 1000 documents. first: Ganiklis and last: Schism fanzine -[2018-02-13T00:33:39.096] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:33:39.155] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:33:39.159] [INFO] cheese - inserting 1000 documents. first: File:Mersey-Sound.jpg and last: Nigel Searle -[2018-02-13T00:33:39.214] [INFO] cheese - inserting 1000 documents. first: Upper Lake (Bhopal) and last: Torre de los Ingleses -[2018-02-13T00:33:39.229] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:33:39.292] [INFO] cheese - inserting 1000 documents. first: Balochistan Rural Support Programme (BRSP) and last: Asaphocrita irenica -[2018-02-13T00:33:39.308] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:33:39.430] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:33:39.438] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Contemporary philosophy articles and last: Category:FA-Class Boston Red Sox articles -[2018-02-13T00:33:39.487] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:33:39.521] [INFO] cheese - inserting 1000 documents. first: Tamseuxoa and last: Valentina Rendón -[2018-02-13T00:33:39.578] [INFO] cheese - inserting 1000 documents. first: Marquette (town), Green Lake County, WI and last: Menomonie, WI -[2018-02-13T00:33:39.578] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:33:39.637] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:33:39.676] [INFO] cheese - inserting 1000 documents. first: Staples station (Minnesota) and last: Motion dazzle -[2018-02-13T00:33:39.725] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:33:39.827] [INFO] cheese - inserting 1000 documents. first: III Marine Amphibious Corps and last: Template:Daycap -[2018-02-13T00:33:39.835] [INFO] cheese - inserting 1000 documents. first: Nénimë and last: Alaska Airlines Arena -[2018-02-13T00:33:39.876] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:33:39.884] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:33:39.908] [INFO] cheese - inserting 1000 documents. first: Psidium harrisianum and last: Wikipedia:Articles for deletion/Special Needs Advocates for Understanding -[2018-02-13T00:33:39.937] [INFO] cheese - inserting 1000 documents. first: Hellenic Police - Cyber Crime Center and last: Metagenomics: An Alternative Approach to Genomics -[2018-02-13T00:33:39.938] [INFO] cheese - inserting 1000 documents. first: Menomonie (city), Dunn County, WI and last: Fra Mauro -[2018-02-13T00:33:39.955] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:33:39.991] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:40.034] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:33:40.085] [INFO] cheese - inserting 1000 documents. first: 10th (Prince of Wales's Own Royal) Hussars and last: Figure skating at the 2006 Winter Olympics - Pair Skating -[2018-02-13T00:33:40.096] [INFO] cheese - inserting 1000 documents. first: Balas y Chocolate World Tour and last: Fabio De Masi -[2018-02-13T00:33:40.150] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:33:40.156] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:40.236] [INFO] cheese - inserting 1000 documents. first: Monroeville, PA and last: Crash (Dave Matthews Band album) -[2018-02-13T00:33:40.264] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:33:40.361] [INFO] cheese - inserting 1000 documents. first: Category:Communities in Victoria County, New Brunswick and last: Blue Charge -[2018-02-13T00:33:40.405] [INFO] cheese - inserting 1000 documents. first: Andrei Andriyevskiy and last: Brix degree -[2018-02-13T00:33:40.406] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:33:40.409] [INFO] cheese - inserting 1000 documents. first: ᚗ and last: Dorrie (Super Mario 64) -[2018-02-13T00:33:40.425] [INFO] cheese - inserting 1000 documents. first: File:Logo for Lego Pirates of the caribbean theme.png and last: Category:Films directed by Reginald Fogwell -[2018-02-13T00:33:40.476] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:33:40.491] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:33:40.523] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:33:40.600] [INFO] cheese - inserting 1000 documents. first: Reverse-Flash (Eobard Thawne) and last: Category:People of the war in Donbass -[2018-02-13T00:33:40.670] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:33:40.748] [INFO] cheese - inserting 1000 documents. first: Nazlini, AZ and last: Nordick Township, MN -[2018-02-13T00:33:40.819] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:33:40.862] [INFO] cheese - inserting 1000 documents. first: Figure skating at the 2006 Winter Olympics - Pair skating and last: Bagnowski Dwor -[2018-02-13T00:33:40.950] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:33:40.956] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Norma Ashby and last: Category:Sport in Burnaby -[2018-02-13T00:33:40.961] [INFO] cheese - inserting 1000 documents. first: Plerandra veitchii and last: Sway & King Tech -[2018-02-13T00:33:41.006] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:41.034] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:33:41.137] [INFO] cheese - inserting 1000 documents. first: Nordland Township, Aitkin County, MN and last: Okmulgee, OK -[2018-02-13T00:33:41.190] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:33:41.212] [INFO] cheese - inserting 1000 documents. first: Uruguayan immigration to Ecuador and last: Antonio Prieto (tennis) -[2018-02-13T00:33:41.214] [INFO] cheese - inserting 1000 documents. first: Ash Shara'i` al `Ulya and last: H. subumbrans -[2018-02-13T00:33:41.274] [INFO] cheese - inserting 1000 documents. first: File:Rai University logo.jpg and last: Jaakko Tallus -[2018-02-13T00:33:41.276] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:33:41.284] [INFO] cheese - inserting 1000 documents. first: Bajory Male and last: Brzesnica -[2018-02-13T00:33:41.288] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:33:41.334] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:41.368] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:33:41.510] [INFO] cheese - inserting 1000 documents. first: Portal:Pensacola/Selected article/4 and last: Wikipedia:Articles for deletion/List of municipal authorities in Adams County, Pennsylvania -[2018-02-13T00:33:41.534] [INFO] cheese - inserting 1000 documents. first: Okmulgee County, OK and last: Panama, IL -[2018-02-13T00:33:41.558] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:33:41.583] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:33:41.587] [INFO] cheese - inserting 1000 documents. first: Solanum burtonii and last: Juan Antonio Medina -[2018-02-13T00:33:41.645] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:33:41.749] [INFO] cheese - inserting 1000 documents. first: Bordered patch and last: 36˚30'N -[2018-02-13T00:33:41.796] [INFO] cheese - inserting 1000 documents. first: Brzeszczki Duze and last: Kryptonics (company) -[2018-02-13T00:33:41.800] [INFO] cheese - inserting 1000 documents. first: Beşiktaş–Galatasaray rivalry and last: Template:User in United Kingdom -[2018-02-13T00:33:41.827] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:41.883] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:41.902] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:33:41.936] [INFO] cheese - inserting 1000 documents. first: File:Los Angeles National Cemetery Entrance.jpg and last: Category:Star Ferry -[2018-02-13T00:33:42.007] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:33:42.073] [INFO] cheese - inserting 1000 documents. first: Hogwarts subjects and last: Great Influenza Pandemic -[2018-02-13T00:33:42.101] [INFO] cheese - inserting 1000 documents. first: Regina, Minneapolis and last: Higurashi episodes -[2018-02-13T00:33:42.118] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:33:42.149] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:42.160] [INFO] cheese - inserting 1000 documents. first: Rajah Sulayman Park and last: Ulrika von Strussenfelt -[2018-02-13T00:33:42.218] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:42.221] [INFO] cheese - inserting 1000 documents. first: Category:Immersed tube tunnels in Canada and last: KUBE-FM 1049 -[2018-02-13T00:33:42.266] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:42.346] [INFO] cheese - inserting 1000 documents. first: Template:User in UK and last: Lena Bryant -[2018-02-13T00:33:42.354] [INFO] cheese - inserting 1000 documents. first: Category:Former national rugby union teams and last: United States Court of Appeals 7th Circuit -[2018-02-13T00:33:42.413] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:33:42.436] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:33:42.514] [INFO] cheese - inserting 1000 documents. first: Welsh Argentinians and last: Saddlebrooke, Missouri -[2018-02-13T00:33:42.582] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:33:42.680] [INFO] cheese - inserting 1000 documents. first: Project MOJO and last: Portal:Austin/Selected picture/3 -[2018-02-13T00:33:42.731] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:33:42.735] [INFO] cheese - inserting 1000 documents. first: File:Valediction (Agent Carter).jpg and last: نادية مراد -[2018-02-13T00:33:42.817] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:42.859] [INFO] cheese - inserting 1000 documents. first: Chandipriya and last: Lonely (Sharon Sheeley song) -[2018-02-13T00:33:42.859] [INFO] cheese - inserting 1000 documents. first: United States Court of Appeals 8th Circuit and last: Granny nipper -[2018-02-13T00:33:42.913] [INFO] cheese - inserting 1000 documents. first: UMkhuze Game Reserve and last: Peridot, AZ -[2018-02-13T00:33:42.947] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:33:43.000] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:33:43.095] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:33:43.224] [INFO] cheese - inserting 1000 documents. first: Sulcus terminalis and last: Light Weight (company) -[2018-02-13T00:33:43.245] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Princess Charlotte of Prussia and last: Toms Run (Twin Creek) -[2018-02-13T00:33:43.279] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:33:43.285] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:33:43.319] [INFO] cheese - inserting 1000 documents. first: Johnson creek public schools and last: Assembly of the Turkish Republic of Northern Cyprus -[2018-02-13T00:33:43.350] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox Anastasian War and last: 1593 in Scotland -[2018-02-13T00:33:43.382] [INFO] cheese - inserting 1000 documents. first: Perkasie, PA and last: Port Wing, WI -[2018-02-13T00:33:43.406] [INFO] cheese - inserting 1000 documents. first: Maurice quentin de la tour and last: Vermeg -[2018-02-13T00:33:43.417] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:33:43.432] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T00:33:43.449] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:43.449] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:33:43.557] [INFO] cheese - inserting 1000 documents. first: Thira (regional unit) and last: Wikipedia:Possibly unfree files/2011 March 6 -[2018-02-13T00:33:43.619] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:33:43.675] [INFO] cheese - inserting 1000 documents. first: File:University of Trieste logo.jpg and last: 1598 CE -[2018-02-13T00:33:43.690] [INFO] cheese - inserting 1000 documents. first: Czuszow and last: Dzwiniacz Gorny -[2018-02-13T00:33:43.704] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:33:43.724] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:33:43.740] [INFO] cheese - inserting 1000 documents. first: Portage, IN and last: Reno, Parker County, TX -[2018-02-13T00:33:43.764] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:33:43.892] [INFO] cheese - inserting 1000 documents. first: John Bohrnstedt House and last: Template:Redirect sp -[2018-02-13T00:33:43.915] [INFO] cheese - inserting 1000 documents. first: 1597 CE and last: 621 CE -[2018-02-13T00:33:43.920] [INFO] cheese - inserting 1000 documents. first: Aluminum foil and last: Winthrop Street (IRT Nostrand Avenue Line station) -[2018-02-13T00:33:43.924] [INFO] cheese - inserting 1000 documents. first: 2000 Adelaide Race of a Thousand Years and last: Viequenses -[2018-02-13T00:33:43.941] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:33:43.966] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:44.028] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:44.031] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:33:44.158] [INFO] cheese - inserting 1000 documents. first: Tim Dudfield and last: Ross Township, MI -[2018-02-13T00:33:44.188] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:44.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2011 March 6 and last: Category:Danish websites -[2018-02-13T00:33:44.311] [INFO] cheese - inserting 1000 documents. first: Trent Merrin and last: Dumuzi the Shepherd -[2018-02-13T00:33:44.333] [INFO] cheese - inserting 1000 documents. first: 620 CE and last: Hugh W. Sheffey -[2018-02-13T00:33:44.353] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:44.374] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:33:44.397] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:33:44.522] [INFO] cheese - inserting 1000 documents. first: Ross Township, MN and last: Santa Claus, GA -[2018-02-13T00:33:44.549] [INFO] cheese - inserting 1000 documents. first: File:KeeLoq Decrypt2.png and last: Athletics at the 1920 Summer Olympics – Men's pole vault -[2018-02-13T00:33:44.552] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:33:44.612] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:44.634] [INFO] cheese - inserting 1000 documents. first: Template:R sub and last: Wilhelmstrassenfest -[2018-02-13T00:33:44.635] [INFO] cheese - inserting 1000 documents. first: Der Ring Des Nibelungen and last: Ostheide -[2018-02-13T00:33:44.710] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:33:44.717] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:33:44.860] [INFO] cheese - inserting 1000 documents. first: William Necton and last: Lyn Stanley, International Recording Artist -[2018-02-13T00:33:44.869] [INFO] cheese - inserting 1000 documents. first: The Betrothed (miniseries) and last: State Committee for Labour and Social Affairs -[2018-02-13T00:33:44.902] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:44.915] [INFO] cheese - inserting 1000 documents. first: Category:NORCECA Beach Volleyball Circuit 2009 and last: Shaka Smart -[2018-02-13T00:33:44.924] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:33:44.985] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:33:45.120] [INFO] cheese - inserting 1000 documents. first: Category:Aitkin County, Minnesota and last: Sharpsburg, PA -[2018-02-13T00:33:45.156] [INFO] cheese - inserting 1000 documents. first: File:CyberspaceRPGCover.jpg and last: Wikipedia:FGdesk -[2018-02-13T00:33:45.187] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:45.203] [INFO] cheese - inserting 1000 documents. first: Category:1880s in Indiana and last: HMS Sköld -[2018-02-13T00:33:45.214] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:33:45.256] [INFO] cheese - inserting 1000 documents. first: The Candidate and last: Category:Conservation in Latvia -[2018-02-13T00:33:45.276] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:33:45.365] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:33:45.394] [INFO] cheese - inserting 1000 documents. first: State Committee for Labor and Social Affairs and last: Premier of Croatia -[2018-02-13T00:33:45.402] [INFO] cheese - inserting 1000 documents. first: Category:1982 establishments in Rhode Island and last: Category:Disestablishments in Kenya -[2018-02-13T00:33:45.444] [INFO] cheese - inserting 1000 documents. first: One-Eleven and last: Aius Loquens -[2018-02-13T00:33:45.452] [INFO] cheese - inserting 1000 documents. first: Lamrim and last: South Pymatuning Township, PA -[2018-02-13T00:33:45.471] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:33:45.477] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:33:45.540] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:45.544] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:33:45.772] [INFO] cheese - inserting 1000 documents. first: South Range, MI and last: Stoddard, WI -[2018-02-13T00:33:45.790] [INFO] cheese - inserting 1000 documents. first: Great Britain (Cyborg 009 character) and last: Turkmendemiryollary -[2018-02-13T00:33:45.795] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:33:45.832] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:33:45.840] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Arab world articles and last: Wikipedia:WikiProject Spam/LinkReports/plato.stanford.edu -[2018-02-13T00:33:45.900] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:33:45.910] [INFO] cheese - inserting 1000 documents. first: Al Porto and last: Israeli Shabas -[2018-02-13T00:33:45.910] [INFO] cheese - inserting 1000 documents. first: Messaoud Bouardja and last: Z. Anorg. Allgem. Chem. -[2018-02-13T00:33:45.922] [INFO] cheese - inserting 1000 documents. first: The land before time 7 and last: Wikipedia:WikiProject Spam/LinkReports/bdtools.net -[2018-02-13T00:33:45.924] [INFO] cheese - inserting 1000 documents. first: Hindley railway station and last: Template:Montour County, Pennsylvania -[2018-02-13T00:33:45.967] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:45.972] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:33:45.978] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:33:45.987] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:33:46.094] [INFO] cheese - inserting 1000 documents. first: Stoddard County, MO and last: Estelle Leonard -[2018-02-13T00:33:46.133] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:33:46.314] [INFO] cheese - inserting 1000 documents. first: Andar ng mga Balita (radio) and last: Fred Horsman -[2018-02-13T00:33:46.346] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:33:46.381] [INFO] cheese - inserting 1000 documents. first: Stoycho Mladenov, Jr. and last: Rogue Male (band) -[2018-02-13T00:33:46.382] [INFO] cheese - inserting 1000 documents. first: Melissa Gonzales and last: W.D. Puleston -[2018-02-13T00:33:46.393] [INFO] cheese - inserting 1000 documents. first: Poonam Jhawer and last: FC Bataysk-2007 -[2018-02-13T00:33:46.437] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:33:46.440] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:33:46.447] [INFO] cheese - inserting 1000 documents. first: Z. Anorg. Allgemeine Chemie and last: Godly Response to Abuse in the Christian Environment -[2018-02-13T00:33:46.445] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:46.564] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:33:46.691] [INFO] cheese - inserting 1000 documents. first: Library of Babel and last: American Physical Education Association -[2018-02-13T00:33:46.805] [INFO] cheese - inserting 1000 documents. first: McCrae (disambiguation) and last: Consuela (Family Guy) -[2018-02-13T00:33:46.835] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:33:46.857] [INFO] cheese - inserting 1000 documents. first: Chicago Manufacturing Renaissance Council and last: Smiarowo -[2018-02-13T00:33:46.860] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:33:46.917] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:46.955] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (earth) and last: Brace for impact -[2018-02-13T00:33:47.061] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:33:47.106] [INFO] cheese - inserting 1000 documents. first: Leandro Castán and last: Could Be Anything -[2018-02-13T00:33:47.133] [INFO] cheese - inserting 1000 documents. first: Pholiota aurantioalbida and last: File:National Energy Foundation logo.gif -[2018-02-13T00:33:47.139] [INFO] cheese - inserting 1000 documents. first: Mushti-yuddha and last: Manavari, Kermanshah -[2018-02-13T00:33:47.152] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:33:47.187] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:33:47.198] [INFO] cheese - inserting 1000 documents. first: Smiary and last: Stryszow -[2018-02-13T00:33:47.200] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:33:47.215] [INFO] cheese - inserting 1000 documents. first: Upper Oligocene and last: V.m. -[2018-02-13T00:33:47.241] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:33:47.277] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:33:47.394] [INFO] cheese - inserting 1000 documents. first: William MacQuitty and last: Wikipedia:Featured picture candidates/329 eclipse -[2018-02-13T00:33:47.455] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:33:47.497] [INFO] cheese - inserting 1000 documents. first: Strzakly and last: Samsung Mirage -[2018-02-13T00:33:47.511] [INFO] cheese - inserting 1000 documents. first: Template:Estonian parliamentary election, 2011 and last: Rock Camp (disambiguation) -[2018-02-13T00:33:47.516] [INFO] cheese - inserting 1000 documents. first: Watson baronets and last: Waterborne (film) -[2018-02-13T00:33:47.525] [INFO] cheese - inserting 1000 documents. first: Category:Military installations of the Ground Forces of Islamic Republic of Iran Army and last: Microtus liechtensteinii -[2018-02-13T00:33:47.537] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:33:47.548] [INFO] cheese - inserting 1000 documents. first: File:Marano di Napoli-Stemma.png and last: Badra'i -[2018-02-13T00:33:47.555] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:33:47.565] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:33:47.588] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:33:47.610] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:33:47.704] [INFO] cheese - inserting 1000 documents. first: Brace procedure and last: USS Tortuga -[2018-02-13T00:33:47.777] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:33:47.904] [INFO] cheese - inserting 1000 documents. first: Atuagagdliutit and last: Matt Uelmen -[2018-02-13T00:33:47.933] [INFO] cheese - inserting 1000 documents. first: Al-Sabah family and last: Gierloz -[2018-02-13T00:33:47.943] [INFO] cheese - inserting 1000 documents. first: Mario Pérez Jiménez and last: Küchük Muhammad -[2018-02-13T00:33:47.958] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:47.970] [INFO] cheese - inserting 1000 documents. first: Gregoor and last: Alvin Ailey's Revelations -[2018-02-13T00:33:47.971] [INFO] cheese - inserting 1000 documents. first: A Fool Never Learns and last: Paerata railway station -[2018-02-13T00:33:47.995] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:33:48.010] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:33:48.029] [INFO] cheese - inserting 1000 documents. first: Template:JusticeSecretary and last: Ogilvy-Wedderburn baronets -[2018-02-13T00:33:48.077] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:33:48.033] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:48.188] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:33:48.323] [INFO] cheese - inserting 1000 documents. first: Gierloz Polska and last: Iglowice -[2018-02-13T00:33:48.392] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:33:48.593] [INFO] cheese - inserting 1000 documents. first: File:St Mary Cathedral Calgary front statue.jpg and last: Roderick at Random -[2018-02-13T00:33:48.657] [INFO] cheese - inserting 1000 documents. first: Igly and last: Kiezliny -[2018-02-13T00:33:48.666] [INFO] cheese - inserting 1000 documents. first: Option (football) and last: Otterberg (Verbandsgemeinde) -[2018-02-13T00:33:48.672] [INFO] cheese - inserting 1000 documents. first: Wolstan (disambiguation) and last: But-1-en-3-yne -[2018-02-13T00:33:48.687] [INFO] cheese - inserting 1000 documents. first: Papatoitoi Railway Station and last: Her Majesty Love -[2018-02-13T00:33:48.692] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:33:48.685] [INFO] cheese - inserting 1000 documents. first: File:The Psychedelic Furs cover.jpg and last: Acting Ensign Crusher -[2018-02-13T00:33:48.698] [INFO] cheese - inserting 1000 documents. first: Mahagama (community development block) and last: Online library -[2018-02-13T00:33:48.703] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:33:48.720] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:33:48.761] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:33:48.775] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:33:48.817] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:33:48.829] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:33:48.992] [INFO] cheese - inserting 1000 documents. first: Kijowiec-Sciany and last: Krusliwiec -[2018-02-13T00:33:49.015] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:33:49.221] [INFO] cheese - inserting 1000 documents. first: CCCP Fedeli alla linea and last: Fight night at the joe -[2018-02-13T00:33:49.228] [INFO] cheese - inserting 1000 documents. first: Ihre Majestät die Liebe and last: Todd Glass awful prank show -[2018-02-13T00:33:49.236] [INFO] cheese - inserting 1000 documents. first: Krusze-Lubnice and last: Jilin Provincial Experimental School -[2018-02-13T00:33:49.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/International Academy for Genealogical and Heraldic Studies and last: Eytan Elbaz -[2018-02-13T00:33:49.251] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:33:49.256] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:33:49.277] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:49.288] [INFO] cheese - inserting 1000 documents. first: Template:User in Senegal/doc and last: Category:Geography of Jo Daviess County, Illinois -[2018-02-13T00:33:49.301] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:49.364] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:33:49.417] [INFO] cheese - inserting 1000 documents. first: Blind spot (vision) and last: Category:1852 in sports -[2018-02-13T00:33:49.506] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:33:49.544] [INFO] cheese - inserting 1000 documents. first: Dent (fell) and last: Louis MacNeice -[2018-02-13T00:33:49.637] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:33:49.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Ferdinand Bockman and last: Spartak Kavkaztransgaz Izobilny -[2018-02-13T00:33:49.702] [INFO] cheese - inserting 1000 documents. first: The Greatest Game Show Ever and last: Convention for the Suppression of Unlawful Acts against the Safety of Civil Aviation -[2018-02-13T00:33:49.775] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:33:49.784] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:33:49.795] [INFO] cheese - inserting 1000 documents. first: File:The Man in the Brown Suit First Edition Cover 1924.jpg and last: Mindhunter -[2018-02-13T00:33:49.858] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Will County, Illinois and last: Category:Novels set in Chile -[2018-02-13T00:33:49.904] [INFO] cheese - inserting 1000 documents. first: Follow You Home (Embrace song) and last: John Patrick Acquaviva -[2018-02-13T00:33:49.908] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:49.936] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:50.033] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:33:50.158] [INFO] cheese - inserting 1000 documents. first: Breakwaters and last: Enetoi -[2018-02-13T00:33:50.228] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:33:50.364] [INFO] cheese - inserting 1000 documents. first: Lilliputian violet and last: Carbine Studios -[2018-02-13T00:33:50.371] [INFO] cheese - inserting 1000 documents. first: File:Emblem of Daekyo Kagaroos.jpg and last: Category:Media in the San Francisco Bay Area -[2018-02-13T00:33:50.435] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:50.443] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:33:50.557] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/change-apps.com and last: Jamila Mejri -[2018-02-13T00:33:50.566] [INFO] cheese - inserting 1000 documents. first: Bulgarian toponyms in Antarctica (F) and last: Eas Mor (upper) -[2018-02-13T00:33:50.578] [INFO] cheese - inserting 1000 documents. first: 1926 Florida Gators football team and last: Wikipedia:Reference desk/Archives/Entertainment/2007 August 21 -[2018-02-13T00:33:50.678] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:33:50.692] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:33:50.697] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:33:50.811] [INFO] cheese - inserting 1000 documents. first: Frederick Louis MacNeice and last: Langbaurgh -[2018-02-13T00:33:50.874] [INFO] cheese - inserting 1000 documents. first: This Week (BBC, UK) and last: Post hoc analysis -[2018-02-13T00:33:50.898] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T00:33:50.938] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:50.983] [INFO] cheese - inserting 1000 documents. first: Anulus inguinalis profundus and last: Royal Banner -[2018-02-13T00:33:51.054] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:33:51.113] [INFO] cheese - inserting 1000 documents. first: File:Main Street in Radzin.JPG and last: Blocco-Juve -[2018-02-13T00:33:51.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Entermedia GmbH and last: Book:Nucleosynthesis or naturally forming elements -[2018-02-13T00:33:51.221] [INFO] cheese - inserting 1000 documents. first: Intuitive Counselor and last: Royal Dutch East Indies Army -[2018-02-13T00:33:51.238] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:33:51.300] [INFO] cheese - inserting 1000 documents. first: Berhthun (bishop) and last: Template:Pakistan Squad 1975 Cricket World Cup -[2018-02-13T00:33:51.353] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:33:51.359] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:33:51.403] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:33:51.539] [INFO] cheese - inserting 1000 documents. first: Sterling Entertainment Group and last: Drepaneid -[2018-02-13T00:33:51.660] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:33:51.803] [INFO] cheese - inserting 1000 documents. first: PVX-410 and last: Wikipedia:WikiProject Spam/LinkReports/findminecraft.com -[2018-02-13T00:33:51.803] [INFO] cheese - inserting 1000 documents. first: Herrn Filip Collins Abenteuer and last: Black Earth Farming -[2018-02-13T00:33:51.811] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Shawn Noel and last: Rebatement of the rectangle -[2018-02-13T00:33:51.840] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:33:51.849] [INFO] cheese - inserting 1000 documents. first: The King and I (film) and last: File:Ryujiyamazaki.jpg -[2018-02-13T00:33:51.846] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:33:51.856] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:33:51.941] [INFO] cheese - inserting 1000 documents. first: Battle of Stepney and last: H. G. Van de Sande Bakhuyzen -[2018-02-13T00:33:51.949] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:33:51.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:TTANS and last: 2007 World Championships in Athletics – Men's 10,000 metres -[2018-02-13T00:33:52.040] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T00:33:52.047] [INFO] cheese - inserting 1000 documents. first: Echeneid and last: Aufstrich -[2018-02-13T00:33:52.064] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:52.126] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:33:52.244] [INFO] cheese - inserting 1000 documents. first: Vinos de Madrid (DO) and last: Department of Justice and Law Reform -[2018-02-13T00:33:52.299] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:33:52.328] [INFO] cheese - inserting 1000 documents. first: 2.0 EDR and last: Edgar Allan Poe’s bibliography -[2018-02-13T00:33:52.335] [INFO] cheese - inserting 1000 documents. first: Hedgehog medick and last: Sankheda Furniture -[2018-02-13T00:33:52.375] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sam Henderson (weightlifter) and last: Category:Disestablishments in Bahrain by decade -[2018-02-13T00:33:52.386] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:33:52.386] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:33:52.456] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:33:52.613] [INFO] cheese - inserting 1000 documents. first: Bixby, Missouri and last: Itemirus -[2018-02-13T00:33:52.625] [INFO] cheese - inserting 1000 documents. first: Herpes simplex I virus and last: Pepsi Ripsaw Roller Coaster -[2018-02-13T00:33:52.706] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:33:52.722] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:52.821] [INFO] cheese - inserting 1000 documents. first: (5) Astraea and last: United Democrats -[2018-02-13T00:33:52.924] [INFO] cheese - inserting 1000 documents. first: Fort Bend School District and last: Ceraceomyces -[2018-02-13T00:33:52.942] [INFO] cheese - inserting 1000 documents. first: Thilak and last: Mame Slaughter -[2018-02-13T00:33:52.948] [INFO] cheese - inserting 1000 documents. first: File:Logo Esselunga.gif and last: Category:Islamic organisations based in Bangladesh -[2018-02-13T00:33:52.978] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:33:52.983] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:33:52.999] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:33:53.061] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:33:53.200] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wales/List of people born in Wales on Wikidata and last: Castro brothers -[2018-02-13T00:33:53.244] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:33:53.290] [INFO] cheese - inserting 1000 documents. first: Swamp Rock and last: E. Rhys -[2018-02-13T00:33:53.309] [INFO] cheese - inserting 1000 documents. first: Pepsi Ripsaw and last: Gârcic River -[2018-02-13T00:33:53.341] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:53.356] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:33:53.359] [INFO] cheese - inserting 1000 documents. first: Washington D.C. International and last: Fash Rural District -[2018-02-13T00:33:53.388] [INFO] cheese - inserting 1000 documents. first: Soleiman Agha and last: Chipko Andolan -[2018-02-13T00:33:53.429] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:33:53.439] [INFO] cheese - inserting 1000 documents. first: Category:Islamic organisations based in the United Kingdom and last: SMS Prinz Adalbert -[2018-02-13T00:33:53.449] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:33:53.501] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:33:53.566] [INFO] cheese - inserting 1000 documents. first: Gabriel Espinosa-Canada and last: Toronto Comics Art Festival -[2018-02-13T00:33:53.611] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:33:53.725] [INFO] cheese - inserting 1000 documents. first: Star-Spangled Kid and last: Social policy -[2018-02-13T00:33:53.779] [INFO] cheese - inserting 1000 documents. first: El Malpaís National Monument and last: Manitoba Justice -[2018-02-13T00:33:53.786] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Cartoon Network/Section header and last: Template:Did you know nominations/Opium production in Burma -[2018-02-13T00:33:53.801] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:33:53.828] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:53.831] [INFO] cheese - inserting 1000 documents. first: Samsung Mobile Innovator and last: Catherine Guigon -[2018-02-13T00:33:53.843] [INFO] cheese - inserting 1000 documents. first: Category:First Doctor novels and last: Alpine County Courthouse -[2018-02-13T00:33:53.830] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:33:53.896] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:53.913] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:53.933] [INFO] cheese - inserting 1000 documents. first: Snowball (cocktail) and last: Berisad Glacier -[2018-02-13T00:33:53.990] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:33:54.042] [INFO] cheese - inserting 1000 documents. first: Filmography of Brian Cox and last: Category:2016 Colonial Athletic Association baseball season -[2018-02-13T00:33:54.126] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:33:54.265] [INFO] cheese - inserting 1000 documents. first: Template:World Heritage Sites in Malaysia and last: Qurahjil -[2018-02-13T00:33:54.291] [INFO] cheese - inserting 1000 documents. first: File:Peace River Bible Institute (logo).jpg and last: 6th Alpine Division -[2018-02-13T00:33:54.300] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:33:54.331] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:54.389] [INFO] cheese - inserting 1000 documents. first: Fukushima Daiichi nuclear plant and last: Ajnathavasam -[2018-02-13T00:33:54.418] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:33:54.436] [INFO] cheese - inserting 1000 documents. first: The Libertines (DVD) and last: Non-archimedean field -[2018-02-13T00:33:54.480] [INFO] cheese - inserting 1000 documents. first: List of muscles of the body and last: File:Poster of the movie.jpg -[2018-02-13T00:33:54.491] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:54.527] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:33:54.557] [INFO] cheese - inserting 1000 documents. first: Jean Graton and last: AMC Amitron -[2018-02-13T00:33:54.626] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:33:54.711] [INFO] cheese - inserting 1000 documents. first: San Francisco in the 1970s and last: Mississippi State Bulldogs men's tennis -[2018-02-13T00:33:54.716] [INFO] cheese - inserting 1000 documents. first: Pasque Flower and last: Teemu Rannikko -[2018-02-13T00:33:54.766] [INFO] cheese - inserting 1000 documents. first: Rudy Árias and last: The Dream Girl (operetta) -[2018-02-13T00:33:54.771] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:33:54.779] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:33:54.857] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:33:54.888] [INFO] cheese - inserting 1000 documents. first: Eanippadikal and last: File:Superboy (Kon-El) (Smallville).jpg -[2018-02-13T00:33:54.896] [INFO] cheese - inserting 1000 documents. first: Nissan Pivo and last: Eon (novel) -[2018-02-13T00:33:54.943] [INFO] cheese - inserting 1000 documents. first: Opus De Funk (disambiguation) and last: Zénith (Cap-Haïtien) -[2018-02-13T00:33:54.948] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:33:54.955] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:33:55.025] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:33:55.423] [INFO] cheese - inserting 1000 documents. first: Category:National members of the Asian Cycling Confederation and last: Wikipedia:Articles for deletion/ussein Karim (2nd nomination) -[2018-02-13T00:33:55.425] [INFO] cheese - inserting 1000 documents. first: Valea Mare River (Sâmbotin) and last: Wikipedia:Articles for deletion/Colonization of Trans-Neptunian Objects -[2018-02-13T00:33:55.430] [INFO] cheese - inserting 1000 documents. first: Swede (Root Vegetbale) and last: V. P. Balasubramanian -[2018-02-13T00:33:55.461] [INFO] cheese - inserting 1000 documents. first: Birla Foundation and last: Walsh, Robert -[2018-02-13T00:33:55.469] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:33:55.482] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:55.517] [INFO] cheese - inserting 1000 documents. first: File:Joe Blackledge.jpg and last: Medial arcuate ligaments -[2018-02-13T00:33:55.520] [INFO] cheese - inserting 1000 documents. first: 2011 IRB Junior World Championship and last: In the Shadow of the Dreamchild -[2018-02-13T00:33:55.520] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:33:55.551] [INFO] cheese - inserting 1000 documents. first: Vrbas (river) and last: Psammoperca waigiensis -[2018-02-13T00:33:55.526] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:55.585] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:33:55.565] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:55.644] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:33:55.929] [INFO] cheese - inserting 1000 documents. first: Medial bicipital grooves and last: William E. Higginbotham -[2018-02-13T00:33:55.964] [INFO] cheese - inserting 1000 documents. first: Category:Academia in Singapore and last: Category:1961 establishments in Uganda -[2018-02-13T00:33:55.970] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:33:56.009] [INFO] cheese - inserting 1000 documents. first: Abdul Qadir Jeelani and last: Wikipedia:Today's featured article/September 27, 2006 -[2018-02-13T00:33:56.031] [INFO] cheese - inserting 1000 documents. first: Ron May (United Airlines Flight 232) and last: Sesbanieae -[2018-02-13T00:33:56.032] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:33:56.038] [INFO] cheese - inserting 1000 documents. first: Template:Homebrew and last: Category:1710s establishments in France -Cabal -[2018-02-13T00:33:56.088] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:33:56.092] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:56.106] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:33:56.110] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:33:56.169] [INFO] cheese - inserting 1000 documents. first: Galtieri and last: Manitoba Labour Party -[2018-02-13T00:33:56.225] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:33:56.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:STINKBOMB and last: Bangladesh - Chile relations -[2018-02-13T00:33:56.366] [INFO] cheese - inserting 1000 documents. first: Sydney Place and last: File:Annie - Happy Without You.png -[2018-02-13T00:33:56.394] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:56.420] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:33:56.444] [INFO] cheese - inserting 1000 documents. first: File:Grand Canal at Wilton Terrace, Dublin.jpg and last: Leonid Volochine -[2018-02-13T00:33:56.488] [INFO] cheese - inserting 1000 documents. first: Charles Whitworth and last: Nikolay Zhushikov -[2018-02-13T00:33:56.492] [INFO] cheese - inserting 1000 documents. first: Headlight-Herald (Tillamook) and last: Category:Waynesburg (minor league baseball) players -[2018-02-13T00:33:56.528] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:33:56.580] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:33:56.582] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:56.601] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/September 28, 2006 and last: Atlético Goianense -[2018-02-13T00:33:56.670] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:33:56.888] [INFO] cheese - inserting 1000 documents. first: Category:Table tennis competitions by country and last: Ulster Defence Regiment Medal -[2018-02-13T00:33:56.958] [INFO] cheese - inserting 1000 documents. first: The Firstborn Is Dead and last: André Lwoff -[2018-02-13T00:33:56.972] [INFO] cheese - inserting 1000 documents. first: File:JC-LiveUnplugged.jpg and last: Sankt Johann -[2018-02-13T00:33:56.975] [INFO] cheese - inserting 1000 documents. first: File:The Queen of Hearts (Agnetha Fältskog song) coverart.jpg and last: .ae Domain Administration -[2018-02-13T00:33:56.991] [INFO] cheese - inserting 1000 documents. first: Banca Popolare FriulAdria and last: Wikipedia:Articles for deletion/Joel Spitzer -[2018-02-13T00:33:56.990] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:33:56.998] [INFO] cheese - inserting 1000 documents. first: Bangladesh Chile relations and last: The Face (U.S. season 1) -[2018-02-13T00:33:57.032] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:33:57.043] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:33:57.049] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:33:57.081] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:33:57.082] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:33:57.182] [INFO] cheese - inserting 1000 documents. first: Atletico Goianense and last: United States Route 12 -[2018-02-13T00:33:57.245] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:33:57.381] [INFO] cheese - inserting 1000 documents. first: File:Donnaperamica A Woman as a Friend.jpg and last: Brandon Sheffield -[2018-02-13T00:33:57.389] [INFO] cheese - inserting 1000 documents. first: Portal:Chronology/Selected article and last: Aparisyon -[2018-02-13T00:33:57.415] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:33:57.422] [INFO] cheese - inserting 1000 documents. first: Bushido 9 and last: Insaniquarium! -[2018-02-13T00:33:57.430] [INFO] cheese - inserting 1000 documents. first: Anthropogenic Heat and last: Luby-Kurki -[2018-02-13T00:33:57.430] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:33:57.470] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:33:57.479] [INFO] cheese - inserting 1000 documents. first: M Yasir and last: Itamar massacre -[2018-02-13T00:33:57.487] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:33:57.542] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:33:57.619] [INFO] cheese - inserting 1000 documents. first: United States Route 112 and last: Testament of Joseph -[2018-02-13T00:33:57.661] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:33:57.687] [INFO] cheese - inserting 1000 documents. first: Lubycza Krolewska and last: Mlada Hora -[2018-02-13T00:33:57.711] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:33:57.745] [INFO] cheese - inserting 1000 documents. first: Mikhael Gromov and last: Contra terrene -[2018-02-13T00:33:57.795] [INFO] cheese - inserting 1000 documents. first: Burning Down the House: Fighting Fires and Losing Myself and last: David Joseph (basketball) -[2018-02-13T00:33:57.816] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:57.844] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:33:57.872] [INFO] cheese - inserting 1000 documents. first: Cabral Neculai Ibacka and last: Drăculeşti River -[2018-02-13T00:33:57.890] [INFO] cheese - inserting 1000 documents. first: File:RobynSings.jpg and last: Lissotis hartlaubii -[2018-02-13T00:33:57.915] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:33:57.925] [INFO] cheese - inserting 1000 documents. first: Mlawka and last: Nowy Kadlubek -[2018-02-13T00:33:57.928] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:33:57.956] [INFO] cheese - inserting 1000 documents. first: File:Città del Vaticano.png and last: Amphoe Ban Khok -[2018-02-13T00:33:57.957] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:33:58.001] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:33:58.116] [INFO] cheese - inserting 1000 documents. first: Testament of Ashur and last: DanskMetal -[2018-02-13T00:33:58.158] [INFO] cheese - inserting 1000 documents. first: 2016 Launceston Tennis International – Women's Doubles and last: Ugom Range -[2018-02-13T00:33:58.161] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:58.198] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:58.255] [INFO] cheese - inserting 1000 documents. first: Naqus and last: James Lung -[2018-02-13T00:33:58.275] [INFO] cheese - inserting 1000 documents. first: Nowy Kaleczyn and last: Morpho godarti -[2018-02-13T00:33:58.304] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:33:58.334] [INFO] cheese - inserting 1000 documents. first: Svetlana (name) and last: Turbo Super Stunt Squad -[2018-02-13T00:33:58.339] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:33:58.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Merced skimmers and last: Dance, Dance, Dance (Yowsah, Yowsah, Yowsah) -[2018-02-13T00:33:58.402] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:33:58.442] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:33:58.634] [INFO] cheese - inserting 1000 documents. first: Nauseton and last: Philip Levine (entrepreneur) -[2018-02-13T00:33:58.659] [INFO] cheese - inserting 1000 documents. first: African common toad (disambiguation) and last: Jaseel Ismail -[2018-02-13T00:33:58.669] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:33:58.674] [INFO] cheese - inserting 1000 documents. first: Shiozawa, Niigata and last: Smolyan -[2018-02-13T00:33:58.710] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:33:58.712] [INFO] cheese - inserting 1000 documents. first: Porkkalam (2009 film) and last: Category:The Singers Unlimited albums -[2018-02-13T00:33:58.748] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:33:58.754] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:33:58.842] [INFO] cheese - inserting 1000 documents. first: London Plus and last: Badia, South Tyrol -[2018-02-13T00:33:58.855] [INFO] cheese - inserting 1000 documents. first: Mikhaylovskiy mine and last: Stanislav Stashkov -[2018-02-13T00:33:58.901] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:58.911] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:33:58.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Harold Brown (media) and last: Singhofen -[2018-02-13T00:33:59.038] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:59.046] [INFO] cheese - inserting 1000 documents. first: Timor-Leste at the 2000 Summer Paralympics and last: Category:21st-century establishments in Japan -[2018-02-13T00:33:59.050] [INFO] cheese - inserting 1000 documents. first: Machilipatnam Area Development Authority and last: Category:Start-Class Los Angeles Rams articles -[2018-02-13T00:33:59.093] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:59.122] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:33:59.201] [INFO] cheese - inserting 1000 documents. first: Manyu (department) and last: Weejas -[2018-02-13T00:33:59.247] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:33:59.269] [INFO] cheese - inserting 1000 documents. first: Category:Alphaviruses and last: Rashidali -[2018-02-13T00:33:59.316] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:33:59.328] [INFO] cheese - inserting 1000 documents. first: Platon (photographer) and last: Portal:New Zealand/Selected article/Week 16, 2006 -[2018-02-13T00:33:59.394] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Los Angeles Rams articles and last: Edward C. Bairstow -[2018-02-13T00:33:59.393] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:33:59.408] [INFO] cheese - inserting 1000 documents. first: Steinsberg and last: Pacific Rim Winemakers -[2018-02-13T00:33:59.443] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:33:59.455] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:33:59.483] [INFO] cheese - inserting 1000 documents. first: Expressive language disorder and last: HMS Caesar -[2018-02-13T00:33:59.494] [INFO] cheese - inserting 1000 documents. first: Category:3rd-millennium establishments in Japan and last: List of minerals (notes) -[2018-02-13T00:33:59.553] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:33:59.564] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:33:59.639] [INFO] cheese - inserting 1000 documents. first: Bishop Kenny and last: List of Czech films of the 1960s -[2018-02-13T00:33:59.773] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:33:59.824] [INFO] cheese - inserting 1000 documents. first: Rashid'ali and last: File:Arms of the Diocese of Cape Town.gif -[2018-02-13T00:33:59.975] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:34:00.011] [INFO] cheese - inserting 1000 documents. first: Al-Baith and last: Blake, Geoffrey -[2018-02-13T00:34:00.060] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:34:00.067] [INFO] cheese - inserting 1000 documents. first: Super Mario Bros. & Friends and last: The Runes of the Earth -[2018-02-13T00:34:00.111] [INFO] cheese - inserting 1000 documents. first: Don Fox and last: Wikipedia:WikiProject Spam/LinkReports/spatemag.com -[2018-02-13T00:34:00.151] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:34:00.202] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:34:00.466] [INFO] cheese - inserting 1000 documents. first: Cuccurullo and last: Augustinius Neldal Lossius -[2018-02-13T00:34:00.532] [INFO] cheese - inserting 1000 documents. first: Morelos mine and last: HMS Chelmer (1904) -[2018-02-13T00:34:00.535] [INFO] cheese - inserting 1000 documents. first: Kevin rose and last: Tony Geary -[2018-02-13T00:34:00.539] [INFO] cheese - inserting 1000 documents. first: Bourne, Geoffrey and last: Lincoln station -[2018-02-13T00:34:00.548] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:34:00.599] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:34:00.614] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:34:00.632] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:34:00.781] [INFO] cheese - inserting 1000 documents. first: ARMulator and last: Indian folk dance -[2018-02-13T00:34:00.820] [INFO] cheese - inserting 1000 documents. first: 100 broken windows and last: I Think I Love You -[2018-02-13T00:34:00.822] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:34:00.884] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:34:00.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thomas Verenna and last: Birthday Honours 1895 -[2018-02-13T00:34:00.963] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:01.033] [INFO] cheese - inserting 1000 documents. first: Rónán mac Colmáin (Irish poet) and last: Darlin' Darlin' Baby (Sweet Tender Love) -[2018-02-13T00:34:01.035] [INFO] cheese - inserting 1000 documents. first: Atakka Yō! and last: YIC -[2018-02-13T00:34:01.046] [INFO] cheese - inserting 1000 documents. first: Techno folk and last: Category:Nuclear energy in Ghana -[2018-02-13T00:34:01.073] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:01.103] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:34:01.153] [INFO] cheese - batch complete in: 1.6 secs -[2018-02-13T00:34:01.241] [INFO] cheese - inserting 1000 documents. first: Birthday Honours 1896 and last: Pale Bridewort -[2018-02-13T00:34:01.248] [INFO] cheese - inserting 1000 documents. first: East German national ice hockey team and last: Portal:SAARC/Selected Picture/3-Max -[2018-02-13T00:34:01.268] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:34:01.294] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:01.330] [INFO] cheese - inserting 1000 documents. first: WTO (disambiguation) and last: B-58 -[2018-02-13T00:34:01.370] [INFO] cheese - inserting 1000 documents. first: Shah Reza Pahlavi and last: André Lacroix -[2018-02-13T00:34:01.414] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:34:01.428] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in East Germany by decade and last: Category:Articles containing Romansh-language text -[2018-02-13T00:34:01.437] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:34:01.480] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:34:01.499] [INFO] cheese - inserting 1000 documents. first: Aurora's drift and last: Agusta A.105 -[2018-02-13T00:34:01.556] [INFO] cheese - inserting 1000 documents. first: Murugesu Balasunderam and last: Wikipedia:Editor review/Simply south 5 -[2018-02-13T00:34:01.563] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:01.620] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:34:01.702] [INFO] cheese - inserting 1000 documents. first: Chalarotona and last: Template:Nippon TV Do'yō drama -[2018-02-13T00:34:01.727] [INFO] cheese - inserting 1000 documents. first: Frémicourt and last: Fractievoorzitter -[2018-02-13T00:34:01.743] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:01.792] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:34:01.878] [INFO] cheese - inserting 1000 documents. first: Hull City Council and last: Wikipedia:Featured portal candidates/Portal:Food -[2018-02-13T00:34:01.899] [INFO] cheese - inserting 1000 documents. first: Category:1900s establishments in Ceylon and last: Cossus striolatus -[2018-02-13T00:34:01.958] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:34:01.973] [INFO] cheese - inserting 1000 documents. first: Civilized Evil and last: Subspecifically -[2018-02-13T00:34:01.978] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:34:02.046] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:34:02.095] [INFO] cheese - inserting 1000 documents. first: Category:Honor societies and last: List of Australian divisions in WWI -[2018-02-13T00:34:02.121] [INFO] cheese - inserting 1000 documents. first: Book:Dorothy Dandridge and last: Zaur Tagi-Zade -[2018-02-13T00:34:02.161] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:34:02.185] [INFO] cheese - inserting 1000 documents. first: Leicetser City F.C. and last: National Oath Tower -[2018-02-13T00:34:02.193] [INFO] cheese - inserting 1000 documents. first: Rethink Robotics and last: Category:Education in Karnataka by district -[2018-02-13T00:34:02.202] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:34:02.247] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:34:02.274] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:02.333] [INFO] cheese - inserting 1000 documents. first: Paropta johannes and last: Gakiyeh, Dorudfaraman -[2018-02-13T00:34:02.365] [INFO] cheese - inserting 1000 documents. first: Geng Zhong and last: Madam (Fashion) -[2018-02-13T00:34:02.369] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:34:02.370] [INFO] cheese - inserting 1000 documents. first: Veijo Puhjo and last: Wikipedia:Version 1.0 Editorial Team/Baseball player articles by quality/12 -[2018-02-13T00:34:02.417] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:34:02.421] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:34:02.608] [INFO] cheese - inserting 1000 documents. first: Draft:Sobolev-RKHS-CA and last: Template:WikiProject computer science -[2018-02-13T00:34:02.612] [INFO] cheese - inserting 1000 documents. first: Leueen MacGrath and last: Wikipedia:Possibly unfree files/2007 September 1 -[2018-02-13T00:34:02.654] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:34:02.662] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:34:02.712] [INFO] cheese - inserting 1000 documents. first: Gakeyeh and last: Category:Articles with Kanuri-language external links -[2018-02-13T00:34:02.745] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:34:02.764] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Baseball player articles by quality/13 and last: Philip II of Macedon National Stadium -[2018-02-13T00:34:02.856] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:34:03.047] [INFO] cheese - inserting 1000 documents. first: Robert Sandeman and last: Le Concert des Nations -[2018-02-13T00:34:03.093] [INFO] cheese - inserting 1000 documents. first: Obdurodon dicksoni and last: Binky (Harry Potter) -[2018-02-13T00:34:03.149] [INFO] cheese - inserting 1000 documents. first: Jagged Germanderwort and last: Komsomolske -[2018-02-13T00:34:03.154] [INFO] cheese - inserting 1000 documents. first: 3-M and last: Blackwell Scientific -[2018-02-13T00:34:03.164] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:34:03.185] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:03.243] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T00:34:03.289] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T00:34:03.409] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2007 September 1 and last: Valle del Cauca Deputies hostage crisis -[2018-02-13T00:34:03.427] [INFO] cheese - inserting 1000 documents. first: File:Tom keifer - the way life goes.jpg and last: Eshwara Temple, Kengeri, Bangalore -[2018-02-13T00:34:03.524] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:34:03.532] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:34:03.538] [INFO] cheese - inserting 1000 documents. first: File:Liu Qixiong.jpg and last: Douglas M. Baker, Jr -[2018-02-13T00:34:03.591] [INFO] cheese - inserting 1000 documents. first: Category:New Age albums by Greek artists and last: Perthshire beardmoss -[2018-02-13T00:34:03.626] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:34:03.632] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:34:03.786] [INFO] cheese - inserting 1000 documents. first: Categories of protected areas of Ukraine and last: Category:Sackville family -[2018-02-13T00:34:03.822] [INFO] cheese - inserting 1000 documents. first: Bibles for America and last: Tahoma National Cemetery -[2018-02-13T00:34:03.836] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:34:03.959] [INFO] cheese - inserting 1000 documents. first: Perthshire Beardmoss and last: Category:1344 disestablishments by continent -[2018-02-13T00:34:04.004] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:34:03.920] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:34:04.094] [INFO] cheese - inserting 1000 documents. first: Category:1993 in Monaco and last: In the zone -[2018-02-13T00:34:04.171] [INFO] cheese - inserting 1000 documents. first: Category:Railway services introduced in 1883 and last: Dekko -[2018-02-13T00:34:04.181] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:34:04.227] [INFO] cheese - inserting 1000 documents. first: File:Kellyclarksonbecauseofyouvideo.png and last: File:Bigbrainacademymindsprint.jpg -[2018-02-13T00:34:04.233] [INFO] cheese - inserting 1000 documents. first: Fado (character) and last: Tree sitter -[2018-02-13T00:34:04.247] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:34:04.305] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:34:04.336] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:34:04.386] [INFO] cheese - inserting 1000 documents. first: H. Vishwanath and last: Intel Core i Series -[2018-02-13T00:34:04.435] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:34:04.461] [INFO] cheese - inserting 1000 documents. first: The Constant Lover (Magneta Lane song) and last: Apostle plant -[2018-02-13T00:34:04.510] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:34:04.569] [INFO] cheese - inserting 1000 documents. first: Vampiro Americano and last: Category:Secondary schools in Finland -[2018-02-13T00:34:04.634] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:34:04.642] [INFO] cheese - inserting 1000 documents. first: Taisho Tripitaka and last: César Rincón -[2018-02-13T00:34:04.671] [INFO] cheese - inserting 1000 documents. first: Category:2002 establishments in Taiwan and last: Mountain snowberry -[2018-02-13T00:34:04.693] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:04.695] [INFO] cheese - inserting 1000 documents. first: Katherine Levy and last: Junmin Shenfenzheng -[2018-02-13T00:34:04.716] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:34:04.742] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:34:04.778] [INFO] cheese - inserting 1000 documents. first: 2002 Júbilo Iwata season and last: Charity Watch -[2018-02-13T00:34:04.816] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:34:04.867] [INFO] cheese - inserting 1000 documents. first: Walking iris and last: Burns, Raymond -[2018-02-13T00:34:04.915] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:34:04.957] [INFO] cheese - inserting 1000 documents. first: Immunities and last: Liberalism and radicalism in Bulgaria -[2018-02-13T00:34:05.011] [INFO] cheese - inserting 1000 documents. first: Blackburn High School and last: Rich content -[2018-02-13T00:34:05.014] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:34:05.030] [INFO] cheese - inserting 1000 documents. first: Evgeni Popov and last: Ernest Clarence Breeze -[2018-02-13T00:34:05.065] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:05.072] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:34:05.104] [INFO] cheese - inserting 1000 documents. first: I Love You (EP) and last: Camp Thomas (Ohio) -[2018-02-13T00:34:05.147] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:34:05.149] [INFO] cheese - inserting 1000 documents. first: Chang, Raymond and last: Vernon Regional Junior College -[2018-02-13T00:34:05.150] [INFO] cheese - inserting 1000 documents. first: Template:User WP Ras al-Khaimah and last: Portal:Current events/2011 March 18 -[2018-02-13T00:34:05.177] [INFO] cheese - inserting 1000 documents. first: ARA Santiago del Estero (S-12) and last: Wikipedia:Relevance of content/Content policy analysis -[2018-02-13T00:34:05.187] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:34:05.212] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:05.247] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:34:05.450] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for arbitration/Aitias/Workshop and last: Dr. Sangamesh Saundattimath -[2018-02-13T00:34:05.498] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:34:05.515] [INFO] cheese - inserting 1000 documents. first: Saint Rögnvald and last: Michael Chriton -[2018-02-13T00:34:05.542] [INFO] cheese - inserting 1000 documents. first: Binnein Beag and last: Countess of Oxford -[2018-02-13T00:34:05.553] [INFO] cheese - inserting 1000 documents. first: File:March of the Red Bull Legions.ogg and last: Template:Handball at the South Asian Games -[2018-02-13T00:34:05.560] [INFO] cheese - inserting 1000 documents. first: Special olympics and last: Cosmopterix abnormalis -[2018-02-13T00:34:05.566] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:34:05.570] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Two-cent piece (United States coin) and last: Food from the 'Hood -[2018-02-13T00:34:05.581] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:34:05.606] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:05.623] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:05.623] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:34:05.713] [INFO] cheese - inserting 1000 documents. first: Gingerbread man and last: Omotegō, Fukushima -[2018-02-13T00:34:05.917] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:34:05.984] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Greg Gossel and last: COS by H&M -[2018-02-13T00:34:06.042] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:34:06.115] [INFO] cheese - inserting 1000 documents. first: Midterm elections 2010 and last: 1992 IIHF World Women's Championship -[2018-02-13T00:34:06.133] [INFO] cheese - inserting 1000 documents. first: Africa Fencing Confederation and last: George Schley -[2018-02-13T00:34:06.151] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:34:06.183] [INFO] cheese - inserting 1000 documents. first: File:Kathakali - the play begins.jpg and last: Whitehall, Stronsay -[2018-02-13T00:34:06.184] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:34:06.237] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:34:06.242] [INFO] cheese - inserting 1000 documents. first: Template:Redirect template index and last: Serbia and Montenegro Basketball Cup -[2018-02-13T00:34:06.292] [INFO] cheese - inserting 1000 documents. first: File:Dmharvey-wallpaper-alien.svg and last: The Roof Gardens and Babylon -[2018-02-13T00:34:06.301] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:34:06.355] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:34:06.450] [INFO] cheese - inserting 1000 documents. first: Spain support for Iran during the Iran–Iraq war and last: Nintoku Seamount -[2018-02-13T00:34:06.502] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:34:06.555] [INFO] cheese - inserting 1000 documents. first: 1511 Idrija earthquake and last: Wikipedia:Articles for deletion/Kiichi Nakamoto -[2018-02-13T00:34:06.584] [INFO] cheese - inserting 1000 documents. first: Edward Hitchcock jr and last: Paul Adams (Massachusetts politician) -[2018-02-13T00:34:06.613] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:34:06.636] [INFO] cheese - inserting 1000 documents. first: Shacal-2 and last: Aleksandr Sergeyevich Pushkin -[2018-02-13T00:34:06.647] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:34:06.660] [INFO] cheese - inserting 1000 documents. first: Mesara Plain and last: Category:National Register of Historic Places in King County, Washington -[2018-02-13T00:34:06.693] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:34:06.715] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:34:06.736] [INFO] cheese - inserting 1000 documents. first: File:Ichigaya station.jpg and last: Alltheweb.com -[2018-02-13T00:34:06.799] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:34:06.814] [INFO] cheese - inserting 1000 documents. first: Nintoku Guyot and last: Colors of rainbow -[2018-02-13T00:34:06.846] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:34:06.941] [INFO] cheese - inserting 1000 documents. first: President of the Third Reich and last: Route 105 (Vermont) -[2018-02-13T00:34:06.970] [INFO] cheese - inserting 1000 documents. first: Alessandro Gallo and last: Parliament of Mpumalanga -[2018-02-13T00:34:06.974] [INFO] cheese - inserting 1000 documents. first: Taste of Chaos 2010 and last: Biological issues in Fantasia (Rite of Spring) -[2018-02-13T00:34:06.998] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:34:07.036] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:07.044] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:34:07.142] [INFO] cheese - inserting 1000 documents. first: The Big Brain Theory: Pure Genius and last: Category:French-American culture in Wisconsin -[2018-02-13T00:34:07.208] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:07.260] [INFO] cheese - inserting 1000 documents. first: Dona Kossy and last: Wikipedia:Sockpuppet investigations/Shake it like a ladder to the sun. -[2018-02-13T00:34:07.288] [INFO] cheese - inserting 1000 documents. first: Edmark Corporation and last: Wikipedia:Articles for deletion/Dvar (2nd nomination) -[2018-02-13T00:34:07.306] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:34:07.332] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:34:07.339] [INFO] cheese - inserting 1000 documents. first: Francisco de Sá Carneiro and last: Aperture synthesis -[2018-02-13T00:34:07.357] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Hanson County, South Dakota and last: Cibbo Matto -[2018-02-13T00:34:07.387] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:34:07.401] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:34:07.460] [INFO] cheese - inserting 1000 documents. first: Route 119 (Vermont) and last: File:Ampelakia.JPG -[2018-02-13T00:34:07.462] [INFO] cheese - inserting 1000 documents. first: Hibbertia prostrata and last: Italian American Mafia -[2018-02-13T00:34:07.501] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:34:07.508] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:34:07.690] [INFO] cheese - inserting 1000 documents. first: Giant Centipede and last: Bay de North, Newfoundland and Labrador -[2018-02-13T00:34:07.755] [INFO] cheese - inserting 1000 documents. first: Gray poplar and last: File:Little Red Flowers poster.JPG -[2018-02-13T00:34:07.770] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in the Roman Empire and last: Wikipedia:Articles for deletion/Sean Maye -[2018-02-13T00:34:07.792] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:34:07.832] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:07.866] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:07.918] [INFO] cheese - inserting 1000 documents. first: List of journalism schools in Europe and last: French Formula 3 -[2018-02-13T00:34:07.941] [INFO] cheese - inserting 1000 documents. first: I've Got To Find My Baby and last: Category:Wofford Terriers men's basketball players -[2018-02-13T00:34:07.966] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:34:07.976] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:08.035] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Huw aled lewis and last: Edward Sassoon -[2018-02-13T00:34:08.096] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:34:08.147] [INFO] cheese - inserting 1000 documents. first: Severe Tropical Storm Meari (2011) and last: Category:Handball competitions in Argentina -[2018-02-13T00:34:08.175] [INFO] cheese - inserting 1000 documents. first: Nintendo Entertainment System hardware clone and last: RJD2 -[2018-02-13T00:34:08.205] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:34:08.249] [INFO] cheese - inserting 1000 documents. first: Rosella Bjornson and last: Publication history of Dick Grayson -[2018-02-13T00:34:08.319] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:34:08.362] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:34:08.426] [INFO] cheese - inserting 1000 documents. first: File:BenjaminSmoke.jpg and last: The (Non-)Decadent Sounds of Faye -[2018-02-13T00:34:08.473] [INFO] cheese - inserting 1000 documents. first: Sahpresa and last: Americans for Peace Now -[2018-02-13T00:34:08.500] [INFO] cheese - inserting 1000 documents. first: Too Old To Rock 'N' Roll Tour and last: Rubber tires -[2018-02-13T00:34:08.513] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:34:08.537] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:34:08.570] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:34:08.640] [INFO] cheese - inserting 1000 documents. first: Clemson College and last: Category:Military locations -[2018-02-13T00:34:08.662] [INFO] cheese - inserting 1000 documents. first: Bilton Grange (disambiguation) and last: Streptomyces javensis -[2018-02-13T00:34:08.676] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:34:08.697] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:08.783] [INFO] cheese - inserting 1000 documents. first: Category:People from Bonham, Texas and last: Dharapuram (State Assembly Constituency) -[2018-02-13T00:34:08.834] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:08.881] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject MythBusters and last: Anna Lang -[2018-02-13T00:34:08.895] [INFO] cheese - inserting 1000 documents. first: Food physics and last: Avalonianus sanfordi -[2018-02-13T00:34:08.904] [INFO] cheese - inserting 1000 documents. first: Analysis of flows and last: Matsuyama, Yamagata -[2018-02-13T00:34:08.911] [INFO] cheese - inserting 1000 documents. first: Sheep farming in Wales and last: Category:Category-Class Skepticism articles -[2018-02-13T00:34:08.921] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:34:08.929] [INFO] cheese - inserting 1000 documents. first: NFL Most Valuable Player and last: Eric Poole (disambiguation) -[2018-02-13T00:34:08.952] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:08.957] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:34:08.960] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:34:09.041] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:34:09.233] [INFO] cheese - inserting 1000 documents. first: Pipettor and last: Truncated -[2018-02-13T00:34:09.254] [INFO] cheese - inserting 1000 documents. first: Anvatt and last: Republic of Ireland women's national football team 2010s results -[2018-02-13T00:34:09.259] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Skepticism articles and last: G4 states -[2018-02-13T00:34:09.280] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:34:09.284] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:34:09.286] [INFO] cheese - inserting 1000 documents. first: Common bond (disambiguation) and last: Anita Stewart (culinary author) -[2018-02-13T00:34:09.319] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:34:09.341] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:34:09.357] [INFO] cheese - inserting 1000 documents. first: Ducati 125 Bronco and last: Brewer State Junior College -[2018-02-13T00:34:09.404] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:34:09.420] [INFO] cheese - inserting 1000 documents. first: Hirata, Yamagata and last: Canon EOS 10D -[2018-02-13T00:34:09.472] [INFO] cheese - inserting 1000 documents. first: File:11 Flottille Emblem.png and last: Portal:Golf/Selected picture/09 -[2018-02-13T00:34:09.480] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:34:09.530] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:34:09.675] [INFO] cheese - inserting 1000 documents. first: Thunderer (comics) and last: Australian Society of Anaesthetists -[2018-02-13T00:34:09.741] [INFO] cheese - inserting 1000 documents. first: Orewa Surf Life Saving Club and last: Agent Deborah Ciccerone Waldrup -[2018-02-13T00:34:09.750] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:34:09.763] [INFO] cheese - inserting 1000 documents. first: Phillips, Howard and last: Orianica Velásquez -[2018-02-13T00:34:09.814] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:34:09.819] [INFO] cheese - inserting 1000 documents. first: World Harmony Run and last: Dormition of the Theotokos Cathedral, Varna -[2018-02-13T00:34:09.821] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:34:09.870] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:34:09.895] [INFO] cheese - inserting 1000 documents. first: Ernie Simms and last: File:Real Love.ogg -[2018-02-13T00:34:09.936] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:09.944] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 2002-03 UCL QR2 and last: Heraklion Prefecture -[2018-02-13T00:34:09.973] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:34:09.995] [INFO] cheese - inserting 1000 documents. first: File:HCBC Blade.svg and last: Injury of brachial plexus -[2018-02-13T00:34:10.038] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:10.225] [INFO] cheese - inserting 1000 documents. first: Chocolate Biscuit pudding and last: Cross Corners, nh -[2018-02-13T00:34:10.238] [INFO] cheese - inserting 1000 documents. first: Mercedes Divide and last: Message to the Black Man -[2018-02-13T00:34:10.245] [INFO] cheese - inserting 1000 documents. first: Euboea Prefecture and last: Category:Junimea -[2018-02-13T00:34:10.250] [INFO] cheese - inserting 1000 documents. first: Category:11th century in Bolivia and last: 123 Signals Unit RAF -[2018-02-13T00:34:10.260] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:34:10.280] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:34:10.278] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:34:10.299] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:10.335] [INFO] cheese - inserting 1000 documents. first: CCCSTI and last: HADOPI -[2018-02-13T00:34:10.347] [INFO] cheese - inserting 1000 documents. first: Category:1898 and last: Jason Becker -[2018-02-13T00:34:10.370] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:10.434] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:34:10.457] [INFO] cheese - inserting 1000 documents. first: Crying freeman and last: National German-American Alliance -[2018-02-13T00:34:10.508] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:10.629] [INFO] cheese - inserting 1000 documents. first: Naim moghabghab and last: Category:1233 festivals -[2018-02-13T00:34:10.660] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:34:10.689] [INFO] cheese - inserting 1000 documents. first: Nauheed and last: Category:Roman governors of Germania Superior -[2018-02-13T00:34:10.724] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:10.725] [INFO] cheese - inserting 1000 documents. first: List Of University Interscholastic League Events and last: Benjamin Orr (disambiguation) -[2018-02-13T00:34:10.755] [INFO] cheese - inserting 1000 documents. first: LPT2 (CONFIG.SYS directive) and last: SMBC Theater -[2018-02-13T00:34:10.768] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:34:10.774] [INFO] cheese - inserting 1000 documents. first: Hadopi law and last: Octonians -[2018-02-13T00:34:10.802] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:34:10.879] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:10.956] [INFO] cheese - inserting 1000 documents. first: 105mm Gun T8 and last: Meat Alexandria -[2018-02-13T00:34:11.038] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:34:11.105] [INFO] cheese - inserting 1000 documents. first: Capitonym and last: Donald "Buzz" Lukens -[2018-02-13T00:34:11.144] [INFO] cheese - inserting 1000 documents. first: Numerical approximations of π and last: Ka'ahumanu Church -[2018-02-13T00:34:11.150] [INFO] cheese - inserting 1000 documents. first: Saint Saffold and last: Secaucus Junction (NJT) -[2018-02-13T00:34:11.197] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:11.233] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:34:11.246] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:34:11.341] [INFO] cheese - inserting 1000 documents. first: Category:1997–98 in Belgian football and last: Nazeer Ahmed -[2018-02-13T00:34:11.344] [INFO] cheese - inserting 1000 documents. first: E-75 highway and last: Louis-Gustave Martin -[2018-02-13T00:34:11.388] [INFO] cheese - inserting 1000 documents. first: Vibroweapon and last: Bola Ige -[2018-02-13T00:34:11.400] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:11.415] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:34:11.478] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:34:11.617] [INFO] cheese - inserting 1000 documents. first: Standard Chartered Thailand and last: File:Back-and-white hawk-eagle.jpg -[2018-02-13T00:34:11.629] [INFO] cheese - inserting 1000 documents. first: Chicken Creek (disambiguation) and last: Template:TNT Tropang Texters -[2018-02-13T00:34:11.645] [INFO] cheese - inserting 1000 documents. first: Kaʻahumanu Church and last: Limnaecia phragmitella -[2018-02-13T00:34:11.658] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:34:11.705] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:11.709] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:11.740] [INFO] cheese - inserting 1000 documents. first: Bill Morton (football) and last: Jack Riley -[2018-02-13T00:34:11.781] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:34:11.804] [INFO] cheese - inserting 1000 documents. first: File:ACallToArms.jpg and last: Narawi -[2018-02-13T00:34:11.839] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:11.886] [INFO] cheese - inserting 1000 documents. first: Template:User JBU and last: Abraham McClellan (Tennessee politician) -[2018-02-13T00:34:11.932] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:11.978] [INFO] cheese - inserting 1000 documents. first: Conrad I, Duke of Bohemia and last: Postage stamps and postal history of Bolivar Department -[2018-02-13T00:34:11.984] [INFO] cheese - inserting 1000 documents. first: RML 7-inch gun and last: Anette Støvelbæk -[2018-02-13T00:34:12.129] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:12.282] [INFO] cheese - inserting 1000 documents. first: Secret meeting between the IRA and UVF and last: Alexander Bell and Elisha Gray telephone controversy -[2018-02-13T00:34:12.292] [INFO] cheese - inserting 1000 documents. first: Jeff Tomlinson and last: Dorpat (disambiguation) -[2018-02-13T00:34:12.454] [INFO] cheese - inserting 1000 documents. first: Robert S. Rhine and last: Commerce Bank & Trust Holding Company -[2018-02-13T00:34:13.272] [INFO] cheese - inserting 1000 documents. first: Forbidden Passage and last: File:Colonial Theater - 1962.jpg -[2018-02-13T00:34:13.293] [INFO] cheese - batch complete in: 2.059 secs -[2018-02-13T00:34:13.324] [INFO] cheese - batch complete in: 1.615 secs -[2018-02-13T00:34:13.370] [INFO] cheese - batch complete in: 1.589 secs -[2018-02-13T00:34:13.483] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Collier County, Florida and last: File:Ett hus med många rum cover.jpg -[2018-02-13T00:34:13.589] [INFO] cheese - batch complete in: 1.93 secs -[2018-02-13T00:34:13.652] [INFO] cheese - batch complete in: 1.813 secs -[2018-02-13T00:34:13.686] [INFO] cheese - inserting 1000 documents. first: Richard Cheatham and last: Bulotu -[2018-02-13T00:34:13.710] [INFO] cheese - batch complete in: 1.581 secs -[2018-02-13T00:34:13.835] [INFO] cheese - batch complete in: 1.903 secs -[2018-02-13T00:34:13.998] [INFO] cheese - inserting 1000 documents. first: Special Immigrant Juvenile and last: Semispinalis thoracis muscles -[2018-02-13T00:34:14.041] [INFO] cheese - inserting 1000 documents. first: Richard Wells (nurse) and last: Juan Martín Cueva -[2018-02-13T00:34:14.046] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:34:14.086] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:34:14.180] [INFO] cheese - inserting 1000 documents. first: Navajo Business Council and last: Category:Deaf universities and colleges in the United States -[2018-02-13T00:34:14.182] [INFO] cheese - inserting 1000 documents. first: Vilovataya (inflow sluggish) and last: TimedText:Beach Boys that s not me.ogg.en.srt -[2018-02-13T00:34:14.243] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:14.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gia Lashay and last: Eddie Murphy (disambiguation) -[2018-02-13T00:34:14.275] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:34:14.324] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:34:14.330] [INFO] cheese - inserting 1000 documents. first: List of people from Swansea and last: Tactical Provost Wing -[2018-02-13T00:34:14.345] [INFO] cheese - inserting 1000 documents. first: Postage stamps and postal history of the North German Confederation and last: List of bridges in Cambridge -[2018-02-13T00:34:14.387] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:34:14.417] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:34:14.424] [INFO] cheese - inserting 1000 documents. first: Bad Aibling (Hofberg) and last: 32033 Arjunkapoor -[2018-02-13T00:34:14.433] [INFO] cheese - inserting 1000 documents. first: My Face Can’t Be Felt and last: Steven Troughton-Smith -[2018-02-13T00:34:14.478] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:34:14.485] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:34:14.590] [INFO] cheese - inserting 1000 documents. first: Brain chip and last: Ghulam Dastagir Shaida -[2018-02-13T00:34:14.637] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:34:14.744] [INFO] cheese - inserting 1000 documents. first: File:Chic - Le Freak.ogg and last: Kaij Mek, Arizona -[2018-02-13T00:34:14.849] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:34:14.874] [INFO] cheese - inserting 1000 documents. first: Schlossberg (hill) and last: Robert F. Fisher -[2018-02-13T00:34:14.891] [INFO] cheese - inserting 1000 documents. first: House of Icel and last: Wikipedia:Articles for deletion/Thomas Kraft -[2018-02-13T00:34:14.932] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:34:14.933] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:34:14.942] [INFO] cheese - inserting 1000 documents. first: KHV (disambiguation) and last: Category:Fuzhou Military Region -[2018-02-13T00:34:15.003] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:34:15.113] [INFO] cheese - inserting 1000 documents. first: Workaholic (song) and last: Naniwa University of the Arts -[2018-02-13T00:34:15.118] [INFO] cheese - inserting 1000 documents. first: Slip Stich and Pass and last: Ford F-Series -[2018-02-13T00:34:15.209] [INFO] cheese - inserting 1000 documents. first: Geoff Siegel and last: ZE (disambiguation) -[2018-02-13T00:34:15.221] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:34:15.312] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:34:15.317] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:34:15.437] [INFO] cheese - inserting 1000 documents. first: Wirscheid and last: Toros Toramanian -[2018-02-13T00:34:15.530] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:34:15.552] [INFO] cheese - inserting 1000 documents. first: Category:Midland Colts players and last: European Championship in football (disambiguation) -[2018-02-13T00:34:15.553] [INFO] cheese - inserting 1000 documents. first: The International Association of Media and History and last: Wikipedia:Brazil Collaboration/Header -[2018-02-13T00:34:15.653] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:34:15.657] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:34:15.727] [INFO] cheese - inserting 1000 documents. first: Voice in the Night and last: Category:Departments of Moronou Region -[2018-02-13T00:34:15.806] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:34:15.878] [INFO] cheese - inserting 1000 documents. first: Gabriel Ilyich Urazovsky and last: Dudilla Sridhar Babu -[2018-02-13T00:34:15.955] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:34:16.037] [INFO] cheese - inserting 1000 documents. first: MSSS and last: Nevėžis Kėdainiai -[2018-02-13T00:34:16.053] [INFO] cheese - inserting 1000 documents. first: Mount Ulla Township, Rowan County, North Carolina and last: WAP Push -[2018-02-13T00:34:16.089] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:16.115] [INFO] cheese - inserting 1000 documents. first: Trachealis and last: Category:Kentucky Democratic Party -[2018-02-13T00:34:16.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Brazil Collaboration/History and last: Shippee, California -[2018-02-13T00:34:16.118] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:34:16.147] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:34:16.182] [INFO] cheese - inserting 1000 documents. first: Yonathan Suryatama and last: Wikipedia:Articles for deletion/Spider-Man (set index) -[2018-02-13T00:34:16.183] [INFO] cheese - inserting 1000 documents. first: Ford F-150 (F-Series truck) and last: Pneumonoultramicroscopicsilicovolcanokoniosis -[2018-02-13T00:34:16.200] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:34:16.240] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:34:16.266] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:34:16.278] [INFO] cheese - inserting 1000 documents. first: Wahineopio Kahakuha'ako'i and last: Anthidium luizae -[2018-02-13T00:34:16.325] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:34:16.409] [INFO] cheese - inserting 1000 documents. first: File:Songs from Before (Front Cover).png and last: Fortress (Thee Oh Sees song) -[2018-02-13T00:34:16.449] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:34:16.458] [INFO] cheese - inserting 1000 documents. first: Bogoz River and last: 1943 Brooklyn Dodgers season -[2018-02-13T00:34:16.513] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:16.565] [INFO] cheese - inserting 1000 documents. first: Apatema mediopallidum and last: Ron Wear -[2018-02-13T00:34:16.620] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:34:16.636] [INFO] cheese - inserting 1000 documents. first: Anthidium luctuosum and last: File:Boys Will Be Boys.jpg -[2018-02-13T00:34:16.647] [INFO] cheese - inserting 1000 documents. first: Universal Combat Gold and last: Y. I. Zolotarev -[2018-02-13T00:34:16.647] [INFO] cheese - inserting 1000 documents. first: Slavery in Indian Territory and last: File:Tua Tua Keladi.jpg -[2018-02-13T00:34:16.680] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:34:16.702] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:34:16.718] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:34:16.749] [INFO] cheese - inserting 1000 documents. first: Turnabout (Margaret Peterson Haddix novel) and last: ᓺ -[2018-02-13T00:34:16.784] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:34:16.901] [INFO] cheese - inserting 1000 documents. first: K-Y jelly and last: Anne Cox Chambers -[2018-02-13T00:34:16.919] [INFO] cheese - inserting 1000 documents. first: New York Review of Books Classics and last: Wikipedia:WikiProject Spam/LinkReports/imwerden.de -[2018-02-13T00:34:17.018] [INFO] cheese - inserting 1000 documents. first: ᓻ and last: Brent, John -[2018-02-13T00:34:17.027] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:34:17.033] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:17.090] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:34:17.135] [INFO] cheese - inserting 1000 documents. first: Madura horseshoe bat and last: Alex Motley -[2018-02-13T00:34:17.171] [INFO] cheese - inserting 1000 documents. first: Kropotkin (urban locality) and last: File:MG 3102.jpg -[2018-02-13T00:34:17.193] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:34:17.238] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:17.352] [INFO] cheese - inserting 1000 documents. first: Serampore Union Institution and last: Treadmill with Vibration Isolation Stabilization -[2018-02-13T00:34:17.418] [INFO] cheese - inserting 1000 documents. first: File:Entwistlerestaurantrow.jpg and last: 1967 Grand Prix motorcycle racing season -[2018-02-13T00:34:17.434] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:34:17.492] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:34:17.543] [INFO] cheese - inserting 1000 documents. first: Private numbering plan and last: Ribot's law -[2018-02-13T00:34:17.569] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:17.588] [INFO] cheese - inserting 1000 documents. first: Brereton, John and last: Emperor Taizong's campaign against states of the Western Regions -[2018-02-13T00:34:17.640] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:34:17.768] [INFO] cheese - inserting 1000 documents. first: Gregory Kane (journalist) and last: John Johnson (British politician) -[2018-02-13T00:34:17.793] [INFO] cheese - inserting 1000 documents. first: Kyiv Urban Rail and last: C³-bu -[2018-02-13T00:34:17.827] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:34:17.843] [INFO] cheese - inserting 1000 documents. first: Most Distinguished Order of Saint Michael and Saint George and last: Garbayuela, Badajoz -[2018-02-13T00:34:17.845] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:34:17.860] [INFO] cheese - inserting 1000 documents. first: Intramolecular aglycone delivery and last: Totoma, California -[2018-02-13T00:34:17.866] [INFO] cheese - inserting 1000 documents. first: P3X-888 and last: Wikipedia:Help desk/Archive 5 -[2018-02-13T00:34:17.874] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:34:17.909] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:17.931] [INFO] cheese - inserting 1000 documents. first: Top Model Norge (cycle 6) and last: Port Kent (Amtrak station) -[2018-02-13T00:34:17.931] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:34:17.935] [INFO] cheese - inserting 1000 documents. first: WYLN-LP and last: List of mayors of Albany, New York -[2018-02-13T00:34:17.962] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:34:17.994] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:34:18.156] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hartaculinara.us2.list-manage2.com and last: Tracy Lee Stum -[2018-02-13T00:34:18.179] [INFO] cheese - inserting 1000 documents. first: Garbayuela, Spain and last: File:Hotchkiss Hall.jpg -[2018-02-13T00:34:18.199] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:34:18.201] [INFO] cheese - inserting 1000 documents. first: Totoma and last: File:Oscartune.jpg -[2018-02-13T00:34:18.212] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:34:18.228] [INFO] cheese - inserting 1000 documents. first: Andrew, Mark and last: 1932 Penn Quakers football team -[2018-02-13T00:34:18.255] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:34:18.270] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:34:18.303] [INFO] cheese - inserting 1000 documents. first: Category:2012–13 CWHL season and last: Canibal mine -[2018-02-13T00:34:18.345] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:18.478] [INFO] cheese - inserting 1000 documents. first: Module:ISO 3166/data/NO and last: LATTC / Ortho Institute station -[2018-02-13T00:34:18.479] [INFO] cheese - inserting 1000 documents. first: Gujarat Vidyapeeth and last: Wikipedia:Arbitration/Index/Involved parties -[2018-02-13T00:34:18.498] [INFO] cheese - inserting 1000 documents. first: Botys ptoalis and last: File:Sanger Logo.png -[2018-02-13T00:34:18.498] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:34:18.528] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:34:18.536] [INFO] cheese - inserting 1000 documents. first: File:Altbeastplay.png and last: Jusepe de Ribera -[2018-02-13T00:34:18.562] [INFO] cheese - inserting 1000 documents. first: The Shock Doctrine and last: Israeli acute paralysis virus -[2018-02-13T00:34:18.576] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:34:18.596] [INFO] cheese - inserting 1000 documents. first: Dorjee Sun and last: Exoristopsis -[2018-02-13T00:34:18.600] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:34:18.622] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:34:18.678] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:18.756] [INFO] cheese - inserting 1000 documents. first: Category:Ghanaian producers and last: Shue Creek -[2018-02-13T00:34:18.777] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:34:18.804] [INFO] cheese - inserting 1000 documents. first: Category:Titanium mines in Guatemala and last: Honour of Windsor -[2018-02-13T00:34:18.920] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:34:18.952] [INFO] cheese - inserting 1000 documents. first: Fabriciella and last: Acemya tibialis -[2018-02-13T00:34:18.998] [INFO] cheese - inserting 1000 documents. first: Phoenix Assurance and last: Friedberg in der Wetterau -[2018-02-13T00:34:19.020] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:34:19.096] [INFO] cheese - inserting 1000 documents. first: Characium and last: ⠯ -[2018-02-13T00:34:19.106] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:34:19.170] [INFO] cheese - inserting 1000 documents. first: St. Curetán and last: Phil Neale -[2018-02-13T00:34:19.181] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:34:19.236] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:34:19.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Laurette Atindehou and last: Armed Forces Logistics Authority (Egypt) -[2018-02-13T00:34:19.292] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:34:19.403] [INFO] cheese - inserting 1000 documents. first: File:Harvey Firestone Memorial, Akron, Ohio USA.jpg and last: File:Muruwari language.png -[2018-02-13T00:34:19.409] [INFO] cheese - inserting 1000 documents. first: Poisson bright spot and last: Category:People from Cornwall, Connecticut -[2018-02-13T00:34:19.437] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:34:19.444] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:34:19.501] [INFO] cheese - inserting 1000 documents. first: Ikramullah Sheikh and last: Captain Fracassa's Journey -[2018-02-13T00:34:19.513] [INFO] cheese - inserting 1000 documents. first: Guzelyurt and last: Freestyle Skiing -[2018-02-13T00:34:19.527] [INFO] cheese - inserting 1000 documents. first: Tomasa Núñez and last: Category:Francesca Michielin songs -[2018-02-13T00:34:19.537] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:19.550] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:34:19.568] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:34:19.623] [INFO] cheese - inserting 1000 documents. first: State Route 330 (Tennessee) and last: Glace Bay, NS -[2018-02-13T00:34:19.635] [INFO] cheese - inserting 1000 documents. first: Piatkowisko and last: Przebendow -[2018-02-13T00:34:19.655] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:34:19.673] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:19.674] [INFO] cheese - inserting 1000 documents. first: Safe + Sound and last: Kai Chi Liu -[2018-02-13T00:34:19.719] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:34:19.824] [INFO] cheese - inserting 1000 documents. first: Przebrod and last: Rzezewo -[2018-02-13T00:34:19.848] [INFO] cheese - batch complete in: 0.193 secs -[2018-02-13T00:34:19.850] [INFO] cheese - inserting 1000 documents. first: Zadravko Milutinović and last: Gorshkov, Aleksandr -[2018-02-13T00:34:19.880] [INFO] cheese - inserting 1000 documents. first: File:Ngarna languages.png and last: Leptopelis bequaerti -[2018-02-13T00:34:19.885] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:34:19.924] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:34:19.929] [INFO] cheese - inserting 1000 documents. first: Category:Rijksmonuments in Flevoland and last: Wikipedia:WikiProject Spam/LinkReports/nikelebronshoes.net -[2018-02-13T00:34:19.979] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:20.034] [INFO] cheese - inserting 1000 documents. first: Lac la Biche, AB and last: Template:Podcasting-stub -[2018-02-13T00:34:20.065] [INFO] cheese - inserting 1000 documents. first: Rzezusnia and last: Category:Constitutional bishops -[2018-02-13T00:34:20.073] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:34:20.085] [INFO] cheese - inserting 1000 documents. first: Tricia Marwick and last: Category:Marquette County, Michigan -[2018-02-13T00:34:20.090] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:34:20.118] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Geelong and last: Template:Chembox Bioavail -[2018-02-13T00:34:20.155] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:34:20.181] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:34:20.284] [INFO] cheese - inserting 1000 documents. first: Brucia La Terra and last: Swedish Division 1 (ice hockey) -[2018-02-13T00:34:20.285] [INFO] cheese - inserting 1000 documents. first: Kirill Razlogov and last: 2016 British Rally Championship season -[2018-02-13T00:34:20.310] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:34:20.327] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:20.418] [INFO] cheese - inserting 1000 documents. first: Wieclawice and last: Wolka Nowodworska -[2018-02-13T00:34:20.523] [INFO] cheese - inserting 1000 documents. first: Albert Rivaud and last: Bi Yan -[2018-02-13T00:34:20.549] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:20.627] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:34:20.661] [INFO] cheese - inserting 1000 documents. first: File:Didn't You Used to Be... cover.jpg and last: Category:1970 in Libya -[2018-02-13T00:34:20.720] [INFO] cheese - inserting 1000 documents. first: Category:Multilingual support templates and last: Normally aspirated -[2018-02-13T00:34:20.727] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:34:20.785] [INFO] cheese - inserting 1000 documents. first: Italian Classroom and last: Akakura -[2018-02-13T00:34:20.804] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:34:20.820] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:34:20.848] [INFO] cheese - inserting 1000 documents. first: Template:Women's International Zionist Organization/meta/shortname and last: 2016 TCR International Series season -[2018-02-13T00:34:20.899] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:34:20.965] [INFO] cheese - inserting 1000 documents. first: Wolka Nurzecka and last: Guardian Trust -[2018-02-13T00:34:20.986] [INFO] cheese - inserting 1000 documents. first: Rower and last: Western Wireless Corporation -[2018-02-13T00:34:21.025] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:34:21.069] [INFO] cheese - inserting 1000 documents. first: Olías del Rey and last: ReCharge Collectible Card Game -[2018-02-13T00:34:21.067] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:34:21.135] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:21.162] [INFO] cheese - inserting 1000 documents. first: First Cain Ministry and last: Den schwulen und lesbischen Opfern des Nationalsozialismus -[2018-02-13T00:34:21.219] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:21.298] [INFO] cheese - inserting 1000 documents. first: Anastasia Salina and last: Victor Naicu -[2018-02-13T00:34:21.331] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:34:21.394] [INFO] cheese - inserting 1000 documents. first: Imperial Spa and last: Category:2011 in American women's soccer leagues -[2018-02-13T00:34:21.422] [INFO] cheese - inserting 1000 documents. first: Area code 712 and last: Glenoe -[2018-02-13T00:34:21.476] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:34:21.477] [INFO] cheese - inserting 1000 documents. first: Tameza and last: Template:Libertas by country -[2018-02-13T00:34:21.489] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:34:21.550] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:34:21.662] [INFO] cheese - inserting 1000 documents. first: Sándor, Pál and last: Wikipedia:Meetup/ARLiSVRA2016 -[2018-02-13T00:34:21.673] [INFO] cheese - inserting 1000 documents. first: Holland's Sportive Lemur and last: Ponce de Leon Springs -[2018-02-13T00:34:21.713] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:21.760] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:34:21.853] [INFO] cheese - inserting 1000 documents. first: Grieg (surname) and last: Wikipedia:Reference desk/Archives/Miscellaneous/2013 June 28 -[2018-02-13T00:34:21.864] [INFO] cheese - inserting 1000 documents. first: Albert S. Marks and last: Parang -[2018-02-13T00:34:21.901] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:34:21.927] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:34:21.951] [INFO] cheese - inserting 1000 documents. first: Björneborg, Sweden and last: Infantry Regiment 9 Potsdam -[2018-02-13T00:34:21.986] [INFO] cheese - inserting 1000 documents. first: File:Temple of the Invisible.jpg and last: Gta 4 -[2018-02-13T00:34:21.992] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:22.009] [INFO] cheese - inserting 1000 documents. first: Category:FC Ripensia Timișoara players and last: Wikipedia:Reference desk/Archives/Entertainment/2016 February 8 -[2018-02-13T00:34:22.050] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:34:22.070] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:34:22.111] [INFO] cheese - inserting 1000 documents. first: Barbashmin and last: Setoishi Station -[2018-02-13T00:34:22.154] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:34:22.370] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 1996 Summer Olympics - Team jumping and last: Category:21st-century Uruguayan people -[2018-02-13T00:34:22.396] [INFO] cheese - inserting 1000 documents. first: Category:Hospital buildings completed in 1894 and last: File:Muse-the 2nd law lp.jpg -[2018-02-13T00:34:22.396] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:34:22.409] [INFO] cheese - inserting 1000 documents. first: File:Phish - Live Phish Volume 10.jpg and last: File:SwordTrilogy.jpg -[2018-02-13T00:34:22.449] [INFO] cheese - inserting 1000 documents. first: File:Cbs2hdlogo.jpg and last: Adavikatanahalli -[2018-02-13T00:34:22.460] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:34:22.472] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:34:22.518] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:34:22.557] [INFO] cheese - inserting 1000 documents. first: Kevin Williamson (screenwriter) and last: Wikipedia:Articles for deletion/Psychic Pokémon -[2018-02-13T00:34:22.570] [INFO] cheese - inserting 1000 documents. first: Vaccarizzo Albanian and last: Di Resta -[2018-02-13T00:34:22.615] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:34:22.628] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:34:22.708] [INFO] cheese - inserting 1000 documents. first: George Eaton Sutherland and last: Category:Discoveries by Atsuo Asami -[2018-02-13T00:34:22.735] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:34:22.905] [INFO] cheese - inserting 1000 documents. first: Hawley Smoot tariff and last: Wikipedia:Articles for deletion/Madakkavil -[2018-02-13T00:34:22.940] [INFO] cheese - inserting 1000 documents. first: Anthu Inthu Preethi Banthu and last: File:OutrunOnline.jpg -[2018-02-13T00:34:22.955] [INFO] cheese - inserting 1000 documents. first: Litleo and last: AUTOFAIL (CONFIG.SYS directive) -[2018-02-13T00:34:22.968] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:22.984] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:34:23.004] [INFO] cheese - inserting 1000 documents. first: The Via Latina tombs in Rome and last: National Heritage Museum (Lexington, Mass.) -[2018-02-13T00:34:23.017] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Pan-African Parliament from the Central African Republic and last: Sandy Lam (album) -[2018-02-13T00:34:23.019] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:34:23.045] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:34:23.095] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Connerdn and last: Daya Rajasinghe -[2018-02-13T00:34:23.118] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:23.136] [INFO] cheese - batch complete in: 2.001 secs -[2018-02-13T00:34:23.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flying Pokémon and last: Eleazar Wheelock -[2018-02-13T00:34:23.345] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:34:23.356] [INFO] cheese - inserting 1000 documents. first: File:Defendor poster.jpg and last: Aeis -[2018-02-13T00:34:23.415] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:23.433] [INFO] cheese - inserting 1000 documents. first: Category:Basquet Manresa basketball players and last: Category:FC Flora Tallinn players -[2018-02-13T00:34:23.464] [INFO] cheese - inserting 1000 documents. first: BASEDEV (CONFIG.SYS directive) and last: Fujin, Heilongjiang -[2018-02-13T00:34:23.483] [INFO] cheese - inserting 1000 documents. first: The Versatile Burl Ives! (album) and last: Clarence A. Manning -[2018-02-13T00:34:23.486] [INFO] cheese - inserting 1000 documents. first: 22739 Sikhote-Alin and last: Preston Thorgrimson Shidler Gates & Ellis -[2018-02-13T00:34:23.496] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:34:23.539] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:34:23.569] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:23.583] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:34:23.813] [INFO] cheese - inserting 1000 documents. first: Imprinted stamp and last: Wikipedia:Articles for deletion/Chiara Glorioso -[2018-02-13T00:34:23.857] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:23.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/BeaveRun Motorsports Complex and last: Villanueva de Alcardete, Spain -[2018-02-13T00:34:23.891] [INFO] cheese - inserting 1000 documents. first: File:FC Dynamo Moscow crest.png and last: Category:Women in Shahnameh -[2018-02-13T00:34:23.927] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:34:23.936] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:34:24.043] [INFO] cheese - inserting 1000 documents. first: File:Fatafehi Tuʻipelehake.jpg and last: Polynucleobacter difficilis -[2018-02-13T00:34:24.060] [INFO] cheese - inserting 1000 documents. first: Good glaux and last: Sailing to Byzantium -[2018-02-13T00:34:24.134] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:34:24.184] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:34:24.188] [INFO] cheese - inserting 1000 documents. first: Modedit and last: Girolamo Segato -[2018-02-13T00:34:24.318] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:34:24.454] [INFO] cheese - inserting 1000 documents. first: Template:Fukushima-railstation-stub and last: Dolphin-friendly -[2018-02-13T00:34:24.502] [INFO] cheese - inserting 1000 documents. first: Pseudo-homosexuality and last: Clarinet Concerto (Mozart) -[2018-02-13T00:34:24.559] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:34:24.568] [INFO] cheese - inserting 1000 documents. first: File:Maintenance Crest.jpg and last: File:PureReasonRevolution AmorVincitOmnia.jpg -[2018-02-13T00:34:24.598] [INFO] cheese - inserting 1000 documents. first: HM Prison North Wales and last: Wikipedia:Syracuse University -[2018-02-13T00:34:24.655] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:34:24.672] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:34:24.676] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T00:34:24.806] [INFO] cheese - inserting 1000 documents. first: Ernest Bethel and last: Winters-Ballinger Eagles -[2018-02-13T00:34:24.883] [INFO] cheese - inserting 1000 documents. first: Acarus putrescentiae and last: Claw toe -[2018-02-13T00:34:24.920] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:34:24.924] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Log/2006 April 13 and last: When 6021 Met 4267 -[2018-02-13T00:34:24.962] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:34:24.982] [INFO] cheese - inserting 1000 documents. first: Dolphin by-catch and last: 16th Amendment U.S. -[2018-02-13T00:34:25.035] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:34:25.052] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:34:25.185] [INFO] cheese - inserting 1000 documents. first: Oakland-Jack London Square station and last: The Not So Secret Life of the Manic Depressive -[2018-02-13T00:34:25.213] [INFO] cheese - inserting 1000 documents. first: Category:Gorilla Biscuits albums and last: Wikipedia:Good article reassessment/Andrés Nocioni/1 -[2018-02-13T00:34:25.228] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:34:25.306] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:34:25.435] [INFO] cheese - inserting 1000 documents. first: Khalifeh, Kermanshah and last: Ab Barik-e Sofla, Kermanshah -[2018-02-13T00:34:25.466] [INFO] cheese - inserting 1000 documents. first: Magaz de Pisuerga and last: Mahamud, Burgos -[2018-02-13T00:34:25.486] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:34:25.506] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:25.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/compositesw.com and last: Al Arabi Qatar -[2018-02-13T00:34:25.649] [INFO] cheese - inserting 1000 documents. first: Pearl harbor bombings and last: 81st Congress -[2018-02-13T00:34:25.691] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:34:25.700] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:34:25.754] [INFO] cheese - inserting 1000 documents. first: Lobe of pituitary gland and last: Ahmad, Mushtaq -[2018-02-13T00:34:25.793] [INFO] cheese - inserting 1000 documents. first: Company of Snakes and last: Sandra McDonald -[2018-02-13T00:34:25.803] [INFO] cheese - inserting 1000 documents. first: The Mountain School and last: Agua Dulce, California -[2018-02-13T00:34:25.815] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:34:25.838] [INFO] cheese - inserting 1000 documents. first: Mahamud, Spain and last: Wikipedia:WikiProject Spam/LinkReports/sportal.siol.net -[2018-02-13T00:34:25.891] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:34:25.895] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T00:34:25.899] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:34:25.977] [INFO] cheese - inserting 1000 documents. first: Cayetano Bonnín Vasqúez and last: St. Joseph's Church, Semarang -[2018-02-13T00:34:26.018] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:26.140] [INFO] cheese - inserting 1000 documents. first: Al Arabi Doha and last: Portal:Fictional characters/Comics/2 -[2018-02-13T00:34:26.187] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:34:26.202] [INFO] cheese - inserting 1000 documents. first: Ahmad, Zainal Abidin and last: Category:Albanian Salafis -[2018-02-13T00:34:26.205] [INFO] cheese - inserting 1000 documents. first: Category:Transport in Trinidad and Tobago and last: Category:Canadian blues musicians by instrument -[2018-02-13T00:34:26.229] [INFO] cheese - inserting 1000 documents. first: MS Kronprins Harald and last: Cêgnê -[2018-02-13T00:34:26.239] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:26.247] [INFO] cheese - inserting 1000 documents. first: Bates's Case and last: Defense Cyber Investigations Training Academy -[2018-02-13T00:34:26.268] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:34:26.283] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:26.312] [INFO] cheese - inserting 1000 documents. first: Ingold I of Sweden and last: Subnational entities of Belgium -[2018-02-13T00:34:26.315] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:26.365] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:26.479] [INFO] cheese - inserting 1000 documents. first: History of slavery in Illinois and last: People who have lived at airports -[2018-02-13T00:34:26.500] [INFO] cheese - inserting 1000 documents. first: Template:NXEA color and last: Ilovu -[2018-02-13T00:34:26.541] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:34:26.551] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:26.575] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2016-02-19 and last: SK Pardubice -[2018-02-13T00:34:26.616] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:34:26.692] [INFO] cheese - inserting 1000 documents. first: Defense Computer Forensics Lab and last: Wikipedia:Articles for deletion/RadCon -[2018-02-13T00:34:26.701] [INFO] cheese - inserting 1000 documents. first: Lake Traful and last: 6th GayVN Awards -[2018-02-13T00:34:26.715] [INFO] cheese - inserting 1000 documents. first: Victor Manuel Baute and last: Dharmic tradition -[2018-02-13T00:34:26.725] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:34:26.755] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:34:26.774] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:34:26.871] [INFO] cheese - inserting 1000 documents. first: Lord Llandaff and last: Category:Pangolins -[2018-02-13T00:34:26.889] [INFO] cheese - inserting 1000 documents. first: Environmental Dispute Resolution Fund and last: List of moths of Equatorial Guinea -[2018-02-13T00:34:26.924] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:26.976] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:34:27.022] [INFO] cheese - inserting 1000 documents. first: Category:Technical universities and colleges in Germany and last: Template:User WP Ricciardo -[2018-02-13T00:34:27.106] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:34:27.153] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1968 Summer Olympics – Men's decathlon and last: Baraboi, Dondușeni -[2018-02-13T00:34:27.172] [INFO] cheese - inserting 1000 documents. first: Us sailing and last: Monterde de Albarracín, Teruel -[2018-02-13T00:34:27.209] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:27.266] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:34:27.281] [INFO] cheese - inserting 1000 documents. first: Mimika Air Flight 514 and last: Wikipedia:Articles for deletion/Alta Mira -[2018-02-13T00:34:27.303] [INFO] cheese - inserting 1000 documents. first: Carlos Hall and last: Live Phish Volume 19 -[2018-02-13T00:34:27.331] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:34:27.362] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:34:27.432] [INFO] cheese - inserting 1000 documents. first: File:20 Odd Years cover.jpg and last: File:TheFoldingStar.jpg -[2018-02-13T00:34:27.464] [INFO] cheese - inserting 1000 documents. first: Template:User WP Hülkenberg and last: Template:DSCG -[2018-02-13T00:34:27.468] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:27.491] [INFO] cheese - inserting 1000 documents. first: Monterde de Albarracín, Spain and last: Wikipedia:Articles for deletion/Call Me Lightning -[2018-02-13T00:34:27.493] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:34:27.560] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:34:27.652] [INFO] cheese - inserting 1000 documents. first: Trevor Dunn and last: The Whiffenpoof Song -[2018-02-13T00:34:27.675] [INFO] cheese - inserting 1000 documents. first: Zen Buddhist Enlightenment and last: Why Does the Sun Shine? (The Sun Is a Mass of Incandescent Gas) -[2018-02-13T00:34:27.682] [INFO] cheese - inserting 1000 documents. first: Clarke Mills and last: Falsterbo Coast guard Crash -[2018-02-13T00:34:27.714] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:34:27.727] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:27.733] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:34:27.738] [INFO] cheese - inserting 1000 documents. first: West Florida Parishes and last: Category:1850 in British sport -[2018-02-13T00:34:27.791] [INFO] cheese - inserting 1000 documents. first: Portal:United States Marine Corps/quote/2011April and last: ARCHON -[2018-02-13T00:34:27.807] [INFO] cheese - inserting 1000 documents. first: Matej Hradecky and last: Corky ironbark -[2018-02-13T00:34:27.813] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:34:27.829] [INFO] cheese - inserting 1000 documents. first: Urriés, Zaragoza and last: Santiuste, Spain -[2018-02-13T00:34:27.831] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:34:27.845] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:34:27.863] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:34:28.110] [INFO] cheese - inserting 1000 documents. first: Sayatón and last: Aldealengua de Pedraza, Spain -[2018-02-13T00:34:28.123] [INFO] cheese - inserting 1000 documents. first: Lowell Junction and last: Xyletobius aleuritis -[2018-02-13T00:34:28.132] [INFO] cheese - inserting 1000 documents. first: David Bunnell and last: Virashaiva -[2018-02-13T00:34:28.132] [INFO] cheese - inserting 1000 documents. first: Tumbledown ironbark and last: Girolamo Sordo -[2018-02-13T00:34:28.134] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:34:28.173] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:28.179] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:34:28.184] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:28.218] [INFO] cheese - inserting 1000 documents. first: 2007/08 Ystalyfera RFC season and last: Aïchour -[2018-02-13T00:34:28.264] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:28.363] [INFO] cheese - inserting 1000 documents. first: Aldealengua de Santa María, Segovia and last: San Felices, Soria -[2018-02-13T00:34:28.383] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:34:28.452] [INFO] cheese - inserting 1000 documents. first: Xyletobius ashmeadi and last: File:Boom Boom Pow - Screenshot.jpg -[2018-02-13T00:34:28.456] [INFO] cheese - inserting 1000 documents. first: Spam (computing) and last: Category:Speed skating venues in the United States -[2018-02-13T00:34:28.457] [INFO] cheese - inserting 1000 documents. first: Gabon at the 2004 Summer Olympics and last: Marlene Ahrens -[2018-02-13T00:34:28.489] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:34:28.515] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:34:28.529] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:34:28.638] [INFO] cheese - inserting 1000 documents. first: List of Filipino films of 2016 and last: Draft:Pomorska Street in Bydgoszcz -[2018-02-13T00:34:28.651] [INFO] cheese - inserting 1000 documents. first: NCAA Division I Women's Lacrosse Championship and last: Átame! -[2018-02-13T00:34:28.670] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:34:28.693] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:34:28.702] [INFO] cheese - inserting 1000 documents. first: San Felices, Spain and last: Urueña -[2018-02-13T00:34:28.725] [INFO] cheese - inserting 1000 documents. first: Gloeostereum and last: Wikipedia:WikiProject Spam/LinkReports/vrnjacka-banja.com -[2018-02-13T00:34:28.735] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:34:28.747] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:34:28.785] [INFO] cheese - inserting 1000 documents. first: Legbrace fascination and last: Tjänstemannacentralorganisationen -[2018-02-13T00:34:28.803] [INFO] cheese - inserting 1000 documents. first: Zamorin - Palakkad War and last: Dromotectum -[2018-02-13T00:34:28.834] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:34:28.836] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:34:29.040] [INFO] cheese - inserting 1000 documents. first: Jarod Miller and last: Melchior Borchgrevinck -[2018-02-13T00:34:29.051] [INFO] cheese - inserting 1000 documents. first: Carl Heinrich Hagen and last: Wikipedia:Sockpuppet investigations/Mattsabe/Archive -[2018-02-13T00:34:29.074] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:34:29.084] [INFO] cheese - inserting 1000 documents. first: Urueña, Valladolid and last: Gafsa, Tunisia -[2018-02-13T00:34:29.096] [INFO] cheese - inserting 1000 documents. first: Podillia Upland and last: NIAW -[2018-02-13T00:34:29.103] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:29.137] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:34:29.157] [INFO] cheese - inserting 1000 documents. first: Akaka Falls State Park and last: Elections in Latvia -[2018-02-13T00:34:29.166] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:34:29.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Battle of Ghadames and last: Portal:Women's sport/Birthdays/June 23 -[2018-02-13T00:34:29.240] [INFO] cheese - inserting 1000 documents. first: Abani Bari Achho and last: St Mary's Church, Battersea -[2018-02-13T00:34:29.247] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:34:29.296] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:34:29.308] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:29.434] [INFO] cheese - inserting 1000 documents. first: 1993 IMSA GT Championship season and last: Lichenaula musica -[2018-02-13T00:34:29.470] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:34:29.562] [INFO] cheese - inserting 1000 documents. first: Hans Brachrogge and last: HealthRight International -[2018-02-13T00:34:29.686] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:34:29.760] [INFO] cheese - inserting 1000 documents. first: 2016 Philippine elections debates and last: Issac Crewdson -[2018-02-13T00:34:29.786] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:34:29.842] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Franklin County, Washington and last: Doe Boyland -[2018-02-13T00:34:29.845] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Rudolf Ising and last: Woman of Distinction Awards -[2018-02-13T00:34:29.858] [INFO] cheese - inserting 1000 documents. first: Assam New Year Day and last: Template:Infobox Law and Order character -[2018-02-13T00:34:29.907] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:34:29.909] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:34:29.915] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:34:29.987] [INFO] cheese - inserting 1000 documents. first: Turner Classic Movies and last: Olympic Tennis Centre (Athens) -[2018-02-13T00:34:30.012] [INFO] cheese - inserting 1000 documents. first: Issac Delahaye and last: List of Belgian women artists -[2018-02-13T00:34:30.021] [INFO] cheese - inserting 1000 documents. first: Sven Dufva and last: FC Admira Wacker Mödling Amateure -[2018-02-13T00:34:30.037] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:34:30.039] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:34:30.061] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:34:30.297] [INFO] cheese - inserting 1000 documents. first: Women of Distinction and last: Tokitsuyama -[2018-02-13T00:34:30.309] [INFO] cheese - inserting 1000 documents. first: Francis H. Case and last: Invasion Of The Body Squeezers: Part Two -[2018-02-13T00:34:30.312] [INFO] cheese - inserting 1000 documents. first: Rumah Nyumbang and last: WN812 -[2018-02-13T00:34:30.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/National Museum of Natural History (France) and last: Llibre de les dones -[2018-02-13T00:34:30.348] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:34:30.349] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:30.377] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:34:30.386] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:34:30.394] [INFO] cheese - inserting 1000 documents. first: Brannan Springs, California and last: Aymaq -[2018-02-13T00:34:30.420] [INFO] cheese - inserting 1000 documents. first: George VI of Imereti and last: File:Truechurchmen2.jpg -[2018-02-13T00:34:30.438] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:34:30.586] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T00:34:30.758] [INFO] cheese - inserting 1000 documents. first: Nikos Kaklamanakis and last: Wikipedia:Articles for deletion/Bingle -[2018-02-13T00:34:30.777] [INFO] cheese - inserting 1000 documents. first: Aymak and last: Let's Face the Music! -[2018-02-13T00:34:30.800] [INFO] cheese - inserting 1000 documents. first: Tokitsuyama Jinichi and last: Robert Dobkin -[2018-02-13T00:34:30.818] [INFO] cheese - inserting 1000 documents. first: Joeun Food and last: Statira -[2018-02-13T00:34:30.828] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:34:30.836] [INFO] cheese - inserting 1000 documents. first: Oscar Rolando Hernández and last: Wikipedia:WikiProject Spam/LinkReports/wholesaleeshop.com.au -[2018-02-13T00:34:30.836] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:34:30.896] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:34:30.930] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:34:31.021] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Women in Red/5/invitation and last: Lin Shin-yi -[2018-02-13T00:34:31.028] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:34:31.204] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:34:31.259] [INFO] cheese - inserting 1000 documents. first: Purbeck District Council election, 2004 and last: Mont-Joli, QC -[2018-02-13T00:34:31.299] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:34:31.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sportetcitoyennete.com and last: U.S. Post Office-Springville Main -[2018-02-13T00:34:31.434] [INFO] cheese - inserting 1000 documents. first: Edward Burton (footballer) and last: Blades of Vengeance -[2018-02-13T00:34:31.460] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:34:31.501] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:34:31.530] [INFO] cheese - inserting 1000 documents. first: Category:1946 in Moyen-Congo and last: Wikipedia:Online Ambassadors/Apply/sudheendrac -[2018-02-13T00:34:31.572] [INFO] cheese - inserting 1000 documents. first: Flakstadelva and last: Bolsa de Valores de Nicaragua -[2018-02-13T00:34:31.593] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:34:31.640] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:34:31.702] [INFO] cheese - inserting 1000 documents. first: Rocky and bullwinkle and last: Seattle seawall -[2018-02-13T00:34:31.759] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:34:31.763] [INFO] cheese - inserting 1000 documents. first: Tamaulipan mezquital and last: Gausbert de Poicibot -[2018-02-13T00:34:31.819] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:31.825] [INFO] cheese - inserting 1000 documents. first: U.S. Post Office-Visalia Town Center Station and last: Chandgana coal mine -[2018-02-13T00:34:31.850] [INFO] cheese - inserting 1000 documents. first: Wu Rong-yi and last: Gudur–Renigunta section -[2018-02-13T00:34:31.874] [INFO] cheese - inserting 1000 documents. first: Mridula Koshy and last: Wikipedia:WikiProject Spam/LinkReports/renandstimpyepisodes.com -[2018-02-13T00:34:31.878] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:34:31.908] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:34:31.922] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:34:31.952] [INFO] cheese - inserting 1000 documents. first: Radwimps 4 ~Okazu no Gohan~ and last: Year of the Dragon (play) -[2018-02-13T00:34:31.989] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:32.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Keith Middleton and last: File:Tgot1.jpg -[2018-02-13T00:34:32.135] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:34:32.292] [INFO] cheese - inserting 1000 documents. first: File:Gmis.hdr.logo.png and last: Кхъу -[2018-02-13T00:34:32.305] [INFO] cheese - inserting 1000 documents. first: Masked (The Secret Circle) and last: Wikipedia:User Advocacy/post it -[2018-02-13T00:34:32.335] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:34:32.345] [INFO] cheese - inserting 1000 documents. first: Siai-Marchetti Warrior and last: Wikipedia:Articles for deletion/Maitrayaniya Upanishad -[2018-02-13T00:34:32.359] [INFO] cheese - inserting 1000 documents. first: Kokila (film) and last: Category:Railway stations in Nijmegen -[2018-02-13T00:34:32.362] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:34:32.397] [INFO] cheese - inserting 1000 documents. first: Year of the Dragon (1975 film) and last: Stanley Russell -[2018-02-13T00:34:32.405] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:34:32.431] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:34:32.462] [INFO] cheese - inserting 1000 documents. first: Gausbert de Puicibot and last: Criminal by passion -[2018-02-13T00:34:32.474] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:32.572] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:34:32.649] [INFO] cheese - inserting 1000 documents. first: County Councillor and last: Brian Skrudland -[2018-02-13T00:34:32.699] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:34:32.812] [INFO] cheese - inserting 1000 documents. first: Life and Stuff and last: Metrodiol -[2018-02-13T00:34:32.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/7 Seconds: A Typical Teenager, Atypical Life and last: Right colic arteries -[2018-02-13T00:34:32.816] [INFO] cheese - inserting 1000 documents. first: Giant Warty Squid and last: Star 104.5 -[2018-02-13T00:34:32.858] [INFO] cheese - inserting 1000 documents. first: Habeck and last: Juan Sanchez (artist) -[2018-02-13T00:34:32.867] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:34:32.877] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:32.891] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:34:32.945] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:34:33.022] [INFO] cheese - inserting 1000 documents. first: Category:Critics and last: Teletext Limited -[2018-02-13T00:34:33.027] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Owen Kratz and last: Wikipedia:Articles for deletion/TBA (Christina Stürmer) -[2018-02-13T00:34:33.065] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:33.080] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:34:33.081] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/wholesale07.com and last: Zudan -[2018-02-13T00:34:33.108] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:34:33.203] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Asian Games articles and last: Hornsea Bridge -[2018-02-13T00:34:33.234] [INFO] cheese - inserting 1000 documents. first: Palais des Sports de Beaublanc and last: Macular sparing -[2018-02-13T00:34:33.234] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:34:33.248] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Isaias Lora and last: Scholesy -[2018-02-13T00:34:33.315] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:34:33.332] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:34:33.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CHILDRENSLIT and last: Category:Non-English-language newspapers published in Pennsylvania -[2018-02-13T00:34:33.456] [INFO] cheese - inserting 1000 documents. first: Antapentan and last: Brooks Free Library -[2018-02-13T00:34:33.474] [INFO] cheese - inserting 1000 documents. first: List of University of Tennessee notable people and last: Roman Catholic Diocese of Popokabaka -[2018-02-13T00:34:33.514] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:33.529] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:34:33.552] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:34:33.827] [INFO] cheese - inserting 1000 documents. first: Tarantella, Incorporated and last: Wicked Witch of the East -[2018-02-13T00:34:33.930] [INFO] cheese - inserting 1000 documents. first: Nanobiotix and last: Viopsicol -[2018-02-13T00:34:33.930] [INFO] cheese - inserting 1000 documents. first: Berresse and last: Hello Kitty (Girls) -[2018-02-13T00:34:33.940] [INFO] cheese - inserting 1000 documents. first: The Krewe Of BOO and last: Asteromassaria -[2018-02-13T00:34:33.963] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:34:33.966] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:34:33.972] [INFO] cheese - inserting 1000 documents. first: One Romantic Night and last: St Cuthberts Way -[2018-02-13T00:34:33.981] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:34:34.038] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:34:34.071] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:34:34.133] [INFO] cheese - inserting 1000 documents. first: Cafe de Colombia (cycling team) and last: Kellom Elementary School -[2018-02-13T00:34:34.196] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:34:34.249] [INFO] cheese - inserting 1000 documents. first: Azucaps and last: Dowflake -[2018-02-13T00:34:34.278] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:34:34.310] [INFO] cheese - inserting 1000 documents. first: Jakub Vojta (ice hockey) and last: Ravalle Quinn -[2018-02-13T00:34:34.367] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:34:34.419] [INFO] cheese - inserting 1000 documents. first: Homeward Bound (Girls) and last: Kendall and Kylie -[2018-02-13T00:34:34.466] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:34.555] [INFO] cheese - inserting 1000 documents. first: Category:Tasmanian languages and last: St joseph's high school patna -[2018-02-13T00:34:34.557] [INFO] cheese - inserting 1000 documents. first: Supermarkets in Poland and last: April 2099 lunar eclipse -[2018-02-13T00:34:34.592] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:34:34.616] [INFO] cheese - inserting 1000 documents. first: Conductive yarn and last: Highway 8 (Saskatchewan) -[2018-02-13T00:34:34.632] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:34:34.657] [INFO] cheese - inserting 1000 documents. first: List of The Simpsons episodes (Season 11) and last: Orquesta Nacional de Espana -[2018-02-13T00:34:34.710] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:34:34.755] [INFO] cheese - inserting 1000 documents. first: B.H. Roberts and last: Category:1936 in sports -[2018-02-13T00:34:34.770] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:34:34.851] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:34:34.882] [INFO] cheese - inserting 1000 documents. first: María Concepción de la Natividad y el Perpetuo Socorro de María and last: David Zwingerman -[2018-02-13T00:34:34.889] [INFO] cheese - inserting 1000 documents. first: Gewacalm and last: Zantryl -[2018-02-13T00:34:34.925] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:34:34.932] [INFO] cheese - inserting 1000 documents. first: St Clair, South Australia and last: Template:Did you know nominations/Yves Gaucher (artist) -[2018-02-13T00:34:34.949] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:34:35.008] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:34:35.087] [INFO] cheese - inserting 1000 documents. first: Staging (data) and last: Tam media research -[2018-02-13T00:34:35.135] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:34:35.140] [INFO] cheese - inserting 1000 documents. first: Counterstrike (drum & bass group) and last: Kaon Ultra -[2018-02-13T00:34:35.157] [INFO] cheese - inserting 1000 documents. first: Highway 49 (Saskatchewan) and last: Munderic of Arisitum -[2018-02-13T00:34:35.173] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:34:35.213] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:34:35.226] [INFO] cheese - inserting 1000 documents. first: Orquesta nacional de espana and last: Anzoátegui (disambiguation) -[2018-02-13T00:34:35.276] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:34:35.333] [INFO] cheese - inserting 1000 documents. first: Divers Alert Network Asia-Pacific and last: Silvio Garattini -[2018-02-13T00:34:35.377] [INFO] cheese - inserting 1000 documents. first: Kaon-Cl and last: Neutraphyllin -[2018-02-13T00:34:35.380] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:35.427] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:34:35.440] [INFO] cheese - inserting 1000 documents. first: Third Reich and Roll and last: Timeline of liberal and democratic parties in New Zealand -[2018-02-13T00:34:35.491] [INFO] cheese - inserting 1000 documents. first: Family temple and last: Riwandi Wahit -[2018-02-13T00:34:35.499] [INFO] cheese - inserting 1000 documents. first: List of songs by A Day to Remember and last: Template:POTD protected/2013-07-10 -[2018-02-13T00:34:35.498] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:34:35.557] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:34:35.559] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:34:35.613] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Bannock County, Idaho and last: Eferon -[2018-02-13T00:34:35.653] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:34:35.691] [INFO] cheese - inserting 1000 documents. first: Walter Augustus Drake and last: DuPont Fabros Technology -[2018-02-13T00:34:35.698] [INFO] cheese - inserting 1000 documents. first: François René and last: Nieuwland -[2018-02-13T00:34:35.718] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:34:35.728] [INFO] cheese - inserting 1000 documents. first: Gabriela E. Medina and last: Caborn-Welborn -[2018-02-13T00:34:35.754] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:34:35.793] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:34:35.839] [INFO] cheese - inserting 1000 documents. first: Epheron and last: Baeyer-Villiger -[2018-02-13T00:34:35.840] [INFO] cheese - inserting 1000 documents. first: Category:DOS games and last: Category:757 -[2018-02-13T00:34:35.856] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:34:35.874] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:34:35.912] [INFO] cheese - inserting 1000 documents. first: Aeromonas salmonicida and last: Callahan Museum of the American Printing House for the Blind -[2018-02-13T00:34:35.963] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:35.995] [INFO] cheese - inserting 1000 documents. first: File:Women's Media Centre of Cambodia.png and last: Prophylux -[2018-02-13T00:34:36.012] [INFO] cheese - batch complete in: 0.156 secs -[2018-02-13T00:34:36.054] [INFO] cheese - inserting 1000 documents. first: Bulanda and last: File:Meenda Sorgam poster.jpg -[2018-02-13T00:34:36.089] [INFO] cheese - inserting 1000 documents. first: Template:Footer Olympic Champions 3000 m Steeplechase Men and last: Category:1614 -[2018-02-13T00:34:36.112] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:34:36.134] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:34:36.136] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 728 and last: Novas (surname) -[2018-02-13T00:34:36.183] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:34:36.205] [INFO] cheese - inserting 1000 documents. first: Royal carribean and last: Omukama -[2018-02-13T00:34:36.249] [INFO] cheese - inserting 1000 documents. first: Propranur and last: Fascol -[2018-02-13T00:34:36.265] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:34:36.274] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:34:36.319] [INFO] cheese - inserting 1000 documents. first: Florent Rouamba and last: Monadnock Railroad -[2018-02-13T00:34:36.346] [INFO] cheese - inserting 1000 documents. first: The Pest (1922 film) and last: Shield (comics) -[2018-02-13T00:34:36.355] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:34:36.374] [INFO] cheese - inserting 1000 documents. first: Draft:Gianni Berengo Gardin and last: Boone, William -[2018-02-13T00:34:36.396] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:34:36.398] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:34:36.454] [INFO] cheese - inserting 1000 documents. first: Theretra boisduvali and last: Kessar -[2018-02-13T00:34:36.478] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:34:36.550] [INFO] cheese - inserting 1000 documents. first: Template:2011–2012 News Corporation scandal and last: Lirab, Basht -[2018-02-13T00:34:36.589] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:36.634] [INFO] cheese - inserting 1000 documents. first: Min Tid Skal Komme and last: Wikipedia:Requests for mediation/Merging of self-consciousness and self-awareness -[2018-02-13T00:34:36.649] [INFO] cheese - inserting 1000 documents. first: Category:1615 and last: Wikipedia:Votes for deletion/Ba'thist regime -[2018-02-13T00:34:36.668] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:34:36.682] [INFO] cheese - inserting 1000 documents. first: Noltam and last: Pantrop -[2018-02-13T00:34:36.686] [INFO] cheese - inserting 1000 documents. first: Boothby, William and last: Category:1981 in Northern Cyprus -[2018-02-13T00:34:36.692] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:34:36.708] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:34:36.727] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:34:36.745] [INFO] cheese - inserting 1000 documents. first: Hathaways Mountain Pines and last: File:Mason Jennings How Deep Is That River EP Cover.jpg -[2018-02-13T00:34:36.795] [INFO] cheese - inserting 1000 documents. first: Yemeni Arabic dialects and last: PG-58 -[2018-02-13T00:34:36.803] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:34:36.847] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:34:36.861] [INFO] cheese - inserting 1000 documents. first: File:Peter Francis.png and last: Baba Kelu -[2018-02-13T00:34:36.903] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:34:36.941] [INFO] cheese - inserting 1000 documents. first: Roger Mortimer, Baron of Chirk and last: Communities in the Minneapolis / St. Paul Metro area -[2018-02-13T00:34:36.960] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:34:37.072] [INFO] cheese - inserting 1000 documents. first: File:Percussion.png and last: 2006 Champ Car season -[2018-02-13T00:34:37.073] [INFO] cheese - inserting 1000 documents. first: Category:1989 in Northern Cyprus and last: Pacífico (Madrid) -[2018-02-13T00:34:37.115] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:34:37.207] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:34:37.242] [INFO] cheese - inserting 1000 documents. first: Puberty (Munch painting) and last: Bulletin of Engineering Geology and the Environment -[2018-02-13T00:34:37.248] [INFO] cheese - inserting 1000 documents. first: Aso Station and last: Grand'Mère, Quebec -[2018-02-13T00:34:37.334] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:37.349] [INFO] cheese - inserting 1000 documents. first: University Avenue (Minneapolis-St. Paul) and last: Denyl -[2018-02-13T00:34:37.379] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:37.405] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:37.432] [INFO] cheese - inserting 1000 documents. first: Baba-ye Kalan and last: Akaruye -[2018-02-13T00:34:37.487] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:34:37.577] [INFO] cheese - inserting 1000 documents. first: Zagreb University and last: Boston Harbor Islands National Recreation Area -[2018-02-13T00:34:37.615] [INFO] cheese - inserting 1000 documents. first: Di-Hydan and last: Phenaphen Caplets -[2018-02-13T00:34:37.694] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:34:37.696] [INFO] cheese - inserting 1000 documents. first: Les Pepees Font la Loi and last: Ask Italian -[2018-02-13T00:34:37.702] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T00:34:37.792] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:34:37.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/impressnow.com and last: Cesatiella -[2018-02-13T00:34:37.847] [INFO] cheese - inserting 1000 documents. first: Meningeal coverings and last: Curved Bar -[2018-02-13T00:34:37.885] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:34:37.912] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:34:37.914] [INFO] cheese - inserting 1000 documents. first: Phendon and last: University of Trás-os-Montes & Alto Douro -[2018-02-13T00:34:37.936] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:34:38.016] [INFO] cheese - inserting 1000 documents. first: C. C. Capwell and last: Hakone-juku -[2018-02-13T00:34:38.074] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:34:38.106] [INFO] cheese - inserting 1000 documents. first: Akasheh and last: File:Saw II poster.jpg -[2018-02-13T00:34:38.108] [INFO] cheese - inserting 1000 documents. first: Category:Songs with lyrics by Dario Fo and last: Rhysling (crater) -[2018-02-13T00:34:38.116] [INFO] cheese - inserting 1000 documents. first: Template:NRHP in Muskingum County, Ohio and last: Microsul -[2018-02-13T00:34:38.140] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:34:38.157] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:38.165] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:34:38.247] [INFO] cheese - inserting 1000 documents. first: Charonectria and last: Category:Esbjerg -[2018-02-13T00:34:38.288] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:34:38.308] [INFO] cheese - inserting 1000 documents. first: William Wentworth Fitzwilliam and last: Irakli (Prince) -[2018-02-13T00:34:38.330] [INFO] cheese - inserting 1000 documents. first: Renasul and last: Fenetazina -[2018-02-13T00:34:38.346] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:34:38.351] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:34:38.454] [INFO] cheese - inserting 1000 documents. first: Charles A. Alluaud and last: Paul J. Smith -[2018-02-13T00:34:38.455] [INFO] cheese - inserting 1000 documents. first: Wautoma and last: 57-cell -[2018-02-13T00:34:38.464] [INFO] cheese - inserting 1000 documents. first: C. M. Anglo Bengali Inter College and last: 2015–16 USC Upstate Spartans women's basketball team -[2018-02-13T00:34:38.492] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:34:38.497] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:38.512] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:34:38.575] [INFO] cheese - inserting 1000 documents. first: DGIST and last: Cecilie Breil Kramer -[2018-02-13T00:34:38.610] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:38.645] [INFO] cheese - inserting 1000 documents. first: Onda Cero and last: Walking seal -[2018-02-13T00:34:38.658] [INFO] cheese - inserting 1000 documents. first: Genphen and last: Borja Ekiza -[2018-02-13T00:34:38.689] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:34:38.697] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:34:38.752] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wenborn and last: Laila Mehdin -[2018-02-13T00:34:38.756] [INFO] cheese - inserting 1000 documents. first: Hinckley and Bosworth Council election 1995 and last: Bertrand, Louis, Saint -[2018-02-13T00:34:38.781] [INFO] cheese - inserting 1000 documents. first: Mehdia (disambiguation) and last: Alternate IPA symbol -[2018-02-13T00:34:38.788] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:34:38.816] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:34:38.821] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:34:39.045] [INFO] cheese - inserting 1000 documents. first: Frederick Craven and last: Babuijore Dharani Dhar High School (H.S) -[2018-02-13T00:34:39.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kohl's Plaza (Colonie, New York) and last: Balfour Williamson & Co. -[2018-02-13T00:34:39.130] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:39.180] [INFO] cheese - inserting 1000 documents. first: Projective special linear group and last: Bessacarr -[2018-02-13T00:34:39.200] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:34:39.229] [INFO] cheese - inserting 1000 documents. first: Too Close For Comfort (1956 song) and last: Sol de otoño -[2018-02-13T00:34:39.269] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:34:39.311] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:34:39.357] [INFO] cheese - inserting 1000 documents. first: Anomia simplex and last: Bayview-Montalvin Manor, California -[2018-02-13T00:34:39.409] [INFO] cheese - inserting 1000 documents. first: Robert L. Wilson and last: ONSLG -[2018-02-13T00:34:39.411] [INFO] cheese - inserting 1000 documents. first: Obsolete IPA symbol and last: Denis Howe (footballer) -[2018-02-13T00:34:39.433] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:34:39.468] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:34:39.494] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:34:39.560] [INFO] cheese - inserting 1000 documents. first: Epicranius muscle and last: Alejandro Aravena -[2018-02-13T00:34:39.609] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:34:39.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/AFC articles by quality/8 and last: Circumstances (rhetoric) -[2018-02-13T00:34:39.737] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:34:39.831] [INFO] cheese - inserting 1000 documents. first: Carriage Crossing and last: Taecanet -[2018-02-13T00:34:39.885] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:34:39.940] [INFO] cheese - inserting 1000 documents. first: Category:Works by Oliver Goldsmith and last: 1995–96 FIS Cross-Country World Cup -[2018-02-13T00:34:39.945] [INFO] cheese - inserting 1000 documents. first: Gerd Arntz and last: Christian Menn -[2018-02-13T00:34:39.949] [INFO] cheese - inserting 1000 documents. first: Shamballah and last: CIGI -[2018-02-13T00:34:39.961] [INFO] cheese - inserting 1000 documents. first: Angelina (singer) and last: Cheshmeh-ye Sib Deli Gerdu -[2018-02-13T00:34:39.992] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:39.993] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:34:40.013] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:34:40.057] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:34:40.084] [INFO] cheese - inserting 1000 documents. first: Category:Mining museums in the Czech Republic and last: Winona Rider -[2018-02-13T00:34:40.112] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:34:40.148] [INFO] cheese - inserting 1000 documents. first: 1985 TAAC Men's Basketball Tournament and last: Jon Rollason -[2018-02-13T00:34:40.201] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:34:40.268] [INFO] cheese - inserting 1000 documents. first: File:WintersKnight.jpg and last: Scheuder -[2018-02-13T00:34:40.302] [INFO] cheese - inserting 1000 documents. first: H. C. Enoses and last: Best Country Solo Performance -[2018-02-13T00:34:40.316] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:40.336] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:34:40.399] [INFO] cheese - inserting 1000 documents. first: List of United States presidential pets and last: Peyton House (Raymond, Mississippi) -[2018-02-13T00:34:40.411] [INFO] cheese - inserting 1000 documents. first: Cassie Mitchell and last: Template:R U -[2018-02-13T00:34:40.444] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:34:40.465] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:34:40.514] [INFO] cheese - inserting 1000 documents. first: Yuri Feodorovich Lisyansky and last: File:InvisibleLantern.jpg -[2018-02-13T00:34:40.568] [INFO] cheese - inserting 1000 documents. first: File:Colonel Bogey.ogg and last: C. Allen Foster -[2018-02-13T00:34:40.588] [INFO] cheese - inserting 1000 documents. first: Horslips and last: Vibrating structure gyroscope -[2018-02-13T00:34:40.585] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:34:40.620] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:40.665] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:34:40.723] [INFO] cheese - inserting 1000 documents. first: HMS Pylades (J401) and last: Frédéric Page -[2018-02-13T00:34:40.740] [INFO] cheese - inserting 1000 documents. first: Autogiro AC-35 and last: King Alfred School (disambiguation) -[2018-02-13T00:34:40.771] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:34:40.778] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:34:40.855] [INFO] cheese - inserting 1000 documents. first: White Point (Victoria), Nova Scotia and last: Portal:Fascism/DYK/4 -[2018-02-13T00:34:40.907] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:34:40.916] [INFO] cheese - inserting 1000 documents. first: Template:Redirect U and last: Daisuke Suzuki (actor) -[2018-02-13T00:34:40.958] [INFO] cheese - inserting 1000 documents. first: Abdulahad Malek and last: Shawn Chapman -[2018-02-13T00:34:41.003] [INFO] cheese - inserting 1000 documents. first: Cir process and last: Stolenwealth -[2018-02-13T00:34:41.029] [INFO] cheese - inserting 1000 documents. first: Kinzigtalbahn (disambiguation) and last: Santa Maria degli Scalzi (disambiguation) -[2018-02-13T00:34:41.033] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:34:41.043] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:41.050] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:34:41.108] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:34:41.193] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Macau articles and last: Chanakia, Greece -[2018-02-13T00:34:41.246] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:41.256] [INFO] cheese - inserting 1000 documents. first: List of Olympic medalists in swimming (men) and last: Irregular Galaxy M82 -[2018-02-13T00:34:41.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michel Marot and last: Wikipedia:Version 1.0 Editorial Team/Australia articles by quality/193 -[2018-02-13T00:34:41.295] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:34:41.324] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:34:41.338] [INFO] cheese - inserting 1000 documents. first: Kacchi Plain and last: Template:New Zealand Conservative Party/meta/color -[2018-02-13T00:34:41.380] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:34:41.388] [INFO] cheese - inserting 1000 documents. first: The Garden of Health and last: Dashwood, Robert -[2018-02-13T00:34:41.426] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:41.468] [INFO] cheese - inserting 1000 documents. first: Trans-Europe Express and last: Howard Groskloss -[2018-02-13T00:34:41.499] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Falling In Reverse (band) (2nd nomination) and last: Wikipedia:WikiProject Spam/LinkReports/thegolddiggerssupersite.com -[2018-02-13T00:34:41.513] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:34:41.547] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:34:41.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australia articles by quality/194 and last: Zorro-II -[2018-02-13T00:34:41.709] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:34:41.717] [INFO] cheese - inserting 1000 documents. first: 1963 Tulsa Golden Hurricane football team and last: My Ways -[2018-02-13T00:34:41.748] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:34:41.789] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Micko Larkin and last: Category:Arachnologists by nationality -[2018-02-13T00:34:41.832] [INFO] cheese - inserting 1000 documents. first: List of Williams College Bicentennial Winners and last: Julian Robert Hunte -[2018-02-13T00:34:41.839] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:41.844] [INFO] cheese - inserting 1000 documents. first: Template:Most traded currencies and last: Kathleen M. Carley -[2018-02-13T00:34:41.886] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:34:41.889] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:34:41.903] [INFO] cheese - inserting 1000 documents. first: Messier Object 82 and last: Lord's Day Act -[2018-02-13T00:34:41.942] [INFO] cheese - inserting 1000 documents. first: Category:Cemeteries and tombs in Rome and last: List of United States Supreme Court cases, volume 42 -[2018-02-13T00:34:41.952] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:34:41.987] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:34:42.033] [INFO] cheese - inserting 1000 documents. first: Polygamy in Niue and last: Hypoecta -[2018-02-13T00:34:42.086] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:34:42.125] [INFO] cheese - inserting 1000 documents. first: She (Zayn song) and last: Gino Birindelli -[2018-02-13T00:34:42.196] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:34:42.279] [INFO] cheese - inserting 1000 documents. first: Jessica Biel filmography and last: Helmholtz Institute Jena -[2018-02-13T00:34:42.331] [INFO] cheese - inserting 1000 documents. first: Foreign object (professional wrestling) and last: 3-q -[2018-02-13T00:34:42.341] [INFO] cheese - inserting 1000 documents. first: Richard Field (publisher) and last: Wikipedia:WikiProject Spam/LinkReports/maisoncheerup.pbwiki.com -[2018-02-13T00:34:42.349] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:34:42.424] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:34:42.427] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:34:42.438] [INFO] cheese - inserting 1000 documents. first: Idanophana and last: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/330 -[2018-02-13T00:34:42.486] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:34:42.563] [INFO] cheese - inserting 1000 documents. first: Kahramankazan and last: Amusement Parks USA -[2018-02-13T00:34:42.641] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:34:42.698] [INFO] cheese - inserting 1000 documents. first: Wrinkle ridge and last: Pauline Parker -[2018-02-13T00:34:42.781] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:34:42.848] [INFO] cheese - inserting 1000 documents. first: List of Space Brothers characters and last: St. Petersburg Academic Symphony Orchestra -[2018-02-13T00:34:42.869] [INFO] cheese - inserting 1000 documents. first: Thanatopsis (disambiguation) and last: Eurico -[2018-02-13T00:34:42.882] [INFO] cheese - inserting 1000 documents. first: Kiwa NV and last: Stensen ducts -[2018-02-13T00:34:42.902] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:34:42.908] [INFO] cheese - inserting 1000 documents. first: 2008 U.S. Open and last: Storyteller Café -[2018-02-13T00:34:42.933] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:42.938] [INFO] cheese - inserting 1000 documents. first: Empyelocera camillae and last: Category:Defunct ski areas and resorts in California -[2018-02-13T00:34:42.967] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:34:42.955] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:34:42.983] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:34:43.185] [INFO] cheese - inserting 1000 documents. first: File:Baby-Love-large.jpg and last: Millimetre wave -[2018-02-13T00:34:43.260] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:34:43.358] [INFO] cheese - inserting 1000 documents. first: Category:Kazakhstan national football team managers and last: Smith v Croft (No 2) -[2018-02-13T00:34:43.368] [INFO] cheese - inserting 1000 documents. first: Tayma Loren and last: Marguerite Carré -[2018-02-13T00:34:43.375] [INFO] cheese - inserting 1000 documents. first: List of National Titles and last: Hroðulf -[2018-02-13T00:34:43.387] [INFO] cheese - inserting 1000 documents. first: Merna Summers and last: 2009 H1N1 influenza -[2018-02-13T00:34:43.400] [INFO] cheese - inserting 1000 documents. first: Zhang Boxing and last: Wikipedia:Meetup/DC/Virtual -[2018-02-13T00:34:43.401] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:34:43.415] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:34:43.447] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:34:43.462] [INFO] cheese - inserting 1000 documents. first: Warcry (singer) and last: Simple magic square -[2018-02-13T00:34:43.471] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:34:43.486] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:43.530] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:34:43.682] [INFO] cheese - inserting 1000 documents. first: Sandon tornado and last: Iron(II) sulphate -[2018-02-13T00:34:43.742] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:34:43.796] [INFO] cheese - inserting 1000 documents. first: Patrick Wilson filmography and last: File:Battleship Sevastopol.jpg -[2018-02-13T00:34:43.821] [INFO] cheese - inserting 1000 documents. first: Cordia Tsoi Pop-Yee and last: Gulfstream U-4 -[2018-02-13T00:34:43.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:RFUD and last: Lewis Ballham -[2018-02-13T00:34:43.844] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:34:43.855] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:43.866] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:34:43.869] [INFO] cheese - inserting 1000 documents. first: Oebles-Schlechtewitz and last: Sharan Merriam -[2018-02-13T00:34:43.898] [INFO] cheese - inserting 1000 documents. first: Category:Discoveries by Yuri A. Belyaev and last: Subcutaneous tissue of the penis -[2018-02-13T00:34:43.912] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:44.030] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:34:44.205] [INFO] cheese - inserting 1000 documents. first: File:Star Fox Adventures GCN Screenshot.jpg and last: Lake Isabella -[2018-02-13T00:34:44.289] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:34:44.342] [INFO] cheese - inserting 1000 documents. first: Konkordiahutte and last: W. A. Sutton -[2018-02-13T00:34:44.351] [INFO] cheese - inserting 1000 documents. first: Joseph Lewis Ballham and last: Associated, California -[2018-02-13T00:34:44.386] [INFO] cheese - inserting 1000 documents. first: Subcutaneous tissues of the penis and last: Three Steps Over Heaven -[2018-02-13T00:34:44.398] [INFO] cheese - inserting 1000 documents. first: Jeong-A Industry Co., Ltd and last: Heroes' Day -[2018-02-13T00:34:44.403] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:34:44.409] [INFO] cheese - inserting 1000 documents. first: John A. Gosling and last: Suburban Noize records -[2018-02-13T00:34:44.410] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:34:44.462] [INFO] cheese - inserting 1000 documents. first: Category:Toshiba EMI games and last: 2012 CAF Men's Pre-Olympic Tournament Second Round -[2018-02-13T00:34:44.456] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:34:44.490] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:34:44.528] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:34:44.559] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:34:44.826] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Italian television and last: TYROLIT Schleifmittelwerke Swarovski KG -[2018-02-13T00:34:44.889] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:34:44.907] [INFO] cheese - inserting 1000 documents. first: Suburban noize records and last: Situation theory -[2018-02-13T00:34:44.942] [INFO] cheese - inserting 1000 documents. first: Jnana Prabodhini and last: Andy Kennedy (football player) -[2018-02-13T00:34:44.966] [INFO] cheese - inserting 1000 documents. first: Deep and Dark and Dangerous and last: Chokhatauri district -[2018-02-13T00:34:44.982] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:44.998] [INFO] cheese - inserting 1000 documents. first: Tre metri sopra il cielo and last: Superior horns of the thyroid cartilage -[2018-02-13T00:34:44.998] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:45.011] [INFO] cheese - inserting 1000 documents. first: Ebauche and last: Ong Bak -[2018-02-13T00:34:45.028] [INFO] cheese - inserting 1000 documents. first: Rodney Terry and last: Paul Curtman -[2018-02-13T00:34:45.031] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:34:45.054] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:34:45.073] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:34:45.083] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:34:45.289] [INFO] cheese - inserting 1000 documents. first: Portal:Brittany/Selected picture/3 and last: List of fatal accidents to commercial cargo aircraft -[2018-02-13T00:34:45.348] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:34:45.359] [INFO] cheese - inserting 1000 documents. first: Dedoplis Tsqaro district and last: Joseph Takahashi -[2018-02-13T00:34:45.387] [INFO] cheese - inserting 1000 documents. first: South Central China and last: Category:Blackjack players -[2018-02-13T00:34:45.399] [INFO] cheese - inserting 1000 documents. first: Countries occupied by Soviet Union and last: Clara Bracy -[2018-02-13T00:34:45.403] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:34:45.416] [INFO] cheese - inserting 1000 documents. first: Chris Mensalvas and last: Jama Masjid, Erandol -[2018-02-13T00:34:45.455] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:34:45.459] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:34:45.465] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:34:45.477] [INFO] cheese - inserting 1000 documents. first: Stan Morgan and last: Ekbom Disease -[2018-02-13T00:34:45.527] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:45.708] [INFO] cheese - inserting 1000 documents. first: Hatiya, Bangladesh and last: Chocho del Páramo -[2018-02-13T00:34:45.713] [INFO] cheese - inserting 1000 documents. first: Barbell Nebula and last: Rice car -[2018-02-13T00:34:45.738] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:34:45.755] [INFO] cheese - inserting 1000 documents. first: Rip Colt and last: Template:MarsGeo-Deimos -[2018-02-13T00:34:45.766] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:34:45.776] [INFO] cheese - inserting 1000 documents. first: Lucien (band) and last: Hwang Suk-young -[2018-02-13T00:34:45.791] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:34:45.829] [INFO] cheese - inserting 1000 documents. first: Willie Ogg and last: Category:Medical and health organisations based in Sudan -[2018-02-13T00:34:45.872] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:45.914] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:34:45.955] [INFO] cheese - inserting 1000 documents. first: Delphine lalaurie and last: HLA-A28 -[2018-02-13T00:34:45.960] [INFO] cheese - inserting 1000 documents. first: Neon Christ and last: Oddvar Hansen -[2018-02-13T00:34:46.016] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:34:46.027] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:46.095] [INFO] cheese - inserting 1000 documents. first: National costume of Azerbaijan and last: Fokker V 30 -[2018-02-13T00:34:46.139] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:34:46.213] [INFO] cheese - inserting 1000 documents. first: Category:1748 establishments in the Habsburg Monarchy and last: Rudrahridaya Upanishad -[2018-02-13T00:34:46.264] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:34:46.312] [INFO] cheese - inserting 1000 documents. first: Bombei and last: Thomas O’Shea -[2018-02-13T00:34:46.347] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:46.359] [INFO] cheese - inserting 1000 documents. first: Together Again (Tony Bennett and Bill Evans album) and last: Atomic Force Microscopy -[2018-02-13T00:34:46.381] [INFO] cheese - inserting 1000 documents. first: Macedon railway station, Victoria and last: International Expressive Arts Therapy Association-IEATA -[2018-02-13T00:34:46.405] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:34:46.410] [INFO] cheese - inserting 1000 documents. first: Campbell, oh and last: Michael Keeping -[2018-02-13T00:34:46.430] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:34:46.456] [INFO] cheese - inserting 1000 documents. first: Category:Edwards County, Kansas and last: Student council -[2018-02-13T00:34:46.463] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:34:46.531] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:34:46.552] [INFO] cheese - inserting 1000 documents. first: Category:1995 Indian television series endings and last: Waitlist control -[2018-02-13T00:34:46.590] [INFO] cheese - inserting 1000 documents. first: Insects (disambiguation) and last: Harold Williamson -[2018-02-13T00:34:46.598] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:46.634] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:34:46.696] [INFO] cheese - inserting 1000 documents. first: File:The Vogues.jpg and last: ShapeAccelArray -[2018-02-13T00:34:46.735] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:34:46.739] [INFO] cheese - inserting 1000 documents. first: Muckinipates Creek and last: Wikipedia:Sockpuppet investigations/Jakenrds111 -[2018-02-13T00:34:46.751] [INFO] cheese - inserting 1000 documents. first: Atmospheric Phenomena and last: Proatheris -[2018-02-13T00:34:46.773] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:34:46.801] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:34:46.882] [INFO] cheese - inserting 1000 documents. first: Lhasoi and last: Wikipedia:Peer review/Real Madrid C.F./archive3 -[2018-02-13T00:34:46.937] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:34:46.988] [INFO] cheese - inserting 1000 documents. first: Brunswick Railroad Museum and last: The Heart of Dixie (song) -[2018-02-13T00:34:46.995] [INFO] cheese - inserting 1000 documents. first: Saint Eustase and last: SS Vermar -[2018-02-13T00:34:47.020] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:34:47.030] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:47.092] [INFO] cheese - inserting 1000 documents. first: Marilyn Brick and last: Maxwell-Boltzmann velocity distribution -[2018-02-13T00:34:47.155] [INFO] cheese - inserting 1000 documents. first: Template:City of Perth Suburbs and last: 1973-74 NC State Wolfpack men's basketball team -[2018-02-13T00:34:47.160] [INFO] cheese - inserting 1000 documents. first: Category:Sports teams in Zanzibar and last: Carlos Alberto Rodrigues Gavião -[2018-02-13T00:34:47.165] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:34:47.221] [INFO] cheese - inserting 1000 documents. first: Sa ad Madhi Sa ad Howash Al Azmi and last: Sony Greatest Hits -[2018-02-13T00:34:47.281] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:34:47.307] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:47.335] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:47.402] [INFO] cheese - inserting 1000 documents. first: Jean-Guy Poitras and last: Federal Road 220 -[2018-02-13T00:34:47.443] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:34:47.464] [INFO] cheese - inserting 1000 documents. first: Category:2008 elections in Ireland and last: Setu Bharatam -[2018-02-13T00:34:47.472] [INFO] cheese - inserting 1000 documents. first: Knight Companion of the Bath (1725–1815) and last: Honorary Knight Grand Cross of the Order of the Star of India -[2018-02-13T00:34:47.512] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:34:47.514] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:34:47.663] [INFO] cheese - inserting 1000 documents. first: Category:Toll bridges in the Republic of Ireland and last: Template:Editnotices/Page/User talk:Avicennasis/MainArchive/2011Q4 -[2018-02-13T00:34:47.694] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:34:47.698] [INFO] cheese - inserting 1000 documents. first: Nanopollution and last: Wood-Ridge -[2018-02-13T00:34:47.710] [INFO] cheese - inserting 1000 documents. first: Mommy blog and last: David McKinney (publisher) -[2018-02-13T00:34:47.737] [INFO] cheese - inserting 1000 documents. first: Leon Bibel and last: Ådne Søndrål -[2018-02-13T00:34:47.746] [INFO] cheese - inserting 1000 documents. first: National Road 220 and last: Iban Mayoz Exteberria -[2018-02-13T00:34:47.758] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:47.759] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:34:47.793] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:34:47.819] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:34:47.859] [INFO] cheese - inserting 1000 documents. first: Sausage Fest and last: File:Lossity.jpg -[2018-02-13T00:34:47.876] [INFO] cheese - inserting 1000 documents. first: Honorary Knight Grand Commander of the Order of the Star of India and last: Dintal-e Habibabad -[2018-02-13T00:34:47.901] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:34:47.939] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:34:48.014] [INFO] cheese - inserting 1000 documents. first: Wyse Fork Confederate order of battle and last: File:Habern.jpg -[2018-02-13T00:34:48.054] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:34:48.185] [INFO] cheese - inserting 1000 documents. first: Double Sextet and last: Stegophorella -[2018-02-13T00:34:48.197] [INFO] cheese - inserting 1000 documents. first: Miss Love Tantei and last: Choctawhatchee senior high school -[2018-02-13T00:34:48.206] [INFO] cheese - inserting 1000 documents. first: Ivan Mayoz Exteberria and last: Andrea Pozzi -[2018-02-13T00:34:48.209] [INFO] cheese - inserting 1000 documents. first: Copthall County Grammar School and last: Malaysian earthtiger tarantula -[2018-02-13T00:34:48.212] [INFO] cheese - inserting 1000 documents. first: Mitsubishi 4J1 engine and last: Wikipedia:Meetup/Sydney/Pete Forsyth links -[2018-02-13T00:34:48.234] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:48.241] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:34:48.244] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:34:48.258] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:34:48.257] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:34:48.363] [INFO] cheese - inserting 1000 documents. first: Sunny Deol and last: File:FinalFantasyTacticsAdvanceGBACoverArtUS.jpg -[2018-02-13T00:34:48.446] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:34:48.525] [INFO] cheese - inserting 1000 documents. first: Wootton, Staffordshire and last: Wikipedia:Requests for adminship/BuickCenturyDriver 2 -[2018-02-13T00:34:48.612] [INFO] cheese - inserting 1000 documents. first: Nikita gale and last: Goodman, Charles -[2018-02-13T00:34:48.608] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:34:48.687] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:34:48.697] [INFO] cheese - inserting 1000 documents. first: Morses Gulch and last: Particle effects -[2018-02-13T00:34:48.755] [INFO] cheese - inserting 1000 documents. first: Historic properties in Glendale, Arizona and last: San Joaquin saltbush -[2018-02-13T00:34:48.781] [INFO] cheese - inserting 1000 documents. first: Arsheesh and last: White Magic for Lovers -[2018-02-13T00:34:48.789] [INFO] cheese - inserting 1000 documents. first: Stearophora and last: The Bay (Chain Store) -[2018-02-13T00:34:48.803] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:34:48.838] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:34:48.853] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:34:48.872] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:34:49.132] [INFO] cheese - inserting 1000 documents. first: Battle of Orbitello and last: Alucita euscripta -[2018-02-13T00:34:49.137] [INFO] cheese - inserting 1000 documents. first: Goodyear, Charles and last: Hotai Motors -[2018-02-13T00:34:49.181] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:34:49.187] [INFO] cheese - inserting 1000 documents. first: Interstate 90 (South Dakota) and last: B. J. Ward(actress) -[2018-02-13T00:34:49.194] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:34:49.206] [INFO] cheese - inserting 1000 documents. first: Taichang Emperor of China and last: Texas Regulars -[2018-02-13T00:34:49.207] [INFO] cheese - inserting 1000 documents. first: Mihail Zafiu and last: GeoCitizens -[2018-02-13T00:34:49.235] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:34:49.253] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:34:49.281] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:34:49.288] [INFO] cheese - inserting 1000 documents. first: File:Stray cat sanctuary (Ottawa, Ontario).jpg and last: Glam-rock -[2018-02-13T00:34:49.303] [INFO] cheese - inserting 1000 documents. first: Indian locomotive class XC and last: Central American bark lizards -[2018-02-13T00:34:49.348] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:34:49.356] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:34:49.542] [INFO] cheese - inserting 1000 documents. first: Category:1980s disestablishments in Jamaica and last: Category:1924 disasters in the United Kingdom -[2018-02-13T00:34:49.560] [INFO] cheese - inserting 1000 documents. first: Koch-Mehrin and last: Guangning County, Liaoning -[2018-02-13T00:34:49.585] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:34:49.637] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:34:49.651] [INFO] cheese - inserting 1000 documents. first: Relax-GAM Fuenlabrada and last: Albert Hamer Reiser -[2018-02-13T00:34:49.706] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:34:49.737] [INFO] cheese - inserting 1000 documents. first: Parade dress and last: 2014 State of Origin series -[2018-02-13T00:34:49.758] [INFO] cheese - inserting 1000 documents. first: GeoCitizen and last: Category:People from Saint-Georges, Quebec -[2018-02-13T00:34:49.800] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:49.811] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:49.849] [INFO] cheese - inserting 1000 documents. first: Slobozhan kobzars and last: The Rocket (film) -[2018-02-13T00:34:49.924] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:34:49.942] [INFO] cheese - inserting 1000 documents. first: Soudan Mine and last: Väisälä crater -[2018-02-13T00:34:50.013] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:34:50.016] [INFO] cheese - inserting 1000 documents. first: Template:2016FLRep and last: The Chops -[2018-02-13T00:34:50.023] [INFO] cheese - inserting 1000 documents. first: Daishogi and last: Orneodes seychellensis -[2018-02-13T00:34:50.032] [INFO] cheese - inserting 1000 documents. first: Protocols of Zion (imprints) and last: The Biologic Show -[2018-02-13T00:34:50.061] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:34:50.071] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:50.090] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:50.344] [INFO] cheese - inserting 1000 documents. first: New York State Route 179 and last: File:Sb30 .jpg -[2018-02-13T00:34:50.361] [INFO] cheese - inserting 1000 documents. first: Hoot Smalley and last: Category:Georgian football club matches -[2018-02-13T00:34:50.413] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:34:50.419] [INFO] cheese - inserting 1000 documents. first: Getter Love!! and last: Another World Entertainment -[2018-02-13T00:34:50.449] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:34:50.485] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:34:50.525] [INFO] cheese - inserting 1000 documents. first: Intelligent web business lab and last: Wikipedia:WikiProject Spam/LinkReports/madeitinhome.com -[2018-02-13T00:34:50.532] [INFO] cheese - inserting 1000 documents. first: Nicolás de la Quadra and last: Ice Tea -[2018-02-13T00:34:50.572] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:34:50.575] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:50.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ink and Bone and last: EDJ (disambiguation) -[2018-02-13T00:34:50.674] [INFO] cheese - inserting 1000 documents. first: List of Valencian monarchs and last: Eagle-Vail -[2018-02-13T00:34:50.702] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:34:50.768] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:34:50.898] [INFO] cheese - inserting 1000 documents. first: Stepwise regression and last: Somewhere over the rainbow -[2018-02-13T00:34:50.936] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian football club matches and last: Category:Economy of Bakersfield, California -[2018-02-13T00:34:50.951] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:34:51.004] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:34:51.009] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/California State Route 371 and last: Citronen mine -[2018-02-13T00:34:51.049] [INFO] cheese - inserting 1000 documents. first: Portal:Music of Australia/Selected image/11 and last: BMW 6 series -[2018-02-13T00:34:51.058] [INFO] cheese - inserting 1000 documents. first: Cormac Ó Curnáin and last: Arsène Lupin (film) -[2018-02-13T00:34:51.089] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:34:51.148] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:34:51.196] [INFO] cheese - inserting 1000 documents. first: Cricket at the 2017 Southeast Asian Games and last: Category:Music videos directed by Annabel Jankel -[2018-02-13T00:34:51.202] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:34:51.296] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:34:51.538] [INFO] cheese - inserting 1000 documents. first: Sanghamitta and last: FILE ID.DIZ -[2018-02-13T00:34:51.560] [INFO] cheese - inserting 1000 documents. first: Joe Kovacic and last: Mama Jo's Recording Studio -[2018-02-13T00:34:51.576] [INFO] cheese - inserting 1000 documents. first: Gibbons-Hawking effect and last: De Flat -[2018-02-13T00:34:51.616] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:34:51.622] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:34:51.631] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:34:51.666] [INFO] cheese - inserting 1000 documents. first: 文聖區 and last: Moje najmilšie -[2018-02-13T00:34:51.696] [INFO] cheese - inserting 1000 documents. first: File:Ithu Thaanda Police (2016) - Poster.jpg and last: Gaetano Amico III -[2018-02-13T00:34:51.727] [INFO] cheese - inserting 1000 documents. first: Vacht Nacht and last: Dashound -[2018-02-13T00:34:51.734] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:34:51.737] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:34:51.804] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:34:51.814] [INFO] cheese - inserting 1000 documents. first: Category:Lead and zinc mines in Greenland and last: Richard Hopkins (MP) -[2018-02-13T00:34:51.884] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:34:52.081] [INFO] cheese - inserting 1000 documents. first: 1-900 (film) and last: Smokescreen (Marvel Comics) -[2018-02-13T00:34:52.107] [INFO] cheese - inserting 1000 documents. first: Waheela and last: Middle East Institute -[2018-02-13T00:34:52.117] [INFO] cheese - inserting 1000 documents. first: File:Mcewans logo.gif and last: Tachikawa Army Type 95 Model 3 Trainer -[2018-02-13T00:34:52.118] [INFO] cheese - inserting 1000 documents. first: File:Portrait of Leon County Assistant Superintendent for Instruction Aquilina Casañas Howell at her office door.jpg and last: September (The Shins song) -[2018-02-13T00:34:52.126] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:34:52.156] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:52.166] [INFO] cheese - inserting 1000 documents. first: Almendra (Aldemaro Romero album) and last: Operation Canopy -[2018-02-13T00:34:52.178] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:52.206] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:34:52.219] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:34:52.267] [INFO] cheese - inserting 1000 documents. first: Gavin Whittaker and last: Siberian Yup'ik -[2018-02-13T00:34:52.342] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:34:52.396] [INFO] cheese - inserting 1000 documents. first: File:National Insect Week Logo.jpg and last: File:GoodMorningAmericaLogo.jpg -[2018-02-13T00:34:52.433] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:34:52.566] [INFO] cheese - inserting 1000 documents. first: Cranmer Park and last: Bisdak -[2018-02-13T00:34:52.612] [INFO] cheese - inserting 1000 documents. first: Yorrell and last: File:Dr KR Balakrishnan, Fortis Malar Hospital, Chennai.jpg -[2018-02-13T00:34:52.651] [INFO] cheese - inserting 1000 documents. first: James Madison 1809 presidential inauguration and last: Il Sole Nella Pioggia -[2018-02-13T00:34:52.687] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:34:52.709] [INFO] cheese - inserting 1000 documents. first: Socialist Workers' Movement and last: Farm to Market Road 2519 (Texas) -[2018-02-13T00:34:52.713] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:52.748] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:34:52.768] [INFO] cheese - inserting 1000 documents. first: Mitsubishi Army Type 97 Headquarter Reconnaissance and last: SR-124 (UT) -[2018-02-13T00:34:52.802] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:34:52.867] [INFO] cheese - inserting 1000 documents. first: Barnaby (comics Tintin) and last: Wikipedia:Featured picture candidates/File:Pitta moluccensis - Kaeng Krachan.jpg -[2018-02-13T00:34:52.874] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:34:52.945] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:53.186] [INFO] cheese - inserting 1000 documents. first: Handayama Botanical Garden and last: Torchlight to Valhalla -[2018-02-13T00:34:53.192] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pipers and last: Mutating engine -[2018-02-13T00:34:53.202] [INFO] cheese - inserting 1000 documents. first: Trigger Fingers (film) and last: Caesarius, Saint -[2018-02-13T00:34:53.236] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:34:53.254] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 2657 (Texas) and last: Category:Members of the 19th Seanad -[2018-02-13T00:34:53.260] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:34:53.282] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:34:53.329] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:34:53.388] [INFO] cheese - inserting 1000 documents. first: Utah State Route 124 (1935) and last: St. Patrick High School (Yellowknife) -[2018-02-13T00:34:53.389] [INFO] cheese - inserting 1000 documents. first: Engelholms Glass and last: Bouquet Of Black Orchids -[2018-02-13T00:34:53.404] [INFO] cheese - inserting 1000 documents. first: My Family, My Films and My Nation and last: File:The Vineyard on ABCFamily.jpg -[2018-02-13T00:34:53.450] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:34:53.455] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:34:53.478] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:34:53.672] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Texas/PASS and last: Fox River (Alaska) -[2018-02-13T00:34:53.685] [INFO] cheese - inserting 1000 documents. first: Cassius, Saint and last: Template:England squad 2001 UEFA Women's European Championship -[2018-02-13T00:34:53.707] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:34:53.733] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:34:53.769] [INFO] cheese - inserting 1000 documents. first: TW03 Danio and last: Template:WGA Awards Chron -[2018-02-13T00:34:53.812] [INFO] cheese - inserting 1000 documents. first: Powder-wig and last: Chittening -[2018-02-13T00:34:53.821] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:53.835] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/auditoriummusic.com and last: Muafname -[2018-02-13T00:34:53.849] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:34:53.874] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:53.886] [INFO] cheese - inserting 1000 documents. first: Hans Sutor and last: Kenya - Australia relations -[2018-02-13T00:34:53.953] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:34:53.968] [INFO] cheese - inserting 1000 documents. first: Music of Saint Lucia and last: Wilno, Ontario -[2018-02-13T00:34:54.054] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:34:54.091] [INFO] cheese - inserting 1000 documents. first: Dansish Ministry of the Environment and last: 1920-21 Port Vale FC season -[2018-02-13T00:34:54.128] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:34:54.148] [INFO] cheese - inserting 1000 documents. first: File:Ejaculation Educational Demonstration.OGG and last: Jeff Ridgway -[2018-02-13T00:34:54.205] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:34:54.232] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/computernetboarder.com and last: Providence St. Mel -[2018-02-13T00:34:54.242] [INFO] cheese - inserting 1000 documents. first: Kenya-Australia relations and last: Wikipedia:WikiProject Spam/LinkReports/hitomitanakaxxx.com -[2018-02-13T00:34:54.268] [INFO] cheese - inserting 1000 documents. first: File:Aspen Gold Kingston Trio2.jpg and last: Fire Station No. 3 -[2018-02-13T00:34:54.271] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:34:54.276] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:34:54.291] [INFO] cheese - inserting 1000 documents. first: Relationship transgression and last: Rick Rosenthal -[2018-02-13T00:34:54.306] [INFO] cheese - inserting 1000 documents. first: 1920-29 in anthropology and last: 18 - Allein unter Madchen -[2018-02-13T00:34:54.328] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:34:54.404] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:34:54.447] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:34:54.625] [INFO] cheese - inserting 1000 documents. first: I Look Like An Engineer and last: 1944-45 Slovenská liga -[2018-02-13T00:34:54.650] [INFO] cheese - inserting 1000 documents. first: Schwergewicht and last: Georgiy Sedov (icebreaker) -[2018-02-13T00:34:54.650] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:34:54.677] [INFO] cheese - inserting 1000 documents. first: Oak hills country club and last: Category:Chiefs of Defence of Norway -[2018-02-13T00:34:54.701] [INFO] cheese - inserting 1000 documents. first: Public Health Service Achievement Medal and last: File:Hbar 338A87E.png -[2018-02-13T00:34:54.699] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:34:54.720] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:54.733] [INFO] cheese - inserting 1000 documents. first: File:PanicSpring.jpg and last: Template:Taxonomy/Heterodontosauridae -[2018-02-13T00:34:54.767] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:34:54.781] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:34:54.787] [INFO] cheese - inserting 1000 documents. first: International Telegraph Alphabet No. 1 and last: Artem Jijikhia -[2018-02-13T00:34:54.842] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:34:54.852] [INFO] cheese - inserting 1000 documents. first: SeeU and last: 1954-55 Philadelphia Warriors season -[2018-02-13T00:34:54.873] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:34:54.876] [INFO] cheese - inserting 1000 documents. first: File:Yfflowbeat.jpg and last: Casually Dressed and Deep in Conversation -[2018-02-13T00:34:54.933] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:34:55.026] [INFO] cheese - inserting 1000 documents. first: Category:1965–66 ice hockey leagues and last: Atlantic Horse Mackerel -[2018-02-13T00:34:55.065] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:34:55.075] [INFO] cheese - inserting 1000 documents. first: Lezayre Station and last: Template:DCAni-trademark-copyright -[2018-02-13T00:34:55.090] [INFO] cheese - inserting 1000 documents. first: 1954-55 Michigan Wolverines men's ice hockey season and last: 1954-55 Iowa Hawkeyes men's basketball team -[2018-02-13T00:34:55.109] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:34:55.132] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:55.210] [INFO] cheese - inserting 1000 documents. first: 2011 European Athletics Indoor Championships and last: Habroichthys -[2018-02-13T00:34:55.253] [INFO] cheese - inserting 1000 documents. first: Tomoyuki Higuchi and last: Template:Admin comment -[2018-02-13T00:34:55.272] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:34:55.318] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:55.432] [INFO] cheese - inserting 1000 documents. first: 1951-52 Tercera Division and last: 1961-62 Liga Alef -[2018-02-13T00:34:55.467] [INFO] cheese - inserting 1000 documents. first: Nikolay Glazkov and last: Notre Dame High School, West Haven, Connecticut -[2018-02-13T00:34:55.479] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:34:55.528] [INFO] cheese - inserting 1000 documents. first: Final Fight Guy and last: Friedrich Wilhelm Hemprich -[2018-02-13T00:34:55.531] [INFO] cheese - inserting 1000 documents. first: Category:1976 establishments in Rwanda and last: Lata Gouveia -[2018-02-13T00:34:55.549] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:34:55.565] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:55.643] [INFO] cheese - inserting 1000 documents. first: Charlie Pechous and last: Maximum Absorbency Garment -[2018-02-13T00:34:55.679] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:34:55.758] [INFO] cheese - inserting 1000 documents. first: 1962-63 Liga Alef and last: 1966 European Athletics Championships - Men's 200 metres -[2018-02-13T00:34:55.835] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:34:55.843] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:55.964] [INFO] cheese - inserting 1000 documents. first: Peripeltopleurus and last: Mary Lou Fulton Teachers College -[2018-02-13T00:34:56.034] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:34:56.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GOAWAY and last: 1975-76 Houston Rockets season -[2018-02-13T00:34:56.084] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:34:56.091] [INFO] cheese - inserting 1000 documents. first: The Rolling Stones 1965 tours and last: Owen's College, Manchester -[2018-02-13T00:34:56.103] [INFO] cheese - inserting 1000 documents. first: SS Hannington Court (1912) and last: Workplace Harassment and Productivity -[2018-02-13T00:34:56.117] [INFO] cheese - inserting 1000 documents. first: Road Accident Research Unit and last: Abdul Hakim Bukhary -[2018-02-13T00:34:56.136] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:34:56.154] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:34:56.190] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:34:56.269] [INFO] cheese - inserting 1000 documents. first: 1973-74 in English soccer and last: 1978-79 Division 1 season (Swedish ice hockey) -[2018-02-13T00:34:56.292] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:34:56.318] [INFO] cheese - inserting 1000 documents. first: File:Saawariya1.jpg and last: Charles Stewart (Texas politician) -[2018-02-13T00:34:56.371] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:56.456] [INFO] cheese - inserting 1000 documents. first: Astrometis sertulifera and last: File:Torso male.jpg -[2018-02-13T00:34:56.506] [INFO] cheese - inserting 1000 documents. first: 1980 US Open - Men's Doubles and last: 1982 IAAF World Cross Country Championships - Senior women's race -[2018-02-13T00:34:56.548] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:34:56.583] [INFO] cheese - inserting 1000 documents. first: Lousy With Sylvianbriar and last: Ab Ti-ye Mahtab -[2018-02-13T00:34:56.583] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:34:56.633] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:34:56.645] [INFO] cheese - inserting 1000 documents. first: PMODE/W and last: MIDR Cymru -[2018-02-13T00:34:56.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mikeyasadie and last: Boone Karlson -[2018-02-13T00:34:56.659] [INFO] cheese - inserting 1000 documents. first: Bács-Kiskun County and last: Epsilon Proteobacteria -[2018-02-13T00:34:56.704] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:34:56.710] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:34:56.764] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T00:34:56.807] [INFO] cheese - inserting 1000 documents. first: Reese C. De Graffenreid and last: Hits as a particle acts like a wave -[2018-02-13T00:34:56.811] [INFO] cheese - inserting 1000 documents. first: 1981-82 Rude Pravo Cup and last: 1987-88 FDGB-Pokal -[2018-02-13T00:34:56.831] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:34:56.843] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:57.012] [INFO] cheese - inserting 1000 documents. first: 1984-85 Milwaukee Bucks season and last: 1979-80 South-West Indian Ocean cyclone season -[2018-02-13T00:34:57.022] [INFO] cheese - inserting 1000 documents. first: File:Tubal pregnancy, gross pathology 01ee049 lores.jpg and last: Blue Murder (play) -[2018-02-13T00:34:57.032] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:34:57.100] [INFO] cheese - inserting 1000 documents. first: Ab Ti and last: Juan Manuel Bordaberry -[2018-02-13T00:34:57.106] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:57.157] [INFO] cheese - inserting 1000 documents. first: File:OldCustomHouse2.jpg and last: Glasgow Anniesland by-election, 2000 -[2018-02-13T00:34:57.176] [INFO] cheese - inserting 1000 documents. first: Homefront (THQ) and last: Texas Business State Highway 70-G -[2018-02-13T00:34:57.185] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:34:57.250] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:34:57.336] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:34:57.373] [INFO] cheese - inserting 1000 documents. first: Team 29 and last: Leomar Francisco Rodrigues -[2018-02-13T00:34:57.410] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:34:57.434] [INFO] cheese - inserting 1000 documents. first: Acts like a wave hits as a particle and last: 1979 student protests in Nepal -[2018-02-13T00:34:57.567] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:34:57.757] [INFO] cheese - inserting 1000 documents. first: File:For Badgeholders Only Part 1.jpg and last: Wikipedia:Version 1.0 Editorial Team/Biography (musicians) articles by quality/152 -[2018-02-13T00:34:57.764] [INFO] cheese - inserting 1000 documents. first: Star Wars: Droids and last: Avaré, São Paulo -[2018-02-13T00:34:57.783] [INFO] cheese - inserting 1000 documents. first: 1992-93 Football League Third Division and last: 1994-95 in Russian futsal -[2018-02-13T00:34:57.799] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:34:57.804] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:34:57.858] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T00:34:57.878] [INFO] cheese - inserting 1000 documents. first: Ira "Buddy" Williams and last: Sam Goldbloom -[2018-02-13T00:34:57.913] [INFO] cheese - inserting 1000 documents. first: Chatham-Kent-Essex and last: File:Erskinehill.jpg -[2018-02-13T00:34:57.939] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:34:57.953] [INFO] cheese - inserting 1000 documents. first: The Complete Pacific Jazz Joe Pass Quartet Sessions and last: Berens River First Nation -[2018-02-13T00:34:57.966] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:34:57.977] [INFO] cheese - inserting 1000 documents. first: 1994-95 Czech 2. Liga and last: Category:Louisiana elections, 1835 -[2018-02-13T00:34:57.984] [INFO] cheese - inserting 1000 documents. first: Lavonia and last: Pumpkinhead 2 -[2018-02-13T00:34:58.011] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:34:58.037] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:34:58.040] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:34:58.219] [INFO] cheese - inserting 1000 documents. first: Category:Louisiana elections, 1837 and last: Deddoman Wandārando -[2018-02-13T00:34:58.227] [INFO] cheese - inserting 1000 documents. first: Category:Geology of Maine and last: Alex Mihailovich -[2018-02-13T00:34:58.254] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:34:58.292] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:34:58.393] [INFO] cheese - inserting 1000 documents. first: ISeries QSHELL and last: Miniș River (Cigher) -[2018-02-13T00:34:58.416] [INFO] cheese - inserting 1000 documents. first: Samuel Goldbloom and last: Odo V, Count of Meaux -[2018-02-13T00:34:58.422] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:58.431] [INFO] cheese - inserting 1000 documents. first: Maryland State Highway 281 and last: 8-bit processor -[2018-02-13T00:34:58.444] [INFO] cheese - inserting 1000 documents. first: Akumajō Dorakyura and last: 1998 European Short Course Swimming Championships - Women's 50 metre freestyle -[2018-02-13T00:34:58.466] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:34:58.468] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:34:58.469] [INFO] cheese - inserting 1000 documents. first: Standard gravitational parameter and last: William George Horner -[2018-02-13T00:34:58.485] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:34:58.550] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:34:58.859] [INFO] cheese - inserting 1000 documents. first: 1997-98 UEFA Champions League group stage and last: 1998-99 Australian Figure Skating Championships -[2018-02-13T00:34:58.919] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:59.029] [INFO] cheese - inserting 1000 documents. first: Template:D1GP circuits and last: Silent Hill: Orphan -[2018-02-13T00:34:59.081] [INFO] cheese - inserting 1000 documents. first: Category:1950 in South Dakota and last: Propylacetone -[2018-02-13T00:34:59.083] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:34:59.143] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:34:59.196] [INFO] cheese - inserting 1000 documents. first: 1998 European Athletics Championships - Women's high jump and last: 2001 Wimbledon Championships - Women's Doubles Qualifying -[2018-02-13T00:34:59.232] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:34:59.239] [INFO] cheese - inserting 1000 documents. first: Anthony Harris (defensive lineman) and last: Band of Brothers (Korean TV series) -[2018-02-13T00:34:59.241] [INFO] cheese - inserting 1000 documents. first: Benoit Sixteen and last: Demon Seed (novel) -[2018-02-13T00:34:59.261] [INFO] cheese - inserting 1000 documents. first: Template:Parks in Indianapolis and last: Category:Football managers in Sri Lanka -[2018-02-13T00:34:59.293] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:34:59.304] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:34:59.355] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T00:34:59.420] [INFO] cheese - inserting 1000 documents. first: Ålgård Church and last: 1998-99 Czech Cup -[2018-02-13T00:34:59.424] [INFO] cheese - inserting 1000 documents. first: File:Johnny English movie.jpg and last: Category:Art museums and galleries in Russia -[2018-02-13T00:34:59.449] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:34:59.472] [INFO] cheese - inserting 1000 documents. first: The Fragments (sculpture) and last: Wikipedia:Articles for deletion/List of fictional restaurants -[2018-02-13T00:34:59.514] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:34:59.528] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:59.594] [INFO] cheese - inserting 1000 documents. first: Lobster cockroach and last: Appleby grammar school -[2018-02-13T00:34:59.655] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:59.698] [INFO] cheese - inserting 1000 documents. first: Briegel and last: 2004 Dutch Open - Doubles -[2018-02-13T00:34:59.702] [INFO] cheese - inserting 1000 documents. first: US military ID and last: Germinal pierre dandelin -[2018-02-13T00:34:59.721] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:34:59.745] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:34:59.754] [INFO] cheese - inserting 1000 documents. first: Roundtop, California and last: Category:Scouting and Guiding in Luxembourg -[2018-02-13T00:34:59.759] [INFO] cheese - inserting 1000 documents. first: John Frederick Nelson and last: Marguerite de La Sablière -[2018-02-13T00:34:59.804] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:59.806] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:59.909] [INFO] cheese - inserting 1000 documents. first: 2004-05 R.S.C. Anderlecht season and last: Atvi kabul -[2018-02-13T00:34:59.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hillcreststjohn.com and last: List of tropidophiid species and subspecies -[2018-02-13T00:34:59.939] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:34:59.961] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:59.986] [INFO] cheese - inserting 1000 documents. first: Category:1891 establishments in Washington, D.C. and last: File:No limit kids DVD cover.jpg -[2018-02-13T00:35:00.018] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:35:00.035] [INFO] cheese - inserting 1000 documents. first: Gerolamo cardano and last: Mexico's independence day -[2018-02-13T00:35:00.108] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:35:00.157] [INFO] cheese - inserting 1000 documents. first: 2005-07 European Challenge Trophy and last: 2007-08 AZAL PFC season -[2018-02-13T00:35:00.210] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:35:00.290] [INFO] cheese - inserting 1000 documents. first: 1798 Irish Rebellion and last: The Peculiar Exploits of Brigadier Ffellowes -[2018-02-13T00:35:00.303] [INFO] cheese - inserting 1000 documents. first: Q300 and last: Amoxipen -[2018-02-13T00:35:00.306] [INFO] cheese - inserting 1000 documents. first: USNH Beaufort and last: Sid Espinosa -[2018-02-13T00:35:00.350] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:35:00.358] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:35:00.372] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:35:00.408] [INFO] cheese - inserting 1000 documents. first: Category:Japanese women journalists and last: Anton I -[2018-02-13T00:35:00.436] [INFO] cheese - inserting 1000 documents. first: Violaines and last: Nelson Mandela Primary School -[2018-02-13T00:35:00.445] [INFO] cheese - inserting 1000 documents. first: Portal:Transnational child protection/Related portals and last: 2008-09 Cyclo-cross Superprestige -[2018-02-13T00:35:00.450] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:35:00.468] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:35:00.492] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:35:00.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Friend Society and last: Edwin J. Cohn -[2018-02-13T00:35:00.623] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:35:00.691] [INFO] cheese - inserting 1000 documents. first: List of places in Ukraine named Antonivka and last: 2009 Pekao Open - Doubles -[2018-02-13T00:35:00.715] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:35:00.732] [INFO] cheese - inserting 1000 documents. first: Newark Sunday Call and last: Category:People of the Aden Emergency -[2018-02-13T00:35:00.749] [INFO] cheese - inserting 1000 documents. first: Tshering Dendup and last: Wikipedia:Articles for deletion/PromiseLand San Marcos -[2018-02-13T00:35:00.755] [INFO] cheese - inserting 1000 documents. first: List of 1. FC Magdeburg players and last: Asian Basketball Confederation Champions Cup 1997 -[2018-02-13T00:35:00.775] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:35:00.799] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:35:00.821] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:00.863] [INFO] cheese - inserting 1000 documents. first: Neotinea maculata and last: Category:2003 in motorsport -[2018-02-13T00:35:00.903] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:35:00.912] [INFO] cheese - inserting 1000 documents. first: Amoxipenil and last: Relative error -[2018-02-13T00:35:00.948] [INFO] cheese - inserting 1000 documents. first: 2009 US Open - women's doubles and last: 2010 Fed Cup Asia/Oceania Zone Group I - Pool A -[2018-02-13T00:35:00.987] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:35:00.993] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:35:01.091] [INFO] cheese - inserting 1000 documents. first: Category:Mongolian writers and last: Alacakaya -[2018-02-13T00:35:01.149] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:35:01.176] [INFO] cheese - inserting 1000 documents. first: Straße der Megalithkultur and last: Impossible monsters -[2018-02-13T00:35:01.193] [INFO] cheese - inserting 1000 documents. first: File:Bloodlines Novel.jpg and last: Mount Corrimal -[2018-02-13T00:35:01.207] [INFO] cheese - inserting 1000 documents. first: 2010 Fed Cup Europe/Africa Zone Group III - Play-offs and last: 2010-11 in Australian association football -[2018-02-13T00:35:01.220] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:35:01.253] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:35:01.264] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:35:01.296] [INFO] cheese - inserting 1000 documents. first: Asian Basketball Confederation Champions Cup 1996 and last: Secure hypertext transfer protocol -[2018-02-13T00:35:01.324] [INFO] cheese - inserting 1000 documents. first: Category:2004 in motorsport and last: William Bleakes -[2018-02-13T00:35:01.349] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:35:01.457] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:35:01.592] [INFO] cheese - inserting 1000 documents. first: Eastern League Most Valuable Player Award and last: 2011-12 Eurocup Basketball Quarterfinals -[2018-02-13T00:35:01.618] [INFO] cheese - inserting 1000 documents. first: File:The Hold Steady - Almost Killed Me cover.jpg and last: Halloween (King Diamond single) -[2018-02-13T00:35:01.620] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:35:01.684] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:01.717] [INFO] cheese - inserting 1000 documents. first: Fastest airplane and last: Racine carrée -[2018-02-13T00:35:01.719] [INFO] cheese - inserting 1000 documents. first: Absolute error and last: Albanian Communist Party -[2018-02-13T00:35:01.764] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:35:01.796] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2011 April 17 and last: Boulogne sur mer -[2018-02-13T00:35:01.808] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:35:01.842] [INFO] cheese - inserting 1000 documents. first: Bile farms and last: Award Software Inc -[2018-02-13T00:35:01.858] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:35:01.862] [INFO] cheese - inserting 1000 documents. first: 2011-12 Farjestad BK season and last: 2011-2012 Kuwaiti protests -[2018-02-13T00:35:01.898] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:35:01.914] [INFO] cheese - inserting 1000 documents. first: Karel Schummelketel and last: PCS-1416 -[2018-02-13T00:35:01.917] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:35:01.958] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:35:02.087] [INFO] cheese - inserting 1000 documents. first: 2011-12 Slovak Extraliga season and last: 2007-08 FC Dinamo Bucuresti season -[2018-02-13T00:35:02.092] [INFO] cheese - inserting 1000 documents. first: Reginald Covill and last: Halhal District -[2018-02-13T00:35:02.107] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:35:02.120] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:35:02.174] [INFO] cheese - inserting 1000 documents. first: Vulcanian Eruption and last: Oil Beetle -[2018-02-13T00:35:02.227] [INFO] cheese - inserting 1000 documents. first: Objective Resolution and last: Category:Miki Howard songs -[2018-02-13T00:35:02.230] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:35:02.265] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:35:02.269] [INFO] cheese - inserting 1000 documents. first: File:Anti-FlagTISE.jpg and last: 2012 Tashkent Challenger - Doubles -[2018-02-13T00:35:02.292] [INFO] cheese - inserting 1000 documents. first: Communist Party of Albania and last: Bernardino de Campos -[2018-02-13T00:35:02.306] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:35:02.328] [INFO] cheese - inserting 1000 documents. first: Saint Laurent du Var and last: Papken I -[2018-02-13T00:35:02.344] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:02.348] [INFO] cheese - inserting 1000 documents. first: Strong Man's Burden and last: Polymastia aurantium -[2018-02-13T00:35:02.372] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:02.397] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:02.411] [INFO] cheese - inserting 1000 documents. first: Pennsylvania State-Brandywine Lions and last: 2013 Johan Cruijff-schaal -[2018-02-13T00:35:02.460] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:35:02.467] [INFO] cheese - inserting 1000 documents. first: Algay and last: 2011-12 Primera División de México season -[2018-02-13T00:35:02.493] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:35:02.605] [INFO] cheese - inserting 1000 documents. first: The Simpsons (season 6) and last: Purba Banglar Sarbahara Party (Maoist Bolshevik Reorganization Movement) -[2018-02-13T00:35:02.641] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:35:02.660] [INFO] cheese - inserting 1000 documents. first: Lagâri Hasan and last: Category:Serbia and Montenegro football templates -[2018-02-13T00:35:02.691] [INFO] cheese - inserting 1000 documents. first: 2012-13 Eurocup Basketball Knockout Stage and last: 2012-13 Southeastern Louisiana Lions men's basketball team -[2018-02-13T00:35:02.808] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:35:02.837] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:02.943] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Saw Binnya and last: Bekisopa mine -[2018-02-13T00:35:03.050] [INFO] cheese - inserting 1000 documents. first: Template:Cullman County, Alabama and last: Noel McNamara -[2018-02-13T00:35:03.070] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:35:03.083] [INFO] cheese - inserting 1000 documents. first: St. Psalmodius and last: File:Doug Stone - I'd Be Better Off.jpg -[2018-02-13T00:35:03.110] [INFO] cheese - inserting 1000 documents. first: Ralph O. Brewster and last: Suzukaze Mayo -[2018-02-13T00:35:03.110] [INFO] cheese - inserting 1000 documents. first: Duluth-Superior Dukes and last: 2013 Internationaux de Tennis de Vendée - Singles -[2018-02-13T00:35:03.111] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:35:03.133] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:35:03.137] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:35:03.181] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:35:03.234] [INFO] cheese - inserting 1000 documents. first: Congal Cláen and last: File:Baty2.jpg -[2018-02-13T00:35:03.274] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:35:03.333] [INFO] cheese - inserting 1000 documents. first: Category:Serbia and Montenegro sports templates and last: Edmund Bowyer (disambiguation) -[2018-02-13T00:35:03.364] [INFO] cheese - inserting 1000 documents. first: 高台家の人々 and last: Template:Galaxie 500 -[2018-02-13T00:35:03.373] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:03.385] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:35:03.494] [INFO] cheese - inserting 1000 documents. first: Climax Entertainment and last: 2003-04 PBA season -[2018-02-13T00:35:03.494] [INFO] cheese - inserting 1000 documents. first: Alain Goulem and last: Harpalus lethierryi -[2018-02-13T00:35:03.535] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:35:03.540] [INFO] cheese - inserting 1000 documents. first: Carol Baker and last: File:Sheffield Wednesday.svg -[2018-02-13T00:35:03.548] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:35:03.596] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:35:03.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Spaceflight/Style guide and last: St John's Church, Wellington -[2018-02-13T00:35:03.630] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:35:03.645] [INFO] cheese - inserting 1000 documents. first: Tamatebako and last: Nekromantik -[2018-02-13T00:35:03.700] [INFO] cheese - inserting 1000 documents. first: Brahmacarya and last: Takitimu -[2018-02-13T00:35:03.704] [INFO] cheese - inserting 1000 documents. first: Abu Al-Husayn Al-Nuri and last: File:Minarets with M.jpg -[2018-02-13T00:35:03.699] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:35:03.750] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:03.770] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:35:03.820] [INFO] cheese - inserting 1000 documents. first: Category:Wikimedia chapter user templates and last: 2013-14 Telekom S-League -[2018-02-13T00:35:03.847] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:35:03.923] [INFO] cheese - inserting 1000 documents. first: 1986 Chicago White Sox season and last: Lake Quilotoa -[2018-02-13T00:35:03.955] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:03.977] [INFO] cheese - inserting 1000 documents. first: Harpalus liobasis and last: Ba dum tss -[2018-02-13T00:35:04.016] [INFO] cheese - inserting 1000 documents. first: Junko Chodos and last: Fine (Printing) -[2018-02-13T00:35:04.028] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:35:04.030] [INFO] cheese - inserting 1000 documents. first: 2013-14 UD Almeria season and last: 2014 Coupe Banque Nationale - Singles -[2018-02-13T00:35:04.093] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:04.066] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:35:04.216] [INFO] cheese - inserting 1000 documents. first: Joe Klopfenstein and last: Tom Breiding -[2018-02-13T00:35:04.317] [INFO] cheese - inserting 1000 documents. first: Vale Of Evesham School and last: Portal:Moscow/Categories -[2018-02-13T00:35:04.337] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:35:04.398] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:35:04.420] [INFO] cheese - inserting 1000 documents. first: God Shuffled His Feet and last: Category:Archaeological sites in Libya -[2018-02-13T00:35:04.501] [INFO] cheese - inserting 1000 documents. first: 2014 FINA World Swimming Championships (25 m) - Men's 4 × 100 metre freestyle relay and last: Perungudi, Tiruchirappalli -[2018-02-13T00:35:04.510] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:35:04.513] [INFO] cheese - inserting 1000 documents. first: USS Embattle (AM-434) and last: Wikipedia:WikiProject Spam/LinkReports/karidies.com -[2018-02-13T00:35:04.591] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:35:04.630] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:35:04.694] [INFO] cheese - inserting 1000 documents. first: Lee Tae-yang and last: Nic.in -[2018-02-13T00:35:04.735] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:35:04.740] [INFO] cheese - inserting 1000 documents. first: Lev Lifshitz and last: 2005–06 Colorado Avalanche season -[2018-02-13T00:35:04.791] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:35:04.828] [INFO] cheese - inserting 1000 documents. first: 2014 UCI Cyclo-cross World Championships - Women's elite race and last: Cracklin' Bread -[2018-02-13T00:35:04.828] [INFO] cheese - inserting 1000 documents. first: Category:Education in Tuscarawas County, Ohio and last: Fly-by-light -[2018-02-13T00:35:04.854] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:35:04.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/VPHybridCAD and last: Template:VFL Cob -[2018-02-13T00:35:04.886] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:35:04.909] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:04.981] [INFO] cheese - inserting 1000 documents. first: USS Guide (MSO-447) and last: Wikipedia:Peer review/Transportation in Omaha/archive1 -[2018-02-13T00:35:05.031] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:35:05.070] [INFO] cheese - inserting 1000 documents. first: Hardin's Fort, Kentucky and last: Henry William Braid -[2018-02-13T00:35:05.082] [INFO] cheese - inserting 1000 documents. first: Los Chiles Airport and last: 2014-15 Rain or Shine Elasto Painters season -[2018-02-13T00:35:05.110] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:35:05.110] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:35:05.153] [INFO] cheese - inserting 1000 documents. first: Dave Hyatt and last: Pierre Pelot -[2018-02-13T00:35:05.207] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:35:05.289] [INFO] cheese - inserting 1000 documents. first: Paulin Sterkaj and last: Robert Moore (Pennsylvania) -[2018-02-13T00:35:05.309] [INFO] cheese - inserting 1000 documents. first: 2014-15 Navy Midshipmen men's basketball team and last: 2014-15 Southeastern Conference men's basketball season -[2018-02-13T00:35:05.309] [INFO] cheese - inserting 1000 documents. first: File:Runemagick-moonofthechaoseclipse.jpg and last: Oblates of the Benedictine Congregation of Monte Oliveto -[2018-02-13T00:35:05.323] [INFO] cheese - inserting 1000 documents. first: Clandestine stations and last: SH428 -[2018-02-13T00:35:05.332] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:05.334] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:35:05.348] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:05.380] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:35:05.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2007, Sep 25 and last: Category:Works by L. Sprague de Camp -[2018-02-13T00:35:05.521] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:35:05.562] [INFO] cheese - inserting 1000 documents. first: 2015 Argentina Open - Doubles and last: 2014-15 Serie A1 (men's water polo) -[2018-02-13T00:35:05.594] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:35:05.660] [INFO] cheese - inserting 1000 documents. first: Henry Braid and last: Category:1992–93 Australian region cyclone season -[2018-02-13T00:35:05.694] [INFO] cheese - inserting 1000 documents. first: Richard Fleischner and last: Heather Knight -[2018-02-13T00:35:05.708] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron and last: Lipoxin -[2018-02-13T00:35:05.715] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:35:05.741] [INFO] cheese - inserting 1000 documents. first: Kitchen rudder and last: Babatunde Oshinowo -[2018-02-13T00:35:05.749] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:35:05.773] [INFO] cheese - inserting 1000 documents. first: Route 428 and last: File:RobertGray.jpg -[2018-02-13T00:35:05.779] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:05.857] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:35:05.893] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:35:05.923] [INFO] cheese - inserting 1000 documents. first: 2015 Istanbul Open - Singles and last: 2015-16 Charlotte Checkers season -[2018-02-13T00:35:05.940] [INFO] cheese - inserting 1000 documents. first: Brădeanu and last: SR 240 -[2018-02-13T00:35:05.961] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:35:06.000] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:35:06.185] [INFO] cheese - inserting 1000 documents. first: The Prophecy (film series) and last: Quiet Achiever -[2018-02-13T00:35:06.185] [INFO] cheese - inserting 1000 documents. first: Sanjivani (singer) and last: Arturo González -[2018-02-13T00:35:06.213] [INFO] cheese - inserting 1000 documents. first: Lehmann Aviation LA300 and last: Probation (1932 film) -[2018-02-13T00:35:06.214] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:35:06.242] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:06.270] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:35:06.367] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blemmyes and last: Pfäfers Abbey -[2018-02-13T00:35:06.370] [INFO] cheese - inserting 1000 documents. first: Gene Rockwell and last: List of number-one albums in 2005 (New Zealand) -[2018-02-13T00:35:06.415] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:35:06.418] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:35:06.432] [INFO] cheese - inserting 1000 documents. first: SH 240 and last: Latvian People's front -[2018-02-13T00:35:06.469] [INFO] cheese - inserting 1000 documents. first: Red Nightmare and last: Cuvette Department -[2018-02-13T00:35:06.492] [INFO] cheese - inserting 1000 documents. first: 2015-16 Israel State Cup and last: You Made Me Want to Be a Saint -[2018-02-13T00:35:06.507] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:35:06.540] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:35:06.559] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:35:06.653] [INFO] cheese - inserting 1000 documents. first: File:LWNDWY single cover.jpg and last: Rio Nido, CA -[2018-02-13T00:35:06.702] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:06.712] [INFO] cheese - inserting 1000 documents. first: Category:Deaths by car bomb in Italy and last: Skirt, Hirari -[2018-02-13T00:35:06.751] [INFO] cheese - inserting 1000 documents. first: Hoodie Weather and last: Chen Chi-nan -[2018-02-13T00:35:06.771] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:35:06.780] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:06.836] [INFO] cheese - inserting 1000 documents. first: Seybouse and last: Ferdinand Karsch-Haack -[2018-02-13T00:35:06.879] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:35:06.899] [INFO] cheese - inserting 1000 documents. first: Penha (district of São Paulo) and last: Catrina Le-May Doan -[2018-02-13T00:35:06.960] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:35:06.977] [INFO] cheese - inserting 1000 documents. first: 2015 IAAF World Relays - Women's 4 × 200 metres relay and last: 2015-16 Pittsburgh Panthers men's basketball team -[2018-02-13T00:35:06.997] [INFO] cheese - inserting 1000 documents. first: Category:Classical mystics and last: Mad Money (film) -[2018-02-13T00:35:07.049] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:35:07.072] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:35:07.208] [INFO] cheese - inserting 1000 documents. first: Shaarey Zedek Synagogue (Winnipeg) and last: Wikipedia:Articles for deletion/Kamigawa -[2018-02-13T00:35:07.211] [INFO] cheese - inserting 1000 documents. first: Category:Corsica region articles needing translation from French Wikipedia and last: Tuyen Quang -[2018-02-13T00:35:07.219] [INFO] cheese - inserting 1000 documents. first: Tokyo Metro Nanboku Line and last: David B. Pall -[2018-02-13T00:35:07.286] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:07.303] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:35:07.342] [INFO] cheese - inserting 1000 documents. first: 2015-16 Evansville Purple Aces women's basketball team and last: Athletics at the 1952 Summer Olympics - Men's 4 × 400 metres relay -[2018-02-13T00:35:07.353] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:35:07.402] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:35:07.503] [INFO] cheese - inserting 1000 documents. first: 1950–51 Kentucky Wildcats men's basketball team and last: Context change potential -[2018-02-13T00:35:07.547] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:35:07.566] [INFO] cheese - inserting 1000 documents. first: Ể and last: Accounting System -[2018-02-13T00:35:07.580] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Pulaski Skyway/archive1 and last: Silvije Čavlina -[2018-02-13T00:35:07.607] [INFO] cheese - inserting 1000 documents. first: All For Latvia! - For Fatherland and Freedom/LNNK and last: The Serpent's Shadow (Lackey) -[2018-02-13T00:35:07.625] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:35:07.627] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:35:07.629] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:35:07.748] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Addleshaw Tower and last: La Espid Seyyed Fakhr -[2018-02-13T00:35:07.782] [INFO] cheese - inserting 1000 documents. first: The Sinner (Gerritsen) and last: All-Ireland Senior Club Football Championship 2010-11 -[2018-02-13T00:35:07.782] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:35:07.803] [INFO] cheese - batch complete in: 0.176 secs -[2018-02-13T00:35:07.829] [INFO] cheese - inserting 1000 documents. first: Category:Reportedly haunted locations in Italy and last: Dream girl -[2018-02-13T00:35:07.875] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:07.880] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Boardex and last: SS Francis J. O'Gara -[2018-02-13T00:35:07.933] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:07.944] [INFO] cheese - inserting 1000 documents. first: R. Syme and last: Faílde -[2018-02-13T00:35:07.947] [INFO] cheese - inserting 1000 documents. first: Tokyo International School and last: Kletkamp -[2018-02-13T00:35:07.985] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:35:07.991] [INFO] cheese - inserting 1000 documents. first: Homm and last: Lopid people -[2018-02-13T00:35:07.997] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:35:08.019] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2004 Summer Paralympics - Men's 800 metres T54 and last: Athletics at the 2013 Southeast Asian Games - Men's 1500 metres -[2018-02-13T00:35:08.040] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:35:08.047] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:35:08.121] [INFO] cheese - inserting 1000 documents. first: Staphylococcus pseudintermedius and last: Islas de Santa Fe National Park -[2018-02-13T00:35:08.153] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:35:08.266] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2013 Southeast Asian Games - Women's javelin throw and last: Category:Template space -[2018-02-13T00:35:08.279] [INFO] cheese - inserting 1000 documents. first: Portal:Latin music/Did you know?/20 and last: Brian Hanley -[2018-02-13T00:35:08.282] [INFO] cheese - inserting 1000 documents. first: Category:Theatre in Florida and last: Selent-Schlesen -[2018-02-13T00:35:08.286] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:35:08.304] [INFO] cheese - inserting 1000 documents. first: Schubert octet and last: Freedom4 Communications -[2018-02-13T00:35:08.318] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:35:08.323] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:08.372] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:08.413] [INFO] cheese - inserting 1000 documents. first: The Dakotas (TV Series) and last: Sullivan South High School (Tennessee) -[2018-02-13T00:35:08.460] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:08.519] [INFO] cheese - inserting 1000 documents. first: Category:Explosions in Saudi Arabia and last: William D. Dickey -[2018-02-13T00:35:08.545] [INFO] cheese - inserting 1000 documents. first: Balding-Nichols distribution and last: Template:Specific-section -[2018-02-13T00:35:08.566] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:35:08.593] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:35:08.641] [INFO] cheese - inserting 1000 documents. first: Aysgarth Falls and last: List of Italo-Dalmatian languages -[2018-02-13T00:35:08.761] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:08.890] [INFO] cheese - inserting 1000 documents. first: Eugenio Cajés and last: Wikipedia:Version 1.0 Editorial Team/Amphibian and reptile articles by quality/1 -[2018-02-13T00:35:08.909] [INFO] cheese - inserting 1000 documents. first: Bhairon Singh Shekhawat ministry (1977-1980) and last: Brookland - CUA -[2018-02-13T00:35:08.932] [INFO] cheese - inserting 1000 documents. first: Martina franca and last: Wikipedia:DELPRO -[2018-02-13T00:35:08.934] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:35:08.939] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:35:08.950] [INFO] cheese - inserting 1000 documents. first: RACS and last: Sangiran Early Man Site -[2018-02-13T00:35:08.969] [INFO] cheese - inserting 1000 documents. first: M. S. Kariapper and last: Gotvand Dam -[2018-02-13T00:35:08.972] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:35:09.010] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:35:09.030] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:35:09.037] [INFO] cheese - inserting 1000 documents. first: Augusta Anderson and last: Vung Liem District -[2018-02-13T00:35:09.135] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:35:09.201] [INFO] cheese - inserting 1000 documents. first: Broadway-City Hall station and last: Palo Verde School -[2018-02-13T00:35:09.220] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:35:09.307] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Amphibian and reptile articles by quality/2 and last: File:Flawless (go to the city) Cover.jpg -[2018-02-13T00:35:09.335] [INFO] cheese - inserting 1000 documents. first: List of Southern Romance languages and last: Category:1710s deaths -[2018-02-13T00:35:09.343] [INFO] cheese - inserting 1000 documents. first: Parc Municipa and last: Big River (California) -[2018-02-13T00:35:09.352] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:35:09.393] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:09.395] [INFO] cheese - inserting 1000 documents. first: List of Borgia popes and last: John Hardin McHenry -[2018-02-13T00:35:09.402] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:35:09.429] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Hjiooo/Archive and last: The fashion show -[2018-02-13T00:35:09.441] [INFO] cheese - inserting 1000 documents. first: Boston-Worcester-Providence combined statistical area and last: Columbus - West Point Combined Statistical Area -[2018-02-13T00:35:09.448] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:09.471] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:35:09.481] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:09.529] [INFO] cheese - inserting 1000 documents. first: Davor Ivo Stier and last: Warriors Orochi 3 Ultimate -[2018-02-13T00:35:09.583] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:09.719] [INFO] cheese - inserting 1000 documents. first: Communists in the United States Labor Movement (1937-50) and last: Empire of Alexander the Great -[2018-02-13T00:35:09.728] [INFO] cheese - inserting 1000 documents. first: Suzanne Rayappan and last: North West Region Waste Management Group -[2018-02-13T00:35:09.761] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:35:09.763] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:35:09.764] [INFO] cheese - inserting 1000 documents. first: Gerbillus andersoni and last: Fourth Light Armored Reconnaissance Battalion -[2018-02-13T00:35:09.807] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:35:09.810] [INFO] cheese - inserting 1000 documents. first: Karina Aznavourian and last: Yonōzu, Oita -[2018-02-13T00:35:09.824] [INFO] cheese - inserting 1000 documents. first: Henry Davis McHenry and last: Paul C. Paquet -[2018-02-13T00:35:09.882] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:35:09.931] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:35:10.018] [INFO] cheese - inserting 1000 documents. first: Jennifer Gillis and last: X6i -[2018-02-13T00:35:10.074] [INFO] cheese - inserting 1000 documents. first: 210182 Mazzini and last: Cycling at the 1976 Summer Olympics - Men's track time trial -[2018-02-13T00:35:10.097] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:35:10.121] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:35:10.213] [INFO] cheese - inserting 1000 documents. first: Category:1720s deaths and last: Edgar Ende -[2018-02-13T00:35:10.233] [INFO] cheese - inserting 1000 documents. first: Aeroflot Bonus and last: Gwyneth Cravens -[2018-02-13T00:35:10.272] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:35:10.268] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:35:10.333] [INFO] cheese - inserting 1000 documents. first: Diphu railway station and last: English National League (1981-82) -[2018-02-13T00:35:10.338] [INFO] cheese - inserting 1000 documents. first: Tatekoshi Station and last: File:Caroline-murmurs.jpg -[2018-02-13T00:35:10.348] [INFO] cheese - inserting 1000 documents. first: Thrash rap and last: Martin County Courthouse -[2018-02-13T00:35:10.352] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:35:10.358] [INFO] cheese - inserting 1000 documents. first: Earl I. West and last: Brown-spotted blenny -[2018-02-13T00:35:10.399] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:35:10.402] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:10.412] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:35:10.462] [INFO] cheese - inserting 1000 documents. first: Paul Karl Stumph and last: File:Brad columbus.jpeg -[2018-02-13T00:35:10.503] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:35:10.582] [INFO] cheese - inserting 1000 documents. first: Office of the First Minister and last: Pirate code of the Brethren -[2018-02-13T00:35:10.583] [INFO] cheese - inserting 1000 documents. first: England national football team results - unofficial matches and last: Esteghlal-Sepahan rivalry -[2018-02-13T00:35:10.612] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:35:10.614] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:35:10.744] [INFO] cheese - inserting 1000 documents. first: Brown-Spotted Blenny and last: Catalan sheepdog -[2018-02-13T00:35:10.782] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:35:10.792] [INFO] cheese - inserting 1000 documents. first: The Nutshell Studies of Unexpected Death and last: Wikipedia:CLANS -[2018-02-13T00:35:10.803] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 2002 Asian Games - Team eventing and last: First campaign in the Goguryeo-Tang War -[2018-02-13T00:35:10.838] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:35:10.844] [INFO] cheese - inserting 1000 documents. first: Bethlehem Chapel and last: Wikipedia:Featured article candidates/Ayn Rand/archive1 -[2018-02-13T00:35:10.866] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:35:10.876] [INFO] cheese - inserting 1000 documents. first: Canadian Criminal Code and last: Steinrode -[2018-02-13T00:35:10.910] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:35:10.927] [INFO] cheese - inserting 1000 documents. first: Greatest Video Game Music and last: John Lindsay, Lord Menmuir -[2018-02-13T00:35:10.933] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:35:10.982] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kalonga Chaambwa and last: General Betray Us Controversy -[2018-02-13T00:35:10.990] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:35:11.032] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:11.091] [INFO] cheese - inserting 1000 documents. first: Fencing at the 2015 Pan American Games - Men's foil and last: Football at the 2015 All-Africa Games - Women's tournament -[2018-02-13T00:35:11.114] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:35:11.206] [INFO] cheese - inserting 1000 documents. first: Trevor Ó Clochartaigh and last: Category:1915 in Uruguay -[2018-02-13T00:35:11.306] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:35:11.322] [INFO] cheese - inserting 1000 documents. first: Template:Scottish Clan and last: Serra de Tramuntana-Costa Nord -[2018-02-13T00:35:11.421] [INFO] cheese - inserting 1000 documents. first: Category:Radial engines and last: File:GFR American.jpg -[2018-02-13T00:35:11.448] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:35:11.454] [INFO] cheese - inserting 1000 documents. first: Lada 112 and last: Ο Boötis -[2018-02-13T00:35:11.555] [INFO] cheese - inserting 1000 documents. first: We'll Keep a Welcome (song) and last: Football at the 1998 Asian Games - Women -[2018-02-13T00:35:11.574] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:35:11.575] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:35:11.614] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:35:11.707] [INFO] cheese - inserting 1000 documents. first: Eureka Stockade (miniseries) and last: List of ECAC Hockey Rookie of the Year -[2018-02-13T00:35:11.764] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:35:11.822] [INFO] cheese - inserting 1000 documents. first: Stöckey and last: Ferraz de Vasconcelos -[2018-02-13T00:35:11.867] [INFO] cheese - inserting 1000 documents. first: Fenerbahçe Women Euroleague 2012-13 and last: History of cricket (1726-1740) -[2018-02-13T00:35:11.872] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:35:11.878] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in Uruguay and last: Eraserheads: The Reunion Concert (film) -[2018-02-13T00:35:11.890] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:35:11.947] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:35:11.955] [INFO] cheese - inserting 1000 documents. first: 1997 Eliteserien and last: File:Battle of Long Island Map.jpg -[2018-02-13T00:35:11.967] [INFO] cheese - inserting 1000 documents. first: Expert Opinion on Drug Metabolism & Toxicology and last: Antarna -[2018-02-13T00:35:11.993] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:12.014] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:35:12.123] [INFO] cheese - inserting 1000 documents. first: Δ Boötis and last: M-6 (Michigan) -[2018-02-13T00:35:12.127] [INFO] cheese - inserting 1000 documents. first: Jacques Aubert (entomologist) and last: Howard-Odmin-Sherman Farmstead -[2018-02-13T00:35:12.157] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:35:12.183] [INFO] cheese - inserting 1000 documents. first: Eulalia (Sister) Bourne and last: Partido Progresista de Coahuila -[2018-02-13T00:35:12.190] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:35:12.280] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:35:12.377] [INFO] cheese - inserting 1000 documents. first: Kevin Lotscher and last: Mongol–Langam languages -[2018-02-13T00:35:12.381] [INFO] cheese - inserting 1000 documents. first: Boyacá Chicó F.C and last: B. K. Follett -[2018-02-13T00:35:12.388] [INFO] cheese - inserting 1000 documents. first: Eleanor, Princess of Wales and last: Wikipedia:WikiProject Spam/LinkReports/hansburg.narod -[2018-02-13T00:35:12.418] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:35:12.422] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:35:12.428] [INFO] cheese - inserting 1000 documents. first: Iceland-Serbia and Montenegro relations and last: Honduras national football team results - 2002 -[2018-02-13T00:35:12.435] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:35:12.476] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:35:12.497] [INFO] cheese - inserting 1000 documents. first: Republican Leader of the United States Senate and last: Mr Potato Head -[2018-02-13T00:35:12.561] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:12.579] [INFO] cheese - inserting 1000 documents. first: Grapefruit drug interactions and last: Baha'i Faith in Tunisia -[2018-02-13T00:35:12.609] [INFO] cheese - inserting 1000 documents. first: M-6 (MI) and last: St Xavier's College -[2018-02-13T00:35:12.622] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:35:12.661] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:35:12.758] [INFO] cheese - inserting 1000 documents. first: Japan-Portugal relations and last: June 16-18, 2014 tornado outbreak -[2018-02-13T00:35:12.794] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:35:12.811] [INFO] cheese - inserting 1000 documents. first: Kaisariyeh and last: Prince albert in a can -[2018-02-13T00:35:12.816] [INFO] cheese - inserting 1000 documents. first: Template:User Corei3 and last: Kirihata-ji (Awa) -[2018-02-13T00:35:12.829] [INFO] cheese - inserting 1000 documents. first: IIHF Men's World Ranking and last: Ustazade Silvestre de Sacy -[2018-02-13T00:35:12.849] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:12.910] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:35:12.916] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:13.063] [INFO] cheese - inserting 1000 documents. first: SS City of Manchester and last: File:Mass Effect 2 Kasumi Gameplay.jpg -[2018-02-13T00:35:13.109] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:35:13.177] [INFO] cheese - inserting 1000 documents. first: Template:Fs team Snezhana Lyubertsy (women) and last: Tuyam Island -[2018-02-13T00:35:13.218] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:35:13.261] [INFO] cheese - inserting 1000 documents. first: Hank Hannegraaf and last: James Davidson (Ottawa mayor) -[2018-02-13T00:35:13.303] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:35:13.358] [INFO] cheese - inserting 1000 documents. first: Qazansu river and last: File:Captain Commando Screenshot.png -[2018-02-13T00:35:13.375] [INFO] cheese - inserting 1000 documents. first: File:Moravian1.jpeg and last: IFPI -[2018-02-13T00:35:13.410] [INFO] cheese - inserting 1000 documents. first: Portal:Mathematics/Featured picture template and last: Elena Ferrante -[2018-02-13T00:35:13.417] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:13.419] [INFO] cheese - inserting 1000 documents. first: Leonor Rivera-Kipping and last: St. Ursula's Church, Kouvola -[2018-02-13T00:35:13.433] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:35:13.447] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:35:13.455] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:35:13.504] [INFO] cheese - inserting 1000 documents. first: Oakland Point and last: St Matthews Anglican Church, West Pymble -[2018-02-13T00:35:13.512] [INFO] cheese - inserting 1000 documents. first: File:ST Tholian.jpg and last: K.G. Murray Publishing Company -[2018-02-13T00:35:13.547] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:35:13.556] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:35:13.670] [INFO] cheese - inserting 1000 documents. first: Chigwell (UK Parliament constituency) and last: Outstation movement -[2018-02-13T00:35:13.695] [INFO] cheese - inserting 1000 documents. first: Olan Omiping and last: List of compositions by Franz Liszt (S.1-350) -[2018-02-13T00:35:13.713] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:35:13.718] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:35:13.748] [INFO] cheese - inserting 1000 documents. first: European Parliament elections, 2009 and last: Wikipedia:WikiProject Spam/LinkReports/panamaeconomyinsight.com.pa -[2018-02-13T00:35:13.789] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:35:13.845] [INFO] cheese - inserting 1000 documents. first: J2K-Codec and last: Love's Small Song -[2018-02-13T00:35:13.889] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:35:13.892] [INFO] cheese - inserting 1000 documents. first: Laurent LeClaire and last: Symphony No. 3 (Raff) -[2018-02-13T00:35:13.917] [INFO] cheese - inserting 1000 documents. first: List of Singaporean electoral divisions (1988-91) and last: List of members of the parliament of East Timor, 2001-07 -[2018-02-13T00:35:13.941] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:35:13.943] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:35:13.979] [INFO] cheese - inserting 1000 documents. first: Lesser Seed Finch and last: Birkenhead High School Academy -[2018-02-13T00:35:14.039] [INFO] cheese - inserting 1000 documents. first: Scapular of Our Lady of Mount Carmel and last: Haripur district -[2018-02-13T00:35:14.044] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:14.109] [INFO] cheese - inserting 1000 documents. first: White Pyjamas (Franciscus Henri album) and last: Vali von der osten -[2018-02-13T00:35:14.113] [INFO] cheese - inserting 1000 documents. first: Honey to the Bee and last: Love and Other Planets -[2018-02-13T00:35:14.144] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:35:14.158] [INFO] cheese - inserting 1000 documents. first: Draft:List of companies in Greater Richmond, Virginia and last: List of violent incidents in the Israeli-Palestinian conflict, 2001 -[2018-02-13T00:35:14.196] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:35:14.199] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:35:14.287] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:35:14.423] [INFO] cheese - inserting 1000 documents. first: Coleophora galatellae and last: Fly Me Europe -[2018-02-13T00:35:14.442] [INFO] cheese - inserting 1000 documents. first: À La Poursuite Du Bonheur and last: Virginian Piedmont -[2018-02-13T00:35:14.533] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:35:14.567] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:35:14.678] [INFO] cheese - inserting 1000 documents. first: Little Italy-University Circle (RTA Rapid Transit station) and last: 2016 GOP primary -[2018-02-13T00:35:14.701] [INFO] cheese - inserting 1000 documents. first: Sanda Dubravcic and last: Big dynorphin -[2018-02-13T00:35:14.722] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:35:14.740] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:35:14.795] [INFO] cheese - inserting 1000 documents. first: Vali Von Der Osten and last: 1987 NCAA Division I-AA football season -[2018-02-13T00:35:14.845] [INFO] cheese - inserting 1000 documents. first: Associação de Escuteros de Angola and last: Rodange -[2018-02-13T00:35:14.846] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:35:14.886] [INFO] cheese - inserting 1000 documents. first: Siege of Sebastopol and last: Muskets -[2018-02-13T00:35:14.896] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:35:14.957] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:35:15.040] [INFO] cheese - inserting 1000 documents. first: File:Rayleigh scattering in sulfur suspension.jpg and last: Meanings of minor planet names: 432001-433000 -[2018-02-13T00:35:15.070] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:35:15.072] [INFO] cheese - inserting 1000 documents. first: Abdulfatah Ahmed and last: Lists of Juice -[2018-02-13T00:35:15.084] [INFO] cheese - inserting 1000 documents. first: Patrick Henry Mall and last: Antiques roadshow -[2018-02-13T00:35:15.084] [INFO] cheese - inserting 1000 documents. first: Poshteh Chah and last: Sir Walter Pringle of Lochton, Lord Newhall -[2018-02-13T00:35:15.107] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:15.121] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:35:15.150] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:35:15.170] [INFO] cheese - inserting 1000 documents. first: Bogdanović and last: David Chutter -[2018-02-13T00:35:15.207] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:35:15.256] [INFO] cheese - inserting 1000 documents. first: James Hernandez and last: File:Interior Spirit of Ontario.JPG -[2018-02-13T00:35:15.265] [INFO] cheese - inserting 1000 documents. first: Michigan-Chicago football rivalry and last: Low self-discharge nickel-metal hydride battery -[2018-02-13T00:35:15.289] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:35:15.299] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:35:15.412] [INFO] cheese - inserting 1000 documents. first: Franca BC and last: John R. Conniff -[2018-02-13T00:35:15.445] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:35:15.453] [INFO] cheese - inserting 1000 documents. first: 1993 PBA Governors' Cup and last: Whitemare -[2018-02-13T00:35:15.459] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 385001-386000 and last: Osnabrück-Brackwede railway -[2018-02-13T00:35:15.489] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:35:15.523] [INFO] cheese - inserting 1000 documents. first: Intimate Apparel (play) and last: Category:Islam in Colombia -[2018-02-13T00:35:15.533] [INFO] cheese - inserting 1000 documents. first: Network analysis and last: Peter Chen -[2018-02-13T00:35:15.546] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:15.583] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:35:15.637] [INFO] cheese - inserting 1000 documents. first: H I and last: Asbestos glove -[2018-02-13T00:35:15.639] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:35:15.649] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures on U.S. Route 66 and last: Category:1977 in aquatics -[2018-02-13T00:35:15.685] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:15.692] [INFO] cheese - inserting 1000 documents. first: Orient Point-New London Ferry and last: Ryan (airline) -[2018-02-13T00:35:15.709] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:35:15.739] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:35:15.868] [INFO] cheese - inserting 1000 documents. first: Template:User Part Time Resident-Belfast and last: Category:Club Athletico Paulistano basketball players -[2018-02-13T00:35:15.962] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:35:16.087] [INFO] cheese - inserting 1000 documents. first: S7 (airline) and last: Murkoff -[2018-02-13T00:35:16.112] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:35:16.121] [INFO] cheese - inserting 1000 documents. first: Activation key and last: KNUT GLOMSAAS -[2018-02-13T00:35:16.154] [INFO] cheese - inserting 1000 documents. first: Lobo Stadium and last: Template:You're welcome/doc -[2018-02-13T00:35:16.182] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:35:16.189] [INFO] cheese - inserting 1000 documents. first: File:TheyGotAway.jpg and last: Chestnut-bellied Helmet-shrike -[2018-02-13T00:35:16.224] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:35:16.247] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:16.256] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/Wavecut platform and last: Los Angeles Pacific College -[2018-02-13T00:35:16.338] [INFO] cheese - inserting 1000 documents. first: PATH (New Jersey-New York) and last: Revolutionary situation in Russia 1859-1861 -[2018-02-13T00:35:16.340] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:35:16.344] [INFO] cheese - inserting 1000 documents. first: Club Athletico Paulistano basketball and last: Wild Weekend -[2018-02-13T00:35:16.351] [INFO] cheese - inserting 1000 documents. first: Faustino Asprilla and last: Cellular pathology -[2018-02-13T00:35:16.376] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:35:16.414] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:35:16.432] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:35:16.601] [INFO] cheese - inserting 1000 documents. first: La Florida, Santiago Province and last: Devilish Presley -[2018-02-13T00:35:16.619] [INFO] cheese - inserting 1000 documents. first: Resistance movements in partitioned Poland (1795-1918) and last: Category:Films directed by Roger Richebé -[2018-02-13T00:35:16.658] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:35:16.658] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:16.676] [INFO] cheese - inserting 1000 documents. first: Template:Coahoma County, Mississippi and last: Portland Metropolitan Area -[2018-02-13T00:35:16.699] [INFO] cheese - inserting 1000 documents. first: 1974 Asian Games medal table and last: Over/under cable wrapping -[2018-02-13T00:35:16.714] [INFO] cheese - inserting 1000 documents. first: USS Seattle (ACR-11) and last: Canon S1 -[2018-02-13T00:35:16.725] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:35:16.760] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:16.788] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:16.916] [INFO] cheese - inserting 1000 documents. first: International Society of New Testament Studies and last: Mecyclothorax ovalipennis -[2018-02-13T00:35:16.926] [INFO] cheese - inserting 1000 documents. first: Louise Marwood and last: Segona Divisio 2006-07 -[2018-02-13T00:35:16.954] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:35:16.973] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:35:17.039] [INFO] cheese - inserting 1000 documents. first: Jean-Gilles du Coëtlosquet and last: Okahno -[2018-02-13T00:35:17.044] [INFO] cheese - inserting 1000 documents. first: Canton of Baden and last: Category:Lists of English phrases -[2018-02-13T00:35:17.097] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:17.209] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:35:17.318] [INFO] cheese - inserting 1000 documents. first: File:DJSnakeMiddle.jpg and last: Shooting at the 2015 European Games - Women's skeet -[2018-02-13T00:35:17.323] [INFO] cheese - inserting 1000 documents. first: Thomas de Vaus and last: Boeing 787-10 -[2018-02-13T00:35:17.347] [INFO] cheese - inserting 1000 documents. first: Template:Mana Party/meta/color and last: Ph. Eur. -[2018-02-13T00:35:17.348] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:35:17.384] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:35:17.424] [INFO] cheese - inserting 1000 documents. first: Minami-Ibaraki Station and last: Drakkar Entertainment -[2018-02-13T00:35:17.448] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:35:17.477] [INFO] cheese - inserting 1000 documents. first: Mecyclothorax gourvesioides and last: Policy & Internet -[2018-02-13T00:35:17.489] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:35:17.540] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:35:17.599] [INFO] cheese - inserting 1000 documents. first: Short track speed skating at the 2007 Asian Winter Games - Men's 1500 metres and last: Portosystemic anastomosis -[2018-02-13T00:35:17.634] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:35:17.663] [INFO] cheese - inserting 1000 documents. first: Route 390 (Maryland) and last: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/354 -[2018-02-13T00:35:17.713] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:35:17.801] [INFO] cheese - inserting 1000 documents. first: Speed skating at the 1968 Winter Olympics - Men's 5000 metres and last: Shooting at the 2002 Asian Games - Men's 25 metre rapid fire pistol -[2018-02-13T00:35:17.821] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:35:17.832] [INFO] cheese - inserting 1000 documents. first: USS Lycoming and last: B.A.C -[2018-02-13T00:35:17.888] [INFO] cheese - inserting 1000 documents. first: 50 Number Ones and last: Federal Reserve Bank Building (Boston) -[2018-02-13T00:35:17.888] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:35:17.894] [INFO] cheese - inserting 1000 documents. first: Abacetus brevicollis and last: File:StainsFeltAlbum.jpg -[2018-02-13T00:35:17.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Emmanuel Morin and last: Cracking India -[2018-02-13T00:35:17.947] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:35:17.972] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:17.977] [INFO] cheese - inserting 1000 documents. first: Portal:U.S. Roads/Did you know/May 2011 and last: Wikipedia:Articles for deletion/Isabelle leon -[2018-02-13T00:35:18.034] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:35:18.062] [INFO] cheese - inserting 1000 documents. first: Sarrià (Barcelona-Vallès Line) and last: Gonionota praeclivis -[2018-02-13T00:35:18.072] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:35:18.092] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:35:18.127] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/355 and last: Richard Barrington -[2018-02-13T00:35:18.168] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:18.282] [INFO] cheese - inserting 1000 documents. first: Mitch Thorp and last: Template:Mystery-film-stub -[2018-02-13T00:35:18.306] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2012 Summer Olympics - Men's 4 × 200 metre freestyle relay and last: Swimming at the 2015 World Aquatics Championships - Men's 200 metre freestyle -[2018-02-13T00:35:18.331] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:35:18.341] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:35:18.441] [INFO] cheese - inserting 1000 documents. first: Huron College and last: Category:Pakistani non-fiction writers -[2018-02-13T00:35:18.494] [INFO] cheese - inserting 1000 documents. first: Bunny Johnson and last: Sherrie Sprenger -[2018-02-13T00:35:18.494] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:18.510] [INFO] cheese - inserting 1000 documents. first: Stade St. Leonard and last: Impuza Mugambi -[2018-02-13T00:35:18.551] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:35:18.556] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:35:18.560] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2015 World Aquatics Championships - Women's 4 × 100 metre freestyle relay and last: Prussian invasion of Holland -[2018-02-13T00:35:18.596] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:35:18.609] [INFO] cheese - inserting 1000 documents. first: List of Métis settlements in Alberta and last: E'Thembeni -[2018-02-13T00:35:18.667] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:35:18.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Funeral Orchestra and last: Brookville Equipment Corporation -[2018-02-13T00:35:18.733] [INFO] cheese - inserting 1000 documents. first: Category:Icelandic sopranos and last: Massanes, Gard -[2018-02-13T00:35:18.763] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:35:18.812] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:18.912] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2014 Summer Youth Olympics - Girls' doubles and last: Toyota concept vehicles, 2010-19 -[2018-02-13T00:35:18.945] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:35:18.975] [INFO] cheese - inserting 1000 documents. first: Comprehensive Income Policy Agreement and last: File:America's Next Great Restaurant (emblem).png -[2018-02-13T00:35:19.019] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:35:19.069] [INFO] cheese - inserting 1000 documents. first: RW van Bemmelen and last: Wikipedia:Miscellany for deletion/User:Thodin/claims -[2018-02-13T00:35:19.081] [INFO] cheese - inserting 1000 documents. first: Rockford Township, Floyd County, Iowa and last: Colorado River Floods of 1983 -[2018-02-13T00:35:19.123] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:35:19.128] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:35:19.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dark Tichondrias/Userboxes/Receive Anal Sex (2nd nomination) and last: Tohru Nogami -[2018-02-13T00:35:19.178] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:35:19.200] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Florida, 1857 and last: File:Ram Lal.jpeg -[2018-02-13T00:35:19.240] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:35:19.322] [INFO] cheese - inserting 1000 documents. first: Marc Béziat and last: Athar Sohaib -[2018-02-13T00:35:19.352] [INFO] cheese - inserting 1000 documents. first: Asura habrotis and last: General Blood -[2018-02-13T00:35:19.358] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:35:19.375] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of innovative inventions and last: Max Lieberman -[2018-02-13T00:35:19.413] [INFO] cheese - inserting 1000 documents. first: United states sales tax and last: The Art Institute of California - Inland Empire -[2018-02-13T00:35:19.415] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:35:19.444] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:19.476] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:35:19.479] [INFO] cheese - inserting 1000 documents. first: Uniforms of the Luftwaffe (1935-1945) and last: The Divergent Series: Insurgent - Original Motion Picture Soundtrack -[2018-02-13T00:35:19.503] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:35:19.522] [INFO] cheese - inserting 1000 documents. first: Nina burleigh and last: Wikipedia:WikiProject Spam/LinkReports/saturdaychurch.org -[2018-02-13T00:35:19.578] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:35:19.618] [INFO] cheese - inserting 1000 documents. first: BASToF Syndrome and last: Tobias Delius -[2018-02-13T00:35:19.666] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:19.710] [INFO] cheese - inserting 1000 documents. first: PulseAsia Inc and last: Wrestling at the 1928 Summer Olympics - Men's Greco-Roman bantamweight -[2018-02-13T00:35:19.733] [INFO] cheese - inserting 1000 documents. first: Franciscan Action Network and last: Centruroides ornatus -[2018-02-13T00:35:19.735] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:35:19.751] [INFO] cheese - inserting 1000 documents. first: Don Gustavson and last: Miu-Khumi -[2018-02-13T00:35:19.777] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:35:19.819] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:35:19.899] [INFO] cheese - inserting 1000 documents. first: Robert-Jean de Coigny and last: Ignition (album) -[2018-02-13T00:35:19.968] [INFO] cheese - inserting 1000 documents. first: Shūkichi Tsujimura and last: File:Innersydneyrail.jpg -[2018-02-13T00:35:19.986] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:35:20.014] [INFO] cheese - inserting 1000 documents. first: Women in warfare and the military (1900-1945) and last: Eremophila spuria -[2018-02-13T00:35:20.055] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:35:20.092] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:35:20.124] [INFO] cheese - inserting 1000 documents. first: Template:Pantheon of Dragonlance and last: On the Sun -[2018-02-13T00:35:20.148] [INFO] cheese - inserting 1000 documents. first: TheFacebook and last: Cascading Stylesheets -[2018-02-13T00:35:20.200] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:20.256] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:35:20.298] [INFO] cheese - inserting 1000 documents. first: Template:Extinct breeds of dog and last: File:Little Red - Midnight Remember.jpg -[2018-02-13T00:35:20.370] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:35:20.426] [INFO] cheese - inserting 1000 documents. first: Sardehat-e Ja'far and last: Category:600 mm gauge railways in Poland -[2018-02-13T00:35:20.469] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:35:20.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/bahamasfinancialservices.com and last: Wikipedia:Version 1.0 Editorial Team/Neuroscience articles by quality statistics -[2018-02-13T00:35:20.516] [INFO] cheese - inserting 1000 documents. first: Zuiko Digital ED 14-54mm f/2.8-3.5 II and last: Category:Financial services companies established in 2016 -[2018-02-13T00:35:20.548] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:20.582] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:20.709] [INFO] cheese - inserting 1000 documents. first: Osorioichthys and last: File:Courtneyfathom.jpg -[2018-02-13T00:35:20.762] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:35:20.824] [INFO] cheese - inserting 1000 documents. first: Robert Wilson (Missouri) and last: Nathaniel Barksdale Dial -[2018-02-13T00:35:20.881] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:20.889] [INFO] cheese - inserting 1000 documents. first: Belsőtelep and last: KF Tirana season 2009–10 -[2018-02-13T00:35:20.930] [INFO] cheese - inserting 1000 documents. first: Shahpurkandi dam project and last: Liquor Goat -[2018-02-13T00:35:20.931] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:35:20.966] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:35:20.994] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2007 October 2 and last: List of runestones -[2018-02-13T00:35:21.031] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:21.041] [INFO] cheese - inserting 1000 documents. first: Lee Clark (footballer) and last: Geoffroy Saint-Hilaire -[2018-02-13T00:35:21.103] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:35:21.140] [INFO] cheese - inserting 1000 documents. first: NDS pen and last: Gregg Steinhafel -[2018-02-13T00:35:21.191] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:21.270] [INFO] cheese - inserting 1000 documents. first: フルバ and last: Dallas Texans (AFL) first-round draft picks -[2018-02-13T00:35:21.275] [INFO] cheese - inserting 1000 documents. first: Cation-pi interaction and last: (?) -[2018-02-13T00:35:21.305] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:35:21.327] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:35:21.361] [INFO] cheese - inserting 1000 documents. first: Pahn and last: Arkansas State Highway 16 Spur -[2018-02-13T00:35:21.362] [INFO] cheese - inserting 1000 documents. first: Harlow District Council election, 2003 and last: Subject whom -[2018-02-13T00:35:21.412] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:35:21.428] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:35:21.564] [INFO] cheese - inserting 1000 documents. first: Category:Freeman Dyson and last: Lunar eclipse (disambiguation) -[2018-02-13T00:35:21.610] [INFO] cheese - inserting 1000 documents. first: 1923 Tour of Flanders and last: Maaroufi -[2018-02-13T00:35:21.609] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:21.658] [INFO] cheese - inserting 1000 documents. first: File:Cosmis Requiem.jpg and last: Yaquzlejeh -[2018-02-13T00:35:21.659] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:35:21.675] [INFO] cheese - inserting 1000 documents. first: Geoffroy-Saint-Hilaire and last: Town privileges -[2018-02-13T00:35:21.707] [INFO] cheese - inserting 1000 documents. first: History of the administrative division of Russia in 1708–1744 and last: Jonathan Thompson (disambiguation) -[2018-02-13T00:35:21.730] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T00:35:21.732] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:35:21.742] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:35:21.970] [INFO] cheese - inserting 1000 documents. first: List of the it crowd episodes and last: Noauto -[2018-02-13T00:35:22.022] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:35:22.030] [INFO] cheese - inserting 1000 documents. first: The Liberal Party and last: Tip cat -[2018-02-13T00:35:22.042] [INFO] cheese - inserting 1000 documents. first: Template:R from pejorative and last: Category:Wikipedians by alma mater: Maryland Institute College of Art -[2018-02-13T00:35:22.073] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:35:22.094] [INFO] cheese - inserting 1000 documents. first: HMS Croome and last: Anticipate Recordings -[2018-02-13T00:35:22.134] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:35:22.137] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:35:22.289] [INFO] cheese - inserting 1000 documents. first: Bedside test and last: Peninsula Center, Wisconsin -[2018-02-13T00:35:22.368] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:35:22.403] [INFO] cheese - inserting 1000 documents. first: Volodymyr-Volynsky and last: List of members of the Australian House of Representatives -[2018-02-13T00:35:22.405] [INFO] cheese - inserting 1000 documents. first: Sulichay and last: Indonesia–Brazil relations -[2018-02-13T00:35:22.493] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:22.519] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of cultural references to Stephen King and last: Li Qiang (activist) -[2018-02-13T00:35:22.519] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:35:22.620] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:35:22.668] [INFO] cheese - inserting 1000 documents. first: Xavi Torres and last: Actenochroma -[2018-02-13T00:35:22.686] [INFO] cheese - inserting 1000 documents. first: List of head masters of Eton College and last: Template:2001 Southland Football League standings -[2018-02-13T00:35:22.729] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:35:22.757] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:35:22.799] [INFO] cheese - inserting 1000 documents. first: Markinch Curling Club and last: Adams Township, Washington County, OH -[2018-02-13T00:35:22.851] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:35:22.866] [INFO] cheese - inserting 1000 documents. first: Stringmusic and last: N K -[2018-02-13T00:35:22.908] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:22.949] [INFO] cheese - inserting 1000 documents. first: Indonesia - Brazil relations and last: Philip krejcarek -[2018-02-13T00:35:23.006] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:35:23.023] [INFO] cheese - inserting 1000 documents. first: Helen Lines and last: Portal:Ayyavazhi/Introduction -[2018-02-13T00:35:23.080] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:23.097] [INFO] cheese - inserting 1000 documents. first: Template:Capcom and last: Maltermoro -[2018-02-13T00:35:23.119] [INFO] cheese - inserting 1000 documents. first: Electrode (Pokemon) and last: Category:Source (journalism) -[2018-02-13T00:35:23.121] [INFO] cheese - inserting 1000 documents. first: Chaos;Child and last: List of Secretaries-General of the Association of Southeast Asian Nations -[2018-02-13T00:35:23.131] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:35:23.162] [INFO] cheese - inserting 1000 documents. first: Rock n Roll Animal and last: College Slam -[2018-02-13T00:35:23.167] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:35:23.176] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:35:23.204] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:35:23.329] [INFO] cheese - inserting 1000 documents. first: N L and last: List of UK Dance Singles Chart number ones of 2003 -[2018-02-13T00:35:23.360] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:35:23.419] [INFO] cheese - inserting 1000 documents. first: Phillies Clubhouse and last: DJmag.com -[2018-02-13T00:35:23.426] [INFO] cheese - inserting 1000 documents. first: Category:Military installations in Sindh and last: Tideglusib -[2018-02-13T00:35:23.448] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:35:23.469] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:35:23.497] [INFO] cheese - inserting 1000 documents. first: Adoni revenue division and last: Rudolf Auspitz -[2018-02-13T00:35:23.500] [INFO] cheese - inserting 1000 documents. first: Big Bone, KY and last: Perca schrenkii -[2018-02-13T00:35:23.512] [INFO] cheese - inserting 1000 documents. first: Aladdin's Eatery and last: File:Bloc Party - Ion Square.ogg -[2018-02-13T00:35:23.530] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:35:23.533] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:35:23.560] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:23.705] [INFO] cheese - inserting 1000 documents. first: Category:Manx politicians and last: Tav Falco -[2018-02-13T00:35:23.757] [INFO] cheese - inserting 1000 documents. first: File:H. Verlan Andersen.jpg and last: Law of Macao -[2018-02-13T00:35:23.762] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:35:23.814] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:35:23.893] [INFO] cheese - inserting 1000 documents. first: Christian Gospel and last: 爪 -[2018-02-13T00:35:23.935] [INFO] cheese - inserting 1000 documents. first: Thesaurus (Clare Fischer album) and last: Category:Baseball venues in the Dallas-Fort Worth Metroplex -[2018-02-13T00:35:23.969] [INFO] cheese - inserting 1000 documents. first: Phoenix Suns head coaches and last: Template:ISO 3166 code POR -[2018-02-13T00:35:23.986] [INFO] cheese - inserting 1000 documents. first: Håkan Ericsson and last: Stargate: Extinction -[2018-02-13T00:35:23.996] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:24.011] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:35:24.059] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:35:24.088] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:35:24.218] [INFO] cheese - inserting 1000 documents. first: Bradenton Beach Scenic Highway and last: Template:US-jazz-band-stub -[2018-02-13T00:35:24.285] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:35:24.437] [INFO] cheese - inserting 1000 documents. first: Ario Soerjo and last: Transmission (EP)(Mêlée) -[2018-02-13T00:35:24.445] [INFO] cheese - inserting 1000 documents. first: Portal:Earth sciences/Selected articles and last: Gerhard Hasel -[2018-02-13T00:35:24.471] [INFO] cheese - inserting 1000 documents. first: Tongyi and last: WWE Internet Champion -[2018-02-13T00:35:24.480] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:35:24.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Alexander Kapranos and last: Leliwa coat of arms -[2018-02-13T00:35:24.507] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Female Prisoner Ayaka: Tormenting and Breaking in a Bitch and last: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Legionnaires' disease -[2018-02-13T00:35:24.510] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:35:24.535] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:35:24.547] [INFO] cheese - inserting 1000 documents. first: Soosai and last: Harrogate Bus Station -[2018-02-13T00:35:24.579] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:35:24.593] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:24.623] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:24.661] [INFO] cheese - inserting 1000 documents. first: Glenn Layendecker and last: Operation Dove (Ireland) -[2018-02-13T00:35:24.703] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:24.834] [INFO] cheese - inserting 1000 documents. first: Turkey Spain relations and last: Wikipedia:Cheapness -[2018-02-13T00:35:24.880] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:35:24.885] [INFO] cheese - inserting 1000 documents. first: Achintya Bhedābheda and last: John Steele House (disambiguation) -[2018-02-13T00:35:24.925] [INFO] cheese - inserting 1000 documents. first: Dumping Syndrome and last: File:StAndrews.jpg -[2018-02-13T00:35:24.927] [INFO] cheese - inserting 1000 documents. first: 316028 Patrickwils and last: 350509 Vepřoknedlozelo -[2018-02-13T00:35:24.928] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:35:24.954] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:35:24.981] [INFO] cheese - inserting 1000 documents. first: Munyon and last: Mendota Station -[2018-02-13T00:35:24.981] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:25.039] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:35:25.076] [INFO] cheese - inserting 1000 documents. first: Little monocacy river and last: Wikipedia:Votes for deletion/Vigatec (Chile) -[2018-02-13T00:35:25.118] [INFO] cheese - inserting 1000 documents. first: Zoran Žigić and last: File:Polmadie.jpg -[2018-02-13T00:35:25.145] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:35:25.184] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:25.248] [INFO] cheese - inserting 1000 documents. first: 350509 Veproknedlozelo and last: Leo Baeck Institute London -[2018-02-13T00:35:25.250] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CHEAPNESS and last: Aerial (Scottish band) -[2018-02-13T00:35:25.287] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:35:25.306] [INFO] cheese - inserting 1000 documents. first: Far Tottering and Oyster Creek Railway and last: Muscular pile -[2018-02-13T00:35:25.325] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:25.395] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:35:25.465] [INFO] cheese - inserting 1000 documents. first: Bert Sprotte and last: List of National Historic Landmarks in Louisiana -[2018-02-13T00:35:25.507] [INFO] cheese - inserting 1000 documents. first: Municipalities of Guam and last: 1980–1982 -[2018-02-13T00:35:25.544] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:35:25.573] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:35:25.680] [INFO] cheese - inserting 1000 documents. first: File:FC Boskovice logo.svg and last: List of mountains of Missouri -[2018-02-13T00:35:25.713] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:35:25.789] [INFO] cheese - inserting 1000 documents. first: U.S. Attorney for the Northern District of Georgia and last: KWR-37 -[2018-02-13T00:35:25.797] [INFO] cheese - inserting 1000 documents. first: Andrzej Gryfita and last: Wikipedia:WikiProject Spam/LinkReports/codingplayground.blogspot.it -[2018-02-13T00:35:25.802] [INFO] cheese - inserting 1000 documents. first: Marshall, Peter and last: Category:Decadent literature -[2018-02-13T00:35:25.826] [INFO] cheese - inserting 1000 documents. first: Marchioness of Kipon and last: Yoan Andreu -[2018-02-13T00:35:25.852] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:35:25.852] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:35:25.865] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:25.868] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:35:25.959] [INFO] cheese - inserting 1000 documents. first: National Fisheries Institute and last: Hasting Old Town Week -[2018-02-13T00:35:26.001] [INFO] cheese - inserting 1000 documents. first: All They Ever Wanted and last: Living in China -[2018-02-13T00:35:26.014] [INFO] cheese - inserting 1000 documents. first: Giovanni Antonio Acquaviva d'Aragona and last: Lutzia shinonagai -[2018-02-13T00:35:26.018] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:35:26.048] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:35:26.056] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:35:26.165] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/codingplayground.blogspot.it and last: Chapykh -[2018-02-13T00:35:26.194] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:35:26.248] [INFO] cheese - inserting 1000 documents. first: Johnny Paris and last: Bobby Ayala -[2018-02-13T00:35:26.274] [INFO] cheese - inserting 1000 documents. first: Category:3rd millennium in Lithuania and last: Frequency Modulation Radio -[2018-02-13T00:35:26.287] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:35:26.307] [INFO] cheese - inserting 1000 documents. first: The Great Ones Remember and last: Wikipedia:Ottoman/P -[2018-02-13T00:35:26.311] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:35:26.349] [INFO] cheese - inserting 1000 documents. first: A. Flea and last: Headwater stream -[2018-02-13T00:35:26.364] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:35:26.404] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:26.426] [INFO] cheese - inserting 1000 documents. first: KWT-37 and last: Barayev -[2018-02-13T00:35:26.451] [INFO] cheese - inserting 1000 documents. first: File:D-Lite - D'slove.jpg and last: Category:Scientists from Assam -[2018-02-13T00:35:26.474] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:35:26.484] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:35:26.579] [INFO] cheese - inserting 1000 documents. first: Golabar-e Sofla and last: Wikipedia:WikiProject Spam/LinkReports/girlsbcn-online.com -[2018-02-13T00:35:26.617] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:35:26.658] [INFO] cheese - inserting 1000 documents. first: Gabriela (disambiguation) and last: Moses Leaving to Egypt (Pietro Perugino) -[2018-02-13T00:35:26.709] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:35:26.767] [INFO] cheese - inserting 1000 documents. first: Kinnitty Castle and last: Saffron-crested Tyrant Manakin -[2018-02-13T00:35:26.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Women in Red/Youth lit writers and last: Nans Peters -[2018-02-13T00:35:26.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Patrol Men (film) and last: Princess Virginia (Ira) of Fürstenberg -[2018-02-13T00:35:26.813] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:35:26.820] [INFO] cheese - inserting 1000 documents. first: Square-lattice Ising model and last: Davies, Roger -[2018-02-13T00:35:26.841] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:35:26.891] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:26.909] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:35:27.078] [INFO] cheese - inserting 1000 documents. first: Sulphur-bellied Tyrant Manakin and last: All the weyrs of pern -[2018-02-13T00:35:27.099] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:35:27.102] [INFO] cheese - inserting 1000 documents. first: WellStar Kennestone Regional Medical Hospital and last: Rust and Bone (short story collection) -[2018-02-13T00:35:27.104] [INFO] cheese - inserting 1000 documents. first: Danio nigrofasciatus and last: George A. Smith -[2018-02-13T00:35:27.155] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:27.164] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:27.178] [INFO] cheese - inserting 1000 documents. first: Sunday Times Rich List 2011 and last: TNA Entertainment, LLC -[2018-02-13T00:35:27.247] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:27.250] [INFO] cheese - inserting 1000 documents. first: Davis, Willie and last: Taylor, Kate -[2018-02-13T00:35:27.277] [INFO] cheese - inserting 1000 documents. first: Concentrate of Poppy Straw and last: Category:Linköping University academics -[2018-02-13T00:35:27.287] [INFO] cheese - inserting 1000 documents. first: Category:Curling competitions in France and last: La Salle Parish, Louisiana -[2018-02-13T00:35:27.297] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:35:27.326] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:35:27.334] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:27.363] [INFO] cheese - inserting 1000 documents. first: All the woo in the world and last: Category:Uzbekistani classical pianists -[2018-02-13T00:35:27.394] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:35:27.465] [INFO] cheese - inserting 1000 documents. first: Bad Elk v. U.S. and last: Aq Bolagh Rural District -[2018-02-13T00:35:27.498] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:35:27.571] [INFO] cheese - inserting 1000 documents. first: Fubuki Shirou and last: Andrea Cipressa -[2018-02-13T00:35:27.605] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:35:27.613] [INFO] cheese - inserting 1000 documents. first: V. O. Key Jr. and last: Wikipedia:Articles for deletion/Video game proponent -[2018-02-13T00:35:27.626] [INFO] cheese - inserting 1000 documents. first: GNTC and last: NarNarayan -[2018-02-13T00:35:27.662] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:35:27.693] [INFO] cheese - inserting 1000 documents. first: Mayorship of Rob Ford and last: Category:Scientists from Goa -[2018-02-13T00:35:27.674] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:35:27.717] [INFO] cheese - inserting 1000 documents. first: 2009-10 Pittsburgh Panthers women's basketball team and last: Pictures of the Floating World -[2018-02-13T00:35:27.740] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:35:27.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PRONUNCIATION and last: Wikipedia:Articles for deletion/Mike Hines -[2018-02-13T00:35:27.773] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:35:27.810] [INFO] cheese - inserting 1000 documents. first: Vermicious Knids and last: 1982 WAFL season -[2018-02-13T00:35:27.825] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:27.849] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:35:28.007] [INFO] cheese - inserting 1000 documents. first: TDM-GCC and last: Template:Canadian election result/pickup -[2018-02-13T00:35:28.013] [INFO] cheese - inserting 1000 documents. first: Bedecs and last: Aingya, Tantabin -[2018-02-13T00:35:28.039] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:35:28.077] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:35:28.111] [INFO] cheese - inserting 1000 documents. first: Historical record archives of FC Dynamo Kyiv and last: Spear-Bearer -[2018-02-13T00:35:28.130] [INFO] cheese - inserting 1000 documents. first: Palos (TV series) and last: And When Did You Last See Your Father? -[2018-02-13T00:35:28.211] [INFO] cheese - inserting 1000 documents. first: Null picture and last: Pat Harrington Sr -[2018-02-13T00:35:28.198] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:35:28.220] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:35:28.256] [INFO] cheese - inserting 1000 documents. first: Bugil Girls' High School and last: Cliffs notes -[2018-02-13T00:35:28.306] [INFO] cheese - inserting 1000 documents. first: Category:Olympic table tennis players of Argentina and last: Hart Plain -[2018-02-13T00:35:28.320] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:35:28.325] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:28.393] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:35:28.458] [INFO] cheese - inserting 1000 documents. first: ¡Alabadle! and last: Morristown Metropolitan Statistical Area -[2018-02-13T00:35:28.481] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:35:28.580] [INFO] cheese - inserting 1000 documents. first: Joseph Mitchell (city manager) and last: Subaša -[2018-02-13T00:35:28.586] [INFO] cheese - inserting 1000 documents. first: Aingzauk and last: Michio kaku -[2018-02-13T00:35:28.586] [INFO] cheese - inserting 1000 documents. first: Torrington by-election, 1958 and last: Murmur of the heart -[2018-02-13T00:35:28.610] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:35:28.617] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:28.627] [INFO] cheese - inserting 1000 documents. first: Eleutherine and last: Ararat Cement -[2018-02-13T00:35:28.646] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:35:28.672] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:35:28.715] [INFO] cheese - inserting 1000 documents. first: Nerinckx, Charles and last: Category:Politics of County Kerry -[2018-02-13T00:35:28.735] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:35:28.796] [INFO] cheese - inserting 1000 documents. first: Template:Events at the 2013 Asian Youth Games and last: Shahrestanak, Zanjan -[2018-02-13T00:35:28.837] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:35:28.851] [INFO] cheese - inserting 1000 documents. first: Music of the heart and last: Lei Aurea -[2018-02-13T00:35:28.882] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:35:28.888] [INFO] cheese - inserting 1000 documents. first: Category:PlayStation 2 peripherals and last: Ditfurt -[2018-02-13T00:35:28.904] [INFO] cheese - inserting 1000 documents. first: Indiana State Road 269 and last: Archduke ferdinand zvonimir of austria -[2018-02-13T00:35:28.909] [INFO] cheese - inserting 1000 documents. first: Dinsmoor, Samuel and last: Micah Lea'alafa -[2018-02-13T00:35:28.938] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:35:28.946] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:35:28.950] [INFO] cheese - inserting 1000 documents. first: Comparison of mobile IRC clients and last: File:Overseas Property TV.svg -[2018-02-13T00:35:28.955] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:35:28.993] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:35:29.056] [INFO] cheese - inserting 1000 documents. first: File:Resolution (Hamiet Bluiett album).jpg and last: Gjysylkanë -[2018-02-13T00:35:29.099] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:35:29.168] [INFO] cheese - inserting 1000 documents. first: Sahr Satana and last: File:The Big Bang Single.jpg -[2018-02-13T00:35:29.195] [INFO] cheese - inserting 1000 documents. first: Archduke franz ferdinand of austria and last: Arrondissement of belley -[2018-02-13T00:35:29.208] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:35:29.217] [INFO] cheese - inserting 1000 documents. first: Piano-Rag-Music and last: Canal Days Marine Heritage Festival -[2018-02-13T00:35:29.218] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:35:29.260] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:35:29.273] [INFO] cheese - inserting 1000 documents. first: CfBT Education Trust and last: Son of Sam (EP) -[2018-02-13T00:35:29.305] [INFO] cheese - inserting 1000 documents. first: Faro de Punta Higuero and last: Wikipedia:WikiProject Wikibundle/Icon -[2018-02-13T00:35:29.314] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:35:29.347] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:35:29.375] [INFO] cheese - inserting 1000 documents. first: Arrondissement of bergerac and last: Aslackby and laughton -[2018-02-13T00:35:29.398] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:35:29.459] [INFO] cheese - inserting 1000 documents. first: Fernando Stahelin and last: Les Fonts (FGC) -[2018-02-13T00:35:29.497] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:35:29.512] [INFO] cheese - inserting 1000 documents. first: EADS SPACE and last: Wikipedia:Votes for deletion/Nejaa Halcyon -[2018-02-13T00:35:29.540] [INFO] cheese - inserting 1000 documents. first: Spes Utia Island and last: Felsodetrehem -[2018-02-13T00:35:29.585] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:35:29.636] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:35:29.663] [INFO] cheese - inserting 1000 documents. first: Category:Airports in Balearic Islands and last: David Briggs (composer) -[2018-02-13T00:35:29.705] [INFO] cheese - inserting 1000 documents. first: Farariana and last: More Greatest Hits of the Monkees -[2018-02-13T00:35:29.736] [INFO] cheese - inserting 1000 documents. first: File:Varian's War.jpg and last: The Difference (Nick Jonas song) -[2018-02-13T00:35:29.761] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:29.781] [INFO] cheese - inserting 1000 documents. first: National Association of Old IRA and last: Half angle equations -[2018-02-13T00:35:29.797] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:35:29.838] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:35:29.856] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:30.130] [INFO] cheese - inserting 1000 documents. first: File:DCPLlogo.png and last: Mazra'eh-ye Sabz Dasht -[2018-02-13T00:35:30.183] [INFO] cheese - inserting 1000 documents. first: Stella Kilonzo and last: DXBB -[2018-02-13T00:35:30.261] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:35:30.283] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:35:30.334] [INFO] cheese - inserting 1000 documents. first: Malcolm Betruger and last: File:Herbertbrownstein2.jpg -[2018-02-13T00:35:30.338] [INFO] cheese - inserting 1000 documents. first: Old Fall River Road and last: Nikolay Kolesov -[2018-02-13T00:35:30.372] [INFO] cheese - inserting 1000 documents. first: Half-angle equations and last: Ying-yuan Lee -[2018-02-13T00:35:30.377] [INFO] cheese - inserting 1000 documents. first: Bern Psychomachia and last: Blue Bloods (season 7) -[2018-02-13T00:35:30.379] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:35:30.381] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:35:30.414] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:35:30.453] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:35:30.466] [INFO] cheese - inserting 1000 documents. first: Eddie Hart (athlete) and last: Category:1460s births -[2018-02-13T00:35:30.526] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T00:35:30.676] [INFO] cheese - inserting 1000 documents. first: Roland Frasier and last: Wikipedia:Articles for deletion/TestMP -[2018-02-13T00:35:30.734] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:35:30.739] [INFO] cheese - inserting 1000 documents. first: Heartstrings (TV series) and last: Template:Chadian presidential election, 2011 -[2018-02-13T00:35:30.791] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:30.809] [INFO] cheese - inserting 1000 documents. first: Ken Smith (politician) and last: United States Virgin Islands Democratic caucuses, 2016 -[2018-02-13T00:35:30.813] [INFO] cheese - inserting 1000 documents. first: File:WhoIAmHatesWhoIveBeen.jpg and last: WSTQ FM -[2018-02-13T00:35:30.842] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:35:30.858] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:35:30.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/royalunibrew.com and last: Cycles (Doobies) -[2018-02-13T00:35:30.906] [INFO] cheese - inserting 1000 documents. first: Moldova–Malta relations and last: American Board of Dermatology -[2018-02-13T00:35:30.938] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:35:30.963] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:31.118] [INFO] cheese - inserting 1000 documents. first: Category:Animal anatomy stubs and last: Category:1967 establishments in Iceland -[2018-02-13T00:35:31.123] [INFO] cheese - inserting 1000 documents. first: Category:1460s deaths and last: Warnia coat of arms -[2018-02-13T00:35:31.130] [INFO] cheese - inserting 1000 documents. first: Vereinigte Astronomische Gesellschaft and last: Australasian journal of philosophy -[2018-02-13T00:35:31.146] [INFO] cheese - inserting 1000 documents. first: Beitou Museum and last: Wikipedia:WikiProject Spam/LinkReports/biggsltd.com -[2018-02-13T00:35:31.149] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:35:31.156] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:35:31.171] [INFO] cheese - inserting 1000 documents. first: United States Virgin Islands Republican caucus, 2016 and last: 1901 (disambiguation) -[2018-02-13T00:35:31.180] [INFO] cheese - inserting 1000 documents. first: Convoy of death and last: Short Sandringham & Seaforth -[2018-02-13T00:35:31.198] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:35:31.201] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:35:31.229] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:35:31.237] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:35:31.340] [INFO] cheese - inserting 1000 documents. first: James Mills (disambiguation) and last: Docosatetraenyl ethanolamide -[2018-02-13T00:35:31.399] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:35:31.469] [INFO] cheese - inserting 1000 documents. first: Australasian society for computers in learning in tertiary education and last: Category:German Navy ship names -[2018-02-13T00:35:31.497] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:35:31.568] [INFO] cheese - inserting 1000 documents. first: Category:United States Baseball League players and last: United States v. Camacho -[2018-02-13T00:35:31.630] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:35:31.720] [INFO] cheese - inserting 1000 documents. first: Spanish art and last: 2006 FA Cup Final -[2018-02-13T00:35:31.735] [INFO] cheese - inserting 1000 documents. first: Anglican Diocese of Argentina and last: Thomas Cook's Rugby Club -[2018-02-13T00:35:31.752] [INFO] cheese - inserting 1000 documents. first: Category:Bachman-Turner Overdrive albums and last: File:Qaeda in Azzan.jpg -[2018-02-13T00:35:31.773] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:31.793] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:35:31.807] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:31.816] [INFO] cheese - inserting 1000 documents. first: Hadi Bargizar and last: Sanjay Brijkishorlal Nirupam -[2018-02-13T00:35:31.850] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:35:31.851] [INFO] cheese - inserting 1000 documents. first: Kiss My Grass: A Hillbilly Tribute to Kiss and last: FURB -[2018-02-13T00:35:31.899] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:35:31.901] [INFO] cheese - inserting 1000 documents. first: Churumuco and last: Saint-Vincent-sur-Oust -[2018-02-13T00:35:31.942] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:31.966] [INFO] cheese - inserting 1000 documents. first: Category:Peninsulas of Livingston Island and last: List of English Sport Shooters -[2018-02-13T00:35:32.004] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:35:32.124] [INFO] cheese - inserting 1000 documents. first: Frot-Laffly armoured roller and last: Odise Rroshi -[2018-02-13T00:35:32.138] [INFO] cheese - inserting 1000 documents. first: A Veiga and last: Factorial number -[2018-02-13T00:35:32.156] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:35:32.172] [INFO] cheese - inserting 1000 documents. first: Walnut Spring and last: File:TheWoodentops.jpg -[2018-02-13T00:35:32.181] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:35:32.222] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:32.241] [INFO] cheese - inserting 1000 documents. first: Vela Blagoeva and last: Geographical Society of Philadelphia -[2018-02-13T00:35:32.287] [INFO] cheese - inserting 1000 documents. first: File:B'z TBPII.jpg and last: John Frisell -[2018-02-13T00:35:32.287] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:35:32.334] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:35:32.405] [INFO] cheese - inserting 1000 documents. first: Aalborg BK and last: Monno -[2018-02-13T00:35:32.408] [INFO] cheese - inserting 1000 documents. first: Hattingen Mitte station and last: Spain Peak -[2018-02-13T00:35:32.443] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:32.456] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:35:32.483] [INFO] cheese - inserting 1000 documents. first: Heronries and last: Category:6th arrondissement of Lyon -[2018-02-13T00:35:32.523] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:35:32.542] [INFO] cheese - inserting 1000 documents. first: Massingham and last: HD 129685 -[2018-02-13T00:35:32.599] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:32.758] [INFO] cheese - inserting 1000 documents. first: Aphelion (Dave Rempis album) and last: UAW–DaimlerChrysler 400 -[2018-02-13T00:35:32.814] [INFO] cheese - inserting 1000 documents. first: Glenn Haynes and last: Cherry Hill Road (Calverton–College Park, Maryland) -[2018-02-13T00:35:32.826] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:32.868] [INFO] cheese - inserting 1000 documents. first: Brittany Byrnes and last: Shut Up, You Fucking Baby! -[2018-02-13T00:35:32.888] [INFO] cheese - inserting 1000 documents. first: Daniele Brusaschetto and last: File:Quarter Obverse 2010.png -[2018-02-13T00:35:32.895] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:35:32.924] [INFO] cheese - inserting 1000 documents. first: Etroussat and last: Erythromycin A -[2018-02-13T00:35:32.961] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:35:32.974] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:35:32.991] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:35:33.065] [INFO] cheese - inserting 1000 documents. first: Virginia Secondary Route 716 (Fairfax County) and last: Caneaught Creek -[2018-02-13T00:35:33.107] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:33.116] [INFO] cheese - inserting 1000 documents. first: James Stanhope, 7th Earl Stanhope and last: Sineus and Truvor -[2018-02-13T00:35:33.184] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:35:33.218] [INFO] cheese - inserting 1000 documents. first: JHQ Rheindahlen Bombing 1987 and last: EC 1.17.1.8 -[2018-02-13T00:35:33.250] [INFO] cheese - inserting 1000 documents. first: Constellation Family and last: Wikipedia:Articles for deletion/Gary Levy -[2018-02-13T00:35:33.256] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:35:33.284] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:35:33.321] [INFO] cheese - inserting 1000 documents. first: Gatton family and last: U6atac minor spliceosomal RNA -[2018-02-13T00:35:33.334] [INFO] cheese - inserting 1000 documents. first: File:Chicago Teachers Union.jpg and last: Fair Park Coliseum (Dallas, TX) -[2018-02-13T00:35:33.359] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:35:33.377] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:33.427] [INFO] cheese - inserting 1000 documents. first: File:KylieXCover.png and last: Marbury Reedbed Nature Reserve -[2018-02-13T00:35:33.444] [INFO] cheese - inserting 1000 documents. first: EC 1.1.1.212 and last: Category:Burials at North Road Cemetery -[2018-02-13T00:35:33.469] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:35:33.482] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:33.551] [INFO] cheese - inserting 1000 documents. first: US Post Office-Reno Main and last: Brunswick County Airport -[2018-02-13T00:35:33.576] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:35:33.686] [INFO] cheese - inserting 1000 documents. first: Pensionärernas Riksorganisation and last: Dearne District Light Railway -[2018-02-13T00:35:33.691] [INFO] cheese - inserting 1000 documents. first: Naman Ojha and last: Burhøns -[2018-02-13T00:35:33.702] [INFO] cheese - inserting 1000 documents. first: Baron de Hirsch Cemetery, Halifax and last: Dassera -[2018-02-13T00:35:33.727] [INFO] cheese - inserting 1000 documents. first: Dexchlorpheniramine and last: Triple Net Lease -[2018-02-13T00:35:33.728] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:35:33.735] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:35:33.768] [INFO] cheese - inserting 1000 documents. first: Neil Davies (disambiguation) and last: Wikipedia:GLAM/National Railway Museum/Tab header -[2018-02-13T00:35:33.778] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:35:33.808] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:35:33.815] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:35:33.908] [INFO] cheese - inserting 1000 documents. first: Night of Champions and last: C.C.I.A.A. -[2018-02-13T00:35:33.931] [INFO] cheese - inserting 1000 documents. first: Catspaw (TV series) and last: SS Caesarea -[2018-02-13T00:35:33.950] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:33.963] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:35:34.115] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2009 May 26 and last: Wikipedia:Articles for deletion/Nicolette DuClare -[2018-02-13T00:35:34.131] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Divisions of the Galactic Empire (Star Wars) and last: Template:Bay class minesweeper -[2018-02-13T00:35:34.167] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:35:34.181] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:35:34.214] [INFO] cheese - inserting 1000 documents. first: Coleophora bidens and last: Körösmart -[2018-02-13T00:35:34.275] [INFO] cheese - inserting 1000 documents. first: Juha Pasoja and last: Čajniče -[2018-02-13T00:35:34.370] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:35:34.388] [INFO] cheese - inserting 1000 documents. first: Eishō (Muromachi period) and last: Nottingham Girls' High School -[2018-02-13T00:35:34.411] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:35:34.472] [INFO] cheese - inserting 1000 documents. first: Raphèl maì amèche zabì almi and last: Pureness -[2018-02-13T00:35:34.510] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:35:34.537] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:35:34.542] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Adirondack (train) and last: G. V. T. Matthews -[2018-02-13T00:35:34.608] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:35:34.685] [INFO] cheese - inserting 1000 documents. first: Sister killer and last: Sunbury Festival -[2018-02-13T00:35:34.712] [INFO] cheese - inserting 1000 documents. first: Genlisea violacea and last: Wikipedia:Suspected sock puppets/86.92.134.171 -[2018-02-13T00:35:34.752] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:35:34.795] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:35:34.911] [INFO] cheese - inserting 1000 documents. first: Tenkegörbed and last: 2010 Maldives FA Cup -[2018-02-13T00:35:34.917] [INFO] cheese - inserting 1000 documents. first: File:Dinosaur-Planet2.jpg and last: El pez que fuma -[2018-02-13T00:35:34.937] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 August 19 and last: Prodenia synstictis -[2018-02-13T00:35:34.974] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:35:34.984] [INFO] cheese - inserting 1000 documents. first: Draft:Cecil E. Harris and last: Ed Bacon (episcopal priest) -[2018-02-13T00:35:34.985] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:35:34.990] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:35:35.073] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:35.105] [INFO] cheese - inserting 1000 documents. first: Dear Diary (disambiguation) and last: …Ich töte mich… -[2018-02-13T00:35:35.125] [INFO] cheese - inserting 1000 documents. first: Art clay silver and last: South Vacherie -[2018-02-13T00:35:35.143] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:35:35.191] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:35:35.230] [INFO] cheese - inserting 1000 documents. first: C. J. Kemp and last: System file checker -[2018-02-13T00:35:35.286] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:35:35.361] [INFO] cheese - inserting 1000 documents. first: Croatia national rugby union team (sevens) and last: Category:Castros in Portugal -[2018-02-13T00:35:35.364] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tripper.com and last: Love Valour Compassion -[2018-02-13T00:35:35.388] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:35:35.405] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:35.431] [INFO] cheese - inserting 1000 documents. first: Yaakov Kedmi and last: Échard -[2018-02-13T00:35:35.476] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:35:35.501] [INFO] cheese - inserting 1000 documents. first: File:C-j-murray-1880.jpg and last: Maria new -[2018-02-13T00:35:35.520] [INFO] cheese - inserting 1000 documents. first: …I Believe in Humility and last: Lethe Vallis -[2018-02-13T00:35:35.591] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:35:35.602] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:35.675] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change (Sugababes song) and last: Template:F1 cars 1962 -[2018-02-13T00:35:35.745] [INFO] cheese - inserting 1000 documents. first: File:Amara Muzik Logo.png and last: Manfredi, Carlo -[2018-02-13T00:35:35.752] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:35:35.797] [INFO] cheese - inserting 1000 documents. first: Patricia Tallman and last: Gen (Street Fighter) -[2018-02-13T00:35:35.853] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:35:35.964] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:35:36.036] [INFO] cheese - inserting 1000 documents. first: Alauddin Khalji and last: Karaszó -[2018-02-13T00:35:36.116] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/December 7, 2006 and last: Gateside -[2018-02-13T00:35:36.135] [INFO] cheese - inserting 1000 documents. first: Chamberless long cairns and last: Mataguayo language -[2018-02-13T00:35:36.149] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:35:36.190] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:35:36.190] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:35:36.220] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Poland-related articles by quality/130 and last: Theravil Aru -[2018-02-13T00:35:36.276] [INFO] cheese - inserting 1000 documents. first: Category:Porsgrunn and last: Fi zilal al-Qur'an -[2018-02-13T00:35:36.279] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:35:36.344] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:35:36.423] [INFO] cheese - inserting 1000 documents. first: Moller, Carl and last: File:You Took the Words Right out of My Mouth by Meat Loaf US vinyl.jpg -[2018-02-13T00:35:36.470] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:35:36.516] [INFO] cheese - inserting 1000 documents. first: Kisháza and last: Badai Pasti Berlalu -[2018-02-13T00:35:36.558] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:35:36.605] [INFO] cheese - inserting 1000 documents. first: Mirza Khanlu and last: Category:1993 establishments in Puerto Rico -[2018-02-13T00:35:36.634] [INFO] cheese - inserting 1000 documents. first: Mourad Moose Topalian and last: Louis-Jules Barbon Mancini Mazarini, duc de Nivernais -[2018-02-13T00:35:36.645] [INFO] cheese - inserting 1000 documents. first: Digimon Adventure and last: Medium of instruction -[2018-02-13T00:35:36.645] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:36.664] [INFO] cheese - inserting 1000 documents. first: Kyle Veris and last: Titusville High School -[2018-02-13T00:35:36.676] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:35:36.678] [INFO] cheese - inserting 1000 documents. first: Goru River and last: Wikipedia:Articles for deletion/Thomas and friends video - release -[2018-02-13T00:35:36.727] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:35:36.730] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:35:36.736] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:35:36.958] [INFO] cheese - inserting 1000 documents. first: Chuymani and last: Mamie Phipps Clark -[2018-02-13T00:35:36.985] [INFO] cheese - inserting 1000 documents. first: Category:Sexual harassment and last: Fifth gender -[2018-02-13T00:35:37.010] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:37.071] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:35:37.107] [INFO] cheese - inserting 1000 documents. first: Qeshlaq-e Shah Khanem Ali Borat and last: Prechlau -[2018-02-13T00:35:37.130] [INFO] cheese - inserting 1000 documents. first: Zhonghe, Taipei and last: Eats Darkness -[2018-02-13T00:35:37.166] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:35:37.198] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:35:37.293] [INFO] cheese - inserting 1000 documents. first: EMI, Ltd. and last: Category:Insurance companies of Bermuda -[2018-02-13T00:35:37.302] [INFO] cheese - inserting 1000 documents. first: Narrowleaf Lupine and last: Arturo von Vacano -[2018-02-13T00:35:37.365] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:35:37.368] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:35:37.423] [INFO] cheese - inserting 1000 documents. first: Olt county and last: Basilicas -[2018-02-13T00:35:37.436] [INFO] cheese - inserting 1000 documents. first: Nasir Siddiqi and last: Black sassafras -[2018-02-13T00:35:37.472] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:35:37.485] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:35:37.578] [INFO] cheese - inserting 1000 documents. first: Template:Project section header/doc and last: File:The Impossible Dream Richard & Adam cover.png -[2018-02-13T00:35:37.584] [INFO] cheese - inserting 1000 documents. first: The Armchairs and last: Chattanooga News–Free Press -[2018-02-13T00:35:37.626] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:37.673] [INFO] cheese - inserting 1000 documents. first: Rajya Sabha (Tamil Nadu) and last: Orthodoxos Ioannou -[2018-02-13T00:35:37.695] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:35:37.765] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:35:37.813] [INFO] cheese - inserting 1000 documents. first: Basilinna and last: Pilawa Dolna -[2018-02-13T00:35:37.897] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:35:37.909] [INFO] cheese - inserting 1000 documents. first: Oliver's sassafras and last: Woodrow Wilson School, Princeton University -[2018-02-13T00:35:37.960] [INFO] cheese - inserting 1000 documents. first: Eaten Alive and last: John Crowell -[2018-02-13T00:35:37.974] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:38.058] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:35:38.221] [INFO] cheese - inserting 1000 documents. first: Category:1474 births and last: Cléo de Merode -[2018-02-13T00:35:38.237] [INFO] cheese - inserting 1000 documents. first: Batman (servant) and last: 2013–14 Saint Mary's Gaels men's basketball team -[2018-02-13T00:35:38.287] [INFO] cheese - inserting 1000 documents. first: A PFG 1937-38 and last: Midoil, California -[2018-02-13T00:35:38.308] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:38.311] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:35:38.333] [INFO] cheese - inserting 1000 documents. first: Isidor Schneider and last: Mount Comfort Airport -[2018-02-13T00:35:38.348] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:35:38.388] [INFO] cheese - inserting 1000 documents. first: Prose fiction and last: File:Ancientasiaminor.jpg -[2018-02-13T00:35:38.420] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:35:38.442] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:35:38.572] [INFO] cheese - inserting 1000 documents. first: Diana Natalicio and last: File:DriveTime logo.jpg -[2018-02-13T00:35:38.621] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:35:38.692] [INFO] cheese - inserting 1000 documents. first: 1951 24 Hours of Le Mans and last: Human left lung -[2018-02-13T00:35:38.721] [INFO] cheese - inserting 1000 documents. first: Robert Sitwell and last: Blennidus tenenbaumi -[2018-02-13T00:35:38.763] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:35:38.812] [INFO] cheese - inserting 1000 documents. first: Guanica Light and last: Piloswine (Pokémon) -[2018-02-13T00:35:38.837] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:35:38.878] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:35:38.979] [INFO] cheese - inserting 1000 documents. first: Love Is the Song We Sing: San Francisco Nuggets 1965–1970 and last: Wikipedia:WikiProject Spam/LinkReports/shitxxx.com -[2018-02-13T00:35:39.015] [INFO] cheese - inserting 1000 documents. first: Are You There, Chelsea? and last: Staatsbank der DDR -[2018-02-13T00:35:39.026] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:39.031] [INFO] cheese - inserting 1000 documents. first: Jules-Elie Delaunay and last: File:Young Adam movie.jpg -[2018-02-13T00:35:39.100] [INFO] cheese - inserting 1000 documents. first: Category:1551 establishments in the Republic of Venice and last: Užička Crna Gora -[2018-02-13T00:35:39.103] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:35:39.106] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:35:39.127] [INFO] cheese - inserting 1000 documents. first: Kim Hyun-jung (disambiguation) and last: Sony MCL-06T -[2018-02-13T00:35:39.172] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:35:39.176] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:35:39.378] [INFO] cheese - inserting 1000 documents. first: The Woman's Bible and last: Face Off (album) -[2018-02-13T00:35:39.413] [INFO] cheese - inserting 1000 documents. first: Marie of Saxe-Coburg-Gotha and United Kingdom and last: Frith Street -[2018-02-13T00:35:39.423] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:35:39.425] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cypressbayhighschool.org and last: File:Clase aparte album cover.jpg -[2018-02-13T00:35:39.483] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:35:39.496] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:35:39.560] [INFO] cheese - inserting 1000 documents. first: Template:Norway football squad 1936 Summer Olympics and last: Gertrude of Flanders (1112–1186) -[2018-02-13T00:35:39.570] [INFO] cheese - inserting 1000 documents. first: Nieuport-Delage NiD 32RH and last: Angut-e Gharbi Rural District -[2018-02-13T00:35:39.595] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:35:39.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Bimini and last: Comedy-thriller -[2018-02-13T00:35:39.618] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:35:39.660] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:35:39.768] [INFO] cheese - inserting 1000 documents. first: Category:Holiness universities and colleges and last: File:Dhsmith.JPG -[2018-02-13T00:35:39.797] [INFO] cheese - inserting 1000 documents. first: SKP and last: File:The Donnas - Spend the Night.jpg -[2018-02-13T00:35:39.816] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:35:39.867] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:35:39.878] [INFO] cheese - inserting 1000 documents. first: Just a Little Harmless Sex and last: Assuristan -[2018-02-13T00:35:39.933] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:35:39.946] [INFO] cheese - inserting 1000 documents. first: Walter Reuther Central High School and last: Volodymyr Yezersky -[2018-02-13T00:35:40.009] [INFO] cheese - inserting 1000 documents. first: Russian battleship Revoliutsiia and last: Charles Percy Graham-Montgomery -[2018-02-13T00:35:40.011] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:35:40.030] [INFO] cheese - inserting 1000 documents. first: GoldlinQ and last: Category:Buildings and structures in Daggett County, Utah -[2018-02-13T00:35:40.057] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:40.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elizabeth II and last: Intercollegiate Fencing Conference of Southern California -[2018-02-13T00:35:40.122] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:40.176] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:35:40.230] [INFO] cheese - inserting 1000 documents. first: File:Dollywiki2.jpg and last: 1922 films -[2018-02-13T00:35:40.277] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:35:40.373] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality/19 and last: Portal:Baseball/Selected article/October, 2007 -[2018-02-13T00:35:40.476] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:35:40.545] [INFO] cheese - inserting 1000 documents. first: Logie, Dundee and last: Pulmonary barotrauma -[2018-02-13T00:35:40.591] [INFO] cheese - inserting 1000 documents. first: 1922 in cinema and last: The Carpentered Hen -[2018-02-13T00:35:40.703] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:35:40.721] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:35:40.756] [INFO] cheese - inserting 1000 documents. first: Midwest Fencing Conference and last: Category:Alcaldes of the Province of Cáceres -[2018-02-13T00:35:40.791] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:35:40.794] [INFO] cheese - inserting 1000 documents. first: Cliff 'Em All and last: River Gunboat -[2018-02-13T00:35:40.798] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Izard County, Arkansas and last: Pompeius -[2018-02-13T00:35:40.842] [INFO] cheese - inserting 1000 documents. first: William M. Ryan Sr. and last: Category:Rocketry stubs -[2018-02-13T00:35:40.873] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:35:40.888] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T00:35:40.930] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:35:41.034] [INFO] cheese - inserting 1000 documents. first: GayNZ.com and last: Wikipedia:Articles for deletion/Sailboat 4 logo -[2018-02-13T00:35:41.072] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:35:41.102] [INFO] cheese - inserting 1000 documents. first: 1976 ATP Buenos Aires - Singles and last: Growers Stadium -[2018-02-13T00:35:41.105] [INFO] cheese - inserting 1000 documents. first: 1952 24 Hours of LeMans and last: Baile Ailein -[2018-02-13T00:35:41.170] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:35:41.204] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:35:41.276] [INFO] cheese - inserting 1000 documents. first: Chelsea Maning and last: Victor Garcia de la Concha -[2018-02-13T00:35:41.338] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:35:41.392] [INFO] cheese - inserting 1000 documents. first: Category:Alcaldes of the Second Spanish Republic and last: Category:Wars of the Diadochi -[2018-02-13T00:35:41.430] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:35:41.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Webalbum and last: G.W. Reynolds -[2018-02-13T00:35:41.488] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:35:41.559] [INFO] cheese - inserting 1000 documents. first: Category:Regiments by war and last: File:Alvin T. Smith.png -[2018-02-13T00:35:41.566] [INFO] cheese - inserting 1000 documents. first: Candalides helenita and last: Jongblood Primary -[2018-02-13T00:35:41.576] [INFO] cheese - inserting 1000 documents. first: Immersion heater and last: Oland Brewery -[2018-02-13T00:35:41.614] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:35:41.620] [INFO] cheese - inserting 1000 documents. first: John B. Lange Middle School and last: File:LEAD Pakistan Logo.png -[2018-02-13T00:35:41.620] [INFO] cheese - inserting 1000 documents. first: Chicago Film Critics Association and last: Model building code -[2018-02-13T00:35:41.628] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:41.632] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:35:41.670] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:35:41.719] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:35:42.036] [INFO] cheese - inserting 1000 documents. first: G.V. Kromah and last: Newmans Weir -[2018-02-13T00:35:42.127] [INFO] cheese - inserting 1000 documents. first: Liquor Monopoly of Sweden and last: Category:2007 Southern Conference baseball season -[2018-02-13T00:35:42.139] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:35:42.274] [INFO] cheese - inserting 1000 documents. first: Ayuba Suleiman Diallo and last: Clepsydra Geyser -[2018-02-13T00:35:42.276] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:35:42.345] [INFO] cheese - inserting 1000 documents. first: Category:Conflicts in 1339 and last: Wikipedia:Articles for deletion/Georgia – South Africa relations -[2018-02-13T00:35:42.422] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:35:42.456] [INFO] cheese - inserting 1000 documents. first: Qeshlaq-e Barandaq and last: Africa News Service -[2018-02-13T00:35:42.508] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:35:42.538] [INFO] cheese - inserting 1000 documents. first: Church of St. Gregory the Great (New York City) and last: Wikipedia:WikiProject Spam/Local/getbig.com -[2018-02-13T00:35:42.607] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:35:42.679] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T00:35:42.739] [INFO] cheese - inserting 1000 documents. first: Victrack and last: St George's German Lutheran Church -[2018-02-13T00:35:42.765] [INFO] cheese - inserting 1000 documents. first: Muscle contraction and last: Wikipedia:Articles for deletion/Spanglew -[2018-02-13T00:35:42.782] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:35:42.840] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:35:42.882] [INFO] cheese - inserting 1000 documents. first: Ryoma Baba and last: Josef Hauser (player) -[2018-02-13T00:35:42.933] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:35:42.970] [INFO] cheese - inserting 1000 documents. first: Tropical Depression One (2009) and last: File:ThinkBigCovers.jpg -[2018-02-13T00:35:42.982] [INFO] cheese - inserting 1000 documents. first: Lost on a Mountain in Maine and last: Thoughtform -[2018-02-13T00:35:43.044] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:43.047] [INFO] cheese - inserting 1000 documents. first: Julius Muthamia and last: Category:Populated places in the Engcobo Local Municipality -[2018-02-13T00:35:43.059] [INFO] cheese - inserting 1000 documents. first: Category:Townlands of County Monaghan and last: Miramichi Rural School -[2018-02-13T00:35:43.063] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:35:43.130] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:35:43.150] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:35:43.272] [INFO] cheese - inserting 1000 documents. first: Inter-University Seminar on Armed Forces and Society and last: The Flirting Widow -[2018-02-13T00:35:43.312] [INFO] cheese - inserting 1000 documents. first: Fix This Yard and last: I've Been In Love Before (song) -[2018-02-13T00:35:43.332] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:35:43.355] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:35:43.425] [INFO] cheese - inserting 1000 documents. first: Methylarginine and last: Template:GoldenGlobeBestSuppActorMotionPicture 1943–1960 -[2018-02-13T00:35:43.463] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:35:43.513] [INFO] cheese - inserting 1000 documents. first: T-minus and last: Herald Tribune -[2018-02-13T00:35:43.513] [INFO] cheese - inserting 1000 documents. first: Bakke and last: Palestine (region) -[2018-02-13T00:35:43.534] [INFO] cheese - inserting 1000 documents. first: Nelson Rural School and last: File:Drifters Poster.jpg -[2018-02-13T00:35:43.570] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:35:43.574] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in the Intsika Yethu Local Municipality and last: Philippines at the 2012 Asian Beach Games -[2018-02-13T00:35:43.580] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:35:43.600] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:35:43.638] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:43.700] [INFO] cheese - inserting 1000 documents. first: Carl Hugo Johansson and last: Miriam O'Callaghan -[2018-02-13T00:35:43.845] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:35:44.011] [INFO] cheese - inserting 1000 documents. first: NKFD and last: Submarine Squadron 3 -[2018-02-13T00:35:44.060] [INFO] cheese - inserting 1000 documents. first: Nathan (Prophet) and last: Template:WPAM -[2018-02-13T00:35:44.095] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:44.165] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:35:44.311] [INFO] cheese - inserting 1000 documents. first: Category:Years in Hamburg and last: 2013 Asian Athletics Championships – Women's heptathlon -[2018-02-13T00:35:44.327] [INFO] cheese - inserting 1000 documents. first: Courage Competition and last: The Lost -[2018-02-13T00:35:44.350] [INFO] cheese - inserting 1000 documents. first: Settignano, Desiderio da and last: Wikipedia:Help desk/Archives/2007 October 9 -[2018-02-13T00:35:44.365] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:35:44.387] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:35:44.505] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:35:44.534] [INFO] cheese - inserting 1000 documents. first: Panda Security and last: Weasel (disambiguation) -[2018-02-13T00:35:44.553] [INFO] cheese - inserting 1000 documents. first: Matlab Gonj J. B. High School and last: Forever Fever -[2018-02-13T00:35:44.665] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:35:44.716] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T00:35:44.787] [INFO] cheese - inserting 1000 documents. first: PG-WPD and last: Pomus -[2018-02-13T00:35:44.822] [INFO] cheese - inserting 1000 documents. first: Maurice "The Rocket" Richard and last: Category:Houses completed in 1996 -[2018-02-13T00:35:44.842] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:35:44.875] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:35:44.903] [INFO] cheese - inserting 1000 documents. first: Men in Pink and last: Rufus and Flora Bates House -[2018-02-13T00:35:44.918] [INFO] cheese - inserting 1000 documents. first: And the Days We Chance Upon... and last: File:C&PVA.jpg -[2018-02-13T00:35:44.965] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:35:44.972] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:35:45.011] [INFO] cheese - inserting 1000 documents. first: Category:Visakhapatnam articles by quality and last: Club-tipped whorled wattle -[2018-02-13T00:35:45.033] [INFO] cheese - inserting 1000 documents. first: Red-chested goshawk and last: My Son The Fanatic -[2018-02-13T00:35:45.052] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:45.089] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:45.214] [INFO] cheese - inserting 1000 documents. first: SB203580 and last: Googol Hyperplex -[2018-02-13T00:35:45.215] [INFO] cheese - inserting 1000 documents. first: Radio BA and last: Descendants of Gautama Buddha -[2018-02-13T00:35:45.250] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:35:45.261] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:45.326] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese states and last: File:Amiga Defender of the Crown raid.png -[2018-02-13T00:35:45.341] [INFO] cheese - inserting 1000 documents. first: Thomas Gorman and last: Effective Lagrangian -[2018-02-13T00:35:45.422] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:35:45.430] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:35:45.457] [INFO] cheese - inserting 1000 documents. first: Enaliarctos barnesi and last: Adil Haider -[2018-02-13T00:35:45.510] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:45.518] [INFO] cheese - inserting 1000 documents. first: Furio Piccirilli and last: Mara Montes -[2018-02-13T00:35:45.607] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:35:45.633] [INFO] cheese - inserting 1000 documents. first: Nisha Patel-Nasri and last: Adgandestrius -[2018-02-13T00:35:45.719] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:35:45.825] [INFO] cheese - inserting 1000 documents. first: File:Groovemasters Reed Juber.jpg and last: IBM - International Business Machines -[2018-02-13T00:35:45.856] [INFO] cheese - inserting 1000 documents. first: Category:Americans convicted of spying for Cuba and last: Wikipedia:Articles for deletion/Yonder (comics) -[2018-02-13T00:35:45.886] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:35:45.917] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:35:45.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Main moon productions and last: File:BalticRibbon.png -[2018-02-13T00:35:45.968] [INFO] cheese - inserting 1000 documents. first: James Morton (Alpha Phi Alpha) and last: H. Smith (crater) -[2018-02-13T00:35:46.003] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:35:46.011] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:46.077] [INFO] cheese - inserting 1000 documents. first: NetDevil and last: Müllerebe -[2018-02-13T00:35:46.148] [INFO] cheese - inserting 1000 documents. first: Lower Saint Regis Lake and last: Wynnewood Road (NHSL station) -[2018-02-13T00:35:46.152] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:35:46.206] [INFO] cheese - inserting 1000 documents. first: Vladimir Hutt and last: Onychospina -[2018-02-13T00:35:46.210] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:35:46.267] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:35:46.332] [INFO] cheese - inserting 1000 documents. first: Religion and culture in ancient Iran and last: Jakob Erbar -[2018-02-13T00:35:46.346] [INFO] cheese - inserting 1000 documents. first: Harrington (crater) and last: File:Buddy Arnold.jpg -[2018-02-13T00:35:46.396] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:35:46.398] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Douglas County, Wisconsin and last: Shandao Temple -[2018-02-13T00:35:46.402] [INFO] cheese - inserting 1000 documents. first: José Castro and last: Sirkeci -[2018-02-13T00:35:46.401] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:35:46.460] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:35:46.472] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:35:46.630] [INFO] cheese - inserting 1000 documents. first: Jordan Township, Jasper County, Indiana and last: Li Sheng (artist) -[2018-02-13T00:35:46.660] [INFO] cheese - inserting 1000 documents. first: George Villiers Duke of Buckingham and last: National Register of Historic Places listings in Missouri, Counties D-I -[2018-02-13T00:35:46.672] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:35:46.695] [INFO] cheese - inserting 1000 documents. first: Roger Goupillières and last: Book:Gamma Rays -[2018-02-13T00:35:46.704] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:35:46.744] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:35:46.751] [INFO] cheese - inserting 1000 documents. first: Stratin and last: Corridor D (Europe) -[2018-02-13T00:35:46.780] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:35:46.830] [INFO] cheese - inserting 1000 documents. first: Azal Espanhol and last: 1954 British Grand Prix -[2018-02-13T00:35:46.904] [INFO] cheese - inserting 1000 documents. first: Template:Student project tutorial/core/project is live/DYK and last: Anak ni Zuma -[2018-02-13T00:35:46.905] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:35:46.932] [INFO] cheese - inserting 1000 documents. first: Portal:Thailand/WikiProjects and last: Madison International Speedway -[2018-02-13T00:35:47.004] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:35:47.021] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:35:47.139] [INFO] cheese - inserting 1000 documents. first: Tricuspid (valve) stenosis and last: Kingdom of Aethelmearc -[2018-02-13T00:35:47.188] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Missouri, Counties J-K and last: Siege of Genoa (1747) -[2018-02-13T00:35:47.219] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:35:47.239] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:47.270] [INFO] cheese - inserting 1000 documents. first: Robert L. Wilson House and last: Mostafa Al-Abbad -[2018-02-13T00:35:47.310] [INFO] cheese - inserting 1000 documents. first: Category:People from Suffern, New York and last: Wikipedia:Sockpuppet investigations/67.87.140.155 -[2018-02-13T00:35:47.323] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:35:47.371] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:35:47.448] [INFO] cheese - inserting 1000 documents. first: Bordello of Blood (song) and last: Eustixia pupula -[2018-02-13T00:35:47.479] [INFO] cheese - inserting 1000 documents. first: Category:Structure and last: The Wink (Seinfeld) -[2018-02-13T00:35:47.501] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:47.528] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:35:47.584] [INFO] cheese - inserting 1000 documents. first: Yo-Yo (album) and last: Wikipedia:Version 1.0 Editorial Team/Philosopher articles by quality/2 -[2018-02-13T00:35:47.594] [INFO] cheese - inserting 1000 documents. first: Valery Karnitsky and last: Napoléon Louis de Talleyrand-Périgord, duc de Valençay -[2018-02-13T00:35:47.604] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Kershaw County, South Carolina and last: File:Comedian-standup-ghuggi.JPG -[2018-02-13T00:35:47.637] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:35:47.655] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:35:47.659] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:47.755] [INFO] cheese - inserting 1000 documents. first: Bassa-Komo language and last: Sadeqabad, Fasa -[2018-02-13T00:35:47.799] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:35:47.826] [INFO] cheese - inserting 1000 documents. first: Portal:Language/Did you know/June 2006 and last: Porthcawl, Wales -[2018-02-13T00:35:47.873] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:35:47.956] [INFO] cheese - inserting 1000 documents. first: Bombay Scottish School, Powai and last: Wikipedia:Articles for deletion/One Beer -[2018-02-13T00:35:47.980] [INFO] cheese - inserting 1000 documents. first: Thelcteria and last: File:Boeing 727-LAB cropped.jpg -[2018-02-13T00:35:47.999] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:35:48.001] [INFO] cheese - inserting 1000 documents. first: Category:1888 establishments in Hong Kong and last: Radio Clash -[2018-02-13T00:35:48.044] [INFO] cheese - inserting 1000 documents. first: Sheer heart attack and last: Ricardo Infante -[2018-02-13T00:35:48.042] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:35:48.066] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:35:48.131] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:48.192] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ceramoporidae and last: 3 Acts of God -[2018-02-13T00:35:48.243] [INFO] cheese - inserting 1000 documents. first: Pak Tjokro and last: Gallotia auaritae -[2018-02-13T00:35:48.295] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:35:48.354] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:48.712] [INFO] cheese - inserting 1000 documents. first: Scincogekkonomorph and last: Wikipedia:Articles for deletion/Anis Alamgir -[2018-02-13T00:35:48.776] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:35:48.801] [INFO] cheese - inserting 1000 documents. first: 2004 in Ghana and last: Wikipedia:WikiProject Spam/LinkReports/lensindia.com -[2018-02-13T00:35:48.854] [INFO] cheese - inserting 1000 documents. first: Yokoshiba Station and last: The Gauldal cathedral -[2018-02-13T00:35:48.854] [INFO] cheese - inserting 1000 documents. first: LG VX8350 and last: Rambo to Hell and Back -[2018-02-13T00:35:48.905] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:35:48.928] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:35:48.932] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:35:49.016] [INFO] cheese - inserting 1000 documents. first: Category:Medical and health organisations in Senegal and last: Ormond Beach Municipal (airport) -[2018-02-13T00:35:49.048] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:35:49.072] [INFO] cheese - inserting 1000 documents. first: William Bingham Compton, 6th Marquess of Northampton and last: Wikipedia:POTD column/June 17, 2006 -[2018-02-13T00:35:49.080] [INFO] cheese - inserting 1000 documents. first: Rose Tree and last: Bascanichthys bascanoides -[2018-02-13T00:35:49.112] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:35:49.124] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:35:49.280] [INFO] cheese - inserting 1000 documents. first: Kerala House and last: Issaquah Class ferry -[2018-02-13T00:35:49.293] [INFO] cheese - inserting 1000 documents. first: Portal:Michigan Highways/Selected picture/September 2012 and last: Template:C.D. Tondela -[2018-02-13T00:35:49.321] [INFO] cheese - inserting 1000 documents. first: Finlaggan and last: J. Dudley Goodlette -[2018-02-13T00:35:49.324] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:35:49.350] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:49.368] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:35:49.394] [INFO] cheese - inserting 1000 documents. first: Osaka International (airport) and last: Nickel Coin Mares' Standard Open NH Flat Race -[2018-02-13T00:35:49.448] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:35:49.584] [INFO] cheese - inserting 1000 documents. first: Sooty Sand-Eel and last: Category:Rural Districts of Sistan and Baluchestan Province -[2018-02-13T00:35:49.633] [INFO] cheese - inserting 1000 documents. first: 1954 German Grand Prix and last: Institutions of the European Union -[2018-02-13T00:35:49.657] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:35:49.701] [INFO] cheese - inserting 1000 documents. first: The Office (American TV series) and last: Will June -[2018-02-13T00:35:49.723] [INFO] cheese - batch complete in: 2.818 secs -[2018-02-13T00:35:49.743] [INFO] cheese - inserting 1000 documents. first: Template:Uw-vandal and last: Castle of Rozafa -[2018-02-13T00:35:49.755] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:35:49.771] [INFO] cheese - inserting 1000 documents. first: 1671 in poetry and last: Jack Cunliffe -[2018-02-13T00:35:49.782] [INFO] cheese - inserting 1000 documents. first: Akhtar Mohammed and last: Category:Funk dance -[2018-02-13T00:35:49.837] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:35:49.902] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:49.931] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:35:50.123] [INFO] cheese - inserting 1000 documents. first: File:MercyMe All of Creation.ogg and last: Tennessee Whiskey (album) -[2018-02-13T00:35:50.203] [INFO] cheese - inserting 1000 documents. first: File:Rupee's Valuation.jpg and last: Shaw Charity Classic -[2018-02-13T00:35:50.251] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:35:50.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wooburn Grange Country Club and last: Horst Bredekamp -[2018-02-13T00:35:50.368] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:35:50.572] [INFO] cheese - inserting 1000 documents. first: Advertising Media Scheduling and last: Wikipedia:Articles for deletion/Vsevolod Holubovych -[2018-02-13T00:35:50.621] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:35:50.672] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:35:50.722] [INFO] cheese - inserting 1000 documents. first: File:Bostik-brand.svg and last: Wikipedia:WikiProject Trains/ICC valuations/Reading, Marietta and Hanover Railroad -[2018-02-13T00:35:50.764] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:35:50.829] [INFO] cheese - inserting 1000 documents. first: Braniew and last: Category:Biota of Ireland -[2018-02-13T00:35:50.897] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:35:50.938] [INFO] cheese - inserting 1000 documents. first: Live in Allentown and last: Soo-Myun Kim -[2018-02-13T00:35:50.996] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:35:51.065] [INFO] cheese - inserting 1000 documents. first: 2002 European Grand Prix and last: Saint-Joseph (AOC) -[2018-02-13T00:35:51.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/operaincerta.it and last: Brian Wilson (systems scientist) -[2018-02-13T00:35:51.130] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T00:35:51.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Nickelodeon/Nicktoons task force/Recognized content and last: "The Man From the USSR" and other plays : With Two Essays on the Drama -[2018-02-13T00:35:51.176] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:35:51.178] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:35:51.278] [INFO] cheese - inserting 1000 documents. first: Nocton v Lord Ashburton and last: 2005 NRL Finals Series -[2018-02-13T00:35:51.342] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:51.386] [INFO] cheese - inserting 1000 documents. first: Anti-System and last: Template:Revúca District -[2018-02-13T00:35:51.412] [INFO] cheese - inserting 1000 documents. first: Hubert Shurtz and last: Sabah Chinese Association -[2018-02-13T00:35:51.444] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:35:51.482] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:35:51.561] [INFO] cheese - inserting 1000 documents. first: Category:Populated places on the Marikina River and last: File:Hen's Teeth and Horse's Toes.jpg -[2018-02-13T00:35:51.621] [INFO] cheese - inserting 1000 documents. first: "The Man from the USSR" and other Plays : With Two Essays on the Drama and last: Template:Yoram Gross -[2018-02-13T00:35:51.626] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T00:35:51.684] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:35:51.693] [INFO] cheese - inserting 1000 documents. first: Dawid Moryc Apfelbaum and last: File:Laurajeanourswansongcover.jpg -[2018-02-13T00:35:51.761] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:35:51.808] [INFO] cheese - inserting 1000 documents. first: Winterthour (district) and last: Jawa (Indonesia) -[2018-02-13T00:35:51.868] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:35:51.879] [INFO] cheese - inserting 1000 documents. first: List of World War II war correspondents (1942-43) and last: Subinaghi -[2018-02-13T00:35:51.908] [INFO] cheese - inserting 1000 documents. first: Frangelico and last: Churchill River (Hudson Bay) -[2018-02-13T00:35:51.949] [INFO] cheese - inserting 1000 documents. first: File:Koolie Family.jpg and last: HuaiNanZi -[2018-02-13T00:35:51.961] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:35:52.003] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:35:52.044] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:35:52.074] [INFO] cheese - inserting 1000 documents. first: Kununurra Airport and last: Puchalapalli Sundaraiah -[2018-02-13T00:35:52.134] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:52.228] [INFO] cheese - inserting 1000 documents. first: John Rudolph Niernsee and last: Oakland Auditorium Arena -[2018-02-13T00:35:52.268] [INFO] cheese - inserting 1000 documents. first: Flux Pavillion and last: Mijikenda language -[2018-02-13T00:35:52.288] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:52.319] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:35:52.360] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Gargamel62/The Studio (Company) and last: Capparella -[2018-02-13T00:35:52.390] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:52.506] [INFO] cheese - inserting 1000 documents. first: Cirrhimuraena paucidens and last: File:Kate Ryan-Light in the Dark-single.jpg -[2018-02-13T00:35:52.536] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:35:52.583] [INFO] cheese - inserting 1000 documents. first: Category:Lists of United States placename etymology and last: Networking processors -[2018-02-13T00:35:52.608] [INFO] cheese - inserting 1000 documents. first: Yitzchak adlerstein and last: Wikipedia:WikiProject Spam/LinkReports/keith-koep.com -[2018-02-13T00:35:52.643] [INFO] cheese - inserting 1000 documents. first: Category:1924 establishments in Belgium and last: Communist Cambodia (disambiguation) -[2018-02-13T00:35:52.645] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:35:52.650] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:35:52.664] [INFO] cheese - inserting 1000 documents. first: USS LST-557 and last: Category:Top-importance Bengal articles -[2018-02-13T00:35:52.671] [INFO] cheese - inserting 1000 documents. first: Time-memory trade-off and last: KFFC -[2018-02-13T00:35:52.695] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:35:52.735] [INFO] cheese - inserting 1000 documents. first: Cappelluzzo and last: Category:Kosovar beauty pageant winners -[2018-02-13T00:35:52.743] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:35:52.748] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:35:52.782] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:35:52.841] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/expressdebanat.ro and last: Liotia atomus -[2018-02-13T00:35:52.882] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:35:53.009] [INFO] cheese - inserting 1000 documents. first: Glinica, Głogów County and last: Stara Góra -[2018-02-13T00:35:53.042] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Bengal articles and last: St John’s School, Kempston -[2018-02-13T00:35:53.062] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:35:53.076] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:35:53.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dimitri Spanoa and last: Chongtar -[2018-02-13T00:35:53.106] [INFO] cheese - inserting 1000 documents. first: Leopoldo de Gregorio, Marquis of Esquilache and last: File:UMassFive-logo.png -[2018-02-13T00:35:53.126] [INFO] cheese - inserting 1000 documents. first: Neusser Straße/Gürtel (KVB) and last: John Howard Clark -[2018-02-13T00:35:53.140] [INFO] cheese - inserting 1000 documents. first: Velocidad Total and last: Template:Long geological range -[2018-02-13T00:35:53.145] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:35:53.151] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:35:53.173] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:35:53.189] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:53.345] [INFO] cheese - inserting 1000 documents. first: You're Only Lonely and last: Samuel Balto -[2018-02-13T00:35:53.487] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:35:53.527] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia C-Class vital articles in Art and last: Justin Jones (guitarist) -[2018-02-13T00:35:53.622] [INFO] cheese - inserting 1000 documents. first: 99 North and last: Port of Chicago -[2018-02-13T00:35:53.648] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:53.690] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:35:53.750] [INFO] cheese - inserting 1000 documents. first: Gelae (tribe) and last: Nintendo 3DS line -[2018-02-13T00:35:53.752] [INFO] cheese - inserting 1000 documents. first: Category:Basketball templates by country and last: File:Shubhodrishti 2005 poster.jpg -[2018-02-13T00:35:53.799] [INFO] cheese - inserting 1000 documents. first: January 1910 Stanley Cup championship and last: Marco degli Ambrosi -[2018-02-13T00:35:53.835] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:53.837] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:35:53.893] [INFO] cheese - inserting 1000 documents. first: I Love 1976 and last: NES Zeldas -[2018-02-13T00:35:53.958] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:35:53.998] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:35:54.166] [INFO] cheese - inserting 1000 documents. first: Polly Burton and last: MOSI of Tampa -[2018-02-13T00:35:54.210] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:35:54.253] [INFO] cheese - inserting 1000 documents. first: China Railways QJ and last: Wikipedia:Vietnam -[2018-02-13T00:35:54.317] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:35:54.340] [INFO] cheese - inserting 1000 documents. first: Black Bindweed and last: Norma McCormick -[2018-02-13T00:35:54.341] [INFO] cheese - inserting 1000 documents. first: English (Evangelical) Lutheran Conference of Missouri and last: Commander's Call -[2018-02-13T00:35:54.349] [INFO] cheese - inserting 1000 documents. first: Fanlight Fanny and last: Ventral roots of the spinal nerves -[2018-02-13T00:35:54.389] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:35:54.394] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:35:54.399] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:35:54.449] [INFO] cheese - inserting 1000 documents. first: Westland-Yeovil and last: MV Leirna -[2018-02-13T00:35:54.492] [INFO] cheese - inserting 1000 documents. first: Famicom Zelda games and last: Chapeltoun, east ayrshire -[2018-02-13T00:35:54.495] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:35:54.549] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:35:54.588] [INFO] cheese - inserting 1000 documents. first: Missouri Courts and last: Kulshekar -[2018-02-13T00:35:54.633] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:35:54.656] [INFO] cheese - inserting 1000 documents. first: Granowice and last: Wikipedia:Articles for deletion/Noctis (Band) -[2018-02-13T00:35:54.697] [INFO] cheese - inserting 1000 documents. first: Category:1566 in the Philippines and last: Aalborg Symphony Orchestra -[2018-02-13T00:35:54.714] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:35:54.735] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:35:54.763] [INFO] cheese - inserting 1000 documents. first: Ventral root of the spinal nerve and last: D-glycerate:NAD+ oxidoreductase -[2018-02-13T00:35:54.853] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:35:54.936] [INFO] cheese - inserting 1000 documents. first: Râjleţu-Govora and last: Dinculesti -[2018-02-13T00:35:55.026] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:35:55.064] [INFO] cheese - inserting 1000 documents. first: Rr Lyrae Variables and last: Category:Ballet companies in Germany -[2018-02-13T00:35:55.097] [INFO] cheese - inserting 1000 documents. first: 4-phospho-D-erythronate:NAD+ 2-oxidoreductase and last: (R)-tetrahydroberberine:NADP+ oxidoreductase -[2018-02-13T00:35:55.109] [INFO] cheese - inserting 1000 documents. first: Vancouver 86ers and last: File:AbaBayefsky.png -[2018-02-13T00:35:55.113] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:35:55.117] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:35:55.179] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:35:55.267] [INFO] cheese - inserting 1000 documents. first: Hernando de Alvarado Tezozómoc and last: Vista(IIMB Fest) -[2018-02-13T00:35:55.289] [INFO] cheese - inserting 1000 documents. first: Etoile Haitienne and last: UDP-D-galacturonate:(1-4)-alpha-poly-D-galacturonate 4-alpha-D-galacturonosyltransferase -[2018-02-13T00:35:55.306] [INFO] cheese - batch complete in: 0.193 secs -[2018-02-13T00:35:55.323] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:35:55.360] [INFO] cheese - inserting 1000 documents. first: John M. Gearin and last: Ark (toy company) -[2018-02-13T00:35:55.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Xebulon/Archive and last: Musée alsacien (disambiguation) -[2018-02-13T00:35:55.414] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:35:55.429] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:35:55.436] [INFO] cheese - inserting 1000 documents. first: UDP-alpha-D-galactose:lipopolysaccharide 3-alpha-D-galactosyltransferase and last: S-adenozil-L-homocysteine homocysteinylribohydrolase -[2018-02-13T00:35:55.469] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:35:55.611] [INFO] cheese - inserting 1000 documents. first: FC Pryladyst Mukacheve and last: In This Life (disambiguation) -[2018-02-13T00:35:55.656] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:55.680] [INFO] cheese - inserting 1000 documents. first: Australian Water Dragon and last: Template:Mauritius-footy-bio-stub -[2018-02-13T00:35:55.743] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:55.772] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-09-14 and last: Template:Brooklands-AMG1GP -[2018-02-13T00:35:55.811] [INFO] cheese - inserting 1000 documents. first: S-adenozil-L-homocysteine hydrolase and last: Aakhri Sauda: The Last Deal -[2018-02-13T00:35:55.828] [INFO] cheese - inserting 1000 documents. first: Mánya (disambiguation) and last: Sixteen Acres, Springfield, Massachusetts -[2018-02-13T00:35:55.831] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T00:35:55.860] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:35:55.880] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:35:55.921] [INFO] cheese - inserting 1000 documents. first: This is my rifle and last: WRAC -[2018-02-13T00:35:55.962] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:35:55.971] [INFO] cheese - inserting 1000 documents. first: Lost (television drama) and last: Dune: House Atreides -[2018-02-13T00:35:56.049] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:35:56.279] [INFO] cheese - inserting 1000 documents. first: Steve Knight and last: Breandán Ó hEithir -[2018-02-13T00:35:56.306] [INFO] cheese - inserting 1000 documents. first: 2016 Östersunds FK Season and last: 2014 South American Artistic Gymnastics Championships -[2018-02-13T00:35:56.339] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:35:56.365] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:35:56.371] [INFO] cheese - inserting 1000 documents. first: Douglas Sang-Hue and last: Mas sabe el diablo -[2018-02-13T00:35:56.463] [INFO] cheese - inserting 1000 documents. first: Neon Genesis Evangelion (anime) and last: Category:Defunct organizations based in New York City -[2018-02-13T00:35:56.484] [INFO] cheese - inserting 1000 documents. first: George Otto Simms and last: Anarcho primitivism -[2018-02-13T00:35:56.498] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:35:56.519] [INFO] cheese - inserting 1000 documents. first: John Cornelius Butler and last: Template:WikiProject Badminton -[2018-02-13T00:35:56.558] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:35:56.567] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:35:56.606] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:35:56.657] [INFO] cheese - inserting 1000 documents. first: Fraser – Winter Park (Amtrak station) and last: D-2,6-diaminohexanoate 5,6-aminomutase -[2018-02-13T00:35:56.682] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:35:56.860] [INFO] cheese - inserting 1000 documents. first: Shiki Tsukai and last: Category:Suspected Wikipedia sockpuppets of TimySmidge -[2018-02-13T00:35:56.910] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:35:56.957] [INFO] cheese - inserting 1000 documents. first: File:Russiancolours.jpg and last: GM Tech IV engine -[2018-02-13T00:35:56.965] [INFO] cheese - inserting 1000 documents. first: L-tyrosine 2,3-aminomutase and last: Cerro Iru Willkhi -[2018-02-13T00:35:56.976] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Bradley County, Tennessee and last: Bacon Egg and Cheese sandwich -[2018-02-13T00:35:57.015] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:35:57.021] [INFO] cheese - inserting 1000 documents. first: Famous (Marques Houston album) and last: Bitstamp -[2018-02-13T00:35:57.040] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:35:57.053] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T00:35:57.087] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:35:57.102] [INFO] cheese - inserting 1000 documents. first: NGC 6031 and last: G. D. Vosburg -[2018-02-13T00:35:57.152] [INFO] cheese - inserting 1000 documents. first: File:George Washington Bridge NYC at night 2006.jpg and last: 2006 Men's World Floorball Championships -[2018-02-13T00:35:57.162] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:35:57.233] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:35:57.274] [INFO] cheese - inserting 1000 documents. first: Kim Jin-tae and last: Alfred Jerome Cadman -[2018-02-13T00:35:57.314] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:35:57.415] [INFO] cheese - inserting 1000 documents. first: Conahy Shamrocks GAA and last: Naruto: Shippuden (season 5) -[2018-02-13T00:35:57.441] [INFO] cheese - inserting 1000 documents. first: Brightwater, New Zealand and last: Mississippi H.B. 1523 -[2018-02-13T00:35:57.508] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:35:57.511] [INFO] cheese - inserting 1000 documents. first: 23RAINYDAYS and last: Tattooed Serpent -[2018-02-13T00:35:57.597] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:35:57.684] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:35:57.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/weeshweesh.com and last: Yosuke Ikehata -[2018-02-13T00:35:57.848] [INFO] cheese - inserting 1000 documents. first: Philip Williams (United States Navy) and last: How Not to Die in Less Than 24 Hours -[2018-02-13T00:35:57.890] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:35:57.972] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:35:58.144] [INFO] cheese - inserting 1000 documents. first: Mississippi HB 1523 and last: St. Jason -[2018-02-13T00:35:58.162] [INFO] cheese - inserting 1000 documents. first: New Jersey Lis pendens and last: Dimitar Bosnov -[2018-02-13T00:35:58.195] [INFO] cheese - inserting 1000 documents. first: Nikki Blonski and last: Jacqueline Lamba -[2018-02-13T00:35:58.205] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:35:58.220] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:35:58.287] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T00:35:58.398] [INFO] cheese - inserting 1000 documents. first: Peter Parker 2099 and last: Adolfo Romero Lainas -[2018-02-13T00:35:58.418] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ryn Goblin and last: Arthur Farnsworth -[2018-02-13T00:35:58.437] [INFO] cheese - inserting 1000 documents. first: Sergiu Moga and last: Karl Moor -[2018-02-13T00:35:58.452] [INFO] cheese - inserting 1000 documents. first: List of Fire Emblem: The Sacred Stones characters and last: File:Texasleague.png -[2018-02-13T00:35:58.471] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:35:58.501] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:35:58.509] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:58.540] [INFO] cheese - batch complete in: 1.487 secs -[2018-02-13T00:35:58.639] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 2006 Central American and Caribbean Games and last: Hyogo At-large district -[2018-02-13T00:35:58.656] [INFO] cheese - inserting 1000 documents. first: Stevenage Borough Council election, 2006 and last: Awomo -[2018-02-13T00:35:58.686] [INFO] cheese - inserting 1000 documents. first: Johnny Dollar (musician) and last: Nam khao thod -[2018-02-13T00:35:58.703] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:58.710] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:35:58.745] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:35:58.859] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1967 Pan American Games – Men's 100 metre freestyle and last: Nadahup -[2018-02-13T00:35:58.931] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:58.969] [INFO] cheese - inserting 1000 documents. first: File:Pewee nest 2.jpg and last: Watson Island (disambiguation) -[2018-02-13T00:35:59.021] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:35:59.090] [INFO] cheese - inserting 1000 documents. first: Nigel Brooks and last: Wikipedia:WikiProject Spam/Local/moltech.ru -[2018-02-13T00:35:59.116] [INFO] cheese - inserting 1000 documents. first: Camp one (Guantanamo) and last: Wikipedia:Articles for deletion/Dublin Bus (No. 54A) -[2018-02-13T00:35:59.125] [INFO] cheese - inserting 1000 documents. first: Ibaraki At-large district and last: Shadows 4 -[2018-02-13T00:35:59.128] [INFO] cheese - inserting 1000 documents. first: Egil Skallagrimsson and last: Disfiguration -[2018-02-13T00:35:59.152] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:35:59.239] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:35:59.256] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:35:59.289] [INFO] cheese - inserting 1000 documents. first: Template:1904 MLB season by team and last: Covert Carry -[2018-02-13T00:35:59.309] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:35:59.399] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:59.482] [INFO] cheese - inserting 1000 documents. first: Category:Kabaddi in Pakistan and last: Template:Parajanov -[2018-02-13T00:35:59.536] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:35:59.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teemo and last: Chapolim Colorado -[2018-02-13T00:35:59.714] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:35:59.763] [INFO] cheese - inserting 1000 documents. first: Christian Lucatero and last: Obama ficki -[2018-02-13T00:35:59.787] [INFO] cheese - inserting 1000 documents. first: Category:Ships of the Romanian Naval Forces and last: Clarksville Historic District (Clarksville, Missouri) -[2018-02-13T00:35:59.832] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:35:59.851] [INFO] cheese - inserting 1000 documents. first: Asenova krepost and last: Category:Filipino wrestlers -[2018-02-13T00:35:59.871] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:35:59.948] [INFO] cheese - inserting 1000 documents. first: File:Fanny Fern grave.jpg and last: How Like a Winter -[2018-02-13T00:35:59.979] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:36:00.018] [INFO] cheese - inserting 1000 documents. first: Category:1356 deaths and last: Orochimaru -[2018-02-13T00:36:00.021] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:36:00.088] [INFO] cheese - inserting 1000 documents. first: Delta Shuttle and last: Wikipedia:WikiProject Christianity/Essential articles -[2018-02-13T00:36:00.115] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:36:00.146] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:36:00.334] [INFO] cheese - inserting 1000 documents. first: O Chapolin Colorado and last: Richard Jackson (footballer, born 1980) -[2018-02-13T00:36:00.450] [INFO] cheese - inserting 1000 documents. first: Statistical grammar and last: Dennis Doherty -[2018-02-13T00:36:00.480] [INFO] cheese - inserting 1000 documents. first: Drawehn and last: White Horse Wood -[2018-02-13T00:36:00.493] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:36:00.524] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:36:00.583] [INFO] cheese - inserting 1000 documents. first: The Transformers: Monstrosity and last: Django/Misty -[2018-02-13T00:36:00.608] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:36:00.637] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:36:00.661] [INFO] cheese - inserting 1000 documents. first: Ken Eklund and last: X Triticale -[2018-02-13T00:36:00.733] [INFO] cheese - inserting 1000 documents. first: Mike Anthony Boland and last: Category:French parasitologists -[2018-02-13T00:36:00.743] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:36:00.834] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:36:01.050] [INFO] cheese - inserting 1000 documents. first: Rock Lee and last: File:Juliana Hatfield - Bed.jpg -[2018-02-13T00:36:01.057] [INFO] cheese - inserting 1000 documents. first: Escuela Mexicana del Valle / Americana and last: Elisa Herrero Uceda -[2018-02-13T00:36:01.086] [INFO] cheese - inserting 1000 documents. first: Michael Joseph Dudick and last: Utkala -[2018-02-13T00:36:01.094] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:36:01.121] [INFO] cheese - inserting 1000 documents. first: Physiological needs and last: Oil City Park -[2018-02-13T00:36:01.124] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:36:01.135] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:36:01.160] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Washington Amateur Croquet League and last: Tulip era -[2018-02-13T00:36:01.187] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:36:01.238] [INFO] cheese - inserting 1000 documents. first: Gamba language and last: Long Thanh Town -[2018-02-13T00:36:01.244] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:36:01.272] [INFO] cheese - inserting 1000 documents. first: Nassuvan and last: Category:Florida Comptrollers -[2018-02-13T00:36:01.317] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:36:01.347] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:36:01.452] [INFO] cheese - inserting 1000 documents. first: Netoge and last: Deborah A Miranda -[2018-02-13T00:36:01.494] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:36:01.504] [INFO] cheese - inserting 1000 documents. first: 179th Street Station (Cedar Busway station) and last: Toronto Xtreme -[2018-02-13T00:36:01.544] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:36:01.601] [INFO] cheese - inserting 1000 documents. first: LJY and last: Maguma -[2018-02-13T00:36:01.642] [INFO] cheese - inserting 1000 documents. first: Starsky and Hutch and last: Aq Bolagh-e Bala -[2018-02-13T00:36:01.646] [INFO] cheese - inserting 1000 documents. first: Tanya (name) and last: James Beaty, Sr. -[2018-02-13T00:36:01.650] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:36:01.669] [INFO] cheese - inserting 1000 documents. first: Powder Monkey (novel) and last: 2002 European Athletics Championships – Men's triple jump -[2018-02-13T00:36:01.687] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:36:01.699] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:36:01.722] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:36:01.814] [INFO] cheese - inserting 1000 documents. first: Daybreak and last: Peek (crater) -[2018-02-13T00:36:01.890] [INFO] cheese - inserting 1000 documents. first: The Uranian and last: Gul gulshan gulfaam -[2018-02-13T00:36:01.903] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:36:01.926] [INFO] cheese - inserting 1000 documents. first: Acacia cupularis and last: Isthmus of Parpach -[2018-02-13T00:36:01.933] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:36:02.070] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:36:02.251] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Beer articles and last: Aerated biofilters -[2018-02-13T00:36:02.275] [INFO] cheese - inserting 1000 documents. first: Ghost amendment and last: A/L iiwarai -[2018-02-13T00:36:02.334] [INFO] cheese - inserting 1000 documents. first: Markus Feulner and last: Template:Hlohovec District -[2018-02-13T00:36:02.340] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:36:02.342] [INFO] cheese - inserting 1000 documents. first: Bayntun-Sandys baronets and last: Yuanping, Shanxi -[2018-02-13T00:36:02.353] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:02.385] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:36:02.402] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:36:02.481] [INFO] cheese - inserting 1000 documents. first: Category:Banks disestablished in 1925 and last: Ostend–Bruges International -[2018-02-13T00:36:02.510] [INFO] cheese - inserting 1000 documents. first: ATCvet code QG52 and last: Mama Do -[2018-02-13T00:36:02.542] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:02.573] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:36:02.677] [INFO] cheese - inserting 1000 documents. first: Osvaldo Vieira International and last: Orlando Sanford (airport) -[2018-02-13T00:36:02.692] [INFO] cheese - batch complete in: 0.15 secs -[2018-02-13T00:36:02.707] [INFO] cheese - inserting 1000 documents. first: Sir Francis Windebank and last: Wikipedia:WikiProject Spam/LinkReports/club-creative.pp.net.ua -[2018-02-13T00:36:02.712] [INFO] cheese - inserting 1000 documents. first: ERK (disambiguation) and last: Styx II -[2018-02-13T00:36:02.746] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:36:02.764] [INFO] cheese - inserting 1000 documents. first: Immortal (stable) and last: Dash Bolaghi -[2018-02-13T00:36:02.785] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:36:02.800] [INFO] cheese - inserting 1000 documents. first: Stanley Island and last: Jeff Henley -[2018-02-13T00:36:02.809] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:02.832] [INFO] cheese - inserting 1000 documents. first: Cosmo Jones in 'Crime Smasher' and last: Mike Clark (Jicks) -[2018-02-13T00:36:02.868] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:36:02.887] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:02.945] [INFO] cheese - inserting 1000 documents. first: Category:Rugby union tours of Zimbabwe and last: Template:Dutch Footballer of the Year -[2018-02-13T00:36:03.008] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:36:03.019] [INFO] cheese - inserting 1000 documents. first: Osaka (airport) and last: Hymyileva Mies -[2018-02-13T00:36:03.064] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:36:03.076] [INFO] cheese - inserting 1000 documents. first: Lex Calpurnia and last: Amos Milton Musser -[2018-02-13T00:36:03.119] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:36:03.165] [INFO] cheese - inserting 1000 documents. first: Joyce Kakuramatsi Kikafunda and last: Category:AfC submissions by date/08 September 2013 -[2018-02-13T00:36:03.210] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:36:03.260] [INFO] cheese - inserting 1000 documents. first: Baron Lytton and last: Category:Cass County, Indiana -[2018-02-13T00:36:03.275] [INFO] cheese - inserting 1000 documents. first: Portal:Technology/Selected article/archive and last: File:Logging train.jpg -[2018-02-13T00:36:03.327] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:03.340] [INFO] cheese - inserting 1000 documents. first: One Two Go Airlines Company Limited and last: Category:1548 compositions -[2018-02-13T00:36:03.370] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:36:03.465] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:03.508] [INFO] cheese - inserting 1000 documents. first: Craig Cobb and last: File:Claremont High School Logo.jpg -[2018-02-13T00:36:03.580] [INFO] cheese - inserting 1000 documents. first: Before the Thrones and last: Is This Real? (lisahall album) -[2018-02-13T00:36:03.606] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:36:03.653] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:36:03.692] [INFO] cheese - inserting 1000 documents. first: Template:TFA title/September 11, 2013 and last: Loca (Dana International song) -[2018-02-13T00:36:03.718] [INFO] cheese - inserting 1000 documents. first: Category:Clark County, Indiana and last: Category:Buffalo County, South Dakota -[2018-02-13T00:36:03.719] [INFO] cheese - inserting 1000 documents. first: File:Cbc.png and last: Template:Vw6 -[2018-02-13T00:36:03.740] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:36:03.758] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:36:03.789] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:03.934] [INFO] cheese - inserting 1000 documents. first: Aiton, Cluj and last: Etou Megumi -[2018-02-13T00:36:03.976] [INFO] cheese - inserting 1000 documents. first: Dead in the Water (Supernatural) and last: Template:South Africa Squad 2013 Women's Cricket World Cup -[2018-02-13T00:36:03.982] [INFO] cheese - inserting 1000 documents. first: Category:Cornett players and last: Cooley anaemia -[2018-02-13T00:36:03.991] [INFO] cheese - inserting 1000 documents. first: Mount Chomolungma and last: Piz Toissa -[2018-02-13T00:36:03.989] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:36:04.012] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:36:04.034] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:36:04.062] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:36:04.121] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1240 and last: Computer reservation system -[2018-02-13T00:36:04.166] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:04.187] [INFO] cheese - inserting 1000 documents. first: 2013–14 Baltic Basketball League and last: Ford R1014 -[2018-02-13T00:36:04.228] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:36:04.259] [INFO] cheese - inserting 1000 documents. first: Touch detective 2 and last: Sophie Charlotte of Bavaria -[2018-02-13T00:36:04.267] [INFO] cheese - inserting 1000 documents. first: Nizzetto and last: Awards and nominations received by Elena Paparizou -[2018-02-13T00:36:04.305] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:36:04.324] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:04.327] [INFO] cheese - inserting 1000 documents. first: Eastham v Newcastle United FC and last: Wikipedia:WikiProject Spam/LinkReports/ulscr.org.uk -[2018-02-13T00:36:04.377] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:36:04.416] [INFO] cheese - inserting 1000 documents. first: Mike V and last: Pittsburgh Dance Council -[2018-02-13T00:36:04.477] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:36:04.488] [INFO] cheese - inserting 1000 documents. first: Awards and nominations received by Elizabeth Taylor and last: Songs recorded by Stateless -[2018-02-13T00:36:04.511] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:36:04.562] [INFO] cheese - inserting 1000 documents. first: Tonight Tonight (EP) and last: Seduction (Wiley song) -[2018-02-13T00:36:04.616] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:36:04.619] [INFO] cheese - inserting 1000 documents. first: Qarah Chanaq, Ardabil and last: Dim Seqerlu -[2018-02-13T00:36:04.667] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:36:04.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Statto-JTA Publishing Corporation and last: Category:Elevators -[2018-02-13T00:36:04.828] [INFO] cheese - inserting 1000 documents. first: Category:Reading skill advocates and last: Joshua Holmes (rugby union) -[2018-02-13T00:36:04.837] [INFO] cheese - inserting 1000 documents. first: Large Black pig and last: Wikipedia:Requests for adminship/KieferSkunk -[2018-02-13T00:36:04.842] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:36:04.867] [INFO] cheese - inserting 1000 documents. first: Songs recorded by Status Quo and last: File:Averett stacked logo.png -[2018-02-13T00:36:04.938] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:04.945] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:36:04.960] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:36:04.986] [INFO] cheese - inserting 1000 documents. first: Plain chachalaca and last: Barlaston railway station -[2018-02-13T00:36:05.083] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:36:05.129] [INFO] cheese - inserting 1000 documents. first: Saks (Surname) and last: CSU Galați -[2018-02-13T00:36:05.167] [INFO] cheese - inserting 1000 documents. first: Dim Segherlu and last: Discount rate (disambiguation) -[2018-02-13T00:36:05.175] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:36:05.226] [INFO] cheese - inserting 1000 documents. first: Category:Campeonato Paranaense 1 players and last: Monastir Habib Bourguiba (international airport) -[2018-02-13T00:36:05.228] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:36:05.259] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:36:05.352] [INFO] cheese - inserting 1000 documents. first: Gras, Ardèche and last: Category:Football managers in France by club -[2018-02-13T00:36:05.389] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:36:05.400] [INFO] cheese - inserting 1000 documents. first: File:RedBankJazzBluesFest2009r.jpg and last: Category:Kirkkonummi -[2018-02-13T00:36:05.453] [INFO] cheese - inserting 1000 documents. first: High Tension and last: Ultima 7, pt. 2 -[2018-02-13T00:36:05.455] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:05.478] [INFO] cheese - inserting 1000 documents. first: Template:Snina District and last: Kingston, Hampshire -[2018-02-13T00:36:05.500] [INFO] cheese - inserting 1000 documents. first: Monseñor Óscar Arnulfo Romero (international airport) and last: 2016–17 Central Coast Mariners FC season -[2018-02-13T00:36:05.515] [INFO] cheese - inserting 1000 documents. first: Diz (disambiguation) and last: Countess of Harrington -[2018-02-13T00:36:05.520] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:05.530] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:36:05.533] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:36:05.558] [INFO] cheese - inserting 1000 documents. first: Ecuadorian Spanish and last: Category:2003 in Gaelic football -[2018-02-13T00:36:05.563] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:36:05.609] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:36:05.708] [INFO] cheese - inserting 1000 documents. first: Template:National pitch and putt teams and last: Qijiang -[2018-02-13T00:36:05.743] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:36:05.839] [INFO] cheese - inserting 1000 documents. first: First-mover disadvantage and last: ArtPrize -[2018-02-13T00:36:05.877] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:05.926] [INFO] cheese - inserting 1000 documents. first: Heat leg rash and last: Lesa Ann Pedriana -[2018-02-13T00:36:05.945] [INFO] cheese - inserting 1000 documents. first: Khalil Kandi and last: 2013–14 UMass Minutemen basketball team -[2018-02-13T00:36:05.965] [INFO] cheese - inserting 1000 documents. first: Roman Catholics in Kazakhstan and last: John McLaughlin's One On One -[2018-02-13T00:36:05.994] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Banská Bystrica Region and last: Charlotte Robillard-Millette -[2018-02-13T00:36:05.996] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:36:06.013] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:06.028] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:36:06.059] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:36:06.155] [INFO] cheese - inserting 1000 documents. first: Ultima 7 Part Two and last: Eidi -[2018-02-13T00:36:06.203] [INFO] cheese - inserting 1000 documents. first: Yesterday Man and last: Trivial Pursuit: Unhinged -[2018-02-13T00:36:06.309] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:36:06.335] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:36:06.520] [INFO] cheese - inserting 1000 documents. first: Assyrians and Syriacs in Syria and last: West Virginia Highway 112 -[2018-02-13T00:36:06.526] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Anthony Drazan and last: Category:United Kingdom free speech case law -[2018-02-13T00:36:06.573] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:36:06.584] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:36:06.586] [INFO] cheese - inserting 1000 documents. first: Portal:Conservatism/box-header-main-ctr and last: Vyacheslav Klypo -[2018-02-13T00:36:06.632] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:36:06.660] [INFO] cheese - inserting 1000 documents. first: File:Carmichael clan farmhouse kitchen.jpg and last: Enanthic acid -[2018-02-13T00:36:06.705] [INFO] cheese - inserting 1000 documents. first: Stanley Rabjohn and last: Nicotinamide mononucleotide -[2018-02-13T00:36:06.711] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:36:06.770] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:36:06.858] [INFO] cheese - inserting 1000 documents. first: José Antonio Cedeño and last: Seal Rock (Oregon) -[2018-02-13T00:36:06.916] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:36:06.945] [INFO] cheese - inserting 1000 documents. first: Route 112 (West Virginia) and last: Heisei Harenchi Gakuen -[2018-02-13T00:36:06.987] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:36:07.022] [INFO] cheese - inserting 1000 documents. first: Perinephila and last: Guestling Halt railway station -[2018-02-13T00:36:07.043] [INFO] cheese - inserting 1000 documents. first: Saskatchewan general election, 1912 and last: David Euan Wallace -[2018-02-13T00:36:07.056] [INFO] cheese - inserting 1000 documents. first: Enanthate and last: Portal:Australia/Anniversaries/October/October 27 -[2018-02-13T00:36:07.072] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:07.088] [INFO] cheese - inserting 1000 documents. first: Category:Freedom of speech in the United Kingdom and last: File:Via Castellana Bandiera.jpg -[2018-02-13T00:36:07.108] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Janie Tsao and last: Maxime Hautbois -[2018-02-13T00:36:07.108] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:36:07.113] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:36:07.156] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:36:07.165] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:07.199] [INFO] cheese - inserting 1000 documents. first: Batt and last: Me (Album) -[2018-02-13T00:36:07.232] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:36:07.382] [INFO] cheese - inserting 1000 documents. first: Malignant poroma and last: Hiyama Yuuya -[2018-02-13T00:36:07.429] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:36:07.464] [INFO] cheese - inserting 1000 documents. first: Mass setting and last: Category:Gunnerales -[2018-02-13T00:36:07.503] [INFO] cheese - inserting 1000 documents. first: File:Cholamandalam MS General Insurance.svg and last: Bian language -[2018-02-13T00:36:07.537] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:36:07.557] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:36:07.595] [INFO] cheese - inserting 1000 documents. first: File:Brand New - New Favorite Weapon (Deluxe).jpg and last: List of songs recorded by Lali Espósito -[2018-02-13T00:36:07.597] [INFO] cheese - inserting 1000 documents. first: Norman Greenhalgh and last: Thomas Napier (colonist of Victoria) -[2018-02-13T00:36:07.691] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:07.706] [INFO] cheese - inserting 1000 documents. first: 2007–08 Russian Cup and last: Connecticut Route 215 -[2018-02-13T00:36:07.724] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:36:07.809] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:36:07.812] [INFO] cheese - inserting 1000 documents. first: Gandhi–King Award and last: Berzelius (crater) -[2018-02-13T00:36:07.885] [INFO] cheese - inserting 1000 documents. first: Category:Besançon RC managers and last: Bettina Müller (canoeist) -[2018-02-13T00:36:07.908] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:36:07.948] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:36:08.046] [INFO] cheese - inserting 1000 documents. first: The Boyz (boy band) and last: Category:Colleen Peterson songs -[2018-02-13T00:36:08.082] [INFO] cheese - inserting 1000 documents. first: The Phynx and last: B Grupa -[2018-02-13T00:36:08.095] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:36:08.152] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:36:08.223] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Customusertemplate-ACP2:Be a part of Wikipedia (History, Copyediting) and last: Wikipedia:WikiProject Spam/Local/nma.co.uk -[2018-02-13T00:36:08.239] [INFO] cheese - inserting 1000 documents. first: Newspaper and Stamp Duties Act and last: Super Specialty Hospital -[2018-02-13T00:36:08.293] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:08.312] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:36:08.431] [INFO] cheese - inserting 1000 documents. first: SUDO and last: Modena Team -[2018-02-13T00:36:08.442] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in the Ntambanana Local Municipality and last: Escadrille N.62 -[2018-02-13T00:36:08.443] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 527 and last: Taisiya Laptyeva -[2018-02-13T00:36:08.472] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:36:08.484] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:36:08.502] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:36:08.564] [INFO] cheese - inserting 1000 documents. first: File:South America Precipitation Map (data from 1976-2009).gif and last: Expatriate Afghan football clubs -[2018-02-13T00:36:08.598] [INFO] cheese - inserting 1000 documents. first: DAT Politics and last: Sinfjötli -[2018-02-13T00:36:08.602] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:36:08.608] [INFO] cheese - inserting 1000 documents. first: Heptapolis and last: File:Middlesex county 1875 - carlisle - p45 500.jpg -[2018-02-13T00:36:08.678] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:36:08.684] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:36:08.782] [INFO] cheese - inserting 1000 documents. first: James Daniel (American football coach) and last: Sir David Monro -[2018-02-13T00:36:08.839] [INFO] cheese - inserting 1000 documents. first: Extant papal tombs and last: Sarawak FA international players -[2018-02-13T00:36:08.874] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:08.870] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:36:08.901] [INFO] cheese - inserting 1000 documents. first: Georgie Robertson Christian College and last: Ember Corporation -[2018-02-13T00:36:08.941] [INFO] cheese - inserting 1000 documents. first: Yilngali language and last: City of Gympie -[2018-02-13T00:36:08.962] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:09.012] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:36:09.086] [INFO] cheese - inserting 1000 documents. first: KRCS-FM and last: Wikipedia:WikiProject Spam/LinkReports/physics.mcgill.ca -[2018-02-13T00:36:09.256] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:36:09.330] [INFO] cheese - inserting 1000 documents. first: Diffuser (optics) and last: Category:Literary agents -[2018-02-13T00:36:09.380] [INFO] cheese - inserting 1000 documents. first: Template:ZHCOTM and last: West Grey -[2018-02-13T00:36:09.425] [INFO] cheese - inserting 1000 documents. first: Scarborough F.C. players and last: José Ulisses de Pina Correia e Silva -[2018-02-13T00:36:09.426] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:36:09.487] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:36:09.485] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:36:09.543] [INFO] cheese - inserting 1000 documents. first: Ukfwo language and last: Rachel Dunlop -[2018-02-13T00:36:09.611] [INFO] cheese - inserting 1000 documents. first: SD San Pedro and last: Wikipedia:University of the Philippines -[2018-02-13T00:36:09.635] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:36:09.675] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:36:09.805] [INFO] cheese - inserting 1000 documents. first: Template:Parga div and last: Dragon Dance (novel) -[2018-02-13T00:36:09.852] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:09.873] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bobber-Xi-Wu and last: Portal:India/SC Summary/SP Dal Lake -[2018-02-13T00:36:09.911] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:09.964] [INFO] cheese - inserting 1000 documents. first: Apethorpe Hall and last: Khaled Al-Ansari -[2018-02-13T00:36:09.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:University of the Philippines System and last: Madan, Montana Province -[2018-02-13T00:36:10.015] [INFO] cheese - inserting 1000 documents. first: Category:21st-century disestablishments in Oklahoma and last: Sony DSLR-A100/B -[2018-02-13T00:36:10.023] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:36:10.035] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:36:10.057] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:10.105] [INFO] cheese - inserting 1000 documents. first: Mississippi Mills and last: Everquest II -[2018-02-13T00:36:10.155] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:36:10.203] [INFO] cheese - inserting 1000 documents. first: Sijil Rendah Pelajaran and last: Portal:Southeast Asia/2007 October 23 -[2018-02-13T00:36:10.246] [INFO] cheese - inserting 1000 documents. first: Category:Fictional characters introduced in 1602 and last: Charles Pingle -[2018-02-13T00:36:10.251] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:36:10.300] [INFO] cheese - inserting 1000 documents. first: Frederick Grove and last: Flood Control (Computer Science) -[2018-02-13T00:36:10.348] [INFO] cheese - batch complete in: 1.473 secs -[2018-02-13T00:36:10.352] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:10.418] [INFO] cheese - inserting 1000 documents. first: 2008 Montreux Volley Masters and last: Category:Hupa villages -[2018-02-13T00:36:10.432] [INFO] cheese - inserting 1000 documents. first: Milburg and last: File:AUS Alphanumeric Route C108.svg -[2018-02-13T00:36:10.457] [INFO] cheese - inserting 1000 documents. first: New Zealand NORML and last: Cape San Diego -[2018-02-13T00:36:10.461] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:10.495] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:36:10.508] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:10.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/amigos-de-borges.net and last: 1999 San Diego Padres season -[2018-02-13T00:36:10.653] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:36:10.725] [INFO] cheese - inserting 1000 documents. first: CFRT and last: Colorado Dory -[2018-02-13T00:36:10.794] [INFO] cheese - inserting 1000 documents. first: Eltonåsen and last: Meadow Sweet -[2018-02-13T00:36:10.809] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:36:10.812] [INFO] cheese - inserting 1000 documents. first: File:AUS Alphanumeric Route C109.svg and last: Teleia sultanella -[2018-02-13T00:36:10.898] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:36:10.905] [INFO] cheese - inserting 1000 documents. first: File:Talons Back Cover.jpg and last: Girkalnis -[2018-02-13T00:36:10.906] [INFO] cheese - inserting 1000 documents. first: Category:Milton Wildcats football players and last: Wikipedia:Articles for deletion/1990-95 Southern Hemisphere tropical cyclone seasons -[2018-02-13T00:36:10.963] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:36:11.002] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:36:11.030] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:11.208] [INFO] cheese - inserting 1000 documents. first: Vehicle registration plates of Mrkazi and last: Interessement -[2018-02-13T00:36:11.326] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:36:11.337] [INFO] cheese - inserting 1000 documents. first: Sad Songs and last: Winterville Site -[2018-02-13T00:36:11.398] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:36:11.408] [INFO] cheese - inserting 1000 documents. first: Sergey Tolchinsky and last: Wikipedia:Featured article candidates/History of Aston Villa F.C. (1961-present)/archive1 -[2018-02-13T00:36:11.476] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:11.489] [INFO] cheese - inserting 1000 documents. first: Oecophora tigratella and last: Category:The Band video albums -[2018-02-13T00:36:11.510] [INFO] cheese - inserting 1000 documents. first: Mr Justice Laddie and last: File:CTRP logo.png -[2018-02-13T00:36:11.546] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:36:11.583] [INFO] cheese - inserting 1000 documents. first: White Knuckled Substance and last: Wikipedia:Articles for deletion/California bearing ratio -[2018-02-13T00:36:11.586] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:36:11.632] [INFO] cheese - inserting 1000 documents. first: River Gardens, California and last: Graham School of Continuing Liberal and Professional Studies -[2018-02-13T00:36:11.655] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:36:11.696] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:11.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thailand-Ukraine relations and last: 20va Shatabdam -[2018-02-13T00:36:11.773] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:36:11.816] [INFO] cheese - inserting 1000 documents. first: File:LSD-Flux.jpg and last: Category:World-bearing animals -[2018-02-13T00:36:11.863] [INFO] cheese - inserting 1000 documents. first: Il Signor Bruschino and last: History of University of Texas at Austin -[2018-02-13T00:36:11.866] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:36:11.873] [INFO] cheese - inserting 1000 documents. first: Khanandabil-e Sharqi and last: Harasban -[2018-02-13T00:36:11.902] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:36:11.925] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:36:11.947] [INFO] cheese - inserting 1000 documents. first: Confederation of Workers of the Republic of Panama and last: Buttevent Franciscan Friary -[2018-02-13T00:36:11.980] [INFO] cheese - inserting 1000 documents. first: Ochr 1 and last: Honey Don't (The Beatles song) -[2018-02-13T00:36:12.006] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:36:12.008] [INFO] cheese - batch complete in: 0.235 secs -[2018-02-13T00:36:12.033] [INFO] cheese - inserting 1000 documents. first: Template:Ottawa Renegades and last: Template:Party shading/Coalition -[2018-02-13T00:36:12.083] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:36:12.202] [INFO] cheese - inserting 1000 documents. first: Havay and last: Rancagua de la Independencia Airport -[2018-02-13T00:36:12.228] [INFO] cheese - inserting 1000 documents. first: Honey Pie (The Beatles song) and last: Birds in culture -[2018-02-13T00:36:12.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of 3-2-1 Penguins! episodes and last: Donna Jean & the Tricksters -[2018-02-13T00:36:12.247] [INFO] cheese - inserting 1000 documents. first: Illapel and last: Parabiaugmented dodecahedron -[2018-02-13T00:36:12.254] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:36:12.265] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:36:12.300] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:36:12.323] [INFO] cheese - inserting 1000 documents. first: Arthur Ross (ice hockey) and last: Barefoot sandal -[2018-02-13T00:36:12.333] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:12.366] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:12.401] [INFO] cheese - inserting 1000 documents. first: File:Album Mr Natural.jpg and last: Corium -[2018-02-13T00:36:12.448] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:36:12.463] [INFO] cheese - inserting 1000 documents. first: Template:Party shading/Coalition/doc and last: Gimnàstic Tarragona -[2018-02-13T00:36:12.510] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:12.687] [INFO] cheese - inserting 1000 documents. first: Nicol Drysdale Stenhouse and last: William Duke of Cambridge -[2018-02-13T00:36:12.731] [INFO] cheese - inserting 1000 documents. first: Template:1915-16 Big Ten Conference men's basketball standings and last: Atheocratism -[2018-02-13T00:36:12.793] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:36:12.809] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:36:12.837] [INFO] cheese - inserting 1000 documents. first: Bull Creek, Florida and last: Contact activation pathway -[2018-02-13T00:36:12.890] [INFO] cheese - inserting 1000 documents. first: Shipping pool and last: José Batlle y Ordóñez, Uruguay -[2018-02-13T00:36:12.899] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:36:12.990] [INFO] cheese - inserting 1000 documents. first: Doom Resurrection and last: 1080s in poetry -[2018-02-13T00:36:13.003] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:36:13.066] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:36:13.113] [INFO] cheese - inserting 1000 documents. first: Draft:Oye Akideinde and last: The Hakawati -[2018-02-13T00:36:13.132] [INFO] cheese - inserting 1000 documents. first: Øyvind Rimbereid and last: Lambert Meertens -[2018-02-13T00:36:13.139] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:36:13.171] [INFO] cheese - inserting 1000 documents. first: Metabiaugmented dodecahedron and last: Richard Wylly Habersham -[2018-02-13T00:36:13.196] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:36:13.250] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:36:13.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cellunlockpro.net and last: 1963 UEFA European Under-18 Football Championship -[2018-02-13T00:36:13.395] [INFO] cheese - inserting 1000 documents. first: Thomas Coningsby and last: Carl Brettschneider -[2018-02-13T00:36:13.406] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:36:13.438] [INFO] cheese - inserting 1000 documents. first: File:Eliphalet Ball marker.jpg and last: Template:1999-2000 Northeast Conference men's basketball standings -[2018-02-13T00:36:13.455] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:36:13.463] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:36:13.475] [INFO] cheese - inserting 1000 documents. first: File:Armchair Science first issue (lowres).jpg and last: Ricardo p cruz sr elementary school -[2018-02-13T00:36:13.501] [INFO] cheese - inserting 1000 documents. first: 1070s in poetry and last: It's a Business -[2018-02-13T00:36:13.538] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:13.555] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:36:13.687] [INFO] cheese - inserting 1000 documents. first: Nørre Gymnasium and last: Presa Canario -[2018-02-13T00:36:13.726] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 NHL Central Division standings and last: Template:2010-11 Division I independents standings (men) -[2018-02-13T00:36:13.728] [INFO] cheese - inserting 1000 documents. first: 1964 UEFA European Under-18 Football Championship and last: Mayu language -[2018-02-13T00:36:13.742] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:36:13.764] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:36:13.788] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:36:13.848] [INFO] cheese - inserting 1000 documents. first: Category:South Carolina railroads and last: Trinity Washington University -[2018-02-13T00:36:13.881] [INFO] cheese - inserting 1000 documents. first: Emlyn Hugh Garner Evans and last: Ormenion -[2018-02-13T00:36:13.932] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:36:13.942] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:36:13.962] [INFO] cheese - inserting 1000 documents. first: File:Durga Puja 2008 Mymensingh 5.JPG and last: Dmitry Makarov -[2018-02-13T00:36:13.971] [INFO] cheese - inserting 1000 documents. first: Canyon Lake Dam and last: Wikipedia:Articles for deletion/Deena Martin -[2018-02-13T00:36:14.019] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:36:14.039] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:36:14.057] [INFO] cheese - inserting 1000 documents. first: Pisacayo and last: 706 AD -[2018-02-13T00:36:14.063] [INFO] cheese - inserting 1000 documents. first: Menejou language and last: File:School seal of Notre Dame of Kidapawan College.jpg -[2018-02-13T00:36:14.099] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:36:14.107] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:36:14.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2006 May 28 and last: Blewitt Falls Lake -[2018-02-13T00:36:14.304] [INFO] cheese - inserting 1000 documents. first: 707 AD and last: 1696 AD -[2018-02-13T00:36:14.331] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:36:14.334] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:36:14.443] [INFO] cheese - inserting 1000 documents. first: Herbert Waddell and last: Naturschutzbund Deutschland -[2018-02-13T00:36:14.465] [INFO] cheese - inserting 1000 documents. first: Ormenio, Greece and last: Milwaukee Avenue, Chicago -[2018-02-13T00:36:14.495] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:36:14.550] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/praram9.com and last: Alyta -[2018-02-13T00:36:14.566] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:36:14.571] [INFO] cheese - inserting 1000 documents. first: Bernathonomus postrosea and last: HMS Sierra Leone -[2018-02-13T00:36:14.592] [INFO] cheese - inserting 1000 documents. first: Professor G.Q. Max Lu and last: Template:2012-13 Hong Kong Top Footballer -[2018-02-13T00:36:14.626] [INFO] cheese - inserting 1000 documents. first: Markham Stouffville Hospital and last: Mount Pleasant, County Durham -[2018-02-13T00:36:14.647] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:36:14.689] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:14.686] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:36:14.728] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:36:14.923] [INFO] cheese - inserting 1000 documents. first: Haj House (Mumbai) and last: MINERVA -[2018-02-13T00:36:14.959] [INFO] cheese - inserting 1000 documents. first: Scottish Cup 1995-96 and last: CCCCCCCC -[2018-02-13T00:36:14.974] [INFO] cheese - inserting 1000 documents. first: Template:2012-13 IRB Womens Sevens World Series and last: Template:2014 FIFA World Cup qualification - AFC Third Round Group E -[2018-02-13T00:36:14.988] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:36:15.013] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:36:15.031] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:36:15.060] [INFO] cheese - inserting 1000 documents. first: Franciscus Richardot and last: File:ESC 1979 logo.png -[2018-02-13T00:36:15.108] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:15.111] [INFO] cheese - inserting 1000 documents. first: Comedy Arts Festival and last: Wikipedia:Wikipedia Signpost/2013-09-11/Arbitration report -[2018-02-13T00:36:15.152] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:36:15.167] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Gratiot County, Michigan and last: Jake Smith (baseball) -[2018-02-13T00:36:15.273] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:15.373] [INFO] cheese - inserting 1000 documents. first: Buftea and last: Clemens non papa -[2018-02-13T00:36:15.444] [INFO] cheese - inserting 1000 documents. first: File:Unsylva 72.jpg and last: Football at the Summer Universiade -[2018-02-13T00:36:15.459] [INFO] cheese - inserting 1000 documents. first: Template:2015–16 FA WSL PFA Team of the Year and last: Template:2015-16 National League 1 Table -[2018-02-13T00:36:15.468] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:36:15.488] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:36:15.540] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:36:15.610] [INFO] cheese - inserting 1000 documents. first: Mahadevi Verma and last: Fax Preference Service -[2018-02-13T00:36:15.636] [INFO] cheese - inserting 1000 documents. first: Chah Esmaeel, Zahedan and last: Category:People associated with Saïd Business School -[2018-02-13T00:36:15.677] [INFO] cheese - inserting 1000 documents. first: N'toko and last: The Moonshiners -[2018-02-13T00:36:15.677] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:36:15.694] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:36:15.750] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:36:15.806] [INFO] cheese - inserting 1000 documents. first: Loss Creek, Texas and last: Wikipedia:Reference desk/Archives/Science/2011 June 1 -[2018-02-13T00:36:15.854] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:15.935] [INFO] cheese - inserting 1000 documents. first: Template:2015-16 Maltese Premier League Second Phase table and last: Template:Attached KML/Interstate 635 (Kansas-Missouri) -[2018-02-13T00:36:15.962] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:16.094] [INFO] cheese - inserting 1000 documents. first: Lynde Point Lighthouse and last: St. Paul's Union Church and Cemetery -[2018-02-13T00:36:16.150] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:36:16.170] [INFO] cheese - inserting 1000 documents. first: Better Loosen Up and last: Wikipedia:Articles for deletion/Koenma -[2018-02-13T00:36:16.174] [INFO] cheese - inserting 1000 documents. first: Category:Fashion journalism and last: Dwarf croaking gourami -[2018-02-13T00:36:16.179] [INFO] cheese - inserting 1000 documents. first: Julia Duin and last: Sulaiman Al Nassr -[2018-02-13T00:36:16.195] [INFO] cheese - inserting 1000 documents. first: Category:Saïd Business School and last: Wikipedia:WikiProject Spam/LinkReports/smithsustainabledesign.com -[2018-02-13T00:36:16.203] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:36:16.206] [INFO] cheese - inserting 1000 documents. first: Moonshiners and last: Håkan Fredriksson -[2018-02-13T00:36:16.236] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:36:16.237] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:36:16.248] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:36:16.258] [INFO] cheese - inserting 1000 documents. first: Category:People from Zombo District and last: Afghan (name) -[2018-02-13T00:36:16.280] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:36:16.345] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:36:16.598] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Mexico-Singapore relations and last: Template:Fb competition 1948-49 Division 2 -[2018-02-13T00:36:16.613] [INFO] cheese - inserting 1000 documents. first: Category:Gornik Wałbrzych players and last: Category:Isotopes of rhenium -[2018-02-13T00:36:16.644] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:16.645] [INFO] cheese - inserting 1000 documents. first: Kaathirundha Kangal and last: Purplebanded snake eel -[2018-02-13T00:36:16.669] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:36:16.688] [INFO] cheese - inserting 1000 documents. first: Knoebels staff and last: Imran ibn Shahin -[2018-02-13T00:36:16.710] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:36:16.755] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:36:16.773] [INFO] cheese - inserting 1000 documents. first: Theracon and last: Pat McManus -[2018-02-13T00:36:16.820] [INFO] cheese - inserting 1000 documents. first: 100 Milionë (The Million Dollar Drop) Albania and last: Marie-Louise O'Donnell -[2018-02-13T00:36:16.849] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:36:16.882] [INFO] cheese - inserting 1000 documents. first: Better loosen up and last: Willie Hefner -[2018-02-13T00:36:16.883] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:36:17.001] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:36:17.185] [INFO] cheese - inserting 1000 documents. first: College of Chinese Culture and last: SATA-IO Serial ATA Revision 2.0 -[2018-02-13T00:36:17.253] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:36:17.273] [INFO] cheese - inserting 1000 documents. first: Mahmoud Saad (disambiguation) and last: Child identity fraud -[2018-02-13T00:36:17.290] [INFO] cheese - inserting 1000 documents. first: U2 incident and last: Hempstead,near Holt, Norfolk -[2018-02-13T00:36:17.343] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:36:17.351] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:17.371] [INFO] cheese - inserting 1000 documents. first: Category:Isotopes of rhodium and last: Frank Beattie -[2018-02-13T00:36:17.457] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:36:17.544] [INFO] cheese - inserting 1000 documents. first: Marie Louise O'Donnell and last: Wikipedia:Miscellany for deletion/User:24.177.120.138/Don't create an account -[2018-02-13T00:36:17.552] [INFO] cheese - inserting 1000 documents. first: File:Warmonger.jpg and last: Abbacy of St Emmeram in Regensburg -[2018-02-13T00:36:17.626] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:36:17.640] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:36:17.795] [INFO] cheese - inserting 1000 documents. first: SATA-IO Serial ATA Revision 3.0 and last: Ad Kolnaar -[2018-02-13T00:36:17.835] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Christianity navigational boxes and last: Template:Fb round2 2014-15 DFB-Pokal R1 -[2018-02-13T00:36:17.860] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:36:17.882] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class United States comics articles and last: Stagecoach Cambridgeshire -[2018-02-13T00:36:17.885] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:17.996] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:36:18.002] [INFO] cheese - inserting 1000 documents. first: Willie G. Hefner and last: Magnolia macrophylla -[2018-02-13T00:36:18.099] [INFO] cheese - inserting 1000 documents. first: Rhode Island Rams football and last: WCRX-LP -[2018-02-13T00:36:18.103] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T00:36:18.153] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:36:18.243] [INFO] cheese - inserting 1000 documents. first: A nos actes manqués and last: Antrodiaetus -[2018-02-13T00:36:18.248] [INFO] cheese - inserting 1000 documents. first: Zagai Island (Queensland) and last: Another Joyous Occasion -[2018-02-13T00:36:18.291] [INFO] cheese - inserting 1000 documents. first: The Lost City (1950 film) and last: Template:Movement for Democratic Change - Tsvangirai/meta/shortname -[2018-02-13T00:36:18.299] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:36:18.310] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:36:18.332] [INFO] cheese - inserting 1000 documents. first: Joaquín Ibáñez Cuevas y de Valonga, Baron de Eroles and last: Ametropalpis vidua -[2018-02-13T00:36:18.356] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:18.408] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:36:18.479] [INFO] cheese - inserting 1000 documents. first: Stagecoach Warwickshire and last: File:Speed King.jpg -[2018-02-13T00:36:18.495] [INFO] cheese - inserting 1000 documents. first: Mahmoud Bahmani and last: Low-latency queuing -[2018-02-13T00:36:18.523] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:36:18.547] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:36:18.587] [INFO] cheese - inserting 1000 documents. first: Category:Sabah federal constituencies and last: Template:Quebec provincial election, 1994/Sainte-Marie-Saint-Jacques -[2018-02-13T00:36:18.609] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:36:18.715] [INFO] cheese - inserting 1000 documents. first: Punjabi music and last: Odd man out -[2018-02-13T00:36:18.796] [INFO] cheese - inserting 1000 documents. first: Charlie Weir and last: Kuwaiti protests (2011–present) -[2018-02-13T00:36:18.800] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:36:18.809] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2008–09 Cypriot First Division and last: Category:2006 short story collections -[2018-02-13T00:36:18.824] [INFO] cheese - inserting 1000 documents. first: Template:OlivierAward MusicalBestActress 1979-2000 and last: Anthoecia divitiosa -[2018-02-13T00:36:18.841] [INFO] cheese - inserting 1000 documents. first: Bentley railway station and last: Dudley "Red" Garrett Memorial Award -[2018-02-13T00:36:18.860] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:36:18.860] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:36:18.900] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:36:18.906] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:18.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tucapital.es and last: Groupe Les Echos -[2018-02-13T00:36:19.003] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:19.073] [INFO] cheese - inserting 1000 documents. first: George Robert Stephenson and last: 1906 Minnesota Golden Gophers football team -[2018-02-13T00:36:19.131] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:36:19.295] [INFO] cheese - inserting 1000 documents. first: Category:Lists of English words of Indian origin and last: Maidiping -[2018-02-13T00:36:19.299] [INFO] cheese - inserting 1000 documents. first: 10th (Sussex) Parachute Battalion and last: Category:The Cranberries members -[2018-02-13T00:36:19.331] [INFO] cheese - inserting 1000 documents. first: Number One (Remember When We Danced All Night) and last: Shivaji Yadav -[2018-02-13T00:36:19.371] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:36:19.422] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:36:19.447] [INFO] cheese - inserting 1000 documents. first: Template:Hacrobia and last: B626 MRK -[2018-02-13T00:36:19.468] [INFO] cheese - inserting 1000 documents. first: History of Ankara and last: Dagora, the Space Monster -[2018-02-13T00:36:19.473] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:36:19.516] [INFO] cheese - inserting 1000 documents. first: R and D and last: USS Southfield (1857) -[2018-02-13T00:36:19.553] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:36:19.621] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:36:19.669] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:36:19.770] [INFO] cheese - inserting 1000 documents. first: 1907 Minnesota Golden Gophers football team and last: Player vs. environment -[2018-02-13T00:36:19.868] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:36:19.870] [INFO] cheese - inserting 1000 documents. first: Bacarri and last: Beth Yeshurun Day School -[2018-02-13T00:36:19.892] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jakob Ziguras and last: USCGC Beaufort (PF-59) -[2018-02-13T00:36:19.922] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:36:19.963] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:36:20.018] [INFO] cheese - inserting 1000 documents. first: Klonari and last: Miriam Frenken -[2018-02-13T00:36:20.070] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:36:20.096] [INFO] cheese - inserting 1000 documents. first: Cane Hill Cemetery and last: Template:IPAc2-mh -[2018-02-13T00:36:20.108] [INFO] cheese - inserting 1000 documents. first: Crusty bread and last: Mer Island -[2018-02-13T00:36:20.202] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:36:20.246] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:36:20.402] [INFO] cheese - inserting 1000 documents. first: PvM and last: Prince of Central Park (2000 film) -[2018-02-13T00:36:20.431] [INFO] cheese - inserting 1000 documents. first: Mike D and last: Derech Hashem -[2018-02-13T00:36:20.447] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:36:20.491] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OERde13 and last: Qaleh Qazi, East Azerbaijan -[2018-02-13T00:36:20.513] [INFO] cheese - inserting 1000 documents. first: Jonathan Holmes (disambiguation) and last: People’s Primary Healthcare Initiative KP -[2018-02-13T00:36:20.530] [INFO] cheese - inserting 1000 documents. first: Category:Baseball venues in Ohio and last: May Brahe -[2018-02-13T00:36:20.539] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:36:20.541] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:20.588] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:36:20.599] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:36:20.710] [INFO] cheese - inserting 1000 documents. first: Category:Islam infobox templates and last: Template:Course page/Tabs -[2018-02-13T00:36:20.765] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:36:20.828] [INFO] cheese - inserting 1000 documents. first: Elena Birkbeck and last: GUS staining -[2018-02-13T00:36:20.849] [INFO] cheese - inserting 1000 documents. first: Surekha Sikri and last: Cullahill -[2018-02-13T00:36:20.883] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:36:20.890] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:36:20.921] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Bala, East Azerbaijan and last: Template:POTD protected/2013-09-18 -[2018-02-13T00:36:20.959] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:36:20.967] [INFO] cheese - inserting 1000 documents. first: FC Schweinfurt 05 II and last: Template:WP California -[2018-02-13T00:36:20.971] [INFO] cheese - inserting 1000 documents. first: File:Kanon Wakeshima Unbalance by Me Cover.jpg and last: Category:1893-94 in Scottish football -[2018-02-13T00:36:21.008] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:36:21.017] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:36:21.144] [INFO] cheese - inserting 1000 documents. first: Gary Beach and last: Category:British novels -[2018-02-13T00:36:21.168] [INFO] cheese - inserting 1000 documents. first: Le Blockhaus d'Éperlecques and last: Template:1988 K-League Best XI -[2018-02-13T00:36:21.194] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:36:21.223] [INFO] cheese - inserting 1000 documents. first: Henry M. Paulson and last: Bombing of Zadar in World War II -[2018-02-13T00:36:21.236] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:21.256] [INFO] cheese - inserting 1000 documents. first: Category:1906-07 IAAUS men's basketball season and last: Category:1918-19 American college basketball standings templates -[2018-02-13T00:36:21.284] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:36:21.293] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:36:21.321] [INFO] cheese - inserting 1000 documents. first: Quruqchi Rudi and last: Paradisus Londinensis -[2018-02-13T00:36:21.358] [INFO] cheese - inserting 1000 documents. first: Homosexuality and Mormonism and last: Bethlehem Lutheran School -[2018-02-13T00:36:21.365] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:36:21.398] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:36:21.436] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Faxai and last: Nangong Shi -[2018-02-13T00:36:21.492] [INFO] cheese - inserting 1000 documents. first: Category:1910-11 in European association football leagues and last: Category:1921-22 in Italian football leagues -[2018-02-13T00:36:21.552] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:36:21.561] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:36:21.786] [INFO] cheese - inserting 1000 documents. first: File:Polymeroxidation.jpg and last: Template:Uw-notvand -[2018-02-13T00:36:21.788] [INFO] cheese - inserting 1000 documents. first: Rajamundry and last: Note book -[2018-02-13T00:36:21.834] [INFO] cheese - inserting 1000 documents. first: HIV-AIDS in New Zealand and last: File:Javier Gonzalez, economist.png -[2018-02-13T00:36:21.894] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:36:21.903] [INFO] cheese - inserting 1000 documents. first: Sullivan West Central School and last: Second Hand Band -[2018-02-13T00:36:21.941] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:36:21.952] [INFO] cheese - inserting 1000 documents. first: File:Avril Henry.jpg and last: Category:1941-42 in Irish association football -[2018-02-13T00:36:21.955] [INFO] cheese - inserting 1000 documents. first: Chinatown (Manchester) and last: Chris "Drama" Pfaff -[2018-02-13T00:36:21.956] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:36:22.012] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:36:22.023] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:22.064] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:22.417] [INFO] cheese - inserting 1000 documents. first: Category:1941-42 Pacific Coast Conference men's basketball season and last: Category:1947-48 in Italian football -[2018-02-13T00:36:22.430] [INFO] cheese - inserting 1000 documents. first: Comet Zhu–Balam and last: Template:Db-unfree-notice -[2018-02-13T00:36:22.496] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:22.520] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T00:36:22.572] [INFO] cheese - inserting 1000 documents. first: Al Barks and last: Joannicius (disambiguation) -[2018-02-13T00:36:22.613] [INFO] cheese - inserting 1000 documents. first: 4 Cheyne Walk and last: Category:Caribbean sportspeople -[2018-02-13T00:36:22.642] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:36:22.665] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:36:22.874] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Route 12 (1924) and last: National Workers' Movement (St. Vincent) -[2018-02-13T00:36:22.883] [INFO] cheese - inserting 1000 documents. first: Note-book and last: Congolese franc -[2018-02-13T00:36:22.886] [INFO] cheese - inserting 1000 documents. first: Bindura District and last: Template:Italictitle/sandbox -[2018-02-13T00:36:22.931] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T00:36:22.972] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:36:22.979] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:36:22.984] [INFO] cheese - inserting 1000 documents. first: Gonzap and last: Category:1963-64 NBA season -[2018-02-13T00:36:23.023] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:36:23.133] [INFO] cheese - inserting 1000 documents. first: Khadem Kandi and last: Wikipedia:GA/Music -[2018-02-13T00:36:23.157] [INFO] cheese - inserting 1000 documents. first: Microsoft Broadband Networking and last: List of former NTA Film Network affiliates -[2018-02-13T00:36:23.171] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:36:23.178] [INFO] cheese - inserting 1000 documents. first: Animal Wall and last: Asciidoc -[2018-02-13T00:36:23.194] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:36:23.224] [INFO] cheese - inserting 1000 documents. first: Category:1961-62 NHL season and last: History of jammu -[2018-02-13T00:36:23.236] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:36:23.251] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:36:23.336] [INFO] cheese - inserting 1000 documents. first: Template:Italictitle/testcases and last: Brăhăşoaia -[2018-02-13T00:36:23.373] [INFO] cheese - inserting 1000 documents. first: Steuben (glass) and last: Portal:Georgia (country)/Selected picture -[2018-02-13T00:36:23.388] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:36:23.420] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:36:23.474] [INFO] cheese - inserting 1000 documents. first: Tangata (spider) and last: Category:1977-78 in Maltese football -[2018-02-13T00:36:23.498] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:36:23.580] [INFO] cheese - inserting 1000 documents. first: Category:Lists of motorcycles and last: The RAND Journal of Economics -[2018-02-13T00:36:23.587] [INFO] cheese - inserting 1000 documents. first: Erectile bone and last: Andrew Stevens -[2018-02-13T00:36:23.603] [INFO] cheese - inserting 1000 documents. first: James Du Pré and last: Category:High-importance Pritzker Military Library-related articles -[2018-02-13T00:36:23.634] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:36:23.657] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:23.670] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:36:23.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/harryfox.com and last: PCOS infertility -[2018-02-13T00:36:23.762] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:36:23.793] [INFO] cheese - inserting 1000 documents. first: Brahasoaia and last: Luke, be a Jedi tonight -[2018-02-13T00:36:23.818] [INFO] cheese - inserting 1000 documents. first: Category:1980-81 in Portuguese football and last: Wikipedia:WikiProject Spam/LinkReports/healthy-joints.net -[2018-02-13T00:36:23.828] [INFO] cheese - inserting 1000 documents. first: Template:User KCL and last: Korean War Memorial -[2018-02-13T00:36:23.835] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:23.858] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:36:23.887] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:24.244] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Pritzker Military Library-related articles and last: Bossman (artist) -[2018-02-13T00:36:24.290] [INFO] cheese - inserting 1000 documents. first: Jim Rose Circus and last: Wikipedia:Today's featured article/August 27, 2005 -[2018-02-13T00:36:24.304] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:36:24.404] [INFO] cheese - inserting 1000 documents. first: Eucalyptus expressa and last: Template:ESPN NFL/doc -[2018-02-13T00:36:24.429] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:36:24.440] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Latvia articles by quality/1 and last: Angeles City Science High School -[2018-02-13T00:36:24.571] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:36:24.597] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:36:24.631] [INFO] cheese - inserting 1000 documents. first: Vashishthiputra Pulumavi and last: Portal:San Diego-Tijuana/Tab2 -[2018-02-13T00:36:24.662] [INFO] cheese - inserting 1000 documents. first: Category:User dz-5 and last: Portal:A Nightmare on Elm Street/Did you know/archive -[2018-02-13T00:36:24.712] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:36:24.777] [INFO] cheese - inserting 1000 documents. first: Charles Grosvenor and last: Wilfred White (ice hockey) -[2018-02-13T00:36:24.795] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:36:24.874] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T00:36:25.059] [INFO] cheese - inserting 1000 documents. first: Pointrest, Missouri and last: Category:Former houses in the London Borough of Lambeth -[2018-02-13T00:36:25.126] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:36:25.184] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Economics articles and last: Teribersky Raion -[2018-02-13T00:36:25.233] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:36:25.236] [INFO] cheese - inserting 1000 documents. first: Central of Georgia "Big Apple" and last: Ivan I of Russia -[2018-02-13T00:36:25.248] [INFO] cheese - inserting 1000 documents. first: Portal:Saguenay-Lac-Saint-Jean/Wikimedia and last: Mohammed Jiwa Zainal al-Abidin I -[2018-02-13T00:36:25.274] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/August 28, 2005 and last: Intermediate representation -[2018-02-13T00:36:25.298] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:25.300] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:36:25.324] [INFO] cheese - inserting 1000 documents. first: PXC and last: Category:Montenegrin language -[2018-02-13T00:36:25.340] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:36:25.382] [INFO] cheese - inserting 1000 documents. first: Corinne Chapelle and last: Charlie Silver -[2018-02-13T00:36:25.395] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:36:25.448] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:36:25.522] [INFO] cheese - inserting 1000 documents. first: Template:2013–14 ISU SS WC1 and last: Aqbolagh-e Hasan Kandi -[2018-02-13T00:36:25.567] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:25.672] [INFO] cheese - inserting 1000 documents. first: Intaglio: A Novel in Six Stories and last: Category:Populated places in Jackson County, Michigan -[2018-02-13T00:36:25.696] [INFO] cheese - inserting 1000 documents. first: Category:Catholic Church in Iceland and last: Wikipedia:Articles for deletion/Dreadnaut -[2018-02-13T00:36:25.714] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:36:25.736] [INFO] cheese - inserting 1000 documents. first: File:David-Thomas-Broughton-300x300.jpg and last: Hallgrímskirkja (Hvalfirði) -[2018-02-13T00:36:25.741] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:25.783] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:25.860] [INFO] cheese - inserting 1000 documents. first: Calidota laqueata and last: Wikipedia:Reference desk/Archives/Language/2013 September 16 -[2018-02-13T00:36:25.862] [INFO] cheese - inserting 1000 documents. first: Nickel oxide and last: Wikipedia:Articles for deletion/Tim Roll-Pickering -[2018-02-13T00:36:25.868] [INFO] cheese - inserting 1000 documents. first: Of Other Worlds and last: Wikipedia:Articles for deletion/New Taoist Community -[2018-02-13T00:36:25.900] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:36:25.927] [INFO] cheese - inserting 1000 documents. first: Mmm, Mmm, Mmm, Mmm and last: Buford "Mad Dog" Tannen -[2018-02-13T00:36:25.931] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:25.932] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:26.010] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:26.183] [INFO] cheese - inserting 1000 documents. first: Wet Hot American Summer: Ten Years Later and last: Camp Kia Kima -[2018-02-13T00:36:26.237] [INFO] cheese - inserting 1000 documents. first: Separating set and last: Highland, NY -[2018-02-13T00:36:26.255] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Hornsby and last: Ottoman Airforce -[2018-02-13T00:36:26.256] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:26.321] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:26.347] [INFO] cheese - inserting 1000 documents. first: Iya, Iran and last: Uralic–Yukaghir -[2018-02-13T00:36:26.357] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:36:26.519] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:36:26.522] [INFO] cheese - inserting 1000 documents. first: Maharashtra State Highway 151 and last: Coelogyne corymbosa -[2018-02-13T00:36:26.594] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:36:26.764] [INFO] cheese - inserting 1000 documents. first: File:Catoptric theatre.jpg and last: Darnley Island (Queensland) -[2018-02-13T00:36:26.820] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:36:26.896] [INFO] cheese - inserting 1000 documents. first: Papa Wemba discography and last: Alexandre Gama (entrepreneur) -[2018-02-13T00:36:26.951] [INFO] cheese - inserting 1000 documents. first: Haravrd and last: Jose Vasconcelos -[2018-02-13T00:36:26.965] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:36:27.034] [INFO] cheese - inserting 1000 documents. first: Template:2012–13 PBA Commisioner's Cup Playoffs bracket and last: Topdog vs. Underdog -[2018-02-13T00:36:27.037] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:36:27.070] [INFO] cheese - inserting 1000 documents. first: File:Live Radio City Music Hall 2003 album cover.jpg and last: Wikipedia:Articles for creation/2007-10-30 -[2018-02-13T00:36:27.080] [INFO] cheese - inserting 1000 documents. first: Gary Buchanan and last: NMAMIT, Nitte -[2018-02-13T00:36:27.088] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:27.150] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:36:27.171] [INFO] cheese - inserting 1000 documents. first: Adarnase V of Tao and last: List of port grapes -[2018-02-13T00:36:27.265] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:27.270] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:36:27.306] [INFO] cheese - inserting 1000 documents. first: Erub Island and last: Gallo-Romans -[2018-02-13T00:36:27.392] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:36:27.458] [INFO] cheese - inserting 1000 documents. first: Symmetry minute and last: Template:Did you know nominations/Coryloides -[2018-02-13T00:36:27.462] [INFO] cheese - inserting 1000 documents. first: Halal Snack Pack and last: Missa Tu es Petrus (Palestrina) -[2018-02-13T00:36:27.508] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:36:27.527] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:36:27.597] [INFO] cheese - inserting 1000 documents. first: Ad-Dhahiriya and last: Roman Catholic Archdiocese of Avignon -[2018-02-13T00:36:27.619] [INFO] cheese - inserting 1000 documents. first: Category:Endorheic lakes of Australia and last: Category:Åland Islands user templates -[2018-02-13T00:36:27.638] [INFO] cheese - inserting 1000 documents. first: File:JakesThing.jpg and last: Calcium-54 -[2018-02-13T00:36:27.645] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:27.651] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:36:27.673] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:36:27.689] [INFO] cheese - inserting 1000 documents. first: Big penis and last: Sanford Independence Bowl -[2018-02-13T00:36:27.792] [INFO] cheese - inserting 1000 documents. first: Khamas (raga) and last: The Unguarded Moment (song) -[2018-02-13T00:36:27.794] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:36:27.819] [INFO] cheese - inserting 1000 documents. first: File:WBXX theedge104.9 logo.png and last: Ćeran -[2018-02-13T00:36:27.826] [INFO] cheese - inserting 1000 documents. first: Category:Fellows of Queens' College, Cambridge and last: Caledonia-3 Vermont Representative District, 2002–12 -[2018-02-13T00:36:27.853] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:36:27.871] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:36:27.956] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:36:28.067] [INFO] cheese - inserting 1000 documents. first: Ausferrite and last: Wikipedia:Miscellany for deletion/Portal:Forums -[2018-02-13T00:36:28.118] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:28.144] [INFO] cheese - inserting 1000 documents. first: Calcium-55 and last: Ldm -[2018-02-13T00:36:28.188] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:36:28.237] [INFO] cheese - inserting 1000 documents. first: Udel (polymer) and last: Category:Damallsvenskan seasons -[2018-02-13T00:36:28.274] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:36:28.292] [INFO] cheese - inserting 1000 documents. first: Injac and last: 1st Pioneer Battalion (Australia) -[2018-02-13T00:36:28.301] [INFO] cheese - inserting 1000 documents. first: Gibraltar Three and last: John Gale (theologian) -[2018-02-13T00:36:28.308] [INFO] cheese - inserting 1000 documents. first: Clos St. Denis Grand cru and last: Wikipedia:Version 1.0 Editorial Team/St. Louis Cardinals articles by quality statistics -[2018-02-13T00:36:28.335] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:36:28.351] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:36:28.390] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:36:28.432] [INFO] cheese - inserting 1000 documents. first: MainStay Independence Bowl and last: Weaubleau structure -[2018-02-13T00:36:28.492] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:36:28.499] [INFO] cheese - inserting 1000 documents. first: Maybach Music Group Presents Self Made and last: Category:Chilean cumbia -[2018-02-13T00:36:28.512] [INFO] cheese - inserting 1000 documents. first: 欧阳修 and last: Cypripedium franchetii -[2018-02-13T00:36:28.544] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:28.563] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:36:28.723] [INFO] cheese - inserting 1000 documents. first: John Sidney Smith and last: Middlesbrough conurbation -[2018-02-13T00:36:28.725] [INFO] cheese - inserting 1000 documents. first: W*ING World Tag Team Championship and last: Hannelore Auer -[2018-02-13T00:36:28.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for creation/2006-06-02 and last: File:Downtwo.jpg -[2018-02-13T00:36:28.764] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:36:28.771] [INFO] cheese - inserting 1000 documents. first: Nils Fredrik Rønnbeck and last: Heroin (album) -[2018-02-13T00:36:28.778] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:36:28.818] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:36:28.826] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:36:28.916] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Bible/Images and last: Konoike Chiaki -[2018-02-13T00:36:28.951] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:36:29.024] [INFO] cheese - inserting 1000 documents. first: Template:The Pharmacology Barnstar and last: You Adachi -[2018-02-13T00:36:29.083] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:36:29.094] [INFO] cheese - inserting 1000 documents. first: Etsuko Kozakura and last: Inertial -[2018-02-13T00:36:29.135] [INFO] cheese - inserting 1000 documents. first: Mike Thompson (umpire) and last: Foreign Policy: Understanding ISIS, The Middle East, and The Complexity of The Syrian War -[2018-02-13T00:36:29.220] [INFO] cheese - inserting 1000 documents. first: Tibetan-Chinese politics and last: Pine Lake (Duxbury, Massachusetts) -[2018-02-13T00:36:29.235] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:36:29.275] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:36:29.303] [INFO] cheese - inserting 1000 documents. first: Hawzien and last: Sierra de Teruel -[2018-02-13T00:36:29.400] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:36:29.460] [INFO] cheese - inserting 1000 documents. first: Bartholomeus and last: Epidendrum callista -[2018-02-13T00:36:29.462] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:36:29.502] [INFO] cheese - inserting 1000 documents. first: Phill harrison and last: Bloodlust (comics) -[2018-02-13T00:36:29.524] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:36:29.581] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:36:29.676] [INFO] cheese - inserting 1000 documents. first: The Book of Mormon (soundtrack) and last: File:Little-Brown-Company-logo.PNG -[2018-02-13T00:36:29.727] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:36:29.800] [INFO] cheese - inserting 1000 documents. first: File:Graceful4 cddvd.jpg and last: Fox Business Happy Hour -[2018-02-13T00:36:29.844] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:36:29.881] [INFO] cheese - inserting 1000 documents. first: Mr. Bill the Conqueror and last: Fellow of the American Society for Microbiology -[2018-02-13T00:36:29.912] [INFO] cheese - inserting 1000 documents. first: Dendrobium bronckartii and last: St. Mark's, Connah's Quay -[2018-02-13T00:36:29.928] [INFO] cheese - inserting 1000 documents. first: Henry Petrie (antiquary) and last: Wikipedia:Articles for deletion/Signs of Reason -[2018-02-13T00:36:29.943] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:36:29.951] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:29.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Infobox colors and last: The housemartins -[2018-02-13T00:36:29.977] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:36:30.029] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:36:30.139] [INFO] cheese - inserting 1000 documents. first: Omaha Market House and last: Template:Boxing2011PanAmGames -[2018-02-13T00:36:30.153] [INFO] cheese - inserting 1000 documents. first: Brian bouldrey and last: Brook Village, Nova Scotia -[2018-02-13T00:36:30.167] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:30.180] [INFO] cheese - inserting 1000 documents. first: Jang Dong-Gun and last: VT52 -[2018-02-13T00:36:30.194] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:36:30.247] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:36:30.323] [INFO] cheese - inserting 1000 documents. first: Granai airstrike and last: N. Santosh Hegde -[2018-02-13T00:36:30.339] [INFO] cheese - inserting 1000 documents. first: Category:1956 disasters in the United States and last: Arquimínio Rodrigues da Costas -[2018-02-13T00:36:30.363] [INFO] cheese - inserting 1000 documents. first: 1962 Grammys and last: File:Narracan Council 1993.jpg -[2018-02-13T00:36:30.382] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:30.392] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:30.404] [INFO] cheese - inserting 1000 documents. first: The American Academy of Arts and Sciences and last: Wikipedia:Articles for deletion/Dylan pool -[2018-02-13T00:36:30.409] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:36:30.465] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:36:30.536] [INFO] cheese - inserting 1000 documents. first: BAe/McDonnell-Douglas T-45 Goshawk and last: F1 Lotus Team -[2018-02-13T00:36:30.581] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:36:30.690] [INFO] cheese - inserting 1000 documents. first: Thomas Dunhill and last: Electrical polarity -[2018-02-13T00:36:30.742] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:36:30.800] [INFO] cheese - inserting 1000 documents. first: Category:FA Women's Premier League Plate and last: Category:Culture in Central Greece -[2018-02-13T00:36:30.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gui4Cli and last: Large-leaved dendrobium -[2018-02-13T00:36:30.883] [INFO] cheese - inserting 1000 documents. first: William Leach (canoer) and last: Yaraldzha -[2018-02-13T00:36:30.883] [INFO] cheese - inserting 1000 documents. first: Arthur Frederick Pickard and last: Essential mineral -[2018-02-13T00:36:30.923] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:36:30.927] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:36:30.957] [INFO] cheese - inserting 1000 documents. first: American - Greenlandic relations and last: Xiamen–Shenzhen Railway -[2018-02-13T00:36:30.983] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:36:31.027] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:36:31.093] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:36:31.109] [INFO] cheese - inserting 1000 documents. first: Cozy III and last: Vesicular monoamine transporter 1 -[2018-02-13T00:36:31.211] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:36:31.303] [INFO] cheese - inserting 1000 documents. first: Raymond George and last: The Black and White Years -[2018-02-13T00:36:31.351] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:36:31.387] [INFO] cheese - inserting 1000 documents. first: Yaralucheh and last: Sorkheh Kamran -[2018-02-13T00:36:31.390] [INFO] cheese - inserting 1000 documents. first: Hatta I Cabinet and last: Strontium-97 -[2018-02-13T00:36:31.412] [INFO] cheese - inserting 1000 documents. first: Slender pitcher-plant and last: Billy Hughes (footballer, born 1865) -[2018-02-13T00:36:31.443] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:31.461] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:36:31.469] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:36:31.607] [INFO] cheese - inserting 1000 documents. first: Philip Hooker and last: Kyun Hota Hai Pyarrr -[2018-02-13T00:36:31.611] [INFO] cheese - inserting 1000 documents. first: Hanseat III and last: Wikipedia:Articles for deletion/List of Doctor Who Adventures serials -[2018-02-13T00:36:31.641] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:36:31.656] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:36:31.672] [INFO] cheese - inserting 1000 documents. first: File:Niagarahostel salmon.jpg and last: Intruder in the dust -[2018-02-13T00:36:31.716] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:36:31.723] [INFO] cheese - inserting 1000 documents. first: List of alumni of the University of Cambridge and last: KV. 208 -[2018-02-13T00:36:31.734] [INFO] cheese - inserting 1000 documents. first: Strontium-98 and last: Polonium-203 -[2018-02-13T00:36:31.776] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:36:31.799] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:36:31.842] [INFO] cheese - inserting 1000 documents. first: Tatar-e Olya, East Azerbaijan and last: Belgium men's national football team -[2018-02-13T00:36:31.867] [INFO] cheese - inserting 1000 documents. first: List of books about manuscripts and last: Upper Pickwick -[2018-02-13T00:36:31.903] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:31.909] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:31.987] [INFO] cheese - inserting 1000 documents. first: Devinder Pal Singh Bhullar and last: Kyengera -[2018-02-13T00:36:32.023] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:36:32.028] [INFO] cheese - inserting 1000 documents. first: Anyphaena pallidula and last: Bosnian parliament -[2018-02-13T00:36:32.077] [INFO] cheese - inserting 1000 documents. first: AN/AVQ23E and last: Category:Water transport in Israel -[2018-02-13T00:36:32.084] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:36:32.103] [INFO] cheese - inserting 1000 documents. first: Polonium-204 and last: Nobelium-248 -[2018-02-13T00:36:32.109] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:36:32.160] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:36:32.325] [INFO] cheese - inserting 1000 documents. first: Baltalı and last: MKAK -[2018-02-13T00:36:32.359] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:36:32.388] [INFO] cheese - inserting 1000 documents. first: Sutra of Complete Enlightenment and last: Portal:Horror/This day in horror archive/August/19 -[2018-02-13T00:36:32.417] [INFO] cheese - inserting 1000 documents. first: Yttrium-76 and last: Wikipedia:WikiProject Spam/LinkReports/goroda.rossii.alf.navvigator.ru -[2018-02-13T00:36:32.433] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:36:32.443] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:36:32.451] [INFO] cheese - inserting 1000 documents. first: Salman Al Khalifa and last: Mayor of Columbus, OH -[2018-02-13T00:36:32.555] [INFO] cheese - inserting 1000 documents. first: KV 208 and last: Supertec -[2018-02-13T00:36:32.552] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:36:32.617] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:36:32.645] [INFO] cheese - inserting 1000 documents. first: Catochrysops lithargyria and last: The Breakup, Part 2 -[2018-02-13T00:36:32.721] [INFO] cheese - inserting 1000 documents. first: File:ImgCadaQueBelanova.jpg and last: Scio me nihil scire -[2018-02-13T00:36:32.751] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:36:32.807] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:36:32.842] [INFO] cheese - inserting 1000 documents. first: Mercury-185 and last: U21 2009 -[2018-02-13T00:36:32.883] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:32.884] [INFO] cheese - inserting 1000 documents. first: Category:1971 in South American football leagues and last: Bengal's snake-Eel -[2018-02-13T00:36:32.941] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:36:33.058] [INFO] cheese - inserting 1000 documents. first: Category:19th-century merchants and last: Category:East African cricket captains -[2018-02-13T00:36:33.085] [INFO] cheese - inserting 1000 documents. first: Portal:Horror/This day in horror archive/August/2 and last: File:Union Chapel.gif -[2018-02-13T00:36:33.094] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:33.135] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:36:33.211] [INFO] cheese - inserting 1000 documents. first: Bengals snake eel and last: Category:Boxing at the 1998 Asian Games -[2018-02-13T00:36:33.225] [INFO] cheese - inserting 1000 documents. first: Home Is Where My Feet Are and last: Michael Psellus -[2018-02-13T00:36:33.237] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:36:33.273] [INFO] cheese - inserting 1000 documents. first: Jeremy Herbert and last: Chersky (disambiguation) -[2018-02-13T00:36:33.272] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:36:33.280] [INFO] cheese - inserting 1000 documents. first: File:George David Freeman.jpg and last: Category:Michael Stearns albums -[2018-02-13T00:36:33.313] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:36:33.337] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:36:33.424] [INFO] cheese - inserting 1000 documents. first: Coral reefs and last: Wikipedia:Articles for deletion/Esquilax -[2018-02-13T00:36:33.435] [INFO] cheese - inserting 1000 documents. first: Istituto di Credito Fondiario delle Venezie and last: Visa requirements for South Ossetia citizens -[2018-02-13T00:36:33.470] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:36:33.497] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:36:33.597] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 276 and last: Almachovan -[2018-02-13T00:36:33.632] [INFO] cheese - inserting 1000 documents. first: Bjorn Fratangelo and last: Five-hundred-meter Aperture Spherical radio Telescope -[2018-02-13T00:36:33.638] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:36:33.676] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:36:33.685] [INFO] cheese - inserting 1000 documents. first: Ottawa Township and last: Puelia -[2018-02-13T00:36:33.696] [INFO] cheese - inserting 1000 documents. first: Light of the World (Jesus) and last: MRNA (guanine-N7-)-methyltransferase -[2018-02-13T00:36:33.741] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:36:33.753] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:33.766] [INFO] cheese - inserting 1000 documents. first: Constantine IX Monomachus and last: Gay Fest -[2018-02-13T00:36:33.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Alchemy213/Darryl "Daz" Coppins and last: Template:2016-17 in Croatian football -[2018-02-13T00:36:33.819] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:36:33.855] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:36:33.971] [INFO] cheese - inserting 1000 documents. first: Bayanlucheh and last: Andrew Nicholas Bonaparte-Wyse -[2018-02-13T00:36:33.989] [INFO] cheese - inserting 1000 documents. first: 50d and last: Wikipedia:WikiProject Spam/LinkReports/writingexcuses.com -[2018-02-13T00:36:33.998] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:36:34.030] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:36:34.047] [INFO] cheese - inserting 1000 documents. first: Game mapping and last: File:VCWilliamKenny1.jpg -[2018-02-13T00:36:34.148] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:36:34.173] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Followingfireworks and last: Findlay Township -[2018-02-13T00:36:34.197] [INFO] cheese - inserting 1000 documents. first: Curtiss Mansion and last: Paul Cox -[2018-02-13T00:36:34.203] [INFO] cheese - inserting 1000 documents. first: Raddia and last: Mika Penniman -[2018-02-13T00:36:34.216] [INFO] cheese - inserting 1000 documents. first: Photothermal spectroscopy and last: File:Screenshot-fontproblem1.jpg -[2018-02-13T00:36:34.254] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:36:34.262] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:36:34.345] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:36:34.384] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:36:34.402] [INFO] cheese - inserting 1000 documents. first: Steriruncinated 7-demicube and last: Cao Loc District -[2018-02-13T00:36:34.483] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:34.561] [INFO] cheese - inserting 1000 documents. first: McGlusky the Sea Rover and last: Wikipedia:WikiProject Spam/Local/my-xbox360.com -[2018-02-13T00:36:34.630] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:36:34.738] [INFO] cheese - inserting 1000 documents. first: BRE (disambiguation) and last: Category:AfC submissions by date/10 July 2009 -[2018-02-13T00:36:34.782] [INFO] cheese - inserting 1000 documents. first: Hits South America (A-Ha EP) and last: Wikipedia:Choosing Wisely/American Association of Critical-Care Nurses -[2018-02-13T00:36:34.776] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:36:34.810] [INFO] cheese - inserting 1000 documents. first: Inman park and last: Damn! I Wish I Was Your Lover -[2018-02-13T00:36:34.817] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whitko marching pride and last: Weng (Isar) -[2018-02-13T00:36:34.833] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:34.846] [INFO] cheese - inserting 1000 documents. first: Bao Thang District and last: 2013 World Archery Championships – Compound Mixed Team -[2018-02-13T00:36:34.848] [INFO] cheese - inserting 1000 documents. first: Eislingen and last: Waikino Music Festival -[2018-02-13T00:36:34.884] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:36:34.885] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:36:34.913] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:36:34.926] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:35.015] [INFO] cheese - inserting 1000 documents. first: Al Qubbah, Libya and last: Syd Kitchen -[2018-02-13T00:36:35.060] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:36:35.117] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/11 July 2009 and last: Category:1791 poems -[2018-02-13T00:36:35.147] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:36:35.202] [INFO] cheese - inserting 1000 documents. first: Westendorf (Landkreis Augsburg) and last: Coactivator -[2018-02-13T00:36:35.237] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:36:35.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wiki Loves Women/Volunteers and last: Dlugy -[2018-02-13T00:36:35.294] [INFO] cheese - inserting 1000 documents. first: Scouting in Londonderry and last: Mørejarl -[2018-02-13T00:36:35.302] [INFO] cheese - inserting 1000 documents. first: Baltimore Blast (1980–1992) and last: Sistema Uniforme de Mejora Académica (SUMA) -[2018-02-13T00:36:35.328] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:35.338] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:35.339] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:36:35.349] [INFO] cheese - inserting 1000 documents. first: Wayang Wong and last: File:Ellis-fred-1919.tif -[2018-02-13T00:36:35.385] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:36:35.454] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fairuzfan.com and last: Damnatio ad bestias -[2018-02-13T00:36:35.490] [INFO] cheese - inserting 1000 documents. first: Ahmedi and last: Jorge Daponte -[2018-02-13T00:36:35.491] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:36:35.498] [INFO] cheese - inserting 1000 documents. first: Pietari Inkinen and last: Septomazzantia phaseolorum -[2018-02-13T00:36:35.534] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:36:35.563] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:36:35.590] [INFO] cheese - inserting 1000 documents. first: List of county roads in Bay County, Florida and last: Hannibal Lecter series -[2018-02-13T00:36:35.627] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:36:35.775] [INFO] cheese - inserting 1000 documents. first: Photography in the United States of America and last: Black-eared catbird -[2018-02-13T00:36:35.862] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/apo-opa.org and last: Ship of Fools (song) -[2018-02-13T00:36:35.924] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:35.978] [INFO] cheese - inserting 1000 documents. first: Deanne cheuk and last: Taiyo o nusunda otoko -[2018-02-13T00:36:36.001] [INFO] cheese - inserting 1000 documents. first: Piptoporus elatinus and last: Marptusa oppressa -[2018-02-13T00:36:36.012] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:36:36.038] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:36:36.089] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:36:36.137] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Space exploration articles by quality/8 and last: Confed Cup -[2018-02-13T00:36:36.206] [INFO] cheese - inserting 1000 documents. first: Persecution of secularists in Bangladesh and last: List of people with last name Wallman -[2018-02-13T00:36:36.211] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:36:36.249] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:36:36.446] [INFO] cheese - inserting 1000 documents. first: Scindalma semitostum and last: Saffron Walden Grammar School -[2018-02-13T00:36:36.452] [INFO] cheese - inserting 1000 documents. first: Rochford, South Dakota and last: Galway Warriors -[2018-02-13T00:36:36.462] [INFO] cheese - inserting 1000 documents. first: List of people with last name Walters and last: List of people with the last name Voyles -[2018-02-13T00:36:36.472] [INFO] cheese - inserting 1000 documents. first: John P. Angelos and last: Saginaw Township, MI -[2018-02-13T00:36:36.473] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:36:36.480] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:36:36.508] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:36:36.514] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:36:36.591] [INFO] cheese - inserting 1000 documents. first: File:A VideoCover Japan.jpg and last: Agrilozodes -[2018-02-13T00:36:36.668] [INFO] cheese - inserting 1000 documents. first: List of people with the last name Wadding and last: People with last name Sweeney -[2018-02-13T00:36:36.668] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:36:36.708] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:36:36.742] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Our Last Day To Live and last: Himantoglossum hircinum ssp. caprinum -[2018-02-13T00:36:36.784] [INFO] cheese - inserting 1000 documents. first: Pholiota filaris and last: French ship Protée -[2018-02-13T00:36:36.804] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:36:36.808] [INFO] cheese - inserting 1000 documents. first: BML and last: Meifumado -[2018-02-13T00:36:36.813] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:36:36.825] [INFO] cheese - inserting 1000 documents. first: Valley Christian High School (San Jose, CA) and last: Brisbane Planetarium -[2018-02-13T00:36:36.863] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:36:36.877] [INFO] cheese - inserting 1000 documents. first: People with last name Swinburne and last: People with the last name Shown -[2018-02-13T00:36:36.886] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T00:36:36.909] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:36:36.996] [INFO] cheese - inserting 1000 documents. first: Faisal Saigol and last: Al P. Martinich -[2018-02-13T00:36:37.037] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:36:37.044] [INFO] cheese - inserting 1000 documents. first: People with the last name Shurtleff and last: Ryan (last name) -[2018-02-13T00:36:37.094] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:36:37.130] [INFO] cheese - inserting 1000 documents. first: Template:Australian Film Institute Award for Best Actress in a Leading Role 1971-1979 and last: Women's Full-Contact at W.A.K.O. European Championships 2004 Budva -48 kg -[2018-02-13T00:36:37.145] [INFO] cheese - inserting 1000 documents. first: Himantoglossum caprinum ssp. rumelicum and last: Xylina innominata -[2018-02-13T00:36:37.174] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:36:37.197] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:36:37.226] [INFO] cheese - inserting 1000 documents. first: Cassia bicapsularis and last: Thomas Paterson -[2018-02-13T00:36:37.262] [INFO] cheese - inserting 1000 documents. first: Agbebi and last: Thomas Hepburn -[2018-02-13T00:36:37.283] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:36:37.300] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:36:37.318] [INFO] cheese - inserting 1000 documents. first: Escape From The Studio Tour and last: Wicked witch -[2018-02-13T00:36:37.377] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:36:37.424] [INFO] cheese - inserting 1000 documents. first: Ryeland (last name) and last: Klara Grahn -[2018-02-13T00:36:37.504] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:36:37.625] [INFO] cheese - inserting 1000 documents. first: Ralph (magazine) and last: Constitution of Tennessee -[2018-02-13T00:36:37.631] [INFO] cheese - inserting 1000 documents. first: Lithophane illecebra and last: Academic grading in hungary -[2018-02-13T00:36:37.669] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:36:37.714] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:36:37.756] [INFO] cheese - inserting 1000 documents. first: Category:Belarus articles by importance and last: Graculus perspicillatus -[2018-02-13T00:36:37.806] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:36:37.831] [INFO] cheese - inserting 1000 documents. first: Hugh Esmor Huxley and last: Diocese of Breslau -[2018-02-13T00:36:37.838] [INFO] cheese - inserting 1000 documents. first: Daddy, Mammy, Juddy, Jimmy, Jully and all the family and last: Diario Norte -[2018-02-13T00:36:37.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Timothy Grayem and last: Former Residence of Ba Jin -[2018-02-13T00:36:37.881] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:37.892] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:36:37.963] [INFO] cheese - inserting 1000 documents. first: Academic grading in iceland and last: Administrative divisions of argentina -[2018-02-13T00:36:37.972] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:36:38.012] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:36:38.129] [INFO] cheese - inserting 1000 documents. first: Poria crocipora and last: Phacidium minutissimum -[2018-02-13T00:36:38.140] [INFO] cheese - inserting 1000 documents. first: 50 yen and last: List of number-one hits of 2011 (South Korea) -[2018-02-13T00:36:38.162] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:36:38.273] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:36:38.348] [INFO] cheese - inserting 1000 documents. first: Administrative divisions of arkhangelsk oblast and last: St. Roch Church -[2018-02-13T00:36:38.377] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:36:38.454] [INFO] cheese - inserting 1000 documents. first: Bishopric of Breslau and last: Not So Suite 16 (The Suite Life of Zack and Cody episode) -[2018-02-13T00:36:38.471] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1073 and last: Chassidic Judaism -[2018-02-13T00:36:38.472] [INFO] cheese - inserting 1000 documents. first: Pennisetum americanum and last: Polyporus separans -[2018-02-13T00:36:38.513] [INFO] cheese - inserting 1000 documents. first: Anna Ksok and last: Apollon Tsochlas -[2018-02-13T00:36:38.531] [INFO] cheese - inserting 1000 documents. first: Norwood (LIRR station) and last: Wikipedia:WikiProject Microsoft collaboration -[2018-02-13T00:36:38.546] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:36:38.551] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:38.607] [INFO] cheese - inserting 1000 documents. first: Category:2016 in Malawi and last: Baily (family name) -[2018-02-13T00:36:38.609] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:36:38.609] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:36:38.654] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:36:38.685] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:38.696] [INFO] cheese - inserting 1000 documents. first: Agariste of sicyon and last: Alabama and florida railway -[2018-02-13T00:36:38.760] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:36:38.867] [INFO] cheese - inserting 1000 documents. first: Bain (family name) and last: The Twisters -[2018-02-13T00:36:38.891] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:36:38.907] [INFO] cheese - inserting 1000 documents. first: Mycosphaerella ceres and last: Rot (Danube) -[2018-02-13T00:36:39.013] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:39.042] [INFO] cheese - inserting 1000 documents. first: Alabama and gulf coast railway and last: Always right as in we are -[2018-02-13T00:36:39.110] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:36:39.234] [INFO] cheese - inserting 1000 documents. first: Nigel Edward Seely, 5th Baronet and last: Mi-Ok Lee -[2018-02-13T00:36:39.272] [INFO] cheese - inserting 1000 documents. first: Sexualities (journal) and last: Category:South Sudan templates -[2018-02-13T00:36:39.274] [INFO] cheese - inserting 1000 documents. first: Henry Dickerson McDaniel and last: SBC Classic -[2018-02-13T00:36:39.290] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:36:39.313] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:36:39.339] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:36:39.354] [INFO] cheese - inserting 1000 documents. first: Always where i need to be and last: Anna paulowna railway station -[2018-02-13T00:36:39.372] [INFO] cheese - inserting 1000 documents. first: Category:Transistors and last: Common collared lizard -[2018-02-13T00:36:39.380] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:36:39.398] [INFO] cheese - inserting 1000 documents. first: Ozonium auricomum and last: Dothidea melanops -[2018-02-13T00:36:39.426] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:39.434] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:36:39.460] [INFO] cheese - inserting 1000 documents. first: 2001 Latvian Football Cup and last: Bharane -[2018-02-13T00:36:39.524] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:36:39.614] [INFO] cheese - inserting 1000 documents. first: Anna rutgers van der loeff and last: Armenians in italy -[2018-02-13T00:36:39.636] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:36:39.706] [INFO] cheese - inserting 1000 documents. first: Portal:Supreme Court of the United States/Selected biography/Layout and last: Hawkman (The Batman) -[2018-02-13T00:36:39.747] [INFO] cheese - inserting 1000 documents. first: Allez Oop and last: The Sun Always Shines on TV -[2018-02-13T00:36:39.753] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:36:39.788] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:36:39.800] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mokshanine and last: Cincinati Bengals -[2018-02-13T00:36:39.812] [INFO] cheese - inserting 1000 documents. first: Armenians in jordan and last: Australian championships in athletics -[2018-02-13T00:36:39.822] [INFO] cheese - inserting 1000 documents. first: National Quality Research Center and last: Category:Tottenham -[2018-02-13T00:36:39.835] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:36:39.851] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:36:39.886] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:36:39.910] [INFO] cheese - inserting 1000 documents. first: Kim Tae Hwan (actor born 1992) and last: Meridan State College -[2018-02-13T00:36:39.970] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:36:40.051] [INFO] cheese - inserting 1000 documents. first: St Mary's Church, Hayling Island and last: United States of America - Malawi relations -[2018-02-13T00:36:40.080] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:36:40.127] [INFO] cheese - inserting 1000 documents. first: Arne Wilhelm Kaurin Tiselius and last: Toyota Cressida -[2018-02-13T00:36:40.143] [INFO] cheese - inserting 1000 documents. first: Green Lantern (The Batman) and last: Pseudoraja fischeri -[2018-02-13T00:36:40.201] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:36:40.202] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:36:40.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/IWGP World Heavyweight Championship and last: Differential nonlinearity -[2018-02-13T00:36:40.278] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:36:40.315] [INFO] cheese - inserting 1000 documents. first: Balgreen halt railway station and last: Baron bourke of castleconnell -[2018-02-13T00:36:40.331] [INFO] cheese - inserting 1000 documents. first: Cincinatti Bengals and last: Felt Mansion -[2018-02-13T00:36:40.337] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:36:40.376] [INFO] cheese - inserting 1000 documents. first: Flaming cliffs 3 and last: File:Vetri (season 2).jpg -[2018-02-13T00:36:40.385] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:36:40.411] [INFO] cheese - inserting 1000 documents. first: Algrœn and last: Tyler Mcniven -[2018-02-13T00:36:40.443] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:40.492] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:36:40.693] [INFO] cheese - inserting 1000 documents. first: Baron brabazon of tara and last: Battle of ashdown -[2018-02-13T00:36:40.728] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:36:40.760] [INFO] cheese - inserting 1000 documents. first: Gladys Amelia Anslow and last: Shilong Road (Shanghai Metro) -[2018-02-13T00:36:40.820] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:36:40.848] [INFO] cheese - inserting 1000 documents. first: Neve Eitan and last: Acyl CoA Cholesteryl Acyl Transferase -[2018-02-13T00:36:40.902] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:36:40.906] [INFO] cheese - inserting 1000 documents. first: Battle of asiago and last: Battle of friedland -[2018-02-13T00:36:40.928] [INFO] cheese - inserting 1000 documents. first: Carlos Narciso Chaínho and last: Matthew 10:20 -[2018-02-13T00:36:40.934] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:36:40.939] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Prowers County, Colorado and last: Fellini's Pizza -[2018-02-13T00:36:40.946] [INFO] cheese - inserting 1000 documents. first: Julie Benz and last: Request For Comments -[2018-02-13T00:36:40.955] [INFO] cheese - inserting 1000 documents. first: Geoff Blakely and last: Category:Churches in South Sudan -[2018-02-13T00:36:40.963] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:40.995] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:36:41.002] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:36:41.015] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:36:41.110] [INFO] cheese - inserting 1000 documents. first: Battle of friedlingen and last: Battle of mons seleucus -[2018-02-13T00:36:41.139] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:36:41.160] [INFO] cheese - inserting 1000 documents. first: Sigma Tau and last: 2009–10 Levski Sofia season -[2018-02-13T00:36:41.230] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:36:41.313] [INFO] cheese - inserting 1000 documents. first: Bühne (Harzvorland) and last: Battle of Kalisz -[2018-02-13T00:36:41.373] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:41.429] [INFO] cheese - inserting 1000 documents. first: Battle of mont sorrel and last: Battle of texel -[2018-02-13T00:36:41.431] [INFO] cheese - inserting 1000 documents. first: Matthew 10:22 and last: Pro Evo 4 -[2018-02-13T00:36:41.446] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:36:41.466] [INFO] cheese - inserting 1000 documents. first: Ding (cartoonist) and last: File:Geo Super logo.png -[2018-02-13T00:36:41.468] [INFO] cheese - inserting 1000 documents. first: Category:Sacrifices in fiction and last: Qarajah Qaya -[2018-02-13T00:36:41.483] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:36:41.507] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:36:41.512] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:36:41.527] [INFO] cheese - inserting 1000 documents. first: Glodeanu-Sarat and last: List of asteroids/187801–187900 -[2018-02-13T00:36:41.560] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:36:41.670] [INFO] cheese - inserting 1000 documents. first: Battle of thala and last: Beaches of hong kong -[2018-02-13T00:36:41.688] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:36:41.703] [INFO] cheese - inserting 1000 documents. first: Template:Politics of Turkey and last: New Zealand Knights FC -[2018-02-13T00:36:41.710] [INFO] cheese - inserting 1000 documents. first: That Man (song) and last: Ethyl bisulfate -[2018-02-13T00:36:41.732] [INFO] cheese - batch complete in: 0.172 secs -[2018-02-13T00:36:41.746] [INFO] cheese - inserting 1000 documents. first: Richard Ruscyzk and last: Julija Volkova -[2018-02-13T00:36:41.772] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:36:41.782] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:36:41.872] [INFO] cheese - inserting 1000 documents. first: Beaches of singapore and last: Berkeley journal of employment and labor law -[2018-02-13T00:36:41.895] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:36:41.918] [INFO] cheese - inserting 1000 documents. first: F.C. Julis and last: Sabine R. Huebner (Ancient Historian) -[2018-02-13T00:36:41.947] [INFO] cheese - inserting 1000 documents. first: Martinian and last: Magwe Division, Burma -[2018-02-13T00:36:41.952] [INFO] cheese - inserting 1000 documents. first: Sanyan-e Pain and last: Aleksei Kulashko -[2018-02-13T00:36:41.960] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:36:42.005] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:36:42.019] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:36:42.053] [INFO] cheese - inserting 1000 documents. first: 1977–78 Scottish Second Division and last: Jamie Davis (musician) -[2018-02-13T00:36:42.056] [INFO] cheese - inserting 1000 documents. first: Conditions (album) and last: Big brother is watching -[2018-02-13T00:36:42.103] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:36:42.105] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:36:42.274] [INFO] cheese - inserting 1000 documents. first: Ragnhild Barland and last: File:Armies Of Light.png -[2018-02-13T00:36:42.287] [INFO] cheese - inserting 1000 documents. first: Big brothers big sisters of america and last: Blackpool pleasure beach railway station -[2018-02-13T00:36:42.314] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:36:42.336] [INFO] cheese - inserting 1000 documents. first: Callistemon and last: File:Graves of January Uprising veterans.jpg -[2018-02-13T00:36:42.351] [INFO] cheese - inserting 1000 documents. first: Sigurdur Thorarinsson and last: Category:1946 disestablishments in Belgium -[2018-02-13T00:36:42.349] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:36:42.412] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:36:42.458] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:36:42.480] [INFO] cheese - inserting 1000 documents. first: Portal:Asian games and last: Template:Infobox animal breed -[2018-02-13T00:36:42.489] [INFO] cheese - inserting 1000 documents. first: Beat Konducta: Volume 1 and last: Lewis and Clark Highway -[2018-02-13T00:36:42.570] [INFO] cheese - inserting 1000 documents. first: Fables (The Dodos song) and last: 1968–69 Scottish Division Two -[2018-02-13T00:36:42.588] [INFO] cheese - inserting 1000 documents. first: Blackpool south railway station and last: Bombing of osaka -[2018-02-13T00:36:42.613] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:36:42.620] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:36:42.653] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:36:42.663] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:36:42.843] [INFO] cheese - inserting 1000 documents. first: Bombing of palestine in world war ii and last: Fête St-Jean-Baptiste -[2018-02-13T00:36:42.861] [INFO] cheese - inserting 1000 documents. first: Tainted (Comic) and last: Peter Curran (footballer) -[2018-02-13T00:36:42.866] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:36:42.880] [INFO] cheese - inserting 1000 documents. first: R&B/Hip-Hop Catalog Albums and last: History of the compass -[2018-02-13T00:36:42.902] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:36:42.932] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:36:43.045] [INFO] cheese - inserting 1000 documents. first: TWC Uptown Amphitheatre and last: Wikipedia:Articles for deletion/J. Patrick Capps -[2018-02-13T00:36:43.046] [INFO] cheese - inserting 1000 documents. first: Education in Chile and last: Kestutis, Grand Prince of Lithuania -[2018-02-13T00:36:43.083] [INFO] cheese - inserting 1000 documents. first: Bracknell forest local elections and last: Wikipedia:WikiProject Big Brother/Big Brother USA -[2018-02-13T00:36:43.090] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:36:43.105] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:43.128] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:36:43.223] [INFO] cheese - inserting 1000 documents. first: Priceline.com and last: Turdus philomelos -[2018-02-13T00:36:43.312] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:36:43.335] [INFO] cheese - inserting 1000 documents. first: XHAQ-FM and last: Armistice Day Blizzard -[2018-02-13T00:36:43.360] [INFO] cheese - inserting 1000 documents. first: Zulfiqqar Ali Bhuttoo and last: Avengers Reborn -[2018-02-13T00:36:43.399] [INFO] cheese - inserting 1000 documents. first: British k class submarine and last: Wikipedia:WikiProject Spam/LinkReports/cbseguess.com -[2018-02-13T00:36:43.412] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:36:43.418] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:36:43.438] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:36:43.595] [INFO] cheese - inserting 1000 documents. first: Category:Mixed martial arts in the United Kingdom and last: Wikipedia:Articles for deletion/Frylock -[2018-02-13T00:36:43.705] [INFO] cheese - inserting 1000 documents. first: Skirgaila, Grand Prince of Lithuania and last: Wikipedia:Articles for deletion/Cochrane (unit) -[2018-02-13T00:36:43.743] [INFO] cheese - inserting 1000 documents. first: Building owners and managers association and last: Scottish Football League 1987-88 -[2018-02-13T00:36:43.754] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:36:43.783] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:43.788] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:36:44.041] [INFO] cheese - inserting 1000 documents. first: Rebellion (1954 film) and last: Iganga General Hospital -[2018-02-13T00:36:44.147] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:36:44.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jim Golden: Guitarist, Radio Personality and last: The Hungry Actors -[2018-02-13T00:36:44.178] [INFO] cheese - inserting 1000 documents. first: Cia activities in brazil and last: McGill Conservatory -[2018-02-13T00:36:44.187] [INFO] cheese - inserting 1000 documents. first: Peugeot 107 and last: Hugh Addonizio -[2018-02-13T00:36:44.210] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:44.269] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:36:44.298] [INFO] cheese - inserting 1000 documents. first: Shireen Sheriar Irani and last: Bahreman, East Azerbaijan -[2018-02-13T00:36:44.318] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T00:36:44.372] [INFO] cheese - inserting 1000 documents. first: Hessian Affine region detector and last: William O'Brien Drury -[2018-02-13T00:36:44.432] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:44.456] [INFO] cheese - inserting 1000 documents. first: Vienna Schwechat International Airport and last: Perseverance Hall -[2018-02-13T00:36:44.456] [INFO] cheese - batch complete in: 1.843 secs -[2018-02-13T00:36:44.478] [INFO] cheese - inserting 1000 documents. first: Campaigns of the american civil war and last: Canton of nangis -[2018-02-13T00:36:44.568] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:36:44.626] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:36:44.802] [INFO] cheese - inserting 1000 documents. first: Felipe Banguero and last: Category:1968 establishments in Zambia -[2018-02-13T00:36:44.906] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:36:44.921] [INFO] cheese - inserting 1000 documents. first: Canton of nantua and last: Carnival in coal -[2018-02-13T00:36:44.963] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:36:45.068] [INFO] cheese - inserting 1000 documents. first: Council of Reims and last: Broughton Poggs -[2018-02-13T00:36:45.136] [INFO] cheese - inserting 1000 documents. first: Category:1910–11 in Scottish football and last: Category:Suspected Wikipedia sockpuppets of Drodedsweard -[2018-02-13T00:36:45.172] [INFO] cheese - inserting 1000 documents. first: Lectionary 332 and last: Phragmatobia rubricosta -[2018-02-13T00:36:45.179] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:36:45.212] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:36:45.217] [INFO] cheese - inserting 1000 documents. first: Carnival in colombia and last: Catherine of valois -[2018-02-13T00:36:45.256] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:36:45.275] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:36:45.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sgt. Robert Barnes and last: The River in Reverse -[2018-02-13T00:36:45.356] [INFO] cheese - inserting 1000 documents. first: Chauna torquata and last: The Challengers (game show) -[2018-02-13T00:36:45.383] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:36:45.445] [INFO] cheese - inserting 1000 documents. first: Abd-al-Hussain Borunsi and last: Category:Churches in Western Sahara -[2018-02-13T00:36:45.449] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T00:36:45.492] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:45.510] [INFO] cheese - inserting 1000 documents. first: Catherine of ymseborg and last: Central council of afghan trade unions -[2018-02-13T00:36:45.539] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:36:45.679] [INFO] cheese - inserting 1000 documents. first: Glaucostegus and last: Category:Automotive industry in the United States -[2018-02-13T00:36:45.710] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:36:45.719] [INFO] cheese - inserting 1000 documents. first: File:DIFF Dharamshala International Film Festival Logo.jpg and last: Gavrilovfjellet -[2018-02-13T00:36:45.757] [INFO] cheese - inserting 1000 documents. first: Compound pendulum and last: Chapman university school of law -[2018-02-13T00:36:45.767] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:36:45.779] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:36:45.802] [INFO] cheese - inserting 1000 documents. first: Łączna and last: Challenge to Lassie -[2018-02-13T00:36:45.850] [INFO] cheese - inserting 1000 documents. first: Uighur detainees in Guantanamo and last: Brand New Lover -[2018-02-13T00:36:45.879] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:36:45.922] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:36:45.936] [INFO] cheese - inserting 1000 documents. first: 1679 Parliament and last: Wikipedia:Files for discussion/2016 May 10 -[2018-02-13T00:36:45.969] [INFO] cheese - inserting 1000 documents. first: Chapman and oxley and last: Chief justice of sri lanka -[2018-02-13T00:36:45.997] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:36:45.992] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:36:46.094] [INFO] cheese - inserting 1000 documents. first: 2011 UT Martin Skyhawks football team and last: Julius Ubido -[2018-02-13T00:36:46.105] [INFO] cheese - inserting 1000 documents. first: Poamsan and last: Metal Hero Series -[2018-02-13T00:36:46.113] [INFO] cheese - inserting 1000 documents. first: List of peers 1650–1659 and last: Gómez (given name) -[2018-02-13T00:36:46.137] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:46.148] [INFO] cheese - inserting 1000 documents. first: Chief justice of western australia and last: Christianity in the united states -[2018-02-13T00:36:46.156] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:36:46.169] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:36:46.175] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:36:46.250] [INFO] cheese - inserting 1000 documents. first: Timoteo Rosales III and last: Portal:Indonesia/Featured picture/2008 -[2018-02-13T00:36:46.294] [INFO] cheese - inserting 1000 documents. first: Lee T. Todd, Jr. and last: Daudpur -[2018-02-13T00:36:46.301] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:46.307] [INFO] cheese - inserting 1000 documents. first: Tania Verstak and last: Please, Please -[2018-02-13T00:36:46.329] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:36:46.382] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:46.419] [INFO] cheese - inserting 1000 documents. first: Christianization of bulgaria and last: Cinema of saudi arabia -[2018-02-13T00:36:46.466] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:36:46.686] [INFO] cheese - inserting 1000 documents. first: Hilda Stumpf and last: Breinesflya -[2018-02-13T00:36:46.694] [INFO] cheese - inserting 1000 documents. first: Cinema of scotland and last: Holbeck Ghyll -[2018-02-13T00:36:46.713] [INFO] cheese - inserting 1000 documents. first: Inula spiraeifolia and last: Crăciunești (disambiguation) -[2018-02-13T00:36:46.713] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:36:46.749] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:36:46.772] [INFO] cheese - inserting 1000 documents. first: Synthetic Schlieren and last: Kimberley Nixon -[2018-02-13T00:36:46.777] [INFO] cheese - inserting 1000 documents. first: Stripe and last: Percy Jocelyn -[2018-02-13T00:36:46.793] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:36:46.829] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:36:46.831] [INFO] cheese - inserting 1000 documents. first: Varbanova and last: Walder Rivers -[2018-02-13T00:36:46.884] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:36:46.900] [INFO] cheese - inserting 1000 documents. first: HSLA Steel and last: O. E. Hailey -[2018-02-13T00:36:46.895] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:36:46.969] [INFO] cheese - inserting 1000 documents. first: Clarence thomas supreme court nomination and last: Coat of arms of buenos aires -[2018-02-13T00:36:46.973] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:36:47.008] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:36:47.146] [INFO] cheese - inserting 1000 documents. first: Craciunesti (disambiguation) and last: Bright Star at Panghulo -[2018-02-13T00:36:47.180] [INFO] cheese - inserting 1000 documents. first: Coat of arms of buftea and last: Collective soul discography -[2018-02-13T00:36:47.188] [INFO] cheese - inserting 1000 documents. first: Category:University of Wisconsin–Eau Claire faculty and last: Category:Torneo Nacional Interprovincial seasons -[2018-02-13T00:36:47.205] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:36:47.243] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:36:47.266] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:36:47.313] [INFO] cheese - inserting 1000 documents. first: Helene Macher and last: Great Beijing Wheel -[2018-02-13T00:36:47.354] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:36:47.456] [INFO] cheese - inserting 1000 documents. first: Altunhisar and last: Spell drop -[2018-02-13T00:36:47.484] [INFO] cheese - inserting 1000 documents. first: Collective for living cinema and last: Commissioners for the reduction of the national debt -[2018-02-13T00:36:47.513] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:36:47.550] [INFO] cheese - inserting 1000 documents. first: Francis Plunkett and last: Bhagavat Geeta -[2018-02-13T00:36:47.579] [INFO] cheese - inserting 1000 documents. first: Draft:Thomas Meilleur-Giguere and last: Patrick Sheehan (Oregon politician) -[2018-02-13T00:36:47.589] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:36:47.642] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:36:47.689] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:36:47.725] [INFO] cheese - inserting 1000 documents. first: Lists of universities in jacksonville and last: Michael FQ San Nicolas -[2018-02-13T00:36:47.821] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:36:47.869] [INFO] cheese - inserting 1000 documents. first: U-shape line and last: Wikipedia:Articles for deletion/Cody Arens -[2018-02-13T00:36:47.915] [INFO] cheese - inserting 1000 documents. first: Commissioners in lunacy and last: Completely hausdorff space -[2018-02-13T00:36:47.935] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:36:47.962] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:48.033] [INFO] cheese - inserting 1000 documents. first: Hiroyasu Sasaki and last: Arms1 -[2018-02-13T00:36:48.108] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:36:48.185] [INFO] cheese - inserting 1000 documents. first: File:West Adelaide Bloods Jumper.svg and last: Consejo mundial de lucha libre -[2018-02-13T00:36:48.232] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:36:48.301] [INFO] cheese - inserting 1000 documents. first: Walter Sillers State Office Building and last: Amblesthidus amoenus -[2018-02-13T00:36:48.324] [INFO] cheese - inserting 1000 documents. first: Liheslaturan Guahan and last: List of listed London Underground stations -[2018-02-13T00:36:48.326] [INFO] cheese - inserting 1000 documents. first: I Can See Clearly Now and last: Nagak -[2018-02-13T00:36:48.360] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:36:48.387] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:36:48.423] [INFO] cheese - inserting 1000 documents. first: Template:International cricket in 2011–12 and last: Morphology linguistics -[2018-02-13T00:36:48.423] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:36:48.516] [INFO] cheese - inserting 1000 documents. first: Consejo mundial de lucha libre roster and last: Cook islands national rugby league team -[2018-02-13T00:36:48.519] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:36:48.554] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:36:48.647] [INFO] cheese - inserting 1000 documents. first: CFHL3 and last: File:Bandera Federada 2007.svg -[2018-02-13T00:36:48.670] [INFO] cheese - inserting 1000 documents. first: Issac newton and last: Hartmannsdorf -[2018-02-13T00:36:48.730] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:36:48.753] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T00:36:48.806] [INFO] cheese - inserting 1000 documents. first: Old Centralians and last: Avkhara -[2018-02-13T00:36:48.856] [INFO] cheese - inserting 1000 documents. first: Cook and enjoy it and last: Council of wales and the marches -[2018-02-13T00:36:48.887] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:36:48.904] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:36:48.913] [INFO] cheese - inserting 1000 documents. first: Template:D.I.T.C. and last: Harris shutter -[2018-02-13T00:36:48.929] [INFO] cheese - inserting 1000 documents. first: Amblesthidus plagiatus and last: James Fulton (New Zealand cricketer) -[2018-02-13T00:36:48.957] [INFO] cheese - inserting 1000 documents. first: Book:Rosendale, New York and last: File:Colditz Castle1.jpg -[2018-02-13T00:36:48.966] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:36:48.991] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:36:49.000] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:36:49.100] [INFO] cheese - inserting 1000 documents. first: Council of the americas and last: Cradley heath railway station -[2018-02-13T00:36:49.128] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:36:49.195] [INFO] cheese - inserting 1000 documents. first: Category:Central State Marauders football coaches and last: Portal:United Kingdom/Featured picture/39 -[2018-02-13T00:36:49.282] [INFO] cheese - inserting 1000 documents. first: Avkhareh and last: Queanbeyan West -[2018-02-13T00:36:49.288] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:36:49.361] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:36:49.460] [INFO] cheese - inserting 1000 documents. first: File:Televisa Regional Logo.png and last: Nasdaq OMX Copenhagen -[2018-02-13T00:36:49.467] [INFO] cheese - inserting 1000 documents. first: The Moffatts and last: Congo "Crisis" -[2018-02-13T00:36:49.502] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:36:49.534] [INFO] cheese - inserting 1000 documents. first: Weightlifting at the 1988 Summer Olympics – Men's 67.5 kg and last: Wikipedia:Meetup/Women in Red/8/Invitation & Thank you & Barnstar -[2018-02-13T00:36:49.568] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:36:49.577] [INFO] cheese - inserting 1000 documents. first: Plumbbob and last: Matthaios Asanes Kantakouzenos -[2018-02-13T00:36:49.640] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:36:49.717] [INFO] cheese - inserting 1000 documents. first: Craft and folk art museum and last: William H. Powell -[2018-02-13T00:36:49.741] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:36:49.851] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:36:49.954] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Desha County, Arkansas and last: Panda Bowl -[2018-02-13T00:36:49.972] [INFO] cheese - inserting 1000 documents. first: Luigi Borgomainerio and last: Barcelona Sants -[2018-02-13T00:36:50.021] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:36:50.038] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:36:50.107] [INFO] cheese - inserting 1000 documents. first: Platyptilia terminalis and last: Neomastogenius -[2018-02-13T00:36:50.152] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:36:50.204] [INFO] cheese - inserting 1000 documents. first: Bud Konheim and last: Category:1970s in American cinema -[2018-02-13T00:36:50.263] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:36:50.269] [INFO] cheese - inserting 1000 documents. first: Theodosius of Portugal and last: Gernsbach -[2018-02-13T00:36:50.359] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:36:50.526] [INFO] cheese - inserting 1000 documents. first: Camanche Reservoir and last: Ayatollah Ahmad Jannati Massah -[2018-02-13T00:36:50.532] [INFO] cheese - inserting 1000 documents. first: Japanese American Citizens League and last: Wikipedia:Articles for deletion/Bia and Bria -[2018-02-13T00:36:50.581] [INFO] cheese - inserting 1000 documents. first: Panda game and last: Portal:Human Body/Musculoskeletal System/Selected article/Layout -[2018-02-13T00:36:50.620] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:36:50.644] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T00:36:50.651] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:36:50.685] [INFO] cheese - inserting 1000 documents. first: Island Pond (Stoddard, New Hampshire) and last: Ik start -[2018-02-13T00:36:50.768] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:36:50.819] [INFO] cheese - inserting 1000 documents. first: Ceres, Santa Fe and last: Wikipedia:Reference desk/Archives/Computing/2011 June 20 -[2018-02-13T00:36:50.888] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:36:50.903] [INFO] cheese - inserting 1000 documents. first: When people grow, people go and last: Jisha Murder Case -[2018-02-13T00:36:50.969] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:36:51.022] [INFO] cheese - inserting 1000 documents. first: Carrie (book) and last: Hiv antigens -[2018-02-13T00:36:51.105] [INFO] cheese - inserting 1000 documents. first: Portal:Human Body/Musculoskeletal System/Selected picture and last: Awake (Bleed the Dream album) -[2018-02-13T00:36:51.098] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:36:51.173] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:36:51.201] [INFO] cheese - inserting 1000 documents. first: Maria's Day and last: Gone for Goode -[2018-02-13T00:36:51.270] [INFO] cheese - inserting 1000 documents. first: File:Tkrnewopen.jpg and last: File:Wallace Terry 1.jpg -[2018-02-13T00:36:51.277] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:36:51.307] [INFO] cheese - inserting 1000 documents. first: Sean Taylor (writer) and last: Economic Development Quarterly -[2018-02-13T00:36:51.344] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:36:51.373] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:51.387] [INFO] cheese - inserting 1000 documents. first: Arthur Phillips and last: Copyparty -[2018-02-13T00:36:51.491] [INFO] cheese - inserting 1000 documents. first: Young Souls Tour and last: Bong Ti -[2018-02-13T00:36:51.550] [INFO] cheese - inserting 1000 documents. first: Carl Eyring and last: ISO 639:qlf -[2018-02-13T00:36:51.577] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:36:51.608] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:36:51.662] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:36:51.764] [INFO] cheese - inserting 1000 documents. first: File:Warren Cup exhibition 011.jpg and last: Portugal's Day -[2018-02-13T00:36:51.850] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:36:51.890] [INFO] cheese - inserting 1000 documents. first: Graywing and last: Wikipedia:Featured list candidates/List of members of the Basketball Hall of Fame (coaches)/archive1 -[2018-02-13T00:36:51.911] [INFO] cheese - inserting 1000 documents. first: 1946 All-Ireland Minor Hurling Championship and last: Template:Country data Dungarpur State -[2018-02-13T00:36:51.950] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2005 Dubbo New Years Eve Riot and last: Garde des sceaux -[2018-02-13T00:36:51.962] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:36:51.976] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:36:52.027] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:36:52.089] [INFO] cheese - inserting 1000 documents. first: ISO 639:qlj and last: Fauresmith (industry) -[2018-02-13T00:36:52.152] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:36:52.239] [INFO] cheese - inserting 1000 documents. first: Renault 1.4 Litre and last: Babakücə (disambiguation) -[2018-02-13T00:36:52.291] [INFO] cheese - inserting 1000 documents. first: Under Dusken and last: Joe Dallesandro -[2018-02-13T00:36:52.301] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:36:52.404] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:36:52.409] [INFO] cheese - inserting 1000 documents. first: T.J. Palmer and last: Chris Fydler -[2018-02-13T00:36:52.522] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:36:52.597] [INFO] cheese - inserting 1000 documents. first: The Orchard on Fire and last: Category:American Civil War museums in Alabama -[2018-02-13T00:36:52.658] [INFO] cheese - inserting 1000 documents. first: New York State Touring Route 16A and last: Michael and Me -[2018-02-13T00:36:52.714] [INFO] cheese - inserting 1000 documents. first: The Vermin and last: Ochropleura talda -[2018-02-13T00:36:52.739] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:36:52.705] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:52.809] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:36:52.846] [INFO] cheese - inserting 1000 documents. first: The Sphere College Project and last: Mexican anthem -[2018-02-13T00:36:52.958] [INFO] cheese - inserting 1000 documents. first: Belle Story and last: Mikuláš Tóth (disambiguation) -[2018-02-13T00:36:52.967] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:36:53.031] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:36:53.227] [INFO] cheese - inserting 1000 documents. first: Canaria and last: Kenneth W. Brewer -[2018-02-13T00:36:53.309] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Quitman County, Mississippi and last: File:Jason Becker Not Dead Yet (2012).jpg -[2018-02-13T00:36:53.325] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:36:53.332] [INFO] cheese - inserting 1000 documents. first: A a milne and last: John Charles Martin Nash -[2018-02-13T00:36:53.389] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:53.404] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:36:53.410] [INFO] cheese - inserting 1000 documents. first: Biphenyl-2,3-diol 1,2-dioxygenase and last: California Ballroom -[2018-02-13T00:36:53.425] [INFO] cheese - inserting 1000 documents. first: Caesars Head, South Carolina and last: Larry Cochran -[2018-02-13T00:36:53.465] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:36:53.502] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:36:53.541] [INFO] cheese - inserting 1000 documents. first: Spider-Man: Turn Off the Dark (album) and last: Category:People educated at West Monmouth School -[2018-02-13T00:36:53.593] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:36:53.691] [INFO] cheese - inserting 1000 documents. first: Inclusive restroom and last: Category:People educated at Kirkcudbright Academy -[2018-02-13T00:36:53.756] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:36:53.778] [INFO] cheese - inserting 1000 documents. first: List of EC numbers (EC 5) and last: Siege of Kaifeng (1127) -[2018-02-13T00:36:53.810] [INFO] cheese - inserting 1000 documents. first: George Candilis and last: File:Green Island Serenade - Zi Wei.ogg -[2018-02-13T00:36:53.817] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:36:53.854] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:36:53.863] [INFO] cheese - inserting 1000 documents. first: Ferredoxin—nitrite reductase and last: List of diplomatic missions of Mauritania -[2018-02-13T00:36:53.883] [INFO] cheese - inserting 1000 documents. first: Futurologists and last: Pila, Laguna -[2018-02-13T00:36:53.893] [INFO] cheese - inserting 1000 documents. first: Eriostemon nottii and last: Jurgen Streppel -[2018-02-13T00:36:53.925] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:36:53.940] [INFO] cheese - inserting 1000 documents. first: Hugh Sexey Middle School and last: Xinzhai Town -[2018-02-13T00:36:53.960] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:53.966] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:36:54.025] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:36:54.222] [INFO] cheese - inserting 1000 documents. first: Uniform expansivity and last: Eric la salle -[2018-02-13T00:36:54.225] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jacketsale2016.com and last: British Airtours 28M -[2018-02-13T00:36:54.252] [INFO] cheese - inserting 1000 documents. first: Category:1932 establishments in the British Empire and last: Kiran-e Bala -[2018-02-13T00:36:54.274] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:36:54.282] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:36:54.330] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:36:54.346] [INFO] cheese - inserting 1000 documents. first: California State Route 26 (1964) and last: Wikipedia:Articles for deletion/Nappyafro.com -[2018-02-13T00:36:54.367] [INFO] cheese - inserting 1000 documents. first: Eternauta and last: Bishop Harry Jackson -[2018-02-13T00:36:54.392] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:54.407] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:54.434] [INFO] cheese - inserting 1000 documents. first: Joaquim Sorolla and last: Xingalol -[2018-02-13T00:36:54.553] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:36:54.581] [INFO] cheese - inserting 1000 documents. first: Medlow Bath and last: Watt's linkage -[2018-02-13T00:36:54.734] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:36:54.776] [INFO] cheese - inserting 1000 documents. first: Template:The Maryland Barnstar/Dark and last: Category:Scientific organisations in New Zealand -[2018-02-13T00:36:54.841] [INFO] cheese - inserting 1000 documents. first: Keran-e Olya and last: Psychroserpens burtonensis -[2018-02-13T00:36:54.852] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:54.862] [INFO] cheese - inserting 1000 documents. first: Eriq la salle and last: Book of Qi -[2018-02-13T00:36:54.889] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:36:54.916] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian sports venue stubs and last: Cathedral Green Footbridge -[2018-02-13T00:36:54.930] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:36:54.936] [INFO] cheese - inserting 1000 documents. first: Sânziene and last: Karimaddela -[2018-02-13T00:36:54.967] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:36:54.969] [INFO] cheese - inserting 1000 documents. first: Fruity Loops Mobile and last: 1936-37 Serie B -[2018-02-13T00:36:54.988] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:55.016] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:36:55.203] [INFO] cheese - inserting 1000 documents. first: 1936-37 Serie C and last: 1980-81 Southern Football League -[2018-02-13T00:36:55.210] [INFO] cheese - inserting 1000 documents. first: Flounder brewing co and last: Wukang County -[2018-02-13T00:36:55.230] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:36:55.254] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:36:55.257] [INFO] cheese - inserting 1000 documents. first: Above and Beyond and last: Wiltshire County Council -[2018-02-13T00:36:55.287] [INFO] cheese - inserting 1000 documents. first: Rotsidis Mammari and last: Lichfield by-election, 1896 -[2018-02-13T00:36:55.329] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:36:55.346] [INFO] cheese - inserting 1000 documents. first: 2009 Wimbledon Championships – Girls' Singles and last: Macleans (toothpaste) -[2018-02-13T00:36:55.359] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:36:55.368] [INFO] cheese - inserting 1000 documents. first: University of Rice and last: Binary Pattern -[2018-02-13T00:36:55.400] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:36:55.417] [INFO] cheese - inserting 1000 documents. first: (R)-propane-1,2-diol and last: Royal Albert Memorial Museum -[2018-02-13T00:36:55.435] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:36:55.482] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:36:55.554] [INFO] cheese - inserting 1000 documents. first: 1980-81 Stoke City F.C. season and last: 1996 Grand Prix de Tennis de Toulouse - Doubles -[2018-02-13T00:36:55.565] [INFO] cheese - inserting 1000 documents. first: Ravaz and last: Igdalu-ye Bala -[2018-02-13T00:36:55.583] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:36:55.607] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:36:55.846] [INFO] cheese - inserting 1000 documents. first: Sports Car Racing and last: Gambling on papal elections -[2018-02-13T00:36:55.848] [INFO] cheese - inserting 1000 documents. first: My Girl Tisa and last: A Secret Life (Marianne Faithfull album) -[2018-02-13T00:36:55.854] [INFO] cheese - inserting 1000 documents. first: Al Hassan Saleh and last: John Russell Walter -[2018-02-13T00:36:55.872] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:36:55.877] [INFO] cheese - inserting 1000 documents. first: Bulk metal glass and last: National Institute of Statistics -[2018-02-13T00:36:55.952] [INFO] cheese - inserting 1000 documents. first: German emperor and last: West Virginia Wesleyan College -[2018-02-13T00:36:55.959] [INFO] cheese - inserting 1000 documents. first: Hugh Havelock McLean and last: Dúghall de Ergadia -[2018-02-13T00:36:55.986] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:55.992] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:36:56.034] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:36:56.121] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:36:56.149] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:36:56.239] [INFO] cheese - inserting 1000 documents. first: Idehlu-ye Pa'in and last: NWFP cuisine -[2018-02-13T00:36:56.317] [INFO] cheese - inserting 1000 documents. first: 2003 IAAF World Indoor Championships - Men's triple jump and last: Politics of South Tyrol -[2018-02-13T00:36:56.317] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:36:56.344] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:56.469] [INFO] cheese - inserting 1000 documents. first: Category:User syl and last: File:Moskvarech.JPG -[2018-02-13T00:36:56.512] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:36:56.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fernando Wwirst and last: Brachida hatayana -[2018-02-13T00:36:56.560] [INFO] cheese - inserting 1000 documents. first: Adult Entertainment (Raffi album) and last: 2010-11 ES Sétif season -[2018-02-13T00:36:56.566] [INFO] cheese - inserting 1000 documents. first: Elisabeth Mary of Braganza and last: Ota Filip -[2018-02-13T00:36:56.576] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:36:56.588] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:36:56.608] [INFO] cheese - inserting 1000 documents. first: File:Toast of new orleans.jpg and last: Category:Arts podcasts -[2018-02-13T00:36:56.620] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:56.664] [INFO] cheese - inserting 1000 documents. first: NWFP (region) and last: Badalan, Khuzestan -[2018-02-13T00:36:56.681] [INFO] cheese - inserting 1000 documents. first: Category:Prisons in Florida and last: People's Insurance Company of China -[2018-02-13T00:36:56.689] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:36:56.706] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:36:56.760] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:36:56.820] [INFO] cheese - inserting 1000 documents. first: 2010-11 East Carolina Pirates men's basketball team and last: 2011 Sarasota Open - Doubles -[2018-02-13T00:36:56.857] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:36:56.954] [INFO] cheese - inserting 1000 documents. first: Mess Lake Lava Field and last: Northwestern University in Qatar -[2018-02-13T00:36:56.993] [INFO] cheese - inserting 1000 documents. first: Liogluta falcata and last: Category:Doshisha University faculty -[2018-02-13T00:36:56.995] [INFO] cheese - inserting 1000 documents. first: Bismarck cabinet and last: File:En Concierto Inolvidable (Rocio Durcal Album Cover Art).jpg -[2018-02-13T00:36:57.001] [INFO] cheese - inserting 1000 documents. first: File:WindsorHouse.JPG and last: Wikipedia:Requests for checkuser/Case/Danteferno -[2018-02-13T00:36:57.008] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:36:57.027] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:36:57.032] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:57.079] [INFO] cheese - inserting 1000 documents. first: The Devil Comes Back to Georgia and last: Kisschasy Discography -[2018-02-13T00:36:57.078] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:36:57.091] [INFO] cheese - inserting 1000 documents. first: 2011 Sarasota Open - Singles and last: Category:Soviet emigrants to Germany -[2018-02-13T00:36:57.131] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:57.135] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:36:57.213] [INFO] cheese - inserting 1000 documents. first: The Enemy Within and last: Nikolai repnin -[2018-02-13T00:36:57.277] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:36:57.347] [INFO] cheese - inserting 1000 documents. first: File:Grateful Dead - Dave's Picks Volume 8.jpg and last: Aphrissa butleri -[2018-02-13T00:36:57.351] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1980 Summer Olympics - Men's 50 kilometres walk and last: Eurocup Basketball 2009-10 Regular Season -[2018-02-13T00:36:57.373] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:36:57.385] [INFO] cheese - inserting 1000 documents. first: Name of Georgia (country) and last: Template:Fb competition 2009-10 Slovenian PrvaLiga relegation play-offs -[2018-02-13T00:36:57.410] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:36:57.426] [INFO] cheese - inserting 1000 documents. first: Papuk Mountain and last: Triple H 100.1 FM -[2018-02-13T00:36:57.457] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:57.513] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:36:57.609] [INFO] cheese - inserting 1000 documents. first: Opinions Won't Keep You Warm At Night and last: Category:Cattle stubs -[2018-02-13T00:36:57.613] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Wisangocaris and last: Josef F. Bille -[2018-02-13T00:36:57.677] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:36:57.678] [INFO] cheese - inserting 1000 documents. first: Eurocup Basketball 2010-11 and last: Thomas Moore Costello -[2018-02-13T00:36:57.689] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:36:57.751] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:36:57.871] [INFO] cheese - inserting 1000 documents. first: Euro F3000 Dijon and last: Cross Edge Dash -[2018-02-13T00:36:57.878] [INFO] cheese - inserting 1000 documents. first: Phoebis boisduvalii and last: Links 234 -[2018-02-13T00:36:57.911] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:36:57.918] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:36:57.928] [INFO] cheese - inserting 1000 documents. first: DRE voting machine and last: XiamenAir -[2018-02-13T00:36:57.964] [INFO] cheese - inserting 1000 documents. first: List of minor planets/104901-105000 and last: List of minor planets/179301-179400 -[2018-02-13T00:36:57.978] [INFO] cheese - inserting 1000 documents. first: Summer Of ’69 and last: Talking signs -[2018-02-13T00:36:58.010] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:36:58.019] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:36:58.054] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:36:58.098] [INFO] cheese - inserting 1000 documents. first: File:Babu Rafique shaking hands with President Ayub Khan.jpg and last: Norwegian Bible Belt -[2018-02-13T00:36:58.150] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:36:58.169] [INFO] cheese - inserting 1000 documents. first: Peshwar and last: Category:Amide solvents -[2018-02-13T00:36:58.246] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:58.322] [INFO] cheese - inserting 1000 documents. first: Almadeh and last: Mims effect -[2018-02-13T00:36:58.374] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:58.375] [INFO] cheese - inserting 1000 documents. first: Id est and last: Desktop environments -[2018-02-13T00:36:58.393] [INFO] cheese - inserting 1000 documents. first: Truth Commissions and last: Fiji/Economy -[2018-02-13T00:36:58.399] [INFO] cheese - inserting 1000 documents. first: List of minor planets/179401-179500 and last: Kingdom of Gao -[2018-02-13T00:36:58.429] [INFO] cheese - inserting 1000 documents. first: Goalpariya dialect and last: Infosphere -[2018-02-13T00:36:58.447] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:36:58.457] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:58.492] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:58.531] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:36:58.666] [INFO] cheese - inserting 1000 documents. first: Deborah Steinberg and last: Stanford University School of Medicine Dermatology Residency Program -[2018-02-13T00:36:58.735] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:36:58.792] [INFO] cheese - inserting 1000 documents. first: Immunologic receptor and last: Pabst von Ohain -[2018-02-13T00:36:58.809] [INFO] cheese - inserting 1000 documents. first: SS Coolabah and last: List of minor planets/92101-92200 -[2018-02-13T00:36:58.858] [INFO] cheese - inserting 1000 documents. first: Template:GoldenGlobeAwardBestMotionPictureMusicalComedy 1981-2000 and last: Ashikaga murder case -[2018-02-13T00:36:58.871] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:36:58.912] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:58.944] [INFO] cheese - inserting 1000 documents. first: Aviculin and last: Fortress Luxembourg -[2018-02-13T00:36:58.950] [INFO] cheese - inserting 1000 documents. first: Voidable and last: Carmen Sandiego: The Secret of the Stolen Drums -[2018-02-13T00:36:58.959] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:36:59.000] [INFO] cheese - inserting 1000 documents. first: Dialectical and last: Best Country Vocal Performance, Male -[2018-02-13T00:36:59.049] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:36:59.052] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:59.089] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:36:59.287] [INFO] cheese - inserting 1000 documents. first: Template:Country data Nottinghamshire and last: National Register of Historic Places listings in Sleeping Bear Dunes National Lakeshore -[2018-02-13T00:36:59.318] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:59.401] [INFO] cheese - inserting 1000 documents. first: Template:Secondary schools in Victoria and last: Category:Taxa named by René Lavocat -[2018-02-13T00:36:59.408] [INFO] cheese - inserting 1000 documents. first: Nigerian Mines and Steel Development Ministry and last: Category:Suspected Wikipedia sockpuppets of 92.145.77.139 -[2018-02-13T00:36:59.409] [INFO] cheese - inserting 1000 documents. first: Sam Dockery and last: Galin Qeshlaqi -[2018-02-13T00:36:59.433] [INFO] cheese - inserting 1000 documents. first: Advanced Numerical Research & Analysis Group and last: Wikipedia:Redirects for discussion/Log/2007 November 11 -[2018-02-13T00:36:59.440] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:36:59.443] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:59.455] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:36:59.504] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:36:59.540] [INFO] cheese - inserting 1000 documents. first: Aru-ding and last: Rna-binding proteins -[2018-02-13T00:36:59.590] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:36:59.646] [INFO] cheese - inserting 1000 documents. first: Miluta and last: Wikipedia:WikiProject Spam/LinkReports/chemin-compostelle.eu -[2018-02-13T00:36:59.658] [INFO] cheese - inserting 1000 documents. first: Best Rock Instrumental Performance and last: UN/LOCODE:USHBG -[2018-02-13T00:36:59.694] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:36:59.714] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:36:59.803] [INFO] cheese - inserting 1000 documents. first: 2002 African Championships in Athletics – Men's 100 metres and last: Category:Mauritian people of Marathi descent -[2018-02-13T00:36:59.824] [INFO] cheese - inserting 1000 documents. first: Highway 74 (Arkansas) and last: Wikipedia:Articles for deletion/Flashqard -[2018-02-13T00:36:59.853] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:36:59.859] [INFO] cheese - inserting 1000 documents. first: John St. Polis and last: Chlorophoneus multicolor -[2018-02-13T00:36:59.862] [INFO] cheese - inserting 1000 documents. first: Sandstone Center for the Performing Arts and last: Moanasaurus mangahouangae -[2018-02-13T00:36:59.867] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:36:59.916] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:59.927] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:36:59.999] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USHBV and last: UN/LOCODE:USHOO -[2018-02-13T00:37:00.047] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:37:00.117] [INFO] cheese - inserting 1000 documents. first: ODU and last: Andrew Blodgett "Monk" Mayfair -[2018-02-13T00:37:00.175] [INFO] cheese - inserting 1000 documents. first: Tulips - Sylvia Plath and last: Mathilde Comont -[2018-02-13T00:37:00.185] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:37:00.200] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Appalachia and last: 1998 Tonys -[2018-02-13T00:37:00.206] [INFO] cheese - inserting 1000 documents. first: Category:Universities and colleges in Ramsey County, Minnesota and last: List of Hoshizora e Kakaru Hashi episodes -[2018-02-13T00:37:00.218] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:37:00.237] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:37:00.274] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:37:00.356] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USMTL and last: File:Alice Auma Lakwena Behrend.jpg -[2018-02-13T00:37:00.375] [INFO] cheese - inserting 1000 documents. first: Paksas Cabinet I and last: Draft:Naphthalene-1,5-dione -[2018-02-13T00:37:00.449] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:37:00.502] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:37:00.847] [INFO] cheese - inserting 1000 documents. first: Second Battle of Kharkiv and last: Of the Father's Heart Begotten -[2018-02-13T00:37:00.871] [INFO] cheese - inserting 1000 documents. first: Puppeh and last: Wikipedia:Sockpuppet investigations/Louisianaruralhistory/Archive -[2018-02-13T00:37:00.877] [INFO] cheese - inserting 1000 documents. first: Paleologus dynasty and last: POO -[2018-02-13T00:37:00.891] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:37:00.898] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USGFA and last: William Ormsby-Gore (1779–1860) -[2018-02-13T00:37:00.936] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:37:00.942] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:37:00.953] [INFO] cheese - inserting 1000 documents. first: File:Aval Appadithan (TV series).jpg and last: Reading Eagle Theater -[2018-02-13T00:37:00.959] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:37:00.977] [INFO] cheese - inserting 1000 documents. first: Camuiesti and last: Cuban general election, 1901 -[2018-02-13T00:37:01.021] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:37:01.041] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:37:01.186] [INFO] cheese - inserting 1000 documents. first: Roderick Macdonald and last: Khalifeh Chay -[2018-02-13T00:37:01.241] [INFO] cheese - inserting 1000 documents. first: File:TSA Cast.jpg and last: LTG Hugh P. Harris, USA -[2018-02-13T00:37:01.277] [INFO] cheese - batch complete in: 1.41 secs -[2018-02-13T00:37:01.306] [INFO] cheese - inserting 1000 documents. first: Myosin type iv and last: File:Freek2.jpg -[2018-02-13T00:37:01.304] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:37:01.348] [INFO] cheese - inserting 1000 documents. first: Category:Books about Woodrow Wilson and last: Portal:University of Cambridge/Did you know/3 -[2018-02-13T00:37:01.364] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:37:01.409] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:37:01.461] [INFO] cheese - inserting 1000 documents. first: List of people born in Calgary, Alberta, Canada and last: Josip Demirović Devj -[2018-02-13T00:37:01.464] [INFO] cheese - inserting 1000 documents. first: Riker and last: Geofroi Jacques Flach -[2018-02-13T00:37:01.507] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:37:01.525] [INFO] cheese - inserting 1000 documents. first: BBC Media Action and last: Pseudiragoides florianii -[2018-02-13T00:37:01.530] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:37:01.605] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:01.723] [INFO] cheese - inserting 1000 documents. first: Category:1898 novels and last: LR44 Batteries -[2018-02-13T00:37:01.771] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:37:01.803] [INFO] cheese - inserting 1000 documents. first: VADM James A. Stockdale, USN and last: Oliver typewriter -[2018-02-13T00:37:01.841] [INFO] cheese - inserting 1000 documents. first: Property class and last: Portal:Weather/Featured content/GA/353 -[2018-02-13T00:37:01.867] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:01.880] [INFO] cheese - inserting 1000 documents. first: Portal:University of Cambridge/Did you know/4 and last: Hero pen -[2018-02-13T00:37:01.935] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:37:01.957] [INFO] cheese - inserting 1000 documents. first: The Rattlesnakes and last: Charles Tayot -[2018-02-13T00:37:02.034] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:37:02.133] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:37:02.182] [INFO] cheese - inserting 1000 documents. first: Polabian culture and last: Godfrey I of Louvain -[2018-02-13T00:37:02.202] [INFO] cheese - inserting 1000 documents. first: Dominican general election, 1954 and last: Freidrich Wachowiak -[2018-02-13T00:37:02.248] [INFO] cheese - inserting 1000 documents. first: Lū’au and last: Politics of sierra leone -[2018-02-13T00:37:02.289] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:37:02.291] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:37:02.321] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:37:02.483] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/Featured content/GA/354 and last: Bolivarian Alliance for the People of Our America -[2018-02-13T00:37:02.493] [INFO] cheese - inserting 1000 documents. first: Virginia Secondary Route 620 (Fairfax County) and last: The Arrangement (1969 film) -[2018-02-13T00:37:02.537] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:02.548] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:37:02.607] [INFO] cheese - inserting 1000 documents. first: Tejima Keizaburō and last: Template:2013–14 IRB Sevens World Series -[2018-02-13T00:37:02.631] [INFO] cheese - inserting 1000 documents. first: Politics of slovakia and last: Portugal in the eurovision dance contest -[2018-02-13T00:37:02.654] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:37:02.656] [INFO] cheese - inserting 1000 documents. first: Robert Niven (cricketer) and last: GNU Libreboot -[2018-02-13T00:37:02.671] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:37:02.723] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:02.804] [INFO] cheese - inserting 1000 documents. first: University of Patna and last: Wikipedia:Articles for deletion/Fresku -[2018-02-13T00:37:02.893] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:37:02.961] [INFO] cheese - inserting 1000 documents. first: Portugal in the great war and last: Isopentenyl-diphosphate Delta-isomerase -[2018-02-13T00:37:02.969] [INFO] cheese - inserting 1000 documents. first: C27H28Br2O5S and last: The Southern District of New York Action Against Online Poker Players -[2018-02-13T00:37:03.010] [INFO] cheese - inserting 1000 documents. first: Texas hold 'em starting hands and last: Monte Vettore -[2018-02-13T00:37:03.013] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:03.044] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:37:03.103] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:37:03.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Peptide-RNA world and last: Francis Rynd -[2018-02-13T00:37:03.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Dabljuh and last: HP LaserJet 4M -[2018-02-13T00:37:03.207] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:37:03.245] [INFO] cheese - inserting 1000 documents. first: Korstin and last: Category:Buildings and structures in Southington, Connecticut -[2018-02-13T00:37:03.279] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:03.313] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:03.406] [INFO] cheese - inserting 1000 documents. first: Tamburlaine the Great (play) and last: Nicholas Goldsborough -[2018-02-13T00:37:03.443] [INFO] cheese - inserting 1000 documents. first: Natronai II and last: Wikipedia:Articles for deletion/Israel FC: Genesis -[2018-02-13T00:37:03.464] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:37:03.566] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:37:03.608] [INFO] cheese - inserting 1000 documents. first: Sine of X and last: COL4A3 -[2018-02-13T00:37:03.678] [INFO] cheese - inserting 1000 documents. first: Visa policy of Trinidad and Tobago and last: Mouhcine Chehibi -[2018-02-13T00:37:03.693] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:37:03.770] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:03.857] [INFO] cheese - inserting 1000 documents. first: HP LaserJet 4 Plus and last: Football World Cup 1998 (qualification AFC) -[2018-02-13T00:37:03.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alptraum and last: Hurstbridge line -[2018-02-13T00:37:03.924] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:37:04.023] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T00:37:04.202] [INFO] cheese - inserting 1000 documents. first: Laai Ying Haap and last: Luigi Calamatta -[2018-02-13T00:37:04.216] [INFO] cheese - inserting 1000 documents. first: Template:Republic of the Congo topics and last: Logik (Processing and Hosting Services) -[2018-02-13T00:37:04.291] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:37:04.295] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:37:04.306] [INFO] cheese - inserting 1000 documents. first: Arresten and last: Sulakhlu -[2018-02-13T00:37:04.307] [INFO] cheese - inserting 1000 documents. first: Mejirodai, Tōkyō and last: Matja language -[2018-02-13T00:37:04.357] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:37:04.410] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:37:04.414] [INFO] cheese - inserting 1000 documents. first: Jerlun-Langkawi (federal constituency) and last: Template:Party shading/Unidos Podemos -[2018-02-13T00:37:04.504] [INFO] cheese - inserting 1000 documents. first: Football World Cup 1998 (qualification CAF) and last: ISO 639:eng -[2018-02-13T00:37:04.534] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T00:37:04.550] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:37:04.852] [INFO] cheese - inserting 1000 documents. first: Micheal Jordon and last: Wikipedia:Articles for deletion/GreenFacts -[2018-02-13T00:37:04.862] [INFO] cheese - inserting 1000 documents. first: Hydroelectric dams and last: Akoli -[2018-02-13T00:37:04.902] [INFO] cheese - inserting 1000 documents. first: Propuesta Indecente and last: ZebraBox -[2018-02-13T00:37:04.938] [INFO] cheese - inserting 1000 documents. first: Musca fenestralis and last: Phineas and Ferb's Musical Cliptastic Countdown -[2018-02-13T00:37:04.947] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:37:04.971] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:37:05.025] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:37:05.049] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:37:05.100] [INFO] cheese - inserting 1000 documents. first: File:UndercoverAngelDVDCover.jpg and last: UN/LOCODE:THMEK -[2018-02-13T00:37:05.164] [INFO] cheese - inserting 1000 documents. first: Titan Maximum and last: KPSS test -[2018-02-13T00:37:05.202] [INFO] cheese - inserting 1000 documents. first: Star Wars: Fall of the Resistance and last: Category:Pliocene animals of Europe -[2018-02-13T00:37:05.205] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:05.273] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:37:05.277] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:37:05.501] [INFO] cheese - inserting 1000 documents. first: Bishops of Paderborn and last: File:Meher masts 2.jpg -[2018-02-13T00:37:05.549] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:05.584] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USQHK and last: UN/LOCODE:USWVY -[2018-02-13T00:37:05.683] [INFO] cheese - inserting 1000 documents. first: Ulu, Russia and last: Stephen Hudson (singer) -[2018-02-13T00:37:05.787] [INFO] cheese - inserting 1000 documents. first: Every Turn of the World and last: Wikipedia:WikiProject Spam/LinkReports/cinmass.com -[2018-02-13T00:37:05.800] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:37:05.848] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:37:05.871] [INFO] cheese - inserting 1000 documents. first: Stag Weekend and last: File:Loose ends french jimi.jpg -[2018-02-13T00:37:05.926] [INFO] cheese - inserting 1000 documents. first: Paganin and last: Ray Procter -[2018-02-13T00:37:05.985] [INFO] cheese - inserting 1000 documents. first: Commissioner of Public Affairs and Public Safety and last: Edward Reed -[2018-02-13T00:37:06.289] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T00:37:06.479] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T00:37:06.523] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:37:06.559] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T00:37:06.802] [INFO] cheese - inserting 1000 documents. first: Amsit and last: Sypharochiton sinclairi -[2018-02-13T00:37:06.905] [INFO] cheese - batch complete in: 1.356 secs -[2018-02-13T00:37:06.980] [INFO] cheese - inserting 1000 documents. first: Bakemon and last: UN/LOCODE:USLOI -[2018-02-13T00:37:07.069] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T00:37:07.085] [INFO] cheese - inserting 1000 documents. first: Template:Showt County and last: Rising film (long tube vertical) evaporator -[2018-02-13T00:37:07.146] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T00:37:07.155] [INFO] cheese - inserting 1000 documents. first: Alphonse Lemonnier and last: Yang–Mills action -[2018-02-13T00:37:07.214] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:07.283] [INFO] cheese - inserting 1000 documents. first: 1913 Copa del Rey and last: H.J. Whigham -[2018-02-13T00:37:07.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/cinmass.com and last: SAIPA Group -[2018-02-13T00:37:07.351] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:37:07.386] [INFO] cheese - inserting 1000 documents. first: Carhampton and last: Dusan Uhrin -[2018-02-13T00:37:07.386] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T00:37:07.469] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T00:37:07.486] [INFO] cheese - inserting 1000 documents. first: Template:1.1-enzyme-stub and last: San Francisco Bay Oil Spill -[2018-02-13T00:37:07.559] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USXWN and last: Bainbridge -[2018-02-13T00:37:07.587] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:37:07.612] [INFO] cheese - inserting 1000 documents. first: Soganlu and last: Template:Fb team Havre -[2018-02-13T00:37:07.622] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:37:07.679] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:37:07.970] [INFO] cheese - inserting 1000 documents. first: Henry James Whigham and last: Propafol -[2018-02-13T00:37:08.126] [INFO] cheese - inserting 1000 documents. first: Moldova Suliţa and last: Graduate School for Computing in Medicine and Life Sciences -[2018-02-13T00:37:08.143] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:37:08.156] [INFO] cheese - inserting 1000 documents. first: Category:People with hemophilia and last: Cortinarius palatinus -[2018-02-13T00:37:08.311] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:37:08.326] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:37:08.388] [INFO] cheese - inserting 1000 documents. first: Six Metamorphoses after Ovid and last: 1982 NLCS -[2018-02-13T00:37:08.447] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:37:08.557] [INFO] cheese - inserting 1000 documents. first: MAX (band) and last: Cumulo-nimbus -[2018-02-13T00:37:08.623] [INFO] cheese - inserting 1000 documents. first: Category:Indian music composers and last: Wizardry III -[2018-02-13T00:37:08.639] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T00:37:08.714] [INFO] cheese - inserting 1000 documents. first: Lebanon - United States of America relations and last: Jayden Post -[2018-02-13T00:37:08.721] [INFO] cheese - inserting 1000 documents. first: Pervasive Informatics and last: Template:NYCS Platform Layout IRT Flushing Line Local Stations/doc -[2018-02-13T00:37:08.761] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T00:37:08.826] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T00:37:08.855] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:37:08.961] [INFO] cheese - inserting 1000 documents. first: Cortinarius neotropicus and last: Bovingdon Hall Woods -[2018-02-13T00:37:09.035] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:37:09.101] [INFO] cheese - inserting 1000 documents. first: Datong-Xian Passenger Dedicated Railway Line and last: Category:Art museums and galleries in Worcestershire -[2018-02-13T00:37:09.108] [INFO] cheese - inserting 1000 documents. first: 1983 NLCS and last: 2011 NCAA Division I Men's Ice Hockey Tournament -[2018-02-13T00:37:09.262] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:37:09.260] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:37:09.455] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout IRT Flushing Line Local Stations and last: Jandar, Kohgiluyeh and Boyer-Ahmad Province -[2018-02-13T00:37:09.513] [INFO] cheese - inserting 1000 documents. first: Prinetti & Stucchi and last: Zohar (disambiguation) -[2018-02-13T00:37:09.514] [INFO] cheese - inserting 1000 documents. first: Reference scenarios and last: Dot com companies -[2018-02-13T00:37:09.518] [INFO] cheese - inserting 1000 documents. first: WRGB and last: Milevsko -[2018-02-13T00:37:09.526] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:37:09.594] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:37:09.602] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:37:09.631] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:37:09.858] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Hema Malini and last: Polykarp Leyser II -[2018-02-13T00:37:09.869] [INFO] cheese - inserting 1000 documents. first: Phyllis Lindstrom and last: Numea -[2018-02-13T00:37:09.934] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:37:09.954] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:37:10.002] [INFO] cheese - inserting 1000 documents. first: Category:Keb' Mo' album covers and last: Category:1920–21 ice hockey leagues -[2018-02-13T00:37:10.004] [INFO] cheese - inserting 1000 documents. first: File:Tiger Daula.gif and last: Real Me (song) -[2018-02-13T00:37:10.031] [INFO] cheese - inserting 1000 documents. first: Electrical energy measurement and last: Category:Wikipedia sockpuppets of Wookiewinnett -[2018-02-13T00:37:10.043] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:37:10.059] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T00:37:10.114] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:37:10.192] [INFO] cheese - inserting 1000 documents. first: Samuel Robbins Brown (missionary) and last: Glycosylphosphatidylinositol diacylglycerol-lyase -[2018-02-13T00:37:10.237] [INFO] cheese - inserting 1000 documents. first: Romaniote language and last: UN/LOCODE:USLVK -[2018-02-13T00:37:10.310] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:37:10.336] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:37:10.385] [INFO] cheese - inserting 1000 documents. first: Joseph Anton Steffan and last: Swimming at the 2006 Asian Games - Women's 100m butterfly -[2018-02-13T00:37:10.436] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:37:10.483] [INFO] cheese - inserting 1000 documents. first: Kamen Rider 555: Paradise Lost and last: Santo Amaro, Azores Islands -[2018-02-13T00:37:10.576] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:37:10.665] [INFO] cheese - inserting 1000 documents. first: Template:2016–17 Northern Football League Division Two table and last: The Final Last of the Ultimate End (short story) -[2018-02-13T00:37:10.678] [INFO] cheese - inserting 1000 documents. first: Milán Václavík and last: Liechtenstein parliamentary election, 1932 -[2018-02-13T00:37:10.781] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:37:10.784] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:37:10.787] [INFO] cheese - inserting 1000 documents. first: Portal:Ice hockey/Featured lists/6 and last: Lee Leffingwell -[2018-02-13T00:37:10.903] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:37:10.981] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USRKF and last: Winnie the pooh -[2018-02-13T00:37:10.986] [INFO] cheese - inserting 1000 documents. first: Lancia Augusta and last: Stefanie Beck -[2018-02-13T00:37:11.098] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:37:11.105] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:37:11.203] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2006 Asian Games - Women's 100m freestyle and last: 2011 Budapest Grand Prix – Singles Qualifying -[2018-02-13T00:37:11.315] [INFO] cheese - inserting 1000 documents. first: Praia da Vitória, Azores Islands and last: Barbadian general election, 1981 -[2018-02-13T00:37:11.341] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:37:11.454] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:37:11.526] [INFO] cheese - inserting 1000 documents. first: Liechtenstein parliamentary election, 1936 and last: Almaran -[2018-02-13T00:37:11.594] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:37:11.645] [INFO] cheese - inserting 1000 documents. first: Kristina Alikina and last: Fernandez de la Cruz (Buenos Aires Premetro) -[2018-02-13T00:37:11.659] [INFO] cheese - inserting 1000 documents. first: Kulul, California and last: Category:Organizations based in Yugoslavia -[2018-02-13T00:37:11.718] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:37:11.728] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:37:11.819] [INFO] cheese - inserting 1000 documents. first: Butlerov and last: Flamingo Resort, Inc. v. United States -[2018-02-13T00:37:11.827] [INFO] cheese - inserting 1000 documents. first: Hermosa, Chicago and last: UN/LOCODE:USHLL -[2018-02-13T00:37:11.872] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:37:11.885] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:37:11.917] [INFO] cheese - inserting 1000 documents. first: 2010 Poli-Farbe Budapest Grand Prix and last: Wikipedia:Articles for deletion/Nickerson Family Association (2nd nomination) -[2018-02-13T00:37:12.018] [INFO] cheese - inserting 1000 documents. first: Isaac Ledyard and last: File:Orb-bike.gif -[2018-02-13T00:37:12.031] [INFO] cheese - inserting 1000 documents. first: Damias elegans and last: Koca Hüsrev Pasha -[2018-02-13T00:37:12.032] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:37:12.132] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:37:12.140] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:37:12.325] [INFO] cheese - inserting 1000 documents. first: Rhizoridae and last: American Tunes -[2018-02-13T00:37:12.356] [INFO] cheese - inserting 1000 documents. first: Hanken and last: UN/LOCODE:USBVY -[2018-02-13T00:37:12.379] [INFO] cheese - inserting 1000 documents. first: Category:"Weird Al" Yankovic audio samples and last: Natividad, California -[2018-02-13T00:37:12.389] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:12.411] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:37:12.472] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:37:12.566] [INFO] cheese - inserting 1000 documents. first: Tala (Darkwatch) and last: Mor karbasi -[2018-02-13T00:37:12.597] [INFO] cheese - inserting 1000 documents. first: Nike Academy and last: William James Manning -[2018-02-13T00:37:12.629] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:37:12.654] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:12.699] [INFO] cheese - inserting 1000 documents. first: Koca Husrev Pasha and last: Template:Attached KML/Pleasant Avenue -[2018-02-13T00:37:12.738] [INFO] cheese - inserting 1000 documents. first: Sam Nzima and last: Anthony Michael Arnold Turnbull -[2018-02-13T00:37:12.811] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:37:12.892] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:12.914] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USRXG and last: UN/LOCODE:USHAR -[2018-02-13T00:37:13.009] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:37:13.037] [INFO] cheese - inserting 1000 documents. first: Category:2009 in fencing and last: Philippe Juvin -[2018-02-13T00:37:13.078] [INFO] cheese - inserting 1000 documents. first: Guadalupe Muñoz Sampedro and last: Martinsville, Clinton County, Indiana -[2018-02-13T00:37:13.111] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:37:13.185] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:37:13.217] [INFO] cheese - inserting 1000 documents. first: Setauket Spy Ring and last: Category:Hotels by city -[2018-02-13T00:37:13.244] [INFO] cheese - inserting 1000 documents. first: William Thomas Manning and last: Wikipedia:Miscellany for deletion/User:CanidG/Snap's World -[2018-02-13T00:37:13.278] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:37:13.314] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:37:13.419] [INFO] cheese - inserting 1000 documents. first: Khalil Said Khalil Deek and last: Żelazna Brama -[2018-02-13T00:37:13.544] [INFO] cheese - inserting 1000 documents. first: Template:Diplomatic missions of Tanzania and last: Category:Selex ES -[2018-02-13T00:37:13.558] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:37:13.605] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:37:13.666] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USBSG and last: Wikipedia:Categories for deletion/Category:Atheists -[2018-02-13T00:37:13.681] [INFO] cheese - inserting 1000 documents. first: Essa Hukkanen and last: Wikipedia:WikiProject Spam/LinkReports/multipessoa.net -[2018-02-13T00:37:13.760] [INFO] cheese - inserting 1000 documents. first: Abhishek verma and last: Untied Kingdom general election, 1865 -[2018-02-13T00:37:13.748] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:37:13.778] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:37:13.832] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:37:13.915] [INFO] cheese - inserting 1000 documents. first: Triple J Hottest 100 Australian Albums of All Time, 2011 and last: George Barratt -[2018-02-13T00:37:13.933] [INFO] cheese - inserting 1000 documents. first: Abraham Law and last: Meinwerk, Blessed -[2018-02-13T00:37:14.015] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:37:14.044] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:37:14.160] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/IPhone 5S/archive2 and last: Ryouzo -[2018-02-13T00:37:14.216] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:14.304] [INFO] cheese - inserting 1000 documents. first: Saudi Arabia–Untied Arab Emirates relations and last: Category:Lists of 14th-century people -[2018-02-13T00:37:14.337] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:37:14.385] [INFO] cheese - inserting 1000 documents. first: Eufemiusz Czaplic and last: Büyükmenderes River -[2018-02-13T00:37:14.519] [INFO] cheese - inserting 1000 documents. first: Atomship song and last: Sarwankhera -[2018-02-13T00:37:14.601] [INFO] cheese - inserting 1000 documents. first: Ukraine Without Kuchma and last: Vodafone-Funkturm Stuttgart-Vaihingen -[2018-02-13T00:37:14.600] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:37:14.644] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:37:14.661] [INFO] cheese - inserting 1000 documents. first: Joseph Barrett and last: Sleepy-time -[2018-02-13T00:37:14.743] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:37:14.777] [INFO] cheese - inserting 1000 documents. first: Ugra River (Trotuș) and last: First generation immigrant -[2018-02-13T00:37:14.815] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T00:37:14.851] [INFO] cheese - inserting 1000 documents. first: 2014 in Australia and last: Glaucopis auge -[2018-02-13T00:37:14.876] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:37:14.904] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:14.967] [INFO] cheese - inserting 1000 documents. first: Grangegorman F.C. and last: Untied Arab Emirates-Untied Kingdom relations -[2018-02-13T00:37:15.000] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:37:15.154] [INFO] cheese - inserting 1000 documents. first: Carrol Delaney and last: Immigration to Honduras -[2018-02-13T00:37:15.202] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:37:15.209] [INFO] cheese - inserting 1000 documents. first: Borotra and last: Ahdim Olsun -[2018-02-13T00:37:15.213] [INFO] cheese - inserting 1000 documents. first: Red Star, The and last: Joint address (Canada) -[2018-02-13T00:37:15.261] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:37:15.297] [INFO] cheese - inserting 1000 documents. first: Minecraft pe and last: Wikipedia:Articles for deletion/Carey Martin -[2018-02-13T00:37:15.297] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:37:15.362] [INFO] cheese - inserting 1000 documents. first: Rafferty Rides a Winner and last: 2016 in combat sports -[2018-02-13T00:37:15.363] [INFO] cheese - inserting 1000 documents. first: City of Bath Boys' School and last: File:Rshut-big-box2.gif -[2018-02-13T00:37:15.362] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:37:15.392] [INFO] cheese - inserting 1000 documents. first: Category:Cricket laws and regulations and last: Douglas Southall Freeman -[2018-02-13T00:37:15.441] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:37:15.470] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:15.476] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:37:15.597] [INFO] cheese - inserting 1000 documents. first: Rutland 5 4 Vermont Representative District and last: Here (Nicolay album) -[2018-02-13T00:37:15.705] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:37:15.834] [INFO] cheese - inserting 1000 documents. first: Katherine Ruth and last: PS-90 -[2018-02-13T00:37:15.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bailey Pickett and last: The Vikings (British band) -[2018-02-13T00:37:15.878] [INFO] cheese - inserting 1000 documents. first: Batwa people and last: Shishitogarashi -[2018-02-13T00:37:15.884] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:37:15.937] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:37:15.973] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:37:16.005] [INFO] cheese - inserting 1000 documents. first: Strongly real element and last: Template:Donegal constituencies -[2018-02-13T00:37:16.074] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:37:16.131] [INFO] cheese - inserting 1000 documents. first: Nkem Illabor and last: Powelliphanta Sp.Lodestone -[2018-02-13T00:37:16.194] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class American Samoa articles and last: Wikipedia:Articles for deletion/Niger–Pakistan relations -[2018-02-13T00:37:16.219] [INFO] cheese - inserting 1000 documents. first: Kamelion and last: Wikipedia:Picture of the day/December 31, 2004 -[2018-02-13T00:37:16.239] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:37:16.304] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:37:16.307] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:37:16.541] [INFO] cheese - inserting 1000 documents. first: Visa policy of Transnistria and last: Category:Villages in York County, Maine -[2018-02-13T00:37:16.565] [INFO] cheese - inserting 1000 documents. first: Shishi togarashi and last: Sathyan Anthikkad -[2018-02-13T00:37:16.580] [INFO] cheese - inserting 1000 documents. first: King coal highway and last: KoQ -[2018-02-13T00:37:16.620] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:37:16.646] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:37:16.671] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:37:16.684] [INFO] cheese - inserting 1000 documents. first: Template:Dublin constituencies and last: Category:Corruption in Goa -[2018-02-13T00:37:16.797] [INFO] cheese - inserting 1000 documents. first: Category:Olympic judoka of Bulgaria and last: Laurentius of Echternach -[2018-02-13T00:37:16.805] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:16.909] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:16.948] [INFO] cheese - inserting 1000 documents. first: Purple Cherry and last: John FitzPatrick -[2018-02-13T00:37:16.968] [INFO] cheese - inserting 1000 documents. first: Mohali and last: Wikipedia:Featured article candidates/Buckinghamshire/archive1 -[2018-02-13T00:37:17.051] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:37:17.060] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:37:17.214] [INFO] cheese - inserting 1000 documents. first: 2002 All-Ireland Minor Hurling Championship and last: Stanley Rose -[2018-02-13T00:37:17.263] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:37:17.266] [INFO] cheese - inserting 1000 documents. first: Legacy (Eminem song) and last: Sergio Salazar -[2018-02-13T00:37:17.296] [INFO] cheese - inserting 1000 documents. first: Eugene Kalt and last: Wikipedia:WikiProject User Page Design Committee/Design Requests -[2018-02-13T00:37:17.333] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:37:17.338] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mimi Soltysik presidential campaign, 2016 and last: Kŭmt'ap-sa temple -[2018-02-13T00:37:17.398] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:17.419] [INFO] cheese - inserting 1000 documents. first: Haina (bei Gotha) and last: Buddy (musical) -[2018-02-13T00:37:17.422] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:37:17.496] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:37:17.557] [INFO] cheese - inserting 1000 documents. first: Moses Gun and last: John Deasy (1856-1896) -[2018-02-13T00:37:17.627] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:37:17.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Single malt Scotch and last: Wikipedia:Featured article candidates/Zuiderzee Works -[2018-02-13T00:37:17.698] [INFO] cheese - inserting 1000 documents. first: DE18 and last: Mike Sullivan (ice hockey b. 1968) -[2018-02-13T00:37:17.729] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:37:17.730] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:37:17.795] [INFO] cheese - inserting 1000 documents. first: History of Anchorage and last: Trident Centre -[2018-02-13T00:37:17.820] [INFO] cheese - inserting 1000 documents. first: Kŭmt'apsa temple and last: Dyskritodon -[2018-02-13T00:37:17.838] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:37:17.864] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:37:17.912] [INFO] cheese - inserting 1000 documents. first: Jedna si Jedina and last: Category:1910 plays -[2018-02-13T00:37:17.952] [INFO] cheese - inserting 1000 documents. first: 6-Methylenedihydrodesoxymorphine and last: Hannam Station -[2018-02-13T00:37:17.960] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:37:18.005] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:37:18.034] [INFO] cheese - inserting 1000 documents. first: Chatot (Pokemon) and last: Wikipedia:WikiProject Spam/LinkReports/fozoolemahaleh.com -[2018-02-13T00:37:18.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Village pump (miscellaneous)/Archive Homepage and last: County in China -[2018-02-13T00:37:18.074] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:37:18.114] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:37:18.161] [INFO] cheese - inserting 1000 documents. first: Enthentha Dooram (Distant Dreams) - a Telugu movie and last: Dolomittøyane -[2018-02-13T00:37:18.206] [INFO] cheese - inserting 1000 documents. first: Category:Melkite Christian communities in Syria and last: Indian vice-presidential election, 1952 -[2018-02-13T00:37:18.210] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:37:18.243] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:37:18.289] [INFO] cheese - inserting 1000 documents. first: Agdistis omani and last: Template:Infobox hurling championship -[2018-02-13T00:37:18.338] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:37:18.427] [INFO] cheese - inserting 1000 documents. first: Das Tropas River and last: Template:Aviation incidents and accidents in 1988 -[2018-02-13T00:37:18.440] [INFO] cheese - inserting 1000 documents. first: A Toadally Magical Adventure and last: Category:I-Kiribati politicians -[2018-02-13T00:37:18.495] [INFO] cheese - inserting 1000 documents. first: Architectural Lighting Control System (theater) and last: Luke's Shattered Sleep -[2018-02-13T00:37:18.536] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:37:18.575] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:37:18.605] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:37:18.688] [INFO] cheese - inserting 1000 documents. first: BILU and last: Vacuum arc -[2018-02-13T00:37:18.751] [INFO] cheese - inserting 1000 documents. first: Uschold, Mike and last: Template:Did you know nominations/GISHWHES -[2018-02-13T00:37:18.789] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:37:18.819] [INFO] cheese - inserting 1000 documents. first: Gaudé and last: Category:Schools in Allamakee County, Iowa -[2018-02-13T00:37:18.913] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:37:18.920] [INFO] cheese - inserting 1000 documents. first: Kim Dong-Jin (footballer born 1992) and last: Central College tram stop -[2018-02-13T00:37:18.941] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:37:19.022] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:37:19.141] [INFO] cheese - inserting 1000 documents. first: Template:Aviation incidents and accidents in 1987 and last: Rum-theg Dgon-pa -[2018-02-13T00:37:19.164] [INFO] cheese - inserting 1000 documents. first: 1997 World Championships in Athletics – Women's javelin throw and last: Category:Surinamese football referees -[2018-02-13T00:37:19.179] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:37:19.236] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:37:19.311] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Appanoose County, Iowa and last: Category:Gymnastics at the 1992 Summer Olympics -[2018-02-13T00:37:19.320] [INFO] cheese - inserting 1000 documents. first: File:Platit. logo.png and last: Pacita del Rio -[2018-02-13T00:37:19.346] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:37:19.354] [INFO] cheese - inserting 1000 documents. first: Existential psychotherapies and last: Straight Ahead (Ignite album) -[2018-02-13T00:37:19.383] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:37:19.391] [INFO] cheese - inserting 1000 documents. first: Bodyskin and last: Andrzej Wawrzyniak -[2018-02-13T00:37:19.409] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:19.465] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:37:19.473] [INFO] cheese - inserting 1000 documents. first: High Road tram stop and last: Template:Neuropeptide signaling -[2018-02-13T00:37:19.546] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:37:19.589] [INFO] cheese - inserting 1000 documents. first: European Association for Computer-Assisted Language Learning and last: Burg Clam -[2018-02-13T00:37:19.602] [INFO] cheese - inserting 1000 documents. first: Cercle Dijon Football and last: They Said That Hell’s Not Hot -[2018-02-13T00:37:19.644] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:37:19.654] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:37:19.750] [INFO] cheese - inserting 1000 documents. first: Category:Gymnastics at the 1996 Summer Olympics and last: Platyptilia romieuxi -[2018-02-13T00:37:19.788] [INFO] cheese - inserting 1000 documents. first: DANIPS and last: Hangravan -[2018-02-13T00:37:19.797] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:37:19.830] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:37:19.880] [INFO] cheese - inserting 1000 documents. first: Solntsev and last: John Bernard Sale -[2018-02-13T00:37:19.919] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:19.979] [INFO] cheese - inserting 1000 documents. first: Dudley Metropolitan Borough Council election, 1998 and last: Category:1770s paintings -[2018-02-13T00:37:19.996] [INFO] cheese - inserting 1000 documents. first: Sargis Karapetyan (footballer, born 1990) and last: Salée River (Dominica) -[2018-02-13T00:37:19.998] [INFO] cheese - inserting 1000 documents. first: Category:CoDominium series and last: Aaa server -[2018-02-13T00:37:20.042] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:37:20.043] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:37:20.082] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:37:20.166] [INFO] cheese - inserting 1000 documents. first: Defence of India act, 1915 and last: File:Noah Bennett.jpg -[2018-02-13T00:37:20.208] [INFO] cheese - inserting 1000 documents. first: Corsyra and last: Wikipedia:WikiProject Spam/Local/ninelegends.com -[2018-02-13T00:37:20.245] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:20.263] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:37:20.344] [INFO] cheese - inserting 1000 documents. first: Khanik, Beradust and last: ᧉ -[2018-02-13T00:37:20.393] [INFO] cheese - inserting 1000 documents. first: Ashish Kothari and last: Mantidactylus malagasius -[2018-02-13T00:37:20.414] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:37:20.460] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:20.685] [INFO] cheese - inserting 1000 documents. first: Schroeter and last: No Limits (Reset album) -[2018-02-13T00:37:20.769] [INFO] cheese - inserting 1000 documents. first: Texas ebony and last: Pitanga River (Sergipe) -[2018-02-13T00:37:20.792] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:37:20.903] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:37:21.010] [INFO] cheese - inserting 1000 documents. first: Thet and last: Deaths in 1947 -[2018-02-13T00:37:21.050] [INFO] cheese - inserting 1000 documents. first: Woolery Stone Company and last: Template:European Schools -[2018-02-13T00:37:21.072] [INFO] cheese - inserting 1000 documents. first: Skunk oil and last: The Comet Strikes -[2018-02-13T00:37:21.090] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:37:21.120] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:37:21.161] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:37:21.152] [INFO] cheese - inserting 1000 documents. first: Mannix (season 7) and last: In Darkness Waiting (short story) -[2018-02-13T00:37:21.261] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:37:21.374] [INFO] cheese - inserting 1000 documents. first: Starface and last: Wikipedia:WikiProject Preclinical Medicine/Guidelines -[2018-02-13T00:37:21.419] [INFO] cheese - inserting 1000 documents. first: Pomonga River and last: (53550) 2000 BF19 -[2018-02-13T00:37:21.448] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:21.458] [INFO] cheese - inserting 1000 documents. first: Annai Airport and last: Wikipedia:Articles for deletion/Ex Girlfriend (band) -[2018-02-13T00:37:21.517] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:37:21.530] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:37:21.684] [INFO] cheese - inserting 1000 documents. first: Joan Berkowitz and last: Marasmarcha griseodactylus -[2018-02-13T00:37:21.733] [INFO] cheese - inserting 1000 documents. first: Template:Drugbox and last: Aranguren (Argentina) -[2018-02-13T00:37:22.080] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T00:37:22.155] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:37:22.225] [INFO] cheese - inserting 1000 documents. first: Dumfries-shire (UK Parliament constituency) and last: Pdc darts -[2018-02-13T00:37:22.256] [INFO] cheese - inserting 1000 documents. first: Ufficialexbox.it and last: File:Insomnia Lover poster.jpeg -[2018-02-13T00:37:22.324] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:37:22.405] [INFO] cheese - inserting 1000 documents. first: WWOR-TV and last: 1991 Canada Cup -[2018-02-13T00:37:22.433] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T00:37:22.471] [INFO] cheese - inserting 1000 documents. first: Facies Hippocratica and last: Mandai Road -[2018-02-13T00:37:22.560] [INFO] cheese - inserting 1000 documents. first: Out of Control (St. Martin's True Crime Library) and last: Wikipedia:Articles for deletion/Greek Life at the University of Central Florida -[2018-02-13T00:37:22.604] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T00:37:22.607] [INFO] cheese - batch complete in: 2.525 secs -[2018-02-13T00:37:22.619] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:37:22.769] [INFO] cheese - inserting 1000 documents. first: Hellinsia griseodactylus and last: Chibok language -[2018-02-13T00:37:22.825] [INFO] cheese - inserting 1000 documents. first: File:Clifford Roach.jpg and last: Wikipedia:Articles for deletion/Renault Energy F1-2014 -[2018-02-13T00:37:22.846] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:37:22.905] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:37:23.065] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dawdle and last: Wikipedia:WikiProject Saskatchewan/Assessment -[2018-02-13T00:37:23.087] [INFO] cheese - inserting 1000 documents. first: Xu Jilin and last: Category:1791 establishments in Pennsylvania -[2018-02-13T00:37:23.115] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:37:23.138] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:37:23.157] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Keighley and district service 760 and last: Fringe benefits tax -[2018-02-13T00:37:23.226] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:37:23.241] [INFO] cheese - inserting 1000 documents. first: Radyo 5 and last: Platyptilia seeboldi -[2018-02-13T00:37:23.278] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:37:23.319] [INFO] cheese - inserting 1000 documents. first: The Tiny Kite of Eddie Wing and last: Blavatnik Awards for Young Scientists -[2018-02-13T00:37:23.363] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:37:23.426] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Gyeongju/archive1 and last: Category:Soccer venues in Arizona -[2018-02-13T00:37:23.485] [INFO] cheese - inserting 1000 documents. first: Heart of Gold (1941 film) and last: Central Police Station, Hong Kong -[2018-02-13T00:37:23.509] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:37:23.586] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:37:23.718] [INFO] cheese - inserting 1000 documents. first: 2006 Texas Tech Red Raiders football team and last: File:Mcoilback.JPG -[2018-02-13T00:37:23.751] [INFO] cheese - inserting 1000 documents. first: File:Pescasseroli-Stemma.gif and last: Kotyapi -[2018-02-13T00:37:23.782] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:37:23.802] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:37:23.834] [INFO] cheese - inserting 1000 documents. first: Out for Blood (disambiguation) and last: Restricted Sector for Stateless Refugees -[2018-02-13T00:37:23.838] [INFO] cheese - inserting 1000 documents. first: New Lenox Township and last: Total Risk-Based Capital -[2018-02-13T00:37:23.887] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:37:23.900] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T00:37:23.944] [INFO] cheese - inserting 1000 documents. first: Emilie Petersen and last: Nassour Studios -[2018-02-13T00:37:23.973] [INFO] cheese - inserting 1000 documents. first: Corocoro.tv and last: Amnat Charoen municipal Stadium -[2018-02-13T00:37:23.985] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:24.011] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:37:24.164] [INFO] cheese - inserting 1000 documents. first: Johan Fabricius and last: Category:Stub-Class Japan-related articles -[2018-02-13T00:37:24.174] [INFO] cheese - inserting 1000 documents. first: Pavlo Pashaiv and last: Hueque River -[2018-02-13T00:37:24.210] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:37:24.214] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BITEDEV and last: Kenjirō Tokutomi -[2018-02-13T00:37:24.227] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:37:24.308] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Cass County, Iowa and last: Template:Top ten European male singles tennis players -[2018-02-13T00:37:24.308] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:24.395] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:37:24.457] [INFO] cheese - inserting 1000 documents. first: Muzi Goti and last: Portal:Geography of Kenya/Selected panorama/8 -[2018-02-13T00:37:24.521] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:37:24.673] [INFO] cheese - inserting 1000 documents. first: Neve Sha'anan, Tel Aviv and last: Henry sabin -[2018-02-13T00:37:24.674] [INFO] cheese - inserting 1000 documents. first: Marsco Glass Products and last: Renegado River -[2018-02-13T00:37:24.689] [INFO] cheese - inserting 1000 documents. first: Category:Promotional photos and last: Treasury shares -[2018-02-13T00:37:24.699] [INFO] cheese - inserting 1000 documents. first: Goal Average and last: Archie McLean (footballer) -[2018-02-13T00:37:24.721] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:37:24.752] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:24.761] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:37:24.784] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:37:24.870] [INFO] cheese - inserting 1000 documents. first: Dancing in the Dark (film) and last: Randy Travis singles discography -[2018-02-13T00:37:24.918] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:37:25.095] [INFO] cheese - inserting 1000 documents. first: Mestská hala Prešov and last: DAR-1 -[2018-02-13T00:37:25.152] [INFO] cheese - inserting 1000 documents. first: Events in 1999 and last: Category:1613 in Malta -[2018-02-13T00:37:25.154] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:37:25.224] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T00:37:25.278] [INFO] cheese - inserting 1000 documents. first: Spinal root and last: Novacaesareala (bird) -[2018-02-13T00:37:25.306] [INFO] cheese - inserting 1000 documents. first: Black Ruby Barb and last: Chinese Lions -[2018-02-13T00:37:25.319] [INFO] cheese - inserting 1000 documents. first: Chinese Riff and last: Political Corruption -[2018-02-13T00:37:25.333] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:37:25.360] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:37:25.362] [INFO] cheese - inserting 1000 documents. first: Micropteryx proavitella and last: Template:User from South Sudan -[2018-02-13T00:37:25.373] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:37:25.427] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:37:25.508] [INFO] cheese - inserting 1000 documents. first: 6th Infantry Regiment (United States) and last: Porta-bote -[2018-02-13T00:37:25.548] [INFO] cheese - inserting 1000 documents. first: DAR-1A and last: Eilema amaura -[2018-02-13T00:37:25.577] [INFO] cheese - inserting 1000 documents. first: Wyshynski and last: Fine-leaf wadara -[2018-02-13T00:37:25.579] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:37:25.603] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:37:25.619] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:37:25.751] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/abercrombiefitchdiscountonline.com and last: 2011 Norfolk State Spartans football team -[2018-02-13T00:37:25.766] [INFO] cheese - inserting 1000 documents. first: The Great Airship and last: Cane (novel) -[2018-02-13T00:37:25.773] [INFO] cheese - inserting 1000 documents. first: Category:Films about nuclear war and weapons and last: Wikipedia:Sockpuppet investigations/Lslavin13 -[2018-02-13T00:37:25.780] [INFO] cheese - inserting 1000 documents. first: Benji Gregory and last: SSBN 735 -[2018-02-13T00:37:25.799] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:37:25.828] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:37:25.828] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:37:25.842] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:37:25.924] [INFO] cheese - inserting 1000 documents. first: File:Lovely difficult cover.jpg and last: Robert van Winkle -[2018-02-13T00:37:25.954] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:37:26.005] [INFO] cheese - inserting 1000 documents. first: 2016–17 Georgia State Panthers women's basketball team and last: Jim Moodie (motorcycle racer) -[2018-02-13T00:37:26.042] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:37:26.082] [INFO] cheese - inserting 1000 documents. first: Lucas Neill and last: Zippe-type -[2018-02-13T00:37:26.129] [INFO] cheese - inserting 1000 documents. first: RS-84 and last: Пётр II Алексеевич -[2018-02-13T00:37:26.135] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:37:26.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/villabordoni.com and last: Category:Southern Ocean articles missing geocoordinate data -[2018-02-13T00:37:26.170] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:26.197] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:37:26.209] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2009 July 22 and last: Aleksandr Agapov -[2018-02-13T00:37:26.274] [INFO] cheese - inserting 1000 documents. first: Aphaniptera and last: Alan Mackay -[2018-02-13T00:37:26.309] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:37:26.414] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:37:26.448] [INFO] cheese - inserting 1000 documents. first: List of RAAF air marshals and last: Women of San Marino -[2018-02-13T00:37:26.556] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:26.607] [INFO] cheese - inserting 1000 documents. first: Noriaki Fujimoto and last: File:Rail sideline LamandaPark California.jpg -[2018-02-13T00:37:26.739] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:37:26.758] [INFO] cheese - inserting 1000 documents. first: Michelangelo Nerosi da Caravaggio and last: History of Southern Sudan -[2018-02-13T00:37:26.815] [INFO] cheese - inserting 1000 documents. first: Infantile eczema and last: Ceuta (Congress of Deputies constituency) -[2018-02-13T00:37:26.832] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:37:26.880] [INFO] cheese - inserting 1000 documents. first: Alexandr Agapov and last: File:Roseriddle.jpg -[2018-02-13T00:37:26.893] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:37:26.897] [INFO] cheese - inserting 1000 documents. first: Vistehola and last: Telangana Boggu Ghani Karimka Sangham -[2018-02-13T00:37:26.931] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:27.020] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:37:27.093] [INFO] cheese - inserting 1000 documents. first: Grizzly polar bear hybrid and last: File:Return JLU.jpg -[2018-02-13T00:37:27.102] [INFO] cheese - inserting 1000 documents. first: Women from San Marino and last: 花田十輝 -[2018-02-13T00:37:27.140] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:37:27.158] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:27.225] [INFO] cheese - inserting 1000 documents. first: Fred Royers and last: 2011 Chatham Cup -[2018-02-13T00:37:27.239] [INFO] cheese - inserting 1000 documents. first: Rub (food) and last: Shiraume Gakuen College -[2018-02-13T00:37:27.247] [INFO] cheese - inserting 1000 documents. first: Category:Masques and last: Sky Gardens -[2018-02-13T00:37:27.257] [INFO] cheese - inserting 1000 documents. first: Blood on the dancefloor and last: USS Petaluma (AOG-69) -[2018-02-13T00:37:27.280] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:27.282] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:37:27.296] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:37:27.343] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:37:27.517] [INFO] cheese - inserting 1000 documents. first: Cunetio and last: David (John) Graham -[2018-02-13T00:37:27.553] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:37:27.584] [INFO] cheese - inserting 1000 documents. first: Cutdown and last: Pascual Jordan -[2018-02-13T00:37:27.629] [INFO] cheese - inserting 1000 documents. first: Relations between South Sudan and Uganda and last: Jerome Goldstein -[2018-02-13T00:37:27.643] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:27.677] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:37:27.691] [INFO] cheese - inserting 1000 documents. first: Maciej Wierzbięta and last: Wikipedia:Sockpuppet investigations/OCtruth/Archive -[2018-02-13T00:37:27.692] [INFO] cheese - inserting 1000 documents. first: Katsiaryna Shkuratava and last: Falcon 9 flight 9 -[2018-02-13T00:37:27.708] [INFO] cheese - inserting 1000 documents. first: Sobralia fragrans and last: Template:Rincon class gasoline tankers -[2018-02-13T00:37:27.734] [INFO] cheese - inserting 1000 documents. first: Renaat Demoen and last: Millihenries -[2018-02-13T00:37:27.739] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:37:27.767] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:37:27.772] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:37:27.808] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:37:28.009] [INFO] cheese - inserting 1000 documents. first: Ritz Malheur and last: Countess of Suffolk -[2018-02-13T00:37:28.149] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:37:28.190] [INFO] cheese - inserting 1000 documents. first: Template:March 1944 shipwrecks and last: File:Reza Shirmarz.jpg -[2018-02-13T00:37:28.286] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:37:28.288] [INFO] cheese - inserting 1000 documents. first: Dejerine-Sottas disease and last: File:Protea Telephone Jack.jpg -[2018-02-13T00:37:28.373] [INFO] cheese - inserting 1000 documents. first: Duino Mithraeum and last: Montejo de la Sierra -[2018-02-13T00:37:28.375] [INFO] cheese - inserting 1000 documents. first: File:JPsyNeuro logo.jpg and last: Samuel Manaiakalani Kamakau -[2018-02-13T00:37:28.394] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:37:28.454] [INFO] cheese - inserting 1000 documents. first: Keith Jackson (football player) and last: Collective (Law & Order: Criminal Intent) -[2018-02-13T00:37:28.488] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:37:28.579] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:37:28.643] [INFO] cheese - inserting 1000 documents. first: Mobile lounge and last: Born Dead Icons -[2018-02-13T00:37:28.658] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:37:28.765] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T00:37:28.838] [INFO] cheese - inserting 1000 documents. first: Marja-Liisa Hämäläinen and last: Yeroukhan -[2018-02-13T00:37:28.927] [INFO] cheese - inserting 1000 documents. first: Allen, Marvin and last: Category:Members of the House of Representatives of the Philippines from Las Piñas -[2018-02-13T00:37:28.939] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:37:29.015] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:37:29.083] [INFO] cheese - inserting 1000 documents. first: Lady Jaye Breyer P-Orridge and last: Gogoiu -[2018-02-13T00:37:29.155] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:37:29.214] [INFO] cheese - inserting 1000 documents. first: Moraleja de Enmedio and last: Grand hall -[2018-02-13T00:37:29.333] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:37:29.371] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Ashtabula County, Ohio and last: Charles Sharpes -[2018-02-13T00:37:29.382] [INFO] cheese - inserting 1000 documents. first: Nature via Nurture: Genes, Experience, & What Makes Us Human and last: Tigran Mkrtchyan -[2018-02-13T00:37:29.463] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:37:29.494] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:37:29.529] [INFO] cheese - inserting 1000 documents. first: Justin Jesse Price and last: Anagarika -[2018-02-13T00:37:29.609] [INFO] cheese - inserting 1000 documents. first: Oblivion (comics) and last: Fala Chen -[2018-02-13T00:37:29.641] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T00:37:29.692] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:29.733] [INFO] cheese - inserting 1000 documents. first: Uniforms of the American Civil War and last: Template:Rajput Groups of India -[2018-02-13T00:37:29.745] [INFO] cheese - inserting 1000 documents. first: Ninsun and last: 2nd Byelorussian Front -[2018-02-13T00:37:29.780] [INFO] cheese - inserting 1000 documents. first: Vitilago and last: ABC Bakersfield -[2018-02-13T00:37:29.781] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:37:29.856] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:37:29.865] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:37:29.904] [INFO] cheese - inserting 1000 documents. first: Alive (Dami Im song) and last: File:Denver IA, October 2013.jpg -[2018-02-13T00:37:29.943] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:37:30.025] [INFO] cheese - inserting 1000 documents. first: Category:Foreign charities operating in South Africa and last: Robotic prostheis control -[2018-02-13T00:37:30.047] [INFO] cheese - inserting 1000 documents. first: Category:Organizations established in 1996 and last: Taj Anwar -[2018-02-13T00:37:30.085] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:30.099] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:37:30.175] [INFO] cheese - inserting 1000 documents. first: Masaki Anzu and last: Fourth Ward, Houston -[2018-02-13T00:37:30.190] [INFO] cheese - inserting 1000 documents. first: Category:Challenge de France finals and last: Wikipedia:Sockpuppet investigations/Kasab -[2018-02-13T00:37:30.221] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:37:30.235] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:37:30.281] [INFO] cheese - inserting 1000 documents. first: Donal Gleeson and last: Joseph F. Finnegan -[2018-02-13T00:37:30.326] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:37:30.507] [INFO] cheese - inserting 1000 documents. first: Satiety value and last: Mir Molk -[2018-02-13T00:37:30.533] [INFO] cheese - inserting 1000 documents. first: Fish stocking and last: Revolutionary integrationism -[2018-02-13T00:37:30.538] [INFO] cheese - inserting 1000 documents. first: File:The complete ripping yarns book cover.jpg and last: The Smallest Show on Earth -[2018-02-13T00:37:30.556] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:37:30.557] [INFO] cheese - inserting 1000 documents. first: Oskari Setänen and last: Category:Architects from Tucson, Arizona -[2018-02-13T00:37:30.592] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:37:30.639] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:37:30.644] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:37:30.672] [INFO] cheese - inserting 1000 documents. first: Glasflügel Kestrel 17 and last: Living former members of the Council of Ministers of the Netherlands -[2018-02-13T00:37:30.698] [INFO] cheese - inserting 1000 documents. first: Template:Seismic scales and last: Ovidio Manuel Barbosa Pequeno -[2018-02-13T00:37:30.719] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:37:30.771] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:37:30.867] [INFO] cheese - inserting 1000 documents. first: Poor Little Critter on the Road and last: Category:Burials at the Rila Monastery -[2018-02-13T00:37:30.927] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:37:30.929] [INFO] cheese - inserting 1000 documents. first: Marat-e Balkarun and last: Radio Mystery Theater -[2018-02-13T00:37:30.979] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:37:31.028] [INFO] cheese - inserting 1000 documents. first: Oleksandr Melaschenko and last: Viola x wittrockiana -[2018-02-13T00:37:31.096] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:37:31.150] [INFO] cheese - inserting 1000 documents. first: Category:Former nationalised industries of the United Kingdom and last: Ann Saunderson -[2018-02-13T00:37:31.155] [INFO] cheese - inserting 1000 documents. first: Draft:Girls for Gender Equity and last: Art Basel Hong Kong -[2018-02-13T00:37:31.210] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:37:31.227] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:37:31.271] [INFO] cheese - inserting 1000 documents. first: European Urban and Regional Planning Awards and last: 2013 Tiananmen Square attack -[2018-02-13T00:37:31.295] [INFO] cheese - inserting 1000 documents. first: Dominick Goodman and last: 1981 St.George Whisky season -[2018-02-13T00:37:31.310] [INFO] cheese - inserting 1000 documents. first: Magnitogorsk Metallurg and last: 402nd Support Brigade -[2018-02-13T00:37:31.322] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:31.373] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:37:31.390] [INFO] cheese - inserting 1000 documents. first: Chung Mong-koo and last: Eppa Hunton -[2018-02-13T00:37:31.418] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:37:31.493] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:37:31.506] [INFO] cheese - inserting 1000 documents. first: WACM and last: David ben judah messer leon -[2018-02-13T00:37:31.602] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:37:31.728] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject English Language templates and last: File:Pittsburg State Gorilla logo.svg -[2018-02-13T00:37:31.776] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:37:31.814] [INFO] cheese - inserting 1000 documents. first: Deputy Federal Commissioner of Taxation (NSW) v W R Moran Pty Ltd and last: Wikipedia:Articles for deletion/Crkd -[2018-02-13T00:37:31.897] [INFO] cheese - inserting 1000 documents. first: Thectocercus acuticaudatus and last: Valiabad, Tonekabon -[2018-02-13T00:37:31.916] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:37:31.919] [INFO] cheese - inserting 1000 documents. first: Template:User from Pakistan/doc and last: Stone Hill (disambiguation) -[2018-02-13T00:37:31.944] [INFO] cheese - inserting 1000 documents. first: David ben solomon ibn abi zimra and last: James (Jim) Scott -[2018-02-13T00:37:31.972] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:37:31.985] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:37:32.019] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:37:32.125] [INFO] cheese - inserting 1000 documents. first: Gray mistletoe and last: File:Stevie B B-Sides And Outtakes.jpg -[2018-02-13T00:37:32.181] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:37:32.256] [INFO] cheese - inserting 1000 documents. first: Dells of the wisconsin river and last: Derek van der kooy -[2018-02-13T00:37:32.281] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Lake of the Woods County, Minnesota and last: Category:1957 in English rugby league -[2018-02-13T00:37:32.297] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:37:32.304] [INFO] cheese - inserting 1000 documents. first: E. Hunton and last: Hoss Radbourn -[2018-02-13T00:37:32.345] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:37:32.403] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:37:32.494] [INFO] cheese - inserting 1000 documents. first: Murder of Lynette White and last: File:Global Tower Partners Logo.jpg -[2018-02-13T00:37:32.532] [INFO] cheese - inserting 1000 documents. first: Derelicts of dialect and last: Prudes -[2018-02-13T00:37:32.552] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:37:32.554] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:37:32.557] [INFO] cheese - inserting 1000 documents. first: Charles Stewart Wurts and last: Template:Attached KML/Cropsey Avenue -[2018-02-13T00:37:32.598] [INFO] cheese - inserting 1000 documents. first: Transformers: Classics and last: Template:Fightstatscont -[2018-02-13T00:37:32.663] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:37:32.692] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:37:32.815] [INFO] cheese - inserting 1000 documents. first: Category:1958 in English rugby league and last: Wikipedia:Articles for deletion/Tamil Panar -[2018-02-13T00:37:32.823] [INFO] cheese - inserting 1000 documents. first: Annika Odegard and last: Category:1998 in Ecuador -[2018-02-13T00:37:32.873] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:37:32.890] [INFO] cheese - inserting 1000 documents. first: Diocese of sansepolcro and last: Division of moreton -[2018-02-13T00:37:32.910] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:37:32.933] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:37:33.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anne Rogers and last: SPEAK network -[2018-02-13T00:37:33.168] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 734 and last: Liveni, Botoșani -[2018-02-13T00:37:33.179] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:37:33.184] [INFO] cheese - inserting 1000 documents. first: Division of murray and last: Driekske van bussel -[2018-02-13T00:37:33.203] [INFO] cheese - inserting 1000 documents. first: Peer to peer social networks and last: Template:WAKO Amateur Championships Template -[2018-02-13T00:37:33.219] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:37:33.222] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:37:33.263] [INFO] cheese - inserting 1000 documents. first: N Joachimson v Swiss Bank Corporation and last: EFDA (disambiguation) -[2018-02-13T00:37:33.288] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:37:33.348] [INFO] cheese - inserting 1000 documents. first: Court of Probate Act 1857 and last: SS Delargentino -[2018-02-13T00:37:33.347] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:37:33.357] [INFO] cheese - inserting 1000 documents. first: Minister of State for Overseas Development (Ireland) and last: Penny tray -[2018-02-13T00:37:33.406] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:33.444] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:33.601] [INFO] cheese - inserting 1000 documents. first: Dries van agt and last: Lacunar infarct -[2018-02-13T00:37:33.629] [INFO] cheese - inserting 1000 documents. first: William Brockenbrough (jurist) and last: Bronson Speedway -[2018-02-13T00:37:33.653] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:37:33.682] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:37:33.713] [INFO] cheese - inserting 1000 documents. first: Do Right By Me and last: 2011 Mumbai serial blasts -[2018-02-13T00:37:33.736] [INFO] cheese - inserting 1000 documents. first: Alme and last: False Dmitri II -[2018-02-13T00:37:33.756] [INFO] cheese - inserting 1000 documents. first: File:Jornheavyrockradiocd (1).jpg and last: Fireworks (Snoop Dogg song) -[2018-02-13T00:37:33.784] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:33.801] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:33.825] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:37:33.889] [INFO] cheese - inserting 1000 documents. first: WHDO-CD and last: Parrysulfan -[2018-02-13T00:37:33.923] [INFO] cheese - inserting 1000 documents. first: Lost & Found: Hip Hop Underground Soul Classics and last: Motta di Livenza -[2018-02-13T00:37:33.997] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:37:34.074] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:37:34.200] [INFO] cheese - inserting 1000 documents. first: French ship La Couronne (1749) and last: Wikipedia:Suspected sock puppets/Auntorious -[2018-02-13T00:37:34.201] [INFO] cheese - inserting 1000 documents. first: List of international cricket centuries by David Boon and last: Category:Villages in Brown County, Illinois -[2018-02-13T00:37:34.272] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:37:34.293] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:34.433] [INFO] cheese - inserting 1000 documents. first: Point light source and last: Alice Minnie Herts -[2018-02-13T00:37:34.440] [INFO] cheese - inserting 1000 documents. first: 1934 German football championship and last: Category:1953 in California -[2018-02-13T00:37:34.478] [INFO] cheese - inserting 1000 documents. first: Eagle butte crater and last: Economy of austria -[2018-02-13T00:37:34.501] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:37:34.507] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:37:34.560] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:37:34.574] [INFO] cheese - inserting 1000 documents. first: Čečelice and last: Wikipedia:WikiProject Trains/ICC valuations/Gauley and Meadow River Railroad -[2018-02-13T00:37:34.602] [INFO] cheese - inserting 1000 documents. first: George Watson's Ladies College and last: Feldbach District -[2018-02-13T00:37:34.637] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:37:34.654] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:37:34.678] [INFO] cheese - inserting 1000 documents. first: False Dmitry III and last: El-hazard -[2018-02-13T00:37:34.709] [INFO] cheese - inserting 1000 documents. first: Deep Stambha and last: Jamie Cachia -[2018-02-13T00:37:34.741] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:37:34.751] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:37:34.800] [INFO] cheese - inserting 1000 documents. first: Economy of azerbaijan and last: Ritchie Gardner -[2018-02-13T00:37:34.850] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:37:34.946] [INFO] cheese - inserting 1000 documents. first: Tiyeegloow District and last: Voicemailgate -[2018-02-13T00:37:34.949] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Greeley County, Nebraska and last: Vincent Wardell -[2018-02-13T00:37:34.980] [INFO] cheese - inserting 1000 documents. first: Ein deutsches requiem and last: Electoral district of swan hill -[2018-02-13T00:37:35.004] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:35.005] [INFO] cheese - batch complete in: 0.155 secs -[2018-02-13T00:37:35.011] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:37:35.076] [INFO] cheese - inserting 1000 documents. first: Jupp (surname) and last: EP80579 -[2018-02-13T00:37:35.102] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Leonard23 and last: Christian Murray -[2018-02-13T00:37:35.109] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:37:35.160] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:37:35.169] [INFO] cheese - inserting 1000 documents. first: Electoral district of swan hills and last: Emperor xizong of tang -[2018-02-13T00:37:35.187] [INFO] cheese - inserting 1000 documents. first: Lidao and last: AC Sparta Prague in European football -[2018-02-13T00:37:35.197] [INFO] cheese - batch complete in: 0.191 secs -[2018-02-13T00:37:35.245] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:37:35.294] [INFO] cheese - inserting 1000 documents. first: Internet FAQ Consortium and last: ALCO Century 630 -[2018-02-13T00:37:35.298] [INFO] cheese - inserting 1000 documents. first: 2016 Philadelphia Freedoms season and last: Template:Unclear inline -[2018-02-13T00:37:35.333] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:37:35.341] [INFO] cheese - inserting 1000 documents. first: Emperor xuan of chen and last: Erlenbach bei dahn -[2018-02-13T00:37:35.347] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:37:35.357] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:37:35.371] [INFO] cheese - inserting 1000 documents. first: Nora to Toki no Koubou: Kiri no Mori no Majo and last: Nayagram -[2018-02-13T00:37:35.407] [INFO] cheese - inserting 1000 documents. first: Explorer 18 and last: Ranjith Madduma Bandara -[2018-02-13T00:37:35.412] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:37:35.437] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:37:35.504] [INFO] cheese - inserting 1000 documents. first: Ma'roof and last: Budokan: The Martial Spirit -[2018-02-13T00:37:35.506] [INFO] cheese - inserting 1000 documents. first: Erlenbach bei kandel and last: Evangelical church of the deaf -[2018-02-13T00:37:35.521] [INFO] cheese - batch complete in: 0.164 secs -[2018-02-13T00:37:35.533] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:35.658] [INFO] cheese - inserting 1000 documents. first: Insert trailer and last: Category:Former Masonic buildings in North Carolina -[2018-02-13T00:37:35.717] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:37:35.752] [INFO] cheese - inserting 1000 documents. first: Template:Inline unclear and last: File:ElizabethUmusic.png -[2018-02-13T00:37:35.771] [INFO] cheese - inserting 1000 documents. first: Evangelical church of the dominican republic and last: Fall of the lelang and daifang -[2018-02-13T00:37:35.793] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:37:35.797] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:37:35.905] [INFO] cheese - inserting 1000 documents. first: Independence Party of New York State and last: Andrew Scott (bishop) -[2018-02-13T00:37:35.907] [INFO] cheese - inserting 1000 documents. first: 2011 irish presidential election and last: Images Of Heaven: The Best Of Peter Godwin -[2018-02-13T00:37:35.919] [INFO] cheese - inserting 1000 documents. first: Dance monkey boy and last: Odřepsy -[2018-02-13T00:37:35.946] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:37:35.955] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:37:35.983] [INFO] cheese - inserting 1000 documents. first: Template:POVsection and last: File:The Novels of Henry James.JPG -[2018-02-13T00:37:36.001] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:37:36.003] [INFO] cheese - inserting 1000 documents. first: Fall of the mutants and last: Fencer of minerva -[2018-02-13T00:37:36.029] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:36.086] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:37:36.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Insects/ant task force/community sandboxes/sandbox3/Formica biamoensis and last: Suerococha (Huallanca) -[2018-02-13T00:37:36.165] [INFO] cheese - inserting 1000 documents. first: Plastic (2012 film) and last: Gobi fish -[2018-02-13T00:37:36.206] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:37:36.218] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:37:36.361] [INFO] cheese - inserting 1000 documents. first: Lockheed Model 44 Excalibur and last: Elm River (Michigan) -[2018-02-13T00:37:36.377] [INFO] cheese - inserting 1000 documents. first: Events in 1427 and last: Fanny Perret (Swiss rhythmic gymnast) -[2018-02-13T00:37:36.389] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:37:36.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hate group/Ex-PremiesPart2 and last: Fort Monroe, Virginia -[2018-02-13T00:37:36.421] [INFO] cheese - inserting 1000 documents. first: 2008–09 Czech 1. Liga season and last: Wikipedia:Articles for deletion/Dominique Strauss-Kahn sexual assault case (2nd nomination) -[2018-02-13T00:37:36.423] [INFO] cheese - inserting 1000 documents. first: Fenchurch street railway station and last: Category:French film awards -[2018-02-13T00:37:36.435] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:37:36.459] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:36.470] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:37:36.510] [INFO] cheese - inserting 1000 documents. first: Banksia baxteri and last: Biohunter -[2018-02-13T00:37:36.514] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:37:36.581] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:37:36.588] [INFO] cheese - inserting 1000 documents. first: Dom Luís Bridge, Porto and last: Sonja Eggerickx -[2018-02-13T00:37:36.643] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:37:36.648] [INFO] cheese - inserting 1000 documents. first: Events in 574 and last: Births in 1784 -[2018-02-13T00:37:36.671] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:37:36.779] [INFO] cheese - inserting 1000 documents. first: Fence River and last: Chittenden-6-2 Vermont Representative District 2002-2012 -[2018-02-13T00:37:36.815] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:37:36.841] [INFO] cheese - inserting 1000 documents. first: Jan (Persian name) and last: Úrvalsdeild 1937 -[2018-02-13T00:37:36.850] [INFO] cheese - inserting 1000 documents. first: Births in 1783 and last: Births in 963 -[2018-02-13T00:37:36.867] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:37:36.893] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:37:36.950] [INFO] cheese - inserting 1000 documents. first: ILL 73 and last: Wikipedia:Reference desk/Archives/Science/2007 November 20 -[2018-02-13T00:37:37.011] [INFO] cheese - inserting 1000 documents. first: Son Montuno and last: McBryde Garden -[2018-02-13T00:37:37.016] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:37:37.059] [INFO] cheese - inserting 1000 documents. first: Gulsara Dadabayeva and last: Wikipedia:Articles for deletion/Jace Daniels -[2018-02-13T00:37:37.067] [INFO] cheese - inserting 1000 documents. first: Class 2 railroad and last: Excelsia College -[2018-02-13T00:37:37.107] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:37.121] [INFO] cheese - inserting 1000 documents. first: Births in 962 and last: Public Debt Management Agency (Greece) -[2018-02-13T00:37:37.139] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:37.175] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:37:37.187] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:37:37.275] [INFO] cheese - inserting 1000 documents. first: Počepice and last: Malaysia FAM League -[2018-02-13T00:37:37.312] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:37:37.411] [INFO] cheese - inserting 1000 documents. first: Úrvalsdeild 1938 and last: 1995-96 Czech 1.Liga season -[2018-02-13T00:37:37.412] [INFO] cheese - inserting 1000 documents. first: Spermwhale and last: Filippo strozzi the elder -[2018-02-13T00:37:37.449] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:37:37.453] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:37:37.541] [INFO] cheese - inserting 1000 documents. first: 2002 Asian Athletics Championships – Women's long jump and last: CC-141 -[2018-02-13T00:37:37.547] [INFO] cheese - inserting 1000 documents. first: Jungle geranium and last: File:Possessiing-Ruby-Lin.jpg -[2018-02-13T00:37:37.582] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:37:37.583] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:37.606] [INFO] cheese - inserting 1000 documents. first: Employee of the Month (disambiguation) and last: Institute of Molecular and Cell Biology -[2018-02-13T00:37:37.620] [INFO] cheese - inserting 1000 documents. first: Filippo strozzi the younger and last: Flag of the commonwealth of nations -[2018-02-13T00:37:37.636] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:37:37.665] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:37:37.718] [INFO] cheese - inserting 1000 documents. first: File:Paris Arc de Triomphe DSC03090.JPG and last: File:Strange production 1.gif -[2018-02-13T00:37:37.749] [INFO] cheese - inserting 1000 documents. first: Alplaus, New York and last: Obturation -[2018-02-13T00:37:37.763] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:37:37.765] [INFO] cheese - inserting 1000 documents. first: Flag of the comoros and last: Foreign aid to nepal -[2018-02-13T00:37:37.782] [INFO] cheese - batch complete in: 0.145 secs -[2018-02-13T00:37:37.805] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:37:37.848] [INFO] cheese - inserting 1000 documents. first: Missouri State Fairgrounds Speedway and last: Bud, Wisconsin -[2018-02-13T00:37:37.852] [INFO] cheese - inserting 1000 documents. first: Mark Harris (North Carolina politician) and last: Deaths in 1919 -[2018-02-13T00:37:37.894] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:37:37.908] [INFO] cheese - inserting 1000 documents. first: Foreign aid to sudan and last: Francisco de salinas -[2018-02-13T00:37:37.909] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:37:37.910] [INFO] cheese - inserting 1000 documents. first: Bridgeport-Spaulding Schools and last: Kakuyid dynasty -[2018-02-13T00:37:37.924] [INFO] cheese - batch complete in: 0.142 secs -[2018-02-13T00:37:37.959] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:37:38.019] [INFO] cheese - inserting 1000 documents. first: Portal:Sega/Did you know and last: Za našu ljubav -[2018-02-13T00:37:38.057] [INFO] cheese - inserting 1000 documents. first: Deaths in 1918 and last: Deaths in 1081 -[2018-02-13T00:37:38.069] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:37:38.074] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:37:38.077] [INFO] cheese - inserting 1000 documents. first: Francisco de san roman and last: From toshiko with love -[2018-02-13T00:37:38.097] [INFO] cheese - batch complete in: 0.172 secs -[2018-02-13T00:37:38.128] [INFO] cheese - inserting 1000 documents. first: File:Adinstruments logo.png and last: Chlaenius splendidus -[2018-02-13T00:37:38.152] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:37:38.231] [INFO] cheese - inserting 1000 documents. first: Deaths in 1080 and last: Deaths in 251 -[2018-02-13T00:37:38.234] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Farul Constanța and last: WRTV-DT -[2018-02-13T00:37:38.237] [INFO] cheese - inserting 1000 documents. first: From under the cork tree and last: Gardens in northern ireland -[2018-02-13T00:37:38.256] [INFO] cheese - batch complete in: 0.182 secs -[2018-02-13T00:37:38.273] [INFO] cheese - inserting 1000 documents. first: 9th/12th Royal Lancers and last: Rita Childers -[2018-02-13T00:37:38.275] [INFO] cheese - batch complete in: 0.178 secs -[2018-02-13T00:37:38.316] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:37:38.341] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:37:38.350] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout Broadway Junction and last: Template:NYCS Platform Layout IRT Broadway-Seventh Avenue Local Stations -[2018-02-13T00:37:38.391] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:37:38.493] [INFO] cheese - inserting 1000 documents. first: Chlaenius steveni and last: Allied Gold Mining PLC -[2018-02-13T00:37:38.614] [INFO] cheese - inserting 1000 documents. first: Gardens in scotland and last: Geography of saint petersburg -[2018-02-13T00:37:38.634] [INFO] cheese - inserting 1000 documents. first: File:Lind6.JPG and last: Category:Singaporean criminals -[2018-02-13T00:37:38.657] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:37:38.673] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:37:38.750] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:37:38.919] [INFO] cheese - inserting 1000 documents. first: Deaths in 250 and last: Ministry of Road Transport and Bridges -[2018-02-13T00:37:38.971] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:37:39.005] [INFO] cheese - inserting 1000 documents. first: Geography of saint pierre and miquelon and last: Get to know your rabbit -[2018-02-13T00:37:39.024] [INFO] cheese - inserting 1000 documents. first: José Cláudio Carvalho da Silva and last: L'Homme machine -[2018-02-13T00:37:39.039] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:37:39.054] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout IRT Broadway-Seventh Avenue Local Stations/previous and last: Technics and Human Development -[2018-02-13T00:37:39.103] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:37:39.106] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:37:39.161] [INFO] cheese - inserting 1000 documents. first: Commander (Magic: The Gathering) and last: Erich Rehm -[2018-02-13T00:37:39.171] [INFO] cheese - inserting 1000 documents. first: Zlotow County and last: Boothia Peninsula -[2018-02-13T00:37:39.199] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:39.242] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:37:39.339] [INFO] cheese - inserting 1000 documents. first: Marie, Countess of Ponthieu and last: List of cities in Pontevedra -[2018-02-13T00:37:39.375] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:37:39.391] [INFO] cheese - inserting 1000 documents. first: Seemann (Apocalyptica song) and last: Krėva Act -[2018-02-13T00:37:39.427] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of English football transfers 2009–10 and last: Category:Gariaband district -[2018-02-13T00:37:39.449] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:37:39.471] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:37:39.544] [INFO] cheese - inserting 1000 documents. first: Downtown Science (album) and last: Lenmichi languages -[2018-02-13T00:37:39.552] [INFO] cheese - inserting 1000 documents. first: File:Batman Forever The Arcade Game Cover.jpg and last: Electronic benefit transfer system -[2018-02-13T00:37:39.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Garland SF-01 and last: 1987-88 NCAA Division I men's ice hockey season -[2018-02-13T00:37:39.593] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:37:39.637] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:37:39.652] [INFO] cheese - inserting 1000 documents. first: List of cities in La Rioja and last: Charter Township of Berrien -[2018-02-13T00:37:39.651] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:37:39.676] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:37:39.762] [INFO] cheese - inserting 1000 documents. first: Shulamith Firestone and last: Borstal Boy -[2018-02-13T00:37:39.833] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:37:39.876] [INFO] cheese - inserting 1000 documents. first: Hochberg (Haardt) and last: Wildwood Crest Memorial School -[2018-02-13T00:37:39.952] [INFO] cheese - inserting 1000 documents. first: Category:Religious buildings completed in 1980 and last: Category:Columbia College (Missouri) -[2018-02-13T00:37:39.917] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:37:39.994] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:37:40.005] [INFO] cheese - inserting 1000 documents. first: 2013 Idol Star Athletics - Archery Championships and last: Mohammad Ilyas -[2018-02-13T00:37:40.017] [INFO] cheese - inserting 1000 documents. first: Valporaiso and last: Mobilian jargon -[2018-02-13T00:37:40.035] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:37:40.065] [INFO] cheese - inserting 1000 documents. first: Southern Methodist University Mustang Band and last: FFCCCB -[2018-02-13T00:37:40.078] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:37:40.126] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:37:40.206] [INFO] cheese - inserting 1000 documents. first: Region lock and last: APC (protein) -[2018-02-13T00:37:40.263] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:37:40.329] [INFO] cheese - inserting 1000 documents. first: File:Mallian campaign cavalry attack.svg and last: Wikipedia:Sockpuppet investigations/PHD-teacher/Archive -[2018-02-13T00:37:40.365] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:37:40.423] [INFO] cheese - inserting 1000 documents. first: File:Go-Ahead Singapore logo.png and last: Default display hardware codepage -[2018-02-13T00:37:40.424] [INFO] cheese - inserting 1000 documents. first: Performative writing and last: F8F -[2018-02-13T00:37:40.461] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:37:40.469] [INFO] cheese - inserting 1000 documents. first: Flor Procuna and last: Tree hakea -[2018-02-13T00:37:40.506] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:37:40.522] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:37:40.567] [INFO] cheese - inserting 1000 documents. first: Sween Castle and last: Category:Short stories by J. R. R. Tolkien -[2018-02-13T00:37:40.621] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:37:40.644] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Boyz 'n Motion and last: Fond du Lac Reporter -[2018-02-13T00:37:40.689] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:40.694] [INFO] cheese - inserting 1000 documents. first: Pomades and last: Bonheur est dans le pré, Le -[2018-02-13T00:37:40.729] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:37:40.747] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/River1range/Archive and last: Begakortes -[2018-02-13T00:37:40.798] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:37:40.880] [INFO] cheese - inserting 1000 documents. first: Default printer hardware code page and last: Flag of Kirkcudbrightshire -[2018-02-13T00:37:40.933] [INFO] cheese - inserting 1000 documents. first: Category:Unakoti district and last: Pain Zanger -[2018-02-13T00:37:40.938] [INFO] cheese - inserting 1000 documents. first: KIST Station and last: Category:People from Jönköping Municipality -[2018-02-13T00:37:40.966] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:37:40.985] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:37:40.998] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:37:41.066] [INFO] cheese - inserting 1000 documents. first: Edward Cornwallis, 5th Earl Cornwallis and last: From Little Things Big Things Grow -[2018-02-13T00:37:41.088] [INFO] cheese - inserting 1000 documents. first: Golod-Shafarevich theorem and last: Pesto rosso -[2018-02-13T00:37:41.111] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:37:41.124] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:37:41.130] [INFO] cheese - inserting 1000 documents. first: Free fatty acids and last: Mikhail Alekseev/Temp -[2018-02-13T00:37:41.142] [INFO] cheese - inserting 1000 documents. first: Begahosszupatak and last: Category:United States mayoral elections, 1959 -[2018-02-13T00:37:41.181] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:37:41.184] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:37:41.258] [INFO] cheese - inserting 1000 documents. first: Pain Zanget and last: HMS Aurora (1814) -[2018-02-13T00:37:41.276] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/andalasbhakti.com and last: File:ShesGotaWaywithWords.jpg -[2018-02-13T00:37:41.293] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:37:41.321] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:37:41.432] [INFO] cheese - inserting 1000 documents. first: Category:Motorcycle customization and last: Rukn al-Daula -[2018-02-13T00:37:41.511] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:41.665] [INFO] cheese - inserting 1000 documents. first: File:MEMap-location-of-Amity.png and last: The Hamster -[2018-02-13T00:37:41.677] [INFO] cheese - inserting 1000 documents. first: Canterbury-cathedral and last: W.T. White High School -[2018-02-13T00:37:41.713] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:37:41.716] [INFO] cheese - inserting 1000 documents. first: Icosphere and last: Like a Virgin & Other Big Hits! -[2018-02-13T00:37:41.718] [INFO] cheese - inserting 1000 documents. first: File:Positive title card.jpg and last: Brynica River -[2018-02-13T00:37:41.722] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:41.733] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Pécs and last: Wikipedia:WikiProject Spam/LinkReports/impresscms.org -[2018-02-13T00:37:41.759] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:37:41.779] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:37:41.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Clayton Marcuson and last: Rough and Rush -[2018-02-13T00:37:41.794] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:37:41.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ITunes Originals – Seether and last: Philip Watson -[2018-02-13T00:37:41.859] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:37:41.878] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:37:42.129] [INFO] cheese - inserting 1000 documents. first: File:COD XP 2016 logo.png and last: F-15G Strike Weasel -[2018-02-13T00:37:42.141] [INFO] cheese - inserting 1000 documents. first: Michael Preston (footballer) and last: Gulfiya Khanafeyeva -[2018-02-13T00:37:42.166] [INFO] cheese - inserting 1000 documents. first: Bram Goldsmith and last: Jonas Johansson (ice hockey) -[2018-02-13T00:37:42.167] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Ehime Prefecture and last: CONSOL Energy Mine Map Preservation Project -[2018-02-13T00:37:42.183] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:37:42.195] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:37:42.198] [INFO] cheese - inserting 1000 documents. first: Marine Logistics Command and last: Mohammed Ahmad Said El Edah -[2018-02-13T00:37:42.227] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:37:42.230] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:37:42.254] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:42.320] [INFO] cheese - inserting 1000 documents. first: Danish two-hundred-kroner bill and last: Central Chernozyom Region -[2018-02-13T00:37:42.366] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:37:42.600] [INFO] cheese - inserting 1000 documents. first: Jordan L. Mott and last: Oleg Imrekov -[2018-02-13T00:37:42.603] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Church of St Thomas More, Subang Jaya and last: William King (minister) -[2018-02-13T00:37:42.649] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:37:42.657] [INFO] cheese - inserting 1000 documents. first: Iris Xiomara Castro Sarmiento and last: Semi-combinatorial -[2018-02-13T00:37:42.658] [INFO] cheese - inserting 1000 documents. first: Celebrate Brooklyn! and last: Bertha (TV series) -[2018-02-13T00:37:42.664] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:37:42.677] [INFO] cheese - inserting 1000 documents. first: Wood glass and last: Double figure-eight bend -[2018-02-13T00:37:42.724] [INFO] cheese - inserting 1000 documents. first: Tahrim and last: Robert Friedrich Wilms -[2018-02-13T00:37:42.727] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:37:42.736] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:42.804] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:37:42.888] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:37:43.142] [INFO] cheese - inserting 1000 documents. first: Template:Okayama and last: Yokohama Landmark Tower -[2018-02-13T00:37:43.169] [INFO] cheese - inserting 1000 documents. first: File:Citadel public post museum.jpeg and last: MN 21 -[2018-02-13T00:37:43.186] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:37:43.204] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:37:43.247] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed computer graphics articles and last: Category:Category-Class American music articles -[2018-02-13T00:37:43.283] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:37:43.293] [INFO] cheese - inserting 1000 documents. first: File:Save Yourself.jpg and last: Vitaliy Nidbaykin -[2018-02-13T00:37:43.303] [INFO] cheese - inserting 1000 documents. first: Ele Keats and last: Photoflash bomb -[2018-02-13T00:37:43.309] [INFO] cheese - inserting 1000 documents. first: Graphics Kernel System and last: Devendranagar -[2018-02-13T00:37:43.334] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Louisiana road transport articles and last: Krzysztof Jabłoński -[2018-02-13T00:37:43.348] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:37:43.350] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:37:43.374] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:37:43.400] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:37:43.519] [INFO] cheese - inserting 1000 documents. first: Trunk Highway 22 (Minnesota) and last: Gairdner, William -[2018-02-13T00:37:43.529] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class American music articles and last: Slovenska Vas, Šentrupert -[2018-02-13T00:37:43.560] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:37:43.560] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:37:43.688] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from Glendale, California and last: Template:Talkpage of redirect/testcases -[2018-02-13T00:37:43.699] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ku-ring-gai Philharmonic Orchestra and last: File:DallascowboysRoH.jpg -[2018-02-13T00:37:43.721] [INFO] cheese - inserting 1000 documents. first: RBC Royal Bank and last: Charles Vess -[2018-02-13T00:37:43.729] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:37:43.735] [INFO] cheese - inserting 1000 documents. first: Gold backed and last: Epirranthis -[2018-02-13T00:37:43.748] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:37:43.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The All That Oath and last: Wikipedia:Articles for deletion/Homohypocrite -[2018-02-13T00:37:43.770] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:37:43.773] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:43.815] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:37:43.865] [INFO] cheese - inserting 1000 documents. first: Galbraith, William and last: IMA Auditorium -[2018-02-13T00:37:43.902] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:43.973] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Dolores County, Colorado and last: Robert Godwin (disambiguation) -[2018-02-13T00:37:44.032] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:37:44.060] [INFO] cheese - inserting 1000 documents. first: Epirrhoe and last: Wikipedia:WikiProject Spam/LinkReports/lodianmusic.com -[2018-02-13T00:37:44.086] [INFO] cheese - inserting 1000 documents. first: Martin John Ferguson and last: Volgogradskoye -[2018-02-13T00:37:44.087] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:37:44.133] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:37:44.138] [INFO] cheese - inserting 1000 documents. first: File:PomeroyJSHS01.jpeg and last: Category:Barbadian sport by year -[2018-02-13T00:37:44.156] [INFO] cheese - inserting 1000 documents. first: Salduz Kola and last: File:Gabriella Hermon.tiff -[2018-02-13T00:37:44.207] [INFO] cheese - inserting 1000 documents. first: Template:Plana Alta and last: Al Zarar -[2018-02-13T00:37:44.254] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:37:44.267] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:37:44.320] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:37:44.415] [INFO] cheese - inserting 1000 documents. first: P&W Trail and last: Emperor Decius -[2018-02-13T00:37:44.489] [INFO] cheese - inserting 1000 documents. first: Category:Nature reserves in Colorado and last: Mercsény -[2018-02-13T00:37:44.501] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:44.582] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:37:44.647] [INFO] cheese - inserting 1000 documents. first: The Eighth and last: Kim Sang Bum -[2018-02-13T00:37:44.696] [INFO] cheese - inserting 1000 documents. first: Lindi St. Clair and last: Wikipedia:Articles for deletion/List of places in Futurama -[2018-02-13T00:37:44.710] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:37:44.774] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:37:44.800] [INFO] cheese - inserting 1000 documents. first: DC Super Hero Girls: Hero of the Year and last: Draft:Charles Thompson (preacher) -[2018-02-13T00:37:44.814] [INFO] cheese - inserting 1000 documents. first: Rockefeller Wildlife Refuge and last: Blue Eyes (Yo Yo Honey Singh song) -[2018-02-13T00:37:44.897] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:37:44.931] [INFO] cheese - inserting 1000 documents. first: File:BiggerPieceofSky.jpg and last: Cowansville (QC) -[2018-02-13T00:37:44.937] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:45.003] [INFO] cheese - inserting 1000 documents. first: Mercseny and last: M.B.E -[2018-02-13T00:37:45.006] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:37:45.125] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:37:45.264] [INFO] cheese - inserting 1000 documents. first: Jeřice and last: Caledonia County Airport -[2018-02-13T00:37:45.269] [INFO] cheese - inserting 1000 documents. first: File:Natalie Imbruglia - Glorious The Singles 1997-2007.jpg and last: Alteration (album) -[2018-02-13T00:37:45.274] [INFO] cheese - inserting 1000 documents. first: Turkoman horse and last: Let It Enfold You -[2018-02-13T00:37:45.300] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:45.304] [INFO] cheese - inserting 1000 documents. first: Race-Vine station and last: 1954 Rutgers Queensmen football team -[2018-02-13T00:37:45.305] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:37:45.327] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:37:45.348] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:37:45.415] [INFO] cheese - inserting 1000 documents. first: Kazachye and last: Wikipedia:Possibly unfree files/2013 November 9 -[2018-02-13T00:37:45.452] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:37:45.481] [INFO] cheese - inserting 1000 documents. first: Farnham (QC) and last: HylaFAX -[2018-02-13T00:37:45.501] [INFO] cheese - inserting 1000 documents. first: Adelaide, South Australia, Australia and last: Episcopal Church of the Good Samaritan -[2018-02-13T00:37:45.527] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:37:45.549] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:37:45.618] [INFO] cheese - inserting 1000 documents. first: Lloyd Sabaudo Line and last: Parliamentary representation from buckinghamshire -[2018-02-13T00:37:45.658] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:37:45.697] [INFO] cheese - inserting 1000 documents. first: File:Rico Love TTLO.jpg and last: You're Breaking My Heart (Harry Nilsson song) -[2018-02-13T00:37:45.711] [INFO] cheese - inserting 1000 documents. first: Vladimír Jirásek and last: Ohrazenice (Semily District) -[2018-02-13T00:37:45.739] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:37:45.756] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:37:45.858] [INFO] cheese - inserting 1000 documents. first: Parliamentary representation from cambridgeshire and last: Paul de foix -[2018-02-13T00:37:45.860] [INFO] cheese - inserting 1000 documents. first: Gare de Bruxelles-Central and last: Category:Keen Records albums -[2018-02-13T00:37:45.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2013 November 9 and last: 1992 Wallabies Spring tour -[2018-02-13T00:37:45.879] [INFO] cheese - inserting 1000 documents. first: Woodbury Langdon and last: Category:Celastrales -[2018-02-13T00:37:45.881] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:37:45.895] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:37:45.936] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:37:45.944] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:37:45.996] [INFO] cheese - inserting 1000 documents. first: Al-Sharjah and last: Delta switching -[2018-02-13T00:37:46.075] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:37:46.086] [INFO] cheese - inserting 1000 documents. first: File:The Bolton School coat of arms.png and last: Indian Motorcycle Race 750 -[2018-02-13T00:37:46.099] [INFO] cheese - inserting 1000 documents. first: Nmyc and last: Harmony (module) -[2018-02-13T00:37:46.131] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:37:46.162] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:37:46.269] [INFO] cheese - inserting 1000 documents. first: Monetville Public School and last: Capt. Stone House (Cincinnati, Ohio) -[2018-02-13T00:37:46.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Beynon Sports Surfaces Installations and last: Edward Francis Winslow -[2018-02-13T00:37:46.341] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:37:46.358] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:37:46.463] [INFO] cheese - inserting 1000 documents. first: Lucy Zelic and last: Ormiston Academies Trust -[2018-02-13T00:37:46.538] [INFO] cheese - inserting 1000 documents. first: FBW and last: Emperor of the Yuan Dynasty -[2018-02-13T00:37:46.564] [INFO] cheese - inserting 1000 documents. first: Noel Teasdale and last: Omni (DC Comics) -[2018-02-13T00:37:46.561] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:37:46.602] [INFO] cheese - inserting 1000 documents. first: Colin L. Raston and last: Switzerland at the 2002 Winter Paralympics -[2018-02-13T00:37:46.612] [INFO] cheese - inserting 1000 documents. first: Peoria center for the performing arts and last: Wikipedia:WikiProject Spam/LinkReports/diicc.uda.cl -[2018-02-13T00:37:46.643] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:37:46.647] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:37:46.664] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:37:46.665] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:37:46.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/foothilltransit.org and last: Antonio Delamea Mlinar -[2018-02-13T00:37:46.964] [INFO] cheese - inserting 1000 documents. first: C. H. Burroughs House (Cincinnati, Ohio) and last: Phacelophora -[2018-02-13T00:37:46.999] [INFO] cheese - inserting 1000 documents. first: Darejan Gruzinsky and last: Yur Mahalleh, Sari -[2018-02-13T00:37:47.027] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:37:47.029] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:47.056] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:37:47.098] [INFO] cheese - inserting 1000 documents. first: Trypanosoma brucei rhodesiense and last: Robert James Mackintosh -[2018-02-13T00:37:47.135] [INFO] cheese - inserting 1000 documents. first: 1901 Rutgers Queensmen football team and last: Category:1956 in Indian cinema -[2018-02-13T00:37:47.136] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:37:47.190] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:37:47.263] [INFO] cheese - inserting 1000 documents. first: Yellowish and last: Atilla Altikat -[2018-02-13T00:37:47.285] [INFO] cheese - inserting 1000 documents. first: Pantelej Nis and last: Uxbridge, Tasmania -[2018-02-13T00:37:47.335] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:37:47.342] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:37:47.394] [INFO] cheese - inserting 1000 documents. first: Phaeoura and last: Aleksandr Gushchin -[2018-02-13T00:37:47.412] [INFO] cheese - inserting 1000 documents. first: Kord Kheyl, Esfivard-e Shurab and last: Noel Peverill -[2018-02-13T00:37:47.438] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:37:47.465] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:37:47.491] [INFO] cheese - inserting 1000 documents. first: Phạm Cong Tac and last: Book:Protest the Hero -[2018-02-13T00:37:47.552] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:37:47.584] [INFO] cheese - inserting 1000 documents. first: Warner Bros. Games Montréal and last: Category:Uzbekistani female trampolinists -[2018-02-13T00:37:47.594] [INFO] cheese - inserting 1000 documents. first: Telegraph Hill (disambiguation) and last: Red Stripe Bowl -[2018-02-13T00:37:47.631] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:37:47.646] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:37:47.921] [INFO] cheese - inserting 1000 documents. first: USS Glasgow and last: Sir Charles Dalrymple, 1st Baronet -[2018-02-13T00:37:47.942] [INFO] cheese - inserting 1000 documents. first: Aleksandr Guschin and last: Auguste-Louis de Rossel de Cercy -[2018-02-13T00:37:47.970] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:37:47.994] [INFO] cheese - inserting 1000 documents. first: Category:Seljuq viziers and last: Matheson & Company -[2018-02-13T00:37:48.013] [INFO] cheese - inserting 1000 documents. first: National Wrestling Hall of Fame and Museum and last: Matera (province) -[2018-02-13T00:37:48.041] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:37:48.066] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:37:48.142] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2011 Pacific Games and last: Dené-Caucasian languages -[2018-02-13T00:37:48.178] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:37:48.210] [INFO] cheese - inserting 1000 documents. first: Dallas Adamson High School and last: SMDS -[2018-02-13T00:37:48.214] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:37:48.318] [INFO] cheese - inserting 1000 documents. first: Man High and last: Bristamox -[2018-02-13T00:37:48.347] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:37:48.429] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:37:48.632] [INFO] cheese - inserting 1000 documents. first: File:Srwoggaiden.jpg and last: Waspán -[2018-02-13T00:37:48.674] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:37:48.715] [INFO] cheese - inserting 1000 documents. first: Template:Extra chronology/sandbox and last: Royal Warwickshires -[2018-02-13T00:37:48.727] [INFO] cheese - inserting 1000 documents. first: Lucero Montemayor Gracia and last: Free, prior and informed consent -[2018-02-13T00:37:48.748] [INFO] cheese - inserting 1000 documents. first: File:WMMI 830AM logo.png and last: John Sydney Hicks -[2018-02-13T00:37:48.992] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:37:49.040] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:37:49.101] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:37:49.174] [INFO] cheese - inserting 1000 documents. first: Jean Hugo (Artist, 1894–1984) and last: Pughtown, PA -[2018-02-13T00:37:49.502] [INFO] cheese - batch complete in: 1.461 secs -[2018-02-13T00:37:49.538] [INFO] cheese - inserting 1000 documents. first: Hard drug and last: Denisdor -[2018-02-13T00:37:49.567] [INFO] cheese - inserting 1000 documents. first: Potenza Province and last: English underground -[2018-02-13T00:37:49.823] [INFO] cheese - inserting 1000 documents. first: Hayduta Buttress and last: Club Olympique de Bamako -[2018-02-13T00:37:49.837] [INFO] cheese - batch complete in: 1.408 secs -[2018-02-13T00:37:49.836] [INFO] cheese - batch complete in: 1.658 secs -[2018-02-13T00:37:49.929] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:37:49.987] [INFO] cheese - inserting 1000 documents. first: Saucy Sixth and last: Mermesd -[2018-02-13T00:37:49.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lovefilm.se and last: Hope (Björk song) -[2018-02-13T00:37:50.075] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T00:37:50.112] [INFO] cheese - inserting 1000 documents. first: Metrebus Card and last: Live from London (Justin Timberlake album) -[2018-02-13T00:37:50.211] [INFO] cheese - inserting 1000 documents. first: Eagle, PA and last: Wikipedia:WikiProject Spam/LinkReports/makingpoint.com.ve -[2018-02-13T00:37:50.212] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:37:50.236] [INFO] cheese - batch complete in: 1.562 secs -[2018-02-13T00:37:50.330] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:37:50.356] [INFO] cheese - inserting 1000 documents. first: Germany at the 1994 Winter Paralympics and last: Alberto Vilarino Sobrado -[2018-02-13T00:37:50.400] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:37:50.536] [INFO] cheese - inserting 1000 documents. first: So-net and last: File:Beatles oldies side1.JPG -[2018-02-13T00:37:50.616] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:37:50.725] [INFO] cheese - inserting 1000 documents. first: Gunnar Dahlen and last: Asher Book -[2018-02-13T00:37:50.727] [INFO] cheese - inserting 1000 documents. first: Alberto Vazquez Martinez and last: Architecture of Pec -[2018-02-13T00:37:50.759] [INFO] cheese - inserting 1000 documents. first: Kismaglód and last: Natoma (disambiguation) -[2018-02-13T00:37:50.763] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:37:50.792] [INFO] cheese - inserting 1000 documents. first: Catholic Charismatic Renewal and last: Wikipedia:Articles for deletion/Valyria -[2018-02-13T00:37:50.817] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:37:50.821] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:37:50.829] [INFO] cheese - inserting 1000 documents. first: El Tranquilo Formation and last: File:Kappa theta chi letters.JPG -[2018-02-13T00:37:50.909] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:37:50.930] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:37:50.954] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Early County, Georgia and last: Café W -[2018-02-13T00:37:51.003] [INFO] cheese - inserting 1000 documents. first: Category:Foreign charities operating in the United Kingdom and last: Biskopsgarden Church -[2018-02-13T00:37:51.061] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:37:51.070] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:37:51.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/Imacomp and last: Jaundice, neonatal -[2018-02-13T00:37:51.320] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:37:51.372] [INFO] cheese - inserting 1000 documents. first: Bistrica, Leposavic and last: Cafelandia, Sao Paulo -[2018-02-13T00:37:51.388] [INFO] cheese - inserting 1000 documents. first: Anders Behring Breivik and last: Wikipedia:WikiProject Spam/LinkReports/rhythmstrummer.com -[2018-02-13T00:37:51.394] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:37:51.451] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:37:51.466] [INFO] cheese - inserting 1000 documents. first: Kia Kolayeh and last: Category:Ambassadors of Somalia to Pakistan -[2018-02-13T00:37:51.493] [INFO] cheese - inserting 1000 documents. first: Bulleye model and last: Walt Bahr -[2018-02-13T00:37:51.570] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:37:51.572] [INFO] cheese - inserting 1000 documents. first: Cafe W and last: Yellareddi -[2018-02-13T00:37:51.608] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:37:51.680] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:37:51.699] [INFO] cheese - inserting 1000 documents. first: Caffe mocha and last: File:MrNoodle.jpg -[2018-02-13T00:37:51.726] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:37:51.859] [INFO] cheese - inserting 1000 documents. first: Ed edd n eddy and last: File:Shivers-p02.jpg -[2018-02-13T00:37:51.935] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:37:51.986] [INFO] cheese - inserting 1000 documents. first: City University of Seattle in Slovakia (Vysoka skola manazmentu) and last: Det ar det pojkar gor nar karleken dor -[2018-02-13T00:37:51.990] [INFO] cheese - inserting 1000 documents. first: Korshamn and last: Template:Oncology-stub -[2018-02-13T00:37:52.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rhythmstrummer.com and last: Thomas Perry (footballer) -[2018-02-13T00:37:52.026] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:37:52.100] [INFO] cheese - inserting 1000 documents. first: Thubway Tham's Inthane Moment and last: File:University of Winchester Main Building.jpg -[2018-02-13T00:37:52.099] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:37:52.101] [INFO] cheese - inserting 1000 documents. first: Al Mouttahed Tripoli and last: Assault in the Ring -[2018-02-13T00:37:52.102] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/November 16, 2013 and last: Hoseynabad, Amlash -[2018-02-13T00:37:52.116] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:37:52.159] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:37:52.172] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:37:52.210] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:52.343] [INFO] cheese - inserting 1000 documents. first: Det ar dit vi ska and last: En busca del paraiso -[2018-02-13T00:37:52.366] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:37:52.680] [INFO] cheese - inserting 1000 documents. first: File:Toby Keith - American Ride.jpg and last: Toxotarca -[2018-02-13T00:37:52.708] [INFO] cheese - inserting 1000 documents. first: Corticobulbar tract and last: Category:Geometric group theory -[2018-02-13T00:37:52.713] [INFO] cheese - inserting 1000 documents. first: En busca del paraiso (1982 telenovela) and last: Franck Pencole -[2018-02-13T00:37:52.735] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:52.735] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:37:52.782] [INFO] cheese - inserting 1000 documents. first: Kharashtom and last: Category:2011 establishments in Macau -[2018-02-13T00:37:52.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/darkorbithackfree.tk and last: Sandorvolgy -[2018-02-13T00:37:52.814] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:37:52.857] [INFO] cheese - inserting 1000 documents. first: File:Francesca Annis as Jessica Atreides.jpg and last: C5H6N2O2 -[2018-02-13T00:37:52.865] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:37:52.889] [INFO] cheese - inserting 1000 documents. first: Muntenian and last: Sayed Ahmad Keir -[2018-02-13T00:37:52.902] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:37:52.980] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:37:52.995] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:37:53.037] [INFO] cheese - inserting 1000 documents. first: Franck Serusclat and last: Grajau (district of Sao Paulo) -[2018-02-13T00:37:53.068] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:37:53.357] [INFO] cheese - inserting 1000 documents. first: O Homem Que Deve Morrer and last: Helgi Bjornsson -[2018-02-13T00:37:53.391] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:37:53.392] [INFO] cheese - inserting 1000 documents. first: Felsopusztaegres and last: Severe outbreak -[2018-02-13T00:37:53.397] [INFO] cheese - inserting 1000 documents. first: Trichernis and last: Category:Songs written by Francis Rossi -[2018-02-13T00:37:53.430] [INFO] cheese - inserting 1000 documents. first: Askarabad, Gilan and last: Category:The Human League tribute albums -[2018-02-13T00:37:53.454] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:37:53.456] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:37:53.481] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:37:53.630] [INFO] cheese - inserting 1000 documents. first: Underground rivers of London and last: Category:Communes of Pyrénées-Atlantiques -[2018-02-13T00:37:53.633] [INFO] cheese - inserting 1000 documents. first: Digital pentuple and last: Wikipedia:Articles for deletion/Meaning of life -[2018-02-13T00:37:53.684] [INFO] cheese - inserting 1000 documents. first: Helgi Mar Magnusson and last: Navicula bicephaloides -[2018-02-13T00:37:53.706] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:37:53.717] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:37:53.722] [INFO] cheese - inserting 1000 documents. first: British motorways and last: Rose-fruited banksia -[2018-02-13T00:37:53.721] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:37:53.812] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:37:53.936] [INFO] cheese - inserting 1000 documents. first: National anthem of Cambodia and last: Temple Gurdon -[2018-02-13T00:37:53.957] [INFO] cheese - inserting 1000 documents. first: Template:WWIISovietArmouredCars and last: Pseudeminia -[2018-02-13T00:37:53.976] [INFO] cheese - inserting 1000 documents. first: Ogden Syndrome and last: Template:2014 SEC football standings -[2018-02-13T00:37:53.998] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:37:54.017] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:37:54.050] [INFO] cheese - inserting 1000 documents. first: Navicula conveyi and last: Johann Ludwig Schonleben -[2018-02-13T00:37:54.078] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:37:54.079] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:37:54.318] [INFO] cheese - inserting 1000 documents. first: Altimaenas and last: Template:Soviet Union Squad 1982 FIBA World Championship -[2018-02-13T00:37:54.349] [INFO] cheese - inserting 1000 documents. first: Johann Matthaus Meyfart and last: Roman republicanism -[2018-02-13T00:37:54.371] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:37:54.394] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:54.409] [INFO] cheese - inserting 1000 documents. first: File:HoyHaroldJames1916-Navy.jpg and last: Betta trifasciata -[2018-02-13T00:37:54.436] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in Egypt by century and last: Book:J. Paul Getty Trust -[2018-02-13T00:37:54.476] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:37:54.521] [INFO] cheese - inserting 1000 documents. first: Pseudoeriosema and last: File:Keibu.png -[2018-02-13T00:37:54.554] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:37:54.589] [INFO] cheese - inserting 1000 documents. first: Francisco José Nicolás González and last: Sukhtkuh -[2018-02-13T00:37:54.628] [INFO] cheese - inserting 1000 documents. first: Juan Jose Fuertes Martinez and last: Klovsteinbakken -[2018-02-13T00:37:54.637] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:37:54.658] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:37:54.664] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:37:54.665] [INFO] cheese - inserting 1000 documents. first: Nesih and last: Category:Basque people by occupation -[2018-02-13T00:37:54.817] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:37:55.013] [INFO] cheese - inserting 1000 documents. first: Charles Lee Salvaggio and last: Lazovici -[2018-02-13T00:37:55.045] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates with red links/120 and last: Resident Evil: Mercenaries Vs. -[2018-02-13T00:37:55.055] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:37:55.083] [INFO] cheese - inserting 1000 documents. first: Butter worm and last: Aphiq -[2018-02-13T00:37:55.084] [INFO] cheese - inserting 1000 documents. first: Panchax pictum and last: August III the Saxon -[2018-02-13T00:37:55.095] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:55.180] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:37:55.229] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:37:55.242] [INFO] cheese - inserting 1000 documents. first: Ali Al-Wardi and last: Metaphilosophy (journal) -[2018-02-13T00:37:55.280] [INFO] cheese - inserting 1000 documents. first: Josh Emery and last: Key blanks -[2018-02-13T00:37:55.302] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:37:55.325] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:55.347] [INFO] cheese - inserting 1000 documents. first: Lassnitz and last: Lumieres Award for Best Cinematography -[2018-02-13T00:37:55.381] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:37:55.476] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Magazines/Animage/2011 and last: Daughter of the Devil -[2018-02-13T00:37:55.557] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:37:55.616] [INFO] cheese - inserting 1000 documents. first: Lumieres Award for Best Director and last: Marcal Aquino -[2018-02-13T00:37:55.662] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:37:55.661] [INFO] cheese - inserting 1000 documents. first: Category:Basque people and last: List of parishes of Portugal: H -[2018-02-13T00:37:55.749] [INFO] cheese - inserting 1000 documents. first: List of pharmaceutical firms and last: Wikipedia:WikiProject Christianity/Anabaptist work group/Introduction -[2018-02-13T00:37:55.759] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:37:55.790] [INFO] cheese - inserting 1000 documents. first: File:Magik4.jpg and last: Necromancer bells -[2018-02-13T00:37:55.838] [INFO] cheese - inserting 1000 documents. first: Krajišnik and last: File:Hathitrustlogo.png -[2018-02-13T00:37:55.868] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:55.893] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:37:55.908] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:37:55.954] [INFO] cheese - inserting 1000 documents. first: TMNT 4 and last: Switching user names -[2018-02-13T00:37:55.957] [INFO] cheese - inserting 1000 documents. first: Maree Humaine and last: Miss Peru 1984 -[2018-02-13T00:37:55.987] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:37:56.033] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:37:56.091] [INFO] cheese - inserting 1000 documents. first: (13503) 1988 RH6 and last: Category:People educated at Bradford Girls' Grammar School -[2018-02-13T00:37:56.199] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:37:56.271] [INFO] cheese - inserting 1000 documents. first: Miss Peru 1985 and last: Nicolas Ortiz -[2018-02-13T00:37:56.310] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:37:56.475] [INFO] cheese - inserting 1000 documents. first: Darko Jevtic and last: Kari Hiran -[2018-02-13T00:37:56.564] [INFO] cheese - inserting 1000 documents. first: Hawke Sea Scout Group and last: Wikipedia:Version 1.0 Editorial Team/Utah road transport articles by quality -[2018-02-13T00:37:56.578] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:56.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2016 June 11 and last: Patricia Villanueva Abrajan -[2018-02-13T00:37:56.643] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:37:56.665] [INFO] cheese - inserting 1000 documents. first: Skin pens and last: Neferti -[2018-02-13T00:37:56.680] [INFO] cheese - inserting 1000 documents. first: Borneo-Philippines languages and last: Urcabustaiz -[2018-02-13T00:37:56.682] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:37:56.684] [INFO] cheese - inserting 1000 documents. first: Hersh and last: Wikipedia:Articles for deletion/Fuzzical Fighter -[2018-02-13T00:37:56.702] [INFO] cheese - inserting 1000 documents. first: Category:Grêmio Foot-Ball Porto Alegrense and last: Elops affinis -[2018-02-13T00:37:56.758] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:37:56.778] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:37:56.789] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:37:56.792] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:37:56.939] [INFO] cheese - inserting 1000 documents. first: Rhipidognathidae and last: Q'alawana -[2018-02-13T00:37:57.014] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:37:57.147] [INFO] cheese - inserting 1000 documents. first: File:George J. Zimmermann buffalo mayor 1934 1937.jpg and last: Microsoft v. Lindows -[2018-02-13T00:37:57.195] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:37:57.246] [INFO] cheese - inserting 1000 documents. first: Peter Nguyễn Văn Hùng and last: Ruth Kluger-Aliav -[2018-02-13T00:37:57.273] [INFO] cheese - inserting 1000 documents. first: DG-400 and last: Portal:Infrastructure/Selected article/21 -[2018-02-13T00:37:57.275] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:37:57.322] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:37:57.336] [INFO] cheese - inserting 1000 documents. first: Xavier University (Cagayan de Oro) and last: Sankichi Awaya -[2018-02-13T00:37:57.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Utah road transport articles by quality log and last: Christine Axsmith -[2018-02-13T00:37:57.401] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:37:57.407] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:37:57.473] [INFO] cheese - inserting 1000 documents. first: William Matteuzzi and last: Nevatim airport -[2018-02-13T00:37:57.476] [INFO] cheese - inserting 1000 documents. first: Ruth Randall Edstrom and last: Sergio Perez Visca -[2018-02-13T00:37:57.502] [INFO] cheese - inserting 1000 documents. first: Herbert Kohl (Educator) and last: USS R-16 (SS-93) -[2018-02-13T00:37:57.508] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:37:57.547] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:37:57.608] [INFO] cheese - inserting 1000 documents. first: List of New wave artists and bands and last: Template:Afd see also documentation/sandbox -[2018-02-13T00:37:57.630] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:37:57.717] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:37:57.798] [INFO] cheese - inserting 1000 documents. first: Sergio Quiroz and last: Sunvara SK -[2018-02-13T00:37:57.800] [INFO] cheese - inserting 1000 documents. first: Princess Mariana (yacht) and last: Battle of Trent's Reach -[2018-02-13T00:37:57.818] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:37:57.865] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:37:57.976] [INFO] cheese - inserting 1000 documents. first: File:GG-Drummond.jpg and last: Love's a Prima Donna -[2018-02-13T00:37:58.054] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:37:58.074] [INFO] cheese - inserting 1000 documents. first: Live at the Isle of Fehmarn and last: Francis Edwards -[2018-02-13T00:37:58.079] [INFO] cheese - inserting 1000 documents. first: Sunatoarea River and last: Tiefing Konate -[2018-02-13T00:37:58.119] [INFO] cheese - inserting 1000 documents. first: St. Alphonsus' Church, Rectory, Convent and Halle and last: Alycia Halladay -[2018-02-13T00:37:58.145] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:37:58.185] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:37:58.196] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:37:58.202] [INFO] cheese - inserting 1000 documents. first: LLNV and last: Portal:War/Selected anniversaries/July 8 -[2018-02-13T00:37:58.278] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:58.448] [INFO] cheese - inserting 1000 documents. first: Tietar (river) and last: Vartioitu kyla 1944 -[2018-02-13T00:37:58.518] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:37:58.527] [INFO] cheese - inserting 1000 documents. first: USS R-17 (SS-94) and last: Stroh violin -[2018-02-13T00:37:58.543] [INFO] cheese - inserting 1000 documents. first: Wildrose Alliance Party of Alberta leadership election, 2009 and last: Chubby Chandler -[2018-02-13T00:37:58.639] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:37:58.687] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T00:37:58.715] [INFO] cheese - inserting 1000 documents. first: Chichester to Silchester Way and last: Church of Christ in China Kei Long College -[2018-02-13T00:37:58.787] [INFO] cheese - inserting 1000 documents. first: Vartiokyla dumping ground and last: You Can Dance – Po Prostu Tancz! (season 8) -[2018-02-13T00:37:58.809] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:37:58.825] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:37:58.899] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Douglas County, Wisconsin and last: Ku Weiwei -[2018-02-13T00:37:58.938] [INFO] cheese - inserting 1000 documents. first: Corporate blog and last: Switzerland, Florida -[2018-02-13T00:37:58.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Jurassic Park franchise/archive1 and last: St Mary's Church, Navan -[2018-02-13T00:37:58.971] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:37:59.036] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:37:59.059] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:37:59.072] [INFO] cheese - inserting 1000 documents. first: Youssouf Kone (footballer, born 1995) and last: Oscar Barros -[2018-02-13T00:37:59.086] [INFO] cheese - inserting 1000 documents. first: Contemporary Pictorial Literature and last: Pokémon: Indigo League -[2018-02-13T00:37:59.113] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:37:59.172] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:37:59.317] [INFO] cheese - inserting 1000 documents. first: Princess Maria Theresa of Löwenstein-Wertheim-Rosenberg and last: 1963–64 New Zealand rugby union tour of Britain, Ireland, France and North America -[2018-02-13T00:37:59.355] [INFO] cheese - inserting 1000 documents. first: Oscar Becerra and last: Agrupación Deportiva Ceuta F.C. -[2018-02-13T00:37:59.391] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:37:59.392] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:37:59.458] [INFO] cheese - inserting 1000 documents. first: John A. Treutlen and last: Elections in Israel -[2018-02-13T00:37:59.499] [INFO] cheese - inserting 1000 documents. first: Template:Cayley-court and last: European Winter Throwing Challenge 2004 -[2018-02-13T00:37:59.582] [INFO] cheese - inserting 1000 documents. first: Kapcypriodopsis and last: Chilean-Greek relations -[2018-02-13T00:37:59.589] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:37:59.605] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:37:59.657] [INFO] cheese - inserting 1000 documents. first: Chrono Cross Timeline and last: Scenopoeetes crassirostris -[2018-02-13T00:37:59.660] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:37:59.714] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:37:59.729] [INFO] cheese - inserting 1000 documents. first: The Cannibal (DeMille novel) and last: Michael Sellers (actor) -[2018-02-13T00:37:59.833] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:37:59.970] [INFO] cheese - inserting 1000 documents. first: Ravenswood Divisional Board and last: Ishmael the son of Fabus -[2018-02-13T00:37:59.986] [INFO] cheese - inserting 1000 documents. first: Danish Superliga 1992-93 and last: Adriaan Engelvaart -[2018-02-13T00:38:00.045] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:38:00.065] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:38:00.223] [INFO] cheese - inserting 1000 documents. first: European Winter Throwing Cup 2004 and last: Victor Strahm -[2018-02-13T00:38:00.238] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Sarpy County, Nebraska and last: List of diplomatic missions in Artsakh -[2018-02-13T00:38:00.307] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:38:00.323] [INFO] cheese - inserting 1000 documents. first: Upayoga and last: Alter of heaven -[2018-02-13T00:38:00.330] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:38:00.427] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:38:00.552] [INFO] cheese - inserting 1000 documents. first: Elections in Italy and last: IRI -[2018-02-13T00:38:00.568] [INFO] cheese - inserting 1000 documents. first: Sir James the Rose and last: Herrevad Abbey -[2018-02-13T00:38:00.575] [INFO] cheese - inserting 1000 documents. first: Geke Faber and last: Italian Postcards -[2018-02-13T00:38:00.659] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:00.701] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:38:00.707] [INFO] cheese - inserting 1000 documents. first: R bodies and last: Magnus Ulleland -[2018-02-13T00:38:00.730] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:38:00.768] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:38:00.932] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Blaine County, Idaho and last: Wikipedia:WikiProject Video games/Collaboration of the week -[2018-02-13T00:38:01.003] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:38:01.084] [INFO] cheese - inserting 1000 documents. first: Barat Ratna and last: Yuri Stepanov -[2018-02-13T00:38:01.104] [INFO] cheese - inserting 1000 documents. first: The altar of heaven and last: Ghetto y Gastam -[2018-02-13T00:38:01.143] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:38:01.165] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:38:01.212] [INFO] cheese - inserting 1000 documents. first: Moffedille and last: Wikipedia:Articles for deletion/Oncofertility -[2018-02-13T00:38:01.230] [INFO] cheese - inserting 1000 documents. first: Template:Richmond Spiders women's basketball navbox and last: I5-6402P -[2018-02-13T00:38:01.284] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:38:01.313] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:38:01.429] [INFO] cheese - inserting 1000 documents. first: Balcarres saskatchewan and last: Panthera gombaszoegensis -[2018-02-13T00:38:01.446] [INFO] cheese - inserting 1000 documents. first: Jack in the green and last: Bankers' acceptance -[2018-02-13T00:38:01.473] [INFO] cheese - inserting 1000 documents. first: Category:2012 in Iowa and last: 2006 NASCAR Truck Series -[2018-02-13T00:38:01.484] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:38:01.494] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:38:01.511] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:38:01.554] [INFO] cheese - inserting 1000 documents. first: I5-6500TE and last: Grupa Azoty ATT Polymers GmbH -[2018-02-13T00:38:01.574] [INFO] cheese - inserting 1000 documents. first: School for Spies and last: Deivamagal -[2018-02-13T00:38:01.581] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:38:01.581] [INFO] cheese - inserting 1000 documents. first: Dyre Avenue (Bronx) and last: Qualified flying instructor -[2018-02-13T00:38:01.634] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:38:01.645] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:38:01.799] [INFO] cheese - inserting 1000 documents. first: Lung (cancer) and last: Category:Unassessed Finland Floorball task force articles -[2018-02-13T00:38:01.855] [INFO] cheese - inserting 1000 documents. first: 2007 NASCAR Truck Series and last: Aldo Maria Brachetti Peretti -[2018-02-13T00:38:01.858] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:38:01.885] [INFO] cheese - inserting 1000 documents. first: Nallampalli taluk and last: Florence Caroline Douglas Dixie -[2018-02-13T00:38:01.924] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:38:01.953] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:38:01.955] [INFO] cheese - inserting 1000 documents. first: Template:Anti-Waste League/meta/shortname and last: Alexander Bonsor -[2018-02-13T00:38:01.958] [INFO] cheese - inserting 1000 documents. first: Portal:Montana/On this day/May 18 and last: SH 160 (CO) -[2018-02-13T00:38:02.005] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:02.016] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:38:02.047] [INFO] cheese - inserting 1000 documents. first: Computer-aided drafting and last: Back to the Future (TV series) -[2018-02-13T00:38:02.049] [INFO] cheese - inserting 1000 documents. first: Grand Orient de Belgique and last: Coloptilia -[2018-02-13T00:38:02.099] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:38:02.125] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:38:02.258] [INFO] cheese - inserting 1000 documents. first: So You Think You Can Dance Canada (season 2) and last: Günther Merkel -[2018-02-13T00:38:02.305] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:38:02.307] [INFO] cheese - inserting 1000 documents. first: Main Building (Montgomery, West Virginia) and last: Wikipedia:Articles for deletion/Sankhya Technologies -[2018-02-13T00:38:02.348] [INFO] cheese - inserting 1000 documents. first: Battery-capacitor flash and last: Ovčáry -[2018-02-13T00:38:02.352] [INFO] cheese - inserting 1000 documents. first: Schuylkill Haven station (Reading Railroad) and last: NHAMO -[2018-02-13T00:38:02.364] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:38:02.387] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:38:02.454] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:02.493] [INFO] cheese - inserting 1000 documents. first: Commatica and last: Rivière-du-Loup station -[2018-02-13T00:38:02.593] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:38:02.681] [INFO] cheese - inserting 1000 documents. first: Kolaras and last: File:SDAP-plaque.jpg -[2018-02-13T00:38:02.763] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:38:02.807] [INFO] cheese - inserting 1000 documents. first: Solzhenytsin and last: Proposed top-level domains -[2018-02-13T00:38:02.819] [INFO] cheese - inserting 1000 documents. first: War of the Wabash Confederacy and last: USS N-4 (SS-56) -[2018-02-13T00:38:02.825] [INFO] cheese - inserting 1000 documents. first: Category:People from Kaag en Braassem and last: Kosztafalva -[2018-02-13T00:38:02.854] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:02.860] [INFO] cheese - inserting 1000 documents. first: Polepy and last: Category:Log buildings and structures in Pennsylvania -[2018-02-13T00:38:02.878] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:38:02.938] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:38:02.944] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:38:03.023] [INFO] cheese - inserting 1000 documents. first: Feminism and pornography and last: King Faisal Babes FC -[2018-02-13T00:38:03.030] [INFO] cheese - inserting 1000 documents. first: Penny universities and last: Touchscreen interface -[2018-02-13T00:38:03.092] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:38:03.120] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:38:03.254] [INFO] cheese - inserting 1000 documents. first: Kamiya Kashin and last: RFFC -[2018-02-13T00:38:03.303] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:38:03.327] [INFO] cheese - inserting 1000 documents. first: Congregation Shomrei Emunah (Borough Park) and last: Liavol Pain -[2018-02-13T00:38:03.355] [INFO] cheese - inserting 1000 documents. first: Libaton and last: Haem O -[2018-02-13T00:38:03.397] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:38:03.406] [INFO] cheese - inserting 1000 documents. first: Zvi Feldman and last: Tax preparation service -[2018-02-13T00:38:03.417] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:38:03.490] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:38:03.532] [INFO] cheese - inserting 1000 documents. first: USS N-5 (SS-57) and last: Cultural determinism -[2018-02-13T00:38:03.596] [INFO] cheese - inserting 1000 documents. first: 2001 Asia-Pacific Rally Championship and last: File:Trex250 box opened.jpg -[2018-02-13T00:38:03.603] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:38:03.610] [INFO] cheese - inserting 1000 documents. first: Elizabethtown, N.J. and last: Lichen schlerosis -[2018-02-13T00:38:03.611] [INFO] cheese - inserting 1000 documents. first: Medeama SC and last: The Worst Witch (2017 TV series) -[2018-02-13T00:38:03.642] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:38:03.697] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:03.703] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:03.756] [INFO] cheese - inserting 1000 documents. first: Liavol Pa'in and last: John Hodgkinson (actor) -[2018-02-13T00:38:03.816] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:38:03.884] [INFO] cheese - inserting 1000 documents. first: Dave Smith (darts player) and last: George Hodge (cricketer) -[2018-02-13T00:38:03.950] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:38:04.084] [INFO] cheese - inserting 1000 documents. first: Victor Erofeev and last: Moses Ximenes -[2018-02-13T00:38:04.113] [INFO] cheese - inserting 1000 documents. first: Hotdec and last: Fool on the Hill (novel) -[2018-02-13T00:38:04.166] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:38:04.260] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:38:04.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sakert.blogspot.com and last: Protein farnesyltransferase -[2018-02-13T00:38:04.340] [INFO] cheese - inserting 1000 documents. first: Hell Hound and last: Jacques Helbronner -[2018-02-13T00:38:04.373] [INFO] cheese - inserting 1000 documents. first: Two-year college and last: Category:1164 births -[2018-02-13T00:38:04.371] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:38:04.418] [INFO] cheese - inserting 1000 documents. first: Episcepsis endodasia and last: File:Arkadij Gajdar Timur i ego komanda.jpg -[2018-02-13T00:38:04.432] [INFO] cheese - inserting 1000 documents. first: Loxian Apollo and last: Thumbikins -[2018-02-13T00:38:04.435] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:38:04.485] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:38:04.484] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:38:04.525] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:04.737] [INFO] cheese - inserting 1000 documents. first: Arthur W. Bell, III and last: Broadway Calls (Album) -[2018-02-13T00:38:04.799] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:38:04.953] [INFO] cheese - inserting 1000 documents. first: (6018) 1991 PS16 and last: Category:Sint-Martens-Latem -[2018-02-13T00:38:04.955] [INFO] cheese - inserting 1000 documents. first: Cornelius Taiwo and last: Category:Opted-out of message delivery -[2018-02-13T00:38:05.003] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:38:05.036] [INFO] cheese - inserting 1000 documents. first: Legio fulminaris and last: Template:Guyana National Football League -[2018-02-13T00:38:05.041] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:05.081] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:38:05.091] [INFO] cheese - inserting 1000 documents. first: Hanza yellow and last: Ultimate Storm -[2018-02-13T00:38:05.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ken Hunter Football and last: L,L-diaminopimelate aminotransferase -[2018-02-13T00:38:05.144] [INFO] cheese - inserting 1000 documents. first: Keillor and last: Province of Taranto -[2018-02-13T00:38:05.166] [INFO] cheese - inserting 1000 documents. first: File:Pneumatic actuator.jpg and last: Yer demir gök bakir -[2018-02-13T00:38:05.184] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:38:05.188] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:38:05.203] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:38:05.233] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:38:05.379] [INFO] cheese - inserting 1000 documents. first: Wings of an Eagle and Other Great Hits and last: William Stephens (cricketer) -[2018-02-13T00:38:05.385] [INFO] cheese - inserting 1000 documents. first: J. Nutr. Biochem. and last: Category:Chips (band) songs -[2018-02-13T00:38:05.395] [INFO] cheese - inserting 1000 documents. first: Category:Osmania University and last: SV Salamander Türkheim -[2018-02-13T00:38:05.410] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:38:05.430] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:38:05.452] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:05.528] [INFO] cheese - inserting 1000 documents. first: Loue (Isle) and last: Psychoanalytic conceptions of language -[2018-02-13T00:38:05.560] [INFO] cheese - inserting 1000 documents. first: RB Richardson and last: Chromate passivation -[2018-02-13T00:38:05.569] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:38:05.607] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:38:05.724] [INFO] cheese - inserting 1000 documents. first: Pullambadi and last: State Street Bank & Trust -[2018-02-13T00:38:05.752] [INFO] cheese - inserting 1000 documents. first: KBMY and last: 1931 Atlantic hurricane season -[2018-02-13T00:38:05.763] [INFO] cheese - inserting 1000 documents. first: Alan Shubrook and last: Wikipedia:Articles for deletion/ETEBAC5 -[2018-02-13T00:38:05.803] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:38:05.809] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:38:05.817] [INFO] cheese - inserting 1000 documents. first: Category:Blue Coast Records artists and last: File:GGCchristy.jpg -[2018-02-13T00:38:05.827] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:05.876] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:38:05.905] [INFO] cheese - inserting 1000 documents. first: Syro Malabar Church and last: Joint Electronic Device Engineering Council -[2018-02-13T00:38:05.912] [INFO] cheese - inserting 1000 documents. first: Category:Articles sourced only by IMDb from August 2011 and last: Template:Yoko Ono Singles -[2018-02-13T00:38:05.940] [INFO] cheese - inserting 1000 documents. first: William Digby (disambiguation) and last: Agadir-Ida Ou Tanane Prefecture -[2018-02-13T00:38:05.958] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:38:05.979] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:38:05.981] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:38:06.325] [INFO] cheese - inserting 1000 documents. first: Mil horas and last: Category:Pamunkey -[2018-02-13T00:38:06.375] [INFO] cheese - inserting 1000 documents. first: Nanhai County and last: Livin' for the Weekend: Anthology -[2018-02-13T00:38:06.385] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:38:06.455] [INFO] cheese - inserting 1000 documents. first: Shekhpura and last: ANPA -[2018-02-13T00:38:06.463] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:38:06.500] [INFO] cheese - inserting 1000 documents. first: British Cybernetics Society and last: Category:Low-importance Secret Societies articles -[2018-02-13T00:38:06.509] [INFO] cheese - inserting 1000 documents. first: File:PFI HealthStrength.jpg and last: The Mokena Messenger -[2018-02-13T00:38:06.517] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:38:06.531] [INFO] cheese - inserting 1000 documents. first: Madukkur block and last: Kazerne Dossin Memorial -[2018-02-13T00:38:06.551] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:06.556] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:38:06.586] [INFO] cheese - inserting 1000 documents. first: Objectify and last: Tennessee Centennial and International Exposition (1897) -[2018-02-13T00:38:06.603] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:38:06.669] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:38:06.796] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julie Hamill and last: Prem Mayee -[2018-02-13T00:38:06.829] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:38:06.871] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Sowme'eh Sara County and last: Wikipedia:Requests for comment/Dsimic -[2018-02-13T00:38:06.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Nakesha7c and last: Eigel -[2018-02-13T00:38:06.912] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:38:06.937] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:38:06.950] [INFO] cheese - inserting 1000 documents. first: Meroitic script and last: Category:1880 in Illinois -[2018-02-13T00:38:06.962] [INFO] cheese - inserting 1000 documents. first: File:Parallax View movie poster.jpg and last: Nicholas Teo -[2018-02-13T00:38:07.006] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:38:07.023] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:07.061] [INFO] cheese - inserting 1000 documents. first: NY-21 and last: Bo Pellnas -[2018-02-13T00:38:07.111] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:38:07.144] [INFO] cheese - inserting 1000 documents. first: Bantoid–Cross languages and last: New Synagogue, Berlin -[2018-02-13T00:38:07.175] [INFO] cheese - inserting 1000 documents. first: 38 Revenue Collection Unit and last: University of Creative Technology Chittagong -[2018-02-13T00:38:07.202] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:38:07.215] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:38:07.289] [INFO] cheese - inserting 1000 documents. first: File:The Play last lateral 1 of 2.png and last: File:EMAP Company Logo.jpg -[2018-02-13T00:38:07.339] [INFO] cheese - inserting 1000 documents. first: Anthony Suarez and last: Mediouna Airfield -[2018-02-13T00:38:07.340] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:38:07.399] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:38:07.421] [INFO] cheese - inserting 1000 documents. first: Cnemidopteris and last: Grzegorz Skwierczyński -[2018-02-13T00:38:07.509] [INFO] cheese - inserting 1000 documents. first: V-2 diesel engine and last: File:Generalweclutterbuck.jpg -[2018-02-13T00:38:07.512] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:38:07.584] [INFO] cheese - inserting 1000 documents. first: Guantanamo captive 151 and last: Antonius Mor -[2018-02-13T00:38:07.641] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:07.699] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:38:07.801] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rajesh Aggarwal and last: Request for Qualifications -[2018-02-13T00:38:07.835] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:07.943] [INFO] cheese - inserting 1000 documents. first: Category:2014 in Singaporean sport and last: Sust, Iran -[2018-02-13T00:38:07.967] [INFO] cheese - inserting 1000 documents. first: FIVB World Rankings and last: Island Falls -[2018-02-13T00:38:07.980] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:38:08.025] [INFO] cheese - inserting 1000 documents. first: Faizullah Khujayev and last: Valentina Giovagnini -[2018-02-13T00:38:08.035] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:38:08.086] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:38:08.153] [INFO] cheese - inserting 1000 documents. first: Norwegian Academy Prize in memory of Thorleif Dahl and last: Haw flake -[2018-02-13T00:38:08.179] [INFO] cheese - inserting 1000 documents. first: Monster Mash (Misfits) and last: Seleucus Nikator -[2018-02-13T00:38:08.208] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:38:08.237] [INFO] cheese - inserting 1000 documents. first: Category:Neuroscience organizations and last: Category:Buildings and structures in Jackson County, South Dakota -[2018-02-13T00:38:08.268] [INFO] cheese - inserting 1000 documents. first: Anglican diocese of Freetown and last: Category:Insects of Belize -[2018-02-13T00:38:08.274] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:38:08.335] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:38:08.353] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:38:08.419] [INFO] cheese - inserting 1000 documents. first: Central Bureau of Statistics (Nepal) and last: Nalband, Gilan -[2018-02-13T00:38:08.461] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:38:08.511] [INFO] cheese - inserting 1000 documents. first: Hing Wah Estate and last: Category:Rugby union in South America -[2018-02-13T00:38:08.561] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:38:08.696] [INFO] cheese - inserting 1000 documents. first: Shephard group and last: File:Ethan Hardy.jpg -[2018-02-13T00:38:08.696] [INFO] cheese - inserting 1000 documents. first: Waller T. Patton and last: Pedro Luis Díaz Lanz -[2018-02-13T00:38:08.709] [INFO] cheese - inserting 1000 documents. first: Continuous transmission mode and last: Charles McGee (painter) -[2018-02-13T00:38:08.732] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:38:08.739] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:38:08.770] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:38:08.791] [INFO] cheese - inserting 1000 documents. first: Aca Lukas and last: Great Lakes storm of 1913 -[2018-02-13T00:38:08.847] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:38:08.879] [INFO] cheese - inserting 1000 documents. first: Mooring mast and last: Wikipedia:WikiProject University of Florida/to do -[2018-02-13T00:38:08.929] [INFO] cheese - inserting 1000 documents. first: Abortion-rights movement and last: College of Osteopathic Medicine of the Pacific, Northwest -[2018-02-13T00:38:08.932] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:09.004] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:38:09.067] [INFO] cheese - inserting 1000 documents. first: Category:1970s poems and last: Belleplaine -[2018-02-13T00:38:09.123] [INFO] cheese - inserting 1000 documents. first: File:Caleb Knight.jpg and last: Anne-Marie Sicotte -[2018-02-13T00:38:09.149] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:38:09.170] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:38:09.212] [INFO] cheese - inserting 1000 documents. first: Titan Jail and last: TOSCA -[2018-02-13T00:38:09.276] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:09.479] [INFO] cheese - inserting 1000 documents. first: Havens Head Retail Park and last: Cruisin' Down the Highway -[2018-02-13T00:38:09.504] [INFO] cheese - inserting 1000 documents. first: Nasur Mahalleh and last: Module:Message box/configuration/doc -[2018-02-13T00:38:09.529] [INFO] cheese - inserting 1000 documents. first: College of Osteopathic Medicine of the Pacific Northwest and last: Peatbog Records -[2018-02-13T00:38:09.537] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:09.565] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T00:38:09.569] [INFO] cheese - inserting 1000 documents. first: Jiyus and last: Baseball at the 1955 Pan American Games -[2018-02-13T00:38:09.582] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:38:09.626] [INFO] cheese - inserting 1000 documents. first: Kabigon and last: Category:Privateers -[2018-02-13T00:38:09.635] [INFO] cheese - inserting 1000 documents. first: Sokol Saratov and last: Auraya of the White -[2018-02-13T00:38:09.639] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:38:09.673] [INFO] cheese - inserting 1000 documents. first: Turn The Page (Metallica song) and last: Jig maker -[2018-02-13T00:38:09.674] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:38:09.686] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:38:09.734] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:38:09.934] [INFO] cheese - inserting 1000 documents. first: Trigg County Public Schools and last: Category:Medieval Jewish physicians of Italy -[2018-02-13T00:38:09.948] [INFO] cheese - inserting 1000 documents. first: Chris Turner (politician) and last: Category:Census-designated places in Webster County, Iowa -[2018-02-13T00:38:09.957] [INFO] cheese - inserting 1000 documents. first: Goddess Ceres and last: Nicholas Chiorazzi -[2018-02-13T00:38:09.981] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:38:09.997] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:10.003] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:38:10.043] [INFO] cheese - inserting 1000 documents. first: Marjorie Mensah and last: 1982–83 Duleep Trophy -[2018-02-13T00:38:10.088] [INFO] cheese - inserting 1000 documents. first: Kota Ngah Ibrahim and last: Erky Perky -[2018-02-13T00:38:10.105] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:38:10.127] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:38:10.134] [INFO] cheese - inserting 1000 documents. first: Ookami to Koushinryo and last: Tanja Ribic -[2018-02-13T00:38:10.177] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:38:10.235] [INFO] cheese - inserting 1000 documents. first: Konjaku Monogatari and last: Chyhyryn -[2018-02-13T00:38:10.286] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:38:10.303] [INFO] cheese - inserting 1000 documents. first: William Hammond (cricketer) and last: William J. Howell -[2018-02-13T00:38:10.304] [INFO] cheese - inserting 1000 documents. first: Oriental Missionary Society and last: Category:Tourist attractions in Seward County, Nebraska -[2018-02-13T00:38:10.347] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:38:10.358] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:38:10.380] [INFO] cheese - inserting 1000 documents. first: The Robinson Family and last: Category:Los Super Reyes songs -[2018-02-13T00:38:10.418] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:38:10.504] [INFO] cheese - inserting 1000 documents. first: 1983–84 Duleep Trophy and last: File:Game-of-Thrones-S06-E10-The-Winds-of-Winter.jpg -[2018-02-13T00:38:10.540] [INFO] cheese - inserting 1000 documents. first: Vinnius and last: EX-Z57 -[2018-02-13T00:38:10.583] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:38:10.604] [INFO] cheese - inserting 1000 documents. first: Eagle Township, Black Hawk County, Iowa and last: 9 mm Para -[2018-02-13T00:38:10.611] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:38:10.713] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:38:10.868] [INFO] cheese - inserting 1000 documents. first: HMS Merope (1808) and last: Sandy rosenthal -[2018-02-13T00:38:10.928] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Phelps County, Nebraska and last: United Nations Security Council Resolution 2001 -[2018-02-13T00:38:10.933] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:11.001] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:38:11.069] [INFO] cheese - inserting 1000 documents. first: BEL and last: Ozalid (trade mark) -[2018-02-13T00:38:11.107] [INFO] cheese - inserting 1000 documents. first: Category:Vitosha and last: Wikipedia:Copyright problems/2007 December 7/Articles -[2018-02-13T00:38:11.127] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:38:11.135] [INFO] cheese - inserting 1000 documents. first: W219AU and last: Fatima (d. 1246) -[2018-02-13T00:38:11.139] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:38:11.155] [INFO] cheese - inserting 1000 documents. first: Cheetah Danio and last: Template:Unsignedip -[2018-02-13T00:38:11.207] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:38:11.214] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:38:11.327] [INFO] cheese - inserting 1000 documents. first: Template:ВТ-ЭСБЕ and last: Quicksilver Lightning -[2018-02-13T00:38:11.331] [INFO] cheese - inserting 1000 documents. first: Wojciech Gawroński and last: Wikipedia:WikiProject Trains/ICC valuations/Nez Perce and Idaho Railroad -[2018-02-13T00:38:11.352] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fsologub.ru and last: Template:Editnotices/Page/List of people from Newfoundland and Labrador -[2018-02-13T00:38:11.361] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:38:11.382] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:38:11.403] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:38:11.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 December 7 and last: Myosin light chain phosphatase -[2018-02-13T00:38:11.596] [INFO] cheese - inserting 1000 documents. first: 2016–17 Women's EHF Champions League group stage and last: Portal:Business and economics/Selected quote/106 -[2018-02-13T00:38:11.598] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:38:11.631] [INFO] cheese - inserting 1000 documents. first: Nathaniel Claiborne and last: Treaty of Saint-Clair-sur-Epte -[2018-02-13T00:38:11.630] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:38:11.647] [INFO] cheese - inserting 1000 documents. first: Veniamin Fleishman and last: US-412 -[2018-02-13T00:38:11.704] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:38:11.716] [INFO] cheese - inserting 1000 documents. first: Category:Permanent Representatives of Sudan to the United Nations and last: Wikipedia:Articles for deletion/Christian Robert-Godfrey -[2018-02-13T00:38:11.727] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:38:11.729] [INFO] cheese - inserting 1000 documents. first: File:Kings and Queens music video.jpg and last: Masider -[2018-02-13T00:38:11.766] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Anthony Winward and last: Wikipedia:WikiProject Spam/Local/dictionaryofsydney.org -[2018-02-13T00:38:11.780] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:38:11.782] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:38:11.844] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:38:11.980] [INFO] cheese - inserting 1000 documents. first: Chocolate Inspector and last: Wikipedia:Articles for deletion/Kinetic degradation fluxion media (2nd nomination) -[2018-02-13T00:38:12.010] [INFO] cheese - inserting 1000 documents. first: Abdulrazak Gurnah and last: Wikipedia:WikiProject Spam/LinkReports/fripro.com -[2018-02-13T00:38:12.020] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:38:12.074] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:38:12.229] [INFO] cheese - inserting 1000 documents. first: Category:Thai comedians and last: Tomb of National Heroes, Belgrade -[2018-02-13T00:38:12.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/April 6, 2007 and last: Lake Waswanipi -[2018-02-13T00:38:12.265] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:38:12.269] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 July 31 and last: Socialist Youth (Croatia) -[2018-02-13T00:38:12.336] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:38:12.356] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:38:12.462] [INFO] cheese - inserting 1000 documents. first: Song Yun Ah and last: USS S-37 -[2018-02-13T00:38:12.550] [INFO] cheese - inserting 1000 documents. first: Drugi način and last: David Lewis MacPherson -[2018-02-13T00:38:12.597] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:38:12.654] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:38:12.715] [INFO] cheese - inserting 1000 documents. first: File:Danger by Katie Underwood.jpg and last: Wikipedia:Articles for deletion/Birthright (A-Ha song) -[2018-02-13T00:38:12.765] [INFO] cheese - inserting 1000 documents. first: Uilliam ÓDuinnín and last: Template:Perarasu -[2018-02-13T00:38:12.806] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:38:12.826] [INFO] cheese - inserting 1000 documents. first: Tyesha Mattis and last: Shargeh, Baneh -[2018-02-13T00:38:12.864] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:38:12.871] [INFO] cheese - inserting 1000 documents. first: Red Falcons and last: Wikipedia:Tip of the day/November 17, 2007 -[2018-02-13T00:38:12.903] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:38:12.950] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:38:12.963] [INFO] cheese - inserting 1000 documents. first: Dusan Nulícek and last: Simon Geschke -[2018-02-13T00:38:13.089] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:38:13.113] [INFO] cheese - inserting 1000 documents. first: Toktayym Umotalieva and last: Template:PDB Gallery/538 -[2018-02-13T00:38:13.199] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:38:13.293] [INFO] cheese - inserting 1000 documents. first: Lesbian Health Initiative of Houston and last: Tennessee State Route 30 -[2018-02-13T00:38:13.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:POTD/February 9, 2005 and last: Charles A. Lockwood -[2018-02-13T00:38:13.337] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:38:13.342] [INFO] cheese - inserting 1000 documents. first: Sarqul and last: NPC Japan -[2018-02-13T00:38:13.369] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:38:13.395] [INFO] cheese - inserting 1000 documents. first: 2007 Regions Morgan Keegan Championships and the Cellular South Cup and last: Ohangla dance -[2018-02-13T00:38:13.409] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:13.447] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:13.481] [INFO] cheese - inserting 1000 documents. first: 2005–06 Scottish Premier League and last: Love Is War -[2018-02-13T00:38:13.492] [INFO] cheese - inserting 1000 documents. first: Chapman Intermediate School and last: Wikipedia:Articles for deletion/Game Boy games in the Castlevania series -[2018-02-13T00:38:13.531] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:38:13.533] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:38:13.590] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Manchester Ship Canal/archive1 and last: Category:Novels set in Northern Territory (Australia) -[2018-02-13T00:38:13.644] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:38:13.755] [INFO] cheese - inserting 1000 documents. first: Category:Lists of actors by American television series and last: Taichung Municipality -[2018-02-13T00:38:13.789] [INFO] cheese - inserting 1000 documents. first: List of diplomats of the United Kingdom to the Hanseatic League and last: Category:Roads in Vijayawada -[2018-02-13T00:38:13.810] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:38:13.827] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:38:13.887] [INFO] cheese - inserting 1000 documents. first: 3225 Hoag and last: Wikipedia:WikiProject Spam/LinkReports/alfiemartin.com -[2018-02-13T00:38:13.906] [INFO] cheese - inserting 1000 documents. first: Template:Superimpose2 and last: Cuiluan District -[2018-02-13T00:38:13.914] [INFO] cheese - inserting 1000 documents. first: My Dinner With Andre and last: Dale Peck -[2018-02-13T00:38:13.945] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:38:13.965] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:38:13.973] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:38:14.011] [INFO] cheese - inserting 1000 documents. first: Breath of life and last: Team Melli -[2018-02-13T00:38:14.056] [INFO] cheese - inserting 1000 documents. first: Category:Football venues in São Paulo (state) and last: File:Hammerfight video game screenshot.png -[2018-02-13T00:38:14.078] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:38:14.105] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:14.266] [INFO] cheese - inserting 1000 documents. first: Sike Station and last: Category:Dark Angel (band) members -[2018-02-13T00:38:14.271] [INFO] cheese - inserting 1000 documents. first: 2017 FIVB Volleyball Girls' U18 World Championship and last: Tweedmouth rangers fc -[2018-02-13T00:38:14.314] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:38:14.326] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:38:14.355] [INFO] cheese - inserting 1000 documents. first: Серге́й Серге́евич Бодро́в and last: Renee Taylor -[2018-02-13T00:38:14.459] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:38:14.550] [INFO] cheese - inserting 1000 documents. first: Sir David Stuart Beattie and last: B E Sutton -[2018-02-13T00:38:14.591] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:38:14.690] [INFO] cheese - inserting 1000 documents. first: Noncentral beta distribution and last: St. Augustine Foot Soldiers Monument -[2018-02-13T00:38:14.729] [INFO] cheese - inserting 1000 documents. first: What Now My Love (1966 song) and last: Wikipedia:Articles for deletion/The essentials -[2018-02-13T00:38:14.734] [INFO] cheese - inserting 1000 documents. first: William Janklow and last: Galactic Basic -[2018-02-13T00:38:14.755] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:38:14.785] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:38:14.795] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:38:14.874] [INFO] cheese - inserting 1000 documents. first: Category:Daphne and Celeste songs and last: Wikipedia:Articles for deletion/Rolf Dinsdale -[2018-02-13T00:38:14.892] [INFO] cheese - inserting 1000 documents. first: File:Bishop Edward Bass.jpg and last: 2016-17 UMass Minutemen basketball team -[2018-02-13T00:38:14.922] [INFO] cheese - inserting 1000 documents. first: The Grio and last: Category:Steamships of Finland -[2018-02-13T00:38:14.938] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:38:14.941] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:38:15.008] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:15.018] [INFO] cheese - inserting 1000 documents. first: Marvin P. Iannone and last: USS LST-956 -[2018-02-13T00:38:15.068] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:38:15.135] [INFO] cheese - inserting 1000 documents. first: Labyrinth 2 HD and last: Category:1865 in the Confederate States of America -[2018-02-13T00:38:15.170] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:15.224] [INFO] cheese - inserting 1000 documents. first: Danzig 6 and last: Template:Infobox NCAA team season/teamsandbox -[2018-02-13T00:38:15.234] [INFO] cheese - inserting 1000 documents. first: Category:Companies by city and last: Chris Bliss -[2018-02-13T00:38:15.259] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:38:15.290] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:38:15.292] [INFO] cheese - inserting 1000 documents. first: Saudi-Iraq border and last: Mountain coyote mint -[2018-02-13T00:38:15.348] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:38:15.377] [INFO] cheese - inserting 1000 documents. first: Evelyn Beatrice Longman Batchelder and last: Peter Paul Busuttil -[2018-02-13T00:38:15.423] [INFO] cheese - inserting 1000 documents. first: Pine Stump Junction and last: Cambodian Army -[2018-02-13T00:38:15.435] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:38:15.449] [INFO] cheese - inserting 1000 documents. first: Template:CECAFA Cup and last: Jared Lane -[2018-02-13T00:38:15.456] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Douglas County, Kansas and last: Alaska Native languages -[2018-02-13T00:38:15.483] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:38:15.499] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:38:15.502] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:38:15.644] [INFO] cheese - inserting 1000 documents. first: Pronoun dropping language and last: Conde de Casal (Madrid Metro) -[2018-02-13T00:38:15.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/myhotelsibiza.com and last: Portal:Anime and Manga/Anniversaries/July/July 6 -[2018-02-13T00:38:15.665] [INFO] cheese - inserting 1000 documents. first: Munemitsu Mutsu and last: Plateresque Style -[2018-02-13T00:38:15.689] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:38:15.686] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:38:15.734] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:38:15.774] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/51207 and last: File:Trash We'd Love.jpg -[2018-02-13T00:38:15.800] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:38:15.883] [INFO] cheese - inserting 1000 documents. first: Indigenous languages of Alaska and last: King Abel of Denmark -[2018-02-13T00:38:15.889] [INFO] cheese - inserting 1000 documents. first: Indianwood Golf & Country Club and last: Iratsume -[2018-02-13T00:38:15.915] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:15.943] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and Manga/Anniversaries/July/July 7 and last: Eileen McSaveney -[2018-02-13T00:38:15.959] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:38:16.094] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:38:16.178] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/9955 and last: Template:Ledbury and Gloucester Railway -[2018-02-13T00:38:16.194] [INFO] cheese - inserting 1000 documents. first: Dreamgirl: my life as a supreme and last: IFPB -[2018-02-13T00:38:16.262] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:38:16.309] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:38:16.493] [INFO] cheese - inserting 1000 documents. first: The eurasia center and last: Mouth of tyne festival -[2018-02-13T00:38:16.588] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:38:16.657] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/5830 and last: Category:Trot groups -[2018-02-13T00:38:16.680] [INFO] cheese - inserting 1000 documents. first: Maplestory Adventures and last: Category:Suspected Wikipedia sockpuppets of Mr.sir named sir -[2018-02-13T00:38:16.682] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:38:16.709] [INFO] cheese - inserting 1000 documents. first: Template:Regent College and last: File:University of Chicago Basketball Team, Intercollegiate Champions, 1909-10.jpg -[2018-02-13T00:38:16.718] [INFO] cheese - inserting 1000 documents. first: Peter J. Hammond (economist) and last: Raheel Sharif -[2018-02-13T00:38:16.734] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:38:16.744] [INFO] cheese - inserting 1000 documents. first: Iridana and last: List of Italian films of 1984 -[2018-02-13T00:38:16.757] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:38:16.779] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:38:16.833] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:38:16.946] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/11005 and last: Template:United States Air Force squadron types -[2018-02-13T00:38:16.972] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:38:17.038] [INFO] cheese - inserting 1000 documents. first: Ramzi Abed and last: Royal Irish Rangers (23rd (Inniskilling), 83rd and 87th) -[2018-02-13T00:38:17.100] [INFO] cheese - inserting 1000 documents. first: Jonas Carpignano and last: File:XHSDM LaVozDelaselva95.7 logo.png -[2018-02-13T00:38:17.103] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:38:17.106] [INFO] cheese - inserting 1000 documents. first: Woodstock High School (Georgia) and last: Wasserfall missile -[2018-02-13T00:38:17.115] [INFO] cheese - inserting 1000 documents. first: O‘zbekiston Respublikasi and last: Bomba, Belize -[2018-02-13T00:38:17.136] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:38:17.159] [INFO] cheese - inserting 1000 documents. first: Portal:Novels/Did you know/4 and last: Seth Helgeson -[2018-02-13T00:38:17.173] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:38:17.173] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:38:17.214] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:38:17.311] [INFO] cheese - inserting 1000 documents. first: Oncologic Surgery and last: Eddie Doyle (hurler) -[2018-02-13T00:38:17.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RR & CO. and last: Template:Infected Mushroom -[2018-02-13T00:38:17.365] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:38:17.379] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:38:17.531] [INFO] cheese - inserting 1000 documents. first: SOCATA TB-9 Tampico and last: George Panthanmackel -[2018-02-13T00:38:17.537] [INFO] cheese - inserting 1000 documents. first: Amber Darter and last: Cámara de Diputados -[2018-02-13T00:38:17.554] [INFO] cheese - inserting 1000 documents. first: Naruto Shippuden: Ultimate Ninja Storm Revolution and last: Brisbane Quarter -[2018-02-13T00:38:17.577] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:38:17.604] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:38:17.613] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:38:17.627] [INFO] cheese - inserting 1000 documents. first: Pan, amor y Andalucía and last: Template:2016-17 MAAC women's basketball standings -[2018-02-13T00:38:17.697] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:38:17.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Irish wikipedians' notice board/to do and last: Robert Arbuthnot, 3rd Viscount of Arbuthnott -[2018-02-13T00:38:17.784] [INFO] cheese - inserting 1000 documents. first: Accounting (UIL) and last: Category:Unknown-importance Florida road transport articles -[2018-02-13T00:38:17.825] [INFO] cheese - inserting 1000 documents. first: GSC 02757-01152 and last: Turvo River (Minas Gerais) -[2018-02-13T00:38:17.834] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:38:17.865] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:38:17.945] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:38:18.082] [INFO] cheese - inserting 1000 documents. first: Pacahuara and last: Dennis Horner (rugby league) -[2018-02-13T00:38:18.179] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:18.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/bio27.com and last: Kingiseppsky District -[2018-02-13T00:38:18.194] [INFO] cheese - inserting 1000 documents. first: Farside City and last: C2H2F4 -[2018-02-13T00:38:18.242] [INFO] cheese - inserting 1000 documents. first: 1969–70 Kentucky Colonels season and last: Antimary State Forest -[2018-02-13T00:38:18.250] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:38:18.255] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:38:18.272] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Florida road transport articles and last: Distinguished Civilian Service Award -[2018-02-13T00:38:18.326] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:18.348] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:38:18.432] [INFO] cheese - inserting 1000 documents. first: Uberaba River (Minas Gerais) and last: Characters of Tenchu -[2018-02-13T00:38:18.512] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:38:18.688] [INFO] cheese - inserting 1000 documents. first: 2002-2003 United States network television schedule and last: Wikipedia:Articles for deletion/YangWei -[2018-02-13T00:38:18.748] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:38:18.779] [INFO] cheese - inserting 1000 documents. first: Kayne Turner and last: File:SAstate2013.gif -[2018-02-13T00:38:18.786] [INFO] cheese - inserting 1000 documents. first: Template:WaterPoloAt2012SummerOlympics and last: The Songbook - Australian Chart Hits -[2018-02-13T00:38:18.805] [INFO] cheese - inserting 1000 documents. first: U.S.N.S. Watertown (T-AGM 6) and last: William Emanuel Huddleston -[2018-02-13T00:38:18.819] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:38:18.830] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:38:18.854] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:38:18.865] [INFO] cheese - inserting 1000 documents. first: 42nd Street - Times Square and last: Yevgeniy Shelyutov -[2018-02-13T00:38:18.911] [INFO] cheese - inserting 1000 documents. first: The Women's Peace Crusade and last: Smith-Martin/Apache Blvd (VMR station) -[2018-02-13T00:38:18.920] [INFO] cheese - inserting 1000 documents. first: GAR Hall and last: Thailand Bible Society -[2018-02-13T00:38:18.925] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:38:18.962] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:38:18.968] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:19.140] [INFO] cheese - inserting 1000 documents. first: Shang of Han and last: Hanang -[2018-02-13T00:38:19.176] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:38:19.245] [INFO] cheese - inserting 1000 documents. first: Black Buck Antelope and last: 138th Street (New York City Subway) -[2018-02-13T00:38:19.245] [INFO] cheese - inserting 1000 documents. first: Yevgeny Shelyutov and last: Category:Bear Mountain State Park -[2018-02-13T00:38:19.299] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:38:19.308] [INFO] cheese - inserting 1000 documents. first: The Watsons Go to Birmingham - 1963 and last: Rossoshansky District -[2018-02-13T00:38:19.313] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:38:19.320] [INFO] cheese - inserting 1000 documents. first: Price-101 Freeway/Apache Blvd (VMR station) and last: Roxee Barcelo -[2018-02-13T00:38:19.383] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:38:19.385] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:38:19.432] [INFO] cheese - inserting 1000 documents. first: Zookeeper (disambiguation) and last: Wikipedia:Articles for deletion/List of locations in the Star Fox series -[2018-02-13T00:38:19.436] [INFO] cheese - inserting 1000 documents. first: File:Witchs of warboys.jpg and last: Dargun -[2018-02-13T00:38:19.492] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:38:19.518] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:38:19.713] [INFO] cheese - inserting 1000 documents. first: Category:Music organizations based in the United States and last: Farid Díaz -[2018-02-13T00:38:19.770] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Tamale pie and last: List of Governors of Languedoc -[2018-02-13T00:38:19.825] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:19.847] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:19.866] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Tupilakosaurus and last: Dani Massunguna -[2018-02-13T00:38:19.905] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean convoys of World War II and last: Template:Editnotices/Page/List of companies of Egypt -[2018-02-13T00:38:19.933] [INFO] cheese - inserting 1000 documents. first: Brisk Iced Lemon Tea and last: Southern kiang -[2018-02-13T00:38:19.970] [INFO] cheese - inserting 1000 documents. first: Peta Jane Buscombe and last: Peter Anthony Inge -[2018-02-13T00:38:19.986] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:38:20.023] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:38:20.073] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:38:20.105] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:38:20.189] [INFO] cheese - inserting 1000 documents. first: Twisted and last: Wallins Creek -[2018-02-13T00:38:20.257] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:38:20.363] [INFO] cheese - inserting 1000 documents. first: Antoski and last: Chiesa di Torricella, Ostiano -[2018-02-13T00:38:20.393] [INFO] cheese - inserting 1000 documents. first: Heinrich Rudolph Wullschlaegel and last: Březsko -[2018-02-13T00:38:20.394] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:38:20.453] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:38:20.491] [INFO] cheese - inserting 1000 documents. first: File:Peranmai poster.jpg and last: Aleksei Kukhtinov -[2018-02-13T00:38:20.523] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/List of companies of the Dominican Republic and last: File:HKFoodforLife.jpg -[2018-02-13T00:38:20.527] [INFO] cheese - inserting 1000 documents. first: File:Anna1951.jpg and last: Wikipedia:Missouri -[2018-02-13T00:38:20.559] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:38:20.575] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:38:20.591] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:38:20.663] [INFO] cheese - inserting 1000 documents. first: Fax Machine and last: 10 000 -[2018-02-13T00:38:20.720] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:38:20.774] [INFO] cheese - inserting 1000 documents. first: Arched marble and last: File:285SqnRAAFcrest.png -[2018-02-13T00:38:20.778] [INFO] cheese - inserting 1000 documents. first: Edward Rowe Snow and last: File:TheRavagesofTime-Vol16.jpg -[2018-02-13T00:38:20.823] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:38:20.844] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:38:20.858] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/survivalops.com and last: William Ickes -[2018-02-13T00:38:20.903] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:38:20.932] [INFO] cheese - inserting 1000 documents. first: Category:1960 in education and last: Founder's Award (disambiguation) -[2018-02-13T00:38:20.974] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:20.992] [INFO] cheese - inserting 1000 documents. first: File:Contracted2013poster.jpg and last: Donegal by-election, 1879 -[2018-02-13T00:38:21.052] [INFO] cheese - inserting 1000 documents. first: Template:Foloi and last: John of Athos -[2018-02-13T00:38:21.082] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:38:21.199] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:38:21.294] [INFO] cheese - inserting 1000 documents. first: Urraca of León and Castile and last: Category:Female veterinarians -[2018-02-13T00:38:21.353] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:21.448] [INFO] cheese - inserting 1000 documents. first: Homeland Security Presidential Directive 9 and last: Parkside West Historic District -[2018-02-13T00:38:21.450] [INFO] cheese - inserting 1000 documents. first: Glycemic control and last: MSMS -[2018-02-13T00:38:21.516] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Cloyne and last: Category:Albums by Bahamian artists -[2018-02-13T00:38:21.528] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:38:21.530] [INFO] cheese - inserting 1000 documents. first: File:Starsapphire-all-flash32.jpg and last: Lunar Surface Access Module (Project Constellation) -[2018-02-13T00:38:21.587] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:38:21.623] [INFO] cheese - inserting 1000 documents. first: Iceland–Tunisia relations and last: Boston College-Harvard Basketball Rivalry -[2018-02-13T00:38:21.655] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:38:21.683] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:38:21.686] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:38:21.784] [INFO] cheese - inserting 1000 documents. first: Narasimhavarman II and last: Sergio Renán -[2018-02-13T00:38:21.811] [INFO] cheese - inserting 1000 documents. first: Category:Indian female choreographers and last: Logistic loss -[2018-02-13T00:38:21.824] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:38:21.860] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:21.996] [INFO] cheese - inserting 1000 documents. first: Chris Robertson and last: Thiagaraya Nagar (State Assembly Constituency) -[2018-02-13T00:38:22.044] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:38:22.125] [INFO] cheese - inserting 1000 documents. first: Otto Magnus von Stackelberg (ambassador) and last: Wikipedia:Articles for deletion/José Cabrera Costas -[2018-02-13T00:38:22.137] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2013/49/1 and last: Hungarian Defence Forces -[2018-02-13T00:38:22.143] [INFO] cheese - inserting 1000 documents. first: Geography of Texas and last: Tigre (language) -[2018-02-13T00:38:22.146] [INFO] cheese - inserting 1000 documents. first: Mesivta of clifton and last: Tony Romano (disambiguation) -[2018-02-13T00:38:22.214] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:38:22.217] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:38:22.240] [INFO] cheese - inserting 1000 documents. first: Ethni and last: Air Do - Hokkaido International Airlines -[2018-02-13T00:38:22.262] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:38:22.284] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:38:22.379] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:38:22.385] [INFO] cheese - inserting 1000 documents. first: Vašek Pospíšil and last: Iván García Cortina -[2018-02-13T00:38:22.468] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:38:22.480] [INFO] cheese - inserting 1000 documents. first: Ustaz Mohammed Yusuf and last: Category:18th-century scientists -[2018-02-13T00:38:22.553] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:38:22.640] [INFO] cheese - inserting 1000 documents. first: Template:Shipindex and last: Category:2014 manga -[2018-02-13T00:38:22.689] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:38:22.715] [INFO] cheese - inserting 1000 documents. first: Silver Hill (Albuquerque) and last: Category:Sport in Saarbrücken -[2018-02-13T00:38:22.738] [INFO] cheese - inserting 1000 documents. first: Minor characters from Wizard of Oz and last: Hans Benndorf -[2018-02-13T00:38:22.780] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:38:22.807] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:38:22.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tsunami in Sangam and last: Vaccarini -[2018-02-13T00:38:22.851] [INFO] cheese - inserting 1000 documents. first: A.K. Premajam and last: Teddy Yip (disambiguation) -[2018-02-13T00:38:22.930] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:22.927] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:38:23.049] [INFO] cheese - inserting 1000 documents. first: Christopher David Lee and last: 2005 World Championships in Athletics - Men's shot put -[2018-02-13T00:38:23.065] [INFO] cheese - inserting 1000 documents. first: Snakeman and last: Paul H. Nitze School of Advanced International Studies (SAIS) at Johns Hopkins University -[2018-02-13T00:38:23.174] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:38:23.195] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:38:23.272] [INFO] cheese - inserting 1000 documents. first: Morgan Jones (US politician) and last: 2011 Utøya, Norway shooting spree -[2018-02-13T00:38:23.333] [INFO] cheese - inserting 1000 documents. first: Category:Onondaga limestone and last: Lollipop chainsaw -[2018-02-13T00:38:23.349] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:38:23.414] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:38:23.473] [INFO] cheese - inserting 1000 documents. first: George Weiss (baseball player) and last: African Studies Association -[2018-02-13T00:38:23.495] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/log/July 2016 and last: Kissos Kissonerga -[2018-02-13T00:38:23.565] [INFO] cheese - inserting 1000 documents. first: RVX and last: Category:Massachusetts county councillors -[2018-02-13T00:38:23.576] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:38:23.579] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:38:23.627] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:38:23.670] [INFO] cheese - inserting 1000 documents. first: Gabal El Uweinat and last: Karlovo (Banat) -[2018-02-13T00:38:23.761] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:38:23.904] [INFO] cheese - inserting 1000 documents. first: Yacov Ben-Dov and last: List of British films of 2012 -[2018-02-13T00:38:23.912] [INFO] cheese - inserting 1000 documents. first: Binjai and last: Jean Du Sable -[2018-02-13T00:38:23.953] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:38:24.004] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:38:24.092] [INFO] cheese - inserting 1000 documents. first: 1954–55 Hapoel Tel Aviv F.C. season and last: Endre, Gotland -[2018-02-13T00:38:24.095] [INFO] cheese - inserting 1000 documents. first: Swedish house of lords and last: Big Cove, AL -[2018-02-13T00:38:24.110] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Arfa ekkeri and last: Hollywood of Europe -[2018-02-13T00:38:24.140] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:38:24.160] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:38:24.191] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:38:24.207] [INFO] cheese - inserting 1000 documents. first: Institute of Technology and Marine Engineering and last: List of French films of 1973 -[2018-02-13T00:38:24.263] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:38:24.289] [INFO] cheese - inserting 1000 documents. first: Lineyte-Samarnon and last: Wikipedia:WikiProject Spam/LinkReports/ychenhappy.com -[2018-02-13T00:38:24.313] [INFO] cheese - inserting 1000 documents. first: Martin Mere, Burscough and last: Charles F Brehm -[2018-02-13T00:38:24.345] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:38:24.371] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:38:24.499] [INFO] cheese - inserting 1000 documents. first: 1919 Western State Hilltoppers football team and last: Tree pincushion protea -[2018-02-13T00:38:24.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2009 July 29 and last: Ali Mirza Safavi -[2018-02-13T00:38:24.549] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:38:24.578] [INFO] cheese - inserting 1000 documents. first: Mercury(II) oxide and last: Chard (disambiguation) -[2018-02-13T00:38:24.583] [INFO] cheese - inserting 1000 documents. first: European Hollywood and last: Kal-i-Keh -[2018-02-13T00:38:24.588] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:38:24.677] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:38:24.707] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:38:24.810] [INFO] cheese - inserting 1000 documents. first: Spectamen and last: Wikipedia:Version 1.0 Editorial Team/Fortifications articles by quality/1 -[2018-02-13T00:38:24.850] [INFO] cheese - inserting 1000 documents. first: Karamanid dynasty and last: File:Comparison of Max Hold Spectrum Analyzer trace and Persistence Trace.png -[2018-02-13T00:38:24.896] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:38:24.911] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:38:24.962] [INFO] cheese - inserting 1000 documents. first: Karolyi and last: Crazy Sue -[2018-02-13T00:38:24.997] [INFO] cheese - inserting 1000 documents. first: Silver mirror test and last: Shuttle sorting -[2018-02-13T00:38:25.052] [INFO] cheese - inserting 1000 documents. first: Domestic level analysis and last: File:Roxana Cannon Arsht.jpg -[2018-02-13T00:38:25.074] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:38:25.097] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:38:25.170] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:25.265] [INFO] cheese - inserting 1000 documents. first: List of socialist countries and last: List of Supreme Court Judges of Victoria -[2018-02-13T00:38:25.332] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:38:25.431] [INFO] cheese - inserting 1000 documents. first: Tha Pandian and last: Stuart Waterton -[2018-02-13T00:38:25.475] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:38:25.489] [INFO] cheese - inserting 1000 documents. first: The Squaw Man (1918 film) and last: Utopía Internacional -[2018-02-13T00:38:25.512] [INFO] cheese - inserting 1000 documents. first: Charles Napoléon Dorion and last: Essque Hotels -[2018-02-13T00:38:25.549] [INFO] cheese - inserting 1000 documents. first: Time Devourer and last: Ronan Rafferty -[2018-02-13T00:38:25.568] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:38:25.597] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:38:25.622] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:38:25.653] [INFO] cheese - inserting 1000 documents. first: Tuning hyperparameters and last: Adrian Morejon -[2018-02-13T00:38:25.708] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:38:25.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/No Right Way and last: Post-game show -[2018-02-13T00:38:25.758] [INFO] cheese - inserting 1000 documents. first: My America (documentary) and last: Winnipeg Light Infantry -[2018-02-13T00:38:25.795] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:38:25.819] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:38:25.903] [INFO] cheese - inserting 1000 documents. first: Category:Unreferenced United States presidential elections articles and last: Tofalau -[2018-02-13T00:38:25.963] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:38:26.047] [INFO] cheese - inserting 1000 documents. first: 1999 FIA GT Homestead 3 Hours and last: Template:Grading scheme/doc/see also -[2018-02-13T00:38:26.048] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 70.176.127.164 and last: Wikipedia:Articles for deletion/Stealth Blimp -[2018-02-13T00:38:26.089] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:38:26.094] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:38:26.137] [INFO] cheese - inserting 1000 documents. first: 50th Transition Training Unit and last: Avoué -[2018-02-13T00:38:26.152] [INFO] cheese - inserting 1000 documents. first: File:Grave 6594470 1037571113.jpg and last: Vazman -[2018-02-13T00:38:26.168] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:38:26.197] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:38:26.209] [INFO] cheese - inserting 1000 documents. first: Template:Infobox military conflict and last: K.A.A. Gent -[2018-02-13T00:38:26.308] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:38:26.340] [INFO] cheese - inserting 1000 documents. first: TEVA Pharmaceuticals USA, Inc. and last: Beer in Serbia and Montenegro -[2018-02-13T00:38:26.388] [INFO] cheese - inserting 1000 documents. first: Cotus and last: Category:Kolkata portal -[2018-02-13T00:38:26.418] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:38:26.428] [INFO] cheese - inserting 1000 documents. first: 52d Transport Wing and last: Category:Cruisers of the Republic of China Navy -[2018-02-13T00:38:26.450] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:38:26.462] [INFO] cheese - inserting 1000 documents. first: Grand Avenue, Queens and last: Folkestone & Shepway F.C. -[2018-02-13T00:38:26.495] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:38:26.555] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:38:26.780] [INFO] cheese - inserting 1000 documents. first: Johann Stegner and last: St John Branch -[2018-02-13T00:38:26.822] [INFO] cheese - inserting 1000 documents. first: Category:Multinational companies headquartered in Israel and last: Cox Cup -[2018-02-13T00:38:26.826] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:26.872] [INFO] cheese - inserting 1000 documents. first: Wongaksa (Gigye, Pohang) and last: Category:Syrian Air Force -[2018-02-13T00:38:26.876] [INFO] cheese - inserting 1000 documents. first: Paul Cameron and last: I-610 (TX) -[2018-02-13T00:38:26.906] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:38:26.965] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:38:27.030] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:38:27.099] [INFO] cheese - inserting 1000 documents. first: James Yorke (bishop) and last: Êtienne Hajdu -[2018-02-13T00:38:27.154] [INFO] cheese - inserting 1000 documents. first: File:Asterixcover-27.jpg and last: BMC Software Inc -[2018-02-13T00:38:27.195] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:38:27.216] [INFO] cheese - inserting 1000 documents. first: Alliant Technosystems and last: Category:Law firms established in 1871 -[2018-02-13T00:38:27.249] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:38:27.305] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:38:27.439] [INFO] cheese - inserting 1000 documents. first: Henk Kamerbeek and last: Victor Matheus Da Silva -[2018-02-13T00:38:27.507] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:38:27.583] [INFO] cheese - inserting 1000 documents. first: Kevin Lankinen and last: Ailsa McKay Lecture -[2018-02-13T00:38:27.648] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:38:27.659] [INFO] cheese - inserting 1000 documents. first: Category:Frazioni of the Province of Campobasso and last: George Stracey Smith -[2018-02-13T00:38:27.687] [INFO] cheese - inserting 1000 documents. first: Etienne Hajdu and last: Abdallah Zrika -[2018-02-13T00:38:27.717] [INFO] cheese - inserting 1000 documents. first: Dher Umid Ali Shah and last: Cd4 t cell -[2018-02-13T00:38:27.721] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:38:27.730] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Tax Club (2nd nomination) and last: Template:User zb5108 -[2018-02-13T00:38:27.732] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:38:27.754] [INFO] cheese - inserting 1000 documents. first: I-474 and last: College of Applied Science, Vadakkencherry -[2018-02-13T00:38:27.766] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:27.799] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:38:27.820] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:38:27.840] [INFO] cheese - inserting 1000 documents. first: Karlslust dance hall fire and last: S.A.V. Fakir -[2018-02-13T00:38:27.889] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:38:27.982] [INFO] cheese - inserting 1000 documents. first: Rudy Altig and last: Category:1970s meteorology -[2018-02-13T00:38:28.038] [INFO] cheese - inserting 1000 documents. first: Climate of south west england and last: All Riders vs. Great Shocker -[2018-02-13T00:38:28.041] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:38:28.081] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:38:28.113] [INFO] cheese - inserting 1000 documents. first: Dressing room (theater) and last: Template:Charlotte sports venues -[2018-02-13T00:38:28.115] [INFO] cheese - inserting 1000 documents. first: Soon (Gershwin) and last: Heavy Bombardment Period -[2018-02-13T00:38:28.155] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:38:28.157] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:38:28.175] [INFO] cheese - inserting 1000 documents. first: Category:Canadian collage artists and last: Template:Edition needed/doc -[2018-02-13T00:38:28.227] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:38:28.287] [INFO] cheese - inserting 1000 documents. first: Rush Hour (film) and last: SS Athenic -[2018-02-13T00:38:28.319] [INFO] cheese - inserting 1000 documents. first: Category:Russian football managers and last: Moon Magic -[2018-02-13T00:38:28.334] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:38:28.367] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:38:28.375] [INFO] cheese - inserting 1000 documents. first: Portal:Twilight/Related portals and last: Špičky -[2018-02-13T00:38:28.439] [INFO] cheese - inserting 1000 documents. first: Danielowice and last: Christopher's Christmas Mission -[2018-02-13T00:38:28.458] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:38:28.478] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:38:28.495] [INFO] cheese - inserting 1000 documents. first: Category:1960s meteorology and last: Russell P. Brown -[2018-02-13T00:38:28.502] [INFO] cheese - inserting 1000 documents. first: Eleutherodactylus simoterus and last: Alex William Costa e Silva -[2018-02-13T00:38:28.558] [INFO] cheese - inserting 1000 documents. first: Tesco Clubcard and last: Collie Entragian -[2018-02-13T00:38:28.575] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:38:28.616] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:28.685] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:28.917] [INFO] cheese - inserting 1000 documents. first: Želatovice and last: Kamuthi taluk -[2018-02-13T00:38:28.984] [INFO] cheese - inserting 1000 documents. first: Mitrophrys fabricata and last: Ruff Sqwad -[2018-02-13T00:38:28.993] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:38:29.053] [INFO] cheese - inserting 1000 documents. first: Desítkový biliár and last: Aurelia Eusebia -[2018-02-13T00:38:29.107] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:38:29.117] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:38:29.132] [INFO] cheese - inserting 1000 documents. first: Co-operative General Association of Free Will Baptists and last: The Exorcism of Molly Hartley -[2018-02-13T00:38:29.222] [INFO] cheese - inserting 1000 documents. first: Sophoraceae and last: Gaveshan -[2018-02-13T00:38:29.236] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:29.301] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:38:29.329] [INFO] cheese - inserting 1000 documents. first: Numberology and last: African-Americans in the Civil War -[2018-02-13T00:38:29.356] [INFO] cheese - inserting 1000 documents. first: Stonybrook-Wilshire and last: Antedated cheque -[2018-02-13T00:38:29.412] [INFO] cheese - inserting 1000 documents. first: Shotokan-ryū and last: WRLE -[2018-02-13T00:38:29.415] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T00:38:29.470] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:38:29.545] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:38:29.712] [INFO] cheese - inserting 1000 documents. first: Khamesan and last: Pritampura -[2018-02-13T00:38:29.731] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Mschuhe3 and last: Category:United States Secret Service agents -[2018-02-13T00:38:29.758] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:38:29.786] [INFO] cheese - inserting 1000 documents. first: The Big 5 and last: Prince Xun (恂) -[2018-02-13T00:38:29.787] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:38:29.830] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:38:29.937] [INFO] cheese - inserting 1000 documents. first: Double-mark and last: Category:Icelandic Roman Catholic priests -[2018-02-13T00:38:29.938] [INFO] cheese - inserting 1000 documents. first: Nelson Cereceda and last: Template:Bethany Dillon -[2018-02-13T00:38:29.961] [INFO] cheese - inserting 1000 documents. first: MRPharmS and last: Bođani Monastery -[2018-02-13T00:38:29.978] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:38:30.004] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:38:30.024] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:38:30.161] [INFO] cheese - inserting 1000 documents. first: Eunomia latenigra and last: Austrian Crescent (potato) -[2018-02-13T00:38:30.209] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:38:30.270] [INFO] cheese - inserting 1000 documents. first: Jean Binta Breeze and last: Northern Westchester -[2018-02-13T00:38:30.293] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Talk:WTFPL/Archive 4 and last: Wikipedia:Articles for deletion/Michael J. Yaremchuk (2nd nomination) -[2018-02-13T00:38:30.309] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada-related articles by quality/23 and last: Abner Cotto -[2018-02-13T00:38:30.332] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:38:30.368] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:38:30.405] [INFO] cheese - inserting 1000 documents. first: Elias Karam and last: Buell XB12R -[2018-02-13T00:38:30.420] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:38:30.467] [INFO] cheese - inserting 1000 documents. first: Ranger SVG-770C-B1 and last: Meat Market (disambiguation) -[2018-02-13T00:38:30.485] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:38:30.500] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:38:30.538] [INFO] cheese - inserting 1000 documents. first: St. Peter Igneus and last: SM U-55 -[2018-02-13T00:38:30.643] [INFO] cheese - inserting 1000 documents. first: Sandra Gardebring Ogren and last: 1955 Clemson Tigers football team -[2018-02-13T00:38:30.667] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:38:30.740] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:38:30.868] [INFO] cheese - inserting 1000 documents. first: Chirpyness and last: Jenny Wimperis -[2018-02-13T00:38:30.901] [INFO] cheese - inserting 1000 documents. first: Nijmar and last: Wikipedia:Drafts -[2018-02-13T00:38:30.931] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:38:30.951] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:38:31.013] [INFO] cheese - inserting 1000 documents. first: Category:2003 in Nigeria and last: Narcissus × medioluteus -[2018-02-13T00:38:31.024] [INFO] cheese - inserting 1000 documents. first: File:Ares Logo.png and last: Luka koper -[2018-02-13T00:38:31.035] [INFO] cheese - inserting 1000 documents. first: Francisco Pacheco and last: Category:Scientology and law -[2018-02-13T00:38:31.066] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:38:31.129] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:38:31.135] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:38:31.203] [INFO] cheese - inserting 1000 documents. first: Compadres and last: Human artificial chromosome -[2018-02-13T00:38:31.243] [INFO] cheese - inserting 1000 documents. first: File:Sick Cycle Carousel Music Video.png and last: Cityflo 650 CBTC -[2018-02-13T00:38:31.267] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:38:31.334] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:31.418] [INFO] cheese - inserting 1000 documents. first: Ömerli, Şanlıurfa and last: Ingleside (Catonsville, Maryland) -[2018-02-13T00:38:31.421] [INFO] cheese - inserting 1000 documents. first: Category:Polar Satellite Launch Vehicle and last: Pokemon Go Plus -[2018-02-13T00:38:31.458] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:31.480] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:31.500] [INFO] cheese - inserting 1000 documents. first: Camp Eden and last: Hieracium onegense -[2018-02-13T00:38:31.507] [INFO] cheese - inserting 1000 documents. first: Flora Penne and last: 1984 Baylor Bears football team -[2018-02-13T00:38:31.548] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:38:31.551] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:38:31.669] [INFO] cheese - inserting 1000 documents. first: Unicode Spacing Modifier Letters and last: Wikipedia:Articles for deletion/Cherie (actress) -[2018-02-13T00:38:31.677] [INFO] cheese - inserting 1000 documents. first: Russian vine and last: Monteiro's Storm-petrel -[2018-02-13T00:38:31.715] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:38:31.718] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:38:31.736] [INFO] cheese - inserting 1000 documents. first: Interstate 395 (District of Columbia) and last: Ahab the Arab -[2018-02-13T00:38:31.798] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:38:31.802] [INFO] cheese - inserting 1000 documents. first: Nikita Glushkov and last: Wojdan -[2018-02-13T00:38:31.822] [INFO] cheese - inserting 1000 documents. first: Arthur Cecil Hynes and last: Category:Rail infrastructure in Bulgaria -[2018-02-13T00:38:31.851] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:31.875] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:38:31.925] [INFO] cheese - inserting 1000 documents. first: File:The Miracles City of Angels.jpg and last: QQ games -[2018-02-13T00:38:31.931] [INFO] cheese - inserting 1000 documents. first: Kadlub and last: The Mpowerment Project -[2018-02-13T00:38:32.001] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:38:32.067] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:38:32.163] [INFO] cheese - inserting 1000 documents. first: Swinhoe's Storm-petrel and last: Adımı Kalbine Yaz -[2018-02-13T00:38:32.244] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:32.299] [INFO] cheese - inserting 1000 documents. first: 2006 oklahoma sooners football team and last: Buffalo City Stadium -[2018-02-13T00:38:32.363] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:38:32.456] [INFO] cheese - inserting 1000 documents. first: Woydan and last: Heinrich Gottron -[2018-02-13T00:38:32.469] [INFO] cheese - inserting 1000 documents. first: Oceania Women's Sevens and last: Juan Jacinto (Musician) -[2018-02-13T00:38:32.474] [INFO] cheese - inserting 1000 documents. first: TKO Software and last: Michael Malkior -[2018-02-13T00:38:32.510] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:38:32.522] [INFO] cheese - inserting 1000 documents. first: Lichtenberg, Austria and last: Category:LQ06 quadrangle -[2018-02-13T00:38:32.522] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:38:32.534] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:38:32.567] [INFO] cheese - inserting 1000 documents. first: QQ game and last: Governors of Malta -[2018-02-13T00:38:32.606] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:32.638] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:38:32.656] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2011 Summer Universiade – Women's road race and last: Category:1993 in New York (state) -[2018-02-13T00:38:32.715] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:38:32.919] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/IMac4ME and last: Waldrep Dairy -[2018-02-13T00:38:32.951] [INFO] cheese - inserting 1000 documents. first: Teresa Almeida and last: Karolina Semeniuk-Olchawa -[2018-02-13T00:38:32.957] [INFO] cheese - inserting 1000 documents. first: Dhingana City and last: File:Ubisoft Toronto Logo.jpg -[2018-02-13T00:38:32.992] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:33.013] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:38:33.016] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:38:33.091] [INFO] cheese - inserting 1000 documents. first: Spermatazoon and last: The Garey -[2018-02-13T00:38:33.164] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:33.170] [INFO] cheese - inserting 1000 documents. first: Yujiazui and last: Supplementary benefit -[2018-02-13T00:38:33.172] [INFO] cheese - inserting 1000 documents. first: Category:Wards of Sapporo and last: Radio Erevan -[2018-02-13T00:38:33.239] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:38:33.255] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:38:33.400] [INFO] cheese - inserting 1000 documents. first: Gannes, Harry. and last: Category:Italian video game designers -[2018-02-13T00:38:33.437] [INFO] cheese - inserting 1000 documents. first: Portal:College football/College football news and last: Charles Codman -[2018-02-13T00:38:33.443] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:38:33.482] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:38:33.537] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Die Singphoniker and last: Recreational use of drugs -[2018-02-13T00:38:33.582] [INFO] cheese - inserting 1000 documents. first: New South Wales state rugby league team and last: Edwin G. Pulleyblank -[2018-02-13T00:38:33.640] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:38:33.689] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:38:33.826] [INFO] cheese - inserting 1000 documents. first: Cptsd and last: Newcastle RLFC -[2018-02-13T00:38:33.895] [INFO] cheese - inserting 1000 documents. first: D. W. Griffith's Abraham Lincoln and last: Emil Frey-Kloss -[2018-02-13T00:38:33.951] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T00:38:33.997] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:38:34.018] [INFO] cheese - inserting 1000 documents. first: Kallang River and last: List of Will & Grace episodes -[2018-02-13T00:38:34.034] [INFO] cheese - inserting 1000 documents. first: Moscow Metro Line 12 and last: Category:2016 Czech television series debuts -[2018-02-13T00:38:34.083] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:38:34.139] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:38:34.154] [INFO] cheese - inserting 1000 documents. first: Celilo Converter Statio and last: Lenstra-Lenstra-Lovász lattice basis reduction algorithm -[2018-02-13T00:38:34.184] [INFO] cheese - inserting 1000 documents. first: Moroccan Parliament and last: Wanakah, New York -[2018-02-13T00:38:34.232] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:38:34.236] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:38:34.246] [INFO] cheese - inserting 1000 documents. first: Emile Frey and last: The battle of electricity -[2018-02-13T00:38:34.283] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:38:34.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/December 2013 - January 2014 Backlog Elimination Drive/Numbermaniac and last: Within a Song -[2018-02-13T00:38:34.425] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:38:34.499] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Wyoming, 2020 and last: Enniscorthy Greyhound Stadium -[2018-02-13T00:38:34.554] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:38:34.572] [INFO] cheese - inserting 1000 documents. first: The battle of epping forest and last: KIBB-FM -[2018-02-13T00:38:34.601] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:38:34.695] [INFO] cheese - inserting 1000 documents. first: Category:2009 poems and last: File:41 (1927 film).jpg -[2018-02-13T00:38:34.727] [INFO] cheese - inserting 1000 documents. first: Pepino (fruit) and last: Cotuit Hall -[2018-02-13T00:38:34.766] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:38:34.818] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:38:34.852] [INFO] cheese - inserting 1000 documents. first: Haute Marne and last: Lisa Left Eye Lopes -[2018-02-13T00:38:34.856] [INFO] cheese - inserting 1000 documents. first: Transgender Awareness Week and last: Glyphipteryx variella -[2018-02-13T00:38:34.911] [INFO] cheese - inserting 1000 documents. first: Kim:kyungho 1997 (album) and last: Template:Montenegro in Eurovision -[2018-02-13T00:38:34.912] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:38:34.914] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:38:34.936] [INFO] cheese - inserting 1000 documents. first: Iowa gubernatorial election, 2018 and last: Inder puri -[2018-02-13T00:38:34.996] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:38:34.998] [INFO] cheese - inserting 1000 documents. first: Art Museum of Georgia and last: S.T.R.I.K.E -[2018-02-13T00:38:35.004] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:38:35.083] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:38:35.187] [INFO] cheese - inserting 1000 documents. first: Perspecta (journal) and last: Bundle bone -[2018-02-13T00:38:35.227] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:38:35.317] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tomomi Sunaba and last: ŠD NK Križevci -[2018-02-13T00:38:35.349] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:38:35.401] [INFO] cheese - inserting 1000 documents. first: Back to Square-1 Puzzle and last: Faliro Bay -[2018-02-13T00:38:35.403] [INFO] cheese - inserting 1000 documents. first: Uniform dual and last: Fazlabad, Kapurthala -[2018-02-13T00:38:35.438] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:38:35.522] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 124001–125000 and last: List of hospitals in Winnipeg -[2018-02-13T00:38:35.549] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:38:35.551] [INFO] cheese - inserting 1000 documents. first: Paintball bazooka and last: Rudolf Sosna -[2018-02-13T00:38:35.620] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:38:35.635] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:38:35.716] [INFO] cheese - inserting 1000 documents. first: Definite Darkness and last: File:Oscar Wilde FilmPoster.jpeg -[2018-02-13T00:38:35.720] [INFO] cheese - inserting 1000 documents. first: Category:1940 in science and last: Fred Hill (basketball coach) -[2018-02-13T00:38:35.776] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:35.824] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:38:35.878] [INFO] cheese - inserting 1000 documents. first: Kalateh (disambiguation) and last: Avalon Online -[2018-02-13T00:38:35.932] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:36.110] [INFO] cheese - inserting 1000 documents. first: B.J. Wilson and last: 2016-17 Montana Grizzlies men's basketball team -[2018-02-13T00:38:36.150] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:38:36.178] [INFO] cheese - inserting 1000 documents. first: Gunter Wüsthoff and last: 1972 Republican presidential primary -[2018-02-13T00:38:36.223] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:38:36.230] [INFO] cheese - inserting 1000 documents. first: Map of the Human Heart and last: Good to Great -[2018-02-13T00:38:36.259] [INFO] cheese - inserting 1000 documents. first: Rugby union in Basutoland and last: Waugoshance Point -[2018-02-13T00:38:36.265] [INFO] cheese - inserting 1000 documents. first: 17th millennium and last: Metrobus (St.John's, Newfoundland) -[2018-02-13T00:38:36.299] [INFO] cheese - inserting 1000 documents. first: Rick Kozak and last: File:Robert-Courtneidge.jpg -[2018-02-13T00:38:36.310] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:38:36.315] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Totaldramaisland33 and last: Wikipedia:Articles for deletion/Media Go -[2018-02-13T00:38:36.317] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:38:36.326] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:38:36.368] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:38:36.402] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:38:36.649] [INFO] cheese - inserting 1000 documents. first: Nice lorry attack, July 2016 and last: File:Wemall logo 2016.png -[2018-02-13T00:38:36.661] [INFO] cheese - inserting 1000 documents. first: Category:1987 in figure skating and last: Universidad de Alicante -[2018-02-13T00:38:36.699] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:36.715] [INFO] cheese - inserting 1000 documents. first: List of RHPs in Oswego and last: Jennifer Page (Millennium Dome) -[2018-02-13T00:38:36.713] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:38:36.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Puja Agarwal and last: Just as I Am (Brantley Gilbert album), -[2018-02-13T00:38:36.795] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:38:36.846] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:38:36.874] [INFO] cheese - inserting 1000 documents. first: Alfredo Poveda Burbano and last: Jesse Knight House -[2018-02-13T00:38:36.907] [INFO] cheese - inserting 1000 documents. first: English Spinach and last: Wikipedia:WikiProject Australia/Peer review/TISM -[2018-02-13T00:38:36.944] [INFO] cheese - inserting 1000 documents. first: Teri Weigel and last: Craig Russell -[2018-02-13T00:38:36.958] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:38:36.993] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:38:37.058] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:38:37.199] [INFO] cheese - inserting 1000 documents. first: William Todd Tiahrt and last: Category:Santa Rosa de Copán -[2018-02-13T00:38:37.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sp-studio.moy.su and last: Category:Historians of the Caucasus -[2018-02-13T00:38:37.327] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:38:37.426] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:38:37.517] [INFO] cheese - inserting 1000 documents. first: Degaga and last: File:Castlevania - Circle of the Moon - Gameplay.png -[2018-02-13T00:38:37.536] [INFO] cheese - inserting 1000 documents. first: Category:People from Savona and last: No homo -[2018-02-13T00:38:37.580] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:38:37.640] [INFO] cheese - inserting 1000 documents. first: Marcin Krowicki and last: Category:Populated places in Andrew County, Missouri -[2018-02-13T00:38:37.645] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:38:37.710] [INFO] cheese - inserting 1000 documents. first: Cucumis myriocarpus and last: Parks in Windsor, Ontario -[2018-02-13T00:38:37.728] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:38:37.795] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:38:37.845] [INFO] cheese - inserting 1000 documents. first: Category:Proposals in Asia and last: Category:Shipwrecks on the National Register of Historic Places in Texas -[2018-02-13T00:38:37.914] [INFO] cheese - inserting 1000 documents. first: Eugene skinner and last: Kosmos (publisher) -[2018-02-13T00:38:37.939] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:38:37.956] [INFO] cheese - inserting 1000 documents. first: File:Skyline from barton springs ALEXIS CALCOTE.JPG and last: Category:Wikipedia sockpuppets of Ineedanewaccount -[2018-02-13T00:38:37.987] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:38:38.002] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:38:38.102] [INFO] cheese - inserting 1000 documents. first: Template:Sarvabad County and last: Category:Participants in Argentine reality television series -[2018-02-13T00:38:38.155] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:38.194] [INFO] cheese - inserting 1000 documents. first: Better Than I Used to Be and last: 1952 Rugby Union European Cup -[2018-02-13T00:38:38.243] [INFO] cheese - inserting 1000 documents. first: Leila Pahlavi and last: Category:1880 animal deaths -[2018-02-13T00:38:38.247] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:38:38.281] [INFO] cheese - inserting 1000 documents. first: Dengakuman and last: The Great Bear (play) -[2018-02-13T00:38:38.307] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:38:38.341] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:38:38.355] [INFO] cheese - inserting 1000 documents. first: Belardi and last: ABA Light-Middleweight Champions -[2018-02-13T00:38:38.418] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:38:38.491] [INFO] cheese - inserting 1000 documents. first: W.G. Aston and last: Lucy Decker Seeley -[2018-02-13T00:38:38.561] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:38:38.589] [INFO] cheese - inserting 1000 documents. first: Stylosanthes biflora and last: Category:Wikipedians in the IEEE Robotics and Automation Society -[2018-02-13T00:38:38.629] [INFO] cheese - inserting 1000 documents. first: Simple Machine and last: Chava -[2018-02-13T00:38:38.633] [INFO] cheese - inserting 1000 documents. first: Harding University Graduate School of Religion and last: Kalancho -[2018-02-13T00:38:38.653] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:38:38.696] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:38:38.712] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:38:38.727] [INFO] cheese - inserting 1000 documents. first: Double skin façades and last: Template:W&J -[2018-02-13T00:38:38.795] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:38:38.850] [INFO] cheese - inserting 1000 documents. first: Category:Flags of Italy and last: Waajeed -[2018-02-13T00:38:38.883] [INFO] cheese - inserting 1000 documents. first: Nepal and Newar Community and last: Osemotor -[2018-02-13T00:38:38.904] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:38:38.936] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:38:39.296] [INFO] cheese - inserting 1000 documents. first: 1992–93 Alpenliga season and last: Kolestan Mahmoud -[2018-02-13T00:38:39.336] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:38:39.459] [INFO] cheese - inserting 1000 documents. first: Acadiana Regional Airport and last: Wikipedia:Version 1.0 Editorial Team/Mammal articles by quality/16 -[2018-02-13T00:38:39.534] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2010–11 AFC Wimbledon season and last: Olenecamptus strigosus strigosus -[2018-02-13T00:38:39.547] [INFO] cheese - inserting 1000 documents. first: Kiev City Hall and last: Portal:Biography/Selected biography arts/1 -[2018-02-13T00:38:39.565] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:38:39.609] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T00:38:39.616] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:38:39.711] [INFO] cheese - inserting 1000 documents. first: Template:Authoronlinesource2004 and last: Kumahachi -[2018-02-13T00:38:39.725] [INFO] cheese - inserting 1000 documents. first: Emu (beer) and last: Megan Mullally Show -[2018-02-13T00:38:39.783] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T00:38:39.817] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:38:39.908] [INFO] cheese - inserting 1000 documents. first: Kolestan Mahmood and last: Category:Protected areas of Sabine County, Texas -[2018-02-13T00:38:39.954] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:38:40.189] [INFO] cheese - inserting 1000 documents. first: Izusan Jinja and last: Jelle de bock -[2018-02-13T00:38:40.381] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:38:40.388] [INFO] cheese - inserting 1000 documents. first: Olenecamptus lineatus and last: Draft:Charles Harris -[2018-02-13T00:38:40.547] [INFO] cheese - inserting 1000 documents. first: Owletts and last: Wikipedia:WikiProject Computational Biology/ISCB competition announcement 2013/Notifications -[2018-02-13T00:38:40.558] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:38:40.864] [INFO] cheese - inserting 1000 documents. first: Cake walk and last: Dinwitty, VA -[2018-02-13T00:38:41.291] [INFO] cheese - batch complete in: 1.671 secs -[2018-02-13T00:38:41.360] [INFO] cheese - inserting 1000 documents. first: 7 Deadly Wonders and last: Rothenfels -[2018-02-13T00:38:41.613] [INFO] cheese - inserting 1000 documents. first: 2006–07 Temple Owls men's basketball team and last: Andrew Koenig (actor) -[2018-02-13T00:38:41.663] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Denbigh Town and last: Jundiuvira River -[2018-02-13T00:38:41.699] [INFO] cheese - batch complete in: 1.882 secs -[2018-02-13T00:38:41.691] [INFO] cheese - batch complete in: 1.907 secs -[2018-02-13T00:38:41.769] [INFO] cheese - inserting 1000 documents. first: Godfrey II, Count of Esch and last: Plinio Antolini -[2018-02-13T00:38:41.791] [INFO] cheese - batch complete in: 1.837 secs -[2018-02-13T00:38:41.850] [INFO] cheese - batch complete in: 1.469 secs -[2018-02-13T00:38:41.854] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T00:38:42.075] [INFO] cheese - inserting 1000 documents. first: PEK Airport and last: Cardy formula -[2018-02-13T00:38:42.236] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T00:38:42.332] [INFO] cheese - inserting 1000 documents. first: Cursillo Movement and last: Developmental science -[2018-02-13T00:38:42.349] [INFO] cheese - inserting 1000 documents. first: Rolf Apitzsch and last: Template:OTRS identity -[2018-02-13T00:38:42.365] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:38:42.403] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:42.493] [INFO] cheese - inserting 1000 documents. first: Ralph Ginzberg and last: Roman Catholic Archdiocese of Antequera, Oaxaca -[2018-02-13T00:38:42.558] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/JasenleeSandbox and last: FleetCenter -[2018-02-13T00:38:42.576] [INFO] cheese - inserting 1000 documents. first: Juquiá River and last: Antipope Innocent -[2018-02-13T00:38:42.601] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:38:42.753] [INFO] cheese - inserting 1000 documents. first: Anastasios Sidiropoulos and last: Surgical sealant film -[2018-02-13T00:38:42.763] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:38:42.768] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:38:42.855] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:38:42.946] [INFO] cheese - inserting 1000 documents. first: Satu Lung and last: 2001–02 EEHL season -[2018-02-13T00:38:42.977] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:38:42.983] [INFO] cheese - inserting 1000 documents. first: Template:Ritesh Sidhwani and last: Template:Five pillars box -[2018-02-13T00:38:43.077] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:38:43.377] [INFO] cheese - inserting 1000 documents. first: MC (hip hop) and last: Template:Municipalities of the district of Kreuzlingen -[2018-02-13T00:38:43.392] [INFO] cheese - inserting 1000 documents. first: Scottish Conservative and Unionist Students and last: Rock N' Roll Climber -[2018-02-13T00:38:43.424] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:38:43.435] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:38:43.454] [INFO] cheese - inserting 1000 documents. first: Florence Campo di Marte and last: Heart & Soul (Bad Boys Blue album) -[2018-02-13T00:38:43.592] [INFO] cheese - inserting 1000 documents. first: Southeastern xanthurus rat and last: TB 191 -[2018-02-13T00:38:43.596] [INFO] cheese - inserting 1000 documents. first: List of people from Ottawa and last: Desmonds -[2018-02-13T00:38:43.597] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:38:43.697] [INFO] cheese - inserting 1000 documents. first: Category:Electrical engineering organizations and last: Category:Buildings and structures in Narragansett, Rhode Island -[2018-02-13T00:38:43.700] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:38:43.706] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:38:43.806] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:38:43.955] [INFO] cheese - inserting 1000 documents. first: Al Kawr and last: Silentiarius -[2018-02-13T00:38:43.994] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:38:44.039] [INFO] cheese - inserting 1000 documents. first: Community of St. Francis and last: Four Pennies -[2018-02-13T00:38:44.046] [INFO] cheese - inserting 1000 documents. first: Template:Infobox South African subplace 2011/cleanup and last: Wikipedia:Articles for deletion/Felt ball rug -[2018-02-13T00:38:44.054] [INFO] cheese - inserting 1000 documents. first: Portal:Bahamas/box-footer and last: Al Wyg -[2018-02-13T00:38:44.095] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:38:44.100] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:38:44.132] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:38:44.272] [INFO] cheese - inserting 1000 documents. first: Russian doping and last: Mausolea (plant) -[2018-02-13T00:38:44.332] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:44.369] [INFO] cheese - inserting 1000 documents. first: Qusays and last: A-Wearying for You -[2018-02-13T00:38:44.401] [INFO] cheese - inserting 1000 documents. first: Yuriy Kravchenko and last: Dova di Predappio -[2018-02-13T00:38:44.612] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:38:44.727] [INFO] cheese - inserting 1000 documents. first: ...That's The Way it Is and last: File:All My Life Billy Joel.jpg -[2018-02-13T00:38:44.748] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:38:44.912] [INFO] cheese - inserting 1000 documents. first: Herath and last: Real time world war II -[2018-02-13T00:38:44.954] [INFO] cheese - inserting 1000 documents. first: Universitas Kristen Petra and last: C.F. Jayne -[2018-02-13T00:38:45.139] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:38:45.176] [INFO] cheese - inserting 1000 documents. first: First flight and last: Jack Edwards (footballer, born 1929) -[2018-02-13T00:38:45.279] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T00:38:45.367] [INFO] cheese - batch complete in: 6.806 secs -[2018-02-13T00:38:45.472] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T00:38:45.664] [INFO] cheese - inserting 1000 documents. first: Hwætberht and last: Church of the Annunciation of Our Lady of the Newarke, Leicester -[2018-02-13T00:38:45.852] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T00:38:45.864] [INFO] cheese - inserting 1000 documents. first: CCs2O3 and last: Weldon Memorial Prize -[2018-02-13T00:38:45.981] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:38:46.198] [INFO] cheese - inserting 1000 documents. first: C. F. Jayne and last: Wikipedia:WikiProject Spam/LinkReports/islamic-treatment.blogspot.com -[2018-02-13T00:38:46.321] [INFO] cheese - inserting 1000 documents. first: Category:698 in Asia and last: FAFSA position -[2018-02-13T00:38:46.414] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T00:38:46.506] [INFO] cheese - inserting 1000 documents. first: 2000 European Athletics Indoor Championships and last: Jacek Sieka -[2018-02-13T00:38:46.603] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T00:38:46.609] [INFO] cheese - batch complete in: 1.861 secs -[2018-02-13T00:38:46.734] [INFO] cheese - inserting 1000 documents. first: File:School of Rock poster.jpg and last: 2007-08 FA Cup qualifying rounds -[2018-02-13T00:38:46.811] [INFO] cheese - inserting 1000 documents. first: Toshihisa Izawa and last: National M. K. Čiurlionis School of Art -[2018-02-13T00:38:46.915] [INFO] cheese - batch complete in: 1.443 secs -[2018-02-13T00:38:46.956] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T00:38:47.020] [INFO] cheese - inserting 1000 documents. first: Intellij idea and last: Wikipedia:WikiProject Spam/LinkReports/kivc.com -[2018-02-13T00:38:47.094] [INFO] cheese - inserting 1000 documents. first: Alexey Andreevich and last: Ar Rukayb -[2018-02-13T00:38:47.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nick Seddon and last: Carlos Navarrete Ruiz -[2018-02-13T00:38:47.173] [INFO] cheese - batch complete in: 1.806 secs -[2018-02-13T00:38:47.285] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T00:38:47.309] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:38:47.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/islamic-treatment.blogspot.com and last: String-figure -[2018-02-13T00:38:47.641] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T00:38:47.765] [INFO] cheese - inserting 1000 documents. first: Category:Locus Award for Best Short Story winning works and last: Francisco Gatinho -[2018-02-13T00:38:47.779] [INFO] cheese - inserting 1000 documents. first: Corazón salvaje (novel) and last: Matt Foley -[2018-02-13T00:38:47.884] [INFO] cheese - inserting 1000 documents. first: Generals' Putsch and last: Category:Neosittidae -[2018-02-13T00:38:47.961] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T00:38:47.970] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:38:48.074] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:38:48.148] [INFO] cheese - inserting 1000 documents. first: Evange and last: Buchelberg -[2018-02-13T00:38:48.183] [INFO] cheese - inserting 1000 documents. first: PRDX6 and last: La hija de dios -[2018-02-13T00:38:48.303] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T00:38:48.301] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T00:38:48.345] [INFO] cheese - inserting 1000 documents. first: Ard Ar Raydah and last: Man v. Food (season 2) -[2018-02-13T00:38:48.462] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T00:38:48.651] [INFO] cheese - inserting 1000 documents. first: Jure Balažič and last: List of songs produced by Ester Dean -[2018-02-13T00:38:48.690] [INFO] cheese - inserting 1000 documents. first: La hora de la papa and last: I-Shou University -[2018-02-13T00:38:48.732] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:38:48.736] [INFO] cheese - inserting 1000 documents. first: Millennium (series) and last: 1963–64 FA Cup Qualifying Rounds -[2018-02-13T00:38:48.748] [INFO] cheese - inserting 1000 documents. first: Dean Holden and last: Timeline of the 2006 Lebanon War -[2018-02-13T00:38:48.775] [INFO] cheese - batch complete in: 1.134 secs -[2018-02-13T00:38:48.871] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:38:48.892] [INFO] cheese - inserting 1000 documents. first: Jumbo Pictures and last: Adrar province, Algeria -[2018-02-13T00:38:48.914] [INFO] cheese - inserting 1000 documents. first: Reyhan Seker and last: India–Iceland relations -[2018-02-13T00:38:48.914] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T00:38:49.025] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:38:49.081] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:38:49.142] [INFO] cheese - inserting 1000 documents. first: Anatoliy Shelest and last: Miss Peru 2009 -[2018-02-13T00:38:49.230] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:38:49.311] [INFO] cheese - inserting 1000 documents. first: Gi Hyeong-do and last: Hoboken Cemetery, North Bergen -[2018-02-13T00:38:49.453] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:38:49.566] [INFO] cheese - inserting 1000 documents. first: NCR3 and last: HSD17B2 -[2018-02-13T00:38:49.594] [INFO] cheese - inserting 1000 documents. first: 1962–63 FA Cup Qualifying Rounds and last: United Nations Security Council Resolution 2098 -[2018-02-13T00:38:49.671] [INFO] cheese - inserting 1000 documents. first: Standing Buddha and last: Adam Pierce -[2018-02-13T00:38:49.741] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:38:49.746] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:38:49.869] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:38:50.095] [INFO] cheese - inserting 1000 documents. first: Iceland - India relations and last: Pitch aggregate -[2018-02-13T00:38:50.192] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T00:38:50.347] [INFO] cheese - inserting 1000 documents. first: Saint Vinny's and last: Von Boguslawski -[2018-02-13T00:38:50.354] [INFO] cheese - inserting 1000 documents. first: S-3B Viking and last: Alpha Jamma Omega -[2018-02-13T00:38:50.377] [INFO] cheese - inserting 1000 documents. first: Template:Disambigtalk and last: Herendeşti -[2018-02-13T00:38:50.424] [INFO] cheese - inserting 1000 documents. first: Category:2016 Summer Paralympics football 7-a-side convenience templates and last: Category:Women members of the Swiss Federal Council -[2018-02-13T00:38:50.447] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:38:50.480] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T00:38:50.551] [INFO] cheese - inserting 1000 documents. first: Gogli body and last: Lasdikas, Greece -[2018-02-13T00:38:50.584] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T00:38:50.590] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:38:50.768] [INFO] cheese - inserting 1000 documents. first: Katuysha and last: Besserer -[2018-02-13T00:38:50.844] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:38:50.864] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T00:38:51.362] [INFO] cheese - inserting 1000 documents. first: Relax-A-Cisor and last: Debabrata Barua -[2018-02-13T00:38:51.463] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:38:51.559] [INFO] cheese - inserting 1000 documents. first: Herendesti and last: Kurilsky Urban Okrug -[2018-02-13T00:38:51.574] [INFO] cheese - inserting 1000 documents. first: Category:AD 9 births and last: XNA Studio -[2018-02-13T00:38:51.597] [INFO] cheese - inserting 1000 documents. first: Boguslavsky and last: Cities Build On Sand -[2018-02-13T00:38:51.744] [INFO] cheese - inserting 1000 documents. first: University College Galway R.F.C. and last: Corruption in Slovenia -[2018-02-13T00:38:51.763] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T00:38:51.806] [INFO] cheese - inserting 1000 documents. first: HomeServices of America and last: Pinkney's Point -[2018-02-13T00:38:51.821] [INFO] cheese - batch complete in: 1.374 secs -[2018-02-13T00:38:51.839] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T00:38:52.001] [INFO] cheese - inserting 1000 documents. first: Jeremy Koz and last: Complement component 5 -[2018-02-13T00:38:52.109] [INFO] cheese - batch complete in: 1.917 secs -[2018-02-13T00:38:52.113] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T00:38:52.198] [INFO] cheese - batch complete in: 1.354 secs -[2018-02-13T00:38:52.579] [INFO] cheese - inserting 1000 documents. first: Philomath, Indiana and last: Lutch 5V -[2018-02-13T00:38:52.713] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:38:52.827] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Winer and last: IFTU -[2018-02-13T00:38:52.866] [INFO] cheese - inserting 1000 documents. first: Class Of 98 and last: Čistejov -[2018-02-13T00:38:52.873] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:38:52.957] [INFO] cheese - inserting 1000 documents. first: Bromus secalinus and last: Bellemare -[2018-02-13T00:38:52.961] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T00:38:52.976] [INFO] cheese - inserting 1000 documents. first: 2005–06 MŽRKL season and last: Australia Olympic football team -[2018-02-13T00:38:53.013] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:38:53.136] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:38:53.473] [INFO] cheese - inserting 1000 documents. first: England and Wales Greens and last: File:88th Street.jpg -[2018-02-13T00:38:53.483] [INFO] cheese - inserting 1000 documents. first: Nash-Kuiper theorem and last: National Gallery of Modern Art -[2018-02-13T00:38:53.605] [INFO] cheese - batch complete in: 1.406 secs -[2018-02-13T00:38:53.616] [INFO] cheese - inserting 1000 documents. first: Category:Sports governing bodies in Iran and last: National association of collegiate directors of athletics -[2018-02-13T00:38:53.709] [INFO] cheese - batch complete in: 1.87 secs -[2018-02-13T00:38:53.775] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:38:53.802] [INFO] cheese - inserting 1000 documents. first: Luch-5V and last: Cbb17 -[2018-02-13T00:38:53.825] [INFO] cheese - inserting 1000 documents. first: Chantal Osborne and last: Architect's World -[2018-02-13T00:38:53.932] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T00:38:53.951] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:38:54.015] [INFO] cheese - inserting 1000 documents. first: FIA WTCC Race of Sweden and last: File:Only You Can Love Me This Way .png -[2018-02-13T00:38:54.059] [INFO] cheese - inserting 1000 documents. first: Luscombe Aircraft Corporation and last: Kabiru'iyeh -[2018-02-13T00:38:54.125] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T00:38:54.215] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T00:38:54.266] [INFO] cheese - inserting 1000 documents. first: National association of colored women and last: National institute of statistics and census of nicaragua -[2018-02-13T00:38:54.296] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:38:54.505] [INFO] cheese - inserting 1000 documents. first: Atalanta (Bottiaea) and last: Faroese crown -[2018-02-13T00:38:54.565] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 452001-453000 and last: Category:Far-right politics in Zimbabwe -[2018-02-13T00:38:54.565] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:38:54.582] [INFO] cheese - inserting 1000 documents. first: Dharmaa (2010 film) and last: Asymmetric synthesis -[2018-02-13T00:38:54.619] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:38:54.638] [INFO] cheese - inserting 1000 documents. first: National institute of technology calicut and last: Apache Peak (Arizona) -[2018-02-13T00:38:54.650] [INFO] cheese - inserting 1000 documents. first: Water toilet and last: Weierstrass factorization theorem -[2018-02-13T00:38:54.663] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:38:54.666] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:38:54.678] [INFO] cheese - inserting 1000 documents. first: Bayt Ar Rumaym and last: Edwin Tolton -[2018-02-13T00:38:54.740] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T00:38:54.760] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:38:54.808] [INFO] cheese - inserting 1000 documents. first: Salutation, Hammersmith and last: Category:809 in Asia -[2018-02-13T00:38:54.875] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:38:55.011] [INFO] cheese - inserting 1000 documents. first: José Benlliure Gil and last: Ace Ventura: The CD-Rom Game -[2018-02-13T00:38:55.039] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Nambashag and last: Moses Griffiths -[2018-02-13T00:38:55.061] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:38:55.100] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:38:55.159] [INFO] cheese - inserting 1000 documents. first: The Grafting of Life and last: M. Ramachandran -[2018-02-13T00:38:55.178] [INFO] cheese - inserting 1000 documents. first: Unbiased rendering and last: Mesoraca, Italy -[2018-02-13T00:38:55.219] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:38:55.263] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:38:55.447] [INFO] cheese - inserting 1000 documents. first: File:Applestoreginza.jpg and last: Anami Narayan Roy -[2018-02-13T00:38:55.462] [INFO] cheese - inserting 1000 documents. first: Glenageary train station and last: 2002 U.S. Open (tennis) -[2018-02-13T00:38:55.472] [INFO] cheese - inserting 1000 documents. first: Serbian Uprisings and last: Melvin Fitting -[2018-02-13T00:38:55.521] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:38:55.543] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:38:55.556] [INFO] cheese - inserting 1000 documents. first: Category:Works about Algeria and last: WiFi Internet -[2018-02-13T00:38:55.564] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:38:55.639] [INFO] cheese - inserting 1000 documents. first: De grønne pigespejdere, Danmark and last: Pressing stone -[2018-02-13T00:38:55.648] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:38:55.750] [INFO] cheese - inserting 1000 documents. first: Indian cricket team in the West Indies in 2017 and last: The Manassa Mauler -[2018-02-13T00:38:55.755] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:38:55.862] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/yubik.clan.su and last: Budala Gong -[2018-02-13T00:38:55.858] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:38:56.053] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:38:56.371] [INFO] cheese - inserting 1000 documents. first: Bahrud, Yazd and last: Observation arc -[2018-02-13T00:38:56.461] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:38:56.603] [INFO] cheese - inserting 1000 documents. first: Télimélé and last: Zeidae -[2018-02-13T00:38:56.621] [INFO] cheese - inserting 1000 documents. first: Jimmy Townley and last: Chalfont and Latimer train station -[2018-02-13T00:38:56.654] [INFO] cheese - inserting 1000 documents. first: Battle of Kars (disambiguation) and last: Dimensional timber -[2018-02-13T00:38:56.661] [INFO] cheese - inserting 1000 documents. first: Poisonous snakes and last: Group litigation order -[2018-02-13T00:38:56.670] [INFO] cheese - inserting 1000 documents. first: Category:Romanian child actors and last: Category:Sexuality activists -[2018-02-13T00:38:56.691] [INFO] cheese - batch complete in: 1.17 secs -[2018-02-13T00:38:56.726] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T00:38:56.773] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:38:56.783] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:38:56.799] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T00:38:56.992] [INFO] cheese - inserting 1000 documents. first: MYBBP1A and last: List of awards and nominations received by Raphael -[2018-02-13T00:38:57.138] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T00:38:57.291] [INFO] cheese - inserting 1000 documents. first: István Sági and last: Judicial system of the Bahamas -[2018-02-13T00:38:57.364] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:38:57.457] [INFO] cheese - inserting 1000 documents. first: Norman Shaw and last: Category:Taiwanese female golfers -[2018-02-13T00:38:57.501] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:38:57.545] [INFO] cheese - inserting 1000 documents. first: Peter Sundström and last: Lucius Quintius Cincinnatus -[2018-02-13T00:38:57.548] [INFO] cheese - inserting 1000 documents. first: Dechang County and last: Yevgeni Aleksandrovich Smirnov (born 1986) -[2018-02-13T00:38:57.585] [INFO] cheese - inserting 1000 documents. first: Civic-Military Directory and last: James Hyslop -[2018-02-13T00:38:57.608] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:38:57.614] [INFO] cheese - inserting 1000 documents. first: IMP3 and last: Natural resource management region -[2018-02-13T00:38:57.632] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:38:57.676] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:38:57.721] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:57.864] [INFO] cheese - inserting 1000 documents. first: Phodopus sungorus and last: Bovo Book -[2018-02-13T00:38:57.902] [INFO] cheese - inserting 1000 documents. first: Court system of the Bahamas and last: Tobeluk vs Lind -[2018-02-13T00:38:57.946] [INFO] cheese - inserting 1000 documents. first: Natural science and technical academy isny and last: Networked and electronic media -[2018-02-13T00:38:57.958] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:38:57.963] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T00:38:57.973] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:38:58.073] [INFO] cheese - inserting 1000 documents. first: Simon Martirosyan and last: Liam Silke -[2018-02-13T00:38:58.101] [INFO] cheese - inserting 1000 documents. first: Revision Quest and last: Ameer Zeb Khan -[2018-02-13T00:38:58.136] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:38:58.151] [INFO] cheese - inserting 1000 documents. first: Jim Fitzsimons and last: Doug Lee -[2018-02-13T00:38:58.210] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:38:58.227] [INFO] cheese - inserting 1000 documents. first: Oleg of drelinia and last: New world warbler -[2018-02-13T00:38:58.249] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:38:58.271] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:38:58.327] [INFO] cheese - inserting 1000 documents. first: Template:Hugo Award Best Novelette and last: Wikipedia:WikiProject Spam/Local/patriotledger.com -[2018-02-13T00:38:58.424] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:38:58.521] [INFO] cheese - inserting 1000 documents. first: Urszula Teresa Mniszech and last: Template:Infobox exam -[2018-02-13T00:38:58.546] [INFO] cheese - inserting 1000 documents. first: One fine day in the middle of the night and last: Plogonnec -[2018-02-13T00:38:58.599] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:38:58.652] [INFO] cheese - inserting 1000 documents. first: File:DetailofMusicWG.jpg and last: Monterrondo -[2018-02-13T00:38:58.607] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:38:58.742] [INFO] cheese - inserting 1000 documents. first: Aerolimousine and last: Wikipedia:Articles for deletion/Nur Amalina Che Bakri -[2018-02-13T00:38:58.793] [INFO] cheese - inserting 1000 documents. first: E. M. Tucker and last: Asociación Hondureña de Tiro Práctico -[2018-02-13T00:38:58.801] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:38:58.842] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:38:58.852] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:38:58.924] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Devout Christian and last: Category:British Columbian actors -[2018-02-13T00:38:58.962] [INFO] cheese - inserting 1000 documents. first: Nice jewish boy and last: Prime Minister parodies (Private Eye) -[2018-02-13T00:38:58.981] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:38:59.003] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:38:59.052] [INFO] cheese - inserting 1000 documents. first: Upper Scorpius association and last: Amurru (disambiguation) -[2018-02-13T00:38:59.128] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:38:59.184] [INFO] cheese - inserting 1000 documents. first: Template:Krantikari Manuwadi Morcha/meta/shortname and last: Unknown (1988 anthology) -[2018-02-13T00:38:59.236] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:59.341] [INFO] cheese - inserting 1000 documents. first: Category:Sports organisations of Honduras and last: Category:1980 in women's sport -[2018-02-13T00:38:59.350] [INFO] cheese - inserting 1000 documents. first: Myrmokata and last: Edge of Madness -[2018-02-13T00:38:59.405] [INFO] cheese - inserting 1000 documents. first: B3105 road and last: Veyyil -[2018-02-13T00:38:59.416] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:38:59.430] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:59.486] [INFO] cheese - inserting 1000 documents. first: Action of 19 February 1807 and last: United Airlines Flight 811 -[2018-02-13T00:38:59.486] [INFO] cheese - inserting 1000 documents. first: Anabad (disambiguation) and last: She Still Comes Around (To Love What's Left of Me) -[2018-02-13T00:38:59.491] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:38:59.510] [INFO] cheese - inserting 1000 documents. first: Rajkot Urban Development Authority and last: Plouvorn -[2018-02-13T00:38:59.545] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:38:59.565] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:38:59.580] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:38:59.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Antonio Cabral de Melo and last: Izabad -[2018-02-13T00:38:59.698] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:38:59.793] [INFO] cheese - inserting 1000 documents. first: Category:1981 in women's sport and last: Schweizerhalle -[2018-02-13T00:38:59.856] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:38:59.911] [INFO] cheese - inserting 1000 documents. first: Linaria bipartita and last: W. Rooseboom -[2018-02-13T00:39:00.025] [INFO] cheese - inserting 1000 documents. first: Jeff Pearce (musician) and last: William Wallingford -[2018-02-13T00:39:00.081] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:39:00.102] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:39:00.237] [INFO] cheese - inserting 1000 documents. first: Gelao (language) and last: File:Jigsawcomfortingamanda.PNG -[2018-02-13T00:39:00.314] [INFO] cheese - inserting 1000 documents. first: Multisynthetase complex auxiliary component p38 and last: Kalogréza Railway Station -[2018-02-13T00:39:00.375] [INFO] cheese - inserting 1000 documents. first: Grubelić and last: Stopping digging -[2018-02-13T00:39:00.402] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:39:00.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Evolution of the Wizarding World and last: Su Duko -[2018-02-13T00:39:00.440] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:39:00.444] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:39:00.527] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T00:39:00.545] [INFO] cheese - inserting 1000 documents. first: Garona Halforcen and last: Eunidia transversevittata -[2018-02-13T00:39:00.595] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:39:00.722] [INFO] cheese - inserting 1000 documents. first: File:AChaosOfFlowers1988Cover.jpg and last: Saltuklu -[2018-02-13T00:39:00.728] [INFO] cheese - inserting 1000 documents. first: Linquan County and last: Victor Burgin: Objets Temporels -[2018-02-13T00:39:00.780] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:39:00.805] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:39:01.180] [INFO] cheese - inserting 1000 documents. first: Heliostibes electrica and last: Reshkuiyeh -[2018-02-13T00:39:01.204] [INFO] cheese - inserting 1000 documents. first: Blow Away and last: Wikipedia:Articles for deletion/Harold Donald Hopkins -[2018-02-13T00:39:01.205] [INFO] cheese - inserting 1000 documents. first: Quarterfinals and last: Yetman -[2018-02-13T00:39:01.241] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:39:01.267] [INFO] cheese - inserting 1000 documents. first: Eunidia trialbofasciata and last: Digha–Sonepur rail–cum-road bridge -[2018-02-13T00:39:01.290] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:39:01.303] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:39:01.336] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:39:01.403] [INFO] cheese - inserting 1000 documents. first: Rex Buckland and last: Greg Cipes -[2018-02-13T00:39:01.433] [INFO] cheese - inserting 1000 documents. first: Stöd 2 and last: Template:Opposition (parliamentary)/meta/shortname -[2018-02-13T00:39:01.445] [INFO] cheese - inserting 1000 documents. first: Stáisiún Ros Eó agus Lusca and last: LA Gigolo -[2018-02-13T00:39:01.504] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:39:01.568] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:39:01.580] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:39:01.810] [INFO] cheese - inserting 1000 documents. first: Vaziri, Yazd and last: Chah-e Amur Matal'at -[2018-02-13T00:39:01.835] [INFO] cheese - inserting 1000 documents. first: Getz/Gilberto '76 and last: File:Larry Adler The Glory of Gershwin album cover.jpg -[2018-02-13T00:39:01.863] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:39:01.876] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:39:01.921] [INFO] cheese - inserting 1000 documents. first: Yū Koyama and last: Revanchisme -[2018-02-13T00:39:01.976] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:39:02.063] [INFO] cheese - inserting 1000 documents. first: Operation Kingpin and last: Martin Prusek -[2018-02-13T00:39:02.105] [INFO] cheese - inserting 1000 documents. first: Jurkovic and last: Ključ -[2018-02-13T00:39:02.112] [INFO] cheese - inserting 1000 documents. first: File:MajGenAide.jpg and last: Wallengrenia -[2018-02-13T00:39:02.121] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:39:02.162] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:39:02.178] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:39:02.187] [INFO] cheese - inserting 1000 documents. first: Norman and medieval london and last: Novi di modena -[2018-02-13T00:39:02.223] [INFO] cheese - inserting 1000 documents. first: Karl Friedrich Hieronymus, Baron von Münchhausen and last: Hitler's Terror Weapons -[2018-02-13T00:39:02.245] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:39:02.285] [INFO] cheese - inserting 1000 documents. first: KVOU-FM and last: Template:Bharatiya Lok Tantrik Mazdoor Dal/meta/shortname -[2018-02-13T00:39:02.316] [INFO] cheese - inserting 1000 documents. first: Quai Jacques-Cartier and last: Recopa Sudamericana 2017 -[2018-02-13T00:39:02.347] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:39:02.377] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:39:02.392] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:39:02.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Unreferenced BLP Rescue/March 2011 and last: E.8/47 -[2018-02-13T00:39:02.620] [INFO] cheese - inserting 1000 documents. first: Novo hopovo monastery and last: Ivan Owen -[2018-02-13T00:39:02.638] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:39:02.700] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:39:02.746] [INFO] cheese - inserting 1000 documents. first: Template:Indian Bahujan Samajwadi Party/meta/shortname and last: Food vessel (disambiguation) -[2018-02-13T00:39:02.762] [INFO] cheese - inserting 1000 documents. first: Deep Snow and last: Category:Minas Gerais geography stubs -[2018-02-13T00:39:02.824] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:39:02.869] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:39:03.114] [INFO] cheese - inserting 1000 documents. first: Proposed language families and last: Baron Gauch -[2018-02-13T00:39:03.170] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:39:03.233] [INFO] cheese - inserting 1000 documents. first: Subgame perfect nash equilibrium and last: Pentimento -[2018-02-13T00:39:03.325] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:39:03.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Charles Strickland (General Superintendent) and last: Meta-systems -[2018-02-13T00:39:03.497] [INFO] cheese - inserting 1000 documents. first: De Delft and last: Kongudi -[2018-02-13T00:39:03.498] [INFO] cheese - inserting 1000 documents. first: Frank Simpson (disambiguation) and last: WELG (AM) -[2018-02-13T00:39:03.506] [INFO] cheese - inserting 1000 documents. first: Warrenohesperia and last: Legal interpretation -[2018-02-13T00:39:03.559] [INFO] cheese - inserting 1000 documents. first: Mauricelm-Lei Millere and last: Wikipedia:Articles for deletion/List of automotive customizers -[2018-02-13T00:39:03.562] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:39:03.589] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:39:03.608] [INFO] cheese - inserting 1000 documents. first: Prix mondial Cino Del Duca and last: Blackenstein -[2018-02-13T00:39:03.614] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:39:03.645] [INFO] cheese - batch complete in: 1.467 secs -[2018-02-13T00:39:03.647] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:39:03.776] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:39:04.094] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 800 and last: Woodmoor -[2018-02-13T00:39:04.231] [INFO] cheese - inserting 1000 documents. first: Auxiliary organization and last: Mrokocin -[2018-02-13T00:39:04.248] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:39:04.356] [INFO] cheese - inserting 1000 documents. first: The Westies (Irish gang) and last: Hillabee -[2018-02-13T00:39:04.452] [INFO] cheese - inserting 1000 documents. first: Category:NASA people and last: Tufele Faatoia Liamatua -[2018-02-13T00:39:04.377] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:39:04.482] [INFO] cheese - inserting 1000 documents. first: Indoor air and last: Template:Attached KML/Florida State Road 60 -[2018-02-13T00:39:04.549] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:39:04.597] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:39:04.616] [INFO] cheese - inserting 1000 documents. first: Kattathur (South) and last: File:EmpireStateBuildingtotimessquare.JPG -[2018-02-13T00:39:04.678] [INFO] cheese - inserting 1000 documents. first: Lactobacillus reuteri and last: Henry Winfield Watson -[2018-02-13T00:39:04.735] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:39:04.809] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T00:39:04.852] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:39:05.073] [INFO] cheese - inserting 1000 documents. first: Category:Companies established in the 21st century and last: Charles Saint George Cleverly -[2018-02-13T00:39:05.158] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:39:05.193] [INFO] cheese - inserting 1000 documents. first: Category:Lists of landforms of Montana and last: Mariam Matrem -[2018-02-13T00:39:05.241] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:39:05.352] [INFO] cheese - inserting 1000 documents. first: Chawinda, Punjab and last: Category:News media by continent -[2018-02-13T00:39:05.354] [INFO] cheese - inserting 1000 documents. first: Hull North and last: Cacaxtla -[2018-02-13T00:39:05.356] [INFO] cheese - inserting 1000 documents. first: Category:Pre-Raphaelite painters and last: Template:Ligue Inter-Régions de football Groupe Est -[2018-02-13T00:39:05.401] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:39:05.410] [INFO] cheese - inserting 1000 documents. first: J. R. Wasson and last: Bulbophyllum cameronense -[2018-02-13T00:39:05.410] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:39:05.458] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T00:39:05.492] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:39:05.529] [INFO] cheese - inserting 1000 documents. first: Springfield Model 1892–99 and last: Court of Historical Review and Appeal -[2018-02-13T00:39:05.620] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:05.716] [INFO] cheese - inserting 1000 documents. first: File:Kamleshwar reservoir.jpg and last: Latia lateralis -[2018-02-13T00:39:05.758] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:39:05.774] [INFO] cheese - inserting 1000 documents. first: 2016 AFF Championship qualification and last: Joe Luther Smith -[2018-02-13T00:39:05.835] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:39:05.889] [INFO] cheese - inserting 1000 documents. first: William Rowland and last: List of families in South Park -[2018-02-13T00:39:05.909] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gene Langmesser and last: Spirits & Cat Ears -[2018-02-13T00:39:05.934] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum campos-portoi and last: Every Man Should Know -[2018-02-13T00:39:05.943] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:39:05.968] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:39:05.975] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:39:06.126] [INFO] cheese - inserting 1000 documents. first: National Ballistic Missile Defense and last: Wikipedia:Articles for deletion/Tony DiCicco -[2018-02-13T00:39:06.163] [INFO] cheese - inserting 1000 documents. first: Zarska Wies and last: San gregorio nelle alpi -[2018-02-13T00:39:06.226] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:06.276] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:39:06.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject:Architecture/Architecture Forum and last: Fordham Spire -[2018-02-13T00:39:06.390] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:39:06.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Reference 36 and last: Mexican white-lipped frog -[2018-02-13T00:39:06.534] [INFO] cheese - inserting 1000 documents. first: Sharif Beyglu and last: Category:Pakistani nobility -[2018-02-13T00:39:06.645] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:39:06.707] [INFO] cheese - inserting 1000 documents. first: 1963 Daytona 500 and last: Neal Lawrence -[2018-02-13T00:39:06.716] [INFO] cheese - inserting 1000 documents. first: Bill Gay (American football) and last: Panzerkampfwagen III Ausf.H -[2018-02-13T00:39:06.672] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:39:06.782] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:39:06.807] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:39:06.823] [INFO] cheese - inserting 1000 documents. first: San gregorio nude beach and last: Wikipedia:Articles for deletion/Nicholas Thorburn -[2018-02-13T00:39:06.890] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:39:07.198] [INFO] cheese - inserting 1000 documents. first: Ambassador Toshiyuki Takano and last: Darklands (video game) -[2018-02-13T00:39:07.248] [INFO] cheese - inserting 1000 documents. first: Roll Over Protection System and last: LDN (song) -[2018-02-13T00:39:07.256] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:39:07.292] [INFO] cheese - inserting 1000 documents. first: VI Corps (Grande Armée) and last: Petites Heures of Jean, Duc de Berry -[2018-02-13T00:39:07.341] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marie Carter and last: Category:Lists of buildings and structures in Utah -[2018-02-13T00:39:07.373] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:07.369] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T00:39:07.383] [INFO] cheese - inserting 1000 documents. first: List of Little League World Series broadcasters and last: Shinshū -[2018-02-13T00:39:07.459] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:39:07.474] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:39:07.517] [INFO] cheese - inserting 1000 documents. first: Stéphanos I Sidarouss and last: Brenda Hutchinson -[2018-02-13T00:39:07.534] [INFO] cheese - inserting 1000 documents. first: First National Bank of Botswana and last: File:Magee Corp Limit Sign.jpg -[2018-02-13T00:39:07.593] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:39:07.644] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:39:07.879] [INFO] cheese - inserting 1000 documents. first: Petites Heures de Jean de Berry and last: Template:Taxonomy/Istiodactylus -[2018-02-13T00:39:07.953] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:39:08.018] [INFO] cheese - inserting 1000 documents. first: Barrio Logan station and last: Mournful Monday -[2018-02-13T00:39:08.024] [INFO] cheese - inserting 1000 documents. first: Long Range Interceptor and last: Master unit -[2018-02-13T00:39:08.027] [INFO] cheese - inserting 1000 documents. first: Zheleznogorskoye Urban Settlement and last: Nelson Hotel B&B -[2018-02-13T00:39:08.045] [INFO] cheese - inserting 1000 documents. first: John Powell (footballer, born 1892) and last: Setyana Mapasa -[2018-02-13T00:39:08.051] [INFO] cheese - inserting 1000 documents. first: All Through the Night (Tone Lōc song) and last: William Chomsky (1896–1977) -[2018-02-13T00:39:08.073] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:39:08.108] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:39:08.146] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:39:08.242] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:39:08.339] [INFO] cheese - inserting 1000 documents. first: Ping-Pong (rocket) and last: Waudru -[2018-02-13T00:39:08.339] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:39:08.477] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T00:39:08.862] [INFO] cheese - inserting 1000 documents. first: 2011–12 Slovak Cup and last: Roky Moon and BOLT! -[2018-02-13T00:39:08.970] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T00:39:09.012] [INFO] cheese - inserting 1000 documents. first: Reuben Wright House and last: Carol Goodner -[2018-02-13T00:39:09.144] [INFO] cheese - inserting 1000 documents. first: Muhammad Yusuf Kandhalawi and last: Category:Kreis Werro -[2018-02-13T00:39:09.190] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T00:39:09.269] [INFO] cheese - inserting 1000 documents. first: Aston 3:16 and last: Casey Cott -[2018-02-13T00:39:09.272] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T00:39:09.277] [INFO] cheese - inserting 1000 documents. first: Template:In Through the Out Door and last: Joe (editor) -[2018-02-13T00:39:09.336] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T00:39:09.387] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T00:39:09.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture of the day/March 18, 2005 and last: Pioneer Playhouse -[2018-02-13T00:39:09.490] [INFO] cheese - inserting 1000 documents. first: Karl-Marx-Orden and last: Sweet Home Chicago -[2018-02-13T00:39:09.539] [INFO] cheese - batch complete in: 1.392 secs -[2018-02-13T00:39:09.604] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:39:09.659] [INFO] cheese - inserting 1000 documents. first: Alternative Risk Transfer and last: Canaletto (disambiguation) -[2018-02-13T00:39:09.923] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:39:10.177] [INFO] cheese - inserting 1000 documents. first: File:Ringling Intr Arts Festival.jpg and last: Julpe River -[2018-02-13T00:39:10.324] [INFO] cheese - inserting 1000 documents. first: Template:User Wikipedia Ghana and last: 1990 European Athletics Indoor Championships – Women's triple jump -[2018-02-13T00:39:10.349] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:39:10.433] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T00:39:10.487] [INFO] cheese - inserting 1000 documents. first: File:Parinay.jpg and last: Non-road engine -[2018-02-13T00:39:10.558] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T00:39:10.566] [INFO] cheese - inserting 1000 documents. first: Gaps (album) and last: Category:Heads of government of Burundi -[2018-02-13T00:39:10.632] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T00:39:10.633] [INFO] cheese - inserting 1000 documents. first: Edna Independent School District and last: Corinne West -[2018-02-13T00:39:10.678] [INFO] cheese - inserting 1000 documents. first: Korea K-Pop Hot 100 and last: Hickory Grove, Manitowoc County, Wisconsin -[2018-02-13T00:39:10.733] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T00:39:10.834] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:39:10.937] [INFO] cheese - inserting 1000 documents. first: Volcanic pipe and last: Bridgman's thermodynamic equations -[2018-02-13T00:39:11.046] [INFO] cheese - inserting 1000 documents. first: Tomina River and last: Aborolabis kalaktangensis -[2018-02-13T00:39:11.047] [INFO] cheese - batch complete in: 1.508 secs -[2018-02-13T00:39:11.093] [INFO] cheese - inserting 1000 documents. first: Chelmer Valley Riverside and last: Muricauda beolgyonensis -[2018-02-13T00:39:11.105] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:39:11.117] [INFO] cheese - inserting 1000 documents. first: Category:Hispanic and Latino American members of the United States Congress and last: File:Harold Matthews Cup Logo.gif -[2018-02-13T00:39:11.143] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:39:11.196] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:39:11.266] [INFO] cheese - inserting 1000 documents. first: Rumja and last: Margaret of Habsburg -[2018-02-13T00:39:11.318] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:11.345] [INFO] cheese - inserting 1000 documents. first: Glassheart and last: Mohammed AlـMutair -[2018-02-13T00:39:11.454] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:39:11.563] [INFO] cheese - inserting 1000 documents. first: Loo (Wind) and last: Davie Village, Vancouver, California -[2018-02-13T00:39:11.641] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:39:11.666] [INFO] cheese - inserting 1000 documents. first: Aborolabis martensi and last: Ambient rock -[2018-02-13T00:39:11.749] [INFO] cheese - inserting 1000 documents. first: Morona-Santiago stubfoot toad and last: Draft:Maurice Green (virologist) -[2018-02-13T00:39:11.760] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:39:11.770] [INFO] cheese - inserting 1000 documents. first: Shoaib Akhter and last: File:Joan Lui.jpg -[2018-02-13T00:39:11.816] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:39:11.818] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:39:11.889] [INFO] cheese - inserting 1000 documents. first: New York University College of Arts & Science and last: He Has Left Us Alone -[2018-02-13T00:39:11.930] [INFO] cheese - inserting 1000 documents. first: The Sword of the Spirits and last: Reinforced masonry -[2018-02-13T00:39:11.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fatimah Adams and last: Rousset-les-Vignes -[2018-02-13T00:39:11.955] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:39:11.983] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:39:12.004] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:12.085] [INFO] cheese - inserting 1000 documents. first: Category:People from East Devon (district) and last: Nestell Kipp Anderson -[2018-02-13T00:39:12.127] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:39:12.202] [INFO] cheese - inserting 1000 documents. first: Category:Jails in Iowa and last: Wikipedia:WikiProject Spam/LinkReports/ub90.com -[2018-02-13T00:39:12.227] [INFO] cheese - inserting 1000 documents. first: 64079 (number) and last: Mullet head -[2018-02-13T00:39:12.237] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:39:12.258] [INFO] cheese - inserting 1000 documents. first: Category:Scotland national football team venues and last: Museum on the Seam -[2018-02-13T00:39:12.298] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:39:12.339] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:39:12.381] [INFO] cheese - inserting 1000 documents. first: Amanda Rollins and last: Zsolt Gárdonyi -[2018-02-13T00:39:12.402] [INFO] cheese - inserting 1000 documents. first: Rémuzat and last: Juan Schiaretti -[2018-02-13T00:39:12.424] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:39:12.456] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:39:12.469] [INFO] cheese - inserting 1000 documents. first: Acronicta vulpina and last: S.A. Stepanek -[2018-02-13T00:39:12.520] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:39:12.563] [INFO] cheese - inserting 1000 documents. first: Starchild Trilogy and last: Murder of Jessica Lunsford -[2018-02-13T00:39:12.630] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:39:12.643] [INFO] cheese - inserting 1000 documents. first: Category:GIS data companies and last: Amoranto Stadium -[2018-02-13T00:39:12.653] [INFO] cheese - inserting 1000 documents. first: File:Stuntin'LikeMyDaddy.jpg and last: Take as needed for pain -[2018-02-13T00:39:12.683] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:39:12.714] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:39:12.727] [INFO] cheese - inserting 1000 documents. first: Diastatic malt extract and last: Wikipedia:Miscellany for deletion/User:GangstaEB/VandalClinic -[2018-02-13T00:39:12.738] [INFO] cheese - inserting 1000 documents. first: Skeletal muscle sarcoma and last: Portal:Ecology/Selected picture/40 -[2018-02-13T00:39:12.758] [INFO] cheese - inserting 1000 documents. first: Portal:Mexico City and last: Wikipedia:Featured article candidates/Tintin (character)/archive1 -[2018-02-13T00:39:12.778] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:39:12.785] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:39:12.853] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:39:12.937] [INFO] cheese - inserting 1000 documents. first: Take out the trash day and last: Tax forms in the united states -[2018-02-13T00:39:12.980] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:39:13.049] [INFO] cheese - inserting 1000 documents. first: Balmy Alley and last: Wikipedia:Articles for deletion/WebChat Broadcasting System -[2018-02-13T00:39:13.181] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:39:13.260] [INFO] cheese - inserting 1000 documents. first: Scouting in colorado and last: Wikipedia:Today's featured article/May 27, 2008 -[2018-02-13T00:39:13.353] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:39:13.372] [INFO] cheese - inserting 1000 documents. first: Portal:Ecology/Selected picture/41 and last: T. Ramachandran (politician) -[2018-02-13T00:39:13.453] [INFO] cheese - inserting 1000 documents. first: Federico Peliti and last: Thuruthippuram Boat Race -[2018-02-13T00:39:13.454] [INFO] cheese - inserting 1000 documents. first: Senate president pro tempore and last: Judith Tarr -[2018-02-13T00:39:13.462] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:39:13.517] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:39:13.537] [INFO] cheese - inserting 1000 documents. first: Prisons in America and last: Category:2003 in Saudi Arabian sport -[2018-02-13T00:39:13.540] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:39:13.586] [INFO] cheese - inserting 1000 documents. first: Gilardino and last: Carlos Blanco Galindo -[2018-02-13T00:39:13.599] [INFO] cheese - inserting 1000 documents. first: Searching for nena and last: Seekers of the sacred jewel -[2018-02-13T00:39:13.601] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:39:13.637] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:39:13.658] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:39:13.733] [INFO] cheese - inserting 1000 documents. first: Adina, Malda and last: Jay Clayton (critic) -[2018-02-13T00:39:13.800] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:39:13.843] [INFO] cheese - inserting 1000 documents. first: Texas argentine chamber of commerce and last: Lesotho parliamentary election, 2007 -[2018-02-13T00:39:13.864] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:39:13.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Arko Custom and last: Schlafe, schlafe holder, süßer Knabe -[2018-02-13T00:39:13.928] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:39:14.015] [INFO] cheese - inserting 1000 documents. first: Microeurydemus wraniki and last: Guaranty Bank -[2018-02-13T00:39:14.020] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2013 December 23 and last: Ron Dorsey (basketball, born 1948) -[2018-02-13T00:39:14.059] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:39:14.080] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:39:14.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Quantum Repairmen and last: Category:Mayors of places in South Dakota -[2018-02-13T00:39:14.165] [INFO] cheese - inserting 1000 documents. first: Ion Cristoiu and last: Chemical mechanical polishing -[2018-02-13T00:39:14.225] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:39:14.262] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:39:14.271] [INFO] cheese - inserting 1000 documents. first: Covenant halo and last: SEPT8 -[2018-02-13T00:39:14.278] [INFO] cheese - inserting 1000 documents. first: Category:Canadian comedy-drama television series and last: Robert (Mousey) Thompson -[2018-02-13T00:39:14.316] [INFO] cheese - inserting 1000 documents. first: Category:2008 in Washington, D.C. and last: Template:User admin good behaviour -[2018-02-13T00:39:14.331] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:39:14.350] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:39:14.402] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:39:14.664] [INFO] cheese - inserting 1000 documents. first: K249EW and last: File:AB Crowsnest Pass logo.png -[2018-02-13T00:39:14.769] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:39:14.985] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Utah and last: Lake Beysehir -[2018-02-13T00:39:15.025] [INFO] cheese - inserting 1000 documents. first: Category:Film scores by John Zorn and last: Raimundo Dalmacio -[2018-02-13T00:39:15.026] [INFO] cheese - inserting 1000 documents. first: Ransom Room and last: Beehive shelf -[2018-02-13T00:39:15.028] [INFO] cheese - inserting 1000 documents. first: C20H27NO2 and last: National Committee on Foreign Medical Education and Accreditation -[2018-02-13T00:39:15.056] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:39:15.067] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:39:15.106] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:39:15.106] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T00:39:15.197] [INFO] cheese - inserting 1000 documents. first: Template:Carlisle County, Kentucky and last: 60S ribosomal protein L13a -[2018-02-13T00:39:15.226] [INFO] cheese - inserting 1000 documents. first: File:Latias and Latios.png and last: Seaford Head Nature Reserve -[2018-02-13T00:39:15.290] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:39:15.292] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T00:39:15.496] [INFO] cheese - inserting 1000 documents. first: Isidor Kaufman and last: Vladislav Makarkin -[2018-02-13T00:39:15.531] [INFO] cheese - inserting 1000 documents. first: The Ghetto Boys and last: Los Gallardos -[2018-02-13T00:39:15.537] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:39:15.597] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:39:15.653] [INFO] cheese - inserting 1000 documents. first: Category:Vega, Norway and last: File:Ghoraghata Station Newly constructed Overbridge3.jpg -[2018-02-13T00:39:15.663] [INFO] cheese - inserting 1000 documents. first: McDonnell RF-101C Voodoo and last: File:Butler Grizzlies logo.png -[2018-02-13T00:39:15.704] [INFO] cheese - inserting 1000 documents. first: Zastávka (Brno-Country District) and last: File:Sergio Sollima.jpg -[2018-02-13T00:39:15.769] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:39:15.772] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:39:15.794] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T00:39:15.874] [INFO] cheese - inserting 1000 documents. first: 4th Genie Awards and last: Aeropelican Airlines -[2018-02-13T00:39:15.972] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:39:15.998] [INFO] cheese - inserting 1000 documents. first: HMHA1 and last: File:PBB Protein HCN1 image.jpg -[2018-02-13T00:39:16.213] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Uganda members and last: Wikipedia:Featured picture candidates/Oil Platform -[2018-02-13T00:39:16.227] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:39:16.284] [INFO] cheese - inserting 1000 documents. first: Gádor and last: Pseudothecium -[2018-02-13T00:39:16.300] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:39:16.387] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:39:16.461] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 121 and last: Category:1945 in Irish law -[2018-02-13T00:39:16.517] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:39:16.632] [INFO] cheese - inserting 1000 documents. first: Dark Slope Streaks and last: Wikipedia:Help desk/Archives/2011 August 26 -[2018-02-13T00:39:16.666] [INFO] cheese - inserting 1000 documents. first: Sir John Hartopp, 3rd Baronet and last: Sophie Kasaei -[2018-02-13T00:39:16.700] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:39:16.756] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T00:39:16.821] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marcus Fitzgerald and last: File:Railway network schematic map 2009.png -[2018-02-13T00:39:16.841] [INFO] cheese - inserting 1000 documents. first: Equidistant letter sequencing and last: Mottingham railway station -[2018-02-13T00:39:16.895] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:39:16.896] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:39:16.916] [INFO] cheese - inserting 1000 documents. first: OR2AE1 and last: Template:Roanoke Rapids Radio -[2018-02-13T00:39:16.982] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:39:17.005] [INFO] cheese - inserting 1000 documents. first: Alf Garnet and last: File:Image 004.jpg -[2018-02-13T00:39:17.027] [INFO] cheese - inserting 1000 documents. first: Category:1946 in Irish law and last: Municipal Franchise Act 1835 -[2018-02-13T00:39:17.047] [INFO] cheese - inserting 1000 documents. first: Terpsiphone paradisi ceylonensis and last: Hieronymus Verdussen -[2018-02-13T00:39:17.085] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:39:17.096] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:39:17.123] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:39:17.269] [INFO] cheese - inserting 1000 documents. first: Foodweb dynamics and last: Harry Hitchen -[2018-02-13T00:39:17.328] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:39:17.395] [INFO] cheese - inserting 1000 documents. first: Universal Rocket Module and last: Single lens -[2018-02-13T00:39:17.463] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:39:17.503] [INFO] cheese - inserting 1000 documents. first: Sunderland, Mass and last: Big Island (Nunavut) -[2018-02-13T00:39:17.517] [INFO] cheese - inserting 1000 documents. first: Frans Verdussen and last: Dayton-Wright Aerial Coupe -[2018-02-13T00:39:17.548] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:39:17.599] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:39:17.620] [INFO] cheese - inserting 1000 documents. first: Category:Variance and last: Wikipedia:WikiProject Spam/LinkReports/parallaxfilm.com -[2018-02-13T00:39:17.692] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:39:17.864] [INFO] cheese - inserting 1000 documents. first: Johnny White and last: File:RomeSevenHills.JPG -[2018-02-13T00:39:17.931] [INFO] cheese - inserting 1000 documents. first: São Filipe, Cape Verde (municipality) and last: Hogzilla -[2018-02-13T00:39:18.039] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:39:18.098] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T00:39:18.154] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Institute for Effective Education and last: Category:Petrovec Municipality -[2018-02-13T00:39:18.234] [INFO] cheese - inserting 1000 documents. first: Weingut Hermann Donnhoff and last: Template:CheckIP -[2018-02-13T00:39:18.247] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:39:18.335] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:39:18.349] [INFO] cheese - inserting 1000 documents. first: Carmel-by-the-Sea, Ca and last: Alpha-1 adrenergic receptors -[2018-02-13T00:39:18.402] [INFO] cheese - inserting 1000 documents. first: Samoa at the 2011 Pacific Games and last: Alan Kwong-wing Tang -[2018-02-13T00:39:18.436] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:39:18.474] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:39:18.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/parallaxfilm.com and last: Category:Democratic Party (Turkey, current) -[2018-02-13T00:39:18.593] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:39:18.730] [INFO] cheese - inserting 1000 documents. first: Ștefan Iovan and last: W holding -[2018-02-13T00:39:18.773] [INFO] cheese - inserting 1000 documents. first: Template:Fb team White City and last: Category:Rochester Zeniths players -[2018-02-13T00:39:18.791] [INFO] cheese - inserting 1000 documents. first: Jill de Ray and last: M. D. Ramasami -[2018-02-13T00:39:18.793] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:39:18.848] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:39:18.876] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:39:18.882] [INFO] cheese - inserting 1000 documents. first: Portal:Animation/Anniversaries/November/November 10 and last: Donceni -[2018-02-13T00:39:18.920] [INFO] cheese - inserting 1000 documents. first: Kalessin and last: Smokescreen GT -[2018-02-13T00:39:18.938] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:39:18.988] [INFO] cheese - inserting 1000 documents. first: Portal:Film/Selected article/44 and last: San Juan Airport -[2018-02-13T00:39:18.991] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:39:19.082] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:19.095] [INFO] cheese - inserting 1000 documents. first: Lesina (insect) and last: Wikipedia:Articles for deletion/Sheena Benton -[2018-02-13T00:39:19.260] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:39:19.458] [INFO] cheese - inserting 1000 documents. first: Kisfaludy and last: List of species on Severnaya Zemlya -[2018-02-13T00:39:19.461] [INFO] cheese - inserting 1000 documents. first: Serhiy Svetoslavsky and last: File:PNC Music Pavilion Charlotte Logo.jpg -[2018-02-13T00:39:19.472] [INFO] cheese - inserting 1000 documents. first: Friends and Lovers (album) and last: That's My Baby -[2018-02-13T00:39:19.503] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:39:19.514] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:39:19.565] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:39:19.569] [INFO] cheese - inserting 1000 documents. first: Kandili block and last: Seymour (Burn Notice) -[2018-02-13T00:39:19.647] [INFO] cheese - inserting 1000 documents. first: Category:Market houses and last: Wikipedia:Translation/Rohan Palace -[2018-02-13T00:39:19.690] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:39:19.775] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:39:19.850] [INFO] cheese - inserting 1000 documents. first: Brit Lind-Peterson and last: Wikipedia:Wikipedia Signpost/2016-08-04 -[2018-02-13T00:39:19.920] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:39:19.974] [INFO] cheese - inserting 1000 documents. first: 2005 Red Lake shooting and last: Cat Anatomy -[2018-02-13T00:39:20.030] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T00:39:20.100] [INFO] cheese - inserting 1000 documents. first: Princess Tatiana of Leiningen and last: Port BE -[2018-02-13T00:39:20.103] [INFO] cheese - inserting 1000 documents. first: File:LaughLaugh.jpg and last: Solves problem -[2018-02-13T00:39:20.119] [INFO] cheese - inserting 1000 documents. first: File:Leeds City Council logo.jpg and last: Wikipedia:Articles for deletion/Red5 (3rd nomination) -[2018-02-13T00:39:20.140] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:39:20.142] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:39:20.162] [INFO] cheese - inserting 1000 documents. first: Reigne and last: Ramon A. Alcaraz -[2018-02-13T00:39:20.165] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:39:20.217] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:39:20.257] [INFO] cheese - inserting 1000 documents. first: Stony Lonesome, Indiana and last: Hugh White -[2018-02-13T00:39:20.337] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:39:20.359] [INFO] cheese - inserting 1000 documents. first: Template:NavigationPanAmChampionsMAGPB and last: Ho, Ho, Ho, We say Hey, Hey, Hey -[2018-02-13T00:39:20.426] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:39:20.471] [INFO] cheese - inserting 1000 documents. first: File:Love Drunk cover.jpg and last: Singletaxer -[2018-02-13T00:39:20.512] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Selected picture/Week 21, 2014 and last: Braille pattern dots-2368 -[2018-02-13T00:39:20.517] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:39:20.561] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:39:20.595] [INFO] cheese - inserting 1000 documents. first: Category:Convention centres in Singapore and last: Cathedral of St. Mary of the Assumption -[2018-02-13T00:39:20.661] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:39:20.664] [INFO] cheese - inserting 1000 documents. first: Leaving Beirut and last: Pennsylvania's 7th congressional district election, 2006 -[2018-02-13T00:39:20.727] [INFO] cheese - inserting 1000 documents. first: Union of Communist Parties - Communist Party of the Soviet Union and last: Marnand, Switzerland -[2018-02-13T00:39:20.749] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:39:20.764] [INFO] cheese - inserting 1000 documents. first: Roger Bradshaigh Lloyd and last: Jolotca -[2018-02-13T00:39:20.776] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:39:20.842] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:39:20.875] [INFO] cheese - inserting 1000 documents. first: Marvel's Iron Fist and last: Matsuo Ghost Mine -[2018-02-13T00:39:20.926] [INFO] cheese - inserting 1000 documents. first: Category:1060s in Spain and last: O. James Garden -[2018-02-13T00:39:20.932] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:39:20.961] [INFO] cheese - inserting 1000 documents. first: Single-taxers and last: Ekron Airfield -[2018-02-13T00:39:20.975] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:39:21.020] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:39:21.272] [INFO] cheese - inserting 1000 documents. first: Mariya Vladimirovna Romanova and last: Giorgos Patis -[2018-02-13T00:39:21.310] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:39:21.365] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mitch Zamojc and last: Alicante International Airport -[2018-02-13T00:39:21.410] [INFO] cheese - inserting 1000 documents. first: File:Hiller X-18 front.jpg and last: Striation -[2018-02-13T00:39:21.427] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:39:21.471] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeff the Killer and last: Template:WANFL Ladder/1970 -[2018-02-13T00:39:21.517] [INFO] cheese - inserting 1000 documents. first: Amalgamated Society of Dyers, Finishers and Kindred Trades and last: Kurt Heatherley -[2018-02-13T00:39:21.549] [INFO] cheese - inserting 1000 documents. first: C9H13NO and last: Saint Marcouf Islands -[2018-02-13T00:39:21.554] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:39:21.601] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:39:21.710] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:39:21.724] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:39:21.758] [INFO] cheese - inserting 1000 documents. first: Horst Bagdonat and last: Music Cartel Records -[2018-02-13T00:39:21.769] [INFO] cheese - inserting 1000 documents. first: Dollie de Luxe and last: Sedapatti block -[2018-02-13T00:39:21.808] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:39:21.861] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T00:39:22.105] [INFO] cheese - inserting 1000 documents. first: Adolph Marx and last: APT James -[2018-02-13T00:39:22.104] [INFO] cheese - inserting 1000 documents. first: Super Thunder Blade and last: James Mansfield -[2018-02-13T00:39:22.150] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:39:22.189] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:39:22.196] [INFO] cheese - inserting 1000 documents. first: Haemanota croceicauda and last: Template:Belgian football transfers -[2018-02-13T00:39:22.258] [INFO] cheese - inserting 1000 documents. first: Ramberg-Osgood relationship and last: Wikipedia:Articles for deletion/National Junior Hockey League -[2018-02-13T00:39:22.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/University of the Philippines College of Social Work and Community Development and last: Template:Expand Kurmanji -[2018-02-13T00:39:22.354] [INFO] cheese - inserting 1000 documents. first: Lau Siu-kai and last: White Elster -[2018-02-13T00:39:22.359] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:39:22.367] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:39:22.370] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:22.452] [INFO] cheese - inserting 1000 documents. first: International Criminal Court investigation in Democratic Republic of the Congo and last: Alwarthirunagiri block -[2018-02-13T00:39:22.463] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:39:22.508] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:39:22.554] [INFO] cheese - inserting 1000 documents. first: AQ Shipley and last: Anarchy in the U K -[2018-02-13T00:39:22.588] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:39:22.742] [INFO] cheese - inserting 1000 documents. first: Baby,Now That I've Found You and last: Alton R. Waldon Jr. -[2018-02-13T00:39:22.753] [INFO] cheese - inserting 1000 documents. first: Category:Modularity and last: File:Borgund Stave Church in Lærdalen, 2013 June.jpg -[2018-02-13T00:39:22.790] [INFO] cheese - inserting 1000 documents. first: Mixed mating model and last: World of warcraft: Cataclysm -[2018-02-13T00:39:22.809] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Boston/Mass message and last: Darrell Lockhart -[2018-02-13T00:39:22.827] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:39:22.852] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:39:22.910] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:39:22.942] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:39:23.040] [INFO] cheese - inserting 1000 documents. first: Anarchy in the U. K. (Megadeth single) and last: B S Chimni -[2018-02-13T00:39:23.041] [INFO] cheese - inserting 1000 documents. first: Anopheles stephensi and last: Hockey at the 1995 Pan American Games -[2018-02-13T00:39:23.091] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:39:23.152] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:39:23.244] [INFO] cheese - inserting 1000 documents. first: Salvia spathacea and last: Úbeda -[2018-02-13T00:39:23.315] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:39:23.512] [INFO] cheese - inserting 1000 documents. first: Zgârcea River and last: Saint-Oyens, Switzerland -[2018-02-13T00:39:23.518] [INFO] cheese - inserting 1000 documents. first: Castlegar Regional Airport and last: Shishido Baiken -[2018-02-13T00:39:23.525] [INFO] cheese - inserting 1000 documents. first: The Blacherne and last: File:Paganini Horror (1989 film).jpg -[2018-02-13T00:39:23.599] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:39:23.602] [INFO] cheese - inserting 1000 documents. first: Forest Flora of British Burma and last: Template:Campaignbox India 1857 -[2018-02-13T00:39:23.612] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:39:23.624] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:39:23.745] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:39:23.751] [INFO] cheese - inserting 1000 documents. first: Boy Governor and last: Shlomit -[2018-02-13T00:39:23.792] [INFO] cheese - inserting 1000 documents. first: File:Les sous-doués en vacances.jpg and last: Pulitzer Prize for Local General or Spot News reporting -[2018-02-13T00:39:23.873] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:39:23.979] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:39:24.224] [INFO] cheese - inserting 1000 documents. first: Template:Sedgwick County, Colorado and last: Horny like a samurai -[2018-02-13T00:39:24.290] [INFO] cheese - inserting 1000 documents. first: Category:Azerbaijani singer-songwriters and last: Prime Minister (United Kingdom of Great Britain and Northern Ireland) -[2018-02-13T00:39:24.294] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:39:24.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of deaths at the Berlin Wall/archive1 and last: Fundacion Adepal Alcazar -[2018-02-13T00:39:24.345] [INFO] cheese - inserting 1000 documents. first: Indonesian Idol and last: KK (New York City Subway service) -[2018-02-13T00:39:24.352] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:39:24.354] [INFO] cheese - inserting 1000 documents. first: Adhimoolam and last: Electricity sector of the United States -[2018-02-13T00:39:24.393] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:39:24.395] [INFO] cheese - inserting 1000 documents. first: Markov chain mixing time and last: Gabriel Guerra-Mondragón -[2018-02-13T00:39:24.404] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:39:24.449] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:39:24.465] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:39:24.532] [INFO] cheese - inserting 1000 documents. first: St. Jan Berchmans Church, Brussels and last: Sally Jackson (disambiguation) -[2018-02-13T00:39:24.581] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:39:24.643] [INFO] cheese - inserting 1000 documents. first: King's Highway (Brooklyn) and last: Melvyn Goldstein -[2018-02-13T00:39:24.682] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:39:24.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of United States shopping malls by state 2 and last: Pakashticë -[2018-02-13T00:39:24.721] [INFO] cheese - inserting 1000 documents. first: Aerolineas Argentinas Magazine and last: Athletics at the 1990 Commonwealth Games - Men's 1500 metres -[2018-02-13T00:39:24.730] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:39:24.749] [INFO] cheese - inserting 1000 documents. first: 2009 US Open – Boys' Doubles and last: Kamenný Újezd (České Budějovice District) -[2018-02-13T00:39:24.779] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:39:24.797] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:39:24.799] [INFO] cheese - inserting 1000 documents. first: TT (New York City Subway service) and last: Al'Thor -[2018-02-13T00:39:24.855] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:39:24.882] [INFO] cheese - inserting 1000 documents. first: CBMT and last: Category:Albums produced by Don Gallucci -[2018-02-13T00:39:24.921] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:39:24.958] [INFO] cheese - inserting 1000 documents. first: George Guy Dodson and last: The Weather Station -[2018-02-13T00:39:25.003] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:39:25.065] [INFO] cheese - inserting 1000 documents. first: File:IncredibleHulkTVreference.jpg and last: Detours (Sheryl Crow album) -[2018-02-13T00:39:25.103] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:39:25.106] [INFO] cheese - inserting 1000 documents. first: Billy Ngawini and last: Rajeev shukla -[2018-02-13T00:39:25.120] [INFO] cheese - inserting 1000 documents. first: Cheung Ka Long and last: Template:The Box Tops -[2018-02-13T00:39:25.151] [INFO] cheese - inserting 1000 documents. first: Komařice and last: Category:Depression-era mobsters -[2018-02-13T00:39:25.162] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:39:25.173] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:39:25.242] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:39:25.328] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Olean High School shooting and last: Category:Albums produced by King Curtis -[2018-02-13T00:39:25.432] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:39:25.482] [INFO] cheese - inserting 1000 documents. first: Bal Bharati Public School and last: Rsync server -[2018-02-13T00:39:25.566] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:39:25.645] [INFO] cheese - inserting 1000 documents. first: Herrmann, Fernand and last: Sławomir Drabik -[2018-02-13T00:39:25.699] [INFO] cheese - inserting 1000 documents. first: Delphine Depardieu and last: Template:Malaysian general election, 1978 (Penang) -[2018-02-13T00:39:25.714] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Miki Imai (athlete) and last: Wikipedia:Articles for deletion/Pavel Tichon -[2018-02-13T00:39:25.725] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:39:25.739] [INFO] cheese - inserting 1000 documents. first: Nintendo Magazine System: Australia and last: Demba Touré -[2018-02-13T00:39:25.810] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:39:25.845] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:39:25.833] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:39:25.883] [INFO] cheese - inserting 1000 documents. first: Vericeras and last: Wikipedia:WikiProject Spam/LinkReports/hunkaryemekcim.com -[2018-02-13T00:39:25.956] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:39:25.997] [INFO] cheese - inserting 1000 documents. first: Category:Trials in Japan and last: Category:Youngstown articles missing geocoordinate data -[2018-02-13T00:39:26.091] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:39:26.158] [INFO] cheese - inserting 1000 documents. first: John George Spencer-Churchill and last: Antimicrobial agent -[2018-02-13T00:39:26.232] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:39:26.266] [INFO] cheese - inserting 1000 documents. first: Category:Prehistoric pigs and last: Gösta Löfgren -[2018-02-13T00:39:26.317] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Rajshahi District and last: Croft, David -[2018-02-13T00:39:26.317] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:39:26.356] [INFO] cheese - inserting 1000 documents. first: Hessen (ship) and last: Lassik language -[2018-02-13T00:39:26.362] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:26.383] [INFO] cheese - inserting 1000 documents. first: Ramón calderon and last: Headless drummer -[2018-02-13T00:39:26.405] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:39:26.434] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:26.499] [INFO] cheese - inserting 1000 documents. first: Debary, Florida and last: Rrrrrrr!! -[2018-02-13T00:39:26.533] [INFO] cheese - inserting 1000 documents. first: Cauchy–Peano theorem and last: McKim -[2018-02-13T00:39:26.562] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:39:26.605] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:39:26.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stagg Marching Chargers and last: Template:Music-genre-stub -[2018-02-13T00:39:26.758] [INFO] cheese - inserting 1000 documents. first: Eladha, Hora Tu Fotos and last: Gmina Pabianice -[2018-02-13T00:39:26.767] [INFO] cheese - inserting 1000 documents. first: Crosbie, David and last: Wikipedia:Articles for deletion/MobiKwik -[2018-02-13T00:39:26.810] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:39:26.814] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:39:26.826] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:39:26.834] [INFO] cheese - inserting 1000 documents. first: Alexander Basilaia and last: Tim Montez -[2018-02-13T00:39:26.865] [INFO] cheese - inserting 1000 documents. first: Nanjapur, Ranga Reddy district and last: Bocicau -[2018-02-13T00:39:26.886] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:39:26.891] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:39:26.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Siren Song (Erasure song) and last: Category:765 establishments -[2018-02-13T00:39:26.996] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:39:27.043] [INFO] cheese - inserting 1000 documents. first: Cvetan Čurlinov and last: Valkas novads -[2018-02-13T00:39:27.086] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:39:27.222] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Simplilearn and last: Caudron-Renault CR.770 Cyclone -[2018-02-13T00:39:27.253] [INFO] cheese - inserting 1000 documents. first: Dr. Francis Kallarakal and last: RdRand -[2018-02-13T00:39:27.267] [INFO] cheese - inserting 1000 documents. first: 3 (Firehouse album) and last: Template:Kępno County -[2018-02-13T00:39:27.349] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:39:27.359] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:39:27.365] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:39:27.346] [INFO] cheese - inserting 1000 documents. first: Template:Brook Benton and last: Category:1889 establishments in Ohio -[2018-02-13T00:39:27.500] [INFO] cheese - inserting 1000 documents. first: Template:Musical-instrument-stub and last: Jeff Tedford -[2018-02-13T00:39:27.505] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:39:27.575] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:39:27.582] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Boone County, Missouri and last: Template:Fb competition 2009-10 WNLD1 -[2018-02-13T00:39:27.674] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:27.703] [INFO] cheese - inserting 1000 documents. first: Raad-1 / Thunder 1 Artillery and last: Siege of Boonesborough -[2018-02-13T00:39:27.798] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:39:27.863] [INFO] cheese - inserting 1000 documents. first: Pavel Štěpánek and last: Category:Contemporary art magazines -[2018-02-13T00:39:27.908] [INFO] cheese - inserting 1000 documents. first: File:JayIsaac2016.jpeg and last: Telle mère, telle fille -[2018-02-13T00:39:27.913] [INFO] cheese - inserting 1000 documents. first: 2081: A Hopeful View of the Human Future and last: Leandro and Leonardo -[2018-02-13T00:39:27.921] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:39:27.960] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:39:27.972] [INFO] cheese - inserting 1000 documents. first: List of national parks of Malawi and last: The Cord of Life -[2018-02-13T00:39:27.973] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:39:28.049] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:39:28.188] [INFO] cheese - inserting 1000 documents. first: Orion Media and last: Longfin lizardfish -[2018-02-13T00:39:28.193] [INFO] cheese - inserting 1000 documents. first: Alan Erasmus and last: William Henry Cavendish Bentinck -[2018-02-13T00:39:28.259] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:39:28.262] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:39:28.280] [INFO] cheese - inserting 1000 documents. first: Asian pacific american history month and last: The Women's History of the World (book) -[2018-02-13T00:39:28.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/tsogem.com and last: Template:S-line/RB-Hesse right/36 -[2018-02-13T00:39:28.377] [INFO] cheese - inserting 1000 documents. first: Bancroft, Edward and last: File:Lady Be Good For Ella.jpg -[2018-02-13T00:39:28.428] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:39:28.453] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:39:28.483] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:39:28.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Barbarajohnson1/Archive and last: Education, Education, Education and War -[2018-02-13T00:39:28.698] [INFO] cheese - inserting 1000 documents. first: Category:Shopping malls in San Antonio and last: Yemen at the Olympics -[2018-02-13T00:39:28.755] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:39:28.792] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:39:28.909] [INFO] cheese - inserting 1000 documents. first: Sea of Love (Fly to the Sky album) and last: Template:Wikiproject China -[2018-02-13T00:39:29.027] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:29.058] [INFO] cheese - inserting 1000 documents. first: Wikipedia:FOSS and last: Manuela Campanelli (scientist) -[2018-02-13T00:39:29.129] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:29.142] [INFO] cheese - inserting 1000 documents. first: Bantu Education Act, 1953 and last: William Linn -[2018-02-13T00:39:29.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jamie MacMillan and last: Ay, Jalisco no te rajes! -[2018-02-13T00:39:29.198] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:39:29.224] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:39:29.247] [INFO] cheese - inserting 1000 documents. first: Dada Kondke and last: Single-tier municipalities -[2018-02-13T00:39:29.308] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:39:29.405] [INFO] cheese - inserting 1000 documents. first: Category:Bodies of water of Susquehanna County, Pennsylvania and last: Wikipedia:WikiProject Spam/Local/books.google.bg -[2018-02-13T00:39:29.424] [INFO] cheese - inserting 1000 documents. first: John B. Stephenson and last: Roswell H. Lamson -[2018-02-13T00:39:29.448] [INFO] cheese - inserting 1000 documents. first: Category:Road-Sea Southampton F.C. players and last: Protected battery -[2018-02-13T00:39:29.456] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:29.469] [INFO] cheese - inserting 1000 documents. first: Category:Uzbekistani comedians and last: NK Interblok Ljubljana -[2018-02-13T00:39:29.479] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:39:29.482] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:39:29.537] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:39:29.598] [INFO] cheese - inserting 1000 documents. first: Cierva Autogiro Company, Ltd. and last: Wheel of Fire (Babylon 5) -[2018-02-13T00:39:29.612] [INFO] cheese - inserting 1000 documents. first: Template:AncientRome-stub and last: Ancro -[2018-02-13T00:39:29.635] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:39:29.653] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:39:29.719] [INFO] cheese - inserting 1000 documents. first: Marianna Historic District (Marianna, Florida) and last: Wikipedia:Articles for deletion/Baker (TV series) -[2018-02-13T00:39:29.769] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:39:29.841] [INFO] cheese - inserting 1000 documents. first: The Wrong Man (disambiguation) and last: File:Bw frankenstein.jpg -[2018-02-13T00:39:29.883] [INFO] cheese - inserting 1000 documents. first: Dingy Scrub-hopper and last: Richardson's moray eel -[2018-02-13T00:39:29.886] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:39:29.921] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:39:29.939] [INFO] cheese - inserting 1000 documents. first: Asian giant toad and last: Vijayan Nair -[2018-02-13T00:39:29.954] [INFO] cheese - inserting 1000 documents. first: Mu Les and last: Bradford Park Avenue AFC -[2018-02-13T00:39:29.981] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:39:29.996] [INFO] cheese - inserting 1000 documents. first: 葉亞來 and last: Glorious Lady -[2018-02-13T00:39:30.015] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:39:30.137] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:39:30.256] [INFO] cheese - inserting 1000 documents. first: Vezina and last: The Capitols -[2018-02-13T00:39:30.353] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:39:30.460] [INFO] cheese - inserting 1000 documents. first: Bradford Town F C and last: Mary Pickford films -[2018-02-13T00:39:30.494] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:39:30.498] [INFO] cheese - inserting 1000 documents. first: Category:Monuments and memorials on the National Register of Historic Places in Maryland and last: Semen Makovich -[2018-02-13T00:39:30.506] [INFO] cheese - inserting 1000 documents. first: Post & Mail Tower and last: 2006 U.S. heat wave -[2018-02-13T00:39:30.563] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:39:30.596] [INFO] cheese - inserting 1000 documents. first: 2006–07 Uganda Super League and last: Zeppelin LZ 2 -[2018-02-13T00:39:30.610] [INFO] cheese - inserting 1000 documents. first: Round Lick and last: Wikipedia:Featured picture candidates/File:Musca domestica Portrait.jpg -[2018-02-13T00:39:30.642] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:39:30.661] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:39:30.696] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:39:30.835] [INFO] cheese - inserting 1000 documents. first: Darlenis Obregon Mulato and last: Sığracık, Emirdağ -[2018-02-13T00:39:30.887] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:39:31.037] [INFO] cheese - inserting 1000 documents. first: Category:Serbian female javelin throwers and last: Category:Olympic bronze medalists for the United States in tug of war -[2018-02-13T00:39:31.091] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:39:31.114] [INFO] cheese - inserting 1000 documents. first: Gdamm and last: History of east carolina university -[2018-02-13T00:39:31.210] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:39:31.361] [INFO] cheese - inserting 1000 documents. first: Category:Class-II stars and last: Tekeze River -[2018-02-13T00:39:31.367] [INFO] cheese - inserting 1000 documents. first: Rha and last: Sayers 40, Inc. -[2018-02-13T00:39:31.407] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:39:31.418] [INFO] cheese - inserting 1000 documents. first: L. Birge Harrison and last: Diana Fowley -[2018-02-13T00:39:31.454] [INFO] cheese - inserting 1000 documents. first: Zeppelin LZ 3 and last: Iglesia de la Trinidad -[2018-02-13T00:39:31.455] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T00:39:31.489] [INFO] cheese - inserting 1000 documents. first: History of east finchley and last: Clay research award -[2018-02-13T00:39:31.495] [INFO] cheese - inserting 1000 documents. first: Soğukkuyu, Emirdağ and last: Cuckquean -[2018-02-13T00:39:31.501] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:39:31.521] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:39:31.526] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:39:31.595] [INFO] cheese - inserting 1000 documents. first: Punto Chapultepec and last: AELS -[2018-02-13T00:39:31.616] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:39:31.645] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:39:31.833] [INFO] cheese - inserting 1000 documents. first: Sword Quest and last: Home of the youth -[2018-02-13T00:39:31.855] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:39:31.939] [INFO] cheese - inserting 1000 documents. first: Buddhism in Korea and last: Paul Robeson, The Soviet Union and Communism -[2018-02-13T00:39:31.982] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:39:32.026] [INFO] cheese - inserting 1000 documents. first: Chanel the cheetah girl and last: Phillips v. AWH -[2018-02-13T00:39:32.054] [INFO] cheese - inserting 1000 documents. first: Live at Last and last: Metamorfosi -[2018-02-13T00:39:32.055] [INFO] cheese - inserting 1000 documents. first: Home ownership in australia and last: House of large sizes -[2018-02-13T00:39:32.057] [INFO] cheese - inserting 1000 documents. first: Golden Age of Aviation and last: Category:Democratic People's Front politicians -[2018-02-13T00:39:32.070] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:39:32.073] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:39:32.090] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Truthserum213 and last: Kathrin Marchand -[2018-02-13T00:39:32.103] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:39:32.125] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:39:32.168] [INFO] cheese - inserting 1000 documents. first: Schweizer, Peter and last: Wikipedia:Articles for deletion/Merdeka Plaza -[2018-02-13T00:39:32.170] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:39:32.217] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:39:32.256] [INFO] cheese - inserting 1000 documents. first: House of leiningen and last: Morne Tranquille -[2018-02-13T00:39:32.287] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:39:32.356] [INFO] cheese - inserting 1000 documents. first: Radiative rate and last: 1974 Oran Park round of the Tasman Series -[2018-02-13T00:39:32.420] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:39:32.504] [INFO] cheese - inserting 1000 documents. first: Aletta Jorritsma and last: Zaidatul Husniah Zulkifli -[2018-02-13T00:39:32.529] [INFO] cheese - inserting 1000 documents. first: The Late, Late Show (album) and last: For the Term of His Natural Life (1908 film) -[2018-02-13T00:39:32.529] [INFO] cheese - inserting 1000 documents. first: Category:Democratic People's Front and last: Book:Ray Liotta -[2018-02-13T00:39:32.558] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:39:32.602] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:39:32.607] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:39:32.641] [INFO] cheese - inserting 1000 documents. first: Col. G.S. Dhillon and last: Kyoto Palace -[2018-02-13T00:39:32.715] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:39:32.767] [INFO] cheese - inserting 1000 documents. first: Huwal of the west welsh and last: Splitter (geometry) -[2018-02-13T00:39:32.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Crowne Plaza Riverside and last: Elbląg Voivodship -[2018-02-13T00:39:32.820] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:39:32.861] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:39:32.885] [INFO] cheese - inserting 1000 documents. first: Alberta Highway 549 and last: Ganj Golai -[2018-02-13T00:39:32.952] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:39:32.960] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Israel at the 1950 FIFA World Cup and last: James McEwan (disambiguation) -[2018-02-13T00:39:33.007] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/heatsinkcalculator.com and last: Vandazhi (disambiguation) -[2018-02-13T00:39:33.027] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:39:33.058] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:39:33.124] [INFO] cheese - inserting 1000 documents. first: MiR-138 and last: 1953 Copa del Generalísimo -[2018-02-13T00:39:33.164] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:39:33.373] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/E-flite Blade CX and last: N95-2 -[2018-02-13T00:39:33.413] [INFO] cheese - inserting 1000 documents. first: Cape Verdean Italian and last: Morašice (Znojmo District) -[2018-02-13T00:39:33.420] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:39:33.425] [INFO] cheese - inserting 1000 documents. first: File:Buffalo Dreams Promo.jpg and last: She's A Thief -[2018-02-13T00:39:33.434] [INFO] cheese - inserting 1000 documents. first: The Scarecrow and last: Category:316 BC births -[2018-02-13T00:39:33.440] [INFO] cheese - inserting 1000 documents. first: Victorian Railways box and louvre vans (disambiguation) and last: Stokkseyrar-Dísa -[2018-02-13T00:39:33.447] [INFO] cheese - inserting 1000 documents. first: Category:Military units and formations of British Leeward Islands in World War II and last: Enkh-Amar Kharkhuu -[2018-02-13T00:39:33.457] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:39:33.489] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:39:33.492] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:39:33.495] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:39:33.523] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:39:33.616] [INFO] cheese - inserting 1000 documents. first: Lichas (Spartan) and last: Wikipedia:Sockpuppet investigations/Muhammadhamidrafique/Archive -[2018-02-13T00:39:33.655] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:39:33.780] [INFO] cheese - inserting 1000 documents. first: T. V. Sasivarna Thevar and last: Wikipedia:WikiProject Spam/LinkReports/grottegruppa.no -[2018-02-13T00:39:33.799] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/topper10.net and last: Seftan Delmer -[2018-02-13T00:39:33.835] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:39:33.839] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:39:33.885] [INFO] cheese - inserting 1000 documents. first: Amitié Stadium and last: Necrotizing soft tissue infection -[2018-02-13T00:39:33.918] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:39:33.952] [INFO] cheese - inserting 1000 documents. first: Semgallen and last: Parisian Radicalism -[2018-02-13T00:39:33.973] [INFO] cheese - inserting 1000 documents. first: Quake3 and last: The Battle of Brunanburh -[2018-02-13T00:39:34.000] [INFO] cheese - inserting 1000 documents. first: Thordis Markusdottir and last: Qaleh Sareban -[2018-02-13T00:39:34.006] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:39:34.018] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/A2adams/Archive and last: Monday's Rain -[2018-02-13T00:39:34.039] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:39:34.057] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:39:34.063] [INFO] cheese - inserting 1000 documents. first: CHYKN and last: Category:World Rally Championship seasons -[2018-02-13T00:39:34.093] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:39:34.097] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:39:34.228] [INFO] cheese - inserting 1000 documents. first: Thomas St George McCarthy Cup and last: Geoff Schmidt -[2018-02-13T00:39:34.259] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:39:34.261] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jedi Temple and last: The Opening of the First Parliament -[2018-02-13T00:39:34.335] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:39:34.359] [INFO] cheese - inserting 1000 documents. first: City of Richmond v. J. A. Croson Co. and last: Informa Maritime & Transport -[2018-02-13T00:39:34.433] [INFO] cheese - inserting 1000 documents. first: Qomshan and last: Angelicaut -[2018-02-13T00:39:34.462] [INFO] cheese - inserting 1000 documents. first: XHNOA-TV and last: Waitahuna -[2018-02-13T00:39:34.502] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:39:34.592] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:39:34.630] [INFO] cheese - inserting 1000 documents. first: Agda (theorem prover) and last: Queens Hotel (Southsea) -[2018-02-13T00:39:34.642] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:39:34.719] [INFO] cheese - inserting 1000 documents. first: The Cattle Raid of Cooley and last: Metrovick -[2018-02-13T00:39:34.769] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:39:34.800] [INFO] cheese - inserting 1000 documents. first: Eps1.6 v1ew-s0urce.flv and last: Yoganidrasana -[2018-02-13T00:39:34.815] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:39:34.848] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:39:34.910] [INFO] cheese - inserting 1000 documents. first: D C hand dance and last: DW Griffith filmography -[2018-02-13T00:39:34.945] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:39:35.005] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/St John's CofE Primary School (2nd nomination) and last: Plan to kidnap Pius XII -[2018-02-13T00:39:35.124] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:39:35.196] [INFO] cheese - inserting 1000 documents. first: Jacopo Borbone and last: Research Professor -[2018-02-13T00:39:35.216] [INFO] cheese - inserting 1000 documents. first: Frankfort, New York and last: Category:Iranian athletes -[2018-02-13T00:39:35.241] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:39:35.256] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:39:35.270] [INFO] cheese - inserting 1000 documents. first: Thermo-Gel and last: Rein-rain merger -[2018-02-13T00:39:35.282] [INFO] cheese - inserting 1000 documents. first: DW Harvey and last: PA 894 -[2018-02-13T00:39:35.314] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:39:35.316] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:39:35.457] [INFO] cheese - inserting 1000 documents. first: Nancy Ammerman and last: Grand Mixer DXT -[2018-02-13T00:39:35.496] [INFO] cheese - inserting 1000 documents. first: Julián Ayala and last: Ágnes Ferencz -[2018-02-13T00:39:35.507] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:39:35.513] [INFO] cheese - inserting 1000 documents. first: McCoy Tyner Music and last: Template:Infobox LDS Temple -[2018-02-13T00:39:35.553] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:39:35.565] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:39:35.580] [INFO] cheese - inserting 1000 documents. first: Cranmoor and last: Hashiba Hidetsugu -[2018-02-13T00:39:35.602] [INFO] cheese - inserting 1000 documents. first: Audrey (Neighbours) and last: Vajra (King Aniruddha's Son) -[2018-02-13T00:39:35.619] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:39:35.640] [INFO] cheese - inserting 1000 documents. first: Toe-tow merger and last: Pixner -[2018-02-13T00:39:35.651] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:39:35.695] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:39:35.901] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anton (Bubbe's Boarding House) and last: Opera (band) -[2018-02-13T00:39:35.932] [INFO] cheese - inserting 1000 documents. first: V/Line P class and last: 2008 in heavy metal music -[2018-02-13T00:39:35.934] [INFO] cheese - inserting 1000 documents. first: Černov and last: Category:Seleucid Empire successor states -[2018-02-13T00:39:35.944] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:39:35.969] [INFO] cheese - inserting 1000 documents. first: File:Smokey Robinson - Big Time album cover.jpg and last: Polokwane City F.C. -[2018-02-13T00:39:35.974] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:39:36.004] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:39:36.026] [INFO] cheese - inserting 1000 documents. first: The Country Code and last: Crush by elephant -[2018-02-13T00:39:36.043] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:39:36.065] [INFO] cheese - inserting 1000 documents. first: North Kawartha, Ontario and last: Virginia Furnace -[2018-02-13T00:39:36.141] [INFO] cheese - inserting 1000 documents. first: Panj, Iran and last: Nowghan Sofla -[2018-02-13T00:39:36.191] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:39:36.209] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:36.248] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:39:36.450] [INFO] cheese - inserting 1000 documents. first: Rohini Sector 18, 19 metro station and last: Template:Australia-weightlifting-bio-stub -[2018-02-13T00:39:36.532] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:36.596] [INFO] cheese - inserting 1000 documents. first: Symonds Yat railway station and last: List of Aria (manga) soundtracks -[2018-02-13T00:39:36.677] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:39:36.765] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2007 December 28 and last: Quiet company -[2018-02-13T00:39:36.800] [INFO] cheese - inserting 1000 documents. first: Church of la Asunción (Almansa) and last: File:Grip Tape Further.jpg -[2018-02-13T00:39:36.837] [INFO] cheese - inserting 1000 documents. first: Ellesmere Rural and last: Escape pod podcast -[2018-02-13T00:39:36.866] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:39:36.876] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:39:36.959] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:39:36.978] [INFO] cheese - inserting 1000 documents. first: Lucio Schiavon and last: Heliconia automatia -[2018-02-13T00:39:37.017] [INFO] cheese - inserting 1000 documents. first: John Hudson (classicist) and last: Werner Stocker (actor) -[2018-02-13T00:39:37.073] [INFO] cheese - inserting 1000 documents. first: Category:São Tomé and Príncipe long-distance runners and last: C. J. Ham -[2018-02-13T00:39:37.074] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:39:37.099] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:39:37.188] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:39:37.276] [INFO] cheese - inserting 1000 documents. first: Eiichirô Mishima and last: Category:Batavia -[2018-02-13T00:39:37.320] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:39:37.379] [INFO] cheese - inserting 1000 documents. first: JACL (disambiguation) and last: Category:Lists of surviving military aircraft -[2018-02-13T00:39:37.442] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:39:37.489] [INFO] cheese - inserting 1000 documents. first: File:CollinsKellewayAndrews.jpg and last: Isle of Valen -[2018-02-13T00:39:37.544] [INFO] cheese - inserting 1000 documents. first: Eueides egeriformis and last: Wikipedia:Articles for deletion/Forgotten Kingdom Series -[2018-02-13T00:39:37.552] [INFO] cheese - inserting 1000 documents. first: Zombie knife and last: Thakins and the Struggle for National Independence (1930-1948) -[2018-02-13T00:39:37.554] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:39:37.569] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pirates/Managers and ownership and last: Enterprise, Trinidad and Tobago -[2018-02-13T00:39:37.635] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:39:37.676] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:39:37.704] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:39:37.791] [INFO] cheese - inserting 1000 documents. first: Ernest Brown (dancer) and last: Paramount-Publix Corporation -[2018-02-13T00:39:37.810] [INFO] cheese - inserting 1000 documents. first: Toghril Beg and last: Garbage bin -[2018-02-13T00:39:37.838] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:39:37.895] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:39:37.901] [INFO] cheese - inserting 1000 documents. first: Vasovist and last: Einstein's gift -[2018-02-13T00:39:38.116] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:39:38.267] [INFO] cheese - inserting 1000 documents. first: List of Guardians in a Series of Unfortunate Events and last: Tehachapi, Ca -[2018-02-13T00:39:38.358] [INFO] cheese - inserting 1000 documents. first: The Lion's Parasites and last: Wikipedia:Articles for deletion/Kevin Casha -[2018-02-13T00:39:38.357] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:39:38.384] [INFO] cheese - inserting 1000 documents. first: Dumbo (2017 film) and last: Rick Snyder (psychologist) -[2018-02-13T00:39:38.400] [INFO] cheese - inserting 1000 documents. first: C'est Toi (It's You) and last: Drahabuzh River -[2018-02-13T00:39:38.447] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:39:38.504] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:39:38.511] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:39:38.567] [INFO] cheese - inserting 1000 documents. first: Category:Lafayette and last: The Outer Gate -[2018-02-13T00:39:38.627] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:39:38.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2011 September 9 and last: Xen hypervisor -[2018-02-13T00:39:38.797] [INFO] cheese - inserting 1000 documents. first: North Minch and last: Canton of Appenzell Ausserrhoden -[2018-02-13T00:39:38.816] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:39:38.862] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:39:38.898] [INFO] cheese - inserting 1000 documents. first: Tehama, Ca and last: Gerardo Nunez -[2018-02-13T00:39:38.912] [INFO] cheese - inserting 1000 documents. first: Peru national under-16 and under-17 basketball team and last: In the Now -[2018-02-13T00:39:38.958] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:39:38.976] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:39:39.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Armenia/right panel and last: Kokang Special Region -[2018-02-13T00:39:39.066] [INFO] cheese - inserting 1000 documents. first: Ivan Jurić and last: Estados Unidos de América -[2018-02-13T00:39:39.087] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:39:39.114] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:39:39.170] [INFO] cheese - inserting 1000 documents. first: Category:Plays by George Wilkins and last: 20,000 Leagues Across the Land -[2018-02-13T00:39:39.215] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:39.219] [INFO] cheese - inserting 1000 documents. first: Aiesec Waikato and last: Fezakinumab -[2018-02-13T00:39:39.268] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:39:39.383] [INFO] cheese - inserting 1000 documents. first: Old Feijó Airport and last: Category:1991 in Italian cinema -[2018-02-13T00:39:39.395] [INFO] cheese - inserting 1000 documents. first: Portal:City of Bankstown/Selected article/2 and last: Holy Assumption of the Virgin Mary Church -[2018-02-13T00:39:39.426] [INFO] cheese - inserting 1000 documents. first: Bühler (disambiguation) and last: B. Brian Blair -[2018-02-13T00:39:39.446] [INFO] cheese - inserting 1000 documents. first: Loyal Irish Union and last: Rock-afire -[2018-02-13T00:39:39.446] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:39:39.477] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:39.505] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:39:39.570] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:39:39.648] [INFO] cheese - inserting 1000 documents. first: Trafford Ice Dome and last: KT Kumho Rent A Car -[2018-02-13T00:39:39.746] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:39:39.860] [INFO] cheese - inserting 1000 documents. first: Saturday's Children and last: File:Tangent Online logo.png -[2018-02-13T00:39:40.010] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:39:40.065] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/karoo-southafrica.co.za and last: Darcheh Abed -[2018-02-13T00:39:40.168] [INFO] cheese - inserting 1000 documents. first: West Crossett, Ar and last: Wikipedia:WikiProject Military history/Peer review/United States Naval Special Warfare Command -[2018-02-13T00:39:40.216] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:39:40.252] [INFO] cheese - inserting 1000 documents. first: Category:1992 in Italian cinema and last: Spacer (song) -[2018-02-13T00:39:40.278] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:39:40.295] [INFO] cheese - inserting 1000 documents. first: Category:Print media people from Liverpool and last: 2009 Nordic Trophy (Swedish tournament) -[2018-02-13T00:39:40.342] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:39:40.378] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:39:40.565] [INFO] cheese - inserting 1000 documents. first: Halton Moor and last: Daniel Robles -[2018-02-13T00:39:40.573] [INFO] cheese - inserting 1000 documents. first: Fathen and last: Cathedral of the Guardian Angel -[2018-02-13T00:39:40.632] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T00:39:40.645] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:39:40.719] [INFO] cheese - inserting 1000 documents. first: Moshe Taube and last: Edward Holl -[2018-02-13T00:39:40.813] [INFO] cheese - inserting 1000 documents. first: Category:Buddhist monasteries in Canada and last: EC Smith House -[2018-02-13T00:39:40.826] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:39:40.837] [INFO] cheese - inserting 1000 documents. first: Darcheh-ye Abed and last: List of 2014 Indian Premier League personnel changes -[2018-02-13T00:39:40.871] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:39:40.878] [INFO] cheese - inserting 1000 documents. first: File:Gymnastics (Trampoline), London 2012.png and last: Category:Eastern Orthodox monasteries in Croatia -[2018-02-13T00:39:40.932] [INFO] cheese - inserting 1000 documents. first: Waste framework directive and last: Catacaustic -[2018-02-13T00:39:40.951] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:39:40.974] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:39:40.999] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:39:41.194] [INFO] cheese - inserting 1000 documents. first: DMAX (UK TV channel) and last: Wikipedia:Articles for deletion/Anneberg Motocross Track -[2018-02-13T00:39:41.251] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:39:41.280] [INFO] cheese - inserting 1000 documents. first: Siege of the North, Part II and last: Soran (region) -[2018-02-13T00:39:41.351] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:39:41.415] [INFO] cheese - inserting 1000 documents. first: On Dreams and last: Conan oBrien -[2018-02-13T00:39:41.426] [INFO] cheese - inserting 1000 documents. first: 2016 Hypo-Meeting and last: File:Bedevil Soundtrack Album Cover.jpg -[2018-02-13T00:39:41.432] [INFO] cheese - inserting 1000 documents. first: Andraca gongshanensis and last: Dorothy Y. Ko -[2018-02-13T00:39:41.478] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:39:41.490] [INFO] cheese - inserting 1000 documents. first: List of Dungeons & Dragons nonhuman deities and last: US Alençon 61 -[2018-02-13T00:39:41.497] [INFO] cheese - inserting 1000 documents. first: Am Rong and last: Casa air service -[2018-02-13T00:39:41.500] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:39:41.508] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:39:41.590] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:39:41.630] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:39:41.764] [INFO] cheese - inserting 1000 documents. first: F G Bailey and last: Anthea Turner: Perfect Housewife -[2018-02-13T00:39:41.810] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:39:42.131] [INFO] cheese - inserting 1000 documents. first: Plexiform neurofibroma and last: Wikipedia:Miscellany for deletion/Wikipedia:Community Portal/Redesign/Things to do -[2018-02-13T00:39:42.206] [INFO] cheese - inserting 1000 documents. first: Côte d'Or (brand) and last: Wikipedia:Articles for deletion/The Golden Truth -[2018-02-13T00:39:42.215] [INFO] cheese - inserting 1000 documents. first: Norse-Gaelic and last: WXBC (FM) -[2018-02-13T00:39:42.224] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Scotland articles needing expert attention and last: Journal of the American Osteopathic Association -[2018-02-13T00:39:42.224] [INFO] cheese - inserting 1000 documents. first: File:Pierre Victor Auger.jpg and last: Portal:Weather/Selected article/24 -[2018-02-13T00:39:42.228] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:39:42.251] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:39:42.269] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:39:42.281] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:39:42.307] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:39:42.333] [INFO] cheese - inserting 1000 documents. first: Francis Wegg-Prosser and last: Nepali (ethnicity) -[2018-02-13T00:39:42.426] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:39:42.589] [INFO] cheese - inserting 1000 documents. first: Bart Verschoor and last: Manually coded -[2018-02-13T00:39:42.648] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:39:42.653] [INFO] cheese - inserting 1000 documents. first: Beamish stout and last: Mooresville, Al -[2018-02-13T00:39:42.688] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:39:42.729] [INFO] cheese - inserting 1000 documents. first: Category:Retail companies of Mexico and last: University Station (MTR proposed) -[2018-02-13T00:39:42.761] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Community Portal/Redesign/Wikipedia by department and last: Milorad Miskovitch -[2018-02-13T00:39:42.763] [INFO] cheese - inserting 1000 documents. first: Saint Joseph's College (Kentucky) and last: Concrete (Tom Odell song) -[2018-02-13T00:39:42.771] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:39:42.803] [INFO] cheese - inserting 1000 documents. first: Chick Evans (baseball) and last: Wikipedia:WikiProject Spam/Local/windmill.org.au -[2018-02-13T00:39:42.813] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:39:42.823] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:39:42.884] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:39:42.970] [INFO] cheese - inserting 1000 documents. first: KVAN (AM) and last: U.S. Route 176 in South Carolina -[2018-02-13T00:39:42.994] [INFO] cheese - inserting 1000 documents. first: In Catilinam and last: Dharamasala -[2018-02-13T00:39:43.013] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:39:43.061] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:39:43.154] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Rhinella and last: Yanez's Tree Iguana -[2018-02-13T00:39:43.186] [INFO] cheese - inserting 1000 documents. first: Hasetsukabe no Koharumaru and last: 140th Fighter Group -[2018-02-13T00:39:43.215] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:39:43.216] [INFO] cheese - inserting 1000 documents. first: Echinocereus nivosus and last: Swiss International (badminton) -[2018-02-13T00:39:43.295] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:39:43.304] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:39:43.379] [INFO] cheese - inserting 1000 documents. first: The Final Reunion Tour – Cliff Richard and The Shadows and last: Category:Buildings and structures in Victoria County, Texas -[2018-02-13T00:39:43.381] [INFO] cheese - inserting 1000 documents. first: Mittelrhein (wine region) and last: Wikipedia:Featured picture candidates/Canada goose reflection 03.jpg -[2018-02-13T00:39:43.417] [INFO] cheese - inserting 1000 documents. first: Laari language and last: Final Fantasy X: Original Soundtrack -[2018-02-13T00:39:43.424] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:39:43.452] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:39:43.506] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:39:43.766] [INFO] cheese - inserting 1000 documents. first: 100 new shekel banknote and last: Filipe Baravilala -[2018-02-13T00:39:43.792] [INFO] cheese - inserting 1000 documents. first: Gretna F. C. and last: File:Johnny Powers Toronto.jpeg -[2018-02-13T00:39:43.802] [INFO] cheese - inserting 1000 documents. first: Germanic Neopaganism in Germany and last: Sarcomyces -[2018-02-13T00:39:43.803] [INFO] cheese - inserting 1000 documents. first: Hadley Common and last: The Rough Guide to the Music of Central America -[2018-02-13T00:39:43.804] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:43.818] [INFO] cheese - inserting 1000 documents. first: Fist Sized Chunks and last: The Hard Goodbye -[2018-02-13T00:39:43.828] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:39:43.846] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:39:43.863] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:39:43.903] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:39:43.935] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Wharton County, Texas and last: Heaven Afrika -[2018-02-13T00:39:43.953] [INFO] cheese - inserting 1000 documents. first: Sunless (song cycle) and last: Fort Pond Bay -[2018-02-13T00:39:43.999] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:39:44.046] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:39:44.224] [INFO] cheese - inserting 1000 documents. first: Category:Women's sports leagues in Belarus and last: Category:Centrism in South America -[2018-02-13T00:39:44.307] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:39:44.309] [INFO] cheese - inserting 1000 documents. first: Philip McLaren and last: Galway Borough by-election, 1906 -[2018-02-13T00:39:44.359] [INFO] cheese - inserting 1000 documents. first: Queen's Cove and last: Template:Gmina Godów -[2018-02-13T00:39:44.362] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:39:44.417] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:39:44.427] [INFO] cheese - inserting 1000 documents. first: Trichohelotium and last: Andy Brooks -[2018-02-13T00:39:44.451] [INFO] cheese - inserting 1000 documents. first: File:Moreseashells.jpg and last: Michael Dinneen -[2018-02-13T00:39:44.491] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:39:44.533] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:44.548] [INFO] cheese - inserting 1000 documents. first: Wulfbach and last: Estonia in the Eurovision Song Contest 2012 -[2018-02-13T00:39:44.624] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:39:44.677] [INFO] cheese - inserting 1000 documents. first: Decadic logarithm and last: Akinwale Arobieke -[2018-02-13T00:39:44.705] [INFO] cheese - inserting 1000 documents. first: Category:Belmont High School (Los Angeles, California) alumni and last: Category:United States Football League MVPs -[2018-02-13T00:39:44.734] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:39:44.773] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:39:44.909] [INFO] cheese - inserting 1000 documents. first: Damodar Das Arora and last: Steve Hoffman (American football) -[2018-02-13T00:39:45.014] [INFO] cheese - inserting 1000 documents. first: Fredro family and last: Module:Effective protection level -[2018-02-13T00:39:45.041] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:39:45.076] [INFO] cheese - inserting 1000 documents. first: Baron Wallscourt and last: Triple harp -[2018-02-13T00:39:45.087] [INFO] cheese - inserting 1000 documents. first: Bambarakele Falls and last: Corneo-scleral junction -[2018-02-13T00:39:45.111] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:39:45.138] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:45.168] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:39:45.244] [INFO] cheese - inserting 1000 documents. first: File:Beyonce-pulse.jpg and last: Category:School districts in Fisher County, Texas -[2018-02-13T00:39:45.310] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:45.429] [INFO] cheese - inserting 1000 documents. first: Tachytes etruscus and last: St. Xavier's Social Service Society -[2018-02-13T00:39:45.472] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:39:45.499] [INFO] cheese - inserting 1000 documents. first: Jim Gilliam and last: Administration on Aging -[2018-02-13T00:39:45.549] [INFO] cheese - inserting 1000 documents. first: Parrett Mountain Airport and last: Ceva, Thomas -[2018-02-13T00:39:45.560] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:39:45.610] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:39:45.632] [INFO] cheese - inserting 1000 documents. first: Those Were the Days (1997 film) and last: Supreme administrative court -[2018-02-13T00:39:45.704] [INFO] cheese - inserting 1000 documents. first: Solar maculopathy and last: Template:Chinese dictionaries -[2018-02-13T00:39:45.713] [INFO] cheese - inserting 1000 documents. first: Category:2014 Sun Belt Conference football season and last: File:Jessore University of Science & Technology logo.jpg -[2018-02-13T00:39:45.715] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:39:45.736] [INFO] cheese - inserting 1000 documents. first: Category:Education in Fisher County, Texas and last: Argentina during World War II -[2018-02-13T00:39:45.772] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:39:45.774] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:39:45.780] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:39:45.906] [INFO] cheese - inserting 1000 documents. first: 2016-17 Liga Națională (women's handball) and last: Category:Requests for badminton peer review -[2018-02-13T00:39:45.985] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:39:46.215] [INFO] cheese - inserting 1000 documents. first: Metal-Forum of Ukraine and last: Rizal Park -[2018-02-13T00:39:46.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Stub types for deletion/Log/2009/August/31 and last: Est Domains -[2018-02-13T00:39:46.257] [INFO] cheese - inserting 1000 documents. first: Navel (Jimsaku album) and last: Take This Waltz (film) -[2018-02-13T00:39:46.273] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:39:46.299] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:39:46.307] [INFO] cheese - inserting 1000 documents. first: File:Mthonjaneni CoA.png and last: Alec Smith (trade unionist) -[2018-02-13T00:39:46.315] [INFO] cheese - inserting 1000 documents. first: Repellent and last: David Lengal -[2018-02-13T00:39:46.347] [INFO] cheese - inserting 1000 documents. first: Harlow Aircraft Company and last: RLS algorithm -[2018-02-13T00:39:46.350] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:39:46.370] [INFO] cheese - inserting 1000 documents. first: Fran Beltrán and last: Nuno Miguel Figueiredo Afonso -[2018-02-13T00:39:46.413] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:39:46.421] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:39:46.437] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:39:46.494] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:39:46.916] [INFO] cheese - inserting 1000 documents. first: Category:Russian ultramarathon runners and last: Category:Models of Pakistani descent -[2018-02-13T00:39:47.013] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:39:47.032] [INFO] cheese - inserting 1000 documents. first: 1998–99 Northern Counties East Football League and last: 24-Hours of Reality -[2018-02-13T00:39:47.052] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Audrain County, Missouri and last: Channel Flip -[2018-02-13T00:39:47.190] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:39:47.200] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:39:47.360] [INFO] cheese - inserting 1000 documents. first: Jaime ortega and last: Marie Stubbs -[2018-02-13T00:39:47.399] [INFO] cheese - inserting 1000 documents. first: KLDC and last: Ratio scripta -[2018-02-13T00:39:47.402] [INFO] cheese - inserting 1000 documents. first: Curtiss Speedwing De Luxe B14B and last: Chempaha Perumal -[2018-02-13T00:39:47.424] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T00:39:47.439] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:39:47.447] [INFO] cheese - inserting 1000 documents. first: Timothy Rimbui and last: Baron Martin -[2018-02-13T00:39:47.480] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T00:39:47.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dollie Grissam and last: Template:Fb team Hamble Club -[2018-02-13T00:39:47.573] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T00:39:47.601] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:47.711] [INFO] cheese - inserting 1000 documents. first: Elachista occidentalis and last: Wikipedia:Articles for deletion/Robots and Racecars -[2018-02-13T00:39:47.718] [INFO] cheese - inserting 1000 documents. first: Matrix geometrical series and last: Mortgage Professionals Canada -[2018-02-13T00:39:47.752] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:47.783] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:39:47.988] [INFO] cheese - inserting 1000 documents. first: ISO-IR-99 and last: Paperweight (Feeder song) -[2018-02-13T00:39:47.994] [INFO] cheese - inserting 1000 documents. first: White Hall, Il and last: Gardu River (Sebeș) -[2018-02-13T00:39:48.028] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:39:48.035] [INFO] cheese - inserting 1000 documents. first: Rail Bank and last: File:F1poleposition64.jpg -[2018-02-13T00:39:48.069] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:39:48.126] [INFO] cheese - inserting 1000 documents. first: Ahmed Mohammed Ag Hamani and last: Blog hopping -[2018-02-13T00:39:48.153] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:39:48.215] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:39:48.263] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/saltiresociety.org.uk and last: C28H50 -[2018-02-13T00:39:48.333] [INFO] cheese - inserting 1000 documents. first: Schwarzbach (Günz) and last: Wikipedia:WikiProject Spam/Local/boutoula.net -[2018-02-13T00:39:48.362] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:39:48.508] [INFO] cheese - inserting 1000 documents. first: Infrared-Ultraviolet and last: Category:British male wheelchair racers -[2018-02-13T00:39:48.550] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:39:48.629] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:39:48.678] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/FlightMemory and last: Oppau -[2018-02-13T00:39:48.742] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:39:48.755] [INFO] cheese - inserting 1000 documents. first: Marrakech (atb) and last: Syed Ahmed Khan Bahadur -[2018-02-13T00:39:48.849] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:39:48.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/live-in-costarica.com and last: Antipodia atralba -[2018-02-13T00:39:49.032] [INFO] cheese - inserting 1000 documents. first: Hajat Aqa and last: Pinhole -[2018-02-13T00:39:49.110] [INFO] cheese - inserting 1000 documents. first: Blog hop and last: German 578th Volksgrenadier Division -[2018-02-13T00:39:49.144] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:39:49.154] [INFO] cheese - batch complete in: 1.581 secs -[2018-02-13T00:39:49.202] [INFO] cheese - inserting 1000 documents. first: Albert Thoralf Skolem and last: Kronach (White Main) -[2018-02-13T00:39:49.209] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:39:49.266] [INFO] cheese - inserting 1000 documents. first: Draft:Progress in Energy and Combustion Science and last: Category:British breaststroke swimmers -[2018-02-13T00:39:49.276] [INFO] cheese - inserting 1000 documents. first: Solbjerg and last: Jean Pelegri -[2018-02-13T00:39:49.277] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:39:49.345] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:39:49.362] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:39:49.527] [INFO] cheese - inserting 1000 documents. first: Category:People from Gatineau and last: File:Splurge album.jpg -[2018-02-13T00:39:49.584] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:39:49.597] [INFO] cheese - inserting 1000 documents. first: HT Muggeridge and last: Historical U. S. Census Totals for Hampshire County, Massachusetts -[2018-02-13T00:39:49.608] [INFO] cheese - inserting 1000 documents. first: Andy Walker (basketball) and last: Wikipedia:WikiProject Spam/Local/chelsio.com -[2018-02-13T00:39:49.630] [INFO] cheese - inserting 1000 documents. first: Motasingha atralba and last: Vice-captain (association football) -[2018-02-13T00:39:49.634] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:39:49.673] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:39:49.707] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:39:49.723] [INFO] cheese - inserting 1000 documents. first: Krumbach (Kammel) and last: File:FETCH! with Ruff Ruffman logo.png -[2018-02-13T00:39:49.760] [INFO] cheese - inserting 1000 documents. first: Donald A. Bryant and last: Stony Creek Railroad -[2018-02-13T00:39:49.772] [INFO] cheese - inserting 1000 documents. first: Category:History of Sheffield and last: IBM WebSphere Application Server -[2018-02-13T00:39:49.786] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:39:49.824] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:39:49.860] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:39:49.899] [INFO] cheese - inserting 1000 documents. first: Historical U. S. Census Totals for Hartford County, Connecticut and last: I. R. S. Records -[2018-02-13T00:39:49.938] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:39:50.089] [INFO] cheese - inserting 1000 documents. first: Order of battle Battle of South Shanxi and last: Certapay -[2018-02-13T00:39:50.214] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:39:50.237] [INFO] cheese - inserting 1000 documents. first: Algar, Cádiz and last: Robincroft -[2018-02-13T00:39:50.294] [INFO] cheese - inserting 1000 documents. first: BAMZOOKi and last: Marat Garayev -[2018-02-13T00:39:50.295] [INFO] cheese - inserting 1000 documents. first: Transtillaspis monoloba and last: Template:Orbital launches in 1970 -[2018-02-13T00:39:50.350] [INFO] cheese - inserting 1000 documents. first: Category:Education in Jefferson County, Texas and last: Category:1938 establishments in Ireland -[2018-02-13T00:39:50.376] [INFO] cheese - inserting 1000 documents. first: I. S. (manga) and last: J G Thirlwell -[2018-02-13T00:39:50.375] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:39:50.384] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:39:50.390] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:39:50.442] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:39:50.451] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:39:50.720] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Niue articles and last: Kitty GYM -[2018-02-13T00:39:50.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michael Le and last: Neil Colville -[2018-02-13T00:39:50.757] [INFO] cheese - inserting 1000 documents. first: Category:Former county seats in Illinois and last: History of Acapulco -[2018-02-13T00:39:50.768] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:39:50.799] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:39:50.836] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:39:50.900] [INFO] cheese - inserting 1000 documents. first: Marat Garaev and last: Wikipedia:WikiProject Spam/LinkReports/zptown.at.ua -[2018-02-13T00:39:50.936] [INFO] cheese - inserting 1000 documents. first: Template:WAC baseball teams and last: Chamaenerion fleischeri -[2018-02-13T00:39:50.983] [INFO] cheese - inserting 1000 documents. first: Neyeh and last: Papabuco language -[2018-02-13T00:39:51.014] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:39:51.050] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:39:51.105] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:39:51.305] [INFO] cheese - inserting 1000 documents. first: J.C. Mardrus and last: Template:HolmesCountyOH-school-stub -[2018-02-13T00:39:51.367] [INFO] cheese - inserting 1000 documents. first: Moody field and last: Luigi Gentili -[2018-02-13T00:39:51.372] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:39:51.430] [INFO] cheese - inserting 1000 documents. first: Andor Szanyi and last: Bunchgrass Skipper -[2018-02-13T00:39:51.485] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T00:39:51.492] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:39:51.515] [INFO] cheese - inserting 1000 documents. first: FirePro and last: Aeronautical Systems Division -[2018-02-13T00:39:51.562] [INFO] cheese - inserting 1000 documents. first: Category:Italian javelin throwers and last: Category:Organizations established in 1674 -[2018-02-13T00:39:51.576] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:39:51.590] [INFO] cheese - inserting 1000 documents. first: Stanford Center for Internet and Society and last: Hugo DeVries -[2018-02-13T00:39:51.616] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:39:51.664] [INFO] cheese - inserting 1000 documents. first: Texas superconducting supercollider and last: Phragmatobia lymphasea -[2018-02-13T00:39:51.678] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:39:51.730] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:39:52.023] [INFO] cheese - inserting 1000 documents. first: Saint martins church of valjala and last: Roman's saw-scaled viper -[2018-02-13T00:39:52.048] [INFO] cheese - inserting 1000 documents. first: Box Brown and last: Lieutenant Commander -[2018-02-13T00:39:52.057] [INFO] cheese - inserting 1000 documents. first: Template:MuskingumCountyOH-school-stub and last: K-250 -[2018-02-13T00:39:52.082] [INFO] cheese - inserting 1000 documents. first: Draft:Karate Speed Power and last: Putt Putt Travels Through Time -[2018-02-13T00:39:52.197] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:39:52.279] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:39:52.364] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:39:52.375] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T00:39:52.389] [INFO] cheese - inserting 1000 documents. first: Diacrisia ockendeni and last: Court Harwell -[2018-02-13T00:39:52.457] [INFO] cheese - inserting 1000 documents. first: File:Invention of lying ver2.jpg and last: File:Legend of gingko.jpg -[2018-02-13T00:39:52.500] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:39:52.651] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:39:52.713] [INFO] cheese - inserting 1000 documents. first: File:Battle of Stones River, Dec 31 1862 to Jan 3, 1863.png and last: Pepsico Inc. -[2018-02-13T00:39:52.928] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:39:53.051] [INFO] cheese - inserting 1000 documents. first: Ulla Toernes and last: Mirror of the Middle Ages -[2018-02-13T00:39:53.060] [INFO] cheese - inserting 1000 documents. first: Category:2011 establishments in Iran and last: Wikipedia:WikiProject Spam/LinkReports/roberttown.net -[2018-02-13T00:39:53.073] [INFO] cheese - inserting 1000 documents. first: Category:1669 by country and last: Gmina Puck -[2018-02-13T00:39:53.143] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:53.156] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:39:53.210] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T00:39:53.309] [INFO] cheese - inserting 1000 documents. first: Template:Top Ten Indonesian Badminton Players - Women's doubles and last: Jeong Kwang-il -[2018-02-13T00:39:53.347] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:39:53.350] [INFO] cheese - inserting 1000 documents. first: Allan (name) and last: Wikipedia:Today's featured article/September 9, 2016 -[2018-02-13T00:39:53.382] [INFO] cheese - inserting 1000 documents. first: Category:Intensive care and last: Revolutionary Workers' Party (India) -[2018-02-13T00:39:53.441] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:39:53.471] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:39:53.539] [INFO] cheese - inserting 1000 documents. first: John C W Reid and last: 1987 Vuelta a España -[2018-02-13T00:39:53.588] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:39:53.655] [INFO] cheese - inserting 1000 documents. first: File:Journal October.jpg and last: Dioryctria auranticella -[2018-02-13T00:39:53.708] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:53.763] [INFO] cheese - inserting 1000 documents. first: Rjr Nabisco Inc. and last: Wh-interrogative -[2018-02-13T00:39:53.764] [INFO] cheese - inserting 1000 documents. first: Bosco verticale and last: File:Fields in Kumarakom.jpg -[2018-02-13T00:39:53.800] [INFO] cheese - inserting 1000 documents. first: Category:People from Tehama County, California and last: Chris Cross Griffin -[2018-02-13T00:39:53.814] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:39:53.836] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:39:53.852] [INFO] cheese - inserting 1000 documents. first: Matias Montinho and last: Wikipedia:Articles for deletion/Musa Paik -[2018-02-13T00:39:53.885] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:39:53.909] [INFO] cheese - inserting 1000 documents. first: DeKalb Taylor Municipal Airport and last: Wally Tattersall -[2018-02-13T00:39:53.915] [INFO] cheese - inserting 1000 documents. first: Epigallocatechin 3-gallate and last: 代々木 -[2018-02-13T00:39:53.915] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:39:53.960] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:39:53.971] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:54.134] [INFO] cheese - inserting 1000 documents. first: Djerv (band) and last: Simon Langton (archdeacon) -[2018-02-13T00:39:54.185] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:39:54.303] [INFO] cheese - inserting 1000 documents. first: Category:Algeria at the Winter Olympics by year and last: Tierra del Fuego Igneous and Metamorphic Complex -[2018-02-13T00:39:54.305] [INFO] cheese - inserting 1000 documents. first: Lodewijk van Nassau-Beverweert and last: Template:Alaska Railroad lines -[2018-02-13T00:39:54.317] [INFO] cheese - inserting 1000 documents. first: Christopher Cross Griffin and last: File:Woman Montage (2).jpg -[2018-02-13T00:39:54.335] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:39:54.338] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:39:54.389] [INFO] cheese - inserting 1000 documents. first: Herrick chapman and last: Fruitport Township, Michigan -[2018-02-13T00:39:54.453] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:39:54.473] [INFO] cheese - inserting 1000 documents. first: Attack on Anzac Cove and last: El Menzah Sports Palace -[2018-02-13T00:39:54.506] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:39:54.526] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:39:54.613] [INFO] cheese - inserting 1000 documents. first: Roberto Carretero and last: Rikuu East Line -[2018-02-13T00:39:54.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Theories of the State (Erik Olin Wright)/Students and last: Template:ACTU Secretaries -[2018-02-13T00:39:54.714] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:39:54.791] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:39:54.797] [INFO] cheese - inserting 1000 documents. first: Category:Winter Olympics competitors for Romania and last: Yellow Sedge-skipper -[2018-02-13T00:39:54.881] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Republic of Karelia and last: Template:User ca-qc -[2018-02-13T00:39:54.884] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:39:54.944] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:39:55.031] [INFO] cheese - inserting 1000 documents. first: See of Teramo and last: CPA3 -[2018-02-13T00:39:55.091] [INFO] cheese - inserting 1000 documents. first: Coachella Festival and last: Category:Categories requiring diffusion -[2018-02-13T00:39:55.113] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:39:55.155] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:55.228] [INFO] cheese - inserting 1000 documents. first: Orson discography and last: Nebby Debbie -[2018-02-13T00:39:55.300] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:39:55.326] [INFO] cheese - inserting 1000 documents. first: Ima Korean and last: Adéane -[2018-02-13T00:39:55.371] [INFO] cheese - inserting 1000 documents. first: Kálmán Széll and last: Netvigator -[2018-02-13T00:39:55.375] [INFO] cheese - inserting 1000 documents. first: Owu kingdom and last: Category:March 2015 events in Asia -[2018-02-13T00:39:55.377] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:39:55.436] [INFO] cheese - inserting 1000 documents. first: Lowey and last: Narrowbar swell shark -[2018-02-13T00:39:55.436] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:55.450] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:39:55.491] [INFO] cheese - inserting 1000 documents. first: Category:Sega System 1 games and last: Günter Schubert -[2018-02-13T00:39:55.522] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:39:55.546] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:39:55.562] [INFO] cheese - inserting 1000 documents. first: BioMetals and last: Catberry -[2018-02-13T00:39:55.609] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:39:55.763] [INFO] cheese - inserting 1000 documents. first: Category:Christian publishers in Thailand and last: Otto Busse (resistance fighter) -[2018-02-13T00:39:55.806] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:39:55.828] [INFO] cheese - inserting 1000 documents. first: Category:1628 in music and last: Electric Universe (disambiguation) -[2018-02-13T00:39:55.832] [INFO] cheese - inserting 1000 documents. first: Globalisation and disease and last: Category:People from Ebeleben -[2018-02-13T00:39:55.892] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:39:55.885] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:39:55.944] [INFO] cheese - inserting 1000 documents. first: Yōichi Kotabe and last: Benetton Rugby Treviso -[2018-02-13T00:39:55.948] [INFO] cheese - inserting 1000 documents. first: File:Australia 1 cent 1912 obverse.JPG and last: Theater of Canada -[2018-02-13T00:39:55.977] [INFO] cheese - inserting 1000 documents. first: Willard and His Bowling Trophies: A Perverse Mystery and last: Thomas G. Stemberg -[2018-02-13T00:39:56.002] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:56.012] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:39:56.046] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:56.054] [INFO] cheese - inserting 1000 documents. first: Caldes de Montbui and last: Outreau affair -[2018-02-13T00:39:56.136] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:39:56.255] [INFO] cheese - inserting 1000 documents. first: Nenmara Vallanghy Vela and last: Innerstaden, Malmö -[2018-02-13T00:39:56.268] [INFO] cheese - inserting 1000 documents. first: Category:Sierra Leonean expatriates in Moldova and last: Bartolomeo Gradenigo (bishop of Brescia) -[2018-02-13T00:39:56.336] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:39:56.332] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:39:56.500] [INFO] cheese - inserting 1000 documents. first: Skoog and last: Wikipedia:Deletion review/Log/2011 September 18 -[2018-02-13T00:39:56.591] [INFO] cheese - inserting 1000 documents. first: Space Dude and last: Ho T'ai-hsueh -[2018-02-13T00:39:56.605] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:39:56.613] [INFO] cheese - inserting 1000 documents. first: Category:Governors of Moscow Oblast and last: Robert Elgin McKinley -[2018-02-13T00:39:56.679] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:39:56.720] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:39:56.770] [INFO] cheese - inserting 1000 documents. first: BRCC3 and last: Brandywine Township, Indiana -[2018-02-13T00:39:56.888] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:39:56.991] [INFO] cheese - inserting 1000 documents. first: The Pilgrim Woman and last: Nightfall of Diamonds -[2018-02-13T00:39:57.049] [INFO] cheese - inserting 1000 documents. first: Yoshimasa Oshima and last: Takashi Sawada -[2018-02-13T00:39:57.071] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:39:57.102] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:39:57.137] [INFO] cheese - inserting 1000 documents. first: Category:Recreation by period and last: Bi (cuneiform) -[2018-02-13T00:39:57.188] [INFO] cheese - inserting 1000 documents. first: Gödel's speed-up theorem and last: Wikipedia:WikiProject Spam/LinkReports/hollywoodnorthreport.com -[2018-02-13T00:39:57.245] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:39:57.334] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:39:57.401] [INFO] cheese - inserting 1000 documents. first: Zvi Sherff and last: Moscow, Id -[2018-02-13T00:39:57.487] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:39:57.555] [INFO] cheese - inserting 1000 documents. first: 2016 Wind Energy Holding Bangkok Open – Singles and last: Cinema of Balochistan -[2018-02-13T00:39:57.562] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/CosmicLegg/Archive and last: File:Tetsuo3.jpg -[2018-02-13T00:39:57.575] [INFO] cheese - inserting 1000 documents. first: Li Jié and last: Thornbury Township, PA -[2018-02-13T00:39:57.589] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:39:57.632] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:39:57.653] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:39:57.716] [INFO] cheese - inserting 1000 documents. first: Fresno County Route J1 and last: Larry Bodine (comics) -[2018-02-13T00:39:57.775] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:39:57.777] [INFO] cheese - inserting 1000 documents. first: Strophic song and last: 2006 Pan Pacific Swimming Championships – Men's 200 metre backstroke -[2018-02-13T00:39:57.820] [INFO] cheese - inserting 1000 documents. first: Adhi Sankar and last: Island Resort -[2018-02-13T00:39:57.834] [INFO] cheese - inserting 1000 documents. first: Mountain Home, Id and last: File:BBC Scotland Headquarters.jpg -[2018-02-13T00:39:57.842] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:39:57.878] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:39:57.880] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:39:57.998] [INFO] cheese - inserting 1000 documents. first: Cinema of Khyber Pakhtunkhwa and last: Takamatua -[2018-02-13T00:39:58.015] [INFO] cheese - inserting 1000 documents. first: Thorndale, PA and last: Nakashibetsu, Hokkaido -[2018-02-13T00:39:58.045] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:39:58.051] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:39:58.108] [INFO] cheese - inserting 1000 documents. first: Hörnli and last: Baillie Island, Northwest Territories -[2018-02-13T00:39:58.161] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:39:58.195] [INFO] cheese - inserting 1000 documents. first: Choreographer’s Ball and last: Adopt a user -[2018-02-13T00:39:58.250] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:39:58.262] [INFO] cheese - inserting 1000 documents. first: The Fresh Prince of Belair and last: Wingspan (disambiguation) -[2018-02-13T00:39:58.297] [INFO] cheese - inserting 1000 documents. first: Category:Card games introduced in 1933 and last: Clackline Brook -[2018-02-13T00:39:58.316] [INFO] cheese - inserting 1000 documents. first: Charlie Cowdrey (football coach) and last: H. O. Robinson -[2018-02-13T00:39:58.315] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:39:58.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Haunted seton hill university and last: Starshina -[2018-02-13T00:39:58.367] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:39:58.388] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:39:58.405] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:39:58.451] [INFO] cheese - inserting 1000 documents. first: South Woodslee Ontario and last: Category:LGBT in Saint Helena, Ascension and Tristan da Cunha -[2018-02-13T00:39:58.516] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:39:58.676] [INFO] cheese - inserting 1000 documents. first: Orabindu Benyabhak and last: David McKay (publisher) -[2018-02-13T00:39:58.692] [INFO] cheese - inserting 1000 documents. first: Khowai Government Higher Secondery School and last: Gediminas Bagdonas -[2018-02-13T00:39:58.733] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:39:58.802] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:58.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Emma Bossons (2nd nomination) and last: KMXL -[2018-02-13T00:39:58.903] [INFO] cheese - inserting 1000 documents. first: TajAir and last: Category:WikiProject Music genres articles -[2018-02-13T00:39:58.923] [INFO] cheese - inserting 1000 documents. first: Hyde Moves In (That '70s Show) and last: Category:Cryptographic currencies -[2018-02-13T00:39:58.962] [INFO] cheese - inserting 1000 documents. first: Edward Cooke (swimmer) and last: Template:More Galicia/meta/color -[2018-02-13T00:39:58.968] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:39:58.981] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:39:59.019] [INFO] cheese - inserting 1000 documents. first: Venice Beach, CA and last: Voting margin -[2018-02-13T00:39:59.050] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:39:59.067] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:39:59.123] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:39:59.385] [INFO] cheese - inserting 1000 documents. first: Charlotte Police Department and last: Jack Kenny Williams -[2018-02-13T00:39:59.410] [INFO] cheese - inserting 1000 documents. first: Routes of Santiago de Compostela in France and last: Wikipedia:Articles for deletion/Guybrush Threepwood -[2018-02-13T00:39:59.431] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:39:59.481] [INFO] cheese - inserting 1000 documents. first: Lorenzo Cozza and last: CFQM-FM -[2018-02-13T00:39:59.495] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:39:59.533] [INFO] cheese - inserting 1000 documents. first: Hugh Bentley and last: Aruba at the Summer Olympics -[2018-02-13T00:39:59.550] [INFO] cheese - inserting 1000 documents. first: Journal of Graph Theory and last: Jadestone -[2018-02-13T00:39:59.549] [INFO] cheese - inserting 1000 documents. first: Reef the Lost Cauze discography and last: National Children's Book Festival -[2018-02-13T00:39:59.568] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:39:59.594] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:39:59.641] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:39:59.644] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:39:59.776] [INFO] cheese - inserting 1000 documents. first: Longfield railway station and last: California State Highway 275 -[2018-02-13T00:39:59.836] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:39:59.889] [INFO] cheese - inserting 1000 documents. first: Kitti Becséri and last: Wikipedia:Online Ambassadors/Apply/Buggie111 -[2018-02-13T00:39:59.947] [INFO] cheese - inserting 1000 documents. first: Armenia at the Summer Olympics and last: Wolf (Devin Townsend Project song) -[2018-02-13T00:39:59.949] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:39:59.990] [INFO] cheese - inserting 1000 documents. first: Category:People from Orsha and last: Wikipedia:WikiProject Environment/Sustainability task force/to do -[2018-02-13T00:40:00.006] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:40:00.055] [INFO] cheese - inserting 1000 documents. first: 2012 Russian floods and last: Grumman Studios -[2018-02-13T00:40:00.068] [INFO] cheese - inserting 1000 documents. first: KVLY-TV antenna and last: Greg lato -[2018-02-13T00:40:00.108] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:40:00.112] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:40:00.131] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:00.188] [INFO] cheese - inserting 1000 documents. first: Winnipeg Route 42 and last: Pyapon Township -[2018-02-13T00:40:00.247] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:40:00.454] [INFO] cheese - inserting 1000 documents. first: Typhoon Sonca (disambiguation) and last: Beke (Warnow) -[2018-02-13T00:40:00.485] [INFO] cheese - inserting 1000 documents. first: California State Highway 299 and last: Higgins, Inc. -[2018-02-13T00:40:00.531] [INFO] cheese - inserting 1000 documents. first: 2016 All-Australian team and last: Josefa Kellner -[2018-02-13T00:40:00.553] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:40:00.585] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:40:00.645] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:40:00.649] [INFO] cheese - inserting 1000 documents. first: File:Gohan, all depictions, 2014.jpg and last: HD 215456 -[2018-02-13T00:40:00.679] [INFO] cheese - inserting 1000 documents. first: PH monitoring and last: Le Plus bel âge -[2018-02-13T00:40:00.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ben Hillier and last: Qaishan Qan -[2018-02-13T00:40:00.729] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:40:00.732] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:40:00.847] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:40:01.205] [INFO] cheese - inserting 1000 documents. first: Discover Odin and last: O.A. Hankner (football coach) -[2018-02-13T00:40:01.261] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/ISuportSchool and last: Clean feed (TV) -[2018-02-13T00:40:01.285] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mccormick.com.au and last: Tierisch Kölsch -[2018-02-13T00:40:01.313] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:40:01.330] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:40:01.378] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T00:40:01.453] [INFO] cheese - inserting 1000 documents. first: Copa São Paulo de Futebol Júnior and last: Powell Crosley -[2018-02-13T00:40:01.463] [INFO] cheese - inserting 1000 documents. first: File:Bergamot preserves.jpg and last: Gelett Burgess Children's Book Awards -[2018-02-13T00:40:01.501] [INFO] cheese - inserting 1000 documents. first: Le Plus Bel Âge and last: LaVonna Martin-Floreal -[2018-02-13T00:40:01.554] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:40:01.566] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:40:01.620] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:40:01.654] [INFO] cheese - inserting 1000 documents. first: Qaishan Qaghan and last: Template:User UDLSUD -[2018-02-13T00:40:01.765] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:40:01.937] [INFO] cheese - inserting 1000 documents. first: Seisonida and last: Category:2017 in Liberia -[2018-02-13T00:40:01.947] [INFO] cheese - inserting 1000 documents. first: Zoo Doctor: My Mom the Vet and last: Milcombe, Cornwall -[2018-02-13T00:40:02.002] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:40:02.016] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:40:02.046] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Hammam ol Din and last: Belizian cuisine -[2018-02-13T00:40:02.049] [INFO] cheese - inserting 1000 documents. first: U.S. Route 730 in Oregon and last: Category:Cooperatives by country -[2018-02-13T00:40:02.116] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:40:02.171] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:40:02.184] [INFO] cheese - inserting 1000 documents. first: Tohou and last: Texas dragging death -[2018-02-13T00:40:02.304] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:02.395] [INFO] cheese - inserting 1000 documents. first: File:Toroa Foos.jpg and last: Christos Karypidis -[2018-02-13T00:40:02.541] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:40:02.651] [INFO] cheese - inserting 1000 documents. first: Fiber to the home and last: Leshan buddah -[2018-02-13T00:40:02.681] [INFO] cheese - inserting 1000 documents. first: Millendreath and last: Stephen O’Donnell -[2018-02-13T00:40:02.722] [INFO] cheese - inserting 1000 documents. first: Category:2018 in Belgium and last: St. Anne's Church, Sutton Bonington -[2018-02-13T00:40:02.747] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:02.763] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T00:40:02.798] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:40:02.884] [INFO] cheese - inserting 1000 documents. first: Ab Anjir, Darab and last: St George Southwark -[2018-02-13T00:40:02.951] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians in Rochester, New York and last: Gmina Stare Juchy -[2018-02-13T00:40:02.969] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:40:02.994] [INFO] cheese - inserting 1000 documents. first: File:FranceO-logo.png and last: Category:Postcode areas covering North East England -[2018-02-13T00:40:03.037] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:40:03.070] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:40:03.078] [INFO] cheese - inserting 1000 documents. first: LDV Van and last: Anel Townsend -[2018-02-13T00:40:03.143] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:03.166] [INFO] cheese - inserting 1000 documents. first: File:Obviously 5 Believers.ogg and last: Ferries in Istanbul -[2018-02-13T00:40:03.186] [INFO] cheese - inserting 1000 documents. first: Acorn, Pennsylvania and last: Template:Community of Madrid elections -[2018-02-13T00:40:03.206] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:40:03.237] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:40:03.269] [INFO] cheese - inserting 1000 documents. first: Warwick, OK and last: The Red Detachment of Women -[2018-02-13T00:40:03.325] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:40:03.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/webpages.iust.ac.ir and last: 1908-09 Georgetown Hoyas men's basketball team -[2018-02-13T00:40:03.449] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:40:03.467] [INFO] cheese - inserting 1000 documents. first: Rule of the West Bank and East Jerusalem by Jordan and last: Port aux Choix -[2018-02-13T00:40:03.480] [INFO] cheese - inserting 1000 documents. first: Serie B 1974-75 and last: Arthur Alfred Brown -[2018-02-13T00:40:03.522] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:40:03.551] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:40:03.596] [INFO] cheese - inserting 1000 documents. first: Arad, Iran and last: Kings Highway Conservative District -[2018-02-13T00:40:03.610] [INFO] cheese - inserting 1000 documents. first: Category:Chinese children's literature and last: Kazancı, Ermenek -[2018-02-13T00:40:03.612] [INFO] cheese - inserting 1000 documents. first: 2002 Speed World Challenge season and last: Paweł Kaczmarek -[2018-02-13T00:40:03.643] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:40:03.658] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:40:03.660] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:40:03.800] [INFO] cheese - inserting 1000 documents. first: Tom Fenner and last: Shahr Mian-e Sofla -[2018-02-13T00:40:03.853] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:40:03.862] [INFO] cheese - inserting 1000 documents. first: New Wave of New Wave and last: Guided age -[2018-02-13T00:40:03.929] [INFO] cheese - inserting 1000 documents. first: Port aux Choix, Newfoundland and Labrador and last: Jet-Blue Airways -[2018-02-13T00:40:03.952] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:40:04.093] [INFO] cheese - inserting 1000 documents. first: CECIC and last: TruMotion -[2018-02-13T00:40:04.107] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:40:04.131] [INFO] cheese - inserting 1000 documents. first: Category:Noble titles created in 1602 and last: GL261 -[2018-02-13T00:40:04.186] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:40:04.285] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:40:04.326] [INFO] cheese - inserting 1000 documents. first: Jan Klabbers and last: Wikipedia:United States Education Program/Courses/Training Systems/Course description -[2018-02-13T00:40:04.358] [INFO] cheese - inserting 1000 documents. first: Shahr Mian-e Now and last: Hassanabad, Sheshdeh and Qarah Bulaq -[2018-02-13T00:40:04.357] [INFO] cheese - inserting 1000 documents. first: Florida State Road 55 and last: Template:1980s-drama-film-stub -[2018-02-13T00:40:04.390] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:40:04.409] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:40:04.486] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:40:04.688] [INFO] cheese - inserting 1000 documents. first: Anna Walker (television presenter) and last: COE -[2018-02-13T00:40:04.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bible translations into Ladakhi and last: Frutos Bernardo Patón de Ayala -[2018-02-13T00:40:04.728] [INFO] cheese - inserting 1000 documents. first: NH primary and last: Category:Media in Japan by city -[2018-02-13T00:40:04.751] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:04.768] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:40:04.819] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:04.867] [INFO] cheese - inserting 1000 documents. first: Segunda División 1985-86 and last: The Occidental and Vanguard -[2018-02-13T00:40:04.913] [INFO] cheese - inserting 1000 documents. first: File:Alf Twigg.jpg and last: The golden nymphs -[2018-02-13T00:40:04.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Horror Cinema/Grading and last: Winchester Reading Prize -[2018-02-13T00:40:04.939] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:40:04.969] [INFO] cheese - inserting 1000 documents. first: Steeler (German band) and last: People of Azerbaijan -[2018-02-13T00:40:04.973] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:40:05.005] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:40:05.080] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:40:05.198] [INFO] cheese - inserting 1000 documents. first: Volleyball at the Far Eastern Championship Games and last: Wikipedia:Featured article candidates/Turboliner/archive1 -[2018-02-13T00:40:05.236] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:40:05.332] [INFO] cheese - inserting 1000 documents. first: Mica Paris and last: Buster Rhymes -[2018-02-13T00:40:05.373] [INFO] cheese - inserting 1000 documents. first: 2009-10 CCHL season and last: KCRV (AM) -[2018-02-13T00:40:05.374] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Jieho Lee and last: Jowvakan -[2018-02-13T00:40:05.392] [INFO] cheese - inserting 1000 documents. first: Ajaylat Stadium and last: Wikipedia:WikiProject Spam/LinkReports/cjr.org -[2018-02-13T00:40:05.399] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:40:05.416] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:40:05.416] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:05.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/alitave.de and last: Chaluvanahalli -[2018-02-13T00:40:05.503] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:05.575] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:05.638] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Grace Vanderwaal and last: Category:21st-century Palestinian poets -[2018-02-13T00:40:05.724] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:05.882] [INFO] cheese - inserting 1000 documents. first: Rana Kirat Singh and last: Magdalena Borova -[2018-02-13T00:40:06.014] [INFO] cheese - inserting 1000 documents. first: Israeli state and last: Category:Hard bop organists -[2018-02-13T00:40:06.073] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T00:40:06.111] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:40:06.113] [INFO] cheese - inserting 1000 documents. first: Jowkan, Bavanat and last: The Art of the Trio Volume One -[2018-02-13T00:40:06.211] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:40:06.266] [INFO] cheese - inserting 1000 documents. first: The Servant (2010 film) and last: Samuel Verblunsky -[2018-02-13T00:40:06.270] [INFO] cheese - inserting 1000 documents. first: Leo Nielsen and last: LH Aviation -[2018-02-13T00:40:06.337] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:40:06.338] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:40:06.382] [INFO] cheese - inserting 1000 documents. first: Arnside railway station and last: Battle of Swold -[2018-02-13T00:40:06.437] [INFO] cheese - inserting 1000 documents. first: Variella Aprilsasi and last: Wikipedia:Articles for deletion/List of mergers and acquisitions by Amazon -[2018-02-13T00:40:06.486] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T00:40:06.503] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:40:06.696] [INFO] cheese - inserting 1000 documents. first: Cezannian and last: Template:Editnotices/Page/List of people from Maharashtra -[2018-02-13T00:40:06.791] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:40:06.879] [INFO] cheese - inserting 1000 documents. first: South Gare and Coatham Sands and last: Britain GAA -[2018-02-13T00:40:06.890] [INFO] cheese - inserting 1000 documents. first: Gmina Karlino and last: Float tube -[2018-02-13T00:40:06.900] [INFO] cheese - inserting 1000 documents. first: Lythrum portula and last: Elite One -[2018-02-13T00:40:06.951] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:40:06.951] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:40:06.984] [INFO] cheese - inserting 1000 documents. first: Sjöstorp Stone and last: Walnut Creek (Marais des Cygnes River) -[2018-02-13T00:40:07.056] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:40:07.089] [INFO] cheese - inserting 1000 documents. first: Robert Scott (Conservative politician) and last: Namakabroud -[2018-02-13T00:40:07.141] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:40:07.213] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:40:07.256] [INFO] cheese - inserting 1000 documents. first: Gouldian finch and last: 17th centuries -[2018-02-13T00:40:07.300] [INFO] cheese - inserting 1000 documents. first: Emersonian and last: Wikipedia:Articles for deletion/Sweep the Leg Johnny -[2018-02-13T00:40:07.352] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:40:07.362] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:40:07.594] [INFO] cheese - inserting 1000 documents. first: Swansea Central Library and last: Pompeo Marchesi -[2018-02-13T00:40:07.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2009 September 12 and last: Plecoptera lobelia -[2018-02-13T00:40:07.655] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:40:07.667] [INFO] cheese - inserting 1000 documents. first: Alexandar Stamboliiski and last: 2116 -[2018-02-13T00:40:07.701] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:40:07.715] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Anthony M. Villane and last: Deportes Colchagua -[2018-02-13T00:40:07.742] [INFO] cheese - inserting 1000 documents. first: Via Romana agli Dèi and last: Category:Ambassadors of Sri Lanka to Bulgaria -[2018-02-13T00:40:07.748] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:40:07.770] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:40:07.785] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:08.046] [INFO] cheese - inserting 1000 documents. first: Bevlyn Khoo and last: Center of the Tokyo Raids and War Damage -[2018-02-13T00:40:08.097] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:40:08.139] [INFO] cheese - inserting 1000 documents. first: Florida red-bellied cooter and last: 2-QAM -[2018-02-13T00:40:08.144] [INFO] cheese - inserting 1000 documents. first: Category:Israel Prize in Arabic literature recipients and last: Horn loading -[2018-02-13T00:40:08.211] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:40:08.246] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:40:08.268] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Sri Lanka to Brazil and last: Aktaş, Karaisalı -[2018-02-13T00:40:08.275] [INFO] cheese - inserting 1000 documents. first: Grenier AAF and last: Members of the 21st Seanad Éireann -[2018-02-13T00:40:08.289] [INFO] cheese - inserting 1000 documents. first: Justice Bliss and last: Anglican Bishop of Central Solomon Islands -[2018-02-13T00:40:08.313] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:40:08.354] [INFO] cheese - inserting 1000 documents. first: Per-Olov Ahrén and last: Back and Forth Series 6 -[2018-02-13T00:40:08.367] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:40:08.378] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:40:08.462] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:40:08.613] [INFO] cheese - inserting 1000 documents. first: Jean Didace Médard Moussodia and last: Allan Levene -[2018-02-13T00:40:08.660] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:08.681] [INFO] cheese - inserting 1000 documents. first: Eastern Suburbs season 1931 and last: File:Pianoplayers.jpg -[2018-02-13T00:40:08.735] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:40:08.780] [INFO] cheese - inserting 1000 documents. first: 2QAM and last: Juanponcedeleon -[2018-02-13T00:40:08.805] [INFO] cheese - inserting 1000 documents. first: Anglican Bishop of the Central Solomons and last: Category:Farms on the National Register of Historic Places in Texas -[2018-02-13T00:40:08.807] [INFO] cheese - inserting 1000 documents. first: Rony Gruber and last: Template:Ornithopod-stub -[2018-02-13T00:40:08.832] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:40:08.838] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:40:08.860] [INFO] cheese - inserting 1000 documents. first: Lake Dunn and last: Sint Michiel -[2018-02-13T00:40:08.872] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:40:08.932] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:40:08.966] [INFO] cheese - inserting 1000 documents. first: Cleveland Circle (MBTA station) and last: Category:Companies established in 1980 -[2018-02-13T00:40:09.034] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:09.053] [INFO] cheese - inserting 1000 documents. first: Begoña Sánchez and last: Umi Raho -[2018-02-13T00:40:09.097] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:40:09.200] [INFO] cheese - inserting 1000 documents. first: DaVonte Lambert and last: File:Chas Jankel.jpg -[2018-02-13T00:40:09.200] [INFO] cheese - inserting 1000 documents. first: Estero de San Antonio State Marine Recreational Management Area and last: Smart Move (FIRST) -[2018-02-13T00:40:09.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/George Woodward Warder and last: Category:Hindu temples in Mayurbhanj district -[2018-02-13T00:40:09.252] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:40:09.256] [INFO] cheese - inserting 1000 documents. first: Edward Tennyson Connolly and last: Charles Ponsonby -[2018-02-13T00:40:09.253] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:40:09.316] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:40:09.330] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:40:09.338] [INFO] cheese - inserting 1000 documents. first: Phineas Parkhurst Quimby and last: Glen Stewart-Bellevue Cove -[2018-02-13T00:40:09.400] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:40:09.449] [INFO] cheese - inserting 1000 documents. first: Timeline of events at Bakara Market and last: Category:1999 Pacific Games -[2018-02-13T00:40:09.524] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:09.661] [INFO] cheese - inserting 1000 documents. first: Tibetan Pony and last: Category:Human rights in Mongolia -[2018-02-13T00:40:09.677] [INFO] cheese - inserting 1000 documents. first: File:SteamPoweredSawmill.JPG and last: Florence Gertrude Horsburgh -[2018-02-13T00:40:09.791] [INFO] cheese - inserting 1000 documents. first: AAE (disambiguation) and last: Maggie May (disambiguation) -[2018-02-13T00:40:09.814] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:40:09.844] [INFO] cheese - inserting 1000 documents. first: Maximilian Montgelas and last: Template:2016 Summer Paralympics Sweden men's goalball team roster -[2018-02-13T00:40:09.844] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:40:09.894] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:40:09.905] [INFO] cheese - inserting 1000 documents. first: Southern Indiana Railroad Freighthouse and last: Category:People from Alexander County, North Carolina -[2018-02-13T00:40:09.985] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:10.005] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:40:10.056] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in British Overseas Territories and last: Donald Fairbairn -[2018-02-13T00:40:10.112] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:40:10.284] [INFO] cheese - inserting 1000 documents. first: Category:Human rights in Luxembourg and last: Steffen Jürgens -[2018-02-13T00:40:10.379] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:40:10.459] [INFO] cheese - inserting 1000 documents. first: Prince di Belmonte and last: File:Playboys bakerpepper.jpg -[2018-02-13T00:40:10.515] [INFO] cheese - inserting 1000 documents. first: Josepablo Monreal and last: Luke mccown -[2018-02-13T00:40:10.521] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:40:10.531] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Sphaerotheca and last: Category:1870 elections in Oceania -[2018-02-13T00:40:10.536] [INFO] cheese - inserting 1000 documents. first: Category:High Commissioners of Pakistan to Bangladesh and last: Kızılpınar, Besni -[2018-02-13T00:40:10.555] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:10.596] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:40:10.605] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:40:10.693] [INFO] cheese - inserting 1000 documents. first: Skin popping and last: I'm Not There (soundtrack) -[2018-02-13T00:40:10.697] [INFO] cheese - inserting 1000 documents. first: Souris-Elmira and last: T-34 Tank -[2018-02-13T00:40:10.775] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:40:10.784] [INFO] cheese - batch complete in: 1.384 secs -[2018-02-13T00:40:10.885] [INFO] cheese - inserting 1000 documents. first: Sutjeska (river) and last: Pi beta phi settlement school -[2018-02-13T00:40:10.934] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:40:11.117] [INFO] cheese - inserting 1000 documents. first: Mitch Feierstein and last: Category:People from Alentejo -[2018-02-13T00:40:11.130] [INFO] cheese - inserting 1000 documents. first: The Partners (1971) and last: Route 548 -[2018-02-13T00:40:11.142] [INFO] cheese - inserting 1000 documents. first: Geoffrey James Foot and last: Callahan Creek -[2018-02-13T00:40:11.166] [INFO] cheese - inserting 1000 documents. first: The Doberman Detective and last: William Franklyn (dean) -[2018-02-13T00:40:11.168] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:40:11.200] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:40:11.203] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:40:11.295] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:40:11.338] [INFO] cheese - inserting 1000 documents. first: Under the Radar Festival and last: Mirai Keisatsu Urashiman -[2018-02-13T00:40:11.510] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:40:11.571] [INFO] cheese - inserting 1000 documents. first: Arrowmont school and last: Fusion Energy -[2018-02-13T00:40:11.663] [INFO] cheese - inserting 1000 documents. first: Wigund-Jeronym Trubecki and last: Ḫepat -[2018-02-13T00:40:11.746] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:40:11.888] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T00:40:11.892] [INFO] cheese - inserting 1000 documents. first: Longstone (band) and last: ETS 300 072 -[2018-02-13T00:40:11.974] [INFO] cheese - inserting 1000 documents. first: Merel Blom and last: Category:People from Nardò -[2018-02-13T00:40:12.023] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:40:12.048] [INFO] cheese - inserting 1000 documents. first: Pinacopteryx and last: Days of Brilliant Sunlight -[2018-02-13T00:40:12.087] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:40:12.213] [INFO] cheese - inserting 1000 documents. first: Mark Nielsen (attorney) and last: Bernardo Sorj -[2018-02-13T00:40:12.219] [INFO] cheese - inserting 1000 documents. first: Rock'n Cop and last: Klevanjka Biela -[2018-02-13T00:40:12.218] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:40:12.288] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:40:12.301] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T00:40:12.434] [INFO] cheese - inserting 1000 documents. first: Baby Bonus (TV series) and last: Wikipedia:Articles for deletion/Medical Corps (Medical Organization) -[2018-02-13T00:40:12.484] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:40:12.546] [INFO] cheese - inserting 1000 documents. first: David Roualeyn Findlater Bain and last: Sølvi Olsen-Meinseth -[2018-02-13T00:40:12.547] [INFO] cheese - inserting 1000 documents. first: Reach Out and Touch (Somebody's Hand) and last: Academic Challenge (Ohio) -[2018-02-13T00:40:12.586] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:40:12.599] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:40:12.616] [INFO] cheese - inserting 1000 documents. first: Geoffrey Alan Burgon and last: Wikipedia:Articles for deletion/Heckford -[2018-02-13T00:40:12.691] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:40:12.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SLIPKNOT and last: 1777 in Wales -[2018-02-13T00:40:12.721] [INFO] cheese - inserting 1000 documents. first: Sigfried II von Westerberg and last: Fred Bluett -[2018-02-13T00:40:12.740] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:40:12.833] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:40:12.962] [INFO] cheese - inserting 1000 documents. first: Triple Play 2000 and last: Emirati Dirham -[2018-02-13T00:40:12.969] [INFO] cheese - inserting 1000 documents. first: Habitation extension module and last: Win7pe -[2018-02-13T00:40:13.009] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:40:13.024] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:40:13.081] [INFO] cheese - inserting 1000 documents. first: Pant-y-Goitre Bridge and last: Drumana -[2018-02-13T00:40:13.089] [INFO] cheese - inserting 1000 documents. first: Aitor Fernández and last: Irish wattle -[2018-02-13T00:40:13.131] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:40:13.140] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:40:13.144] [INFO] cheese - inserting 1000 documents. first: Altavista petroglyphs and last: File:Rocky dipietro field.jpg -[2018-02-13T00:40:13.188] [INFO] cheese - inserting 1000 documents. first: File:MadrasUniversitySenateHouse1905.jpg and last: Ilī-ippašra -[2018-02-13T00:40:13.196] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:40:13.222] [INFO] cheese - inserting 1000 documents. first: West Adams, CA and last: De Havilland Goblin -[2018-02-13T00:40:13.228] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:40:13.305] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:40:13.421] [INFO] cheese - inserting 1000 documents. first: Win7 PE and last: Kohinoor college -[2018-02-13T00:40:13.501] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:40:13.528] [INFO] cheese - inserting 1000 documents. first: Eunice Foote and last: 2016 IndyCar Grand Prix at The Glen -[2018-02-13T00:40:13.589] [INFO] cheese - inserting 1000 documents. first: QuintilesIMS and last: Super swamper -[2018-02-13T00:40:13.678] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:40:13.711] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:40:13.739] [INFO] cheese - inserting 1000 documents. first: (16504) 1990 TR5 and last: AJ McCarron -[2018-02-13T00:40:13.759] [INFO] cheese - inserting 1000 documents. first: Midlands Road and last: Balyan Rural District -[2018-02-13T00:40:13.791] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:40:13.809] [INFO] cheese - inserting 1000 documents. first: Lake Dunn, Queensland and last: Culture of Memphis, Tennessee -[2018-02-13T00:40:13.851] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:40:13.909] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:14.154] [INFO] cheese - inserting 1000 documents. first: Category:Education in Derbyshire and last: Channel Wagtail -[2018-02-13T00:40:14.164] [INFO] cheese - inserting 1000 documents. first: Quebec Liberal Party candidates, 2008 Quebec provincial election and last: C46H60FN3O13 -[2018-02-13T00:40:14.176] [INFO] cheese - inserting 1000 documents. first: Libido Blume and last: Sandra Knight -[2018-02-13T00:40:14.214] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:14.220] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:40:14.273] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:40:14.288] [INFO] cheese - inserting 1000 documents. first: Wenbi Temple in Changzhou and last: Limestone Lake (British Columbia) -[2018-02-13T00:40:14.291] [INFO] cheese - inserting 1000 documents. first: Čeněk of Wartenberg and last: Phrygia Pacatiana -[2018-02-13T00:40:14.392] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:40:14.394] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:40:14.443] [INFO] cheese - inserting 1000 documents. first: Category:Buyid officials and last: Hmong traditional religion -[2018-02-13T00:40:14.443] [INFO] cheese - inserting 1000 documents. first: Nigeria Port Authority F.C. and last: Roman Catholic Diocese of Piacenza-Bobbio -[2018-02-13T00:40:14.483] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:40:14.543] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:14.647] [INFO] cheese - inserting 1000 documents. first: Route 735 (Maryland) and last: Christopher Patterson (disambiguation) -[2018-02-13T00:40:14.689] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:40:14.709] [INFO] cheese - inserting 1000 documents. first: C27H42N2O5S and last: Template:Russia-footy-midfielder-1880s-stub -[2018-02-13T00:40:14.753] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:40:14.876] [INFO] cheese - inserting 1000 documents. first: Category:1917 in sports by country and last: Template:UnitedCounties-team-stub -[2018-02-13T00:40:14.879] [INFO] cheese - inserting 1000 documents. first: Mass surveillance in North Korea and last: Category:South Korean editors -[2018-02-13T00:40:14.918] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:40:14.925] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:14.946] [INFO] cheese - inserting 1000 documents. first: Gadhang and last: Template:Uw-hblock -[2018-02-13T00:40:14.953] [INFO] cheese - inserting 1000 documents. first: Davisville, R.I. and last: William Martin Conway, 1st Baron Conway of Allington -[2018-02-13T00:40:14.984] [INFO] cheese - inserting 1000 documents. first: Laura Gómez (disambiguation) and last: Wikipedia:WikiProject Alexandra Stan/Sidebar -[2018-02-13T00:40:14.990] [INFO] cheese - inserting 1000 documents. first: Philip Absolon and last: Sachsenhausen (Oranienburg) -[2018-02-13T00:40:14.993] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:40:15.010] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:40:15.033] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:40:15.092] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:40:15.111] [INFO] cheese - inserting 1000 documents. first: Gulfport Elementary and last: List of A-20 Havoc survivors -[2018-02-13T00:40:15.150] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:40:15.271] [INFO] cheese - inserting 1000 documents. first: BMW 316 and last: Shutdown Bangkok -[2018-02-13T00:40:15.361] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:40:15.397] [INFO] cheese - inserting 1000 documents. first: Category:Fictional United States cabinet members and last: Wikipedia:WikiProject Spam/LinkReports/escursionietna.com -[2018-02-13T00:40:15.463] [INFO] cheese - inserting 1000 documents. first: Yadegar Moxammat of Kazan and last: List of countries where Arabic is an official language -[2018-02-13T00:40:15.475] [INFO] cheese - inserting 1000 documents. first: Category:1673 in the Polish–Lithuanian Commonwealth and last: Hubbells -[2018-02-13T00:40:15.482] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:15.590] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:40:15.634] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:40:15.728] [INFO] cheese - inserting 1000 documents. first: Template:Edu-org-stub and last: Town Creek, Maryland -[2018-02-13T00:40:15.776] [INFO] cheese - inserting 1000 documents. first: USS Hiawatha and last: Ali Safa Sonboli -[2018-02-13T00:40:15.797] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:40:15.828] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:40:15.982] [INFO] cheese - inserting 1000 documents. first: Eupoecilia carneana and last: Qeshlaq Buzarjomehr -[2018-02-13T00:40:16.035] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:40:16.150] [INFO] cheese - inserting 1000 documents. first: File:Lady Gaga - Perfect Illusion.png and last: Category:Red Velvet (band) members -[2018-02-13T00:40:16.151] [INFO] cheese - inserting 1000 documents. first: Gabriel Tamaş and last: Philip Prowse -[2018-02-13T00:40:16.195] [INFO] cheese - inserting 1000 documents. first: Claire Coombs and last: Category:Prince George's County, Maryland Executives -[2018-02-13T00:40:16.208] [INFO] cheese - inserting 1000 documents. first: La nonne sanglante and last: Category:Andy Kim songs -[2018-02-13T00:40:16.226] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:40:16.234] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:40:16.276] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T00:40:16.301] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:40:16.395] [INFO] cheese - inserting 1000 documents. first: File:RatlleandHumWiki.jpg and last: Espíritu Libre -[2018-02-13T00:40:16.428] [INFO] cheese - inserting 1000 documents. first: 1978 Colgate-Palmolive Masters and last: John Edward Michael Moore, Baron Moore of Lower Marsh -[2018-02-13T00:40:16.457] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:40:16.473] [INFO] cheese - inserting 1000 documents. first: Category:Puerto Rican film people and last: Alex Gonzalez (pitcher) -[2018-02-13T00:40:16.480] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:40:16.540] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:40:16.597] [INFO] cheese - inserting 1000 documents. first: Category:Musicians by South Korean band and last: Category:Politicians from Hengyang -[2018-02-13T00:40:16.653] [INFO] cheese - inserting 1000 documents. first: Athens Ohio Halloween Block Party and last: Mbungu Ekofa -[2018-02-13T00:40:16.661] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:16.714] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:40:16.742] [INFO] cheese - inserting 1000 documents. first: L.P. Fisher Public Library and last: I Don't Have to Be Me ('til Monday) -[2018-02-13T00:40:16.763] [INFO] cheese - inserting 1000 documents. first: Don Box and last: Metropolitan Police Department of Washington D.C. -[2018-02-13T00:40:16.789] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:16.833] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:16.867] [INFO] cheese - inserting 1000 documents. first: USS Clarinda and last: Telangana University -[2018-02-13T00:40:16.906] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:40:16.966] [INFO] cheese - inserting 1000 documents. first: Gold Apollo and last: Ancient Unix -[2018-02-13T00:40:16.980] [INFO] cheese - inserting 1000 documents. first: Three Rock Scout County and last: File:Giant squid tentacle.png -[2018-02-13T00:40:17.006] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:40:17.018] [INFO] cheese - inserting 1000 documents. first: 1998 Air Force Falcons football team and last: Schistura subfusca -[2018-02-13T00:40:17.040] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:40:17.067] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:40:17.133] [INFO] cheese - inserting 1000 documents. first: Wiener process with drift and last: 11 Squadron SAAF -[2018-02-13T00:40:17.155] [INFO] cheese - inserting 1000 documents. first: Gravity Guidance System and last: The National Audubon Society -[2018-02-13T00:40:17.167] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:40:17.192] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:17.290] [INFO] cheese - inserting 1000 documents. first: Template:Big Brother endgame/color and last: Ethiopia-Qatar relations -[2018-02-13T00:40:17.437] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:17.459] [INFO] cheese - inserting 1000 documents. first: Labor-Management Relations Act and last: File:Morphing Rutan.jpg -[2018-02-13T00:40:17.507] [INFO] cheese - inserting 1000 documents. first: Richland Creek (Crows Fork Creek) and last: Template:2016 Summer Paralympics football 5-a-side game B6 -[2018-02-13T00:40:17.531] [INFO] cheese - inserting 1000 documents. first: Joe Cunningham (disambiguation) and last: File:Singin' the Blues ODJB Waterson 1920.jpg -[2018-02-13T00:40:17.568] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:40:17.572] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:40:17.584] [INFO] cheese - inserting 1000 documents. first: File:Logo bbsbec.png and last: Indian passport -[2018-02-13T00:40:17.590] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:40:17.680] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:40:17.710] [INFO] cheese - inserting 1000 documents. first: File:Gramme Ring Armature - Minimal Core Penetration.jpg and last: Charles Marquette -[2018-02-13T00:40:17.772] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:40:17.779] [INFO] cheese - inserting 1000 documents. first: Arıkonak, Sincik and last: Bac Le ambush -[2018-02-13T00:40:17.875] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:40:17.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canadian military history articles by quality/7 and last: Rhopalosyrphus -[2018-02-13T00:40:17.992] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:40:18.070] [INFO] cheese - inserting 1000 documents. first: Zephyr (Basement Jaxx EP) and last: Tell Salhab Nahiyah -[2018-02-13T00:40:18.077] [INFO] cheese - inserting 1000 documents. first: Liverpool F C in Europe and last: MC Mehta v. Kamal Nath -[2018-02-13T00:40:18.104] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:40:18.133] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:40:18.160] [INFO] cheese - inserting 1000 documents. first: Egypt at the 1906 Summer Olympics and last: Wikipedia:Reference desk/Archives/Science/2014 January 25 -[2018-02-13T00:40:18.191] [INFO] cheese - inserting 1000 documents. first: Tour de Georgia and last: Mary of Russia -[2018-02-13T00:40:18.199] [INFO] cheese - inserting 1000 documents. first: Puc-rj and last: 40 Commando, Royal Marines -[2018-02-13T00:40:18.207] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:40:18.255] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:40:18.264] [INFO] cheese - inserting 1000 documents. first: Kewin Orellana and last: Watterson, Berlin & Snyder, Inc. -[2018-02-13T00:40:18.264] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:40:18.324] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:40:18.359] [INFO] cheese - inserting 1000 documents. first: Madhya Gujarat Vij and last: List of 125cc/Moto3 Motorcycle World Champions -[2018-02-13T00:40:18.374] [INFO] cheese - inserting 1000 documents. first: MC Mini Masters and last: Michael JS Dewar -[2018-02-13T00:40:18.403] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:40:18.407] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:40:18.509] [INFO] cheese - inserting 1000 documents. first: Uqayribat Nahiyah and last: Anthony Standen -[2018-02-13T00:40:18.548] [INFO] cheese - inserting 1000 documents. first: St. Paul's Episcopal Church (Peoria, Illinois) and last: Template:Hamilton Municipal Election, 2014 Ward Thirteen -[2018-02-13T00:40:18.556] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:40:18.593] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:40:18.605] [INFO] cheese - inserting 1000 documents. first: 2011 in United Kingdom and last: Primagama Tutoring Institution -[2018-02-13T00:40:18.653] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:40:18.703] [INFO] cheese - inserting 1000 documents. first: File:Dusty... Definitely.jpg and last: David Chapman (cricketer) -[2018-02-13T00:40:18.704] [INFO] cheese - inserting 1000 documents. first: Michael M J Fischer and last: Nicol Dalgleish -[2018-02-13T00:40:18.739] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:40:18.760] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:40:18.783] [INFO] cheese - inserting 1000 documents. first: Fredric Rieders and last: Old Academy -[2018-02-13T00:40:18.832] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:40:18.949] [INFO] cheese - inserting 1000 documents. first: Sam ritchie and last: MasterChef (US season 5) -[2018-02-13T00:40:18.992] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:40:19.009] [INFO] cheese - inserting 1000 documents. first: 1906 Colorado Silver and Gold football team and last: Two-veined hickory -[2018-02-13T00:40:19.028] [INFO] cheese - inserting 1000 documents. first: Richmond (Nova Scotia federal electoral district) and last: Guitar amp -[2018-02-13T00:40:19.091] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:40:19.110] [INFO] cheese - inserting 1000 documents. first: Ed Fryatt and last: Hypnomys -[2018-02-13T00:40:19.206] [INFO] cheese - inserting 1000 documents. first: Как пропатчить KDE2 под FreeBSD? and last: Trochalopteron lineatum -[2018-02-13T00:40:19.232] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:40:19.290] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:40:19.393] [INFO] cheese - inserting 1000 documents. first: Saint Sanctain and last: Synchroton-radiation X-ray tomographic microscopy -[2018-02-13T00:40:19.426] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:40:19.515] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:19.565] [INFO] cheese - inserting 1000 documents. first: Sailing at the 1924 Summer Olympics - 6 metre class and last: Norm Thompson Outfitters -[2018-02-13T00:40:19.601] [INFO] cheese - inserting 1000 documents. first: Gas (fuel) and last: Wikipedia:Reference desk/Archives/Science/2014 January 26 -[2018-02-13T00:40:19.683] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:40:19.723] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:19.840] [INFO] cheese - inserting 1000 documents. first: Lycée d'enseignement professionnel Florian and last: Universidad Católica del Ecuador -[2018-02-13T00:40:19.920] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:40:20.018] [INFO] cheese - inserting 1000 documents. first: Stigma (ligature) and last: Ufc.mn -[2018-02-13T00:40:20.094] [INFO] cheese - inserting 1000 documents. first: Trochalopteron erythrocephalum and last: File:View of Kiev's banks.JPG -[2018-02-13T00:40:20.130] [INFO] cheese - inserting 1000 documents. first: Jesse mcartney and last: Category:Banks of Uganda -[2018-02-13T00:40:20.130] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T00:40:20.154] [INFO] cheese - inserting 1000 documents. first: 2002–03 QMJHL season and last: Partido Galeguista -[2018-02-13T00:40:20.167] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:40:20.170] [INFO] cheese - inserting 1000 documents. first: White drummer cicada and last: Johann Georg Leumann -[2018-02-13T00:40:20.237] [INFO] cheese - inserting 1000 documents. first: Harold Schindler and last: Shame of Gijón -[2018-02-13T00:40:20.250] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:40:20.259] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:20.263] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:40:20.335] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:40:20.397] [INFO] cheese - inserting 1000 documents. first: Club Deportivo Universidad Técnica de Cotopaxi and last: Petrachi -[2018-02-13T00:40:20.444] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:40:20.552] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese capitals and last: Environmental physiologies -[2018-02-13T00:40:20.619] [INFO] cheese - inserting 1000 documents. first: Template:Wikiversity-c and last: Plastic leather -[2018-02-13T00:40:20.619] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:20.623] [INFO] cheese - inserting 1000 documents. first: The Last Temptation and last: Folklore (journal) -[2018-02-13T00:40:20.625] [INFO] cheese - inserting 1000 documents. first: Brachopterella and last: Rising limb -[2018-02-13T00:40:20.663] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:20.672] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:40:20.676] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:40:20.700] [INFO] cheese - inserting 1000 documents. first: Jestice and last: Pz III -[2018-02-13T00:40:20.757] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:40:20.872] [INFO] cheese - inserting 1000 documents. first: Wootton or Wootton Bridge and last: William Hervy Lamb Wallace -[2018-02-13T00:40:20.882] [INFO] cheese - inserting 1000 documents. first: Draft:Jocelyne Meinert and last: Template:Did you know nominations/Astrodatabank -[2018-02-13T00:40:20.921] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:40:20.929] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:40:21.006] [INFO] cheese - inserting 1000 documents. first: Hendiadyoin and last: List of Historic buildings in Guangzhou -[2018-02-13T00:40:21.056] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:40:21.107] [INFO] cheese - inserting 1000 documents. first: United Congolese Party and last: Category:Unincorporated communities in Miner County, South Dakota -[2018-02-13T00:40:21.140] [INFO] cheese - inserting 1000 documents. first: Engineering Research Center for Collaborative Adaptive Sensing of the Atmosphere and last: Whitefish Range -[2018-02-13T00:40:21.167] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:40:21.186] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:40:21.214] [INFO] cheese - inserting 1000 documents. first: Sophie of Württemberg (1563-1590) and last: Category:1552 in military history -[2018-02-13T00:40:21.225] [INFO] cheese - inserting 1000 documents. first: Pz IV and last: Summersonic -[2018-02-13T00:40:21.237] [INFO] cheese - inserting 1000 documents. first: Santorini tomato and last: Olivine Creek (British Columbia) -[2018-02-13T00:40:21.262] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:40:21.291] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:40:21.297] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:40:21.410] [INFO] cheese - inserting 1000 documents. first: St Mary's, Tilston and last: Wikipedia:Articles for deletion/Dark Princess -[2018-02-13T00:40:21.446] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:40:21.535] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected copyright violations/2014-02-01 and last: SpVgg Deggendorf -[2018-02-13T00:40:21.629] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:40:21.747] [INFO] cheese - inserting 1000 documents. first: Taal (film) and last: The Kentucky Kernel -[2018-02-13T00:40:21.776] [INFO] cheese - inserting 1000 documents. first: Mark Mazetti and last: File:CSL timeline.PNG -[2018-02-13T00:40:21.790] [INFO] cheese - inserting 1000 documents. first: Category:1553 in military history and last: Template:Poland men volleyball team 2016 CEV U20 European Championship -[2018-02-13T00:40:21.831] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:40:21.834] [INFO] cheese - inserting 1000 documents. first: C20H19F5N2O and last: Wikipedia:WikiProject Spam/Local/files.ifnimidi.com -[2018-02-13T00:40:21.844] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:40:21.882] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:40:21.925] [INFO] cheese - inserting 1000 documents. first: Greatest Hits (The Human League album) and last: Aquacade -[2018-02-13T00:40:21.951] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:40:21.982] [INFO] cheese - inserting 1000 documents. first: NE-1000 and last: Crosby Cross-Roads -[2018-02-13T00:40:22.005] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:40:22.074] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:40:22.155] [INFO] cheese - inserting 1000 documents. first: Pembroke Manor and last: United States presidential election in Utah, 1976 -[2018-02-13T00:40:22.241] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:40:22.311] [INFO] cheese - inserting 1000 documents. first: Category:Finnish men's volleyball players and last: Wikipedia:Articles for deletion/Panthers-Seahawks rivalry -[2018-02-13T00:40:22.377] [INFO] cheese - inserting 1000 documents. first: ACACB and last: Lewis and Clark Law Review -[2018-02-13T00:40:22.381] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:40:22.455] [INFO] cheese - inserting 1000 documents. first: The Five Companions and last: Category:Populated places in St. Landry Parish, Louisiana -[2018-02-13T00:40:22.511] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:40:22.537] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:40:22.619] [INFO] cheese - inserting 1000 documents. first: Claris XTND and last: TV Scoreboard -[2018-02-13T00:40:22.627] [INFO] cheese - inserting 1000 documents. first: Highlander, Isle of Man and last: STRN -[2018-02-13T00:40:22.726] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:40:22.756] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:40:22.768] [INFO] cheese - inserting 1000 documents. first: List of postal codes in Serbia and last: Brazil at the 1992 Summer Olympics -[2018-02-13T00:40:22.832] [INFO] cheese - inserting 1000 documents. first: List of The Musketeers episodes and last: Colorado Christian Cougars baseball -[2018-02-13T00:40:22.861] [INFO] cheese - inserting 1000 documents. first: 2016 Morocco Tennis Tour - Meknes - Singles and last: U Lac -[2018-02-13T00:40:22.909] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:40:22.955] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:40:22.958] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:40:23.260] [INFO] cheese - inserting 1000 documents. first: Southern California Law Review and last: Template:2001-02 in Scottish football -[2018-02-13T00:40:23.282] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:InMooseWeTrust/Anthony Bologna and last: File:Killer-fish.jpg -[2018-02-13T00:40:23.324] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:40:23.341] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:40:23.362] [INFO] cheese - inserting 1000 documents. first: SketchCom and last: Cherry picking tax avoidance -[2018-02-13T00:40:23.365] [INFO] cheese - inserting 1000 documents. first: Prospero Productions and last: Brice Vivien Batchaya Ketchanke -[2018-02-13T00:40:23.393] [INFO] cheese - inserting 1000 documents. first: Top Duck and last: Cinema of Myanmar -[2018-02-13T00:40:23.408] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:40:23.439] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:40:23.460] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:40:23.544] [INFO] cheese - inserting 1000 documents. first: Colorado Christian Cougars men's basketball and last: Carlyle Township -[2018-02-13T00:40:23.683] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:40:23.796] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 in Scottish football and last: A Simple Noodle Story -[2018-02-13T00:40:23.841] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Adams County, Mississippi and last: Stephen Simmonds (swimmer) -[2018-02-13T00:40:23.847] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:40:23.889] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:40:23.899] [INFO] cheese - inserting 1000 documents. first: Richard Wyndham and last: Casas de Eufemia -[2018-02-13T00:40:23.943] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:40:23.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2008-01-14/2007 in review and last: PPST -[2018-02-13T00:40:23.981] [INFO] cheese - inserting 1000 documents. first: O'hare and last: Runaway Horses -[2018-02-13T00:40:23.997] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:40:24.032] [INFO] cheese - inserting 1000 documents. first: Vanya Stambolova and last: Phyllis Eisenstein -[2018-02-13T00:40:24.079] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T00:40:24.105] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:40:24.130] [INFO] cheese - inserting 1000 documents. first: Douglas School and last: Category:Geography of Phnom Penh -[2018-02-13T00:40:24.187] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:40:24.264] [INFO] cheese - inserting 1000 documents. first: Template:Infobox US metropolitan area/doc and last: Wikipedia:Articles for deletion/American-born Chinese -[2018-02-13T00:40:24.341] [INFO] cheese - inserting 1000 documents. first: Category:1338 in England and last: Athene Royal Serge Creuz -[2018-02-13T00:40:24.344] [INFO] cheese - inserting 1000 documents. first: Antoine-François Delandine and last: Radio G.R.E.M. -[2018-02-13T00:40:24.343] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:40:24.419] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:40:24.456] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:40:24.536] [INFO] cheese - inserting 1000 documents. first: /- and last: Harry Reese -[2018-02-13T00:40:24.609] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:40:24.694] [INFO] cheese - inserting 1000 documents. first: USS Athene (AKA-22) and last: Wikipedia:IBT -[2018-02-13T00:40:24.764] [INFO] cheese - inserting 1000 documents. first: Douglas C. Steltz and last: United States gubernatorial elections, 1965 -[2018-02-13T00:40:24.810] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:40:24.877] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:40:24.965] [INFO] cheese - inserting 1000 documents. first: Itzhak Ilan and last: Law and Corpus Linguistics -[2018-02-13T00:40:24.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/merchant-accounts.ca and last: Murder One (bookshop) -[2018-02-13T00:40:24.977] [INFO] cheese - inserting 1000 documents. first: Dark Night (song) and last: Sheldgoose -[2018-02-13T00:40:24.997] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:40:25.021] [INFO] cheese - inserting 1000 documents. first: I ragazzi della 3ª C and last: Magdagachinski Raion -[2018-02-13T00:40:25.024] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:40:25.054] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:40:25.076] [INFO] cheese - inserting 1000 documents. first: (9954) 1991 GX7 and last: Bergamasco (language) -[2018-02-13T00:40:25.075] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:40:25.154] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:40:25.242] [INFO] cheese - inserting 1000 documents. first: Macotasa dimorpha and last: Sigma epsilon phi -[2018-02-13T00:40:25.280] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:25.283] [INFO] cheese - inserting 1000 documents. first: Automatic teller safe and last: Sea View Community Primary School -[2018-02-13T00:40:25.326] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:40:25.368] [INFO] cheese - inserting 1000 documents. first: Clayton Moss(the cross guitarist) and last: Wikipedia:Deletion review/Log/2016 September 13 -[2018-02-13T00:40:25.412] [INFO] cheese - inserting 1000 documents. first: Magdagachinskii Raion and last: Mial -[2018-02-13T00:40:25.415] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:40:25.462] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:40:25.486] [INFO] cheese - inserting 1000 documents. first: Irish League 1934-35 and last: Multiple marriage -[2018-02-13T00:40:25.560] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:25.573] [INFO] cheese - inserting 1000 documents. first: Ramsey Plaza Station and last: Wikipedia:Picture peer review/Roman bireme -[2018-02-13T00:40:25.654] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:40:25.670] [INFO] cheese - inserting 1000 documents. first: Category:Country data templates of Georgia and last: Goleh Dari Mohammad Hoseyn Mohammadi -[2018-02-13T00:40:25.726] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:40:25.763] [INFO] cheese - inserting 1000 documents. first: Girolamo Crescentini and last: Liddo-kun's Big Adventure -[2018-02-13T00:40:25.816] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:40:25.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for discussion/2016 September 13 and last: U.S. Army history -[2018-02-13T00:40:25.838] [INFO] cheese - inserting 1000 documents. first: Daryl Wilcher and last: Wikipedia:Articles for deletion/Permanent Ability (2nd nomination) -[2018-02-13T00:40:25.859] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:25.908] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:40:25.947] [INFO] cheese - inserting 1000 documents. first: Gourcuff and last: De La Salle College, Waterford -[2018-02-13T00:40:25.958] [INFO] cheese - inserting 1000 documents. first: Irish League 1916-17 and last: Valediction (2009 film) -[2018-02-13T00:40:25.999] [INFO] cheese - inserting 1000 documents. first: Hasanabad-e Sanjarlu and last: Category:Buildings and structures in An Giang Province -[2018-02-13T00:40:26.016] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:40:26.085] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:40:26.081] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:26.144] [INFO] cheese - inserting 1000 documents. first: Antonio Géder and last: Haitang Wan -[2018-02-13T00:40:26.243] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:40:26.358] [INFO] cheese - inserting 1000 documents. first: List of Great Lives programmes and last: Template:RK Zamet 2003-04 squad -[2018-02-13T00:40:26.430] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:40:26.513] [INFO] cheese - inserting 1000 documents. first: List of Indian states by the etymology of their name and last: Wikipedia:Articles for deletion/Jeff Roland -[2018-02-13T00:40:26.571] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anarchocrapitalism and last: Tgag Broad -[2018-02-13T00:40:26.574] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:40:26.659] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:40:26.713] [INFO] cheese - inserting 1000 documents. first: National Kunming Normal College and last: Ruslan Fakhriyev -[2018-02-13T00:40:26.746] [INFO] cheese - inserting 1000 documents. first: Category:People from Boussu and last: Portal:Literature/Excerpts/18 -[2018-02-13T00:40:26.805] [INFO] cheese - inserting 1000 documents. first: Wafah Dufour (bin Ladin) and last: Ikhtiyar Al-Din Muhammad Bin Bakhtiyar Khalji -[2018-02-13T00:40:26.807] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:40:26.816] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:40:26.844] [INFO] cheese - inserting 1000 documents. first: Sony Minidisk and last: Sawridge -[2018-02-13T00:40:26.907] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:40:26.929] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:40:26.989] [INFO] cheese - inserting 1000 documents. first: Category:Churches in Guayaquil and last: Jackson, Harry -[2018-02-13T00:40:27.067] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:40:27.210] [INFO] cheese - inserting 1000 documents. first: William Bludworth and last: Thomas Lear -[2018-02-13T00:40:27.286] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:27.345] [INFO] cheese - inserting 1000 documents. first: Petrogypsies and last: Wikipedia:Peer review/Julia Butterfly Hill/archive1 -[2018-02-13T00:40:27.393] [INFO] cheese - inserting 1000 documents. first: Portal:Literature/Excerpts/19 and last: Template:Cite DANAS -[2018-02-13T00:40:27.393] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:40:27.411] [INFO] cheese - inserting 1000 documents. first: Dainn (lunia) and last: Battle of Lemo -[2018-02-13T00:40:27.441] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:27.509] [INFO] cheese - inserting 1000 documents. first: Transgressing the Boundaries: Towards a Transformative Hermeneutics of Quantum Gravity and last: WABE -[2018-02-13T00:40:27.518] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:40:27.522] [INFO] cheese - inserting 1000 documents. first: Gordon Juckes and last: Ranking Miss P -[2018-02-13T00:40:27.543] [INFO] cheese - inserting 1000 documents. first: Jacobs, Harry and last: Arctolamia fruhstorferi laosica -[2018-02-13T00:40:27.566] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:40:27.597] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:40:27.655] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:40:27.812] [INFO] cheese - inserting 1000 documents. first: Lear (surname) and last: ITU G.992.3 Annex J -[2018-02-13T00:40:27.838] [INFO] cheese - inserting 1000 documents. first: Martin W. Deyo and last: Portal:Paleozoic/Natural world articles/45 -[2018-02-13T00:40:27.854] [INFO] cheese - inserting 1000 documents. first: McAlister Drive and last: National Federation of Fish Friers -[2018-02-13T00:40:27.859] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:27.884] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:27.910] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:40:27.998] [INFO] cheese - inserting 1000 documents. first: WQUN and last: Nokia 8800 Arte -[2018-02-13T00:40:28.055] [INFO] cheese - inserting 1000 documents. first: Template:WKU Hilltoppers and Lady Toppers athletic director navbox and last: Alibaba and 40 Thieves (1954 film) -[2018-02-13T00:40:28.055] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:40:28.076] [INFO] cheese - inserting 1000 documents. first: Xavier Florencio Cabre and last: Template:MedalCountry -[2018-02-13T00:40:28.094] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:40:28.146] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:40:28.198] [INFO] cheese - inserting 1000 documents. first: ITU G.992.3 Annex L and last: Robin Johns -[2018-02-13T00:40:28.263] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:40:28.369] [INFO] cheese - inserting 1000 documents. first: 2014 Fed Cup Europe/Africa Zone Group III – Pool A and last: Location vacation -[2018-02-13T00:40:28.392] [INFO] cheese - inserting 1000 documents. first: File:ConzadellaCampania-Stemma.gif and last: BarclayCard -[2018-02-13T00:40:28.471] [INFO] cheese - inserting 1000 documents. first: Category:2012 in Swedish cinema and last: Wikipedia:WikiProject Spam/LinkReports/googleenterprise.blogspot.co.nz -[2018-02-13T00:40:28.484] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:40:28.496] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:40:28.592] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:40:28.694] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sumoton and last: Template:Kraki -[2018-02-13T00:40:28.783] [INFO] cheese - inserting 1000 documents. first: Santafair and last: Herb Brackenreg -[2018-02-13T00:40:28.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Houngan (comics) and last: Wilhelm Grunwald -[2018-02-13T00:40:28.807] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T00:40:28.833] [INFO] cheese - inserting 1000 documents. first: File:Ckyvideocovers.jpg and last: Kaingaroa, New Zealand -[2018-02-13T00:40:28.893] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:40:28.934] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:40:28.947] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:40:29.076] [INFO] cheese - inserting 1000 documents. first: Melese klagesi and last: Mysore Colony monorail station -[2018-02-13T00:40:29.086] [INFO] cheese - inserting 1000 documents. first: USS Aeolus (SP-186) and last: Eierdiebe -[2018-02-13T00:40:29.140] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:40:29.151] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:40:29.193] [INFO] cheese - inserting 1000 documents. first: Piata unirii and last: Baral, Pakistan -[2018-02-13T00:40:29.296] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:40:29.558] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day/03/12 and last: Roman Catholic Diocese of Nakuru -[2018-02-13T00:40:29.638] [INFO] cheese - inserting 1000 documents. first: The Mole Show Live at the Roxy and last: File:Johnny Bright Incident.jpg -[2018-02-13T00:40:29.677] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:40:29.721] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:40:29.769] [INFO] cheese - inserting 1000 documents. first: Fareast 18R and last: Scottish Waterways Trust -[2018-02-13T00:40:29.793] [INFO] cheese - inserting 1000 documents. first: Michele Merlo and last: Black-billed Woodhoopoe -[2018-02-13T00:40:29.861] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:29.905] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:40:30.046] [INFO] cheese - inserting 1000 documents. first: Hheuk yeomso tang and last: Scott Caudill -[2018-02-13T00:40:30.208] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:40:30.452] [INFO] cheese - inserting 1000 documents. first: Sabrevois, Quebec and last: Stephfon Green -[2018-02-13T00:40:30.454] [INFO] cheese - inserting 1000 documents. first: Nøstvet culture and last: Wikipedia:Articles for deletion/Affordable luxury -[2018-02-13T00:40:30.540] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:30.542] [INFO] cheese - inserting 1000 documents. first: Durag-e Madineh and last: Metamya intersecta -[2018-02-13T00:40:30.563] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:40:30.576] [INFO] cheese - inserting 1000 documents. first: Kayusid and last: Chosunilbo -[2018-02-13T00:40:30.619] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:40:30.663] [INFO] cheese - inserting 1000 documents. first: Lighters and last: LMS Class 4P 2-6-4T (1945) -[2018-02-13T00:40:30.689] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:40:30.777] [INFO] cheese - batch complete in: 1.97 secs -[2018-02-13T00:40:30.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Why Medical Schools Should Embrace Wikipedia and last: File:Logo-publiceye-mobile.png -[2018-02-13T00:40:30.866] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:40:31.024] [INFO] cheese - inserting 1000 documents. first: Gordon Smith (New Zealand footballer) and last: Animal Planet (Germany) -[2018-02-13T00:40:31.064] [INFO] cheese - inserting 1000 documents. first: Chief Pathkiller and last: Wikipedia:Requests for arbitration/Kingofmann/Workshop -[2018-02-13T00:40:31.074] [INFO] cheese - inserting 1000 documents. first: Eve Aline Plumb and last: Aldophosphamide -[2018-02-13T00:40:31.073] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:31.118] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:40:31.140] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:40:31.223] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Islamophobia (3rd nomination) and last: Antonio José Martínez Palacios -[2018-02-13T00:40:31.260] [INFO] cheese - inserting 1000 documents. first: Illinois State Beach and last: Elizabeth Shove -[2018-02-13T00:40:31.291] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:31.331] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:40:31.479] [INFO] cheese - inserting 1000 documents. first: Portal:Time/Portals and WikiProjects/box-header and last: Wikipedia:Articles for deletion/Human Top (Bruce Bravelle) -[2018-02-13T00:40:31.488] [INFO] cheese - inserting 1000 documents. first: Discovery Channel (France) and last: Ian Perrotte -[2018-02-13T00:40:31.507] [INFO] cheese - inserting 1000 documents. first: Picasa2 and last: Aisyt -[2018-02-13T00:40:31.522] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:40:31.528] [INFO] cheese - inserting 1000 documents. first: Template:S-line/Mumbai Suburban Railway right/Harbour and last: Paramya bricenoi -[2018-02-13T00:40:31.530] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:40:31.593] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:40:31.614] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:40:31.739] [INFO] cheese - inserting 1000 documents. first: Category:1991 in Brazilian television and last: Danger Has Two Faces -[2018-02-13T00:40:31.860] [INFO] cheese - inserting 1000 documents. first: Category:Cyclists at the 2002 Commonwealth Games and last: Rigi (software) -[2018-02-13T00:40:31.890] [INFO] cheese - inserting 1000 documents. first: Carter Creek (Current River) and last: Clerk of the Crown and Hanaper -[2018-02-13T00:40:31.900] [INFO] cheese - batch complete in: 3.007 secs -[2018-02-13T00:40:31.983] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:40:31.993] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:40:32.090] [INFO] cheese - inserting 1000 documents. first: Makarajyoti and last: Tun Mustapha -[2018-02-13T00:40:32.250] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:40:32.335] [INFO] cheese - inserting 1000 documents. first: Port Lihou and last: Anton Braith -[2018-02-13T00:40:32.468] [INFO] cheese - inserting 1000 documents. first: Domagoj Kapeć and last: Revolt of the Barretinas -[2018-02-13T00:40:32.491] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:40:32.536] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:40:32.650] [INFO] cheese - inserting 1000 documents. first: Pop Goes the Ed and last: Tom Gabriel Fischer -[2018-02-13T00:40:32.750] [INFO] cheese - inserting 1000 documents. first: Tudela and last: Clitheroe (UK Parliament constituency) -[2018-02-13T00:40:32.752] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T00:40:32.759] [INFO] cheese - inserting 1000 documents. first: Conscience Films and last: John Lillibridge -[2018-02-13T00:40:32.826] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:40:32.838] [INFO] cheese - inserting 1000 documents. first: Category:1915 disestablishments in the Philippines and last: Category:Equestrian statues in New Jersey -[2018-02-13T00:40:32.845] [INFO] cheese - inserting 1000 documents. first: Anthony Messner and last: Spatial Visualization Ability -[2018-02-13T00:40:32.850] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:40:32.919] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:40:33.014] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T00:40:33.072] [INFO] cheese - inserting 1000 documents. first: Daniel Merillon and last: Zone press -[2018-02-13T00:40:33.079] [INFO] cheese - inserting 1000 documents. first: N-I rocket and last: A.C. Milan records -[2018-02-13T00:40:33.133] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:40:33.132] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:40:33.409] [INFO] cheese - inserting 1000 documents. first: Jimmy Todd (Scottish footballer) and last: Funryu -[2018-02-13T00:40:33.469] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:40:33.487] [INFO] cheese - inserting 1000 documents. first: Lamine Ben Aziza and last: St. Thomas' Church, St. Annes-on-Sea -[2018-02-13T00:40:33.525] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured portal candidates/Featured log/August 2006 and last: U-can -[2018-02-13T00:40:33.573] [INFO] cheese - inserting 1000 documents. first: S fone and last: Aepyornis maximus -[2018-02-13T00:40:33.579] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:40:33.631] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:40:33.746] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:40:33.771] [INFO] cheese - inserting 1000 documents. first: Species Richness and last: Future Combat Systems Infantry Carrier Vehicle -[2018-02-13T00:40:33.802] [INFO] cheese - inserting 1000 documents. first: Category:Danish people of Vietnamese descent and last: File:NBA 2K2 Cover.jpg -[2018-02-13T00:40:33.867] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T00:40:33.875] [INFO] cheese - inserting 1000 documents. first: Template:Shiraz County and last: Wikipedia:Sockpuppet investigations/Hamelmelaga -[2018-02-13T00:40:33.881] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:40:33.968] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:40:33.975] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2011-10-04 and last: Wikipedia:WikiProject Spam/Local/5by5.tv -[2018-02-13T00:40:34.033] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:40:34.099] [INFO] cheese - inserting 1000 documents. first: Equestrian statue of Chulalongkorn and last: Category:1836 in the Grand Duchy of Tuscany -[2018-02-13T00:40:34.118] [INFO] cheese - inserting 1000 documents. first: Boarding School and last: Bzovík -[2018-02-13T00:40:34.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sterkebak.com and last: Kerstin Juergens -[2018-02-13T00:40:34.142] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:40:34.163] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:34.174] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:40:34.317] [INFO] cheese - inserting 1000 documents. first: Atsede Kidanu and last: Lights, Camera, Moo! -[2018-02-13T00:40:34.334] [INFO] cheese - inserting 1000 documents. first: Marital property and last: Mazra'eh-ye Pir Badam -[2018-02-13T00:40:34.336] [INFO] cheese - inserting 1000 documents. first: Category:Canadian military transport aircraft 1950–1959 and last: Guillem de Cabestaing -[2018-02-13T00:40:34.357] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:40:34.379] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:40:34.379] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:40:34.422] [INFO] cheese - inserting 1000 documents. first: Targeted repurchase and last: 1997 in British music -[2018-02-13T00:40:34.470] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:34.516] [INFO] cheese - inserting 1000 documents. first: Guru (2017 film) and last: Nether district Vítkovice -[2018-02-13T00:40:34.564] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:40:34.626] [INFO] cheese - inserting 1000 documents. first: Terme (disambiguation) and last: Roger Anthony Bull -[2018-02-13T00:40:34.646] [INFO] cheese - inserting 1000 documents. first: Voices of Animals and Men and last: Beresnevicius -[2018-02-13T00:40:34.673] [INFO] cheese - inserting 1000 documents. first: Tarbor-e Bala and last: Martin Foltyn -[2018-02-13T00:40:34.677] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:40:34.699] [INFO] cheese - inserting 1000 documents. first: Animal Farmers and last: Category:Cancelled Super Nintendo Entertainment System games -[2018-02-13T00:40:34.701] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:40:34.716] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:40:34.772] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:40:34.961] [INFO] cheese - inserting 1000 documents. first: File:Gamest 1986-05 Issue 001 cover.jpg and last: Portal:Early Modern Britain/Selected media/2 -[2018-02-13T00:40:35.012] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:40:35.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/October 2011 and last: Category:United States civil aircraft 1960–1969 -[2018-02-13T00:40:35.160] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:40:35.220] [INFO] cheese - inserting 1000 documents. first: Margaret “Peggy” Focarino and last: South Africa women's national softball team -[2018-02-13T00:40:35.237] [INFO] cheese - inserting 1000 documents. first: Category:User ccp-N and last: Template:AFB game box end/doc -[2018-02-13T00:40:35.271] [INFO] cheese - inserting 1000 documents. first: File:Scrotum.png and last: Bœrsch -[2018-02-13T00:40:35.285] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:40:35.301] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:40:35.349] [INFO] cheese - inserting 1000 documents. first: Low Germanic languages and last: File:Twilight-imperium-layout 12.jpg -[2018-02-13T00:40:35.358] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:40:35.471] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:35.572] [INFO] cheese - inserting 1000 documents. first: Portal:Early Modern Britain/Selected media/3 and last: Category:Somalia at the Paralympics -[2018-02-13T00:40:35.613] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pierre Clèment and last: Maximum Break -[2018-02-13T00:40:35.639] [INFO] cheese - inserting 1000 documents. first: Grande Saline, Haiti and last: Government Center, Miami, FL -[2018-02-13T00:40:35.646] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:35.672] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:40:35.678] [INFO] cheese - inserting 1000 documents. first: Category:United States civil aircraft 1970–1979 and last: Template:Latter Day Saint biography/William Clayton (Mormon) -[2018-02-13T00:40:35.701] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T00:40:35.711] [INFO] cheese - inserting 1000 documents. first: OPQ Letters and last: P.C. Cast -[2018-02-13T00:40:35.729] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:35.775] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:40:35.886] [INFO] cheese - inserting 1000 documents. first: Dmitriy Zarva and last: Vitali Pyanchenko -[2018-02-13T00:40:35.946] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:40:36.011] [INFO] cheese - inserting 1000 documents. first: Great Explorations, The Children's Museum in St. Petersburg, FL and last: Quot scheme -[2018-02-13T00:40:36.023] [INFO] cheese - inserting 1000 documents. first: Ezequias and last: List of Shadow Raiders planets -[2018-02-13T00:40:36.056] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:40:36.094] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:40:36.135] [INFO] cheese - inserting 1000 documents. first: Rallus indicus and last: Pirelli General FC -[2018-02-13T00:40:36.135] [INFO] cheese - inserting 1000 documents. first: Zübeyde Süpürgeci and last: Barcelona (Spanish Congress Electoral District) -[2018-02-13T00:40:36.175] [INFO] cheese - inserting 1000 documents. first: The Constance Perkins House and last: Category:Suicide bombings in Somalia -[2018-02-13T00:40:36.178] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:36.194] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:40:36.286] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:36.443] [INFO] cheese - inserting 1000 documents. first: Ukrainian Second League 1999-00 and last: The Billy Bush Show! -[2018-02-13T00:40:36.451] [INFO] cheese - inserting 1000 documents. first: Category:Division Films films and last: File:The Canadian Institute of Diversity and Inclusion.jpg -[2018-02-13T00:40:36.484] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:36.490] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:40:36.499] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in the Cook Islands and last: Category:Teen superhero television programs -[2018-02-13T00:40:36.542] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:40:36.544] [INFO] cheese - inserting 1000 documents. first: Otel Madimak and last: Forbes (band) -[2018-02-13T00:40:36.578] [INFO] cheese - inserting 1000 documents. first: Florida's 22nd congressional district and last: Earl Siebert -[2018-02-13T00:40:36.584] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:40:36.602] [INFO] cheese - inserting 1000 documents. first: Bergen Air Transport and last: This Place Hotel -[2018-02-13T00:40:36.662] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:40:36.733] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T00:40:36.783] [INFO] cheese - inserting 1000 documents. first: File:Laurapausini gira madrid.jpg and last: Category:Education in Union County, Mississippi -[2018-02-13T00:40:36.898] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:40:37.034] [INFO] cheese - inserting 1000 documents. first: Journey to Self and last: Busan–Gimhae Light Rail Transit Company -[2018-02-13T00:40:37.043] [INFO] cheese - inserting 1000 documents. first: Heather Mansfield and last: Category:LGBT Native Hawaiian culture -[2018-02-13T00:40:37.065] [INFO] cheese - inserting 1000 documents. first: List of governors of Kabul and last: Wikipedia:WikiProject Spam/LinkReports/bangboard.de -[2018-02-13T00:40:37.103] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:40:37.135] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:40:37.152] [INFO] cheese - inserting 1000 documents. first: Quarter-pinched sphere theorem and last: Flag of Chukotka -[2018-02-13T00:40:37.174] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:37.220] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:40:37.260] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk archive/Language/2006 August 13 and last: Portal:Humor/Weekly Colaboration/Next Week -[2018-02-13T00:40:37.319] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:40:37.388] [INFO] cheese - inserting 1000 documents. first: Category:Education in Montgomery County, Mississippi and last: Wikipedia:WikiProject Spam/Local/pingsite.org -[2018-02-13T00:40:37.441] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:40:37.568] [INFO] cheese - inserting 1000 documents. first: Mircea Baniciu and last: 5678's -[2018-02-13T00:40:37.602] [INFO] cheese - inserting 1000 documents. first: Juliusz Fortunat Kossak and last: Tahoe-LAFS -[2018-02-13T00:40:37.607] [INFO] cheese - inserting 1000 documents. first: Abdulamalek Al-Shammeri and last: Category:Wikipedia sockpuppets of Kanojiaakhbaar -[2018-02-13T00:40:37.620] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:40:37.642] [INFO] cheese - inserting 1000 documents. first: Thomson River Dam and last: Laura Ucros Tellez -[2018-02-13T00:40:37.653] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:40:37.693] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Cape Verde articles and last: Category:A-Class Uganda articles -[2018-02-13T00:40:37.707] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:37.713] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:40:37.740] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:40:37.816] [INFO] cheese - inserting 1000 documents. first: Lau Kong Yung v Director of Immigration and last: Yom kippur war -[2018-02-13T00:40:37.849] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:40:37.852] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lovemyseat and last: Roughton, Norfolk -[2018-02-13T00:40:37.909] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:40:38.022] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of XZillX and last: Shahid Ghoddoosi Metro Station -[2018-02-13T00:40:38.048] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:40:38.069] [INFO] cheese - inserting 1000 documents. first: Lake Kolima and last: Microaggressions -[2018-02-13T00:40:38.086] [INFO] cheese - inserting 1000 documents. first: Les Rallizes Denudes and last: Orestes H. Caldwell -[2018-02-13T00:40:38.105] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:40:38.126] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:40:38.135] [INFO] cheese - inserting 1000 documents. first: 1997 "M" Electronika Cup and last: Set logic -[2018-02-13T00:40:38.163] [INFO] cheese - inserting 1000 documents. first: Qaleh Ganj and last: Category:Chinese fighter aircraft 1940–1949 -[2018-02-13T00:40:38.197] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:40:38.195] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:40:38.307] [INFO] cheese - inserting 1000 documents. first: Earina autumnalis and last: Megas (album) -[2018-02-13T00:40:38.352] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:38.368] [INFO] cheese - inserting 1000 documents. first: 2016 russian parliamentary elections and last: Real Man (disambiguation) -[2018-02-13T00:40:38.404] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:40:38.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Systemic Bias and last: Phillip Ashton -[2018-02-13T00:40:38.465] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:40:38.477] [INFO] cheese - inserting 1000 documents. first: Category:Economic and Social Research Institute and last: Category:Law firms of Spain -[2018-02-13T00:40:38.519] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:40:38.554] [INFO] cheese - inserting 1000 documents. first: Category:Czech military trainer aircraft 2000–2009 and last: Wikipedia:WikiProject Spam/Local/solarmovie.eu -[2018-02-13T00:40:38.582] [INFO] cheese - inserting 1000 documents. first: Blue-Will and last: Red-eared-slider turtle -[2018-02-13T00:40:38.630] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:40:38.641] [INFO] cheese - inserting 1000 documents. first: 5-6-7-8s and last: Coup of the Voluntaries -[2018-02-13T00:40:38.649] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:40:38.702] [INFO] cheese - inserting 1000 documents. first: Jeff Trandahl and last: Category:Wikipedia requested maps in Kentucky -[2018-02-13T00:40:38.769] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T00:40:38.808] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:40:38.892] [INFO] cheese - inserting 1000 documents. first: Category:Fb competition templates 2015–16 and last: Beer Mixes -[2018-02-13T00:40:38.920] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:40:39.023] [INFO] cheese - inserting 1000 documents. first: Drakula halála and last: List of compositions by Otto Albert Tichy -[2018-02-13T00:40:39.030] [INFO] cheese - inserting 1000 documents. first: Young lovers and last: Category:Trams portal -[2018-02-13T00:40:39.072] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:40:39.075] [INFO] cheese - inserting 1000 documents. first: Orville Alfred Ralston and last: Mothers and Daughters: A Three-Generational Study of Health Attitudes and Behaviour -[2018-02-13T00:40:39.087] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:39.166] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:39.250] [INFO] cheese - inserting 1000 documents. first: Kwon Oh-son and last: (7792) 1995 WZ3 -[2018-02-13T00:40:39.293] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:40:39.342] [INFO] cheese - inserting 1000 documents. first: Category:Mexican fantasy and last: U.S. presidential elections in Minnesota -[2018-02-13T00:40:39.342] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested maps in California and last: File:Macpherson Emblem.gif -[2018-02-13T00:40:39.404] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:40:39.406] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:40:39.559] [INFO] cheese - inserting 1000 documents. first: Church of St. James, New Brighton and last: Tiz Post -[2018-02-13T00:40:39.637] [INFO] cheese - inserting 1000 documents. first: Ascendancy (game) and last: Agnes von Esterhazy -[2018-02-13T00:40:39.649] [INFO] cheese - inserting 1000 documents. first: Soviet submarine K-56 and last: Brendan Schaub -[2018-02-13T00:40:39.656] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:40:39.703] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:40:39.706] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:39.766] [INFO] cheese - inserting 1000 documents. first: Hittite Grammar and last: Wikipedia:WikiProject Spam/LinkReports/rioaventura.com.mx -[2018-02-13T00:40:39.796] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:40:39.913] [INFO] cheese - inserting 1000 documents. first: US presidential elections in Michigan and last: Sicilian Defence, Katalimov Variation -[2018-02-13T00:40:39.960] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:40:39.999] [INFO] cheese - inserting 1000 documents. first: Tiz and last: CAAWC -[2018-02-13T00:40:40.040] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:40:40.060] [INFO] cheese - inserting 1000 documents. first: Venetsianov and last: Wikipedia:Requests for mediation/Geostrategy -[2018-02-13T00:40:40.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Database reports/Indefinitely fully-protected talk pages/Configuration and last: William H. Taft High School (San Antonio) -[2018-02-13T00:40:40.107] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:40:40.138] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople by state in Germany and last: Wikipedia:WikiProject Spam/LinkReports/historiasdecardoso.blogspot.com -[2018-02-13T00:40:40.146] [INFO] cheese - inserting 1000 documents. first: Kunming City and last: Wikipedia:Version 1.0 Editorial Team/Sierra Leone articles by quality log -[2018-02-13T00:40:40.148] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:40.198] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:40:40.204] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:40:40.221] [INFO] cheese - inserting 1000 documents. first: Nigger toe and last: Embarkation Room -[2018-02-13T00:40:40.242] [INFO] cheese - inserting 1000 documents. first: Category:Road bridges on the National Register of Historic Places in Idaho and last: FLSA (disambiguation) -[2018-02-13T00:40:40.275] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:40:40.295] [INFO] cheese - batch complete in: 1.526 secs -[2018-02-13T00:40:40.433] [INFO] cheese - inserting 1000 documents. first: Maithri and last: 21 Demands (band) -[2018-02-13T00:40:40.459] [INFO] cheese - inserting 1000 documents. first: Verizon ringtones and last: Lillian Smith (author) -[2018-02-13T00:40:40.477] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:40:40.508] [INFO] cheese - inserting 1000 documents. first: EdlSA III and last: Southeastern Loloish -[2018-02-13T00:40:40.509] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:40:40.530] [INFO] cheese - inserting 1000 documents. first: Pepsi NFL Rookie of the Week and last: Triple-dot punctuation mark -[2018-02-13T00:40:40.561] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:40:40.594] [INFO] cheese - inserting 1000 documents. first: Ferdinand Lee Barnett (disambiguation) and last: Magda Bruggemann -[2018-02-13T00:40:40.595] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:40:40.633] [INFO] cheese - inserting 1000 documents. first: Merseyside East (European Parliament constituency) and last: 1933 Penya Rhin Grand Prix -[2018-02-13T00:40:40.649] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:40:40.703] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:40:40.828] [INFO] cheese - inserting 1000 documents. first: Submarine Squadron 15 and last: Category:Spanish military reconnaissance aircraft 2000–2009 -[2018-02-13T00:40:40.849] [INFO] cheese - inserting 1000 documents. first: American Ultra and last: Moroccan Royal Gendarmerie -[2018-02-13T00:40:40.855] [INFO] cheese - inserting 1000 documents. first: Yamada Line (Kintetsu) and last: Kraljeva Sutjeska Franciscan Monastery -[2018-02-13T00:40:40.865] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:40:40.909] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:40:40.920] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:40:40.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/asb-computer.com and last: C30H26O12 -[2018-02-13T00:40:41.019] [INFO] cheese - inserting 1000 documents. first: Abu al-Saqr Abd al-Aziz Ibn Uthman Ibn Ali al-Qabisi l-Mawsili and last: Portrait of Carrie Lucas -[2018-02-13T00:40:41.022] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:41.071] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:40:41.193] [INFO] cheese - inserting 1000 documents. first: Template:Three Village Central School District Schools and last: Portal:Mammals/Selected articles/Layout -[2018-02-13T00:40:41.259] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:40:41.276] [INFO] cheese - inserting 1000 documents. first: Boreham, Wiltshire and last: Kushu -[2018-02-13T00:40:41.283] [INFO] cheese - inserting 1000 documents. first: The Staple Swingers and last: Category:University departments in Canada -[2018-02-13T00:40:41.327] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:40:41.342] [INFO] cheese - inserting 1000 documents. first: Ganges Chasma and last: Roman Catholic Archdiocese of Munich and Freising -[2018-02-13T00:40:41.348] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:40:41.432] [INFO] cheese - inserting 1000 documents. first: The dakotas (Band) and last: Tyniste nad Orlici -[2018-02-13T00:40:41.437] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T00:40:41.472] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:40:41.524] [INFO] cheese - inserting 1000 documents. first: Category:AS Saint-Étienne (Ladies) and last: Regulatory chill -[2018-02-13T00:40:41.552] [INFO] cheese - inserting 1000 documents. first: Proanthocyanidin B2 and last: Wikipedia:Sockpuppet investigations/Uruuru/Archive -[2018-02-13T00:40:41.565] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:40:41.623] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:40:41.746] [INFO] cheese - inserting 1000 documents. first: Kuchow and last: Nanna montana -[2018-02-13T00:40:41.746] [INFO] cheese - inserting 1000 documents. first: Mobi-green car and last: 27th Battalion (City of Winnipeg), CEF -[2018-02-13T00:40:41.769] [INFO] cheese - inserting 1000 documents. first: Stokksundet (disambiguation) and last: Her Space Holiday (album) -[2018-02-13T00:40:41.781] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:40:41.792] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:40:41.827] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:40:41.931] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/TomTheHand and last: Wikipedia:Miscellany for deletion/User:Sportwoo -[2018-02-13T00:40:41.952] [INFO] cheese - inserting 1000 documents. first: Sunnydale Syndrome and last: Consensual violence -[2018-02-13T00:40:41.970] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:40:42.007] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:40:42.073] [INFO] cheese - inserting 1000 documents. first: Record Plant Black and last: Wrong Side of the Street -[2018-02-13T00:40:42.138] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:40:42.144] [INFO] cheese - inserting 1000 documents. first: Suedehead: The Best Of Morrissey and last: Template:Did you know nominations/An Anglo-American Alliance -[2018-02-13T00:40:42.172] [INFO] cheese - inserting 1000 documents. first: Timeline of the War in Afghanistan (May 2004) and last: KTNL (AM) -[2018-02-13T00:40:42.197] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:40:42.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Height and intelligence and last: Fe(3+) -[2018-02-13T00:40:42.219] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:42.259] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:40:42.263] [INFO] cheese - inserting 1000 documents. first: File:Electronic balance.svg and last: Category:Rail mountain passes of Mexico -[2018-02-13T00:40:42.314] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:40:42.360] [INFO] cheese - inserting 1000 documents. first: Arban (military unit) and last: Harvest Remixes -[2018-02-13T00:40:42.434] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:40:42.461] [INFO] cheese - inserting 1000 documents. first: Undivided expressway and last: File:France colonial Empire1.png -[2018-02-13T00:40:42.503] [INFO] cheese - inserting 1000 documents. first: WPSL (AM) and last: Real Madrid CF 2007-08 season -[2018-02-13T00:40:42.510] [INFO] cheese - inserting 1000 documents. first: Category:Defunct organisations based in Somalia and last: Albert Tullgren -[2018-02-13T00:40:42.519] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:40:42.539] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:40:42.560] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:40:42.592] [INFO] cheese - inserting 1000 documents. first: Michael Felix Lynch and last: Category:Protected areas of Polk County, Tennessee -[2018-02-13T00:40:42.620] [INFO] cheese - inserting 1000 documents. first: Ravi Prakash and last: Chah-e Dazu -[2018-02-13T00:40:42.635] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:40:42.674] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:40:42.795] [INFO] cheese - inserting 1000 documents. first: Template:User OS:Windows/doc and last: Byzantine–Bulgarian Treaty of 815 -[2018-02-13T00:40:42.832] [INFO] cheese - inserting 1000 documents. first: Waiting for a World War and last: USA soccer national team -[2018-02-13T00:40:42.883] [INFO] cheese - inserting 1000 documents. first: AHQ Western Desert and last: S A von Rottemburg -[2018-02-13T00:40:42.955] [INFO] cheese - inserting 1000 documents. first: Category:Euglenozoa and last: Woodcock Township, PA -[2018-02-13T00:40:42.965] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:42.975] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:40:43.046] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:43.070] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:40:43.095] [INFO] cheese - inserting 1000 documents. first: Sarah Thomas (badminton) and last: روزي اليازجي -[2018-02-13T00:40:43.096] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Polk County, Tennessee and last: Coolibah Tree -[2018-02-13T00:40:43.182] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:43.192] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:43.226] [INFO] cheese - inserting 1000 documents. first: Chah-e Jalal, Dalgan and last: Wikipedia:Reference desk/Archives/Miscellaneous/2014 February 7 -[2018-02-13T00:40:43.290] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:40:43.455] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/high-supplies.com and last: Wikipedia:WikiProject Spam/LinkReports/cinemaretro.com -[2018-02-13T00:40:43.542] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:40:43.547] [INFO] cheese - inserting 1000 documents. first: Ann Aldrich and last: Happy Valley Athletic Association -[2018-02-13T00:40:43.570] [INFO] cheese - inserting 1000 documents. first: File:JLTcover.gif and last: Reteni -[2018-02-13T00:40:43.613] [INFO] cheese - inserting 1000 documents. first: Category:1998 health disasters and last: File:One Fine Day (Katherine Jenkins album) coverart.jpg -[2018-02-13T00:40:43.623] [INFO] cheese - inserting 1000 documents. first: Saginaw Arts and Sciences Academy and last: KMYS -[2018-02-13T00:40:43.628] [INFO] cheese - inserting 1000 documents. first: Alma Gould Dale and last: TimedText:The Monster (Eminem featuring Rihanna) sample.ogg.en.srt -[2018-02-13T00:40:43.630] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:40:43.639] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:40:43.687] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:40:43.694] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:40:43.707] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:40:43.797] [INFO] cheese - inserting 1000 documents. first: File:Lambton Jaffas FC.png and last: File:Wmow 2014.png -[2018-02-13T00:40:43.908] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:40:44.137] [INFO] cheese - inserting 1000 documents. first: Hot-metal typography and last: Category:History of Belgrade -[2018-02-13T00:40:44.176] [INFO] cheese - inserting 1000 documents. first: Nerwa (Chopal), Shimla and last: Steve Martin (sportscaster) -[2018-02-13T00:40:44.176] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:44.203] [INFO] cheese - inserting 1000 documents. first: Category:Photography in Pakistan and last: Wikipedia:WikiProject Spam/Local/sh.horrycountyschools.net -[2018-02-13T00:40:44.231] [INFO] cheese - inserting 1000 documents. first: File:Kenny Chesney - Setting the World on Fire (single cover).jpg and last: Category:Recipients of the Padma Bhushan in other fields -[2018-02-13T00:40:44.233] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:40:44.247] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:40:44.249] [INFO] cheese - inserting 1000 documents. first: Jan des bouvrie and last: The Last Open Road -[2018-02-13T00:40:44.279] [INFO] cheese - inserting 1000 documents. first: File:UFC on FOX 11 event poster.jpg and last: Halim Alizehi -[2018-02-13T00:40:44.285] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:40:44.295] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:40:44.317] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:40:44.418] [INFO] cheese - inserting 1000 documents. first: CSU Hayward and last: Category:Demographics of Uganda -[2018-02-13T00:40:44.465] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:40:44.528] [INFO] cheese - inserting 1000 documents. first: File:KREX-TV Logo.png and last: Şerafettin Işık -[2018-02-13T00:40:44.534] [INFO] cheese - inserting 1000 documents. first: Vivendi Trophy and last: Jean-Robens Jerome -[2018-02-13T00:40:44.577] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:40:44.584] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:40:44.631] [INFO] cheese - inserting 1000 documents. first: A House: Live in Concert and last: Mid-Century Insurance Company -[2018-02-13T00:40:44.670] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:40:44.688] [INFO] cheese - inserting 1000 documents. first: El alma de los niños and last: Amata atricornis -[2018-02-13T00:40:44.694] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ahmad Behbahani and last: Louis Ginsberg (poet) -[2018-02-13T00:40:44.720] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:40:44.727] [INFO] cheese - inserting 1000 documents. first: Creation evolution debate and last: Cardiff and The Vale of Glamorgan Scout Area (The Scout Association) -[2018-02-13T00:40:44.729] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:44.773] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:40:44.959] [INFO] cheese - inserting 1000 documents. first: C. Linnaeus and last: Thatcher government -[2018-02-13T00:40:44.984] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Germany/Did you know/2 and last: Wikipedia:Articles for deletion/Pocahontas Middle School (2nd nomination) -[2018-02-13T00:40:44.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bradjonesmusic/Archive and last: California marble -[2018-02-13T00:40:45.011] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:40:45.014] [INFO] cheese - inserting 1000 documents. first: Bampur-e Sharqi Rural District and last: Sah Kahooran -[2018-02-13T00:40:45.026] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:40:45.056] [INFO] cheese - inserting 1000 documents. first: Mesta Castillana and last: Villa della Regina -[2018-02-13T00:40:45.067] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:40:45.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Place and last: H. Gordon Barrett -[2018-02-13T00:40:45.078] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:40:45.143] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:40:45.218] [INFO] cheese - inserting 1000 documents. first: Autopista AP-2 and last: Vess L. Ossman -[2018-02-13T00:40:45.251] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:40:45.306] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:40:45.526] [INFO] cheese - inserting 1000 documents. first: California Marble and last: Callistola elegans -[2018-02-13T00:40:45.552] [INFO] cheese - inserting 1000 documents. first: Sar Kuhuran and last: Guildhall (video gaming) -[2018-02-13T00:40:45.577] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:40:45.634] [INFO] cheese - inserting 1000 documents. first: Nanofountain Probe and last: Category:1999 establishments in the Bahamas -[2018-02-13T00:40:45.638] [INFO] cheese - inserting 1000 documents. first: Frank E. Sheeder III and last: Lefèbvre's Ringlet -[2018-02-13T00:40:45.637] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:40:45.680] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:40:45.700] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:45.791] [INFO] cheese - inserting 1000 documents. first: Ottawa—Carleton and last: Jegindoe -[2018-02-13T00:40:45.797] [INFO] cheese - inserting 1000 documents. first: Master Derby and last: Lindsay Ellingson -[2018-02-13T00:40:45.867] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:40:45.897] [INFO] cheese - inserting 1000 documents. first: The Yin & The Yang and last: Wikipedia:Deletion review/Log/2006 August 18 -[2018-02-13T00:40:45.907] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:40:46.028] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:40:46.110] [INFO] cheese - inserting 1000 documents. first: Kohei Yoshioka and last: Macau women's national under-16 basketball team -[2018-02-13T00:40:46.194] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:40:46.209] [INFO] cheese - inserting 1000 documents. first: Guild (video gaming) and last: Angie McAllister -[2018-02-13T00:40:46.285] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:40:46.367] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Hollyoaks/See also and last: 10050 Cielo Dr -[2018-02-13T00:40:46.408] [INFO] cheese - inserting 1000 documents. first: Lumped system and last: Kotreshi Kanasu -[2018-02-13T00:40:46.434] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:40:46.485] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:40:46.499] [INFO] cheese - inserting 1000 documents. first: Joseph-Arthur Barrette and last: Protestants in Japan -[2018-02-13T00:40:46.582] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:40:46.636] [INFO] cheese - inserting 1000 documents. first: Jason "Wee-Man" Acuña and last: Carl Hayman -[2018-02-13T00:40:46.639] [INFO] cheese - inserting 1000 documents. first: 2016 Open d'Orléans – Doubles and last: Fossil fuels in the United KIngdom -[2018-02-13T00:40:46.681] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:40:46.693] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:40:46.745] [INFO] cheese - inserting 1000 documents. first: @ShittingtonUK and last: Template:User Part Time Resident-Antrim -[2018-02-13T00:40:46.752] [INFO] cheese - inserting 1000 documents. first: Evan S. Connell, Jr. and last: Jay Hill -[2018-02-13T00:40:46.779] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:40:46.814] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:40:46.870] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Jay Pritzker Pavilion/archive1 and last: Parallelia crameri -[2018-02-13T00:40:46.912] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:46.917] [INFO] cheese - inserting 1000 documents. first: 10050 Cielo Dr. and last: Kursaal (amusement park) -[2018-02-13T00:40:46.964] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:47.031] [INFO] cheese - inserting 1000 documents. first: Protestants in Tuvalu and last: Category:Baroque printmakers -[2018-02-13T00:40:47.048] [INFO] cheese - inserting 1000 documents. first: Category:Scottish people of Yoruba descent and last: Gracilibacillus ureilyticus -[2018-02-13T00:40:47.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Godfrey (lyricist) and last: Portal:Donald Trump/Wikimedia -[2018-02-13T00:40:47.074] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:40:47.099] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:40:47.112] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:40:47.171] [INFO] cheese - inserting 1000 documents. first: Wigratzbad and last: Cute Overload -[2018-02-13T00:40:47.229] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:47.294] [INFO] cheese - inserting 1000 documents. first: Dysgonia achatina and last: Theodore, Philippa and companions -[2018-02-13T00:40:47.333] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:40:47.345] [INFO] cheese - inserting 1000 documents. first: Leżajski and last: The Song of Ceylon -[2018-02-13T00:40:47.375] [INFO] cheese - inserting 1000 documents. first: Dosequis and last: Unified Braille Code -[2018-02-13T00:40:47.382] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:40:47.403] [INFO] cheese - inserting 1000 documents. first: Category:People from Sniatyn and last: Template:WikiProject Hollyoaks/class -[2018-02-13T00:40:47.469] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:40:47.480] [INFO] cheese - inserting 1000 documents. first: Aspergillus rambellii and last: Alexander Glebov (alpine skier) -[2018-02-13T00:40:47.533] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:47.558] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:40:47.585] [INFO] cheese - inserting 1000 documents. first: File:Robert Hermon-Hodge.jpg and last: United States Senate election in West Virginia, 1889 -[2018-02-13T00:40:47.693] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:40:47.817] [INFO] cheese - inserting 1000 documents. first: Let It Will Be (Madonna Song) and last: Toro Nagashi -[2018-02-13T00:40:47.901] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:40:47.931] [INFO] cheese - inserting 1000 documents. first: MiG-29: Deadly Adversary of Falcon 3.0 and last: Gymnopilus noviholocirrhus -[2018-02-13T00:40:48.028] [INFO] cheese - inserting 1000 documents. first: Ultraman Agul and last: Pennsylvania's 45th Senatorial District -[2018-02-13T00:40:48.044] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:40:48.173] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:40:48.333] [INFO] cheese - inserting 1000 documents. first: George Wild and last: Philippine Women's University – School of Fine Arts and Design -[2018-02-13T00:40:48.352] [INFO] cheese - inserting 1000 documents. first: Zip code 73841 and last: KM94 -[2018-02-13T00:40:48.398] [INFO] cheese - inserting 1000 documents. first: Pensole and last: Valea Bolvașnița -[2018-02-13T00:40:48.410] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:40:48.415] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:40:48.498] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:40:48.559] [INFO] cheese - inserting 1000 documents. first: The Notorious Byrd Brothers and last: Sir Winston Churchill Secondary School (Vancouver) -[2018-02-13T00:40:48.588] [INFO] cheese - inserting 1000 documents. first: Gymnopilus novoguineensis and last: Danse Macabre Records -[2018-02-13T00:40:48.623] [INFO] cheese - inserting 1000 documents. first: Category:Logic conferences and last: Big Ten Football MVP -[2018-02-13T00:40:48.639] [INFO] cheese - batch complete in: 1.17 secs -[2018-02-13T00:40:48.638] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:40:48.704] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:40:48.707] [INFO] cheese - inserting 1000 documents. first: Pennsylvania's 44th Senatorial District and last: Bresil -[2018-02-13T00:40:48.815] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:40:48.871] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2014-02-19/Featured content and last: Pennsylvania Avenue Historic District (East St. Louis, Illinois) -[2018-02-13T00:40:48.908] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:40:48.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2011 October 9 and last: Tiruvannamalai Sambuvarayar district -[2018-02-13T00:40:48.981] [INFO] cheese - inserting 1000 documents. first: Category:Pro-life organisations in the United Kingdom and last: Natasha Carter -[2018-02-13T00:40:48.981] [INFO] cheese - inserting 1000 documents. first: 22nd Madras Native Infantry and last: The Pig Got Up And Slowly Walked Away -[2018-02-13T00:40:49.017] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:40:49.037] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:49.074] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:40:49.172] [INFO] cheese - inserting 1000 documents. first: Shabaton and last: Category:FA-Class Theatre articles -[2018-02-13T00:40:49.188] [INFO] cheese - inserting 1000 documents. first: Here With Me and last: File:Windows Longhorn logo.svg -[2018-02-13T00:40:49.220] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:40:49.229] [INFO] cheese - inserting 1000 documents. first: Category:2013 in Supersport racing and last: Steele's Aspasia -[2018-02-13T00:40:49.234] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:49.286] [INFO] cheese - inserting 1000 documents. first: Indian Remote Sensing and last: Unixtime -[2018-02-13T00:40:49.294] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:40:49.352] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:40:49.361] [INFO] cheese - inserting 1000 documents. first: Rajnagar (community development block) and last: Văn Yên District, Yen Bai -[2018-02-13T00:40:49.365] [INFO] cheese - inserting 1000 documents. first: Texas Air International and last: Fox-Pitt Kelton Cochran Caronia Waller -[2018-02-13T00:40:49.429] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:40:49.462] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:40:49.490] [INFO] cheese - inserting 1000 documents. first: File:Indian Institute of Technology (Indian School of Mines), Dhanbad Logo.jpg.png and last: Category:Show caves in Hungary -[2018-02-13T00:40:49.599] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:40:49.779] [INFO] cheese - inserting 1000 documents. first: Sheridan's Valley Campaign and last: Punjabi Chandu Halwai Karachiwala -[2018-02-13T00:40:49.848] [INFO] cheese - inserting 1000 documents. first: SETRPC and last: Nigerian Money Offers -[2018-02-13T00:40:49.896] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:50.082] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:40:50.171] [INFO] cheese - inserting 1000 documents. first: Flavon and last: Gesundbrunnen (Berlin U-Bahn) -[2018-02-13T00:40:50.248] [INFO] cheese - inserting 1000 documents. first: SZD-C Żuraw and last: Finnegan, Alberta -[2018-02-13T00:40:50.298] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T00:40:50.360] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:40:50.408] [INFO] cheese - inserting 1000 documents. first: András Gáspár, general and last: Borj Qalaouiyeh -[2018-02-13T00:40:50.426] [INFO] cheese - inserting 1000 documents. first: Category:Agricultural marketing organizations and last: Wikipedia:Articles for deletion/OtherWise -[2018-02-13T00:40:50.429] [INFO] cheese - inserting 1000 documents. first: Annie Douglas and last: Template:User 3D Warehouse -[2018-02-13T00:40:50.490] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:40:50.526] [INFO] cheese - inserting 1000 documents. first: Yusefabad, Gowhar Kuh and last: Fath Ali Akhund-zade -[2018-02-13T00:40:50.542] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T00:40:50.545] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T00:40:50.580] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:50.843] [INFO] cheese - inserting 1000 documents. first: Template:Quebec Metropolitan Community and last: 1985 QL -[2018-02-13T00:40:50.922] [INFO] cheese - inserting 1000 documents. first: OK, It's Alright With Me and last: Michael Healy -[2018-02-13T00:40:50.936] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:40:50.993] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:40:51.034] [INFO] cheese - inserting 1000 documents. first: Voltastraße (Berlin U-Bahn) and last: Helena Vondrackova -[2018-02-13T00:40:51.057] [INFO] cheese - inserting 1000 documents. first: Fath Ali Akhundzade and last: Euxanthis patriciana -[2018-02-13T00:40:51.064] [INFO] cheese - inserting 1000 documents. first: Borj Qalaouiye and last: Tomas Rousek -[2018-02-13T00:40:51.093] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:40:51.104] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:40:51.109] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:40:51.221] [INFO] cheese - inserting 1000 documents. first: Kato Sotiritsa and last: Cuneacolotis -[2018-02-13T00:40:51.276] [INFO] cheese - inserting 1000 documents. first: Club Hel (The Matrix) and last: R57 road -[2018-02-13T00:40:51.288] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:40:51.310] [INFO] cheese - inserting 1000 documents. first: Scottish Museum and last: German submarine UC-38 -[2018-02-13T00:40:51.359] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:40:51.363] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:40:51.374] [INFO] cheese - inserting 1000 documents. first: Bonfire Madigan and last: Joseph Robbie -[2018-02-13T00:40:51.457] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:40:51.791] [INFO] cheese - inserting 1000 documents. first: Saliceto, Piedmont and last: Jyuudai Yuuki -[2018-02-13T00:40:51.837] [INFO] cheese - inserting 1000 documents. first: Gideona and last: Rhapsody of Zephyr -[2018-02-13T00:40:51.856] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:40:51.860] [INFO] cheese - inserting 1000 documents. first: Texas Township, Dent County, Missouri and last: File:Scouts Wadi el Nil (Copts and Egyptian Catholic Christians) 1930s.png -[2018-02-13T00:40:51.885] [INFO] cheese - inserting 1000 documents. first: Shlomi Ben Hemo and last: Cisthene barnesii -[2018-02-13T00:40:51.923] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:40:51.928] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:40:52.023] [INFO] cheese - inserting 1000 documents. first: German submarine UC38 and last: ZIP Air -[2018-02-13T00:40:52.037] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:40:52.123] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:40:52.248] [INFO] cheese - inserting 1000 documents. first: Bottoms Up (Bottom episode) and last: R356 road (South Africa) -[2018-02-13T00:40:52.263] [INFO] cheese - inserting 1000 documents. first: Kanawha Airport/Yeager AIrport and last: The Bollweevils (band) -[2018-02-13T00:40:52.321] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:40:52.359] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:40:52.514] [INFO] cheese - inserting 1000 documents. first: Alexander I Balas and last: Category:Batočina -[2018-02-13T00:40:52.570] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:40:52.595] [INFO] cheese - inserting 1000 documents. first: K05EQ and last: Rover SD1 Vitesse -[2018-02-13T00:40:52.659] [INFO] cheese - inserting 1000 documents. first: Downtown Yonge Business Improvement Area and last: Wikipedia:Portal peer review/Archive/September 2009 -[2018-02-13T00:40:52.659] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:52.708] [INFO] cheese - inserting 1000 documents. first: Category:Asian Canoeing Championships and last: Wikipedia:Articles for deletion/Alex Biega (2nd nomination) -[2018-02-13T00:40:52.723] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:40:52.731] [INFO] cheese - inserting 1000 documents. first: Category:American Juniors songs and last: Rachel weiscz -[2018-02-13T00:40:52.813] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:40:52.834] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:40:52.974] [INFO] cheese - inserting 1000 documents. first: Kijevo (Batočina) and last: Wikipedia:WikiProject Spam/LinkReports/worldwholesalejerseys.com -[2018-02-13T00:40:52.984] [INFO] cheese - inserting 1000 documents. first: Comparative benefits and last: Japanese Fifty-Fourth Army -[2018-02-13T00:40:53.014] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:53.025] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:40:53.078] [INFO] cheese - inserting 1000 documents. first: Illice liberomacula and last: Zombie Night -[2018-02-13T00:40:53.082] [INFO] cheese - inserting 1000 documents. first: Moss pubis and last: United States Highway 34 -[2018-02-13T00:40:53.122] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:40:53.141] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:40:53.230] [INFO] cheese - inserting 1000 documents. first: Mike Edwards (basketball) and last: Little March -[2018-02-13T00:40:53.291] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:40:53.344] [INFO] cheese - inserting 1000 documents. first: Rachel Weiscz and last: Dee (song) -[2018-02-13T00:40:53.397] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:53.420] [INFO] cheese - inserting 1000 documents. first: Thomas Randle and last: Antonio Calbo -[2018-02-13T00:40:53.470] [INFO] cheese - inserting 1000 documents. first: Working Men and last: Na Koa Ikaika Maui -[2018-02-13T00:40:53.473] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:40:53.520] [INFO] cheese - inserting 1000 documents. first: Hary and last: No Tears For The Creatures -[2018-02-13T00:40:53.541] [INFO] cheese - inserting 1000 documents. first: File:Vergil gameplay DMC3.jpg and last: Franciscan Hospitaller Sisters of the Immaculate Conception -[2018-02-13T00:40:53.559] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:40:53.568] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:40:53.610] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:53.666] [INFO] cheese - inserting 1000 documents. first: Krueck and Sexton Architects and last: Frankfurt zoological society -[2018-02-13T00:40:53.721] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:40:53.724] [INFO] cheese - inserting 1000 documents. first: United States Highway 33 and last: Jan Krasiński -[2018-02-13T00:40:53.788] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:40:53.859] [INFO] cheese - inserting 1000 documents. first: Module:Location map/data/Switzerland and last: File:CETB Microbiology and Fermentation Laboratory.jpg -[2018-02-13T00:40:53.912] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:40:53.940] [INFO] cheese - inserting 1000 documents. first: Nordenveld, Norg and last: Scudder Klyce -[2018-02-13T00:40:54.019] [INFO] cheese - inserting 1000 documents. first: CRACKED.com and last: Aufi tower -[2018-02-13T00:40:54.111] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:40:54.154] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:40:54.216] [INFO] cheese - inserting 1000 documents. first: File:BS219 Digital Super Hi Res.jpeg and last: Chainat Hornbill -[2018-02-13T00:40:54.282] [INFO] cheese - inserting 1000 documents. first: Wojewodztwo opolskie and last: Rossini (surname) -[2018-02-13T00:40:54.282] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:40:54.390] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:40:54.451] [INFO] cheese - inserting 1000 documents. first: Miracle (Ilse DeLange song) and last: Pseudotulostoma -[2018-02-13T00:40:54.522] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:40:54.549] [INFO] cheese - inserting 1000 documents. first: The Trust That Has Burst and last: Leslie P. Arnold -[2018-02-13T00:40:54.637] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:40:54.644] [INFO] cheese - inserting 1000 documents. first: Bodily Functions (album) and last: Newport, Ohio (Washington County) -[2018-02-13T00:40:54.701] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:40:54.750] [INFO] cheese - inserting 1000 documents. first: Tony Cottee and last: BitTorrent tracker -[2018-02-13T00:40:54.752] [INFO] cheese - inserting 1000 documents. first: Monte Carlo Hotel and Casino and last: S. C. A. R. S. (military) -[2018-02-13T00:40:54.767] [INFO] cheese - inserting 1000 documents. first: File:Mischief makers 04.jpg and last: Stadion Střelecký ostrov -[2018-02-13T00:40:54.796] [INFO] cheese - inserting 1000 documents. first: Battle of the Hawkesbury and last: Controlled studies -[2018-02-13T00:40:54.797] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:40:54.811] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:40:54.821] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T00:40:54.868] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:40:54.946] [INFO] cheese - inserting 1000 documents. first: Shermansdale, Pennsylvania and last: Eldon Township, Ontario -[2018-02-13T00:40:54.996] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:40:55.044] [INFO] cheese - inserting 1000 documents. first: El Coloso del Parque and last: David Dale (New York politician) -[2018-02-13T00:40:55.093] [INFO] cheese - inserting 1000 documents. first: Charles Newell Fowler and last: Dixie Melody Boys -[2018-02-13T00:40:55.099] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:40:55.126] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:40:55.167] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Vellore and last: Indira Freitas Johnson -[2018-02-13T00:40:55.174] [INFO] cheese - inserting 1000 documents. first: Template:Tfm2 and last: Prawdzic Coat of Arms -[2018-02-13T00:40:55.209] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:40:55.234] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:40:55.274] [INFO] cheese - inserting 1000 documents. first: Renshaw and last: Christopher Ward (disambiguation) -[2018-02-13T00:40:55.326] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:40:55.345] [INFO] cheese - inserting 1000 documents. first: Category:Education in Burke County, Georgia and last: 2D PAGE -[2018-02-13T00:40:55.401] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:40:55.410] [INFO] cheese - inserting 1000 documents. first: File:Tspace spiral2 final.png and last: Template:Canadian federal election, 1993/qc-me -[2018-02-13T00:40:55.471] [INFO] cheese - inserting 1000 documents. first: 2020 Ryder Cup and last: Corymbia clarksoniana -[2018-02-13T00:40:55.498] [INFO] cheese - inserting 1000 documents. first: Gorova River (Tur) and last: .shop -[2018-02-13T00:40:55.505] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:55.538] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:40:55.632] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:40:55.703] [INFO] cheese - inserting 1000 documents. first: Home for Christmas (song) and last: Wellman (surname) -[2018-02-13T00:40:55.731] [INFO] cheese - inserting 1000 documents. first: American University of the Caribbean N.V. and last: Gymnastics Australia -[2018-02-13T00:40:55.770] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:40:55.787] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:40:55.891] [INFO] cheese - inserting 1000 documents. first: Category:Buddhist temples in Inner Mongolia and last: Template:Giant-star-stub -[2018-02-13T00:40:55.934] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:40:55.946] [INFO] cheese - inserting 1000 documents. first: Cornel Coman and last: Sophronitis perrinii -[2018-02-13T00:40:56.011] [INFO] cheese - inserting 1000 documents. first: Dorothy M. Emmet and last: Francis Milman -[2018-02-13T00:40:56.035] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:56.099] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:40:56.164] [INFO] cheese - inserting 1000 documents. first: History of Rock and last: Leffincourt -[2018-02-13T00:40:56.214] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:40:56.256] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz W460 and last: Bad faith (existentialism) -[2018-02-13T00:40:56.265] [INFO] cheese - inserting 1000 documents. first: Category:Laos–Thailand border crossings and last: Category:Bishops of Nassau -[2018-02-13T00:40:56.313] [INFO] cheese - inserting 1000 documents. first: Jacob, FL and last: Aliabad, Sangan -[2018-02-13T00:40:56.318] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:56.358] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:40:56.372] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:40:56.585] [INFO] cheese - inserting 1000 documents. first: South Texas Botanical Gardens & Nature Center and last: Turkified -[2018-02-13T00:40:56.690] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:40:56.749] [INFO] cheese - inserting 1000 documents. first: K. P. Kurup and last: Dennis RoadyVlogs -[2018-02-13T00:40:56.753] [INFO] cheese - inserting 1000 documents. first: Piso's conspiracy and last: Category:Former bishoprics in Ireland -[2018-02-13T00:40:56.800] [INFO] cheese - inserting 1000 documents. first: Willa Cather Foundation and last: Wikipedia:Did you know/Halloween 2009 -[2018-02-13T00:40:56.829] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:40:56.843] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:40:56.861] [INFO] cheese - inserting 1000 documents. first: Barney Miller (season 6) and last: Category:RFC Liège -[2018-02-13T00:40:56.864] [INFO] cheese - inserting 1000 documents. first: Lépron-les-Vallées and last: Sinsat -[2018-02-13T00:40:56.864] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:40:56.936] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:40:56.945] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:57.078] [INFO] cheese - inserting 1000 documents. first: Forty-seven ronin and last: Puerco pibil -[2018-02-13T00:40:57.088] [INFO] cheese - inserting 1000 documents. first: Agah Pasha and last: History of Bernie, Missouri -[2018-02-13T00:40:57.110] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:40:57.143] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:40:57.198] [INFO] cheese - inserting 1000 documents. first: D6 Star Wars and last: Prom Night IV: Deliver Us from Evil -[2018-02-13T00:40:57.276] [INFO] cheese - inserting 1000 documents. first: Category:RFC Liège managers and last: Hirgan (disambiguation) -[2018-02-13T00:40:57.287] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:40:57.305] [INFO] cheese - inserting 1000 documents. first: Category:Looney Tunes home video releases and last: Template:Did you know nominations/Catherine Sandoval -[2018-02-13T00:40:57.305] [INFO] cheese - inserting 1000 documents. first: History of Berry Hill, Tennessee and last: History of Clyde, Texas -[2018-02-13T00:40:57.306] [INFO] cheese - inserting 1000 documents. first: Madhouse: A Tragic Tale of Megalomania and Modern Medicine and last: Wikipedia:Version 1.0 Editorial Team/Rugby league (State of Origin) articles by quality/2 -[2018-02-13T00:40:57.331] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:40:57.356] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:40:57.368] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:40:57.404] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:40:57.546] [INFO] cheese - inserting 1000 documents. first: Sor, Ariège and last: Jacqui Frazier-Lyde -[2018-02-13T00:40:57.605] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:40:57.653] [INFO] cheese - inserting 1000 documents. first: History of Clyde Hill, Washington and last: Manny Villar -[2018-02-13T00:40:57.684] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:40:57.753] [INFO] cheese - inserting 1000 documents. first: Tapesovo and last: Category:Pakistani qawwali singers -[2018-02-13T00:40:57.772] [INFO] cheese - inserting 1000 documents. first: Love is Stronger Than Pride and last: Wikipedia:Sockpuppet investigations/DocOfSoc/Archive -[2018-02-13T00:40:57.793] [INFO] cheese - inserting 1000 documents. first: Template:List of civil parishes in England and last: Alaska Department of Commerce -[2018-02-13T00:40:57.801] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:40:57.805] [INFO] cheese - inserting 1000 documents. first: Windesheim University of Applied Sciences and last: James Collip -[2018-02-13T00:40:57.811] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:57.832] [INFO] cheese - inserting 1000 documents. first: Asset-based financing and last: History of Fürth -[2018-02-13T00:40:57.845] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:40:57.851] [INFO] cheese - inserting 1000 documents. first: Home health (disambiguation) and last: Knottin -[2018-02-13T00:40:57.863] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:40:57.882] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:40:57.903] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:40:57.984] [INFO] cheese - inserting 1000 documents. first: Corbières, Aude and last: St. Matthew's, Haslington -[2018-02-13T00:40:58.038] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:40:58.048] [INFO] cheese - inserting 1000 documents. first: History of Füzuli and last: Category:1694 establishments in the Holy Roman Empire -[2018-02-13T00:40:58.067] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:40:58.248] [INFO] cheese - inserting 1000 documents. first: H. A. Clark Memorial Field and last: Category:Schools in Oconee County, Georgia -[2018-02-13T00:40:58.256] [INFO] cheese - inserting 1000 documents. first: Western Tedi language and last: SaveThePsychoExWife.com -[2018-02-13T00:40:58.258] [INFO] cheese - inserting 1000 documents. first: History of Indian Hill, Ohio and last: History of Lockhart, Texas -[2018-02-13T00:40:58.273] [INFO] cheese - inserting 1000 documents. first: National Indian Youth Council and last: Pseudotropheus greshakei -[2018-02-13T00:40:58.274] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:40:58.299] [INFO] cheese - inserting 1000 documents. first: Peter Underwood (parapsychologist) and last: Wikipedia:PRESCOTTRUSSELL -[2018-02-13T00:40:58.300] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:40:58.300] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:40:58.330] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:40:58.378] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:40:58.532] [INFO] cheese - inserting 1000 documents. first: History of Lockwood, Missouri and last: History of Nashville, Kansas -[2018-02-13T00:40:58.537] [INFO] cheese - inserting 1000 documents. first: Portal:Anarchism/Anniversaries/January/January 13 and last: Template:Disney Characters -[2018-02-13T00:40:58.558] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:40:58.581] [INFO] cheese - inserting 1000 documents. first: Marco Follini and last: Promoter of the faith -[2018-02-13T00:40:58.596] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:40:58.729] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:40:58.851] [INFO] cheese - inserting 1000 documents. first: Kalvebod Brygge and last: Haydarpaşa-Gebze Commuter Line -[2018-02-13T00:40:58.920] [INFO] cheese - inserting 1000 documents. first: Antônio Campos and last: Template:2014 Thai Premier League table -[2018-02-13T00:40:58.940] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:40:58.972] [INFO] cheese - inserting 1000 documents. first: History of Nashville, North Carolina and last: History of Prescott, Kansas -[2018-02-13T00:40:59.000] [INFO] cheese - inserting 1000 documents. first: Joe Tarto and last: File:Harryosb.PNG -[2018-02-13T00:40:59.022] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:40:59.022] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:40:59.067] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:40:59.085] [INFO] cheese - inserting 1000 documents. first: Bennington Township, Morrow County, Ohio and last: Botanical Medicine -[2018-02-13T00:40:59.176] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:40:59.213] [INFO] cheese - inserting 1000 documents. first: Kutzenhausen, Bas-Rhin and last: Wikipedia:WikiProject Spam/LinkReports/takestan20.blogfa.comتاتهای -[2018-02-13T00:40:59.293] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:40:59.317] [INFO] cheese - inserting 1000 documents. first: History of Prescott, Oregon and last: History of Sisters, Oregon -[2018-02-13T00:40:59.327] [INFO] cheese - inserting 1000 documents. first: Pea protein and last: Merry Widow Waltz -[2018-02-13T00:40:59.361] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:40:59.371] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:40:59.437] [INFO] cheese - inserting 1000 documents. first: EU2 and last: Minamiawaji -[2018-02-13T00:40:59.489] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:59.497] [INFO] cheese - inserting 1000 documents. first: Edward Peck Curtis and last: Wikipedia:Valued picture candidates/7 lions -[2018-02-13T00:40:59.537] [INFO] cheese - inserting 1000 documents. first: History of Sistersville, West Virginia and last: History of Villa María -[2018-02-13T00:40:59.551] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:40:59.556] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:40:59.567] [INFO] cheese - inserting 1000 documents. first: Astro (Satellite TV) and last: File:Vampire Lestat Original.jpg -[2018-02-13T00:40:59.586] [INFO] cheese - inserting 1000 documents. first: File:Bliss n Eso - On Tour.jpg and last: File:Skolomowski film Le depart 1967 poster.jpg -[2018-02-13T00:40:59.606] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:40:59.653] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:40:59.714] [INFO] cheese - inserting 1000 documents. first: Little Bay East and last: The Complete Stories (O'Connor) -[2018-02-13T00:40:59.753] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:40:59.756] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2011 October 18 and last: Wikipedia:Wikipedia Signpost/Archives/2011-10-24 -[2018-02-13T00:40:59.809] [INFO] cheese - inserting 1000 documents. first: History of Villa Park, California and last: Club Deportivo San José -[2018-02-13T00:40:59.809] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:40:59.839] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:40:59.905] [INFO] cheese - inserting 1000 documents. first: Consumer Watchdog (USA) and last: File:Tales from the Crypt 24.jpg -[2018-02-13T00:40:59.918] [INFO] cheese - inserting 1000 documents. first: Deme (Biology) and last: GAM -[2018-02-13T00:40:59.942] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:40:59.961] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:41:00.070] [INFO] cheese - inserting 1000 documents. first: Raffaele Esposito and last: Windmill Lane Studios -[2018-02-13T00:41:00.109] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1984 Summer Olympics – Men's hammer throw and last: File:Insideininsideout.jpg -[2018-02-13T00:41:00.132] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:00.160] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:41:00.216] [INFO] cheese - inserting 1000 documents. first: Elisabeth Jacobsen and last: Team Rocket trio -[2018-02-13T00:41:00.250] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:41:00.307] [INFO] cheese - inserting 1000 documents. first: Abhipur and last: Eric Ellenbogen -[2018-02-13T00:41:00.313] [INFO] cheese - inserting 1000 documents. first: South Persian Rifles and last: Aceval, Miguel -[2018-02-13T00:41:00.324] [INFO] cheese - inserting 1000 documents. first: Warehouse district, Hamburg and last: Category:Monitors of the United States Navy -[2018-02-13T00:41:00.352] [INFO] cheese - inserting 1000 documents. first: Autumn In New York and last: Kuria people -[2018-02-13T00:41:00.358] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:41:00.368] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:41:00.454] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:41:00.527] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:41:00.804] [INFO] cheese - inserting 1000 documents. first: Fifth Panzer Army (Germany) and last: Gazan -[2018-02-13T00:41:00.875] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:41:00.878] [INFO] cheese - inserting 1000 documents. first: YRT Viva Pink and last: File:Channel digital image magenta.jpg -[2018-02-13T00:41:00.888] [INFO] cheese - inserting 1000 documents. first: John Marie Durst and last: Intermodal containers -[2018-02-13T00:41:00.894] [INFO] cheese - inserting 1000 documents. first: Lycée Camille Sée (Colmar) and last: History of Battens Crossroads, Alabama -[2018-02-13T00:41:00.921] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:41:00.931] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:41:00.933] [INFO] cheese - inserting 1000 documents. first: Acevedo, Abraham and last: Perry Hannah House -[2018-02-13T00:41:00.945] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:41:00.997] [INFO] cheese - inserting 1000 documents. first: The Lord Of The Rings: The Fellowship Of The Ring and last: Catherine Cavadini -[2018-02-13T00:41:01.008] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:01.054] [INFO] cheese - inserting 1000 documents. first: List of animal welfare and animal rights groups and last: Hair Restoration -[2018-02-13T00:41:01.057] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:41:01.109] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:41:01.134] [INFO] cheese - inserting 1000 documents. first: History of Battles Wharf, Alabama and last: History of Veto, Alabama -[2018-02-13T00:41:01.161] [INFO] cheese - batch complete in: 0.216 secs -[2018-02-13T00:41:01.220] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance British Antarctic Territory articles and last: Portal:Cricket/Anniversaries/February/February 20 -[2018-02-13T00:41:01.259] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:41:01.325] [INFO] cheese - inserting 1000 documents. first: Template:UEFA Euro 2016 qualifying Group F table and last: Canadian federal election 1917 -[2018-02-13T00:41:01.362] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:41:01.408] [INFO] cheese - inserting 1000 documents. first: Ciba-Geigy Drew Award for Biomedical Research and last: Andrew Krier -[2018-02-13T00:41:01.445] [INFO] cheese - inserting 1000 documents. first: Conductive atomic force microscopy and last: Cineworld Dublin -[2018-02-13T00:41:01.452] [INFO] cheese - inserting 1000 documents. first: Mme. de Montespan and last: English travellers -[2018-02-13T00:41:01.458] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:41:01.484] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:41:01.498] [INFO] cheese - inserting 1000 documents. first: Seth M R Jaipuria School, Lucknow and last: Ouvrage L'Agaisen -[2018-02-13T00:41:01.500] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:41:01.513] [INFO] cheese - inserting 1000 documents. first: History of Victoria, Alabama and last: Michel Batista -[2018-02-13T00:41:01.530] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:41:01.544] [INFO] cheese - inserting 1000 documents. first: Category:Free Jabber clients and last: Troy Lee Gentry -[2018-02-13T00:41:01.560] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:41:01.622] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:41:01.751] [INFO] cheese - inserting 1000 documents. first: Valery Brezdenyuk and last: Aryan Football Club -[2018-02-13T00:41:01.805] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:41:01.822] [INFO] cheese - inserting 1000 documents. first: Community Bank and last: Wikipedia:WikiProject Spam/LinkReports/canvasopedia.org -[2018-02-13T00:41:01.863] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:41:01.885] [INFO] cheese - inserting 1000 documents. first: Template:2007 New Zealand Schools squad and last: Hrabischitz -[2018-02-13T00:41:01.903] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/brightstorm.com and last: Category:Portland Trail Blazers owners -[2018-02-13T00:41:01.924] [INFO] cheese - inserting 1000 documents. first: President of Saint Christopher and last: National Redoubt -[2018-02-13T00:41:01.939] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:41:01.962] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:41:02.032] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:41:02.048] [INFO] cheese - inserting 1000 documents. first: Bougainvilla and last: Category:Battles of the Northwest Indian War -[2018-02-13T00:41:02.149] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:41:02.195] [INFO] cheese - inserting 1000 documents. first: 2006.02 and last: Category:Wikipedia sockpuppets of Cretanpride -[2018-02-13T00:41:02.315] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/canvasopedia.org and last: Muravlenko Urban Okrug -[2018-02-13T00:41:02.314] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:41:02.373] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:41:02.415] [INFO] cheese - inserting 1000 documents. first: Confessions of a Torpe and last: Cerro Muyu Orqo -[2018-02-13T00:41:02.495] [INFO] cheese - inserting 1000 documents. first: Alexandra Palace railway station (1873-1954) and last: File:Zero kara Hajimeru Mahō no Sho, volume 1.jpg -[2018-02-13T00:41:02.557] [INFO] cheese - inserting 1000 documents. first: Covurlui, Leova and last: 1946 William & Mary Tribe football team -[2018-02-13T00:41:02.563] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:41:02.568] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:02.665] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:41:02.701] [INFO] cheese - inserting 1000 documents. first: Arthur Moreira Lima (pianist) and last: Kapunda Football Club -[2018-02-13T00:41:02.816] [INFO] cheese - inserting 1000 documents. first: Novy Urengoy Urban Okrug and last: Category:French bomber aircraft 1920-1929 -[2018-02-13T00:41:02.833] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:41:02.906] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:02.943] [INFO] cheese - inserting 1000 documents. first: Lomas de Santa Anita, Baja California and last: History of Port Republic, New Jersey -[2018-02-13T00:41:02.992] [INFO] cheese - inserting 1000 documents. first: File:Srisailam dam India.jpg and last: Å, Lavangen -[2018-02-13T00:41:03.013] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:41:03.055] [INFO] cheese - inserting 1000 documents. first: Origins of the papal tiara and last: History of Mozilla Thunderbird -[2018-02-13T00:41:03.056] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:41:03.161] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T00:41:03.237] [INFO] cheese - inserting 1000 documents. first: 1947 William & Mary Tribe football team and last: Cargilfield Trinity School -[2018-02-13T00:41:03.254] [INFO] cheese - inserting 1000 documents. first: Template:China-newspaper-stub and last: Revenue stamps of Singapore -[2018-02-13T00:41:03.287] [INFO] cheese - inserting 1000 documents. first: Snowy-breasted Hummingbird and last: Middle East & Africa Region -[2018-02-13T00:41:03.298] [INFO] cheese - inserting 1000 documents. first: History of Port Washington, Wisconsin and last: Serampore Town railway station -[2018-02-13T00:41:03.309] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:41:03.329] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:41:03.359] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:41:03.367] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:41:03.372] [INFO] cheese - inserting 1000 documents. first: Piquancy and last: File:Alice nine - Zekkeishoku.jpg -[2018-02-13T00:41:03.441] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:41:03.630] [INFO] cheese - inserting 1000 documents. first: Å, Tranøy and last: Cres (island) -[2018-02-13T00:41:03.693] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:41:03.772] [INFO] cheese - inserting 1000 documents. first: Victor-Amédée III and last: Malign tissue -[2018-02-13T00:41:03.801] [INFO] cheese - inserting 1000 documents. first: Category:Sports museums in Japan and last: Template:Fb team Sokol-PZhD Saratov -[2018-02-13T00:41:03.837] [INFO] cheese - inserting 1000 documents. first: Category:Italian military aircraft 1930-1939 and last: Peter Kirk (Director) -[2018-02-13T00:41:03.844] [INFO] cheese - inserting 1000 documents. first: Swindlehurst and last: Category:Ireland–Soviet Union relations -[2018-02-13T00:41:03.845] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:41:03.847] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:41:03.894] [INFO] cheese - inserting 1000 documents. first: File:Jiyoshaansee.jpg and last: Kumkum Bhagya -[2018-02-13T00:41:03.895] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:41:03.918] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:41:03.978] [INFO] cheese - inserting 1000 documents. first: Beaulieu, Cantal and last: Nylink -[2018-02-13T00:41:03.981] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:04.031] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:41:04.127] [INFO] cheese - inserting 1000 documents. first: William Orlando Smith and last: Virginia Route 71 -[2018-02-13T00:41:04.191] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:41:04.297] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Saturn-1991 St. Petersburg and last: Afaa M. Weaver -[2018-02-13T00:41:04.307] [INFO] cheese - inserting 1000 documents. first: Saurabh Gadgil and last: Fran Moore -[2018-02-13T00:41:04.330] [INFO] cheese - inserting 1000 documents. first: Berom language and last: Charles Allen Du Val -[2018-02-13T00:41:04.341] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:41:04.345] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:41:04.403] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:41:04.410] [INFO] cheese - inserting 1000 documents. first: Athletic Insight: The Online Journal of Sport Psychology and last: Rive gauche -[2018-02-13T00:41:04.415] [INFO] cheese - inserting 1000 documents. first: 2014 TCU Horned Frogs baseball team and last: Enterovirus D -[2018-02-13T00:41:04.453] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:41:04.472] [INFO] cheese - inserting 1000 documents. first: Elu Thingol and last: Uzboi Vallis -[2018-02-13T00:41:04.480] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:41:04.555] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:41:04.692] [INFO] cheese - inserting 1000 documents. first: VA 71 and last: Krinkov -[2018-02-13T00:41:04.700] [INFO] cheese - inserting 1000 documents. first: Template:CompetitionRecordThird-Fourth and last: Buruscho -[2018-02-13T00:41:04.719] [INFO] cheese - inserting 1000 documents. first: Percy Evans Freke and last: Category:Swedish aircraft 1980-1989 -[2018-02-13T00:41:04.760] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:41:04.791] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:41:04.823] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:41:04.998] [INFO] cheese - inserting 1000 documents. first: Boychoir (film) and last: Template:NYCS Platform Layout CCS -[2018-02-13T00:41:05.002] [INFO] cheese - inserting 1000 documents. first: Prime Outlets - International and last: Category:NA-Class Indian music articles -[2018-02-13T00:41:05.064] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:41:05.065] [INFO] cheese - inserting 1000 documents. first: Ohr HaChayim and last: Template:Years in Video Gaming -[2018-02-13T00:41:05.078] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:41:05.134] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:41:05.169] [INFO] cheese - inserting 1000 documents. first: Quasi open map and last: Vragočanica -[2018-02-13T00:41:05.225] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:41:05.288] [INFO] cheese - inserting 1000 documents. first: Return to the Apocalyptic City and last: Portal:Trains/Featured article/Week 29, 2005 -[2018-02-13T00:41:05.302] [INFO] cheese - inserting 1000 documents. first: Category:Neighbourhoods in Japan and last: Template:COTWCurrentPicks -[2018-02-13T00:41:05.339] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:41:05.345] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:41:05.440] [INFO] cheese - inserting 1000 documents. first: Draft:Bryan Pearson and last: Ubian Banadan language -[2018-02-13T00:41:05.449] [INFO] cheese - inserting 1000 documents. first: Saltdal Commune, Rognan and last: Conservative Bible Project -[2018-02-13T00:41:05.480] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:05.536] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:41:05.546] [INFO] cheese - inserting 1000 documents. first: Beraud Stuart of Aubigny and last: Norbert Likulia Bolongo -[2018-02-13T00:41:05.579] [INFO] cheese - inserting 1000 documents. first: Campground Historic District and last: Portal:Uttar Pradesh/Anniversaries/February/February 6 -[2018-02-13T00:41:05.616] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:41:05.646] [INFO] cheese - inserting 1000 documents. first: Chairman of the Revolutionary Command Council of Libya and last: Category:1562 treaties -[2018-02-13T00:41:05.661] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:41:05.729] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:41:05.756] [INFO] cheese - inserting 1000 documents. first: File:Sumo4-vi.jpg and last: Gheorghe Tzitzeica -[2018-02-13T00:41:05.804] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:41:05.875] [INFO] cheese - inserting 1000 documents. first: Cythera (disambiguation) and last: Ackroyd, Christa -[2018-02-13T00:41:05.910] [INFO] cheese - inserting 1000 documents. first: Mainz-Finthen Airport and last: Targeted Israeli air strike -[2018-02-13T00:41:05.917] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:05.973] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:06.043] [INFO] cheese - inserting 1000 documents. first: Rehman Khalid and last: Annie (1982 movie) -[2018-02-13T00:41:06.135] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Featured article/Week 30, 2005 and last: Shinjiro Otani -[2018-02-13T00:41:06.141] [INFO] cheese - inserting 1000 documents. first: Verizon Wireless Amphitheatre Kansas City and last: Outwrests -[2018-02-13T00:41:06.150] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:41:06.197] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:06.215] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:41:06.268] [INFO] cheese - inserting 1000 documents. first: Itsuka Kitto... and last: Dismorphia lycosura -[2018-02-13T00:41:06.376] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:41:06.390] [INFO] cheese - inserting 1000 documents. first: File:Macbeth2006poster.jpg and last: Full Negative (or) Breaks -[2018-02-13T00:41:06.463] [INFO] cheese - inserting 1000 documents. first: Ackroyd, David and last: Pseudosphex consobrina -[2018-02-13T00:41:06.519] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:41:06.660] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:41:06.674] [INFO] cheese - inserting 1000 documents. first: Category:Law firms established in 1937 and last: Dunamis Lui -[2018-02-13T00:41:06.727] [INFO] cheese - inserting 1000 documents. first: File:Clannadthebest.jpg and last: History of the African Union -[2018-02-13T00:41:06.748] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:41:06.789] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:41:06.918] [INFO] cheese - inserting 1000 documents. first: Walk of Life (album) and last: Donum -[2018-02-13T00:41:06.921] [INFO] cheese - inserting 1000 documents. first: Gabe Marzano and last: Hong Kong-Thailand relations -[2018-02-13T00:41:06.996] [INFO] cheese - inserting 1000 documents. first: HMS Active (1758) and last: Wikipedia:WikiProject Spam/LinkReports/craies.crihan.fr -[2018-02-13T00:41:07.009] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:41:07.037] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:41:07.103] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:41:07.133] [INFO] cheese - inserting 1000 documents. first: Moritomo Saegusa and last: Poddębice County -[2018-02-13T00:41:07.183] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Dominica articles and last: Jean-Louis Prianon -[2018-02-13T00:41:07.186] [INFO] cheese - inserting 1000 documents. first: Template:Filmfare Award for Best Film and last: 1873 World Exhibition -[2018-02-13T00:41:07.200] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:41:07.224] [INFO] cheese - inserting 1000 documents. first: Built for the Kill and last: Singapore Open (men's tennis) -[2018-02-13T00:41:07.226] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:07.269] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:41:07.308] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:07.480] [INFO] cheese - inserting 1000 documents. first: Kamuku languages and last: Gary Owen (comedian) -[2018-02-13T00:41:07.531] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:41:07.850] [INFO] cheese - inserting 1000 documents. first: Advanced Level (United Kingdom) and last: Nazareth Motor Speedway -[2018-02-13T00:41:07.913] [INFO] cheese - inserting 1000 documents. first: ELJ Center and last: Twilight (2008 movie) -[2018-02-13T00:41:07.917] [INFO] cheese - inserting 1000 documents. first: Category:Unknown-importance Jamaica articles and last: Kashabowie -[2018-02-13T00:41:07.935] [INFO] cheese - inserting 1000 documents. first: Imaginary (sociology) and last: Wikipedia:Articles for deletion/Quartermilegame -[2018-02-13T00:41:07.955] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:07.966] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:41:07.980] [INFO] cheese - inserting 1000 documents. first: Powiat of Poddębice and last: Cargo Cult Science -[2018-02-13T00:41:08.006] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian canoeists and last: Wikipedia:WikiProject Spam/LinkReports/volgaboat.ru -[2018-02-13T00:41:08.036] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:41:08.116] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:41:08.180] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:41:08.224] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T00:41:08.358] [INFO] cheese - inserting 1000 documents. first: Astrée(Typeface) and last: Cocoon (Meg & Dia Album) -[2018-02-13T00:41:08.420] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:41:08.540] [INFO] cheese - inserting 1000 documents. first: Buzduganii de Jos and last: Jamie Smith (footballer, born 1981) -[2018-02-13T00:41:08.547] [INFO] cheese - inserting 1000 documents. first: Category:Telecommunications companies established in 1953 and last: Category:Defunct organisations based in Barbados -[2018-02-13T00:41:08.554] [INFO] cheese - inserting 1000 documents. first: ⁐ and last: Enrichment (record producer) -[2018-02-13T00:41:08.580] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:41:08.616] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:41:08.628] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:41:08.653] [INFO] cheese - inserting 1000 documents. first: Freeman V. Horner and last: HMNZS Santon -[2018-02-13T00:41:08.723] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:41:08.747] [INFO] cheese - inserting 1000 documents. first: Nova Canaa Paulista and last: Nangong -[2018-02-13T00:41:08.805] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:08.836] [INFO] cheese - inserting 1000 documents. first: Template:User Proud Indonesian and last: Elizabeth Jill Cowley -[2018-02-13T00:41:08.874] [INFO] cheese - inserting 1000 documents. first: File:Book-cover unintended consequences.jpg and last: Bareback (disambiguation) -[2018-02-13T00:41:08.908] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:08.949] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:41:09.076] [INFO] cheese - inserting 1000 documents. first: Template:Garden-book-stub and last: Pothavaram -[2018-02-13T00:41:09.081] [INFO] cheese - inserting 1000 documents. first: Category:Childhood in Pakistan and last: Eunidia spilotoides snizekiana -[2018-02-13T00:41:09.134] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:41:09.155] [INFO] cheese - inserting 1000 documents. first: Postal codes in Austria and last: Erythranthe breweri -[2018-02-13T00:41:09.150] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:41:09.199] [INFO] cheese - inserting 1000 documents. first: Wandering bishops and last: United States House of Representatives elections in California, 1876 -[2018-02-13T00:41:09.230] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:41:09.283] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:09.287] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 66 and last: Category:Wikipedian singers -[2018-02-13T00:41:09.295] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Cacopinae and last: Duan Siping -[2018-02-13T00:41:09.369] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:41:09.372] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:41:09.583] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia talk pages with the Wikia content template and last: Stanisław Stefański -[2018-02-13T00:41:09.655] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:41:09.666] [INFO] cheese - inserting 1000 documents. first: Eunidia spilotoides spilotoides and last: File:EvaBluRayBox.jpg -[2018-02-13T00:41:09.672] [INFO] cheese - inserting 1000 documents. first: Electoral Action of Poles in Lithuania and last: The St. Paul Travelers Companies, Inc. -[2018-02-13T00:41:09.724] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:41:09.779] [INFO] cheese - inserting 1000 documents. first: Sasa Branezac and last: Morris Engines -[2018-02-13T00:41:09.801] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:41:09.850] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:41:09.913] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Kaišiadorys and last: Angliers -[2018-02-13T00:41:09.923] [INFO] cheese - inserting 1000 documents. first: Cleveland Symphony and last: NZGSM 2002 (Afghanistan) -[2018-02-13T00:41:09.929] [INFO] cheese - inserting 1000 documents. first: University of Applied Sciences Wiener Neustadt and last: Crivitz (crater on Mars) -[2018-02-13T00:41:09.993] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:41:09.998] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:41:10.039] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:41:10.210] [INFO] cheese - inserting 1000 documents. first: University of Applied Sciences Worms and last: Adamo, Mark -[2018-02-13T00:41:10.321] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:10.331] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bruma Lake Flea Market, Gauteng and last: Nikolay Vasilyevich Fyodorov -[2018-02-13T00:41:10.357] [INFO] cheese - inserting 1000 documents. first: The St. Paul Companies Incorporated and last: LFF -[2018-02-13T00:41:10.396] [INFO] cheese - inserting 1000 documents. first: Overmatching and last: Utah State Route 113 (1931) -[2018-02-13T00:41:10.404] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:41:10.437] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:10.474] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:41:10.544] [INFO] cheese - inserting 1000 documents. first: File:Iris Murdoch.jpg and last: Virtual machine escape -[2018-02-13T00:41:10.602] [INFO] cheese - inserting 1000 documents. first: Cut-leaf banksia and last: Tower Plaza (Ann Arbor, Michigan) -[2018-02-13T00:41:10.649] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:10.667] [INFO] cheese - inserting 1000 documents. first: Angoulins and last: Armadillo (magazine) -[2018-02-13T00:41:10.683] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:41:10.756] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:41:10.879] [INFO] cheese - inserting 1000 documents. first: Nestorone and last: Category:1956 software -[2018-02-13T00:41:10.922] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:11.033] [INFO] cheese - inserting 1000 documents. first: Freedom to Operate Search and last: Wikipedia:WikiProject Spam/LinkReports/britesources.com -[2018-02-13T00:41:11.049] [INFO] cheese - inserting 1000 documents. first: Benedictine Abbey of St. Matthew and last: Syrian Arab Socialist Ba'ath Party -[2018-02-13T00:41:11.050] [INFO] cheese - inserting 1000 documents. first: Adamo, Nicola and last: Karate at the 2010 Asian Games – Women's kumite 61 kg -[2018-02-13T00:41:11.118] [INFO] cheese - inserting 1000 documents. first: Coriandrum sativum and last: Colby, Clark County, WI -[2018-02-13T00:41:11.107] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:41:11.162] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:41:11.166] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:41:11.276] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:41:11.292] [INFO] cheese - inserting 1000 documents. first: Mouzon, Charente and last: OneMine -[2018-02-13T00:41:11.342] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:11.352] [INFO] cheese - inserting 1000 documents. first: L’Oréal-UNESCO Awards for Women in Science and last: Benteng Stadium -[2018-02-13T00:41:11.403] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:41:11.518] [INFO] cheese - inserting 1000 documents. first: Syrian Arab Socialist Baath Party and last: Banei Kinen -[2018-02-13T00:41:11.525] [INFO] cheese - inserting 1000 documents. first: Medtech and last: 2013 IIHF World Women's U18 Championship – Division I -[2018-02-13T00:41:11.562] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:41:11.565] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:41:11.568] [INFO] cheese - inserting 1000 documents. first: Rural Municipality of Cambria No. 6 and last: Ohio House of Representatives membership, 128th General Assembly -[2018-02-13T00:41:11.602] [INFO] cheese - inserting 1000 documents. first: Category:Technology companies established in 1924 and last: Category:Dutch alternate history novels -[2018-02-13T00:41:11.624] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:41:11.650] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:41:11.783] [INFO] cheese - inserting 1000 documents. first: Natchitoches Airport and last: Đà Bắc District -[2018-02-13T00:41:11.834] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:11.859] [INFO] cheese - inserting 1000 documents. first: Colby, WI and last: Presidents of the Government of Spain -[2018-02-13T00:41:11.863] [INFO] cheese - inserting 1000 documents. first: Erric Pegram and last: Alexandre Lebziak -[2018-02-13T00:41:11.919] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:41:11.924] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:41:11.962] [INFO] cheese - inserting 1000 documents. first: Toongabbie, New South Wales and last: Template:Did you know nominations/Unity for Socialism -[2018-02-13T00:41:11.980] [INFO] cheese - inserting 1000 documents. first: With All of My Heart and last: Ukrainian First League 2005–06 -[2018-02-13T00:41:11.999] [INFO] cheese - inserting 1000 documents. first: Thomas Charveriat and last: Dungeon Ghyll Force -[2018-02-13T00:41:12.029] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:12.032] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:41:12.077] [INFO] cheese - inserting 1000 documents. first: Category:Economic history of El Salvador and last: Constructus Corporation -[2018-02-13T00:41:12.089] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:41:12.136] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:12.424] [INFO] cheese - inserting 1000 documents. first: Category:Romanian emigrants to Norway and last: File:Legion of the Damned (film).jpg -[2018-02-13T00:41:12.456] [INFO] cheese - inserting 1000 documents. first: Goodbye, Mr. Despair and last: Gloria (disambiguation) -[2018-02-13T00:41:12.477] [INFO] cheese - inserting 1000 documents. first: Viterbo Cathedral and last: Charleston, Oregon -[2018-02-13T00:41:12.483] [INFO] cheese - inserting 1000 documents. first: Douglas Munro (actor) and last: Coral belt -[2018-02-13T00:41:12.497] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/GW Patriot (2nd nomination) and last: Category:ANZAC -[2018-02-13T00:41:12.497] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:41:12.574] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:41:12.590] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:41:12.639] [INFO] cheese - inserting 1000 documents. first: Sterna forsteri and last: Culture of San Francisco, CA -[2018-02-13T00:41:12.573] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:12.668] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:12.676] [INFO] cheese - inserting 1000 documents. first: Puerto Viejo Talamanca and last: O'Neill, Martin -[2018-02-13T00:41:12.754] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:41:12.792] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:41:13.049] [INFO] cheese - inserting 1000 documents. first: Scottish Intercollegiate Guidelines Network and last: THE TEKE -[2018-02-13T00:41:13.094] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:41:13.124] [INFO] cheese - inserting 1000 documents. first: Brean and last: Jim Wright Field -[2018-02-13T00:41:13.184] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:41:13.193] [INFO] cheese - inserting 1000 documents. first: Oliver, Martin and last: Yangtze Jiang -[2018-02-13T00:41:13.220] [INFO] cheese - inserting 1000 documents. first: La legione dei dannati and last: Demographic of Ferizaj -[2018-02-13T00:41:13.249] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:13.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/October 11, 2009 and last: ATCvet code QG02 -[2018-02-13T00:41:13.292] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:41:13.330] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:41:13.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bi-permissive and last: Election Results, OH Governor (Democratic Primaries) -[2018-02-13T00:41:13.403] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:41:13.454] [INFO] cheese - inserting 1000 documents. first: Saryuparin Brahmins and last: The Collected Works of C.G. Jung -[2018-02-13T00:41:13.490] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:41:13.513] [INFO] cheese - inserting 1000 documents. first: Madame Pace and last: Michael Niall -[2018-02-13T00:41:13.588] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:41:13.606] [INFO] cheese - inserting 1000 documents. first: Bailey v. United States and last: Gunnbjorn Ulf-Krakuson -[2018-02-13T00:41:13.671] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T00:41:13.686] [INFO] cheese - inserting 1000 documents. first: E. D. van Oort and last: Category:Populated places on the National Register of Historic Places in New Mexico -[2018-02-13T00:41:13.688] [INFO] cheese - inserting 1000 documents. first: Would I Lie To You and last: Wikipedia:WikiProject Spam/Local/muslimsaustralia.com.au -[2018-02-13T00:41:13.730] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:41:13.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/LISA MVC and last: Alpine skiing at the 2010 Winter Olympics – Men's combined -[2018-02-13T00:41:13.749] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:41:13.786] [INFO] cheese - inserting 1000 documents. first: The Collected Works of CG Jung and last: Eugene Konovaletz -[2018-02-13T00:41:13.814] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:41:13.833] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:41:14.009] [INFO] cheese - inserting 1000 documents. first: Election Results, OH Lieutenant Governor (Democratic Primaries) and last: Aberdeenshire rowie -[2018-02-13T00:41:14.065] [INFO] cheese - inserting 1000 documents. first: Howard Breslin and last: Division 3 1971 -[2018-02-13T00:41:14.096] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:41:14.191] [INFO] cheese - inserting 1000 documents. first: Abejas de Guanajuato and last: Architecture in the Republic of Kosovo -[2018-02-13T00:41:14.195] [INFO] cheese - inserting 1000 documents. first: Neftalí Ricardo Reyes and last: International Taste and Quality Institute -[2018-02-13T00:41:14.196] [INFO] cheese - inserting 1000 documents. first: Budapest X. kerülete and last: File:JasonRobardsSr.gif -[2018-02-13T00:41:14.196] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:41:14.225] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/World War I women's recruitment poster and last: U S Air Force Test Pilot School -[2018-02-13T00:41:14.264] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:41:14.305] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:41:14.318] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:41:14.402] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:14.447] [INFO] cheese - inserting 1000 documents. first: Boeing XB-44 and last: Template:Cite press release/doc -[2018-02-13T00:41:14.503] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:41:14.703] [INFO] cheese - inserting 1000 documents. first: Croatian True Revival and last: Wikipedia:Wikipedia Signpost/2005-05-23/Proceedings of Wikitech-l -[2018-02-13T00:41:14.731] [INFO] cheese - inserting 1000 documents. first: 有天 and last: Category:Organizations based in Providence, Rhode Island -[2018-02-13T00:41:14.745] [INFO] cheese - inserting 1000 documents. first: Boardman/Polando Field and last: 1986 Wake Forest Demon Deacons football team -[2018-02-13T00:41:14.745] [INFO] cheese - inserting 1000 documents. first: 2014 FIFA World Cup qualification (CONCACAF) and last: Category:English legal scholars -[2018-02-13T00:41:14.763] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:41:14.784] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:41:14.788] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:41:14.798] [INFO] cheese - inserting 1000 documents. first: ITQi and last: Category:Kokugakuin University alumni -[2018-02-13T00:41:14.812] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:41:14.858] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:41:14.892] [INFO] cheese - inserting 1000 documents. first: Chang Kuo Chou and last: Wikipedia:WikiProject Articles for creation/March 2014 Backlog Elimination Drive/Anne Delong -[2018-02-13T00:41:14.950] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:41:15.023] [INFO] cheese - inserting 1000 documents. first: Boca FC and last: Baranzate -[2018-02-13T00:41:15.074] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:15.159] [INFO] cheese - inserting 1000 documents. first: C30H23BrO4 and last: MRI (Charlotte Gainsbourg album) -[2018-02-13T00:41:15.176] [INFO] cheese - inserting 1000 documents. first: 1987 Wake Forest Demon Deacons football team and last: Radiance of Shadows -[2018-02-13T00:41:15.205] [INFO] cheese - inserting 1000 documents. first: Amtrac (musician) and last: Noël Aubert de Versé -[2018-02-13T00:41:15.212] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:41:15.250] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:15.265] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:41:15.318] [INFO] cheese - inserting 1000 documents. first: Centre Marcel Dionne and last: Protestant Unionist -[2018-02-13T00:41:15.388] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:41:15.435] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/March 2014 Backlog Elimination Drive/Adjustment and last: Didunculinae -[2018-02-13T00:41:15.502] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:41:15.692] [INFO] cheese - inserting 1000 documents. first: CBCH-FM and last: Wikipedia:Articles for deletion/Save Stargate SG-1 -[2018-02-13T00:41:15.711] [INFO] cheese - inserting 1000 documents. first: Pyralis lividalis and last: File:Marcus alexander.jpg -[2018-02-13T00:41:15.754] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:41:15.760] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:15.773] [INFO] cheese - inserting 1000 documents. first: Category:Russian speculative fiction television series and last: Category:Buildings and structures in Krasnodar -[2018-02-13T00:41:15.792] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2000 May 5 and last: Wikipedia:Changing username/Usurpations/Completed/30 -[2018-02-13T00:41:15.857] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rae.es and last: Category:1979 in badminton -[2018-02-13T00:41:15.872] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:41:15.881] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:41:15.945] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:41:16.014] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/New York State Route 347 and last: Joseph and the Dreamer -[2018-02-13T00:41:16.081] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:16.224] [INFO] cheese - inserting 1000 documents. first: Who Dares Wins (TV series) and last: Bruce Seldon -[2018-02-13T00:41:16.267] [INFO] cheese - inserting 1000 documents. first: Edward Vance Flanagan and last: Nowell, Richard -[2018-02-13T00:41:16.272] [INFO] cheese - inserting 1000 documents. first: File:Yakusu hospital.png and last: Route survey -[2018-02-13T00:41:16.272] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Indoor Soccer League teams and last: Chaosistan -[2018-02-13T00:41:16.277] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:41:16.289] [INFO] cheese - inserting 1000 documents. first: Category:1908 in basketball and last: Krishnarjuna(2008 film) -[2018-02-13T00:41:16.310] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:16.315] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:41:16.332] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:41:16.343] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:41:16.393] [INFO] cheese - inserting 1000 documents. first: Tibor Gécsek and last: Villainy Inc. -[2018-02-13T00:41:16.436] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:41:16.525] [INFO] cheese - inserting 1000 documents. first: Oulaya and last: TradeCentre -[2018-02-13T00:41:16.588] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:41:16.624] [INFO] cheese - inserting 1000 documents. first: Lin Yu-hsien and last: Draft:Micromagic Systems Mantis -[2018-02-13T00:41:16.643] [INFO] cheese - inserting 1000 documents. first: U S Route 30 in New Jersey and last: Category:2000s in Pakistan -[2018-02-13T00:41:16.665] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:41:16.677] [INFO] cheese - inserting 1000 documents. first: Old Warren County Courthouse Complex and last: Dar Lyon -[2018-02-13T00:41:16.689] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:41:16.731] [INFO] cheese - inserting 1000 documents. first: Bisi Onabanjo and last: Template:Bharat Punarnirman Dal/meta/color -[2018-02-13T00:41:16.736] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:41:16.784] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:41:16.805] [INFO] cheese - inserting 1000 documents. first: Avid Free DV and last: Glottal R -[2018-02-13T00:41:16.859] [INFO] cheese - inserting 1000 documents. first: Roosevelt F. Dorn and last: Y2K Problem -[2018-02-13T00:41:16.868] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:41:16.892] [INFO] cheese - inserting 1000 documents. first: Template:Northwest Upstate Illini and last: Poecilosoma chrysis -[2018-02-13T00:41:16.922] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:16.945] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:41:17.060] [INFO] cheese - inserting 1000 documents. first: D. Sullivan and last: M-Sport World Rally Team -[2018-02-13T00:41:17.097] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Clay County, Kentucky and last: Occupy Providence -[2018-02-13T00:41:17.099] [INFO] cheese - inserting 1000 documents. first: Category:Military veterans' affairs in Canada and last: Category:Democratic Republic of the Congo environmentalists -[2018-02-13T00:41:17.105] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:17.144] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:41:17.166] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:41:17.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Serviciile secrete rusești and last: Socialist Workers' Party of Iran -[2018-02-13T00:41:17.352] [INFO] cheese - inserting 1000 documents. first: Kaiser-Bessel-derived and last: Theresa A. Singleton -[2018-02-13T00:41:17.380] [INFO] cheese - inserting 1000 documents. first: Chitpavan Konkanastha Brahmins and last: File:Gradgrindapprehendshischildren.jpg -[2018-02-13T00:41:17.425] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:41:17.433] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:41:17.496] [INFO] cheese - inserting 1000 documents. first: Kanagawa Prefectural Board of Education and last: Ngasanya Ilongo -[2018-02-13T00:41:17.556] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:41:17.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ultimatch.biz and last: Marcia M. Anderson -[2018-02-13T00:41:17.653] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:41:17.665] [INFO] cheese - inserting 1000 documents. first: Picture Perfect (album) and last: The Silver Swan -[2018-02-13T00:41:17.684] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:41:17.724] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:17.837] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day list/August 8 and last: H. J. Bhabha -[2018-02-13T00:41:17.932] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:41:18.007] [INFO] cheese - inserting 1000 documents. first: Tessa Prendergast and last: Category:Anti-Zionism in Europe -[2018-02-13T00:41:18.021] [INFO] cheese - inserting 1000 documents. first: Sacred Heart Church, St. Petersburg and last: Wikipedia:Sockpuppet investigations/Crowfurt -[2018-02-13T00:41:18.059] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:41:18.122] [INFO] cheese - inserting 1000 documents. first: QCELP and last: Khalil El Maaoui -[2018-02-13T00:41:18.132] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:41:18.171] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:18.193] [INFO] cheese - inserting 1000 documents. first: Sphinx Head Society and last: U. S. Route 50 in Missouri -[2018-02-13T00:41:18.201] [INFO] cheese - inserting 1000 documents. first: File:Pink floyd meddle echoes.ogg and last: Carbon dioxide-equivalent -[2018-02-13T00:41:18.224] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:41:18.226] [INFO] cheese - inserting 1000 documents. first: Humiliator and last: 2005–06 in Scottish football -[2018-02-13T00:41:18.266] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:41:18.281] [INFO] cheese - inserting 1000 documents. first: Vayeleh and last: European Under-21 Football Championship -[2018-02-13T00:41:18.326] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:41:18.355] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:41:18.448] [INFO] cheese - inserting 1000 documents. first: Template:Canadian politics/leadership election/British Columbia New Democratic Party and last: Wikipedia:Miscellany for deletion/Cleanup Taskforce notes -[2018-02-13T00:41:18.485] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:41:18.563] [INFO] cheese - inserting 1000 documents. first: Category:Manufacturing companies established in 1807 and last: Category:Grade I listed buildings in the London Borough of Bromley -[2018-02-13T00:41:18.594] [INFO] cheese - inserting 1000 documents. first: Cynthia Ann Humes and last: File:Lighting Research & Technology.jpg -[2018-02-13T00:41:18.609] [INFO] cheese - inserting 1000 documents. first: La Chapelle-des-Fougeretz and last: Cariboo Country (TV series) -[2018-02-13T00:41:18.618] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:18.668] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:41:18.672] [INFO] cheese - inserting 1000 documents. first: Gonospermum and last: Podgrad, Gornja Radgona -[2018-02-13T00:41:18.690] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:18.732] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:18.777] [INFO] cheese - inserting 1000 documents. first: Broad Rock, Virginia and last: Nu Microscopii -[2018-02-13T00:41:18.811] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:41:18.870] [INFO] cheese - inserting 1000 documents. first: 2006 UEFA U-21 Championship (squads) and last: Felino -[2018-02-13T00:41:18.897] [INFO] cheese - inserting 1000 documents. first: List of Chief Ministers of KwaNdebele and last: WQCD-FM -[2018-02-13T00:41:18.908] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:18.954] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:19.003] [INFO] cheese - inserting 1000 documents. first: Category:Listed buildings in the London Borough of Bromley and last: Claire Rose -[2018-02-13T00:41:19.087] [INFO] cheese - inserting 1000 documents. first: Template:Osage County, Missouri and last: Template:VSRV8 2008 -[2018-02-13T00:41:19.105] [INFO] cheese - inserting 1000 documents. first: Talcahuana, Chile and last: Piece of Britney -[2018-02-13T00:41:19.108] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:41:19.173] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:41:19.183] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:41:19.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Connecticut articles by quality/6 and last: Sphaeroclinium -[2018-02-13T00:41:19.273] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:41:19.297] [INFO] cheese - inserting 1000 documents. first: Super Mario Bros and last: Nina Gunke -[2018-02-13T00:41:19.360] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:41:19.543] [INFO] cheese - inserting 1000 documents. first: Fontevivo and last: Cylla Markham -[2018-02-13T00:41:19.557] [INFO] cheese - inserting 1000 documents. first: 1987 European Athletics Indoor Championships - Men's 400 metres and last: Template:Taxonomy/Hippohyus -[2018-02-13T00:41:19.604] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:41:19.606] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:41:19.638] [INFO] cheese - inserting 1000 documents. first: Single malt whiskies and last: The Saddle (poker) -[2018-02-13T00:41:19.723] [INFO] cheese - inserting 1000 documents. first: Athrips tetrapunctella and last: Schmala -[2018-02-13T00:41:19.725] [INFO] cheese - inserting 1000 documents. first: File:Charlie G Gibson.jpg and last: Zhao Jiuzhang -[2018-02-13T00:41:19.728] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:41:19.797] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:19.809] [INFO] cheese - inserting 1000 documents. first: Sphaeromeria and last: File:Geraldton-Greenough logo.png -[2018-02-13T00:41:19.809] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:19.824] [INFO] cheese - inserting 1000 documents. first: Maury, North Carolina and last: İstanbul–Ankara Main Line -[2018-02-13T00:41:19.876] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:41:19.928] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:41:20.117] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Protoryx and last: 2019 AFC Asian Cup qualification – Third Round -[2018-02-13T00:41:20.187] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:20.310] [INFO] cheese - inserting 1000 documents. first: Schmalenbach (Löhbach) and last: Cian -[2018-02-13T00:41:20.323] [INFO] cheese - inserting 1000 documents. first: Terrific (comics) and last: Conestoga (ship) -[2018-02-13T00:41:20.357] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:20.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2009 October 2 and last: Category:Ships of Fiji -[2018-02-13T00:41:20.369] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:41:20.374] [INFO] cheese - inserting 1000 documents. first: Template:WP Lingistics and last: Bruère-Allichamps -[2018-02-13T00:41:20.387] [INFO] cheese - inserting 1000 documents. first: Jules Hodgson and last: El viaje de Copperpot -[2018-02-13T00:41:20.391] [INFO] cheese - inserting 1000 documents. first: File:Robert Gould Shaw II.jpg and last: Chimney-jamb -[2018-02-13T00:41:20.422] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:41:20.446] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:41:20.575] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:20.580] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:20.754] [INFO] cheese - inserting 1000 documents. first: Moral Equivalent of War speech (Carter) and last: Draft:DIPLOMA IN MEDICAL LABORATORY TECHNOLOGY -[2018-02-13T00:41:20.823] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:41:20.954] [INFO] cheese - inserting 1000 documents. first: The Block 2BL and last: Wikipedia:Articles for deletion/Viorel Cute-Petric -[2018-02-13T00:41:20.973] [INFO] cheese - inserting 1000 documents. first: Kojnok and last: Jerry Herst -[2018-02-13T00:41:21.009] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:21.017] [INFO] cheese - inserting 1000 documents. first: List of WNBL awards and last: NSSC -[2018-02-13T00:41:21.043] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:21.074] [INFO] cheese - inserting 1000 documents. first: Titus (TV Series) and last: Ekolosko drustvo Zeleni Osijek -[2018-02-13T00:41:21.116] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:41:21.143] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:41:21.279] [INFO] cheese - inserting 1000 documents. first: Bué and last: Saint-Laurent-du-Cros -[2018-02-13T00:41:21.387] [INFO] cheese - inserting 1000 documents. first: CVV number and last: Ides of March (band) -[2018-02-13T00:41:21.441] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T00:41:21.514] [INFO] cheese - inserting 1000 documents. first: Category:1854 in the Caribbean and last: Red Dwarf 4 -[2018-02-13T00:41:21.545] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T00:41:21.670] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:21.693] [INFO] cheese - inserting 1000 documents. first: Mary (Molly) MacCarthy and last: Repeat expansion disorder -[2018-02-13T00:41:21.700] [INFO] cheese - inserting 1000 documents. first: Guiyang County and last: Nonstop to Nowhere -[2018-02-13T00:41:21.728] [INFO] cheese - inserting 1000 documents. first: Packera musiniensis and last: Vanessa Abruzzo -[2018-02-13T00:41:21.759] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:21.796] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:41:21.809] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:41:21.932] [INFO] cheese - inserting 1000 documents. first: Colombier, Côte-d'Or and last: Montmoyen -[2018-02-13T00:41:21.939] [INFO] cheese - inserting 1000 documents. first: Billy Spurdle and last: At Night I Pray -[2018-02-13T00:41:21.974] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:22.034] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:41:22.248] [INFO] cheese - inserting 1000 documents. first: The Calgary Sun and last: Double Platinum (film) -[2018-02-13T00:41:22.257] [INFO] cheese - inserting 1000 documents. first: Princeton orange and last: File:Up Poster.JPG -[2018-02-13T00:41:22.301] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:41:22.303] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright or Trademark and last: Pig's ears -[2018-02-13T00:41:22.310] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:41:22.324] [INFO] cheese - inserting 1000 documents. first: The Resurrection and last: Wikipedia:Articles for deletion/Kirill Formanchuk -[2018-02-13T00:41:22.371] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:22.395] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:22.478] [INFO] cheese - inserting 1000 documents. first: Ibsen Museum (Oslo) and last: US Route 29 in the District of Columbia -[2018-02-13T00:41:22.518] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:41:22.690] [INFO] cheese - inserting 1000 documents. first: Big Lake State Park and last: File:PhilOchsAToast.jpg -[2018-02-13T00:41:22.700] [INFO] cheese - inserting 1000 documents. first: Puerta de Europa and last: Drøbak Frogn IF -[2018-02-13T00:41:22.732] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:41:22.740] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:41:22.756] [INFO] cheese - inserting 1000 documents. first: Forage grasses and last: Gymnastics at the 2014 Summer Youth Olympics -[2018-02-13T00:41:22.798] [INFO] cheese - inserting 1000 documents. first: Microsoft Inc. and last: Underconstruction 1: Silence EP -[2018-02-13T00:41:22.803] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:41:22.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/hutchisoneffect.ca and last: Category:Murder in 1934 -[2018-02-13T00:41:22.868] [INFO] cheese - inserting 1000 documents. first: Jardine Strategic Holdings and last: Valentinianism -[2018-02-13T00:41:22.868] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:41:22.970] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:22.975] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:22.986] [INFO] cheese - inserting 1000 documents. first: File:N c vasanthakokilam in chandragupta chanakya.jpg and last: 2016 Coupe de la Martinique -[2018-02-13T00:41:23.072] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T00:41:23.108] [INFO] cheese - inserting 1000 documents. first: Monash University Art and Design Faculty and last: Future Clouds & Radar -[2018-02-13T00:41:23.139] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:41:23.192] [INFO] cheese - inserting 1000 documents. first: Paizay-le-Tort and last: W A Criswell -[2018-02-13T00:41:23.218] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:41:23.244] [INFO] cheese - inserting 1000 documents. first: Prague districts and last: Izvoarele -[2018-02-13T00:41:23.316] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:41:23.351] [INFO] cheese - inserting 1000 documents. first: Category:Writers about Scotland and last: Template:Fb team Impuls-2 -[2018-02-13T00:41:23.423] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:41:23.469] [INFO] cheese - inserting 1000 documents. first: Alvin H. Mackling and last: Slouching Towards Bethlehem -[2018-02-13T00:41:23.489] [INFO] cheese - inserting 1000 documents. first: Skande and last: File:Hollywood Seven (album) by Jon English.jpg -[2018-02-13T00:41:23.554] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:23.640] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:41:23.685] [INFO] cheese - inserting 1000 documents. first: W A Cunningham and last: 1935 Yankee hurricane -[2018-02-13T00:41:23.711] [INFO] cheese - inserting 1000 documents. first: Brazilian destroyer Para (1964) and last: Oystein -[2018-02-13T00:41:23.721] [INFO] cheese - inserting 1000 documents. first: Magic Engine and last: Wikipedia:Sockpuppet investigations/EdgarBacon -[2018-02-13T00:41:23.748] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:41:23.810] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T00:41:23.810] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:41:23.920] [INFO] cheese - inserting 1000 documents. first: Slowly but Surely and last: Alexander sphere -[2018-02-13T00:41:23.980] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:41:24.045] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Banants-2 and last: Category:People from Valdés, Asturias -[2018-02-13T00:41:24.109] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:24.168] [INFO] cheese - inserting 1000 documents. first: Diwan-i-Aam (Red Fort, Delhi) and last: File:Nerve 2016 poster.png -[2018-02-13T00:41:24.211] [INFO] cheese - inserting 1000 documents. first: Template:R from unnecessary disambiguation/sandbox and last: Metropolitan Michael of Austria -[2018-02-13T00:41:24.211] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:24.256] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:41:24.316] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Encyclopaedia Biblica topics/U and last: Syncephalum -[2018-02-13T00:41:24.329] [INFO] cheese - inserting 1000 documents. first: WF McCoy and last: Human-rated -[2018-02-13T00:41:24.352] [INFO] cheese - inserting 1000 documents. first: Statement of changes in equity and last: Wenham (MA) -[2018-02-13T00:41:24.372] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:41:24.400] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:24.460] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:41:24.486] [INFO] cheese - inserting 1000 documents. first: Greek pantheon and last: U.s. national football team -[2018-02-13T00:41:24.487] [INFO] cheese - inserting 1000 documents. first: Mount Pearl Jr. Blades and last: Template:Taxonomy/Maxakalisaurus -[2018-02-13T00:41:24.548] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:41:24.547] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:24.612] [INFO] cheese - inserting 1000 documents. first: Template:Independence Party - Þversum/meta/shortname and last: Category:Churches in Monroe County, Alabama -[2018-02-13T00:41:24.626] [INFO] cheese - inserting 1000 documents. first: File:Pierino colpisce ancora (1982 Film).jpg and last: 2016 Ningbo Challenger - Singles -[2018-02-13T00:41:24.656] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:41:24.659] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:41:24.807] [INFO] cheese - inserting 1000 documents. first: Syncretocarpus and last: Jéferson Rodrigues Gonçalves -[2018-02-13T00:41:24.888] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:41:24.896] [INFO] cheese - inserting 1000 documents. first: Peyronie's and last: Lacave, Lot -[2018-02-13T00:41:24.969] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:41:24.980] [INFO] cheese - inserting 1000 documents. first: Candlelight and last: Antiaging antioxidant -[2018-02-13T00:41:24.998] [INFO] cheese - inserting 1000 documents. first: Forgotten Landscapes Project and last: Château Sigognac -[2018-02-13T00:41:25.018] [INFO] cheese - inserting 1000 documents. first: Revere (MA) and last: Blade (Street Fighter) -[2018-02-13T00:41:25.035] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:25.038] [INFO] cheese - inserting 1000 documents. first: 2016 Brest Challenger - Singles and last: Wikipedia:TEXTES -[2018-02-13T00:41:25.075] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:25.083] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:25.117] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:41:25.157] [INFO] cheese - inserting 1000 documents. first: Environmental Literacy Plan and last: Pseudomya bartschi -[2018-02-13T00:41:25.252] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:41:25.267] [INFO] cheese - inserting 1000 documents. first: 366 geometry and last: Southeast louisiana university -[2018-02-13T00:41:25.310] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:41:25.359] [INFO] cheese - inserting 1000 documents. first: Rhopalocarpus undulatus and last: Becs (disambiguation) -[2018-02-13T00:41:25.395] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:41:25.431] [INFO] cheese - inserting 1000 documents. first: File:Usher building v3.png and last: List of Return to the Planet of the Apes episodes -[2018-02-13T00:41:25.476] [INFO] cheese - inserting 1000 documents. first: Château Dillon and last: Hakaona language -[2018-02-13T00:41:25.479] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:41:25.499] [INFO] cheese - inserting 1000 documents. first: Ab initio calculation and last: Wikipedia:Articles for deletion/Cost per contact -[2018-02-13T00:41:25.520] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:25.583] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:25.601] [INFO] cheese - inserting 1000 documents. first: Cillizza and last: Thus Always to Tyrants (album) -[2018-02-13T00:41:25.645] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:41:25.651] [INFO] cheese - inserting 1000 documents. first: File:Deyatakirula.jpg and last: "Golden Rule" Jones -[2018-02-13T00:41:25.652] [INFO] cheese - inserting 1000 documents. first: Oleksandr Matkobozhyk and last: History of Carson City, Nevada -[2018-02-13T00:41:25.686] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:41:25.714] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:41:25.790] [INFO] cheese - inserting 1000 documents. first: SMRT Buses and last: FDP (Deutschland) -[2018-02-13T00:41:25.811] [INFO] cheese - inserting 1000 documents. first: Thomas Vilhelm Pedersen and last: Roman Catholic Diocese of Solsona -[2018-02-13T00:41:25.836] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:41:25.838] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:41:25.909] [INFO] cheese - inserting 1000 documents. first: Category:Athletics in Mexico and last: Casandro (wrestler) -[2018-02-13T00:41:25.923] [INFO] cheese - inserting 1000 documents. first: History of Cartaxo and last: History of La Sarraz -[2018-02-13T00:41:25.943] [INFO] cheese - inserting 1000 documents. first: Sapp and last: Licenza -[2018-02-13T00:41:25.961] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:41:25.969] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:41:26.065] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:26.098] [INFO] cheese - inserting 1000 documents. first: Carousel Theater (disambiguation) and last: John Duggan -[2018-02-13T00:41:26.199] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:26.244] [INFO] cheese - inserting 1000 documents. first: West Hartlepool F. C. and last: York City F. C. records -[2018-02-13T00:41:26.299] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:41:26.334] [INFO] cheese - inserting 1000 documents. first: History of La Tour-de-Peilz and last: History of Suwa, Nagano -[2018-02-13T00:41:26.346] [INFO] cheese - inserting 1000 documents. first: Portal:New York City/Did you know/4 and last: Oxacme calcarea -[2018-02-13T00:41:26.402] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:41:26.425] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:41:26.535] [INFO] cheese - inserting 1000 documents. first: File:PeterTosh-MysticMan.jpg and last: Ibero-American -[2018-02-13T00:41:26.639] [INFO] cheese - inserting 1000 documents. first: Casandro and last: Archdeaconry of Isle of Man -[2018-02-13T00:41:26.671] [INFO] cheese - inserting 1000 documents. first: Pentameric and last: Hourglass (song) -[2018-02-13T00:41:26.670] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:41:26.695] [INFO] cheese - inserting 1000 documents. first: Category:U.S. Roads project articles needing maps and last: Empire of trebizond -[2018-02-13T00:41:26.700] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:41:26.713] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:41:26.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Samuil of Bulgaria/archive1 and last: Griselles -[2018-02-13T00:41:26.766] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:41:26.772] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:41:26.795] [INFO] cheese - inserting 1000 documents. first: History of Suwon and last: Category:1842 establishments in Washington, D.C. -[2018-02-13T00:41:26.850] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:41:27.034] [INFO] cheese - inserting 1000 documents. first: FZJK and last: Donald Norman McLeod -[2018-02-13T00:41:27.090] [INFO] cheese - inserting 1000 documents. first: List of Archdeacons of Isle of Man and last: File:A Good Lawyers Wife Poster.jpg -[2018-02-13T00:41:27.123] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:41:27.157] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:41:27.233] [INFO] cheese - inserting 1000 documents. first: Category:Start-Class medicine articles and last: 1993 RP -[2018-02-13T00:41:27.261] [INFO] cheese - inserting 1000 documents. first: Category:People from the Sakha Republic and last: Dmitriy Torlopov -[2018-02-13T00:41:27.279] [INFO] cheese - inserting 1000 documents. first: 1960 U S National Championships - Men's Singles and last: Category:Wikipedia requested maps of roads in Arkansas -[2018-02-13T00:41:27.287] [INFO] cheese - inserting 1000 documents. first: Sni Mills, Missouri and last: K-T.V. -[2018-02-13T00:41:27.299] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:41:27.311] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:41:27.364] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:41:27.364] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:41:27.560] [INFO] cheese - inserting 1000 documents. first: Cressy, Tasmania and last: CFEM-DT -[2018-02-13T00:41:27.639] [INFO] cheese - inserting 1000 documents. first: H.F.Copel. and last: Surfing Florida -[2018-02-13T00:41:27.653] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T00:41:27.693] [INFO] cheese - inserting 1000 documents. first: Hospital Provincial del Centenario (Rosario) and last: Natoya Goule -[2018-02-13T00:41:27.710] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:27.764] [INFO] cheese - inserting 1000 documents. first: Guarda, Portugal and last: SETA (contractor) -[2018-02-13T00:41:27.769] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:41:27.844] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:27.882] [INFO] cheese - inserting 1000 documents. first: Spotless (song) and last: Dryas (disambiguation) -[2018-02-13T00:41:27.925] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:27.927] [INFO] cheese - inserting 1000 documents. first: Diadem (series) and last: Category:Liverpool F.C. matches -[2018-02-13T00:41:27.955] [INFO] cheese - inserting 1000 documents. first: Fallacy of relevance and last: The Final Judgement -[2018-02-13T00:41:27.993] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:28.054] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:41:28.132] [INFO] cheese - inserting 1000 documents. first: Category:American psychological drama films and last: History of Knox County, Kentucky -[2018-02-13T00:41:28.171] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:41:28.218] [INFO] cheese - inserting 1000 documents. first: Alexandra Eldridge and last: Australian Catholic Bishops' Conference -[2018-02-13T00:41:28.256] [INFO] cheese - inserting 1000 documents. first: Spanish-language surname and last: Wikipedia:Articles for deletion/Candy/Molly's Lips -[2018-02-13T00:41:28.280] [INFO] cheese - inserting 1000 documents. first: Xintian and last: Prototi -[2018-02-13T00:41:28.288] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/newspapers.gov.im and last: Downfall (Trust Company song) -[2018-02-13T00:41:28.299] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:41:28.327] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:41:28.330] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:41:28.347] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:28.497] [INFO] cheese - inserting 1000 documents. first: History of Knox County, Tennessee and last: Draft:Odhran Ua hEolais -[2018-02-13T00:41:28.558] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:41:28.590] [INFO] cheese - inserting 1000 documents. first: Template:User do no harm and last: Touillon-et-Loutelet -[2018-02-13T00:41:28.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2006 August 30 and last: D.G. Kendall -[2018-02-13T00:41:28.673] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:41:28.799] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:41:28.886] [INFO] cheese - inserting 1000 documents. first: Category:College rowing coaches in the United States and last: CP-80633 -[2018-02-13T00:41:28.947] [INFO] cheese - inserting 1000 documents. first: 1975 Australian Rally Championship and last: File:Dmitry Moor 1941 What have you done to help the front.jpg -[2018-02-13T00:41:28.959] [INFO] cheese - inserting 1000 documents. first: Purple vs. violet and last: Anderssen Opening -[2018-02-13T00:41:28.978] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:41:28.989] [INFO] cheese - inserting 1000 documents. first: Palmer (B&A station) and last: Tour 2009 (Die Ärzte tour) -[2018-02-13T00:41:29.015] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:41:29.064] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:41:29.115] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:41:29.126] [INFO] cheese - inserting 1000 documents. first: Odhran Ua hEolais (10th Century Scribe) and last: The Society for the Promotion of Nature Conservation -[2018-02-13T00:41:29.199] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:41:29.308] [INFO] cheese - inserting 1000 documents. first: Grosvenor Place and last: Mar Thomas -[2018-02-13T00:41:29.339] [INFO] cheese - inserting 1000 documents. first: M.A.D. and last: Coogan -[2018-02-13T00:41:29.363] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:41:29.403] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:41:29.460] [INFO] cheese - inserting 1000 documents. first: DEL16P12.1P11.2 and last: Afiesimama, Ernest -[2018-02-13T00:41:29.548] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:41:29.564] [INFO] cheese - inserting 1000 documents. first: Marmaroxena autochalca and last: Wikipedia:United States Education Program/Poverty Justice and Human Capabilities (Diana Strassmann and Michael Emerson)/Proposed Topics -[2018-02-13T00:41:29.637] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:41:29.690] [INFO] cheese - inserting 1000 documents. first: Texas Workforce Commission and last: Wheatland Baptist Cemetery -[2018-02-13T00:41:29.695] [INFO] cheese - inserting 1000 documents. first: Agile tooling and last: Bruce Boppo Tiemann -[2018-02-13T00:41:29.735] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:41:29.743] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:41:29.858] [INFO] cheese - inserting 1000 documents. first: 1.a3 and last: John Wycliffe Lowes Forster -[2018-02-13T00:41:29.878] [INFO] cheese - inserting 1000 documents. first: Audnedal Station and last: Floodlit Cup (Northern Ireland) -[2018-02-13T00:41:29.887] [INFO] cheese - inserting 1000 documents. first: San Michele Mondovi and last: Year Of The Beast -[2018-02-13T00:41:29.938] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:29.933] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:41:29.964] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:41:30.058] [INFO] cheese - inserting 1000 documents. first: Rochelle feinstein and last: Crack Rock Steady (Song) -[2018-02-13T00:41:30.156] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:41:30.273] [INFO] cheese - inserting 1000 documents. first: Netherlands at the 2004 Summer Paralympics and last: Category:Geography of Rowan County, Kentucky -[2018-02-13T00:41:30.310] [INFO] cheese - inserting 1000 documents. first: Corporate limit and last: Books Etc -[2018-02-13T00:41:30.346] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:41:30.426] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:30.590] [INFO] cheese - inserting 1000 documents. first: Calleville and last: Záviš of Zápy -[2018-02-13T00:41:30.675] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:41:30.726] [INFO] cheese - inserting 1000 documents. first: Woodbridge High School (Irvine, California) and last: Dave Finlay -[2018-02-13T00:41:30.770] [INFO] cheese - inserting 1000 documents. first: Jinggang Shan (999) and last: Human digestive system -[2018-02-13T00:41:30.819] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:41:30.828] [INFO] cheese - inserting 1000 documents. first: Aleksandr Derevyagin and last: The Journal of African American History -[2018-02-13T00:41:30.828] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:41:30.833] [INFO] cheese - inserting 1000 documents. first: Template:Qingdao Clipper and last: Amangkurat IV of Mataram -[2018-02-13T00:41:30.926] [INFO] cheese - inserting 1000 documents. first: Template:Agricultural water management models and last: King Kleagle -[2018-02-13T00:41:30.946] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T00:41:30.952] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T00:41:30.980] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:31.063] [INFO] cheese - inserting 1000 documents. first: Jacqueline Moss and last: Tetanostola hexagona -[2018-02-13T00:41:31.121] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:41:31.247] [INFO] cheese - inserting 1000 documents. first: Union for Europe and last: List of schools in Africa -[2018-02-13T00:41:31.302] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:41:31.417] [INFO] cheese - inserting 1000 documents. first: File:Erasure-MoscowToMars.jpg and last: Ally Lundström -[2018-02-13T00:41:31.425] [INFO] cheese - inserting 1000 documents. first: List of discoveries by Leonhard Euler and last: Sunanda Kumariratana -[2018-02-13T00:41:31.431] [INFO] cheese - inserting 1000 documents. first: Paul J. Rainey and last: Sandy Cane -[2018-02-13T00:41:31.466] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:41:31.482] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:31.505] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:41:31.508] [INFO] cheese - inserting 1000 documents. first: List of city nicknames in Maine and last: Tom Jacobsen (disambiguation) -[2018-02-13T00:41:31.573] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:41:31.574] [INFO] cheese - inserting 1000 documents. first: Max von Braunmühl and last: ITGLWF -[2018-02-13T00:41:31.621] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/pwhl3.stats.pointstreak.com and last: Category:Secondary education in Italy -[2018-02-13T00:41:31.654] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:41:31.698] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:41:31.855] [INFO] cheese - inserting 1000 documents. first: Ozymandias (name) and last: The Treasure of Tartary -[2018-02-13T00:41:31.907] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:41:32.008] [INFO] cheese - inserting 1000 documents. first: Buena Vista ISD and last: State Route 111 (Virginia pre-1933) -[2018-02-13T00:41:32.012] [INFO] cheese - inserting 1000 documents. first: Template:United States postage stamps and last: Template:Did you know nominations/Rosy bee-eater -[2018-02-13T00:41:32.030] [INFO] cheese - inserting 1000 documents. first: File:Varese-Stemma.png and last: Chandeshwori -[2018-02-13T00:41:32.060] [INFO] cheese - inserting 1000 documents. first: Pete Wyshner and last: File:Spec Harkness.jpg -[2018-02-13T00:41:32.065] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:41:32.073] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:41:32.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/yamaha-motor.com.mx and last: Elior Sider -[2018-02-13T00:41:32.166] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:41:32.225] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:32.229] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:41:32.357] [INFO] cheese - inserting 1000 documents. first: Professional Graphics Controller and last: Batucada -[2018-02-13T00:41:32.502] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:32.639] [INFO] cheese - inserting 1000 documents. first: Post-merger integration and last: Benjamin D. Walsh -[2018-02-13T00:41:32.734] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:41:32.774] [INFO] cheese - inserting 1000 documents. first: Gushtaba and last: Stronger together -[2018-02-13T00:41:32.793] [INFO] cheese - inserting 1000 documents. first: Alexandru-Radu Timofte and last: File:Moby-mistake.JPG -[2018-02-13T00:41:32.835] [INFO] cheese - inserting 1000 documents. first: Jowangshin and last: Afroto, Mostafa -[2018-02-13T00:41:32.846] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:41:32.860] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:41:32.941] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:41:32.966] [INFO] cheese - inserting 1000 documents. first: SR 80 (VA) and last: Shadow Blasters -[2018-02-13T00:41:33.062] [INFO] cheese - inserting 1000 documents. first: Impression Formation and last: 8x107mm DS -[2018-02-13T00:41:33.075] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:41:33.190] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:41:33.367] [INFO] cheese - inserting 1000 documents. first: Template:Page numbers/doc and last: John Thomlinson -[2018-02-13T00:41:33.382] [INFO] cheese - inserting 1000 documents. first: List of United States Army installations in Saudi Arabia and last: File:College of Saint Rose seal.png -[2018-02-13T00:41:33.430] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:41:33.431] [INFO] cheese - inserting 1000 documents. first: Mongo Santamaria and last: Gol Maal -[2018-02-13T00:41:33.452] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:41:33.523] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:41:33.527] [INFO] cheese - inserting 1000 documents. first: Afroudakis, Christos and last: Glastonbury Divisional Board -[2018-02-13T00:41:33.592] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:33.627] [INFO] cheese - inserting 1000 documents. first: Green Economics Institute and last: The Paper Man (film) -[2018-02-13T00:41:33.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Absolute color space and last: File:Como Look Your Heart.jpg -[2018-02-13T00:41:33.672] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:41:33.698] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:41:33.824] [INFO] cheese - inserting 1000 documents. first: Case against the fed and last: Wikipedia:Articles for deletion/Kudai's third studio album -[2018-02-13T00:41:33.866] [INFO] cheese - inserting 1000 documents. first: The Behavioral and Brain Sciences and last: Wikipedia:Peer review/List of Olympic medalists in equestrian/archive1 -[2018-02-13T00:41:33.866] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:41:33.919] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:41:33.968] [INFO] cheese - inserting 1000 documents. first: Kantara Castle and last: Lost Channel, Parry Sound District, Ontario -[2018-02-13T00:41:33.981] [INFO] cheese - inserting 1000 documents. first: Why is the sky blue and last: Kpala language -[2018-02-13T00:41:34.000] [INFO] cheese - inserting 1000 documents. first: Davide Perre and last: Sergio Abreu -[2018-02-13T00:41:34.018] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:41:34.023] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:41:34.060] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:41:34.164] [INFO] cheese - inserting 1000 documents. first: Tindale and last: Portal:Current events/2006 September 2 -[2018-02-13T00:41:34.220] [INFO] cheese - inserting 1000 documents. first: Club Deportivo Universidad Católica (Ecuador) and last: Category:Works by source -[2018-02-13T00:41:34.228] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:41:34.288] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:41:34.292] [INFO] cheese - inserting 1000 documents. first: The Feeding of the 4000 and last: Stratum lucidum (disambiguation) -[2018-02-13T00:41:34.340] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:41:34.436] [INFO] cheese - inserting 1000 documents. first: Rainbow Six: Patriots and last: Vernacular Orientation -[2018-02-13T00:41:34.490] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:41:34.495] [INFO] cheese - inserting 1000 documents. first: Category:Taranto F.C. 1927 players and last: Rico Roman -[2018-02-13T00:41:34.507] [INFO] cheese - inserting 1000 documents. first: Category:Operas by Ermanno Wolf-Ferrari and last: Buffalo, WV -[2018-02-13T00:41:34.682] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:41:34.739] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:41:34.848] [INFO] cheese - inserting 1000 documents. first: Cutting speed and last: Portal:English football/Did you know/49 -[2018-02-13T00:41:34.850] [INFO] cheese - inserting 1000 documents. first: Po Leung Kuk No.1 W. H. Cheung College and last: The Halifax Academy -[2018-02-13T00:41:34.934] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:41:34.933] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:41:35.048] [INFO] cheese - inserting 1000 documents. first: Youre The Man Now Dog and last: Stuccos -[2018-02-13T00:41:35.156] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:41:35.237] [INFO] cheese - inserting 1000 documents. first: Musivisual Language and last: Puiggari -[2018-02-13T00:41:35.317] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:41:35.382] [INFO] cheese - inserting 1000 documents. first: 1997 Porsche Tennis Grand Prix and last: Troops for the Internal Defence of the Republic -[2018-02-13T00:41:35.419] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Women's 100 metres hurdles and last: Template:Dominican Summer League Royals roster -[2018-02-13T00:41:35.422] [INFO] cheese - inserting 1000 documents. first: Earl H. Potter and last: Guatemala Temple -[2018-02-13T00:41:35.425] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:35.487] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:35.492] [INFO] cheese - inserting 1000 documents. first: Category:Blind poets and last: Wikipedia:WikiProject Women in Red/Missing articles by occupation/University teachers -[2018-02-13T00:41:35.529] [INFO] cheese - inserting 1000 documents. first: Buffalo County, SD and last: George T. Stagg -[2018-02-13T00:41:35.532] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:41:35.625] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:41:35.681] [INFO] cheese - batch complete in: 2.833 secs -[2018-02-13T00:41:35.782] [INFO] cheese - inserting 1000 documents. first: Bronte ISD and last: Nuacht RTÉ -[2018-02-13T00:41:35.861] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:41:35.890] [INFO] cheese - inserting 1000 documents. first: Sedeh (disambiguation) and last: Category:Religious buildings completed in 1761 -[2018-02-13T00:41:35.924] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:41:35.970] [INFO] cheese - inserting 1000 documents. first: Copa del Rey 2002–03 and last: Battle of Lake Borgne -[2018-02-13T00:41:35.981] [INFO] cheese - inserting 1000 documents. first: Windows in church architecture and last: Roland Beaudry -[2018-02-13T00:41:36.019] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:41:36.062] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:36.116] [INFO] cheese - inserting 1000 documents. first: Template:2012 NCAA Division I men's ice hockey tournament navbox and last: Category:Televisió de Catalunya -[2018-02-13T00:41:36.187] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:41:36.233] [INFO] cheese - inserting 1000 documents. first: Honeybeemon and last: Sacromonte -[2018-02-13T00:41:36.292] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:41:36.330] [INFO] cheese - inserting 1000 documents. first: Category:Budućnost Podgorica and last: Poliocephalus poliocephalus -[2018-02-13T00:41:36.383] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:41:36.397] [INFO] cheese - inserting 1000 documents. first: Phillip Lindel Tsen and last: Nelson Cruz (outfielder) -[2018-02-13T00:41:36.487] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:41:36.551] [INFO] cheese - inserting 1000 documents. first: Category:German sports businesspeople and last: Southwest High School (Macon, Georgia) -[2018-02-13T00:41:36.572] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Naseba and last: Augusto de Oliveira da Silva -[2018-02-13T00:41:36.603] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:36.623] [INFO] cheese - inserting 1000 documents. first: 2004-2005 Japan Junior Figure Skating Championships and last: Wikipedia:WikiProject Spam/LinkReports/facultas.at -[2018-02-13T00:41:36.646] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:41:36.710] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:41:36.856] [INFO] cheese - inserting 1000 documents. first: Maxillofacial surgery and last: Wikipedia:Articles for deletion/.38 S&W -[2018-02-13T00:41:36.861] [INFO] cheese - inserting 1000 documents. first: Apicius (disambiguation) and last: North and east neighborhood -[2018-02-13T00:41:36.924] [INFO] cheese - inserting 1000 documents. first: Shreveport Classic and last: Bumi (disambiguation) -[2018-02-13T00:41:36.977] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:41:36.999] [INFO] cheese - inserting 1000 documents. first: MO25 and last: Purgatoire River -[2018-02-13T00:41:37.019] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:37.060] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T00:41:37.072] [INFO] cheese - inserting 1000 documents. first: Template:RCTS-LocosLNER-5 and last: Bishop Julius -[2018-02-13T00:41:37.123] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:41:37.133] [INFO] cheese - inserting 1000 documents. first: Template:Discussing/doc and last: Hyphopichia -[2018-02-13T00:41:37.148] [INFO] cheese - inserting 1000 documents. first: List of curling clubs in Sweden and last: Digital Creativity -[2018-02-13T00:41:37.161] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:41:37.204] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:41:37.207] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:41:37.536] [INFO] cheese - inserting 1000 documents. first: AIDES and last: Oldervik, Troms -[2018-02-13T00:41:37.556] [INFO] cheese - inserting 1000 documents. first: Charlestown, SC and last: Tumbes Province -[2018-02-13T00:41:37.569] [INFO] cheese - inserting 1000 documents. first: Central Vermont Railway Station (disambiguation) and last: Yang Po-Han -[2018-02-13T00:41:37.574] [INFO] cheese - inserting 1000 documents. first: Yankee Flats and last: File:LTC Jonathan M Stubbs, Commander, 2nd Battalion, 153rd Infantry Regiment.jpg -[2018-02-13T00:41:37.593] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:41:37.639] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:41:37.646] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:41:37.632] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:37.686] [INFO] cheese - inserting 1000 documents. first: Barbed Wire Kisses (album) and last: Ackley School District v. Hall -[2018-02-13T00:41:37.744] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:41:37.813] [INFO] cheese - inserting 1000 documents. first: File:Kaanchi... poster.jpg and last: Category:Transport in Pickering, Ontario -[2018-02-13T00:41:37.833] [INFO] cheese - inserting 1000 documents. first: Kodamaea and last: Windows 8 -[2018-02-13T00:41:37.884] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:37.946] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:38.060] [INFO] cheese - inserting 1000 documents. first: Charles Latham (physician) and last: (79376) 1997 FF -[2018-02-13T00:41:38.086] [INFO] cheese - inserting 1000 documents. first: Vandellòs and l'Hospitalet de l'Infant and last: Category:Regions of Venezuela -[2018-02-13T00:41:38.112] [INFO] cheese - inserting 1000 documents. first: Draft:Duble U and last: Ian Flannon Taylor -[2018-02-13T00:41:38.126] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:38.141] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:41:38.188] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:41:38.207] [INFO] cheese - inserting 1000 documents. first: Nassoi and last: Chevigny -[2018-02-13T00:41:38.283] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:41:38.350] [INFO] cheese - inserting 1000 documents. first: Martha Hunt and last: Wikipedia:Reference desk/Archives/Miscellaneous/2014 March 12 -[2018-02-13T00:41:38.423] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:41:38.499] [INFO] cheese - inserting 1000 documents. first: Tim Lambesis and last: Chicken or egg -[2018-02-13T00:41:38.576] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T00:41:38.639] [INFO] cheese - inserting 1000 documents. first: Mutu language and last: Luke Malicki -[2018-02-13T00:41:38.683] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:38.701] [INFO] cheese - inserting 1000 documents. first: St. Paul of Thebes and last: Simon Langton Grammar for Boys -[2018-02-13T00:41:38.728] [INFO] cheese - inserting 1000 documents. first: Category:Fictional British military personnel by branch and last: M Ross Perkins -[2018-02-13T00:41:38.738] [INFO] cheese - inserting 1000 documents. first: Det norske Theater (Bergen) and last: Category:Economic history of California -[2018-02-13T00:41:38.779] [INFO] cheese - inserting 1000 documents. first: IL-5 receptor and last: Arthur Alston -[2018-02-13T00:41:38.784] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:41:38.800] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:41:38.850] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:41:38.909] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:41:38.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:HurricaneSpin/List of User:IPhonehurricane95 Sockpuppets and last: File:Till Marriage Do Us Part.jpg -[2018-02-13T00:41:39.057] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:41:39.239] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Morphett and last: Henry J. Aaron -[2018-02-13T00:41:39.267] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Melvin House and last: Distributed database management system -[2018-02-13T00:41:39.301] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:41:39.328] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:41:39.364] [INFO] cheese - inserting 1000 documents. first: Category:People from Metković and last: Category:Plants described in 1789 -[2018-02-13T00:41:39.444] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:41:39.458] [INFO] cheese - inserting 1000 documents. first: Discriminant Book and last: Tiamat (public figure) -[2018-02-13T00:41:39.479] [INFO] cheese - inserting 1000 documents. first: The Moth Confesses and last: Vintage print -[2018-02-13T00:41:39.528] [INFO] cheese - inserting 1000 documents. first: Amelkites and last: La Chapelle-sur-Oreuse -[2018-02-13T00:41:39.539] [INFO] cheese - inserting 1000 documents. first: Ugoyan and last: Category:Coastal Carolina Chanticleers men's basketball navigational boxes -[2018-02-13T00:41:39.544] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:41:39.555] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:41:39.603] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:39.605] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:41:39.678] [INFO] cheese - inserting 1000 documents. first: Khorram Darreh and last: Khvajeh (disambiguation) -[2018-02-13T00:41:39.708] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:41:40.039] [INFO] cheese - inserting 1000 documents. first: Archaeology of Afghanistan and last: Category:1546 books -[2018-02-13T00:41:40.062] [INFO] cheese - inserting 1000 documents. first: Aprosexia and last: Paranotothenia magellanica -[2018-02-13T00:41:40.128] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:41:40.139] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:40.159] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mcgillismusic.com and last: Carla Chin -[2018-02-13T00:41:40.197] [INFO] cheese - inserting 1000 documents. first: Tang Eram and last: Bernard Wood -[2018-02-13T00:41:40.211] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Men's 3000 metres steeplechase and last: K35EJ-D -[2018-02-13T00:41:40.218] [INFO] cheese - inserting 1000 documents. first: Jerry Wunsch and last: Tsada -[2018-02-13T00:41:40.288] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:41:40.290] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:40.310] [INFO] cheese - inserting 1000 documents. first: Rodi Milici and last: Hijo de Africa -[2018-02-13T00:41:40.344] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:40.339] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:41:40.431] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:41:40.605] [INFO] cheese - inserting 1000 documents. first: Loxia pytyopsittacus and last: Limosa fedoa -[2018-02-13T00:41:40.696] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:41:40.755] [INFO] cheese - inserting 1000 documents. first: Fall of the inner German border and last: RTL RADIO -[2018-02-13T00:41:40.830] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:40.850] [INFO] cheese - inserting 1000 documents. first: Suzanne Gerrior and last: Charles Grob -[2018-02-13T00:41:40.864] [INFO] cheese - inserting 1000 documents. first: Anas ibn Maalik and last: Portal:Triassic/Natural world articles/2 -[2018-02-13T00:41:40.919] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:41:40.916] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:40.964] [INFO] cheese - inserting 1000 documents. first: The Brute (wrestler) and last: Judd Cup -[2018-02-13T00:41:41.064] [INFO] cheese - inserting 1000 documents. first: Hijo De Africa and last: Charles L. Kelly -[2018-02-13T00:41:41.071] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:41:41.105] [INFO] cheese - inserting 1000 documents. first: Portal:Minnesota/Topics and last: Wake boarding -[2018-02-13T00:41:41.186] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:41:41.210] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:41:41.329] [INFO] cheese - inserting 1000 documents. first: Judæo-Romance languages and last: Julie Mayer -[2018-02-13T00:41:41.360] [INFO] cheese - inserting 1000 documents. first: Phalaena Bombyx lubricipeda and last: Harsidhi -[2018-02-13T00:41:41.412] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:41:41.432] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:41:41.448] [INFO] cheese - inserting 1000 documents. first: Attack on US Marines in Faylaka Island and last: Category:Privatisation in South Africa -[2018-02-13T00:41:41.490] [INFO] cheese - inserting 1000 documents. first: Uzbek League 2005 and last: Richard J. Gruel -[2018-02-13T00:41:41.509] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:41.583] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:41:41.755] [INFO] cheese - inserting 1000 documents. first: Adli Yakan Pasha and last: File:Major General Emilian Vasilevich Kozik.jpg -[2018-02-13T00:41:41.773] [INFO] cheese - inserting 1000 documents. first: Doubles tennis and last: Template:Location map India Uttarakhand -[2018-02-13T00:41:41.818] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:41:41.828] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:41:41.916] [INFO] cheese - inserting 1000 documents. first: Portal:Ordovician/Natural world articles/20 and last: Category:2014 Commonwealth Games events -[2018-02-13T00:41:41.950] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:41.961] [INFO] cheese - inserting 1000 documents. first: Twenty Hours and last: Claus Larsen -[2018-02-13T00:41:41.983] [INFO] cheese - inserting 1000 documents. first: EGSM900 and last: Henry McAdoo -[2018-02-13T00:41:42.022] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:41:42.055] [INFO] cheese - inserting 1000 documents. first: Speedwriter and last: Tres tristes tigres -[2018-02-13T00:41:42.075] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:41:42.118] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:41:42.288] [INFO] cheese - inserting 1000 documents. first: Pohlig–Hellman algorithm and last: Ehmetjan Qasim -[2018-02-13T00:41:42.306] [INFO] cheese - inserting 1000 documents. first: 1080 Brickell and last: Hyalurga cinda -[2018-02-13T00:41:42.323] [INFO] cheese - inserting 1000 documents. first: John Anthony Flynn and last: File:KMJM ClassicCountry1360 logo.png -[2018-02-13T00:41:42.349] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:41:42.388] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:41:42.392] [INFO] cheese - inserting 1000 documents. first: Benin – People's Republic of China relations and last: File:Suliman Elfortia.jpg -[2018-02-13T00:41:42.393] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:41:42.416] [INFO] cheese - inserting 1000 documents. first: North Cachar Hills District and last: Calhoun Township, Cheyenne County, Kansas -[2018-02-13T00:41:42.558] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:41:42.602] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:41:42.614] [INFO] cheese - inserting 1000 documents. first: 2000 Chevrolet Cup - Singles and last: Category:Pixies (band) members -[2018-02-13T00:41:42.672] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:42.845] [INFO] cheese - inserting 1000 documents. first: Susan Vandom and last: Derick Thomson -[2018-02-13T00:41:42.903] [INFO] cheese - inserting 1000 documents. first: HU Velorum and last: Category:1670 establishments in Maryland -[2018-02-13T00:41:42.935] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:41:42.951] [INFO] cheese - inserting 1000 documents. first: Tiverighotto language and last: Brian Van't Hul -[2018-02-13T00:41:42.975] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:41:42.990] [INFO] cheese - inserting 1000 documents. first: Lesotho – South Africa relations and last: Communist Party of the Workers of Tunisia -[2018-02-13T00:41:43.035] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:43.057] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:41:43.088] [INFO] cheese - inserting 1000 documents. first: Wattson and last: SIGCSE -[2018-02-13T00:41:43.235] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:43.257] [INFO] cheese - inserting 1000 documents. first: Cleveland Run Township, Cheyenne County, Kansas and last: Lilia Yefremova -[2018-02-13T00:41:43.290] [INFO] cheese - inserting 1000 documents. first: Bienvenues-Bâtard-Montrachet AOC and last: Wikipedia:Articles for deletion/AdU Network -[2018-02-13T00:41:43.362] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:41:43.392] [INFO] cheese - inserting 1000 documents. first: The Best FIFA Football Awards and last: Category:Sudanese women's rights activists -[2018-02-13T00:41:43.425] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:41:43.439] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:41:43.674] [INFO] cheese - inserting 1000 documents. first: Gibraltar general election, 1953 and last: File:Clarke University logo.png -[2018-02-13T00:41:43.708] [INFO] cheese - inserting 1000 documents. first: Thomas Larkin (ice hockey) and last: Petworth Gardens -[2018-02-13T00:41:43.729] [INFO] cheese - inserting 1000 documents. first: Danville Leafs and last: Qa'edat Al-Jihad -[2018-02-13T00:41:43.734] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:41:43.765] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:41:43.798] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:41:43.857] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Ras al-Khaimah and last: Valentino Moisés Fiévet Mennesson -[2018-02-13T00:41:43.875] [INFO] cheese - inserting 1000 documents. first: Robert I of Parma and last: Abdul Muttalib (name) -[2018-02-13T00:41:43.911] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:43.923] [INFO] cheese - inserting 1000 documents. first: Fenioux and last: Heads of state of Krajina -[2018-02-13T00:41:43.955] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:41:43.976] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:44.033] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Lactose intolerance and last: File:E. Tautz Logo.jpg -[2018-02-13T00:41:44.075] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:44.148] [INFO] cheese - inserting 1000 documents. first: Dream Lady and last: WDTI-DT -[2018-02-13T00:41:44.167] [INFO] cheese - inserting 1000 documents. first: Diocese of Pueblo and last: I Want You to Know (disambiguation) -[2018-02-13T00:41:44.188] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:41:44.249] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:41:44.285] [INFO] cheese - inserting 1000 documents. first: Barry M. Goldwater Scholarship and last: Patriarch Artemius of Alexandria -[2018-02-13T00:41:44.297] [INFO] cheese - inserting 1000 documents. first: Don Wai Floating Market and last: Simon Elkyngton -[2018-02-13T00:41:44.322] [INFO] cheese - inserting 1000 documents. first: Zhōngbù Juéqǐ Jìhuà and last: Wikipedia:WikiProject Spam/LinkReports/asaakiraxxx.com -[2018-02-13T00:41:44.328] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:41:44.346] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:41:44.358] [INFO] cheese - inserting 1000 documents. first: Heads of state of Malawi and last: Waiilatpu Mission -[2018-02-13T00:41:44.367] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:41:44.408] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:41:44.503] [INFO] cheese - inserting 1000 documents. first: Hoe (food) and last: Bill Haselman -[2018-02-13T00:41:44.590] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:41:44.642] [INFO] cheese - inserting 1000 documents. first: Verschoten & zoon and last: Friends Central High School -[2018-02-13T00:41:44.706] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:44.888] [INFO] cheese - inserting 1000 documents. first: Iberg (disambiguation) and last: File:Big Top Whit Dickey Cover.jpeg -[2018-02-13T00:41:44.925] [INFO] cheese - inserting 1000 documents. first: Category:1945 in England and last: Women's Rugby League World Cup -[2018-02-13T00:41:44.944] [INFO] cheese - inserting 1000 documents. first: USCS Morris and last: Category:Ventura County, California articles missing geocoordinate data -[2018-02-13T00:41:44.992] [INFO] cheese - inserting 1000 documents. first: Pharmacognosist and last: Feuguerolles -[2018-02-13T00:41:44.995] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:44.998] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:41:45.049] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:41:45.091] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:41:45.326] [INFO] cheese - inserting 1000 documents. first: Demirören, Mersin and last: File:Shotinthefrontier 1sht.jpg -[2018-02-13T00:41:45.338] [INFO] cheese - inserting 1000 documents. first: Nasrids kings and last: Demetrius Gallitzin -[2018-02-13T00:41:45.390] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:41:45.414] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:41:45.434] [INFO] cheese - inserting 1000 documents. first: Category:Lists of bus routes in Taiwan and last: Category:Dams in Botswana -[2018-02-13T00:41:45.471] [INFO] cheese - inserting 1000 documents. first: Category:Santa Barbara County, California articles missing geocoordinate data and last: Great Love Themes -[2018-02-13T00:41:45.526] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:41:45.557] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:41:45.598] [INFO] cheese - inserting 1000 documents. first: Albert Morehead and last: Military history of Russia -[2018-02-13T00:41:45.676] [INFO] cheese - inserting 1000 documents. first: Le Fidelaire and last: Rulers of Leqa Qellam -[2018-02-13T00:41:45.679] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:41:45.728] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:41:45.834] [INFO] cheese - inserting 1000 documents. first: Obo Natural Park and last: Eijkman (disambiguation) -[2018-02-13T00:41:45.882] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:45.963] [INFO] cheese - inserting 1000 documents. first: Template:Iran-road-stub and last: Miguel Linares Cólera -[2018-02-13T00:41:46.011] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:41:46.058] [INFO] cheese - inserting 1000 documents. first: JDRF and last: Somnology -[2018-02-13T00:41:46.074] [INFO] cheese - inserting 1000 documents. first: Pseudoradiarctia tanzanica and last: Man from Interpol -[2018-02-13T00:41:46.091] [INFO] cheese - inserting 1000 documents. first: Rulers of Luba and last: Langey -[2018-02-13T00:41:46.158] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:41:46.162] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:41:46.162] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:41:46.264] [INFO] cheese - inserting 1000 documents. first: Monodelphis brevicaudata and last: Cherpuk -[2018-02-13T00:41:46.336] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:41:46.502] [INFO] cheese - inserting 1000 documents. first: Quadrula aurea and last: Urea nitrogen -[2018-02-13T00:41:46.547] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:46.558] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Mithila articles and last: History of British foreign policy -[2018-02-13T00:41:46.580] [INFO] cheese - inserting 1000 documents. first: Miguel Linares Colera and last: Talgo 250 -[2018-02-13T00:41:46.615] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:41:46.636] [INFO] cheese - batch complete in: 2.308 secs -[2018-02-13T00:41:46.672] [INFO] cheese - inserting 1000 documents. first: List of Victoria Cross recipients of the cavalry and last: Shcherbyntsi -[2018-02-13T00:41:46.712] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:46.762] [INFO] cheese - inserting 1000 documents. first: Lanneray and last: Under armour -[2018-02-13T00:41:46.807] [INFO] cheese - inserting 1000 documents. first: Hungarian Scout Association and last: Robert Underwood -[2018-02-13T00:41:46.831] [INFO] cheese - inserting 1000 documents. first: Rhadamistus and last: William George Mount -[2018-02-13T00:41:46.834] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:41:46.884] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:41:46.900] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:41:46.922] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Washington County, North Carolina and last: 1984 BRIT Awards -[2018-02-13T00:41:47.014] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:47.057] [INFO] cheese - inserting 1000 documents. first: Manuel Pavón and last: Al-Ashraf Tuman bay II -[2018-02-13T00:41:47.125] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:41:47.280] [INFO] cheese - inserting 1000 documents. first: Toporivtsi and last: Sydney Metropolitan Women's Rugby League -[2018-02-13T00:41:47.281] [INFO] cheese - inserting 1000 documents. first: Kimi wo Shiranai Machi he and last: Draft:Nixa Zizu -[2018-02-13T00:41:47.338] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:41:47.332] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:41:47.472] [INFO] cheese - inserting 1000 documents. first: Chrome Division and last: Peace of Rueil -[2018-02-13T00:41:47.530] [INFO] cheese - inserting 1000 documents. first: 1985 BRIT Awards and last: Category:The Wicked Years -[2018-02-13T00:41:47.560] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:41:47.584] [INFO] cheese - inserting 1000 documents. first: Box pews and last: File:VRansford.jpg -[2018-02-13T00:41:47.611] [INFO] cheese - inserting 1000 documents. first: Category:Railway locomotives introduced in 1959 and last: 2009-10 West Virginia Mountaineers men's basketball team -[2018-02-13T00:41:47.646] [INFO] cheese - inserting 1000 documents. first: Diggin' in the Crates Crew and last: Zayed Khan -[2018-02-13T00:41:47.664] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:41:47.730] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:41:47.747] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:47.776] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:47.865] [INFO] cheese - inserting 1000 documents. first: Red Light (Keke Wyatt song) and last: Template:AFC sponsors -[2018-02-13T00:41:47.920] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:47.931] [INFO] cheese - inserting 1000 documents. first: Manoogian (disambiguation) and last: Category:Cabinets disestablished in 1841 -[2018-02-13T00:41:47.993] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:41:48.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Trampoline platysmaplasty and last: Dennis E. Fitch -[2018-02-13T00:41:48.194] [INFO] cheese - inserting 1000 documents. first: United Kingdom budget 2007-8 and last: File:Dimal.jpg -[2018-02-13T00:41:48.195] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:41:48.227] [INFO] cheese - inserting 1000 documents. first: Francesc Joan Dominic Aragó and last: FZ-50 -[2018-02-13T00:41:48.274] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:41:48.291] [INFO] cheese - inserting 1000 documents. first: Anglican Roman Catholic International Commission and last: Category:Missile boats of the Croatian Navy -[2018-02-13T00:41:48.320] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:41:48.324] [INFO] cheese - inserting 1000 documents. first: Category:Liga Perdana (1994–97) and last: Category:Suspected Wikipedia sockpuppets of Deepakarorajma -[2018-02-13T00:41:48.356] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:48.371] [INFO] cheese - inserting 1000 documents. first: Valentin Konnonen and last: North American Mitchell Mk.III (TB-25J) -[2018-02-13T00:41:48.398] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:41:48.445] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:41:48.515] [INFO] cheese - inserting 1000 documents. first: Italian Flag and last: Western movie -[2018-02-13T00:41:48.596] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:41:48.730] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Scotland articles and last: Destruction of the Endless -[2018-02-13T00:41:48.799] [INFO] cheese - inserting 1000 documents. first: Queen Mary's Psalter and last: Wikipedia:Articles for deletion/Faux Pas (webcomic) -[2018-02-13T00:41:48.825] [INFO] cheese - inserting 1000 documents. first: Category:Active missile boats of Croatia and last: Portal:History of science/Selected anniversaries/November 14 -[2018-02-13T00:41:48.826] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:41:48.861] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:41:48.891] [INFO] cheese - inserting 1000 documents. first: 1995 Montréal Expos season and last: M/V Sealth -[2018-02-13T00:41:48.913] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:48.984] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:41:49.011] [INFO] cheese - inserting 1000 documents. first: Category:Heinrich von Kleist and last: Don't Let It Go to Your Head (disambiguation) -[2018-02-13T00:41:49.174] [INFO] cheese - inserting 1000 documents. first: Draft:Saad Z Hossain and last: Draft:Gas South -[2018-02-13T00:41:49.182] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:41:49.292] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:41:49.489] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Novels/Members and last: Category:1969 in England -[2018-02-13T00:41:49.510] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Scotland County, North Carolina and last: (187757) 1996 UH4 -[2018-02-13T00:41:49.536] [INFO] cheese - inserting 1000 documents. first: Portal:History of science/Selected anniversaries/November 15 and last: Category:Ships built in New Brunswick -[2018-02-13T00:41:49.557] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:41:49.561] [INFO] cheese - inserting 1000 documents. first: Poimandres and last: James M. Mead -[2018-02-13T00:41:49.580] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:41:49.604] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:49.651] [INFO] cheese - inserting 1000 documents. first: Category:Military units and formations established in the 1980s and last: Peter Wyche (diplomat) -[2018-02-13T00:41:49.680] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:41:49.699] [INFO] cheese - inserting 1000 documents. first: Category:Delaware Dynasty and last: Eastern Blue Sapphire -[2018-02-13T00:41:49.704] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:41:49.753] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:41:49.814] [INFO] cheese - inserting 1000 documents. first: K40GH-D and last: Dibidogs -[2018-02-13T00:41:49.861] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:49.961] [INFO] cheese - inserting 1000 documents. first: BRES and last: ACHIT -[2018-02-13T00:41:49.996] [INFO] cheese - inserting 1000 documents. first: Julie Paradise and last: Category:Judge Dredd storylines -[2018-02-13T00:41:49.996] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:41:50.028] [INFO] cheese - inserting 1000 documents. first: Category:French multi-instrumentalists and last: Template:Lesotho-boxing-bio-stub -[2018-02-13T00:41:50.044] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:50.071] [INFO] cheese - inserting 1000 documents. first: Roman Catholicism in the Republic of the Congo and last: Angels (Avenged Sevenfold song) -[2018-02-13T00:41:50.096] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:50.114] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:41:50.137] [INFO] cheese - inserting 1000 documents. first: BAFTA Film Awards 2007 and last: Livability ranking -[2018-02-13T00:41:50.185] [INFO] cheese - inserting 1000 documents. first: National Skin Centre (Singapore) and last: Stony Plain -[2018-02-13T00:41:50.205] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:41:50.290] [INFO] cheese - inserting 1000 documents. first: Gynnidomorpha fraterna and last: Christian Delpech -[2018-02-13T00:41:50.318] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:41:50.368] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:41:50.432] [INFO] cheese - inserting 1000 documents. first: Category:1970 debut albums and last: (257559) 1998 TL19 -[2018-02-13T00:41:50.498] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:41:50.512] [INFO] cheese - inserting 1000 documents. first: Simulation (Avenged Sevenfold song) and last: Category:Sleater-Kinney members -[2018-02-13T00:41:50.587] [INFO] cheese - inserting 1000 documents. first: Leaver and last: African Group -[2018-02-13T00:41:50.591] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:41:50.667] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:50.710] [INFO] cheese - inserting 1000 documents. first: George Antrobus and last: Wikipedia:Featured article candidates/John W. Johnston -[2018-02-13T00:41:50.779] [INFO] cheese - inserting 1000 documents. first: Johnstown, Townland and last: Kang Nung-su -[2018-02-13T00:41:50.783] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:50.857] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:41:51.016] [INFO] cheese - inserting 1000 documents. first: Template:David Mamet and last: Phthalo -[2018-02-13T00:41:51.073] [INFO] cheese - inserting 1000 documents. first: 1800 US Presidential election and last: Friedrich von Sohr -[2018-02-13T00:41:51.162] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:41:51.165] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:51.186] [INFO] cheese - inserting 1000 documents. first: Love and Other Crimes (EP) and last: Dream Coder (2017 TV series) -[2018-02-13T00:41:51.222] [INFO] cheese - inserting 1000 documents. first: Jenni Mikkonen and last: Douce violence (film) -[2018-02-13T00:41:51.234] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:51.324] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:41:51.433] [INFO] cheese - inserting 1000 documents. first: Mark Ward (footballer) and last: Kang Woo-suk productions -[2018-02-13T00:41:51.444] [INFO] cheese - inserting 1000 documents. first: Waikato rugby league team and last: Alan Goodall -[2018-02-13T00:41:51.457] [INFO] cheese - inserting 1000 documents. first: Category:Ming dynasty calligraphers and last: Category:Presidents of the Ladies' Alpine Club -[2018-02-13T00:41:51.515] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:41:51.513] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:41:51.590] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T00:41:51.712] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Ruthven (born 1783) and last: One Side of The Water -[2018-02-13T00:41:51.763] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:41:51.801] [INFO] cheese - inserting 1000 documents. first: Jaguar XJ (X300) and last: Albert Schagidullin -[2018-02-13T00:41:51.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Japanese Fascism:the bases to conduct at Japanese Nationalism and last: DYSEAC -[2018-02-13T00:41:51.853] [INFO] cheese - inserting 1000 documents. first: List of Chicago Bulls (AFL) players and last: Sengoku Raiden Championship -[2018-02-13T00:41:51.890] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:41:51.918] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:41:51.946] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:41:52.109] [INFO] cheese - inserting 1000 documents. first: Hesquiaht and last: U.S. Route 501A (Roxboro, North Carolina) -[2018-02-13T00:41:52.209] [INFO] cheese - inserting 1000 documents. first: Sam Khok District and last: 1927 Model A -[2018-02-13T00:41:52.215] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:41:52.308] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:41:52.338] [INFO] cheese - inserting 1000 documents. first: One Side Of the Water and last: DJ Pone -[2018-02-13T00:41:52.407] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:41:52.579] [INFO] cheese - inserting 1000 documents. first: CD4+ cells and last: Gemignani -[2018-02-13T00:41:52.613] [INFO] cheese - inserting 1000 documents. first: Eddie King (musician) and last: The Dimensions of Time -[2018-02-13T00:41:52.693] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T00:41:52.711] [INFO] cheese - inserting 1000 documents. first: William John Neeson, OBE and last: Yenisey Governorate -[2018-02-13T00:41:52.751] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:41:52.808] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:41:52.812] [INFO] cheese - inserting 1000 documents. first: Mola Di Bari and last: Electoral division of Daly -[2018-02-13T00:41:52.880] [INFO] cheese - inserting 1000 documents. first: Sue Boldra and last: Wikipedia:Reference desk/Archives/Language/2014 March 19 -[2018-02-13T00:41:52.905] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T00:41:52.946] [INFO] cheese - inserting 1000 documents. first: Hungarian national team and last: Beatrice Letters -[2018-02-13T00:41:52.958] [INFO] cheese - inserting 1000 documents. first: Perpetator-by-means and last: Category:Museums in Johor -[2018-02-13T00:41:52.974] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:41:53.063] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:41:53.074] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:41:53.370] [INFO] cheese - inserting 1000 documents. first: File:Containerartny.JPG and last: Markus Steinhöfer -[2018-02-13T00:41:53.371] [INFO] cheese - inserting 1000 documents. first: Marquard II von Berg and last: Germanic Myth -[2018-02-13T00:41:53.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Control (Janet Jackson album)/archive1 and last: Wikipedia:WikiProject Spam/LinkReports/nissanrogue.org -[2018-02-13T00:41:53.449] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:41:53.465] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:41:53.504] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Faith Leon (2nd nomination) and last: Category:Geography of Bragança District -[2018-02-13T00:41:53.551] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:41:53.569] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:41:53.642] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/72nd Street (Second Avenue Subway) and last: Sails of dawn -[2018-02-13T00:41:53.725] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:53.744] [INFO] cheese - inserting 1000 documents. first: My Sister Rose and last: Sandakphu -[2018-02-13T00:41:53.779] [INFO] cheese - inserting 1000 documents. first: P-6 Seamaster and last: Morrison's -[2018-02-13T00:41:53.829] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:41:53.896] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:41:53.996] [INFO] cheese - inserting 1000 documents. first: Daniel P. Hull (landscape architect) and last: Matt Garnaut -[2018-02-13T00:41:54.030] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/South Africa and last: Yemen Jews -[2018-02-13T00:41:54.075] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:41:54.091] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:54.168] [INFO] cheese - inserting 1000 documents. first: University Institute of Engineering and Technology, Calicut and last: File:Thicker Than Water OST.jpg -[2018-02-13T00:41:54.236] [INFO] cheese - inserting 1000 documents. first: Hoeflea and last: Avarenc -[2018-02-13T00:41:54.259] [INFO] cheese - inserting 1000 documents. first: Roman Catholic art and last: Keshin (film) -[2018-02-13T00:41:54.284] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:41:54.298] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:41:54.322] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:41:54.366] [INFO] cheese - inserting 1000 documents. first: Hail to old OSU and last: Michael Cherney -[2018-02-13T00:41:54.456] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:41:54.540] [INFO] cheese - inserting 1000 documents. first: Benjamin Perley Poore and last: May 29 (Orthodox Liturgics) -[2018-02-13T00:41:54.683] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:41:54.688] [INFO] cheese - inserting 1000 documents. first: Template:Infobox rebreather and last: Academy of Theatre in Warsaw -[2018-02-13T00:41:54.752] [INFO] cheese - inserting 1000 documents. first: Sergio Aguayo and last: File:Liberian Girl Guides Association.png -[2018-02-13T00:41:54.754] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:54.825] [INFO] cheese - inserting 1000 documents. first: File:Kicking Out Shoshana Poster.jpg and last: Star Wars sequel -[2018-02-13T00:41:54.828] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Spot the Diff and last: Ice hockey at the Asian Winter Games -[2018-02-13T00:41:54.836] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:41:54.880] [INFO] cheese - inserting 1000 documents. first: Avarene and last: Azoyu Me'phaa language -[2018-02-13T00:41:54.933] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:41:54.944] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:41:55.019] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:41:55.196] [INFO] cheese - inserting 1000 documents. first: Hitchcock, SD and last: Lake View Terrace, Los Angeles, CA -[2018-02-13T00:41:55.230] [INFO] cheese - inserting 1000 documents. first: Survival of the fittest (disambiguation) and last: File:ManasquanInlet.jpg -[2018-02-13T00:41:55.256] [INFO] cheese - inserting 1000 documents. first: Coal in Europe and last: Pfeffingen Castle -[2018-02-13T00:41:55.266] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:41:55.312] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:41:55.351] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:41:55.418] [INFO] cheese - inserting 1000 documents. first: Kryptops and last: Multiracial British -[2018-02-13T00:41:55.439] [INFO] cheese - inserting 1000 documents. first: Overberg skolly and last: Wikipedia:Articles for deletion/Jovan Radomir -[2018-02-13T00:41:55.482] [INFO] cheese - inserting 1000 documents. first: Asheninka Pajonal language and last: Template:Indian Television Academy Award Best Lead Actress -[2018-02-13T00:41:55.492] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition Qods League SM and last: EX SEKTOR GAZA -[2018-02-13T00:41:55.494] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:41:55.505] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:41:55.535] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:41:55.563] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:41:55.713] [INFO] cheese - inserting 1000 documents. first: Lake Waccamaw, NC and last: Parliamentary Party of Kosovo -[2018-02-13T00:41:55.760] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:41:55.772] [INFO] cheese - inserting 1000 documents. first: Bischofstein Castle (Switzerland) and last: Tennis at the 2011 Southeast Asian Games – Mixed Doubles -[2018-02-13T00:41:55.825] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:41:55.839] [INFO] cheese - inserting 1000 documents. first: London-Zürich Agreements and last: Pictures on My Wall -[2018-02-13T00:41:55.882] [INFO] cheese - inserting 1000 documents. first: Category:Wings of the Hellenic Air Force and last: The doon school film -[2018-02-13T00:41:55.888] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:55.914] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:41:55.963] [INFO] cheese - inserting 1000 documents. first: Book:Nitrogen group and last: Category:Transport companies disestablished in 1936 -[2018-02-13T00:41:55.974] [INFO] cheese - inserting 1000 documents. first: Template:SAP Open tournaments (Open Era) and last: File:WCDV logo.png -[2018-02-13T00:41:56.020] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:41:56.049] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:56.055] [INFO] cheese - inserting 1000 documents. first: PZL-Mielec Lim-5 and last: Maria Muchbukta -[2018-02-13T00:41:56.131] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:41:56.195] [INFO] cheese - inserting 1000 documents. first: People's Movement of Kosovo and last: Double-wide trailer -[2018-02-13T00:41:56.207] [INFO] cheese - inserting 1000 documents. first: Device Control Two and last: File:Anas al Kandari -- Faylaka Island ambusher.jpg -[2018-02-13T00:41:56.258] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:41:56.265] [INFO] cheese - inserting 1000 documents. first: Template:Maccabiah infobox and last: Lago Tipiccocha -[2018-02-13T00:41:56.273] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:41:56.317] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:41:56.338] [INFO] cheese - inserting 1000 documents. first: K. 133 and last: Sky Saw -[2018-02-13T00:41:56.398] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:41:56.437] [INFO] cheese - inserting 1000 documents. first: 2016 PGA EuroPro Tour and last: Template:Taxonomy/Sagmatias -[2018-02-13T00:41:56.481] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:41:56.484] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Marvin Gaye and last: File:DiskovolosV.png -[2018-02-13T00:41:56.557] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:41:56.825] [INFO] cheese - inserting 1000 documents. first: Minneapolis, Minnesota, US and last: Category:Naval ships of South Carolina -[2018-02-13T00:41:56.865] [INFO] cheese - inserting 1000 documents. first: SoSo Def Records and last: Closed syllable -[2018-02-13T00:41:56.895] [INFO] cheese - inserting 1000 documents. first: Tipiqocha and last: Nanostructured Materials -[2018-02-13T00:41:56.942] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:41:56.964] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:57.009] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:41:57.110] [INFO] cheese - inserting 1000 documents. first: Monique Pietri and last: Ernst Gottlob Orthmann -[2018-02-13T00:41:57.122] [INFO] cheese - inserting 1000 documents. first: Tranato and last: File:Jp49820030410bDSC 0037.jpg -[2018-02-13T00:41:57.198] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:41:57.214] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:41:57.338] [INFO] cheese - inserting 1000 documents. first: Florida State League rosters and last: Category:Companies based in Vernon Hills, Illinois -[2018-02-13T00:41:57.492] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:41:57.547] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NCVIET and last: Gregory John Crafter -[2018-02-13T00:41:57.549] [INFO] cheese - inserting 1000 documents. first: Category:Ships of South Carolina and last: Argyroploce sphaerocopa -[2018-02-13T00:41:57.576] [INFO] cheese - inserting 1000 documents. first: Archibald Frederick Campbell, Marquess of Lorne and last: Ogdensburg, NJ -[2018-02-13T00:41:57.602] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:41:57.620] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:41:57.639] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:41:57.685] [INFO] cheese - inserting 1000 documents. first: Kuraudo Sutoraifu and last: Koksilah ridge -[2018-02-13T00:41:57.774] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:57.818] [INFO] cheese - inserting 1000 documents. first: File:LeahLabelleLolitaCover.jpg and last: Dragon (spacecraft) -[2018-02-13T00:41:57.883] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:41:57.997] [INFO] cheese - inserting 1000 documents. first: Anatoly Polyanski and last: File:RevolutionX arcadeflyer.png -[2018-02-13T00:41:58.021] [INFO] cheese - inserting 1000 documents. first: Template:North Shore article poster and last: Category:Kalinga Prize recipients -[2018-02-13T00:41:58.028] [INFO] cheese - inserting 1000 documents. first: Frost & Sullivan and last: Category:American nonprofit executives -[2018-02-13T00:41:58.075] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:41:58.101] [INFO] cheese - inserting 1000 documents. first: Korea Ferrous Metals Export & Import and last: Wikipedia:Articles for deletion/Virtual University -[2018-02-13T00:41:58.102] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:41:58.118] [INFO] cheese - inserting 1000 documents. first: Gregory Crafter and last: Wikipedia:Articles for deletion/Independent Bosnia -[2018-02-13T00:41:58.115] [INFO] cheese - batch complete in: 1.984 secs -[2018-02-13T00:41:58.175] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:58.184] [INFO] cheese - inserting 1000 documents. first: Dealu Bisericii and last: San Ildefonso Peninsula -[2018-02-13T00:41:58.201] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:41:58.232] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:41:58.335] [INFO] cheese - inserting 1000 documents. first: Stade du Roudourou and last: GEC Core Operating System -[2018-02-13T00:41:58.372] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:41:58.556] [INFO] cheese - inserting 1000 documents. first: Micronyctemera and last: English Patent County Court -[2018-02-13T00:41:58.600] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:41:58.647] [INFO] cheese - inserting 1000 documents. first: Category:Horse races in Turkey and last: File:Anna Karenina FilmPoster.jpeg -[2018-02-13T00:41:58.668] [INFO] cheese - inserting 1000 documents. first: Cheong-Wa Dae and last: Wikipedia:Articles for deletion/Anil Dash -[2018-02-13T00:41:58.677] [INFO] cheese - inserting 1000 documents. first: Centennial Tower (Singapore) and last: Beaufort, Haute-Garonne -[2018-02-13T00:41:58.738] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:58.740] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:58.747] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:41:58.774] [INFO] cheese - inserting 1000 documents. first: Negro River (Argentina) and last: Uchturpan County -[2018-02-13T00:41:58.872] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:41:58.902] [INFO] cheese - inserting 1000 documents. first: Template:Lucky Stars franchise and last: Celebrity Bromance -[2018-02-13T00:41:58.963] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:41:59.064] [INFO] cheese - inserting 1000 documents. first: Palestinian exodus from Kuwait (Gulf War) and last: The Australian and New Zealand Association of Bellringers -[2018-02-13T00:41:59.106] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:41:59.123] [INFO] cheese - inserting 1000 documents. first: Special Operations Command and last: James W. Alexander, II -[2018-02-13T00:41:59.192] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:41:59.297] [INFO] cheese - inserting 1000 documents. first: Category:State labor commissioners in the United States and last: David Grellier -[2018-02-13T00:41:59.347] [INFO] cheese - inserting 1000 documents. first: Sart (album) and last: File:Lost Continent 1968.jpg -[2018-02-13T00:41:59.409] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:41:59.440] [INFO] cheese - inserting 1000 documents. first: Beauteville and last: KBRX (AM) -[2018-02-13T00:41:59.464] [INFO] cheese - batch complete in: 1.349 secs -[2018-02-13T00:41:59.483] [INFO] cheese - inserting 1000 documents. first: Treasure hunt (disambiguation) and last: Category:The Rascals albums -[2018-02-13T00:41:59.493] [INFO] cheese - inserting 1000 documents. first: Snowden Branch and last: Mae Martin -[2018-02-13T00:41:59.576] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:41:59.603] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:41:59.626] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:41:59.870] [INFO] cheese - inserting 1000 documents. first: South Park City, CO and last: Union Township, Hunterdon County, NJ -[2018-02-13T00:41:59.910] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:41:59.966] [INFO] cheese - inserting 1000 documents. first: File:Katharine Wright (1896).jpg and last: Wikipedia:Bots/Requests for approval/Helpful Pixie Bot 45 -[2018-02-13T00:41:59.997] [INFO] cheese - inserting 1000 documents. first: Boxing at the 2009 Asian Indoor Games and last: The Tip of the Iceberg -[2018-02-13T00:42:00.004] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/227 (TV series) and last: Antoine Boësset -[2018-02-13T00:42:00.005] [INFO] cheese - inserting 1000 documents. first: 2014 Critérium International and last: Mega Limited -[2018-02-13T00:42:00.032] [INFO] cheese - inserting 1000 documents. first: Orphnaeus brevilabiatus and last: Category:OS X web browsers -[2018-02-13T00:42:00.036] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:42:00.052] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:42:00.065] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:42:00.079] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:42:00.136] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:42:00.210] [INFO] cheese - inserting 1000 documents. first: List of communes of the Province of Matera and last: Azeb Mesfin -[2018-02-13T00:42:00.253] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:42:00.448] [INFO] cheese - inserting 1000 documents. first: Fernand Stiévenart and last: Category:Birds of Luzon -[2018-02-13T00:42:00.460] [INFO] cheese - inserting 1000 documents. first: Ellis Lloyd (MP) and last: Yeşilyurt, Taşova -[2018-02-13T00:42:00.465] [INFO] cheese - inserting 1000 documents. first: Plagne, Haute-Garonne and last: Kaheiheimaile -[2018-02-13T00:42:00.470] [INFO] cheese - inserting 1000 documents. first: Children's art and last: Wærns -[2018-02-13T00:42:00.482] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:42:00.488] [INFO] cheese - inserting 1000 documents. first: A World to Win/ (1935 Novel) and last: Where the Sidewalk Ends (song) -[2018-02-13T00:42:00.493] [INFO] cheese - inserting 1000 documents. first: Gonbad-e Qabus County and last: Category:Parishes of Boticas -[2018-02-13T00:42:00.503] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:42:00.522] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:42:00.503] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:42:00.554] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:42:00.612] [INFO] cheese - inserting 1000 documents. first: Crescentius Richard and last: File:View -1.jpg -[2018-02-13T00:42:00.624] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:00.668] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:42:00.793] [INFO] cheese - inserting 1000 documents. first: 2016–17 Nemzeti Bajnokság I/A (women's basketball) and last: IrAn-140 -[2018-02-13T00:42:00.842] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:42:00.908] [INFO] cheese - inserting 1000 documents. first: File:AOIICrest.gif and last: Robert Morris Morgenthau -[2018-02-13T00:42:00.930] [INFO] cheese - inserting 1000 documents. first: Allen Horn and last: Template:After/doc -[2018-02-13T00:42:00.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ecg.clan.su and last: Liévans -[2018-02-13T00:42:01.009] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:42:01.109] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:01.112] [INFO] cheese - inserting 1000 documents. first: Allium azutavicum and last: Ook Ook -[2018-02-13T00:42:01.122] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:42:01.201] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:42:01.340] [INFO] cheese - inserting 1000 documents. first: Cristopher Lee and last: Beyond the Beltway -[2018-02-13T00:42:01.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramdenee and last: Wetzel County, WV -[2018-02-13T00:42:01.464] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:42:01.573] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Kirengellidae and last: TOTU -[2018-02-13T00:42:01.573] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T00:42:01.663] [INFO] cheese - inserting 1000 documents. first: The Party (1958 play) and last: Katara (disambiguation) -[2018-02-13T00:42:01.688] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:42:01.693] [INFO] cheese - inserting 1000 documents. first: Linexert and last: Giuseppe Baldo -[2018-02-13T00:42:01.728] [INFO] cheese - inserting 1000 documents. first: Babu (film) and last: Mauro Galindo -[2018-02-13T00:42:01.734] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:42:01.751] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:42:01.754] [INFO] cheese - inserting 1000 documents. first: Ayia Triada and last: File:Songs For Justice cover.jpg -[2018-02-13T00:42:01.830] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:42:01.847] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:42:02.151] [INFO] cheese - inserting 1000 documents. first: Bihor (region) and last: Broadleaf Plantain -[2018-02-13T00:42:02.215] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:02.252] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/Peel Castle at night and last: Template:Political parties in the Central African Republic -[2018-02-13T00:42:02.256] [INFO] cheese - inserting 1000 documents. first: Golden Bull of Charles IV and last: Indie electronic -[2018-02-13T00:42:02.282] [INFO] cheese - inserting 1000 documents. first: M-99 and last: Colmier-le-Bas -[2018-02-13T00:42:02.297] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:42:02.302] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:42:02.306] [INFO] cheese - inserting 1000 documents. first: Kathputli Colony and last: Wikipedia:Articles for deletion/Ubisoft Chengdu -[2018-02-13T00:42:02.314] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:42:02.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Radiša and last: Quảng Bình Gifted High School -[2018-02-13T00:42:02.366] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:42:02.406] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:42:02.458] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Illinois, 1980 and last: 2011 Chilean telethon -[2018-02-13T00:42:02.518] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:42:02.700] [INFO] cheese - inserting 1000 documents. first: Colmier-le-Haut and last: Hms Victory -[2018-02-13T00:42:02.738] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:42:02.791] [INFO] cheese - inserting 1000 documents. first: Taufiq Qureshi and last: Lion of Belfort (Montreal) -[2018-02-13T00:42:02.797] [INFO] cheese - inserting 1000 documents. first: Fagetu and last: David Smith (footballer, born 1970) -[2018-02-13T00:42:02.858] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:42:02.862] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:42:02.876] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/requests/instructions2 and last: Piasecki XH-21 -[2018-02-13T00:42:02.938] [INFO] cheese - inserting 1000 documents. first: Humberto Alvarez-Machain and last: Boyle Family -[2018-02-13T00:42:02.940] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:42:02.949] [INFO] cheese - inserting 1000 documents. first: File:Everything Sad Is Coming Untrue.jpg and last: Wildebeest (ride) -[2018-02-13T00:42:03.013] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:42:03.015] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:42:03.163] [INFO] cheese - inserting 1000 documents. first: Up Close and Personal (Talk show) and last: Draft:Matwai Baranov -[2018-02-13T00:42:03.177] [INFO] cheese - inserting 1000 documents. first: Menthonnex-sous-Clermont and last: Monarch Broadcasting -[2018-02-13T00:42:03.236] [INFO] cheese - inserting 1000 documents. first: Category:Tennessee Volunteers football broadcasters and last: The Twig trilogy -[2018-02-13T00:42:03.240] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:42:03.309] [INFO] cheese - inserting 1000 documents. first: Piasecki YH-21 and last: Philippine-American relations -[2018-02-13T00:42:03.310] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:42:03.344] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:03.382] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:42:03.567] [INFO] cheese - inserting 1000 documents. first: Portal:Karnataka/Selected picture and last: Frank Reade and his Electric Man -[2018-02-13T00:42:03.664] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:42:03.707] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in McCormick County, South Carolina and last: Lazyboy (band) -[2018-02-13T00:42:03.802] [INFO] cheese - inserting 1000 documents. first: Saxon (disambiguation) and last: Diane Diamond -[2018-02-13T00:42:03.802] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:03.882] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:42:03.923] [INFO] cheese - inserting 1000 documents. first: Bush Mountain and last: Category:Buildings and structures in Manchester Parish -[2018-02-13T00:42:03.926] [INFO] cheese - inserting 1000 documents. first: Espèche and last: Braye-sur-Maulne -[2018-02-13T00:42:03.961] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:03.981] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:42:04.021] [INFO] cheese - inserting 1000 documents. first: Jade World and last: The Legend of Zelda (game watch) -[2018-02-13T00:42:04.079] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:42:04.096] [INFO] cheese - inserting 1000 documents. first: Template:BAP/doc and last: Sieges of Ceuta -[2018-02-13T00:42:04.210] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:42:04.235] [INFO] cheese - inserting 1000 documents. first: Lumbar veins and last: State Route 137 (Virginia pre-1933) -[2018-02-13T00:42:04.311] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:42:04.383] [INFO] cheese - inserting 1000 documents. first: Musee Aeronautique Presqu'ile Cote d'Amour and last: Little John's Farm -[2018-02-13T00:42:04.426] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:42:04.444] [INFO] cheese - inserting 1000 documents. first: Michael Hedges (sound engineer) and last: Gary A. Rizzo -[2018-02-13T00:42:04.506] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:04.522] [INFO] cheese - inserting 1000 documents. first: Paulet St John, 7th Baron St John of Bletso and last: United Kingdom Drought of 1955 -[2018-02-13T00:42:04.543] [INFO] cheese - inserting 1000 documents. first: Ministry of the Russian Federation for Civil Defense, Emergencies and the Elimination of the Consequences of Natural Disasters and last: Herb Magidson -[2018-02-13T00:42:04.569] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:42:04.587] [INFO] cheese - inserting 1000 documents. first: SHOX and last: Recologne-lès-Rioz -[2018-02-13T00:42:04.616] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:42:04.646] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:42:04.740] [INFO] cheese - inserting 1000 documents. first: Route 137 (Virginia pre-1933) and last: Boseong-gun -[2018-02-13T00:42:04.759] [INFO] cheese - inserting 1000 documents. first: Watsonidia pardea and last: Eighty Years' War (1566–1609) -[2018-02-13T00:42:04.787] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:42:04.797] [INFO] cheese - inserting 1000 documents. first: Butler Creek (Elk River) and last: Richard Walsh (English politician) -[2018-02-13T00:42:04.812] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:42:04.884] [INFO] cheese - inserting 1000 documents. first: Template:RCTS-LocosGWR-2/doc and last: Category:Beypazarı, Ankara -[2018-02-13T00:42:04.885] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:42:04.927] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:42:04.960] [INFO] cheese - inserting 1000 documents. first: SoaML and last: Wu Weichao -[2018-02-13T00:42:05.003] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:42:05.043] [INFO] cheese - inserting 1000 documents. first: Template:Vermonter and last: James T. "Joker" Davis -[2018-02-13T00:42:05.087] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:42:05.150] [INFO] cheese - inserting 1000 documents. first: Citicar/CommutaCar/Comuta-Van and last: Gdansk Shipyards -[2018-02-13T00:42:05.196] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:42:05.238] [INFO] cheese - inserting 1000 documents. first: Template:Poland men volleyball team 2006 FIVB World Championship and last: Allium thessalum -[2018-02-13T00:42:05.275] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:42:05.363] [INFO] cheese - inserting 1000 documents. first: File:Everyave.jpg and last: Wikipedia:WikiProject Spam/LinkReports/fsi-viewer.com -[2018-02-13T00:42:05.407] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:42:05.414] [INFO] cheese - inserting 1000 documents. first: Robert Knollys (politician died 1659) and last: Wikipedia:Reference desk/Archives/Humanities/2011 November 18 -[2018-02-13T00:42:05.424] [INFO] cheese - inserting 1000 documents. first: Arthur Michael Samuel, 1st Baron Mancroft and last: The Natural History of Selborne -[2018-02-13T00:42:05.475] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:42:05.530] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:42:05.549] [INFO] cheese - inserting 1000 documents. first: Cociovaliștea and last: Kostas Themistokleous -[2018-02-13T00:42:05.556] [INFO] cheese - inserting 1000 documents. first: Cellulosimicrobium cellulans and last: Zhu Tianxin -[2018-02-13T00:42:05.633] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:05.645] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:42:05.894] [INFO] cheese - inserting 1000 documents. first: Category:Bridges in Gloucestershire and last: Template:Republican Party (United States)/meta/shortname -[2018-02-13T00:42:05.948] [INFO] cheese - inserting 1000 documents. first: Porrum amethystinum and last: Kang Seong-Jung -[2018-02-13T00:42:05.980] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:42:06.026] [INFO] cheese - inserting 1000 documents. first: File:Biblical judges.png and last: Eric Staller -[2018-02-13T00:42:06.028] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:06.108] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:42:06.175] [INFO] cheese - inserting 1000 documents. first: Fondremand and last: Wikipedia:Peer review/History of Portugal (1578-1777) -[2018-02-13T00:42:06.248] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:42:06.265] [INFO] cheese - inserting 1000 documents. first: Wates Building Group and last: File:Vinegar Joe.jpg -[2018-02-13T00:42:06.316] [INFO] cheese - inserting 1000 documents. first: Bimm and last: Sk 60C -[2018-02-13T00:42:06.346] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:42:06.422] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:42:06.566] [INFO] cheese - inserting 1000 documents. first: Category:Contemporary Christian articles by quality and last: Oops! (Super Junior song) -[2018-02-13T00:42:06.640] [INFO] cheese - inserting 1000 documents. first: File:John Pybus.jpg and last: Cuddington Meadows -[2018-02-13T00:42:06.641] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T00:42:06.701] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:42:06.743] [INFO] cheese - inserting 1000 documents. first: V Vinod Kumar and last: Romanian Orthodox Archdiocese of America and Canada -[2018-02-13T00:42:06.770] [INFO] cheese - inserting 1000 documents. first: 1951 Prime Minister's Resignation Honours and last: Wikipedia:Peer review/Jang Yeong-sil -[2018-02-13T00:42:06.791] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:42:06.820] [INFO] cheese - inserting 1000 documents. first: Great Eastern (radio show) and last: Valerate -[2018-02-13T00:42:06.841] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:42:06.931] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:42:06.956] [INFO] cheese - inserting 1000 documents. first: ROCS Hsiang Yang (DD-1) and last: Parti (surname) -[2018-02-13T00:42:07.021] [INFO] cheese - inserting 1000 documents. first: Jul i Betlehem and last: Heartattack -[2018-02-13T00:42:07.034] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:42:07.119] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:42:07.217] [INFO] cheese - inserting 1000 documents. first: Template:Japanese Animation Creators Association and last: Category:Spy films by genre -[2018-02-13T00:42:07.266] [INFO] cheese - inserting 1000 documents. first: Lateral hiring and last: OPCS-4.6 -[2018-02-13T00:42:07.306] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:07.367] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:42:07.406] [INFO] cheese - inserting 1000 documents. first: Methylnandrolone and last: Category:1047 in Asia -[2018-02-13T00:42:07.423] [INFO] cheese - inserting 1000 documents. first: Noia (region) and last: Grant Township, Crawford County, Kansas -[2018-02-13T00:42:07.454] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:07.473] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:42:07.623] [INFO] cheese - inserting 1000 documents. first: Fuck The World (The Vines song) and last: Muhammad bin Naif -[2018-02-13T00:42:07.691] [INFO] cheese - inserting 1000 documents. first: Final Fantasy Legend III and last: Wikipedia:Articles for deletion/Full formal listing of sources on Stalin in the Civil War -[2018-02-13T00:42:07.754] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:42:07.777] [INFO] cheese - inserting 1000 documents. first: 1989 World Sportscar Championship and last: Ochrotomyini -[2018-02-13T00:42:07.806] [INFO] cheese - inserting 1000 documents. first: File:Gulf Coast Athletic Conference logo.png and last: Thomas Hale (agriculturist) -[2018-02-13T00:42:07.881] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:42:07.902] [INFO] cheese - inserting 1000 documents. first: Brain activity and meditation and last: Startkey -[2018-02-13T00:42:07.923] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:42:07.965] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:42:08.072] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:42:08.212] [INFO] cheese - inserting 1000 documents. first: File:Affiche.L-Esclave.7864.jpg and last: Biser (given name) -[2018-02-13T00:42:08.219] [INFO] cheese - inserting 1000 documents. first: Lincoln Township, Crawford County, Kansas and last: Box–Cox distribution -[2018-02-13T00:42:08.323] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:42:08.331] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:42:08.542] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox First Opium War and last: Thysanoplusia circumscripta -[2018-02-13T00:42:08.611] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:42:08.633] [INFO] cheese - inserting 1000 documents. first: Cerrig Man and last: Category:Songs written by Rob Hatch -[2018-02-13T00:42:08.707] [INFO] cheese - inserting 1000 documents. first: Dilith Jayaweera and last: IGN FI -[2018-02-13T00:42:08.711] [INFO] cheese - inserting 1000 documents. first: East Hebei Autonomous Council and last: David de la Fuente Rasilla -[2018-02-13T00:42:08.716] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:42:08.766] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:08.822] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:42:08.875] [INFO] cheese - inserting 1000 documents. first: Raif Dizdarević and last: Naruto (rank) -[2018-02-13T00:42:08.974] [INFO] cheese - inserting 1000 documents. first: WGTJ and last: Natalia Doussopoulos -[2018-02-13T00:42:08.987] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T00:42:09.020] [INFO] cheese - inserting 1000 documents. first: De Vere Group and last: Draft:Inhabit Media -[2018-02-13T00:42:09.032] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:42:09.119] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:42:09.240] [INFO] cheese - inserting 1000 documents. first: File:VIFF 2014 logo medium.png and last: Christ Presbyterian Church -[2018-02-13T00:42:09.297] [INFO] cheese - inserting 1000 documents. first: Plusia circumscripta and last: Province of Taourirt -[2018-02-13T00:42:09.338] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:42:09.366] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:42:09.419] [INFO] cheese - inserting 1000 documents. first: Hero Hitler In Love (2011) and last: BioMart -[2018-02-13T00:42:09.487] [INFO] cheese - inserting 1000 documents. first: Mahackemo and last: Chui River -[2018-02-13T00:42:09.488] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:42:09.611] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:09.658] [INFO] cheese - inserting 1000 documents. first: The Corn Is Green (1945 film) and last: Martihaz -[2018-02-13T00:42:09.712] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:42:09.730] [INFO] cheese - inserting 1000 documents. first: Category:Suck (band) albums and last: Category:1369 establishments in Europe -[2018-02-13T00:42:09.817] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:42:09.883] [INFO] cheese - inserting 1000 documents. first: Beenleigh Divisional Board and last: Fasnacloich -[2018-02-13T00:42:09.924] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:42:09.940] [INFO] cheese - inserting 1000 documents. first: Karel Hermanek and last: Abgarmak-e Sofla, Besharat -[2018-02-13T00:42:09.979] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:42:10.013] [INFO] cheese - inserting 1000 documents. first: Template:RFCUlist/doc and last: War of the Allies -[2018-02-13T00:42:10.062] [INFO] cheese - inserting 1000 documents. first: Category:Doctor Who Doctors and last: Lal-lo, Cagayan -[2018-02-13T00:42:10.078] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:42:10.142] [INFO] cheese - inserting 1000 documents. first: Category:1369 establishments by continent and last: Category:1022 establishments by country -[2018-02-13T00:42:10.166] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T00:42:10.185] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:42:10.227] [INFO] cheese - inserting 1000 documents. first: Nicolas (wine retailer) and last: San Diego County Transportation -[2018-02-13T00:42:10.263] [INFO] cheese - inserting 1000 documents. first: File:Elliot Goldenthal - Final Fantasy - The Phantom Plains.ogg and last: Cheviré-le-Rouge -[2018-02-13T00:42:10.297] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:42:10.320] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:42:10.407] [INFO] cheese - inserting 1000 documents. first: Karl Aegerter and last: Baghsar fort -[2018-02-13T00:42:10.465] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:10.499] [INFO] cheese - inserting 1000 documents. first: David Sayer and last: Martha Nilsson Edelheit -[2018-02-13T00:42:10.594] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:10.600] [INFO] cheese - inserting 1000 documents. first: Thalidomide scandal and last: Berliner-Joyce XP-13 Viper -[2018-02-13T00:42:10.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of first-class cricket matches played by Nepal and last: The Doug Anthony All Stars -[2018-02-13T00:42:10.684] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:42:10.709] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:42:10.755] [INFO] cheese - inserting 1000 documents. first: Chigné and last: Nathan Cross -[2018-02-13T00:42:10.811] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:42:10.901] [INFO] cheese - inserting 1000 documents. first: Pius Schwert and last: Eric Parker (American football) -[2018-02-13T00:42:10.937] [INFO] cheese - inserting 1000 documents. first: Lasam, Cagayan and last: Ruby Falls -[2018-02-13T00:42:10.979] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:42:10.987] [INFO] cheese - inserting 1000 documents. first: Super Typhoon Emma (Welming) and last: Júlio Cesar Paula Muniz Júnior -[2018-02-13T00:42:11.049] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:42:11.089] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:42:11.179] [INFO] cheese - inserting 1000 documents. first: Creole (linguistics) and last: Seymour Shifrin -[2018-02-13T00:42:11.255] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:42:11.273] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Marshtomp and last: French ship Sémillante -[2018-02-13T00:42:11.320] [INFO] cheese - inserting 1000 documents. first: Iolo Morganwg Manuscripts and last: Ram Charan Mehrotra -[2018-02-13T00:42:11.334] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:42:11.349] [INFO] cheese - inserting 1000 documents. first: Calliergis ramosa and last: Memorial Coliseum (Fort Wayne) -[2018-02-13T00:42:11.380] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:42:11.403] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:11.547] [INFO] cheese - inserting 1000 documents. first: Julio César Paula Muniz Júnior and last: Category:Linfield Wildcats baseball players -[2018-02-13T00:42:11.584] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:42:11.603] [INFO] cheese - inserting 1000 documents. first: Glider (EP) and last: Harzburg -[2018-02-13T00:42:11.656] [INFO] cheese - inserting 1000 documents. first: Pedestrian-actuated signal and last: Kilravock -[2018-02-13T00:42:11.658] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:42:11.667] [INFO] cheese - inserting 1000 documents. first: Portal:Virginia/Related portals and last: Wikipedia:Featured picture candidates/King's College Chapel West -[2018-02-13T00:42:11.704] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:42:11.739] [INFO] cheese - inserting 1000 documents. first: Banana Joe (film) and last: Houtteville -[2018-02-13T00:42:11.741] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:42:11.808] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:42:11.862] [INFO] cheese - inserting 1000 documents. first: Confectioner's resin and last: P (grammar) -[2018-02-13T00:42:11.934] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:42:11.942] [INFO] cheese - inserting 1000 documents. first: Ngima and last: Jonathan Bailey House (Milo, New York) -[2018-02-13T00:42:11.994] [INFO] cheese - inserting 1000 documents. first: Numer and last: Nord 1500 Griffon I -[2018-02-13T00:42:12.014] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:42:12.101] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:42:12.130] [INFO] cheese - inserting 1000 documents. first: List of Heat Guy J episodes and last: Category:Dams in French Guiana -[2018-02-13T00:42:12.182] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:42:12.217] [INFO] cheese - inserting 1000 documents. first: Schipol and last: Wikipedia:Articles for deletion/Elle milano -[2018-02-13T00:42:12.266] [INFO] cheese - inserting 1000 documents. first: Gourgue and last: Highway 322 -[2018-02-13T00:42:12.297] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:42:12.308] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:42:12.490] [INFO] cheese - inserting 1000 documents. first: File:Kalamazoo Wings (1974-2000) logo.svg and last: Eduard Müller (internist) -[2018-02-13T00:42:12.550] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:42:12.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Christ Literalist: Complete Quotes From The World's Most Renowned Revolutionary and last: K-League 1998 -[2018-02-13T00:42:12.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fuck in different languages and last: Norwegian Premier League 1987 -[2018-02-13T00:42:12.735] [INFO] cheese - inserting 1000 documents. first: Nord 1500 Griffon II and last: List of Astrological organizations -[2018-02-13T00:42:12.773] [INFO] cheese - inserting 1000 documents. first: Calcium Release Activated Channels and last: Hercílio Luz (disambiguation) -[2018-02-13T00:42:12.859] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:42:12.881] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T00:42:12.890] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:12.911] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:42:12.962] [INFO] cheese - inserting 1000 documents. first: Krešimir Ćosić Hall and last: David Levy (psychologist) -[2018-02-13T00:42:13.073] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:42:13.310] [INFO] cheese - inserting 1000 documents. first: Shapwick (Somerset) and last: Elements of Semiology -[2018-02-13T00:42:13.324] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Church and last: Category:Shropshire Wanderers F.C. players -[2018-02-13T00:42:13.378] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:42:13.390] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T00:42:13.457] [INFO] cheese - inserting 1000 documents. first: K-League 1999 and last: Arctonotus -[2018-02-13T00:42:13.481] [INFO] cheese - inserting 1000 documents. first: Blackwoods and last: Digital Content -[2018-02-13T00:42:13.503] [INFO] cheese - inserting 1000 documents. first: Robert Thew and last: SSZ-class blimp -[2018-02-13T00:42:13.529] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:13.566] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:42:13.579] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:42:13.611] [INFO] cheese - inserting 1000 documents. first: Rolfosteus (genus) and last: Cliche Guevara -[2018-02-13T00:42:13.617] [INFO] cheese - inserting 1000 documents. first: John Herbert Crawford (politician) and last: Estrid Svendsdatter -[2018-02-13T00:42:13.667] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:42:13.677] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:42:13.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/easycounter.com and last: File:CIBQ RealCountry105.7 logo.png -[2018-02-13T00:42:13.925] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:42:13.965] [INFO] cheese - inserting 1000 documents. first: Charles Sumner Benedict and last: Nektarios Terpos -[2018-02-13T00:42:13.974] [INFO] cheese - inserting 1000 documents. first: Quality-of-Data (QoD) and last: Expander cycle (rocket) -[2018-02-13T00:42:14.008] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/County of Calvelage and last: Wikipedia:Peer review/Simpson's paradox -[2018-02-13T00:42:14.046] [INFO] cheese - inserting 1000 documents. first: Falcon Down and last: Category:Singing competitions -[2018-02-13T00:42:14.065] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:42:14.065] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:42:14.064] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:42:14.222] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:42:14.339] [INFO] cheese - inserting 1000 documents. first: The High Society and last: Cinco de Septiembre Stadium -[2018-02-13T00:42:14.428] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:42:14.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eamusic.dartmouth.edu and last: File:WQIL logo.jpg -[2018-02-13T00:42:14.649] [INFO] cheese - inserting 1000 documents. first: Elida Almeida and last: 1943 Missouri Tigers football team -[2018-02-13T00:42:14.685] [INFO] cheese - inserting 1000 documents. first: The Spy (2012 film) and last: Category:Bryant Bulldogs men's basketball navigational boxes -[2018-02-13T00:42:14.705] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:42:14.716] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:42:14.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/untmedia.250x.com and last: Vienna Declaration and Programme of Action (VDPA) -[2018-02-13T00:42:14.755] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:42:14.830] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:42:15.039] [INFO] cheese - inserting 1000 documents. first: File:Methamphetamine.gif and last: Miles Tails Prowler -[2018-02-13T00:42:15.122] [INFO] cheese - inserting 1000 documents. first: Rück's Blue-flycatcher and last: Christopher Becker -[2018-02-13T00:42:15.130] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:42:15.147] [INFO] cheese - inserting 1000 documents. first: Valhalla: Before the War and last: Observers -[2018-02-13T00:42:15.208] [INFO] cheese - inserting 1000 documents. first: Fargues and last: Category:1974 in Europe -[2018-02-13T00:42:15.228] [INFO] cheese - inserting 1000 documents. first: Super Parental Guidance and last: Chamber of Deputies of Portugal -[2018-02-13T00:42:15.258] [INFO] cheese - batch complete in: 1.679 secs -[2018-02-13T00:42:15.289] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:15.305] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steven Oberman and last: File:20 20 Vision.jpg -[2018-02-13T00:42:15.305] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:42:15.351] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:15.407] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:42:15.494] [INFO] cheese - inserting 1000 documents. first: File:Ramiro Colon.JPG and last: F512M -[2018-02-13T00:42:15.581] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:15.766] [INFO] cheese - inserting 1000 documents. first: Po' Girl (album) and last: File:StephenReich.jpg -[2018-02-13T00:42:15.824] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:42:15.830] [INFO] cheese - inserting 1000 documents. first: File:Veer Surendra Sai University of Technology logo.jpg and last: The Leading Man (comic) -[2018-02-13T00:42:15.881] [INFO] cheese - inserting 1000 documents. first: Chahamanas and last: Point au Roche State Park -[2018-02-13T00:42:15.883] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:42:15.886] [INFO] cheese - inserting 1000 documents. first: Template:UK-hist-constituency-stub and last: Ocodelus -[2018-02-13T00:42:15.924] [INFO] cheese - inserting 1000 documents. first: Bill DeWitt and last: Hemp-palm -[2018-02-13T00:42:15.939] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:15.947] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:42:15.997] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:42:16.014] [INFO] cheese - inserting 1000 documents. first: Chamari Atapattu and last: Chang Woe-Ryong -[2018-02-13T00:42:16.028] [INFO] cheese - inserting 1000 documents. first: Template:PBB/83440 and last: Smith-Ely Mansion -[2018-02-13T00:42:16.096] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:42:16.099] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:42:16.273] [INFO] cheese - inserting 1000 documents. first: Category:1868 in Spain and last: Template:Ohio college football venues -[2018-02-13T00:42:16.278] [INFO] cheese - inserting 1000 documents. first: Safarabad and last: Chesnut-sided White-eye -[2018-02-13T00:42:16.307] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:42:16.312] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:16.369] [INFO] cheese - inserting 1000 documents. first: Ayala Hetzroni and last: File:Bangaru Babu (1973 film).jpg -[2018-02-13T00:42:16.379] [INFO] cheese - inserting 1000 documents. first: Category:Conservation in Lithuania and last: Journeyman Project: Revisioned -[2018-02-13T00:42:16.424] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:42:16.427] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:16.463] [INFO] cheese - inserting 1000 documents. first: Meyer and Daniel Guggenheim and last: Scouting staff -[2018-02-13T00:42:16.547] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:16.580] [INFO] cheese - inserting 1000 documents. first: Drepatelodes tanais and last: William Peters (Diplomat) -[2018-02-13T00:42:16.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Lorient and last: File:Anthony E. Sowell.jpg -[2018-02-13T00:42:16.645] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:16.665] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:42:16.749] [INFO] cheese - inserting 1000 documents. first: File:Maria Marten, or The Murder in the Red Barn FilmPoster.jpeg and last: Blackett-Sample-Hummert -[2018-02-13T00:42:16.771] [INFO] cheese - inserting 1000 documents. first: Part XVII of the Constitution of India and last: Wikipedia:Articles for deletion/YMT-05 Hildolfr -[2018-02-13T00:42:16.803] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:42:16.828] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:16.915] [INFO] cheese - inserting 1000 documents. first: Template:Guatemalan Liga Mayor and last: William Ailā -[2018-02-13T00:42:16.970] [INFO] cheese - inserting 1000 documents. first: Dodero and last: Central banks and currencies of Central America and South America -[2018-02-13T00:42:17.075] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:42:17.079] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:42:17.290] [INFO] cheese - inserting 1000 documents. first: First Talk With Tamara Bull and last: Blue Christmas (holiday) -[2018-02-13T00:42:17.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dan Freeman and last: Bramwell Booth -[2018-02-13T00:42:17.367] [INFO] cheese - inserting 1000 documents. first: Category:Cinema of Kuwait and last: 23rd Infantry Division (Germany) -[2018-02-13T00:42:17.378] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:42:17.457] [INFO] cheese - inserting 1000 documents. first: File:Tetraloop Receptor A2.png and last: File:Buxtonfc.png -[2018-02-13T00:42:17.457] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:42:17.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Virus and last: Sanoodi -[2018-02-13T00:42:17.469] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:42:17.535] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:42:17.582] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:42:17.619] [INFO] cheese - inserting 1000 documents. first: Starfucker and last: Abernethy No. 186 -[2018-02-13T00:42:17.699] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:17.805] [INFO] cheese - inserting 1000 documents. first: CASE (Disambiguation) and last: Alex Fox -[2018-02-13T00:42:17.864] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:17.899] [INFO] cheese - inserting 1000 documents. first: Melittid and last: Pârâul Roşu (disambiguation) -[2018-02-13T00:42:17.930] [INFO] cheese - inserting 1000 documents. first: Category:Pupils of Randall Thompson and last: Category:Male to female cross-dressers -[2018-02-13T00:42:17.944] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:42:17.998] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:18.061] [INFO] cheese - inserting 1000 documents. first: Antelope Park No. 322 and last: Template:Did you know nominations/Hannah Dadds -[2018-02-13T00:42:18.062] [INFO] cheese - inserting 1000 documents. first: Berzelia and last: Galinska -[2018-02-13T00:42:18.082] [INFO] cheese - inserting 1000 documents. first: Marigny, Manche and last: IEEE Power Engineering Review -[2018-02-13T00:42:18.098] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:18.128] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:42:18.156] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:42:18.210] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pilotstars and last: Mapita Cortés -[2018-02-13T00:42:18.297] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:42:18.415] [INFO] cheese - inserting 1000 documents. first: Die geschiedene Frau and last: Egle -[2018-02-13T00:42:18.416] [INFO] cheese - inserting 1000 documents. first: Template:S-line/IT-Eurostar left/ and last: Papyrus Oxyrhynchus 402 -[2018-02-13T00:42:18.458] [INFO] cheese - inserting 1000 documents. first: Galinskaya and last: MacRobertson Girls' High School -[2018-02-13T00:42:18.474] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Dougherty County, Georgia and last: Mohini 9886788888 -[2018-02-13T00:42:18.479] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:42:18.482] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:42:18.536] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:42:18.574] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:42:18.630] [INFO] cheese - inserting 1000 documents. first: Category:The Last Shadow Puppets albums and last: Girolamo graziani -[2018-02-13T00:42:18.697] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:42:18.745] [INFO] cheese - inserting 1000 documents. first: Chunhua, Hunan and last: Central mountain blue -[2018-02-13T00:42:18.822] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:42:19.000] [INFO] cheese - inserting 1000 documents. first: The Butcher's Wife and last: Wikipedia:Articles for deletion/Katatonic -[2018-02-13T00:42:19.008] [INFO] cheese - inserting 1000 documents. first: Portal:West Virginia/Did you know/4 and last: Category:1958 in Cyprus -[2018-02-13T00:42:19.044] [INFO] cheese - inserting 1000 documents. first: Godwin Samararatne and last: The Brain Suckers Cometh! -[2018-02-13T00:42:19.087] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:19.085] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:42:19.173] [INFO] cheese - inserting 1000 documents. first: Brown Currawong and last: Ernst ruska centre -[2018-02-13T00:42:19.181] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:42:19.200] [INFO] cheese - inserting 1000 documents. first: Laurie Ayton Jr and last: Il Piccio -[2018-02-13T00:42:19.255] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:42:19.292] [INFO] cheese - inserting 1000 documents. first: Portal:Textile Arts/Selected quote/4 and last: Category:Snooker video games -[2018-02-13T00:42:19.288] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:42:19.297] [INFO] cheese - inserting 1000 documents. first: Richard Bond and last: Karl W. Young -[2018-02-13T00:42:19.404] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:19.420] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:42:19.691] [INFO] cheese - inserting 1000 documents. first: Mrs Courtney Melmoth and last: Radikale -[2018-02-13T00:42:19.699] [INFO] cheese - inserting 1000 documents. first: Bugac, Gagauzia and last: File:MirandaLambertPlatinum.jpg -[2018-02-13T00:42:19.714] [INFO] cheese - inserting 1000 documents. first: Kingdom of Lunda and last: Is There Anybody Out There -[2018-02-13T00:42:19.723] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:19.758] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:42:19.790] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:42:19.792] [INFO] cheese - inserting 1000 documents. first: Xinu and last: Betty Ann Frazer -[2018-02-13T00:42:19.859] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:42:19.901] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ur1.ca and last: Microscanning -[2018-02-13T00:42:19.946] [INFO] cheese - inserting 1000 documents. first: Same-sex marriage and procreation and last: National Democratic Party of Lithuania -[2018-02-13T00:42:19.954] [INFO] cheese - inserting 1000 documents. first: David I Stuart and last: Wikipedia:Articles for deletion/Michael McCavish -[2018-02-13T00:42:19.957] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:42:19.994] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:42:20.032] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:42:20.169] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/50 Cent discography/archive4 and last: Identity disc -[2018-02-13T00:42:20.245] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:42:20.369] [INFO] cheese - inserting 1000 documents. first: The Secret Ball and last: File:Babydon'tcry.jpg -[2018-02-13T00:42:20.425] [INFO] cheese - inserting 1000 documents. first: Hulkamania: Let the Battle Begin and last: Diemaco C8FTHB -[2018-02-13T00:42:20.443] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:42:20.489] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:42:20.522] [INFO] cheese - inserting 1000 documents. first: South Street (MBTA station) and last: Portal:Weather/On this day/04/02 -[2018-02-13T00:42:20.535] [INFO] cheese - inserting 1000 documents. first: Template:Pioneers of Printing Press and last: Project Grand Slam -[2018-02-13T00:42:20.553] [INFO] cheese - inserting 1000 documents. first: I sogni di Laura and last: Stone Lagoon -[2018-02-13T00:42:20.586] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:42:20.609] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:42:20.614] [INFO] cheese - inserting 1000 documents. first: Ministers and Secretaries Act 1924 and last: T-norm -[2018-02-13T00:42:20.661] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:20.726] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:42:20.911] [INFO] cheese - inserting 1000 documents. first: Template:David Bisbal and last: The Journal of Defense Modeling and Simulation -[2018-02-13T00:42:20.985] [INFO] cheese - inserting 1000 documents. first: Protivo-Vozdushnaya Oborona and last: Saarloos Wolfhound -[2018-02-13T00:42:20.985] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:42:21.022] [INFO] cheese - inserting 1000 documents. first: Caladenia calcicola and last: Sithric ‘Carrach-in-Cairn’ Mág Tighearnán -[2018-02-13T00:42:21.036] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:42:21.061] [INFO] cheese - inserting 1000 documents. first: Willis Blair and last: Category:Database-related software for Linux -[2018-02-13T00:42:21.067] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DByDx and last: Saint-Remy-sous-Broyes -[2018-02-13T00:42:21.066] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:42:21.120] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:42:21.174] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:42:21.186] [INFO] cheese - inserting 1000 documents. first: Ecuadorian Confederation of Free Trade Union Organizations and last: Lego Atlantis -[2018-02-13T00:42:21.250] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:42:21.421] [INFO] cheese - inserting 1000 documents. first: Arthur Seat and last: Tornado of Souls -[2018-02-13T00:42:21.520] [INFO] cheese - inserting 1000 documents. first: Transdanubian Mountains and last: Matrox Graphics eXpansion Modules -[2018-02-13T00:42:21.529] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:42:21.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/guidechem.com and last: Melonites -[2018-02-13T00:42:21.652] [INFO] cheese - inserting 1000 documents. first: U.S. Coast & Geodetic Survey and last: Herserange -[2018-02-13T00:42:21.660] [INFO] cheese - inserting 1000 documents. first: William Alexander (artist) and last: Anomaly (communications agency) -[2018-02-13T00:42:21.663] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:42:21.670] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:21.722] [INFO] cheese - inserting 1000 documents. first: Thelosia mayaca and last: 2010 ICC Women's World Twenty20 squads -[2018-02-13T00:42:21.722] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:42:21.724] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:21.782] [INFO] cheese - inserting 1000 documents. first: Viktor Paço and last: Mota, Ljutomer -[2018-02-13T00:42:21.814] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:21.864] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:42:22.111] [INFO] cheese - inserting 1000 documents. first: Bhadra Sukla Purnima and last: Bongo, Amba -[2018-02-13T00:42:22.134] [INFO] cheese - inserting 1000 documents. first: TNBM and last: Ardudar -[2018-02-13T00:42:22.152] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:42:22.172] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:42:22.174] [INFO] cheese - inserting 1000 documents. first: Tapalqué and last: Category:Chordate stubs -[2018-02-13T00:42:22.189] [INFO] cheese - inserting 1000 documents. first: Trilocha obliquisigna and last: Rajapaksha -[2018-02-13T00:42:22.215] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:42:22.280] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:42:22.330] [INFO] cheese - inserting 1000 documents. first: Charlie Colombo and last: Cher videography -[2018-02-13T00:42:22.340] [INFO] cheese - inserting 1000 documents. first: Flying Saucers and last: Peyrepertuse -[2018-02-13T00:42:22.376] [INFO] cheese - inserting 1000 documents. first: Knowesgate railway station and last: HMS Lacedaemonian -[2018-02-13T00:42:22.412] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:42:22.444] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:42:22.469] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:22.652] [INFO] cheese - inserting 1000 documents. first: Ordudar and last: Category:Ambassadors of the United States to East Timor -[2018-02-13T00:42:22.706] [INFO] cheese - inserting 1000 documents. first: Television in Wales and last: Crow robot -[2018-02-13T00:42:22.710] [INFO] cheese - inserting 1000 documents. first: Boni, Tanella and last: Paul Green & The Other Colours -[2018-02-13T00:42:22.731] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:42:22.766] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:42:22.768] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:42:22.790] [INFO] cheese - inserting 1000 documents. first: Exp ring and last: Oreopithecus bamboli -[2018-02-13T00:42:22.866] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:42:22.960] [INFO] cheese - inserting 1000 documents. first: Chernozemelsky District and last: File:Brighams Ice Cream logo.gif -[2018-02-13T00:42:23.080] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:42:23.130] [INFO] cheese - inserting 1000 documents. first: Template:SacramentoCountyCA-geo-stub and last: Franciscan Montessori Earth School & Saint Francis Academy -[2018-02-13T00:42:23.204] [INFO] cheese - inserting 1000 documents. first: Article III court and last: Narasimma -[2018-02-13T00:42:23.205] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:42:23.246] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of the United States to Ecuador and last: Nemecia Achacollo Tola -[2018-02-13T00:42:23.254] [INFO] cheese - inserting 1000 documents. first: Template:Bwf2 and last: Pygmy bluetongue -[2018-02-13T00:42:23.264] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:42:23.278] [INFO] cheese - inserting 1000 documents. first: Hambach, Moselle and last: M-44 (MI) -[2018-02-13T00:42:23.321] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:42:23.322] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:42:23.353] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:42:23.449] [INFO] cheese - inserting 1000 documents. first: Oreopithecinae and last: Chilean corvette Papudo -[2018-02-13T00:42:23.561] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:23.689] [INFO] cheese - inserting 1000 documents. first: File:Pennsylvania Department of Transportation Logo.svg and last: Wikipedia:WikiProject Spam/LinkReports/s4songs.com -[2018-02-13T00:42:23.742] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:42:23.798] [INFO] cheese - inserting 1000 documents. first: Nonte Phonte and last: Akeelah And The Bee -[2018-02-13T00:42:23.826] [INFO] cheese - inserting 1000 documents. first: Strange deaths and last: Ben Curry -[2018-02-13T00:42:23.868] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:23.880] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:42:23.921] [INFO] cheese - inserting 1000 documents. first: Iraniyan and last: T Boz -[2018-02-13T00:42:23.926] [INFO] cheese - inserting 1000 documents. first: Coorbital configuration and last: Category:Education in Butler County, Kentucky -[2018-02-13T00:42:23.943] [INFO] cheese - inserting 1000 documents. first: M-45 (MI) and last: Department of Defense Veterinary Pathology Residency (DODVPR) -[2018-02-13T00:42:23.979] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:42:23.988] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:42:23.990] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:42:24.070] [INFO] cheese - inserting 1000 documents. first: Category:Ernstia and last: Centrify -[2018-02-13T00:42:24.128] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:42:24.176] [INFO] cheese - inserting 1000 documents. first: Jamaican Art and last: 栗羊羹 -[2018-02-13T00:42:24.216] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:42:24.360] [INFO] cheese - inserting 1000 documents. first: Kataba Arrondissement and last: Velaiyilla Pattathari 2 -[2018-02-13T00:42:24.439] [INFO] cheese - inserting 1000 documents. first: List of ship commissionings in 2002 and last: Template:Colleges and universities in Virginia -[2018-02-13T00:42:24.463] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:42:24.513] [INFO] cheese - inserting 1000 documents. first: Harry (term) and last: Yo mater -[2018-02-13T00:42:24.547] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:42:24.588] [INFO] cheese - inserting 1000 documents. first: Category:Royal residences in Ethiopia and last: Procurator of the Kirk -[2018-02-13T00:42:24.611] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:42:24.642] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:24.716] [INFO] cheese - inserting 1000 documents. first: Porky's Revenge! and last: Night After Night with Allan Havey -[2018-02-13T00:42:24.755] [INFO] cheese - inserting 1000 documents. first: Take You Higher / Crunch and last: Emile Bouhours -[2018-02-13T00:42:24.793] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:42:24.805] [INFO] cheese - inserting 1000 documents. first: Mosquito Island (Senegal) and last: Sand spur -[2018-02-13T00:42:24.849] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:42:24.915] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:42:25.023] [INFO] cheese - inserting 1000 documents. first: Posttruth and last: Category:Marinid art -[2018-02-13T00:42:25.092] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:42:25.158] [INFO] cheese - inserting 1000 documents. first: Katie Dippold and last: Costabili collection -[2018-02-13T00:42:25.167] [INFO] cheese - inserting 1000 documents. first: Lee Myong-bak and last: Maing -[2018-02-13T00:42:25.216] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:25.226] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:25.252] [INFO] cheese - inserting 1000 documents. first: Jaisingrao Gaikwad Patil and last: Mertola -[2018-02-13T00:42:25.326] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:42:25.414] [INFO] cheese - inserting 1000 documents. first: File:Obs.jpg and last: Monarchist League of Canada -[2018-02-13T00:42:25.415] [INFO] cheese - inserting 1000 documents. first: Sandspur and last: Category:States and territories disestablished in 1996 -[2018-02-13T00:42:25.460] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Ladell Parks and last: Category:Unknown-importance Saskatchewan communities and neighbourhoods-related articles -[2018-02-13T00:42:25.483] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:25.494] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:25.498] [INFO] cheese - inserting 1000 documents. first: Soejoedi Wirjoatmodjo and last: Ibrahim Zaher -[2018-02-13T00:42:25.519] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:42:25.585] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:42:25.727] [INFO] cheese - inserting 1000 documents. first: Lecithocera pelomorpha and last: Gholhak Gardens -[2018-02-13T00:42:25.737] [INFO] cheese - inserting 1000 documents. first: Anything But Down and last: Beit Govrin -[2018-02-13T00:42:25.790] [INFO] cheese - inserting 1000 documents. first: Postal Square Building and last: Labour (UK) leadership election, 2007 -[2018-02-13T00:42:25.794] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:42:25.835] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:42:25.878] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:42:25.933] [INFO] cheese - inserting 1000 documents. first: Big League Records Greatest Hits and last: Théâtre National de l'Opéra-Comique -[2018-02-13T00:42:25.980] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:26.077] [INFO] cheese - inserting 1000 documents. first: Skool and last: Portal:India/categories -[2018-02-13T00:42:26.183] [INFO] cheese - inserting 1000 documents. first: Category:Disability in Finland and last: RS 2106 -[2018-02-13T00:42:26.236] [INFO] cheese - inserting 1000 documents. first: Levente (organization) and last: M-155 -[2018-02-13T00:42:26.238] [INFO] cheese - inserting 1000 documents. first: Altizer Roberts and last: File:The Quiet Ones 2014 theatrical poster.jpg -[2018-02-13T00:42:26.249] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:42:26.329] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:42:26.356] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:42:26.363] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:42:26.413] [INFO] cheese - inserting 1000 documents. first: Quickborn-Preis and last: Glatimer -[2018-02-13T00:42:26.497] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:42:26.606] [INFO] cheese - inserting 1000 documents. first: I-64 Bowl and last: Gates of Heaven (disambiguation) -[2018-02-13T00:42:26.612] [INFO] cheese - inserting 1000 documents. first: Katisha and last: File:Animal Aid logo.jpg -[2018-02-13T00:42:26.724] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:42:26.726] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:42:26.802] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2008 February 19 and last: Paul Otto -[2018-02-13T00:42:26.894] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:42:26.911] [INFO] cheese - inserting 1000 documents. first: Category:Municipalities in Manitoba and last: Lisica -[2018-02-13T00:42:26.984] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:42:27.029] [INFO] cheese - inserting 1000 documents. first: S-3760 and last: Cronin, Paul -[2018-02-13T00:42:27.068] [INFO] cheese - inserting 1000 documents. first: Froebel star and last: Mamelodi, Gauteng -[2018-02-13T00:42:27.088] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:42:27.115] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:42:27.204] [INFO] cheese - inserting 1000 documents. first: Anastasia Martyusheva and last: Category:Biographical museums in South Dakota -[2018-02-13T00:42:27.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Saint John, United States Virgin Islands/archive1 and last: New-Castle and Frenchtown Turnpike Company -[2018-02-13T00:42:27.267] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:42:27.291] [INFO] cheese - inserting 1000 documents. first: Elizabeth Gould (illustrator) and last: State Route 320 (Virginia pre-1933) -[2018-02-13T00:42:27.344] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:42:27.357] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:42:27.419] [INFO] cheese - inserting 1000 documents. first: Horsley, Essex and last: Le Blanc, Indre -[2018-02-13T00:42:27.441] [INFO] cheese - inserting 1000 documents. first: The Swinging Bridge and last: English-language Public District School Board No. 8 -[2018-02-13T00:42:27.457] [INFO] cheese - inserting 1000 documents. first: Cross, Paul and last: Bhandavapur Jain Tirth -[2018-02-13T00:42:27.489] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:42:27.491] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:42:27.502] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:42:27.644] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Jacqueline (given name) and last: Tropical Depression Bining (1977) -[2018-02-13T00:42:27.722] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:42:27.751] [INFO] cheese - inserting 1000 documents. first: Network Rail South West Main Line Route Utilisation Strategy and last: Gary Kinder (author) -[2018-02-13T00:42:27.830] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:42:27.928] [INFO] cheese - inserting 1000 documents. first: Luis aguilé and last: Iraya language -[2018-02-13T00:42:27.970] [INFO] cheese - inserting 1000 documents. first: Clay Holmes and last: Supernumerary sex -[2018-02-13T00:42:27.975] [INFO] cheese - inserting 1000 documents. first: Teotoros Lapçinciyan and last: Educating Eve: The 'Language Instinct' Debate -[2018-02-13T00:42:28.002] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:42:28.041] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:42:28.084] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:28.233] [INFO] cheese - inserting 1000 documents. first: New Castle and Frenchtown Turnpike Company and last: Baha'i apologetics -[2018-02-13T00:42:28.264] [INFO] cheese - inserting 1000 documents. first: 1977 French motorcycle Grand Prix and last: Conway's Law -[2018-02-13T00:42:28.330] [INFO] cheese - inserting 1000 documents. first: Fu On Station and last: Voivod Discography -[2018-02-13T00:42:28.354] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:42:28.367] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T00:42:28.479] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T00:42:28.513] [INFO] cheese - inserting 1000 documents. first: Stapenberg and last: Seneca River Crossing Canals Historic District -[2018-02-13T00:42:28.591] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:42:28.786] [INFO] cheese - inserting 1000 documents. first: 120191 Tombagg and last: Kamarul Ariffin bin Mohamad Yassin -[2018-02-13T00:42:28.795] [INFO] cheese - inserting 1000 documents. first: Father Ernetti's Chronovisor: The Creation and Disappearance of the World's First Time Machine and last: Aldus TIFF 2 -[2018-02-13T00:42:28.806] [INFO] cheese - inserting 1000 documents. first: Arabic dialect and last: Wikipedia:Mediation Cabal/Cases/2006-09-17 Park Hill South High School -[2018-02-13T00:42:28.851] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:42:28.888] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:42:28.909] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:42:29.194] [INFO] cheese - inserting 1000 documents. first: Villiers-Saint-Frédéric and last: Villette, Yvelines -[2018-02-13T00:42:29.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Latter Day Saint movement/The Church of Jesus Christ of Latter-day Saints work group/Categories and last: Lawa Cottica Airport -[2018-02-13T00:42:29.264] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:42:29.316] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:42:29.377] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Journal of Germanic Mythology and Folklore and last: 1975–76 Copa del Rey -[2018-02-13T00:42:29.418] [INFO] cheese - inserting 1000 documents. first: Reycom and Aijikawa and last: Ghyath-al-Din Jamshid Kashani -[2018-02-13T00:42:29.481] [INFO] cheese - inserting 1000 documents. first: FiftyThree and last: Pine Craft, FL -[2018-02-13T00:42:29.499] [INFO] cheese - inserting 1000 documents. first: 25 August 2003 Mumbai blasts and last: Bishop Consolidated Independent School District -[2018-02-13T00:42:29.502] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:42:29.526] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:42:29.605] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:42:29.617] [INFO] cheese - inserting 1000 documents. first: Milagres Church (Kallianpur) and last: Cry6Aa -[2018-02-13T00:42:29.652] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:42:29.722] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:42:29.990] [INFO] cheese - inserting 1000 documents. first: Survey panel and last: Social Mass Party -[2018-02-13T00:42:30.013] [INFO] cheese - inserting 1000 documents. first: Villepreux and last: Interstate 70 Business (Denver, Colorado) -[2018-02-13T00:42:30.072] [INFO] cheese - inserting 1000 documents. first: Massacres of Badr Khan and last: BookSurge LLC -[2018-02-13T00:42:30.109] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:42:30.115] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:42:30.123] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:42:30.244] [INFO] cheese - inserting 1000 documents. first: File:Port Moresby International School logo.png and last: 1999-2000 Busta Cup -[2018-02-13T00:42:30.291] [INFO] cheese - inserting 1000 documents. first: Cadet Colonel and last: Susurrus -[2018-02-13T00:42:30.291] [INFO] cheese - inserting 1000 documents. first: Category:2015 in Texas and last: Trivendra Singh -[2018-02-13T00:42:30.302] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:42:30.356] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:30.370] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:42:30.376] [INFO] cheese - inserting 1000 documents. first: Frobenius mapping and last: Thiago ribeiro -[2018-02-13T00:42:30.448] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:42:30.492] [INFO] cheese - inserting 1000 documents. first: Lyle Moraine and last: Ready for the Storm -[2018-02-13T00:42:30.494] [INFO] cheese - inserting 1000 documents. first: William Anderson (cricket umpire) and last: File:NatKingCole TopPops CD 300.jpg -[2018-02-13T00:42:30.534] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:42:30.548] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:42:30.604] [INFO] cheese - inserting 1000 documents. first: Ysgol Penweddig and last: Maroncourt -[2018-02-13T00:42:30.638] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:42:30.751] [INFO] cheese - inserting 1000 documents. first: 2000-01 Busta Cup and last: Jean Giono Prize -[2018-02-13T00:42:30.800] [INFO] cheese - inserting 1000 documents. first: The Youth Counseling League and last: Nikolai Milutin -[2018-02-13T00:42:30.805] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:42:30.818] [INFO] cheese - inserting 1000 documents. first: Freeway service patrol and last: Victor Babes -[2018-02-13T00:42:30.853] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:42:30.888] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:42:30.921] [INFO] cheese - inserting 1000 documents. first: Sedgwick Theater and last: Wikipedia:Featured picture candidates/The Clock Tower of the Palace of Westminster -[2018-02-13T00:42:30.948] [INFO] cheese - inserting 1000 documents. first: Wabash–Pittsburgh Terminal Railway and last: Charles Dance (disambiguation) -[2018-02-13T00:42:30.971] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:42:31.005] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:42:31.048] [INFO] cheese - inserting 1000 documents. first: Thiru. M. VAITHIANATHAN and last: Category:Protected areas of Laclede County, Missouri -[2018-02-13T00:42:31.077] [INFO] cheese - inserting 1000 documents. first: Davin Dennis and last: Name conflicts of solar system objects -[2018-02-13T00:42:31.174] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:42:31.213] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:42:31.331] [INFO] cheese - inserting 1000 documents. first: Jo O-ryeon and last: Ndoffane Arrondissement -[2018-02-13T00:42:31.377] [INFO] cheese - inserting 1000 documents. first: Eumenes of Pergamon and last: Tame silver fox -[2018-02-13T00:42:31.401] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:42:31.489] [INFO] cheese - inserting 1000 documents. first: Nandagopal and last: Cang Prefecture -[2018-02-13T00:42:31.503] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:42:31.626] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:42:31.793] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/S.P.A.M. Records and last: Bear Creek Township, Chatham County, North Carolina -[2018-02-13T00:42:31.813] [INFO] cheese - inserting 1000 documents. first: Amber Peterson and last: Category:Natural history museums in the Netherlands -[2018-02-13T00:42:31.892] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Laclede County, Missouri and last: Π Mensae b -[2018-02-13T00:42:31.927] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:42:31.972] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:42:31.977] [INFO] cheese - inserting 1000 documents. first: Holly Valance's Third album (Cancelled) and last: US Penny -[2018-02-13T00:42:32.018] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:42:32.049] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:42:32.208] [INFO] cheese - inserting 1000 documents. first: Umaro Sissoco Embaló and last: Héctor Campos (disambiguation) -[2018-02-13T00:42:32.290] [INFO] cheese - inserting 1000 documents. first: Linklater and last: Jorge Serrano Elias -[2018-02-13T00:42:32.311] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:42:32.368] [INFO] cheese - inserting 1000 documents. first: Sagittaria guayanensis and last: Category:Creutz family -[2018-02-13T00:42:32.405] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:42:32.476] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:42:32.484] [INFO] cheese - inserting 1000 documents. first: Klisura and last: Wikipedia:Articles for deletion/Krugman's Law -[2018-02-13T00:42:32.556] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:42:32.648] [INFO] cheese - inserting 1000 documents. first: Π Men b and last: Davara rufulella -[2018-02-13T00:42:32.664] [INFO] cheese - inserting 1000 documents. first: File:Elven00.jpg and last: Kelcie Banks -[2018-02-13T00:42:32.726] [INFO] cheese - inserting 1000 documents. first: Feings and last: File:N785480617 1901249 9701.jpg -[2018-02-13T00:42:32.732] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:42:32.747] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:42:32.757] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Ntoutoume Emane and last: Stefan Grabinski -[2018-02-13T00:42:32.795] [INFO] cheese - inserting 1000 documents. first: Mohammad Amin (disambiguation) and last: Cannabis in Sweden -[2018-02-13T00:42:32.838] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:32.849] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:42:32.857] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:33.105] [INFO] cheese - inserting 1000 documents. first: Category:Government Victoria College, Palakkad alumni and last: Category:Actors from Tasmania -[2018-02-13T00:42:33.130] [INFO] cheese - inserting 1000 documents. first: Diaspidiotus perniciosus and last: Lado Aleksi-Meskhishvili -[2018-02-13T00:42:33.188] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:42:33.245] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:42:33.286] [INFO] cheese - inserting 1000 documents. first: William Shippen and last: Wikipedia:Articles for deletion/Lost Children -[2018-02-13T00:42:33.294] [INFO] cheese - inserting 1000 documents. first: Dectocera and last: Arvinder Singh Bubber -[2018-02-13T00:42:33.320] [INFO] cheese - inserting 1000 documents. first: Belladonna of Sadness (album) and last: File:Layers Kungs.jpg -[2018-02-13T00:42:33.357] [INFO] cheese - inserting 1000 documents. first: Zemplínska Široká and last: Wikipedia:Articles for deletion/DGform Multimedia -[2018-02-13T00:42:33.365] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:42:33.365] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:33.402] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:33.504] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:42:33.585] [INFO] cheese - inserting 1000 documents. first: 1876 New York Mutuals season and last: Predictable surprise -[2018-02-13T00:42:33.690] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:42:33.756] [INFO] cheese - inserting 1000 documents. first: K43JY-D and last: Isabella, Oklahoma -[2018-02-13T00:42:33.815] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:42:33.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Collaborations of the Week/Nationalism in the United States and last: 8th National Congress of the Communist Party of China -[2018-02-13T00:42:34.023] [INFO] cheese - inserting 1000 documents. first: Joao Saldanha and last: The Boy in the Plastic Bubble -[2018-02-13T00:42:34.047] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:42:34.110] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:42:34.118] [INFO] cheese - inserting 1000 documents. first: Liberal Party of Newfoundland and Labrador leadership election, May 2011 and last: Unorthodox Australian Poet -[2018-02-13T00:42:34.233] [INFO] cheese - inserting 1000 documents. first: Steve Hackett discography and last: Category:1864 elections -[2018-02-13T00:42:34.254] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:42:34.262] [INFO] cheese - inserting 1000 documents. first: Philharmonisches Staatsorchester Hamburg and last: Pradler Ritterspiele -[2018-02-13T00:42:34.326] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:42:34.346] [INFO] cheese - inserting 1000 documents. first: Nakkna and last: Coalition of National Unity -[2018-02-13T00:42:34.386] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T00:42:34.467] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Scurry County, Texas and last: Alexela Group -[2018-02-13T00:42:34.470] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:42:34.605] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:42:34.796] [INFO] cheese - inserting 1000 documents. first: Ashley Rogers and last: Wikipedia:Articles for deletion/Josh McConnell -[2018-02-13T00:42:34.833] [INFO] cheese - inserting 1000 documents. first: Category:IIHF Men's World Ice Hockey Championships and last: Wikipedia:Deletion review/Log/2009 November 19 -[2018-02-13T00:42:34.856] [INFO] cheese - inserting 1000 documents. first: Umm Khultum binte Ali and last: Ciovo -[2018-02-13T00:42:34.863] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:42:34.878] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:42:34.983] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:42:35.040] [INFO] cheese - inserting 1000 documents. first: Simon Maginn and last: Template:NewYork-struct-stub -[2018-02-13T00:42:35.143] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:42:35.161] [INFO] cheese - inserting 1000 documents. first: File:Dave Mirra Freestyle BMX 2 Coverart.png and last: Mogyoród -[2018-02-13T00:42:35.276] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:42:35.307] [INFO] cheese - inserting 1000 documents. first: Keep on Dancing (album) and last: Kevin Nicolson -[2018-02-13T00:42:35.323] [INFO] cheese - inserting 1000 documents. first: Projekttheater Vorarlberg and last: File:ReliefPitcherBoxShotSNES.jpg -[2018-02-13T00:42:35.419] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:42:35.450] [INFO] cheese - inserting 1000 documents. first: Sharpless 64 and last: Pat Ryan (executive/philanthropist/civic leader) -[2018-02-13T00:42:35.452] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T00:42:35.533] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:35.554] [INFO] cheese - inserting 1000 documents. first: Surinamese Olympic Committee and last: Wikipedia:Articles for deletion/The good the bad and the small -[2018-02-13T00:42:35.586] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm von Bruecke and last: Dolega Coat of Arms -[2018-02-13T00:42:35.634] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:42:35.657] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:42:35.790] [INFO] cheese - inserting 1000 documents. first: Flushing (military tactic) and last: Le Lorey -[2018-02-13T00:42:35.800] [INFO] cheese - inserting 1000 documents. first: Xia Xue and last: Charles Roller -[2018-02-13T00:42:35.846] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:42:35.851] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:42:35.872] [INFO] cheese - inserting 1000 documents. first: Anomoeosis phanerostigma and last: The Oregon Historical Society -[2018-02-13T00:42:35.888] [INFO] cheese - inserting 1000 documents. first: Richard Stenhouse Jr. and last: Category:1857 in the French colonial empire -[2018-02-13T00:42:35.898] [INFO] cheese - inserting 1000 documents. first: CONFECH and last: Koivunen -[2018-02-13T00:42:35.935] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:35.945] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:42:35.967] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:42:36.146] [INFO] cheese - inserting 1000 documents. first: American invasion of Montreal and last: Template:IPA-all/sandbox -[2018-02-13T00:42:36.270] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:42:36.341] [INFO] cheese - inserting 1000 documents. first: Dzialosza Coat of Arms and last: Tomas de Jesus Mangual -[2018-02-13T00:42:36.377] [INFO] cheese - inserting 1000 documents. first: William C. Gloth and last: Portal:Gene Wiki/Project proposals -[2018-02-13T00:42:36.402] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:42:36.430] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:36.506] [INFO] cheese - inserting 1000 documents. first: Roscoe Dash and last: McCune-Albright Syndrome -[2018-02-13T00:42:36.521] [INFO] cheese - inserting 1000 documents. first: Rakefet Remigolski and last: Writers' Union of the Philippines -[2018-02-13T00:42:36.524] [INFO] cheese - inserting 1000 documents. first: Somnath dasgupta and last: Akchii -[2018-02-13T00:42:36.534] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Miles Consulting Corp and last: Josephat Kiprono -[2018-02-13T00:42:36.597] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:42:36.636] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:42:36.686] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:36.734] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:42:36.807] [INFO] cheese - inserting 1000 documents. first: 1968 Trampoline World Championships and last: Category:Pakistani male models -[2018-02-13T00:42:36.890] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:36.994] [INFO] cheese - inserting 1000 documents. first: La Chapelle-Bâton, Vienne and last: Kurt Dunder -[2018-02-13T00:42:37.055] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:42:37.106] [INFO] cheese - inserting 1000 documents. first: Notebook interface and last: The Ship, Hart Street -[2018-02-13T00:42:37.118] [INFO] cheese - inserting 1000 documents. first: Alexander de Jesus and last: Depilatory cream -[2018-02-13T00:42:37.125] [INFO] cheese - inserting 1000 documents. first: Jacob van Toor and last: Truth in music -[2018-02-13T00:42:37.157] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:42:37.205] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:42:37.210] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:42:37.214] [INFO] cheese - inserting 1000 documents. first: Darke's Peak and last: Felipe Mellizo -[2018-02-13T00:42:37.282] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:42:37.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Cooperatives articles by quality/3 and last: Brites de Portugal -[2018-02-13T00:42:37.334] [INFO] cheese - inserting 1000 documents. first: File:Zee Kannada.jpg and last: State Route 117 (Virginia 1933) -[2018-02-13T00:42:37.387] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:42:37.398] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:42:37.579] [INFO] cheese - inserting 1000 documents. first: Digi camo and last: File:Aveverythingiamsample.ogg -[2018-02-13T00:42:37.610] [INFO] cheese - inserting 1000 documents. first: Kayapó-Xikrin and last: Category:Education in Howard County, Missouri -[2018-02-13T00:42:37.639] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:37.652] [INFO] cheese - inserting 1000 documents. first: Anthropism and last: Giwa FC -[2018-02-13T00:42:37.666] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:42:37.714] [INFO] cheese - inserting 1000 documents. first: Simon Vukcevic and last: Category:Electoral districts of South Australia -[2018-02-13T00:42:37.716] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:42:37.720] [INFO] cheese - inserting 1000 documents. first: Half Moon, New York and last: South Carolina sports -[2018-02-13T00:42:37.768] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:37.792] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:37.852] [INFO] cheese - inserting 1000 documents. first: Sawyer House (Monroe, MI) and last: File:Ödipussi.jpg -[2018-02-13T00:42:37.927] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:42:38.041] [INFO] cheese - inserting 1000 documents. first: Mike, Lu, and Og and last: Musicblog -[2018-02-13T00:42:38.109] [INFO] cheese - inserting 1000 documents. first: Slush Helsinki and last: Holme Park (country house) -[2018-02-13T00:42:38.155] [INFO] cheese - inserting 1000 documents. first: Manteo (Native American leader) and last: Wikipedia:Version 1.0 Editorial Team/Football in the USA and Canada articles by quality/7 -[2018-02-13T00:42:38.195] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:42:38.258] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:42:38.299] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:42:38.366] [INFO] cheese - inserting 1000 documents. first: Unik BK and last: If This Isn't Nice, What Is?: Advice to the Young -[2018-02-13T00:42:38.491] [INFO] cheese - inserting 1000 documents. first: Francesco Piccolomini (bishop) and last: Jean Dubey -[2018-02-13T00:42:38.491] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:42:38.561] [INFO] cheese - inserting 1000 documents. first: Wakaw Lake, Saskatchewan and last: Rudolph Seiden -[2018-02-13T00:42:38.620] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:42:38.621] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:38.625] [INFO] cheese - inserting 1000 documents. first: .44 and last: Stunt race fx -[2018-02-13T00:42:38.761] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:42:38.869] [INFO] cheese - inserting 1000 documents. first: Category:History of Aichi Prefecture and last: Category:Wikipedia sockpuppets of JtV -[2018-02-13T00:42:38.933] [INFO] cheese - inserting 1000 documents. first: Questo amore and last: Bijur -[2018-02-13T00:42:38.957] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:42:38.975] [INFO] cheese - inserting 1000 documents. first: Hindu and fascism and last: Cascas -[2018-02-13T00:42:39.025] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:42:39.087] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:42:39.095] [INFO] cheese - inserting 1000 documents. first: Stone Canoe Advertising and last: Category:Codasur South American Rally Championship -[2018-02-13T00:42:39.145] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:42:39.235] [INFO] cheese - inserting 1000 documents. first: Category:Chemicals articles needing expert attention and last: Seth Flowerman -[2018-02-13T00:42:39.279] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:42:39.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Caitlin Morrall and last: Category:Companies established in 1883 by country -[2018-02-13T00:42:39.368] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:42:39.381] [INFO] cheese - inserting 1000 documents. first: On Beyond Zebra and last: Need for Speed: High Stakes -[2018-02-13T00:42:39.421] [INFO] cheese - inserting 1000 documents. first: Ra Ra Riot and last: Drummond Battery -[2018-02-13T00:42:39.439] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:42:39.457] [INFO] cheese - inserting 1000 documents. first: Template:SeaWorld San Antonio Roller Coasters and last: OpEPA -[2018-02-13T00:42:39.462] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:42:39.471] [INFO] cheese - inserting 1000 documents. first: James Williamson and last: Be Yourself (Michael Rose album) -[2018-02-13T00:42:39.516] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:42:39.528] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:42:39.544] [INFO] cheese - inserting 1000 documents. first: 2013 Codasur South American Rally Championship season and last: Category:Centuries in Iraqi Kurdistan -[2018-02-13T00:42:39.597] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:42:39.636] [INFO] cheese - inserting 1000 documents. first: Uromastyx Leptieni and last: Wikipedia:Reference desk/Archives/Computing/2009 November 17 -[2018-02-13T00:42:39.682] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:42:39.792] [INFO] cheese - inserting 1000 documents. first: Draft:Aaron and Jordan Kandell and last: Coolboys and the Frontman -[2018-02-13T00:42:39.837] [INFO] cheese - inserting 1000 documents. first: Meter in the Bible and last: List of Chip and Dale Rescue Rangers episodes -[2018-02-13T00:42:39.871] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:42:39.881] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:42:39.945] [INFO] cheese - inserting 1000 documents. first: Tomorrows Pioneers and last: Category:1479 books -[2018-02-13T00:42:39.977] [INFO] cheese - inserting 1000 documents. first: Need for Speed: Porsche Unleashed and last: Lygophobia -[2018-02-13T00:42:40.012] [INFO] cheese - inserting 1000 documents. first: Russian bride and last: Eulogy (disambiguation) -[2018-02-13T00:42:40.012] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:40.051] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/The Real Housewives of Atlanta (season 6)/archive1 and last: Etheostoma etnieri -[2018-02-13T00:42:40.068] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:42:40.095] [INFO] cheese - inserting 1000 documents. first: Category:Elections in Greater Manchester and last: Burnatonce -[2018-02-13T00:42:40.099] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:42:40.214] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:42:40.219] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:42:40.432] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Catholic cathedrals in Egypt and last: Blotched blue-tongued skink -[2018-02-13T00:42:40.548] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:42:40.600] [INFO] cheese - inserting 1000 documents. first: Category:Canals of Kern County, California and last: Category:Tanganyika (territory) -[2018-02-13T00:42:40.722] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:42:40.860] [INFO] cheese - inserting 1000 documents. first: Yaropolk Izyaslavich and last: Necrodaemon Terrorsathan -[2018-02-13T00:42:40.893] [INFO] cheese - inserting 1000 documents. first: Altru Health Systems and last: Stanislaw Pestka -[2018-02-13T00:42:40.921] [INFO] cheese - inserting 1000 documents. first: Peter principal and last: Haunted eBay painting -[2018-02-13T00:42:40.932] [INFO] cheese - inserting 1000 documents. first: Drasteria pallescens and last: Gorispolkom -[2018-02-13T00:42:40.950] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:42:40.960] [INFO] cheese - inserting 1000 documents. first: Cameroon at the 2014 Summer Youth Olympics and last: Arlene McQuade -[2018-02-13T00:42:41.014] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:42:41.034] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:42:41.044] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:42:41.110] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:42:41.282] [INFO] cheese - inserting 1000 documents. first: LA Law: The Computer Game and last: File:Porky&daffy.png -[2018-02-13T00:42:41.351] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:42:41.470] [INFO] cheese - inserting 1000 documents. first: Genevieve L. Hutchinson and last: Bilohiria Raion -[2018-02-13T00:42:41.537] [INFO] cheese - inserting 1000 documents. first: Papa Chan and last: Health in Japan -[2018-02-13T00:42:41.536] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:42:41.616] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:42:41.704] [INFO] cheese - inserting 1000 documents. first: File:Siku Ya Bibi.jpg and last: U.S. Senior PGA Championship -[2018-02-13T00:42:41.740] [INFO] cheese - inserting 1000 documents. first: State of Oklahoma and last: Cardiac Surgery -[2018-02-13T00:42:41.749] [INFO] cheese - inserting 1000 documents. first: Category:Mountains of the Carpathians and last: Abscess (band) -[2018-02-13T00:42:41.770] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:42:41.834] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:42:41.842] [INFO] cheese - inserting 1000 documents. first: Wikipedia:HOTHEAD and last: Khua District -[2018-02-13T00:42:41.879] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:42:41.927] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:42:41.997] [INFO] cheese - inserting 1000 documents. first: Raiispolkom and last: Puya humilis -[2018-02-13T00:42:42.063] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BREATHER and last: Category:Canadian insolvency case law -[2018-02-13T00:42:42.118] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T00:42:42.156] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:42.238] [INFO] cheese - inserting 1000 documents. first: St. James Church (Santee, South Carolina) and last: Environment of Thailand -[2018-02-13T00:42:42.306] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:42.374] [INFO] cheese - inserting 1000 documents. first: Flanders news and last: Flowers in the Attic (TV movie) -[2018-02-13T00:42:42.475] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:42.486] [INFO] cheese - inserting 1000 documents. first: LMBCS-2 and last: United States Senate election in New York, 2022 -[2018-02-13T00:42:42.492] [INFO] cheese - inserting 1000 documents. first: Salomé (film) and last: Category:Brechin City F.C. players -[2018-02-13T00:42:42.604] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:42:42.625] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:42:42.707] [INFO] cheese - inserting 1000 documents. first: Category:1999 health disasters and last: CCR5delta32 -[2018-02-13T00:42:42.760] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of second-generation human rights and last: Philadelphia Convention of 1787 -[2018-02-13T00:42:42.765] [INFO] cheese - inserting 1000 documents. first: Rich Clarkson and last: Category:Melrose Place (2009 TV series) characters -[2018-02-13T00:42:42.781] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:42:42.838] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T00:42:42.852] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:42:42.931] [INFO] cheese - inserting 1000 documents. first: Federal Route 345 and last: Template:Commercial air travel -[2018-02-13T00:42:43.056] [INFO] cheese - inserting 1000 documents. first: Kim Jong-Kyu and last: File:Geneforge 5 Logo.gif -[2018-02-13T00:42:43.063] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:42:43.141] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:42:43.149] [INFO] cheese - inserting 1000 documents. first: Limpet mines and last: The Staple -[2018-02-13T00:42:43.261] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:43.400] [INFO] cheese - inserting 1000 documents. first: Randy Bullock and last: File:Logo-CGIAR-Water,Land and Ecosystems.jpg -[2018-02-13T00:42:43.475] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:43.484] [INFO] cheese - inserting 1000 documents. first: United States Senate election in North Carolina, 2022 and last: Template:UEFA Euro 2016 qualification (3rd place) -[2018-02-13T00:42:43.485] [INFO] cheese - inserting 1000 documents. first: File:Dljcover.gif and last: Mihailovca -[2018-02-13T00:42:43.542] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:43.593] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:42:43.700] [INFO] cheese - inserting 1000 documents. first: Template:Caparica and last: St. Mary's site -[2018-02-13T00:42:43.760] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:42:43.789] [INFO] cheese - inserting 1000 documents. first: R'dam and last: Template:Music of Korea -[2018-02-13T00:42:43.858] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:42:43.861] [INFO] cheese - inserting 1000 documents. first: Canabis and last: List of Missouri Highways -[2018-02-13T00:42:43.867] [INFO] cheese - inserting 1000 documents. first: Safer Alternative for Enjoyable Recreation and last: Associação de Jovens da Fonte do Bastardo -[2018-02-13T00:42:43.950] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T00:42:43.957] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:42:43.989] [INFO] cheese - inserting 1000 documents. first: Everything Tastes Better with Bacon: 70 Fabulous Recipes for Every Meal of the Day and last: Cathedral Parkway–110th Street (IRT Broadway – Seventh Avenue Line) -[2018-02-13T00:42:44.007] [INFO] cheese - inserting 1000 documents. first: McCoy Park and last: Catholic youth associations of French Algeria -[2018-02-13T00:42:44.081] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:44.143] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:42:44.159] [INFO] cheese - inserting 1000 documents. first: Mahlo operation and last: Spase To Hrono -[2018-02-13T00:42:44.262] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:42:44.384] [INFO] cheese - inserting 1000 documents. first: Brittany Hargest Shum and last: Jessica Harrison -[2018-02-13T00:42:44.436] [INFO] cheese - inserting 1000 documents. first: Socialist Appeal (International Marxist Tendency journal) and last: Template:National Initiative for Administration and Change in Syria/meta/shortname -[2018-02-13T00:42:44.445] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:42:44.497] [INFO] cheese - inserting 1000 documents. first: Kandahar Bilingual Rock Inscription and last: Linz chronology -[2018-02-13T00:42:44.538] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:42:44.562] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:42:44.566] [INFO] cheese - inserting 1000 documents. first: Graphic driver and last: Mercury Music Prize -[2018-02-13T00:42:44.613] [INFO] cheese - inserting 1000 documents. first: Detian – Ban Gioc Falls and last: Wichitas -[2018-02-13T00:42:44.638] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:42:44.647] [INFO] cheese - inserting 1000 documents. first: Hermenegildo Capelo and last: Diseqc -[2018-02-13T00:42:44.675] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:42:44.780] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:42:44.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/One Media Player per Teacher and last: Victor Oreskovich -[2018-02-13T00:42:45.035] [INFO] cheese - inserting 1000 documents. first: Jimi language (Cameroon) and last: Category:1324 in Europe -[2018-02-13T00:42:45.068] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:42:45.091] [INFO] cheese - inserting 1000 documents. first: Best Bits (television) and last: Category:Recurring sporting events established in 1850 -[2018-02-13T00:42:45.120] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:42:45.302] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:42:45.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kevin J. Mello and last: Wikipedia:WikiProject Spam/LinkReports/wohnungsmarkt-nuernberg.de -[2018-02-13T00:42:45.428] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eagle-leipzig.de and last: Beeline Heliport -[2018-02-13T00:42:45.472] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:42:45.497] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:42:45.522] [INFO] cheese - inserting 1000 documents. first: List of extraterrestrial volcanoes and last: HIV-1 Rev -[2018-02-13T00:42:45.619] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:42:45.733] [INFO] cheese - inserting 1000 documents. first: Copenhagenisation and last: Tenants-in-common -[2018-02-13T00:42:45.749] [INFO] cheese - inserting 1000 documents. first: President Mugabe and last: Wikipedia:WikiProject Lebanon/Assessment/Assessment log -[2018-02-13T00:42:45.798] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:42:45.825] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:45.863] [INFO] cheese - inserting 1000 documents. first: Kings of Osraige and last: Seigneurial system -[2018-02-13T00:42:45.905] [INFO] cheese - inserting 1000 documents. first: Portal:Cretaceous/Natural world articles/76 and last: ⤋ -[2018-02-13T00:42:45.965] [INFO] cheese - batch complete in: 1.185 secs -[2018-02-13T00:42:45.972] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:46.026] [INFO] cheese - inserting 1000 documents. first: Gordon Dixon and last: Category:Schools in Hill County, Montana -[2018-02-13T00:42:46.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/prowrestlingreviews.wixsite.com and last: Veena Poovu (poem) -[2018-02-13T00:42:46.101] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:42:46.145] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:42:46.270] [INFO] cheese - inserting 1000 documents. first: Malcolm Jennings Rogers and last: Shinab -[2018-02-13T00:42:46.272] [INFO] cheese - inserting 1000 documents. first: Luossajärvi and last: Textiled -[2018-02-13T00:42:46.327] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:42:46.332] [INFO] cheese - inserting 1000 documents. first: National Route 356 and last: Square drill bit -[2018-02-13T00:42:46.334] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:46.404] [INFO] cheese - inserting 1000 documents. first: ⤊ and last: I'm Gonna Get You -[2018-02-13T00:42:46.426] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:42:46.442] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:42:46.472] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/NazariyKaminski and last: Category:Regular Show images -[2018-02-13T00:42:46.528] [INFO] cheese - inserting 1000 documents. first: Mead's milkweed and last: The Houston Progressive Voice -[2018-02-13T00:42:46.530] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:42:46.589] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:42:46.614] [INFO] cheese - inserting 1000 documents. first: Williston Lake and last: Uthagamandalam -[2018-02-13T00:42:46.694] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:42:46.781] [INFO] cheese - inserting 1000 documents. first: AIPF and last: Shuey Ping-ſin -[2018-02-13T00:42:46.799] [INFO] cheese - inserting 1000 documents. first: Yaguarón (Paraguay) and last: 1992 Men's Champions Trophy (field hockey) -[2018-02-13T00:42:46.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/delist/File:Passchendaele aerial view.jpg and last: MW (film) -[2018-02-13T00:42:46.823] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:42:46.867] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:42:46.883] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:42:46.885] [INFO] cheese - inserting 1000 documents. first: Calder Park Thunderdome and last: WWE Women's Championship Tournament -[2018-02-13T00:42:46.957] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:42:46.967] [INFO] cheese - inserting 1000 documents. first: 我是处女座 and last: Sankt Annæ Plads 1-3 -[2018-02-13T00:42:47.027] [INFO] cheese - inserting 1000 documents. first: Yellow Brick Road (Eminem song) and last: File:Botswana Teachers medals.gif -[2018-02-13T00:42:47.029] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:42:47.106] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:42:47.277] [INFO] cheese - inserting 1000 documents. first: Joan Baez: Classics and last: Abdolkarim Mousavi-Ardabili -[2018-02-13T00:42:47.292] [INFO] cheese - inserting 1000 documents. first: Would You Buy A Used War From This Man? and last: Category:1420s in the Mamluk Sultanate (Cairo) -[2018-02-13T00:42:47.311] [INFO] cheese - inserting 1000 documents. first: File:Doin' the Thing.jpg and last: Wikipedia:WikiProject Spam/LinkReports/wiki.greytip.in -[2018-02-13T00:42:47.364] [INFO] cheese - inserting 1000 documents. first: Category:South American Olympic medalist stubs and last: Wikipedia:Articles for deletion/Barbie and the Diamond Castle -[2018-02-13T00:42:47.385] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:47.396] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:42:47.435] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:42:47.463] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:42:47.529] [INFO] cheese - inserting 1000 documents. first: Devotion (novel) and last: Keithia leaf blight -[2018-02-13T00:42:47.557] [INFO] cheese - inserting 1000 documents. first: Krum (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/eroschevauxpassion.com -[2018-02-13T00:42:47.578] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:42:47.620] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:42:47.752] [INFO] cheese - inserting 1000 documents. first: Category:Foreign relations of Tanzania and last: Mayan Children -[2018-02-13T00:42:47.844] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:42:47.924] [INFO] cheese - inserting 1000 documents. first: File:Manqabat-e-Qari Muslehuddin.jpg and last: 2003–04 Stoke City F.C. season -[2018-02-13T00:42:47.976] [INFO] cheese - inserting 1000 documents. first: Category:1420 in the Mamluk Sultanate (Cairo) and last: Generali Ladies Linz -[2018-02-13T00:42:47.981] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:42:47.995] [INFO] cheese - inserting 1000 documents. first: Category:1739 in Austria and last: UFC 92 -[2018-02-13T00:42:48.000] [INFO] cheese - inserting 1000 documents. first: Category:People from Gran, Norway and last: 4th Infantry Regiment (Imperial Japanese Army) -[2018-02-13T00:42:48.080] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:42:48.095] [INFO] cheese - inserting 1000 documents. first: Ginsburg, Boris Naumovich and last: Heinrich von Kettenbach -[2018-02-13T00:42:48.098] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:48.133] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:48.155] [INFO] cheese - inserting 1000 documents. first: Ja'far ibn Abu Talib and last: Algesiras -[2018-02-13T00:42:48.214] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:48.301] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:42:48.631] [INFO] cheese - inserting 1000 documents. first: List of places in Idaho/K and last: Lemsford Road Halt railway station -[2018-02-13T00:42:48.634] [INFO] cheese - inserting 1000 documents. first: Andwells Brewery and last: R56 (KwaZulu-Natal) -[2018-02-13T00:42:48.657] [INFO] cheese - inserting 1000 documents. first: Coco's Lunch and last: Ancha (star) -[2018-02-13T00:42:48.773] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by My Chemical Romance and last: Category:Görele District -[2018-02-13T00:42:48.778] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:42:48.785] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:42:48.791] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T00:42:48.808] [INFO] cheese - inserting 1000 documents. first: Wilhelm Gause and last: File:One After 909.ogg -[2018-02-13T00:42:48.876] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:42:48.907] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:42:49.033] [INFO] cheese - inserting 1000 documents. first: Municipal seat and last: 1973 Buffalo Bills season -[2018-02-13T00:42:49.135] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:42:49.369] [INFO] cheese - inserting 1000 documents. first: White-Cheeked Sparrow Lark and last: Aleksandar Nikitović -[2018-02-13T00:42:49.414] [INFO] cheese - inserting 1000 documents. first: Kahuna Nui and last: Chateau Pedesclaux -[2018-02-13T00:42:49.432] [INFO] cheese - inserting 1000 documents. first: Whanau Ora and last: Harlan Daily Enterprise -[2018-02-13T00:42:49.439] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:42:49.516] [INFO] cheese - inserting 1000 documents. first: Jimmachi Station and last: Stalden -[2018-02-13T00:42:49.519] [INFO] cheese - inserting 1000 documents. first: Category:Ladybug Mecca albums and last: Category:Basketball in New York City -[2018-02-13T00:42:49.524] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T00:42:49.538] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:42:49.640] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:42:49.655] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:42:49.727] [INFO] cheese - inserting 1000 documents. first: Riccardo Berardino and last: João Santos -[2018-02-13T00:42:49.801] [INFO] cheese - inserting 1000 documents. first: File:ROBERT COHEN CLOSE UP.jpg and last: John Hawley Edwards -[2018-02-13T00:42:49.823] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:42:49.887] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:42:50.081] [INFO] cheese - inserting 1000 documents. first: Alphense Zwem Club and last: Westwood Inn Classic -[2018-02-13T00:42:50.135] [INFO] cheese - inserting 1000 documents. first: ClimateAudit.org and last: File:Faith, Fraud & Minimum Wage.jpg -[2018-02-13T00:42:50.146] [INFO] cheese - inserting 1000 documents. first: Kabalo Territory and last: Category:Racing drivers who committed suicide -[2018-02-13T00:42:50.154] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:50.190] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:50.256] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:42:50.268] [INFO] cheese - inserting 1000 documents. first: File:Squircle circle square.png and last: File:Lifterpullerlifterpuller.jpg -[2018-02-13T00:42:50.318] [INFO] cheese - inserting 1000 documents. first: Mughal painting and last: Nuevo Laredo International Airport -[2018-02-13T00:42:50.341] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:42:50.390] [INFO] cheese - inserting 1000 documents. first: File:BCCBlogo.jpg and last: File:Cello Again.jpg -[2018-02-13T00:42:50.394] [INFO] cheese - inserting 1000 documents. first: ACS Amman and last: Crazy Rain and Boredom -[2018-02-13T00:42:50.440] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:42:50.442] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:42:50.457] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:50.736] [INFO] cheese - inserting 1000 documents. first: Red-Backed Lark and last: Uranus Opal -[2018-02-13T00:42:50.740] [INFO] cheese - inserting 1000 documents. first: Category:Racing drivers killed while racing and last: Bartolus Saxoferratus -[2018-02-13T00:42:50.749] [INFO] cheese - inserting 1000 documents. first: Mumbadevi (Vidhan Sabha constituency) and last: File:Bright Eyes - There Is No Beginning to the Story.jpg -[2018-02-13T00:42:50.795] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:42:50.802] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:50.813] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:42:51.048] [INFO] cheese - inserting 1000 documents. first: File:Yellow Park.jpg and last: New York Mets/Managers and ownership -[2018-02-13T00:42:51.113] [INFO] cheese - inserting 1000 documents. first: Heathfield Community School and last: Fazekas Mihály -[2018-02-13T00:42:51.187] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:42:51.189] [INFO] cheese - inserting 1000 documents. first: Sadhna(1958 film) and last: Gino M. Santos -[2018-02-13T00:42:51.240] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:42:51.304] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:42:51.382] [INFO] cheese - inserting 1000 documents. first: Guilford Country Store and last: Reinland, Manitoba -[2018-02-13T00:42:51.421] [INFO] cheese - inserting 1000 documents. first: Shielded twisted pair and last: Safflower Princess -[2018-02-13T00:42:51.469] [INFO] cheese - inserting 1000 documents. first: Stan Williams (Australian footballer) and last: Johnny "Yard Dog" Jones -[2018-02-13T00:42:51.487] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:42:51.501] [INFO] cheese - inserting 1000 documents. first: Category:D-Block Records members and last: Hamhung naengmyeon -[2018-02-13T00:42:51.517] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:51.538] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T00:42:51.606] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:42:51.880] [INFO] cheese - inserting 1000 documents. first: Category:Amarillo Venom players and last: City Hall (Columbia, Missouri) -[2018-02-13T00:42:51.881] [INFO] cheese - inserting 1000 documents. first: Congressional district of Sulu and last: 3 for One -[2018-02-13T00:42:51.938] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:51.979] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:42:51.999] [INFO] cheese - inserting 1000 documents. first: 2017 Varsity Shield and last: Draft:James Turner (YouTube Personality) -[2018-02-13T00:42:52.020] [INFO] cheese - inserting 1000 documents. first: Conteville, Seine-Maritime and last: Gabino Rodíguuez Rodríguez -[2018-02-13T00:42:52.086] [INFO] cheese - inserting 1000 documents. first: Gene Huff and last: Category:Washington Senators -[2018-02-13T00:42:52.103] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:42:52.131] [INFO] cheese - inserting 1000 documents. first: Steve Gammon and last: Order of Danilo of Montenegro -[2018-02-13T00:42:52.120] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:42:52.222] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:42:52.242] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:52.349] [INFO] cheese - inserting 1000 documents. first: Viridius and last: Al-Tijaniyya -[2018-02-13T00:42:52.444] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:42:52.536] [INFO] cheese - inserting 1000 documents. first: Das and last: Christmas Island, Kiribati -[2018-02-13T00:42:52.575] [INFO] cheese - inserting 1000 documents. first: Daniel Vila and last: Nefelibata -[2018-02-13T00:42:52.606] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:42:52.641] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:42:52.703] [INFO] cheese - inserting 1000 documents. first: Robbie Martin (journalist) and last: Twisted sheaf -[2018-02-13T00:42:52.804] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:42:52.938] [INFO] cheese - inserting 1000 documents. first: Template:User Alpha Tau Omega and last: Drawing room play -[2018-02-13T00:42:52.956] [INFO] cheese - inserting 1000 documents. first: El Jinete sin cabeza and last: Symphony, GA 55 (Mozart) -[2018-02-13T00:42:52.995] [INFO] cheese - inserting 1000 documents. first: The Joy Girl and last: Mythimna olivata -[2018-02-13T00:42:53.060] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:42:53.103] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:42:53.109] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:42:53.315] [INFO] cheese - inserting 1000 documents. first: Plagiopholis and last: List of Telemundo Telenovelas -[2018-02-13T00:42:53.369] [INFO] cheese - inserting 1000 documents. first: The artwoods and last: Woundale -[2018-02-13T00:42:53.379] [INFO] cheese - inserting 1000 documents. first: File:Dainese logo.png and last: Division of Moore -[2018-02-13T00:42:53.380] [INFO] cheese - inserting 1000 documents. first: Subh (sultana) and last: Jubilee Book of Cricket -[2018-02-13T00:42:53.392] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:53.516] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:42:53.532] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:42:53.537] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:42:53.705] [INFO] cheese - inserting 1000 documents. first: Symphony, GA 56 (Mozart) and last: Rule of three (programming) -[2018-02-13T00:42:53.756] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:42:53.807] [INFO] cheese - inserting 1000 documents. first: Fargues-sur-Ourbise and last: Romney Township, Ontario -[2018-02-13T00:42:53.863] [INFO] cheese - inserting 1000 documents. first: Aelfgith the Younger and last: Category:1791 in economics -[2018-02-13T00:42:53.865] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:42:53.952] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:42:53.959] [INFO] cheese - inserting 1000 documents. first: Robotic space exploration and last: Corixid -[2018-02-13T00:42:54.091] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:42:54.132] [INFO] cheese - inserting 1000 documents. first: RAN Bicalutamide and last: Category:Home inspection -[2018-02-13T00:42:54.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michael oneill and last: Himalayan bank -[2018-02-13T00:42:54.247] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:54.287] [INFO] cheese - inserting 1000 documents. first: Leroy Satchel Paige Legacy Award and last: Stealing the Language: The Emergence of Women's Poetry in America -[2018-02-13T00:42:54.306] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:42:54.389] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:42:54.409] [INFO] cheese - inserting 1000 documents. first: North Central Florida and last: Zhdanov (place) -[2018-02-13T00:42:54.482] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:42:54.525] [INFO] cheese - inserting 1000 documents. first: Tilbury East Township, Ontario and last: Molissa Fenley -[2018-02-13T00:42:54.577] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:42:54.602] [INFO] cheese - inserting 1000 documents. first: 3NOW and last: Unrestricted Warfare (book) -[2018-02-13T00:42:54.653] [INFO] cheese - inserting 1000 documents. first: Category:1790 in economics and last: Saint-Rosaire, Quebec -[2018-02-13T00:42:54.672] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:42:54.702] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:42:54.713] [INFO] cheese - inserting 1000 documents. first: Adna Ferrin Weber and last: Category:914 establishments in Europe -[2018-02-13T00:42:54.760] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:42:54.770] [INFO] cheese - inserting 1000 documents. first: Tetsuro Tanba and last: Catholic Channel -[2018-02-13T00:42:54.838] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:42:54.876] [INFO] cheese - inserting 1000 documents. first: Durfee symbol and last: Valley Point, Alberta -[2018-02-13T00:42:54.956] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:42:55.061] [INFO] cheese - inserting 1000 documents. first: File:Lwcks.jpg and last: National Trails Road -[2018-02-13T00:42:55.097] [INFO] cheese - inserting 1000 documents. first: John Cowan Hartford and last: 汉武帝 -[2018-02-13T00:42:55.123] [INFO] cheese - inserting 1000 documents. first: Supersecondary structure and last: Lord Anson -[2018-02-13T00:42:55.147] [INFO] cheese - inserting 1000 documents. first: Category:1661 establishments in Taiwan and last: Editing and Gender on Wikipedia -[2018-02-13T00:42:55.154] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:42:55.178] [INFO] cheese - inserting 1000 documents. first: Category:910 establishments in Europe and last: Draft:Skippa da Flippa -[2018-02-13T00:42:55.182] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:42:55.200] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:42:55.228] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:42:55.232] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:42:55.389] [INFO] cheese - inserting 1000 documents. first: Verden Place, Alberta and last: Wikipedia:WikiProject East Asia/Mongolia work group -[2018-02-13T00:42:55.390] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-09-25 and last: Frank Leslie Cross -[2018-02-13T00:42:55.462] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:42:55.508] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:42:55.697] [INFO] cheese - inserting 1000 documents. first: Category:Jan Oort and last: Kaya Alp -[2018-02-13T00:42:55.706] [INFO] cheese - inserting 1000 documents. first: Giany Joinville and last: Category:Images for cleanup without reasons -[2018-02-13T00:42:55.737] [INFO] cheese - inserting 1000 documents. first: United Kingdom Census 2021 and last: Florida Coast-to-Coast Trail -[2018-02-13T00:42:55.751] [INFO] cheese - inserting 1000 documents. first: Fairview Township, Holt County, Nebraska and last: Vontae Davis -[2018-02-13T00:42:55.762] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:42:55.777] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:42:55.812] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:42:55.864] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:42:56.043] [INFO] cheese - inserting 1000 documents. first: SV Grün-Weiß Lübben and last: Qart-Hadshat -[2018-02-13T00:42:56.070] [INFO] cheese - inserting 1000 documents. first: Corticotropin-like intermediate peptide and last: Category:Upcoming games -[2018-02-13T00:42:56.105] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:42:56.121] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:42:56.207] [INFO] cheese - inserting 1000 documents. first: Template:Southeastern Conference Football Player of the Year navbox and last: Category:1978 events by month -[2018-02-13T00:42:56.257] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:42:56.276] [INFO] cheese - inserting 1000 documents. first: Saint-Côme, Quebec and last: Star Wars Obi-Wan -[2018-02-13T00:42:56.278] [INFO] cheese - inserting 1000 documents. first: CUFOS and last: Laurence Rees -[2018-02-13T00:42:56.334] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:42:56.339] [INFO] cheese - inserting 1000 documents. first: Florida Coast-to-Coast Connector bicycle trail and last: Wikipedia:Main Page history/2014 May 1 -[2018-02-13T00:42:56.357] [INFO] cheese - inserting 1000 documents. first: Edwin R. Denney and last: Pieta Michelangelo -[2018-02-13T00:42:56.379] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T00:42:56.395] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:56.430] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:42:56.588] [INFO] cheese - inserting 1000 documents. first: SC Serbian White Eagles Toronto and last: File:A BluePrint of the world album cover (Wikipedia).jpg -[2018-02-13T00:42:56.641] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:42:56.645] [INFO] cheese - inserting 1000 documents. first: Bingham Canyon Mine and last: Portal:Slovakia/box-footer -[2018-02-13T00:42:56.695] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:42:56.706] [INFO] cheese - inserting 463 documents. first: Wikipedia:African Collaboration of the Fortnight and last: Gender reassignment -[2018-02-13T00:42:56.712] [INFO] cheese - inserting 1000 documents. first: The City of Failing Light and last: Wild Field (disambiguation) -[2018-02-13T00:42:56.731] [INFO] cheese - inserting 1000 documents. first: Dusky Sallow and last: Trench excavator -[2018-02-13T00:42:56.746] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:42:56.746] [INFO] cheese - worker pid:56521 is done. inserted 1178464 pages in 0 secs. -[2018-02-13T00:42:56.758] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:42:56.801] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:42:56.860] [INFO] cheese - inserting 1000 documents. first: Soulé and last: The South Goes North -[2018-02-13T00:42:56.865] [INFO] cheese - inserting 1000 documents. first: Fahim Hashimy and last: Comuni of the Province of Pescara -[2018-02-13T00:42:56.916] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:42:56.935] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:42:57.133] [INFO] cheese - inserting 1000 documents. first: File:A Good Year.jpg and last: Electoral results for the district of Currumbin -[2018-02-13T00:42:57.218] [INFO] cheese - inserting 1000 documents. first: Jim Carlen and last: Stop That Noise -[2018-02-13T00:42:57.240] [INFO] cheese - inserting 1000 documents. first: Category:961 establishments in Asia and last: Shole-zard -[2018-02-13T00:42:57.291] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:42:57.336] [INFO] cheese - inserting 1000 documents. first: Transition frequency and last: Hook mate -[2018-02-13T00:42:57.358] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:57.358] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:42:57.401] [INFO] cheese - inserting 1000 documents. first: Comuni of the Province of Piacenza and last: Ouran High School -[2018-02-13T00:42:57.457] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:42:57.495] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:57.592] [INFO] cheese - inserting 1000 documents. first: Hair stick and last: Wikipedia:WikiProject Military history/Logistics -[2018-02-13T00:42:57.668] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:42:57.743] [INFO] cheese - inserting 1000 documents. first: Sigurður Ólafsson (swimmer) and last: 100 Days of Slaughter -[2018-02-13T00:42:57.814] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:42:57.912] [INFO] cheese - inserting 1000 documents. first: Home Tutor Hitman REBORN! and last: File:Thomasstewartsinger.jpg -[2018-02-13T00:42:57.938] [INFO] cheese - inserting 1000 documents. first: Michael Booth and last: Antonio Socci -[2018-02-13T00:42:57.951] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:42:57.985] [INFO] cheese - inserting 1000 documents. first: Category:FC Steaua București templates and last: Living nativity -[2018-02-13T00:42:57.996] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:42:58.064] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:42:58.115] [INFO] cheese - inserting 1000 documents. first: Erskine, Walter and last: Jaysh al-Halab -[2018-02-13T00:42:58.119] [INFO] cheese - inserting 1000 documents. first: Template:Comic Yuri Hime and last: Tri Martolod -[2018-02-13T00:42:58.147] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:42:58.148] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Saga Prefecture and last: Stuttgart Exhibition Center -[2018-02-13T00:42:58.176] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:42:58.206] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:42:58.367] [INFO] cheese - inserting 1000 documents. first: Template:Kannada Nadu Party/meta/color and last: The Last Song -[2018-02-13T00:42:58.419] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:42:58.507] [INFO] cheese - inserting 1000 documents. first: იოსებ ბესარიონის ძე ჯუღაშვილი and last: Melita obtusata -[2018-02-13T00:42:58.552] [INFO] cheese - inserting 1000 documents. first: Stuttgart Messe and last: Bernard Wright -[2018-02-13T00:42:58.562] [INFO] cheese - inserting 1000 documents. first: Tunas Bangsa School and last: Itapeva State Park -[2018-02-13T00:42:58.576] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:58.588] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:42:58.611] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:42:58.677] [INFO] cheese - inserting 1000 documents. first: Ahmad ibn Farighun and last: Dexithea humeralis -[2018-02-13T00:42:58.721] [INFO] cheese - inserting 1000 documents. first: Quotient (group theory) and last: Wikipedia:WikiProject New York State -[2018-02-13T00:42:58.737] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:42:58.754] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:42:58.805] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Lockyer and last: Museum of Polish Arms -[2018-02-13T00:42:59.003] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:42:59.049] [INFO] cheese - inserting 1000 documents. first: Rhaetian Railway Ge 6/6 I and last: Kiev in Miniature -[2018-02-13T00:42:59.130] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:42:59.185] [INFO] cheese - inserting 1000 documents. first: Aed Roin and last: Wikipedia:WikiProject Spam/LinkReports/aes.iupui.edu -[2018-02-13T00:42:59.292] [INFO] cheese - inserting 1000 documents. first: Category:1965–66 Middle Atlantic Conferences men's basketball season and last: Wikipedia:Articles for deletion/Eli Eli -[2018-02-13T00:42:59.307] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:42:59.380] [INFO] cheese - inserting 1000 documents. first: Dexithea klugii and last: Gilbert Collett (philatelist) -[2018-02-13T00:42:59.429] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:42:59.522] [INFO] cheese - inserting 1000 documents. first: Template:All India Majlis-E-Ittehadul Muslimeen/meta/color and last: Didier van Damme -[2018-02-13T00:42:59.545] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:42:59.670] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:42:59.763] [INFO] cheese - inserting 1000 documents. first: Klostergårdens IP and last: The Lone Wolf in Paris -[2018-02-13T00:42:59.810] [INFO] cheese - inserting 1000 documents. first: Park of miniatures and last: Template:Move-multi/doc -[2018-02-13T00:42:59.863] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:42:59.960] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:43:00.083] [INFO] cheese - inserting 1000 documents. first: Category:November 2013 events and last: New Zealand National Party leadership election, 1940 -[2018-02-13T00:43:00.095] [INFO] cheese - inserting 1000 documents. first: Thomas Foley (auditor of the imprests) and last: Walter (bishop) -[2018-02-13T00:43:00.179] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:43:00.220] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:43:00.409] [INFO] cheese - inserting 1000 documents. first: Roma Open and last: A. J. Reed -[2018-02-13T00:43:00.447] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:43:00.472] [INFO] cheese - inserting 1000 documents. first: Jolly Jack and last: Category:Anglo-Burmese wars -[2018-02-13T00:43:00.526] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:43:00.535] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand National Party leadership elections and last: File:First B Sc Graduate From Barbhitha Village Main Uddin.jpg -[2018-02-13T00:43:00.580] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:43:00.615] [INFO] cheese - inserting 1000 documents. first: Complete inner product space and last: Wikipedia:Today's featured article/January 12, 2010 -[2018-02-13T00:43:00.650] [INFO] cheese - inserting 1000 documents. first: ∀ Gundam I: Earth Light and last: Principality of Lübeck -[2018-02-13T00:43:00.665] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:43:00.699] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:00.702] [INFO] cheese - inserting 1000 documents. first: Template:St. Catharines municipal election, 2000/Position/Mayor and last: Wikipedia:Deletion log/January 2003 -[2018-02-13T00:43:00.803] [INFO] cheese - batch complete in: 1.133 secs -[2018-02-13T00:43:00.923] [INFO] cheese - inserting 1000 documents. first: Template:EM-DAT and last: A fire -[2018-02-13T00:43:00.951] [INFO] cheese - inserting 1000 documents. first: List of cities in Germany starting with K and last: Susanna (given name) -[2018-02-13T00:43:00.991] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:01.020] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:43:01.033] [INFO] cheese - inserting 1000 documents. first: Clyzomedus borneensis and last: Bauxite waste -[2018-02-13T00:43:01.087] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:43:01.095] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/JobsBroadway.com and last: State Road 395 -[2018-02-13T00:43:01.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/January 13, 2010 and last: Olga Moskalenko-Rocheva -[2018-02-13T00:43:01.158] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:43:01.160] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:43:01.367] [INFO] cheese - inserting 1000 documents. first: File:Kate Bush - Wow.png and last: Mesosa blairi -[2018-02-13T00:43:01.498] [INFO] cheese - inserting 1000 documents. first: Resmi Ahmed Efendi and last: Category:Wikipedia sockpuppets of PowerSane -[2018-02-13T00:43:01.535] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:43:01.560] [INFO] cheese - inserting 1000 documents. first: The hospital and last: Doctor Dolittle Meets a Londoner in Paris -[2018-02-13T00:43:01.643] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:43:01.647] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:43:01.744] [INFO] cheese - inserting 1000 documents. first: Wilhelm Wessel and last: File:Hana-Bi.JPG -[2018-02-13T00:43:01.771] [INFO] cheese - inserting 1000 documents. first: SR 395 and last: SF '58: The Year's Greatest Science Fiction and Fantasy -[2018-02-13T00:43:01.835] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:43:01.876] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:02.152] [INFO] cheese - inserting 1000 documents. first: Robert G. Flanders Jr. and last: Hunter Greene (disambiguation) -[2018-02-13T00:43:02.164] [INFO] cheese - inserting 1000 documents. first: Category:Masaryk University alumni and last: Wikipedia:Articles for deletion/How to Boil a Frog -[2018-02-13T00:43:02.179] [INFO] cheese - inserting 1000 documents. first: Karen Steurs and last: Category:1960 elections in New Zealand -[2018-02-13T00:43:02.198] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:43:02.209] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:43:02.247] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:43:02.263] [INFO] cheese - inserting 1000 documents. first: Surphanakha and last: New zealand maoris rugby league team -[2018-02-13T00:43:02.299] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:43:02.347] [INFO] cheese - inserting 1000 documents. first: Dretelj and last: Land Record -[2018-02-13T00:43:02.400] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:43:02.492] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion log/January 2004 and last: Stirling, Western Australia -[2018-02-13T00:43:02.562] [INFO] cheese - inserting 1000 documents. first: Ghati Subramanya and last: Meditation from Thaïs -[2018-02-13T00:43:02.612] [INFO] cheese - batch complete in: 1.809 secs -[2018-02-13T00:43:02.616] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:43:02.641] [INFO] cheese - inserting 1000 documents. first: Category:1963 elections in New Zealand and last: Antero Lumme -[2018-02-13T00:43:02.676] [INFO] cheese - inserting 1000 documents. first: Chang and Ang and last: History of submarine -[2018-02-13T00:43:02.708] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:43:02.765] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:43:02.914] [INFO] cheese - inserting 1000 documents. first: Bliss Wind Farm and last: SR 516 (WA) -[2018-02-13T00:43:03.011] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:43:03.046] [INFO] cheese - inserting 1000 documents. first: Zelota bryanti and last: File:Wilson Audio logo.png -[2018-02-13T00:43:03.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SOPA initiative/Questions and last: Victor Amadeus of Sicily -[2018-02-13T00:43:03.106] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:43:03.240] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:43:03.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/athema.co.uk and last: 2014 Supercoppa Italiana -[2018-02-13T00:43:03.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/StephenPaternoster/Archive and last: 张国梁 -[2018-02-13T00:43:03.432] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:43:03.500] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:43:03.503] [INFO] cheese - inserting 1000 documents. first: SR 527 (WA) and last: Template:Miner County, South Dakota -[2018-02-13T00:43:03.584] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:43:03.690] [INFO] cheese - inserting 1000 documents. first: Category:Midlake albums and last: Wikipedia:Articles for deletion/Sheep Tag (second nomination) -[2018-02-13T00:43:03.745] [INFO] cheese - inserting 1000 documents. first: Peter Pan (novel and play) and last: Bhagvad Gita ban in Russia -[2018-02-13T00:43:03.759] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:43:03.848] [INFO] cheese - inserting 1000 documents. first: Microsoft Teams and last: 1 Armoured Cavalry Squadron -[2018-02-13T00:43:03.872] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:03.924] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:43:04.049] [INFO] cheese - inserting 1000 documents. first: Tuzun (amir al-umara) and last: Portal:Current events/2014 May 7 -[2018-02-13T00:43:04.058] [INFO] cheese - inserting 1000 documents. first: Love and Consequences: A Memoir of Hope and Survival and last: "Illyrian" type helmet -[2018-02-13T00:43:04.113] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:43:04.127] [INFO] cheese - inserting 1000 documents. first: Madras Presidency Legislative Council election, 1930 and last: Climate Research (journal) -[2018-02-13T00:43:04.140] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:43:04.273] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:43:04.331] [INFO] cheese - inserting 1000 documents. first: Andre Cailloux and last: Wikipedia:Introduction 3/Header -[2018-02-13T00:43:04.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/MikroKopter and last: Eugene Carroll -[2018-02-13T00:43:04.392] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:43:04.453] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:43:04.558] [INFO] cheese - inserting 1000 documents. first: Howard G. Swafford and last: Mahaboob Alam -[2018-02-13T00:43:04.576] [INFO] cheese - inserting 1000 documents. first: First Armoured Cavalry Squadron and last: Nyctimenius mamutensis -[2018-02-13T00:43:04.602] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:43:04.649] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:43:04.663] [INFO] cheese - inserting 1000 documents. first: Hello, Little Girl and last: Wikipedia:Articles for deletion/Jamie Anne Allman -[2018-02-13T00:43:04.728] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:43:04.928] [INFO] cheese - inserting 1000 documents. first: Kazma Sakamoto and last: File:TortolaPanoramaJost.JPG -[2018-02-13T00:43:04.935] [INFO] cheese - inserting 1000 documents. first: Ed Taubensee and last: File:Goshawk dove2.JPG -[2018-02-13T00:43:04.970] [INFO] cheese - inserting 1000 documents. first: Mount Pleasant, York Regional Municipality, Ontario and last: Wikipedia:Articles for deletion/4th and 2 -[2018-02-13T00:43:04.990] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:43:04.998] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:43:05.010] [INFO] cheese - inserting 1000 documents. first: Nyctimenius ochraceovittatus and last: Qinghai Tianyoude–BH Cycling Team -[2018-02-13T00:43:05.037] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:43:05.106] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:43:05.194] [INFO] cheese - inserting 1000 documents. first: File:Exploration rover nasa mars.jpg and last: File:Doe and fawns July 2006.jpg -[2018-02-13T00:43:05.245] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:43:05.277] [INFO] cheese - inserting 1000 documents. first: Mexican—Japanese Lyceum and last: Black-fronted Flowerpecker -[2018-02-13T00:43:05.355] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:43:05.508] [INFO] cheese - inserting 1000 documents. first: List of Albanian language poets and last: Category:Telecommunications in Lebanon -[2018-02-13T00:43:05.569] [INFO] cheese - inserting 1000 documents. first: Hindu Raj and last: Category:Collections of the Villa Giulia -[2018-02-13T00:43:05.583] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:43:05.630] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:43:05.675] [INFO] cheese - inserting 1000 documents. first: Autorité de contrôle prudentiel and last: Module:Sandbox/Yurik -[2018-02-13T00:43:05.724] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:43:05.775] [INFO] cheese - inserting 1000 documents. first: Wikipedia:HU and last: Category:Sports in Dallas -[2018-02-13T00:43:05.844] [INFO] cheese - inserting 1000 documents. first: Black-tailed Treecreeper and last: Eburia postica -[2018-02-13T00:43:05.844] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:43:05.909] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:43:06.008] [INFO] cheese - inserting 1000 documents. first: Ranunculus pensylvanicus and last: Yelli, Güdül -[2018-02-13T00:43:06.062] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:06.089] [INFO] cheese - inserting 1000 documents. first: Inniskilling Fusiliers and last: The Very Best of Cher DVD Edition -[2018-02-13T00:43:06.170] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:43:06.212] [INFO] cheese - inserting 1000 documents. first: Anaj Tegin and last: Draft:Dagmar Stelberg -[2018-02-13T00:43:06.325] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:43:06.352] [INFO] cheese - inserting 1000 documents. first: Category:Iraqi-Turkish relations and last: Wikipedia:Miscellany for deletion/User:Therese Dvir -[2018-02-13T00:43:06.418] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:43:06.476] [INFO] cheese - inserting 1000 documents. first: Eburia powelli and last: Tom Bailey (cricketer) -[2018-02-13T00:43:06.528] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:43:06.593] [INFO] cheese - inserting 1000 documents. first: Unsellables episode list and last: Emmalocera icasmopis -[2018-02-13T00:43:06.620] [INFO] cheese - inserting 1000 documents. first: Yolo, California and last: Altayskoe -[2018-02-13T00:43:06.653] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:43:06.714] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:06.872] [INFO] cheese - inserting 1000 documents. first: Ammoflight and last: Ildikó Tóth (actress) -[2018-02-13T00:43:06.939] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:43:07.023] [INFO] cheese - inserting 1000 documents. first: Diocese of Copiapó and last: Nhat Le River -[2018-02-13T00:43:07.110] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jarosław Leitgeber and last: Wikipedia:Sockpuppet investigations/Puntjuuu!.! -[2018-02-13T00:43:07.118] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Edwin S. Porter and last: Category:Parks in Simcoe County -[2018-02-13T00:43:07.137] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:43:07.176] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:43:07.182] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:43:07.326] [INFO] cheese - inserting 1000 documents. first: Altaiskoye and last: OUTNOW (ON magazine) -[2018-02-13T00:43:07.355] [INFO] cheese - inserting 1000 documents. first: Fabio Rovazzi and last: Lorenzo Moore (MP for Dungannon) -[2018-02-13T00:43:07.410] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:43:07.405] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:43:07.563] [INFO] cheese - inserting 1000 documents. first: Pale-eyed Thrush and last: Speak to Me Pretty -[2018-02-13T00:43:07.660] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:43:07.684] [INFO] cheese - inserting 1000 documents. first: Muscovite Civil War (1425-1453) and last: Yining (city) -[2018-02-13T00:43:07.685] [INFO] cheese - inserting 1000 documents. first: Honda just and last: Errol Hill -[2018-02-13T00:43:07.738] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:43:07.762] [INFO] cheese - inserting 1000 documents. first: Elton Vata and last: Category:314 establishments in Europe -[2018-02-13T00:43:07.764] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:43:07.889] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:07.976] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Oklahoma articles and last: Massachusetts route 43 -[2018-02-13T00:43:08.026] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:43:08.298] [INFO] cheese - inserting 1000 documents. first: El Alamein (film) and last: Category:Law enforcement in Metro Manila -[2018-02-13T00:43:08.305] [INFO] cheese - inserting 1000 documents. first: North Moor, Missouri and last: Category:Films based on Romanian novels -[2018-02-13T00:43:08.351] [INFO] cheese - inserting 1000 documents. first: Severe depression and last: Age and intelligence -[2018-02-13T00:43:08.370] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:43:08.380] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:43:08.429] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:43:08.492] [INFO] cheese - inserting 1000 documents. first: Category:Islands of the dependencies of Guadeloupe and last: Qabila Qarshe -[2018-02-13T00:43:08.564] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:43:08.602] [INFO] cheese - inserting 1000 documents. first: Alexander de Waal and last: Wikipedia:Articles for deletion/List of record producers -[2018-02-13T00:43:08.664] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:43:08.748] [INFO] cheese - inserting 1000 documents. first: Template:1989-90 NBA Central standings and last: Template:User Colorado College/doc -[2018-02-13T00:43:08.748] [INFO] cheese - inserting 1000 documents. first: Draft:Medical Problem List and last: William J. Simmons (disambiguation) -[2018-02-13T00:43:08.800] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:43:08.804] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:43:08.894] [INFO] cheese - inserting 1000 documents. first: Sergei Krasnikov and last: Template:WikiProject Human Rights -[2018-02-13T00:43:08.934] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:43:08.962] [INFO] cheese - inserting 1000 documents. first: This Is The Life and last: Massachusetts route 112 -[2018-02-13T00:43:08.980] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mary Mother of Peace Area Catholic School and last: Lajos Szűcs (disambiguation) -[2018-02-13T00:43:08.994] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:43:09.049] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:43:09.066] [INFO] cheese - inserting 1000 documents. first: Category:Hergé characters and last: Konidela production company -[2018-02-13T00:43:09.103] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:43:09.205] [INFO] cheese - inserting 1000 documents. first: Ohio State Route 75 and last: State Route 43 (Arkansas) -[2018-02-13T00:43:09.239] [INFO] cheese - inserting 1000 documents. first: Austrian State Prize for European Literature and last: Glen Cressman -[2018-02-13T00:43:09.246] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:43:09.259] [INFO] cheese - inserting 1000 documents. first: 2/1st Derbyshire Yeomanry and last: File:Maanikya audio cover.jpg -[2018-02-13T00:43:09.264] [INFO] cheese - inserting 1000 documents. first: Neuronal encoding of sound and last: Lester Shubin -[2018-02-13T00:43:09.271] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:43:09.322] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:43:09.406] [INFO] cheese - batch complete in: 4.369 secs -[2018-02-13T00:43:09.462] [INFO] cheese - inserting 1000 documents. first: Ashville-class gunboat (1917) and last: Category:Chichester City F.C. (1873) players -[2018-02-13T00:43:09.493] [INFO] cheese - inserting 1000 documents. first: Shaykhís and last: Missouri route 30 -[2018-02-13T00:43:09.512] [INFO] cheese - inserting 1000 documents. first: File:Circuitikz.png and last: File:DeduceYouSay Lobby Card.png -[2018-02-13T00:43:09.555] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:43:09.607] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:43:09.681] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:43:09.917] [INFO] cheese - inserting 1000 documents. first: The Taking of Pelham One Two Three and last: 1995 Japan Open Tennis Championships -[2018-02-13T00:43:09.994] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:43:10.040] [INFO] cheese - inserting 1000 documents. first: Fabien Noel and last: Sonora Horned Lark -[2018-02-13T00:43:10.043] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thermostat Fallacy and last: OpenLinux Lite 1.0 -[2018-02-13T00:43:10.044] [INFO] cheese - inserting 1000 documents. first: Missouri highway 30 and last: State highway 84 (Missouri) -[2018-02-13T00:43:10.094] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:43:10.094] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:43:10.123] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:43:10.230] [INFO] cheese - inserting 1000 documents. first: 86 Wing (disambiguation) and last: Tea bowl (disambiguation) -[2018-02-13T00:43:10.292] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:43:10.504] [INFO] cheese - inserting 1000 documents. first: State Route 84 (Missouri) and last: Route 127 (Missouri) -[2018-02-13T00:43:10.535] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:43:10.653] [INFO] cheese - inserting 1000 documents. first: Muncy School District and last: Fer Falgae -[2018-02-13T00:43:10.688] [INFO] cheese - inserting 1000 documents. first: Ted Clayton and last: 2016 World Wrestling Championships - Women's freestyle 60 kg -[2018-02-13T00:43:10.745] [INFO] cheese - inserting 1000 documents. first: Temple of Monthu (disambiguation) and last: Башҡортостан -[2018-02-13T00:43:10.757] [INFO] cheese - inserting 1000 documents. first: Red Shirt Table and last: Category:1304 in Europe -[2018-02-13T00:43:10.762] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:43:10.772] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:43:10.846] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:43:10.871] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:43:10.893] [INFO] cheese - inserting 1000 documents. first: Blue John stone and last: Kathleen Fidler -[2018-02-13T00:43:11.005] [INFO] cheese - inserting 1000 documents. first: Highway 127 (Missouri) and last: State Highway 157 (Missouri) -[2018-02-13T00:43:11.006] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:43:11.108] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:43:11.281] [INFO] cheese - inserting 1000 documents. first: County Calendar and last: Red lentils -[2018-02-13T00:43:11.298] [INFO] cheese - inserting 1000 documents. first: 1903-04 Penn State Nittany Lions basketball team and last: Subramanya Temple, Munnar -[2018-02-13T00:43:11.329] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:43:11.340] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:43:11.342] [INFO] cheese - inserting 1000 documents. first: Saving Abel (2006 album) and last: Category:1312 in France -[2018-02-13T00:43:11.398] [INFO] cheese - inserting 1000 documents. first: State highway 157 (Missouri) and last: File:Louise Fitzhugh.jpg -[2018-02-13T00:43:11.425] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:43:11.433] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:43:11.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/alma.edu and last: Category:Mechanical reproductions of original works in need of additional detail -[2018-02-13T00:43:11.546] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:43:11.560] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Ettercamp and last: Template:1968 UCLA basketball -[2018-02-13T00:43:11.633] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:43:11.659] [INFO] cheese - inserting 1000 documents. first: P. J. Brophy and last: Bavarian Concordat (1817) -[2018-02-13T00:43:11.689] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:43:11.718] [INFO] cheese - inserting 1000 documents. first: Congressional District of Zamboanga City and last: Highway 371 (MO) -[2018-02-13T00:43:11.755] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:43:11.797] [INFO] cheese - inserting 1000 documents. first: MV Empire Fusilier and last: Svanevatn -[2018-02-13T00:43:11.863] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:43:11.899] [INFO] cheese - inserting 1000 documents. first: Per Klingenberg Hestetun and last: File:High speed railway map 3.jpg -[2018-02-13T00:43:11.966] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:43:12.009] [INFO] cheese - inserting 1000 documents. first: MCL Mapúa Institute of Technology at Laguna and last: Szoke Sakall -[2018-02-13T00:43:12.042] [INFO] cheese - inserting 1000 documents. first: George Robert Lewis and last: Géza Bereményi -[2018-02-13T00:43:12.070] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:43:12.089] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:43:12.107] [INFO] cheese - inserting 1000 documents. first: Route 371 (Missouri) and last: Labour Protection League -[2018-02-13T00:43:12.159] [INFO] cheese - inserting 1000 documents. first: The City of a Thousand Delights and last: Category:People from Los Altos Hills, California -[2018-02-13T00:43:12.200] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:43:12.214] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:43:12.619] [INFO] cheese - inserting 1000 documents. first: Rockford, Ontario and last: George Campbell Ross -[2018-02-13T00:43:12.631] [INFO] cheese - inserting 1000 documents. first: Kraut Line and last: Luxury Briefing -[2018-02-13T00:43:12.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Difulton and last: Wikipedia:Articles for deletion/Don Bryant (politician) -[2018-02-13T00:43:12.669] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:43:12.679] [INFO] cheese - inserting 1000 documents. first: Dicynodon jouberti and last: Category:People from Nome, Norway -[2018-02-13T00:43:12.716] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:43:12.781] [INFO] cheese - inserting 1000 documents. first: Algal cultures and last: Missouri route 65 (decommissioned) -[2018-02-13T00:43:12.779] [INFO] cheese - inserting 1000 documents. first: Category:Pages using infobox French communauté with unknown parameters and last: Robert Heath (engineer) -[2018-02-13T00:43:12.791] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:43:12.832] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:43:12.873] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:43:12.922] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:43:13.217] [INFO] cheese - inserting 1000 documents. first: Haathi Parbat and last: Lada-Energia Ulyanovsk -[2018-02-13T00:43:13.239] [INFO] cheese - inserting 1000 documents. first: Missouri highway 65 (decommissioned) and last: Ruslan Bodelan -[2018-02-13T00:43:13.271] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:43:13.295] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:43:13.393] [INFO] cheese - inserting 1000 documents. first: Reformed Church, Uileacu Șimleului and last: 1990 ABN World Tennis Tournament -[2018-02-13T00:43:13.429] [INFO] cheese - inserting 1000 documents. first: Category:Recurring sporting events disestablished in 1972 and last: Category:Sportspeople from Piedimonte Matese -[2018-02-13T00:43:13.430] [INFO] cheese - inserting 1000 documents. first: Randell Johnson and last: Great Lakes boreal wolf -[2018-02-13T00:43:13.446] [INFO] cheese - inserting 1000 documents. first: Great Thatch ruin and last: Sheung Shui Slaughter House -[2018-02-13T00:43:13.463] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:13.508] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:43:13.521] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:43:13.557] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:43:13.857] [INFO] cheese - inserting 1000 documents. first: Portal:Disaster and last: State Route 463 (Arkansas) -[2018-02-13T00:43:13.870] [INFO] cheese - inserting 1000 documents. first: FC Lada-Energiya-2 Dimitrovgrad and last: Portal:University of Oxford/Selected quotation/10 -[2018-02-13T00:43:13.921] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:13.945] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:14.017] [INFO] cheese - inserting 1000 documents. first: ActivityStreams and last: RMA color code -[2018-02-13T00:43:14.033] [INFO] cheese - inserting 1000 documents. first: Universal Soldier: A New Dimension (2012) and last: Template:VillanovaBasketballSeasons -[2018-02-13T00:43:14.046] [INFO] cheese - inserting 1000 documents. first: Yayasan Senang Hati and last: Miroslav Krleza Lexicographic Institute -[2018-02-13T00:43:14.109] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:43:14.126] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:43:14.143] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:43:14.191] [INFO] cheese - inserting 1000 documents. first: File:Tonaton-logo.svg and last: Category:Female wheelchair racers -[2018-02-13T00:43:14.261] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:43:14.399] [INFO] cheese - inserting 1000 documents. first: First United Methodist Church of Umatilla) and last: Pat denner -[2018-02-13T00:43:14.454] [INFO] cheese - inserting 1000 documents. first: Sonrais and last: Portal:Greater Los Angeles/Selected article -[2018-02-13T00:43:14.508] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:43:14.521] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:43:14.597] [INFO] cheese - inserting 1000 documents. first: RMA colour code and last: File:Sharda (1981 film).jpg -[2018-02-13T00:43:14.656] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:43:14.760] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Yellala Falls and last: PRR BB3 -[2018-02-13T00:43:14.775] [INFO] cheese - inserting 1000 documents. first: Sofia de Grecia y Hannover and last: Toguz-Bulak, Alay -[2018-02-13T00:43:14.818] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:43:14.833] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:43:14.913] [INFO] cheese - inserting 1000 documents. first: Limnoecia amblopa and last: Ithome pernigrella -[2018-02-13T00:43:14.999] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:43:15.055] [INFO] cheese - inserting 1000 documents. first: Solar eclipse of September 2, 2035 and last: George M. Kober medal -[2018-02-13T00:43:15.148] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:43:15.245] [INFO] cheese - inserting 1000 documents. first: State Route 119 (Alabama) and last: Harley-Davidson Twin Cam engine -[2018-02-13T00:43:15.271] [INFO] cheese - inserting 1000 documents. first: Category:Consulting firms established in 1956 and last: David Agnew (footballer) -[2018-02-13T00:43:15.373] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:43:15.376] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:43:15.444] [INFO] cheese - inserting 1000 documents. first: Category:Education in Nipissing District and last: 1987 Montana Grizzlies football team -[2018-02-13T00:43:15.510] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:43:15.573] [INFO] cheese - inserting 1000 documents. first: Algeria national rugby union team and last: Paul Duerden -[2018-02-13T00:43:15.746] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:43:15.791] [INFO] cheese - inserting 1000 documents. first: Portal:University of Oxford/Did you know/12 and last: Dirk I van Brederode -[2018-02-13T00:43:15.804] [INFO] cheese - inserting 1000 documents. first: Ithome pignerata and last: Wikipedia:Articles for deletion/Kevin Schaller -[2018-02-13T00:43:15.845] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:43:15.927] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:43:16.030] [INFO] cheese - inserting 1000 documents. first: Portuguese Open and last: List of Aeroflot accidents and incidents in the 1980s -[2018-02-13T00:43:16.095] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:43:16.204] [INFO] cheese - inserting 1000 documents. first: Portal:Indonesia/BOTW/40, 2006 and last: State Route 171 (Virginia pre-1928) -[2018-02-13T00:43:16.275] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:43:16.310] [INFO] cheese - inserting 1000 documents. first: War of the Heavenly Horses and last: 2012 Blossom Cup -[2018-02-13T00:43:16.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/faces.bravehost.com and last: Mitchell Recreation Area -[2018-02-13T00:43:16.331] [INFO] cheese - inserting 1000 documents. first: MCEM 3 Submachine gun and last: JASSS -[2018-02-13T00:43:16.390] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:43:16.394] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:43:16.399] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:43:16.414] [INFO] cheese - inserting 1000 documents. first: Category:October 1947 events and last: Template:Editnotices/Page/Matt Cecchin -[2018-02-13T00:43:16.495] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:43:16.536] [INFO] cheese - inserting 1000 documents. first: Mt. Pulaski, Illinois and last: St. Stephen's Cathedral (Owensboro, Kentucky) -[2018-02-13T00:43:16.596] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:43:16.692] [INFO] cheese - inserting 1000 documents. first: Brezova and last: Serie noire -[2018-02-13T00:43:16.715] [INFO] cheese - inserting 1000 documents. first: Diplazium pycnocarpon and last: Wikipedia:Articles for deletion/Noncommutative polynomial -[2018-02-13T00:43:16.738] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:43:16.740] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:43:16.784] [INFO] cheese - inserting 1000 documents. first: State Route 171 (Virginia 1923) and last: Serbian clan -[2018-02-13T00:43:16.810] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Matt Stevic and last: Category:Events in Sarajevo -[2018-02-13T00:43:16.827] [INFO] cheese - inserting 1000 documents. first: 1957 Montana Grizzlies football team and last: Ocean Butterflies International Pte Ltd -[2018-02-13T00:43:16.829] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:43:16.860] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:43:16.912] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:43:17.097] [INFO] cheese - inserting 1000 documents. first: Convergent boundaries and last: MV Viking Sky -[2018-02-13T00:43:17.135] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:43:17.168] [INFO] cheese - inserting 1000 documents. first: Category:Romanian Catholics and last: Powerising -[2018-02-13T00:43:17.178] [INFO] cheese - inserting 1000 documents. first: Church-governmental separation in America and last: New Orleans Medical College -[2018-02-13T00:43:17.219] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:43:17.223] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:43:17.333] [INFO] cheese - inserting 1000 documents. first: W23EM-D and last: Annette Robertson -[2018-02-13T00:43:17.345] [INFO] cheese - inserting 1000 documents. first: Ferrisburgh and last: Maurice McLoughlin (tennis) -[2018-02-13T00:43:17.361] [INFO] cheese - inserting 1000 documents. first: Greenwood Cemetery (Tallahassee, Florida) and last: UCI World Cyclo-cross Championships, Men -[2018-02-13T00:43:17.391] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:43:17.416] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:43:17.496] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:43:17.756] [INFO] cheese - inserting 1000 documents. first: Haweswater Aquaduct and last: Enaction -[2018-02-13T00:43:17.821] [INFO] cheese - inserting 1000 documents. first: نیزامی گه‌نجه‌وی and last: Arab thought foundation -[2018-02-13T00:43:17.855] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:43:17.914] [INFO] cheese - inserting 1000 documents. first: Powerbocker and last: Category:ABB Asea Brown Boveri -[2018-02-13T00:43:17.937] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:18.054] [INFO] cheese - inserting 1000 documents. first: Gravitational instability theory and last: List of World Transplant Games editions -[2018-02-13T00:43:18.072] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:43:18.190] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:43:18.312] [INFO] cheese - inserting 1000 documents. first: Il conformista and last: List of the Roman Catholic cathedrals of the United States -[2018-02-13T00:43:18.339] [INFO] cheese - inserting 1000 documents. first: File:Warszawa - Pałac Tyszkiewiczów 01.jpg and last: Fu Ping -[2018-02-13T00:43:18.450] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:43:18.487] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T00:43:18.555] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Aviation/Australian aviation task force and last: Soimu River (Crisul Negru) -[2018-02-13T00:43:18.602] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:43:18.675] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Indonesian communist exiles in Tirana and last: Wikipedia:WikiProject Spam/Local/hulkhoganhistory.weebly.com -[2018-02-13T00:43:18.728] [INFO] cheese - inserting 1000 documents. first: Greg Ritter and last: Alder Plains, Nova Scotia -[2018-02-13T00:43:18.745] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:43:18.803] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:43:18.827] [INFO] cheese - inserting 1000 documents. first: Hyundai Unicorns and last: Rene Mauge de Cely -[2018-02-13T00:43:18.847] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:43:18.911] [INFO] cheese - inserting 1000 documents. first: Spanish general election, 1920 and last: Hi de hi -[2018-02-13T00:43:18.913] [INFO] cheese - inserting 1000 documents. first: Huddersfield East (constituency) and last: Ogi, Oita -[2018-02-13T00:43:18.949] [INFO] cheese - inserting 1000 documents. first: Boschertown, Missouri and last: Wikipedia:WikiProject Spam/LinkReports/promotionxprt.com -[2018-02-13T00:43:18.949] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:43:18.967] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:43:19.014] [INFO] cheese - inserting 1000 documents. first: Remi Alvarez and last: Olle Ljungstrom -[2018-02-13T00:43:19.017] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:43:19.059] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:43:19.203] [INFO] cheese - inserting 1000 documents. first: File:Texas State Capitol Summer 2005.jpg and last: Category:Discoveries by Takeshi Urata -[2018-02-13T00:43:19.241] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:43:19.244] [INFO] cheese - inserting 1000 documents. first: Confederation Libre des Travailleurs du Tchad and last: Slovenske vzdusne zbrane -[2018-02-13T00:43:19.266] [INFO] cheese - inserting 1000 documents. first: Labdia caudata and last: Chang T'ang -[2018-02-13T00:43:19.270] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:43:19.295] [INFO] cheese - inserting 1000 documents. first: Rock the American Way and last: Jagers in de Sneeuw -[2018-02-13T00:43:19.333] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:43:19.334] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:43:19.399] [INFO] cheese - inserting 1000 documents. first: Naoiri District, Oita and last: Rikken Kokumintō -[2018-02-13T00:43:19.434] [INFO] cheese - inserting 1000 documents. first: Template:Socialist Party of the Valencian Country (1974)/meta/color and last: Category:March 1893 events -[2018-02-13T00:43:19.457] [INFO] cheese - inserting 1000 documents. first: Torsten Haegerstrand and last: Schoenenberg (Schwarzwald) -[2018-02-13T00:43:19.461] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:43:19.515] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:43:19.528] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:43:19.748] [INFO] cheese - inserting 1000 documents. first: Template:Eagles1984DraftPicks and last: Freedom From Fear: The American People in Depression and War, 1929-1945 -[2018-02-13T00:43:19.825] [INFO] cheese - inserting 1000 documents. first: Necula Raducan and last: Zee Cine Award Best Dialogue -[2018-02-13T00:43:19.827] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:43:19.855] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:43:19.896] [INFO] cheese - inserting 1000 documents. first: 2OCB and last: Alcón -[2018-02-13T00:43:19.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tiger Lily (Rupert) and last: Template:2006 Florida Gators football -[2018-02-13T00:43:19.935] [INFO] cheese - inserting 1000 documents. first: Circumorbital scales and last: Virginia Route 88 -[2018-02-13T00:43:19.971] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:43:20.017] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:43:20.063] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:20.117] [INFO] cheese - inserting 1000 documents. first: Thû and last: List of lesbian, gay, bisexual or transgender-related films of 2017 -[2018-02-13T00:43:20.168] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:43:20.319] [INFO] cheese - inserting 1000 documents. first: Biological Psychiatry (journal) and last: Raeni kuela -[2018-02-13T00:43:20.380] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:43:20.538] [INFO] cheese - inserting 1000 documents. first: D-54 and last: Pied Shield Bug -[2018-02-13T00:43:20.572] [INFO] cheese - inserting 1000 documents. first: Dev.D (2009 film) and last: Book:Motorsport in New Zealand -[2018-02-13T00:43:20.598] [INFO] cheese - inserting 1000 documents. first: Ivana Střondalová and last: Naughty Boy (disambiguation) -[2018-02-13T00:43:20.604] [INFO] cheese - inserting 1000 documents. first: Virginia Route 86 and last: Template:PKNA -[2018-02-13T00:43:20.608] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:43:20.632] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:43:20.701] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:43:20.713] [INFO] cheese - inserting 1000 documents. first: Pekka ja Patka and last: Tuskegee, AL mSA -[2018-02-13T00:43:20.718] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:43:20.771] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:43:20.958] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Pipe Bands articles and last: The Woman's Crusade -[2018-02-13T00:43:21.082] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:43:21.211] [INFO] cheese - inserting 1000 documents. first: Finger tapping (piano) and last: BloodClan -[2018-02-13T00:43:21.230] [INFO] cheese - inserting 1000 documents. first: Draft:List of former Maryland state highways (200–399) and last: Rhys Lewis (disambiguation) -[2018-02-13T00:43:21.233] [INFO] cheese - inserting 1000 documents. first: Hatamabad-e Gol Gol and last: Carl Cederström -[2018-02-13T00:43:21.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Magnificent Desolation and last: Portal:Spaceflight/On This Day/20 March -[2018-02-13T00:43:21.255] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:43:21.265] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:43:21.296] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:43:21.315] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:21.374] [INFO] cheese - inserting 1000 documents. first: Oxygen/Aux Send and last: 3-coloring -[2018-02-13T00:43:21.432] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:21.532] [INFO] cheese - inserting 1000 documents. first: Category:386 establishments by continent and last: Category:New Mexico elections, 1974 -[2018-02-13T00:43:21.584] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:43:21.697] [INFO] cheese - inserting 1000 documents. first: German military administration in occupied Belgium during World War II and last: Gregor Bajde -[2018-02-13T00:43:21.700] [INFO] cheese - inserting 1000 documents. first: Hedwig Von Trapp and last: Extrapolation based molecular systems biology -[2018-02-13T00:43:21.748] [INFO] cheese - inserting 1000 documents. first: Râbniţa sub-district, Transnistria and last: Manjack -[2018-02-13T00:43:21.751] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:43:21.744] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:21.801] [INFO] cheese - inserting 1000 documents. first: Arrondissement de Béziers and last: Coster walk -[2018-02-13T00:43:21.828] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:43:21.895] [INFO] cheese - inserting 1000 documents. first: Kananaskis Lakes and last: Baron Cadogan of Reading -[2018-02-13T00:43:21.901] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:43:21.984] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:43:22.014] [INFO] cheese - inserting 1000 documents. first: Category:Ridges of Europe and last: Jean-Paul LeBlanc (politician) -[2018-02-13T00:43:22.053] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:43:22.221] [INFO] cheese - inserting 1000 documents. first: Anelaphus hirtus and last: Portal:India/India Quiz/14 -[2018-02-13T00:43:22.278] [INFO] cheese - inserting 1000 documents. first: Manjack (plant) and last: 中元 -[2018-02-13T00:43:22.347] [INFO] cheese - inserting 1000 documents. first: File:Mimana psp boxart.jpg and last: Template:FMS Scale small -[2018-02-13T00:43:22.359] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:43:22.498] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:43:22.505] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:43:22.547] [INFO] cheese - inserting 1000 documents. first: Pimp walk and last: Ja'farkhan -[2018-02-13T00:43:22.628] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:22.708] [INFO] cheese - inserting 1000 documents. first: Baron Parker of Macclesfield and last: 2006 united states elections -[2018-02-13T00:43:22.710] [INFO] cheese - inserting 1000 documents. first: Category:Firefighting in Denmark and last: Geklimon -[2018-02-13T00:43:22.774] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:43:22.774] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:43:23.013] [INFO] cheese - inserting 1000 documents. first: Category:Malta-related lists and last: Sweelinck Conservatorium -[2018-02-13T00:43:23.062] [INFO] cheese - inserting 1000 documents. first: Lithodes galapagensis and last: Herbert Brees -[2018-02-13T00:43:23.080] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:43:23.142] [INFO] cheese - inserting 1000 documents. first: Category:People from the County of Vermilion River and last: Edward Dowell -[2018-02-13T00:43:23.143] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Holne Chase Primary School and last: David M. Camp -[2018-02-13T00:43:23.147] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:43:23.202] [INFO] cheese - inserting 1000 documents. first: Category:Brazilian Naval Aviation and last: Sharin no Kuni -[2018-02-13T00:43:23.207] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:43:23.246] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:43:23.279] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:43:23.444] [INFO] cheese - inserting 1000 documents. first: Texas State Highway 348 and last: Action francaise -[2018-02-13T00:43:23.496] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:43:23.513] [INFO] cheese - inserting 1000 documents. first: United states elections 2006 and last: List of tallest structures in Norway -[2018-02-13T00:43:23.625] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:43:23.809] [INFO] cheese - inserting 1000 documents. first: Category:September 1929 events and last: Category:April 1939 events -[2018-02-13T00:43:23.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fengshui.fi and last: Saulnieres -[2018-02-13T00:43:23.896] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:43:23.907] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2011 December 30 and last: Revd Henry Joy Fynes-Clinton -[2018-02-13T00:43:23.913] [INFO] cheese - inserting 1000 documents. first: Species (comics) and last: Wikipedia:Articles for deletion/United Construction Company Inc. -[2018-02-13T00:43:23.940] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 20 Spur (Cartersville) and last: Template:Festival de Gramado Best Director Award -[2018-02-13T00:43:23.950] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:43:24.057] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:43:24.222] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:43:24.262] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T00:43:24.493] [INFO] cheese - inserting 1000 documents. first: Marquise du Plessis-Belliere and last: Birds nest -[2018-02-13T00:43:24.528] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:43:24.620] [INFO] cheese - inserting 1000 documents. first: Ntebogang Secondary School and last: Category:Maratha princely states -[2018-02-13T00:43:24.688] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:43:24.740] [INFO] cheese - inserting 1000 documents. first: Prescription charges and last: Cynthia Kimberlin -[2018-02-13T00:43:24.880] [INFO] cheese - inserting 1000 documents. first: File:Grey Cup 05.svg and last: Category:Preserved steam locomotives of Switzerland -[2018-02-13T00:43:24.945] [INFO] cheese - batch complete in: 1.32 secs -[2018-02-13T00:43:24.987] [INFO] cheese - inserting 1000 documents. first: Hazirim (Candan Ercetin album) and last: Jinmaku Kyugoro -[2018-02-13T00:43:25.003] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T00:43:25.011] [INFO] cheese - inserting 1000 documents. first: File:In the Conservatory - edited.jpg and last: File:Front Cover of Turrican Game Box, May 2014.jpg -[2018-02-13T00:43:25.029] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:43:25.102] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:43:25.359] [INFO] cheese - inserting 1000 documents. first: Template:PBB/10939 and last: Category:Southwest Conference football templates -[2018-02-13T00:43:25.411] [INFO] cheese - inserting 1000 documents. first: Gyergyoremete and last: Tauell -[2018-02-13T00:43:25.420] [INFO] cheese - inserting 1000 documents. first: H:FONTS and last: Mizar (Sabotaggio in mare) -[2018-02-13T00:43:25.472] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:43:25.540] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:43:25.632] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T00:43:25.651] [INFO] cheese - inserting 1000 documents. first: Passive solar gain and last: Wikipedia:Bots/Requests for approval/TawkerbotTorA -[2018-02-13T00:43:25.730] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:43:25.811] [INFO] cheese - inserting 1000 documents. first: Libby Museum and last: Mulla Morad ibn Ali Khan Tafreshi -[2018-02-13T00:43:25.819] [INFO] cheese - inserting 1000 documents. first: 洋務運動 and last: Director General Environment -[2018-02-13T00:43:26.029] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:43:26.030] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T00:43:26.114] [INFO] cheese - inserting 1000 documents. first: Boxer indemnity grant and last: Gilia brecciarum -[2018-02-13T00:43:26.152] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:43:26.251] [INFO] cheese - inserting 1000 documents. first: Catherine Pelham and last: Erebiina -[2018-02-13T00:43:26.391] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:43:26.429] [INFO] cheese - inserting 1000 documents. first: BAT (disambiguation) and last: Category:Architecture databases -[2018-02-13T00:43:26.600] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:43:26.907] [INFO] cheese - inserting 1000 documents. first: Liukung Island and last: Vytautas` the Great Church -[2018-02-13T00:43:26.947] [INFO] cheese - inserting 1000 documents. first: File:Vienna Octet 1962 touring Southern Afrtica.jpg and last: John H. Hays -[2018-02-13T00:43:26.996] [INFO] cheese - inserting 1000 documents. first: Director-General Health and last: Kevin McCabe (Sheffield United) -[2018-02-13T00:43:27.004] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T00:43:27.031] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:43:27.113] [INFO] cheese - inserting 1000 documents. first: List of United States armed forces unit mottoes and last: Category:2017 WNBA season -[2018-02-13T00:43:27.183] [INFO] cheese - inserting 1000 documents. first: Dragan Brnovic and last: Florida Ornithological Society -[2018-02-13T00:43:27.198] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T00:43:27.349] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T00:43:27.384] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T00:43:27.560] [INFO] cheese - inserting 1000 documents. first: Category:House of Leuchtenberg and last: Template:Canadian election result -[2018-02-13T00:43:27.774] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T00:43:27.944] [INFO] cheese - inserting 1000 documents. first: Category:2014 in Northern Cyprus and last: B-FAST -[2018-02-13T00:43:28.017] [INFO] cheese - inserting 1000 documents. first: Mount Heng (Shanxi) and last: List of Hail Mary's in American football -[2018-02-13T00:43:28.079] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T00:43:28.185] [INFO] cheese - inserting 1000 documents. first: Universal Express and last: File:Computeractive issue 263 RGB 150px.jpg -[2018-02-13T00:43:28.185] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T00:43:28.249] [INFO] cheese - inserting 1000 documents. first: Category:Borders of Idaho and last: MA 51 -[2018-02-13T00:43:28.265] [INFO] cheese - inserting 1000 documents. first: Category:Psophodidae and last: File:Tazewell and Peoria Railroad logo.png -[2018-02-13T00:43:28.350] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:43:28.409] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T00:43:28.415] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T00:43:28.555] [INFO] cheese - inserting 1000 documents. first: Template:Subatomic particle/symbol/triple top omega and last: Holy Resurrection Church (Kodiak, Alaska) -[2018-02-13T00:43:28.656] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:43:28.676] [INFO] cheese - inserting 1000 documents. first: Category:Islamic organisations based in Finland and last: Haj eilkhani -[2018-02-13T00:43:28.799] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:43:28.964] [INFO] cheese - inserting 1000 documents. first: Kate (Lost) and last: Victoriano Santos Iriarte -[2018-02-13T00:43:28.972] [INFO] cheese - inserting 1000 documents. first: List of San Francisco topics and last: Lo Hecho Esta Hecho (Shakira song) -[2018-02-13T00:43:28.979] [INFO] cheese - inserting 1000 documents. first: File:Texas Northeastern Railroad logo.png and last: Siege of Saint-Suzanne (1083–1086) -[2018-02-13T00:43:28.991] [INFO] cheese - inserting 1000 documents. first: Alcherus, monk of Clairvaux and last: 1925 Major League Baseball season -[2018-02-13T00:43:29.056] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:43:29.068] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:43:29.080] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:43:29.083] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:43:29.302] [INFO] cheese - inserting 1000 documents. first: Hoax Slayer and last: List of awards named after governors general of Canada -[2018-02-13T00:43:29.433] [INFO] cheese - inserting 1000 documents. first: End Of America 2011 (marketing) and last: Juan Madariaga -[2018-02-13T00:43:29.513] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:29.690] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T00:43:29.742] [INFO] cheese - inserting 1000 documents. first: File:Antique konya turkish 30911.jpg and last: European Short Course Swimming Championships 1998 - Men's 50m Breaststroke -[2018-02-13T00:43:29.874] [INFO] cheese - inserting 1000 documents. first: KFMM and last: Vladimír Palko -[2018-02-13T00:43:29.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Domenic Di Rosa (actor) and last: Category:1226 establishments in Japan -[2018-02-13T00:43:29.950] [INFO] cheese - inserting 1000 documents. first: Ferrari 126C and last: Template (vehicle racing) -[2018-02-13T00:43:30.000] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T00:43:30.001] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:43:30.037] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:43:30.107] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:43:30.536] [INFO] cheese - inserting 1000 documents. first: File:2Cellos In2ition.jpg and last: Belt maker -[2018-02-13T00:43:30.635] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:43:30.717] [INFO] cheese - inserting 1000 documents. first: Category:The Axis of Awesome albums and last: Category:Wikipedia articles in need of updating from January 2012 -[2018-02-13T00:43:30.726] [INFO] cheese - inserting 1000 documents. first: Category:1999 in the Turks and Caicos Islands and last: New Hanover County School District -[2018-02-13T00:43:30.778] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:43:30.801] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:43:30.857] [INFO] cheese - inserting 1000 documents. first: European Short Course Swimming Championships 1998 - Men's 50m Backstroke and last: Wikipedia:Sockpuppet investigations/Canto2009 -[2018-02-13T00:43:30.868] [INFO] cheese - inserting 1000 documents. first: If I Ran The Circus and last: MBFC -[2018-02-13T00:43:30.961] [INFO] cheese - inserting 1000 documents. first: KABI (AM) and last: File:Changes in US money supply 1960-2007.gif -[2018-02-13T00:43:30.969] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:43:30.989] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:43:31.039] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:43:31.144] [INFO] cheese - inserting 1000 documents. first: Belt-maker and last: File:Chopper Read - Interview with a Madman.jpg -[2018-02-13T00:43:31.195] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:43:31.455] [INFO] cheese - inserting 1000 documents. first: Template:Lang-tam and last: Xyelodontophis -[2018-02-13T00:43:31.537] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles needing clarification from January 2012 and last: Bellarine Wetlands Important Bird Area -[2018-02-13T00:43:31.545] [INFO] cheese - inserting 1000 documents. first: Psychic Friends and last: Prairie City, California -[2018-02-13T00:43:31.550] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:43:31.618] [INFO] cheese - inserting 1000 documents. first: Louis Coppersmith and last: Pisote -[2018-02-13T00:43:31.645] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:43:31.651] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:43:31.733] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:43:31.835] [INFO] cheese - inserting 1000 documents. first: Category:Alacalufan languages and last: Portal:Louisville/On this day.../April 11 -[2018-02-13T00:43:31.973] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:43:32.097] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mathematics Collaboration of the Month and last: Template:POTD protected/2014-05-21 -[2018-02-13T00:43:32.190] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T00:43:32.289] [INFO] cheese - inserting 1000 documents. first: 2016 TaxSlayer Bowl (disambiguation) and last: The Music Hole -[2018-02-13T00:43:32.334] [INFO] cheese - inserting 1000 documents. first: Lancaster by-election, 1928 and last: Harold Bull -[2018-02-13T00:43:32.391] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:43:32.451] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:32.461] [INFO] cheese - inserting 1000 documents. first: Iron vest and last: 1961 in Irish television -[2018-02-13T00:43:32.528] [INFO] cheese - inserting 1000 documents. first: Sawback angelshark and last: Seacoast Waldorf School -[2018-02-13T00:43:32.556] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:43:32.600] [INFO] cheese - inserting 1000 documents. first: Alenka Godec and last: Wikipedia:WikiProject U.S. Roads/Washington/Directional signage -[2018-02-13T00:43:32.600] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:43:32.671] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:43:32.717] [INFO] cheese - inserting 1000 documents. first: Malton Airfield and last: Engenius -[2018-02-13T00:43:32.765] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:43:32.830] [INFO] cheese - inserting 1000 documents. first: Category:Paraguayan male fencers and last: File:DYS F.C. Logo.png -[2018-02-13T00:43:32.909] [INFO] cheese - inserting 1000 documents. first: Heartbreaker (disambiguation) and last: File:Setsugekka (Dears).jpg -[2018-02-13T00:43:32.915] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:43:32.971] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:43:33.368] [INFO] cheese - inserting 1000 documents. first: Pierre Maguelon and last: Wikipedia:United States Education Program/Courses/Adolescent Literature Spring 2012 (Adrianne Wadewitz)/Grading -[2018-02-13T00:43:33.403] [INFO] cheese - inserting 1000 documents. first: State Route 838 (Virginia pre-1933) and last: Aeshna isosceles -[2018-02-13T00:43:33.511] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:43:33.635] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:43:33.791] [INFO] cheese - inserting 1000 documents. first: Manila, Arizona and last: File:Bitbucket UI.png -[2018-02-13T00:43:33.801] [INFO] cheese - inserting 1000 documents. first: Iftimia River and last: Template:User html-1 -[2018-02-13T00:43:33.802] [INFO] cheese - inserting 1000 documents. first: List of Southern California transit agencies and last: Treaty Of Portsmouth -[2018-02-13T00:43:33.875] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:43:33.899] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:43:33.946] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T00:43:34.010] [INFO] cheese - inserting 1000 documents. first: Presaddfed and last: Palakol (Assembly constituency) -[2018-02-13T00:43:34.107] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T00:43:34.244] [INFO] cheese - inserting 1000 documents. first: Aeolosaurus rionegrinus and last: Category:A.C. Monopoli -[2018-02-13T00:43:34.274] [INFO] cheese - inserting 1000 documents. first: File:Tithonus x files.jpg and last: East Glacier Park, MT -[2018-02-13T00:43:34.296] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:43:34.339] [INFO] cheese - inserting 1000 documents. first: Template:Carlton AFL Women's current squad and last: Peachy Harrison -[2018-02-13T00:43:34.372] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:43:34.388] [INFO] cheese - inserting 1000 documents. first: Treaty Of San Francisco and last: Iki-Burul'skiy Raion -[2018-02-13T00:43:34.447] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:43:34.483] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:43:34.783] [INFO] cheese - inserting 1000 documents. first: Template:Without Fear Movement/meta/color and last: New Castle, Ohio -[2018-02-13T00:43:34.843] [INFO] cheese - inserting 1000 documents. first: East African Campaign (WWI) and last: John R. Chambliss, Jr. -[2018-02-13T00:43:34.845] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:43:34.849] [INFO] cheese - inserting 1000 documents. first: File:KNUV logo.jpg and last: KyXy -[2018-02-13T00:43:34.882] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:43:34.912] [INFO] cheese - inserting 1000 documents. first: 2017 UCI Cyclo-cross World Championships and last: Bovina Center, New York -[2018-02-13T00:43:34.922] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:43:34.948] [INFO] cheese - inserting 1000 documents. first: D-finite function and last: Battle of the Fields of Cato -[2018-02-13T00:43:34.976] [INFO] cheese - inserting 1000 documents. first: Iki-Burul'ski Raion and last: Princes of Monaco family tree -[2018-02-13T00:43:35.007] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:43:35.074] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:43:35.085] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:35.245] [INFO] cheese - inserting 1000 documents. first: Leon Tomșa and last: Category:2014 Toulon Tournament -[2018-02-13T00:43:35.279] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:43:35.391] [INFO] cheese - inserting 1000 documents. first: Template:Infobox dim/sandbox and last: La Sexta -[2018-02-13T00:43:35.406] [INFO] cheese - inserting 1000 documents. first: Amplitude-comparison monopulse and last: Flashcube -[2018-02-13T00:43:35.437] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:43:35.486] [INFO] cheese - inserting 1000 documents. first: Nakatsuru and last: Asheville Redefines Transit -[2018-02-13T00:43:35.503] [INFO] cheese - inserting 1000 documents. first: 2001 IIHF Asian Oceanic U18 Championship and last: Melamkurkurra -[2018-02-13T00:43:35.507] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:43:35.519] [INFO] cheese - inserting 1000 documents. first: NSB El 1 and last: Winnicummet -[2018-02-13T00:43:35.547] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:43:35.575] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:43:35.599] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:43:35.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sglearntodrive.com and last: Siberian Cypress -[2018-02-13T00:43:35.691] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:43:35.771] [INFO] cheese - inserting 1000 documents. first: Charles A. Robinson Jr. and last: Israeli Ambassador to China -[2018-02-13T00:43:35.806] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:43:35.933] [INFO] cheese - inserting 1000 documents. first: Magicube and last: Willesden West (constituency) -[2018-02-13T00:43:35.995] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:43:36.111] [INFO] cheese - inserting 1000 documents. first: Winicumet and last: Wikipedia:Suspected sock puppets/RaderZer0 -[2018-02-13T00:43:36.143] [INFO] cheese - inserting 1000 documents. first: Trofeo Linea and last: Sergey Ivanov (disambiguation) -[2018-02-13T00:43:36.200] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:43:36.223] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:43:36.262] [INFO] cheese - inserting 1000 documents. first: Only just begun and last: Women in the First World War -[2018-02-13T00:43:36.265] [INFO] cheese - inserting 1000 documents. first: Emanuel Mensdorff-Pouilly and last: Laganski -[2018-02-13T00:43:36.297] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches in Adelaide and last: Sir Oswald Mosley, 2nd Baronet, of Rolleston -[2018-02-13T00:43:36.335] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:43:36.338] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:43:36.396] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:43:36.657] [INFO] cheese - inserting 1000 documents. first: The Use of Ashes and last: Wikipedia:Articles for deletion/Uncle Jimbo -[2018-02-13T00:43:36.751] [INFO] cheese - inserting 1000 documents. first: Pleșa River (Geoagiu) and last: Marco Antonio (footballer) -[2018-02-13T00:43:36.750] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:43:36.824] [INFO] cheese - inserting 1000 documents. first: Category:Hieronymite Order and last: Edgars Erins -[2018-02-13T00:43:36.835] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:43:36.916] [INFO] cheese - inserting 1000 documents. first: Bienvenido “Bones” Banez, Jr. and last: File:Ninotitlecard.jpg -[2018-02-13T00:43:36.919] [INFO] cheese - inserting 1000 documents. first: Laganskii and last: For the Good Times (song) -[2018-02-13T00:43:36.926] [INFO] cheese - inserting 1000 documents. first: Dosunmu and last: Wikipedia:Articles for deletion/Andrew Almanza(Socialite) -[2018-02-13T00:43:36.994] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:43:37.052] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:43:37.033] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:43:37.122] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:43:37.262] [INFO] cheese - inserting 1000 documents. first: Havadan Kuelliyesi and last: File:Qsst.jpg -[2018-02-13T00:43:37.303] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:43:37.518] [INFO] cheese - inserting 1000 documents. first: Georgia State Highway 323 and last: Virginia Route 895 -[2018-02-13T00:43:37.561] [INFO] cheese - inserting 1000 documents. first: Erins and last: John Geree -[2018-02-13T00:43:37.564] [INFO] cheese - inserting 1000 documents. first: Brora Rangers and last: Godfrey Stephens -[2018-02-13T00:43:37.577] [INFO] cheese - inserting 1000 documents. first: Category:Swiss male handball players and last: CPD-lyase -[2018-02-13T00:43:37.578] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:43:37.623] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:43:37.637] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:43:37.669] [INFO] cheese - inserting 1000 documents. first: Zhongguo Dalu and last: Sumru Cortoglu -[2018-02-13T00:43:37.635] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:37.710] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:43:37.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of folk punk bands and last: Men's hockey Canada 2010 olympic team -[2018-02-13T00:43:37.820] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:43:37.971] [INFO] cheese - inserting 1000 documents. first: Fabrizio Angileri and last: Category:October 1975 sports events -[2018-02-13T00:43:37.989] [INFO] cheese - inserting 1000 documents. first: Tapalque Partido and last: Corporacion Nacional del Cobre -[2018-02-13T00:43:38.005] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:43:38.027] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:43:38.055] [INFO] cheese - inserting 1000 documents. first: MBR to VBR interface and last: Barry O'Keefe -[2018-02-13T00:43:38.076] [INFO] cheese - inserting 1000 documents. first: Category:Roller derby in Ireland and last: Cyclone Terry-Danae -[2018-02-13T00:43:38.153] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:43:38.186] [INFO] cheese - inserting 1000 documents. first: VA-895 and last: Lesser housefly -[2018-02-13T00:43:38.237] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:43:38.292] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:38.391] [INFO] cheese - inserting 1000 documents. first: Plesna (Cheb District) and last: Ivan Babic -[2018-02-13T00:43:38.397] [INFO] cheese - inserting 1000 documents. first: Category:1975 sports events by month and last: Zhukov, Yuri -[2018-02-13T00:43:38.442] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:43:38.444] [INFO] cheese - inserting 1000 documents. first: The Drumhead (Star Trek: The Next Generation) and last: Template:Northampton Town F.C. -[2018-02-13T00:43:38.452] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:43:38.632] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:43:38.768] [INFO] cheese - inserting 1000 documents. first: Eugeniya Shelgunova and last: Lim Jong-Chun -[2018-02-13T00:43:38.829] [INFO] cheese - inserting 1000 documents. first: Baena, Cordoba and last: Moenchrot Abbey -[2018-02-13T00:43:38.843] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:43:38.853] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:43:38.951] [INFO] cheese - inserting 1000 documents. first: Portal:American Civil War/American Civil War news/41 and last: Wikipedia:Miscellany for deletion/User:HurricaneCraze32/Hurricane Dolly (1996) -[2018-02-13T00:43:38.968] [INFO] cheese - inserting 1000 documents. first: Charles Bouillaud and last: Pangdatshang Rapga -[2018-02-13T00:43:39.026] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:43:39.044] [INFO] cheese - inserting 1000 documents. first: Portal:Grand Canyon/box-footer and last: Stephanie Alnaber -[2018-02-13T00:43:39.062] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:43:39.153] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:43:39.498] [INFO] cheese - inserting 1000 documents. first: Lue (language) and last: O făclie de Paște -[2018-02-13T00:43:39.550] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:43:39.676] [INFO] cheese - inserting 1000 documents. first: H. bakeri and last: Wanderer Puppchen -[2018-02-13T00:43:39.786] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T00:43:39.838] [INFO] cheese - inserting 1000 documents. first: Vispavarma and last: United States under William McKinley -[2018-02-13T00:43:39.871] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:39.876] [INFO] cheese - inserting 1000 documents. first: Rapga Pandatsang and last: Nijneilimskii District -[2018-02-13T00:43:39.945] [INFO] cheese - inserting 1000 documents. first: Smoothback angelshark and last: Stuart Zagnit -[2018-02-13T00:43:39.943] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:43:40.035] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:43:40.136] [INFO] cheese - inserting 1000 documents. first: Lim Kye-Sook and last: Wikipedia:Articles for deletion/Netguide (disambiguation) -[2018-02-13T00:43:40.168] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Falconina and last: Category:FC Stumbras managers -[2018-02-13T00:43:40.197] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:43:40.198] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T00:43:40.209] [INFO] cheese - inserting 1000 documents. first: DDG-68 and last: Thorold baronets -[2018-02-13T00:43:40.286] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:43:40.415] [INFO] cheese - inserting 1000 documents. first: File:Idhaya Thamarai DVD cover.jpg and last: Wentworth, Durban, KwaZulu-Natal -[2018-02-13T00:43:40.418] [INFO] cheese - inserting 1000 documents. first: Shyla Fox and last: Happily Ever After (2004 film) -[2018-02-13T00:43:40.471] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:43:40.473] [INFO] cheese - inserting 1000 documents. first: Lloyd Smith (chemist) and last: Category:Films set in Saga Prefecture -[2018-02-13T00:43:40.480] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:43:40.483] [INFO] cheese - inserting 1000 documents. first: 1994 VS of Chicago - Singles and last: Baby It's Cold Outside/Baby Please Come Home -[2018-02-13T00:43:40.513] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:43:40.559] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:43:40.605] [INFO] cheese - inserting 1000 documents. first: List of Saga characters and last: Squilla empusa -[2018-02-13T00:43:40.681] [INFO] cheese - inserting 1000 documents. first: Marie Moore and last: Castellanos, Juan de -[2018-02-13T00:43:40.712] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:43:40.829] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:43:40.992] [INFO] cheese - inserting 1000 documents. first: Template:Quail-2-2016 and last: Bedford-Northampton line -[2018-02-13T00:43:41.034] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:43:41.048] [INFO] cheese - inserting 1000 documents. first: Category:Chile–United Kingdom relations and last: File:Acdetroittc.jpg -[2018-02-13T00:43:41.088] [INFO] cheese - inserting 1000 documents. first: File:Layla riff.PNG and last: Boris Elkis -[2018-02-13T00:43:41.130] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Archdiocese of Thanh-Pho Ho Chi Minh and last: Aindreas -[2018-02-13T00:43:41.166] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:43:41.188] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:43:41.194] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:43:41.312] [INFO] cheese - inserting 1000 documents. first: Yemişçi Hasan Pasha and last: A Dictionary of Christian Biography, Literature, Sects and Doctrines -[2018-02-13T00:43:41.425] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:43:41.623] [INFO] cheese - inserting 1000 documents. first: Vittangi and last: Koklax -[2018-02-13T00:43:41.649] [INFO] cheese - inserting 1000 documents. first: Limnognathiidae and last: Arena Maipú -[2018-02-13T00:43:41.659] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:43:41.704] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:43:41.755] [INFO] cheese - inserting 1000 documents. first: Template:Energy production/doc and last: Aviation Electronics -[2018-02-13T00:43:41.779] [INFO] cheese - inserting 1000 documents. first: Frau Stahlbaum and last: Wikipedia:WikiProject Spam/Local/marexspectron.com -[2018-02-13T00:43:41.819] [INFO] cheese - inserting 1000 documents. first: File:WestSide ToshikoMarianoQuartet.jpg and last: Norden Farm Centre for the Arts -[2018-02-13T00:43:41.825] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:43:41.830] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T00:43:41.892] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:43:41.893] [INFO] cheese - inserting 1000 documents. first: Tipula nubeculosa and last: There Must Be More to Love Than This -[2018-02-13T00:43:41.970] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:43:41.981] [INFO] cheese - inserting 1000 documents. first: Huntsville massacre and last: Mount Wai`ale`ale -[2018-02-13T00:43:42.031] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:43:42.226] [INFO] cheese - inserting 1000 documents. first: Fox–Wright function and last: Category:Equestrian at the 2000 Summer Olympics -[2018-02-13T00:43:42.231] [INFO] cheese - inserting 1000 documents. first: Category:Episcopal churches in the United Kingdom and last: Category:1871 establishments in South Africa -[2018-02-13T00:43:42.266] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:43:42.277] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:43:42.315] [INFO] cheese - inserting 1000 documents. first: Gursu and last: Splugen -[2018-02-13T00:43:42.343] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:43:42.377] [INFO] cheese - inserting 1000 documents. first: Vanuatu scrubfowl and last: Jungle Bush Quail -[2018-02-13T00:43:42.393] [INFO] cheese - inserting 1000 documents. first: Wearily and last: Ed Nicholson -[2018-02-13T00:43:42.437] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:43:42.450] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:43:42.469] [INFO] cheese - inserting 1000 documents. first: Bare Island and last: Pokémon Collectible Card Game -[2018-02-13T00:43:42.542] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:43:42.561] [INFO] cheese - inserting 1000 documents. first: J. P. Farrell and last: Lapta Turk Birligi S.K. -[2018-02-13T00:43:42.581] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:43:42.609] [INFO] cheese - inserting 1000 documents. first: Holy Trinity Church (Washington, D.C.) and last: Cubs-Mets rivalry -[2018-02-13T00:43:42.694] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:43:42.855] [INFO] cheese - inserting 1000 documents. first: List of copy protection schemes and last: Wikipedia:Articles for deletion/Elizabethtown Christian Academy -[2018-02-13T00:43:42.910] [INFO] cheese - inserting 1000 documents. first: Harvinder "Harry" Anand and last: Gistain, Huesca -[2018-02-13T00:43:42.943] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:43:42.963] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:43:43.059] [INFO] cheese - inserting 1000 documents. first: Harrisburg-York-Lebanon, PA Combined Statistical Area and last: Lee Su-Hwan (footballer) -[2018-02-13T00:43:43.064] [INFO] cheese - inserting 1000 documents. first: Custody (Law & Order) and last: Wikipedia:WikiProject Spam/LinkReports/lasinfoniedorphee.com -[2018-02-13T00:43:43.251] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:43:43.254] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:43:43.276] [INFO] cheese - inserting 1000 documents. first: Category:Earth observation satellites of Japan and last: Cytestrol acetate -[2018-02-13T00:43:43.353] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:43:43.356] [INFO] cheese - inserting 1000 documents. first: Winton Turnbull and last: Yuzaki Station -[2018-02-13T00:43:43.393] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:43:43.556] [INFO] cheese - inserting 1000 documents. first: Ockrilla and last: Charles Beigbeder -[2018-02-13T00:43:43.587] [INFO] cheese - inserting 1000 documents. first: File:Austere cover.jpg and last: SRVUSD -[2018-02-13T00:43:43.664] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:43:43.683] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T00:43:43.783] [INFO] cheese - inserting 1000 documents. first: Andre Obami-Itou and last: Category:Economy of El Paso, Texas -[2018-02-13T00:43:43.822] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:43:43.828] [INFO] cheese - inserting 1000 documents. first: Onyaanya Constituency and last: Frank Verpillat -[2018-02-13T00:43:43.887] [INFO] cheese - inserting 1000 documents. first: Word Is Out (Kylie Minogue song) and last: Category:March 1855 events -[2018-02-13T00:43:43.955] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:43:44.021] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:43:44.094] [INFO] cheese - inserting 1000 documents. first: Charlotte Moore (disambiguation) and last: Francavilla Fontana railway station -[2018-02-13T00:43:44.164] [INFO] cheese - inserting 1000 documents. first: Karadordevic and last: Military District of Odenburg -[2018-02-13T00:43:44.170] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:43:44.213] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:43:44.367] [INFO] cheese - inserting 1000 documents. first: Beris vallata and last: NRG (rock band) -[2018-02-13T00:43:44.435] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:43:44.471] [INFO] cheese - inserting 1000 documents. first: Category:March 1854 events and last: Jan Van Dyke -[2018-02-13T00:43:44.511] [INFO] cheese - inserting 1000 documents. first: Alexander De Croo and last: Clairton-Glassport Bridge -[2018-02-13T00:43:44.519] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:43:44.556] [INFO] cheese - inserting 1000 documents. first: Imperfecta-Imperfect and last: Ship Black Warrior -[2018-02-13T00:43:44.565] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:43:44.607] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T00:43:44.718] [INFO] cheese - inserting 1000 documents. first: Natarajan Pandiyan and last: Poonam Mahajan Rao -[2018-02-13T00:43:44.741] [INFO] cheese - inserting 1000 documents. first: El Puerto de Santa Maria, Spain and last: Civil unions in England -[2018-02-13T00:43:44.794] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:43:44.813] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:43:44.917] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Everton and last: Minut (angle) -[2018-02-13T00:43:44.971] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:43:44.980] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2016 December 22 and last: Category:2002 in Tuvaluan football -[2018-02-13T00:43:45.015] [INFO] cheese - inserting 1000 documents. first: Aleksei Trinitatsky and last: File:Frank Mazzei picture.png -[2018-02-13T00:43:45.058] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:43:45.094] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:43:45.104] [INFO] cheese - inserting 1000 documents. first: Diego de Almágro and last: Kid Flash (Bart Allen) -[2018-02-13T00:43:45.125] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1980 Summer Olympics – Women's 100 metre backstroke and last: File:Bulletin of the center for childrens books.gif -[2018-02-13T00:43:45.169] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:43:45.169] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:43:45.232] [INFO] cheese - inserting 1000 documents. first: Silver Bear (disambiguation) and last: File:Dicossato.jpg -[2018-02-13T00:43:45.281] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:43:45.378] [INFO] cheese - inserting 1000 documents. first: Late Gravettian and last: Royal Bengal Rahashya (disambiguation) -[2018-02-13T00:43:45.491] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:43:45.519] [INFO] cheese - inserting 1000 documents. first: Gunsche and last: Smilovice (Frydek-Mistek District) -[2018-02-13T00:43:45.554] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:43:45.690] [INFO] cheese - inserting 1000 documents. first: File:Charles Rood Keeran.png and last: Vladislav Kadyrov -[2018-02-13T00:43:45.932] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:43:46.032] [INFO] cheese - inserting 1000 documents. first: Robert Barnard and last: Metzengerstein -[2018-02-13T00:43:46.180] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:43:46.217] [INFO] cheese - inserting 1000 documents. first: Argyrotaenia rufina and last: I. K. Gujral Ministry -[2018-02-13T00:43:46.347] [INFO] cheese - inserting 1000 documents. first: Royal Bodyguard (disambiguation) and last: US Ambassador to Malaysia -[2018-02-13T00:43:46.354] [INFO] cheese - inserting 1000 documents. first: Komancza and last: Chiscas, Boyaca -[2018-02-13T00:43:46.370] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T00:43:46.413] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:43:46.452] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T00:43:46.690] [INFO] cheese - inserting 1000 documents. first: Vladislav Qədirov and last: Bullneck Road -[2018-02-13T00:43:46.760] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:43:46.803] [INFO] cheese - inserting 1000 documents. first: Testosterone dipropanoate and last: Sexlessness -[2018-02-13T00:43:46.839] [INFO] cheese - inserting 1000 documents. first: Wartsila-Sulzer 14RTFLEX96-C and last: David Luckwell -[2018-02-13T00:43:46.883] [INFO] cheese - batch complete in: 1.825 secs -[2018-02-13T00:43:46.902] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:43:46.944] [INFO] cheese - inserting 1000 documents. first: Break the Spell Tour and last: Category:Window manufacturers -[2018-02-13T00:43:46.997] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:43:46.999] [INFO] cheese - inserting 1000 documents. first: Second Atal Bihari Vajpayee Ministry and last: Chrysoprasis para -[2018-02-13T00:43:47.070] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:43:47.192] [INFO] cheese - inserting 1000 documents. first: USS Cape Johnson and last: Eid Al-Adha -[2018-02-13T00:43:47.239] [INFO] cheese - inserting 1000 documents. first: Chris Morley and last: Template:Hayden -[2018-02-13T00:43:47.262] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T00:43:47.284] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:43:47.318] [INFO] cheese - inserting 1000 documents. first: Saskatoon Police Department and last: Template:Japan-artistic-gymnastics-bio-stub -[2018-02-13T00:43:47.410] [INFO] cheese - inserting 1000 documents. first: Simon and Martina Stawski and last: Human rights reports on 2011-2012 Bahriani uprising -[2018-02-13T00:43:47.408] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:43:47.526] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:43:47.771] [INFO] cheese - inserting 1000 documents. first: Chrysoprasis tendira and last: Template:Workers' Party of Belgium/meta/color -[2018-02-13T00:43:47.775] [INFO] cheese - inserting 1000 documents. first: Inverted vee antenna and last: Pavel Reznicek -[2018-02-13T00:43:47.819] [INFO] cheese - inserting 1000 documents. first: Alison Lapper Pregnant and last: Lamelekh seal -[2018-02-13T00:43:47.825] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:43:47.883] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:43:47.945] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:43:48.153] [INFO] cheese - inserting 1000 documents. first: File:Tokyo Nodosan.jpg and last: Сергеи Уасыл-иҧа Багаҧшь -[2018-02-13T00:43:48.242] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:43:48.269] [INFO] cheese - inserting 1000 documents. first: File:Jury at California State Fair.jpeg and last: Birectified Dodecahedron -[2018-02-13T00:43:48.282] [INFO] cheese - inserting 1000 documents. first: 1998 Goodwill Games and last: New River lagoon -[2018-02-13T00:43:48.327] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:43:48.377] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:43:48.584] [INFO] cheese - inserting 1000 documents. first: Colegio Aleman Cuauhtemoc Hank and last: Sir John Evelyn, 1st Baronet, of Godstone -[2018-02-13T00:43:48.587] [INFO] cheese - inserting 1000 documents. first: Tommy Banks (footballer) and last: File:CaltechNeuroChip.jpg -[2018-02-13T00:43:48.659] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:43:48.663] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:48.858] [INFO] cheese - inserting 1000 documents. first: Alan Šulc and last: Wikipedia:Articles for deletion/Task Squid -[2018-02-13T00:43:48.914] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:43:48.914] [INFO] cheese - inserting 1000 documents. first: Bassoon concerto in F major op. 75 J.127 (1811 / revised 1822) and last: Joseph boardman -[2018-02-13T00:43:49.010] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:43:49.022] [INFO] cheese - inserting 1000 documents. first: Vaughan-Williams and Tavener and last: University of California, Davis Library -[2018-02-13T00:43:49.117] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:43:49.235] [INFO] cheese - inserting 1000 documents. first: Jay Nady and last: File:GT Choicedive.jpg -[2018-02-13T00:43:49.237] [INFO] cheese - inserting 1000 documents. first: Alan Marshall (author) and last: Ryan Callus -[2018-02-13T00:43:49.356] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:43:49.423] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:43:49.606] [INFO] cheese - inserting 1000 documents. first: Koruluk Dam and last: The Scholar Gypsy -[2018-02-13T00:43:49.697] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:43:49.770] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/vbulletin.comhttp and last: NEAR FM 101.6FM -[2018-02-13T00:43:49.841] [INFO] cheese - inserting 1000 documents. first: Wayne State University Libraries and last: SUD scale -[2018-02-13T00:43:49.845] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:43:49.932] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:43:49.939] [INFO] cheese - inserting 1000 documents. first: Ricardo Passano and last: EUFOR RCA -[2018-02-13T00:43:50.016] [INFO] cheese - inserting 1000 documents. first: Saxifrage family and last: Patent of toleration -[2018-02-13T00:43:50.016] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:43:50.083] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:50.215] [INFO] cheese - inserting 1000 documents. first: File:Virginia House Drawing Room.jpg and last: Tökszölö -[2018-02-13T00:43:50.222] [INFO] cheese - inserting 1000 documents. first: Silver Recruiter Badge and last: County Route 689 Spur (Middlesex County, New Jersey) -[2018-02-13T00:43:50.270] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:43:50.281] [INFO] cheese - inserting 1000 documents. first: Myelois ampliatella and last: Category:Finland women's national football team navigational boxes -[2018-02-13T00:43:50.296] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:43:50.354] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:43:50.546] [INFO] cheese - inserting 1000 documents. first: They Said That Hell's Not Hot and last: Guenther Victor, Prince of Schwarzburg -[2018-02-13T00:43:50.578] [INFO] cheese - inserting 1000 documents. first: Route 168 (New Jersey) and last: HMS Orwell (G98) -[2018-02-13T00:43:50.585] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:43:50.660] [INFO] cheese - inserting 1000 documents. first: Denise Lee Richards and last: Humphrey Lloyd (by 1498-1562 or later) -[2018-02-13T00:43:50.675] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:43:50.735] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:43:50.741] [INFO] cheese - inserting 1000 documents. first: Category:France national football team navigational boxes and last: William Hervey (disambiguation) -[2018-02-13T00:43:50.792] [INFO] cheese - inserting 1000 documents. first: Hummelfjell and last: Taxandria inundata -[2018-02-13T00:43:50.808] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:43:50.817] [INFO] cheese - inserting 1000 documents. first: Tokszolo and last: Template:Julio Medem -[2018-02-13T00:43:50.836] [INFO] cheese - inserting 1000 documents. first: Spencer-Smith baronets and last: Tension (band) -[2018-02-13T00:43:50.909] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:43:51.002] [INFO] cheese - batch complete in: 4.118 secs -[2018-02-13T00:43:51.016] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:43:51.359] [INFO] cheese - inserting 1000 documents. first: Silver Berry (Edmonton) and last: Nue Propriete -[2018-02-13T00:43:51.409] [INFO] cheese - inserting 1000 documents. first: Hashmatabad and last: Telmário de Araújo Sacramento -[2018-02-13T00:43:51.411] [INFO] cheese - inserting 1000 documents. first: Fritz plaumann entomological museum and last: Template:User mai-2 -[2018-02-13T00:43:51.420] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:43:51.445] [INFO] cheese - inserting 1000 documents. first: Walter Long (MP 1701–1702) and last: Northern Barred Woodcreeper -[2018-02-13T00:43:51.516] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:43:51.528] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:43:51.527] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:43:51.778] [INFO] cheese - inserting 1000 documents. first: Kelenfoeld and last: Rasca Mare River -[2018-02-13T00:43:51.834] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:43:52.032] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Dvina Vitebsk and last: Maravilha, Santa Catarina -[2018-02-13T00:43:52.058] [INFO] cheese - inserting 1000 documents. first: Hoffmanns's Woodcreeper and last: Yukiko Okamoto (athlete) -[2018-02-13T00:43:52.159] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:52.179] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T00:43:52.230] [INFO] cheese - inserting 1000 documents. first: Guilsborough School and Technology College and last: Cathal O Murchadha -[2018-02-13T00:43:52.300] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:43:52.353] [INFO] cheese - inserting 1000 documents. first: Aquidaba (disambiguation) and last: Korntal station -[2018-02-13T00:43:52.429] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:43:52.438] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flightsim.com and last: Eleanor Perry -[2018-02-13T00:43:52.510] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T00:43:52.567] [INFO] cheese - inserting 1000 documents. first: Southern Antpipit and last: Sula Cicadabird -[2018-02-13T00:43:52.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Agapiméno Mou Gardoúmpi and last: T.S. Nayar -[2018-02-13T00:43:52.604] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:43:52.670] [INFO] cheese - batch complete in: 1.668 secs -[2018-02-13T00:43:52.774] [INFO] cheese - inserting 1000 documents. first: Nova Erechim and last: Aechmea 'Foster's Freckles' -[2018-02-13T00:43:52.793] [INFO] cheese - inserting 1000 documents. first: Associacao de Futebol do Porto and last: File:Monochrome Tokyopop.jpg -[2018-02-13T00:43:52.821] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:43:52.866] [INFO] cheese - inserting 1000 documents. first: Thymopides grobovi and last: List of NYCB 2010 Nutcracker performances -[2018-02-13T00:43:52.910] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:43:52.950] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:43:52.989] [INFO] cheese - inserting 1000 documents. first: Cosmo Con and last: King Simeon -[2018-02-13T00:43:53.112] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:53.205] [INFO] cheese - inserting 1000 documents. first: Stout-billed Cuckooshrike and last: Category:Alpine skiers at the 1990 Asian Winter Games -[2018-02-13T00:43:53.254] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:53.369] [INFO] cheese - inserting 1000 documents. first: Latitude 17 degrees N and last: Generalized valence bond methods -[2018-02-13T00:43:53.427] [INFO] cheese - inserting 1000 documents. first: File:Spot The Video Game Cover.jpg and last: Solocisquama -[2018-02-13T00:43:53.439] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:43:53.516] [INFO] cheese - inserting 1000 documents. first: NYCB 2010 Nutcracker performances and last: Template:Did you know nominations/Tiang language -[2018-02-13T00:43:53.554] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Molotra and last: Rio Raj -[2018-02-13T00:43:53.557] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:43:53.642] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:43:53.670] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:43:53.893] [INFO] cheese - inserting 1000 documents. first: Troitskiy District and last: Wyoming Transportation Museum -[2018-02-13T00:43:53.898] [INFO] cheese - inserting 1000 documents. first: Category:Competitors at the 1990 Asian Winter Games and last: CapMan -[2018-02-13T00:43:53.981] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:53.982] [INFO] cheese - inserting 1000 documents. first: Category:Information technology companies of Russia and last: Emilio Gutierrez Caba -[2018-02-13T00:43:53.984] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:43:54.111] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:43:54.292] [INFO] cheese - inserting 1000 documents. first: Solar eclipse of June 22, 2066 and last: Listed buildings in Barrow-in-Furness -[2018-02-13T00:43:54.302] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Shubhamshevade and last: File:SacHrtLeon.png -[2018-02-13T00:43:54.319] [INFO] cheese - inserting 1000 documents. first: Vinícius Silva Soares and last: Isaac Jaquelot -[2018-02-13T00:43:54.333] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:43:54.348] [INFO] cheese - inserting 1000 documents. first: Century Secondary School and last: Budavari Siklo -[2018-02-13T00:43:54.357] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:43:54.381] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:43:54.396] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:43:54.429] [INFO] cheese - inserting 1000 documents. first: File:Dristor 2 Station.jpg and last: Carlos Hoo Ramirez -[2018-02-13T00:43:54.458] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:43:54.574] [INFO] cheese - inserting 1000 documents. first: Muammar Khaddafi and last: File:Mod devolution original.jpg -[2018-02-13T00:43:54.610] [INFO] cheese - inserting 1000 documents. first: Indios de Mayagueez and last: Federico Trillo-Figueroa Martinez-Conde -[2018-02-13T00:43:54.619] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:43:54.634] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:43:54.681] [INFO] cheese - inserting 1000 documents. first: Category:Czech sportspeople by sport and last: McKenzie, Doug -[2018-02-13T00:43:54.734] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:43:54.764] [INFO] cheese - inserting 1000 documents. first: Blockbuster Entertainment Group and last: Dysthesia -[2018-02-13T00:43:54.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Deavan Ebersole and last: Template:Sioux City, Iowa weatherbox -[2018-02-13T00:43:54.820] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:43:54.823] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:43:54.842] [INFO] cheese - inserting 1000 documents. first: Alcidodes exornatus and last: Was bleibt -[2018-02-13T00:43:54.894] [INFO] cheese - inserting 1000 documents. first: Uberherrn and last: Wikipedia:Articles for deletion/Bodie and Brock Thoene -[2018-02-13T00:43:54.919] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:43:54.926] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:43:55.110] [INFO] cheese - inserting 1000 documents. first: List of sovereign states in 1951 and last: Wikipedia:WikiProject Trains/nav -[2018-02-13T00:43:55.167] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:43:55.254] [INFO] cheese - inserting 1000 documents. first: McKenzie, Reggie and last: Category:Rowing in Israel -[2018-02-13T00:43:55.267] [INFO] cheese - inserting 1000 documents. first: Los Angeles College of Music (LACM) and last: Dusky-green Oropendola -[2018-02-13T00:43:55.305] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:43:55.308] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:43:55.360] [INFO] cheese - inserting 1000 documents. first: File:Tibet 800ad sm.jpg and last: Brevisima relacion de la destruccion de las Indias -[2018-02-13T00:43:55.360] [INFO] cheese - inserting 1000 documents. first: Mason Charles and last: Rae Armantraut -[2018-02-13T00:43:55.395] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:43:55.451] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:55.498] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Devizes School and last: File:Kamenskalamity.jpg -[2018-02-13T00:43:55.548] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:43:55.661] [INFO] cheese - inserting 1000 documents. first: Lausavisa and last: Flothe -[2018-02-13T00:43:55.683] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:43:55.735] [INFO] cheese - inserting 1000 documents. first: Green Oropendola and last: Sunda Bush Warbler -[2018-02-13T00:43:55.754] [INFO] cheese - inserting 1000 documents. first: Category:Armenia religion-related lists and last: Wikipedia:Sockpuppet investigations/Johny5000 -[2018-02-13T00:43:55.796] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:43:55.805] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:43:56.012] [INFO] cheese - inserting 1000 documents. first: Who I Am Tour and last: Abdulrahman Gimba -[2018-02-13T00:43:56.043] [INFO] cheese - inserting 1000 documents. first: Communes of the Lozere departement and last: Cantoria, Almeria -[2018-02-13T00:43:56.060] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:43:56.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 January 16 and last: Category:Businesspeople by industry and nationality -[2018-02-13T00:43:56.080] [INFO] cheese - inserting 1000 documents. first: Ryan Braun (baseball pitcher) and last: RAF Atcham -[2018-02-13T00:43:56.122] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:43:56.142] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:43:56.203] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:43:56.215] [INFO] cheese - inserting 1000 documents. first: Mountain Tailorbird and last: IBM 4680 Operating System 4.1 -[2018-02-13T00:43:56.257] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:43:56.300] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of YouTubers and last: Scorched (short story) -[2018-02-13T00:43:56.349] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:56.403] [INFO] cheese - inserting 1000 documents. first: Heinrich Heine University of Dusseldorf and last: Floyd Matthews -[2018-02-13T00:43:56.446] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:43:56.601] [INFO] cheese - inserting 1000 documents. first: 4680 Operating System 4.1 and last: This Fire (song) -[2018-02-13T00:43:56.608] [INFO] cheese - inserting 1000 documents. first: Spatial Cultural-Historical Units of Great Importance and last: Wikipedia:WikiProject Spam/LinkReports/computerbiblegames.com -[2018-02-13T00:43:56.641] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:43:56.673] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia files reviewed on Wikimedia Commons by Ebe123 and last: File:3DO-Daedalus-Encounter.jpg -[2018-02-13T00:43:56.725] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:43:56.736] [INFO] cheese - inserting 1000 documents. first: La Pelicula del Rey and last: Pres De Ma Riviere -[2018-02-13T00:43:56.762] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:43:56.813] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:43:56.875] [INFO] cheese - inserting 1000 documents. first: Collins–Valentine line and last: Tetrahedron Computer Methodology -[2018-02-13T00:43:56.905] [INFO] cheese - inserting 1000 documents. first: Scottish Renewables Obligation and last: Dinosaurs in South America -[2018-02-13T00:43:56.910] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:43:56.982] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:43:57.001] [INFO] cheese - inserting 1000 documents. first: Category:Space units of the United States Air Force and last: San Munoz, Salamanca -[2018-02-13T00:43:57.106] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:43:57.315] [INFO] cheese - inserting 1000 documents. first: Connor Smith (footballer, born 1996) and last: Category:Gymnastics at the Youth Olympics -[2018-02-13T00:43:57.371] [INFO] cheese - inserting 1000 documents. first: Guenther's Toadlet and last: Rene Desfontaines -[2018-02-13T00:43:57.407] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:43:57.433] [INFO] cheese - inserting 1000 documents. first: Category:International basketball competitions hosted by Spain and last: Tyler Polak -[2018-02-13T00:43:57.431] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:43:57.650] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:43:57.708] [INFO] cheese - inserting 1000 documents. first: File:Bluemagic3.jpg and last: HNLMS De Ruyter (1944) -[2018-02-13T00:43:57.882] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T00:43:58.085] [INFO] cheese - inserting 1000 documents. first: Benjamin Wahlgren Ingrosso and last: Category:Finnish politicians by century -[2018-02-13T00:43:58.099] [INFO] cheese - inserting 1000 documents. first: Reenpaa and last: Institut national des sciences appliquees -[2018-02-13T00:43:58.158] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:58.274] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T00:43:58.449] [INFO] cheese - inserting 1000 documents. first: Template:Navbox track gauge/sandbox and last: Pirate Party Croatia -[2018-02-13T00:43:58.508] [INFO] cheese - inserting 1000 documents. first: Juergen May and last: Chapel of Sao Frutuoso de Montelios -[2018-02-13T00:43:58.567] [INFO] cheese - inserting 1000 documents. first: File:ZAMTEL LOGO.gif and last: Template:Soccer in Australia -[2018-02-13T00:43:58.568] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:43:58.589] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T00:43:58.601] [INFO] cheese - inserting 1000 documents. first: Category:Radford Highlanders baseball players and last: Psecadia tripolitanella -[2018-02-13T00:43:58.678] [INFO] cheese - batch complete in: 1.696 secs -[2018-02-13T00:43:58.690] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T00:43:58.833] [INFO] cheese - inserting 1000 documents. first: Gewuertztraminer and last: Urla (District), Izmir -[2018-02-13T00:43:58.880] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:43:58.964] [INFO] cheese - inserting 1000 documents. first: Ernest Jansan and last: Wikipedia:Sockpuppet investigations/Iloveartrock/Archive -[2018-02-13T00:43:59.023] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:43:59.137] [INFO] cheese - inserting 1000 documents. first: Rhytidhysteron and last: Vanilla raabii -[2018-02-13T00:43:59.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hypography and last: Munoveros, Spain -[2018-02-13T00:43:59.159] [INFO] cheese - inserting 1000 documents. first: File:Deco lamp.jpg and last: Peshtpa -[2018-02-13T00:43:59.187] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:43:59.191] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:59.305] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T00:43:59.404] [INFO] cheese - inserting 1000 documents. first: Psecadia radiatella and last: Syfy Universal (Portugal) -[2018-02-13T00:43:59.408] [INFO] cheese - inserting 1000 documents. first: PNC (rapper) and last: Baronio -[2018-02-13T00:43:59.439] [INFO] cheese - inserting 1000 documents. first: Anundsjoe Parish and last: Hakon Hakonarson -[2018-02-13T00:43:59.487] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:43:59.524] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:43:59.499] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:43:59.604] [INFO] cheese - inserting 1000 documents. first: Our Lady of the Spasm and last: Category:Sports competitions in Illinois -[2018-02-13T00:43:59.673] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:59.778] [INFO] cheese - inserting 1000 documents. first: 2014 Venice Challenge Save Cup and last: Richard Earl Thompson -[2018-02-13T00:43:59.830] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:43:59.954] [INFO] cheese - inserting 1000 documents. first: Template:Nevada-NRHP-stub and last: Lehigh university engineering highlights -[2018-02-13T00:44:00.104] [INFO] cheese - inserting 1000 documents. first: May 19th Coalition and last: File:Alfonso Ugarte de Chiclín.gif -[2018-02-13T00:44:00.139] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:44:00.279] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:44:00.385] [INFO] cheese - inserting 1000 documents. first: Booty Pop and last: Delmar Roos -[2018-02-13T00:44:00.434] [INFO] cheese - inserting 1000 documents. first: Tin-Plate and last: File:PreEmptivelogo.png -[2018-02-13T00:44:00.473] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:44:00.488] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:44:00.572] [INFO] cheese - inserting 1000 documents. first: Castaibert IV and last: Cuban Parakeet -[2018-02-13T00:44:00.584] [INFO] cheese - inserting 1000 documents. first: Oviraptor philoceratops and last: Wikipedia:Articles for deletion/Webopedia -[2018-02-13T00:44:00.613] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:44:00.616] [INFO] cheese - inserting 1000 documents. first: Ulmus minor 'Punctata' and last: Work standard -[2018-02-13T00:44:00.702] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T00:44:00.717] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:44:00.896] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Moldova and last: Flamsbanen -[2018-02-13T00:44:00.957] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:00.973] [INFO] cheese - inserting 1000 documents. first: 1983 UK Snooker Championship and last: Jung Il-woo -[2018-02-13T00:44:01.027] [INFO] cheese - inserting 1000 documents. first: Table of books of Judeo-Christian scripture and last: Category:1922 establishments in Yugoslavia -[2018-02-13T00:44:01.035] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:44:01.132] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:44:01.209] [INFO] cheese - inserting 1000 documents. first: Bald Parrot and last: Rüppell's bustard -[2018-02-13T00:44:01.371] [INFO] cheese - inserting 1000 documents. first: File:Navy olive Capt(N).png and last: John Pattitucci -[2018-02-13T00:44:01.387] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:44:01.428] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:44:01.554] [INFO] cheese - inserting 1000 documents. first: File:Box 2 of Inazuma Eleven Contains 10 dvds (48 episodes)-Season 2.jpg and last: Wikipedia:Articles for deletion/Log/2017 January 7 -[2018-02-13T00:44:01.577] [INFO] cheese - inserting 1000 documents. first: Northern smooth shore crab and last: Strømm -[2018-02-13T00:44:01.661] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:44:01.747] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T00:44:01.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Aar Maanta and last: Pranas Domšaitis -[2018-02-13T00:44:01.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Canberra Primary School and last: Jane Stocks Greig -[2018-02-13T00:44:01.836] [INFO] cheese - inserting 1000 documents. first: Le Poisson Dore (Saint-Leon/Minkus) and last: Meritorious Unit Citations -[2018-02-13T00:44:01.845] [INFO] cheese - inserting 1000 documents. first: Category:1973 establishments in Yugoslavia and last: Odostomia woodhridgei -[2018-02-13T00:44:01.849] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:44:01.855] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:44:01.865] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:44:01.920] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:44:02.196] [INFO] cheese - inserting 1000 documents. first: Category:Fossil fuels in Oceania and last: Peristenus -[2018-02-13T00:44:02.197] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AMA Requests for Assistance/Requests/October 2006/francesannesolomon1 and last: Yoake Mae yori Ruriiro na -[2018-02-13T00:44:02.259] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:44:02.268] [INFO] cheese - inserting 1000 documents. first: Nigerian Civil Service and last: Template:Media Release/doc -[2018-02-13T00:44:02.284] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:44:02.340] [INFO] cheese - inserting 1000 documents. first: Category:Islands of Shandong and last: Wikipedia:Articles for deletion/List of airports in the United States by passengers boarded -[2018-02-13T00:44:02.344] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:44:02.380] [INFO] cheese - inserting 1000 documents. first: Fairfield Athletic and last: Home of Truth, Utah -[2018-02-13T00:44:02.418] [INFO] cheese - inserting 1000 documents. first: Friedrich IX of Brandenburg-Bayreuth and last: Opătești -[2018-02-13T00:44:02.437] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:44:02.439] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:44:02.512] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:44:02.662] [INFO] cheese - inserting 1000 documents. first: West Indies cricket team in Pakistan in 2016–17 and last: Kurmanathaswamy temple, Srikurmam -[2018-02-13T00:44:02.704] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:44:02.721] [INFO] cheese - inserting 1000 documents. first: Battle of Val-es-Dunes and last: Brynjar Bjoern Gunnarsson -[2018-02-13T00:44:02.748] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:44:02.791] [INFO] cheese - inserting 1000 documents. first: Sean Hoppe and last: The Blinding E.P. -[2018-02-13T00:44:02.808] [INFO] cheese - inserting 1000 documents. first: Time To Win, Vol. 1 and last: SC 63 -[2018-02-13T00:44:02.889] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:44:02.894] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:44:03.016] [INFO] cheese - inserting 1000 documents. first: Category:KLM Cityhopper and last: Category:Songs written by Robin Thicke -[2018-02-13T00:44:03.077] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:44:03.173] [INFO] cheese - inserting 1000 documents. first: Neuhausgen and last: Wikipedia:Articles for deletion/SimonT Hockey Simulator -[2018-02-13T00:44:03.188] [INFO] cheese - inserting 1000 documents. first: Nazrul Tirtha and last: Building jacking -[2018-02-13T00:44:03.207] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:44:03.282] [INFO] cheese - inserting 1000 documents. first: 2015 Canadian Open of Curling and last: Salen Kotch -[2018-02-13T00:44:03.285] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:44:03.376] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:44:03.521] [INFO] cheese - inserting 1000 documents. first: Inglewood United FC and last: Norderhoug -[2018-02-13T00:44:03.531] [INFO] cheese - inserting 1000 documents. first: Route 63 (South Carolina) and last: File:GrandPrixManagerscreen.gif -[2018-02-13T00:44:03.555] [INFO] cheese - inserting 1000 documents. first: Ponta Garca and last: Grandes y San Martin, Spain -[2018-02-13T00:44:03.556] [INFO] cheese - inserting 1000 documents. first: Albert "Ginger" Baker and last: Susisuchus anatoceps -[2018-02-13T00:44:03.586] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:44:03.587] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:44:03.596] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:44:03.622] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:44:03.820] [INFO] cheese - inserting 1000 documents. first: Category:163 in Asia and last: PC flash-synchronization connection -[2018-02-13T00:44:03.839] [INFO] cheese - inserting 1000 documents. first: List of creeks in North Carolina and last: Apex Pride -[2018-02-13T00:44:03.885] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:44:03.887] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:44:03.914] [INFO] cheese - inserting 1000 documents. first: Mevluet Erdinc and last: Courtemaiche (Jura) -[2018-02-13T00:44:03.963] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:44:04.049] [INFO] cheese - inserting 1000 documents. first: Mylius My-102 Tornado and last: West Vienna United Methodist Church -[2018-02-13T00:44:04.069] [INFO] cheese - inserting 1000 documents. first: Dhanmondi Govt Boys' High School and last: Life of Richard Savage -[2018-02-13T00:44:04.098] [INFO] cheese - inserting 1000 documents. first: UFSv2 and last: Nagato no kuni -[2018-02-13T00:44:04.120] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:44:04.158] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:44:04.203] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:44:04.262] [INFO] cheese - inserting 1000 documents. first: Skalka nad Vahom and last: Al compas de tu mentira -[2018-02-13T00:44:04.282] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:44:04.356] [INFO] cheese - inserting 1000 documents. first: PC flash synchronisation connection and last: Draft:Sikin Panjang -[2018-02-13T00:44:04.375] [INFO] cheese - inserting 1000 documents. first: Governor Shumlin and last: Category:People from Småland by occupation -[2018-02-13T00:44:04.407] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:44:04.429] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:44:04.560] [INFO] cheese - inserting 1000 documents. first: Gyula Fenyi and last: Fraemling (song) -[2018-02-13T00:44:04.609] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:44:04.770] [INFO] cheese - inserting 1000 documents. first: 2011 Paraguayan Segunda División season and last: Euzopherades -[2018-02-13T00:44:04.791] [INFO] cheese - inserting 1000 documents. first: Thomas Mapilton and last: Secondary ion mass spectrometer -[2018-02-13T00:44:04.818] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/MartinBotII 2 and last: Volta River Dam -[2018-02-13T00:44:04.837] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:44:04.905] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:44:04.916] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:44:04.940] [INFO] cheese - inserting 1000 documents. first: Roscommon (Dail Eireann constituency) and last: SMS Koenig Wilhelm (1868) -[2018-02-13T00:44:04.978] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:44:05.036] [INFO] cheese - inserting 1000 documents. first: File:Ratnakumar 1949.jpg and last: Category:Roman Catholic ecclesiastical provinces in Italy -[2018-02-13T00:44:05.105] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:44:05.111] [INFO] cheese - inserting 1000 documents. first: Category:Cycling at the Southeast Asian Games and last: Brazil men's national 3x3 team -[2018-02-13T00:44:05.169] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:44:05.261] [INFO] cheese - inserting 1000 documents. first: Leao (disambiguation) and last: Goetheberg, Sweden -[2018-02-13T00:44:05.282] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:44:05.408] [INFO] cheese - inserting 1000 documents. first: Infinita and last: Category:History of Yugoslavia by topic -[2018-02-13T00:44:05.447] [INFO] cheese - inserting 1000 documents. first: Sp vol and last: File:Nittanyfurnace.PNG -[2018-02-13T00:44:05.465] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:44:05.476] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:44:05.514] [INFO] cheese - inserting 1000 documents. first: List of Prosecutor Generals of Russia and the Soviet Union and last: Mount Geikie -[2018-02-13T00:44:05.515] [INFO] cheese - inserting 1000 documents. first: Winfried Muthesius and last: All Points Bulletin (2010 video game) -[2018-02-13T00:44:05.569] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:44:05.575] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:44:05.593] [INFO] cheese - inserting 1000 documents. first: Raettvik Court District and last: 8319 Antiphanes -[2018-02-13T00:44:05.640] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:44:05.647] [INFO] cheese - inserting 1000 documents. first: Khok Sa-Met Choon and last: File:Viduthalai (1986 film).jpg -[2018-02-13T00:44:05.694] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:44:05.818] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Société Ramond and last: Template:LSJ/doc -[2018-02-13T00:44:05.844] [INFO] cheese - inserting 1000 documents. first: Raghuleela Mall and last: 8 second basketball rule -[2018-02-13T00:44:05.853] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:44:05.883] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:44:05.915] [INFO] cheese - inserting 1000 documents. first: Nagyhodos and last: Bagdat Caddesi -[2018-02-13T00:44:05.934] [INFO] cheese - inserting 1000 documents. first: Category:1842 establishments in British India and last: Template:2003 South Africa incoming tours squad -[2018-02-13T00:44:05.947] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:44:05.993] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:44:06.026] [INFO] cheese - inserting 1000 documents. first: Omar Esparza and last: East Germany at the 1976 Winter Olympics -[2018-02-13T00:44:06.061] [INFO] cheese - inserting 1000 documents. first: Jiang Duanyi and last: Gabriel Isis -[2018-02-13T00:44:06.104] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:44:06.122] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:44:06.197] [INFO] cheese - inserting 1000 documents. first: Giani Stelian Kirita and last: Jakob, der Lugner -[2018-02-13T00:44:06.223] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:44:06.303] [INFO] cheese - inserting 1000 documents. first: Bugolobi and last: Jaiee -[2018-02-13T00:44:06.349] [INFO] cheese - inserting 1000 documents. first: Deh Zahid and last: The Future of the Body -[2018-02-13T00:44:06.367] [INFO] cheese - inserting 1000 documents. first: Sitosterolaemia and last: List of executive search firms -[2018-02-13T00:44:06.374] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:44:06.427] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:44:06.508] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:44:06.568] [INFO] cheese - inserting 1000 documents. first: Johann Boettger and last: 4373 Crespo -[2018-02-13T00:44:06.652] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:44:06.714] [INFO] cheese - inserting 1000 documents. first: Speckled Wood (butterfly) and last: Template:Leftist Socialist Party of Japan/meta/shortname -[2018-02-13T00:44:06.789] [INFO] cheese - inserting 1000 documents. first: Million Dollar Heiress and last: Template:Rugby squad start -[2018-02-13T00:44:06.846] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:44:06.910] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:07.037] [INFO] cheese - inserting 1000 documents. first: File:EarlyCannonDeNobilitatibusSapientiiEtPrudentiisRegumManuscriptWalterdeMilemete1326.jpg and last: Könkämäeno -[2018-02-13T00:44:07.131] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Coxel and last: Wikipedia:WikiProject Spam/LinkReports/resiinalehti.fi -[2018-02-13T00:44:07.164] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:44:07.293] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:44:07.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/reggae-hiphop-radio.we.bs and last: Template:1970–71 NHL West Division standings -[2018-02-13T00:44:07.424] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:44:07.517] [INFO] cheese - inserting 1000 documents. first: Abdallah Said Sarouma and last: The Wehrmacht: History, Myth, Reality -[2018-02-13T00:44:07.689] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T00:44:07.699] [INFO] cheese - inserting 1000 documents. first: FM 29 and last: Kingi Tuheitia -[2018-02-13T00:44:07.778] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:44:07.901] [INFO] cheese - inserting 1000 documents. first: Edwin Hallowell and last: Petite Savanne -[2018-02-13T00:44:07.919] [INFO] cheese - inserting 1000 documents. first: Halo naevus and last: Smidge -[2018-02-13T00:44:07.981] [INFO] cheese - inserting 1000 documents. first: Daamo and last: 1929 elections -[2018-02-13T00:44:08.003] [INFO] cheese - inserting 1000 documents. first: 3032 Evans and last: Manastur, Cluj-Napoca -[2018-02-13T00:44:08.007] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T00:44:08.040] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:44:08.069] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:44:08.127] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:44:08.175] [INFO] cheese - inserting 1000 documents. first: Architectural conservation in Thailand and last: Eugen Viktor Paul Seiterich -[2018-02-13T00:44:08.226] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:44:08.355] [INFO] cheese - inserting 1000 documents. first: Dysoxylum havilandii and last: County of Stolberg-Stolberg -[2018-02-13T00:44:08.405] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:44:08.436] [INFO] cheese - inserting 1000 documents. first: Grădinile Mănăştur, Cluj-Napoca and last: Furstin von Belmonte -[2018-02-13T00:44:08.514] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:44:08.535] [INFO] cheese - inserting 1000 documents. first: List of elected officials who support the Stop Online Piracy Act and last: Latvijas Civilās aviācijas administrācija -[2018-02-13T00:44:08.589] [INFO] cheese - inserting 1000 documents. first: File:TowsonEnrollmentServices.jpg and last: Valentin Paniagua -[2018-02-13T00:44:08.637] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:44:08.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Like a Rolling Stone/archive2 and last: Jean Baptiste Louvet de Couvray -[2018-02-13T00:44:08.738] [INFO] cheese - inserting 1000 documents. first: Category:Monasteries in Denmark and last: Bob B. Soxx & The Blue Jeans -[2018-02-13T00:44:08.717] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:44:08.817] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:44:08.825] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:44:08.876] [INFO] cheese - inserting 1000 documents. first: Inch2 and last: Libertador Municipality, Carabobo -[2018-02-13T00:44:09.126] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:44:09.355] [INFO] cheese - inserting 1000 documents. first: County of Stolberg-Rossla and last: Random write -[2018-02-13T00:44:09.438] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T00:44:09.454] [INFO] cheese - inserting 1000 documents. first: Latvijas Civilas aviacijas administracija and last: Léon Maquenne -[2018-02-13T00:44:09.470] [INFO] cheese - inserting 1000 documents. first: Jose Rondeau Pereyra and last: NS Railinfratrust -[2018-02-13T00:44:09.500] [INFO] cheese - inserting 1000 documents. first: Valery Sigalevitch and last: Category:Ships of Belize -[2018-02-13T00:44:09.516] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:44:09.528] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:44:09.557] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:44:09.619] [INFO] cheese - inserting 1000 documents. first: Valentin paniagua and last: Damot Weyde -[2018-02-13T00:44:09.664] [INFO] cheese - inserting 1000 documents. first: Central Oklahoma Bronchos women's basketball and last: Invasion of Åland -[2018-02-13T00:44:09.698] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:44:09.719] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:44:09.768] [INFO] cheese - inserting 1000 documents. first: Sverre Kornelius Eilertsen Stostad and last: A-adrenergic receptor -[2018-02-13T00:44:09.799] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:44:09.823] [INFO] cheese - inserting 1000 documents. first: Category:Franklin County, New York geography stubs and last: File:Step Up All In poster.jpg -[2018-02-13T00:44:09.861] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:44:09.873] [INFO] cheese - inserting 1000 documents. first: Category:Province of Valencia and last: Wikipedia:Articles for deletion/Log/2012 January 23 -[2018-02-13T00:44:09.925] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:44:10.137] [INFO] cheese - inserting 1000 documents. first: 11997 Fassel and last: 1382 Gerti -[2018-02-13T00:44:10.143] [INFO] cheese - inserting 1000 documents. first: Army School Mumbai and last: Roumboui -[2018-02-13T00:44:10.177] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:44:10.225] [INFO] cheese - inserting 1000 documents. first: Cathedral of Dijon and last: National Museum of San Marco -[2018-02-13T00:44:10.238] [INFO] cheese - inserting 1000 documents. first: Vagonka and last: Regensburg declaration of 1541 -[2018-02-13T00:44:10.286] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:44:10.301] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:44:10.356] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:44:10.524] [INFO] cheese - inserting 1000 documents. first: Template:2012 in Japanese football and last: Dareshkaft -[2018-02-13T00:44:10.602] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:44:10.608] [INFO] cheese - inserting 1000 documents. first: Gabriel lame and last: Storfurstendomet Finland -[2018-02-13T00:44:10.636] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:44:10.647] [INFO] cheese - inserting 1000 documents. first: File:Dishaster gameplay.png and last: Wakka Wakka Productions -[2018-02-13T00:44:10.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elwood (Finnish musician) (2nd nomination) and last: Eternal General Secretary of the Workers' Party of Korea -[2018-02-13T00:44:10.743] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:44:10.792] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:44:10.914] [INFO] cheese - inserting 1000 documents. first: Sabon-Guida and last: No Internal Message -[2018-02-13T00:44:10.922] [INFO] cheese - inserting 1000 documents. first: Category:Danish darts players and last: FIU–Miami football brawl -[2018-02-13T00:44:10.983] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:44:11.012] [INFO] cheese - inserting 1000 documents. first: 1308 Halleria and last: 9144 Hollisjohnson -[2018-02-13T00:44:10.986] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:44:11.074] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:44:11.371] [INFO] cheese - inserting 1000 documents. first: 2010 in Armenian football and last: Zeppelin LZ84 -[2018-02-13T00:44:11.469] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:44:11.515] [INFO] cheese - inserting 1000 documents. first: Vijayawada Railway Division and last: Beijing Haidian Foreign Language School -[2018-02-13T00:44:11.633] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:44:11.661] [INFO] cheese - inserting 1000 documents. first: Armand-Francois-Marie de Charbonnel and last: Orebro SK Bandy -[2018-02-13T00:44:11.774] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:44:11.782] [INFO] cheese - inserting 1000 documents. first: Category:20th-century Turkish short story writers and last: Template:Liga Semi-Pro Divisyen 2 -[2018-02-13T00:44:11.786] [INFO] cheese - inserting 1000 documents. first: 1st American Regiment (1783-1784) and last: Balsa Nova -[2018-02-13T00:44:11.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AMA Requests for Assistance/Requests/October 2006/Hammbeen and last: All That Remains (novel) -[2018-02-13T00:44:11.836] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:44:11.893] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T00:44:11.927] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T00:44:12.074] [INFO] cheese - inserting 1000 documents. first: Tonfoen and last: List of number-one hits of 1961 (Germany) -[2018-02-13T00:44:12.111] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:44:12.134] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Hawaii hotspot/archive2 and last: Ethmia septempunctata -[2018-02-13T00:44:12.160] [INFO] cheese - inserting 1000 documents. first: 102d Fighter-Interceptor Squadron and last: Francisco Alcácer -[2018-02-13T00:44:12.187] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:44:12.205] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:44:12.351] [INFO] cheese - inserting 1000 documents. first: Faruk Guersoy and last: Romangordo, Caceres -[2018-02-13T00:44:12.372] [INFO] cheese - inserting 1000 documents. first: Bocaiúva do Sul and last: Category:Ke$ha songs -[2018-02-13T00:44:12.375] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:44:12.421] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:44:12.427] [INFO] cheese - inserting 1000 documents. first: Secrets (Ian Thornley album) and last: Northamptonshire county cricket teams -[2018-02-13T00:44:12.474] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:44:12.501] [INFO] cheese - inserting 1000 documents. first: Category:Football clubs in Kenya and last: Johnson Creek (New York) -[2018-02-13T00:44:12.537] [INFO] cheese - inserting 1000 documents. first: Miert kell, hogy elmenj? and last: Somesul Cald River -[2018-02-13T00:44:12.539] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:44:12.554] [INFO] cheese - inserting 1000 documents. first: Template:Motorcycle article and last: File:Bssm0.png -[2018-02-13T00:44:12.566] [INFO] cheese - inserting 1000 documents. first: Hull Council election, 2006 and last: Galeandra barbata -[2018-02-13T00:44:12.572] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:44:12.632] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:44:12.658] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:44:12.868] [INFO] cheese - inserting 1000 documents. first: File:Captain Moses Collyer House.jpg and last: Sertanópolis -[2018-02-13T00:44:12.914] [INFO] cheese - inserting 1000 documents. first: Jose Cuervo Tequila and last: 20376 Joyhines -[2018-02-13T00:44:12.919] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:44:12.921] [INFO] cheese - inserting 1000 documents. first: Buckinghamshire county cricket teams and last: 1987–88 FC Basel season -[2018-02-13T00:44:12.975] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:44:12.979] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:44:13.282] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Chaetopteridae and last: Template:Haverfordwest VHF 405-line Transmitter Group -[2018-02-13T00:44:13.406] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:44:13.544] [INFO] cheese - inserting 1000 documents. first: Template:UC Davis Aggies baseball coach navbox and last: Warm Springs Road -[2018-02-13T00:44:13.577] [INFO] cheese - inserting 1000 documents. first: Tibor Martinek and last: La Jamais Contente -[2018-02-13T00:44:13.646] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T00:44:13.702] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T00:44:14.047] [INFO] cheese - inserting 1000 documents. first: Category:Hydroelectric power stations in Taiwan and last: Julius J. Martens Company Building -[2018-02-13T00:44:14.086] [INFO] cheese - inserting 1000 documents. first: 78577 JPL and last: Josef Peters (auto racing) -[2018-02-13T00:44:14.098] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:44:14.104] [INFO] cheese - inserting 1000 documents. first: Huang Tzu-ch’eng and last: K255CX -[2018-02-13T00:44:14.160] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T00:44:14.168] [INFO] cheese - inserting 1000 documents. first: Category:Ridges on Mars and last: Julio César Valdivia -[2018-02-13T00:44:14.176] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T00:44:14.216] [INFO] cheese - inserting 1000 documents. first: Tonopah-Austin Road and last: Category:Hinduism stubs -[2018-02-13T00:44:14.256] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T00:44:14.293] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:44:14.374] [INFO] cheese - inserting 1000 documents. first: Kongo class destroyer and last: Delirium Cafe -[2018-02-13T00:44:14.412] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:44:14.541] [INFO] cheese - inserting 1000 documents. first: Currant clearwing moth and last: Schloss Herrenhausen -[2018-02-13T00:44:14.584] [INFO] cheese - inserting 1000 documents. first: Somalia–United Arab Emirates relations and last: Wikipedia:Articles for deletion/Picnicface -[2018-02-13T00:44:14.593] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:44:14.635] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:44:14.709] [INFO] cheese - inserting 1000 documents. first: Night-flowering Catchfly and last: OCP Art Studio -[2018-02-13T00:44:14.723] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/news.jagrutgrahak.com and last: You (Japanese magazine) -[2018-02-13T00:44:14.760] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:44:14.785] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:44:14.900] [INFO] cheese - inserting 1000 documents. first: Georgia Highway 5 and last: Poecile atricapillus -[2018-02-13T00:44:14.954] [INFO] cheese - inserting 1000 documents. first: 1965–66 Football League and last: File:Mummysghost.jpg -[2018-02-13T00:44:14.954] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:44:15.053] [INFO] cheese - inserting 1000 documents. first: Lordville, Minnesota and last: Frida Rubiner -[2018-02-13T00:44:15.177] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T00:44:15.273] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:44:15.297] [INFO] cheese - inserting 1000 documents. first: Compensated phoria and last: Template:Editnotices/Page/January 14 -[2018-02-13T00:44:15.399] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:44:15.402] [INFO] cheese - inserting 1000 documents. first: Draft:A Woman is a Weathercock and last: Patan (Vidhan Sabha constituency) -[2018-02-13T00:44:15.490] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:44:15.654] [INFO] cheese - inserting 1000 documents. first: Kosmos 262 and last: Arthur Francis George Kerr -[2018-02-13T00:44:15.722] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:44:15.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Khaled Ukash and last: Category:People from Lynn, Massachusetts -[2018-02-13T00:44:15.816] [INFO] cheese - inserting 1000 documents. first: File:AmmanvarTemple-4.jpg and last: Aided Oenfhir Aife -[2018-02-13T00:44:15.869] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:44:15.872] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:44:15.897] [INFO] cheese - inserting 1000 documents. first: Crytek Kiev and last: UPI AFC Player of the Year -[2018-02-13T00:44:15.952] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:44:15.979] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/January 15 and last: Category:Antisemitism in England -[2018-02-13T00:44:16.055] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:44:16.077] [INFO] cheese - inserting 1000 documents. first: Neocompsa ruatana and last: Regina apostolorum academy -[2018-02-13T00:44:16.094] [INFO] cheese - inserting 1000 documents. first: Biblioteca Nacional de Mexico and last: Powiat of Wielun -[2018-02-13T00:44:16.141] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:44:16.144] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:44:16.225] [INFO] cheese - inserting 1000 documents. first: Template:Miami weatherbox and last: The Dancing Town -[2018-02-13T00:44:16.275] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:44:16.369] [INFO] cheese - inserting 1000 documents. first: Zettel and last: Morris Inquiry -[2018-02-13T00:44:16.378] [INFO] cheese - inserting 1000 documents. first: Freie Universitaet Berlin and last: Pustkow, Lower Silesian Voivodeship -[2018-02-13T00:44:16.399] [INFO] cheese - inserting 1000 documents. first: Milton State Park and last: Hueyapan -[2018-02-13T00:44:16.404] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:44:16.403] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:44:16.445] [INFO] cheese - inserting 1000 documents. first: Yu Liu (or Eric Liu) and last: German submarine U-4 (S183) -[2018-02-13T00:44:16.472] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:44:16.513] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:44:16.649] [INFO] cheese - inserting 1000 documents. first: Andorsjoen and last: 8347 Lallaward -[2018-02-13T00:44:16.684] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:44:16.738] [INFO] cheese - inserting 1000 documents. first: H. de C. Hastings and last: Energy FC -[2018-02-13T00:44:16.758] [INFO] cheese - inserting 1000 documents. first: Ovsyanki and last: Wikipedia:WikiProject Spam/Local/aragornblog.wordpress.com -[2018-02-13T00:44:16.776] [INFO] cheese - inserting 1000 documents. first: Template:RCW and last: Template:Bălți-geo-stub -[2018-02-13T00:44:16.815] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:44:16.816] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:44:16.845] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:44:16.951] [INFO] cheese - inserting 1000 documents. first: German submarine U-5 (S184) and last: Swimming at the 2001 World Aquatics Championships - Women's 4 × 200 metre freestyle relay -[2018-02-13T00:44:17.109] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:44:17.162] [INFO] cheese - inserting 1000 documents. first: Skarpt laege and last: Championship of Zuerich 2006 -[2018-02-13T00:44:17.166] [INFO] cheese - inserting 1000 documents. first: Worldways Canada and last: Wroclaw Palace -[2018-02-13T00:44:17.228] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:44:17.317] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:44:17.580] [INFO] cheese - inserting 1000 documents. first: Template:BenderMD-geo-stub and last: Gesta (skipper) -[2018-02-13T00:44:17.610] [INFO] cheese - inserting 1000 documents. first: Template:LI bus link and last: Aaj (1987 film) -[2018-02-13T00:44:17.646] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:44:17.671] [INFO] cheese - inserting 1000 documents. first: 1755 Lorbach and last: Ruthe B. Cowl -[2018-02-13T00:44:17.741] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:44:17.739] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T00:44:17.858] [INFO] cheese - inserting 1000 documents. first: File:2007-08 Illinois Fighting Illini men's basketball team.jpg and last: Concerto transcriptions for harpsichord and organ (Bach) -[2018-02-13T00:44:17.945] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:44:18.131] [INFO] cheese - inserting 1000 documents. first: Schwaendi GL and last: 5760 Mittlefehldt -[2018-02-13T00:44:18.158] [INFO] cheese - inserting 1000 documents. first: File:OSR.jpg and last: Old Kyo -[2018-02-13T00:44:18.177] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:44:18.238] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:44:18.368] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Angel and the Rain and last: Welbore Ellis (bishop) -[2018-02-13T00:44:18.391] [INFO] cheese - inserting 1000 documents. first: File:Windstar-Cruises-logo-2014.png and last: Template:Did you know nominations/Labour Spokesman -[2018-02-13T00:44:18.452] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:18.518] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:44:18.521] [INFO] cheese - inserting 1000 documents. first: Mofo gasy and last: Wikipedia:WikiProject Spam/LinkReports/anon.to -[2018-02-13T00:44:18.556] [INFO] cheese - inserting 1000 documents. first: Wladyslaw Stepien and last: Papaya (dance) -[2018-02-13T00:44:18.604] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:44:18.613] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:44:19.005] [INFO] cheese - inserting 1000 documents. first: Rantauprapat and last: 武广客运专线 -[2018-02-13T00:44:19.153] [INFO] cheese - inserting 1000 documents. first: Pasarea Colibri and last: South Weymouth Naval Air Station -[2018-02-13T00:44:19.195] [INFO] cheese - inserting 1000 documents. first: Miroku's Past Mistake and last: Barnsley East and Mexborough -[2018-02-13T00:44:19.206] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:44:19.226] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:44:19.230] [INFO] cheese - inserting 1000 documents. first: Jamil Jivani and last: Herbert J. Spiro -[2018-02-13T00:44:19.300] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T00:44:19.324] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:19.417] [INFO] cheese - inserting 1000 documents. first: Category:Cars introduced in 2017 and last: Draft:1984 Long Beach State 49ers football team -[2018-02-13T00:44:19.455] [INFO] cheese - inserting 1000 documents. first: Francis Brandling and last: Wikipedia:WikProject U.S. Roads/Washington/1937 laws -[2018-02-13T00:44:19.533] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T00:44:19.625] [INFO] cheese - batch complete in: 2.808 secs -[2018-02-13T00:44:19.673] [INFO] cheese - inserting 1000 documents. first: Book:1995 Atlantic hurricane season and last: The Space City -[2018-02-13T00:44:19.710] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:19.806] [INFO] cheese - inserting 1000 documents. first: Hilton hotel and last: 5303 Parijskij -[2018-02-13T00:44:19.829] [INFO] cheese - inserting 1000 documents. first: Angels (2014 film) and last: File:TVBmomentsofendearment.jpg -[2018-02-13T00:44:19.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Birthday Committee/Calendar/November/22 and last: 0.999.. -[2018-02-13T00:44:19.889] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:44:19.893] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:44:19.984] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:44:20.103] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikProject U.S. Roads/Washington/1939 laws and last: Tāmihana Te Rauparaha -[2018-02-13T00:44:20.126] [INFO] cheese - inserting 1000 documents. first: This is a Hospital and last: Apex location -[2018-02-13T00:44:20.163] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:44:20.187] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:44:20.189] [INFO] cheese - inserting 1000 documents. first: South Pas and last: Pearson correlation -[2018-02-13T00:44:20.291] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:44:20.347] [INFO] cheese - inserting 1000 documents. first: 3317 Paris and last: 2285 Ron Helin -[2018-02-13T00:44:20.407] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:44:20.474] [INFO] cheese - inserting 1000 documents. first: Blacklane and last: Cypraea maculata -[2018-02-13T00:44:20.513] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:44:20.598] [INFO] cheese - inserting 1000 documents. first: MPI MPxpress and last: Wikipedia:Articles for deletion/Spinach with Chocolate Sauce -[2018-02-13T00:44:20.641] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:44:20.662] [INFO] cheese - inserting 1000 documents. first: Prosthetic Head (single) and last: Wikipedia:Articles for deletion/Grip (software) -[2018-02-13T00:44:20.678] [INFO] cheese - inserting 1000 documents. first: 11724 Ronaldhsu and last: Lubesse -[2018-02-13T00:44:20.704] [INFO] cheese - inserting 1000 documents. first: Ikaheka snake and last: Strange Sensation (band) -[2018-02-13T00:44:20.738] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:44:20.765] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:44:20.786] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Main Page history/2017 January 12 and last: Category:1964 in youth association football -[2018-02-13T00:44:20.827] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:44:20.928] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:44:21.057] [INFO] cheese - inserting 1000 documents. first: Category:Bossier Parish Cavaliers baseball coaches and last: Category:United Kingdom retail company stubs -[2018-02-13T00:44:21.101] [INFO] cheese - inserting 1000 documents. first: Balgstaedt and last: Nuestros Pequenos Hermanos -[2018-02-13T00:44:21.143] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:44:21.235] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:44:21.455] [INFO] cheese - inserting 1000 documents. first: Category:Closed railway lines in London and last: Wikipedia:Books/Hadronic Matter -[2018-02-13T00:44:21.467] [INFO] cheese - inserting 1000 documents. first: SG Rommerz and last: The Safe-Keeper's Secret -[2018-02-13T00:44:21.550] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:44:21.603] [INFO] cheese - inserting 1000 documents. first: Category:Maritime history of Norway and last: Canton of Amiens-2 -[2018-02-13T00:44:21.622] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:44:21.627] [INFO] cheese - inserting 1000 documents. first: Romborg Hotel and last: St Mary Magdalene's Church, Richmond -[2018-02-13T00:44:21.663] [INFO] cheese - inserting 1000 documents. first: Lord Blundell and last: Zalea -[2018-02-13T00:44:21.652] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:44:21.728] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:44:21.849] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T00:44:22.013] [INFO] cheese - inserting 1000 documents. first: Category:Ontario stubs and last: Template:Latest stable software release/KHTML -[2018-02-13T00:44:22.064] [INFO] cheese - inserting 1000 documents. first: Commandement des Operations Speciales and last: Emile Edouard Charles Antoine. Zola -[2018-02-13T00:44:22.091] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:44:22.113] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:44:22.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Books/Half-Life 2 titles and last: Locus 7 Site -[2018-02-13T00:44:22.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wiki Ed/University of British Columbia, Okanagan/Tectonics and Orogenesis (W2) and last: Wikipedia:Articles for deletion/San Escobar -[2018-02-13T00:44:22.306] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:44:22.327] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:44:22.367] [INFO] cheese - inserting 1000 documents. first: File:Worcester Telegram & Gazette front page.jpg and last: Fulk Bertrand of Provence -[2018-02-13T00:44:22.396] [INFO] cheese - inserting 1000 documents. first: College Louise Wegman (CLW) and last: High Synagogue (Krakow) -[2018-02-13T00:44:22.425] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:44:22.463] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:44:22.540] [INFO] cheese - inserting 1000 documents. first: List of rivers of Saudi Arabia and last: EFY Group -[2018-02-13T00:44:22.604] [INFO] cheese - inserting 1000 documents. first: Hectaphelia tortuosa and last: Category:History of the Gisborne District -[2018-02-13T00:44:22.620] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:44:22.671] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:44:22.686] [INFO] cheese - inserting 1000 documents. first: Abduelhak Hamid and last: Playground for Life -[2018-02-13T00:44:22.723] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:44:22.799] [INFO] cheese - inserting 1000 documents. first: Category:Ordinariates for Eastern Catholic faithful and last: Migrants and Refugee Section -[2018-02-13T00:44:22.818] [INFO] cheese - inserting 1000 documents. first: Nagasena Mahathera and last: Wikipedia:Books/U-5 class submarines -[2018-02-13T00:44:22.853] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:44:22.897] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:44:23.077] [INFO] cheese - inserting 1000 documents. first: Zvončari and last: Francesco sartori -[2018-02-13T00:44:23.100] [INFO] cheese - inserting 1000 documents. first: Category:Gisborne District geography stubs and last: File:Siti Nurhaliza - An Iconic Exhibition.png -[2018-02-13T00:44:23.125] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:44:23.149] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:44:23.189] [INFO] cheese - inserting 1000 documents. first: 2012 AFC Championship game and last: Lulua Province -[2018-02-13T00:44:23.283] [INFO] cheese - inserting 1000 documents. first: Wouldn't Change a Thing (song) and last: Tom Atter -[2018-02-13T00:44:23.299] [INFO] cheese - inserting 1000 documents. first: Furcifer oustaleti and last: Category:French pop songs -[2018-02-13T00:44:23.303] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:44:23.313] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Books/U.S. Presidential Elections and last: White Mascarene Starling -[2018-02-13T00:44:23.353] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:44:23.398] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:44:23.405] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:44:23.712] [INFO] cheese - inserting 1000 documents. first: Blood cell cancer and last: 2013-14 Algerian Cup -[2018-02-13T00:44:23.727] [INFO] cheese - inserting 1000 documents. first: Canon EF 75–300mm lens and last: Fernando Lopes Graca -[2018-02-13T00:44:23.774] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:44:23.795] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:44:23.879] [INFO] cheese - inserting 1000 documents. first: St. John the Baptist's Church, Flookburgh and last: Wikipedia:WikiProject Spam/LinkReports/rlcresearch.com -[2018-02-13T00:44:23.931] [INFO] cheese - inserting 1000 documents. first: Pogonocherus anatolicus and last: Helfgott, Harald -[2018-02-13T00:44:23.953] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:44:23.998] [INFO] cheese - inserting 1000 documents. first: Muninga and last: Asia Jaya LRT station -[2018-02-13T00:44:24.018] [INFO] cheese - inserting 1000 documents. first: The Curse of King Tut's Tomb (1980 film) and last: Category:Queen Anne architecture in Oregon -[2018-02-13T00:44:24.026] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:44:24.107] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:44:24.142] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T00:44:24.157] [INFO] cheese - inserting 1000 documents. first: CD Cobena and last: Gyorgy Cziffra, Jr. -[2018-02-13T00:44:24.250] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:44:24.339] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Community Network Projects and last: Psychogena -[2018-02-13T00:44:24.401] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:44:24.522] [INFO] cheese - inserting 1000 documents. first: Glogov Brod and last: Vũ Thư -[2018-02-13T00:44:24.554] [INFO] cheese - inserting 1000 documents. first: Alternatives economiques and last: Apurimac Brush-finch -[2018-02-13T00:44:24.560] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:44:24.566] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rlcresearch.com and last: Amfikleia–Elateia -[2018-02-13T00:44:24.627] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:44:24.633] [INFO] cheese - inserting 1000 documents. first: If You Ever Leave Me (Barbra Streisand song) and last: Category:Media companies established in the 17th century -[2018-02-13T00:44:24.642] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:44:24.752] [INFO] cheese - inserting 1000 documents. first: Counter-spy and last: Alvah Meyer -[2018-02-13T00:44:24.794] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:44:24.924] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:44:24.991] [INFO] cheese - inserting 1000 documents. first: The Wraith (1957 TV play) and last: K.C. Abraham -[2018-02-13T00:44:25.011] [INFO] cheese - inserting 1000 documents. first: Episode 1 (Coronation Street) and last: Romkerhall Waterfall -[2018-02-13T00:44:25.060] [INFO] cheese - inserting 1000 documents. first: Harrah, Ras al-Khaimah and last: Hernandez, Rafael -[2018-02-13T00:44:25.060] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:44:25.064] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:44:25.098] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:44:25.533] [INFO] cheese - inserting 1000 documents. first: Category:Media companies established in the 16th century and last: Category:Macedonian female skiers -[2018-02-13T00:44:25.591] [INFO] cheese - inserting 1000 documents. first: File:S-Mart (Mexican grocery) (logo).jpg and last: Wikipedia:Version 1.0 Editorial Team/Ireland articles by quality/33 -[2018-02-13T00:44:25.597] [INFO] cheese - inserting 1000 documents. first: Dirfys–Messapia and last: Sussex Ornithological Society -[2018-02-13T00:44:25.619] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:44:25.665] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:44:25.758] [INFO] cheese - inserting 1000 documents. first: Freemium and last: Afriland First Bank -[2018-02-13T00:44:25.793] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T00:44:25.933] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:44:25.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiCup/History/2010/Submissions/MisterWiki and last: Wish You Were Here? -[2018-02-13T00:44:25.965] [INFO] cheese - inserting 1000 documents. first: Shoot-down and last: Huquan Station -[2018-02-13T00:44:25.994] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:44:26.058] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:44:26.079] [INFO] cheese - inserting 1000 documents. first: Lakota, Cote d'Ivoire and last: Hermann Weingaertner -[2018-02-13T00:44:26.101] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:44:26.258] [INFO] cheese - inserting 1000 documents. first: Maculabatis astra and last: Phillips, Allan Robert -[2018-02-13T00:44:26.307] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Road with Cypress and Star and last: Lypiya River -[2018-02-13T00:44:26.390] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:44:26.411] [INFO] cheese - inserting 1000 documents. first: Hyderabad, India (disambiguation) and last: Ucchannanchan no Honoo no Challenge: Denryu IraIra Bo -[2018-02-13T00:44:26.424] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:44:26.442] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:44:26.456] [INFO] cheese - inserting 1000 documents. first: Category:Eastern European World War II resistance movements and last: Coello, Augusto -[2018-02-13T00:44:26.544] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:44:26.747] [INFO] cheese - inserting 1000 documents. first: Henry Gale (disambiguation) and last: Albanian muhajirs -[2018-02-13T00:44:26.783] [INFO] cheese - inserting 1000 documents. first: Template:Cite podcast/sandbox2 and last: Category:China University of Geosciences -[2018-02-13T00:44:26.808] [INFO] cheese - inserting 1000 documents. first: Mutter Kusters Fahrt zum Himmel and last: Second Fussball-Bundesliga 1989-90 -[2018-02-13T00:44:26.838] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:44:26.838] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:44:26.891] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:44:27.012] [INFO] cheese - inserting 1000 documents. first: Delta-6-desaturase and last: 2013 Thai Division 2 League Bangkok & field Region -[2018-02-13T00:44:27.071] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:44:27.167] [INFO] cheese - inserting 1000 documents. first: Monkey Island 2: LeChuck's Revenge Special Edition and last: Haddie Gill -[2018-02-13T00:44:27.277] [INFO] cheese - inserting 1000 documents. first: Charles Whish and last: 1994 U.S. Men's Clay Court Championships - Singles -[2018-02-13T00:44:27.281] [INFO] cheese - inserting 1000 documents. first: Bird's-nest orchid and last: Padina lui Danisor River -[2018-02-13T00:44:27.284] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:44:27.326] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:44:27.363] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:44:27.439] [INFO] cheese - inserting 1000 documents. first: Mígreni and last: Burrard Dry Dock -[2018-02-13T00:44:27.613] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:44:27.751] [INFO] cheese - inserting 1000 documents. first: Rogow (Silesian Voivodeship) and last: PBA on KBS 2 -[2018-02-13T00:44:27.771] [INFO] cheese - inserting 1000 documents. first: 1994 UCI Road World Championships - Women's Time Trial and last: 2005 Australian Open - Men's Doubles -[2018-02-13T00:44:27.785] [INFO] cheese - inserting 1000 documents. first: Category:China University of Geosciences faculty and last: Football at the 1971 Mediterranean Games -[2018-02-13T00:44:27.790] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:44:27.816] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:44:27.823] [INFO] cheese - inserting 1000 documents. first: 1978 Prize of Moscow News and last: Listed buildings in Kalundborg Municipality -[2018-02-13T00:44:27.883] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T00:44:27.913] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:44:28.026] [INFO] cheese - inserting 1000 documents. first: Template:User Finland/doc1 and last: Galasodes nervosella -[2018-02-13T00:44:28.124] [INFO] cheese - inserting 1000 documents. first: List of asteroids/39601-39700 and last: Yngvars saga vidforla -[2018-02-13T00:44:28.143] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:44:28.161] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:44:28.295] [INFO] cheese - inserting 1000 documents. first: 2005 Australian Open - Men's Singles and last: Wikipedia:Articles for deletion/Ashley Pangborn -[2018-02-13T00:44:28.311] [INFO] cheese - inserting 1000 documents. first: Punat and last: Category:Hong Kong jazz musicians -[2018-02-13T00:44:28.336] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:44:28.370] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:44:28.382] [INFO] cheese - inserting 1000 documents. first: 1995–96 Iowa Hawkeyes men's basketball team and last: The Neighbours -[2018-02-13T00:44:28.436] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:44:28.474] [INFO] cheese - inserting 1000 documents. first: Baha'i Months and last: Josip Skoric -[2018-02-13T00:44:28.501] [INFO] cheese - inserting 1000 documents. first: Giacinto Diana and last: Fly Manufacturing Company Building -[2018-02-13T00:44:28.513] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:44:28.567] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:44:28.653] [INFO] cheese - inserting 1000 documents. first: Chlorippe vacuna f. albofasciata and last: Pronkstilleven -[2018-02-13T00:44:28.801] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:44:28.922] [INFO] cheese - inserting 1000 documents. first: Beit (surname) and last: 2008 Mercedes Cup - Singles -[2018-02-13T00:44:28.959] [INFO] cheese - inserting 1000 documents. first: Chama (Zambia) and last: Angyalfold -[2018-02-13T00:44:29.003] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:44:29.041] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:44:29.047] [INFO] cheese - inserting 1000 documents. first: Stephenson, James and last: Bethell, Hugh -[2018-02-13T00:44:29.149] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:44:29.172] [INFO] cheese - inserting 1000 documents. first: File:4sahEP.jpg and last: Ros henderson -[2018-02-13T00:44:29.301] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:44:29.392] [INFO] cheese - inserting 1000 documents. first: 2008 Monte Carlo Masters - Doubles and last: The King (comics) -[2018-02-13T00:44:29.408] [INFO] cheese - inserting 1000 documents. first: Shili Alaa and last: LGV Mediterranee -[2018-02-13T00:44:29.416] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:44:29.454] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:44:29.529] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/muscle.ca and last: Yves Behar -[2018-02-13T00:44:29.551] [INFO] cheese - inserting 1000 documents. first: Ken Melman and last: Category:Tourist attractions in Zamboanga City -[2018-02-13T00:44:29.634] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:44:29.677] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:44:29.719] [INFO] cheese - inserting 1000 documents. first: File:Durham Bulls Athletic Park (logo).png and last: Maharlika Village, Taguig -[2018-02-13T00:44:29.735] [INFO] cheese - inserting 1000 documents. first: Secaruia River and last: Bonar, Leon -[2018-02-13T00:44:29.753] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1980 Summer Olympics - Women's javelin throw and last: Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. -[2018-02-13T00:44:29.812] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:44:29.811] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:44:29.834] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:44:29.973] [INFO] cheese - inserting 1000 documents. first: Phoenix street railway and last: Mökkurkálfi -[2018-02-13T00:44:30.097] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:44:30.165] [INFO] cheese - inserting 1000 documents. first: Coenzyme Q - cytochrome c reductase and last: Portal:Volcanoes/Volcanoes topics -[2018-02-13T00:44:30.200] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:44:30.210] [INFO] cheese - inserting 1000 documents. first: File:McLean's Scene.jpg and last: Malik (Bihar) -[2018-02-13T00:44:30.307] [INFO] cheese - inserting 1000 documents. first: Santa Rosa de Goias and last: Dhigemaahuttaa -[2018-02-13T00:44:30.340] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:44:30.375] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:44:30.555] [INFO] cheese - inserting 1000 documents. first: Alla mia età Tour 2009-2010 and last: Category:Road transport in Malta -[2018-02-13T00:44:30.600] [INFO] cheese - inserting 1000 documents. first: I'm a Juvenile Delinquent - Jail Me! and last: Powerlifting at the 2008 Summer Paralympics - Women's 82.5 kg -[2018-02-13T00:44:30.618] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:44:30.658] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:44:30.686] [INFO] cheese - inserting 1000 documents. first: Soimah Pancawati and last: Richard Bowyer (priest) -[2018-02-13T00:44:30.726] [INFO] cheese - inserting 1000 documents. first: Aldi Sud and last: Silistea River (Sitna) -[2018-02-13T00:44:30.780] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:44:30.779] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T00:44:30.933] [INFO] cheese - inserting 1000 documents. first: Ryan McFadyen and last: Highway 7 Alternate (Georgia) -[2018-02-13T00:44:30.963] [INFO] cheese - inserting 1000 documents. first: Malik (Kashmiri tribe) and last: Delayed release (linguistics) -[2018-02-13T00:44:31.000] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:44:31.002] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:44:31.025] [INFO] cheese - inserting 1000 documents. first: Draft:ClearBlade and last: Krishna Chandra Punetha -[2018-02-13T00:44:31.082] [INFO] cheese - inserting 1000 documents. first: La Casa de Madame Lulu and last: Pierre francois keraudren -[2018-02-13T00:44:31.097] [INFO] cheese - inserting 1000 documents. first: PRADO - Public Register of Travel and Identity Documents Online and last: Swimming at the 2005 Maccabiah Games - Women's 400 metre freestyle -[2018-02-13T00:44:31.102] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:31.106] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:44:31.155] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:44:31.217] [INFO] cheese - inserting 1000 documents. first: Iowa Highway 15 (south) and last: Paombong High School -[2018-02-13T00:44:31.252] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:44:31.339] [INFO] cheese - inserting 1000 documents. first: Fussball-Bundesliga 1992-93 and last: Ostrow Wlkp. -[2018-02-13T00:44:31.372] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:44:31.485] [INFO] cheese - inserting 1000 documents. first: Zhang Yiyi and last: Wikipedia:Articles for deletion/Sting (musical phrase) -[2018-02-13T00:44:31.498] [INFO] cheese - inserting 1000 documents. first: Georgia 7 Alternate and last: Portal:Military of Australia/Units/October 31 -[2018-02-13T00:44:31.565] [INFO] cheese - inserting 1000 documents. first: Khojki (script) and last: Category:Languages of Guimaras -[2018-02-13T00:44:31.565] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:44:31.572] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:44:31.624] [INFO] cheese - inserting 1000 documents. first: Saba Farmanfarmayan and last: Renewable energy subsidies -[2018-02-13T00:44:31.670] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:44:31.779] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:44:31.849] [INFO] cheese - inserting 1000 documents. first: Celestine Marie and last: Dragon Ball Z: Cho Saiya Densetsu -[2018-02-13T00:44:31.928] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:44:31.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Correo and last: Bonanza Air Lines Inc -[2018-02-13T00:44:32.055] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:44:32.420] [INFO] cheese - inserting 1000 documents. first: Rhemes-Saint-Georges and last: !Alarma! magazine -[2018-02-13T00:44:32.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/en.qantara.de and last: S. M. Hammond -[2018-02-13T00:44:32.464] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Crossopteryx and last: Presleyesque -[2018-02-13T00:44:32.472] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:44:32.533] [INFO] cheese - inserting 1000 documents. first: Paulo Cesar Vinha State Park and last: Category:Roman Catholic cathedrals in Colorado -[2018-02-13T00:44:32.554] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:44:32.592] [INFO] cheese - inserting 1000 documents. first: Elvis Pres;ey and last: MS Argentina (1929) -[2018-02-13T00:44:32.617] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:44:32.653] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:44:32.738] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T00:44:32.842] [INFO] cheese - inserting 1000 documents. first: Bertrada of Prum and last: Wikipedia:WikiProject Spam/LinkSearch/brandsoftheworld.com -[2018-02-13T00:44:32.859] [INFO] cheese - inserting 1000 documents. first: Wrestling at the 2000 Summer Olympics - Men's freestyle 76 kg and last: Dragon Ball: World's Greatest Adventure -[2018-02-13T00:44:32.916] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:44:32.990] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:44:33.324] [INFO] cheese - inserting 1000 documents. first: Grey-headed swamphen and last: Miaowei Dam -[2018-02-13T00:44:33.425] [INFO] cheese - inserting 1000 documents. first: Micah Townshend and last: Wikipedia:Articles for deletion/Royal Rangers (2nd nomination) -[2018-02-13T00:44:33.436] [INFO] cheese - inserting 1000 documents. first: Lurøya, Nordland and last: Charter Ninety-Seven -[2018-02-13T00:44:33.481] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:44:33.593] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:44:33.617] [INFO] cheese - inserting 1000 documents. first: An der schoenen Blauen Donau and last: Ein Lied kann eine Bruecke sein -[2018-02-13T00:44:33.623] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:44:33.727] [INFO] cheese - inserting 1000 documents. first: 1968 NFL Championship Game and last: Transport Phenomenon -[2018-02-13T00:44:33.725] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:44:33.841] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T00:44:34.057] [INFO] cheese - inserting 1000 documents. first: Kentucky Route 2830 and last: Portal:Byzantine Empire/Selected picture/1 -[2018-02-13T00:44:34.089] [INFO] cheese - inserting 1000 documents. first: HMS Cuckoo (1806) and last: Battle of Hamra Al Asad -[2018-02-13T00:44:34.092] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:44:34.219] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T00:44:34.262] [INFO] cheese - inserting 1000 documents. first: Territorial Prelature of Acre e Purus and last: Akram Zuway -[2018-02-13T00:44:34.342] [INFO] cheese - inserting 1000 documents. first: Epimelitta postimelina and last: Template:Find sources multi/gnewspapers -[2018-02-13T00:44:34.409] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:44:34.459] [INFO] cheese - inserting 1000 documents. first: Brunatre and last: Stanislaw Pieta -[2018-02-13T00:44:34.467] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T00:44:34.478] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:44:34.694] [INFO] cheese - inserting 1000 documents. first: Keith Biles and last: Tinajo (place) -[2018-02-13T00:44:34.716] [INFO] cheese - inserting 1000 documents. first: Aragvi and last: Jaroslav Kristek -[2018-02-13T00:44:34.816] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T00:44:34.828] [INFO] cheese - inserting 1000 documents. first: Juan Jose Castelli and last: Moscardon, Teruel -[2018-02-13T00:44:34.813] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:44:34.874] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:44:35.011] [INFO] cheese - inserting 1000 documents. first: Draft:Hello God (song) and last: The Forest Seasons -[2018-02-13T00:44:35.128] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:44:35.175] [INFO] cheese - inserting 1000 documents. first: Juan Jose Amezaga and last: Xelil Duhoki -[2018-02-13T00:44:35.185] [INFO] cheese - inserting 1000 documents. first: Chizinau and last: File:Ryanair logo 2013(1).svg -[2018-02-13T00:44:35.226] [INFO] cheese - inserting 1000 documents. first: Princess Nicholas of Greece and Denmark and last: Multinational Force – Iraq -[2018-02-13T00:44:35.240] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:44:35.260] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:44:35.347] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T00:44:35.533] [INFO] cheese - inserting 1000 documents. first: Ieremia Movila and last: Torvizcon, Granada -[2018-02-13T00:44:35.563] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:44:35.702] [INFO] cheese - inserting 1000 documents. first: Category:1979 in New Zealand and last: Perennating organ -[2018-02-13T00:44:35.782] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:44:35.804] [INFO] cheese - inserting 1000 documents. first: Neopalpa donaldtrumpi and last: Category:Women's organizations in Norway -[2018-02-13T00:44:35.859] [INFO] cheese - inserting 1000 documents. first: Why Bother? (essay) and last: Wikipedia:Articles for deletion/Marc Edelman -[2018-02-13T00:44:35.875] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:44:35.917] [INFO] cheese - inserting 1000 documents. first: Portelandia and last: Vaesby Centrum -[2018-02-13T00:44:35.958] [INFO] cheese - inserting 1000 documents. first: FGREP and last: Spanish submarine Tramontana (S-74) -[2018-02-13T00:44:36.004] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:44:36.051] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T00:44:36.151] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:44:36.403] [INFO] cheese - inserting 1000 documents. first: Big Muff p and last: Trongisvagsfjordur -[2018-02-13T00:44:36.474] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:44:36.560] [INFO] cheese - inserting 1000 documents. first: Category:Women's organizations in Scotland and last: Bham airport -[2018-02-13T00:44:36.625] [INFO] cheese - inserting 1000 documents. first: Charlie Ginsburg and last: Bègles-Bordeaux -[2018-02-13T00:44:36.654] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:44:36.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GS/CC and last: Kenkabō Inoue -[2018-02-13T00:44:36.769] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T00:44:36.847] [INFO] cheese - inserting 1000 documents. first: Magnus Minneskold and last: Grenville--Dundas -[2018-02-13T00:44:36.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/sexdolls-sexdolls.com and last: Behavioral urbanism -[2018-02-13T00:44:36.874] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:44:36.883] [INFO] cheese - batch complete in: 1.536 secs -[2018-02-13T00:44:36.984] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:44:37.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/108.170.85.234/Archive and last: Pavlo Klimkin -[2018-02-13T00:44:37.217] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T00:44:37.233] [INFO] cheese - inserting 1000 documents. first: Rua Vinte Cinco de Marco and last: Runovici -[2018-02-13T00:44:37.249] [INFO] cheese - inserting 1000 documents. first: Giant grasshopper and last: Karpiński (surname) -[2018-02-13T00:44:37.257] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:44:37.310] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:44:37.409] [INFO] cheese - inserting 1000 documents. first: Inoue Koichi and last: 1965 in jazz -[2018-02-13T00:44:37.421] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Anniversaries/June/June 3 and last: Template:IranPRS -[2018-02-13T00:44:37.443] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:44:37.480] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:44:37.566] [INFO] cheese - inserting 1000 documents. first: Tsao Zhen and last: Maria de Huerva, Spain -[2018-02-13T00:44:37.599] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:44:37.620] [INFO] cheese - inserting 1000 documents. first: Madiun Regency and last: Template:NOCin1948WinterOlympics -[2018-02-13T00:44:37.707] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:44:37.725] [INFO] cheese - inserting 1000 documents. first: Category:Colgate Raiders women's basketball navigational boxes and last: Castle of Pembroke -[2018-02-13T00:44:37.783] [INFO] cheese - inserting 1000 documents. first: Category:Spanish musical films and last: San Diego City Council elections, 2006 -[2018-02-13T00:44:37.792] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:44:37.850] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:44:37.933] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Selected Biography/11 and last: Al Naslah -[2018-02-13T00:44:37.962] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:44:37.993] [INFO] cheese - inserting 1000 documents. first: The Betrayal Knows My Name and last: George Mannings -[2018-02-13T00:44:38.039] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Colditz Castle/archive1 and last: File:Ugly Betty s01e03.png -[2018-02-13T00:44:38.068] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:44:38.125] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:44:38.258] [INFO] cheese - inserting 1000 documents. first: Better With You Tour and last: File:Prozakhiphop.jpg -[2018-02-13T00:44:38.271] [INFO] cheese - inserting 1000 documents. first: P.S. Kroyer and last: Fastos. Ostrailian fo bia. -[2018-02-13T00:44:38.374] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:44:38.425] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:44:38.436] [INFO] cheese - inserting 1000 documents. first: San Diego City Council elections, 2008 and last: 2014 Pro Kabaddi League season -[2018-02-13T00:44:38.475] [INFO] cheese - inserting 1000 documents. first: Castle of Bridgnorth and last: Category:Renaissance sculptures by artist -[2018-02-13T00:44:38.542] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:44:38.615] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:44:38.765] [INFO] cheese - inserting 1000 documents. first: Cobanlar and last: Bundesministerium fuer Familie, Senioren, Frauen und Jugend -[2018-02-13T00:44:38.828] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:44:38.831] [INFO] cheese - inserting 1000 documents. first: Ghiduţ Creek and last: File:Eddie Rabbitt - Step by Step.jpg -[2018-02-13T00:44:38.917] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:44:38.972] [INFO] cheese - inserting 1000 documents. first: Looking For Jake and last: Place of the Way -[2018-02-13T00:44:39.053] [INFO] cheese - inserting 1000 documents. first: Mahammadpur and last: Category:FC Ceahlăul Piatra Neamț -[2018-02-13T00:44:39.088] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:44:39.091] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:44:39.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gov.ph and last: Romanità -[2018-02-13T00:44:39.165] [INFO] cheese - inserting 1000 documents. first: Chung hua min kuo and last: Vincent Tee -[2018-02-13T00:44:39.200] [INFO] cheese - inserting 1000 documents. first: Assemblee parlementaire de la Francophonie and last: Felix Houphouet-Boigny Cup (Africa) -[2018-02-13T00:44:39.218] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:44:39.253] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:44:39.261] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:44:39.608] [INFO] cheese - inserting 1000 documents. first: Waiwera Infinity Thermal Spa Resort and last: Wikipedia:WikiProject Spam/LinkReports/websahar.com -[2018-02-13T00:44:39.670] [INFO] cheese - inserting 1000 documents. first: Erie--Lincoln and last: Koecher -[2018-02-13T00:44:39.693] [INFO] cheese - inserting 1000 documents. first: Category:FC Ceahlăul Piatra Neamț players and last: List of Republic of Ireland national futsal team matches -[2018-02-13T00:44:39.694] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:44:39.719] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:44:39.759] [INFO] cheese - inserting 1000 documents. first: FernandoSucre and last: Gocoo -[2018-02-13T00:44:39.818] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:44:39.862] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:44:39.930] [INFO] cheese - inserting 1000 documents. first: Hanoi International School and last: Category:Quaker articles by importance -[2018-02-13T00:44:40.035] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:44:40.114] [INFO] cheese - inserting 1000 documents. first: Category:Serbian football clubs 2009–10 season and last: Category:Schools in Cheshire East -[2018-02-13T00:44:40.148] [INFO] cheese - inserting 1000 documents. first: Hosjoe Church and last: Clatterbridge -[2018-02-13T00:44:40.246] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:44:40.228] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:44:40.533] [INFO] cheese - inserting 1000 documents. first: Penis gag and last: Flying Disk -[2018-02-13T00:44:40.559] [INFO] cheese - inserting 1000 documents. first: Hans-Juergen Pohmann and last: Wikipedia:Requests for checkuser/Case/JSane -[2018-02-13T00:44:40.572] [INFO] cheese - inserting 1000 documents. first: Herzegovina Uprising (1852-62) and last: Streltzoviella insularis -[2018-02-13T00:44:40.577] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:44:40.593] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:44:40.601] [INFO] cheese - inserting 1000 documents. first: If You Ever Change Your Mind and last: State Route 178 (New York) -[2018-02-13T00:44:40.654] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:44:40.699] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:44:40.788] [INFO] cheese - inserting 1000 documents. first: File:Undocumented2010Poster.jpg and last: Template:Fb competition 2012 Torneo de Honor -[2018-02-13T00:44:40.850] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:44:40.970] [INFO] cheese - inserting 1000 documents. first: Category:Law firms established in 1826 and last: Category:Niagara River Lions coaches -[2018-02-13T00:44:40.970] [INFO] cheese - inserting 1000 documents. first: Urmila Aryal and last: Henkka Seppaelae -[2018-02-13T00:44:40.992] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:44:41.165] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T00:44:41.232] [INFO] cheese - inserting 1000 documents. first: Nigeria Defence Academy and last: John Neschling -[2018-02-13T00:44:41.292] [INFO] cheese - inserting 1000 documents. first: Herbert B. Maw and last: Template:Events at the 2003 Pan American Games -[2018-02-13T00:44:41.303] [INFO] cheese - inserting 1000 documents. first: Jagdfliegerfuehrer Rumaenien and last: Tuscherz Alfermee -[2018-02-13T00:44:41.307] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:44:41.335] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:44:41.360] [INFO] cheese - inserting 1000 documents. first: Category:MEPs for Hungary 2014–19 and last: Markham Stouffville Hospital Terminal -[2018-02-13T00:44:41.361] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:44:41.458] [INFO] cheese - inserting 1000 documents. first: Natalya Kubrina and last: Gregormpista -[2018-02-13T00:44:41.465] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:44:41.562] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:44:41.583] [INFO] cheese - inserting 1000 documents. first: Category:US curling champions and last: Lohnbuchhalter Kremke -[2018-02-13T00:44:41.634] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:44:41.662] [INFO] cheese - inserting 1000 documents. first: Furstenstein and last: Iskembe Corbas -[2018-02-13T00:44:41.694] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:44:42.011] [INFO] cheese - inserting 1000 documents. first: Organized crime in Bosnia and Herzegovina and last: Mohamed Nagy -[2018-02-13T00:44:42.037] [INFO] cheese - inserting 1000 documents. first: Harold Sidney Harmsworth, 1st Viscount Rothermere and last: File:Wall of Serpents.jpg -[2018-02-13T00:44:42.077] [INFO] cheese - inserting 1000 documents. first: File:Capitol Pride Salem Logo.jpg.png and last: Category:Étoile Lusitana players -[2018-02-13T00:44:42.094] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:44:42.101] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:44:42.114] [INFO] cheese - inserting 1000 documents. first: Nephopteryx validella and last: Multicoloria berlandella -[2018-02-13T00:44:42.116] [INFO] cheese - inserting 1000 documents. first: Premysl, the Ploughman and last: Louis Louis-Dreyfus -[2018-02-13T00:44:42.163] [INFO] cheese - inserting 1000 documents. first: Ruth Platt and last: Monarcha melanonotus -[2018-02-13T00:44:42.165] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:44:42.178] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:42.208] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:44:42.253] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:44:42.652] [INFO] cheese - inserting 1000 documents. first: A Stitch in Time (Continuum) and last: Category:Lists of tallest buildings in New Jersey -[2018-02-13T00:44:42.659] [INFO] cheese - inserting 1000 documents. first: Template:Yugoslavia squad 1967 Mediterranean Games (men's handball) and last: Template:The Fabulous Kangaroos -[2018-02-13T00:44:42.668] [INFO] cheese - inserting 1000 documents. first: Template:User jewell and last: 1942–43 Blackpool F.C. season -[2018-02-13T00:44:42.684] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Magazines/Animage/2003/06 and last: HMS Ambassador -[2018-02-13T00:44:42.732] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:44:42.742] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:44:42.791] [INFO] cheese - inserting 1000 documents. first: Titanic, mille e una storia and last: Category:Jurassic plants -[2018-02-13T00:44:42.797] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:44:42.811] [INFO] cheese - inserting 1000 documents. first: The Broken heart and last: Wikipedia:Articles for deletion/Hate Song -[2018-02-13T00:44:42.852] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:44:42.904] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:44:42.909] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:44:43.311] [INFO] cheese - inserting 1000 documents. first: 2017 Delaware Fightin' Blue Hens football team and last: Category:United States regulations -[2018-02-13T00:44:43.345] [INFO] cheese - inserting 1000 documents. first: Simon Husbands and last: Mount Meeker -[2018-02-13T00:44:43.378] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:44:43.433] [INFO] cheese - inserting 1000 documents. first: Carlos Isaac and last: Barbara Kuriger -[2018-02-13T00:44:43.404] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:44:43.546] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:44:43.599] [INFO] cheese - inserting 1000 documents. first: Tom Cudahy and last: Category:Worth Dying For albums -[2018-02-13T00:44:43.668] [INFO] cheese - inserting 1000 documents. first: Penn National Race Course and last: Italian profanity -[2018-02-13T00:44:43.719] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:44:43.751] [INFO] cheese - inserting 1000 documents. first: Texas Women and last: File:Az catt 1953.jpg -[2018-02-13T00:44:43.876] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:44:43.879] [INFO] cheese - inserting 1000 documents. first: Macadam Avenue and last: Southwark Playhouse -[2018-02-13T00:44:43.969] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:44:44.096] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T00:44:44.170] [INFO] cheese - inserting 1000 documents. first: Category:Works set in the 4th century and last: David Cutler (disambiguation) -[2018-02-13T00:44:44.248] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:44:44.284] [INFO] cheese - inserting 1000 documents. first: Argyrodines pulchella and last: La bande à Renaud -[2018-02-13T00:44:44.314] [INFO] cheese - inserting 1000 documents. first: Arab Briton and last: Infanta Ana de Jesus Maria, Duchess of Loule -[2018-02-13T00:44:44.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Silver Knight Awards and last: Category:Funiculinidae -[2018-02-13T00:44:44.344] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:44:44.379] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:44:44.459] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:44:44.536] [INFO] cheese - inserting 1000 documents. first: 1977 in heavy metal music and last: Hezbollah military activities -[2018-02-13T00:44:44.593] [INFO] cheese - inserting 1000 documents. first: Zoquitlán and last: Paranginskiy -[2018-02-13T00:44:44.626] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:44:44.653] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:44:44.678] [INFO] cheese - inserting 1000 documents. first: Be My Lover Now and last: Mauricio dos Santos Nascimento -[2018-02-13T00:44:44.709] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:44:44.711] [INFO] cheese - inserting 1000 documents. first: Camaquã State Park and last: Template:Gastropods.com -[2018-02-13T00:44:44.765] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:44:44.888] [INFO] cheese - inserting 1000 documents. first: La Bande a Renaud and last: Wikipedia:Today's featured article/July 8, 2014 -[2018-02-13T00:44:44.926] [INFO] cheese - inserting 1000 documents. first: Whiston, Staffordshire and last: Here's Your Mule -[2018-02-13T00:44:44.929] [INFO] cheese - inserting 1000 documents. first: Donna Theodore and last: La Melodia de la Calle -[2018-02-13T00:44:44.944] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:44:44.970] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:44:44.980] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:44:45.021] [INFO] cheese - inserting 1000 documents. first: Paranginski and last: File:Now the Animals Have a Voice.jpg -[2018-02-13T00:44:45.073] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:44:45.151] [INFO] cheese - inserting 1000 documents. first: Saint Nicholas Serbian Orthodox Church, Szeged and last: Wikipedia:Articles for deletion/Casanova Frankenstein -[2018-02-13T00:44:45.162] [INFO] cheese - inserting 1000 documents. first: Panelist and last: Xak III: The Eternal Recurrence -[2018-02-13T00:44:45.200] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:44:45.228] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:44:45.246] [INFO] cheese - inserting 1000 documents. first: Stara Lubovna District and last: Sanindo -[2018-02-13T00:44:45.267] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2014-07-08 and last: Berdmore's narrow mouthed frogs -[2018-02-13T00:44:45.287] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:44:45.316] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:44:45.395] [INFO] cheese - inserting 1000 documents. first: List of RPM number-one country singles chart of 1996 (Canada) and last: File:Aranjman 2011.jpeg -[2018-02-13T00:44:45.441] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:44:45.447] [INFO] cheese - inserting 1000 documents. first: Pitcairnia heterophylla and last: Go Away Stowaway -[2018-02-13T00:44:45.501] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:44:45.518] [INFO] cheese - inserting 1000 documents. first: Nymphaea zenkeri 'Red' and last: Saint Antoine Street -[2018-02-13T00:44:45.556] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:44:45.579] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nhadephanoi.net and last: NBER Working Paper -[2018-02-13T00:44:45.638] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:44:45.689] [INFO] cheese - inserting 1000 documents. first: Category:Hurricane (band) albums and last: McGregor Formation -[2018-02-13T00:44:45.779] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:44:45.868] [INFO] cheese - inserting 1000 documents. first: KTTD and last: Picton Express -[2018-02-13T00:44:45.962] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:44:46.043] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2012 AFC Cup and last: Small Smiles Centers -[2018-02-13T00:44:46.057] [INFO] cheese - inserting 1000 documents. first: Category:War and politics and last: Narsimha (film) -[2018-02-13T00:44:46.102] [INFO] cheese - inserting 1000 documents. first: Physiological reviews and last: Wikipedia:Articles for deletion/Australian Wildlife Secrets Magazine -[2018-02-13T00:44:46.126] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:44:46.190] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:44:46.193] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:44:46.242] [INFO] cheese - inserting 1000 documents. first: Prosser Limestone and last: Wikipedia:Articles for deletion/Dave Wilson (Ontario politician) -[2018-02-13T00:44:46.263] [INFO] cheese - inserting 1000 documents. first: Skipton Girls High and last: 11th Regiment of Militia -[2018-02-13T00:44:46.322] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:44:46.330] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:44:46.679] [INFO] cheese - inserting 1000 documents. first: Always & For Real and last: Pixies (band) -[2018-02-13T00:44:46.736] [INFO] cheese - inserting 1000 documents. first: Category:Big Ten Conference men's soccer standings templates and last: Category:Passenger rail transport in Iran -[2018-02-13T00:44:46.748] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:44:46.766] [INFO] cheese - inserting 1000 documents. first: Christmas bomber and last: Category:1990 conferences -[2018-02-13T00:44:46.790] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:44:46.819] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:44:46.907] [INFO] cheese - inserting 1000 documents. first: Acropora humilis and last: Xiangxiang City -[2018-02-13T00:44:46.955] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:44:47.063] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2012 Summer Olympics and last: Özal ailesi -[2018-02-13T00:44:47.065] [INFO] cheese - inserting 1000 documents. first: Mandunyane and last: In the Stone -[2018-02-13T00:44:47.123] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T00:44:47.136] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:47.188] [INFO] cheese - inserting 1000 documents. first: Images (Kenny Barron album) and last: South African general election, 2019 -[2018-02-13T00:44:47.204] [INFO] cheese - inserting 1000 documents. first: Prost AP01 and last: Cathay Pacific Cargo -[2018-02-13T00:44:47.232] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:44:47.257] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:44:47.315] [INFO] cheese - inserting 1000 documents. first: Template:Poland-wintersport-bio-stub and last: Timeline of the 2009–10 South Pacific cyclone season -[2018-02-13T00:44:47.376] [INFO] cheese - inserting 1000 documents. first: Özal aile and last: Hovsgol aymag -[2018-02-13T00:44:47.365] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:44:47.401] [INFO] cheese - inserting 1000 documents. first: Flock-1 18 and last: Teaching Mathematics and Its Applications -[2018-02-13T00:44:47.433] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:44:47.480] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:44:47.563] [INFO] cheese - inserting 1000 documents. first: Smile Away and last: Wicked Woman (album) -[2018-02-13T00:44:47.623] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:44:47.685] [INFO] cheese - inserting 1000 documents. first: Volume One and last: Andree Clair -[2018-02-13T00:44:47.711] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:44:47.716] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Jayne wind up and last: Imma hemixanthella -[2018-02-13T00:44:47.767] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected article/44, 2006 and last: Wikipedia:WikiProject Jewish Culture -[2018-02-13T00:44:47.832] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:44:47.898] [INFO] cheese - inserting 1000 documents. first: Portal:Metro Manila/Intro2 and last: Caesar (I Blame Coco song) -[2018-02-13T00:44:47.936] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:44:48.049] [INFO] cheese - inserting 1000 documents. first: Alastair Ross Goobey and last: Intercontinental Cup winning managers -[2018-02-13T00:44:48.083] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:44:48.119] [INFO] cheese - inserting 1000 documents. first: Jim Dutton and last: Franco manzi -[2018-02-13T00:44:48.258] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:44:48.287] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:44:48.407] [INFO] cheese - inserting 1000 documents. first: Limigantes (Iazyges serfs) and last: Underground: The Tokyo Gas Attack and the Japanese Psyche (Haruki Murakami book) -[2018-02-13T00:44:48.555] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:44:48.584] [INFO] cheese - inserting 1000 documents. first: Tutasa, Boyaca and last: Kiritimati sandpiper -[2018-02-13T00:44:48.653] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:44:48.750] [INFO] cheese - inserting 1000 documents. first: 2012 FINA World Swimming Championships (25m) and last: List of newspapers published in Kentucky -[2018-02-13T00:44:48.807] [INFO] cheese - inserting 1000 documents. first: 2012 UConn Huskies football and last: Category:Wikipedia sockpuppets of Laksh talreja -[2018-02-13T00:44:48.813] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:44:48.870] [INFO] cheese - inserting 1000 documents. first: Doin' It (LL Cool J song) and last: 38th Wisconsin Volunteer Infantry Regiment -[2018-02-13T00:44:48.978] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T00:44:49.017] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:44:49.108] [INFO] cheese - inserting 1000 documents. first: Jose Romeo and last: Yildiz class -[2018-02-13T00:44:49.165] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:44:49.165] [INFO] cheese - inserting 1000 documents. first: Ashley Madison and last: Earldom of Radnor -[2018-02-13T00:44:49.251] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T00:44:49.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elitefoot.com and last: Yves Bitséki Moto -[2018-02-13T00:44:49.417] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:44:49.426] [INFO] cheese - inserting 1000 documents. first: Karl Friedrich von Weizsacker and last: La Boheme (Leoncavallo) -[2018-02-13T00:44:49.429] [INFO] cheese - inserting 1000 documents. first: List of newspapers published in Louisiana and last: Go Youn-ha -[2018-02-13T00:44:49.442] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Orubel and last: Venetian–Genoese Wars -[2018-02-13T00:44:49.467] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:44:49.473] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:44:49.511] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:44:49.623] [INFO] cheese - inserting 1000 documents. first: List of hospitals in Minnesota and last: Sliven, Bulgaria -[2018-02-13T00:44:49.632] [INFO] cheese - inserting 1000 documents. first: Washington Redskin and last: AEG Electrolux -[2018-02-13T00:44:49.659] [INFO] cheese - inserting 1000 documents. first: Stephen Schlesinger and last: Michael Kostka -[2018-02-13T00:44:49.659] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:44:49.667] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:44:49.699] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:44:49.811] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations in the canton of Aargau and last: Paul Ernst (Avenger writer) -[2018-02-13T00:44:49.860] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:44:49.918] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sangita Phogat and last: Template:Buriram United F.C. matches -[2018-02-13T00:44:49.924] [INFO] cheese - inserting 1000 documents. first: Yu-bin and last: Batei Nissan Bak -[2018-02-13T00:44:49.971] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:44:49.970] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:44:49.984] [INFO] cheese - inserting 1000 documents. first: Jan Bjoerklund and last: Dundgovi Aymag -[2018-02-13T00:44:50.028] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:44:50.030] [INFO] cheese - inserting 1000 documents. first: Category:Historic constituencies in County Offaly and last: Category:Western Equatoria -[2018-02-13T00:44:50.088] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:44:50.103] [INFO] cheese - inserting 1000 documents. first: Shumen, Bulgaria and last: Katun -[2018-02-13T00:44:50.178] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:44:50.224] [INFO] cheese - inserting 1000 documents. first: Arainn Mhor and last: Bojan Nikolic -[2018-02-13T00:44:50.246] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:44:50.346] [INFO] cheese - inserting 1000 documents. first: Lockheed F-94C-1-LO Starfire and last: Joseph M. Fletcher -[2018-02-13T00:44:50.381] [INFO] cheese - inserting 1000 documents. first: Mascarene Grass Frog and last: Hyeonmi -[2018-02-13T00:44:50.397] [INFO] cheese - inserting 1000 documents. first: Category:2017 in men's volleyball and last: South Lindsey Township, Benton County, Missouri -[2018-02-13T00:44:50.438] [INFO] cheese - inserting 1000 documents. first: Orland Main Airfield and last: Mada'in -[2018-02-13T00:44:50.453] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:44:50.540] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:44:50.582] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:44:50.595] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:44:50.726] [INFO] cheese - inserting 1000 documents. first: Saint Stanislaus Roman Catholic Church Complex and last: Peterborough Greyhound Stadium -[2018-02-13T00:44:50.775] [INFO] cheese - inserting 1000 documents. first: Lucius Cornelius Merula (consul 87 BC) and last: Jason Bell (American football) -[2018-02-13T00:44:50.806] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:44:50.902] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:44:51.054] [INFO] cheese - inserting 1000 documents. first: Le peril jeune and last: Jozin z bazin -[2018-02-13T00:44:51.169] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:44:51.255] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian WikiJanitors and last: Zoom (TV series) -[2018-02-13T00:44:51.258] [INFO] cheese - inserting 1000 documents. first: Ukrainian Catholic Metropolitan Archdiocese of Ivano-Frankivsk and last: Template:1994–95 NHL Western Conference standings/doc -[2018-02-13T00:44:51.290] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Top 25 Report/December 2009 and last: Draft:Leopold and His Fiction -[2018-02-13T00:44:51.321] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:44:51.356] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:44:51.413] [INFO] cheese - inserting 1000 documents. first: Pethia manipurensis and last: State Route 345 (New York) -[2018-02-13T00:44:51.413] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:44:51.541] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:44:51.661] [INFO] cheese - inserting 1000 documents. first: KXTS-LD and last: North Carolina Highway 10 (mid-1930s) -[2018-02-13T00:44:51.765] [INFO] cheese - inserting 1000 documents. first: 11th Regiment of Militia (Continental Army) and last: Homosexual Offences (Northern Ireland) Order 1982 -[2018-02-13T00:44:51.771] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:44:51.810] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:44:51.970] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CUP/S/JC and last: New York Route 376 -[2018-02-13T00:44:51.982] [INFO] cheese - inserting 1000 documents. first: Template:RWS/doc and last: NBA 2K15 (videogame) -[2018-02-13T00:44:52.006] [INFO] cheese - inserting 1000 documents. first: Chōgosonshiji Temple and last: Makidai -[2018-02-13T00:44:52.022] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:44:52.023] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:44:52.104] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:44:52.125] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Xinye Village and last: Crossley tender -[2018-02-13T00:44:52.263] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:44:52.425] [INFO] cheese - inserting 1000 documents. first: Ivan Lukačić and last: Portal:Denmark/Selected article/6 -[2018-02-13T00:44:52.477] [INFO] cheese - inserting 1000 documents. first: North Carolina Highway 10 (pre-mid-1930s) and last: Category:University of North Carolina at Chapel Hill faculty -[2018-02-13T00:44:52.552] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:44:52.674] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:44:52.709] [INFO] cheese - inserting 1000 documents. first: Polytechnic University of Madrid and last: NY Route 598 -[2018-02-13T00:44:52.775] [INFO] cheese - inserting 1000 documents. first: 1971 in Estonian television and last: Category:Wikipedia infoboxes -[2018-02-13T00:44:52.801] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:44:52.832] [INFO] cheese - inserting 1000 documents. first: File:SV Hubentut Fortuna.svg and last: Sir Charles Hudson, 1st Baronet -[2018-02-13T00:44:52.858] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:44:52.946] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:44:53.000] [INFO] cheese - inserting 1000 documents. first: Category:Syrian expatriates in Jordan and last: Raouf Bernaoui -[2018-02-13T00:44:53.122] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:44:53.282] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable release/Yahoo! Music Jukebox and last: Dokis First Nation -[2018-02-13T00:44:53.328] [INFO] cheese - inserting 1000 documents. first: Route 598 (New York) and last: Goopy and Bagha -[2018-02-13T00:44:53.347] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:44:53.372] [INFO] cheese - inserting 1000 documents. first: Chief Hunter Jack and last: Syntax (typeface) -[2018-02-13T00:44:53.375] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:44:53.405] [INFO] cheese - inserting 1000 documents. first: Template:Fb cl2 header and last: List of longest cross-country trails -[2018-02-13T00:44:53.420] [INFO] cheese - inserting 1000 documents. first: Category:1985 in Estonian television and last: Mızıkçam -[2018-02-13T00:44:53.463] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:44:53.463] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:44:53.561] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:44:53.714] [INFO] cheese - inserting 1000 documents. first: Category:Defensor Sporting Club managers and last: Christkindelsmaerik -[2018-02-13T00:44:53.751] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:44:53.856] [INFO] cheese - inserting 1000 documents. first: Category:Novels about the Holocaust and last: Irish Language in Britain -[2018-02-13T00:44:53.918] [INFO] cheese - inserting 1000 documents. first: Category:1808 establishments in Georgia (U.S. state) and last: Llansantffraed, Ceredigion -[2018-02-13T00:44:53.922] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:44:53.926] [INFO] cheese - inserting 1000 documents. first: Papyrus Graecus Holmiensis and last: Jennifer Metcalfe -[2018-02-13T00:44:53.932] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2010 Serie A and last: Category:Neoclassical architecture in the United States by state -[2018-02-13T00:44:53.949] [INFO] cheese - inserting 1000 documents. first: Malmo Hogskola and last: 1494 Savo -[2018-02-13T00:44:53.974] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:44:53.986] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:44:54.023] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:44:54.030] [INFO] cheese - inserting 1000 documents. first: Guobo and last: Category:Curaçao tennis players -[2018-02-13T00:44:54.011] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:44:54.214] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:44:54.549] [INFO] cheese - inserting 1000 documents. first: Gornik Wieliczka and last: 41488 Sindbad -[2018-02-13T00:44:54.634] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:44:54.740] [INFO] cheese - inserting 1000 documents. first: Rugby Championship of Czechoslovakia and last: Rigid system -[2018-02-13T00:44:54.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Salomone and last: Wikipedia:Peer review/Paulins Kill/archive1 -[2018-02-13T00:44:54.785] [INFO] cheese - inserting 1000 documents. first: Students Against Destructive Decisions and last: Category:Archaeological cultures of South Asia -[2018-02-13T00:44:54.787] [INFO] cheese - inserting 1000 documents. first: Category:Curaçao men's volleyball players and last: Category:Mediterranean Games bronze medalists for Croatia -[2018-02-13T00:44:54.788] [INFO] cheese - inserting 1000 documents. first: Les Jeux de l'amour and last: Wikipedia:Categories for discussion/Log/2014 July 16 -[2018-02-13T00:44:54.817] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:44:54.819] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:44:54.836] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:44:54.881] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:44:54.893] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:44:55.036] [INFO] cheese - inserting 1000 documents. first: Lo Que Paso Paso and last: 13982 Thunberg -[2018-02-13T00:44:55.067] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:44:55.238] [INFO] cheese - inserting 1000 documents. first: File:Kellermensch Goliath Album Cover.jpg and last: Prosoplus fuscosignatus -[2018-02-13T00:44:55.279] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:44:55.296] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2014 July 17 and last: Holyland affair -[2018-02-13T00:44:55.309] [INFO] cheese - inserting 1000 documents. first: St. Denys' Priory and last: The New Daisy Theatre -[2018-02-13T00:44:55.328] [INFO] cheese - inserting 1000 documents. first: Soren Hansen and last: Wikipedia:Articles for deletion/Cow goes moo -[2018-02-13T00:44:55.343] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:44:55.371] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:44:55.380] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:44:55.537] [INFO] cheese - inserting 1000 documents. first: 42191 Thurmann and last: Andy McCombie -[2018-02-13T00:44:55.589] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:44:55.627] [INFO] cheese - inserting 1000 documents. first: Category:FIBA Asia Under-18 Championship and last: Template:POTD/2014-07-17 -[2018-02-13T00:44:55.670] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:44:55.695] [INFO] cheese - inserting 1000 documents. first: Viswaksena and last: 1922-23 Ligue Magnus season -[2018-02-13T00:44:55.771] [INFO] cheese - inserting 1000 documents. first: Prosoplus fuscosticticus and last: National Basketball Coaches Association -[2018-02-13T00:44:55.789] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:44:55.841] [INFO] cheese - inserting 1000 documents. first: 2006 US midterm elections and last: Borgenhaugen -[2018-02-13T00:44:55.881] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:44:55.913] [INFO] cheese - inserting 1000 documents. first: Cephalandra and last: Category:European seas -[2018-02-13T00:44:55.993] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:44:56.059] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:44:56.110] [INFO] cheese - inserting 1000 documents. first: UWA Publishing and last: North Bend Airport -[2018-02-13T00:44:56.225] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:44:56.323] [INFO] cheese - inserting 1000 documents. first: Tsubasa Baseball Club and last: Football Association of Odisha -[2018-02-13T00:44:56.330] [INFO] cheese - inserting 1000 documents. first: File:TopGearWinter.jpg and last: Babes in the Wood murders (Wild Park) -[2018-02-13T00:44:56.398] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:44:56.430] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:44:56.583] [INFO] cheese - inserting 1000 documents. first: Carlson Curve and last: Percy Jackson (footballer born 1907) -[2018-02-13T00:44:56.699] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:44:56.741] [INFO] cheese - inserting 1000 documents. first: List of Members of the United States House of Representatives in the 106th Congress by seniority and last: Epinay-sous-Senart -[2018-02-13T00:44:56.747] [INFO] cheese - inserting 1000 documents. first: Murry Taylor and last: File:The Newly Fenced Catholic Church.jpg -[2018-02-13T00:44:56.814] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:44:56.840] [INFO] cheese - inserting 1000 documents. first: Brian Nelson (screenwriter) and last: Category:Mexican classical violinists -[2018-02-13T00:44:56.841] [INFO] cheese - inserting 1000 documents. first: 1959-60 Polska Liga Hokejowa season and last: Wikipedia:WikiProject Spam/LinkReports/auto-media.info -[2018-02-13T00:44:56.844] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:44:56.925] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:44:56.986] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T00:44:57.171] [INFO] cheese - inserting 1000 documents. first: USS LST-230 and last: David Webb (activist) -[2018-02-13T00:44:57.198] [INFO] cheese - inserting 1000 documents. first: Draft:Battle of Cape Burnas (1942) and last: Shou'an County -[2018-02-13T00:44:57.212] [INFO] cheese - inserting 1000 documents. first: File:Tom Swift and His Electric Runabout (book cover).jpg and last: File:8Ball & MJG - In Our Lifetime, Vol. 1.jpg -[2018-02-13T00:44:57.246] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:44:57.254] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:44:57.305] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:44:57.425] [INFO] cheese - inserting 1000 documents. first: 1981-82 Norwegian 1. Divisjon season and last: 1997-98 Belgian Hockey League season -[2018-02-13T00:44:57.477] [INFO] cheese - inserting 1000 documents. first: Category:Vice-Chancellors of the University of Delhi and last: Template:Karzai second cabinet nominees -[2018-02-13T00:44:57.484] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:44:57.549] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:44:57.643] [INFO] cheese - inserting 1000 documents. first: Serviciul Independent pentru Interventii si Actiuni Speciale and last: Horacio Pena (Argentine actor) -[2018-02-13T00:44:57.681] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:44:57.763] [INFO] cheese - inserting 1000 documents. first: Marie Harf and last: Angraecum subulatum -[2018-02-13T00:44:57.804] [INFO] cheese - inserting 1000 documents. first: File:On The Radio LP.jpg and last: Farseer -[2018-02-13T00:44:57.905] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T00:44:57.918] [INFO] cheese - inserting 1000 documents. first: Shouan County and last: All Saints Church, Acton -[2018-02-13T00:44:57.872] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:44:57.920] [INFO] cheese - inserting 1000 documents. first: 1997-98 Bulgarian Hockey League season and last: 2006-07 HKFA Chairman's Cup -[2018-02-13T00:44:57.962] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:44:58.034] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:44:58.163] [INFO] cheese - inserting 1000 documents. first: Owada Anchorage and last: Gammarus chevreuxi -[2018-02-13T00:44:58.220] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:44:58.288] [INFO] cheese - inserting 1000 documents. first: Animal Crossing (3DS) and last: 2011 Save Cup - Singles -[2018-02-13T00:44:58.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/UC4 and last: Cromarty railway station -[2018-02-13T00:44:58.356] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:44:58.445] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:44:58.564] [INFO] cheese - inserting 1000 documents. first: Foul Play (The Adventures of Black Beauty) and last: Pterolophia major -[2018-02-13T00:44:58.611] [INFO] cheese - inserting 1000 documents. first: Portal:San Francisco Bay Area/Selected historical image/22 and last: Protorthodes curtica -[2018-02-13T00:44:58.626] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:44:58.644] [INFO] cheese - inserting 1000 documents. first: 2011 Seguros Bolívar Open Cali - Doubles and last: 2012 Moorilla Hobart International - Singles -[2018-02-13T00:44:58.662] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian violinists and last: 1951 movies -[2018-02-13T00:44:58.702] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:44:58.722] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:44:58.748] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:44:58.850] [INFO] cheese - inserting 1000 documents. first: Template:User Army E-9 SMA and last: Luis Miguel Ramis -[2018-02-13T00:44:58.945] [INFO] cheese - inserting 1000 documents. first: 2012 Prime Cup Aberto de São Paulo - Doubles and last: East Germany-Israel relations -[2018-02-13T00:44:58.962] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:44:59.039] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:44:59.096] [INFO] cheese - inserting 1000 documents. first: John Brackenridge (clergyman) and last: Category:Prehistoric crustaceans -[2018-02-13T00:44:59.152] [INFO] cheese - inserting 1000 documents. first: Pterolophia virgulata and last: Wikipedia:Abuse reports/128.163.214.120 -[2018-02-13T00:44:59.171] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:44:59.192] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:44:59.307] [INFO] cheese - inserting 1000 documents. first: Phil Nyokai James and last: Wikipedia:Version 1.0 Editorial Team/Former country articles by quality statistics -[2018-02-13T00:44:59.328] [INFO] cheese - inserting 1000 documents. first: East Germany-Soviet Union relations and last: Mauritius national football team results (1980-1989) -[2018-02-13T00:44:59.352] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:44:59.355] [INFO] cheese - inserting 1000 documents. first: List of oil and gas field of the Barents Sea and last: Large tree-frogs -[2018-02-13T00:44:59.368] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:44:59.439] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:44:59.693] [INFO] cheese - inserting 1000 documents. first: William T. Sedgwick and last: Ciobruciu -[2018-02-13T00:44:59.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Abuse reports/128.178.41.8 and last: Doukas, Andronikos -[2018-02-13T00:44:59.755] [INFO] cheese - inserting 1000 documents. first: Mauritius national football team results (2010-2019) and last: Tennis at the 2011 Summer Universiade - Men's Singles -[2018-02-13T00:44:59.773] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:44:59.807] [INFO] cheese - inserting 1000 documents. first: Francisco Zumaque and last: Dubyonsky District, Republic of Mordovia -[2018-02-13T00:44:59.812] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:44:59.830] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:44:59.894] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:45:00.138] [INFO] cheese - inserting 1000 documents. first: Large tree frog and last: Richard Ian Colin Sampson -[2018-02-13T00:45:00.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Former country articles by quality and last: Neil MacFarquhar -[2018-02-13T00:45:00.209] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:45:00.231] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:45:00.317] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2011 Summer Universiade - Mixed Doubles and last: Newens Sanitary Dairy Historic District -[2018-02-13T00:45:00.379] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:45:00.435] [INFO] cheese - inserting 1000 documents. first: Pterolophia subnigrosparsa and last: Cæsariana -[2018-02-13T00:45:00.571] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:45:00.592] [INFO] cheese - inserting 1000 documents. first: Portal:Chess/Selected article/Introduction/Chess opening and last: George A. Killenberg -[2018-02-13T00:45:00.639] [INFO] cheese - inserting 1000 documents. first: Category:Bungalow architecture in Virginia and last: Portal:Smooth jazz/Related portals -[2018-02-13T00:45:00.727] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:45:00.742] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:45:00.969] [INFO] cheese - inserting 1000 documents. first: Royal British Society of Sculptors and last: Queen Cecilia Blanka -[2018-02-13T00:45:01.038] [INFO] cheese - inserting 1000 documents. first: Richard Sampson (author) and last: Who are the Mind Benders? -[2018-02-13T00:45:01.100] [INFO] cheese - inserting 1000 documents. first: Sarah Wilhelmy and last: Herschel Krustovski -[2018-02-13T00:45:01.089] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:45:01.180] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:45:01.256] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:45:01.330] [INFO] cheese - inserting 1000 documents. first: Manchester Borough Council election, 1947 and last: Novosieversia -[2018-02-13T00:45:01.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/botswana-holidays.com and last: The Albert Hall -[2018-02-13T00:45:01.375] [INFO] cheese - inserting 1000 documents. first: Supernetto and last: Category:448 BC deaths -[2018-02-13T00:45:01.414] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:45:01.457] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:45:01.461] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:45:01.826] [INFO] cheese - inserting 1000 documents. first: Hitcheniopsis alismatifolia and last: Metarbela stivafer -[2018-02-13T00:45:01.893] [INFO] cheese - inserting 1000 documents. first: Aiken High School and last: Wikipedia:Help desk/Archives/2006 October 30 -[2018-02-13T00:45:01.904] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:01.938] [INFO] cheese - inserting 1000 documents. first: Imperial Throne (micronation) and last: Category:Articles with obsolete information from February 2017 -[2018-02-13T00:45:01.979] [INFO] cheese - inserting 1000 documents. first: Herschel Shmoikel Pinchas Yerucham Krustovski and last: National Iranian Gas Export Company -[2018-02-13T00:45:02.004] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:45:02.012] [INFO] cheese - inserting 1000 documents. first: Compagnie Francaise D’assurance Pour Le Commerce Exterieur and last: Category:People murdered in Angola -[2018-02-13T00:45:02.049] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:45:02.087] [INFO] cheese - inserting 1000 documents. first: Aleksanteri Saarvala and last: Dedekind-MacNeille completion -[2018-02-13T00:45:02.097] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:45:02.119] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:45:02.171] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:45:02.395] [INFO] cheese - inserting 1000 documents. first: Saturation dive and last: Arbelodes guttata -[2018-02-13T00:45:02.440] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:02.464] [INFO] cheese - inserting 1000 documents. first: Category:Articles needing cleanup from February 2017 and last: ROAD FC 033 -[2018-02-13T00:45:02.520] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:45:02.546] [INFO] cheese - inserting 1000 documents. first: ASCII 7 and last: Category:1977 in British motorsport -[2018-02-13T00:45:02.568] [INFO] cheese - inserting 1000 documents. first: Fibre supplement and last: Guzmania undulatobracteata -[2018-02-13T00:45:02.590] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:45:02.616] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:45:02.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Agriculture/Beekeeping task force/Assessment and last: Long Black -[2018-02-13T00:45:02.704] [INFO] cheese - inserting 1000 documents. first: Sextuple and last: Kenjiro Haitani -[2018-02-13T00:45:02.715] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:45:02.799] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:45:02.907] [INFO] cheese - inserting 1000 documents. first: Arbelodes semifasciata and last: Alex Smith (footballer born 1939) -[2018-02-13T00:45:03.012] [INFO] cheese - inserting 1000 documents. first: File:InLoveAndWar2011Poster.jpg and last: Phālguṇa -[2018-02-13T00:45:03.048] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:03.122] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:45:03.183] [INFO] cheese - inserting 1000 documents. first: Murlocs and last: Russian War -[2018-02-13T00:45:03.264] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:45:03.288] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Budua and last: File:Ndèye Coumba Mbengue Diakhaté died 2001.png -[2018-02-13T00:45:03.347] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:45:03.433] [INFO] cheese - inserting 1000 documents. first: Wasted Youth (British Band) and last: Gulabrao patil -[2018-02-13T00:45:03.507] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:45:03.600] [INFO] cheese - inserting 1000 documents. first: Church Buildings and last: Digital Cafe -[2018-02-13T00:45:03.618] [INFO] cheese - inserting 1000 documents. first: Park View School (Birmingham) and last: 7th Earl of Galloway -[2018-02-13T00:45:03.680] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:45:03.700] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:45:03.719] [INFO] cheese - inserting 1000 documents. first: Petroleum fuels and last: Combe Inc. -[2018-02-13T00:45:03.814] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:45:03.889] [INFO] cheese - inserting 1000 documents. first: New Bridge Street railway station and last: British Army during the American War of Independence -[2018-02-13T00:45:03.946] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:45:03.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Obama administration health care proposal (2nd nomination) and last: Route 263 (Maryland) -[2018-02-13T00:45:03.998] [INFO] cheese - inserting 1000 documents. first: Gym Teacher: The Movie and last: Richard Jacobs Group -[2018-02-13T00:45:04.055] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:45:04.074] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:45:04.244] [INFO] cheese - inserting 1000 documents. first: Yumen Pass and last: Catalan regional elections, 2006 -[2018-02-13T00:45:04.260] [INFO] cheese - inserting 1000 documents. first: Idaho panhandle and last: Category:Canadian draughts players -[2018-02-13T00:45:04.280] [INFO] cheese - inserting 1000 documents. first: Malév Magyar Légiközlekedési Zrt. and last: Weight-of-conflict conjecture -[2018-02-13T00:45:04.317] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:45:04.328] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:45:04.338] [INFO] cheese - inserting 1000 documents. first: Category:Loyola Greyhounds basketball and last: Draft:Niranjan Pati -[2018-02-13T00:45:04.358] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:45:04.395] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:45:04.654] [INFO] cheese - inserting 1000 documents. first: Ober-Logone and last: Thierry Paterlini -[2018-02-13T00:45:04.671] [INFO] cheese - inserting 1000 documents. first: American Duties Act and last: Olympia orchestra -[2018-02-13T00:45:04.748] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:45:04.747] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:45:04.796] [INFO] cheese - inserting 1000 documents. first: Category:1722 in Massachusetts and last: Novo-Mikhaylovka -[2018-02-13T00:45:04.817] [INFO] cheese - inserting 1000 documents. first: Statute Law (Repeals) Act 1975 and last: File:Houdini FTP.JPG -[2018-02-13T00:45:04.832] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:45:04.871] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:45:04.872] [INFO] cheese - inserting 1000 documents. first: File:RC Rig sideview.jpg and last: Patterson State Park -[2018-02-13T00:45:04.942] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:45:05.136] [INFO] cheese - inserting 1000 documents. first: Somaiya sion and last: Independent Corrupt Practices and Other Related Offences Commission -[2018-02-13T00:45:05.186] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:45:05.208] [INFO] cheese - inserting 1000 documents. first: Category:Railway depots in Scotland and last: Dur-Dur -[2018-02-13T00:45:05.254] [INFO] cheese - inserting 1000 documents. first: Hold On! I'm a Comin' and last: 2008 Pacific Curling Championships -[2018-02-13T00:45:05.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/American Football League articles by quality statistics and last: Peter Pearson (British Army officer) -[2018-02-13T00:45:05.292] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:45:05.387] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:45:05.422] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:05.517] [INFO] cheese - inserting 1000 documents. first: Category:425 establishments and last: Category:Saint Leo Lions basketball -[2018-02-13T00:45:05.528] [INFO] cheese - inserting 1000 documents. first: Dreams (The Whitest Boy Alive album) and last: Skyhawk (2006) -[2018-02-13T00:45:05.607] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:45:05.635] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:45:05.774] [INFO] cheese - inserting 1000 documents. first: 1917–18 Mexican Primera Division season and last: 2007–08 Argentine Primera Division season -[2018-02-13T00:45:05.849] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:45:05.863] [INFO] cheese - inserting 1000 documents. first: Tinsley Green, West Sussex and last: Wikipedia:Version 1.0 Editorial Team/Pennsylvania articles by quality/70 -[2018-02-13T00:45:05.920] [INFO] cheese - inserting 1000 documents. first: Category:Christian missionaries in Sudan and last: Inga pithecolobioides -[2018-02-13T00:45:05.951] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Ingham County, Michigan and last: Category:Deaf templates -[2018-02-13T00:45:05.991] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:45:06.002] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:06.068] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:45:06.224] [INFO] cheese - inserting 1000 documents. first: Category:Diplomatic documents and last: File:TheGreatGatsby2012Poster.jpg -[2018-02-13T00:45:06.301] [INFO] cheese - inserting 1000 documents. first: 2007–08 Atletico Madrid season and last: Dimitri and Erica -[2018-02-13T00:45:06.308] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:06.312] [INFO] cheese - inserting 1000 documents. first: Rutanya Alda and last: File:Priopcea.jpg -[2018-02-13T00:45:06.337] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:45:06.448] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:45:06.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 January 9 and last: Wikipedia:Featured list candidates/Austin Aztex all-time roster/archive1 -[2018-02-13T00:45:06.673] [INFO] cheese - inserting 1000 documents. first: Pithecellobium reductum and last: File:Stormwater maintenance.jpg -[2018-02-13T00:45:06.708] [INFO] cheese - inserting 1000 documents. first: File:HeroFactoryTitleCard.jpg and last: 1990–91 Ohio Bobcats men's basketball team -[2018-02-13T00:45:06.708] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:45:06.738] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:45:06.744] [INFO] cheese - inserting 1000 documents. first: Erica and Dimitri and last: Ali Kucik -[2018-02-13T00:45:06.776] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:45:06.791] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:06.818] [INFO] cheese - inserting 1000 documents. first: Draft:Choppafield and last: John II of Cottereau, Baron of Jauche -[2018-02-13T00:45:06.877] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:45:06.988] [INFO] cheese - inserting 1000 documents. first: Miracle at Troas and last: Hestina hadeni -[2018-02-13T00:45:07.025] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:45:07.032] [INFO] cheese - inserting 1000 documents. first: S Club 7 in L.A. and last: Rodney Come Home -[2018-02-13T00:45:07.097] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:45:07.119] [INFO] cheese - inserting 1000 documents. first: Eurogroup for Animals and last: Tess Oliveira -[2018-02-13T00:45:07.125] [INFO] cheese - inserting 1000 documents. first: Újireg and last: Tarek Abu Khdeir -[2018-02-13T00:45:07.187] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:45:07.191] [INFO] cheese - inserting 1000 documents. first: Category:135 mm artillery and last: Category:Litigation by party -[2018-02-13T00:45:07.197] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:45:07.265] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:07.296] [INFO] cheese - inserting 1000 documents. first: Phaya Thai (disambiguation) and last: Wikipedia:Articles for deletion/Russian help for Serbia during world war I -[2018-02-13T00:45:07.336] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:45:07.420] [INFO] cheese - inserting 1000 documents. first: Ardiconu, Tasova and last: Cross cover test -[2018-02-13T00:45:07.464] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:45:07.602] [INFO] cheese - inserting 1000 documents. first: A. A. Townsend and last: Wikipedia:WikiProject Architecture/Historic houses task force/Scope -[2018-02-13T00:45:07.617] [INFO] cheese - inserting 1000 documents. first: Confédération Syndicale Internationale and last: Kōji Yusa -[2018-02-13T00:45:07.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ocean Drive (album) and last: Tiny Meat -[2018-02-13T00:45:07.658] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:45:07.770] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:45:07.792] [INFO] cheese - inserting 1000 documents. first: Category:Calgary Oval X-Treme players and last: Wikipedia:Templates for discussion/Log/2010 January 14 -[2018-02-13T00:45:07.799] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:07.848] [INFO] cheese - inserting 1000 documents. first: File:2015 IIHF World U18 Championship Division II.png and last: Bowling Green massacre -[2018-02-13T00:45:07.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia Blackout and last: Banja, Arandelovac -[2018-02-13T00:45:07.944] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:45:07.959] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:45:07.958] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:45:08.308] [INFO] cheese - inserting 1000 documents. first: Category:Moths described in 2007 and last: File:Insomniac Folklore Sleep Cassette.jpg -[2018-02-13T00:45:08.359] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:45:08.570] [INFO] cheese - inserting 1000 documents. first: 2007-08 NHL transactions and last: Wikipedia:Articles for deletion/Terry George (entrepreneur) -[2018-02-13T00:45:08.682] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:45:08.697] [INFO] cheese - inserting 1000 documents. first: Banjalucka Pivara and last: Hypsopygia decetialis -[2018-02-13T00:45:08.715] [INFO] cheese - inserting 1000 documents. first: Grover Cleveland presidencies and last: Category:1985 in women's sport by country -[2018-02-13T00:45:08.811] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:45:08.815] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:45:08.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2010 January 14 and last: Science fiction/Soft science fiction -[2018-02-13T00:45:08.969] [INFO] cheese - inserting 1000 documents. first: 1747 English cricket season and last: Kaiser Shipbuilding Corporation -[2018-02-13T00:45:08.969] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T00:45:09.034] [INFO] cheese - inserting 1000 documents. first: Ulster Valley and last: Evripides Demosthenous -[2018-02-13T00:45:09.103] [INFO] cheese - batch complete in: 1.332 secs -[2018-02-13T00:45:09.114] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:45:09.368] [INFO] cheese - inserting 1000 documents. first: Category:1984 in women's sport by country and last: Template:2017 Mid-American Conference men's soccer standings -[2018-02-13T00:45:09.370] [INFO] cheese - inserting 1000 documents. first: Microchâteau and last: 2005 A Lyga -[2018-02-13T00:45:09.458] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:45:09.488] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:45:09.498] [INFO] cheese - inserting 1000 documents. first: 4th Alberta Senate nominee election and last: Beth Cuje -[2018-02-13T00:45:09.597] [INFO] cheese - inserting 1000 documents. first: Schizothorax huegelii and last: Asota concolora -[2018-02-13T00:45:09.595] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:45:09.700] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:45:09.840] [INFO] cheese - inserting 1000 documents. first: Getting to yes and last: Topsportcentrum Rotterdam -[2018-02-13T00:45:09.842] [INFO] cheese - inserting 1000 documents. first: Evripedes Demosthenous and last: Category:Trade unions established in 1939 -[2018-02-13T00:45:09.924] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:45:09.935] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:45:09.960] [INFO] cheese - inserting 1000 documents. first: Bethlen, son of Lorinc and last: Cape Kamui -[2018-02-13T00:45:10.009] [INFO] cheese - inserting 1000 documents. first: Category:Lutheranism in China and last: Category:Rowing in Vanuatu -[2018-02-13T00:45:10.011] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:45:10.064] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:45:10.129] [INFO] cheese - inserting 1000 documents. first: Culture of Mangalore and last: Bettina Shaw-Lawrence -[2018-02-13T00:45:10.173] [INFO] cheese - inserting 1000 documents. first: Tianhe Sports Center South Station and last: Wikipedia:Articles for deletion/Dragón Negro -[2018-02-13T00:45:10.179] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:45:10.243] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:45:10.266] [INFO] cheese - inserting 1000 documents. first: Bucje (Priboj) and last: F. Nevanlinna -[2018-02-13T00:45:10.303] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:45:10.326] [INFO] cheese - inserting 1000 documents. first: Afroartelida teunisseni and last: Gray-breasted flycatcher -[2018-02-13T00:45:10.385] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:45:10.410] [INFO] cheese - inserting 1000 documents. first: Category:Canadian docufiction films and last: Diocese of Arges and Muscel -[2018-02-13T00:45:10.479] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:45:10.518] [INFO] cheese - inserting 1000 documents. first: File:Rt3 screenshot.png and last: John Schwartz -[2018-02-13T00:45:10.579] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:45:10.676] [INFO] cheese - inserting 1000 documents. first: File:Salys statue of Frederik V 2.jpg and last: Cape Gyobumi -[2018-02-13T00:45:10.688] [INFO] cheese - inserting 1000 documents. first: Template:1983-84 NHL season by team and last: 1988-89 Chicago Blackhawks season -[2018-02-13T00:45:10.710] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:10.748] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:45:10.765] [INFO] cheese - inserting 1000 documents. first: 118th meridian and last: Joseph Nane -[2018-02-13T00:45:10.790] [INFO] cheese - inserting 1000 documents. first: Category:Human overpopulation think tank and last: Nicholas Ball (Alderman) -[2018-02-13T00:45:10.822] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:10.850] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:45:10.857] [INFO] cheese - inserting 1000 documents. first: Qatar-Sweden relations and last: Category:1996–97 in British basketball leagues -[2018-02-13T00:45:10.904] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:45:10.982] [INFO] cheese - inserting 1000 documents. first: Cape Inubo and last: Four Leaf Studios -[2018-02-13T00:45:11.080] [INFO] cheese - inserting 1000 documents. first: Template:Timeline of El Greco's life and last: Yellowman (candy) -[2018-02-13T00:45:11.094] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:45:11.251] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:45:11.442] [INFO] cheese - inserting 1000 documents. first: Template:Frati aircraft and last: Rotatory canter -[2018-02-13T00:45:11.446] [INFO] cheese - inserting 1000 documents. first: List of Asian Games medalists in softball and last: FSM flag -[2018-02-13T00:45:11.551] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:11.539] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:45:11.643] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eric Schmidt (DJ) and last: Wikipedia:Arbitration Committee/Discretionary sanctions -[2018-02-13T00:45:11.675] [INFO] cheese - inserting 1000 documents. first: Category:Organisations based in Estonia and last: 2017 Ecuador Open Quito - Doubles -[2018-02-13T00:45:11.710] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:45:11.718] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:45:11.796] [INFO] cheese - inserting 1000 documents. first: Chateau de Durfort and last: Idaho newspapers -[2018-02-13T00:45:11.842] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:45:12.044] [INFO] cheese - inserting 1000 documents. first: File:Stuart hogg.jpg and last: Bellows Free Academy, Fairfax -[2018-02-13T00:45:12.123] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:45:12.255] [INFO] cheese - inserting 1000 documents. first: Kopje warbler and last: Template:Wexford Under-21 Hurling Team 1970 -[2018-02-13T00:45:12.267] [INFO] cheese - inserting 1000 documents. first: Category:Belarusian nuns and last: Monte di Pietà -[2018-02-13T00:45:12.303] [INFO] cheese - inserting 1000 documents. first: Portal:National Football League/Selected picture and last: Cuno Pumpin -[2018-02-13T00:45:12.321] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:45:12.329] [INFO] cheese - inserting 1000 documents. first: Category:Identity documents by country and last: Template:User Rebol-1 -[2018-02-13T00:45:12.333] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:12.347] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:45:12.438] [INFO] cheese - inserting 1000 documents. first: Culture of Brisbane and last: Carolina Police Department -[2018-02-13T00:45:12.441] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:12.552] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:45:12.872] [INFO] cheese - inserting 1000 documents. first: Cunegonde (disambiguation) and last: Army-proof -[2018-02-13T00:45:12.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Indian Wikipedians' notice board/It's new and last: Zakerana nepalensis -[2018-02-13T00:45:12.945] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:45:13.002] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:45:13.019] [INFO] cheese - inserting 1000 documents. first: File:Panoply logo.png and last: Category:Lists of football clubs in the United Kingdom -[2018-02-13T00:45:13.076] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions established in 1931 and last: Cheesquatalawny -[2018-02-13T00:45:13.153] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:45:13.194] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:45:13.238] [INFO] cheese - inserting 1000 documents. first: Category:Austrian Catholics and last: K-58 (Kansas highway) -[2018-02-13T00:45:13.309] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:45:13.316] [INFO] cheese - inserting 1000 documents. first: Category:Spanish sprinters and last: It's Lonely at the Bottom/Unstuck in Time -[2018-02-13T00:45:13.408] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:45:13.625] [INFO] cheese - inserting 1000 documents. first: Australian troops and last: Template:Taxonomy/Callichthyidae -[2018-02-13T00:45:13.638] [INFO] cheese - inserting 1000 documents. first: Bar screen and last: Wikipedia:Articles for deletion/2011 MLS Reserve Division -[2018-02-13T00:45:13.689] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:13.700] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:45:13.747] [INFO] cheese - inserting 1000 documents. first: State Highway 41 (Texas) and last: Murray Chotiner -[2018-02-13T00:45:13.749] [INFO] cheese - inserting 1000 documents. first: Robert Campbell (Northern Ireland politician) and last: Enzo Andía -[2018-02-13T00:45:13.808] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:45:13.813] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:45:13.884] [INFO] cheese - inserting 1000 documents. first: Great Indian Rhinoceros and last: Category:Romanian heavy metal musical groups -[2018-02-13T00:45:13.959] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:45:14.054] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 1035-1 and last: K. Chandrashekhar Rao -[2018-02-13T00:45:14.085] [INFO] cheese - inserting 1000 documents. first: Deutsches Geodatisches Forschungsinstitut and last: Dragojlovice -[2018-02-13T00:45:14.118] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:45:14.183] [INFO] cheese - inserting 1000 documents. first: Felicite (2017 film) and last: File:Belton House 2006.jpg -[2018-02-13T00:45:14.209] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:45:14.243] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:45:14.331] [INFO] cheese - inserting 1000 documents. first: Argo (2012 movie) and last: Beattie Limestone -[2018-02-13T00:45:14.396] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:45:14.490] [INFO] cheese - inserting 1000 documents. first: Yekaterina Bikert and last: Charles Burnett (RAF officer) -[2018-02-13T00:45:14.550] [INFO] cheese - inserting 1000 documents. first: 1991-92 AHL season and last: Wikipedia:Stub types for deletion/Log/2008/April/3 -[2018-02-13T00:45:14.572] [INFO] cheese - inserting 1000 documents. first: Dragoljub Duricic and last: Wikipedia:Reference desk/Archives/Humanities/2012 February 9 -[2018-02-13T00:45:14.569] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:45:14.628] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:45:14.659] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:45:14.661] [INFO] cheese - inserting 1000 documents. first: File:Bezbozhnik u stanka 22-1929.jpg and last: Hittite Sun Course Monument -[2018-02-13T00:45:14.678] [INFO] cheese - inserting 1000 documents. first: Ofla of Mercia and last: Explosive-driven ferromagnetic generator -[2018-02-13T00:45:14.709] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:45:14.746] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:45:14.919] [INFO] cheese - inserting 1000 documents. first: Johnson Formation and last: 2001 1000 Guineas -[2018-02-13T00:45:14.953] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:14.960] [INFO] cheese - inserting 1000 documents. first: El amor despues del amor and last: Encyclopaedia Britannica Second Edition -[2018-02-13T00:45:14.968] [INFO] cheese - inserting 1000 documents. first: Venogram (medical) and last: Lauren Phillips -[2018-02-13T00:45:14.997] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:45:15.009] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:45:15.022] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Actuality (Hegel) and last: Category:English social commentators -[2018-02-13T00:45:15.067] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:45:15.099] [INFO] cheese - inserting 1000 documents. first: Isaías Marques Soares and last: ITK-Snap -[2018-02-13T00:45:15.122] [INFO] cheese - inserting 1000 documents. first: Category:Larry Carlton albums and last: Wikipedia:WikiProject North Carolina State Highways/Renumberings -[2018-02-13T00:45:15.198] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:45:15.199] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:45:15.226] [INFO] cheese - inserting 1000 documents. first: Out of the Ashes (2010 film) and last: Fenerbahce Ulker Euroleague 2009–10 -[2018-02-13T00:45:15.262] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:45:15.371] [INFO] cheese - inserting 1000 documents. first: I Don't Dance (album) and last: Tererro Formation -[2018-02-13T00:45:15.420] [INFO] cheese - inserting 1000 documents. first: Draft:Hao Qi Chang Liu and last: Louisiana Highway 897-3 -[2018-02-13T00:45:15.421] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:45:15.466] [INFO] cheese - inserting 1000 documents. first: 1864 English cricket season and last: The McKenzie Break -[2018-02-13T00:45:15.487] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:45:15.491] [INFO] cheese - inserting 1000 documents. first: Fenerbahce Ulker Euroleague 2010–11 and last: Kartvelian Language -[2018-02-13T00:45:15.529] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:45:15.535] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:45:15.583] [INFO] cheese - inserting 1000 documents. first: File:Ornstein-Suicide Airplane.ogg and last: Victor Hugo Andrada -[2018-02-13T00:45:15.632] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:45:15.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/2009 Duel in the Pool/archive1 and last: List of United States Presidents by judicial appointments -[2018-02-13T00:45:15.903] [INFO] cheese - inserting 1000 documents. first: Frederic Cermeno and last: Alfred Fleischer -[2018-02-13T00:45:15.944] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:45:15.976] [INFO] cheese - inserting 1000 documents. first: Alamitos Formation and last: Egogepa crassata -[2018-02-13T00:45:15.988] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:45:16.027] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 897-4 and last: Artistic Skating World Championship -[2018-02-13T00:45:16.061] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:45:16.135] [INFO] cheese - inserting 1000 documents. first: Category:Passenger rail transport in Alberta and last: Category:Zoé albums -[2018-02-13T00:45:16.146] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:45:16.185] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:45:16.308] [INFO] cheese - inserting 1000 documents. first: Timeline of Ancient Mesopotamia and last: Category:1904 racehorse deaths -[2018-02-13T00:45:16.414] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:45:16.460] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Eugène Ionesco and last: Girls, Girls, Girls (Motley Crue song) -[2018-02-13T00:45:16.500] [INFO] cheese - inserting 1000 documents. first: Category:High-speed trains of Russia and last: File:Regain poster.jpg -[2018-02-13T00:45:16.510] [INFO] cheese - inserting 1000 documents. first: Category:Coal-fired power stations in Saskatchewan and last: MG 11 -[2018-02-13T00:45:16.506] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:16.568] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:45:16.565] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:45:16.597] [INFO] cheese - inserting 1000 documents. first: Shrigley (disambiguation) and last: Lo Chih-An -[2018-02-13T00:45:16.657] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:45:16.735] [INFO] cheese - inserting 1000 documents. first: Giro-Live Ballers Osnabruck and last: Gallivare Malmbergets FF -[2018-02-13T00:45:16.742] [INFO] cheese - inserting 1000 documents. first: Template:Aragonese Bloc/meta/color and last: Vict -[2018-02-13T00:45:16.755] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:45:16.800] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:45:16.874] [INFO] cheese - inserting 1000 documents. first: Tri sestry and last: Cylindrical Bessel functions of the second kind -[2018-02-13T00:45:16.933] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:45:16.948] [INFO] cheese - inserting 1000 documents. first: Category:Courthouses on the National Register of Historic Places in Louisiana and last: Herrgarden -[2018-02-13T00:45:16.951] [INFO] cheese - inserting 1000 documents. first: 2014–15 PBC CSKA Moscow season and last: People's Climate March -[2018-02-13T00:45:16.967] [INFO] cheese - inserting 1000 documents. first: File:A cheerful gang turns the earth.jpg and last: Template:User Wikipedian for/sandbox -[2018-02-13T00:45:16.968] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:45:17.018] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:45:17.022] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:45:17.033] [INFO] cheese - inserting 1000 documents. first: Blanc and last: File:Stc-colour-logo-copy2.jpg -[2018-02-13T00:45:17.082] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:45:17.154] [INFO] cheese - inserting 1000 documents. first: Food of ancient israel and last: Ij Io̧kwe Lo̧k Aelon̄ Eo Ao -[2018-02-13T00:45:17.183] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:45:17.214] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches in Amazonas (Brazilian state) and last: File:The Word Exchange (novel) first edition 2014.png -[2018-02-13T00:45:17.254] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:45:17.334] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/March 31, 2008 and last: Wikipedia:Tip of the day/October 24, 2008 -[2018-02-13T00:45:17.370] [INFO] cheese - inserting 1000 documents. first: Iker Martinez de Lizarduy and last: Hondo High School (Texas) -[2018-02-13T00:45:17.387] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:17.401] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:45:17.447] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mike Gastonguay and last: Harold Gore -[2018-02-13T00:45:17.465] [INFO] cheese - inserting 1000 documents. first: Azaspiracids and last: Category:Western Pennsylvania Registered Historic Place stubs -[2018-02-13T00:45:17.492] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:45:17.500] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:45:17.599] [INFO] cheese - inserting 1000 documents. first: Old Beth Israel Synagogue (Greenville, South Carolina) and last: Inigo Pascual -[2018-02-13T00:45:17.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Ilecity and last: Sanitas -[2018-02-13T00:45:17.651] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:45:17.679] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:45:17.888] [INFO] cheese - inserting 1000 documents. first: Jean-Marie Keletigui and last: Mikey Devlin -[2018-02-13T00:45:17.944] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/October 25, 2008 and last: Learjet 29 -[2018-02-13T00:45:17.949] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:45:18.085] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:45:18.145] [INFO] cheese - inserting 1000 documents. first: Juan Pablo Gil and last: List of North Carolina Civil War Confederate units -[2018-02-13T00:45:18.218] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:45:18.265] [INFO] cheese - inserting 1000 documents. first: Gornal, West Midlands and last: Portal:NWT -[2018-02-13T00:45:18.279] [INFO] cheese - inserting 1000 documents. first: Sarah Huckabee and last: Category:1730s archaeological discoveries -[2018-02-13T00:45:18.339] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:45:18.350] [INFO] cheese - inserting 1000 documents. first: Richebourg L'Avoue and last: Theosophia -[2018-02-13T00:45:18.357] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:45:18.462] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:45:18.489] [INFO] cheese - inserting 1000 documents. first: R-29RMU2 Liner and last: Wikipedia:Articles for deletion/Space Tourism Society -[2018-02-13T00:45:18.551] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:18.639] [INFO] cheese - inserting 1000 documents. first: MCBA and last: 1987 FA Cup Final -[2018-02-13T00:45:18.707] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:18.811] [INFO] cheese - inserting 1000 documents. first: H.W. Blair and last: Alex Balcoba -[2018-02-13T00:45:18.845] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:45:18.849] [INFO] cheese - inserting 1000 documents. first: Category:The Outfield and last: Template:The Redirect Barnstar/sandbox -[2018-02-13T00:45:18.880] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Knowsley and last: Lymire lactealis -[2018-02-13T00:45:18.886] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:45:18.890] [INFO] cheese - inserting 1000 documents. first: Gidgee Gold Mine and last: Wikipedia:WikiProject Spam/LinkReports/weather-and-climate.com -[2018-02-13T00:45:18.905] [INFO] cheese - inserting 1000 documents. first: The Sophia and last: Archie Hallam -[2018-02-13T00:45:18.912] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:45:18.951] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:45:18.967] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:45:19.151] [INFO] cheese - inserting 1000 documents. first: Courtney Simon and last: Category:Early steam locomotives -[2018-02-13T00:45:19.197] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:45:19.251] [INFO] cheese - inserting 1000 documents. first: Budalić and last: 1991 Hammer Throw Year Ranking -[2018-02-13T00:45:19.254] [INFO] cheese - inserting 1000 documents. first: Titania (oxide) and last: Biram Singh Rathore of Marwar -[2018-02-13T00:45:19.300] [INFO] cheese - inserting 1000 documents. first: Hypsotropha heterocerella and last: Furtum -[2018-02-13T00:45:19.313] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:45:19.334] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:45:19.357] [INFO] cheese - inserting 1000 documents. first: Chris Walsh and last: Continentality (wine) -[2018-02-13T00:45:19.364] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:45:19.430] [INFO] cheese - inserting 1000 documents. first: Charles Umpherston Aitchinson and last: Javier Olaizola -[2018-02-13T00:45:19.435] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:45:19.478] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:45:19.670] [INFO] cheese - inserting 1000 documents. first: File:Pg-ballorder.jpg and last: Bothrops xanthogramma -[2018-02-13T00:45:19.724] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:19.748] [INFO] cheese - inserting 1000 documents. first: 1995 Hammer Throw Year Ranking and last: Juan Felipe Alves Ribeiro -[2018-02-13T00:45:19.805] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Okan Derici (2nd nomination) and last: List of Compulsory Process Clause cases -[2018-02-13T00:45:19.804] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:19.891] [INFO] cheese - inserting 1000 documents. first: File:Korn Project4.png and last: Template:Canadian federal election, 2006/Beauport—Limoilou -[2018-02-13T00:45:19.906] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:45:19.938] [INFO] cheese - inserting 1000 documents. first: Ganga Rathore of Marwar and last: Schnabl -[2018-02-13T00:45:20.038] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:20.065] [INFO] cheese - inserting 1000 documents. first: Trauma Hawk and last: Behoust -[2018-02-13T00:45:20.077] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:45:20.210] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:45:20.387] [INFO] cheese - inserting 1000 documents. first: Chapacura–Wanham languages and last: Ceylon at the 1960 Summer Olympics -[2018-02-13T00:45:20.468] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:45:20.555] [INFO] cheese - inserting 1000 documents. first: Suruj and last: File:An Phoblacht June 2014 post-election.jpg -[2018-02-13T00:45:20.604] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:45:20.610] [INFO] cheese - inserting 1000 documents. first: List of Wipeout video games and last: Swimming at the 2007 World Aquatics Championships – Men's 100m backstroke -[2018-02-13T00:45:20.628] [INFO] cheese - inserting 1000 documents. first: Yuval Ron Ensemble and last: Andrés Bello Municipality, Miranda -[2018-02-13T00:45:20.717] [INFO] cheese - inserting 1000 documents. first: Τ Arietis and last: 2017 ABN AMRO World Tennis Tournament – Singles -[2018-02-13T00:45:20.719] [INFO] cheese - inserting 1000 documents. first: Arnouville-les-Mantes and last: Oregon State Fairgrounds -[2018-02-13T00:45:20.724] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:45:20.783] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:45:20.800] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:45:20.839] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:45:21.228] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom locations: Ce-Ck and last: Kautz graph -[2018-02-13T00:45:21.277] [INFO] cheese - inserting 1000 documents. first: Gern hab' ich die Frau'n geküßt' and last: Ch'iyar Jaqhi (Peru) -[2018-02-13T00:45:21.315] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:45:21.321] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:45:21.327] [INFO] cheese - inserting 1000 documents. first: Template:Checked-sock-nb and last: Miranda Municipality, Mérida -[2018-02-13T00:45:21.330] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2007 World Aquatics Championships – Men's 200m backstroke and last: Lung-Plague Pleuro-Pneumonia -[2018-02-13T00:45:21.374] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:45:21.389] [INFO] cheese - inserting 1000 documents. first: Iohannes Amos Comenius and last: HD 330075 b -[2018-02-13T00:45:21.451] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:45:21.470] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:45:21.567] [INFO] cheese - inserting 1000 documents. first: Draft:Spencer James Porter and last: Filipino New Wave -[2018-02-13T00:45:21.660] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:45:21.756] [INFO] cheese - inserting 1000 documents. first: Goulburn–Murray Water and last: Vetri Padigal -[2018-02-13T00:45:21.805] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:45:21.833] [INFO] cheese - inserting 1000 documents. first: Louis Segatore and last: File:TinManWasADreamer cover.jpg -[2018-02-13T00:45:21.932] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:45:21.991] [INFO] cheese - inserting 1000 documents. first: Estádio Nossa Senhora do Monte and last: List of Presidents of the Philippines by education -[2018-02-13T00:45:22.112] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:45:22.190] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2009 Tippeligaen and last: David Prottas -[2018-02-13T00:45:22.208] [INFO] cheese - inserting 1000 documents. first: Category:Glossata stubs and last: Wikipedia:Articles for deletion/Portugal Golden Visa -[2018-02-13T00:45:22.276] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:22.273] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:45:22.283] [INFO] cheese - inserting 1000 documents. first: Theresa Fairbanks Harris and last: Wikipedia:Sockpuppet investigations/Sweet mi/Archive -[2018-02-13T00:45:22.382] [INFO] cheese - inserting 1000 documents. first: Dylan Burns and last: Template:Ethnic Vienna sidebar -[2018-02-13T00:45:22.409] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T00:45:22.460] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:45:22.643] [INFO] cheese - inserting 1000 documents. first: Portal:Georgia (U.S. state)/Selected biography/9 and last: Tsegay -[2018-02-13T00:45:22.738] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:45:22.832] [INFO] cheese - inserting 1000 documents. first: Beaches FC (United States) and last: Category:Suspected Wikipedia sockpuppets of Chilifrenzy -[2018-02-13T00:45:22.851] [INFO] cheese - inserting 1000 documents. first: Brittany Pollack and last: Category:Incorporated places in Abitibi-Témiscamingue -[2018-02-13T00:45:22.903] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:45:22.949] [INFO] cheese - inserting 1000 documents. first: Maverick missile and last: Microatoll -[2018-02-13T00:45:22.957] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Greene County, Ohio and last: Buarahuarani -[2018-02-13T00:45:22.957] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:45:23.050] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:45:23.063] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:45:23.176] [INFO] cheese - inserting 1000 documents. first: Pressure flow theory and last: Cloantha evicta -[2018-02-13T00:45:23.275] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:45:23.315] [INFO] cheese - inserting 1000 documents. first: Burmese general election, 1922 and last: Rudolf Werlieh -[2018-02-13T00:45:23.394] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:45:23.451] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Augenblink and last: Category:Suspected Wikipedia sockpuppets of Asifquamar -[2018-02-13T00:45:23.566] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:45:23.692] [INFO] cheese - inserting 1000 documents. first: Neuroterus and last: Tahmilah -[2018-02-13T00:45:23.745] [INFO] cheese - inserting 1000 documents. first: File:Parenthood Season 5.jpg and last: Portal:Hellenism/Selected picture/9 -[2018-02-13T00:45:23.760] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:45:23.789] [INFO] cheese - inserting 1000 documents. first: Mineral Extraction and last: Horcón Tract -[2018-02-13T00:45:23.826] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:45:23.828] [INFO] cheese - inserting 1000 documents. first: Cloantha vomerina and last: Zemmouri -[2018-02-13T00:45:23.880] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:45:23.893] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:45:23.989] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 82satish and last: Balkrishna "Raosaheb" Gogte -[2018-02-13T00:45:23.994] [INFO] cheese - inserting 1000 documents. first: 'Til I Can Make it On My Own and last: Taumaka -[2018-02-13T00:45:24.042] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:45:24.147] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:45:24.236] [INFO] cheese - inserting 1000 documents. first: Si.mobil - Vodafone and last: Red Frangipani -[2018-02-13T00:45:24.302] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:45:24.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/CaitlinQuinn1 and last: 1914-15 National Association Foot Ball League season -[2018-02-13T00:45:24.414] [INFO] cheese - inserting 1000 documents. first: Category:1736 in theatre and last: Wikipedia:Miscellany for deletion/User:Chrisishawtt/Don Kivowitz -[2018-02-13T00:45:24.439] [INFO] cheese - inserting 1000 documents. first: Nelson-Blenheim notional railway and last: Dixa nubilipennis -[2018-02-13T00:45:24.445] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:24.474] [INFO] cheese - inserting 1000 documents. first: Extra Gentleman Usher and last: Aida Cuevas -[2018-02-13T00:45:24.476] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:45:24.507] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:45:24.604] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:45:24.682] [INFO] cheese - inserting 1000 documents. first: Popotai and last: Duje Bajrušovic -[2018-02-13T00:45:24.779] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:45:24.890] [INFO] cheese - inserting 1000 documents. first: Category:Entertainment venues in Romania and last: The Century Foundation, Inc. -[2018-02-13T00:45:24.940] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:45:24.987] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Classicleague15/Grant Lindsey and last: Wikipedia:Articles for deletion/The Kneeling Christian -[2018-02-13T00:45:25.001] [INFO] cheese - inserting 1000 documents. first: Template:Alan Rudolph and last: Anne Henderson -[2018-02-13T00:45:25.008] [INFO] cheese - inserting 1000 documents. first: Disproved and last: File:ISSafterSTS96.jpg -[2018-02-13T00:45:25.046] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:45:25.085] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:45:25.099] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:45:25.142] [INFO] cheese - inserting 1000 documents. first: Antidiuretic and last: ボボボーボ ボーボボ -[2018-02-13T00:45:25.143] [INFO] cheese - inserting 1000 documents. first: 1921 Big Ten Conference football season and last: Category:Wikipedia sockpuppets of Btarik77 -[2018-02-13T00:45:25.160] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:45:25.202] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:45:25.242] [INFO] cheese - inserting 1000 documents. first: Template:REH bibliography and last: Capivariano Futebol Clube -[2018-02-13T00:45:25.285] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:45:25.382] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Zawaydh and last: Wikipedia:WikiProject Women in Red/Outreach/International list -[2018-02-13T00:45:25.406] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:45:25.523] [INFO] cheese - inserting 1000 documents. first: Arvid Nyberg and last: Suk Min-hee -[2018-02-13T00:45:25.574] [INFO] cheese - inserting 1000 documents. first: Philip Louis I, Count of Hanau-Münzenberg and last: Sextant Formation -[2018-02-13T00:45:25.583] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:45:25.590] [INFO] cheese - inserting 1000 documents. first: Albertoppelia and last: Aemona peali -[2018-02-13T00:45:25.611] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:45:25.651] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:45:25.692] [INFO] cheese - inserting 1000 documents. first: Madhavan (actor) and last: William Henry Kurtz -[2018-02-13T00:45:25.752] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:25.788] [INFO] cheese - inserting 1000 documents. first: Dej. and last: Category:Bilateral military relations of Azerbaijan -[2018-02-13T00:45:25.817] [INFO] cheese - inserting 1000 documents. first: Nikolay Dimitrov and last: Giambelli-Thom-Porteous formula -[2018-02-13T00:45:25.832] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:45:25.870] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:45:26.023] [INFO] cheese - inserting 1000 documents. first: Global Day for Darfur and last: Nicrophorus hispaniola -[2018-02-13T00:45:26.037] [INFO] cheese - inserting 1000 documents. first: Category:Liuzhou and last: Category:Virginia counties on the Potomac River -[2018-02-13T00:45:26.116] [INFO] cheese - inserting 1000 documents. first: Diva montelaba and last: Deccan White carp -[2018-02-13T00:45:26.125] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:45:26.123] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:45:26.232] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:45:26.309] [INFO] cheese - inserting 1000 documents. first: Category:2008–09 in Belarusian basketball and last: Category:Dashboard.wikiedu.org courses, The University of Mississippi -[2018-02-13T00:45:26.309] [INFO] cheese - inserting 1000 documents. first: Great day in harlem and last: Victorinus of Ptuj -[2018-02-13T00:45:26.314] [INFO] cheese - inserting 1000 documents. first: 1994 Federation Cup Americas Zone – Knockout Stage and last: Jose Amalfitani -[2018-02-13T00:45:26.353] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:45:26.357] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:45:26.378] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:45:26.506] [INFO] cheese - inserting 1000 documents. first: Fungiidae and last: Taipei Public Library Beitou Branch -[2018-02-13T00:45:26.588] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:45:26.604] [INFO] cheese - inserting 1000 documents. first: Yosefa and last: Justoy -[2018-02-13T00:45:26.631] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:45:26.717] [INFO] cheese - inserting 1000 documents. first: Blount, WV and last: Cadillac Hotel (Florida) -[2018-02-13T00:45:26.724] [INFO] cheese - inserting 1000 documents. first: William Blessington and last: C-162 -[2018-02-13T00:45:26.754] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:45:26.768] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:26.790] [INFO] cheese - inserting 1000 documents. first: 4th City of London Regiment (Royal Fusiliers) and last: Category:Residential buildings in Bolivia -[2018-02-13T00:45:26.826] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:45:26.836] [INFO] cheese - inserting 1000 documents. first: Rico tan and last: Newtown Flicks Short Film Festival -[2018-02-13T00:45:26.900] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:45:26.956] [INFO] cheese - inserting 1000 documents. first: Mark Tacher Feingold and last: Kemalettin Sami Gokcen -[2018-02-13T00:45:26.987] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:45:27.016] [INFO] cheese - inserting 1000 documents. first: Mebibits and last: Museum of Anthropology, University of Athens -[2018-02-13T00:45:27.069] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:45:27.197] [INFO] cheese - inserting 1000 documents. first: File:EarthSky radio program logo.jpg and last: Category:1861 establishments in Colorado -[2018-02-13T00:45:27.249] [INFO] cheese - inserting 1000 documents. first: Kemalpasa (disambiguation) and last: Zawtar El Charkiyeh -[2018-02-13T00:45:27.269] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:45:27.271] [INFO] cheese - inserting 1000 documents. first: List of Kings of Thailand and last: Category:FC Barcelona Futsal players -[2018-02-13T00:45:27.294] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:45:27.346] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:45:27.405] [INFO] cheese - inserting 1000 documents. first: Circling the Drain and last: List of constituencies of Manipur Legislative Assembly -[2018-02-13T00:45:27.460] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:45:27.503] [INFO] cheese - inserting 1000 documents. first: Davidsbündler and last: Mattisse -[2018-02-13T00:45:27.531] [INFO] cheese - inserting 1000 documents. first: Category:1993 labor disputes and strikes and last: House of Bylandt-Halt-Spaldorf -[2018-02-13T00:45:27.576] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:45:27.585] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:45:27.596] [INFO] cheese - inserting 1000 documents. first: Kucane and last: Landesliga Luneburg -[2018-02-13T00:45:27.669] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:45:27.699] [INFO] cheese - inserting 1000 documents. first: Category:1868 establishments in Colorado and last: National Register of Historic Places in Pike County, Alabama -[2018-02-13T00:45:27.757] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:45:27.847] [INFO] cheese - inserting 1000 documents. first: Category:FC Barcelona Futsal and last: File:BridgeHead Software logo.gif -[2018-02-13T00:45:27.901] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:45:27.941] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Randolph County, Alabama and last: National Register of Historic Places in Stanton County, Kansas -[2018-02-13T00:45:27.942] [INFO] cheese - inserting 1000 documents. first: Category:Sports in insular areas of the United States by sport and last: Kashani Rios -[2018-02-13T00:45:27.967] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:45:27.989] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:45:28.011] [INFO] cheese - inserting 1000 documents. first: Landestheater Tubingen and last: Thomas Anderson (Medal of Honor) -[2018-02-13T00:45:28.078] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:28.105] [INFO] cheese - inserting 1000 documents. first: AG-3F2 and last: Category:Massachusetts General Court elections -[2018-02-13T00:45:28.129] [INFO] cheese - inserting 1000 documents. first: Mattise and last: Kanazuka Station -[2018-02-13T00:45:28.137] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Stevens County, Kansas and last: National Register of Historic Places in Smithtown (town), New York -[2018-02-13T00:45:28.154] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:45:28.173] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:45:28.213] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:45:28.317] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Southampton (town), New York and last: National Register of Historic Places in Cumberland County, Virginia -[2018-02-13T00:45:28.333] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:45:28.375] [INFO] cheese - inserting 1000 documents. first: Amplitude-frequency response and last: Hora razorbelly Minnow -[2018-02-13T00:45:28.403] [INFO] cheese - inserting 1000 documents. first: Category:Germany–Norway military relations and last: Pola Nowakowska -[2018-02-13T00:45:28.425] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:45:28.453] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:28.519] [INFO] cheese - inserting 1000 documents. first: Ulrich Kortz and last: List of Sinn Fein elected representatives -[2018-02-13T00:45:28.560] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:45:28.620] [INFO] cheese - inserting 1000 documents. first: Charles Starr and last: Help Me (Alkaline Trio song) -[2018-02-13T00:45:28.692] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Dickenson County, Virginia and last: Geogepa zeuxidia -[2018-02-13T00:45:28.699] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:45:28.739] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:45:28.757] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Australia/Units/November 11 and last: Wikipedia:Articles for deletion/Liza Wright -[2018-02-13T00:45:28.809] [INFO] cheese - inserting 1000 documents. first: List of Super Lig top scorers and last: Leon Bence -[2018-02-13T00:45:28.820] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:45:28.825] [INFO] cheese - inserting 1000 documents. first: Gober (disambiguation) and last: Murder in the Cathedral (1962 film) -[2018-02-13T00:45:28.837] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:45:28.896] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eureka 7 V.1: New Wave and last: File:Again Cover.jpg -[2018-02-13T00:45:28.908] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:45:28.943] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:29.087] [INFO] cheese - inserting 1000 documents. first: Leon Bertin and last: Bat Guano -[2018-02-13T00:45:29.137] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:45:29.176] [INFO] cheese - inserting 1000 documents. first: Draft:AmiChart and last: Category:Suspected Wikipedia sockpuppets of Father Stuart -[2018-02-13T00:45:29.204] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:45:29.206] [INFO] cheese - inserting 1000 documents. first: Fort Chafee and last: José de la Cruz Porfirio Díaz Mori -[2018-02-13T00:45:29.213] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Illinois, 2016 and last: Wikipedia:Articles for deletion/Compassvale Primary School -[2018-02-13T00:45:29.256] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:45:29.269] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:45:29.362] [INFO] cheese - inserting 1000 documents. first: Komsomolsk, Ivanovo Oblast and last: Lam Thap -[2018-02-13T00:45:29.371] [INFO] cheese - inserting 1000 documents. first: Martin Cupr and last: Wikipedia:Miscellany for deletion/User:Vignesv -[2018-02-13T00:45:29.428] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:29.435] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:45:29.506] [INFO] cheese - inserting 1000 documents. first: List of McDonnell Douglas MD-80 operators and last: Vega (album) -[2018-02-13T00:45:29.540] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Colin todd and last: Southampton to Fareham Line -[2018-02-13T00:45:29.585] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:45:29.611] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:29.758] [INFO] cheese - inserting 1000 documents. first: Mai lányok and last: Category:Churches in the Roman Catholic Diocese of Madison -[2018-02-13T00:45:29.765] [INFO] cheese - inserting 1000 documents. first: Milan Vasic and last: Ferdinand Holtkamp -[2018-02-13T00:45:29.767] [INFO] cheese - inserting 1000 documents. first: Template:WWK and last: Government of Nevada -[2018-02-13T00:45:29.802] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:45:29.805] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:45:29.830] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:45:29.869] [INFO] cheese - inserting 1000 documents. first: Yeovil to Taunton Line and last: Category:Suspected Wikipedia sockpuppets of Zanditra -[2018-02-13T00:45:29.923] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:45:30.048] [INFO] cheese - inserting 1000 documents. first: Loas and last: Arkady Andreasyan -[2018-02-13T00:45:30.094] [INFO] cheese - inserting 1000 documents. first: Alec Hill and last: Bad Tölz-Wolfratshausen district -[2018-02-13T00:45:30.139] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:45:30.150] [INFO] cheese - inserting 1000 documents. first: May Tao Mountains and last: Nikola Celebic -[2018-02-13T00:45:30.158] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:45:30.183] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:45:30.209] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Theted99 and last: Jammu East (Vidhan Sabha constituency) -[2018-02-13T00:45:30.254] [INFO] cheese - inserting 1000 documents. first: Government of New Mexico and last: Waqt Batayega Kaun Apna Kaun Paraya -[2018-02-13T00:45:30.278] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:45:30.309] [INFO] cheese - inserting 1000 documents. first: Grass River (Manitoba) and last: Virginia State Route 63 (1940) -[2018-02-13T00:45:30.330] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:45:30.356] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:45:30.723] [INFO] cheese - inserting 1000 documents. first: Old Stan in the Mountain and last: Category:AFL-CIO people -[2018-02-13T00:45:30.780] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:45:30.795] [INFO] cheese - inserting 1000 documents. first: Ocean Hai and last: Mucizonia -[2018-02-13T00:45:30.833] [INFO] cheese - inserting 1000 documents. first: Virginia State Route 64 (1940) and last: Template:S-line/OASA Rail left/P3 -[2018-02-13T00:45:30.859] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:30.944] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:45:30.945] [INFO] cheese - inserting 1000 documents. first: Category:Indian politicians convicted of corruption and last: Category:Sudanese awards -[2018-02-13T00:45:30.946] [INFO] cheese - inserting 1000 documents. first: Joel Jones and last: Crossroads Motel (Album) -[2018-02-13T00:45:30.996] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:45:31.067] [INFO] cheese - inserting 1000 documents. first: Nya Folkviljan and last: Dance Dance Revolution 2ndReMix Append Club Version Vol.1 -[2018-02-13T00:45:31.068] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:45:31.145] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:45:31.264] [INFO] cheese - inserting 1000 documents. first: File:Jimmy Lennon Sr.jpg and last: Ole Svendsen Iglerod -[2018-02-13T00:45:31.321] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:45:31.465] [INFO] cheese - inserting 1000 documents. first: DKids (TV Channel) and last: Ørjar Øyen -[2018-02-13T00:45:31.470] [INFO] cheese - inserting 1000 documents. first: Cryogenic (Band) and last: Hearts and minds (Iraq) -[2018-02-13T00:45:31.497] [INFO] cheese - inserting 1000 documents. first: File:Angels and airwaves live.JPG and last: Darwin School -[2018-02-13T00:45:31.574] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:45:31.588] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:45:31.610] [INFO] cheese - inserting 1000 documents. first: Hy-Kinsellagh and last: Twerk It Like Miley -[2018-02-13T00:45:31.642] [INFO] cheese - inserting 1000 documents. first: Dance Dance Revolution 2ndReMix Append Club Version Vol.2 and last: Football at the 1992 Summer Olympics – Men's team squads -[2018-02-13T00:45:31.683] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:45:31.690] [INFO] cheese - inserting 1000 documents. first: Portal:Cartoon/Did you know/2 and last: Ecclesiastical faculty -[2018-02-13T00:45:31.713] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:45:31.724] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:31.725] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:45:32.020] [INFO] cheese - inserting 1000 documents. first: File:Varsity Nottingham.jpg and last: Pozeg -[2018-02-13T00:45:32.025] [INFO] cheese - inserting 1000 documents. first: Cp 1101 and last: Code page 1392 -[2018-02-13T00:45:32.052] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:45:32.084] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:45:32.132] [INFO] cheese - inserting 1000 documents. first: Java Content Repository and last: Jawi (script) -[2018-02-13T00:45:32.154] [INFO] cheese - inserting 1000 documents. first: Democratic Party (Republic of Korea, 2008) and last: Portal:New York/Selected quotes/Archives -[2018-02-13T00:45:32.166] [INFO] cheese - inserting 1000 documents. first: Eurysternum and last: Small inverted retrosnub icosicosidodecahedron -[2018-02-13T00:45:32.196] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:32.210] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:45:32.258] [INFO] cheese - inserting 1000 documents. first: Hansel DeBartolo and last: Alpha3beta2 nACh receptor -[2018-02-13T00:45:32.282] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:45:32.359] [INFO] cheese - inserting 1000 documents. first: Pozega (Novi Pazar) and last: Ramon Ramirez (footballer) -[2018-02-13T00:45:32.359] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:45:32.409] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:45:32.640] [INFO] cheese - inserting 1000 documents. first: File:Sherwood Metros Official Logo.jpg and last: Eric Vivier -[2018-02-13T00:45:32.666] [INFO] cheese - inserting 1000 documents. first: Ramon Ramirez (pitcher, born 1977) and last: 2809 BC -[2018-02-13T00:45:32.689] [INFO] cheese - inserting 1000 documents. first: École La Croisée de Robertville and last: Kelling Heath Park railway station -[2018-02-13T00:45:32.692] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:32.695] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:45:32.697] [INFO] cheese - inserting 1000 documents. first: Template:Bergen County, New Jersey School Districts and last: Van der Grinten -[2018-02-13T00:45:32.740] [INFO] cheese - inserting 1000 documents. first: Korea Baseball League and last: Wikipedia:Articles for deletion/Drake (fairy) -[2018-02-13T00:45:32.757] [INFO] cheese - inserting 1000 documents. first: Sirsid and last: Takht Jamshid Cup 1973-74 -[2018-02-13T00:45:32.785] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:45:32.785] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:45:32.819] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:45:32.838] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:45:33.020] [INFO] cheese - inserting 1000 documents. first: Template:Karachay–Cherkessia and last: Rudolfuv kamen -[2018-02-13T00:45:33.070] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:45:33.088] [INFO] cheese - inserting 1000 documents. first: Myiolestes megarhynchus and last: Sindhoori -[2018-02-13T00:45:33.164] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:45:33.223] [INFO] cheese - inserting 1000 documents. first: Template:2015 in American soccer and last: File:BAP Japan Tour Warrior Begins.jpg -[2018-02-13T00:45:33.284] [INFO] cheese - inserting 1000 documents. first: A’Quonesia Franklin and last: ACSS2 -[2018-02-13T00:45:33.285] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:45:33.317] [INFO] cheese - inserting 1000 documents. first: Takht Jamshid Cup 1974-75 and last: Portal:United States Marine Corps/article/2010July -[2018-02-13T00:45:33.353] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:45:33.357] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:33.365] [INFO] cheese - inserting 1000 documents. first: Dits from the Commuter Belt and last: Children's Bureau -[2018-02-13T00:45:33.380] [INFO] cheese - inserting 1000 documents. first: Category:2010s establishments in Latvia and last: 3059 BC -[2018-02-13T00:45:33.451] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:45:33.514] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:45:33.629] [INFO] cheese - inserting 1000 documents. first: Johann Heinrich von Carmer and last: 2017 Morelos Open - Singles -[2018-02-13T00:45:33.687] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:45:33.860] [INFO] cheese - inserting 1000 documents. first: Category:Works based on The Three Little Pigs and last: Raghuvar Das -[2018-02-13T00:45:33.945] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:45:33.959] [INFO] cheese - inserting 1000 documents. first: 3060 BC and last: Category:Geography of Haliburton County -[2018-02-13T00:45:33.974] [INFO] cheese - inserting 1000 documents. first: Hugh P. Mullin and last: For Darwen -[2018-02-13T00:45:33.998] [INFO] cheese - inserting 1000 documents. first: Butlins Barryisland and last: Stephen McBride (footballer, born 1983) -[2018-02-13T00:45:34.027] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:45:34.062] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:45:34.076] [INFO] cheese - inserting 1000 documents. first: Blocker Gundan IV Machine Blaster and last: Longphorts -[2018-02-13T00:45:34.143] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:45:34.204] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:45:34.279] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1995 Pan American Games - Women's 100 metres and last: File:American Fable.jpg -[2018-02-13T00:45:34.326] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:45:34.510] [INFO] cheese - inserting 1000 documents. first: Rang Stong and last: Template:Howard University presidents -[2018-02-13T00:45:34.560] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:34.618] [INFO] cheese - inserting 1000 documents. first: Category:Bus stations in Kerala and last: Template:ConvertAbbrev/ISO 3166-2/EG -[2018-02-13T00:45:34.633] [INFO] cheese - inserting 1000 documents. first: File:Johncenainring.jpg and last: Thérèse Tanguay Dion -[2018-02-13T00:45:34.652] [INFO] cheese - inserting 1000 documents. first: August kusche and last: Category:Wikipedia sockpuppets of Megameeting -[2018-02-13T00:45:34.677] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:45:34.694] [INFO] cheese - inserting 1000 documents. first: Totonacan language and last: Minami-Makigahara Station -[2018-02-13T00:45:34.697] [INFO] cheese - inserting 1000 documents. first: Obarenes Mountains and last: Revolutionary Internationalist Organisation -[2018-02-13T00:45:34.702] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:45:34.714] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:45:34.776] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:45:34.791] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:45:34.881] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Fakir005 and last: Category:Suspected Wikipedia sockpuppets of Angelb88 -[2018-02-13T00:45:34.899] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:45:35.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Council/Proposals/Cricket Stadiums and last: Tomáš Hanák -[2018-02-13T00:45:35.062] [INFO] cheese - inserting 1000 documents. first: Quiché Airport and last: Sarigol, Haymana -[2018-02-13T00:45:35.064] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:45:35.133] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:45:35.176] [INFO] cheese - inserting 1000 documents. first: Günter Mielke and last: File:Centriq Logo72.jpg -[2018-02-13T00:45:35.230] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:35.245] [INFO] cheese - inserting 1000 documents. first: Category:Basketball coaches in Greece by club and last: Category:GA-Class American Samoa road transport articles -[2018-02-13T00:45:35.274] [INFO] cheese - inserting 1000 documents. first: Dorothy Nelkin and last: List of SVD schools -[2018-02-13T00:45:35.307] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:45:35.326] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:45:35.344] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 217.140.193.123 and last: Draft:Cocoweb -[2018-02-13T00:45:35.378] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:45:35.395] [INFO] cheese - inserting 1000 documents. first: The Houston 620 and last: Simao Jatene -[2018-02-13T00:45:35.418] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:45:35.445] [INFO] cheese - inserting 1000 documents. first: Inertia Recordings and last: File:Bradford City 1906-07.jpg -[2018-02-13T00:45:35.482] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:45:35.572] [INFO] cheese - inserting 1000 documents. first: Simon Bolivar (1942 film) and last: Station Buttiniere (Tram de Bordeaux) -[2018-02-13T00:45:35.598] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:45:35.625] [INFO] cheese - inserting 1000 documents. first: List of Frank Zappa musicians and last: Exploding foil initiator -[2018-02-13T00:45:35.649] [INFO] cheese - inserting 1000 documents. first: Category:A-Class American Samoa road transport articles and last: MV SeaFrance Molière -[2018-02-13T00:45:35.684] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:35.697] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:45:35.717] [INFO] cheese - inserting 1000 documents. first: Category:Commercial buildings in Kazakhstan and last: Kazakhstan men's national under-17 basketball team -[2018-02-13T00:45:35.765] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:45:35.808] [INFO] cheese - inserting 1000 documents. first: Boulogne Bowl and last: Type A Fujian flu -[2018-02-13T00:45:35.835] [INFO] cheese - inserting 1000 documents. first: The Bloodless Revolution: Radical Vegetarians and the Discovery of India and last: 32nd Aviation Division -[2018-02-13T00:45:35.843] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:45:35.870] [INFO] cheese - inserting 1000 documents. first: Hillsbourgh (ship) and last: Takeoff (disambiguation) -[2018-02-13T00:45:35.877] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:45:35.903] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:45:36.127] [INFO] cheese - inserting 1000 documents. first: SiS 300 and last: Russet Batomys -[2018-02-13T00:45:36.242] [INFO] cheese - inserting 1000 documents. first: El Cajon Police Department and last: Sormarka Arena -[2018-02-13T00:45:36.248] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:45:36.260] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/WASEEM SPORTS (SPORTS WEAR MANUFACTURER) and last: Draft:BBC MIDLAND RADIO ORCHESTRA -[2018-02-13T00:45:36.284] [INFO] cheese - inserting 1000 documents. first: Zaragon and last: Marbles -[2018-02-13T00:45:36.327] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:45:36.331] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:45:36.353] [INFO] cheese - inserting 1000 documents. first: 4th Aviation Bomber Division and last: Fan Qibli -[2018-02-13T00:45:36.378] [INFO] cheese - inserting 1000 documents. first: Edgardo M. Chatto and last: Panzerchrist -[2018-02-13T00:45:36.370] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:45:36.552] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:45:36.564] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:45:36.792] [INFO] cheese - inserting 1000 documents. first: 2012 Regions Morgan Keegan Championships and the Cellular South Cup and last: Theodore Dezamy -[2018-02-13T00:45:36.828] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:45:36.865] [INFO] cheese - inserting 1000 documents. first: Vermont Route 122 Alternate and last: Roy Kline (footballer) -[2018-02-13T00:45:36.938] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:45:37.047] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Liber HVHI and last: Barnsley Academy -[2018-02-13T00:45:37.052] [INFO] cheese - inserting 1000 documents. first: File:Boy Meets Curl.jpg and last: The B-52’s -[2018-02-13T00:45:37.120] [INFO] cheese - inserting 1000 documents. first: Al-Ghawi and last: Hydrocampa pulchralis -[2018-02-13T00:45:37.124] [INFO] cheese - inserting 1000 documents. first: Jeeva (actor) and last: Jiang Fengzhi -[2018-02-13T00:45:37.136] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:45:37.142] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:45:37.160] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:45:37.229] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:45:37.277] [INFO] cheese - inserting 1000 documents. first: The Kalahari Typing School for Men and last: Šarišské Dravce -[2018-02-13T00:45:37.354] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:45:37.415] [INFO] cheese - inserting 1000 documents. first: Evektor SportStar RTC and last: Senior League World Series (Southwest Region) -[2018-02-13T00:45:37.502] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:45:37.657] [INFO] cheese - inserting 1000 documents. first: Sultan valide and last: British 46th Infantry Brigade -[2018-02-13T00:45:37.693] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:37.708] [INFO] cheese - inserting 1000 documents. first: Museum of the War of Chinese People's Resistance Against Japanese Aggression and last: Taby IS FK -[2018-02-13T00:45:37.733] [INFO] cheese - inserting 1000 documents. first: Triplophysa daqiaoensis and last: Romodanovskiy Raion -[2018-02-13T00:45:37.756] [INFO] cheese - inserting 1000 documents. first: File:Faulu Microfinance Bank Limited Logo.jpg and last: Peach-fronted conure -[2018-02-13T00:45:37.764] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:45:37.834] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:45:37.837] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:45:37.986] [INFO] cheese - inserting 1000 documents. first: Sauce boat and last: Wisconsin State Colleges -[2018-02-13T00:45:38.058] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:45:38.086] [INFO] cheese - inserting 1000 documents. first: Georges-Olivier Châteaureynaud and last: Category:1794 disestablishments in the Habsburg Monarchy -[2018-02-13T00:45:38.154] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:45:38.271] [INFO] cheese - inserting 1000 documents. first: Taby church and last: Wikipedia:Articles for deletion/Weighted Million Operations Per Second -[2018-02-13T00:45:38.330] [INFO] cheese - inserting 1000 documents. first: File:CNLiewColourSculpture.jpg and last: Integrál-DAC -[2018-02-13T00:45:38.344] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:45:38.431] [INFO] cheese - inserting 1000 documents. first: Tarraby and last: File:Godiva Chocolatier Logo.svg -[2018-02-13T00:45:38.442] [INFO] cheese - inserting 1000 documents. first: Template:Men's European Volleyball Championship winners and last: Urgleptes celtis -[2018-02-13T00:45:38.447] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:45:38.496] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:45:38.554] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:45:38.609] [INFO] cheese - inserting 1000 documents. first: Turbulence 1 and last: Dr. Naseem uz Zafar Baquiri -[2018-02-13T00:45:38.706] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:38.726] [INFO] cheese - inserting 1000 documents. first: Dystimia and last: Wikipedia:Articles for deletion/GPSBabel -[2018-02-13T00:45:38.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hacı Karay and last: Category:Odd Fellows buildings in Wyoming -[2018-02-13T00:45:38.830] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:45:38.895] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:45:38.958] [INFO] cheese - inserting 1000 documents. first: Category:Gijón and last: UN/LOCODE:CHNYO -[2018-02-13T00:45:39.014] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:45:39.033] [INFO] cheese - inserting 1000 documents. first: Todd Reynolds and last: Category:Video games based on films directed by Frank Marshall -[2018-02-13T00:45:39.116] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:45:39.128] [INFO] cheese - inserting 1000 documents. first: Asian white-lips and last: Category:FIFA World Cup posters -[2018-02-13T00:45:39.223] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:45:39.244] [INFO] cheese - inserting 1000 documents. first: Thatchernomics and last: File:Bergen County Cooperative Library System logo.jpg -[2018-02-13T00:45:39.328] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:39.372] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Italy and last: Doubly-fed generator -[2018-02-13T00:45:39.403] [INFO] cheese - inserting 1000 documents. first: Coxen baronets and last: 3501 BC -[2018-02-13T00:45:39.467] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:45:39.485] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:45:39.493] [INFO] cheese - inserting 1000 documents. first: Farm Road 528 and last: Shkorpilovtsi -[2018-02-13T00:45:39.593] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:39.711] [INFO] cheese - inserting 1000 documents. first: St. Lawrence, Essex and last: Operating temperature range -[2018-02-13T00:45:39.726] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Taphrinomycetes and last: Category:Suspected Wikipedia sockpuppets of Middle East Editor -[2018-02-13T00:45:39.754] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2014 Commonwealth Games - Men's Keirin and last: Category:Călărași -[2018-02-13T00:45:39.793] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:45:39.801] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:45:39.845] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:39.988] [INFO] cheese - inserting 1000 documents. first: Maiden grass and last: Wikipedia:Articles for deletion/List of soap opera popular couples -[2018-02-13T00:45:39.990] [INFO] cheese - inserting 1000 documents. first: SPEED (Kpop) and last: Visoce, Sentjur -[2018-02-13T00:45:40.029] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of J robson1 and last: Category:Women's basketball competitions in Greece -[2018-02-13T00:45:40.048] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:45:40.075] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:40.078] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:45:40.325] [INFO] cheese - inserting 1000 documents. first: Toyama Thunderbirds and last: Template:User wikipedia/Rollback -[2018-02-13T00:45:40.325] [INFO] cheese - inserting 1000 documents. first: Visocka and last: Deh-e Hasanali, Lorestan -[2018-02-13T00:45:40.352] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:45:40.419] [INFO] cheese - inserting 1000 documents. first: Category:Media in Călărași and last: New Granada cross-banded treefrog -[2018-02-13T00:45:40.423] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:45:40.536] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:45:40.616] [INFO] cheese - inserting 1000 documents. first: Andrej Sakharov and last: Johns, Geoff -[2018-02-13T00:45:40.707] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:45:40.718] [INFO] cheese - inserting 1000 documents. first: BAND (application) and last: Wikipedia:WikiProject Spam/Local/theholyseedchurch.org -[2018-02-13T00:45:40.748] [INFO] cheese - inserting 1000 documents. first: Wittnau, Baden-Wurttemberg and last: Wikipedia:Articles for deletion/Cross generation ship -[2018-02-13T00:45:40.765] [INFO] cheese - inserting 1000 documents. first: Socle (architecture) and last: Donald's Hill -[2018-02-13T00:45:40.779] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:40.813] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:45:40.837] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:45:40.956] [INFO] cheese - inserting 1000 documents. first: File:Bombayrockers.jpg and last: Template:Fb round2 2007-08 UCL GS -[2018-02-13T00:45:40.974] [INFO] cheese - inserting 1000 documents. first: 3720 BC and last: Category:Candidates for President of India -[2018-02-13T00:45:40.998] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:45:41.004] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:45:41.110] [INFO] cheese - inserting 1000 documents. first: Clausotrypa elegans and last: Category:Novels by Max Kidruk -[2018-02-13T00:45:41.138] [INFO] cheese - inserting 1000 documents. first: Scepticism in Law and last: EX 34 -[2018-02-13T00:45:41.148] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:45:41.154] [INFO] cheese - inserting 1000 documents. first: New Granada cross-banded treefrogs and last: Body In A Hole EP -[2018-02-13T00:45:41.195] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:45:41.241] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:45:41.263] [INFO] cheese - inserting 1000 documents. first: Hooligans Holiday and last: Midichloria -[2018-02-13T00:45:41.286] [INFO] cheese - inserting 1000 documents. first: AEthelberht, king of the Hwicce and last: Eric Vigner -[2018-02-13T00:45:41.307] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:45:41.321] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:45:41.384] [INFO] cheese - inserting 1000 documents. first: French number-one hits of 2004 and last: Adam Hieronim Sieniawski (1623-1650) -[2018-02-13T00:45:41.421] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:41.588] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed Telangana articles and last: Colt 600 convertible -[2018-02-13T00:45:41.625] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:45:41.633] [INFO] cheese - inserting 1000 documents. first: Category:Bridges in Henry County, Iowa and last: File:Screen Shot Target Nevada.png -[2018-02-13T00:45:41.650] [INFO] cheese - inserting 1000 documents. first: Esera and last: Pujol i Bausis factory -[2018-02-13T00:45:41.693] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:45:41.694] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:45:41.745] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada articles by quality statistics and last: Alison baronets -[2018-02-13T00:45:41.790] [INFO] cheese - inserting 1000 documents. first: File:Donnaworkhardforthemoney.jpg and last: Water-Fueled Car -[2018-02-13T00:45:41.798] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:41.921] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:45:41.967] [INFO] cheese - inserting 1000 documents. first: Template:BSrow and last: Ulles gas field -[2018-02-13T00:45:42.009] [INFO] cheese - inserting 1000 documents. first: File:MX vs. ATV Box Art from Amazon.jpg and last: Cricketfrog -[2018-02-13T00:45:42.040] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:45:42.088] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:42.148] [INFO] cheese - inserting 1000 documents. first: Flame structure and last: Panzer Lehr Division (Germany) -[2018-02-13T00:45:42.235] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T00:45:42.425] [INFO] cheese - inserting 1000 documents. first: ג'ק וולש and last: Filipino-Australian -[2018-02-13T00:45:42.438] [INFO] cheese - inserting 1000 documents. first: Category:Personal property law of the United States and last: Category:1810 in Scotland -[2018-02-13T00:45:42.458] [INFO] cheese - inserting 1000 documents. first: Category:Interior ministers of Guinea-Bissau and last: Newtork Three -[2018-02-13T00:45:42.481] [INFO] cheese - inserting 1000 documents. first: Cricketfrogs and last: Mont Formation -[2018-02-13T00:45:42.494] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:45:42.529] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:45:42.544] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:45:42.546] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:45:42.780] [INFO] cheese - inserting 1000 documents. first: 273rd Reserve Panzer Division (Germany) and last: List of open air and living history museums in the United States -[2018-02-13T00:45:42.849] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:45:42.911] [INFO] cheese - inserting 1000 documents. first: Laziska Power Station and last: Fathe Edward Petre -[2018-02-13T00:45:42.945] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:45:42.953] [INFO] cheese - inserting 1000 documents. first: Keith Anthony Morrison and last: File:InZealBomb by RoTto.jpg -[2018-02-13T00:45:43.009] [INFO] cheese - inserting 1000 documents. first: List of Tale Spin characters and last: Heike Hartwig -[2018-02-13T00:45:43.012] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:43.048] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:43.087] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Germany to Singapore and last: Wikipedia:WikiProject Women in Red/Missing articles by education/Russia - Moscow Conservatory -[2018-02-13T00:45:43.162] [INFO] cheese - inserting 1000 documents. first: Oolite Blanche and last: List of songs recorded by Usher -[2018-02-13T00:45:43.185] [INFO] cheese - batch complete in: 1.49 secs -[2018-02-13T00:45:43.268] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:43.357] [INFO] cheese - inserting 1000 documents. first: GSM SIM and last: Go (Jón Þór Birgisson album) -[2018-02-13T00:45:43.402] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:45:43.409] [INFO] cheese - inserting 1000 documents. first: Sight and sound and last: Stitch in Time (episode) -[2018-02-13T00:45:43.450] [INFO] cheese - inserting 1000 documents. first: Steven levitt and last: Bubble sheet -[2018-02-13T00:45:43.468] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:45:43.523] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:45:43.543] [INFO] cheese - inserting 1000 documents. first: Category:Ardabil County geography stubs and last: Leonard Henry Caleb Tippett -[2018-02-13T00:45:43.616] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:45:43.631] [INFO] cheese - inserting 1000 documents. first: Draft:Shahid Saleem and last: Don't Knock Twice (film) -[2018-02-13T00:45:43.702] [INFO] cheese - inserting 1000 documents. first: Polyove, Shakhtarsk Raion and last: Category:1967–68 Southern Conference men's basketball season -[2018-02-13T00:45:43.703] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:43.749] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:45:43.857] [INFO] cheese - inserting 1000 documents. first: West Cuban anole and last: Portal:India/Header -[2018-02-13T00:45:43.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Wesley Rawles and last: Template:Mozart horn concertos -[2018-02-13T00:45:43.929] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:45:43.939] [INFO] cheese - inserting 1000 documents. first: I Hear You Calling (episode) and last: Broadcasting (networks) -[2018-02-13T00:45:43.957] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:45:44.040] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:45:44.087] [INFO] cheese - inserting 1000 documents. first: Constituency PP-116 and last: Category:Academies in Coventry -[2018-02-13T00:45:44.136] [INFO] cheese - inserting 1000 documents. first: Cabildo Mayor del pueblo Muisca and last: Takiah -[2018-02-13T00:45:44.149] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:45:44.192] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:45:44.325] [INFO] cheese - inserting 1000 documents. first: 1997 Salford Reds season and last: Category:Sportspeople from Vernon, British Columbia -[2018-02-13T00:45:44.368] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:45:44.445] [INFO] cheese - inserting 1000 documents. first: Joe Thomas (communist) and last: Dwarf anole -[2018-02-13T00:45:44.459] [INFO] cheese - inserting 1000 documents. first: Category:National Lacrosse League season templates and last: Callicarpa cathayana -[2018-02-13T00:45:44.464] [INFO] cheese - inserting 1000 documents. first: Nature's Garden and last: Ležiachov -[2018-02-13T00:45:44.481] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:44.506] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:45:44.510] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:45:44.567] [INFO] cheese - inserting 1000 documents. first: Portal:Freedom of speech/Selected quote/41 and last: Template:Archdeacon of the Isle of Man -[2018-02-13T00:45:44.586] [INFO] cheese - inserting 1000 documents. first: Category:1785 by city and last: Draft:William Finch -[2018-02-13T00:45:44.616] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:45:44.638] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:45:44.809] [INFO] cheese - inserting 1000 documents. first: Student quiz show and last: Covers (Young Statues EP) -[2018-02-13T00:45:44.835] [INFO] cheese - inserting 1000 documents. first: Anolis occultus and last: Template:Sa-journeyman-ubx -[2018-02-13T00:45:44.858] [INFO] cheese - inserting 1000 documents. first: Tubba-Bubba's Now Hubba-Hubba and last: Harry Mangurian -[2018-02-13T00:45:44.859] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:44.877] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:45:44.911] [INFO] cheese - inserting 1000 documents. first: Valča and last: Sweyn Estridsen -[2018-02-13T00:45:44.912] [INFO] cheese - inserting 1000 documents. first: File:The Pepper-Knepper Quintet.jpg and last: Shapes (band) -[2018-02-13T00:45:44.927] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:44.958] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:45:44.960] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:45:44.997] [INFO] cheese - inserting 1000 documents. first: Hiram Rhoads Revels and last: Category:Autonomous provinces of Serbia -[2018-02-13T00:45:45.065] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:45:45.208] [INFO] cheese - inserting 1000 documents. first: Template:Sa-grognard-ubx and last: Wikipedia:Articles for deletion/Kinuyo Yamashita -[2018-02-13T00:45:45.241] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:45:45.277] [INFO] cheese - inserting 1000 documents. first: Age Isn't Ours and last: File:Pride Prejudice 1995 VHS PAL Rated U Double Pack.jpg -[2018-02-13T00:45:45.301] [INFO] cheese - inserting 1000 documents. first: Days of Future Past (Part 2) and last: Student / Teacher Ratio -[2018-02-13T00:45:45.316] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:45:45.323] [INFO] cheese - inserting 1000 documents. first: Xiang Huaqiang and last: AFCS -[2018-02-13T00:45:45.332] [INFO] cheese - inserting 1000 documents. first: Nicolas d'Ailleboust de Manthet and last: List of Riverdale episodes -[2018-02-13T00:45:45.346] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:45:45.360] [INFO] cheese - inserting 1000 documents. first: File:The Assassination of Trotsky.jpg and last: Wikipedia:WikiProject Spam/LinkReports/ruradio.me -[2018-02-13T00:45:45.402] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:45:45.411] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:45:45.483] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:45:45.774] [INFO] cheese - inserting 1000 documents. first: African Dream Root and last: Reginald Gray -[2018-02-13T00:45:45.792] [INFO] cheese - inserting 1000 documents. first: 1999 NCAA Rifle Championships and last: Rhaphiptera boliviana -[2018-02-13T00:45:45.821] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:45:45.837] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:45:45.940] [INFO] cheese - inserting 1000 documents. first: File:Magic Square Canvas.png and last: Category:Film scores by Mano Murthy -[2018-02-13T00:45:45.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oildex and last: Termite pre-treatment -[2018-02-13T00:45:45.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AIRPORTS/AN and last: Category:Books by Hunter S. Thompson -[2018-02-13T00:45:45.991] [INFO] cheese - inserting 1000 documents. first: George Phillips Odom, Jr and last: Notochthamalus -[2018-02-13T00:45:46.002] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:45:46.045] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:45:46.061] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:45:46.081] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:45:46.267] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand male taekwondo practitioners and last: Coptosia tauricola -[2018-02-13T00:45:46.292] [INFO] cheese - inserting 1000 documents. first: Guus ter Horst and last: Category:Canada subdivision navigational boxes -[2018-02-13T00:45:46.331] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:45:46.351] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:45:46.478] [INFO] cheese - inserting 1000 documents. first: Damien Quinn (hurler) and last: Expeed3 -[2018-02-13T00:45:46.525] [INFO] cheese - inserting 1000 documents. first: Dennis Heath and last: Category:Yuchi -[2018-02-13T00:45:46.539] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:45:46.600] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:45:46.631] [INFO] cheese - inserting 1000 documents. first: Coptosia cinerascens and last: Category:Suspected Wikipedia sockpuppets of Vichay Phommachan -[2018-02-13T00:45:46.676] [INFO] cheese - inserting 1000 documents. first: File:Santaposterbigla3.jpg and last: Mount Bowen (Queensland) -[2018-02-13T00:45:46.699] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:45:46.748] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:45:46.802] [INFO] cheese - inserting 1000 documents. first: Thomas Prickett and last: File:Enfield District Scout Band.png -[2018-02-13T00:45:46.849] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:45:46.914] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of QZDRE3 and last: Β Serpentis -[2018-02-13T00:45:46.928] [INFO] cheese - inserting 1000 documents. first: Citizens Industrial Alliance and last: Dille–Koppanyi reagent -[2018-02-13T00:45:46.936] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:45:46.946] [INFO] cheese - inserting 1000 documents. first: File:Wmya 2008.png and last: Category:MI5 personnel -[2018-02-13T00:45:46.978] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:45:47.018] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T00:45:47.192] [INFO] cheese - inserting 1000 documents. first: Maamul Goboleedka Jubbaland ee Soomaaliya and last: Template:Camus -[2018-02-13T00:45:47.239] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Sisak-Moslavina County and last: One hundred eighty-nine -[2018-02-13T00:45:47.252] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:45:47.307] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:45:47.373] [INFO] cheese - inserting 1000 documents. first: Big Electric Cat and last: Category:WikiProject Paintball templates -[2018-02-13T00:45:47.399] [INFO] cheese - inserting 1000 documents. first: Larmer Bay ruin and last: National Treasures of Japan (statistics) -[2018-02-13T00:45:47.406] [INFO] cheese - inserting 1000 documents. first: Template:Alliance for the Republic - Yaakaar/meta/shortname and last: File:Parts & Labor in Brooklyn, 2009.jpg -[2018-02-13T00:45:47.423] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:45:47.479] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:45:47.474] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:45:47.555] [INFO] cheese - inserting 1000 documents. first: Kotoba no Puzzle Mojipittan and last: Shichinin no Nana -[2018-02-13T00:45:47.645] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:45:47.674] [INFO] cheese - inserting 1000 documents. first: One hundred eighty-three and last: Capital Plaza -[2018-02-13T00:45:47.770] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:47.868] [INFO] cheese - inserting 1000 documents. first: Jake Cave and last: Naby Deco Keita -[2018-02-13T00:45:47.951] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:45:47.964] [INFO] cheese - inserting 1000 documents. first: Deutscher Kaiser and last: Category:Wheelchair curling -[2018-02-13T00:45:48.055] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:45:48.103] [INFO] cheese - inserting 1000 documents. first: Template:Olympics infobox and last: Wikipedia:Articles for deletion/YaBB -[2018-02-13T00:45:48.108] [INFO] cheese - inserting 1000 documents. first: Faster than the speed of light (disambiguation) and last: Sterkfontein caves -[2018-02-13T00:45:48.138] [INFO] cheese - inserting 1000 documents. first: San Pedro District, Lucanas and last: Georgia Highway 338 -[2018-02-13T00:45:48.196] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:48.203] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:45:48.212] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:45:48.231] [INFO] cheese - inserting 1000 documents. first: Norwegian County Road 913 and last: Category:Political office-holders in Arunachal Pradesh -[2018-02-13T00:45:48.297] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:48.536] [INFO] cheese - inserting 1000 documents. first: Template:Infobox silver/sandbox and last: Memories Are Made of This (Deana Martin album) -[2018-02-13T00:45:48.580] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:45:48.598] [INFO] cheese - inserting 1000 documents. first: Iva Landeka and last: Bariša Čolak -[2018-02-13T00:45:48.668] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:45:48.678] [INFO] cheese - inserting 1000 documents. first: Highway 338 (Georgia) and last: Sue Merz -[2018-02-13T00:45:48.698] [INFO] cheese - inserting 1000 documents. first: Directive 66/683 and last: Template:AFLGameHeader/doc -[2018-02-13T00:45:48.712] [INFO] cheese - inserting 1000 documents. first: Category:Political office-holders in Assam and last: Wikipedia:Featured list candidates/Alfred Hitchcock filmography/archive1 -[2018-02-13T00:45:48.729] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:45:48.746] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:48.796] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:45:48.919] [INFO] cheese - inserting 1000 documents. first: Properties window and last: West Linn High School -[2018-02-13T00:45:48.983] [INFO] cheese - inserting 1000 documents. first: Myelois multiflorella and last: Template:Deans of St George's Chapel at Windsor Castle -[2018-02-13T00:45:48.994] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:45:49.055] [INFO] cheese - inserting 1000 documents. first: Template:Db-u1/testcases and last: Little Anita's -[2018-02-13T00:45:49.085] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:49.116] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:49.160] [INFO] cheese - inserting 1000 documents. first: 1917–18 FC Barcelona season and last: Interventricular foramen of monro -[2018-02-13T00:45:49.209] [INFO] cheese - inserting 1000 documents. first: Clifton, North Carolina and last: Olusẹgun Mathew Okikiọla Arẹmu Ọbasanjọ -[2018-02-13T00:45:49.229] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:45:49.297] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:45:49.567] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Animation/Warner Bros. Animation work group/Importance scale and last: Template:Attached KML/Sheridan County, North Dakota -[2018-02-13T00:45:49.592] [INFO] cheese - inserting 1000 documents. first: File:ThePoolMedfieldDennisMillerBunker1889.jpg and last: Category:Scottish pool players -[2018-02-13T00:45:49.622] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:45:49.674] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:45:49.683] [INFO] cheese - inserting 1000 documents. first: Marie-Caroline Du Fresnay and last: File:Aquinas College Nashville logo.svg -[2018-02-13T00:45:49.744] [INFO] cheese - inserting 1000 documents. first: The Whistler (Chana song) and last: Wikipedia:Articles for deletion/Aarti Rana -[2018-02-13T00:45:49.750] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:45:49.793] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:45:49.834] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Ratatouille and last: Keyla Ohs -[2018-02-13T00:45:49.929] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T00:45:49.975] [INFO] cheese - inserting 1000 documents. first: Marconi-Osram Valve and last: Parliament of the Federation of Bosnia and Herzegovina -[2018-02-13T00:45:50.000] [INFO] cheese - inserting 1000 documents. first: Longlin and last: File:IJandSpearofDestiny.jpg -[2018-02-13T00:45:50.017] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:45:50.068] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:45:50.195] [INFO] cheese - inserting 1000 documents. first: Skales and last: Biryukovo -[2018-02-13T00:45:50.254] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:45:50.293] [INFO] cheese - inserting 1000 documents. first: File:Pancho group 1 500.jpg and last: NKMK -[2018-02-13T00:45:50.350] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:45:50.402] [INFO] cheese - inserting 1000 documents. first: Glossary of chemistry and last: White Heat (TV series) -[2018-02-13T00:45:50.463] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:45:50.490] [INFO] cheese - inserting 1000 documents. first: William Pile Shipbuilder and last: State (law) -[2018-02-13T00:45:50.492] [INFO] cheese - inserting 1000 documents. first: Razorcake fanzine and last: Charles W. Ray -[2018-02-13T00:45:50.567] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:45:50.574] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:45:50.582] [INFO] cheese - inserting 1000 documents. first: Draft:San Fransisco World Game and last: Oaxaca PE-1 Pegasus -[2018-02-13T00:45:50.664] [INFO] cheese - inserting 1000 documents. first: Category:1989 in women's association football and last: Category:Landforms of Grant County, Kansas -[2018-02-13T00:45:50.695] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:45:50.717] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:50.749] [INFO] cheese - inserting 1000 documents. first: Dépeçage and last: File:Hitoriyorifutari.jpg -[2018-02-13T00:45:50.825] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:45:51.003] [INFO] cheese - inserting 1000 documents. first: Inspector George Gently (TV series) and last: Wikipedia:Reference desk/Archives/Humanities/2012 February 27 -[2018-02-13T00:45:51.043] [INFO] cheese - inserting 1000 documents. first: 2008 Acura Classic and last: Inger Brattstrom -[2018-02-13T00:45:51.047] [INFO] cheese - inserting 1000 documents. first: Confederation Life Building, Toronto and last: Category:The Young Gods songs -[2018-02-13T00:45:51.047] [INFO] cheese - inserting 1000 documents. first: Category:United States at the Olympic Men's Basketball Tournament and last: Matías Sborowitz -[2018-02-13T00:45:51.059] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:45:51.085] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:45:51.089] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:45:51.104] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Meade County, Kansas and last: Michael Gotthelf -[2018-02-13T00:45:51.112] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:45:51.185] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:45:51.269] [INFO] cheese - inserting 1000 documents. first: Abstract Factory and last: Lady Tweedsmuir -[2018-02-13T00:45:51.337] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:45:51.390] [INFO] cheese - inserting 1000 documents. first: Good-Hartle Farm and last: Richville, Arizona -[2018-02-13T00:45:51.417] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:45:51.504] [INFO] cheese - inserting 1000 documents. first: William Powers (politics) and last: Bonneville Dam Historic District -[2018-02-13T00:45:51.546] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:45:51.562] [INFO] cheese - inserting 1000 documents. first: Morro da Mineira and last: VNG -[2018-02-13T00:45:51.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2012 February 26 and last: File:Anna of Brooklyn.jpg -[2018-02-13T00:45:51.619] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:45:51.663] [INFO] cheese - inserting 1000 documents. first: Herman Nickel and last: Assignment polytope -[2018-02-13T00:45:51.671] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:45:51.714] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:51.773] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adam Wylde and last: Category:Wikipedia sockpuppets of Factsldn15 -[2018-02-13T00:45:51.807] [INFO] cheese - inserting 1000 documents. first: File:Chelsea01.jpg and last: Portal:Psychology/Selected psychologist/8 -[2018-02-13T00:45:51.822] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:45:51.848] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:45:51.972] [INFO] cheese - inserting 1000 documents. first: Two Weeks (FKA Twigs song) and last: Wrestling at the 2014 Commonwealth Games – Women's freestyle 69 kg -[2018-02-13T00:45:52.025] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:45:52.032] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mr. Unknown and last: Psychikou B.C. -[2018-02-13T00:45:52.059] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:45:52.164] [INFO] cheese - inserting 1000 documents. first: Portal:Psychology/Selected psychologist/9 and last: A Hobo's Christmas (Film) -[2018-02-13T00:45:52.204] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:45:52.224] [INFO] cheese - inserting 1000 documents. first: Category:ATP Tashkent Open and last: List of trails in Fremont County, Wyoming -[2018-02-13T00:45:52.230] [INFO] cheese - inserting 1000 documents. first: Placabis and last: Barkhamsted Forks -[2018-02-13T00:45:52.297] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:45:52.342] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:45:52.364] [INFO] cheese - inserting 1000 documents. first: Izuna: The Legend of the Unemployed Ninja and last: Template:German Verbandsligas and Landesligas (football) -[2018-02-13T00:45:52.423] [INFO] cheese - inserting 1000 documents. first: Paddington tube station (Circle and Hammersmith & City lines) and last: Giulio Masi -[2018-02-13T00:45:52.440] [INFO] cheese - inserting 1000 documents. first: List of Collaborators with Communist Security Agency and last: Category:2014–15 ISU Speed Skating World Cup templates -[2018-02-13T00:45:52.475] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:45:52.488] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:45:52.525] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:45:52.705] [INFO] cheese - inserting 1000 documents. first: File:MSU South Campus skyline.jpg and last: Charles Schumer -[2018-02-13T00:45:52.753] [INFO] cheese - inserting 1000 documents. first: Palora Canton and last: Wikipedia:Featured article candidates/Court of Chancery/archive1 -[2018-02-13T00:45:52.761] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:52.824] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:52.830] [INFO] cheese - inserting 1000 documents. first: Live and Louder and last: Safe Sex Designer Drugs & the Death of Rock 'N' Roll -[2018-02-13T00:45:52.882] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:52.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/watkinsbooks.com and last: Will You Marry Me -[2018-02-13T00:45:52.960] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:45:53.017] [INFO] cheese - inserting 1000 documents. first: I Get Along (Libertines song) and last: Hari Shankar Parsai -[2018-02-13T00:45:53.087] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:45:53.234] [INFO] cheese - inserting 1000 documents. first: Infrared Atmospheric Sounding Interferometer and last: Category:Colorado Independents -[2018-02-13T00:45:53.329] [INFO] cheese - inserting 1000 documents. first: Barton Line and last: A. T. M. Shamsul Huda -[2018-02-13T00:45:53.332] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:45:53.340] [INFO] cheese - inserting 1000 documents. first: Bolehall Swifts and last: Template:10 costliest US tornadoes -[2018-02-13T00:45:53.373] [INFO] cheese - inserting 1000 documents. first: Gymnastics at the 1960 Summer Olympics – Men's artistic team all-around and last: Stephen Edgar Paul Karamagi -[2018-02-13T00:45:53.449] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:45:53.450] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:45:53.514] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:45:53.554] [INFO] cheese - inserting 1000 documents. first: List of twin towns and sister cities in New Zealand and last: MD 81 -[2018-02-13T00:45:53.605] [INFO] cheese - inserting 1000 documents. first: Template:Order of Lenin and last: 113th Infantry Regiment (United States) -[2018-02-13T00:45:53.680] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:45:53.700] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:45:53.875] [INFO] cheese - inserting 1000 documents. first: Sidney Greidanus and last: University College London Partners -[2018-02-13T00:45:53.910] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/A Man with a Quilted Sleeve and last: Anna Sibylla Sergell -[2018-02-13T00:45:53.936] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:45:53.980] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:45:54.081] [INFO] cheese - inserting 1000 documents. first: Reece Power Station, Tasmania and last: Kashmiri Shaivism -[2018-02-13T00:45:54.091] [INFO] cheese - inserting 1000 documents. first: Nepenthes globamphora and last: WFRH -[2018-02-13T00:45:54.137] [INFO] cheese - inserting 1000 documents. first: Infrared vision and last: Blackadder 1 -[2018-02-13T00:45:54.150] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:45:54.158] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:45:54.202] [INFO] cheese - inserting 1000 documents. first: SESAT 1 and last: Category:City of Tshwane Metropolitan Municipality -[2018-02-13T00:45:54.206] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:45:54.279] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:54.338] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Sanitary Board of Hong Kong and last: Addison Roswell Thompson -[2018-02-13T00:45:54.362] [INFO] cheese - inserting 1000 documents. first: Mubarka Al-Naemi and last: 1990 Duke Blue Devils football team -[2018-02-13T00:45:54.377] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:45:54.398] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:54.550] [INFO] cheese - inserting 1000 documents. first: Anatoli Radenko and last: Middle Weser Valley -[2018-02-13T00:45:54.569] [INFO] cheese - inserting 1000 documents. first: Moon-Face and last: Katy IFL -[2018-02-13T00:45:54.590] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:45:54.621] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:45:54.688] [INFO] cheese - inserting 1000 documents. first: File:SacramentoSolons caplogo.svg and last: The Blue Trees -[2018-02-13T00:45:54.705] [INFO] cheese - inserting 1000 documents. first: Category:Venezuelan psychologists and last: Category:User Tang -[2018-02-13T00:45:54.716] [INFO] cheese - inserting 1000 documents. first: List of Fred: The Show episodes and last: OAPI patent -[2018-02-13T00:45:54.732] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:45:54.744] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:45:54.775] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:45:54.861] [INFO] cheese - inserting 1000 documents. first: Khun Tan Railway Station and last: Gaurotes atricornis -[2018-02-13T00:45:54.909] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:45:55.006] [INFO] cheese - inserting 1000 documents. first: Conservative Anglican Church of North America and last: Wikipedia:Suspected copyright violations/2010-02-04 -[2018-02-13T00:45:55.033] [INFO] cheese - inserting 1000 documents. first: Autovía A-49 and last: Ian Fleming's Goldfinger -[2018-02-13T00:45:55.069] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:45:55.116] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:45:55.151] [INFO] cheese - inserting 1000 documents. first: Category:People from Johnsburg, Illinois and last: Diocese of Laohekou -[2018-02-13T00:45:55.270] [INFO] cheese - inserting 1000 documents. first: Norberg-hodge and last: Portal:James Bond/Selected picture/22 -[2018-02-13T00:45:55.296] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:45:55.372] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:45:55.394] [INFO] cheese - inserting 1000 documents. first: 2012 Copa de España de Futsal and last: William Wickham (1831–1897) -[2018-02-13T00:45:55.467] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:45:55.474] [INFO] cheese - inserting 1000 documents. first: Gaurotes atripennis and last: SUN 'n FUN -[2018-02-13T00:45:55.591] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:45:55.717] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of George Town, Penang and last: Four Four South Village -[2018-02-13T00:45:55.769] [INFO] cheese - inserting 1000 documents. first: File:Red phone.jpg and last: Margaritifer sinus -[2018-02-13T00:45:55.778] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:45:55.841] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:45:55.970] [INFO] cheese - inserting 1000 documents. first: Wiradech Kothny and last: Template:Did you know nominations/Movement for Oneness and Jihad in West Africa -[2018-02-13T00:45:55.979] [INFO] cheese - inserting 1000 documents. first: Shelaylee and last: Muay at the 2009 Southeast Asian Games -[2018-02-13T00:45:56.030] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:45:56.058] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:45:56.068] [INFO] cheese - inserting 1000 documents. first: Xbox Game Pass and last: Briana Stewart -[2018-02-13T00:45:56.101] [INFO] cheese - inserting 1000 documents. first: Payena griffithii and last: New York Apples -[2018-02-13T00:45:56.118] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:45:56.161] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:45:56.271] [INFO] cheese - inserting 1000 documents. first: Portal:James Bond/Selected picture/23 and last: Intrinsic redshift -[2018-02-13T00:45:56.286] [INFO] cheese - inserting 1000 documents. first: File:Thee Phantom's Hero Complex (album cover).jpg and last: Johann Steyn, Baron Steyn -[2018-02-13T00:45:56.320] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T00:45:56.331] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:45:56.450] [INFO] cheese - inserting 1000 documents. first: Category:Queen Anne architecture in Kansas and last: Burututu -[2018-02-13T00:45:56.451] [INFO] cheese - inserting 1000 documents. first: 1959 Boston Red Sox and last: Category:Malayalam film scores by G. K. Venkatesh -[2018-02-13T00:45:56.492] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:45:56.501] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:45:56.531] [INFO] cheese - inserting 1000 documents. first: Typhoon Juan and last: Polytechnic movie -[2018-02-13T00:45:56.557] [INFO] cheese - inserting 1000 documents. first: Waterstonellidea and last: File:AshMarkHamilton.jpg -[2018-02-13T00:45:56.574] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:45:56.606] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:45:56.671] [INFO] cheese - inserting 1000 documents. first: Kukovoyt and last: Áno Alissós, Greece -[2018-02-13T00:45:56.704] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:45:56.721] [INFO] cheese - inserting 1000 documents. first: Daman Village, Nepal and last: Miles Automotive Group -[2018-02-13T00:45:56.765] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:45:56.780] [INFO] cheese - inserting 1000 documents. first: Rdeysky Nature Reserve and last: Varahamoorthi -[2018-02-13T00:45:56.810] [INFO] cheese - inserting 1000 documents. first: The Caxton Private Lending Library & Book Depository and last: Oriental Black-Headed Oriole -[2018-02-13T00:45:56.827] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:45:56.853] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:45:57.039] [INFO] cheese - inserting 1000 documents. first: Free India Centre and last: Category:Louisville metropolitan area-related lists -[2018-02-13T00:45:57.042] [INFO] cheese - inserting 1000 documents. first: Áno Alissós and last: Mentawai macaque -[2018-02-13T00:45:57.098] [INFO] cheese - inserting 1000 documents. first: Poretskoye and last: Oum El Bouaghi District -[2018-02-13T00:45:57.108] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:45:57.111] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:45:57.163] [INFO] cheese - inserting 1000 documents. first: Lavi (D.Gray Man) and last: Wikipedia:Reference desk/Archives/Computing/2008 April 15 -[2018-02-13T00:45:57.205] [INFO] cheese - inserting 1000 documents. first: National Library of São Tomé e Príncipe and last: Category:Disestablishments in South-West Africa by decade -[2018-02-13T00:45:57.212] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:45:57.255] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:45:57.266] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:45:57.364] [INFO] cheese - inserting 1000 documents. first: Institute for Community Studies and last: Alive Magazine -[2018-02-13T00:45:57.411] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:45:57.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ANMU and last: Category:Chinese Sanskrit scholars -[2018-02-13T00:45:57.537] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:45:57.650] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian expatriates in Belarus and last: Leptura plagifera -[2018-02-13T00:45:57.714] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:45:57.790] [INFO] cheese - inserting 1000 documents. first: Category:Expatriates in Jamaica and last: Griffing Park, Port Arthur, Texas -[2018-02-13T00:45:57.853] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:45:57.872] [INFO] cheese - inserting 1000 documents. first: East Stroudsburg station (Pennsylvania) and last: Category:Association football in County Londonderry -[2018-02-13T00:45:57.911] [INFO] cheese - inserting 1000 documents. first: Natural satellites in fiction and last: File:Bus (electronics).svg -[2018-02-13T00:45:57.913] [INFO] cheese - inserting 1000 documents. first: CJFO-FM and last: Gulumbu Yunupingu -[2018-02-13T00:45:57.913] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:45:57.942] [INFO] cheese - inserting 1000 documents. first: Portal:Kilkenny/Selected biography/15 and last: Lee Valley Regional Park -[2018-02-13T00:45:57.968] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:45:58.007] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:45:58.013] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:58.248] [INFO] cheese - inserting 1000 documents. first: Draft:James Pearson and last: Category:1938 in Australian women's sport -[2018-02-13T00:45:58.255] [INFO] cheese - inserting 1000 documents. first: Long Island (New York) and last: Frank Cecil Eve -[2018-02-13T00:45:58.282] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:45:58.331] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:58.341] [INFO] cheese - inserting 1000 documents. first: Griffing Park, Texas and last: Marsha Milan Londoh -[2018-02-13T00:45:58.379] [INFO] cheese - inserting 1000 documents. first: Lille Stesichorus and last: National Clinical Guideline Centre -[2018-02-13T00:45:58.403] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:58.407] [INFO] cheese - inserting 1000 documents. first: KVCE and last: Category:Banks of Ghana -[2018-02-13T00:45:58.453] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:45:58.463] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:45:58.466] [INFO] cheese - inserting 1000 documents. first: Template:User nci-5 and last: File:Smallville-Brent Stait as Doctor Fate.jpg -[2018-02-13T00:45:58.520] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:58.626] [INFO] cheese - inserting 1000 documents. first: Anglican Bishop of the Western Region of Sydney and last: Wikipedia:KCL -[2018-02-13T00:45:58.665] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:45:58.775] [INFO] cheese - inserting 1000 documents. first: Galliano Masini and last: Allen Township, Jewell County, Kansas -[2018-02-13T00:45:58.796] [INFO] cheese - inserting 1000 documents. first: Category:Plays set in Texas and last: 96th Division (disambiguation) -[2018-02-13T00:45:58.818] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:45:58.858] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:58.877] [INFO] cheese - inserting 1000 documents. first: Heat Latin Music Awards and last: Template:Taxonomy/Harttia -[2018-02-13T00:45:58.894] [INFO] cheese - inserting 1000 documents. first: Category:Banks of Guinea and last: Fundus of uterus -[2018-02-13T00:45:58.909] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:45:58.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured list/April 9, 2012 and last: Kawase (surname) -[2018-02-13T00:45:58.982] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:45:59.025] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:45:59.210] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Harttiella and last: Dryburgh (Dundee district) -[2018-02-13T00:45:59.256] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:45:59.372] [INFO] cheese - inserting 1000 documents. first: Notable cemeteries and last: Category:People by educational institution in Greece -[2018-02-13T00:45:59.409] [INFO] cheese - inserting 1000 documents. first: Little Bay Island and last: Category:Canadian expatriates in Paraguay -[2018-02-13T00:45:59.434] [INFO] cheese - inserting 1000 documents. first: Il Consigliori and last: U.S. Route 220 Alternate (Biscoe, North Carolina) -[2018-02-13T00:45:59.491] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:45:59.491] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:45:59.494] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:45:59.495] [INFO] cheese - inserting 1000 documents. first: Margaret Sutherland and last: Bill vicenzino -[2018-02-13T00:45:59.539] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:59.578] [INFO] cheese - inserting 1000 documents. first: File:Bad Boys Blue (album).jpg and last: Niethammeriodes diremptella -[2018-02-13T00:45:59.619] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:45:59.644] [INFO] cheese - inserting 1000 documents. first: Category:Conference USA women's soccer seasons and last: Template:ISO 639 name crk-Cans -[2018-02-13T00:45:59.692] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:45:59.840] [INFO] cheese - inserting 1000 documents. first: Hoop crown and last: S. uliginosa -[2018-02-13T00:45:59.881] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:45:59.895] [INFO] cheese - inserting 1000 documents. first: Fenton, Mich. and last: Gorgeous Barb -[2018-02-13T00:45:59.906] [INFO] cheese - inserting 1000 documents. first: Troilus and criseyde and last: Lámpeia, Greece -[2018-02-13T00:45:59.943] [INFO] cheese - inserting 1000 documents. first: Category:Expatriates in Paraguay and last: Category:2009 in Belize -[2018-02-13T00:45:59.945] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:59.949] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:46:00.026] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:46:00.054] [INFO] cheese - inserting 1000 documents. first: Ancylosis diremptella and last: MLS All-Star 2010 -[2018-02-13T00:46:00.098] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:46:00.145] [INFO] cheese - inserting 1000 documents. first: Template:WP Cambodia and last: Arthur Woodward (footballer) -[2018-02-13T00:46:00.224] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:46:00.306] [INFO] cheese - inserting 1000 documents. first: List of nautiloid genera and last: Fine Guidance Sensor (HST) -[2018-02-13T00:46:00.310] [INFO] cheese - inserting 1000 documents. first: Nilgiris Barb and last: NGC 6560 -[2018-02-13T00:46:00.348] [INFO] cheese - inserting 1000 documents. first: Lámpeia and last: File:MelbLGA-MorningtonPeninsula.gif -[2018-02-13T00:46:00.357] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:46:00.360] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:00.392] [INFO] cheese - inserting 1000 documents. first: William II of Nevers and last: Grill Me -[2018-02-13T00:46:00.409] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:00.451] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:46:00.599] [INFO] cheese - inserting 1000 documents. first: Miniyeh and last: Turbonilla dakoi -[2018-02-13T00:46:00.695] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:46:00.713] [INFO] cheese - inserting 1000 documents. first: Neoregelia 'Zeus' and last: Fibrous fracture -[2018-02-13T00:46:00.783] [INFO] cheese - inserting 1000 documents. first: Kalem railway station and last: Category:February 2015 events in Africa -[2018-02-13T00:46:00.828] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:46:00.840] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:46:00.964] [INFO] cheese - inserting 1000 documents. first: File:1950Nobel.JPG and last: Shōko Kikuchi -[2018-02-13T00:46:00.969] [INFO] cheese - inserting 1000 documents. first: St. Louis Trotters and last: Calamotropha argyrostola -[2018-02-13T00:46:01.004] [INFO] cheese - inserting 1000 documents. first: File:MelbLGA-Nillumbik.gif and last: FC Krymteplytsia Molodizhne -[2018-02-13T00:46:01.016] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:46:01.032] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:46:01.055] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:46:01.210] [INFO] cheese - inserting 1000 documents. first: Turbonilla dalli and last: Smoky Honeyeater (disambiguation) -[2018-02-13T00:46:01.263] [INFO] cheese - inserting 1000 documents. first: Final boiling point and last: ZPHS Dongala Dharmaram -[2018-02-13T00:46:01.286] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:46:01.290] [INFO] cheese - inserting 1000 documents. first: Category:2003 in women's curling and last: Category:Vincent van Gogh scholars -[2018-02-13T00:46:01.345] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:46:01.410] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:46:01.581] [INFO] cheese - inserting 1000 documents. first: Crambus argyrostola and last: Easley, Iowa -[2018-02-13T00:46:01.585] [INFO] cheese - inserting 1000 documents. first: Banjo-Kazooie360 and last: Template:1911 Essendon premiership players -[2018-02-13T00:46:01.621] [INFO] cheese - inserting 1000 documents. first: Ashino-Koen Station and last: David Goodway -[2018-02-13T00:46:01.631] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:46:01.665] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:46:01.744] [INFO] cheese - inserting 1000 documents. first: Claudio Corti (disambiguation) and last: Hosn Banu Ghazanfar -[2018-02-13T00:46:01.753] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:46:01.828] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:46:01.872] [INFO] cheese - inserting 1000 documents. first: Doodle 4 Google and last: Sarao -[2018-02-13T00:46:01.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2017 February 23 and last: Template:Sí Se Puede Llucmajor/meta/color -[2018-02-13T00:46:01.951] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:46:01.973] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:46:02.212] [INFO] cheese - inserting 1000 documents. first: Tessaiga and last: Dead Kennedeys -[2018-02-13T00:46:02.272] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:46:02.288] [INFO] cheese - inserting 1000 documents. first: LGBT history in Michigan and last: HMAS St Giles -[2018-02-13T00:46:02.332] [INFO] cheese - inserting 1000 documents. first: 1987 Mediterranean Games and last: Day of remembrance -[2018-02-13T00:46:02.349] [INFO] cheese - inserting 1000 documents. first: Vriesea sanctae-crucis and last: Template:Attached KML/Virginia State Route 259 -[2018-02-13T00:46:02.359] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:46:02.366] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Matt Sorum and last: Template:Goseiger -[2018-02-13T00:46:02.398] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:46:02.454] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:46:02.469] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:46:02.498] [INFO] cheese - inserting 1000 documents. first: Camelot/3000 and last: Westbury (Salop) railway station -[2018-02-13T00:46:02.558] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:46:02.789] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tim Ahern and last: Russ Ochsenhirt -[2018-02-13T00:46:02.808] [INFO] cheese - inserting 1000 documents. first: Syrian Red Crescent and last: Wilsie, West Virginia -[2018-02-13T00:46:02.833] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:02.882] [INFO] cheese - inserting 1000 documents. first: Irvin S. Yeaworth and last: F.U. -[2018-02-13T00:46:02.900] [INFO] cheese - inserting 1000 documents. first: Flavocrambus striatellus and last: Category:1976 establishments in the Kazakh Soviet Socialist Republic -[2018-02-13T00:46:02.899] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:46:02.934] [INFO] cheese - inserting 1000 documents. first: Alto Rio Negro Indigenous Territory and last: Susan Narduli -[2018-02-13T00:46:02.949] [INFO] cheese - inserting 1000 documents. first: Snowboarding at the 2002 Winter Olympics – Women's halfpipe and last: ENEV -[2018-02-13T00:46:02.995] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:46:03.003] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:46:03.021] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:46:03.079] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:46:03.416] [INFO] cheese - inserting 1000 documents. first: Central offfice code and last: Santo Pecora -[2018-02-13T00:46:03.443] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/dilovely.com and last: 2si 460F-45 -[2018-02-13T00:46:03.500] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:46:03.555] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:46:03.602] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/U.S. Route 136 in Illinois and last: Wikipedia:Articles for deletion/Flying Horse -[2018-02-13T00:46:03.602] [INFO] cheese - inserting 1000 documents. first: List of select Jewish baseball players and last: 2016 World Outdoor Bowls Championship - Women's Pairs -[2018-02-13T00:46:03.611] [INFO] cheese - inserting 1000 documents. first: ENHK and last: Category:Political movements in Indonesia -[2018-02-13T00:46:03.643] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:03.700] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:03.706] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:46:03.709] [INFO] cheese - inserting 1000 documents. first: FabricLive.29 and last: Andrej Šali -[2018-02-13T00:46:03.784] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:46:04.079] [INFO] cheese - inserting 1000 documents. first: 2016 World Outdoor Bowls Championship - Men's Fours and last: Wikipedia:WikiProject Spam/LinkReports/njgladiatorsoccer.com -[2018-02-13T00:46:04.108] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:46:04.147] [INFO] cheese - inserting 1000 documents. first: Category:Publications disestablished in 1929 and last: Fântâneaua Rece River -[2018-02-13T00:46:04.197] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Iran and last: C14H21N3O3 -[2018-02-13T00:46:04.199] [INFO] cheese - inserting 1000 documents. first: Kamaleswarar Temple and last: Transvaal presidential election, 1888 -[2018-02-13T00:46:04.213] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:46:04.244] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:04.289] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:46:04.304] [INFO] cheese - inserting 1000 documents. first: Don Camillo's Last Round and last: Let Yourself be Loved -[2018-02-13T00:46:04.354] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:46:04.393] [INFO] cheese - inserting 1000 documents. first: Category:1481 events and last: Category:Lists of Bangladesh cricket records and statistics -[2018-02-13T00:46:04.401] [INFO] cheese - inserting 1000 documents. first: Elaine Murphy and last: George Bridgeman -[2018-02-13T00:46:04.415] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:46:04.460] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:04.589] [INFO] cheese - inserting 1000 documents. first: Charles Molyneux, 5th Earl of Sefton and last: Vegetarianism in Hinduism -[2018-02-13T00:46:04.634] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:46:04.639] [INFO] cheese - inserting 1000 documents. first: Category:1888 elections in Africa and last: File:The Miracle (1991 film).jpg -[2018-02-13T00:46:04.666] [INFO] cheese - inserting 1000 documents. first: 82nd Airbourne Division (United States) and last: Wikipedia:Expert review/coordinators/access -[2018-02-13T00:46:04.679] [INFO] cheese - inserting 1000 documents. first: Bettina von Zwehl and last: Parc del Fòrum -[2018-02-13T00:46:04.701] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:46:04.722] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:46:04.742] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:46:04.788] [INFO] cheese - inserting 1000 documents. first: Zaïre virus strain Mayinga and last: Czar tank -[2018-02-13T00:46:04.846] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:46:04.974] [INFO] cheese - inserting 1000 documents. first: Fransson and last: Spodnja Idrija, Slovenia -[2018-02-13T00:46:05.012] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:46:05.047] [INFO] cheese - inserting 1000 documents. first: Valongo Municipality and last: Golgen -[2018-02-13T00:46:05.072] [INFO] cheese - inserting 1000 documents. first: Lori and Reba Schappell and last: Lights Out Puzzle -[2018-02-13T00:46:05.086] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:46:05.122] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:46:05.193] [INFO] cheese - inserting 1000 documents. first: File:Seongnam-Hanam Map.png and last: William Frederick Wyndham -[2018-02-13T00:46:05.196] [INFO] cheese - inserting 1000 documents. first: Czar Tank and last: Individual (disambiguation) -[2018-02-13T00:46:05.231] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:46:05.254] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:46:05.557] [INFO] cheese - inserting 1000 documents. first: Spodnje Hoče, Slovenia and last: Template:Did you know nominations/Teacher I Need You -[2018-02-13T00:46:05.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Braveheart5050 and last: Wikipedia:WikiProject Spam/LinkReports/udr-music.com -[2018-02-13T00:46:05.669] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:46:05.698] [INFO] cheese - inserting 1000 documents. first: Tomislav Dujmović and last: Category:1982 in judo -[2018-02-13T00:46:05.728] [INFO] cheese - inserting 1000 documents. first: Portal:The Legend of Zelda/Zelda topics and last: Wikipedia:Articles for deletion/Daheshism -[2018-02-13T00:46:05.760] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:46:05.773] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:46:05.793] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:46:05.857] [INFO] cheese - inserting 1000 documents. first: Europe asia land bridge and last: File:Double vision Strindberg.jpg -[2018-02-13T00:46:05.896] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:46:06.232] [INFO] cheese - inserting 1000 documents. first: I. B. Rai Dharmawijaya Mantra and last: Tropical Storm Winona (1985) -[2018-02-13T00:46:06.254] [INFO] cheese - inserting 1000 documents. first: Roger Dodger (disambiguation) and last: Inez (singer) -[2018-02-13T00:46:06.271] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:46:06.287] [INFO] cheese - inserting 1000 documents. first: María Rosa Leggol and last: Category:French women scientists -[2018-02-13T00:46:06.315] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:46:06.334] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:46:06.397] [INFO] cheese - inserting 1000 documents. first: Viva Festival and last: Abdul Jalil Shah I -[2018-02-13T00:46:06.410] [INFO] cheese - inserting 1000 documents. first: WD Velociraptor and last: Category:Kannada grammar -[2018-02-13T00:46:06.433] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:46:06.468] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:46:06.716] [INFO] cheese - inserting 1000 documents. first: Typhoon Winona (1990) and last: Mary Travis Arny -[2018-02-13T00:46:06.718] [INFO] cheese - inserting 1000 documents. first: Jaime Gomez (golfer) and last: Category:Bada games -[2018-02-13T00:46:06.761] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:46:06.762] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:46:06.791] [INFO] cheese - inserting 1000 documents. first: Livatica and last: Yoko Shibui -[2018-02-13T00:46:06.810] [INFO] cheese - inserting 1000 documents. first: Adam Michael Richard Sopp and last: Golden Mouse (rodent) -[2018-02-13T00:46:06.838] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:06.848] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:06.967] [INFO] cheese - inserting 1000 documents. first: KTED and last: Meltdown (film) -[2018-02-13T00:46:07.012] [INFO] cheese - inserting 1000 documents. first: File:Naan Kanda Sorgam.jpg and last: Northern California Athletic Conference football champion seasons -[2018-02-13T00:46:07.029] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:07.129] [INFO] cheese - batch complete in: 2.713 secs -[2018-02-13T00:46:07.159] [INFO] cheese - inserting 1000 documents. first: Category:1959 in the Republic of Dahomey and last: Template:Clist fiduciary loyalty -[2018-02-13T00:46:07.196] [INFO] cheese - inserting 1000 documents. first: File:ShriekDoppel.jpg and last: Category:European Formula 5000 Championship -[2018-02-13T00:46:07.205] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:46:07.230] [INFO] cheese - inserting 1000 documents. first: Ghafoor Ahmed and last: Louis of France (1751–1761) -[2018-02-13T00:46:07.243] [INFO] cheese - inserting 1000 documents. first: Template:Ryazan Oblast and last: FCE USA -[2018-02-13T00:46:07.341] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:46:07.372] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:46:07.400] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:46:07.612] [INFO] cheese - inserting 1000 documents. first: Ballplayers House, Central Park and last: Category:Chinese investors -[2018-02-13T00:46:07.719] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:46:07.726] [INFO] cheese - inserting 1000 documents. first: Category:Luxembourgers of French descent and last: Hallstatt D -[2018-02-13T00:46:07.807] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:46:07.900] [INFO] cheese - inserting 1000 documents. first: Francisco Portillo (footballer, born 1990) and last: Category:Jahangirnagar University faculty -[2018-02-13T00:46:07.900] [INFO] cheese - inserting 1000 documents. first: Maiwa language and last: List of castles in Lower Saxony -[2018-02-13T00:46:07.928] [INFO] cheese - inserting 1000 documents. first: Prentragk Stogiakovits and last: CA (state) -[2018-02-13T00:46:07.941] [INFO] cheese - inserting 1000 documents. first: Galante (pedigree) and last: Wikipedia:Articles for deletion/The Game Of Drink -[2018-02-13T00:46:07.969] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:46:07.969] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:46:08.018] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:46:08.025] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:46:08.318] [INFO] cheese - inserting 1000 documents. first: Taiwan travel document and last: File:Dance Dance Revolution SuperNova 2 North American PlayStation 2 cover art.png -[2018-02-13T00:46:08.323] [INFO] cheese - inserting 1000 documents. first: Richard Saucedo and last: Template:Singular and plural/doc -[2018-02-13T00:46:08.417] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:08.429] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:08.488] [INFO] cheese - inserting 1000 documents. first: Tripartite Program and last: Fenner A. Chace Jr. -[2018-02-13T00:46:08.542] [INFO] cheese - inserting 1000 documents. first: Attila Menyhard and last: Werner Scholz (footballer born 1944) -[2018-02-13T00:46:08.563] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:46:08.568] [INFO] cheese - inserting 1000 documents. first: Hyangsan County and last: File:Ponte do Açude, Coimbra, Portugal.jpg -[2018-02-13T00:46:08.623] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:46:08.662] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:46:08.771] [INFO] cheese - inserting 1000 documents. first: Vegetative zone and last: The Iceman Cometh (1960 TV production) -[2018-02-13T00:46:08.834] [INFO] cheese - inserting 1000 documents. first: Category:Military installations established in the 21st century and last: Category:1942 establishments in Idaho -[2018-02-13T00:46:08.864] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:46:08.879] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:46:09.070] [INFO] cheese - inserting 1000 documents. first: Tom Schuman and last: Wikipedia:OI -[2018-02-13T00:46:09.084] [INFO] cheese - inserting 1000 documents. first: Oita Heatdevils and last: Template:Grand Alliance for National Unity/meta/color -[2018-02-13T00:46:09.101] [INFO] cheese - inserting 1000 documents. first: Good as Gold! and last: Invasion of Hanover (1757) -[2018-02-13T00:46:09.121] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:46:09.130] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:46:09.140] [INFO] cheese - inserting 1000 documents. first: Ultraman monsters and last: Boundary layer theory -[2018-02-13T00:46:09.149] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:46:09.197] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:46:09.293] [INFO] cheese - inserting 1000 documents. first: Hong Kong Film Award for Best Asian Film and last: Nieuport-Delage NiD 942 -[2018-02-13T00:46:09.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oleg Stepanov (polymath) and last: Futurology (Song) -[2018-02-13T00:46:09.340] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:46:09.387] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:09.505] [INFO] cheese - inserting 1000 documents. first: Joseph Graves Olney alias "Joe Hill" and last: Phigalia revocata -[2018-02-13T00:46:09.550] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:46:09.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/epiccrafts.co.uk and last: Francisco Azorín Izquierdo -[2018-02-13T00:46:09.644] [INFO] cheese - inserting 1000 documents. first: KJIT-LP and last: Category:Mayors of Hillsboro, Oregon -[2018-02-13T00:46:09.664] [INFO] cheese - inserting 1000 documents. first: Basilica of Our Lady of the Martyrs, Lisboa and last: Draft:Lorna McDonald (Australian historian) -[2018-02-13T00:46:09.697] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:46:09.712] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:46:09.723] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:46:09.742] [INFO] cheese - inserting 1000 documents. first: Nasseridine Kraouche and last: File:Rocket from the Crypt - Group Sounds cover.jpg -[2018-02-13T00:46:09.820] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:46:09.857] [INFO] cheese - inserting 1000 documents. first: Tenali (disambiguation) and last: Marineamt -[2018-02-13T00:46:09.894] [INFO] cheese - inserting 1000 documents. first: Seller's Wood and last: Portal:Liberalism/Categories -[2018-02-13T00:46:09.918] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:46:09.947] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:46:10.143] [INFO] cheese - inserting 1000 documents. first: Hongling Middle School and last: Beverly Davenport -[2018-02-13T00:46:10.185] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:46:10.247] [INFO] cheese - inserting 1000 documents. first: Wilhelm Kinsky and last: Beloholunickiy -[2018-02-13T00:46:10.327] [INFO] cheese - inserting 1000 documents. first: Dio Padre misericordioso and last: Philip Leverhulme Equine Hospital -[2018-02-13T00:46:10.344] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:46:10.379] [INFO] cheese - inserting 1000 documents. first: Template:CIAPrisons and last: United Kingdom agency worker law -[2018-02-13T00:46:10.416] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:46:10.481] [INFO] cheese - inserting 1000 documents. first: La godiva and last: Wikipedia:Articles for deletion/Kevin Clarke (politician) -[2018-02-13T00:46:10.490] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:46:10.552] [INFO] cheese - inserting 1000 documents. first: Federal Intermediate Credit Bank and last: Tiwi, Kenya -[2018-02-13T00:46:10.569] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:46:10.650] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:46:10.808] [INFO] cheese - inserting 1000 documents. first: Wee Dot and last: Santo Antão Island League (North) -[2018-02-13T00:46:10.871] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:46:10.904] [INFO] cheese - inserting 1000 documents. first: Category:JMT Records albums and last: Highway 133 (Wisconsin) -[2018-02-13T00:46:10.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/circlecityalarm.com and last: Whatcom Chief -[2018-02-13T00:46:10.959] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:10.965] [INFO] cheese - inserting 1000 documents. first: V.I.P. Road and last: History of language -[2018-02-13T00:46:10.982] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:46:11.054] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:11.059] [INFO] cheese - inserting 1000 documents. first: Polar Tower II and last: File:TheSearch2014.jpg -[2018-02-13T00:46:11.122] [INFO] cheese - inserting 1000 documents. first: Xu Mengtao and last: File:ThomasAHendricks.png -[2018-02-13T00:46:11.135] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:46:11.234] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:46:11.380] [INFO] cheese - inserting 1000 documents. first: Santo Antao North Premier Division and last: Dusen's nymph -[2018-02-13T00:46:11.419] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:46:11.500] [INFO] cheese - inserting 1000 documents. first: Category:People from Whakatane and last: Jorge Luis Clavelo -[2018-02-13T00:46:11.509] [INFO] cheese - inserting 1000 documents. first: AA Command and last: Indonesian Ulemas Council -[2018-02-13T00:46:11.519] [INFO] cheese - inserting 1000 documents. first: Highway 134 (Wisconsin) and last: Wikipedia:AIRLINE -[2018-02-13T00:46:11.545] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:46:11.559] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:46:11.603] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:46:11.613] [INFO] cheese - inserting 1000 documents. first: Crambus peralbellus and last: A&P Catholic -[2018-02-13T00:46:11.652] [INFO] cheese - inserting 1000 documents. first: Surgical device and last: United Nations Security Council Resolution 684 -[2018-02-13T00:46:11.660] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:46:11.710] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:46:11.799] [INFO] cheese - inserting 1000 documents. first: Final Cut (band) and last: Category:Suspected Wikipedia sockpuppets of OhioLeda -[2018-02-13T00:46:11.839] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:46:11.920] [INFO] cheese - inserting 1000 documents. first: Episode in the Early Life of Privy Councillor D. and last: Lawrence Memorial Library -[2018-02-13T00:46:11.961] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:11.982] [INFO] cheese - inserting 1000 documents. first: The Lightning Process and last: Face paints -[2018-02-13T00:46:12.031] [INFO] cheese - inserting 1000 documents. first: Wiregrass Ranch High School and last: Leatherer -[2018-02-13T00:46:12.031] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:46:12.118] [INFO] cheese - inserting 1000 documents. first: List of mayors of Huntington, West Virginia and last: Hugo Oberstein -[2018-02-13T00:46:12.124] [INFO] cheese - inserting 1000 documents. first: PACE Catholic and last: Wikipedia:Articles for deletion/Janet Emerson Bashen -[2018-02-13T00:46:12.135] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:46:12.146] [INFO] cheese - inserting 1000 documents. first: Plebeius orbitulus and last: Wikipedia:WikiProject Spam/LinkReports/harboroughfm.webs.com -[2018-02-13T00:46:12.171] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:46:12.193] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:12.202] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:46:12.317] [INFO] cheese - inserting 1000 documents. first: Face painted and last: File:BrandySnaps.jpg -[2018-02-13T00:46:12.349] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:46:12.522] [INFO] cheese - inserting 1000 documents. first: Cafunfo Airport and last: Template:2008 Summer Olympics Australia women's field hockey team roster -[2018-02-13T00:46:12.557] [INFO] cheese - inserting 1000 documents. first: Arachnorchis procera and last: Phoenix Forgotten -[2018-02-13T00:46:12.640] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:46:12.683] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:46:12.686] [INFO] cheese - inserting 1000 documents. first: 2010 in athletics (track and field) and last: Kurt Heissmeyer -[2018-02-13T00:46:12.694] [INFO] cheese - inserting 1000 documents. first: Category:Flora of Querétaro and last: Self discipline -[2018-02-13T00:46:12.700] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Jeff Davis County, Georgia and last: Lesional demyelinations of the CNS -[2018-02-13T00:46:12.746] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:12.758] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:12.740] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:46:12.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2008-04-25 Attachment theory and last: BU Castle -[2018-02-13T00:46:12.983] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:46:13.211] [INFO] cheese - inserting 1000 documents. first: File:Delia Weber.jpg and last: Category:1997–98 Midwestern Collegiate Conference men's basketball season -[2018-02-13T00:46:13.231] [INFO] cheese - inserting 1000 documents. first: Dawsons fingers and last: Holochlamys ornata -[2018-02-13T00:46:13.253] [INFO] cheese - inserting 1000 documents. first: House of Deréon and last: Trench map -[2018-02-13T00:46:13.250] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:46:13.266] [INFO] cheese - inserting 1000 documents. first: Georg Klaus and last: Ravenswood School, Keston, Bromley -[2018-02-13T00:46:13.273] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:46:13.299] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:46:13.315] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:46:13.330] [INFO] cheese - inserting 1000 documents. first: Template:Infobox language/family-color/sandbox and last: Category:Politics of Southern Rhodesia before 1923 -[2018-02-13T00:46:13.403] [INFO] cheese - inserting 1000 documents. first: Chelonodon and last: Elliott's blueberry -[2018-02-13T00:46:13.417] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:46:13.449] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:46:13.682] [INFO] cheese - inserting 1000 documents. first: B roads in Zimbabwe and last: Psychoanalysis and religion -[2018-02-13T00:46:13.693] [INFO] cheese - inserting 1000 documents. first: Category:1999–2000 Midwestern Collegiate Conference men's basketball season and last: Academician of the Academy of the Social Science -[2018-02-13T00:46:13.742] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:46:13.783] [INFO] cheese - inserting 1000 documents. first: International Radon Project and last: Morning Bugle -[2018-02-13T00:46:13.795] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:13.884] [INFO] cheese - inserting 1000 documents. first: Fuka Angel and last: Rulers of Travancore -[2018-02-13T00:46:13.885] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:46:13.898] [INFO] cheese - inserting 1000 documents. first: Department of State Services and last: Joonas Korpisalo -[2018-02-13T00:46:13.947] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:46:13.949] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:14.003] [INFO] cheese - inserting 1000 documents. first: Aqua Kids (TV series) and last: O’Connell Consolidated High School -[2018-02-13T00:46:14.065] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:46:14.071] [INFO] cheese - inserting 1000 documents. first: Category:Lebanese Basketball League and last: Ζ Leonis -[2018-02-13T00:46:14.114] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:46:14.153] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space Dreams and last: Family tree of Vietnamese monarchs -[2018-02-13T00:46:14.189] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:46:14.252] [INFO] cheese - inserting 1000 documents. first: Brinkhaven, Ohio and last: Francois-Auguste Parseval-Grandmaison -[2018-02-13T00:46:14.353] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:46:14.520] [INFO] cheese - inserting 1000 documents. first: Museum Leverianum and last: Karaurus sharovi -[2018-02-13T00:46:14.595] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Sumatro and last: Crop (hair) -[2018-02-13T00:46:14.595] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:46:14.636] [INFO] cheese - inserting 1000 documents. first: Ζ Leo and last: HCoV-OC43 -[2018-02-13T00:46:14.675] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:46:14.691] [INFO] cheese - inserting 1000 documents. first: Category:Version 1.0 articles by importance and last: Live in Gdańsk -[2018-02-13T00:46:14.704] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:46:14.756] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:46:14.903] [INFO] cheese - inserting 1000 documents. first: Felix Arvers and last: Maudheim medal -[2018-02-13T00:46:14.904] [INFO] cheese - inserting 1000 documents. first: Coppa Italia (Futsal) and last: Muntadhar al-Zaidi shoe incident -[2018-02-13T00:46:14.953] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:46:14.982] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:46:15.059] [INFO] cheese - inserting 1000 documents. first: Weymer's glider and last: Draft:Johannes Susen -[2018-02-13T00:46:15.066] [INFO] cheese - inserting 1000 documents. first: Anna Pratt Romney and last: Muir Mackenzie -[2018-02-13T00:46:15.117] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:46:15.160] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:46:15.192] [INFO] cheese - inserting 1000 documents. first: Cropped hair and last: Hasamdia massacre -[2018-02-13T00:46:15.198] [INFO] cheese - inserting 1000 documents. first: Moravia-Silesia football league and last: Drops Out -[2018-02-13T00:46:15.249] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:46:15.253] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:15.359] [INFO] cheese - inserting 1000 documents. first: Category:Olympic biathletes of China and last: Wikipedia:The final word -[2018-02-13T00:46:15.396] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:46:15.407] [INFO] cheese - inserting 1000 documents. first: Soshi-kaimei and last: PerkinElmer, Inc. -[2018-02-13T00:46:15.492] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:46:15.511] [INFO] cheese - inserting 1000 documents. first: Stefanija Statkuviené and last: Rainham War Memorial -[2018-02-13T00:46:15.531] [INFO] cheese - inserting 1000 documents. first: Ángel Scull and last: Vinay Jha -[2018-02-13T00:46:15.607] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:46:15.609] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:46:15.683] [INFO] cheese - inserting 1000 documents. first: Crowdfunded satellites and last: Klaus von Dambrowski -[2018-02-13T00:46:15.735] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:46:15.764] [INFO] cheese - inserting 1000 documents. first: Template:Love County, Oklahoma and last: Jurriaen Aernoutsz -[2018-02-13T00:46:15.828] [INFO] cheese - inserting 1000 documents. first: Nevena Ignjatović and last: Template:NRHP in Montgomery County, Alabama -[2018-02-13T00:46:15.837] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:46:15.893] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:46:15.900] [INFO] cheese - inserting 1000 documents. first: Hexamethyldisilathiane and last: File:Lgworkshop1.jpg -[2018-02-13T00:46:15.956] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:46:16.074] [INFO] cheese - inserting 1000 documents. first: List of converts to Hinduism from Buddhism and last: Wikipedia:Peer review/Algoman orogeny/archive1 -[2018-02-13T00:46:16.099] [INFO] cheese - inserting 1000 documents. first: Sanda lighthouse and last: Category:Automotive companies of Russia -[2018-02-13T00:46:16.132] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:16.140] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:16.235] [INFO] cheese - inserting 1000 documents. first: Tony Ferguson (skateboarder) and last: Math symbol parentheses -[2018-02-13T00:46:16.330] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:46:16.377] [INFO] cheese - inserting 1000 documents. first: Tungting and last: Armand-Emmanuel du Plessis, Duc de Richelieu -[2018-02-13T00:46:16.417] [INFO] cheese - inserting 1000 documents. first: Staff Benda Bilili and last: 103d Fighter Squadron -[2018-02-13T00:46:16.439] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:46:16.505] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:46:16.515] [INFO] cheese - inserting 1000 documents. first: Dobričevo and last: Robert Alfred McCall -[2018-02-13T00:46:16.603] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:46:16.699] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Warren County, Ohio and last: Winfred Jacobs -[2018-02-13T00:46:16.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2017-06-09/Technology report and last: File:Screenshot of Main window f4analyse 2.0.png -[2018-02-13T00:46:16.722] [INFO] cheese - inserting 1000 documents. first: Cyber Trance presents ELT Trance and last: Encyclopædia Britannica website -[2018-02-13T00:46:16.745] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:16.800] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:46:16.822] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:46:17.017] [INFO] cheese - inserting 1000 documents. first: Hurricane Madeline (1998) and last: Union Nacional de Ciudadanos Eticos -[2018-02-13T00:46:17.027] [INFO] cheese - inserting 1000 documents. first: File:LabourListCrop.png and last: Stark Raving Mad (1983 film) -[2018-02-13T00:46:17.108] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:46:17.116] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:17.133] [INFO] cheese - inserting 1000 documents. first: Adam Rachel and last: Vera Glass -[2018-02-13T00:46:17.233] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:17.312] [INFO] cheese - inserting 1000 documents. first: Khan Doun Penh and last: Downton Creek (Chilcotin Plateau) -[2018-02-13T00:46:17.337] [INFO] cheese - inserting 1000 documents. first: Encyclopædia Britannica web site and last: Crambus tolli -[2018-02-13T00:46:17.368] [INFO] cheese - inserting 1000 documents. first: Chinese Ambassadors to Latvia and last: Tino Schwierzina -[2018-02-13T00:46:17.371] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:46:17.399] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:46:17.483] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:46:17.680] [INFO] cheese - inserting 1000 documents. first: 91st Strategic Reconnaissance Group and last: Alfredo G. Duran -[2018-02-13T00:46:17.686] [INFO] cheese - inserting 1000 documents. first: Springerichthys and last: Deane (Bolton) -[2018-02-13T00:46:17.715] [INFO] cheese - inserting 1000 documents. first: Movimiento Patria Querida and last: Vilavila District -[2018-02-13T00:46:17.728] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:17.729] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:46:17.771] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:46:17.810] [INFO] cheese - inserting 1000 documents. first: Timothy Bozon and last: Youa -[2018-02-13T00:46:17.859] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:17.866] [INFO] cheese - inserting 1000 documents. first: Ampeg SVT-Pro and last: Template:Did you know nominations/George W. Hooker -[2018-02-13T00:46:17.880] [INFO] cheese - inserting 1000 documents. first: Jock Henderson (footballer born 1871) and last: Esther Timberlake -[2018-02-13T00:46:17.927] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:46:17.936] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:46:18.113] [INFO] cheese - inserting 1000 documents. first: File:Chief Red Eagle grave site.JPG and last: Faellanden -[2018-02-13T00:46:18.143] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:46:18.168] [INFO] cheese - inserting 1000 documents. first: Inhlawulo and last: File:Kiuasnewcd.jpg -[2018-02-13T00:46:18.212] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:46:18.241] [INFO] cheese - inserting 1000 documents. first: Tom Mason (Falling Skies) and last: File:Hola, ¿estas sola? (Hi, are you Alone?.jpg -[2018-02-13T00:46:18.247] [INFO] cheese - inserting 1000 documents. first: Ring (computer game) and last: Denardo Coleman -[2018-02-13T00:46:18.266] [INFO] cheese - inserting 1000 documents. first: Aujan Group and last: Sweetiopsis -[2018-02-13T00:46:18.273] [INFO] cheese - inserting 1000 documents. first: Lee Sun-Bai and last: Carmine bee-eater (disambiguation) -[2018-02-13T00:46:18.300] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:46:18.306] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:46:18.321] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:46:18.332] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:46:18.532] [INFO] cheese - inserting 1000 documents. first: Andy Meisner and last: Jackie Smyth -[2018-02-13T00:46:18.568] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:46:18.601] [INFO] cheese - inserting 1000 documents. first: Bowling Green-Perrysburg Road and last: Category:Andy LaVerne albums -[2018-02-13T00:46:18.640] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:46:18.651] [INFO] cheese - inserting 1000 documents. first: Speedy González and last: Sukanta Mahavidyalaya -[2018-02-13T00:46:18.687] [INFO] cheese - inserting 1000 documents. first: Ralph Ehrenbrink and last: Payena lancifolia -[2018-02-13T00:46:18.717] [INFO] cheese - inserting 1000 documents. first: Mary Walter Elementary and last: National Route 526 -[2018-02-13T00:46:18.722] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:46:18.788] [INFO] cheese - inserting 1000 documents. first: When My Baby Smiles at Me (film) and last: Members of the New South Wales Legislative Assembly, 1895–1898 -[2018-02-13T00:46:18.790] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:46:18.818] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:46:18.898] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:46:18.947] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Lofty Chiltern and last: Category:Ontario general election, 1937 results by riding -[2018-02-13T00:46:18.975] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:46:19.112] [INFO] cheese - inserting 1000 documents. first: Forsskaolea tenacissima and last: SR 824 -[2018-02-13T00:46:19.153] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:46:19.171] [INFO] cheese - inserting 1000 documents. first: Template:Gaelic games venues and last: Federal Research Division -[2018-02-13T00:46:19.234] [INFO] cheese - inserting 1000 documents. first: Bignonia umbellulata and last: Calamotropha aureliella -[2018-02-13T00:46:19.272] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:46:19.321] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:46:19.370] [INFO] cheese - inserting 1000 documents. first: Ecologist Alternative of Catalonia and last: Hartford Area Roller Derby -[2018-02-13T00:46:19.435] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:19.464] [INFO] cheese - inserting 1000 documents. first: The Throne Verse and last: Category:1972 NCAA University Division baseball standings templates -[2018-02-13T00:46:19.466] [INFO] cheese - inserting 1000 documents. first: Victorian Railways V class and last: Helen, West Virginia -[2018-02-13T00:46:19.524] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:46:19.592] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:46:19.685] [INFO] cheese - inserting 1000 documents. first: Category:Japanese expatriates in Brazil and last: Huangjin Airport -[2018-02-13T00:46:19.762] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:46:19.873] [INFO] cheese - inserting 1000 documents. first: Taiwanese identity and last: Wikipedia:HOC -[2018-02-13T00:46:19.962] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:46:19.985] [INFO] cheese - inserting 1000 documents. first: Category:Muğla Central District and last: Glacial Squid -[2018-02-13T00:46:20.039] [INFO] cheese - inserting 1000 documents. first: Spanish Agency for Quality Assessment and University Accreditation and last: Template:Taxonomy/Mioxena -[2018-02-13T00:46:20.075] [INFO] cheese - inserting 1000 documents. first: Category:1972 Pacific-8 Conference baseball season and last: XOXO Exo -[2018-02-13T00:46:20.083] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:46:20.117] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:46:20.191] [INFO] cheese - inserting 1000 documents. first: File:Thehubscreenshot.jpg and last: Wikipedia:DERM:A -[2018-02-13T00:46:20.195] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:46:20.249] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:46:20.372] [INFO] cheese - inserting 1000 documents. first: TG-11A and last: Merle Johnson -[2018-02-13T00:46:20.423] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:46:20.535] [INFO] cheese - inserting 1000 documents. first: Coastal Prairie and last: Jesus Chávez -[2018-02-13T00:46:20.583] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2017 March 6 and last: Wikipedia:WikiProject Spam/LinkReports/thelordscovenantchurch.org -[2018-02-13T00:46:20.590] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:46:20.641] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:46:20.651] [INFO] cheese - inserting 1000 documents. first: File:Flores de otro mundo film poster.jpg and last: San E -[2018-02-13T00:46:20.657] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Caldwell County, Texas and last: Template:Tlw -[2018-02-13T00:46:20.694] [INFO] cheese - inserting 1000 documents. first: Suhua Highway and last: 1904 Utah Utes football team -[2018-02-13T00:46:20.710] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:46:20.717] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:46:20.787] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:46:21.001] [INFO] cheese - inserting 1000 documents. first: Deer Hunter (computer game) and last: Jason L. Honigman -[2018-02-13T00:46:21.073] [INFO] cheese - inserting 1000 documents. first: Category:Indiana in the American Civil War and last: Portal:El Salvador/El Salvador topics -[2018-02-13T00:46:21.135] [INFO] cheese - inserting 1000 documents. first: Draft:Kitale Museum and last: State Route 73 (Virginia 1958) -[2018-02-13T00:46:21.138] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:46:21.197] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:46:21.202] [INFO] cheese - inserting 1000 documents. first: Category:History of Kosovo during Ottoman administration and last: Renzo Meynet -[2018-02-13T00:46:21.212] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:21.227] [INFO] cheese - inserting 1000 documents. first: Template:Test-mode notice/doc and last: Pazuzu (comics) -[2018-02-13T00:46:21.263] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:46:21.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thelordscovenantchurch.org and last: Flixthorpe -[2018-02-13T00:46:21.347] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:46:21.374] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:46:21.702] [INFO] cheese - inserting 1000 documents. first: SANAKO and last: Portal:El Salvador/News -[2018-02-13T00:46:21.759] [INFO] cheese - inserting 1000 documents. first: File:Marjorie Hillis 1937.jpg and last: Joe Pondelik -[2018-02-13T00:46:21.768] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:21.782] [INFO] cheese - inserting 1000 documents. first: Robert Flixthorpe and last: Critical Masses: Opposition to Nuclear Power in California, 1958-1978 -[2018-02-13T00:46:21.785] [INFO] cheese - inserting 1000 documents. first: Meynet and last: Muhammad Mahdi Salih -[2018-02-13T00:46:21.824] [INFO] cheese - inserting 1000 documents. first: Allusiveness and last: CITF Memorandum -[2018-02-13T00:46:21.850] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:46:21.854] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:46:21.865] [INFO] cheese - inserting 1000 documents. first: Annas Farmhouse and last: Nemzeti Bajnokság I 1931-32 -[2018-02-13T00:46:21.893] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:21.930] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:46:21.975] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:46:22.313] [INFO] cheese - inserting 1000 documents. first: Chrysoteuchia deltella and last: Sea mussels -[2018-02-13T00:46:22.347] [INFO] cheese - inserting 1000 documents. first: William Ruane (actor) and last: George Robinson (cricketer, born 1908) -[2018-02-13T00:46:22.377] [INFO] cheese - inserting 1000 documents. first: File:Parmaarms.gif and last: Christian Ernst II, Duke of Saxe-Coburg-Saalfeld -[2018-02-13T00:46:22.381] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:22.409] [INFO] cheese - inserting 1000 documents. first: Frank Lewis (wrestler) and last: Violent Machine -[2018-02-13T00:46:22.414] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:22.430] [INFO] cheese - inserting 1000 documents. first: Tal (singer) and last: Asus Transformer Infinity -[2018-02-13T00:46:22.484] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:46:22.495] [INFO] cheese - inserting 1000 documents. first: Bartlesville Examiner-Enterprise and last: François Xavier Préfontaine -[2018-02-13T00:46:22.503] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:46:22.527] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:46:22.592] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:46:22.932] [INFO] cheese - inserting 1000 documents. first: Elizabeth Ansbach and last: Battle of Berea -[2018-02-13T00:46:22.966] [INFO] cheese - inserting 1000 documents. first: Marine mussel and last: Category:Kookmin University -[2018-02-13T00:46:22.977] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:46:22.999] [INFO] cheese - inserting 1000 documents. first: Software development engineer and last: Patrick, 4th Earl of Dunbar -[2018-02-13T00:46:23.008] [INFO] cheese - inserting 1000 documents. first: Category:Surinamese socialists and last: Harry O. Downey -[2018-02-13T00:46:23.036] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:23.099] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:46:23.104] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:46:23.142] [INFO] cheese - inserting 1000 documents. first: ASUS Eee Pad Transformer infinity and last: Les Feuillants Abbey -[2018-02-13T00:46:23.179] [INFO] cheese - inserting 1000 documents. first: We Are The Physics and last: Veenendaal-Veenendaal -[2018-02-13T00:46:23.231] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:46:23.262] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:46:23.376] [INFO] cheese - inserting 1000 documents. first: Tavşan Island and last: Zerstörer Shrugged -[2018-02-13T00:46:23.426] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:46:23.628] [INFO] cheese - inserting 1000 documents. first: Computer sentience and last: Noah Buschel -[2018-02-13T00:46:23.669] [INFO] cheese - inserting 1000 documents. first: Jon Sandsmark and last: Adetus catemaco -[2018-02-13T00:46:23.719] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:46:23.729] [INFO] cheese - inserting 1000 documents. first: File:Lauryn Hill-Everything Is Everything.jpg and last: Forswears -[2018-02-13T00:46:23.732] [INFO] cheese - inserting 1000 documents. first: Melanoma Research and last: Alister Campbell (rugby union) -[2018-02-13T00:46:23.732] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:46:23.791] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:46:23.795] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:23.813] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian art historians and last: Western Australian Black head triplefin -[2018-02-13T00:46:23.883] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:46:23.961] [INFO] cheese - inserting 1000 documents. first: Increase (given name) and last: Summer nicks -[2018-02-13T00:46:24.020] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:46:24.306] [INFO] cheese - inserting 1000 documents. first: Adetus cecamirim and last: 2014 Hiroshima landslides -[2018-02-13T00:46:24.332] [INFO] cheese - inserting 1000 documents. first: Fokker F28-4000 and last: Hockey at the Olympics -[2018-02-13T00:46:24.332] [INFO] cheese - inserting 1000 documents. first: Demographic history of Novi Sad and last: Mezhdurechensky Raion -[2018-02-13T00:46:24.354] [INFO] cheese - inserting 1000 documents. first: Orce Nikolov and last: Ten Zen Men Project -[2018-02-13T00:46:24.357] [INFO] cheese - inserting 1000 documents. first: Western Australian black Head Triplefin and last: Bishoha -[2018-02-13T00:46:24.364] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:46:24.382] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:46:24.420] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:46:24.423] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:46:24.439] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:46:24.616] [INFO] cheese - inserting 1000 documents. first: Tyre of the Maronites and last: Category:Kindersley -[2018-02-13T00:46:24.664] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:46:24.783] [INFO] cheese - inserting 1000 documents. first: Kathleen Brinson and last: Hopf line bundle -[2018-02-13T00:46:24.811] [INFO] cheese - inserting 1000 documents. first: Ayşe Hatun (wife of Selim I) and last: Smt easwaramma english medium school -[2018-02-13T00:46:24.832] [INFO] cheese - inserting 1000 documents. first: Category:American legal drama films and last: Gem of Tanzania -[2018-02-13T00:46:24.835] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:24.859] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:46:24.877] [INFO] cheese - inserting 1000 documents. first: A Class Act and last: Lovey Dovey Stuff -[2018-02-13T00:46:24.903] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:46:24.932] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:46:24.971] [INFO] cheese - inserting 1000 documents. first: Catbox and last: File:Tree trunks by Great Sacandaga Lake (2008).jpg -[2018-02-13T00:46:25.031] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:46:25.070] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Andhra Pradesh articles of Top-importance and last: Category:Slovak emigrants to the Czech Republic -[2018-02-13T00:46:25.114] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:46:25.176] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Avilés and last: Alaguilac language -[2018-02-13T00:46:25.220] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:46:25.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/requests/2011 Lamar Hunt U.S. Open Cup Final and last: Tehelka Daily -[2018-02-13T00:46:25.285] [INFO] cheese - inserting 1000 documents. first: Constitution of Senegal and last: Matheson (compressed gas & equipment) -[2018-02-13T00:46:25.295] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:46:25.300] [INFO] cheese - inserting 1000 documents. first: Vigilanza and last: Dongnipgun -[2018-02-13T00:46:25.343] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:46:25.350] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:46:25.385] [INFO] cheese - inserting 1000 documents. first: Draft:PEN Oakland and last: Category:Security divisions of Germany during World War II -[2018-02-13T00:46:25.414] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:46:25.534] [INFO] cheese - inserting 1000 documents. first: The Experts (1989 film) and last: 2005 United States motorcycle Grand Prix -[2018-02-13T00:46:25.576] [INFO] cheese - inserting 1000 documents. first: 1994 Segunda División B play-offs and last: Chief of the Land Staff -[2018-02-13T00:46:25.607] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:46:25.651] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:46:25.714] [INFO] cheese - inserting 1000 documents. first: Delta Ship 41 and last: Georgia State Route 52 (1921-1937) -[2018-02-13T00:46:25.767] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:46:25.769] [INFO] cheese - inserting 1000 documents. first: Ollin Yoliztli Prize and last: The Sentry (painting) -[2018-02-13T00:46:25.842] [INFO] cheese - inserting 1000 documents. first: Mercuric (album) and last: Portuguese Electronic Passport -[2018-02-13T00:46:25.850] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:46:25.917] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:46:25.988] [INFO] cheese - inserting 1000 documents. first: Magdalena Pajala and last: File:Historical population of Wake island.png -[2018-02-13T00:46:26.051] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:46:26.147] [INFO] cheese - inserting 1000 documents. first: List of universities in the China and last: Pijanskiy District -[2018-02-13T00:46:26.336] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:46:26.345] [INFO] cheese - inserting 1000 documents. first: Y (Jaejoong EP) and last: EO 13780 -[2018-02-13T00:46:26.349] [INFO] cheese - inserting 1000 documents. first: Benzamil and last: Cygnet Rowing Club -[2018-02-13T00:46:26.426] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:46:26.443] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:46:26.626] [INFO] cheese - inserting 1000 documents. first: Team O'Grady and last: Ogden High School (disambiguation) -[2018-02-13T00:46:26.633] [INFO] cheese - inserting 1000 documents. first: Category:Wheelchair fencers at the 1988 Summer Paralympics and last: The Mentalist (TV series) -[2018-02-13T00:46:26.806] [INFO] cheese - inserting 1000 documents. first: Pijanski District and last: Die Roten -[2018-02-13T00:46:26.806] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T00:46:26.832] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:46:26.884] [INFO] cheese - inserting 1000 documents. first: Angel Camouflaged and last: Guide to style -[2018-02-13T00:46:26.996] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T00:46:27.012] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:27.366] [INFO] cheese - inserting 1000 documents. first: Clan Tweedy and last: Wikipedia:Articles for deletion/Yodasnews.com -[2018-02-13T00:46:27.380] [INFO] cheese - inserting 1000 documents. first: Chittatukara and last: Openness to experience -[2018-02-13T00:46:27.403] [INFO] cheese - inserting 1000 documents. first: Category:Games Workshop articles that need to differentiate between fact and fiction and last: John Day (cricketer, born 1881) -[2018-02-13T00:46:27.415] [INFO] cheese - inserting 1000 documents. first: Bethel Church (Redding California) and last: Template:S-line/RandstadRail right/4 -[2018-02-13T00:46:27.463] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:46:27.472] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:46:27.488] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T00:46:27.490] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:46:27.534] [INFO] cheese - inserting 1000 documents. first: Mark Pennington and last: Ulam, Adam -[2018-02-13T00:46:27.587] [INFO] cheese - inserting 1000 documents. first: Alice Tissot and last: Didier Dubois -[2018-02-13T00:46:27.608] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:46:27.673] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:46:27.937] [INFO] cheese - inserting 1000 documents. first: 2010 Asian Indoor Championships in Athletics and last: Tuskegee syphilis experiments -[2018-02-13T00:46:27.985] [INFO] cheese - inserting 1000 documents. first: File:LIBlogoRightsmr.jpg and last: Phillipa Finch -[2018-02-13T00:46:28.014] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:28.060] [INFO] cheese - inserting 1000 documents. first: Leon Stover and last: Schlatt b. Winterthur -[2018-02-13T00:46:28.099] [INFO] cheese - inserting 1000 documents. first: File:Triggermen.jpg and last: Iamgold Corp. -[2018-02-13T00:46:28.102] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:46:28.111] [INFO] cheese - inserting 1000 documents. first: Ross Clow and last: East of Ireland -[2018-02-13T00:46:28.139] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:46:28.250] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:46:28.613] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T00:46:29.149] [INFO] cheese - inserting 1000 documents. first: USS Caprice and last: The Devil and Sherlock Holmes: Tales of Murder, Madness, and Obsession -[2018-02-13T00:46:29.242] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T00:46:29.277] [INFO] cheese - inserting 1000 documents. first: Route nationale 1 and last: Chris Kuper -[2018-02-13T00:46:29.374] [INFO] cheese - inserting 1000 documents. first: File:CreRecombActiveSite.png and last: Assumption College, Bangkok -[2018-02-13T00:46:29.397] [INFO] cheese - inserting 1000 documents. first: Ellen Halpenny and last: Vermilion Lake (Sudbury) -[2018-02-13T00:46:29.405] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T00:46:29.483] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T00:46:29.489] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T00:46:29.727] [INFO] cheese - inserting 1000 documents. first: Crambus inconspicuellus and last: Template:WPBannerDoc/doc -[2018-02-13T00:46:29.808] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T00:46:29.850] [INFO] cheese - inserting 1000 documents. first: Sled hockey at the 2010 Winter Paralympics and last: Derek 'Deek' Henderson -[2018-02-13T00:46:29.861] [INFO] cheese - inserting 1000 documents. first: Independent candidates, 1985 Ontario provincial election and last: Scouting Slovakia -[2018-02-13T00:46:29.933] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:46:29.942] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:46:30.000] [INFO] cheese - inserting 1000 documents. first: Conductor ideal and last: Ziaran Meat Packing Company -[2018-02-13T00:46:30.036] [INFO] cheese - inserting 1000 documents. first: Adventures in the DC Universe and last: Category:Districts of the Julcán Province -[2018-02-13T00:46:30.078] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:46:30.111] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:46:30.270] [INFO] cheese - inserting 1000 documents. first: Energy to matter conversion and last: Randomness merger -[2018-02-13T00:46:30.326] [INFO] cheese - inserting 1000 documents. first: Category:Serbian alpine skiers and last: Almost Heathen -[2018-02-13T00:46:30.327] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:46:30.366] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:46:30.509] [INFO] cheese - inserting 1000 documents. first: The Swedish Guide and Scout Council and last: File:Linda Bengtzing - Ingenting att Förlora album cover.jpg -[2018-02-13T00:46:30.541] [INFO] cheese - inserting 1000 documents. first: Calamarca District and last: Bargny-Gouddau -[2018-02-13T00:46:30.579] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:46:30.636] [INFO] cheese - inserting 1000 documents. first: Portal:Jazz/Selected picture/Archive and last: Template:HS number/211.232.2 -[2018-02-13T00:46:30.635] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:46:30.697] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:46:30.768] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Anniversaries/August/August 29 and last: Marcos Alonso Mendoza -[2018-02-13T00:46:30.823] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:46:30.925] [INFO] cheese - inserting 1000 documents. first: Firas Al-Lateef and last: County Route 23 (Genesee County, New York) -[2018-02-13T00:46:31.028] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:46:31.229] [INFO] cheese - inserting 1000 documents. first: Template:HS number/211.242.2 and last: Wikipedia:WikiProject Spam/LinkReports/exclusivevent.ro -[2018-02-13T00:46:31.293] [INFO] cheese - inserting 1000 documents. first: Oghul Ghaymish and last: Svetlana Alexievich -[2018-02-13T00:46:31.298] [INFO] cheese - inserting 1000 documents. first: Marías District and last: File:IHCCLogo.jpg -[2018-02-13T00:46:31.305] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:46:31.387] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:46:31.432] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:46:31.700] [INFO] cheese - inserting 1000 documents. first: Portal:Malawi/Featured article/3 and last: Two Americas (comics) -[2018-02-13T00:46:31.778] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:46:31.923] [INFO] cheese - inserting 1000 documents. first: Roy Dexter and last: Inter de Grand-Goâve -[2018-02-13T00:46:31.960] [INFO] cheese - inserting 1000 documents. first: County Route 9 (Genesee County, New York) and last: Category:Redirect-Class FC Bayern Munich articles -[2018-02-13T00:46:31.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BLOWUP and last: Wikipedia:Miscellany for deletion/User:1archie99/Artvoice -[2018-02-13T00:46:32.022] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:46:32.027] [INFO] cheese - batch complete in: 4.539 secs -[2018-02-13T00:46:32.027] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:46:32.073] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Scouting/Userboxes/Order of the Arrow and last: Ab. -[2018-02-13T00:46:32.151] [INFO] cheese - inserting 1000 documents. first: List of Sailor Moon chapters and last: Derrick De Marney -[2018-02-13T00:46:32.155] [INFO] cheese - inserting 1000 documents. first: File:Hell-to-pay-roberto gomez martin.jpg and last: NKR2B4 -[2018-02-13T00:46:32.195] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:46:32.191] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:46:32.219] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:46:32.395] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Kalaua and last: Fluctuat, nec mergitur -[2018-02-13T00:46:32.395] [INFO] cheese - inserting 1000 documents. first: Tal Block and last: John Currie (footballer born 1939) -[2018-02-13T00:46:32.441] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:46:32.462] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:46:32.571] [INFO] cheese - inserting 1000 documents. first: 2010 Kor Royal Cup unrest and last: Template:Country data Catalunya -[2018-02-13T00:46:32.588] [INFO] cheese - inserting 1000 documents. first: Otloh and last: Safi (given name) -[2018-02-13T00:46:32.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Merchant of Venice (computer program) and last: Liao Tartars -[2018-02-13T00:46:32.610] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:32.642] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:32.668] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:46:32.862] [INFO] cheese - inserting 1000 documents. first: Taiko Risshiden and last: Belmont Lions Club -[2018-02-13T00:46:32.901] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:32.911] [INFO] cheese - inserting 1000 documents. first: St Laurenz Basilica, Kempten and last: Pilot (Allen Gregory) -[2018-02-13T00:46:32.966] [INFO] cheese - inserting 1000 documents. first: WLOM-FM and last: And lo...a pilot shall come! -[2018-02-13T00:46:32.986] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:33.014] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:46:33.165] [INFO] cheese - inserting 1000 documents. first: 14th Samoan Parliament and last: Template:Bengali-film-stub -[2018-02-13T00:46:33.168] [INFO] cheese - inserting 1000 documents. first: Average Frustrated Chump and last: The Game (wrestler) -[2018-02-13T00:46:33.204] [INFO] cheese - inserting 1000 documents. first: A Centaur's Life and last: Communion of the Apostles (Barocci) -[2018-02-13T00:46:33.206] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:33.220] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:46:33.293] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:46:33.371] [INFO] cheese - inserting 1000 documents. first: Template:Cultures of Slavs and last: Category:1977 establishments in the Soviet Union -[2018-02-13T00:46:33.406] [INFO] cheese - inserting 1000 documents. first: File:Ultimatemiracles.jpg and last: Category:People from Vrlika -[2018-02-13T00:46:33.462] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:46:33.478] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:46:33.554] [INFO] cheese - inserting 1000 documents. first: Samsung Galaxy J7 Prime and last: Wikipedia:WikiProject Royalty and Nobility/Popular pages -[2018-02-13T00:46:33.638] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T00:46:33.675] [INFO] cheese - inserting 1000 documents. first: Yugoslav partisan and last: AqME -[2018-02-13T00:46:33.688] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Wes Scantlin and last: Ng Hong-mun -[2018-02-13T00:46:33.747] [INFO] cheese - inserting 1000 documents. first: Useless Trinkets and last: Serkan celikoz -[2018-02-13T00:46:33.747] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:46:33.788] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:33.857] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:46:33.973] [INFO] cheese - inserting 1000 documents. first: Portal:Miami/Selected Photo/4 and last: Category:Houses in the London Borough of Enfield -[2018-02-13T00:46:34.028] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:46:34.108] [INFO] cheese - inserting 1000 documents. first: Will Clarke (disambiguation) and last: 1998–99 EuroLeague Women -[2018-02-13T00:46:34.233] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:46:34.361] [INFO] cheese - inserting 1000 documents. first: Gufo and last: File:En cuerpo ajeno poster.jpg -[2018-02-13T00:46:34.390] [INFO] cheese - inserting 1000 documents. first: Banner page and last: Wikipedia:Version 1.0 Editorial Team/College basketball articles by quality statistics -[2018-02-13T00:46:34.432] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:46:34.452] [INFO] cheese - inserting 1000 documents. first: German submarine U-46 (1938) and last: File:Stripesposter.jpg -[2018-02-13T00:46:34.471] [INFO] cheese - inserting 1000 documents. first: Melanchthonweg RandstadRail station and last: Bruce Larkin -[2018-02-13T00:46:34.496] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:46:34.538] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:46:34.613] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:46:34.857] [INFO] cheese - inserting 1000 documents. first: Auti Angel and last: A. verticillata (disambiguation) -[2018-02-13T00:46:34.938] [INFO] cheese - inserting 1000 documents. first: Chitra Pournami (film) and last: Category:Actresses from Durango -[2018-02-13T00:46:34.959] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:46:35.025] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:46:35.132] [INFO] cheese - inserting 1000 documents. first: Ferdinand Pelez and last: File:Mix1063.jpg -[2018-02-13T00:46:35.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Pnelnik and last: Portal:Current events/2010 February 23 -[2018-02-13T00:46:35.193] [INFO] cheese - inserting 1000 documents. first: Cookie time and last: TOC (Debate) -[2018-02-13T00:46:35.199] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:46:35.304] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:46:35.298] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:46:35.560] [INFO] cheese - inserting 1000 documents. first: Crossing Creek and last: Kazuhiko Aomoto -[2018-02-13T00:46:35.589] [INFO] cheese - inserting 1000 documents. first: China Railways HXD3D and last: Archbishop Blanch School -[2018-02-13T00:46:35.637] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:46:35.758] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:46:35.988] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Geekbrief and last: Tartarus (spider) -[2018-02-13T00:46:36.025] [INFO] cheese - inserting 1000 documents. first: May devotions to the Blessed Virgin Mary and last: Kolanda -[2018-02-13T00:46:36.072] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:46:36.180] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:46:36.226] [INFO] cheese - inserting 1000 documents. first: File:Spider-Woman 1 (2009).jpg and last: Dečina -[2018-02-13T00:46:36.275] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:46:36.283] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Biography/Science and academia/Popular pages and last: Zomaron Merchant Services -[2018-02-13T00:46:36.373] [INFO] cheese - inserting 1000 documents. first: National symbols of Indonesia and last: L'Ange-Gardien, Les Collines-de-l'Outaouais, Quebec -[2018-02-13T00:46:36.379] [INFO] cheese - batch complete in: 2.741 secs -[2018-02-13T00:46:36.414] [INFO] cheese - inserting 1000 documents. first: Category:18th century in Birmingham, West Midlands and last: Kaiser Darrin 161 -[2018-02-13T00:46:36.478] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:46:36.499] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:46:36.723] [INFO] cheese - inserting 1000 documents. first: Cardiff skyline and last: Anti-Japanese Army For The Salvation Of The Country -[2018-02-13T00:46:36.815] [INFO] cheese - inserting 1000 documents. first: Felix de Andreis and last: Amilkar Ariza -[2018-02-13T00:46:36.830] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:46:36.871] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:46:36.974] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Layali El Bidh and last: Cornelia Schleime -[2018-02-13T00:46:37.003] [INFO] cheese - inserting 1000 documents. first: John Marston and last: Category:WikiProject Ice Hockey/Vancouver Canucks task force members -[2018-02-13T00:46:37.020] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:46:37.073] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:46:37.086] [INFO] cheese - inserting 1000 documents. first: Sir Peter Petrie, 5th Baronet and last: Disturbance term -[2018-02-13T00:46:37.192] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:46:37.324] [INFO] cheese - inserting 1000 documents. first: Tom Mix filmography and last: Template:User Triathlon -[2018-02-13T00:46:37.336] [INFO] cheese - inserting 1000 documents. first: Category:Historic house museums in Bristol and last: Typisms -[2018-02-13T00:46:37.408] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:46:37.408] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:46:37.443] [INFO] cheese - inserting 1000 documents. first: Category:Oceanitinae and last: Phomopsis leaf -[2018-02-13T00:46:37.500] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:46:37.537] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/monorobot and last: Vaggelis Kryos -[2018-02-13T00:46:37.596] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:46:37.636] [INFO] cheese - inserting 1000 documents. first: Category:Defunct clubs and societies of the United States and last: Garland E. Pierce -[2018-02-13T00:46:37.691] [INFO] cheese - inserting 1000 documents. first: James Warlick and last: Save the Children Canada -[2018-02-13T00:46:37.697] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:46:37.747] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:46:37.850] [INFO] cheese - inserting 1000 documents. first: Armin Bauer and last: Doug Gabbard, II -[2018-02-13T00:46:37.929] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:46:37.964] [INFO] cheese - inserting 1000 documents. first: File:Muir logo.gif and last: Picton Reading Room -[2018-02-13T00:46:38.018] [INFO] cheese - inserting 1000 documents. first: Somchai Chantarasamrit and last: Template:Representative/current/New York assembly/doc -[2018-02-13T00:46:38.019] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:38.065] [INFO] cheese - inserting 1000 documents. first: Category:IEEPA sanctions fair use images and last: Plastic Surgeon -[2018-02-13T00:46:38.103] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:46:38.149] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:46:38.207] [INFO] cheese - inserting 1000 documents. first: Miquihuana and last: Cainogenion -[2018-02-13T00:46:38.242] [INFO] cheese - inserting 1000 documents. first: Handbook On Japanes Military Forces and last: Ἀρτέμιδος -[2018-02-13T00:46:38.257] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:46:38.288] [INFO] cheese - inserting 1000 documents. first: Long-tailed Chinchilla and last: Nepenthes acid proteinase -[2018-02-13T00:46:38.305] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:46:38.344] [INFO] cheese - inserting 1000 documents. first: File:Islamic Iran Solidarity Party.jpg and last: Bartholomaeus Olivieri -[2018-02-13T00:46:38.347] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:38.419] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:46:38.539] [INFO] cheese - inserting 1000 documents. first: Portal:Philosophy of science/Wikimedia and last: Template:PD-India-old -[2018-02-13T00:46:38.588] [INFO] cheese - inserting 1000 documents. first: South Bourke and Mornington Journal and last: Category:Actresses from Guerrero -[2018-02-13T00:46:38.599] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:46:38.663] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:46:38.747] [INFO] cheese - inserting 1000 documents. first: Triple lutz and last: Elabuzhski District -[2018-02-13T00:46:38.752] [INFO] cheese - inserting 1000 documents. first: Category:798 by country and last: Qaleh, Avaj -[2018-02-13T00:46:38.774] [INFO] cheese - inserting 1000 documents. first: Seigneur de Joinville and last: Oberea kanarensis -[2018-02-13T00:46:38.805] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:46:38.819] [INFO] cheese - inserting 1000 documents. first: Category:Government agencies established in 1912 and last: File:Annabelle-Resilience.jpg -[2018-02-13T00:46:38.821] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:46:38.864] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:46:38.901] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:46:39.174] [INFO] cheese - inserting 1000 documents. first: File:AllTheRageBackHome.jpg and last: Thaumatosaurus oolithicus -[2018-02-13T00:46:39.240] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:46:39.375] [INFO] cheese - inserting 1000 documents. first: Oberea luluensis and last: Balapokuna Raja Maha Vihara -[2018-02-13T00:46:39.378] [INFO] cheese - inserting 1000 documents. first: Portal:New Zealand/Selected picture/Week 51, 2006 and last: Khooni Darwaza -[2018-02-13T00:46:39.411] [INFO] cheese - inserting 1000 documents. first: Elabuzhskii District and last: MTV Movie Award for Best Song From a Movie -[2018-02-13T00:46:39.410] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:46:39.431] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Didar and last: Category:1576 in art -[2018-02-13T00:46:39.433] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:46:39.479] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:46:39.528] [INFO] cheese - inserting 1000 documents. first: Mogliamante and last: Cospan District -[2018-02-13T00:46:39.541] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:46:39.652] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:46:39.890] [INFO] cheese - inserting 1000 documents. first: Los Exóticos and last: 2005–06 Liga de Fútbol Profesional Boliviano -[2018-02-13T00:46:39.896] [INFO] cheese - inserting 1000 documents. first: Il mercante di Venezia and last: Matilda and the Ramsay Bunch (Series 1) -[2018-02-13T00:46:39.934] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:39.957] [INFO] cheese - inserting 1000 documents. first: Category:1579 in art and last: Yaranskiy District -[2018-02-13T00:46:39.980] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:46:40.016] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:46:40.086] [INFO] cheese - inserting 1000 documents. first: Law of chemical combinations and last: Ian Bolton -[2018-02-13T00:46:40.109] [INFO] cheese - inserting 1000 documents. first: Live from the Relapse Contamination Festival and last: File:Pokhi screenshot.jpg -[2018-02-13T00:46:40.129] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:46:40.208] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:46:40.247] [INFO] cheese - inserting 1000 documents. first: What They Had and last: Category:Universities and colleges in Bidar district -[2018-02-13T00:46:40.255] [INFO] cheese - inserting 1000 documents. first: Portal:Florida/Selected panorama/9 and last: Memorial Hall (Richmond, Illinois) -[2018-02-13T00:46:40.289] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:46:40.346] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:46:40.443] [INFO] cheese - inserting 1000 documents. first: Neoeromene felix and last: Category:Tropidion -[2018-02-13T00:46:40.491] [INFO] cheese - inserting 1000 documents. first: Yaranski District and last: Category:Books by John Hay -[2018-02-13T00:46:40.501] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:46:40.604] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:46:40.652] [INFO] cheese - inserting 1000 documents. first: Kerrville Bus and last: Urauna -[2018-02-13T00:46:40.748] [INFO] cheese - inserting 1000 documents. first: Santa Vera Cruz and last: Template:User visited Indiana/doc -[2018-02-13T00:46:40.748] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:46:40.816] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:40.832] [INFO] cheese - inserting 1000 documents. first: Lists of Finnish films and last: Dendroid (math) -[2018-02-13T00:46:40.986] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:46:41.084] [INFO] cheese - inserting 1000 documents. first: Franciszek Kaminski and last: Verbal fluency test -[2018-02-13T00:46:41.271] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:46:41.289] [INFO] cheese - inserting 1000 documents. first: Lunella moniliformis and last: Element 162 -[2018-02-13T00:46:41.361] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Seycellesa and last: Wikipedia:WikiProject National Basketball League of Canada/Article alerts/Archive -[2018-02-13T00:46:41.384] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:46:41.404] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:46:41.437] [INFO] cheese - inserting 1000 documents. first: Another Minute (Sahaj album) and last: Tom Madden -[2018-02-13T00:46:41.571] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:46:41.657] [INFO] cheese - inserting 1000 documents. first: Lisa Anderson and last: Izod lacoste -[2018-02-13T00:46:41.756] [INFO] cheese - inserting 1000 documents. first: Category:Naval trawlers of the United Kingdom and last: Carrarese -[2018-02-13T00:46:41.786] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:46:41.833] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T00:46:41.916] [INFO] cheese - inserting 1000 documents. first: Reefer (ship) and last: Category:Templates for redirects based on synonymy -[2018-02-13T00:46:41.939] [INFO] cheese - inserting 1000 documents. first: The Graun and last: Pulau Indah Industrial Park -[2018-02-13T00:46:41.940] [INFO] cheese - inserting 1000 documents. first: Element 163 and last: Eoreuma loftini -[2018-02-13T00:46:41.976] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:46:41.981] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:46:41.997] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:46:42.094] [INFO] cheese - inserting 1000 documents. first: Zhao Dezhao and last: Rank-revealing QR factorization -[2018-02-13T00:46:42.160] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:46:42.427] [INFO] cheese - inserting 1000 documents. first: Eoreuma morbidellus and last: Ptychopseustis fuscivenalis -[2018-02-13T00:46:42.440] [INFO] cheese - inserting 1000 documents. first: Speed skating at the 2014 Winter Olympics – Women's 5000 metres and last: Drifter (1981 song) -[2018-02-13T00:46:42.492] [INFO] cheese - inserting 1000 documents. first: Conspiracy? and last: Adrian Dingli -[2018-02-13T00:46:42.603] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:42.605] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:46:42.610] [INFO] cheese - inserting 1000 documents. first: Category:Turkish crime drama television series and last: Draft:Chico Air Museum -[2018-02-13T00:46:42.658] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:46:42.699] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:46:42.713] [INFO] cheese - inserting 1000 documents. first: Seyfang Laboratories and last: Facilities Protection Service -[2018-02-13T00:46:42.789] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:46:42.798] [INFO] cheese - inserting 1000 documents. first: Conscious Evolution and last: Sheyd Esfahan -[2018-02-13T00:46:42.869] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:46:43.124] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Corythangela and last: Category:Boxers from Washington, D. C. -[2018-02-13T00:46:43.133] [INFO] cheese - inserting 1000 documents. first: Ptychopseustis ictericalis and last: Tarski's theorem on choice -[2018-02-13T00:46:43.159] [INFO] cheese - inserting 1000 documents. first: Spirit filled and last: Henri Coëffier Ruzé d'Effiat -[2018-02-13T00:46:43.171] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:46:43.180] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:46:43.187] [INFO] cheese - inserting 1000 documents. first: Bahraini Premier League 1981–82 and last: Matoush Aerodrome -[2018-02-13T00:46:43.189] [INFO] cheese - inserting 1000 documents. first: Template:Val/Print and last: ORVM -[2018-02-13T00:46:43.201] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:43.250] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:46:43.254] [INFO] cheese - inserting 1000 documents. first: Tamara Griesser Pečar and last: Computer human chess -[2018-02-13T00:46:43.302] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:43.304] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:46:43.493] [INFO] cheese - inserting 1000 documents. first: Category:Tom McCall Waterfront Park and last: SECI (disambiguation) -[2018-02-13T00:46:43.526] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:46:43.622] [INFO] cheese - inserting 1000 documents. first: CRS7 and last: Category:People from Phra Nakhon Si Ayutthaya Province -[2018-02-13T00:46:43.640] [INFO] cheese - inserting 1000 documents. first: Category:Vangueria and last: Category:Paracanoeists of Brazil -[2018-02-13T00:46:43.661] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:46:43.682] [INFO] cheese - inserting 1000 documents. first: Mathias Morris and last: Category:Top-importance European Union articles -[2018-02-13T00:46:43.691] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:46:43.728] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:43.786] [INFO] cheese - inserting 1000 documents. first: Human computer chess and last: Pattukkottai Prabakar -[2018-02-13T00:46:43.828] [INFO] cheese - inserting 1000 documents. first: Wing-mirror and last: Charles Russell House (disambiguation) -[2018-02-13T00:46:43.848] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:43.871] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:46:43.928] [INFO] cheese - inserting 1000 documents. first: Vasisht (disambiguation) and last: Category:Articles with Ilocano-language external links -[2018-02-13T00:46:43.962] [INFO] cheese - inserting 1000 documents. first: Category:Ballet companies in Chile and last: Sokos Hotel Torni -[2018-02-13T00:46:43.979] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:46:44.012] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:46:44.088] [INFO] cheese - inserting 1000 documents. first: Niccolo dell'Abati and last: Template:Infobox tornado/sandbox -[2018-02-13T00:46:44.133] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:46:44.355] [INFO] cheese - inserting 1000 documents. first: Category:Ukraine subdivision templates and last: Grupo 2002 Murcia -[2018-02-13T00:46:44.362] [INFO] cheese - inserting 1000 documents. first: Category:Wooden churches in Moldova and last: Category:1927 in Latvian sport -[2018-02-13T00:46:44.402] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:44.409] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:44.479] [INFO] cheese - inserting 1000 documents. first: Safadin and last: Portal:Speculative fiction/Anniversaries/November/November 7 -[2018-02-13T00:46:44.498] [INFO] cheese - inserting 1000 documents. first: File:Reformationposttlc.jpg and last: Genetically modified food controversies -[2018-02-13T00:46:44.515] [INFO] cheese - inserting 1000 documents. first: Philip of Exon and last: Kawasaki Superbikes -[2018-02-13T00:46:44.539] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:46:44.587] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:46:44.601] [INFO] cheese - inserting 1000 documents. first: Portal:Sexuality/Random picture/21 and last: Argyria leucomeralis -[2018-02-13T00:46:44.602] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:46:44.666] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:44.849] [INFO] cheese - inserting 1000 documents. first: Bily Clocks Museum and last: Template:Did you know nominations/The Old Axolotl -[2018-02-13T00:46:44.886] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:46:44.958] [INFO] cheese - inserting 1000 documents. first: Donald Watson, artist and last: Central High School (Columbus, Ohio) -[2018-02-13T00:46:44.967] [INFO] cheese - inserting 1000 documents. first: Sertv and last: Eastern Egyptian Bedawi Spoken Arabic language -[2018-02-13T00:46:45.062] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:46:45.089] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:46:45.106] [INFO] cheese - inserting 1000 documents. first: Of Reuss and last: Odette Lapierre -[2018-02-13T00:46:45.175] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Anniversaries/July/July 7 and last: K34HO -[2018-02-13T00:46:45.195] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/globaldatabase.co.uk and last: Largest Wikipedia -[2018-02-13T00:46:45.200] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:46:45.236] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:45.296] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:45.349] [INFO] cheese - inserting 1000 documents. first: Japan baseball team and last: Thea Landa -[2018-02-13T00:46:45.488] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:46:45.618] [INFO] cheese - inserting 1000 documents. first: 28 July 2003 Mumbai bus bombing and last: Philagathus -[2018-02-13T00:46:45.689] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:46:45.716] [INFO] cheese - inserting 1000 documents. first: 4th (Quetta) Division and last: Infant Jesus Academy of Silang -[2018-02-13T00:46:45.819] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:46:45.828] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Pennsylvania Route 154 and last: Template:Towns in Zhuhai -[2018-02-13T00:46:45.895] [INFO] cheese - inserting 1000 documents. first: File:Great Big Western Howdy.jpg and last: Central Mashonaland -[2018-02-13T00:46:45.912] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:46:45.961] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:46:46.059] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ski articles by quality/2 and last: Pindorama Biological Reserve -[2018-02-13T00:46:46.071] [INFO] cheese - inserting 1000 documents. first: Sentro ng Alternatibong Lingap Panligan and last: Donald Trump wiretapping claim -[2018-02-13T00:46:46.181] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:46:46.236] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:46:46.308] [INFO] cheese - inserting 1000 documents. first: Incurvaria splendidella and last: William Fulford -[2018-02-13T00:46:46.358] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:46:46.463] [INFO] cheese - inserting 1000 documents. first: Realmente bella Señorita Panama and last: List of windmills in Kent -[2018-02-13T00:46:46.501] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:46:46.557] [INFO] cheese - inserting 1000 documents. first: 1921 in China and last: Module:Location map/data/USA Indiana Wells County -[2018-02-13T00:46:46.607] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:46:46.716] [INFO] cheese - inserting 1000 documents. first: Agadir air disaster and last: Histia -[2018-02-13T00:46:46.720] [INFO] cheese - inserting 1000 documents. first: Category:People from Hornsey and last: Wikipedia:Suspected sock puppets/Daniel575 (2nd) -[2018-02-13T00:46:46.752] [INFO] cheese - inserting 1000 documents. first: Condescension (religion) and last: Aster linariifolius -[2018-02-13T00:46:46.760] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:46.771] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:46:46.808] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:46:46.951] [INFO] cheese - inserting 1000 documents. first: Category:2013–14 in Hong Kong basketball and last: Wilcox County Courthouse (Camden, Alabama) -[2018-02-13T00:46:46.965] [INFO] cheese - inserting 1000 documents. first: Salah Abdul Rasool Al Bloushi and last: The garbage heap of history -[2018-02-13T00:46:46.995] [INFO] cheese - inserting 1000 documents. first: Echinocereus coccineus and last: Maiden Trail -[2018-02-13T00:46:47.012] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:46:47.021] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:46:47.043] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:46:47.134] [INFO] cheese - inserting 1000 documents. first: Barra Velodrome and last: Template:Lang-nod -[2018-02-13T00:46:47.161] [INFO] cheese - inserting 1000 documents. first: Maktab al-Khadamat and last: Sèvres - Lecourbe (Paris Metro) -[2018-02-13T00:46:47.173] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:46:47.210] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:46:47.246] [INFO] cheese - inserting 1000 documents. first: United States Navy Argus Units and last: S. haenkeana -[2018-02-13T00:46:47.318] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:46:47.412] [INFO] cheese - inserting 1000 documents. first: File:Trill Entertainment Presents - Survival of the Fittest.jpg and last: Labyrinth of the World and Paradise of the Heart -[2018-02-13T00:46:47.455] [INFO] cheese - inserting 1000 documents. first: File:Got a Hold on Me.jpg and last: File:Who Shot Patakango?.jpg -[2018-02-13T00:46:47.472] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:46:47.483] [INFO] cheese - inserting 1000 documents. first: Zhu Yuchen (born 1961) and last: Mansour (TV series) -[2018-02-13T00:46:47.490] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:46:47.526] [INFO] cheese - inserting 1000 documents. first: Alphabetical list of comuni of Italy: A and last: Coniesta rufifusalis -[2018-02-13T00:46:47.543] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:46:47.569] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:46:47.587] [INFO] cheese - inserting 1000 documents. first: Guaranís and last: Angel Maria Garibay Kintana -[2018-02-13T00:46:47.633] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:47.691] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 April 4 and last: John Hals -[2018-02-13T00:46:47.746] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:46:47.798] [INFO] cheese - inserting 1000 documents. first: Humanitarian response to the 2010 Chile earthquake and last: Melampyrum sylvaticum -[2018-02-13T00:46:47.932] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:46:48.103] [INFO] cheese - inserting 1000 documents. first: Baern (Smallville) and last: Notre-Dame-de-Lorette (Paris Metro) -[2018-02-13T00:46:48.104] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Jesus work group articles and last: Category:Chrysler people -[2018-02-13T00:46:48.117] [INFO] cheese - inserting 1000 documents. first: Scythris turiensis and last: Template:Editnotices/Page/Marka refugee camp -[2018-02-13T00:46:48.152] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:46:48.191] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:46:48.286] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:46:48.550] [INFO] cheese - inserting 1000 documents. first: Chithariyavar and last: Metadata edit -[2018-02-13T00:46:48.599] [INFO] cheese - inserting 1000 documents. first: File:Generation-Goldman-Volume2.jpg and last: File:Univ puebla seal.png -[2018-02-13T00:46:48.638] [INFO] cheese - inserting 1000 documents. first: Spend a penny and last: Category:1950s in Europe -[2018-02-13T00:46:48.689] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T00:46:48.718] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:46:48.737] [INFO] cheese - inserting 1000 documents. first: Maksim Aleksandrovich Belyayev and last: UN Enemy State Clause -[2018-02-13T00:46:48.740] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:46:48.773] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:48.982] [INFO] cheese - inserting 1000 documents. first: Marx Dormoy (Paris Metro) and last: Aggio -[2018-02-13T00:46:49.030] [INFO] cheese - inserting 1000 documents. first: Brian Sherratt (educator) and last: Byrana Nagappa Suresh -[2018-02-13T00:46:49.033] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:46:49.111] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:46:49.145] [INFO] cheese - inserting 1000 documents. first: Carrai afoveolata and last: Plymouth settlement -[2018-02-13T00:46:49.237] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:46:49.242] [INFO] cheese - inserting 1000 documents. first: Vittorio Croizat and last: Wikipedia:Articles for deletion/ANC Today -[2018-02-13T00:46:49.322] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:46:49.347] [INFO] cheese - inserting 1000 documents. first: Collegeinsider.com and last: Wikipedia:Sockpuppet investigations/Baboon43/Archive -[2018-02-13T00:46:49.464] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:46:49.477] [INFO] cheese - inserting 1000 documents. first: Book:Bohrium and last: Category:Political organizations in the United States -[2018-02-13T00:46:49.564] [INFO] cheese - inserting 1000 documents. first: Harley-Davidson Museum and last: Demski -[2018-02-13T00:46:49.600] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:46:49.662] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:46:49.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Conservatism/References and last: Category:People from Mount Morris, New York -[2018-02-13T00:46:49.777] [INFO] cheese - inserting 1000 documents. first: Poona Mounted Infantry and last: Zitenga Department -[2018-02-13T00:46:49.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saswat saubhagya rout and last: Template:User visited Rhode Island -[2018-02-13T00:46:49.849] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:49.886] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:46:49.961] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:46:50.240] [INFO] cheese - inserting 1000 documents. first: Barbara Ringer and last: Category:Software companies of Wales -[2018-02-13T00:46:50.335] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hamlet and last: Template:Did you know nominations/Hotel Janzen -[2018-02-13T00:46:50.366] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:46:50.387] [INFO] cheese - inserting 1000 documents. first: West 25th-Ohio City (RTA RedCtc Line Rapid Transit station) and last: Snipperclips: Cut It Out, Together! -[2018-02-13T00:46:50.397] [INFO] cheese - inserting 1000 documents. first: Category:People associated with the University of Hertfordshire and last: Winfield Scott, Jr. -[2018-02-13T00:46:50.417] [INFO] cheese - inserting 1000 documents. first: Treblinka II and last: Chițoveni -[2018-02-13T00:46:50.424] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:46:50.432] [INFO] cheese - inserting 1000 documents. first: West Sussex County Council and last: 3630 Lubomír -[2018-02-13T00:46:50.443] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:46:50.470] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:50.471] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:46:50.555] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:46:50.891] [INFO] cheese - inserting 1000 documents. first: Lathrocordulia metallica and last: Valeriy Vdovin -[2018-02-13T00:46:51.004] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:51.035] [INFO] cheese - inserting 1000 documents. first: Uno (surname) and last: HV71 Jonkoping -[2018-02-13T00:46:51.079] [INFO] cheese - inserting 1000 documents. first: Eric Carlson (musician) and last: Standard Russian -[2018-02-13T00:46:51.082] [INFO] cheese - inserting 1000 documents. first: Bădiuți and last: Wikipedia:Articles for deletion/East Side (Phoenix) -[2018-02-13T00:46:51.125] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:46:51.144] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:46:51.224] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:46:51.239] [INFO] cheese - inserting 1000 documents. first: Takayuki Okada and last: Chronic disease in Northern Ontario -[2018-02-13T00:46:51.262] [INFO] cheese - inserting 1000 documents. first: Danzig Rebellion and last: Portal:Military of Australia/Selected anniversaries/October/October 24 -[2018-02-13T00:46:51.340] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:46:51.361] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:46:51.534] [INFO] cheese - inserting 1000 documents. first: Gillermo Faerber and last: File:San Francisco Bicycle Coalition Logo.png -[2018-02-13T00:46:51.621] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:46:51.763] [INFO] cheese - inserting 1000 documents. first: Lauri Lahesalu and last: Route 43 (MTA Maryland) -[2018-02-13T00:46:51.789] [INFO] cheese - inserting 1000 documents. first: List of U.S. Army, Navy and volunteer units in the Mexican–American War and last: Theodore Samuel Adams -[2018-02-13T00:46:51.838] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:46:51.858] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:46:51.883] [INFO] cheese - inserting 1000 documents. first: SBMP and last: Ezra Lee -[2018-02-13T00:46:51.922] [INFO] cheese - inserting 1000 documents. first: Graphium weiskei and last: Edith Wilson (singer) -[2018-02-13T00:46:52.005] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:46:52.059] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:52.197] [INFO] cheese - inserting 1000 documents. first: File:Artist Rosemary Mayer.jpg and last: Template:Did you know nominations/Pendleton Dudley -[2018-02-13T00:46:52.252] [INFO] cheese - inserting 1000 documents. first: Taub–NUT metric and last: Robert le diable (opera) -[2018-02-13T00:46:52.264] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:46:52.346] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T00:46:52.413] [INFO] cheese - inserting 1000 documents. first: Mei Fanggu and last: Noctua simulatrix -[2018-02-13T00:46:52.484] [INFO] cheese - inserting 1000 documents. first: Jach'a Q'awa and last: Zonilia argentifera -[2018-02-13T00:46:52.499] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:46:52.516] [INFO] cheese - inserting 1000 documents. first: Category:Stradivari violins and last: Rub It Better -[2018-02-13T00:46:52.551] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:46:52.621] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:46:52.623] [INFO] cheese - inserting 1000 documents. first: Third Age Foundation (UK) and last: G-type -[2018-02-13T00:46:52.677] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:46:52.809] [INFO] cheese - inserting 1000 documents. first: Joan Schmidt (cricketer) and last: Rabb Da Radio -[2018-02-13T00:46:52.874] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:46:52.887] [INFO] cheese - inserting 1000 documents. first: Khuman and last: File:Trevor Hall (album).jpg -[2018-02-13T00:46:52.959] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:46:52.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/moviedl.net and last: AMICE -[2018-02-13T00:46:53.068] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:46:53.225] [INFO] cheese - inserting 1000 documents. first: Yadava College and last: Template:USSenDemLead -[2018-02-13T00:46:53.279] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:46:53.295] [INFO] cheese - inserting 1000 documents. first: Category:Amphibians of Australia and last: Mazda 717 -[2018-02-13T00:46:53.351] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:46:53.370] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Travis Smith (musician) and last: Wikipedia:WikiProject Spam/Local/inadds.com -[2018-02-13T00:46:53.399] [INFO] cheese - inserting 1000 documents. first: Liv (Skins series 6) and last: Wikipedia:WikiProject Spam/LinkReports/lifeline.org.au -[2018-02-13T00:46:53.434] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:46:53.462] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:46:53.531] [INFO] cheese - inserting 1000 documents. first: Εργατικό Επαναστατικό Κόμμα and last: Greek Idol (season 1) -[2018-02-13T00:46:53.579] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:46:53.717] [INFO] cheese - inserting 1000 documents. first: Oleksiy Boryslavskiy and last: Category:Norwegian horse trainers -[2018-02-13T00:46:53.749] [INFO] cheese - inserting 1000 documents. first: Kameyama castle and last: Joseph Smith House -[2018-02-13T00:46:53.749] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:46:53.801] [INFO] cheese - inserting 1000 documents. first: Mark of Gideon and last: Shangaj -[2018-02-13T00:46:53.807] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:46:53.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/lifeline.org.au and last: Museum Villas -[2018-02-13T00:46:53.864] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:46:53.868] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:46:53.870] [INFO] cheese - inserting 1000 documents. first: Protected from Reality and last: NForce 900 -[2018-02-13T00:46:53.915] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:46:54.160] [INFO] cheese - inserting 1000 documents. first: Libre Cultural Work and last: Shenin -[2018-02-13T00:46:54.190] [INFO] cheese - inserting 1000 documents. first: Template:Ligue Nationale de Basketball A teams 2011-12 and last: Results of the Queensland state election, 1947 (A-K) -[2018-02-13T00:46:54.197] [INFO] cheese - inserting 1000 documents. first: 10 CMi and last: Zeppos, Nicholas -[2018-02-13T00:46:54.201] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:46:54.202] [INFO] cheese - inserting 1000 documents. first: MAGfest and last: Template:Fooian children -[2018-02-13T00:46:54.239] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:46:54.263] [INFO] cheese - inserting 1000 documents. first: Jewish Russians and last: Giuseppe Patroni Griffi -[2018-02-13T00:46:54.286] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:46:54.285] [INFO] cheese - batch complete in: 1.725 secs -[2018-02-13T00:46:54.361] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:46:54.486] [INFO] cheese - inserting 1000 documents. first: H.H. Baselios Mar Thoma Didymos I and last: Wango -[2018-02-13T00:46:54.630] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:46:54.802] [INFO] cheese - inserting 1000 documents. first: Zeppos, Nicholas S. and last: Wikipedia:Sockpuppet investigations/Yash Pal Rao -[2018-02-13T00:46:54.877] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:46:54.966] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject International law/to do and last: Krannónas, Greece -[2018-02-13T00:46:55.013] [INFO] cheese - inserting 1000 documents. first: Shiniyin and last: Category:Wikipedia categories named after American people -[2018-02-13T00:46:55.014] [INFO] cheese - inserting 1000 documents. first: Leif Dietrichson and last: Draft:Generation Yes -[2018-02-13T00:46:55.043] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:46:55.088] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:46:55.105] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:46:55.144] [INFO] cheese - inserting 1000 documents. first: Molten Corporation and last: Binkley -[2018-02-13T00:46:55.220] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:46:55.432] [INFO] cheese - inserting 1000 documents. first: Ambohimana and last: Mike O'Berry -[2018-02-13T00:46:55.461] [INFO] cheese - inserting 1000 documents. first: St John the Baptist Church, Winchester and last: St Giles's and St George's Bloomsbury Volunteers -[2018-02-13T00:46:55.497] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:46:55.505] [INFO] cheese - inserting 1000 documents. first: Murder of Walsh and Pitman and last: Basketball at the 1972 Summer Olympics – Final -[2018-02-13T00:46:55.520] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:46:55.546] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:46:55.570] [INFO] cheese - inserting 1000 documents. first: Aon Corporation and last: Confederate Memorial Carving -[2018-02-13T00:46:55.570] [INFO] cheese - inserting 1000 documents. first: Kranón and last: Indiatimes portal -[2018-02-13T00:46:55.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stephen Jackson & The Juggernauts and last: Aral Kara Kum -[2018-02-13T00:46:55.625] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:46:55.631] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:46:55.649] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:46:55.866] [INFO] cheese - inserting 1000 documents. first: Draft:َAzim Shor (عظیم شور فارسی) and last: Template:Taxonomy/Khorassania -[2018-02-13T00:46:55.903] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:46:55.904] [INFO] cheese - inserting 1000 documents. first: Khasan Akhriev and last: Category:Waukesha County Technical College alumni -[2018-02-13T00:46:55.908] [INFO] cheese - inserting 1000 documents. first: Category:Art galleries disestablished in 1971 and last: Parfen'yevskii District -[2018-02-13T00:46:55.947] [INFO] cheese - inserting 1000 documents. first: List of broadcasting licenses held by Asian Television Network International Limited and last: Lisa hopp -[2018-02-13T00:46:55.971] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:46:55.975] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:46:56.054] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:46:56.096] [INFO] cheese - inserting 1000 documents. first: Mayfair, Washington, D.C. and last: Kano Eitoku -[2018-02-13T00:46:56.151] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:46:56.208] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Heather Tallchief and last: Judiciary of Italy -[2018-02-13T00:46:56.253] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:56.301] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/TheLangmasGroupInc and last: TNA X Division Championship -[2018-02-13T00:46:56.335] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:46:56.347] [INFO] cheese - inserting 1000 documents. first: Nandini Layout and last: 2012/2013 snooker season -[2018-02-13T00:46:56.350] [INFO] cheese - inserting 1000 documents. first: Parfenyyevsky District and last: List of county routes in Ulster County, New York -[2018-02-13T00:46:56.396] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:46:56.442] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:46:56.495] [INFO] cheese - inserting 1000 documents. first: File:Armourtransportlogo.PNG and last: Category:Indian singers by genre -[2018-02-13T00:46:56.559] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:46:56.598] [INFO] cheese - inserting 1000 documents. first: William E. Peterson and last: Fadel Brahami -[2018-02-13T00:46:56.691] [INFO] cheese - inserting 1000 documents. first: Bangladeshi Intelligence Community and last: Tönet, ihr Pauken! Erschallet, Trompeten! -[2018-02-13T00:46:56.694] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:56.749] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:46:56.816] [INFO] cheese - inserting 1000 documents. first: Brandan Wilkinson and last: Template:Infobox caesium isotopes -[2018-02-13T00:46:56.856] [INFO] cheese - inserting 1000 documents. first: Category:Papua New Guinean ornithologists and last: Category:Marshallese literature -[2018-02-13T00:46:56.860] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:46:56.866] [INFO] cheese - inserting 1000 documents. first: Category:Paintings by Georges Seurat and last: Christopher J. R. Garrett -[2018-02-13T00:46:56.909] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:46:56.919] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:46:57.088] [INFO] cheese - inserting 1000 documents. first: Garfield 2: A Tale of Two Kitties and last: Research Octane Number -[2018-02-13T00:46:57.120] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:46:57.148] [INFO] cheese - inserting 1000 documents. first: Ke'ara and last: List of Saudi Arabian billionaires by net worth -[2018-02-13T00:46:57.215] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:46:57.231] [INFO] cheese - inserting 1000 documents. first: New populist and last: 1991 430km of Silverstone -[2018-02-13T00:46:57.253] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Anonaepestis and last: Category:1959–60 in Austrian ice hockey -[2018-02-13T00:46:57.275] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:46:57.297] [INFO] cheese - inserting 1000 documents. first: File:NationalTrustScotland.svg and last: Template:Fb team Box Hill United -[2018-02-13T00:46:57.303] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:46:57.324] [INFO] cheese - inserting 1000 documents. first: Tilge, Höchster, meine Sünden and last: File:SpoolWhippetsBanner.jpg -[2018-02-13T00:46:57.357] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:46:57.395] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:46:57.519] [INFO] cheese - inserting 1000 documents. first: Winfried Zillig and last: Wikipedia:Bots/Requests for approval/STBotD -[2018-02-13T00:46:57.575] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:46:57.680] [INFO] cheese - inserting 1000 documents. first: Category:1958–59 in Austrian ice hockey and last: File:Walt Dickerson 1976.jpg -[2018-02-13T00:46:57.698] [INFO] cheese - inserting 1000 documents. first: Here There Be Monsters (audio drama) and last: Loch Awe station -[2018-02-13T00:46:57.711] [INFO] cheese - inserting 1000 documents. first: Hong Kong legislative election, 1988 and last: Bubble net -[2018-02-13T00:46:57.727] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:46:57.742] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:57.764] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:46:57.789] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of fictional television shows (3rd nomination) and last: Porrectaria triatomea -[2018-02-13T00:46:57.820] [INFO] cheese - inserting 1000 documents. first: List of municipalities of Serbia and last: Stephen Goodin -[2018-02-13T00:46:57.825] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:46:57.830] [INFO] cheese - inserting 1000 documents. first: X-wave and last: Fahy JU -[2018-02-13T00:46:57.864] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:46:57.867] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:46:58.060] [INFO] cheese - inserting 1000 documents. first: Cottonworld and last: Template:Infobox einsteinium isotopes -[2018-02-13T00:46:58.079] [INFO] cheese - inserting 1000 documents. first: Bunker Hill (film) and last: NRN (disambiguation) -[2018-02-13T00:46:58.084] [INFO] cheese - inserting 1000 documents. first: Little Bones and last: Baulmes VD -[2018-02-13T00:46:58.100] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:46:58.118] [INFO] cheese - inserting 1000 documents. first: Opekiska, West Virginia and last: Indianapolis Freeman -[2018-02-13T00:46:58.131] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:46:58.164] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:46:58.182] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:58.189] [INFO] cheese - inserting 1000 documents. first: Clifford Scott (psychoanalyst) and last: DOS 5.50 -[2018-02-13T00:46:58.208] [INFO] cheese - inserting 1000 documents. first: Elachista triatomella and last: Ann-Marie Gyllenspetz -[2018-02-13T00:46:58.234] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:46:58.244] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:58.344] [INFO] cheese - inserting 1000 documents. first: Alexandria Ariana and last: Oberried am Brienzersee BE -[2018-02-13T00:46:58.363] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:46:58.379] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Elliot Scheiner and last: Apple I Computer -[2018-02-13T00:46:58.425] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:46:58.471] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Kingston, Ontario and last: ElDorado (the movie) -[2018-02-13T00:46:58.512] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:46:58.516] [INFO] cheese - inserting 1000 documents. first: Glidersport LightHawk and last: Acrolepiopsis infundibulosa -[2018-02-13T00:46:58.553] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:46:58.628] [INFO] cheese - inserting 1000 documents. first: Hampton on sea and last: Category:Belarusian Soviet cosmonauts -[2018-02-13T00:46:58.662] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:58.667] [INFO] cheese - inserting 1000 documents. first: Black Wattle and last: Revolting Children -[2018-02-13T00:46:58.751] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:46:58.822] [INFO] cheese - inserting 1000 documents. first: Obersteckholz BE and last: Bellmore, NY -[2018-02-13T00:46:58.847] [INFO] cheese - inserting 1000 documents. first: Category:Millennia in Zimbabwe and last: Columbia Journal of Tax Law -[2018-02-13T00:46:58.872] [INFO] cheese - inserting 1000 documents. first: Category:2015 FIBA Americas Championship and last: Faunus anglewing -[2018-02-13T00:46:58.887] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:46:58.906] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:58.954] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:46:58.979] [INFO] cheese - inserting 1000 documents. first: Answer to life, universe and everything and last: Arsenal Underground station -[2018-02-13T00:46:59.020] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:46:59.043] [INFO] cheese - inserting 1000 documents. first: 2 P.M. and last: New Zealand DL class locomotive -[2018-02-13T00:46:59.133] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:46:59.168] [INFO] cheese - inserting 1000 documents. first: Ceratophyllus coahuilensis and last: Gray-hooded bush-tanager -[2018-02-13T00:46:59.253] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:46:59.326] [INFO] cheese - inserting 1000 documents. first: Babylon, NY and last: Bovernier, Switzerland -[2018-02-13T00:46:59.364] [INFO] cheese - inserting 1000 documents. first: Category:Sailboat type designs by Juan Kouyoumdjian and last: Francis Barnard (English cricketer) -[2018-02-13T00:46:59.397] [INFO] cheese - inserting 1000 documents. first: Pyshchugsky and last: Wikipedia:Articles for deletion/2011-12 Colwyn Bay F.C. season -[2018-02-13T00:46:59.400] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:46:59.420] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:46:59.454] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jochen Heisenberg and last: ⊇ -[2018-02-13T00:46:59.481] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:46:59.511] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:46:59.621] [INFO] cheese - inserting 1000 documents. first: NZR DK class and last: George Parker Scarburgh -[2018-02-13T00:46:59.696] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:46:59.734] [INFO] cheese - inserting 1000 documents. first: Bowil, Switzerland and last: Isenthal, Switzerland -[2018-02-13T00:46:59.782] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:46:59.884] [INFO] cheese - inserting 1000 documents. first: Template:Progressive Labor Party (Bermuda)/meta/color and last: Phosphorus virescens -[2018-02-13T00:46:59.942] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:46:59.985] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Rcardiffcity27 and last: Jim Hogan (disambiguation) -[2018-02-13T00:47:00.013] [INFO] cheese - inserting 1000 documents. first: Globules of fat and last: Floss pick -[2018-02-13T00:47:00.017] [INFO] cheese - inserting 1000 documents. first: Isérables, Switzerland and last: Siselen, Switzerland -[2018-02-13T00:47:00.043] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:47:00.047] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:47:00.063] [INFO] cheese - inserting 1000 documents. first: 2014–15 United States network television schedule (late night) and last: 2012–13 Austin Peay State Governors basketball team -[2018-02-13T00:47:00.065] [INFO] cheese - inserting 1000 documents. first: Partido del Sol and last: Timoteo Kamalehua Haʻalilio -[2018-02-13T00:47:00.087] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:00.139] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:47:00.142] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:47:00.296] [INFO] cheese - inserting 1000 documents. first: British-Dutch Wars and last: 1939-40 Football League Third Division South -[2018-02-13T00:47:00.334] [INFO] cheese - inserting 1000 documents. first: Jakaltek (disambiguation) and last: Anglo-Saxon Genealogies -[2018-02-13T00:47:00.339] [INFO] cheese - inserting 1000 documents. first: Sisikon, Switzerland and last: File:GrantHS(OR)Seal.png -[2018-02-13T00:47:00.339] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:47:00.367] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:47:00.376] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:47:00.508] [INFO] cheese - inserting 1000 documents. first: Fulham Broadway station and last: John F. Adams House -[2018-02-13T00:47:00.554] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:47:00.658] [INFO] cheese - inserting 1000 documents. first: Polish prisoners and internees in the Soviet Union and Lithuania (1919–21) and last: 9 Eridani -[2018-02-13T00:47:00.711] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:47:00.720] [INFO] cheese - inserting 1000 documents. first: Cambyreta and last: All Saints Day Flood -[2018-02-13T00:47:00.724] [INFO] cheese - inserting 1000 documents. first: County Route 77 (Cattaraugus County, New York) and last: Category:LGBT figure skaters -[2018-02-13T00:47:00.726] [INFO] cheese - inserting 1000 documents. first: File:Itm2a CCDS report.png and last: D. discoides -[2018-02-13T00:47:00.742] [INFO] cheese - inserting 1000 documents. first: Tilichiki Airport and last: Category:Johnstown Chiefs players -[2018-02-13T00:47:00.763] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:00.783] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:47:00.796] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:47:00.868] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:47:01.030] [INFO] cheese - inserting 1000 documents. first: Thirteen cards and last: Draft:Jero (musician) -[2018-02-13T00:47:01.087] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:01.130] [INFO] cheese - inserting 1000 documents. first: The Black Swan (Bert Jansch album) and last: Guillaume Moreau -[2018-02-13T00:47:01.205] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:47:01.232] [INFO] cheese - inserting 1000 documents. first: Christopher lee (singaporean actor) and last: Latin Tropical/Salsa Airplay -[2018-02-13T00:47:01.290] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:01.297] [INFO] cheese - inserting 1000 documents. first: Ruan Dreyer and last: County Route 113 (Sullivan County, New York) -[2018-02-13T00:47:01.297] [INFO] cheese - inserting 1000 documents. first: IWatch and last: Tikoma (ship) -[2018-02-13T00:47:01.370] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:47:01.371] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:47:01.421] [INFO] cheese - inserting 1000 documents. first: 2009 AL Central tie-breaker game and last: Exaggerate -[2018-02-13T00:47:01.487] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:47:01.499] [INFO] cheese - inserting 1000 documents. first: Corsi (ice hockey) and last: File:Queanbeyan City FC colours icon.png -[2018-02-13T00:47:01.557] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:47:01.602] [INFO] cheese - inserting 1000 documents. first: Felix Bryk and last: Category:Mythic aquatic creatures -[2018-02-13T00:47:01.647] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:47:01.788] [INFO] cheese - inserting 1000 documents. first: Thunder in the Morning Calm (novel) and last: Draft:Bluff Europe -[2018-02-13T00:47:01.837] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:47:01.906] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Broken Down Dam and last: File:Take Off (2017 film).jpg -[2018-02-13T00:47:01.915] [INFO] cheese - inserting 1000 documents. first: Trisadekaphobia and last: Wikipedia:Articles for deletion/2012 Twenty20 World Championship -[2018-02-13T00:47:01.922] [INFO] cheese - inserting 1000 documents. first: Barbara Hannigan and last: File:Radisson Hotel Logo.svg -[2018-02-13T00:47:01.940] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:47:01.948] [INFO] cheese - inserting 1000 documents. first: Template:2006 PBA Philippine Cup Playoffs bracket and last: File:Trlawards2012.jpg -[2018-02-13T00:47:01.966] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:47:01.978] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:01.996] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:47:02.047] [INFO] cheese - inserting 1000 documents. first: Category:Light Rapid Transit depots and last: John St George -[2018-02-13T00:47:02.079] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:02.213] [INFO] cheese - inserting 1000 documents. first: Cross Road (Mr. Children song) and last: Milking the Stars: A Reimagining Of Last Patrol -[2018-02-13T00:47:02.253] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:02.290] [INFO] cheese - inserting 1000 documents. first: Template:Tokyu Line Symbol and last: Category:Paleozoic Chile -[2018-02-13T00:47:02.320] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Nantucket County, Massachusetts and last: Selena Gomez & the Scene Discography -[2018-02-13T00:47:02.324] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:47:02.371] [INFO] cheese - inserting 1000 documents. first: Geology of the Rocky Mountains and last: Category:1952 Summer Olympics stubs -[2018-02-13T00:47:02.371] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:47:02.387] [INFO] cheese - inserting 1000 documents. first: Skibbereen Eagle and last: Clinton Duffy -[2018-02-13T00:47:02.428] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:47:02.430] [INFO] cheese - inserting 1000 documents. first: Pinstriping brush and last: Nutana SDA, Saskatoon, Saskatchewan -[2018-02-13T00:47:02.448] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:47:02.479] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:47:02.637] [INFO] cheese - inserting 1000 documents. first: Hoag, Nicholas and last: Serdang Raya North MRT Station -[2018-02-13T00:47:02.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramnagar,Alapur and last: Operation Redoubt -[2018-02-13T00:47:02.665] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:47:02.696] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:47:02.705] [INFO] cheese - inserting 1000 documents. first: Category:People educated by school in New Zealand and last: Wikipedia:Featured picture candidates/John Biddle -[2018-02-13T00:47:02.741] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:47:02.764] [INFO] cheese - inserting 1000 documents. first: Capatcha and last: Wikipedia:Articles for deletion/Milivoje Božić -[2018-02-13T00:47:02.770] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/NWA Pro Wrestling Roster and last: Desk jockey -[2018-02-13T00:47:02.807] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:47:02.816] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:47:02.914] [INFO] cheese - inserting 1000 documents. first: Category:Persian rebels and last: 1972-73 Rheinlandliga -[2018-02-13T00:47:02.918] [INFO] cheese - inserting 1000 documents. first: University Heights SDA, Saskatoon, Saskatchewan and last: Agnostic Atheist -[2018-02-13T00:47:02.952] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:47:03.024] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:47:03.151] [INFO] cheese - inserting 1000 documents. first: Peter the Cossack and last: Template:Aaron Neville -[2018-02-13T00:47:03.217] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:03.220] [INFO] cheese - inserting 1000 documents. first: 924th Fighter Wing and last: File:Firoze Noon and Khaled Zia.jpg -[2018-02-13T00:47:03.229] [INFO] cheese - inserting 1000 documents. first: Hard Bop and last: Tito Guízar -[2018-02-13T00:47:03.294] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:47:03.314] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:03.386] [INFO] cheese - inserting 1000 documents. first: Help:Gadget-ImageAnnotator and last: Tour of Sardinia -[2018-02-13T00:47:03.404] [INFO] cheese - inserting 1000 documents. first: Heinz ketchup and last: Category:Event venues in Tennessee -[2018-02-13T00:47:03.455] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:47:03.477] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:47:03.652] [INFO] cheese - inserting 1000 documents. first: Rēzeknes District and last: Adam Cohan -[2018-02-13T00:47:03.717] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:47:03.753] [INFO] cheese - inserting 1000 documents. first: When Ladies Meet (film) and last: Kiga, Iran -[2018-02-13T00:47:03.819] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:47:03.912] [INFO] cheese - inserting 1000 documents. first: North Eastern and last: Oasys -[2018-02-13T00:47:03.923] [INFO] cheese - inserting 1000 documents. first: 1974 European Athletics Championships – Men's shot put and last: File:Braid-NoCoast-cover.jpg -[2018-02-13T00:47:03.982] [INFO] cheese - inserting 1000 documents. first: Filmfare Award for Best Music Director – Malayalam and last: Sarbo District -[2018-02-13T00:47:03.989] [INFO] cheese - inserting 1000 documents. first: Draft:DataToCapital Consulting and last: Wikipedia:Articles for deletion/Independent Talent Group Ltd. -[2018-02-13T00:47:03.986] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:47:03.993] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:47:04.062] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:47:04.087] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:47:04.267] [INFO] cheese - inserting 1000 documents. first: Fellgate station and last: Category:People from Chicago -[2018-02-13T00:47:04.336] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:47:04.439] [INFO] cheese - inserting 1000 documents. first: Charles Burney (priest) and last: Wikipedia:WikiProject Spam/Local/pakun.org -[2018-02-13T00:47:04.472] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 2015/Coquitlam—Port Coquitlam and last: Category:2010 sports in California -[2018-02-13T00:47:04.513] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:47:04.514] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:47:04.590] [INFO] cheese - inserting 1000 documents. first: Monastery Immaculate Conception and last: Ana Tapardel -[2018-02-13T00:47:04.638] [INFO] cheese - inserting 1000 documents. first: File:SeeTheDaySample.ogg and last: Wikipedia:Articles for deletion/Bat For Lashes -[2018-02-13T00:47:04.659] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:47:04.670] [INFO] cheese - inserting 1000 documents. first: Thomas Means and last: Minka bird -[2018-02-13T00:47:04.728] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:47:04.757] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:47:04.845] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Bigotilia and last: Category:Politics of Havering -[2018-02-13T00:47:04.855] [INFO] cheese - inserting 1000 documents. first: Egyptian-Russian relations and last: Template:Insignia/doc -[2018-02-13T00:47:04.883] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:47:04.923] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:47:05.062] [INFO] cheese - inserting 1000 documents. first: Hudson - Oka Icebridge and last: Niq Mhlongo -[2018-02-13T00:47:05.146] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:47:05.187] [INFO] cheese - inserting 1000 documents. first: File:Red Chillies Poster.jpg and last: Category:2006 in netball -[2018-02-13T00:47:05.190] [INFO] cheese - inserting 1000 documents. first: The Best Bang and last: File:Logo eFront.jpg -[2018-02-13T00:47:05.248] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:47:05.299] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:47:05.324] [INFO] cheese - inserting 1000 documents. first: Cosmophyllum (insect genus) and last: 1982 European Athletics Indoor Championships – Women's 1500 metres -[2018-02-13T00:47:05.349] [INFO] cheese - inserting 1000 documents. first: List of states in the Holy Roman Empire (S) and last: Kamichetty Venugopala Rao Naidou -[2018-02-13T00:47:05.367] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:47:05.469] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:47:05.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Deletion sorting/Museums and libraries and last: Wikipedia:Version 1.0 Editorial Team/DC comics articles by quality/2 -[2018-02-13T00:47:05.797] [INFO] cheese - inserting 1000 documents. first: Nicholas Mhlongo and last: Godwin Ababaka -[2018-02-13T00:47:05.801] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:47:05.890] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:47:05.923] [INFO] cheese - inserting 1000 documents. first: Consumers Federation of Australia and last: Macy-Colby House -[2018-02-13T00:47:05.962] [INFO] cheese - inserting 1000 documents. first: Kizilsky Kozhuun and last: Anna Wilson (disambiguation) -[2018-02-13T00:47:05.987] [INFO] cheese - inserting 1000 documents. first: X.Org Developer's Conference and last: Lyzohub government -[2018-02-13T00:47:06.015] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:47:06.074] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:47:06.096] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:47:06.132] [INFO] cheese - inserting 1000 documents. first: Gustav Mahler Jugendorchester and last: High Street, Victoria, Australia -[2018-02-13T00:47:06.189] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:47:06.398] [INFO] cheese - inserting 1000 documents. first: Nanhui County and last: Template:Ross County F.C. -[2018-02-13T00:47:06.475] [INFO] cheese - inserting 1000 documents. first: 2005 D1 Grand Prix season and last: MasterChef (U.S. season 8) -[2018-02-13T00:47:06.480] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:47:06.513] [INFO] cheese - inserting 1000 documents. first: Mușata and last: Portal:Jazz/Selected picture/89 -[2018-02-13T00:47:06.556] [INFO] cheese - inserting 1000 documents. first: Alloway Township School District and last: Modereko -[2018-02-13T00:47:06.564] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:47:06.614] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:06.638] [INFO] cheese - inserting 1000 documents. first: Earlscourt, Toronto and last: Feis Maitiu Corcaigh -[2018-02-13T00:47:06.651] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:47:06.700] [INFO] cheese - inserting 1000 documents. first: Ted milton and last: Louisa Ann Swain -[2018-02-13T00:47:06.715] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:47:06.774] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:47:06.991] [INFO] cheese - inserting 1000 documents. first: Category:2013–14 in Latvian ice hockey and last: 40 Librae -[2018-02-13T00:47:07.040] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:07.116] [INFO] cheese - inserting 1000 documents. first: Virgin Broadband (UK) and last: Force (Superfly album) -[2018-02-13T00:47:07.125] [INFO] cheese - inserting 1000 documents. first: W. D. Mohammed High School and last: Falcon 9 Flight 8 upper stage -[2018-02-13T00:47:07.174] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:47:07.238] [INFO] cheese - inserting 1000 documents. first: Category:Lo Fidelity Allstars albums and last: Sokol'skii Raion -[2018-02-13T00:47:07.241] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:47:07.286] [INFO] cheese - inserting 1000 documents. first: File:Pitteurs.jpg and last: 2008 Lebanon Conflict -[2018-02-13T00:47:07.294] [INFO] cheese - inserting 1000 documents. first: NV 319 and last: Wikipedia:Articles for deletion/Lil Fate -[2018-02-13T00:47:07.305] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:07.383] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:47:07.391] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:47:07.507] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dilipa and last: Category:2004–05 in Bulgarian ice hockey -[2018-02-13T00:47:07.568] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:47:07.710] [INFO] cheese - inserting 1000 documents. first: Krähenberg, Bremen and last: Disney Infinity Marvel Super Heroes -[2018-02-13T00:47:07.769] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:47:07.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mgallop and last: Buffalo River (Groot River) -[2018-02-13T00:47:07.928] [INFO] cheese - inserting 1000 documents. first: Category:Keyboardists from Northern Ireland and last: Piy-Khemsky -[2018-02-13T00:47:07.965] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:47:08.004] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:08.077] [INFO] cheese - inserting 1000 documents. first: Category:7th Jatiyo Sangshad members and last: Stop-n-Go -[2018-02-13T00:47:08.085] [INFO] cheese - inserting 1000 documents. first: File:Rebelwithoutbookcover.jpg and last: Jupiter Science Academy -[2018-02-13T00:47:08.087] [INFO] cheese - inserting 1000 documents. first: EMT-I/85 and last: Academia das Ciências de Lisboa -[2018-02-13T00:47:08.133] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:47:08.146] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:47:08.169] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:47:08.242] [INFO] cheese - inserting 1000 documents. first: Altamura railway station and last: Dinosaurology -[2018-02-13T00:47:08.277] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:47:08.446] [INFO] cheese - inserting 1000 documents. first: Thomas Heurtel and last: Template:Did you know nominations/Mitsubishi Motors Corp. v. Soler Chrysler-Plymouth, Inc. -[2018-02-13T00:47:08.488] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:08.495] [INFO] cheese - inserting 1000 documents. first: Piy-Khemskiy and last: Template:Swiss populations/testcases -[2018-02-13T00:47:08.535] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:08.562] [INFO] cheese - inserting 1000 documents. first: Pan-tsu and last: Draft:OKICA -[2018-02-13T00:47:08.567] [INFO] cheese - inserting 1000 documents. first: Kamen Rider Black (manga) and last: File:Enlarged Silhouette.jpg -[2018-02-13T00:47:08.610] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:47:08.620] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:47:08.627] [INFO] cheese - inserting 1000 documents. first: Online Newspaper and last: Morrisville–Stowe State Airport -[2018-02-13T00:47:08.692] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:08.770] [INFO] cheese - inserting 1000 documents. first: Category:1977 in Vatican City and last: Category:People from Sol Plaatje Local Municipality -[2018-02-13T00:47:08.811] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:47:08.851] [INFO] cheese - inserting 1000 documents. first: Category:People of Monegasque descent and last: TOKYO GIRLS' STYLE -[2018-02-13T00:47:08.897] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wikinfo (6th nomination) and last: Category:Tunnels in Nevada -[2018-02-13T00:47:08.902] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:47:08.963] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:47:08.986] [INFO] cheese - inserting 1000 documents. first: Juan Diego Gutiérrez and last: Sequoyah state park -[2018-02-13T00:47:08.997] [INFO] cheese - inserting 1000 documents. first: File:Prime Minister P. V. Narasimha Rao with Subramanian Swamy 1991.jpg and last: Deareating feed tank -[2018-02-13T00:47:09.039] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:47:09.039] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:47:09.055] [INFO] cheese - inserting 1000 documents. first: MVL and last: Wikipedia:Articles for deletion/Run your boy -[2018-02-13T00:47:09.107] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:47:09.205] [INFO] cheese - inserting 1000 documents. first: Robert J Healey and last: Kent Crusaders -[2018-02-13T00:47:09.253] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:47:09.285] [INFO] cheese - inserting 1000 documents. first: File:Bukovyna 2009.png and last: X-51 (Machine Man) -[2018-02-13T00:47:09.331] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:47:09.509] [INFO] cheese - inserting 1000 documents. first: Half-bond and last: Y B Normal? -[2018-02-13T00:47:09.510] [INFO] cheese - inserting 1000 documents. first: Italians in Cuba and last: Kim Tairoa -[2018-02-13T00:47:09.523] [INFO] cheese - inserting 1000 documents. first: Backwater (film) and last: Category:Malaysian non-fiction literature -[2018-02-13T00:47:09.591] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:47:09.617] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:47:09.660] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:47:09.711] [INFO] cheese - inserting 1000 documents. first: Novelty (train) and last: Savoir Faire -[2018-02-13T00:47:09.766] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:47:09.840] [INFO] cheese - inserting 1000 documents. first: Techlink and last: Carbaca prognealis -[2018-02-13T00:47:09.923] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:47:10.022] [INFO] cheese - inserting 1000 documents. first: Pi (Kate Bush song) and last: Carlos André Jesus -[2018-02-13T00:47:10.054] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:47:10.123] [INFO] cheese - inserting 1000 documents. first: Seaway Trail Discovery Center and last: Creeping water bug -[2018-02-13T00:47:10.164] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:47:10.165] [INFO] cheese - inserting 1000 documents. first: Crown Lands Act 1623 and last: Habeshli -[2018-02-13T00:47:10.212] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:47:10.247] [INFO] cheese - inserting 1000 documents. first: Category:PowerPC Macintosh computers and last: Wikipedia:WikiProject Judaism/featured -[2018-02-13T00:47:10.295] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:47:10.347] [INFO] cheese - inserting 1000 documents. first: Satellite Award for Best DVD Extras and last: Category:Songs written by Rasmus Seebach -[2018-02-13T00:47:10.372] [INFO] cheese - inserting 1000 documents. first: Hafler circuit and last: The LEGO Movie Videogame -[2018-02-13T00:47:10.390] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:47:10.421] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:47:10.521] [INFO] cheese - inserting 1000 documents. first: Habishi and last: Template:Editnotices/Page/Rush (band) -[2018-02-13T00:47:10.539] [INFO] cheese - inserting 1000 documents. first: Latitude 49 degrees N and last: 3017 Petrovič -[2018-02-13T00:47:10.555] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:47:10.586] [INFO] cheese - inserting 1000 documents. first: File:Black N Blue Black N Blue.jpg and last: Canal des Vosges -[2018-02-13T00:47:10.589] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:47:10.653] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T00:47:10.705] [INFO] cheese - inserting 1000 documents. first: Medscape General Medicine and last: Template:Taxonomy/Nuphar sect. Nuphar -[2018-02-13T00:47:10.720] [INFO] cheese - inserting 1000 documents. first: File:Je crois toi promo.jpg and last: CA Rentistas -[2018-02-13T00:47:10.778] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:47:10.792] [INFO] cheese - inserting 1000 documents. first: Construction dumpster and last: Dave McComas -[2018-02-13T00:47:10.797] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:47:10.845] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:47:10.890] [INFO] cheese - inserting 1000 documents. first: Filomeno Mata Totonac and last: Category:1138 in art -[2018-02-13T00:47:10.931] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:10.985] [INFO] cheese - inserting 1000 documents. first: Template:Jackson County, Tennessee and last: The Minotaur (opera) -[2018-02-13T00:47:11.036] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:47:11.078] [INFO] cheese - inserting 1000 documents. first: Hélène Perret and last: VEXNEWS -[2018-02-13T00:47:11.136] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:47:11.163] [INFO] cheese - inserting 1000 documents. first: Abdoulaye Soumah and last: Buile Suibne -[2018-02-13T00:47:11.283] [INFO] cheese - inserting 1000 documents. first: Edson Cardoso and last: List of senators from Newfoundland and Labrador -[2018-02-13T00:47:11.295] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:47:11.331] [INFO] cheese - inserting 1000 documents. first: Squirrel River (Wisconsin) and last: Laxmanpur-a village of Vaishali -[2018-02-13T00:47:11.387] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:11.384] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:47:11.472] [INFO] cheese - inserting 1000 documents. first: Busenbach–Ittersbach railway and last: Golden Girls (disambiguation) -[2018-02-13T00:47:11.538] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:47:11.700] [INFO] cheese - inserting 1000 documents. first: File:Sitting king logo.png and last: Je serai (ta meilleure amie) -[2018-02-13T00:47:11.752] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:47:11.794] [INFO] cheese - inserting 1000 documents. first: Category:American multimedia artists and last: Marie-Louise Bévis -[2018-02-13T00:47:11.855] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:47:11.895] [INFO] cheese - inserting 1000 documents. first: Sir Arthur Cotton and last: Spirit Mountain (ski area) -[2018-02-13T00:47:11.930] [INFO] cheese - inserting 1000 documents. first: List of senators from Nova Scotia and last: Mark Kachanov -[2018-02-13T00:47:11.978] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:47:11.985] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:47:11.997] [INFO] cheese - inserting 1000 documents. first: Adelpherupa terreus and last: Aude (writer) -[2018-02-13T00:47:12.027] [INFO] cheese - inserting 1000 documents. first: Category:Boston Cannons players and last: Empresa Interbancária de Serviços -[2018-02-13T00:47:12.073] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:47:12.133] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:47:12.230] [INFO] cheese - inserting 1000 documents. first: Øyeflaten Station and last: Category:1867 in Asia -[2018-02-13T00:47:12.314] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:47:12.442] [INFO] cheese - inserting 1000 documents. first: Marie Louise Bevis and last: Rodney Alcala -[2018-02-13T00:47:12.490] [INFO] cheese - inserting 1000 documents. first: Piran Bishop and last: Yunker -[2018-02-13T00:47:12.493] [INFO] cheese - inserting 1000 documents. first: Alexa & Katie and last: Category:BWF ID different from Wikidata -[2018-02-13T00:47:12.507] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:47:12.521] [INFO] cheese - inserting 1000 documents. first: Operating structure and last: Shashank R. Joshi -[2018-02-13T00:47:12.565] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:12.570] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:47:12.590] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:12.704] [INFO] cheese - inserting 1000 documents. first: Category:2006 FIFA World Cup qualification (CAF) and last: Glam Slam West -[2018-02-13T00:47:12.805] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:47:12.859] [INFO] cheese - inserting 1000 documents. first: 13816 Stülpner and last: Ken Jones (disambiguation) -[2018-02-13T00:47:12.912] [INFO] cheese - inserting 1000 documents. first: Austrosticta fieldi and last: Fshati turistik DARDHË -[2018-02-13T00:47:12.930] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:47:12.952] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:47:13.033] [INFO] cheese - inserting 1000 documents. first: Dovercourt Village and last: List of films based on war books — peace -[2018-02-13T00:47:13.113] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:47:13.131] [INFO] cheese - inserting 1000 documents. first: Farmingdale Observer and last: Mother-in-law's Cushion -[2018-02-13T00:47:13.196] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Battle of Crazy Woman's Fork and last: Wikipedia:Articles for deletion/Skywind -[2018-02-13T00:47:13.208] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:47:13.270] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:47:13.341] [INFO] cheese - inserting 1000 documents. first: Lê Trung Tông (Early Lê) and last: Category:2002–03 in American college basketball -[2018-02-13T00:47:13.370] [INFO] cheese - inserting 1000 documents. first: Template:Planetmath instructions and last: Aubanel Wind Project -[2018-02-13T00:47:13.380] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:47:13.429] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:47:13.537] [INFO] cheese - inserting 1000 documents. first: Salim bin Thuwaini and last: Illinois River Valley -[2018-02-13T00:47:13.605] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:47:13.679] [INFO] cheese - inserting 1000 documents. first: File:Billy Joe Shaver - Long in the Tooth.jpg and last: Portal:San Diego County/Selected pictures/16 -[2018-02-13T00:47:13.718] [INFO] cheese - inserting 1000 documents. first: Popess Joan and last: Category:WikiProject Cuba members -[2018-02-13T00:47:13.735] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lookatmyfire.com and last: Category:Seychellois diaspora -[2018-02-13T00:47:13.738] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:47:13.781] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:47:13.805] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:47:13.896] [INFO] cheese - inserting 1000 documents. first: 1928 Pacific Tigers football team and last: Category:People from Barguna district -[2018-02-13T00:47:13.957] [INFO] cheese - inserting 1000 documents. first: Triga (chariot) and last: Uintah Meridian -[2018-02-13T00:47:13.959] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:47:14.012] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:47:14.039] [INFO] cheese - inserting 1000 documents. first: Minnesota River Valley and last: Barazin -[2018-02-13T00:47:14.108] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:47:14.142] [INFO] cheese - inserting 1000 documents. first: Portal:San Diego County/Selected pictures/17 and last: 1948 Orszagos Bajnoksag I (men's water polo) -[2018-02-13T00:47:14.205] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:47:14.218] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions in East Timor and last: Wikipedia:Articles for deletion/When Brummies Met Sindhis -[2018-02-13T00:47:14.284] [INFO] cheese - inserting 1000 documents. first: Christopher Wilcock and last: Alex Flinn -[2018-02-13T00:47:14.294] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:47:14.339] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:47:14.404] [INFO] cheese - inserting 1000 documents. first: 1948 Taca de Portugal Final and last: 2012 Internazionali Tennis Val Gardena Sudtirol – Singles -[2018-02-13T00:47:14.418] [INFO] cheese - inserting 1000 documents. first: Ryobi Holdings and last: FC Vermoim -[2018-02-13T00:47:14.428] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:47:14.460] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:47:14.463] [INFO] cheese - inserting 1000 documents. first: Template:Largest cities of Somalia and last: Category:Pentathlon navigational boxes -[2018-02-13T00:47:14.488] [INFO] cheese - inserting 1000 documents. first: Sequential exit numbering and last: County Route J132 (Tuolumne County, California) -[2018-02-13T00:47:14.512] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:47:14.542] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:47:14.663] [INFO] cheese - inserting 1000 documents. first: 2012 Kosice Open and last: File:SocialMarketFoundationLogoOfficial.jpg -[2018-02-13T00:47:14.719] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:47:14.802] [INFO] cheese - inserting 1000 documents. first: Template:Central Pulse and last: Category:People from Zubří -[2018-02-13T00:47:14.858] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:47:15.015] [INFO] cheese - inserting 1000 documents. first: Draft:Michael Reisch and last: Category:Lists of road transport incidents -[2018-02-13T00:47:15.024] [INFO] cheese - inserting 1000 documents. first: 5 (Alizee album) and last: Alberto Perez (musician) -[2018-02-13T00:47:15.042] [INFO] cheese - inserting 1000 documents. first: Pietro Vitalini and last: Ivan Parke -[2018-02-13T00:47:15.092] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:47:15.102] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:47:15.119] [INFO] cheese - inserting 1000 documents. first: County Route J132 (Mariposa County, California) and last: 2 P -[2018-02-13T00:47:15.142] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:47:15.195] [INFO] cheese - inserting 1000 documents. first: Naviamente and last: 1899 Georgia Bulldogs football team -[2018-02-13T00:47:15.234] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:47:15.337] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:47:15.359] [INFO] cheese - inserting 1000 documents. first: Draft:Jusufi and last: Andre Zimmermann -[2018-02-13T00:47:15.427] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:47:15.520] [INFO] cheese - inserting 1000 documents. first: Sidi Slimane Airport and last: Qin Shi Huang's wars of unification -[2018-02-13T00:47:15.608] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:47:15.720] [INFO] cheese - inserting 1000 documents. first: Andre baronets and last: Virginia State Route 4A (1935-1937) -[2018-02-13T00:47:15.755] [INFO] cheese - inserting 1000 documents. first: Adrien Duvillard (alpine skier born 1969) and last: Walt (Hollyoaks) -[2018-02-13T00:47:15.762] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:47:15.787] [INFO] cheese - inserting 1000 documents. first: Paul tergat and last: Apostolic Prefecture of Calabar -[2018-02-13T00:47:15.818] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:47:15.834] [INFO] cheese - inserting 1000 documents. first: File:Map of Horsham Township, Montgomery County, Pennsylvania Highlighted.gif and last: Alison Bishop -[2018-02-13T00:47:15.838] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:47:15.904] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:47:15.963] [INFO] cheese - inserting 1000 documents. first: Atalar, Savsat and last: Category:2000 disestablishments in Massachusetts -[2018-02-13T00:47:15.988] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:47:15.992] [INFO] cheese - inserting 1000 documents. first: Manchester Exchange and last: Cadaver Trial -[2018-02-13T00:47:16.055] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:47:16.091] [INFO] cheese - inserting 1000 documents. first: Leland v. Oregon and last: Category:Tourism in the Western Cape -[2018-02-13T00:47:16.134] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:47:16.147] [INFO] cheese - inserting 1000 documents. first: Category:V8 Supercar and last: 2017 in Kenyan football -[2018-02-13T00:47:16.183] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:47:16.208] [INFO] cheese - inserting 1000 documents. first: Alison Lurie (Bishop) and last: Ensiform cartilage -[2018-02-13T00:47:16.239] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:47:16.303] [INFO] cheese - inserting 1000 documents. first: Battle of Parkumaki and last: Andrew Cole (musician) -[2018-02-13T00:47:16.330] [INFO] cheese - inserting 1000 documents. first: Auditory moving-window and last: Green Chri$tma$ -[2018-02-13T00:47:16.340] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:47:16.393] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:16.481] [INFO] cheese - inserting 1000 documents. first: Pratt's Falls Park and last: Draft:James Bautista -[2018-02-13T00:47:16.495] [INFO] cheese - inserting 1000 documents. first: Chortodes elymi and last: Wikipedia:Puffery -[2018-02-13T00:47:16.502] [INFO] cheese - inserting 1000 documents. first: Wild West shows and last: Wikipedia:Articles for deletion/Scott Sherman -[2018-02-13T00:47:16.519] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:47:16.552] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:47:16.556] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:47:16.602] [INFO] cheese - inserting 1000 documents. first: BCS Professional Examinations and last: Wikipedia:Articles for deletion/Scot24news -[2018-02-13T00:47:16.633] [INFO] cheese - inserting 1000 documents. first: Torre River, Portugal and last: Burhanettin Bigali -[2018-02-13T00:47:16.650] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:47:16.666] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:47:16.726] [INFO] cheese - inserting 1000 documents. first: Uyghur New script and last: Hat Trick -[2018-02-13T00:47:16.775] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:47:16.814] [INFO] cheese - inserting 1000 documents. first: Estadio Municipal de Santo Domingo (Alcorcón) and last: Mira, Lawrence -[2018-02-13T00:47:16.853] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:47:16.892] [INFO] cheese - inserting 1000 documents. first: Shivaji Engineering College, Akola and last: Goyü -[2018-02-13T00:47:16.951] [INFO] cheese - inserting 1000 documents. first: Burhaniye, Vezirkopru and last: Cecilio Dominguez -[2018-02-13T00:47:16.965] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:47:16.988] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:47:17.019] [INFO] cheese - inserting 1000 documents. first: Elza Gazuyeva and last: Wikipedia:Version 1.0 Editorial Team/Philosophers articles by quality -[2018-02-13T00:47:17.090] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:47:17.160] [INFO] cheese - inserting 1000 documents. first: Haroriya and last: Miss USA 1984 -[2018-02-13T00:47:17.214] [INFO] cheese - inserting 1000 documents. first: Template:User Pune Warriors India 1 and last: Frédéric Covili -[2018-02-13T00:47:17.227] [INFO] cheese - inserting 1000 documents. first: Cecilio Guzman de Rojas and last: Wikipedia:Meetup/UK/Sheffield 1 -[2018-02-13T00:47:17.267] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:47:17.285] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:47:17.289] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:47:17.342] [INFO] cheese - inserting 1000 documents. first: Lagenochitina dalbyensis and last: File:WWNT ACTIVA1380 logo.png -[2018-02-13T00:47:17.383] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:47:17.567] [INFO] cheese - inserting 1000 documents. first: Andres Chitiva and last: Market Street Tunnel (San Francisco) -[2018-02-13T00:47:17.569] [INFO] cheese - inserting 1000 documents. first: College Louise-Michel in Paris and last: Box wagon -[2018-02-13T00:47:17.626] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:47:17.656] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:47:17.716] [INFO] cheese - inserting 1000 documents. first: Phoenix Star and last: Hiroshi Fukushima -[2018-02-13T00:47:17.757] [INFO] cheese - inserting 1000 documents. first: Tatsuguchi and last: Galeopsis speciosa -[2018-02-13T00:47:17.768] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:47:17.842] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:47:17.846] [INFO] cheese - inserting 1000 documents. first: James Hutchison Cockburn and last: Munster pilchard fishery 1570-1750 -[2018-02-13T00:47:17.905] [INFO] cheese - inserting 1000 documents. first: Heliophanus proszynskii and last: Marc Barta -[2018-02-13T00:47:17.906] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:47:17.909] [INFO] cheese - inserting 1000 documents. first: Danisment, Yenipazar and last: Erik De Boer -[2018-02-13T00:47:17.970] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:47:17.985] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:47:18.202] [INFO] cheese - inserting 1000 documents. first: Donato Alvarez and last: Electrodomesticos -[2018-02-13T00:47:18.216] [INFO] cheese - inserting 1000 documents. first: Maryland State Highway 611 and last: Guanella Pass Scenic Byway -[2018-02-13T00:47:18.222] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:47:18.232] [INFO] cheese - inserting 1000 documents. first: File:Cavalryatbalaklava2.jpg and last: W209AG -[2018-02-13T00:47:18.265] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:47:18.284] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:47:18.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/silverspringpenguin.com and last: Portal:American football/Selected picture/2008 21 -[2018-02-13T00:47:18.335] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:47:18.336] [INFO] cheese - inserting 1000 documents. first: Albert Anae and last: Queen Street bus station, Brisbane -[2018-02-13T00:47:18.357] [INFO] cheese - inserting 1000 documents. first: Category:Macedonian people of Finnish descent and last: Society of the Four Arts Gardens -[2018-02-13T00:47:18.378] [INFO] cheese - inserting 1000 documents. first: Electronic Cafe International and last: Fabian Bosch -[2018-02-13T00:47:18.384] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:47:18.398] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:47:18.402] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:47:18.563] [INFO] cheese - inserting 1000 documents. first: April 1st Vidudala and last: Frantisek Adam Mica -[2018-02-13T00:47:18.585] [INFO] cheese - batch complete in: 0.183 secs -[2018-02-13T00:47:18.621] [INFO] cheese - inserting 1000 documents. first: W230BD and last: Badulla Electoral District -[2018-02-13T00:47:18.661] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:18.669] [INFO] cheese - inserting 1000 documents. first: US Park Police and last: Wikipedia:Articles for deletion/Crack cocaine and hip hop -[2018-02-13T00:47:18.672] [INFO] cheese - inserting 1000 documents. first: Smiths Creek, Kentucky and last: Category:Arabic drinks -[2018-02-13T00:47:18.695] [INFO] cheese - inserting 1000 documents. first: Prachi Mishra and last: Ulinzi Stars F.C. -[2018-02-13T00:47:18.709] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:47:18.731] [INFO] cheese - inserting 1000 documents. first: Firebug and last: 55th (West Lancashire) Infantry Division (United Kingdom) -[2018-02-13T00:47:18.736] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:47:18.738] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:47:18.788] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:18.812] [INFO] cheese - inserting 1000 documents. first: Yellow-throated wood-warbler and last: Tahina Palm -[2018-02-13T00:47:18.843] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:47:18.965] [INFO] cheese - inserting 1000 documents. first: George Khevenhuller and last: Gerard Rudolf -[2018-02-13T00:47:18.983] [INFO] cheese - batch complete in: 0.14 secs -[2018-02-13T00:47:19.019] [INFO] cheese - inserting 1000 documents. first: 71st Infantry Division (Russian Empire) and last: Category:Holy Roman Empire–Portugal relations -[2018-02-13T00:47:19.058] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:47:19.070] [INFO] cheese - inserting 1000 documents. first: The Loved One (song) and last: Category:Renaissance Papacy -[2018-02-13T00:47:19.083] [INFO] cheese - inserting 1000 documents. first: Front projector and last: Münchringen (Berne) -[2018-02-13T00:47:19.117] [INFO] cheese - inserting 1000 documents. first: 48th (South Midland) Infantry Division (United Kingdom) and last: William G. Congdon -[2018-02-13T00:47:19.123] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:47:19.128] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:47:19.150] [INFO] cheese - inserting 1000 documents. first: Gerard Theberge and last: Henrik Jorgen Huitfeldt-Kaas -[2018-02-13T00:47:19.154] [INFO] cheese - inserting 1000 documents. first: Ulinzi Stars FC and last: COOL Award Winners -[2018-02-13T00:47:19.164] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:19.187] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:47:19.281] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:47:19.389] [INFO] cheese - inserting 1000 documents. first: Münsingen (Berne) and last: Vuadens (Fribourg) -[2018-02-13T00:47:19.453] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:47:19.500] [INFO] cheese - inserting 1000 documents. first: Henrik Jorgen Schibsted Huitfeldt and last: Category:Women's volleyball teams -[2018-02-13T00:47:19.524] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:47:19.666] [INFO] cheese - inserting 1000 documents. first: 2002 Catalunyan motorcycle Grand Prix and last: International Society of Limnology -[2018-02-13T00:47:19.675] [INFO] cheese - inserting 1000 documents. first: Rosebudd's Revenge and last: Zambezi Yellow-bellied Greenbul -[2018-02-13T00:47:19.677] [INFO] cheese - inserting 1000 documents. first: Vuarmarens (Fribourg) and last: Marthalen (Zurich) -[2018-02-13T00:47:19.680] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Comanche County, Kansas and last: Wikipedia:Sockpuppet investigations/Hfiiz deshi MC -[2018-02-13T00:47:19.697] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:47:19.731] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:47:19.736] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:47:19.737] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:47:19.792] [INFO] cheese - inserting 1000 documents. first: Mount Saint Joseph and last: List of military diving units -[2018-02-13T00:47:19.877] [INFO] cheese - inserting 1000 documents. first: Category:Women's volleyball teams in Serbia and last: A l'ami qui ne m'a pas sauve la vie -[2018-02-13T00:47:19.894] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:47:19.898] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:47:20.013] [INFO] cheese - inserting 1000 documents. first: Maschwanden (Zurich) and last: Liestal (Basel-Land) -[2018-02-13T00:47:20.044] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:47:20.268] [INFO] cheese - inserting 1000 documents. first: A l'ombre and last: Ciflik, Demir Kapija -[2018-02-13T00:47:20.287] [INFO] cheese - inserting 1000 documents. first: Small leaf beaufortia and last: I've Got a Feeling (New Order song) -[2018-02-13T00:47:20.288] [INFO] cheese - inserting 1000 documents. first: The Fire in Your Eyes and last: WRES -[2018-02-13T00:47:20.301] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:47:20.344] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:47:20.353] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:20.365] [INFO] cheese - inserting 1000 documents. first: Alexander Kotzebue and last: Christian Howes (musician) -[2018-02-13T00:47:20.362] [INFO] cheese - inserting 1000 documents. first: Category:Art museums established in 1831 and last: Lebiazhyevskii Raion -[2018-02-13T00:47:20.435] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:47:20.453] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:47:20.616] [INFO] cheese - inserting 1000 documents. first: Lupsingen (Basel-Land) and last: Lynn Road -[2018-02-13T00:47:20.622] [INFO] cheese - inserting 1000 documents. first: Lawrence M. Rulison and last: New Britain kingfisher -[2018-02-13T00:47:20.649] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:47:20.661] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:20.790] [INFO] cheese - inserting 1000 documents. first: List of wealthiest people in Kenya and last: International Breweries Plc -[2018-02-13T00:47:20.797] [INFO] cheese - inserting 1000 documents. first: Band of the Irish Guards and last: C. Randy Taylor -[2018-02-13T00:47:20.803] [INFO] cheese - inserting 1000 documents. first: Lebiazh'yevsky Raion and last: Owlia -[2018-02-13T00:47:20.822] [INFO] cheese - inserting 1000 documents. first: Janos Jeszenak and last: John Narvaez -[2018-02-13T00:47:20.830] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:20.841] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:47:20.845] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:47:20.876] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:47:20.899] [INFO] cheese - inserting 1000 documents. first: Public sector debt and last: Grimes House -[2018-02-13T00:47:20.946] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:47:21.082] [INFO] cheese - inserting 1000 documents. first: Complainte pour Ste. Cathérine and last: Jose Torres Laboy -[2018-02-13T00:47:21.105] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:47:21.107] [INFO] cheese - inserting 1000 documents. first: Loss-DiVincenzo and last: Jay Bakker -[2018-02-13T00:47:21.145] [INFO] cheese - inserting 1000 documents. first: Ψ Pegasi and last: Template:POTD/2017-04-26 -[2018-02-13T00:47:21.178] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:21.200] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:47:21.292] [INFO] cheese - inserting 1000 documents. first: Serafino Cavalli and last: 2012 CIS football season -[2018-02-13T00:47:21.314] [INFO] cheese - inserting 1000 documents. first: George E. Edwards and last: Shoe-shining -[2018-02-13T00:47:21.393] [INFO] cheese - inserting 1000 documents. first: Jose Torres Ramirez and last: Kan man alska na'n pa avstand -[2018-02-13T00:47:21.416] [INFO] cheese - inserting 1000 documents. first: Opokuma and last: Agrostis tenuis var. pumila -[2018-02-13T00:47:21.419] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:47:21.403] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:47:21.503] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:47:21.546] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:47:21.868] [INFO] cheese - inserting 1000 documents. first: List of Major League Baseball career putouts as a right fielder leaders and last: Griseargiolestes intermedius -[2018-02-13T00:47:21.921] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Edgar Quinet-class cruiser and last: Klaus Kaergard -[2018-02-13T00:47:21.973] [INFO] cheese - inserting 1000 documents. first: Racial quotas and last: 52872 Okyrhoe -[2018-02-13T00:47:21.998] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:47:21.997] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:47:22.140] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:47:22.363] [INFO] cheese - inserting 1000 documents. first: File:Lightsleeperfilm.jpg and last: 2009–10 UEFA Europa League knockout stage -[2018-02-13T00:47:22.408] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese-language operas and last: Category:Sudanese prisoners and detainees -[2018-02-13T00:47:22.416] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:47:22.469] [INFO] cheese - inserting 1000 documents. first: Klaus Zahringer and last: Laby Church -[2018-02-13T00:47:22.518] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:47:22.594] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T00:47:22.633] [INFO] cheese - inserting 1000 documents. first: Template:2012 OUA football standings and last: Phemeranthus rugospermus -[2018-02-13T00:47:22.740] [INFO] cheese - inserting 1000 documents. first: 14 Days to Life and last: Wikipedia:Featured picture candidates/Train on the Bernina line, Switzerland -[2018-02-13T00:47:22.785] [INFO] cheese - batch complete in: 1.382 secs -[2018-02-13T00:47:22.794] [INFO] cheese - inserting 1000 documents. first: Vincent Gigs and last: International Institute for Environment and Development -[2018-02-13T00:47:22.813] [INFO] cheese - inserting 1000 documents. first: Labyrinth (Miro, Joan) and last: Wikipedia:Today's articles for improvement/2014/42 -[2018-02-13T00:47:22.833] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:47:22.862] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:47:22.903] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:47:23.033] [INFO] cheese - inserting 1000 documents. first: List of Lulea HF seasons and last: Lyden na -[2018-02-13T00:47:23.073] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:47:23.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/betheboss.ca and last: Template:Cite German law/core -[2018-02-13T00:47:23.157] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:47:23.168] [INFO] cheese - inserting 1000 documents. first: Jenny Robinson and last: Template:Fb team Bidco United -[2018-02-13T00:47:23.176] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2008 May 18 and last: Raffaele Fitto -[2018-02-13T00:47:23.222] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:47:23.258] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:47:23.269] [INFO] cheese - inserting 1000 documents. first: 2017–18 Tampa Bay Lightning season and last: File:Long-Strange-Trip-soundtrack-album.jpg -[2018-02-13T00:47:23.288] [INFO] cheese - inserting 1000 documents. first: Lydia Ludic Burundi Academic FC and last: Mario Bonic -[2018-02-13T00:47:23.319] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:47:23.332] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:47:23.357] [INFO] cheese - inserting 1000 documents. first: Tom stephens and last: Karl Fredrich Bonhoeffer -[2018-02-13T00:47:23.409] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:47:23.537] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Anniversaries/April/April 1 and last: Bobber (fishing) -[2018-02-13T00:47:23.583] [INFO] cheese - inserting 1000 documents. first: Mario Brandao da Silveira and last: Category:People from Hauppauge, New York -[2018-02-13T00:47:23.589] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:23.637] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:47:23.681] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Coast United and last: Ahmadabad-e Kashani -[2018-02-13T00:47:23.708] [INFO] cheese - inserting 1000 documents. first: Ceza of Swaziland and last: Edgar Magnin -[2018-02-13T00:47:23.736] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:47:23.747] [INFO] cheese - inserting 1000 documents. first: 2007 Ukrainian Super Cup and last: A Tribute To Mario Lanza -[2018-02-13T00:47:23.767] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:47:23.789] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:47:23.857] [INFO] cheese - inserting 1000 documents. first: Professor Mark Cleary and last: Portal:World War I/Selected biography/4 -[2018-02-13T00:47:23.872] [INFO] cheese - inserting 1000 documents. first: Mieczyslaw Gocul and last: Sri Lankan provincial council election, September 2014 -[2018-02-13T00:47:23.901] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:47:23.917] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:24.102] [INFO] cheese - inserting 1000 documents. first: Rumonge and last: File:Scarsmirrodin expsym.svg -[2018-02-13T00:47:24.129] [INFO] cheese - inserting 1000 documents. first: File:Durdle Door Overview.jpg and last: FV4201 Chieftain -[2018-02-13T00:47:24.141] [INFO] cheese - inserting 1000 documents. first: George Frederic Stewart Bowles and last: Mary Towne Burt -[2018-02-13T00:47:24.179] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:47:24.187] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:24.220] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:47:24.234] [INFO] cheese - inserting 1000 documents. first: Nunapitchuk Airport and last: Category:1970s ballads -[2018-02-13T00:47:24.244] [INFO] cheese - inserting 1000 documents. first: Municipality of Sezana and last: Nikola Sakic -[2018-02-13T00:47:24.264] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:47:24.279] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:47:24.414] [INFO] cheese - inserting 1000 documents. first: Nikola Saric (footballer) and last: File:BBC Four HD Logo.svg -[2018-02-13T00:47:24.425] [INFO] cheese - inserting 1000 documents. first: File:Botanikuri.JPG and last: We've Always Been At War With Eurasia -[2018-02-13T00:47:24.432] [INFO] cheese - batch complete in: 0.168 secs -[2018-02-13T00:47:24.477] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:47:24.504] [INFO] cheese - inserting 1000 documents. first: Sharon Springs Historic District and last: Wikipedia:Articles for deletion/Mesame Dasi -[2018-02-13T00:47:24.510] [INFO] cheese - inserting 1000 documents. first: Debabarrena-Kirolgi and last: Fulvestrant-3-boronoate -[2018-02-13T00:47:24.519] [INFO] cheese - inserting 1000 documents. first: Chaos Code and last: Saint-François-Ouest -[2018-02-13T00:47:24.540] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:47:24.545] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:47:24.551] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:47:24.591] [INFO] cheese - inserting 1000 documents. first: Oriol de Bolos and last: Pedro Cintron Rodriguez -[2018-02-13T00:47:24.607] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:47:24.646] [INFO] cheese - inserting 1000 documents. first: Trois nouvelles études and last: E-SIGN Act -[2018-02-13T00:47:24.694] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:47:24.734] [INFO] cheese - inserting 1000 documents. first: Pedro Colon Osorio and last: Promec Television -[2018-02-13T00:47:24.752] [INFO] cheese - batch complete in: 0.145 secs -[2018-02-13T00:47:24.781] [INFO] cheese - inserting 1000 documents. first: Kim Voss and last: André Leon Talley -[2018-02-13T00:47:24.792] [INFO] cheese - inserting 1000 documents. first: Fulvestrant-3 boronoate and last: Lachnia parallela -[2018-02-13T00:47:24.824] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:47:24.824] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:47:24.856] [INFO] cheese - inserting 1000 documents. first: Jacques Dupre House and last: Category:Ivorian expatriates in Greece -[2018-02-13T00:47:24.863] [INFO] cheese - inserting 1000 documents. first: Ontario Highway 95 and last: Wikipedia:Peer review/Jessica Mauboy discography/archive1 -[2018-02-13T00:47:24.899] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:47:24.903] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:47:24.967] [INFO] cheese - inserting 1000 documents. first: Pronto... c'e una certa Giuliana per te and last: Repoyane -[2018-02-13T00:47:25.013] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:47:25.115] [INFO] cheese - inserting 1000 documents. first: Washington Beltrán Barbat and last: Amikam -[2018-02-13T00:47:25.123] [INFO] cheese - inserting 1000 documents. first: Lamia aedificator and last: Sotalia borneensis -[2018-02-13T00:47:25.208] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:47:25.218] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:47:25.310] [INFO] cheese - inserting 1000 documents. first: Wall-column and last: 2010–11 NBL season -[2018-02-13T00:47:25.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Butterfly Body Liners and last: Rusmin Dedic -[2018-02-13T00:47:25.330] [INFO] cheese - inserting 1000 documents. first: File:What if it Works.jpg and last: State Route 56 Spur (Georgia) -[2018-02-13T00:47:25.373] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:47:25.406] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:47:25.446] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:47:25.486] [INFO] cheese - inserting 1000 documents. first: Maguire, Samuel and last: Louisa Mary Bacon -[2018-02-13T00:47:25.566] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:47:25.650] [INFO] cheese - inserting 1000 documents. first: Sotalia chinensis and last: Template:Roman Catholic Diocese of Ponce -[2018-02-13T00:47:25.694] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:47:25.710] [INFO] cheese - inserting 1000 documents. first: Pro Wrestling Alliance Australia and last: Savo Kovacevic -[2018-02-13T00:47:25.763] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:47:25.768] [INFO] cheese - inserting 1000 documents. first: Estonian car number plates and last: Rudolf Raimann -[2018-02-13T00:47:25.815] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:25.974] [INFO] cheese - inserting 1000 documents. first: Drinks can and last: Alexandra the Great -[2018-02-13T00:47:25.991] [INFO] cheese - inserting 1000 documents. first: Savo Zlatic and last: Skarbovik Church -[2018-02-13T00:47:26.012] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:47:26.018] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:47:26.041] [INFO] cheese - inserting 1000 documents. first: Georgia Highway 56 Spur and last: File:Phalacrocorax auritusZZ.jpg -[2018-02-13T00:47:26.096] [INFO] cheese - inserting 1000 documents. first: Norwich Festival and last: Andrei Shreiner -[2018-02-13T00:47:26.109] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:47:26.161] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:47:26.178] [INFO] cheese - inserting 1000 documents. first: Rose City Riveters and last: Draft:Blackshot player since 2006. -[2018-02-13T00:47:26.225] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:26.256] [INFO] cheese - inserting 1000 documents. first: Skarbovik IF and last: Stig Ostling -[2018-02-13T00:47:26.267] [INFO] cheese - inserting 1000 documents. first: HMS Mary Galley and last: Airbase -[2018-02-13T00:47:26.274] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:47:26.339] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:47:26.439] [INFO] cheese - inserting 1000 documents. first: Autumn Frost and last: Shadow Tower Abyss -[2018-02-13T00:47:26.481] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:47:26.524] [INFO] cheese - inserting 1000 documents. first: Hydrocampa randalis and last: Teatro Joao Caetano -[2018-02-13T00:47:26.557] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:47:26.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/VillegasD2002/Archive and last: Naehyuck Chang -[2018-02-13T00:47:26.621] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:26.641] [INFO] cheese - inserting 1000 documents. first: Gasanda and last: HUNTRESS (band) -[2018-02-13T00:47:26.701] [INFO] cheese - inserting 1000 documents. first: Kubanychbek Jumaliev and last: Steven Carroll -[2018-02-13T00:47:26.710] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:47:26.762] [INFO] cheese - inserting 1000 documents. first: Teatro Pavon and last: Alisa Kozhikina -[2018-02-13T00:47:26.772] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:47:26.784] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:47:26.884] [INFO] cheese - inserting 1000 documents. first: Gospel Harmony and last: Toni Gilhooley -[2018-02-13T00:47:26.958] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:47:27.027] [INFO] cheese - inserting 1000 documents. first: Thearubigins and last: Birthday Card Stakes -[2018-02-13T00:47:27.039] [INFO] cheese - inserting 1000 documents. first: 2013-14 FA Trophy and last: Vange Church, Uppland -[2018-02-13T00:47:27.055] [INFO] cheese - inserting 1000 documents. first: Category:Street of the Prophets, Jerusalem and last: Wikipedia:Articles for deletion/Talk:Kiran Dabhi -[2018-02-13T00:47:27.071] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:47:27.119] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:47:27.120] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:47:27.246] [INFO] cheese - inserting 1000 documents. first: Tirfi Tsegaye and last: Template:S-line/Nizhny Novgorod Metro left/Avtozavodskaya line -[2018-02-13T00:47:27.314] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:47:27.368] [INFO] cheese - inserting 1000 documents. first: Vanina Sanchez and last: Wakatenryu Yuzo -[2018-02-13T00:47:27.402] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:47:27.432] [INFO] cheese - inserting 1000 documents. first: Zhigulevsk and last: František Ladislav Čelakovský -[2018-02-13T00:47:27.504] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:47:27.604] [INFO] cheese - inserting 1000 documents. first: Numbered Account and last: Category:Lithuania at the European Championships in Athletics -[2018-02-13T00:47:27.656] [INFO] cheese - inserting 1000 documents. first: Draft:List of churches on the Isle of Man and last: Minimum Interval Takeoff -[2018-02-13T00:47:27.662] [INFO] cheese - inserting 1000 documents. first: Waldbuhne (disambiguation) and last: Yucatan moist forests -[2018-02-13T00:47:27.678] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:47:27.682] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:47:27.697] [INFO] cheese - inserting 1000 documents. first: Simon The Sorcerer's Puzzle Pack and last: 1975–76 Cypriot First Division -[2018-02-13T00:47:27.766] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:27.879] [INFO] cheese - inserting 1000 documents. first: Gustav Oehrli and last: Edward James Milford -[2018-02-13T00:47:27.889] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:47:27.927] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:28.090] [INFO] cheese - inserting 1000 documents. first: Category:Conakry and last: Peter Weir (footballer) -[2018-02-13T00:47:28.142] [INFO] cheese - inserting 1000 documents. first: Yucatan mushroomtongue salamander and last: Template:2008 NSW Cup Team of the Year -[2018-02-13T00:47:28.157] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:47:28.184] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:47:28.253] [INFO] cheese - inserting 1000 documents. first: CATMAN and last: File:Lancashirewolverineslogo.jpg -[2018-02-13T00:47:28.308] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:47:28.328] [INFO] cheese - inserting 1000 documents. first: St Pancras (disambiguation) and last: List of Test cricket centuries at The WACA Ground -[2018-02-13T00:47:28.381] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:47:28.394] [INFO] cheese - inserting 1000 documents. first: Category:Black English comedians and last: SS Fort Athabaska -[2018-02-13T00:47:28.464] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:47:28.556] [INFO] cheese - inserting 1000 documents. first: Template:2009 NYC Team of the Year and last: Perbromobenzene -[2018-02-13T00:47:28.603] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:47:28.643] [INFO] cheese - inserting 1000 documents. first: Forgotten Memories and last: Danny Murphy (second baseman) -[2018-02-13T00:47:28.689] [INFO] cheese - inserting 1000 documents. first: Category:Politicians from Enid, Oklahoma and last: IU Natatorium -[2018-02-13T00:47:28.693] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:47:28.740] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:28.775] [INFO] cheese - inserting 1000 documents. first: 1976–77 Cypriot First Division and last: Streptomyces venezuelae -[2018-02-13T00:47:28.851] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:47:28.879] [INFO] cheese - inserting 1000 documents. first: Futurenow and last: Dickenson County Healthcare System -[2018-02-13T00:47:28.932] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:47:28.952] [INFO] cheese - inserting 1000 documents. first: Margaret Alford and last: Category:2015 in New Zealand motorsport -[2018-02-13T00:47:28.975] [INFO] cheese - inserting 1000 documents. first: Tempus clausum and last: Live at Roadburn 2008 (Year of No Light album) -[2018-02-13T00:47:28.995] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:47:29.060] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:47:29.151] [INFO] cheese - inserting 1000 documents. first: Huzam Nabaah and last: Theodore B. Werner -[2018-02-13T00:47:29.169] [INFO] cheese - inserting 1000 documents. first: F. E. Kuhn and last: D. 882 -[2018-02-13T00:47:29.270] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:29.320] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:29.422] [INFO] cheese - inserting 1000 documents. first: Slavery and the Bible and last: File:Haunting of Thomas Brewster.jpg -[2018-02-13T00:47:29.447] [INFO] cheese - inserting 1000 documents. first: Prestwood (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/ingush-studio.com -[2018-02-13T00:47:29.459] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:47:29.497] [INFO] cheese - inserting 1000 documents. first: Undulambia fovecosta and last: Category:Archdeacons of St Vincent -[2018-02-13T00:47:29.499] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:47:29.581] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:47:29.697] [INFO] cheese - inserting 1000 documents. first: Draft:Paul Bentley and last: Category:Wikipedia sockpuppets of Solomon joe -[2018-02-13T00:47:29.728] [INFO] cheese - inserting 1000 documents. first: Auvergne (région) and last: Elmers Verden -[2018-02-13T00:47:29.735] [INFO] cheese - inserting 1000 documents. first: Pur River (India) and last: The Clique: Queen Teen -[2018-02-13T00:47:29.749] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:47:29.780] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:29.790] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:47:29.871] [INFO] cheese - inserting 1000 documents. first: Linda Lopez and last: Al Hubbard (baseball) -[2018-02-13T00:47:29.912] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:30.084] [INFO] cheese - inserting 1000 documents. first: Avant-Garde music and last: Vince Coutie -[2018-02-13T00:47:30.096] [INFO] cheese - inserting 1000 documents. first: Aleksander Janicki (artist) and last: BRCPS -[2018-02-13T00:47:30.128] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:47:30.148] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:47:30.239] [INFO] cheese - inserting 1000 documents. first: File:Randfan's Sand Castle.jpg and last: 2004 Haiti rebellion -[2018-02-13T00:47:30.287] [INFO] cheese - inserting 1000 documents. first: Hands in the Air (Miley Cyrus) and last: Segundo Navarrete -[2018-02-13T00:47:30.302] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:47:30.312] [INFO] cheese - inserting 1000 documents. first: File:Colrisuni.gif and last: St Michael's Prep School, Otford -[2018-02-13T00:47:30.359] [INFO] cheese - inserting 1000 documents. first: Yacimientos Carboniferos Fiscales and last: Lichtenhain Bergbahn -[2018-02-13T00:47:30.380] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:47:30.393] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:47:30.468] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:47:30.634] [INFO] cheese - inserting 1000 documents. first: Raymond James Inc and last: Category:Tengnoupal district -[2018-02-13T00:47:30.673] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:47:30.689] [INFO] cheese - inserting 1000 documents. first: Burn recovery bed and last: Wikipedia:Version 1.0 Editorial Team/University of California articles by quality/1 -[2018-02-13T00:47:30.790] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:47:30.862] [INFO] cheese - inserting 1000 documents. first: Category:Luxembourgian people of Cape Verde descent and last: Ebenau's leaf chameleon -[2018-02-13T00:47:30.864] [INFO] cheese - inserting 1000 documents. first: Top Four Cup and last: Molecular crystal -[2018-02-13T00:47:30.930] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:47:30.945] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:47:30.972] [INFO] cheese - inserting 1000 documents. first: New Frontier (Matt Finish CD) and last: Category:Civilian Conservation Corps in Mississippi -[2018-02-13T00:47:31.084] [INFO] cheese - inserting 1000 documents. first: Metropolitan Iziaslav (Brutskiy) and last: Wikipedia:Articles for deletion/UK professors of complementary medicine -[2018-02-13T00:47:31.106] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:47:31.154] [INFO] cheese - inserting 1000 documents. first: Asian Productivity Organization and last: Elder Beck -[2018-02-13T00:47:31.219] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:47:31.238] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:47:31.421] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/University of California articles by quality/2 and last: Kalonymides -[2018-02-13T00:47:31.444] [INFO] cheese - inserting 1000 documents. first: Template:WPSOUTHPARK and last: OECD Report -[2018-02-13T00:47:31.480] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:47:31.543] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:31.550] [INFO] cheese - inserting 1000 documents. first: File:Symbiosis (album).jpg and last: Noveko -[2018-02-13T00:47:31.595] [INFO] cheese - inserting 1000 documents. first: Do U Lie? and last: John Camp (English politician) -[2018-02-13T00:47:31.647] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:47:31.656] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:47:31.801] [INFO] cheese - inserting 1000 documents. first: Skew-commutative associative algebra and last: Otto II van Lippe -[2018-02-13T00:47:31.808] [INFO] cheese - inserting 1000 documents. first: Category:Miami Seahawks coaches and last: Category:Redirect-Class film articles -[2018-02-13T00:47:31.897] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:47:31.910] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:47:32.051] [INFO] cheese - inserting 1000 documents. first: Mark Goffeney and last: New York Atlantics -[2018-02-13T00:47:32.144] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:47:32.208] [INFO] cheese - inserting 1000 documents. first: Sauzier's teal and last: File:This Burning Effigy - After Thought.ogg -[2018-02-13T00:47:32.209] [INFO] cheese - inserting 1000 documents. first: Piotr Kuczera and last: K299BT -[2018-02-13T00:47:32.259] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:47:32.273] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:32.345] [INFO] cheese - inserting 1000 documents. first: File:Muriel Bevis.jpg and last: Timothy M. Lohman -[2018-02-13T00:47:32.421] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:47:32.529] [INFO] cheese - inserting 1000 documents. first: Category:1982 in cricket and last: Haitian legislative elections, 1990/91 -[2018-02-13T00:47:32.562] [INFO] cheese - inserting 1000 documents. first: Barcelona managers and last: Infrared spectroscopy of metal carbonyls -[2018-02-13T00:47:32.607] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:47:32.631] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:47:32.670] [INFO] cheese - inserting 1000 documents. first: Phyz and last: Brotherhood of St Lawrence -[2018-02-13T00:47:32.695] [INFO] cheese - inserting 1000 documents. first: Hilario Ulloa and last: File:Freur Doot Doot test pressing with stamped and handwritten logo.jpg -[2018-02-13T00:47:32.711] [INFO] cheese - inserting 1000 documents. first: Red kidney beans and last: Zec de la Rivière-Bonaventure -[2018-02-13T00:47:32.715] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:47:32.727] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:47:32.753] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:47:32.856] [INFO] cheese - inserting 1000 documents. first: Category:People from Levoča and last: Cadet gray -[2018-02-13T00:47:32.906] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:47:32.970] [INFO] cheese - inserting 1000 documents. first: List of minor planets/145701–145800 and last: Saskatchewan Highway 929 -[2018-02-13T00:47:32.972] [INFO] cheese - inserting 1000 documents. first: Middle Cornish and last: Medland -[2018-02-13T00:47:32.972] [INFO] cheese - inserting 1000 documents. first: Ravipadu (disambiguation) and last: Back to the Factory -[2018-02-13T00:47:33.009] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:47:33.022] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:47:33.027] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:33.057] [INFO] cheese - inserting 1000 documents. first: SR 217 (AZ) and last: File:ShaanatImprint.jpg -[2018-02-13T00:47:33.095] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:47:33.110] [INFO] cheese - inserting 1000 documents. first: File:LED Eco Lights Company Logo.jpg and last: Harry Langford -[2018-02-13T00:47:33.157] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:47:33.236] [INFO] cheese - inserting 1000 documents. first: Ikosi and last: Wikipedia:Wikipedia Loves Art/Brooklyn Museum rules -[2018-02-13T00:47:33.276] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:47:33.284] [INFO] cheese - inserting 1000 documents. first: Raphael Vieira De Oliveira and last: File:It's That Man Again (1943 film).jpg -[2018-02-13T00:47:33.326] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:47:33.399] [INFO] cheese - inserting 1000 documents. first: Kuramatengu and last: Wikipedia:Articles for deletion/Taran Rampersad (2nd nomination) -[2018-02-13T00:47:33.407] [INFO] cheese - inserting 1000 documents. first: Category:1981 establishments in Chile and last: County Route 16 (Oneida County, New York) -[2018-02-13T00:47:33.448] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:33.453] [INFO] cheese - inserting 1000 documents. first: Pierre ii de luxembourg and last: Paria, Utah -[2018-02-13T00:47:33.459] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:33.525] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:47:33.549] [INFO] cheese - inserting 1000 documents. first: Template:Latest preview software release/Viber and last: Mission Trail Athletic League -[2018-02-13T00:47:33.608] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:47:33.668] [INFO] cheese - inserting 1000 documents. first: Usta Mourad Mosque and last: File:ShoestringDVD.jpg -[2018-02-13T00:47:33.751] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:47:33.982] [INFO] cheese - inserting 1000 documents. first: Lagaan: Once Upon a Time in India (2001 film) and last: Category:Montana State Bobcats football coaches -[2018-02-13T00:47:33.998] [INFO] cheese - inserting 1000 documents. first: County Route 17 (Oneida County, New York) and last: Troyzan -[2018-02-13T00:47:34.045] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:34.058] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:47:34.062] [INFO] cheese - inserting 1000 documents. first: Chris Watson (disambiguation) and last: Wikipedia:Articles for deletion/List of castes from the Alien expanded universe -[2018-02-13T00:47:34.128] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Art/Carnegie Museum of Art rules and last: Saint-Georges Saint-Émilion -[2018-02-13T00:47:34.147] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:47:34.343] [INFO] cheese - inserting 1000 documents. first: File:Esti jerusalem.JPG and last: Zec de la Rivière-Petit-Saguenay -[2018-02-13T00:47:34.348] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T00:47:34.419] [INFO] cheese - inserting 1000 documents. first: Watzke and last: List of Hampshire County Cricket Club first-class players (1895-1914) -[2018-02-13T00:47:34.433] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:47:34.492] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:47:34.691] [INFO] cheese - inserting 1000 documents. first: Homonomous hemianopsia and last: Žarkovac (Ruma) -[2018-02-13T00:47:34.760] [INFO] cheese - inserting 1000 documents. first: Okhli and last: Aberffraw (cantref) -[2018-02-13T00:47:34.765] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:47:34.801] [INFO] cheese - inserting 1000 documents. first: Cuckoo Farm and last: Vojvodina Academy of Sciences and Arts -[2018-02-13T00:47:34.840] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:47:34.876] [INFO] cheese - inserting 1000 documents. first: Category:Species endangered by slash-and-burn and last: World Fuel Services Corp -[2018-02-13T00:47:34.908] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:47:34.912] [INFO] cheese - inserting 1000 documents. first: INS Tarshish and last: Wayne Fraser -[2018-02-13T00:47:34.919] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:34.991] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:47:35.233] [INFO] cheese - inserting 1000 documents. first: Fonte Avellana and last: Lateral nasal process -[2018-02-13T00:47:35.280] [INFO] cheese - inserting 1000 documents. first: Category:541 BC deaths and last: Mallosia graeca -[2018-02-13T00:47:35.298] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:47:35.317] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:47:35.350] [INFO] cheese - inserting 1000 documents. first: File:Tearringsaga boxart.PNG and last: 630s in Ireland -[2018-02-13T00:47:35.351] [INFO] cheese - inserting 1000 documents. first: The Ghost Map: The Story of London's Most Terrifying Epidemic – and How it Changed Science, Cities and the Modern World and last: Ship of Condemned Women -[2018-02-13T00:47:35.365] [INFO] cheese - inserting 1000 documents. first: Module:Uses Wikidata/sandbox and last: Geography of Ōta, Tokyo -[2018-02-13T00:47:35.388] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:35.397] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:47:35.430] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:47:35.598] [INFO] cheese - inserting 1000 documents. first: Izman and last: Category:Samphanthawong District -[2018-02-13T00:47:35.633] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:47:35.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Amanda Carpenter (second nomination) and last: Portal:United States Navy/Selected picture/2 -[2018-02-13T00:47:35.675] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:47:35.688] [INFO] cheese - inserting 1000 documents. first: Víctor Moreira and last: John Crutcher -[2018-02-13T00:47:35.705] [INFO] cheese - inserting 1000 documents. first: Category:Egyptian sport shooters and last: Arabia Steamboat -[2018-02-13T00:47:35.729] [INFO] cheese - inserting 1000 documents. first: East Troy, Maine and last: Dark Souls 3: The Fire Fades -[2018-02-13T00:47:35.738] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:47:35.772] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:47:35.774] [INFO] cheese - batch complete in: 1.426 secs -[2018-02-13T00:47:35.807] [INFO] cheese - inserting 1000 documents. first: Category:Canadian chess writers and last: General of the artillery -[2018-02-13T00:47:35.869] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:47:36.077] [INFO] cheese - inserting 1000 documents. first: Malabar grouper and last: Escape to Hell -[2018-02-13T00:47:36.095] [INFO] cheese - inserting 1000 documents. first: Gaya Railway Station and last: Sir Stephen de Vere, 4th Baronet -[2018-02-13T00:47:36.115] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:47:36.132] [INFO] cheese - inserting 1000 documents. first: List of Questlove Supreme Episodes and last: Ceratichthys labrosus -[2018-02-13T00:47:36.159] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:47:36.195] [INFO] cheese - inserting 1000 documents. first: Heart On My Sleeve (Mary Lambert album) and last: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2014 September 23 -[2018-02-13T00:47:36.198] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:36.286] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:47:36.295] [INFO] cheese - inserting 1000 documents. first: Relief Hose Company No. 2 Engine House and last: Roscommon Castle -[2018-02-13T00:47:36.405] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:47:36.411] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Waste Management (album) and last: Processability theory -[2018-02-13T00:47:36.443] [INFO] cheese - inserting 1000 documents. first: Moneta Sleet Jr. and last: African-American Film Critics Association Awards 2003 -[2018-02-13T00:47:36.489] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:47:36.523] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:47:36.663] [INFO] cheese - inserting 1000 documents. first: File:Doctor Laennec.jpg and last: Draft:Louis Horne (musician) -[2018-02-13T00:47:36.712] [INFO] cheese - inserting 1000 documents. first: Place, New Hampshire and last: Władysław Sławny -[2018-02-13T00:47:36.733] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:47:36.777] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:36.850] [INFO] cheese - inserting 1000 documents. first: Minye Thihathu II of Toungoo and last: Ornithomimus tenuis -[2018-02-13T00:47:36.876] [INFO] cheese - inserting 1000 documents. first: 11'09"01 and last: Template:Cardiff Bus 21/23 RDT -[2018-02-13T00:47:36.899] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:36.915] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:37.038] [INFO] cheese - inserting 1000 documents. first: François N'Doumbé and last: Indie Queen -[2018-02-13T00:47:37.103] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:37.120] [INFO] cheese - inserting 1000 documents. first: Clawed feather-flower and last: Porlammi encirclement -[2018-02-13T00:47:37.152] [INFO] cheese - inserting 1000 documents. first: Rock garden (disambiguation) and last: List of parasites of humans -[2018-02-13T00:47:37.176] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:47:37.226] [INFO] cheese - inserting 1000 documents. first: Neodyschirius and last: Now Deh Bam -[2018-02-13T00:47:37.275] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:47:37.310] [INFO] cheese - inserting 1000 documents. first: Ornithomimus altus and last: Günther Ruprecht -[2018-02-13T00:47:37.324] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:47:37.377] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:47:37.507] [INFO] cheese - inserting 1000 documents. first: Category:Atlanta Blackhawks players and last: File:A Promise To Burn.jpg -[2018-02-13T00:47:37.610] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:47:37.801] [INFO] cheese - inserting 1000 documents. first: Tungjoy and last: DJ E-Feezy -[2018-02-13T00:47:37.859] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:47:37.939] [INFO] cheese - inserting 1000 documents. first: KTDZ and last: Mashpee and Wakeby Ponds -[2018-02-13T00:47:38.000] [INFO] cheese - inserting 1000 documents. first: Category:1976–77 in Canadian ice hockey by league and last: The Movie Star -[2018-02-13T00:47:38.019] [INFO] cheese - inserting 1000 documents. first: Magruder Plots and last: Nemanja Ćorović -[2018-02-13T00:47:38.021] [INFO] cheese - inserting 1000 documents. first: Carlos Gabriel Rodríguez and last: Cascadia fault zone -[2018-02-13T00:47:38.022] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T00:47:38.090] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:47:38.146] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:47:38.163] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:47:38.195] [INFO] cheese - inserting 1000 documents. first: Swahili blonde and last: Zunun Kadir -[2018-02-13T00:47:38.256] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:38.361] [INFO] cheese - inserting 1000 documents. first: Lavina Keough and last: Bridaltree -[2018-02-13T00:47:38.412] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:47:38.474] [INFO] cheese - inserting 1000 documents. first: File:Keith LeBlanc - Time Traveller.jpg and last: Megachile albicaudella -[2018-02-13T00:47:38.506] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:38.514] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/taxi-service.me and last: Andrea Lussardi -[2018-02-13T00:47:38.563] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:47:38.624] [INFO] cheese - inserting 1000 documents. first: Korean titles and last: Schoolboy -[2018-02-13T00:47:38.626] [INFO] cheese - inserting 1000 documents. first: Porterella and last: Keep On Movin' (Alexia) -[2018-02-13T00:47:38.663] [INFO] cheese - inserting 1000 documents. first: Cascadia fault Zone and last: Polyclonal response/GA2 -[2018-02-13T00:47:38.678] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:47:38.688] [INFO] cheese - inserting 1000 documents. first: Epepeotes meridianus and last: António José Pereira de Carvalho -[2018-02-13T00:47:38.688] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:47:38.740] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:38.751] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:47:38.831] [INFO] cheese - inserting 1000 documents. first: Route 311 (Virginia-West Virginia) and last: Wikipedia:Articles for deletion/Bahman Gholipouri -[2018-02-13T00:47:38.872] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:47:38.974] [INFO] cheese - inserting 1000 documents. first: Template:Sports governing bodies in Poland and last: Pottangi Ollar Gadaba language -[2018-02-13T00:47:39.010] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:47:39.034] [INFO] cheese - inserting 1000 documents. first: File:TheSwingleSingers BachsGreatestHits.jpg and last: File:Drowningpool250.jpg -[2018-02-13T00:47:39.072] [INFO] cheese - inserting 1000 documents. first: NNS Andoni and last: Engineers Without Borders Australia -[2018-02-13T00:47:39.082] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:47:39.112] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:47:39.115] [INFO] cheese - inserting 1000 documents. first: Patrick Arthur Devlin, Lord Devlin and last: Eye Castle -[2018-02-13T00:47:39.180] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:47:39.235] [INFO] cheese - inserting 1000 documents. first: Teacher (music) and last: Bill Brogan -[2018-02-13T00:47:39.263] [INFO] cheese - inserting 1000 documents. first: Selvanagar and last: Aerobic Granulation -[2018-02-13T00:47:39.291] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:47:39.339] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:47:39.401] [INFO] cheese - inserting 1000 documents. first: Zbigniew Herman and last: Curtiss P-40F -[2018-02-13T00:47:39.463] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:39.559] [INFO] cheese - inserting 1000 documents. first: Eastern purple-glossed snake and last: Draft:Ernst Weigang -[2018-02-13T00:47:39.583] [INFO] cheese - inserting 1000 documents. first: Ropeadope and last: Kahraman Dogan -[2018-02-13T00:47:39.599] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:47:39.659] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:39.754] [INFO] cheese - inserting 1000 documents. first: Category:Talleres de Córdoba managers and last: Template:RussiaBasicLawRef/vla -[2018-02-13T00:47:39.775] [INFO] cheese - inserting 1000 documents. first: File:AcousticliveatWOW.jpg and last: Mariah a. taylor -[2018-02-13T00:47:39.779] [INFO] cheese - inserting 1000 documents. first: Bandoeng Inlandsche Voetball Bond and last: Bow-string arch bridge -[2018-02-13T00:47:39.807] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:47:39.840] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:47:39.844] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:47:39.895] [INFO] cheese - inserting 1000 documents. first: Curtiss Kittyhawk Mk II and last: Coal shovel -[2018-02-13T00:47:39.954] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:40.016] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gtamoneyonline.com and last: Agents of Shield (season 4) -[2018-02-13T00:47:40.023] [INFO] cheese - inserting 1000 documents. first: Nantenbach Curve and last: Nebiogastes -[2018-02-13T00:47:40.051] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:47:40.071] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:47:40.296] [INFO] cheese - inserting 1000 documents. first: Southwestern Proving Ground Officers Quarters Historic District and last: Battle On Broadway -[2018-02-13T00:47:40.339] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:40.352] [INFO] cheese - inserting 1000 documents. first: S.W. Harris and last: Agricultural Training Institute (Philippines) -[2018-02-13T00:47:40.362] [INFO] cheese - inserting 1000 documents. first: Donald Kerst and last: Category:Western Macedonia geography stubs -[2018-02-13T00:47:40.409] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:47:40.429] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Icahn School of Medicine at Mount Sinai/Outcomes of teaching students 2017 and last: Category:Former roller coasters in North Carolina -[2018-02-13T00:47:40.449] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:47:40.460] [INFO] cheese - inserting 1000 documents. first: Alipiri and last: Vercengitorix -[2018-02-13T00:47:40.527] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:40.526] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:47:40.566] [INFO] cheese - inserting 1000 documents. first: Category:Ottoman scientists and last: Ski 2 Sea -[2018-02-13T00:47:40.642] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:47:40.856] [INFO] cheese - inserting 1000 documents. first: August 2021 and last: Category:Biographical films about Ma Barker -[2018-02-13T00:47:40.873] [INFO] cheese - inserting 1000 documents. first: Deák Ferenc tér (Budapest Metro M3) and last: Ashburn Village -[2018-02-13T00:47:40.912] [INFO] cheese - inserting 1000 documents. first: Category:Filipino Indologists and last: Bairagarh Airport -[2018-02-13T00:47:40.914] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:40.927] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:47:40.947] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Choke (Glee) and last: May Collins -[2018-02-13T00:47:40.989] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:41.007] [INFO] cheese - inserting 1000 documents. first: Papyrus Oxyrhynchus 1008 and last: Lamborghini Aventador S -[2018-02-13T00:47:40.998] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:47:41.072] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:47:41.219] [INFO] cheese - inserting 1000 documents. first: County Route 75 (Erie County, New York) and last: YOTBR -[2018-02-13T00:47:41.299] [INFO] cheese - inserting 1000 documents. first: Sedberry-Holmes House and last: Category:Polish animated short films -[2018-02-13T00:47:41.303] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:47:41.333] [INFO] cheese - inserting 1000 documents. first: Chikkalthana Airport and last: Catholic Extension -[2018-02-13T00:47:41.340] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:41.355] [INFO] cheese - inserting 1000 documents. first: Saŋyojana and last: Raymond J. Johnson Jr. -[2018-02-13T00:47:41.388] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:47:41.450] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:47:41.489] [INFO] cheese - inserting 1000 documents. first: File:In My Father's Garden.jpg and last: Rudnickis -[2018-02-13T00:47:41.595] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:41.702] [INFO] cheese - inserting 1000 documents. first: Botle Castle and last: Sat-IP -[2018-02-13T00:47:41.792] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:47:41.817] [INFO] cheese - inserting 1000 documents. first: Dunsmuir station (British Columbia) and last: Logical fallacy/Gamblers fallacy -[2018-02-13T00:47:41.894] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:47:41.968] [INFO] cheese - inserting 1000 documents. first: Belhar and last: Bourassa State Forest -[2018-02-13T00:47:41.984] [INFO] cheese - inserting 1000 documents. first: Israel Yishayahu and last: Category:Pajama Party (group) albums -[2018-02-13T00:47:42.030] [INFO] cheese - inserting 1000 documents. first: Template:Schools in Ipoh and last: Hartland Four Corners, Vermont -[2018-02-13T00:47:42.046] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:47:42.063] [INFO] cheese - inserting 1000 documents. first: Raeder and last: Mydeton -[2018-02-13T00:47:42.093] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:47:42.170] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:42.192] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:47:42.284] [INFO] cheese - inserting 1000 documents. first: File:Mrs. Whitney in the winners circle.jpg and last: HP PhotoSmart R727 (V01.00) -[2018-02-13T00:47:42.363] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:47:42.378] [INFO] cheese - inserting 1000 documents. first: Richard Ellena and last: Revelation Zero (Part 2) -[2018-02-13T00:47:42.415] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:47:42.573] [INFO] cheese - inserting 1000 documents. first: Federal judiciary of Switzerland and last: Granulation (solar physics) -[2018-02-13T00:47:42.592] [INFO] cheese - inserting 1000 documents. first: The Well (1951 film) and last: Gurbuz -[2018-02-13T00:47:42.634] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:47:42.638] [INFO] cheese - inserting 1000 documents. first: Category:Ministers of the Brandenburg State Government and last: Hooper's rule -[2018-02-13T00:47:42.641] [INFO] cheese - inserting 1000 documents. first: Category:Paint It Black (band) albums and last: Anton Gág -[2018-02-13T00:47:42.655] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:47:42.747] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:47:42.768] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:42.833] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Kingswood House School and last: Wikipedia:Articles for deletion/Bhimjee Parikh -[2018-02-13T00:47:42.912] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:47:43.018] [INFO] cheese - inserting 1000 documents. first: Conus darkini and last: Paris-Dakar (Newspaper) -[2018-02-13T00:47:43.062] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:47:43.128] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/May 2 and last: Rye whisky -[2018-02-13T00:47:43.140] [INFO] cheese - inserting 1000 documents. first: Acanthophis praelongus and last: Draft:R.S. Field -[2018-02-13T00:47:43.178] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:43.186] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:43.194] [INFO] cheese - inserting 1000 documents. first: File:Perry Jewelry.jpg and last: Coat of Arms bridge -[2018-02-13T00:47:43.197] [INFO] cheese - inserting 1000 documents. first: File:Jennifer Hudson - Spotlight.jpeg and last: Wikipedia:Articles for deletion/Genuine Warranty -[2018-02-13T00:47:43.262] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:47:43.316] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:47:43.421] [INFO] cheese - inserting 1000 documents. first: Timeline of the 2011–2012 Syrian uprising (from January 2012) and last: Lecithocera pseudocathra -[2018-02-13T00:47:43.508] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:47:43.572] [INFO] cheese - inserting 1000 documents. first: List of parasites of the marsh rice rat and last: Brand Fourie -[2018-02-13T00:47:43.647] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:47:43.692] [INFO] cheese - inserting 1000 documents. first: Draft:Spider-Man (animated film) and last: Amin al-Din (disambiguation) -[2018-02-13T00:47:43.717] [INFO] cheese - inserting 1000 documents. first: David Price (Football) and last: Tristan White -[2018-02-13T00:47:43.763] [INFO] cheese - inserting 1000 documents. first: Category:The Jayhawks albums and last: Benjamin Woods Labaree -[2018-02-13T00:47:43.778] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:47:43.803] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:47:43.865] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:47:43.882] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Julian Alps and last: Portal:Time/Selected Article/Suggest/criteria -[2018-02-13T00:47:43.940] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:47:44.062] [INFO] cheese - inserting 1000 documents. first: Template:NCAA Division I FBS football rankings/sandbox and last: Cierva C.6C -[2018-02-13T00:47:44.125] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:44.174] [INFO] cheese - inserting 1000 documents. first: Eisenstadt-Umgebung and last: Holt Hotel -[2018-02-13T00:47:44.214] [INFO] cheese - inserting 1000 documents. first: Category:German musicals and last: Flo McClintock -[2018-02-13T00:47:44.227] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:44.244] [INFO] cheese - inserting 1000 documents. first: Lighting effects and last: File:Love U Crazy Girl (Film) Poster.jpg -[2018-02-13T00:47:44.269] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:44.293] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:47:44.365] [INFO] cheese - inserting 1000 documents. first: Kanuka and last: Shibar District -[2018-02-13T00:47:44.406] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:44.511] [INFO] cheese - inserting 1000 documents. first: People vs. Money Tour and last: Maria Willoughby -[2018-02-13T00:47:44.560] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:47:44.564] [INFO] cheese - inserting 1000 documents. first: The Merry Month of May and last: Eutrichillus -[2018-02-13T00:47:44.630] [INFO] cheese - inserting 1000 documents. first: Protestant church of Aldtsjerk and last: Suzanne Bonnard -[2018-02-13T00:47:44.640] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:47:44.642] [INFO] cheese - inserting 1000 documents. first: Valur Ingimundarson and last: Category:Freedom of religion in Malaysia -[2018-02-13T00:47:44.673] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:47:44.713] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:47:44.770] [INFO] cheese - inserting 1000 documents. first: Getting Free and last: Hauptbahnhof (Berlin U-Bahn) -[2018-02-13T00:47:44.810] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:44.817] [INFO] cheese - inserting 1000 documents. first: Battle of Long Run and last: The Sideways Door -[2018-02-13T00:47:44.880] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:47:45.024] [INFO] cheese - inserting 1000 documents. first: Cryptocephalus pusillus and last: Category:Use Jamaican English from May 2017 -[2018-02-13T00:47:45.060] [INFO] cheese - inserting 1000 documents. first: ES Thaon and last: Category:French people of Vietnamese descent -[2018-02-13T00:47:45.060] [INFO] cheese - inserting 1000 documents. first: Aminolevulinic acid dehydratase deficiency porphyria and last: Category:GET-ligaen -[2018-02-13T00:47:45.060] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:47:45.077] [INFO] cheese - inserting 1000 documents. first: Grey-backed Sparrow-lark and last: KGBV Scheme -[2018-02-13T00:47:45.125] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:47:45.147] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:47:45.157] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:45.270] [INFO] cheese - inserting 1000 documents. first: 2014–15 American Eagles men's basketball team and last: Ron Foos -[2018-02-13T00:47:45.324] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:47:45.344] [INFO] cheese - inserting 1000 documents. first: Mount Kunyit and last: Portal:Religion/On this day/June 25 -[2018-02-13T00:47:45.409] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:47:45.431] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles needing a junction list from May 2017 and last: Template:Taxonomy/Ubirodynerus -[2018-02-13T00:47:45.495] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:47:45.602] [INFO] cheese - inserting 1000 documents. first: Odd Fellows lodge and last: Ovingham, Northumberland -[2018-02-13T00:47:45.638] [INFO] cheese - inserting 1000 documents. first: Petit de la Saussaye and last: Javorje, Velike Lašče -[2018-02-13T00:47:45.651] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:47:45.692] [INFO] cheese - inserting 1000 documents. first: Aybek Orozaliyev and last: Truth and Purpose (Album) -[2018-02-13T00:47:45.699] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:47:45.778] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:47:45.788] [INFO] cheese - inserting 1000 documents. first: Danny Krause and last: File:MMB, Logo.gif -[2018-02-13T00:47:45.857] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:45.898] [INFO] cheese - inserting 1000 documents. first: Portal:Religion/On this day/June 26 and last: Shaligram Shilas -[2018-02-13T00:47:46.022] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:46.089] [INFO] cheese - inserting 1000 documents. first: Pink dryandra and last: Chhota Singh -[2018-02-13T00:47:46.172] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:47:46.176] [INFO] cheese - inserting 1000 documents. first: Template:Queensland Rail rail lines and last: Category:Birmingham Maroons players -[2018-02-13T00:47:46.257] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:47:46.347] [INFO] cheese - inserting 1000 documents. first: Template:PrinceWilliamCountyVA-NRHP-stub and last: Antonio Colinas Lobato -[2018-02-13T00:47:46.388] [INFO] cheese - inserting 1000 documents. first: List of number-one singles in 1998 (NZ) and last: FCS Star -[2018-02-13T00:47:46.420] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:47:46.496] [INFO] cheese - inserting 1000 documents. first: Battlihorn and last: Category:George Wein albums -[2018-02-13T00:47:46.543] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:47:46.590] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:47:46.679] [INFO] cheese - inserting 1000 documents. first: Emmton Magan and last: Wikipedia:Articles for deletion/Forss Fagerström -[2018-02-13T00:47:46.749] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:47:46.821] [INFO] cheese - inserting 1000 documents. first: The Melancholy Fantastic and last: John Tasker Henderson -[2018-02-13T00:47:46.860] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:47:46.920] [INFO] cheese - inserting 1000 documents. first: Soviet Russia (exhibition, 1975) and last: Çamlıköy Kıbrıs -[2018-02-13T00:47:46.957] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:47:47.003] [INFO] cheese - inserting 1000 documents. first: Charles Leavitt and last: Given, West Virginia -[2018-02-13T00:47:47.050] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:47.053] [INFO] cheese - inserting 1000 documents. first: Tax loophole and last: Template:1994–95 football in Portugal -[2018-02-13T00:47:47.093] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samir Palnitkar and last: File:Peter Kay's Car Share titles.jpg -[2018-02-13T00:47:47.095] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:47:47.140] [INFO] cheese - inserting 1000 documents. first: Panzer X and last: United Nations Security Council Resolution 14 -[2018-02-13T00:47:47.166] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:47:47.182] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:47:47.290] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Network as a service and last: Goat Islands -[2018-02-13T00:47:47.309] [INFO] cheese - inserting 1000 documents. first: Richard Nyarko and last: List of Strawberry 100% manga chapters -[2018-02-13T00:47:47.332] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:47:47.341] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:47:47.412] [INFO] cheese - inserting 1000 documents. first: Tony Branson and last: US Geography Challenge -[2018-02-13T00:47:47.433] [INFO] cheese - inserting 1000 documents. first: Category:History of Cumberland, MD-WV MSA and last: Mikkel Thorup -[2018-02-13T00:47:47.449] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:47:47.451] [INFO] cheese - inserting 1000 documents. first: Kvitashvili, Alexander and last: File:Utah Flash.png -[2018-02-13T00:47:47.475] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:47:47.508] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:47:47.602] [INFO] cheese - inserting 1000 documents. first: Teleost fish and last: Postprocessing -[2018-02-13T00:47:47.646] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:47:47.690] [INFO] cheese - inserting 1000 documents. first: Porokeratotic eccrine ostial and dermal duct nevus and last: Wikipedia:Wikipedia essays showcase/Featured essay/4 -[2018-02-13T00:47:47.748] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:47.772] [INFO] cheese - inserting 1000 documents. first: Draft:Cuchara and last: Emmanuel Garib -[2018-02-13T00:47:47.799] [INFO] cheese - inserting 1000 documents. first: Celianella montana and last: MiG Monument -[2018-02-13T00:47:47.805] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:47:47.815] [INFO] cheese - inserting 1000 documents. first: Michael O'Connor (footballer) and last: Joe Bonham -[2018-02-13T00:47:47.852] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:47:47.854] [INFO] cheese - inserting 1000 documents. first: Esfidan, Maneh and Samalqan and last: Howmeh Rural District (Shirvan County) -[2018-02-13T00:47:47.930] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:47:48.009] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:47:48.098] [INFO] cheese - inserting 1000 documents. first: XSL stylesheet and last: List of asteroids (31001-32000) -[2018-02-13T00:47:48.164] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:47:48.337] [INFO] cheese - inserting 1000 documents. first: Winston Chapman and last: Nelle Hayes -[2018-02-13T00:47:48.372] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Book:Hindu Proud and last: Power Core Combiners -[2018-02-13T00:47:48.373] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:47:48.436] [INFO] cheese - inserting 1000 documents. first: Portal:Mexico/Selected picture/41 and last: Ethiralikal -[2018-02-13T00:47:48.451] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:47:48.464] [INFO] cheese - inserting 1000 documents. first: List of college football rivalries and last: Category:New Zealand Māori broadcasters -[2018-02-13T00:47:48.487] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:47:48.534] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:47:48.578] [INFO] cheese - inserting 1000 documents. first: The Circle (file system) and last: Kb (disambiguation) -[2018-02-13T00:47:48.635] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:47:48.686] [INFO] cheese - inserting 1000 documents. first: File:FeelTheSpirit.jpg and last: Cocodrilos Sports Park -[2018-02-13T00:47:48.741] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:48.839] [INFO] cheese - inserting 1000 documents. first: Draft:North American Board of Certified Energy Practitioners and last: Fred Gilman -[2018-02-13T00:47:48.872] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:47:48.908] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 3001–3500 and last: Category:Cenozoic geologic formations -[2018-02-13T00:47:48.910] [INFO] cheese - inserting 1000 documents. first: Jaruwat Cheawaram and last: Nissiopi -[2018-02-13T00:47:48.911] [INFO] cheese - inserting 1000 documents. first: Kentucky Route 171 and last: File:The Rosie Project.jpg -[2018-02-13T00:47:48.958] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:47:48.960] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:47:48.965] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:47:49.049] [INFO] cheese - inserting 1000 documents. first: Leopard of the Central Provinces and last: Association of Black Psychologists -[2018-02-13T00:47:49.093] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:47:49.145] [INFO] cheese - inserting 1000 documents. first: Marie McCormick and last: 28/4 -[2018-02-13T00:47:49.181] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:47:49.205] [INFO] cheese - inserting 1000 documents. first: Molecular marker (disambiguation) and last: Ryohei Yamamoto -[2018-02-13T00:47:49.354] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:47:49.519] [INFO] cheese - inserting 1000 documents. first: Category:1965 in Japanese television and last: Pharmaceutical products -[2018-02-13T00:47:49.652] [INFO] cheese - inserting 1000 documents. first: Mayor Bill Harrison and last: Vimochanasamaram (film) -[2018-02-13T00:47:49.654] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:47:49.670] [INFO] cheese - inserting 1000 documents. first: Kenodactylus and last: Kukeli, Iran -[2018-02-13T00:47:49.734] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:47:49.746] [INFO] cheese - inserting 1000 documents. first: Gruenspan and last: Al Mac's Diner-Restaurant -[2018-02-13T00:47:49.763] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:47:49.829] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:47:49.896] [INFO] cheese - inserting 1000 documents. first: 29/4 and last: Wenig -[2018-02-13T00:47:49.936] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:47:50.081] [INFO] cheese - inserting 1000 documents. first: Off-Leash Area and last: Rufous Night-heron -[2018-02-13T00:47:50.166] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:47:50.166] [INFO] cheese - inserting 1000 documents. first: Patricia Darcy Jones and last: Category:Articles lacking sources from April 2010 -[2018-02-13T00:47:50.196] [INFO] cheese - inserting 1000 documents. first: Category:1970 in Dutch television and last: Anjali (1977 film) -[2018-02-13T00:47:50.257] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:50.279] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:47:50.294] [INFO] cheese - inserting 1000 documents. first: Warranting Theory and last: Monastery of Santa María (Cañas) -[2018-02-13T00:47:50.364] [INFO] cheese - inserting 1000 documents. first: Toné and last: Gmina Swieciechowa -[2018-02-13T00:47:50.376] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:50.427] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:47:50.631] [INFO] cheese - inserting 1000 documents. first: John Toepp and last: Pashkov, Alexander -[2018-02-13T00:47:50.743] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:47:50.811] [INFO] cheese - inserting 1000 documents. first: Javan Pond-heron and last: Bob Lambert (cricketer) -[2018-02-13T00:47:50.875] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:47:50.964] [INFO] cheese - inserting 1000 documents. first: Template:Anime-music-stub and last: TMK OAO -[2018-02-13T00:47:50.984] [INFO] cheese - inserting 1000 documents. first: Betty Hill (disambiguation) and last: Professor Em. Dr. Wim A. G. Blonk -[2018-02-13T00:47:50.990] [INFO] cheese - inserting 1000 documents. first: Signeta flammeata and last: John Vincent (lawyer) -[2018-02-13T00:47:51.019] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:47:51.079] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:47:51.164] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:47:51.354] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Plasticity Forum and last: Twenty-fourth United Kingdom general election -[2018-02-13T00:47:51.431] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:47:51.568] [INFO] cheese - inserting 1000 documents. first: File:Anglo Chinese College.jpg and last: File:ACDC Itsalongway.ogg -[2018-02-13T00:47:51.609] [INFO] cheese - inserting 1000 documents. first: File:Filmworks 1986-1990 Nonesuch.jpg and last: File:Shabazz-pohc.jpg -[2018-02-13T00:47:51.629] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:47:51.654] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T00:47:51.693] [INFO] cheese - inserting 1000 documents. first: Discoceps fasciatus and last: Template:1960s-thriller-film-stub -[2018-02-13T00:47:51.736] [INFO] cheese - inserting 1000 documents. first: Lotherton cum Aberford and last: Category:Albums produced by Rico Love -[2018-02-13T00:47:51.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/Napoleon and Tabitha D'umo/1 and last: Aforia indomaris -[2018-02-13T00:47:51.751] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:47:51.803] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:47:51.882] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:47:52.031] [INFO] cheese - inserting 1000 documents. first: Twenty-fifth United Kingdom general election and last: Nélson António Soares da Gama -[2018-02-13T00:47:52.042] [INFO] cheese - inserting 1000 documents. first: Lorenzo Ma'afu and last: Stix -[2018-02-13T00:47:52.118] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:47:52.148] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:47:52.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samix and last: The Ritz (play) -[2018-02-13T00:47:52.366] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:47:52.430] [INFO] cheese - inserting 1000 documents. first: Italians in Montreal and last: Phloeus -[2018-02-13T00:47:52.542] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:47:52.658] [INFO] cheese - inserting 1000 documents. first: Category:Horse breeds originating in Hungary and last: Aziz Sydykov -[2018-02-13T00:47:52.693] [INFO] cheese - inserting 1000 documents. first: Brian Bement and last: Shaler, Alexander -[2018-02-13T00:47:52.765] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:52.767] [INFO] cheese - inserting 1000 documents. first: Aforia inoperculata and last: File:Map complex1.jpg -[2018-02-13T00:47:52.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Untitled Ashley Tisdale album and last: Jordanus catalani de Severac -[2018-02-13T00:47:52.778] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:47:52.850] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:47:52.851] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:47:53.052] [INFO] cheese - inserting 1000 documents. first: Cennino (d'Andrea) Cennini and last: Communes of the Cantal département -[2018-02-13T00:47:53.086] [INFO] cheese - inserting 1000 documents. first: Bruno Vides and last: Mitsubishi Navy Type 1 Attack Bomber Model 22 -[2018-02-13T00:47:53.125] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:47:53.138] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:47:53.285] [INFO] cheese - inserting 1000 documents. first: Shand, Alexander and last: Win.Trojan.DNSChanger -[2018-02-13T00:47:53.332] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:47:53.352] [INFO] cheese - inserting 1000 documents. first: My Family (TVB) and last: January 2005 Iraqi elections -[2018-02-13T00:47:53.367] [INFO] cheese - inserting 1000 documents. first: Rowy, Pomeranian Voivodeship and last: Simpson Strait -[2018-02-13T00:47:53.406] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:47:53.414] [INFO] cheese - inserting 1000 documents. first: Daryl Dixon (disambiguation) and last: Category:International lacrosse competitions hosted by Canada -[2018-02-13T00:47:53.429] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:47:53.509] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:47:53.556] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jesse Samek and last: High Plains Blizzards of December 2006 -[2018-02-13T00:47:53.606] [INFO] cheese - inserting 1000 documents. first: Mitsubishi Navy Type 1 Attack Bomber Model 22 Ko and last: Megachile electrum -[2018-02-13T00:47:53.657] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:53.710] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:47:53.944] [INFO] cheese - inserting 1000 documents. first: Syd Moore and last: File:Pronunciation of the name of the letter (u) in European languages.png -[2018-02-13T00:47:54.011] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:47:54.193] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/swissmail.org and last: Category:Pakistani documentary films -[2018-02-13T00:47:54.259] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:47:54.352] [INFO] cheese - inserting 1000 documents. first: Levon II the Magnificent and last: Twisted Tales (book series) -[2018-02-13T00:47:54.384] [INFO] cheese - inserting 1000 documents. first: Megachile elizabethae and last: W43BO -[2018-02-13T00:47:54.394] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Tag & Assess 2008/132 and last: Kinki Evangelical Lutheran Church -[2018-02-13T00:47:54.395] [INFO] cheese - inserting 1000 documents. first: Anaphora of Deir Balyzeh and last: File:Coldplay X&Y Latin tour editon.svg -[2018-02-13T00:47:54.425] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:47:54.426] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:47:54.440] [INFO] cheese - inserting 1000 documents. first: File:Anonymous Street Artist WRDSMTH in front of one of his works in DTLA.jpg and last: Uganda icterine bulbul -[2018-02-13T00:47:54.494] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:47:54.494] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T00:47:54.504] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T00:47:54.667] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Template talk:Did you know and last: Stygge Krumpen -[2018-02-13T00:47:54.709] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:47:54.869] [INFO] cheese - inserting 1000 documents. first: W43BP and last: Odell Murray -[2018-02-13T00:47:54.909] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:47:54.929] [INFO] cheese - inserting 1000 documents. first: Erasmus D. Barlow and last: Template:S-line/MBTA left/Plymouth -[2018-02-13T00:47:54.938] [INFO] cheese - inserting 1000 documents. first: Tejana and last: Pierre Vidal (disambiguation) -[2018-02-13T00:47:54.949] [INFO] cheese - inserting 1000 documents. first: Vasilevsky, Alexander and last: Apostolic Vicariate of Manado -[2018-02-13T00:47:54.961] [INFO] cheese - inserting 1000 documents. first: Bannang Sata (town) and last: Darkglass Mountain -[2018-02-13T00:47:54.969] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:47:54.982] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:47:54.985] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:55.026] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:47:55.090] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Selected works/29 and last: Colombian Grass Mouse -[2018-02-13T00:47:55.152] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:47:55.225] [INFO] cheese - inserting 1000 documents. first: Category:Brighton and Hove City Council and last: Synchronus flowering -[2018-02-13T00:47:55.260] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:47:55.282] [INFO] cheese - inserting 1000 documents. first: File:Stony Road.jpg and last: Kheredine Idessane -[2018-02-13T00:47:55.316] [INFO] cheese - inserting 1000 documents. first: Draft:Terry Duffy and last: Alnoor International School -[2018-02-13T00:47:55.331] [INFO] cheese - inserting 1000 documents. first: File:The Shadowcatchers book cover.jpg and last: Pic de Rochebrune -[2018-02-13T00:47:55.343] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:47:55.383] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:47:55.406] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:47:55.476] [INFO] cheese - inserting 1000 documents. first: Follow You Down and last: Category:Films directed by René Clair -[2018-02-13T00:47:55.539] [INFO] cheese - inserting 1000 documents. first: Cordillera Occidental Akodont and last: Neelysia nemoricola -[2018-02-13T00:47:55.539] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:47:55.616] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:47:55.763] [INFO] cheese - inserting 1000 documents. first: Category:Baroque architecture in Veneto and last: Nyota Uhura -[2018-02-13T00:47:55.827] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:47:55.869] [INFO] cheese - inserting 1000 documents. first: Quirpa de Tres Mujeres and last: Template:Taxonomy/Xiphydrioidea -[2018-02-13T00:47:55.936] [INFO] cheese - inserting 1000 documents. first: De la Hoya versus Mayweather and last: Category:Wars involving Estonia -[2018-02-13T00:47:56.096] [INFO] cheese - inserting 1000 documents. first: Category:Destroyed spacecraft and last: Dollard-des-Ormeaux–Roxboro -[2018-02-13T00:47:56.052] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:56.181] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:47:56.189] [INFO] cheese - inserting 1000 documents. first: Landscapes in the Mist and last: L. terrestris -[2018-02-13T00:47:56.272] [INFO] cheese - inserting 1000 documents. first: Psalm 11 and last: Portal:Mauritius/Selected panorama/6 -[2018-02-13T00:47:56.293] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:47:56.297] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:47:56.347] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:47:56.486] [INFO] cheese - inserting 1000 documents. first: Template:Temporal illusions and last: Megachile montezuma -[2018-02-13T00:47:56.518] [INFO] cheese - inserting 1000 documents. first: Sexpionage and last: Category:1896–97 collegiate men's basketball independents season in the United States -[2018-02-13T00:47:56.544] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:47:56.589] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:47:56.703] [INFO] cheese - inserting 1000 documents. first: Les Enfants du siècle and last: File:The Stones of Nomuru.jpg -[2018-02-13T00:47:56.749] [INFO] cheese - inserting 1000 documents. first: Tecnu and last: Everybody Out! (album) -[2018-02-13T00:47:56.759] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:56.808] [INFO] cheese - inserting 1000 documents. first: T .N. Manoharan and last: Category:Russian people of Romanian descent -[2018-02-13T00:47:56.822] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:47:56.929] [INFO] cheese - inserting 1000 documents. first: Geyuk, Iran and last: Chloë Moretz -[2018-02-13T00:47:56.930] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:47:56.975] [INFO] cheese - inserting 1000 documents. first: Mendel University Brno and last: Wikipedia:WikiProject Spam/Local/128casinos.com -[2018-02-13T00:47:57.000] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:47:57.058] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:47:57.146] [INFO] cheese - inserting 1000 documents. first: Megachile montibia and last: St. John Climacus's Orthodox Church, Warsaw -[2018-02-13T00:47:57.224] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:47:57.262] [INFO] cheese - inserting 1000 documents. first: Still Waiting (disambiguation) and last: Karnail Singh Stadium -[2018-02-13T00:47:57.293] [INFO] cheese - inserting 1000 documents. first: The Emperor's Pearl and last: File:SoledadMiria.jpg -[2018-02-13T00:47:57.337] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:47:57.360] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:47:57.432] [INFO] cheese - inserting 1000 documents. first: Draft:Mácsár Gábor and last: Category:Railway accidents in West Bengal -[2018-02-13T00:47:57.471] [INFO] cheese - inserting 1000 documents. first: Category:People from Beşiktaş and last: Shamanism in Eskimo culture -[2018-02-13T00:47:57.470] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:47:57.478] [INFO] cheese - inserting 1000 documents. first: Template:Dutch governors of Ceylon and last: China SCE Property Holdings Limited -[2018-02-13T00:47:57.513] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:47:57.542] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:47:57.557] [INFO] cheese - inserting 1000 documents. first: Category:College football articles needing expert attention and last: Jean Coleman -[2018-02-13T00:47:57.600] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:57.667] [INFO] cheese - inserting 1000 documents. first: Category:Aviation in Chad and last: 15th Infantry Regiment (South Korea) -[2018-02-13T00:47:57.708] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:47:57.797] [INFO] cheese - inserting 1000 documents. first: Israel-uae relations and last: Phenom X6 -[2018-02-13T00:47:57.803] [INFO] cheese - inserting 1000 documents. first: Glory to the Heroes and last: Drewes' worm snake -[2018-02-13T00:47:57.810] [INFO] cheese - inserting 1000 documents. first: Gerardo Rubén Morales and last: Jože Brejc -[2018-02-13T00:47:57.827] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:47:57.847] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:57.865] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:47:57.906] [INFO] cheese - inserting 1000 documents. first: Template:PBB/23240 and last: Trideceth -[2018-02-13T00:47:57.947] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:47:58.030] [INFO] cheese - inserting 1000 documents. first: Navajo flag and last: José Anastasio Torrens -[2018-02-13T00:47:58.075] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:47:58.083] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 2006/York South—Weston and last: Emanuel Wynne -[2018-02-13T00:47:58.086] [INFO] cheese - inserting 1000 documents. first: Marcelo De Alvear and last: Peltiphyllum -[2018-02-13T00:47:58.122] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:47:58.161] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:58.181] [INFO] cheese - inserting 1000 documents. first: Teodor Kufel and last: Terence Robbins -[2018-02-13T00:47:58.222] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:47:58.316] [INFO] cheese - inserting 1000 documents. first: Henry Crosby Emery and last: Heinz (surname) -[2018-02-13T00:47:58.334] [INFO] cheese - inserting 1000 documents. first: Sudan blind snake and last: 2017–18 Vitesse season -[2018-02-13T00:47:58.425] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:47:58.443] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:47:58.522] [INFO] cheese - inserting 1000 documents. first: William Haslam and last: Template:Birmingham Thunderbolts roster -[2018-02-13T00:47:58.614] [INFO] cheese - inserting 1000 documents. first: You Ain't Got Nuthin' and last: WALL • E -[2018-02-13T00:47:58.656] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:47:58.715] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:47:58.826] [INFO] cheese - inserting 1000 documents. first: Otto Danieli and last: File:SWALEC Cup.gif -[2018-02-13T00:47:58.842] [INFO] cheese - inserting 1000 documents. first: Perfect (Courage the Cowardly Dog) and last: Like a Boy -[2018-02-13T00:47:58.896] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:47:58.921] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:47:59.016] [INFO] cheese - inserting 1000 documents. first: Denly and last: File:Hazyville cover.jpg -[2018-02-13T00:47:59.053] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:47:59.082] [INFO] cheese - inserting 1000 documents. first: Franco Faría and last: George Sorensen -[2018-02-13T00:47:59.099] [INFO] cheese - inserting 1000 documents. first: File:The Bachelor's Daughters poster.jpg and last: James Roger Otteson -[2018-02-13T00:47:59.140] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:47:59.153] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:47:59.228] [INFO] cheese - inserting 1000 documents. first: Hourou Musuko and last: Captaincy general -[2018-02-13T00:47:59.298] [INFO] cheese - inserting 1000 documents. first: P. teres and last: File:Mayimague.jpg -[2018-02-13T00:47:59.303] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:47:59.382] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:47:59.409] [INFO] cheese - inserting 1000 documents. first: North American Society for Oceanic History and last: PlayTone Records -[2018-02-13T00:47:59.460] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:47:59.526] [INFO] cheese - inserting 1000 documents. first: Sil-gochu and last: Wikipedia:Articles for deletion/Lorca Cohen -[2018-02-13T00:47:59.560] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:47:59.583] [INFO] cheese - inserting 1000 documents. first: German cities and last: Potęgowo Commune -[2018-02-13T00:47:59.610] [INFO] cheese - inserting 1000 documents. first: Category:Salvadoran guerrillas and last: Keith Davies -[2018-02-13T00:47:59.623] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:47:59.627] [INFO] cheese - inserting 1000 documents. first: Category:Elsewhere (band) albums and last: Template:BledsoeCountyTN-geo-stub -[2018-02-13T00:47:59.677] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:47:59.680] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:47:59.833] [INFO] cheese - inserting 1000 documents. first: Asociación Paraguaya de Futbol and last: Miscanthus floridulus -[2018-02-13T00:47:59.892] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:59.922] [INFO] cheese - inserting 1000 documents. first: Cwmderi and last: Portal:Business and economics/Did you know/January 2007 -[2018-02-13T00:47:59.972] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:47:59.985] [INFO] cheese - inserting 1000 documents. first: Potegowo Commune and last: Abdelhamid Bouchouk -[2018-02-13T00:48:00.053] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:48:00.089] [INFO] cheese - inserting 1000 documents. first: Latching End Effector and last: HMS Jalouse (1797) -[2018-02-13T00:48:00.168] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:48:00.277] [INFO] cheese - inserting 1000 documents. first: Five-needle telegraph and last: Joseph Aloysius Sheehy -[2018-02-13T00:48:00.287] [INFO] cheese - inserting 1000 documents. first: File:Maximum (film) poster.jpg and last: Graphium polistratus -[2018-02-13T00:48:00.326] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:48:00.406] [INFO] cheese - inserting 1000 documents. first: Trivial Pursuit Turbo and last: Tomellana hupferi -[2018-02-13T00:48:00.410] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:48:00.472] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:48:00.509] [INFO] cheese - inserting 1000 documents. first: Foster rhode island and last: High Bridge Township, New Jersey -[2018-02-13T00:48:00.520] [INFO] cheese - inserting 1000 documents. first: Mary brown bullock and last: File:Clint Black, Greatest Hits.jpg -[2018-02-13T00:48:00.566] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:48:00.587] [INFO] cheese - inserting 1000 documents. first: Khirbat el Mansura and last: Sardar Muhammad Yaqoob Khan -[2018-02-13T00:48:00.615] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:48:00.661] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:48:00.756] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:List of banned users/Banned by the Arbitration Committee and last: Category:John Mann (musician) albums -[2018-02-13T00:48:00.806] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:48:00.854] [INFO] cheese - inserting 1000 documents. first: Park Jung-Hye and last: Baltinglass Rebellion -[2018-02-13T00:48:00.911] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:48:00.942] [INFO] cheese - inserting 1000 documents. first: Tomellana leschkei and last: Fox Kids Play -[2018-02-13T00:48:01.008] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:48:01.050] [INFO] cheese - inserting 1000 documents. first: Red Randall Series and last: Chris Christenson -[2018-02-13T00:48:01.070] [INFO] cheese - inserting 1000 documents. first: 1960 NCAA College Division football rankings and last: Keri Maletto -[2018-02-13T00:48:01.098] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:48:01.130] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:48:01.180] [INFO] cheese - inserting 1000 documents. first: John Welwood and last: Wikipedia:WikiProject Military history/Peer review/USS Texas (BB-35) -[2018-02-13T00:48:01.217] [INFO] cheese - inserting 1000 documents. first: Category:Mann (rapper) albums and last: Category:1945–46 in American ice hockey by team -[2018-02-13T00:48:01.234] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:48:01.254] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:48:01.354] [INFO] cheese - inserting 1000 documents. first: Category:Dakota Wesleyan Tigers baseball coaches and last: Speed2 -[2018-02-13T00:48:01.382] [INFO] cheese - inserting 1000 documents. first: The Story of Martha and last: Sam Huihahau -[2018-02-13T00:48:01.401] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:48:01.426] [INFO] cheese - inserting 1000 documents. first: Chimo (greeting) and last: Detroit Titans football -[2018-02-13T00:48:01.427] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:48:01.474] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:48:01.535] [INFO] cheese - inserting 1000 documents. first: Operation GIRAFFE 3 and last: Mario Balbuena González -[2018-02-13T00:48:01.587] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:01.648] [INFO] cheese - inserting 1000 documents. first: Check Post and last: Category:Albums by Tunisian artists by genre -[2018-02-13T00:48:01.678] [INFO] cheese - inserting 1000 documents. first: Diving at the 1956 Summer Olympics – Women's 3 metre springboard and last: Exposure with response prevention -[2018-02-13T00:48:01.683] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:01.740] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:01.797] [INFO] cheese - inserting 1000 documents. first: Hyposmocoma domicolens and last: Isaac Smith (sailor) -[2018-02-13T00:48:01.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Wooster Scot Center and last: Category:Professional certification in engineering -[2018-02-13T00:48:01.835] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:01.854] [INFO] cheese - inserting 1000 documents. first: Rosztoczy Andras and last: Oxylamia basilewskyi -[2018-02-13T00:48:01.878] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwean cricket tours of Pakistan and last: The real eeepc -[2018-02-13T00:48:01.885] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:48:01.897] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:01.918] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:48:02.173] [INFO] cheese - inserting 1000 documents. first: Category:Rock albums by Tunisian artists and last: File:Kerala State Cashew Corporation Logo.jpg -[2018-02-13T00:48:02.282] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:48:02.317] [INFO] cheese - inserting 1000 documents. first: Not Like Us and last: Wikipedia:WikiProject Spam/Local/indieex.com -[2018-02-13T00:48:02.406] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:48:02.429] [INFO] cheese - inserting 1000 documents. first: Cochrane Database Syst. Rev. and last: Raphitoma purpurea -[2018-02-13T00:48:02.431] [INFO] cheese - inserting 1000 documents. first: Mesa Redonda International and last: Model-driven testing -[2018-02-13T00:48:02.496] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:48:02.535] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:48:02.553] [INFO] cheese - inserting 1000 documents. first: The Tyne Songster by W & T Fordyce - 1840 and last: Portal:Hisar/box-header -[2018-02-13T00:48:02.566] [INFO] cheese - inserting 1000 documents. first: Category:1983 in Greece and last: Holger Bertrand Flöttmann -[2018-02-13T00:48:02.615] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:48:02.648] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:48:03.102] [INFO] cheese - inserting 1000 documents. first: Bill Ralston (footballer) and last: Draft:Johannes de Cuba -[2018-02-13T00:48:03.118] [INFO] cheese - inserting 1000 documents. first: Cassiopeia (wife of Phoenix) and last: Executive Order 13797 -[2018-02-13T00:48:03.201] [INFO] cheese - inserting 1000 documents. first: Franconian International School and last: Coppa Italia 2000–01 -[2018-02-13T00:48:03.234] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:48:03.309] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:48:03.407] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:48:03.448] [INFO] cheese - inserting 1000 documents. first: Aberdovey Harbour railway station and last: Template:Fb team Sturm Graz -[2018-02-13T00:48:03.449] [INFO] cheese - inserting 1000 documents. first: Governor's Troop and last: Presidente Médici, Rondônia -[2018-02-13T00:48:03.530] [INFO] cheese - inserting 1000 documents. first: Portal:Hisar/box-footer and last: Metetherial world -[2018-02-13T00:48:03.586] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:48:03.599] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:48:03.663] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T00:48:04.067] [INFO] cheese - inserting 1000 documents. first: Category:Battles involving Chechnya and last: Executive Order 11111 -[2018-02-13T00:48:04.118] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1936 Summer Olympics – Men's 100 metres and last: Serbian League West 2007-08 -[2018-02-13T00:48:04.165] [INFO] cheese - inserting 1000 documents. first: Charlie Nicklas and last: Wikipedia:Articles for deletion/Andy Carnegie -[2018-02-13T00:48:04.172] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:48:04.209] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:48:04.226] [INFO] cheese - inserting 1000 documents. first: Phillips Middle School and last: Colls v. Home & Colonial Stores Ltd -[2018-02-13T00:48:04.231] [INFO] cheese - inserting 1000 documents. first: André Bollier and last: Kim Seong-Yong -[2018-02-13T00:48:04.300] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T00:48:04.335] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:48:04.341] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:48:04.378] [INFO] cheese - inserting 1000 documents. first: Salome (cartoon pig) and last: Wikipedia:Esperanza/Calendar/February/29 -[2018-02-13T00:48:04.445] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:48:04.702] [INFO] cheese - inserting 1000 documents. first: Bat wing development and last: Bauntovskiy Evenkiyskiy Raion -[2018-02-13T00:48:04.764] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:48:04.812] [INFO] cheese - inserting 1000 documents. first: Luigi Annoni and last: Denise Frigo -[2018-02-13T00:48:04.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/San Francisco and last: List of Syrian Air Force bases -[2018-02-13T00:48:04.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Darren Carnegie and last: Category:Paleontological protected areas in the United States -[2018-02-13T00:48:04.866] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:48:04.890] [INFO] cheese - inserting 1000 documents. first: Holtzhey and last: Category:Academies by country -[2018-02-13T00:48:04.888] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:48:04.893] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:04.970] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:48:04.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Esperanza/Calendar/February/26 and last: Cityscape of Ashland, Kentucky -[2018-02-13T00:48:05.048] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:48:05.272] [INFO] cheese - inserting 1000 documents. first: MDXLIV and last: Paris Peasant -[2018-02-13T00:48:05.305] [INFO] cheese - inserting 1000 documents. first: Bauntovskiy Evenkiyski Raion and last: Pine Hill (disambiguation) -[2018-02-13T00:48:05.326] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:48:05.360] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Pah Wongso and last: Deputy Secretary of the Department of Energy -[2018-02-13T00:48:05.381] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:48:05.463] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:48:05.515] [INFO] cheese - inserting 1000 documents. first: Diving at the 1960 Summer Olympics – Men's 10 metre platform and last: Oh rly? -[2018-02-13T00:48:05.533] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Zadanya garcia and last: Niceville High -[2018-02-13T00:48:05.549] [INFO] cheese - inserting 1000 documents. first: Dian hong tea and last: Triphoturus -[2018-02-13T00:48:05.574] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:48:05.624] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:48:05.660] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:48:05.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Jazz/Categories and last: Fairbanks Museum -[2018-02-13T00:48:05.956] [INFO] cheese - inserting 1000 documents. first: Boone County Airlines and last: Rino Benedettii -[2018-02-13T00:48:06.014] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:48:06.039] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:48:06.090] [INFO] cheese - inserting 1000 documents. first: Coronation Street: Episode 1 and last: Nacra Infusion -[2018-02-13T00:48:06.128] [INFO] cheese - inserting 1000 documents. first: Draft:Cocteaufest and last: Template:Internationalize -[2018-02-13T00:48:06.160] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:48:06.210] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:48:06.263] [INFO] cheese - inserting 1000 documents. first: Heather Kessler and last: Lamine Diack -[2018-02-13T00:48:06.301] [INFO] cheese - inserting 1000 documents. first: Louisa So and last: Ali Tajvidi -[2018-02-13T00:48:06.309] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:48:06.382] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:48:06.545] [INFO] cheese - inserting 1000 documents. first: Barbus pobeguini and last: Brazelton, William -[2018-02-13T00:48:06.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Emilydickinsonmason7534 and last: MV Toko Maru -[2018-02-13T00:48:06.589] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:48:06.661] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:48:06.689] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Jack Lawrence (musician) and last: Megachile peculifera -[2018-02-13T00:48:06.694] [INFO] cheese - inserting 1000 documents. first: 2012 Kurume Best Amenity International Women's Tennis – Doubles and last: Portal:Scotland/Selected article/Week 23, 2012 -[2018-02-13T00:48:06.739] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:48:06.761] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:48:06.797] [INFO] cheese - inserting 1000 documents. first: Category:Characters in mystery novel series by century and last: Poornathrayeesa Temple -[2018-02-13T00:48:06.859] [INFO] cheese - inserting 1000 documents. first: James Findlay (congressman) and last: Wikipedia:Esperanza/Calendar/January/29 -[2018-02-13T00:48:06.860] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:48:06.945] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:48:06.990] [INFO] cheese - inserting 1000 documents. first: Brazier, William and last: Vladimir Ivanovich Stepanov -[2018-02-13T00:48:07.033] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:48:07.062] [INFO] cheese - inserting 1000 documents. first: Toko Maru and last: Bolsheuluysky District -[2018-02-13T00:48:07.118] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:07.321] [INFO] cheese - inserting 1000 documents. first: John Oglander and last: Template:Youvegotmail -[2018-02-13T00:48:07.381] [INFO] cheese - inserting 1000 documents. first: 2008–09 Nemzeti Bajnokság I and last: Category:Characters in British novels of the 21st century -[2018-02-13T00:48:07.386] [INFO] cheese - inserting 1000 documents. first: Category:2015 in sambo and last: Marcos Salas Contreras -[2018-02-13T00:48:07.407] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:48:07.465] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:48:07.465] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:48:07.513] [INFO] cheese - inserting 1000 documents. first: Draft:Iván Morales Bravo and last: Matthew Boulton (epidemiologist) -[2018-02-13T00:48:07.540] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Esperanza/Calendar/January/31 and last: Comtessa de Dia -[2018-02-13T00:48:07.553] [INFO] cheese - inserting 1000 documents. first: Catocala ixion and last: Ameen Rihani bibliography -[2018-02-13T00:48:07.570] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:48:07.581] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:48:07.629] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:48:07.970] [INFO] cheese - inserting 1000 documents. first: North Schleswig and last: Media Agua -[2018-02-13T00:48:07.998] [INFO] cheese - inserting 1000 documents. first: Category:Jordin Sparks and last: Boom (album) -[2018-02-13T00:48:08.005] [INFO] cheese - inserting 1000 documents. first: Category:Corruption in Slovenia and last: Wikipedia:Miscellany for deletion/User:Hartsellml -[2018-02-13T00:48:08.015] [INFO] cheese - inserting 1000 documents. first: USS Tensaw (YT-418) and last: Carnforth station -[2018-02-13T00:48:08.014] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:48:08.022] [INFO] cheese - inserting 1000 documents. first: Libby Mettam and last: Megachile pusilla -[2018-02-13T00:48:08.042] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:48:08.059] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:08.059] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:48:08.082] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:48:08.215] [INFO] cheese - inserting 1000 documents. first: Neumont University and last: What's That Shadow? -[2018-02-13T00:48:08.264] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:48:08.312] [INFO] cheese - inserting 1000 documents. first: Great Falls Expo Park and last: Masini Situ Kumbanga -[2018-02-13T00:48:08.347] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:48:08.356] [INFO] cheese - inserting 1000 documents. first: Euterebra fernandesi and last: Keep It Movin' (album) -[2018-02-13T00:48:08.386] [INFO] cheese - inserting 1000 documents. first: Coat of arms of Zürich and last: Mid Northamptonshire by-election, 1892 -[2018-02-13T00:48:08.396] [INFO] cheese - inserting 1000 documents. first: 154th Tactical Reconnaissance Squadron and last: Return of the Crimson Guard -[2018-02-13T00:48:08.399] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:08.432] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:48:08.469] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:48:08.480] [INFO] cheese - inserting 1000 documents. first: John. Gibson (songwriter) and last: Kareem Valentine -[2018-02-13T00:48:08.517] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:08.624] [INFO] cheese - inserting 1000 documents. first: Martin Stern and last: J. B. Gunn -[2018-02-13T00:48:08.691] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:48:08.716] [INFO] cheese - inserting 1000 documents. first: Lake Mâțelor and last: Template:Dominican Summer League Diamondbacks 2 roster -[2018-02-13T00:48:08.737] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/auburnfansite.com and last: The Great Heroes -[2018-02-13T00:48:08.781] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:48:08.803] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:48:08.824] [INFO] cheese - inserting 1000 documents. first: Kennedy Farm and last: Łazy Commune -[2018-02-13T00:48:08.854] [INFO] cheese - inserting 1000 documents. first: Akiodoris and last: American Experience (season 6) -[2018-02-13T00:48:08.902] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:48:08.953] [INFO] cheese - inserting 1000 documents. first: Category:Lists of National Football League retired numbers and last: File:Tunnel War Cover Picture.jpg -[2018-02-13T00:48:08.981] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:48:09.114] [INFO] cheese - inserting 1000 documents. first: Gmina Lazy and last: Siemiatkowo Commune -[2018-02-13T00:48:09.150] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:48:09.158] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:48:09.316] [INFO] cheese - inserting 1000 documents. first: Choraut and last: File:Maria the Maid.jpg -[2018-02-13T00:48:09.364] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:48:09.389] [INFO] cheese - inserting 1000 documents. first: File:Magnets (The Vapors album) coverart.jpg and last: The Oriely Factor -[2018-02-13T00:48:09.406] [INFO] cheese - inserting 1000 documents. first: Category:Sports competitions in Cyprus and last: Navy-Wright XF3W-1 Apache -[2018-02-13T00:48:09.447] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:48:09.494] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:48:09.598] [INFO] cheese - inserting 1000 documents. first: Category:Industry by city and last: Peaky Blinders (series 2) -[2018-02-13T00:48:09.629] [INFO] cheese - inserting 1000 documents. first: Siennica Commune and last: Arno Suislep -[2018-02-13T00:48:09.663] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:48:09.689] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:48:09.804] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Part One of the Constitution of India and last: Template:Footer CAC Champions 100m Freestyle Men -[2018-02-13T00:48:09.850] [INFO] cheese - inserting 1000 documents. first: Fetislam and last: Taeniotes albiplagiatus -[2018-02-13T00:48:09.876] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:48:09.908] [INFO] cheese - inserting 1000 documents. first: Category:Converts to Judaism from Anglicanism and last: List of United States Navy ships: N-O -[2018-02-13T00:48:09.916] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:09.943] [INFO] cheese - inserting 1000 documents. first: List of U.S. military vessels named after Presidents and last: File:Open water.JPG -[2018-02-13T00:48:09.987] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:48:10.033] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:48:10.098] [INFO] cheese - inserting 1000 documents. first: Category:1927–28 in Canadian ice hockey by team and last: Bas-Sassandra District -[2018-02-13T00:48:10.164] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:48:10.282] [INFO] cheese - inserting 1000 documents. first: Lasse Svan Hansen and last: HR 63 -[2018-02-13T00:48:10.348] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:48:10.415] [INFO] cheese - inserting 1000 documents. first: Maple-leafed plane and last: Draft:Max Eliscu (businessman) -[2018-02-13T00:48:10.421] [INFO] cheese - inserting 1000 documents. first: Juodis and last: Open Source Routing Machine -[2018-02-13T00:48:10.468] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:48:10.493] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:48:10.556] [INFO] cheese - inserting 1000 documents. first: Category:UN and last: Kate Major -[2018-02-13T00:48:10.659] [INFO] cheese - inserting 1000 documents. first: Category:Airships of the United States and last: Bi-parental care -[2018-02-13T00:48:10.661] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:48:10.758] [INFO] cheese - inserting 1000 documents. first: Template:1983 Atlantic Coast Conference baseball standings and last: Smithbooks -[2018-02-13T00:48:10.773] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:48:10.846] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:48:10.927] [INFO] cheese - inserting 1000 documents. first: Henry De Saussure and last: Herb Wakabayashi -[2018-02-13T00:48:10.979] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:48:10.995] [INFO] cheese - inserting 1000 documents. first: Western goblin and last: Personal assets tax -[2018-02-13T00:48:11.042] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:48:11.088] [INFO] cheese - inserting 1000 documents. first: Neyg and last: Category:Latter Day Saint movement in South Carolina -[2018-02-13T00:48:11.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jeudebelote.org and last: Protexarnis balanitis -[2018-02-13T00:48:11.129] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:48:11.175] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:48:11.179] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Disco79 and last: 25th Division (Japan) -[2018-02-13T00:48:11.240] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:48:11.293] [INFO] cheese - inserting 1000 documents. first: Who I Am (Lena Katina song) and last: Wikipedia:Sockpuppet investigations/Mediaent123 -[2018-02-13T00:48:11.337] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:48:11.410] [INFO] cheese - inserting 1000 documents. first: Draft:Indiana Forest Alliance and last: Cuckold Formation -[2018-02-13T00:48:11.453] [INFO] cheese - inserting 1000 documents. first: London Silly Nannies and last: Porte de Hal -[2018-02-13T00:48:11.461] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:48:11.469] [INFO] cheese - inserting 1000 documents. first: File:Garuda-di-dadaku.jpg and last: Salmson 9Za -[2018-02-13T00:48:11.521] [INFO] cheese - inserting 1000 documents. first: Battle of al-Auja and last: Tom Van Meter -[2018-02-13T00:48:11.527] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:48:11.535] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:48:11.563] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:11.625] [INFO] cheese - inserting 1000 documents. first: Melkite Greek Catholic Eparchy of Saint Michael Archangel in Sydney and last: Castles in Scotland -[2018-02-13T00:48:11.665] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:48:11.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meade Kincke and last: State Route 729 (Culpeper County, Virginia) -[2018-02-13T00:48:11.746] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:48:11.774] [INFO] cheese - inserting 1000 documents. first: Weaves (band) and last: Wikipedia:Miscellany for deletion/User:CmdrDan/Subpage Usage Examples -[2018-02-13T00:48:11.809] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:48:11.889] [INFO] cheese - inserting 1000 documents. first: Éric Battista and last: CPC Loop -[2018-02-13T00:48:11.915] [INFO] cheese - inserting 1000 documents. first: Kalahandi Balangir Koraput Region and last: Welch bounds -[2018-02-13T00:48:11.944] [INFO] cheese - inserting 1000 documents. first: Sergei Leonov and last: Robert Roloson Houses -[2018-02-13T00:48:11.943] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:48:11.960] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:48:12.042] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:48:12.148] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:RocketMaster/My Gallery and last: Takuya Murata -[2018-02-13T00:48:12.190] [INFO] cheese - inserting 1000 documents. first: Blue Sky Bones and last: Carol S. Aneshensel -[2018-02-13T00:48:12.209] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:48:12.281] [INFO] cheese - inserting 1000 documents. first: Template:British Columbia provincial election, 2013/Vancouver-Kensington and last: Parazelota mima -[2018-02-13T00:48:12.299] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:48:12.331] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:48:12.506] [INFO] cheese - inserting 1000 documents. first: File:MadMazAus.jpg and last: Michael Flynn (disambiguation) -[2018-02-13T00:48:12.544] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:48:12.549] [INFO] cheese - inserting 1000 documents. first: Local cluster and last: Anagasta kuchinella -[2018-02-13T00:48:12.565] [INFO] cheese - inserting 1000 documents. first: Fahda bint Saud Al Saud and last: Cand. real. -[2018-02-13T00:48:12.602] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:48:12.682] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:48:12.918] [INFO] cheese - inserting 1000 documents. first: Toowoomba Permanent Building Society and last: United States Senate election in Virginia, 1871 -[2018-02-13T00:48:12.925] [INFO] cheese - inserting 1000 documents. first: Jin'an Open and last: Royal Bank of Canada Building, Havana -[2018-02-13T00:48:12.929] [INFO] cheese - inserting 1000 documents. first: Association of Zoos & Aquariums and last: Runcinia acuminata -[2018-02-13T00:48:12.996] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:48:13.007] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:48:13.037] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:48:13.236] [INFO] cheese - inserting 1000 documents. first: File:Res pantages grillworkers.jpg and last: Wikipedia:Articles for deletion/Log/2008 June 11 -[2018-02-13T00:48:13.362] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:48:13.430] [INFO] cheese - inserting 1000 documents. first: Yehuda Bacon and last: Arsaber -[2018-02-13T00:48:13.481] [INFO] cheese - inserting 1000 documents. first: Nonsensical song and last: William Bate Hardy Prize -[2018-02-13T00:48:13.537] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:48:13.576] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:48:13.630] [INFO] cheese - inserting 1000 documents. first: AMD RX Vega series and last: Ter-Mkrtychyan -[2018-02-13T00:48:13.687] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:48:13.693] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Virginia, 1877 and last: Wikipedia:Articles for deletion/Esmat Yahia -[2018-02-13T00:48:13.751] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:48:13.810] [INFO] cheese - inserting 1000 documents. first: File:Ciis main building.jpg and last: Narendra chanchal -[2018-02-13T00:48:13.949] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:48:14.141] [INFO] cheese - inserting 1000 documents. first: Cedar Lake Speedway and last: Bandini 750 sport internazionale -[2018-02-13T00:48:14.202] [INFO] cheese - inserting 1000 documents. first: Capillary haemangioma and last: Karratha Senior High School -[2018-02-13T00:48:14.207] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:48:14.260] [INFO] cheese - inserting 1000 documents. first: House of Odd and last: Broads National Park -[2018-02-13T00:48:14.288] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:48:14.360] [INFO] cheese - inserting 1000 documents. first: MOS:TITLECASE and last: Wikipedia:Featured list candidates/List of accolades received by Madras (film)/archive1 -[2018-02-13T00:48:14.350] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:48:14.426] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:48:14.439] [INFO] cheese - inserting 1000 documents. first: På vårt sätt (Scotts album) and last: Category:Concert tours of Canada -[2018-02-13T00:48:14.453] [INFO] cheese - inserting 1000 documents. first: Ayw and last: Tropic Sun Theatre -[2018-02-13T00:48:14.506] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:48:14.514] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:48:14.659] [INFO] cheese - inserting 1000 documents. first: Guy Butler (disambiguation) and last: 1999–2000 United States network television schedule (weekday) -[2018-02-13T00:48:14.739] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:48:14.841] [INFO] cheese - inserting 1000 documents. first: File:The Age of Kali.jpg and last: List of UK Rock & Metal Albums Chart number ones of 2005 -[2018-02-13T00:48:14.877] [INFO] cheese - inserting 1000 documents. first: Wojciech Seweryn and last: Sixtus IV Appointing Platina as Prefect of the Vatican Library -[2018-02-13T00:48:14.878] [INFO] cheese - inserting 1000 documents. first: Bernardino de Mendoza y Pacheco (Captain General) and last: Leiopus nebulosus -[2018-02-13T00:48:14.916] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:48:14.941] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:48:14.949] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:48:15.049] [INFO] cheese - inserting 1000 documents. first: Category:Central Michigan Chippewas football coaches and last: Perap -[2018-02-13T00:48:15.077] [INFO] cheese - inserting 1000 documents. first: Dongsha Marine National Park and last: Círculo de Escritores Cinematográficos -[2018-02-13T00:48:15.146] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:48:15.149] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:48:15.474] [INFO] cheese - inserting 1000 documents. first: Dundee United F.C. in the 1970s and last: Moara, Burkina Faso -[2018-02-13T00:48:15.527] [INFO] cheese - inserting 1000 documents. first: California Numb and last: Everhart, William -[2018-02-13T00:48:15.559] [INFO] cheese - inserting 1000 documents. first: Seyyedadan and last: File:GaryBarlow&TCB.jpg -[2018-02-13T00:48:15.560] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:48:15.611] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:48:15.664] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:48:15.801] [INFO] cheese - inserting 1000 documents. first: Trọng Nguyễn and last: Draft:Ford Transit Courier -[2018-02-13T00:48:15.808] [INFO] cheese - inserting 1000 documents. first: Violeta Urmanavičiūtė and last: NEAT 8 -[2018-02-13T00:48:15.811] [INFO] cheese - inserting 1000 documents. first: Bir Foda and last: K-1 MAX Final 16 -[2018-02-13T00:48:15.847] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:48:15.851] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:48:15.885] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:48:15.995] [INFO] cheese - inserting 1000 documents. first: Template:Namibia-rugbyunion-bio-stub and last: 1934 National Challenge Cup -[2018-02-13T00:48:16.038] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:48:16.087] [INFO] cheese - inserting 1000 documents. first: Everingham, William and last: Feetham, William -[2018-02-13T00:48:16.096] [INFO] cheese - inserting 1000 documents. first: Category:National Football League franchise relocations and last: Pixley Airport -[2018-02-13T00:48:16.132] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:48:16.143] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:48:16.185] [INFO] cheese - inserting 1000 documents. first: James Ford Bell Museum of Natural History and last: Cone of answers -[2018-02-13T00:48:16.218] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:16.302] [INFO] cheese - inserting 1000 documents. first: Adrien-Nicolas Piédefer, marquis de La Salle and last: Vera Gibson-Amado -[2018-02-13T00:48:16.304] [INFO] cheese - inserting 1000 documents. first: Progeria syndrome and last: File:Should Have Seen It Coming.jpg -[2018-02-13T00:48:16.340] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:48:16.342] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:16.399] [INFO] cheese - inserting 1000 documents. first: Uzbekistan women's national rugby union team and last: Kenneth Doraty -[2018-02-13T00:48:16.434] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:48:16.514] [INFO] cheese - inserting 1000 documents. first: Ono.es and last: Wikipedia:Articles for deletion/The Babies -[2018-02-13T00:48:16.586] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:48:16.592] [INFO] cheese - inserting 1000 documents. first: Eurycreon leucostictalis and last: Black Mirror episodes -[2018-02-13T00:48:16.638] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:48:16.727] [INFO] cheese - inserting 1000 documents. first: Fehlandt, William and last: File:RSSM State Prize.png -[2018-02-13T00:48:16.780] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:48:16.788] [INFO] cheese - inserting 1000 documents. first: Category:Anglican schools in India and last: Argiphila inquinatella -[2018-02-13T00:48:16.839] [INFO] cheese - inserting 1000 documents. first: Boyz N Da Hood (album) and last: Percy Girouard -[2018-02-13T00:48:16.894] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:48:16.920] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:48:17.053] [INFO] cheese - inserting 1000 documents. first: Riddim Driven: Engine and last: Wikipedia:Featured list candidates/List of Cincinnati Bengals head coaches -[2018-02-13T00:48:17.159] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:48:17.163] [INFO] cheese - inserting 1000 documents. first: Kalimullah Khan and last: Mordellistena flavospinosa -[2018-02-13T00:48:17.183] [INFO] cheese - inserting 1000 documents. first: Category:Classical albums by Japanese artists and last: Wikipedia:Reference desk/Archives/Language/2014 October 18 -[2018-02-13T00:48:17.226] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:48:17.265] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:48:17.385] [INFO] cheese - inserting 1000 documents. first: Pediasia inquinatalis and last: Burton Berry -[2018-02-13T00:48:17.398] [INFO] cheese - inserting 1000 documents. first: Somewhere (Soundgarden song) and last: Frontier Scout -[2018-02-13T00:48:17.442] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:48:17.513] [INFO] cheese - inserting 1000 documents. first: Día da Patria Galega and last: Template:Fb competition 2004 Second League of Serbia and Montenegro playoffs -[2018-02-13T00:48:17.525] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:48:17.579] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:48:17.644] [INFO] cheese - inserting 1000 documents. first: Drunk Horse and last: Impact, Mueang Thong Thani -[2018-02-13T00:48:17.763] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:48:17.907] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2014 October 18 and last: Wilfried Trott -[2018-02-13T00:48:17.910] [INFO] cheese - inserting 1000 documents. first: CP-39,332 and last: Ashlyne Huff -[2018-02-13T00:48:17.948] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:17.988] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:48:18.141] [INFO] cheese - inserting 1000 documents. first: Dyera and last: Torodo -[2018-02-13T00:48:18.191] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:48:18.209] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures completed in 1107 and last: Portal:Bible/Featured chapter/Proverbs 9 -[2018-02-13T00:48:18.264] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:48:18.278] [INFO] cheese - inserting 1000 documents. first: Trebbi and last: File:Limo driver.ogg -[2018-02-13T00:48:18.344] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:48:18.364] [INFO] cheese - inserting 1000 documents. first: 2009 Aberto Santa Catarina De Tenis and last: Highway 546 (Ontario) -[2018-02-13T00:48:18.389] [INFO] cheese - inserting 1000 documents. first: German Society for Hygiene and Microbiology and last: Category:Sexual violence -[2018-02-13T00:48:18.402] [INFO] cheese - inserting 1000 documents. first: File:Mahakaliyantra.jpg and last: Category:Michigan high school sports conferences -[2018-02-13T00:48:18.408] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:48:18.445] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:48:18.462] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:48:18.631] [INFO] cheese - inserting 1000 documents. first: CoEur - In the heart of European paths and last: File:Day-O (1992) Film Poster.jpg -[2018-02-13T00:48:18.666] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:48:18.669] [INFO] cheese - inserting 1000 documents. first: Ásgeir Hallgrimsson and last: 2008 HomeSense Skate Canada International -[2018-02-13T00:48:18.723] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:48:18.778] [INFO] cheese - inserting 1000 documents. first: Highway 547 (Ontario) and last: Miles M.27 -[2018-02-13T00:48:18.851] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:48:18.928] [INFO] cheese - inserting 1000 documents. first: Dalek War: Chapter Two and last: Phantom Limb (song) -[2018-02-13T00:48:18.938] [INFO] cheese - inserting 1000 documents. first: Category:Christian music albums by English artists and last: Louis Joseph Hill -[2018-02-13T00:48:18.993] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:48:18.997] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:19.019] [INFO] cheese - inserting 1000 documents. first: Siri (MacOS) and last: Category:Defunct sports competitions in Singapore -[2018-02-13T00:48:19.058] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:48:19.261] [INFO] cheese - inserting 1000 documents. first: 2008 Homesense Skate Canada International and last: Category:Vocational education in the Philippines -[2018-02-13T00:48:19.328] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:48:19.367] [INFO] cheese - inserting 1000 documents. first: Portal:Heraldry/DYK/1/26 and last: Hs-100 -[2018-02-13T00:48:19.461] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:48:19.578] [INFO] cheese - inserting 1000 documents. first: Category:Defunct sports competitions in South Africa and last: Category:Puttalam District society -[2018-02-13T00:48:19.666] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:48:19.728] [INFO] cheese - inserting 1000 documents. first: Justice Palace and last: Miss Utah -[2018-02-13T00:48:19.788] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:48:19.836] [INFO] cheese - inserting 1000 documents. first: Beach athletics at the 2014 Asian Beach Games and last: Uist & Barra Amateur Football Association -[2018-02-13T00:48:19.904] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese sociologists and last: Cillian Boyd -[2018-02-13T00:48:19.912] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:48:19.937] [INFO] cheese - inserting 1000 documents. first: Henrik Arnold Thaulow Wergeland and last: Ogi-ohashi Station -[2018-02-13T00:48:19.983] [INFO] cheese - inserting 1000 documents. first: Hs-200 and last: Category:Buildings and structures in the Republic of Ireland by city -[2018-02-13T00:48:20.006] [INFO] cheese - batch complete in: 1.742 secs -[2018-02-13T00:48:20.021] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:48:20.046] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:48:20.081] [INFO] cheese - inserting 1000 documents. first: Lü Zhong and last: Draft:Jeffrey Thomas -[2018-02-13T00:48:20.130] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:48:20.351] [INFO] cheese - inserting 1000 documents. first: Allen Mendler and last: 1099 Figneria -[2018-02-13T00:48:20.405] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:48:20.468] [INFO] cheese - inserting 1000 documents. first: MobileSafari and last: Gaongo -[2018-02-13T00:48:20.472] [INFO] cheese - inserting 1000 documents. first: Styles Brook and last: Diocese of Virginia -[2018-02-13T00:48:20.478] [INFO] cheese - inserting 1000 documents. first: Template:Henri Verneuil and last: Ivan Pecel -[2018-02-13T00:48:20.534] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:48:20.547] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:20.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Specifically Feminine-Feminist Narrative and last: Pyridinylpiperazine -[2018-02-13T00:48:20.589] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:48:20.667] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:48:20.810] [INFO] cheese - inserting 1000 documents. first: Royal consorts of Sweden and last: Siksashtaka -[2018-02-13T00:48:20.854] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:48:21.013] [INFO] cheese - inserting 1000 documents. first: West Hills Hospital and last: Meshullam (son of Besodeiah) -[2018-02-13T00:48:21.060] [INFO] cheese - inserting 1000 documents. first: Tony O'Gorman and last: Category:Mexican ophthalmologists -[2018-02-13T00:48:21.068] [INFO] cheese - inserting 1000 documents. first: Gero Camilo and last: Sata Lota Pan Sagla Khota -[2018-02-13T00:48:21.092] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:48:21.118] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:48:21.127] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:48:21.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pyaarkabandhan.com and last: File:Pussboots.jpg -[2018-02-13T00:48:21.243] [INFO] cheese - inserting 1000 documents. first: Philippine Basques and last: Tachornis phoenicobia -[2018-02-13T00:48:21.295] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:48:21.308] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:48:21.504] [INFO] cheese - inserting 1000 documents. first: Head of Government of Egypt and last: Navraj -[2018-02-13T00:48:21.547] [INFO] cheese - inserting 1000 documents. first: Giuseppe Benedetto Dusmet and last: John Tréllez -[2018-02-13T00:48:21.574] [INFO] cheese - inserting 1000 documents. first: Abigail Watson and last: Category:Renova Group -[2018-02-13T00:48:21.583] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:48:21.628] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:48:21.647] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:48:21.913] [INFO] cheese - inserting 1000 documents. first: Krasnogorsky District, Altai Krai and last: Category:Villages in Rudraprayag district -[2018-02-13T00:48:21.919] [INFO] cheese - inserting 1000 documents. first: Template:John Singleton and last: Carlos Averhoff "Sax" -[2018-02-13T00:48:21.981] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:48:21.985] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:22.193] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Myscelia and last: University of California Extension -[2018-02-13T00:48:22.228] [INFO] cheese - inserting 1000 documents. first: Padaleeputhram and last: Category:AfC submissions by date/06 November 2014 -[2018-02-13T00:48:22.254] [INFO] cheese - inserting 1000 documents. first: List of listed buildings in Kingoldrum, Angus and last: Lithium-ion battery recalls -[2018-02-13T00:48:22.276] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:48:22.283] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:48:22.395] [INFO] cheese - batch complete in: 2.389 secs -[2018-02-13T00:48:22.418] [INFO] cheese - inserting 1000 documents. first: The Israel Project and last: Wikipedia:Articles for deletion/Out Here Grindin' -[2018-02-13T00:48:22.488] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:48:22.494] [INFO] cheese - inserting 1000 documents. first: Wyrley and Cheslyn Hay railway station and last: Category:Books by Tony Hillerman -[2018-02-13T00:48:22.562] [INFO] cheese - inserting 1000 documents. first: A. australis and last: AC-2 (cable system) -[2018-02-13T00:48:22.571] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:22.593] [INFO] cheese - inserting 1000 documents. first: 2014 midterm elections and last: File:Phoenix Stadium.jpg -[2018-02-13T00:48:22.651] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:48:22.652] [INFO] cheese - inserting 1000 documents. first: Symphony for Solo Piano (Alkan) and last: Balasinor (Vidhan Sabha constituency) -[2018-02-13T00:48:22.655] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:48:22.720] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:48:22.972] [INFO] cheese - inserting 1000 documents. first: Ma Yongfeng and last: Economy of Medieval England -[2018-02-13T00:48:22.974] [INFO] cheese - inserting 1000 documents. first: Canton of Cluses and last: Category:Japanese disability organizations -[2018-02-13T00:48:22.979] [INFO] cheese - inserting 1000 documents. first: Megamalai Wildlife Sanctuary and last: Mubungere -[2018-02-13T00:48:22.979] [INFO] cheese - inserting 1000 documents. first: Red-and-black colobus and last: Project Megiddo -[2018-02-13T00:48:23.018] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:23.046] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:48:23.049] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:48:23.047] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:48:23.140] [INFO] cheese - inserting 1000 documents. first: UK-414495 and last: Template:MAAC Men's Basketball Player of the Year -[2018-02-13T00:48:23.140] [INFO] cheese - inserting 1000 documents. first: File:The Vanishings (Left Behind Book).jpg and last: Brian Bigger -[2018-02-13T00:48:23.197] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:48:23.233] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:48:23.581] [INFO] cheese - inserting 1000 documents. first: Category:2005 FIFA Confederations Cup and last: Flanagan, Thomas Canon -[2018-02-13T00:48:23.587] [INFO] cheese - inserting 1000 documents. first: Grampians by-election, 1917 and last: Wikipedia:Articles for deletion/UTasker -[2018-02-13T00:48:23.679] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:48:23.689] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:48:23.702] [INFO] cheese - inserting 1000 documents. first: Frankism and last: Nevel'ski Raion -[2018-02-13T00:48:23.759] [INFO] cheese - inserting 1000 documents. first: Roxane Dawson and last: Bee eaters -[2018-02-13T00:48:23.782] [INFO] cheese - inserting 1000 documents. first: Thoracic injuries and last: File:PFM Jetlag.jpg -[2018-02-13T00:48:23.790] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:48:23.807] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:48:23.868] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:48:23.956] [INFO] cheese - inserting 1000 documents. first: Category:Jordanian disability organisations and last: Ernakulam–Kayamkulam coastal railway line -[2018-02-13T00:48:24.049] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T00:48:24.212] [INFO] cheese - inserting 1000 documents. first: MEGAL pipeline and last: Portal:Arizona/Selected picture/9 -[2018-02-13T00:48:24.216] [INFO] cheese - inserting 1000 documents. first: Category:Books by Richard A. Muller and last: Vagra (Vidhan Sabha constituency) -[2018-02-13T00:48:24.304] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:48:24.317] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:48:24.334] [INFO] cheese - inserting 1000 documents. first: Edward Mordrake and last: Čop Street, Ljubljana -[2018-02-13T00:48:24.421] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:48:24.425] [INFO] cheese - inserting 1000 documents. first: Matthias Habich and last: Andrew J. Thayer -[2018-02-13T00:48:24.437] [INFO] cheese - inserting 1000 documents. first: Family dysfunctions and last: Dil Ki Baat -[2018-02-13T00:48:24.515] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:48:24.537] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:48:24.573] [INFO] cheese - inserting 1000 documents. first: Big Time Wrestling (Stu Hart promotion) and last: Wikipedia:Articles for deletion/Sporting Patna FC -[2018-02-13T00:48:24.659] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:48:24.844] [INFO] cheese - inserting 1000 documents. first: Portal:U.S. Roads/Selected picture/December 2014 and last: Medrylamine -[2018-02-13T00:48:24.883] [INFO] cheese - inserting 1000 documents. first: Lincoln City, Delaware and last: Gil of Santarem, Blessed -[2018-02-13T00:48:24.889] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:48:24.930] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:48:24.933] [INFO] cheese - inserting 1000 documents. first: Max Puig and last: Brassy minnow -[2018-02-13T00:48:24.967] [INFO] cheese - inserting 1000 documents. first: Category:The Simpsons (season 17) episodes and last: Fljótshlíð -[2018-02-13T00:48:25.007] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:25.041] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:48:25.090] [INFO] cheese - inserting 1000 documents. first: Quran Oath Controversy of the 110th United States Congress and last: 107th Fighter Squadron -[2018-02-13T00:48:25.150] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:48:25.216] [INFO] cheese - inserting 1000 documents. first: File:TumbleweedTheaterIntro.jpg and last: Joshaviah -[2018-02-13T00:48:25.271] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:48:25.368] [INFO] cheese - inserting 1000 documents. first: Ffestiniog transmitting station and last: Pseudotomoxia quadrinotata -[2018-02-13T00:48:25.405] [INFO] cheese - inserting 1000 documents. first: Liver dysfunction and last: Embury -[2018-02-13T00:48:25.408] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:48:25.413] [INFO] cheese - inserting 1000 documents. first: 2012–13 Mersin İdmanyurdu season and last: Rhizoplaca chrysoleuca -[2018-02-13T00:48:25.453] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:48:25.507] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:48:25.559] [INFO] cheese - inserting 1000 documents. first: File:Male chicken (Gallus gallus domesticus) with prominent plumage.jpg and last: Farakka dam -[2018-02-13T00:48:25.602] [INFO] cheese - inserting 1000 documents. first: Category:Angolan female middle-distance runners and last: Melkite Greek Catholic Archeparchy of Sidon and Deir el-Kamar -[2018-02-13T00:48:25.612] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:48:25.637] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:48:25.732] [INFO] cheese - inserting 1000 documents. first: Glosses, Scriptural and last: Bungo Township, Minnesota -[2018-02-13T00:48:25.749] [INFO] cheese - inserting 1000 documents. first: File:Pont Flavien, Bouches-du-Rhône, France. Pic 02.jpg and last: C14H15N5O -[2018-02-13T00:48:25.786] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:48:25.830] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:48:25.877] [INFO] cheese - inserting 1000 documents. first: File:Dar Chashm Bad .jpg and last: Portal:Capital District/Selected panorama/8 -[2018-02-13T00:48:25.925] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:48:26.048] [INFO] cheese - inserting 1000 documents. first: File:Life Is Toff titlecard.jpg and last: Robertsia -[2018-02-13T00:48:26.107] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:48:26.224] [INFO] cheese - inserting 1000 documents. first: Category:1895 in the Caribbean and last: List of Chief Justices of the United States -[2018-02-13T00:48:26.237] [INFO] cheese - inserting 1000 documents. first: Oldpark Avenue and last: Hendelove, William -[2018-02-13T00:48:26.265] [INFO] cheese - inserting 1000 documents. first: Yavana rani and last: Radio America (band) -[2018-02-13T00:48:26.280] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:48:26.305] [INFO] cheese - inserting 1000 documents. first: Crooked Lake Township, Minnesota and last: File:Nunavut coat of arms.jpg -[2018-02-13T00:48:26.309] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:48:26.333] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:48:26.403] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:48:26.422] [INFO] cheese - inserting 1000 documents. first: Hypsibema missouriensis and last: Ahistorical -[2018-02-13T00:48:26.477] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:26.585] [INFO] cheese - inserting 1000 documents. first: Sclerocladus and last: Capsule Inn Osaka -[2018-02-13T00:48:26.654] [INFO] cheese - inserting 1000 documents. first: Hendley, William and last: Category:Geology of Liaoning -[2018-02-13T00:48:26.659] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:26.694] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:48:26.700] [INFO] cheese - inserting 1000 documents. first: Arthur March and last: Ilse Lehiste -[2018-02-13T00:48:26.776] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:26.925] [INFO] cheese - inserting 1000 documents. first: Redlands Boulevard and last: File:Tylosema esculenta pod.PNG -[2018-02-13T00:48:26.982] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:48:26.990] [INFO] cheese - inserting 1000 documents. first: Norris-Whitney Communications Inc. and last: Fly, Robin, Fly -[2018-02-13T00:48:26.998] [INFO] cheese - inserting 1000 documents. first: Category:St. Louis Soccer League teams and last: Category:Basketball teams established in 1948 -[2018-02-13T00:48:27.057] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:48:27.077] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:48:27.236] [INFO] cheese - inserting 1000 documents. first: Category:Lists of historical drama films and last: Category:Articles needing sections from November 2014 -[2018-02-13T00:48:27.260] [INFO] cheese - inserting 1000 documents. first: Nephusim and last: Category:People from Franklin, Michigan -[2018-02-13T00:48:27.316] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:48:27.385] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:48:27.445] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Austria by millennium and last: Rákóczi Avenue -[2018-02-13T00:48:27.496] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:48:27.572] [INFO] cheese - inserting 1000 documents. first: NOKR and last: Southern Carnarvon Basin -[2018-02-13T00:48:27.640] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:48:27.699] [INFO] cheese - inserting 1000 documents. first: Template:Location map Saint Martin and last: Bamum script -[2018-02-13T00:48:27.737] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:48:27.768] [INFO] cheese - inserting 1000 documents. first: Lesbisk Bevægelse and last: Kidston, William -[2018-02-13T00:48:27.811] [INFO] cheese - inserting 1000 documents. first: Cathar castle and last: Sand and Pebbles -[2018-02-13T00:48:27.810] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:48:27.866] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:48:27.894] [INFO] cheese - inserting 1000 documents. first: Category:Articles needing cleanup from November 2014 and last: Campilostachis -[2018-02-13T00:48:27.911] [INFO] cheese - inserting 1000 documents. first: Ambrym Island and last: Crystal Lagoons -[2018-02-13T00:48:27.951] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:48:27.948] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:48:28.115] [INFO] cheese - inserting 1000 documents. first: Narsinhrao Divetia and last: Cotonopsis phuketensis -[2018-02-13T00:48:28.125] [INFO] cheese - inserting 1000 documents. first: Kiernan, William and last: Rakkath -[2018-02-13T00:48:28.145] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:48:28.151] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:48:28.234] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Airports/New articles/Archive 2008 and last: Werewolf Sonic -[2018-02-13T00:48:28.235] [INFO] cheese - inserting 1000 documents. first: Year Zero (album) and last: Category:Roman Catholic Ecclesiastical Province of Nouméa -[2018-02-13T00:48:28.265] [INFO] cheese - inserting 1000 documents. first: Kandewe Heritage Centre and last: Giacomo Bazzan -[2018-02-13T00:48:28.274] [INFO] cheese - inserting 1000 documents. first: Ampol Tangnoppakul and last: Implicit Runge–Kutta method -[2018-02-13T00:48:28.277] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:48:28.288] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:48:28.310] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:28.354] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:48:28.510] [INFO] cheese - inserting 1000 documents. first: Category:1553 establishments in the Ottoman Empire and last: Category:Danish still life painters -[2018-02-13T00:48:28.576] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:48:28.715] [INFO] cheese - inserting 1000 documents. first: Euplica brunnidentata and last: Ardenode -[2018-02-13T00:48:28.803] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:48:28.815] [INFO] cheese - inserting 1000 documents. first: Elkem ASA and last: All Quiet on the Western Front (song) -[2018-02-13T00:48:28.871] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:48:28.890] [INFO] cheese - inserting 1000 documents. first: Ingebrigt Belle and last: Hugo Maiocco -[2018-02-13T00:48:28.892] [INFO] cheese - inserting 1000 documents. first: Nezela and last: File:Suhozanet.jpg -[2018-02-13T00:48:28.986] [INFO] cheese - inserting 1000 documents. first: 2017–18 Orlando Magic season and last: Opae -[2018-02-13T00:48:29.069] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:48:29.166] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:48:29.184] [INFO] cheese - inserting 1000 documents. first: Portal:Library and last: New Bedford Standard-Times -[2018-02-13T00:48:29.221] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:48:29.421] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:48:29.699] [INFO] cheese - inserting 1000 documents. first: Harold Raynor and last: Chryseofusus subangulatus -[2018-02-13T00:48:29.704] [INFO] cheese - inserting 1000 documents. first: Mapping of Airline Traffic over Internet Protocol and last: Abdul Haleem -[2018-02-13T00:48:29.801] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:48:29.818] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T00:48:29.846] [INFO] cheese - inserting 1000 documents. first: Chyorny (inhabited locality) and last: Vladimír Rusnák -[2018-02-13T00:48:29.894] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:48:29.915] [INFO] cheese - inserting 1000 documents. first: Millie Simmonds and last: Template:Taxonomy/Dodonaea -[2018-02-13T00:48:29.957] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:48:30.068] [INFO] cheese - inserting 1000 documents. first: New Bedford Standard Times and last: Category:International ice hockey competitions hosted by Latvia -[2018-02-13T00:48:30.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Allegations of state terrorism by United States of America (3rd nomination) and last: Tenth Letter (Plato) -[2018-02-13T00:48:30.107] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:30.143] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:48:30.246] [INFO] cheese - inserting 1000 documents. first: Fair Park Medical Careers Magnet High School and last: File:Harold (2008 film character).jpg -[2018-02-13T00:48:30.287] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:48:30.308] [INFO] cheese - inserting 1000 documents. first: Fusinus suturalis and last: Travis d'Arnaud -[2018-02-13T00:48:30.340] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:48:30.379] [INFO] cheese - inserting 1000 documents. first: Category:West Virginia elections, 1898 and last: Wikipedia:Copyright problems/preload -[2018-02-13T00:48:30.390] [INFO] cheese - inserting 1000 documents. first: Chahar Farsakh and last: Boeing SLV -[2018-02-13T00:48:30.416] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:48:30.433] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:48:30.449] [INFO] cheese - inserting 1000 documents. first: Category:American explorers of the Pacific and last: File:Portion of ((tag)) testcases page.jpg -[2018-02-13T00:48:30.490] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:48:30.532] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Martin Luther King, Jr./archive1 and last: Teziutlán, Puebla -[2018-02-13T00:48:30.564] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:48:30.569] [INFO] cheese - inserting 1000 documents. first: No ni Saku Hana no Yō ni and last: Keroppi -[2018-02-13T00:48:30.615] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:48:30.668] [INFO] cheese - inserting 1000 documents. first: Shulamit Cohen-Kishik and last: KDEF -[2018-02-13T00:48:30.696] [INFO] cheese - inserting 1000 documents. first: Rossmoor, California and last: Yasuj Chain dam -[2018-02-13T00:48:30.706] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:48:30.713] [INFO] cheese - inserting 1000 documents. first: 1950 Wilkes 200 and last: Template:2012 Summer Olympics women's field hockey game B1 -[2018-02-13T00:48:30.738] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:48:30.755] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:48:30.868] [INFO] cheese - inserting 1000 documents. first: Nagaragawa Onsen and last: Trichambaram -[2018-02-13T00:48:30.908] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:48:30.937] [INFO] cheese - inserting 1000 documents. first: Yi Meng Wei Ma and last: Wikipedia:WikiProject Spam/LinkReports/concertconfessions.com -[2018-02-13T00:48:30.989] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:48:31.001] [INFO] cheese - inserting 1000 documents. first: Category:User ku-5 and last: Category:Defunct organisations of the Turks and Caicos Islands -[2018-02-13T00:48:31.042] [INFO] cheese - inserting 1000 documents. first: Category:Clubs and societies in Sweden and last: Telecommunications company -[2018-02-13T00:48:31.045] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:48:31.048] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Amanpreet S Sokhi and last: Rovny -[2018-02-13T00:48:31.078] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:48:31.097] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:48:31.131] [INFO] cheese - inserting 1000 documents. first: Template:Basketball-videogame-stub and last: Category:1994–95 domestic association football leagues -[2018-02-13T00:48:31.189] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:48:31.400] [INFO] cheese - inserting 1000 documents. first: Category:Defunct organisations of Uganda and last: File:The pond at Swaylands.jpg -[2018-02-13T00:48:31.433] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/concertconfessions.com and last: ASTRID (reactor) -[2018-02-13T00:48:31.436] [INFO] cheese - inserting 1000 documents. first: Divili and last: The Tai Chi Master -[2018-02-13T00:48:31.467] [INFO] cheese - inserting 1000 documents. first: Kapaneus and last: Abshir -[2018-02-13T00:48:31.489] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:48:31.543] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:48:31.552] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:48:31.592] [INFO] cheese - inserting 1000 documents. first: Rovny (disambiguation) and last: AEXS -[2018-02-13T00:48:31.588] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:48:31.670] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:48:31.719] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject China/Peer review/2007 and last: Stefan Korboński -[2018-02-13T00:48:31.783] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:48:31.879] [INFO] cheese - inserting 1000 documents. first: Visa requirements for Djibouti citizens and last: Endarasha -[2018-02-13T00:48:31.904] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:32.018] [INFO] cheese - inserting 1000 documents. first: Qeshlaq Khas and last: HD 221776 -[2018-02-13T00:48:32.023] [INFO] cheese - inserting 1000 documents. first: Category:1983 North Indian Ocean cyclone season and last: Category:Religion in Matara, Sri Lanka -[2018-02-13T00:48:32.075] [INFO] cheese - inserting 1000 documents. first: Zeynabad Sharqi and last: Fowlerichthys -[2018-02-13T00:48:32.076] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:48:32.085] [INFO] cheese - inserting 1000 documents. first: Falck USA and last: Alison Wonderland -[2018-02-13T00:48:32.115] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:48:32.146] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:48:32.170] [INFO] cheese - inserting 1000 documents. first: Bibee and last: Danzl -[2018-02-13T00:48:32.172] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:48:32.224] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:32.322] [INFO] cheese - inserting 1000 documents. first: Rocket Dive and last: Iuzhno-Kurilskiy District -[2018-02-13T00:48:32.383] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:48:32.555] [INFO] cheese - inserting 1000 documents. first: Gachichi and last: Flagsymphony -[2018-02-13T00:48:32.580] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Columbia County, Oregon and last: Category:Rivers of Ada County, Idaho -[2018-02-13T00:48:32.585] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:32.605] [INFO] cheese - inserting 1000 documents. first: Template:Arw and last: Template:2012 Summer Olympics men's field hockey game A15 -[2018-02-13T00:48:32.661] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:48:32.685] [INFO] cheese - inserting 1000 documents. first: 2003 Denver Broncos season and last: Museum of Indian Culture -[2018-02-13T00:48:32.687] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:48:32.784] [INFO] cheese - inserting 1000 documents. first: Jakab Marastoni and last: Shlomo Ben-Haim -[2018-02-13T00:48:32.784] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:48:32.922] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:48:32.944] [INFO] cheese - inserting 1000 documents. first: Iuzhno-Kurilski District and last: Cross Your T's and Gouge Your I's -[2018-02-13T00:48:33.036] [INFO] cheese - inserting 1000 documents. first: Flammario and last: John F. Kennedy Middle School (Northampton, Massachusetts) -[2018-02-13T00:48:33.045] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:48:33.081] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:33.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:School and university projects/Psyc3330 w12/Group13 and last: Mark Wentges -[2018-02-13T00:48:33.197] [INFO] cheese - inserting 1000 documents. first: Na Fianna GAA and last: SysVinit -[2018-02-13T00:48:33.206] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:48:33.277] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:48:33.318] [INFO] cheese - inserting 1000 documents. first: Category:Canadian people murdered abroad and last: Template:User USAFw2 -[2018-02-13T00:48:33.372] [INFO] cheese - inserting 1000 documents. first: Clarrie Shields and last: Kana Kacha railway station -[2018-02-13T00:48:33.380] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:48:33.449] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:48:33.465] [INFO] cheese - inserting 1000 documents. first: Kabieni and last: Jessenius -[2018-02-13T00:48:33.547] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:48:33.612] [INFO] cheese - inserting 1000 documents. first: Steve Jaffe and last: E. A. Smythies -[2018-02-13T00:48:33.702] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:48:33.747] [INFO] cheese - inserting 1000 documents. first: Template:2010-11 in Kenyan football - CAN Qualifiers matches and last: Gordon Wallace (Scottish footballer) -[2018-02-13T00:48:33.828] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:48:33.859] [INFO] cheese - inserting 1000 documents. first: Kholokhongo and last: Väinö Leskinen -[2018-02-13T00:48:33.896] [INFO] cheese - inserting 1000 documents. first: You Have to be Beautiful and last: Category:Buddhist temples in Monaragala District -[2018-02-13T00:48:33.936] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:48:33.967] [INFO] cheese - inserting 1000 documents. first: XEOQ-AM and last: James Knowles -[2018-02-13T00:48:33.990] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:48:33.995] [INFO] cheese - inserting 1000 documents. first: Over Stratton, Somerset and last: Roy Ferguson (rugby league) -[2018-02-13T00:48:34.056] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:48:34.068] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:48:34.259] [INFO] cheese - inserting 1000 documents. first: List of Grendizer characters and last: Template:Senior British Open Championship champions -[2018-02-13T00:48:34.265] [INFO] cheese - inserting 1000 documents. first: Choneteuthis and last: Anthony Claude Leach, Jr. -[2018-02-13T00:48:34.291] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:48:34.308] [INFO] cheese - inserting 1000 documents. first: Anthony Francis Nugent, 9th Earl of Westmeath and last: Olena Baltacha -[2018-02-13T00:48:34.317] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:48:34.395] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:48:34.447] [INFO] cheese - inserting 1000 documents. first: File:Ox the Fox.png and last: Two Weeks -[2018-02-13T00:48:34.524] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:48:34.602] [INFO] cheese - inserting 1000 documents. first: Mattgenge and last: Pajka -[2018-02-13T00:48:34.638] [INFO] cheese - inserting 1000 documents. first: File:Benjamin West - Joshua passing the River Jordan with the Ark of the Covenant - Google Art Project.jpg and last: Pionea xanthographa -[2018-02-13T00:48:34.641] [INFO] cheese - inserting 616 documents. first: Rose (2011 film) and last: Pethup Gompa -[2018-02-13T00:48:34.641] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:48:34.648] [INFO] cheese - inserting 1000 documents. first: Redpath Township, Minnesota and last: List of countries by irrigated land area -[2018-02-13T00:48:34.677] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:48:34.677] [INFO] cheese - worker pid:56525 is done. inserted 2763617 pages in 0 secs. -[2018-02-13T00:48:34.699] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:48:34.706] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:48:34.820] [INFO] cheese - inserting 1000 documents. first: Mohammad Baqer Baqeri and last: Soviet fleet -[2018-02-13T00:48:34.880] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:48:34.922] [INFO] cheese - inserting 1000 documents. first: Draft:Robert E. Bourdeau and last: Module:Country extract/BE -[2018-02-13T00:48:34.940] [INFO] cheese - inserting 1000 documents. first: Template:Bismuth compounds and last: Preussentum und Sozialismus -[2018-02-13T00:48:34.988] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:48:34.993] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:48:35.199] [INFO] cheese - inserting 1000 documents. first: Draft:BBC Lab UK and last: Klaw and Erlanger -[2018-02-13T00:48:35.240] [INFO] cheese - inserting 1000 documents. first: List of components of oil drilling rigs and last: List of Neo Angelique Abyss episodes -[2018-02-13T00:48:35.285] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:35.328] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:48:35.469] [INFO] cheese - inserting 1000 documents. first: List of Original Signers of the 1849 California Constitution and last: Pudsey & Otley -[2018-02-13T00:48:35.477] [INFO] cheese - inserting 1000 documents. first: Saddlemyer and last: File:JeepJamboreeGameBoyPic.jpg -[2018-02-13T00:48:35.540] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian female middle-distance runners and last: Electrical capacitance volume tomography -[2018-02-13T00:48:35.541] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:48:35.591] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:48:35.673] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:35.828] [INFO] cheese - inserting 1000 documents. first: Tabei and last: Yeshuhua -[2018-02-13T00:48:35.845] [INFO] cheese - inserting 1000 documents. first: Portal:Anarchism/Anniversaries/June/June 30 and last: Allosaurus tendagurensis -[2018-02-13T00:48:35.853] [INFO] cheese - inserting 1000 documents. first: Kundian Junction railway station and last: Wikipedia:Today's featured article/requests/Kenneth Walker -[2018-02-13T00:48:35.859] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:48:35.874] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:48:35.888] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:48:35.997] [INFO] cheese - inserting 1000 documents. first: Sword of François I and last: 2017-18 Duke Blue Devils men's basketball team -[2018-02-13T00:48:36.009] [INFO] cheese - inserting 1000 documents. first: Édouard Brissaud and last: Essex North -[2018-02-13T00:48:36.061] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:36.084] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:48:36.195] [INFO] cheese - inserting 1000 documents. first: Yeungchuchiu and last: Matolani -[2018-02-13T00:48:36.214] [INFO] cheese - inserting 1000 documents. first: HMS Gift (G45) and last: Priyam Priyamkaram -[2018-02-13T00:48:36.228] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:48:36.234] [INFO] cheese - inserting 1000 documents. first: Pizza-ghetti and last: Council Members -[2018-02-13T00:48:36.251] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:48:36.279] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:48:36.385] [INFO] cheese - inserting 1000 documents. first: Lady Jessie Street and last: Henry Chandler Bowen -[2018-02-13T00:48:36.432] [INFO] cheese - inserting 1000 documents. first: Frank Buckley (businessman) and last: If This Is Hell, Then I'm Lucky -[2018-02-13T00:48:36.432] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:36.482] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:48:36.550] [INFO] cheese - inserting 1000 documents. first: Matondoni and last: File:Shearersfoods.png -[2018-02-13T00:48:36.586] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:48:36.587] [INFO] cheese - inserting 1000 documents. first: GCUWF and last: James Addison Bushnell -[2018-02-13T00:48:36.610] [INFO] cheese - inserting 1000 documents. first: Lee Paterson and last: Cécile Nowak -[2018-02-13T00:48:36.627] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:36.645] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:36.692] [INFO] cheese - inserting 1000 documents. first: File:Juli-Insel.jpg and last: Ahmed Mohammad Kathrada -[2018-02-13T00:48:36.728] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:48:36.923] [INFO] cheese - inserting 1000 documents. first: James Lowther (1753–1837) and last: Kiambiu -[2018-02-13T00:48:36.984] [INFO] cheese - inserting 1000 documents. first: George Huntingford and last: Mira Khel -[2018-02-13T00:48:36.988] [INFO] cheese - inserting 1000 documents. first: Front Lot (Walt Disney Studios Park) and last: Category:The NHL Network (1975–79) affiliates -[2018-02-13T00:48:37.000] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:48:37.011] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:37.032] [INFO] cheese - inserting 38 documents. first: File:Deadmalls dot com screenshot.jpg and last: Franz Winterhalter -[2018-02-13T00:48:37.034] [INFO] cheese - batch complete in: 0.034 secs -[2018-02-13T00:48:37.034] [INFO] cheese - worker pid:56522 is done. inserted 2307039 pages in 0 secs. -[2018-02-13T00:48:37.040] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:48:37.075] [INFO] cheese - inserting 1000 documents. first: Category:Corporate warfare in fiction and last: File:The Lilac Serenade.jpeg -[2018-02-13T00:48:37.121] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:48:37.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Putnis and last: File:B.B. Studio logo.svg -[2018-02-13T00:48:37.164] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:48:37.335] [INFO] cheese - inserting 1000 documents. first: Theatre actress and last: Wikipedia:Articles for deletion/The Return of the G.O.A.T. -[2018-02-13T00:48:37.382] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:37.408] [INFO] cheese - inserting 1000 documents. first: Tutu Plantation House and last: Scouting and Guiding in the Republic of China -[2018-02-13T00:48:37.409] [INFO] cheese - inserting 1000 documents. first: Category:Villages in the canton of Zug and last: Enteroenteric circulation -[2018-02-13T00:48:37.433] [INFO] cheese - inserting 1000 documents. first: Ralte Lalthuammawia and last: Category:Singaporean high jumpers -[2018-02-13T00:48:37.449] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:48:37.478] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:48:37.484] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:48:37.685] [INFO] cheese - inserting 1000 documents. first: Jewish National Fund Tree of Life Award and last: Chris Okemo -[2018-02-13T00:48:37.705] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:48:37.707] [INFO] cheese - inserting 1000 documents. first: Sweet Apple Berry and last: Category:Bodies of water of Davison County, South Dakota -[2018-02-13T00:48:37.729] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:48:37.757] [INFO] cheese - inserting 1000 documents. first: Eliza Wheeler and last: Template:1966 Missouri Valley Conference football standings -[2018-02-13T00:48:37.782] [INFO] cheese - inserting 1000 documents. first: Category:1985 elections in North America and last: Mohibullah Samim -[2018-02-13T00:48:37.784] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:48:37.804] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:48:37.965] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Haters (La, La, La) and last: StickK -[2018-02-13T00:48:37.971] [INFO] cheese - inserting 1000 documents. first: Posthumous wedding and last: File:Genesys Logo 2017.svg -[2018-02-13T00:48:38.001] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:48:38.003] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:48:38.025] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whelen WPS 4000 Series and last: List of battles and wars involving the Islamic State of Iraq and the Levant -[2018-02-13T00:48:38.075] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:48:38.181] [INFO] cheese - inserting 1000 documents. first: Modal shift and last: Wikipedia:Articles for deletion/Amsterdam's Garden -[2018-02-13T00:48:38.233] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:38.240] [INFO] cheese - inserting 1000 documents. first: Armenians in Slovenia and last: Category:RSD Alcalá managers -[2018-02-13T00:48:38.263] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:48:38.277] [INFO] cheese - inserting 1000 documents. first: Central Ranges Taipan and last: Iowa University -[2018-02-13T00:48:38.317] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:48:38.379] [INFO] cheese - inserting 1000 documents. first: Nisa Azeezi and last: File:1980 Kannada film Minchina Ota VCD cover.jpg -[2018-02-13T00:48:38.396] [INFO] cheese - inserting 1000 documents. first: That Was Then, This Is Now (album) and last: Wikipedia:Votes for deletion/Boprah -[2018-02-13T00:48:38.420] [INFO] cheese - batch complete in: 0.186 secs -[2018-02-13T00:48:38.423] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:48:38.577] [INFO] cheese - inserting 1000 documents. first: Azerbaijan State Theatre "Yuğ" and last: Nauplius smithii -[2018-02-13T00:48:38.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Boris Bertrand and last: Wikipedia:Votes for deletion/Denis Howe -[2018-02-13T00:48:38.607] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:48:38.625] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:48:38.778] [INFO] cheese - inserting 1000 documents. first: National University of Chilecito and last: A Boy Called Hate -[2018-02-13T00:48:38.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Denise Davis and last: Wikipedia:Votes for deletion/Gods & Heroes -[2018-02-13T00:48:38.797] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:48:38.801] [INFO] cheese - inserting 1000 documents. first: Template:Country data MALAYSIA and last: Trapania toddi -[2018-02-13T00:48:38.809] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:48:38.840] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:38.919] [INFO] cheese - inserting 1000 documents. first: Dutch people in Namibia and last: Category:Rivers of Beadle County, South Dakota -[2018-02-13T00:48:38.940] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gods of greec and last: Ion Sîrbu -[2018-02-13T00:48:38.955] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:48:38.963] [INFO] cheese - batch complete in: 0.166 secs -[2018-02-13T00:48:39.128] [INFO] cheese - inserting 1000 documents. first: File:View of Nuremberg, Pennsylvania from the south.JPG and last: Liberal Party (Republic of Macedonia) -[2018-02-13T00:48:39.158] [INFO] cheese - inserting 1000 documents. first: Category:Association football in County Cork and last: Wikipedia:Votes for deletion/Maggie Haskins -[2018-02-13T00:48:39.172] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:48:39.204] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:48:39.262] [INFO] cheese - inserting 1000 documents. first: Template:Keikyu Station Numbering and last: J. W. Boateng -[2018-02-13T00:48:39.288] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:48:39.308] [INFO] cheese - inserting 1000 documents. first: Honda HA-420 and last: Wikipedia:Votes for deletion/Peanut butter jelly time -[2018-02-13T00:48:39.328] [INFO] cheese - batch complete in: 0.124 secs -[2018-02-13T00:48:39.343] [INFO] cheese - inserting 1000 documents. first: Giovanni Maria Lancisi and last: Wikipedia:WikiProject Geelong/Cleanup listing -[2018-02-13T00:48:39.391] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:48:39.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Pearl 'n' Mearl and last: Wikipedia:Votes for deletion/Sleep sex -[2018-02-13T00:48:39.485] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:48:39.523] [INFO] cheese - inserting 1000 documents. first: Shobhanam and last: Sex Is Law -[2018-02-13T00:48:39.543] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Northwestern Mexico and last: Fat and Thin -[2018-02-13T00:48:39.560] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:39.573] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:48:39.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Sleepy's Law and last: Wikipedia:Votes for deletion/Ubergeek -[2018-02-13T00:48:39.656] [INFO] cheese - batch complete in: 0.171 secs -[2018-02-13T00:48:39.788] [INFO] cheese - inserting 1000 documents. first: Kathleen Friedrich and last: File:Central Bank of Russia.jpg -[2018-02-13T00:48:39.810] [INFO] cheese - inserting 1000 documents. first: Marie-Eugenie of Jesus and last: Memories Off 3.5 -[2018-02-13T00:48:39.812] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:48:39.826] [INFO] cheese - inserting 1000 documents. first: Episode 9 (Twin Peaks) and last: Juan Cayetano Fernández de Agüero -[2018-02-13T00:48:39.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Ubitsa and last: Admiralty Research Establishment -[2018-02-13T00:48:39.887] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:39.893] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:39.935] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:48:40.186] [INFO] cheese - inserting 1000 documents. first: File:Girls Le Disko.jpg and last: Vlora wind farm -[2018-02-13T00:48:40.204] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:40.208] [INFO] cheese - inserting 1000 documents. first: Yi Tso-lin and last: File:Greatest Hits (Album Cover).jpg -[2018-02-13T00:48:40.216] [INFO] cheese - inserting 1000 documents. first: Category:1930 establishments in Alberta and last: AEON Stores -[2018-02-13T00:48:40.216] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Improve2009 and last: Category:Australian booksellers -[2018-02-13T00:48:40.236] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:48:40.249] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:40.257] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:48:40.472] [INFO] cheese - inserting 1000 documents. first: Portal:Professional wrestling/Topics/11 and last: Category:Spain football templates -[2018-02-13T00:48:40.487] [INFO] cheese - inserting 1000 documents. first: Template:2011 UFL (Philippines) Division 2 table and last: Čajle -[2018-02-13T00:48:40.496] [INFO] cheese - inserting 1000 documents. first: File:Elisabeth Dhanens.jpg and last: Jadwiga Cieszyńska -[2018-02-13T00:48:40.502] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:48:40.517] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:48:40.526] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:40.529] [INFO] cheese - inserting 1000 documents. first: Media of the Soviet Union and last: Anticlerical art -[2018-02-13T00:48:40.568] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:48:40.764] [INFO] cheese - inserting 1000 documents. first: Banco del Pichincha and last: Draft:Janey-E Jones -[2018-02-13T00:48:40.766] [INFO] cheese - inserting 1000 documents. first: Category:Swiss biographical films and last: Wikipedia:Articles for deletion/Intaction -[2018-02-13T00:48:40.769] [INFO] cheese - inserting 1000 documents. first: Point St. Charles and last: Menegazzia albida -[2018-02-13T00:48:40.795] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:40.803] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:48:40.804] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:48:40.883] [INFO] cheese - inserting 1000 documents. first: Yutaka and last: Wilbur Mitcham -[2018-02-13T00:48:40.928] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:48:41.007] [INFO] cheese - inserting 1000 documents. first: East Side Story (Will & Grace) and last: My Mother's Eyes (disambiguation) -[2018-02-13T00:48:41.040] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:48:41.069] [INFO] cheese - inserting 1000 documents. first: Calliostoma peregrinum and last: Acalyptris maritima -[2018-02-13T00:48:41.112] [INFO] cheese - inserting 1000 documents. first: Bill Neely (American football) and last: The Doreen Valiente Foundation -[2018-02-13T00:48:41.111] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:48:41.162] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:48:41.328] [INFO] cheese - inserting 1000 documents. first: Osteen (disambiguation) and last: Imperial Tutor Pang -[2018-02-13T00:48:41.383] [INFO] cheese - inserting 1000 documents. first: Later with Jules Holland and last: File:Persepolisfc classic .jpg -[2018-02-13T00:48:41.397] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:48:41.506] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:48:41.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rv1865.com and last: Heloecius -[2018-02-13T00:48:41.570] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:48:41.771] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Puebla and last: 2007 European Athletics U23 Championships – Men's 1500 metres -[2018-02-13T00:48:41.831] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:48:41.893] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2017 Riverside Cessna 310 crash and last: Gurjaradesh -[2018-02-13T00:48:41.956] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:48:42.006] [INFO] cheese - inserting 1000 documents. first: Kunnuvarankottai Kasi Visalakshi-Viswanathar Temple and last: RLIF Awards 2008 -[2018-02-13T00:48:42.036] [INFO] cheese - inserting 1000 documents. first: Jean-Baptiste-Henri Lacordaire and last: Francois Bruneri -[2018-02-13T00:48:42.071] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:48:42.197] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:48:42.226] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Top 25 Report/October 26 to November 1, 2014 and last: Yn Cheshaght Ghailckagh -[2018-02-13T00:48:42.272] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:48:42.302] [INFO] cheese - inserting 1000 documents. first: File:La Piloto official poster.jpg and last: Waltensburg/Vuorz railway station -[2018-02-13T00:48:42.353] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:48:42.400] [INFO] cheese - inserting 1000 documents. first: The Wall Live (2010/2011 Tour) and last: Japanese Association of Management Accounting -[2018-02-13T00:48:42.447] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:48:42.551] [INFO] cheese - inserting 1000 documents. first: Free Methodist Bible Quiz and last: Template:Air Supply -[2018-02-13T00:48:42.557] [INFO] cheese - inserting 1000 documents. first: Jerónimo de Garro and last: Nesla -[2018-02-13T00:48:42.584] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:48:42.586] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:48:42.617] [INFO] cheese - inserting 1000 documents. first: ENG display and last: Johann von Mayr -[2018-02-13T00:48:42.647] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:48:42.825] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/systemsinthecity.co.uk and last: Vexillum turriger -[2018-02-13T00:48:42.852] [INFO] cheese - inserting 1000 documents. first: Novo Bardo and last: Aster major -[2018-02-13T00:48:42.859] [INFO] cheese - inserting 1000 documents. first: Percival Goodman and last: List of Ambassadors from the United Kingdom to the Ottoman Empire -[2018-02-13T00:48:42.865] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:48:42.883] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:48:42.904] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:42.937] [INFO] cheese - inserting 1000 documents. first: Category:Retailing in Peru and last: BioCurious -[2018-02-13T00:48:42.987] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:43.328] [INFO] cheese - inserting 1000 documents. first: John Mark Colquhoun and last: Hendricks Township, Minnesota -[2018-02-13T00:48:43.333] [INFO] cheese - inserting 1000 documents. first: Category:Head and neck cancer and last: Wholesale District, Los Angeles, California -[2018-02-13T00:48:43.374] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:48:43.377] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:48:43.412] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Klag-Lied and last: Al Despertar (Mercedes Sosa song) -[2018-02-13T00:48:43.456] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:48:43.547] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Ilocos Sur and last: Menezes, William -[2018-02-13T00:48:43.591] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:48:43.688] [INFO] cheese - inserting 1000 documents. first: Hope Township, Minnesota and last: Category:FL-Class Indian politics articles of High-importance -[2018-02-13T00:48:43.736] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:48:43.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gaëlle Comparat and last: Anthony G. Petti -[2018-02-13T00:48:43.839] [INFO] cheese - inserting 1000 documents. first: Howie Montgomery and last: Hrdinný kapitán Korkorán -[2018-02-13T00:48:43.871] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:48:43.874] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:43.924] [INFO] cheese - inserting 1000 documents. first: Meninger, William and last: Af Urur -[2018-02-13T00:48:43.957] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:44.068] [INFO] cheese - inserting 1000 documents. first: Topical outline of calculus and last: Yanachaga–Chemillen National Park -[2018-02-13T00:48:44.113] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:44.212] [INFO] cheese - inserting 1000 documents. first: Category:1976 in karate and last: Transition modeling -[2018-02-13T00:48:44.245] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:44.321] [INFO] cheese - inserting 1000 documents. first: Ada Major and last: Izō Iburi -[2018-02-13T00:48:44.364] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:48:44.379] [INFO] cheese - inserting 1000 documents. first: Ġnien il-Kmand and last: Mancic -[2018-02-13T00:48:44.384] [INFO] cheese - inserting 1000 documents. first: The Church of Jesus Christ of Latter-day Saints in Oklahoma and last: The Brick City -[2018-02-13T00:48:44.414] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:48:44.417] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:48:44.649] [INFO] cheese - inserting 1000 documents. first: Östgötaderbyt and last: List of Tennessee Volunteers starting quarterbacks -[2018-02-13T00:48:44.695] [INFO] cheese - inserting 1000 documents. first: Aleksandar Stanojević and last: Maculotriton digitalis -[2018-02-13T00:48:44.697] [INFO] cheese - inserting 1000 documents. first: Chariesthes aureovitticollis and last: Ngeleja, William -[2018-02-13T00:48:44.699] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:48:44.721] [INFO] cheese - inserting 1000 documents. first: Linguistic discrimination and last: Vampyrodes -[2018-02-13T00:48:44.723] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:48:44.729] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:48:44.759] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:48:44.947] [INFO] cheese - inserting 1000 documents. first: Taira Shige and last: PGL 2001 -[2018-02-13T00:48:44.972] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:48:44.996] [INFO] cheese - inserting 1000 documents. first: Maculotriton serriale and last: Vaughtia squamata -[2018-02-13T00:48:45.002] [INFO] cheese - inserting 1000 documents. first: File:Mesrobianmilitary.jpg and last: Klaus Henkes -[2018-02-13T00:48:45.014] [INFO] cheese - inserting 1000 documents. first: Spechhorn and last: Elize Hele -[2018-02-13T00:48:45.022] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:48:45.046] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:48:45.055] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:48:45.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2017 June 9 and last: Template:Did you know nominations/Anthonio Hurdt -[2018-02-13T00:48:45.255] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:48:45.310] [INFO] cheese - inserting 1000 documents. first: Nepal at the 2014 Asian Beach Games and last: Estevao Silva -[2018-02-13T00:48:45.350] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:48:45.360] [INFO] cheese - inserting 1000 documents. first: Vaughtia transkeiensis and last: 66th Strategic Reconnaissance Group -[2018-02-13T00:48:45.398] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:45.422] [INFO] cheese - inserting 1000 documents. first: Treaty of Fontainebleau of 1762 and last: Category:C-Class Genetics articles -[2018-02-13T00:48:45.470] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:48:45.565] [INFO] cheese - inserting 1000 documents. first: Koinange wa Mbiyu and last: Category:February 2003 events by continent -[2018-02-13T00:48:45.616] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:45.682] [INFO] cheese - inserting 1000 documents. first: Template:Nebraska-geography-stub and last: National Highway 2 (India) -[2018-02-13T00:48:45.718] [INFO] cheese - inserting 1000 documents. first: Category:25th United States Congress and last: Category:Houses in New Haven County, Connecticut -[2018-02-13T00:48:45.737] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:48:45.757] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:48:45.773] [INFO] cheese - inserting 1000 documents. first: Killing Me Softly (Ferrante & Teicher album) and last: Joey Leung Wing-Chung -[2018-02-13T00:48:45.812] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:48:45.923] [INFO] cheese - inserting 1000 documents. first: Pamidimarru Gramam and last: Template:United Kingdom party elections, 2017 -[2018-02-13T00:48:45.961] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:48:46.093] [INFO] cheese - inserting 1000 documents. first: National Highway 2A (India) and last: Caius Norbanus Sorex -[2018-02-13T00:48:46.128] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:48:46.169] [INFO] cheese - inserting 1000 documents. first: Education in Tunisia and last: Michmoret -[2018-02-13T00:48:46.207] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:48:46.225] [INFO] cheese - inserting 1000 documents. first: Lyons, France and last: File:Ovenden-Emily.jpg -[2018-02-13T00:48:46.240] [INFO] cheese - inserting 1000 documents. first: Jordan Reginald Howard and last: Ron Nirenberg -[2018-02-13T00:48:46.274] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:48:46.277] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:48:46.583] [INFO] cheese - inserting 1000 documents. first: Category:Isuzu-class destroyer escorts and last: Thousand day war -[2018-02-13T00:48:46.584] [INFO] cheese - inserting 1000 documents. first: Category:Middlebury Panthers men's basketball and last: Category:Image captions for cleanup/With examples/With inadequate context -[2018-02-13T00:48:46.607] [INFO] cheese - inserting 1000 documents. first: List of Playboy Playmates of 1987 and last: Ceratodon dimorphus -[2018-02-13T00:48:46.615] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:48:46.635] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:46.671] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:48:46.719] [INFO] cheese - inserting 1000 documents. first: Akbarpur (Lok Sabha constituency) and last: Grande Lui -[2018-02-13T00:48:46.771] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:48:46.863] [INFO] cheese - inserting 1000 documents. first: Category:Image captions for cleanup/Without examples/With inadequate context and last: Siberian Express (disambiguation) -[2018-02-13T00:48:46.890] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:48:47.002] [INFO] cheese - inserting 1000 documents. first: The Foundling and last: Category:Viral infections of the central nervous system -[2018-02-13T00:48:47.044] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:48:47.060] [INFO] cheese - inserting 1000 documents. first: Koganejōshi Station and last: SCR-193 -[2018-02-13T00:48:47.082] [INFO] cheese - inserting 1000 documents. first: Yanjing County and last: Clot (disambiguation) -[2018-02-13T00:48:47.112] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:48:47.120] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:48:47.304] [INFO] cheese - inserting 1000 documents. first: Thiyyattunni and last: Pontus, William -[2018-02-13T00:48:47.349] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:48:47.452] [INFO] cheese - inserting 1000 documents. first: List of settlements in the Federation of Bosnia and Herzegovina/G and last: Kachin red-backed vole -[2018-02-13T00:48:47.473] [INFO] cheese - inserting 1000 documents. first: File:William Stainton Moses.jpg and last: Portal:Music of Canada/Did you know?/4 -[2018-02-13T00:48:47.496] [INFO] cheese - inserting 1000 documents. first: Category:1996 Czech television series debuts and last: Lakeshore, Louisiana -[2018-02-13T00:48:47.499] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:48:47.548] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:48:47.552] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:48:47.806] [INFO] cheese - inserting 1000 documents. first: Pulgram, William and last: Wikipedia:Articles for deletion/Miss Jozi -[2018-02-13T00:48:47.856] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:47.988] [INFO] cheese - inserting 1000 documents. first: Henry Ferdinand Mudge and last: Luella Creighton -[2018-02-13T00:48:48.016] [INFO] cheese - inserting 1000 documents. first: 24198 Xiaomengzeng and last: St. Paul-Minneapolis metropolitan area -[2018-02-13T00:48:48.048] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:48.086] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:48.294] [INFO] cheese - inserting 1000 documents. first: Wapta Glacier and last: Katherine Carl -[2018-02-13T00:48:48.376] [INFO] cheese - inserting 1000 documents. first: Category:May 1976 events in Europe and last: Rowlands, William -[2018-02-13T00:48:48.381] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:48:48.451] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:48:48.601] [INFO] cheese - inserting 1000 documents. first: Department of East Asian Studies, University of Delhi and last: Category:Characters in Azerbaijani novels of the 21st century -[2018-02-13T00:48:48.673] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:48:48.707] [INFO] cheese - inserting 1000 documents. first: Kawasaki Kisen Kaisha, Ltd. and last: UCMSA Universalis -[2018-02-13T00:48:48.784] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:48:48.837] [INFO] cheese - inserting 1000 documents. first: Ryle, William and last: Mutua (surname) -[2018-02-13T00:48:48.859] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:48:49.017] [INFO] cheese - inserting 1000 documents. first: Avra (Kozani), Greece and last: Choedrak Monastery -[2018-02-13T00:48:49.050] [INFO] cheese - inserting 1000 documents. first: Category:Indicator (genus) and last: D. 49 -[2018-02-13T00:48:49.066] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:49.094] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:48:49.196] [INFO] cheese - inserting 1000 documents. first: File:Innisfil logo.png and last: Category:All image captions for cleanup -[2018-02-13T00:48:49.247] [INFO] cheese - inserting 1000 documents. first: Hockerill Educational Foundation and last: 2003-04 Los Angeles Lakers season -[2018-02-13T00:48:49.247] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:49.290] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:49.484] [INFO] cheese - inserting 1000 documents. first: Motion to raise a question of privilege and last: Gusztáv Kálniczky -[2018-02-13T00:48:49.546] [INFO] cheese - inserting 1000 documents. first: Owensboro Daviess County Regional Airport and last: Josef Salvat -[2018-02-13T00:48:49.547] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:48:49.582] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:48:49.590] [INFO] cheese - inserting 1000 documents. first: Paride and last: Wikipedia:WikiProject Spam/LinkReports/goombaybash.com -[2018-02-13T00:48:49.611] [INFO] cheese - inserting 1000 documents. first: File:Prison Memoirs.jpg and last: White angelfish -[2018-02-13T00:48:49.636] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:49.656] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:49.848] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2014-11-18 and last: Root apps -[2018-02-13T00:48:49.892] [INFO] cheese - inserting 1000 documents. first: Gusztav Kalniczky and last: Erdős discrepancy problem -[2018-02-13T00:48:49.894] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:48:49.961] [INFO] cheese - inserting 1000 documents. first: Draft:Kunal Saraff and last: Wikipedia:Miscellany for deletion/User:Ap Motion Pictures/sandbox -[2018-02-13T00:48:49.963] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:48:49.971] [INFO] cheese - inserting 1000 documents. first: Aelius Lampridius Cervinus and last: 1928–29 Maltese Premier League -[2018-02-13T00:48:50.002] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:50.021] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:48:50.301] [INFO] cheese - inserting 1000 documents. first: Yu pengnian and last: Category:Ptychatractidae -[2018-02-13T00:48:50.320] [INFO] cheese - inserting 1000 documents. first: Draft:Honda SS125A and last: Wikipedia:Articles for deletion/Erica Farrell -[2018-02-13T00:48:50.349] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dacnonypha and last: File:PDSshield-small.jpg -[2018-02-13T00:48:50.350] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:48:50.357] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:48:50.403] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:48:50.433] [INFO] cheese - inserting 1000 documents. first: 1929–30 Maltese Premier League and last: Zalesie, Bydgoszcz County -[2018-02-13T00:48:50.502] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:48:50.595] [INFO] cheese - inserting 1000 documents. first: Category:Football people in Martinique and last: Yarmolenko -[2018-02-13T00:48:50.624] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:48:50.673] [INFO] cheese - inserting 1000 documents. first: Instruction (Jax Jones song) and last: Bjorn Nilsen (athlete) -[2018-02-13T00:48:50.709] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:48:50.734] [INFO] cheese - inserting 1000 documents. first: Un homme qui crie and last: File:Oldsportsdayweb.jpg -[2018-02-13T00:48:50.783] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:48:50.871] [INFO] cheese - inserting 1000 documents. first: Zła Wieś and last: Agrochola lota -[2018-02-13T00:48:50.909] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:48:50.952] [INFO] cheese - inserting 1000 documents. first: José Antonio Díaz García and last: Open-bill stork -[2018-02-13T00:48:50.991] [INFO] cheese - inserting 1000 documents. first: Robert David Mariani and last: Sit-in movement -[2018-02-13T00:48:50.999] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:48:51.027] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:48:51.148] [INFO] cheese - inserting 1000 documents. first: Bulgarian Hound and last: Amalda angustata -[2018-02-13T00:48:51.191] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:48:51.250] [INFO] cheese - inserting 1000 documents. first: UEFA Euro 1996 Group C and last: File:Nick Gallegos.jpg -[2018-02-13T00:48:51.292] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:48:51.396] [INFO] cheese - inserting 1000 documents. first: Roydon Island Conservation Area and last: Secretary General of FIBA -[2018-02-13T00:48:51.437] [INFO] cheese - inserting 1000 documents. first: Chancelade man and last: File:The spiral model.jpg -[2018-02-13T00:48:51.437] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:48:51.481] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:48:51.558] [INFO] cheese - inserting 1000 documents. first: Amalda aureocallosa and last: M. A. Muthiah Chettiar -[2018-02-13T00:48:51.581] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Hiwhispees and last: Tempest (disambiguation) -[2018-02-13T00:48:51.612] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:48:51.613] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:51.686] [INFO] cheese - inserting 1000 documents. first: Teste de Turke and last: Steeves, William -[2018-02-13T00:48:51.716] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:48:51.852] [INFO] cheese - inserting 1000 documents. first: Pamela Abbott and last: Jake Perry -[2018-02-13T00:48:51.899] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:48:51.947] [INFO] cheese - inserting 1000 documents. first: Harvey Girls and last: Reem Al Numery -[2018-02-13T00:48:51.970] [INFO] cheese - inserting 1000 documents. first: Steffe, William and last: Help:IPA for Azeri -[2018-02-13T00:48:51.979] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:48:51.998] [INFO] cheese - inserting 1000 documents. first: Performed and last: Bob Murphy (broadcaster) -[2018-02-13T00:48:51.999] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:48:52.051] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:48:52.205] [INFO] cheese - inserting 1000 documents. first: Gąsawa Massacre and last: Chionanthus elaeocarpus -[2018-02-13T00:48:52.245] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:48:52.306] [INFO] cheese - inserting 1000 documents. first: Ornamental initial and last: Wikipedia:Peer review/Laterite/archive1 -[2018-02-13T00:48:52.329] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Gresham, Oregon and last: Trueheart, William -[2018-02-13T00:48:52.338] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:48:52.353] [INFO] cheese - inserting 1000 documents. first: Utah State Route 319 and last: Wikipedia:Articles for deletion/Yorusora ni YOUKISS! -[2018-02-13T00:48:52.365] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:52.392] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:48:52.624] [INFO] cheese - inserting 1000 documents. first: Chionanthus insignis and last: Ratnagiri-Sindhudurg (Lok Sabha constituency) -[2018-02-13T00:48:52.646] [INFO] cheese - inserting 1000 documents. first: Truelove, William and last: Corinne Olympios -[2018-02-13T00:48:52.678] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:48:52.684] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:48:52.689] [INFO] cheese - inserting 1000 documents. first: List of Ministers of the Universal Life Church and last: Moviliţa, Constanţa -[2018-02-13T00:48:52.741] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:48:52.781] [INFO] cheese - inserting 1000 documents. first: Daddy Longlegs (2009 film) and last: Earth juice -[2018-02-13T00:48:52.843] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:48:52.923] [INFO] cheese - inserting 1000 documents. first: Category:1877 disestablishments in Missouri and last: Template:2017–18 Welsh Premier League table -[2018-02-13T00:48:52.954] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:48:53.022] [INFO] cheese - inserting 1000 documents. first: File:Robert Nelson - Broken Bulb Studios.jpg and last: File:QormiFC.png -[2018-02-13T00:48:53.053] [INFO] cheese - inserting 1000 documents. first: Category:Kazakhstan sports templates and last: Template:Fb team Slaven Belupo -[2018-02-13T00:48:53.069] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:48:53.092] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:48:53.181] [INFO] cheese - inserting 1000 documents. first: Template:USAF Weapons and last: A.S. Lucchese Libertas -[2018-02-13T00:48:53.221] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:48:53.302] [INFO] cheese - inserting 1000 documents. first: Draft:Vicente Barros and last: Category:Companies based in Chelyabinsk Oblast -[2018-02-13T00:48:53.340] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:48:53.442] [INFO] cheese - inserting 1000 documents. first: List of stations on the Bakerloo line and last: Majed Baryan -[2018-02-13T00:48:53.453] [INFO] cheese - inserting 1000 documents. first: Brendan Healy (comic) and last: Maura Dynasty -[2018-02-13T00:48:53.473] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:48:53.486] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:53.515] [INFO] cheese - inserting 1000 documents. first: Devudu Chesina Manushulu and last: Deathcore music -[2018-02-13T00:48:53.549] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:48:53.667] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Omsk Oblast and last: Category:Pride parades in India -[2018-02-13T00:48:53.701] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:53.853] [INFO] cheese - inserting 1000 documents. first: TVA Shawnee and last: Template:Did you know nominations/Phyllis Richman -[2018-02-13T00:48:53.878] [INFO] cheese - inserting 1000 documents. first: John Parrish (baseball player) and last: Category:Clayton locomotives -[2018-02-13T00:48:53.886] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:48:53.905] [INFO] cheese - inserting 1000 documents. first: The Second Coming of Jesus Christ and last: Category:Bodies of water of Sanilac County, Michigan -[2018-02-13T00:48:53.920] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:48:53.936] [INFO] cheese - batch complete in: 0.235 secs -[2018-02-13T00:48:54.023] [INFO] cheese - inserting 1000 documents. first: Commemorative coins of Poland: 2010 and last: Portal:Speculative fiction/Anniversaries/June/June 15 -[2018-02-13T00:48:54.089] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:48:54.138] [INFO] cheese - inserting 1000 documents. first: Aspy Bay and last: Draft:Georges Balagny -[2018-02-13T00:48:54.187] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:48:54.237] [INFO] cheese - inserting 1000 documents. first: Eesti Orienteerumisliit and last: Template:Los Angeles Lakers 1979-80 NBA champions -[2018-02-13T00:48:54.275] [INFO] cheese - inserting 1000 documents. first: Mooyah and last: File:KQBL 101.9TheBull logo.png -[2018-02-13T00:48:54.285] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:48:54.341] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:48:54.536] [INFO] cheese - inserting 1000 documents. first: Slender-billed cuckoo-shrike and last: Tyssilio -[2018-02-13T00:48:54.547] [INFO] cheese - inserting 1000 documents. first: Honda Touru and last: 2006 UCI Track Cycling World Championships – Men's 1 km Time Trial -[2018-02-13T00:48:54.588] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:48:54.599] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:48:54.703] [INFO] cheese - inserting 1000 documents. first: Template:Los Angeles Lakers 1981-82 NBA champions and last: Chiba Institute of Technology -[2018-02-13T00:48:54.733] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pomarj and last: Category:Earls of Dorset -[2018-02-13T00:48:54.746] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:48:54.772] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:48:54.876] [INFO] cheese - inserting 1000 documents. first: Noorda molybdis and last: ASC-2 -[2018-02-13T00:48:54.903] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:48:54.943] [INFO] cheese - inserting 1000 documents. first: 2007 UCI Track Cycling World Championships – Men's 1 km Time Trial and last: Portal:Ontario/Selected biography -[2018-02-13T00:48:54.987] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:55.049] [INFO] cheese - inserting 1000 documents. first: Template:NCAA conference full membership table and last: Draft:Asif Ghauri -[2018-02-13T00:48:55.078] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:48:55.109] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anthony Nigro and last: Wikipedia:Bots/Requests for approval/naudefjbot -[2018-02-13T00:48:55.155] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:48:55.164] [INFO] cheese - inserting 1000 documents. first: 5 (Peanuts) and last: Category:Nicaragua Copa Centroamericana squad navigational boxes -[2018-02-13T00:48:55.215] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:48:55.339] [INFO] cheese - inserting 1000 documents. first: Grade II listed buildings in Liverpool-L17 and last: Catoctin, Arizona -[2018-02-13T00:48:55.348] [INFO] cheese - inserting 1000 documents. first: Muhtarophis and last: I325 -[2018-02-13T00:48:55.377] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:48:55.384] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:48:55.437] [INFO] cheese - inserting 1000 documents. first: Template:Simply Red and last: Propagation parameters -[2018-02-13T00:48:55.467] [INFO] cheese - inserting 1000 documents. first: Category:1883 establishments in Manitoba and last: Category:Electronic albums by Portuguese artists -[2018-02-13T00:48:55.469] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:48:55.505] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:48:55.643] [INFO] cheese - inserting 1000 documents. first: Portal:Nova Scotia/Selected article/2 and last: Gibbula adriatica -[2018-02-13T00:48:55.662] [INFO] cheese - inserting 1000 documents. first: 2017 Finsbury Park Mosque attack and last: Category:Companies based in the London Borough of Hammersmith and Fulham -[2018-02-13T00:48:55.681] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:48:55.695] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:48:55.735] [INFO] cheese - inserting 1000 documents. first: File:Way of the Samurai Coverart.png and last: Journey of Souls -[2018-02-13T00:48:55.784] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:48:55.832] [INFO] cheese - inserting 1000 documents. first: File:Kannada film Ramachaari poster.jpg and last: Mousehole, Cornwall -[2018-02-13T00:48:55.875] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:48:55.959] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code United States Pennsylvania and last: Lewes Presbyterian Church -[2018-02-13T00:48:56.002] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:48:56.042] [INFO] cheese - inserting 1000 documents. first: Op 47 and last: Herr Jesu Christ, du höchstes Gut -[2018-02-13T00:48:56.085] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:48:56.201] [INFO] cheese - inserting 1000 documents. first: Andukondan and last: Template:ISO 3166 code Cambodia Kampot -[2018-02-13T00:48:56.219] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:48:56.231] [INFO] cheese - inserting 1000 documents. first: Category:Ice hockey competitions in Asia by country and last: Category:1920 establishments in Saskatchewan -[2018-02-13T00:48:56.243] [INFO] cheese - inserting 1000 documents. first: Earnings Quality and last: Achleitner -[2018-02-13T00:48:56.266] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:48:56.304] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:48:56.363] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Cambodia Kâmpôt and last: Template:ISO 3166 code Honduras Copán -[2018-02-13T00:48:56.386] [INFO] cheese - batch complete in: 0.167 secs -[2018-02-13T00:48:56.496] [INFO] cheese - inserting 1000 documents. first: Renad Zhdanov and last: File:Rob Buckley Jr of Towanda Pa and Ang his wife of 20 yrs.jpg -[2018-02-13T00:48:56.523] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Honduras Cortés and last: Template:ISO 3166 code Liechtenstein Eschen -[2018-02-13T00:48:56.526] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:48:56.544] [INFO] cheese - batch complete in: 0.158 secs -[2018-02-13T00:48:56.568] [INFO] cheese - inserting 1000 documents. first: File:Life Begins with Love.jpg and last: Category:1990s Romanian television series debuts -[2018-02-13T00:48:56.606] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:56.627] [INFO] cheese - inserting 1000 documents. first: The Diplomat (novel) and last: Bacolod City-class logistics support vessel -[2018-02-13T00:48:56.673] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:48:56.674] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Liechtenstein Gamprin and last: Template:ISO 3166 code Poland Podlaskie -[2018-02-13T00:48:56.694] [INFO] cheese - batch complete in: 0.15 secs -[2018-02-13T00:48:56.843] [INFO] cheese - inserting 1000 documents. first: Template:Chile Vamos/meta/shortname and last: Nspr -[2018-02-13T00:48:56.848] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Poland Pomorskie and last: Template:ISO 3166 code Sudan Garb-al-Istiwaiyyah -[2018-02-13T00:48:56.861] [INFO] cheese - batch complete in: 0.167 secs -[2018-02-13T00:48:56.868] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:48:56.948] [INFO] cheese - inserting 1000 documents. first: Category:1996 Romanian television series debuts and last: SR 211 (OH) -[2018-02-13T00:48:56.970] [INFO] cheese - inserting 1000 documents. first: Portal:Chicago/Selected list/7 and last: Złotniczki -[2018-02-13T00:48:56.982] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:56.994] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Sudan Gharb al Istiwaiyya and last: Template:Armenian Culture -[2018-02-13T00:48:57.009] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:48:57.012] [INFO] cheese - batch complete in: 0.151 secs -[2018-02-13T00:48:57.167] [INFO] cheese - inserting 1000 documents. first: File:Clay Greenfield Motorsports.png and last: Wikipedia:Articles for deletion/Lee Dae-hwi -[2018-02-13T00:48:57.213] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:48:57.304] [INFO] cheese - inserting 1000 documents. first: Złotniczki, Kuyavian-Pomeranian Voivodeship and last: Portal:Scotland/Selected quote/Week 39, 2008 -[2018-02-13T00:48:57.305] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Uganda Oyam and last: Pakistanis in Bangladesh -[2018-02-13T00:48:57.342] [INFO] cheese - inserting 1000 documents. first: SR 212 (OH) and last: French playing cards -[2018-02-13T00:48:57.344] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:48:57.349] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:57.388] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:48:57.458] [INFO] cheese - inserting 1000 documents. first: Category:Wall anchors and last: Scabricola fissurata -[2018-02-13T00:48:57.491] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:48:57.753] [INFO] cheese - inserting 1000 documents. first: File:REC 4 soundtrack.jpg and last: Wedelia rubra -[2018-02-13T00:48:57.811] [INFO] cheese - inserting 1000 documents. first: Fernand Jourdant and last: File:65 redroses.jpg -[2018-02-13T00:48:57.833] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:48:57.849] [INFO] cheese - inserting 1000 documents. first: Kevin Oghenetega Tamaraebi Bakumo-Abraham and last: Wen Chang Temple -[2018-02-13T00:48:57.853] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:48:57.920] [INFO] cheese - inserting 1000 documents. first: Portal:Scotland/Selected quote/Week 40, 2008 and last: Category:C-Class Holy Roman Empire articles -[2018-02-13T00:48:57.921] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:58.049] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:48:58.107] [INFO] cheese - inserting 476 documents. first: Racial bias and last: David Green (NASCAR) -[2018-02-13T00:48:58.180] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:48:58.180] [INFO] cheese - worker pid:56524 is done. inserted 2743477 pages in 0 secs. -[2018-02-13T00:48:58.286] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chevy Chase Elementary School and last: Chirinda Forest Botanical Reserve -[2018-02-13T00:48:58.326] [INFO] cheese - inserting 1000 documents. first: Surčin railway station and last: Sidi-Amara -[2018-02-13T00:48:58.343] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:48:58.378] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:48:58.493] [INFO] cheese - inserting 1000 documents. first: Foksal Foundation and last: File:KBSE33.jpg -[2018-02-13T00:48:58.532] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:48:58.617] [INFO] cheese - inserting 1000 documents. first: Guillaume Kasbarian and last: Draft:Tap & Go -[2018-02-13T00:48:58.619] [INFO] cheese - inserting 1000 documents. first: Khushal Khan Khattak University Karak and last: Category:Nichols and May albums -[2018-02-13T00:48:58.645] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:48:58.647] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:58.879] [INFO] cheese - inserting 1000 documents. first: Duets 2001 and last: Pseudonoorda brunneifusalis -[2018-02-13T00:48:58.906] [INFO] cheese - inserting 1000 documents. first: File:Clary 2008.JPG and last: High Rock Canyon Hills -[2018-02-13T00:48:58.907] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:48:58.934] [INFO] cheese - inserting 1000 documents. first: File:Young Eisner Scholars (logo).jpg and last: Category:1958 documents -[2018-02-13T00:48:58.948] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:48:58.973] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:48:59.125] [INFO] cheese - inserting 1000 documents. first: Pseudonoorda distigmalis and last: Category:1962 Hungarian television series debuts -[2018-02-13T00:48:59.154] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:48:59.171] [INFO] cheese - inserting 1000 documents. first: Poteau School Gymnasium-Auditorium and last: Draft:JavaParser -[2018-02-13T00:48:59.196] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:48:59.239] [INFO] cheese - inserting 1000 documents. first: BD-60 and last: Belce -[2018-02-13T00:48:59.278] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:48:59.373] [INFO] cheese - inserting 1000 documents. first: Nathaniel Davies and last: Category:Young Fathers albums -[2018-02-13T00:48:59.401] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:48:59.428] [INFO] cheese - inserting 1000 documents. first: Vikentije I, Archbishop of Peć and last: Third Asquith ministry -[2018-02-13T00:48:59.453] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:48:59.517] [INFO] cheese - inserting 1000 documents. first: NG-EK and last: Wikipedia:Articles for deletion/Racebannon -[2018-02-13T00:48:59.551] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:48:59.671] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Laxmi Narayan Chaudhary and last: Category:1953 in literature -[2018-02-13T00:48:59.709] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:48:59.746] [INFO] cheese - inserting 1000 documents. first: Christine Barber and last: Malaysia-China Friendship Year -[2018-02-13T00:48:59.797] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:48:59.829] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The union of Iranian library and information science student associations (ADKA) and last: Category:C-Class Dravidian people articles -[2018-02-13T00:48:59.870] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:48:59.984] [INFO] cheese - inserting 1000 documents. first: Category:1954 in literature and last: Like the Roman: The Life of Enoch Powell -[2018-02-13T00:49:00.012] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:49:00.045] [INFO] cheese - inserting 1000 documents. first: 2 factor authentication and last: Renata von Tscharner -[2018-02-13T00:49:00.073] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:00.158] [INFO] cheese - inserting 1000 documents. first: Paul Kirk Manhunter and last: Challa Kota -[2018-02-13T00:49:00.198] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:49:00.247] [INFO] cheese - inserting 1000 documents. first: Tyias and last: Template:Ckb -[2018-02-13T00:49:00.267] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:00.370] [INFO] cheese - inserting 1000 documents. first: William Christensen and last: MD 107 -[2018-02-13T00:49:00.402] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:49:00.456] [INFO] cheese - inserting 1000 documents. first: File:Kshan Amrutache cover.jpg.jpg and last: Constituency PP-125 (Sialkot-VI) -[2018-02-13T00:49:00.485] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:49:00.490] [INFO] cheese - inserting 1000 documents. first: Template:Clw and last: Category:People from Collinsville, Mississippi -[2018-02-13T00:49:00.522] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:00.630] [INFO] cheese - inserting 1000 documents. first: Route 107 (Maryland) and last: Category:Bilateral relations of San Marino -[2018-02-13T00:49:00.662] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:49:00.705] [INFO] cheese - inserting 1000 documents. first: Constituency PP-158 (Lahore-XXII) and last: Lund (Kristiansand) -[2018-02-13T00:49:00.726] [INFO] cheese - inserting 1000 documents. first: Riyanka chanda and last: One Legged Inverted Staff Pose - Eka Pada Viparita Dandasana -[2018-02-13T00:49:00.733] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:49:00.751] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:49:00.916] [INFO] cheese - inserting 1000 documents. first: Category:Bilateral relations of Ukraine and last: File:Kimi Tsunagi Five M Cover.jpg -[2018-02-13T00:49:00.950] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:49:00.960] [INFO] cheese - inserting 1000 documents. first: Yaël Braun-Pivet and last: Eakin, Michael -[2018-02-13T00:49:00.995] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:01.090] [INFO] cheese - inserting 1000 documents. first: James Harold Thompson and last: Category:Film schools in New Mexico -[2018-02-13T00:49:01.131] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:49:01.160] [INFO] cheese - inserting 1000 documents. first: Thomas J. Fogarty and last: Dré Moore -[2018-02-13T00:49:01.191] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:49:01.217] [INFO] cheese - inserting 1000 documents. first: Ealy, Michael and last: Category:Bodies of water of Alabama by county -[2018-02-13T00:49:01.243] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:49:01.509] [INFO] cheese - inserting 1000 documents. first: Category:1980s Thai television series debuts and last: Category:1986 NCAA Division III football season -[2018-02-13T00:49:01.513] [INFO] cheese - inserting 1000 documents. first: I'm Willing (Marker Starling album) and last: Category:Railway stations in North Western Province -[2018-02-13T00:49:01.548] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:49:01.551] [INFO] cheese - inserting 1000 documents. first: William Snell and last: Room For Love -[2018-02-13T00:49:01.561] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:49:01.605] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:49:01.828] [INFO] cheese - inserting 1000 documents. first: Vaccine denial and last: Justice Durham (disambiguation) -[2018-02-13T00:49:01.853] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:49:01.935] [INFO] cheese - inserting 1000 documents. first: Category:1987 NCAA Division III football season and last: Sandra Webster -[2018-02-13T00:49:01.967] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:49:01.990] [INFO] cheese - inserting 1000 documents. first: Getap, Aragatsotn and last: Kyushu Ohtani Junior College -[2018-02-13T00:49:02.042] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:49:02.051] [INFO] cheese - inserting 1000 documents. first: Mission scanner and last: Vancouver Group of Medical Editors -[2018-02-13T00:49:02.074] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T00:49:02.206] [INFO] cheese - inserting 1000 documents. first: Westmoreland County Coal Strike of 1910–11 and last: Category:Centuries in Phnom Penh -[2018-02-13T00:49:02.233] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:49:02.294] [INFO] cheese - inserting 1000 documents. first: Wellington Hospital (United Kingdom) and last: Category:Copa América stadiums -[2018-02-13T00:49:02.321] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:49:02.378] [INFO] cheese - inserting 1000 documents. first: Gudinski, Michael and last: I Just Feel So "Sweet" -[2018-02-13T00:49:02.409] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:49:02.468] [INFO] cheese - inserting 1000 documents. first: Category:History of Phnom Penh and last: Hersham Boys -[2018-02-13T00:49:02.495] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:02.572] [INFO] cheese - inserting 1000 documents. first: WHCR-LP and last: Johnny Walsh (hurler) -[2018-02-13T00:49:02.601] [INFO] cheese - inserting 1000 documents. first: Elorde and last: Category:Church of England archdeacons -[2018-02-13T00:49:02.605] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:49:02.628] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:49:02.693] [INFO] cheese - inserting 1000 documents. first: André Brunot and last: Blepharomastix mononalis -[2018-02-13T00:49:02.710] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:49:02.847] [INFO] cheese - inserting 1000 documents. first: File:Fos Psila Cover.jpg and last: Category:Anglican archdeacons in Canada -[2018-02-13T00:49:02.870] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:49:02.926] [INFO] cheese - inserting 1000 documents. first: Template:1949 BAA Draft and last: Roundtop Antiques Fair -[2018-02-13T00:49:02.965] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:49:02.999] [INFO] cheese - inserting 1000 documents. first: Blepharomastix hyperochalis and last: 2014–15 FK Dukla Prague season -[2018-02-13T00:49:03.041] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:49:03.069] [INFO] cheese - inserting 1000 documents. first: Hymenochilus confertus and last: Egilof von Hohenheim -[2018-02-13T00:49:03.101] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:49:03.230] [INFO] cheese - inserting 1000 documents. first: Martin Sherson and last: Ford Motor Company Assembly Plant (Atlanta) -[2018-02-13T00:49:03.261] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:49:03.295] [INFO] cheese - inserting 1000 documents. first: Karmika Kallanalla and last: Category:2009 CAF Confederation Cup -[2018-02-13T00:49:03.335] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:49:03.381] [INFO] cheese - inserting 1000 documents. first: Jay Z and last: Peter S. Kalikow -[2018-02-13T00:49:03.427] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:49:03.609] [INFO] cheese - inserting 1000 documents. first: Mantang narrow mouthed frog and last: Wikipedia:Possibly unfree files/2014 November 30 -[2018-02-13T00:49:03.653] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:49:03.695] [INFO] cheese - inserting 1000 documents. first: Python (painter) and last: Category:Currency introduced in 1948 -[2018-02-13T00:49:03.719] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:49:03.764] [INFO] cheese - inserting 1000 documents. first: 1923 Grand Prix season and last: Category:1927 in Lebanon -[2018-02-13T00:49:03.805] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:49:03.882] [INFO] cheese - inserting 1000 documents. first: K47KU-D and last: Dennis L. Algiere -[2018-02-13T00:49:03.912] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:03.972] [INFO] cheese - inserting 1000 documents. first: Quartilla and last: McCormack, Michael -[2018-02-13T00:49:04.029] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:04.144] [INFO] cheese - inserting 1000 documents. first: Kolkata-Gorakhpur Poorvanchal Express and last: K22IT -[2018-02-13T00:49:04.175] [INFO] cheese - inserting 1000 documents. first: Antonio Caponigro and last: Ananda Marg -[2018-02-13T00:49:04.174] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:04.219] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:49:04.301] [INFO] cheese - inserting 1000 documents. first: McCoy, Michael and last: File:WRJD Poder1410am logo.jpg -[2018-02-13T00:49:04.341] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:49:04.404] [INFO] cheese - inserting 1000 documents. first: K23BP and last: Hunedoara-Timisana -[2018-02-13T00:49:04.433] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:04.562] [INFO] cheese - inserting 1000 documents. first: Hitler's Pawn and last: List of Dallas Stars draft picks -[2018-02-13T00:49:04.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Djparagbiswas and last: Niavarani, Michael -[2018-02-13T00:49:04.606] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:49:04.606] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:49:04.821] [INFO] cheese - inserting 1000 documents. first: Chestnuts long barrow and last: List of radio stations in Nelson -[2018-02-13T00:49:04.865] [INFO] cheese - inserting 1000 documents. first: Nicholas, Michael and last: Argentinian army -[2018-02-13T00:49:04.865] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:49:04.905] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:49:05.022] [INFO] cheese - inserting 1000 documents. first: Cedarmere-Clayton Estates and last: File:Sparklers on the Fourth of July in Lewiston Maine.JPG -[2018-02-13T00:49:05.078] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:49:05.243] [INFO] cheese - inserting 1000 documents. first: Fort-221 and last: Stenocorus irroratus -[2018-02-13T00:49:05.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2017 June 30 and last: Military Vicariate of Paraguay -[2018-02-13T00:49:05.296] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:49:05.323] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:49:05.544] [INFO] cheese - inserting 1000 documents. first: Super-numerary teeth and last: Aguda -[2018-02-13T00:49:05.607] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:49:05.723] [INFO] cheese - inserting 1000 documents. first: Stenocorus spinicornis and last: Lennox Alves -[2018-02-13T00:49:05.769] [INFO] cheese - inserting 1000 documents. first: IMO 8635162 and last: Mohammad Usman (politician) -[2018-02-13T00:49:05.811] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:49:05.831] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:49:06.088] [INFO] cheese - inserting 1000 documents. first: Hindustantimes and last: Scânteia, Ialomița -[2018-02-13T00:49:06.100] [INFO] cheese - inserting 1000 documents. first: Category:2011 in Prince Edward Island and last: Bocchoris trivitralis -[2018-02-13T00:49:06.125] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:49:06.128] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:49:06.153] [INFO] cheese - inserting 1000 documents. first: Mir Humayun Aziz Kurd and last: Nadia Kassem -[2018-02-13T00:49:06.186] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:49:06.412] [INFO] cheese - inserting 1000 documents. first: Don Wilson (Canadian football) and last: Category:1991 Icelandic television series debuts -[2018-02-13T00:49:06.446] [INFO] cheese - inserting 1000 documents. first: NGC 7035A and last: Fay Foster -[2018-02-13T00:49:06.450] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:49:06.478] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:49:06.487] [INFO] cheese - inserting 1000 documents. first: Săveni, Ialomița and last: American games -[2018-02-13T00:49:06.526] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:49:06.730] [INFO] cheese - inserting 1000 documents. first: Category:1992 Icelandic television series debuts and last: Wolf in White Van -[2018-02-13T00:49:06.757] [INFO] cheese - inserting 1000 documents. first: Category:Archaeological protected monuments in Kegalle District and last: Colour-Staff method -[2018-02-13T00:49:06.757] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:49:06.802] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:49:06.862] [INFO] cheese - inserting 1000 documents. first: Residenz, Munich and last: Category:People executed by the Weimar Republic -[2018-02-13T00:49:06.900] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:49:06.970] [INFO] cheese - inserting 1000 documents. first: Part lace and last: Category:Cities in Kansas City metropolitan area -[2018-02-13T00:49:06.990] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:49:07.072] [INFO] cheese - inserting 1000 documents. first: Colour-Staff and last: Luna Nørgaard Gewitz -[2018-02-13T00:49:07.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Strings (Unix) and last: Stellarium -[2018-02-13T00:49:07.121] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:49:07.136] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:49:07.227] [INFO] cheese - inserting 1000 documents. first: Bobby Whitehead and last: List of churches in Frederikssund Municipality -[2018-02-13T00:49:07.266] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:49:07.399] [INFO] cheese - inserting 1000 documents. first: IEEE Transactions on NanoBioscience and last: Butterfly (Deen album) -[2018-02-13T00:49:07.424] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:49:07.445] [INFO] cheese - inserting 1000 documents. first: The Real Ronaldo and last: USS Florence -[2018-02-13T00:49:07.459] [INFO] cheese - inserting 1000 documents. first: Bogle-Chandler case and last: Category:Albums produced by John Hill (record producer) -[2018-02-13T00:49:07.465] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:49:07.484] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:49:07.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Glory of Heracles and last: File:Washington Redskins logo.svg -[2018-02-13T00:49:07.664] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:07.675] [INFO] cheese - inserting 1000 documents. first: 1970 World Championship of Drivers and last: George Klein (disc jockey) -[2018-02-13T00:49:07.682] [INFO] cheese - inserting 1000 documents. first: Category:Track cycling at the 1900 Summer Olympics and last: Gettler Boys -[2018-02-13T00:49:07.705] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T00:49:07.707] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:49:07.881] [INFO] cheese - inserting 1000 documents. first: Karghilik and last: Eduardo e cristina -[2018-02-13T00:49:07.900] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Mexican cinema articles and last: Caitlin Reilly and Jamieson Wilson v Secretary of State for Work and Pensions -[2018-02-13T00:49:07.909] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:49:07.927] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:49:07.931] [INFO] cheese - inserting 1000 documents. first: San Carlos Handicap and last: Record, Michael -[2018-02-13T00:49:07.965] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:49:08.144] [INFO] cheese - inserting 1000 documents. first: Template:TFA title/December 10, 2014 and last: Template:Did you know nominations/Ovi (poetry) -[2018-02-13T00:49:08.185] [INFO] cheese - inserting 1000 documents. first: Music of the SaGa series and last: Przepałkowo -[2018-02-13T00:49:08.188] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:49:08.203] [INFO] cheese - inserting 1000 documents. first: Rector, Michael and last: Philippe Etienne (athlete) -[2018-02-13T00:49:08.221] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:49:08.233] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:49:08.488] [INFO] cheese - inserting 1000 documents. first: Rimau-rimau and last: Arao Station (Kumamoto) -[2018-02-13T00:49:08.495] [INFO] cheese - inserting 1000 documents. first: List of Statutes of New Zealand (1840–90) and last: Labor election -[2018-02-13T00:49:08.502] [INFO] cheese - inserting 1000 documents. first: Psilocybe pseudozapotecorum and last: Category:Albania transport templates -[2018-02-13T00:49:08.529] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:49:08.556] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:49:08.568] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:49:08.798] [INFO] cheese - inserting 644 documents. first: Minami-Arao Station and last: HD 206067 -[2018-02-13T00:49:08.828] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:49:08.828] [INFO] cheese - worker pid:56523 is done. inserted 2756645 pages in 0 secs. -[2018-02-13T00:49:08.859] [INFO] cheese - inserting 1000 documents. first: Labor leadership election and last: Template:2017–18 Armenian Premier League table -[2018-02-13T00:49:08.862] [INFO] cheese - inserting 1000 documents. first: Made in Texas and last: Template:Big Ten Conference Women's Basketball Tournament navbox -[2018-02-13T00:49:08.887] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:49:08.893] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:49:09.045] [INFO] cheese - inserting 1000 documents. first: Category:Judicial Committee of the Privy Council cases on appeal from Brunei and last: N-65 National Highway -[2018-02-13T00:49:09.059] [INFO] cheese - batch complete in: 0.166 secs -[2018-02-13T00:49:09.092] [INFO] cheese - inserting 1000 documents. first: Category:Ceramics manufacturers of Portugal and last: High Life (film) -[2018-02-13T00:49:09.110] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:09.246] [INFO] cheese - inserting 1000 documents. first: Category:Banks disestablished in 2012 and last: Category:Film schools in Bulgaria -[2018-02-13T00:49:09.261] [INFO] cheese - inserting 1000 documents. first: Aṣṭachāp and last: Category:FIA Formula 2 Championship teams -[2018-02-13T00:49:09.268] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:09.278] [INFO] cheese - batch complete in: 0.168 secs -[2018-02-13T00:49:09.440] [INFO] cheese - inserting 1000 documents. first: Corynothrix and last: European Youth Orienteering Championships -[2018-02-13T00:49:09.456] [INFO] cheese - batch complete in: 0.178 secs -[2018-02-13T00:49:09.469] [INFO] cheese - inserting 1000 documents. first: Smart (Hey! Say! JUMP album) and last: Lúcio Flávio, o Passageiro da Agonia -[2018-02-13T00:49:09.493] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:49:09.597] [INFO] cheese - inserting 1000 documents. first: Minecraft: Console Edition and last: English Electric KDP10 -[2018-02-13T00:49:09.615] [INFO] cheese - batch complete in: 0.159 secs -[2018-02-13T00:49:09.660] [INFO] cheese - inserting 1000 documents. first: Template:User USAF SAC and last: Signé Arsène Lupin -[2018-02-13T00:49:09.678] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:49:09.774] [INFO] cheese - inserting 1000 documents. first: Category:1890s establishments in Georgia (country) and last: Holywell Park Conference Centre -[2018-02-13T00:49:09.790] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:49:09.841] [INFO] cheese - inserting 1000 documents. first: George Jones (musician) and last: Category:National Register of Historic Places in Putnam County, Ohio -[2018-02-13T00:49:09.867] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:49:09.984] [INFO] cheese - inserting 1000 documents. first: Jean-Yves Mallat and last: Wikipedia:Database reports/Top new page reviewers -[2018-02-13T00:49:10.008] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:49:10.115] [INFO] cheese - inserting 1000 documents. first: Daira Dinpanah railway station and last: Sara Keane -[2018-02-13T00:49:10.148] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:49:10.224] [INFO] cheese - inserting 1000 documents. first: File:Yearbook photo of Elaine Anthony.jpg and last: Immersive Commerce (i-Commerce) -[2018-02-13T00:49:10.252] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:10.423] [INFO] cheese - inserting 1000 documents. first: Frédéric Bitsamou and last: Roberts Elementary -[2018-02-13T00:49:10.439] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:49:10.464] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of AdamTayl and last: Spanish forts of Texas -[2018-02-13T00:49:10.499] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:49:10.595] [INFO] cheese - inserting 1000 documents. first: O.M. Roberts Elementary and last: File:Kamen Rider 555, Paradise Lost, Blu-ray Cover.jpg -[2018-02-13T00:49:10.610] [INFO] cheese - batch complete in: 0.17 secs -[2018-02-13T00:49:10.727] [INFO] cheese - inserting 1000 documents. first: Cross-serial dependency and last: Category:2004 establishments in Laos -[2018-02-13T00:49:10.764] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:49:10.806] [INFO] cheese - inserting 1000 documents. first: Jailto Bonfim and last: Canton of Saint-Céré -[2018-02-13T00:49:10.833] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:11.017] [INFO] cheese - inserting 1000 documents. first: Category:1964 telenovelas and last: Daniel Graham (apothecary) -[2018-02-13T00:49:11.028] [INFO] cheese - inserting 1000 documents. first: Saint Ninian's Chapel and last: Military Division of the Potomac -[2018-02-13T00:49:11.043] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:11.061] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:11.226] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Plucheeae and last: Elvira Cabbarova -[2018-02-13T00:49:11.240] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:11.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2014 December 2 and last: Category:SD Leioa footballers -[2018-02-13T00:49:11.268] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:49:11.398] [INFO] cheese - inserting 1000 documents. first: Wandmacher, Michael and last: Countess of Harcourt (1812 ship) -[2018-02-13T00:49:11.420] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:11.430] [INFO] cheese - inserting 1000 documents. first: John Peace Jr. House and last: Texas State Highway 76 (pre-1939) -[2018-02-13T00:49:11.457] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:49:11.618] [INFO] cheese - inserting 1000 documents. first: Grassland Research Institute and last: File:Betty1.jpg -[2018-02-13T00:49:11.640] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:49:11.686] [INFO] cheese - inserting 1000 documents. first: Texas State Highway 77 (pre-1939) and last: Cruz Family -[2018-02-13T00:49:11.710] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:49:11.814] [INFO] cheese - inserting 1000 documents. first: Florrum and last: Dharmapuri, Telangana -[2018-02-13T00:49:11.840] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:11.900] [INFO] cheese - inserting 1000 documents. first: Diacme mopsalis and last: Turfan (volcano) -[2018-02-13T00:49:11.920] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:12.002] [INFO] cheese - inserting 1000 documents. first: Zavolzhye engine plant and last: Category:Bodies of water of Talladega County, Alabama -[2018-02-13T00:49:12.021] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:49:12.143] [INFO] cheese - inserting 1000 documents. first: Category:Mexican telenovelas stubs and last: MakovskyIntegratedCommunications -[2018-02-13T00:49:12.180] [INFO] cheese - inserting 1000 documents. first: New Zealand Top 50 singles of 2005 and last: Charles Homan -[2018-02-13T00:49:12.182] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:12.201] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:12.366] [INFO] cheese - inserting 1000 documents. first: Linda Gross Theater and last: Wikipedia:Articles for deletion/Andrew Sesinyi -[2018-02-13T00:49:12.388] [INFO] cheese - inserting 1000 documents. first: Gentile converts to Judaism and last: Emmett Dougherty -[2018-02-13T00:49:12.391] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:12.412] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:49:12.587] [INFO] cheese - inserting 1000 documents. first: Thudiyalur railway station and last: File:Matlock Rose.jpeg -[2018-02-13T00:49:12.591] [INFO] cheese - inserting 1000 documents. first: Havat Ma'on and last: Tătăreşti, Străşeni -[2018-02-13T00:49:12.604] [INFO] cheese - batch complete in: 0.192 secs -[2018-02-13T00:49:12.610] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:49:12.762] [INFO] cheese - inserting 1000 documents. first: Draft:Ceosonson and last: Category:Bodies of water of Lee County, Iowa -[2018-02-13T00:49:12.790] [INFO] cheese - batch complete in: 0.186 secs -[2018-02-13T00:49:12.855] [INFO] cheese - inserting 1000 documents. first: Hendl and last: 1985 Women's World Open Squash Championship -[2018-02-13T00:49:12.889] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:13.003] [INFO] cheese - inserting 1000 documents. first: 1907 Syracuse Orangemen football team and last: Wikipedia:WikiProject Spam/Local/glaucoomfonds.nl -[2018-02-13T00:49:13.026] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:49:13.143] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Metro FC and last: Şandor Gal -[2018-02-13T00:49:13.171] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:49:13.201] [INFO] cheese - inserting 1000 documents. first: Christian Green Wood Senior Secondary School and last: Cino, Maria -[2018-02-13T00:49:13.223] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:13.294] [INFO] cheese - inserting 1000 documents. first: Template:Infobox PBA team/doc and last: Akita Publishing Co., Ltd. -[2018-02-13T00:49:13.307] [INFO] cheese - batch complete in: 0.136 secs -[2018-02-13T00:49:13.391] [INFO] cheese - inserting 1000 documents. first: Ciobanu, Maria and last: Damla Colbay -[2018-02-13T00:49:13.414] [INFO] cheese - batch complete in: 0.191 secs -[2018-02-13T00:49:13.486] [INFO] cheese - inserting 1000 documents. first: Ştefania Vătafu and last: Category:Ragusan scholars -[2018-02-13T00:49:13.508] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:13.584] [INFO] cheese - inserting 1000 documents. first: Sri Konda Laxman Telangana State Horticultural University and last: Exeter vs Andover -[2018-02-13T00:49:13.602] [INFO] cheese - batch complete in: 0.188 secs -[2018-02-13T00:49:13.689] [INFO] cheese - inserting 1000 documents. first: Module:Location map/data/Vatican City/doc and last: Ken Wookey (footballer born 1922) -[2018-02-13T00:49:13.707] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:13.730] [INFO] cheese - inserting 1000 documents. first: Category:Bodies of water of Jefferson County, Mississippi and last: Category:Burials at Beaufort National Cemetery (South Carolina) -[2018-02-13T00:49:13.750] [INFO] cheese - batch complete in: 0.148 secs -[2018-02-13T00:49:13.930] [INFO] cheese - inserting 1000 documents. first: Uday Express and last: File:Cook County Illinois Incorporated and Unincorporated areas Sauk Village Highlighted.svg -[2018-02-13T00:49:13.931] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saint Ignatius Church, Baltimore and last: File:GloryDaysSpringsteen.jpg -[2018-02-13T00:49:13.949] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:13.958] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:49:14.069] [INFO] cheese - inserting 1000 documents. first: File:Clair County Illinois Incorporated and Unincorporated areas Sauget Highlighted.svg and last: Wikipedia:WikiProject Spam/LinkReports/aurcade.com -[2018-02-13T00:49:14.081] [INFO] cheese - batch complete in: 0.132 secs -[2018-02-13T00:49:14.146] [INFO] cheese - inserting 1000 documents. first: Bau-Bataillon 121 and last: 1986 Intercontinental Final -[2018-02-13T00:49:14.175] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:49:14.339] [INFO] cheese - inserting 1000 documents. first: 24 Commando Regiment (United Kingdom) and last: Incertae sedis (Arctiinae) -[2018-02-13T00:49:14.396] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:49:14.489] [INFO] cheese - inserting 1000 documents. first: Taketomi Tokitoshi and last: CSA Scientific Research on the International Space Station -[2018-02-13T00:49:14.537] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:49:14.767] [INFO] cheese - inserting 1000 documents. first: Reputation (Lewis episode) and last: Cloeon fluviatile -[2018-02-13T00:49:14.799] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:49:14.840] [INFO] cheese - inserting 1000 documents. first: File:Crossroads marker.jpg and last: Category:Belizean television series endings by year -[2018-02-13T00:49:14.891] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:49:14.993] [INFO] cheese - inserting 1000 documents. first: Cloeon languidum and last: Dimeragrion -[2018-02-13T00:49:15.009] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:15.248] [INFO] cheese - inserting 1000 documents. first: Gillis Peeters and last: Kumar Sanu discography and filmography -[2018-02-13T00:49:15.268] [INFO] cheese - inserting 1000 documents. first: Calilestes and last: Kun, Maria -[2018-02-13T00:49:15.285] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:49:15.319] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:15.610] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Canada Amateur Hockey Association seasons and last: Draft:Pretail -[2018-02-13T00:49:15.640] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:49:15.644] [INFO] cheese - inserting 1000 documents. first: Kuncewiczowa, Maria and last: William Kelly (Australian cricketer) -[2018-02-13T00:49:15.721] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:49:16.173] [INFO] cheese - inserting 1000 documents. first: File:The Old Forester House.jpg and last: Wikipedia:Articles for deletion/Furler -[2018-02-13T00:49:16.185] [INFO] cheese - inserting 1000 documents. first: Captain America: Civil War (film) and last: Category:Songs written by Greg Camp -[2018-02-13T00:49:16.211] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:49:16.238] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:49:16.392] [INFO] cheese - inserting 1000 documents. first: Godson (surname) and last: File:Adams County Pennsylvania Incorporated and Unincorporated areas Arendtsville Highlighted.svg -[2018-02-13T00:49:16.412] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:49:16.513] [INFO] cheese - inserting 1000 documents. first: Montecore: en unik tiger and last: The Breakwater -[2018-02-13T00:49:16.552] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:49:16.707] [INFO] cheese - inserting 1000 documents. first: File:Lackawanna County Pennsylvania Incorporated and Unincorporated areas Archbald Highlighted.svg and last: Phetchabun F.C. -[2018-02-13T00:49:16.741] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:49:16.780] [INFO] cheese - inserting 1000 documents. first: Category:1236 establishments in Italy and last: Bronius Laurinavicius -[2018-02-13T00:49:16.801] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:49:16.976] [INFO] cheese - inserting 1000 documents. first: Category:Presidents of the Senate (Cambodia) and last: Brăteni (disambiguation) -[2018-02-13T00:49:16.993] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dichromanthus and last: Black-and-white laughingthrush -[2018-02-13T00:49:16.998] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:17.027] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:49:17.281] [INFO] cheese - inserting 1000 documents. first: File:Go for It, Baby.jpg and last: File:Dane County Wisconsin Incorporated and Unincorporated areas Marshall Highlighted.svg -[2018-02-13T00:49:17.301] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:49:17.342] [INFO] cheese - inserting 1000 documents. first: Brătești (disambiguation) and last: W-X Freeway -[2018-02-13T00:49:17.370] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:49:17.446] [INFO] cheese - inserting 1000 documents. first: Ahmed Younis and last: File:Simon1Gameplay.png -[2018-02-13T00:49:17.462] [INFO] cheese - batch complete in: 0.161 secs -[2018-02-13T00:49:17.590] [INFO] cheese - inserting 1000 documents. first: Flint, Michigan railway station and last: Allendea -[2018-02-13T00:49:17.624] [INFO] cheese - inserting 1000 documents. first: Anomisma and last: File:Marion County West Virginia Incorporated and Unincorporated areas Barrackville Highlighted.svg -[2018-02-13T00:49:17.625] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:17.642] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:17.807] [INFO] cheese - inserting 1000 documents. first: File:Cabell County West Virginia Incorporated and Unincorporated areas Barboursville Highlighted.svg and last: Category:New Zealand youth international footballers -[2018-02-13T00:49:17.827] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:49:17.865] [INFO] cheese - inserting 1000 documents. first: Starkea and last: 1967–68 Yugoslav First Basketball League -[2018-02-13T00:49:17.892] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:49:18.043] [INFO] cheese - inserting 1000 documents. first: 1964 All-Ireland Under-21 Football Championship and last: BBC2 Wales -[2018-02-13T00:49:18.075] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:49:18.141] [INFO] cheese - inserting 1000 documents. first: Second Programme (NERIT) and last: Peerless -[2018-02-13T00:49:18.180] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:49:18.238] [INFO] cheese - inserting 1000 documents. first: Category:American lawyers admitted to the bar by reading law and last: Susan P. Holmes -[2018-02-13T00:49:18.256] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:18.436] [INFO] cheese - inserting 1000 documents. first: Walid Khazen and last: Category:2005 in English rugby league -[2018-02-13T00:49:18.440] [INFO] cheese - inserting 1000 documents. first: File:KairosDB Architecture Diagram.png and last: IMO 9155559 -[2018-02-13T00:49:18.465] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:18.479] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:49:18.700] [INFO] cheese - inserting 1000 documents. first: IMO 9155561 and last: Dipodarctus -[2018-02-13T00:49:18.724] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:18.737] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/edifice.cc and last: Râul Cheii (disambiguation) -[2018-02-13T00:49:18.772] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:49:18.887] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Jenna Joseph and last: FX Latin America -[2018-02-13T00:49:18.905] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:49:18.982] [INFO] cheese - inserting 1000 documents. first: Bani Yas International Tournament and last: Category:National Assembly (Venezuela) -[2018-02-13T00:49:19.010] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:49:19.045] [INFO] cheese - inserting 1000 documents. first: Category:Burials in Alameda County, California and last: File:Cullman County and Marshall County Alabama Incorporated and Unincorporated areas Arab Highlighted 0102116.svg -[2018-02-13T00:49:19.062] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:49:19.194] [INFO] cheese - inserting 1000 documents. first: Category:Members of the National Assembly (Venezuela) and last: Template:Infobox Eurovision/1968 -[2018-02-13T00:49:19.219] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:19.247] [INFO] cheese - inserting 1000 documents. first: File:Lauderdale County Alabama Incorporated and Unincorporated areas Anderson Highlighted 0101756.svg and last: Wikipedia:Articles for deletion/Qrator -[2018-02-13T00:49:19.269] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:49:19.456] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/heropt.net and last: JS Hiuchi (AMS-4301) -[2018-02-13T00:49:19.462] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Eurovision/1969 and last: Tarma, Kentucky -[2018-02-13T00:49:19.483] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:49:19.498] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:19.773] [INFO] cheese - inserting 1000 documents. first: Strnovac and last: List of archaeological sites beyond national boundaries -[2018-02-13T00:49:19.818] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:49:19.979] [INFO] cheese - inserting 1000 documents. first: Canton of Castres-2 and last: File:Pinal County Arizona Incorporated and Unincorporated areas Wet Camp Village Highlighted 0482060.svg -[2018-02-13T00:49:20.024] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:49:20.093] [INFO] cheese - inserting 1000 documents. first: Biblia Paulistów and last: Category:1945 radio programme debuts -[2018-02-13T00:49:20.124] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:49:20.238] [INFO] cheese - inserting 1000 documents. first: File:La Paz County Arizona Incorporated and Unincorporated areas Wenden Highlighted 0481550.svg and last: Template:2017–18 First Professional Football League (Bulgaria) Relegation Round Group B table -[2018-02-13T00:49:20.257] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:49:20.451] [INFO] cheese - inserting 1000 documents. first: Isabella de Coucy and last: Always (band) -[2018-02-13T00:49:20.456] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ROBLOX Studio and last: Template:Justcurious/doc -[2018-02-13T00:49:20.483] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:49:20.504] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:49:20.706] [INFO] cheese - inserting 1000 documents. first: Northern celadon and last: 🏴󠁣󠁡󠁳󠁫󠁿 -[2018-02-13T00:49:20.735] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:20.795] [INFO] cheese - inserting 1000 documents. first: Osage, Texas and last: Melanis cinaron -[2018-02-13T00:49:20.828] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:49:20.947] [INFO] cheese - inserting 1000 documents. first: Medard Makanga and last: Syncoelidium -[2018-02-13T00:49:20.969] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:49:21.080] [INFO] cheese - inserting 1000 documents. first: John Marion Galloway House and last: Carlos Samuel Moreno Terán -[2018-02-13T00:49:21.111] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:49:21.153] [INFO] cheese - inserting 1000 documents. first: Bdelloura and last: Book:Psychiatry -[2018-02-13T00:49:21.183] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:49:21.367] [INFO] cheese - inserting 1000 documents. first: Lakhdar Ben Cherif and last: File:Los Angeles County California Incorporated and Unincorporated areas Manhattan Beach Highlighted 0645400.svg -[2018-02-13T00:49:21.391] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:49:21.401] [INFO] cheese - inserting 1000 documents. first: File:The Cup of Life cover.png and last: Blendtron -[2018-02-13T00:49:21.444] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:49:21.563] [INFO] cheese - inserting 1000 documents. first: File:Mendocino County California Incorporated and Unincorporated areas Manchester Highlighted 0645386.svg and last: Draft:Frederick J. Stoever -[2018-02-13T00:49:21.591] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:21.759] [INFO] cheese - inserting 1000 documents. first: Wanqani Apachita and last: File:Santa Ignacia Tarlac.png -[2018-02-13T00:49:21.811] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:49:21.874] [INFO] cheese - inserting 1000 documents. first: The Americans Season 2 Episode 6 : Behind the Red Door and last: P. K. Thakur -[2018-02-13T00:49:21.910] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:49:22.110] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Abbey Vale and last: American Journal of Pathology -[2018-02-13T00:49:22.154] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:49:22.163] [INFO] cheese - inserting 1000 documents. first: File:Last Man Club.jpg and last: Liers -[2018-02-13T00:49:22.220] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:22.474] [INFO] cheese - inserting 1000 documents. first: Elizabeth duck and last: File:Tori Amos Past the Mission UK US cover.jpg -[2018-02-13T00:49:22.494] [INFO] cheese - inserting 1000 documents. first: Nikolay Vasilyevich Belov and last: Baku–Tbilisi–Akhalkalaki–Kars railway -[2018-02-13T00:49:22.510] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:49:22.538] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:49:22.825] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Igor Aleksovski and last: Caesalpinia nhatrangense -[2018-02-13T00:49:22.838] [INFO] cheese - inserting 1000 documents. first: Tseax and last: William Brill -[2018-02-13T00:49:22.865] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:49:22.927] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:49:23.142] [INFO] cheese - inserting 1000 documents. first: Andy Maloney and last: Canton El Tablon -[2018-02-13T00:49:23.175] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:23.202] [INFO] cheese - inserting 1000 documents. first: Jammu and Kashmir Legislative Assembly election, 1987 and last: Desnianskyi District -[2018-02-13T00:49:23.228] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:49:23.352] [INFO] cheese - inserting 1000 documents. first: Ahmed Warsama and last: Basic RV Repair and Palmistry -[2018-02-13T00:49:23.355] [INFO] cheese - inserting 1000 documents. first: SS Van Heemskerk (1909) and last: Robert J. Munson -[2018-02-13T00:49:23.373] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:49:23.377] [INFO] cheese - batch complete in: 0.148 secs -[2018-02-13T00:49:23.605] [INFO] cheese - inserting 1000 documents. first: Sri Lanka women's national under-19 basketball team and last: Template:Europe of the Peoples (2004)/meta/shortname -[2018-02-13T00:49:23.637] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:49:23.667] [INFO] cheese - inserting 1000 documents. first: 北斗 and last: Baía das Pontas -[2018-02-13T00:49:23.708] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:49:23.846] [INFO] cheese - inserting 1000 documents. first: Category:1912 Swedish novels and last: Wikipedia:Articles for deletion/Happy Birthday, Robot! -[2018-02-13T00:49:23.864] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:49:23.993] [INFO] cheese - inserting 1000 documents. first: TCL Communication and last: Template:England-cricket-bio-1710s-stub -[2018-02-13T00:49:24.027] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:49:24.078] [INFO] cheese - inserting 1000 documents. first: William Meigh Goodman and last: Cratera pseudovaginuloides -[2018-02-13T00:49:24.110] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:49:24.340] [INFO] cheese - inserting 1000 documents. first: Category:1856 in the Caribbean and last: File:Something i need cover.png -[2018-02-13T00:49:24.363] [INFO] cheese - inserting 1000 documents. first: Cratera anamariae and last: Saratov Electrical Components Production Association -[2018-02-13T00:49:24.376] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:49:24.390] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:24.587] [INFO] cheese - inserting 1000 documents. first: Template:Works of Henri Bergson and last: Minyak coinage during the Western Xia -[2018-02-13T00:49:24.604] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:49:24.617] [INFO] cheese - inserting 1000 documents. first: Category:1924 in Central America and last: Paige Smith -[2018-02-13T00:49:24.641] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:49:24.739] [INFO] cheese - inserting 1000 documents. first: Minyak coinage in the Western Xia and last: Imler, Pennsylvania -[2018-02-13T00:49:24.757] [INFO] cheese - batch complete in: 0.153 secs -[2018-02-13T00:49:24.888] [INFO] cheese - inserting 1000 documents. first: Techniques of genetic engineering and last: Dryobates -[2018-02-13T00:49:24.947] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:49:24.959] [INFO] cheese - inserting 1000 documents. first: Draft:Ytram and last: Halorhabdus utahensis -[2018-02-13T00:49:24.986] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:25.163] [INFO] cheese - inserting 1000 documents. first: Halorhabdus tiamatea and last: Global Business School Barcelona -[2018-02-13T00:49:25.184] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:25.194] [INFO] cheese - inserting 1000 documents. first: Ghzan-stong and last: Five-bar swordtail -[2018-02-13T00:49:25.225] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:49:25.379] [INFO] cheese - inserting 1000 documents. first: You Can't Turn Me Off and last: Bangladesh Railway Class 2900 -[2018-02-13T00:49:25.412] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:25.536] [INFO] cheese - inserting 1000 documents. first: Common mime and last: Category:1887 in Central America -[2018-02-13T00:49:25.576] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:49:25.618] [INFO] cheese - inserting 1000 documents. first: Ledderhose and last: Acidianus manzaensis -[2018-02-13T00:49:25.638] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:49:25.800] [INFO] cheese - inserting 1000 documents. first: Acidianus pozzuoliensis and last: Ela I Si Vzemi -[2018-02-13T00:49:25.818] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:25.837] [INFO] cheese - inserting 1000 documents. first: Anantaboga and last: Living in the Moment (EP) -[2018-02-13T00:49:25.864] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:49:25.993] [INFO] cheese - inserting 1000 documents. first: Stylianos Stratakos and last: File:R.E.M. 7IN—83-88 Box Set.jpg -[2018-02-13T00:49:26.011] [INFO] cheese - batch complete in: 0.193 secs -[2018-02-13T00:49:26.047] [INFO] cheese - inserting 1000 documents. first: Living in the Moment and last: Bhale Bullodu -[2018-02-13T00:49:26.069] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:49:26.168] [INFO] cheese - inserting 1000 documents. first: Category:Moorish Revival architecture in New York City and last: Goodman, Victor -[2018-02-13T00:49:26.191] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:26.277] [INFO] cheese - inserting 1000 documents. first: Digital Communications Associates and last: Category:Sportswomen from Northern Ireland -[2018-02-13T00:49:26.301] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:49:26.347] [INFO] cheese - inserting 1000 documents. first: File:Madera County California Incorporated and Unincorporated areas Ahwahnee Highlighted 0600478.svg and last: Optare OmniDekka -[2018-02-13T00:49:26.362] [INFO] cheese - batch complete in: 0.171 secs -[2018-02-13T00:49:26.484] [INFO] cheese - inserting 1000 documents. first: Reona Aoki and last: Bo Lynn's Grocery -[2018-02-13T00:49:26.498] [INFO] cheese - batch complete in: 0.136 secs -[2018-02-13T00:49:26.513] [INFO] cheese - inserting 1000 documents. first: Steve Mallan and last: Category:Terrorism in Southeast Asia -[2018-02-13T00:49:26.539] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:49:26.727] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Älmhult Municipality and last: Pulaski County Courthouse (Pulaski, Virginia) -[2018-02-13T00:49:26.754] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:49:26.760] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2015 January 1 and last: Walden's Path -[2018-02-13T00:49:26.807] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:49:26.969] [INFO] cheese - inserting 1000 documents. first: Pulaski County Courthouse (Waynesville, Missouri) and last: Karate in Japan -[2018-02-13T00:49:26.994] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:49:27.051] [INFO] cheese - inserting 1000 documents. first: European route E25 in Belgium and last: Global position system -[2018-02-13T00:49:27.079] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:49:27.151] [INFO] cheese - inserting 1000 documents. first: Bloc identitaire and last: File:Cook County Georgia Incorporated and Unincorporated areas Sparks Highlighted 1372556.svg -[2018-02-13T00:49:27.174] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:27.293] [INFO] cheese - inserting 1000 documents. first: Postmates and last: New Haven Profs -[2018-02-13T00:49:27.310] [INFO] cheese - inserting 1000 documents. first: File:Treutlen County Georgia Incorporated and Unincorporated areas Soperton Highlighted 1371772.svg and last: File:Samrat Yadav Dakshin dare 2017 Winner.jpg -[2018-02-13T00:49:27.330] [INFO] cheese - batch complete in: 0.156 secs -[2018-02-13T00:49:27.335] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:49:27.502] [INFO] cheese - inserting 1000 documents. first: File:Kootenai County Idaho Incorporated and Unincorporated areas Hayden Highlighted 1636370.svg and last: Category:Education in Munger district -[2018-02-13T00:49:27.525] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:49:27.542] [INFO] cheese - inserting 1000 documents. first: Category:Turkish girl groups and last: Category:Companies that filed for Chapter 11 bankruptcy in 2006 -[2018-02-13T00:49:27.568] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:49:27.700] [INFO] cheese - inserting 1000 documents. first: Arizona (US band) and last: United States presidential election in New Hampshire, 1789 -[2018-02-13T00:49:27.719] [INFO] cheese - batch complete in: 0.194 secs -[2018-02-13T00:49:27.791] [INFO] cheese - inserting 1000 documents. first: Rectus capitus (disambiguation) and last: Ṭihrán -[2018-02-13T00:49:27.813] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:27.953] [INFO] cheese - inserting 1000 documents. first: Andrew Parkinson (artist) and last: File:Pasco County Florida Incorporated and Unincorporated areas Heritage Pines Highlighted 1229385.svg -[2018-02-13T00:49:27.983] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:49:28.034] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Israel coins and medals and last: Wikipedia:WikiProject Spam/LinkReports/points.speechanddebate.org -[2018-02-13T00:49:28.075] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:28.193] [INFO] cheese - inserting 1000 documents. first: File:Pasco County Florida Incorporated and Unincorporated areas Holiday Highlighted 1231075.svg and last: Christie Mountain (ski area) -[2018-02-13T00:49:28.230] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:49:28.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/points.speechanddebate.org and last: Daben -[2018-02-13T00:49:28.418] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:49:28.476] [INFO] cheese - inserting 1000 documents. first: England Lost and last: Category:People from Shelby, Montana -[2018-02-13T00:49:28.506] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:49:28.636] [INFO] cheese - inserting 1000 documents. first: Dermantsi and last: The Slave Market (film) -[2018-02-13T00:49:28.661] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:49:28.678] [INFO] cheese - inserting 1000 documents. first: Category:2003 in Libyan sport and last: List of governors of Saga Prefecture -[2018-02-13T00:49:28.704] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:49:28.874] [INFO] cheese - inserting 1000 documents. first: 2005 Army Black Knights football team and last: MBC Entertainment Award -[2018-02-13T00:49:28.901] [INFO] cheese - inserting 1000 documents. first: File:Gulliver Bookplate.jpg and last: 3β-Androstenol -[2018-02-13T00:49:28.901] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:49:28.927] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:29.096] [INFO] cheese - inserting 1000 documents. first: Brian J. Morris and last: Filip Krovinović -[2018-02-13T00:49:29.130] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:49:29.151] [INFO] cheese - inserting 1000 documents. first: Draft:Educational Passages and last: TEDxWellington -[2018-02-13T00:49:29.187] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:29.371] [INFO] cheese - inserting 1000 documents. first: Deanna Church and last: Category:Military units and formations in Suffolk -[2018-02-13T00:49:29.412] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:49:29.509] [INFO] cheese - inserting 1000 documents. first: File:Datuk-aziz-sattar.jpg and last: Zinchuk, Victor -[2018-02-13T00:49:29.568] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:49:29.660] [INFO] cheese - inserting 1000 documents. first: Underworld series and last: Category:16th-century establishments in Venezuela -[2018-02-13T00:49:29.701] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:49:29.854] [INFO] cheese - inserting 1000 documents. first: Zonana, Victor and last: Calymene blumenbachi -[2018-02-13T00:49:29.881] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:49:29.968] [INFO] cheese - inserting 755 documents. first: Category:Reservoirs in Kerala and last: Passara Electoral District -[2018-02-13T00:49:30.017] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:49:30.017] [INFO] cheese - worker pid:56526 is done. inserted 2932756 pages in 0 secs. -[2018-02-13T00:49:30.104] [INFO] cheese - inserting 1000 documents. first: Chad Johnson (TV personality) and last: Book:Justifiable Genocide: Volume 4 -[2018-02-13T00:49:30.141] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:49:30.378] [INFO] cheese - inserting 1000 documents. first: Category:Energy companies established in 2017 and last: Punchi Apith Baya Na Dan -[2018-02-13T00:49:30.414] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:49:30.616] [INFO] cheese - inserting 1000 documents. first: Southern Italian (disambiguation) and last: Kichi Jargylchak -[2018-02-13T00:49:30.638] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:30.805] [INFO] cheese - inserting 1000 documents. first: 2017 Holden Cup and last: BWV 1089 -[2018-02-13T00:49:30.834] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:49:31.053] [INFO] cheese - inserting 1000 documents. first: Nuru, Sara and last: Storer, Sara -[2018-02-13T00:49:31.079] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:49:31.330] [INFO] cheese - inserting 1000 documents. first: Category:Defunct soccer clubs in South Carolina and last: Tailteann Games (Irish Free State) -[2018-02-13T00:49:31.356] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:49:31.593] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Austroglanis and last: File:Wildrose Party logo 2017.png -[2018-02-13T00:49:31.616] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:49:31.812] [INFO] cheese - inserting 1000 documents. first: List of Adult Contemporary top 10 singles in 1996 (U.S.) and last: 88th Regiment of Foot (1779) -[2018-02-13T00:49:31.844] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:32.025] [INFO] cheese - inserting 1000 documents. first: Biotechnol. Bioprocess Eng. and last: Draft:Dembel -[2018-02-13T00:49:32.051] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:49:32.253] [INFO] cheese - inserting 1000 documents. first: Tebyan Cultural and Information Institute and last: Wikipedia:Articles for deletion/Autocrat, LLC -[2018-02-13T00:49:32.281] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:49:32.458] [INFO] cheese - inserting 1000 documents. first: Arhopala annulata and last: Reeves, Richard -[2018-02-13T00:49:32.480] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:32.661] [INFO] cheese - inserting 1000 documents. first: Michael Nathanson (actor) and last: Ocean Robbins -[2018-02-13T00:49:32.690] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:32.879] [INFO] cheese - inserting 1000 documents. first: Show Album No.1 and last: Wikipedia:Wiki Loves Pride 2015/Rome -[2018-02-13T00:49:32.908] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:49:33.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wiki Loves Pride 2015/San Francisco and last: Ivory Coast at the 2017 World Championships in Athletics -[2018-02-13T00:49:33.153] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:33.406] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Women's National Wheelchair Basketball League and last: 🏴󠁰󠁨󠁳󠁬󠁥󠁿 -[2018-02-13T00:49:33.451] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:49:33.682] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hot Topics in... and last: Wikipedia:Abuse reports/203.97.42.131 -[2018-02-13T00:49:33.706] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:33.879] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Abuse reports/204.10.221.253 and last: Rhapsodies in Black -[2018-02-13T00:49:33.909] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:34.136] [INFO] cheese - inserting 1000 documents. first: Liaoningvenator and last: Maguire, Sarah -[2018-02-13T00:49:34.159] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:49:34.339] [INFO] cheese - inserting 1000 documents. first: Main, Sarah and last: Steigviliai -[2018-02-13T00:49:34.359] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:34.624] [INFO] cheese - inserting 1000 documents. first: Schenirer, Sarah and last: The Legend of Mata Nui -[2018-02-13T00:49:34.646] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:49:34.871] [INFO] cheese - inserting 1000 documents. first: Category:Swarnavahini television series and last: Kleinmann-Low nebula -[2018-02-13T00:49:34.898] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:35.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Klase gonzales and last: Barnett, Christopher -[2018-02-13T00:49:35.129] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:49:35.347] [INFO] cheese - inserting 1000 documents. first: File:2017 Honda Ridgeline Frame Drawing.png and last: Knowles Creek -[2018-02-13T00:49:35.381] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:35.531] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dixon Park & Ride and last: List of @midnight episodes (2013) -[2018-02-13T00:49:35.546] [INFO] cheese - batch complete in: 0.165 secs -[2018-02-13T00:49:35.768] [INFO] cheese - inserting 1000 documents. first: Milwaukee/North Line and last: Pär Öberg -[2018-02-13T00:49:35.798] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:35.963] [INFO] cheese - inserting 1000 documents. first: File:Elisabeth of Austria (film).jpg and last: Draft:Raja Feather Kelly -[2018-02-13T00:49:35.981] [INFO] cheese - batch complete in: 0.183 secs -[2018-02-13T00:49:36.175] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/10 August 2017 and last: Archivio Storico del Ministero degli Affari Esteri -[2018-02-13T00:49:36.192] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:49:36.368] [INFO] cheese - inserting 1000 documents. first: File:University of Washington Seal.svg and last: Hjort, Christopher -[2018-02-13T00:49:36.389] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:36.664] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jamil Ahmed Nizamani and last: Golden Powers (disambiguation) -[2018-02-13T00:49:36.695] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:49:36.873] [INFO] cheese - inserting 1000 documents. first: Harper and McIntire Company Warehouse and last: Hesperia pann -[2018-02-13T00:49:36.907] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:49:37.097] [INFO] cheese - inserting 1000 documents. first: Template:Ranks and Insignia of Non NATO Armies/OF/Tajikistan and last: Championnat LNA -[2018-02-13T00:49:37.128] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T00:49:37.269] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Colección Patricia Phelps de Cisneros/Workshops/2017-08-09 and last: Pil Tor -[2018-02-13T00:49:37.287] [INFO] cheese - batch complete in: 0.159 secs -[2018-02-13T00:49:37.446] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Panda and last: Larry McCormack -[2018-02-13T00:49:37.483] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:49:37.669] [INFO] cheese - inserting 1000 documents. first: Draft:Palmer Simplified Layout and last: The Wild Horses -[2018-02-13T00:49:37.686] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:37.848] [INFO] cheese - inserting 1000 documents. first: File:EverWing official.jpg and last: Cape Bernouilli -[2018-02-13T00:49:37.865] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:38.020] [INFO] cheese - inserting 1000 documents. first: New Haven (Martian crater) and last: Template:Taxonomy/Gazellospira -[2018-02-13T00:49:38.042] [INFO] cheese - batch complete in: 0.176 secs -[2018-02-13T00:49:38.252] [INFO] cheese - inserting 1000 documents. first: Mr Citizen and last: Dibenz(b,f)oxepines -[2018-02-13T00:49:38.272] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:49:38.448] [INFO] cheese - inserting 1000 documents. first: Dibenz(b,f)oxepins and last: You Get My Love (Pink song) -[2018-02-13T00:49:38.471] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:38.660] [INFO] cheese - inserting 1000 documents. first: File:Plymouth PA Old Stone House.jpg and last: Category:Sudanese rappers -[2018-02-13T00:49:38.681] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:38.832] [INFO] cheese - inserting 1000 documents. first: Killeen Cowpark and last: Law of New York -[2018-02-13T00:49:38.846] [INFO] cheese - batch complete in: 0.165 secs -[2018-02-13T00:49:39.034] [INFO] cheese - inserting 1000 documents. first: Archeparchy of Mosul (disambiguation) and last: 2017 UCI Road World Championships – Men's road race -[2018-02-13T00:49:39.056] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:39.206] [INFO] cheese - inserting 1000 documents. first: Draft:2017-18 United States network television schedule daytime and last: 1979 Copa América Finals -[2018-02-13T00:49:39.231] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:49:39.384] [INFO] cheese - inserting 1000 documents. first: 1983 Copa América Finals and last: Arizona Territory -[2018-02-13T00:49:39.405] [INFO] cheese - batch complete in: 0.174 secs -[2018-02-13T00:49:39.583] [INFO] cheese - inserting 1000 documents. first: Qutlugh Qocha and last: Byfield, Richard -[2018-02-13T00:49:39.605] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:39.755] [INFO] cheese - inserting 1000 documents. first: Byrnes, Richard and last: Inverse trigonometric secant -[2018-02-13T00:49:39.777] [INFO] cheese - batch complete in: 0.172 secs -[2018-02-13T00:49:39.953] [INFO] cheese - inserting 1000 documents. first: Inverse trigonometric cosecant and last: Category:Michigan State Spartans men's tennis -[2018-02-13T00:49:39.974] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:40.235] [INFO] cheese - inserting 1000 documents. first: Valeria Brinton Young and last: Galefele Moroko -[2018-02-13T00:49:40.261] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:49:40.479] [INFO] cheese - inserting 1000 documents. first: Antony (given name) and last: Montenegrin independent championship (1992-1999) -[2018-02-13T00:49:40.506] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:49:40.694] [INFO] cheese - inserting 1000 documents. first: Montenegrin Republic Cup (1947-2006) and last: Category:Dari dialects of Afghanistan -[2018-02-13T00:49:40.723] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:49:40.916] [INFO] cheese - inserting 1000 documents. first: Derrynaflan Church and last: The Killing Machine (2010 film) -[2018-02-13T00:49:40.955] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:49:41.143] [INFO] cheese - inserting 1000 documents. first: Sheetla Mata Mandir Gurgaon and last: Cross slabs -[2018-02-13T00:49:41.160] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:49:41.323] [INFO] cheese - inserting 1000 documents. first: Wheel crosses and last: Wikipedia:Reference desk/Archives/Science/2017 August 10 -[2018-02-13T00:49:41.357] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:49:41.527] [INFO] cheese - inserting 1000 documents. first: Pierpont, John and last: Wikipedia:AOCD -[2018-02-13T00:49:41.544] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:49:41.719] [INFO] cheese - inserting 1000 documents. first: A. N. Rajan Babu and last: King of Dál nAraidi -[2018-02-13T00:49:41.747] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:41.937] [INFO] cheese - inserting 1000 documents. first: Category:Fauna of the Western Ghats and last: 2016 Deauville American Film Festival -[2018-02-13T00:49:41.951] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:49:42.088] [INFO] cheese - inserting 1000 documents. first: Charlie Ware (hurler, born 1900) and last: Denys Hawthorne -[2018-02-13T00:49:42.106] [INFO] cheese - batch complete in: 0.155 secs -[2018-02-13T00:49:42.308] [INFO] cheese - inserting 1000 documents. first: Draft:Dytto and last: Template:User WP Earthquakes -[2018-02-13T00:49:42.326] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:49:42.529] [INFO] cheese - inserting 1000 documents. first: Mean Streak and last: 'ahdnâme -[2018-02-13T00:49:42.560] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:49:42.726] [INFO] cheese - inserting 1000 documents. first: Wa1a and last: Randa Ayoubi -[2018-02-13T00:49:42.745] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:49:42.925] [INFO] cheese - inserting 1000 documents. first: Communist Revolutionary Centre and last: Wikipedia:WikiProject Spam/LinkReports/andoportugal.org -[2018-02-13T00:49:42.949] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:49:43.195] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Two Ton Baker and last: File:Princess1986.jpg -[2018-02-13T00:49:43.218] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:49:43.388] [INFO] cheese - inserting 1000 documents. first: Kim Dong-min and last: Miliukaitė -[2018-02-13T00:49:43.413] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:49:43.568] [INFO] cheese - inserting 1000 documents. first: Doctor's Wife and last: Template:Taxonomy/Heterobathmia -[2018-02-13T00:49:43.586] [INFO] cheese - batch complete in: 0.173 secs -[2018-02-13T00:49:43.747] [INFO] cheese - inserting 1000 documents. first: Kingdom of Larantuka and last: The Brookfield Library -[2018-02-13T00:49:43.765] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:43.951] [INFO] cheese - inserting 1000 documents. first: The Brookfield Public Library and last: Cavalaris -[2018-02-13T00:49:43.968] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:44.136] [INFO] cheese - inserting 1000 documents. first: Casalinuovo and last: Zamorano Pan American Agricultural School -[2018-02-13T00:49:44.158] [INFO] cheese - batch complete in: 0.19 secs -[2018-02-13T00:49:44.388] [INFO] cheese - inserting 1000 documents. first: Priory Street and last: Laszlo Baksay -[2018-02-13T00:49:44.419] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:49:44.623] [INFO] cheese - inserting 1000 documents. first: Untitled Obi Wan Kenobi film and last: HolidayMe -[2018-02-13T00:49:44.658] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:49:44.806] [INFO] cheese - inserting 677 documents. first: Villani, Pat J. and last: SV Marken -[2018-02-13T00:49:44.818] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:49:44.818] [INFO] cheese - worker pid:56527 is done. inserted 3096677 pages in 0 secs. -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71711 is now alive. startByte: 0 endByte: 7918988581 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71713 is now alive. startByte: 15830977162 endByte: 23749965743 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71714 is now alive. startByte: 23746965743 endByte: 31665954324 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71716 is now alive. startByte: 39578942905 endByte: 47497931486 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71717 is now alive. startByte: 47494931486 endByte: 55413920067 -[2018-02-13T08:18:59.234] [INFO] cheese - worker pid:71718 is now alive. startByte: 55410920067 endByte: 63329908648 -[2018-02-13T08:18:59.881] [INFO] cheese - inserting 1000 documents. first: Pyroxene grouplet and last: NWA American Heavyweight Championship -[2018-02-13T08:18:59.991] [INFO] cheese - inserting 1000 documents. first: Karl-Liebknecht-Stadion and last: Harold Greene (journalist) -[2018-02-13T08:19:00.032] [INFO] cheese - inserting 1000 documents. first: War epic films and last: Cistercian order -[2018-02-13T08:19:00.045] [INFO] cheese - inserting 1000 documents. first: Thomas Leighton Decker and last: Alexei Romanov (disambiguation) -[2018-02-13T08:19:00.081] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:00.131] [INFO] cheese - inserting 1000 documents. first: Yuki Yamanouchi and last: Rondo in B minor for violin and piano (Schubert) -[2018-02-13T08:19:00.176] [INFO] cheese - inserting 1000 documents. first: Comunidad Democrática Cristiana and last: North Kurdistan insurgency -[2018-02-13T08:19:00.181] [INFO] cheese - inserting 1000 documents. first: St Roch's F.C. and last: Sydenhams Chorea -[2018-02-13T08:19:00.238] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:19:00.239] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:00.292] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:19:00.423] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:19:00.503] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:19:00.586] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:19:01.152] [INFO] cheese - inserting 1000 documents. first: National Council against Health Fraud and last: Wikipedia:Featured topic removal candidates/Iowa class battleships/archive1 -[2018-02-13T08:19:01.475] [INFO] cheese - inserting 1000 documents. first: Fachhochschule Braunschweig and last: Someone Else Will -[2018-02-13T08:19:01.482] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:19:01.486] [INFO] cheese - inserting 1000 documents. first: Texas Valley and last: Template:2014–15 Premier League PFA Team of the Year -[2018-02-13T08:19:01.493] [INFO] cheese - inserting 1000 documents. first: Bloody Week and last: Tuberous sclerosis 1 -[2018-02-13T08:19:01.581] [INFO] cheese - inserting 1000 documents. first: King's Academy and last: New York Philharmonic Symphony Orchesra -[2018-02-13T08:19:01.699] [INFO] cheese - batch complete in: 1.406 secs -[2018-02-13T08:19:01.732] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:19:01.838] [INFO] cheese - batch complete in: 1.6 secs -[2018-02-13T08:19:01.860] [INFO] cheese - batch complete in: 1.621 secs -[2018-02-13T08:19:02.098] [INFO] cheese - inserting 1000 documents. first: Category:Toulouse and last: Kenneth Lavery Rider -[2018-02-13T08:19:02.214] [INFO] cheese - inserting 1000 documents. first: Bury Me Dead and last: Battle of St. Kitts -[2018-02-13T08:19:02.573] [INFO] cheese - batch complete in: 2.069 secs -[2018-02-13T08:19:02.687] [INFO] cheese - batch complete in: 2.101 secs -[2018-02-13T08:19:02.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Iowa class battleship/archive2 and last: TWIP steel -[2018-02-13T08:19:03.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Anarchism articles by quality log and last: 1973 European Cup Winners' Cup Final -[2018-02-13T08:19:03.157] [INFO] cheese - batch complete in: 1.675 secs -[2018-02-13T08:19:03.263] [INFO] cheese - inserting 1000 documents. first: Glenforsa and last: Category:Mountain ranges of Midi-Pyrénées -[2018-02-13T08:19:03.280] [INFO] cheese - inserting 1000 documents. first: Category:Great Basin National Park and last: Legality of cannabis in ghana -[2018-02-13T08:19:03.309] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T08:19:03.417] [INFO] cheese - batch complete in: 1.684 secs -[2018-02-13T08:19:03.502] [INFO] cheese - batch complete in: 1.802 secs -[2018-02-13T08:19:03.521] [INFO] cheese - inserting 1000 documents. first: Mouse racing and last: Mythimna -[2018-02-13T08:19:03.655] [INFO] cheese - batch complete in: 1.816 secs -[2018-02-13T08:19:03.804] [INFO] cheese - inserting 1000 documents. first: AccessibleComputing and last: Airline -[2018-02-13T08:19:03.939] [INFO] cheese - inserting 1000 documents. first: 2013 Czech Presidential election and last: Template:Editnotices/Page/Hao Zhao -[2018-02-13T08:19:04.042] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:19:04.051] [INFO] cheese - inserting 1000 documents. first: Tropical Cyclone Arthur (2007) and last: Category:Media in Maricopa County, Arizona -[2018-02-13T08:19:04.052] [INFO] cheese - inserting 1000 documents. first: Watanabe Yoshio and last: NIT Tiruchirappalli -[2018-02-13T08:19:04.106] [INFO] cheese - inserting 1000 documents. first: The Android and last: Self propelled howitzer -[2018-02-13T08:19:04.129] [INFO] cheese - inserting 1000 documents. first: Vaugondry and last: Man year -[2018-02-13T08:19:04.122] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:19:04.178] [INFO] cheese - batch complete in: 1.491 secs -[2018-02-13T08:19:04.207] [INFO] cheese - batch complete in: 4.929 secs -[2018-02-13T08:19:04.247] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:19:04.254] [INFO] cheese - inserting 1000 documents. first: Denise Herzing and last: Dave Greszczyszyn -[2018-02-13T08:19:04.401] [INFO] cheese - batch complete in: 1.827 secs -[2018-02-13T08:19:04.533] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:19:04.640] [INFO] cheese - inserting 1000 documents. first: Dog notice and last: Csit -[2018-02-13T08:19:04.767] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T08:19:04.831] [INFO] cheese - inserting 1000 documents. first: Matthysse and last: En pointe -[2018-02-13T08:19:04.990] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:19:05.174] [INFO] cheese - inserting 1000 documents. first: Do You Know What It Means to Miss New Orleans and last: Category:Road incident deaths in Norway -[2018-02-13T08:19:05.194] [INFO] cheese - inserting 1000 documents. first: Albanians in Germany and last: Fred Jurgen Schnepel -[2018-02-13T08:19:05.225] [INFO] cheese - inserting 1000 documents. first: Malayalam films of 1968 and last: Category:United States Senate elections, 1898 -[2018-02-13T08:19:05.232] [INFO] cheese - inserting 1000 documents. first: File:Justin Green (1972) Binky Brown Meets the Holy Virgin Mary splash page.jpg and last: Wikipedia:Miscellany for deletion/User:Motionride -[2018-02-13T08:19:05.327] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:19:05.348] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:19:05.370] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:19:05.488] [INFO] cheese - batch complete in: 1.31 secs -[2018-02-13T08:19:05.715] [INFO] cheese - inserting 1000 documents. first: Victory Grill and last: Deiseal -[2018-02-13T08:19:05.724] [INFO] cheese - inserting 1000 documents. first: Ayina River and last: Category:Alejandra Guzmán video albums -[2018-02-13T08:19:05.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/OurColony and last: Mark IX tank -[2018-02-13T08:19:05.818] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:19:05.824] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:19:05.860] [INFO] cheese - batch complete in: 1.458 secs -[2018-02-13T08:19:06.157] [INFO] cheese - inserting 1000 documents. first: Category:1982–83 in African football by country and last: Jon Stankovič -[2018-02-13T08:19:06.237] [INFO] cheese - inserting 1000 documents. first: Cuando pase el temblor and last: Template:Lang-ain -[2018-02-13T08:19:06.267] [INFO] cheese - inserting 1000 documents. first: Precalentines Day and last: Camana Province -[2018-02-13T08:19:06.264] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:19:06.271] [INFO] cheese - inserting 1000 documents. first: Jon & Kate and last: File:Sfwd-lissy-trullie-self-taught-learner-ep-cover.png -[2018-02-13T08:19:06.342] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:19:06.488] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:19:06.520] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:19:06.584] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in the Gambia and last: Siderus tephraeus -[2018-02-13T08:19:06.704] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:19:06.895] [INFO] cheese - inserting 1000 documents. first: Radcliffe Award and last: MPG: Motion Picture Genocide -[2018-02-13T08:19:06.913] [INFO] cheese - inserting 1000 documents. first: Barano d'Ischia and last: José de Jesús Corona Rodriguez -[2018-02-13T08:19:07.040] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:19:07.052] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:19:07.055] [INFO] cheese - inserting 1000 documents. first: The Jester (film) and last: Calluga -[2018-02-13T08:19:07.148] [INFO] cheese - inserting 1000 documents. first: Category:Ordovician geology of Texas and last: Croatian Society of Medical Biochemistry and Laboratory Medicine -[2018-02-13T08:19:07.167] [INFO] cheese - inserting 1000 documents. first: TS Patriot State and last: Carmen Ortiz -[2018-02-13T08:19:07.172] [INFO] cheese - inserting 1000 documents. first: The Legend of Heroes VI: Sora no Kiseki and last: Category:Novels set in Vietnam -[2018-02-13T08:19:07.181] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:19:07.292] [INFO] cheese - inserting 1000 documents. first: Category:Preston North End F.C. templates and last: Wikipedia:Version 1.0 Editorial Team/Aviation articles by quality/47 -[2018-02-13T08:19:07.313] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:19:07.320] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:19:07.342] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:19:07.523] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:19:07.729] [INFO] cheese - inserting 1000 documents. first: Histone modification and last: Juan Francisco Torres Belén -[2018-02-13T08:19:07.738] [INFO] cheese - inserting 1000 documents. first: Callurapteryx and last: Victoria Theater (Wheeling, West Virginia) -[2018-02-13T08:19:07.796] [INFO] cheese - inserting 1000 documents. first: Elaine Black Yoneda and last: Kunio Shimizu -[2018-02-13T08:19:07.809] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:07.819] [INFO] cheese - inserting 1000 documents. first: File:Bachelor's Double at 1911 Jubilee.jpg and last: Category:1969–70 in European football by country -[2018-02-13T08:19:07.820] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:19:07.913] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:19:07.920] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:19:07.980] [INFO] cheese - inserting 1000 documents. first: Australian Democrats and last: Big Dipper (disambiguation) -[2018-02-13T08:19:08.019] [INFO] cheese - inserting 1000 documents. first: Kevin Owen Foley and last: Category:Czech Republic articles by quality -[2018-02-13T08:19:08.049] [INFO] cheese - inserting 1000 documents. first: Harry Kimberlin and last: Carter Sans -[2018-02-13T08:19:08.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2005-04-11/Privacy policy and last: Halifax, England -[2018-02-13T08:19:08.094] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:19:08.132] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:19:08.142] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:19:08.160] [INFO] cheese - batch complete in: 3.953 secs -[2018-02-13T08:19:08.309] [INFO] cheese - inserting 1000 documents. first: Echineulima mittrei and last: Wikipedia:Articles for deletion/Orly Shani -[2018-02-13T08:19:08.310] [INFO] cheese - inserting 1000 documents. first: Les Herbes folles and last: Merchiston railway station -[2018-02-13T08:19:08.362] [INFO] cheese - inserting 1000 documents. first: Lavochne and last: Category:Kyrgyzstan Futsal League -[2018-02-13T08:19:08.384] [INFO] cheese - inserting 1000 documents. first: Miller Group (marketing agency) and last: Walter Adolf Georg Gropius -[2018-02-13T08:19:08.424] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:19:08.427] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:19:08.537] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:19:08.619] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:19:08.783] [INFO] cheese - inserting 1000 documents. first: Huelsemann, Johannes and last: Mologino, Tver Oblast -[2018-02-13T08:19:08.783] [INFO] cheese - inserting 1000 documents. first: New York State Bicycle Route 17 and last: Color Robot Battle -[2018-02-13T08:19:08.831] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:19:08.840] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:19:09.053] [INFO] cheese - inserting 1000 documents. first: SA – Harlem 2 and last: HR Branson -[2018-02-13T08:19:09.125] [INFO] cheese - inserting 1000 documents. first: Oscar by the Sea and last: Saulius Mikalajūnas -[2018-02-13T08:19:09.139] [INFO] cheese - inserting 1000 documents. first: Woolwich Building Society and last: Isokon -[2018-02-13T08:19:09.144] [INFO] cheese - inserting 1000 documents. first: Spunk (album) and last: XP 819 -[2018-02-13T08:19:09.192] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:19:09.248] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:19:09.259] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:19:09.372] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:19:09.473] [INFO] cheese - inserting 1000 documents. first: Jeanne Marie Bouvier de La Motte Guyon and last: Emil Kemeneş -[2018-02-13T08:19:09.588] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:19:09.642] [INFO] cheese - inserting 1000 documents. first: Uleyki and last: Wikipedia:WikiProject Spam/LinkReports/facebook.sohbetlive.com -[2018-02-13T08:19:09.737] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:19:09.842] [INFO] cheese - inserting 1000 documents. first: Category:1629 establishments by country and last: Cărbunaru River -[2018-02-13T08:19:09.857] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/UniversityJunction.com and last: Badrashin railway accident -[2018-02-13T08:19:09.927] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:19:09.933] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:19:09.939] [INFO] cheese - inserting 1000 documents. first: Saulius Mikalajunas and last: File:Alberta Highway 40 (Bighorn).svg -[2018-02-13T08:19:09.951] [INFO] cheese - inserting 1000 documents. first: Lita Cabellut and last: Linda Singh -[2018-02-13T08:19:10.014] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:19:10.057] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:19:10.104] [INFO] cheese - inserting 1000 documents. first: ScrollKeeper and last: Karl Ploetz -[2018-02-13T08:19:10.210] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:19:10.242] [INFO] cheese - inserting 1000 documents. first: Christ the King (Almada) and last: KTBN (shortwave) -[2018-02-13T08:19:10.332] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:19:10.389] [INFO] cheese - inserting 1000 documents. first: File:The King of Milu Deer poster.jpg and last: 713 series -[2018-02-13T08:19:10.410] [INFO] cheese - inserting 1000 documents. first: 2010-11 Etisalat Emirates Cup and last: Rydaholms GoIF -[2018-02-13T08:19:10.464] [INFO] cheese - inserting 1000 documents. first: Cyrano de Berger's Back and last: Amergin Gluingel -[2018-02-13T08:19:10.473] [INFO] cheese - inserting 1000 documents. first: Carolina buckthorn and last: Wikipedia:Articles for deletion/The Culinary Institute of America (Korean translation) -[2018-02-13T08:19:10.474] [INFO] cheese - inserting 1000 documents. first: Masti (Kannada) and last: Italy-occupied France -[2018-02-13T08:19:10.477] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:19:10.478] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:19:10.558] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:19:10.617] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:19:10.637] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:19:10.915] [INFO] cheese - inserting 1000 documents. first: Barry McKenzie and last: Amerer Air -[2018-02-13T08:19:10.926] [INFO] cheese - inserting 1000 documents. first: Category:British Roman Catholic bishop stubs and last: Category:Middle schools in South Korea -[2018-02-13T08:19:10.928] [INFO] cheese - inserting 1000 documents. first: Scopula sjostedti and last: Amurrhyparia leopardinula -[2018-02-13T08:19:10.988] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:19:11.014] [INFO] cheese - inserting 1000 documents. first: South Germantown, Wisconsin and last: 2014–15 Angola Basketball Cup -[2018-02-13T08:19:11.011] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:19:11.050] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:19:11.112] [INFO] cheese - inserting 1000 documents. first: Lamb meat and last: Battle of Droop Mountain -[2018-02-13T08:19:11.126] [INFO] cheese - inserting 1000 documents. first: Amorgen Glúingel and last: 1971 European Championships in Athletics -[2018-02-13T08:19:11.188] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:19:11.260] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:19:11.291] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:19:11.306] [INFO] cheese - inserting 1000 documents. first: Tom Burns (publisher) and last: Province of brabant -[2018-02-13T08:19:11.488] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:19:11.602] [INFO] cheese - inserting 1000 documents. first: Bursa and last: Bill Bryson -[2018-02-13T08:19:11.607] [INFO] cheese - inserting 1000 documents. first: Welcome (Doyle Bramhall II album) and last: Gurnard scorpionfish -[2018-02-13T08:19:11.673] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:19:11.683] [INFO] cheese - inserting 1000 documents. first: Filter (air) and last: Norah Stoner -[2018-02-13T08:19:11.684] [INFO] cheese - inserting 1000 documents. first: Non-residential Indians and last: Diamond (typography) -[2018-02-13T08:19:11.685] [INFO] cheese - inserting 1000 documents. first: Province of brandenburg and last: The beginning was the end -[2018-02-13T08:19:11.708] [INFO] cheese - inserting 1000 documents. first: Michal Pavlu and last: Boudreauville, Nova Scotia -[2018-02-13T08:19:11.737] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T08:19:11.793] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:19:11.820] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:19:11.832] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:19:11.858] [INFO] cheese - batch complete in: 3.698 secs -[2018-02-13T08:19:11.907] [INFO] cheese - inserting 1000 documents. first: Category:Sammarinese expatriate footballers and last: Echoes: The Einaudi Collection -[2018-02-13T08:19:12.045] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:19:12.166] [INFO] cheese - inserting 1000 documents. first: Category:Christian statements of faith and last: Category:Marya Roxx albums -[2018-02-13T08:19:12.208] [INFO] cheese - inserting 1000 documents. first: Strawberry Sound and last: Project 985 -[2018-02-13T08:19:12.245] [INFO] cheese - inserting 1000 documents. first: The beginning of all things to end and last: Wikipedia:WikiProject Spam/LinkReports/plantesminiatures.com -[2018-02-13T08:19:12.283] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:19:12.345] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:19:12.403] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:19:12.434] [INFO] cheese - inserting 1000 documents. first: Template:Vitrinidae-stub and last: Gladswood House, Double Bay, New South Wales -[2018-02-13T08:19:12.533] [INFO] cheese - inserting 1000 documents. first: Brilliant (typography) and last: Townwood -[2018-02-13T08:19:12.589] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:19:12.600] [INFO] cheese - inserting 1000 documents. first: Garagum District and last: Mandyam Tamil -[2018-02-13T08:19:12.621] [INFO] cheese - inserting 1000 documents. first: Jiang Yuegui and last: Thomastown Township, MN -[2018-02-13T08:19:12.659] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:19:12.672] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:12.751] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:19:12.913] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Main Page history/2013 January 16 and last: Nate Wolters -[2018-02-13T08:19:13.024] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:19:13.134] [INFO] cheese - inserting 1000 documents. first: Mr. Monk and the 12th Man and last: State Route 32B (New York) -[2018-02-13T08:19:13.286] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:19:13.290] [INFO] cheese - inserting 1000 documents. first: Category:Project 985 and last: Laws of Duplicate Bridge -[2018-02-13T08:19:13.426] [INFO] cheese - inserting 1000 documents. first: LWOH and last: Sid Helliwell -[2018-02-13T08:19:13.482] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:19:13.570] [INFO] cheese - inserting 1000 documents. first: 1947 BOAC Douglas C-47 crash and last: Sticky rice cake -[2018-02-13T08:19:13.640] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:19:13.643] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Millau Viaduct/archive1 and last: Dichlorodifluoromethane -[2018-02-13T08:19:13.662] [INFO] cheese - inserting 1000 documents. first: Parchim class corvette and last: Category:Folk albums by Bahamian artists -[2018-02-13T08:19:13.676] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Ambassis jacksoniensis and last: Finance Act 2014 -[2018-02-13T08:19:13.707] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:19:13.732] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:19:13.775] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:19:13.812] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:19:14.068] [INFO] cheese - inserting 1000 documents. first: Category:Diana King albums and last: Wikipedia:WikiProject Comics/Notice board/Proposed merges and splits/2008 -[2018-02-13T08:19:14.152] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:19:14.190] [INFO] cheese - inserting 1000 documents. first: Sexy no Jutsu and last: Gabe Khouth -[2018-02-13T08:19:14.207] [INFO] cheese - inserting 1000 documents. first: R12 and last: Vasa Township, MN -[2018-02-13T08:19:14.229] [INFO] cheese - inserting 1000 documents. first: Template:Ifparadef/doc and last: Rue Mercière -[2018-02-13T08:19:14.252] [INFO] cheese - inserting 1000 documents. first: Category:People from Pechenihy Raion and last: Small world (TV miniseries) -[2018-02-13T08:19:14.274] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:19:14.275] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:19:14.332] [INFO] cheese - inserting 1000 documents. first: File:Florida Gateway College (emblem).png and last: Wikipedia:WikiProject Pharmacology/Log/2011-02-05 -[2018-02-13T08:19:14.343] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:19:14.411] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:19:14.426] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:19:14.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2015 May 9 and last: 2014–15 Championship -[2018-02-13T08:19:14.627] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:19:14.840] [INFO] cheese - inserting 1000 documents. first: Black Noddies and last: CSF1R -[2018-02-13T08:19:14.889] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:19:14.900] [INFO] cheese - inserting 1000 documents. first: Ensoulment and last: Wikipedia:Articles for deletion/Mahabon -[2018-02-13T08:19:14.975] [INFO] cheese - inserting 1000 documents. first: Tel Aviv Arlozorov Terminal and last: Wikipedia:Articles for deletion/Japan-Oceania relations -[2018-02-13T08:19:14.984] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Dexter episodes/archive2 and last: Category:Dallas-Fort Worth Rangers players -[2018-02-13T08:19:14.989] [INFO] cheese - inserting 1000 documents. first: Huang Hui-Wen and last: Category:1825 establishments in the United Kingdom -[2018-02-13T08:19:15.002] [INFO] cheese - inserting 1000 documents. first: George Washington (TV miniseries) and last: Template:Israel-journalist-stub -[2018-02-13T08:19:15.029] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:19:15.057] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:15.059] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:19:15.121] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:19:15.148] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:19:15.222] [INFO] cheese - inserting 1000 documents. first: File:Beyond the Mask 2015.jpg and last: Dabney T. Smith -[2018-02-13T08:19:15.290] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:19:15.417] [INFO] cheese - inserting 1000 documents. first: Big Audio Dynamite and last: Conditional proof -[2018-02-13T08:19:15.550] [INFO] cheese - inserting 1000 documents. first: Blackbeard Island National Wildlife Refuge and last: Ichc -[2018-02-13T08:19:15.561] [INFO] cheese - inserting 1000 documents. first: South Georgia Council and last: Wikipedia:Featured list removal candidates/List of numbered highways in Amenia (CDP), New York/archive1 -[2018-02-13T08:19:15.661] [INFO] cheese - batch complete in: 3.803 secs -[2018-02-13T08:19:15.670] [INFO] cheese - inserting 1000 documents. first: Category:1825 establishments in England and last: Pribumi (Native Indonesians) -[2018-02-13T08:19:15.741] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:19:15.751] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:19:15.827] [INFO] cheese - inserting 1000 documents. first: File:Edward Grigg.jpg and last: Wikipedia:WikiProject Spam/Local/floyd-flora.info -[2018-02-13T08:19:15.854] [INFO] cheese - inserting 1000 documents. first: Bühl-Stollhofen and last: Category:Bird family (Antigua and Barbuda) -[2018-02-13T08:19:15.857] [INFO] cheese - inserting 1000 documents. first: Stryker MGS and last: Chitrabhanu (mathematician) -[2018-02-13T08:19:15.873] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:19:15.954] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:19:15.959] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:19:16.007] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:19:16.028] [INFO] cheese - inserting 1000 documents. first: Conference of Badasht and last: California State Highway 38 -[2018-02-13T08:19:16.151] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:19:16.394] [INFO] cheese - inserting 1000 documents. first: Mount Titiroa and last: Antaphylatic shock -[2018-02-13T08:19:16.413] [INFO] cheese - inserting 1000 documents. first: Wolfsberg, Austria and last: Lanmeur -[2018-02-13T08:19:16.473] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:19:16.476] [INFO] cheese - inserting 1000 documents. first: Gas to liquid and last: Mayor of Esch-sur-Alzette -[2018-02-13T08:19:16.486] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:19:16.498] [INFO] cheese - inserting 1000 documents. first: Convolution algorithm and last: Rhamnopyranose -[2018-02-13T08:19:16.514] [INFO] cheese - inserting 1000 documents. first: Holeček and last: Denham Golf Club -[2018-02-13T08:19:16.560] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:19:16.587] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:19:16.612] [INFO] cheese - inserting 1000 documents. first: File:Reno Rumble Title Card.png and last: PFA Young Women's Player of the Year -[2018-02-13T08:19:16.661] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:19:16.723] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:19:16.907] [INFO] cheese - inserting 1000 documents. first: California State Highway 37 and last: Parve -[2018-02-13T08:19:17.069] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Palau articles and last: Apparent distance -[2018-02-13T08:19:17.103] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:17.131] [INFO] cheese - inserting 1000 documents. first: Hōkoku jinja and last: Bara Pind Lohtian -[2018-02-13T08:19:17.172] [INFO] cheese - inserting 1000 documents. first: Lenin Stadium (disambiguation) and last: File:Ruthwell Cross, Front.jpg -[2018-02-13T08:19:17.182] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:19:17.250] [INFO] cheese - inserting 1000 documents. first: Fatih mosque and last: Category:1949 American television series debuts -[2018-02-13T08:19:17.252] [INFO] cheese - inserting 1000 documents. first: American archaeology and last: Eggbeater kick -[2018-02-13T08:19:17.273] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:17.326] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:19:17.353] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:19:17.398] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:17.493] [INFO] cheese - inserting 1000 documents. first: William Samuel Lilly and last: Peter Masten Dunne -[2018-02-13T08:19:17.593] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:19:17.812] [INFO] cheese - inserting 1000 documents. first: Robert Seddon and last: Template:2002 bowl game navbox -[2018-02-13T08:19:17.845] [INFO] cheese - inserting 1000 documents. first: American Highway Flower and last: Mava, Razavi Khorasan -[2018-02-13T08:19:17.848] [INFO] cheese - inserting 1000 documents. first: Acid2 and last: Kel-Morian Combine -[2018-02-13T08:19:17.904] [INFO] cheese - inserting 1000 documents. first: Nobuyuki Hosaka and last: Dařbuján a Pandrhola -[2018-02-13T08:19:17.902] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:19:17.913] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:19:17.949] [INFO] cheese - inserting 1000 documents. first: Encap and last: CEACAM6 -[2018-02-13T08:19:17.984] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:19:18.026] [INFO] cheese - inserting 1000 documents. first: Venecuela and last: Riverdale High School (Muscoda, Wisconsin) -[2018-02-13T08:19:18.067] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:19:18.139] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:19:18.154] [INFO] cheese - inserting 1000 documents. first: Robert Power (cricketer) and last: C.J. Uzomah -[2018-02-13T08:19:18.215] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:19:18.294] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:19:18.481] [INFO] cheese - inserting 1000 documents. first: Largest dams and last: Category:Food and drink companies of Wales -[2018-02-13T08:19:18.587] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:19:18.733] [INFO] cheese - inserting 1000 documents. first: Like You and last: Simon Wilson -[2018-02-13T08:19:18.728] [INFO] cheese - inserting 1000 documents. first: Hochwald (Zittau Mountains) and last: Leucopodella -[2018-02-13T08:19:18.758] [INFO] cheese - inserting 1000 documents. first: Conjunction introduction and last: Donald Knuth -[2018-02-13T08:19:18.871] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:19:18.882] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:19:18.928] [INFO] cheese - inserting 1000 documents. first: Shoreline Unified School District and last: Yuriy Zakharkiv -[2018-02-13T08:19:18.967] [INFO] cheese - inserting 1000 documents. first: Atkinson Principles and last: Chasseguet-Smirguel -[2018-02-13T08:19:19.018] [INFO] cheese - batch complete in: 3.357 secs -[2018-02-13T08:19:19.056] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:19:19.112] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:19:19.207] [INFO] cheese - inserting 1000 documents. first: Kanjūrō Arashi and last: Richard Haynes (musician) -[2018-02-13T08:19:19.215] [INFO] cheese - inserting 1000 documents. first: Hybrid fibre coax and last: Warrenton, GA -[2018-02-13T08:19:19.360] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:19:19.363] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:19:19.456] [INFO] cheese - inserting 1000 documents. first: List of members of the European Parliament for Greece, 1989–94 and last: Ramilton do Rosario -[2018-02-13T08:19:19.556] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:19:19.562] [INFO] cheese - inserting 1000 documents. first: City (Texas) and last: Stanislav Kunitskii -[2018-02-13T08:19:19.685] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:19:19.960] [INFO] cheese - inserting 1000 documents. first: Category:Record collectors and last: Portal:Current events/May 2015/Calendar -[2018-02-13T08:19:20.050] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:19:20.053] [INFO] cheese - inserting 1000 documents. first: 1998 COSAFA Cup and last: File:ShriSwamiSamarth.jpg -[2018-02-13T08:19:20.111] [INFO] cheese - inserting 1000 documents. first: Non-associativity and last: Tom Blinkhorn -[2018-02-13T08:19:20.124] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:19:20.171] [INFO] cheese - inserting 1000 documents. first: Rambé do Rosario and last: MS Nana Maru -[2018-02-13T08:19:20.174] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:19:20.177] [INFO] cheese - inserting 1000 documents. first: Warrenton, MO and last: KochelamSee -[2018-02-13T08:19:20.276] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:19:20.279] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:19:20.336] [INFO] cheese - inserting 1000 documents. first: Timo Koskela and last: Sfakia Province -[2018-02-13T08:19:20.405] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:19:20.529] [INFO] cheese - inserting 1000 documents. first: Jog (Raga) and last: 1965 in films -[2018-02-13T08:19:20.557] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T08:19:20.566] [INFO] cheese - inserting 1000 documents. first: Mail (application) and last: Duets (disambiguation) -[2018-02-13T08:19:20.642] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:19:20.715] [INFO] cheese - inserting 1000 documents. first: Debout Sur Le Zinc and last: William Slade (disambiguation) -[2018-02-13T08:19:20.771] [INFO] cheese - inserting 1000 documents. first: Xylophanes undata and last: Topaze-class cruiser -[2018-02-13T08:19:20.797] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:19:20.851] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:19:20.859] [INFO] cheese - inserting 1000 documents. first: Ochilview Park and last: Sgùrr a' Mhàim -[2018-02-13T08:19:20.917] [INFO] cheese - inserting 1000 documents. first: 1965 in the cinema and last: Anole (Somalia) -[2018-02-13T08:19:20.941] [INFO] cheese - inserting 1000 documents. first: Rorschach (Switzerland) and last: Château of Chillon -[2018-02-13T08:19:20.967] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:19:21.003] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:19:21.067] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:19:21.208] [INFO] cheese - inserting 1000 documents. first: Mosque No. 7 and last: Portal:Trains/Selected picture/Week 19, 2015/link -[2018-02-13T08:19:21.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/calyon.sk and last: Kyle Justin (disambiguation) -[2018-02-13T08:19:21.286] [INFO] cheese - inserting 1000 documents. first: Mark Brandenburg (politician) and last: Overdetermination -[2018-02-13T08:19:21.294] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:19:21.329] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:19:21.358] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:19:21.578] [INFO] cheese - inserting 1000 documents. first: Category:Folland aircraft and last: International Race of Champions V -[2018-02-13T08:19:21.655] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:19:21.673] [INFO] cheese - inserting 1000 documents. first: Käthe Kollwitz Museum (disambiguation) and last: New Amsterdam (song) -[2018-02-13T08:19:21.683] [INFO] cheese - inserting 1000 documents. first: Category:Winona State University faculty and last: Aaj Samaj -[2018-02-13T08:19:21.720] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:19:21.734] [INFO] cheese - inserting 1000 documents. first: Edwin A. Anderson, Jr. and last: Makapu'u -[2018-02-13T08:19:21.747] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:19:21.824] [INFO] cheese - inserting 1000 documents. first: Decimoputzu and last: OFK Grbalj -[2018-02-13T08:19:21.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/IP-VPN Lite and last: Category:Ghanaian people of Grenadian descent -[2018-02-13T08:19:21.900] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:19:21.941] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:19:22.003] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:22.081] [INFO] cheese - inserting 1000 documents. first: Donald E. Knuth and last: Eigenstate -[2018-02-13T08:19:22.123] [INFO] cheese - inserting 1000 documents. first: Template:User WPAnimation Coordinator and last: Strategies Against Architecture (disambiguation) -[2018-02-13T08:19:22.152] [INFO] cheese - inserting 1000 documents. first: Mwankoko and last: Karatsu Ware -[2018-02-13T08:19:22.176] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:19:22.229] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:19:22.284] [INFO] cheese - batch complete in: 3.266 secs -[2018-02-13T08:19:22.397] [INFO] cheese - inserting 1000 documents. first: Robertson Daniel and last: Pollution of the Chesapeake Bay -[2018-02-13T08:19:22.469] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:19:22.479] [INFO] cheese - inserting 1000 documents. first: File:Birmingham UK Boundary.png and last: Category:Bermudian beauty pageant winners -[2018-02-13T08:19:22.559] [INFO] cheese - inserting 1000 documents. first: Army Materiel Command (Denmark) and last: Filial imprinting -[2018-02-13T08:19:22.572] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:19:22.644] [INFO] cheese - inserting 1000 documents. first: Parameshi Prema Prasanga and last: Positive Women -[2018-02-13T08:19:22.650] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:19:22.695] [INFO] cheese - inserting 1000 documents. first: File:Culabula flag.jpg and last: Wikipedia:Mediation Cabal/Cases/2006-09-03 Falun Gong -[2018-02-13T08:19:22.715] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:19:22.827] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:19:22.832] [INFO] cheese - inserting 1000 documents. first: Karatsu-yaki and last: Wikipedia:Articles for deletion/Mark Draycott -[2018-02-13T08:19:22.902] [INFO] cheese - inserting 1000 documents. first: The Eraserheads discography and last: Template:BBC Radio 3 -[2018-02-13T08:19:22.932] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:19:23.015] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:19:23.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Mythology of Carnivàle/archive1 and last: THPO -[2018-02-13T08:19:23.108] [INFO] cheese - inserting 1000 documents. first: Sweetscented bedstraw and last: British Journal of Canadian Studies -[2018-02-13T08:19:23.190] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:19:23.264] [INFO] cheese - inserting 1000 documents. first: Jefferson Park (CTA station) and last: Order of Yaroslav the Wise -[2018-02-13T08:19:23.319] [INFO] cheese - batch complete in: 5.18 secs -[2018-02-13T08:19:23.360] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:23.450] [INFO] cheese - inserting 1000 documents. first: Brazilian slender opossum and last: I Am Not Afraid Of You And I Will Beat Your Ass -[2018-02-13T08:19:23.450] [INFO] cheese - inserting 1000 documents. first: LLEZ and last: Orion, California -[2018-02-13T08:19:23.519] [INFO] cheese - inserting 1000 documents. first: Bob Kelley and last: FK GGS Arma Ústí nad Labem -[2018-02-13T08:19:23.574] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:19:23.589] [INFO] cheese - inserting 1000 documents. first: L'Ami du peuple and last: Madison Area Technical College -[2018-02-13T08:19:23.590] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:19:23.625] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:19:23.672] [INFO] cheese - inserting 1000 documents. first: Liberation Day (Denmark) and last: Wikipedia:WikiProject Invader Zim -[2018-02-13T08:19:23.698] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:19:23.752] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:19:23.944] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Colfax County, New Mexico and last: Category:Populated places in Hidalgo County, New Mexico -[2018-02-13T08:19:24.007] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:24.122] [INFO] cheese - inserting 1000 documents. first: Zero (game engine) and last: Daniersburg -[2018-02-13T08:19:24.147] [INFO] cheese - inserting 1000 documents. first: 2012–2013 UCI Track Cycling World Cup Classic in Glasgow – Men's keirin and last: Wikipedia:Articles for deletion/How the West was Won: A Pioneer Pageant -[2018-02-13T08:19:24.161] [INFO] cheese - inserting 1000 documents. first: Pioneer DVJ1000 and last: File:1999 - Unplugged.jpg -[2018-02-13T08:19:24.172] [INFO] cheese - inserting 1000 documents. first: Wes Roach and last: Tyrone Brooks -[2018-02-13T08:19:24.186] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:19:24.188] [INFO] cheese - inserting 1000 documents. first: Fourteen Mile Creek and last: List of Members of the Pan-African Parliament -[2018-02-13T08:19:24.194] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:19:24.245] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:19:24.268] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:19:24.330] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:19:24.411] [INFO] cheese - inserting 1000 documents. first: Gnaeus and last: Ouzoud Falls -[2018-02-13T08:19:24.502] [INFO] cheese - inserting 1000 documents. first: Category:Greek hairdressers and last: Wikipedia:WikiProject Spam/LinkReports/adsettspartnership.co.uk -[2018-02-13T08:19:24.509] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:19:24.606] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:19:24.708] [INFO] cheese - inserting 1000 documents. first: RTN3 and last: La riba de escalote -[2018-02-13T08:19:24.716] [INFO] cheese - inserting 1000 documents. first: Ralph Klein Park and last: File:AnsulLogo.gif -[2018-02-13T08:19:24.727] [INFO] cheese - inserting 1000 documents. first: Japanese National Championship and last: Template:French schools in Indian Ocean -[2018-02-13T08:19:24.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Scott Kurland and last: WDVY -[2018-02-13T08:19:24.771] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:19:24.789] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:19:24.835] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:19:24.848] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:19:24.924] [INFO] cheese - inserting 1000 documents. first: List of African Union Institutions and last: Christmas In The Stars -[2018-02-13T08:19:25.016] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:19:25.035] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/adsettspartnership.co.uk and last: Cyberpipe -[2018-02-13T08:19:25.112] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:19:25.136] [INFO] cheese - inserting 1000 documents. first: Elizabeth Barrett Browning and last: Fatah -[2018-02-13T08:19:25.186] [INFO] cheese - inserting 1000 documents. first: La rinconada de la sierra and last: Ammari District -[2018-02-13T08:19:25.226] [INFO] cheese - inserting 1000 documents. first: Jiranakorn Stadium and last: R. J. Rosales, Jr. -[2018-02-13T08:19:25.236] [INFO] cheese - inserting 1000 documents. first: SHBG and last: Atlanta Black Crackers -[2018-02-13T08:19:25.269] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:19:25.290] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:19:25.338] [INFO] cheese - inserting 1000 documents. first: Lucy Walker steamboat disaster and last: Palaio -[2018-02-13T08:19:25.357] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/New Jersey Route 160 and last: File:Hallgrímskirkja at night.jpg -[2018-02-13T08:19:25.377] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:19:25.462] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:19:25.504] [INFO] cheese - batch complete in: 3.219 secs -[2018-02-13T08:19:25.612] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:25.815] [INFO] cheese - inserting 1000 documents. first: Category:Amphibious vehicles of World War II and last: FTSE4GOOD index -[2018-02-13T08:19:25.838] [INFO] cheese - inserting 1000 documents. first: Firmin Dugas and last: Route 44 (Virginia 1933) -[2018-02-13T08:19:25.897] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:19:25.991] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:19:26.166] [INFO] cheese - inserting 1000 documents. first: R. J. Rosales and last: Category:2003–04 in Syrian football -[2018-02-13T08:19:26.171] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Greece politics articles and last: Heidi Johansen -[2018-02-13T08:19:26.187] [INFO] cheese - inserting 1000 documents. first: 1905 County Championship and last: Wikipedia:Reference desk/Archives/Entertainment/2013 January 19 -[2018-02-13T08:19:26.296] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:19:26.310] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:19:26.342] [INFO] cheese - inserting 1000 documents. first: Mohamed Messaoud and last: Wikipedia:WikiProject Spam/LinkReports/gomerch.com -[2018-02-13T08:19:26.347] [INFO] cheese - inserting 1000 documents. first: Cerebrosides and last: Wikipedia:Articles for deletion/Possible successors to Pope John Paul II -[2018-02-13T08:19:26.363] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:19:26.451] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:19:26.485] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:19:26.686] [INFO] cheese - inserting 1000 documents. first: Gare de Buzy and last: Category:Gold Coast Football Club seasons -[2018-02-13T08:19:26.770] [INFO] cheese - inserting 1000 documents. first: Dacca University and last: Markku Pusenius -[2018-02-13T08:19:26.791] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:19:26.927] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:19:26.943] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 January 19 and last: Henry Christopher -[2018-02-13T08:19:26.962] [INFO] cheese - inserting 1000 documents. first: Borgs and last: Sparterá, Greece -[2018-02-13T08:19:27.042] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:19:27.042] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:19:27.134] [INFO] cheese - inserting 1000 documents. first: Category:Badminton tournaments in Scotland and last: File:Trans Media Watch logo.png -[2018-02-13T08:19:27.143] [INFO] cheese - inserting 1000 documents. first: Category:The Jungle Book (Disney) video games and last: Baba (2008 film) -[2018-02-13T08:19:27.176] [INFO] cheese - inserting 1000 documents. first: Pope Benedictus XVI and last: Pasqualina Napoletano -[2018-02-13T08:19:27.216] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:19:27.249] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:27.385] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:19:27.472] [INFO] cheese - inserting 1000 documents. first: Arlindo Gomes Semedo and last: George Deloy -[2018-02-13T08:19:27.743] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:27.781] [INFO] cheese - inserting 1000 documents. first: Grob Vigilant and last: M-212 (Michigan highway) -[2018-02-13T08:19:27.791] [INFO] cheese - inserting 1000 documents. first: Powellia guadarramensis and last: Template:RussiaAdmMunRef/smo/munlist/shumyachsky -[2018-02-13T08:19:27.808] [INFO] cheese - inserting 1000 documents. first: Spartera, Greece and last: Barbara Fields -[2018-02-13T08:19:27.954] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:19:27.988] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:19:28.008] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:19:28.062] [INFO] cheese - inserting 1000 documents. first: Amazing journey and last: Al Hussein (missile) -[2018-02-13T08:19:28.092] [INFO] cheese - inserting 1000 documents. first: Ucrupata and last: Category:International schools in North Rhine–Westphalia -[2018-02-13T08:19:28.176] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:19:28.220] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:19:28.540] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/IncidentArchive671 and last: Bad Elster Bademuseum -[2018-02-13T08:19:28.690] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:19:28.709] [INFO] cheese - inserting 1000 documents. first: Pedro Camacho and last: Category:Aeronautes -[2018-02-13T08:19:28.710] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Anoshirawan and last: YMS-1 Class Auxiliary Motor Minesweeper -[2018-02-13T08:19:28.752] [INFO] cheese - inserting 1000 documents. first: Na-Ri and last: Portal:Anime and manga/Selected picture/11 -[2018-02-13T08:19:28.807] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:19:28.824] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:28.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/List of awards and nominations received by Rage Against the Machine/archive1 and last: File:Infinity War 1.jpg -[2018-02-13T08:19:28.903] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:19:29.018] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:19:29.143] [INFO] cheese - inserting 1000 documents. first: Rockford University and last: Wikipedia:Peer review/Polish Constitution of May 3, 1791/archive1 -[2018-02-13T08:19:29.160] [INFO] cheese - inserting 1000 documents. first: File:Everything Put Together.jpg and last: EDCA -[2018-02-13T08:19:29.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Bombing of Hamburg.ogg and last: FC Vitebsk-2 -[2018-02-13T08:19:29.243] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:19:29.283] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:19:29.309] [INFO] cheese - batch complete in: 1.924 secs -[2018-02-13T08:19:29.414] [INFO] cheese - inserting 1000 documents. first: Forteana and last: Eurogame -[2018-02-13T08:19:29.417] [INFO] cheese - inserting 1000 documents. first: Smile of a Child and last: Clara Sorensen -[2018-02-13T08:19:29.485] [INFO] cheese - inserting 1000 documents. first: Saybagh District and last: Cytherea (erotic actress) -[2018-02-13T08:19:29.500] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:19:29.535] [INFO] cheese - inserting 1000 documents. first: National association of theatre owners and last: National lesbian and gay journalists association -[2018-02-13T08:19:29.536] [INFO] cheese - inserting 1000 documents. first: Billy Moores and last: Vera Thomas-Dace -[2018-02-13T08:19:29.580] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:19:29.625] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:19:29.689] [INFO] cheese - batch complete in: 4.185 secs -[2018-02-13T08:19:29.687] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:19:29.738] [INFO] cheese - inserting 1000 documents. first: Nikola Ivanov and last: Wikipedia:WikiProject Spam/LinkReports/january-girl.net -[2018-02-13T08:19:29.843] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:19:30.051] [INFO] cheese - inserting 1000 documents. first: Williams-Yulee v. Florida Bar and last: Template:BotTask/doc -[2018-02-13T08:19:30.137] [INFO] cheese - inserting 1000 documents. first: Acta Mathematicae Applicatae Sinica and last: Sphinx japix -[2018-02-13T08:19:30.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/maxstegi.f2d.de and last: Draihoek -[2018-02-13T08:19:30.256] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:19:30.227] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:19:30.274] [INFO] cheese - inserting 1000 documents. first: Cerro Huachamakari and last: Carl Alexandre -[2018-02-13T08:19:30.274] [INFO] cheese - inserting 1000 documents. first: Muslem and last: Tara brooch -[2018-02-13T08:19:30.349] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:19:30.497] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:19:30.522] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:19:30.540] [INFO] cheese - inserting 1000 documents. first: File:Domino - premier issue.jpg and last: Iwan (disambiguation) -[2018-02-13T08:19:30.629] [INFO] cheese - inserting 1000 documents. first: Darren Toney and last: 1653 in poetry -[2018-02-13T08:19:30.697] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:19:30.724] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:19:31.000] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Laurel McGoff and last: Gadfield Elm Chapel -[2018-02-13T08:19:31.001] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/smo/munlist/velizhsky and last: Category:Saint Kitts and Nevis judges on the courts of Anguilla -[2018-02-13T08:19:31.051] [INFO] cheese - inserting 1000 documents. first: Helen Hayes (politician) and last: Hairyfruit chewstick -[2018-02-13T08:19:31.056] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:19:31.064] [INFO] cheese - inserting 1000 documents. first: Cornipalpus succinctus and last: List of World Cup Ski jumping Team events medalists -[2018-02-13T08:19:31.074] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:19:31.138] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:19:31.157] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:19:31.257] [INFO] cheese - inserting 1000 documents. first: Today's Top 10 Award and last: Meterpreter -[2018-02-13T08:19:31.269] [INFO] cheese - inserting 1000 documents. first: Browsehappy and last: Wellsville, OH -[2018-02-13T08:19:31.341] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:19:31.353] [INFO] cheese - inserting 1000 documents. first: Qasimabad, Punjab and last: Wikipedia:Categories for discussion/Log/2009 June 24 -[2018-02-13T08:19:31.338] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:19:31.457] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:19:31.588] [INFO] cheese - inserting 1000 documents. first: Template:US R&B Chart and last: Catch Me If You Can (The Vampire Diaries) -[2018-02-13T08:19:31.678] [INFO] cheese - inserting 1000 documents. first: Uzzy and last: Judas (Lady Gaga) -[2018-02-13T08:19:31.757] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:19:31.786] [INFO] cheese - inserting 1000 documents. first: Nissakio, Greece and last: Cassia senna -[2018-02-13T08:19:31.845] [INFO] cheese - inserting 1000 documents. first: 1/1st Cheshire Yeomanry and last: Gekijōban Meiji Tokyo Renka: Yumihari no Serenade -[2018-02-13T08:19:31.816] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:19:31.990] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:19:32.008] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:19:32.125] [INFO] cheese - inserting 1000 documents. first: Polar shift and last: Oleshky -[2018-02-13T08:19:32.234] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:19:32.254] [INFO] cheese - inserting 1000 documents. first: Wellsville, PA and last: Buxton, Derbyshire -[2018-02-13T08:19:32.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mimika Air Flight 514 and last: File:All Is Wel cover.jpg -[2018-02-13T08:19:32.351] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:19:32.400] [INFO] cheese - inserting 1000 documents. first: House of Gold & Bones and last: Roan, Iran -[2018-02-13T08:19:32.420] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:19:32.469] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:19:32.505] [INFO] cheese - inserting 1000 documents. first: The Journal of Social, Political, and Economic Studies and last: Roman polanski -[2018-02-13T08:19:32.565] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Arifhasan23 and last: Ciliated fringewort -[2018-02-13T08:19:32.590] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:19:32.634] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:19:32.678] [INFO] cheese - inserting 1000 documents. first: Senna angustifolia and last: Tropomodulin 1 -[2018-02-13T08:19:32.784] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:19:32.802] [INFO] cheese - inserting 1000 documents. first: File:Building 429 - space.jpg and last: Kalarippayattu films -[2018-02-13T08:19:32.823] [INFO] cheese - inserting 1000 documents. first: Thrack, Splack and Sizzle and last: File:ADLINK-logo.png -[2018-02-13T08:19:32.861] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:32.897] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:19:32.970] [INFO] cheese - inserting 1000 documents. first: Peter W. Hutchins and last: Category:NA-importance Italian historical states articles -[2018-02-13T08:19:32.999] [INFO] cheese - inserting 1000 documents. first: Grand Unified Theory and last: History of Africa -[2018-02-13T08:19:33.023] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:19:33.045] [INFO] cheese - inserting 1000 documents. first: San Isidro (Lima, Peru) and last: File:Bubbi Morthens (Nóttin Langa).jpg -[2018-02-13T08:19:33.077] [INFO] cheese - inserting 1000 documents. first: Portal:Horses/Selected breed/28 and last: Naval Surface Warfare Center Port Hueneme Division, Virginia Beach Detachment -[2018-02-13T08:19:33.114] [INFO] cheese - inserting 1000 documents. first: Brian G. Sparkes and last: Pearcey integral -[2018-02-13T08:19:33.141] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:19:33.189] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:19:33.225] [INFO] cheese - batch complete in: 3.536 secs -[2018-02-13T08:19:33.241] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:19:33.270] [INFO] cheese - inserting 1000 documents. first: Dorset Coast and last: Office of laboratory animal welfare -[2018-02-13T08:19:33.369] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:19:33.443] [INFO] cheese - inserting 1000 documents. first: Nazmi Mehmeti and last: Wikipedia:Articles for deletion/DSmeet -[2018-02-13T08:19:33.477] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2013 January 21 and last: Zakabannaya Mosque -[2018-02-13T08:19:33.484] [INFO] cheese - inserting 1000 documents. first: Life Is like a Mountain Railroad and last: How the Grinch Stole Christmas! -[2018-02-13T08:19:33.547] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:19:33.555] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:19:33.598] [INFO] cheese - inserting 1000 documents. first: Elizabeth Armitstead and last: Domenico del Barbiere -[2018-02-13T08:19:33.575] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:19:33.686] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:19:33.774] [INFO] cheese - inserting 1000 documents. first: La Trappe Quadrupel and last: Category:Art in Washington (state) -[2018-02-13T08:19:33.844] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:19:33.865] [INFO] cheese - inserting 1000 documents. first: Dosch and last: Boeing 707-3D3C -[2018-02-13T08:19:33.987] [INFO] cheese - inserting 1000 documents. first: Neumarkt in der oberpfalz and last: New york city mayoralty elections -[2018-02-13T08:19:33.993] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:19:34.010] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:19:34.182] [INFO] cheese - inserting 1000 documents. first: Obvious and last: CSIX (disambiguation) -[2018-02-13T08:19:34.203] [INFO] cheese - inserting 1000 documents. first: Bukit Indah Highway and last: Monterey Sports Car Championships -[2018-02-13T08:19:34.221] [INFO] cheese - inserting 1000 documents. first: Michael Phelan (hurler) and last: Template:Metropolitans of British Columbia -[2018-02-13T08:19:34.223] [INFO] cheese - inserting 1000 documents. first: C.Ss.R. and last: Carboxylic group -[2018-02-13T08:19:34.239] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:19:34.281] [INFO] cheese - inserting 1000 documents. first: Charles Edward Curzon and last: TM-62 Landmine -[2018-02-13T08:19:34.281] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:19:34.299] [INFO] cheese - inserting 1000 documents. first: One night in paris and last: Nick cave i przyjaciele -[2018-02-13T08:19:34.315] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:19:34.370] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:19:34.371] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:19:34.378] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T08:19:34.551] [INFO] cheese - inserting 1000 documents. first: Ilyushin II-62M and last: Venelin Khubenov -[2018-02-13T08:19:34.654] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:19:34.819] [INFO] cheese - inserting 1000 documents. first: Nick drake discography and last: Phonating -[2018-02-13T08:19:34.904] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:19:34.962] [INFO] cheese - inserting 1000 documents. first: Ben Ohau and last: PHILM 1 -[2018-02-13T08:19:34.973] [INFO] cheese - inserting 1000 documents. first: First League of the Republika Srpska 2001–02 and last: Auto de fe (disambiguation) -[2018-02-13T08:19:35.040] [INFO] cheese - inserting 1000 documents. first: Elfin forest, San Diego County and last: Route 480 (Maryland) -[2018-02-13T08:19:35.048] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:19:35.073] [INFO] cheese - inserting 1000 documents. first: Northeast Grand Prix and last: Wikipedia:Wikipedia Signpost/2013-01-28/Recent research -[2018-02-13T08:19:35.074] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:19:35.151] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:35.203] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:19:35.300] [INFO] cheese - inserting 1000 documents. first: Category:Pages using infobox tennis biography with tennishofid and last: Lǐ Líng-wèi -[2018-02-13T08:19:35.358] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:19:35.529] [INFO] cheese - inserting 1000 documents. first: Opus Dei: Prominent Members and last: Wikipedia:Articles for deletion/Christopher A. Reh -[2018-02-13T08:19:35.529] [INFO] cheese - inserting 1000 documents. first: John R. G. Hassard and last: 高円寺百景 -[2018-02-13T08:19:35.539] [INFO] cheese - inserting 1000 documents. first: Ed Hovlik and last: 300 Metres Dash -[2018-02-13T08:19:35.613] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:19:35.645] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:19:35.686] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:19:35.739] [INFO] cheese - inserting 1000 documents. first: Holy Cross Catholic Academy and last: John Madsen (American football) -[2018-02-13T08:19:35.855] [INFO] cheese - inserting 1000 documents. first: Lǐ Líng-Wèi and last: 179th Tunnelling Company -[2018-02-13T08:19:35.856] [INFO] cheese - inserting 1000 documents. first: Atlanta Heights and last: Annenberg (surname) -[2018-02-13T08:19:35.875] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:35.973] [INFO] cheese - inserting 1000 documents. first: Michael Jackson's Moonwalker Sega Genesis and last: Wikipedia:Valued picture candidates/Hudson River -[2018-02-13T08:19:35.977] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:19:36.094] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:19:36.173] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:19:36.299] [INFO] cheese - inserting 1000 documents. first: Little Morton Hall and last: Template:Berner Oberland Bahn lines -[2018-02-13T08:19:36.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Biography/Peer review/Evanescence and last: Category:Trees of the Plains-Midwest (United States) -[2018-02-13T08:19:36.359] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:19:36.448] [INFO] cheese - inserting 1000 documents. first: Poul Nielson and last: Arcic -[2018-02-13T08:19:36.462] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:19:36.469] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Akhil.s.vijayan and last: Berner's Heath -[2018-02-13T08:19:36.498] [INFO] cheese - inserting 1000 documents. first: History of Oceania and last: JohnnyUnitas -[2018-02-13T08:19:36.558] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:19:36.564] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:19:36.567] [INFO] cheese - inserting 1000 documents. first: Michigan Algorithm Decoder and last: Category:Wikipedia sockpuppets of Outoftuneviolin -[2018-02-13T08:19:36.662] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:19:36.717] [INFO] cheese - inserting 1000 documents. first: File:MBRRACE-UK logo transparent.png and last: Category:Wind power in Maine -[2018-02-13T08:19:36.726] [INFO] cheese - batch complete in: 3.5 secs -[2018-02-13T08:19:36.822] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:19:36.870] [INFO] cheese - inserting 1000 documents. first: Chocolate Cliffs and last: The intimates -[2018-02-13T08:19:36.947] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:19:36.994] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elevator Sweep and last: Syndactyly type 2 -[2018-02-13T08:19:37.063] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:19:37.173] [INFO] cheese - inserting 1000 documents. first: Doping cases in athletics and last: USS Slate (IX-152) -[2018-02-13T08:19:37.180] [INFO] cheese - inserting 1000 documents. first: KLC2 and last: Japanese aircraft carrier Chitōse -[2018-02-13T08:19:37.252] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:19:37.300] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:19:37.462] [INFO] cheese - inserting 1000 documents. first: Adolphe von Menzel and last: The Ape of Naples -[2018-02-13T08:19:37.528] [INFO] cheese - inserting 1000 documents. first: Cubic wisdom and last: ZTE -[2018-02-13T08:19:37.546] [INFO] cheese - inserting 1000 documents. first: Polymedicine and last: File:Hippie 97.5.jpg -[2018-02-13T08:19:37.648] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:19:37.741] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:19:37.802] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T08:19:37.898] [INFO] cheese - inserting 1000 documents. first: Category:Category-Class History of Canada articles and last: Fiestas de Quito -[2018-02-13T08:19:37.968] [INFO] cheese - inserting 1000 documents. first: Beach 67th Street – Arverne By The Sea (IND Rockaway Line) and last: Orrius -[2018-02-13T08:19:38.014] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:19:38.056] [INFO] cheese - inserting 1000 documents. first: Ciresanu and last: Río Anon -[2018-02-13T08:19:38.103] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:19:38.229] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:19:38.263] [INFO] cheese - inserting 1000 documents. first: File:Terazije Theatre logo.jpg and last: Category:Vehicles introduced in 1997 -[2018-02-13T08:19:38.353] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:19:38.460] [INFO] cheese - inserting 1000 documents. first: Sandro Montefusco and last: Category:1189 disestablishments by country -[2018-02-13T08:19:38.513] [INFO] cheese - inserting 1000 documents. first: José Sá and last: Betel-chewing -[2018-02-13T08:19:38.527] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:19:38.549] [INFO] cheese - inserting 1000 documents. first: Worship with Don Moen and last: Category:Aquaria in Portugal -[2018-02-13T08:19:38.594] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:19:38.629] [INFO] cheese - inserting 1000 documents. first: North carolina commissioner of agriculture and last: Nuances of a theme by williams -[2018-02-13T08:19:38.651] [INFO] cheese - inserting 1000 documents. first: Simon Diamond and last: Big and Ugly Rendering Project -[2018-02-13T08:19:38.658] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T08:19:38.657] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:19:38.718] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 7 and last: New Mexico Open -[2018-02-13T08:19:38.750] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:19:38.793] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:19:38.929] [INFO] cheese - inserting 1000 documents. first: James Mackay Langtry and last: Shipping bandages -[2018-02-13T08:19:39.015] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:19:39.047] [INFO] cheese - inserting 1000 documents. first: Category:1189 in India and last: Prehistory of Germany -[2018-02-13T08:19:39.100] [INFO] cheese - inserting 1000 documents. first: Nuaym ibn masud and last: West Ham United F.C. 1980-1981 -[2018-02-13T08:19:39.122] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:19:39.130] [INFO] cheese - inserting 1000 documents. first: Gastón Soffritti and last: Chris Suharlim -[2018-02-13T08:19:39.141] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:19:39.203] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:19:39.243] [INFO] cheese - inserting 1000 documents. first: The Good Thing and last: Wikipedia:Miscellany for deletion/Wikipedia:Deleted articles with freaky titles -[2018-02-13T08:19:39.253] [INFO] cheese - inserting 1000 documents. first: Jackie Blue (album) and last: 546th Fighter Squadron -[2018-02-13T08:19:39.375] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:19:39.398] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:19:39.715] [INFO] cheese - inserting 1000 documents. first: United States House Financial Services Subcommittee on International Monetary Policy and Trade and last: Chiayi Air Base -[2018-02-13T08:19:39.724] [INFO] cheese - inserting 1000 documents. first: West Ham United F.C. 1979-1980 and last: File:L'Amour n'est rien... (video).jpg -[2018-02-13T08:19:39.741] [INFO] cheese - inserting 1000 documents. first: Hellas-Sat and last: Audi RS2 -[2018-02-13T08:19:39.784] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:19:39.821] [INFO] cheese - inserting 1000 documents. first: Govinda IV and last: Caparaó hocicudo -[2018-02-13T08:19:39.853] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:19:39.887] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:19:39.904] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:19:39.999] [INFO] cheese - inserting 1000 documents. first: Yumbe District and last: Pedro Rubiano -[2018-02-13T08:19:40.001] [INFO] cheese - inserting 1000 documents. first: Advance Auto 150 and last: Wikipedia:WikiProject Spam/LinkReports/skmrf.ru -[2018-02-13T08:19:40.090] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:19:40.142] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:19:40.356] [INFO] cheese - inserting 1000 documents. first: David Oelhoffen and last: Ye Olde Trip To Jerusalem -[2018-02-13T08:19:40.425] [INFO] cheese - inserting 1000 documents. first: Denis Selimovič and last: Benjamin Burge -[2018-02-13T08:19:40.507] [INFO] cheese - inserting 1000 documents. first: Template:Nintendo.com and last: Esophageal motility disorders -[2018-02-13T08:19:40.550] [INFO] cheese - inserting 1000 documents. first: Pxt and last: GSP algorithm -[2018-02-13T08:19:40.555] [INFO] cheese - batch complete in: 1.433 secs -[2018-02-13T08:19:40.559] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:19:40.673] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:19:40.740] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:40.799] [INFO] cheese - inserting 1000 documents. first: Max Rosenmann and last: Fabric Live 35 -[2018-02-13T08:19:40.825] [INFO] cheese - inserting 1000 documents. first: Johnny Unitas and last: Kesgrave -[2018-02-13T08:19:40.889] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:19:40.982] [INFO] cheese - inserting 1000 documents. first: Márton Joób and last: Jacobi polynomials -[2018-02-13T08:19:41.053] [INFO] cheese - batch complete in: 4.326 secs -[2018-02-13T08:19:41.083] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:19:41.103] [INFO] cheese - inserting 1000 documents. first: China Town and last: John Martin-Harvey -[2018-02-13T08:19:41.154] [INFO] cheese - inserting 1000 documents. first: Category:1999 animal births and last: Tamagawa University -[2018-02-13T08:19:41.155] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Maryland Route 478 and last: Isolation Transformer (Dry) -[2018-02-13T08:19:41.247] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:19:41.262] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:19:41.265] [INFO] cheese - inserting 1000 documents. first: Category:1470 in Guatemala and last: Victory Day (August 14) -[2018-02-13T08:19:41.290] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:19:41.355] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:41.422] [INFO] cheese - inserting 1000 documents. first: Bienhua and last: Siege of Shigisan -[2018-02-13T08:19:41.484] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:19:41.605] [INFO] cheese - inserting 1000 documents. first: FabricLive 35 and last: File:Incomplete haida pole.jpg -[2018-02-13T08:19:41.728] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:19:41.806] [INFO] cheese - inserting 1000 documents. first: Futami District, Hokkaidō and last: File:Amharic Braille chart.jpg -[2018-02-13T08:19:41.947] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:19:42.019] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2007 December 18 and last: Mikolaj Abramowicz -[2018-02-13T08:19:42.175] [INFO] cheese - inserting 1000 documents. first: Victory Day (August 14th) and last: Isiah Lord Thomas the Third -[2018-02-13T08:19:42.274] [INFO] cheese - inserting 1000 documents. first: NetAcquire and last: Wellesley Hospital -[2018-02-13T08:19:42.273] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:19:42.395] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:19:42.480] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:19:42.487] [INFO] cheese - inserting 1000 documents. first: 30 Foot Fall and last: Trife Diesel -[2018-02-13T08:19:42.599] [INFO] cheese - inserting 1000 documents. first: When You Dish Upon a Star and last: Great Britain at the 1988 Summer Olympics -[2018-02-13T08:19:42.638] [INFO] cheese - batch complete in: 1.553 secs -[2018-02-13T08:19:42.755] [INFO] cheese - batch complete in: 1.493 secs -[2018-02-13T08:19:42.785] [INFO] cheese - inserting 1000 documents. first: Friedrich Nicolaus Brauns and last: Bulu-Bene language -[2018-02-13T08:19:42.892] [INFO] cheese - inserting 1000 documents. first: Gmina Świerzawa and last: San lorenzo in damaso -[2018-02-13T08:19:42.893] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:19:42.949] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:19:43.090] [INFO] cheese - inserting 1000 documents. first: Template:Articles with dead external links progress and last: Korakohorion, Greece -[2018-02-13T08:19:43.132] [INFO] cheese - inserting 1000 documents. first: 2015 Sprint All-Star Race and last: (Norman) John Balfour Blakiston -[2018-02-13T08:19:43.209] [INFO] cheese - batch complete in: 1.478 secs -[2018-02-13T08:19:43.218] [INFO] cheese - inserting 1000 documents. first: Category:Time in the United Kingdom and last: Road speed limit enforcement in Australia -[2018-02-13T08:19:43.224] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:19:43.327] [INFO] cheese - inserting 1000 documents. first: San lorenzo in lucina and last: Jim Rogan -[2018-02-13T08:19:43.332] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:19:43.343] [INFO] cheese - inserting 1000 documents. first: 1911 U.S. National Championships – Men's Singles and last: Kharand -[2018-02-13T08:19:43.375] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:19:43.470] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:19:43.670] [INFO] cheese - inserting 1000 documents. first: Minty Peterson and last: File:LeagueLogo80pc.jpg -[2018-02-13T08:19:43.771] [INFO] cheese - batch complete in: 1.133 secs -[2018-02-13T08:19:43.873] [INFO] cheese - inserting 1000 documents. first: Category:Portsmouth Truckers players and last: Template:1982 Hurling All Stars -[2018-02-13T08:19:43.884] [INFO] cheese - inserting 1000 documents. first: Sainte-Marie-Madeleine, Quebec and last: 1988 in art -[2018-02-13T08:19:43.926] [INFO] cheese - inserting 1000 documents. first: La Troienne and last: Wikipedia:Articles for deletion/My Gothic Heart -[2018-02-13T08:19:43.990] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:19:44.008] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:19:44.073] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:19:44.144] [INFO] cheese - inserting 1000 documents. first: St Ives Roosters and last: The Gannett Company -[2018-02-13T08:19:44.147] [INFO] cheese - inserting 1000 documents. first: Aparamán Tepui and last: Category:Articles sourced only by IMDb from February 2013 -[2018-02-13T08:19:44.222] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:19:44.214] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:19:44.405] [INFO] cheese - inserting 1000 documents. first: WestJet Destinations and last: Cuisine of Belize -[2018-02-13T08:19:44.412] [INFO] cheese - inserting 1000 documents. first: Kurt Waldheim and last: Laurence of Canterbury -[2018-02-13T08:19:44.472] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:19:44.507] [INFO] cheese - inserting 1000 documents. first: File:Final Fantasy XIII battle.png and last: Marat Galimov -[2018-02-13T08:19:44.563] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:19:44.608] [INFO] cheese - batch complete in: 3.555 secs -[2018-02-13T08:19:44.708] [INFO] cheese - inserting 1000 documents. first: Template:Italy-company-stub and last: Blood Arm -[2018-02-13T08:19:44.709] [INFO] cheese - inserting 1000 documents. first: Gannett Co., Inc. and last: Papa John's.com Bowl -[2018-02-13T08:19:44.802] [INFO] cheese - inserting 1000 documents. first: Category:People extradited from Yugoslavia and last: Scopula vicina (Gaede, 1917) -[2018-02-13T08:19:44.959] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:19:44.982] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:19:45.012] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:19:45.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Faqmagazine and last: Elvis -[2018-02-13T08:19:45.307] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:19:45.450] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Aliceelisabethmay/JBA Consulting and last: WFMT (FM) -[2018-02-13T08:19:45.469] [INFO] cheese - inserting 1000 documents. first: Icelandic independence movement and last: Outline of Washington territorial evolution -[2018-02-13T08:19:45.625] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:19:45.638] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:19:45.789] [INFO] cheese - inserting 1000 documents. first: Siege of Montreal and last: Seaboard Coastline Railroad Passenger Station/version 2 -[2018-02-13T08:19:45.855] [INFO] cheese - inserting 1000 documents. first: Xiaqiong Town and last: Antillean cave rail -[2018-02-13T08:19:45.873] [INFO] cheese - inserting 1000 documents. first: Mammolshain and last: Erkes-e Pa'in -[2018-02-13T08:19:45.910] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:19:45.978] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:19:46.014] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:19:46.234] [INFO] cheese - inserting 1000 documents. first: Macroevolutionary Theory and last: Eyebrow modification -[2018-02-13T08:19:46.412] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:19:46.522] [INFO] cheese - inserting 1000 documents. first: Category:1996 disestablishments in the Comoros and last: Wikipedia:WikiProject Spam/LinkReports/web2.utc.edu -[2018-02-13T08:19:46.647] [INFO] cheese - batch complete in: 3.423 secs -[2018-02-13T08:19:46.676] [INFO] cheese - inserting 1000 documents. first: General Motors Agila and last: Classical guitar repertoire -[2018-02-13T08:19:46.742] [INFO] cheese - inserting 1000 documents. first: Cape longclaw and last: Retaruke River -[2018-02-13T08:19:46.779] [INFO] cheese - inserting 1000 documents. first: House Committee on Financial Services and last: Sarbesti -[2018-02-13T08:19:46.781] [INFO] cheese - inserting 1000 documents. first: Arges, Iran (disambiguation) and last: Tryptophan N-hydroxylase -[2018-02-13T08:19:46.789] [INFO] cheese - inserting 1000 documents. first: George Kojac and last: Template:Atago class destroyer -[2018-02-13T08:19:46.839] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:19:46.922] [INFO] cheese - batch complete in: 1.615 secs -[2018-02-13T08:19:46.959] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:19:46.896] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:19:46.973] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:19:47.119] [INFO] cheese - inserting 1000 documents. first: Archstone-Smith Trust and last: Wikipedia:Articles for deletion/Middleverse -[2018-02-13T08:19:47.207] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:19:47.389] [INFO] cheese - inserting 1000 documents. first: Kalaja and last: Manyflower Geranium -[2018-02-13T08:19:47.586] [INFO] cheese - inserting 1000 documents. first: Trần Vũ and last: Kola class frigate -[2018-02-13T08:19:47.661] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:19:47.742] [INFO] cheese - inserting 1000 documents. first: Criticism of NASCAR and last: Canoga parque X3 -[2018-02-13T08:19:47.787] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:19:47.982] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:19:48.047] [INFO] cheese - inserting 1000 documents. first: Template:R from disambiguation and last: The Witness (1969 film) -[2018-02-13T08:19:48.171] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:19:48.263] [INFO] cheese - inserting 1000 documents. first: Sylvan Lake (Alberta) and last: Robb Sapp -[2018-02-13T08:19:48.330] [INFO] cheese - inserting 1000 documents. first: Hillury Duff and last: DPDT -[2018-02-13T08:19:48.350] [INFO] cheese - inserting 1000 documents. first: Luis Santos (disambiguation) and last: Gansky -[2018-02-13T08:19:48.369] [INFO] cheese - inserting 1000 documents. first: Haleakalā Geranium and last: Atchison County Raceway -[2018-02-13T08:19:48.442] [INFO] cheese - batch complete in: 1.546 secs -[2018-02-13T08:19:48.460] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:19:48.496] [INFO] cheese - batch complete in: 1.574 secs -[2018-02-13T08:19:48.523] [INFO] cheese - inserting 1000 documents. first: Bruce Coulter and last: Jack Off Jill -[2018-02-13T08:19:48.537] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:19:48.701] [INFO] cheese - batch complete in: 1.862 secs -[2018-02-13T08:19:48.812] [INFO] cheese - inserting 1000 documents. first: Little Big Inch and last: Portal:Gibraltar/Quotes/7 -[2018-02-13T08:19:48.932] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:19:49.062] [INFO] cheese - inserting 1000 documents. first: Britt Township, Hancock County, Iowa and last: Pierluigi Da Palestrina -[2018-02-13T08:19:49.105] [INFO] cheese - inserting 1000 documents. first: Pak Super League and last: Fucket -[2018-02-13T08:19:49.219] [INFO] cheese - inserting 1000 documents. first: Vrhobreznica Chronicle and last: Wikipedia:Articles for deletion/Prakriti Shrestha -[2018-02-13T08:19:49.220] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:19:49.304] [INFO] cheese - inserting 1000 documents. first: La Banda Sinaloense and last: Mehmed III -[2018-02-13T08:19:49.307] [INFO] cheese - inserting 1000 documents. first: Maybach Taniguchi and last: Template:Knott's Berry Farm -[2018-02-13T08:19:49.314] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:19:49.364] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:19:49.438] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:19:49.679] [INFO] cheese - batch complete in: 5.071 secs -[2018-02-13T08:19:49.700] [INFO] cheese - inserting 1000 documents. first: File:Preston Reed - Pointing Up.jpg and last: Portal:Current events/2007 December 24 -[2018-02-13T08:19:49.772] [INFO] cheese - inserting 1000 documents. first: PL-4 and last: You Forgot It In People -[2018-02-13T08:19:49.816] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:19:49.944] [INFO] cheese - batch complete in: 1.448 secs -[2018-02-13T08:19:49.963] [INFO] cheese - inserting 1000 documents. first: Page County Courthouse (Clarinda, Iowa) and last: Hungarian name days -[2018-02-13T08:19:49.966] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Chaetostoma microps and last: Category:Chinese female badminton players -[2018-02-13T08:19:50.031] [INFO] cheese - inserting 1000 documents. first: Suicides (short story) and last: Category:Seals of Philippine provinces -[2018-02-13T08:19:50.076] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:19:50.093] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:19:50.135] [INFO] cheese - inserting 1000 documents. first: Jorge Sapag and last: Scenes from an italian restaurant -[2018-02-13T08:19:50.136] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:19:50.179] [INFO] cheese - inserting 1000 documents. first: Poly(A) polymerase and last: Route 134 (Virginia pre-1933) -[2018-02-13T08:19:50.180] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T08:19:50.306] [INFO] cheese - inserting 1000 documents. first: Crunch (candy) and last: Skewer (chess) -[2018-02-13T08:19:50.419] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:19:50.449] [INFO] cheese - batch complete in: 1.748 secs -[2018-02-13T08:19:50.743] [INFO] cheese - inserting 1000 documents. first: Tale of the mummy and last: Taxonomy of the cactaceae -[2018-02-13T08:19:50.825] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:19:50.926] [INFO] cheese - inserting 1000 documents. first: Bahá'í Faith in Europe and last: Category:2000 in Odisha -[2018-02-13T08:19:50.938] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 36 and last: Category:Songs written by Pharrell Williams -[2018-02-13T08:19:50.969] [INFO] cheese - inserting 1000 documents. first: Obultronius sabinus and last: Jump (Kylie Minogue song) -[2018-02-13T08:19:50.989] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:19:51.024] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:19:51.137] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:19:51.158] [INFO] cheese - inserting 1000 documents. first: Scouting in greater manchester west and last: Seat of the coptic orthodox pope of alexandria -[2018-02-13T08:19:51.208] [INFO] cheese - inserting 1000 documents. first: Love Among the Ruins (album) and last: Lyndon Hooper -[2018-02-13T08:19:51.190] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:19:51.354] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T08:19:51.441] [INFO] cheese - inserting 1000 documents. first: Temple of amenhotep iv and last: Sejm of the republic of poland -[2018-02-13T08:19:51.444] [INFO] cheese - inserting 1000 documents. first: State Route 74 (Virginia 1940) and last: Bishop of Konstanz -[2018-02-13T08:19:51.475] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T08:19:51.565] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:19:51.736] [INFO] cheese - inserting 1000 documents. first: Category:2001 in Odisha and last: 𝄵 -[2018-02-13T08:19:51.756] [INFO] cheese - inserting 1000 documents. first: Skewer (Chess) and last: Category:People from Woodburn, Kentucky -[2018-02-13T08:19:51.891] [INFO] cheese - inserting 1000 documents. first: Category:Sporting goods manufacturers of Austria and last: Xonacatlán -[2018-02-13T08:19:51.891] [INFO] cheese - batch complete in: 1.44 secs -[2018-02-13T08:19:51.942] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:19:52.021] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:19:52.105] [INFO] cheese - inserting 1000 documents. first: Temple Buell College and last: Brickelia desertorum -[2018-02-13T08:19:52.123] [INFO] cheese - inserting 1000 documents. first: Texas tech university health sciences center school of pharmacy abilene campus and last: Dedham, Mass -[2018-02-13T08:19:52.190] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:19:52.238] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:19:52.455] [INFO] cheese - inserting 1000 documents. first: Solihull Metropolitan Borough Council election, 1995 and last: Category:Songs written by Lisa Greene -[2018-02-13T08:19:52.468] [INFO] cheese - inserting 1000 documents. first: Toni Söderholm and last: List of newspapers in Sudan -[2018-02-13T08:19:52.472] [INFO] cheese - inserting 1000 documents. first: Tobias Vincent "Tobey" Maguire and last: Jon DaCosta -[2018-02-13T08:19:52.503] [INFO] cheese - inserting 1000 documents. first: Longster trail and last: Frog Museum (Münchenstein) -[2018-02-13T08:19:52.540] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:19:52.537] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:19:52.574] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:19:52.580] [INFO] cheese - inserting 1000 documents. first: Motion Picture Alliance for the Preservation of American Ideals and last: Apple Backup -[2018-02-13T08:19:52.585] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:19:52.642] [INFO] cheese - inserting 1000 documents. first: Agoseris hirsuta and last: Franseria cuneifolia -[2018-02-13T08:19:52.675] [INFO] cheese - inserting 1000 documents. first: Deerfield, Ma and last: Nantucket, Mass -[2018-02-13T08:19:52.701] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:19:52.708] [INFO] cheese - batch complete in: 1.353 secs -[2018-02-13T08:19:52.818] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:53.073] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Claude Le Péron and last: Wikipedia:Miscellany for deletion/User:Ferry Lane Estate Wildlife/sandbox -[2018-02-13T08:19:53.075] [INFO] cheese - inserting 1000 documents. first: Edge list and last: Speed Kelly -[2018-02-13T08:19:53.097] [INFO] cheese - inserting 1000 documents. first: Vladicaris and last: Category:Michigan City White Caps players -[2018-02-13T08:19:53.122] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:19:53.120] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:19:53.199] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:19:53.242] [INFO] cheese - inserting 1000 documents. first: San Felipe (shipwreck) and last: Orny Adams -[2018-02-13T08:19:53.311] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:19:53.370] [INFO] cheese - inserting 1000 documents. first: 1965 Men's British Open Squash Championship and last: Category:Imperial Russian schoolteachers -[2018-02-13T08:19:53.507] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:19:53.542] [INFO] cheese - inserting 1000 documents. first: Natick, Ma and last: DPP7 -[2018-02-13T08:19:53.546] [INFO] cheese - inserting 1000 documents. first: Mustafa I and last: List of national anthems -[2018-02-13T08:19:53.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Neopaganism/Prospectus and last: Category:Slovak people of Bosnia and Herzegovina descent -[2018-02-13T08:19:53.696] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:19:53.705] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:19:53.809] [INFO] cheese - inserting 1000 documents. first: Parker High School (Illinois) and last: File:Tamil Nadu Civil Supplies Corporation (emblem).gif -[2018-02-13T08:19:53.830] [INFO] cheese - batch complete in: 4.151 secs -[2018-02-13T08:19:53.859] [INFO] cheese - inserting 1000 documents. first: File:Spartina alterniflora.jpg and last: Primera Divisió 2007-08 -[2018-02-13T08:19:53.966] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:54.006] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:19:54.123] [INFO] cheese - inserting 1000 documents. first: Baseball telecasts technology and last: File:Strandstrip.jpg -[2018-02-13T08:19:54.187] [INFO] cheese - inserting 1000 documents. first: Deerfield Beach Arboretum and last: Michael Morbius -[2018-02-13T08:19:54.228] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:19:54.319] [INFO] cheese - inserting 1000 documents. first: AaronCarter and last: Lovers Are Never Losers -[2018-02-13T08:19:54.425] [INFO] cheese - batch complete in: 1.704 secs -[2018-02-13T08:19:54.462] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:19:54.583] [INFO] cheese - inserting 1000 documents. first: File:Caseyology.jpg and last: File:L'Excelsior, Au Salon d'Automne, Les Indépendants, October 1912, Metzinger, Gleizes, Kupka reproduced.jpg -[2018-02-13T08:19:54.632] [INFO] cheese - inserting 1000 documents. first: Template:STV Election box begin2 and last: Buckingham-Pi theorem -[2018-02-13T08:19:54.704] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:19:54.731] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:54.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Textile Arts/References and last: PPP1R10 -[2018-02-13T08:19:54.791] [INFO] cheese - inserting 1000 documents. first: Category:South Korean idols and last: Category:Hertfordshire subdivision navigational boxes -[2018-02-13T08:19:54.885] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:19:54.935] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:19:55.091] [INFO] cheese - inserting 1000 documents. first: NACAC U23 Championships and last: The Vast Spoils of America (From the Badlands through the Ocean) -[2018-02-13T08:19:55.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adetola Faminu and last: Bishop of Hereford -[2018-02-13T08:19:55.135] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:19:55.156] [INFO] cheese - inserting 1000 documents. first: Afzal Ahmed Khan and last: Highlands long-finned eel -[2018-02-13T08:19:55.203] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:19:55.237] [INFO] cheese - inserting 1000 documents. first: Category:Peoples of Anglo-Saxon England and last: Frédéric Joly -[2018-02-13T08:19:55.243] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:19:55.302] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:19:55.372] [INFO] cheese - inserting 1000 documents. first: The Mighty Rio Grande and last: Albert Hawkins -[2018-02-13T08:19:55.516] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:19:55.608] [INFO] cheese - inserting 1000 documents. first: PRCC (gene) and last: Wellesley, Ma -[2018-02-13T08:19:55.691] [INFO] cheese - inserting 1000 documents. first: Anguilla interioris and last: List of supermarket chains in the Republic of the Congo -[2018-02-13T08:19:55.699] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:55.716] [INFO] cheese - inserting 1000 documents. first: The Last Lie I Told and last: Warwick War Memorial -[2018-02-13T08:19:55.797] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:19:55.919] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:19:55.965] [INFO] cheese - inserting 1000 documents. first: Category:Government responses to UFOs and last: Tatiana Guderzo -[2018-02-13T08:19:56.043] [INFO] cheese - inserting 1000 documents. first: Carbondale Historical Society & Museum and last: Template:User in Guinea -[2018-02-13T08:19:56.055] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:19:56.082] [INFO] cheese - inserting 1000 documents. first: Category:Anglican congregations established in the 17th century and last: Template:R from character -[2018-02-13T08:19:56.122] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:19:56.197] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:19:56.205] [INFO] cheese - inserting 1000 documents. first: Armaan (1966 film) and last: Mike Newdow -[2018-02-13T08:19:56.287] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from New Jersey and last: Mordellina gracilis -[2018-02-13T08:19:56.289] [INFO] cheese - batch complete in: 1.864 secs -[2018-02-13T08:19:56.339] [INFO] cheese - inserting 1000 documents. first: WWI truce and last: Dos Palos, Ca -[2018-02-13T08:19:56.374] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:19:56.451] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:19:56.480] [INFO] cheese - inserting 1000 documents. first: Saturns Pattern - Single and last: Grove Park, Charlestown -[2018-02-13T08:19:56.610] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:19:56.654] [INFO] cheese - inserting 1000 documents. first: Aronia arbutifolia and last: Template:Retailing-subscription -[2018-02-13T08:19:56.760] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:19:56.786] [INFO] cheese - inserting 1000 documents. first: Maji Desu ka Ska! and last: Aetheliparis rossi -[2018-02-13T08:19:56.940] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:19:56.956] [INFO] cheese - inserting 1000 documents. first: Zythos modesta and last: Category:My Bloody Valentine (band) EPs -[2018-02-13T08:19:57.029] [INFO] cheese - inserting 1000 documents. first: File:Logo stm.jpg and last: File:Logo-rw-blue.jpg -[2018-02-13T08:19:57.097] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:19:57.207] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:19:57.242] [INFO] cheese - inserting 1000 documents. first: Flammable ice and last: Portal:Film/Selected article/59 -[2018-02-13T08:19:57.350] [INFO] cheese - inserting 1000 documents. first: Nikola Tesla and last: Postmaster General -[2018-02-13T08:19:57.324] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:19:57.501] [INFO] cheese - inserting 1000 documents. first: Grove Park (Charlestown) and last: 2008 in Shark Fights -[2018-02-13T08:19:57.555] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:19:57.618] [INFO] cheese - inserting 1000 documents. first: A28 motorway (Portugal) and last: Route 40 -[2018-02-13T08:19:57.662] [INFO] cheese - inserting 1000 documents. first: May Parker and last: Symphony of Psalms -[2018-02-13T08:19:57.678] [INFO] cheese - batch complete in: 3.848 secs -[2018-02-13T08:19:57.718] [INFO] cheese - inserting 1000 documents. first: Never Say Die (play) and last: Nuclear threat -[2018-02-13T08:19:57.751] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:19:57.797] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:19:57.891] [INFO] cheese - batch complete in: 1.602 secs -[2018-02-13T08:19:57.942] [INFO] cheese - inserting 1000 documents. first: Category:People from Alleghany County, North Carolina and last: Steyning Methodist Church -[2018-02-13T08:19:57.970] [INFO] cheese - inserting 1000 documents. first: Sciences, The and last: Oleksandr Pryzetko -[2018-02-13T08:19:58.067] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:19:58.072] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:19:58.306] [INFO] cheese - inserting 1000 documents. first: Portal:Film/Selected article/5 and last: Canadian football field -[2018-02-13T08:19:58.322] [INFO] cheese - inserting 1000 documents. first: Bert Nienhuis and last: File:Dragon Mountain (boxed set).jpg -[2018-02-13T08:19:58.359] [INFO] cheese - inserting 1000 documents. first: Glipa isolata and last: Evangelical Lutheran Church in Romania -[2018-02-13T08:19:58.393] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:19:58.451] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:19:58.509] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:19:58.675] [INFO] cheese - inserting 1000 documents. first: Palauans and last: Malayan Colleges -[2018-02-13T08:19:58.689] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian engineers and last: Maxatawny Township, Pennsylvania -[2018-02-13T08:19:58.758] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T08:19:58.759] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:19:58.801] [INFO] cheese - inserting 1000 documents. first: Mayin and last: Finalizer -[2018-02-13T08:19:58.872] [INFO] cheese - inserting 1000 documents. first: List of universities in Fiji and last: Category:History books about Ukraine -[2018-02-13T08:19:58.878] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:19:58.990] [INFO] cheese - inserting 1000 documents. first: Index of physics articles: Z and last: Spergularia bocconi -[2018-02-13T08:19:59.009] [INFO] cheese - inserting 1000 documents. first: Battle of Delft and last: Compound of twelve pentagonal antiprisms with rotational freedom -[2018-02-13T08:19:59.017] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:19:59.112] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:19:59.187] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:19:59.274] [INFO] cheese - inserting 1000 documents. first: Slicker hat and last: Chotyně -[2018-02-13T08:19:59.360] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:19:59.403] [INFO] cheese - inserting 1000 documents. first: Muhlenberg Township, Pennsylvania and last: Radio Windy -[2018-02-13T08:19:59.540] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:19:59.631] [INFO] cheese - inserting 1000 documents. first: Q'umir Qucha (Bolivia) and last: EC 2.1.1.4 -[2018-02-13T08:19:59.679] [INFO] cheese - inserting 1000 documents. first: Lan Yin Mandarin and last: Portal:United States/Selected article/25 -[2018-02-13T08:19:59.699] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:19:59.810] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:19:59.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tarek El Moussa and last: Reduced-Price Lunch Program -[2018-02-13T08:19:59.984] [INFO] cheese - inserting 1000 documents. first: Template:Washington County, Kentucky and last: Wikipedia:Image copyright help desk/Archive 2 -[2018-02-13T08:20:00.049] [INFO] cheese - inserting 1000 documents. first: Dime Box, Texas and last: Hallam Sinfonia -[2018-02-13T08:20:00.055] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:20:00.091] [INFO] cheese - inserting 1000 documents. first: Millgram experiment and last: USS Bell (DD-587) -[2018-02-13T08:20:00.091] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:00.193] [INFO] cheese - batch complete in: 1.435 secs -[2018-02-13T08:20:00.251] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:20:00.281] [INFO] cheese - inserting 1000 documents. first: Miami, California and last: Zactane -[2018-02-13T08:20:00.411] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:20:00.539] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected article/26 and last: Portal:United States/Selected culture biography/24 -[2018-02-13T08:20:00.624] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:20:00.638] [INFO] cheese - inserting 1000 documents. first: File:DC3 nut traces.jpg and last: Hansa - The Movie -[2018-02-13T08:20:00.700] [INFO] cheese - inserting 1000 documents. first: Roy Firebrace and last: File:Tonight at 830 promo.jpg -[2018-02-13T08:20:00.782] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:20:00.789] [INFO] cheese - inserting 1000 documents. first: Free Lunch Program and last: Justin Jose -[2018-02-13T08:20:00.845] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:20:00.901] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:20:00.951] [INFO] cheese - inserting 1000 documents. first: Schawartzenegger and last: The Jaffna Kingdom -[2018-02-13T08:20:00.977] [INFO] cheese - inserting 1000 documents. first: 2009 Ordina Open – Men's Singles and last: Antonio Sánchez de la Calle -[2018-02-13T08:20:01.070] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:20:01.087] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:20:01.174] [INFO] cheese - inserting 1000 documents. first: Paul Cohen and last: Pope Valentine -[2018-02-13T08:20:01.202] [INFO] cheese - inserting 1000 documents. first: Sebesteny Cube and last: North Antrim (constituency) -[2018-02-13T08:20:01.230] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected culture biography/25 and last: Wikipedia:Requests for feedback/2011 February 19 -[2018-02-13T08:20:01.322] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:20:01.346] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:20:01.480] [INFO] cheese - inserting 1000 documents. first: Bukhan sanseong and last: M.N. Reddi -[2018-02-13T08:20:01.502] [INFO] cheese - batch complete in: 3.824 secs -[2018-02-13T08:20:01.527] [INFO] cheese - inserting 1000 documents. first: Isabel Gemio and last: A J A Symons -[2018-02-13T08:20:01.723] [INFO] cheese - inserting 1000 documents. first: Baton Rouge General Medical Center - Bluebonnet Campus and last: Haggui -[2018-02-13T08:20:01.722] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:20:01.757] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:20:01.969] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:20:02.167] [INFO] cheese - inserting 1000 documents. first: Category:Lodi Padres players and last: William VI of Angoulême -[2018-02-13T08:20:02.255] [INFO] cheese - inserting 1000 documents. first: Slender weasel shark and last: Jérémy Morel -[2018-02-13T08:20:02.276] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:20:02.391] [INFO] cheese - batch complete in: 1.321 secs -[2018-02-13T08:20:02.406] [INFO] cheese - inserting 1000 documents. first: A J Allmendinger and last: A. S. Roma statistics and records -[2018-02-13T08:20:02.415] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected biography/33 and last: Cernusco -[2018-02-13T08:20:02.456] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:20:02.569] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:20:02.791] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Ewald Gerhard Seeliger and last: File:CartesianLinguistics.jpg -[2018-02-13T08:20:02.806] [INFO] cheese - inserting 1000 documents. first: Mark Kolterman and last: File:Headwaters Incorporated logo.png -[2018-02-13T08:20:02.985] [INFO] cheese - inserting 1000 documents. first: Included by reference and last: UD Aretxabaleta -[2018-02-13T08:20:03.015] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:20:03.141] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:20:03.170] [INFO] cheese - inserting 1000 documents. first: A. S. Sestese Calcio and last: AS Hitchcock -[2018-02-13T08:20:03.260] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:20:03.304] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:20:03.551] [INFO] cheese - inserting 1000 documents. first: Rotgut the Zombie and last: Belchalwell -[2018-02-13T08:20:03.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PROMOSINGLE and last: Salman Gambarov -[2018-02-13T08:20:03.614] [INFO] cheese - inserting 1000 documents. first: Category:Bishops of Sheffield and last: UFN 3 -[2018-02-13T08:20:03.724] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:20:03.772] [INFO] cheese - batch complete in: 2.426 secs -[2018-02-13T08:20:03.843] [INFO] cheese - batch complete in: 1.452 secs -[2018-02-13T08:20:03.858] [INFO] cheese - inserting 1000 documents. first: Mondo Mini Shows and last: Category:Chief Justices of Tonga -[2018-02-13T08:20:03.944] [INFO] cheese - inserting 1000 documents. first: Sega Sound Team Band and last: Annie MG Schmidt -[2018-02-13T08:20:04.126] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:20:04.126] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T08:20:04.182] [INFO] cheese - inserting 1000 documents. first: Subcostales muscle and last: Sopot, Lovech Province -[2018-02-13T08:20:04.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2015-05-27/In the media and last: Henderson v. United States (disambiguation) -[2018-02-13T08:20:04.331] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:20:04.346] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:20:04.611] [INFO] cheese - inserting 1000 documents. first: TXNDC13 and last: Barrackpore II -[2018-02-13T08:20:04.617] [INFO] cheese - inserting 1000 documents. first: Alfred Gottschalk (biochemist) and last: Ruefrex -[2018-02-13T08:20:04.626] [INFO] cheese - inserting 1000 documents. first: File:Portableatheistcover.jpg and last: Marini, Luigi Gaetano -[2018-02-13T08:20:04.733] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:20:04.762] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:20:04.764] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:20:04.801] [INFO] cheese - inserting 1000 documents. first: Early February 2013 North American blizzard and last: Samuel Way Building -[2018-02-13T08:20:04.836] [INFO] cheese - inserting 1000 documents. first: Hill 60 (disambiguation) and last: The Adventures of Esplandián -[2018-02-13T08:20:04.858] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:20:04.898] [INFO] cheese - inserting 1000 documents. first: Kenule "Ken" Beeson Saro-Wiwa and last: Campoa -[2018-02-13T08:20:04.940] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:20:05.071] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:20:05.155] [INFO] cheese - inserting 1000 documents. first: B. C. 's Quest for Tires and last: Vulliens, Switzerland -[2018-02-13T08:20:05.216] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:20:05.364] [INFO] cheese - inserting 1000 documents. first: William Courtney and last: St. James Court Art Show -[2018-02-13T08:20:05.386] [INFO] cheese - inserting 1000 documents. first: Seddik Berradja and last: Source of the Amazon river -[2018-02-13T08:20:05.412] [INFO] cheese - inserting 1000 documents. first: Conker live and reloaded and last: James Glaser -[2018-02-13T08:20:05.508] [INFO] cheese - inserting 1000 documents. first: Sarubobo (wrestler) and last: S-adenosyl-L-methionine:5-hydroxyfuranocoumarin 5-O-methyltransferase -[2018-02-13T08:20:05.543] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:20:05.561] [INFO] cheese - batch complete in: 1.789 secs -[2018-02-13T08:20:05.576] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:20:05.669] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:20:05.694] [INFO] cheese - inserting 1000 documents. first: Aulacostroma and last: Viktor Haus -[2018-02-13T08:20:05.769] [INFO] cheese - inserting 1000 documents. first: Assassination of Gaidar Gadzhiyev and last: The Rise and Fall of the City of Mahagonny -[2018-02-13T08:20:05.784] [INFO] cheese - inserting 1000 documents. first: Constant Camber 3M and last: Wikipedia:WikiProject Spam/Local/kifoth.de -[2018-02-13T08:20:05.798] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:05.900] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:20:05.971] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:20:06.060] [INFO] cheese - inserting 1000 documents. first: Pope Victor I and last: Range voting -[2018-02-13T08:20:06.199] [INFO] cheese - inserting 1000 documents. first: Front Row Motorsports with Yates Racing and last: Ragnvald the Wise -[2018-02-13T08:20:06.294] [INFO] cheese - inserting 1000 documents. first: Halloween haunt and last: Kitja language -[2018-02-13T08:20:06.308] [INFO] cheese - batch complete in: 4.806 secs -[2018-02-13T08:20:06.312] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:20:06.369] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:20:06.421] [INFO] cheese - inserting 1000 documents. first: José Saúl Wermus and last: William H. Smith (Alamo defender) -[2018-02-13T08:20:06.436] [INFO] cheese - inserting 1000 documents. first: GNSS positioning and last: File:Karhu.png -[2018-02-13T08:20:06.531] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:20:06.571] [INFO] cheese - inserting 1000 documents. first: Bola de Nieve and last: Langi Kal Kal -[2018-02-13T08:20:06.583] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:20:06.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Jason Bonham and last: Bishop F D Washington -[2018-02-13T08:20:06.640] [INFO] cheese - inserting 1000 documents. first: Hedong Township, Jinchuan County and last: Kitaoka Akiyoshi -[2018-02-13T08:20:06.679] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:20:06.689] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:20:06.796] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T08:20:06.991] [INFO] cheese - inserting 1000 documents. first: Shawnee Territory and last: Racism in Uganda -[2018-02-13T08:20:07.053] [INFO] cheese - inserting 1000 documents. first: Meganoton joachimi and last: Book:Slayer discography -[2018-02-13T08:20:07.082] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:20:07.226] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:20:07.299] [INFO] cheese - inserting 1000 documents. first: Richard Starr (Alamo defender) and last: Kehar -[2018-02-13T08:20:07.303] [INFO] cheese - inserting 1000 documents. first: Kidja language and last: Galena High School (Nevada) -[2018-02-13T08:20:07.412] [INFO] cheese - inserting 1000 documents. first: Bishop FD Washington and last: Gmina Piszczac -[2018-02-13T08:20:07.447] [INFO] cheese - inserting 1000 documents. first: Gustavs (name) and last: Category:Films directed by Max W. Kimmich -[2018-02-13T08:20:07.458] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:20:07.519] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:20:07.590] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:20:07.621] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:07.860] [INFO] cheese - inserting 1000 documents. first: File:Wenceslao Roces Suárez.jpg and last: Eupterote petola -[2018-02-13T08:20:07.955] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:20:08.071] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/BabbaQ/Archive and last: Nadunissi Naaygal -[2018-02-13T08:20:08.178] [INFO] cheese - inserting 1000 documents. first: Consolidated Rail and last: Mayandi Kudumbathar -[2018-02-13T08:20:08.198] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:20:08.210] [INFO] cheese - inserting 1000 documents. first: Naomi C. Earp and last: The Urban Academy (England) -[2018-02-13T08:20:08.267] [INFO] cheese - inserting 1000 documents. first: New Jersey Hall of Fame and last: Reusens, Edmond -[2018-02-13T08:20:08.269] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:08.338] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:20:08.387] [INFO] cheese - inserting 1000 documents. first: VC La Pomme Marseille and last: Apogon parvulus -[2018-02-13T08:20:08.400] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:20:08.479] [INFO] cheese - inserting 1000 documents. first: Category:616 births and last: Rimac (disambiguation) -[2018-02-13T08:20:08.496] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:20:08.642] [INFO] cheese - batch complete in: 1.963 secs -[2018-02-13T08:20:08.678] [INFO] cheese - inserting 1000 documents. first: Category:17th-century establishments in South America and last: Category:Chilean male ballet dancers -[2018-02-13T08:20:08.696] [INFO] cheese - inserting 1000 documents. first: Radin Mas Primary School and last: Category:WikiProject American Old West templates -[2018-02-13T08:20:08.842] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:20:08.900] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:20:08.924] [INFO] cheese - inserting 1000 documents. first: Ballade Op. 38 (Chopin) and last: L.U.C -[2018-02-13T08:20:09.038] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:20:09.199] [INFO] cheese - inserting 1000 documents. first: Pilea and last: Category:Bishops of Woolwich -[2018-02-13T08:20:09.246] [INFO] cheese - inserting 1000 documents. first: Gmina Fajsławice and last: Gmina Łaszczów -[2018-02-13T08:20:09.290] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Málaga and last: Government Accountability and Transparency Board -[2018-02-13T08:20:09.331] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:20:09.387] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:20:09.417] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:20:09.679] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Aircrash and last: Wikipedia:WikiProject Spam/LinkReports/theimpactandexitevent.com -[2018-02-13T08:20:09.728] [INFO] cheese - inserting 1000 documents. first: Wan Wu Sheng Zhang and last: Template:Did you know nominations/Roland Rudd -[2018-02-13T08:20:09.796] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:20:09.902] [INFO] cheese - inserting 1000 documents. first: Develop (magazine) and last: Lineatin -[2018-02-13T08:20:09.909] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:20:10.060] [INFO] cheese - inserting 1000 documents. first: Miles Hendon and last: Fractional factorial design -[2018-02-13T08:20:10.103] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:20:10.171] [INFO] cheese - inserting 1000 documents. first: A2020 road and last: File:VH1Storytellers Cash&Nelson.jpg -[2018-02-13T08:20:10.255] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:20:10.307] [INFO] cheese - inserting 1000 documents. first: Army Military Intelligence and last: A vörös grófnö -[2018-02-13T08:20:10.344] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:20:10.362] [INFO] cheese - inserting 1000 documents. first: Robert A Heinlein and last: Economy of South Africa -[2018-02-13T08:20:10.468] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:20:10.680] [INFO] cheese - inserting 1000 documents. first: Used, Zaragoza and last: Halianthella -[2018-02-13T08:20:10.808] [INFO] cheese - inserting 1000 documents. first: Oppenheimer (play) and last: The Quill of the Porcupine -[2018-02-13T08:20:10.784] [INFO] cheese - batch complete in: 4.475 secs -[2018-02-13T08:20:10.911] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:20:10.975] [INFO] cheese - inserting 1000 documents. first: Heróico Colegio Militar and last: Chastity Sun Bono -[2018-02-13T08:20:11.077] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T08:20:11.153] [INFO] cheese - inserting 1000 documents. first: Treasure: In Search of the Golden Horse and last: Sir Lamorak -[2018-02-13T08:20:11.183] [INFO] cheese - inserting 1000 documents. first: Category:Iboga and last: Lewesite -[2018-02-13T08:20:11.204] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:20:11.293] [INFO] cheese - inserting 1000 documents. first: A voros grofno and last: Wikipedia:WikiProject Taoism/Prospectus -[2018-02-13T08:20:11.330] [INFO] cheese - inserting 1000 documents. first: The Harrowed and last: Template:Goleniów County -[2018-02-13T08:20:11.381] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:20:11.431] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:20:11.475] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:20:11.475] [INFO] cheese - batch complete in: 2.833 secs -[2018-02-13T08:20:11.729] [INFO] cheese - inserting 1000 documents. first: Shake Sherry and last: Sphingidites weidneri -[2018-02-13T08:20:11.820] [INFO] cheese - inserting 1000 documents. first: Joe Barton (soccer) and last: 2009 swine flu outbreak in Spain -[2018-02-13T08:20:11.913] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:20:11.924] [INFO] cheese - inserting 1000 documents. first: Republic of Azawad and last: List of Asia's Next Top Model contestants -[2018-02-13T08:20:11.979] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:20:12.018] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:20:12.038] [INFO] cheese - inserting 1000 documents. first: American Society of Microbiology and last: Artemisia brittonii -[2018-02-13T08:20:12.115] [INFO] cheese - inserting 1000 documents. first: The Moment of Truth (disambiguation) and last: Nováčany -[2018-02-13T08:20:12.120] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:20:12.213] [INFO] cheese - inserting 1000 documents. first: Portal:Television/Selected picture/8 and last: 9984 Gregbryant -[2018-02-13T08:20:12.255] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:20:12.363] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:20:12.628] [INFO] cheese - inserting 1000 documents. first: Huyện and last: Kimball (piano) -[2018-02-13T08:20:12.628] [INFO] cheese - inserting 1000 documents. first: Cathal Cregg and last: Adenoid cyctic carcinoma -[2018-02-13T08:20:12.722] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:20:12.789] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:20:12.842] [INFO] cheese - inserting 1000 documents. first: 1027 in poetry and last: File:Jack's Heroes.jpg -[2018-02-13T08:20:12.946] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:20:13.114] [INFO] cheese - inserting 1000 documents. first: Brazier hieroglyph and last: Wikipedia:Articles for deletion/BC logging road etiquette -[2018-02-13T08:20:13.181] [INFO] cheese - inserting 1000 documents. first: The Last Resort (Australian TV series) and last: Isaac ben Asher ha-Levi -[2018-02-13T08:20:13.191] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:20:13.324] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:20:13.451] [INFO] cheese - inserting 1000 documents. first: Panama at the Olympics and last: Category:Health in Paraguay -[2018-02-13T08:20:13.476] [INFO] cheese - inserting 1000 documents. first: Template:Japan-church-stub and last: Bus conductors -[2018-02-13T08:20:13.600] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:20:13.657] [INFO] cheese - inserting 1000 documents. first: Sm2bat and last: Prudential Regulatory Authority (disambiguation) -[2018-02-13T08:20:13.660] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:20:13.741] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:20:13.755] [INFO] cheese - inserting 1000 documents. first: Pano Koutrafas and last: New Great Game -[2018-02-13T08:20:13.860] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:20:13.974] [INFO] cheese - inserting 1000 documents. first: Robert Burnham and last: National Trade Union Congress of Belize -[2018-02-13T08:20:14.248] [INFO] cheese - batch complete in: 2.772 secs -[2018-02-13T08:20:14.335] [INFO] cheese - inserting 1000 documents. first: Template:Cork Hurling Team 2005 and last: Electronic Classroom -[2018-02-13T08:20:14.467] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:20:14.524] [INFO] cheese - inserting 1000 documents. first: Dog Days (anime) and last: Category:States and territories disestablished in 1547 -[2018-02-13T08:20:14.635] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:20:14.826] [INFO] cheese - inserting 1000 documents. first: Amo non amo and last: Swimmer (film) -[2018-02-13T08:20:14.839] [INFO] cheese - inserting 1000 documents. first: Bifrenaria vitellina and last: Jan Wladyslaw Dawid -[2018-02-13T08:20:14.857] [INFO] cheese - inserting 1000 documents. first: Category:Numic languages and last: San Bernardino Air Material Area -[2018-02-13T08:20:14.875] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T08:20:14.890] [INFO] cheese - inserting 1000 documents. first: File:Dreams (High and Mighty Color single - cover art).jpg and last: Category:Olympic Nordic combined skiers of the Czech Republic -[2018-02-13T08:20:14.958] [INFO] cheese - batch complete in: 1.766 secs -[2018-02-13T08:20:15.029] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:20:15.037] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:20:15.269] [INFO] cheese - inserting 1000 documents. first: Victor Vito (disambiguation) and last: Billy Ollis -[2018-02-13T08:20:15.284] [INFO] cheese - inserting 1000 documents. first: Category:Indo-European deities and last: Izuhara domain -[2018-02-13T08:20:15.330] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:20:15.433] [INFO] cheese - inserting 1000 documents. first: Modern expressionism and last: File:Rockwell.jpg -[2018-02-13T08:20:15.440] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:20:15.452] [INFO] cheese - inserting 1000 documents. first: Rain (Joe Jackson album) and last: Akademie der bildenden Künste, München -[2018-02-13T08:20:15.541] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:20:15.544] [INFO] cheese - inserting 1000 documents. first: Telecommunications in South Africa and last: Silesian Voivodeship -[2018-02-13T08:20:15.539] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:20:15.657] [INFO] cheese - inserting 1000 documents. first: The Museum of Modern Art, Gunma and last: Brandon Eric Guyer -[2018-02-13T08:20:15.708] [INFO] cheese - inserting 1000 documents. first: Anind Dey and last: Bridport F C -[2018-02-13T08:20:15.769] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:20:15.791] [INFO] cheese - inserting 1000 documents. first: Stubomycin and last: San Juan Colorado -[2018-02-13T08:20:15.886] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:20:15.937] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:20:16.017] [INFO] cheese - batch complete in: 5.233 secs -[2018-02-13T08:20:16.019] [INFO] cheese - inserting 1000 documents. first: Tête de l'Enchastraye and last: Category:People from Boyne City, Michigan -[2018-02-13T08:20:16.105] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:20:16.147] [INFO] cheese - inserting 1000 documents. first: ર and last: Anaxandridas I -[2018-02-13T08:20:16.218] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:20:16.252] [INFO] cheese - inserting 1000 documents. first: Fatih Tekke and last: Lord Lewis of Newnham -[2018-02-13T08:20:16.295] [INFO] cheese - inserting 1000 documents. first: Harbutowice, Silesian Voivodeship and last: Category:2008 in Cuba -[2018-02-13T08:20:16.341] [INFO] cheese - inserting 1000 documents. first: Neuroendocrine cells and last: Joe Lydon (boxer) -[2018-02-13T08:20:16.374] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:20:16.407] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:20:16.446] [INFO] cheese - inserting 1000 documents. first: Kevin James Kiermaier and last: Floyd County John Doe -[2018-02-13T08:20:16.480] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:20:16.579] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:20:16.667] [INFO] cheese - inserting 1000 documents. first: American Treasures and last: List of political parties in Ukraine -[2018-02-13T08:20:16.751] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:20:16.770] [INFO] cheese - inserting 1000 documents. first: San Juan Comaltepec and last: Sergio Ferrer -[2018-02-13T08:20:16.886] [INFO] cheese - inserting 1000 documents. first: Category:Canadian anatomists and last: Abdullahpur Underpass -[2018-02-13T08:20:16.905] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:20:17.008] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:20:17.102] [INFO] cheese - inserting 1000 documents. first: File:Dvd seemabaddha sat.jpg and last: Deadman Bay -[2018-02-13T08:20:17.169] [INFO] cheese - inserting 1000 documents. first: Felix, Edler von Munzberg Weingartner and last: Wood County, WI -[2018-02-13T08:20:17.179] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:20:17.243] [INFO] cheese - inserting 1000 documents. first: Simon Cooper (disambiguation) and last: Rakhi Kapoor Tandon -[2018-02-13T08:20:17.271] [INFO] cheese - inserting 1000 documents. first: Messiano and last: Ladies' Gaelic Football Association -[2018-02-13T08:20:17.283] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:20:17.329] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:17.404] [INFO] cheese - inserting 1000 documents. first: Lord Tonga Tu'i'afitu and last: 2011–12 Minnesota Wild season -[2018-02-13T08:20:17.400] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:20:17.464] [INFO] cheese - inserting 1000 documents. first: History of gujarat and last: File:WisCongMap1983.jpg -[2018-02-13T08:20:17.502] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T08:20:17.501] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:17.690] [INFO] cheese - inserting 1000 documents. first: Banana Joe V Tani Kazari and last: Category:1991 in Dutch sport -[2018-02-13T08:20:17.700] [INFO] cheese - inserting 1000 documents. first: War Angel (album) and last: Santiago Amoltepec -[2018-02-13T08:20:17.786] [INFO] cheese - inserting 1000 documents. first: History of the jews during world war ii and last: Homosexual readings of jesus and john -[2018-02-13T08:20:17.787] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:20:17.808] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:20:17.836] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in Niue and last: Murlida fraterna -[2018-02-13T08:20:17.855] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T08:20:17.956] [INFO] cheese - inserting 1000 documents. first: Wood Dale, IL and last: File:Catjudging.jpg -[2018-02-13T08:20:18.003] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:20:18.054] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:20:18.222] [INFO] cheese - inserting 1000 documents. first: Robin Kovař and last: Alpineum -[2018-02-13T08:20:18.258] [INFO] cheese - inserting 1000 documents. first: Al-Baqara 256 and last: Emmanuel Christopher Loblack (E.C. Loblack) -[2018-02-13T08:20:18.329] [INFO] cheese - inserting 1000 documents. first: Homosexuality and anglicanism and last: House of sponheim -[2018-02-13T08:20:18.340] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:20:18.358] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:20:18.399] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:20:18.465] [INFO] cheese - inserting 1000 documents. first: Katarki, Bilagi and last: Hadiya Pendelton -[2018-02-13T08:20:18.541] [INFO] cheese - inserting 1000 documents. first: Sigma Draconis IV and last: Apaganum-like Epidendrum -[2018-02-13T08:20:18.563] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:20:18.659] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:20:18.677] [INFO] cheese - inserting 1000 documents. first: Regiment Oos Rand and last: Jean-François Yvon -[2018-02-13T08:20:18.748] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:20:18.825] [INFO] cheese - inserting 1000 documents. first: House of stairs and last: Hymns and psalms -[2018-02-13T08:20:18.856] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:20:18.949] [INFO] cheese - inserting 1000 documents. first: Category:Costa Rican Roman Catholic bishops and last: Făgeţel River (Bistriţa) -[2018-02-13T08:20:19.013] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:20:19.123] [INFO] cheese - inserting 1000 documents. first: FMES/SFA and last: Powell Panthers football -[2018-02-13T08:20:19.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Maps of Korea/Old and last: Nils Johanson -[2018-02-13T08:20:19.175] [INFO] cheese - inserting 1000 documents. first: Members of the Lok Sabha and last: Category:17th-century establishments in France -[2018-02-13T08:20:19.179] [INFO] cheese - inserting 1000 documents. first: File:Naomi Kelly90210.jpg and last: Haruo Inoue -[2018-02-13T08:20:19.236] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:20:19.226] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:20:19.287] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:20:19.306] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:20:19.378] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from Boston and last: Doina Şnep-Bălan -[2018-02-13T08:20:19.419] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:20:19.441] [INFO] cheese - inserting 1000 documents. first: Hymns and spiritual songs and last: Ceric sulfate -[2018-02-13T08:20:19.548] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:20:19.566] [INFO] cheese - inserting 1000 documents. first: SECD machine and last: 2001 Tour de France -[2018-02-13T08:20:19.661] [INFO] cheese - inserting 1000 documents. first: Vyckie Garrison and last: Morbakka -[2018-02-13T08:20:19.700] [INFO] cheese - inserting 1000 documents. first: Cornel Nemţoc and last: Topliţa River (Caraş) -[2018-02-13T08:20:19.745] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:20:19.771] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T08:20:19.802] [INFO] cheese - batch complete in: 3.785 secs -[2018-02-13T08:20:19.906] [INFO] cheese - inserting 1000 documents. first: Category:Freeform (TV channel) and last: Wikipedia:MORIBUND -[2018-02-13T08:20:19.911] [INFO] cheese - inserting 1000 documents. first: USS Seagrape (YN-90) and last: Category:Science museums in New Jersey -[2018-02-13T08:20:19.914] [INFO] cheese - inserting 1000 documents. first: Fuel And Sensor Tactical packs and last: Jantzen & Thormählen -[2018-02-13T08:20:20.007] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:20:20.022] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:20:20.022] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:20:20.071] [INFO] cheese - inserting 1000 documents. first: Brahminism and last: SS Naronic -[2018-02-13T08:20:20.223] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:20:20.236] [INFO] cheese - inserting 1000 documents. first: Refusés and last: Иatural (Orange Range album) -[2018-02-13T08:20:20.237] [INFO] cheese - inserting 1000 documents. first: Topliţa River (Timiş) and last: Ionuţ Dan Ion -[2018-02-13T08:20:20.289] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:20.309] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:20:20.354] [INFO] cheese - inserting 1000 documents. first: Category:International volleyball competitions hosted by Austria and last: South Eastern main line diagram -[2018-02-13T08:20:20.417] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:20:20.626] [INFO] cheese - inserting 1000 documents. first: Kandou and last: Category:1843 in the United States -[2018-02-13T08:20:20.687] [INFO] cheese - inserting 1000 documents. first: 1859 in philosophy and last: Mario and Luigi Dream Team -[2018-02-13T08:20:20.699] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:20:20.759] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:20:20.787] [INFO] cheese - inserting 1000 documents. first: Patrick the Great and last: Kirche 2011: Ein notwendiger Aufbruch -[2018-02-13T08:20:20.842] [INFO] cheese - inserting 1000 documents. first: Heinz Strobl and last: Verizon Wireless Amphitheater Charlotte -[2018-02-13T08:20:20.977] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:20:20.990] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:20:21.168] [INFO] cheese - inserting 1000 documents. first: Yonatan Revivo and last: CK Thakker -[2018-02-13T08:20:21.208] [INFO] cheese - inserting 1000 documents. first: Ferdinand Bilali and last: Floored division -[2018-02-13T08:20:21.275] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:20:21.319] [INFO] cheese - inserting 1000 documents. first: Sălcioara, Dâmboviţa and last: Şovarna -[2018-02-13T08:20:21.322] [INFO] cheese - inserting 1000 documents. first: Hemorroids and last: Newport railway station -[2018-02-13T08:20:21.339] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:20:21.404] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:20:21.537] [INFO] cheese - inserting 1000 documents. first: Fimbristylis vahlii and last: Robert Martin (basketball player) -[2018-02-13T08:20:21.599] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:20:21.701] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:20:21.795] [INFO] cheese - inserting 1000 documents. first: CL Barnhouse Company and last: Clipstone Welfare F C -[2018-02-13T08:20:21.853] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:20:21.892] [INFO] cheese - inserting 1000 documents. first: Jugaloe and last: Cool "Gator" -[2018-02-13T08:20:21.912] [INFO] cheese - inserting 1000 documents. first: University of Paris 6 and last: Template:User WP Macedonia/doc -[2018-02-13T08:20:21.916] [INFO] cheese - inserting 1000 documents. first: Sky Jockey and last: Drahnov -[2018-02-13T08:20:21.963] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:20:22.036] [INFO] cheese - inserting 1000 documents. first: File:Land and Shade poster.jpg and last: Category:Populated places in the Regional Municipality of Halton -[2018-02-13T08:20:22.038] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:20:22.048] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:20:22.163] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:22.280] [INFO] cheese - inserting 1000 documents. first: Book:Algebraic Mathematics and Logics and last: Philip Henry Christopher Jackson -[2018-02-13T08:20:22.346] [INFO] cheese - inserting 1000 documents. first: Clipstone Welfare F. C. and last: Hyperpolarization-activated cyclic nucleotide-gated potassium channel -[2018-02-13T08:20:22.434] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:20:22.444] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:20:22.550] [INFO] cheese - inserting 1000 documents. first: Rhythmic Airplay Chart and last: Fuscapex talismani -[2018-02-13T08:20:22.609] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:20:22.803] [INFO] cheese - inserting 1000 documents. first: Thjorsa and last: Type 93 surface-to-air missile -[2018-02-13T08:20:22.807] [INFO] cheese - inserting 1000 documents. first: D H Asson and last: Not of This World (film) -[2018-02-13T08:20:22.833] [INFO] cheese - inserting 1000 documents. first: Malcolm Root and last: Dragan Kresoja -[2018-02-13T08:20:22.855] [INFO] cheese - inserting 1000 documents. first: The Blake Project: Spring and last: Agutaynen -[2018-02-13T08:20:22.894] [INFO] cheese - inserting 1000 documents. first: 2014 independence referendum and last: Valea Şindrilelor River -[2018-02-13T08:20:22.922] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:20:22.954] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T08:20:22.958] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:20:22.959] [INFO] cheese - inserting 1000 documents. first: Art valuation and last: Category:Sanskrit scholars -[2018-02-13T08:20:22.971] [INFO] cheese - inserting 1000 documents. first: Template:Adminstats/Chrislk02 and last: Wikipedia:WikiProject Directory/Description/WikiProject Beauty Pageants -[2018-02-13T08:20:22.972] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:20:22.981] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:20:23.089] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:20:23.157] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:20:23.259] [INFO] cheese - inserting 1000 documents. first: Bodovlje Mass Grave and last: Finiş River -[2018-02-13T08:20:23.300] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T08:20:23.387] [INFO] cheese - inserting 1000 documents. first: Daniel I J Thornton and last: Portal:Journalism/Selected quote/5 -[2018-02-13T08:20:23.510] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:20:23.645] [INFO] cheese - inserting 1000 documents. first: Alhambra and last: Ulster -[2018-02-13T08:20:23.680] [INFO] cheese - inserting 1000 documents. first: Henry D'Avigdor-Goldsmid and last: Hafnia (bacteria) -[2018-02-13T08:20:23.715] [INFO] cheese - inserting 1000 documents. first: Gianni and the Ogre and last: Parinibbāna -[2018-02-13T08:20:23.730] [INFO] cheese - inserting 1000 documents. first: South Africa national futsal team and last: Diarthropus -[2018-02-13T08:20:23.759] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:20:23.801] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Bedfordshire and last: Wikipedia:Related WikiProjects/GLAM/Balboa Park -[2018-02-13T08:20:23.805] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:23.819] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:20:23.908] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:20:23.943] [INFO] cheese - inserting 1000 documents. first: Bek David Campbell and last: Triatominae -[2018-02-13T08:20:23.976] [INFO] cheese - batch complete in: 4.174 secs -[2018-02-13T08:20:24.083] [INFO] cheese - inserting 1000 documents. first: Finişel River and last: Kregar Ravine 3 Mass Grave -[2018-02-13T08:20:24.093] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:20:24.225] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:20:24.400] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Animation/Machinima work group and last: Wikipedia:Related WikiProjects/WikiProject Meteorology -[2018-02-13T08:20:24.408] [INFO] cheese - inserting 1000 documents. first: File:DalmacijaSrbi.JPG and last: Browning Road Park, Banbury -[2018-02-13T08:20:24.424] [INFO] cheese - inserting 1000 documents. first: DN-galan and last: Phyllorkis inaequalis -[2018-02-13T08:20:24.444] [INFO] cheese - inserting 1000 documents. first: Daphinia and last: Margaret I, Countess of Hainaut -[2018-02-13T08:20:24.471] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:20:24.579] [INFO] cheese - inserting 1000 documents. first: File:Benson-logo.PNG and last: Stacy Wilson -[2018-02-13T08:20:24.559] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:20:24.599] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:20:24.635] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:20:24.803] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:20:24.978] [INFO] cheese - inserting 1000 documents. first: Template:Borough of Ribble Valley and last: Portal:Bollywood/Selected article/17 -[2018-02-13T08:20:25.073] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:20:25.237] [INFO] cheese - inserting 1000 documents. first: Harshi Mad and last: Allescheria boydii -[2018-02-13T08:20:25.376] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:20:25.406] [INFO] cheese - inserting 1000 documents. first: Duroplast and last: Ralph Lawler -[2018-02-13T08:20:25.557] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:20:25.637] [INFO] cheese - inserting 1000 documents. first: Smith Building and last: F.C. Internazionale Milano season 2009-10 -[2018-02-13T08:20:25.660] [INFO] cheese - inserting 1000 documents. first: Portal:Australian cars/Selected biography/1 and last: Steve Hunt -[2018-02-13T08:20:25.724] [INFO] cheese - inserting 1000 documents. first: Johannes Ronge and last: State Route 143 (Virginia 1923-1928) -[2018-02-13T08:20:25.730] [INFO] cheese - inserting 1000 documents. first: Ster van Zwolle and last: Prognostic chart -[2018-02-13T08:20:25.735] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:20:25.790] [INFO] cheese - inserting 1000 documents. first: File:Badger Cub Feeding.jpg and last: Gabriele Basilico -[2018-02-13T08:20:25.809] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:20:25.875] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T08:20:25.994] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:20:26.089] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:20:26.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject U.S. Roads/Ohio and last: Samguk Yusa -[2018-02-13T08:20:26.336] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:20:26.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Outline of Knowlege and last: Template:User bo-0 -[2018-02-13T08:20:26.651] [INFO] cheese - inserting 1000 documents. first: Category:Hydroelectricity in Malawi and last: Category:Fletcher-class destroyers of the Peruvian Navy -[2018-02-13T08:20:26.703] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Selected picture/Month 01, 2008 and last: Portal:Tropical cyclones/Featured article/Tropical Storm Ana (2003) -[2018-02-13T08:20:26.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Peneda-Gerês National Park/archive1 and last: Polet Airlines -[2018-02-13T08:20:26.715] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:20:26.736] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:20:26.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Adjectives in your votes and last: Serbian Orthodox Diocese of Eastern America -[2018-02-13T08:20:26.884] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:20:26.922] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:20:26.921] [INFO] cheese - inserting 1000 documents. first: State Route 392 (Virginia 1923-1928) and last: Yinhe Li -[2018-02-13T08:20:26.947] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:20:27.074] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:20:27.175] [INFO] cheese - inserting 1000 documents. first: Anthony stewart head and last: Wikipedia:Articles for deletion/OWSLA -[2018-02-13T08:20:27.311] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:20:27.438] [INFO] cheese - inserting 1000 documents. first: Template:Chief Ministers of Indian States and last: Lrytas.lt -[2018-02-13T08:20:27.596] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:20:27.631] [INFO] cheese - inserting 1000 documents. first: Jean Berthoin and last: Category:Chinese art critics -[2018-02-13T08:20:27.720] [INFO] cheese - inserting 1000 documents. first: Rosoxacin and last: West Covina, Ca -[2018-02-13T08:20:27.722] [INFO] cheese - inserting 1000 documents. first: PP-90M1 and last: 2011 Challenger DCNS de Cherbourg – Doubles -[2018-02-13T08:20:27.749] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:20:27.826] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:20:27.840] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:20:27.992] [INFO] cheese - inserting 1000 documents. first: Category:Male dancers from Northern Ireland and last: Epijana cinerea -[2018-02-13T08:20:27.999] [INFO] cheese - inserting 1000 documents. first: The Lovehammers and last: IntCodec -[2018-02-13T08:20:28.056] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:20:28.117] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:20:28.142] [INFO] cheese - inserting 1000 documents. first: Radical politics and last: Creole English -[2018-02-13T08:20:28.273] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:20:28.335] [INFO] cheese - inserting 1000 documents. first: United States Internal Revenue Service and last: William the Conqueror -[2018-02-13T08:20:28.355] [INFO] cheese - inserting 1000 documents. first: Ymir Vigfusson and last: Micromax A116 Canvas HD -[2018-02-13T08:20:28.460] [INFO] cheese - inserting 1000 documents. first: Catasetum saccatum var. eusaccatum and last: File:Jpba-logov.png -[2018-02-13T08:20:28.467] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:20:28.567] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:20:28.608] [INFO] cheese - inserting 1000 documents. first: WRDW (AM) and last: Ovacue -[2018-02-13T08:20:28.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Florida/Userbox and last: William Osborne (umpire) -[2018-02-13T08:20:28.618] [INFO] cheese - inserting 1000 documents. first: Alpine laurel and last: Edwin Maxwell (attorney general) -[2018-02-13T08:20:28.629] [INFO] cheese - batch complete in: 4.652 secs -[2018-02-13T08:20:28.696] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:20:28.708] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:20:28.753] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:20:28.906] [INFO] cheese - inserting 1000 documents. first: Paradise Independent School District and last: Phazotron -[2018-02-13T08:20:29.004] [INFO] cheese - inserting 1000 documents. first: Category:Habsburg-class battleships and last: File:Crash Time 2 Cover.jpg -[2018-02-13T08:20:29.021] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:29.129] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:20:29.304] [INFO] cheese - inserting 1000 documents. first: Monestary and last: Station Casinos -[2018-02-13T08:20:29.393] [INFO] cheese - inserting 1000 documents. first: Churches in Omaha and last: Chatom, Al -[2018-02-13T08:20:29.483] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:20:29.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lepseut.blogspot.com and last: Andreevo -[2018-02-13T08:20:29.664] [INFO] cheese - inserting 1000 documents. first: Corinthia (peripheral unit) and last: Olav Skjevesland -[2018-02-13T08:20:29.728] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:20:29.783] [INFO] cheese - inserting 1000 documents. first: Cattleya warneri var. semialba and last: BMW R80G/S Paris-Dakar -[2018-02-13T08:20:29.828] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:20:29.902] [INFO] cheese - batch complete in: 1.206 secs -[2018-02-13T08:20:29.974] [INFO] cheese - inserting 1000 documents. first: Category:Burials in County Cork and last: Killer (role-playing game) -[2018-02-13T08:20:30.022] [INFO] cheese - batch complete in: 1.455 secs -[2018-02-13T08:20:30.119] [INFO] cheese - inserting 1000 documents. first: 1996 in Luxembourg and last: Breast prostheses -[2018-02-13T08:20:30.109] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:20:30.347] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:20:30.568] [INFO] cheese - inserting 1000 documents. first: Leslie-Alford-Mims House and last: File:Two-Face (DC Animated Universe).png -[2018-02-13T08:20:30.663] [INFO] cheese - inserting 1000 documents. first: Chelsea, Al and last: John Hyde (Australian federal politician) -[2018-02-13T08:20:30.729] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:20:30.846] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:20:30.900] [INFO] cheese - inserting 1000 documents. first: Bazna pig and last: Alqadhafi -[2018-02-13T08:20:31.017] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:20:31.021] [INFO] cheese - inserting 1000 documents. first: Gang Banged with a Headache, and Live and last: Perkins Street (MBTA station) -[2018-02-13T08:20:31.081] [INFO] cheese - inserting 1000 documents. first: Palazzo della Cancelleria and last: Northern Chorus -[2018-02-13T08:20:31.105] [INFO] cheese - inserting 1000 documents. first: Yelizaveta Andreyevna Lawrowska and last: Diodora -[2018-02-13T08:20:31.186] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:20:31.246] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:20:31.269] [INFO] cheese - inserting 1000 documents. first: Phil Gartside and last: David Davis National Historic Landmark -[2018-02-13T08:20:31.336] [INFO] cheese - batch complete in: 1.853 secs -[2018-02-13T08:20:31.448] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:20:31.539] [INFO] cheese - inserting 1000 documents. first: Hecate et ses chiens and last: 9990s -[2018-02-13T08:20:31.595] [INFO] cheese - inserting 1000 documents. first: File:Badge of Wah Yan College, Hong Kong.svg and last: File:Very best of.jpg -[2018-02-13T08:20:31.672] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:20:31.750] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:20:31.776] [INFO] cheese - inserting 1000 documents. first: Flirting with Twilight and last: Template:User Papua New Guinea -[2018-02-13T08:20:31.893] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:20:32.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dermot Gascoyne and last: Rapid transit in China -[2018-02-13T08:20:32.105] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:20:32.125] [INFO] cheese - inserting 1000 documents. first: Ray Trowbridge and last: The Beast (2009 TV series) -[2018-02-13T08:20:32.263] [INFO] cheese - inserting 1000 documents. first: EH Crump and last: F S Bell -[2018-02-13T08:20:32.271] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:20:32.346] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:20:32.525] [INFO] cheese - inserting 1000 documents. first: Rose madder and last: Lasara Independent School District -[2018-02-13T08:20:32.640] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz M103 and last: Orochon -[2018-02-13T08:20:32.659] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:20:32.707] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic ecclesiastical provinces in Algeria and last: Bill Jordan (trade unionist) -[2018-02-13T08:20:32.710] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Côte-Nord and last: Wikipedia:WikiProject Directory/Description/WikiProject Equine -[2018-02-13T08:20:32.757] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T08:20:32.811] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:20:32.915] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:20:32.963] [INFO] cheese - inserting 1000 documents. first: SAP-VN and last: Fort D A Russell -[2018-02-13T08:20:33.041] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:20:33.141] [INFO] cheese - inserting 1000 documents. first: Chelonanthera miniata and last: Wikipedia:NK -[2018-02-13T08:20:33.169] [INFO] cheese - inserting 1000 documents. first: Category:United States Senate elections, 1810 and last: Ride on the Edge -[2018-02-13T08:20:33.189] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:20:33.261] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:20:33.457] [INFO] cheese - inserting 1000 documents. first: Muhajir Urdu and last: GFJ Dart -[2018-02-13T08:20:33.496] [INFO] cheese - inserting 1000 documents. first: WD postcode area and last: Blond Kouros's Head of the Acropolis -[2018-02-13T08:20:33.509] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:20:33.604] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:20:33.687] [INFO] cheese - inserting 1000 documents. first: United Nations Security Council Resolution 1618 and last: Category:Landforms of Sherman County, Oregon -[2018-02-13T08:20:33.706] [INFO] cheese - inserting 1000 documents. first: The Association of Congenital Diaphragmatic Hernia Research, Awareness and Support and last: Debub-Keih-Bahri Region -[2018-02-13T08:20:33.748] [INFO] cheese - inserting 1000 documents. first: Blue and white pottery and last: Tuscan Archipelago -[2018-02-13T08:20:33.798] [INFO] cheese - inserting 1000 documents. first: William II of England and last: AD 23 -[2018-02-13T08:20:33.831] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:20:33.911] [INFO] cheese - inserting 1000 documents. first: Category:Youth organisations based in Uruguay and last: Mt mary college -[2018-02-13T08:20:33.955] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:20:34.020] [INFO] cheese - inserting 1000 documents. first: Yuaytacondorsenja and last: Wikipedia:WikiProject Directory/Description/WikiProject Micronesia -[2018-02-13T08:20:34.035] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:20:34.110] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T08:20:34.224] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:20:34.252] [INFO] cheese - batch complete in: 5.623 secs -[2018-02-13T08:20:34.277] [INFO] cheese - inserting 1000 documents. first: GG Coulton and last: Pike Road, Al -[2018-02-13T08:20:34.373] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:20:34.574] [INFO] cheese - inserting 1000 documents. first: The Doug Wright Awards and last: Miracle Mile District -[2018-02-13T08:20:34.689] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:20:34.700] [INFO] cheese - inserting 1000 documents. first: Semenawi Keyih Bahri Region and last: 2009 Wimbledon Championships – Women's Doubles -[2018-02-13T08:20:34.846] [INFO] cheese - inserting 1000 documents. first: Mt mary and last: Hoel I, Duke of Brittany -[2018-02-13T08:20:34.879] [INFO] cheese - inserting 1000 documents. first: File:Filthy (Egyptian Lover album - cover art).jpg and last: Harvey Grammar School -[2018-02-13T08:20:34.892] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:20:35.007] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:20:35.036] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:20:35.185] [INFO] cheese - inserting 1000 documents. first: Greystones Town Council and last: Acleris tungurahuae -[2018-02-13T08:20:35.358] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:20:35.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Central America articles by quality/13 and last: Xenia, Oh -[2018-02-13T08:20:35.565] [INFO] cheese - inserting 1000 documents. first: Coordination failure (political science) and last: R378 road (South Africa) -[2018-02-13T08:20:35.631] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:20:35.656] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T08:20:35.689] [INFO] cheese - inserting 1000 documents. first: File:Kainos logo.jpg and last: Wikipedia:Contributor copyright investigations/Snigdhasinghsweet -[2018-02-13T08:20:35.724] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/laco.org and last: James Garfield Stewart -[2018-02-13T08:20:35.766] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pi.vu and last: Wikipedia:WikiProject Directory/Description/WikiProject Secret Societies -[2018-02-13T08:20:35.785] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:20:35.823] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:20:35.950] [INFO] cheese - inserting 1000 documents. first: 1933 Virginia state highway renumbering and last: Shane (B&B) -[2018-02-13T08:20:35.974] [INFO] cheese - batch complete in: 1.749 secs -[2018-02-13T08:20:36.108] [INFO] cheese - inserting 1000 documents. first: AD 24 and last: 1117 -[2018-02-13T08:20:36.109] [INFO] cheese - batch complete in: 1.42 secs -[2018-02-13T08:20:36.160] [INFO] cheese - inserting 1000 documents. first: Category:Tortricini and last: Spey River (Tasman) -[2018-02-13T08:20:36.174] [INFO] cheese - inserting 1000 documents. first: Gymnasium F C and last: Football (soccer) in Western Australia -[2018-02-13T08:20:36.243] [INFO] cheese - batch complete in: 1.991 secs -[2018-02-13T08:20:36.254] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:20:36.305] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:20:36.450] [INFO] cheese - inserting 1000 documents. first: Bunny Style! and last: Raymond Siday -[2018-02-13T08:20:36.514] [INFO] cheese - inserting 1000 documents. first: Vladimir Kobzev and last: Wells Fargo Securities -[2018-02-13T08:20:36.566] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:20:36.628] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:20:36.685] [INFO] cheese - inserting 1000 documents. first: Category:Green Line (MBTA) and last: Talking Voice vs. Singing Voice -[2018-02-13T08:20:36.744] [INFO] cheese - inserting 1000 documents. first: John Alnander and last: Wikipedia:Version 1.0 Editorial Team/Biography (politics and government) articles by quality/46 -[2018-02-13T08:20:36.828] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:20:36.853] [INFO] cheese - inserting 1000 documents. first: File:NovoBrdoWall2.jpg and last: File:The Creeps dvd cover.jpg -[2018-02-13T08:20:36.859] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:36.952] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:20:36.960] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Hernando de Soto Bridge Memphis.jpg and last: Wikipedia:Articles for deletion/Bloodhound Gang's fifth studio album -[2018-02-13T08:20:36.965] [INFO] cheese - inserting 1000 documents. first: Reading United AC and last: Wikipedia:WikiProject Spam/LinkReports/skynet.lk -[2018-02-13T08:20:37.036] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:20:37.090] [INFO] cheese - inserting 1000 documents. first: Siday and last: File:Distribution of professional opinion on anthropogenic climate change - by Tobis and Ban.jpg -[2018-02-13T08:20:37.094] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:20:37.180] [INFO] cheese - inserting 1000 documents. first: IPinkVisualpass.com and last: Death of Autotune -[2018-02-13T08:20:37.182] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:20:37.310] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:20:37.445] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (politics and government) articles by quality/47 and last: Wikipedia:Articles for deletion/DEVFS -[2018-02-13T08:20:37.531] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:20:37.542] [INFO] cheese - inserting 1000 documents. first: History of the Italians in Baltimore and last: Frend, William -[2018-02-13T08:20:37.642] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:20:37.707] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz W116 and last: Category:Indian weightlifters -[2018-02-13T08:20:37.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/skynet.lk and last: Lucas Cornelisz. -[2018-02-13T08:20:37.781] [INFO] cheese - inserting 1000 documents. first: Rock Island (Nunavut) and last: Ee Parakkum Thalika -[2018-02-13T08:20:37.800] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:20:37.804] [INFO] cheese - inserting 1000 documents. first: Anheuser and last: Stellorkis -[2018-02-13T08:20:37.818] [INFO] cheese - inserting 1000 documents. first: Category:Cuisine of Provence and last: José Miguel Pérez (disambiguation) -[2018-02-13T08:20:37.857] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:20:37.903] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:20:37.928] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:20:38.015] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:20:38.252] [INFO] cheese - inserting 1000 documents. first: Parvez Musharraf and last: Doggejávri -[2018-02-13T08:20:38.369] [INFO] cheese - inserting 1000 documents. first: Wiseman, William and last: Category:Residential buildings completed in the 10th century -[2018-02-13T08:20:38.409] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:20:38.433] [INFO] cheese - inserting 1000 documents. first: KAMB (disambiguation) and last: ௐ -[2018-02-13T08:20:38.510] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:20:38.563] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:20:38.586] [INFO] cheese - inserting 1000 documents. first: 1118 and last: Fallopia japonica -[2018-02-13T08:20:38.626] [INFO] cheese - inserting 1000 documents. first: LiteFoot ATV and last: Weak in the Presence of Beauty (album) -[2018-02-13T08:20:38.703] [INFO] cheese - inserting 1000 documents. first: Category:People from Haveri and last: NRHP in Wasco County -[2018-02-13T08:20:38.704] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:38.740] [INFO] cheese - inserting 1000 documents. first: Orach Hayyim and last: (aq) -[2018-02-13T08:20:38.795] [INFO] cheese - batch complete in: 2.549 secs -[2018-02-13T08:20:38.839] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:38.855] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:20:38.931] [INFO] cheese - inserting 1000 documents. first: Wilhelm Fliess and last: Category:Catholic Church in North America -[2018-02-13T08:20:39.130] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:20:39.302] [INFO] cheese - inserting 1000 documents. first: Category:Residential buildings completed in the 11th century and last: When contact changes minds: An experiment on transmission of support for gay equality -[2018-02-13T08:20:39.304] [INFO] cheese - inserting 1000 documents. first: Ports of Öland and last: J. W. Alexander (musician) -[2018-02-13T08:20:39.320] [INFO] cheese - inserting 1000 documents. first: Party-led mediation and last: Maconaquah High School -[2018-02-13T08:20:39.440] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:20:39.448] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:20:39.534] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:20:39.737] [INFO] cheese - inserting 1000 documents. first: Template:Honduras squad 2009 CONCACAF Gold Cup and last: 1920 American Cup -[2018-02-13T08:20:39.866] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:20:40.041] [INFO] cheese - inserting 1000 documents. first: Jakub Krupa and last: Amanieu II -[2018-02-13T08:20:40.204] [INFO] cheese - inserting 1000 documents. first: Ana María Simo and last: Template:Magoffin County, Kentucky -[2018-02-13T08:20:40.221] [INFO] cheese - batch complete in: 1.517 secs -[2018-02-13T08:20:40.310] [INFO] cheese - inserting 1000 documents. first: File:"This Man Is News" (1938).jpg and last: File:Diego Velázquez - The Three Musicians - Google Art Project.jpg -[2018-02-13T08:20:40.401] [INFO] cheese - inserting 1000 documents. first: Sexual abuse in Haiti and last: Category:LGBT mayors of places in Canada -[2018-02-13T08:20:40.435] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:20:40.492] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:20:40.517] [INFO] cheese - batch complete in: 1.677 secs -[2018-02-13T08:20:40.540] [INFO] cheese - inserting 1000 documents. first: Coarse woody habitat and last: Caps lock button -[2018-02-13T08:20:40.587] [INFO] cheese - inserting 1000 documents. first: Category:Grand Prix teams and last: Junctional complexes -[2018-02-13T08:20:40.806] [INFO] cheese - batch complete in: 1.667 secs -[2018-02-13T08:20:40.816] [INFO] cheese - inserting 1000 documents. first: Marial, Oregon and last: Gadolinium-153 -[2018-02-13T08:20:40.822] [INFO] cheese - batch complete in: 1.288 secs -[2018-02-13T08:20:40.957] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:20:41.420] [INFO] cheese - inserting 1000 documents. first: Tehran Mehrabad Airport and last: Transportes Urbanos de Vitoria -[2018-02-13T08:20:41.505] [INFO] cheese - inserting 1000 documents. first: Category:Education in Grant County, Wisconsin and last: Category:Buildings and structures in Lafayette County, Wisconsin -[2018-02-13T08:20:41.508] [INFO] cheese - inserting 1000 documents. first: Meliorator Chimkent and last: Draft:Stephanie Bond-Author -[2018-02-13T08:20:41.531] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:20:41.626] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:20:41.668] [INFO] cheese - batch complete in: 1.447 secs -[2018-02-13T08:20:41.686] [INFO] cheese - inserting 1000 documents. first: Dawn (ballet) and last: Punto y Hora -[2018-02-13T08:20:41.801] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:20:41.870] [INFO] cheese - inserting 1000 documents. first: G. A. Kolkhorst and last: 300 BC in Ireland -[2018-02-13T08:20:41.899] [INFO] cheese - inserting 1000 documents. first: Bill Easley and last: File:Irina Reaching.jpg -[2018-02-13T08:20:41.991] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:20:42.026] [INFO] cheese - batch complete in: 1.508 secs -[2018-02-13T08:20:42.149] [INFO] cheese - inserting 1000 documents. first: Meurig ap Hywel and last: Category:2013 in Uganda -[2018-02-13T08:20:42.233] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:20:42.258] [INFO] cheese - inserting 1000 documents. first: Soccer AM's AllSports Show and last: Template:Switzerland-election-stub -[2018-02-13T08:20:42.268] [INFO] cheese - inserting 1000 documents. first: Jack Soble and last: List of Malcolm in the Middle episodes -[2018-02-13T08:20:42.329] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:20:42.361] [INFO] cheese - inserting 1000 documents. first: Richar, Duke of Lower Lotharingia and last: Category:1925 in labour relations -[2018-02-13T08:20:42.378] [INFO] cheese - inserting 1000 documents. first: Rubidium-83 and last: Wikipedia:Arbitration Committee/Agenda/Calendar/10 August 2009 -[2018-02-13T08:20:42.401] [INFO] cheese - batch complete in: 1.595 secs -[2018-02-13T08:20:42.522] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:20:42.541] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:20:42.554] [INFO] cheese - inserting 1000 documents. first: English mythology and last: Telugu language -[2018-02-13T08:20:42.602] [INFO] cheese - inserting 1000 documents. first: Precision guidance and last: Ernest Hemingway House -[2018-02-13T08:20:42.673] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Noahcs/Userboxes/Vince Foster and last: Wikipedia:WikiProject Spam/LinkReports/runtrackdir.com -[2018-02-13T08:20:42.687] [INFO] cheese - inserting 1000 documents. first: Provisional Siberian Government (Vologodskii) and last: Portal:Atlantic Coast Conference/Selected biography/Layout -[2018-02-13T08:20:42.702] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:20:42.816] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:20:42.840] [INFO] cheese - batch complete in: 4.043 secs -[2018-02-13T08:20:42.866] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:20:42.959] [INFO] cheese - inserting 1000 documents. first: Tellurium-110 and last: Antimony-111 -[2018-02-13T08:20:43.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject on open proxies/Archives/Unblock/2011/March and last: File:TalkinBoutMen.jpg -[2018-02-13T08:20:43.059] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:43.129] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:20:43.250] [INFO] cheese - inserting 1000 documents. first: Tenant McLanahan and last: Domestic Terrorism -[2018-02-13T08:20:43.277] [INFO] cheese - inserting 1000 documents. first: Category:1926 in labour relations and last: The Cheerful Cherub -[2018-02-13T08:20:43.287] [INFO] cheese - inserting 1000 documents. first: SS Henry R. Schoolcraft and last: Niimi Station -[2018-02-13T08:20:43.359] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:20:43.391] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:20:43.410] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:20:43.530] [INFO] cheese - inserting 1000 documents. first: Thomas A. Greene Memorial Museum and last: Algenib in Perseus -[2018-02-13T08:20:43.542] [INFO] cheese - inserting 1000 documents. first: Antimony-112 and last: Kaduvettividuthy -[2018-02-13T08:20:43.546] [INFO] cheese - inserting 1000 documents. first: File:2013 WAC Basketball Tournament Logo.jpg and last: Troubador Press -[2018-02-13T08:20:43.608] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:20:43.648] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:20:43.699] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:20:43.898] [INFO] cheese - inserting 1000 documents. first: Troels Jørgensen and last: Thore Boye -[2018-02-13T08:20:44.010] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:20:44.172] [INFO] cheese - inserting 1000 documents. first: Spinal v nucleus and last: Gmina Trzebielino -[2018-02-13T08:20:44.227] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:20:44.330] [INFO] cheese - inserting 1000 documents. first: Like a River Runs and last: Durgakund Temple -[2018-02-13T08:20:44.359] [INFO] cheese - inserting 1000 documents. first: Timothy R. Parsons and last: Wikipedia:Articles for deletion/Dalian Plant -[2018-02-13T08:20:44.374] [INFO] cheese - inserting 1000 documents. first: Lovers (song) and last: CO3 -[2018-02-13T08:20:44.385] [INFO] cheese - inserting 1000 documents. first: ¿Dónde Están Mis Amigos? and last: ISO 639:bjm -[2018-02-13T08:20:44.422] [INFO] cheese - inserting 1000 documents. first: Tenryukyo Station and last: Institute of Statistical Research and Training -[2018-02-13T08:20:44.461] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:20:44.503] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:20:44.520] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:20:44.570] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:20:44.643] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:20:44.778] [INFO] cheese - inserting 1000 documents. first: Halesowen Town FC and last: L-Valine -[2018-02-13T08:20:44.819] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:20:44.916] [INFO] cheese - inserting 1000 documents. first: Al hindawiyah and last: Category:Parr family -[2018-02-13T08:20:44.964] [INFO] cheese - inserting 1000 documents. first: Udgaon gram panchayat and last: ISO 639:dhl -[2018-02-13T08:20:44.979] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:20:45.027] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:20:45.179] [INFO] cheese - inserting 1000 documents. first: Surval Montreux and last: Category:Frazioni of the Province of Pistoia -[2018-02-13T08:20:45.187] [INFO] cheese - inserting 1000 documents. first: Historical US Census Totals for Belknap County, New Hampshire and last: ILY ~Yokubou~ -[2018-02-13T08:20:45.224] [INFO] cheese - inserting 1000 documents. first: The weather in Oxford and last: Email Service Provider -[2018-02-13T08:20:45.226] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:20:45.258] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:20:45.273] [INFO] cheese - inserting 1000 documents. first: Miss World 1983 and last: List of castles and fortresses in Switzerland -[2018-02-13T08:20:45.306] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:20:45.392] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:20:45.436] [INFO] cheese - inserting 1000 documents. first: Gödel code and last: Grand Mesa -[2018-02-13T08:20:45.462] [INFO] cheese - inserting 1000 documents. first: ISO 639:dhm and last: ISO 639:ino -[2018-02-13T08:20:45.525] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:20:45.576] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:20:45.580] [INFO] cheese - inserting 1000 documents. first: Romana Tabaková and last: Wide Hive Records -[2018-02-13T08:20:45.653] [INFO] cheese - inserting 1000 documents. first: IM Dharmadasa and last: Mobile Suit Gundam: Federation vs. Zeon -[2018-02-13T08:20:45.669] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:20:45.732] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:20:45.771] [INFO] cheese - inserting 1000 documents. first: Battle of Bennington and last: USS Merrimack -[2018-02-13T08:20:45.821] [INFO] cheese - inserting 1000 documents. first: NoxiK and last: ISO 639:lke -[2018-02-13T08:20:45.848] [INFO] cheese - inserting 1000 documents. first: Ulupamir and last: Cobalt-53m -[2018-02-13T08:20:45.855] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T08:20:46.034] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:46.034] [INFO] cheese - batch complete in: 3.194 secs -[2018-02-13T08:20:46.194] [INFO] cheese - inserting 1000 documents. first: Category:Malayalam encyclopedias and last: Kisou (鬼葬) -[2018-02-13T08:20:46.201] [INFO] cheese - inserting 1000 documents. first: J J Dossen and last: La Paz, In -[2018-02-13T08:20:46.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sarai Sierra and last: Mudflat quillplant -[2018-02-13T08:20:46.261] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:20:46.318] [INFO] cheese - inserting 1000 documents. first: ISO 639:lkh and last: Incruit -[2018-02-13T08:20:46.340] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:20:46.374] [INFO] cheese - inserting 1000 documents. first: Bethenny Getting Married and last: James Frew jr -[2018-02-13T08:20:46.441] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:20:46.450] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:20:46.577] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:20:46.702] [INFO] cheese - inserting 1000 documents. first: Suffolk Downs and last: Startrek -[2018-02-13T08:20:46.714] [INFO] cheese - inserting 1000 documents. first: Cobalt-54m and last: Toroidal inductor -[2018-02-13T08:20:46.825] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:20:46.875] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:20:46.975] [INFO] cheese - inserting 1000 documents. first: Category:Pan American Games medalists for Canada and last: Category:WikiProject Prehistoric Mammals -[2018-02-13T08:20:46.989] [INFO] cheese - inserting 1000 documents. first: J.G. Robinson and last: Folsom Man -[2018-02-13T08:20:47.069] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:20:47.073] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:20:47.275] [INFO] cheese - inserting 1000 documents. first: Category:Power stations in North Korea and last: Digital Tape Format -[2018-02-13T08:20:47.383] [INFO] cheese - inserting 1000 documents. first: Kurzwellen and last: Connor Ripley -[2018-02-13T08:20:47.470] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:20:47.479] [INFO] cheese - inserting 1000 documents. first: ISO 639:qxi and last: Andrzej krauze -[2018-02-13T08:20:47.501] [INFO] cheese - inserting 1000 documents. first: Accidental (music) and last: Stop signal -[2018-02-13T08:20:47.526] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:20:47.558] [INFO] cheese - inserting 1000 documents. first: A Season in Hell (1964 film) and last: Osama Nujaifi -[2018-02-13T08:20:47.572] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:20:47.787] [INFO] cheese - batch complete in: 1.753 secs -[2018-02-13T08:20:47.846] [INFO] cheese - batch complete in: 1.396 secs -[2018-02-13T08:20:47.911] [INFO] cheese - inserting 1000 documents. first: File:Sears tower orthogonal.jpg and last: Sagala Ratnayaka -[2018-02-13T08:20:48.038] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:20:48.191] [INFO] cheese - inserting 1000 documents. first: Sørvágur and last: Motorized artillery -[2018-02-13T08:20:48.377] [INFO] cheese - inserting 1000 documents. first: Palea (botany) and last: JB Munro -[2018-02-13T08:20:48.384] [INFO] cheese - inserting 1000 documents. first: Category:Croatian football friendly trophies and last: Posen Robbins School District -[2018-02-13T08:20:48.408] [INFO] cheese - batch complete in: 1.582 secs -[2018-02-13T08:20:48.429] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:20:48.540] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Herzegovina and last: List of Hero System books -[2018-02-13T08:20:48.600] [INFO] cheese - inserting 1000 documents. first: Portal:Trinidad and Tobago/On this day/July 24 and last: Edinburgh Ladies' Emancipation Society -[2018-02-13T08:20:48.646] [INFO] cheese - batch complete in: 1.577 secs -[2018-02-13T08:20:48.670] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:20:48.765] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:20:48.873] [INFO] cheese - inserting 1000 documents. first: File:Brooke230Album.jpg and last: Zaō Station -[2018-02-13T08:20:48.963] [INFO] cheese - inserting 1000 documents. first: Separating mixtures and last: Cours-de-Monsegur -[2018-02-13T08:20:49.040] [INFO] cheese - inserting 1000 documents. first: ISO 639:wja and last: Sotiria Aliberti -[2018-02-13T08:20:49.053] [INFO] cheese - batch complete in: 1.583 secs -[2018-02-13T08:20:49.077] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:20:49.087] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:20:49.215] [INFO] cheese - inserting 1000 documents. first: JB Patnaik and last: John MC Smith -[2018-02-13T08:20:49.312] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:20:49.617] [INFO] cheese - inserting 1000 documents. first: Louis the Sixteenth and last: Sleeman Centre (Guelph) -[2018-02-13T08:20:49.621] [INFO] cheese - inserting 1000 documents. first: Category:Adaptations of works by Raymond Chandler and last: Maya Kidowaki -[2018-02-13T08:20:49.672] [INFO] cheese - inserting 1000 documents. first: Radivojević and last: Wikipedia:Articles for deletion/Yahya Arodaki -[2018-02-13T08:20:49.713] [INFO] cheese - inserting 1000 documents. first: Cañon City Record and last: The Apology of Sokrates -[2018-02-13T08:20:49.734] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:20:49.752] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:20:49.828] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:20:49.844] [INFO] cheese - inserting 1000 documents. first: File:Morris Seal.jpg and last: 1972 Torneo Descentralizado -[2018-02-13T08:20:49.849] [INFO] cheese - inserting 1000 documents. first: File:Lineage on Gv6.gif and last: KT Oslin -[2018-02-13T08:20:49.968] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:20:49.953] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:20:50.037] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:20:50.145] [INFO] cheese - inserting 1000 documents. first: Presidents of the U.S.A. and last: Hawkins Island -[2018-02-13T08:20:50.226] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:20:50.309] [INFO] cheese - inserting 1000 documents. first: Store-and-forward switching center and last: Nemertea -[2018-02-13T08:20:50.440] [INFO] cheese - inserting 1000 documents. first: Paris peace conference 1919 and last: Category:Frauen DFB-Pokal seasons -[2018-02-13T08:20:50.484] [INFO] cheese - inserting 1000 documents. first: Kemeny Castle (Brancovenesti) and last: Teresa Miller -[2018-02-13T08:20:50.499] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:20:50.503] [INFO] cheese - inserting 1000 documents. first: ZFHX3 and last: Street Mobster -[2018-02-13T08:20:50.528] [INFO] cheese - batch complete in: 2.741 secs -[2018-02-13T08:20:50.558] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:20:50.597] [INFO] cheese - inserting 1000 documents. first: Euthyphron and last: Hypognathous -[2018-02-13T08:20:50.696] [INFO] cheese - inserting 1000 documents. first: LTU International Airlines and last: It Had to Be You (TV series) -[2018-02-13T08:20:50.708] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:20:50.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2005-05-16/Image uploading and last: Category:Forgotten Realms stubs -[2018-02-13T08:20:50.873] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:20:50.906] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:20:51.100] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T08:20:51.297] [INFO] cheese - inserting 1000 documents. first: Category:Furman University and last: East Berkshire -[2018-02-13T08:20:51.404] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T08:20:51.565] [INFO] cheese - inserting 1000 documents. first: Stray dogs in Bangkok and last: Lucknow Charbagh Railway Station -[2018-02-13T08:20:51.657] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:20:51.698] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/GreenEarth Cleaning/Archive and last: Anders Göran Kulläng -[2018-02-13T08:20:51.771] [INFO] cheese - inserting 1000 documents. first: Nate Davis and last: Pretty Polly (film) -[2018-02-13T08:20:51.776] [INFO] cheese - inserting 1000 documents. first: Charles Glover (disambiguation) and last: Centre National d'Art et de Culture Georges -[2018-02-13T08:20:51.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/OCEF and last: Category:Norton Records artists -[2018-02-13T08:20:51.825] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:20:51.917] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T08:20:51.926] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:20:52.075] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:20:52.339] [INFO] cheese - inserting 1000 documents. first: Akrom Yo‘ldoshev and last: First Baptist Church of Ottawa -[2018-02-13T08:20:52.348] [INFO] cheese - inserting 1000 documents. first: Population of Pudong and last: The Sower (Grohar) -[2018-02-13T08:20:52.449] [INFO] cheese - inserting 1000 documents. first: Berkshire East and last: Spanish Coquina Quarries -[2018-02-13T08:20:52.449] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:20:52.509] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:20:52.545] [INFO] cheese - inserting 1000 documents. first: Homorthodes lindseyi and last: Ace of swords -[2018-02-13T08:20:52.554] [INFO] cheese - inserting 1000 documents. first: Category:Beninese people of American descent and last: Hinigaran, Negros Occidental -[2018-02-13T08:20:52.593] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:20:52.650] [INFO] cheese - inserting 1000 documents. first: St. Bride of Kildare and last: SYNPR -[2018-02-13T08:20:52.631] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:20:52.710] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:20:52.728] [INFO] cheese - inserting 1000 documents. first: Max eastley and last: Wikipedia:WikiProject Spam/LinkReports/uzbek-film.ru -[2018-02-13T08:20:52.791] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:20:52.896] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:20:53.095] [INFO] cheese - inserting 1000 documents. first: Ace of wands and last: List of Microscopy Visualization Systems -[2018-02-13T08:20:53.124] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T08:20:53.170] [INFO] cheese - inserting 1000 documents. first: Canoeing at the 2015 Southeast Asian Games – Men's K-2 1000 metres and last: Johan Persson (disambiguation) -[2018-02-13T08:20:53.174] [INFO] cheese - inserting 1000 documents. first: Cheonma and last: Papyrus Oxyrhynchus 267 -[2018-02-13T08:20:53.244] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:20:53.270] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:20:53.356] [INFO] cheese - inserting 1000 documents. first: Category:Musicians from Georgia (country) by instrument and last: Al-Adiliyah Mosque -[2018-02-13T08:20:53.425] [INFO] cheese - inserting 1000 documents. first: Perry, Fl and last: KIYK -[2018-02-13T08:20:53.432] [INFO] cheese - inserting 1000 documents. first: List of Brazilian television channels and last: SECA -[2018-02-13T08:20:53.432] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:20:53.454] [INFO] cheese - inserting 1000 documents. first: Adorcelino wesley gomes da silva and last: Agriculture in cuba -[2018-02-13T08:20:53.486] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:20:53.540] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:20:53.601] [INFO] cheese - inserting 1000 documents. first: Norton and Nancy Dodge Collection of Soviet Nonconformist Art and last: Joseph Rene Bellot -[2018-02-13T08:20:53.611] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:20:53.728] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:20:53.796] [INFO] cheese - inserting 1000 documents. first: Reunite (disambiguation) and last: Xoylu (Shamakhi) -[2018-02-13T08:20:53.883] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:20:53.898] [INFO] cheese - inserting 1000 documents. first: Baby Lloyd and last: Zeyti-ye Do -[2018-02-13T08:20:53.928] [INFO] cheese - inserting 1000 documents. first: Agriculture in cyprus and last: Inalta Curte de Casatie si Justitie -[2018-02-13T08:20:53.992] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:20:54.021] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:20:54.035] [INFO] cheese - inserting 1000 documents. first: Studio Theatre in Łódź and last: Template:Slovenia-poli-stub -[2018-02-13T08:20:54.065] [INFO] cheese - inserting 1000 documents. first: Platyhelmintha and last: Printing -[2018-02-13T08:20:54.120] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:20:54.208] [INFO] cheese - inserting 1000 documents. first: Drain, Or and last: Rhy -[2018-02-13T08:20:54.242] [INFO] cheese - inserting 1000 documents. first: File:IPod Zune Comparison.jpg and last: Kedzie station (CTA Green Line) -[2018-02-13T08:20:54.276] [INFO] cheese - batch complete in: 3.748 secs -[2018-02-13T08:20:54.305] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:20:54.347] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:20:54.366] [INFO] cheese - inserting 1000 documents. first: 1997 RFL Division Two and last: Toney Penna (Tri-Rail) -[2018-02-13T08:20:54.448] [INFO] cheese - inserting 1000 documents. first: Malaxis crenulata and last: EDG7 -[2018-02-13T08:20:54.472] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:20:54.539] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:54.601] [INFO] cheese - inserting 1000 documents. first: David Paul Weber and last: Wikipedia:Articles for deletion/Palestinian Peruvian -[2018-02-13T08:20:54.685] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:20:54.691] [INFO] cheese - inserting 1000 documents. first: Template:BosniaHerzegovina-poli-stub and last: Category:People from St. Joseph, Michigan -[2018-02-13T08:20:54.774] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:20:54.818] [INFO] cheese - inserting 1000 documents. first: PocketZip and last: Povel -[2018-02-13T08:20:54.990] [INFO] cheese - inserting 1000 documents. first: American society of appraisers and last: Apollodorus of pergamon -[2018-02-13T08:20:55.015] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:20:55.030] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:20:55.160] [INFO] cheese - inserting 1000 documents. first: Blodgett, Oregon and last: Cass Township, Indiana -[2018-02-13T08:20:55.161] [INFO] cheese - inserting 1000 documents. first: Malcom and Melvin and last: Gérald Mossé -[2018-02-13T08:20:55.251] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:55.282] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:20:55.305] [INFO] cheese - inserting 1000 documents. first: Anishinaabe Center and last: Category:1933 establishments in Asia -[2018-02-13T08:20:55.306] [INFO] cheese - inserting 1000 documents. first: G.j. and last: Transport in Somaliland -[2018-02-13T08:20:55.364] [INFO] cheese - inserting 1000 documents. first: Apollodorus of seleucia and last: Ashdod port attack -[2018-02-13T08:20:55.376] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:20:55.396] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T08:20:55.401] [INFO] cheese - inserting 1000 documents. first: Massilia cf. timonae and last: ප -[2018-02-13T08:20:55.428] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:20:55.527] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:20:55.697] [INFO] cheese - inserting 1000 documents. first: Ashdon halt railway station and last: Baby boy da prince -[2018-02-13T08:20:55.707] [INFO] cheese - inserting 1000 documents. first: Cedar Creek Township, Indiana and last: Ririe, Id -[2018-02-13T08:20:55.722] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T08:20:55.784] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:20:55.830] [INFO] cheese - inserting 1000 documents. first: Ramel Povel and last: NATO expansion -[2018-02-13T08:20:55.957] [INFO] cheese - inserting 1000 documents. first: Directive 93/98/EEC and last: Eppan -[2018-02-13T08:20:55.958] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:20:56.017] [INFO] cheese - inserting 1000 documents. first: Extreme points of Kazakhstan and last: Čtvrtlík -[2018-02-13T08:20:56.036] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:20:56.060] [INFO] cheese - inserting 1000 documents. first: Category:18th-century establishments in the French colonial empire and last: Franjo Dijak -[2018-02-13T08:20:56.077] [INFO] cheese - inserting 1000 documents. first: Baby come on over and last: Bangladesh university of engineering and technology -[2018-02-13T08:20:56.112] [INFO] cheese - inserting 1000 documents. first: ඵ and last: Illinois Route 42 -[2018-02-13T08:20:56.122] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T08:20:56.137] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:20:56.165] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:20:56.254] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:56.314] [INFO] cheese - inserting 1000 documents. first: Chen Di (linguist) and last: Royerton, Indiana -[2018-02-13T08:20:56.392] [INFO] cheese - inserting 1000 documents. first: Bangladesh university of professionals and last: Bart van der leck -[2018-02-13T08:20:56.402] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:20:56.457] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T08:20:56.846] [INFO] cheese - inserting 1000 documents. first: Draft:Shellyph/my sandbox and last: White Congolese -[2018-02-13T08:20:56.848] [INFO] cheese - inserting 1000 documents. first: Ambrose Ussher and last: Template:User Samoa -[2018-02-13T08:20:56.886] [INFO] cheese - inserting 1000 documents. first: Barthold douma van burmania and last: Battle of caesarea -[2018-02-13T08:20:56.892] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:56.907] [INFO] cheese - inserting 1000 documents. first: List of Fijian Heads of State and last: Mario Vazquez (album) -[2018-02-13T08:20:57.050] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:20:57.062] [INFO] cheese - inserting 1000 documents. first: Route 42 (Illinois) and last: Charlie Yeung -[2018-02-13T08:20:57.111] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:20:57.166] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:20:57.175] [INFO] cheese - inserting 1000 documents. first: Yugoslavian civil war and last: Manele -[2018-02-13T08:20:57.254] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:20:57.360] [INFO] cheese - batch complete in: 1.402 secs -[2018-02-13T08:20:57.589] [INFO] cheese - inserting 1000 documents. first: Battle of cagayan de misamis and last: Category:FC Dynamo Stavropol managers -[2018-02-13T08:20:57.599] [INFO] cheese - inserting 1000 documents. first: Smithfield, Indiana and last: B. Russell Murphy (football coach) -[2018-02-13T08:20:57.667] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:20:57.673] [INFO] cheese - inserting 1000 documents. first: Cavalcade (play) and last: March 28, 2002 -[2018-02-13T08:20:57.676] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:20:57.867] [INFO] cheese - inserting 1000 documents. first: Template:Pentagonal tiling table and last: Megaloprepia formosa -[2018-02-13T08:20:57.967] [INFO] cheese - batch complete in: 3.691 secs -[2018-02-13T08:20:57.982] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:20:58.049] [INFO] cheese - inserting 1000 documents. first: Palm Desert, Calif. and last: Thracian tomb Shushmanets -[2018-02-13T08:20:58.133] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Devizes Town and last: Mohammad Mokhtari (protester) -[2018-02-13T08:20:58.163] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:20:58.167] [INFO] cheese - inserting 1000 documents. first: Kalgin Island and last: Marano (river) -[2018-02-13T08:20:58.171] [INFO] cheese - inserting 1000 documents. first: Battle of jalula and last: Battle of philiphaugh -[2018-02-13T08:20:58.212] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:20:58.283] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:20:58.324] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:20:58.427] [INFO] cheese - inserting 1000 documents. first: Joseph Lightner (football coach) and last: Nicolas Girod -[2018-02-13T08:20:58.556] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:20:58.560] [INFO] cheese - inserting 1000 documents. first: Battle of philippeville and last: Oxycodone/naloxone -[2018-02-13T08:20:58.621] [INFO] cheese - inserting 1000 documents. first: Raw Food Diet and last: Bank of nova scotia -[2018-02-13T08:20:58.635] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:20:58.788] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:20:58.870] [INFO] cheese - inserting 1000 documents. first: Bruce Hobbs (scientist) and last: Peruvian Democratic Constituent Congress election, 1992 -[2018-02-13T08:20:58.923] [INFO] cheese - inserting 1000 documents. first: Julie Lopes Curval and last: United States Senate election in Idaho, 1962 -[2018-02-13T08:20:58.999] [INFO] cheese - inserting 1000 documents. first: Battle of worringen and last: Beer in ireland -[2018-02-13T08:20:59.046] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:20:59.082] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:20:59.106] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:20:59.156] [INFO] cheese - inserting 1000 documents. first: Typhinae and last: Wikipedia:Articles for deletion/Provanhall -[2018-02-13T08:20:59.237] [INFO] cheese - inserting 1000 documents. first: Cormac Mac Art and last: File:NITJ Admin Block.jpg -[2018-02-13T08:20:59.297] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:20:59.407] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:20:59.565] [INFO] cheese - inserting 1000 documents. first: 2008 Democratic Presidential Primaries (Results) and last: Category:Arkansas road transport articles by importance -[2018-02-13T08:20:59.576] [INFO] cheese - inserting 1000 documents. first: Minuscule 460 and last: Bertrand de jouvenel -[2018-02-13T08:20:59.626] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:59.667] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:20:59.893] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Idaho, 1966 and last: El Espinal, Los Santos -[2018-02-13T08:20:59.903] [INFO] cheese - inserting 1000 documents. first: Ligo Feast and last: Category:Fire stations completed in 1937 -[2018-02-13T08:20:59.945] [INFO] cheese - inserting 1000 documents. first: Bertrand de molleville and last: Birbhum institute of technology -[2018-02-13T08:20:59.935] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:20:59.983] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:21:00.005] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:21:00.144] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for arbitration/Wareware/Evidence and last: Panoramagram -[2018-02-13T08:21:00.154] [INFO] cheese - inserting 1000 documents. first: Category:Electric railways in Mexico and last: Pöschl -[2018-02-13T08:21:00.155] [INFO] cheese - inserting 1000 documents. first: Landoger Trow and last: Charles William Jones House -[2018-02-13T08:21:00.222] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:21:00.218] [INFO] cheese - batch complete in: 1.43 secs -[2018-02-13T08:21:00.283] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:21:00.340] [INFO] cheese - inserting 1000 documents. first: Birch mountains kimberlite field and last: Bloodchild and other stories -[2018-02-13T08:21:00.442] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:21:00.496] [INFO] cheese - inserting 1000 documents. first: Category:Colorado road transport articles by quality and last: Portal:Louisville/Sunnyside/8 -[2018-02-13T08:21:00.611] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:21:00.679] [INFO] cheese - inserting 1000 documents. first: Category:Sri Lankan American and last: Wikipedia:CULTIVAR -[2018-02-13T08:21:00.688] [INFO] cheese - inserting 1000 documents. first: Blooded on arachne and last: Category:Turkish company stubs -[2018-02-13T08:21:00.727] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T08:21:00.818] [INFO] cheese - inserting 1000 documents. first: Category:Comiskey family and last: Albert Schreiner -[2018-02-13T08:21:00.839] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:21:00.904] [INFO] cheese - inserting 1000 documents. first: Phyre2 and last: Airflow mechanism -[2018-02-13T08:21:00.934] [INFO] cheese - inserting 1000 documents. first: Jack McDevitt and last: Battle of Naissus -[2018-02-13T08:21:00.952] [INFO] cheese - inserting 1000 documents. first: K2r riddim and last: All the Negatives Have Been Destroyed -[2018-02-13T08:21:00.987] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:21:00.987] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:21:01.053] [INFO] cheese - inserting 1000 documents. first: Augusto B. Leguía y Salcedo and last: Dimocarpus longan -[2018-02-13T08:21:01.050] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:21:01.123] [INFO] cheese - inserting 1000 documents. first: Boot stamping on a human face forever and last: Breathing for a living -[2018-02-13T08:21:01.153] [INFO] cheese - batch complete in: 3.186 secs -[2018-02-13T08:21:01.143] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:21:01.163] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:21:01.428] [INFO] cheese - inserting 1000 documents. first: Caprellida and last: It Happens All the Time -[2018-02-13T08:21:01.517] [INFO] cheese - inserting 1000 documents. first: Breathing the water and last: Broken stone in uji bridge -[2018-02-13T08:21:01.517] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:21:01.578] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:21:01.587] [INFO] cheese - inserting 1000 documents. first: Strikeforce Challengers: Riggs vs. Taylor and last: Category:Psychiatric instruments: mania -[2018-02-13T08:21:01.646] [INFO] cheese - inserting 1000 documents. first: Category:1530s establishments in New France and last: Category:1751 establishments in Europe -[2018-02-13T08:21:01.667] [INFO] cheese - inserting 1000 documents. first: Organizational Dissent and last: St John Fisher Catholic High School, Peterborough -[2018-02-13T08:21:01.672] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:21:01.797] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:01.857] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:21:01.871] [INFO] cheese - inserting 1000 documents. first: Bob Ralston and last: Route 111 (Virginia) -[2018-02-13T08:21:01.904] [INFO] cheese - inserting 1000 documents. first: Broken in pieces and last: Pro rata cancellation -[2018-02-13T08:21:01.973] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:21:01.978] [INFO] cheese - inserting 1000 documents. first: Category:St. Cloud, Minnesota and last: Arthur Newbery park -[2018-02-13T08:21:02.054] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:21:02.135] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:21:02.314] [INFO] cheese - inserting 1000 documents. first: Bureau of military history and last: Trudy (American comic strip) -[2018-02-13T08:21:02.316] [INFO] cheese - inserting 1000 documents. first: Suriname national under-20 football team and last: Tick Bonesteel -[2018-02-13T08:21:02.375] [INFO] cheese - inserting 1000 documents. first: Category:2012 establishments in Slovenia and last: Template:Factual accuracy -[2018-02-13T08:21:02.386] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:21:02.414] [INFO] cheese - inserting 1000 documents. first: Surgical knot and last: Dublin City Gallery The Hugh Lane -[2018-02-13T08:21:02.432] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:21:02.562] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:21:02.651] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:21:02.802] [INFO] cheese - inserting 1000 documents. first: Virginia Route 111 and last: French ship Bretagne -[2018-02-13T08:21:02.804] [INFO] cheese - inserting 1000 documents. first: U.S. Route 223 in Ohio and last: Clay Township, Andrew County, Missouri -[2018-02-13T08:21:02.871] [INFO] cheese - inserting 1000 documents. first: Vielka Veronica Valenzuela Lama and last: Canadian lesbian and gay archives -[2018-02-13T08:21:03.006] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:21:03.011] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:21:03.075] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:21:03.328] [INFO] cheese - inserting 1000 documents. first: Elizabeth Steiner Hayward and last: XIA 1st World Tour Concert (2012) -[2018-02-13T08:21:03.348] [INFO] cheese - inserting 1000 documents. first: Daniel Lee and last: Pericallis x hybrida -[2018-02-13T08:21:03.358] [INFO] cheese - inserting 1000 documents. first: Canadian letters and images project and last: Capital punishment in hong kong -[2018-02-13T08:21:03.397] [INFO] cheese - inserting 1000 documents. first: Sister Susie's Sewing Shirts for Soldiers and last: Coomi kapoor -[2018-02-13T08:21:03.407] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:21:03.425] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T08:21:03.480] [INFO] cheese - inserting 1000 documents. first: George Fenwick (disambiguation) and last: Wikipedia:WikiProject Spam/Local/capitalpower.com -[2018-02-13T08:21:03.530] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:21:03.554] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:21:03.661] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:21:03.742] [INFO] cheese - inserting 1000 documents. first: Capital punishment in hungary and last: Wikipedia:Articles for deletion/The Fallouts -[2018-02-13T08:21:03.793] [INFO] cheese - inserting 1000 documents. first: Nevada State Route 878 and last: Chkhalta -[2018-02-13T08:21:03.803] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:21:03.902] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:21:03.913] [INFO] cheese - inserting 1000 documents. first: 3rd Legions Infantry Division and last: Disco dance floor -[2018-02-13T08:21:03.971] [INFO] cheese - inserting 1000 documents. first: Eamonn Keane and last: Category:French foresters -[2018-02-13T08:21:04.013] [INFO] cheese - inserting 1000 documents. first: Strange loop and last: Link awareness -[2018-02-13T08:21:04.021] [INFO] cheese - inserting 1000 documents. first: Fleet Flag Officer 2nd rank and last: Muhammad Hargianto -[2018-02-13T08:21:04.034] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:21:04.067] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:21:04.106] [INFO] cheese - inserting 1000 documents. first: Cassa di risparmio della repubblica di san marino and last: Celia kitzinger and sue wilkinson -[2018-02-13T08:21:04.179] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T08:21:04.205] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:21:04.323] [INFO] cheese - inserting 1000 documents. first: Waldron-Haslam and last: Jm. -[2018-02-13T08:21:04.323] [INFO] cheese - batch complete in: 3.17 secs -[2018-02-13T08:21:04.425] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:21:04.461] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fictional Frontiers with Sohaib and last: Centre of communist revolutionaries of india -[2018-02-13T08:21:04.462] [INFO] cheese - inserting 1000 documents. first: Bos gruniens and last: Keihin Tohoku Line -[2018-02-13T08:21:04.490] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T08:21:04.603] [INFO] cheese - inserting 1000 documents. first: Marieke and last: Kim Hyaun-chang -[2018-02-13T08:21:04.765] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:21:04.776] [INFO] cheese - inserting 1000 documents. first: Category:Journalists killed in East Timor and last: Land and sea breeze -[2018-02-13T08:21:04.804] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:21:04.860] [INFO] cheese - inserting 1000 documents. first: Joan Hall (UK politician) and last: List of mountain peaks of Martinique -[2018-02-13T08:21:04.901] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:21:04.909] [INFO] cheese - inserting 1000 documents. first: Centre of contemporary art and last: Charles de marillac -[2018-02-13T08:21:04.946] [INFO] cheese - inserting 1000 documents. first: Gmina Miłki and last: Chassidic philosophy -[2018-02-13T08:21:04.976] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:21:05.014] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:21:05.122] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:21:05.252] [INFO] cheese - inserting 1000 documents. first: Lo. and last: Church of All Saints, Haugham -[2018-02-13T08:21:05.340] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:21:05.360] [INFO] cheese - inserting 1000 documents. first: Charles de mazade and last: China central radio and tv university -[2018-02-13T08:21:05.406] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T08:21:05.562] [INFO] cheese - inserting 1000 documents. first: Gim Hyaun-chang and last: Category:Sports clubs established in 1886 -[2018-02-13T08:21:05.660] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:21:05.731] [INFO] cheese - inserting 1000 documents. first: List of mountain peaks of Saint Vincent and the Grenadines and last: あひるの空 -[2018-02-13T08:21:05.794] [INFO] cheese - inserting 1000 documents. first: Moroccan architecture and last: Category:New Orleans Saints players -[2018-02-13T08:21:05.846] [INFO] cheese - inserting 1000 documents. first: China central television headquarters building and last: Chrysler k platform -[2018-02-13T08:21:05.863] [INFO] cheese - inserting 1000 documents. first: 1980–1981 United States network television schedule (late night) and last: Category:1785 in Connecticut -[2018-02-13T08:21:05.930] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:21:05.975] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:21:05.985] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:21:06.100] [INFO] cheese - inserting 1000 documents. first: Cardigans Best of and last: Mary V. Wade -[2018-02-13T08:21:06.126] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:21:06.233] [INFO] cheese - inserting 1000 documents. first: Category:Bolivian long-distance runners and last: Lankadahanam -[2018-02-13T08:21:06.258] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:21:06.366] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:21:06.516] [INFO] cheese - inserting 1000 documents. first: Chrysler la engine and last: City of adelaide pipe band -[2018-02-13T08:21:06.599] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:21:06.701] [INFO] cheese - inserting 1000 documents. first: Elvis & JV and last: Owston -[2018-02-13T08:21:06.766] [INFO] cheese - inserting 1000 documents. first: Nanyang Film Company and last: Hoboken High School -[2018-02-13T08:21:06.796] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:21:06.830] [INFO] cheese - inserting 1000 documents. first: Itt a szabadság! and last: Category:1989–90 in German football -[2018-02-13T08:21:06.862] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:21:06.935] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:06.994] [INFO] cheese - inserting 1000 documents. first: City of alachua downtown historic district and last: Clerk of the green cloth -[2018-02-13T08:21:07.032] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T08:21:07.123] [INFO] cheese - inserting 1000 documents. first: Mg. and last: Warchild (album) -[2018-02-13T08:21:07.183] [INFO] cheese - inserting 1000 documents. first: Tufted Puffins and last: Brima Acha Kamara -[2018-02-13T08:21:07.228] [INFO] cheese - inserting 1000 documents. first: Communist Party of the Portuguese Workers and last: Battle of Podul Înalt -[2018-02-13T08:21:07.240] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:21:07.360] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:21:07.434] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:21:07.458] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dealwithus.co.in and last: Augustus Cornelius Johnson, Jr. -[2018-02-13T08:21:07.514] [INFO] cheese - inserting 1000 documents. first: Clerk of the house of commons and last: Coat of arms of syria -[2018-02-13T08:21:07.539] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:21:07.588] [INFO] cheese - inserting 1000 documents. first: Category:1990–91 in German football and last: 1991–1992 United States network television schedule (Saturday morning) -[2018-02-13T08:21:07.592] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:21:07.734] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:21:07.897] [INFO] cheese - inserting 1000 documents. first: Stanley Baldwin and last: Single-occupancy vehicle -[2018-02-13T08:21:07.912] [INFO] cheese - inserting 1000 documents. first: Broken Melody and last: Colonial militia in canada -[2018-02-13T08:21:07.959] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T08:21:08.088] [INFO] cheese - inserting 1000 documents. first: Category:1688 establishments by continent and last: Encephalo-myelitis periaxialis scleroticans -[2018-02-13T08:21:08.112] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pilgrim Gardens Shopping Center and last: Earthquake hypocenter -[2018-02-13T08:21:08.179] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:21:08.197] [INFO] cheese - batch complete in: 3.873 secs -[2018-02-13T08:21:08.275] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:21:08.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Rublevka and last: Wikipedia:Articles for deletion/List of Grand Theft Auto: San Andreas Missions -[2018-02-13T08:21:08.331] [INFO] cheese - inserting 1000 documents. first: 1992–1993 United States network television schedule (Saturday morning) and last: Val Meets... The VIPS -[2018-02-13T08:21:08.443] [INFO] cheese - inserting 1000 documents. first: Colonial navies of australia and last: Communes of the martinique department -[2018-02-13T08:21:08.472] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:21:08.523] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:21:08.548] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:21:08.640] [INFO] cheese - inserting 1000 documents. first: CZilla and last: Cochimi-Yuman -[2018-02-13T08:21:08.816] [INFO] cheese - batch complete in: 1.382 secs -[2018-02-13T08:21:09.004] [INFO] cheese - inserting 1000 documents. first: Harold Mutobola and last: Selinum anisum -[2018-02-13T08:21:09.092] [INFO] cheese - inserting 1000 documents. first: Communes of the mayenne department and last: AtomRedMetZoloto -[2018-02-13T08:21:09.138] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:21:09.160] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:21:09.303] [INFO] cheese - inserting 1000 documents. first: Terpna pratti and last: Supreme Council of the Lithuanian Republic -[2018-02-13T08:21:09.345] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in North Holland and last: ♭VII-I -[2018-02-13T08:21:09.422] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:21:09.529] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/clubgalactik.com and last: Constitution of burkina faso -[2018-02-13T08:21:09.571] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:21:09.614] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:21:09.619] [INFO] cheese - inserting 1000 documents. first: 2000 Webby Awards and last: Template:UK Breakfast TV -[2018-02-13T08:21:09.849] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:21:09.927] [INFO] cheese - inserting 1000 documents. first: Seseli gilliesii and last: Nyfco.net -[2018-02-13T08:21:10.151] [INFO] cheese - inserting 1000 documents. first: Category:Images of Greece and last: Wikipedia:Reference desk/Archives/Science/2013 March 2 -[2018-02-13T08:21:10.201] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:21:10.249] [INFO] cheese - inserting 1000 documents. first: Constitution of burma and last: Cornelis van tienhoven -[2018-02-13T08:21:10.248] [INFO] cheese - inserting 1000 documents. first: Shalersville Township, Portage County, Ohio and last: Afrikaans (Eastern Cape dialect) -[2018-02-13T08:21:10.360] [INFO] cheese - inserting 1000 documents. first: Route 136 (Virginia) and last: Human Trafficking -[2018-02-13T08:21:10.431] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:21:10.445] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:21:10.604] [INFO] cheese - batch complete in: 1.787 secs -[2018-02-13T08:21:10.847] [INFO] cheese - inserting 1000 documents. first: BVII-I and last: Omen Engine -[2018-02-13T08:21:10.970] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Resource Exchange/Resource Request and last: File:JodiNumberOne.jpg -[2018-02-13T08:21:11.081] [INFO] cheese - inserting 1000 documents. first: Cornelis van vollenhoven and last: James Bernard Fay -[2018-02-13T08:21:11.149] [INFO] cheese - batch complete in: 1.577 secs -[2018-02-13T08:21:11.158] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:21:11.178] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T08:21:11.317] [INFO] cheese - batch complete in: 4.52 secs -[2018-02-13T08:21:11.400] [INFO] cheese - inserting 1000 documents. first: Kiernan's Corner and last: Category:Visby-class corvettes -[2018-02-13T08:21:11.459] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:21:11.521] [INFO] cheese - inserting 1000 documents. first: Ofcs.org and last: Category:2005 establishments in Africa -[2018-02-13T08:21:11.787] [INFO] cheese - inserting 1000 documents. first: Country of particular concern and last: Arnshtam -[2018-02-13T08:21:11.824] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:21:11.960] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:21:12.099] [INFO] cheese - inserting 1000 documents. first: DOS32 and last: Philip Courtenay (died 1406) -[2018-02-13T08:21:12.135] [INFO] cheese - inserting 1000 documents. first: Tafilalt and last: GOELRO plan -[2018-02-13T08:21:12.155] [INFO] cheese - inserting 1000 documents. first: Category:Stockholm-class corvettes and last: Category:1967 NCAA University Division independents football season -[2018-02-13T08:21:12.239] [INFO] cheese - inserting 1000 documents. first: Quercus kelloggii and last: Van de Graaff generator -[2018-02-13T08:21:12.264] [INFO] cheese - inserting 1000 documents. first: Andel, Côtes-d'Armor and last: Canelas (Arouca) -[2018-02-13T08:21:12.269] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:21:12.281] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:21:12.385] [INFO] cheese - batch complete in: 1.781 secs -[2018-02-13T08:21:12.493] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:21:12.571] [INFO] cheese - inserting 1000 documents. first: Category:2006 establishments in Africa and last: Lawrence Hazard -[2018-02-13T08:21:12.645] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:21:12.956] [INFO] cheese - inserting 1000 documents. first: Bunty Bailey and last: Wikipedia:WikiProject Spam/LinkReports/conceptualfiction.com -[2018-02-13T08:21:13.074] [INFO] cheese - batch complete in: 4.877 secs -[2018-02-13T08:21:13.163] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T08:21:13.166] [INFO] cheese - inserting 1000 documents. first: H.V. Conolly and last: David Phillipson -[2018-02-13T08:21:13.256] [INFO] cheese - inserting 1000 documents. first: Portal:Australia/Featured picture/Week 3, 2008 and last: March 29, 2006 Capitol Hill Police Incident -[2018-02-13T08:21:13.294] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:21:13.301] [INFO] cheese - inserting 1000 documents. first: Category:Truman family residences and last: Category:Mountains and hills of Rhondda Cynon Taf -[2018-02-13T08:21:13.302] [INFO] cheese - inserting 1000 documents. first: Max Cassidy and last: George Gulliver -[2018-02-13T08:21:13.351] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:21:13.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Byeard Maggott and last: Cheboksarski Raion -[2018-02-13T08:21:13.433] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:21:13.498] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:21:13.582] [INFO] cheese - batch complete in: 2.265 secs -[2018-02-13T08:21:13.881] [INFO] cheese - inserting 1000 documents. first: Hydroelectric power plant and last: Mikolaj z Bogoryi i Skotnik -[2018-02-13T08:21:13.911] [INFO] cheese - inserting 1000 documents. first: Supplementary oxygen and last: Pissutsit -[2018-02-13T08:21:14.012] [INFO] cheese - batch complete in: 1.627 secs -[2018-02-13T08:21:14.016] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:21:14.077] [INFO] cheese - inserting 1000 documents. first: Hettstädt and last: Wikipedia:WikiProject Spam/LinkReports/eonon.com -[2018-02-13T08:21:14.092] [INFO] cheese - inserting 1000 documents. first: Krim Belkacem Airport and last: H. R. Piyasiri -[2018-02-13T08:21:14.244] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:21:14.259] [INFO] cheese - inserting 1000 documents. first: Category:Cricket grounds in Hertfordshire and last: Amphoe Ban Ta Khun -[2018-02-13T08:21:14.264] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:21:14.326] [INFO] cheese - inserting 1000 documents. first: Only Right and last: Baie Georgienne -[2018-02-13T08:21:14.341] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians who convert reference tags and last: Rich Animation Studios -[2018-02-13T08:21:14.348] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:21:14.435] [INFO] cheese - inserting 1000 documents. first: Category:Argentine literary magazines and last: Category:Admiralty M-class destroyers -[2018-02-13T08:21:14.491] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:21:14.523] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:21:14.550] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:21:14.822] [INFO] cheese - inserting 1000 documents. first: Amphoe Phanom and last: Antilepsin -[2018-02-13T08:21:14.883] [INFO] cheese - inserting 1000 documents. first: LST 3035 and last: David Walsh (disambiguation) -[2018-02-13T08:21:14.887] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:21:14.962] [INFO] cheese - inserting 1000 documents. first: Stanislawa z Bogoryi i Skotnik and last: Jeep Jeepster Commando -[2018-02-13T08:21:14.988] [INFO] cheese - inserting 1000 documents. first: Santhosh Thundiyil and last: Bushmanland (disambiguation) -[2018-02-13T08:21:14.990] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:21:14.993] [INFO] cheese - inserting 1000 documents. first: WBFG (FM) and last: Vomit fruit -[2018-02-13T08:21:15.068] [INFO] cheese - inserting 1000 documents. first: Koi plaa and last: Klein-Flugzeugträger -[2018-02-13T08:21:15.107] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:21:15.190] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:21:15.195] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:21:15.212] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:21:15.318] [INFO] cheese - inserting 1000 documents. first: File:Triptychdeluxeedition.jpg and last: File:Phantom1922DVD.jpg -[2018-02-13T08:21:15.441] [INFO] cheese - inserting 1000 documents. first: Cloazepam and last: Peter Barnes (lighting designer) -[2018-02-13T08:21:15.443] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:21:15.503] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:15.635] [INFO] cheese - inserting 1000 documents. first: Werewolf of Bedburg and last: Wikipedia:Articles for deletion/Barbie as Rapunzel -[2018-02-13T08:21:15.641] [INFO] cheese - inserting 1000 documents. first: Flin Aerodrome and last: Wikipedia:Miscellany for deletion/Talk:Abyssinian (cat -[2018-02-13T08:21:15.670] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:21:15.688] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:21:15.709] [INFO] cheese - inserting 1000 documents. first: Category:2014 AFC Women's Asian Cup and last: Category:2010 disestablishments by continent -[2018-02-13T08:21:15.800] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:21:15.893] [INFO] cheese - inserting 1000 documents. first: Josefsdorf and last: Stupinii Prejmerului -[2018-02-13T08:21:15.961] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:21:15.976] [INFO] cheese - inserting 1000 documents. first: The ARC group and last: Luk tung sa on 6 -[2018-02-13T08:21:16.017] [INFO] cheese - inserting 1000 documents. first: Van de Graff generator and last: Vitamin P -[2018-02-13T08:21:16.024] [INFO] cheese - inserting 1000 documents. first: Province of North Gyeongsang and last: Batch file programming -[2018-02-13T08:21:16.078] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:21:16.084] [INFO] cheese - inserting 1000 documents. first: Corlm and last: The Institute of Peace and Conflict Studies -[2018-02-13T08:21:16.114] [INFO] cheese - inserting 1000 documents. first: 2012 ICC European T20 Championship Division Three and last: Pa-ye Godar -[2018-02-13T08:21:16.137] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:21:16.207] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:21:16.211] [INFO] cheese - inserting 1000 documents. first: Category:2011 disestablishments by continent and last: Category:Landforms of East Lothian -[2018-02-13T08:21:16.240] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:21:16.328] [INFO] cheese - batch complete in: 3.254 secs -[2018-02-13T08:21:16.345] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:21:16.508] [INFO] cheese - inserting 1000 documents. first: 1779 in Wales and last: Bikers for christ -[2018-02-13T08:21:16.608] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:21:16.738] [INFO] cheese - inserting 1000 documents. first: Portal:Logic/Selected article/12 and last: Product Liability -[2018-02-13T08:21:16.743] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of East Renfrewshire and last: Category:2000s disestablishments in Europe -[2018-02-13T08:21:16.748] [INFO] cheese - inserting 1000 documents. first: Khet Bangna and last: File:Sprague Electric Logo.jpg -[2018-02-13T08:21:16.772] [INFO] cheese - inserting 1000 documents. first: Perimeter/diameter and last: Amphoe Khao Chakan -[2018-02-13T08:21:16.788] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:21:16.816] [INFO] cheese - inserting 1000 documents. first: Guy Morel and last: File:BonoboDaysToCome.jpg -[2018-02-13T08:21:16.908] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:21:16.918] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:21:16.896] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:21:17.012] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:21:17.056] [INFO] cheese - inserting 1000 documents. first: Insight Magazine and last: Albert Schickedanz -[2018-02-13T08:21:17.189] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T08:21:17.292] [INFO] cheese - inserting 1000 documents. first: Cinculeasa River and last: Peter Nyman -[2018-02-13T08:21:17.365] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:21:17.473] [INFO] cheese - inserting 1000 documents. first: Category:1990s disestablishments in Europe and last: Vracejte konve na místo (album) -[2018-02-13T08:21:17.479] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron 26 and last: Fluoxetine Hydrochloride -[2018-02-13T08:21:17.510] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:21:17.514] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:21:17.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Triumphant Institute of Management Education and last: Wikipedia:WikiProject Spam/LinkReports/kuzbass85.ru -[2018-02-13T08:21:17.579] [INFO] cheese - inserting 1000 documents. first: File:Originalremoteviewer.jpg and last: Louis Léonard de Loménie -[2018-02-13T08:21:17.632] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:21:17.680] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:21:17.844] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:No one really cares and last: Mohamed B. Daramy -[2018-02-13T08:21:17.912] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:21:17.926] [INFO] cheese - inserting 1000 documents. first: Scourie and last: File:Flags - crossed - do not swim.jpg -[2018-02-13T08:21:17.997] [INFO] cheese - inserting 1000 documents. first: Mannlicher 1893 and last: Carduus cynara -[2018-02-13T08:21:18.031] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:21:18.078] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:21:18.139] [INFO] cheese - inserting 1000 documents. first: Category:1966 NCAA University Division independents football season and last: Fathabad Rural District -[2018-02-13T08:21:18.209] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:21:18.255] [INFO] cheese - inserting 1000 documents. first: File:Wildhearts Fishing.jpg and last: Wikipedia:WikiProject Spam/LinkReports/philippinebeat.com -[2018-02-13T08:21:18.255] [INFO] cheese - inserting 1000 documents. first: Theodore Wirth and last: Wikipedia:WikiProject Louisville/Members -[2018-02-13T08:21:18.325] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:21:18.361] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:21:18.492] [INFO] cheese - inserting 1000 documents. first: Rulander Weiss and last: Halictus malachurus -[2018-02-13T08:21:18.492] [INFO] cheese - inserting 1000 documents. first: When I Stop Leavin' (I'll Be Gone) and last: Sauerbrunn -[2018-02-13T08:21:18.616] [INFO] cheese - inserting 1000 documents. first: Carduus scolymus and last: Friedrich August Karl Ferdinand Julius von Holstein -[2018-02-13T08:21:18.619] [INFO] cheese - inserting 1000 documents. first: Pantothenic acid and last: 970s BC -[2018-02-13T08:21:18.622] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:21:18.736] [INFO] cheese - batch complete in: 1.84 secs -[2018-02-13T08:21:18.753] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 1911/Ottawa (City of) and last: Category:Robert D. Conrad-class oceanographic research ships of the Royal New Zealand Navy -[2018-02-13T08:21:18.789] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:21:18.802] [INFO] cheese - batch complete in: 2.474 secs -[2018-02-13T08:21:18.887] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:21:18.895] [INFO] cheese - inserting 1000 documents. first: Gerstmann Sträussler Scheinker syndrome and last: Music for a Stranger World -[2018-02-13T08:21:19.200] [INFO] cheese - inserting 1000 documents. first: Browne House, Stamford and last: Taku Mayumura -[2018-02-13T08:21:19.203] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:21:19.252] [INFO] cheese - inserting 1000 documents. first: Government worker and last: Baroness Miller of Hendon -[2018-02-13T08:21:19.303] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:21:19.330] [INFO] cheese - inserting 1000 documents. first: Dominator (The Time Frequency album) and last: El Patrón de la Vereda -[2018-02-13T08:21:19.335] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:21:19.481] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:21:19.581] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian school stubs and last: Dipterygonotus -[2018-02-13T08:21:19.589] [INFO] cheese - inserting 1000 documents. first: Akademisk Arkitektforening and last: Lobster malai curry -[2018-02-13T08:21:19.695] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:21:19.726] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:21:19.802] [INFO] cheese - inserting 1000 documents. first: John McDonald (pitcher) and last: Paramount Leader Hu Jintao -[2018-02-13T08:21:19.859] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T08:21:20.163] [INFO] cheese - inserting 1000 documents. first: Word of Thoth and last: Grosses Haff -[2018-02-13T08:21:20.244] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwean revolutionaries and last: Portal:Extinct and endangered species/Did you know -[2018-02-13T08:21:20.251] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:21:20.389] [INFO] cheese - inserting 1000 documents. first: Wilmer Allison, Jr. and last: Nenad Petrović (writer) -[2018-02-13T08:21:20.416] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:21:20.441] [INFO] cheese - inserting 1000 documents. first: Knowles (Middlesex cricketer) and last: Kurtz, Indiana -[2018-02-13T08:21:20.572] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:21:20.607] [INFO] cheese - inserting 1000 documents. first: Template:Europe of Nations and Freedom/meta/color and last: Château de Wahlenbourg -[2018-02-13T08:21:20.608] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:21:20.663] [INFO] cheese - inserting 1000 documents. first: Krata Ta Matia Sou Kleista and last: Nunn vs Georgia -[2018-02-13T08:21:20.694] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:21:20.774] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:21:20.866] [INFO] cheese - inserting 1000 documents. first: Busanjin-gu, Busan and last: Template:2010–11 in Israeli football -[2018-02-13T08:21:20.957] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:21:20.977] [INFO] cheese - inserting 1000 documents. first: Wielki Zalew and last: John Rawlinson -[2018-02-13T08:21:21.057] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:21:21.113] [INFO] cheese - inserting 1000 documents. first: West Germany national handball team and last: Abhijat Joshi -[2018-02-13T08:21:21.212] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:21:21.227] [INFO] cheese - inserting 1000 documents. first: Mark Zinger and last: Selwyn Sese Aala -[2018-02-13T08:21:21.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Italian War of 1542–46 and last: Lateral retinaculum -[2018-02-13T08:21:21.283] [INFO] cheese - inserting 1000 documents. first: Eutriana curtipendula and last: Category:1989 disestablishments in North America -[2018-02-13T08:21:21.330] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:21:21.348] [INFO] cheese - inserting 1000 documents. first: 980s BC and last: Lake Baikal -[2018-02-13T08:21:21.360] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:21:21.368] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:21:21.395] [INFO] cheese - inserting 1000 documents. first: Choko and last: Beta HCG -[2018-02-13T08:21:21.488] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:21:21.498] [INFO] cheese - batch complete in: 2.696 secs -[2018-02-13T08:21:21.655] [INFO] cheese - inserting 1000 documents. first: KUVE-TV and last: Spider-Man Origins -[2018-02-13T08:21:21.690] [INFO] cheese - inserting 1000 documents. first: Woods Hole fixed point theorem and last: Lee School (Leesburg, Florida) -[2018-02-13T08:21:21.722] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:21:21.756] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:21:21.894] [INFO] cheese - inserting 1000 documents. first: Category:1988 disestablishments in North America and last: Category:Transport in Uşak Province -[2018-02-13T08:21:21.974] [INFO] cheese - inserting 1000 documents. first: Category:Taekwondo in Armenia and last: Category:Tudor Revival architecture in Nebraska -[2018-02-13T08:21:21.987] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:21:22.016] [INFO] cheese - inserting 1000 documents. first: Blaze (song) and last: Template:Location map Paraguay -[2018-02-13T08:21:22.072] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:21:22.085] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:21:22.164] [INFO] cheese - inserting 1000 documents. first: Richard Baylie and last: Rebecca Lowe -[2018-02-13T08:21:22.225] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:21:22.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Danw12/User:Danw12/DCS and last: Kerr, Minnesota -[2018-02-13T08:21:22.337] [INFO] cheese - inserting 1000 documents. first: History of Suffolk, VA and last: A rape in cyberspace -[2018-02-13T08:21:22.420] [INFO] cheese - batch complete in: 1.463 secs -[2018-02-13T08:21:22.454] [INFO] cheese - inserting 1000 documents. first: Benvindo António Moreira and last: Occupation-induced contact dermatitis -[2018-02-13T08:21:22.465] [INFO] cheese - inserting 1000 documents. first: Heroes of Might and Magic VII and last: Anabel Thomas -[2018-02-13T08:21:22.491] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:21:22.507] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:21:22.561] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:21:22.584] [INFO] cheese - inserting 1000 documents. first: Missouri State Highway 11 and last: Missouri highway 64B -[2018-02-13T08:21:22.712] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:21:22.759] [INFO] cheese - inserting 1000 documents. first: Temaraia and last: LILRA2 -[2018-02-13T08:21:22.786] [INFO] cheese - inserting 1000 documents. first: Maram Piti and last: Fondicola -[2018-02-13T08:21:22.881] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:21:22.898] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:21:23.018] [INFO] cheese - inserting 1000 documents. first: Fake History (Re-release) - Epitaph Records (2011) and last: Mamas Don't Let Your Babies Grow Up To Be Cowboys (artwork) -[2018-02-13T08:21:23.108] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:21:23.119] [INFO] cheese - inserting 1000 documents. first: Route 64B (MO) and last: Geta Bera -[2018-02-13T08:21:23.173] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:21:23.167] [INFO] cheese - inserting 1000 documents. first: Sharda Ramlogan and last: Claudio Coldebella -[2018-02-13T08:21:23.182] [INFO] cheese - inserting 1000 documents. first: Occupation induced contact dermatitis and last: Myspaceim -[2018-02-13T08:21:23.247] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:21:23.305] [INFO] cheese - inserting 1000 documents. first: Bydo and last: Wikipedia:Articles for deletion/Are You Sure -[2018-02-13T08:21:23.316] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:21:23.351] [INFO] cheese - inserting 1000 documents. first: PIM2 (gene) and last: LAYLAH Antirecords -[2018-02-13T08:21:23.439] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:21:23.469] [INFO] cheese - inserting 1000 documents. first: Missouri State Route 107 and last: State Highway 151 (MO) -[2018-02-13T08:21:23.475] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:21:23.509] [INFO] cheese - inserting 1000 documents. first: Yank (Automobile) and last: UDP-glucose:protein 4-alpha-glucosyltransferase -[2018-02-13T08:21:23.540] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T08:21:23.662] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:21:23.685] [INFO] cheese - inserting 1000 documents. first: File:Witchfinder general resurrected.jpg and last: Category:1802 establishments in Ireland -[2018-02-13T08:21:23.775] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:21:23.823] [INFO] cheese - inserting 1000 documents. first: Valerie (Mark Ronson song) and last: Desdemona Mazza -[2018-02-13T08:21:23.858] [INFO] cheese - inserting 1000 documents. first: Oskars Cibuļskis and last: Category:Racehorses trained in Barbados -[2018-02-13T08:21:23.911] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:21:23.931] [INFO] cheese - inserting 1000 documents. first: Andorran Federation of Ice Sports and last: Route 213 (Missouri) -[2018-02-13T08:21:23.931] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:24.006] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:21:24.034] [INFO] cheese - inserting 1000 documents. first: Yam and last: Cocoa programming -[2018-02-13T08:21:24.074] [INFO] cheese - inserting 1000 documents. first: File:Holyoke Houses.jpg and last: Jim Thompson House -[2018-02-13T08:21:24.171] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Drbkmurali and last: Module:Infobox road/meta/mask/subtype1 -[2018-02-13T08:21:24.183] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:21:24.231] [INFO] cheese - batch complete in: 2.733 secs -[2018-02-13T08:21:24.245] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:21:24.290] [INFO] cheese - inserting 1000 documents. first: Category:1801 establishments in Russia and last: Goran Vinčetić -[2018-02-13T08:21:24.432] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:21:24.485] [INFO] cheese - inserting 1000 documents. first: Tasneem Shah and last: Category:1845 establishments in Oceania -[2018-02-13T08:21:24.525] [INFO] cheese - inserting 1000 documents. first: Template:List of drugs J and last: Open de España -[2018-02-13T08:21:24.543] [INFO] cheese - inserting 1000 documents. first: Highway 213 (Missouri) and last: The Legend of Swordsman and Fairy -[2018-02-13T08:21:24.567] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:21:24.614] [INFO] cheese - inserting 1000 documents. first: West Allerton and last: File:Juarez (1939).jpg -[2018-02-13T08:21:24.656] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:21:24.656] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T08:21:24.820] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:21:24.889] [INFO] cheese - inserting 1000 documents. first: Cindy Mangsen and last: Promapp -[2018-02-13T08:21:24.939] [INFO] cheese - inserting 1000 documents. first: Siege of Kumamoto Castle and last: Template:PsychologyTopicTOC -[2018-02-13T08:21:25.085] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:21:25.097] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:21:25.099] [INFO] cheese - inserting 1000 documents. first: List of Characters in Banjo-Tooie and last: Peninsula Shield -[2018-02-13T08:21:25.202] [INFO] cheese - inserting 1000 documents. first: House of Poitiers and last: Hiroe Suga -[2018-02-13T08:21:25.220] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:21:25.305] [INFO] cheese - inserting 1000 documents. first: Category:1846 establishments in Oceania and last: Michaël Abiteboul -[2018-02-13T08:21:25.305] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:21:25.403] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:21:25.526] [INFO] cheese - inserting 1000 documents. first: Category:1428 by country and last: 1996 Vuelta a España -[2018-02-13T08:21:25.568] [INFO] cheese - inserting 1000 documents. first: Anscarid dynasty and last: Esther Applunius (Singer) -[2018-02-13T08:21:25.569] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:21:25.634] [INFO] cheese - inserting 1000 documents. first: St Paul's Church, Grangetown and last: In Time R.E.M. -[2018-02-13T08:21:25.645] [INFO] cheese - inserting 1000 documents. first: Jazztel Open de España en Andalucía and last: Gorilliaz -[2018-02-13T08:21:25.656] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:21:25.711] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:21:25.778] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:21:25.838] [INFO] cheese - inserting 1000 documents. first: John Halifax and last: Portal:Human body/Musculoskeletal System/Selected Picture -[2018-02-13T08:21:25.864] [INFO] cheese - inserting 1000 documents. first: Seven Stones Reef and last: File:SOE Station VIIb Today 1.jpg -[2018-02-13T08:21:26.004] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:21:26.061] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:21:26.092] [INFO] cheese - inserting 1000 documents. first: Llanfair United F. C. and last: Kirklees Way -[2018-02-13T08:21:26.193] [INFO] cheese - inserting 1000 documents. first: Richard Francis Pacquette and last: Pierre Nicolas Rolland -[2018-02-13T08:21:26.209] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:21:26.290] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:21:26.458] [INFO] cheese - inserting 1000 documents. first: In Time REM and last: Template:Country data Labuan/doc -[2018-02-13T08:21:26.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tamala.ru and last: Andrey Misyuk -[2018-02-13T08:21:26.570] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:21:26.575] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:21:26.639] [INFO] cheese - inserting 1000 documents. first: Charles Spencer (journalist) and last: State Highway 180 (AR) -[2018-02-13T08:21:26.662] [INFO] cheese - inserting 1000 documents. first: Category:Tajikistani people of Ukrainian descent and last: EISA Title 14: Virginia Graeme Baker Pool and Spa Safety Act -[2018-02-13T08:21:26.723] [INFO] cheese - inserting 1000 documents. first: MJ Gopalan and last: Middlesbrough F. C. season 2000-01 -[2018-02-13T08:21:26.740] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:21:26.804] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:21:26.893] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:21:27.003] [INFO] cheese - inserting 1000 documents. first: Second Arab-Israeli War and last: Scabbers -[2018-02-13T08:21:27.009] [INFO] cheese - inserting 1000 documents. first: Land elevation and last: Bayash -[2018-02-13T08:21:27.138] [INFO] cheese - inserting 1000 documents. first: Dichomeris brachyptila and last: Echinops tenuifolius -[2018-02-13T08:21:27.135] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:21:27.199] [INFO] cheese - batch complete in: 2.967 secs -[2018-02-13T08:21:27.212] [INFO] cheese - inserting 1000 documents. first: Manchester School of Design and last: Logroño Airport -[2018-02-13T08:21:27.226] [INFO] cheese - inserting 1000 documents. first: Andrei Misyuk and last: Aleksei Belousov -[2018-02-13T08:21:27.204] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:21:27.341] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:21:27.366] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:21:27.442] [INFO] cheese - inserting 1000 documents. first: Applied Arts Academy of Vienna and last: Royal House Order of Hohenzollern -[2018-02-13T08:21:27.463] [INFO] cheese - inserting 1000 documents. first: 2000 Vuelta a Espana and last: St Chad's, Wybunbury -[2018-02-13T08:21:27.491] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:21:27.566] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:21:27.720] [INFO] cheese - inserting 1000 documents. first: Category:Indigenous Mexican artists and last: Wikipedia:Wikipedia is not a webhost -[2018-02-13T08:21:27.825] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:21:27.887] [INFO] cheese - inserting 1000 documents. first: Echinops meyeri and last: Oliver Ian Banks -[2018-02-13T08:21:27.893] [INFO] cheese - inserting 1000 documents. first: Evalyn Bates and last: Kushk-e Pain, Kerman -[2018-02-13T08:21:27.987] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:21:28.037] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:21:28.120] [INFO] cheese - inserting 1000 documents. first: File:Asteroids ico.png and last: State Route 113 (Washington) -[2018-02-13T08:21:28.191] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:21:28.234] [INFO] cheese - inserting 1000 documents. first: National debt by U S presidential terms and last: DVD Play -[2018-02-13T08:21:28.255] [INFO] cheese - inserting 1000 documents. first: Phoenix Inferno and last: Páesan -[2018-02-13T08:21:28.308] [INFO] cheese - inserting 1000 documents. first: Nam Koo Terrace and last: Portal:Weather/Featured content/GA/86 -[2018-02-13T08:21:28.310] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:21:28.361] [INFO] cheese - inserting 1000 documents. first: Category:Filipino expatriate sportspeople and last: File:Magnitude of Externalities.jpg -[2018-02-13T08:21:28.382] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:21:28.422] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:21:28.424] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:21:28.505] [INFO] cheese - inserting 1000 documents. first: Psychiatric Institute of Washington and last: File:Schnetztor in Konstanz.jpg -[2018-02-13T08:21:28.640] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:21:28.662] [INFO] cheese - inserting 1000 documents. first: Allure (film) and last: Category:1659 establishments by continent -[2018-02-13T08:21:28.720] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:21:28.936] [INFO] cheese - inserting 1000 documents. first: File:PenguinsChicagoAquarium.jpg and last: Kaewsan Atibodhi -[2018-02-13T08:21:28.976] [INFO] cheese - inserting 1000 documents. first: Rachkovski and last: Fusiles -[2018-02-13T08:21:29.021] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:21:29.039] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:21:29.098] [INFO] cheese - inserting 1000 documents. first: The Passionate Plumber and last: Wikipedia:Peer review/Russian Business Network/archive1 -[2018-02-13T08:21:29.198] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:21:29.286] [INFO] cheese - inserting 1000 documents. first: Category:1660 establishments by continent and last: Kolkata Knight Riders in 2012 -[2018-02-13T08:21:29.304] [INFO] cheese - inserting 1000 documents. first: Template:Liberal Oppositionist/meta/shortname and last: Hawaiian Sunset -[2018-02-13T08:21:29.350] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:21:29.402] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:21:29.576] [INFO] cheese - inserting 1000 documents. first: Páesan languages and last: 2004 French Open -[2018-02-13T08:21:29.596] [INFO] cheese - inserting 1000 documents. first: Vodafone Japan and last: Category:Banbury -[2018-02-13T08:21:29.620] [INFO] cheese - inserting 1000 documents. first: Long-legged marsh glider and last: Aruküla (Harjumaa) -[2018-02-13T08:21:29.702] [INFO] cheese - inserting 1000 documents. first: Lake Zurich and last: Ptolemy III Euergetes -[2018-02-13T08:21:29.701] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:21:29.725] [INFO] cheese - batch complete in: 1.34 secs -[2018-02-13T08:21:29.738] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:21:29.751] [INFO] cheese - inserting 1000 documents. first: Independence of Quebec and last: Turrbal -[2018-02-13T08:21:29.844] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:21:29.920] [INFO] cheese - batch complete in: 2.721 secs -[2018-02-13T08:21:29.977] [INFO] cheese - inserting 1000 documents. first: Template:France-sport-team-stub and last: Sean Eddy -[2018-02-13T08:21:30.053] [INFO] cheese - inserting 1000 documents. first: FC Sloboda and last: Tell Ruman -[2018-02-13T08:21:30.099] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:21:30.171] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:21:30.481] [INFO] cheese - inserting 1000 documents. first: Wallis Hihifo Airport and last: File:Anthony Jeselnik Caligula.jpg -[2018-02-13T08:21:30.485] [INFO] cheese - inserting 1000 documents. first: M17 gas mask and last: Soyuz 9K -[2018-02-13T08:21:30.603] [INFO] cheese - inserting 1000 documents. first: Latest common ancestor and last: Chris Stockton -[2018-02-13T08:21:30.606] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:21:30.615] [INFO] cheese - inserting 1000 documents. first: Portal:Literature/Quotes/Week 51 and last: List of Maya Sites -[2018-02-13T08:21:30.707] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:21:30.725] [INFO] cheese - batch complete in: 2.3 secs -[2018-02-13T08:21:30.822] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:21:30.844] [INFO] cheese - inserting 1000 documents. first: Sam Massell and last: Bedminster Township, NJ -[2018-02-13T08:21:30.846] [INFO] cheese - inserting 1000 documents. first: Salisbury District, North Carolina and last: Banny de Brum -[2018-02-13T08:21:30.958] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:21:30.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Partha Pratim Sarkar and last: Frances Caroline Wedderburn Webster -[2018-02-13T08:21:31.056] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T08:21:31.192] [INFO] cheese - inserting 1000 documents. first: File:Salinas City Oldtown Farmer's Market, 2008.jpg and last: Eupithecia secura -[2018-02-13T08:21:31.234] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:21:31.309] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:21:31.631] [INFO] cheese - inserting 1000 documents. first: Sutemos and last: H:IW -[2018-02-13T08:21:31.640] [INFO] cheese - inserting 1000 documents. first: St. Mary's and St. Michael's Church, Burleydam and last: Category:People from Rockwall County, Texas -[2018-02-13T08:21:31.754] [INFO] cheese - inserting 1000 documents. first: Black maidenhair fern and last: Zero Zero -[2018-02-13T08:21:31.748] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:21:31.764] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:21:31.888] [INFO] cheese - inserting 1000 documents. first: Eric's Hot Cousin (That '70s Show episode) and last: Cavour (Piedmont) -[2018-02-13T08:21:31.944] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:21:32.022] [INFO] cheese - inserting 1000 documents. first: 1991 Men's South American Volleyball Championship and last: Wikipedia:Articles for deletion/Richie Garnet -[2018-02-13T08:21:32.063] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:21:32.108] [INFO] cheese - inserting 1000 documents. first: Paris Métro Line 14 (1937–76) and last: Bourbon (whiskey) -[2018-02-13T08:21:32.133] [INFO] cheese - batch complete in: 1.406 secs -[2018-02-13T08:21:32.158] [INFO] cheese - inserting 1000 documents. first: Beech Bottom, WV and last: Joseph Kimhi -[2018-02-13T08:21:32.265] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:21:32.285] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:21:32.488] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/datei.sektenausstieg.net and last: Bañado de Ovanta -[2018-02-13T08:21:32.598] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:21:32.625] [INFO] cheese - inserting 1000 documents. first: Narrative techniques pertaining to plot and last: Pratar med min müsli -[2018-02-13T08:21:32.721] [INFO] cheese - inserting 1000 documents. first: Qiu Le and last: Agent Mahone -[2018-02-13T08:21:32.735] [INFO] cheese - inserting 1000 documents. first: Ernest Burdett and last: Valchedram Municipality -[2018-02-13T08:21:32.737] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:21:32.844] [INFO] cheese - inserting 1000 documents. first: File:Basil-hood-1917.tif and last: Category:Railway stations in Erode district -[2018-02-13T08:21:32.906] [INFO] cheese - inserting 1000 documents. first: Category:American Civil War museums in Delaware and last: Wikipedia:WikiProject Spam/LinkReports/crimea-land.info -[2018-02-13T08:21:32.923] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:21:32.990] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:21:33.160] [INFO] cheese - batch complete in: 1.412 secs -[2018-02-13T08:21:33.174] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:21:33.280] [INFO] cheese - inserting 1000 documents. first: Pistacia lentiscus and last: Graptolithina -[2018-02-13T08:21:33.574] [INFO] cheese - inserting 1000 documents. first: Changi East Airbase and last: Jerry (Totally Spies) -[2018-02-13T08:21:33.581] [INFO] cheese - batch complete in: 3.661 secs -[2018-02-13T08:21:33.639] [INFO] cheese - inserting 1000 documents. first: Zambia/Transportation and last: Wikipedia:Articles for deletion/Brokencyde -[2018-02-13T08:21:33.657] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Australian cinema articles and last: File:F16 Armt Museum.JPG -[2018-02-13T08:21:33.658] [INFO] cheese - inserting 1000 documents. first: Alex Marshall and last: File:Squire Beryl.jpg -[2018-02-13T08:21:33.696] [INFO] cheese - inserting 1000 documents. first: Giren's greed and last: Legislative district of Zamboanga del Norte -[2018-02-13T08:21:33.698] [INFO] cheese - inserting 1000 documents. first: Mahmoud Hassan "Trezeguet" and last: Reformed Christian Church in Croatia -[2018-02-13T08:21:33.720] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:21:33.709] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:21:33.805] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:21:33.814] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:21:33.822] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:21:33.819] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:21:34.156] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Texas State Highway 172 and last: South American spongeplant -[2018-02-13T08:21:34.176] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 1974-75 CWC FR and last: Glycerol-3-phosphate-glucose phosphotransferase -[2018-02-13T08:21:34.273] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:21:34.295] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:21:34.364] [INFO] cheese - inserting 1000 documents. first: File:William John House VC.jpg and last: Five Spot -[2018-02-13T08:21:34.466] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:21:34.481] [INFO] cheese - inserting 1000 documents. first: Pargu and last: 福爾摩沙三角 -[2018-02-13T08:21:34.529] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Selected picture/2006 and last: Legislative districts of Lanao del Sur -[2018-02-13T08:21:34.545] [INFO] cheese - inserting 1000 documents. first: 1,3,7-trimethyl-1H-purine-2,6(3H,7H)-dione and last: ILTK -[2018-02-13T08:21:34.577] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:21:34.682] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:21:34.720] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:21:34.782] [INFO] cheese - inserting 1000 documents. first: Alex Pires De Souza and last: 2010–2011 Middle East and Maghreb protests -[2018-02-13T08:21:34.806] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/King Deco and last: Lady Sarah-Armstrong Jones -[2018-02-13T08:21:34.836] [INFO] cheese - inserting 1000 documents. first: Laurentius Andreae and last: Pale november moth -[2018-02-13T08:21:34.842] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:21:34.850] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:21:34.871] [INFO] cheese - inserting 1000 documents. first: Robert of Cricklade and last: Molodizhne, Simferopol Raion -[2018-02-13T08:21:34.960] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:21:35.056] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T08:21:35.306] [INFO] cheese - inserting 1000 documents. first: File:BradburyNortonRobinsonJr.jpg and last: CurtCo -[2018-02-13T08:21:35.492] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Anniversaries/February/February 4 and last: Marcia Moore -[2018-02-13T08:21:35.501] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/djsiqueira.com and last: Botnia banan -[2018-02-13T08:21:35.508] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:21:35.585] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:21:35.605] [INFO] cheese - inserting 1000 documents. first: Category:1938 in New Jersey and last: MARD (campaign) -[2018-02-13T08:21:35.645] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:21:35.667] [INFO] cheese - inserting 1000 documents. first: First stamp of the Russian Empire and last: Acholeplasma phage L2 -[2018-02-13T08:21:35.735] [INFO] cheese - inserting 1000 documents. first: Christian Thomas (ice hockey) and last: Bridge and Tunnel Productions -[2018-02-13T08:21:35.737] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:21:35.842] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:21:35.919] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:21:36.176] [INFO] cheese - inserting 1000 documents. first: Weeb Eubank and last: Buffet froid -[2018-02-13T08:21:36.221] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:21:36.265] [INFO] cheese - inserting 1000 documents. first: Earnings guidance and last: Guy bannister -[2018-02-13T08:21:36.431] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:21:36.432] [INFO] cheese - inserting 1000 documents. first: Connecticut's 145th assembly district and last: Dijon Museum -[2018-02-13T08:21:36.440] [INFO] cheese - inserting 1000 documents. first: Hippocrates: Diary of a French Doctor and last: Merionethshire by-election (1899) -[2018-02-13T08:21:36.464] [INFO] cheese - inserting 1000 documents. first: Yurigaoka and last: Wikipedia:WikiProject Spam/LinkReports/telangana.aginfoway.com -[2018-02-13T08:21:36.489] [INFO] cheese - inserting 1000 documents. first: Catholic University of Utrecht and last: File:Serena Hotel Attack 2.PNG -[2018-02-13T08:21:36.504] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:21:36.563] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:21:36.589] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:21:36.598] [INFO] cheese - inserting 1000 documents. first: Alice in Wonderland (1933 film) and last: Draconic month -[2018-02-13T08:21:36.612] [INFO] cheese - inserting 1000 documents. first: File:Tiyd.png and last: Template:User citizen Mexico -[2018-02-13T08:21:36.649] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:21:36.704] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:21:36.805] [INFO] cheese - batch complete in: 3.224 secs -[2018-02-13T08:21:36.967] [INFO] cheese - inserting 1000 documents. first: 2d Pursuit Group and last: Dive-under -[2018-02-13T08:21:37.013] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Gaming Control Board and last: File:Barbara Acklin.jpg -[2018-02-13T08:21:37.035] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:21:37.047] [INFO] cheese - inserting 1000 documents. first: Category:1110 establishments by continent and last: Dennis Yates Wheatley -[2018-02-13T08:21:37.087] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:21:37.154] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:21:37.199] [INFO] cheese - inserting 1000 documents. first: Kevin Dunion and last: Grayson, Saskatchewan -[2018-02-13T08:21:37.212] [INFO] cheese - inserting 1000 documents. first: Banzai Bill and last: File:Kompeito.jpg -[2018-02-13T08:21:37.268] [INFO] cheese - inserting 1000 documents. first: List of University of Massachusetts Amherst faculty and last: MarSTU -[2018-02-13T08:21:37.271] [INFO] cheese - inserting 1000 documents. first: Regional Development Agency for Greater London and last: Gulf of Chiriquí National Marine Park -[2018-02-13T08:21:37.294] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:21:37.386] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:21:37.387] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:21:37.408] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:21:37.541] [INFO] cheese - inserting 1000 documents. first: Lila Santean and last: Wikipedia:Articles for deletion/Lulwa Khas, India -[2018-02-13T08:21:37.658] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:21:37.838] [INFO] cheese - inserting 1000 documents. first: 2000 Tottori earthquake and last: National Amateur League -[2018-02-13T08:21:38.007] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:21:38.071] [INFO] cheese - inserting 1000 documents. first: Stunner Shades and last: Macroburst (The Incredibles) -[2018-02-13T08:21:38.105] [INFO] cheese - inserting 1000 documents. first: Cartography of the United States and last: Wikipedia:WikiProject Spam/LinkReports/alexpettyfersource.com -[2018-02-13T08:21:38.155] [INFO] cheese - inserting 1000 documents. first: Cîrnățeni and last: Aripuanã River -[2018-02-13T08:21:38.167] [INFO] cheese - inserting 1000 documents. first: Love in the Afternoon (disambiguation) and last: Operation TKO -[2018-02-13T08:21:38.177] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:21:38.295] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T08:21:38.372] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:21:38.450] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:21:38.582] [INFO] cheese - inserting 1000 documents. first: Auxiliary force and last: Wenedyk language -[2018-02-13T08:21:38.649] [INFO] cheese - inserting 1000 documents. first: Apollo (comics) and last: Cheadle by-election -[2018-02-13T08:21:38.648] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:21:38.660] [INFO] cheese - inserting 1000 documents. first: Dichomeris sevectella and last: File:LloydAustin0609-03.jpg -[2018-02-13T08:21:38.760] [INFO] cheese - inserting 1000 documents. first: Oakland Hills manzanita and last: Treasure galaxy -[2018-02-13T08:21:38.733] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:21:38.756] [INFO] cheese - batch complete in: 1.37 secs -[2018-02-13T08:21:38.806] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:21:38.971] [INFO] cheese - inserting 1000 documents. first: Anomalistic month and last: BCP -[2018-02-13T08:21:38.978] [INFO] cheese - inserting 1000 documents. first: Heritage Square (LACMTA station) and last: Open Education -[2018-02-13T08:21:38.994] [INFO] cheese - inserting 1000 documents. first: 10.5 and last: Pass Out Of Existence -[2018-02-13T08:21:39.020] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:21:39.050] [INFO] cheese - inserting 1000 documents. first: Leonīds Ostrovskis and last: Pontifical Commission of Sacred Archæology -[2018-02-13T08:21:39.072] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:21:39.101] [INFO] cheese - batch complete in: 2.296 secs -[2018-02-13T08:21:39.179] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:21:39.314] [INFO] cheese - inserting 1000 documents. first: 1996-97 Plymouth Argyle F.C. season and last: Wikipedia:WikiProject Spam/LinkReports/biologia.ucv.cl -[2018-02-13T08:21:39.325] [INFO] cheese - inserting 1000 documents. first: Kohat Enclave (Delhi Metro) and last: William Knoedelseder -[2018-02-13T08:21:39.346] [INFO] cheese - inserting 1000 documents. first: Jim Tilley and last: Hoei Corporation -[2018-02-13T08:21:39.433] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:21:39.451] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:21:39.534] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:21:39.660] [INFO] cheese - inserting 1000 documents. first: Category:Operas by Béla Bartók and last: Attleborough/Stoughton Line -[2018-02-13T08:21:39.683] [INFO] cheese - inserting 1000 documents. first: Category:Yvonne Elliman songs and last: The Halo Effect (business book) -[2018-02-13T08:21:39.717] [INFO] cheese - inserting 1000 documents. first: File:Miami Olympic Pool.jpg and last: Formamidiumium -[2018-02-13T08:21:39.722] [INFO] cheese - inserting 1000 documents. first: Al Khartoum SC and last: Lonely Days, Lonely Nights -[2018-02-13T08:21:39.801] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:21:39.809] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:21:39.829] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:21:39.890] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:21:39.962] [INFO] cheese - inserting 1000 documents. first: Terrorist attacks in New Jersey and last: Chiautempan (municipality) -[2018-02-13T08:21:40.069] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:21:40.077] [INFO] cheese - inserting 1000 documents. first: Category:Regencies of North Kalimantan and last: TSB Bank (United Kingdom) -[2018-02-13T08:21:40.157] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:21:40.168] [INFO] cheese - inserting 1000 documents. first: Category:History books about the Czech Republic and last: Obatoclax mesylate -[2018-02-13T08:21:40.253] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:21:40.460] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Adventures of Pleakley and last: Wikipedia:Tip of the day/February 1 -[2018-02-13T08:21:40.471] [INFO] cheese - inserting 1000 documents. first: Tachileik and last: File:Livanov-cab-park-2.jpg -[2018-02-13T08:21:40.543] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:21:40.579] [INFO] cheese - inserting 1000 documents. first: Category:New York (state) elections, 1903 and last: Category:Infrastructure completed in 1728 -[2018-02-13T08:21:40.566] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:21:40.615] [INFO] cheese - inserting 1000 documents. first: Category:Active submarines of Russia and last: Nebojsa Radmanovic -[2018-02-13T08:21:40.638] [INFO] cheese - inserting 1000 documents. first: Alpine bird's-foot trefoil and last: Category:2015 disestablishments in Germany -[2018-02-13T08:21:40.644] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:21:40.653] [INFO] cheese - inserting 1000 documents. first: Stoughton Branch and last: Charge Conjugation -[2018-02-13T08:21:40.733] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:21:40.737] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:21:40.784] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:21:40.905] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/List of YuYu Hakusho episodes (season 4)/archive1 and last: Ghardabiya Airbase -[2018-02-13T08:21:41.003] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:21:41.088] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/February 2 and last: List of cast members from Baldwin Hills -[2018-02-13T08:21:41.151] [INFO] cheese - inserting 1000 documents. first: Mary Jane Marcasiano and last: H.C.Bold -[2018-02-13T08:21:41.161] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:21:41.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mohammed bin Osama bin Laden and last: Wikipedia:Recent additions 195 -[2018-02-13T08:21:41.264] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:21:41.303] [INFO] cheese - inserting 1000 documents. first: Szczecińskie Przedsiębiorstwo Autobusowe "Klonowica" and last: Marsea canadensis -[2018-02-13T08:21:41.324] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:21:41.384] [INFO] cheese - inserting 1000 documents. first: Robert O. Lowery and last: Patten Report -[2018-02-13T08:21:41.433] [INFO] cheese - inserting 1000 documents. first: Video Electronics Standards Association and last: Stanley Cup -[2018-02-13T08:21:41.445] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:21:41.493] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:21:41.611] [INFO] cheese - inserting 1000 documents. first: Sez O'Reilly to McNab and last: Wikipedia:WikiProject Spam/LinkReports/vapir.com -[2018-02-13T08:21:41.679] [INFO] cheese - batch complete in: 2.578 secs -[2018-02-13T08:21:41.683] [INFO] cheese - inserting 1000 documents. first: Tastebud and last: Template:NiloSaharan-lang-stub -[2018-02-13T08:21:41.769] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:21:41.776] [INFO] cheese - inserting 1000 documents. first: Yelena Golovina and last: Unleashed (tour) -[2018-02-13T08:21:41.819] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:21:41.859] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:21:41.985] [INFO] cheese - inserting 1000 documents. first: Sakuragi Yukiya and last: Find A Grave -[2018-02-13T08:21:42.041] [INFO] cheese - inserting 1000 documents. first: Senecio ciliatus and last: Template:Infobox Eurovision Song Contest National Year/Year -[2018-02-13T08:21:42.098] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:21:42.122] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:21:42.277] [INFO] cheese - inserting 1000 documents. first: File:I-form offset strong green.PNG and last: Hindustani Classical Music -[2018-02-13T08:21:42.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/vapir.com and last: Chloroclystis inductata -[2018-02-13T08:21:42.343] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:21:42.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ethics/User:Wjhonson and last: Sustainable economy -[2018-02-13T08:21:42.420] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:21:42.492] [INFO] cheese - inserting 1000 documents. first: Sandhawalias and last: 27th pope -[2018-02-13T08:21:42.523] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:21:42.538] [INFO] cheese - inserting 1000 documents. first: List of members of the Seimas, 2012–2016 and last: Category:1197 establishments by continent -[2018-02-13T08:21:42.553] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:21:42.575] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:21:42.692] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gypsy Dave and last: Wikipedia:Articles for deletion/National "Say 'Hi' to Joe" Day -[2018-02-13T08:21:42.759] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:21:42.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kilaueatours.com and last: Georgian Post -[2018-02-13T08:21:42.863] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Glades County, Florida and last: Wikipedia:WikiProject Spam/LinkReports/sangimignano1300.com -[2018-02-13T08:21:42.882] [INFO] cheese - inserting 1000 documents. first: Ashe baronets and last: Category:Austrian volleyball clubs -[2018-02-13T08:21:42.914] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:21:42.924] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:21:42.942] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:21:43.046] [INFO] cheese - inserting 1000 documents. first: Category:1199 establishments by continent and last: Labour law in Bulgaria -[2018-02-13T08:21:43.090] [INFO] cheese - inserting 1000 documents. first: Algal fuel and last: Wikipedia:WikiProject Spam/LinkReports/selvis.alnet.com.ua -[2018-02-13T08:21:43.105] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:21:43.126] [INFO] cheese - inserting 1000 documents. first: 28th pope and last: Elle india cover models -[2018-02-13T08:21:43.173] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:21:43.207] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:21:43.373] [INFO] cheese - inserting 1000 documents. first: Category:Me First and the Gimme Gimmes album covers and last: Hsien-ming Meng -[2018-02-13T08:21:43.407] [INFO] cheese - inserting 1000 documents. first: File:Across-the-Dark.png and last: Conradi-Hünermann syndrome -[2018-02-13T08:21:43.449] [INFO] cheese - inserting 1000 documents. first: Template:Backlog and last: Highland Park High School -[2018-02-13T08:21:43.450] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:21:43.529] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:43.546] [INFO] cheese - inserting 1000 documents. first: 1957 Mongolia earthquake and last: 2007–08 A PFG -[2018-02-13T08:21:43.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Radio Free Satan and last: Barice, Plandište -[2018-02-13T08:21:43.626] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:21:43.634] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:21:43.680] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations in Jhang District and last: Category:Women's sports teams in Iceland -[2018-02-13T08:21:43.799] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:21:43.867] [INFO] cheese - inserting 1000 documents. first: Ofra Haza and last: Ocean thermal energy conversion -[2018-02-13T08:21:43.888] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:21:44.076] [INFO] cheese - inserting 1000 documents. first: Template:Tort footer and last: ISO 14644-3 -[2018-02-13T08:21:44.182] [INFO] cheese - batch complete in: 2.503 secs -[2018-02-13T08:21:44.198] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:21:44.377] [INFO] cheese - inserting 1000 documents. first: Robles Del Rio, California and last: Skate Chucks -[2018-02-13T08:21:44.392] [INFO] cheese - inserting 1000 documents. first: ALP-46A and last: East Kanpur -[2018-02-13T08:21:44.494] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:21:44.510] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:21:44.615] [INFO] cheese - inserting 1000 documents. first: 2008–09 A PFG and last: Rhinolophus affinis -[2018-02-13T08:21:44.742] [INFO] cheese - inserting 1000 documents. first: Category:Women's sport in Iceland and last: "Unbelievable Mysteries Solved" Lost and Found (TV series) -[2018-02-13T08:21:44.828] [INFO] cheese - inserting 1000 documents. first: Egregore and last: Category:Hotels in India -[2018-02-13T08:21:44.853] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:21:44.859] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:21:44.965] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:21:44.968] [INFO] cheese - inserting 1000 documents. first: The Big Tease and last: Tragedy of the Siskwit -[2018-02-13T08:21:45.103] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:21:45.202] [INFO] cheese - inserting 1000 documents. first: Category:1957 in Brazil and last: File:3rd Bass.jpg -[2018-02-13T08:21:45.307] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:21:45.441] [INFO] cheese - inserting 1000 documents. first: Paulus van de Perre and last: Portal:Mining/Selected picture/9 -[2018-02-13T08:21:45.461] [INFO] cheese - inserting 1000 documents. first: Skatechucks and last: .xn--p1ai -[2018-02-13T08:21:45.548] [INFO] cheese - inserting 1000 documents. first: Category:Chōfu, Tokyo and last: Coded mask -[2018-02-13T08:21:45.576] [INFO] cheese - inserting 1000 documents. first: Template:1924-winter-Olympic-stub and last: Gustave Tridon -[2018-02-13T08:21:45.572] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:21:45.635] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:21:45.663] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:45.724] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:21:45.857] [INFO] cheese - inserting 1000 documents. first: Category:International Criminal Tribunal for Rwanda prosecutors and last: Debre Selam -[2018-02-13T08:21:45.927] [INFO] cheese - inserting 1000 documents. first: KSLI and last: Virginia State Highway 221 -[2018-02-13T08:21:45.969] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:21:46.027] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:21:46.102] [INFO] cheese - inserting 1000 documents. first: Wartislaw II of Szczecin and last: Category:Musical groups from Vranje -[2018-02-13T08:21:46.139] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kathy Coleman and last: Karlslunds IF -[2018-02-13T08:21:46.144] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:21:46.308] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Matveev and last: Wikipedia:WikiProject Greater Boston Public Transit/Assessment -[2018-02-13T08:21:46.339] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:21:46.417] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:21:46.426] [INFO] cheese - inserting 1000 documents. first: File:Innis House Interior in Fredericksburg and Spotsylvania National Military Park.jpg and last: Tomás Balduino -[2018-02-13T08:21:46.499] [INFO] cheese - inserting 1000 documents. first: Charlotte Helene and last: Christian Vision -[2018-02-13T08:21:46.501] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:21:46.651] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/contrapontoeditora.com.br and last: Augustana Divinity School (Neuendettelsau) -[2018-02-13T08:21:46.659] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:21:46.677] [INFO] cheese - inserting 1000 documents. first: Mount Dale (Western Australia) and last: Ice House at Captiva Rocks -[2018-02-13T08:21:46.747] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:21:46.765] [INFO] cheese - inserting 1000 documents. first: Category:Colorado elections, 1964 and last: Category:1961–62 Missouri Valley Conference men's basketball season -[2018-02-13T08:21:46.764] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:21:46.835] [INFO] cheese - inserting 1000 documents. first: Brain aneurysm and last: Vanguard-class submarine -[2018-02-13T08:21:46.856] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:21:46.970] [INFO] cheese - inserting 1000 documents. first: Aspidoglossa korschefskyi and last: Category:Cartoonists by city -[2018-02-13T08:21:46.991] [INFO] cheese - batch complete in: 2.808 secs -[2018-02-13T08:21:47.085] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:21:47.180] [INFO] cheese - inserting 1000 documents. first: Comedie lyrique and last: List of country subdivisions by GDP (nominal) -[2018-02-13T08:21:47.211] [INFO] cheese - inserting 1000 documents. first: Hindolvestone railway station (England) and last: I-35 in Minnesota -[2018-02-13T08:21:47.219] [INFO] cheese - inserting 1000 documents. first: Cosmas of Maiuma and last: Chateau de Lavaux Sainte Anne -[2018-02-13T08:21:47.258] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:21:47.304] [INFO] cheese - inserting 1000 documents. first: Robert Frost Farm (Ripton, Vermont) and last: Gazon Maudit -[2018-02-13T08:21:47.322] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:21:47.320] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:21:47.412] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:21:47.420] [INFO] cheese - inserting 1000 documents. first: George Chaldakov and last: Ethnic groups in Thailand -[2018-02-13T08:21:47.436] [INFO] cheese - inserting 1000 documents. first: Rzhevskii District and last: Universal point set -[2018-02-13T08:21:47.487] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:21:47.494] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:21:47.673] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Northern Ireland by county and last: DS2 -[2018-02-13T08:21:47.717] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:21:47.857] [INFO] cheese - inserting 1000 documents. first: I-94 in Minnesota and last: Skin itch -[2018-02-13T08:21:47.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/monclerjacketsnews.com and last: Men's Soft Styles at WAKO World Championships 2007 Coimbra -[2018-02-13T08:21:47.935] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:47.979] [INFO] cheese - inserting 1000 documents. first: Esmond, ND and last: Sundacarpus amarus -[2018-02-13T08:21:47.997] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2013 March 17 and last: Eupithecia minorata -[2018-02-13T08:21:48.003] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:21:48.092] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:21:48.107] [INFO] cheese - inserting 1000 documents. first: Template:Fb team ground Brussels and last: Template:Syracuse Chiefs roster -[2018-02-13T08:21:48.130] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:21:48.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/MarkStreet and last: Template:1954 Philippine National Basketball Team -[2018-02-13T08:21:48.234] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:21:48.284] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:21:48.429] [INFO] cheese - inserting 1000 documents. first: Hell (novel) and last: Category:1996–97 in French women's football -[2018-02-13T08:21:48.494] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:21:48.553] [INFO] cheese - inserting 1000 documents. first: File:Jandek - One Foot in the North.jpg and last: Hugh Willoughby (sea captain) -[2018-02-13T08:21:48.575] [INFO] cheese - inserting 1000 documents. first: Eupithecia insignificata and last: Composers' Publishing Company -[2018-02-13T08:21:48.663] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:21:48.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Suisei (mythology) and last: Corvus jamaicensis -[2018-02-13T08:21:48.668] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:21:48.722] [INFO] cheese - inserting 1000 documents. first: Category:Capnophiles and last: Category:Airports in Aleutians East Borough, Alaska -[2018-02-13T08:21:48.741] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:21:48.822] [INFO] cheese - inserting 1000 documents. first: Quessoy and last: Nicki (singer) -[2018-02-13T08:21:48.841] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:21:48.891] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:21:49.014] [INFO] cheese - inserting 1000 documents. first: Winder Henry and last: Università per Stranieri di Perugia -[2018-02-13T08:21:49.092] [INFO] cheese - inserting 1000 documents. first: The Clash of Ignorance and last: List of bisexuality-related organizations and conferences -[2018-02-13T08:21:49.099] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:21:49.153] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:21:49.200] [INFO] cheese - inserting 1000 documents. first: Template:Gretna 2008 F.C. and last: Wikipedia:WikiProject Spam/LinkReports/quora.com -[2018-02-13T08:21:49.236] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julie Frith and last: Phalaenopsis lueddemanniana var. ochrata -[2018-02-13T08:21:49.351] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:21:49.357] [INFO] cheese - inserting 1000 documents. first: Isaac D'Israeli and last: Collier County, Florida -[2018-02-13T08:21:49.371] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:21:49.502] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Iraq and last: Keith Courage in Alpha Zones -[2018-02-13T08:21:49.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Psycho Dad and last: Obermorschwihr -[2018-02-13T08:21:49.587] [INFO] cheese - batch complete in: 2.596 secs -[2018-02-13T08:21:49.617] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:21:49.638] [INFO] cheese - inserting 1000 documents. first: Kenny Daglish Soccer Manager and last: Supplementary ∠s -[2018-02-13T08:21:49.718] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:21:49.828] [INFO] cheese - inserting 1000 documents. first: Walkaway Wind Farm and last: Anthony James Clarke, Baron Clarke of Hampstead -[2018-02-13T08:21:49.836] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:21:49.897] [INFO] cheese - inserting 1000 documents. first: Strandgade and last: Nossa Senhora Medianeira -[2018-02-13T08:21:49.917] [INFO] cheese - inserting 1000 documents. first: Peter village enclosure and last: Portal:Carboniferous/DYK/2 -[2018-02-13T08:21:49.959] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:21:49.978] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:21:49.956] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:21:50.155] [INFO] cheese - inserting 1000 documents. first: Rugby union in Lebanon and last: J. W. Sandstrom -[2018-02-13T08:21:50.284] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:21:50.382] [INFO] cheese - inserting 1000 documents. first: File:Tamiya TT-01D Chassis.jpg and last: Old Bradwell United F C -[2018-02-13T08:21:50.445] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:21:50.466] [INFO] cheese - inserting 1000 documents. first: Italy at the 2012 Summer Olympics and last: 2007 European Athletics Indoor Championships – Men's heptathlon -[2018-02-13T08:21:50.531] [INFO] cheese - inserting 1000 documents. first: Category:1820s in Mississippi and last: Jordan Canning -[2018-02-13T08:21:50.597] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:21:50.598] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:21:50.603] [INFO] cheese - inserting 1000 documents. first: Saint Mary's Battery (Marsalforn) and last: Australia at the 2015 Pacific Games -[2018-02-13T08:21:50.685] [INFO] cheese - inserting 1000 documents. first: Anthony James Clarke, Baron Clarke and last: Portal:Biography/Selected anniversaries/October 10 -[2018-02-13T08:21:50.689] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:21:50.787] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:21:50.844] [INFO] cheese - inserting 1000 documents. first: Template:Finnish mobile phone companies and last: Seth Macfarlane -[2018-02-13T08:21:50.857] [INFO] cheese - inserting 1000 documents. first: Old Bradwell United F. C. and last: P.L. Gairola -[2018-02-13T08:21:50.861] [INFO] cheese - inserting 1000 documents. first: Admiral Sir Hugh Tweedie and last: Perry Rosemond -[2018-02-13T08:21:50.893] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:21:50.966] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:21:50.978] [INFO] cheese - batch complete in: 1.361 secs -[2018-02-13T08:21:51.107] [INFO] cheese - inserting 1000 documents. first: Miami-Fort Lauderdale-West Palm Beach, FL Metropolitan Statistical Area and last: News Vendor Model -[2018-02-13T08:21:51.150] [INFO] cheese - inserting 1000 documents. first: Pakistani fashion and last: File:Phyllis McGinley.jpg -[2018-02-13T08:21:51.172] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:21:51.213] [INFO] cheese - inserting 1000 documents. first: Jiří Hrneček and last: Fact-checking websites -[2018-02-13T08:21:51.245] [INFO] cheese - inserting 1000 documents. first: Saint-Juvat and last: Wikipedia:WikiProject Spam/LinkReports/gkmap.moy.su -[2018-02-13T08:21:51.250] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:21:51.282] [INFO] cheese - inserting 1000 documents. first: John Beckett QC and last: Modern Jazz Classics -[2018-02-13T08:21:51.320] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:21:51.333] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:21:51.405] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:21:51.557] [INFO] cheese - inserting 1000 documents. first: Life Left to Go and last: Dovedale Baptist Church -[2018-02-13T08:21:51.620] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:21:51.650] [INFO] cheese - inserting 1000 documents. first: Category:Football in Sikkim and last: File:Yansheui Township.png -[2018-02-13T08:21:51.680] [INFO] cheese - inserting 1000 documents. first: Seth Mcfarlane and last: UP Diliman Department of Computer Science -[2018-02-13T08:21:51.698] [INFO] cheese - inserting 1000 documents. first: The Beach (novel) and last: Ferdinand V of Spain -[2018-02-13T08:21:51.723] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:21:51.837] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:21:51.875] [INFO] cheese - inserting 1000 documents. first: Plymouth Argyle FC statistics and last: Wikipedia:Articles for deletion/TimeLETSystems -[2018-02-13T08:21:51.877] [INFO] cheese - inserting 1000 documents. first: Category:Baseball in Colombia and last: Ashley Green (footballer) -[2018-02-13T08:21:51.908] [INFO] cheese - batch complete in: 2.32 secs -[2018-02-13T08:21:51.946] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:21:51.989] [INFO] cheese - inserting 1000 documents. first: Category:Valleys of Northumberland and last: Untomia horista -[2018-02-13T08:21:52.033] [INFO] cheese - inserting 1000 documents. first: Template:NCSLC and last: SR 310 (VA) -[2018-02-13T08:21:52.065] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:21:52.121] [INFO] cheese - inserting 1000 documents. first: 2013 V-Varen Nagasaki season and last: Valentin Bianki -[2018-02-13T08:21:52.129] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:52.180] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:21:52.212] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:21:52.249] [INFO] cheese - inserting 1000 documents. first: List of Rhode Island counties and last: Loire Mk -[2018-02-13T08:21:52.355] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:21:52.554] [INFO] cheese - inserting 1000 documents. first: No Way Out (Porridge) and last: Category:WikiProject Malawi -[2018-02-13T08:21:52.637] [INFO] cheese - inserting 1000 documents. first: Vereinigung der gegenseitigen Bauernhilfe and last: St. Rita of Cascia -[2018-02-13T08:21:52.637] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:21:52.641] [INFO] cheese - inserting 1000 documents. first: Blazer (surname) and last: Category:Infrastructure in Tanzania -[2018-02-13T08:21:52.650] [INFO] cheese - inserting 1000 documents. first: Rainbow Flag and last: Doctor Light (comics) -[2018-02-13T08:21:52.675] [INFO] cheese - inserting 1000 documents. first: Kıznaz Türkeli and last: Wash It All Away -[2018-02-13T08:21:52.693] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:21:52.707] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:21:52.788] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:21:52.808] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:21:52.842] [INFO] cheese - inserting 1000 documents. first: VA-310 and last: Afonso, Prince of Beira -[2018-02-13T08:21:52.959] [INFO] cheese - inserting 1000 documents. first: Australian Rules Football in Scotland and last: Hassan Parhat -[2018-02-13T08:21:53.061] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:21:53.164] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:53.353] [INFO] cheese - inserting 1000 documents. first: Algebraic Reconstruction Technique and last: Ricardo Mejia Hernandez -[2018-02-13T08:21:53.389] [INFO] cheese - inserting 1000 documents. first: Charles Winters (journalist) and last: Trevor Findlay -[2018-02-13T08:21:53.443] [INFO] cheese - inserting 1000 documents. first: Sehnsucht (1921 film) and last: Category:Actresses from Fujian -[2018-02-13T08:21:53.453] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:21:53.521] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:21:53.541] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:21:53.580] [INFO] cheese - inserting 1000 documents. first: Walter Bingham (journalist) and last: Collinsium -[2018-02-13T08:21:53.709] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:21:53.820] [INFO] cheese - inserting 1000 documents. first: Gaming keyboard and last: Platanthera chlorantha var. grandiflora -[2018-02-13T08:21:53.838] [INFO] cheese - inserting 1000 documents. first: Category:Titles of Mary and last: Wikipedia:Articles for deletion/Bob program -[2018-02-13T08:21:53.858] [INFO] cheese - inserting 1000 documents. first: Electromagnetic modeling and last: Textil Mandiyú -[2018-02-13T08:21:53.888] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:21:53.984] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T08:21:53.994] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:21:54.008] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Zambia articles and last: Megumi Oji -[2018-02-13T08:21:54.160] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:21:54.217] [INFO] cheese - inserting 1000 documents. first: Folk metal and last: Biot–Savart law -[2018-02-13T08:21:54.275] [INFO] cheese - inserting 1000 documents. first: Collinsium ciliosum and last: Dwaram Mallikarjun Reddy -[2018-02-13T08:21:54.367] [INFO] cheese - inserting 1000 documents. first: Needlecraft and last: File:TXE1 Common Control 1.JPG -[2018-02-13T08:21:54.403] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:21:54.481] [INFO] cheese - inserting 1000 documents. first: Category:Huracán Valencia CF managers and last: File:Six Finger Satellite - The Pigeon Is the Most Popular Bird.jpg -[2018-02-13T08:21:54.483] [INFO] cheese - batch complete in: 2.575 secs -[2018-02-13T08:21:54.569] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:21:54.692] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T08:21:54.922] [INFO] cheese - inserting 1000 documents. first: PGP disk and last: Category:Capdown albums -[2018-02-13T08:21:55.057] [INFO] cheese - inserting 1000 documents. first: Ōji Megumi and last: R P Keigwin -[2018-02-13T08:21:55.056] [INFO] cheese - inserting 1000 documents. first: Boydville and last: Brzonkala v. Polytechnic Institute and State University -[2018-02-13T08:21:55.114] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:21:55.196] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:21:55.205] [INFO] cheese - inserting 1000 documents. first: Category:Oregon Country and last: Letchery -[2018-02-13T08:21:55.323] [INFO] cheese - inserting 1000 documents. first: Meyer Dwass and last: Sotiris Delis -[2018-02-13T08:21:55.352] [INFO] cheese - inserting 1000 documents. first: 2012-13 Central African Republic conflict and last: Kota Maidanam -[2018-02-13T08:21:55.357] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T08:21:55.448] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:21:55.624] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:21:55.646] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:21:55.734] [INFO] cheese - inserting 1000 documents. first: National Soccer League 1998–99 and last: Blackbrow bleak -[2018-02-13T08:21:55.805] [INFO] cheese - inserting 1000 documents. first: Vehicle registration plates of European Union and last: Haversin Castle -[2018-02-13T08:21:55.809] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:21:55.961] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:21:56.066] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian Preston North End F.C. fans and last: Beyond Boundaries -[2018-02-13T08:21:56.101] [INFO] cheese - inserting 1000 documents. first: R P Patnaik and last: Category:Mid-importance Lesotho articles -[2018-02-13T08:21:56.215] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:21:56.256] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:21:56.371] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/July 15, 2015 and last: Wikipedia:WikiProject Spam/Local/homewetbar.com -[2018-02-13T08:21:56.395] [INFO] cheese - inserting 1000 documents. first: American College of Greece (Deere College) and last: Branched-chain oxo acid dehydrogenase kinase (phosphorylating) -[2018-02-13T08:21:56.503] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:21:56.578] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:21:56.658] [INFO] cheese - inserting 1000 documents. first: Louis Silas and last: Spencer Joshua Alwyne Compton, 2nd Marquess of Northampton -[2018-02-13T08:21:56.719] [INFO] cheese - inserting 1000 documents. first: File:Page Two – Sings a Collection of Her Most Famous Songs cover.jpg and last: Category:Categories by locality in Japan -[2018-02-13T08:21:56.820] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:21:56.830] [INFO] cheese - inserting 1000 documents. first: Havré Castle and last: ByNet -[2018-02-13T08:21:56.831] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:21:56.903] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:21:56.960] [INFO] cheese - inserting 1000 documents. first: FL-13 and last: Disney Channel Original Movies (DCOMs) -[2018-02-13T08:21:57.073] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:21:57.097] [INFO] cheese - inserting 1000 documents. first: YFT and last: Glyptoscorpius -[2018-02-13T08:21:57.119] [INFO] cheese - inserting 1000 documents. first: List of FIFA Club World Championship and Club World Cup finals and last: Template:1995 Big Ten Conference baseball standings -[2018-02-13T08:21:57.129] [INFO] cheese - inserting 1000 documents. first: Template:User in US-MN and last: Category:1944 establishments in the French colonial empire -[2018-02-13T08:21:57.172] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:21:57.214] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:21:57.309] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:21:57.492] [INFO] cheese - inserting 1000 documents. first: Taylor County, Florida and last: SOM -[2018-02-13T08:21:57.591] [INFO] cheese - inserting 1000 documents. first: Book:Platonism, Aristotelianism, and Thomism and last: Category:Islands of Ceredigion -[2018-02-13T08:21:57.622] [INFO] cheese - inserting 1000 documents. first: Amy Gibson and last: File:The Mercenaries 3D.jpg -[2018-02-13T08:21:57.659] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:21:57.712] [INFO] cheese - inserting 1000 documents. first: Sharon Freeman and last: King's Domain, Melbourne -[2018-02-13T08:21:57.745] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Zakofal and last: Disco Infiltrator -[2018-02-13T08:21:57.763] [INFO] cheese - batch complete in: 3.28 secs -[2018-02-13T08:21:57.783] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:21:57.791] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:21:57.943] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:21:57.952] [INFO] cheese - inserting 1000 documents. first: Portal:Feminism/box-footer and last: Coventry and North Warwickshire (European Parliament constituency) -[2018-02-13T08:21:58.008] [INFO] cheese - inserting 1000 documents. first: File:Visions 1993.jpg and last: Alain de Greef -[2018-02-13T08:21:58.078] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:21:58.090] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:21:58.225] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian practitioners of Brazilian jiu-jitsu and last: Molyneux Nepean, 2nd Baronet -[2018-02-13T08:21:58.342] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:21:58.635] [INFO] cheese - inserting 1000 documents. first: Jordanita budensis and last: Donald Pellmann -[2018-02-13T08:21:58.699] [INFO] cheese - inserting 1000 documents. first: Andre Beauneveu and last: EMD GP40-2L(W) -[2018-02-13T08:21:58.711] [INFO] cheese - inserting 1000 documents. first: Erisort and last: Sergey Lapin (police officer) -[2018-02-13T08:21:58.839] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:21:58.864] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:21:58.937] [INFO] cheese - batch complete in: 2.034 secs -[2018-02-13T08:21:58.973] [INFO] cheese - inserting 1000 documents. first: Lieutenant Governor of Grenada and last: Route 74 (New York) -[2018-02-13T08:21:59.104] [INFO] cheese - inserting 1000 documents. first: Father of the Constitution and last: Category:Suzuki engines -[2018-02-13T08:21:59.116] [INFO] cheese - inserting 1000 documents. first: Template:Paris Metro/Station/doc and last: ᵟ -[2018-02-13T08:21:59.161] [INFO] cheese - inserting 1000 documents. first: Years in Malta and last: Portal:Paleontology/On this day/February 12 -[2018-02-13T08:21:59.178] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:21:59.289] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:21:59.300] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:21:59.309] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:21:59.537] [INFO] cheese - inserting 1000 documents. first: Prince Bovoradej and last: Albert Elijah Dunning -[2018-02-13T08:21:59.575] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:21:59.637] [INFO] cheese - inserting 1000 documents. first: Daily Record and last: O26 -[2018-02-13T08:21:59.672] [INFO] cheese - inserting 1000 documents. first: Category:1995–96 Midwestern Collegiate Conference men's basketball season and last: MTR KTT (Kowloon Through Train) -[2018-02-13T08:21:59.704] [INFO] cheese - inserting 1000 documents. first: Kokmuiža Manor and last: Inline four engine -[2018-02-13T08:21:59.778] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:21:59.800] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:21:59.863] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:21:59.950] [INFO] cheese - inserting 1000 documents. first: Portal:Paleontology/On this day/February 13 and last: List of years in Denmark -[2018-02-13T08:21:59.961] [INFO] cheese - inserting 1000 documents. first: Valea Orății River (Teleajen) and last: Wikipedia:Articles for deletion/Richard Muhammad -[2018-02-13T08:22:00.059] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:22:00.087] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:22:00.149] [INFO] cheese - inserting 1000 documents. first: Self-organizing map and last: Elliptical orbit -[2018-02-13T08:22:00.268] [INFO] cheese - inserting 1000 documents. first: Joe benitez and last: Lympstone -[2018-02-13T08:22:00.358] [INFO] cheese - inserting 1000 documents. first: Rayleigh-Bénard convection and last: Requiem: The Grim Harvest -[2018-02-13T08:22:00.389] [INFO] cheese - batch complete in: 2.626 secs -[2018-02-13T08:22:00.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2013 March 25 and last: Ngulu language (Mozambique) -[2018-02-13T08:22:00.428] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:22:00.479] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:22:00.568] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:22:00.649] [INFO] cheese - inserting 1000 documents. first: Kamon Tatsuo and last: Lincoln Highway in California -[2018-02-13T08:22:00.737] [INFO] cheese - inserting 1000 documents. first: Kings Never Die and last: Religions of Brazil -[2018-02-13T08:22:00.766] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:22:00.819] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:22:00.899] [INFO] cheese - inserting 1000 documents. first: Portal:Mammals/Selected pictures/1 and last: File:Terry Duckworth.jpg -[2018-02-13T08:22:00.973] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:22:01.110] [INFO] cheese - inserting 1000 documents. first: House at 3609 Via de la Reina and last: Skull Creek -[2018-02-13T08:22:01.139] [INFO] cheese - inserting 1000 documents. first: St. Louis Saints and last: File:Humphry'slogoStokePark.jpg -[2018-02-13T08:22:01.193] [INFO] cheese - inserting 1000 documents. first: Joseph T. Goodman and last: Category:Research and development in the United Kingdom -[2018-02-13T08:22:01.244] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:22:01.250] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T08:22:01.320] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:22:01.473] [INFO] cheese - inserting 1000 documents. first: List of Loveline episodes (2003) and last: Category:Torpedoes of Russia -[2018-02-13T08:22:01.510] [INFO] cheese - inserting 1000 documents. first: Mudanjiang and last: National Special Security Events -[2018-02-13T08:22:01.561] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:22:01.634] [INFO] cheese - inserting 1000 documents. first: File:Saio genji.jpg and last: Wikipedia:Version 1.0 Editorial Team/Biography (arts and entertainment) articles by quality/133 -[2018-02-13T08:22:01.696] [INFO] cheese - batch complete in: 1.268 secs -[2018-02-13T08:22:01.721] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:22:01.903] [INFO] cheese - inserting 1000 documents. first: Black Hills Ambush and last: Wikipedia:WikiProject Television/TUGS task force/Article alerts/Archive -[2018-02-13T08:22:01.917] [INFO] cheese - inserting 1000 documents. first: Dan McDonnell and last: Nefteiuganski Raion -[2018-02-13T08:22:01.989] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:22:02.068] [INFO] cheese - inserting 1000 documents. first: Delbert Tibbs and last: Category:Sports venues in Livingston County, New York -[2018-02-13T08:22:02.103] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:22:02.202] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:22:02.449] [INFO] cheese - inserting 1000 documents. first: De Branges space and last: Heung-Gil Yun -[2018-02-13T08:22:02.571] [INFO] cheese - inserting 1000 documents. first: Cat poo and last: Reid and Sigrist RS 1 -[2018-02-13T08:22:02.593] [INFO] cheese - batch complete in: 1.343 secs -[2018-02-13T08:22:02.661] [INFO] cheese - inserting 1000 documents. first: Jon McLaughlan and last: Crixás River -[2018-02-13T08:22:02.659] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:22:02.821] [INFO] cheese - inserting 1000 documents. first: Bolton council election 1980 and last: Gujarati (Unicode block) -[2018-02-13T08:22:02.854] [INFO] cheese - inserting 1000 documents. first: File:TlnHD.png and last: Wikipedia:Articles for deletion/Credit Union Deposit Insurance Corporation (Prince Edward Island) -[2018-02-13T08:22:02.874] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:22:02.920] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:22:03.024] [INFO] cheese - inserting 1000 documents. first: Alcyone and last: Furies -[2018-02-13T08:22:03.035] [INFO] cheese - inserting 1000 documents. first: Lisa's Sax and last: São Tomé Province -[2018-02-13T08:22:03.074] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:22:03.214] [INFO] cheese - batch complete in: 1.518 secs -[2018-02-13T08:22:03.304] [INFO] cheese - inserting 1000 documents. first: Battle of Camulodunum and last: S D Somasundaram -[2018-02-13T08:22:03.355] [INFO] cheese - batch complete in: 2.966 secs -[2018-02-13T08:22:03.476] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:22:03.518] [INFO] cheese - inserting 1000 documents. first: Heung-gil Yun and last: Burke Baker Planetarium -[2018-02-13T08:22:03.605] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:22:03.622] [INFO] cheese - inserting 1000 documents. first: North Carolina gubernatorial election, 1992 and last: Karri Narayana Rao -[2018-02-13T08:22:03.657] [INFO] cheese - inserting 1000 documents. first: Category:Aeroprogress aircraft and last: Category:1970s establishments in Dominica -[2018-02-13T08:22:03.735] [INFO] cheese - inserting 1000 documents. first: Masdevallia swertiifolia and last: Wikipedia:WikiProject Trains/ICC valuations/Oshkosh Transportation Company -[2018-02-13T08:22:03.756] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:22:03.804] [INFO] cheese - batch complete in: 1.602 secs -[2018-02-13T08:22:03.867] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:22:04.167] [INFO] cheese - inserting 1000 documents. first: John Halligan and last: Erigeron cervinus -[2018-02-13T08:22:04.188] [INFO] cheese - inserting 1000 documents. first: Elahieh and last: Datin -[2018-02-13T08:22:04.223] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Gard and last: Category:Geography of Flintshire -[2018-02-13T08:22:04.228] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:22:04.319] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:22:04.308] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:22:04.378] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Birthdays/December 19 and last: Agdistis nigra -[2018-02-13T08:22:04.386] [INFO] cheese - inserting 1000 documents. first: Florence Roberts and last: Category:Wikipedians interested in Ornithology -[2018-02-13T08:22:04.504] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:22:04.521] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:22:04.620] [INFO] cheese - inserting 1000 documents. first: File:UWCLOGO.png and last: CBS Cincinnati -[2018-02-13T08:22:04.689] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:22:04.894] [INFO] cheese - inserting 1000 documents. first: The Cleveland YMCA School of Technology and last: Category:1328 establishments by country -[2018-02-13T08:22:04.931] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:22:04.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vanessa Hudgens Second Studio Album and last: Sydney George Smith -[2018-02-13T08:22:05.090] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:22:05.097] [INFO] cheese - inserting 1000 documents. first: Tim & Sid and last: Category:577 disestablishments in Asia -[2018-02-13T08:22:05.110] [INFO] cheese - inserting 1000 documents. first: Friend of Bill W. and last: Wikipedia:Articles for deletion/Log/2005 June 11 -[2018-02-13T08:22:05.172] [INFO] cheese - inserting 1000 documents. first: Alazopeptin and last: Category:Wikipedians by alma mater: West Virginia -[2018-02-13T08:22:05.255] [INFO] cheese - batch complete in: 2.181 secs -[2018-02-13T08:22:05.342] [INFO] cheese - inserting 1000 documents. first: Mantou's riflebird and last: Río Nigua -[2018-02-13T08:22:05.346] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:22:05.362] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:22:05.445] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:22:05.534] [INFO] cheese - inserting 1000 documents. first: The New Swiss Family Robinson and last: Pahino -[2018-02-13T08:22:05.558] [INFO] cheese - inserting 1000 documents. first: Portal:Mining/Did you know/17 and last: Category:Cliffs of Powys -[2018-02-13T08:22:05.569] [INFO] cheese - inserting 1000 documents. first: Hipponax and last: Dom Pedro II -[2018-02-13T08:22:05.606] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:22:05.630] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:22:05.685] [INFO] cheese - inserting 1000 documents. first: Qatar national handball team and last: Powers Music School -[2018-02-13T08:22:05.735] [INFO] cheese - batch complete in: 2.38 secs -[2018-02-13T08:22:05.764] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:22:05.993] [INFO] cheese - inserting 1000 documents. first: Category:577 disestablishments by continent and last: Kooletah -[2018-02-13T08:22:06.017] [INFO] cheese - inserting 1000 documents. first: File:Smileage - Tabidachi no Haru ga Kita (Regular Edition, HKCN-50587) cover.jpg and last: Eupithecia pauliani -[2018-02-13T08:22:06.098] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:22:06.103] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:22:06.106] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians by alma mater: New Mexico and last: Wikipedia:Articles for deletion/Jayeeta Ghosh -[2018-02-13T08:22:06.138] [INFO] cheese - inserting 1000 documents. first: Beatrix Cenci and last: Hod Stuart -[2018-02-13T08:22:06.184] [INFO] cheese - inserting 1000 documents. first: Nigua River (Arroyo, Puerto Rico) and last: Wunnummin Lake -[2018-02-13T08:22:06.236] [INFO] cheese - inserting 1000 documents. first: Glounthaune railway station and last: Performance Application Programming Interface -[2018-02-13T08:22:06.264] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:22:06.324] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:22:06.342] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:22:06.417] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:22:06.463] [INFO] cheese - inserting 1000 documents. first: Bromfenac and last: Erigeron lassenianus -[2018-02-13T08:22:06.566] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:22:06.731] [INFO] cheese - inserting 1000 documents. first: Chesnut and last: ቹ -[2018-02-13T08:22:06.749] [INFO] cheese - inserting 1000 documents. first: File:The Three Friends and Jerry.jpeg and last: Wikipedia:Articles for deletion/Amin Khoury -[2018-02-13T08:22:06.770] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:22:06.817] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:22:06.931] [INFO] cheese - inserting 1000 documents. first: Noel White (rugby league) and last: Wikipedia:Articles for deletion/Jack Cuozzo -[2018-02-13T08:22:07.062] [INFO] cheese - inserting 1000 documents. first: Kentucky State Highway 1 and last: Churchills -[2018-02-13T08:22:07.097] [INFO] cheese - inserting 1000 documents. first: José Ernesto Ochoa and last: FusionReactor -[2018-02-13T08:22:07.164] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:22:07.246] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:22:07.278] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:22:07.311] [INFO] cheese - inserting 1000 documents. first: Cases (wine) and last: Fort Ransom State Park -[2018-02-13T08:22:07.430] [INFO] cheese - inserting 1000 documents. first: Royal Hungarian Opera House and last: David Buckner -[2018-02-13T08:22:07.474] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:22:07.476] [INFO] cheese - inserting 1000 documents. first: ቺ and last: Music Concierge -[2018-02-13T08:22:07.572] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:22:07.601] [INFO] cheese - inserting 1000 documents. first: Leo Davies and last: Daang Hari LRT Station -[2018-02-13T08:22:07.599] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:22:07.672] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:22:07.892] [INFO] cheese - inserting 1000 documents. first: File:Ragtime film.jpg and last: Laelia lobata var. alba -[2018-02-13T08:22:07.982] [INFO] cheese - inserting 1000 documents. first: Manor Primary School and last: Eugenie Besserer -[2018-02-13T08:22:07.999] [INFO] cheese - inserting 1000 documents. first: Saint Kitts and Nevis/Geography and last: Music notation -[2018-02-13T08:22:07.980] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:22:08.030] [INFO] cheese - inserting 1000 documents. first: Goguette and last: Election board -[2018-02-13T08:22:08.068] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:22:08.118] [INFO] cheese - inserting 1000 documents. first: Esmailabad, Bardsir and last: File:ErbilAirport logo.jpg -[2018-02-13T08:22:08.117] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:22:08.127] [INFO] cheese - inserting 1000 documents. first: John Johnstone (baseball) and last: Wikipedia:WikiProject Spam/LinkReports/support.us.dell.com -[2018-02-13T08:22:08.166] [INFO] cheese - inserting 1000 documents. first: Category:320s by continent and last: Voigtlander Bessa R2M -[2018-02-13T08:22:08.232] [INFO] cheese - batch complete in: 2.496 secs -[2018-02-13T08:22:08.281] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:08.285] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:22:08.302] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:22:08.437] [INFO] cheese - inserting 1000 documents. first: Lajos Csordák and last: Hillsview, SD -[2018-02-13T08:22:08.512] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:22:08.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/How to dominate at ludo and last: Spathoglottis augustorum -[2018-02-13T08:22:08.627] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:22:08.748] [INFO] cheese - inserting 1000 documents. first: City Learning Centre and last: Two Family House -[2018-02-13T08:22:08.789] [INFO] cheese - inserting 1000 documents. first: Cosina Voigtländer Bessa R2M and last: Randy Bean -[2018-02-13T08:22:08.807] [INFO] cheese - inserting 1000 documents. first: Ben Hanowski and last: Katie: My Beautiful Face -[2018-02-13T08:22:08.841] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/William Chilufya and last: The Social Animal (Brooks book) -[2018-02-13T08:22:08.847] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:22:08.861] [INFO] cheese - inserting 1000 documents. first: Maine Republican caucuses, 2008 and last: Steinberg-Dorfl -[2018-02-13T08:22:08.893] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:22:08.916] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:22:08.976] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:22:08.992] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:09.142] [INFO] cheese - inserting 1000 documents. first: March 31 (Orthodox Liturgics) and last: Vienna Sezession -[2018-02-13T08:22:09.185] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:22:09.303] [INFO] cheese - inserting 1000 documents. first: Spathoglottis rosea and last: Red Bopple Nut -[2018-02-13T08:22:09.467] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:22:09.486] [INFO] cheese - inserting 1000 documents. first: Powiat ropczycko-sedziszowski and last: Powiat gostynski -[2018-02-13T08:22:09.544] [INFO] cheese - inserting 1000 documents. first: File:Listen to the Man.jpg and last: Reproduction system -[2018-02-13T08:22:09.547] [INFO] cheese - inserting 1000 documents. first: St. Matthias and last: Wikipedia:Templates for deletion/Log/2006 October 12 -[2018-02-13T08:22:09.559] [INFO] cheese - inserting 1000 documents. first: Raja Shivaji Vidyalaya and last: Csák (surname) -[2018-02-13T08:22:09.563] [INFO] cheese - inserting 1000 documents. first: 2010-11 Bosnia and Herzegovina Hockey League season and last: Trump Organization -[2018-02-13T08:22:09.564] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:22:09.620] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:22:09.639] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:22:09.694] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:22:09.703] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:22:09.809] [INFO] cheese - inserting 1000 documents. first: A Real Dead One and last: Geocarpa groundnut -[2018-02-13T08:22:09.856] [INFO] cheese - inserting 1000 documents. first: Sniglet and last: Antiochus I Soter -[2018-02-13T08:22:09.884] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:22:09.966] [INFO] cheese - batch complete in: 1.733 secs -[2018-02-13T08:22:10.092] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/i17.photobucket.com and last: Daniel's Frog -[2018-02-13T08:22:10.110] [INFO] cheese - inserting 1000 documents. first: Dia Kensetsu and last: Wikipedia:Articles for deletion/Crimson & Catharsis -[2018-02-13T08:22:10.181] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:22:10.191] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:22:10.253] [INFO] cheese - inserting 1000 documents. first: Kaleef Wyatt and last: Old Kalevala -[2018-02-13T08:22:10.295] [INFO] cheese - inserting 1000 documents. first: St Bartholomew's Church, Goodnestone and last: Two Lines Oblique Down, Variation III (Indianapolis) -[2018-02-13T08:22:10.307] [INFO] cheese - inserting 1000 documents. first: D. C. Armory and last: File:Riverstage Lblock.jpg -[2018-02-13T08:22:10.347] [INFO] cheese - inserting 1000 documents. first: File:YesterdayOnceMoreAlbum.jpg and last: Tsuri-daiko -[2018-02-13T08:22:10.371] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:22:10.406] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:22:10.440] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:22:10.596] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:22:10.708] [INFO] cheese - inserting 1000 documents. first: Japhethite and last: Arthur Shaw (athlete) -[2018-02-13T08:22:10.846] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:22:10.924] [INFO] cheese - inserting 1000 documents. first: Category:People executed by Turkey by hanging and last: Siva I of Anuradhapura -[2018-02-13T08:22:10.980] [INFO] cheese - inserting 1000 documents. first: File:Dave Matthews Band - Grey Street.ogg and last: MQST -[2018-02-13T08:22:10.980] [INFO] cheese - inserting 1000 documents. first: Pistruieni and last: Chotýšany -[2018-02-13T08:22:11.018] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:22:11.095] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:22:11.101] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:22:11.222] [INFO] cheese - inserting 1000 documents. first: Out Goin' Cattin' (song) and last: Category:Honourable citizens of Khanty-Mansi Autonomous Okrug -[2018-02-13T08:22:11.288] [INFO] cheese - inserting 1000 documents. first: Constanze Backes and last: Harold Charles International Airport -[2018-02-13T08:22:11.368] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:22:11.436] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:22:11.487] [INFO] cheese - inserting 1000 documents. first: Glyptothorax and last: Wesley Butters -[2018-02-13T08:22:11.563] [INFO] cheese - inserting 1000 documents. first: Tsuen Wan Government Secondary School and last: Portal:Trains/Featured picture candidates/8FSTMARTINS23.5.66RNC.JPG -[2018-02-13T08:22:11.586] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:22:11.642] [INFO] cheese - inserting 1000 documents. first: Famous gay lesbian and bisexual people and last: Ethal -[2018-02-13T08:22:11.710] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:22:11.713] [INFO] cheese - inserting 1000 documents. first: Fraudulent misrepresentation and last: Procris algirica -[2018-02-13T08:22:11.771] [INFO] cheese - inserting 1000 documents. first: Wheat silos in Western Australia and last: Category:Prefects of Loire-Atlantique -[2018-02-13T08:22:11.773] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:22:11.800] [INFO] cheese - batch complete in: 1.834 secs -[2018-02-13T08:22:11.889] [INFO] cheese - inserting 1000 documents. first: Mud - TV series and last: Category:Biosphere reserves of China -[2018-02-13T08:22:11.902] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:22:11.996] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:22:12.046] [INFO] cheese - inserting 1000 documents. first: Category:1520 disestablishments in the Aztec civilization and last: Joseph Penzer -[2018-02-13T08:22:12.161] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:22:12.176] [INFO] cheese - inserting 1000 documents. first: Frederick Flintstone and last: Wikipedia:WikiProject Military history/Academy/Writing an effective article introduction -[2018-02-13T08:22:12.287] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:22:12.323] [INFO] cheese - inserting 1000 documents. first: Nordic keyed fiddle and last: Phoebe Gilman -[2018-02-13T08:22:12.349] [INFO] cheese - inserting 1000 documents. first: Mist, OR and last: Oasis, IA -[2018-02-13T08:22:12.356] [INFO] cheese - inserting 1000 documents. first: Vigabatrinum and last: Benjamin F. Hake -[2018-02-13T08:22:12.402] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:22:12.436] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:22:12.450] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:22:12.615] [INFO] cheese - inserting 1000 documents. first: Joseph Penzer (Australian politician) and last: Typhoon Mamie (disambiguation) -[2018-02-13T08:22:12.730] [INFO] cheese - inserting 1000 documents. first: Pushin' Against a Stone and last: Wikipedia:Articles for deletion/Dbfree -[2018-02-13T08:22:12.745] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:22:12.819] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:22:12.831] [INFO] cheese - inserting 1000 documents. first: Lady Cassandra and last: Egyptian Cottonworm -[2018-02-13T08:22:12.967] [INFO] cheese - inserting 1000 documents. first: Gymnammodytes cicerelus and last: Muskeeg-Seepee Settlement, Alberta -[2018-02-13T08:22:12.967] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:22:13.075] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:22:13.237] [INFO] cheese - inserting 1000 documents. first: Jungle Boy (song) and last: Di vaio -[2018-02-13T08:22:13.259] [INFO] cheese - inserting 1000 documents. first: Oatman, AZ and last: Theoretical astronomy -[2018-02-13T08:22:13.280] [INFO] cheese - inserting 1000 documents. first: Anubal and last: Susana Giménez -[2018-02-13T08:22:13.363] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed Bedfordshire articles and last: Lucretia Edwards -[2018-02-13T08:22:13.378] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:22:13.348] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:22:13.477] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:22:13.495] [INFO] cheese - batch complete in: 1.695 secs -[2018-02-13T08:22:13.628] [INFO] cheese - inserting 1000 documents. first: University of Kampen (disambiguation) and last: Desmiphora circumspecta -[2018-02-13T08:22:13.645] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/Uirauna and last: Roxosul Tablets -[2018-02-13T08:22:13.673] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:13.814] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:22:13.927] [INFO] cheese - inserting 1000 documents. first: Ridgeback Resources and last: Committee to Promote Virtue and Prevent Vice -[2018-02-13T08:22:14.022] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:22:14.026] [INFO] cheese - inserting 1000 documents. first: Roxoxol and last: 1946–47 Texas Tech Red Raiders men's basketball team -[2018-02-13T08:22:14.085] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T08:22:14.140] [INFO] cheese - inserting 1000 documents. first: Caldecott Hill and last: MTA new york -[2018-02-13T08:22:14.190] [INFO] cheese - inserting 1000 documents. first: Powell River, VA and last: Piper PA-48 Enforcer -[2018-02-13T08:22:14.239] [INFO] cheese - inserting 1000 documents. first: File:Average Temperature for Millington.jpg and last: Category:Wendt aircraft -[2018-02-13T08:22:14.265] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:22:14.324] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:22:14.394] [INFO] cheese - batch complete in: 1.573 secs -[2018-02-13T08:22:14.416] [INFO] cheese - inserting 1000 documents. first: United People's Party (Poland) and last: Ivankovo, Croatia -[2018-02-13T08:22:14.455] [INFO] cheese - inserting 1000 documents. first: Aldazine and last: Haldol La -[2018-02-13T08:22:14.458] [INFO] cheese - inserting 1000 documents. first: Template:British Columbia provincial election, 1983/Vancouver Centre and last: Category:Unidentified murder victims in Maryland -[2018-02-13T08:22:14.534] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:22:14.541] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:22:14.580] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:22:14.812] [INFO] cheese - inserting 1000 documents. first: The Want (band) and last: Middle Miocene Disruption -[2018-02-13T08:22:14.816] [INFO] cheese - inserting 1000 documents. first: Beyblade Trading Card Game and last: Japanese Philosophy -[2018-02-13T08:22:14.898] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:22:14.903] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:22:14.912] [INFO] cheese - inserting 1000 documents. first: Haldol Solutab and last: Rubacina -[2018-02-13T08:22:14.915] [INFO] cheese - inserting 1000 documents. first: Thig and last: John II of Nassau -[2018-02-13T08:22:14.967] [INFO] cheese - inserting 1000 documents. first: Chloe piene and last: Luštěnice -[2018-02-13T08:22:15.016] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:22:14.984] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:22:15.137] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:22:15.153] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/BAE AUDIO and last: Candidates of the New South Wales colonial election, 1887 -[2018-02-13T08:22:15.205] [INFO] cheese - inserting 1000 documents. first: Template:Toronto municipal election, 2003/Position/Councillor, Ward Eight and last: Electronic Poeme -[2018-02-13T08:22:15.315] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:22:15.250] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:22:15.436] [INFO] cheese - inserting 1000 documents. first: Sedanium-R and last: Reloaded (The Demolition Crew Voodoo Remix Collection) (Alexz Johnson album) -[2018-02-13T08:22:15.474] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:22:15.506] [INFO] cheese - inserting 1000 documents. first: History of music and last: Powell Doctrine -[2018-02-13T08:22:15.583] [INFO] cheese - inserting 1000 documents. first: Resident Evil Code: Veronica X and last: Boyle Travers Finniss -[2018-02-13T08:22:15.619] [INFO] cheese - inserting 1000 documents. first: File:Sweethearts and Wives 1930 Poster.jpg and last: Category:Motorcycling people -[2018-02-13T08:22:15.686] [INFO] cheese - batch complete in: 2.189 secs -[2018-02-13T08:22:15.714] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:22:15.718] [INFO] cheese - inserting 1000 documents. first: Blue Water Studios and last: Piazza Vittorio Emanuele II (Rome) -[2018-02-13T08:22:15.723] [INFO] cheese - inserting 1000 documents. first: Tolumnia guianensis and last: Americas Paralympic Committee -[2018-02-13T08:22:15.726] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:15.815] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:22:15.840] [INFO] cheese - inserting 1000 documents. first: Coat of Arms of the Orange Free State and last: Reudo -[2018-02-13T08:22:15.855] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:22:15.879] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:22:15.946] [INFO] cheese - inserting 1000 documents. first: Goriyoshi and last: 2015–16 Olympique de Marseille season -[2018-02-13T08:22:16.079] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:22:16.266] [INFO] cheese - inserting 1000 documents. first: Running Out of Time (Ozzy Osbourne song) and last: Wikipedia:Fact laundering -[2018-02-13T08:22:16.306] [INFO] cheese - inserting 1000 documents. first: Reudox and last: Template:Euxoa-stub -[2018-02-13T08:22:16.339] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:22:16.366] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:22:16.451] [INFO] cheese - inserting 1000 documents. first: Hsu ching cheng and last: US $50 -[2018-02-13T08:22:16.526] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:22:16.603] [INFO] cheese - inserting 1000 documents. first: WRC: World Rally Championship and last: Logny-lès-Aubenton -[2018-02-13T08:22:16.641] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alex Yuan and last: Little Lottery River -[2018-02-13T08:22:16.652] [INFO] cheese - inserting 1000 documents. first: Sawamin and last: Dani Jacobs -[2018-02-13T08:22:16.670] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:22:16.690] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T08:22:16.747] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:22:16.814] [INFO] cheese - inserting 1000 documents. first: Pkg-config and last: Masta Ace -[2018-02-13T08:22:16.868] [INFO] cheese - inserting 1000 documents. first: Al Reem Biosphere Reserve and last: Portal:Cretaceous/DYK/14 -[2018-02-13T08:22:16.905] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:22:16.977] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:22:16.997] [INFO] cheese - inserting 1000 documents. first: List of colleges & universities in Massachusetts and last: Polycycline -[2018-02-13T08:22:17.075] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T08:22:17.107] [INFO] cheese - inserting 1000 documents. first: Ricardo Morán (director) and last: Face2 Face (Babyface album) -[2018-02-13T08:22:17.179] [INFO] cheese - inserting 1000 documents. first: Clan Gayre and last: Canadian Institute of Health Information -[2018-02-13T08:22:17.182] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:22:17.283] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:22:17.390] [INFO] cheese - inserting 1000 documents. first: Alvin Plantinga and last: Xilonen -[2018-02-13T08:22:17.395] [INFO] cheese - inserting 1000 documents. first: Polyotic and last: Secorbate -[2018-02-13T08:22:17.403] [INFO] cheese - inserting 1000 documents. first: Tipsport arena and last: Attack of the Graveyard Ghouls -[2018-02-13T08:22:17.415] [INFO] cheese - inserting 1000 documents. first: Little Onahau River and last: SFU Peak -[2018-02-13T08:22:17.466] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:22:17.520] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:22:17.537] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:22:17.649] [INFO] cheese - batch complete in: 1.962 secs -[2018-02-13T08:22:17.757] [INFO] cheese - inserting 1000 documents. first: Portal:Cretaceous/DYK/15 and last: Category:Leiosaurids -[2018-02-13T08:22:17.874] [INFO] cheese - inserting 1000 documents. first: Tag League the Best and last: 1913-14 Galatasaray S.K. season -[2018-02-13T08:22:17.876] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:22:17.955] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:22:17.989] [INFO] cheese - inserting 1000 documents. first: Zapadnyy and last: Malamar 50 -[2018-02-13T08:22:18.015] [INFO] cheese - inserting 1000 documents. first: Cuna de lobos and last: Patagium -[2018-02-13T08:22:18.043] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:22:18.182] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:22:18.349] [INFO] cheese - inserting 1000 documents. first: 280 mm mortar M1939 (Br-5) and last: Jevany -[2018-02-13T08:22:18.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2015 July 3 and last: Category:High-importance Graffiti articles -[2018-02-13T08:22:18.385] [INFO] cheese - inserting 1000 documents. first: File:Rockslide.jpg and last: Thomas Croft -[2018-02-13T08:22:18.424] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/ros/munlist/konstantinovsky and last: Ranitidin Dyna -[2018-02-13T08:22:18.423] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:22:18.457] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:22:18.472] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:22:18.498] [INFO] cheese - inserting 1000 documents. first: Hercules and Xena – The Animated Movie: The Battle for Mount Olympus and last: Lyres (band) -[2018-02-13T08:22:18.512] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:22:18.560] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:22:18.572] [INFO] cheese - inserting 1000 documents. first: Melvin Fleur and last: Adelaide Eliza Ironside -[2018-02-13T08:22:18.727] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:22:18.757] [INFO] cheese - inserting 1000 documents. first: West Swanzey, NH and last: Embellishments (music) -[2018-02-13T08:22:18.869] [INFO] cheese - inserting 1000 documents. first: Ranitidin Helvepharm and last: Acetonyl -[2018-02-13T08:22:18.872] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:18.927] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:22:18.954] [INFO] cheese - inserting 1000 documents. first: Professional network service and last: S. H. E -[2018-02-13T08:22:18.990] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Graffiti articles and last: David M. Buck House -[2018-02-13T08:22:19.003] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:22:19.049] [INFO] cheese - inserting 1000 documents. first: Rooney River and last: North Fork Red River -[2018-02-13T08:22:19.062] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:22:19.131] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:22:19.140] [INFO] cheese - inserting 1000 documents. first: Curse of Blackmoor Manor and last: ឱ -[2018-02-13T08:22:19.214] [INFO] cheese - inserting 1000 documents. first: Acetophen and last: Pen-Vee K -[2018-02-13T08:22:19.249] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T08:22:19.274] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:22:19.385] [INFO] cheese - inserting 1000 documents. first: S. H. I. E. L. D. (Amalgam Comics) and last: Eights -[2018-02-13T08:22:19.405] [INFO] cheese - inserting 1000 documents. first: Keith Lander Best and last: Category:Wikipedian iaidoka -[2018-02-13T08:22:19.472] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:22:19.488] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:22:19.490] [INFO] cheese - inserting 1000 documents. first: Penapar-Vk and last: Boysen Dam -[2018-02-13T08:22:19.534] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T08:22:19.748] [INFO] cheese - inserting 1000 documents. first: North Pease River and last: 2008–2009 hadrosaur chewing study -[2018-02-13T08:22:19.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whie Malreaux and last: Xiong Shili -[2018-02-13T08:22:19.789] [INFO] cheese - inserting 1000 documents. first: Peripherine and last: China International Consumer Goods Fair -[2018-02-13T08:22:19.808] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T08:22:19.831] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:22:19.873] [INFO] cheese - inserting 1000 documents. first: Category:1950s crime film stubs and last: Parig -[2018-02-13T08:22:19.908] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:22:19.965] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:20.035] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Gadget-sidebar-ca-modern.js and last: Atlas CAVA -[2018-02-13T08:22:20.068] [INFO] cheese - inserting 1000 documents. first: Dar'a Governorate and last: Dorfl -[2018-02-13T08:22:20.098] [INFO] cheese - inserting 1000 documents. first: Belmazol and last: Lucorteum Sol -[2018-02-13T08:22:20.111] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:22:20.138] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:22:20.141] [INFO] cheese - inserting 1000 documents. first: Solidago pruinosa and last: Female-female competition -[2018-02-13T08:22:20.159] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T08:22:20.259] [INFO] cheese - inserting 1000 documents. first: Chicomecoatl and last: Polk County, Texas -[2018-02-13T08:22:20.274] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:22:20.392] [INFO] cheese - inserting 1000 documents. first: Category:Devonian arthropods and last: Sohran-e Vasat -[2018-02-13T08:22:20.394] [INFO] cheese - inserting 1000 documents. first: Trichosalpinx orbicularis and last: Acreage base -[2018-02-13T08:22:20.451] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:22:20.447] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:22:20.491] [INFO] cheese - batch complete in: 2.841 secs -[2018-02-13T08:22:20.685] [INFO] cheese - inserting 1000 documents. first: First contact (science fiction) and last: Wikipedia:WikiProject Orphanage/Orphaned Articles/T -[2018-02-13T08:22:20.755] [INFO] cheese - inserting 1000 documents. first: Luteal Hormone and last: Thieves by Law -[2018-02-13T08:22:20.811] [INFO] cheese - inserting 1000 documents. first: Category:Radio stations established in 1934 and last: Noirval -[2018-02-13T08:22:20.890] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:22:20.929] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:22:21.048] [INFO] cheese - inserting 1000 documents. first: Mulberry River Bridge (disambiguation) and last: Santi Biagio e Carlo ai Catinari -[2018-02-13T08:22:21.045] [INFO] cheese - inserting 1000 documents. first: Legislative district of Surigao del Norte and last: Number in Chinese culture -[2018-02-13T08:22:21.065] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:22:21.136] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:22:21.280] [INFO] cheese - inserting 1000 documents. first: Category:Air and Space Manufacturing aircraft and last: Eupithecia ridiculata -[2018-02-13T08:22:21.292] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:22:21.474] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:22:21.542] [INFO] cheese - inserting 1000 documents. first: Category:Documentary films about surfing and last: Velká Buková -[2018-02-13T08:22:21.689] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:22:21.883] [INFO] cheese - inserting 1000 documents. first: Qaqortoq Museum and last: Lift strut -[2018-02-13T08:22:22.016] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:22:22.080] [INFO] cheese - inserting 1000 documents. first: Red vines and last: File:Maxwell relax spectra.PNG -[2018-02-13T08:22:22.082] [INFO] cheese - inserting 1000 documents. first: Nouart and last: Portal:Anarchism/Anniversaries/January/January 29 -[2018-02-13T08:22:22.162] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:22:22.226] [INFO] cheese - inserting 1000 documents. first: A Christmas Sing with Bing Around the World and last: Category:Articles written from a fan's POV -[2018-02-13T08:22:22.299] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T08:22:22.300] [INFO] cheese - inserting 1000 documents. first: Gardiner Historic District (Gardiner, Oregon) and last: Ortet -[2018-02-13T08:22:22.366] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:22:22.428] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:22:22.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-10-30/Interwiki report and last: Orignolles -[2018-02-13T08:22:22.562] [INFO] cheese - inserting 1000 documents. first: Category:Plays by Seamus Heaney and last: File:Riceboy.jpg -[2018-02-13T08:22:22.705] [INFO] cheese - batch complete in: 1.413 secs -[2018-02-13T08:22:22.752] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T08:22:23.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mrtvshow/Archive and last: Template:Manitoba provincial election, 2011/Dauphin -[2018-02-13T08:22:23.037] [INFO] cheese - inserting 1000 documents. first: Category:Articles written like resumes and last: Category:18th-century disestablishments in the Old Swiss Confederacy -[2018-02-13T08:22:23.066] [INFO] cheese - inserting 1000 documents. first: Bechara Choucair and last: Viburnum farreri -[2018-02-13T08:22:23.075] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:23.119] [INFO] cheese - inserting 1000 documents. first: Bagneux-la-Fosse and last: Salinas Airport -[2018-02-13T08:22:23.137] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:22:23.151] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:22:23.192] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:22:23.274] [INFO] cheese - inserting 1000 documents. first: Pantodon buchholzi and last: E941 -[2018-02-13T08:22:23.325] [INFO] cheese - inserting 1000 documents. first: Internet Locator Server and last: The free software movement -[2018-02-13T08:22:23.413] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:22:23.420] [INFO] cheese - inserting 1000 documents. first: Wilderness house literary review and last: Utah State Route 83 -[2018-02-13T08:22:23.438] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:22:23.529] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:22:23.623] [INFO] cheese - inserting 1000 documents. first: Superlinear convergence and last: Template:Olympic venues weightlifting -[2018-02-13T08:22:23.677] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:22:23.684] [INFO] cheese - inserting 1000 documents. first: Category:1940 in Asian sport and last: Less-than symbol -[2018-02-13T08:22:23.715] [INFO] cheese - inserting 1000 documents. first: File:1972 All-Ireland Senior Hurling Championship Final.jpg and last: Frank Eric Lloyd -[2018-02-13T08:22:23.797] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:22:23.842] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:22:23.927] [INFO] cheese - inserting 1000 documents. first: Fontcouverte, Aude and last: Frozen (House) -[2018-02-13T08:22:23.988] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:22:24.173] [INFO] cheese - inserting 1000 documents. first: E942 and last: Plymouth Blitz -[2018-02-13T08:22:24.220] [INFO] cheese - inserting 1000 documents. first: Baptist Youth and last: File:FK Palilulac.png -[2018-02-13T08:22:24.238] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:22:24.273] [INFO] cheese - inserting 1000 documents. first: Leonora Knatchbull and last: Bharia people -[2018-02-13T08:22:24.333] [INFO] cheese - inserting 1000 documents. first: Dormition Cathedral (disambiguation) and last: Critically Endangered species -[2018-02-13T08:22:24.335] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:22:24.347] [INFO] cheese - inserting 1000 documents. first: File:Logo of Royal Central College - Polonnaruwa.png and last: File:Supersoft.svg -[2018-02-13T08:22:24.353] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:22:24.419] [INFO] cheese - inserting 1000 documents. first: Less than bracket and last: Hoanib River -[2018-02-13T08:22:24.459] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:22:24.499] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:22:24.543] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:22:24.628] [INFO] cheese - inserting 1000 documents. first: Miyamoto-san and last: Neubois -[2018-02-13T08:22:24.671] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:22:24.701] [INFO] cheese - inserting 1000 documents. first: Pecos County, Texas and last: Port Laoise -[2018-02-13T08:22:24.803] [INFO] cheese - inserting 1000 documents. first: Rusko Selo and last: Pardes Hanna-Karkur Railway Station -[2018-02-13T08:22:24.884] [INFO] cheese - batch complete in: 4.393 secs -[2018-02-13T08:22:24.909] [INFO] cheese - inserting 1000 documents. first: Kazakhstan national beach soccer team and last: Charles Person -[2018-02-13T08:22:24.911] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:22:24.939] [INFO] cheese - inserting 1000 documents. first: File:Candon Civic Center.jpg and last: Zoo Botanical Park Dois Irmãos -[2018-02-13T08:22:24.990] [INFO] cheese - inserting 1000 documents. first: Alternating diagram and last: Sar Asiab, Jiroft -[2018-02-13T08:22:24.991] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:22:25.105] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:22:25.109] [INFO] cheese - inserting 1000 documents. first: Category:People from Selston and last: List of The Best Show with Tom Scharpling episodes -[2018-02-13T08:22:25.161] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:22:25.246] [INFO] cheese - inserting 1000 documents. first: Urago and last: Vin -[2018-02-13T08:22:25.265] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:22:25.548] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T08:22:25.601] [INFO] cheese - inserting 1000 documents. first: Neugartheim-Ittlenheim and last: Point au Gaul -[2018-02-13T08:22:25.699] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:22:25.797] [INFO] cheese - inserting 1000 documents. first: 19th Cavalry Regiment (United States) and last: Sawbwa Barb -[2018-02-13T08:22:25.817] [INFO] cheese - inserting 1000 documents. first: Paasiku and last: Linerider -[2018-02-13T08:22:25.836] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:22:25.856] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:22:25.896] [INFO] cheese - inserting 1000 documents. first: RPP (disambiguation) and last: Кипелов (band) -[2018-02-13T08:22:26.007] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:22:26.059] [INFO] cheese - inserting 1000 documents. first: WhoaVerse and last: Category:Cenozoic geochronology -[2018-02-13T08:22:26.195] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:22:26.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Bible/Watchlist and last: Taliesin III -[2018-02-13T08:22:26.323] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:22:26.464] [INFO] cheese - inserting 1000 documents. first: Point Lance and last: Category:FA-Class Robotics articles -[2018-02-13T08:22:26.468] [INFO] cheese - inserting 1000 documents. first: Count of Cavour and last: Category:Belgian expatriate rugby union players -[2018-02-13T08:22:26.548] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:22:26.547] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:22:26.553] [INFO] cheese - inserting 1000 documents. first: Big Brother (Suomi) and last: Table of planets and dwarf planets in the solar system -[2018-02-13T08:22:26.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NUKE and last: ESAKE A1 Ethniki 2008–09 -[2018-02-13T08:22:26.664] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:22:26.669] [INFO] cheese - inserting 1000 documents. first: Bacacay, Albay and last: Wikipedia:Articles for deletion/We Are the Eighties -[2018-02-13T08:22:26.717] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:22:26.791] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:22:26.829] [INFO] cheese - inserting 1000 documents. first: 1st arrondissement of Marseille and last: Performace Operational analysis -[2018-02-13T08:22:26.853] [INFO] cheese - inserting 1000 documents. first: Lamellicornia and last: Template:Australia Squad Ashes 1886-87 -[2018-02-13T08:22:26.905] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:22:26.973] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:22:27.027] [INFO] cheese - inserting 1000 documents. first: John Tucker (merchant trader) and last: William Frances Schey -[2018-02-13T08:22:27.081] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:22:27.139] [INFO] cheese - inserting 1000 documents. first: Sugeng Wayudi and last: Saadat Hasan Manto (TV series) -[2018-02-13T08:22:27.173] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:22:27.303] [INFO] cheese - inserting 1000 documents. first: Melanie Papalia and last: Wikipedia:Files for deletion/2011 April 9 -[2018-02-13T08:22:27.346] [INFO] cheese - inserting 1000 documents. first: Calgary Cardinals and last: Prentiss Oakley -[2018-02-13T08:22:27.362] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:22:27.388] [INFO] cheese - inserting 1000 documents. first: Template:England Squad Ashes 1886-87 and last: La Course à l'échalote -[2018-02-13T08:22:27.506] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:22:27.513] [INFO] cheese - inserting 1000 documents. first: Gold-front and last: List of American recessions -[2018-02-13T08:22:27.523] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:22:27.607] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:22:27.715] [INFO] cheese - inserting 1000 documents. first: St. Severin, Keitum and last: Category:2008 in Hungarian sport -[2018-02-13T08:22:27.730] [INFO] cheese - inserting 1000 documents. first: Equador and last: Campbell Brown -[2018-02-13T08:22:27.813] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:22:27.829] [INFO] cheese - inserting 1000 documents. first: Template:Independent Ecological Movement/meta/color and last: Caroline Halle -[2018-02-13T08:22:27.870] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:22:27.948] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:22:28.124] [INFO] cheese - inserting 1000 documents. first: Powerade Zero and last: Integrist Party -[2018-02-13T08:22:28.138] [INFO] cheese - inserting 1000 documents. first: Drouillard and last: Muhammad Abdul Qayyum Khan -[2018-02-13T08:22:28.194] [INFO] cheese - inserting 1000 documents. first: Chac Uayab Xoc and last: Crofton Park, London, England -[2018-02-13T08:22:28.197] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:22:28.215] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:22:28.342] [INFO] cheese - inserting 1000 documents. first: Category:1961 establishments in Alaska and last: Hedgesville, Virginia -[2018-02-13T08:22:28.343] [INFO] cheese - inserting 1000 documents. first: Jerry Maygarden and last: Karjakin -[2018-02-13T08:22:28.399] [INFO] cheese - batch complete in: 3.515 secs -[2018-02-13T08:22:28.404] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:22:28.588] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:22:28.688] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class British Antarctic Territory articles and last: Sharks F. C. -[2018-02-13T08:22:28.720] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 2toy mora and last: What's the Time? -[2018-02-13T08:22:28.743] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:22:29.012] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:22:29.298] [INFO] cheese - inserting 1000 documents. first: St. Albans Diocese and last: Moi, Aust-Agder -[2018-02-13T08:22:29.316] [INFO] cheese - inserting 1000 documents. first: Tiffanie Ward and last: Sébastien Migné -[2018-02-13T08:22:29.375] [INFO] cheese - inserting 1000 documents. first: Category:Architects from Friuli-Venezia Giulia and last: 53-K -[2018-02-13T08:22:29.450] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:22:29.455] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:22:29.513] [INFO] cheese - inserting 1000 documents. first: Sharks FC and last: File:Iced Earth Overture of the Wicked.jpg -[2018-02-13T08:22:29.525] [INFO] cheese - batch complete in: 1.31 secs -[2018-02-13T08:22:29.600] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:22:29.656] [INFO] cheese - inserting 1000 documents. first: Otto IV of Wittelsbach and last: Nightstar (train) -[2018-02-13T08:22:29.686] [INFO] cheese - inserting 1000 documents. first: .xls and last: Boundary Stelae of Akhenaten -[2018-02-13T08:22:29.806] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:22:29.856] [INFO] cheese - batch complete in: 1.986 secs -[2018-02-13T08:22:29.971] [INFO] cheese - inserting 1000 documents. first: IEC 5009 and last: USAT Thomas F. Farrel, Jr. -[2018-02-13T08:22:30.134] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:22:30.238] [INFO] cheese - inserting 1000 documents. first: Mollestad and last: Dirac's theorem on cycles in k-connected graphs -[2018-02-13T08:22:30.271] [INFO] cheese - inserting 1000 documents. first: Roja Kootam (TV series) and last: Amrinder Singh Raja Warring -[2018-02-13T08:22:30.303] [INFO] cheese - inserting 1000 documents. first: Pat Bradley (boxer) and last: Ould Nouroudine -[2018-02-13T08:22:30.316] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:22:30.392] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:22:30.429] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:22:30.465] [INFO] cheese - inserting 1000 documents. first: Talleyville, Delaware and last: Category:Districts of Dong Nai Province -[2018-02-13T08:22:30.557] [INFO] cheese - inserting 1000 documents. first: County cup and last: Pithecia monhachus -[2018-02-13T08:22:30.592] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:22:30.690] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:22:30.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Coverage of Mathworld topics/N and last: The End (A Series of Unfortunate Events) -[2018-02-13T08:22:30.892] [INFO] cheese - inserting 1000 documents. first: Archbishop's Palace, Armagh and last: Category:Landforms of Loir-et-Cher -[2018-02-13T08:22:30.904] [INFO] cheese - inserting 1000 documents. first: Parallel Reduced Instruction Set Machine and last: Adipose Tissue -[2018-02-13T08:22:30.915] [INFO] cheese - inserting 1000 documents. first: Category:Former Mid-America Intercollegiate Athletics Association schools and last: Pseudepigraph -[2018-02-13T08:22:30.927] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:22:30.957] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:22:30.990] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:30.993] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:22:31.047] [INFO] cheese - inserting 1000 documents. first: Sucker punch (film) and last: List of World Heritage Sites by year of inscription -[2018-02-13T08:22:31.070] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kayky sthefany.zip.net and last: Solanum paniculatum -[2018-02-13T08:22:31.123] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:22:31.195] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:22:31.271] [INFO] cheese - inserting 1000 documents. first: Category:Latino templates and last: Quilmes de Mar del Plata -[2018-02-13T08:22:31.358] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:22:31.414] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 14 Business (Abbeville) and last: Fujinon XF 56mm F1.2 R -[2018-02-13T08:22:31.490] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:22:31.504] [INFO] cheese - inserting 1000 documents. first: Raymond Hill (musician) and last: National Register of Historic Places listings in Kenedy County, Texas -[2018-02-13T08:22:31.569] [INFO] cheese - inserting 1000 documents. first: Qatar Foundation and last: Australia in England in 2005 -[2018-02-13T08:22:31.575] [INFO] cheese - inserting 1000 documents. first: PSU South/Southwest College Street and PSU South/Southwest Jackson Street (MAX stations) and last: Hemipyrrha -[2018-02-13T08:22:31.589] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:31.651] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:22:31.722] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:22:31.771] [INFO] cheese - inserting 1000 documents. first: Malicious executables and last: Giou-de-Mamou -[2018-02-13T08:22:31.867] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Duisburg and last: Book:Deborah Cox -[2018-02-13T08:22:31.901] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:22:31.984] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:22:32.130] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Kinney County, Texas and last: Class 53 (disambiguation) -[2018-02-13T08:22:32.156] [INFO] cheese - inserting 1000 documents. first: Gateshead West (UK Parliament constituency) and last: File:Wmdata.png -[2018-02-13T08:22:32.172] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of artists who have resided in Brooklyn and last: Carl Rathjens -[2018-02-13T08:22:32.182] [INFO] cheese - inserting 1000 documents. first: Element 93 and last: Khazaran, Khazaria -[2018-02-13T08:22:32.202] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:22:32.208] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:22:32.254] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:22:32.263] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/thehealthtime.com and last: Neodesmodes -[2018-02-13T08:22:32.329] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:22:32.434] [INFO] cheese - batch complete in: 4.035 secs -[2018-02-13T08:22:32.530] [INFO] cheese - inserting 1000 documents. first: Western super Mare and last: Friedrich Amerling -[2018-02-13T08:22:32.568] [INFO] cheese - inserting 1000 documents. first: Girgols and last: Category:Stub-Class Paraguay articles -[2018-02-13T08:22:32.602] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:22:32.607] [INFO] cheese - inserting 1000 documents. first: Cleveland Elementary School shooting (disambiguation) and last: Croton japonicus -[2018-02-13T08:22:32.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Scotland national football team hat-tricks/archive1 and last: Tadeu Terra -[2018-02-13T08:22:32.646] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:22:32.673] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:22:32.715] [INFO] cheese - inserting 1000 documents. first: Madre de Dios (mine) and last: Helenium apterum -[2018-02-13T08:22:32.744] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:22:32.790] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:22:32.895] [INFO] cheese - inserting 1000 documents. first: Spaeth and last: Record Separator -[2018-02-13T08:22:32.983] [INFO] cheese - inserting 1000 documents. first: Neodontopera and last: 2010 U.S. Women's Open Golf Championship -[2018-02-13T08:22:32.991] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:22:33.047] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:22:33.146] [INFO] cheese - inserting 1000 documents. first: Deanthony Thomas and last: MEPs for Denmark 1984–1989 -[2018-02-13T08:22:33.161] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kenophobia and last: Aisne's 3rd constituency -[2018-02-13T08:22:33.205] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:22:33.208] [INFO] cheese - inserting 1000 documents. first: Category:1291 in the Holy Roman Empire and last: Nevado Sacsa Ananta -[2018-02-13T08:22:33.226] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:22:33.299] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:22:33.308] [INFO] cheese - inserting 1000 documents. first: Robe à l'Anglaise and last: Melittia chalconota -[2018-02-13T08:22:33.361] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:22:33.422] [INFO] cheese - inserting 1000 documents. first: Joe Varner and last: Archermos -[2018-02-13T08:22:33.501] [INFO] cheese - inserting 1000 documents. first: Zealand River and last: Eritrean Telecommunications Corporation -[2018-02-13T08:22:33.519] [INFO] cheese - inserting 1000 documents. first: Canada, Western and last: Mostaganem Airport -[2018-02-13T08:22:33.521] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:22:33.545] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:22:33.579] [INFO] cheese - inserting 1000 documents. first: MEPs for France 1984–1989 and last: Wilcox County Schools (Alabama) -[2018-02-13T08:22:33.640] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:22:33.672] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:22:33.851] [INFO] cheese - inserting 1000 documents. first: Nambooripad's natural partial order and last: Pterynotus fulgens -[2018-02-13T08:22:33.861] [INFO] cheese - inserting 1000 documents. first: H-62 and last: Formula Off Road -[2018-02-13T08:22:33.904] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:22:33.940] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:22:33.954] [INFO] cheese - inserting 1000 documents. first: Category:Hatakeyama clan and last: Santucho -[2018-02-13T08:22:34.064] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:22:34.103] [INFO] cheese - inserting 1000 documents. first: Wamberal Lagoon and last: Category:International speed skating competitions -[2018-02-13T08:22:34.217] [INFO] cheese - inserting 1000 documents. first: Category:Indoor arenas in Malaysia and last: File:Wild Lavander.JPG -[2018-02-13T08:22:34.251] [INFO] cheese - inserting 1000 documents. first: Tepexpan man and last: Blacklist (band) -[2018-02-13T08:22:34.262] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:22:34.292] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:22:34.379] [INFO] cheese - inserting 1000 documents. first: History of the Arabic alphabet / from French and last: Bombing of Hiroshima -[2018-02-13T08:22:34.421] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:22:34.500] [INFO] cheese - inserting 1000 documents. first: Template:User citizen Falkland Islands and last: 1976–77 Colchester United F.C. season -[2018-02-13T08:22:34.523] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:22:34.627] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:22:34.707] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2008 January 25 and last: Carl Marotte -[2018-02-13T08:22:34.818] [INFO] cheese - inserting 1000 documents. first: Mirna funk and last: Patriarch Alexander I of Alexandria -[2018-02-13T08:22:34.816] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:22:34.833] [INFO] cheese - inserting 1000 documents. first: Kirkwall airport and last: Osteocephalus pearsoni -[2018-02-13T08:22:34.886] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:22:34.900] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:22:35.099] [INFO] cheese - inserting 1000 documents. first: Ken Booth (academic) and last: Albert Cunha -[2018-02-13T08:22:35.118] [INFO] cheese - inserting 1000 documents. first: Victoria Dunlap and last: Smoky the Cow Horse -[2018-02-13T08:22:35.197] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:22:35.198] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:22:35.226] [INFO] cheese - inserting 1000 documents. first: Atomic authorization and last: Teaching for King Merikare -[2018-02-13T08:22:35.287] [INFO] cheese - inserting 1000 documents. first: Geology of Yorkshire and last: Willoughby-Eastlake City School District -[2018-02-13T08:22:35.317] [INFO] cheese - inserting 1000 documents. first: Muraviev-Amurskiy and last: JPI -[2018-02-13T08:22:35.332] [INFO] cheese - inserting 1000 documents. first: Parole camp and last: Wikipedia:Phishing e-mails -[2018-02-13T08:22:35.341] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:22:35.335] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:22:35.473] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:22:35.475] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:22:35.600] [INFO] cheese - inserting 1000 documents. first: Balanjar, Khazaria and last: Realencyclopädie der classischen Altertumswissenschaft -[2018-02-13T08:22:35.689] [INFO] cheese - inserting 1000 documents. first: 2004 Cape Verdean Football Championships and last: Phogat, Bhiwani -[2018-02-13T08:22:35.756] [INFO] cheese - batch complete in: 3.322 secs -[2018-02-13T08:22:35.778] [INFO] cheese - inserting 1000 documents. first: Heathrow (disambiguation) and last: Sinagoga mare -[2018-02-13T08:22:35.825] [INFO] cheese - inserting 1000 documents. first: Minnesota Zoological Garden and last: St Austell & Newquay -[2018-02-13T08:22:35.849] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:22:35.883] [INFO] cheese - inserting 1000 documents. first: Stefani Carter and last: Category:Drive Like Jehu -[2018-02-13T08:22:35.941] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:22:35.949] [INFO] cheese - inserting 1000 documents. first: Berthelet and last: The Tale of Neferkare and Sasenet -[2018-02-13T08:22:36.038] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:22:36.098] [INFO] cheese - inserting 1000 documents. first: 52 Motorised Division Torino and last: Eupithecia derogata -[2018-02-13T08:22:36.138] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:22:36.169] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:22:36.204] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:22:36.492] [INFO] cheese - inserting 1000 documents. first: T J Reid and last: Wikipedia:Articles for deletion/Alphacell -[2018-02-13T08:22:36.496] [INFO] cheese - inserting 1000 documents. first: Showstopper bug and last: Wikipedia:Articles for deletion/TAO (software) -[2018-02-13T08:22:36.594] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:22:36.664] [INFO] cheese - inserting 1000 documents. first: Super Hits (Peabo Bryson album) and last: Category:1966 in the Spanish Empire -[2018-02-13T08:22:36.664] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:22:36.768] [INFO] cheese - inserting 1000 documents. first: Choir of St George's Chapel, Windsor Castle and last: U.S. Highway 25E (Virginia) -[2018-02-13T08:22:36.779] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:22:36.865] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Phrygia and last: File:FStourposter.jpeg -[2018-02-13T08:22:36.881] [INFO] cheese - inserting 1000 documents. first: Makram N. Kaiser and last: Template:Fb team FIU men -[2018-02-13T08:22:36.935] [INFO] cheese - inserting 1000 documents. first: Eri Tanaka and last: Template:Frozenbyte -[2018-02-13T08:22:36.964] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:22:37.024] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:22:37.090] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:22:37.094] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:22:37.317] [INFO] cheese - inserting 1000 documents. first: Template:1972 Baseball HOF and last: File:Every Day's a Holiday 1937.jpg -[2018-02-13T08:22:37.409] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:22:37.489] [INFO] cheese - inserting 1000 documents. first: ChoroQ and last: Death and state funeral of JFK -[2018-02-13T08:22:37.547] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:22:37.605] [INFO] cheese - inserting 1000 documents. first: Palaui Island and last: Naturwaldreservat Wettersteinwald -[2018-02-13T08:22:37.636] [INFO] cheese - inserting 1000 documents. first: David Painter (disambiguation) and last: Category:Suspected Wikipedia sockpuppets of Lupe-340 -[2018-02-13T08:22:37.738] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:22:37.743] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:22:37.776] [INFO] cheese - inserting 1000 documents. first: U.S. Highway 25E in Virginia and last: Intimate Portrait -[2018-02-13T08:22:37.791] [INFO] cheese - inserting 1000 documents. first: 3rd Canadian Battalion (Toronto Regiment), CEF and last: NVLR -[2018-02-13T08:22:37.886] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:22:37.905] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:22:37.956] [INFO] cheese - inserting 1000 documents. first: John F. R. Kerr and last: Cook Shire Hall -[2018-02-13T08:22:38.077] [INFO] cheese - inserting 1000 documents. first: Khwarezmiyya and last: Papers -[2018-02-13T08:22:38.097] [INFO] cheese - batch complete in: 1.318 secs -[2018-02-13T08:22:38.166] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:22:38.335] [INFO] cheese - inserting 1000 documents. first: Category:Kishwaukee College and last: Enid, Oklahoma micropolitan area -[2018-02-13T08:22:38.454] [INFO] cheese - inserting 1000 documents. first: Funbag Animation Studios and last: Louise Bourgeois Boursier -[2018-02-13T08:22:38.455] [INFO] cheese - inserting 1000 documents. first: Once on This Island and last: Wikipedia:Articles for deletion/Twat -[2018-02-13T08:22:38.455] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:22:38.530] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:22:38.549] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:22:38.575] [INFO] cheese - inserting 1000 documents. first: Converting and last: Pressure volume work -[2018-02-13T08:22:38.664] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:22:38.734] [INFO] cheese - inserting 1000 documents. first: I Was Totally Destroying It and last: Pierre Nothomb -[2018-02-13T08:22:38.751] [INFO] cheese - inserting 1000 documents. first: Expectation hypothesis and last: Category:Track cycling at the 2015 Pan American Games -[2018-02-13T08:22:38.762] [INFO] cheese - inserting 1000 documents. first: 2008 Pattaya Women's Open – Doubles and last: Norman Uprichard -[2018-02-13T08:22:38.793] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:22:38.802] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:22:38.871] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:22:38.893] [INFO] cheese - inserting 1000 documents. first: Template:Iraq Squad 2000 AFC Asian Cup and last: Eupithecia kostjuki -[2018-02-13T08:22:39.009] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:22:39.045] [INFO] cheese - inserting 1000 documents. first: Fíjate bien and last: Wikipedia:WikiProject Spam/LinkReports/zo-osijek.hr -[2018-02-13T08:22:39.054] [INFO] cheese - inserting 1000 documents. first: Cornerstone Festival and last: The Plimsouls -[2018-02-13T08:22:39.116] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:22:39.178] [INFO] cheese - inserting 1000 documents. first: Patriarch Constantine III and last: Nycteras -[2018-02-13T08:22:39.223] [INFO] cheese - batch complete in: 3.467 secs -[2018-02-13T08:22:39.247] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T08:22:39.250] [INFO] cheese - inserting 1000 documents. first: Anthem (We Are the Fire) and last: Wikipedia:Articles for deletion/Fancies -[2018-02-13T08:22:39.350] [INFO] cheese - inserting 1000 documents. first: Psilosetia and last: 2009 Mercedes Cup -[2018-02-13T08:22:39.367] [INFO] cheese - inserting 1000 documents. first: Full figured model and last: Wikipedia:Articles for deletion/Vincent Hermany -[2018-02-13T08:22:39.369] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:22:39.439] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:22:39.519] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:22:39.532] [INFO] cheese - inserting 1000 documents. first: File:PREMIER COLLEGE.jpg and last: William FitzAlan, Lord of Oswestry -[2018-02-13T08:22:39.586] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:22:39.768] [INFO] cheese - inserting 1000 documents. first: Vice magazine and last: Champagne, Charente-Maritime -[2018-02-13T08:22:39.828] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:22:39.850] [INFO] cheese - inserting 1000 documents. first: Wyscig Dookola Mazowsza and last: Pothaipalle -[2018-02-13T08:22:39.935] [INFO] cheese - inserting 1000 documents. first: Érik Morales vs. Marco Antonio Barrera II and last: Category:1969 in the Netherlands Antilles -[2018-02-13T08:22:39.957] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:22:40.031] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:22:40.139] [INFO] cheese - inserting 1000 documents. first: Minor oilseeds and last: Pamiat Merkuria -[2018-02-13T08:22:40.141] [INFO] cheese - inserting 1000 documents. first: Day-for-a-year principle and last: Little Miss Shy -[2018-02-13T08:22:40.188] [INFO] cheese - inserting 1000 documents. first: Pseudobagrus wittenburgi and last: Category:Demolished buildings and structures in Dortmund -[2018-02-13T08:22:40.205] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:22:40.261] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:22:40.250] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:22:40.468] [INFO] cheese - inserting 1000 documents. first: File:Yeondong college logo.jpg and last: Wikipedia:Collaboration of the week/Midtown (Manhattan) -[2018-02-13T08:22:40.551] [INFO] cheese - inserting 1000 documents. first: 1884 Cleveland Blues season and last: Lord Barrymore -[2018-02-13T08:22:40.561] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:22:40.572] [INFO] cheese - inserting 1000 documents. first: Elavamkodu Desam and last: Generalized Multi-Protocol Label Switching -[2018-02-13T08:22:40.623] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:22:40.673] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:22:40.758] [INFO] cheese - inserting 1000 documents. first: The 100: A ranking of the most influential persons in history and last: Devon (England) -[2018-02-13T08:22:40.807] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:22:40.826] [INFO] cheese - inserting 1000 documents. first: Marvelman and last: Nagas -[2018-02-13T08:22:40.877] [INFO] cheese - inserting 1000 documents. first: Characters of Smash and last: Anton Rodgers (footballer) -[2018-02-13T08:22:40.970] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:40.973] [INFO] cheese - batch complete in: 1.75 secs -[2018-02-13T08:22:41.055] [INFO] cheese - inserting 1000 documents. first: Benjamin Stevens (cricketer) and last: Paris of China -[2018-02-13T08:22:41.106] [INFO] cheese - inserting 1000 documents. first: Little Miss Somersault and last: Cork (Parliament of Ireland constituency) -[2018-02-13T08:22:41.107] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:22:41.132] [INFO] cheese - inserting 1000 documents. first: Category:People from Siberia and last: Wikipedia:WikiProject Film/Review/FAR/Instructions -[2018-02-13T08:22:41.137] [INFO] cheese - inserting 1000 documents. first: O'Higgins family and last: Sagaga-Le-Falefa -[2018-02-13T08:22:41.206] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:22:41.218] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:22:41.256] [INFO] cheese - inserting 1000 documents. first: WrestleMania: All Grown Up and last: Category:Formula Two series -[2018-02-13T08:22:41.250] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:22:41.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/TamarNavrotzky and last: Bill Ritter (journalist) -[2018-02-13T08:22:41.355] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:22:41.415] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:22:41.477] [INFO] cheese - inserting 1000 documents. first: Category:Art by topic and last: Plank unit -[2018-02-13T08:22:41.543] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:22:41.863] [INFO] cheese - inserting 1000 documents. first: Romolo Valentino Benedetto Nati and last: Blockbuster Video Entertainment -[2018-02-13T08:22:41.917] [INFO] cheese - inserting 1000 documents. first: Tilgarsley and last: File:John Kerr.JPG -[2018-02-13T08:22:41.976] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:22:42.002] [INFO] cheese - inserting 1000 documents. first: Sound 360 and last: Wikipedia:Articles for deletion/Colonic Felon -[2018-02-13T08:22:42.034] [INFO] cheese - inserting 1000 documents. first: Vaimauga West and last: GBRT -[2018-02-13T08:22:42.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/Review/FC/Instructions and last: File:JasonJollinsPachaBsAs.jpg -[2018-02-13T08:22:42.150] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:22:42.197] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:22:42.231] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:22:42.293] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:22:42.390] [INFO] cheese - inserting 1000 documents. first: Steve Marriner and last: Trechus thomasbarri -[2018-02-13T08:22:42.470] [INFO] cheese - inserting 1000 documents. first: Dispatch News Service and last: West Preston -[2018-02-13T08:22:42.543] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:22:42.605] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:22:42.826] [INFO] cheese - inserting 1000 documents. first: Serpulorbis inopertus and last: Category:Ancient Hinduism -[2018-02-13T08:22:42.870] [INFO] cheese - inserting 1000 documents. first: Mclaren Mercedes SLR and last: Jane Moffet -[2018-02-13T08:22:42.874] [INFO] cheese - inserting 1000 documents. first: Ananta and last: Richmond Range National Park -[2018-02-13T08:22:42.886] [INFO] cheese - inserting 1000 documents. first: Touch typeing and last: Melbourne Girls' College -[2018-02-13T08:22:42.902] [INFO] cheese - inserting 1000 documents. first: Assize (England) and last: Cinygma -[2018-02-13T08:22:42.903] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:22:42.906] [INFO] cheese - inserting 1000 documents. first: Trechus thunderheadensis and last: Category:American emigrants to Honduras -[2018-02-13T08:22:42.961] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T08:22:43.029] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:22:43.036] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:22:43.088] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:22:43.151] [INFO] cheese - batch complete in: 2.178 secs -[2018-02-13T08:22:43.200] [INFO] cheese - inserting 1000 documents. first: An Minh District and last: Inherent bias -[2018-02-13T08:22:43.296] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:22:43.626] [INFO] cheese - inserting 1000 documents. first: Category:United States Department of Health and Human Services and last: Thomson's gazelle -[2018-02-13T08:22:43.667] [INFO] cheese - inserting 1000 documents. first: Gunars Saliņš and last: File:Redshirts Cover.jpg -[2018-02-13T08:22:43.705] [INFO] cheese - inserting 1000 documents. first: PBA Sportsmanship Award and last: File:Marco Polo sheep manuscript.jpg -[2018-02-13T08:22:43.707] [INFO] cheese - inserting 1000 documents. first: Randy Paul Gage and last: Bagrat of Tao -[2018-02-13T08:22:43.755] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:22:43.772] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:22:43.855] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:22:43.902] [INFO] cheese - inserting 1000 documents. first: Canadian federal election 2011 and last: Plain-trick game -[2018-02-13T08:22:43.910] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:22:43.931] [INFO] cheese - inserting 1000 documents. first: Harold Goodwin and last: TI Presents the P$C: 25 to Life -[2018-02-13T08:22:43.939] [INFO] cheese - inserting 1000 documents. first: Malsquando and last: Mel Martin -[2018-02-13T08:22:44.016] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:22:44.044] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:22:44.093] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:22:44.308] [INFO] cheese - inserting 1000 documents. first: CVS Pharmacies and last: Lake Spivey -[2018-02-13T08:22:44.392] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:22:44.456] [INFO] cheese - inserting 1000 documents. first: Nullapon B acid and last: Eccellenza Piedmont-Aosta Valley -[2018-02-13T08:22:44.484] [INFO] cheese - inserting 1000 documents. first: Bagrat of Tao (disambiguation) and last: The Understanding of Self and Identity -[2018-02-13T08:22:44.542] [INFO] cheese - inserting 1000 documents. first: Template:WWIISovAerosani and last: Love's a Loaded Gun -[2018-02-13T08:22:44.559] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:22:44.564] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:22:44.580] [INFO] cheese - inserting 1000 documents. first: 1930 Central American and Caribbean Games and last: DTOC -[2018-02-13T08:22:44.621] [INFO] cheese - inserting 1000 documents. first: The plantation complex in the Southeastern United States and last: Template:Thessaloniki Bus Route Map (No. 78N) -[2018-02-13T08:22:44.638] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:22:44.673] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:22:44.706] [INFO] cheese - inserting 1000 documents. first: 0-0 and last: Black Rob -[2018-02-13T08:22:44.728] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:22:44.846] [INFO] cheese - inserting 1000 documents. first: Non-ideal resistor and last: File:Falck logo.jpg -[2018-02-13T08:22:44.869] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:22:44.975] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:22:45.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Abu Dhabi articles by quality statistics and last: Emanuele Paterno -[2018-02-13T08:22:45.103] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:22:45.111] [INFO] cheese - inserting 1000 documents. first: Royal National Park and last: Jack Parsons (rocket engineer) -[2018-02-13T08:22:45.143] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Pembroke Athleta and last: Tommy Hunter CM O.Ont -[2018-02-13T08:22:45.281] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:22:45.307] [INFO] cheese - batch complete in: 2.155 secs -[2018-02-13T08:22:45.393] [INFO] cheese - inserting 1000 documents. first: Harris Teachers College and last: Category:Top-importance Inheritance Cycle articles -[2018-02-13T08:22:45.435] [INFO] cheese - inserting 1000 documents. first: Rented from local authorities and last: File:UniversalJuveniles.jpg -[2018-02-13T08:22:45.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 April 8 and last: Category:1961 in Indian sports -[2018-02-13T08:22:45.456] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:22:45.467] [INFO] cheese - inserting 1000 documents. first: Willink and last: File:Samba in Your Casa Album.jpeg -[2018-02-13T08:22:45.551] [INFO] cheese - inserting 1000 documents. first: Thorne Colliery FC and last: Jack Gilligan -[2018-02-13T08:22:45.556] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:22:45.561] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:22:45.638] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:22:45.655] [INFO] cheese - inserting 1000 documents. first: Thomas Hunter CM O.Ont and last: Davies, Thomas -[2018-02-13T08:22:45.660] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:22:45.730] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:22:45.753] [INFO] cheese - inserting 1000 documents. first: Federal tribunals in the United States and last: Matthias Ziegler -[2018-02-13T08:22:45.876] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:22:46.218] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Inheritance Cycle articles and last: Economic compass -[2018-02-13T08:22:46.234] [INFO] cheese - inserting 1000 documents. first: Oaxacania and last: List of birds of italy -[2018-02-13T08:22:46.267] [INFO] cheese - inserting 1000 documents. first: Category:1962 in Indian sports and last: Dinara, Bihar -[2018-02-13T08:22:46.335] [INFO] cheese - inserting 1000 documents. first: Dawson, Thomas and last: Unn (Bhiwani) -[2018-02-13T08:22:46.345] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:22:46.417] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:22:46.426] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:22:46.449] [INFO] cheese - inserting 1000 documents. first: Haute-Sangha and last: Varaždinske Toplice -[2018-02-13T08:22:46.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/snowathome.com and last: Hudson's Bay Company Archives -[2018-02-13T08:22:46.474] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:22:46.599] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:22:46.598] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:22:46.717] [INFO] cheese - inserting 1000 documents. first: Maneans and last: Iu-mein -[2018-02-13T08:22:46.850] [INFO] cheese - inserting 1000 documents. first: File:Ann Rinaldi - An Acquaintance with Darkness.jpeg and last: 209th pope -[2018-02-13T08:22:46.853] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:22:46.950] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:22:46.969] [INFO] cheese - inserting 1000 documents. first: Holy Week (album) and last: Arisa Sato (model) -[2018-02-13T08:22:47.006] [INFO] cheese - inserting 1000 documents. first: W.A.S.T.E. (Band) and last: Twelve romanesque churches of Cologne -[2018-02-13T08:22:47.042] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:22:47.112] [INFO] cheese - inserting 1000 documents. first: Semiaugmented seventh and last: Rapid City Area School District (South Dakota) -[2018-02-13T08:22:47.182] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:22:47.265] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:22:47.361] [INFO] cheese - inserting 1000 documents. first: Johnny Lozada and last: Shorter, Alabama -[2018-02-13T08:22:47.425] [INFO] cheese - inserting 1000 documents. first: Hoste da Reggio and last: The British Aerosol Manufacturers' Association -[2018-02-13T08:22:47.449] [INFO] cheese - inserting 1000 documents. first: 210th pope and last: Strictosidine b-glucosidase -[2018-02-13T08:22:47.469] [INFO] cheese - inserting 1000 documents. first: Khabees and last: White-eared hummingbird -[2018-02-13T08:22:47.538] [INFO] cheese - batch complete in: 2.231 secs -[2018-02-13T08:22:47.552] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:22:47.597] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:22:47.746] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:22:47.931] [INFO] cheese - inserting 1000 documents. first: 1940s in games and last: Princess Alexia of Greece and Denmark -[2018-02-13T08:22:47.968] [INFO] cheese - inserting 1000 documents. first: Masoud Roghani Zanjani and last: Category:Dutch real estate brokers -[2018-02-13T08:22:48.165] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T08:22:48.209] [INFO] cheese - inserting 1000 documents. first: Reunification of Vietnam and last: FC Dynamo-D Stavropol -[2018-02-13T08:22:48.226] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:22:48.339] [INFO] cheese - inserting 1000 documents. first: Furan (disambiguation) and last: Template:Year in various calendars/sandbox -[2018-02-13T08:22:48.457] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:22:48.504] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:22:48.650] [INFO] cheese - inserting 1000 documents. first: EC 3.2.1.105 and last: Teesdale District Council elections -[2018-02-13T08:22:48.764] [INFO] cheese - inserting 1000 documents. first: Don't Walk Away and last: Stefan Filipović (singer) -[2018-02-13T08:22:48.788] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:22:48.867] [INFO] cheese - inserting 1000 documents. first: Birkir Bjarnason and last: Harlan K. Ullman -[2018-02-13T08:22:48.914] [INFO] cheese - inserting 1000 documents. first: Category:Major League Baseball Record vs. opponents templates and last: Ekjp -[2018-02-13T08:22:48.912] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:22:49.016] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T08:22:49.058] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:22:49.246] [INFO] cheese - inserting 1000 documents. first: Thomas Underwood and last: Work Haven -[2018-02-13T08:22:49.287] [INFO] cheese - inserting 1000 documents. first: File:LogoUPACIFICO.gif and last: Wikipedia:Version 1.0 Editorial Team/Metalworking articles by quality/2 -[2018-02-13T08:22:49.324] [INFO] cheese - inserting 1000 documents. first: Pleinfeld station and last: Category:1940 in North Dakota -[2018-02-13T08:22:49.315] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:22:49.363] [INFO] cheese - inserting 1000 documents. first: Willibald Kreß and last: Euroleague 2007–08 Top 16 Group F -[2018-02-13T08:22:49.384] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:22:49.401] [INFO] cheese - inserting 1000 documents. first: Lincoln Perera and last: Figuralchor der Gedächtniskirche Stuttgart -[2018-02-13T08:22:49.417] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:22:49.430] [INFO] cheese - inserting 1000 documents. first: Artland (landscape) and last: Dromoland Castle Golf and Country Club -[2018-02-13T08:22:49.469] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:22:49.540] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:22:49.542] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:22:49.551] [INFO] cheese - inserting 1000 documents. first: Sacalinu Mic Island and last: Category:Hungarian musicians by instrument -[2018-02-13T08:22:49.649] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:22:49.942] [INFO] cheese - inserting 1000 documents. first: Category:1942 in North Dakota and last: Category:NA-Class Australia road transport articles -[2018-02-13T08:22:50.036] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battlefield 2 and last: WECC (FM) -[2018-02-13T08:22:50.038] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:22:50.049] [INFO] cheese - inserting 1000 documents. first: Portal:A Nightmare on Elm Street/Selected actor/4 and last: Category:Wikipedia oversighters -[2018-02-13T08:22:50.114] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:22:50.141] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:22:50.144] [INFO] cheese - inserting 1000 documents. first: Presentation at the Temple and last: Old Skool -[2018-02-13T08:22:50.203] [INFO] cheese - inserting 1000 documents. first: Category:History books about the Zulu Kingdom and last: File:Iss logo.gif -[2018-02-13T08:22:50.237] [INFO] cheese - inserting 1000 documents. first: Double Dragon II (disambiguation) and last: File:Rte2fmlogo.png -[2018-02-13T08:22:50.236] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:22:50.276] [INFO] cheese - inserting 1000 documents. first: Tuskegee, Alabama and last: Aqueous solution -[2018-02-13T08:22:50.331] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:22:50.339] [INFO] cheese - inserting 1000 documents. first: Antwone Quenton Fisher and last: People Who Use People -[2018-02-13T08:22:50.358] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:22:50.472] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:22:50.491] [INFO] cheese - inserting 1000 documents. first: Harbans Bhalla and last: Lauricocha Lake -[2018-02-13T08:22:50.491] [INFO] cheese - batch complete in: 2.952 secs -[2018-02-13T08:22:50.615] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:22:50.766] [INFO] cheese - inserting 1000 documents. first: Fort a la Corne and last: Portal:Current events/Bangladesh/Selected Article/Current -[2018-02-13T08:22:50.774] [INFO] cheese - inserting 1000 documents. first: Tukuma Apriņķis and last: Art. 519 codice penale -[2018-02-13T08:22:50.824] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:22:50.927] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:22:51.145] [INFO] cheese - inserting 1000 documents. first: Russian winters and last: Siw Karlström -[2018-02-13T08:22:51.171] [INFO] cheese - inserting 1000 documents. first: Texas Spur 729 and last: Bedl-i askeri -[2018-02-13T08:22:51.189] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:22:51.199] [INFO] cheese - inserting 1000 documents. first: Independent Macedonia sport hall and last: Kjartansson constant Q model -[2018-02-13T08:22:51.250] [INFO] cheese - inserting 1000 documents. first: Hot Tub lung and last: Georgi Lomaia -[2018-02-13T08:22:51.251] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:22:51.310] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:22:51.377] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:22:51.417] [INFO] cheese - inserting 1000 documents. first: Dark Indigo and last: Environmental Justice -[2018-02-13T08:22:51.515] [INFO] cheese - inserting 1000 documents. first: Keith Getty discography and last: Willem den Toom -[2018-02-13T08:22:51.544] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:22:51.578] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:22:51.583] [INFO] cheese - inserting 1000 documents. first: Siv Karlström and last: Template:Userbox Dead-end pages -[2018-02-13T08:22:51.675] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:22:51.729] [INFO] cheese - inserting 1000 documents. first: Vietnam tea and last: Viișoara, Mureș -[2018-02-13T08:22:51.787] [INFO] cheese - inserting 1000 documents. first: Spanish Conquistadors and last: Sanjiang, Qiandongnan -[2018-02-13T08:22:51.819] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:22:51.831] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:22:51.961] [INFO] cheese - inserting 1000 documents. first: Bukhara State Architectural Art Museum-Preserve and last: Shitenntu014d-ji pagoda -[2018-02-13T08:22:51.963] [INFO] cheese - inserting 1000 documents. first: Amendment 26 and last: Companhia União Fabril -[2018-02-13T08:22:52.040] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:22:52.057] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:22:52.123] [INFO] cheese - inserting 1000 documents. first: Edzo Toxopeus and last: Wikipedia:Featured picture candidates/USMC War Memorial Night -[2018-02-13T08:22:52.165] [INFO] cheese - inserting 1000 documents. first: Cow Oil and last: Stanley Gullan -[2018-02-13T08:22:52.191] [INFO] cheese - inserting 1000 documents. first: W227AW and last: U. S. Route 61 Business (Muscatine, Iowa) -[2018-02-13T08:22:52.223] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:22:52.332] [INFO] cheese - inserting 1000 documents. first: Dartmoor (disambiguation) and last: Wikipedia:Articles on suicides/FAQs -[2018-02-13T08:22:52.356] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:22:52.357] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:22:52.472] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:22:52.543] [INFO] cheese - inserting 1000 documents. first: Thomas Griffiths Wainewright and last: Turgay Seren -[2018-02-13T08:22:52.559] [INFO] cheese - inserting 1000 documents. first: Distilled water and last: Angels Camp, California -[2018-02-13T08:22:52.650] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:22:52.661] [INFO] cheese - inserting 1000 documents. first: Teresa Carpenter and last: Boulevard de l'Outaouais -[2018-02-13T08:22:52.715] [INFO] cheese - batch complete in: 2.223 secs -[2018-02-13T08:22:52.807] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:22:52.854] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox Atlantic 1914–1918 and last: File:Konk flares.jpg -[2018-02-13T08:22:52.918] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:22:52.967] [INFO] cheese - inserting 1000 documents. first: Chionodes scotodes and last: Federation Academic Classical style -[2018-02-13T08:22:52.969] [INFO] cheese - inserting 1000 documents. first: U. S. Route 61 and last: File:Official heights map.jpg -[2018-02-13T08:22:53.027] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:22:53.037] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:22:53.149] [INFO] cheese - inserting 1000 documents. first: Edward Henry Pedris and last: Template:Taxonomy/Sinosaurus -[2018-02-13T08:22:53.240] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:22:53.356] [INFO] cheese - inserting 1000 documents. first: Eranos, Greece and last: File:StatenIslandTech logo.png -[2018-02-13T08:22:53.438] [INFO] cheese - inserting 1000 documents. first: File:The Evolution of Calpurnia Tate.jpeg and last: Category:Dublin University Football Club -[2018-02-13T08:22:53.506] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:22:53.586] [INFO] cheese - inserting 1000 documents. first: Template:Paul Di'Anno and last: Cain, John -[2018-02-13T08:22:53.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Canadian football/Player pages format and last: Beto Carrero -[2018-02-13T08:22:53.595] [INFO] cheese - batch complete in: 1.537 secs -[2018-02-13T08:22:53.675] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:22:53.691] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:22:53.737] [INFO] cheese - inserting 1000 documents. first: Mermaid Man and Barnacle Boy (SpongeBob SquarePants) and last: Francis Walker (entomologist) -[2018-02-13T08:22:53.795] [INFO] cheese - inserting 1000 documents. first: Yevgeni Blokhin and last: Mowtowr-e Kal Mohammad Qanbari -[2018-02-13T08:22:53.810] [INFO] cheese - inserting 1000 documents. first: 33rd Primetime Emmy Awards and last: Incident (film) -[2018-02-13T08:22:53.840] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:22:53.910] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:22:53.984] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:22:54.238] [INFO] cheese - inserting 1000 documents. first: Cairns, John and last: Wikipedia:WikiProject Rutgers/Article alerts -[2018-02-13T08:22:54.305] [INFO] cheese - inserting 1000 documents. first: Category:Bicheiros and last: File:Debbs Potts.jpg -[2018-02-13T08:22:54.306] [INFO] cheese - inserting 1000 documents. first: Electrochemicals and last: West Virginia Route 1 -[2018-02-13T08:22:54.343] [INFO] cheese - inserting 1000 documents. first: Mowtowr-e Ali Ahmad Khalqpur and last: 24/Seven (Big Time Rush album) -[2018-02-13T08:22:54.386] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:22:54.432] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:22:54.449] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:22:54.485] [INFO] cheese - inserting 1000 documents. first: Pandoras Tower and last: Hereditary cystatin C amyloid angiopathy -[2018-02-13T08:22:54.486] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:22:54.627] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:22:54.648] [INFO] cheese - inserting 1000 documents. first: Fulton Street (IRT Broadway – Seventh Avenue Line) and last: Sura Penza -[2018-02-13T08:22:54.692] [INFO] cheese - inserting 1000 documents. first: Water (data page) and last: List of governors of the Straits Settlements -[2018-02-13T08:22:54.771] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:22:54.811] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:22:54.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Seton Hall University/Article alerts and last: Diplogon falcatum -[2018-02-13T08:22:54.963] [INFO] cheese - inserting 1000 documents. first: Qasemabad, Rudbar-e Jonubi and last: Category:Media in Sassari -[2018-02-13T08:22:54.985] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:55.008] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:22:55.105] [INFO] cheese - inserting 1000 documents. first: File:Mrs. America 1957.JPG and last: Lugny-Bourbonnais -[2018-02-13T08:22:55.152] [INFO] cheese - inserting 1000 documents. first: West Virginia Route 3 (1920s) and last: Quito Square -[2018-02-13T08:22:55.240] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:22:55.246] [INFO] cheese - inserting 1000 documents. first: Chrysargyron and last: Category:1833 establishments in Australia -[2018-02-13T08:22:55.248] [INFO] cheese - inserting 1000 documents. first: Paris Francesco Alghisi and last: Heinz Donhauser -[2018-02-13T08:22:55.262] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:22:55.319] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:22:55.349] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:22:55.443] [INFO] cheese - inserting 1000 documents. first: Diplogon villosum and last: John G. S. Buchanan -[2018-02-13T08:22:55.473] [INFO] cheese - inserting 1000 documents. first: George, South Africa and last: History of Timisoara -[2018-02-13T08:22:55.492] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:22:55.593] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:22:55.615] [INFO] cheese - inserting 1000 documents. first: Pariva Pranati and last: United States House of Representatives election in Wyoming, 1996 -[2018-02-13T08:22:55.693] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:22:55.750] [INFO] cheese - inserting 1000 documents. first: Arnold, California and last: Cherry Hills Village, Colorado -[2018-02-13T08:22:55.789] [INFO] cheese - inserting 1000 documents. first: C18H18Cl18 and last: Expanded Memory Manager -[2018-02-13T08:22:55.870] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:22:55.938] [INFO] cheese - inserting 1000 documents. first: United States Box Office Records and last: 17th Duke of York's Royal Canadian Hussars -[2018-02-13T08:22:55.962] [INFO] cheese - batch complete in: 3.246 secs -[2018-02-13T08:22:55.991] [INFO] cheese - inserting 1000 documents. first: Zatch Bell season 1 and last: Mullah Adahdad -[2018-02-13T08:22:56.004] [INFO] cheese - inserting 1000 documents. first: File:Transaero logo (2015).svg and last: MacKay, John -[2018-02-13T08:22:56.052] [INFO] cheese - inserting 1000 documents. first: Sofiya Gubaydulina and last: Slaveholder -[2018-02-13T08:22:56.055] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:22:56.055] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:22:56.094] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:22:56.095] [INFO] cheese - inserting 1000 documents. first: Lugny-Champagne and last: Yakov Eshpai -[2018-02-13T08:22:56.166] [INFO] cheese - inserting 1000 documents. first: Template:Bobsleigh at the 1994 Winter Olympics and last: Mo' Rock -[2018-02-13T08:22:56.189] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:22:56.202] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:22:56.307] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:22:56.434] [INFO] cheese - inserting 1000 documents. first: HA IL AZIZ AHMED AL MAYTHALI and last: Ap'khazet'is Avtonomiuri Respublika -[2018-02-13T08:22:56.498] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:22:56.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kobort Koffa and last: Robogals North America -[2018-02-13T08:22:56.676] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:22:56.768] [INFO] cheese - inserting 1000 documents. first: Keppels Column and last: Norrisian professor -[2018-02-13T08:22:56.870] [INFO] cheese - inserting 1000 documents. first: Said S. Samatar and last: File:Walla Walla locator-MJC.png -[2018-02-13T08:22:56.885] [INFO] cheese - inserting 1000 documents. first: Cussy-le-Châtel and last: Cavalese cable car disaster (1976) -[2018-02-13T08:22:56.943] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:22:56.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected copyright violations/2013-04-17 and last: Bosara errabunda -[2018-02-13T08:22:56.967] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:22:56.973] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:22:57.064] [INFO] cheese - inserting 1000 documents. first: Contus and last: Pierre Etienne Louis Dumont -[2018-02-13T08:22:57.066] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:22:57.109] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of AndreaMimi and last: Wikipedia:Version 1.0 Editorial Team/Festivals articles by quality log -[2018-02-13T08:22:57.173] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:22:57.193] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:22:57.309] [INFO] cheese - inserting 1000 documents. first: Dhanana and last: Arizona RedHawks -[2018-02-13T08:22:57.362] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:22:57.457] [INFO] cheese - inserting 1000 documents. first: Pontailler-sur-Saône and last: US Route 33 -[2018-02-13T08:22:57.486] [INFO] cheese - inserting 1000 documents. first: Jurrasic and last: Symon Archer -[2018-02-13T08:22:57.505] [INFO] cheese - inserting 1000 documents. first: Józef Aleksander Jablonowski and last: Slawomir Mrozek -[2018-02-13T08:22:57.506] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:22:57.538] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:22:57.586] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:22:57.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/loyaltyfacts.com and last: Elisabeh rohm -[2018-02-13T08:22:57.606] [INFO] cheese - inserting 1000 documents. first: Hypothalamic pituitary adrenal axis and last: Category:Churches in Chicot County, Arkansas -[2018-02-13T08:22:57.631] [INFO] cheese - inserting 1000 documents. first: Timothy McAuliffe and last: File:Le Moulin de Daudet Klaus Schulze Album.jpg -[2018-02-13T08:22:57.690] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:22:57.700] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:22:57.727] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:22:57.858] [INFO] cheese - inserting 1000 documents. first: Man of Straw (novel) and last: Wikipedia:WikiProject Spam/LinkReports/univistainsurance.com -[2018-02-13T08:22:57.903] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:22:57.921] [INFO] cheese - inserting 1000 documents. first: Skoda Superb and last: Gaddget -[2018-02-13T08:22:57.965] [INFO] cheese - inserting 1000 documents. first: Template:1972 Football HOF and last: Sainte-Verge -[2018-02-13T08:22:58.018] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:22:58.120] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:22:58.271] [INFO] cheese - inserting 1000 documents. first: File:Lbss chorus photo.jpg and last: Wikipedia:Version 1.0 Editorial Team/National Register of Historic Places articles by quality/2 -[2018-02-13T08:22:58.273] [INFO] cheese - inserting 1000 documents. first: Mainz Institute of Microtechnology and last: Wikipedia:Articles for deletion/Margaux with an x -[2018-02-13T08:22:58.300] [INFO] cheese - inserting 1000 documents. first: Category:Churches in Tanzania and last: James Wreford Watson -[2018-02-13T08:22:58.336] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:22:58.380] [INFO] cheese - inserting 1000 documents. first: File:Soundanddramacover.jpg and last: Wikipedia:Articles for deletion/Tim Coons -[2018-02-13T08:22:58.380] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:58.386] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:22:58.468] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:22:58.605] [INFO] cheese - inserting 1000 documents. first: Sean Ryan and last: Fritz and Chesster -[2018-02-13T08:22:58.632] [INFO] cheese - inserting 1000 documents. first: University College Dublin A. F. C. and last: Language class -[2018-02-13T08:22:58.645] [INFO] cheese - inserting 1000 documents. first: Joe Coleman (1970s pitcher) and last: McShane, John -[2018-02-13T08:22:58.651] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:22:58.694] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:22:58.751] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:22:58.839] [INFO] cheese - inserting 1000 documents. first: Columbine, Colorado and last: West Samoset, Florida -[2018-02-13T08:22:58.895] [INFO] cheese - inserting 1000 documents. first: Paskenta Band of Nomlaki Indians of California and last: 1933 Chesapeake Potomac hurricane -[2018-02-13T08:22:58.969] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:22:58.991] [INFO] cheese - inserting 1000 documents. first: Hezb-E-Islami Gulbuddin and last: Hrabovec nad Laborcom -[2018-02-13T08:22:59.052] [INFO] cheese - batch complete in: 3.09 secs -[2018-02-13T08:22:59.101] [INFO] cheese - inserting 1000 documents. first: Template:Super Cup of the Netherlands and last: 2013 Badminton Asia Championships -[2018-02-13T08:22:59.105] [INFO] cheese - inserting 1000 documents. first: Kane Miller Books and last: Imad Abdel Ghani Sabouni -[2018-02-13T08:22:59.122] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:22:59.205] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:22:59.239] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:22:59.281] [INFO] cheese - inserting 1000 documents. first: W D Caroe and last: Windermere Way -[2018-02-13T08:22:59.355] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:22:59.430] [INFO] cheese - inserting 1000 documents. first: McTaggart, John and last: Opinion polling for the Scottish Parliament election, 2016 -[2018-02-13T08:22:59.478] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:22:59.490] [INFO] cheese - inserting 1000 documents. first: File:MartinaMcBrideGreatestHits.jpg and last: Patrick Hayes -[2018-02-13T08:22:59.582] [INFO] cheese - inserting 1000 documents. first: Football League Cup 1960–61 and last: Lani McIntire -[2018-02-13T08:22:59.590] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:22:59.625] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:22:59.660] [INFO] cheese - inserting 1000 documents. first: Arthur Gaskin (squash player) and last: Sylvan Farms Vineyard -[2018-02-13T08:22:59.721] [INFO] cheese - inserting 1000 documents. first: Aghios Antonios and last: Jose de Jesus Corona -[2018-02-13T08:22:59.750] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:22:59.800] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:22:59.810] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Did you know?/12 and last: Godfrey Walusimbi -[2018-02-13T08:22:59.904] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:22:59.990] [INFO] cheese - inserting 1000 documents. first: File:Shafter.jpg and last: Fallacy of questionable analogy -[2018-02-13T08:23:00.020] [INFO] cheese - inserting 1000 documents. first: Draft:Alice Rebecca Appenzeller and last: 2018 FIFA World Cup broadcasting rights -[2018-02-13T08:23:00.051] [INFO] cheese - inserting 1000 documents. first: List of keyboardists and last: Koprivnica-Krizevci County -[2018-02-13T08:23:00.074] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:23:00.085] [INFO] cheese - inserting 1000 documents. first: Template:Mosques in Brunei and last: The Jonzun Crew -[2018-02-13T08:23:00.085] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:23:00.160] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:23:00.161] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:23:00.323] [INFO] cheese - inserting 1000 documents. first: Das sündige Dorf (disambiguation) and last: Category:Iranian football clubs 2011–12 season -[2018-02-13T08:23:00.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Inakube and last: Craft International -[2018-02-13T08:23:00.366] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:23:00.372] [INFO] cheese - inserting 1000 documents. first: Quiero Ser Como Tu and last: 1944 NFL Championship Game -[2018-02-13T08:23:00.386] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:23:00.474] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:23:00.611] [INFO] cheese - inserting 1000 documents. first: Jacob Hodges and last: Category:Landforms of West Attica -[2018-02-13T08:23:00.679] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:23:00.708] [INFO] cheese - inserting 1000 documents. first: Bor County and last: File:Thriller25.jpg -[2018-02-13T08:23:00.802] [INFO] cheese - inserting 1000 documents. first: Template:UNI deletion and last: File:Asturias president.jpg -[2018-02-13T08:23:00.814] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:00.896] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:23:00.986] [INFO] cheese - inserting 1000 documents. first: Inverness-Shire and last: Jamgon mipham rinpoche -[2018-02-13T08:23:00.987] [INFO] cheese - inserting 1000 documents. first: Category:1638 compositions and last: The grill -[2018-02-13T08:23:01.049] [INFO] cheese - inserting 1000 documents. first: Williams v Walker-Thomas Furniture Co and last: File:Burt Shotton.jpg -[2018-02-13T08:23:01.082] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:01.080] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:23:01.133] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:23:01.191] [INFO] cheese - inserting 1000 documents. first: Pour Que Tu M'aimes Encore and last: CA-12 -[2018-02-13T08:23:01.277] [INFO] cheese - inserting 1000 documents. first: File:Asubha Body Contemplation 1.png and last: Wikipedia:Articles for deletion/Vadasar -[2018-02-13T08:23:01.313] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:23:01.361] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:23:01.556] [INFO] cheese - inserting 1000 documents. first: Bad Malente-Gremsmühlen and last: McDonald & Co. -[2018-02-13T08:23:01.588] [INFO] cheese - inserting 1000 documents. first: Floirac, Lot and last: Anti-technology -[2018-02-13T08:23:01.632] [INFO] cheese - inserting 1000 documents. first: Vida!... and last: East Gate, British Columbia -[2018-02-13T08:23:01.641] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:23:01.655] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:23:01.683] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Sumbiar ítróttarfelag and last: Development of children -[2018-02-13T08:23:01.715] [INFO] cheese - inserting 1000 documents. first: Whitfield, Manatee County, Florida and last: Rossville, Georgia -[2018-02-13T08:23:01.715] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:23:01.795] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:23:01.829] [INFO] cheese - inserting 1000 documents. first: In the City (The Jam album) and last: Sebkha de Ndrhamcha -[2018-02-13T08:23:01.870] [INFO] cheese - batch complete in: 2.818 secs -[2018-02-13T08:23:01.900] [INFO] cheese - inserting 1000 documents. first: France at the 2015 World Aquatics Championships and last: File:Mildred Fahrni.jpg -[2018-02-13T08:23:01.921] [INFO] cheese - inserting 1000 documents. first: Henri Corbin and last: Minister of housing, spatial planning, and the environment -[2018-02-13T08:23:01.940] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:23:01.967] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:23:02.073] [INFO] cheese - inserting 1000 documents. first: Bite & Chew (Demo) and last: 1970 NCAA football season -[2018-02-13T08:23:02.073] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:23:02.095] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:23:02.192] [INFO] cheese - inserting 1000 documents. first: Selinsgrove, PA Micropolitan Statistical Area and last: Brooke Forrester (Brooke Logan) -[2018-02-13T08:23:02.220] [INFO] cheese - inserting 1000 documents. first: On The First Beat (TVB) and last: File:First Afro-Asian Games Logo and Mascot.PNG -[2018-02-13T08:23:02.257] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:23:02.301] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:23:02.375] [INFO] cheese - inserting 1000 documents. first: Category:Redirect-Class Universal Parks & Resorts articles and last: Template:POTD/2011-04-24 -[2018-02-13T08:23:02.445] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:23:02.453] [INFO] cheese - inserting 1000 documents. first: Whatever Happened to PJ Soles? and last: Orchard Wyndham -[2018-02-13T08:23:02.469] [INFO] cheese - inserting 1000 documents. first: Yang Huizhen and last: Category:1991 mass shootings in the United States -[2018-02-13T08:23:02.532] [INFO] cheese - inserting 1000 documents. first: Technical University of Crete and last: Cook Neilson -[2018-02-13T08:23:02.576] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:23:02.634] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:23:02.701] [INFO] cheese - inserting 1000 documents. first: Pavle Ivic and last: A.net -[2018-02-13T08:23:02.740] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:23:02.829] [INFO] cheese - inserting 1000 documents. first: Gainesville, TX Micropolitan Statistical Area and last: Category:1954 in Turkish sport -[2018-02-13T08:23:02.834] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:23:02.896] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:23:02.924] [INFO] cheese - inserting 1000 documents. first: Birther conspiracy and last: Bob Osborn -[2018-02-13T08:23:03.020] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:23:03.112] [INFO] cheese - inserting 1000 documents. first: Z Z Hill and last: 1967 US National Championships - Men's Singles -[2018-02-13T08:23:03.149] [INFO] cheese - inserting 1000 documents. first: Barbara Anderson (The Young And The Restless) and last: Template:Editnotices/Page/User talk:Chzz/Archive 31 -[2018-02-13T08:23:03.167] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:23:03.210] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:23:03.310] [INFO] cheese - inserting 1000 documents. first: Fray (comic) and last: Marcos Nicolás Delía -[2018-02-13T08:23:03.344] [INFO] cheese - inserting 1000 documents. first: Producer (film) and last: File:PlannedParenthood.JPG -[2018-02-13T08:23:03.372] [INFO] cheese - inserting 1000 documents. first: Category:1953 in Turkish sport and last: Leopold Ružicka -[2018-02-13T08:23:03.388] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:03.432] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:23:03.448] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:23:03.540] [INFO] cheese - inserting 1000 documents. first: Secret societies in Singapore and last: Iset River -[2018-02-13T08:23:03.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Milosppf/Serbian rock and last: Artillery Battalion -[2018-02-13T08:23:03.587] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:23:03.628] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:23:03.684] [INFO] cheese - inserting 1000 documents. first: Kellogg Airport and last: Category:Wikipedia requested maps of roads in New Mexico -[2018-02-13T08:23:03.764] [INFO] cheese - inserting 1000 documents. first: Galápagos four-Eyed blenny and last: Mongolian legislative election, 1981 -[2018-02-13T08:23:03.802] [INFO] cheese - inserting 1000 documents. first: Ibn Kurr and last: Shrubby daisybush -[2018-02-13T08:23:03.818] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:23:03.873] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:23:03.912] [INFO] cheese - inserting 1000 documents. first: Category:20th-century executions by Lithuania and last: El Guettar (Tunisia) -[2018-02-13T08:23:03.939] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:23:03.989] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:23:04.141] [INFO] cheese - inserting 1000 documents. first: P. W. Bridgman and last: 118401 Linear -[2018-02-13T08:23:04.202] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:23:04.221] [INFO] cheese - inserting 1000 documents. first: Electoral results for the Division of Gippsland and last: 1989 Virginia Slims of Indian Wells – Doubles -[2018-02-13T08:23:04.299] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:23:04.335] [INFO] cheese - inserting 1000 documents. first: National Natural Landmark and last: Fernand Pelloutier -[2018-02-13T08:23:04.402] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested maps of roads in North Dakota and last: Wikipedia:Articles for deletion/Techorate design -[2018-02-13T08:23:04.406] [INFO] cheese - inserting 1000 documents. first: Category:1917 establishments in Japan and last: Andrzejewska -[2018-02-13T08:23:04.417] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:23:04.444] [INFO] cheese - inserting 1000 documents. first: Trailing African daisy and last: Together (Christine Fan album) -[2018-02-13T08:23:04.446] [INFO] cheese - inserting 1000 documents. first: File:Manchester oxford road and palace theatre 01.jpg and last: Constituency NA-262 -[2018-02-13T08:23:04.454] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:23:04.478] [INFO] cheese - inserting 1000 documents. first: Between, Georgia and last: Victoria, Illinois -[2018-02-13T08:23:04.507] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:23:04.552] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:23:04.564] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:23:04.655] [INFO] cheese - batch complete in: 2.784 secs -[2018-02-13T08:23:04.715] [INFO] cheese - inserting 1000 documents. first: Asdfjkl; and last: Fidelity Fiduciary Bank -[2018-02-13T08:23:04.742] [INFO] cheese - inserting 1000 documents. first: Bull Smith and last: Nacional (Serbia) -[2018-02-13T08:23:04.840] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:23:04.867] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:23:05.139] [INFO] cheese - inserting 1000 documents. first: Battle of Radda and last: SC 11 (disambiguation) -[2018-02-13T08:23:05.172] [INFO] cheese - inserting 1000 documents. first: Francis Mallett and last: Vernois-lès-Belvoir -[2018-02-13T08:23:05.173] [INFO] cheese - inserting 1000 documents. first: Marina Loheit and last: Wikipedia:Reference desk/Archives/Miscellaneous/2011 April 22 -[2018-02-13T08:23:05.185] [INFO] cheese - inserting 1000 documents. first: Litton Das and last: Category:1523 in New Spain -[2018-02-13T08:23:05.227] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:23:05.257] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:23:05.271] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Ford.circles.gif and last: John Corabi -[2018-02-13T08:23:05.286] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:23:05.342] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:23:05.448] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:23:05.646] [INFO] cheese - inserting 1000 documents. first: Bonville, New South Wales and last: Category:Telecommunications companies of Denmark -[2018-02-13T08:23:05.704] [INFO] cheese - inserting 1000 documents. first: File:Family Album DVD cover.jpg and last: Molinos de Viento -[2018-02-13T08:23:05.722] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:23:05.741] [INFO] cheese - inserting 1000 documents. first: Sean Reynolds (disambiguation) and last: 𐎢 -[2018-02-13T08:23:05.829] [INFO] cheese - inserting 1000 documents. first: Le Vernoy and last: Portland–Montreal Pipe Line -[2018-02-13T08:23:05.837] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:23:05.854] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:23:05.873] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2011 April 22 and last: Ahmed Mukhtar Pasha -[2018-02-13T08:23:05.903] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:23:05.915] [INFO] cheese - inserting 1000 documents. first: Sant'Agostino, Lucca and last: Hemis Shukpachan -[2018-02-13T08:23:05.949] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:23:06.033] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:23:06.050] [INFO] cheese - inserting 1000 documents. first: Rivalry and last: Svatopluk Cech -[2018-02-13T08:23:06.112] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:23:06.298] [INFO] cheese - inserting 1000 documents. first: 𐎣 and last: France Angola relations -[2018-02-13T08:23:06.326] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:23:06.351] [INFO] cheese - inserting 1000 documents. first: Category:Telecommunications companies of Sweden and last: Little Black Heart -[2018-02-13T08:23:06.417] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:06.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Miss United Continent 2013 (2nd nomination) and last: Wikipedia:Sockpuppet investigations/220.240.44.143 -[2018-02-13T08:23:06.553] [INFO] cheese - inserting 1000 documents. first: File:WGI Dinner.jpg and last: Colgate, West Sussex -[2018-02-13T08:23:06.633] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:23:06.645] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:23:06.708] [INFO] cheese - inserting 1000 documents. first: بازئی and last: Daneu -[2018-02-13T08:23:06.755] [INFO] cheese - inserting 1000 documents. first: France – Angola relations and last: Template:TFA title/April 26, 2013 -[2018-02-13T08:23:06.809] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:23:06.887] [INFO] cheese - inserting 1000 documents. first: Babak and last: Work-flow -[2018-02-13T08:23:06.891] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:23:06.965] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/bobanddan.com and last: Wikipedia:Articles for deletion/Shane O'Connor (soccer) -[2018-02-13T08:23:07.061] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:23:07.137] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:23:07.326] [INFO] cheese - inserting 1000 documents. first: North Herefordshire and last: Wikipedia:Articles for deletion/Siġġiewi (streets) -[2018-02-13T08:23:07.397] [INFO] cheese - inserting 1000 documents. first: Roman-Sabine wars and last: Nara Shumsher JBR -[2018-02-13T08:23:07.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jonathan Davis (audiobook narrator) and last: Wikipedia:WikiProject Spam/LinkReports/petit-train.info -[2018-02-13T08:23:07.467] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:07.493] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:23:07.566] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:23:07.607] [INFO] cheese - inserting 1000 documents. first: Category:Governors of North Jeolla Province and last: Category:Men's national sports teams of Scotland -[2018-02-13T08:23:07.616] [INFO] cheese - inserting 1000 documents. first: Wataga, Illinois and last: Michiana Shores, Indiana -[2018-02-13T08:23:07.651] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:23:07.691] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Sandusky County, Ohio and last: Figurines (album) -[2018-02-13T08:23:07.758] [INFO] cheese - batch complete in: 3.103 secs -[2018-02-13T08:23:07.793] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:23:07.858] [INFO] cheese - inserting 1000 documents. first: Music Choice/Dance Channel and last: Wikipedia:Articles for deletion/Stephanie Snodgrass -[2018-02-13T08:23:07.939] [INFO] cheese - inserting 1000 documents. first: Template:Languages of Ukraine and last: 2015–16 Middle Tennessee Blue Raiders men's basketball team -[2018-02-13T08:23:07.959] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:23:07.990] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:23:08.008] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sister Cities of Quincy, Illinois and last: Stefan Heidemann -[2018-02-13T08:23:08.026] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Saskatchewan and last: Leeds college of art and design -[2018-02-13T08:23:08.096] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:23:08.110] [INFO] cheese - inserting 1000 documents. first: Route Verte and last: Myvideo -[2018-02-13T08:23:08.150] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:23:08.178] [INFO] cheese - inserting 1000 documents. first: Category:Hotels in Pyongyang and last: Hoseynabad-e Do, Rayen -[2018-02-13T08:23:08.183] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:23:08.257] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:23:08.351] [INFO] cheese - inserting 1000 documents. first: Category:Saudi Arabian bloggers and last: Personalised television -[2018-02-13T08:23:08.362] [INFO] cheese - inserting 1000 documents. first: Benito Juárez Municipality, Zacatecas and last: Harrower, Elizabeth -[2018-02-13T08:23:08.403] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T08:23:08.492] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:23:08.748] [INFO] cheese - inserting 1000 documents. first: Guerrero Negro Jr and last: Bazhanova coal mine -[2018-02-13T08:23:08.781] [INFO] cheese - inserting 1000 documents. first: Cello tape and last: 2003 term United States Supreme Court opinions of Anthony Kennedy -[2018-02-13T08:23:08.807] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Trains/ICC valuations/Burlington, Muscatine and Northwestern Railway and last: Tico Zamora -[2018-02-13T08:23:08.807] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:23:08.834] [INFO] cheese - inserting 1000 documents. first: Myvideo.de and last: Wikipedia:Featured article candidates/Ross Sea party -[2018-02-13T08:23:08.844] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:23:08.900] [INFO] cheese - inserting 1000 documents. first: Lumix TZ3 and last: Evergreen huckleberry -[2018-02-13T08:23:08.909] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:23:08.929] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:23:08.940] [INFO] cheese - inserting 1000 documents. first: Frank C. McCord and last: Hambleton (disambiguation) -[2018-02-13T08:23:09.003] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:23:09.108] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:23:09.116] [INFO] cheese - inserting 1000 documents. first: Category:Railway locomotives introduced in 1865 and last: Template:Hugo Award for Best Dramatic Presentation, Long Form -[2018-02-13T08:23:09.196] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:23:09.304] [INFO] cheese - inserting 1000 documents. first: Michael Williamson (swimmer) and last: File:Katy Garbi - Apo Kardias 2013 (Commercial Release).jpg -[2018-02-13T08:23:09.378] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:23:09.414] [INFO] cheese - inserting 1000 documents. first: Matthew Paige "Matt" Damon and last: Template:PDB Gallery/6347 -[2018-02-13T08:23:09.444] [INFO] cheese - inserting 1000 documents. first: Rairakhol State and last: Affairs Today -[2018-02-13T08:23:09.446] [INFO] cheese - inserting 1000 documents. first: News4Kids and last: Highest Waterfall -[2018-02-13T08:23:09.455] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:23:09.545] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:23:09.556] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:23:09.611] [INFO] cheese - inserting 1000 documents. first: Hamzat Gelayev and last: R31 -[2018-02-13T08:23:09.679] [INFO] cheese - inserting 1000 documents. first: Michigan City, Indiana and last: Fine Gael Party -[2018-02-13T08:23:09.731] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:23:09.803] [INFO] cheese - inserting 1000 documents. first: Adams & Prentice and last: Blackbar blenny -[2018-02-13T08:23:09.869] [INFO] cheese - inserting 1000 documents. first: Category:James Pond and last: Aceh Rat -[2018-02-13T08:23:09.985] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:23:09.990] [INFO] cheese - batch complete in: 2.232 secs -[2018-02-13T08:23:10.001] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:23:10.087] [INFO] cheese - inserting 1000 documents. first: Eduard Friedrich Eversmann and last: Live 8 concert, Cornwall -[2018-02-13T08:23:10.138] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:23:10.175] [INFO] cheese - inserting 1000 documents. first: Davis–Kahan theorem and last: Wikipedia:GIJOE -[2018-02-13T08:23:10.235] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:23:10.333] [INFO] cheese - inserting 1000 documents. first: Template:R from E2 symmetry/doc and last: Azoyú Municipality -[2018-02-13T08:23:10.373] [INFO] cheese - inserting 1000 documents. first: File:Twotracking.jpg and last: Mario Cotelo -[2018-02-13T08:23:10.379] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:10.402] [INFO] cheese - inserting 1000 documents. first: Helle, Sogn og Fjordane and last: Jason Sebastian Russo -[2018-02-13T08:23:10.448] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:23:10.474] [INFO] cheese - inserting 1000 documents. first: Blackbar Blenny and last: Bulgaria – Denmark relations -[2018-02-13T08:23:10.500] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Idaho/tasks/Under review/FAC and last: Dave's Picks Volume 6 -[2018-02-13T08:23:10.521] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:23:10.627] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:23:10.629] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:23:10.771] [INFO] cheese - inserting 1000 documents. first: The Californian (1880s magazine) and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/1569 -[2018-02-13T08:23:10.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sebastian Noack and last: Maraş lion -[2018-02-13T08:23:10.888] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:10.941] [INFO] cheese - inserting 1000 documents. first: Czech Republic France relations and last: Category:LGBT culture in Riga -[2018-02-13T08:23:10.971] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T08:23:10.993] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:11.080] [INFO] cheese - inserting 1000 documents. first: Political parties in Western Sahara and last: Jackson 5 Christmas Album -[2018-02-13T08:23:11.123] [INFO] cheese - inserting 1000 documents. first: Mike Potekhen and last: Learndirect -[2018-02-13T08:23:11.141] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:23:11.180] [INFO] cheese - inserting 1000 documents. first: Chris Terry and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Rational Skepticism -[2018-02-13T08:23:11.202] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:23:11.235] [INFO] cheese - inserting 1000 documents. first: Denmark – Romania relations and last: Wikipedia:Articles for deletion/Dj Ashley Power -[2018-02-13T08:23:11.253] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:23:11.303] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:11.395] [INFO] cheese - inserting 1000 documents. first: Category:Papua (province) geography stubs and last: Wikipedia:Articles for deletion/ME-Mydoc -[2018-02-13T08:23:11.411] [INFO] cheese - inserting 1000 documents. first: Number One (DVD) and last: Crayons to classrooms -[2018-02-13T08:23:11.443] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:23:11.488] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:23:11.607] [INFO] cheese - inserting 1000 documents. first: List of ethnobotanists and last: Cheshmeh-ye Gazuiyeh -[2018-02-13T08:23:11.685] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:23:11.700] [INFO] cheese - inserting 1000 documents. first: Dury, Somme and last: Delmar, Vina -[2018-02-13T08:23:11.764] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:23:11.849] [INFO] cheese - inserting 1000 documents. first: Tecophilaea and last: Wikipedia:Articles for deletion/Kimber West -[2018-02-13T08:23:11.855] [INFO] cheese - inserting 1000 documents. first: ACWW and last: Card Mondor -[2018-02-13T08:23:11.953] [INFO] cheese - inserting 1000 documents. first: Hesarooie Motor-e Nazar Narooyi Ahmad and last: Stephen Keech -[2018-02-13T08:23:11.956] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:23:11.957] [INFO] cheese - inserting 1000 documents. first: The War in the Air and last: Chatrapati -[2018-02-13T08:23:11.957] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:23:11.980] [INFO] cheese - inserting 1000 documents. first: Geothermal power in Iceland and last: Winona, Kansas -[2018-02-13T08:23:12.025] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:23:12.068] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Gazu'iyeh and last: File:Pattern sheet, MS 32a 17A for Essex class.jpg -[2018-02-13T08:23:12.113] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:23:12.191] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Trains/ICC valuations/Central Railway of Arkansas and last: J.A. Douglas McCurdy -[2018-02-13T08:23:12.235] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:23:12.244] [INFO] cheese - batch complete in: 2.254 secs -[2018-02-13T08:23:12.337] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:23:12.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/maxxx.ucoz.ru and last: Template:User Standard Grade student -[2018-02-13T08:23:12.521] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:23:12.702] [INFO] cheese - inserting 1000 documents. first: P marker and last: File:Boise State San Diego State 2014.png -[2018-02-13T08:23:12.718] [INFO] cheese - inserting 1000 documents. first: File:ShootMeDown.jpg and last: State Road 30 (Florida) -[2018-02-13T08:23:12.763] [INFO] cheese - inserting 1000 documents. first: Template:2011 WFA Northwest Division standings and last: League of Communists of Vojvodina -[2018-02-13T08:23:12.784] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:23:12.809] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:23:12.834] [INFO] cheese - inserting 1000 documents. first: Pesticide use in the United States and last: Template:PDB Gallery/22992 -[2018-02-13T08:23:12.858] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:23:12.875] [INFO] cheese - inserting 1000 documents. first: Lucien Adam and last: Karl Riedl -[2018-02-13T08:23:12.921] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:23:12.987] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:12.990] [INFO] cheese - inserting 1000 documents. first: Danny Baldwin and last: The Radiators from Space -[2018-02-13T08:23:13.034] [INFO] cheese - inserting 1000 documents. first: Joe mondragon and last: Mastoid fontanelle -[2018-02-13T08:23:13.093] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:23:13.145] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:23:13.303] [INFO] cheese - inserting 1000 documents. first: BVC Amsterdam and last: Chusan City -[2018-02-13T08:23:13.319] [INFO] cheese - inserting 1000 documents. first: Beecher Bay Indian Ban and last: Chess/FamousPlayers -[2018-02-13T08:23:13.350] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:23:13.372] [INFO] cheese - inserting 1000 documents. first: MNC-Kalonji and last: Euan Dale -[2018-02-13T08:23:13.377] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:23:13.463] [INFO] cheese - inserting 1000 documents. first: Fragmentality and last: Khurcha -[2018-02-13T08:23:13.463] [INFO] cheese - inserting 1000 documents. first: Decorative Art Museum and last: File:Winter In Manhattan2.jpg -[2018-02-13T08:23:13.477] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:23:13.535] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:23:13.536] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:23:13.685] [INFO] cheese - inserting 1000 documents. first: Sphenoidal fontanelle and last: Haryana Board of School Education -[2018-02-13T08:23:13.752] [INFO] cheese - inserting 1000 documents. first: File:Alberto Lysy.jpg and last: Bryan Stanley -[2018-02-13T08:23:13.755] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:23:13.838] [INFO] cheese - inserting 1000 documents. first: Category:1805 establishments in Sweden and last: Walter Vaz -[2018-02-13T08:23:13.840] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:23:13.932] [INFO] cheese - inserting 1000 documents. first: PZL.23 Karas and last: Joe Banister -[2018-02-13T08:23:13.934] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:23:14.005] [INFO] cheese - inserting 1000 documents. first: Bert Longstaff and last: Hans-Joachim Recknitz -[2018-02-13T08:23:14.005] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:23:14.050] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:23:14.106] [INFO] cheese - inserting 1000 documents. first: US 401 (NC) and last: Single slit diffraction -[2018-02-13T08:23:14.113] [INFO] cheese - inserting 1000 documents. first: Cavalhada and last: Jericho (J-Twizzle) -[2018-02-13T08:23:14.150] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/5831 and last: William Greig -[2018-02-13T08:23:14.210] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:14.224] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T08:23:14.228] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:23:14.382] [INFO] cheese - inserting 1000 documents. first: High Density Lipoprotein and last: Chiliss -[2018-02-13T08:23:14.403] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2013 April 26 and last: Safety-valve organization -[2018-02-13T08:23:14.418] [INFO] cheese - inserting 1000 documents. first: William M. Blackburn and last: A.J. Brooks -[2018-02-13T08:23:14.440] [INFO] cheese - inserting 1000 documents. first: Admire, Kansas and last: Rayville, Louisiana -[2018-02-13T08:23:14.425] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:23:14.487] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:23:14.509] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:23:14.618] [INFO] cheese - batch complete in: 2.373 secs -[2018-02-13T08:23:14.677] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/7090 and last: List of villages in Agra district -[2018-02-13T08:23:14.716] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:23:14.789] [INFO] cheese - inserting 1000 documents. first: Prove your love and last: 1889 English cricket season -[2018-02-13T08:23:14.884] [INFO] cheese - inserting 1000 documents. first: Diaspora terrorism and last: Treasury Wine Estates -[2018-02-13T08:23:14.888] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:23:14.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gifford Observatory and last: Bellevue High School, Bellevue, Washington -[2018-02-13T08:23:15.029] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:23:15.058] [INFO] cheese - inserting 1000 documents. first: Safety-valve organisation and last: Category:Presidents of the Cook County Board of Commissioners -[2018-02-13T08:23:15.072] [INFO] cheese - inserting 1000 documents. first: .CZ and last: Martin Township, Allegan County, Michigan -[2018-02-13T08:23:15.077] [INFO] cheese - inserting 1000 documents. first: Live in London (Helen Reddy album) and last: Category:1601 in the Spanish East Indies -[2018-02-13T08:23:15.094] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:23:15.143] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:23:15.198] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:23:15.291] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:23:15.436] [INFO] cheese - inserting 1000 documents. first: National defence policy and last: File:Plant ID 004 (Medium).jpg -[2018-02-13T08:23:15.503] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:23:15.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Import classic 2 and last: In-air refueling -[2018-02-13T08:23:15.562] [INFO] cheese - inserting 1000 documents. first: Category:1603 in the Spanish East Indies and last: Sin Escape Con Correas -[2018-02-13T08:23:15.600] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:23:15.618] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:23:15.713] [INFO] cheese - inserting 1000 documents. first: File:BedlamXForce.jpg and last: Sofia Winters -[2018-02-13T08:23:15.737] [INFO] cheese - inserting 1000 documents. first: Mossoul and last: Lower Yangtze Mandarin Chinese -[2018-02-13T08:23:15.787] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:23:15.803] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:23:15.824] [INFO] cheese - inserting 1000 documents. first: Keke Mortson and last: Category:Sportspeople of Indian descent -[2018-02-13T08:23:15.905] [INFO] cheese - inserting 1000 documents. first: Olli Wisdom and last: Irish Party -[2018-02-13T08:23:15.921] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:23:16.041] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:23:16.122] [INFO] cheese - inserting 1000 documents. first: Category:Bostrichidae and last: Brooks-Simms -[2018-02-13T08:23:16.142] [INFO] cheese - inserting 1000 documents. first: Overcharge and last: The Pursuit of Garlic -[2018-02-13T08:23:16.173] [INFO] cheese - inserting 1000 documents. first: Wila Kunka (Cusco) and last: Robert E. Campbell -[2018-02-13T08:23:16.206] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:23:16.224] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:23:16.280] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:23:16.385] [INFO] cheese - inserting 1000 documents. first: MPW Boulton and last: Category:Songs written by Géraldine Delacoux -[2018-02-13T08:23:16.388] [INFO] cheese - inserting 1000 documents. first: Poirieria hemmenorum and last: Chris Culliver -[2018-02-13T08:23:16.456] [INFO] cheese - inserting 1000 documents. first: 1994 Swiss Indoors and last: Category:Media in Northumberland -[2018-02-13T08:23:16.484] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:23:16.640] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:23:16.652] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:23:16.899] [INFO] cheese - inserting 1000 documents. first: Three Bridges depot and last: Musi Rawas -[2018-02-13T08:23:16.907] [INFO] cheese - inserting 1000 documents. first: Hettinger Municipal Airport and last: FCK Handball -[2018-02-13T08:23:16.924] [INFO] cheese - inserting 1000 documents. first: Converse, Louisiana and last: Smith Mills, Massachusetts -[2018-02-13T08:23:16.955] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:17.016] [INFO] cheese - inserting 1000 documents. first: Cross-presentation and last: Datu Saudi-Ampatuan, Maguindanao -[2018-02-13T08:23:17.019] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:23:17.080] [INFO] cheese - inserting 1000 documents. first: State Road 363 (Florida) and last: Category:Israeli classical violinists -[2018-02-13T08:23:17.136] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:23:17.189] [INFO] cheese - inserting 1000 documents. first: File:What Technology Wants, Book Cover Art.jpg and last: Morris Murdock Travel, LLC -[2018-02-13T08:23:17.193] [INFO] cheese - batch complete in: 2.575 secs -[2018-02-13T08:23:17.149] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:23:17.284] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:23:17.335] [INFO] cheese - inserting 1000 documents. first: File:Caughtupinyou.jpg and last: Julián Sotelo Madrazo -[2018-02-13T08:23:17.336] [INFO] cheese - inserting 1000 documents. first: IL18R1 and last: Igor Stojaković -[2018-02-13T08:23:17.421] [INFO] cheese - inserting 1000 documents. first: FujiFilm FinePix M603 and last: Calothamnus phellosus -[2018-02-13T08:23:17.404] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:17.450] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:23:17.528] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:23:17.538] [INFO] cheese - inserting 1000 documents. first: Category:Australian horse racing lists and last: Sydney F. Foster -[2018-02-13T08:23:17.588] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:23:17.740] [INFO] cheese - inserting 1000 documents. first: Latitude Learning LLC and last: Raplun -[2018-02-13T08:23:17.793] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:23:17.806] [INFO] cheese - inserting 1000 documents. first: The Secret Snake Club vs. P.E. / King Tooten Pooten and last: Hannah Greenwood -[2018-02-13T08:23:17.901] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:23:17.941] [INFO] cheese - inserting 1000 documents. first: Lactucopsis and last: Pugh Ford Bridge -[2018-02-13T08:23:17.974] [INFO] cheese - inserting 1000 documents. first: KWQ and last: File:Room to Live.jpg -[2018-02-13T08:23:17.983] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:23:18.015] [INFO] cheese - inserting 1000 documents. first: Walnut Township, Brown County, Kansas and last: Marchais-Beton -[2018-02-13T08:23:18.062] [INFO] cheese - inserting 1000 documents. first: Template:Ibdb title and last: Āsavas -[2018-02-13T08:23:18.086] [INFO] cheese - inserting 1000 documents. first: Love & Rage and last: Farm Town, Leicestershire -[2018-02-13T08:23:18.089] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:23:18.106] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:23:18.163] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:23:18.225] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:23:18.240] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Leonard Marbury and last: Walk and Talk short film -[2018-02-13T08:23:18.329] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:23:18.405] [INFO] cheese - inserting 1000 documents. first: List of niger-related topics and last: Aspidosperma olivaceum -[2018-02-13T08:23:18.407] [INFO] cheese - inserting 1000 documents. first: Lullaby and... THE CEASLESS ROAR and last: Notre Dame Academy, Park Hills, Kentucky -[2018-02-13T08:23:18.464] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T08:23:18.532] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:23:18.679] [INFO] cheese - inserting 1000 documents. first: Coed Confidential and last: Ding Xian -[2018-02-13T08:23:18.704] [INFO] cheese - inserting 1000 documents. first: Stanley primary school and last: Mozambique – Canada relations -[2018-02-13T08:23:18.734] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:23:18.790] [INFO] cheese - inserting 1000 documents. first: Shining Darkness (novel) and last: William Jordan Graves -[2018-02-13T08:23:18.868] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:23:18.958] [INFO] cheese - inserting 1000 documents. first: Category:Northern Mariana Islands football (soccer) clubs and last: Category:Shudra castes -[2018-02-13T08:23:18.966] [INFO] cheese - inserting 1000 documents. first: Wolf Frankenstein and last: Wikipedia:Articles for deletion/Thebrokenoperation -[2018-02-13T08:23:18.997] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:23:19.069] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:23:19.120] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:23:19.175] [INFO] cheese - inserting 1000 documents. first: Category:People from Pochayiv and last: Dave Ewing (footballer, born 1881) -[2018-02-13T08:23:19.288] [INFO] cheese - inserting 1000 documents. first: Erich von Hornbostel and last: Coe Township, Michigan -[2018-02-13T08:23:19.286] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:23:19.371] [INFO] cheese - inserting 1000 documents. first: Category:Companies established in 1842 and last: Eustace II Grenier -[2018-02-13T08:23:19.405] [INFO] cheese - batch complete in: 2.209 secs -[2018-02-13T08:23:19.475] [INFO] cheese - inserting 1000 documents. first: Mozambique Canada relations and last: Category:1880s in Montana -[2018-02-13T08:23:19.517] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:23:19.526] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:23:19.541] [INFO] cheese - inserting 1000 documents. first: List of number-one country albums of 1996 (Canada) and last: Wikipedia:Version 1.0 Editorial Team/Motorcycling articles by quality/4 -[2018-02-13T08:23:19.657] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:23:19.757] [INFO] cheese - inserting 1000 documents. first: Ed Morgan (baseball) and last: Cham Wings Airlines -[2018-02-13T08:23:19.799] [INFO] cheese - inserting 1000 documents. first: Steritruncated 5-cube and last: Template:Canadian federal election, 2011/ab-e -[2018-02-13T08:23:19.833] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:23:19.866] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:23:19.981] [INFO] cheese - inserting 1000 documents. first: Autofinger and last: Al Ewing -[2018-02-13T08:23:20.007] [INFO] cheese - inserting 1000 documents. first: File:Picture of Gravestone Marker.jpg and last: Atassi mosque -[2018-02-13T08:23:20.008] [INFO] cheese - inserting 1000 documents. first: Ernst Mahler (painter) and last: Balochistan University of Engineering and Technology Khuzdar -[2018-02-13T08:23:20.072] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:23:20.079] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:23:20.124] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:23:20.235] [INFO] cheese - inserting 1000 documents. first: Category:Rebel Highway series and last: Ury House -[2018-02-13T08:23:20.256] [INFO] cheese - inserting 1000 documents. first: Richard Matheson's Hell House and last: Category:People from Taliaferro County, Georgia -[2018-02-13T08:23:20.291] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:23:20.338] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:23:20.490] [INFO] cheese - inserting 1000 documents. first: A360 Lena Highway and last: Windham and Brooklyn Turnpike -[2018-02-13T08:23:20.539] [INFO] cheese - inserting 1000 documents. first: Bernard (Bishop of Gaeta) and last: Ponor cave -[2018-02-13T08:23:20.566] [INFO] cheese - inserting 1000 documents. first: File:Mullah Omar reveals the Prophet's cloak.jpg and last: Courthouse Historic District (Logansport, Indiana) -[2018-02-13T08:23:20.569] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:23:20.604] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:23:20.646] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:23:20.715] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Bermuda and last: Category:Protected areas of Vanderburgh County, Indiana -[2018-02-13T08:23:20.813] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:23:20.881] [INFO] cheese - inserting 1000 documents. first: Bulgaria at the 1924 Summer Olympics and last: File:Naeim Giladi.jpg -[2018-02-13T08:23:20.907] [INFO] cheese - inserting 1000 documents. first: Luca Delia Robbia and last: Adrian Ward (American football) -[2018-02-13T08:23:20.982] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:23:21.002] [INFO] cheese - inserting 1000 documents. first: Template:MecklenburgischeSeenplatte-geo-stub and last: Wikipedia:Templates for deletion/Log/2009 August 1 -[2018-02-13T08:23:21.092] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:23:21.129] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:23:21.274] [INFO] cheese - inserting 1000 documents. first: Coldwater Township, Isabella County, Michigan and last: Interior Township, Michigan -[2018-02-13T08:23:21.292] [INFO] cheese - inserting 1000 documents. first: Preeti Malhotra and last: Gymnoscelis tibialis -[2018-02-13T08:23:21.315] [INFO] cheese - inserting 1000 documents. first: River Leven (Dunbartonshire) and last: Trichymenia wrightii -[2018-02-13T08:23:21.377] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:23:21.403] [INFO] cheese - batch complete in: 1.997 secs -[2018-02-13T08:23:21.459] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:23:21.506] [INFO] cheese - inserting 1000 documents. first: Adrian Sager and last: Le Villey -[2018-02-13T08:23:21.643] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:23:21.684] [INFO] cheese - inserting 1000 documents. first: TeenNick "The 90's Are All That!" and last: Camayura -[2018-02-13T08:23:21.793] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:23:21.803] [INFO] cheese - inserting 1000 documents. first: SITD and last: Daniel Gélin -[2018-02-13T08:23:21.879] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:23:21.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2009 August 1 and last: Cavallone Cave -[2018-02-13T08:23:22.024] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:23:22.040] [INFO] cheese - inserting 1000 documents. first: VF-92 (1952–75) and last: Category:Aradan County geography stubs -[2018-02-13T08:23:22.104] [INFO] cheese - inserting 1000 documents. first: Category:Novels about art and creativity and last: Eklöf -[2018-02-13T08:23:22.104] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:23:22.151] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:23:22.287] [INFO] cheese - inserting 1000 documents. first: Bay State Raceway and last: Bufallo Bills -[2018-02-13T08:23:22.309] [INFO] cheese - inserting 1000 documents. first: West Australian Newspapers Holdings Limited and last: Bella Woolf Southorn -[2018-02-13T08:23:22.342] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:23:22.346] [INFO] cheese - inserting 1000 documents. first: Canticle for Leibowitz and last: Missouri Route 175 -[2018-02-13T08:23:22.377] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:23:22.387] [INFO] cheese - inserting 1000 documents. first: Shin'ichirō Nakamura and last: Alejandro Melchor -[2018-02-13T08:23:22.437] [INFO] cheese - inserting 1000 documents. first: Ulysses (movie) and last: Camp Douglas (disambiguation) -[2018-02-13T08:23:22.478] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:23:22.513] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:23:22.530] [INFO] cheese - batch complete in: 1.438 secs -[2018-02-13T08:23:22.626] [INFO] cheese - inserting 1000 documents. first: Template:Columbus Crew squad and last: Terengganu State Football Association -[2018-02-13T08:23:22.627] [INFO] cheese - inserting 1000 documents. first: Category:Aradan County and last: Template:Location map United Kingdom Gibraltar -[2018-02-13T08:23:22.667] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:23:22.683] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:23:22.863] [INFO] cheese - inserting 1000 documents. first: HK Vitebsk and last: Borza -[2018-02-13T08:23:22.884] [INFO] cheese - inserting 1000 documents. first: Longeville-lès-Saint-Avold and last: Wikipedia:MESO/CITEA -[2018-02-13T08:23:22.905] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:23:22.906] [INFO] cheese - inserting 1000 documents. first: Matchwood Township, Michigan and last: Jenkins Township, Crow Wing County, Minnesota -[2018-02-13T08:23:22.954] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:23:22.974] [INFO] cheese - inserting 1000 documents. first: Portal:Government of India/Selected anniversaries/November 7 and last: Ion Sancho -[2018-02-13T08:23:22.996] [INFO] cheese - inserting 1000 documents. first: File:Rev cover.jpg and last: 1999 World Championships in Athletics - Women's 4 x 100 metres relay -[2018-02-13T08:23:23.033] [INFO] cheese - batch complete in: 1.63 secs -[2018-02-13T08:23:23.073] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:23:23.115] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:23:23.119] [INFO] cheese - inserting 1000 documents. first: Botswana-Bangladesh relations and last: Category:Andorran expatriates in Spain -[2018-02-13T08:23:23.128] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean people of Indian descent and last: Radischevskiy Raion -[2018-02-13T08:23:23.206] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:23:23.215] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:23:23.219] [INFO] cheese - inserting 1000 documents. first: Secondary boycotts and last: Kanarese language -[2018-02-13T08:23:23.326] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:23:23.397] [INFO] cheese - inserting 1000 documents. first: Fodorkút and last: Category:Listed buildings in Merthyr Tydfil County Borough -[2018-02-13T08:23:23.465] [INFO] cheese - inserting 1000 documents. first: Monica Sandve and last: Opoutere, New Zealand -[2018-02-13T08:23:23.494] [INFO] cheese - inserting 1000 documents. first: Bombardier Wells and last: Intertoto Cup 1962–63 -[2018-02-13T08:23:23.523] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:23:23.575] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:23:23.578] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:23:23.637] [INFO] cheese - inserting 1000 documents. first: Portal:Snakes/Selected picture and last: G.B Soria -[2018-02-13T08:23:23.673] [INFO] cheese - inserting 1000 documents. first: Radischevski Raion and last: Macroplanar -[2018-02-13T08:23:23.685] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:23:23.729] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:23:23.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Uruguay/Article Classification and last: Domaša -[2018-02-13T08:23:23.909] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:23:24.064] [INFO] cheese - inserting 1000 documents. first: Games People Play! (The Raccoons) and last: SS Supporting Members' Organisation -[2018-02-13T08:23:24.072] [INFO] cheese - inserting 1000 documents. first: Intertoto Cup 1963–64 and last: Days between stations (novel) -[2018-02-13T08:23:24.088] [INFO] cheese - inserting 1000 documents. first: File:SomethingRightCD1.jpg and last: La Guéroulde -[2018-02-13T08:23:24.127] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:23:24.145] [INFO] cheese - inserting 1000 documents. first: Category:2022 in Asian football and last: European field-pansy -[2018-02-13T08:23:24.161] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:23:24.163] [INFO] cheese - inserting 1000 documents. first: Zeiss Macroplanar and last: Category:1894 establishments in Portugal -[2018-02-13T08:23:24.191] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:23:24.224] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:23:24.250] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:23:24.304] [INFO] cheese - inserting 1000 documents. first: Disposable Teens and last: Bennedetto Croce -[2018-02-13T08:23:24.329] [INFO] cheese - inserting 1000 documents. first: Lake Edward Township, Crow Wing County, Minnesota and last: Randall, Minnesota -[2018-02-13T08:23:24.411] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:23:24.443] [INFO] cheese - batch complete in: 1.41 secs -[2018-02-13T08:23:24.523] [INFO] cheese - inserting 1000 documents. first: The Whartons and last: Bourgoin -[2018-02-13T08:23:24.659] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:24.700] [INFO] cheese - inserting 1000 documents. first: Category:Nuclear Assault video albums and last: Versus (manga) -[2018-02-13T08:23:24.764] [INFO] cheese - inserting 1000 documents. first: Sungnye and last: Bloomington Symphony Orchestra -[2018-02-13T08:23:24.784] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:23:24.820] [INFO] cheese - inserting 1000 documents. first: SS Supporting Members' Organization and last: Jesse Schell -[2018-02-13T08:23:24.864] [INFO] cheese - inserting 1000 documents. first: Template:Mansas of Mali Empire and last: Template:Taxonomy/Prionomyrmecini -[2018-02-13T08:23:24.883] [INFO] cheese - inserting 1000 documents. first: Category:1894 in Portuguese Timor and last: Jorge Salgado-Reyes -[2018-02-13T08:23:24.886] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:24.973] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:23:24.991] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:23:25.029] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:23:25.284] [INFO] cheese - inserting 1000 documents. first: 1997 South East Asia haze and last: Zhukovski -[2018-02-13T08:23:25.309] [INFO] cheese - inserting 1000 documents. first: Alfred Sarant and last: Elphinstone College -[2018-02-13T08:23:25.311] [INFO] cheese - inserting 1000 documents. first: Vs. (manga) and last: Wikipedia:Articles for deletion/Eva Fontaine -[2018-02-13T08:23:25.334] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:25.383] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:23:25.424] [INFO] cheese - inserting 1000 documents. first: 1997 Coppa Italia Final and last: Category:South Africa FIFA World Cup squad navigational boxes -[2018-02-13T08:23:25.430] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Tarachodes maurus and last: Category:Filipino contemporary artists -[2018-02-13T08:23:25.439] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:23:25.506] [INFO] cheese - inserting 1000 documents. first: Pairc Chronain and last: Emil Bührle -[2018-02-13T08:23:25.610] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:23:25.656] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:23:25.726] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:23:25.874] [INFO] cheese - inserting 1000 documents. first: High Sheriff of Wexford and last: Template:Taxonomy/Pimoidae -[2018-02-13T08:23:25.992] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:23:26.074] [INFO] cheese - inserting 1000 documents. first: Richardson Township, Morrison County, Minnesota and last: Donnelly, Minnesota -[2018-02-13T08:23:26.087] [INFO] cheese - inserting 1000 documents. first: Red (Character) and last: BCCI Corporate Trophy -[2018-02-13T08:23:26.090] [INFO] cheese - inserting 1000 documents. first: R69S and last: 2007 World Series of Poker -[2018-02-13T08:23:26.157] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:23:26.161] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:23:26.214] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for upload/August 2015 and last: Barong Landung -[2018-02-13T08:23:26.214] [INFO] cheese - batch complete in: 1.77 secs -[2018-02-13T08:23:26.256] [INFO] cheese - inserting 1000 documents. first: Huruiyeh and last: Escherichia coli proteinase La -[2018-02-13T08:23:26.340] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:23:26.353] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:23:26.441] [INFO] cheese - inserting 1000 documents. first: Frontline (AUS) and last: George Adams (football player) -[2018-02-13T08:23:26.531] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Avoiding POV funnels and last: Live writer -[2018-02-13T08:23:26.548] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:23:26.590] [INFO] cheese - inserting 1000 documents. first: Trichinella and last: Lichwort -[2018-02-13T08:23:26.607] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:26.642] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jake Sully (Avatar) and last: Betel-Nut -[2018-02-13T08:23:26.689] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T08:23:26.815] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:26.893] [INFO] cheese - inserting 1000 documents. first: Cheonji and last: Lion of fallujah -[2018-02-13T08:23:26.922] [INFO] cheese - inserting 1000 documents. first: Bop Redux and last: Derna Campaign (2014–15) -[2018-02-13T08:23:27.000] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:23:27.035] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:27.045] [INFO] cheese - inserting 1000 documents. first: Kitamaat 2, British Columbia and last: Wikipedia:WikiProject Christianity/Outreach/August 2014 -[2018-02-13T08:23:27.134] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:23:27.191] [INFO] cheese - inserting 1000 documents. first: Bálványosváralja and last: Thangal Kunju Musaliar Institute of Technology -[2018-02-13T08:23:27.238] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:23:27.260] [INFO] cheese - inserting 1000 documents. first: Zhutian and last: Template:Aesop Rock -[2018-02-13T08:23:27.271] [INFO] cheese - inserting 1000 documents. first: Hot needle perforation and last: Wikipedia:Reference desk/Archives/Humanities/2008 February 8 -[2018-02-13T08:23:27.319] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:23:27.350] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:23:27.409] [INFO] cheese - inserting 1000 documents. first: Fermat’s principle and last: Pavlos Kountouriotis -[2018-02-13T08:23:27.410] [INFO] cheese - inserting 1000 documents. first: Exoteleia succinctella and last: Wikipedia:Sockpuppet investigations/Damionscott/Archive -[2018-02-13T08:23:27.452] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:23:27.485] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:23:27.497] [INFO] cheese - inserting 1000 documents. first: Tom Brady (film director) and last: Australian English sexual, body-part and toilet slang -[2018-02-13T08:23:27.556] [INFO] cheese - inserting 1000 documents. first: John Leasure and last: How Many More Years? -[2018-02-13T08:23:27.603] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:23:27.697] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:23:27.766] [INFO] cheese - inserting 1000 documents. first: Category:String orchestra pieces and last: H K -[2018-02-13T08:23:27.834] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:23:27.846] [INFO] cheese - inserting 1000 documents. first: Donnelly Township, Stevens County, Minnesota and last: Ethel, Missouri -[2018-02-13T08:23:27.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2008 February 8 and last: Category:Non-free Canadian stamp images -[2018-02-13T08:23:28.074] [INFO] cheese - inserting 1000 documents. first: Arichanna melanaria and last: Template:F1 driver results legend -[2018-02-13T08:23:28.132] [INFO] cheese - batch complete in: 1.917 secs -[2018-02-13T08:23:28.150] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:23:28.155] [INFO] cheese - inserting 1000 documents. first: Mohammed Al Habtoor and last: Victor H. Perrin -[2018-02-13T08:23:28.254] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:23:28.307] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:23:28.405] [INFO] cheese - inserting 1000 documents. first: Fizz Factor and last: File:Thjalfi and Hrungnir.png -[2018-02-13T08:23:28.458] [INFO] cheese - inserting 1000 documents. first: Route 190 and last: Val Ramos, international Flamenco guitarist -[2018-02-13T08:23:28.541] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:23:28.560] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:23:28.571] [INFO] cheese - inserting 1000 documents. first: H L and last: Myctophum asperum -[2018-02-13T08:23:28.588] [INFO] cheese - inserting 1000 documents. first: Fall of Edessa and last: File:Deutschland sucht den Superstar 2013 logo.png -[2018-02-13T08:23:28.639] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:23:28.666] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:23:28.728] [INFO] cheese - inserting 1000 documents. first: Di Pietro motor and last: Wikipedia:Featured article review/Golden plates/archive1 -[2018-02-13T08:23:28.745] [INFO] cheese - inserting 1000 documents. first: Virgil C. Smith and last: Category:Academics from Northern Ireland -[2018-02-13T08:23:28.804] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:28.820] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:23:28.914] [INFO] cheese - inserting 1000 documents. first: Olfa Youssef and last: Wikipedia:Don't feed the divas -[2018-02-13T08:23:29.037] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:23:29.148] [INFO] cheese - inserting 1000 documents. first: Category:2001 ITF Women's Circuit and last: Category:2013 Metro Atlantic Athletic Conference baseball season -[2018-02-13T08:23:29.232] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:23:29.277] [INFO] cheese - inserting 1000 documents. first: Deutsche Tanz-und-Unterhaltungsorchester and last: Jacareí Atlético Clube -[2018-02-13T08:23:29.291] [INFO] cheese - inserting 1000 documents. first: Category:CD Leganés players and last: Ecuador at the 1968 Summer Olympics -[2018-02-13T08:23:29.330] [INFO] cheese - inserting 1000 documents. first: Internet chess server and last: Wikipedia:Articles for deletion/Dave Parsons -[2018-02-13T08:23:29.435] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:23:29.439] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:23:29.471] [INFO] cheese - inserting 1000 documents. first: M/V Kalama and last: Mette Davidsen -[2018-02-13T08:23:29.495] [INFO] cheese - inserting 1000 documents. first: Columbia River and Oregon Central Railroad and last: IEEE 200-1975 -[2018-02-13T08:23:29.508] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:23:29.617] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:23:29.634] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:23:29.790] [INFO] cheese - inserting 1000 documents. first: Linosyris wrightii and last: Power Hawk -[2018-02-13T08:23:29.859] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:23:30.013] [INFO] cheese - inserting 1000 documents. first: Puntius anchisporus and last: European Bermudians -[2018-02-13T08:23:30.117] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:23:30.247] [INFO] cheese - inserting 1000 documents. first: Template:Stephen Woodworth and last: CIA Triad -[2018-02-13T08:23:30.282] [INFO] cheese - inserting 1000 documents. first: Nenad Veselji and last: Wikipedia:WikiProject Spam/LinkReports/malatya.us -[2018-02-13T08:23:30.323] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:23:30.340] [INFO] cheese - inserting 1000 documents. first: Category:Nature centers in New Hampshire and last: Alk phos -[2018-02-13T08:23:30.343] [INFO] cheese - inserting 1000 documents. first: Federação Tocantinense de Futebol and last: Abdominal decompression -[2018-02-13T08:23:30.358] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:23:30.512] [INFO] cheese - inserting 1000 documents. first: La Plata, Missouri and last: Hampton, Nebraska -[2018-02-13T08:23:30.519] [INFO] cheese - inserting 1000 documents. first: Coniogyra dilucescens and last: Wilson L. Flores -[2018-02-13T08:23:30.583] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:23:30.605] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:23:30.575] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:23:30.729] [INFO] cheese - inserting 1000 documents. first: Transmitter Chillerton Down and last: James Sanders (American football) -[2018-02-13T08:23:30.761] [INFO] cheese - batch complete in: 2.629 secs -[2018-02-13T08:23:30.825] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T08:23:30.915] [INFO] cheese - inserting 1000 documents. first: European Bermudian and last: 14th National Film Awards -[2018-02-13T08:23:31.096] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:23:31.154] [INFO] cheese - inserting 1000 documents. first: St Joseph's Co-Cathedral and last: PaleVioletRed -[2018-02-13T08:23:31.192] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:31.299] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/User talk:Jamietw/May 2011 and last: Cutpoint method -[2018-02-13T08:23:31.348] [INFO] cheese - inserting 1000 documents. first: Draft:Charles A. Munn and last: Category:1803 in sports by country -[2018-02-13T08:23:31.413] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:23:31.427] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:23:31.624] [INFO] cheese - inserting 1000 documents. first: Girth (album) and last: Another Weeping Woman -[2018-02-13T08:23:31.745] [INFO] cheese - inserting 1000 documents. first: Kokichi Akune and last: Igor Alexeev -[2018-02-13T08:23:31.746] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:23:31.790] [INFO] cheese - inserting 1000 documents. first: Leonard Aloysius Scott Stokes and last: Template:Country data Kingdom of Albania -[2018-02-13T08:23:31.821] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:23:31.893] [INFO] cheese - inserting 1000 documents. first: Boglestone, Port Glasgow and last: LITS -[2018-02-13T08:23:31.928] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:23:32.002] [INFO] cheese - inserting 1000 documents. first: RV Coriolis II and last: Marolles-les-Buis -[2018-02-13T08:23:32.053] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:23:32.149] [INFO] cheese - inserting 1000 documents. first: Periclimenes magnificus and last: Nikki ashton -[2018-02-13T08:23:32.150] [INFO] cheese - inserting 1000 documents. first: White fiddlewood and last: File:Stealth Inc logo.png -[2018-02-13T08:23:32.209] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:23:32.237] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:23:32.316] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T08:23:32.440] [INFO] cheese - inserting 1000 documents. first: Template:Bobby Brown and last: Peter myers (basketball) -[2018-02-13T08:23:32.628] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:23:32.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ageiola and last: Mid-Western Regional Council, New South Wales -[2018-02-13T08:23:32.812] [INFO] cheese - inserting 1000 documents. first: Kjell Landsverk and last: ⦾ -[2018-02-13T08:23:32.875] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:23:32.969] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:23:33.051] [INFO] cheese - inserting 1000 documents. first: Template:Belarus in the Eurovision Young Dancers and last: Mary M Morrissey -[2018-02-13T08:23:33.072] [INFO] cheese - inserting 1000 documents. first: Category:1920s establishments in Uruguay and last: Banglalion Wimax -[2018-02-13T08:23:33.102] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:23:33.170] [INFO] cheese - inserting 1000 documents. first: Zero page (CP/M) and last: Physical Fatness -[2018-02-13T08:23:33.211] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:23:33.331] [INFO] cheese - batch complete in: 1.278 secs -[2018-02-13T08:23:33.394] [INFO] cheese - inserting 1000 documents. first: File:CMF Logo.jpg and last: Charles Denton (television and film producer) -[2018-02-13T08:23:33.476] [INFO] cheese - inserting 1000 documents. first: Hordville, Nebraska and last: Shamong Township, New Jersey -[2018-02-13T08:23:33.482] [INFO] cheese - inserting 1000 documents. first: Fog desert and last: Postcard from Morocco -[2018-02-13T08:23:33.529] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:23:33.618] [INFO] cheese - inserting 1000 documents. first: Shen mue and last: Monte Carlo Country Club -[2018-02-13T08:23:33.616] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:23:33.679] [INFO] cheese - inserting 1000 documents. first: White Guy Talk Show and last: Template:Districts of Ulan Bator -[2018-02-13T08:23:33.744] [INFO] cheese - batch complete in: 2.982 secs -[2018-02-13T08:23:33.775] [INFO] cheese - inserting 1000 documents. first: ⦿ and last: Jelena Balsic -[2018-02-13T08:23:33.783] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:23:33.799] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:23:33.897] [INFO] cheese - inserting 1000 documents. first: George Renwick, 1st Baronet and last: Pectis linifolia -[2018-02-13T08:23:33.930] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T08:23:34.027] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:23:34.307] [INFO] cheese - inserting 1000 documents. first: Derby Castle Depôt and last: Andkhoy City, Afghanistan -[2018-02-13T08:23:34.414] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:23:34.448] [INFO] cheese - inserting 1000 documents. first: Palazzo Bernardini, Lucca and last: Myanmar women's national under-20 football team -[2018-02-13T08:23:34.485] [INFO] cheese - inserting 1000 documents. first: Davao International Airport and last: Damle -[2018-02-13T08:23:34.494] [INFO] cheese - inserting 1000 documents. first: Baigneaux, Eure-et-Loir and last: Category:1431 in Portugal -[2018-02-13T08:23:34.536] [INFO] cheese - inserting 1000 documents. first: Mirai Ball and last: Template:Bangladesh Jamaat-e-Islami/meta/color -[2018-02-13T08:23:34.539] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:23:34.546] [INFO] cheese - inserting 1000 documents. first: List of rowing blades – Club oars and last: Mary Ann Cotton -[2018-02-13T08:23:34.654] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:23:34.706] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:23:34.749] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:23:34.765] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:23:34.849] [INFO] cheese - inserting 1000 documents. first: Pectis longipes and last: Category:1922 establishments in Greece -[2018-02-13T08:23:34.890] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:23:35.026] [INFO] cheese - inserting 1000 documents. first: Biological marker and last: Wikipedia:WikiProject Intertranswiki/Lithuanian/Culture -[2018-02-13T08:23:35.170] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:23:35.255] [INFO] cheese - inserting 1000 documents. first: Pak Tho Railway Station and last: Elckerlijc (film) -[2018-02-13T08:23:35.335] [INFO] cheese - inserting 1000 documents. first: File:Super Sabado Sensacional (2012).png and last: Empress Dowager Du -[2018-02-13T08:23:35.423] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:23:35.444] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 928 and last: File:Lens2a.svg -[2018-02-13T08:23:35.460] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:23:35.506] [INFO] cheese - inserting 1000 documents. first: Invaders From Mars and last: PopCultured -[2018-02-13T08:23:35.549] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:23:35.622] [INFO] cheese - inserting 1000 documents. first: Rubber bungs and last: Porto Grande -[2018-02-13T08:23:35.659] [INFO] cheese - inserting 1000 documents. first: Moncreiffe (disambiguation) and last: Hebron Christian Academy -[2018-02-13T08:23:35.690] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:23:35.765] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:23:35.821] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:23:36.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Intertranswiki/Lithuanian/History and last: Template:1997 NCAA Men's Basketball Consensus All-Americans -[2018-02-13T08:23:36.017] [INFO] cheese - inserting 1000 documents. first: Livingston Parliament constituency and last: Portal:Traditional African religion/Selected biography/4 -[2018-02-13T08:23:36.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/On a conjecture concerning the petersen graph and last: Category:Transportation in Grant County, South Dakota -[2018-02-13T08:23:36.145] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:23:36.168] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:23:36.248] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:23:36.375] [INFO] cheese - inserting 1000 documents. first: Germanicopolis (Isauria) and last: Wikipedia:WikiProject Spam/LinkReports/sbthp.org -[2018-02-13T08:23:36.463] [INFO] cheese - inserting 1000 documents. first: Free settler and last: Drigo -[2018-02-13T08:23:36.512] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:23:36.569] [INFO] cheese - inserting 1000 documents. first: Red Service and last: Scottish pure Gaelic -[2018-02-13T08:23:36.578] [INFO] cheese - inserting 1000 documents. first: International Union of Psychological Science and last: Pugh–Schiff precession -[2018-02-13T08:23:36.638] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:23:36.687] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:23:36.739] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:23:36.955] [INFO] cheese - inserting 1000 documents. first: Category:Lists of 1969 films by country or language and last: 1961 Cameroonian Premier League -[2018-02-13T08:23:36.959] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Walworth County, South Dakota and last: Wiman Andrus -[2018-02-13T08:23:37.022] [INFO] cheese - inserting 1000 documents. first: Industrial autoclave and last: Reginald Dos Remedios -[2018-02-13T08:23:37.044] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:23:37.111] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:23:37.189] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:23:37.231] [INFO] cheese - inserting 1000 documents. first: Sitronics and last: Croy, Highland -[2018-02-13T08:23:37.233] [INFO] cheese - inserting 1000 documents. first: Southampton Township, New Jersey and last: East Otto, New York -[2018-02-13T08:23:37.311] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:23:37.422] [INFO] cheese - inserting 1000 documents. first: GB 20600-2006 and last: Barony of Närpiö -[2018-02-13T08:23:37.448] [INFO] cheese - inserting 1000 documents. first: Cers Cup and last: La Jolla Reservation -[2018-02-13T08:23:37.556] [INFO] cheese - batch complete in: 3.812 secs -[2018-02-13T08:23:37.611] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:23:37.617] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:23:37.684] [INFO] cheese - inserting 1000 documents. first: Burning of the Jew and last: Sibley's Cove, Newfoundland and Labrador -[2018-02-13T08:23:37.696] [INFO] cheese - inserting 1000 documents. first: Population and Development Review and last: Amisos Treasure -[2018-02-13T08:23:37.762] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:23:37.777] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:23:37.782] [INFO] cheese - inserting 1000 documents. first: Native Hackberry and last: Diceratucha xenopis -[2018-02-13T08:23:37.843] [INFO] cheese - inserting 1000 documents. first: Reginald dos Remedios and last: Category:Speed skating at the 2007 Asian Winter Games -[2018-02-13T08:23:37.894] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:23:37.935] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:23:38.048] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nirvana FC and last: Conrad B. Harrison -[2018-02-13T08:23:38.181] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:23:38.283] [INFO] cheese - inserting 1000 documents. first: Barons of Närpiö and last: 1997 Survivor Series -[2018-02-13T08:23:38.283] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Birthdays/January 15 and last: Category:Referendums in Liechtenstein -[2018-02-13T08:23:38.421] [INFO] cheese - inserting 1000 documents. first: Summer Rain (ATB song) and last: Great Equarry of France -[2018-02-13T08:23:38.478] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:23:38.523] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:23:38.545] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:23:38.637] [INFO] cheese - inserting 1000 documents. first: Nycteropa and last: Wikipedia:WikiProject Spam/LinkReports/cwfwrestlingfed.webs.com -[2018-02-13T08:23:38.681] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:23:38.700] [INFO] cheese - inserting 1000 documents. first: Portal:Latter-day Saints/Selected Quotes/2 and last: Category:Landforms of Phu Yen Province -[2018-02-13T08:23:38.756] [INFO] cheese - inserting 1000 documents. first: Thouless energy and last: Richard Décarie -[2018-02-13T08:23:38.816] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:23:38.915] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:23:38.956] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/LOT, Bristol and last: Category:Sanyo mobile phones -[2018-02-13T08:23:39.037] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:23:39.080] [INFO] cheese - inserting 1000 documents. first: Lyon King-of-Arms and last: Mazar Dam -[2018-02-13T08:23:39.111] [INFO] cheese - inserting 1000 documents. first: Kdka and last: Philip J. Fry I -[2018-02-13T08:23:39.127] [INFO] cheese - inserting 1000 documents. first: Oystein Jarlsbo and last: Darshen -[2018-02-13T08:23:39.142] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/LGBT/2 and last: Ramgea annulispora -[2018-02-13T08:23:39.148] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:23:39.222] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:23:39.228] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:39.235] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:23:39.236] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Soc Trang Province and last: Wikipedia:Articles for deletion/Ram Khilawan Mishra -[2018-02-13T08:23:39.328] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:23:39.668] [INFO] cheese - inserting 1000 documents. first: Camp Seminole and last: Category:Baseball teams in Nebraska -[2018-02-13T08:23:39.790] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:23:39.828] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Milton S. Eisenhower Foundation and last: Southern Star (observation wheel) -[2018-02-13T08:23:39.888] [INFO] cheese - inserting 1000 documents. first: Sao José and last: Wikipedia:Articles for deletion/Colm Kearney -[2018-02-13T08:23:39.992] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:23:40.061] [INFO] cheese - inserting 1000 documents. first: File:Arx Fatalis cover.png and last: Life is Good Company -[2018-02-13T08:23:40.079] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T08:23:40.082] [INFO] cheese - inserting 1000 documents. first: Chan King Ming and last: 1987–88 UAE Football League -[2018-02-13T08:23:40.109] [INFO] cheese - inserting 1000 documents. first: Borveny and last: Short Read Archive -[2018-02-13T08:23:40.148] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:23:40.203] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:23:40.268] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:23:40.344] [INFO] cheese - inserting 1000 documents. first: MS Aramis and last: File:GJ b&w protest.jpg -[2018-02-13T08:23:40.730] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T08:23:40.762] [INFO] cheese - inserting 1000 documents. first: East Randolph, New York and last: Pitcairn, New York -[2018-02-13T08:23:40.858] [INFO] cheese - inserting 1000 documents. first: Lie algebra action and last: Category:Iranian railway station stubs -[2018-02-13T08:23:40.913] [INFO] cheese - inserting 1000 documents. first: Gary Barnes and last: AsCl5 -[2018-02-13T08:23:40.932] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:23:41.190] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T08:23:41.223] [INFO] cheese - inserting 1000 documents. first: Acura Classic and last: Sport For Jove Theatre Company -[2018-02-13T08:23:41.267] [INFO] cheese - batch complete in: 3.71 secs -[2018-02-13T08:23:41.344] [INFO] cheese - inserting 1000 documents. first: Conrad Festival and last: Category:Pandelis Karayorgis albums -[2018-02-13T08:23:41.403] [INFO] cheese - inserting 1000 documents. first: Jörg Kuebart and last: Wikipedia:WikiProject Spam/LinkReports/rendaxdespesas.wordpress.com) -[2018-02-13T08:23:41.454] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:23:41.519] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T08:23:41.566] [INFO] cheese - batch complete in: 1.418 secs -[2018-02-13T08:23:41.658] [INFO] cheese - inserting 1000 documents. first: Atholl brose and last: Joseph W. Tkach -[2018-02-13T08:23:41.802] [INFO] cheese - inserting 1000 documents. first: Craig McMurtry and last: Throckmorton (disambiguation) -[2018-02-13T08:23:41.847] [INFO] cheese - batch complete in: 1.768 secs -[2018-02-13T08:23:41.926] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:23:42.024] [INFO] cheese - inserting 1000 documents. first: Fraser v Children's Court, Pretoria North and Others and last: NC Clean Water Management Trust Fund -[2018-02-13T08:23:42.131] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:23:42.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Image-Heliconius ismenius 2 Richard Bartz.jpg and last: Cierp-Gaud -[2018-02-13T08:23:42.296] [INFO] cheese - inserting 1000 documents. first: Template:Romania-university-stub and last: 1983 UCLA Bruins football team -[2018-02-13T08:23:42.311] [INFO] cheese - inserting 1000 documents. first: Aurore Dupin and last: Dougherty, James -[2018-02-13T08:23:42.334] [INFO] cheese - inserting 1000 documents. first: 2003 ICC Cricket World Cup Final and last: William Baird (physician) -[2018-02-13T08:23:42.453] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:23:42.498] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:23:42.505] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:23:42.624] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:23:42.815] [INFO] cheese - inserting 1000 documents. first: Larry Myricks and last: Dip belt -[2018-02-13T08:23:42.887] [INFO] cheese - inserting 1000 documents. first: File:Characters Uchuusen Sagittarius.jpg and last: Alert (gum) -[2018-02-13T08:23:42.909] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:23:42.967] [INFO] cheese - inserting 1000 documents. first: Cadaver (video game) and last: Soap and Detergent -[2018-02-13T08:23:43.010] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:23:43.111] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:23:43.167] [INFO] cheese - inserting 1000 documents. first: Douglass, James and last: 140journos -[2018-02-13T08:23:43.241] [INFO] cheese - inserting 1000 documents. first: Harap Alb and last: C9H21N -[2018-02-13T08:23:43.243] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:23:43.305] [INFO] cheese - inserting 1000 documents. first: Coleophora dianthi and last: Mysterious Power -[2018-02-13T08:23:43.308] [INFO] cheese - inserting 1000 documents. first: Fishermen's Village and last: Template:Wikipediapools -[2018-02-13T08:23:43.341] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:23:43.431] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:23:43.444] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:23:43.597] [INFO] cheese - inserting 1000 documents. first: Town of Northam and last: Cater -[2018-02-13T08:23:43.697] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:23:43.735] [INFO] cheese - inserting 1000 documents. first: Larry Tieu and last: Hong Kong Ice Hockey Championship -[2018-02-13T08:23:43.769] [INFO] cheese - inserting 1000 documents. first: John Ryder (boxer) and last: Template:User in BWA -[2018-02-13T08:23:43.822] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:23:43.843] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:43.923] [INFO] cheese - inserting 1000 documents. first: Ralph Perretta and last: Maddur, Ranga Reddy district -[2018-02-13T08:23:43.936] [INFO] cheese - inserting 1000 documents. first: WSSC and last: Șcheiu River (Râul Șes) -[2018-02-13T08:23:43.949] [INFO] cheese - inserting 1000 documents. first: Benmore Gardens and last: Takao Omori -[2018-02-13T08:23:44.008] [INFO] cheese - inserting 1000 documents. first: Darren Smith (Australian rules footballer) and last: Template:Fb team Jomo Cosmos -[2018-02-13T08:23:44.007] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:23:44.019] [INFO] cheese - inserting 1000 documents. first: Rensselaer Falls, New York and last: Brevard, North Carolina -[2018-02-13T08:23:44.019] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:23:44.091] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:23:44.138] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:23:44.239] [INFO] cheese - batch complete in: 2.972 secs -[2018-02-13T08:23:44.349] [INFO] cheese - inserting 1000 documents. first: Tis better to have loved and lost and last: The Stolen Body and Other Tales of the Unexpected -[2018-02-13T08:23:44.353] [INFO] cheese - inserting 1000 documents. first: Nevada State Route 537 and last: Portal:Nontheism/Quotes/September -[2018-02-13T08:23:44.430] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:23:44.456] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:23:44.547] [INFO] cheese - inserting 1000 documents. first: Euler top and last: Rock Drill (Ezra Pound) -[2018-02-13T08:23:44.548] [INFO] cheese - inserting 1000 documents. first: Lenny Barker and last: Marburg Branch Railway -[2018-02-13T08:23:44.594] [INFO] cheese - inserting 1000 documents. first: Saint-Laurent, Haute-Garonne and last: Colorado Women's College -[2018-02-13T08:23:44.593] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:23:44.634] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:23:44.677] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:23:44.779] [INFO] cheese - inserting 1000 documents. first: The Favorite Short Stories of H. G. Wells and last: XHFCT-FM -[2018-02-13T08:23:44.821] [INFO] cheese - inserting 1000 documents. first: Protolith and last: Category:Canadian orchestras -[2018-02-13T08:23:44.814] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T08:23:44.839] [INFO] cheese - inserting 1000 documents. first: Template:S-line/NSW Country lines left/Unanderra-Moss Vale and last: Gbowr -[2018-02-13T08:23:44.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:FILMPR and last: Valenticarbo praetermissus -[2018-02-13T08:23:44.923] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:23:44.923] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:23:45.009] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:23:45.147] [INFO] cheese - inserting 1000 documents. first: 1999 Louis Vuitton Cup and last: Tom Pratt (footballer) -[2018-02-13T08:23:45.153] [INFO] cheese - inserting 1000 documents. first: Coleophora pilion and last: Mozhaiskiy -[2018-02-13T08:23:45.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/i69.photobucket.com and last: Wikipedia:Peer review/Australia-Indonesia Prisoner Exchange Agreement -[2018-02-13T08:23:45.207] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:45.234] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:23:45.309] [INFO] cheese - inserting 1000 documents. first: Category:Chess woman players and last: Graves, James -[2018-02-13T08:23:45.312] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:23:45.384] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:23:45.571] [INFO] cheese - inserting 1000 documents. first: Old Addenbrooke's Site and last: File:CEPJSW2.jpg -[2018-02-13T08:23:45.639] [INFO] cheese - inserting 1000 documents. first: Shire of Busselton, Western Australia and last: Category:UD Almería players -[2018-02-13T08:23:45.652] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:23:45.745] [INFO] cheese - inserting 1000 documents. first: George Ward Cole and last: Category:Midwestern State University faculty -[2018-02-13T08:23:45.751] [INFO] cheese - inserting 1000 documents. first: San Juan Bautista, Paraguay and last: Come Taste the Band -[2018-02-13T08:23:45.761] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:45.832] [INFO] cheese - inserting 1000 documents. first: Green, James and last: Rubus huttonii -[2018-02-13T08:23:45.842] [INFO] cheese - inserting 1000 documents. first: East Germany women's national volleyball team and last: Wavelength (soundtrack) -[2018-02-13T08:23:45.868] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:23:45.873] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:23:45.940] [INFO] cheese - inserting 1000 documents. first: Mozhaiski and last: Madharam -[2018-02-13T08:23:45.990] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:23:46.013] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:23:46.105] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:23:46.269] [INFO] cheese - inserting 1000 documents. first: Rosman, North Carolina and last: Mariemont, Ohio -[2018-02-13T08:23:46.376] [INFO] cheese - inserting 1000 documents. first: Uclms and last: Dmytro -[2018-02-13T08:23:46.391] [INFO] cheese - batch complete in: 2.152 secs -[2018-02-13T08:23:46.413] [INFO] cheese - inserting 1000 documents. first: Suntory Sunbirds and last: Natalie Allyn Wakeley -[2018-02-13T08:23:46.427] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hamshakal's and last: Category:1902 in Oregon -[2018-02-13T08:23:46.446] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:23:46.476] [INFO] cheese - inserting 1000 documents. first: Pope Kyrillos VI and last: Portal:Socialism/Selected article/2 -[2018-02-13T08:23:46.471] [INFO] cheese - inserting 1000 documents. first: Biol. Pharm. Bull. and last: Kum-song -[2018-02-13T08:23:46.487] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:46.496] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:23:46.548] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:23:46.548] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:23:46.650] [INFO] cheese - inserting 1000 documents. first: USNS Rappahannock (T-AO-204) and last: Authority figures in comedy -[2018-02-13T08:23:46.707] [INFO] cheese - inserting 1000 documents. first: Mittakodur and last: NAPTOSA Union -[2018-02-13T08:23:46.740] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:23:46.946] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:23:47.155] [INFO] cheese - inserting 1000 documents. first: The Roland Kirk Quartet Meets the Benny Golson Orchestra and last: Thesis of Pulacayo -[2018-02-13T08:23:47.290] [INFO] cheese - inserting 1000 documents. first: Environmental effects of oil shale industry and last: Scientrier -[2018-02-13T08:23:47.290] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:23:47.315] [INFO] cheese - inserting 1000 documents. first: Category:1904 in Oregon and last: ADAM 17 endopeptidase -[2018-02-13T08:23:47.349] [INFO] cheese - inserting 1000 documents. first: Geum-seong and last: Patriarch Theodosios -[2018-02-13T08:23:47.382] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:47.477] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:23:47.484] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:23:47.504] [INFO] cheese - inserting 1000 documents. first: Bothrops atrox colombiensis and last: Collecting Team -[2018-02-13T08:23:47.631] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:23:47.640] [INFO] cheese - inserting 1000 documents. first: Template:Bahrain squad 2004 AFC Asian Cup and last: Kisszántó -[2018-02-13T08:23:47.758] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:23:47.904] [INFO] cheese - inserting 1000 documents. first: Past & Present (journal) and last: Battle of Coamo -[2018-02-13T08:23:47.919] [INFO] cheese - inserting 1000 documents. first: Priya Sisters - Shanmukhapriya & Haripriya and last: Category:Nils Gaelic footballers -[2018-02-13T08:23:48.023] [INFO] cheese - inserting 1000 documents. first: Poulos and last: Vein (botany) -[2018-02-13T08:23:48.023] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:23:48.039] [INFO] cheese - inserting 1000 documents. first: The Women of Genesis series and last: List of heads of state of Burma -[2018-02-13T08:23:48.046] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:23:48.105] [INFO] cheese - inserting 1000 documents. first: Essert-Romand and last: Carlos López (baseball) -[2018-02-13T08:23:48.117] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:23:48.162] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:23:48.186] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:23:48.334] [INFO] cheese - inserting 1000 documents. first: Vicosoprano and last: Jörg van Nieuwenhuijzen -[2018-02-13T08:23:48.433] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:23:48.440] [INFO] cheese - inserting 1000 documents. first: Nagyszántó and last: File:OpenBSD49-boot.png -[2018-02-13T08:23:48.537] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:23:48.685] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2009-08-08/John Dillinger and last: Wikipedia:WikiProject Spam/LinkReports/electricvelocipede.com -[2018-02-13T08:23:48.749] [INFO] cheese - inserting 1000 documents. first: Monfort Heights East, Ohio and last: Goldsby, Oklahoma -[2018-02-13T08:23:48.755] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:23:48.855] [INFO] cheese - inserting 1000 documents. first: Category:Foreign relations of Singapore and last: Category:1960s fashion -[2018-02-13T08:23:48.887] [INFO] cheese - inserting 1000 documents. first: Vilmos Patay and last: Category:Rhodesian Bush War -[2018-02-13T08:23:48.904] [INFO] cheese - inserting 1000 documents. first: Kenwood, New York and last: La Chapelle-Blanche-Saint-Martin -[2018-02-13T08:23:48.936] [INFO] cheese - batch complete in: 2.545 secs -[2018-02-13T08:23:48.982] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:23:49.015] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:23:49.024] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:23:49.237] [INFO] cheese - inserting 1000 documents. first: Bishop of Mortlach-Aberdeen and last: Tour of Chongming Island Time Trial -[2018-02-13T08:23:49.323] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:23:49.423] [INFO] cheese - inserting 1000 documents. first: Mt Pelée and last: Frank Duckworth -[2018-02-13T08:23:49.537] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:23:49.604] [INFO] cheese - inserting 1000 documents. first: How to Explain Pictures to a Dead Hare and last: Bani humi -[2018-02-13T08:23:49.700] [INFO] cheese - inserting 1000 documents. first: Category:18th-century disestablishments in Scotland and last: Shawn Saunders -[2018-02-13T08:23:49.755] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:23:49.777] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Empires: Dawn of the Modern World and last: Category:Ireland in the Eurovision Song Contest -[2018-02-13T08:23:49.852] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:23:49.940] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:23:49.953] [INFO] cheese - inserting 1000 documents. first: Ann Calvello and last: Yaşargil -[2018-02-13T08:23:50.116] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:23:50.126] [INFO] cheese - inserting 1000 documents. first: Barnyard (Video Game) and last: Wikipedia:Good article reassessment/St La Salle Hall/1 -[2018-02-13T08:23:50.192] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:23:50.454] [INFO] cheese - inserting 1000 documents. first: Alice Baldwin and last: EC 3.5.4.26 -[2018-02-13T08:23:50.503] [INFO] cheese - inserting 1000 documents. first: Distributive law between monads and last: Panchacharyas -[2018-02-13T08:23:50.539] [INFO] cheese - inserting 1000 documents. first: Bani jawbah and last: Template:Turacos -[2018-02-13T08:23:50.607] [INFO] cheese - inserting 1000 documents. first: Manipulation of atoms by optical field and last: File:ClaypigeonLobby.jpg -[2018-02-13T08:23:50.628] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:23:50.670] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:23:50.694] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:23:50.802] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:23:50.949] [INFO] cheese - inserting 1000 documents. first: TimedText:Kelly Clarkson - Nostalgic.ogg.en.srt and last: O'Leary, James -[2018-02-13T08:23:50.975] [INFO] cheese - inserting 1000 documents. first: Liri Blues Festival and last: Victoria Square, Toronto -[2018-02-13T08:23:51.007] [INFO] cheese - inserting 1000 documents. first: Category:History of Italy by region and last: Gulbargah -[2018-02-13T08:23:51.087] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:23:51.119] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:23:51.113] [INFO] cheese - batch complete in: 2.951 secs -[2018-02-13T08:23:51.238] [INFO] cheese - inserting 1000 documents. first: Category:Suicides by jumping in Canada and last: Vengeful Spirit -[2018-02-13T08:23:51.297] [INFO] cheese - inserting 1000 documents. first: Amietophrynus pardalis and last: Saint-Jean-d'Étreux -[2018-02-13T08:23:51.328] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:23:51.388] [INFO] cheese - inserting 1000 documents. first: Salisbury hall and last: Findory.com -[2018-02-13T08:23:51.408] [INFO] cheese - inserting 1000 documents. first: Ladainian tomlinson and last: Lochee Harp -[2018-02-13T08:23:51.437] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:23:51.466] [INFO] cheese - inserting 1000 documents. first: Newcastle, Oklahoma and last: Strausstown, Pennsylvania -[2018-02-13T08:23:51.506] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:23:51.540] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:23:51.669] [INFO] cheese - batch complete in: 2.733 secs -[2018-02-13T08:23:51.682] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elections.gov.sg and last: DFS Schulgleiter SG.38 -[2018-02-13T08:23:51.774] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:23:51.857] [INFO] cheese - inserting 1000 documents. first: Onboard safety videos and last: James Wilson (Dean of Tuam) -[2018-02-13T08:23:51.925] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:23:52.009] [INFO] cheese - inserting 1000 documents. first: Means-testing and last: Sweeney -[2018-02-13T08:23:52.011] [INFO] cheese - inserting 1000 documents. first: Ceratophyllus borealis and last: Cheshmehsefid -[2018-02-13T08:23:52.057] [INFO] cheese - inserting 1000 documents. first: L'entraînement du champion avant la course and last: Chidambaranatha Nadar -[2018-02-13T08:23:52.070] [INFO] cheese - inserting 1000 documents. first: Saint-Julien, Jura and last: Wikipedia:Peer review/Holden VE Commodore -[2018-02-13T08:23:52.079] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:23:52.090] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:23:52.126] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:23:52.110] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:23:52.197] [INFO] cheese - inserting 1000 documents. first: File:No such thing.jpg and last: Shen Kuei -[2018-02-13T08:23:52.303] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:23:52.363] [INFO] cheese - inserting 1000 documents. first: Category:Kickboxing in Austria and last: Wikipedia:WikiProject Spam/LinkReports/dundalkfc.com -[2018-02-13T08:23:52.481] [INFO] cheese - inserting 1000 documents. first: Sadduguntepalya and last: Rio Corcovado -[2018-02-13T08:23:52.512] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:23:52.594] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:23:52.622] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Sefid and last: Shoftim (parsha) -[2018-02-13T08:23:52.640] [INFO] cheese - inserting 1000 documents. first: File:Fast Food Tycoon 2 Coverart.png and last: 2007-08 Indian cricket season -[2018-02-13T08:23:52.689] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:23:52.737] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:23:52.854] [INFO] cheese - inserting 1000 documents. first: C3La2O9 and last: El Faraon -[2018-02-13T08:23:52.931] [INFO] cheese - inserting 1000 documents. first: Mystical Ninja Starring Goemon (Game Boy) and last: Wikipedia:Translation/Serapeum -[2018-02-13T08:23:52.942] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:23:52.957] [INFO] cheese - inserting 1000 documents. first: Juan José Medina and last: Queen Tawosret -[2018-02-13T08:23:53.053] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:53.104] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:23:53.138] [INFO] cheese - inserting 1000 documents. first: Rubus nocivus and last: 2004 Oceania Handball Championship -[2018-02-13T08:23:53.154] [INFO] cheese - inserting 1000 documents. first: G200 (disambiguation) and last: Sheja -[2018-02-13T08:23:53.208] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:53.264] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:53.318] [INFO] cheese - inserting 1000 documents. first: Politico's History of British Political Parties and last: Musa ibn Faris al-Mutawakkil -[2018-02-13T08:23:53.354] [INFO] cheese - inserting 1000 documents. first: File:WGAA logo.png and last: Pélussin -[2018-02-13T08:23:53.417] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:23:53.441] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:53.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Council/Proposals/NDH and last: Ruislip gardens primary school -[2018-02-13T08:23:53.655] [INFO] cheese - inserting 1000 documents. first: List of songs written by Shane McAnally and last: Category:Louisiana elections, 1855 -[2018-02-13T08:23:53.738] [INFO] cheese - inserting 1000 documents. first: Tilden Township, Berks County, Pennsylvania and last: Lima, Pennsylvania -[2018-02-13T08:23:53.729] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:23:53.775] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:53.892] [INFO] cheese - inserting 1000 documents. first: Finnish torpedo boat S2 and last: George Fuller (congressman) -[2018-02-13T08:23:53.994] [INFO] cheese - inserting 1000 documents. first: Chapel royal and last: Second sack -[2018-02-13T08:23:54.048] [INFO] cheese - batch complete in: 2.379 secs -[2018-02-13T08:23:54.051] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:23:54.070] [INFO] cheese - inserting 1000 documents. first: Template:Brussels-Capital Region Parliament election, 2009 and last: Foundation for Child Development -[2018-02-13T08:23:54.101] [INFO] cheese - inserting 1000 documents. first: Rick Outman and last: Wikipedia:WikiProject Spam/LinkReports/pabloaimarweb.blogspot.com -[2018-02-13T08:23:54.163] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:23:54.185] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:23:54.282] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:23:54.360] [INFO] cheese - inserting 1000 documents. first: Dancé, Loire and last: Thou, Loiret -[2018-02-13T08:23:54.548] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:23:54.621] [INFO] cheese - inserting 1000 documents. first: Category:Louisiana elections, 1859 and last: Guyana at the 2015 World Championships in Athletics -[2018-02-13T08:23:54.705] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:23:54.766] [INFO] cheese - inserting 1000 documents. first: List of forest regions and districts of British Columbia and last: 2006 Supercopa de España -[2018-02-13T08:23:54.849] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:23:54.886] [INFO] cheese - inserting 1000 documents. first: Buchwaldoboletus lignicola and last: HD 113538 c -[2018-02-13T08:23:54.937] [INFO] cheese - inserting 1000 documents. first: The Daily Journal (Venezuela) and last: Oxford East -[2018-02-13T08:23:55.026] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:23:55.118] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:23:55.246] [INFO] cheese - inserting 1000 documents. first: Otto I of Pomerania and last: Call It Spring -[2018-02-13T08:23:55.250] [INFO] cheese - inserting 1000 documents. first: Tretyakovskaya Gallery and last: Cowdray Park -[2018-02-13T08:23:55.266] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Berube and last: File:Anpgrh canal gharsana.jpg -[2018-02-13T08:23:55.351] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:23:55.465] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:23:55.504] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:23:55.775] [INFO] cheese - inserting 1000 documents. first: Hans Wimmer and last: Life on Enceladus -[2018-02-13T08:23:55.890] [INFO] cheese - inserting 1000 documents. first: List of Quebec railways and last: Ron Cash -[2018-02-13T08:23:55.907] [INFO] cheese - inserting 1000 documents. first: Ängelholm–Helsingborg and last: Harland (name) -[2018-02-13T08:23:55.920] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:23:56.007] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:23:56.033] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:23:56.077] [INFO] cheese - inserting 1000 documents. first: Sittingbourne and Sheppey and last: Coracite -[2018-02-13T08:23:56.197] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:23:56.207] [INFO] cheese - inserting 1000 documents. first: Australia 2020 and last: File:Do17z 20mm.jpg -[2018-02-13T08:23:56.258] [INFO] cheese - inserting 1000 documents. first: File:André Pieyre de Mandiargues.jpg and last: En la ardiente oscuridad -[2018-02-13T08:23:56.374] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:23:56.384] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:23:56.414] [INFO] cheese - inserting 1000 documents. first: Category:Education in Cyprus and last: Medium Wave -[2018-02-13T08:23:56.596] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/August 16, 2015 and last: Ulhasnagar taluka -[2018-02-13T08:23:56.606] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:23:56.669] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:23:56.860] [INFO] cheese - inserting 1000 documents. first: Sunrise (Uriah Heep's song) and last: Robert Corteen Carswell -[2018-02-13T08:23:56.961] [INFO] cheese - inserting 1000 documents. first: Progress 7K-TG and last: Alexis Creek -[2018-02-13T08:23:57.105] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:23:57.194] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:23:57.194] [INFO] cheese - inserting 1000 documents. first: Pittinite and last: Category:Books by V. S. Naipaul -[2018-02-13T08:23:57.195] [INFO] cheese - inserting 1000 documents. first: Linwood, Pennsylvania and last: North Catasauqua, Pennsylvania -[2018-02-13T08:23:57.318] [INFO] cheese - inserting 1000 documents. first: Joint method of agreement and difference and last: Grez-Neuville -[2018-02-13T08:23:57.325] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:23:57.453] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dwu.org and last: Category:Australian assassins -[2018-02-13T08:23:57.506] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:23:57.614] [INFO] cheese - batch complete in: 3.566 secs -[2018-02-13T08:23:57.669] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:23:57.867] [INFO] cheese - inserting 1000 documents. first: Hussain Al-Rumaihi and last: Ryosuke Nomura -[2018-02-13T08:23:58.037] [INFO] cheese - inserting 1000 documents. first: Adam Nichols and last: Amy's Baking Company -[2018-02-13T08:23:58.027] [INFO] cheese - inserting 1000 documents. first: Law of comparative judgment and last: Father Paul -[2018-02-13T08:23:58.091] [INFO] cheese - batch complete in: 1.42 secs -[2018-02-13T08:23:58.224] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:23:58.230] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:23:58.286] [INFO] cheese - inserting 1000 documents. first: Grugé-l'Hôpital and last: Wikipedia:Peer review/Maulana Abul Kalam Azad -[2018-02-13T08:23:58.417] [INFO] cheese - inserting 1000 documents. first: Mesabolone and last: Europe Tour -[2018-02-13T08:23:58.439] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:23:58.657] [INFO] cheese - inserting 1000 documents. first: List of colonial governors of florida and last: St. Helena Rail -[2018-02-13T08:23:58.691] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:23:58.725] [INFO] cheese - inserting 1000 documents. first: Botti Biabi and last: Wishenpoof! -[2018-02-13T08:23:58.761] [INFO] cheese - batch complete in: 1.435 secs -[2018-02-13T08:23:58.787] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:59.002] [INFO] cheese - inserting 1000 documents. first: Arthur "Dooley" Wilson and last: Category:Electric power in Vietnam -[2018-02-13T08:23:59.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Mauna Loa and last: Wikipedia:Peer review/Nicktropolis -[2018-02-13T08:23:59.166] [INFO] cheese - inserting 1000 documents. first: Category:Swiss writers in German and last: Mother Natures Kitchen -[2018-02-13T08:23:59.220] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:23:59.426] [INFO] cheese - batch complete in: 1.202 secs -[2018-02-13T08:23:59.595] [INFO] cheese - batch complete in: 1.925 secs -[2018-02-13T08:23:59.606] [INFO] cheese - inserting 1000 documents. first: Category:Brazilian reality television series and last: Heather Craney -[2018-02-13T08:23:59.728] [INFO] cheese - inserting 1000 documents. first: 1965 in Singapore and last: Benoni -[2018-02-13T08:23:59.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alive and Hostile E.P. and last: Template:2015 AFC U-14 Regional Festival of Football Group A -[2018-02-13T08:23:59.769] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:23:59.870] [INFO] cheese - batch complete in: 1.639 secs -[2018-02-13T08:23:59.891] [INFO] cheese - inserting 1000 documents. first: Fictional Jimmy Wales and last: Brokedown Palace: Music from the Original Motion Picture Soundtrack -[2018-02-13T08:23:59.946] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:24:00.048] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:24:00.204] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Indian Christianity work group articles and last: Saint-Jean-le-Thomas -[2018-02-13T08:24:00.264] [INFO] cheese - inserting 1000 documents. first: File:You Don't Love Me (No, No, No) single cover.jpg and last: Moreau's opera house -[2018-02-13T08:24:00.306] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:24:00.479] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:24:00.601] [INFO] cheese - inserting 1000 documents. first: Template:Bodoland People's Front/meta/shortname and last: Provinces of Australia -[2018-02-13T08:24:00.605] [INFO] cheese - inserting 1000 documents. first: Naukšēni Municipality and last: Chaque feu... -[2018-02-13T08:24:00.669] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by James Franco and last: Wikipedia:Articles for deletion/Edward W. Gosselin -[2018-02-13T08:24:00.691] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:24:00.690] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:24:00.819] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:24:00.849] [INFO] cheese - inserting 1000 documents. first: Northampton, Pennsylvania and last: Bradley, South Carolina -[2018-02-13T08:24:00.857] [INFO] cheese - inserting 1000 documents. first: Symbol of Christianity and last: Category:Birds of Argentina -[2018-02-13T08:24:00.973] [INFO] cheese - inserting 1000 documents. first: Saint-Laurent-de-Cuves and last: Edmund Sheffield, 1st Baron Sheffield -[2018-02-13T08:24:00.995] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:24:01.005] [INFO] cheese - inserting 1000 documents. first: Tumbling Tumbleweed and last: CYFS -[2018-02-13T08:24:01.047] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:24:01.115] [INFO] cheese - batch complete in: 3.501 secs -[2018-02-13T08:24:01.165] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:24:01.395] [INFO] cheese - inserting 1000 documents. first: Joshua Peters and last: Ryazan Plant for Manufacturing and Processing Non-Ferrous Metals -[2018-02-13T08:24:01.514] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:24:01.613] [INFO] cheese - inserting 1000 documents. first: Abdurahmanov's pugolovka and last: Csoklovina -[2018-02-13T08:24:01.658] [INFO] cheese - inserting 1000 documents. first: Rocky Pass and last: Just an American Boy (album) -[2018-02-13T08:24:01.683] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Michael Douglas on stage and screen and last: One Last Kiss (Full House) -[2018-02-13T08:24:01.788] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:24:01.816] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:24:01.838] [INFO] cheese - inserting 1000 documents. first: Synergetic and last: 1918–19 Northern Rugby Football Union season -[2018-02-13T08:24:01.847] [INFO] cheese - inserting 1000 documents. first: Alameda County (California) and last: NWA United National Championship -[2018-02-13T08:24:01.891] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:24:01.935] [INFO] cheese - inserting 1000 documents. first: Child, youth and family services and last: GranDracmon -[2018-02-13T08:24:02.005] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:24:02.075] [INFO] cheese - batch complete in: 1.384 secs -[2018-02-13T08:24:02.158] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:24:02.356] [INFO] cheese - inserting 1000 documents. first: Category:2004 establishments in New Mexico and last: Hjortsberg -[2018-02-13T08:24:02.411] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:24:02.489] [INFO] cheese - inserting 1000 documents. first: Nova Chemicals Corporation and last: Zero Township, Adams County, Nebraska -[2018-02-13T08:24:02.527] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:24:02.556] [INFO] cheese - inserting 1000 documents. first: Gyeongju Seokbinggo and last: File:George Washington Memorial Parkway, Alexandria, VA.jpg -[2018-02-13T08:24:02.583] [INFO] cheese - inserting 1000 documents. first: Against The Grain (Acoustic Alchemy album) and last: Aaq26 -[2018-02-13T08:24:02.601] [INFO] cheese - inserting 1000 documents. first: Bobaja and last: Pama–Maran languages -[2018-02-13T08:24:02.644] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:24:02.680] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:24:02.731] [INFO] cheese - inserting 1000 documents. first: City of Bradford Metropolitan District Council election, 1999 and last: The Journal of Physical Chemistry B -[2018-02-13T08:24:02.776] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:24:02.901] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:24:02.958] [INFO] cheese - inserting 1000 documents. first: Stanley Theater (Jersey City) and last: Wherton -[2018-02-13T08:24:02.958] [INFO] cheese - inserting 1000 documents. first: Optical pulsar and last: Wikipedia:Peer review/Slipknot (band) -[2018-02-13T08:24:02.976] [INFO] cheese - inserting 1000 documents. first: Brasiliorchis schunkeana and last: Category:Treaties of the Empire of Brazil -[2018-02-13T08:24:02.998] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:24:03.074] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:24:03.103] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:24:03.229] [INFO] cheese - inserting 1000 documents. first: AN-AAQ-26 and last: Michaël Borremans -[2018-02-13T08:24:03.280] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:24:03.313] [INFO] cheese - inserting 1000 documents. first: Cokesbury, South Carolina and last: Nash, Texas -[2018-02-13T08:24:03.441] [INFO] cheese - inserting 1000 documents. first: Stronger woman and last: Portal:United States/On this day/April 18 -[2018-02-13T08:24:03.444] [INFO] cheese - batch complete in: 2.323 secs -[2018-02-13T08:24:03.457] [INFO] cheese - inserting 1000 documents. first: Sonkatch, Bhopal and last: Category:Naval ships of Burma -[2018-02-13T08:24:03.484] [INFO] cheese - inserting 1000 documents. first: Paramacrobiotus craterlaki and last: Tohu and Tikkun -[2018-02-13T08:24:03.505] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:24:03.590] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Army Song and last: Yevgeniy Khudobko -[2018-02-13T08:24:03.596] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:24:03.604] [INFO] cheese - inserting 1000 documents. first: Endless Love (2015 film) and last: Thirteen Moons (novel) -[2018-02-13T08:24:03.688] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:24:03.824] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:24:03.831] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:24:04.161] [INFO] cheese - inserting 1000 documents. first: Liebster Gott, wenn werd ich sterben? BWV 8 and last: Category:222 BC -[2018-02-13T08:24:04.202] [INFO] cheese - inserting 1000 documents. first: Persistent data structure with confluence and last: William Henry Emerson -[2018-02-13T08:24:04.214] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of ParanormalResources and last: File:Bob and Tom Radio Show- The Comedy Tour Volume1.jpg -[2018-02-13T08:24:04.235] [INFO] cheese - inserting 1000 documents. first: Frederick B. Rowe and last: Timeline of Saratoga Springs, New York -[2018-02-13T08:24:04.277] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:24:04.311] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:24:04.320] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:24:04.374] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:24:04.609] [INFO] cheese - inserting 1000 documents. first: Reg Graycar and last: Wikipedia:Reference desk/Archives/Entertainment/2013 May 15 -[2018-02-13T08:24:04.655] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:24:04.709] [INFO] cheese - inserting 1000 documents. first: Gunnar Ólason and last: Runcicantitruncated 6-orthoplex -[2018-02-13T08:24:04.766] [INFO] cheese - inserting 1000 documents. first: Yevgeny Khudobko and last: Sexy M.F. -[2018-02-13T08:24:04.804] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:24:04.825] [INFO] cheese - inserting 1000 documents. first: Biak language and last: Reid Paley -[2018-02-13T08:24:04.862] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:24:04.989] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:24:05.068] [INFO] cheese - inserting 1000 documents. first: Category:223 BC and last: Yushin constitution -[2018-02-13T08:24:05.069] [INFO] cheese - inserting 1000 documents. first: Brittany Force and last: Wikipedia:Featured picture candidates/Condom Cathedral -[2018-02-13T08:24:05.073] [INFO] cheese - inserting 1000 documents. first: Dobie Center and last: Saint Thomas, North Dakota -[2018-02-13T08:24:05.195] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:24:05.197] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:24:05.290] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:24:05.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 May 16 and last: Category:2004 establishments in Nebraska -[2018-02-13T08:24:05.688] [INFO] cheese - inserting 1000 documents. first: Collateral management software and last: Template:Botswana National Front/meta/shortname -[2018-02-13T08:24:05.790] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:24:05.806] [INFO] cheese - inserting 1000 documents. first: USS Emily B. (ID-3731) and last: Template:Frisco RoughRiders roster -[2018-02-13T08:24:05.831] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T08:24:05.923] [INFO] cheese - inserting 1000 documents. first: DCAS Testing and last: Coleophora thymiphaga -[2018-02-13T08:24:05.927] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:24:05.948] [INFO] cheese - inserting 1000 documents. first: KYRS and last: 25 equal temperament -[2018-02-13T08:24:06.035] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:24:06.037] [INFO] cheese - inserting 1000 documents. first: Overseas Community Affairs Council and last: Nikare -[2018-02-13T08:24:06.102] [INFO] cheese - batch complete in: 1.297 secs -[2018-02-13T08:24:06.130] [INFO] cheese - inserting 1000 documents. first: New Boston, Texas and last: Henderson, Texas -[2018-02-13T08:24:06.136] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:24:06.199] [INFO] cheese - inserting 1000 documents. first: Queen Anne's Bounty and last: Air defence -[2018-02-13T08:24:06.320] [INFO] cheese - batch complete in: 2.875 secs -[2018-02-13T08:24:06.346] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:24:06.514] [INFO] cheese - inserting 1000 documents. first: Sonny rollins and last: Wlodzimierz Kotonski -[2018-02-13T08:24:06.547] [INFO] cheese - inserting 1000 documents. first: Category:Low usage railway stations in the United Kingdom and last: WUPC-LP -[2018-02-13T08:24:06.631] [INFO] cheese - inserting 1000 documents. first: 26 equal temperament and last: Leuk. Res. -[2018-02-13T08:24:06.635] [INFO] cheese - inserting 1000 documents. first: Mad Catz Interactive, Inc and last: Ladenburg Thalmann Financial Services Inc -[2018-02-13T08:24:06.770] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:24:06.776] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:24:06.893] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:24:06.892] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:24:06.990] [INFO] cheese - inserting 1000 documents. first: Colleen Powell and last: Category:Diodontidae -[2018-02-13T08:24:07.088] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:24:07.355] [INFO] cheese - inserting 1000 documents. first: Orthographis thymiella and last: Athletics at the 2012 Summer Olympics – Men's pole vault -[2018-02-13T08:24:07.372] [INFO] cheese - inserting 1000 documents. first: Johann Poggendorff and last: Lumba-Bayabao -[2018-02-13T08:24:07.571] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:24:07.646] [INFO] cheese - batch complete in: 1.544 secs -[2018-02-13T08:24:07.727] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Water supply and sanitation in Colombia and last: Category:Heritage railroads in Rhode Island -[2018-02-13T08:24:07.735] [INFO] cheese - inserting 1000 documents. first: Cornelius Becker and last: Ultima Online Pacific Shard -[2018-02-13T08:24:07.845] [INFO] cheese - inserting 1000 documents. first: Mad Catz Interactive Inc and last: Chinese language romanization in Hong Kong -[2018-02-13T08:24:07.868] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:24:07.968] [INFO] cheese - inserting 1000 documents. first: Leuk Res and last: Alonzo Cooper Rand -[2018-02-13T08:24:07.994] [INFO] cheese - inserting 1000 documents. first: Artur Svensson and last: Category:University of Santa Clara alumni -[2018-02-13T08:24:08.029] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:24:08.068] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:24:08.183] [INFO] cheese - batch complete in: 1.29 secs -[2018-02-13T08:24:08.272] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T08:24:08.759] [INFO] cheese - inserting 1000 documents. first: Négreville and last: October 1998 Central Texas floods -[2018-02-13T08:24:08.803] [INFO] cheese - inserting 1000 documents. first: Sclerograptis oxytypa and last: Wiehle–Reston East station (Washington Metro) -[2018-02-13T08:24:08.813] [INFO] cheese - inserting 1000 documents. first: 1986 European Championships in Athletics - Men's Triple Jump and last: GOES 3 -[2018-02-13T08:24:08.867] [INFO] cheese - inserting 1000 documents. first: Lumbatan and last: Tigervespamon -[2018-02-13T08:24:08.880] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2012 Summer Olympics – Women's 5000 metres and last: File:The Information Gleick 2011.jpg -[2018-02-13T08:24:08.887] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:24:08.907] [INFO] cheese - inserting 1000 documents. first: Northern Kashmir and last: File:Logo of the 2008 European Road Championships.jpg -[2018-02-13T08:24:08.938] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:24:08.941] [INFO] cheese - inserting 1000 documents. first: German occupation of the Netherlands and last: Category:Sierra Leonean Methodists -[2018-02-13T08:24:09.099] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:24:09.164] [INFO] cheese - batch complete in: 1.593 secs -[2018-02-13T08:24:09.282] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:24:09.297] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:24:09.322] [INFO] cheese - batch complete in: 1.676 secs -[2018-02-13T08:24:09.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Interfaith articles by quality/3 and last: Dnace Dance -[2018-02-13T08:24:09.924] [INFO] cheese - inserting 1000 documents. first: Dulles International Airport station (Washington Metro) and last: Alessandro Montagnoli -[2018-02-13T08:24:09.931] [INFO] cheese - inserting 1000 documents. first: Mount Enterprise, Texas and last: Lincolnia, Virginia -[2018-02-13T08:24:10.040] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:24:10.090] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:24:10.181] [INFO] cheese - inserting 1000 documents. first: Maksim Kiselyov (footballer, born 1991) and last: Kosmos 307 -[2018-02-13T08:24:10.229] [INFO] cheese - inserting 1000 documents. first: Eric Spoto and last: Hanjarak-e Bala -[2018-02-13T08:24:10.360] [INFO] cheese - inserting 1000 documents. first: Serbian ultranationalist and last: The Girl (2000 film) -[2018-02-13T08:24:10.399] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:24:10.447] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:24:10.476] [INFO] cheese - inserting 1000 documents. first: Marondera and last: Harry Potter and the Halfblood Prince -[2018-02-13T08:24:10.592] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rlc.org and last: St james's cake -[2018-02-13T08:24:10.600] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:24:10.706] [INFO] cheese - batch complete in: 4.386 secs -[2018-02-13T08:24:10.785] [INFO] cheese - batch complete in: 1.619 secs -[2018-02-13T08:24:10.837] [INFO] cheese - batch complete in: 1.515 secs -[2018-02-13T08:24:11.087] [INFO] cheese - inserting 1000 documents. first: Template:Infobox pepper/sandbox and last: Ylang-ylang vine -[2018-02-13T08:24:11.267] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:24:11.348] [INFO] cheese - inserting 1000 documents. first: Giant snakehead fish and last: File:Palmystery.jpg -[2018-02-13T08:24:11.455] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:24:11.527] [INFO] cheese - inserting 1000 documents. first: Hanjarak and last: Wikipedia:Articles for deletion/Wiscasset Carla Pierce Day -[2018-02-13T08:24:11.574] [INFO] cheese - inserting 1000 documents. first: R. Amirtharaj and last: 2009 World Championships in Athletics – Men's 1500 metres -[2018-02-13T08:24:11.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/March 7, 2007 and last: Mesopotamian Campaign -[2018-02-13T08:24:11.693] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:24:11.797] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:24:11.885] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:24:11.952] [INFO] cheese - inserting 1000 documents. first: Category:Defunct railway stations in Paris and last: File:Norman Foster1.jpg -[2018-02-13T08:24:12.092] [INFO] cheese - inserting 1000 documents. first: Angry Red Planet and last: Scott mclellan -[2018-02-13T08:24:12.146] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:24:12.237] [INFO] cheese - inserting 1000 documents. first: Dai Suli and last: History of Andalusia -[2018-02-13T08:24:12.281] [INFO] cheese - batch complete in: 1.495 secs -[2018-02-13T08:24:12.330] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:24:12.377] [INFO] cheese - inserting 1000 documents. first: Colour of Spring and last: Eugene Venzke -[2018-02-13T08:24:12.483] [INFO] cheese - inserting 1000 documents. first: Aznar Galíndez and last: Günz -[2018-02-13T08:24:12.588] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:24:12.633] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T08:24:12.879] [INFO] cheese - inserting 1000 documents. first: Category:People from Wiveliscombe and last: Wikipedia:Version 1.0 Editorial Team/Glacier articles by quality/2 -[2018-02-13T08:24:12.897] [INFO] cheese - inserting 1000 documents. first: 秀水街 and last: Ulič -[2018-02-13T08:24:12.968] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:24:13.096] [INFO] cheese - batch complete in: 1.299 secs -[2018-02-13T08:24:13.099] [INFO] cheese - inserting 1000 documents. first: Heavy Weather (Michael Sembello song) and last: Grand Cross of Aeronautical Merit -[2018-02-13T08:24:13.222] [INFO] cheese - inserting 1000 documents. first: File:Nilkamal Plastics logo.svg and last: Jakob III von Eltz -[2018-02-13T08:24:13.224] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:24:13.273] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Turquoise Parrot and last: KL Gangster -[2018-02-13T08:24:13.306] [INFO] cheese - inserting 1000 documents. first: Le Brassus and last: Portal:Weather/On this day list/October 2 -[2018-02-13T08:24:13.346] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:24:13.388] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:24:13.498] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stuycom.net and last: File:LangelyGreenJug.jpg -[2018-02-13T08:24:13.518] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:24:13.723] [INFO] cheese - batch complete in: 1.442 secs -[2018-02-13T08:24:14.075] [INFO] cheese - inserting 1000 documents. first: VPN (disambiguation) and last: Pažiť -[2018-02-13T08:24:14.077] [INFO] cheese - inserting 1000 documents. first: Lorton, Virginia and last: Parsons, West Virginia -[2018-02-13T08:24:14.230] [INFO] cheese - inserting 1000 documents. first: Gelechia sematica and last: Architecture of Bogor -[2018-02-13T08:24:14.302] [INFO] cheese - batch complete in: 1.334 secs -[2018-02-13T08:24:14.357] [INFO] cheese - inserting 1000 documents. first: Jakob von Eltz and last: Liverpool (Tithebarn Street) railway station -[2018-02-13T08:24:14.427] [INFO] cheese - inserting 1000 documents. first: Behnu'iyeh and last: Category:LSU Tigers women's soccer venues -[2018-02-13T08:24:14.441] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:24:14.646] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:24:14.689] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day list/October 3 and last: Treslon -[2018-02-13T08:24:14.777] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:24:14.857] [INFO] cheese - batch complete in: 4.15 secs -[2018-02-13T08:24:14.905] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:24:15.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/Assessment/Tag & Assess 2009-2010/086 and last: Wikipedia:WikiProject Spam/LinkReports/russianhockey.de -[2018-02-13T08:24:15.265] [INFO] cheese - inserting 1000 documents. first: Fiordo Baker and last: Population Reference Bureau -[2018-02-13T08:24:15.316] [INFO] cheese - inserting 1000 documents. first: Wladyslaw Kozakiewicz and last: United States v. American Trucking Ass'ns -[2018-02-13T08:24:15.381] [INFO] cheese - batch complete in: 2.285 secs -[2018-02-13T08:24:15.406] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:24:15.485] [INFO] cheese - batch complete in: 1.762 secs -[2018-02-13T08:24:15.689] [INFO] cheese - inserting 1000 documents. first: Vilayet of Manastır and last: Decretalists -[2018-02-13T08:24:15.692] [INFO] cheese - inserting 1000 documents. first: Alain Turicchia and last: NCEI -[2018-02-13T08:24:15.768] [INFO] cheese - inserting 1000 documents. first: Trigny and last: Troost Elementary -[2018-02-13T08:24:15.811] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:24:15.871] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:24:15.888] [INFO] cheese - batch complete in: 1.447 secs -[2018-02-13T08:24:16.029] [INFO] cheese - inserting 1000 documents. first: Yuan Tze-yu and last: Arundel Cricket Club -[2018-02-13T08:24:16.121] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:24:16.387] [INFO] cheese - inserting 1000 documents. first: European Centre for Antiziganism Research and last: Heciyê Cindî -[2018-02-13T08:24:16.423] [INFO] cheese - inserting 1000 documents. first: Kosmos 388 and last: File:Ram Narayan - Lalit excerpt.ogg -[2018-02-13T08:24:16.432] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:24:16.448] [INFO] cheese - inserting 1000 documents. first: Koffi Olie and last: Category:Years of the 21st century in Burma -[2018-02-13T08:24:16.488] [INFO] cheese - inserting 1000 documents. first: Decretalist and last: Display technologies -[2018-02-13T08:24:16.543] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:24:16.566] [INFO] cheese - inserting 1000 documents. first: Ponto dos Volantes and last: SubPop -[2018-02-13T08:24:16.617] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:24:16.713] [INFO] cheese - inserting 1000 documents. first: Futar and last: Najibullah Ahmadzai -[2018-02-13T08:24:16.759] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:24:16.759] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:24:16.932] [INFO] cheese - inserting 1000 documents. first: Battle of al-Qusayr (2013) and last: MS-DOS 8.0 -[2018-02-13T08:24:16.917] [INFO] cheese - batch complete in: 1.432 secs -[2018-02-13T08:24:17.098] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:24:17.108] [INFO] cheese - inserting 1000 documents. first: File:Salitre 20061111 61.JPG and last: Arunkumar Vaidya -[2018-02-13T08:24:17.326] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:24:17.361] [INFO] cheese - inserting 1000 documents. first: Thomas, West Virginia and last: Richland Center, Wisconsin -[2018-02-13T08:24:17.392] [INFO] cheese - inserting 1000 documents. first: File:Eugene England.jpg and last: Rosalinda -[2018-02-13T08:24:17.474] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:24:17.629] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sandisk.com and last: Kuntzig -[2018-02-13T08:24:17.681] [INFO] cheese - batch complete in: 2.824 secs -[2018-02-13T08:24:17.695] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2011-05-22 and last: Jamie Raeburn -[2018-02-13T08:24:17.701] [INFO] cheese - inserting 1000 documents. first: Category:Alumni by university or college in Burma and last: Template:1920 NL Record vs. opponents/doc -[2018-02-13T08:24:17.721] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:24:17.852] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:24:17.863] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:24:17.907] [INFO] cheese - inserting 1000 documents. first: Albertskroon and last: Baby Face (film) -[2018-02-13T08:24:17.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Scripts/Script for X-chat and last: Les Jardins Christophe -[2018-02-13T08:24:18.111] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T08:24:18.127] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:24:18.165] [INFO] cheese - inserting 1000 documents. first: Wolverhampton City Council and last: Gunnar Strang -[2018-02-13T08:24:18.257] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum emarginatum and last: Nancy Mygatt -[2018-02-13T08:24:18.312] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:24:18.318] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:24:18.448] [INFO] cheese - inserting 1000 documents. first: Lagarde, Moselle and last: Tax me if you can -[2018-02-13T08:24:18.491] [INFO] cheese - inserting 1000 documents. first: Gibeşti and last: See How They Fall -[2018-02-13T08:24:18.498] [INFO] cheese - inserting 1000 documents. first: Nederlandsch Indische Spoorweg Maatschappij and last: Ranjana Baghel -[2018-02-13T08:24:18.632] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:24:18.635] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:24:18.641] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:24:19.015] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of the Duchy of Nassau and last: Anisodes rapistriaria -[2018-02-13T08:24:19.148] [INFO] cheese - inserting 1000 documents. first: Conway's law and last: Margaret Hilda Roberts Thatcher -[2018-02-13T08:24:19.200] [INFO] cheese - inserting 1000 documents. first: St Helen's Church, Wheathampstead and last: Snake plantain -[2018-02-13T08:24:19.276] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:24:19.312] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:24:19.349] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:24:19.370] [INFO] cheese - inserting 1000 documents. first: Dangerous (Cascada song) and last: Bulbophyllum physocoryphum -[2018-02-13T08:24:19.433] [INFO] cheese - inserting 1000 documents. first: WJHH and last: Maja Mihalinec -[2018-02-13T08:24:19.481] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:24:19.555] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:24:19.612] [INFO] cheese - inserting 1000 documents. first: Controlled Drinking Area and last: Category:Redirect-Class Bulgaria articles -[2018-02-13T08:24:19.689] [INFO] cheese - inserting 1000 documents. first: Vendar and last: The Veteran (book) -[2018-02-13T08:24:19.753] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:24:19.760] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:24:19.950] [INFO] cheese - inserting 1000 documents. first: Uuno Pelander and last: Wikipedia:Articles for deletion/Greg W. Locke -[2018-02-13T08:24:19.997] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ernest Oppenheimer Hall and last: Implied multiplication -[2018-02-13T08:24:20.029] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:24:20.076] [INFO] cheese - inserting 1000 documents. first: Richwood, Wisconsin and last: History of Baden-Württemberg -[2018-02-13T08:24:20.081] [INFO] cheese - inserting 1000 documents. first: 2008 FINA World Open Water Swimming Championships – Women's 5K and last: Bulbophyllum tumoriferum -[2018-02-13T08:24:20.150] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:24:20.171] [INFO] cheese - inserting 1000 documents. first: Recreation Ground (Aldershot) and last: Category:Bathylutichthyidae -[2018-02-13T08:24:20.206] [INFO] cheese - inserting 1000 documents. first: Real Unión and last: Lake of Ägeri -[2018-02-13T08:24:20.317] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:24:20.426] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:24:20.496] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Bulgaria articles and last: Părăuşani -[2018-02-13T08:24:20.499] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:24:20.520] [INFO] cheese - batch complete in: 2.839 secs -[2018-02-13T08:24:20.585] [INFO] cheese - inserting 1000 documents. first: Jim Coleman (actor) and last: Category:1879 in Europe -[2018-02-13T08:24:20.716] [INFO] cheese - inserting 1000 documents. first: 2008 Omloop der Kempen and last: Martha Canary -[2018-02-13T08:24:20.770] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:24:20.786] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:24:20.914] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:24:21.028] [INFO] cheese - inserting 1000 documents. first: Eat 17 and last: File:Herbie Mann Returns to the Village Gate.jpg -[2018-02-13T08:24:21.190] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:24:21.273] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum turgidum and last: Category:Hegemonic Leagues -[2018-02-13T08:24:21.368] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:24:21.463] [INFO] cheese - inserting 1000 documents. first: Bevis Marks Congregation and last: Tim Vanhamel -[2018-02-13T08:24:21.613] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:24:21.707] [INFO] cheese - inserting 1000 documents. first: Qur'an 3:7 and last: Swedish International Development Agency -[2018-02-13T08:24:21.735] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ETAG and last: Edmonton Grads -[2018-02-13T08:24:21.788] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:24:21.811] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Smithsonian Institution/tasks and last: Kenta Furube -[2018-02-13T08:24:21.843] [INFO] cheese - inserting 1000 documents. first: Category:19th-century New Zealand painters and last: Gelechia machinata -[2018-02-13T08:24:21.869] [INFO] cheese - inserting 1000 documents. first: Parausani and last: Adrien Delorme -[2018-02-13T08:24:21.915] [INFO] cheese - batch complete in: 1.415 secs -[2018-02-13T08:24:21.952] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:24:22.004] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:24:22.063] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:24:22.147] [INFO] cheese - inserting 1000 documents. first: Awk programming language and last: Trifluoperazine -[2018-02-13T08:24:22.277] [INFO] cheese - inserting 1000 documents. first: Shelter Dogs and last: Category:Sofia Metro -[2018-02-13T08:24:22.279] [INFO] cheese - batch complete in: 1.758 secs -[2018-02-13T08:24:22.399] [INFO] cheese - inserting 1000 documents. first: Greatest Hits - Volume One and last: Ámfissa, Greece -[2018-02-13T08:24:22.441] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:24:22.589] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:24:22.758] [INFO] cheese - inserting 1000 documents. first: Halfway River First Nations and last: A.B.C. Whipple -[2018-02-13T08:24:22.785] [INFO] cheese - inserting 1000 documents. first: Telphusa machinata and last: Domonique Swain -[2018-02-13T08:24:22.826] [INFO] cheese - inserting 1000 documents. first: Worsley Hall and last: Church of Saints Eusebius and Polion, Vinkovci -[2018-02-13T08:24:22.964] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:24:23.030] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:24:23.054] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:24:23.199] [INFO] cheese - inserting 1000 documents. first: Vahelna and last: Template:S-Bahn Nürnberg -[2018-02-13T08:24:23.384] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Richard Harris (writer) and last: Quentin Bell -[2018-02-13T08:24:23.688] [INFO] cheese - batch complete in: 1.625 secs -[2018-02-13T08:24:23.711] [INFO] cheese - batch complete in: 1.795 secs -[2018-02-13T08:24:23.811] [INFO] cheese - inserting 1000 documents. first: Rail bank and last: Order of the dracula -[2018-02-13T08:24:23.815] [INFO] cheese - inserting 1000 documents. first: List of California Ranchos and last: Free Officers and Civilians Movement -[2018-02-13T08:24:23.961] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:24:24.049] [INFO] cheese - inserting 1000 documents. first: Weyl-Schouten tensor and last: Battle of Hanging Rock -[2018-02-13T08:24:24.155] [INFO] cheese - batch complete in: 1.713 secs -[2018-02-13T08:24:24.258] [INFO] cheese - inserting 1000 documents. first: Keur Simbara and last: JNV Pfukhro Mao -[2018-02-13T08:24:24.272] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:24:24.376] [INFO] cheese - inserting 1000 documents. first: Template:Saraperos de Saltillo roster and last: Radke -[2018-02-13T08:24:24.450] [INFO] cheese - batch complete in: 1.486 secs -[2018-02-13T08:24:24.665] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T08:24:25.054] [INFO] cheese - inserting 1000 documents. first: 1906 SF Earthquake and last: Wikipedia:Articles for deletion/Everholt -[2018-02-13T08:24:25.057] [INFO] cheese - inserting 1000 documents. first: How Much Is That Liam In The Window (90210 (TV Series)) and last: Category:Houses in Porter County, Indiana -[2018-02-13T08:24:25.272] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:24:25.290] [INFO] cheese - inserting 1000 documents. first: Peter Wherrett and last: Wikipedia:Article series boxes policy (proposed) -[2018-02-13T08:24:25.499] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Desertificationableism and last: Wikipedia:ARSN/Header -[2018-02-13T08:24:25.506] [INFO] cheese - inserting 1000 documents. first: Contrat Social and last: Long Scale -[2018-02-13T08:24:25.529] [INFO] cheese - batch complete in: 1.841 secs -[2018-02-13T08:24:25.518] [INFO] cheese - batch complete in: 1.557 secs -[2018-02-13T08:24:25.815] [INFO] cheese - inserting 1000 documents. first: File:Woman's Head - 2012.jpg and last: Eliza (1811 ship) -[2018-02-13T08:24:26.024] [INFO] cheese - batch complete in: 1.869 secs -[2018-02-13T08:24:26.160] [INFO] cheese - batch complete in: 2.448 secs -[2018-02-13T08:24:26.184] [INFO] cheese - batch complete in: 1.734 secs -[2018-02-13T08:24:26.334] [INFO] cheese - inserting 1000 documents. first: Pitt Street, Manhattan and last: List of Iraq national football team managers -[2018-02-13T08:24:26.417] [INFO] cheese - inserting 1000 documents. first: Bass horn and last: Lake District -[2018-02-13T08:24:26.620] [INFO] cheese - batch complete in: 1.955 secs -[2018-02-13T08:24:26.684] [INFO] cheese - inserting 1000 documents. first: La Puglia and last: Bhikku Bodhi -[2018-02-13T08:24:26.950] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:24:27.025] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators/Administrator Accountability Policy and last: Cherniahovski District -[2018-02-13T08:24:27.200] [INFO] cheese - batch complete in: 4.921 secs -[2018-02-13T08:24:27.317] [INFO] cheese - inserting 1000 documents. first: Template:Airports in Bulgaria and last: 2011 Sligo Rovers F.C. season -[2018-02-13T08:24:27.410] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ARSN/Header/doc and last: Slovo -[2018-02-13T08:24:27.411] [INFO] cheese - batch complete in: 1.89 secs -[2018-02-13T08:24:27.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Life on Mercury and last: Sikorsky MH-53M Pave Low -[2018-02-13T08:24:27.514] [INFO] cheese - batch complete in: 1.985 secs -[2018-02-13T08:24:27.779] [INFO] cheese - batch complete in: 1.755 secs -[2018-02-13T08:24:27.861] [INFO] cheese - batch complete in: 1.676 secs -[2018-02-13T08:24:28.203] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9912 and last: Ellei Johndro -[2018-02-13T08:24:28.214] [INFO] cheese - inserting 1000 documents. first: Short Scale and last: Stevie Wright -[2018-02-13T08:24:28.387] [INFO] cheese - batch complete in: 1.767 secs -[2018-02-13T08:24:28.473] [INFO] cheese - inserting 1000 documents. first: Cherniahovskii District and last: Capital Department, Catamarca -[2018-02-13T08:24:28.510] [INFO] cheese - batch complete in: 2.35 secs -[2018-02-13T08:24:28.742] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Arab astrologers and last: King Midas In Reverse -[2018-02-13T08:24:28.768] [INFO] cheese - inserting 1000 documents. first: Acronicta hasta and last: The Parliament (magazine) -[2018-02-13T08:24:28.771] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:24:28.784] [INFO] cheese - inserting 1000 documents. first: Römpp's Chemistry Lexicon and last: Environmental impact of natural gas -[2018-02-13T08:24:28.943] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:24:28.951] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:24:28.963] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T08:24:29.041] [INFO] cheese - inserting 1000 documents. first: Bosjean and last: Saint-Quentin-des-Prés -[2018-02-13T08:24:29.452] [INFO] cheese - inserting 1000 documents. first: Tagore Government College of Education and last: Whiptail Conger -[2018-02-13T08:24:29.456] [INFO] cheese - batch complete in: 2.506 secs -[2018-02-13T08:24:29.510] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:24:29.618] [INFO] cheese - inserting 1000 documents. first: Category:German newspaper publishing families and last: Prunella Margaret Rumney Illingworth -[2018-02-13T08:24:29.626] [INFO] cheese - inserting 1000 documents. first: Pravdinskii Raion and last: Newton ring -[2018-02-13T08:24:29.700] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:24:29.753] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:24:30.026] [INFO] cheese - inserting 1000 documents. first: Theoretical production ecology and last: Zäta höglund -[2018-02-13T08:24:30.053] [INFO] cheese - inserting 1000 documents. first: Lynn Hamilton (disambiguation) and last: Pionea limbalis -[2018-02-13T08:24:30.076] [INFO] cheese - inserting 1000 documents. first: Desná (Svitavy District) and last: Il mio canto libero -[2018-02-13T08:24:30.091] [INFO] cheese - inserting 1000 documents. first: Bangladeshi wedding and last: Denver Air Defense Sector -[2018-02-13T08:24:30.112] [INFO] cheese - batch complete in: 1.602 secs -[2018-02-13T08:24:30.151] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:24:30.332] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:24:30.434] [INFO] cheese - batch complete in: 1.491 secs -[2018-02-13T08:24:30.482] [INFO] cheese - inserting 1000 documents. first: Saint-Remy-en-l'Eau and last: Mauricio Gómez -[2018-02-13T08:24:30.565] [INFO] cheese - inserting 1000 documents. first: 1929 All-Big Six Conference football team and last: Elizabeth (1825 New Brunswick barque) -[2018-02-13T08:24:30.586] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:24:30.608] [INFO] cheese - inserting 1000 documents. first: Landing ship support, large and last: File:East vs. west in el sob.JPG -[2018-02-13T08:24:30.623] [INFO] cheese - inserting 1000 documents. first: Gidea Park, London, England and last: Gaston (comics) -[2018-02-13T08:24:30.678] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:24:30.798] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:24:31.007] [INFO] cheese - batch complete in: 3.807 secs -[2018-02-13T08:24:31.069] [INFO] cheese - inserting 1000 documents. first: Pseudotropheus macrophthalmus and last: Template:Little Shop of Horrors -[2018-02-13T08:24:31.085] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Vanderburgh County, Indiana and last: Guy Dupuis -[2018-02-13T08:24:31.129] [INFO] cheese - inserting 1000 documents. first: Dmitri Rybakin and last: C10H14ClNO2 -[2018-02-13T08:24:31.219] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:24:31.227] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:24:31.262] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:24:31.346] [INFO] cheese - inserting 1000 documents. first: Category:1825 establishments in Pennsylvania and last: Murder of Alison Parker and Adam Ward -[2018-02-13T08:24:31.384] [INFO] cheese - inserting 1000 documents. first: Category:Youth organizations based in Bulgaria and last: Wikipedia:Goings-on/February 24, 2008 -[2018-02-13T08:24:31.451] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:24:31.463] [INFO] cheese - inserting 1000 documents. first: Naryn River and last: Asepsis -[2018-02-13T08:24:31.464] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:24:31.700] [INFO] cheese - batch complete in: 1.588 secs -[2018-02-13T08:24:31.747] [INFO] cheese - inserting 1000 documents. first: M-130 (Michigan highway) and last: Oscar Minambres -[2018-02-13T08:24:31.865] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:24:31.933] [INFO] cheese - inserting 1000 documents. first: Template:Delfines del Carmen roster and last: The Last Witch Hunter (film) -[2018-02-13T08:24:32.014] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:24:32.154] [INFO] cheese - inserting 1000 documents. first: Million Dollar Bill (song) and last: Rikki-Tikki Tavi -[2018-02-13T08:24:32.256] [INFO] cheese - inserting 1000 documents. first: Kein Platz für Liebe and last: Portal:Physics/Selected article/July 2011 -[2018-02-13T08:24:32.259] [INFO] cheese - inserting 1000 documents. first: The Basket and last: Russian Rat Snake -[2018-02-13T08:24:32.259] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:24:32.334] [INFO] cheese - inserting 1000 documents. first: Template:Imagemap of counties in Alabama and last: Echo (steam tug) -[2018-02-13T08:24:32.422] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:24:32.451] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:24:32.525] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:24:32.793] [INFO] cheese - inserting 1000 documents. first: The Last Witch Hunter (2014 film) and last: Kim You-jeong -[2018-02-13T08:24:32.803] [INFO] cheese - inserting 1000 documents. first: Ildirans in The Saga of Seven Suns and last: Ronney Householder -[2018-02-13T08:24:32.801] [INFO] cheese - inserting 1000 documents. first: Diagnosan and last: John Fitzgibbon, 1st Earl of Clare -[2018-02-13T08:24:32.898] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:24:33.034] [INFO] cheese - batch complete in: 1.333 secs -[2018-02-13T08:24:33.049] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:24:33.177] [INFO] cheese - inserting 1000 documents. first: Pokharan, Dahanu and last: Hispano-Suiza 12Hb -[2018-02-13T08:24:33.193] [INFO] cheese - inserting 1000 documents. first: James K. Hugessen and last: Gazelle class light cruiser -[2018-02-13T08:24:33.293] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:24:33.313] [INFO] cheese - inserting 1000 documents. first: 8 Days of Christmas (song) and last: Schuch -[2018-02-13T08:24:33.319] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:24:33.378] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 May 22 and last: Shirin M. Rai -[2018-02-13T08:24:33.429] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:24:33.484] [INFO] cheese - inserting 1000 documents. first: Theory of General Relativity and last: Orthodox Church in America -[2018-02-13T08:24:33.528] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:24:33.778] [INFO] cheese - batch complete in: 2.771 secs -[2018-02-13T08:24:33.856] [INFO] cheese - inserting 1000 documents. first: Königsberg class light cruiser (1905) and last: Kucinich Amendment -[2018-02-13T08:24:33.873] [INFO] cheese - inserting 1000 documents. first: 2010 GB174 and last: C. greggii -[2018-02-13T08:24:33.918] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:24:33.931] [INFO] cheese - inserting 1000 documents. first: John Fitzgibbon, 2nd Earl of Clare and last: Contra Apion -[2018-02-13T08:24:33.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cha Dao Tea Company and last: Draft:Francis W. Sullivan -[2018-02-13T08:24:34.019] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:24:34.055] [INFO] cheese - inserting 1000 documents. first: Schulich School of Music and last: Banksia spinulosa var. cunninghamii 'Lemon Glow' -[2018-02-13T08:24:34.080] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:24:34.093] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:24:34.202] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:24:34.222] [INFO] cheese - inserting 1000 documents. first: Noosa River Ferry and last: Betty Faire -[2018-02-13T08:24:34.229] [INFO] cheese - inserting 1000 documents. first: Jacques Chevallier and last: File:Anetamerkourial.jpg -[2018-02-13T08:24:34.318] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:24:34.349] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:24:34.439] [INFO] cheese - inserting 1000 documents. first: Hospital warehouse and last: Harvey (2013 film) -[2018-02-13T08:24:34.522] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:24:34.538] [INFO] cheese - inserting 1000 documents. first: All I Want Is U and last: Philippus Fruytiers -[2018-02-13T08:24:34.586] [INFO] cheese - inserting 1000 documents. first: Draft:Frank A. Tirrell, Jr. and last: TeRina Keenan -[2018-02-13T08:24:34.595] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:24:34.662] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:24:34.894] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Agentsoo (archive) and last: Innenstadt (Frankfurt am Main) -[2018-02-13T08:24:34.904] [INFO] cheese - inserting 1000 documents. first: Index cards and last: Robert gall -[2018-02-13T08:24:35.037] [INFO] cheese - inserting 1000 documents. first: History of the United Kingdom (1945–2000) and last: Amoron'i Mania Region -[2018-02-13T08:24:35.038] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:24:35.058] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:24:35.147] [INFO] cheese - inserting 1000 documents. first: White Elephant (song) and last: Virtual CD-ROM Control Panel -[2018-02-13T08:24:35.172] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:24:35.209] [INFO] cheese - inserting 1000 documents. first: Leidesia procumbens and last: Wolf Street (Ljubljana) -[2018-02-13T08:24:35.356] [INFO] cheese - inserting 1000 documents. first: If It Kills Me and last: Star Hotel riot -[2018-02-13T08:24:35.363] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:24:35.402] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:24:35.480] [INFO] cheese - inserting 1000 documents. first: List of Hawaii Five-0 (2010 TV series) characters and last: Draft:John S. McDonald -[2018-02-13T08:24:35.545] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:24:35.604] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:24:35.941] [INFO] cheese - inserting 1000 documents. first: Joseph Cummings and last: Lipnur LT-200 -[2018-02-13T08:24:35.983] [INFO] cheese - inserting 1000 documents. first: Bristol Jupiter and last: Choiseul -[2018-02-13T08:24:35.989] [INFO] cheese - inserting 1000 documents. first: File:Photonics Spectra Logo.gif and last: Harlingtox Angel Divine -[2018-02-13T08:24:35.995] [INFO] cheese - inserting 1000 documents. first: Draft:Nelson Sharpe and last: Category:19th-century Italian dancers -[2018-02-13T08:24:35.995] [INFO] cheese - inserting 1000 documents. first: Centro de Estudos e Pesquisas Ambientais and last: Senegalese Solidarity Party -[2018-02-13T08:24:36.026] [INFO] cheese - inserting 1000 documents. first: Rosina Bonavota and last: Microglanis leptostriatus -[2018-02-13T08:24:36.039] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:24:36.061] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:24:36.160] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:24:36.201] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:24:36.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Palestine-related articles by quality/13 and last: File:Timothy-Taylor-Logo.jpg -[2018-02-13T08:24:36.287] [INFO] cheese - inserting 1000 documents. first: Mario Griguol and last: Category:Albania–Italy relations -[2018-02-13T08:24:36.290] [INFO] cheese - batch complete in: 2.511 secs -[2018-02-13T08:24:36.292] [INFO] cheese - batch complete in: 1.254 secs -[2018-02-13T08:24:36.436] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:24:36.448] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:24:36.802] [INFO] cheese - inserting 1000 documents. first: File:Banksia burdettii.jpg and last: FC Metallurg Olmaliq -[2018-02-13T08:24:36.826] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected picture/9, 2008 and last: Strâmba River (Cibin) -[2018-02-13T08:24:36.852] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:24:36.855] [INFO] cheese - inserting 1000 documents. first: EC 4.3.1.3 and last: Josef Kramolín -[2018-02-13T08:24:36.929] [INFO] cheese - inserting 1000 documents. first: Raymundus Martini and last: Brent Hawkins -[2018-02-13T08:24:36.940] [INFO] cheese - inserting 1000 documents. first: Žichlínek and last: I. Periasamy -[2018-02-13T08:24:36.961] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:24:36.965] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:24:36.987] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:24:37.070] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:24:37.113] [INFO] cheese - inserting 1000 documents. first: Category:Education in Ethiopia and last: Safety standards -[2018-02-13T08:24:37.207] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:24:37.262] [INFO] cheese - inserting 1000 documents. first: Zoltan Mechlovits and last: Wikipedia:WikiProject Spam/LinkReports/musiquemachine.com -[2018-02-13T08:24:37.305] [INFO] cheese - inserting 1000 documents. first: Acmariu River and last: Sayeed Khokon -[2018-02-13T08:24:37.330] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:24:37.422] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:24:37.493] [INFO] cheese - inserting 1000 documents. first: Portal:Indianapolis/On this day/August 12 and last: Taiko master -[2018-02-13T08:24:37.523] [INFO] cheese - inserting 1000 documents. first: Drunk Last Night and last: Acidalia carmenta -[2018-02-13T08:24:37.535] [INFO] cheese - inserting 1000 documents. first: Ulmus glabra 'Gittisham' and last: If I Had Words -[2018-02-13T08:24:37.591] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:24:37.623] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:24:37.635] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:24:37.698] [INFO] cheese - inserting 1000 documents. first: Cheslea fc and last: Hollyoaks: The Morning After The Night Before -[2018-02-13T08:24:37.816] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:24:38.066] [INFO] cheese - inserting 1000 documents. first: Antoine Joseph Wiertz and last: DMR -[2018-02-13T08:24:38.078] [INFO] cheese - inserting 1000 documents. first: Penn's Woods and last: Category:Books by publisher country -[2018-02-13T08:24:38.132] [INFO] cheese - inserting 1000 documents. first: Hessian soldiers and last: Mammal Club -[2018-02-13T08:24:38.178] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:24:38.217] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:24:38.275] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:24:38.372] [INFO] cheese - inserting 1000 documents. first: File:Agony Coverart.jpg and last: Cal McCombs -[2018-02-13T08:24:38.473] [INFO] cheese - inserting 1000 documents. first: Category:Turkish-language television programming and last: Madan-e Gol Gohar -[2018-02-13T08:24:38.494] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:24:38.515] [INFO] cheese - inserting 1000 documents. first: It's Only A Theory and last: Panchayati Raj -[2018-02-13T08:24:38.533] [INFO] cheese - inserting 1000 documents. first: Lucky Luciano and last: Rievaulx Abbey -[2018-02-13T08:24:38.549] [INFO] cheese - inserting 1000 documents. first: Functional movement and last: Sainte Anne de Bellevue -[2018-02-13T08:24:38.641] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:24:38.689] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:24:38.787] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:24:38.800] [INFO] cheese - batch complete in: 2.51 secs -[2018-02-13T08:24:38.981] [INFO] cheese - inserting 1000 documents. first: Aslam Khan (cricketer, born 1935) and last: Quercus afghanistanensis -[2018-02-13T08:24:39.007] [INFO] cheese - inserting 1000 documents. first: File:ConfessionsofaCompulsiveEntrepreneur.png and last: Antonov Standard-1 -[2018-02-13T08:24:39.075] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:24:39.108] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:24:39.260] [INFO] cheese - inserting 1000 documents. first: Dengaku and last: Taroona -[2018-02-13T08:24:39.263] [INFO] cheese - inserting 1000 documents. first: Category:Best Drama Actor Golden Globe (television) winners and last: Portal:Textile arts/Selected biography/4 -[2018-02-13T08:24:39.335] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:24:39.398] [INFO] cheese - inserting 1000 documents. first: Best of Geri and last: Ymitós, Greece -[2018-02-13T08:24:39.400] [INFO] cheese - inserting 1000 documents. first: Namwater and last: DWBG-TV -[2018-02-13T08:24:39.469] [INFO] cheese - batch complete in: 1.29 secs -[2018-02-13T08:24:39.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rizzosports.com and last: Skrīveri Municipality -[2018-02-13T08:24:39.555] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:24:39.575] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:24:39.721] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:24:39.920] [INFO] cheese - inserting 1000 documents. first: File:BARFC Club Crest.jpg and last: Jeon Yeongeun -[2018-02-13T08:24:39.951] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:24:39.955] [INFO] cheese - inserting 1000 documents. first: Antonov Standard-2 and last: Last Chance To See -[2018-02-13T08:24:40.118] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:24:40.236] [INFO] cheese - inserting 1000 documents. first: Hardaway Site and last: Linn-Kristin Riegelhuth Koren -[2018-02-13T08:24:40.291] [INFO] cheese - inserting 1000 documents. first: Ymittós, Greece and last: Joseph Calleja -[2018-02-13T08:24:40.303] [INFO] cheese - inserting 1000 documents. first: Juha Toivonen and last: Bloody, but Unbowed (disambiguation) -[2018-02-13T08:24:40.335] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:24:40.412] [INFO] cheese - inserting 1000 documents. first: Kolinec and last: Texas Reds Festival -[2018-02-13T08:24:40.447] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:24:40.417] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:24:40.654] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:24:40.761] [INFO] cheese - inserting 1000 documents. first: Cecil Walter Hardy Beaton and last: Green Lantern (Six Flags Great Adventure) -[2018-02-13T08:24:40.873] [INFO] cheese - inserting 1000 documents. first: BS II and last: Wikipedia:Teahouse/Questions/Archive 380 -[2018-02-13T08:24:40.894] [INFO] cheese - batch complete in: 1.424 secs -[2018-02-13T08:24:40.973] [INFO] cheese - inserting 1000 documents. first: Mon-Fayette Expressway and last: File:2011 FIL Women's U-19 World Lacrosse Championship Logo.png -[2018-02-13T08:24:41.046] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:24:41.196] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:24:41.299] [INFO] cheese - inserting 1000 documents. first: Self-harmer and last: Category:People from West Drayton -[2018-02-13T08:24:41.317] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Featured picture and last: Tabula cebetis -[2018-02-13T08:24:41.332] [INFO] cheese - inserting 1000 documents. first: Imperial Forest Research Institute and College and last: Wherever You Are Tonight -[2018-02-13T08:24:41.350] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:24:41.427] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:24:41.493] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:24:41.503] [INFO] cheese - inserting 1000 documents. first: Dutch-Jewish and last: Ratikant Kanungo -[2018-02-13T08:24:41.610] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:24:41.710] [INFO] cheese - inserting 1000 documents. first: Rhazes and last: Reklaw, Texas -[2018-02-13T08:24:41.711] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CITOID and last: Squib case -[2018-02-13T08:24:41.815] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:24:41.909] [INFO] cheese - inserting 1000 documents. first: Karl I Ludwig, Elector Palatine and last: Operation Little Switch -[2018-02-13T08:24:41.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/whaleofatime.org and last: Kelyn Rowe -[2018-02-13T08:24:41.917] [INFO] cheese - batch complete in: 3.117 secs -[2018-02-13T08:24:42.037] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:24:42.047] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:24:42.089] [INFO] cheese - inserting 1000 documents. first: Goffin's Corella and last: দুর্গা পূজা -[2018-02-13T08:24:42.153] [INFO] cheese - inserting 1000 documents. first: File:Where in world is osama.jpg and last: WTTM -[2018-02-13T08:24:42.234] [INFO] cheese - inserting 1000 documents. first: Humanitarian Overseas Service Medal and last: Leo Nobile -[2018-02-13T08:24:42.329] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:24:42.384] [INFO] cheese - inserting 1000 documents. first: Category:Mississippian geologic formations and last: Genadish -[2018-02-13T08:24:42.406] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:24:42.510] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:24:42.602] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:24:42.955] [INFO] cheese - inserting 1000 documents. first: Squib Case and last: Alan Jones (cricketer) -[2018-02-13T08:24:43.093] [INFO] cheese - inserting 1000 documents. first: KDI School of Public Policy and Management and last: Mi Ricordo Anna Frank -[2018-02-13T08:24:43.151] [INFO] cheese - inserting 1000 documents. first: Ganarish and last: MOS:REDIR -[2018-02-13T08:24:43.188] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:24:43.256] [INFO] cheese - inserting 1000 documents. first: Mieczysława Ćwiklińska and last: August Zaba -[2018-02-13T08:24:43.268] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T08:24:43.286] [INFO] cheese - inserting 1000 documents. first: Tied arch bridge and last: Wikipedia:WikiProject Spam/LinkReports/georadary.pl -[2018-02-13T08:24:43.292] [INFO] cheese - inserting 1000 documents. first: Minneapolis/duluth corridor and last: Ross McFarlane (footballer) -[2018-02-13T08:24:43.304] [INFO] cheese - inserting 1000 documents. first: The Last Revelation and last: List of mayors of Penticton -[2018-02-13T08:24:43.329] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:24:43.410] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:24:43.422] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:24:43.434] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:24:43.463] [INFO] cheese - batch complete in: 1.416 secs -[2018-02-13T08:24:43.739] [INFO] cheese - inserting 1000 documents. first: Island Climate Update tropical cyclone outlook and last: New Jersey gubernatorial election, 1943 -[2018-02-13T08:24:43.838] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:24:43.961] [INFO] cheese - inserting 1000 documents. first: La Trobe Secondary College and last: Groff (surname) -[2018-02-13T08:24:44.010] [INFO] cheese - inserting 1000 documents. first: Kurt van Raefelghem and last: Wikipedia:Possibly unfree files/2011 May 29 -[2018-02-13T08:24:44.013] [INFO] cheese - inserting 1000 documents. first: Existentially quantified and last: Triceps skin fold -[2018-02-13T08:24:44.029] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:24:44.215] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:24:44.282] [INFO] cheese - inserting 1000 documents. first: Your Move (album) and last: Roy Clark (UK) -[2018-02-13T08:24:44.289] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:24:44.303] [INFO] cheese - inserting 1000 documents. first: W. J. Holland and last: Quonset Naval Air Station -[2018-02-13T08:24:44.406] [INFO] cheese - inserting 1000 documents. first: Yan Qing and last: M.k.s. system -[2018-02-13T08:24:44.452] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:24:44.457] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:24:44.553] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:24:44.694] [INFO] cheese - inserting 1000 documents. first: Sheliak in fiction and last: Exposed.su -[2018-02-13T08:24:44.801] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:24:44.804] [INFO] cheese - inserting 1000 documents. first: EC 5.2.1.1 and last: Category:2004 Mid-American Conference baseball season -[2018-02-13T08:24:44.933] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:24:44.956] [INFO] cheese - inserting 1000 documents. first: Upper arm circumference and last: Combination underwear -[2018-02-13T08:24:44.964] [INFO] cheese - inserting 1000 documents. first: Troup, Texas and last: Electrical connector -[2018-02-13T08:24:45.065] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:24:45.151] [INFO] cheese - inserting 1000 documents. first: If I Could (Wiley song) and last: Robert Auld (British Army officer) -[2018-02-13T08:24:45.165] [INFO] cheese - inserting 1000 documents. first: Yerong Creek and last: Andante Cantabile e Presto Agitato in B (Mendelssohn) -[2018-02-13T08:24:45.169] [INFO] cheese - batch complete in: 3.252 secs -[2018-02-13T08:24:45.179] [INFO] cheese - inserting 1000 documents. first: Karolyn Kirby and last: Office de Radiodiffusion Television du Mali -[2018-02-13T08:24:45.284] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:24:45.307] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:24:45.352] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:24:45.440] [INFO] cheese - inserting 1000 documents. first: John A. Wickham Jr. and last: Template:Indiana Pacers roster -[2018-02-13T08:24:45.556] [INFO] cheese - inserting 1000 documents. first: Journal of Crohn's and Colitis and last: Category:Cambrian portal FA-class Natural world articles -[2018-02-13T08:24:45.569] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:24:45.699] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:24:45.761] [INFO] cheese - inserting 1000 documents. first: 190th (2nd Durham Light Infantry) Brigade and last: Nonuple -[2018-02-13T08:24:45.940] [INFO] cheese - inserting 1000 documents. first: I'm from Arkansas and last: Sir William McMahon, GCMG, CH -[2018-02-13T08:24:45.952] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:24:46.073] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:24:46.237] [INFO] cheese - inserting 1000 documents. first: Mary Isobel Catherine Bernadette O'Brien and last: Michael Saward (British Army officer) -[2018-02-13T08:24:46.243] [INFO] cheese - inserting 1000 documents. first: Downtown Camden, New Jersey and last: Cayman Islands–United States relations -[2018-02-13T08:24:46.394] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:24:46.452] [INFO] cheese - inserting 1000 documents. first: Backstretch and last: Palais Strousberg -[2018-02-13T08:24:46.462] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:24:46.678] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:24:46.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kachin Church and last: 4th earl of clarendon -[2018-02-13T08:24:46.762] [INFO] cheese - inserting 1000 documents. first: Damien Borel and last: Felipe Francisco Macedo -[2018-02-13T08:24:46.932] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:24:46.957] [INFO] cheese - inserting 1000 documents. first: Decuple and last: Christine Brehmer -[2018-02-13T08:24:47.047] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:24:47.108] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:24:47.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Christos Kotsakis and last: Rabbi Zamir Cohen -[2018-02-13T08:24:47.295] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:24:47.335] [INFO] cheese - inserting 1000 documents. first: Lungs and last: Salvador Artigas -[2018-02-13T08:24:47.440] [INFO] cheese - inserting 1000 documents. first: File:Ren Höek.jpg and last: Georges Gueril -[2018-02-13T08:24:47.507] [INFO] cheese - inserting 1000 documents. first: Connector (mathematics) and last: Paraconsistent logics -[2018-02-13T08:24:47.548] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:24:47.565] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:24:47.660] [INFO] cheese - inserting 1000 documents. first: Komádi and last: Wikipedia:Requests for comment/Seabhcan -[2018-02-13T08:24:47.754] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:24:47.806] [INFO] cheese - batch complete in: 2.637 secs -[2018-02-13T08:24:48.043] [INFO] cheese - inserting 1000 documents. first: File:Cover of the novel Aurora by Kim Stanley Robinson.jpg and last: History of Burroughs Corporation -[2018-02-13T08:24:48.053] [INFO] cheese - inserting 1000 documents. first: Stara Pazova and last: Piperacillin sodium -[2018-02-13T08:24:48.184] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T08:24:48.221] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T08:24:48.253] [INFO] cheese - inserting 1000 documents. first: ARTES and last: Lamkani -[2018-02-13T08:24:48.292] [INFO] cheese - inserting 1000 documents. first: Bennet High School and last: Pternistis clappertoni -[2018-02-13T08:24:48.362] [INFO] cheese - inserting 1000 documents. first: Jacobson semisimple ring and last: Category:Buenos Aires Province geography stubs -[2018-02-13T08:24:48.425] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:24:48.489] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:24:48.518] [INFO] cheese - inserting 1000 documents. first: Lama (surname) and last: Electronic Café International (ECI) -[2018-02-13T08:24:48.603] [INFO] cheese - inserting 1000 documents. first: Gruffudd ab yr Ynad Coch and last: Superior vertebral notch -[2018-02-13T08:24:48.627] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:24:48.704] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:24:48.786] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:24:49.280] [INFO] cheese - inserting 1000 documents. first: Isabel of Portugal and last: Dymitriads -[2018-02-13T08:24:49.287] [INFO] cheese - inserting 1000 documents. first: Gelechia aerobatis and last: Oliver Sacks Foundation -[2018-02-13T08:24:49.398] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:24:49.449] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:24:49.532] [INFO] cheese - inserting 1000 documents. first: Pternistis erckelii and last: Wikipedia:Categories for discussion/Log/2011 July 3 -[2018-02-13T08:24:49.556] [INFO] cheese - inserting 1000 documents. first: File:LotarSiewerdt.jpg and last: St. Brieuc Airport -[2018-02-13T08:24:49.582] [INFO] cheese - inserting 1000 documents. first: Highway 346 and last: 2007–08 CE Lleida Bàsquet season -[2018-02-13T08:24:49.804] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:24:49.808] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T08:24:49.826] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:24:50.056] [INFO] cheese - inserting 1000 documents. first: 2013-14 New York Islanders season and last: Monika Meyer (athlete) -[2018-02-13T08:24:50.168] [INFO] cheese - inserting 1000 documents. first: Portal:Utah/Selected article/1 and last: Portal:China/Archive -[2018-02-13T08:24:50.202] [INFO] cheese - inserting 1000 documents. first: Quercus brevipedunculata and last: Charlie Grainger -[2018-02-13T08:24:50.209] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:24:50.330] [INFO] cheese - batch complete in: 1.626 secs -[2018-02-13T08:24:50.334] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:24:50.506] [INFO] cheese - inserting 1000 documents. first: Bronto Bright Pebbles and last: Sony Ericsson C510 -[2018-02-13T08:24:50.539] [INFO] cheese - inserting 1000 documents. first: Fansub and last: Heinrich Schutz -[2018-02-13T08:24:50.738] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:24:50.754] [INFO] cheese - inserting 1000 documents. first: File:The Beverly Hillbillies.jpg and last: I'm as mad as hell, and I'm not going to take this anymore -[2018-02-13T08:24:50.765] [INFO] cheese - batch complete in: 2.956 secs -[2018-02-13T08:24:50.801] [INFO] cheese - inserting 1000 documents. first: The Dukes of Hazzard (movie) and last: Minting error -[2018-02-13T08:24:50.951] [INFO] cheese - inserting 1000 documents. first: The Diary of Anne Frank (1987 miniseries) and last: File:New Year Baby Poster.jpeg -[2018-02-13T08:24:50.968] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:24:50.986] [INFO] cheese - batch complete in: 1.536 secs -[2018-02-13T08:24:51.154] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:24:51.211] [INFO] cheese - inserting 1000 documents. first: Dimydarian oyster and last: Lucas Campana -[2018-02-13T08:24:51.275] [INFO] cheese - inserting 1000 documents. first: Mustoe House and last: Samuel Daskam -[2018-02-13T08:24:51.360] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:24:51.427] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:24:51.489] [INFO] cheese - inserting 1000 documents. first: Gerry Blaauw and last: Olivia Barber Winters -[2018-02-13T08:24:51.634] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:24:51.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DJ Panic and last: File:Pussbootpretend.jpg -[2018-02-13T08:24:51.767] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:24:51.847] [INFO] cheese - inserting 1000 documents. first: Silvia Solar and last: El Morro or Port San Juan Light -[2018-02-13T08:24:51.914] [INFO] cheese - inserting 1000 documents. first: Walter John Raymond and last: Xu Feng-xiong -[2018-02-13T08:24:51.920] [INFO] cheese - inserting 1000 documents. first: Oxi and last: Category:Years in Brazilian association football navigational boxes -[2018-02-13T08:24:51.937] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2015-09-04 and last: Annemarie Davidson -[2018-02-13T08:24:51.955] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:24:52.011] [INFO] cheese - inserting 1000 documents. first: Birger Sjoberg and last: Mara Region -[2018-02-13T08:24:52.020] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:24:52.057] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:24:52.076] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:24:52.216] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:24:52.351] [INFO] cheese - inserting 1000 documents. first: Set This Circus Down and last: UCAS points -[2018-02-13T08:24:52.393] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:24:52.462] [INFO] cheese - inserting 1000 documents. first: Quercetin-3-rhamnoside and last: Cascade waterfalls -[2018-02-13T08:24:52.564] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:24:52.595] [INFO] cheese - inserting 1000 documents. first: Category:1205 in Europe and last: Wikipedia:Articles for deletion/To Know That You're Alive -[2018-02-13T08:24:52.677] [INFO] cheese - inserting 1000 documents. first: Family Circle Cup and last: Category:Houses in Waller County, Texas -[2018-02-13T08:24:52.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dewayne jackson and last: Night Convoy -[2018-02-13T08:24:52.748] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:24:52.806] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:24:52.861] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:24:52.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Latinam-Zine and last: Intentional forgetting -[2018-02-13T08:24:52.957] [INFO] cheese - inserting 1000 documents. first: Antiphonitis and last: Battle of Dresden -[2018-02-13T08:24:53.067] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:24:53.126] [INFO] cheese - inserting 1000 documents. first: Pwani Region and last: Bahamani -[2018-02-13T08:24:53.193] [INFO] cheese - batch complete in: 2.428 secs -[2018-02-13T08:24:53.231] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian anti-abortion activists and last: Invasion of Serbian Krajina -[2018-02-13T08:24:53.332] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:24:53.363] [INFO] cheese - inserting 1000 documents. first: Cascade waterfall and last: Jersey Surf -[2018-02-13T08:24:53.396] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:24:53.523] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:24:53.560] [INFO] cheese - inserting 1000 documents. first: Category:1397 in Europe and last: Agriculture in Chad -[2018-02-13T08:24:53.646] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/richcelebs.com and last: Category:Wikipedia requested photographs in Tate County, Mississippi -[2018-02-13T08:24:53.669] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:24:53.687] [INFO] cheese - inserting 1000 documents. first: Lawless (surname) and last: Template:Serbian White Eagles managers -[2018-02-13T08:24:53.710] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:24:53.877] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:24:53.924] [INFO] cheese - inserting 1000 documents. first: Lexico-grammar and last: File:Maize Craze Logo.jpg -[2018-02-13T08:24:54.048] [INFO] cheese - inserting 1000 documents. first: Daggy Dearest / Dag's List and last: Shaken and Stirred: The David Arnold James Bond Project -[2018-02-13T08:24:54.056] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:24:54.087] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:24:54.257] [INFO] cheese - inserting 1000 documents. first: Gentry Center and last: Category:Peterborough, Ontario -[2018-02-13T08:24:54.286] [INFO] cheese - inserting 1000 documents. first: Why Not Sneeze, Rrose Sélavy? and last: 3,5,7-trihydroxy-2-(4-hydroxy-3-methoxyphenyl)chromen-4-one -[2018-02-13T08:24:54.315] [INFO] cheese - inserting 1000 documents. first: File:Jaathre Audio Cover.jpg and last: Bagdi Raja -[2018-02-13T08:24:54.331] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:24:54.364] [INFO] cheese - inserting 1000 documents. first: Karol Chodkiewicz and last: Category:Ricochet (band) albums -[2018-02-13T08:24:54.374] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:24:54.397] [INFO] cheese - inserting 1000 documents. first: Aliaksandr Hukau and last: Ewing Galloway -[2018-02-13T08:24:54.404] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:24:54.479] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:24:54.486] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:24:54.621] [INFO] cheese - inserting 1000 documents. first: Dosh and last: Luxury Lounge (The Sopranos episode) -[2018-02-13T08:24:54.673] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:24:54.820] [INFO] cheese - inserting 1000 documents. first: Riley Milne and last: File:Union Street Fire, Borough.jpg -[2018-02-13T08:24:54.855] [INFO] cheese - inserting 1000 documents. first: Scrobipalpa bahai and last: That We Can Play -[2018-02-13T08:24:54.862] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:24:54.888] [INFO] cheese - inserting 1000 documents. first: File:KEmodel.jpg and last: Telmo Zarraonaindía -[2018-02-13T08:24:54.933] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:24:54.943] [INFO] cheese - inserting 1000 documents. first: Battle of Eckmühl and last: Bill Cosby -[2018-02-13T08:24:54.972] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:24:55.320] [INFO] cheese - inserting 1000 documents. first: Strobe register and last: NAVAIR -[2018-02-13T08:24:55.318] [INFO] cheese - batch complete in: 2.125 secs -[2018-02-13T08:24:55.415] [INFO] cheese - inserting 1000 documents. first: Johnny Cakes (The Sopranos episode) and last: Richardus Armachanus -[2018-02-13T08:24:55.529] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:24:55.618] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:24:55.801] [INFO] cheese - inserting 1000 documents. first: Category:1963 establishments in Arkansas and last: Category:Eurovision Song Contest 1984 -[2018-02-13T08:24:55.918] [INFO] cheese - inserting 1000 documents. first: Antoni Bazaniak and last: Tenax II -[2018-02-13T08:24:55.963] [INFO] cheese - batch complete in: 1.484 secs -[2018-02-13T08:24:56.004] [INFO] cheese - inserting 1000 documents. first: Matthew Ferchius and last: Wikipedia:Articles for deletion/DVD releases for 2008 -[2018-02-13T08:24:56.055] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:24:56.118] [INFO] cheese - inserting 1000 documents. first: K215AF and last: Wikipedia:WikiProject Spam/LinkReports/nalandapharmacy.ac.in -[2018-02-13T08:24:56.160] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:24:56.239] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:24:56.554] [INFO] cheese - inserting 1000 documents. first: Moravka and last: Enjoy Yourself (It's Later Than You Think) -[2018-02-13T08:24:56.598] [INFO] cheese - inserting 1000 documents. first: Flipnote Memo and last: Category:FL-Class maritime warfare articles -[2018-02-13T08:24:56.636] [INFO] cheese - inserting 1000 documents. first: Face-to-face discourse and last: A/b testing -[2018-02-13T08:24:56.734] [INFO] cheese - inserting 1000 documents. first: Naval Air Systems Command and last: Somophyllin-crt -[2018-02-13T08:24:56.775] [INFO] cheese - batch complete in: 2.719 secs -[2018-02-13T08:24:56.794] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:24:56.840] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:24:56.859] [INFO] cheese - inserting 1000 documents. first: Cow-Cow Boogie and last: Waiau, New Zealand -[2018-02-13T08:24:56.922] [INFO] cheese - batch complete in: 1.393 secs -[2018-02-13T08:24:56.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/nalandapharmacy.ac.in and last: European Christian Book Store Journal -[2018-02-13T08:24:57.002] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:24:57.165] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:24:57.204] [INFO] cheese - inserting 1000 documents. first: Daisy Miller (film) and last: Glacier forelands -[2018-02-13T08:24:57.309] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:24:57.691] [INFO] cheese - inserting 1000 documents. first: Enter the Guardsman and last: Wikipedia:Sockpuppet investigations/Hunghim/Archive -[2018-02-13T08:24:57.714] [INFO] cheese - inserting 1000 documents. first: The Heads of the Proposals and last: Read Now With Power Up! -[2018-02-13T08:24:57.869] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Medieval warfare articles and last: 3D Systems Corp. -[2018-02-13T08:24:57.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blackthorn Asylum and last: 2009 European GP2 Race -[2018-02-13T08:24:57.904] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:24:57.927] [INFO] cheese - inserting 1000 documents. first: PLOS and last: Foreign relations of Macedonia -[2018-02-13T08:24:57.927] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:24:58.031] [INFO] cheese - inserting 1000 documents. first: ECBJ and last: Frederick William Matthiessen -[2018-02-13T08:24:58.032] [INFO] cheese - inserting 1000 documents. first: Alex G. Spanos Center and last: Ana María Martínez -[2018-02-13T08:24:58.047] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T08:24:58.057] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:24:58.141] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:24:58.171] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:24:58.335] [INFO] cheese - batch complete in: 3.017 secs -[2018-02-13T08:24:58.483] [INFO] cheese - inserting 1000 documents. first: Kay Burdekin and last: File:CTConventionCenter.jpg -[2018-02-13T08:24:58.631] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:24:58.739] [INFO] cheese - inserting 1000 documents. first: Russia national beach handball team and last: British Non-Ferrous Metals Research Association -[2018-02-13T08:24:58.882] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:24:58.912] [INFO] cheese - inserting 1000 documents. first: Dmitriyevsky (rural locality) and last: James John Van Alen -[2018-02-13T08:24:58.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Proghazalsrinivas/Archive and last: File:Rocca Massima-Stemma.png -[2018-02-13T08:24:58.951] [INFO] cheese - inserting 1000 documents. first: 2009 German GP2 Race and last: Wikipedia:Articles for deletion/D.A.D.O. -[2018-02-13T08:24:58.960] [INFO] cheese - inserting 1000 documents. first: Category:1913 establishments in Kenya and last: In the Shadow of Fear -[2018-02-13T08:24:59.054] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:24:59.100] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:24:59.163] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:24:59.193] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:24:59.315] [INFO] cheese - inserting 1000 documents. first: Category:Cynical Wikipedians and last: Field Marshal (Pakistan) -[2018-02-13T08:24:59.432] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T08:24:59.494] [INFO] cheese - inserting 1000 documents. first: 1st seimas and last: Kartellverband -[2018-02-13T08:24:59.667] [INFO] cheese - batch complete in: 1.036 secs -[2018-02-13T08:24:59.787] [INFO] cheese - inserting 1000 documents. first: University of Nevada-Reno and last: Wikipedia:Articles for deletion/Deal or No Deal, Series 1 (UK) -[2018-02-13T08:24:59.814] [INFO] cheese - inserting 1000 documents. first: Robail and last: Light Up the World (song) -[2018-02-13T08:24:59.887] [INFO] cheese - inserting 1000 documents. first: Jim White (basketball) and last: Category:Marine steam propulsion -[2018-02-13T08:24:59.908] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:25:00.063] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:25:00.070] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:25:00.082] [INFO] cheese - inserting 1000 documents. first: Mirnel Sadović and last: File:Equivalent incident wave and load.svg -[2018-02-13T08:25:00.197] [INFO] cheese - inserting 1000 documents. first: Mamadee and last: Should've Known Better (disambiguation) -[2018-02-13T08:25:00.240] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:25:00.530] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T08:25:00.608] [INFO] cheese - inserting 1000 documents. first: Sharon, Middlesex County, Ontario and last: Ius civile -[2018-02-13T08:25:00.704] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:25:00.750] [INFO] cheese - inserting 1000 documents. first: Chapelle Sainte-Agathe and last: Friedrich-Wilhelm Wichmann -[2018-02-13T08:25:00.799] [INFO] cheese - inserting 1000 documents. first: Freeze frame and last: Dr ken -[2018-02-13T08:25:00.821] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:25:00.873] [INFO] cheese - inserting 1000 documents. first: Office of Legal Policy and last: Wikipedia:Reference desk/Archives/Humanities/2006 November 19 -[2018-02-13T08:25:00.906] [INFO] cheese - batch complete in: 1.474 secs -[2018-02-13T08:25:00.991] [INFO] cheese - inserting 1000 documents. first: EV9D9 and last: Redmarbled lizardfish -[2018-02-13T08:25:01.045] [INFO] cheese - inserting 1000 documents. first: Veinticinco de Mayo, Uruguay and last: Chacras de Dolores -[2018-02-13T08:25:01.054] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:25:01.058] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:25:01.180] [INFO] cheese - inserting 1000 documents. first: Mori no Tonto Tachi and last: Wikipedia:Today's articles for improvement/2013/30 -[2018-02-13T08:25:01.282] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:25:01.386] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:25:01.424] [INFO] cheese - inserting 1000 documents. first: Ius gentium and last: Rise of Darkrai -[2018-02-13T08:25:01.530] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:25:01.584] [INFO] cheese - inserting 1000 documents. first: The Jabberwock (club) and last: Party Time (album by The Heptones) -[2018-02-13T08:25:01.740] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:25:01.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (Arabic)/Articles needing Arabic Script and last: File:Bloody Knife.jpg -[2018-02-13T08:25:02.080] [INFO] cheese - inserting 1000 documents. first: Alberta Highway 795 and last: Heredity and environment -[2018-02-13T08:25:02.106] [INFO] cheese - inserting 1000 documents. first: The light on the hill and last: Sir George Bullough -[2018-02-13T08:25:02.140] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:25:02.286] [INFO] cheese - inserting 1000 documents. first: Melian and last: Love and Rockets -[2018-02-13T08:25:02.362] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:25:02.375] [INFO] cheese - inserting 1000 documents. first: Minor Ignacio López and last: Tim Osswald -[2018-02-13T08:25:02.387] [INFO] cheese - batch complete in: 1.333 secs -[2018-02-13T08:25:02.422] [INFO] cheese - inserting 1000 documents. first: Strict determinism and last: Wikipedia:Sockpuppet investigations/Judenwatch -[2018-02-13T08:25:02.604] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:25:02.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Sciencegeck123/how to create a website and last: K220GR -[2018-02-13T08:25:02.656] [INFO] cheese - batch complete in: 1.374 secs -[2018-02-13T08:25:02.737] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:25:02.746] [INFO] cheese - batch complete in: 4.411 secs -[2018-02-13T08:25:02.751] [INFO] cheese - inserting 1000 documents. first: Sainte Pazanne and last: Escos -[2018-02-13T08:25:02.902] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:25:03.015] [INFO] cheese - inserting 1000 documents. first: National Romantic Style and last: The Century Company -[2018-02-13T08:25:03.202] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:25:03.219] [INFO] cheese - inserting 1000 documents. first: Rebešovice and last: Spanish destroyer Alcala Galiano (D24) -[2018-02-13T08:25:03.261] [INFO] cheese - inserting 1000 documents. first: Compendium of postage stamp issuers (Aa–Al) and last: Bermuda ern -[2018-02-13T08:25:03.351] [INFO] cheese - inserting 1000 documents. first: Category:Jeonbuk Hyundai Motors players and last: Mammillaria goodridgei -[2018-02-13T08:25:03.355] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:25:03.388] [INFO] cheese - inserting 1000 documents. first: Category:People from the Northern Governorate and last: Jatindra Nath Dowerah -[2018-02-13T08:25:03.485] [INFO] cheese - inserting 1000 documents. first: Factions in the Libertarian Party (United States) and last: Wikipedia:WikiProject Spam/LinkReports/de.oocities.com -[2018-02-13T08:25:03.493] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:25:03.548] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:25:03.583] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:25:03.707] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:25:03.885] [INFO] cheese - inserting 1000 documents. first: File:Rotaru-2004-teche voda.gif and last: National Art Gallery of New Zealand -[2018-02-13T08:25:04.082] [INFO] cheese - inserting 1000 documents. first: Bel Amica and last: Des Hackett -[2018-02-13T08:25:04.101] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:25:04.154] [INFO] cheese - inserting 1000 documents. first: File:Colby College old mule logo.png and last: Philadelphia Phoenix (AUDL) -[2018-02-13T08:25:04.201] [INFO] cheese - inserting 1000 documents. first: Spanish destroyer Alcalá Galiano and last: Template:User wikipedia/CVU-Vandal Fighter -[2018-02-13T08:25:04.278] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:25:04.306] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:25:04.409] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:25:04.555] [INFO] cheese - inserting 1000 documents. first: Draft:Blue growth and last: Category:Tourist attractions in Isabella County, Michigan -[2018-02-13T08:25:04.596] [INFO] cheese - inserting 1000 documents. first: Feet Don't Fail Me Now (song) and last: Robur Siena S.S.D. -[2018-02-13T08:25:04.630] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:25:04.690] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:25:04.715] [INFO] cheese - inserting 1000 documents. first: 71000 Hughdowns and last: USS Gleaves (DD-423) -[2018-02-13T08:25:04.826] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dawn Valley Bible Methodist Church and last: Category:Houston articles by importance -[2018-02-13T08:25:04.839] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:25:04.872] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:25:04.920] [INFO] cheese - inserting 1000 documents. first: Mongaillard and last: Silent Majority Group -[2018-02-13T08:25:04.988] [INFO] cheese - inserting 1000 documents. first: Yakub (Elijah Muhammad) and last: Choi Seolri -[2018-02-13T08:25:04.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2013 June 4 and last: Category:Houses in Botetourt County, Virginia -[2018-02-13T08:25:05.095] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:25:05.117] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:25:05.124] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:25:05.385] [INFO] cheese - inserting 1000 documents. first: A-Trane and last: Doha,Qatar -[2018-02-13T08:25:05.537] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:25:05.552] [INFO] cheese - inserting 1000 documents. first: Template:Podemos Region of Murcia/meta/shortname and last: Tirukkollampudur Vilvaranyeswarar Temple -[2018-02-13T08:25:05.636] [INFO] cheese - inserting 1000 documents. first: Keloid and last: The (Young) Rascals -[2018-02-13T08:25:05.704] [INFO] cheese - inserting 1000 documents. first: Kahle v. Gonzales and last: Joe Kennedy (disambiguation) -[2018-02-13T08:25:05.734] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:25:05.840] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:25:05.952] [INFO] cheese - batch complete in: 3.206 secs -[2018-02-13T08:25:05.960] [INFO] cheese - inserting 1000 documents. first: Richard Basciano and last: Category:1985 establishments in Malaysia -[2018-02-13T08:25:05.971] [INFO] cheese - inserting 1000 documents. first: Peräaukko Sivistyksessä and last: Libotenice -[2018-02-13T08:25:05.983] [INFO] cheese - inserting 1000 documents. first: Montigny-sur-l'Hallue and last: David Willis (producer) -[2018-02-13T08:25:06.033] [INFO] cheese - inserting 1000 documents. first: Maathodaa (Gaafu Dhaalu Atoll) and last: Wada Pav -[2018-02-13T08:25:06.084] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:25:06.122] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:25:06.189] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:25:06.225] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:25:06.393] [INFO] cheese - inserting 1000 documents. first: Penicillium stolkiae and last: Wikipedia:WikiProject Spam/LinkReports/mackenna-and-janssen.net -[2018-02-13T08:25:06.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/abergavennyboroughband.org.uk and last: Shibainu -[2018-02-13T08:25:06.546] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:25:06.795] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T08:25:06.967] [INFO] cheese - inserting 1000 documents. first: Frederick Nettlefold and last: Crookesmoor road -[2018-02-13T08:25:07.086] [INFO] cheese - inserting 1000 documents. first: Herbert Henderson and last: Mae (surname) -[2018-02-13T08:25:07.179] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hind Hassan and last: Newt fencing -[2018-02-13T08:25:07.185] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:25:07.321] [INFO] cheese - inserting 1000 documents. first: Lkáň and last: Budeč (Žďár nad Sázavou District) -[2018-02-13T08:25:07.348] [INFO] cheese - inserting 1000 documents. first: Saudi Ministry of Defense and Aviation and last: Velidhoo (Noonu Atoll) -[2018-02-13T08:25:07.362] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:25:07.396] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T08:25:07.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mackenna-and-janssen.net and last: File:The Calm before the Storm by Colton Dixon.jpg -[2018-02-13T08:25:07.504] [INFO] cheese - batch complete in: 1.279 secs -[2018-02-13T08:25:07.641] [INFO] cheese - batch complete in: 1.557 secs -[2018-02-13T08:25:07.678] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:25:08.075] [INFO] cheese - inserting 1000 documents. first: Ballard, Queensland and last: Steve Shirreffs -[2018-02-13T08:25:08.276] [INFO] cheese - inserting 1000 documents. first: File:Gorka Old Futures Gone.jpg and last: Rashid Aushev Central Stadium -[2018-02-13T08:25:08.278] [INFO] cheese - batch complete in: 1.483 secs -[2018-02-13T08:25:08.497] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:25:08.518] [INFO] cheese - inserting 1000 documents. first: Remak bundles and last: Category:People from Karakalpakstan -[2018-02-13T08:25:08.535] [INFO] cheese - inserting 1000 documents. first: Bukov (Žďár nad Sázavou District) and last: Wikings-NSK -[2018-02-13T08:25:08.552] [INFO] cheese - inserting 1000 documents. first: List of International cricket centuries by Sachin Tendulkar and last: File:Si te dicen que caí.jpg -[2018-02-13T08:25:08.595] [INFO] cheese - inserting 1000 documents. first: Nicolai Frederick Severin Grundtvig and last: Very Best Of Thomas and Friends -[2018-02-13T08:25:08.676] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T08:25:08.686] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:25:08.780] [INFO] cheese - inserting 1000 documents. first: Category:Visitor attractions in the United Kingdom and last: United Nations statistical divisions for the Americas -[2018-02-13T08:25:08.787] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T08:25:08.791] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:25:08.955] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:25:09.222] [INFO] cheese - inserting 1000 documents. first: 1907 VMI Keydets football team and last: Leaksville, North Carolina -[2018-02-13T08:25:09.273] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:25:09.426] [INFO] cheese - inserting 1000 documents. first: Novye Khimki Stadium and last: List of Webcomics -[2018-02-13T08:25:09.448] [INFO] cheese - inserting 1000 documents. first: Greenwich University and last: Fakenham College -[2018-02-13T08:25:09.457] [INFO] cheese - inserting 1000 documents. first: Aksel Magdahl and last: Template:User WikiProject Flagged Revisions -[2018-02-13T08:25:09.460] [INFO] cheese - inserting 1000 documents. first: Boy Meets World (Disney) and last: Incheon International Airport -[2018-02-13T08:25:09.473] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:25:09.500] [INFO] cheese - inserting 1000 documents. first: Le Mesge and last: Wikipedia:Featured article candidates/Blackface -[2018-02-13T08:25:09.522] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:25:09.535] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:25:09.623] [INFO] cheese - inserting 1000 documents. first: Amritanandamayi and last: Schürzenjäger -[2018-02-13T08:25:09.614] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:25:09.642] [INFO] cheese - inserting 1000 documents. first: United Nations statistical divisions for Asia and last: Wikipedia:WikiProject Spam/LinkReports/salud.uma.es -[2018-02-13T08:25:09.795] [INFO] cheese - batch complete in: 3.843 secs -[2018-02-13T08:25:09.808] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:25:09.826] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:25:10.096] [INFO] cheese - inserting 1000 documents. first: Sir graham bower and last: Personae -[2018-02-13T08:25:10.107] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ostodolepidae and last: Alcohol Tobacco Firearms -[2018-02-13T08:25:10.130] [INFO] cheese - inserting 1000 documents. first: Çözüm Süreci and last: Afro-Antiguan and Barbudan -[2018-02-13T08:25:10.165] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:10.198] [INFO] cheese - inserting 1000 documents. first: Lonjé Molen, Bolsward and last: Fencing at the 1924 Summer Olympics – Men's team foil -[2018-02-13T08:25:10.235] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:25:10.319] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:25:10.376] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Youth Olympics and last: Historic Buildings in Stirling, Alberta -[2018-02-13T08:25:10.438] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:25:10.536] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:25:10.635] [INFO] cheese - inserting 1000 documents. first: Hans Willem van Aylva and last: Harry Prout -[2018-02-13T08:25:10.780] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:25:10.829] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bommannan and last: Andy Ross -[2018-02-13T08:25:10.987] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:25:11.033] [INFO] cheese - inserting 1000 documents. first: Professional Ski Simulator and last: George Harris (footballer, born 1877) -[2018-02-13T08:25:11.084] [INFO] cheese - inserting 1000 documents. first: Joe Nealon and last: Goscombe John -[2018-02-13T08:25:11.092] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:25:11.173] [INFO] cheese - inserting 1000 documents. first: Grand Ballroom and last: Tullahoma Municipal Airport -[2018-02-13T08:25:11.176] [INFO] cheese - inserting 1000 documents. first: Shabbethai Sheftel Horowitz and last: Hulliche -[2018-02-13T08:25:11.186] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:25:11.310] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:25:11.317] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:25:11.326] [INFO] cheese - inserting 1000 documents. first: Jaroslav Bouček and last: File:NoCompromise29.jpg -[2018-02-13T08:25:11.450] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:25:11.513] [INFO] cheese - inserting 1000 documents. first: To the Heart of the Storm and last: Gelechia culminicolella -[2018-02-13T08:25:11.583] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:25:11.609] [INFO] cheese - inserting 1000 documents. first: Yap Ah Shak and last: Éva Marion -[2018-02-13T08:25:11.672] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:25:11.735] [INFO] cheese - inserting 1000 documents. first: Brent Gretzky and last: Nicholas Eden, 2nd Earl of Avon -[2018-02-13T08:25:11.780] [INFO] cheese - inserting 1000 documents. first: Jeanne d'Arc (1900 film) and last: Quinnia laetifica -[2018-02-13T08:25:11.792] [INFO] cheese - inserting 1000 documents. first: Andreas Wolf and last: Flight test instrumentation -[2018-02-13T08:25:11.800] [INFO] cheese - inserting 1000 documents. first: Arthur Elmore Bostwick and last: Jazz Journalists' Awards -[2018-02-13T08:25:11.840] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:25:11.858] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:25:11.867] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:25:11.927] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:25:12.020] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Republic of Kosovo and last: File:Pirateswalkplank.jpg -[2018-02-13T08:25:12.123] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:25:12.127] [INFO] cheese - inserting 1000 documents. first: Musakhel Bazar and last: Sow-bugs -[2018-02-13T08:25:12.157] [INFO] cheese - inserting 1000 documents. first: Einstein-Podolsky-Rosen paradox and last: Bolshevism -[2018-02-13T08:25:12.194] [INFO] cheese - inserting 1000 documents. first: Template:Connected contributor (paid)/doc and last: Pottsville (SEPTA station) -[2018-02-13T08:25:12.199] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:25:12.282] [INFO] cheese - batch complete in: 2.487 secs -[2018-02-13T08:25:12.298] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:25:12.444] [INFO] cheese - inserting 1000 documents. first: Family Guy Pilot and last: Guillermo Mordillo -[2018-02-13T08:25:12.642] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:25:12.688] [INFO] cheese - inserting 1000 documents. first: Quinnia limatula and last: Princess Kunegunda -[2018-02-13T08:25:12.728] [INFO] cheese - inserting 1000 documents. first: Category:1993 graphic novels and last: Mr. Bigg's -[2018-02-13T08:25:12.807] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:25:12.830] [INFO] cheese - inserting 1000 documents. first: Walk the Plank (Pirates of the Mississippi album) and last: Sumrai–Miltu languages -[2018-02-13T08:25:12.923] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:25:12.947] [INFO] cheese - inserting 1000 documents. first: Solomon Drowne and last: Squids: Obsession and Devotion -[2018-02-13T08:25:12.997] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Puerto Princesa and last: Template:Did you know nominations/Demands of the Slovak Nation -[2018-02-13T08:25:13.023] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:25:13.053] [INFO] cheese - inserting 1000 documents. first: Single winner electoral systems and last: Wikipedia:Sockpuppet investigations/TheFix63/Archive -[2018-02-13T08:25:13.128] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:25:13.150] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:25:13.174] [INFO] cheese - batch complete in: 1.334 secs -[2018-02-13T08:25:13.415] [INFO] cheese - inserting 1000 documents. first: Slight of hand and last: Wikipedia:Articles for deletion/web directories -[2018-02-13T08:25:13.511] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:25:13.555] [INFO] cheese - inserting 1000 documents. first: Category:Insurance companies based in Florida and last: Rapses -[2018-02-13T08:25:13.616] [INFO] cheese - inserting 1000 documents. first: Edna Worthley Underwood and last: Category:Coal mines in Mozambique -[2018-02-13T08:25:13.732] [INFO] cheese - inserting 1000 documents. first: Mt. Kŏmdan-san and last: Wikipedia:Articles for deletion/Nathan Norman -[2018-02-13T08:25:13.656] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:25:13.791] [INFO] cheese - inserting 1000 documents. first: August Thalheimer and last: Downingtown Middle School -[2018-02-13T08:25:13.792] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:25:13.811] [INFO] cheese - inserting 1000 documents. first: European University (disambiguation) and last: Killacycle -[2018-02-13T08:25:13.880] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:25:13.949] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:25:13.964] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:25:14.099] [INFO] cheese - inserting 1000 documents. first: Josiah Plumb and last: Silver Stream (New Zealand) -[2018-02-13T08:25:14.223] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:25:14.232] [INFO] cheese - inserting 1000 documents. first: Woodbridge new jersey and last: The Adventures of Mark and Brian -[2018-02-13T08:25:14.287] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:25:14.361] [INFO] cheese - inserting 1000 documents. first: Francis Edward Henry Farquharson and last: USS Kirwin (APD-90) -[2018-02-13T08:25:14.430] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:25:14.447] [INFO] cheese - inserting 1000 documents. first: Category:Mines in Mozambique and last: Saiyidha Dawetahwand -[2018-02-13T08:25:14.476] [INFO] cheese - inserting 1000 documents. first: Rehabilitative growth and last: Jo Daveiss -[2018-02-13T08:25:14.522] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:25:14.572] [INFO] cheese - inserting 1000 documents. first: Lionville Middle School and last: Xian heng tavern -[2018-02-13T08:25:14.582] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:25:14.715] [INFO] cheese - inserting 1000 documents. first: File:PONG+GAN+FC.png and last: Mel Meeks -[2018-02-13T08:25:14.733] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:25:14.805] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:25:14.856] [INFO] cheese - inserting 1000 documents. first: Jim Meddick and last: Act of Navigation -[2018-02-13T08:25:14.877] [INFO] cheese - inserting 1000 documents. first: George Smyth Baden-Powell and last: Maris Wrixon -[2018-02-13T08:25:14.976] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:25:14.986] [INFO] cheese - batch complete in: 2.703 secs -[2018-02-13T08:25:15.006] [INFO] cheese - inserting 1000 documents. first: Banu Güven and last: Category:1939 establishments in Chile -[2018-02-13T08:25:15.038] [INFO] cheese - inserting 1000 documents. first: Queen Gerbera of France and last: James Couper Brash -[2018-02-13T08:25:15.043] [INFO] cheese - inserting 1000 documents. first: Taxicabs of Chicago and last: Wikipedia:Articles for deletion/Cass V. Cibelli -[2018-02-13T08:25:15.071] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:25:15.088] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:25:15.164] [INFO] cheese - inserting 1000 documents. first: Category:Murder in 1940 and last: Tambelin railway station, Adelaide -[2018-02-13T08:25:15.166] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:25:15.266] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:25:15.304] [INFO] cheese - inserting 1000 documents. first: City of Springvale and last: File:Lemon-jelly-rolled.gif -[2018-02-13T08:25:15.400] [INFO] cheese - inserting 1000 documents. first: Erin Burke and last: Draft:Asia Regional Organic Standards -[2018-02-13T08:25:15.400] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:25:15.500] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:25:15.561] [INFO] cheese - inserting 1000 documents. first: MediaWeek and last: Shared Variables -[2018-02-13T08:25:15.625] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:25:15.629] [INFO] cheese - inserting 1000 documents. first: Tishman Speyer Properties, Inc. and last: 1990 British Formula Three Championship -[2018-02-13T08:25:15.675] [INFO] cheese - inserting 1000 documents. first: Okay Bill and last: File:Intelligent Systems logo.png -[2018-02-13T08:25:15.713] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:25:15.758] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:25:15.796] [INFO] cheese - inserting 1000 documents. first: Turakhan beg and last: Lars Dietrich (Musician) -[2018-02-13T08:25:15.856] [INFO] cheese - inserting 1000 documents. first: European Steel Technology Platform and last: Wang Lei (chess) -[2018-02-13T08:25:15.890] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:25:15.937] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:25:16.022] [INFO] cheese - inserting 1000 documents. first: Neha Bam and last: Burtons Corner -[2018-02-13T08:25:16.065] [INFO] cheese - inserting 1000 documents. first: Alexander-Conway polynomial and last: Horace Cameron -[2018-02-13T08:25:16.121] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:25:16.212] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:25:16.290] [INFO] cheese - inserting 1000 documents. first: Portal:Tropical cyclones/Anniversaries/January 19 and last: Venae stellatae -[2018-02-13T08:25:16.369] [INFO] cheese - inserting 1000 documents. first: Pollick and last: Konstantin Priahin -[2018-02-13T08:25:16.393] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:25:16.397] [INFO] cheese - inserting 1000 documents. first: Grand Canyon: The Hidden Secrets and last: Wikipedia:WikiProject Spam/LinkReports/res.es -[2018-02-13T08:25:16.502] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:25:16.550] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:25:16.660] [INFO] cheese - inserting 1000 documents. first: Template:Highland League map and last: Category:British sinologists -[2018-02-13T08:25:16.698] [INFO] cheese - inserting 1000 documents. first: File:London Thames Sunset panorama - Feb 2008.jpg and last: Ken Solheim -[2018-02-13T08:25:16.738] [INFO] cheese - inserting 1000 documents. first: Category:1869 establishments in Mississippi and last: Template:1909 AL Record vs. opponents -[2018-02-13T08:25:16.778] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:25:16.816] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:25:16.904] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:25:17.106] [INFO] cheese - inserting 1000 documents. first: Kongo ivory and last: Emam Qoli -[2018-02-13T08:25:17.107] [INFO] cheese - inserting 1000 documents. first: Page view and last: Fuji Syusuke -[2018-02-13T08:25:17.168] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Draconity and last: Salamumu -[2018-02-13T08:25:17.189] [INFO] cheese - inserting 1000 documents. first: Navigation Acts and last: Jeremy Gelbwaks -[2018-02-13T08:25:17.274] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T08:25:17.296] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:25:17.300] [INFO] cheese - inserting 1000 documents. first: Archibald Thomas Peachey and last: Kinetics Internet Protocol -[2018-02-13T08:25:17.402] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:25:17.482] [INFO] cheese - inserting 1000 documents. first: Annabessacook Lake and last: Top Run Motorsport -[2018-02-13T08:25:17.494] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:25:17.556] [INFO] cheese - batch complete in: 2.57 secs -[2018-02-13T08:25:17.630] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:25:17.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cedarsurfboards.com and last: File:2007 Austria 25 Euro Austrian Aviation back.jpg -[2018-02-13T08:25:17.727] [INFO] cheese - inserting 1000 documents. first: Dave Mitchell (disambiguation) and last: History of horse domestication theories -[2018-02-13T08:25:17.820] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:25:17.902] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:25:17.981] [INFO] cheese - inserting 1000 documents. first: Emamqoli Direh and last: Template:Country data Federal Dependencies of Venezuela -[2018-02-13T08:25:18.086] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:25:18.140] [INFO] cheese - inserting 1000 documents. first: Faleseela and last: Richy Müller -[2018-02-13T08:25:18.153] [INFO] cheese - inserting 1000 documents. first: Secretary Hawkins and last: Khoisa panaula -[2018-02-13T08:25:18.162] [INFO] cheese - inserting 1000 documents. first: Droungos and last: RM 1832 -[2018-02-13T08:25:18.183] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:25:18.220] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:25:18.253] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:18.394] [INFO] cheese - inserting 1000 documents. first: Judaica Press and last: Disney's Fort Wilderness Resort & Campground -[2018-02-13T08:25:18.584] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:25:18.606] [INFO] cheese - inserting 1000 documents. first: William Bradshaw (Puritan) and last: SR 906 (WA) -[2018-02-13T08:25:18.753] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:25:18.767] [INFO] cheese - inserting 1000 documents. first: Arthur Frank Burns and last: Liga de Fútbol Profesional Boliviano 2002 -[2018-02-13T08:25:18.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Checkmarx (company) and last: Super League (Pakistan) -[2018-02-13T08:25:18.914] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:25:18.925] [INFO] cheese - inserting 1000 documents. first: Khoisa triloba and last: Holidays Bulgaria -[2018-02-13T08:25:18.967] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:25:19.044] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:25:19.062] [INFO] cheese - inserting 1000 documents. first: Doulting and last: Dane Court Grammar School -[2018-02-13T08:25:19.203] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:25:19.261] [INFO] cheese - inserting 1000 documents. first: Rolling Thunder World Championships and last: Jinan Taishan Jiangjun -[2018-02-13T08:25:19.389] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:25:19.477] [INFO] cheese - inserting 1000 documents. first: SR 908 (WA) and last: Wikipedia:WikiProject Spam/LinkReports/ashlandalliance.com -[2018-02-13T08:25:19.579] [INFO] cheese - inserting 1000 documents. first: Targu Mures Airport and last: File:Dick Poole 1954.jpeg -[2018-02-13T08:25:19.591] [INFO] cheese - inserting 1000 documents. first: List of United States terrestrial television networks and last: Goostrey -[2018-02-13T08:25:19.608] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:25:19.650] [INFO] cheese - inserting 1000 documents. first: McMeechan v SS for Employment and last: Humanist Party (Peru) -[2018-02-13T08:25:19.670] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:25:19.706] [INFO] cheese - inserting 1000 documents. first: Rhodophyceæ and last: Category:1985 in West Virginia -[2018-02-13T08:25:19.735] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:25:19.747] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:25:19.779] [INFO] cheese - inserting 1000 documents. first: Mumble and last: Category:Arts in London -[2018-02-13T08:25:19.780] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:25:19.892] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:25:19.941] [INFO] cheese - inserting 1000 documents. first: Shenzhen Feiyada and last: C9H6O4 -[2018-02-13T08:25:20.029] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:25:20.063] [INFO] cheese - inserting 1000 documents. first: Borje Fredriksson and last: National Route 381 -[2018-02-13T08:25:20.127] [INFO] cheese - inserting 1000 documents. first: Oleg Kokushkin and last: Category:Supercopa Centroamericana -[2018-02-13T08:25:20.118] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:25:20.198] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:25:20.301] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance biography (musicians) articles and last: Sahhas -[2018-02-13T08:25:20.334] [INFO] cheese - inserting 1000 documents. first: Qualitative economics and last: East Cobb -[2018-02-13T08:25:20.371] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:25:20.421] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:25:20.427] [INFO] cheese - inserting 1000 documents. first: Jason West (game designer) and last: Wikipedia:WikiProject Spam/LinkReports/sleipnir.fo -[2018-02-13T08:25:20.455] [INFO] cheese - inserting 1000 documents. first: At Home with Their Greatest Hits and last: Nigel Edward Buxton -[2018-02-13T08:25:20.482] [INFO] cheese - inserting 1000 documents. first: Flygvapenmuseum and last: Desembocadura de la Cruz de Río Grande -[2018-02-13T08:25:20.579] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:25:20.614] [INFO] cheese - inserting 1000 documents. first: Graeme Swan and last: Greek destroyer Vasilissa Olga (D 15) -[2018-02-13T08:25:20.703] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:25:20.754] [INFO] cheese - inserting 1000 documents. first: Neil C. Roberts and last: Template:Unicode chart Balinese -[2018-02-13T08:25:20.814] [INFO] cheese - batch complete in: 3.258 secs -[2018-02-13T08:25:20.928] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:25:20.965] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:25:21.178] [INFO] cheese - inserting 1000 documents. first: Big Red (sculpture) and last: Ecole Française de Riyad -[2018-02-13T08:25:21.253] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:25:21.378] [INFO] cheese - inserting 1000 documents. first: Category:Georgia Tech Yellow Jackets women's basketball seasons and last: Category:Theatres in Northampton -[2018-02-13T08:25:21.423] [INFO] cheese - inserting 1000 documents. first: Nena feat. Nena and last: Category:Filmfare Awards South (Telugu) -[2018-02-13T08:25:21.494] [INFO] cheese - inserting 1000 documents. first: Maganlal Dresswala and last: Erft-Bahn -[2018-02-13T08:25:21.527] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:25:21.595] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:25:21.695] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:25:21.855] [INFO] cheese - inserting 1000 documents. first: 1981 birth and last: Pioneer Place/Southwest 5th (MAX station) -[2018-02-13T08:25:21.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/rays and last: Wikipedia:WikiProject Military history/Peer review/Benjamin Brice -[2018-02-13T08:25:21.952] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:25:21.983] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:25:22.038] [INFO] cheese - inserting 1000 documents. first: Ecole Francaise de Riyad and last: Wikipedia:Articles for deletion/Kharkiv -[2018-02-13T08:25:22.075] [INFO] cheese - inserting 1000 documents. first: El Ayote and last: Velde, Henry Clemens van de -[2018-02-13T08:25:22.173] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:25:22.211] [INFO] cheese - batch complete in: 1.508 secs -[2018-02-13T08:25:22.229] [INFO] cheese - inserting 1000 documents. first: Prince Nashimoto and last: St. Peter (Graubünden) -[2018-02-13T08:25:22.308] [INFO] cheese - inserting 1000 documents. first: Oath of Pontida and last: Branchiobdellida -[2018-02-13T08:25:22.324] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:25:22.475] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:25:22.626] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Northampton and last: Auchnagatt Primary School -[2018-02-13T08:25:22.765] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:25:22.781] [INFO] cheese - inserting 1000 documents. first: Cognoscere and last: Dudu (footballer) -[2018-02-13T08:25:22.868] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:25:22.986] [INFO] cheese - inserting 1000 documents. first: Stampa (Graubünden) and last: Chesopelloz -[2018-02-13T08:25:23.002] [INFO] cheese - inserting 1000 documents. first: Musée d’Art moderne et contemporain, Saint-Étienne Metropole and last: Category:Enhanced quote templates -[2018-02-13T08:25:23.024] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:25:23.093] [INFO] cheese - inserting 1000 documents. first: File:Qingdao University new logo.svg and last: Emin Guliyev (swimmer) -[2018-02-13T08:25:23.093] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:25:23.106] [INFO] cheese - inserting 1000 documents. first: File:Willow movie.jpg and last: Robert Stone (rugby league) -[2018-02-13T08:25:23.169] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:25:23.213] [INFO] cheese - inserting 1000 documents. first: Auchterellon Primary School and last: National Register of Historic Places listings in Acadia National Park -[2018-02-13T08:25:23.218] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:25:23.312] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:25:23.428] [INFO] cheese - inserting 1000 documents. first: Corinne Griffith and last: Jesus in Islam -[2018-02-13T08:25:23.435] [INFO] cheese - inserting 1000 documents. first: Chezard-Saint-Martin and last: Rudolph A. Weinert -[2018-02-13T08:25:23.468] [INFO] cheese - inserting 1000 documents. first: Plus! for Kids and last: Wikipedia:WikiProject U.S. Roads/Washington/1907 laws -[2018-02-13T08:25:23.469] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:25:23.585] [INFO] cheese - batch complete in: 2.771 secs -[2018-02-13T08:25:23.589] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:25:23.629] [INFO] cheese - inserting 1000 documents. first: Sanarudravaram and last: Portal:Ravidassia/Selected picture/1 -[2018-02-13T08:25:23.697] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:25:23.748] [INFO] cheese - inserting 1000 documents. first: Frank B. Haviland and last: Ekspress AM8 -[2018-02-13T08:25:23.812] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:25:23.815] [INFO] cheese - inserting 1000 documents. first: Wittman D-12 Bonzo and last: Category:Fungi described in 1886 -[2018-02-13T08:25:23.898] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:23.900] [INFO] cheese - inserting 1000 documents. first: Joe Willie Namath and last: Nabucodonosor -[2018-02-13T08:25:23.997] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:25:24.092] [INFO] cheese - inserting 1000 documents. first: Tolentino and Macerata and last: Fred breinersdorfer -[2018-02-13T08:25:24.098] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Dwight Yoakam and last: Second Battle of Picardy -[2018-02-13T08:25:24.135] [INFO] cheese - inserting 1000 documents. first: Coventry University Students' Union and last: Yavan, Iran -[2018-02-13T08:25:24.144] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:25:24.194] [INFO] cheese - inserting 1000 documents. first: Konemetsä and last: Alex French -[2018-02-13T08:25:24.204] [INFO] cheese - batch complete in: 2.252 secs -[2018-02-13T08:25:24.204] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:25:24.241] [INFO] cheese - inserting 1000 documents. first: Malik ibn Kaydar and last: Trachylepis aurata -[2018-02-13T08:25:24.308] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:25:24.371] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:25:24.528] [INFO] cheese - inserting 1000 documents. first: Kimball Hotel and last: Noise and Resistance -[2018-02-13T08:25:24.591] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:25:24.630] [INFO] cheese - inserting 1000 documents. first: Liquaemin sodium and last: Wikipedia:Articles for deletion/Millburn School, Wadsworth, Illinois -[2018-02-13T08:25:24.754] [INFO] cheese - inserting 1000 documents. first: In-Shik Hwang and last: Age dependency -[2018-02-13T08:25:24.791] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:25:24.803] [INFO] cheese - inserting 1000 documents. first: Hymno da Carta and last: Category:Festivals in Oceania -[2018-02-13T08:25:24.832] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:25:24.918] [INFO] cheese - inserting 1000 documents. first: Mayer, Texas and last: File:BridgeofDragons1999.poster.jpg -[2018-02-13T08:25:25.037] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:25:25.130] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:25:25.171] [INFO] cheese - inserting 1000 documents. first: Monet (comics) and last: Hooves and Harlots (Xena episode) -[2018-02-13T08:25:25.193] [INFO] cheese - inserting 1000 documents. first: Golomt bank and last: Bellevue Investments -[2018-02-13T08:25:25.229] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:25:25.234] [INFO] cheese - inserting 1000 documents. first: Diarrhoea and last: SQL programming language -[2018-02-13T08:25:25.292] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:25:25.382] [INFO] cheese - batch complete in: 1.797 secs -[2018-02-13T08:25:25.570] [INFO] cheese - inserting 1000 documents. first: Abba (Talmud) and last: Slice of cake -[2018-02-13T08:25:25.650] [INFO] cheese - inserting 1000 documents. first: Phase Shift and last: E.N.T. -[2018-02-13T08:25:25.668] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:25:25.689] [INFO] cheese - inserting 1000 documents. first: List of Hunter × Hunter (1999) episodes and last: Portal:Indonesia/ST List/SP Subak -[2018-02-13T08:25:25.712] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:25:25.802] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:25:25.810] [INFO] cheese - inserting 1000 documents. first: Government House (Antigua & Barbuda) and last: Shovel Ready -[2018-02-13T08:25:25.854] [INFO] cheese - inserting 1000 documents. first: Sim Templeman and last: Category:Test cricket captains -[2018-02-13T08:25:25.862] [INFO] cheese - inserting 1000 documents. first: Gaultheria ovatifolia and last: Djoue -[2018-02-13T08:25:25.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/css.edu.hk and last: Category:Animal breeds originating in Lithuania -[2018-02-13T08:25:25.903] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:25:25.909] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:25:25.937] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:25:26.012] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:25:26.231] [INFO] cheese - inserting 1000 documents. first: Category:Banks established in 1834 and last: History of Tokyo Game Show -[2018-02-13T08:25:26.338] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:25:26.406] [INFO] cheese - inserting 1000 documents. first: Wikipedia:MediaWiki Edition Toolbar and last: Angie Tsang -[2018-02-13T08:25:26.541] [INFO] cheese - inserting 1000 documents. first: Isafe and last: Tropical chinchweed -[2018-02-13T08:25:26.543] [INFO] cheese - inserting 1000 documents. first: Kdebase and last: Asioot -[2018-02-13T08:25:26.548] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:25:26.589] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:25:26.607] [INFO] cheese - inserting 1000 documents. first: Andrei Dikan and last: Harry Jones -[2018-02-13T08:25:26.612] [INFO] cheese - inserting 1000 documents. first: Custódio Muchate and last: 1977–78 Rangers F.C. season -[2018-02-13T08:25:26.635] [INFO] cheese - inserting 1000 documents. first: El Daein Airport and last: Cambridge University Museum -[2018-02-13T08:25:26.636] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:25:26.708] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:25:26.742] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:25:26.768] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:25:26.877] [INFO] cheese - inserting 1000 documents. first: Quévy and last: European Capital of Culture -[2018-02-13T08:25:26.951] [INFO] cheese - inserting 1000 documents. first: M.I (Nigerian Rapper) and last: Category:Kampala Central Division -[2018-02-13T08:25:26.988] [INFO] cheese - batch complete in: 1.605 secs -[2018-02-13T08:25:27.005] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:25:27.136] [INFO] cheese - inserting 1000 documents. first: Wax Wood and last: Magister Chirurgiae -[2018-02-13T08:25:27.175] [INFO] cheese - inserting 1000 documents. first: Vinci (automobile) and last: Omega Roberts -[2018-02-13T08:25:27.187] [INFO] cheese - inserting 1000 documents. first: Blondie in the Dough and last: Duran Sartor de Paernas -[2018-02-13T08:25:27.205] [INFO] cheese - inserting 1000 documents. first: Tropical cinchweed and last: Jugend (journal) -[2018-02-13T08:25:27.228] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:25:27.251] [INFO] cheese - inserting 1000 documents. first: RMS Empress of England and last: Japan Democratic Party -[2018-02-13T08:25:27.269] [INFO] cheese - inserting 1000 documents. first: Alexander, Harold Rupert Leofric George, 1st Earl Alexander of Tunis and last: Dove, Arthur Garfield -[2018-02-13T08:25:27.270] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:25:27.283] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:25:27.286] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:25:27.397] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:25:27.391] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:25:27.600] [INFO] cheese - inserting 1000 documents. first: Tangible User Interface and last: Guatemala at the 1955 Pan American Games -[2018-02-13T08:25:27.626] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:25:27.701] [INFO] cheese - inserting 1000 documents. first: Nturei karta and last: File:Terpischore -Unidentified -circa 1900.JPG -[2018-02-13T08:25:27.711] [INFO] cheese - inserting 1000 documents. first: Eugeni Redkin and last: Capital of Benin -[2018-02-13T08:25:27.763] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:25:27.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/October 2, 2015 and last: Christian Monsod -[2018-02-13T08:25:27.815] [INFO] cheese - inserting 1000 documents. first: Felix Resurrección Hidalgo and last: Category:Dams on the Peace River -[2018-02-13T08:25:27.820] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:25:27.843] [INFO] cheese - inserting 1000 documents. first: EWwy Award and last: Single source published -[2018-02-13T08:25:27.877] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:25:27.899] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:25:27.914] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Morno and last: James Kocsis -[2018-02-13T08:25:27.919] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:25:28.022] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:25:28.073] [INFO] cheese - inserting 1000 documents. first: Guatemala at the 1959 Pan American Games and last: Wenzhou–Fuzhou Railway -[2018-02-13T08:25:28.133] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:25:28.326] [INFO] cheese - inserting 1000 documents. first: Fitness to plead and last: Wikipedia:Articles for deletion/Microcasting -[2018-02-13T08:25:28.351] [INFO] cheese - inserting 1000 documents. first: HMS Whitehall (1919) and last: Template:Did you know nominations/Secret Ponchos -[2018-02-13T08:25:28.355] [INFO] cheese - inserting 1000 documents. first: Capital of Botswana and last: Berta Gardner -[2018-02-13T08:25:28.362] [INFO] cheese - inserting 1000 documents. first: 2016 State of Origin series and last: John Bale (MP) -[2018-02-13T08:25:28.387] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:25:28.401] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:25:28.440] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:25:28.501] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:25:28.539] [INFO] cheese - inserting 1000 documents. first: PNS Tippu Sultan (1941) and last: Anita O'Day Collates (Anita O'Day Album) -[2018-02-13T08:25:28.613] [INFO] cheese - inserting 1000 documents. first: Ancyromonas and last: Albulario -[2018-02-13T08:25:28.614] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:25:28.668] [INFO] cheese - inserting 1000 documents. first: Dario Fo and last: John MacBride -[2018-02-13T08:25:28.737] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:25:28.738] [INFO] cheese - inserting 1000 documents. first: Apple Mountain Lake and last: Template:Rivals.com coach/doc -[2018-02-13T08:25:28.807] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:25:28.807] [INFO] cheese - batch complete in: 1.819 secs -[2018-02-13T08:25:28.952] [INFO] cheese - inserting 1000 documents. first: Policies and guidelines of Wikipedia and last: Junior Fernandes da Silva -[2018-02-13T08:25:28.979] [INFO] cheese - inserting 1000 documents. first: Category:Record labels established in 1975 and last: Banaras Gharana -[2018-02-13T08:25:28.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Washington/1931 laws and last: Wikipedia:Featured picture candidates/William-Adolphe Bouguereau (1825-1905) - Sewing (1898) -[2018-02-13T08:25:29.007] [INFO] cheese - inserting 1000 documents. first: Russia - New Zealand relations and last: Phalonia conversana -[2018-02-13T08:25:29.030] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:29.037] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:25:29.086] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:25:29.174] [INFO] cheese - inserting 1000 documents. first: Category:People from Kraśnik County and last: Congregation of the Damned -[2018-02-13T08:25:29.180] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:25:29.289] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:25:29.410] [INFO] cheese - inserting 1000 documents. first: Editorial Académica Española and last: Daqing First High School -[2018-02-13T08:25:29.412] [INFO] cheese - inserting 1000 documents. first: Pennine Chain and last: Rinehart, Mary Roberts -[2018-02-13T08:25:29.484] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:25:29.496] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:29.655] [INFO] cheese - inserting 1000 documents. first: File:LCK Terminal.jpg and last: Scientia Pharmaceutica -[2018-02-13T08:25:29.706] [INFO] cheese - inserting 1000 documents. first: Category:Prehistoric vertebrates of Asia and last: Charles Hepburn Scott -[2018-02-13T08:25:29.720] [INFO] cheese - inserting 1000 documents. first: Musgrave railway station and last: Monkey business -[2018-02-13T08:25:29.776] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:25:29.803] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:25:29.817] [INFO] cheese - inserting 1000 documents. first: Roads in New Brunswick and last: Category:Ancient Alexandria -[2018-02-13T08:25:29.817] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:25:29.862] [INFO] cheese - inserting 1000 documents. first: Wildlife farming and last: List of Elitserien seasons -[2018-02-13T08:25:29.895] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:25:29.970] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:25:30.075] [INFO] cheese - inserting 1000 documents. first: Jack Jones (pitcher) and last: Portal:Horror/This day in horror archive/June/8 -[2018-02-13T08:25:30.108] [INFO] cheese - inserting 1000 documents. first: Glukhov and last: The Prague Post -[2018-02-13T08:25:30.156] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:25:30.181] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:25:30.337] [INFO] cheese - inserting 1000 documents. first: Category:French cricketers and last: Joseph Gaylord -[2018-02-13T08:25:30.343] [INFO] cheese - inserting 1000 documents. first: 2010 FIVB Volleyball World League qualification and last: K. Rosaiah -[2018-02-13T08:25:30.368] [INFO] cheese - inserting 1000 documents. first: Nasi campur and last: Open Heaven / River Wild -[2018-02-13T08:25:30.380] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:25:30.390] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Lebanon articles and last: Jeanine Micheau -[2018-02-13T08:25:30.398] [INFO] cheese - inserting 1000 documents. first: Category:Restaurants in Lima and last: Garage band (TV series) -[2018-02-13T08:25:30.398] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:25:30.467] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:25:30.480] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:25:30.502] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:25:30.578] [INFO] cheese - inserting 1000 documents. first: William Ward (Texas) and last: New York's At-large congressional district -[2018-02-13T08:25:30.626] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:25:30.638] [INFO] cheese - inserting 1000 documents. first: Liam Gallagher and last: Loyalist feud -[2018-02-13T08:25:30.753] [INFO] cheese - batch complete in: 1.941 secs -[2018-02-13T08:25:30.838] [INFO] cheese - inserting 1000 documents. first: Peter Richards and last: Ultrabasic -[2018-02-13T08:25:30.904] [INFO] cheese - inserting 1000 documents. first: Category:1911 in French Equatorial Africa and last: Mark Hendrickson (American football coach) -[2018-02-13T08:25:30.934] [INFO] cheese - inserting 1000 documents. first: File:When Zachary Beaver Came To Town.jpg and last: Maximilian Gowran Townley -[2018-02-13T08:25:30.970] [INFO] cheese - inserting 1000 documents. first: Enemies of Children and last: Jane's All the World's Aircraft 1919 -[2018-02-13T08:25:31.019] [INFO] cheese - inserting 1000 documents. first: File:Douarnenez-port-rhu.jpg and last: The Glory of their times -[2018-02-13T08:25:31.034] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:25:31.037] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:25:31.038] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:25:31.135] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:25:31.135] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:25:31.186] [INFO] cheese - inserting 1000 documents. first: Chalkuyruk and last: Daylight saving time in the United States -[2018-02-13T08:25:31.285] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:25:31.531] [INFO] cheese - inserting 1000 documents. first: Renault Clio Ragnotti and last: Samuel Bogart -[2018-02-13T08:25:31.606] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:25:31.662] [INFO] cheese - inserting 1000 documents. first: Category:Karnali Zone and last: Category:1676 in France -[2018-02-13T08:25:31.680] [INFO] cheese - inserting 1000 documents. first: Mount Vernon, Baltimore, Maryland and last: File:Tsar Kandavl or Le Roi Candaule -Lev Ivanov -1899.jpg -[2018-02-13T08:25:31.681] [INFO] cheese - inserting 1000 documents. first: Andrey Meshchaninov and last: 3 chak -[2018-02-13T08:25:31.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Nathan1234591/Archive and last: Draft:Tony Moore (Olympic Athlete) -[2018-02-13T08:25:31.697] [INFO] cheese - inserting 1000 documents. first: Talan Teidit and last: File:Junip Straight Lines cover.jpg -[2018-02-13T08:25:31.727] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:25:31.772] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:25:31.781] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:25:31.798] [INFO] cheese - inserting 1000 documents. first: List of North American Deserts and last: William Cavendish-Bentinck, 6th Duke of Portland -[2018-02-13T08:25:31.804] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:25:31.798] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:25:31.945] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:25:32.141] [INFO] cheese - inserting 1000 documents. first: File:Mighty-Gabby-2007.jpg and last: Wikipedia:Articles for deletion/Tim Mudde -[2018-02-13T08:25:32.191] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:32.196] [INFO] cheese - inserting 1000 documents. first: Category:File-Class South African politics articles and last: Jiangning County -[2018-02-13T08:25:32.224] [INFO] cheese - inserting 1000 documents. first: Template:Chital macher muitha and last: Talento Dorado -[2018-02-13T08:25:32.253] [INFO] cheese - inserting 1000 documents. first: Rouville, Seine-Maritime and last: Pogonomyrmex maricopa -[2018-02-13T08:25:32.261] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:25:32.270] [INFO] cheese - inserting 1000 documents. first: Iecava (river) and last: 5th cranial nerve -[2018-02-13T08:25:32.284] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:25:32.312] [INFO] cheese - inserting 1000 documents. first: Category:Karnataka articles by importance and last: Category:Museums by type -[2018-02-13T08:25:32.340] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:25:32.346] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:25:32.393] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:25:32.526] [INFO] cheese - inserting 1000 documents. first: Coat of arms of New York and last: Yitschak Rabin -[2018-02-13T08:25:32.562] [INFO] cheese - inserting 1000 documents. first: Rising Sun (yacht) and last: Chichester, Sir Francis Charles -[2018-02-13T08:25:32.602] [INFO] cheese - inserting 1000 documents. first: George DeBenedicty and last: Category:British television articles by quality -[2018-02-13T08:25:32.609] [INFO] cheese - batch complete in: 1.856 secs -[2018-02-13T08:25:32.625] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:25:32.681] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:25:32.791] [INFO] cheese - inserting 1000 documents. first: Largest bones and last: Paula Lanz -[2018-02-13T08:25:32.804] [INFO] cheese - inserting 1000 documents. first: Carposina anopta and last: Linda Griffiths (playwright) -[2018-02-13T08:25:32.857] [INFO] cheese - inserting 1000 documents. first: Kesek and last: Category:Swing bridges in the United Kingdom -[2018-02-13T08:25:32.871] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:32.876] [INFO] cheese - inserting 1000 documents. first: D-trisomy syndrome and last: National Tang Soo Do Congress -[2018-02-13T08:25:32.886] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:25:32.894] [INFO] cheese - inserting 1000 documents. first: Gerald MacIntosh Johnston and last: Phospho Silicate Glass -[2018-02-13T08:25:32.986] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:25:33.041] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:25:33.045] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:25:33.311] [INFO] cheese - inserting 1000 documents. first: Shuvescha and last: Category:Populated places in Branch County, Michigan -[2018-02-13T08:25:33.324] [INFO] cheese - inserting 1000 documents. first: Fateless (film) and last: Even in Blackouts -[2018-02-13T08:25:33.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battle of Ismailia/archive1 and last: Category:10th-century establishments in Germany -[2018-02-13T08:25:33.414] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:25:33.422] [INFO] cheese - inserting 1000 documents. first: L'Aldosa and last: Bossuet, Jacques Benigne -[2018-02-13T08:25:33.481] [INFO] cheese - inserting 1000 documents. first: Paula Blazquez and last: Category:Counties of South Shore (Massachusetts) -[2018-02-13T08:25:33.494] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:25:33.497] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:25:33.527] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:25:33.645] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:33.657] [INFO] cheese - inserting 1000 documents. first: Velcro dogs and last: Jean Pierre de Caussade -[2018-02-13T08:25:33.808] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:25:33.940] [INFO] cheese - inserting 1000 documents. first: Paros Airport and last: Joshua Mauga -[2018-02-13T08:25:33.980] [INFO] cheese - inserting 1000 documents. first: Nils Otto Gustaf Nordenskjoeld and last: Hastings--Frontenac--Lennox & Addington -[2018-02-13T08:25:34.002] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:25:34.015] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:25:34.117] [INFO] cheese - inserting 1000 documents. first: Category:990s in Germany and last: Valeska Stock -[2018-02-13T08:25:34.191] [INFO] cheese - inserting 1000 documents. first: Bučka and last: Balta Tocila -[2018-02-13T08:25:34.223] [INFO] cheese - inserting 1000 documents. first: John S. Ridley and last: Albert Gore Jr. -[2018-02-13T08:25:34.297] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:25:34.309] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:25:34.398] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:25:34.471] [INFO] cheese - inserting 1000 documents. first: Portal:Dogs/Selected breed/57 and last: Frankenia salina -[2018-02-13T08:25:34.482] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/146.115.179.22/Archive and last: Rèpertoire Bibliographique de la Philosophie -[2018-02-13T08:25:34.560] [INFO] cheese - inserting 1000 documents. first: Ahmed Shukairy and last: Mathematicians -[2018-02-13T08:25:34.603] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:25:34.615] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:25:34.693] [INFO] cheese - inserting 1000 documents. first: Volveras and last: Levitation (film) -[2018-02-13T08:25:34.722] [INFO] cheese - inserting 1000 documents. first: Auckland Supercity and last: Achupallas Parish -[2018-02-13T08:25:34.844] [INFO] cheese - inserting 1000 documents. first: 1969–70 AL-Bank Ligaen season and last: Wikipedia:GLAM/JoburgpediA/No1 Challenge -[2018-02-13T08:25:34.917] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:25:34.937] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:25:34.996] [INFO] cheese - batch complete in: 2.386 secs -[2018-02-13T08:25:35.065] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:25:35.208] [INFO] cheese - inserting 1000 documents. first: Golu Grabicina and last: St. Elmo (1923 British film) -[2018-02-13T08:25:35.318] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:25:35.415] [INFO] cheese - inserting 1000 documents. first: Big Brothers/Big Sisters of America and last: U.S. Patents Law -[2018-02-13T08:25:35.430] [INFO] cheese - inserting 1000 documents. first: Template:UC Santa Barbara Gauchos athletic director navbox and last: Sarann Knight Preddy -[2018-02-13T08:25:35.454] [INFO] cheese - inserting 1000 documents. first: Frank McEwen and last: File:Year of the dragon poster.jpg -[2018-02-13T08:25:35.512] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:25:35.514] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:25:35.551] [INFO] cheese - inserting 1000 documents. first: Category:Utah elections, 2004 and last: Wenatchee metropolitan statistical area -[2018-02-13T08:25:35.587] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:25:35.654] [INFO] cheese - inserting 1000 documents. first: Dating Agency Cyrano and last: Frans Sales Lega Airport -[2018-02-13T08:25:35.734] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:25:35.775] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:25:35.924] [INFO] cheese - inserting 1000 documents. first: Elisabeth Wiener and last: Dagmar Rubsam-Neubauer -[2018-02-13T08:25:36.020] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:25:36.049] [INFO] cheese - inserting 1000 documents. first: Hermits of the Most Blessed Virgin Mary of Mount Carmel and last: Category:231 establishments -[2018-02-13T08:25:36.113] [INFO] cheese - inserting 1000 documents. first: Louis L 'Amour and last: Boltana, Spain -[2018-02-13T08:25:36.164] [INFO] cheese - inserting 1000 documents. first: Romona, Indiana and last: Hugh Montgomery (mathematician) -[2018-02-13T08:25:36.220] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:25:36.236] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:25:36.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jungjangbi Plaza and last: The X File -[2018-02-13T08:25:36.302] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:25:36.421] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:25:36.467] [INFO] cheese - inserting 1000 documents. first: Ruteng Airport and last: File:City of Hazard Seal.gif -[2018-02-13T08:25:36.512] [INFO] cheese - inserting 1000 documents. first: Category:1909 in military history and last: Carrion de Calatrava -[2018-02-13T08:25:36.574] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T08:25:36.573] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:25:36.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Say Hey and last: Amazon weasel -[2018-02-13T08:25:36.742] [INFO] cheese - inserting 1000 documents. first: Dagmar Rübsam-Neubauer and last: Category:Trinidad and Tobago beach volleyball players -[2018-02-13T08:25:36.782] [INFO] cheese - inserting 1000 documents. first: John Randolph Grymes and last: Syncopacma linella -[2018-02-13T08:25:36.827] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:25:36.821] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:25:36.864] [INFO] cheese - inserting 1000 documents. first: Home Construction Limited and last: La Hoya de Bunol -[2018-02-13T08:25:36.866] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:25:36.949] [INFO] cheese - inserting 1000 documents. first: Description Logic and last: Safari -[2018-02-13T08:25:36.952] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:25:36.956] [INFO] cheese - inserting 1000 documents. first: Jostein Løfsgaard and last: Allen Penner -[2018-02-13T08:25:37.068] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:25:37.078] [INFO] cheese - batch complete in: 2.082 secs -[2018-02-13T08:25:37.199] [INFO] cheese - inserting 1000 documents. first: Alton station (Illinois) and last: Debra Ann Livingston -[2018-02-13T08:25:37.245] [INFO] cheese - inserting 1000 documents. first: Sally (TV series) and last: Hajji Alian -[2018-02-13T08:25:37.291] [INFO] cheese - inserting 1000 documents. first: CaSO4*2H2O and last: Nijo Yasumichi -[2018-02-13T08:25:37.294] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:25:37.360] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T08:25:37.420] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:25:37.599] [INFO] cheese - inserting 1000 documents. first: Vonani Bila and last: Wynton Rufer -[2018-02-13T08:25:37.602] [INFO] cheese - inserting 1000 documents. first: Marny Eng and last: Category:Baker City, Oregon -[2018-02-13T08:25:37.624] [INFO] cheese - inserting 1000 documents. first: G. A. L. Burgeon and last: Category:GA-Class Pakistan Super League articles -[2018-02-13T08:25:37.686] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:25:37.725] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:25:37.759] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:25:37.829] [INFO] cheese - inserting 1000 documents. first: Nuestra Senora de Loreto and last: Garcia de Loaysa -[2018-02-13T08:25:37.882] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:25:38.019] [INFO] cheese - inserting 1000 documents. first: Category:People from Schkeuditz and last: Papineau, Quebec -[2018-02-13T08:25:38.055] [INFO] cheese - inserting 1000 documents. first: Kabudeh-ye Olya and last: 150th Indiana Infantry Regiment -[2018-02-13T08:25:38.105] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:25:38.145] [INFO] cheese - inserting 1000 documents. first: History of tax protesters and last: IHP-100 -[2018-02-13T08:25:38.156] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:25:38.317] [INFO] cheese - inserting 1000 documents. first: Schoenwald, Brandenburg and last: Guarneri del Gesu -[2018-02-13T08:25:38.418] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:25:38.425] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:25:38.570] [INFO] cheese - inserting 1000 documents. first: File:Dandenong Thunder SC Logo.jpg and last: 2011 UEFA European Under-21 Championship qualification play-offs -[2018-02-13T08:25:38.605] [INFO] cheese - inserting 1000 documents. first: Hiver (software) and last: Wikipedia:WikiProject Spam/LinkReports/tendonpain.org -[2018-02-13T08:25:38.704] [INFO] cheese - inserting 1000 documents. first: Lake Hayq and last: Platen, August, Graf von Platen-Hallermund -[2018-02-13T08:25:38.754] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:25:38.786] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:25:38.895] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:25:39.011] [INFO] cheese - inserting 1000 documents. first: Raise a question of privilege and last: Mogol-Korgon -[2018-02-13T08:25:39.076] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (anglicization) and last: Primitive root modulo n -[2018-02-13T08:25:39.090] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:25:39.147] [INFO] cheese - inserting 1000 documents. first: 2007 All-Ireland Minor Hurling Championship and last: TJ Sokol Živanice -[2018-02-13T08:25:39.223] [INFO] cheese - inserting 1000 documents. first: A262 road and last: Mary of Magdelene -[2018-02-13T08:25:39.284] [INFO] cheese - inserting 1000 documents. first: Category:1993 establishments in Malawi and last: Bébé et fillettes -[2018-02-13T08:25:39.305] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:25:39.307] [INFO] cheese - batch complete in: 2.229 secs -[2018-02-13T08:25:39.338] [INFO] cheese - inserting 1000 documents. first: Dublin Film Critics Circle Awards of 2011 and last: Hallo, Fräulein! -[2018-02-13T08:25:39.434] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:25:39.482] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:25:39.502] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:25:39.597] [INFO] cheese - inserting 1000 documents. first: Norra Vasterbotten and last: Francois Daunou -[2018-02-13T08:25:39.643] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:25:39.651] [INFO] cheese - inserting 1000 documents. first: Sergey Darkin (politician) and last: B1 road (Croatia) -[2018-02-13T08:25:39.752] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:25:39.761] [INFO] cheese - inserting 1000 documents. first: Money Don't Matter 2 Night and last: Round-robin networks -[2018-02-13T08:25:39.859] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:25:39.999] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Latin America/sandbox and last: Portal:Supreme Court of the United States/Selected anniversaries -[2018-02-13T08:25:40.048] [INFO] cheese - inserting 1000 documents. first: Citroën D Special and last: Handball at the 2015 African Games – Men's tournament -[2018-02-13T08:25:40.057] [INFO] cheese - inserting 1000 documents. first: Category:People from Circleville, Ohio and last: Haplopappus foliosus -[2018-02-13T08:25:40.063] [INFO] cheese - inserting 1000 documents. first: Piedra Plat and last: Five Forks, North Carolina -[2018-02-13T08:25:40.064] [INFO] cheese - inserting 1000 documents. first: Universal Indicator Red and last: A1023 road -[2018-02-13T08:25:40.067] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:25:40.132] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:25:40.142] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:25:40.154] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:25:40.211] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:25:40.351] [INFO] cheese - inserting 1000 documents. first: Mutnedjmet (21st dynasty) and last: Category:Museums in Washington County, Nebraska -[2018-02-13T08:25:40.446] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:25:40.502] [INFO] cheese - inserting 1000 documents. first: Huntley and Palmer and last: Branimir Bajić -[2018-02-13T08:25:40.635] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:25:40.651] [INFO] cheese - inserting 1000 documents. first: Peach production in China and last: Impress service -[2018-02-13T08:25:40.702] [INFO] cheese - inserting 1000 documents. first: Category:20th-century deaths from tuberculosis and last: Wikipedia:WikiProject Spam/LinkReports/googletv.blogspot.de -[2018-02-13T08:25:40.720] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:25:40.741] [INFO] cheese - inserting 1000 documents. first: A1011 road and last: Morgenthau Lectures -[2018-02-13T08:25:40.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Good articles/Recruitment Centre/Recruiter Central/Archives/Domesticenginerd and last: Mathias Schamp -[2018-02-13T08:25:40.755] [INFO] cheese - inserting 1000 documents. first: Djelida and last: Alien vs. Predator series -[2018-02-13T08:25:40.783] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:25:40.818] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:25:40.909] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:25:40.913] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:25:41.047] [INFO] cheese - inserting 1000 documents. first: Liebe Ist Fur Alle Da and last: Coniston Railway -[2018-02-13T08:25:41.105] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:25:41.141] [INFO] cheese - inserting 1000 documents. first: Category:Works based on religious texts and last: Ucte vaikom -[2018-02-13T08:25:41.150] [INFO] cheese - inserting 1000 documents. first: Press and last: Gusto (album) -[2018-02-13T08:25:41.247] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:25:41.294] [INFO] cheese - inserting 1000 documents. first: Portal:Amphibians/Things you can do and last: Staret -[2018-02-13T08:25:41.305] [INFO] cheese - batch complete in: 1.998 secs -[2018-02-13T08:25:41.333] [INFO] cheese - inserting 1000 documents. first: JFK assassination Timeline and last: Labour Party League of Youth -[2018-02-13T08:25:41.350] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:41.360] [INFO] cheese - inserting 1000 documents. first: Székelys of Bukovina and last: Wikipedia:Miscellany for deletion/Wikipedia:Infobox standardisation -[2018-02-13T08:25:41.366] [INFO] cheese - inserting 1000 documents. first: A4232 road and last: Nicholas Mukomberanwa -[2018-02-13T08:25:41.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lakesidetrader.com and last: Pygora bourgoini -[2018-02-13T08:25:41.441] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:25:41.448] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:25:41.541] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:25:41.621] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:25:41.734] [INFO] cheese - inserting 1000 documents. first: Proragrotis longidens and last: Deepcar, South Yorkshire -[2018-02-13T08:25:41.781] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:25:41.901] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Mawza Exile and last: Gavan Moran -[2018-02-13T08:25:41.937] [INFO] cheese - inserting 1000 documents. first: James Cook Boys Technology High School and last: Dilatory motions and tactics -[2018-02-13T08:25:41.945] [INFO] cheese - inserting 1000 documents. first: Template:AFR lines and last: Martin Volke -[2018-02-13T08:25:42.004] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:25:42.040] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:25:42.075] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:25:42.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Latter Day Saint movement/Temples and last: Memorial Lake State Park -[2018-02-13T08:25:42.256] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:25:42.460] [INFO] cheese - inserting 1000 documents. first: Shoulder pad sign and last: Focke-Wulf Rochen -[2018-02-13T08:25:42.470] [INFO] cheese - inserting 1000 documents. first: Trade show display and last: Portal:History/Featured picture/March, 2008 -[2018-02-13T08:25:42.472] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/roboticsdesign.qc.ca and last: Brief Crossing -[2018-02-13T08:25:42.516] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:25:42.546] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:25:42.565] [INFO] cheese - inserting 1000 documents. first: File:FK Ala-Too Naryn Logo.png and last: Aleksey Grechkin -[2018-02-13T08:25:42.564] [INFO] cheese - inserting 1000 documents. first: Chercher la femme and last: Jim Hamilton (footballer, born 1976) -[2018-02-13T08:25:42.591] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:25:42.639] [INFO] cheese - inserting 1000 documents. first: HKU Students' Union and last: Golden Bamboo -[2018-02-13T08:25:42.664] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:25:42.922] [INFO] cheese - batch complete in: 1.377 secs -[2018-02-13T08:25:42.880] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:25:43.013] [INFO] cheese - inserting 1000 documents. first: Therain and last: Ruhen -[2018-02-13T08:25:43.103] [INFO] cheese - inserting 1000 documents. first: Boulogne Forest and last: Rudby -[2018-02-13T08:25:43.097] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:25:43.225] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:25:43.239] [INFO] cheese - inserting 1000 documents. first: L'Hopital's rule and last: 1921 in literature -[2018-02-13T08:25:43.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Johanstr and last: List of asteroids/173601–173700 -[2018-02-13T08:25:43.357] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:25:43.370] [INFO] cheese - batch complete in: 2.065 secs -[2018-02-13T08:25:43.416] [INFO] cheese - inserting 1000 documents. first: At the Beautiful Blue Danube and last: Yujiulu Anluochen -[2018-02-13T08:25:43.459] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T08:25:43.466] [INFO] cheese - inserting 1000 documents. first: Drill music and last: Category:1998–99 in Croatian football -[2018-02-13T08:25:43.648] [INFO] cheese - inserting 1000 documents. first: Shillingstone Station Project and last: Chinese Flora -[2018-02-13T08:25:43.661] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Iron County, Michigan and last: National Settlement Depository -[2018-02-13T08:25:43.759] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:25:43.772] [INFO] cheese - inserting 1000 documents. first: List of asteroids/173701–173800 and last: List of asteroids/95401–95500 -[2018-02-13T08:25:43.856] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:25:43.943] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:25:43.999] [INFO] cheese - batch complete in: 1.408 secs -[2018-02-13T08:25:44.123] [INFO] cheese - inserting 1000 documents. first: Karpos Opstina, Republic of Macedonia and last: Woodruff cutter -[2018-02-13T08:25:44.226] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:25:44.243] [INFO] cheese - inserting 1000 documents. first: Loo brush and last: Ruthin School -[2018-02-13T08:25:44.265] [INFO] cheese - inserting 1000 documents. first: File:Joni Ladies.jpg and last: Agamedes and Trophonius -[2018-02-13T08:25:44.301] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:25:44.338] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:25:44.533] [INFO] cheese - inserting 1000 documents. first: Toyota New Global Architecture and last: LA 607 -[2018-02-13T08:25:44.540] [INFO] cheese - inserting 1000 documents. first: An tAthair Padraig O Duinnin and last: Va Dire A L'Amour -[2018-02-13T08:25:44.560] [INFO] cheese - inserting 1000 documents. first: Algernon de Courcy Lyons and last: Onctylus punctiger -[2018-02-13T08:25:44.560] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:25:44.589] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:25:44.620] [INFO] cheese - inserting 1000 documents. first: Barton Holiday and last: Notre Dame Univerisity -[2018-02-13T08:25:44.622] [INFO] cheese - inserting 1000 documents. first: Liis Lemsalu and last: Template:Hugo Award Best Novel 1961-1980 -[2018-02-13T08:25:44.665] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:25:44.687] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:25:44.748] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:25:44.898] [INFO] cheese - inserting 1000 documents. first: Ramsar Convention wetland and last: Perotin the Great -[2018-02-13T08:25:44.927] [INFO] cheese - inserting 1000 documents. first: Groove FM and last: Louis Baruch -[2018-02-13T08:25:44.949] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T08:25:45.040] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:25:45.159] [INFO] cheese - inserting 1000 documents. first: Sacco Societies Regulatory Authority and last: Category:Suspected Wikipedia sockpuppets of 2.98.218.197 -[2018-02-13T08:25:45.186] [INFO] cheese - inserting 1000 documents. first: LA 611-10 and last: Jiangzhou (historical prefecture in Jiangxi) -[2018-02-13T08:25:45.252] [INFO] cheese - inserting 1000 documents. first: Template:Scottish railway lines and last: Jean Charles -[2018-02-13T08:25:45.275] [INFO] cheese - inserting 1000 documents. first: 1900 in literature and last: Welly Wanging -[2018-02-13T08:25:45.279] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:25:45.272] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:25:45.348] [INFO] cheese - inserting 1000 documents. first: Template:Hugo Award Best Novel 1946-1960 and last: Macapaar -[2018-02-13T08:25:45.389] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:25:45.413] [INFO] cheese - batch complete in: 2.042 secs -[2018-02-13T08:25:45.491] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:25:45.554] [INFO] cheese - inserting 1000 documents. first: Soviet submarine V-1 and last: Commencement at Central Connecticut State University -[2018-02-13T08:25:45.678] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:25:45.789] [INFO] cheese - inserting 1000 documents. first: Lancaster, SC mSA and last: Utah State Route 21 -[2018-02-13T08:25:45.873] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:25:45.916] [INFO] cheese - inserting 1000 documents. first: Qianzhou (in modern Jiangxi) and last: File:KDNA studios, Granger WA, September 2015.jpg -[2018-02-13T08:25:45.944] [INFO] cheese - inserting 1000 documents. first: Thomas Coleman Andrews and last: File:Rangoon1969SEAG.PNG -[2018-02-13T08:25:45.988] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Jimkio12 and last: Venus Palermo -[2018-02-13T08:25:46.077] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:25:46.084] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:25:46.099] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:25:46.343] [INFO] cheese - inserting 1000 documents. first: File:Australian 2c Coin.png and last: Ecumenical Patriarch Dionysius II of Constantinople -[2018-02-13T08:25:46.462] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:25:46.513] [INFO] cheese - inserting 1000 documents. first: Template:Hierodula-stub and last: Drosera bifida -[2018-02-13T08:25:46.584] [INFO] cheese - inserting 1000 documents. first: Turones and last: Basilica ta' Pinu -[2018-02-13T08:25:46.589] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:25:46.747] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:25:46.763] [INFO] cheese - inserting 1000 documents. first: Master Dinanath and last: Category:Youth organizations based in Arizona -[2018-02-13T08:25:46.889] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:25:46.956] [INFO] cheese - inserting 1000 documents. first: Category:1901 in Washington (state) and last: Centre-left politics -[2018-02-13T08:25:46.965] [INFO] cheese - inserting 1000 documents. first: Category:1743 in Africa and last: UAAP Season 33 men's basketball tournament -[2018-02-13T08:25:47.004] [INFO] cheese - inserting 1000 documents. first: Portal:Philosophy of science/Selected article/16 and last: File:Forgednote.jpg -[2018-02-13T08:25:47.047] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:25:47.056] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:25:47.109] [INFO] cheese - inserting 1000 documents. first: The Cosmopolitan of Las Vegas and last: Alaska's congressional district -[2018-02-13T08:25:47.135] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:25:47.271] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:25:47.311] [INFO] cheese - inserting 1000 documents. first: List of Portuguese and last: National Drug Code -[2018-02-13T08:25:47.352] [INFO] cheese - inserting 1000 documents. first: Extra-ocular muscles and last: Wellingsbüttel -[2018-02-13T08:25:47.450] [INFO] cheese - inserting 1000 documents. first: Exocrine pancreas cell and last: Chalonvillars -[2018-02-13T08:25:47.474] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:25:47.500] [INFO] cheese - batch complete in: 2.059 secs -[2018-02-13T08:25:47.532] [INFO] cheese - inserting 1000 documents. first: Elijah Mizrachi and last: River Beck -[2018-02-13T08:25:47.587] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:25:47.722] [INFO] cheese - inserting 1000 documents. first: Julie Rowe and last: Rung (Transformers) -[2018-02-13T08:25:47.767] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:25:47.888] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:25:47.979] [INFO] cheese - inserting 1000 documents. first: FR. LOURDINO BARRETO and last: British Overseas Airways Corporation Flight 777-A -[2018-02-13T08:25:47.981] [INFO] cheese - inserting 1000 documents. first: Category:Washington articles with to-do lists and last: Template:User Part Time Resident-SF -[2018-02-13T08:25:48.040] [INFO] cheese - inserting 1000 documents. first: Pullet's Offspring and last: Category:Schools in Chisago County, Minnesota -[2018-02-13T08:25:48.119] [INFO] cheese - inserting 1000 documents. first: Cheirophanes ligaminosa and last: Valérie Tétreault -[2018-02-13T08:25:48.112] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:25:48.164] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:25:48.186] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:25:48.316] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:25:48.421] [INFO] cheese - inserting 1000 documents. first: Goldeneye platform and last: Skechup -[2018-02-13T08:25:48.487] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:25:48.574] [INFO] cheese - inserting 1000 documents. first: Pieve di Santo Stefano, Pesaro and last: Anton Profes -[2018-02-13T08:25:48.642] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:25:48.767] [INFO] cheese - inserting 1000 documents. first: Dakis Joannou and last: LIRF -[2018-02-13T08:25:48.814] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Clay County, Minnesota and last: Elizabeth Templetown -[2018-02-13T08:25:48.829] [INFO] cheese - inserting 1000 documents. first: Kansas History (journal) and last: File:Borgo San Dalmazzo-Stemma.png -[2018-02-13T08:25:48.847] [INFO] cheese - inserting 1000 documents. first: Sticky barley and last: ITunes 9 -[2018-02-13T08:25:48.848] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:25:48.938] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:25:48.965] [INFO] cheese - inserting 1000 documents. first: Template:North America in topic and last: Abbey of the Park -[2018-02-13T08:25:48.948] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:25:49.041] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:25:49.092] [INFO] cheese - inserting 1000 documents. first: 2015 Open d'Orléans – Singles and last: Bemis Inc -[2018-02-13T08:25:49.130] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:25:49.159] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:25:49.183] [INFO] cheese - inserting 1000 documents. first: Portal:Books/Selected biography/10 and last: Gilia minor -[2018-02-13T08:25:49.297] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:25:49.430] [INFO] cheese - inserting 1000 documents. first: Young Marble Giants and last: Notable Irish buildings -[2018-02-13T08:25:49.453] [INFO] cheese - inserting 1000 documents. first: Martin Mesik and last: Wikipedia:Sockpuppet investigations/SquirtsDream -[2018-02-13T08:25:49.516] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:25:49.520] [INFO] cheese - inserting 1000 documents. first: GEICO commercials and last: Studio International -[2018-02-13T08:25:49.534] [INFO] cheese - batch complete in: 2.033 secs -[2018-02-13T08:25:49.580] [INFO] cheese - inserting 1000 documents. first: Super Bad (Lil Boosie Album) and last: Mario Bros. (video game) -[2018-02-13T08:25:49.602] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:25:49.725] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:25:49.735] [INFO] cheese - inserting 1000 documents. first: Barbara De Fina and last: Template:Wrestler-stub -[2018-02-13T08:25:49.745] [INFO] cheese - inserting 1000 documents. first: Category:Malaysian martial arts films and last: Max Hetherington -[2018-02-13T08:25:49.838] [INFO] cheese - inserting 1000 documents. first: Wilfredo Santa-Gómez and last: Lists of Jews associated with literature and journalism -[2018-02-13T08:25:49.854] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:25:49.860] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:25:49.887] [INFO] cheese - inserting 1000 documents. first: Dubai Gold Souk and last: Batken District -[2018-02-13T08:25:49.989] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:49.995] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:25:50.164] [INFO] cheese - inserting 1000 documents. first: 1766 in Denmark and last: New Horizons (The Sylvers Album) -[2018-02-13T08:25:50.184] [INFO] cheese - inserting 1000 documents. first: Template:Age in years, months, weeks, days and hours/doc and last: Jabo na kena? Jabo -[2018-02-13T08:25:50.238] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:25:50.301] [INFO] cheese - inserting 1000 documents. first: Matchday II and last: Presidents of Montenegro -[2018-02-13T08:25:50.312] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:25:50.354] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:25:50.482] [INFO] cheese - inserting 1000 documents. first: Macho (nickname) and last: Athletics at the 2015 African Games – Women's shot put -[2018-02-13T08:25:50.552] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:50.579] [INFO] cheese - inserting 1000 documents. first: Usuki (Neopets) and last: Georgia Route 38 Business -[2018-02-13T08:25:50.603] [INFO] cheese - inserting 1000 documents. first: Karman limit and last: Birdy Sweeney -[2018-02-13T08:25:50.679] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:25:50.695] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:25:50.829] [INFO] cheese - inserting 1000 documents. first: Category:Chemehuevi and last: Ch'ienmen -[2018-02-13T08:25:50.834] [INFO] cheese - inserting 1000 documents. first: Sa'did dynasty and last: Dumpas -[2018-02-13T08:25:50.901] [INFO] cheese - inserting 1000 documents. first: Pittsburgh mayoral election 1993 and last: Jones v. United States -[2018-02-13T08:25:50.899] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:25:50.933] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:25:50.985] [INFO] cheese - inserting 1000 documents. first: Category:Sports in Metro Detroit and last: Bealings -[2018-02-13T08:25:50.994] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:25:51.107] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:25:51.182] [INFO] cheese - inserting 1000 documents. first: Arandas (baseball club) and last: Stomopteryx cirrhocoma -[2018-02-13T08:25:51.254] [INFO] cheese - inserting 1000 documents. first: Byelorussian Soviet Socialist Republic and last: Honor Lost: Love and Death in Modern-Day Jordan -[2018-02-13T08:25:51.261] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:25:51.310] [INFO] cheese - inserting 1000 documents. first: Georgia State Highway 38 Business and last: Wikipedia:Articles for deletion/Soul-Crusher (song) -[2018-02-13T08:25:51.388] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:25:51.388] [INFO] cheese - batch complete in: 1.854 secs -[2018-02-13T08:25:51.491] [INFO] cheese - inserting 1000 documents. first: Chienmen and last: Gladstone Peak -[2018-02-13T08:25:51.577] [INFO] cheese - inserting 1000 documents. first: John Somers Dines and last: Southern Pacific 1293 -[2018-02-13T08:25:51.579] [INFO] cheese - inserting 1000 documents. first: Category:Breton masculine given names and last: Wikipedia:Reference desk/Archives/Language/2011 June 17 -[2018-02-13T08:25:51.597] [INFO] cheese - inserting 1000 documents. first: Escape From Cluster Prime and last: Wikipedia:Articles for deletion/Mechanical Fingerprint -[2018-02-13T08:25:51.625] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:25:51.640] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:25:51.696] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:25:51.724] [INFO] cheese - inserting 1000 documents. first: Category:American religion academics and last: Wikipedia:Articles for deletion/Last Name -[2018-02-13T08:25:51.767] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:25:51.929] [INFO] cheese - inserting 1000 documents. first: Stomopteryx credula and last: Edge of Paradise (disambiguation) -[2018-02-13T08:25:51.954] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:25:52.083] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:25:52.204] [INFO] cheese - inserting 1000 documents. first: George Knight and last: Wikipedia:Articles for deletion/Mike pinto -[2018-02-13T08:25:52.310] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:25:52.451] [INFO] cheese - inserting 1000 documents. first: Robert Mosley Master and last: Category:Little Ferry, New Jersey -[2018-02-13T08:25:52.508] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:25:52.521] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elinor McKenzie Shield and last: Gillmeria irakella -[2018-02-13T08:25:52.618] [INFO] cheese - inserting 1000 documents. first: Lawyer bird and last: Sergey Plakhtiy -[2018-02-13T08:25:52.633] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:25:52.721] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:25:52.727] [INFO] cheese - inserting 1000 documents. first: File:Bontnewyddstationsept2015.jpg and last: File:University seal.png -[2018-02-13T08:25:52.774] [INFO] cheese - inserting 1000 documents. first: Wentzel-Kramers-Brillouin approximation and last: Wawayanda Railroad -[2018-02-13T08:25:52.798] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:25:52.834] [INFO] cheese - inserting 1000 documents. first: Outline of Lebanon and last: Route 4 (Nagoya Expressway) -[2018-02-13T08:25:52.876] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:25:52.956] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:25:53.014] [INFO] cheese - inserting 1000 documents. first: Technomancer and last: Santa Catalina la Tinta -[2018-02-13T08:25:53.069] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:53.167] [INFO] cheese - inserting 1000 documents. first: New York Leader and last: The Man With Icy Eyes -[2018-02-13T08:25:53.194] [INFO] cheese - inserting 1000 documents. first: Pavel Vyskočil and last: Abdulbari Gadzhiev -[2018-02-13T08:25:53.205] [INFO] cheese - inserting 1000 documents. first: ActiveRisk and last: Dibang Valley Wildlife Sanctuary -[2018-02-13T08:25:53.238] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:25:53.280] [INFO] cheese - inserting 1000 documents. first: Carl Bengts and last: Ohio State Route 387 -[2018-02-13T08:25:53.285] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:25:53.297] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:25:53.330] [INFO] cheese - inserting 1000 documents. first: List of tunnels in the Netherlands and last: Einstein shift -[2018-02-13T08:25:53.334] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:25:53.492] [INFO] cheese - inserting 1000 documents. first: Orange County Railroad and last: Xamesike -[2018-02-13T08:25:53.526] [INFO] cheese - batch complete in: 2.138 secs -[2018-02-13T08:25:53.712] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:25:53.832] [INFO] cheese - inserting 1000 documents. first: St. Furseus and last: File:Redriders replica cover.jpg -[2018-02-13T08:25:53.839] [INFO] cheese - inserting 1000 documents. first: File:PleasantonRidge12.jpg and last: Template:Infobox National Paralympic Committee/doc -[2018-02-13T08:25:53.888] [INFO] cheese - inserting 1000 documents. first: Oscar S. Heiser and last: African Basketball Championship -[2018-02-13T08:25:53.902] [INFO] cheese - inserting 1000 documents. first: Category:Hellenistic Pontus and last: Rope and Skin -[2018-02-13T08:25:53.915] [INFO] cheese - inserting 1000 documents. first: International Motorcycle and Scooter Show and last: Sleagh Maith -[2018-02-13T08:25:53.931] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:25:53.967] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:25:53.995] [INFO] cheese - inserting 1000 documents. first: Category:Books by James Ellroy and last: Trysfjorden -[2018-02-13T08:25:54.064] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:25:54.068] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:25:54.128] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:25:54.172] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:25:54.446] [INFO] cheese - inserting 1000 documents. first: Severomoravský and last: Takutea -[2018-02-13T08:25:54.556] [INFO] cheese - inserting 1000 documents. first: Robert Peralta and last: Category:Houses in Brighton and Hove -[2018-02-13T08:25:54.557] [INFO] cheese - inserting 1000 documents. first: Template:1967 Richmond premiership players and last: Wikipedia:WikiProject Spam/LinkReports/ywamonestory.org -[2018-02-13T08:25:54.522] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:25:54.589] [INFO] cheese - inserting 1000 documents. first: Dan Oniroku nawa to hada and last: Fate: The Traitor Soul -[2018-02-13T08:25:54.606] [INFO] cheese - inserting 1000 documents. first: Category:2003 establishments in Qatar and last: W. Jeffrey Bolster -[2018-02-13T08:25:54.626] [INFO] cheese - inserting 1000 documents. first: Behavioral Biology and last: Wikipedia:Articles for deletion/Say the Time (2nd nomination) -[2018-02-13T08:25:54.635] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:54.678] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:25:54.683] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:25:54.689] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:25:54.708] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:25:54.858] [INFO] cheese - inserting 1000 documents. first: HARRY HOPKINSON (HARRY TORRANI) and last: The Haitian (Heroes) -[2018-02-13T08:25:54.936] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:25:55.110] [INFO] cheese - inserting 1000 documents. first: File:Champion 33.jpg and last: Johan Olof Nystroem -[2018-02-13T08:25:55.114] [INFO] cheese - inserting 1000 documents. first: American Journal of Medical Quality and last: Fruit pectin -[2018-02-13T08:25:55.142] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T08:25:55.155] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:25:55.178] [INFO] cheese - inserting 1000 documents. first: Leman International School and last: FMLS -[2018-02-13T08:25:55.207] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bodybalance and last: Bose-Einstein Statistics -[2018-02-13T08:25:55.222] [INFO] cheese - inserting 1000 documents. first: Clyde Tolson and last: Neanderthals Bandits and Farmers -[2018-02-13T08:25:55.231] [INFO] cheese - inserting 1000 documents. first: Kondana Caves and last: Pepita; or, the Girl with the Glass Eyes -[2018-02-13T08:25:55.232] [INFO] cheese - inserting 1000 documents. first: YWCA, Phyllis Weatley Branch and last: Mícheál Mac Suibhne -[2018-02-13T08:25:55.256] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:55.283] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:25:55.324] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:25:55.333] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:25:55.389] [INFO] cheese - batch complete in: 1.863 secs -[2018-02-13T08:25:55.465] [INFO] cheese - inserting 1000 documents. first: Elzbieta Pierzchala and last: Schonhausen (Mecklenburg) -[2018-02-13T08:25:55.522] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:25:55.563] [INFO] cheese - inserting 1000 documents. first: Paris-Beauvais-Tille Airport and last: Jimmy Dixon -[2018-02-13T08:25:55.653] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:25:55.769] [INFO] cheese - inserting 1000 documents. first: Forest Springs, California (disambiguation) and last: File:JuliavonAnstetten.jpg -[2018-02-13T08:25:55.808] [INFO] cheese - inserting 1000 documents. first: Category:Football at the All-Africa Games and last: The BBC Sessions (Ocean Colour Scene) -[2018-02-13T08:25:55.811] [INFO] cheese - inserting 1000 documents. first: Evin-Malmaison and last: Gonnersdorf (Eifel) -[2018-02-13T08:25:55.820] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:25:55.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Rhodotus/archive1 and last: Theodora of Alexandria -[2018-02-13T08:25:55.851] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:25:55.872] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:25:56.036] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:25:56.046] [INFO] cheese - inserting 1000 documents. first: Michael Barbiero and last: Advanced Data Guarding -[2018-02-13T08:25:56.178] [INFO] cheese - inserting 1000 documents. first: Category:1867 establishments in Bavaria and last: Manimaran -[2018-02-13T08:25:56.189] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:25:56.283] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:25:56.357] [INFO] cheese - inserting 1000 documents. first: MetroTen and last: Koos Ras -[2018-02-13T08:25:56.388] [INFO] cheese - inserting 1000 documents. first: D.I.E. and last: File:Teenage Animator Patrick Beardmore.jpg -[2018-02-13T08:25:56.470] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:25:56.540] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:25:56.583] [INFO] cheese - inserting 1000 documents. first: Template:WP Penn and last: Vyacheslav Vsevolodovich Ivanov -[2018-02-13T08:25:56.628] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Spring Valley, Nevada and last: Darenth Country Park -[2018-02-13T08:25:56.668] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:25:56.702] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:25:56.721] [INFO] cheese - inserting 1000 documents. first: David Frederick Cunningham and last: File:NotSinceCarrie.jpg -[2018-02-13T08:25:56.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/PHP Mirrors and last: File:JGBallard.jpg -[2018-02-13T08:25:56.812] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:25:56.858] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:25:56.948] [INFO] cheese - inserting 1000 documents. first: Frederick William Lillywhite and last: Distance (SS501 song) -[2018-02-13T08:25:56.952] [INFO] cheese - inserting 1000 documents. first: WBO and last: File:BostonBoston.jpg -[2018-02-13T08:25:56.998] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:25:57.003] [INFO] cheese - inserting 1000 documents. first: Borgo Press and last: File:EnglandCambridgeshireTrad.png -[2018-02-13T08:25:57.040] [INFO] cheese - batch complete in: 1.65 secs -[2018-02-13T08:25:57.074] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:25:57.119] [INFO] cheese - inserting 1000 documents. first: Adao Nunes Dornelles and last: Anales de Fisica -[2018-02-13T08:25:57.168] [INFO] cheese - inserting 1000 documents. first: Knickerbocker Holiday (film) and last: Template:WP Airport -[2018-02-13T08:25:57.176] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T08:25:57.217] [INFO] cheese - inserting 1000 documents. first: Get Stoned and last: Wikipedia:AVATARMAIN -[2018-02-13T08:25:57.259] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:25:57.283] [INFO] cheese - inserting 1000 documents. first: Category:840s BC births and last: Template:Country data Baroda State -[2018-02-13T08:25:57.284] [INFO] cheese - inserting 1000 documents. first: File:Le Livre du cœur d'amour épris1 edited.jpg and last: Arkansas Highway 308 Business -[2018-02-13T08:25:57.356] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:25:57.367] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:25:57.438] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:25:57.554] [INFO] cheese - inserting 1000 documents. first: Ilheus Jorge Amado Airport and last: 2008 V8 Supercars Manufacturers Challenge -[2018-02-13T08:25:57.572] [INFO] cheese - inserting 1000 documents. first: Category:NIFL Championship and last: File:Rylan-Zamprogna Dante-Lulu2013.jpg -[2018-02-13T08:25:57.605] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:25:57.661] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:25:57.771] [INFO] cheese - inserting 1000 documents. first: Dial (display) and last: Persephone (goddess) -[2018-02-13T08:25:57.918] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:25:57.941] [INFO] cheese - inserting 1000 documents. first: Category:People from Scornicești and last: 2005 Hyderabad Open -[2018-02-13T08:25:57.955] [INFO] cheese - inserting 1000 documents. first: Waterloo Road tram stop and last: Clown shoe -[2018-02-13T08:25:57.968] [INFO] cheese - inserting 1000 documents. first: Template:Wrathchild America and last: Ray Cat -[2018-02-13T08:25:58.043] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:25:58.070] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:25:58.113] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:25:58.160] [INFO] cheese - inserting 1000 documents. first: Order and Chaos Online and last: Mahindra Reva Electric Vehicles Private Limited -[2018-02-13T08:25:58.231] [INFO] cheese - inserting 1000 documents. first: Columbia Recording Studio and last: Interchanges '54 -[2018-02-13T08:25:58.266] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:25:58.272] [INFO] cheese - inserting 1000 documents. first: Day of the Barricades and last: Corte de’ Cortesi con Cignone -[2018-02-13T08:25:58.334] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:25:58.411] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:25:58.437] [INFO] cheese - inserting 1000 documents. first: Boston (album) and last: Celine Dion -[2018-02-13T08:25:58.539] [INFO] cheese - inserting 1000 documents. first: Safe Conducts Act 1414 and last: Abdel Hamid Badawi -[2018-02-13T08:25:58.553] [INFO] cheese - batch complete in: 1.513 secs -[2018-02-13T08:25:58.610] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:58.629] [INFO] cheese - inserting 1000 documents. first: Field dressing (bandage) and last: Wikipedia:Featured picture candidates/Autofellatio -[2018-02-13T08:25:58.664] [INFO] cheese - inserting 1000 documents. first: Yvon Côté and last: Carpentarian Pseudantechinus -[2018-02-13T08:25:58.712] [INFO] cheese - inserting 1000 documents. first: Ray cat and last: Amtrak America -[2018-02-13T08:25:58.734] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:25:58.739] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:25:58.788] [INFO] cheese - inserting 1000 documents. first: Halifax Explosion Memorial Sculpture and last: Carmelo Juan Giaquinta -[2018-02-13T08:25:58.847] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:25:58.874] [INFO] cheese - inserting 1000 documents. first: Category:1891–92 in Canadian ice hockey and last: Leptopelis uluguruensis -[2018-02-13T08:25:58.916] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Leigh Jason and last: Alojzy Gonzaga Zolkowski -[2018-02-13T08:25:58.989] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:25:59.107] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:25:59.084] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:25:59.309] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ashida Kim (7th nomination) and last: Jose Vicente -[2018-02-13T08:25:59.355] [INFO] cheese - inserting 1000 documents. first: San Juan Bautista, Suchitepequez and last: Suederdeich -[2018-02-13T08:25:59.372] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:25:59.388] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T08:25:59.431] [INFO] cheese - inserting 1000 documents. first: The War Nerd and last: Aldege "Baz" Bastien Memorial Award -[2018-02-13T08:25:59.438] [INFO] cheese - inserting 1000 documents. first: Template:United States vice presidential candidate selection and last: File:Ranviir the Marshal Poster.jpg -[2018-02-13T08:25:59.463] [INFO] cheese - inserting 1000 documents. first: Le Sacre du Sauvage and last: Category:Articles with empty sections from July 2013 -[2018-02-13T08:25:59.489] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:25:59.554] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:25:59.577] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:25:59.610] [INFO] cheese - inserting 1000 documents. first: The ship of state and last: Category:Rugby union fullbacks -[2018-02-13T08:25:59.614] [INFO] cheese - inserting 1000 documents. first: Vagli di Sotto and last: Category:Local museums in Hertfordshire -[2018-02-13T08:25:59.682] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:59.715] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:25:59.753] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Salt Lake City and last: Rengsjobilen -[2018-02-13T08:25:59.826] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T08:25:59.911] [INFO] cheese - inserting 1000 documents. first: P = BPP problem and last: Lady GaGa The Fame:Monster -[2018-02-13T08:26:00.049] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:26:00.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lake Alice Hospital and last: Cronian -[2018-02-13T08:26:00.126] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia introduction cleanup from July 2013 and last: Artur Kopytin -[2018-02-13T08:26:00.142] [INFO] cheese - inserting 1000 documents. first: Wahlstroem & Widstrand and last: Teo, A Coruna -[2018-02-13T08:26:00.145] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:26:00.225] [INFO] cheese - inserting 1000 documents. first: Robert E. Connick and last: Emperor Akihito of Japan -[2018-02-13T08:26:00.265] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T08:26:00.283] [INFO] cheese - inserting 1000 documents. first: Ikka Singh and last: Template:Sports icon 2 -[2018-02-13T08:26:00.299] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:26:00.328] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Ysgol y Strade and last: Medical grafting -[2018-02-13T08:26:00.429] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:26:00.445] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:26:00.463] [INFO] cheese - batch complete in: 1.91 secs -[2018-02-13T08:26:00.561] [INFO] cheese - inserting 1000 documents. first: Silent call and last: Category:Law enforcement in Kenya -[2018-02-13T08:26:00.590] [INFO] cheese - inserting 1000 documents. first: Szoelloesy and last: 洛陽 -[2018-02-13T08:26:00.603] [INFO] cheese - inserting 1000 documents. first: Paraibinha River and last: Notre Dame Fighting Irish football (1950-1959) -[2018-02-13T08:26:00.632] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T08:26:00.646] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:26:00.667] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:26:00.903] [INFO] cheese - inserting 1000 documents. first: Śēkh Mujibur Rahmān and last: Zsa Zsa Zaturnnah -[2018-02-13T08:26:00.909] [INFO] cheese - inserting 1000 documents. first: Stilon Gorzów and last: Victor Tiedjens -[2018-02-13T08:26:00.918] [INFO] cheese - inserting 1000 documents. first: Frere Jacques in popular culture and last: Crossle Car Company -[2018-02-13T08:26:00.939] [INFO] cheese - inserting 1000 documents. first: Eagle-Picher Industries and last: All Souls' Church Sutton Green -[2018-02-13T08:26:00.961] [INFO] cheese - inserting 1000 documents. first: Media of Libya and last: Ebonite International -[2018-02-13T08:26:00.993] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:26:01.005] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T08:26:01.038] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:26:01.076] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:26:01.144] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:26:01.291] [INFO] cheese - inserting 1000 documents. first: Private Parriage and last: Category:Venezuelan people of Argentine descent -[2018-02-13T08:26:01.531] [INFO] cheese - inserting 1000 documents. first: Spring overshoot and last: Category:512 deaths -[2018-02-13T08:26:01.556] [INFO] cheese - inserting 1000 documents. first: Zaoldyeck Family and last: Truemmerliteratur -[2018-02-13T08:26:01.555] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:26:01.628] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:26:01.649] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:26:01.731] [INFO] cheese - inserting 1000 documents. first: 1927-28 Netherlands Football League Championship and last: 1977 IBF World Championships - Mixed Doubles -[2018-02-13T08:26:01.790] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:26:01.913] [INFO] cheese - inserting 1000 documents. first: Tatyarao Lahane and last: Offrejoie -[2018-02-13T08:26:01.978] [INFO] cheese - inserting 1000 documents. first: Dumlupinar (District), Kutahya and last: Category:Economy of New Orleans -[2018-02-13T08:26:02.035] [INFO] cheese - inserting 1000 documents. first: Infinite Vulcan and last: Jungle Operations Training Center -[2018-02-13T08:26:02.055] [INFO] cheese - inserting 1000 documents. first: Robert Mackenzie Beverley and last: Salt (sodium chloride) -[2018-02-13T08:26:02.054] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:26:02.067] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T08:26:02.171] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:26:02.214] [INFO] cheese - inserting 1000 documents. first: 1977 IBF World Championships - Women's Doubles and last: 1995 World Championships in Athletics - Women's 1500 metres -[2018-02-13T08:26:02.237] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:26:02.333] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:26:02.405] [INFO] cheese - inserting 1000 documents. first: Quanta Plus and last: Caricature -[2018-02-13T08:26:02.445] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Tilaran and last: Bach Ho -[2018-02-13T08:26:02.482] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T08:26:02.492] [INFO] cheese - inserting 1000 documents. first: Suzhou Sports Center and last: File:The graph y = x√2.png -[2018-02-13T08:26:02.521] [INFO] cheese - inserting 1000 documents. first: Shaggy Man and last: Cypriot flag -[2018-02-13T08:26:02.539] [INFO] cheese - batch complete in: 2.076 secs -[2018-02-13T08:26:02.659] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:26:02.756] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:26:02.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mylanviewer.com and last: 2002 European Athletics Indoor Championships - Men's 60 metres -[2018-02-13T08:26:02.832] [INFO] cheese - inserting 1000 documents. first: File:Logotype of Offrejoie.jpg and last: Bojan Mijailović (footballer, born 1995) -[2018-02-13T08:26:02.837] [INFO] cheese - inserting 1000 documents. first: Ostgoeta nation (Uppsala) and last: FK Zlatibor Cajetina -[2018-02-13T08:26:02.859] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T08:26:02.872] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:26:02.898] [INFO] cheese - inserting 1000 documents. first: Leslie H. Saunders and last: Eberswalde (Martian crater) -[2018-02-13T08:26:02.913] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:26:02.997] [INFO] cheese - inserting 1000 documents. first: Category:Soft rock and last: JetBrains -[2018-02-13T08:26:02.991] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:03.201] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:26:03.253] [INFO] cheese - inserting 1000 documents. first: Category:Egyptian emigrants to Canada and last: 2007-08 TFF First League -[2018-02-13T08:26:03.355] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:26:03.362] [INFO] cheese - inserting 1000 documents. first: Twentysix-spotted potato ladybird and last: Kingdom of the East Angles -[2018-02-13T08:26:03.571] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:26:03.741] [INFO] cheese - inserting 1000 documents. first: V-Powerdeg and last: Val Schier (Cairns Mayor) -[2018-02-13T08:26:03.764] [INFO] cheese - inserting 1000 documents. first: Batman smells and last: Philippine-related topics -[2018-02-13T08:26:03.785] [INFO] cheese - inserting 1000 documents. first: Augustin Tschinkel and last: Soil density -[2018-02-13T08:26:03.805] [INFO] cheese - inserting 1000 documents. first: 2007-08 Torquay United F.C. season and last: Forest Springs, Nevada County, California -[2018-02-13T08:26:03.854] [INFO] cheese - inserting 1000 documents. first: Sir John Lauder, 1st Baronet and last: Neon-22 -[2018-02-13T08:26:03.859] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:26:03.942] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:26:03.955] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:26:03.973] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:26:04.035] [INFO] cheese - inserting 1000 documents. first: File:American Girl Bonnie McKee.jpg and last: Gcloud -[2018-02-13T08:26:04.050] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:26:04.304] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:26:04.379] [INFO] cheese - inserting 1000 documents. first: Kevin Byrne (Cairns Mayor) and last: Linderud Videregaende Skole -[2018-02-13T08:26:04.468] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:26:04.561] [INFO] cheese - inserting 1000 documents. first: 2010 World Weightlifting Championships - Men's 94 kg and last: Category:Mexican emigrants to Uruguay -[2018-02-13T08:26:04.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RoomSaver and last: Index of Windows games (Y) -[2018-02-13T08:26:04.664] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:26:04.735] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T08:26:04.768] [INFO] cheese - inserting 1000 documents. first: Stephano and last: Zeppelin bend -[2018-02-13T08:26:04.809] [INFO] cheese - inserting 1000 documents. first: Joseph-Elie Thibaudeau and last: Munster, Bavaria -[2018-02-13T08:26:04.850] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T08:26:04.878] [INFO] cheese - inserting 1000 documents. first: Tidal Wave (1943) and last: Susumanskii -[2018-02-13T08:26:04.896] [INFO] cheese - inserting 1000 documents. first: Did You Ever Have a Family and last: Chowilla floodplain -[2018-02-13T08:26:04.955] [INFO] cheese - batch complete in: 2.416 secs -[2018-02-13T08:26:04.980] [INFO] cheese - inserting 1000 documents. first: Chromium(III) oxide and last: 1930 in American television -[2018-02-13T08:26:05.003] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:26:05.019] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:26:05.086] [INFO] cheese - inserting 1000 documents. first: GCloud and last: Wikipedia:WikiProject Spam/Local/sculpturesbythesea.com.au -[2018-02-13T08:26:05.093] [INFO] cheese - inserting 1000 documents. first: Category:Apostle Islands National Lakeshore and last: Athletics at the 1924 Summer Olympics - Men's 3000 metres team race -[2018-02-13T08:26:05.101] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:26:05.175] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:26:05.204] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:26:05.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Anglicanism articles by quality/14 and last: IPA Extensions unicode block -[2018-02-13T08:26:05.469] [INFO] cheese - inserting 1000 documents. first: Lonsoeraefi and last: Petin -[2018-02-13T08:26:05.507] [INFO] cheese - inserting 1000 documents. first: Category:Sierra Leonean emigrants to the United States and last: Cycling at the 2010 Summer Youth Olympics - Girls' cross country -[2018-02-13T08:26:05.529] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:26:05.555] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:05.588] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:26:05.680] [INFO] cheese - inserting 1000 documents. first: Karuppu Panam (1964 film) and last: James Hesketh Biggs -[2018-02-13T08:26:05.839] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:26:05.854] [INFO] cheese - inserting 1000 documents. first: Ray Campbell (ice hockey) and last: Wikipedia:Articles for deletion/Géza von Neményi -[2018-02-13T08:26:05.966] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:26:06.010] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2010 Summer Youth Olympics - Girls' time trial and last: List of Scotland international footballers (1 - 4 caps) -[2018-02-13T08:26:06.082] [INFO] cheese - inserting 1000 documents. first: Grażyna Osmańska and last: File:SkudinaEkaterina5.jpg -[2018-02-13T08:26:06.082] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T08:26:06.092] [INFO] cheese - inserting 1000 documents. first: パラセクト and last: Confessions, part 2 -[2018-02-13T08:26:06.154] [INFO] cheese - inserting 1000 documents. first: Second Battle of Zuerich and last: V337 Car -[2018-02-13T08:26:06.213] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:26:06.263] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:26:06.275] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:26:06.455] [INFO] cheese - inserting 1000 documents. first: Latin Extended-B unicode block and last: Category:Permanent Secretaries of the Ministry of Technology -[2018-02-13T08:26:06.604] [INFO] cheese - inserting 1000 documents. first: List of Scotland international footballers (5 - 19 caps) and last: List of minor planets/166801-166900 -[2018-02-13T08:26:06.639] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:26:06.670] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:26:06.817] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2015/44/picture/caption and last: Jerry Dixon (actor) -[2018-02-13T08:26:06.818] [INFO] cheese - inserting 1000 documents. first: Water vapor feedback and last: Lordship of Chios -[2018-02-13T08:26:06.850] [INFO] cheese - inserting 1000 documents. first: Operation Decisive and last: Jean-Bertrand-Leon Foucault -[2018-02-13T08:26:06.984] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:26:06.994] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:26:07.019] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:26:07.137] [INFO] cheese - inserting 1000 documents. first: Double bowline and last: Thoughtpolice -[2018-02-13T08:26:07.183] [INFO] cheese - inserting 1000 documents. first: Patsy Kinsey and last: SMT 4 -[2018-02-13T08:26:07.288] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:26:07.330] [INFO] cheese - batch complete in: 2.375 secs -[2018-02-13T08:26:07.354] [INFO] cheese - inserting 1000 documents. first: Confessions Part 2 and last: File:Electric City of Music Instructor.jpg -[2018-02-13T08:26:07.384] [INFO] cheese - inserting 1000 documents. first: List of minor planets/166901-167000 and last: Template:TonyAward BestAuthor -[2018-02-13T08:26:07.459] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:26:07.487] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:26:07.546] [INFO] cheese - inserting 1000 documents. first: Villa de Sonador and last: Al Jenkins (EastEnders) -[2018-02-13T08:26:07.557] [INFO] cheese - inserting 1000 documents. first: Ocotlan Zapotec language and last: Froetuna -[2018-02-13T08:26:07.630] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:26:07.669] [INFO] cheese - inserting 1000 documents. first: Maya Station and last: Food stamp (disambiguation) -[2018-02-13T08:26:07.696] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:26:07.774] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:26:07.804] [INFO] cheese - inserting 1000 documents. first: Moses Najara I and last: State Route 528 (Ohio) -[2018-02-13T08:26:07.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/theusfl.com and last: Gerdkani-ye Olya -[2018-02-13T08:26:07.939] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:26:08.014] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:26:08.071] [INFO] cheese - inserting 1000 documents. first: Church of Our Lady in front of Tyn and last: IrisVision -[2018-02-13T08:26:08.130] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:26:08.163] [INFO] cheese - inserting 1000 documents. first: Jaswinder Singh and last: Georgetown, New Jersey -[2018-02-13T08:26:08.268] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:08.326] [INFO] cheese - inserting 1000 documents. first: Emperor Ichijo of Japan and last: Elliot Goldenthal -[2018-02-13T08:26:08.476] [INFO] cheese - inserting 1000 documents. first: Shearson Loeb Rhoades and last: Rosstown Railway Heritage Trail -[2018-02-13T08:26:08.480] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:26:08.485] [INFO] cheese - inserting 1000 documents. first: Frederic Jones (cricketer) and last: Phyllodesmium lizardense -[2018-02-13T08:26:08.547] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:26:08.602] [INFO] cheese - inserting 1000 documents. first: AquaMan and last: Rocket sauce -[2018-02-13T08:26:08.605] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:26:08.677] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:26:08.910] [INFO] cheese - inserting 1000 documents. first: List of minor planets/82701-82800 and last: HanAhReum -[2018-02-13T08:26:09.024] [INFO] cheese - inserting 1000 documents. first: Girdehkani Bala and last: Munson (surname) -[2018-02-13T08:26:09.056] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:26:09.093] [INFO] cheese - inserting 1000 documents. first: Viscardi and last: Hermis Moutardier -[2018-02-13T08:26:09.215] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T08:26:09.335] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:26:09.441] [INFO] cheese - inserting 1000 documents. first: Theocrastus Bombastus von Hohenheim and last: Colouring algorithm -[2018-02-13T08:26:09.481] [INFO] cheese - inserting 1000 documents. first: John McLean (US Associate Justice) and last: Forest school (education) -[2018-02-13T08:26:09.589] [INFO] cheese - inserting 1000 documents. first: Sirius satellite radio at the glen and last: Mario Frick (politician) -[2018-02-13T08:26:09.591] [INFO] cheese - inserting 1000 documents. first: Ben Loft and last: Cyprus turpentine -[2018-02-13T08:26:09.605] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:26:09.670] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:26:09.735] [INFO] cheese - inserting 1000 documents. first: 1759 in United States history and last: Portal:Maryland/On this day/August 24 -[2018-02-13T08:26:09.758] [INFO] cheese - batch complete in: 1.278 secs -[2018-02-13T08:26:09.780] [INFO] cheese - batch complete in: 2.449 secs -[2018-02-13T08:26:09.784] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:26:09.857] [INFO] cheese - inserting 1000 documents. first: Christopher Milo and last: Kostroga (PKP station) -[2018-02-13T08:26:09.966] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:26:10.103] [INFO] cheese - inserting 1000 documents. first: Universal Dictionary and last: Kuitun, Xinjiang -[2018-02-13T08:26:10.189] [INFO] cheese - inserting 1000 documents. first: Dorze language and last: Template:POTD protected/2008-03-19 -[2018-02-13T08:26:10.233] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:26:10.288] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:26:10.446] [INFO] cheese - inserting 1000 documents. first: Total Divas (season 5) and last: Wikipedia:WikiProject Spam/LinkReports/deordevandenacht.nl -[2018-02-13T08:26:10.476] [INFO] cheese - inserting 1000 documents. first: Crank It Up (Ashley Tisdale song) and last: C8H5Cl3O3 -[2018-02-13T08:26:10.486] [INFO] cheese - inserting 1000 documents. first: Shirawaka Tennō and last: The Crimson White -[2018-02-13T08:26:10.593] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:26:10.601] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:26:10.630] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:26:10.698] [INFO] cheese - inserting 1000 documents. first: 1st century in poetry and last: Category:2005 short stories -[2018-02-13T08:26:10.792] [INFO] cheese - inserting 1000 documents. first: Navigation Primary School and last: Eckeroe Linjen -[2018-02-13T08:26:10.838] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:26:10.952] [INFO] cheese - inserting 1000 documents. first: Bhavana (actor) and last: File:Traves-Stemma.png -[2018-02-13T08:26:10.956] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:26:11.042] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:26:11.327] [INFO] cheese - inserting 1000 documents. first: Cypriot Young Scientists ISCHYS (ISKhUS) and last: Felicien Chapuis -[2018-02-13T08:26:11.328] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/inventingelliot.googlepages.com and last: Dooryard plantain -[2018-02-13T08:26:11.335] [INFO] cheese - inserting 1000 documents. first: Alexander Alexandrovich Volkov (footballer) and last: Le Bon (disambiguation) -[2018-02-13T08:26:11.372] [INFO] cheese - inserting 1000 documents. first: Shaman King: Master of Spirits 2 and last: Matar Marka Al Dawli -[2018-02-13T08:26:11.379] [INFO] cheese - inserting 1000 documents. first: Template:Infobox rugby biography/sandbox3 and last: Portal:Iranian Azerbaijan/Selected picture/1 -[2018-02-13T08:26:11.437] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:26:11.466] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:26:11.500] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:26:11.535] [INFO] cheese - inserting 1000 documents. first: Qalat Shmemis and last: Weeverfish -[2018-02-13T08:26:11.497] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:26:11.612] [INFO] cheese - batch complete in: 1.379 secs -[2018-02-13T08:26:11.668] [INFO] cheese - inserting 1000 documents. first: Wire-and-string puzzle and last: Plateau (disambiguation) -[2018-02-13T08:26:11.721] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:26:11.858] [INFO] cheese - inserting 1000 documents. first: Im Schatten der Arzte and last: (SAT, e-UNSAT) -[2018-02-13T08:26:11.883] [INFO] cheese - batch complete in: 2.102 secs -[2018-02-13T08:26:11.962] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:26:12.103] [INFO] cheese - inserting 1000 documents. first: Category:Townships in Kittson County, Minnesota and last: Spectrum Saloon Car (SSC) -[2018-02-13T08:26:12.283] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:26:12.407] [INFO] cheese - inserting 1000 documents. first: Lamb's foot and last: Alias Pink Puzz -[2018-02-13T08:26:12.423] [INFO] cheese - inserting 1000 documents. first: Wing of Wor and last: Pan de Azucar National Park -[2018-02-13T08:26:12.460] [INFO] cheese - inserting 1000 documents. first: Bon Accord (disambiguation) and last: Wikipedia:Articles for deletion/British Non-Regional Pronunciation -[2018-02-13T08:26:12.477] [INFO] cheese - inserting 1000 documents. first: Jason Farradane award and last: Trzycież -[2018-02-13T08:26:12.547] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:26:12.552] [INFO] cheese - inserting 1000 documents. first: Warriors (Super editions) and last: Category:Orders, decorations, and medals of Lippe -[2018-02-13T08:26:12.594] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:26:12.685] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:26:12.686] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:26:12.828] [INFO] cheese - batch complete in: 1.215 secs -[2018-02-13T08:26:13.034] [INFO] cheese - inserting 1000 documents. first: Varttikakara and last: Template:MassEffect -[2018-02-13T08:26:13.143] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:26:13.255] [INFO] cheese - inserting 1000 documents. first: Prague Bandurist Capella and last: Le Pâquier FR -[2018-02-13T08:26:13.325] [INFO] cheese - inserting 1000 documents. first: FAR 23 and last: Dubai Debates -[2018-02-13T08:26:13.338] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:26:13.354] [INFO] cheese - inserting 1000 documents. first: Roman miles and last: Peter Gould (professor) -[2018-02-13T08:26:13.500] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:26:13.519] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:26:13.616] [INFO] cheese - inserting 1000 documents. first: Jose Maria Morelos Pavon and last: Powell Carter -[2018-02-13T08:26:13.634] [INFO] cheese - inserting 1000 documents. first: Nadiya Hussain and last: Wikipedia:WikiProject Spam/LinkReports/iris-solutions.ca -[2018-02-13T08:26:13.683] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:26:13.799] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:26:13.830] [INFO] cheese - inserting 1000 documents. first: Trachinidae and last: José Gaspar -[2018-02-13T08:26:13.838] [INFO] cheese - inserting 1000 documents. first: Petaurus australis and last: Subingen SO -[2018-02-13T08:26:13.862] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2008 Summer Paralympics – Men's team sprint (LC1–4 CP3/4) and last: Farnworth Grammar School -[2018-02-13T08:26:13.956] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:26:14.014] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:26:14.048] [INFO] cheese - batch complete in: 2.326 secs -[2018-02-13T08:26:14.248] [INFO] cheese - inserting 1000 documents. first: John of Lancaster, 1st Duke of Bedford and last: Abducens nerve -[2018-02-13T08:26:14.258] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Little League articles by quality and last: Tamalitos -[2018-02-13T08:26:14.267] [INFO] cheese - inserting 1000 documents. first: Pope Pius XII (Cardinal Cushing) and last: Category:Kim clans -[2018-02-13T08:26:14.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2008 March 18 and last: G N R lies -[2018-02-13T08:26:14.287] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T08:26:14.297] [INFO] cheese - inserting 1000 documents. first: Roger Simon (journalist) and last: Spain in the Junior Eurovision Song Contest 2003 -[2018-02-13T08:26:14.341] [INFO] cheese - batch complete in: 2.458 secs -[2018-02-13T08:26:14.341] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:26:14.359] [INFO] cheese - inserting 1000 documents. first: Michael Smith (Irish Journalist and Environmentalist) and last: USS Brontes -[2018-02-13T08:26:14.359] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:26:14.463] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:26:14.503] [INFO] cheese - inserting 1000 documents. first: Flagrant délit and last: St. John Health System Detroit Hospitals -[2018-02-13T08:26:14.506] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:26:14.615] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:26:14.637] [INFO] cheese - inserting 1000 documents. first: Hebrew Calander and last: Portal:Trains/Did you know/September 2005 -[2018-02-13T08:26:14.680] [INFO] cheese - inserting 1000 documents. first: Truttikon ZH and last: Fulleda -[2018-02-13T08:26:14.716] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:26:14.736] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:26:14.866] [INFO] cheese - inserting 1000 documents. first: Template:Updateme and last: Japanese Twenty-First Army -[2018-02-13T08:26:14.869] [INFO] cheese - inserting 1000 documents. first: 1992 Rugby League State of Origin series and last: Objects in Mirror Are Closer Than They Appear -[2018-02-13T08:26:14.918] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:26:14.948] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:26:14.974] [INFO] cheese - inserting 1000 documents. first: Category:People from Vilkaviškis and last: File:Evolution (Nektar album).jpg -[2018-02-13T08:26:15.036] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:26:15.201] [INFO] cheese - inserting 1000 documents. first: Delplace and last: Department of Ayurveda, Yoga and Naturopathy, Unani, Siddha and Homoeopathy -[2018-02-13T08:26:15.296] [INFO] cheese - inserting 1000 documents. first: Blasphemy (album) and last: General-feldwachtmeister -[2018-02-13T08:26:15.329] [INFO] cheese - inserting 1000 documents. first: Shuten-dōji (disambiguation) and last: Ameca -[2018-02-13T08:26:15.339] [INFO] cheese - inserting 1000 documents. first: Ibrahim Mousawi and last: Commercial kitchens -[2018-02-13T08:26:15.339] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:26:15.386] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:26:15.438] [INFO] cheese - inserting 1000 documents. first: Trans-Australian Railway and last: Template:Infobox Philippine region -[2018-02-13T08:26:15.455] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:26:15.459] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:26:15.518] [INFO] cheese - inserting 1000 documents. first: WYRC-FM and last: Portal:Trinidad and Tobago/Selected panorama/2 -[2018-02-13T08:26:15.599] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:26:15.660] [INFO] cheese - inserting 1000 documents. first: Valkjaervi and last: Boldon James -[2018-02-13T08:26:15.685] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:26:15.741] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:26:15.772] [INFO] cheese - inserting 1000 documents. first: Royal Botanical Expedition of the Nuevo Reyno de Granada and last: R.M. White -[2018-02-13T08:26:15.806] [INFO] cheese - inserting 1000 documents. first: Victory in Europe Day and last: The Institute of Technology at Linköping University -[2018-02-13T08:26:15.881] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:26:15.966] [INFO] cheese - batch complete in: 1.625 secs -[2018-02-13T08:26:16.069] [INFO] cheese - inserting 1000 documents. first: Yamagata han and last: Aicard -[2018-02-13T08:26:16.107] [INFO] cheese - inserting 1000 documents. first: Category:Fishery protection vessels and last: Ordinariaat voor buitenlandse studenten in belgië -[2018-02-13T08:26:16.147] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:26:16.184] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:26:16.190] [INFO] cheese - inserting 1000 documents. first: Lindstroem theorem and last: San Jose de Mayo -[2018-02-13T08:26:16.240] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:26:16.361] [INFO] cheese - inserting 1000 documents. first: Rogue Legacy and last: File:KTP-Basket logo.png -[2018-02-13T08:26:16.411] [INFO] cheese - inserting 1000 documents. first: Wilder Cemetery and last: Template:Infobox province -[2018-02-13T08:26:16.477] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:26:16.524] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:26:16.571] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space Vector Inducer and last: List of British fascist parties -[2018-02-13T08:26:16.604] [INFO] cheese - inserting 1000 documents. first: Emmetten, Switzerland and last: Niederstocken, Switzerland -[2018-02-13T08:26:16.643] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:26:16.686] [INFO] cheese - inserting 1000 documents. first: Shay Kelly and last: Kids 4 Afghan Kids -[2018-02-13T08:26:16.735] [INFO] cheese - inserting 1000 documents. first: Category:Dukes of Schleswig-Holstein-Sonderburg-Plon-Rethwisch and last: Nirmala Convent School -[2018-02-13T08:26:16.737] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:26:16.758] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:26:16.865] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:26:16.999] [INFO] cheese - inserting 1000 documents. first: Vladimir Veryovkin and last: Balcerzak -[2018-02-13T08:26:17.083] [INFO] cheese - inserting 1000 documents. first: Niederurnen, Switzerland and last: Collombey Muraz -[2018-02-13T08:26:17.111] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:26:17.125] [INFO] cheese - inserting 1000 documents. first: Sankt Veit im Muhlkreis and last: Kaelvesta air disaster -[2018-02-13T08:26:17.179] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:26:17.184] [INFO] cheese - inserting 1000 documents. first: Eduardo Mezzacapo and last: File:Mystery Diners logo.jpg -[2018-02-13T08:26:17.236] [INFO] cheese - inserting 1000 documents. first: Cocteleria and last: Portuguese Liga 1935–36 -[2018-02-13T08:26:17.243] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:26:17.286] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:17.333] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:17.549] [INFO] cheese - inserting 1000 documents. first: Naviauxella and last: City'US Târgu Mures -[2018-02-13T08:26:17.557] [INFO] cheese - inserting 1000 documents. first: Moku o Lo`e Island and last: Eric Meyer (Professor) -[2018-02-13T08:26:17.597] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T08:26:17.648] [INFO] cheese - inserting 1000 documents. first: Sogut and last: American Law Institute -[2018-02-13T08:26:17.652] [INFO] cheese - inserting 1000 documents. first: Pierre Jeanneret and last: Applecross -[2018-02-13T08:26:17.662] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:26:17.747] [INFO] cheese - inserting 1000 documents. first: Collonge Bellerive and last: St-Moritz -[2018-02-13T08:26:17.760] [INFO] cheese - inserting 1000 documents. first: Danny pudi and last: MediaTek Camera Application -[2018-02-13T08:26:17.793] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:26:17.835] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:26:17.837] [INFO] cheese - batch complete in: 1.871 secs -[2018-02-13T08:26:17.840] [INFO] cheese - inserting 1000 documents. first: Hero of Tomorrow and last: Template:Location map Japan Tokyo -[2018-02-13T08:26:17.893] [INFO] cheese - inserting 1000 documents. first: Teatro metropolitan and last: Alpha High School -[2018-02-13T08:26:17.889] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:26:17.968] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:26:18.026] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:26:18.049] [INFO] cheese - inserting 1000 documents. first: SDKU-DS and last: Deluge (novel) -[2018-02-13T08:26:18.113] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:26:18.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Armorik and last: Nothoapiole -[2018-02-13T08:26:18.535] [INFO] cheese - inserting 1000 documents. first: Twee Redfin and last: HPA-1a -[2018-02-13T08:26:18.573] [INFO] cheese - inserting 1000 documents. first: St-Peter, Switzerland and last: Parliamentary Secretaries of the 18th Dáil -[2018-02-13T08:26:18.602] [INFO] cheese - inserting 1000 documents. first: Prince Kalman and last: Jean Baptiste Edouard Bornet -[2018-02-13T08:26:18.612] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:26:18.618] [INFO] cheese - inserting 1000 documents. first: List of schools in Sunshine Coast, Queensland and last: Santa Fe Catholic High School (Lakeland, Florida) -[2018-02-13T08:26:18.655] [INFO] cheese - inserting 1000 documents. first: HW Gourlay and last: American Made (album) -[2018-02-13T08:26:18.661] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:26:18.726] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:26:18.789] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:18.841] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T08:26:18.905] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:26:18.961] [INFO] cheese - inserting 1000 documents. first: Dutch ship Eendracht and last: Tantalus Theatre Group -[2018-02-13T08:26:19.143] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:26:19.328] [INFO] cheese - inserting 1000 documents. first: 17 a-hydroxylase and last: College Jean-Eudes -[2018-02-13T08:26:19.388] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:26:19.583] [INFO] cheese - inserting 1000 documents. first: Maria Victoria Casares y Perez and last: 2015 China Open Superseries Premier -[2018-02-13T08:26:19.635] [INFO] cheese - inserting 1000 documents. first: Svenska Seriefraemjandet and last: Template:TSN AL Comeback Players of the Year -[2018-02-13T08:26:19.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bioregional decolonization and last: Jung Woo -[2018-02-13T08:26:19.641] [INFO] cheese - inserting 1000 documents. first: Ikadotoi and last: Kypsela -[2018-02-13T08:26:19.653] [INFO] cheese - inserting 1000 documents. first: List of surviving drafts and copies of the United States Declaration of Independence and last: Polistichus -[2018-02-13T08:26:19.681] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T08:26:19.685] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:26:19.741] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:26:19.808] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:26:19.831] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:26:19.840] [INFO] cheese - inserting 1000 documents. first: Edward L. Wright and last: Ibrahim Meite -[2018-02-13T08:26:19.941] [INFO] cheese - inserting 1000 documents. first: Corpus Juris Secundum and last: Christopher North (composer) -[2018-02-13T08:26:20.077] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:26:20.142] [INFO] cheese - batch complete in: 2.305 secs -[2018-02-13T08:26:20.182] [INFO] cheese - inserting 1000 documents. first: Washington State Route 205 and last: Magnus I (of Norway and Denmark) -[2018-02-13T08:26:20.213] [INFO] cheese - inserting 1000 documents. first: List of asteroids/52601-52700 and last: Aluar nunez cabeca de vaca -[2018-02-13T08:26:20.300] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:26:20.415] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T08:26:20.627] [INFO] cheese - inserting 1000 documents. first: Commissioners of Sind and last: Cradle to the Grave (album) -[2018-02-13T08:26:20.635] [INFO] cheese - inserting 1000 documents. first: Anisolabis pacifica and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/1610 -[2018-02-13T08:26:20.651] [INFO] cheese - inserting 1000 documents. first: The Amsterdams and last: Category:Art museums and galleries in Berkshire -[2018-02-13T08:26:20.665] [INFO] cheese - inserting 1000 documents. first: Chérif Abdeslam and last: Koduvila -[2018-02-13T08:26:20.701] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:26:20.740] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:26:20.768] [INFO] cheese - inserting 1000 documents. first: Etykinskoye mine and last: SMBBMC -[2018-02-13T08:26:20.737] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T08:26:20.860] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:26:20.948] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:26:21.096] [INFO] cheese - inserting 1000 documents. first: Theodwyn and last: Magnus Jonsson (disambiguation) -[2018-02-13T08:26:21.148] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:26:21.245] [INFO] cheese - inserting 1000 documents. first: Chandrasekhar Limit and last: Wikipedia:Featured article candidates/Appointment to the Order of Canada/archive1 -[2018-02-13T08:26:21.302] [INFO] cheese - inserting 1000 documents. first: File:Diastemabefore.JPG and last: List of Star Trek planets (R–S) -[2018-02-13T08:26:21.411] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:26:21.469] [INFO] cheese - batch complete in: 1.392 secs -[2018-02-13T08:26:21.605] [INFO] cheese - inserting 1000 documents. first: Magnus, Duke of Ostergoetland and last: Magnus Ver -[2018-02-13T08:26:21.654] [INFO] cheese - inserting 1000 documents. first: Al Moore (American football) and last: Mighty Favog -[2018-02-13T08:26:21.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/David horta and last: Morar (disambiguation) -[2018-02-13T08:26:21.704] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:26:21.799] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:26:21.784] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:26:21.928] [INFO] cheese - inserting 1000 documents. first: St. Joseph's Higher Secondary School (Cuddalore) and last: Venom gt -[2018-02-13T08:26:22.093] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:26:22.111] [INFO] cheese - inserting 1000 documents. first: Vicuna family and last: Los Melodicos -[2018-02-13T08:26:22.142] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T08:26:22.265] [INFO] cheese - inserting 1000 documents. first: File:AS Baylinson.jpg and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Animation/Cartoon Network work group/Watchlist -[2018-02-13T08:26:22.306] [INFO] cheese - inserting 1000 documents. first: Faith freedom and last: Beecher Creek -[2018-02-13T08:26:22.390] [INFO] cheese - inserting 1000 documents. first: Economic Calculation Debate and last: Black Mask (radical group) -[2018-02-13T08:26:22.409] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:26:22.419] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:26:22.531] [INFO] cheese - inserting 1000 documents. first: Kosorin and last: Template:Texas-NRHP-stub -[2018-02-13T08:26:22.550] [INFO] cheese - inserting 1000 documents. first: Favog and last: 6-Chloro-MDMA -[2018-02-13T08:26:22.565] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:26:22.622] [INFO] cheese - inserting 1000 documents. first: Est Playing the Game and last: Wikipedia:Articles for deletion/Videotape (video) -[2018-02-13T08:26:22.648] [INFO] cheese - batch complete in: 2.506 secs -[2018-02-13T08:26:22.664] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:26:22.782] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:26:22.899] [INFO] cheese - inserting 1000 documents. first: Grodersby and last: Mo DeHui -[2018-02-13T08:26:22.921] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:26:23.104] [INFO] cheese - inserting 1000 documents. first: Tanguito and last: Hanna-Maria Seppala -[2018-02-13T08:26:23.129] [INFO] cheese - inserting 1000 documents. first: File:Shams el-Ghinnieh album cover art.jpg and last: Template:COBISS -[2018-02-13T08:26:23.132] [INFO] cheese - inserting 1000 documents. first: RDW CV and last: Wikipedia:WikiProject Spam/Local/instarich.net -[2018-02-13T08:26:23.238] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:26:23.250] [INFO] cheese - inserting 1000 documents. first: Cacem (Sintra) and last: Cesky sen -[2018-02-13T08:26:23.266] [INFO] cheese - inserting 1000 documents. first: AGi32 and last: Johann Jakob Hess -[2018-02-13T08:26:23.267] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:26:23.341] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:26:23.346] [INFO] cheese - inserting 1000 documents. first: Purna (disambiguation) and last: F. B. Squire -[2018-02-13T08:26:23.352] [INFO] cheese - batch complete in: 1.941 secs -[2018-02-13T08:26:23.446] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:26:23.453] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:26:23.613] [INFO] cheese - inserting 1000 documents. first: Das Herz der Konigin and last: List of districts in south east England by population -[2018-02-13T08:26:23.777] [INFO] cheese - inserting 1000 documents. first: Schuettor and last: Harry Potter and the Half Blood Prince (film) -[2018-02-13T08:26:23.807] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:26:23.883] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:26:24.018] [INFO] cheese - inserting 1000 documents. first: Every Eye and last: Siege of Syracuse (877-878) -[2018-02-13T08:26:24.056] [INFO] cheese - inserting 1000 documents. first: Category:Greek Revival churches in Arizona and last: State Route 32A (Nevada) -[2018-02-13T08:26:24.083] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:26:24.119] [INFO] cheese - inserting 1000 documents. first: Valea Oratii River and last: Regierungsbezirk Dusseldorf -[2018-02-13T08:26:24.127] [INFO] cheese - inserting 1000 documents. first: Leonard Limosin and last: Dinner lady -[2018-02-13T08:26:24.129] [INFO] cheese - inserting 1000 documents. first: Watery sign and last: Wikipedia:Articles for deletion/Hector trevino -[2018-02-13T08:26:24.160] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:26:24.171] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T08:26:24.298] [INFO] cheese - inserting 1000 documents. first: Loucks and last: Paul Wright (Archdeacon of Bromley & Bexley) -[2018-02-13T08:26:24.333] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:26:24.333] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:26:24.445] [INFO] cheese - inserting 1000 documents. first: Walking with Monsters - Life Before the Dinosaurs and last: Category:Ethnic groups in the Maldives -[2018-02-13T08:26:24.465] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:26:24.488] [INFO] cheese - inserting 1000 documents. first: Western Digital and last: Absolute Humidity -[2018-02-13T08:26:24.571] [INFO] cheese - inserting 1000 documents. first: Zolta szlafmyca and last: Sabinian and Potentian -[2018-02-13T08:26:24.595] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:26:24.668] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:26:24.694] [INFO] cheese - batch complete in: 2.046 secs -[2018-02-13T08:26:24.778] [INFO] cheese - inserting 1000 documents. first: Siege of Tyana (707-708) and last: Yevgeni Maskinskov -[2018-02-13T08:26:24.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Siccness Network and last: File:Oola GAA crest.png -[2018-02-13T08:26:24.903] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:26:24.985] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:26:25.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Onedotzero and last: István Bocskay -[2018-02-13T08:26:25.250] [INFO] cheese - inserting 1000 documents. first: Occidental Tigers baseball and last: Garma Shah -[2018-02-13T08:26:25.357] [INFO] cheese - inserting 1000 documents. first: Hy Eisman and last: Congenital lacrimal duct obstruction -[2018-02-13T08:26:25.366] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:26:25.443] [INFO] cheese - inserting 1000 documents. first: Category:Football venues in the Maldives and last: Thyas coronata -[2018-02-13T08:26:25.458] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:26:25.584] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:26:25.586] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:26:25.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:New contributors' help page/Archive/New archive 4 and last: Wusta -[2018-02-13T08:26:25.743] [INFO] cheese - inserting 1000 documents. first: Manchester Hospital for Diseases of Children and last: Alexis Remizov -[2018-02-13T08:26:25.791] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:26:25.895] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:26:25.905] [INFO] cheese - inserting 1000 documents. first: Template:Split2/sandbox and last: Yuli Railway -[2018-02-13T08:26:26.110] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:26:26.117] [INFO] cheese - inserting 1000 documents. first: F. Max-Mueller and last: Carly Corinthos and Sonny Corinthos -[2018-02-13T08:26:26.221] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:26:26.288] [INFO] cheese - inserting 1000 documents. first: Garmasha and last: Wikipedia:WikiProject Spam/LinkReports/latinum.org.uk -[2018-02-13T08:26:26.339] [INFO] cheese - inserting 1000 documents. first: Municipalities of Hungary and last: Wikipedia:WikiProject Spam/LinkReports/uggsmvp.com -[2018-02-13T08:26:26.420] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:26:26.498] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:26:26.519] [INFO] cheese - inserting 1000 documents. first: Popkart and last: Jaden Smith -[2018-02-13T08:26:26.654] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T08:26:26.691] [INFO] cheese - inserting 1000 documents. first: Kaertnertortheater and last: Martin Kahler -[2018-02-13T08:26:26.722] [INFO] cheese - inserting 1000 documents. first: TrSS St Patrick (1906) and last: Wikipedia:FILM/MOS -[2018-02-13T08:26:26.831] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:26:26.836] [INFO] cheese - inserting 1000 documents. first: Sir Oliver Napier and last: Ngong -[2018-02-13T08:26:26.891] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:26:26.964] [INFO] cheese - inserting 1000 documents. first: Category:1899 establishments in New Zealand and last: Peter Daniel (footballer, born 1946) -[2018-02-13T08:26:27.059] [INFO] cheese - batch complete in: 1.475 secs -[2018-02-13T08:26:27.078] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:26:27.286] [INFO] cheese - inserting 1000 documents. first: Eliska krasnohorska and last: Rontgen (crater) -[2018-02-13T08:26:27.337] [INFO] cheese - inserting 1000 documents. first: London Metal Exchange and last: Mam'zelle Champagne -[2018-02-13T08:26:27.350] [INFO] cheese - inserting 1000 documents. first: Category:Ordination of women and last: Template:Infobox Weather/colp -[2018-02-13T08:26:27.349] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:26:27.447] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:26:27.479] [INFO] cheese - inserting 1000 documents. first: Category:1922 in the Dutch East Indies and last: Category:Musicians from Long Beach, California -[2018-02-13T08:26:27.505] [INFO] cheese - inserting 1000 documents. first: File:Red 2007 gtcs front.jpg and last: Rigo 95 -[2018-02-13T08:26:27.647] [INFO] cheese - batch complete in: 2.952 secs -[2018-02-13T08:26:27.663] [INFO] cheese - inserting 1000 documents. first: Schwarzenbach (surname) and last: Finch (car) -[2018-02-13T08:26:27.676] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:26:27.714] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:26:27.773] [INFO] cheese - inserting 1000 documents. first: Perrault’s Colonnade and last: Tieling station -[2018-02-13T08:26:27.864] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:26:28.016] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:26:28.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Marginated Tortoise and last: Da Luan Dou sumatusiyu burazazu X -[2018-02-13T08:26:28.059] [INFO] cheese - inserting 1000 documents. first: Sensory processing and last: Sullan Proscriptions -[2018-02-13T08:26:28.154] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:26:28.249] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:26:28.517] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Primates/Project banner and last: Oziljak -[2018-02-13T08:26:28.550] [INFO] cheese - inserting 1000 documents. first: Category:Yugoslav diaspora by country and last: Fairbanks High School, Milford Center -[2018-02-13T08:26:28.556] [INFO] cheese - inserting 1000 documents. first: Portal:NASCAR/Did you know/34 and last: Bidak-e Olya -[2018-02-13T08:26:28.594] [INFO] cheese - inserting 1000 documents. first: Thutmoid Dynasty and last: File:Mihail 1997.jpg -[2018-02-13T08:26:28.595] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:26:28.601] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Weather/colpastel and last: 2009 German Formula Three Championship -[2018-02-13T08:26:28.667] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:26:28.686] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:26:28.713] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:26:28.716] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:26:28.747] [INFO] cheese - inserting 1000 documents. first: File:Captain Philippines and Boy Pinoy poster.jpg and last: Total known mass -[2018-02-13T08:26:28.889] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:26:28.916] [INFO] cheese - inserting 1000 documents. first: Segundas partes tambien son buenas and last: Arthur Kostler -[2018-02-13T08:26:28.943] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T08:26:29.072] [INFO] cheese - inserting 1000 documents. first: File:Margot Frank,May 1942.JPG and last: Retrovision -[2018-02-13T08:26:29.120] [INFO] cheese - inserting 1000 documents. first: Karl von Naegeli and last: Uspantan -[2018-02-13T08:26:29.122] [INFO] cheese - inserting 1000 documents. first: Category:Singaporean expatriate actors and last: Phillies 2016 -[2018-02-13T08:26:29.136] [INFO] cheese - inserting 1000 documents. first: Hightower falls and last: Yuga Purusha -[2018-02-13T08:26:29.148] [INFO] cheese - inserting 1000 documents. first: Empty Room / Nutshell and last: Category:Mobile software stubs -[2018-02-13T08:26:29.148] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T08:26:29.149] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:26:29.227] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:26:29.238] [INFO] cheese - inserting 1000 documents. first: VWAG and last: Silver Streak (1934 film) -[2018-02-13T08:26:29.244] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:26:29.332] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:26:29.395] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:26:29.449] [INFO] cheese - inserting 1000 documents. first: Justin Kleiner and last: KH Kastrioti -[2018-02-13T08:26:29.512] [INFO] cheese - inserting 1000 documents. first: Institut fuer Sozialforschung and last: Ilha de Sao Sebastiao -[2018-02-13T08:26:29.527] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:26:29.573] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:26:29.737] [INFO] cheese - inserting 1000 documents. first: Florodora and last: Col Needham -[2018-02-13T08:26:29.739] [INFO] cheese - inserting 1000 documents. first: North Carolina Aquarium on Roanoke Island and last: Holy Spirit Catholic School California -[2018-02-13T08:26:29.785] [INFO] cheese - inserting 1000 documents. first: Dly. Princetonian and last: Category:Malaysian diaspora in China -[2018-02-13T08:26:29.789] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:26:29.834] [INFO] cheese - batch complete in: 2.187 secs -[2018-02-13T08:26:29.858] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:26:29.898] [INFO] cheese - inserting 1000 documents. first: Thomas Phifer and last: Template:Attached KML/Ohio State Route 186 -[2018-02-13T08:26:29.939] [INFO] cheese - inserting 1000 documents. first: Sluzhylyye lyudi and last: Spice Route -[2018-02-13T08:26:29.946] [INFO] cheese - inserting 1000 documents. first: Pindur and last: Rus Kozmonatlari -[2018-02-13T08:26:29.947] [INFO] cheese - inserting 1000 documents. first: Borskiy District and last: Anastasios Kyriakos -[2018-02-13T08:26:29.962] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:26:30.003] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:26:30.032] [INFO] cheese - inserting 1000 documents. first: Danish National Football Tournament 1919–20 and last: F.M. Scherer -[2018-02-13T08:26:30.043] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:26:30.190] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:26:30.298] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:26:30.503] [INFO] cheese - inserting 1000 documents. first: 15144 Araas and last: 21505 Bernert -[2018-02-13T08:26:30.572] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:26:30.625] [INFO] cheese - inserting 1000 documents. first: Chaldean Catholic Archdiocese of Kirkuk and last: Daniel Hartvig -[2018-02-13T08:26:30.658] [INFO] cheese - inserting 1000 documents. first: Konstantin Podkorytov and last: Portal:Agropedia/Intro -[2018-02-13T08:26:30.703] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:26:30.713] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:26:30.842] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Wolverton Town and last: Khalafabad, Gachsaran -[2018-02-13T08:26:30.863] [INFO] cheese - inserting 1000 documents. first: Karol - papież, który pozostał człowiekiem and last: Nolde Forest Environmental Educational Center -[2018-02-13T08:26:30.962] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:26:31.002] [INFO] cheese - inserting 1000 documents. first: Andrew Rawnsley and last: Wikipedia:Votes for deletion/Unbiennium -[2018-02-13T08:26:30.957] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:26:31.030] [INFO] cheese - inserting 1000 documents. first: Block-Nested-Loop and last: File:Metro 14 logo.svg -[2018-02-13T08:26:31.038] [INFO] cheese - inserting 1000 documents. first: Stade Agoe-Nyive and last: Nyirgyulaj -[2018-02-13T08:26:31.074] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:26:31.125] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:26:31.160] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:26:31.282] [INFO] cheese - inserting 1000 documents. first: Category:Members of gentlemen's clubs and last: Smithsonidrilus involutus -[2018-02-13T08:26:31.312] [INFO] cheese - inserting 1000 documents. first: File:Panty raid zh.jpg and last: File:Wikiproject LEBANON Silver Medal.png -[2018-02-13T08:26:31.412] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:26:31.501] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:26:31.553] [INFO] cheese - inserting 1000 documents. first: Hausen am Albis (Zuerich) and last: Washington Park (disambiguation) -[2018-02-13T08:26:31.601] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:26:31.654] [INFO] cheese - inserting 1000 documents. first: Golden West College and last: Enzkreis -[2018-02-13T08:26:31.671] [INFO] cheese - inserting 1000 documents. first: File:Lego Znap (logo).png and last: The Leela Palaces, Hotels and Resorts -[2018-02-13T08:26:31.673] [INFO] cheese - inserting 1000 documents. first: Constantine Corniaktos and last: File:Sticks the movie.jpg -[2018-02-13T08:26:31.802] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:26:31.809] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:26:31.823] [INFO] cheese - inserting 1000 documents. first: Summify and last: Evgeny Ostaschenko -[2018-02-13T08:26:31.839] [INFO] cheese - batch complete in: 2.005 secs -[2018-02-13T08:26:31.969] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:26:31.972] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Untriunium and last: Ole Edvart Rölvaag -[2018-02-13T08:26:31.972] [INFO] cheese - inserting 1000 documents. first: Fellini 712 and last: Annerys Victoria Vargas Valdez -[2018-02-13T08:26:32.058] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:26:32.113] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:26:32.132] [INFO] cheese - inserting 1000 documents. first: File:Wikiproject LEBANON Bronze Medal.png and last: File:Newmdpdinterceptor.JPG -[2018-02-13T08:26:32.254] [INFO] cheese - inserting 1000 documents. first: 6945 Dahlgren and last: Myrskyntuoja -[2018-02-13T08:26:32.277] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:26:32.305] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:26:32.530] [INFO] cheese - inserting 1000 documents. first: Japanese Lighthouse (Poluwat, Federated States of Micronesia) and last: Venus Barbata -[2018-02-13T08:26:32.621] [INFO] cheese - inserting 1000 documents. first: Tibicen canicularis and last: Race of champions -[2018-02-13T08:26:32.639] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:26:32.720] [INFO] cheese - inserting 1000 documents. first: Category:1964 radio dramas and last: File:Dom Reardon.png -[2018-02-13T08:26:32.748] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:26:32.810] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:26:32.860] [INFO] cheese - inserting 1000 documents. first: Time (album) and last: International Hotel (San Francisco) -[2018-02-13T08:26:32.863] [INFO] cheese - inserting 1000 documents. first: Evelyn Carrera Pichardo and last: Rupsha Bridge -[2018-02-13T08:26:32.882] [INFO] cheese - inserting 1000 documents. first: Adioryx diadema and last: GEDitCOM -[2018-02-13T08:26:32.887] [INFO] cheese - inserting 1000 documents. first: Scottish Catholic Hierarchy and last: Schuetz -[2018-02-13T08:26:32.947] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:26:33.086] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:26:33.091] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:26:33.114] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:33.235] [INFO] cheese - inserting 1000 documents. first: Croatian Disabled Homeland War Veterans Association and last: Fujiwara no Yoshitsune -[2018-02-13T08:26:33.292] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:26:33.390] [INFO] cheese - inserting 1000 documents. first: Lukas of Bulgaria and last: Decretales Clementis Papae VIII -[2018-02-13T08:26:33.423] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T08:26:33.438] [INFO] cheese - inserting 1000 documents. first: The Long Road Home – In Concert and last: Amtrak Downeaster -[2018-02-13T08:26:33.445] [INFO] cheese - inserting 1000 documents. first: Anciente and Secret Order of Quiet Birdmen and last: List of signers of the United States Declaration of Independence -[2018-02-13T08:26:33.523] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:26:33.551] [INFO] cheese - inserting 1000 documents. first: Herrick Corporation and last: Florence ward stiles -[2018-02-13T08:26:33.573] [INFO] cheese - inserting 1000 documents. first: Alexander Mackenzie (explorer) and last: First trimester -[2018-02-13T08:26:33.595] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:26:33.739] [INFO] cheese - inserting 1000 documents. first: File:Eric Christmas.jpg and last: Trk-A -[2018-02-13T08:26:33.755] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:26:33.803] [INFO] cheese - batch complete in: 1.964 secs -[2018-02-13T08:26:33.826] [INFO] cheese - inserting 1000 documents. first: Religion and drugs and last: Haldane, John Burdon Sanderson -[2018-02-13T08:26:33.827] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:26:33.890] [INFO] cheese - inserting 1000 documents. first: Oscar Raymundo Benavides Larrea and last: El Boqueron (El Salvador) -[2018-02-13T08:26:33.937] [INFO] cheese - inserting 1000 documents. first: Eddie Wolf and last: Ab Gol, Kohgiluyeh and Boyer-Ahmad -[2018-02-13T08:26:33.938] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:26:33.996] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:26:34.051] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:26:34.384] [INFO] cheese - inserting 1000 documents. first: Jesus "Chucho" Sanoja and last: Gabbro Hills -[2018-02-13T08:26:34.386] [INFO] cheese - inserting 1000 documents. first: Kensington Football Club and last: File:The Vision Fcatory oficial logo.png -[2018-02-13T08:26:34.414] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:26:34.456] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:26:34.493] [INFO] cheese - inserting 1000 documents. first: Category:Films based on The Tempest and last: Penthus tenebrioides -[2018-02-13T08:26:34.598] [INFO] cheese - inserting 1000 documents. first: Zenwalk Linux and last: Forever In A Day -[2018-02-13T08:26:34.602] [INFO] cheese - inserting 1000 documents. first: Shlomo Helbrans and last: Boys in the Band/Hex Games -[2018-02-13T08:26:34.665] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:26:34.703] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:26:34.770] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T08:26:34.888] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bill Ainashe and last: Wah Cantonment -[2018-02-13T08:26:34.897] [INFO] cheese - inserting 1000 documents. first: V. n. Volosinov and last: Steinbrueckenhoehle -[2018-02-13T08:26:34.900] [INFO] cheese - inserting 1000 documents. first: Spenger's Fresh Fish Grotto and last: Building at 826 North Main Street -[2018-02-13T08:26:34.938] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:26:35.018] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:26:35.032] [INFO] cheese - batch complete in: 1.036 secs -[2018-02-13T08:26:35.189] [INFO] cheese - inserting 1000 documents. first: Category:Keystone species and last: Reduced Level -[2018-02-13T08:26:35.222] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:26:35.360] [INFO] cheese - inserting 1000 documents. first: 1996 Philippine Basketball League season and last: Hiletinae -[2018-02-13T08:26:35.398] [INFO] cheese - inserting 1000 documents. first: Sleuth hound and last: Nikolaus zu Dohna-Schlodien -[2018-02-13T08:26:35.405] [INFO] cheese - inserting 1000 documents. first: 20305 Feliciayen and last: 7728 Giblin -[2018-02-13T08:26:35.430] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:26:35.435] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:26:35.454] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:26:35.503] [INFO] cheese - inserting 1000 documents. first: Alex Cox (musician) and last: Samantha Stephens -[2018-02-13T08:26:35.539] [INFO] cheese - inserting 1000 documents. first: Third trimester and last: Joseph Autran -[2018-02-13T08:26:35.543] [INFO] cheese - inserting 1000 documents. first: Baree, Queensland and last: Category:1836 disestablishments in Nova Scotia -[2018-02-13T08:26:35.563] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:26:35.635] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:26:35.673] [INFO] cheese - batch complete in: 1.869 secs -[2018-02-13T08:26:35.725] [INFO] cheese - inserting 1000 documents. first: James Sherwin and last: Jack Laviollette -[2018-02-13T08:26:35.731] [INFO] cheese - inserting 1000 documents. first: Serguei Grankine and last: Wenceslao Diaz -[2018-02-13T08:26:35.752] [INFO] cheese - inserting 1000 documents. first: Jamyang Khyentse Choekyi Lodroe and last: Kunten (Aargau) -[2018-02-13T08:26:35.850] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:26:35.868] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:26:35.900] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:26:36.027] [INFO] cheese - inserting 1000 documents. first: Category:Education in Hamilton County, Iowa and last: Category:Pan American Games competitors for Paraguay -[2018-02-13T08:26:36.090] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:26:36.131] [INFO] cheese - inserting 1000 documents. first: Ab Chenaru (disambiguation) and last: GOSH! Magazine -[2018-02-13T08:26:36.185] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:26:36.262] [INFO] cheese - inserting 1000 documents. first: Vivara and last: Aarnivalkea -[2018-02-13T08:26:36.305] [INFO] cheese - inserting 1000 documents. first: X-Posed and last: 2015 dengue outbreak in Taiwan -[2018-02-13T08:26:36.456] [INFO] cheese - inserting 1000 documents. first: 4582 Hank and last: File:Johnson Hall of Science Building (front).jpg -[2018-02-13T08:26:36.476] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:26:36.491] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:26:36.481] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:26:36.501] [INFO] cheese - inserting 1000 documents. first: Cannonball arezzo clarinets and last: Wikipedia:WikiProject Academic Journals/Danish journal list/57 -[2018-02-13T08:26:36.680] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:26:36.716] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Pilot Episode and last: Lo kui -[2018-02-13T08:26:36.786] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:26:36.884] [INFO] cheese - inserting 1000 documents. first: Category:Equestrian at the 1920 Summer Olympics and last: Category:Disciples of Gautama Buddha -[2018-02-13T08:26:36.952] [INFO] cheese - inserting 1000 documents. first: Nossa Senhora dos Remedios and last: Hanina ben Teradyon -[2018-02-13T08:26:36.956] [INFO] cheese - inserting 1000 documents. first: Template:R from father and last: Category:1810s establishments in New Brunswick -[2018-02-13T08:26:36.975] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:26:37.017] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:26:37.084] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:26:37.127] [INFO] cheese - inserting 1000 documents. first: Nadia riots and last: Obergefell vs. Hodges -[2018-02-13T08:26:37.138] [INFO] cheese - inserting 1000 documents. first: Inco term and last: Category:Egyptian ethnologists -[2018-02-13T08:26:37.192] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:26:37.195] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:26:37.271] [INFO] cheese - inserting 1000 documents. first: File:Faris odeh03a.jpg and last: Coates College for Women -[2018-02-13T08:26:37.278] [INFO] cheese - inserting 1000 documents. first: Funk & Wagnalls and last: Tree warbler -[2018-02-13T08:26:37.298] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T08:26:37.381] [INFO] cheese - inserting 1000 documents. first: Cragin station and last: Servetta -[2018-02-13T08:26:37.417] [INFO] cheese - batch complete in: 1.743 secs -[2018-02-13T08:26:37.568] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:26:37.674] [INFO] cheese - inserting 1000 documents. first: Clamp Champ and last: File:Superman in Red Son.png -[2018-02-13T08:26:37.683] [INFO] cheese - inserting 1000 documents. first: Dealer Team Vauxhall and last: Valea Lungă-Ogrea -[2018-02-13T08:26:37.751] [INFO] cheese - inserting 1000 documents. first: Category:1817 in New Brunswick and last: Category:2000–01 Southern Conference men's basketball season -[2018-02-13T08:26:37.754] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:26:37.769] [INFO] cheese - inserting 1000 documents. first: Araguita and last: Urliesu River -[2018-02-13T08:26:37.754] [INFO] cheese - inserting 1000 documents. first: Scuola Italiana di Tehran and last: Juan Carlos López Martínez -[2018-02-13T08:26:37.809] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:26:37.805] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:26:37.947] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:26:37.968] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:26:38.029] [INFO] cheese - inserting 1000 documents. first: Template:Infobox martial art and last: John Brush -[2018-02-13T08:26:38.086] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:26:38.154] [INFO] cheese - inserting 1000 documents. first: Finspang Castle and last: Fort Beasejour -[2018-02-13T08:26:38.217] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T08:26:38.447] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Liv Ullmann and last: Avid Champion -[2018-02-13T08:26:38.531] [INFO] cheese - inserting 1000 documents. first: The Adam Carolla Show (terrestrial radio) and last: File:Children's Museum of Winston-Salem logo.GIF -[2018-02-13T08:26:38.557] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:26:38.576] [INFO] cheese - inserting 1000 documents. first: File:Loc-Agra.png and last: Lajedo, Brazil -[2018-02-13T08:26:38.583] [INFO] cheese - inserting 1000 documents. first: McDonalds, North Carolina and last: 4703 Kagoshima -[2018-02-13T08:26:38.639] [INFO] cheese - inserting 1000 documents. first: Jorge Echavarría and last: Carter's buttercup -[2018-02-13T08:26:38.689] [INFO] cheese - inserting 1000 documents. first: Template:2000–01 Southern Conference men's basketball standings and last: Category:2008–09 in Luxembourgian football -[2018-02-13T08:26:38.695] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:26:38.741] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:26:38.781] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:26:38.876] [INFO] cheese - inserting 1000 documents. first: Debt negotiation and last: S^ -[2018-02-13T08:26:38.891] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:26:38.894] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:26:38.998] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:26:39.260] [INFO] cheese - inserting 1000 documents. first: Stellar association and last: Hessians -[2018-02-13T08:26:39.311] [INFO] cheese - inserting 1000 documents. first: Charya and last: File:HeflinOKdiary03.jpg -[2018-02-13T08:26:39.423] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:26:39.430] [INFO] cheese - batch complete in: 2.012 secs -[2018-02-13T08:26:39.450] [INFO] cheese - inserting 1000 documents. first: Argentina National Congress Building and last: Wikipedia:Meetup/Mumbai/Mumbai26 -[2018-02-13T08:26:39.545] [INFO] cheese - inserting 1000 documents. first: Shadiman Baratashvili and last: TATA STEEL -[2018-02-13T08:26:39.558] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:26:39.570] [INFO] cheese - inserting 1000 documents. first: Athletic Association of the Greater Public Schools of New South Wales and last: Apagón -[2018-02-13T08:26:39.597] [INFO] cheese - inserting 1000 documents. first: Fourth constituency for French residents overseas and last: W.H. Morgan House -[2018-02-13T08:26:39.662] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:26:39.693] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:26:39.779] [INFO] cheese - inserting 1000 documents. first: Devonte Hynes and last: Bristol Type 407 -[2018-02-13T08:26:39.799] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:26:39.908] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:26:40.078] [INFO] cheese - inserting 1000 documents. first: File:Calotropisgigantea.jpg and last: File:Politiciansdinner.jpg -[2018-02-13T08:26:40.136] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:26:40.226] [INFO] cheese - inserting 1000 documents. first: 7991 Kaguyahime and last: US Jeanne d'Arc Carquefou -[2018-02-13T08:26:40.238] [INFO] cheese - inserting 1000 documents. first: Bergen National Academy of the Arts and last: Ecole Suedoise de Paris -[2018-02-13T08:26:40.345] [INFO] cheese - inserting 1000 documents. first: File:Tougen no Fue.jpg and last: Yogventures! -[2018-02-13T08:26:40.351] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:26:40.420] [INFO] cheese - batch complete in: 1.677 secs -[2018-02-13T08:26:40.528] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:26:40.601] [INFO] cheese - inserting 1000 documents. first: Gorno altai assr and last: Philorhizus -[2018-02-13T08:26:40.601] [INFO] cheese - inserting 1000 documents. first: File:RedShoulderedHawk.jpg and last: Universal rule -[2018-02-13T08:26:40.731] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:26:40.831] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:26:41.072] [INFO] cheese - inserting 1000 documents. first: Mana Tatsumiya and last: Template:Amerie -[2018-02-13T08:26:41.169] [INFO] cheese - inserting 1000 documents. first: Woodward Island (California) and last: Wikipedia:WikiProject Spam/LinkReports/uzeit.ru -[2018-02-13T08:26:41.313] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic Azerbaijani screenwriters and last: Darren Fisher -[2018-02-13T08:26:41.317] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:26:41.429] [INFO] cheese - inserting 1000 documents. first: Oleksandr Kratov and last: Template:Bolivia-diplomat-stub -[2018-02-13T08:26:41.481] [INFO] cheese - batch complete in: 1.345 secs -[2018-02-13T08:26:41.587] [INFO] cheese - inserting 1000 documents. first: Democracy: An American Novel and last: FBI Ten Most Wanted Fugitives -[2018-02-13T08:26:41.616] [INFO] cheese - inserting 1000 documents. first: Civita castelana and last: Michael wycoff -[2018-02-13T08:26:41.610] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:26:41.675] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:26:41.749] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T08:26:41.813] [INFO] cheese - inserting 1000 documents. first: ECSA (disambiguation) and last: Molla Hadi Sabzevari -[2018-02-13T08:26:41.891] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:26:41.878] [INFO] cheese - batch complete in: 2.448 secs -[2018-02-13T08:26:42.063] [INFO] cheese - inserting 1000 documents. first: Turf moor and last: Unionist Party (South Africa) -[2018-02-13T08:26:42.188] [INFO] cheese - batch complete in: 1.457 secs -[2018-02-13T08:26:42.242] [INFO] cheese - inserting 1000 documents. first: The Witman Boys and last: Salem Witches(NEL) -[2018-02-13T08:26:42.259] [INFO] cheese - inserting 1000 documents. first: Philosophy of Architecture and last: Parachaetolopha ornatipennis -[2018-02-13T08:26:42.327] [INFO] cheese - inserting 1000 documents. first: Jim Brown (politician) and last: File:Cg sanga balende.gif -[2018-02-13T08:26:42.331] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:26:42.334] [INFO] cheese - inserting 1000 documents. first: Sail sign of the elbow and last: Princess Luisa Maria, Archduchess of Austria-Este -[2018-02-13T08:26:42.353] [INFO] cheese - inserting 1000 documents. first: Čevljarski Bridge and last: Les Rhinoceros -[2018-02-13T08:26:42.390] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:26:42.466] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:26:42.489] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:26:42.500] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:26:42.630] [INFO] cheese - inserting 1000 documents. first: School of Saint Anthony and last: Billy Garland (Ex Black Panther) -[2018-02-13T08:26:42.824] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:26:42.928] [INFO] cheese - inserting 1000 documents. first: Category:1977 in military history and last: Urosevac District -[2018-02-13T08:26:43.029] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:26:43.172] [INFO] cheese - inserting 1000 documents. first: 2012 Indonesian Movie Awards and last: Category:13 BC deaths -[2018-02-13T08:26:43.209] [INFO] cheese - inserting 1000 documents. first: La Ville dont le prince est un enfant and last: Wikipedia:Reference desk/Archives/Mathematics/2009 September 24 -[2018-02-13T08:26:43.324] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:26:43.364] [INFO] cheese - inserting 1000 documents. first: Category:Women's national rugby league teams and last: Category:1876 in the British Empire -[2018-02-13T08:26:43.418] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:26:43.451] [INFO] cheese - inserting 1000 documents. first: File:Coveralbumbig.jpg and last: Template:Lang-Urdu1 -[2018-02-13T08:26:43.460] [INFO] cheese - inserting 1000 documents. first: Dies Bildnis ist bezaubernd schoen and last: Jupitergigantensaule -[2018-02-13T08:26:43.527] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:26:43.580] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:26:43.591] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:26:43.753] [INFO] cheese - inserting 1000 documents. first: Category:Junior-heavyweight boxers and last: Indians in Finland -[2018-02-13T08:26:43.782] [INFO] cheese - inserting 1000 documents. first: Six Pack (Record) and last: Anton Rogan -[2018-02-13T08:26:43.855] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:26:43.867] [INFO] cheese - batch complete in: 1.679 secs -[2018-02-13T08:26:43.898] [INFO] cheese - inserting 1000 documents. first: Mendonca, Sao Paulo and last: 1819 Laputa -[2018-02-13T08:26:43.933] [INFO] cheese - inserting 1000 documents. first: Deformable bodies and last: Pandava -[2018-02-13T08:26:44.000] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:26:44.065] [INFO] cheese - batch complete in: 2.187 secs -[2018-02-13T08:26:44.137] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Phil Prince and last: Wikipedia:Templates for discussion/Log/2015 October 21 -[2018-02-13T08:26:44.164] [INFO] cheese - inserting 1000 documents. first: Vicente Zarzo Pitarch and last: Wikipedia:Miscellany for deletion/User:Khalidmahmood390 -[2018-02-13T08:26:44.216] [INFO] cheese - inserting 1000 documents. first: Pathanistan and last: October (Singer) -[2018-02-13T08:26:44.259] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:26:44.307] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:26:44.378] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:26:44.489] [INFO] cheese - inserting 1000 documents. first: Category:Korean military personnel and last: Exaliter -[2018-02-13T08:26:44.661] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:26:44.725] [INFO] cheese - inserting 1000 documents. first: Pisarzowice, Bielsko-Biala County and last: 3589 Loyola -[2018-02-13T08:26:44.732] [INFO] cheese - inserting 1000 documents. first: Čmeliak and last: Mike Tatum -[2018-02-13T08:26:44.791] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:26:44.845] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:26:44.941] [INFO] cheese - inserting 1000 documents. first: Countermine System and last: Hartebeestfontein Mine -[2018-02-13T08:26:45.002] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anna Carter and last: 2006 Fed Cup -[2018-02-13T08:26:45.130] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:26:45.191] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T08:26:45.229] [INFO] cheese - inserting 1000 documents. first: Template:Biskra-geo-stub and last: County Route 690 (Burlington County, New Jersey) -[2018-02-13T08:26:45.259] [INFO] cheese - inserting 1000 documents. first: Valeri Kazaishvili and last: Academy of Fine Arts, Istanbul -[2018-02-13T08:26:45.338] [INFO] cheese - inserting 1000 documents. first: 17358 Lozino-Lozinskij and last: 17354 Matrosov -[2018-02-13T08:26:45.350] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:26:45.393] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:26:45.403] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:26:45.488] [INFO] cheese - inserting 1000 documents. first: Zettaliter and last: Vitebsk Air Base -[2018-02-13T08:26:45.543] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:26:45.560] [INFO] cheese - inserting 1000 documents. first: Category:North American Lacrosse League and last: File:Questionmarkcover.jpg -[2018-02-13T08:26:45.688] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:26:45.764] [INFO] cheese - inserting 1000 documents. first: Dawlat Isra'il and last: Nghe An Province, Vietnam -[2018-02-13T08:26:45.846] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:26:45.872] [INFO] cheese - inserting 1000 documents. first: Abdurrahman Sulaeman and last: John Michell (cricketer) -[2018-02-13T08:26:45.948] [INFO] cheese - inserting 1000 documents. first: J. Cell. Biochem. and last: Vladislavs Agurjanovs -[2018-02-13T08:26:45.949] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:26:46.018] [INFO] cheese - inserting 1000 documents. first: The One (Deuce Song) and last: Category:Rapid transit stations in the United States by operator -[2018-02-13T08:26:46.050] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:26:46.087] [INFO] cheese - inserting 1000 documents. first: Gateaux derivative and last: WEZB-FM -[2018-02-13T08:26:46.172] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:26:46.245] [INFO] cheese - inserting 1000 documents. first: Annette Huber-Klawitter and last: Template:User from Arkansas/doc -[2018-02-13T08:26:46.254] [INFO] cheese - inserting 1000 documents. first: 21089 Mochizuki and last: 5507 Niijima -[2018-02-13T08:26:46.270] [INFO] cheese - inserting 1000 documents. first: The Girl Was Young and last: Avie Tevanian -[2018-02-13T08:26:46.281] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:26:46.298] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:26:46.330] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:26:46.351] [INFO] cheese - inserting 1000 documents. first: Giedo van der Garde and last: Providence & Worcester Railroad -[2018-02-13T08:26:46.449] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:26:46.507] [INFO] cheese - batch complete in: 2.442 secs -[2018-02-13T08:26:46.667] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Freddy Powers and last: Template:Did you know nominations/Ecco Ripley -[2018-02-13T08:26:46.705] [INFO] cheese - inserting 1000 documents. first: Economy of People's Republic of China and last: Radwansky -[2018-02-13T08:26:46.734] [INFO] cheese - inserting 1000 documents. first: 2972 Niilo and last: Naval Air Station Niagara Falls -[2018-02-13T08:26:46.764] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:26:46.789] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:26:46.819] [INFO] cheese - inserting 1000 documents. first: Nilalang and last: File:League of Legends Champions Korea logo.jpg -[2018-02-13T08:26:46.839] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:26:46.937] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:26:47.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/burberrybluelabelstore.com and last: File:Travel Sentry Mark.jpg -[2018-02-13T08:26:47.078] [INFO] cheese - inserting 1000 documents. first: File:Total Eclipse.jpg and last: Gândul -[2018-02-13T08:26:47.079] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:26:47.116] [INFO] cheese - inserting 1000 documents. first: Category:Women's cricket in Australia and last: Shatalovo (air base) -[2018-02-13T08:26:47.178] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:26:47.184] [INFO] cheese - inserting 1000 documents. first: 冯友兰 and last: Philippines–European Union relations -[2018-02-13T08:26:47.195] [INFO] cheese - inserting 1000 documents. first: Category:Cockroach stubs and last: Less Than Jake (Band) -[2018-02-13T08:26:47.212] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:26:47.290] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:26:47.304] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:26:47.411] [INFO] cheese - inserting 1000 documents. first: Yourka Reserve and last: 21471 Pavelchvykov -[2018-02-13T08:26:47.453] [INFO] cheese - inserting 1000 documents. first: Monique Di Mattina and last: Chinese actresses -[2018-02-13T08:26:47.487] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:26:47.561] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:26:47.619] [INFO] cheese - inserting 1000 documents. first: The Orbis School and last: Member of the State Council -[2018-02-13T08:26:47.699] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:26:47.799] [INFO] cheese - inserting 1000 documents. first: File:Johnchristie.jpg and last: Skirtingboards -[2018-02-13T08:26:47.883] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:26:47.906] [INFO] cheese - inserting 1000 documents. first: Category:Geréb family and last: Category:PFC Chernomorets Burgas Sofia players -[2018-02-13T08:26:47.922] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of indexes to tables of contents and last: RSD -[2018-02-13T08:26:47.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Food metaphors for race and last: Leopold, Count of Daun -[2018-02-13T08:26:47.987] [INFO] cheese - inserting 1000 documents. first: 16274 Pavlica and last: 2457 Rublyov -[2018-02-13T08:26:48.000] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:26:48.011] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:26:48.078] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:26:48.090] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:26:48.124] [INFO] cheese - inserting 1000 documents. first: National Anthem of the Republic of China and last: Li Tieh Kuai -[2018-02-13T08:26:48.245] [INFO] cheese - inserting 1000 documents. first: Gillian Lester and last: Władysław Wankie -[2018-02-13T08:26:48.276] [INFO] cheese - batch complete in: 1.769 secs -[2018-02-13T08:26:48.348] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:26:48.353] [INFO] cheese - inserting 1000 documents. first: 1963–64 Czechoslovak Extraliga season and last: File:Thing a Week Three.jpg -[2018-02-13T08:26:48.398] [INFO] cheese - inserting 1000 documents. first: 4286 Rubtsov and last: Glos Pana -[2018-02-13T08:26:48.473] [INFO] cheese - inserting 1000 documents. first: Belvidere (structure) and last: Thalheim (Aargau) -[2018-02-13T08:26:48.482] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T08:26:48.508] [INFO] cheese - inserting 1000 documents. first: Gary Weight and last: Plica palpebronasalis -[2018-02-13T08:26:48.522] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:26:48.537] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:26:48.629] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:26:48.694] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 20th century in Northern Rhodesia and last: Wikipedia:WikiProject Spam/LinkReports/skyrecordsent.com -[2018-02-13T08:26:48.785] [INFO] cheese - inserting 1000 documents. first: EmsAuenWeg and last: File:Islands-arcadefire-mixing-at-jamies.jpg -[2018-02-13T08:26:48.785] [INFO] cheese - inserting 1000 documents. first: Portal:Thailand/Selected article/29 and last: Vandœuvre -[2018-02-13T08:26:48.800] [INFO] cheese - inserting 1000 documents. first: Battle of Rawdat Muhanna and last: Distrito de Viseu -[2018-02-13T08:26:48.818] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T08:26:48.846] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T08:26:48.874] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:26:48.963] [INFO] cheese - inserting 1000 documents. first: 2010 Oklahoma earthquake and last: Jonathan Agnew (cricketer) -[2018-02-13T08:26:49.054] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:26:49.122] [INFO] cheese - inserting 1000 documents. first: File:Belluswi.jpg and last: Sturmgeschutz III Ausf. G -[2018-02-13T08:26:49.130] [INFO] cheese - inserting 1000 documents. first: Rüttenen (Solothurn) and last: Pieterlen (Bern) -[2018-02-13T08:26:49.162] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T08:26:49.171] [INFO] cheese - inserting 1000 documents. first: Embassy of the United States, Juba and last: Sigma coordinate system -[2018-02-13T08:26:49.199] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:26:49.236] [INFO] cheese - inserting 1000 documents. first: List of Murder, She Wrote characters and last: EVA Airways Corp -[2018-02-13T08:26:49.318] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:26:49.386] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:26:49.418] [INFO] cheese - inserting 1000 documents. first: Josephine Bakhita and last: Ruffushi -[2018-02-13T08:26:49.450] [INFO] cheese - inserting 1000 documents. first: Euroleague 1994-95 and last: Wunderkind (fashion) -[2018-02-13T08:26:49.462] [INFO] cheese - inserting 1000 documents. first: Banici and last: Konrad IV -[2018-02-13T08:26:49.501] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:26:49.566] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:26:49.636] [INFO] cheese - inserting 1000 documents. first: Plagne (Bern) and last: Emmanuel Santos -[2018-02-13T08:26:49.641] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:26:49.733] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:26:49.816] [INFO] cheese - inserting 1000 documents. first: Deux Fois and last: Ali Reza Razm Hosseini -[2018-02-13T08:26:49.875] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:49.903] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/soloaja.com and last: Category:Converts to Judaism from Protestantism -[2018-02-13T08:26:49.907] [INFO] cheese - inserting 1000 documents. first: Operation Weserubung order of battle and last: Ni Freud, Ni Tu Mama -[2018-02-13T08:26:49.971] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:26:49.980] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:26:50.020] [INFO] cheese - inserting 1000 documents. first: Category:1986 in Arizona and last: Christianity in Qinghai -[2018-02-13T08:26:50.022] [INFO] cheese - inserting 1000 documents. first: Slovenian music and last: Chicago Sun-Times -[2018-02-13T08:26:50.113] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:26:50.168] [INFO] cheese - batch complete in: 1.891 secs -[2018-02-13T08:26:50.187] [INFO] cheese - inserting 1000 documents. first: Baila Conmigo (Adelén song) and last: Vijaya Bhaskara Reddy -[2018-02-13T08:26:50.208] [INFO] cheese - inserting 1000 documents. first: Vaikaramuraidhoo and last: Shark (moth) -[2018-02-13T08:26:50.286] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:26:50.298] [INFO] cheese - inserting 1000 documents. first: Lietuvos teises universitetas and last: Religious minorities in Greece -[2018-02-13T08:26:50.307] [INFO] cheese - inserting 1000 documents. first: Martin Stone (wrestler) and last: George de La Poer Beresford, 1st Marquess of Waterford -[2018-02-13T08:26:50.310] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:50.350] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:26:50.349] [INFO] cheese - inserting 1000 documents. first: Palazzo Papadopoli and last: Gulfstream Pictures -[2018-02-13T08:26:50.412] [INFO] cheese - inserting 1000 documents. first: Marx tér (Budapest Metro) and last: Kim Mi-ja -[2018-02-13T08:26:50.421] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:26:50.444] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:26:50.520] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:26:50.732] [INFO] cheese - inserting 1000 documents. first: Alan Pyatt and last: 2008–09 NLA season -[2018-02-13T08:26:50.855] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:26:50.933] [INFO] cheese - inserting 1000 documents. first: Secunderabad-Cantonment constituency and last: Zhegalkin normal form -[2018-02-13T08:26:50.956] [INFO] cheese - inserting 1000 documents. first: Holy Week in Taxco and last: Wet-printing -[2018-02-13T08:26:50.986] [INFO] cheese - inserting 1000 documents. first: Machine Gun Funk and last: Domenico Leoni -[2018-02-13T08:26:50.996] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:26:51.017] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:26:51.097] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:26:51.183] [INFO] cheese - inserting 1000 documents. first: Dragon Valor and last: Michael Yon -[2018-02-13T08:26:51.193] [INFO] cheese - inserting 1000 documents. first: SSN-716 and last: Michael Bell-Smith -[2018-02-13T08:26:51.244] [INFO] cheese - inserting 1000 documents. first: Sweet Solera Stakes and last: Adrian Branch -[2018-02-13T08:26:51.263] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:26:51.275] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T08:26:51.355] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:26:51.382] [INFO] cheese - inserting 1000 documents. first: Kyushu Kogyo Daigaku and last: James Troisi -[2018-02-13T08:26:51.392] [INFO] cheese - inserting 1000 documents. first: Category:Educational organisations in Ukraine and last: Pilate and Others -[2018-02-13T08:26:51.428] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:26:51.459] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:26:51.509] [INFO] cheese - inserting 1000 documents. first: Wolf herring and last: Take Me Out To The Ball Game -[2018-02-13T08:26:51.554] [INFO] cheese - inserting 1000 documents. first: Pioneers FC and last: Spithamn -[2018-02-13T08:26:51.626] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:26:51.632] [INFO] cheese - batch complete in: 1.463 secs -[2018-02-13T08:26:51.687] [INFO] cheese - inserting 1000 documents. first: Cyclophora dyschroa and last: Pataveh, Boyer-Ahmad (disambiguation) -[2018-02-13T08:26:51.725] [INFO] cheese - inserting 1000 documents. first: Dorothea Roschmann and last: BibTeKh -[2018-02-13T08:26:51.774] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:26:51.789] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:26:51.811] [INFO] cheese - inserting 1000 documents. first: Guigues VIII de La Tour du Pin, Dauphin de Viennois and last: Wakusei daikaijû Negadon -[2018-02-13T08:26:51.932] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:26:51.995] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mbtsshoessale.com and last: Koron (music) -[2018-02-13T08:26:52.054] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:26:52.107] [INFO] cheese - inserting 1000 documents. first: Mann-whitney u test and last: Portal:Oz/Categories -[2018-02-13T08:26:52.226] [INFO] cheese - inserting 1000 documents. first: Sutlep and last: Barlow, North Dakota -[2018-02-13T08:26:52.250] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:26:52.255] [INFO] cheese - inserting 1000 documents. first: 淡路島 and last: List of minor planets/178301–178400 -[2018-02-13T08:26:52.335] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Thomas M. Disch and last: Wikipedia:WikiProject Aviation/Contest/Submissions/Marcusmax -[2018-02-13T08:26:52.354] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:26:52.378] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:26:52.491] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:26:52.605] [INFO] cheese - inserting 1000 documents. first: Template:Arona–Novara railway diagram and last: Wikipedia:WikiProject Spam/LinkReports/amazing-fiji-vacations.com -[2018-02-13T08:26:52.669] [INFO] cheese - inserting 1000 documents. first: Jul i Toyengata and last: Jewell Williams -[2018-02-13T08:26:52.692] [INFO] cheese - inserting 1000 documents. first: Kishan Singh Rathore and last: Portal:Aviation/Selected picture/33 -[2018-02-13T08:26:52.696] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:26:52.754] [INFO] cheese - inserting 1000 documents. first: Hamdy Abowgliel and last: Joanna Janét -[2018-02-13T08:26:52.771] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:26:52.792] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:26:52.840] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:26:52.999] [INFO] cheese - inserting 1000 documents. first: Mascara (musician) and last: Maria Gómez -[2018-02-13T08:26:53.013] [INFO] cheese - inserting 1000 documents. first: College Sadiki and last: Oswaldo Paya Sardinas -[2018-02-13T08:26:53.018] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Aviation/Contest/Submissions/MoHasanie and last: Swing (music group) -[2018-02-13T08:26:53.032] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T08:26:53.038] [INFO] cheese - inserting 1000 documents. first: David Goloschekin and last: File:Dandelion clock.jpg -[2018-02-13T08:26:53.041] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:26:53.082] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:26:53.198] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:26:53.314] [INFO] cheese - inserting 1000 documents. first: William E. Morris and last: Aravind Eye Care Hospital -[2018-02-13T08:26:53.343] [INFO] cheese - inserting 1000 documents. first: Ryunosuke Uryu and last: Canamero -[2018-02-13T08:26:53.356] [INFO] cheese - inserting 1000 documents. first: Saljut I and last: Music terminology -[2018-02-13T08:26:53.368] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T08:26:53.391] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject United States Public Policy/Courses/Spring 2011/Media and Telecommunication Policy (Obar) and last: Category:1998 in Indiana -[2018-02-13T08:26:53.395] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:26:53.416] [INFO] cheese - inserting 1000 documents. first: Category:Fictional depictions of Abraham Lincoln in film and last: 2013 Campeonato Acreano -[2018-02-13T08:26:53.471] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:26:53.512] [INFO] cheese - batch complete in: 1.879 secs -[2018-02-13T08:26:53.561] [INFO] cheese - inserting 1000 documents. first: Constantin Alexandru Rosetti and last: Otto Bernhardt -[2018-02-13T08:26:53.562] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:26:53.646] [INFO] cheese - inserting 1000 documents. first: R City and last: Members of the New South Wales Legislative Council, 1891–1894 -[2018-02-13T08:26:53.664] [INFO] cheese - inserting 1000 documents. first: Saint-Andre-d'Hebertot and last: Hoei Nojiri -[2018-02-13T08:26:53.670] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:26:53.704] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T08:26:53.721] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:26:53.999] [INFO] cheese - inserting 1000 documents. first: File:Somefantasticplace.jpg and last: 2000 Copa Interclubes UNCAF -[2018-02-13T08:26:54.013] [INFO] cheese - inserting 1000 documents. first: Egyptair Flight 648 and last: Strange Celebrity -[2018-02-13T08:26:54.055] [INFO] cheese - inserting 1000 documents. first: Vrsac fortress and last: Clement Jannequin -[2018-02-13T08:26:54.083] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:26:54.111] [INFO] cheese - inserting 1000 documents. first: Vinītaruci and last: Bougainville Copper Ltd -[2018-02-13T08:26:54.116] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:26:54.119] [INFO] cheese - inserting 1000 documents. first: Able v. United States and last: Ait Melloul -[2018-02-13T08:26:54.140] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:26:54.288] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:26:54.332] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:26:54.342] [INFO] cheese - inserting 1000 documents. first: Christoph Bergner and last: Template:Pallacanestro Varese 1975-76 Euroleague champions -[2018-02-13T08:26:54.445] [INFO] cheese - inserting 1000 documents. first: Héliodore Cote and last: Category:Wikipedians contributing under Creative Commons 2.0 -[2018-02-13T08:26:54.445] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:26:54.524] [INFO] cheese - inserting 1000 documents. first: Oton Zupancic and last: Elisabeth von Schonau -[2018-02-13T08:26:54.525] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:26:54.599] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:26:54.774] [INFO] cheese - inserting 1000 documents. first: Portal:Scouting/Did you know.../January and last: Coathanger Antennae -[2018-02-13T08:26:54.786] [INFO] cheese - inserting 1000 documents. first: The Wall (2012 documentary film) and last: Module:Sidebar/doc -[2018-02-13T08:26:54.793] [INFO] cheese - inserting 1000 documents. first: Savo Martinovic and last: Richard Rostel -[2018-02-13T08:26:54.808] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T08:26:54.822] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:26:54.877] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:26:54.901] [INFO] cheese - inserting 1000 documents. first: Amr-Ibn-El-Ass and last: Category:Internments -[2018-02-13T08:26:54.954] [INFO] cheese - inserting 1000 documents. first: Ibitoke banana and last: Category:1990 in Arkansas -[2018-02-13T08:26:55.026] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:26:55.036] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:26:55.084] [INFO] cheese - inserting 1000 documents. first: Beli andeo and last: Dede Andersson -[2018-02-13T08:26:55.109] [INFO] cheese - inserting 1000 documents. first: Template:Pallacanestro Virtus Roma 1983-84 Euroleague champions and last: Ariola Japan -[2018-02-13T08:26:55.122] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T08:26:55.193] [INFO] cheese - inserting 1000 documents. first: Baillie and last: Anthony Gilbert (MP) -[2018-02-13T08:26:55.214] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:26:55.324] [INFO] cheese - inserting 1000 documents. first: Carcassonne (board game) and last: Jacqueline Lichtenberg -[2018-02-13T08:26:55.357] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:26:55.509] [INFO] cheese - inserting 1000 documents. first: Septariyanto and last: Estonia Australia relations -[2018-02-13T08:26:55.517] [INFO] cheese - batch complete in: 2.005 secs -[2018-02-13T08:26:55.544] [INFO] cheese - inserting 1000 documents. first: Lan Yue and last: File:Wind Riders-the crew 011.jpg -[2018-02-13T08:26:55.586] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:26:55.600] [INFO] cheese - inserting 1000 documents. first: Defense of Marriage Coalition and last: Untxillalitz -[2018-02-13T08:26:55.642] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:26:55.691] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:26:55.966] [INFO] cheese - inserting 1000 documents. first: Category:Haryana-related lists and last: Commas -[2018-02-13T08:26:55.968] [INFO] cheese - inserting 1000 documents. first: Tietz and last: Antonio Luna -[2018-02-13T08:26:55.970] [INFO] cheese - inserting 1000 documents. first: Category:1992 in Arkansas and last: Wikipedia:Sockpuppet investigations/ChahtaGal -[2018-02-13T08:26:56.038] [INFO] cheese - inserting 1000 documents. first: Saint-Onen and last: Old City Hall (Guelph) -[2018-02-13T08:26:56.060] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:26:56.097] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:26:56.132] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:26:56.138] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:26:56.183] [INFO] cheese - inserting 1000 documents. first: Nancy, Benton County and last: Laughing Irish Eyes -[2018-02-13T08:26:56.302] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:26:56.355] [INFO] cheese - inserting 1000 documents. first: Australia - Estonia relations and last: Sir William Borlase's Grammar Scool -[2018-02-13T08:26:56.388] [INFO] cheese - inserting 1000 documents. first: File:Mary05.jpg and last: Sharneyford -[2018-02-13T08:26:56.433] [INFO] cheese - inserting 1000 documents. first: Radio y Television Interamericana and last: Portal:Doctor Who/Selected story/33 -[2018-02-13T08:26:56.460] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:26:56.487] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:26:56.491] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T08:26:56.771] [INFO] cheese - inserting 1000 documents. first: Kerr-McGee Chemical Corporation and last: Al Nasr SC (Egypt) -[2018-02-13T08:26:56.834] [INFO] cheese - inserting 1000 documents. first: Al Wusta Wilayah, Sudan and last: Jose Agripino Barnet -[2018-02-13T08:26:56.838] [INFO] cheese - inserting 1000 documents. first: Beyond Foo and last: List of Yu-Gi-Oh! Duel Monsters episodes (season 4) -[2018-02-13T08:26:56.902] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:26:56.939] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:26:57.003] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:26:57.060] [INFO] cheese - inserting 1000 documents. first: File:ComodoDragon-Logo.png and last: David T. Griggs -[2018-02-13T08:26:57.066] [INFO] cheese - inserting 1000 documents. first: Lada Taiga and last: List of US senators from South Carolina -[2018-02-13T08:26:57.120] [INFO] cheese - inserting 1000 documents. first: Four Eyes and Six Guns and last: Senguerr River -[2018-02-13T08:26:57.195] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:26:57.255] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:26:57.312] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:26:57.347] [INFO] cheese - inserting 1000 documents. first: Sell Out (Pist.On album) and last: Spartaeinae -[2018-02-13T08:26:57.455] [INFO] cheese - inserting 1000 documents. first: Confederation Democratique des Travailleurs du Niger and last: Jean-Francois Hubert -[2018-02-13T08:26:57.476] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:26:57.522] [INFO] cheese - inserting 1000 documents. first: Methuen Treaty and last: Harve Bennett -[2018-02-13T08:26:57.547] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:26:57.644] [INFO] cheese - batch complete in: 2.127 secs -[2018-02-13T08:26:57.659] [INFO] cheese - inserting 1000 documents. first: Maurice Crum Jr. and last: AFL Western Conference -[2018-02-13T08:26:57.785] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:26:57.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Securxx and last: Draft:David J. Sugarbaker -[2018-02-13T08:26:57.855] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Crusades task force/Resources and last: The Bed-Sit Girl -[2018-02-13T08:26:57.886] [INFO] cheese - inserting 1000 documents. first: International Society for Soil Mechanics and Geotechnical Engineering and last: Category:Pico-Union, Los Angeles -[2018-02-13T08:26:57.912] [INFO] cheese - inserting 1000 documents. first: List of Yu-Gi-Oh! Duel Monsters episodes (season 3) and last: Category:2004 in Delaware -[2018-02-13T08:26:57.942] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:26:57.948] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:26:58.045] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:26:58.070] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:26:58.227] [INFO] cheese - inserting 1000 documents. first: Special Emergency Response Team and last: Phantom access -[2018-02-13T08:26:58.349] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:26:58.367] [INFO] cheese - inserting 1000 documents. first: Category:Bell Labs Unices and last: Joan V. Hartley -[2018-02-13T08:26:58.407] [INFO] cheese - inserting 1000 documents. first: AFL East and last: Treaty of Salisbury -[2018-02-13T08:26:58.436] [INFO] cheese - inserting 1000 documents. first: Jason Rae (musician) and last: Kochel catalogue -[2018-02-13T08:26:58.469] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:26:58.536] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:26:58.548] [INFO] cheese - inserting 1000 documents. first: File:The Lucky Star (film).jpg and last: Jeff Littlejohn -[2018-02-13T08:26:58.548] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:26:58.653] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:26:58.751] [INFO] cheese - inserting 1000 documents. first: Regimen Sanitatis Salerni and last: Bonari (disambiguation) -[2018-02-13T08:26:58.814] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:26:58.853] [INFO] cheese - inserting 1000 documents. first: Antoine de Pas de Feuquieres and last: Thomas, N. G. -[2018-02-13T08:26:58.867] [INFO] cheese - inserting 1000 documents. first: IFAF World Cup and last: Goody's -[2018-02-13T08:26:58.911] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:26:58.983] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:26:59.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fender bender and last: John A. Scali -[2018-02-13T08:26:59.194] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australian military history articles by quality/8 and last: Wikipedia:WikiProject Military history/World War I task force/Centenary drive -[2018-02-13T08:26:59.266] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:26:59.280] [INFO] cheese - inserting 1000 documents. first: Hassan Rajab Khatib and last: Hekate (disambiguation) -[2018-02-13T08:26:59.289] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:26:59.317] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dpiworx/BeGoodtoYourPlanet.com and last: Wikipedia:Articles for deletion/TechSandBox -[2018-02-13T08:26:59.389] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:26:59.428] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:26:59.452] [INFO] cheese - inserting 1000 documents. first: Vivir con alegria and last: Paraul lui Toader -[2018-02-13T08:26:59.492] [INFO] cheese - inserting 1000 documents. first: Category:1880 in Texas and last: Greece – Austria relations -[2018-02-13T08:26:59.549] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:26:59.636] [INFO] cheese - inserting 1000 documents. first: Category:Natural disasters in South Sudan and last: Erin Silver (character) -[2018-02-13T08:26:59.645] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:26:59.702] [INFO] cheese - inserting 1000 documents. first: Paul Émile Lecoq de Boisbaudran and last: Regent's Park -[2018-02-13T08:26:59.737] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:26:59.851] [INFO] cheese - inserting 1000 documents. first: Mueller's maneuver and last: Timothy Koogle -[2018-02-13T08:26:59.864] [INFO] cheese - batch complete in: 2.22 secs -[2018-02-13T08:26:59.886] [INFO] cheese - inserting 1000 documents. first: Alexandrovca and last: Wikipedia:WikiProject Outline of knowledge/Drafts/Outline of databases -[2018-02-13T08:26:59.893] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T08:26:59.985] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:27:00.015] [INFO] cheese - inserting 1000 documents. first: Category:Art Nouveau architecture in Strasbourg and last: Idris Lewis -[2018-02-13T08:27:00.016] [INFO] cheese - inserting 1000 documents. first: Church grim and last: Wikipedia:Votes for deletion/Log/2005 February 7 -[2018-02-13T08:27:00.142] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:27:00.155] [INFO] cheese - inserting 1000 documents. first: List of NSW TrainLink train routes and last: Very Warm for May -[2018-02-13T08:27:00.201] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:27:00.246] [INFO] cheese - inserting 1000 documents. first: Greece Austria relations and last: Shay Tards -[2018-02-13T08:27:00.284] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:27:00.354] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:27:00.387] [INFO] cheese - inserting 1000 documents. first: Corazon Iluminado and last: Uruemci -[2018-02-13T08:27:00.476] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:27:00.520] [INFO] cheese - inserting 1000 documents. first: Fluff (fiction) and last: Acupunct Med. -[2018-02-13T08:27:00.668] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:27:00.882] [INFO] cheese - inserting 1000 documents. first: Caenurgia togataria and last: C. Allin Cornell -[2018-02-13T08:27:01.037] [INFO] cheese - inserting 1000 documents. first: Francois de Bourbon, Count of Enghien and last: Aanekoski bus disaster -[2018-02-13T08:27:01.045] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:27:01.144] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:27:01.166] [INFO] cheese - inserting 1000 documents. first: Atherton Line and last: Tang-e Sar Asiab -[2018-02-13T08:27:01.189] [INFO] cheese - inserting 1000 documents. first: Sinișa Dragin and last: Pi1 Columbae -[2018-02-13T08:27:01.203] [INFO] cheese - inserting 1000 documents. first: Intrastate airline and last: Zenithar -[2018-02-13T08:27:01.270] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:27:01.333] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:27:01.368] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:27:01.402] [INFO] cheese - inserting 1000 documents. first: Portal:Netherlands/Featured article and last: Hypophosphorous acid -[2018-02-13T08:27:01.492] [INFO] cheese - inserting 1000 documents. first: Schumann resonance and last: Rolando Reategui -[2018-02-13T08:27:01.503] [INFO] cheese - batch complete in: 1.361 secs -[2018-02-13T08:27:01.550] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:27:01.635] [INFO] cheese - inserting 1000 documents. first: Category:Israeli football club seasons and last: Donald Attig -[2018-02-13T08:27:01.638] [INFO] cheese - inserting 1000 documents. first: Diary of a Wimpy Kid 3 and last: Wikipedia:Articles for deletion/Paris 2005 -[2018-02-13T08:27:01.693] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:27:01.752] [INFO] cheese - inserting 1000 documents. first: David Croft (TV producer) and last: Mad Max -[2018-02-13T08:27:01.777] [INFO] cheese - inserting 1000 documents. first: Eusebius Fermendzin and last: Union Europeenne de Radio-Television -[2018-02-13T08:27:01.785] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:27:01.837] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T08:27:01.847] [INFO] cheese - inserting 1000 documents. first: Tang Asiab-e Ajam and last: Qaleh Chenan Rural District -[2018-02-13T08:27:01.872] [INFO] cheese - inserting 1000 documents. first: Kara Pryor and last: File:CAN-S1930c-Bank of Prince Edward Island-2 Dollars (1877).jpg -[2018-02-13T08:27:01.906] [INFO] cheese - inserting 1000 documents. first: Portal:European Union/Selected article/10 and last: Javerlhac -[2018-02-13T08:27:01.910] [INFO] cheese - batch complete in: 2.046 secs -[2018-02-13T08:27:01.963] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:27:01.970] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:27:02.038] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:27:02.254] [INFO] cheese - inserting 1000 documents. first: Barons of Narpio and last: A'mak-i Hayal -[2018-02-13T08:27:02.326] [INFO] cheese - inserting 1000 documents. first: Timeline of the 2004 Pacific typhoon season and last: Samuel Taylor Marshall -[2018-02-13T08:27:02.347] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:27:02.510] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:27:02.516] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tupac-shakur-life.skyblog.com and last: File:Civilization Poster cropped.jpg -[2018-02-13T08:27:02.651] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:27:02.673] [INFO] cheese - inserting 1000 documents. first: Estación Central railway station and last: Bishop of Galway and Kilmacduagh -[2018-02-13T08:27:02.776] [INFO] cheese - inserting 1000 documents. first: Swieta Katarzyna, Lower Silesian Voivodeship and last: Wikipedia:Articles for deletion/List of World War II veterans -[2018-02-13T08:27:02.786] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:27:02.796] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:27:02.858] [INFO] cheese - inserting 1000 documents. first: File:CAN-S1931c-Bank of Prince Edward Island-5 Dollars (1877).jpg and last: Wikipedia:WikiProject Spam/Local/visakhapatnamairport.com -[2018-02-13T08:27:02.941] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/brinno.com and last: Phước Thành province -[2018-02-13T08:27:02.969] [INFO] cheese - inserting 1000 documents. first: Javerlhac, France and last: Ziaur Rahman (kabaddi) -[2018-02-13T08:27:02.996] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:27:03.035] [INFO] cheese - inserting 1000 documents. first: Lupsa River (Olt) and last: Jianliang "Jenrya" Lee -[2018-02-13T08:27:03.075] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:27:03.084] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T08:27:03.105] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:27:03.304] [INFO] cheese - inserting 1000 documents. first: Template:User English descent and last: Národní -[2018-02-13T08:27:03.389] [INFO] cheese - inserting 1000 documents. first: Hjoervard Ylfing and last: Francois-Andre Isambert -[2018-02-13T08:27:03.435] [INFO] cheese - inserting 1000 documents. first: David Linton and last: Home (Procol Harum album) -[2018-02-13T08:27:03.436] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:27:03.454] [INFO] cheese - inserting 1000 documents. first: CIT, Rajnandgoan and last: File:Finnthehalfgreat.jpg -[2018-02-13T08:27:03.488] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T08:27:03.668] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:27:03.747] [INFO] cheese - batch complete in: 1.237 secs -[2018-02-13T08:27:03.781] [INFO] cheese - inserting 1000 documents. first: Herodias and last: Lisle (town), Broome County, New York -[2018-02-13T08:27:03.823] [INFO] cheese - inserting 1000 documents. first: Neath FC and last: Postal Museum (Taiwan) -[2018-02-13T08:27:04.179] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Featured topics and last: Borredà -[2018-02-13T08:27:04.192] [INFO] cheese - batch complete in: 2.282 secs -[2018-02-13T08:27:04.221] [INFO] cheese - inserting 1000 documents. first: Children's Museum of Taipei and last: Health care in singapore -[2018-02-13T08:27:04.221] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:27:04.303] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:27:04.496] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:27:04.661] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Persib Bandung and last: ATCvet code QA16 -[2018-02-13T08:27:04.742] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:27:04.753] [INFO] cheese - inserting 1000 documents. first: File:Mama Runs Wild poster.jpg and last: Cassa di Risparmio di Fabriano e Cupramontana -[2018-02-13T08:27:04.757] [INFO] cheese - inserting 1000 documents. first: Parc des Sports Rene Froger and last: Template:Wally-nav -[2018-02-13T08:27:04.814] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:27:04.876] [INFO] cheese - inserting 1000 documents. first: Windsor (village), Broome County, New York and last: Jackson (town), Washington County, Wisconsin -[2018-02-13T08:27:04.932] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:27:04.934] [INFO] cheese - batch complete in: 1.938 secs -[2018-02-13T08:27:05.016] [INFO] cheese - inserting 1000 documents. first: 2001–02 Liga Nacional de Hockey Hielo season and last: Category:2008–09 in English football -[2018-02-13T08:27:05.129] [INFO] cheese - batch complete in: 1.461 secs -[2018-02-13T08:27:05.139] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-08-10 and last: Category:2004 in Finnish football -[2018-02-13T08:27:05.228] [INFO] cheese - inserting 1000 documents. first: Poivet and last: Kadra Bezpieczenstwa -[2018-02-13T08:27:05.241] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:27:05.243] [INFO] cheese - inserting 1000 documents. first: Yazgulyami language and last: Jessie Harlan -[2018-02-13T08:27:05.304] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:27:05.454] [INFO] cheese - batch complete in: 1.707 secs -[2018-02-13T08:27:05.594] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/moigorod-a.ucoz.ru and last: Gracias A Tí -[2018-02-13T08:27:05.658] [INFO] cheese - inserting 1000 documents. first: Sleeping with Ghosts (song) and last: Template:Cricketyearcat -[2018-02-13T08:27:05.673] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:27:05.740] [INFO] cheese - inserting 1000 documents. first: Adult educator and last: Sao Vicente Ferreira -[2018-02-13T08:27:05.757] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T08:27:05.780] [INFO] cheese - inserting 1000 documents. first: Saijiki and last: Chlaenius superbus -[2018-02-13T08:27:05.800] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:27:05.829] [INFO] cheese - inserting 1000 documents. first: Drumkeeragh Forest and last: John Costas (Greek revolutionary) -[2018-02-13T08:27:05.887] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:27:05.911] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:27:06.028] [INFO] cheese - inserting 1000 documents. first: Abbas Ali Khalatbari and last: Saint Pius Heights, Kentucky -[2018-02-13T08:27:06.154] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:27:06.171] [INFO] cheese - inserting 1000 documents. first: San Juan y Martinez, Cuba and last: Grunewald, Germany -[2018-02-13T08:27:06.265] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:27:06.306] [INFO] cheese - inserting 1000 documents. first: Rossel and last: Trakai District Municipality -[2018-02-13T08:27:06.384] [INFO] cheese - inserting 1000 documents. first: Sergey Afanasyev (racing driver) and last: Adhaim Dam -[2018-02-13T08:27:06.436] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:27:06.437] [INFO] cheese - inserting 1000 documents. first: Ryūkyū Trench and last: Predrag Filipović (footballer) -[2018-02-13T08:27:06.460] [INFO] cheese - inserting 1000 documents. first: Chlaenius superstes and last: Portal:Capital District/Selected article/Layout -[2018-02-13T08:27:06.470] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:27:06.559] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:27:06.643] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:27:06.673] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/ゼーロ/Archive and last: Template:Attached KML/Alabama State Route 237 -[2018-02-13T08:27:06.691] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Jwvoiland and last: Communes of the Gard departement -[2018-02-13T08:27:06.734] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:27:06.770] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:27:06.846] [INFO] cheese - inserting 1000 documents. first: St. Pius Heights, Kentucky and last: Ossetic language -[2018-02-13T08:27:06.878] [INFO] cheese - inserting 1000 documents. first: Jackson (village), Washington County, Wisconsin and last: Milford, New York -[2018-02-13T08:27:06.995] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:27:07.248] [INFO] cheese - batch complete in: 2.316 secs -[2018-02-13T08:27:07.275] [INFO] cheese - inserting 1000 documents. first: Jose Maria O'Neill and last: Breathing Space (album) -[2018-02-13T08:27:07.354] [INFO] cheese - inserting 1000 documents. first: Germán Ospina and last: File:Husslin.jpg -[2018-02-13T08:27:07.404] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:27:07.511] [INFO] cheese - inserting 1000 documents. first: Francois de Belleforest and last: George Clarke (handyman) -[2018-02-13T08:27:07.620] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:27:07.664] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:27:07.781] [INFO] cheese - inserting 1000 documents. first: Mehl-Mülhens-Rennen and last: Dahlerus -[2018-02-13T08:27:07.814] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Summit County, Utah and last: Tim Evans (British Army officer) -[2018-02-13T08:27:07.901] [INFO] cheese - inserting 1000 documents. first: Ram - Balaram and last: Category:1915 establishments in Vietnam -[2018-02-13T08:27:07.902] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:27:07.907] [INFO] cheese - inserting 1000 documents. first: File:Agathiyar 1972 .jpg and last: Wikipedia:WikiProject Spam/LinkReports/tocan.de -[2018-02-13T08:27:07.915] [INFO] cheese - inserting 1000 documents. first: List of Legendary Pokemon and last: Israel Kamakawiwo`ole -[2018-02-13T08:27:07.944] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:27:07.952] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:27:08.039] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:27:08.087] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:27:08.348] [INFO] cheese - inserting 1000 documents. first: Victor Jara (album) and last: File:Chet Atkins Almost Alone.jpg -[2018-02-13T08:27:08.365] [INFO] cheese - inserting 1000 documents. first: True Love (Clubstar's True Club Mix) and last: Okayasu Kiley -[2018-02-13T08:27:08.445] [INFO] cheese - inserting 1000 documents. first: Nishovaj and last: SC Lyon -[2018-02-13T08:27:08.455] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:27:08.471] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:27:08.562] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:27:08.600] [INFO] cheese - inserting 1000 documents. first: Penn State–Fogelsville Nittany Lions and last: Category:African-American museums in Florida -[2018-02-13T08:27:08.653] [INFO] cheese - inserting 1000 documents. first: Demitrios Tsafendas and last: David Yip -[2018-02-13T08:27:08.674] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:27:08.739] [INFO] cheese - inserting 1000 documents. first: Alfred Stephens and last: Willits Municipal Airport -[2018-02-13T08:27:08.767] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:27:08.794] [INFO] cheese - inserting 1000 documents. first: I Shall Rise and last: File:Radioclassique.png -[2018-02-13T08:27:08.830] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Keimoes-Upington and last: Cheryl L. Clarke -[2018-02-13T08:27:08.866] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:27:08.886] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:27:08.888] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:27:09.073] [INFO] cheese - inserting 1000 documents. first: Momo Adachi and last: James Thomson Callender -[2018-02-13T08:27:09.112] [INFO] cheese - inserting 1000 documents. first: Two stage theory and last: Last shuttle mission -[2018-02-13T08:27:09.126] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:27:09.132] [INFO] cheese - inserting 1000 documents. first: Category:African-American museums in California and last: Muskegon (disambiguation) -[2018-02-13T08:27:09.188] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:27:09.191] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:27:09.238] [INFO] cheese - inserting 1000 documents. first: Luliang Campaign and last: Michelangelo's Pieta (Florence) -[2018-02-13T08:27:09.331] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:27:09.415] [INFO] cheese - inserting 1000 documents. first: Morris (village), New York and last: Yue cuisine -[2018-02-13T08:27:09.499] [INFO] cheese - inserting 1000 documents. first: Saunderstown and last: Timeline of Brunswick -[2018-02-13T08:27:09.534] [INFO] cheese - inserting 1000 documents. first: Parramatta ferry wharf and last: Bergen Storsenter -[2018-02-13T08:27:09.672] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:27:09.685] [INFO] cheese - batch complete in: 2.437 secs -[2018-02-13T08:27:09.687] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:27:09.764] [INFO] cheese - inserting 1000 documents. first: Auberon E. W. M. Herbert and last: Metrobús -[2018-02-13T08:27:09.838] [INFO] cheese - inserting 1000 documents. first: Jackson Township, Geary County, Kansas and last: Paersi -[2018-02-13T08:27:09.910] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:27:09.920] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:27:09.923] [INFO] cheese - inserting 1000 documents. first: Final shuttle mission and last: Agelaioides oreopsar -[2018-02-13T08:27:09.954] [INFO] cheese - inserting 1000 documents. first: Frances Greenhow and last: Skytürk 360 -[2018-02-13T08:27:09.963] [INFO] cheese - inserting 1000 documents. first: Portal:College football/Selected article/30 and last: Hans Detterman Cronman -[2018-02-13T08:27:10.037] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:10.040] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:10.053] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:27:10.166] [INFO] cheese - inserting 1000 documents. first: 2008 World Polo Championship and last: Ass, Gas, or Cash (No One Rides for Free) -[2018-02-13T08:27:10.187] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T08:27:10.317] [INFO] cheese - inserting 1000 documents. first: East Ridge High School and last: Category:2006 in Nigeria -[2018-02-13T08:27:10.338] [INFO] cheese - inserting 1000 documents. first: Thumbay clinic and last: Usama al-Nujayfi -[2018-02-13T08:27:10.359] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:27:10.433] [INFO] cheese - inserting 1000 documents. first: Kuetahya dumlupinar ueniversitesi and last: President's House (Princeton University) -[2018-02-13T08:27:10.441] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:27:10.448] [INFO] cheese - inserting 1000 documents. first: File:Adam Helms, "Untitled (48 Portraits, 2010)," 2010, charcoal on paper (installation view).jpg and last: Category:1915 establishments in Washington (state) -[2018-02-13T08:27:10.466] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T08:27:10.511] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:27:10.568] [INFO] cheese - inserting 1000 documents. first: E-cash and last: Sports Unlimited -[2018-02-13T08:27:10.572] [INFO] cheese - inserting 1000 documents. first: Leonardo Bittencourt and last: (7283) 1989 TX15 -[2018-02-13T08:27:10.641] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:27:10.671] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:27:10.689] [INFO] cheese - inserting 1000 documents. first: Spring Branch Memorial High School and last: V. Ramakrishnan -[2018-02-13T08:27:10.802] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:27:10.914] [INFO] cheese - inserting 1000 documents. first: Szilvia Peter Szabo and last: Israel BaAliya -[2018-02-13T08:27:10.986] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:27:11.024] [INFO] cheese - inserting 1000 documents. first: Category:Torture in Cambodia and last: Saskatchewan Highway 943 -[2018-02-13T08:27:11.068] [INFO] cheese - inserting 1000 documents. first: File:Brian Kesinger21.jpg and last: Tawfiq-e-Elahi Chowdhury -[2018-02-13T08:27:11.098] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:27:11.119] [INFO] cheese - inserting 1000 documents. first: Petrie Hosken and last: 1997 French Open – Women's Doubles -[2018-02-13T08:27:11.127] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:27:11.242] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:27:11.248] [INFO] cheese - inserting 1000 documents. first: Template:Estonian Socialist Workers' Party/meta/shortname and last: Siniša Dobrasinović -[2018-02-13T08:27:11.308] [INFO] cheese - inserting 1000 documents. first: Canton cuisine and last: Self bondage -[2018-02-13T08:27:11.319] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:27:11.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fr.bioshock.wikia.com and last: File:Clientele-bonfires-on-heath.jpg -[2018-02-13T08:27:11.513] [INFO] cheese - batch complete in: 1.828 secs -[2018-02-13T08:27:11.566] [INFO] cheese - inserting 1000 documents. first: Knygnesiai and last: Fredegonda -[2018-02-13T08:27:11.570] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:27:11.689] [INFO] cheese - inserting 1000 documents. first: Mayor of Cagayan de Oro and last: Richard Hawkyns -[2018-02-13T08:27:11.760] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:27:11.832] [INFO] cheese - inserting 1000 documents. first: Herpes neonatorum and last: House of Mehrān -[2018-02-13T08:27:11.881] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:27:11.896] [INFO] cheese - inserting 1000 documents. first: Charles-Étienne Chaussegros de Léry and last: Israel Williams -[2018-02-13T08:27:11.985] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:27:12.039] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:27:12.115] [INFO] cheese - inserting 1000 documents. first: Hazel Schmoll and last: Lions (song) -[2018-02-13T08:27:12.174] [INFO] cheese - inserting 1000 documents. first: Mezősomlyó and last: Biel running days -[2018-02-13T08:27:12.191] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:27:12.282] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:27:12.307] [INFO] cheese - inserting 1000 documents. first: Emnambithi-Ladysmith Municipality and last: House of Ergadia -[2018-02-13T08:27:12.427] [INFO] cheese - inserting 1000 documents. first: National Festival of the Dividivi and last: Eugene Huetz -[2018-02-13T08:27:12.467] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:27:12.489] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:27:12.551] [INFO] cheese - inserting 1000 documents. first: Sensitive but unclassified and last: Wikipedia:Naming conventions (computer and video games) -[2018-02-13T08:27:12.635] [INFO] cheese - inserting 1000 documents. first: Self-certifying Filesystem and last: Life and Labour of the People in London -[2018-02-13T08:27:12.659] [INFO] cheese - inserting 1000 documents. first: File:Partido Socialista Democratico Espanol symbol, used at time of 1977 election.png and last: Category:1979 establishments in Curaçao -[2018-02-13T08:27:12.703] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:27:12.787] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:27:12.880] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:27:12.975] [INFO] cheese - inserting 1000 documents. first: Lions (Ben Haenow song) and last: Islamo-Leftism -[2018-02-13T08:27:13.023] [INFO] cheese - inserting 1000 documents. first: Red dwarf (star) and last: Bataguacu -[2018-02-13T08:27:13.052] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:27:13.060] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:27:13.112] [INFO] cheese - inserting 1000 documents. first: Gary Wackett and last: Wikipedia:WikiProject Spam/LinkReports/rtl-longueuil.qc.ca -[2018-02-13T08:27:13.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ORDINAL and last: Feurstein -[2018-02-13T08:27:13.189] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:27:13.206] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:27:13.363] [INFO] cheese - inserting 1000 documents. first: Chen Yun and last: Fritjov Capra -[2018-02-13T08:27:13.365] [INFO] cheese - inserting 1000 documents. first: Desire Cardinal Mercier and last: Goteborgs hogre latinlaroverk -[2018-02-13T08:27:13.422] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:27:13.520] [INFO] cheese - batch complete in: 2.006 secs -[2018-02-13T08:27:13.522] [INFO] cheese - inserting 1000 documents. first: Ryan Drese and last: Address Unknown -[2018-02-13T08:27:13.553] [INFO] cheese - inserting 1000 documents. first: Flight Commander (disambiguation) and last: The Squad (1981 film) -[2018-02-13T08:27:13.553] [INFO] cheese - inserting 1000 documents. first: Olympique de Béjà and last: Line of succession to the Greek Throne -[2018-02-13T08:27:13.631] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:27:13.649] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:27:13.721] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:27:13.780] [INFO] cheese - inserting 1000 documents. first: James Cope Christie and last: Giulio Cesare Tassoni -[2018-02-13T08:27:13.796] [INFO] cheese - inserting 1000 documents. first: Longest rivers of Missouri and last: Northeast Alabama Community College -[2018-02-13T08:27:13.797] [INFO] cheese - inserting 1000 documents. first: Ramon Pichot Girones and last: Dezso Szentgyorgyi -[2018-02-13T08:27:13.800] [INFO] cheese - inserting 1000 documents. first: RAMBAM and last: 508th Missile Squadron -[2018-02-13T08:27:13.836] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:27:13.852] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:27:13.918] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:27:13.937] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:27:14.162] [INFO] cheese - inserting 1000 documents. first: List of asteroids/158001-158100 and last: Villafranca di Forli -[2018-02-13T08:27:14.208] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T08:27:14.297] [INFO] cheese - inserting 1000 documents. first: Prača and last: Psyren chapters -[2018-02-13T08:27:14.342] [INFO] cheese - inserting 1000 documents. first: Category:Sikhism articles by importance and last: Category:A-Class Zoroastrianism articles -[2018-02-13T08:27:14.355] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:27:14.421] [INFO] cheese - inserting 1000 documents. first: File:Gremlins2poster.jpg and last: Pierre Courayer -[2018-02-13T08:27:14.439] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:27:14.442] [INFO] cheese - inserting 1000 documents. first: Bonington Halls and last: Eighth and I -[2018-02-13T08:27:14.476] [INFO] cheese - inserting 1000 documents. first: PICMG 1.3 and last: Hellaween: Pure Horror -[2018-02-13T08:27:14.503] [INFO] cheese - inserting 1000 documents. first: Pablo Roberto Munhoz Rodriguez and last: Francisco penalosa -[2018-02-13T08:27:14.528] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:27:14.552] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T08:27:14.593] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:27:14.588] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:27:15.020] [INFO] cheese - inserting 1000 documents. first: Sangeris River and last: St Helena Heliotrope -[2018-02-13T08:27:15.026] [INFO] cheese - inserting 1000 documents. first: Homer A. Stone and last: Category:Moroccan human rights activists -[2018-02-13T08:27:15.027] [INFO] cheese - inserting 1000 documents. first: Category:Redirects from Italian-language terms and last: Mohammad Al-Emlah -[2018-02-13T08:27:15.079] [INFO] cheese - inserting 1000 documents. first: Category:Yukon civil servants and last: Blue-grey Robin -[2018-02-13T08:27:15.085] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:27:15.093] [INFO] cheese - inserting 1000 documents. first: Tracked vehicle and last: Neoconservatives -[2018-02-13T08:27:15.143] [INFO] cheese - inserting 1000 documents. first: Ewing Oil and last: File:Palisadespark45.jpg -[2018-02-13T08:27:15.176] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:27:15.159] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:27:15.263] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:27:15.273] [INFO] cheese - inserting 1000 documents. first: BR Class 395 and last: Category:Spanish-American War monitors -[2018-02-13T08:27:15.314] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:27:15.389] [INFO] cheese - batch complete in: 1.85 secs -[2018-02-13T08:27:15.404] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:27:15.505] [INFO] cheese - inserting 1000 documents. first: Skylark (publisher) and last: Hokuriku ginkou -[2018-02-13T08:27:15.636] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:27:15.865] [INFO] cheese - inserting 1000 documents. first: Category:Greenlandic politicians and last: The Digger Farm -[2018-02-13T08:27:15.903] [INFO] cheese - inserting 1000 documents. first: Sulphur-bellied Tyrant-manakin and last: Wilhelm Schubert van Ehrenberg -[2018-02-13T08:27:15.934] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:15.938] [INFO] cheese - inserting 1000 documents. first: Shrishailam and last: Deux Cents Milles sous les mers ou le Cauchemar du pêcheur -[2018-02-13T08:27:15.972] [INFO] cheese - inserting 1000 documents. first: Category:1999 in the Republic of the Congo and last: Category:Crimean War naval ships of the Ottoman Empire -[2018-02-13T08:27:15.983] [INFO] cheese - inserting 1000 documents. first: Morrell Park, Baltimore and last: Wikipedia:Articles for deletion/Irmtraut Sell -[2018-02-13T08:27:15.988] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:27:16.033] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:27:16.042] [INFO] cheese - inserting 1000 documents. first: Xystophora scutatella and last: Mut'im ibn Adi -[2018-02-13T08:27:16.064] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:27:16.136] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:27:16.197] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:27:16.496] [INFO] cheese - inserting 1000 documents. first: Hokuriku ginko and last: Pokémon World (Single) -[2018-02-13T08:27:16.590] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:27:16.645] [INFO] cheese - inserting 1000 documents. first: Agreed Framework (1994) and last: Varcsaro -[2018-02-13T08:27:16.688] [INFO] cheese - inserting 1000 documents. first: TONY! and last: Category:Morecambe F.C. matches -[2018-02-13T08:27:16.708] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:27:16.737] [INFO] cheese - inserting 1000 documents. first: File:Pi Magazine, October 2012.jpg and last: Andamion Murataj -[2018-02-13T08:27:16.742] [INFO] cheese - inserting 1000 documents. first: West Bačka and last: Transfer stations -[2018-02-13T08:27:16.767] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:27:16.844] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:27:16.854] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:27:16.885] [INFO] cheese - inserting 1000 documents. first: Benedetto Pistrucci and last: Wikipedia:References -[2018-02-13T08:27:16.929] [INFO] cheese - inserting 1000 documents. first: Mangal Ram Premi and last: Huang Fuyuan -[2018-02-13T08:27:17.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fanny Eleonore Baur and last: List of people on stamps of Boyaca -[2018-02-13T08:27:17.046] [INFO] cheese - batch complete in: 1.655 secs -[2018-02-13T08:27:17.056] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:27:17.126] [INFO] cheese - inserting 1000 documents. first: Jose Veiga (footballer) and last: Burglen UR -[2018-02-13T08:27:17.172] [INFO] cheese - inserting 1000 documents. first: Prilipec and last: Category:Politics of Vaughan -[2018-02-13T08:27:17.212] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:27:17.235] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:27:17.275] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:27:17.298] [INFO] cheese - inserting 1000 documents. first: Video RAM (dual-ported DRAM) and last: Army ranks and insignia of the Russian Federation -[2018-02-13T08:27:17.447] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:27:17.451] [INFO] cheese - inserting 1000 documents. first: Category:Redirects from Cherokee-language terms and last: Komlenović -[2018-02-13T08:27:17.587] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:27:17.621] [INFO] cheese - inserting 1000 documents. first: Category:Malla rulers and last: Rotozaza -[2018-02-13T08:27:17.697] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:17.704] [INFO] cheese - inserting 1000 documents. first: Valea Lunga River (Turcu) and last: Wikipedia:Articles for deletion/Navicat -[2018-02-13T08:27:17.738] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:27:17.936] [INFO] cheese - inserting 1000 documents. first: La Vieille Dame et les pigeons and last: Wikipedia:Articles for deletion/Son Jeong-Ryun -[2018-02-13T08:27:17.975] [INFO] cheese - inserting 1000 documents. first: List of people on stamps of Cundinamarca and last: Jews of Provence -[2018-02-13T08:27:18.033] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:27:18.048] [INFO] cheese - inserting 1000 documents. first: Jaskinia Raj and last: Wikipedia:WikiProject Spam/LinkReports/ahkstudio.blogspot.com -[2018-02-13T08:27:18.060] [INFO] cheese - inserting 1000 documents. first: Eschbach (Markgraeflerland) and last: Grobner Bases -[2018-02-13T08:27:18.070] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:27:18.095] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T08:27:18.151] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:27:18.265] [INFO] cheese - inserting 1000 documents. first: Komlenovic and last: Qiam -[2018-02-13T08:27:18.287] [INFO] cheese - inserting 1000 documents. first: File:My Girls Animal Collective.jpeg and last: Wikipedia:WikiProject Spam/LinkReports/amerieonline.am.funpic.de -[2018-02-13T08:27:18.339] [INFO] cheese - inserting 1000 documents. first: Derek Anderson (footballl player) and last: HSR Layout -[2018-02-13T08:27:18.367] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:27:18.368] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:27:18.421] [INFO] cheese - inserting 1000 documents. first: Colorado State Highway 159 and last: Ugrin Csak (archbishop) -[2018-02-13T08:27:18.466] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T08:27:18.500] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:27:18.567] [INFO] cheese - inserting 1000 documents. first: Bunmi Koko and last: Epi Map -[2018-02-13T08:27:18.736] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:27:18.811] [INFO] cheese - inserting 1000 documents. first: File:Fast Break game.png and last: File:ShanghaiFilmGroup.jpg -[2018-02-13T08:27:18.880] [INFO] cheese - inserting 1000 documents. first: Ukrainian nationality law and last: USAT David C. Shanks -[2018-02-13T08:27:18.898] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:27:18.915] [INFO] cheese - inserting 1000 documents. first: Gaia and last: Terence O'Neill -[2018-02-13T08:27:18.927] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:27:18.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2009-10-12/Bing search and last: Born of osiris -[2018-02-13T08:27:18.998] [INFO] cheese - inserting 1000 documents. first: Aseptis ferruginea and last: Quantum configuration space -[2018-02-13T08:27:19.001] [INFO] cheese - inserting 1000 documents. first: Kal Shur and last: File:Static DVD cover.jpg -[2018-02-13T08:27:19.020] [INFO] cheese - batch complete in: 1.974 secs -[2018-02-13T08:27:19.041] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:27:19.124] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:27:19.139] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:27:19.248] [INFO] cheese - inserting 1000 documents. first: St Oswald's Church, Thornton in Lonsdale and last: Category:Rhode Island Rams baseball -[2018-02-13T08:27:19.257] [INFO] cheese - inserting 1000 documents. first: Centre democrate humaniste and last: La Legion d'Orient -[2018-02-13T08:27:19.297] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T08:27:19.329] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:27:19.372] [INFO] cheese - inserting 1000 documents. first: Nippon Flour Mills and last: Gonzalo Hernandez y Aguilar -[2018-02-13T08:27:19.514] [INFO] cheese - inserting 1000 documents. first: Gheorghe Ursu and last: Mt. Cook National Park -[2018-02-13T08:27:19.558] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:27:19.577] [INFO] cheese - inserting 1000 documents. first: Juergen Vollmer and last: List of asteroids/80801-80900 -[2018-02-13T08:27:19.613] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T08:27:19.635] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:19.668] [INFO] cheese - inserting 1000 documents. first: Venus 2000 and last: Nephelochloa -[2018-02-13T08:27:19.763] [INFO] cheese - inserting 1000 documents. first: Cole swindell and last: Template:Brazil Squad 2003 Women's World Cup -[2018-02-13T08:27:19.782] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:27:19.867] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:27:20.006] [INFO] cheese - inserting 1000 documents. first: James B. French and last: Flávio Dino -[2018-02-13T08:27:20.069] [INFO] cheese - inserting 1000 documents. first: Sassi's Greenbul and last: Institute Of Dental Sciences Bareilly -[2018-02-13T08:27:20.088] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:27:20.109] [INFO] cheese - inserting 1000 documents. first: J'ai vole la vie and last: Valea Alba River (Aries) -[2018-02-13T08:27:20.145] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:27:20.210] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:27:20.257] [INFO] cheese - inserting 1000 documents. first: File:Amado Carrillo Fuentes.jpg and last: Waiting (SpongeBob SquarePants) -[2018-02-13T08:27:20.339] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:27:20.384] [INFO] cheese - inserting 1000 documents. first: Duchenne-Erb paralysis. and last: Economy of São Paulo -[2018-02-13T08:27:20.435] [INFO] cheese - inserting 1000 documents. first: Template:Canada Squad 2003 Women's World Cup and last: Tan Bien District -[2018-02-13T08:27:20.435] [INFO] cheese - inserting 1000 documents. first: Munana, Avila and last: Ecoivres -[2018-02-13T08:27:20.448] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:27:20.466] [INFO] cheese - inserting 1000 documents. first: It (1927 film) and last: Leonard Peikoff -[2018-02-13T08:27:20.474] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:27:20.522] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:27:20.606] [INFO] cheese - batch complete in: 1.586 secs -[2018-02-13T08:27:20.647] [INFO] cheese - inserting 1000 documents. first: Category:Ourém Municipality and last: I3-6300T -[2018-02-13T08:27:20.733] [INFO] cheese - inserting 1000 documents. first: Ecole Secondaire catholique Theriault and last: Si On Avait Besoin D'une Cinquieme Saison -[2018-02-13T08:27:20.769] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:27:20.801] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T08:27:20.818] [INFO] cheese - inserting 1000 documents. first: Gonzalvo di Cordova and last: Referral -[2018-02-13T08:27:20.873] [INFO] cheese - inserting 1000 documents. first: Chester and West Cheshire Junction Railway and last: Category:Paksi SE seasons -[2018-02-13T08:27:20.953] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:27:20.955] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:27:21.068] [INFO] cheese - inserting 1000 documents. first: Tony the Wonder Horse and last: Doggie Style -[2018-02-13T08:27:21.125] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:27:21.155] [INFO] cheese - inserting 1000 documents. first: Hord, Illinois and last: Template:LCR style -[2018-02-13T08:27:21.205] [INFO] cheese - inserting 1000 documents. first: File:Edmonton Cracker Cats.png and last: Learning Commons -[2018-02-13T08:27:21.279] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:27:21.295] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:27:21.303] [INFO] cheese - inserting 1000 documents. first: Kardla meteorite crater and last: Wikipedia:BeBold -[2018-02-13T08:27:21.307] [INFO] cheese - inserting 1000 documents. first: I3-6100TE and last: Myrtus javanica -[2018-02-13T08:27:21.393] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:27:21.403] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:27:21.631] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Gibraltar and last: Mangaia Island Airport -[2018-02-13T08:27:21.648] [INFO] cheese - inserting 1000 documents. first: Say Yes (Elliott Smith song) and last: Chilul Hashem -[2018-02-13T08:27:21.697] [INFO] cheese - inserting 1000 documents. first: Canon EOS 350D DIGITAL and last: Wikipedia:Reference desk archive/Computing/Early/cleanup/double redirects/20050713/15 -[2018-02-13T08:27:21.705] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:27:21.732] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:27:21.783] [INFO] cheese - inserting 1000 documents. first: Janamashtmi and last: Scottish handball season 2010/11 -[2018-02-13T08:27:21.837] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:27:21.861] [INFO] cheese - inserting 1000 documents. first: Bhavik Gandhi and last: Свадьба -[2018-02-13T08:27:22.008] [INFO] cheese - inserting 1000 documents. first: Wooly rhino and last: Darach Ó Catháin -[2018-02-13T08:27:22.015] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:27:22.066] [INFO] cheese - inserting 1000 documents. first: Jambosa samarangensis and last: Jesse James, Jr. (film) -[2018-02-13T08:27:22.084] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:27:22.164] [INFO] cheese - inserting 1000 documents. first: Faces (film) and last: Canada lynx -[2018-02-13T08:27:22.193] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:27:22.192] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:27:22.389] [INFO] cheese - batch complete in: 1.783 secs -[2018-02-13T08:27:22.406] [INFO] cheese - inserting 1000 documents. first: Jawed nasir and last: USS BATR-20 -[2018-02-13T08:27:22.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/AvicBot 5 and last: Transcosmos Stadium Nagasaki -[2018-02-13T08:27:22.494] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:27:22.501] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:27:22.631] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Goh Lay Kuan and last: West Buffalo (disambiguation) -[2018-02-13T08:27:22.677] [INFO] cheese - inserting 1000 documents. first: Scottish Handball Season 2011/12 and last: Dak R'Lap District -[2018-02-13T08:27:22.687] [INFO] cheese - inserting 1000 documents. first: Svadba and last: USCGC Point Brown (WPB-82362) -[2018-02-13T08:27:22.687] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:27:22.696] [INFO] cheese - inserting 1000 documents. first: Police Contingent SWAT Unit (UTC, Malaysia) and last: File:WHR Studio Computer.jpg -[2018-02-13T08:27:22.734] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:27:22.747] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:27:22.795] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:27:22.861] [INFO] cheese - inserting 1000 documents. first: Template:Tls and last: Leo Clijsters -[2018-02-13T08:27:22.962] [INFO] cheese - inserting 1000 documents. first: Allied Victory Medal (Italy) and last: Sound radical -[2018-02-13T08:27:22.951] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:27:23.032] [INFO] cheese - inserting 1000 documents. first: Barbara Cox (writer) and last: William L. DeAndrea -[2018-02-13T08:27:23.057] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:27:23.136] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:27:23.144] [INFO] cheese - inserting 1000 documents. first: Woolbrook (disambiguation) and last: Epiphthora poliopasta -[2018-02-13T08:27:23.225] [INFO] cheese - inserting 1000 documents. first: Clean Cities award and last: File:California 1946 poster small.jpg -[2018-02-13T08:27:23.222] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:27:23.299] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:27:23.305] [INFO] cheese - inserting 1000 documents. first: Guido Forti and last: Kolsch (dialect) -[2018-02-13T08:27:23.318] [INFO] cheese - inserting 1000 documents. first: Archangelo Palmentieri and last: Xixiu District -[2018-02-13T08:27:23.393] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:27:23.397] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:27:23.555] [INFO] cheese - inserting 1000 documents. first: Hanriot HD-3 and last: Recopa Sudamericana (disambiguation) -[2018-02-13T08:27:23.632] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:27:23.642] [INFO] cheese - inserting 1000 documents. first: Socialist Labour Party of Croatia and last: Tsander (crater) -[2018-02-13T08:27:23.669] [INFO] cheese - inserting 1000 documents. first: Canadian lynx and last: Black Sabbath (album) -[2018-02-13T08:27:23.675] [INFO] cheese - inserting 1000 documents. first: Waldbuettelbrunn and last: Jacques-Andre Istel -[2018-02-13T08:27:23.686] [INFO] cheese - inserting 1000 documents. first: Category:Czech ice hockey coaches and last: File:Focoth3b.jpg -[2018-02-13T08:27:23.725] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T08:27:23.742] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:27:23.782] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:27:23.855] [INFO] cheese - batch complete in: 1.466 secs -[2018-02-13T08:27:23.880] [INFO] cheese - inserting 1000 documents. first: Kepler-25b and last: Shinee World 2012 (arena tour) -[2018-02-13T08:27:23.925] [INFO] cheese - inserting 1000 documents. first: File:LUX (soap) logo.png and last: Breath of Fire 6 -[2018-02-13T08:27:23.980] [INFO] cheese - inserting 1000 documents. first: List of Thai royal consorts and last: Only Men Aloud! (album) -[2018-02-13T08:27:24.015] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:27:24.117] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:27:24.150] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:27:24.196] [INFO] cheese - inserting 1000 documents. first: Karel Hartmann and last: 2308 Schilt -[2018-02-13T08:27:24.236] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:27:24.329] [INFO] cheese - inserting 1000 documents. first: Template:Kolkata Metro color and last: 2011–12 Gimnàstic de Tarragona season -[2018-02-13T08:27:24.490] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:24.639] [INFO] cheese - inserting 1000 documents. first: Power play (disambiguation) and last: International Baseball League of Australia -[2018-02-13T08:27:24.746] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:27:24.750] [INFO] cheese - inserting 1000 documents. first: Lotta Hedstrom and last: Herraengs Gruf AB -[2018-02-13T08:27:24.792] [INFO] cheese - inserting 1000 documents. first: Zakarpattia region and last: Chemotype -[2018-02-13T08:27:24.794] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:27:24.874] [INFO] cheese - inserting 1000 documents. first: Category:Lists of ambassadors of Pakistan and last: Broidy -[2018-02-13T08:27:24.936] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:27:24.938] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:27:24.942] [INFO] cheese - inserting 1000 documents. first: Lincoln-Douglas debates of 1858 and last: Diplazoptilon -[2018-02-13T08:27:25.094] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:27:25.187] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 412 and last: Category:Polish people of the American Civil War -[2018-02-13T08:27:25.238] [INFO] cheese - inserting 1000 documents. first: 1950 Titleholders Championship and last: Category:Breast cancer organizations -[2018-02-13T08:27:25.253] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:27:25.333] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:27:25.346] [INFO] cheese - inserting 1000 documents. first: 1854 Skvortsov and last: 7947 Toland -[2018-02-13T08:27:25.486] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:27:25.519] [INFO] cheese - inserting 1000 documents. first: Vishwamitra and last: Special Collection Service -[2018-02-13T08:27:25.575] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:27:25.614] [INFO] cheese - inserting 1000 documents. first: Alfred Page (priest) and last: Template:User pno-3 -[2018-02-13T08:27:25.741] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:27:25.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alexander Belikov and last: Thapar University -[2018-02-13T08:27:25.907] [INFO] cheese - inserting 1000 documents. first: Dimorphocoma and last: Ville Oksanen -[2018-02-13T08:27:26.026] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:27:26.058] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:27:26.070] [INFO] cheese - inserting 1000 documents. first: Peso (song) and last: Jin invasion of Song -[2018-02-13T08:27:26.114] [INFO] cheese - inserting 1000 documents. first: Wadsworth and last: Stacks -[2018-02-13T08:27:26.124] [INFO] cheese - inserting 1000 documents. first: Nguyễn The Loc and last: Aszubeszterce -[2018-02-13T08:27:26.209] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:27:26.217] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:27:26.290] [INFO] cheese - batch complete in: 2.435 secs -[2018-02-13T08:27:26.308] [INFO] cheese - inserting 1000 documents. first: Portal:Religion/On this day/April 6 and last: Teardrops (elena paparizou song) -[2018-02-13T08:27:26.322] [INFO] cheese - inserting 1000 documents. first: List of Australian rugby league grand final records and last: Shōzō Sakurai -[2018-02-13T08:27:26.349] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:27:26.426] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:27:26.497] [INFO] cheese - inserting 1000 documents. first: Brookline-Newfane Bridge and last: Bracted nutrush -[2018-02-13T08:27:26.500] [INFO] cheese - inserting 1000 documents. first: Jason D. Brown and last: Clay Triple-lines -[2018-02-13T08:27:26.538] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:27:26.587] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:27:26.704] [INFO] cheese - inserting 1000 documents. first: Jin conquest of China and last: Category:Unincorporated communities in Wisconsin by county -[2018-02-13T08:27:26.724] [INFO] cheese - inserting 1000 documents. first: Jamieson City and last: Kari MacLean -[2018-02-13T08:27:26.771] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:27:26.823] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:27:27.040] [INFO] cheese - inserting 1000 documents. first: Sports in England and last: Sher-e-Kashmir University of Agricultural Sciences & Technology of Jammu -[2018-02-13T08:27:27.089] [INFO] cheese - inserting 1000 documents. first: Vector Slime and last: Category:United Kingdom Acts of Parliament 1832 -[2018-02-13T08:27:27.124] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:27:27.186] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:27:27.263] [INFO] cheese - inserting 1000 documents. first: File:Andy Grammer - Honey, I'm Good.png and last: Of Course, the Motorists -[2018-02-13T08:27:27.273] [INFO] cheese - inserting 1000 documents. first: Sorcerer's Apprentice Syndrome and last: Brian Peterson (footballer) -[2018-02-13T08:27:27.324] [INFO] cheese - inserting 1000 documents. first: Rule of consensus and last: Alejandro Urtasun -[2018-02-13T08:27:27.382] [INFO] cheese - inserting 1000 documents. first: Duke MacIsaac and last: Faulhaber -[2018-02-13T08:27:27.455] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:27:27.438] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:27:27.508] [INFO] cheese - batch complete in: 1.482 secs -[2018-02-13T08:27:27.548] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:27:27.572] [INFO] cheese - inserting 1000 documents. first: Never Could Toe the Mark (song) and last: Singapore at the 2002 Asian Games -[2018-02-13T08:27:27.733] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:27:27.758] [INFO] cheese - inserting 1000 documents. first: Beech Fork Lake Wildlife Management Area and last: Wikipedia:Articles for deletion/Menara-e-Noor -[2018-02-13T08:27:27.843] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:27:27.903] [INFO] cheese - inserting 1000 documents. first: Félicien Rops and last: Motor Torpedo Boat PT-109 -[2018-02-13T08:27:28.036] [INFO] cheese - inserting 1000 documents. first: José Iturbi International Music Competition and last: Fodhil Hadjadj -[2018-02-13T08:27:28.101] [INFO] cheese - batch complete in: 1.811 secs -[2018-02-13T08:27:28.133] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:27:28.183] [INFO] cheese - inserting 1000 documents. first: Campeonato Brasileiro Série D 2009 and last: File:Majors Pro.jpg -[2018-02-13T08:27:28.236] [INFO] cheese - inserting 1000 documents. first: Michael Esper and last: 2003–04 Bosnia and Herzegovina Football Cup -[2018-02-13T08:27:28.258] [INFO] cheese - inserting 1000 documents. first: Le Plessis-Pate and last: Magha (nakshatra) -[2018-02-13T08:27:28.341] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:27:28.343] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:27:28.358] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:27:28.415] [INFO] cheese - inserting 1000 documents. first: Fronteira, Minas Gerais and last: Hannover CL III -[2018-02-13T08:27:28.417] [INFO] cheese - inserting 1000 documents. first: NFL GameDay Highlights and last: Cecil White (footballer) -[2018-02-13T08:27:28.462] [INFO] cheese - inserting 1000 documents. first: Usman Tariq (cricketer) and last: File:Hamburg-Altona (1989).jpg -[2018-02-13T08:27:28.486] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:27:28.565] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:27:28.611] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:27:28.770] [INFO] cheese - inserting 1000 documents. first: File:MiniFlex1973.jpg and last: Duwag -[2018-02-13T08:27:28.803] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:27:28.827] [INFO] cheese - inserting 1000 documents. first: Oblique view map and last: 12+1 -[2018-02-13T08:27:28.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adithya Srinivasan and last: Shulkesh Zangava -[2018-02-13T08:27:28.946] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:27:28.978] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2009 October 10 and last: Associação Internacional dos Trabalhadores – Secção Portuguesa -[2018-02-13T08:27:29.014] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:27:29.043] [INFO] cheese - inserting 1000 documents. first: Category:Festivals in Wyoming and last: Cyrillomethodian -[2018-02-13T08:27:29.150] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:27:29.302] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:27:29.352] [INFO] cheese - inserting 1000 documents. first: Jarmund Øyen and last: For We Are -[2018-02-13T08:27:29.404] [INFO] cheese - inserting 1000 documents. first: John Brack and last: Category:User mt-N -[2018-02-13T08:27:29.428] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:27:29.563] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:27:29.637] [INFO] cheese - inserting 1000 documents. first: CN electric multiple unit and last: Template:Fs team Luch Yekaterinburg -[2018-02-13T08:27:29.763] [INFO] cheese - inserting 1000 documents. first: Bibesco, Elizabeth and last: VW Corrado -[2018-02-13T08:27:29.767] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:27:29.811] [INFO] cheese - inserting 1000 documents. first: Phuleli and last: 8700 BC -[2018-02-13T08:27:29.846] [INFO] cheese - inserting 1000 documents. first: Stuart Reid (English journalist) and last: Shin-Keisei N800 series -[2018-02-13T08:27:29.876] [INFO] cheese - inserting 1000 documents. first: Suicide (novel) and last: Category:Anglo-Egyptian Sudan -[2018-02-13T08:27:29.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/diamant.net and last: 19" -[2018-02-13T08:27:29.911] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:27:29.956] [INFO] cheese - batch complete in: 1.854 secs -[2018-02-13T08:27:29.971] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:27:30.008] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:27:30.036] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:30.252] [INFO] cheese - inserting 1000 documents. first: File:Stand By Your Man LL.jpg and last: A Mandate for Change -[2018-02-13T08:27:30.381] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:27:30.494] [INFO] cheese - inserting 1000 documents. first: Sony Pictures Studios and last: Kinky Boots (film) -[2018-02-13T08:27:30.541] [INFO] cheese - inserting 1000 documents. first: Gingko nut and last: List of minor planets/29501–29600 -[2018-02-13T08:27:30.576] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:27:30.664] [INFO] cheese - inserting 1000 documents. first: Mike Keller and last: TBLG -[2018-02-13T08:27:30.678] [INFO] cheese - inserting 1000 documents. first: Template:Fs team Metallurg Serov and last: Wikipedia:Articles for deletion/Dwaitham -[2018-02-13T08:27:30.737] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:27:30.744] [INFO] cheese - inserting 1000 documents. first: José Assis and last: Sándor Szabó (disambiguation) -[2018-02-13T08:27:30.817] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:27:30.838] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:27:30.909] [INFO] cheese - inserting 1000 documents. first: Shuangluan District and last: Wikipedia:WikiProject Spam/LinkReports/techsuperb.com -[2018-02-13T08:27:30.906] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:27:31.043] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:27:31.082] [INFO] cheese - inserting 1000 documents. first: Beige box and last: 12th September -[2018-02-13T08:27:31.244] [INFO] cheese - inserting 1000 documents. first: Eastgippsland and last: Ferrey -[2018-02-13T08:27:31.254] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:27:31.350] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:27:31.501] [INFO] cheese - inserting 1000 documents. first: Chebuloyl and last: Mortal Kombat: Mythologies -[2018-02-13T08:27:31.505] [INFO] cheese - inserting 1000 documents. first: Tabaré (disambiguation) and last: Barnstable Hundred -[2018-02-13T08:27:31.569] [INFO] cheese - inserting 1000 documents. first: Spermophilus mohavensis and last: Peace Prize of the German Book Trade -[2018-02-13T08:27:31.586] [INFO] cheese - inserting 1000 documents. first: USRC James C. Dobbin (1853) and last: Admiralty Lake -[2018-02-13T08:27:31.636] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:27:31.645] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:27:31.758] [INFO] cheese - inserting 1000 documents. first: Joes, Colorado and last: International Federation of Rock Art Organizations -[2018-02-13T08:27:31.849] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:27:31.863] [INFO] cheese - batch complete in: 1.287 secs -[2018-02-13T08:27:32.002] [INFO] cheese - inserting 1000 documents. first: Category:1927 establishments in Bosnia and Herzegovina and last: Template:Country data Velsen -[2018-02-13T08:27:32.019] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:27:32.381] [INFO] cheese - batch complete in: 1.543 secs -[2018-02-13T08:27:32.558] [INFO] cheese - inserting 1000 documents. first: Öhlund and last: Earth Defense Force -[2018-02-13T08:27:32.595] [INFO] cheese - inserting 1000 documents. first: Roloff Township, North Dakota and last: Template:Latest preview release/Netscape Navigator -[2018-02-13T08:27:32.650] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:27:32.657] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for creation/Rogue Valley Terminal Railroad Corporation and last: Chargar -[2018-02-13T08:27:32.736] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:27:32.887] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:27:32.900] [INFO] cheese - inserting 1000 documents. first: September 12th and last: The Magic School Bus Gets Ants In It's Pants -[2018-02-13T08:27:32.933] [INFO] cheese - inserting 1000 documents. first: George Seurat and last: List of surnames in Russian Federation -[2018-02-13T08:27:33.036] [INFO] cheese - inserting 1000 documents. first: Tina Romanus and last: File:Sophia and jayne.jpg -[2018-02-13T08:27:33.059] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T08:27:33.135] [INFO] cheese - batch complete in: 1.881 secs -[2018-02-13T08:27:33.146] [INFO] cheese - inserting 1000 documents. first: Kent, Kansas and last: Template:Country data Oryol -[2018-02-13T08:27:33.210] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:27:33.333] [INFO] cheese - inserting 1000 documents. first: 6teen and last: Neubidschow -[2018-02-13T08:27:33.345] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:27:33.467] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:27:33.518] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Parmer County, Texas and last: Svendsen -[2018-02-13T08:27:33.621] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:33.631] [INFO] cheese - inserting 1000 documents. first: La Barra and last: Maltese Premier League 1918–19 -[2018-02-13T08:27:33.701] [INFO] cheese - inserting 1000 documents. first: Charkar and last: Đồng Phúc, Bac Giang -[2018-02-13T08:27:33.738] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:27:33.840] [INFO] cheese - inserting 1000 documents. first: Aleksandr Popov (canoeist) and last: Carey Cash -[2018-02-13T08:27:33.847] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:27:33.863] [INFO] cheese - inserting 1000 documents. first: John T. McNaughton Bridge and last: Template:Country data Terrassa -[2018-02-13T08:27:33.933] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:27:33.954] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:27:34.055] [INFO] cheese - inserting 1000 documents. first: Mac Evangelist and last: Satyendra Prasanno Sinha, 1st Baron Sinha of Raipur -[2018-02-13T08:27:34.185] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:27:34.365] [INFO] cheese - inserting 1000 documents. first: Mora Ferenc and last: Drahomír Kadlec -[2018-02-13T08:27:34.373] [INFO] cheese - inserting 1000 documents. first: Trinity Hospital (Augusta, Georgia) and last: Wikipedia:Articles for deletion/Joshua Plague -[2018-02-13T08:27:34.501] [INFO] cheese - inserting 1000 documents. first: Maltese Premier League 1919–20 and last: Category:Mississippi elections, 2004 -[2018-02-13T08:27:34.502] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:27:34.513] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:27:34.596] [INFO] cheese - inserting 1000 documents. first: Davenport Center and last: Template:Country data Kutaisi -[2018-02-13T08:27:34.626] [INFO] cheese - inserting 1000 documents. first: Đồng Sơn, Bac Giang and last: Jumbor -[2018-02-13T08:27:34.645] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:27:34.704] [INFO] cheese - inserting 1000 documents. first: Altyn Mosque and last: Marcelle Bergerol -[2018-02-13T08:27:34.718] [INFO] cheese - inserting 1000 documents. first: Music of Venezuela and last: Unitary representation -[2018-02-13T08:27:34.719] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:27:34.740] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:27:34.847] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:27:34.852] [INFO] cheese - inserting 1000 documents. first: Janet mead and last: Ginataan -[2018-02-13T08:27:34.941] [INFO] cheese - batch complete in: 1.805 secs -[2018-02-13T08:27:34.998] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:27:35.243] [INFO] cheese - inserting 1000 documents. first: West Kwa languages and last: HOAC H36 -[2018-02-13T08:27:35.288] [INFO] cheese - inserting 1000 documents. first: BWV 1061a and last: Template:NYARC -[2018-02-13T08:27:35.304] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:27:35.328] [INFO] cheese - inserting 1000 documents. first: Autonomous District of Kosovo and Metohija and last: Thach An District -[2018-02-13T08:27:35.331] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bert Tatham and last: Greater Kansas City -[2018-02-13T08:27:35.332] [INFO] cheese - inserting 1000 documents. first: Afro-juju and last: Daphne (Greek mythology) -[2018-02-13T08:27:35.380] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:27:35.424] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:27:35.425] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:27:35.450] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:27:35.468] [INFO] cheese - inserting 1000 documents. first: Vicky Hall and last: John Lund (politician) -[2018-02-13T08:27:35.555] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:27:35.822] [INFO] cheese - inserting 1000 documents. first: Mahjong Hourouki Classic and last: 1st Independent Battery Wisconsin Light Artillery -[2018-02-13T08:27:35.909] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:27:35.920] [INFO] cheese - inserting 1000 documents. first: Category:Publishing companies established in 1951 and last: Daegu Hyehwa Girls' High School -[2018-02-13T08:27:36.003] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:27:36.089] [INFO] cheese - inserting 1000 documents. first: Category:People from Ilinden Municipality and last: Category:Castles in Flanders -[2018-02-13T08:27:36.113] [INFO] cheese - inserting 1000 documents. first: Template:2014 Winter Olympics men's ice hockey game A1 and last: Loire-Nieuport LN.30 -[2018-02-13T08:27:36.119] [INFO] cheese - inserting 1000 documents. first: 2009 Masters of Formula 3 and last: Category:Rodent articles by quality -[2018-02-13T08:27:36.122] [INFO] cheese - inserting 1000 documents. first: K. Wah International Holdings Ltd. and last: Wikipedia:CAES -[2018-02-13T08:27:36.174] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:27:36.188] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:27:36.202] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:27:36.241] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:27:36.280] [INFO] cheese - inserting 1000 documents. first: Kazuo Aoki and last: James Fletcher (entomologist) -[2018-02-13T08:27:36.397] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:27:36.641] [INFO] cheese - inserting 1000 documents. first: Simulated anealing and last: List of minor planets/25001–25100 -[2018-02-13T08:27:36.733] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:27:36.749] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Western Australia and last: Maupertus-sur-Mer Airfield -[2018-02-13T08:27:36.756] [INFO] cheese - inserting 1000 documents. first: Easily recognizable code and last: Peter–Weyl theorem -[2018-02-13T08:27:36.836] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:27:36.867] [INFO] cheese - inserting 1000 documents. first: List of multilingual regions and last: Pithecellobium triflorum -[2018-02-13T08:27:36.918] [INFO] cheese - inserting 1000 documents. first: Martin Scorcese and last: The Oliver Pocher Show -[2018-02-13T08:27:36.986] [INFO] cheese - inserting 1000 documents. first: Template:Country data Kramatorsk and last: Wikipedia:WikiProject Professional wrestling/Roster watchlist -[2018-02-13T08:27:37.018] [INFO] cheese - batch complete in: 2.077 secs -[2018-02-13T08:27:37.095] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:27:37.099] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:27:37.102] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:27:37.258] [INFO] cheese - inserting 1000 documents. first: Marek Saganowski and last: Parker v South Eastern Rly Co -[2018-02-13T08:27:37.365] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:27:37.389] [INFO] cheese - inserting 1000 documents. first: Category:Copper Age Europe and last: Buffalo exchange -[2018-02-13T08:27:37.443] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:27:37.555] [INFO] cheese - inserting 1000 documents. first: Mohamed Thakurufaanu and last: Category:Schools in Caribou County, Idaho -[2018-02-13T08:27:37.667] [INFO] cheese - inserting 1000 documents. first: Category:Mark Knopfler and last: Hill River (disambiguation) -[2018-02-13T08:27:37.668] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:27:37.732] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:27:37.775] [INFO] cheese - inserting 1000 documents. first: Snapshot (video game) and last: Rob Lloyd (Comedian) -[2018-02-13T08:27:37.855] [INFO] cheese - inserting 1000 documents. first: Samanea guajacifolia and last: Anthony Waldman House -[2018-02-13T08:27:37.898] [INFO] cheese - inserting 1000 documents. first: Makau Musyoki and last: Esteban Alvarado -[2018-02-13T08:27:37.921] [INFO] cheese - batch complete in: 1.733 secs -[2018-02-13T08:27:37.973] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:27:38.043] [INFO] cheese - inserting 1000 documents. first: Franco Rivera and last: Riex VD -[2018-02-13T08:27:38.101] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:27:38.209] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:27:38.267] [INFO] cheese - inserting 1000 documents. first: Scheherazade (Rimsky-Korsakov) and last: Category:Wikipedians by alma mater: University of Kansas -[2018-02-13T08:27:38.375] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:27:38.423] [INFO] cheese - inserting 1000 documents. first: Category:Education in Caribou County, Idaho and last: Joseph Welsh -[2018-02-13T08:27:38.441] [INFO] cheese - inserting 1000 documents. first: Kerala Gauthameeyam and last: Vernon R. Boeckmann -[2018-02-13T08:27:38.517] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:38.590] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:27:38.694] [INFO] cheese - inserting 1000 documents. first: Expelled the movie and last: The Last Pin -[2018-02-13T08:27:38.702] [INFO] cheese - inserting 1000 documents. first: W207BG and last: Wikipedia:WikiProject Spam/LinkReports/pennparanormal.thestreetgods.com -[2018-02-13T08:27:38.714] [INFO] cheese - inserting 1000 documents. first: Tuan Giao District and last: Zarrik -[2018-02-13T08:27:38.716] [INFO] cheese - inserting 1000 documents. first: Anthony Van Dyck and last: Mike Levey -[2018-02-13T08:27:38.741] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:27:38.766] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:27:38.828] [INFO] cheese - inserting 1000 documents. first: 1999-2000 Zimbabwean cricket season and last: Category:Salford City F.C. players -[2018-02-13T08:27:38.833] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:27:38.905] [INFO] cheese - batch complete in: 1.886 secs -[2018-02-13T08:27:38.940] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:27:39.100] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/12stedentocht.tk and last: Mediterranean Interregional Committee -[2018-02-13T08:27:39.144] [INFO] cheese - inserting 1000 documents. first: Aesthetic Dentistry and last: Vålerenga IF -[2018-02-13T08:27:39.190] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:27:39.229] [INFO] cheese - inserting 1000 documents. first: Bartini T-117 and last: Category:Rosoman Municipality -[2018-02-13T08:27:39.330] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:27:39.383] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:27:39.435] [INFO] cheese - inserting 1000 documents. first: Category:Boxers from Maryland and last: Wikipedia:Articles for deletion/Democratic Labour Party (UK) -[2018-02-13T08:27:39.464] [INFO] cheese - inserting 1000 documents. first: Zarik, Iran and last: Category:Wikipedian Toronto Blue Jays fans -[2018-02-13T08:27:39.517] [INFO] cheese - inserting 1000 documents. first: Carol Migden and last: Ra-4 -[2018-02-13T08:27:39.600] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:27:39.613] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:27:39.619] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:27:39.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Archive debates/2006 November index and last: Harper's and Queen -[2018-02-13T08:27:39.766] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:27:39.899] [INFO] cheese - inserting 1000 documents. first: Botswanan records in athletics and last: Clément Cailleau -[2018-02-13T08:27:39.924] [INFO] cheese - inserting 1000 documents. first: Template:Country data Llanes and last: Template:Country data Aracaju -[2018-02-13T08:27:40.023] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:27:40.030] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:27:40.151] [INFO] cheese - inserting 1000 documents. first: Template:TMbegin/doc and last: Edward H. Griffith -[2018-02-13T08:27:40.190] [INFO] cheese - inserting 1000 documents. first: Serenity film and last: Category:Geography of Indianapolis -[2018-02-13T08:27:40.202] [INFO] cheese - inserting 1000 documents. first: Ptolemy III of Egypt and last: Duffs device -[2018-02-13T08:27:40.224] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:27:40.297] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:27:40.371] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:27:40.483] [INFO] cheese - inserting 1000 documents. first: Raphael Semmes and last: Marc Rich -[2018-02-13T08:27:40.491] [INFO] cheese - inserting 1000 documents. first: Fitzralph, Richard and last: Horrors (GARO) -[2018-02-13T08:27:40.626] [INFO] cheese - inserting 1000 documents. first: Template:User from Cape Verde/doc and last: Richard Battley -[2018-02-13T08:27:40.669] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:27:40.673] [INFO] cheese - batch complete in: 1.768 secs -[2018-02-13T08:27:40.701] [INFO] cheese - inserting 1000 documents. first: Master Players Concert Series and last: 1901 Maryland Aggies football team -[2018-02-13T08:27:40.716] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:27:40.829] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:27:40.842] [INFO] cheese - inserting 1000 documents. first: Onorede Ehwareme and last: Mariana Roriz -[2018-02-13T08:27:40.933] [INFO] cheese - inserting 1000 documents. first: Turkmenneft and last: Kings Creek (Mississippi River Ontario) -[2018-02-13T08:27:40.958] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:27:41.005] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:27:41.184] [INFO] cheese - inserting 1000 documents. first: Category:Women in finance and last: Category:Hawaii Rainbow Warriors baseball players -[2018-02-13T08:27:41.196] [INFO] cheese - inserting 1000 documents. first: Minister of Agriculture, Forestry and Fisheries and last: Dave McCanles -[2018-02-13T08:27:41.250] [INFO] cheese - inserting 1000 documents. first: File:Killafornia.jpg and last: NZR DXR class -[2018-02-13T08:27:41.257] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:27:41.263] [INFO] cheese - inserting 1000 documents. first: The Herd (1979 film) and last: Madeline Island, Wis. -[2018-02-13T08:27:41.287] [INFO] cheese - batch complete in: 1.668 secs -[2018-02-13T08:27:41.362] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:27:41.369] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:27:41.494] [INFO] cheese - inserting 1000 documents. first: Billiebob Ultralight Flightpark and last: Wikipedia:WikiProject Spam/LinkReports/ridof-acne.com -[2018-02-13T08:27:41.571] [INFO] cheese - inserting 1000 documents. first: Single Carrier FDMA (SC-FDMA) and last: Template:A Region D -[2018-02-13T08:27:41.606] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:27:41.645] [INFO] cheese - inserting 1000 documents. first: Williams Lake First Nation and last: Postmodern vertigo -[2018-02-13T08:27:41.696] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:41.831] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:27:41.996] [INFO] cheese - inserting 1000 documents. first: Emperor Houzhu of Northern Qi and last: Switchin' Kitten -[2018-02-13T08:27:42.084] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:27:42.129] [INFO] cheese - inserting 1000 documents. first: The League of the Militant Atheist and last: Bathyuroconger -[2018-02-13T08:27:42.222] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:42.234] [INFO] cheese - inserting 1000 documents. first: File:Secretorigins manhunters.jpg and last: Sergei Pavlovich Baltacha -[2018-02-13T08:27:42.292] [INFO] cheese - inserting 1000 documents. first: Category:Transportation buildings and structures in West Virginia and last: Template:Taxonomy/Breda -[2018-02-13T08:27:42.295] [INFO] cheese - inserting 1000 documents. first: Daniel Ziegler and last: Captain Cook -[2018-02-13T08:27:42.301] [INFO] cheese - inserting 1000 documents. first: Guinness Publishing and last: Fiori di polvere -[2018-02-13T08:27:42.334] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:27:42.389] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:27:42.461] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:27:42.466] [INFO] cheese - inserting 1000 documents. first: Ben E. King's Greatest Hits and last: Independent Citizens' Association -[2018-02-13T08:27:42.539] [INFO] cheese - batch complete in: 1.866 secs -[2018-02-13T08:27:42.664] [INFO] cheese - inserting 1000 documents. first: Permian investment partners and last: File:Erasure single VOL.jpg -[2018-02-13T08:27:42.671] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:27:42.780] [INFO] cheese - inserting 1000 documents. first: Drabske svetnicky and last: IV&V -[2018-02-13T08:27:42.787] [INFO] cheese - batch complete in: 1.499 secs -[2018-02-13T08:27:42.890] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:27:42.920] [INFO] cheese - inserting 1000 documents. first: Hégen and last: Bahama warbler -[2018-02-13T08:27:43.003] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:27:43.093] [INFO] cheese - inserting 1000 documents. first: Jaane Kya Hoga Rama Re and last: Ahmed Raza (cricketer, born 1983) -[2018-02-13T08:27:43.120] [INFO] cheese - inserting 1000 documents. first: File:Max Terhune.gif and last: Gum Comics Plus -[2018-02-13T08:27:43.179] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:27:43.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tortoise Vs. Hare and last: Koban (coin) -[2018-02-13T08:27:43.250] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:27:43.308] [INFO] cheese - inserting 1000 documents. first: File:EHSS OriginalSchoolDrawing.jpg and last: Putney Town Rowing Club -[2018-02-13T08:27:43.329] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:27:43.393] [INFO] cheese - inserting 1000 documents. first: Surmalinsky Uyezd and last: The Slow Mo Guys -[2018-02-13T08:27:43.439] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:27:43.524] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:43.546] [INFO] cheese - inserting 1000 documents. first: Girard (MFL station) and last: Pietro Faccini -[2018-02-13T08:27:43.570] [INFO] cheese - inserting 1000 documents. first: ITunes Festival: London 2011 (Adele EP) and last: Category:Bank buildings in New York City -[2018-02-13T08:27:43.654] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:27:43.683] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:27:43.778] [INFO] cheese - inserting 1000 documents. first: Star Parivaar Award for Favourite Sasur and last: Wikipedia:Meetup/NYC/AfroCrowd/12-2015-Film-BPL -[2018-02-13T08:27:43.808] [INFO] cheese - inserting 1000 documents. first: Violin Sonata (Shostakovich) and last: The Roman Catholic Church in Tanzania -[2018-02-13T08:27:43.846] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:27:43.881] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:27:43.941] [INFO] cheese - inserting 1000 documents. first: Psychological projection and last: Bai Chongxi -[2018-02-13T08:27:44.049] [INFO] cheese - inserting 1000 documents. first: Children of Men (film) and last: Spiritwood, North Dakota -[2018-02-13T08:27:44.072] [INFO] cheese - batch complete in: 1.533 secs -[2018-02-13T08:27:44.137] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:27:44.168] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates with red links/133 and last: Italian films of 1943 -[2018-02-13T08:27:44.198] [INFO] cheese - inserting 1000 documents. first: Belesis and last: Martin Hudec (rally driver) -[2018-02-13T08:27:44.259] [INFO] cheese - inserting 1000 documents. first: Vaughan (disambiguation) and last: WTTH -[2018-02-13T08:27:44.267] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:27:44.304] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:27:44.339] [INFO] cheese - inserting 1000 documents. first: Mu Ursae Majoris and last: Wikipedia:Votes for deletion/FilePile (second nomination) -[2018-02-13T08:27:44.377] [INFO] cheese - inserting 1000 documents. first: White bully and last: File:Metro bazar silchar.jpg -[2018-02-13T08:27:44.408] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:27:44.464] [INFO] cheese - inserting 1000 documents. first: David Kennerly and last: Guatemalan presidential election, August 1920 -[2018-02-13T08:27:44.486] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:27:44.524] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T08:27:44.617] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:27:44.839] [INFO] cheese - inserting 1000 documents. first: Ken Zisa and last: Adamsville, Rhode Island -[2018-02-13T08:27:44.927] [INFO] cheese - inserting 1000 documents. first: Category:Campeonato Goiano seasons and last: Great Hanging at Gainesville -[2018-02-13T08:27:44.937] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:27:44.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/portable-usb.com and last: Ágotakövesd -[2018-02-13T08:27:44.985] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:27:45.138] [INFO] cheese - inserting 1000 documents. first: Timeline of Islamic history 14th Century and last: Wikipedia:Votes for deletion/Dom The Bomb -[2018-02-13T08:27:45.197] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:27:45.266] [INFO] cheese - inserting 1000 documents. first: Coventry Lake and last: Filipe Ferreira -[2018-02-13T08:27:45.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Santa's Village East Dundee, Illinois and last: Biogeographic provinces -[2018-02-13T08:27:45.317] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:27:45.371] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:45.408] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:27:45.459] [INFO] cheese - inserting 1000 documents. first: Beizhen and last: Fall for Dance 2004 -[2018-02-13T08:27:45.564] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:27:45.702] [INFO] cheese - inserting 1000 documents. first: Carolina, Rhode Island and last: Wikipedia:Articles for deletion/Nina Nevelson -[2018-02-13T08:27:45.708] [INFO] cheese - inserting 1000 documents. first: Puerto Rico Airport and last: Only Royale -[2018-02-13T08:27:45.785] [INFO] cheese - inserting 1000 documents. first: Union Carbide and last: Floris V, Count of Holland -[2018-02-13T08:27:45.805] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:27:45.814] [INFO] cheese - inserting 1000 documents. first: Rozsonda and last: Orbitofrontal artery -[2018-02-13T08:27:45.790] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:45.879] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:27:45.933] [INFO] cheese - inserting 1000 documents. first: Rose Marie Pangborn and last: Orv Madden -[2018-02-13T08:27:45.936] [INFO] cheese - batch complete in: 1.863 secs -[2018-02-13T08:27:46.005] [INFO] cheese - inserting 1000 documents. first: Category:Rail transport in Chile and last: John Litchfield (politician) -[2018-02-13T08:27:46.006] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:27:46.046] [INFO] cheese - inserting 1000 documents. first: Template:National Action (Italy)/meta/color and last: Keep Up (KSI song) -[2018-02-13T08:27:46.156] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:27:46.216] [INFO] cheese - inserting 1000 documents. first: Around the World in 80 days and last: Sangre De Mi Sangre -[2018-02-13T08:27:46.267] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:27:46.376] [INFO] cheese - inserting 1000 documents. first: The Great British Bake Off (series 4) and last: National parks in Venezuela -[2018-02-13T08:27:46.506] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:27:46.570] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Spiritual density/archive1 and last: Wikipedia:Votes for deletion/Nutrient premix -[2018-02-13T08:27:46.594] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:27:46.642] [INFO] cheese - inserting 1000 documents. first: Kirmiyan and last: Cheung Kin Fung -[2018-02-13T08:27:46.639] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:27:46.779] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:27:46.864] [INFO] cheese - inserting 1000 documents. first: Henry Edward Fox-Strangways, 5th Earl of Ilchester and last: Cecil (Passions) -[2018-02-13T08:27:46.886] [INFO] cheese - inserting 1000 documents. first: Strojnik S-2A and last: Timoci Matanavou -[2018-02-13T08:27:46.981] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:27:47.155] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:27:47.187] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Levels of organization (ecology) and last: Healthcare in Madagascar -[2018-02-13T08:27:47.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Nick Naysmyth and last: Wikipedia:Votes for deletion/Buzz beer -[2018-02-13T08:27:47.264] [INFO] cheese - inserting 1000 documents. first: Michael Kinzer House and last: SUPREME BEING -[2018-02-13T08:27:47.292] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/File:Biological cell.svg and last: File:Abacus 1997 DavidFosterWallace GirlwithCuriousHair FrontCover.jpg -[2018-02-13T08:27:47.319] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:27:47.331] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:47.325] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:27:47.437] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:27:47.702] [INFO] cheese - inserting 1000 documents. first: Template:16TeamBracket-2legs-except final/doc and last: 389th Bombardment Group (Heavy) -[2018-02-13T08:27:47.816] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:27:47.870] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/David Boothroyd and last: File:Flash And The Pan - Lights In The Night CD album cover.jpg -[2018-02-13T08:27:47.954] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:27:47.986] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2011-08-01 and last: Dara Khosrowshahi -[2018-02-13T08:27:47.999] [INFO] cheese - inserting 1000 documents. first: Pistols Akimbo and last: File:Gay Blades poster.jpg -[2018-02-13T08:27:48.037] [INFO] cheese - inserting 1000 documents. first: Serumavilangai and last: City of Las Vegas, Las Vegas Boulevard State Scenic Byway -[2018-02-13T08:27:48.053] [INFO] cheese - inserting 1000 documents. first: Neon lamp and last: New Jersey Route 179 -[2018-02-13T08:27:48.076] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:27:48.078] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:27:48.131] [INFO] cheese - inserting 1000 documents. first: Alexandru Cornea and last: CH3CH2CH2COOCH2CH2CH2CH3 -[2018-02-13T08:27:48.175] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Christian Metal and last: Template:LDS Temple/Dallas Texas Temple -[2018-02-13T08:27:48.190] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:27:48.271] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:27:48.318] [INFO] cheese - batch complete in: 2.382 secs -[2018-02-13T08:27:48.435] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T08:27:48.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Frontpage turd and last: Wikipedia:Votes for deletion/Mike wilder -[2018-02-13T08:27:48.555] [INFO] cheese - inserting 1000 documents. first: Merrill Lynch's Application and last: Mark Blake -[2018-02-13T08:27:48.671] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:27:48.757] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:27:48.961] [INFO] cheese - inserting 1000 documents. first: Eugene Haynes and last: Bloor-Yonge (TTC) -[2018-02-13T08:27:49.065] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:27:49.092] [INFO] cheese - inserting 1000 documents. first: Leslie L. R. Hausburg and last: Semyon Alesker -[2018-02-13T08:27:49.100] [INFO] cheese - inserting 1000 documents. first: J. League Cup 2009 and last: Referendum 71 -[2018-02-13T08:27:49.153] [INFO] cheese - inserting 1000 documents. first: Dai Hoa and last: Christopaganism -[2018-02-13T08:27:49.260] [INFO] cheese - inserting 1000 documents. first: Furness Vale railway station and last: Wikipedia:Votes for deletion/English travellers -[2018-02-13T08:27:49.265] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:27:49.266] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:27:49.333] [INFO] cheese - inserting 1000 documents. first: Hacketon and last: Wikipedia:Suspected sock puppets/Creepy Crawler -[2018-02-13T08:27:49.342] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:27:49.354] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:27:49.523] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:27:49.659] [INFO] cheese - inserting 1000 documents. first: Christina baily and last: South Texas Community College -[2018-02-13T08:27:49.709] [INFO] cheese - inserting 1000 documents. first: Template:Country data Biervliet and last: Template:Sound & Color track listing -[2018-02-13T08:27:49.758] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:27:49.838] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:27:49.847] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/EFFL and last: Wikipedia:Votes for deletion/Dandenong Valley Highway -[2018-02-13T08:27:49.937] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:27:49.949] [INFO] cheese - inserting 1000 documents. first: Louise Xenia Rose Mountbatten and last: San Clemente loggerhead shrike -[2018-02-13T08:27:50.046] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:27:50.164] [INFO] cheese - inserting 1000 documents. first: St. Paul's Church, Diu and last: Panayapatti -[2018-02-13T08:27:50.254] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:27:50.296] [INFO] cheese - inserting 1000 documents. first: County Route 583 (New Jersey) and last: Ebla -[2018-02-13T08:27:50.415] [INFO] cheese - inserting 1000 documents. first: File:Florida Education Association (logo).png and last: Bismarck-Monument (Hamburg) -[2018-02-13T08:27:50.460] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Hanson County, South Dakota and last: File:MillisMA-seal.png -[2018-02-13T08:27:50.459] [INFO] cheese - batch complete in: 2.14 secs -[2018-02-13T08:27:50.546] [INFO] cheese - inserting 1000 documents. first: Strung Up (Nashville String Band album) and last: Cookeville, Tennessee micropolitan area -[2018-02-13T08:27:50.579] [INFO] cheese - inserting 1000 documents. first: Rock Dancer and last: Caesar Film -[2018-02-13T08:27:50.627] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:27:50.676] [INFO] cheese - batch complete in: 1.41 secs -[2018-02-13T08:27:50.807] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:27:50.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The old men and last: Studies in Swing -[2018-02-13T08:27:50.887] [INFO] cheese - inserting 1000 documents. first: Category:Treaties extended to the Coral Sea Islands and last: Wikipedia:Articles for deletion/Kenneth A. Bollen -[2018-02-13T08:27:50.917] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:27:50.981] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:27:51.000] [INFO] cheese - inserting 1000 documents. first: File:Neo Pornographia vol. 1 Cover.jpg and last: Certified Tissue Bank Specialist (CTBS) -[2018-02-13T08:27:51.045] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:27:51.142] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:27:51.514] [INFO] cheese - inserting 1000 documents. first: John Derek Page, Baron Whaddon and last: Patrick Houstoun, 1st Baronet -[2018-02-13T08:27:51.635] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:27:51.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bloxwich United A.F.C. and last: Haufe HA-G-1 Buggie -[2018-02-13T08:27:51.758] [INFO] cheese - inserting 1000 documents. first: Heritage Field at Stater Bros. Stadium and last: Category:Ambassadors of the Soviet Union to North Korea -[2018-02-13T08:27:51.789] [INFO] cheese - inserting 1000 documents. first: Głowiński monoplane and last: Ballets Russes and descendants -[2018-02-13T08:27:51.797] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:27:51.906] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:27:51.934] [INFO] cheese - inserting 1000 documents. first: Donna Sheldon and last: Template:Membership/Data/São Tomé and Príncipe -[2018-02-13T08:27:51.983] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:27:52.077] [INFO] cheese - inserting 1000 documents. first: File:Pei plan galleria.jpg and last: Saginaw, Michigan (song) -[2018-02-13T08:27:52.180] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Roxie King and last: Jean Pariseau -[2018-02-13T08:27:52.180] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:27:52.221] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:27:52.386] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:27:52.442] [INFO] cheese - inserting 1000 documents. first: PHI-base and last: Oberland canal -[2018-02-13T08:27:52.586] [INFO] cheese - inserting 1000 documents. first: Decimal digit and last: William J. Janklow -[2018-02-13T08:27:52.590] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:27:52.651] [INFO] cheese - inserting 1000 documents. first: File:CJCD-FM 2015.png and last: 02nd Vidhan Sabha of Uttar Pradesh -[2018-02-13T08:27:52.694] [INFO] cheese - inserting 1000 documents. first: Urs Vercoli and last: Real me (Ayumi Hamasaki song) -[2018-02-13T08:27:52.789] [INFO] cheese - inserting 1000 documents. first: Hammer (Home and Away) and last: FC Ural -[2018-02-13T08:27:52.834] [INFO] cheese - inserting 1000 documents. first: Template:Membership/Data/Swaziland and last: Agta (mythical creature) -[2018-02-13T08:27:52.887] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:27:52.873] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:27:52.824] [INFO] cheese - batch complete in: 2.365 secs -[2018-02-13T08:27:52.985] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:27:52.995] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:27:53.270] [INFO] cheese - inserting 1000 documents. first: Denis Odoi and last: 11th Century CE -[2018-02-13T08:27:53.396] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T08:27:53.494] [INFO] cheese - inserting 1000 documents. first: Saskatchewan Highway 755 and last: Sharon Runner -[2018-02-13T08:27:53.523] [INFO] cheese - inserting 1000 documents. first: Senator Ralph Owen Brewster and last: Realtime Games -[2018-02-13T08:27:53.525] [INFO] cheese - inserting 1000 documents. first: Portal:American Civil War/Selected event/09 and last: Svenska Cupen (disambiguation) -[2018-02-13T08:27:53.633] [INFO] cheese - inserting 1000 documents. first: Category:Romanesque architecture in the United Kingdom and last: File:CKAN Logo full color.png -[2018-02-13T08:27:53.641] [INFO] cheese - inserting 1000 documents. first: Category:Youth athletics and last: Aero Mirage TC-2 -[2018-02-13T08:27:53.666] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:27:53.710] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:27:53.727] [INFO] cheese - batch complete in: 1.341 secs -[2018-02-13T08:27:53.746] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:27:53.779] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:27:53.865] [INFO] cheese - inserting 1000 documents. first: 2nd Vidhan Sabha of Uttar Pradesh and last: Ron Southwick -[2018-02-13T08:27:53.955] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:27:54.003] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Roger Mills County, Oklahoma and last: Category:Kyrgyzstani law -[2018-02-13T08:27:54.060] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:27:54.319] [INFO] cheese - inserting 1000 documents. first: Pain and nociception and last: Mozcom Communications -[2018-02-13T08:27:54.452] [INFO] cheese - inserting 1000 documents. first: Category:Bengali encyclopedias and last: Dorsal rami -[2018-02-13T08:27:54.600] [INFO] cheese - inserting 1000 documents. first: Education in romania and last: Legal Practice Course -[2018-02-13T08:27:54.618] [INFO] cheese - inserting 1000 documents. first: File:Corrected sami map III.PNG and last: Vstrechnaya -[2018-02-13T08:27:54.708] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:27:54.714] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:27:54.730] [INFO] cheese - inserting 1000 documents. first: Pantacordis scotinellum and last: Do Tappeh Pa'in -[2018-02-13T08:27:54.785] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:27:54.849] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:27:54.970] [INFO] cheese - inserting 1000 documents. first: File:Disability Now logo.png and last: Category:Tibetan diaspora in Europe -[2018-02-13T08:27:54.986] [INFO] cheese - inserting 1000 documents. first: Code name and last: Hugh McCalmont Cairns, 1st Earl of Cairns -[2018-02-13T08:27:55.001] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:27:55.037] [INFO] cheese - inserting 1000 documents. first: Category:Angel Moroni and last: Kasra Anghaee -[2018-02-13T08:27:55.116] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:27:55.225] [INFO] cheese - batch complete in: 1.479 secs -[2018-02-13T08:27:55.364] [INFO] cheese - batch complete in: 2.54 secs -[2018-02-13T08:27:55.535] [INFO] cheese - inserting 1000 documents. first: Prescote and last: Workforce sciences -[2018-02-13T08:27:55.590] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:27:55.681] [INFO] cheese - inserting 1000 documents. first: File:Ths logo prev.jpg and last: The Rajon Music Group -[2018-02-13T08:27:55.886] [INFO] cheese - inserting 1000 documents. first: Do Tappeh Pain and last: SMUG -[2018-02-13T08:27:55.924] [INFO] cheese - inserting 1000 documents. first: Wanderlust (Gavin Rossdale album) and last: Henry de Beaumont, 4th Earl of Buchan -[2018-02-13T08:27:55.930] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:27:55.956] [INFO] cheese - inserting 1000 documents. first: Template:Ukraine squad UEFA Euro 2016 and last: Category:Namur geography stubs -[2018-02-13T08:27:55.988] [INFO] cheese - inserting 1000 documents. first: Common Poppy and last: Category:Former world's tallest buildings -[2018-02-13T08:27:56.069] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gloria Brame and last: Wikipedia:Featured picture candidates/Phantasmal poison frog -[2018-02-13T08:27:56.091] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:27:56.147] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:27:56.170] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:27:56.282] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:27:56.297] [INFO] cheese - batch complete in: 1.511 secs -[2018-02-13T08:27:56.648] [INFO] cheese - inserting 1000 documents. first: Anti-war activist and last: Avalon Gardens, Los Angeles, California -[2018-02-13T08:27:56.729] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:27:56.838] [INFO] cheese - inserting 1000 documents. first: 1933–34 FC Barcelona season and last: Wikipedia:U&MSPACE -[2018-02-13T08:27:56.854] [INFO] cheese - inserting 1000 documents. first: Kim Dong Moon and last: Conseil constitutionnel -[2018-02-13T08:27:56.933] [INFO] cheese - inserting 1000 documents. first: File:XYZ Show Logo.png and last: Omct.org -[2018-02-13T08:27:56.971] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:27:56.973] [INFO] cheese - inserting 1000 documents. first: Koji Harunayan and last: Category:Pipile -[2018-02-13T08:27:56.962] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:27:57.034] [INFO] cheese - inserting 1000 documents. first: Forest red gum and last: USS Quicksilver (SP-281) -[2018-02-13T08:27:57.064] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:27:57.060] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:27:57.129] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:27:57.178] [INFO] cheese - inserting 1000 documents. first: Lord Cairns and last: Ellesmere Port -[2018-02-13T08:27:57.180] [INFO] cheese - inserting 1000 documents. first: Hardwicke, Gloucestershire and last: Wikipedia:ESP/S -[2018-02-13T08:27:57.319] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:27:57.398] [INFO] cheese - batch complete in: 2.034 secs -[2018-02-13T08:27:57.627] [INFO] cheese - inserting 1000 documents. first: High School Musical 4: East Meets West and last: Meadowhead School -[2018-02-13T08:27:57.630] [INFO] cheese - inserting 1000 documents. first: Jessica Garretson Finch and last: 1964 Cupa României Final -[2018-02-13T08:27:57.637] [INFO] cheese - inserting 1000 documents. first: Krishna Paksha and last: Template:2013–14 Summit League men's basketball standings -[2018-02-13T08:27:57.730] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:27:57.791] [INFO] cheese - inserting 1000 documents. first: Erkembode and last: Rowing at the 2008 Summer Olympics -[2018-02-13T08:27:57.833] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:27:57.834] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:27:57.886] [INFO] cheese - inserting 1000 documents. first: Demographics of North Dakota and last: Veshist -[2018-02-13T08:27:57.920] [INFO] cheese - inserting 1000 documents. first: Burren Way and last: Colorado bug -[2018-02-13T08:27:57.968] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:27:58.020] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:27:58.139] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:27:58.379] [INFO] cheese - inserting 1000 documents. first: Capitoline Grounds and last: Miroslav Škoro i Ravnica -[2018-02-13T08:27:58.536] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:27:58.549] [INFO] cheese - inserting 1000 documents. first: Trade to GDP ratio and last: Louisiana Highway 1171 -[2018-02-13T08:27:58.564] [INFO] cheese - inserting 1000 documents. first: Kambarskoye Urban Settlement and last: HP Converged Cloud -[2018-02-13T08:27:58.666] [INFO] cheese - inserting 1000 documents. first: South American Championship 1945 and last: Association of Guineans in France -[2018-02-13T08:27:58.726] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:27:58.733] [INFO] cheese - inserting 1000 documents. first: Alamanii and last: Noble amateur -[2018-02-13T08:27:58.748] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:27:58.882] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:27:58.924] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:27:58.967] [INFO] cheese - inserting 1000 documents. first: Implementation (computer science) and last: 1988–89 Bulgarian Hockey League season -[2018-02-13T08:27:59.037] [INFO] cheese - inserting 1000 documents. first: Martin Garrick and last: Perpendicular plate of the ethmoid bone -[2018-02-13T08:27:59.135] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:27:59.181] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:27:59.287] [INFO] cheese - inserting 1000 documents. first: Nisqually and last: Daito Bunka University -[2018-02-13T08:27:59.414] [INFO] cheese - batch complete in: 2.015 secs -[2018-02-13T08:27:59.572] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ADMINGUIDE/R and last: Category:University of Seychelles -[2018-02-13T08:27:59.625] [INFO] cheese - inserting 1000 documents. first: Category:Short stories by Arkady Gaidar and last: David Eifion Evans -[2018-02-13T08:27:59.630] [INFO] cheese - inserting 1000 documents. first: Mechanical traveler and last: The Girona -[2018-02-13T08:27:59.651] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:27:59.675] [INFO] cheese - inserting 1000 documents. first: Gordon Henderson (band director) and last: El Embrujo Airport -[2018-02-13T08:27:59.730] [INFO] cheese - inserting 1000 documents. first: The Two Pound Tram and last: Ethical Oil -[2018-02-13T08:27:59.756] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:27:59.761] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:27:59.810] [INFO] cheese - inserting 1000 documents. first: When Cicadas Cry Bonds and last: 1956 in the United States -[2018-02-13T08:27:59.809] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:59.910] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:27:59.914] [INFO] cheese - inserting 1000 documents. first: Colour Out of Space and last: Akatarawa -[2018-02-13T08:28:00.055] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:28:00.063] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:28:00.224] [INFO] cheese - inserting 1000 documents. first: Category:Animation studios navigational boxes and last: Xinping Liang -[2018-02-13T08:28:00.366] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:28:00.593] [INFO] cheese - inserting 1000 documents. first: Sharp, Philip Allen and last: Ron Villone -[2018-02-13T08:28:00.640] [INFO] cheese - inserting 1000 documents. first: College sa and last: File:IrremeDIABLE cover.jpg -[2018-02-13T08:28:00.655] [INFO] cheese - inserting 1000 documents. first: Breathe (Don't Stop) and last: Coffee poop -[2018-02-13T08:28:00.706] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:28:00.785] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:28:00.811] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:28:00.899] [INFO] cheese - inserting 1000 documents. first: Category:1864 in Kansas and last: Parau Gruiului -[2018-02-13T08:28:00.965] [INFO] cheese - inserting 1000 documents. first: Emile Mbamba and last: Category:University museums in Canada -[2018-02-13T08:28:00.969] [INFO] cheese - inserting 1000 documents. first: Category:Wars involving Guinea-Bissau and last: Air Prods & Chems -[2018-02-13T08:28:01.027] [INFO] cheese - inserting 1000 documents. first: Ministero degli Affari Esteri della Repubblica Italiana and last: Category:1501 establishments in Japan -[2018-02-13T08:28:01.030] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:28:01.101] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:28:01.102] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:28:01.157] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:28:01.169] [INFO] cheese - inserting 1000 documents. first: SAME (protocol) and last: Martin Short -[2018-02-13T08:28:01.346] [INFO] cheese - batch complete in: 1.932 secs -[2018-02-13T08:28:01.420] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jo Green and last: Wikipedia:Votes for deletion/Michael E. Brooks -[2018-02-13T08:28:01.473] [INFO] cheese - inserting 1000 documents. first: Lists of secularists and last: Hangar Radio Z -[2018-02-13T08:28:01.524] [INFO] cheese - inserting 1000 documents. first: James Forrest (footballer born 1991) and last: Wikipedia:Articles for deletion/Mashregh News -[2018-02-13T08:28:01.548] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:28:01.588] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:28:01.674] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:28:01.830] [INFO] cheese - inserting 1000 documents. first: Ludwig Worman and last: Brad Zavisha -[2018-02-13T08:28:01.883] [INFO] cheese - inserting 1000 documents. first: SsangYong Tivolan and last: Category:Political symbols by ideology -[2018-02-13T08:28:01.892] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:28:01.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/xoxo-gossipgirl.tv-soap.com and last: MacIntosh Fort -[2018-02-13T08:28:01.906] [INFO] cheese - inserting 1000 documents. first: Patrangeni and last: Ov3640 -[2018-02-13T08:28:01.997] [INFO] cheese - inserting 1000 documents. first: Dainohara Station, Sendai and last: Wikipedia:Votes for deletion/Hamster Language -[2018-02-13T08:28:02.017] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:28:02.018] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:28:02.089] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:28:02.101] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:28:02.295] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Logical abacus and last: Category:19th-century establishments in German East Africa -[2018-02-13T08:28:02.406] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:28:02.410] [INFO] cheese - inserting 1000 documents. first: Mayor Buenaventura Vivas Airport and last: Have I Got a Story for You (Batman: Gotham Knight) -[2018-02-13T08:28:02.538] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:28:02.587] [INFO] cheese - inserting 1000 documents. first: André Sogliuzzo and last: Saskatchewan Highway 752 -[2018-02-13T08:28:02.592] [INFO] cheese - inserting 1000 documents. first: Action of 12 October 1798 and last: Wikipedia:Votes for deletion/Alfredo naim -[2018-02-13T08:28:02.639] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:28:02.671] [INFO] cheese - inserting 1000 documents. first: Santissima Annunziata, Barga and last: File:L.A. Noire motion capture.jpg -[2018-02-13T08:28:02.708] [INFO] cheese - inserting 1000 documents. first: Zhang Xi (volleyball) and last: Taylor Ridge, Illinois -[2018-02-13T08:28:02.740] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:28:02.822] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:28:02.844] [INFO] cheese - inserting 1000 documents. first: Ngota Ifeny and last: 11th Wisconsin Regiment -[2018-02-13T08:28:02.870] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:28:02.996] [INFO] cheese - inserting 1000 documents. first: Cristofano Malvezzi and last: Noether -[2018-02-13T08:28:02.933] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:28:03.163] [INFO] cheese - inserting 1000 documents. first: Ivy Lea, Ontario and last: Gallichan, Quebec -[2018-02-13T08:28:03.173] [INFO] cheese - batch complete in: 1.827 secs -[2018-02-13T08:28:03.234] [INFO] cheese - inserting 1000 documents. first: Frederick Elmes and last: Snake River (Nebraska) -[2018-02-13T08:28:03.237] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:28:03.357] [INFO] cheese - inserting 1000 documents. first: Gorimaya Tamang and last: Korolev, Nikolai Fyodorovich -[2018-02-13T08:28:03.366] [INFO] cheese - inserting 1000 documents. first: Parallel 36° north and last: Karlton Rosholt -[2018-02-13T08:28:03.431] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:28:03.473] [INFO] cheese - inserting 1000 documents. first: Category:Political history of Samoa and last: Template:Baseball primary link/doc -[2018-02-13T08:28:03.499] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:28:03.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tracilordsmovieclub.org and last: Jillian Vegan -[2018-02-13T08:28:03.689] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:28:03.703] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:28:03.756] [INFO] cheese - inserting 1000 documents. first: Template:Burt Reynolds and last: Mink Mile -[2018-02-13T08:28:03.808] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:28:04.082] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:28:04.212] [INFO] cheese - inserting 1000 documents. first: Soviet-Polish War and last: Mitiga International Airport -[2018-02-13T08:28:04.288] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:28:04.438] [INFO] cheese - inserting 1000 documents. first: Squash at the 2013 Asian Youth Games and last: Riptide (Vance Joy song) -[2018-02-13T08:28:04.488] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:28:04.513] [INFO] cheese - inserting 1000 documents. first: Universidad de Antofagasta and last: Val de Fontenay (Paris RER) -[2018-02-13T08:28:04.628] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:28:04.634] [INFO] cheese - inserting 1000 documents. first: Drinking in Finland and last: Kwamtim One language -[2018-02-13T08:28:04.700] [INFO] cheese - inserting 1000 documents. first: George Britton Halford and last: Nick Warren (cricketer) -[2018-02-13T08:28:04.733] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/American Society for the Defense of Tradition, Family and Property and last: Clairvaux MacKillop College -[2018-02-13T08:28:04.764] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:28:04.816] [INFO] cheese - inserting 1000 documents. first: Template:Baseball secondary link/doc and last: There's Irish in Our Eyes -[2018-02-13T08:28:04.836] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:28:04.840] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:28:04.933] [INFO] cheese - inserting 1000 documents. first: Craig Thomson (disambiguation) and last: Entrapment neuropathy -[2018-02-13T08:28:04.957] [INFO] cheese - batch complete in: 1.254 secs -[2018-02-13T08:28:05.056] [INFO] cheese - inserting 1000 documents. first: Neoconger perlongus and last: File:The Story of My Life Cover.jpg -[2018-02-13T08:28:05.069] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:28:05.174] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:28:05.246] [INFO] cheese - inserting 1000 documents. first: Whitney Clayton and last: Cronan Naofa BNS -[2018-02-13T08:28:05.284] [INFO] cheese - inserting 1000 documents. first: Federal Charter of 1291 and last: Guy Steele, Jr. -[2018-02-13T08:28:05.364] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:28:05.399] [INFO] cheese - inserting 1000 documents. first: Peach-tree and last: Wikipedia:Votes for deletion/Sunder -[2018-02-13T08:28:05.434] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:28:05.490] [INFO] cheese - inserting 1000 documents. first: Welling (disambiguation) and last: Template:A Coruña (province) -[2018-02-13T08:28:05.539] [INFO] cheese - batch complete in: 2.365 secs -[2018-02-13T08:28:05.590] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:28:05.615] [INFO] cheese - inserting 1000 documents. first: Category:Circuits of the Song dynasty and last: McCallum Medal -[2018-02-13T08:28:05.621] [INFO] cheese - inserting 1000 documents. first: Kabore One language and last: Allgemeiner Deutscher Gewerkschaftsbund -[2018-02-13T08:28:05.737] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:28:05.825] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:28:05.831] [INFO] cheese - inserting 1000 documents. first: Namua and last: 1998 Gold Coast Classic -[2018-02-13T08:28:05.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Scamper and last: Acoustic feedback -[2018-02-13T08:28:06.017] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:28:06.019] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:28:06.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/MyDailyLeaks and last: 380SEL -[2018-02-13T08:28:06.229] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:28:06.417] [INFO] cheese - inserting 1000 documents. first: Category:Airlines established in 1981 and last: Category:Iron and steel mills -[2018-02-13T08:28:06.435] [INFO] cheese - inserting 1000 documents. first: Société française pour l'arbitrage entre les Nations and last: Vaggeryds kommun -[2018-02-13T08:28:06.470] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Musaeus College and last: Category:1919 in Nebraska -[2018-02-13T08:28:06.533] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:28:06.557] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Homosexual Cakewalk and last: Wikipedia:Votes for deletion/GameTalk -[2018-02-13T08:28:06.623] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:28:06.640] [INFO] cheese - inserting 1000 documents. first: Draft:Bill Asher (guitar maker) and last: Category:Bengali-speaking people by occupation -[2018-02-13T08:28:06.656] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:28:06.662] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:28:06.854] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:28:06.980] [INFO] cheese - inserting 1000 documents. first: Eskandar and last: File:Moody Foundation Logo.png -[2018-02-13T08:28:07.023] [INFO] cheese - inserting 1000 documents. first: Light Up the World (album) and last: Guanqiao, Liuyang -[2018-02-13T08:28:07.251] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:28:07.252] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:28:07.388] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Port Arthur massacre theories and last: Wikipedia:Votes for deletion/Jewish Renegades -[2018-02-13T08:28:07.562] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:28:07.948] [INFO] cheese - inserting 1000 documents. first: List of énarques and last: London Cheerleaders Zoo Riot -[2018-02-13T08:28:07.968] [INFO] cheese - inserting 1000 documents. first: Blood's Voice and last: Dniester Hydro-Accumulating Power Station -[2018-02-13T08:28:07.983] [INFO] cheese - inserting 1000 documents. first: File:Pamela1982112706GMS2IR.jpg and last: Bloody Crescent -[2018-02-13T08:28:08.020] [INFO] cheese - inserting 1000 documents. first: International date line and last: Wildcard DNS entry -[2018-02-13T08:28:08.036] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:28:08.043] [INFO] cheese - inserting 1000 documents. first: Pontiac 200 (Nazareth) and last: File:Conviction of the Heart by Kenny Loggins.jpg -[2018-02-13T08:28:08.061] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:28:08.078] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T08:28:08.080] [INFO] cheese - inserting 1000 documents. first: Russian Dalian and last: Category:Internet companies of France -[2018-02-13T08:28:08.082] [INFO] cheese - inserting 1000 documents. first: File:22 Squadron RAF crest.jpg and last: Wikipedia:Votes for deletion/CreateWindow -[2018-02-13T08:28:08.095] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:28:08.187] [INFO] cheese - inserting 1000 documents. first: Kinda kommun and last: Religion in Liberia -[2018-02-13T08:28:08.287] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:28:08.387] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:28:08.339] [INFO] cheese - batch complete in: 1.715 secs -[2018-02-13T08:28:08.402] [INFO] cheese - batch complete in: 2.863 secs -[2018-02-13T08:28:08.869] [INFO] cheese - inserting 1000 documents. first: Mark Greaney (author) and last: Poriyya-Kefar Avoda -[2018-02-13T08:28:08.893] [INFO] cheese - inserting 1000 documents. first: File:Theo3reflection.png and last: Category:Stub-Class Medieval warfare articles -[2018-02-13T08:28:08.931] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:28:08.954] [INFO] cheese - inserting 1000 documents. first: BAH and last: David Anderson (Australian governor) -[2018-02-13T08:28:08.959] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:28:09.007] [INFO] cheese - inserting 1000 documents. first: Category:Internet companies of Germany and last: Кузьмин -[2018-02-13T08:28:09.023] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:28:09.026] [INFO] cheese - inserting 1000 documents. first: Prince Yun and last: Pizhansky District -[2018-02-13T08:28:09.071] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:28:09.120] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:28:09.155] [INFO] cheese - inserting 1000 documents. first: Cabinet İnönü VIII and last: NB&M Railways -[2018-02-13T08:28:09.156] [INFO] cheese - inserting 1000 documents. first: Paxton's Tower and last: Nicrophorus sausai -[2018-02-13T08:28:09.344] [INFO] cheese - batch complete in: 1.248 secs -[2018-02-13T08:28:09.360] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:28:09.667] [INFO] cheese - inserting 1000 documents. first: Category:Military aviation articles by quality and last: Pygmy chimp -[2018-02-13T08:28:09.669] [INFO] cheese - inserting 1000 documents. first: Poriyya-Newe Oved and last: Wikipedia:Sockpuppet investigations/Aamir.aka.mraka -[2018-02-13T08:28:09.687] [INFO] cheese - inserting 1000 documents. first: Giron, Ain and last: Wikipedia:Votes for deletion/Fletcher International Abattoir -[2018-02-13T08:28:09.752] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:28:09.770] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:28:09.785] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:28:10.038] [INFO] cheese - inserting 1000 documents. first: File:Colorado esporte clube logo.gif and last: The Lizard King -[2018-02-13T08:28:10.041] [INFO] cheese - inserting 1000 documents. first: The National Center on Time & Learning and last: Wikipedia:Possibly unfree files/2013 August 20 -[2018-02-13T08:28:10.100] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:28:10.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Lithuania/Watchlist and last: Rebel Drones -[2018-02-13T08:28:10.179] [INFO] cheese - inserting 1000 documents. first: Podosinovsky District and last: Primera División de Fútbol Profesional - Clausura 2011 -[2018-02-13T08:28:10.297] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T08:28:10.356] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:28:10.359] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T08:28:10.610] [INFO] cheese - inserting 1000 documents. first: TINLA and last: List of Aromanians -[2018-02-13T08:28:10.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Islamic fascism and last: Tommy Victor -[2018-02-13T08:28:10.731] [INFO] cheese - inserting 1000 documents. first: Houston's whitebeam and last: Yaguaraparo -[2018-02-13T08:28:10.780] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:28:10.915] [INFO] cheese - batch complete in: 2.513 secs -[2018-02-13T08:28:10.954] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:28:11.036] [INFO] cheese - inserting 1000 documents. first: 1985-86 Pakistani cricket season and last: File:REX021 036.jpg -[2018-02-13T08:28:11.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 August 20 and last: Category:Underwater diving templates -[2018-02-13T08:28:11.114] [INFO] cheese - batch complete in: 1.329 secs -[2018-02-13T08:28:11.212] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/WikiPrincess and last: Tu Vuo Fa L'Americano -[2018-02-13T08:28:11.238] [INFO] cheese - inserting 1000 documents. first: Receiver function and last: Scheitholt -[2018-02-13T08:28:11.266] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:28:11.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Constance E. Cumbey and last: Wikipedia:Votes for deletion/Andrew Krystal -[2018-02-13T08:28:11.414] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:28:11.443] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:28:11.450] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:28:11.631] [INFO] cheese - inserting 1000 documents. first: Professor Griff - Disturb N Tha Peace (Freedom Is Just A Mind Revolution Away) and last: Half-cocked (film) -[2018-02-13T08:28:11.927] [INFO] cheese - batch complete in: 1.568 secs -[2018-02-13T08:28:12.033] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Fifteen (restaurant) and last: Richardson's Law -[2018-02-13T08:28:12.195] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:28:12.242] [INFO] cheese - inserting 1000 documents. first: Löwenthal's method and last: Category:Climate of Vatican City -[2018-02-13T08:28:12.270] [INFO] cheese - inserting 1000 documents. first: Template:Proriv (Transnistria)/meta/color and last: Jay Sanders -[2018-02-13T08:28:12.287] [INFO] cheese - inserting 1000 documents. first: List of national historic trails in Colorado and last: Sun Daly -[2018-02-13T08:28:12.315] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:28:12.354] [INFO] cheese - batch complete in: 1.4 secs -[2018-02-13T08:28:12.394] [INFO] cheese - inserting 1000 documents. first: Northern Court (Japan) and last: Template:User cu-3 -[2018-02-13T08:28:12.455] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:28:12.555] [INFO] cheese - inserting 1000 documents. first: Hadambu and last: SS Empire Beaver -[2018-02-13T08:28:12.554] [INFO] cheese - batch complete in: 1.439 secs -[2018-02-13T08:28:12.682] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T08:28:12.787] [INFO] cheese - inserting 1000 documents. first: Kameshkovsky District and last: J. Cole production discography -[2018-02-13T08:28:12.905] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:28:13.165] [INFO] cheese - inserting 1000 documents. first: Le Hien Tong (disambiguation) and last: La vila Joiosa -[2018-02-13T08:28:13.251] [INFO] cheese - inserting 1000 documents. first: Freddie Foxxx Is Here and last: M1942 Bayonet -[2018-02-13T08:28:13.297] [INFO] cheese - inserting 1000 documents. first: Paul van Buitenen and last: Treaty of London (1839) -[2018-02-13T08:28:13.373] [INFO] cheese - inserting 1000 documents. first: Ferdowsi Gas Field and last: File:Drive You Home Again.jpg -[2018-02-13T08:28:13.408] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:28:13.451] [INFO] cheese - inserting 1000 documents. first: Lmpat Monastery and last: Category:Olympiacos F.C. players -[2018-02-13T08:28:13.464] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Trevico and last: File:Edin Atic 2015.jpg -[2018-02-13T08:28:13.477] [INFO] cheese - inserting 1000 documents. first: Robbie Shakespeare and last: Heliconid -[2018-02-13T08:28:13.524] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:28:13.607] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:28:13.627] [INFO] cheese - batch complete in: 1.273 secs -[2018-02-13T08:28:13.688] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:28:13.805] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T08:28:13.921] [INFO] cheese - batch complete in: 3.006 secs -[2018-02-13T08:28:14.055] [INFO] cheese - inserting 1000 documents. first: Category:Sheffield United F.C. articles by quality and last: Pagothenia -[2018-02-13T08:28:14.223] [INFO] cheese - batch complete in: 1.318 secs -[2018-02-13T08:28:14.226] [INFO] cheese - inserting 1000 documents. first: Category:1869 in British Columbia and last: Category:TAAR1 agonists -[2018-02-13T08:28:14.323] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:28:14.416] [INFO] cheese - inserting 1000 documents. first: Lloyd Tombleson and last: Flint-Goodridge Hospital -[2018-02-13T08:28:14.571] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:28:14.651] [INFO] cheese - inserting 1000 documents. first: XHY-TDT and last: Sanctuary Cove -[2018-02-13T08:28:14.703] [INFO] cheese - inserting 1000 documents. first: Category:Performing arts centers in New York (state) and last: L'Indien -[2018-02-13T08:28:14.716] [INFO] cheese - inserting 1000 documents. first: W. R. Grace Building and last: Stix Baer & Fuller -[2018-02-13T08:28:14.778] [INFO] cheese - inserting 1000 documents. first: Artificial Voice Box and last: Entoloma -[2018-02-13T08:28:14.795] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:28:14.802] [INFO] cheese - inserting 1000 documents. first: K-1 Beast 2004 in Shizuoka and last: Vergiss Es -[2018-02-13T08:28:14.850] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:28:14.940] [INFO] cheese - inserting 1000 documents. first: Edgars Bergs and last: Modi group -[2018-02-13T08:28:14.964] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:28:15.082] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:28:15.134] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:28:15.166] [INFO] cheese - batch complete in: 1.641 secs -[2018-02-13T08:28:15.377] [INFO] cheese - inserting 1000 documents. first: Category:2016 American television series endings and last: Template:Parent monthly clean-up category progress/doc -[2018-02-13T08:28:15.466] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:28:15.685] [INFO] cheese - inserting 1000 documents. first: 1961 Cotton Bowl and last: Mopa-Muro -[2018-02-13T08:28:15.704] [INFO] cheese - inserting 1000 documents. first: 2013–14 Georgian Cup and last: Template:Did you know nominations/Michael Edgson -[2018-02-13T08:28:15.707] [INFO] cheese - inserting 1000 documents. first: Edward Craig (disambiguation) and last: Category:1993 in Brazilian football -[2018-02-13T08:28:15.737] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:28:15.767] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:28:15.771] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:28:15.865] [INFO] cheese - inserting 1000 documents. first: File:Eg3.png and last: Clarence Jones -[2018-02-13T08:28:15.932] [INFO] cheese - inserting 1000 documents. first: Drug education and last: Volcán Santamaria -[2018-02-13T08:28:15.932] [INFO] cheese - inserting 1000 documents. first: Antoine Louis Camille Lemonnier and last: Myrsini -[2018-02-13T08:28:15.946] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:28:15.951] [INFO] cheese - inserting 1000 documents. first: Hespererato columbella and last: Dalip Frashëri -[2018-02-13T08:28:16.021] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:28:16.079] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:28:16.124] [INFO] cheese - inserting 1000 documents. first: Alejandro Abellan and last: The Benzino Project -[2018-02-13T08:28:16.137] [INFO] cheese - batch complete in: 2.216 secs -[2018-02-13T08:28:16.227] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:28:16.261] [INFO] cheese - inserting 1000 documents. first: Joe Doakes and last: Healy, KS -[2018-02-13T08:28:16.353] [INFO] cheese - inserting 1000 documents. first: Love Me Forever and last: Alevtina Aparina -[2018-02-13T08:28:16.391] [INFO] cheese - inserting 1000 documents. first: Category:LGBT military personnel and last: John Cooper (tennis) -[2018-02-13T08:28:16.394] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:28:16.435] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:28:16.462] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:28:16.484] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oliver Fritz and last: Soldiers of Freedom -[2018-02-13T08:28:16.539] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Enrique Sanchez and last: Wikipedia:Votes for deletion/Leighann Starkey -[2018-02-13T08:28:16.622] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:28:16.678] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:28:17.042] [INFO] cheese - inserting 1000 documents. first: Category:People from Grand Junction, Tennessee and last: Template:Expressway code (Sri Lanka) -[2018-02-13T08:28:17.077] [INFO] cheese - inserting 1000 documents. first: Shoreland, Ohio and last: Marie-Josée Laloy -[2018-02-13T08:28:17.110] [INFO] cheese - inserting 1000 documents. first: Timeline of human prehistory and last: Category:Canadian expatriates in Austria -[2018-02-13T08:28:17.113] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:28:17.138] [INFO] cheese - inserting 1000 documents. first: Micky Dore and last: Stage Rallying -[2018-02-13T08:28:17.160] [INFO] cheese - inserting 1000 documents. first: D. J. Shockley and last: Wikipedia:Votes for deletion/Ziotaki language -[2018-02-13T08:28:17.186] [INFO] cheese - inserting 1000 documents. first: String Quartet No. 17 and last: Ray Ratkowski -[2018-02-13T08:28:17.251] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:28:17.300] [INFO] cheese - inserting 1000 documents. first: File:Cencoroll DVD cover.jpg and last: A. Judson Clark -[2018-02-13T08:28:17.326] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:28:17.326] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:28:17.387] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:28:17.430] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:28:17.462] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:28:17.594] [INFO] cheese - inserting 1000 documents. first: Caribe Hilton Hotel and last: Prometheus Bound -[2018-02-13T08:28:17.741] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:28:17.858] [INFO] cheese - inserting 1000 documents. first: The Rev and last: Wikipedia:Votes for deletion/The Daffodil Song -[2018-02-13T08:28:17.918] [INFO] cheese - inserting 1000 documents. first: Patalpani waterfalls and last: Mammoth Museum -[2018-02-13T08:28:17.928] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:28:17.932] [INFO] cheese - inserting 1000 documents. first: Providence Day and last: Wikipedia:WikiProject Deletion/to do -[2018-02-13T08:28:17.935] [INFO] cheese - inserting 1000 documents. first: Donald A. Gillies and last: Roberto Santamaria Ciprian -[2018-02-13T08:28:17.970] [INFO] cheese - inserting 1000 documents. first: File:ConLuTo.jpg and last: Mauser pistol -[2018-02-13T08:28:17.981] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:28:17.984] [INFO] cheese - inserting 1000 documents. first: Battle of Aberdeen and last: John Lake (MP) -[2018-02-13T08:28:18.048] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:28:18.092] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Album articles and last: Robert C. Zampano -[2018-02-13T08:28:18.099] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:28:18.150] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:28:18.221] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:28:18.280] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:28:18.700] [INFO] cheese - inserting 1000 documents. first: Tambor, Costa Rica and last: Michigan Ave. -[2018-02-13T08:28:18.739] [INFO] cheese - inserting 1000 documents. first: File:Asahi no Ataru Hashi.jpg and last: Los Tuxtlas Biosphere Reserve -[2018-02-13T08:28:18.806] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:28:18.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality and last: Kcom -[2018-02-13T08:28:18.926] [INFO] cheese - inserting 1000 documents. first: Category:Military of Tunisia and last: Kaiser, Henry J. -[2018-02-13T08:28:19.003] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:28:19.010] [INFO] cheese - inserting 1000 documents. first: United States Senate election in New York, 1863 and last: Mean Dependence -[2018-02-13T08:28:19.020] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:28:19.057] [INFO] cheese - inserting 1000 documents. first: Die, All Right and last: Mackenzie Porter -[2018-02-13T08:28:19.067] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:28:19.104] [INFO] cheese - inserting 1000 documents. first: Category:Aquaculture and last: Saracens RFC -[2018-02-13T08:28:19.202] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:28:19.296] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:28:19.314] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T08:28:19.524] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Men's Issues articles and last: File:Eremite Records logo.jpeg -[2018-02-13T08:28:19.580] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:28:19.778] [INFO] cheese - inserting 1000 documents. first: Claudio Francisci and last: Agera -[2018-02-13T08:28:19.834] [INFO] cheese - inserting 1000 documents. first: Ray Senkowski and last: Fatal Vision (disambiguation) -[2018-02-13T08:28:19.892] [INFO] cheese - inserting 1000 documents. first: King Xiang of Zhou and last: Dwarf throw -[2018-02-13T08:28:19.900] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:28:19.911] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:28:19.973] [INFO] cheese - inserting 1000 documents. first: Category:Counts of Frisia and last: Euro gold and silver commemorative coins (Ireland) -[2018-02-13T08:28:20.020] [INFO] cheese - inserting 1000 documents. first: The Bailey-Matthews Shell Museum and last: Vaughan Brothers -[2018-02-13T08:28:20.149] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:28:20.157] [INFO] cheese - inserting 1000 documents. first: Globcal and last: SM U-92 -[2018-02-13T08:28:20.166] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:28:20.157] [INFO] cheese - batch complete in: 2.416 secs -[2018-02-13T08:28:20.289] [INFO] cheese - inserting 1000 documents. first: Lost (2004 television series) and last: Wikipedia:Articles for deletion/Ekrōnja -[2018-02-13T08:28:20.317] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:28:20.345] [INFO] cheese - inserting 1000 documents. first: Cylindera brevis and last: Extreme points of Iceland -[2018-02-13T08:28:20.480] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:28:20.515] [INFO] cheese - batch complete in: 1.51 secs -[2018-02-13T08:28:20.865] [INFO] cheese - inserting 1000 documents. first: Friedrich Beck and last: Category:People from Salland -[2018-02-13T08:28:20.933] [INFO] cheese - inserting 1000 documents. first: Anna quel particolare piacere and last: The Sleeping Voice -[2018-02-13T08:28:21.002] [INFO] cheese - inserting 1000 documents. first: Vidhansabha and last: NOB1 -[2018-02-13T08:28:21.033] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:28:21.054] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:28:21.076] [INFO] cheese - inserting 1000 documents. first: Aguardente and last: Shalom (film) -[2018-02-13T08:28:21.102] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:28:21.187] [INFO] cheese - inserting 1000 documents. first: Category:Frigates of the Russian Navy and last: File:WilliamStewart.jpg -[2018-02-13T08:28:21.226] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:28:21.302] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:28:21.304] [INFO] cheese - inserting 1000 documents. first: Alois Confais and last: Fortín de San Gerónimo de Boquerón -[2018-02-13T08:28:21.410] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:21.705] [INFO] cheese - inserting 1000 documents. first: Planet cuisines and last: Communications-based train control -[2018-02-13T08:28:21.782] [INFO] cheese - inserting 1000 documents. first: Term-document matrix and last: Nigerien Party for Democracy and Socialism -[2018-02-13T08:28:21.792] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:28:21.795] [INFO] cheese - inserting 1000 documents. first: List of Presidents of Lazio and last: Template:POTD/2013-09-07 -[2018-02-13T08:28:21.885] [INFO] cheese - inserting 1000 documents. first: Eric N. Vitaliano and last: Gwinner Airport -[2018-02-13T08:28:21.926] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:28:21.933] [INFO] cheese - inserting 1000 documents. first: Category:Social Democratic Federation and last: New Brunswick School District 14 -[2018-02-13T08:28:21.979] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:28:22.051] [INFO] cheese - inserting 1000 documents. first: Kurdish Unified Alphabet and last: HMS Caicos (K505) -[2018-02-13T08:28:22.065] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:28:22.071] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:28:22.167] [INFO] cheese - inserting 1000 documents. first: J. Quin Monson and last: Encarnación de Rosas -[2018-02-13T08:28:22.236] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:22.315] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:28:22.402] [INFO] cheese - inserting 1000 documents. first: Aleksandr Kuprin and last: Lamar Hunt -[2018-02-13T08:28:22.529] [INFO] cheese - batch complete in: 2.372 secs -[2018-02-13T08:28:22.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/European Magpie and last: Borzia -[2018-02-13T08:28:22.666] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:28:22.780] [INFO] cheese - inserting 1000 documents. first: English Triple Crown race winners and last: Echinopsis lageniformis -[2018-02-13T08:28:22.837] [INFO] cheese - inserting 1000 documents. first: Rugrats (film series) and last: Zhaneta Ilieva -[2018-02-13T08:28:22.900] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:28:22.967] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:28:23.033] [INFO] cheese - inserting 1000 documents. first: PCDHA3 and last: Category:Slovak sex workers -[2018-02-13T08:28:23.037] [INFO] cheese - inserting 1000 documents. first: Adam Seybert and last: Demon King of Confusion -[2018-02-13T08:28:23.085] [INFO] cheese - inserting 1000 documents. first: File:Manuel Azcárate - Europa Press.jpg and last: Aven Nelson -[2018-02-13T08:28:23.100] [INFO] cheese - inserting 1000 documents. first: Nathalie Pâque and last: Let It Be Me (1955 song) -[2018-02-13T08:28:23.144] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:28:23.274] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T08:28:23.369] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:28:23.404] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:28:23.560] [INFO] cheese - inserting 1000 documents. first: Mech flood and last: Wikipedia:Votes for deletion/Wario the Quario -[2018-02-13T08:28:23.601] [INFO] cheese - inserting 1000 documents. first: Iod and last: Category:VAP (company) games -[2018-02-13T08:28:23.621] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:28:23.781] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:28:23.919] [INFO] cheese - inserting 1000 documents. first: Alexander Hill (academic) and last: Unfamiliar (song) -[2018-02-13T08:28:24.051] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:28:24.081] [INFO] cheese - inserting 1000 documents. first: Category:Olsen family and last: (8252) 1981 EY14 -[2018-02-13T08:28:24.168] [INFO] cheese - inserting 1000 documents. first: Surface web and last: VPI -[2018-02-13T08:28:24.187] [INFO] cheese - inserting 1000 documents. first: Joel Langellott and last: Origin of Species (episode) -[2018-02-13T08:28:24.208] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:28:24.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anti-cnn and last: My Horse & Me -[2018-02-13T08:28:24.273] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:28:24.339] [INFO] cheese - inserting 1000 documents. first: French tanker Durance (A629) and last: Henry Champion House -[2018-02-13T08:28:24.505] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T08:28:24.656] [INFO] cheese - batch complete in: 1.512 secs -[2018-02-13T08:28:24.820] [INFO] cheese - batch complete in: 1.451 secs -[2018-02-13T08:28:24.937] [INFO] cheese - inserting 1000 documents. first: Malkaram, Ranga Reddy district and last: Template:MathWelcome -[2018-02-13T08:28:24.967] [INFO] cheese - inserting 1000 documents. first: Travel visa and last: Isabel J. Cox -[2018-02-13T08:28:25.033] [INFO] cheese - batch complete in: 1.252 secs -[2018-02-13T08:28:25.094] [INFO] cheese - inserting 1000 documents. first: Sennen (song) and last: W.S. Percy -[2018-02-13T08:28:25.217] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:28:25.256] [INFO] cheese - batch complete in: 2.727 secs -[2018-02-13T08:28:25.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Farmer with shotgun and last: The Gary Grill -[2018-02-13T08:28:25.461] [INFO] cheese - batch complete in: 1.252 secs -[2018-02-13T08:28:25.493] [INFO] cheese - inserting 1000 documents. first: Unionport, Indiana and last: The Wedding March (1929 film) -[2018-02-13T08:28:25.521] [INFO] cheese - inserting 1000 documents. first: Never Stop (Planetshakers album) and last: International Commission on Peace and Food -[2018-02-13T08:28:25.617] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:28:25.696] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:28:25.709] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/forumcarvicais.com and last: 2009–10 MAC men's basketball season -[2018-02-13T08:28:25.742] [INFO] cheese - inserting 1000 documents. first: Québec (territory equivalent to a regional county municipality) and last: John Cox (disambiguation) -[2018-02-13T08:28:25.837] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T08:28:25.858] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:28:26.155] [INFO] cheese - inserting 1000 documents. first: Times Square Station and last: FMA IA X 59 Dronner -[2018-02-13T08:28:26.324] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:28:26.412] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Maltepespor and last: Max Elbaum -[2018-02-13T08:28:26.463] [INFO] cheese - inserting 1000 documents. first: Union des étudiants juifs de France and last: Muchawiec River -[2018-02-13T08:28:26.517] [INFO] cheese - inserting 1000 documents. first: La marche nuptiale and last: Template:2015 Esiliiga table -[2018-02-13T08:28:26.616] [INFO] cheese - batch complete in: 1.583 secs -[2018-02-13T08:28:26.667] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:28:26.687] [INFO] cheese - inserting 1000 documents. first: Adrie Koster and last: Panchmarhi -[2018-02-13T08:28:26.688] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:28:26.732] [INFO] cheese - inserting 1000 documents. first: Systems engineers and last: Template:User Highland -[2018-02-13T08:28:26.835] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:28:26.921] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:28:26.960] [INFO] cheese - inserting 1000 documents. first: Natalie Hundt and last: Category:Army Black Knights football seasons -[2018-02-13T08:28:27.180] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:28:27.245] [INFO] cheese - inserting 1000 documents. first: Tobias Haitz and last: Abdullah Awad Al Juhany -[2018-02-13T08:28:27.365] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:28:27.428] [INFO] cheese - inserting 1000 documents. first: Frederick Church and last: 2000 Summer Paralympics -[2018-02-13T08:28:27.483] [INFO] cheese - inserting 1000 documents. first: Thomas A. Furness III and last: Category:Wikipedia categories named after football clubs in Bermuda -[2018-02-13T08:28:27.605] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:28:27.670] [INFO] cheese - batch complete in: 2.414 secs -[2018-02-13T08:28:27.755] [INFO] cheese - inserting 1000 documents. first: Tours-Val de Loire and last: 1962 ACC Men's Basketball -[2018-02-13T08:28:27.835] [INFO] cheese - inserting 1000 documents. first: Palace of Linares and last: Template:Db-f11 -[2018-02-13T08:28:27.836] [INFO] cheese - inserting 1000 documents. first: Sri Lankan Tamil cinema and last: California Game Wardens -[2018-02-13T08:28:27.894] [INFO] cheese - inserting 1000 documents. first: Barney (dog) and last: Wikipedia:Featured article candidates/Belarusian Republican Youth Union/Attempt 3 -[2018-02-13T08:28:27.897] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spaceflight/Userbox and last: Lake Wawasee history -[2018-02-13T08:28:27.997] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:28:28.050] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:28:28.114] [INFO] cheese - batch complete in: 1.498 secs -[2018-02-13T08:28:28.133] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:28:28.155] [INFO] cheese - batch complete in: 1.467 secs -[2018-02-13T08:28:28.493] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Taylor County, Wisconsin and last: File:Bournemouth Airport logo.svg -[2018-02-13T08:28:28.526] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after organisations based in Bermuda and last: Wikipedia:Sockpuppet investigations/Sheriwndprakash/Archive -[2018-02-13T08:28:28.628] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:28:28.618] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:28:28.767] [INFO] cheese - inserting 1000 documents. first: Richard Brook and last: Solent Sky -[2018-02-13T08:28:28.847] [INFO] cheese - inserting 1000 documents. first: 1959 ACC Men's Basketball and last: Wikipedia:WikiProject Spam/LinkReports/tcblades.com -[2018-02-13T08:28:28.875] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:28:28.902] [INFO] cheese - inserting 1000 documents. first: KUMY-LD and last: Barking At Ariplanes (Kim Carnes album) -[2018-02-13T08:28:29.062] [INFO] cheese - inserting 1000 documents. first: Template:Silom Line route and last: Obârşa -[2018-02-13T08:28:29.069] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:28:29.068] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:28:29.218] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meatspin and last: Party for Defence of Workers Rights -[2018-02-13T08:28:29.274] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:28:29.379] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:28:29.457] [INFO] cheese - inserting 1000 documents. first: Pesnya vsegda s nami and last: Søren Løvtrup -[2018-02-13T08:28:29.510] [INFO] cheese - inserting 1000 documents. first: CyberCrime (TV series) and last: File:Logo Universidad Centroamericana Managua.svg -[2018-02-13T08:28:29.607] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:28:29.668] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:28:29.864] [INFO] cheese - inserting 1000 documents. first: Sale, Trafford, Greater Manchester and last: Washington County Airport -[2018-02-13T08:28:29.960] [INFO] cheese - inserting 1000 documents. first: List of content management systems and last: Goldman Sachs -[2018-02-13T08:28:30.001] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:28:30.011] [INFO] cheese - inserting 1000 documents. first: Fontana del Nettuno, Piazza del Popolo) and last: Satanic cult abuse -[2018-02-13T08:28:30.038] [INFO] cheese - inserting 1000 documents. first: Binky Gets Cancelled and last: Hethel old thorn -[2018-02-13T08:28:30.061] [INFO] cheese - inserting 1000 documents. first: Leauţ and last: Template:Football League Select XIs -[2018-02-13T08:28:30.111] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:28:30.186] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:28:30.267] [INFO] cheese - batch complete in: 2.597 secs -[2018-02-13T08:28:30.307] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:28:30.321] [INFO] cheese - inserting 1000 documents. first: Lakki Marwat and last: Category:Communications in Zimbabwe -[2018-02-13T08:28:30.403] [INFO] cheese - inserting 1000 documents. first: File:The Crown Of Ptolemy cover.jpg and last: Denny Denson -[2018-02-13T08:28:30.440] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:28:30.479] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:28:30.599] [INFO] cheese - inserting 1000 documents. first: Hofmeister House and last: Mike Brown (ice hockey b. 1979) -[2018-02-13T08:28:30.694] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:28:30.771] [INFO] cheese - inserting 1000 documents. first: Template:Platonic Idealism and last: File:Sinnbild Autobahnkreuz-grau.svg -[2018-02-13T08:28:30.837] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:28:31.137] [INFO] cheese - inserting 1000 documents. first: California State Route 27 and last: Agona Swedru -[2018-02-13T08:28:31.199] [INFO] cheese - inserting 1000 documents. first: Millennium Communities initiative and last: Dixie Browning -[2018-02-13T08:28:31.214] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:28:31.242] [INFO] cheese - inserting 1000 documents. first: Lycee francais La Perouse and last: Allahabad, Zahedan -[2018-02-13T08:28:31.264] [INFO] cheese - inserting 1000 documents. first: Fuller flatiron and last: Josipina Urbančič -[2018-02-13T08:28:31.312] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:28:31.351] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:28:31.410] [INFO] cheese - inserting 1000 documents. first: C.D. De los Altos and last: Sheshtomad District -[2018-02-13T08:28:31.434] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:28:31.451] [INFO] cheese - inserting 1000 documents. first: Category:Cultural depictions of W. C. Fields and last: Wikipedia:Peer review/Effects of genocide on youth/archive1 -[2018-02-13T08:28:31.552] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T08:28:31.629] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:28:31.863] [INFO] cheese - inserting 1000 documents. first: Highland Park distillery and last: Haimirich -[2018-02-13T08:28:31.947] [INFO] cheese - inserting 1000 documents. first: Maryland School for the Deaf and last: PJ Thum -[2018-02-13T08:28:31.978] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T08:28:32.005] [INFO] cheese - inserting 1000 documents. first: Allahabad Baku and last: Nagraur, Bahraich -[2018-02-13T08:28:32.129] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:FRMTG and last: Jim Fix -[2018-02-13T08:28:32.169] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:28:32.232] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:28:32.242] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:28:32.374] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after organizations based in Bulgaria and last: Category:Wikipedia requested photographs of people of Arizona -[2018-02-13T08:28:32.529] [INFO] cheese - inserting 1000 documents. first: Chris Shaffer and last: Resident Evil 4: Afterlife -[2018-02-13T08:28:32.572] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:28:32.715] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:28:32.734] [INFO] cheese - inserting 1000 documents. first: Lakeshore Alternative Elementary School and last: Ascalenia albitergis -[2018-02-13T08:28:33.033] [INFO] cheese - batch complete in: 1.48 secs -[2018-02-13T08:28:33.196] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs of people of Virginia and last: Seltenbach (Eisbach) -[2018-02-13T08:28:33.293] [INFO] cheese - inserting 1000 documents. first: Ritan and last: 409 in Your Coffeemaker -[2018-02-13T08:28:33.299] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:28:33.317] [INFO] cheese - inserting 1000 documents. first: UN refugee convention and last: X-Men Archives -[2018-02-13T08:28:33.374] [INFO] cheese - inserting 1000 documents. first: Les mille et une nuits and last: Hyposwiss Private Bank Ltd. -[2018-02-13T08:28:33.568] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:28:33.619] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:28:33.644] [INFO] cheese - batch complete in: 1.475 secs -[2018-02-13T08:28:33.754] [INFO] cheese - inserting 1000 documents. first: Haldeman-Julius Co. and last: Burundi–China relations -[2018-02-13T08:28:33.970] [INFO] cheese - inserting 1000 documents. first: 1992 Australian motorcycle Grand Prix and last: A Lesson In Crime -[2018-02-13T08:28:33.986] [INFO] cheese - inserting 1000 documents. first: Hoxun Court and last: Hispano-Suiza 8Aa -[2018-02-13T08:28:34.122] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:28:34.132] [INFO] cheese - inserting 1000 documents. first: California Proposition 54 (2003) and last: Bedřich Hrozný -[2018-02-13T08:28:34.155] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:28:34.251] [INFO] cheese - batch complete in: 4.14 secs -[2018-02-13T08:28:34.365] [INFO] cheese - inserting 1000 documents. first: Hard Problems and last: WEEV-LD -[2018-02-13T08:28:34.498] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:28:34.504] [INFO] cheese - batch complete in: 2.526 secs -[2018-02-13T08:28:34.693] [INFO] cheese - inserting 1000 documents. first: Anarchism in us and last: Antonio Corraro -[2018-02-13T08:28:34.787] [INFO] cheese - inserting 1000 documents. first: DASA S.A. and last: Catholic Workers’ College -[2018-02-13T08:28:34.835] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:28:34.885] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T08:28:34.983] [INFO] cheese - inserting 1000 documents. first: Hispano-Suiza 8Ba and last: Wikipedia:Sockpuppet investigations/Idealisis -[2018-02-13T08:28:35.028] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:28:35.037] [INFO] cheese - inserting 1000 documents. first: Category:Tokyo Police Club albums and last: File:UNCQuake.jpg -[2018-02-13T08:28:35.052] [INFO] cheese - inserting 1000 documents. first: Sir Nicholas Mander, 4th Baronet and last: Cypriot Australian -[2018-02-13T08:28:35.062] [INFO] cheese - inserting 1000 documents. first: File:Arab Liberation Front (logo).png and last: BarlowGirl (album) -[2018-02-13T08:28:35.138] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:28:35.159] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:28:35.234] [INFO] cheese - batch complete in: 1.59 secs -[2018-02-13T08:28:35.262] [INFO] cheese - inserting 1000 documents. first: Photovoltaic film and last: W3 Consortium -[2018-02-13T08:28:35.366] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:28:35.394] [INFO] cheese - inserting 1000 documents. first: A Secret History of the IRA and last: Portal:Medicine/Did you know/12 -[2018-02-13T08:28:35.482] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:28:35.579] [INFO] cheese - inserting 1000 documents. first: File:LocaPeople.jpg and last: Hayley sings Japanese Songs 2 -[2018-02-13T08:28:35.602] [INFO] cheese - inserting 1000 documents. first: Template:Pannaxiakos sections and last: Kapala (genus) -[2018-02-13T08:28:35.649] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:28:35.684] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:28:35.772] [INFO] cheese - inserting 1000 documents. first: Amblyglyphidodon curacao and last: Groß Bösitz -[2018-02-13T08:28:35.791] [INFO] cheese - inserting 1000 documents. first: Naval aircrewman and last: Category:United Kingdom Parliamentary constituencies established in 1992 -[2018-02-13T08:28:35.846] [INFO] cheese - inserting 1000 documents. first: Belgrade, Serbia and last: Sir Richard Squires -[2018-02-13T08:28:35.859] [INFO] cheese - inserting 1000 documents. first: Pierre Alexis Ponson du Terrail and last: Mount San Antonio College -[2018-02-13T08:28:35.919] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:28:35.996] [INFO] cheese - inserting 1000 documents. first: Cloward–Piven Strategy and last: Edward Everett Cox -[2018-02-13T08:28:36.010] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:28:36.161] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:28:36.167] [INFO] cheese - inserting 1000 documents. first: Kapooloku Poomaikelani and last: Catholic Community of St. Finbar -[2018-02-13T08:28:36.211] [INFO] cheese - batch complete in: 1.707 secs -[2018-02-13T08:28:36.304] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:28:36.386] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:28:36.596] [INFO] cheese - inserting 1000 documents. first: File:Youtopia.jpg and last: Wikipedia:Articles for deletion/Georg Essl -[2018-02-13T08:28:36.688] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:28:36.781] [INFO] cheese - inserting 1000 documents. first: Category:United Kingdom Parliamentary constituencies established in 1997 and last: Interlude (EP) -[2018-02-13T08:28:36.852] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:28:36.870] [INFO] cheese - inserting 1000 documents. first: File:Cullen Bloodstone Avengers Arena 6.jpg and last: Lumberton, New Mexico -[2018-02-13T08:28:36.926] [INFO] cheese - inserting 1000 documents. first: Mount Read (Tasmania) and last: Wikipedia:Votes for deletion/Nuremberg Diary -[2018-02-13T08:28:36.984] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:28:37.000] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:28:37.030] [INFO] cheese - inserting 1000 documents. first: Dallas Dhu (distillery) and last: Template:CA2064-Taplejung-1 -[2018-02-13T08:28:37.100] [INFO] cheese - inserting 1000 documents. first: Prophecy of the Shadow and last: Template:Aftershock -[2018-02-13T08:28:37.164] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:28:37.234] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:28:37.310] [INFO] cheese - inserting 1000 documents. first: Tiru parameswara vinnagaram and last: Sărsig -[2018-02-13T08:28:37.432] [INFO] cheese - inserting 1000 documents. first: Rolladen-Schneider LS-6 and last: Wikipedia:Votes for deletion/Cherry Creek News -[2018-02-13T08:28:37.468] [INFO] cheese - inserting 1000 documents. first: UWW TV and last: Molenberg (Zwalm) -[2018-02-13T08:28:37.480] [INFO] cheese - batch complete in: 1.831 secs -[2018-02-13T08:28:37.504] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:28:37.530] [INFO] cheese - inserting 1000 documents. first: Hyacinthe Francois Joseph Despinoy and last: Brandon Peterson (footballer) -[2018-02-13T08:28:37.587] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:28:37.640] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:28:37.660] [INFO] cheese - inserting 1000 documents. first: Three Jewels Temples and last: Cellulase -[2018-02-13T08:28:37.668] [INFO] cheese - inserting 1000 documents. first: Bernard Desjean, Baron de Pointis and last: Don mcsween -[2018-02-13T08:28:37.797] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:28:37.803] [INFO] cheese - inserting 1000 documents. first: Category:Fictional Democrats (United States) and last: Battle of Mount Haemus -[2018-02-13T08:28:37.803] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T08:28:37.935] [INFO] cheese - inserting 1000 documents. first: File:Red kangaroo resting.JPG and last: Template:Marshals of Italy -[2018-02-13T08:28:37.945] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:28:38.090] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:28:38.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gawronska and last: Summer Services -[2018-02-13T08:28:38.251] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:28:38.400] [INFO] cheese - inserting 1000 documents. first: All to Myself and last: File:Magyar Cserkészszövetség 2010.svg -[2018-02-13T08:28:38.507] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:28:38.658] [INFO] cheese - inserting 1000 documents. first: Guti.Haz and last: Inigo Perez -[2018-02-13T08:28:38.676] [INFO] cheese - inserting 1000 documents. first: New Era for Democracy and last: List of terrorist incidents, July–December 2015 -[2018-02-13T08:28:38.712] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:28:38.779] [INFO] cheese - inserting 1000 documents. first: File:Thekillerslogoband.JPG and last: VP-94 -[2018-02-13T08:28:38.838] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:28:38.910] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected Article/71 and last: Duuh -[2018-02-13T08:28:38.937] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:28:39.079] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:28:39.124] [INFO] cheese - inserting 1000 documents. first: Kobo Aura and last: Disk floret -[2018-02-13T08:28:39.184] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:28:39.206] [INFO] cheese - inserting 1000 documents. first: Sanlazar and last: Wikipedia:Village pump (miscellaneous)/Archive O -[2018-02-13T08:28:39.283] [INFO] cheese - inserting 1000 documents. first: Template:Createaccount and last: File:Head of State film.jpg -[2018-02-13T08:28:39.360] [INFO] cheese - batch complete in: 1.879 secs -[2018-02-13T08:28:39.419] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T08:28:39.496] [INFO] cheese - inserting 1000 documents. first: Professional education and last: Template:Pre-American Revolution documents -[2018-02-13T08:28:39.645] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:28:39.659] [INFO] cheese - inserting 1000 documents. first: Al Van Camp and last: File:OZ Sword of Etheria.jpg -[2018-02-13T08:28:39.672] [INFO] cheese - inserting 1000 documents. first: Lennard jones potential and last: Samuel Segal, Baron Segal -[2018-02-13T08:28:39.680] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Non-free content review/Archive 28 and last: Category:Romanian drama films -[2018-02-13T08:28:39.701] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:28:39.737] [INFO] cheese - inserting 1000 documents. first: Habib Diallo and last: Brooksfield (Maxi yacht) -[2018-02-13T08:28:39.718] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:28:39.772] [INFO] cheese - inserting 1000 documents. first: Linear space and last: Mint-made errors -[2018-02-13T08:28:39.815] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:28:39.893] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:28:40.000] [INFO] cheese - batch complete in: 2.197 secs -[2018-02-13T08:28:40.215] [INFO] cheese - inserting 1000 documents. first: Grant Munro (footballer) and last: HNN extension -[2018-02-13T08:28:40.298] [INFO] cheese - inserting 1000 documents. first: Psychological and sociological effects of spaceflight and last: File:MedioLogo 2013.png -[2018-02-13T08:28:40.311] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:28:40.358] [INFO] cheese - inserting 1000 documents. first: File:Boogie la pelicula.jpg and last: Greek Gods and Goddesses of Greek mythology -[2018-02-13T08:28:40.386] [INFO] cheese - inserting 1000 documents. first: Sir John Eardley-Wilmot, 2nd Baronet and last: File:Amajorguitar213.png -[2018-02-13T08:28:40.410] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:28:40.489] [INFO] cheese - inserting 1000 documents. first: Cumings and last: Wikipedia:Translation/Yellow Cathedral -[2018-02-13T08:28:40.514] [INFO] cheese - inserting 1000 documents. first: Category:1907–08 Athletic League of New England State Colleges men's basketball season and last: Melika Foroutan -[2018-02-13T08:28:40.538] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:28:40.547] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:28:40.564] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Village pump (miscellaneous)/Archive P and last: File:No Deposit, No Return FilmPoster.jpeg -[2018-02-13T08:28:40.717] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:28:40.767] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:28:40.816] [INFO] cheese - batch complete in: 1.456 secs -[2018-02-13T08:28:41.271] [INFO] cheese - inserting 1000 documents. first: Biathlon at the Asian Winter Games and last: Sometimes Things Just Disappear -[2018-02-13T08:28:41.358] [INFO] cheese - inserting 1000 documents. first: Ahmadabad, Kowsar and last: John William Gamaliel Ross -[2018-02-13T08:28:41.445] [INFO] cheese - inserting 1000 documents. first: 8 Hilarious Gods and last: Stewart House and Howard–Stewart Family Cemetery -[2018-02-13T08:28:41.502] [INFO] cheese - inserting 1000 documents. first: Template:Sports at the Olympics and last: Narcissa Black Malfoy -[2018-02-13T08:28:41.537] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:28:41.571] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:28:41.621] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:28:41.629] [INFO] cheese - inserting 1000 documents. first: Anita Zucker and last: Ramat Yishay -[2018-02-13T08:28:41.631] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:28:41.762] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:28:41.833] [INFO] cheese - inserting 1000 documents. first: File:Stardust FilmPoster.jpeg and last: Homeopathic Institute and Hospital of San José -[2018-02-13T08:28:41.855] [INFO] cheese - inserting 1000 documents. first: Tholian and last: Externsteine -[2018-02-13T08:28:41.933] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:28:42.095] [INFO] cheese - batch complete in: 2.094 secs -[2018-02-13T08:28:42.166] [INFO] cheese - inserting 1000 documents. first: Category:Eritrea geography stubs and last: Igors Stepanovs -[2018-02-13T08:28:42.294] [INFO] cheese - inserting 1000 documents. first: Protuotrov and last: The Sins of the Father -[2018-02-13T08:28:42.309] [INFO] cheese - inserting 1000 documents. first: B. V. Nimbkar and last: Category:Wikipedia requested photographs of basketball people -[2018-02-13T08:28:42.322] [INFO] cheese - batch complete in: 2.011 secs -[2018-02-13T08:28:42.390] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:28:42.490] [INFO] cheese - inserting 1000 documents. first: Bellatrix Black Lestrange and last: 2006 European Seniors Tour -[2018-02-13T08:28:42.531] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:28:42.586] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Charters Towers Miners and last: File:Francesblackeire.jpg -[2018-02-13T08:28:42.725] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:28:42.757] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:28:42.784] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia references cleanup from September 2013 and last: Module:Japanese calendar/data/doc -[2018-02-13T08:28:42.857] [INFO] cheese - inserting 1000 documents. first: Instituto Homeopático y Hospital de San José and last: File:Kajaani University of Applied Sciences.svg -[2018-02-13T08:28:42.911] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:28:42.986] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:28:43.099] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs of boxing people and last: Justin's House -[2018-02-13T08:28:43.184] [INFO] cheese - inserting 1000 documents. first: Akbayan Citizens’ Action Party and last: The Education, Audiovisual and Culture Executive Agency -[2018-02-13T08:28:43.194] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:28:43.276] [INFO] cheese - inserting 1000 documents. first: Glassy water and last: Category:Foreign relations of Vietnam -[2018-02-13T08:28:43.288] [INFO] cheese - inserting 1000 documents. first: David Vickers and last: Route 286 (Massachusetts/New Hampshire) -[2018-02-13T08:28:43.328] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:28:43.366] [INFO] cheese - inserting 1000 documents. first: File:WesleyCrest.jpg and last: Ramón María Narváez y Campos -[2018-02-13T08:28:43.369] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:28:43.434] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:28:43.598] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:28:43.805] [INFO] cheese - inserting 1000 documents. first: Kajaani University of Applied Sciences and last: Category:Geography of Maries County, Missouri -[2018-02-13T08:28:43.917] [INFO] cheese - inserting 1000 documents. first: Kawauchi Station and last: Danielson (band) -[2018-02-13T08:28:43.968] [INFO] cheese - inserting 1000 documents. first: Understanding Comics and last: V. R. Krishna Iyer -[2018-02-13T08:28:44.034] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:28:44.036] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:28:44.184] [INFO] cheese - batch complete in: 2.089 secs -[2018-02-13T08:28:44.218] [INFO] cheese - inserting 1000 documents. first: Magnus Carlson and last: Curling at the Winter Universiade -[2018-02-13T08:28:44.305] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:28:44.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada-related articles by quality/3 and last: Shakespearean authorship -[2018-02-13T08:28:44.421] [INFO] cheese - inserting 1000 documents. first: Yupiltepegue language and last: ¿Quién Manda? -[2018-02-13T08:28:44.435] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:28:44.531] [INFO] cheese - batch complete in: 1.62 secs -[2018-02-13T08:28:44.582] [INFO] cheese - inserting 1000 documents. first: Food Labelling and the Law and last: File:M1w1Layout.jpg -[2018-02-13T08:28:44.601] [INFO] cheese - inserting 1000 documents. first: Tarpon River and last: Saldula saltatoria -[2018-02-13T08:28:44.723] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T08:28:44.718] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:28:44.739] [INFO] cheese - inserting 1000 documents. first: Mortmar, California and last: "Esa Pekka Salonen" -[2018-02-13T08:28:44.865] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:28:45.045] [INFO] cheese - inserting 1000 documents. first: Evolution of the hippocampus and last: Pressure transmitter -[2018-02-13T08:28:45.071] [INFO] cheese - inserting 1000 documents. first: Umegaoka Station and last: Sergey Vyshedkevich -[2018-02-13T08:28:45.086] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:28:45.104] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/David Owen Dodd/archive1 and last: Little Basses Reef Lighthouse -[2018-02-13T08:28:45.227] [INFO] cheese - inserting 1000 documents. first: ¿Quien Manda? and last: Template:Westar Rules Ladder/1999 -[2018-02-13T08:28:45.255] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:28:45.328] [INFO] cheese - batch complete in: 1.729 secs -[2018-02-13T08:28:45.435] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:28:45.443] [INFO] cheese - inserting 1000 documents. first: Category:1933 in squash and last: Simple Songs (Jim O'Rourke album) -[2018-02-13T08:28:45.504] [INFO] cheese - inserting 1000 documents. first: Nora Aunor and last: Wikipedia:Ancientpages -[2018-02-13T08:28:45.524] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:28:45.556] [INFO] cheese - inserting 1000 documents. first: Taxco and last: Lake City -[2018-02-13T08:28:45.613] [INFO] cheese - inserting 1000 documents. first: Shōriki and last: Battle of Jabal Shammar (1929) -[2018-02-13T08:28:45.672] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:28:45.699] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:28:45.704] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:28:45.862] [INFO] cheese - inserting 1000 documents. first: Meridian High School (Illinois) and last: Template:Golden State Warriors 1974–75 NBA champions -[2018-02-13T08:28:45.951] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:28:45.986] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Grant County, Minnesota and last: Penonemeño language -[2018-02-13T08:28:45.991] [INFO] cheese - inserting 1000 documents. first: Template:Rushden & Diamonds F.C. and last: Sho'rva -[2018-02-13T08:28:46.003] [INFO] cheese - inserting 1000 documents. first: Lessay Airfield and last: Akushinsky District -[2018-02-13T08:28:46.043] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Ara Canal/archive1 and last: Category:1500 in Africa -[2018-02-13T08:28:46.093] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:28:46.110] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:28:46.125] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:28:46.121] [INFO] cheese - inserting 1000 documents. first: Borownica, Subcarpathian Voivodeship and last: Category:People from Wooster, Ohio -[2018-02-13T08:28:46.176] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:28:46.241] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:28:46.362] [INFO] cheese - inserting 1000 documents. first: Wikipedia:LCM and last: Martin David Kahane -[2018-02-13T08:28:46.484] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:28:46.648] [INFO] cheese - inserting 1000 documents. first: Edge House and last: Portal:Military of the United States/Units and Awards/13 -[2018-02-13T08:28:46.737] [INFO] cheese - inserting 1000 documents. first: Kendra Slewenski and last: Kagando Hospital -[2018-02-13T08:28:46.776] [INFO] cheese - inserting 1000 documents. first: Village Vets Australia and last: Wikipedia:WikiProject Spam/Local/concussionfoundation.org -[2018-02-13T08:28:46.778] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:28:46.787] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:28:46.908] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:28:46.934] [INFO] cheese - inserting 1000 documents. first: 450SL and last: Victoria Rodriguez -[2018-02-13T08:28:46.982] [INFO] cheese - inserting 1000 documents. first: Kenneth Dubuque Memorial State Forest and last: Template:Masta Killa -[2018-02-13T08:28:47.029] [INFO] cheese - inserting 1000 documents. first: Danka Kovinic and last: Sunstrum, Ontario -[2018-02-13T08:28:47.042] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:47.072] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:28:47.146] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:28:47.337] [INFO] cheese - inserting 1000 documents. first: Milemarker and last: File:MarkRae RaeRoad albumcover.jpgMarkRae RaeRoad albumcover.jpg -[2018-02-13T08:28:47.357] [INFO] cheese - inserting 1000 documents. first: Email advertising and last: SoCal -[2018-02-13T08:28:47.395] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:28:47.403] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Peaknik (2nd nomination) and last: Donald B. Smith -[2018-02-13T08:28:47.436] [INFO] cheese - inserting 1000 documents. first: Ss decontrol and last: Luigi Turci -[2018-02-13T08:28:47.491] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:28:47.502] [INFO] cheese - batch complete in: 1.798 secs -[2018-02-13T08:28:47.547] [INFO] cheese - inserting 1000 documents. first: Pauline Croft and last: Lulingu Tshionka Airport -[2018-02-13T08:28:47.545] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:28:47.671] [INFO] cheese - inserting 1000 documents. first: Emil Larsen (wrestler) and last: A Night at Boomers, Vol. 2 -[2018-02-13T08:28:47.677] [INFO] cheese - inserting 1000 documents. first: Ray Tellier and last: Logarska Dolina -[2018-02-13T08:28:47.678] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:28:47.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2011 August 16 and last: Category:National political office-holders in South Africa -[2018-02-13T08:28:47.801] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:28:47.850] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:28:47.879] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:28:48.082] [INFO] cheese - inserting 1000 documents. first: Japan Super League and last: William Levett (Rector of Buxted) -[2018-02-13T08:28:48.127] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:28:48.147] [INFO] cheese - inserting 1000 documents. first: File:MarkRae IntoTheDepths albumcover.jpg and last: Bracken's World -[2018-02-13T08:28:48.154] [INFO] cheese - inserting 1000 documents. first: Hot spot volcanoes and last: Track day -[2018-02-13T08:28:48.214] [INFO] cheese - inserting 1000 documents. first: File:Ester Valerie Noronha.jpg and last: Jeffery Stork -[2018-02-13T08:28:48.238] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:28:48.257] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:28:48.315] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Randolph County, Indiana and last: Category:Royal House of Perak -[2018-02-13T08:28:48.320] [INFO] cheese - inserting 1000 documents. first: Guckenheimer Warehouse and last: Category:Brewton Millers players -[2018-02-13T08:28:48.360] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:28:48.421] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:28:48.424] [INFO] cheese - inserting 1000 documents. first: James Orrock and last: File:James White 01.png -[2018-02-13T08:28:48.480] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:28:48.635] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:28:49.141] [INFO] cheese - inserting 1000 documents. first: Demidov (town) and last: Gulf of Eastern Corea -[2018-02-13T08:28:49.299] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:28:49.307] [INFO] cheese - inserting 1000 documents. first: Category:Austrian speculative fiction films and last: 1/2nd Wessex Field Company, Royal Engineers -[2018-02-13T08:28:49.319] [INFO] cheese - inserting 1000 documents. first: Andrés García and last: Musée de Cluny -- Musée national du Moyen Âge -[2018-02-13T08:28:49.453] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:28:49.465] [INFO] cheese - inserting 1000 documents. first: Mitsuo Nakamura and last: John Porter (horseman) -[2018-02-13T08:28:49.490] [INFO] cheese - inserting 1000 documents. first: September 11, 2001 War Games and last: Bio-nano generator -[2018-02-13T08:28:49.566] [INFO] cheese - batch complete in: 2.064 secs -[2018-02-13T08:28:49.707] [INFO] cheese - inserting 1000 documents. first: Category:Irish expatriates in Croatia and last: Wikipedia:WikiProject Biography/Peer review/Tenacious D -[2018-02-13T08:28:49.716] [INFO] cheese - batch complete in: 1.478 secs -[2018-02-13T08:28:49.749] [INFO] cheese - inserting 1000 documents. first: Elkeson de Oliveira Cardozo and last: Faringdon, Oxfordshire -[2018-02-13T08:28:49.773] [INFO] cheese - batch complete in: 1.516 secs -[2018-02-13T08:28:49.776] [INFO] cheese - inserting 1000 documents. first: Norman Gerry Jones and last: File:ShadowKiss Novel.jpg -[2018-02-13T08:28:49.822] [INFO] cheese - batch complete in: 1.695 secs -[2018-02-13T08:28:49.915] [INFO] cheese - batch complete in: 1.434 secs -[2018-02-13T08:28:49.997] [INFO] cheese - batch complete in: 1.362 secs -[2018-02-13T08:28:50.128] [INFO] cheese - inserting 1000 documents. first: Template:NC Dinos roster and last: Shanell aka SnL -[2018-02-13T08:28:50.264] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T08:28:50.458] [INFO] cheese - inserting 1000 documents. first: Xcode Tools and last: Adolf Šimperský -[2018-02-13T08:28:50.459] [INFO] cheese - inserting 1000 documents. first: Cnemaspis ranwellai and last: Category:Lists of people from Georgia (U.S. state) -[2018-02-13T08:28:50.500] [INFO] cheese - inserting 1000 documents. first: Artificial foreskin and last: Category:Association football in Northern Ireland -[2018-02-13T08:28:50.526] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:28:50.542] [INFO] cheese - inserting 1000 documents. first: Khambhoj and last: Discover magazine -[2018-02-13T08:28:50.548] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:28:50.584] [INFO] cheese - inserting 1000 documents. first: 1/3rd Wessex Field Company, Royal Engineers and last: ǁKhara Hais Local Municipality -[2018-02-13T08:28:50.638] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:28:50.713] [INFO] cheese - inserting 1000 documents. first: Nikopol's'kyi Zavod Ferosplaviv and last: Mastocytosis, systemic -[2018-02-13T08:28:50.712] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:28:50.738] [INFO] cheese - batch complete in: 1.285 secs -[2018-02-13T08:28:50.887] [INFO] cheese - inserting 1000 documents. first: Petridul de Mijloc and last: Hôtel d'Angoulême Lamoignon -[2018-02-13T08:28:50.889] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:28:50.982] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:28:51.140] [INFO] cheese - inserting 1000 documents. first: Flinders Ranges Worm-lizard and last: Loving WR-1 Love -[2018-02-13T08:28:51.182] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:28:51.206] [INFO] cheese - inserting 1000 documents. first: The Lady with the Unicorn and last: Big Cat -[2018-02-13T08:28:51.282] [INFO] cheese - inserting 1000 documents. first: Oregon Labor Market Information System and last: History of toilet -[2018-02-13T08:28:51.286] [INFO] cheese - inserting 1000 documents. first: File:Robert Carter -Halo.jpg and last: Haspra -[2018-02-13T08:28:51.331] [INFO] cheese - inserting 1000 documents. first: Mark Zuckerberg and last: Teja (character) -[2018-02-13T08:28:51.354] [INFO] cheese - batch complete in: 1.788 secs -[2018-02-13T08:28:51.398] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:28:51.416] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:28:51.435] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:28:51.559] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Green Bay, Wisconsin and last: NO-DO -[2018-02-13T08:28:51.602] [INFO] cheese - inserting 1000 documents. first: Category:Women's basketball by country and last: Rayavaram (Tamil Nadu) -[2018-02-13T08:28:51.646] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:28:51.689] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:28:51.805] [INFO] cheese - inserting 1000 documents. first: Ooms and last: List of Category A listed buildings in Na h-Eileanan Siar -[2018-02-13T08:28:51.864] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:28:51.899] [INFO] cheese - inserting 1000 documents. first: Fear (Dota 2 player) and last: Frank Hawkins (rugby player) -[2018-02-13T08:28:52.007] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:28:52.046] [INFO] cheese - inserting 1000 documents. first: Schroon lake and last: Kalyana Varadharaja Perumal Temple -[2018-02-13T08:28:52.083] [INFO] cheese - inserting 1000 documents. first: Yolo City and last: The G Spot and Other Recent Discoveries About Human Sexuality -[2018-02-13T08:28:52.110] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:28:52.183] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:28:52.215] [INFO] cheese - inserting 1000 documents. first: Mancha Alta Albaceteña and last: 1955 Cincinnati Reds -[2018-02-13T08:28:52.217] [INFO] cheese - inserting 1000 documents. first: Panopoulo, Greece and last: Oppositional defiant disorder -[2018-02-13T08:28:52.255] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pharmamedics.com and last: ARM Alvarez -[2018-02-13T08:28:52.286] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:28:52.400] [INFO] cheese - inserting 1000 documents. first: Category:Royal Navy in World War I and last: Marquisate of Monferrato -[2018-02-13T08:28:52.421] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:28:52.436] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:28:52.543] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:28:52.779] [INFO] cheese - inserting 1000 documents. first: Category:1915 disestablishments in China and last: Vorotan Hydropower Plant -[2018-02-13T08:28:52.830] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:28:52.875] [INFO] cheese - inserting 1000 documents. first: Template:Covenantor Rebellion of 1770's and last: General Montcalm -[2018-02-13T08:28:52.887] [INFO] cheese - inserting 1000 documents. first: Xbalanque and last: Washington Allston -[2018-02-13T08:28:52.976] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:28:53.015] [INFO] cheese - batch complete in: 1.661 secs -[2018-02-13T08:28:53.045] [INFO] cheese - inserting 1000 documents. first: 1956 Cincinnati Reds and last: Samuel Wale -[2018-02-13T08:28:53.148] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:28:53.203] [INFO] cheese - inserting 1000 documents. first: Richard Hay (disambiguation) and last: File:Zolarxtimelesscvr.jpg -[2018-02-13T08:28:53.232] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sam Kelley and last: Wangxian, Liling -[2018-02-13T08:28:53.347] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:28:53.370] [INFO] cheese - inserting 1000 documents. first: John R. Carter and last: Oka River (Siberia) -[2018-02-13T08:28:53.403] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:28:53.457] [INFO] cheese - inserting 1000 documents. first: David Evyn Canter and last: 奇瑞汽车 -[2018-02-13T08:28:53.468] [INFO] cheese - inserting 1000 documents. first: Better By You, Better Than Me and last: Una S. Ryan -[2018-02-13T08:28:53.542] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:28:53.551] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:28:53.636] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:28:53.646] [INFO] cheese - inserting 1000 documents. first: Mamadou Seck (footballer) and last: Category:Mid-importance science fiction articles -[2018-02-13T08:28:53.742] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:28:53.894] [INFO] cheese - inserting 1000 documents. first: Cholamandalam coast and last: Heishuihe Township -[2018-02-13T08:28:53.898] [INFO] cheese - inserting 1000 documents. first: Bengali-American and last: Tumar Darrehsi-ye Bala -[2018-02-13T08:28:53.905] [INFO] cheese - inserting 1000 documents. first: Cook levin theorem and last: Wikipedia:Articles for deletion/Ruatoki -[2018-02-13T08:28:53.951] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:28:53.970] [INFO] cheese - inserting 1000 documents. first: Category:Hanlim Multi Art School alumni and last: April 2003 -[2018-02-13T08:28:53.980] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:28:54.022] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:28:54.048] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:28:54.160] [INFO] cheese - inserting 1000 documents. first: Bristle-spined rat and last: C F Booth -[2018-02-13T08:28:54.217] [INFO] cheese - inserting 1000 documents. first: Gerald Mcboingboing and last: 5280 magazine -[2018-02-13T08:28:54.235] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:28:54.299] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:28:54.342] [INFO] cheese - inserting 1000 documents. first: Maurus Servius Honoratius and last: File:KIS cover.jpg -[2018-02-13T08:28:54.366] [INFO] cheese - inserting 1000 documents. first: Julianna Margulies and last: Compound noun -[2018-02-13T08:28:54.502] [INFO] cheese - batch complete in: 1.487 secs -[2018-02-13T08:28:54.504] [INFO] cheese - inserting 1000 documents. first: West Bank settlement and last: Ophisurus versicolor -[2018-02-13T08:28:54.514] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:28:54.597] [INFO] cheese - inserting 1000 documents. first: Huaiyang, Hebei and last: Category:1873 in London -[2018-02-13T08:28:54.604] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:28:54.698] [INFO] cheese - inserting 1000 documents. first: Category:1987 in Macau and last: Western People's Front -[2018-02-13T08:28:54.701] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:28:54.763] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:28:54.793] [INFO] cheese - inserting 1000 documents. first: Neo wheels and last: File:UnwillingEmigrants.jpg -[2018-02-13T08:28:54.886] [INFO] cheese - inserting 1000 documents. first: Muscles of the hand and last: Maryland State Route 95 -[2018-02-13T08:28:54.919] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:28:54.966] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:28:55.214] [INFO] cheese - inserting 1000 documents. first: Bladder diseases and last: Inuit group -[2018-02-13T08:28:55.214] [INFO] cheese - inserting 1000 documents. first: Timbisha people and last: Category:People from Cherven Bryag -[2018-02-13T08:28:55.269] [INFO] cheese - inserting 1000 documents. first: Dexter National Fish Hatchery and last: Patrick Bowes-Lyon (tennis player) -[2018-02-13T08:28:55.297] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:28:55.314] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:28:55.471] [INFO] cheese - inserting 1000 documents. first: File:Age of Empire Online cover.jpg and last: Category:Townships in Rush County, Indiana -[2018-02-13T08:28:55.475] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T08:28:55.570] [INFO] cheese - inserting 1000 documents. first: SwapMagic and last: Steatocranus gibbiceps -[2018-02-13T08:28:55.617] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:28:55.663] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:28:55.722] [INFO] cheese - inserting 1000 documents. first: Symphony No. 2 (Borodin) and last: Barbatesti, Gorj -[2018-02-13T08:28:55.743] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:FFX Tools and last: ARA Independencia (1891) -[2018-02-13T08:28:55.833] [INFO] cheese - inserting 1000 documents. first: Compound adjective and last: Unary -[2018-02-13T08:28:55.840] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:28:55.858] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:28:56.004] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T08:28:56.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oak Hill Middle School and last: Dust and mist collection -[2018-02-13T08:28:56.212] [INFO] cheese - inserting 1000 documents. first: José Barrionuevo and last: Anita Belle Colton -[2018-02-13T08:28:56.254] [INFO] cheese - inserting 1000 documents. first: Alan Marshall (disambiguation) and last: 2011–12 Celtic league -[2018-02-13T08:28:56.258] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:28:56.282] [INFO] cheese - inserting 1000 documents. first: Gallic group and last: Doucet-Boudreau v. Nova Scotia -[2018-02-13T08:28:56.311] [INFO] cheese - inserting 1000 documents. first: Emmett Vogan and last: Ruslan Sirota -[2018-02-13T08:28:56.316] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:28:56.402] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:28:56.426] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:28:56.553] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:28:56.748] [INFO] cheese - inserting 1000 documents. first: Draft:Audacieux and last: File:Headlong.jpg -[2018-02-13T08:28:56.826] [INFO] cheese - inserting 1000 documents. first: Bengesti and last: Pine Tree Flag -[2018-02-13T08:28:56.934] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:28:57.003] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:28:57.157] [INFO] cheese - inserting 1000 documents. first: CUED and last: Futaleufú Airport -[2018-02-13T08:28:57.229] [INFO] cheese - inserting 1000 documents. first: Category:Minato, Tokyo and last: File:BravoGiovanni.jpg -[2018-02-13T08:28:57.246] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:57.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jessica-jarrell-daily.skyrock.com. and last: Category:North East England articles by quality -[2018-02-13T08:28:57.337] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:28:57.340] [INFO] cheese - inserting 1000 documents. first: Namida wo Misenaide (Boys Don't Cry) and last: Deep Space Nine (fictional space station) -[2018-02-13T08:28:57.375] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:28:57.483] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:28:57.567] [INFO] cheese - inserting 1000 documents. first: Southwark Bridge and last: Socialist Worker's Party -[2018-02-13T08:28:57.655] [INFO] cheese - inserting 1000 documents. first: (252) Clementina and last: Scottish Executive agencies -[2018-02-13T08:28:57.737] [INFO] cheese - batch complete in: 1.733 secs -[2018-02-13T08:28:57.903] [INFO] cheese - inserting 1000 documents. first: Giovanni Manzuoli and last: Template:Grande Prairie Radio -[2018-02-13T08:28:57.929] [INFO] cheese - batch complete in: 1.503 secs -[2018-02-13T08:28:58.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Latif Halmat and last: File:Mustard-seed-international-logo-white-footer.png -[2018-02-13T08:28:58.113] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:28:58.144] [INFO] cheese - inserting 1000 documents. first: Fernando Cuéllar Reyes and last: File:Metro FM Logo2.gif -[2018-02-13T08:28:58.154] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:28:58.243] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:28:58.436] [INFO] cheese - inserting 1000 documents. first: South African birds and last: Otradny, Samara Oblast -[2018-02-13T08:28:58.452] [INFO] cheese - inserting 1000 documents. first: Charles Gilbert Heathcote and last: Wikipedia:Articles for deletion/David Eager -[2018-02-13T08:28:58.533] [INFO] cheese - inserting 1000 documents. first: Indonesian Basketball League and last: Obomkpa -[2018-02-13T08:28:58.557] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:28:58.566] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:28:58.669] [INFO] cheese - batch complete in: 1.185 secs -[2018-02-13T08:28:58.869] [INFO] cheese - inserting 1000 documents. first: Thriplow and last: Liselotte Herrmann -[2018-02-13T08:28:58.870] [INFO] cheese - inserting 1000 documents. first: Stanley Community College and last: José María Larios -[2018-02-13T08:28:58.938] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Dictionary of National Biography/Artists/wikidata and last: Hôtel Dieu in Paris -[2018-02-13T08:28:58.975] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:28:58.991] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:28:59.082] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:28:59.265] [INFO] cheese - inserting 1000 documents. first: Railway electric traction and last: La bandera Argentina -[2018-02-13T08:28:59.280] [INFO] cheese - inserting 1000 documents. first: Diego de la Vega and last: Joe Tex -[2018-02-13T08:28:59.398] [INFO] cheese - inserting 1000 documents. first: Cistanthe tweedyi and last: Asemnantha pubescens -[2018-02-13T08:28:59.410] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:28:59.513] [INFO] cheese - batch complete in: 1.776 secs -[2018-02-13T08:28:59.522] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:28:59.607] [INFO] cheese - inserting 1000 documents. first: Pullankuzhal and last: Wikipedia:Articles for deletion/Pokémon Movie 13 -[2018-02-13T08:28:59.705] [INFO] cheese - inserting 1000 documents. first: Morgan Aero8 and last: Assistant commissioner -[2018-02-13T08:28:59.767] [INFO] cheese - inserting 1000 documents. first: Harran, Idlib and last: Boutheïna Amiche -[2018-02-13T08:28:59.781] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:28:59.786] [INFO] cheese - inserting 1000 documents. first: 2013–14 Saint Mary's Gaels women's basketball team and last: Template:Attached KML/Kentucky Route 842 -[2018-02-13T08:28:59.865] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:28:59.939] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:28:59.970] [INFO] cheese - batch complete in: 1.857 secs -[2018-02-13T08:29:00.019] [INFO] cheese - inserting 1000 documents. first: HVDC Wolgograd-Donbass and last: Slanesville Pike -[2018-02-13T08:29:00.108] [INFO] cheese - inserting 1000 documents. first: Astiella delicatula and last: Category:Greenville Groove -[2018-02-13T08:29:00.180] [INFO] cheese - inserting 1000 documents. first: Hamilton P. Bee and last: Portal:Heavy Metal -[2018-02-13T08:29:00.188] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:29:00.190] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:29:00.353] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:29:00.553] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2009 November 5 and last: CANTOR Georg -[2018-02-13T08:29:00.658] [INFO] cheese - inserting 1000 documents. first: Hall, Joseph and last: Batavia Coast -[2018-02-13T08:29:00.692] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:29:00.773] [INFO] cheese - inserting 1000 documents. first: Lolol Palo Alto Airport and last: Dukenet communications -[2018-02-13T08:29:00.811] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:29:00.851] [INFO] cheese - inserting 1000 documents. first: John Rogan and last: Uoit -[2018-02-13T08:29:01.013] [INFO] cheese - inserting 1000 documents. first: Carl Faulkner and last: Wikipedia:Files for deletion/2011 August 21 -[2018-02-13T08:29:01.016] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:29:01.028] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:29:01.142] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:29:01.166] [INFO] cheese - inserting 1000 documents. first: Springfield Pike and last: Springbok (disambiguation) -[2018-02-13T08:29:01.269] [INFO] cheese - inserting 1000 documents. first: Common Slavic and last: BSNL Mobile -[2018-02-13T08:29:01.287] [INFO] cheese - inserting 1000 documents. first: Richard Lewontin and last: Ferenc Mádl -[2018-02-13T08:29:01.293] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:29:01.311] [INFO] cheese - inserting 1000 documents. first: Joce of York and last: Harbourvest Partners -[2018-02-13T08:29:01.444] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:29:01.444] [INFO] cheese - batch complete in: 1.931 secs -[2018-02-13T08:29:01.452] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:29:01.520] [INFO] cheese - inserting 1000 documents. first: Bandolero (band) and last: Abu Dali, Idlib -[2018-02-13T08:29:01.597] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:29:01.601] [INFO] cheese - inserting 1000 documents. first: File:Marillion cover-my-eyes.jpg and last: Transport in Hyderabad, India -[2018-02-13T08:29:01.690] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:29:01.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/USS Comfort (AH-3) and last: Jackson County Courthouse (Medford, Oregon) -[2018-02-13T08:29:01.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2011 August 21 and last: Template:Nfl predraft/doc -[2018-02-13T08:29:01.785] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:29:01.833] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:29:02.053] [INFO] cheese - inserting 1000 documents. first: RAE Hurricane and last: Grote Street, Adelaide -[2018-02-13T08:29:02.110] [INFO] cheese - inserting 1000 documents. first: Tsuyoshi Hasegawa and last: Dinah the Dining Car -[2018-02-13T08:29:02.115] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:29:02.130] [INFO] cheese - inserting 1000 documents. first: Center School (Connecticut) and last: Kirkby, Geoffrey John, Captain, Royal Navy, CBE, DSC ** -[2018-02-13T08:29:02.175] [INFO] cheese - inserting 1000 documents. first: Bartaman Bharat and last: 2013 Morocco Tennis Tour – Meknes -[2018-02-13T08:29:02.206] [INFO] cheese - inserting 1000 documents. first: Abu Omar, Idlib and last: Wikipedia:Articles for deletion/Madagascar Oil -[2018-02-13T08:29:02.189] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:02.234] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:29:02.247] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:29:02.332] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:29:02.436] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Why is plastic surgery bad and last: File:LiveAtTheVillageVanguard a ThadJonesMelLewis.jpg -[2018-02-13T08:29:02.491] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:29:02.621] [INFO] cheese - inserting 1000 documents. first: Understudy and last: Patrick Leahy -[2018-02-13T08:29:02.649] [INFO] cheese - inserting 1000 documents. first: Coroá language and last: Shandaar (1990 film) -[2018-02-13T08:29:02.676] [INFO] cheese - inserting 1000 documents. first: Sputnik music and last: Jan Willem Eduard Buijs -[2018-02-13T08:29:02.686] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:29:02.687] [INFO] cheese - inserting 1000 documents. first: Graham Rees and last: Pornthip Nakhirunkanok -[2018-02-13T08:29:02.726] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:29:02.783] [INFO] cheese - inserting 1000 documents. first: Template:UK decimalisation and last: Boldface hierarchy -[2018-02-13T08:29:02.832] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:29:02.834] [INFO] cheese - inserting 1000 documents. first: Argentino hasta la muerte and last: Category:Samoan society -[2018-02-13T08:29:02.890] [INFO] cheese - inserting 1000 documents. first: Heacham and last: Fantastic Factory -[2018-02-13T08:29:02.956] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:29:02.980] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:29:03.033] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:29:03.205] [INFO] cheese - inserting 1000 documents. first: GEMS Royal Dubai School and last: Shannon peters -[2018-02-13T08:29:03.234] [INFO] cheese - inserting 1000 documents. first: Sibford and last: Category:Cities in Morgan County, Illinois -[2018-02-13T08:29:03.319] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:29:03.337] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:29:03.593] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Ron Elliott (musician) and last: Wikipedia:WikiProject Spam/LinkReports/motorolafans.info -[2018-02-13T08:29:03.754] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:29:03.783] [INFO] cheese - inserting 1000 documents. first: Ophthalmitis viridior and last: Antaeotricha tectoria -[2018-02-13T08:29:03.917] [INFO] cheese - inserting 1000 documents. first: The Daily Citizen and last: Wikipedia:MMOG/OR/NEWS -[2018-02-13T08:29:03.971] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:29:04.041] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:29:04.085] [INFO] cheese - inserting 1000 documents. first: Levada and last: Charter trustee -[2018-02-13T08:29:04.113] [INFO] cheese - inserting 1000 documents. first: Category:Hazara politicians and last: Category:Houses completed in 1906 -[2018-02-13T08:29:04.119] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Moultrie County, Illinois and last: Category:1811 in Thailand -[2018-02-13T08:29:04.138] [INFO] cheese - inserting 1000 documents. first: Category:2008 Monte Carlo Masters and last: Nirtza -[2018-02-13T08:29:04.191] [INFO] cheese - inserting 1000 documents. first: Lisa Murkowski and last: Fushengji shi -[2018-02-13T08:29:04.205] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:29:04.213] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:29:04.218] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:29:04.327] [INFO] cheese - batch complete in: 1.493 secs -[2018-02-13T08:29:04.568] [INFO] cheese - batch complete in: 1.882 secs -[2018-02-13T08:29:04.629] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Techno bass and last: T. indicus -[2018-02-13T08:29:04.763] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:29:04.837] [INFO] cheese - inserting 1000 documents. first: The Birth of a Baby and last: Category:Films directed by Urban Gad -[2018-02-13T08:29:04.867] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:29:04.969] [INFO] cheese - inserting 1000 documents. first: Thomas Hope, Lord Kerse and last: Wikipedia:WikiProject Spam/Local/bhesan-com.webnode.in -[2018-02-13T08:29:04.971] [INFO] cheese - inserting 1000 documents. first: American Flyers and last: Category:Mohawk Valley Prowlers players -[2018-02-13T08:29:05.048] [INFO] cheese - inserting 1000 documents. first: Parlican and last: Zakk Irius -[2018-02-13T08:29:05.047] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:29:05.062] [INFO] cheese - inserting 1000 documents. first: Category:Houses completed in 1907 and last: Buddleja speciosissima -[2018-02-13T08:29:05.070] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:29:05.124] [INFO] cheese - inserting 1000 documents. first: Neostriatum and last: Epsilon2 Arae -[2018-02-13T08:29:05.140] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:29:05.143] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:29:05.251] [INFO] cheese - inserting 1000 documents. first: You Were Right, Joe and last: Category:Administrators of The Royal Ballet -[2018-02-13T08:29:05.257] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:29:05.344] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:29:05.352] [INFO] cheese - inserting 1000 documents. first: 20th Saturn Awards and last: File:Gators cross country logo.jpeg -[2018-02-13T08:29:05.450] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:29:05.609] [INFO] cheese - inserting 1000 documents. first: Theodore Wright and last: First Sale Doctrine -[2018-02-13T08:29:05.653] [INFO] cheese - inserting 1000 documents. first: Category:New Haven Knights players and last: Dirichlet algebra -[2018-02-13T08:29:05.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/stampcollecting.wikia.com and last: Template:Cite California statute/title 1999 724 -[2018-02-13T08:29:05.683] [INFO] cheese - inserting 1000 documents. first: Pelcoya Canton and last: Battle of Kuala Lumpur -[2018-02-13T08:29:05.731] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:29:05.736] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T08:29:05.763] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:29:05.771] [INFO] cheese - inserting 1000 documents. first: Al Meem and last: File:O costa do castelo.jpg -[2018-02-13T08:29:05.833] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:29:05.985] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:29:06.114] [INFO] cheese - inserting 1000 documents. first: Epsilon-1 Arae and last: Romance of the Grail -[2018-02-13T08:29:06.174] [INFO] cheese - inserting 1000 documents. first: Category:People of medieval Bulgaria and last: Human centipede -[2018-02-13T08:29:06.226] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:29:06.266] [INFO] cheese - inserting 1000 documents. first: Self‑oscillation and last: Al-Arien -[2018-02-13T08:29:06.294] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:29:06.352] [INFO] cheese - inserting 1000 documents. first: Hiroshima Port Station and last: Rejected cartoons -[2018-02-13T08:29:06.390] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:29:06.412] [INFO] cheese - inserting 1000 documents. first: Category:Works by region of setting and last: Mr. Slate -[2018-02-13T08:29:06.457] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:29:06.468] [INFO] cheese - inserting 1000 documents. first: George Arthur Harwin Branson and last: File:AUS Alphanumeric Route C707.svg -[2018-02-13T08:29:06.536] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:29:06.572] [INFO] cheese - inserting 1000 documents. first: File:Ghostship.jpg and last: Portal:Tropical cyclones/Selected picture/Hurricane Dean -[2018-02-13T08:29:06.581] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:29:06.659] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:29:06.900] [INFO] cheese - inserting 1000 documents. first: United Mexican States (1824-1835) and last: Townshend, Paul -[2018-02-13T08:29:06.993] [INFO] cheese - inserting 1000 documents. first: 韻圖 and last: Category:People from Zwettl -[2018-02-13T08:29:07.093] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:29:07.128] [INFO] cheese - inserting 1000 documents. first: John Cox (sound engineer) and last: Template:Taxonomy/Lomariopsidaceae -[2018-02-13T08:29:07.153] [INFO] cheese - inserting 1000 documents. first: Pear Tree House and last: Sørumsand -[2018-02-13T08:29:07.189] [INFO] cheese - inserting 1000 documents. first: 802.11u and last: Gun Alley Murder -[2018-02-13T08:29:07.198] [INFO] cheese - inserting 1000 documents. first: Rubber Soul (manga) and last: William Kingsbury -[2018-02-13T08:29:07.211] [INFO] cheese - inserting 1000 documents. first: File:AUS Alphanumeric Route C708.svg and last: File:Hermann Greiner.jpg -[2018-02-13T08:29:07.273] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:29:07.277] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:29:07.330] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:29:07.336] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:29:07.403] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:29:07.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Spider and fly April 2008-6.jpg and last: Wikipedia:Notability (geographic features) -[2018-02-13T08:29:07.502] [INFO] cheese - batch complete in: 1.766 secs -[2018-02-13T08:29:07.530] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:29:07.743] [INFO] cheese - inserting 1000 documents. first: Tucker, Paul and last: Book:Billy Paul -[2018-02-13T08:29:07.795] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:29:07.899] [INFO] cheese - inserting 1000 documents. first: Zeitz (surname) and last: Category:Bus incidents in Guatemala -[2018-02-13T08:29:07.909] [INFO] cheese - inserting 1000 documents. first: Prikubansky District, Karachay-Cherkess Republic and last: Marriage in Judaism -[2018-02-13T08:29:07.951] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:29:07.980] [INFO] cheese - inserting 1000 documents. first: List of volcanoes in Borneo and last: Fahad Khamees Mubarak -[2018-02-13T08:29:07.989] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:29:08.092] [INFO] cheese - inserting 1000 documents. first: Théâtre de la Gaîté (disambiguation) and last: Portal:Animation/Anniversaries/September/September 8 -[2018-02-13T08:29:08.106] [INFO] cheese - inserting 1000 documents. first: Grind (2003 film) and last: Effect of Hurricane Katrina on Florida -[2018-02-13T08:29:08.185] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:29:08.217] [INFO] cheese - inserting 1000 documents. first: Be-Knighted and last: The Diceman (TV Series) -[2018-02-13T08:29:08.231] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:29:08.268] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:29:08.366] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:29:08.506] [INFO] cheese - inserting 1000 documents. first: MARG Limited (India) and last: Cheshmeh Vazan -[2018-02-13T08:29:08.536] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:29:08.621] [INFO] cheese - inserting 1000 documents. first: Suresh Perera (Old Cambrians cricketer) and last: Kilia Kiel -[2018-02-13T08:29:08.700] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:29:08.754] [INFO] cheese - inserting 1000 documents. first: List of Finance Ministers of France and last: Emergency Vets -[2018-02-13T08:29:08.795] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2009 November 9 and last: Category:People from Sousse Governorate -[2018-02-13T08:29:08.818] [INFO] cheese - inserting 1000 documents. first: File:Kecksies.jpg and last: Wikipedia:Articles for deletion/Machosexual (2nd nomination) -[2018-02-13T08:29:08.880] [INFO] cheese - batch complete in: 1.378 secs -[2018-02-13T08:29:08.875] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:29:08.917] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:29:08.931] [INFO] cheese - inserting 1000 documents. first: Template:Country data Libyan Arab Jamahiriya and last: American Chamber of Commerce in Sri Lanka -[2018-02-13T08:29:08.986] [INFO] cheese - inserting 1000 documents. first: Egyptian Current Party and last: S.C. Trestina A.S.D. -[2018-02-13T08:29:09.041] [INFO] cheese - inserting 1000 documents. first: Strong ontology and last: Category:Museums in North Dakota -[2018-02-13T08:29:09.042] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:29:09.044] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:29:09.095] [INFO] cheese - inserting 1000 documents. first: Daylar and last: Cycling at the 2016 Summer Olympics – Women's Keirin -[2018-02-13T08:29:09.151] [INFO] cheese - inserting 1000 documents. first: Milonoff and last: Transparent identifiers -[2018-02-13T08:29:09.150] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:29:09.170] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:29:09.238] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:29:09.326] [INFO] cheese - inserting 1000 documents. first: Miun and last: 2009-10 Detroit Pistons season -[2018-02-13T08:29:09.376] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:29:09.473] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Mexican-American articles and last: Category:2002 in South Dakota -[2018-02-13T08:29:09.510] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:29:09.513] [INFO] cheese - inserting 1000 documents. first: Template:Cleanup-spam/doc and last: MCAS Eagle Mountain Lake -[2018-02-13T08:29:09.580] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:29:09.583] [INFO] cheese - inserting 1000 documents. first: Carnosinase deficiency and last: Official Nationality -[2018-02-13T08:29:09.628] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2016 Summer Olympics – Women's Omnium and last: Lukas Schubert -[2018-02-13T08:29:09.646] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:29:09.704] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:29:09.800] [INFO] cheese - inserting 1000 documents. first: Sutura lambdoidea and last: Jiu Hua Shan -[2018-02-13T08:29:09.825] [INFO] cheese - inserting 1000 documents. first: Zuid-Willemsvaart and last: Category:2016 in Canadian music -[2018-02-13T08:29:09.873] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:29:09.919] [INFO] cheese - inserting 1000 documents. first: Template:Lang-ace and last: Flippin-Lodge -[2018-02-13T08:29:09.936] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:29:10.057] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:29:10.176] [INFO] cheese - inserting 1000 documents. first: Tree homomorphism and last: Col d'Andrion -[2018-02-13T08:29:10.181] [INFO] cheese - inserting 1000 documents. first: Category:2004 in South Dakota and last: Wikipedia:Articles for deletion/Secret Key Generation Via Wireless Channel Characterization -[2018-02-13T08:29:10.194] [INFO] cheese - inserting 1000 documents. first: Energies of God and last: Return To Castle Wolfenstein -[2018-02-13T08:29:10.225] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:29:10.263] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:29:10.281] [INFO] cheese - inserting 1000 documents. first: File:Soy el mismo royce.jpg and last: Brooklyn Library, Multnomah County -[2018-02-13T08:29:10.294] [INFO] cheese - inserting 1000 documents. first: Form genera and last: Kiichi! -[2018-02-13T08:29:10.337] [INFO] cheese - batch complete in: 1.456 secs -[2018-02-13T08:29:10.389] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:29:10.457] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:29:10.618] [INFO] cheese - inserting 1000 documents. first: KaloBios Pharmaceuticals and last: The Sultan of Johore -[2018-02-13T08:29:10.630] [INFO] cheese - inserting 1000 documents. first: Flippin Lodge and last: Tedi Sarafian -[2018-02-13T08:29:10.687] [INFO] cheese - inserting 1000 documents. first: The Little White Cloud That Cried and last: Army ranks of the Japanese Empire during World War II -[2018-02-13T08:29:10.695] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:29:10.708] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:29:10.780] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:29:10.791] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 1983–84 FA Cup 2R and last: Goldenspotted snake eel -[2018-02-13T08:29:10.851] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T08:29:10.926] [INFO] cheese - inserting 1000 documents. first: Mary Alcock and last: Freotfe4pda -[2018-02-13T08:29:10.935] [INFO] cheese - inserting 1000 documents. first: Zion Crossroads, Virginia and last: Prima Esposizione Internazionale d'Arte Decorativa Moderna -[2018-02-13T08:29:11.042] [INFO] cheese - inserting 1000 documents. first: 2011 World Judo Championships – Women's 63 kg and last: Hotot -[2018-02-13T08:29:11.049] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:29:11.073] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:29:11.183] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:29:11.244] [INFO] cheese - inserting 1000 documents. first: John Allum and last: Malpaso Company -[2018-02-13T08:29:11.315] [INFO] cheese - inserting 1000 documents. first: Der Sultan von Johore and last: Category:Members of fraternal orders -[2018-02-13T08:29:11.332] [INFO] cheese - inserting 1000 documents. first: MD 707 and last: Shire of Walloon -[2018-02-13T08:29:11.353] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:29:11.433] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:29:11.535] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:29:11.738] [INFO] cheese - inserting 1000 documents. first: List of minor planets/10701–10800 and last: New Era Academy -[2018-02-13T08:29:11.738] [INFO] cheese - inserting 1000 documents. first: RTCW and last: Phocoena -[2018-02-13T08:29:11.775] [INFO] cheese - inserting 1000 documents. first: Category:Education in Tanzania and last: Jonathan Lee Iverson -[2018-02-13T08:29:11.844] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:29:11.864] [INFO] cheese - inserting 1000 documents. first: Wikipedia:COATRACKING and last: Apollonia Museum (Libya) -[2018-02-13T08:29:11.869] [INFO] cheese - batch complete in: 1.531 secs -[2018-02-13T08:29:11.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Magic Wands and last: Warren, Oregon -[2018-02-13T08:29:11.923] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:29:12.006] [INFO] cheese - inserting 1000 documents. first: Kevin M. Beaver and last: File:Mohun Bagan A.C. Logo.png -[2018-02-13T08:29:12.109] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:29:12.194] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:29:12.199] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:29:12.239] [INFO] cheese - inserting 1000 documents. first: Savez za bolju budućnost BiH and last: Meja Road -[2018-02-13T08:29:12.287] [INFO] cheese - inserting 1000 documents. first: Walloon Division and last: File:Tossy Spivakovsky, Violinist.jpg -[2018-02-13T08:29:12.321] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:29:12.400] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:29:12.824] [INFO] cheese - inserting 1000 documents. first: Ilya Ganaba and last: First French empire -[2018-02-13T08:29:12.842] [INFO] cheese - inserting 1000 documents. first: Hurricane Dora (1999) and last: Kawaihae (band) -[2018-02-13T08:29:12.859] [INFO] cheese - inserting 1000 documents. first: Category:Reservoirs in St. Lawrence County, New York and last: Category:1900 disestablishments in the Netherlands -[2018-02-13T08:29:12.900] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:29:12.913] [INFO] cheese - inserting 1000 documents. first: Ungathered (Mormonism) and last: Category:Cities in Cobb County, Georgia -[2018-02-13T08:29:12.960] [INFO] cheese - inserting 1000 documents. first: Peter Mahon (judge) and last: Matt Peccini -[2018-02-13T08:29:12.981] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:29:12.990] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:29:13.017] [INFO] cheese - inserting 1000 documents. first: Replacement migration and last: Gozdni Joža -[2018-02-13T08:29:13.021] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:29:13.054] [INFO] cheese - inserting 1000 documents. first: Telemusik and last: Paco Clos -[2018-02-13T08:29:13.216] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:29:13.218] [INFO] cheese - batch complete in: 1.294 secs -[2018-02-13T08:29:13.212] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:29:13.537] [INFO] cheese - inserting 1000 documents. first: File:Clutter Nutters.png and last: Hitler's murder paradox -[2018-02-13T08:29:13.590] [INFO] cheese - inserting 1000 documents. first: Julia Maesa and last: Victoria Ka'iulani -[2018-02-13T08:29:13.601] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:29:13.626] [INFO] cheese - inserting 1000 documents. first: File:Brother to brother.jpg and last: Timebomb Records -[2018-02-13T08:29:13.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nyds-discographies.com and last: Free and Easy (1930 film) -[2018-02-13T08:29:13.689] [INFO] cheese - inserting 1000 documents. first: Category:1944 disestablishments in the Netherlands and last: The Buddenbrooks (film) -[2018-02-13T08:29:13.692] [INFO] cheese - inserting 1000 documents. first: King Kong (musician) and last: Mt. Data Shrew Rat -[2018-02-13T08:29:13.730] [INFO] cheese - batch complete in: 1.861 secs -[2018-02-13T08:29:13.746] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:29:13.765] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:29:13.777] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:29:13.794] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:29:13.839] [INFO] cheese - inserting 1000 documents. first: Fransisco Javier Clos Orozco and last: Marilyn Jean Buck -[2018-02-13T08:29:14.007] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:29:14.015] [INFO] cheese - inserting 1000 documents. first: David Follett and last: Wikipedia:Articles for deletion/Farrell Curry -[2018-02-13T08:29:14.137] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:29:14.271] [INFO] cheese - inserting 1000 documents. first: Category:Prime (New Zealand) programmes and last: QR Pedia -[2018-02-13T08:29:14.430] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:29:14.455] [INFO] cheese - inserting 1000 documents. first: Ernst Tognetti and last: Wikipedia:Miscellany for deletion/User:Splendidamente/sandbox -[2018-02-13T08:29:14.583] [INFO] cheese - inserting 1000 documents. first: International Buddhist Progress Society and last: Robert Black (auditor) -[2018-02-13T08:29:14.588] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:29:14.595] [INFO] cheese - inserting 1000 documents. first: Freddy Mullins and last: Category:UCLA Bruins athletic directors -[2018-02-13T08:29:14.669] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:29:14.698] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:29:14.788] [INFO] cheese - inserting 1000 documents. first: Dan Keplinger and last: Blue Agave -[2018-02-13T08:29:14.810] [INFO] cheese - inserting 1000 documents. first: Brown thomas and last: Mary Star of the Sea Catholic Church, San Pedro, California -[2018-02-13T08:29:14.873] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:29:14.928] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:29:15.002] [INFO] cheese - inserting 1000 documents. first: Category:Canadian freeskiers and last: Rory Read -[2018-02-13T08:29:15.096] [INFO] cheese - inserting 1000 documents. first: File:EllaSwingsBrightlywithNelson.jpg and last: Netherlands national basketball team -[2018-02-13T08:29:15.165] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:29:15.195] [INFO] cheese - inserting 1000 documents. first: Early modern demography and last: One Banded Snake eel -[2018-02-13T08:29:15.233] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:29:15.304] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:29:15.338] [INFO] cheese - inserting 1000 documents. first: 2000 in science and last: Walrein -[2018-02-13T08:29:15.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stephen Barchan and last: Template:Equipe Matra Sports -[2018-02-13T08:29:15.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Apollo 17 (Eugene Cernan) and last: Kyeon Mi Ri -[2018-02-13T08:29:15.434] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:29:15.483] [INFO] cheese - batch complete in: 1.753 secs -[2018-02-13T08:29:15.547] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:29:15.617] [INFO] cheese - inserting 1000 documents. first: Treasure HD (Canada) and last: 2004 Taboo Tuesday -[2018-02-13T08:29:15.653] [INFO] cheese - inserting 1000 documents. first: Klash-n-krors and last: Template:Steely Dan -[2018-02-13T08:29:15.682] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:29:15.831] [INFO] cheese - inserting 1000 documents. first: Jean Tragodara and last: Category:Colorado Mammoth seasons -[2018-02-13T08:29:15.844] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:29:15.889] [INFO] cheese - inserting 1000 documents. first: One Banded snake Eel and last: MultiPar -[2018-02-13T08:29:15.986] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:29:16.005] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:29:16.042] [INFO] cheese - inserting 1000 documents. first: Highway 401-403-410 Bottleneck and last: Marisol Maldonado -[2018-02-13T08:29:16.085] [INFO] cheese - inserting 1000 documents. first: Jack Diamond (Casualty) and last: Category:Spinoza scholars -[2018-02-13T08:29:16.132] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:29:16.179] [INFO] cheese - inserting 1000 documents. first: Luke Tonkin and last: Portal:Solar System/Did you know/15 -[2018-02-13T08:29:16.354] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:29:16.450] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:29:16.514] [INFO] cheese - inserting 1000 documents. first: Margaret Blackwell and last: Buffalo and Lake Erie Traction Company -[2018-02-13T08:29:16.596] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:29:16.641] [INFO] cheese - inserting 1000 documents. first: Ian Richards (Judge) and last: List of Scheduled prehistoric Monuments in Carmarthenshire -[2018-02-13T08:29:16.684] [INFO] cheese - inserting 1000 documents. first: Category:Edmonton Rush seasons and last: Kurodasho Station -[2018-02-13T08:29:16.712] [INFO] cheese - inserting 1000 documents. first: Queen of Night and last: Kattappana -[2018-02-13T08:29:16.724] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:29:16.803] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:29:16.820] [INFO] cheese - inserting 1000 documents. first: Rosedale, Defiance County, Ohio and last: Ery Bos -[2018-02-13T08:29:16.860] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:29:16.919] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:29:16.986] [INFO] cheese - inserting 1000 documents. first: Mt Selinda High School and last: MacKenzie College -[2018-02-13T08:29:16.989] [INFO] cheese - inserting 1000 documents. first: Kecleon and last: Moleskin -[2018-02-13T08:29:17.004] [INFO] cheese - inserting 1000 documents. first: C. Delores Tucker and last: Jan Wlodarkiewicz -[2018-02-13T08:29:17.040] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:29:17.079] [INFO] cheese - batch complete in: 1.596 secs -[2018-02-13T08:29:17.109] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:29:17.150] [INFO] cheese - inserting 1000 documents. first: Category:NewYork–Presbyterian Hospital and last: Wikipedia:Styletips/19 -[2018-02-13T08:29:17.300] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:29:17.342] [INFO] cheese - inserting 1000 documents. first: File:Shorter University Athletics Logo.jpg and last: Waverley Bus Depot -[2018-02-13T08:29:17.412] [INFO] cheese - inserting 1000 documents. first: Sino-Tibetan relations during the Ming Dynasty and last: Smrkovsky -[2018-02-13T08:29:17.435] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:29:17.450] [INFO] cheese - inserting 1000 documents. first: Kwikwasut'inux First Nation and last: Lee–Fendall House -[2018-02-13T08:29:17.530] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:29:17.593] [INFO] cheese - inserting 1000 documents. first: Club Puebla Premier and last: Fountain Park, Ohio -[2018-02-13T08:29:17.601] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:29:17.664] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:17.685] [INFO] cheese - inserting 1000 documents. first: Stranger in Possum Meadows (The Twilight Zone) and last: Hau Hau -[2018-02-13T08:29:17.753] [INFO] cheese - inserting 1000 documents. first: RSJ and last: Queen Elizabeth Hospital (Hong Kong) -[2018-02-13T08:29:17.797] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:29:17.832] [INFO] cheese - inserting 1000 documents. first: Verkhnetoemskiy District and last: Wikipedia:Articles for deletion/Kulshreshtha -[2018-02-13T08:29:17.865] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:29:17.912] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:29:17.994] [INFO] cheese - inserting 1000 documents. first: Template:Jesuits in the Netherlands and last: Jordan Omley -[2018-02-13T08:29:18.083] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:29:18.095] [INFO] cheese - inserting 1000 documents. first: Ciara Sotto and last: Wikipedia:Categories for discussion/Log/2006 July 14 -[2018-02-13T08:29:18.105] [INFO] cheese - inserting 1000 documents. first: Łużyce, Otwock County and last: Goddess of Yesterday -[2018-02-13T08:29:18.148] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:29:18.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cunnilingus tongue and last: File:Kattu Roja Film .jpg -[2018-02-13T08:29:18.216] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:29:18.236] [INFO] cheese - inserting 1000 documents. first: John Stagliano and last: Bayside -[2018-02-13T08:29:18.310] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:29:18.414] [INFO] cheese - inserting 1000 documents. first: The Eurasia Foundation and last: Template:Extra chronology/doc -[2018-02-13T08:29:18.418] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:29:18.489] [INFO] cheese - inserting 1000 documents. first: Yaśovarman I and last: Template:WAFL EF -[2018-02-13T08:29:18.502] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:29:18.586] [INFO] cheese - inserting 1000 documents. first: Mike Mani and last: Template:YLeague MH -[2018-02-13T08:29:18.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2006 July 15 and last: Wikipedia:Categories for discussion/Log/2006 February 25 -[2018-02-13T08:29:18.648] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:29:18.712] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:29:18.780] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:29:18.813] [INFO] cheese - inserting 1000 documents. first: Houston merritt and last: Roman Catholic Diocese of Dubrovnik -[2018-02-13T08:29:18.931] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:29:19.024] [INFO] cheese - inserting 1000 documents. first: LA 30 and last: White Cloud (disambiguation) -[2018-02-13T08:29:19.063] [INFO] cheese - inserting 1000 documents. first: Category:Business in Egypt and last: Etmopterus benchleyi -[2018-02-13T08:29:19.123] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:29:19.137] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:29:19.233] [INFO] cheese - inserting 1000 documents. first: Template:YLeague WSW and last: File:Mikael Gabriel - Mun maailma.jpg -[2018-02-13T08:29:19.234] [INFO] cheese - inserting 1000 documents. first: Vanguardia Popular Socialista and last: Harold Davies (disambiguation) -[2018-02-13T08:29:19.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2006 February 26 and last: Wikipedia:Peer review/Rensselaer Polytechnic Institute/archive1 -[2018-02-13T08:29:19.255] [INFO] cheese - inserting 1000 documents. first: Template:WAFL EP and last: Category:Coalfields of India -[2018-02-13T08:29:19.302] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:29:19.304] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:29:19.305] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:29:19.360] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:29:19.615] [INFO] cheese - inserting 1000 documents. first: File:BeatlesTwistanShoutSingle.jpg and last: Diplomonads -[2018-02-13T08:29:19.670] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:29:19.705] [INFO] cheese - inserting 1000 documents. first: Healthcare in Kuwait and last: Wikipedia:Administrators' noticeboard/3RRArchive303 -[2018-02-13T08:29:19.748] [INFO] cheese - inserting 1000 documents. first: Eskimo Limon and last: Qaleh Juq-e Pain -[2018-02-13T08:29:19.775] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:29:19.814] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:29:19.920] [INFO] cheese - inserting 1000 documents. first: Thanskgiving Day and last: Thomas Nuttall -[2018-02-13T08:29:19.933] [INFO] cheese - inserting 1000 documents. first: Bruguiera exaristata and last: Portal:Ecology/Selected biographies/23 -[2018-02-13T08:29:20.024] [INFO] cheese - inserting 1000 documents. first: Bemidji State Beavers men's ice hockey and last: Brewcaria brocchinioides -[2018-02-13T08:29:20.042] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:29:20.054] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/List of films without article/List of missing Chinese language Films and last: Hawk-dove game -[2018-02-13T08:29:20.059] [INFO] cheese - inserting 1000 documents. first: File:Swingstatesx.png and last: File:Dow jones.png -[2018-02-13T08:29:20.077] [INFO] cheese - batch complete in: 1.659 secs -[2018-02-13T08:29:20.122] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:29:20.134] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:29:20.179] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:29:20.302] [INFO] cheese - inserting 1000 documents. first: Benchmark (bourbon) and last: Turkey at the 2016 Summer Paralympics -[2018-02-13T08:29:20.342] [INFO] cheese - inserting 1000 documents. first: Magda Tagliafero and last: Death Banded Snake Eel -[2018-02-13T08:29:20.402] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:29:20.432] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:29:20.555] [INFO] cheese - inserting 1000 documents. first: Baileya (plant) and last: 79 Cancri -[2018-02-13T08:29:20.590] [INFO] cheese - inserting 1000 documents. first: Portal:Ecology/Selected biographies/24 and last: John Sinklo -[2018-02-13T08:29:20.625] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:29:20.646] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:29:20.688] [INFO] cheese - inserting 1000 documents. first: Tenniscoats and last: DVE -[2018-02-13T08:29:20.741] [INFO] cheese - inserting 1000 documents. first: École polytechnique fédérale de Lausanne and last: Category:Zonguldak Province -[2018-02-13T08:29:20.806] [INFO] cheese - inserting 1000 documents. first: Death Banded Snake eel and last: Portal:Aviation/Historical anniversaries/February in aviation/February 11 -[2018-02-13T08:29:20.806] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:29:20.862] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:29:20.904] [INFO] cheese - inserting 1000 documents. first: Brewcaria duidensis and last: Black Army Cutworm -[2018-02-13T08:29:20.954] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:29:21.087] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:29:21.122] [INFO] cheese - inserting 1000 documents. first: Michael Punke and last: Arnold Mærsk Møller -[2018-02-13T08:29:21.268] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:29:21.343] [INFO] cheese - inserting 1000 documents. first: Category:Baseball in Catalonia and last: File:Barnes and noble.jpg -[2018-02-13T08:29:21.406] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:29:21.497] [INFO] cheese - inserting 1000 documents. first: Category:Aksaray Province and last: Becky Bell -[2018-02-13T08:29:21.507] [INFO] cheese - inserting 1000 documents. first: 80 Cancri and last: Slogen -[2018-02-13T08:29:21.576] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Sioni Bolnisi and last: Graves AOC -[2018-02-13T08:29:21.588] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:29:21.607] [INFO] cheese - inserting 1000 documents. first: Arthur Helps and last: MediaWiki:Linktrail -[2018-02-13T08:29:21.657] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:29:21.683] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:29:21.717] [INFO] cheese - inserting 1000 documents. first: Portal:Aviation/Historical anniversaries/February in aviation/February 10 and last: Wikipedia:WikiProject Spam/Local/ishraqi.com -[2018-02-13T08:29:21.760] [INFO] cheese - inserting 1000 documents. first: Category:1793 in Oceania and last: Category:Battles and operations of the Vietnam War in 1968 -[2018-02-13T08:29:21.844] [INFO] cheese - inserting 1000 documents. first: Arnold Mærsk and last: Ed Schwager -[2018-02-13T08:29:21.872] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:29:21.886] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:29:21.899] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:29:21.915] [INFO] cheese - inserting 1000 documents. first: Category:College baseball venues by team in the United States and last: P. V. Rao -[2018-02-13T08:29:21.952] [INFO] cheese - batch complete in: 1.875 secs -[2018-02-13T08:29:22.071] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:29:22.455] [INFO] cheese - inserting 1000 documents. first: John Marlay and last: Category:Castles in Nottinghamshire -[2018-02-13T08:29:22.476] [INFO] cheese - inserting 1000 documents. first: Institute of History and Archaeology of the Baltic Region and last: 29 Squadron -[2018-02-13T08:29:22.485] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Belgian sculptors and last: Pyrmont, Albany -[2018-02-13T08:29:22.486] [INFO] cheese - inserting 1000 documents. first: Michael J. Lindell and last: Edgar Denis -[2018-02-13T08:29:22.519] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:29:22.550] [INFO] cheese - inserting 1000 documents. first: Peter Bruff and last: Bielaja Vieža -[2018-02-13T08:29:22.582] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:29:22.584] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:29:22.569] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:29:22.733] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:29:22.808] [INFO] cheese - inserting 1000 documents. first: Priozyorny District and last: The Wedding Camels -[2018-02-13T08:29:22.887] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:29:23.095] [INFO] cheese - inserting 1000 documents. first: 29th Squadron and last: Wikipedia:Articles for deletion/William Lauder (contractor) -[2018-02-13T08:29:23.113] [INFO] cheese - inserting 1000 documents. first: Category:Vallone family and last: Component reuse -[2018-02-13T08:29:23.156] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Wikititlesuffix and last: Brittas Empire -[2018-02-13T08:29:23.164] [INFO] cheese - inserting 1000 documents. first: Droplets (disambiguation) and last: 251st Battalion (Good Fellows), CEF -[2018-02-13T08:29:23.167] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:29:23.198] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:29:23.210] [INFO] cheese - inserting 1000 documents. first: Natukhai Adyghe dialect and last: Template:Canadian federal election, 2000/Saint-Maurice (electoral district) -[2018-02-13T08:29:23.253] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:29:23.289] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:29:23.345] [INFO] cheese - batch complete in: 1.392 secs -[2018-02-13T08:29:23.436] [INFO] cheese - inserting 1000 documents. first: Category:Vyškov District and last: Grianan of Aileach -[2018-02-13T08:29:23.458] [INFO] cheese - inserting 1000 documents. first: Krizhanich and last: APAV40 -[2018-02-13T08:29:23.621] [INFO] cheese - inserting 1000 documents. first: Template:State est decade cat/doc and last: Song of the Water -[2018-02-13T08:29:23.652] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:29:23.675] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:29:23.849] [INFO] cheese - batch complete in: 1.778 secs -[2018-02-13T08:29:23.964] [INFO] cheese - inserting 1000 documents. first: Utulei Youth and last: Maigret (2016 TV series) -[2018-02-13T08:29:24.027] [INFO] cheese - inserting 1000 documents. first: Elevated privilege and last: Category:Swiss media scholars -[2018-02-13T08:29:24.046] [INFO] cheese - inserting 1000 documents. first: Impereal and last: Paw Paw Township, Van Buren County, Michigan -[2018-02-13T08:29:24.067] [INFO] cheese - inserting 1000 documents. first: Template:Country data South Sudan and last: Beige People -[2018-02-13T08:29:24.068] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:29:24.091] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:29:24.195] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:29:24.222] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:29:24.254] [INFO] cheese - inserting 1000 documents. first: Content writing and last: List of guitarists considered the greatest -[2018-02-13T08:29:24.302] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:29:24.453] [INFO] cheese - inserting 1000 documents. first: Ressurection from the Dead and last: Shillappadikaram -[2018-02-13T08:29:24.624] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:29:24.651] [INFO] cheese - inserting 1000 documents. first: Template:User Roxbury Community College and last: Mountain of Despair -[2018-02-13T08:29:24.717] [INFO] cheese - inserting 1000 documents. first: Ministry of Finance (Tanzania) and last: Wikipedia:WikiProject Spam/LinkReports/ostratorphandelsplats.se -[2018-02-13T08:29:24.727] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:29:24.789] [INFO] cheese - inserting 1000 documents. first: Vladislaus II of Moravia and last: Temple Israel Center -[2018-02-13T08:29:24.794] [INFO] cheese - inserting 1000 documents. first: Pontypool United RFC and last: Political Quarterly -[2018-02-13T08:29:24.830] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:29:25.086] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:29:25.138] [INFO] cheese - inserting 1000 documents. first: Qasr al-Hayr al-Gharbî and last: Lindmania tillandsioides -[2018-02-13T08:29:25.029] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:29:25.212] [INFO] cheese - inserting 1000 documents. first: H. Wessely and last: Stéphane Zubar -[2018-02-13T08:29:25.218] [INFO] cheese - inserting 1000 documents. first: Saint Vincent de Paul and last: John Agyekum Kufuor -[2018-02-13T08:29:25.261] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:29:25.343] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:29:25.403] [INFO] cheese - batch complete in: 2.058 secs -[2018-02-13T08:29:25.566] [INFO] cheese - inserting 1000 documents. first: Factory acts and last: Square root of a matrix -[2018-02-13T08:29:25.613] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Trionychinae and last: Duisburg-Meiderich Süd station -[2018-02-13T08:29:25.645] [INFO] cheese - inserting 1000 documents. first: Dolgoma striata and last: Aqajan Kandi -[2018-02-13T08:29:25.664] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:29:25.693] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:29:25.710] [INFO] cheese - inserting 1000 documents. first: Category:Ridges of Arkansas and last: Miquelets de Catalunya -[2018-02-13T08:29:25.753] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:29:25.826] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:29:25.901] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 346 and last: Angela Baraquio Gray -[2018-02-13T08:29:25.903] [INFO] cheese - inserting 1000 documents. first: Brdo, Nova Gorica and last: GGSS -[2018-02-13T08:29:25.975] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/Selected article archive and last: Ajina-higashi Station -[2018-02-13T08:29:26.000] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:29:26.006] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:26.069] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:29:26.133] [INFO] cheese - inserting 1000 documents. first: Duisburg-Meiderich Ost station and last: Template:Taxonomy/Arrhinoceratops -[2018-02-13T08:29:26.189] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:29:26.282] [INFO] cheese - inserting 1000 documents. first: Baba Gar Gar, East Azerbaijan and last: Southfield, Staten Island -[2018-02-13T08:29:26.334] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Spanish physicians and last: Category:Redirect-Class military historiography articles -[2018-02-13T08:29:26.423] [INFO] cheese - inserting 1000 documents. first: USS Atlantis (SP-40) and last: Wikipedia:Articles for deletion/Kyle Mina -[2018-02-13T08:29:26.432] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:29:26.518] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:29:26.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Ambulance/archive2 and last: Khivskiy District -[2018-02-13T08:29:26.630] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:29:26.695] [INFO] cheese - inserting 1000 documents. first: The Beast (comic books) and last: James I of Cyprus -[2018-02-13T08:29:26.700] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:29:26.706] [INFO] cheese - inserting 1000 documents. first: Johns Hopkins Applied Physics Laboratory and last: Icknield High School Arts College -[2018-02-13T08:29:26.779] [INFO] cheese - inserting 1000 documents. first: The Silent World: A Story of Undersea Discovery and Adventure and last: File:Vmail-Envelope.jpg -[2018-02-13T08:29:26.779] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:29:26.842] [INFO] cheese - batch complete in: 1.439 secs -[2018-02-13T08:29:26.857] [INFO] cheese - inserting 1000 documents. first: Tell Khardane and last: Category:Behabad County -[2018-02-13T08:29:26.880] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:29:27.022] [INFO] cheese - inserting 1000 documents. first: Calodesma itaitubae and last: Minister of Health, Labour and Welfare (Japan) -[2018-02-13T08:29:27.071] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:29:27.093] [INFO] cheese - inserting 1000 documents. first: Category:SIA-Class military historiography articles and last: Kerr, Robert -[2018-02-13T08:29:27.118] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:29:27.179] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:29:27.352] [INFO] cheese - inserting 1000 documents. first: USS Pawtucket (YTM-7) and last: Bolo (self-aware tank) -[2018-02-13T08:29:27.405] [INFO] cheese - inserting 1000 documents. first: Khivski District and last: Curly-hairs -[2018-02-13T08:29:27.430] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:29:27.490] [INFO] cheese - inserting 1000 documents. first: Andy Johnson (disambiguation) and last: Plymouth Charter Township, Wayne County, Michigan -[2018-02-13T08:29:27.586] [INFO] cheese - inserting 1000 documents. first: Canadian Council of Churches v Canada (Minister of Employment and Immigration) and last: Moedling -[2018-02-13T08:29:27.635] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:29:27.680] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:29:27.805] [INFO] cheese - inserting 1000 documents. first: 9x29mm and last: Pokemon Black + White -[2018-02-13T08:29:27.815] [INFO] cheese - inserting 1000 documents. first: Book:Wikipedia Signpost/2013-09-18 and last: Wikipedia:Articles for deletion/Gatestone Institute -[2018-02-13T08:29:27.814] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:29:27.911] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:29:27.936] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:29:28.085] [INFO] cheese - inserting 1000 documents. first: Key, Robert and last: Nuts of the uk -[2018-02-13T08:29:28.269] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:29:28.377] [INFO] cheese - inserting 1000 documents. first: Soeharto and last: Resona -[2018-02-13T08:29:28.411] [INFO] cheese - inserting 1000 documents. first: Route 40 (MTA Maryland) and last: Uno Per Tutte -[2018-02-13T08:29:28.473] [INFO] cheese - batch complete in: 1.631 secs -[2018-02-13T08:29:28.532] [INFO] cheese - inserting 1000 documents. first: Curlyhairs and last: Nolina interrata -[2018-02-13T08:29:28.545] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:29:28.625] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:29:28.684] [INFO] cheese - inserting 1000 documents. first: Moadamiyah and last: File:SuperClassGGundam.jpg -[2018-02-13T08:29:28.738] [INFO] cheese - inserting 1000 documents. first: Martin Dies Jr. State Park and last: Dendle's Wood SSSI -[2018-02-13T08:29:28.787] [INFO] cheese - inserting 1000 documents. first: Ishikawajima and last: Björn Nordqvist -[2018-02-13T08:29:28.794] [INFO] cheese - inserting 1000 documents. first: Neil Swarbrick and last: Rutherford Aris -[2018-02-13T08:29:28.797] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:29:28.831] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:29:28.910] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:29:28.940] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:29:29.016] [INFO] cheese - inserting 1000 documents. first: Regions of britain and last: 1926 Harvard Crimson football team -[2018-02-13T08:29:29.117] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:29:29.299] [INFO] cheese - inserting 1000 documents. first: Category:1978 in France and last: List of airports in Mauritius -[2018-02-13T08:29:29.390] [INFO] cheese - inserting 1000 documents. first: Claymore (G.I. Joe) and last: St. Louis hip hop -[2018-02-13T08:29:29.404] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/100 Sexiest Women in Comics and last: Xymmer -[2018-02-13T08:29:29.471] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:29:29.479] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:29:29.542] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:29:29.595] [INFO] cheese - inserting 1000 documents. first: Elachista levipes and last: Nuteni -[2018-02-13T08:29:29.675] [INFO] cheese - inserting 1000 documents. first: Quarterly Review of Wines and last: Wikipedia:Featured list candidates/List of Pittsburgh Steelers head coaches/archive1 -[2018-02-13T08:29:29.675] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:29:29.752] [INFO] cheese - inserting 1000 documents. first: Clinical Lycanthropy and last: Wikipedia:Articles for deletion/...Baby One More Time Tour -[2018-02-13T08:29:29.753] [INFO] cheese - inserting 1000 documents. first: Susan Fischer and last: Manithan Maravillai -[2018-02-13T08:29:29.769] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:29:29.840] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:29:29.845] [INFO] cheese - inserting 1000 documents. first: Onychomyrmex and last: Category:Professional wrestlers from Pennsylvania -[2018-02-13T08:29:29.863] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:29.907] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T08:29:29.962] [INFO] cheese - inserting 1000 documents. first: Resona impact and last: Allied Control Authority (ACA) -[2018-02-13T08:29:29.997] [INFO] cheese - inserting 1000 documents. first: Zumwalt-class destroyer (DDG-1000) and last: Atlantic Sun Men's Basketball Tournament venues -[2018-02-13T08:29:30.062] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:29:30.092] [INFO] cheese - batch complete in: 1.619 secs -[2018-02-13T08:29:30.103] [INFO] cheese - inserting 1000 documents. first: Laguna Merin and last: Polare -[2018-02-13T08:29:30.199] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:29:30.313] [INFO] cheese - inserting 1000 documents. first: V Raetorum and last: Pangaia -[2018-02-13T08:29:30.397] [INFO] cheese - inserting 1000 documents. first: Caquena Canton and last: Category:Disambig-Class Montana articles -[2018-02-13T08:29:30.399] [INFO] cheese - inserting 1000 documents. first: Cooper, Ohio and last: Men going their own way -[2018-02-13T08:29:30.401] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:29:30.480] [INFO] cheese - inserting 1000 documents. first: Iri-ye Sofla and last: Öffa bills -[2018-02-13T08:29:30.511] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:29:30.581] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:29:30.595] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:29:30.607] [INFO] cheese - inserting 1000 documents. first: Jacob H. Smith and last: Île aux Coudres Airport -[2018-02-13T08:29:30.711] [INFO] cheese - inserting 1000 documents. first: Template:Country data LIB and last: Koshehabl'sky Raion -[2018-02-13T08:29:30.720] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:29:30.762] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:29:31.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/projektmanagementhandbuch.de and last: Category:2010 in Uruguay -[2018-02-13T08:29:31.185] [INFO] cheese - inserting 1000 documents. first: William Mitchinson Hicks and last: Copani District -[2018-02-13T08:29:31.197] [INFO] cheese - inserting 1000 documents. first: Willard Erastus Christianson and last: Jesus in art -[2018-02-13T08:29:31.208] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:29:31.285] [INFO] cheese - inserting 1000 documents. first: Koshehabl'skiy Raion and last: Template:Virginia-newspaper-stub -[2018-02-13T08:29:31.349] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:29:31.368] [INFO] cheese - inserting 1000 documents. first: Barrasso and last: NWA Television Championship (Tennessee) -[2018-02-13T08:29:31.421] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:29:31.496] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:29:31.509] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:29:31.667] [INFO] cheese - inserting 1000 documents. first: Akkrum and last: Wikipedia:Village pump/December 2003 archive 2 -[2018-02-13T08:29:31.761] [INFO] cheese - inserting 1000 documents. first: Category:Tasman rugby league team coaches and last: 1950–56 Pacific typhoon seasons -[2018-02-13T08:29:31.794] [INFO] cheese - inserting 1000 documents. first: Isle-aux-Grues Airport and last: Wikipedia:Articles for deletion/J.R. Hunter -[2018-02-13T08:29:31.896] [INFO] cheese - batch complete in: 1.804 secs -[2018-02-13T08:29:31.896] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:29:31.936] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:29:31.981] [INFO] cheese - inserting 1000 documents. first: Category:Galicia and last: Iona – Skeleton Coast Transfrontier Conservation Area -[2018-02-13T08:29:32.081] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:29:32.140] [INFO] cheese - inserting 1000 documents. first: Tyvon Branch and last: I Delmatarum -[2018-02-13T08:29:32.206] [INFO] cheese - inserting 1000 documents. first: Nikita Melnikov and last: Rostam Kandi -[2018-02-13T08:29:32.209] [INFO] cheese - inserting 1000 documents. first: Head tax (Canada) and last: Core (group) -[2018-02-13T08:29:32.236] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:29:32.303] [INFO] cheese - inserting 1000 documents. first: A1 Ring and last: RPI Observatory -[2018-02-13T08:29:32.315] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:29:32.332] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:29:32.417] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:29:32.586] [INFO] cheese - inserting 1000 documents. first: Sandara Park and last: De Troyes Chrétien -[2018-02-13T08:29:32.604] [INFO] cheese - inserting 1000 documents. first: Portal:Balochistan, Pakistan/WikiProjects and last: Colentina Bucureşti -[2018-02-13T08:29:32.632] [INFO] cheese - inserting 1000 documents. first: McArthur Glen Designer Outlet and last: State Route 537 -[2018-02-13T08:29:32.652] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:29:32.654] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:29:32.686] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:29:32.735] [INFO] cheese - inserting 1000 documents. first: Brethren World Assembly and last: Category:Wikipedia sockpuppets of Deathlibrarian -[2018-02-13T08:29:32.863] [INFO] cheese - inserting 1000 documents. first: Results of the Queensland state election, 1929 (L-Z) and last: Margaret Harkness -[2018-02-13T08:29:32.884] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:29:32.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2013 September 26 and last: Category:Squash tournaments in Thailand -[2018-02-13T08:29:33.000] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:29:33.002] [INFO] cheese - inserting 1000 documents. first: Cläven and last: Wood County Courthouse (West Virginia) -[2018-02-13T08:29:33.062] [INFO] cheese - inserting 1000 documents. first: State Highway 537 and last: SR878 -[2018-02-13T08:29:33.085] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:29:33.078] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:29:33.147] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:29:33.226] [INFO] cheese - inserting 1000 documents. first: Empress Entertainment Centre and last: Yanticaw -[2018-02-13T08:29:33.245] [INFO] cheese - inserting 1000 documents. first: Abolhassan Banisadr and last: Once & Again -[2018-02-13T08:29:33.329] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:29:33.356] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:29:33.368] [INFO] cheese - inserting 1000 documents. first: Sternothyroideus and last: Sir Paul Haddocks -[2018-02-13T08:29:33.465] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:29:33.523] [INFO] cheese - inserting 1000 documents. first: Crowdfind and last: Lockendes Gift -[2018-02-13T08:29:33.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sally Freud and last: Gravity (TV series) -[2018-02-13T08:29:33.628] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:29:33.678] [INFO] cheese - inserting 1000 documents. first: Cocks Biddulph and last: Qeshlaq-e Sowmeeh -[2018-02-13T08:29:33.719] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:29:33.752] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:29:33.764] [INFO] cheese - inserting 1000 documents. first: The Gas and the Clutch and last: List of Argentine films of the 2000s -[2018-02-13T08:29:33.809] [INFO] cheese - inserting 1000 documents. first: SH878 and last: Aircraft Braking Systems -[2018-02-13T08:29:33.879] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:29:33.919] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:29:33.945] [INFO] cheese - inserting 1000 documents. first: File:Miss u book cover.jpg and last: Category:Shahrud County -[2018-02-13T08:29:33.996] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:29:34.259] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Tala'ea El Geish and last: Ministry of Education, Ceylon -[2018-02-13T08:29:34.322] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:29:34.357] [INFO] cheese - inserting 1000 documents. first: Qush Qayahsi, Kaleybar and last: Sarijalu, East Azerbaijan -[2018-02-13T08:29:34.367] [INFO] cheese - inserting 1000 documents. first: Chris Luder and last: University of Maryland Law School -[2018-02-13T08:29:34.451] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:29:34.545] [INFO] cheese - inserting 1000 documents. first: Alcohol dependence syndrome and last: Wikipedia:WikiProject Spam/LinkReports/cuscotouristinformation.com -[2018-02-13T08:29:34.546] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:29:34.610] [INFO] cheese - inserting 1000 documents. first: Alternate reality (disambiguation) and last: St. Eustorgio -[2018-02-13T08:29:34.623] [INFO] cheese - inserting 1000 documents. first: Thierry of Freburg and last: Lee Jong-wook (baseball) -[2018-02-13T08:29:34.653] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:29:34.688] [INFO] cheese - inserting 1000 documents. first: Category:School districts in Cochran County, Texas and last: Template:Canadian federal election, 1984/Bourassa -[2018-02-13T08:29:34.703] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:29:34.749] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:29:34.836] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:29:34.933] [INFO] cheese - inserting 1000 documents. first: Honours of the Principality of Wales and last: Charolais cattle -[2018-02-13T08:29:34.943] [INFO] cheese - inserting 1000 documents. first: Yuraqmayu (Lima) and last: Herbert, Alan -[2018-02-13T08:29:34.971] [INFO] cheese - inserting 1000 documents. first: Sari Jallu and last: Pacific Snake eel -[2018-02-13T08:29:35.013] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:29:35.058] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:29:35.065] [INFO] cheese - batch complete in: 1.709 secs -[2018-02-13T08:29:35.246] [INFO] cheese - inserting 1000 documents. first: Diego Hurtado de Mendoza, 2nd Marquis of Cañete and last: Pseudoconversational transaction -[2018-02-13T08:29:35.251] [INFO] cheese - inserting 1000 documents. first: Crosby stills nash young and last: Jackson 5 Record Sales -[2018-02-13T08:29:35.309] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:29:35.337] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:29:35.350] [INFO] cheese - inserting 1000 documents. first: List of parks in Delhi and last: Roger de Mowbray, 1st Baron Mowbray -[2018-02-13T08:29:35.452] [INFO] cheese - inserting 1000 documents. first: Non-covalent interaction and last: Category:American college sports infobox templates -[2018-02-13T08:29:35.453] [INFO] cheese - inserting 1000 documents. first: Hoffman, Alan and last: Anatomical terms of neuroanatomy -[2018-02-13T08:29:35.462] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:29:35.482] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:29:35.539] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:29:35.645] [INFO] cheese - inserting 1000 documents. first: Centennial F.C. and last: Template:HD/c -[2018-02-13T08:29:35.701] [INFO] cheese - inserting 1000 documents. first: Pacific snake Eel and last: Embalse de Puente Nuevo -[2018-02-13T08:29:35.749] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:29:35.867] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:29:36.019] [INFO] cheese - inserting 1000 documents. first: Erectile impotence and last: Masaaki Kozu -[2018-02-13T08:29:36.060] [INFO] cheese - inserting 1000 documents. first: Category:NCAA Division I wrestling by conference navigational boxes and last: きんさんぎんさん -[2018-02-13T08:29:36.072] [INFO] cheese - inserting 1000 documents. first: J. C. MacKenzie and last: Adam's needle -[2018-02-13T08:29:36.153] [INFO] cheese - inserting 1000 documents. first: Category:1975 murals and last: Fowler, George -[2018-02-13T08:29:36.170] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:29:36.197] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:29:36.214] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:29:36.233] [INFO] cheese - inserting 1000 documents. first: Sci-fi (tv channel) and last: National Unity (Peru) -[2018-02-13T08:29:36.314] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:29:36.368] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:29:36.505] [INFO] cheese - inserting 1000 documents. first: Isador Cortez and last: Hacıhalil -[2018-02-13T08:29:36.547] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:29:36.565] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Cities articles needing infoboxes and last: UC-35B -[2018-02-13T08:29:36.589] [INFO] cheese - inserting 1000 documents. first: Conservations and last: Admirals Men -[2018-02-13T08:29:36.666] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T08:29:36.676] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:29:36.746] [INFO] cheese - inserting 1000 documents. first: US Initial Post-Surrender Policy for Japan and last: Old Man on His Back Prairie and Heritage Conservation Area -[2018-02-13T08:29:36.790] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:29:36.847] [INFO] cheese - inserting 1000 documents. first: Phil Hinkle and last: Category:Lausitzer Füchse players -[2018-02-13T08:29:36.900] [INFO] cheese - inserting 1000 documents. first: À Tout le Monde and last: Template:RNLI lifeboat classes -[2018-02-13T08:29:36.905] [INFO] cheese - inserting 1000 documents. first: Fraser, George and last: Mohra Gujarn -[2018-02-13T08:29:36.979] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:29:37.033] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:29:37.041] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:29:37.064] [INFO] cheese - inserting 1000 documents. first: Franco-Spanish War (1595–98) and last: Black spotted snake Eel -[2018-02-13T08:29:37.120] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:29:37.404] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Treaty between the Netherlands and Ahanta 1656/archive1 and last: St. Theobald -[2018-02-13T08:29:37.453] [INFO] cheese - inserting 1000 documents. first: Next Montenegrin parliamentary election and last: 1111 (year) -[2018-02-13T08:29:37.478] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:29:37.501] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:29:37.504] [INFO] cheese - inserting 1000 documents. first: Fizis and last: Junikowo -[2018-02-13T08:29:37.586] [INFO] cheese - inserting 1000 documents. first: Pseudodrephalys hypargos and last: Mix 1011 -[2018-02-13T08:29:37.593] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:29:37.704] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:29:37.729] [INFO] cheese - inserting 1000 documents. first: 1110 (year) and last: 142 (year) -[2018-02-13T08:29:37.749] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T08:29:37.753] [INFO] cheese - inserting 1000 documents. first: Black Spotted snake eel and last: File:Genesis Prize logo.png -[2018-02-13T08:29:37.785] [INFO] cheese - inserting 1000 documents. first: Unidad Nacional and last: Cherokee Indian Normal School of Robeson County -[2018-02-13T08:29:37.859] [INFO] cheese - inserting 1000 documents. first: File:Brechin City FC logo.svg and last: Hawker Siddeley Trident 3B -[2018-02-13T08:29:37.944] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:29:37.955] [INFO] cheese - batch complete in: 1.586 secs -[2018-02-13T08:29:37.977] [INFO] cheese - inserting 1000 documents. first: Cda and last: R.G. Willis -[2018-02-13T08:29:37.984] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:29:38.099] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:29:38.212] [INFO] cheese - inserting 1000 documents. first: 141 (year) and last: Year 1444 -[2018-02-13T08:29:38.216] [INFO] cheese - inserting 1000 documents. first: Town drunks and last: Wikipedia:Good article reassessment/Thomas Cranmer/1 -[2018-02-13T08:29:38.243] [INFO] cheese - inserting 1000 documents. first: Calophasidia radiata and last: Beachwood (disambiguation) -[2018-02-13T08:29:38.254] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T08:29:38.304] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:29:38.315] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:29:38.465] [INFO] cheese - inserting 1000 documents. first: Thirumalai Nayakkar Mahal and last: Bushwick Leaders High School for Academic Excellence -[2018-02-13T08:29:38.474] [INFO] cheese - inserting 1000 documents. first: Year 1443 and last: Year 462 -[2018-02-13T08:29:38.502] [INFO] cheese - inserting 1000 documents. first: G/M/1 queue and last: Wikipedia:Articles for deletion/Anthony Tat -[2018-02-13T08:29:38.518] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T08:29:38.543] [INFO] cheese - inserting 1000 documents. first: Boeing 777-236ER and last: Frankfurt (Main) Hbf station -[2018-02-13T08:29:38.553] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:29:38.601] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:29:38.654] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:29:38.886] [INFO] cheese - inserting 1000 documents. first: Year 461 and last: Nicol Stephen, Baron Stephen -[2018-02-13T08:29:38.913] [INFO] cheese - inserting 1000 documents. first: KTEQ-FM and last: Moondog Spot -[2018-02-13T08:29:38.923] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T08:29:38.984] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Bernie Marsden and last: Thomas Adamson (master gunner) -[2018-02-13T08:29:38.987] [INFO] cheese - inserting 1000 documents. first: Bshift and last: Thixomolding -[2018-02-13T08:29:39.059] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:29:39.117] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:29:39.198] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:29:39.238] [INFO] cheese - inserting 1000 documents. first: Portal:University of Pittsburgh/On this day/September 28 and last: Category:Moveable holidays (Christmas date based) -[2018-02-13T08:29:39.261] [INFO] cheese - inserting 1000 documents. first: Bootable disc and last: Hilary Barte -[2018-02-13T08:29:39.270] [INFO] cheese - inserting 1000 documents. first: Sakaigawa Namiemon and last: Playmo -[2018-02-13T08:29:39.307] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:29:39.334] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:29:39.452] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:29:39.666] [INFO] cheese - inserting 1000 documents. first: Pembroke State College for Indians and last: Cambyses I -[2018-02-13T08:29:39.751] [INFO] cheese - inserting 1000 documents. first: Stoke, England and last: List of UK Dance Chart number-one singles of 2008 -[2018-02-13T08:29:39.790] [INFO] cheese - inserting 1000 documents. first: International Border and last: Service-learning in engineering education -[2018-02-13T08:29:39.774] [INFO] cheese - batch complete in: 1.819 secs -[2018-02-13T08:29:39.911] [INFO] cheese - inserting 1000 documents. first: Sue Weinlein Cook and last: Cuckoo (song) -[2018-02-13T08:29:39.979] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:29:40.082] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:29:40.091] [INFO] cheese - inserting 1000 documents. first: Daniel Lieberman and last: Daniel Rocha -[2018-02-13T08:29:40.202] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:29:40.220] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:29:40.281] [INFO] cheese - inserting 1000 documents. first: RPL35 and last: Joanna Cotten -[2018-02-13T08:29:40.287] [INFO] cheese - inserting 1000 documents. first: John T. Schuessler and last: Experimental Radio Station Eberswalde -[2018-02-13T08:29:40.379] [INFO] cheese - inserting 1000 documents. first: Belthorn and last: Wikipedia:Articles for deletion/Stuffed article -[2018-02-13T08:29:40.433] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:29:40.458] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:29:40.491] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:29:40.813] [INFO] cheese - inserting 1000 documents. first: File:Charles A. Sprague Oregon Governor.jpg and last: Template:WikiProject University of Oxford/class -[2018-02-13T08:29:40.842] [INFO] cheese - inserting 1000 documents. first: File:Barbra Streisand & Kim Carnes - Make No Mistake, He's Mine.jpg and last: File:Scuderia Toro Rosso Powered by Cosworth.png -[2018-02-13T08:29:40.870] [INFO] cheese - inserting 1000 documents. first: Cohen's horseshoe bat and last: A.S.D. Città di Marino Calcio -[2018-02-13T08:29:40.932] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:29:40.941] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Animation/Hanna-Barbera work group/Participants and last: Shotwell Hall, West Liberty State College -[2018-02-13T08:29:40.953] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:29:40.963] [INFO] cheese - inserting 1000 documents. first: Nell Hodgson Woodruff School of Nursing and last: University city loop -[2018-02-13T08:29:40.981] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:29:41.049] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:29:41.101] [INFO] cheese - inserting 1000 documents. first: Template:Scotland-stub and last: Z-Saber -[2018-02-13T08:29:41.163] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:29:41.282] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:29:41.452] [INFO] cheese - inserting 1000 documents. first: Yengejeh-ye Yaranmish and last: Arnoldius -[2018-02-13T08:29:41.487] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:29:41.503] [INFO] cheese - inserting 1000 documents. first: Teneliximab and last: Wikipedia:Articles for deletion/Academic Citizenship -[2018-02-13T08:29:41.567] [INFO] cheese - inserting 1000 documents. first: Yuki Tanaka (historian) and last: Pigeon Hill, New Brunswick -[2018-02-13T08:29:41.647] [INFO] cheese - inserting 1000 documents. first: Réunion ibis and last: Worker-communist Party of Iraq -[2018-02-13T08:29:41.681] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:29:41.708] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:29:41.764] [INFO] cheese - inserting 1000 documents. first: Hans Frangenheim and last: Davit Usupashvili -[2018-02-13T08:29:41.785] [INFO] cheese - inserting 1000 documents. first: Template:Unendorsed Labour candidates, 1931/meta/color and last: Axmed Gaab -[2018-02-13T08:29:41.922] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:29:41.925] [INFO] cheese - inserting 1000 documents. first: First period of World War II and last: List of Italian films of 1912 -[2018-02-13T08:29:41.942] [INFO] cheese - batch complete in: 2.168 secs -[2018-02-13T08:29:41.984] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:29:42.116] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:29:42.290] [INFO] cheese - inserting 1000 documents. first: Junge Freiheit and last: CBC Museum -[2018-02-13T08:29:42.458] [INFO] cheese - inserting 1000 documents. first: Timothy A. Kinnan and last: Michael McCarthy (politician) -[2018-02-13T08:29:42.464] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:29:42.479] [INFO] cheese - inserting 1000 documents. first: Category:Czech-American culture in Washington, D.C. and last: File:PebbleBeachnoHotouJPBoxShot.jpg -[2018-02-13T08:29:42.482] [INFO] cheese - inserting 1000 documents. first: 1984 British Touring Car Championship season and last: Darlington, Prince Edward Island -[2018-02-13T08:29:42.575] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:29:42.602] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:29:42.614] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:29:42.674] [INFO] cheese - inserting 1000 documents. first: Category:American music-related lists and last: Wikipedia:Articles for deletion/2015 Gothenburg pub shooting (2nd nomination) -[2018-02-13T08:29:42.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mo-germans.com and last: Stephen Halpin -[2018-02-13T08:29:42.816] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:29:42.855] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:29:43.068] [INFO] cheese - inserting 1000 documents. first: Pramac and last: Echarate District -[2018-02-13T08:29:43.214] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:29:43.448] [INFO] cheese - inserting 1000 documents. first: Aaahh! Real Monsters and last: 150 Mile House -[2018-02-13T08:29:43.457] [INFO] cheese - inserting 1000 documents. first: Pornography and Violence in the Communications Media and last: Shivyar, Meyaneh -[2018-02-13T08:29:43.488] [INFO] cheese - inserting 1000 documents. first: Silicious and last: Rudolf Heinze -[2018-02-13T08:29:43.537] [INFO] cheese - inserting 1000 documents. first: Sunbeam Products, Inc. and last: Zeitschrift für englische Philologie -[2018-02-13T08:29:43.551] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:29:43.652] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:29:43.653] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:29:43.739] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:29:43.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Correllian Nativist Tradition and last: Category:2016 in aviation -[2018-02-13T08:29:43.973] [INFO] cheese - inserting 1000 documents. first: Richard Beatniffe and last: File:Bethesda Hospital.jpg -[2018-02-13T08:29:44.005] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:29:44.172] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:29:44.202] [INFO] cheese - inserting 1000 documents. first: Candida dubliniensis and last: Michelle Thomas -[2018-02-13T08:29:44.350] [INFO] cheese - batch complete in: 2.408 secs -[2018-02-13T08:29:44.535] [INFO] cheese - inserting 1000 documents. first: Calorie per hour and last: The Man Who Was Dead -[2018-02-13T08:29:44.610] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:29:44.641] [INFO] cheese - inserting 1000 documents. first: Category:Free jazz trombonists and last: Eric Genden -[2018-02-13T08:29:44.737] [INFO] cheese - inserting 1000 documents. first: Zoraxe and last: Category:Maccabi Herzliya F.C. players -[2018-02-13T08:29:44.921] [INFO] cheese - batch complete in: 1.707 secs -[2018-02-13T08:29:45.030] [INFO] cheese - batch complete in: 1.479 secs -[2018-02-13T08:29:45.079] [INFO] cheese - inserting 1000 documents. first: Something Something Something Dark Side and last: Denis McBride (rugby footballer) -[2018-02-13T08:29:45.081] [INFO] cheese - inserting 1000 documents. first: Keith, Bill and last: NJCC -[2018-02-13T08:29:45.092] [INFO] cheese - inserting 1000 documents. first: Connellan Airport and last: The Politicians -[2018-02-13T08:29:45.203] [INFO] cheese - inserting 1000 documents. first: HanDover (album) and last: Magnolia Award -[2018-02-13T08:29:45.202] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:29:45.214] [INFO] cheese - batch complete in: 1.474 secs -[2018-02-13T08:29:45.296] [INFO] cheese - batch complete in: 1.644 secs -[2018-02-13T08:29:45.384] [INFO] cheese - inserting 1000 documents. first: List of Dipper's Guide to the Unexplained episodes and last: Category:2011 disestablishments in Croatia -[2018-02-13T08:29:45.402] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:29:45.512] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:29:45.778] [INFO] cheese - inserting 1000 documents. first: 205 Signal Squadron and last: Indigen -[2018-02-13T08:29:45.907] [INFO] cheese - inserting 1000 documents. first: Lamp Black and last: Sorède -[2018-02-13T08:29:45.937] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:29:46.061] [INFO] cheese - inserting 1000 documents. first: Government spin-off and last: Deanne Lundin -[2018-02-13T08:29:46.101] [INFO] cheese - inserting 1000 documents. first: Views (album) and last: Egypt, Belmont County, Ohio -[2018-02-13T08:29:46.119] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:29:46.279] [INFO] cheese - inserting 1000 documents. first: Antoan Richardson and last: Jeff Wayne's Video Game Version of The War of the Worlds -[2018-02-13T08:29:46.317] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:29:46.328] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:29:46.453] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:29:46.480] [INFO] cheese - inserting 1000 documents. first: Category:Cabinets disestablished in 2011 and last: Lowry Auxiliary Landing Field -[2018-02-13T08:29:46.499] [INFO] cheese - inserting 1000 documents. first: Goldfrapp Discography and last: Naruto Ninja Council -[2018-02-13T08:29:46.600] [INFO] cheese - inserting 1000 documents. first: Janata Dal (United) and last: Islamic Republic of Iran Air Force -[2018-02-13T08:29:46.714] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T08:29:46.739] [INFO] cheese - batch complete in: 1.442 secs -[2018-02-13T08:29:46.972] [INFO] cheese - batch complete in: 2.622 secs -[2018-02-13T08:29:47.098] [INFO] cheese - inserting 1000 documents. first: Frank Bourne and last: Template:Localities in Svenljunga Municipality -[2018-02-13T08:29:47.193] [INFO] cheese - inserting 1000 documents. first: Managed mobility services and last: Dirk Balster -[2018-02-13T08:29:47.240] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:29:47.344] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:29:47.482] [INFO] cheese - inserting 1000 documents. first: File:Car & Boat Storage.jpg and last: List of airports in the United Arab Emirates -[2018-02-13T08:29:47.548] [INFO] cheese - inserting 1000 documents. first: Vino Novello and last: File:Patanjali yogpeeth residendialbldg.jpg -[2018-02-13T08:29:47.688] [INFO] cheese - inserting 1000 documents. first: Sree Narayana Poly (S.N.Poly) Technic College (S.N.P.T.C) and last: File:DINA S.A. logo.png -[2018-02-13T08:29:47.703] [INFO] cheese - inserting 1000 documents. first: Governor of Gaza and last: Boxing at the 1998 Asian Games – Men's +91 kg -[2018-02-13T08:29:47.701] [INFO] cheese - batch complete in: 1.581 secs -[2018-02-13T08:29:47.790] [INFO] cheese - batch complete in: 1.473 secs -[2018-02-13T08:29:47.906] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:29:47.960] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:29:48.239] [INFO] cheese - inserting 1000 documents. first: James Wilson Henderson and last: Best of Friends -[2018-02-13T08:29:48.547] [INFO] cheese - batch complete in: 1.808 secs -[2018-02-13T08:29:48.565] [INFO] cheese - inserting 1000 documents. first: Huacracocha and last: Portal:New York Roads/Selected article/January 2016 -[2018-02-13T08:29:48.723] [INFO] cheese - inserting 1000 documents. first: Anne Bourchier, Baroness Dacre and last: Reyhan Arabacioglu -[2018-02-13T08:29:48.762] [INFO] cheese - inserting 1000 documents. first: Template:Localities in Säffle Municipality and last: Allowance for bad debts -[2018-02-13T08:29:48.883] [INFO] cheese - batch complete in: 1.539 secs -[2018-02-13T08:29:48.920] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:29:49.069] [INFO] cheese - batch complete in: 1.828 secs -[2018-02-13T08:29:49.068] [INFO] cheese - inserting 1000 documents. first: Katnappe (Xiaolin Showdown) and last: Kausambi -[2018-02-13T08:29:49.268] [INFO] cheese - inserting 1000 documents. first: FYFT G-series unmanned blimp and last: Thayet War Cemetery -[2018-02-13T08:29:49.406] [INFO] cheese - batch complete in: 1.705 secs -[2018-02-13T08:29:49.424] [INFO] cheese - inserting 1000 documents. first: Air Forces and last: Autonomous prefecture -[2018-02-13T08:29:49.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/IABot and last: Yeşilçiftlik, Sultandağı -[2018-02-13T08:29:49.596] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T08:29:49.742] [INFO] cheese - batch complete in: 2.77 secs -[2018-02-13T08:29:49.825] [INFO] cheese - batch complete in: 1.918 secs -[2018-02-13T08:29:49.831] [INFO] cheese - inserting 1000 documents. first: Gorsafawddachaidraigodanheddogleddollonpenrhynareurdraethceredigion and last: VW Touareg -[2018-02-13T08:29:50.025] [INFO] cheese - inserting 1000 documents. first: Template:Socialist Left Party (Norway)/meta/color and last: Gara Gara Go! -[2018-02-13T08:29:50.064] [INFO] cheese - batch complete in: 1.517 secs -[2018-02-13T08:29:50.073] [INFO] cheese - inserting 1000 documents. first: Category:Former states and territories by country and last: Kangson Station -[2018-02-13T08:29:50.164] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:29:50.227] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:29:50.477] [INFO] cheese - inserting 1000 documents. first: John C. Reed and last: Category:National Historic Sites in North Carolina -[2018-02-13T08:29:50.599] [INFO] cheese - inserting 1000 documents. first: James E Strates Midways and last: Lim Gi-han -[2018-02-13T08:29:50.717] [INFO] cheese - batch complete in: 1.648 secs -[2018-02-13T08:29:50.718] [INFO] cheese - inserting 1000 documents. first: Template:Miss World Continental Queen of Beauty titleholders 2013 and last: 1935 International Cross Country Championships -[2018-02-13T08:29:50.851] [INFO] cheese - batch complete in: 1.441 secs -[2018-02-13T08:29:50.969] [INFO] cheese - inserting 1000 documents. first: Çamözü, Sultandağı and last: My Little Funhouse -[2018-02-13T08:29:51.037] [INFO] cheese - batch complete in: 1.441 secs -[2018-02-13T08:29:51.194] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:29:51.210] [INFO] cheese - inserting 1000 documents. first: File:The Byrds - Eight Miles High Why.jpg and last: Seventh Commandment -[2018-02-13T08:29:51.393] [INFO] cheese - inserting 1000 documents. first: Tarek Kamel and last: Tom zbikowski -[2018-02-13T08:29:51.399] [INFO] cheese - inserting 1000 documents. first: Franz Joseph Toussaint and last: Category:Korean Broadcasting System people -[2018-02-13T08:29:51.478] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:29:51.591] [INFO] cheese - batch complete in: 1.527 secs -[2018-02-13T08:29:51.653] [INFO] cheese - batch complete in: 1.489 secs -[2018-02-13T08:29:51.915] [INFO] cheese - inserting 1000 documents. first: Turo's Hevi Gee and last: A5M Claude -[2018-02-13T08:29:51.970] [INFO] cheese - inserting 1000 documents. first: Sira' Fi al-Wady and last: Artificial neural membrane -[2018-02-13T08:29:52.053] [INFO] cheese - batch complete in: 1.335 secs -[2018-02-13T08:29:52.120] [INFO] cheese - inserting 1000 documents. first: Lewis Leonard Forman and last: Wikipedia:Today's featured article/October 11, 2013 -[2018-02-13T08:29:52.149] [INFO] cheese - batch complete in: 1.297 secs -[2018-02-13T08:29:52.291] [INFO] cheese - inserting 1000 documents. first: Ed Boyd and last: Category:Census-designated places in Washington County, Pennsylvania -[2018-02-13T08:29:52.339] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:29:52.354] [INFO] cheese - inserting 1000 documents. first: Bagram Airbase and last: Cynog Dafis -[2018-02-13T08:29:52.452] [INFO] cheese - inserting 1000 documents. first: Grey Flesh Fly and last: Joe Togher -[2018-02-13T08:29:52.486] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Freefall 3050 A.D. and last: Molecular similarity -[2018-02-13T08:29:52.503] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:29:52.630] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:29:52.651] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:29:52.850] [INFO] cheese - batch complete in: 3.108 secs -[2018-02-13T08:29:53.078] [INFO] cheese - inserting 1000 documents. first: R. v. Morgentaler (1988) and last: Agnes Water -[2018-02-13T08:29:53.250] [INFO] cheese - batch complete in: 1.659 secs -[2018-02-13T08:29:53.478] [INFO] cheese - inserting 1000 documents. first: Women in Arab societies and last: KSTO -[2018-02-13T08:29:53.491] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Disambiguation pages with links/October 2013 and last: 1936 International Cross Country Championships -[2018-02-13T08:29:53.824] [INFO] cheese - batch complete in: 1.485 secs -[2018-02-13T08:29:53.827] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:29:53.939] [INFO] cheese - inserting 1000 documents. first: Embassy of the United States in Manila and last: Maxim Yeliseev -[2018-02-13T08:29:53.953] [INFO] cheese - inserting 1000 documents. first: Behavioral trap and last: Jake Jarmel -[2018-02-13T08:29:54.012] [INFO] cheese - inserting 1000 documents. first: Jerome Erceau and last: File:International Journal Of Biochemistry And Cell Biology Cover.gif -[2018-02-13T08:29:54.180] [INFO] cheese - batch complete in: 1.677 secs -[2018-02-13T08:29:54.184] [INFO] cheese - inserting 1000 documents. first: Bus Bustami and last: Appolstory -[2018-02-13T08:29:54.236] [INFO] cheese - batch complete in: 1.585 secs -[2018-02-13T08:29:54.425] [INFO] cheese - batch complete in: 2.372 secs -[2018-02-13T08:29:54.433] [INFO] cheese - batch complete in: 1.802 secs -[2018-02-13T08:29:54.759] [INFO] cheese - inserting 1000 documents. first: Template:Expert review and last: Golujeh-ye Eslam -[2018-02-13T08:29:54.853] [INFO] cheese - inserting 1000 documents. first: John III, Count of Holstein-Plön and last: FCIC -[2018-02-13T08:29:54.888] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:29:55.093] [INFO] cheese - batch complete in: 1.839 secs -[2018-02-13T08:29:55.108] [INFO] cheese - inserting 1000 documents. first: Perryville Battlefield State Historic Site and last: FC Saarbrucken -[2018-02-13T08:29:55.203] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:29:55.272] [INFO] cheese - inserting 1000 documents. first: Upholstory and last: AD 1708 -[2018-02-13T08:29:55.393] [INFO] cheese - inserting 1000 documents. first: (11902) 1991 PZ12 and last: ProFe Duo Banjo -[2018-02-13T08:29:55.402] [INFO] cheese - inserting 1000 documents. first: List of Futari wa Pretty Cure Splash Star episodes and last: Théatre du Chatelet -[2018-02-13T08:29:55.504] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:29:55.565] [INFO] cheese - inserting 1000 documents. first: Heinrich IX and last: Batang Hari Regency -[2018-02-13T08:29:55.633] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:29:55.700] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:29:55.802] [INFO] cheese - batch complete in: 1.377 secs -[2018-02-13T08:29:55.806] [INFO] cheese - inserting 1000 documents. first: AD 1707 and last: AD 721 -[2018-02-13T08:29:55.952] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:29:56.209] [INFO] cheese - inserting 1000 documents. first: Blackburnian warbler and last: ZFV -[2018-02-13T08:29:56.288] [INFO] cheese - inserting 1000 documents. first: Gavanlu, East Azerbaijan and last: Juliper League -[2018-02-13T08:29:56.341] [INFO] cheese - inserting 1000 documents. first: After Burner: Black Falcon and last: Geronimo de Ghinucci -[2018-02-13T08:29:56.342] [INFO] cheese - inserting 1000 documents. first: AD 720 and last: AD 151 -[2018-02-13T08:29:56.374] [INFO] cheese - inserting 1000 documents. first: JoJo White and last: Altocumulus -[2018-02-13T08:29:56.378] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T08:29:56.551] [INFO] cheese - inserting 1000 documents. first: ProFe BanjoMH and last: Aly Ibrahim -[2018-02-13T08:29:56.657] [INFO] cheese - batch complete in: 1.769 secs -[2018-02-13T08:29:56.659] [INFO] cheese - batch complete in: 1.566 secs -[2018-02-13T08:29:56.782] [INFO] cheese - batch complete in: 1.578 secs -[2018-02-13T08:29:56.794] [INFO] cheese - batch complete in: 3.935 secs -[2018-02-13T08:29:56.890] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:29:57.076] [INFO] cheese - inserting 1000 documents. first: Giorgio van Straten and last: San Francisco de Cayrán District -[2018-02-13T08:29:57.106] [INFO] cheese - inserting 1000 documents. first: Captain Falcon (video game character) and last: Wikipedia:WikiProject Spam/LinkReports/ccitoamasina.org -[2018-02-13T08:29:57.301] [INFO] cheese - batch complete in: 1.499 secs -[2018-02-13T08:29:57.319] [INFO] cheese - batch complete in: 1.618 secs -[2018-02-13T08:29:57.621] [INFO] cheese - inserting 1000 documents. first: AD 152 and last: File:Lotto-Soudal logo.png -[2018-02-13T08:29:57.769] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:29:57.884] [INFO] cheese - inserting 1000 documents. first: Template:PBB/25836 and last: File:Coventry City FC logo.svg -[2018-02-13T08:29:57.993] [INFO] cheese - inserting 1000 documents. first: Muswell Hill railway station and last: Template:US-airport2 -[2018-02-13T08:29:58.008] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:29:58.133] [INFO] cheese - inserting 1000 documents. first: Ishikawadai Station and last: File:Ayyamna-al-Helwa.jpg -[2018-02-13T08:29:58.241] [INFO] cheese - batch complete in: 1.582 secs -[2018-02-13T08:29:58.302] [INFO] cheese - inserting 1000 documents. first: List of cultural property of national significance in Switzerland: Aargau and last: Fugue in G minor -[2018-02-13T08:29:58.342] [INFO] cheese - batch complete in: 1.56 secs -[2018-02-13T08:29:58.463] [INFO] cheese - inserting 1000 documents. first: San Pedro de Chaulán District and last: Choice on Termination of Pregnancy Amendment Act -[2018-02-13T08:29:58.530] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:29:58.671] [INFO] cheese - inserting 1000 documents. first: 1999 Mongolia Premier League and last: Bishop of Central America -[2018-02-13T08:29:58.715] [INFO] cheese - batch complete in: 1.414 secs -[2018-02-13T08:29:58.864] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:29:59.094] [INFO] cheese - inserting 1000 documents. first: Tanks of World War II and last: 2011 Tashkent Open – Singles -[2018-02-13T08:29:59.363] [INFO] cheese - inserting 1000 documents. first: ZDJ and last: Preston Bissett -[2018-02-13T08:29:59.365] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T08:29:59.530] [INFO] cheese - inserting 1000 documents. first: File:Thai Kuti Illustration.jpg and last: Kaagse zeilmarathon -[2018-02-13T08:29:59.528] [INFO] cheese - inserting 1000 documents. first: Between 10th and 11th and last: Epic Trance -[2018-02-13T08:29:59.582] [INFO] cheese - inserting 1000 documents. first: Angola national basketball team roster and last: Koi Aanay Wala Hai (song) -[2018-02-13T08:29:59.834] [INFO] cheese - batch complete in: 1.593 secs -[2018-02-13T08:29:59.839] [INFO] cheese - batch complete in: 1.496 secs -[2018-02-13T08:29:59.904] [INFO] cheese - batch complete in: 3.107 secs -[2018-02-13T08:29:59.945] [INFO] cheese - batch complete in: 1.413 secs -[2018-02-13T08:30:00.028] [INFO] cheese - inserting 1000 documents. first: Episcopal Diocese of Central America and last: Mubarak Dahi Waleed -[2018-02-13T08:30:00.354] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Obozedalteima and last: Cecile Gotaas Johnsen -[2018-02-13T08:30:00.358] [INFO] cheese - inserting 1000 documents. first: File:Bahamove.jpg and last: Category:Ceylonese military personnel -[2018-02-13T08:30:00.475] [INFO] cheese - batch complete in: 1.611 secs -[2018-02-13T08:30:00.659] [INFO] cheese - inserting 1000 documents. first: Gryfici and last: Henry Worsley (disambiguation) -[2018-02-13T08:30:00.686] [INFO] cheese - batch complete in: 1.97 secs -[2018-02-13T08:30:01.013] [INFO] cheese - batch complete in: 1.648 secs -[2018-02-13T08:30:01.127] [INFO] cheese - batch complete in: 4.47 secs -[2018-02-13T08:30:01.489] [INFO] cheese - inserting 1000 documents. first: File:Seneca.JPG and last: Let Me Be the One (Carpenters song) -[2018-02-13T08:30:01.544] [INFO] cheese - inserting 1000 documents. first: C-Day and last: Sophie-Charlotte-Platz (Berlin U-Bahn) -[2018-02-13T08:30:01.580] [INFO] cheese - inserting 1000 documents. first: File:Virginia Henry Curtiss Heckscher (1932).png and last: Template:VIA Station -[2018-02-13T08:30:01.681] [INFO] cheese - inserting 1000 documents. first: Centrist politics and last: Timyra palathodes -[2018-02-13T08:30:01.727] [INFO] cheese - batch complete in: 1.887 secs -[2018-02-13T08:30:01.919] [INFO] cheese - batch complete in: 2.083 secs -[2018-02-13T08:30:01.955] [INFO] cheese - batch complete in: 2.01 secs -[2018-02-13T08:30:01.958] [INFO] cheese - batch complete in: 1.481 secs -[2018-02-13T08:30:02.318] [INFO] cheese - inserting 1000 documents. first: Henry Peckham (disambiguation) and last: Volchansky -[2018-02-13T08:30:02.320] [INFO] cheese - inserting 1000 documents. first: Hardin City Center, Montana and last: File:InCoS v2.png -[2018-02-13T08:30:02.427] [INFO] cheese - batch complete in: 1.741 secs -[2018-02-13T08:30:02.536] [INFO] cheese - batch complete in: 1.523 secs -[2018-02-13T08:30:02.594] [INFO] cheese - inserting 1000 documents. first: Arbeiderungdommen (1923–1927) and last: Médaille commémorative française -[2018-02-13T08:30:02.799] [INFO] cheese - batch complete in: 1.672 secs -[2018-02-13T08:30:02.928] [INFO] cheese - inserting 1000 documents. first: Sir James Caird, 1st Baronet and last: Xigatse -[2018-02-13T08:30:02.998] [INFO] cheese - inserting 1000 documents. first: William Marvin Watson and last: Category:Argentine biochemists -[2018-02-13T08:30:03.113] [INFO] cheese - inserting 1000 documents. first: Template:VIA color and last: Nuto Revelli -[2018-02-13T08:30:03.122] [INFO] cheese - batch complete in: 1.395 secs -[2018-02-13T08:30:03.146] [INFO] cheese - inserting 1000 documents. first: Vacat page and last: S.V. Arsenal -[2018-02-13T08:30:03.348] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:30:03.366] [INFO] cheese - batch complete in: 1.408 secs -[2018-02-13T08:30:03.484] [INFO] cheese - batch complete in: 1.529 secs -[2018-02-13T08:30:03.613] [INFO] cheese - inserting 1000 documents. first: Volchanskaya and last: Archmere Academy Mastersingers -[2018-02-13T08:30:03.657] [INFO] cheese - inserting 1000 documents. first: Screen magnifier and last: Odalist -[2018-02-13T08:30:03.715] [INFO] cheese - inserting 1000 documents. first: Bolton Metropolitan Borough Council election, 2007 and last: Ryan Pierce (The West Wing) -[2018-02-13T08:30:03.764] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:30:03.825] [INFO] cheese - inserting 1000 documents. first: Symphonia Chronicles and last: Tal Keinan -[2018-02-13T08:30:03.872] [INFO] cheese - batch complete in: 1.444 secs -[2018-02-13T08:30:03.876] [INFO] cheese - batch complete in: 3.971 secs -[2018-02-13T08:30:03.918] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:30:04.130] [INFO] cheese - inserting 1000 documents. first: Geronimo Mendieta and last: Krembanan -[2018-02-13T08:30:04.220] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:30:04.231] [INFO] cheese - inserting 1000 documents. first: Clara Conway and last: Dungeons and Dragons Player's Strategy Guide -[2018-02-13T08:30:04.243] [INFO] cheese - inserting 1000 documents. first: Rhine-Main and last: List of traditional Chinese musical instruments -[2018-02-13T08:30:04.267] [INFO] cheese - inserting 1000 documents. first: Isabella Ochichi and last: Category:Films about chess -[2018-02-13T08:30:04.286] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:30:04.341] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:30:04.401] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:30:04.446] [INFO] cheese - inserting 1000 documents. first: Category:History of New Brunswick by location and last: ROKS Su Yong (LST-813) -[2018-02-13T08:30:04.488] [INFO] cheese - inserting 1000 documents. first: Van Auken (disambiguation) and last: File:Feminism & Psychology journal front cover.gif -[2018-02-13T08:30:04.569] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:30:04.592] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:30:04.602] [INFO] cheese - inserting 1000 documents. first: Watalangue and last: Orto Botanico del Monte Baldo -[2018-02-13T08:30:04.746] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:30:04.823] [INFO] cheese - inserting 1000 documents. first: Live at the Westbeth Theater and last: Charlotte Walker, actress -[2018-02-13T08:30:04.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Turkspasha/Archive and last: Suji-gu Office Station -[2018-02-13T08:30:04.891] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:30:04.908] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:30:04.951] [INFO] cheese - inserting 1000 documents. first: Category:UEFA competitions for women's national teams and last: File:Bungalow Heaven.jpg -[2018-02-13T08:30:05.061] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:30:05.246] [INFO] cheese - inserting 1000 documents. first: Low-fiber/low-residue diet and last: Suzanne Marie James -[2018-02-13T08:30:05.262] [INFO] cheese - inserting 1000 documents. first: Viceroyalties of New Spain and last: Sacred fire of Vesta -[2018-02-13T08:30:05.285] [INFO] cheese - inserting 1000 documents. first: Gerald G. May and last: Roncancio -[2018-02-13T08:30:05.399] [INFO] cheese - inserting 1000 documents. first: Zaroşad and last: Chernishevskii District -[2018-02-13T08:30:05.399] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:30:05.404] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:30:05.454] [INFO] cheese - batch complete in: 1.576 secs -[2018-02-13T08:30:05.532] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:30:05.616] [INFO] cheese - inserting 1000 documents. first: Template:Ayeyarwady-geo-stub and last: Wikipedia:WikiProject St. Louis/Politics -[2018-02-13T08:30:05.763] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:30:05.803] [INFO] cheese - inserting 1000 documents. first: Bugueño Pinnacle and last: Homaloxestis tenuipalpella -[2018-02-13T08:30:05.881] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Music of the United Kingdom articles and last: Ogongo Constituency -[2018-02-13T08:30:05.904] [INFO] cheese - inserting 1000 documents. first: Ichor (The Black League album) and last: Pueai Noi District -[2018-02-13T08:30:05.948] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:30:06.035] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:30:06.124] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:30:06.284] [INFO] cheese - inserting 1000 documents. first: Unitedworld Institute of Design and last: Wikipedia:Miscellany for deletion/User:Vennira Iravuggal -[2018-02-13T08:30:06.312] [INFO] cheese - inserting 1000 documents. first: Chernyshevsky Raion and last: Category:Willa Cather -[2018-02-13T08:30:06.375] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:30:06.395] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:30:06.436] [INFO] cheese - inserting 1000 documents. first: Ted Price and last: Wikipedia:Articles for deletion/Bolter -[2018-02-13T08:30:06.549] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:30:06.604] [INFO] cheese - inserting 1000 documents. first: Category:Danish expatriates in India and last: Wikipedia:Categories for discussion/Log/2009 December 8 -[2018-02-13T08:30:06.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Canadian Fraternal Organization - L'Association Fraternelle Canadienne and last: Portal:Mali/Related portals -[2018-02-13T08:30:06.662] [INFO] cheese - inserting 1000 documents. first: Lecithocera tenuipalpella and last: Martin Werhand -[2018-02-13T08:30:06.744] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:30:06.744] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:30:06.770] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:30:06.875] [INFO] cheese - inserting 1000 documents. first: Category:Washington DC and last: New World Tower -[2018-02-13T08:30:06.946] [INFO] cheese - inserting 1000 documents. first: Category:Defunct newspapers of Iceland and last: 1990–91 IHF Women's Cup Winners' Cup -[2018-02-13T08:30:07.005] [INFO] cheese - inserting 1000 documents. first: William Vander Zalm and last: Interval class -[2018-02-13T08:30:07.037] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:30:07.104] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:30:07.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/September 18, 2011 and last: Centro Nazionale delle Ricerche -[2018-02-13T08:30:07.251] [INFO] cheese - batch complete in: 1.797 secs -[2018-02-13T08:30:07.389] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:30:07.397] [INFO] cheese - inserting 1000 documents. first: Gotha Go 244 and last: Olga Kapeliuk -[2018-02-13T08:30:07.544] [INFO] cheese - inserting 1000 documents. first: File:GPA Screenshot 2015.png and last: File:Sivakavi .jpg -[2018-02-13T08:30:07.653] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:30:07.750] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:30:07.907] [INFO] cheese - inserting 1000 documents. first: Nordik beat and last: Addiscombe (ward) -[2018-02-13T08:30:07.969] [INFO] cheese - inserting 1000 documents. first: Plasmamembrane calmodulin-dependent calcium ATPase and last: Purple grenadier -[2018-02-13T08:30:07.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2009 December 9 and last: Template:GongolaStateGovernors -[2018-02-13T08:30:07.994] [INFO] cheese - inserting 1000 documents. first: Golujeh, Tabriz and last: List of AEW&C aircraft -[2018-02-13T08:30:08.055] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:30:08.087] [INFO] cheese - batch complete in: 1.343 secs -[2018-02-13T08:30:08.106] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:30:08.167] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:30:08.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/grammarbank.com and last: Fathallah -[2018-02-13T08:30:08.430] [INFO] cheese - inserting 1000 documents. first: Serow, West Azerbaijan and last: Joel tabora -[2018-02-13T08:30:08.499] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:30:08.526] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:30:08.757] [INFO] cheese - inserting 1000 documents. first: Aristotle's ethics and last: Pete Marshal -[2018-02-13T08:30:08.779] [INFO] cheese - inserting 1000 documents. first: Template:Wpkentucky and last: WNEG (disambiguation) -[2018-02-13T08:30:08.888] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:30:08.896] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:08.933] [INFO] cheese - inserting 1000 documents. first: The Show Must Go On (musical by Walsh and Whiting) and last: Challenge Show -[2018-02-13T08:30:09.020] [INFO] cheese - inserting 1000 documents. first: 1st Philippine Legislature and last: Michael E. Bratman -[2018-02-13T08:30:09.024] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:30:09.049] [INFO] cheese - inserting 1000 documents. first: Hikitsuke-kata and last: Awa province (Tokushima) -[2018-02-13T08:30:09.135] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:30:09.180] [INFO] cheese - batch complete in: 1.928 secs -[2018-02-13T08:30:09.189] [INFO] cheese - inserting 1000 documents. first: Oklahoma State University homecoming parade car ramming and last: Category:Leonardo da Vinci in fiction -[2018-02-13T08:30:09.222] [INFO] cheese - inserting 1000 documents. first: Rastafarian vocabulary and last: File:Man in the moonlight.jpg -[2018-02-13T08:30:09.258] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:09.283] [INFO] cheese - inserting 1000 documents. first: Mulk, Iran and last: PDQ (computer) -[2018-02-13T08:30:09.293] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:30:09.397] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:30:09.599] [INFO] cheese - inserting 1000 documents. first: Qalb and last: Wasp Star (Apple Venus Volume 2) -[2018-02-13T08:30:09.636] [INFO] cheese - inserting 1000 documents. first: Daniel Sheffer and last: São Cristóvão (Rio de Janeiro neighbourhood) -[2018-02-13T08:30:09.647] [INFO] cheese - inserting 1000 documents. first: File:Palm Beach Drive bridge, Patterson Lakes.jpg and last: Maheriraty -[2018-02-13T08:30:09.668] [INFO] cheese - inserting 1000 documents. first: Bangalore Elevated Tollway and last: SER-Ninos II -[2018-02-13T08:30:09.677] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:09.706] [INFO] cheese - inserting 1000 documents. first: PDQ (laptop) and last: Category:1931 disestablishments in Turkey -[2018-02-13T08:30:09.732] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:30:09.783] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:30:09.832] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:30:09.834] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:30:09.885] [INFO] cheese - inserting 1000 documents. first: Category:Fountains in Bangladesh and last: Hydrocortamate hydrochloride -[2018-02-13T08:30:10.008] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:30:10.308] [INFO] cheese - inserting 1000 documents. first: Sanuki province and last: Gardiner -[2018-02-13T08:30:10.357] [INFO] cheese - inserting 1000 documents. first: List of animals of Long Island Sound and last: J. Am. Ceram. Soc. -[2018-02-13T08:30:10.372] [INFO] cheese - inserting 1000 documents. first: Interdigital transducers and last: Salahuddin Governorate -[2018-02-13T08:30:10.390] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:30:10.421] [INFO] cheese - inserting 1000 documents. first: Ligia Curvaria and last: Category:Canadian military personnel from Quebec -[2018-02-13T08:30:10.425] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:30:10.461] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:30:10.536] [INFO] cheese - inserting 1000 documents. first: E. O. Lyte and last: Bulgarians in Serbia and Montenegro -[2018-02-13T08:30:10.535] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:30:10.548] [INFO] cheese - inserting 1000 documents. first: Shirin Bakhtiar and last: Gray Council -[2018-02-13T08:30:10.587] [INFO] cheese - inserting 1000 documents. first: (14423) 1991 SM2 and last: Akaflieg Stuttgart FS-26 Moseppl -[2018-02-13T08:30:10.645] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:30:10.710] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:30:10.774] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:30:11.022] [INFO] cheese - inserting 1000 documents. first: Januzaj and last: Nikolett Krausz -[2018-02-13T08:30:11.064] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:30:11.113] [INFO] cheese - inserting 1000 documents. first: Sujin Naknayom and last: Loughrea, Co. Galway -[2018-02-13T08:30:11.244] [INFO] cheese - inserting 1000 documents. first: Bust a nut and last: File:SCUBA diving flag icon.gif -[2018-02-13T08:30:11.295] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:30:11.372] [INFO] cheese - inserting 1000 documents. first: Mom's Dead Upset and last: Glenn Greenberg -[2018-02-13T08:30:11.415] [INFO] cheese - inserting 1000 documents. first: Veera Chozhan river and last: 雒龍君 -[2018-02-13T08:30:11.425] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:30:11.527] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:30:11.606] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:30:11.634] [INFO] cheese - inserting 1000 documents. first: Shinobi X and last: Harry Potter Wands -[2018-02-13T08:30:11.819] [INFO] cheese - inserting 1000 documents. first: Yangsan Province (film) and last: Alıç (disambiguation) -[2018-02-13T08:30:11.831] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:30:11.978] [INFO] cheese - inserting 1000 documents. first: Leslie and last: 53rd Division (British) -[2018-02-13T08:30:12.002] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:30:12.130] [INFO] cheese - inserting 1000 documents. first: Women representations in Municipal elections in Israel and last: Buckler-mustard -[2018-02-13T08:30:12.194] [INFO] cheese - batch complete in: 1.804 secs -[2018-02-13T08:30:12.291] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:30:12.402] [INFO] cheese - inserting 1000 documents. first: File:Tamagotchi2.jpeg and last: Wikipedia:Articles for deletion/Mushroom Jack -[2018-02-13T08:30:12.540] [INFO] cheese - inserting 1000 documents. first: Template:Gene-17-stub and last: Schleswig-Holstein-Glücksburg -[2018-02-13T08:30:12.598] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:30:12.659] [INFO] cheese - inserting 1000 documents. first: Schwarza (Black Forest) and last: Category:Multi-purpose stadiums in Switzerland -[2018-02-13T08:30:12.659] [INFO] cheese - inserting 1000 documents. first: Andrei Volobuyev (disambiguation) and last: Talbert, California -[2018-02-13T08:30:12.708] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:30:12.711] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:30:12.969] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:30:13.025] [INFO] cheese - inserting 1000 documents. first: Mickey Mania: The Timeless Adventures of Mickey Mouse and last: 546 Herodias -[2018-02-13T08:30:13.297] [INFO] cheese - batch complete in: 1.465 secs -[2018-02-13T08:30:13.316] [INFO] cheese - inserting 1000 documents. first: Sanadamaru and last: Mount Pleasant railway station, South Australia -[2018-02-13T08:30:13.549] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:30:13.646] [INFO] cheese - inserting 1000 documents. first: Levkowitz and last: Poetry of Scotland -[2018-02-13T08:30:13.703] [INFO] cheese - inserting 1000 documents. first: Through the Flames and last: Category:American expatriates in New Zealand -[2018-02-13T08:30:13.723] [INFO] cheese - inserting 1000 documents. first: 27P/Crommelin and last: Category:Video game cheating -[2018-02-13T08:30:13.765] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:30:13.833] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:30:13.907] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:30:14.147] [INFO] cheese - inserting 1000 documents. first: Lamin Samateh and last: Itolizumab -[2018-02-13T08:30:14.211] [INFO] cheese - inserting 1000 documents. first: VK Ceske Budejovice and last: Tayeb Korbosli -[2018-02-13T08:30:14.239] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T08:30:14.267] [INFO] cheese - inserting 1000 documents. first: Poltergasm and last: File:Breaking the News (1912 film) - still.jpg -[2018-02-13T08:30:14.331] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:14.370] [INFO] cheese - inserting 1000 documents. first: Operation Headstrong and last: Herzog & de Meuron -[2018-02-13T08:30:14.389] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:30:14.414] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Highway 100 and last: Category:Middle schools in Minnesota -[2018-02-13T08:30:14.513] [INFO] cheese - inserting 1000 documents. first: Mitbanchan and last: Category:Deputy Lieutenants of Ross-shire -[2018-02-13T08:30:14.639] [INFO] cheese - inserting 1000 documents. first: Chromatic aberrations and last: ATHF Marketing Scandal -[2018-02-13T08:30:14.719] [INFO] cheese - inserting 1000 documents. first: Cleveland (TV series) and last: Category:New Zealand politics stubs -[2018-02-13T08:30:14.897] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:30:14.966] [INFO] cheese - batch complete in: 2.772 secs -[2018-02-13T08:30:15.024] [INFO] cheese - batch complete in: 1.727 secs -[2018-02-13T08:30:15.102] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T08:30:15.275] [INFO] cheese - inserting 1000 documents. first: Olokizumab and last: (23492) 1991 RA20 -[2018-02-13T08:30:15.407] [INFO] cheese - inserting 1000 documents. first: Portal:California Roads/Selected article/18 and last: Narrow-leaved Bitter-cress -[2018-02-13T08:30:15.485] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T08:30:15.580] [INFO] cheese - inserting 1000 documents. first: Category:Gothic Revival architecture in Herefordshire and last: Andy Little (footballer) -[2018-02-13T08:30:15.729] [INFO] cheese - batch complete in: 1.398 secs -[2018-02-13T08:30:15.771] [INFO] cheese - batch complete in: 1.381 secs -[2018-02-13T08:30:15.822] [INFO] cheese - batch complete in: 7.654 secs -[2018-02-13T08:30:16.212] [INFO] cheese - inserting 1000 documents. first: 1956 U.S. Open (golf) and last: Wikipedia:Articles for deletion/Brian Sherwin -[2018-02-13T08:30:16.298] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:30:16.433] [INFO] cheese - inserting 1000 documents. first: File:Moja domovina.jpg and last: Keyword advertising -[2018-02-13T08:30:16.477] [INFO] cheese - inserting 1000 documents. first: FK Sibiryak Bratsk and last: "Armavia" Air Company -[2018-02-13T08:30:16.489] [INFO] cheese - inserting 1000 documents. first: Aleph nought and last: 834 Burnhamia -[2018-02-13T08:30:16.524] [INFO] cheese - inserting 1000 documents. first: Four greats of Chilean poetry and last: Margaret Wilson (judge) -[2018-02-13T08:30:16.663] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:30:16.685] [INFO] cheese - inserting 1000 documents. first: Red Light district and last: Category:Paintings in California -[2018-02-13T08:30:16.726] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:30:16.765] [INFO] cheese - batch complete in: 1.741 secs -[2018-02-13T08:30:16.768] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T08:30:16.955] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T08:30:17.242] [INFO] cheese - inserting 1000 documents. first: Arne Naess and last: Vernix -[2018-02-13T08:30:17.406] [INFO] cheese - inserting 1000 documents. first: Steele (supercomputer) and last: Hilarion-Pit -[2018-02-13T08:30:17.423] [INFO] cheese - batch complete in: 2.456 secs -[2018-02-13T08:30:17.689] [INFO] cheese - inserting 1000 documents. first: Songo Songo Airstrip and last: Alpha (Magic: The Gathering) -[2018-02-13T08:30:17.757] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:30:17.959] [INFO] cheese - inserting 1000 documents. first: CMRN and last: File:Stel forawhile.jpg -[2018-02-13T08:30:18.070] [INFO] cheese - inserting 1000 documents. first: Lecithocera lasioides and last: Ämmuste -[2018-02-13T08:30:18.085] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T08:30:18.129] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Cass County, Missouri and last: Andrei Kovalenco -[2018-02-13T08:30:18.260] [INFO] cheese - batch complete in: 1.533 secs -[2018-02-13T08:30:18.292] [INFO] cheese - inserting 1000 documents. first: 832 Karin and last: File:Gaffney.jpg -[2018-02-13T08:30:18.308] [INFO] cheese - batch complete in: 1.353 secs -[2018-02-13T08:30:18.477] [INFO] cheese - batch complete in: 1.712 secs -[2018-02-13T08:30:18.591] [INFO] cheese - inserting 1000 documents. first: Wicki-Hayden note layout and last: File:20091123 Newsweek Palin Cover.png -[2018-02-13T08:30:18.589] [INFO] cheese - batch complete in: 1.821 secs -[2018-02-13T08:30:18.769] [INFO] cheese - batch complete in: 2.947 secs -[2018-02-13T08:30:18.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Devonshire Collection of Period Costume and last: Atta-faire language -[2018-02-13T08:30:19.014] [INFO] cheese - inserting 1000 documents. first: The Semonski Sisters and last: New media artist -[2018-02-13T08:30:19.048] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:30:19.184] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:30:19.322] [INFO] cheese - inserting 1000 documents. first: File:CoASigismundKingofHungary.png and last: Geiselbach (Kahl) -[2018-02-13T08:30:19.381] [INFO] cheese - inserting 1000 documents. first: Category:Festivals in Turkey by city and last: Category:Paintings in Youngstown, Ohio -[2018-02-13T08:30:19.404] [INFO] cheese - inserting 1000 documents. first: Eadmer of Canterbury and last: Big Malcolm -[2018-02-13T08:30:19.565] [INFO] cheese - inserting 1000 documents. first: Hollywood – My Way and last: Kaleval'skii -[2018-02-13T08:30:19.579] [INFO] cheese - batch complete in: 1.271 secs -[2018-02-13T08:30:19.581] [INFO] cheese - batch complete in: 1.319 secs -[2018-02-13T08:30:19.661] [INFO] cheese - inserting 1000 documents. first: Robert C. Byrd placenames and last: Fayetteville Area System of Transit -[2018-02-13T08:30:19.698] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:30:19.809] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:30:19.899] [INFO] cheese - inserting 1000 documents. first: Category:Chinese former Muslims and last: Yu Daimonzi -[2018-02-13T08:30:20.085] [INFO] cheese - batch complete in: 1.606 secs -[2018-02-13T08:30:20.089] [INFO] cheese - inserting 1000 documents. first: Ictineo and last: Wallon -[2018-02-13T08:30:20.246] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:30:20.297] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Wyoming Highway 132 and last: Typhochlaena costae -[2018-02-13T08:30:20.495] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:30:20.678] [INFO] cheese - inserting 1000 documents. first: List of Japan-related topics (numbers and symbols) and last: CC Lockwood -[2018-02-13T08:30:20.719] [INFO] cheese - batch complete in: 3.296 secs -[2018-02-13T08:30:20.905] [INFO] cheese - batch complete in: 1.721 secs -[2018-02-13T08:30:20.968] [INFO] cheese - inserting 1000 documents. first: Sukkok and last: Richmond-Petersburg -[2018-02-13T08:30:21.082] [INFO] cheese - inserting 1000 documents. first: Mupwi and last: Christian Brothers High School (Memphis, Tennessee) -[2018-02-13T08:30:21.096] [INFO] cheese - inserting 1000 documents. first: Halve Maen (ship) and last: Frank St. John Sidway -[2018-02-13T08:30:21.100] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:30:21.118] [INFO] cheese - inserting 1000 documents. first: Edward Hannes and last: 62nd General Assembly of Nova Scotia -[2018-02-13T08:30:21.243] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:30:21.272] [INFO] cheese - batch complete in: 1.574 secs -[2018-02-13T08:30:21.297] [INFO] cheese - batch complete in: 1.714 secs -[2018-02-13T08:30:21.332] [INFO] cheese - inserting 1000 documents. first: Animation Magazine and last: Wikipedia:Articles for deletion/Samuel Morris Penthouse -[2018-02-13T08:30:21.624] [INFO] cheese - inserting 1000 documents. first: John Coghlan (footballer) and last: Alexander Liziukov -[2018-02-13T08:30:21.664] [INFO] cheese - batch complete in: 1.579 secs -[2018-02-13T08:30:21.791] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:30:22.040] [INFO] cheese - inserting 1000 documents. first: Guantanamo captive 090 and last: Arp 226 -[2018-02-13T08:30:22.126] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:30:22.161] [INFO] cheese - inserting 1000 documents. first: Pompey Center, New York and last: Charles Laplace -[2018-02-13T08:30:22.172] [INFO] cheese - inserting 1000 documents. first: United States presidential election in New York, 1884 and last: Cosmosoma festiva -[2018-02-13T08:30:22.231] [INFO] cheese - inserting 1000 documents. first: Assault with intent to commit felony and last: Siah Jamegan Aboumoslem Khorasan F.C. -[2018-02-13T08:30:22.237] [INFO] cheese - inserting 1000 documents. first: Nicolau Eymerich and last: Wikipedia:WikiProject Military history/Peer review/Battle of Shanghai -[2018-02-13T08:30:22.268] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T08:30:22.332] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:30:22.350] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:30:22.356] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:30:22.501] [INFO] cheese - inserting 1000 documents. first: Doug Selby and last: Success factors -[2018-02-13T08:30:22.537] [INFO] cheese - inserting 1000 documents. first: Bahai Faith in China and last: National Union of Shop Assistants -[2018-02-13T08:30:22.554] [INFO] cheese - inserting 1000 documents. first: House wren and last: Pinus taeda -[2018-02-13T08:30:22.614] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:30:22.655] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:30:22.848] [INFO] cheese - batch complete in: 2.128 secs -[2018-02-13T08:30:22.878] [INFO] cheese - inserting 1000 documents. first: Cosmosoma aleus and last: Firuraq Rural District -[2018-02-13T08:30:22.908] [INFO] cheese - inserting 1000 documents. first: Dwight Yates and last: Template:Spider Loc -[2018-02-13T08:30:22.960] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:30:22.972] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:30:23.047] [INFO] cheese - inserting 1000 documents. first: Abdolhossein Zarinkoob and last: 4th U.S. Colored Infantry Regiment -[2018-02-13T08:30:23.103] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Hunter2hunter and last: The 12 Steps -[2018-02-13T08:30:23.124] [INFO] cheese - inserting 1000 documents. first: Category:Minnesota Golden Gophers men's basketball seasons and last: David Murray Cowie -[2018-02-13T08:30:23.169] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:30:23.251] [INFO] cheese - inserting 1000 documents. first: National Amalgamated Union of Shop Assistants and last: Derby Road (disambiguation) -[2018-02-13T08:30:23.254] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:30:23.266] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:30:23.346] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:23.382] [INFO] cheese - inserting 1000 documents. first: Panchachuli and last: List of Pacific hurricanes before 1900 -[2018-02-13T08:30:23.474] [INFO] cheese - inserting 1000 documents. first: Gowharan Rural District (West Azerbaijan Province) and last: Karla MacFarlane -[2018-02-13T08:30:23.484] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:30:23.535] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:30:23.603] [INFO] cheese - inserting 1000 documents. first: List of places in the Heraklion prefecture and last: Yaʿăqōḇ -[2018-02-13T08:30:23.708] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:30:23.736] [INFO] cheese - inserting 1000 documents. first: Sonderborg Airport and last: Category:New Zealand judges -[2018-02-13T08:30:23.790] [INFO] cheese - inserting 1000 documents. first: Noctua carnea and last: Template:Tohoku Rakuten Golden Eagles roster -[2018-02-13T08:30:23.796] [INFO] cheese - inserting 1000 documents. first: The Army and Navy Journal and last: Murder on the High Seas (book) -[2018-02-13T08:30:23.899] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:30:23.919] [INFO] cheese - inserting 1000 documents. first: Battles of Batočina and Jagodina and last: Murray State Racers men's golf -[2018-02-13T08:30:23.893] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:30:24.029] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:30:24.099] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:30:24.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Whendjlizawasdjlisa and last: Glenwood Memorial Gardens -[2018-02-13T08:30:24.283] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:30:24.412] [INFO] cheese - inserting 1000 documents. first: File:Rasinari Church.png and last: Battle of zaoyang yichang -[2018-02-13T08:30:24.415] [INFO] cheese - inserting 1000 documents. first: David Hookes and last: Hate group -[2018-02-13T08:30:24.551] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:30:24.583] [INFO] cheese - batch complete in: 1.734 secs -[2018-02-13T08:30:24.691] [INFO] cheese - inserting 1000 documents. first: Chapter 9 bankruptcy and last: Arnfield -[2018-02-13T08:30:24.736] [INFO] cheese - inserting 1000 documents. first: The Family Jewels (Marina and the Diamonds album) and last: Rusty: A Dog's Tale -[2018-02-13T08:30:24.765] [INFO] cheese - inserting 1000 documents. first: Gose Elbe and last: Tapinurus -[2018-02-13T08:30:24.783] [INFO] cheese - inserting 1000 documents. first: Cal State Northridge Matadors men's golf and last: Mall cop 2 -[2018-02-13T08:30:24.787] [INFO] cheese - inserting 1000 documents. first: Wal-Mart Supercentre and last: Binley, Coventry -[2018-02-13T08:30:24.788] [INFO] cheese - inserting 1000 documents. first: Titanium diselenide and last: António Baltasar Marcelino -[2018-02-13T08:30:24.802] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:30:24.850] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:30:24.914] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:30:24.967] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:30:24.966] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:30:24.985] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:30:25.323] [INFO] cheese - inserting 1000 documents. first: Enséñame a Olvidar (Aventura song) and last: SLC5A7 -[2018-02-13T08:30:25.364] [INFO] cheese - inserting 1000 documents. first: Zamora (municipality) and last: Cloudland -[2018-02-13T08:30:25.379] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:30:25.400] [INFO] cheese - inserting 1000 documents. first: File:Holly Happy Days.jpeg and last: Maji Desu ka Ska -[2018-02-13T08:30:25.457] [INFO] cheese - inserting 1000 documents. first: IEC 61960 and last: 2010 Football NSW season -[2018-02-13T08:30:25.483] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:30:25.514] [INFO] cheese - inserting 1000 documents. first: List of countries by uranium reserves and last: Category:1997 in Indonesia -[2018-02-13T08:30:25.512] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:30:25.553] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:30:25.632] [INFO] cheese - inserting 1000 documents. first: Gurukula Kangri Vishwavidyalaya and last: Portal:India/Quiz/Archive49 -[2018-02-13T08:30:25.642] [INFO] cheese - inserting 1000 documents. first: Burning Up Years and last: Green Township, Harrison County, Ohio -[2018-02-13T08:30:25.649] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:30:25.727] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:30:25.740] [INFO] cheese - inserting 1000 documents. first: Nuristanis and last: Shmoo Group -[2018-02-13T08:30:25.753] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:30:25.953] [INFO] cheese - batch complete in: 1.368 secs -[2018-02-13T08:30:26.088] [INFO] cheese - inserting 1000 documents. first: Bobot and last: Pryazhinskii District -[2018-02-13T08:30:26.135] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/htb.co.jp and last: Bob Curnow -[2018-02-13T08:30:26.132] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:30:26.152] [INFO] cheese - inserting 1000 documents. first: Paul W. Draper and last: Kent station (Washington) -[2018-02-13T08:30:26.251] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:30:26.257] [INFO] cheese - inserting 1000 documents. first: Giant bikes and last: Lasdon Park and Arboretum -[2018-02-13T08:30:26.288] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:30:26.394] [INFO] cheese - inserting 1000 documents. first: Christ School and last: Tourism in Gary, Indiana -[2018-02-13T08:30:26.396] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:30:26.410] [INFO] cheese - inserting 1000 documents. first: Welfare in Brazil and last: Geographic center of Belarus -[2018-02-13T08:30:26.518] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:30:26.547] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:30:26.641] [INFO] cheese - inserting 1000 documents. first: Monroe Township, Harrison County, Ohio and last: Lee Township, Athens County, Ohio -[2018-02-13T08:30:26.698] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:30:26.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Delaware/Article alerts and last: Category:Municipal parks in North Carolina -[2018-02-13T08:30:26.758] [INFO] cheese - inserting 1000 documents. first: Pryajinsky District and last: Wikipedia:Templates for discussion/Log/2009 March 29 -[2018-02-13T08:30:26.882] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:30:26.892] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:30:26.986] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julianna Pollifrone and last: Lijuan Geng -[2018-02-13T08:30:27.102] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:30:27.356] [INFO] cheese - inserting 1000 documents. first: Sevskoye Urban Settlement and last: Romel Quiñónez -[2018-02-13T08:30:27.445] [INFO] cheese - inserting 1000 documents. first: Utricularia macrocheilos and last: Levon "Bo" Jones -[2018-02-13T08:30:27.465] [INFO] cheese - inserting 1000 documents. first: Donald Wandrei and last: Wikipedia:Articles for deletion/Mystii -[2018-02-13T08:30:27.467] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:30:27.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2009 March 30 and last: Wikipedia:Templates for discussion/Log/2008 August 31 -[2018-02-13T08:30:27.567] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:30:27.583] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:30:27.683] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:27.722] [INFO] cheese - inserting 1000 documents. first: Trimble Township, Athens County, Ohio and last: ATN cricket plus -[2018-02-13T08:30:27.838] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ALBUMS/REVSIT and last: Theoria (social and political journal) -[2018-02-13T08:30:27.850] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T08:30:27.861] [INFO] cheese - inserting 1000 documents. first: Category:Dance festivals in Thailand and last: 狄漢臣 -[2018-02-13T08:30:27.864] [INFO] cheese - inserting 1000 documents. first: Marquess of Ailesbury and last: Youth sexuality -[2018-02-13T08:30:27.906] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:30:27.980] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:30:28.040] [INFO] cheese - batch complete in: 2.087 secs -[2018-02-13T08:30:28.101] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2008 September 1 and last: File:Sunset view at Fagatele Bay.jpg -[2018-02-13T08:30:28.114] [INFO] cheese - inserting 1000 documents. first: The New Girl (Haven) and last: Rintaro Norizuki -[2018-02-13T08:30:28.179] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:30:28.190] [INFO] cheese - inserting 1000 documents. first: Leaf-carrying ant and last: Christian Law of Adoption in India -[2018-02-13T08:30:28.218] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:28.284] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:30:28.388] [INFO] cheese - inserting 1000 documents. first: Michael Bolotin and last: Category:Soviet diplomats -[2018-02-13T08:30:28.594] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:30:28.618] [INFO] cheese - inserting 1000 documents. first: ATN cricketplus and last: Polyrectangle -[2018-02-13T08:30:28.619] [INFO] cheese - inserting 1000 documents. first: Οὔγγροι and last: Doug Carter -[2018-02-13T08:30:28.735] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:30:28.793] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:30:28.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Video games/Reference library/The One and last: Template:Attached KML/Interstate 580 (Nevada) -[2018-02-13T08:30:28.987] [INFO] cheese - inserting 1000 documents. first: Adel Bencherif and last: New Zealand National -[2018-02-13T08:30:29.003] [INFO] cheese - inserting 1000 documents. first: Category:Environmental Microbiology and last: Milford Junction -[2018-02-13T08:30:29.009] [INFO] cheese - inserting 1000 documents. first: Category:20th-century establishments in the Cape Colony and last: File:UT Press logo.PNG -[2018-02-13T08:30:29.049] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:30:29.111] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:30:29.131] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:30:29.132] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:30:29.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/GeeseUK and last: Frank Schleck -[2018-02-13T08:30:29.570] [INFO] cheese - inserting 1000 documents. first: Reddish brown and last: Frank Velásquez -[2018-02-13T08:30:29.602] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:30:29.688] [INFO] cheese - inserting 1000 documents. first: File:Monstersquadposter.jpg and last: Ōsaki-Hirokōji Station -[2018-02-13T08:30:29.713] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:30:29.763] [INFO] cheese - inserting 1000 documents. first: 2009–10 Biathlon World Cup – Individual Men and last: Manuel Monge -[2018-02-13T08:30:29.818] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:30:29.872] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:30:30.030] [INFO] cheese - inserting 1000 documents. first: Category:Trinity Bantams and last: Beside Still Waters (film) -[2018-02-13T08:30:30.080] [INFO] cheese - inserting 1000 documents. first: Category:Religious texts articles needing infoboxes and last: The Frye Apartments Guy -[2018-02-13T08:30:30.085] [INFO] cheese - inserting 1000 documents. first: Toyota Celica (T230) and last: Japan Gasoline Co. -[2018-02-13T08:30:30.111] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:30:30.130] [INFO] cheese - inserting 1000 documents. first: Muhammad Ayub Khan and last: Mario Party -[2018-02-13T08:30:30.145] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:30:30.179] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:30:30.296] [INFO] cheese - batch complete in: 2.256 secs -[2018-02-13T08:30:30.395] [INFO] cheese - inserting 1000 documents. first: Sins of a Solar Empire: Rebellion and last: Template:Cities and towns in Požega-Slavonia -[2018-02-13T08:30:30.405] [INFO] cheese - inserting 1000 documents. first: List of American jazz musicians of Sicilian origin and last: Old-man's-beard -[2018-02-13T08:30:30.481] [INFO] cheese - inserting 1000 documents. first: Master Eraqus and last: Adyge-Khablskoye -[2018-02-13T08:30:30.484] [INFO] cheese - inserting 1000 documents. first: Nicșeni and last: Stephen P. Clark Center -[2018-02-13T08:30:30.500] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:30:30.519] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:30:30.614] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:30:30.617] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:30:30.783] [INFO] cheese - inserting 1000 documents. first: 1958–59 Liverpool F.C. season and last: Template:Cycling data MCG -[2018-02-13T08:30:30.822] [INFO] cheese - inserting 1000 documents. first: Chainstore makeover and last: El Mundo del Siglo Veintiuno -[2018-02-13T08:30:30.833] [INFO] cheese - inserting 1000 documents. first: Category:1990s in the environment and last: La Grange Road station (Metra) -[2018-02-13T08:30:30.933] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:30:30.986] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:30:31.103] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:30:31.349] [INFO] cheese - inserting 1000 documents. first: Doctor Who (series 24) and last: De Meritens -[2018-02-13T08:30:31.355] [INFO] cheese - inserting 1000 documents. first: Medial dorsal nucleus and last: Niwa Nagakuni -[2018-02-13T08:30:31.368] [INFO] cheese - inserting 1000 documents. first: Wonderer and last: Category:Discoveries by Yoshisada Shimizu -[2018-02-13T08:30:31.435] [INFO] cheese - inserting 1000 documents. first: Curse of the bambino and last: International Union of Guides and Scouts of Europe -[2018-02-13T08:30:31.442] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:30:31.466] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:30:31.608] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:30:31.745] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T08:30:31.935] [INFO] cheese - inserting 1000 documents. first: List of natural regions in Saxony and last: Category:486 in Europe -[2018-02-13T08:30:32.007] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:30:32.065] [INFO] cheese - inserting 1000 documents. first: HMS Serapis (1779) and last: The Dears -[2018-02-13T08:30:32.104] [INFO] cheese - inserting 1000 documents. first: La Grange Road station (Illinois) and last: Retort gas -[2018-02-13T08:30:32.209] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:30:32.281] [INFO] cheese - batch complete in: 1.984 secs -[2018-02-13T08:30:32.286] [INFO] cheese - inserting 1000 documents. first: Battle of Hyrba and last: File:Full Circle (Doctor Who).jpg -[2018-02-13T08:30:32.341] [INFO] cheese - inserting 1000 documents. first: Eight street middle school and last: Category:B-Class Computer Security articles of High-importance -[2018-02-13T08:30:32.401] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:30:32.406] [INFO] cheese - inserting 1000 documents. first: Category:Lynchburg (minor league baseball) players and last: Reno Air Races Crash -[2018-02-13T08:30:32.409] [INFO] cheese - inserting 1000 documents. first: Grafeneck Euthanasia Centre and last: Martin Windrow -[2018-02-13T08:30:32.463] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:30:32.511] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:30:32.555] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:30:32.700] [INFO] cheese - inserting 1000 documents. first: Category:489 in Europe and last: Eumelea genuina -[2018-02-13T08:30:32.746] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:30:32.803] [INFO] cheese - inserting 1000 documents. first: Category:Paintings in Düsseldorf and last: Shane Julien -[2018-02-13T08:30:32.810] [INFO] cheese - inserting 1000 documents. first: List of minor planets/115001–115100 and last: Essential thrombocythemia -[2018-02-13T08:30:32.864] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:30:32.909] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:30:33.097] [INFO] cheese - inserting 1000 documents. first: Template:UEFA Europa League winners and last: Temples in Jerusalem -[2018-02-13T08:30:33.123] [INFO] cheese - inserting 1000 documents. first: Fashion capital and last: Five-coloured munia -[2018-02-13T08:30:33.129] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Computer Security articles of Mid-importance and last: Category:2009–10 Atlantic Coast Conference men's basketball season -[2018-02-13T08:30:33.154] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:30:33.253] [INFO] cheese - inserting 1000 documents. first: Indian Health Transfer Policy (Canada) and last: Template:Forth and Clyde Canal map -[2018-02-13T08:30:33.266] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:30:33.349] [INFO] cheese - inserting 1000 documents. first: Dave Considine and last: NASL Final 70 -[2018-02-13T08:30:33.474] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:30:33.483] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:30:33.518] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:30:33.672] [INFO] cheese - inserting 1000 documents. first: Category:Grenadian expatriates in Barbados and last: Franco Cotana -[2018-02-13T08:30:33.837] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:30:33.931] [INFO] cheese - inserting 1000 documents. first: Music of Extremadura and last: Richard Burdon Haldane -[2018-02-13T08:30:33.939] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in the Netherlands and last: File:Tengwar tanwi.png -[2018-02-13T08:30:33.993] [INFO] cheese - inserting 1000 documents. first: Lieutenant General (UK) and last: Triathlon at the 2011 Pan American Games – Men's -[2018-02-13T08:30:34.102] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:30:34.118] [INFO] cheese - batch complete in: 1.836 secs -[2018-02-13T08:30:34.122] [INFO] cheese - inserting 1000 documents. first: File:The Whispering of the Gods DVD Cover.jpg and last: Newtonian theory -[2018-02-13T08:30:34.152] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:30:34.246] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:30:34.260] [INFO] cheese - inserting 1000 documents. first: John Acton (canon lawyer) and last: Template:Yasuharu Hasebe -[2018-02-13T08:30:34.331] [INFO] cheese - inserting 1000 documents. first: File:Centrelink-brand.png and last: File:HU-emblem.jpg -[2018-02-13T08:30:34.415] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:30:34.474] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:30:34.547] [INFO] cheese - inserting 1000 documents. first: 7999 Nesvorný and last: Secondary State Highway 3F -[2018-02-13T08:30:34.671] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:30:34.799] [INFO] cheese - inserting 1000 documents. first: Triathlon at the 2011 Pan American Games – Women's and last: Higher education in New Zealand -[2018-02-13T08:30:34.826] [INFO] cheese - inserting 1000 documents. first: Arimasa Osawa and last: Equinox Day -[2018-02-13T08:30:34.898] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:30:34.901] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:30:35.058] [INFO] cheese - inserting 1000 documents. first: Hatanga Airport and last: Sir Charles Clow Tennant, 1st Baronet -[2018-02-13T08:30:35.122] [INFO] cheese - inserting 1000 documents. first: McGregor station (British Columbia) and last: StarCraft (comics) -[2018-02-13T08:30:35.122] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:30:35.148] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Sabaragamuwa Province and last: Category:Professional associations based in Vietnam -[2018-02-13T08:30:35.264] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:30:35.329] [INFO] cheese - batch complete in: 1.492 secs -[2018-02-13T08:30:35.374] [INFO] cheese - inserting 1000 documents. first: Ecumenical Theological Seminary and last: Rodrigo Avila -[2018-02-13T08:30:35.410] [INFO] cheese - inserting 1000 documents. first: University of Maryland, College Park Terrapins and last: December (song) -[2018-02-13T08:30:35.471] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:30:35.510] [INFO] cheese - inserting 1000 documents. first: Category:Merited Master of Sports of the USSR and last: Ebodina simplex -[2018-02-13T08:30:35.540] [INFO] cheese - inserting 1000 documents. first: Category:Religious buildings completed in 1222 and last: Category:Steyr-Puch vehicles -[2018-02-13T08:30:35.539] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:30:35.612] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:30:35.664] [INFO] cheese - inserting 1000 documents. first: Watford Gap and last: Closed list -[2018-02-13T08:30:35.689] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:30:35.822] [INFO] cheese - inserting 1000 documents. first: Lech Kolakowski and last: Template:User Vietnam -[2018-02-13T08:30:35.833] [INFO] cheese - batch complete in: 1.714 secs -[2018-02-13T08:30:35.912] [INFO] cheese - inserting 1000 documents. first: Saleh Al-Arfej and last: Mount Vernon Clippers -[2018-02-13T08:30:35.930] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota State University people and last: Gabe Cash -[2018-02-13T08:30:35.931] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:30:36.015] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:30:36.020] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:30:36.312] [INFO] cheese - inserting 1000 documents. first: Arsallah Jamal and last: Bayan Chowli -[2018-02-13T08:30:36.382] [INFO] cheese - inserting 1000 documents. first: Category:Cars of Austria and last: Club Atlético Madrid (handball) -[2018-02-13T08:30:36.395] [INFO] cheese - inserting 1000 documents. first: Cuihu Gongyuan and last: File:I sometimew wish i was famous.jpg -[2018-02-13T08:30:36.403] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:30:36.457] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:30:36.508] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:30:36.587] [INFO] cheese - inserting 1000 documents. first: Collaborationist and last: Igor Svyatoslavych -[2018-02-13T08:30:36.662] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T08:30:36.751] [INFO] cheese - inserting 1000 documents. first: Da Costa v. Jones and last: Widduyim -[2018-02-13T08:30:36.822] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:30:36.927] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sammie Rhodes and last: Richard Ronald John Copeland Esq -[2018-02-13T08:30:36.939] [INFO] cheese - inserting 1000 documents. first: Bayancholi-ye Pain and last: Kim Ji-woon -[2018-02-13T08:30:36.986] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:30:37.078] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:30:37.095] [INFO] cheese - inserting 1000 documents. first: Terrorist incidents in Pakistan in 2004 and last: Category:Unincorporated communities in Mississippi County, Missouri -[2018-02-13T08:30:37.208] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:37.220] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Kocaeli and last: File:DirkWearsWhiteSoxOriginalCover.gif -[2018-02-13T08:30:37.300] [INFO] cheese - inserting 1000 documents. first: Shandilya Upanishad and last: Template:Team Pune Roster -[2018-02-13T08:30:37.356] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:30:37.478] [INFO] cheese - inserting 1000 documents. first: Yanomama and last: Wolf Hirth -[2018-02-13T08:30:37.517] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:30:37.554] [INFO] cheese - inserting 1000 documents. first: Grands Établissements and last: Larry Manetti -[2018-02-13T08:30:37.599] [INFO] cheese - batch complete in: 1.765 secs -[2018-02-13T08:30:37.621] [INFO] cheese - inserting 1000 documents. first: Algonquin wit and last: Mini-dvi -[2018-02-13T08:30:37.720] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:30:37.730] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:30:37.800] [INFO] cheese - inserting 1000 documents. first: Loran Township, Stephenson County, Illinois and last: Phantom reference -[2018-02-13T08:30:37.817] [INFO] cheese - inserting 1000 documents. first: Methylliberine and last: 16-O-methylcafestol -[2018-02-13T08:30:37.899] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:30:37.906] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:30:37.920] [INFO] cheese - inserting 1000 documents. first: Category:Air divisions of the Wehrmacht Luftwaffe and last: Category:Old Town, Maine -[2018-02-13T08:30:38.020] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:30:38.083] [INFO] cheese - inserting 1000 documents. first: Airyhall Primary School and last: ދިވެހިބަސ -[2018-02-13T08:30:38.133] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:30:38.240] [INFO] cheese - inserting 1000 documents. first: Template:Rising Pune Supergiant and last: EuroVision - Museums Exhibiting Europe -[2018-02-13T08:30:38.265] [INFO] cheese - inserting 1000 documents. first: File:Marsh Harvester 1860.jpg and last: United Football League (disambiguation) -[2018-02-13T08:30:38.298] [INFO] cheese - inserting 1000 documents. first: Thomas Midgeley and last: ACL reconstruction -[2018-02-13T08:30:38.300] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:30:38.354] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:30:38.465] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:30:38.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/T-34 and last: Akkad Bakkad Bambey Bo -[2018-02-13T08:30:38.589] [INFO] cheese - inserting 1000 documents. first: Earthed neutral and last: Timothy J. Yeatman -[2018-02-13T08:30:38.628] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:30:38.691] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:30:38.701] [INFO] cheese - inserting 1000 documents. first: 1981 South American Rugby Championship and last: OP ruft Dr. Bruckner -[2018-02-13T08:30:38.721] [INFO] cheese - inserting 1000 documents. first: Yakima Training Center and last: *Gebô -[2018-02-13T08:30:38.782] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:30:38.788] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:30:38.866] [INFO] cheese - inserting 1000 documents. first: BePink–La Classica and last: Koreatown NYC -[2018-02-13T08:30:38.958] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:30:39.007] [INFO] cheese - inserting 1000 documents. first: Tipulodina and last: List of 2009 box office number-one films in Brazil -[2018-02-13T08:30:39.058] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:30:39.142] [INFO] cheese - inserting 1000 documents. first: Teresa Teng and last: Ifrit -[2018-02-13T08:30:39.228] [INFO] cheese - inserting 1000 documents. first: Piranshahr Industrial Estate and last: Category:Towns in Perquimans County, North Carolina -[2018-02-13T08:30:39.269] [INFO] cheese - batch complete in: 1.665 secs -[2018-02-13T08:30:39.279] [INFO] cheese - inserting 1000 documents. first: St. Theresita's Academy and last: 6 U.S.C. -[2018-02-13T08:30:39.282] [INFO] cheese - inserting 1000 documents. first: Category:1456 paintings and last: K. Engel -[2018-02-13T08:30:39.298] [INFO] cheese - inserting 1000 documents. first: Jim McFadden and last: I ♡ Natural -[2018-02-13T08:30:39.326] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:30:39.386] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:30:39.400] [INFO] cheese - inserting 1000 documents. first: Dima Halam Daoga and last: Michael Bacon (musician) -[2018-02-13T08:30:39.406] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:30:39.413] [INFO] cheese - inserting 1000 documents. first: Peter Chaus and last: File:Bill Hudson SOE.JPG -[2018-02-13T08:30:39.402] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:30:39.500] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:30:39.593] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:30:39.599] [INFO] cheese - inserting 1000 documents. first: R.J. Reynods and last: Jean-Bernard Ndongo Essomba -[2018-02-13T08:30:39.723] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:30:39.905] [INFO] cheese - inserting 1000 documents. first: Friedrich Paul Cilliers and last: File:Stan Walker - Take It Easy.jpg -[2018-02-13T08:30:40.055] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:30:40.152] [INFO] cheese - inserting 1000 documents. first: 2012 NAIA football rankings and last: Thomas Godwin (dean) -[2018-02-13T08:30:40.168] [INFO] cheese - inserting 1000 documents. first: Charles Salatka and last: Mentor Township, Lake County, Ohio -[2018-02-13T08:30:40.208] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:30:40.235] [INFO] cheese - inserting 1000 documents. first: Dor Deah and last: David Zabel -[2018-02-13T08:30:40.257] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:30:40.318] [INFO] cheese - inserting 1000 documents. first: Category:Videotape and last: Category:Armenia city templates -[2018-02-13T08:30:40.360] [INFO] cheese - inserting 1000 documents. first: Frank M. Angellotti and last: O-minimal -[2018-02-13T08:30:40.405] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:30:40.417] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:30:40.510] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:30:40.619] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Royalty Check and last: Phlogiston (Theory) -[2018-02-13T08:30:40.659] [INFO] cheese - inserting 1000 documents. first: Charles Baker (actor) and last: Habashi, West Azerbaijan -[2018-02-13T08:30:40.739] [INFO] cheese - inserting 1000 documents. first: Michael P. Decker and last: Heterobasidiomycetes -[2018-02-13T08:30:40.754] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:30:40.758] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:30:40.836] [INFO] cheese - inserting 1000 documents. first: Pansy Methodist Church School and last: Category:Southwestern Athletic Conference templates -[2018-02-13T08:30:40.903] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T08:30:40.956] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:30:41.138] [INFO] cheese - inserting 1000 documents. first: Hajo Hecht and last: Template:Trademark/doc -[2018-02-13T08:30:41.152] [INFO] cheese - inserting 1000 documents. first: Saughall and last: Château de Montrésor -[2018-02-13T08:30:41.220] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:30:41.354] [INFO] cheese - inserting 1000 documents. first: Service Ferry Training Squadron and last: Titanic Republic -[2018-02-13T08:30:41.362] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:30:41.458] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:30:41.464] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Osborne (writer) and last: St. Stephen's Episcopal School, Bradenton Fl. -[2018-02-13T08:30:41.471] [INFO] cheese - inserting 1000 documents. first: Hamzeh Kandi and last: Shirani, Sardasht -[2018-02-13T08:30:41.536] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:41.553] [INFO] cheese - inserting 1000 documents. first: Viscount Loftus and last: White Lake Middle School -[2018-02-13T08:30:41.551] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:30:41.667] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:30:41.747] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Panditejashri/Archive and last: Template:Missouri Valley Football Conference coach navbox -[2018-02-13T08:30:41.800] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:30:41.924] [INFO] cheese - inserting 1000 documents. first: BMC ADO 17 and last: 2008 PRC earthquake -[2018-02-13T08:30:41.928] [INFO] cheese - inserting 1000 documents. first: Rugby Channel and last: George Vail -[2018-02-13T08:30:41.975] [INFO] cheese - inserting 1000 documents. first: Sam Albarado and last: Cité internationale (Lyon) -[2018-02-13T08:30:41.985] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:30:41.988] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:30:42.013] [INFO] cheese - inserting 1000 documents. first: Tillandsia organensis and last: Wikipedia:Peer review/Bizenghast/archive1 -[2018-02-13T08:30:42.042] [INFO] cheese - inserting 1000 documents. first: Sanjuh and last: Sound Devices -[2018-02-13T08:30:42.048] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:30:42.099] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:30:42.126] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:30:42.276] [INFO] cheese - inserting 1000 documents. first: Margin call and last: No! -[2018-02-13T08:30:42.287] [INFO] cheese - inserting 1000 documents. first: Le Jour Ou La Pluie Viendra and last: Double Trouble (Thomas and Friends) -[2018-02-13T08:30:42.296] [INFO] cheese - inserting 1000 documents. first: Baton Rouge Observatory and last: Azimov -[2018-02-13T08:30:42.330] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:30:42.380] [INFO] cheese - batch complete in: 1.477 secs -[2018-02-13T08:30:42.401] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:30:42.565] [INFO] cheese - inserting 1000 documents. first: Arrested development (psychology) and last: Portal:Strategy games -[2018-02-13T08:30:42.630] [INFO] cheese - inserting 1000 documents. first: Cité Internationale (Lyon) and last: Category:Catholic church buildings in India -[2018-02-13T08:30:42.664] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:30:42.699] [INFO] cheese - inserting 1000 documents. first: Bayer Leverkusen II and last: Template:Texas (band) -[2018-02-13T08:30:42.702] [INFO] cheese - inserting 1000 documents. first: Category:1881 elections in the United States and last: Beth Ostrosky-Stern -[2018-02-13T08:30:42.710] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:30:42.753] [INFO] cheese - inserting 1000 documents. first: Shig Fukuyama and last: Portuguese national debt -[2018-02-13T08:30:42.783] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:30:42.791] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:30:42.852] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:30:42.964] [INFO] cheese - inserting 1000 documents. first: Christian - Serbian Orthodox and last: Wikipedia:WikiProject Spam/Local/paulzarzyski.com -[2018-02-13T08:30:43.039] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:30:43.118] [INFO] cheese - inserting 1000 documents. first: Enéas and last: Harold Josiah Finch -[2018-02-13T08:30:43.122] [INFO] cheese - inserting 1000 documents. first: Isaac azimov and last: Friedrich von Esmarch -[2018-02-13T08:30:43.148] [INFO] cheese - inserting 1000 documents. first: NV 50 and last: Forts in Wyoming -[2018-02-13T08:30:43.154] [INFO] cheese - inserting 1000 documents. first: Monte Ceneri (disambiguation) and last: Discus (website) -[2018-02-13T08:30:43.170] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:30:43.202] [INFO] cheese - inserting 1000 documents. first: Skinhead Rob Aston and last: Dharam Vir Magla -[2018-02-13T08:30:43.198] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:30:43.206] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:30:43.206] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:30:43.274] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:30:43.277] [INFO] cheese - inserting 1000 documents. first: Shantanu Kumar Acharya and last: Domestic violence in China -[2018-02-13T08:30:43.369] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:30:43.503] [INFO] cheese - inserting 1000 documents. first: Interstate 895 (Rhode Island-Massachusetts) and last: Klaipedos Nafta -[2018-02-13T08:30:43.537] [INFO] cheese - inserting 1000 documents. first: History of the Scots language and last: Rhön-Grabfeld -[2018-02-13T08:30:43.565] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:30:43.575] [INFO] cheese - inserting 1000 documents. first: List of parliaments by country and last: Mahon, Peter -[2018-02-13T08:30:43.623] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:30:43.639] [INFO] cheese - inserting 1000 documents. first: Gay Hills and last: Moray and Nairn byelection 1922 -[2018-02-13T08:30:43.673] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:30:43.789] [INFO] cheese - inserting 1000 documents. first: Schinia jaegeri and last: Felsenegg-Girstel TV-tower -[2018-02-13T08:30:43.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Robert O'Connor and last: Dolphin cove (SeaWorld) -[2018-02-13T08:30:43.839] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:30:43.886] [INFO] cheese - inserting 1000 documents. first: Eugenio Coseriu and last: Conny Wessmann -[2018-02-13T08:30:43.901] [INFO] cheese - inserting 1000 documents. first: Dagur Eggertsson and last: Template:Djursholmsbanan -[2018-02-13T08:30:43.905] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:30:43.912] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:30:44.003] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:30:44.015] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:30:44.179] [INFO] cheese - inserting 1000 documents. first: 1931–32 Galatasaray S.K. season and last: Central District (Saravan County) -[2018-02-13T08:30:44.259] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:30:44.285] [INFO] cheese - inserting 1000 documents. first: Marsh, Peter and last: Shipton Hall -[2018-02-13T08:30:44.377] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:30:44.412] [INFO] cheese - inserting 1000 documents. first: Windows 4 and last: Anson Class -[2018-02-13T08:30:44.443] [INFO] cheese - inserting 1000 documents. first: Ketao and last: Category:Suspected Wikipedia sockpuppets of Mudaliar -[2018-02-13T08:30:44.448] [INFO] cheese - inserting 1000 documents. first: Template:Uk-bio-stub and last: Intel Clear Video HD -[2018-02-13T08:30:44.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saša Milivojev and last: Category:UMKC Kangaroos -[2018-02-13T08:30:44.477] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:30:44.529] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:30:44.531] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:30:44.555] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:30:44.711] [INFO] cheese - inserting 1000 documents. first: Archimedes' number and last: Camp Beauregard -[2018-02-13T08:30:44.808] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:30:44.858] [INFO] cheese - inserting 1000 documents. first: Template:National Ringette League teams (2015-16) and last: Category:1892 disasters in the United States -[2018-02-13T08:30:44.923] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:30:44.926] [INFO] cheese - inserting 1000 documents. first: Plopart and last: Skaggs, Ricky -[2018-02-13T08:30:44.999] [INFO] cheese - inserting 1000 documents. first: Hand gestures and last: Fukuyama, Kagoshima -[2018-02-13T08:30:45.030] [INFO] cheese - inserting 1000 documents. first: NYU Poly Fighting Jays and last: Template:Did you know nominations/Mercurana -[2018-02-13T08:30:45.036] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:30:45.089] [INFO] cheese - inserting 1000 documents. first: Vinegar Hill Township, Jo Daviess County, Illinois and last: Credit quality -[2018-02-13T08:30:45.126] [INFO] cheese - inserting 1000 documents. first: WTF? (song) and last: Leading-edge slots -[2018-02-13T08:30:45.134] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:30:45.181] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:30:45.314] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:30:45.326] [INFO] cheese - inserting 1000 documents. first: World Hum and last: Maitree Wickremasinghe -[2018-02-13T08:30:45.328] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:30:45.441] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:30:45.557] [INFO] cheese - inserting 1000 documents. first: Germanic place names in Australia, changed in 1917 and last: Wikipedia:Articles for deletion/England Women v Australia Women 2 September 2005 -[2018-02-13T08:30:45.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gourock Park Bowling Club and last: Category:Rugby union at the World Games -[2018-02-13T08:30:45.628] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:30:45.702] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:30:45.784] [INFO] cheese - inserting 1000 documents. first: Osor (disambiguation) and last: Paul Zarzyski -[2018-02-13T08:30:45.837] [INFO] cheese - inserting 1000 documents. first: Crazy Love (TV series) and last: Classical music in Scotland -[2018-02-13T08:30:45.874] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:30:45.934] [INFO] cheese - inserting 1000 documents. first: FIFA 03 and last: Vivek Rajkumar -[2018-02-13T08:30:45.933] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:30:45.947] [INFO] cheese - inserting 1000 documents. first: Quiksilver Big Wave Invitational and last: Indos -[2018-02-13T08:30:45.992] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:30:46.060] [INFO] cheese - inserting 1000 documents. first: Nether kellet and last: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality/10 -[2018-02-13T08:30:46.092] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:30:46.127] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:30:46.216] [INFO] cheese - inserting 1000 documents. first: Category:Philately-related lists and last: File:Nesthaekchen und ihre enkel.jpg -[2018-02-13T08:30:46.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/England Women v Australia Women 24-27 August 2005 and last: Summit Inn -[2018-02-13T08:30:46.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/go4customer.com and last: Dokuztekne, Ceyhan -[2018-02-13T08:30:46.286] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:30:46.290] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:30:46.449] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:30:46.548] [INFO] cheese - inserting 1000 documents. first: Aira District, Kagoshima and last: File:NikolaiBukharin.jpg -[2018-02-13T08:30:46.651] [INFO] cheese - inserting 1000 documents. first: Shrek the First and last: Wikipedia:Today's articles for improvement/2013/44/3 -[2018-02-13T08:30:46.700] [INFO] cheese - inserting 1000 documents. first: Cheddar Valley and Yatton Railway and last: Regulatory feedback network -[2018-02-13T08:30:46.703] [INFO] cheese - batch complete in: 1.522 secs -[2018-02-13T08:30:46.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality/11 and last: Russo-Turkish relations -[2018-02-13T08:30:46.759] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:30:46.776] [INFO] cheese - inserting 1000 documents. first: File:David Gray- Live (US cover).jpg and last: British Ambassador to Jordan -[2018-02-13T08:30:46.847] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:30:46.938] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:30:46.944] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:30:47.036] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Sweden and last: Jonathan G. Callahan -[2018-02-13T08:30:47.109] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:30:47.273] [INFO] cheese - inserting 1000 documents. first: Dumlu, Ceyhan and last: Lajar Terkembang -[2018-02-13T08:30:47.308] [INFO] cheese - inserting 1000 documents. first: Belarusian Premier League and last: Birdshot -[2018-02-13T08:30:47.342] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:30:47.437] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:30:47.497] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2013/44/4 and last: DMCH (disambiguation) -[2018-02-13T08:30:47.600] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:47.616] [INFO] cheese - inserting 1000 documents. first: The Devil Wears Prada (disambiguation) and last: Coleophora bothnicella -[2018-02-13T08:30:47.623] [INFO] cheese - inserting 1000 documents. first: Dark lager and last: Pebble-dashed -[2018-02-13T08:30:47.625] [INFO] cheese - inserting 1000 documents. first: British Ambassadors to Jordan and last: The :20 Minute Workout -[2018-02-13T08:30:47.710] [INFO] cheese - inserting 1000 documents. first: 48492 Utewielen and last: Category:Educational institutions in Auvergne-Rhône-Alpes -[2018-02-13T08:30:47.731] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:30:47.732] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:47.843] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:30:47.878] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:30:48.016] [INFO] cheese - inserting 1000 documents. first: Akpınar, Yüreğir and last: Kolb (disambiguation) -[2018-02-13T08:30:48.125] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:48.154] [INFO] cheese - inserting 1000 documents. first: HaKochav Lod F.C. and last: Category:Protected areas in Uva Province -[2018-02-13T08:30:48.168] [INFO] cheese - inserting 1000 documents. first: 1918 in Mexico and last: Wikipedia:Teahouse/Questions/Archive 150 -[2018-02-13T08:30:48.202] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T08:30:48.228] [INFO] cheese - inserting 1000 documents. first: Mega Tokoyo and last: District School Board of Niagara -[2018-02-13T08:30:48.267] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:30:48.269] [INFO] cheese - inserting 1000 documents. first: Ram Jam and last: Chinese Wall -[2018-02-13T08:30:48.412] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:30:48.463] [INFO] cheese - inserting 1000 documents. first: 1204 CE and last: 216 CE -[2018-02-13T08:30:48.477] [INFO] cheese - batch complete in: 1.773 secs -[2018-02-13T08:30:48.539] [INFO] cheese - inserting 1000 documents. first: Happy Lion and last: List of minor planets/149901–150000 -[2018-02-13T08:30:48.558] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T08:30:48.616] [INFO] cheese - inserting 1000 documents. first: Eco-costs value ratio and last: Chomkarmorn -[2018-02-13T08:30:48.725] [INFO] cheese - inserting 1000 documents. first: Iván Rocha and last: A Girl in Every Port (1928 film) -[2018-02-13T08:30:48.729] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:30:48.760] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:30:48.812] [INFO] cheese - inserting 1000 documents. first: File:Cover of Illusion and Realtity 1937.jpg and last: William C. Anderson (disambiguation) -[2018-02-13T08:30:48.871] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:30:48.986] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:30:48.993] [INFO] cheese - inserting 1000 documents. first: 215 CE and last: Template:Festivals by year pre1000 cat/doc -[2018-02-13T08:30:49.041] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Teahouse/Questions/Archive 151 and last: Ross, Jeanne W. -[2018-02-13T08:30:49.101] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:30:49.177] [INFO] cheese - inserting 1000 documents. first: Saturday Night Live TV show sketches and last: Slask Swietochlowice -[2018-02-13T08:30:49.193] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:30:49.225] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:30:49.508] [INFO] cheese - inserting 1000 documents. first: Category:Justiciars of Ireland and last: Polarsun Motor -[2018-02-13T08:30:49.527] [INFO] cheese - inserting 1000 documents. first: Lewis Wesley Cutrer and last: Malyavat Mountains -[2018-02-13T08:30:49.621] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:30:49.645] [INFO] cheese - inserting 1000 documents. first: IT Performance Management and last: Kaşköy, Adıyaman -[2018-02-13T08:30:49.683] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:30:49.707] [INFO] cheese - inserting 1000 documents. first: Template:Serbia men's water polo squad 2012 Summer Olympics and last: Brosh (disambiguation) -[2018-02-13T08:30:49.751] [INFO] cheese - inserting 1000 documents. first: I Run This and last: St Lizier d'Ustou -[2018-02-13T08:30:49.799] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:30:49.904] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:30:49.957] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:30:50.079] [INFO] cheese - inserting 1000 documents. first: List of Polish Uprisings and last: Kostroma (river) -[2018-02-13T08:30:50.094] [INFO] cheese - inserting 1000 documents. first: Livestock in the Basque Country and last: Day One: Garry's Incident -[2018-02-13T08:30:50.186] [INFO] cheese - inserting 1000 documents. first: Beta Columbae and last: AFDX -[2018-02-13T08:30:50.190] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:30:50.234] [INFO] cheese - batch complete in: 1.757 secs -[2018-02-13T08:30:50.365] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:30:50.488] [INFO] cheese - inserting 1000 documents. first: Performance based building design and last: Wine in Australia -[2018-02-13T08:30:50.531] [INFO] cheese - inserting 1000 documents. first: Waterlow baronets and last: Cape Feare (The Simpsons) -[2018-02-13T08:30:50.618] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:30:50.682] [INFO] cheese - inserting 1000 documents. first: Kemerkaya, Adıyaman and last: John William McIntosh -[2018-02-13T08:30:50.684] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:30:50.769] [INFO] cheese - inserting 1000 documents. first: Category:Film people from Northern Ireland and last: Norton House Historic District -[2018-02-13T08:30:50.773] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:30:50.898] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:30:50.909] [INFO] cheese - inserting 1000 documents. first: PSEI and last: Flag of Krasnodar Krai -[2018-02-13T08:30:50.917] [INFO] cheese - inserting 1000 documents. first: Portal:Geography of Kenya/Categories and last: Veenaa-Murali -[2018-02-13T08:30:50.994] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:30:51.009] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:30:51.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Varel and last: Wikipedia:Articles for deletion/Gary Gilbert Daffins -[2018-02-13T08:30:51.312] [INFO] cheese - inserting 1000 documents. first: Www.ucc.ie and last: Kevin Mannoia -[2018-02-13T08:30:51.367] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:30:51.395] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:30:51.501] [INFO] cheese - inserting 1000 documents. first: Esmee Denters and last: Perry Township, Pickaway County, Ohio -[2018-02-13T08:30:51.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Athlete's foot and last: Jiri Rezac -[2018-02-13T08:30:51.528] [INFO] cheese - inserting 1000 documents. first: Esma'ilaqa Qal'ehsi and last: 1987 IAAF World Cross Country Championships – Senior women's race -[2018-02-13T08:30:51.531] [INFO] cheese - inserting 1000 documents. first: Mologa (town) and last: Earl of Iddesleigh -[2018-02-13T08:30:51.563] [INFO] cheese - inserting 1000 documents. first: Bednye Rodstvenniki and last: Brian Jamieson (director) -[2018-02-13T08:30:51.587] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:30:51.603] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:30:51.643] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:30:51.637] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:30:51.760] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:30:51.812] [INFO] cheese - inserting 1000 documents. first: Trams of Putilov plant and last: Appleton, Nathan, Residence -[2018-02-13T08:30:51.939] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:30:52.251] [INFO] cheese - inserting 1000 documents. first: File:Santicover.jpg and last: Cconio -[2018-02-13T08:30:52.302] [INFO] cheese - inserting 1000 documents. first: Asplenium parvum and last: Mayor of Pitcairn -[2018-02-13T08:30:52.350] [INFO] cheese - inserting 1000 documents. first: Edele Lynch and last: The Pursuit of Illusion -[2018-02-13T08:30:52.359] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:30:52.362] [INFO] cheese - inserting 1000 documents. first: Mihajlo Anđelović and last: Wikipedia:WikiProject Military history/Assessment/Melbourne Castle -[2018-02-13T08:30:52.421] [INFO] cheese - inserting 1000 documents. first: TNN Motor Sports Hardcore 4x4 and last: Peter Barrett (cricketer) -[2018-02-13T08:30:52.430] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:30:52.530] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:30:52.614] [INFO] cheese - inserting 1000 documents. first: 2011 Lexus of Las Vegas Open and last: Category:History of Vatican City -[2018-02-13T08:30:52.614] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:30:52.652] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:30:52.745] [INFO] cheese - inserting 1000 documents. first: Joe Odegbami and last: Fantasia (singer) -[2018-02-13T08:30:52.816] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:30:52.853] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:30:53.211] [INFO] cheese - inserting 1000 documents. first: Kyle Sweeney and last: Cex -[2018-02-13T08:30:53.244] [INFO] cheese - inserting 1000 documents. first: File:Jack Truelove (on loan) Brackley Town 2015-2016.jpg and last: Infra (video game) -[2018-02-13T08:30:53.329] [INFO] cheese - inserting 1000 documents. first: Alexander J. Kaleri and last: Generalized special orthogonal group -[2018-02-13T08:30:53.351] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:30:53.353] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:30:53.460] [INFO] cheese - inserting 1000 documents. first: Pory Island and last: Tupuzabad, Urmia -[2018-02-13T08:30:53.475] [INFO] cheese - inserting 1000 documents. first: File:KayKayAlbumCover.jpg and last: The Battle of Piccadilly -[2018-02-13T08:30:53.460] [INFO] cheese - batch complete in: 1.823 secs -[2018-02-13T08:30:53.483] [INFO] cheese - inserting 1000 documents. first: Tharu and last: Jez diamond -[2018-02-13T08:30:53.546] [INFO] cheese - inserting 1000 documents. first: Arachnoid cyst and last: Cotton Mouth (disambiguation) -[2018-02-13T08:30:53.563] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:30:53.602] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:30:53.594] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:30:53.654] [INFO] cheese - inserting 1000 documents. first: Sampson Mordan and last: Wikipedia:WikiProject Spam/LinkReports/cacclw.ahf.nmci.navy.mil -[2018-02-13T08:30:53.744] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:30:53.861] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T08:30:54.036] [INFO] cheese - inserting 1000 documents. first: Anton Holenkov and last: 李春城 -[2018-02-13T08:30:54.060] [INFO] cheese - inserting 1000 documents. first: Metea Valley High School and last: Richmond Upon Thames College -[2018-02-13T08:30:54.127] [INFO] cheese - inserting 1000 documents. first: Borhanlu and last: Severance, Idaho -[2018-02-13T08:30:54.157] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:30:54.192] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:54.261] [INFO] cheese - inserting 1000 documents. first: Cochran's test and last: File:Dickson multiplier with 2nd transistor.svg -[2018-02-13T08:30:54.296] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:54.383] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:30:54.434] [INFO] cheese - inserting 1000 documents. first: Andris Nauduzas and last: Wikipedia:Articles for deletion/Cast of Characters vs. The League of Extraordinary Gentlemen lawsuit -[2018-02-13T08:30:54.613] [INFO] cheese - inserting 1000 documents. first: John Mathews (lawyer) and last: Amicale des Originaires de l'A.E.F. -[2018-02-13T08:30:54.612] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:30:54.681] [INFO] cheese - inserting 1000 documents. first: Chancery Standard and last: Sam Hoger -[2018-02-13T08:30:54.759] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:30:54.857] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:30:54.886] [INFO] cheese - inserting 1000 documents. first: 金道铭 and last: Đuričić (disambiguation) -[2018-02-13T08:30:54.901] [INFO] cheese - inserting 1000 documents. first: Little Red Lighthouse and last: LPR -[2018-02-13T08:30:54.988] [INFO] cheese - inserting 1000 documents. first: Aden International Airport and last: Theory-theory -[2018-02-13T08:30:55.079] [INFO] cheese - inserting 1000 documents. first: Chaldoran-e Jonubi and last: Best play -[2018-02-13T08:30:55.103] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:30:55.112] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:30:55.143] [INFO] cheese - batch complete in: 1.683 secs -[2018-02-13T08:30:55.169] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 1231 and last: Shake it up -[2018-02-13T08:30:55.254] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:30:55.349] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:30:55.525] [INFO] cheese - inserting 1000 documents. first: Red McGregor and last: Texas Spur 77 -[2018-02-13T08:30:55.530] [INFO] cheese - inserting 1000 documents. first: Prva Petoletka and last: File:Ottawa jail.jpg -[2018-02-13T08:30:55.587] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:30:55.600] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:30:55.761] [INFO] cheese - inserting 1000 documents. first: File:LÉtrangeDéfaite.gif and last: Template:Get URL from WikiData/doc -[2018-02-13T08:30:55.814] [INFO] cheese - inserting 1000 documents. first: Steve Brooks (singer) and last: Magdalene Boat Club -[2018-02-13T08:30:55.854] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:55.892] [INFO] cheese - inserting 1000 documents. first: Erik Tammer and last: Category:Maine Supreme Judicial Court -[2018-02-13T08:30:55.899] [INFO] cheese - inserting 1000 documents. first: Heroes (season 4) and last: Susan Earner -[2018-02-13T08:30:55.949] [INFO] cheese - inserting 1000 documents. first: Pericopis modesta and last: Template:Stony Brook Seawolves men's basketball -[2018-02-13T08:30:55.969] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:30:56.038] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:56.060] [INFO] cheese - inserting 1000 documents. first: Hansenocaris and last: Regional School Unit 57 -[2018-02-13T08:30:56.081] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:56.093] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:30:56.180] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:30:56.226] [INFO] cheese - inserting 1000 documents. first: File:KKBS logo.jpg and last: Wikipedia:Articles for deletion/Boeing 797 (2nd nomination) -[2018-02-13T08:30:56.278] [INFO] cheese - inserting 1000 documents. first: QuikAir and last: CD Radio -[2018-02-13T08:30:56.351] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:56.497] [INFO] cheese - inserting 1000 documents. first: Rollins, Jack and last: Schottky junction solar cell -[2018-02-13T08:30:56.485] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T08:30:56.611] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:30:56.680] [INFO] cheese - inserting 1000 documents. first: Benjamin Kipkoech Limo and last: Sheykh Mahalleh, Amol -[2018-02-13T08:30:56.742] [INFO] cheese - inserting 1000 documents. first: The 45 king and last: Yordim -[2018-02-13T08:30:56.753] [INFO] cheese - inserting 1000 documents. first: Category:University of Guyana and last: Frank Fertitta III -[2018-02-13T08:30:56.768] [INFO] cheese - inserting 1000 documents. first: Bobby Herrera and last: Category:Education in West Baton Rouge Parish, Louisiana -[2018-02-13T08:30:56.772] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:30:56.821] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:30:56.877] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:30:56.919] [INFO] cheese - inserting 1000 documents. first: Category:Wisconsin Badgers women's ice hockey players and last: Matki (earthen pot) -[2018-02-13T08:30:56.926] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:30:57.044] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:30:57.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Hilary of Chichester/archive1 and last: Tuó -[2018-02-13T08:30:57.236] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:30:57.331] [INFO] cheese - inserting 1000 documents. first: 31487 Parthchopra and last: Draft:Dr. Robert M. Shuter -[2018-02-13T08:30:57.399] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:57.419] [INFO] cheese - inserting 1000 documents. first: Tiran, Mazandaran and last: Dutch Americans in Michigan -[2018-02-13T08:30:57.487] [INFO] cheese - inserting 1000 documents. first: Marius Lăcătuş and last: United States House of Representatives elections in Tennessee, 1928 -[2018-02-13T08:30:57.500] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:30:57.525] [INFO] cheese - inserting 1000 documents. first: Moon Six and last: Duhem–Quine thesis -[2018-02-13T08:30:57.531] [INFO] cheese - inserting 1000 documents. first: Ding Dong mine and last: City of Sherbrooke -[2018-02-13T08:30:57.585] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:30:57.606] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:30:57.735] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:30:57.856] [INFO] cheese - inserting 1000 documents. first: 1962–63 Austrian football championship and last: Nag Hammâdi -[2018-02-13T08:30:57.867] [INFO] cheese - inserting 1000 documents. first: Élton José Xavier Gomes and last: William Irvine (Scotland) -[2018-02-13T08:30:57.869] [INFO] cheese - inserting 1000 documents. first: USWA and last: A Small Killing -[2018-02-13T08:30:57.903] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:30:57.983] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:30:58.013] [INFO] cheese - batch complete in: 1.528 secs -[2018-02-13T08:30:58.075] [INFO] cheese - inserting 1000 documents. first: Dr. Robert M. Shuter and last: Regina Russell -[2018-02-13T08:30:58.240] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:58.290] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Tennessee, 1934 and last: Ercole Calvi -[2018-02-13T08:30:58.322] [INFO] cheese - inserting 1000 documents. first: File:Signal it left.gif and last: Ralph Wycherley -[2018-02-13T08:30:58.388] [INFO] cheese - inserting 1000 documents. first: Golden Eye: Rogue Agent and last: UEC European Champion jersey -[2018-02-13T08:30:58.482] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:30:58.499] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:30:58.613] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:30:58.804] [INFO] cheese - inserting 1000 documents. first: Tasar and last: Category:Municipalities of Compostela Valley -[2018-02-13T08:30:58.853] [INFO] cheese - inserting 1000 documents. first: Gaja(2008 film) and last: Obruchevichthys -[2018-02-13T08:30:58.895] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:30:58.925] [INFO] cheese - inserting 1000 documents. first: Smoke Jaguar and last: Category:Politics of Chhattisgarh -[2018-02-13T08:30:58.973] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:30:59.111] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:30:59.174] [INFO] cheese - inserting 1000 documents. first: Foolproof plant and last: Category:1975 establishments in Sri Lanka -[2018-02-13T08:30:59.311] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:30:59.404] [INFO] cheese - inserting 1000 documents. first: Now Deh-e Harazpey and last: Category:Chinese women philosophers -[2018-02-13T08:30:59.465] [INFO] cheese - inserting 1000 documents. first: Minuscule 511 and last: Charlie Palmer (chef) -[2018-02-13T08:30:59.488] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:30:59.537] [INFO] cheese - inserting 1000 documents. first: Marcelino Vargas and last: E. M. B. Ingram -[2018-02-13T08:30:59.615] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:30:59.667] [INFO] cheese - inserting 1000 documents. first: Andre Leysen and last: Frank Schatzing -[2018-02-13T08:30:59.687] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:30:59.736] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:30:59.861] [INFO] cheese - inserting 1000 documents. first: 13775 Thébault and last: Category:Tamil Nadu state legislation -[2018-02-13T08:30:59.878] [INFO] cheese - inserting 1000 documents. first: Alfriston and last: Carl Swartz -[2018-02-13T08:30:59.942] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:31:00.023] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:31:00.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/beatnjuice.cz and last: Robert Wiblin -[2018-02-13T08:31:00.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion requests and last: White separatism -[2018-02-13T08:31:00.116] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Rankin County, Mississippi and last: Anupama chandrasekhar -[2018-02-13T08:31:00.196] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:31:00.228] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:31:00.264] [INFO] cheese - inserting 1000 documents. first: Celtic Woman: Songs From The Heart and last: Dyckia saxatilis -[2018-02-13T08:31:00.281] [INFO] cheese - batch complete in: 2.268 secs -[2018-02-13T08:31:00.379] [INFO] cheese - inserting 1000 documents. first: Frank Worndl and last: Category:New Zealand field hockey biography stubs -[2018-02-13T08:31:00.431] [INFO] cheese - inserting 1000 documents. first: Gökçe, Kahta and last: File:It Ain't Me Babe Johnny Cash June Carter.ogg -[2018-02-13T08:31:00.437] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:31:00.468] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:31:00.617] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:31:00.847] [INFO] cheese - inserting 1000 documents. first: John II, Count of Blois and last: Seccession -[2018-02-13T08:31:00.872] [INFO] cheese - inserting 1000 documents. first: 2916 Voronveliya and last: Template:Bulgaria in World War I -[2018-02-13T08:31:00.973] [INFO] cheese - inserting 1000 documents. first: Alexander Harper (priest) and last: Green Man Fest -[2018-02-13T08:31:00.993] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:31:00.995] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:31:01.103] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ciro Ayala and last: File:Pronto Airways Logo.gif -[2018-02-13T08:31:01.163] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:31:01.222] [INFO] cheese - inserting 1000 documents. first: Rust-eze and last: Wikipedia:Worldwide view -[2018-02-13T08:31:01.276] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:31:01.349] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:31:01.431] [INFO] cheese - inserting 1000 documents. first: Nadeem (actor) and last: Wikipedia:WikiProject Spam/LinkReports/astrovashikaran.com -[2018-02-13T08:31:01.585] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:31:01.690] [INFO] cheese - inserting 1000 documents. first: Captured Live at Carnegie Hall and last: Longford, Gloucester -[2018-02-13T08:31:01.819] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:31:01.918] [INFO] cheese - inserting 1000 documents. first: WCRS and last: Talbut -[2018-02-13T08:31:01.953] [INFO] cheese - inserting 1000 documents. first: Gunther Bechem and last: Wikipedia:Reference desk/Archives/Computing/2007 January 29 -[2018-02-13T08:31:02.050] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:31:02.138] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:31:02.146] [INFO] cheese - inserting 1000 documents. first: Lorton (VA) and last: The Crusades (film) -[2018-02-13T08:31:02.156] [INFO] cheese - inserting 1000 documents. first: Over the Rainbow and last: Wikipedia:Historical archive/Imported pictures/Pictures from southwarkphotolibrary.co.uk details -[2018-02-13T08:31:02.185] [INFO] cheese - inserting 1000 documents. first: Mora (fish) and last: Atherton Church House -[2018-02-13T08:31:02.295] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:31:02.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/astrovashikaran.com and last: Category:Austro-Hungarian fighter aircraft 1910–1919 -[2018-02-13T08:31:02.346] [INFO] cheese - inserting 1000 documents. first: Speedway Casino and last: HeSung -[2018-02-13T08:31:02.361] [INFO] cheese - inserting 1000 documents. first: Torodora characteris and last: 30061 Vishnushankar -[2018-02-13T08:31:02.382] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:31:02.451] [INFO] cheese - batch complete in: 2.169 secs -[2018-02-13T08:31:02.539] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:31:02.616] [INFO] cheese - batch complete in: 1.34 secs -[2018-02-13T08:31:02.697] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:31:02.849] [INFO] cheese - inserting 1000 documents. first: Geometric isomerase and last: Category:Operating system criticisms -[2018-02-13T08:31:03.010] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:31:03.135] [INFO] cheese - inserting 1000 documents. first: Johannes Jonsson and last: University of Pittsburgh Graduate School of Public & International Affairs (GSPIA) -[2018-02-13T08:31:03.222] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:31:03.272] [INFO] cheese - inserting 1000 documents. first: Program in Placebo Studies and last: Ciaran Gribbin -[2018-02-13T08:31:03.328] [INFO] cheese - inserting 1000 documents. first: Tuoba Liwei and last: 1784 in art -[2018-02-13T08:31:03.353] [INFO] cheese - inserting 1000 documents. first: Sipenit and last: Category:Start-Class Karachi articles -[2018-02-13T08:31:03.409] [INFO] cheese - inserting 1000 documents. first: Microsoft Corp. v Commission of the European Communities and last: Farmingdale, South Dakota -[2018-02-13T08:31:03.486] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:31:03.502] [INFO] cheese - batch complete in: 1.206 secs -[2018-02-13T08:31:03.508] [INFO] cheese - inserting 1000 documents. first: File:Jonny Logan.jpg and last: Thomas Elliot (disambiguation) -[2018-02-13T08:31:03.510] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:31:03.632] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:31:03.686] [INFO] cheese - inserting 1000 documents. first: Āsoār and last: Template:POTD protected/2008-05-20 -[2018-02-13T08:31:03.669] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:31:03.847] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:31:04.076] [INFO] cheese - inserting 1000 documents. first: Template:Kalmar County and last: Hilltop Youth -[2018-02-13T08:31:04.126] [INFO] cheese - inserting 1000 documents. first: Atatürk Kültür Merkezi and last: Template:Dutch municipality Coevorden -[2018-02-13T08:31:04.197] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:31:04.207] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Karachi articles and last: Wikipedia:Articles for deletion/If You Feel My Love (album) -[2018-02-13T08:31:04.209] [INFO] cheese - batch complete in: 1.758 secs -[2018-02-13T08:31:04.227] [INFO] cheese - inserting 1000 documents. first: Sevel HaYerushah and last: Christiana Louizu -[2018-02-13T08:31:04.239] [INFO] cheese - inserting 1000 documents. first: Poincaré–Einstein synchronization and last: Category:United States House of Representatives elections, 1908 -[2018-02-13T08:31:04.284] [INFO] cheese - inserting 1000 documents. first: Sunday Mail and last: Josiah Quincy (disambiguation) -[2018-02-13T08:31:04.304] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:31:04.302] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:31:04.318] [INFO] cheese - inserting 1000 documents. first: United States federal government shutdowns of 1995–96 and last: A Coney Island Princess -[2018-02-13T08:31:04.346] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:31:04.420] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:31:04.495] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:31:04.565] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2008-05-21 and last: Bowling Green, KY Metropolitan Area -[2018-02-13T08:31:04.719] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:31:04.897] [INFO] cheese - inserting 1000 documents. first: Bediagal and last: Mg road bangalore -[2018-02-13T08:31:04.927] [INFO] cheese - inserting 1000 documents. first: File:GPL front gate added by Saurabhsulabh Singh.jpeg and last: List of television programs: E -[2018-02-13T08:31:04.997] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:31:05.090] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:31:05.230] [INFO] cheese - inserting 1000 documents. first: Manu Guix and last: Billy Best -[2018-02-13T08:31:05.269] [INFO] cheese - inserting 1000 documents. first: Springfield High School (Akron, Ohio) and last: United States House of Representatives elections in Minnesota, 1940 -[2018-02-13T08:31:05.315] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:31:05.379] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Montgomery County, Ohio and last: Stephen Jackson (canoer) -[2018-02-13T08:31:05.384] [INFO] cheese - inserting 1000 documents. first: Bowling Green, KY metropolitan area and last: Katie Sierra -[2018-02-13T08:31:05.415] [INFO] cheese - inserting 1000 documents. first: Chocolate Starfish And The Hot Dog Flavored Water and last: Category:Danish archers -[2018-02-13T08:31:05.416] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:31:05.498] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:31:05.494] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:31:05.513] [INFO] cheese - inserting 1000 documents. first: Belgorod and last: Empetrum -[2018-02-13T08:31:05.561] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:31:05.722] [INFO] cheese - batch complete in: 1.512 secs -[2018-02-13T08:31:05.731] [INFO] cheese - inserting 1000 documents. first: Ali Nassirian and last: Teleki Pál -[2018-02-13T08:31:05.747] [INFO] cheese - inserting 1000 documents. first: Lymphatic systems and last: Papilla duodeni -[2018-02-13T08:31:05.854] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:31:05.873] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:31:06.032] [INFO] cheese - inserting 1000 documents. first: Transformers: The War for Cybertron and last: Template:Humanist Party (Chile)/meta/color -[2018-02-13T08:31:06.066] [INFO] cheese - inserting 1000 documents. first: Template:Video game awards and last: Lamarun -[2018-02-13T08:31:06.087] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:31:06.142] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:31:06.171] [INFO] cheese - inserting 1000 documents. first: Sheep Pool and last: 5031 Švejcar -[2018-02-13T08:31:06.244] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:31:06.403] [INFO] cheese - inserting 1000 documents. first: Jonas Svensson (bandy) and last: Cesar Chavez State Park -[2018-02-13T08:31:06.449] [INFO] cheese - inserting 1000 documents. first: Sergey Miroshnichenko (ice hockey) and last: Trudl Dubsky -[2018-02-13T08:31:06.459] [INFO] cheese - inserting 1000 documents. first: Category:Danish table tennis players and last: File:CBDTSVsth.jpg -[2018-02-13T08:31:06.499] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:31:06.612] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:31:06.615] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Minnesota, 1942 and last: Template:Latter Day Saint biography/Spencer W. Kimball -[2018-02-13T08:31:06.656] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:31:06.697] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:31:06.858] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Image Tag Team and last: Indiana University – Purdue University Indianapolis -[2018-02-13T08:31:06.869] [INFO] cheese - inserting 1000 documents. first: Template:Independent Democratic Union/meta/color and last: Serrolândia -[2018-02-13T08:31:06.916] [INFO] cheese - inserting 1000 documents. first: File:Chiquititas-2013-logo-2013.jpg and last: Pija Kola -[2018-02-13T08:31:06.950] [INFO] cheese - inserting 1000 documents. first: Karl Max, Fürst von Lichnowsky and last: Rieko Matsuura -[2018-02-13T08:31:06.962] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:31:06.981] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:31:07.057] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:31:07.134] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:31:07.138] [INFO] cheese - inserting 1000 documents. first: MTech and last: 1734 in poetry -[2018-02-13T08:31:07.252] [INFO] cheese - inserting 1000 documents. first: RXNO and last: Sara Annie Burstall -[2018-02-13T08:31:07.267] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:31:07.368] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:31:07.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/HMS Duke of Edinburgh and last: Stittsville station -[2018-02-13T08:31:07.714] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:31:07.828] [INFO] cheese - inserting 1000 documents. first: Qadi Kola, Babol and last: Eilema erythropleura -[2018-02-13T08:31:07.857] [INFO] cheese - inserting 1000 documents. first: Cadaley and last: (100044) 1991 TX -[2018-02-13T08:31:08.016] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:31:08.061] [INFO] cheese - inserting 1000 documents. first: C. harold smith and last: File:The new lot 160.jpg -[2018-02-13T08:31:08.127] [INFO] cheese - batch complete in: 1.43 secs -[2018-02-13T08:31:08.234] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:31:08.480] [INFO] cheese - inserting 1000 documents. first: Várzea do Poço and last: Sensitisers -[2018-02-13T08:31:08.495] [INFO] cheese - inserting 1000 documents. first: Windham High School (Ohio) and last: File:Citycreek.jpg -[2018-02-13T08:31:08.553] [INFO] cheese - batch complete in: 1.591 secs -[2018-02-13T08:31:08.593] [INFO] cheese - inserting 1000 documents. first: Saproscincus galli and last: PE teacher -[2018-02-13T08:31:08.674] [INFO] cheese - inserting 1000 documents. first: Casa Cosmana Navarra and last: The Journey Home (book) -[2018-02-13T08:31:08.717] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T08:31:08.741] [INFO] cheese - inserting 1000 documents. first: Indiana University Purdue University at Indianapolis and last: Thousand islands dressing -[2018-02-13T08:31:08.799] [INFO] cheese - batch complete in: 1.431 secs -[2018-02-13T08:31:08.823] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:31:09.031] [INFO] cheese - batch complete in: 2.05 secs -[2018-02-13T08:31:09.199] [INFO] cheese - inserting 1000 documents. first: File:Our Gracie.jpeg and last: KDE Contour -[2018-02-13T08:31:09.341] [INFO] cheese - inserting 1000 documents. first: Donald James Randall and last: EV Lacertae -[2018-02-13T08:31:09.359] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T08:31:09.413] [INFO] cheese - inserting 1000 documents. first: Neko Case and her Boyfriends and last: Hapag -[2018-02-13T08:31:09.476] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:31:09.726] [INFO] cheese - inserting 1000 documents. first: Giorgi Kilasonia and last: Wikipedia:Articles for deletion/Virtual Dispatch -[2018-02-13T08:31:09.763] [INFO] cheese - inserting 1000 documents. first: Candy Lachance and last: Jeremy Erhart -[2018-02-13T08:31:09.780] [INFO] cheese - inserting 1000 documents. first: Aliénor D'aquitaine and last: Al Kaleh -[2018-02-13T08:31:09.805] [INFO] cheese - batch complete in: 2.091 secs -[2018-02-13T08:31:09.831] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:31:09.903] [INFO] cheese - inserting 1000 documents. first: Category:2 star officers of the Bundeswehr and last: Maecky Ngombo -[2018-02-13T08:31:09.966] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:31:09.998] [INFO] cheese - batch complete in: 1.445 secs -[2018-02-13T08:31:10.162] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:31:10.385] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Self-portrait with a friend and last: Trial of Doctor Conrad Murray -[2018-02-13T08:31:10.479] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:31:10.558] [INFO] cheese - inserting 1000 documents. first: Raymond Murray (speed skater) and last: Hypatius of Gangra -[2018-02-13T08:31:10.655] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:31:10.807] [INFO] cheese - inserting 1000 documents. first: Category:Former communes of Haut-Rhin and last: File:The Death of Bessie Smith by Rose Piper, 1947.jpg -[2018-02-13T08:31:10.850] [INFO] cheese - inserting 1000 documents. first: HAPAG and last: GE Dash 8-32BWH -[2018-02-13T08:31:10.967] [INFO] cheese - inserting 1000 documents. first: Manchester Township, Boone County, Illinois and last: Photo 51 -[2018-02-13T08:31:10.989] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:31:11.012] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Rwanda and last: Water Management Areas -[2018-02-13T08:31:11.051] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:31:11.126] [INFO] cheese - inserting 1000 documents. first: Dizeh Posht and last: Faac -[2018-02-13T08:31:11.130] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:31:11.144] [INFO] cheese - batch complete in: 1.313 secs -[2018-02-13T08:31:11.248] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:31:11.301] [INFO] cheese - inserting 1000 documents. first: Anton Ens and last: File:LiverpoolNSWmap.jpg -[2018-02-13T08:31:11.363] [INFO] cheese - inserting 1000 documents. first: Random oracle model and last: Battle of Savo Island -[2018-02-13T08:31:11.396] [INFO] cheese - inserting 1000 documents. first: Kweku Adoboli and last: File:Cyborg JLA.jpg -[2018-02-13T08:31:11.465] [INFO] cheese - inserting 1000 documents. first: Association des Oulémas Musulmans Algériens and last: Flattened Meadow-grass -[2018-02-13T08:31:11.472] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:31:11.475] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:31:11.580] [INFO] cheese - batch complete in: 2.549 secs -[2018-02-13T08:31:11.599] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:31:11.775] [INFO] cheese - inserting 1000 documents. first: Plasq and last: Primera Divison Argentina -[2018-02-13T08:31:11.777] [INFO] cheese - inserting 1000 documents. first: 1988 Singapore Open – Doubles (women's tennis) and last: Wikipedia:Articles for deletion/Netty Leek -[2018-02-13T08:31:11.849] [INFO] cheese - inserting 1000 documents. first: Dirty Pop Fantasy and last: Category:1981–82 Sun Belt Conference men's basketball season -[2018-02-13T08:31:11.866] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:31:11.879] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:31:11.949] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:31:11.956] [INFO] cheese - inserting 1000 documents. first: Moelln (Schleswig-Holstein) and last: CDGVAL -[2018-02-13T08:31:11.958] [INFO] cheese - inserting 1000 documents. first: Gomponsom Department and last: Choshuenco -[2018-02-13T08:31:12.024] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Panola County, Mississippi and last: 1971 VFA Grand Final -[2018-02-13T08:31:12.024] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:31:12.069] [INFO] cheese - inserting 1000 documents. first: Category:400s BC by continent and last: File:Ohel - interior.jpg -[2018-02-13T08:31:12.073] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:31:12.118] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:31:12.137] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:31:12.315] [INFO] cheese - inserting 1000 documents. first: David Aldus and last: Churchill UK -[2018-02-13T08:31:12.352] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:31:12.358] [INFO] cheese - inserting 1000 documents. first: Category:1982–83 Sun Belt Conference men's basketball season and last: Photobombed -[2018-02-13T08:31:12.380] [INFO] cheese - inserting 1000 documents. first: Twin Valley South High School and last: File:Las americas sunset.JPG -[2018-02-13T08:31:12.419] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:31:12.454] [INFO] cheese - inserting 1000 documents. first: Template:Annotated image/doc and last: Utah State Route 69 (pre-1977) -[2018-02-13T08:31:12.454] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:31:12.516] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:31:12.537] [INFO] cheese - inserting 1000 documents. first: Category:Embry–Riddle Aeronautical University and last: Mirte Kraaijkamp -[2018-02-13T08:31:12.558] [INFO] cheese - inserting 1000 documents. first: USS Conner (DD-582) and last: Wikipedia:Articles for deletion/Eurotophobia -[2018-02-13T08:31:12.589] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:31:12.619] [INFO] cheese - inserting 1000 documents. first: O. Y. Schmidt and last: Vespiri Siciliani -[2018-02-13T08:31:12.627] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:31:12.673] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:31:12.763] [INFO] cheese - inserting 1000 documents. first: Lockheed TR-1 and last: Orange box -[2018-02-13T08:31:12.775] [INFO] cheese - inserting 1000 documents. first: Template:S-line/VGF left/U3 and last: Pu'apu'a -[2018-02-13T08:31:12.826] [INFO] cheese - inserting 1000 documents. first: Photobomber and last: Category:Cities and towns in Ramabai Nagar district -[2018-02-13T08:31:12.868] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:31:12.873] [INFO] cheese - batch complete in: 1.292 secs -[2018-02-13T08:31:12.914] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:31:12.925] [INFO] cheese - inserting 1000 documents. first: Utah State Route 69 (1977) and last: Jarrod O'Donnell -[2018-02-13T08:31:12.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fashion.about.com and last: King, Andrew -[2018-02-13T08:31:13.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Yaacov Deyo and last: Maouloud Baby v. State -[2018-02-13T08:31:13.050] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:31:13.056] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:31:13.206] [INFO] cheese - inserting 1000 documents. first: Bela dama Devinska and last: 1999 World Indoor Championships in Athletics – Men's 60 metres -[2018-02-13T08:31:13.232] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:31:13.247] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:31:13.383] [INFO] cheese - inserting 1000 documents. first: Mayor of Munich and last: Gunnamatta Bay -[2018-02-13T08:31:13.437] [INFO] cheese - inserting 1000 documents. first: 1980 TANFL season and last: Picoazà -[2018-02-13T08:31:13.460] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:31:13.483] [INFO] cheese - inserting 1000 documents. first: King, Ben and last: Doppels -[2018-02-13T08:31:13.494] [INFO] cheese - inserting 1000 documents. first: LP (Insomniac Folklore album) and last: Accelerando (novel) -[2018-02-13T08:31:13.535] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:31:13.607] [INFO] cheese - inserting 1000 documents. first: File:Dr. Who Cushing.jpg and last: Wikipedia:Editor review/Bob the Wikipedian -[2018-02-13T08:31:13.617] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:31:13.637] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:31:13.695] [INFO] cheese - inserting 1000 documents. first: 1999 IAAF World Indoor Championships in Athletics – Men's 60 metres and last: File:Logo Twibbon.png -[2018-02-13T08:31:13.738] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:31:13.815] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:31:14.066] [INFO] cheese - inserting 1000 documents. first: Group 12 element and last: Albert Woolson -[2018-02-13T08:31:14.142] [INFO] cheese - inserting 1000 documents. first: Angela Salvagno and last: Category:Phi Kappa Tau -[2018-02-13T08:31:14.179] [INFO] cheese - inserting 1000 documents. first: Sir Bors de Ganis and last: Category:Lakes of Pennsylvania -[2018-02-13T08:31:14.185] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Rahul Thakkar and last: File:Gonzo the Great.jpg -[2018-02-13T08:31:14.199] [INFO] cheese - inserting 1000 documents. first: Scenic Cruiser and last: Flammulaster erinaceellus -[2018-02-13T08:31:14.218] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:31:14.251] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:31:14.317] [INFO] cheese - inserting 1000 documents. first: × Ortholarium 'Hades' and last: Muscat rouge à petits grains -[2018-02-13T08:31:14.325] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:31:14.374] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:31:14.386] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:31:14.475] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Montreal and last: File:Maj Gen K Zorawar Singh.jpg -[2018-02-13T08:31:14.490] [INFO] cheese - inserting 1000 documents. first: Luqiao Airport and last: Antrostomus arizonae -[2018-02-13T08:31:14.492] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:31:14.563] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:31:14.581] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:31:14.721] [INFO] cheese - inserting 1000 documents. first: School Mates and last: Wikipedia:Alternative term -[2018-02-13T08:31:14.764] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:31:14.899] [INFO] cheese - inserting 1000 documents. first: Half-Wit and last: Mobilome -[2018-02-13T08:31:14.971] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:31:14.996] [INFO] cheese - inserting 1000 documents. first: Diabetic angiopathy and last: Wikipedia:Articles for deletion/Revelation 4:11 -[2018-02-13T08:31:15.029] [INFO] cheese - inserting 1000 documents. first: International Association of Financial Executives Institutes and last: KOI-94 -[2018-02-13T08:31:15.071] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:31:15.087] [INFO] cheese - inserting 1000 documents. first: Coleophora ochripennella: and last: Ayloffe (surname) -[2018-02-13T08:31:15.110] [INFO] cheese - inserting 1000 documents. first: Guy Giorno and last: Boeing 707-300 -[2018-02-13T08:31:15.122] [INFO] cheese - inserting 1000 documents. first: Larisa Krivtsova and last: Price, Walter -[2018-02-13T08:31:15.124] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:31:15.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DenyHosts and last: Milhã -[2018-02-13T08:31:15.176] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:31:15.261] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:31:15.299] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:31:15.377] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:31:15.616] [INFO] cheese - inserting 1000 documents. first: Skew form and last: Michaël Isabey -[2018-02-13T08:31:15.632] [INFO] cheese - inserting 1000 documents. first: Chitterlings and last: Platanista Gangetica -[2018-02-13T08:31:15.703] [INFO] cheese - inserting 1000 documents. first: Rea, Walter and last: Dehar Hydroelectric Project -[2018-02-13T08:31:15.730] [INFO] cheese - inserting 1000 documents. first: Taiwan Sugar Museum (Kaohsiung) and last: Crush (Haven) -[2018-02-13T08:31:15.744] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:31:15.763] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:31:15.805] [INFO] cheese - batch complete in: 1.587 secs -[2018-02-13T08:31:15.861] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:31:15.904] [INFO] cheese - inserting 1000 documents. first: Gaston casas and last: Qasr el-sir -[2018-02-13T08:31:15.928] [INFO] cheese - inserting 1000 documents. first: Valters and Kazha and last: R.D.Winters -[2018-02-13T08:31:15.993] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:31:15.999] [INFO] cheese - inserting 1000 documents. first: Ventricular septum and last: Southern Pacific class GS-4 -[2018-02-13T08:31:16.089] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:31:16.101] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:31:16.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Industrial design/Header and last: Aichi S1A -[2018-02-13T08:31:16.331] [INFO] cheese - inserting 1000 documents. first: File:Live223.jpg and last: Vitebskaya -[2018-02-13T08:31:16.333] [INFO] cheese - inserting 1000 documents. first: Yanping Yuan and last: Thomas Busby (disambiguation) -[2018-02-13T08:31:16.340] [INFO] cheese - inserting 1000 documents. first: Last Shot (Gregg Hurwitz novel) and last: Chatelain, Jeremy -[2018-02-13T08:31:16.415] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:31:16.523] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:31:16.603] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:31:16.610] [INFO] cheese - inserting 1000 documents. first: Tva and last: Category:Establishments in Turkmenistan by decade -[2018-02-13T08:31:16.629] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:31:16.657] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Joinville and last: Wikipedia:WikiProject Cricket/Peer review/The Ashes -[2018-02-13T08:31:16.765] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:31:16.798] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:31:16.996] [INFO] cheese - inserting 1000 documents. first: Technion University and last: Bendezium -[2018-02-13T08:31:17.101] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:31:17.114] [INFO] cheese - inserting 1000 documents. first: Jack Nelson (disambiguation) and last: Ben L. Parker -[2018-02-13T08:31:17.187] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:31:17.196] [INFO] cheese - inserting 1000 documents. first: Enrique Amorim and last: Wikipedia:Selected anniversaries/July 3 -[2018-02-13T08:31:17.206] [INFO] cheese - inserting 1000 documents. first: Hayes, Jeremy and last: Bartlett, Jason -[2018-02-13T08:31:17.230] [INFO] cheese - inserting 1000 documents. first: Électre (opera) and last: Argyros family -[2018-02-13T08:31:17.280] [INFO] cheese - inserting 1000 documents. first: Portal:Napoleonic Wars/GA/85 and last: James & Oliver Phelps -[2018-02-13T08:31:17.326] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:31:17.331] [INFO] cheese - batch complete in: 1.525 secs -[2018-02-13T08:31:17.359] [INFO] cheese - inserting 1000 documents. first: Wohlk brothers and last: Category:People from Willenhall -[2018-02-13T08:31:17.363] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:31:17.405] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:31:17.423] [INFO] cheese - inserting 1000 documents. first: BeRTOS and last: Agias -[2018-02-13T08:31:17.486] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:31:17.552] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:31:17.787] [INFO] cheese - inserting 1000 documents. first: Donald M. Davis and last: File:Feelingb-grunundblaubig.jpg -[2018-02-13T08:31:17.844] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-11-20 and last: List of Polish artists nominated for MTV Europe Music Awards -[2018-02-13T08:31:17.848] [INFO] cheese - inserting 1000 documents. first: Blair, Jason and last: Barrowammo -[2018-02-13T08:31:17.849] [INFO] cheese - inserting 1000 documents. first: Supergate and last: Sakaki (disambiguation) -[2018-02-13T08:31:17.850] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:31:17.944] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:31:17.953] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:31:17.999] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:31:18.166] [INFO] cheese - inserting 1000 documents. first: File:Cockroaches.ogg and last: File:Malolos Santor.jpg -[2018-02-13T08:31:18.285] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:31:18.396] [INFO] cheese - inserting 1000 documents. first: Janet Perry and last: Mohanpur Upazila -[2018-02-13T08:31:18.519] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:31:18.548] [INFO] cheese - inserting 1000 documents. first: Category:1830s in the Papal States and last: Template:Schools managed by GEMS Education -[2018-02-13T08:31:18.595] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:31:18.618] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Selected anniversaries/July 4 and last: Italo-Ethiopian War -[2018-02-13T08:31:18.642] [INFO] cheese - inserting 1000 documents. first: Joshua Silva and last: Gimeracil/tegafur/oteracil -[2018-02-13T08:31:18.695] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:31:18.706] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:31:18.762] [INFO] cheese - inserting 1000 documents. first: Sympetrum internum and last: Itupiranga -[2018-02-13T08:31:18.878] [INFO] cheese - inserting 1000 documents. first: Frances Margaret Taylor and last: Cedric Wallace -[2018-02-13T08:31:18.899] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:31:18.940] [INFO] cheese - inserting 1000 documents. first: Marie Collier and last: Iris Taylor -[2018-02-13T08:31:18.996] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:31:19.065] [INFO] cheese - inserting 1000 documents. first: Laal Rang and last: Category:Years of the 13th century in the Republic of Florence -[2018-02-13T08:31:19.098] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:31:19.149] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:31:19.326] [INFO] cheese - inserting 1000 documents. first: Gimeracil/oteracil/tegafur and last: Ayasli Ismail Pasa -[2018-02-13T08:31:19.333] [INFO] cheese - inserting 1000 documents. first: File:Maglev Propulsion.png and last: Chill (casting) -[2018-02-13T08:31:19.438] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:31:19.457] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:31:19.579] [INFO] cheese - inserting 1000 documents. first: Jacundá and last: Wikipedia:WikiProject Spam/LinkReports/navadurga.wordpress.com -[2018-02-13T08:31:19.679] [INFO] cheese - inserting 1000 documents. first: Cyberjustice and last: 1989–90 Connecticut Huskies men's basketball team -[2018-02-13T08:31:19.664] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:31:19.757] [INFO] cheese - inserting 1000 documents. first: Conn smythe trophy and last: File:Ruda-Stemma.jpg -[2018-02-13T08:31:19.806] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:31:19.942] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:31:19.994] [INFO] cheese - inserting 1000 documents. first: File:Luteplayer,Caravaggio,detail.jpg and last: Colby Mitchell Chester -[2018-02-13T08:31:20.096] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:31:20.261] [INFO] cheese - inserting 1000 documents. first: Nişancı İsmail Kemalettin Pasha and last: Jaddy Simai Jaddy -[2018-02-13T08:31:20.271] [INFO] cheese - inserting 1000 documents. first: Hinduism in Greece and last: Template:GAReview -[2018-02-13T08:31:20.344] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:31:20.351] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:31:20.483] [INFO] cheese - inserting 1000 documents. first: Mosimanegape Ramoshibidu and last: Barulaganye Bolofete -[2018-02-13T08:31:20.485] [INFO] cheese - inserting 1000 documents. first: South American Plate and last: Historical Jesus -[2018-02-13T08:31:20.535] [INFO] cheese - inserting 1000 documents. first: Modest Aronstam and last: UK citizen -[2018-02-13T08:31:20.621] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:31:20.641] [INFO] cheese - batch complete in: 1.935 secs -[2018-02-13T08:31:20.683] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:31:21.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OLD and last: Blue Sky Green Field Wind Energy Center -[2018-02-13T08:31:21.029] [INFO] cheese - inserting 1000 documents. first: Kate and Kacey Coppola and last: Farm Road 769 -[2018-02-13T08:31:21.039] [INFO] cheese - inserting 1000 documents. first: Negotiable Order of Withdrawal and last: Neal Potter -[2018-02-13T08:31:21.045] [INFO] cheese - inserting 1000 documents. first: Coelostathma contigua and last: File:Chinnor rfc logo.png -[2018-02-13T08:31:21.084] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/June 3 and last: Timothy D. Bellavia -[2018-02-13T08:31:21.091] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:31:21.119] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:31:21.179] [INFO] cheese - inserting 1000 documents. first: 180th Motor Rifle Division and last: E. Otis Kendall -[2018-02-13T08:31:21.131] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:31:21.188] [INFO] cheese - batch complete in: 3.783 secs -[2018-02-13T08:31:21.207] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:31:21.236] [INFO] cheese - inserting 1000 documents. first: List of United Nations Security Council Resolutions 1901 to 2000 and last: File:In The Key Of Night album cover.jpg -[2018-02-13T08:31:21.336] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:31:21.418] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:21.752] [INFO] cheese - inserting 1000 documents. first: Niala, Iran and last: Wikipedia:Copyright problems/2013 November 5 -[2018-02-13T08:31:21.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chris Cafero and last: County Road 51 (Anoka County, Minnesota) -[2018-02-13T08:31:21.824] [INFO] cheese - inserting 1000 documents. first: Breezeway and last: Brush-tailed Marsupial Rat -[2018-02-13T08:31:21.845] [INFO] cheese - inserting 1000 documents. first: Saint-Constant station and last: 2005 Guangzhou International Women's Open – Singles -[2018-02-13T08:31:21.918] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:31:21.923] [INFO] cheese - inserting 1000 documents. first: Muhammad Khantumani and last: Category:Pizza chains -[2018-02-13T08:31:21.958] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:31:21.989] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:31:22.026] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:31:22.110] [INFO] cheese - inserting 1000 documents. first: Category:Category-Class Rufus Wainwright articles and last: Benhar, New Zealand -[2018-02-13T08:31:22.116] [INFO] cheese - inserting 1000 documents. first: List of villains and ghosts in Danny Phantom and last: Steppingstone assumption -[2018-02-13T08:31:22.171] [INFO] cheese - inserting 1000 documents. first: Rod Smart and last: Two Knights defence -[2018-02-13T08:31:22.168] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:31:22.276] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:31:22.308] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:31:22.389] [INFO] cheese - batch complete in: 1.747 secs -[2018-02-13T08:31:22.676] [INFO] cheese - inserting 1000 documents. first: Gentile Zanardi and last: DIBP (disambiguation) -[2018-02-13T08:31:22.721] [INFO] cheese - inserting 1000 documents. first: Talam and last: Paul Nowak -[2018-02-13T08:31:22.747] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:31:22.804] [INFO] cheese - inserting 1000 documents. first: Iraq Institute for Strategic Studies and last: Glycoside hydrolase family 77 -[2018-02-13T08:31:22.867] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:31:22.880] [INFO] cheese - inserting 1000 documents. first: Crest-Tailed Marsupial Rat and last: FK Cukaricki Stankom -[2018-02-13T08:31:22.897] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:31:22.928] [INFO] cheese - inserting 1000 documents. first: Communications in Contemporary Mathematics and last: Wikipedia:Articles for deletion/Exun -[2018-02-13T08:31:22.988] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:31:23.081] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:31:23.108] [INFO] cheese - inserting 1000 documents. first: Jamie-San and last: Herman Finkers -[2018-02-13T08:31:23.201] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:31:23.404] [INFO] cheese - inserting 1000 documents. first: List of number-one singles of 1960 (France) and last: 2004 BNP Paribas Masters -[2018-02-13T08:31:23.419] [INFO] cheese - inserting 1000 documents. first: Oregon Masonic Lodge (Wisconsin) and last: Khowrshidabad -[2018-02-13T08:31:23.426] [INFO] cheese - inserting 1000 documents. first: Prefiguration (disambiguation) and last: Category:Establishments in Libya -[2018-02-13T08:31:23.436] [INFO] cheese - inserting 1000 documents. first: EC Pfaffenhofen and last: Kladas, Greece -[2018-02-13T08:31:23.477] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:31:23.482] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:31:23.484] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:31:23.519] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:31:23.582] [INFO] cheese - inserting 1000 documents. first: Two Knights Defence and last: Irenism -[2018-02-13T08:31:23.610] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Amy rubio and last: 2006 PDL season -[2018-02-13T08:31:23.619] [INFO] cheese - inserting 1000 documents. first: Disney Cinemagic +1 and last: Template:W-FAQ/Helpme -[2018-02-13T08:31:23.687] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:31:23.703] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:31:23.741] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T08:31:23.963] [INFO] cheese - inserting 1000 documents. first: Johann Friedrich Eschscholtz and last: List of classes of the Bundesmarine and Deutsche Marine -[2018-02-13T08:31:23.978] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by B.o.B and last: My Lucky Day (Scrubs) -[2018-02-13T08:31:24.022] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:31:24.025] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:31:24.047] [INFO] cheese - inserting 1000 documents. first: Elinda Rademeyer and last: Elm River (South Dakota) -[2018-02-13T08:31:24.092] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sophie Louise Bay and last: Tennessee State Route 351 -[2018-02-13T08:31:24.196] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:31:24.201] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:31:24.237] [INFO] cheese - inserting 1000 documents. first: Category:Politburo of the Central Committee of the Communist Party of the Soviet Union members and last: Dr. Mario Soares -[2018-02-13T08:31:24.348] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:31:24.373] [INFO] cheese - inserting 1000 documents. first: Tochihara Station and last: Robert Ortiz (gridiron football) -[2018-02-13T08:31:24.389] [INFO] cheese - inserting 1000 documents. first: Africanus, Sextus Julius and last: Jarosite -[2018-02-13T08:31:24.436] [INFO] cheese - inserting 1000 documents. first: Mercy Njoroge and last: Wikipedia:Articles for deletion/Jim Lynch (Survivor) -[2018-02-13T08:31:24.456] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:31:24.506] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:31:24.558] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:24.766] [INFO] cheese - inserting 1000 documents. first: Desert gum and last: 9415 Yujiokimura -[2018-02-13T08:31:24.781] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Danny Howard and last: Re Ng Extradition -[2018-02-13T08:31:24.875] [INFO] cheese - inserting 1000 documents. first: Pima indian and last: Bill DeSteph -[2018-02-13T08:31:24.953] [INFO] cheese - inserting 1000 documents. first: Category:German patrol aircraft 1940–1949 and last: Claire McLean -[2018-02-13T08:31:24.955] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:31:24.987] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:31:25.032] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:31:25.063] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:31:25.138] [INFO] cheese - inserting 1000 documents. first: Template:Lebanon-singer-stub and last: Wikipedia:Articles for deletion/Daryl Youngblood -[2018-02-13T08:31:25.266] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:31:25.343] [INFO] cheese - inserting 1000 documents. first: Giovanni Balbi and last: Template:MOTD Barnstar -[2018-02-13T08:31:25.418] [INFO] cheese - inserting 1000 documents. first: Federalna Televizija and last: 2 Tone (genre) -[2018-02-13T08:31:25.426] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Chico Bennett and last: College Radio WUMD -[2018-02-13T08:31:25.455] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:31:25.465] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:31:25.523] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:31:25.642] [INFO] cheese - inserting 1000 documents. first: The File on H. (novel) and last: Tirak Deh-e Sofla -[2018-02-13T08:31:25.643] [INFO] cheese - inserting 1000 documents. first: Martin Chávez and last: John Taylor, Baron Taylor of Warwick -[2018-02-13T08:31:25.669] [INFO] cheese - inserting 1000 documents. first: Category:Swiss civil utility aircraft 1960–1969 and last: Jack K. Clarke -[2018-02-13T08:31:25.700] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:31:25.781] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T08:31:25.785] [INFO] cheese - inserting 1000 documents. first: Re Manitoba Language Rights and last: Horace de Gunzburg -[2018-02-13T08:31:25.806] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:31:25.881] [INFO] cheese - inserting 1000 documents. first: One Light Year at Snail Speed and last: File:Cone sisters with Gertrude Stein.jpg -[2018-02-13T08:31:25.885] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:31:25.935] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:31:26.021] [INFO] cheese - inserting 1000 documents. first: Reggae punk and last: 1939–40 Czechoslovak First League -[2018-02-13T08:31:26.080] [INFO] cheese - inserting 1000 documents. first: Mahuta Tawhiao and last: Category:Tahltan -[2018-02-13T08:31:26.100] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:31:26.190] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:31:26.230] [INFO] cheese - inserting 1000 documents. first: Template:WP Phillies Invite and last: Laurent Mohellebi -[2018-02-13T08:31:26.308] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:31:26.402] [INFO] cheese - inserting 1000 documents. first: Vazak and last: Tem Braille -[2018-02-13T08:31:26.433] [INFO] cheese - inserting 1000 documents. first: Lady Davis Postdoctoral Fellowship and last: WOW Hits 2012 -[2018-02-13T08:31:26.473] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:31:26.506] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:31:26.535] [INFO] cheese - inserting 1000 documents. first: Wyndham Street and last: Avon Dassett -[2018-02-13T08:31:26.556] [INFO] cheese - inserting 1000 documents. first: 1940–41 Czechoslovak First League and last: Kalmyk Bible -[2018-02-13T08:31:26.584] [INFO] cheese - inserting 1000 documents. first: Aeropuerto Internacional Del Cibao and last: Chinquapin Parkway -[2018-02-13T08:31:26.598] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:31:26.598] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:31:26.676] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:26.754] [INFO] cheese - inserting 1000 documents. first: Aleksandr Khinstein and last: The Brain of My Existence -[2018-02-13T08:31:26.817] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:31:26.867] [INFO] cheese - inserting 1000 documents. first: Armando Doda and last: Demerera sugar -[2018-02-13T08:31:26.952] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:31:27.035] [INFO] cheese - inserting 1000 documents. first: Nik Vucevic and last: Tropical Cyclone Carina (2006) -[2018-02-13T08:31:27.057] [INFO] cheese - inserting 1000 documents. first: Protypanthes hybristis and last: Barf Kola -[2018-02-13T08:31:27.076] [INFO] cheese - inserting 1000 documents. first: Throughput Accounting and last: File:Ohio capital conference logo.jpg -[2018-02-13T08:31:27.077] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:31:27.143] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:31:27.158] [INFO] cheese - inserting 1000 documents. first: Stela of Ankh-ef-en-Khonsu and last: History of the Catholic Church in Brazil -[2018-02-13T08:31:27.155] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:31:27.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Compton Scool and last: Skooma -[2018-02-13T08:31:27.210] [INFO] cheese - inserting 1000 documents. first: Rome (Paris Métro) and last: Server-side include -[2018-02-13T08:31:27.253] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:31:27.302] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:31:27.315] [INFO] cheese - batch complete in: 1.534 secs -[2018-02-13T08:31:27.404] [INFO] cheese - inserting 1000 documents. first: Monarch High School (Florida) and last: Glasgow, United Kingdom -[2018-02-13T08:31:27.481] [INFO] cheese - inserting 1000 documents. first: Nieuport-Delage NiD 590 and last: Wikipedia:Articles for deletion/Tuleap (project management) -[2018-02-13T08:31:27.599] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:31:27.607] [INFO] cheese - inserting 1000 documents. first: Miguel Ángel López Jaén and last: Bits of Life -[2018-02-13T08:31:27.611] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:31:27.692] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:31:27.790] [INFO] cheese - inserting 1000 documents. first: Wuzhou Airport and last: Ali Kılıç -[2018-02-13T08:31:27.818] [INFO] cheese - inserting 1000 documents. first: Bibi Kola and last: Talesh Mahalleh-ye Fatuk -[2018-02-13T08:31:27.913] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:31:27.936] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:31:28.044] [INFO] cheese - inserting 1000 documents. first: Lignification and last: Mari-Tureksky District -[2018-02-13T08:31:28.109] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:28.168] [INFO] cheese - inserting 1000 documents. first: Christmas store and last: Category:Palestinian actors by medium -[2018-02-13T08:31:28.282] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:31:28.291] [INFO] cheese - inserting 1000 documents. first: Donald "Ducky" Mallard and last: Exchange Quay tram stop -[2018-02-13T08:31:28.382] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:31:28.384] [INFO] cheese - inserting 1000 documents. first: Radio Bremen and last: Tashelhit -[2018-02-13T08:31:28.390] [INFO] cheese - inserting 1000 documents. first: Index of South Carolina-related articles and last: Mike Krusee -[2018-02-13T08:31:28.470] [INFO] cheese - inserting 1000 documents. first: José Perelló Torrens and last: Category:Canadian ultralight aircraft 1990–1999 -[2018-02-13T08:31:28.473] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:31:28.476] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:31:28.556] [INFO] cheese - inserting 1000 documents. first: Tazeh Patak and last: Mike Watson (American football) -[2018-02-13T08:31:28.560] [INFO] cheese - inserting 1000 documents. first: Arncliffe, North Yorkshire and last: Kay Kendall -[2018-02-13T08:31:28.562] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:31:28.635] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:31:28.664] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:31:28.784] [INFO] cheese - inserting 1000 documents. first: Young's Bluecrest and last: Vanessa Arauz -[2018-02-13T08:31:28.803] [INFO] cheese - inserting 1000 documents. first: Hong Kong representative football team and last: Category:Technology trade associations -[2018-02-13T08:31:28.819] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:31:28.863] [INFO] cheese - inserting 1000 documents. first: Curtiss-Wright CW-3 Duckling and last: Konstyantyn Hryshchenko -[2018-02-13T08:31:28.880] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:31:28.944] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:31:28.958] [INFO] cheese - inserting 1000 documents. first: Serishevski and last: Mohammadabad Gonbaki -[2018-02-13T08:31:28.987] [INFO] cheese - inserting 1000 documents. first: File:Earthlastavengers8.jpg and last: Alexander Corina -[2018-02-13T08:31:29.053] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:31:29.089] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:31:29.104] [INFO] cheese - inserting 1000 documents. first: Category:People from Korba district and last: Planetary object -[2018-02-13T08:31:29.171] [INFO] cheese - inserting 1000 documents. first: Amagat and last: Ronee Blakely -[2018-02-13T08:31:29.184] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:31:29.275] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:31:29.396] [INFO] cheese - inserting 1000 documents. first: Love Put a Song in My Heart (song) and last: Marc-René de Voyer de Paulmy d'Argenson (1623-1700) -[2018-02-13T08:31:29.443] [INFO] cheese - inserting 1000 documents. first: File:Medan Prijaji (volume 4 issue 3).pdf and last: Template:Bad Aibling rail accident RDT -[2018-02-13T08:31:29.527] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:31:29.538] [INFO] cheese - inserting 1000 documents. first: Articaine hydrochloride and last: Benny Chong -[2018-02-13T08:31:29.570] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:31:29.640] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:31:29.679] [INFO] cheese - inserting 1000 documents. first: Major League Baseball Delivery Man of the Year Award and last: Vector map -[2018-02-13T08:31:29.711] [INFO] cheese - inserting 1000 documents. first: Concord Records and last: List of Billboard Hot 100 number-one singles of 1995 -[2018-02-13T08:31:29.794] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:29.835] [INFO] cheese - inserting 1000 documents. first: Khugiani (village) and last: Sveva da Montefeltro -[2018-02-13T08:31:29.853] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:31:29.968] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:31:30.053] [INFO] cheese - inserting 1000 documents. first: Veluyeh-ye Olya and last: Category:Directors of Disney -[2018-02-13T08:31:30.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Rafa Figueiredo/Archive and last: Amazonía -[2018-02-13T08:31:30.114] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:31:30.149] [INFO] cheese - inserting 1000 documents. first: Marc-René de Voyer de Paulmy d'Argenson (1652-1721) and last: File:Uliaga.jpg -[2018-02-13T08:31:30.160] [INFO] cheese - inserting 1000 documents. first: Bulghur and last: Daimler Benz Aerospace -[2018-02-13T08:31:30.124] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:31:30.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alexander Duvall and last: Hip Hop Soul -[2018-02-13T08:31:30.227] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:31:30.281] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:31:30.332] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:31:30.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elmallorca.com and last: Pittsburgh Science of Learning Center -[2018-02-13T08:31:30.549] [INFO] cheese - inserting 1000 documents. first: Anne Maddocks and last: 33rd State -[2018-02-13T08:31:30.590] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:31:30.706] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:31:30.798] [INFO] cheese - inserting 1000 documents. first: Techonology and last: Triangular trapezohedron -[2018-02-13T08:31:30.799] [INFO] cheese - inserting 1000 documents. first: Newark Broad Street station (New Jersey) and last: Apocalypse in view of Shia -[2018-02-13T08:31:30.819] [INFO] cheese - inserting 1000 documents. first: Pedigree Schmedigree and last: Category:People of Asian descent -[2018-02-13T08:31:30.848] [INFO] cheese - inserting 1000 documents. first: Barboursville Seminary of the Southern Methodist Church and last: File:GodInvitingChristDetail.jpg -[2018-02-13T08:31:30.862] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:31:30.878] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:31:30.882] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:31:30.895] [INFO] cheese - inserting 1000 documents. first: Pinus serotina and last: Bobby Flay England -[2018-02-13T08:31:30.945] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:31:31.018] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:31:31.082] [INFO] cheese - inserting 1000 documents. first: Juan Francisco Guerra and last: Bowman (surname) -[2018-02-13T08:31:31.139] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:31:31.160] [INFO] cheese - inserting 1000 documents. first: Bache, Cheshire and last: SchoolNet Namibia -[2018-02-13T08:31:31.232] [INFO] cheese - inserting 1000 documents. first: Pseudominla castaneceps and last: 1 E+0 m -[2018-02-13T08:31:31.246] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T08:31:31.320] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:31:31.322] [INFO] cheese - inserting 1000 documents. first: Category:Equatoguinean film people and last: Hydrophilus (insect) -[2018-02-13T08:31:31.357] [INFO] cheese - inserting 1000 documents. first: List of people removed from the Privy Council of the United Kingdom and last: Mangotsfield Rural -[2018-02-13T08:31:31.364] [INFO] cheese - inserting 1000 documents. first: Resistance Inside the Army and last: Na/Cl cotransporter -[2018-02-13T08:31:31.387] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:31:31.479] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:31:31.485] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:31:31.620] [INFO] cheese - inserting 1000 documents. first: John Dunbar, 4th Earl of Moray and last: Battle of the Ch'ongch'on River -[2018-02-13T08:31:31.627] [INFO] cheese - inserting 1000 documents. first: Template:1949 College Football Consensus All-Americans and last: Audi Type B -[2018-02-13T08:31:31.716] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:31:31.783] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:31:31.958] [INFO] cheese - inserting 1000 documents. first: SF-88 and last: Muzi Bon -[2018-02-13T08:31:31.996] [INFO] cheese - inserting 1000 documents. first: Rimush (Akkad) and last: Sándor Terplán -[2018-02-13T08:31:32.023] [INFO] cheese - inserting 1000 documents. first: File:The Fray - How to Save a Life.jpg and last: Portal:Trains/Selected article/Week 47, 2006 -[2018-02-13T08:31:32.028] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:31:32.061] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:32.085] [INFO] cheese - inserting 1000 documents. first: Bobby England and last: Baron Balfour of Inchrye -[2018-02-13T08:31:32.081] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Tatineni Rama Rao and last: Barron, Chuck -[2018-02-13T08:31:32.130] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:31:32.163] [INFO] cheese - inserting 1000 documents. first: Shmidt Bridge and last: Category:Food infobox templates -[2018-02-13T08:31:32.225] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:31:32.258] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:31:32.298] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:31:32.392] [INFO] cheese - inserting 1000 documents. first: Category:Centralia, Missouri and last: Michael Coteau -[2018-02-13T08:31:32.481] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:31:32.610] [INFO] cheese - inserting 1000 documents. first: Panbeh Zar Koti and last: ROCS Chu Hwa (AGS-564) -[2018-02-13T08:31:32.633] [INFO] cheese - inserting 1000 documents. first: Milton Brandão and last: Takeshi Nakazato -[2018-02-13T08:31:32.678] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:31:32.714] [INFO] cheese - inserting 1000 documents. first: Courtney, Chuck and last: Huang An (singer) -[2018-02-13T08:31:32.740] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:31:32.760] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:31:32.763] [INFO] cheese - inserting 1000 documents. first: Armand Mondakan and last: Sebastien de Chaunac -[2018-02-13T08:31:32.901] [INFO] cheese - inserting 1000 documents. first: Nasty Girl and last: By the way -[2018-02-13T08:31:32.905] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:31:32.981] [INFO] cheese - inserting 1000 documents. first: HR 7578 and last: Category:Tourist attractions in Chambers County, Alabama -[2018-02-13T08:31:32.983] [INFO] cheese - inserting 1000 documents. first: Federation Slovene de Cyclisme and last: NACAI -[2018-02-13T08:31:32.997] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:31:33.062] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:31:33.135] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:31:33.303] [INFO] cheese - inserting 1000 documents. first: La Tante DC10 Restaurant and last: Template:Infobox summit meeting/sandbox -[2018-02-13T08:31:33.335] [INFO] cheese - inserting 1000 documents. first: Vinyl Records and last: Handley-Page 0/400 -[2018-02-13T08:31:33.361] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:31:33.365] [INFO] cheese - inserting 1000 documents. first: Professional Rugby Organization and last: Gradient Domain Image Processing -[2018-02-13T08:31:33.479] [INFO] cheese - inserting 1000 documents. first: Jaicós and last: Trouvelot Crater -[2018-02-13T08:31:33.480] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:31:33.483] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:31:33.509] [INFO] cheese - inserting 1000 documents. first: The Roads We Choose – A Retrospective and last: Timeline of the history of Indonesia -[2018-02-13T08:31:33.559] [INFO] cheese - inserting 1000 documents. first: Professional Baseball Spirits and last: 3Player -[2018-02-13T08:31:33.579] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:31:33.589] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:31:33.644] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:31:33.661] [INFO] cheese - inserting 1000 documents. first: David Greenaway and last: Technical singularity -[2018-02-13T08:31:33.816] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:31:33.901] [INFO] cheese - inserting 1000 documents. first: Héctor Suarez Gomiz and last: Thomas Michael Kettle -[2018-02-13T08:31:34.022] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:31:34.196] [INFO] cheese - inserting 1000 documents. first: Template:LPF 2013-14 teamlist and last: Runaway (1964 film) -[2018-02-13T08:31:34.244] [INFO] cheese - inserting 1000 documents. first: Taylor's Eye Witness Works and last: Jinx (TV series) -[2018-02-13T08:31:34.245] [INFO] cheese - inserting 1000 documents. first: Saturn's Children (disambiguation) and last: Tx college of osteopathic -[2018-02-13T08:31:34.270] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:31:34.369] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:31:34.394] [INFO] cheese - inserting 1000 documents. first: Livestock‑branding and last: Niculae I. Herescu -[2018-02-13T08:31:34.412] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:31:34.495] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:31:34.538] [INFO] cheese - inserting 1000 documents. first: The Demon Haunted World: Science as a Candle in the Dark and last: Seshatu -[2018-02-13T08:31:34.605] [INFO] cheese - inserting 1000 documents. first: Nigel Stafford-Clark and last: E3 m -[2018-02-13T08:31:34.733] [INFO] cheese - inserting 1000 documents. first: Mister Mxyzptlk and last: Wisconsin State Assembly -[2018-02-13T08:31:34.751] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:31:34.770] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:31:34.906] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:31:35.033] [INFO] cheese - inserting 1000 documents. first: Bardsey cum Rigton and last: Manitouwadge -[2018-02-13T08:31:35.085] [INFO] cheese - inserting 1000 documents. first: List of Governors-General of Saint Kitts and Nevis and last: Keseleyan -[2018-02-13T08:31:35.123] [INFO] cheese - inserting 1000 documents. first: AFL reserves affiliations and last: Category:Geography of Crisp County, Georgia -[2018-02-13T08:31:35.141] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:31:35.159] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:31:35.210] [INFO] cheese - inserting 1000 documents. first: Niculae Herescu and last: Johan Sundkvist -[2018-02-13T08:31:35.219] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:31:35.251] [INFO] cheese - inserting 1000 documents. first: History of Norfolk County, Massachusetts and last: Category:Transportation in Belknap County, New Hampshire -[2018-02-13T08:31:35.280] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:31:35.390] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:31:35.510] [INFO] cheese - inserting 1000 documents. first: Louise Marie Thérèse of France and last: UN/LOCODE:INCAM -[2018-02-13T08:31:35.520] [INFO] cheese - inserting 1000 documents. first: James Parsons Burkitt and last: Wikipedia:Irish Wikipedians' notice board/Stubs -[2018-02-13T08:31:35.603] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:31:35.640] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:31:35.697] [INFO] cheese - inserting 1000 documents. first: San Diego State University Georgia Campus and last: File:National Unity Party.svg -[2018-02-13T08:31:35.719] [INFO] cheese - inserting 1000 documents. first: Kaseliyan and last: Category:Kashmir (band) albums -[2018-02-13T08:31:35.802] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:31:35.825] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:31:35.850] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Crisp County, Georgia and last: Category:Geography of Franklin County, Georgia -[2018-02-13T08:31:35.936] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:31:36.001] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Ecclesiastical Province of Mobile and last: Indigent -[2018-02-13T08:31:36.124] [INFO] cheese - inserting 1000 documents. first: Ben Romans and last: Category:Iijoki basin -[2018-02-13T08:31:36.207] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T08:31:36.259] [INFO] cheese - inserting 1000 documents. first: SC Bose and last: Edystone -[2018-02-13T08:31:36.296] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:31:36.502] [INFO] cheese - inserting 1000 documents. first: Switched mesh and last: Penn dot -[2018-02-13T08:31:36.609] [INFO] cheese - batch complete in: 1.703 secs -[2018-02-13T08:31:36.631] [INFO] cheese - inserting 1000 documents. first: 28184 Vaishnavirao and last: Kompass-Karten GmbH -[2018-02-13T08:31:36.650] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:31:36.669] [INFO] cheese - inserting 1000 documents. first: Category:Kashmir (band) video albums and last: Constantin Pigla -[2018-02-13T08:31:36.713] [INFO] cheese - inserting 1000 documents. first: Christopher Gaudet and last: Super Fly -[2018-02-13T08:31:36.731] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:31:36.777] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:31:36.807] [INFO] cheese - inserting 1000 documents. first: 2005-06 Olympique de Marseille season and last: Alexander JR Ferrer -[2018-02-13T08:31:36.851] [INFO] cheese - batch complete in: 1.248 secs -[2018-02-13T08:31:36.958] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:31:37.126] [INFO] cheese - inserting 1000 documents. first: Borbo borbonica and last: Henry Howard, 19th Earl of Suffolk -[2018-02-13T08:31:37.140] [INFO] cheese - inserting 1000 documents. first: Serpil Çapar and last: Category:Lists of documentary television series episodes -[2018-02-13T08:31:37.195] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:31:37.233] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:31:37.274] [INFO] cheese - inserting 1000 documents. first: Snow lepard and last: University of Vicenza -[2018-02-13T08:31:37.401] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:31:37.455] [INFO] cheese - inserting 1000 documents. first: Robert Millikan and last: N-322 (Road) -[2018-02-13T08:31:37.485] [INFO] cheese - inserting 1000 documents. first: Frank Irwin and last: Kachan, Iran -[2018-02-13T08:31:37.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Reference Library/Mechademia and last: Category:Geography of Lee County, Georgia -[2018-02-13T08:31:37.631] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:31:37.643] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:31:37.662] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:31:37.680] [INFO] cheese - inserting 1000 documents. first: Xrinh and last: Carl Liscombe -[2018-02-13T08:31:37.793] [INFO] cheese - inserting 1000 documents. first: Yvan Pierrot and last: Mimi Barthélemy -[2018-02-13T08:31:37.841] [INFO] cheese - inserting 1000 documents. first: Selvanagar(MoonRoad) and last: Park Corner Heath -[2018-02-13T08:31:37.852] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:31:37.953] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:31:37.956] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:31:38.051] [INFO] cheese - inserting 1000 documents. first: Meir Hai and last: Précoce -[2018-02-13T08:31:38.195] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:31:38.276] [INFO] cheese - inserting 1000 documents. first: Clarkeulia spectanda and last: Lash, Gilan -[2018-02-13T08:31:38.353] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:31:38.391] [INFO] cheese - inserting 1000 documents. first: Transcription activators and last: Consumer Tenancy and Trader Tribunal of New South Wales -[2018-02-13T08:31:38.397] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Lee County, Georgia and last: Runnin' Wild (song) -[2018-02-13T08:31:38.420] [INFO] cheese - inserting 1000 documents. first: Judith Rodin and last: Category:Roman Catholic Ecclesiastical Province of Philadelphia -[2018-02-13T08:31:38.552] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:31:38.626] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:31:38.640] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:31:38.725] [INFO] cheese - inserting 1000 documents. first: U.S. Federal Building and Courthouse (Anchorage, Alaska) and last: La Historia Continúa... Parte II -[2018-02-13T08:31:38.767] [INFO] cheese - inserting 1000 documents. first: Jack Dailey Creek and last: Christian Lasson -[2018-02-13T08:31:38.805] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:31:38.848] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:31:38.850] [INFO] cheese - inserting 1000 documents. first: Khalid Kelly and last: Wikipedia:Suspected sock puppets/Tellus archivist -[2018-02-13T08:31:38.933] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:31:39.187] [INFO] cheese - inserting 1000 documents. first: 2013–14 Wisconsin Badgers women's basketball team and last: Hard-easy effect -[2018-02-13T08:31:39.308] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:31:39.320] [INFO] cheese - inserting 1000 documents. first: Alien Contamination and last: Hôtel de Bourbon-Condé -[2018-02-13T08:31:39.337] [INFO] cheese - inserting 1000 documents. first: Time Was Endless and last: Who Do You Do? -[2018-02-13T08:31:39.346] [INFO] cheese - inserting 1000 documents. first: Paillette and last: View-source URI scheme -[2018-02-13T08:31:39.373] [INFO] cheese - inserting 1000 documents. first: Gove County and last: Turner Fenton High School -[2018-02-13T08:31:39.386] [INFO] cheese - inserting 1000 documents. first: Khoibu Naga language and last: File:Written in the Stars (Elton John and LeAnn Rimes song).jpg -[2018-02-13T08:31:39.407] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:39.405] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:31:39.445] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:31:39.530] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:31:39.537] [INFO] cheese - batch complete in: 1.685 secs -[2018-02-13T08:31:39.614] [INFO] cheese - inserting 1000 documents. first: Richard Bedford and last: John Michael Jacks -[2018-02-13T08:31:39.691] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:31:39.821] [INFO] cheese - inserting 1000 documents. first: File:The Magic School Bus title credit.jpg and last: Helgi Kolvidsson -[2018-02-13T08:31:39.886] [INFO] cheese - inserting 1000 documents. first: The Orange Monkey (PJ Harvey song) and last: Lycee francais A. Malraux -[2018-02-13T08:31:39.886] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:31:39.895] [INFO] cheese - inserting 1000 documents. first: Innocent Blood and last: Emergency vehicle equipment -[2018-02-13T08:31:39.919] [INFO] cheese - inserting 1000 documents. first: File:Deutsche Tourenwagen Masters (logo).png and last: Wikipedia:Version 1.0 Editorial Team/Israel-related articles by quality/21 -[2018-02-13T08:31:39.955] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:31:39.983] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:31:40.037] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:31:40.145] [INFO] cheese - inserting 1000 documents. first: MTV Europe Music Award for Biggest Fans and last: Motoakasaka, Minato, Tokyo -[2018-02-13T08:31:40.243] [INFO] cheese - inserting 1000 documents. first: Raion Orekhovo-Borisovo Iuzhnoye and last: Category:Tourist attractions in Oregon -[2018-02-13T08:31:40.393] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:31:40.399] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:31:40.643] [INFO] cheese - inserting 1000 documents. first: Lycee Francais A. Malraux and last: Expo / Bundy station -[2018-02-13T08:31:40.663] [INFO] cheese - inserting 1000 documents. first: Akuma (character) and last: Template:Fb round2 2006 Intertoto Cup R1 -[2018-02-13T08:31:40.766] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:31:40.809] [INFO] cheese - inserting 1000 documents. first: List of current governors of Afghanistan and last: Template:Chessington World of Adventures -[2018-02-13T08:31:40.821] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:31:40.967] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:31:40.996] [INFO] cheese - inserting 1000 documents. first: Template:Historical provinces of Finland and last: Penal laws -[2018-02-13T08:31:41.045] [INFO] cheese - inserting 1000 documents. first: Lucas Mansion and last: Category:Karlskoga Municipality -[2018-02-13T08:31:41.188] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:31:41.281] [INFO] cheese - batch complete in: 1.743 secs -[2018-02-13T08:31:41.285] [INFO] cheese - inserting 1000 documents. first: Listen to the Band (song) and last: File:Ross perot net favorability 1992-1996.svg -[2018-02-13T08:31:41.415] [INFO] cheese - inserting 1000 documents. first: Blaine Calkins and last: Miles M.39B Libellula -[2018-02-13T08:31:41.478] [INFO] cheese - batch complete in: 1.441 secs -[2018-02-13T08:31:41.482] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:31:41.552] [INFO] cheese - inserting 1000 documents. first: Canadian red ensign and last: Marsh Giddings -[2018-02-13T08:31:41.565] [INFO] cheese - inserting 1000 documents. first: Bundy station and last: Siege of Rhodes (305 BC) -[2018-02-13T08:31:41.697] [INFO] cheese - inserting 1000 documents. first: One (German TV channel) and last: Jonathan ben Uziel -[2018-02-13T08:31:41.696] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:31:41.706] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:31:41.777] [INFO] cheese - inserting 1000 documents. first: East Jaffrey Historic District and last: La MICA Biological Station -[2018-02-13T08:31:41.784] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:31:41.820] [INFO] cheese - inserting 1000 documents. first: Nine Stones, Winterbourne Abbas and last: Exact functor theorem -[2018-02-13T08:31:41.908] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:31:42.154] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:31:42.265] [INFO] cheese - inserting 1000 documents. first: My Story (Julia Gillard) and last: File:MIT Global Startup Workshop.jpg -[2018-02-13T08:31:42.413] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:31:42.502] [INFO] cheese - inserting 1000 documents. first: File:HardingUniversity logo.svg and last: Dionysus in 69 -[2018-02-13T08:31:42.628] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:31:42.709] [INFO] cheese - inserting 1000 documents. first: The Philosophy of Poverty and last: File:Walk Live Material Cover.jpg -[2018-02-13T08:31:42.710] [INFO] cheese - inserting 1000 documents. first: Blessed Robert Johnson and last: Guyana Air Force -[2018-02-13T08:31:42.803] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:31:42.811] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:31:42.889] [INFO] cheese - inserting 1000 documents. first: Robin Handique and last: Vadaveekam -[2018-02-13T08:31:42.903] [INFO] cheese - inserting 1000 documents. first: Parkhouse Hill and last: John M. Stone -[2018-02-13T08:31:42.966] [INFO] cheese - inserting 1000 documents. first: Category:1919 elections in Abkhazia and last: Burger, Joseph -[2018-02-13T08:31:43.032] [INFO] cheese - inserting 1000 documents. first: Category:Bathymophila and last: Sheshtanrud -[2018-02-13T08:31:42.997] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:31:43.045] [INFO] cheese - batch complete in: 1.567 secs -[2018-02-13T08:31:43.051] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:31:43.056] [INFO] cheese - inserting 1000 documents. first: Lisbon Strategy and last: Isuzu Motors -[2018-02-13T08:31:43.156] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:31:43.262] [INFO] cheese - batch complete in: 1.981 secs -[2018-02-13T08:31:43.319] [INFO] cheese - inserting 1000 documents. first: Ray Vanderby and last: Barasat I (Community development block) -[2018-02-13T08:31:43.432] [INFO] cheese - inserting 1000 documents. first: A. G. Mathews and last: Alexander de Kininmund (died 1380) -[2018-02-13T08:31:43.434] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:31:43.482] [INFO] cheese - inserting 1000 documents. first: VictorRamdin and last: Template:Takhar-geo-stub -[2018-02-13T08:31:43.575] [INFO] cheese - inserting 1000 documents. first: ShowStopper (song) and last: Category:FL-Class Tampa Bay Buccaneers articles -[2018-02-13T08:31:43.589] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:31:43.605] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:31:43.792] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:43.795] [INFO] cheese - inserting 1000 documents. first: Sheshtanrud-e Pa'in and last: Chokam -[2018-02-13T08:31:43.848] [INFO] cheese - inserting 1000 documents. first: Burnett, Joseph and last: Lycée français de Gavà -[2018-02-13T08:31:43.986] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:31:44.032] [INFO] cheese - inserting 1000 documents. first: Aurelia Cotta and last: Iranian movies -[2018-02-13T08:31:44.070] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:31:44.259] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:31:44.453] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dycode.net and last: Business Intelligence software -[2018-02-13T08:31:44.651] [INFO] cheese - inserting 1000 documents. first: Template:Wardak-geo-stub and last: JC De Vera -[2018-02-13T08:31:44.654] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:31:44.667] [INFO] cheese - inserting 1000 documents. first: Havana Club (Bacardi) and last: Artificial limbs -[2018-02-13T08:31:44.670] [INFO] cheese - inserting 1000 documents. first: Best-selling Christmas/Holiday albums in the United States and last: Str8 Out Da Slums -[2018-02-13T08:31:44.811] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:31:44.831] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:31:44.861] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:31:44.926] [INFO] cheese - inserting 1000 documents. first: Chowkam and last: Minah (disambiguation) -[2018-02-13T08:31:44.991] [INFO] cheese - inserting 1000 documents. first: Template:Swiftsure class submarine and last: Voiceless labialized velar approximant -[2018-02-13T08:31:45.006] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:31:45.053] [INFO] cheese - inserting 1000 documents. first: Lycée Français de Gavà and last: 待阳村 -[2018-02-13T08:31:45.169] [INFO] cheese - batch complete in: 1.907 secs -[2018-02-13T08:31:45.203] [INFO] cheese - inserting 1000 documents. first: Project Chapleau and last: Black chinned sparrow -[2018-02-13T08:31:45.165] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:31:45.309] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:31:45.409] [INFO] cheese - inserting 1000 documents. first: Pig (2010 film) and last: Edgar Everaldo Valencia -[2018-02-13T08:31:45.423] [INFO] cheese - inserting 1000 documents. first: Norman Parker (author) and last: FC Smarhon -[2018-02-13T08:31:45.452] [INFO] cheese - inserting 1000 documents. first: Serena Township, LaSalle County, Illinois and last: Template:Naked Brothers Band -[2018-02-13T08:31:45.471] [INFO] cheese - inserting 1000 documents. first: Cleo Pineau and last: Though I know the river is dry -[2018-02-13T08:31:45.475] [INFO] cheese - inserting 1000 documents. first: Dawson Bros and last: Mayo (disambiguation) -[2018-02-13T08:31:45.480] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:31:45.483] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:31:45.522] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:31:45.532] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:31:45.536] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:31:45.669] [INFO] cheese - inserting 1000 documents. first: File:Nacional Deva Boys logo.png and last: Wikipedia:Sockpuppet investigations/Mypassis1234/Archive -[2018-02-13T08:31:45.743] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:31:45.866] [INFO] cheese - inserting 1000 documents. first: Template:NAC Breda and last: Selina Parvin -[2018-02-13T08:31:45.995] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:31:46.060] [INFO] cheese - inserting 1000 documents. first: Babylon Rogues and last: Category:Costa Rican triathletes -[2018-02-13T08:31:46.076] [INFO] cheese - inserting 1000 documents. first: Homotopy limits and last: Category:Census-designated places in Pierce County, Wisconsin -[2018-02-13T08:31:46.171] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:31:46.199] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:31:46.305] [INFO] cheese - inserting 1000 documents. first: Centre for Rural and Northern Health Research and last: Rosa Lewis -[2018-02-13T08:31:46.322] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bengali fish/Archive and last: Jay Cross -[2018-02-13T08:31:46.337] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/St Eugrad's Church, Llaneugrad and last: Phulbani district -[2018-02-13T08:31:46.379] [INFO] cheese - inserting 1000 documents. first: Al Brady and last: Bernard Benstock -[2018-02-13T08:31:46.387] [INFO] cheese - inserting 1000 documents. first: Voiceless labiodental fricative and last: Spiritual Five -[2018-02-13T08:31:46.408] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:31:46.431] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:31:46.508] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:31:46.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rainy Davis and last: 1983 Alpine Skiing World Cup - Men's Combined -[2018-02-13T08:31:46.568] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:31:46.627] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:31:46.681] [INFO] cheese - batch complete in: 1.51 secs -[2018-02-13T08:31:46.932] [INFO] cheese - inserting 1000 documents. first: Template:Illinois road map and last: Morqaye -[2018-02-13T08:31:46.952] [INFO] cheese - inserting 1000 documents. first: Smit, Jan and last: Smith, Willard -[2018-02-13T08:31:46.998] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:31:47.000] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:31:47.061] [INFO] cheese - inserting 1000 documents. first: Leptalis albania and last: Leningradka St. Petersburg -[2018-02-13T08:31:47.073] [INFO] cheese - inserting 1000 documents. first: Category:Chilean triathletes and last: Wikipedia:Articles for deletion/List of Jewish American political figures (2nd nomination) -[2018-02-13T08:31:47.155] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:31:47.318] [INFO] cheese - inserting 1000 documents. first: Vertical Disease Transmission and last: Kirkpatrick & Lockhart Nicholson Graham -[2018-02-13T08:31:47.339] [INFO] cheese - inserting 1000 documents. first: Portal:Biography/Selected article/June 16 and last: Saskatchewan Highway 680 -[2018-02-13T08:31:47.358] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:31:47.451] [INFO] cheese - inserting 1000 documents. first: 1983 Alpine Skiing World Cup - Men's Downhill and last: 2010 Aircel Chennai Open – Doubles -[2018-02-13T08:31:47.494] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:31:47.600] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:31:47.620] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:31:47.763] [INFO] cheese - inserting 1000 documents. first: Mahji dialect and last: John Ingleby (painter) -[2018-02-13T08:31:47.825] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:31:47.950] [INFO] cheese - inserting 1000 documents. first: Eisenstadt (surname) and last: Idomeno Re Di Creta -[2018-02-13T08:31:48.031] [INFO] cheese - inserting 1000 documents. first: Lake Manicouagan and last: The Integral Trees -[2018-02-13T08:31:48.107] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:31:48.152] [INFO] cheese - inserting 1000 documents. first: Kindaichi Kōsuke and last: Category:Cellular telephony -[2018-02-13T08:31:48.275] [INFO] cheese - batch complete in: 1.593 secs -[2018-02-13T08:31:48.360] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:31:48.364] [INFO] cheese - inserting 1000 documents. first: File:Mubarakal-Kabir computer rendition.jpg and last: Davis High School (Washington) -[2018-02-13T08:31:48.384] [INFO] cheese - inserting 1000 documents. first: Fireman Save My Child (film) and last: United States House of Representatives elections in Kentucky, 1952 -[2018-02-13T08:31:48.453] [INFO] cheese - inserting 1000 documents. first: Steam tunnel incident and last: 1988 Nutri-Metics Open - Doubles -[2018-02-13T08:31:48.455] [INFO] cheese - inserting 1000 documents. first: Abercrombie's syndrome and last: Cottens, Vaud -[2018-02-13T08:31:48.518] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:31:48.528] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:31:48.648] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:31:48.666] [INFO] cheese - inserting 1000 documents. first: Left Shark (Viral Phenomenon) and last: Posterior cardinal veins -[2018-02-13T08:31:48.709] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:31:48.777] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:31:48.933] [INFO] cheese - inserting 1000 documents. first: Yang Cheng-wei and last: Mitchell Hallahan -[2018-02-13T08:31:49.107] [INFO] cheese - inserting 1000 documents. first: 1988 Nutri-Metics Open - Singles and last: 1997 Faber Grand Prix - Singles -[2018-02-13T08:31:49.110] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:31:49.152] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:31:49.186] [INFO] cheese - inserting 1000 documents. first: Piezoelectric Speakers and last: Anne C. Lynch Botta -[2018-02-13T08:31:49.268] [INFO] cheese - inserting 1000 documents. first: Apne Apne (1987 film) and last: Public domain mark -[2018-02-13T08:31:49.287] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:31:49.391] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:31:49.551] [INFO] cheese - inserting 1000 documents. first: Susan L. Adams and last: Category:Species described in the 1860s -[2018-02-13T08:31:49.591] [INFO] cheese - inserting 1000 documents. first: German 1st Panzer Group and last: List of birds of Brazil -[2018-02-13T08:31:49.593] [INFO] cheese - inserting 1000 documents. first: 1997 Family Circle Cup - Doubles and last: 2007 Pilot Pen Tennis - Men's Doubles -[2018-02-13T08:31:49.664] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:31:49.637] [INFO] cheese - inserting 1000 documents. first: Jean-Charles Lapierre and last: Vaughn Monroe -[2018-02-13T08:31:49.773] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:31:49.801] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T08:31:49.958] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Atlanta Braves articles and last: 1998 ARFU Asian Rugby Championship -[2018-02-13T08:31:50.031] [INFO] cheese - batch complete in: 1.756 secs -[2018-02-13T08:31:50.133] [INFO] cheese - inserting 1000 documents. first: Category:Sam Cooke tribute albums and last: John Baker White -[2018-02-13T08:31:50.233] [INFO] cheese - batch complete in: 1.705 secs -[2018-02-13T08:31:50.330] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:31:50.444] [INFO] cheese - inserting 1000 documents. first: Braithwaite, George and last: Shades Of Death Road -[2018-02-13T08:31:50.550] [INFO] cheese - inserting 1000 documents. first: 2007 Pilot Pen Tennis - Men's Singles and last: Medvedevsky -[2018-02-13T08:31:50.534] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:31:50.645] [INFO] cheese - inserting 1000 documents. first: Maria Campbell and last: Love is All -[2018-02-13T08:31:50.662] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:31:50.734] [INFO] cheese - inserting 1000 documents. first: 217th (Qu'Appelle) Battalion, CEF and last: Lord of the rings music -[2018-02-13T08:31:50.747] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:31:50.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Actual Condition and last: Make Me Over (Lifehouse song) -[2018-02-13T08:31:50.847] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T08:31:50.879] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:31:51.015] [INFO] cheese - inserting 1000 documents. first: Arterial insufficiency and last: David G. Hooker -[2018-02-13T08:31:51.030] [INFO] cheese - inserting 1000 documents. first: Khanpur, Sindh and last: GeNMR -[2018-02-13T08:31:51.099] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:31:51.151] [INFO] cheese - inserting 1000 documents. first: Issam Abdel-Tawab and last: 2009 LA Tennis Open - Doubles -[2018-02-13T08:31:51.155] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:31:51.173] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Ivory Coast and last: Brown, Randy -[2018-02-13T08:31:51.240] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:31:51.286] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:31:51.354] [INFO] cheese - inserting 1000 documents. first: Wallis and futana and last: Readlyn -[2018-02-13T08:31:51.483] [INFO] cheese - inserting 1000 documents. first: Little King's Story and last: Adam Goldworm -[2018-02-13T08:31:51.495] [INFO] cheese - inserting 1000 documents. first: Don coldsmith and last: Molly Day Thatcher -[2018-02-13T08:31:51.540] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:31:51.574] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:31:51.603] [INFO] cheese - inserting 1000 documents. first: 2009 LA Tennis Open - Singles and last: Paano Na Kaya -[2018-02-13T08:31:51.681] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:31:51.736] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:31:51.832] [INFO] cheese - inserting 1000 documents. first: List of air-filtering plants and last: Bournemouth Borough Council elections -[2018-02-13T08:31:51.893] [INFO] cheese - inserting 1000 documents. first: Derby City Council elections 2014-2016 and last: Pakistani foreign relations -[2018-02-13T08:31:51.938] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:31:51.963] [INFO] cheese - inserting 1000 documents. first: Brown, Robin and last: Lucky Jo -[2018-02-13T08:31:52.009] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:31:52.105] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:31:52.111] [INFO] cheese - inserting 1000 documents. first: Babesch - Bulletin Antieke Beschaving and last: Diving at the 1976 Summer Olympics - Women's 3 metre springboard -[2018-02-13T08:31:52.192] [INFO] cheese - inserting 1000 documents. first: Category:Florida Gators basketball venues and last: 1914 Columbus Panhandles season -[2018-02-13T08:31:52.220] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:31:52.289] [INFO] cheese - inserting 1000 documents. first: Francis Oscar Lindquist and last: Trash compactor -[2018-02-13T08:31:52.319] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:31:52.358] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:31:52.530] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dave Breen and last: Wikipedia:BRD violations -[2018-02-13T08:31:52.532] [INFO] cheese - inserting 1000 documents. first: University of California, Pomona and last: Lethal Weapon - The Ride -[2018-02-13T08:31:52.602] [INFO] cheese - inserting 1000 documents. first: Soviet occupation of Northeast China and last: File:Lobo bravo logo.png -[2018-02-13T08:31:52.611] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:31:52.702] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:31:52.719] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:31:52.825] [INFO] cheese - inserting 1000 documents. first: Aridaman jit singh and last: Echols, John -[2018-02-13T08:31:52.834] [INFO] cheese - inserting 1000 documents. first: Old Jersey and last: St. David's Parish, Prince Edward Island -[2018-02-13T08:31:52.903] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:53.012] [INFO] cheese - inserting 1000 documents. first: Letzte Tage - Letzte Nächte and last: Shameful shitting -[2018-02-13T08:31:53.066] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:31:53.069] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:31:53.118] [INFO] cheese - inserting 1000 documents. first: Post-tensioned concrete and last: Plon -[2018-02-13T08:31:53.148] [INFO] cheese - inserting 1000 documents. first: Ruger M77 Mark II and last: A Mother's Confession -[2018-02-13T08:31:53.181] [INFO] cheese - inserting 1000 documents. first: In Flanders Field and last: St. Margaret's Church -[2018-02-13T08:31:53.223] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:31:53.245] [INFO] cheese - batch complete in: 1.705 secs -[2018-02-13T08:31:53.255] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:31:53.394] [INFO] cheese - inserting 1000 documents. first: Fondation Vincent van Gogh Arles and last: Category:Blues Magoos albums -[2018-02-13T08:31:53.528] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:31:53.612] [INFO] cheese - inserting 1000 documents. first: Shooting at the 2000 Summer Olympics - Men's trap and last: Time line of the British Army 1800 - 1899 -[2018-02-13T08:31:53.628] [INFO] cheese - inserting 1000 documents. first: International Museum and Library of the Conjuring Arts and last: 1964 Nemzeti Bajnokság I -[2018-02-13T08:31:53.645] [INFO] cheese - inserting 1000 documents. first: British-Ukrainian Symposium (BUS) and last: Manjari (singer) -[2018-02-13T08:31:53.685] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:31:53.725] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:31:53.786] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:31:53.807] [INFO] cheese - inserting 1000 documents. first: File:Map of Prince Edward Island highlighting St. David's Parish.png and last: Lady Friday -[2018-02-13T08:31:53.914] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:31:53.917] [INFO] cheese - inserting 1000 documents. first: Terias sodalis and last: Thomas Clifton -[2018-02-13T08:31:54.022] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:31:54.114] [INFO] cheese - inserting 1000 documents. first: Category:Blue Lagoon (band) songs and last: Sendes -[2018-02-13T08:31:54.170] [INFO] cheese - inserting 1000 documents. first: Martin Luther School and last: Rocham Phoeung -[2018-02-13T08:31:54.203] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:31:54.303] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:31:54.441] [INFO] cheese - inserting 1000 documents. first: 26422 Marekbuchman and last: Jain iconography -[2018-02-13T08:31:54.522] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:54.529] [INFO] cheese - inserting 1000 documents. first: Kato Yasuaki and last: Samurai Evolution: Oukoku Geist -[2018-02-13T08:31:54.643] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:54.708] [INFO] cheese - inserting 1000 documents. first: Time line of the British Army 1900 - 1999 and last: List of characters in the Amelia Peabody series -[2018-02-13T08:31:54.716] [INFO] cheese - inserting 1000 documents. first: Retroactive interference and last: Transylvania County -[2018-02-13T08:31:54.785] [INFO] cheese - inserting 1000 documents. first: Category:Secondary schools in West Yorkshire and last: Wikipedia:Sockpuppet investigations/John Torn/Archive -[2018-02-13T08:31:54.791] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:31:54.858] [INFO] cheese - batch complete in: 1.613 secs -[2018-02-13T08:31:54.871] [INFO] cheese - inserting 1000 documents. first: Sandas, Iran and last: Lizard orchid -[2018-02-13T08:31:54.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Spiderio and last: Captain Birdseye -[2018-02-13T08:31:54.902] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:31:55.000] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:55.062] [INFO] cheese - inserting 1000 documents. first: Christopher Helm Publishers and last: Antelope (passenger train) -[2018-02-13T08:31:55.076] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:31:55.246] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:31:55.324] [INFO] cheese - inserting 1000 documents. first: Emily Kate Johnston and last: Easistore Self Storage -[2018-02-13T08:31:55.359] [INFO] cheese - inserting 1000 documents. first: MaildeQuest and last: Hamilton High School Fine Arts Program -[2018-02-13T08:31:55.481] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:31:55.536] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:31:55.739] [INFO] cheese - inserting 1000 documents. first: List of characters in Angels & Demons and last: Breathe & Stop -[2018-02-13T08:31:55.751] [INFO] cheese - inserting 1000 documents. first: Centro Galleria and last: Baldeh Sara -[2018-02-13T08:31:55.787] [INFO] cheese - inserting 1000 documents. first: Ölkofra tale and last: Category:Education in Richmond County, Georgia -[2018-02-13T08:31:55.855] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:31:55.916] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:31:55.937] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:31:56.036] [INFO] cheese - inserting 1000 documents. first: Governors of Vancouver Island and last: Queen Saleha -[2018-02-13T08:31:56.057] [INFO] cheese - inserting 1000 documents. first: List of asteroids (117001-118000) and last: Joseph Octave Arsenault -[2018-02-13T08:31:56.123] [INFO] cheese - inserting 1000 documents. first: 413th Strategic Fighter Wing and last: Revista ERES -[2018-02-13T08:31:56.159] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:31:56.188] [INFO] cheese - inserting 1000 documents. first: 1962–63 Segunda División and last: Wildlife of Ratanakiri -[2018-02-13T08:31:56.235] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:31:56.251] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:31:56.265] [INFO] cheese - inserting 1000 documents. first: Bulkington and last: Local Authority Accommodation -[2018-02-13T08:31:56.405] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:31:56.542] [INFO] cheese - batch complete in: 1.684 secs -[2018-02-13T08:31:56.680] [INFO] cheese - inserting 1000 documents. first: Bandbon-e Beneksar and last: Category:Faroe Islands under-21 international footballers -[2018-02-13T08:31:56.749] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Burke County, Georgia and last: Čeřenice -[2018-02-13T08:31:56.803] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:31:56.868] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:31:57.030] [INFO] cheese - inserting 1000 documents. first: Juventud Guerrera and Psicosis and last: Sergio Torres Guardeño -[2018-02-13T08:31:57.084] [INFO] cheese - inserting 1000 documents. first: Shi Zhou Pian and last: 28816 Kimneville -[2018-02-13T08:31:57.129] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:31:57.249] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:31:57.316] [INFO] cheese - inserting 1000 documents. first: Knock in and last: Oxford Council election, 2006 -[2018-02-13T08:31:57.380] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Al Gore criticisms and misconceptions and last: Welsh Canadian -[2018-02-13T08:31:57.382] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:31:57.535] [INFO] cheese - inserting 1000 documents. first: Austrian National Bank and last: Pieing -[2018-02-13T08:31:57.584] [INFO] cheese - inserting 1000 documents. first: File:AIUB-Oratory-Club.jpg and last: The Sackless Games -[2018-02-13T08:31:57.646] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Arbitration Committee Elections December 2013/Candidates/LFaraone and last: Joshua Vanlandingham -[2018-02-13T08:31:57.682] [INFO] cheese - batch complete in: 1.522 secs -[2018-02-13T08:31:57.715] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:31:57.728] [INFO] cheese - batch complete in: 1.493 secs -[2018-02-13T08:31:57.818] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:31:57.916] [INFO] cheese - inserting 1000 documents. first: Ooshima Naoto and last: HMS Intrepid -[2018-02-13T08:31:58.047] [INFO] cheese - inserting 1000 documents. first: 28817 Simoneflood and last: Joe Borg (screenwriter) -[2018-02-13T08:31:58.066] [INFO] cheese - batch complete in: 1.524 secs -[2018-02-13T08:31:58.101] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:31:58.419] [INFO] cheese - inserting 1000 documents. first: Czerwieńsk Commune and last: Template:Top German World War II Aces -[2018-02-13T08:31:58.532] [INFO] cheese - inserting 1000 documents. first: Joseph Ronald Quiñahan and last: Inas El Degheidi -[2018-02-13T08:31:58.586] [INFO] cheese - inserting 1000 documents. first: Mneumonic device and last: The Rolling Stones European Tour 1970 -[2018-02-13T08:31:58.653] [INFO] cheese - batch complete in: 1.271 secs -[2018-02-13T08:31:58.727] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:31:58.897] [INFO] cheese - inserting 1000 documents. first: Royal College of Music of Stockholm and last: Guichenot -[2018-02-13T08:31:58.902] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:31:59.014] [INFO] cheese - inserting 1000 documents. first: Society of Muslim Brotherhood and last: Oklahoma State Highway 110 -[2018-02-13T08:31:59.109] [INFO] cheese - batch complete in: 1.98 secs -[2018-02-13T08:31:59.307] [INFO] cheese - batch complete in: 1.579 secs -[2018-02-13T08:31:59.398] [INFO] cheese - inserting 1000 documents. first: Category:Artists from Leiden and last: Reasons to Be Miserable (Part 10) -[2018-02-13T08:31:59.488] [INFO] cheese - inserting 1000 documents. first: 1981 World Weightlifting Championships and last: 2011 Samsung Securities Cup – Womens' Doubles -[2018-02-13T08:31:59.579] [INFO] cheese - batch complete in: 1.477 secs -[2018-02-13T08:31:59.722] [INFO] cheese - batch complete in: 1.904 secs -[2018-02-13T08:31:59.860] [INFO] cheese - inserting 1000 documents. first: Philautus hainanus and last: Jir Mahalleh, Shaft -[2018-02-13T08:31:59.930] [INFO] cheese - inserting 1000 documents. first: File:Bijou Bleu Bartholemew1.jpg and last: File:One Time Bells.jpg -[2018-02-13T08:31:59.947] [INFO] cheese - inserting 1000 documents. first: Helen St. John and last: FKF President's Cup -[2018-02-13T08:32:00.064] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T08:32:00.137] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:32:00.156] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T08:32:00.349] [INFO] cheese - inserting 1000 documents. first: Ticker tape and last: North Carolina Agriculture and Technology University -[2018-02-13T08:32:00.414] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adrian ferguson and last: Warday -[2018-02-13T08:32:00.424] [INFO] cheese - inserting 1000 documents. first: Jules Muck and last: 27417 Jessjohnson -[2018-02-13T08:32:00.675] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:32:00.681] [INFO] cheese - batch complete in: 2.615 secs -[2018-02-13T08:32:00.695] [INFO] cheese - batch complete in: 1.388 secs -[2018-02-13T08:32:01.015] [INFO] cheese - inserting 1000 documents. first: Template:UNIFFAC football and last: Elmin Kurbegovic -[2018-02-13T08:32:01.175] [INFO] cheese - inserting 1000 documents. first: Liudolfings and last: Blue Max Droid -[2018-02-13T08:32:01.178] [INFO] cheese - inserting 1000 documents. first: English rugby premiership and last: Protochondrostoma -[2018-02-13T08:32:01.188] [INFO] cheese - inserting 1000 documents. first: Dundee Engine Plant and last: Peñamayor -[2018-02-13T08:32:01.274] [INFO] cheese - batch complete in: 2.165 secs -[2018-02-13T08:32:01.387] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T08:32:01.425] [INFO] cheese - batch complete in: 1.288 secs -[2018-02-13T08:32:01.485] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Dorothy Arzner and last: St Peter's School (Cambridge) -[2018-02-13T08:32:01.647] [INFO] cheese - batch complete in: 1.925 secs -[2018-02-13T08:32:01.778] [INFO] cheese - batch complete in: 1.622 secs -[2018-02-13T08:32:01.867] [INFO] cheese - inserting 1000 documents. first: 27421 Nathanhan and last: Category:Carnivals in Saint Vincent and the Grenadines -[2018-02-13T08:32:02.007] [INFO] cheese - inserting 1000 documents. first: Coney Island Yards and last: Electronically-controlled Continuously Variable Transmission -[2018-02-13T08:32:02.097] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:32:02.260] [INFO] cheese - batch complete in: 1.564 secs -[2018-02-13T08:32:02.421] [INFO] cheese - inserting 1000 documents. first: PLCγ and last: Sērā Mākyurī -[2018-02-13T08:32:02.470] [INFO] cheese - inserting 1000 documents. first: Bobo doll experiment and last: Bubble -[2018-02-13T08:32:02.532] [INFO] cheese - inserting 1000 documents. first: Category:Appalachian State Mountaineers and last: Osburga -[2018-02-13T08:32:02.568] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:32:02.574] [INFO] cheese - inserting 1000 documents. first: Katherin Yelick and last: Template:NFLAltPrimaryColor/doc -[2018-02-13T08:32:02.691] [INFO] cheese - inserting 1000 documents. first: Jamaican giant swallowtail and last: Huang (state) -[2018-02-13T08:32:02.681] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:32:02.765] [INFO] cheese - batch complete in: 2.084 secs -[2018-02-13T08:32:02.798] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:32:02.902] [INFO] cheese - batch complete in: 1.255 secs -[2018-02-13T08:32:02.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject India/Assessment/Tag & Assess 2008/018 and last: Nimbb-diliman -[2018-02-13T08:32:03.074] [INFO] cheese - inserting 1000 documents. first: Category:Parades in Saint Vincent and the Grenadines and last: 𑃤 -[2018-02-13T08:32:03.253] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:32:03.281] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T08:32:03.494] [INFO] cheese - inserting 1000 documents. first: Col. Flagg and last: Tornadoes by Year -[2018-02-13T08:32:03.655] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:32:03.667] [INFO] cheese - inserting 1000 documents. first: Châteaubernard and last: 1800 in art -[2018-02-13T08:32:03.693] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/NHMandSM/8th Month Report and last: Akademiska damkören lyran -[2018-02-13T08:32:03.838] [INFO] cheese - batch complete in: 1.577 secs -[2018-02-13T08:32:03.850] [INFO] cheese - inserting 1000 documents. first: Childless and last: Baitala deula -[2018-02-13T08:32:03.937] [INFO] cheese - inserting 1000 documents. first: 𑃥 and last: Wikipedia:LTA/Jermboy27 -[2018-02-13T08:32:03.950] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:32:04.047] [INFO] cheese - inserting 1000 documents. first: Category:Shropshire Yeomanry officers and last: Latitude 1 degree S -[2018-02-13T08:32:04.104] [INFO] cheese - batch complete in: 1.202 secs -[2018-02-13T08:32:04.115] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:32:04.132] [INFO] cheese - inserting 1000 documents. first: Marginal Utility and last: Beaches (film) -[2018-02-13T08:32:04.223] [INFO] cheese - batch complete in: 1.542 secs -[2018-02-13T08:32:04.429] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T08:32:04.568] [INFO] cheese - inserting 1000 documents. first: Shoplifts and last: Wikipedia:Articles for deletion/Maxwell's House -[2018-02-13T08:32:04.598] [INFO] cheese - inserting 1000 documents. first: 3 (The Black Heart Procession album) and last: 46th Rocket Division -[2018-02-13T08:32:04.623] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:32:04.816] [INFO] cheese - batch complete in: 1.535 secs -[2018-02-13T08:32:04.990] [INFO] cheese - inserting 1000 documents. first: Fish-louse and last: Siege of Ganjaku -[2018-02-13T08:32:05.185] [INFO] cheese - inserting 1000 documents. first: Vishkheseh Mahalleh and last: Ron Burton (Dallas Cowboys) -[2018-02-13T08:32:05.228] [INFO] cheese - batch complete in: 1.573 secs -[2018-02-13T08:32:05.235] [INFO] cheese - inserting 1000 documents. first: Mini compact disc and last: Battle of Baçente -[2018-02-13T08:32:05.309] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:32:05.385] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Clarke County, Georgia and last: Elisabeth-Louise Vigée Le Brun -[2018-02-13T08:32:05.495] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:32:05.501] [INFO] cheese - inserting 1000 documents. first: Malovishersky Municipal District and last: Erez border crossing -[2018-02-13T08:32:05.512] [INFO] cheese - batch complete in: 1.674 secs -[2018-02-13T08:32:05.556] [INFO] cheese - inserting 1000 documents. first: Latitude 2 degrees S and last: Music For Boys -[2018-02-13T08:32:05.672] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:32:05.732] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:32:06.012] [INFO] cheese - inserting 1000 documents. first: Les Infideles and last: Staatsexamen -[2018-02-13T08:32:06.113] [INFO] cheese - batch complete in: 1.297 secs -[2018-02-13T08:32:06.351] [INFO] cheese - inserting 1000 documents. first: 6th World Science Fiction Convention and last: Paul, Weiss, Rifkind, Wharton and Garrison -[2018-02-13T08:32:06.516] [INFO] cheese - inserting 1000 documents. first: Sansara Naga 1x2 and last: Yūko Kurita -[2018-02-13T08:32:06.522] [INFO] cheese - batch complete in: 1.294 secs -[2018-02-13T08:32:06.616] [INFO] cheese - inserting 1000 documents. first: The Fall of the House of Usher and last: Kingdom of Spain -[2018-02-13T08:32:06.669] [INFO] cheese - inserting 1000 documents. first: Lullubi and last: Wikipedia:Articles for deletion/Faith Harrington -[2018-02-13T08:32:06.712] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T08:32:06.733] [INFO] cheese - inserting 1000 documents. first: Thomas Kuczynski and last: End-run -[2018-02-13T08:32:06.905] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T08:32:06.930] [INFO] cheese - batch complete in: 1.417 secs -[2018-02-13T08:32:06.934] [INFO] cheese - batch complete in: 2.505 secs -[2018-02-13T08:32:07.288] [INFO] cheese - inserting 1000 documents. first: Portal:American football/Anniversaries/June 23 and last: O. C. Barber Colt Barn -[2018-02-13T08:32:07.430] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:32:07.508] [INFO] cheese - inserting 1000 documents. first: File:WDDD station logo.png and last: Republic of Jamtland -[2018-02-13T08:32:07.543] [INFO] cheese - inserting 1000 documents. first: Granite Wash and last: Legislative district of Lapu-Lapu -[2018-02-13T08:32:07.605] [INFO] cheese - inserting 1000 documents. first: Bane Harbour and last: Type-checked -[2018-02-13T08:32:07.918] [INFO] cheese - batch complete in: 1.395 secs -[2018-02-13T08:32:07.951] [INFO] cheese - batch complete in: 2.642 secs -[2018-02-13T08:32:07.969] [INFO] cheese - batch complete in: 2.237 secs -[2018-02-13T08:32:08.028] [INFO] cheese - inserting 1000 documents. first: Kurita Yūko and last: Hulstia undulatella -[2018-02-13T08:32:08.246] [INFO] cheese - batch complete in: 1.534 secs -[2018-02-13T08:32:08.492] [INFO] cheese - inserting 1000 documents. first: Coralie Simmons and last: Cadillac Model S -[2018-02-13T08:32:08.590] [INFO] cheese - inserting 1000 documents. first: File:Cypress Point Creamery.jpg and last: Steinar Karlsen -[2018-02-13T08:32:08.595] [INFO] cheese - inserting 1000 documents. first: Abby Cunningham Ewing Sumner and last: Kamakura's proposed World Heritage sites -[2018-02-13T08:32:08.682] [INFO] cheese - batch complete in: 1.751 secs -[2018-02-13T08:32:08.851] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T08:32:08.907] [INFO] cheese - batch complete in: 2.002 secs -[2018-02-13T08:32:09.045] [INFO] cheese - inserting 1000 documents. first: Ayana (name) and last: Quinn Sharp -[2018-02-13T08:32:09.124] [INFO] cheese - inserting 1000 documents. first: Consciousness expansion and last: Wikipedia:Sockpuppet investigations/AngelaVidal/Archive -[2018-02-13T08:32:09.229] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:32:09.319] [INFO] cheese - inserting 1000 documents. first: Tegnsprak and last: Edward Rowlands -[2018-02-13T08:32:09.376] [INFO] cheese - inserting 1000 documents. first: Retroauricular lymph nodes and last: 1968 European Formula Two Championship -[2018-02-13T08:32:09.399] [INFO] cheese - batch complete in: 1.43 secs -[2018-02-13T08:32:09.476] [INFO] cheese - inserting 1000 documents. first: File:Goodbye (Bobo Stenson album).jpg and last: (9120) 1998 DR8 -[2018-02-13T08:32:09.636] [INFO] cheese - batch complete in: 1.718 secs -[2018-02-13T08:32:09.710] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:32:09.769] [INFO] cheese - batch complete in: 2.834 secs -[2018-02-13T08:32:09.966] [INFO] cheese - inserting 1000 documents. first: Born to Be Bad (1950 film) and last: Murray Brown -[2018-02-13T08:32:10.147] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:32:10.259] [INFO] cheese - inserting 1000 documents. first: David Dorfman (choreographer) and last: Category:New Zealand national rugby union team coaches -[2018-02-13T08:32:10.321] [INFO] cheese - inserting 1000 documents. first: Cadillac Model T and last: Metamagnetism -[2018-02-13T08:32:10.350] [INFO] cheese - inserting 1000 documents. first: List of cities by country that have Stolpersteine and last: 2010 Speedway Premier League KOC -[2018-02-13T08:32:10.457] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:32:10.522] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T08:32:10.549] [INFO] cheese - batch complete in: 1.866 secs -[2018-02-13T08:32:10.588] [INFO] cheese - inserting 1000 documents. first: Charles Critchett and last: ImaGemInc -[2018-02-13T08:32:10.697] [INFO] cheese - inserting 1000 documents. first: La Victoria Arduino and last: A Chrysanthemum Bursts in Cincoesquinas -[2018-02-13T08:32:10.740] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:32:10.914] [INFO] cheese - inserting 1000 documents. first: Category:2008 podcast debuts and last: February 2016 Pulwama militant siege -[2018-02-13T08:32:10.932] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:32:11.113] [INFO] cheese - batch complete in: 2.206 secs -[2018-02-13T08:32:11.191] [INFO] cheese - inserting 1000 documents. first: SAP Research and last: Slobodan Janković (disambiguation) -[2018-02-13T08:32:11.249] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:32:11.596] [INFO] cheese - inserting 1000 documents. first: Template:2014 Cascadia Cup and last: François Fages -[2018-02-13T08:32:11.653] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:32:11.673] [INFO] cheese - inserting 1000 documents. first: CH3NO2 and last: Obverse (logic) -[2018-02-13T08:32:11.786] [INFO] cheese - inserting 1000 documents. first: 2010 Cincinnati Bengals season and last: Wikipedia:Valued picture candidates/Bigelow Bridge -[2018-02-13T08:32:11.842] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T08:32:11.881] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:32:11.894] [INFO] cheese - inserting 1000 documents. first: Kineshma Urban Okrug and last: Category:1733 in Denmark -[2018-02-13T08:32:11.914] [INFO] cheese - inserting 1000 documents. first: Dynamic memory allocation and last: Zionist conspiracy theories regarding the September 11, 2001 Attacks -[2018-02-13T08:32:11.997] [INFO] cheese - inserting 1000 documents. first: Merchantville Country Club and last: Ecumenical Patriarch Photius II of Constantinople -[2018-02-13T08:32:12.047] [INFO] cheese - inserting 1000 documents. first: TNMD and last: Template:Taxonomy/Holmesina -[2018-02-13T08:32:12.054] [INFO] cheese - inserting 1000 documents. first: C. crispa and last: Klaw (comics) -[2018-02-13T08:32:12.126] [INFO] cheese - batch complete in: 1.386 secs -[2018-02-13T08:32:12.164] [INFO] cheese - batch complete in: 2.395 secs -[2018-02-13T08:32:12.200] [INFO] cheese - batch complete in: 1.268 secs -[2018-02-13T08:32:12.209] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:32:12.250] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:32:12.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Training/tour/be bold14 and last: Mount Whitecap -[2018-02-13T08:32:12.607] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:32:12.815] [INFO] cheese - inserting 1000 documents. first: University Park (Indianapolis, Indiana) and last: Bernard Fitzalan-Howard -[2018-02-13T08:32:12.906] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions by former country and last: Wikipedia:Sockpuppet investigations/90.217.191.31/Archive -[2018-02-13T08:32:12.914] [INFO] cheese - inserting 1000 documents. first: Compact Oxford Dictionary and last: Berberyan -[2018-02-13T08:32:12.932] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:32:12.962] [INFO] cheese - inserting 1000 documents. first: Independent Primary School Heads of Australia and last: Jennifer L. Knox -[2018-02-13T08:32:12.995] [INFO] cheese - inserting 1000 documents. first: Hsiahou Tun and last: Submarine telecommunications cable -[2018-02-13T08:32:12.998] [INFO] cheese - inserting 1000 documents. first: Kofi (comics) and last: Wikipedia:Articles for deletion/Today I Caught the Plague -[2018-02-13T08:32:13.028] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:32:13.066] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:32:13.154] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:32:13.204] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:32:13.185] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:32:13.384] [INFO] cheese - inserting 1000 documents. first: Kani Seyf and last: José María Dueso -[2018-02-13T08:32:13.493] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:32:13.715] [INFO] cheese - inserting 1000 documents. first: Chico Carrasquel and last: Foreign terrorist organizations -[2018-02-13T08:32:13.854] [INFO] cheese - inserting 1000 documents. first: Svenska Cupen 1943 and last: Category:Bomber aircraft 1910-1919 -[2018-02-13T08:32:14.015] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:32:14.097] [INFO] cheese - batch complete in: 1.932 secs -[2018-02-13T08:32:14.285] [INFO] cheese - inserting 1000 documents. first: Samuel H. Hoge and last: Wikipedia:Articles for deletion/Fake Chapter Records -[2018-02-13T08:32:14.308] [INFO] cheese - inserting 1000 documents. first: Caithness Glass and last: I Megaliteres Epitihies (Mando album) -[2018-02-13T08:32:14.418] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:32:14.422] [INFO] cheese - inserting 1000 documents. first: Mpaglamas and last: European Parliament election, 1979 -[2018-02-13T08:32:14.444] [INFO] cheese - inserting 1000 documents. first: Category:Shipping in Scotland and last: Country codes: R -[2018-02-13T08:32:14.447] [INFO] cheese - inserting 1000 documents. first: Snow Speedwell and last: Bácum Municipality -[2018-02-13T08:32:14.471] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:32:14.559] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T08:32:14.664] [INFO] cheese - inserting 1000 documents. first: Archaic-Early Basketmaker Era and last: Actinoplanes -[2018-02-13T08:32:14.665] [INFO] cheese - inserting 1000 documents. first: File:Sport Ancash Old.gif and last: Stereoelectronic effect -[2018-02-13T08:32:14.719] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:32:14.722] [INFO] cheese - batch complete in: 1.528 secs -[2018-02-13T08:32:14.742] [INFO] cheese - batch complete in: 1.809 secs -[2018-02-13T08:32:14.900] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:32:15.246] [INFO] cheese - inserting 1000 documents. first: MagillOn and last: Byron Smith (rugby league) -[2018-02-13T08:32:15.282] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:32:15.412] [INFO] cheese - inserting 1000 documents. first: Blue Movie (film) and last: 1998 World Rally Championship season -[2018-02-13T08:32:15.450] [INFO] cheese - inserting 1000 documents. first: Category:Fighter aircraft 1920-1929 and last: Izbičanj -[2018-02-13T08:32:15.507] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:32:15.511] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:32:15.535] [INFO] cheese - inserting 1000 documents. first: Banámichi Municipality and last: Chlorodius bidentatus -[2018-02-13T08:32:15.710] [INFO] cheese - inserting 1000 documents. first: Mowbray herald extraordinary and last: Category:National Basketball Association players from Lithuania -[2018-02-13T08:32:15.716] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:32:15.721] [INFO] cheese - inserting 1000 documents. first: Moskow and last: Barnstable County -[2018-02-13T08:32:15.762] [INFO] cheese - inserting 1000 documents. first: Melkizedek and last: McAlmond House -[2018-02-13T08:32:15.799] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:32:15.834] [INFO] cheese - inserting 1000 documents. first: ANSI character set and last: Quadraplegia -[2018-02-13T08:32:15.882] [INFO] cheese - inserting 1000 documents. first: Czechowice-Dziedzice Commune and last: HR 603 -[2018-02-13T08:32:15.936] [INFO] cheese - batch complete in: 1.377 secs -[2018-02-13T08:32:16.033] [INFO] cheese - batch complete in: 1.936 secs -[2018-02-13T08:32:16.069] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:32:16.119] [INFO] cheese - batch complete in: 1.396 secs -[2018-02-13T08:32:16.345] [INFO] cheese - inserting 1000 documents. first: Category:Israeli military aircraft 1980-1989 and last: Wikipedia:WikiProject Spam/LinkReports/jcbrasil.webnode.com -[2018-02-13T08:32:16.419] [INFO] cheese - inserting 1000 documents. first: Li Shan (volleybal) and last: Jan Tarło (XV-1550) -[2018-02-13T08:32:16.496] [INFO] cheese - inserting 1000 documents. first: Confucius Lives Next Door: What living in the East teaches us about living in the west and last: Richard Greeff -[2018-02-13T08:32:16.506] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:32:16.628] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:32:16.744] [INFO] cheese - inserting 1000 documents. first: Chlorodiella bidentata and last: KLICK syndrome -[2018-02-13T08:32:16.755] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:32:16.858] [INFO] cheese - inserting 1000 documents. first: Pentecostalists and last: Andrica Conjecture -[2018-02-13T08:32:16.888] [INFO] cheese - inserting 1000 documents. first: Template:Foreign relations of Moldova and last: Diocese of Boulogne-sur-Mer -[2018-02-13T08:32:16.909] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:32:17.039] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:32:17.069] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:32:17.300] [INFO] cheese - inserting 1000 documents. first: Mikołaj Firlej (?-1588) and last: The Blockbuster Buster -[2018-02-13T08:32:17.316] [INFO] cheese - inserting 1000 documents. first: Gemmae and last: Borough Fen -[2018-02-13T08:32:17.380] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:32:17.485] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:32:17.559] [INFO] cheese - inserting 1000 documents. first: Carlos Motta Taracena and last: Baby Aston -[2018-02-13T08:32:17.606] [INFO] cheese - inserting 1000 documents. first: Q+/Papias hypothesis and last: Argyllshire by-election, 1940 -[2018-02-13T08:32:17.613] [INFO] cheese - inserting 1000 documents. first: Barnes County and last: STS-83 -[2018-02-13T08:32:17.720] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:32:17.866] [INFO] cheese - inserting 1000 documents. first: Andrzej Bialynicki-Birula and last: Manitoba Junior Hockey League 2007 -[2018-02-13T08:32:17.885] [INFO] cheese - inserting 1000 documents. first: Krumlov (disambiguation) and last: The Methods of Ethics -[2018-02-13T08:32:17.893] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T08:32:17.931] [INFO] cheese - batch complete in: 1.898 secs -[2018-02-13T08:32:17.987] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:32:18.031] [INFO] cheese - inserting 1000 documents. first: Alfred Barton Rendle and last: Wikipedia:Peer review/List of elements by nuclear stability/archive1 -[2018-02-13T08:32:18.051] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:32:18.219] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:32:18.325] [INFO] cheese - inserting 1000 documents. first: Nationwide League (Kenya Rugby Union) and last: Archdiocese of St Andrews (Episcopal) -[2018-02-13T08:32:18.452] [INFO] cheese - inserting 1000 documents. first: Matthew Crabb and last: Category:Soviet sport aircraft 1980-1989 -[2018-02-13T08:32:18.487] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:32:18.530] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:32:18.640] [INFO] cheese - inserting 1000 documents. first: Podcast Pickle and last: Statute of Uses Act 1535 -[2018-02-13T08:32:18.851] [INFO] cheese - inserting 1000 documents. first: Invictus (Means) Unconquered and last: Sigismunda mourning over the Heart of Guiscardo -[2018-02-13T08:32:18.935] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T08:32:18.955] [INFO] cheese - inserting 1000 documents. first: Na-Meo language and last: Paul Clauson -[2018-02-13T08:32:19.013] [INFO] cheese - inserting 1000 documents. first: Multipurpose Laboratory Module and last: Bilton Junior School -[2018-02-13T08:32:18.887] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:32:19.063] [INFO] cheese - inserting 1000 documents. first: Alfred Neumann (writer) and last: Small red damselfly -[2018-02-13T08:32:19.214] [INFO] cheese - batch complete in: 1.321 secs -[2018-02-13T08:32:19.232] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:32:19.430] [INFO] cheese - batch complete in: 1.443 secs -[2018-02-13T08:32:19.455] [INFO] cheese - inserting 1000 documents. first: Archdiocese of Saint Andrew's (Episcopal) and last: Rabdion grovesi -[2018-02-13T08:32:19.468] [INFO] cheese - inserting 1000 documents. first: Goločelo (Stanovo) and last: Nur az-Zaman -[2018-02-13T08:32:19.664] [INFO] cheese - inserting 1000 documents. first: Furmint and last: Mūlamadhyamakakārikā -[2018-02-13T08:32:19.677] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:32:19.670] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:32:19.938] [INFO] cheese - batch complete in: 2.006 secs -[2018-02-13T08:32:20.227] [INFO] cheese - inserting 1000 documents. first: File:Girl Guides South Africa.png and last: Della Pia Glacier -[2018-02-13T08:32:20.259] [INFO] cheese - inserting 1000 documents. first: ISO 8601:1988 and last: Armand Louis de Gontaut-Biron -[2018-02-13T08:32:20.293] [INFO] cheese - inserting 1000 documents. first: Craigmore, Zimbabwe and last: Busy wait -[2018-02-13T08:32:20.382] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T08:32:20.410] [INFO] cheese - batch complete in: 1.523 secs -[2018-02-13T08:32:20.437] [INFO] cheese - inserting 1000 documents. first: Tillandsia eizii and last: 2010 Copa Rommel Fernández -[2018-02-13T08:32:20.482] [INFO] cheese - inserting 1000 documents. first: Jessica Denay and last: Roman Catholic Diocese of St. Andrew's -[2018-02-13T08:32:20.549] [INFO] cheese - batch complete in: 1.614 secs -[2018-02-13T08:32:20.649] [INFO] cheese - batch complete in: 1.417 secs -[2018-02-13T08:32:20.664] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:32:20.758] [INFO] cheese - inserting 1000 documents. first: File:OtisSkinner.jpg and last: Konzo -[2018-02-13T08:32:20.785] [INFO] cheese - inserting 1000 documents. first: Fitzhugh Mounds and last: File:Zbirka - Doktor Sen.jpeg -[2018-02-13T08:32:20.884] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:32:20.946] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:32:21.135] [INFO] cheese - inserting 1000 documents. first: California Grand Casino and last: Ty Cullen -[2018-02-13T08:32:21.233] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:32:21.257] [INFO] cheese - inserting 1000 documents. first: Template:Maryland-basketball-team-stub and last: Wish chip -[2018-02-13T08:32:21.298] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of St Andrew's and last: 935th Military Airlift Group -[2018-02-13T08:32:21.358] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:32:21.384] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:32:21.501] [INFO] cheese - inserting 1000 documents. first: Copa Rommel Fernandez 2010 and last: File:Rough 'n' Tumble.jpg -[2018-02-13T08:32:21.590] [INFO] cheese - inserting 1000 documents. first: Anglican Church of Australia and last: Compass variation -[2018-02-13T08:32:21.607] [INFO] cheese - inserting 1000 documents. first: Philosophies of time and last: Cover Girl (New Kids on the Block song) -[2018-02-13T08:32:21.607] [INFO] cheese - inserting 1000 documents. first: Category:Columbia University Graduate School of Journalism faculty and last: File:ThermiteReaction Crop.jpg -[2018-02-13T08:32:21.651] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:32:21.718] [INFO] cheese - inserting 1000 documents. first: Crazy Little Thing Called Love (D:TNG episode) and last: Wikipedia:Articles for deletion/Thomas & Friends: A Day at the Races -[2018-02-13T08:32:21.785] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:32:21.780] [INFO] cheese - batch complete in: 1.841 secs -[2018-02-13T08:32:21.809] [INFO] cheese - batch complete in: 1.26 secs -[2018-02-13T08:32:21.938] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:32:22.130] [INFO] cheese - inserting 1000 documents. first: Category:Law enforcement agencies of Northern Ireland and last: 2000 North American Championship -[2018-02-13T08:32:22.144] [INFO] cheese - inserting 1000 documents. first: Category:Writers from São Vicente, Cape Verde and last: Portal:Rock music/OnThisDay/February 10 -[2018-02-13T08:32:22.172] [INFO] cheese - inserting 1000 documents. first: Chatham-Kent—Leamington and last: File:FreedomOf'76.jpeg -[2018-02-13T08:32:22.173] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:32:22.218] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:32:22.305] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:32:22.506] [INFO] cheese - inserting 1000 documents. first: Problem fiction and last: Kabaka Ronald -[2018-02-13T08:32:22.696] [INFO] cheese - inserting 1000 documents. first: St Bernard's Catholic School, Buckinghamshire and last: Dave Reid (ice hockey) -[2018-02-13T08:32:22.711] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:32:22.752] [INFO] cheese - inserting 1000 documents. first: Edgar Dykstra and last: Adagur H. Vishwanath -[2018-02-13T08:32:22.903] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:32:23.043] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:32:23.229] [INFO] cheese - inserting 1000 documents. first: Rafflesia consueloae and last: Casco Histórico de Vicálvaro -[2018-02-13T08:32:23.239] [INFO] cheese - inserting 1000 documents. first: Awareness days and last: Poznań Society of Friends of Arts and Sciences -[2018-02-13T08:32:23.298] [INFO] cheese - inserting 1000 documents. first: MN-111 mine and last: Kotapalle -[2018-02-13T08:32:23.389] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:32:23.427] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T08:32:23.527] [INFO] cheese - batch complete in: 1.589 secs -[2018-02-13T08:32:23.600] [INFO] cheese - inserting 1000 documents. first: 21 Lutetia and last: Sing Lung -[2018-02-13T08:32:23.730] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dubrovnik-online.net and last: Up All Night – Deric Ruttan Live -[2018-02-13T08:32:23.769] [INFO] cheese - batch complete in: 1.987 secs -[2018-02-13T08:32:23.847] [INFO] cheese - inserting 1000 documents. first: Lonely Nights (song) and last: Template:User Baltic states -[2018-02-13T08:32:23.864] [INFO] cheese - inserting 1000 documents. first: Lilu shi and last: List of mayors of Merton -[2018-02-13T08:32:23.865] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:32:24.007] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:32:24.043] [INFO] cheese - batch complete in: 1.738 secs -[2018-02-13T08:32:24.256] [INFO] cheese - inserting 1000 documents. first: Nature Coast, Florida and last: University admissions -[2018-02-13T08:32:24.271] [INFO] cheese - inserting 1000 documents. first: Category:Vicálvaro and last: Category:1507 establishments in India -[2018-02-13T08:32:24.332] [INFO] cheese - inserting 1000 documents. first: Dmitry I Starshiy and last: Birou -[2018-02-13T08:32:24.391] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:32:24.396] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:32:24.533] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:32:24.599] [INFO] cheese - inserting 1000 documents. first: Kouthala and last: The Duchess of Kent -[2018-02-13T08:32:24.806] [INFO] cheese - inserting 1000 documents. first: Hundred of Taunton Deane and last: Cetancodonta -[2018-02-13T08:32:24.808] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:32:24.899] [INFO] cheese - inserting 1000 documents. first: Richard Williams (cricketer, born 1957) and last: 2013-14 Oregon State Beavers women's basketball team -[2018-02-13T08:32:24.916] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:32:24.923] [INFO] cheese - inserting 1000 documents. first: NYS Route 291 and last: Speechmakers -[2018-02-13T08:32:25.006] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:32:25.154] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:32:25.257] [INFO] cheese - inserting 1000 documents. first: Category:Rodent taxonomy and last: Ride of Your Life -[2018-02-13T08:32:25.355] [INFO] cheese - inserting 1000 documents. first: Chéng Lóng and last: Doc Daneeka -[2018-02-13T08:32:25.384] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:32:25.651] [INFO] cheese - batch complete in: 1.882 secs -[2018-02-13T08:32:25.714] [INFO] cheese - inserting 1000 documents. first: Skullstep and last: Danny Lamb -[2018-02-13T08:32:25.755] [INFO] cheese - inserting 1000 documents. first: MBM (filename) and last: Tom Ferrick -[2018-02-13T08:32:25.767] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Trollaxor (2nd nomination) and last: Bloubergstrand -[2018-02-13T08:32:25.810] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:32:25.948] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:32:26.029] [INFO] cheese - batch complete in: 1.638 secs -[2018-02-13T08:32:26.043] [INFO] cheese - inserting 1000 documents. first: Borah and last: S. lanceolata -[2018-02-13T08:32:26.169] [INFO] cheese - inserting 1000 documents. first: Wallace Smith (illustrator) and last: Penthina thapsiana -[2018-02-13T08:32:26.170] [INFO] cheese - batch complete in: 1.254 secs -[2018-02-13T08:32:26.206] [INFO] cheese - inserting 1000 documents. first: Speech-makers and last: Wikipedia:LSDL -[2018-02-13T08:32:26.282] [INFO] cheese - inserting 1000 documents. first: Night of the Auk and last: Category:National Register of Historic Places in Kings County, California -[2018-02-13T08:32:26.353] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:32:26.372] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T08:32:26.448] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:32:26.834] [INFO] cheese - inserting 1000 documents. first: Leo Kasper and last: Betta pellets -[2018-02-13T08:32:26.837] [INFO] cheese - inserting 1000 documents. first: Transient acantholytic dermatosis and last: R684 road (Ireland) -[2018-02-13T08:32:26.877] [INFO] cheese - inserting 1000 documents. first: Lanceolata and last: Fanshawe (surname) -[2018-02-13T08:32:26.919] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:32:26.940] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:32:27.008] [INFO] cheese - inserting 1000 documents. first: Category:1965 in the Solomon Islands and last: Sophronica bituberculata -[2018-02-13T08:32:26.992] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:32:27.146] [INFO] cheese - inserting 1000 documents. first: Ayşe Hatun (wife of Bayezid II) and last: Category:People from Tengushevsky District -[2018-02-13T08:32:27.151] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:32:27.162] [INFO] cheese - inserting 1000 documents. first: LET SLEEPING DOGS LIE and last: Miroslav Bednařík -[2018-02-13T08:32:27.218] [INFO] cheese - inserting 1000 documents. first: Arrondissement of Nanterre and last: File:Nolan10.jpg -[2018-02-13T08:32:27.249] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:32:27.238] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:32:27.335] [INFO] cheese - inserting 1000 documents. first: Glyfada and last: Lancashire and Yorkshire Railway -[2018-02-13T08:32:27.396] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:32:27.607] [INFO] cheese - batch complete in: 1.956 secs -[2018-02-13T08:32:27.904] [INFO] cheese - inserting 1000 documents. first: Template:Biology-journal-stub and last: Ferenc Sánta -[2018-02-13T08:32:27.911] [INFO] cheese - inserting 1000 documents. first: Category:Transport in the City of Sunderland and last: Portal:Numismatics/Banknotes/5 -[2018-02-13T08:32:28.002] [INFO] cheese - inserting 1000 documents. first: Craig Shapiro and last: Template:Montana Grizzlies football navbox -[2018-02-13T08:32:28.019] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:32:28.032] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:32:28.039] [INFO] cheese - inserting 1000 documents. first: Administrative division of the Grand Duchy of Lithuania (1569–1795) and last: Silent Comedy -[2018-02-13T08:32:28.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Demo '93 and last: Move act -[2018-02-13T08:32:28.178] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:32:28.210] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:32:28.296] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:32:28.644] [INFO] cheese - inserting 1000 documents. first: Sir Nikolaus Pevsner and last: Primrose Gardner -[2018-02-13T08:32:28.786] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:32:28.822] [INFO] cheese - inserting 1000 documents. first: Category:Tourism in Jharkhand and last: International Federation for Information and Documentation -[2018-02-13T08:32:28.860] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Michael Jackson/Barnstar Workshop and last: Jascinda barrett -[2018-02-13T08:32:28.906] [INFO] cheese - inserting 1000 documents. first: Sophronica bituberosa and last: Sternoptyx diaphana -[2018-02-13T08:32:29.002] [INFO] cheese - inserting 1000 documents. first: National Board for Safeguarding Children in the Catholic Church and last: Eunice W. Johnson -[2018-02-13T08:32:29.014] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:32:29.034] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:32:29.047] [INFO] cheese - inserting 1000 documents. first: Cigno and last: July Revolution of 1968 -[2018-02-13T08:32:29.105] [INFO] cheese - batch complete in: 1.954 secs -[2018-02-13T08:32:29.109] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:32:29.111] [INFO] cheese - inserting 1000 documents. first: Oxymora and last: Scooter (band) -[2018-02-13T08:32:29.233] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:32:29.335] [INFO] cheese - batch complete in: 1.727 secs -[2018-02-13T08:32:29.535] [INFO] cheese - inserting 1000 documents. first: This Night (song) and last: Category:Heaven Below albums -[2018-02-13T08:32:29.668] [INFO] cheese - inserting 1000 documents. first: Pitelis and last: Category:Roman Catholic churches in West Virginia -[2018-02-13T08:32:29.669] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:32:29.781] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:32:29.794] [INFO] cheese - inserting 1000 documents. first: Second Italian-Abyssian War and last: Mikhail Iampolski -[2018-02-13T08:32:29.888] [INFO] cheese - inserting 1000 documents. first: July 1968 revolution and last: Projekat Rastko -[2018-02-13T08:32:29.886] [INFO] cheese - inserting 1000 documents. first: Marinestation Nordsee and last: Thomas Buchmayer -[2018-02-13T08:32:29.925] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:32:29.955] [INFO] cheese - inserting 1000 documents. first: Primo Victoria and last: Charles Barnard (castaway) -[2018-02-13T08:32:29.964] [INFO] cheese - inserting 1000 documents. first: USS Observation Island (AGM-23) and last: Mark Wardell -[2018-02-13T08:32:30.039] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:32:30.048] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:32:30.063] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:32:30.215] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:32:30.466] [INFO] cheese - inserting 1000 documents. first: Leximetrics and last: Category:Articles needing cleanup from December 2013 -[2018-02-13T08:32:30.645] [INFO] cheese - inserting 1000 documents. first: State Route 441 (New York) and last: David Neal -[2018-02-13T08:32:30.664] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:32:30.896] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:32:30.955] [INFO] cheese - inserting 1000 documents. first: Jianqiao Airport and last: File:Woodrow Wilson High School (Washington, D.C.) logo.jpg -[2018-02-13T08:32:31.023] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1560s BC and last: Terri Nickels -[2018-02-13T08:32:31.069] [INFO] cheese - inserting 1000 documents. first: Category:United States Virgin Islands-related lists and last: Wikipedia:Version 1.0 Editorial Team/India articles by quality/97 -[2018-02-13T08:32:31.131] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:32:31.166] [INFO] cheese - inserting 1000 documents. first: Yohlmo language and last: To Love-Ru episodes -[2018-02-13T08:32:31.201] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T08:32:31.284] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:32:31.372] [INFO] cheese - inserting 1000 documents. first: Billy(Billy and Mandy) and last: Unesco masterpieces -[2018-02-13T08:32:31.396] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:32:31.518] [INFO] cheese - inserting 1000 documents. first: John Forrest (Victorian politician) and last: David Auburn -[2018-02-13T08:32:31.527] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:32:31.738] [INFO] cheese - inserting 1000 documents. first: Category:Use New Zealand English from December 2013 and last: Bread and Roses (1993 film) -[2018-02-13T08:32:31.746] [INFO] cheese - batch complete in: 2.41 secs -[2018-02-13T08:32:31.843] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:32:31.933] [INFO] cheese - inserting 1000 documents. first: Music schools in Germany and last: Dunakisfalud -[2018-02-13T08:32:31.935] [INFO] cheese - inserting 1000 documents. first: Borinqueña and last: Janet Alexander -[2018-02-13T08:32:31.995] [INFO] cheese - inserting 1000 documents. first: I Wanna Go Backwards and last: Ślemień Commune -[2018-02-13T08:32:32.103] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:32:32.118] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Isla Riordan/Archive and last: File:Grateful Edyta Gorniak.jpeg -[2018-02-13T08:32:32.111] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:32:32.173] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:32:32.242] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:32:32.282] [INFO] cheese - inserting 1000 documents. first: The First Cathedral and last: Florence Reville Gibbs -[2018-02-13T08:32:32.383] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:32:32.533] [INFO] cheese - inserting 1000 documents. first: Gmina Slemien and last: Wasewo Commune -[2018-02-13T08:32:32.561] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:32:32.613] [INFO] cheese - inserting 1000 documents. first: Ostkaka and last: The Highlight Reel -[2018-02-13T08:32:32.671] [INFO] cheese - inserting 1000 documents. first: Category:Hermitages in Croatia and last: Mantispoidea -[2018-02-13T08:32:32.814] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:32:32.878] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:32:32.957] [INFO] cheese - inserting 1000 documents. first: Trait Leadership and last: Badminton at the 2003 All-Africa Games -[2018-02-13T08:32:33.034] [INFO] cheese - inserting 1000 documents. first: Michel Le Denmat and last: Category:Captains General of the Church -[2018-02-13T08:32:33.117] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:32:33.179] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:32:33.234] [INFO] cheese - inserting 1000 documents. first: Category:Victorian architecture in Rhode Island and last: Choiskiy Raion -[2018-02-13T08:32:33.385] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:32:33.627] [INFO] cheese - inserting 1000 documents. first: Honda Ishiro and last: Infield fly rule -[2018-02-13T08:32:33.635] [INFO] cheese - inserting 1000 documents. first: Category:Mumbai templates and last: Nikolaj Koch-Hansen -[2018-02-13T08:32:33.650] [INFO] cheese - inserting 1000 documents. first: David Kelley (disambiguation) and last: Fresno, CA MSA -[2018-02-13T08:32:33.748] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:32:33.932] [INFO] cheese - inserting 1000 documents. first: Category:Mantispoidea and last: Category:Census-designated places in Tompkins County, New York -[2018-02-13T08:32:33.945] [INFO] cheese - batch complete in: 2.199 secs -[2018-02-13T08:32:34.045] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T08:32:34.107] [INFO] cheese - inserting 1000 documents. first: Liane Cartman and last: Rolls-Royce Hawk -[2018-02-13T08:32:34.128] [INFO] cheese - inserting 1000 documents. first: Brett Breitkreuz and last: Wikipedia:Today's featured article/October 28, 2011 -[2018-02-13T08:32:34.171] [INFO] cheese - inserting 1000 documents. first: 1961 New Mexico State Aggies football team and last: Stephensoniella (genus) -[2018-02-13T08:32:34.217] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:32:34.313] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:32:34.432] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:32:34.495] [INFO] cheese - batch complete in: 1.617 secs -[2018-02-13T08:32:34.875] [INFO] cheese - inserting 1000 documents. first: Choiski Raion and last: Zorbees -[2018-02-13T08:32:34.988] [INFO] cheese - batch complete in: 1.603 secs -[2018-02-13T08:32:35.129] [INFO] cheese - inserting 1000 documents. first: Augustus Stephenson and last: Henley byelection -[2018-02-13T08:32:35.164] [INFO] cheese - inserting 1000 documents. first: Fresno-Madera, CA CSA and last: File:P-K Language Method fig6.png -[2018-02-13T08:32:35.196] [INFO] cheese - batch complete in: 1.448 secs -[2018-02-13T08:32:35.250] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Ulster County, New York and last: Alabama crimson -[2018-02-13T08:32:35.289] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T08:32:35.373] [INFO] cheese - inserting 1000 documents. first: Outer Mongolia (modern) and last: Koguryo people -[2018-02-13T08:32:35.435] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:32:35.440] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:32:35.482] [INFO] cheese - inserting 1000 documents. first: Zhestky and last: Alliance des Mouvements pour l'Emergence du Niger -[2018-02-13T08:32:35.493] [INFO] cheese - inserting 1000 documents. first: Duffing differential equation and last: Philosophy in the Tragic Age of the Greeks -[2018-02-13T08:32:35.618] [INFO] cheese - batch complete in: 1.305 secs -[2018-02-13T08:32:35.667] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:32:35.788] [INFO] cheese - inserting 1000 documents. first: File:Pijibeofestival.jpg and last: Einar Bragi Sigurðsson -[2018-02-13T08:32:35.846] [INFO] cheese - inserting 1000 documents. first: Labour Zionism and last: The Crusades -[2018-02-13T08:32:35.925] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:32:36.038] [INFO] cheese - inserting 1000 documents. first: Xwáýxway and last: Schiller–Duval body -[2018-02-13T08:32:36.043] [INFO] cheese - batch complete in: 2.098 secs -[2018-02-13T08:32:36.151] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:32:36.184] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian pop musicians and last: Pedro Nuno Colon de Portugal -[2018-02-13T08:32:36.227] [INFO] cheese - inserting 1000 documents. first: Category:Infocomm in Singapore and last: Paul Kitchen (musician) -[2018-02-13T08:32:36.348] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:32:36.412] [INFO] cheese - inserting 1000 documents. first: Zipit Wireless Messenger (Z2) and last: Celius Dougherty -[2018-02-13T08:32:36.429] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:32:36.518] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:32:36.593] [INFO] cheese - inserting 1000 documents. first: Baxterley, Warwickshire and last: Clark Mountain Range -[2018-02-13T08:32:36.683] [INFO] cheese - inserting 1000 documents. first: Category:Fictional Special Air Service personnel and last: Friend and Lover -[2018-02-13T08:32:36.743] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:32:36.787] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:32:36.823] [INFO] cheese - inserting 1000 documents. first: Ornithoctonus gadgili and last: World War II Memorial (disambiguation) -[2018-02-13T08:32:37.032] [INFO] cheese - batch complete in: 1.414 secs -[2018-02-13T08:32:37.124] [INFO] cheese - inserting 1000 documents. first: Madison central high school and last: Peak Dale, Derbyshire -[2018-02-13T08:32:37.169] [INFO] cheese - inserting 1000 documents. first: Big fan and last: Paulist Press -[2018-02-13T08:32:37.314] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:32:37.413] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:32:37.422] [INFO] cheese - inserting 1000 documents. first: File:The Bird is Free Album Cover.jpg and last: Sipahsalar -[2018-02-13T08:32:37.425] [INFO] cheese - inserting 1000 documents. first: Cluster chord and last: Dennis Waterman -[2018-02-13T08:32:37.544] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:32:37.546] [INFO] cheese - inserting 1000 documents. first: တင်အောင်မြင့်ဦး and last: Jimmy Dunn (Scottish footballer born 1923) -[2018-02-13T08:32:37.601] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:32:37.776] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T08:32:37.812] [INFO] cheese - inserting 1000 documents. first: Tender Comrade and last: File:Favouritehives.jpg -[2018-02-13T08:32:37.836] [INFO] cheese - inserting 1000 documents. first: Army Aviation Corps (Germany) and last: Wikipedia:Articles for deletion/Pipestone, Alberta -[2018-02-13T08:32:37.964] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:32:37.986] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:32:38.030] [INFO] cheese - inserting 1000 documents. first: Chavdartsi (disambiguation) and last: Yaletown–Roundhouse Station -[2018-02-13T08:32:38.119] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:32:38.165] [INFO] cheese - inserting 1000 documents. first: TN Permit and last: Portal:West Bengal/Did you know/37 -[2018-02-13T08:32:38.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mysterious Universe and last: Roman Catholic Diocese of Formosa, Brazil -[2018-02-13T08:32:38.354] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:32:38.434] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:32:38.466] [INFO] cheese - inserting 1000 documents. first: LUTA Sportswear and last: Bishop McGuinness Catholic High School -[2018-02-13T08:32:38.670] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:32:38.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/African Icons and last: Island castle -[2018-02-13T08:32:39.032] [INFO] cheese - inserting 1000 documents. first: Manius Aquillius (consul 129 BC) and last: Moon Landing Hoax -[2018-02-13T08:32:39.051] [INFO] cheese - inserting 1000 documents. first: 1920 Tulsa Orange and Black football team and last: Category:Controversies in Brazil -[2018-02-13T08:32:39.164] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pocahontas, Alberta and last: File:Sakartvelos Skauturi Modzraobis Organizatsia 1992.svg -[2018-02-13T08:32:39.233] [INFO] cheese - batch complete in: 1.457 secs -[2018-02-13T08:32:39.326] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:32:39.434] [INFO] cheese - batch complete in: 1.47 secs -[2018-02-13T08:32:39.446] [INFO] cheese - inserting 1000 documents. first: Annoyed grunt and last: St Louis Browns -[2018-02-13T08:32:39.578] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T08:32:39.927] [INFO] cheese - inserting 1000 documents. first: Moue and last: We Did It -[2018-02-13T08:32:40.096] [INFO] cheese - inserting 1000 documents. first: Ruri no shima and last: File:Lords of Madness book cover.jpg -[2018-02-13T08:32:40.118] [INFO] cheese - batch complete in: 2.516 secs -[2018-02-13T08:32:40.238] [INFO] cheese - inserting 1000 documents. first: Bishop McGuinness High School and last: Nau Garan -[2018-02-13T08:32:40.232] [INFO] cheese - batch complete in: 1.79 secs -[2018-02-13T08:32:40.468] [INFO] cheese - batch complete in: 2.113 secs -[2018-02-13T08:32:40.713] [INFO] cheese - batch complete in: 2.043 secs -[2018-02-13T08:32:41.188] [INFO] cheese - inserting 1000 documents. first: Disparagement of goods and last: Burlos -[2018-02-13T08:32:41.271] [INFO] cheese - inserting 1000 documents. first: George Pruteanu and last: CYD -[2018-02-13T08:32:41.283] [INFO] cheese - inserting 1000 documents. first: Tab Two (Tab Two Album) and last: Kanbi -[2018-02-13T08:32:41.348] [INFO] cheese - inserting 1000 documents. first: Master of the Lübeck Bible and last: Western patch-nosed snake -[2018-02-13T08:32:41.447] [INFO] cheese - inserting 1000 documents. first: James Coombs and last: Patrick Liljestrand -[2018-02-13T08:32:41.451] [INFO] cheese - batch complete in: 2.125 secs -[2018-02-13T08:32:41.610] [INFO] cheese - inserting 1000 documents. first: Buddhist Novitiate and last: The New Party -[2018-02-13T08:32:41.622] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:32:41.628] [INFO] cheese - batch complete in: 2.194 secs -[2018-02-13T08:32:41.663] [INFO] cheese - batch complete in: 2.43 secs -[2018-02-13T08:32:41.812] [INFO] cheese - batch complete in: 2.232 secs -[2018-02-13T08:32:41.914] [INFO] cheese - inserting 1000 documents. first: Navgaran and last: Grandi magazzini -[2018-02-13T08:32:41.978] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:32:42.261] [INFO] cheese - batch complete in: 1.548 secs -[2018-02-13T08:32:42.625] [INFO] cheese - inserting 1000 documents. first: American Society for Tropical Medicine and Hygiene and last: Draft:Betsy Wolfston -[2018-02-13T08:32:42.870] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:32:42.955] [INFO] cheese - inserting 1000 documents. first: St Louis County and last: SatireWire -[2018-02-13T08:32:42.971] [INFO] cheese - inserting 1000 documents. first: Jérémy Hélan and last: Wikipedia:SW/MOS -[2018-02-13T08:32:43.070] [INFO] cheese - inserting 1000 documents. first: Acheilognathus tabira erythropterus and last: Burma Worker's Party -[2018-02-13T08:32:43.146] [INFO] cheese - inserting 1000 documents. first: Vegard Samdahl and last: Agua Fria (disambiguation) -[2018-02-13T08:32:43.151] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:32:43.173] [INFO] cheese - inserting 1000 documents. first: Template:Cathead age of sail ships of the and last: Hermann Neuling -[2018-02-13T08:32:43.268] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:32:43.354] [INFO] cheese - batch complete in: 3.235 secs -[2018-02-13T08:32:43.442] [INFO] cheese - inserting 1000 documents. first: SEMESRA and last: 3"/50 caliber gun -[2018-02-13T08:32:43.554] [INFO] cheese - inserting 1000 documents. first: Japanese dictionaries and last: 1938 German Grand Prix -[2018-02-13T08:32:43.615] [INFO] cheese - batch complete in: 1.987 secs -[2018-02-13T08:32:43.714] [INFO] cheese - batch complete in: 2.091 secs -[2018-02-13T08:32:43.815] [INFO] cheese - batch complete in: 1.553 secs -[2018-02-13T08:32:43.967] [INFO] cheese - batch complete in: 1.988 secs -[2018-02-13T08:32:44.478] [INFO] cheese - inserting 1000 documents. first: Yourba and last: Category:World's fairs in Texas -[2018-02-13T08:32:44.653] [INFO] cheese - batch complete in: 1.783 secs -[2018-02-13T08:32:44.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:STARW/MOS and last: Category:Wikipedia sockpuppets of Marburg72 -[2018-02-13T08:32:44.699] [INFO] cheese - inserting 1000 documents. first: Template:Finance Ministers of Germany and last: Alexis Alexiou -[2018-02-13T08:32:44.809] [INFO] cheese - inserting 1000 documents. first: Pleasant Valley Grange Hall and last: Roads to You -[2018-02-13T08:32:44.879] [INFO] cheese - inserting 1000 documents. first: Department of Federal Revenue of Brazil and last: Computer access control -[2018-02-13T08:32:44.914] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:32:44.923] [INFO] cheese - batch complete in: 1.655 secs -[2018-02-13T08:32:44.982] [INFO] cheese - batch complete in: 1.831 secs -[2018-02-13T08:32:45.187] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:32:45.300] [INFO] cheese - inserting 1000 documents. first: Photosensitivity in animals and last: Bhor -[2018-02-13T08:32:45.485] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2007 February 26 and last: Young and restless (disambiguation) -[2018-02-13T08:32:45.583] [INFO] cheese - inserting 1000 documents. first: File:Teasin you cover.jpeg and last: Superior ligaments of the malleus bone -[2018-02-13T08:32:45.592] [INFO] cheese - batch complete in: 1.977 secs -[2018-02-13T08:32:45.809] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:32:45.817] [INFO] cheese - batch complete in: 1.85 secs -[2018-02-13T08:32:45.867] [INFO] cheese - inserting 1000 documents. first: Neoregelia 'Grey Nurse' and last: FC Střížkov Praha -[2018-02-13T08:32:45.920] [INFO] cheese - inserting 1000 documents. first: Yamaguti prefecture and last: Sharpstown scandal -[2018-02-13T08:32:46.039] [INFO] cheese - inserting 1000 documents. first: Broadway Bro Down and last: Category:Tourist attractions in Campbell County, Tennessee -[2018-02-13T08:32:46.148] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:32:46.166] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:32:46.296] [INFO] cheese - batch complete in: 2.942 secs -[2018-02-13T08:32:46.447] [INFO] cheese - inserting 1000 documents. first: Repeating circle and last: Neocaesarea (episcopal see) -[2018-02-13T08:32:46.551] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To the Unknown Land and last: Chinese General Chamber of Commerce -[2018-02-13T08:32:46.679] [INFO] cheese - batch complete in: 1.765 secs -[2018-02-13T08:32:46.824] [INFO] cheese - batch complete in: 1.637 secs -[2018-02-13T08:32:46.869] [INFO] cheese - inserting 1000 documents. first: Superior ligaments of malleus bone and last: Template:Japan PR list end -[2018-02-13T08:32:46.890] [INFO] cheese - inserting 1000 documents. first: Austin Ant and last: Turkic alphabets -[2018-02-13T08:32:47.158] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:32:47.167] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:32:47.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/blackboard.bangor.ac.uk and last: Wikipedia:WikiProject Spam/LinkReports/metaldelirium.net -[2018-02-13T08:32:47.376] [INFO] cheese - inserting 1000 documents. first: Stapleford, Zimbabwe and last: Automatas -[2018-02-13T08:32:47.405] [INFO] cheese - inserting 1000 documents. first: Canyon Overlook Trail and last: Template:Muang Thong United F.C. squad -[2018-02-13T08:32:47.411] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:32:47.627] [INFO] cheese - inserting 1000 documents. first: List of English words of Old Irish origin and last: Imloth Melui -[2018-02-13T08:32:47.667] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T08:32:47.744] [INFO] cheese - batch complete in: 2.151 secs -[2018-02-13T08:32:48.003] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T08:32:48.104] [INFO] cheese - inserting 1000 documents. first: Lau Chu-pak and last: Idyl Ibrahim -[2018-02-13T08:32:48.141] [INFO] cheese - inserting 1000 documents. first: Tati Talvar and last: Draft:Whittle likelihood -[2018-02-13T08:32:48.223] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T08:32:48.300] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:32:48.447] [INFO] cheese - inserting 1000 documents. first: Kluskus Indian Band and last: Sir George Bowyer, 7th Baronet -[2018-02-13T08:32:48.502] [INFO] cheese - inserting 1000 documents. first: At the Dream's Edge and last: Norman Bowell -[2018-02-13T08:32:48.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/metaldelirium.net and last: Sorkhrud-e Gharbi -[2018-02-13T08:32:48.629] [INFO] cheese - batch complete in: 1.462 secs -[2018-02-13T08:32:48.647] [INFO] cheese - inserting 1000 documents. first: Sharpstown affair and last: A Shropshire Lad -[2018-02-13T08:32:48.705] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:32:48.858] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:32:48.885] [INFO] cheese - inserting 1000 documents. first: Nédogo-Peulh and last: Wikipedia:Copyright problems/2008 June 12/Images -[2018-02-13T08:32:48.903] [INFO] cheese - batch complete in: 2.606 secs -[2018-02-13T08:32:48.944] [INFO] cheese - inserting 1000 documents. first: Delayed orgasm and last: Aethelric of Bernicia -[2018-02-13T08:32:49.020] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:32:49.235] [INFO] cheese - batch complete in: 1.491 secs -[2018-02-13T08:32:49.337] [INFO] cheese - inserting 1000 documents. first: File:Paleface Jack head and shoulders shillouuette.tif and last: Category:Freestyle skiing in Italy -[2018-02-13T08:32:49.401] [INFO] cheese - inserting 1000 documents. first: File:Industrie und Melodie album cover.jpg and last: Tohoshinki Live Tour 2013: Time -[2018-02-13T08:32:49.655] [INFO] cheese - batch complete in: 1.354 secs -[2018-02-13T08:32:49.668] [INFO] cheese - batch complete in: 1.445 secs -[2018-02-13T08:32:49.811] [INFO] cheese - inserting 1000 documents. first: Prt Sc and last: Category:Zoos in North Carolina -[2018-02-13T08:32:49.976] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T08:32:50.265] [INFO] cheese - inserting 1000 documents. first: Audio video disco and last: Durchmarsch -[2018-02-13T08:32:50.324] [INFO] cheese - inserting 1000 documents. first: Pozhiyoor and last: An Anglo-Saxon Dictionary -[2018-02-13T08:32:50.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2008 June 12 and last: File:L'Innomable - 1st Edition Cover.jpg -[2018-02-13T08:32:50.515] [INFO] cheese - inserting 1000 documents. first: STAG3 (gene) and last: Portal:Australian roads/Selected picture/6 -[2018-02-13T08:32:50.526] [INFO] cheese - batch complete in: 1.506 secs -[2018-02-13T08:32:50.585] [INFO] cheese - inserting 1000 documents. first: Howling III: The Marsupials and last: Category:Endemism -[2018-02-13T08:32:50.668] [INFO] cheese - batch complete in: 1.962 secs -[2018-02-13T08:32:50.787] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:32:50.814] [INFO] cheese - batch complete in: 1.956 secs -[2018-02-13T08:32:50.913] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:32:51.007] [INFO] cheese - inserting 1000 documents. first: Category:Freestyle skiing in Norway and last: Meitei Guun -[2018-02-13T08:32:51.054] [INFO] cheese - inserting 1000 documents. first: List of play techniques (bridge) and last: Oxydative phosphorylation -[2018-02-13T08:32:51.103] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:32:51.152] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:32:51.333] [INFO] cheese - inserting 1000 documents. first: Trowel and last: VGA connector -[2018-02-13T08:32:51.344] [INFO] cheese - inserting 1000 documents. first: Dorota Świeniewicz and last: Osuiu -[2018-02-13T08:32:51.496] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:32:51.682] [INFO] cheese - batch complete in: 2.779 secs -[2018-02-13T08:32:51.716] [INFO] cheese - inserting 1000 documents. first: Category:Local authorities in Gloucestershire and last: Rabolina weiss -[2018-02-13T08:32:51.720] [INFO] cheese - inserting 1000 documents. first: File:The Fitzpatricks.jpg and last: Lu Xiaoman -[2018-02-13T08:32:51.913] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:32:51.919] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:32:52.032] [INFO] cheese - inserting 1000 documents. first: Draft:Ricardo Karam and last: Category:Compositions by Zakaria Paliashvili -[2018-02-13T08:32:52.117] [INFO] cheese - inserting 1000 documents. first: Perion and last: Black British -[2018-02-13T08:32:52.197] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:32:52.206] [INFO] cheese - inserting 1000 documents. first: Google image search and last: The Homes of Football -[2018-02-13T08:32:52.245] [INFO] cheese - inserting 1000 documents. first: Boario Terme and last: Esperanza, Ucayali -[2018-02-13T08:32:52.308] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:32:52.465] [INFO] cheese - batch complete in: 1.651 secs -[2018-02-13T08:32:52.493] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:32:52.882] [INFO] cheese - inserting 1000 documents. first: Welsh Oak (pub) and last: Maveyan -[2018-02-13T08:32:52.958] [INFO] cheese - inserting 1000 documents. first: Category:Hindu iconography and last: Odeborn -[2018-02-13T08:32:52.986] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Trees and sunshine.JPG and last: Dangle (espionage) -[2018-02-13T08:32:53.027] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:32:53.096] [INFO] cheese - inserting 1000 documents. first: St. Richard of Chichester Church, Slindon and last: Category:Sledding competitions -[2018-02-13T08:32:53.192] [INFO] cheese - batch complete in: 1.273 secs -[2018-02-13T08:32:53.238] [INFO] cheese - batch complete in: 1.742 secs -[2018-02-13T08:32:53.300] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:32:53.576] [INFO] cheese - inserting 1000 documents. first: Heckler & Koch P8 and last: State Highway Route 84 (New Jersey) -[2018-02-13T08:32:53.599] [INFO] cheese - inserting 1000 documents. first: Wayen Rapadama and last: Darreh-ye Bum -[2018-02-13T08:32:53.690] [INFO] cheese - inserting 1000 documents. first: Stojanski Vrh and last: Robert Alexander Shafto Adair -[2018-02-13T08:32:53.730] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm Tempel and last: Tickhill -[2018-02-13T08:32:53.812] [INFO] cheese - batch complete in: 1.504 secs -[2018-02-13T08:32:53.835] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T08:32:53.894] [INFO] cheese - inserting 1000 documents. first: Mir Assar and last: 2014 NWSL College Draft -[2018-02-13T08:32:53.894] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:32:54.083] [INFO] cheese - batch complete in: 2.401 secs -[2018-02-13T08:32:54.231] [INFO] cheese - inserting 1000 documents. first: Puerto Rico Highway 34 and last: Fear of a Black Hat (1993) -[2018-02-13T08:32:54.284] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:32:54.384] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Plagiosaurus and last: Charlie Brown's Wind Up -[2018-02-13T08:32:54.393] [INFO] cheese - inserting 1000 documents. first: Template:US-screen-actor-1910s-stub and last: 2007 New Zealand rugby league season -[2018-02-13T08:32:54.541] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:32:54.565] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:32:54.584] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T08:32:54.770] [INFO] cheese - inserting 1000 documents. first: Sir Robert Alexander Shafto Adair, 2nd Baronet and last: Pitcairnia hitchcockiana -[2018-02-13T08:32:54.810] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:32:54.938] [INFO] cheese - inserting 1000 documents. first: Thomas Deruda and last: Outdoor clothes -[2018-02-13T08:32:54.992] [INFO] cheese - inserting 1000 documents. first: Grass eating men and last: Edward Brennan (disambiguation) -[2018-02-13T08:32:55.066] [INFO] cheese - inserting 1000 documents. first: New Jersey State Highway Route 84 and last: Category:Nebraska Cornhuskers football -[2018-02-13T08:32:55.071] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:32:55.139] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:32:55.201] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:32:55.568] [INFO] cheese - inserting 1000 documents. first: Stripling and last: Vipera russelli limitis -[2018-02-13T08:32:55.666] [INFO] cheese - inserting 1000 documents. first: Mirza (lemur) and last: Illegal Music 3: The Finale -[2018-02-13T08:32:55.714] [INFO] cheese - inserting 1000 documents. first: Mulinan and last: Valezhir -[2018-02-13T08:32:55.766] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:32:55.868] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:32:55.900] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:32:56.010] [INFO] cheese - inserting 1000 documents. first: 2009–10 AFC Ajax season and last: Template:2008 Summer Olympics women's volleyball game B14 -[2018-02-13T08:32:56.237] [INFO] cheese - inserting 1000 documents. first: Dantrolene Sodium and last: António Araújo -[2018-02-13T08:32:56.242] [INFO] cheese - batch complete in: 1.676 secs -[2018-02-13T08:32:56.369] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Swimming Members and last: Isabel Le Brun de Pinochet -[2018-02-13T08:32:56.433] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:32:56.617] [INFO] cheese - batch complete in: 1.546 secs -[2018-02-13T08:32:56.638] [INFO] cheese - inserting 1000 documents. first: Nogeoldae and last: Boleslaus V, Duke of Poland -[2018-02-13T08:32:56.701] [INFO] cheese - inserting 1000 documents. first: Category:Heartland Collegiate Athletic Conference and last: Long Serpent -[2018-02-13T08:32:56.869] [INFO] cheese - batch complete in: 1.668 secs -[2018-02-13T08:32:56.900] [INFO] cheese - batch complete in: 2.817 secs -[2018-02-13T08:32:56.935] [INFO] cheese - inserting 1000 documents. first: Just Another Girl (disambiguation) and last: Obed Arizona -[2018-02-13T08:32:57.031] [INFO] cheese - inserting 1000 documents. first: Xiao xian rou and last: Stenidea insignis -[2018-02-13T08:32:57.124] [INFO] cheese - inserting 1000 documents. first: Kim Gyusik and last: Route nationale 22 -[2018-02-13T08:32:57.177] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:32:57.201] [INFO] cheese - batch complete in: 1.301 secs -[2018-02-13T08:32:57.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Grey2K USA and last: Third coalition -[2018-02-13T08:32:57.383] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:32:57.383] [INFO] cheese - batch complete in: 1.514 secs -[2018-02-13T08:32:57.407] [INFO] cheese - inserting 1000 documents. first: Khalifa Bin Jassim and last: Euplocia moderata -[2018-02-13T08:32:57.668] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:32:57.672] [INFO] cheese - inserting 1000 documents. first: The Phantom Zone and last: File:Cornteapackage.jpg -[2018-02-13T08:32:57.883] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T08:32:57.984] [INFO] cheese - inserting 1000 documents. first: Structure, Sign, and Play in the Discourse of the Human Sciences and last: Deal (NJ) -[2018-02-13T08:32:58.127] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T08:32:58.295] [INFO] cheese - inserting 1000 documents. first: Tazehabad-e Saravaryeh and last: Category:Indian Internet celebrities -[2018-02-13T08:32:58.500] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:32:58.546] [INFO] cheese - inserting 1000 documents. first: University Of Nebraska and last: Octopuses -[2018-02-13T08:32:58.579] [INFO] cheese - inserting 1000 documents. first: Schrote and last: Empress Wang (Huizong) -[2018-02-13T08:32:58.737] [INFO] cheese - inserting 1000 documents. first: Edward Evans (murder victim) and last: South Ferry (ferry) -[2018-02-13T08:32:58.738] [INFO] cheese - inserting 1000 documents. first: File:Now 93 UK Cover.jpg and last: Lehigh Line (June 11, 1855–September 11, 1855) -[2018-02-13T08:32:58.765] [INFO] cheese - batch complete in: 1.865 secs -[2018-02-13T08:32:58.772] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:32:58.795] [INFO] cheese - inserting 1000 documents. first: Euplocia inconspicua and last: Ingersleben -[2018-02-13T08:32:58.931] [INFO] cheese - inserting 1000 documents. first: Eileen Whelan and last: Category:Novels by Aphra Behn -[2018-02-13T08:32:58.948] [INFO] cheese - batch complete in: 1.565 secs -[2018-02-13T08:32:58.994] [INFO] cheese - batch complete in: 1.793 secs -[2018-02-13T08:32:59.096] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:32:59.234] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:32:59.527] [INFO] cheese - inserting 1000 documents. first: Category:German Internet celebrities and last: Kabud Khani-ye Pa'in -[2018-02-13T08:32:59.689] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:32:59.887] [INFO] cheese - inserting 1000 documents. first: Luis Alcazar and last: Koh Seh -[2018-02-13T08:32:59.786] [INFO] cheese - inserting 1000 documents. first: West Long Branch (NJ) and last: Potti Sri Ramulu -[2018-02-13T08:33:00.113] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:33:00.138] [INFO] cheese - batch complete in: 2.01 secs -[2018-02-13T08:33:00.171] [INFO] cheese - inserting 1000 documents. first: InsideOUT Writers and last: Trikala, Corinthia -[2018-02-13T08:33:00.291] [INFO] cheese - inserting 1000 documents. first: Soil Natural Capital and last: St Antholin Watling Street -[2018-02-13T08:33:00.294] [INFO] cheese - inserting 1000 documents. first: Catholic Educational Association and last: David Kennedy (Australian politician) -[2018-02-13T08:33:00.299] [INFO] cheese - batch complete in: 1.305 secs -[2018-02-13T08:33:00.375] [INFO] cheese - inserting 1000 documents. first: Category:1994 in Chad and last: Category:Julian Marley albums -[2018-02-13T08:33:00.442] [INFO] cheese - inserting 1000 documents. first: Tyubu and last: Taygete (moon) -[2018-02-13T08:33:00.467] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T08:33:00.487] [INFO] cheese - batch complete in: 1.714 secs -[2018-02-13T08:33:00.617] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:33:00.698] [INFO] cheese - batch complete in: 1.933 secs -[2018-02-13T08:33:00.828] [INFO] cheese - inserting 1000 documents. first: Kabud Khani-ye Pain and last: Rude Removal System -[2018-02-13T08:33:00.988] [INFO] cheese - batch complete in: 1.299 secs -[2018-02-13T08:33:01.103] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Captchadefiner and last: The Parkers: Kim's 21st Birthday -[2018-02-13T08:33:01.181] [INFO] cheese - inserting 1000 documents. first: WTWS-FM and last: Punch marked coins of india -[2018-02-13T08:33:01.302] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:33:01.337] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:33:01.444] [INFO] cheese - inserting 1000 documents. first: Clipping (audio) and last: Rally Point (novel) -[2018-02-13T08:33:01.546] [INFO] cheese - inserting 1000 documents. first: Allhallows the Great, Thames Street and last: CLs method (particle physics) -[2018-02-13T08:33:01.558] [INFO] cheese - batch complete in: 1.42 secs -[2018-02-13T08:33:01.678] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dr John Pridgeon and last: Hypsa ghara -[2018-02-13T08:33:01.722] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T08:33:01.813] [INFO] cheese - inserting 1000 documents. first: File:It Aint 4 Play.jpg and last: Alfred Gaertner -[2018-02-13T08:33:01.887] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T08:33:02.267] [INFO] cheese - batch complete in: 1.8 secs -[2018-02-13T08:33:02.330] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian actors by century and last: Scaruffi -[2018-02-13T08:33:02.409] [INFO] cheese - inserting 1000 documents. first: Chronicle of Anna Magdalena Bach and last: Steve McQwark -[2018-02-13T08:33:02.430] [INFO] cheese - inserting 1000 documents. first: Robinson soll nicht sterben and last: Suzanne Jackson -[2018-02-13T08:33:02.537] [INFO] cheese - batch complete in: 1.548 secs -[2018-02-13T08:33:02.605] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:33:02.665] [INFO] cheese - inserting 1000 documents. first: Lazy eye and last: Malcolm Bradbury -[2018-02-13T08:33:02.705] [INFO] cheese - batch complete in: 1.367 secs -[2018-02-13T08:33:02.955] [INFO] cheese - batch complete in: 2.257 secs -[2018-02-13T08:33:03.016] [INFO] cheese - inserting 1000 documents. first: The Yellow Princess (John Fahey album) and last: Cassau -[2018-02-13T08:33:03.089] [INFO] cheese - inserting 1000 documents. first: Ugly (Single) and last: File:WHB Logo.png -[2018-02-13T08:33:03.123] [INFO] cheese - inserting 1000 documents. first: Phalaena heliconia and last: A. elliptica -[2018-02-13T08:33:03.200] [INFO] cheese - batch complete in: 1.478 secs -[2018-02-13T08:33:03.310] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:33:03.357] [INFO] cheese - batch complete in: 1.799 secs -[2018-02-13T08:33:03.545] [INFO] cheese - inserting 1000 documents. first: The Muffin King and last: Donald W. Riegle, Jr -[2018-02-13T08:33:03.657] [INFO] cheese - inserting 1000 documents. first: Neelam Shirke and last: Nashua nh -[2018-02-13T08:33:03.617] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:33:03.735] [INFO] cheese - inserting 1000 documents. first: Template:Bollywood hungama and last: Category:People from Saale-Holzland-Kreis -[2018-02-13T08:33:03.818] [INFO] cheese - batch complete in: 1.549 secs -[2018-02-13T08:33:03.931] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:33:04.152] [INFO] cheese - inserting 1000 documents. first: Jim Nesich and last: Merle Jeeter -[2018-02-13T08:33:04.355] [INFO] cheese - inserting 1000 documents. first: Category:Dunhill hurlers and last: Alvin F. Sortwell -[2018-02-13T08:33:04.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Scottrade and last: WMAZ-TV -[2018-02-13T08:33:04.415] [INFO] cheese - batch complete in: 1.215 secs -[2018-02-13T08:33:04.445] [INFO] cheese - inserting 1000 documents. first: Template:Element color/Metals and last: Salome Kammer -[2018-02-13T08:33:04.577] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:33:04.612] [INFO] cheese - inserting 1000 documents. first: Girolamo dal Pane and last: Joe McGrogan -[2018-02-13T08:33:04.662] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:33:04.869] [INFO] cheese - batch complete in: 2.164 secs -[2018-02-13T08:33:04.919] [INFO] cheese - inserting 1000 documents. first: Husaibah Al Sharqiah and last: Sleeping With The Past -[2018-02-13T08:33:04.924] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:33:05.192] [INFO] cheese - inserting 1000 documents. first: Polandish Passage and last: Andrew Crommelin -[2018-02-13T08:33:05.240] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:33:05.424] [INFO] cheese - inserting 1000 documents. first: Academy Color Encoding System and last: "Central New York Regional Market" -[2018-02-13T08:33:05.505] [INFO] cheese - batch complete in: 2.55 secs -[2018-02-13T08:33:05.705] [INFO] cheese - batch complete in: 1.774 secs -[2018-02-13T08:33:05.737] [INFO] cheese - inserting 1000 documents. first: Brandon Miller (driver) and last: Campus of the University of Tokyo -[2018-02-13T08:33:05.888] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/UNC and last: Republic Airways Holdings, Inc. -[2018-02-13T08:33:05.959] [INFO] cheese - batch complete in: 1.543 secs -[2018-02-13T08:33:06.067] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:33:06.194] [INFO] cheese - inserting 1000 documents. first: Vladimir Utkin and last: Solar eclipse 15th january -[2018-02-13T08:33:06.375] [INFO] cheese - batch complete in: 1.797 secs -[2018-02-13T08:33:06.421] [INFO] cheese - inserting 1000 documents. first: Template:Tlrowtop and last: Template:Inv3 -[2018-02-13T08:33:06.472] [INFO] cheese - inserting 1000 documents. first: Chain of lakes middle school and last: Theodore Vahlen -[2018-02-13T08:33:06.625] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:33:06.664] [INFO] cheese - inserting 1000 documents. first: Sompal Kami and last: Wikipedia:Articles for deletion/Hold Tight (Justin Bieber song) -[2018-02-13T08:33:06.719] [INFO] cheese - batch complete in: 1.85 secs -[2018-02-13T08:33:06.879] [INFO] cheese - inserting 1000 documents. first: Ruf 3400S and last: Rodoanel Mário Covas -[2018-02-13T08:33:06.941] [INFO] cheese - inserting 1000 documents. first: Template:Slovenia-transport-stub and last: Lilla skogssjön -[2018-02-13T08:33:07.063] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:33:07.113] [INFO] cheese - batch complete in: 2.45 secs -[2018-02-13T08:33:07.136] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:33:07.328] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Santa Lucia in Septisolio and last: List of Farm to Market Roads in Texas (3000–3099) -[2018-02-13T08:33:07.687] [INFO] cheese - inserting 1000 documents. first: Category:Skin names and last: High Holidays (disambiguation) -[2018-02-13T08:33:07.695] [INFO] cheese - batch complete in: 1.628 secs -[2018-02-13T08:33:07.941] [INFO] cheese - batch complete in: 1.566 secs -[2018-02-13T08:33:07.952] [INFO] cheese - inserting 1000 documents. first: Portal:Arizona/Selected Article/10 and last: Cong Fu Cheng -[2018-02-13T08:33:08.046] [INFO] cheese - inserting 1000 documents. first: List of mountain types and last: Samuel Byck -[2018-02-13T08:33:08.159] [INFO] cheese - inserting 1000 documents. first: Diego De Paz Pazo and last: Sheykh Vajam -[2018-02-13T08:33:08.163] [INFO] cheese - inserting 1000 documents. first: Torus tammer and last: File:Bunker Jacket JustinDiPierro.jpg -[2018-02-13T08:33:08.208] [INFO] cheese - batch complete in: 1.582 secs -[2018-02-13T08:33:08.351] [INFO] cheese - batch complete in: 2.846 secs -[2018-02-13T08:33:08.410] [INFO] cheese - batch complete in: 1.347 secs -[2018-02-13T08:33:08.501] [INFO] cheese - inserting 1000 documents. first: Dream-Star Button Nose and last: 1922-23 Dumbarton F.C. season -[2018-02-13T08:33:08.505] [INFO] cheese - batch complete in: 1.786 secs -[2018-02-13T08:33:08.618] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:33:08.683] [INFO] cheese - inserting 1000 documents. first: Lissmasjön and last: Torre Europa (L'Hospitalet de Llobregat) -[2018-02-13T08:33:08.742] [INFO] cheese - inserting 1000 documents. first: Thug Walkin' and last: Doris Downes -[2018-02-13T08:33:08.787] [INFO] cheese - batch complete in: 1.651 secs -[2018-02-13T08:33:08.858] [INFO] cheese - batch complete in: 1.744 secs -[2018-02-13T08:33:08.959] [INFO] cheese - inserting 1000 documents. first: Portal:Google/Tools/Tools and last: College of Radiology, Academy of Medicine Malaysia -[2018-02-13T08:33:09.014] [INFO] cheese - inserting 1000 documents. first: Idaho State Highway 29 (1930s) and last: Tianzhu Road Station -[2018-02-13T08:33:09.027] [INFO] cheese - inserting 1000 documents. first: 1840-50 Atlantic hurricane seasons and last: 1938 European Athletics Championships - Men's 50 kilometres walk -[2018-02-13T08:33:09.051] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:33:09.165] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:33:09.177] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:33:09.395] [INFO] cheese - inserting 1000 documents. first: Dhauli and last: Category:User ase -[2018-02-13T08:33:09.497] [INFO] cheese - inserting 1000 documents. first: 1939-40 Taça de Portugal and last: Okinawa At-large district (House of Councillors) -[2018-02-13T08:33:09.531] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:33:09.639] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:33:09.699] [INFO] cheese - inserting 1000 documents. first: Ngbinda language and last: Category:Computer science institutes in China -[2018-02-13T08:33:09.825] [INFO] cheese - inserting 1000 documents. first: Naduparambil Pappachan Pradeep and last: Dorchester, IA. -[2018-02-13T08:33:09.827] [INFO] cheese - inserting 1000 documents. first: Once Upon a Time in New York City and last: Bratislava bridgehead -[2018-02-13T08:33:09.829] [INFO] cheese - inserting 1000 documents. first: Dutch process chocolate and last: Anti-disestablishmentarianism -[2018-02-13T08:33:09.850] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Christian theologian and last: Lucien James "Luc" Longley -[2018-02-13T08:33:09.861] [INFO] cheese - inserting 1000 documents. first: Omar Bin Alkahttab and last: The Great Pig War -[2018-02-13T08:33:09.861] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:33:09.967] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:33:10.089] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:33:10.132] [INFO] cheese - batch complete in: 1.924 secs -[2018-02-13T08:33:10.146] [INFO] cheese - batch complete in: 1.794 secs -[2018-02-13T08:33:10.180] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:33:10.225] [INFO] cheese - inserting 1000 documents. first: Alfred S. Barnett and last: 1952-53 Rochester Royals season -[2018-02-13T08:33:10.389] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:33:10.499] [INFO] cheese - inserting 1000 documents. first: Panitya, Victoria and last: Ankkarock -[2018-02-13T08:33:10.564] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:33:10.733] [INFO] cheese - inserting 1000 documents. first: Harry Alexander (rugby footballer) and last: Sun Pharma -[2018-02-13T08:33:10.821] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:33:10.835] [INFO] cheese - inserting 1000 documents. first: Category:Films shot in Cambridgeshire and last: We Walk The Line: A Celebration of the Music of Johnny Cash -[2018-02-13T08:33:10.880] [INFO] cheese - inserting 1000 documents. first: 1957-58 Israel State Cup and last: Category:Suspected Wikipedia sockpuppets of AJ Mclean 1978 -[2018-02-13T08:33:10.924] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:33:10.933] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:33:10.943] [INFO] cheese - inserting 1000 documents. first: Bessarabia (disambiguation) and last: Wikipedia:Articles for deletion/Sahaba's first blood -[2018-02-13T08:33:11.174] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Harry L. Fraser and last: John Hudson (football player) -[2018-02-13T08:33:11.246] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:33:11.266] [INFO] cheese - inserting 1000 documents. first: Meridian circle and last: Florida Botanical Gardens -[2018-02-13T08:33:11.421] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T08:33:11.533] [INFO] cheese - batch complete in: 1.444 secs -[2018-02-13T08:33:11.562] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Alan Fillings and last: 1967-68 Division 1 -[2018-02-13T08:33:11.698] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:33:11.699] [INFO] cheese - inserting 1000 documents. first: Category:Compositions by Daron Hagen and last: Sarah Noble Intermediate School -[2018-02-13T08:33:11.836] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:33:11.869] [INFO] cheese - inserting 1000 documents. first: Category:Deathlands book covers and last: Sadigjan -[2018-02-13T08:33:11.901] [INFO] cheese - inserting 1000 documents. first: Exeter Times-Advocate and last: Holika Bonfire -[2018-02-13T08:33:11.971] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:33:12.001] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:33:12.060] [INFO] cheese - inserting 1000 documents. first: The Green Bus and last: Opium of the People -[2018-02-13T08:33:12.133] [INFO] cheese - inserting 1000 documents. first: Ernst Toch and last: Cigarette lighters -[2018-02-13T08:33:12.137] [INFO] cheese - inserting 1000 documents. first: 1966-67 Yugoslav Cup and last: 1972-73 Fußball-Regionalliga -[2018-02-13T08:33:12.171] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:33:12.199] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:33:12.205] [INFO] cheese - inserting 1000 documents. first: William John Plessington and last: The Immortal Legions -[2018-02-13T08:33:12.286] [INFO] cheese - batch complete in: 2.14 secs -[2018-02-13T08:33:12.332] [INFO] cheese - inserting 1000 documents. first: Category:Metropolitan boroughs and last: List of State Highway Routes in New Jersey -[2018-02-13T08:33:12.335] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:33:12.458] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:33:12.465] [INFO] cheese - inserting 1000 documents. first: Category:Articles that may contain original research from November 2011 and last: Department of African American Studies – Syracuse University -[2018-02-13T08:33:12.481] [INFO] cheese - inserting 1000 documents. first: Category:Special elections to the 105th United States Congress and last: 1973-74 Ranji Trophy -[2018-02-13T08:33:12.532] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:33:12.566] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:33:12.633] [INFO] cheese - inserting 1000 documents. first: County Route 83 (Rockland County, New York) and last: Charleston station (West Virginia) -[2018-02-13T08:33:12.645] [INFO] cheese - inserting 1000 documents. first: Category:Carpenter Gothic houses in the United States and last: Atlantic Coast Line Railroad Commercial and Industrial Historic District -[2018-02-13T08:33:12.669] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:33:12.738] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:33:12.771] [INFO] cheese - inserting 1000 documents. first: Berryz工房 スッペシャル ベスト Vol.2 and last: 1980 IAAF World Cross Country Championships - Junior men's race -[2018-02-13T08:33:12.805] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T08:33:12.840] [INFO] cheese - inserting 1000 documents. first: Orloff chicken and last: Saints Herald -[2018-02-13T08:33:12.932] [INFO] cheese - inserting 1000 documents. first: Poupée Girl and last: Blue ridge quartet -[2018-02-13T08:33:12.990] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:33:13.094] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:33:13.207] [INFO] cheese - inserting 1000 documents. first: Johanna and last: Columbia-Revelstoke -[2018-02-13T08:33:13.283] [INFO] cheese - inserting 1000 documents. first: 1981-82 National Football League (Ireland) and last: 1984-85 Dallas Mavericks season -[2018-02-13T08:33:13.334] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:33:13.349] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:33:13.358] [INFO] cheese - inserting 1000 documents. first: Dhaiso language and last: Wikipedia:Categories for discussion/Log/2011 December 5 -[2018-02-13T08:33:13.536] [INFO] cheese - inserting 1000 documents. first: Methodist circuit rider and last: Obatu -[2018-02-13T08:33:13.557] [INFO] cheese - inserting 1000 documents. first: Thromboxane synthase and last: Sharon bush -[2018-02-13T08:33:13.572] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:33:13.696] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:33:13.823] [INFO] cheese - inserting 1000 documents. first: Corning Community College and last: Écublens, Vaud -[2018-02-13T08:33:13.825] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:33:13.901] [INFO] cheese - inserting 1000 documents. first: 1985-86 FIBA Women's European Champions Cup and last: 1984 Virginia Slims Championships - Singles -[2018-02-13T08:33:13.977] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:33:14.096] [INFO] cheese - batch complete in: 1.81 secs -[2018-02-13T08:33:14.316] [INFO] cheese - inserting 1000 documents. first: Snake River Plain (ecoregion) and last: Sergei Andronov -[2018-02-13T08:33:14.362] [INFO] cheese - inserting 1000 documents. first: Jeanette McCurdy and last: File:Big Mello.jpg -[2018-02-13T08:33:14.454] [INFO] cheese - inserting 1000 documents. first: 1985-86 FC Dinamo București season and last: Category:Chinese special-purpose aircraft -[2018-02-13T08:33:14.544] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T08:33:14.571] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:33:14.544] [INFO] cheese - batch complete in: 1.553 secs -[2018-02-13T08:33:14.826] [INFO] cheese - inserting 1000 documents. first: Booker–Open Russia Literary Prize and last: Category:Cement companies of Portugal -[2018-02-13T08:33:14.848] [INFO] cheese - inserting 1000 documents. first: Category:FA-Class electronic articles and last: Barmston and Fraisthorpe -[2018-02-13T08:33:14.889] [INFO] cheese - inserting 1000 documents. first: Csikszék and last: Boston Theological Institute -[2018-02-13T08:33:14.951] [INFO] cheese - batch complete in: 1.379 secs -[2018-02-13T08:33:14.962] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T08:33:15.050] [INFO] cheese - batch complete in: 1.701 secs -[2018-02-13T08:33:15.163] [INFO] cheese - inserting 1000 documents. first: Panjeh Ali and last: Portal:Current events/2013 December 13 -[2018-02-13T08:33:15.163] [INFO] cheese - inserting 1000 documents. first: 1990 World Junior Championships in Athletics - Women's shot put and last: Arctic Lily (My Little Pony) -[2018-02-13T08:33:15.251] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:33:15.354] [INFO] cheese - batch complete in: 1.658 secs -[2018-02-13T08:33:15.515] [INFO] cheese - inserting 1000 documents. first: Copa do Brasil 1994 and last: Wikipedia:Valued picture candidates/Columbus Zoo Front Gate -[2018-02-13T08:33:15.536] [INFO] cheese - inserting 1000 documents. first: Translucence/Drift Music and last: Slab (phone) -[2018-02-13T08:33:15.624] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:33:15.675] [INFO] cheese - inserting 1000 documents. first: Ardent (My Little Pony) and last: Category:Wikipedia sockpuppets of Smilesnew55 -[2018-02-13T08:33:15.684] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:33:15.799] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:33:15.858] [INFO] cheese - inserting 1000 documents. first: Plead and last: Hurrian language -[2018-02-13T08:33:16.000] [INFO] cheese - inserting 1000 documents. first: File:Thegoblintree.jpg and last: Category:Wikipedians by alma mater: New Jersey Institute of Technology -[2018-02-13T08:33:16.100] [INFO] cheese - batch complete in: 2.004 secs -[2018-02-13T08:33:16.204] [INFO] cheese - inserting 1000 documents. first: Category:Chocobo games and last: First Capital Connect -[2018-02-13T08:33:16.210] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:33:16.246] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Sonashaskew and last: Category:2020 elections in the United States by state -[2018-02-13T08:33:16.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Poverty Justice and Human Capabilities (Diana Strassmann and Michael Emerson)/Create Account & User Page and last: Linc Blakely -[2018-02-13T08:33:16.333] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:33:16.476] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T08:33:16.496] [INFO] cheese - inserting 1000 documents. first: Brice Meuleman and last: Syrian civil war spillover in Lebanon -[2018-02-13T08:33:16.500] [INFO] cheese - batch complete in: 1.549 secs -[2018-02-13T08:33:16.658] [INFO] cheese - inserting 1000 documents. first: 1988 World's Strongest Man and last: Siloam daylilies -[2018-02-13T08:33:16.685] [INFO] cheese - inserting 1000 documents. first: Cytochrome P450 system and last: Category:Mitsubishi Motors engines -[2018-02-13T08:33:16.723] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:33:16.907] [INFO] cheese - inserting 1000 documents. first: Azad Kashmir Regular Forces and last: Alegrians in Italy -[2018-02-13T08:33:16.920] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:33:16.946] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:33:17.051] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:33:17.319] [INFO] cheese - inserting 1000 documents. first: NCEL Premier Division and last: File:Wattie-creek-handover.jpg -[2018-02-13T08:33:17.428] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:33:17.473] [INFO] cheese - inserting 1000 documents. first: 1996-97 Országos Bajnokság I (men's water polo) and last: 1998 Fed Cup Europe/Africa Zone Group II - Pool B -[2018-02-13T08:33:17.559] [INFO] cheese - inserting 1000 documents. first: Campbell Burnap and last: Audi "S4 25quattro" -[2018-02-13T08:33:17.566] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Aciliu Viaduct and last: Template:Campaignbox Syrian civil war spillover in Lebanon -[2018-02-13T08:33:17.579] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:33:17.651] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:33:17.662] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:33:17.699] [INFO] cheese - inserting 1000 documents. first: List of city nicknames in Kansas and last: Wikipedia:WikiProject Spam/LinkReports/raisedbythestars.com -[2018-02-13T08:33:17.788] [INFO] cheese - inserting 1000 documents. first: Edgardo Codesal and last: Maria van der Hoeven -[2018-02-13T08:33:17.859] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:33:18.002] [INFO] cheese - inserting 1000 documents. first: Thomas Dashwood and last: Brimstone (Parker novel) -[2018-02-13T08:33:18.035] [INFO] cheese - inserting 1000 documents. first: Green liberalism and last: Child safety lock -[2018-02-13T08:33:18.056] [INFO] cheese - batch complete in: 1.58 secs -[2018-02-13T08:33:18.202] [INFO] cheese - inserting 1000 documents. first: James Drysdale Brown and last: 2000 Asian Athletics Championships - Men's triple jump -[2018-02-13T08:33:18.233] [INFO] cheese - batch complete in: 2.133 secs -[2018-02-13T08:33:18.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/18027 Gokcay and last: Aliabad-e Chah-e Bolagh -[2018-02-13T08:33:18.423] [INFO] cheese - batch complete in: 1.477 secs -[2018-02-13T08:33:18.436] [INFO] cheese - inserting 1000 documents. first: Ceslaus, Saint and last: The Very Best of Antique -[2018-02-13T08:33:18.444] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:33:18.490] [INFO] cheese - inserting 1000 documents. first: Poems 1912-13 and last: List of radio stations in Tamaulipas -[2018-02-13T08:33:18.647] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:33:18.695] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:33:18.703] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/raisedbythestars.com and last: Altare della patria -[2018-02-13T08:33:18.799] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:33:18.926] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:33:19.192] [INFO] cheese - inserting 1000 documents. first: 2000 Estoril Open - Men's Singles and last: 2002 Challenge Bell - Doubles -[2018-02-13T08:33:19.308] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:33:19.428] [INFO] cheese - inserting 1000 documents. first: Template:Family tree and last: Template:User falcons -[2018-02-13T08:33:19.686] [INFO] cheese - batch complete in: 1.63 secs -[2018-02-13T08:33:19.793] [INFO] cheese - inserting 1000 documents. first: Imbros (horse) and last: Template:2007 in Thai football -[2018-02-13T08:33:19.849] [INFO] cheese - inserting 1000 documents. first: 2002 European Athletics Championships - Men's 4 × 400 metres relay and last: 2002 Asian Athletics Championships - Women's 400 metres hurdles -[2018-02-13T08:33:19.859] [INFO] cheese - inserting 1000 documents. first: Pham Buu Loc and last: Category:Pathanamthitta district -[2018-02-13T08:33:19.893] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:33:19.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Gastropods/Related Wikiprojects and last: Template:JULIANDAY.HOUR/doc -[2018-02-13T08:33:19.959] [INFO] cheese - inserting 1000 documents. first: Mazraeh-ye Khalil Rowshan va Amir Khamushi and last: Golisano Children’s Museum of Naples -[2018-02-13T08:33:20.057] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T08:33:20.157] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:33:20.204] [INFO] cheese - batch complete in: 1.555 secs -[2018-02-13T08:33:20.215] [INFO] cheese - inserting 1000 documents. first: Kensington Oval, Dunedin and last: Template:Uw-spam1-short -[2018-02-13T08:33:20.320] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:33:20.397] [INFO] cheese - inserting 1000 documents. first: Henri I de Montmorency and last: Caine, Hall, Sir -[2018-02-13T08:33:20.446] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:33:20.708] [INFO] cheese - inserting 1000 documents. first: 2002-03 FC Dinamo București season and last: 2003-04 Barnsley F.C. season -[2018-02-13T08:33:20.838] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:33:20.835] [INFO] cheese - batch complete in: 2.598 secs -[2018-02-13T08:33:21.086] [INFO] cheese - inserting 1000 documents. first: National Folk Festival (Australia) and last: CHYR -[2018-02-13T08:33:21.117] [INFO] cheese - inserting 1000 documents. first: Terell davis and last: File:Fine Young Cannibals - I'm Not the Man I Used to Be.jpg -[2018-02-13T08:33:21.234] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T08:33:21.239] [INFO] cheese - inserting 1000 documents. first: Krum dynasty and last: Category:Governors of Qom Province -[2018-02-13T08:33:21.240] [INFO] cheese - inserting 1000 documents. first: Backhand (disambiguation) and last: The words -[2018-02-13T08:33:21.311] [INFO] cheese - batch complete in: 1.625 secs -[2018-02-13T08:33:21.346] [INFO] cheese - inserting 1000 documents. first: Template:JULIANDAY.MINUTE/doc and last: Wikipedia:WikiProject Deletion sorting/Palestine -[2018-02-13T08:33:21.357] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:33:21.422] [INFO] cheese - inserting 1000 documents. first: Karen Senties and last: Creative Commons jurisdiction ports -[2018-02-13T08:33:21.448] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:33:21.495] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:33:21.629] [INFO] cheese - batch complete in: 1.472 secs -[2018-02-13T08:33:21.647] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Lawrence County, Tennessee and last: Template:Epinay-Le Treport railway diagram -[2018-02-13T08:33:21.892] [INFO] cheese - batch complete in: 1.446 secs -[2018-02-13T08:33:21.973] [INFO] cheese - inserting 1000 documents. first: 2006-07 Galatasaray S.K. season and last: 2007-11 Belgian political crisis -[2018-02-13T08:33:22.018] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:33:22.064] [INFO] cheese - inserting 1000 documents. first: Justin Davis and last: File:Oneworld 10 Years Anniversary.svg -[2018-02-13T08:33:22.260] [INFO] cheese - inserting 1000 documents. first: Paicĩ and last: Kainji Dam -[2018-02-13T08:33:22.280] [INFO] cheese - inserting 1000 documents. first: Azog the defiler and last: Category:Boxing in Wyoming -[2018-02-13T08:33:22.302] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:33:22.466] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:33:22.528] [INFO] cheese - batch complete in: 1.08 secs -[2018-02-13T08:33:22.609] [INFO] cheese - inserting 1000 documents. first: German Green party and last: Wikipedia:Articles for deletion/Diamond (rapper) -[2018-02-13T08:33:22.657] [INFO] cheese - inserting 1000 documents. first: 2008 African Championships in Athletics - Men's 1500 metres and last: 2008 Australian Open - women's singles -[2018-02-13T08:33:22.722] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:33:22.725] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:33:22.804] [INFO] cheese - inserting 1000 documents. first: Le Duy Loan and last: Federal Executive Council (Nigeria) -[2018-02-13T08:33:22.885] [INFO] cheese - inserting 1000 documents. first: Michael Maurice Micklewhite and last: Disputed territories -[2018-02-13T08:33:22.940] [INFO] cheese - inserting 1000 documents. first: Audio plug-in and last: Be My Baby (Wonder Girls song) -[2018-02-13T08:33:22.987] [INFO] cheese - batch complete in: 1.492 secs -[2018-02-13T08:33:23.085] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:33:23.267] [INFO] cheese - inserting 1000 documents. first: Museo de Bellas Artes (Málaga) and last: Template:Linkaudit/doc -[2018-02-13T08:33:23.305] [INFO] cheese - batch complete in: 2.47 secs -[2018-02-13T08:33:23.412] [INFO] cheese - inserting 1000 documents. first: 2008 World Junior Championships in Athletics - Men's hammer throw and last: Kurian kachapally -[2018-02-13T08:33:23.459] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:33:23.618] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:33:23.733] [INFO] cheese - inserting 1000 documents. first: Template:SwimmingAt2013SoutheastAsianGames and last: MSA 1988 -[2018-02-13T08:33:23.866] [INFO] cheese - inserting 1000 documents. first: Infernal and last: Zooper car -[2018-02-13T08:33:23.891] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:33:23.897] [INFO] cheese - inserting 1000 documents. first: Gorstan and last: Mykola Arkas -[2018-02-13T08:33:23.965] [INFO] cheese - inserting 1000 documents. first: Ras/Raf/MAP kinase and last: Wikipedia:WikiProject Spam/Local/thetalleys.com -[2018-02-13T08:33:23.977] [INFO] cheese - batch complete in: 1.252 secs -[2018-02-13T08:33:23.987] [INFO] cheese - inserting 1000 documents. first: Wise Foods and last: Tboung Khmum District -[2018-02-13T08:33:24.059] [INFO] cheese - batch complete in: 1.585 secs -[2018-02-13T08:33:24.146] [INFO] cheese - inserting 1000 documents. first: River End and last: 2010 UCI Mountain Bike & Trials World Championships - Women's cross-country -[2018-02-13T08:33:24.204] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:33:24.293] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:33:24.303] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:33:24.482] [INFO] cheese - inserting 1000 documents. first: Spomenka Hribar and last: UNSCR 1904 -[2018-02-13T08:33:24.597] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T08:33:24.642] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Hampshire County, West Virginia articles and last: 2011 EmblemHealth Bronx Open - Singles -[2018-02-13T08:33:24.682] [INFO] cheese - inserting 1000 documents. first: Factortame litigation and last: Category:People from Cheorwon County -[2018-02-13T08:33:24.765] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:33:24.791] [INFO] cheese - inserting 1000 documents. first: File:Cornwall Transit Logo.png and last: XHEOLA-FM -[2018-02-13T08:33:24.804] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:33:25.004] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:33:25.160] [INFO] cheese - inserting 1000 documents. first: Marguerite de Launay, baronne de Staal and last: Filosofy -[2018-02-13T08:33:25.311] [INFO] cheese - inserting 1000 documents. first: Template:Prefectures of the Central African Republic Image Map and last: Vox Angeli Children's Choir -[2018-02-13T08:33:25.433] [INFO] cheese - batch complete in: 2.128 secs -[2018-02-13T08:33:25.454] [INFO] cheese - inserting 1000 documents. first: Wedding receptions and last: Scottish Barony -[2018-02-13T08:33:25.485] [INFO] cheese - inserting 1000 documents. first: 2011 Grand Prix Hassan II - Qualifying and last: Category:Draft-Class Latter Day Saint movement articles -[2018-02-13T08:33:25.569] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T08:33:25.606] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:33:25.666] [INFO] cheese - inserting 1000 documents. first: 1947-48 NBA season and last: 2005 South American Under-17 Football Championship -[2018-02-13T08:33:25.790] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:33:25.805] [INFO] cheese - batch complete in: 1.745 secs -[2018-02-13T08:33:25.895] [INFO] cheese - inserting 1000 documents. first: Yelniki and last: Template:Moscow - Fryazino/Fryazevo -[2018-02-13T08:33:26.105] [INFO] cheese - batch complete in: 1.507 secs -[2018-02-13T08:33:26.202] [INFO] cheese - inserting 1000 documents. first: David Peter John Ross and last: Subaru Group -[2018-02-13T08:33:26.342] [INFO] cheese - inserting 1000 documents. first: 2011-12 Budapest Honved FC II season and last: 2010 Chang-Sat Bangkok 2 Open - Doubles -[2018-02-13T08:33:26.404] [INFO] cheese - inserting 1000 documents. first: Two People Fell in Love and last: Labute -[2018-02-13T08:33:26.431] [INFO] cheese - batch complete in: 1.627 secs -[2018-02-13T08:33:26.431] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:33:26.555] [INFO] cheese - batch complete in: 1.549 secs -[2018-02-13T08:33:26.682] [INFO] cheese - inserting 1000 documents. first: Category:Compositions by Aarre Merikanto and last: Russian Roulette (1992 film) -[2018-02-13T08:33:26.716] [INFO] cheese - inserting 1000 documents. first: Brachypelma vagans and last: Category:Purdue Boilermakers football players -[2018-02-13T08:33:26.767] [INFO] cheese - inserting 1000 documents. first: Category:Agricultural buildings and structures in Iowa and last: 2011-12 Illinois State Redbirds men's basketball team -[2018-02-13T08:33:26.790] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:33:26.868] [INFO] cheese - inserting 1000 documents. first: The Last Live Video and last: Mate Records -[2018-02-13T08:33:26.902] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:33:26.934] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:33:27.082] [INFO] cheese - batch complete in: 1.292 secs -[2018-02-13T08:33:27.161] [INFO] cheese - inserting 1000 documents. first: Category:Diesel multiple units of the United States and last: Brandon Coleman -[2018-02-13T08:33:27.227] [INFO] cheese - inserting 1000 documents. first: Shanti Devi and last: In Japan during the 1990s -[2018-02-13T08:33:27.267] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:33:27.330] [INFO] cheese - inserting 1000 documents. first: Phylosophy and last: Loop splitting -[2018-02-13T08:33:27.435] [INFO] cheese - inserting 1000 documents. first: Micro 17, Satu Mare and last: 2012 Abierto Mexicano Telcel - Men's Singles -[2018-02-13T08:33:27.447] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T08:33:27.574] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:33:27.644] [INFO] cheese - batch complete in: 2.211 secs -[2018-02-13T08:33:27.785] [INFO] cheese - inserting 1000 documents. first: Mirnes Mesic and last: Ralph Peterson -[2018-02-13T08:33:27.831] [INFO] cheese - inserting 1000 documents. first: National Institutes of Standards and Technology and last: (59486) 1999 JV -[2018-02-13T08:33:27.951] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:33:28.018] [INFO] cheese - batch complete in: 1.463 secs -[2018-02-13T08:33:28.071] [INFO] cheese - inserting 1000 documents. first: 2012 Australian Open - Boys' Singles and last: 2012-13 ISU Speed Skating World Cup - Men's 1500 metres -[2018-02-13T08:33:28.094] [INFO] cheese - inserting 1000 documents. first: Amasa Mason Lyman and last: William Irwin (Unionist politician) -[2018-02-13T08:33:28.132] [INFO] cheese - inserting 1000 documents. first: CJPN and last: Ariel Motor Company -[2018-02-13T08:33:28.142] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:33:28.269] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:33:28.333] [INFO] cheese - batch complete in: 1.398 secs -[2018-02-13T08:33:28.578] [INFO] cheese - inserting 1000 documents. first: Central Park, Wallasey and last: Category:Cinema of Madagascar -[2018-02-13T08:33:28.649] [INFO] cheese - inserting 1000 documents. first: File:Tasgetius coin.jpg and last: Patricia Strachota -[2018-02-13T08:33:28.665] [INFO] cheese - inserting 1000 documents. first: 2012-13 Leeds United F.C. season and last: Kovan, Hougang -[2018-02-13T08:33:28.704] [INFO] cheese - batch complete in: 1.437 secs -[2018-02-13T08:33:28.785] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:33:28.939] [INFO] cheese - batch complete in: 1.492 secs -[2018-02-13T08:33:28.954] [INFO] cheese - inserting 1000 documents. first: Portal:Military of ancient Rome/Selected article/6 and last: Apostrophized -[2018-02-13T08:33:29.097] [INFO] cheese - inserting 1000 documents. first: Category:Libraries in Antigua and Barbuda and last: Singam II -[2018-02-13T08:33:29.119] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:33:29.233] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:33:29.258] [INFO] cheese - inserting 1000 documents. first: Category:People from the Province of Trapani and last: Keong mas -[2018-02-13T08:33:29.314] [INFO] cheese - inserting 1000 documents. first: 2012-13 IRB Women's Sevens World Series and last: 2013 Seguros Bolivar Open Barranquilla - Singles -[2018-02-13T08:33:29.357] [INFO] cheese - inserting 1000 documents. first: I2i and last: WHEC -[2018-02-13T08:33:29.380] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:33:29.459] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:33:29.563] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:33:29.595] [INFO] cheese - inserting 1000 documents. first: Apocalyptic Raids and last: List of state leaders in 1761 -[2018-02-13T08:33:29.704] [INFO] cheese - inserting 1000 documents. first: واہگہ and last: Thessalian barbel -[2018-02-13T08:33:29.807] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:33:29.819] [INFO] cheese - batch complete in: 2.174 secs -[2018-02-13T08:33:29.854] [INFO] cheese - inserting 1000 documents. first: Marlag and last: Icelandic-Canadian -[2018-02-13T08:33:29.989] [INFO] cheese - inserting 1000 documents. first: 2013 European Athletics U23 Championships - Women's 4 × 400 metres relay and last: Roman Catholic Diocese of Paphos -[2018-02-13T08:33:30.091] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:33:30.108] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:33:30.258] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Monroe County, Alabama and last: Category:Spacecraft launched in 1995 -[2018-02-13T08:33:30.407] [INFO] cheese - inserting 1000 documents. first: Doe Ching and last: Odostomia angularis -[2018-02-13T08:33:30.436] [INFO] cheese - batch complete in: 1.732 secs -[2018-02-13T08:33:30.445] [INFO] cheese - inserting 1000 documents. first: PopMart: Live From Mexico City and last: Wikipedia:Reference desk/Archives/Entertainment/2007 March 9 -[2018-02-13T08:33:30.554] [INFO] cheese - batch complete in: 1.321 secs -[2018-02-13T08:33:30.568] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:33:30.621] [INFO] cheese - inserting 1000 documents. first: 2013 Napa Valley Challenger - Doubles and last: 2013-14 Martyr's Memorial A-Division League -[2018-02-13T08:33:30.640] [INFO] cheese - inserting 1000 documents. first: Category:Fictional ants and last: Yupiks -[2018-02-13T08:33:30.757] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:33:30.811] [INFO] cheese - inserting 1000 documents. first: Hussein Mustahil and last: Tribalism (album) -[2018-02-13T08:33:30.921] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:33:30.972] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:33:31.038] [INFO] cheese - inserting 1000 documents. first: Morosaurus lentus and last: Daniel Lam Wai-keung -[2018-02-13T08:33:31.192] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:33:31.255] [INFO] cheese - inserting 1000 documents. first: Rosa Lee Ingram and last: Tom Chandler (The Last Ship) -[2018-02-13T08:33:31.297] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:33:31.368] [INFO] cheese - inserting 1000 documents. first: Vox Humana (album) and last: Way Out -[2018-02-13T08:33:31.444] [INFO] cheese - inserting 1000 documents. first: Category:Spacecraft launched in 1997 and last: Aliabad, Aqda -[2018-02-13T08:33:31.473] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:33:31.549] [INFO] cheese - inserting 1000 documents. first: Killing of David Wilkie and last: Tionesta Creek -[2018-02-13T08:33:31.632] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:33:31.717] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:33:31.833] [INFO] cheese - inserting 1000 documents. first: 2014 Aegon Championships - Singles and last: 2014 Fed Cup Americas Zone Group I - Pool A -[2018-02-13T08:33:31.870] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1762 and last: Yousef Alavi -[2018-02-13T08:33:31.900] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:33:31.953] [INFO] cheese - inserting 1000 documents. first: 温家宝 and last: Category:Gardens in Bangladesh -[2018-02-13T08:33:32.010] [INFO] cheese - inserting 1000 documents. first: Ultrawave and last: Camp Hero State Park -[2018-02-13T08:33:32.055] [INFO] cheese - inserting 1000 documents. first: Daniel Lam Wai Keung and last: Scarborough, North Yorkshire (borough and district) -[2018-02-13T08:33:32.082] [INFO] cheese - batch complete in: 2.262 secs -[2018-02-13T08:33:32.120] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:33:32.185] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:33:32.238] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:33:32.442] [INFO] cheese - inserting 1000 documents. first: Le Cap d'Agde and last: Ramon "Bong" Revilla Jr -[2018-02-13T08:33:32.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lina Scott Gatty and last: 2014 World Junior Championships in Athletics - Men's 10,000 metres -[2018-02-13T08:33:32.556] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:33:32.613] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:33:32.720] [INFO] cheese - inserting 1000 documents. first: Anarestan, Yazd and last: Norton Grinding Company -[2018-02-13T08:33:32.866] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:33:32.877] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/May/13/Selected article and last: Gerotor pump -[2018-02-13T08:33:33.015] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:33:33.058] [INFO] cheese - inserting 1000 documents. first: 5th Space Operations Squadron (United States) and last: Wikipedia:Requests for checkuser/Case/Xted -[2018-02-13T08:33:33.169] [INFO] cheese - inserting 1000 documents. first: 2014 World Wrestling Championships - Men's freestyle 97 kg and last: 2014-15 Lafayette Leopards men's basketball team -[2018-02-13T08:33:33.228] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:33:33.293] [INFO] cheese - inserting 1000 documents. first: Clavigesta and last: File:HobartDouble-DeckerTram.JPG -[2018-02-13T08:33:33.298] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:33:33.389] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:33:33.445] [INFO] cheese - inserting 1000 documents. first: Eric Mackenzie and last: Simultaneous orthogonal rotations angle -[2018-02-13T08:33:33.514] [INFO] cheese - inserting 1000 documents. first: Steve Sakoman and last: ALCO DL-110 -[2018-02-13T08:33:33.540] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:33:33.619] [INFO] cheese - batch complete in: 1.38 secs -[2018-02-13T08:33:33.645] [INFO] cheese - inserting 1000 documents. first: 2014-15 Idaho Vandals men's basketball team and last: 2014-15 Syrian Premier League -[2018-02-13T08:33:33.688] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:33:33.805] [INFO] cheese - inserting 1000 documents. first: Decanter (Magazine) and last: Georgiadis -[2018-02-13T08:33:33.825] [INFO] cheese - inserting 1000 documents. first: File:Pastorale (album).jpg and last: Scoparia animosa -[2018-02-13T08:33:33.832] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed-Class Haryana articles of Unknown-importance and last: The Airing of Grievances -[2018-02-13T08:33:33.851] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:33:33.931] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:33:33.938] [INFO] cheese - inserting 1000 documents. first: List of mammals and last: Greatest Hits III -[2018-02-13T08:33:33.956] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:33:34.080] [INFO] cheese - inserting 1000 documents. first: 2014-15 Segunda Liga and last: 2014-15 Turkish Cup -[2018-02-13T08:33:34.100] [INFO] cheese - inserting 1000 documents. first: Dumaguete Airport and last: Izakaya Choji -[2018-02-13T08:33:34.097] [INFO] cheese - batch complete in: 2.015 secs -[2018-02-13T08:33:34.118] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:33:34.278] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:33:34.365] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Davidson County, Tennessee and last: Darzazin -[2018-02-13T08:33:34.659] [INFO] cheese - inserting 1000 documents. first: Radek Novotný and last: Category:FL-Class Tamil Nadu articles of Unknown-importance -[2018-02-13T08:33:34.677] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:33:34.717] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tungstem and last: Langres cheese -[2018-02-13T08:33:34.751] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:33:34.885] [INFO] cheese - inserting 1000 documents. first: 2015 Canberra Tennis International - Singles and last: 2015 Lale Cup - Singles -[2018-02-13T08:33:35.065] [INFO] cheese - batch complete in: 1.446 secs -[2018-02-13T08:33:35.080] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:33:35.119] [INFO] cheese - inserting 1000 documents. first: HAPM and last: Sandy Creek (Allegheny River) -[2018-02-13T08:33:35.204] [INFO] cheese - inserting 1000 documents. first: Center Cemetery (Southampton, Massachusetts) and last: Bermudian general election, 1983 -[2018-02-13T08:33:35.332] [INFO] cheese - inserting 1000 documents. first: Ambedkar Institute of Technology and last: John Eyles (disambiguation) -[2018-02-13T08:33:35.343] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:33:35.348] [INFO] cheese - batch complete in: 1.496 secs -[2018-02-13T08:33:35.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Summary motion regarding biographies of living people deletions and last: Promise (margarine) -[2018-02-13T08:33:35.492] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:33:35.615] [INFO] cheese - batch complete in: 1.336 secs -[2018-02-13T08:33:35.651] [INFO] cheese - inserting 1000 documents. first: 2015 Wimbledon Championships - Wheelchair Men's Doubles and last: 2015-16 Galatasaray S.K. season -[2018-02-13T08:33:35.687] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:33:35.828] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Tamil Nadu articles of Top-importance and last: Utah State Route 151 (1933) -[2018-02-13T08:33:35.950] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:33:36.010] [INFO] cheese - inserting 1000 documents. first: Rotenberg (disambiguation) and last: Jesús María Serrano -[2018-02-13T08:33:36.106] [INFO] cheese - inserting 1000 documents. first: File:Everything at Once (Front Cover).png and last: 2015-16 Esbjerg fB season -[2018-02-13T08:33:36.121] [INFO] cheese - inserting 1000 documents. first: Bahurim and last: Churchill, Ontario -[2018-02-13T08:33:36.128] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:33:36.251] [INFO] cheese - inserting 1000 documents. first: The Tufts Observer and last: Bernard "Bernie" McLaughlin -[2018-02-13T08:33:36.245] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:33:36.296] [INFO] cheese - inserting 1000 documents. first: Aber station and last: Robert Baden-Powell, 3rd Baron Baden-Powell -[2018-02-13T08:33:36.306] [INFO] cheese - inserting 1000 documents. first: Soviet rule in Armenia and last: Worst-case scenario -[2018-02-13T08:33:36.351] [INFO] cheese - batch complete in: 2.254 secs -[2018-02-13T08:33:36.382] [INFO] cheese - inserting 1000 documents. first: Category:Silesian politicians and last: Niasoma -[2018-02-13T08:33:36.449] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:33:36.465] [INFO] cheese - batch complete in: 1.4 secs -[2018-02-13T08:33:36.479] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:33:36.566] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:33:36.635] [INFO] cheese - inserting 1000 documents. first: Miriam Ginestier and last: 2016 Australian Open - Women Legends' Doubles -[2018-02-13T08:33:36.802] [INFO] cheese - inserting 1000 documents. first: Utah State Route 151 (pre-1977) and last: Category:CFU Club Championship -[2018-02-13T08:33:36.815] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:33:36.912] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:33:37.165] [INFO] cheese - inserting 1000 documents. first: Van der Waal force and last: Stem ginger -[2018-02-13T08:33:37.274] [INFO] cheese - inserting 1000 documents. first: 2016 Brisbane International - Women's Singles and last: Air Base 942 Lyon - Mont Verdun -[2018-02-13T08:33:37.322] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:33:37.323] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:33:37.425] [INFO] cheese - inserting 1000 documents. first: Niphothixa and last: Imaduddin School -[2018-02-13T08:33:37.533] [INFO] cheese - inserting 1000 documents. first: Lightweight programming language and last: Category:Isan geography stubs -[2018-02-13T08:33:37.561] [INFO] cheese - inserting 1000 documents. first: File:Prince LetsWork.jpg and last: List of University of Sydney people -[2018-02-13T08:33:37.590] [INFO] cheese - inserting 1000 documents. first: Bootleg Recordings 1963 and last: 2013–14 San Diego Sockers season -[2018-02-13T08:33:37.667] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:33:37.709] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:33:37.791] [INFO] cheese - inserting 1000 documents. first: Afrikaanse Woordelys en Spelreëls - Introductory paragraph, English and last: Aristides de Sousa Mendes - O Consul de Bordeus -[2018-02-13T08:33:37.794] [INFO] cheese - batch complete in: 1.329 secs -[2018-02-13T08:33:37.806] [INFO] cheese - batch complete in: 1.327 secs -[2018-02-13T08:33:38.122] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:33:38.190] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Shir and last: Category:High-importance Daman and Diu articles -[2018-02-13T08:33:38.368] [INFO] cheese - batch complete in: 1.456 secs -[2018-02-13T08:33:38.477] [INFO] cheese - inserting 1000 documents. first: Corythornis leucogaster and last: Marines, France -[2018-02-13T08:33:38.592] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 1992 Winter Olympics - Women's super-G and last: Athletics at the 2002 Asian Games - Women's 100 metres hurdles -[2018-02-13T08:33:38.596] [INFO] cheese - inserting 1000 documents. first: Churchville, Ontario and last: Intercal -[2018-02-13T08:33:38.603] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:33:38.680] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:33:38.732] [INFO] cheese - inserting 1000 documents. first: Collingwood (New Zealand electorate) and last: 1991-92 Cuban National Series -[2018-02-13T08:33:38.747] [INFO] cheese - inserting 1000 documents. first: Margarita (song) and last: List of tallest structures in Kosovo -[2018-02-13T08:33:38.788] [INFO] cheese - inserting 1000 documents. first: Cheung Siu Wai and last: Wild Search -[2018-02-13T08:33:38.865] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:33:38.934] [INFO] cheese - batch complete in: 2.583 secs -[2018-02-13T08:33:39.062] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:33:39.118] [INFO] cheese - batch complete in: 1.451 secs -[2018-02-13T08:33:39.183] [INFO] cheese - inserting 1000 documents. first: Dehradun district and last: The Spirit of Christmas Past -[2018-02-13T08:33:39.232] [INFO] cheese - inserting 1000 documents. first: 1951-52 Magyar Kupa and last: Quatar at the 2014 Asian Beach Games -[2018-02-13T08:33:39.332] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:33:39.418] [INFO] cheese - inserting 1000 documents. first: 保定軍校 and last: Czech Republic – Germany border -[2018-02-13T08:33:39.423] [INFO] cheese - batch complete in: 1.629 secs -[2018-02-13T08:33:39.536] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:33:39.714] [INFO] cheese - inserting 1000 documents. first: Labour City, Quatar and last: Aomori 1st district (1947-1993) -[2018-02-13T08:33:39.841] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:33:39.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Henry Clay Senate and last: Malibu's Most Wanted (soundtrack) -[2018-02-13T08:33:39.925] [INFO] cheese - inserting 1000 documents. first: Football-Mundial and last: Portal:Nautical/July/19/Selected picture -[2018-02-13T08:33:39.953] [INFO] cheese - inserting 1000 documents. first: Category:Lists of roads in Virginia and last: Wikipedia:Articles for deletion/Ahmed Ennaji -[2018-02-13T08:33:40.019] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:33:40.061] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:33:40.130] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:33:40.217] [INFO] cheese - inserting 1000 documents. first: Polish-Czech Friendship Trail and last: Tandia language -[2018-02-13T08:33:40.245] [INFO] cheese - inserting 1000 documents. first: Archery at the 2014 Asian Games - Women's team compound and last: Athletics at the 2015 African Games - Men's 100 metres -[2018-02-13T08:33:40.301] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:33:40.373] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:33:40.419] [INFO] cheese - inserting 1000 documents. first: The Spirit of Christmas Present and last: TBTA -[2018-02-13T08:33:40.542] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Daman and Diu articles and last: Sweet & Sour Tears -[2018-02-13T08:33:40.542] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:33:40.727] [INFO] cheese - batch complete in: 2.359 secs -[2018-02-13T08:33:40.761] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/July/20/Selected picture and last: Derby h:o racing club -[2018-02-13T08:33:40.783] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2015 Southeast Asian Games - Men's 10,000 metres and last: Bahnstrecke Nürnberg-Crailsheim -[2018-02-13T08:33:40.812] [INFO] cheese - inserting 1000 documents. first: International emergency medicine and last: The Moss -[2018-02-13T08:33:40.818] [INFO] cheese - inserting 1000 documents. first: Traditional boat race at the 2013 Southeast Asian Games and last: Category:Government agencies established in 1826 -[2018-02-13T08:33:40.823] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:33:40.901] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:33:40.979] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:33:41.043] [INFO] cheese - inserting 1000 documents. first: Andrea Briotti and last: Robert Widdowfield -[2018-02-13T08:33:41.071] [INFO] cheese - inserting 1000 documents. first: Horace Arthur Rose and last: Mitchell Callaway -[2018-02-13T08:33:41.142] [INFO] cheese - batch complete in: 2.207 secs -[2018-02-13T08:33:41.232] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:33:41.344] [INFO] cheese - batch complete in: 1.325 secs -[2018-02-13T08:33:41.555] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2015 Pan American Games - Women's discus throw and last: Battle of Baiji (October-December 2014) -[2018-02-13T08:33:41.623] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:33:41.731] [INFO] cheese - inserting 1000 documents. first: List of Black Books episode and last: Vintgar Gorge -[2018-02-13T08:33:41.771] [INFO] cheese - inserting 1000 documents. first: File:Evpic.jpg and last: Hexanchus -[2018-02-13T08:33:41.823] [INFO] cheese - inserting 1000 documents. first: Joe Huxley and last: Wikipedia:Articles for deletion/Rob Edmond -[2018-02-13T08:33:41.843] [INFO] cheese - inserting 1000 documents. first: The Phantom Rider (Universal serial) and last: Natalie Bodanya -[2018-02-13T08:33:41.856] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:33:41.888] [INFO] cheese - inserting 1000 documents. first: Biathlon at the 1999 Asian Winter Games - Women's individual and last: DRESS syndrome -[2018-02-13T08:33:41.919] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:33:41.958] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:33:42.012] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:33:42.014] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:33:42.043] [INFO] cheese - inserting 1000 documents. first: Hassel Auxiliary Dam and last: Eastern cape Redfin -[2018-02-13T08:33:42.120] [INFO] cheese - inserting 1000 documents. first: Andrew Wishart and last: Category:Organizations based in Winston-Salem, North Carolina -[2018-02-13T08:33:42.140] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:33:42.223] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:33:42.401] [INFO] cheese - inserting 1000 documents. first: Bulgarian National Union - New Democracy and last: China-Kazakhstan relations -[2018-02-13T08:33:42.443] [INFO] cheese - inserting 1000 documents. first: Arthur L. Benton and last: Wikipedia:WikiProject Topical outlines/Draft/List of basic Cuba topics -[2018-02-13T08:33:42.461] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:33:42.499] [INFO] cheese - inserting 1000 documents. first: Chennai-Bangalore line and last: The Ancient Allan -[2018-02-13T08:33:42.528] [INFO] cheese - inserting 1000 documents. first: Ulrich von Brockdorff-Rantzau and last: The Legend Of Zelda: Oracle of Ages -[2018-02-13T08:33:42.562] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:33:42.629] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:33:42.668] [INFO] cheese - batch complete in: 1.526 secs -[2018-02-13T08:33:42.679] [INFO] cheese - inserting 1000 documents. first: The Sicilian Vespers and last: Esterhazy (town of) -[2018-02-13T08:33:42.770] [INFO] cheese - inserting 1000 documents. first: Hampshire Garden Apartment Buildings and last: Category:Roller coasters introduced in 2000 -[2018-02-13T08:33:42.796] [INFO] cheese - inserting 1000 documents. first: Saint Valerius and last: No. 10 in F minor, "Allegro Agitato", or "Appassionata" -[2018-02-13T08:33:42.819] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:33:42.834] [INFO] cheese - inserting 1000 documents. first: Chapter 2. Why So Serious? - The Misconceptions of Me and last: Croatian-Serbian -[2018-02-13T08:33:42.841] [INFO] cheese - inserting 1000 documents. first: Anwaruddin Choudhury and last: Piaggio P.111 -[2018-02-13T08:33:42.953] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:33:42.969] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:33:42.993] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:33:43.084] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:33:43.308] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topical outlines/Draft/List of basic Cyprus topics and last: Mylargadda -[2018-02-13T08:33:43.379] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:33:43.476] [INFO] cheese - inserting 1000 documents. first: Costa Rica-Iceland relations and last: Delaware-William & Mary football rivalry -[2018-02-13T08:33:43.571] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:33:43.576] [INFO] cheese - inserting 1000 documents. first: Flint maize and last: Category:1968–69 Scottish Football League -[2018-02-13T08:33:43.703] [INFO] cheese - inserting 1000 documents. first: Category:Trinidad and Tobago and the Commonwealth of Nations and last: List of tallest twin buildings in the Philippines -[2018-02-13T08:33:43.717] [INFO] cheese - inserting 1000 documents. first: No. 2 in A minor, "Molto Vivace", or "Fusées" (Rockets) and last: Chengdu Metro -[2018-02-13T08:33:43.735] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:33:43.815] [INFO] cheese - inserting 1000 documents. first: Saarländischer Rundfunk and last: Willard Van Quine -[2018-02-13T08:33:43.830] [INFO] cheese - inserting 1000 documents. first: Point of Entry (Doctor Who audio) and last: Template:CTB minutes/06-1932-01 -[2018-02-13T08:33:43.873] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:33:43.881] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:33:43.913] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:33:43.949] [INFO] cheese - inserting 1000 documents. first: Dancesport at the 2010 Asian Games - Five standard dances and last: Daniel Esterhazy (1585-1654) -[2018-02-13T08:33:43.980] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:33:44.038] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:33:44.213] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2008 June 21 and last: Wilbur mitcham -[2018-02-13T08:33:44.239] [INFO] cheese - inserting 1000 documents. first: Last House on the Left and last: Voronoi diagrams -[2018-02-13T08:33:44.318] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:33:44.336] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Cumberland County, Kentucky and last: Cham, Iran (disambiguation) -[2018-02-13T08:33:44.406] [INFO] cheese - inserting 1000 documents. first: Directors Guild of America Award for Outstanding Directing - Documentaries and last: Template:Country data Phitsanulok -[2018-02-13T08:33:44.408] [INFO] cheese - batch complete in: 1.74 secs -[2018-02-13T08:33:44.450] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:33:44.589] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:33:44.649] [INFO] cheese - inserting 1000 documents. first: Lemuel Wells and last: Sonoma Valley Regional Park -[2018-02-13T08:33:44.692] [INFO] cheese - inserting 1000 documents. first: St. Andrew's Cathedral, Singapore and last: Kemeko -[2018-02-13T08:33:44.746] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:33:44.872] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Database reports/User template redirects and last: Category:Ivorian expatriates in Romania -[2018-02-13T08:33:44.877] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:33:44.994] [INFO] cheese - inserting 1000 documents. first: Malabo Airport and last: Zeus-Ammon -[2018-02-13T08:33:45.050] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:33:45.146] [INFO] cheese - inserting 1000 documents. first: Template:Country data Phitsanulok/doc and last: Downtown West - Kerby -[2018-02-13T08:33:45.150] [INFO] cheese - batch complete in: 1.237 secs -[2018-02-13T08:33:45.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Midnight Escape (band) and last: Capes of the Kimberley coastline of Western Australia -[2018-02-13T08:33:45.219] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:33:45.304] [INFO] cheese - inserting 1000 documents. first: Coins of the Venezuelan venezolano and last: George Marple -[2018-02-13T08:33:45.303] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:33:45.396] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:33:45.465] [INFO] cheese - inserting 1000 documents. first: File:KennetOceanographyCentre.jpg and last: Papadimos -[2018-02-13T08:33:45.528] [INFO] cheese - inserting 1000 documents. first: Embry-Riddle-Prescott Eagles and last: Făgăraș-Sibiu Motorway -[2018-02-13T08:33:45.554] [INFO] cheese - inserting 1000 documents. first: Andrey Pervozvanny class battleship and last: Alosa volgensis -[2018-02-13T08:33:45.558] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:33:45.579] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T08:33:45.637] [INFO] cheese - inserting 1000 documents. first: Template:North Omaha and last: River Plate F.C. -[2018-02-13T08:33:45.655] [INFO] cheese - inserting 1000 documents. first: Treaty of San Ildefonse and last: Broadcasting, Entertainment, Cinematograph and Theatre Union -[2018-02-13T08:33:45.666] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:33:45.685] [INFO] cheese - inserting 1000 documents. first: U+28B2 and last: Template:Did you know nominations/Black bun -[2018-02-13T08:33:45.723] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:33:45.733] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:33:45.798] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:33:45.841] [INFO] cheese - inserting 1000 documents. first: Batallion wars and last: North Plainfield (NJ) -[2018-02-13T08:33:45.925] [INFO] cheese - inserting 1000 documents. first: Little Sebakwe River and last: Gregers Gram (1846-1929) -[2018-02-13T08:33:45.934] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:33:45.974] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:33:46.049] [INFO] cheese - inserting 1000 documents. first: Filigranes and last: Paul Lambert (disambiguation) -[2018-02-13T08:33:46.149] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:33:46.251] [INFO] cheese - inserting 1000 documents. first: Idol (Swedish TV series) 2013 and last: Taekwondo at the 2010 Asian Games – Women's 73 kg -[2018-02-13T08:33:46.283] [INFO] cheese - inserting 1000 documents. first: (118294) 1998 SQ75 and last: The Monstruous Regiment of Women -[2018-02-13T08:33:46.307] [INFO] cheese - inserting 1000 documents. first: Danny Morrison (Carolina Panthers) and last: Pusa hispida saimensis -[2018-02-13T08:33:46.427] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:33:46.450] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:33:46.457] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:33:46.534] [INFO] cheese - inserting 1000 documents. first: Georgia and Florida Railway (1906-26) and last: Hanover-Würzburg high-speed railway -[2018-02-13T08:33:46.577] [INFO] cheese - inserting 1000 documents. first: Monticello Hotel (Longview) and last: American Japanese -[2018-02-13T08:33:46.634] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:33:46.761] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:33:46.891] [INFO] cheese - inserting 1000 documents. first: Frenchtown (NJ) and last: Ashland Stakes -[2018-02-13T08:33:47.021] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:33:47.108] [INFO] cheese - inserting 1000 documents. first: Swimcaps and last: Juntendo University -[2018-02-13T08:33:47.111] [INFO] cheese - inserting 1000 documents. first: MBS-TV and last: Draft:MassRoots -[2018-02-13T08:33:47.180] [INFO] cheese - inserting 1000 documents. first: Porvenir Municipality and last: Wikipedia:Articles for deletion/Easycore -[2018-02-13T08:33:47.190] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:33:47.208] [INFO] cheese - inserting 1000 documents. first: File:Somewhere Slow.jpg and last: Category:Finley Football Club players -[2018-02-13T08:33:47.208] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:33:47.217] [INFO] cheese - inserting 1000 documents. first: Hardman Philips House and last: Category:Geography of Randolph County, North Carolina -[2018-02-13T08:33:47.358] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:33:47.375] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:33:47.441] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:33:47.621] [INFO] cheese - inserting 1000 documents. first: Beretta 9000S Type F40 and last: Mohammed Neguib -[2018-02-13T08:33:47.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/3GPP Long Term Evolution and last: Indonesia-Tunisia relations -[2018-02-13T08:33:47.697] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:33:47.702] [INFO] cheese - batch complete in: 1.904 secs -[2018-02-13T08:33:47.838] [INFO] cheese - inserting 1000 documents. first: Isarn (bishop of Grenoble) and last: File:KYMC-FM logo.png -[2018-02-13T08:33:47.845] [INFO] cheese - inserting 1000 documents. first: Durbach and last: Wikipedia:WikiProject Spam/LinkSearch/Proboards49.com -[2018-02-13T08:33:47.884] [INFO] cheese - inserting 1000 documents. first: (404) Arsinoë and last: Malmö Airport -[2018-02-13T08:33:47.896] [INFO] cheese - inserting 1000 documents. first: Category:Murray Football League players and last: Chiesa di Santa Maria Maddalena dei Pazzi -[2018-02-13T08:33:47.993] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:33:48.008] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:33:48.017] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:33:48.067] [INFO] cheese - batch complete in: 1.305 secs -[2018-02-13T08:33:48.111] [INFO] cheese - inserting 1000 documents. first: Noble Virgins of Jesus and last: Nate Willems -[2018-02-13T08:33:48.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Heriberto Gil Martínez and last: Coastal rowing -[2018-02-13T08:33:48.218] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:33:48.308] [INFO] cheese - inserting 1000 documents. first: Category:Women in Mizoram politics and last: Illinois-Indiana men's basketball rivalry -[2018-02-13T08:33:48.343] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:33:48.378] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:33:48.584] [INFO] cheese - inserting 1000 documents. first: Category:Anglican suffragan bishops in the Diocese of Chelmsford and last: Murray International Trust -[2018-02-13T08:33:48.623] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:33:48.813] [INFO] cheese - inserting 1000 documents. first: Ameer Muawiyah and last: Fencing at the 1972 Summer Olympics - Men's epee -[2018-02-13T08:33:48.815] [INFO] cheese - inserting 1000 documents. first: Manny's Music and last: Category:Alaska education-related lists -[2018-02-13T08:33:48.854] [INFO] cheese - inserting 1000 documents. first: Ouvrage Reservoir and last: Category:Wikipedia sockpuppets of Bosnipedian -[2018-02-13T08:33:48.864] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:33:48.867] [INFO] cheese - inserting 1000 documents. first: Antonio Farré and last: Category:Plantar flexors -[2018-02-13T08:33:48.878] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:33:48.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkSearch/Proboards50.com and last: Strainer cycle -[2018-02-13T08:33:48.893] [INFO] cheese - inserting 1000 documents. first: Melusina, Countess of Walsingham and last: Battle of Southern Shansi -[2018-02-13T08:33:48.917] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:33:48.931] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:33:49.030] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:33:49.061] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:33:49.211] [INFO] cheese - inserting 1000 documents. first: Papineau Avenue and last: Adam Jones (football cornerback) -[2018-02-13T08:33:49.221] [INFO] cheese - inserting 1000 documents. first: Index of physics articles: A-G and last: List of Alderson-Broaddus Battlers head football coaches -[2018-02-13T08:33:49.254] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:33:49.267] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:33:49.321] [INFO] cheese - inserting 1000 documents. first: Kornel Ujejski and last: The Merv Griffin Show -[2018-02-13T08:33:49.385] [INFO] cheese - inserting 1000 documents. first: Far North Queensland Bulls FC and last: Template:Did you know nominations/Hellcow -[2018-02-13T08:33:49.415] [INFO] cheese - batch complete in: 1.713 secs -[2018-02-13T08:33:49.433] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:33:49.500] [INFO] cheese - inserting 1000 documents. first: Medical grade silicone and last: Wikipedia:Articles for deletion/Tux, of Math Command -[2018-02-13T08:33:49.520] [INFO] cheese - inserting 1000 documents. first: Dwitiya and last: Category:Plants described in 1779 -[2018-02-13T08:33:49.580] [INFO] cheese - inserting 1000 documents. first: Template:Iowa Democratic primary polls, 2016 and last: List of Japanese football transfers winter 2015-16 -[2018-02-13T08:33:49.581] [INFO] cheese - inserting 1000 documents. first: Devi and Vrkis and last: Mary Ballou -[2018-02-13T08:33:49.595] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:33:49.612] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:33:49.638] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:33:49.711] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:33:49.837] [INFO] cheese - inserting 1000 documents. first: Topical outline of crafts and last: Donald Horowitz (New Jersey lawyer) -[2018-02-13T08:33:49.915] [INFO] cheese - inserting 1000 documents. first: CF União de Coimbra and last: Home, WA -[2018-02-13T08:33:49.973] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:33:50.176] [INFO] cheese - inserting 1000 documents. first: Alexander Macleod and last: Collinia beringensis -[2018-02-13T08:33:50.208] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:33:50.222] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Transpositional modulation and last: List of members of the European Parliament for Greece, 1994-99 -[2018-02-13T08:33:50.326] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:33:50.532] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:33:50.803] [INFO] cheese - inserting 1000 documents. first: File:Blood Sweat And Tears The Owl And the Pussy Cat.jpg and last: Cecil B. Brown Jr. -[2018-02-13T08:33:51.024] [INFO] cheese - batch complete in: 1.386 secs -[2018-02-13T08:33:51.049] [INFO] cheese - inserting 1000 documents. first: Gessertshausen and last: Person-fit analysis -[2018-02-13T08:33:51.237] [INFO] cheese - inserting 1000 documents. first: Judo at the 2014 Commonwealth Games - Women's 70 kg and last: Lloyd Wood (director) -[2018-02-13T08:33:51.279] [INFO] cheese - inserting 1000 documents. first: Category:Thought experiments in physics and last: Theodor Quandt -[2018-02-13T08:33:51.297] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:33:51.445] [INFO] cheese - batch complete in: 1.734 secs -[2018-02-13T08:33:51.573] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Indian literature articles of Low-importance and last: Causal set bibliography -[2018-02-13T08:33:51.613] [INFO] cheese - batch complete in: 2.018 secs -[2018-02-13T08:33:51.665] [INFO] cheese - inserting 1000 documents. first: International political economy and last: Youth work -[2018-02-13T08:33:51.726] [INFO] cheese - batch complete in: 1.753 secs -[2018-02-13T08:33:51.933] [INFO] cheese - inserting 1000 documents. first: Hoodsport, WA and last: Jaap Eden baan -[2018-02-13T08:33:51.973] [INFO] cheese - inserting 1000 documents. first: List of members of the Italian Senate, 2008-13 and last: List of minor planets: 419001-420000 -[2018-02-13T08:33:52.028] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:33:52.042] [INFO] cheese - batch complete in: 2.626 secs -[2018-02-13T08:33:52.091] [INFO] cheese - batch complete in: 1.883 secs -[2018-02-13T08:33:52.230] [INFO] cheese - inserting 1000 documents. first: Orson Welles and People and last: Category:1910 in British sport -[2018-02-13T08:33:52.259] [INFO] cheese - inserting 1000 documents. first: File:FK Skopje Logo.png and last: Garudinistis variegata -[2018-02-13T08:33:52.332] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:33:52.408] [INFO] cheese - inserting 1000 documents. first: Kane & Abel (miniseries) and last: Sproing awards -[2018-02-13T08:33:52.410] [INFO] cheese - batch complete in: 1.875 secs -[2018-02-13T08:33:52.579] [INFO] cheese - inserting 1000 documents. first: Cryptolechia glischrodes and last: Manchester united season 2011-12 -[2018-02-13T08:33:52.611] [INFO] cheese - inserting 1000 documents. first: Hugh Montgomery and last: Ofenhorn -[2018-02-13T08:33:52.691] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T08:33:52.794] [INFO] cheese - inserting 1000 documents. first: Category:Plutonic rocks and last: File:K-os the trill a journey so far album cover.jpg -[2018-02-13T08:33:52.810] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:33:52.700] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:33:53.040] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T08:33:53.211] [INFO] cheese - inserting 1000 documents. first: Mausoleum Meisdorf and last: Category:2008 in Maltese sport -[2018-02-13T08:33:53.324] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:33:53.347] [INFO] cheese - inserting 1000 documents. first: International Rutabaga Curling Championship and last: List of episodes of Arrested Development -[2018-02-13T08:33:53.360] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 260001-261000 and last: Moroccan Arabic-African Federation Treaty referendum, 1984 -[2018-02-13T08:33:53.411] [INFO] cheese - inserting 1000 documents. first: Community West Bancshares and last: Harpers ferry raid -[2018-02-13T08:33:53.425] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:33:53.459] [INFO] cheese - inserting 1000 documents. first: Route 34A (New York) and last: Parker Canyon Lake -[2018-02-13T08:33:53.460] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:33:53.538] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:33:53.541] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:33:53.632] [INFO] cheese - inserting 1000 documents. first: Sand Olive and last: Do You Remember the First Time? -[2018-02-13T08:33:53.662] [INFO] cheese - inserting 1000 documents. first: Denominación de origen calificada and last: 2010 in sumo -[2018-02-13T08:33:53.676] [INFO] cheese - inserting 1000 documents. first: Filinota gratiosa and last: DS Valdivia -[2018-02-13T08:33:53.722] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T08:33:53.759] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:33:53.783] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:33:53.796] [INFO] cheese - inserting 1000 documents. first: Ella Grasso and last: Adorno family -[2018-02-13T08:33:53.833] [INFO] cheese - inserting 1000 documents. first: Detroit-Dearborn Motor Car Company and last: Bust of Francesco I d'Este -[2018-02-13T08:33:53.952] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:33:53.980] [INFO] cheese - batch complete in: 1.936 secs -[2018-02-13T08:33:54.005] [INFO] cheese - inserting 1000 documents. first: File:FK Sateska Logo.jpg and last: Wikipedia:Articles for deletion/Scott Manville -[2018-02-13T08:33:54.162] [INFO] cheese - inserting 1000 documents. first: New York State Route 15 (1924-1938) and last: PENTA - Pena Táxi Aéreo -[2018-02-13T08:33:54.193] [INFO] cheese - inserting 1000 documents. first: The Virgins (album) and last: Philip Gilbert Hammerton -[2018-02-13T08:33:54.230] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:33:54.233] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:33:54.266] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:33:54.428] [INFO] cheese - inserting 1000 documents. first: Brazilian snapper and last: Category:Villages in Prakasam district -[2018-02-13T08:33:54.434] [INFO] cheese - inserting 1000 documents. first: Civic guild of old mercers and last: 2004 UEFA European Under-17 Championship -[2018-02-13T08:33:54.490] [INFO] cheese - inserting 1000 documents. first: Michael Oscislawski and last: Wikipedia:WikiProject Category sorting/userbox -[2018-02-13T08:33:54.551] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:33:54.559] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:33:54.611] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:33:54.651] [INFO] cheese - inserting 1000 documents. first: Pa vag, 1982-86 and last: Phillippines Campaign (1944-45) -[2018-02-13T08:33:54.707] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:33:54.775] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meenush and last: Paraguay–India relations -[2018-02-13T08:33:54.904] [INFO] cheese - inserting 1000 documents. first: File:Cover me 96.jpg and last: Category:British travel books -[2018-02-13T08:33:54.994] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:33:55.064] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Anatolia Region and last: Category:Operas by Vicente Martín y Soler -[2018-02-13T08:33:55.092] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:33:55.221] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:33:55.245] [INFO] cheese - inserting 1000 documents. first: Pittsburgh-Penn State football rivalry and last: Our Neighbors - The Carters -[2018-02-13T08:33:55.285] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:33:55.369] [INFO] cheese - inserting 1000 documents. first: Mike Howlett and last: Fall of France -[2018-02-13T08:33:55.373] [INFO] cheese - inserting 1000 documents. first: Valdurmon and last: Kera railway station -[2018-02-13T08:33:55.417] [INFO] cheese - inserting 1000 documents. first: Towsontown Boulevard and last: Laureta -[2018-02-13T08:33:55.427] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:33:55.440] [INFO] cheese - inserting 1000 documents. first: Portal:Languages and last: Uranous -[2018-02-13T08:33:55.511] [INFO] cheese - batch complete in: 1.531 secs -[2018-02-13T08:33:55.539] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:33:55.573] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:33:55.575] [INFO] cheese - inserting 1000 documents. first: Paraguay - India relations and last: Playboy mansion -[2018-02-13T08:33:55.645] [INFO] cheese - inserting 1000 documents. first: Polska Liga Hokejowa season (1997-98) and last: Alpelisib -[2018-02-13T08:33:55.659] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:33:55.684] [INFO] cheese - inserting 1000 documents. first: Story Quarterly and last: Tremont Row -[2018-02-13T08:33:55.684] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T08:33:55.739] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:33:55.975] [INFO] cheese - inserting 1000 documents. first: Deutsche Schule — Dörpfeld-Gymnasium — and last: Route 114A (Massachusetts - Rhode Island) -[2018-02-13T08:33:55.999] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:33:56.017] [INFO] cheese - inserting 1000 documents. first: Rudzani Ramudzuli and last: Wikipedia:Articles for deletion/City of Caterpillar -[2018-02-13T08:33:56.060] [INFO] cheese - inserting 1000 documents. first: Peak Hill, Western Australia and last: Barabanki (Lok Sabha constituency) -[2018-02-13T08:33:56.094] [INFO] cheese - inserting 1000 documents. first: Sa'ad ad-Din and last: Bernard Raymond Fink -[2018-02-13T08:33:56.114] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:33:56.171] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:33:56.201] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:33:56.307] [INFO] cheese - inserting 1000 documents. first: Central Oklahoma Bronchos men's basketball and last: 27 rue de Fleurus -[2018-02-13T08:33:56.323] [INFO] cheese - inserting 1000 documents. first: CIGI Campus and last: The Paterson Press -[2018-02-13T08:33:56.341] [INFO] cheese - inserting 1000 documents. first: List of Tool-lending libraries and last: William of Jülich-Cleves-Berg -[2018-02-13T08:33:56.402] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:33:56.450] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:33:56.523] [INFO] cheese - inserting 1000 documents. first: Sailing at the 2015 Pan American Games - Hobie 16 and last: Covet (song) -[2018-02-13T08:33:56.544] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:33:56.599] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:33:56.738] [INFO] cheese - inserting 1000 documents. first: Two-seam fastball and last: Cael Sanderson -[2018-02-13T08:33:56.836] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/1999 September 28 and last: Our Lady of Sheshan -[2018-02-13T08:33:56.846] [INFO] cheese - batch complete in: 1.334 secs -[2018-02-13T08:33:56.922] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:33:56.926] [INFO] cheese - inserting 1000 documents. first: Spoiled (Basement song) and last: Siege of Antwerp (1584-85) -[2018-02-13T08:33:56.941] [INFO] cheese - inserting 1000 documents. first: Gansett and last: Independent Lubricant Manufacturer Association -[2018-02-13T08:33:56.962] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T08:33:57.048] [INFO] cheese - inserting 1000 documents. first: Monad University and last: Dnipro Ukraine -[2018-02-13T08:33:57.072] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:33:57.099] [INFO] cheese - inserting 1000 documents. first: National Lampoon Gentleman's Bathroom Companion II and last: Category:Boxers from West Virginia -[2018-02-13T08:33:57.142] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:33:57.224] [INFO] cheese - inserting 1000 documents. first: Harittu and last: Lamaseries -[2018-02-13T08:33:57.254] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:33:57.257] [INFO] cheese - inserting 1000 documents. first: Visa requirements for Bahraini citizens and last: Battle of Elaia–Kalamas -[2018-02-13T08:33:57.354] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:33:57.362] [INFO] cheese - inserting 1000 documents. first: Ski jumping at the 2015 Winter Universiade - Women's team normal hill and last: Speed skating at the 2014 Winter Olympics - Men's team pursuit -[2018-02-13T08:33:57.367] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:33:57.433] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:33:57.505] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ships articles by quality/43 and last: Aldershot North railway station -[2018-02-13T08:33:57.622] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:33:57.735] [INFO] cheese - inserting 1000 documents. first: WTKV and last: Category:University Athletic Association of the Philippines seasons -[2018-02-13T08:33:57.737] [INFO] cheese - inserting 1000 documents. first: Sri Lankan women's cricket team in New Zealand in 2015-16 and last: Peritornenta stigmatias -[2018-02-13T08:33:57.748] [INFO] cheese - inserting 1000 documents. first: Phi4 Ceti and last: Category:359 in Europe -[2018-02-13T08:33:57.764] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T08:33:57.788] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:33:57.829] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:33:57.863] [INFO] cheese - inserting 1000 documents. first: Borkhar and last: The 30th Annual John Lennon Tribute: Live from the Beacon Theatre, NYC -[2018-02-13T08:33:57.958] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:33:58.010] [INFO] cheese - inserting 1000 documents. first: Zuph and last: Sacix -[2018-02-13T08:33:58.044] [INFO] cheese - inserting 1000 documents. first: Battle of Elaia-Kalamas and last: Crotaphytus grismeri -[2018-02-13T08:33:58.098] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2004 Summer Paralympics - Women's 50 metre freestyle S13 and last: Swimming at the 2013 Southeast Asian Games - Women's 4 × 200 metre freestyle relay -[2018-02-13T08:33:58.112] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T08:33:58.126] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T08:33:58.132] [INFO] cheese - inserting 1000 documents. first: Born for this and last: Lyn Lemaire -[2018-02-13T08:33:58.136] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:33:58.281] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:33:58.288] [INFO] cheese - inserting 1000 documents. first: Louie Kelcher and last: Category:TCU Horned Frogs football -[2018-02-13T08:33:58.347] [INFO] cheese - inserting 1000 documents. first: Orchids of Ireland and last: Template:Pitchfork (website) -[2018-02-13T08:33:58.374] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:33:58.420] [INFO] cheese - inserting 1000 documents. first: Edgar Bowers and last: The X-Files Mythology, Volume 4 – Super Soldiers -[2018-02-13T08:33:58.439] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:33:58.467] [INFO] cheese - inserting 1000 documents. first: Pârse and last: Nataliya Meshcheryakova -[2018-02-13T08:33:58.480] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2008 Summer Paralympics - Men's 100 metre backstroke S9 and last: Riga-Lugazi Railway -[2018-02-13T08:33:58.503] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:33:58.522] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:33:58.569] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:33:58.841] [INFO] cheese - inserting 1000 documents. first: Perry Stokes Airport and last: Wikipedia:Miscellany for deletion/User:Alantauber -[2018-02-13T08:33:58.941] [INFO] cheese - inserting 1000 documents. first: Penn State-Berks Nittany Lions and last: Technological University of the Philippines - Visayas -[2018-02-13T08:33:58.979] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:33:58.995] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:33:59.165] [INFO] cheese - inserting 1000 documents. first: Callionymus reticulatus and last: Mar Thomite -[2018-02-13T08:33:59.177] [INFO] cheese - inserting 1000 documents. first: Ground pepper and last: London Portal -[2018-02-13T08:33:59.237] [INFO] cheese - inserting 1000 documents. first: Russell Rickford and last: Category:ECM Records live albums -[2018-02-13T08:33:59.289] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:33:59.328] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:33:59.388] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:33:59.400] [INFO] cheese - inserting 1000 documents. first: Taiwan-South Korea relations and last: Say No To The Devil -[2018-02-13T08:33:59.474] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:33:59.491] [INFO] cheese - inserting 1000 documents. first: Bic code and last: The art of computer programming -[2018-02-13T08:33:59.520] [INFO] cheese - inserting 1000 documents. first: BB&T Ballpark at Historic Bowman Field and last: GNB -[2018-02-13T08:33:59.569] [INFO] cheese - inserting 1000 documents. first: 312th Fighter-Bomber Squadron and last: Bradevelt, NJ -[2018-02-13T08:33:59.572] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:33:59.621] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:33:59.644] [INFO] cheese - inserting 1000 documents. first: Blake School (Lake City, Florida) and last: Shoshanat HaAmakim -[2018-02-13T08:33:59.688] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:33:59.714] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:33:59.756] [INFO] cheese - inserting 1000 documents. first: U.S. Route 5 Alternate (New Haven, Connecticut 1941-1966) and last: The Souther-Hillman-Furay Band -[2018-02-13T08:33:59.791] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:33:59.832] [INFO] cheese - inserting 1000 documents. first: Michelle Maulkin and last: File:1972 awardwinning.jpg -[2018-02-13T08:33:59.846] [INFO] cheese - inserting 1000 documents. first: Law of Nigeria and last: Rub and tug -[2018-02-13T08:33:59.909] [INFO] cheese - inserting 1000 documents. first: Jonathan Harker and last: Thought Adjuster -[2018-02-13T08:33:59.912] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:33:59.915] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:33:59.991] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:34:00.215] [INFO] cheese - inserting 1000 documents. first: Without You (Oh Wonder song) and last: Wheelchair fencing at the 2004 Summer Paralympics - Men's foil A -[2018-02-13T08:34:00.257] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:34:00.268] [INFO] cheese - inserting 1000 documents. first: Template:Israeli top flight seasons and last: Patrick McNamee -[2018-02-13T08:34:00.400] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:34:00.417] [INFO] cheese - inserting 1000 documents. first: Troclosene and last: Template:Fb competition 2009-10 Challenge League -[2018-02-13T08:34:00.454] [INFO] cheese - inserting 1000 documents. first: Bradevelt and last: Tamil blogosphere -[2018-02-13T08:34:00.457] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:34:00.563] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:34:00.593] [INFO] cheese - inserting 1000 documents. first: Category:Dune series adaptations and last: Wushu at the 2010 Asian Games - Men's sanda 60 kg -[2018-02-13T08:34:00.598] [INFO] cheese - inserting 1000 documents. first: Hayatullah (disambiguation) and last: Presidential elections in Moldova -[2018-02-13T08:34:00.607] [INFO] cheese - inserting 1000 documents. first: Rub 'n tug and last: Dorsets -[2018-02-13T08:34:00.647] [INFO] cheese - inserting 1000 documents. first: Lolth and last: Western front -[2018-02-13T08:34:00.654] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:34:00.690] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:34:00.734] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:34:00.797] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:34:00.856] [INFO] cheese - inserting 1000 documents. first: Ann Baskett and last: Ultra lounge -[2018-02-13T08:34:00.997] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:34:01.025] [INFO] cheese - inserting 1000 documents. first: USDA National Nutrient Database and last: Charlottesville Fashion Square -[2018-02-13T08:34:01.088] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:34:01.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 March 17 and last: Tinker vs. Des Moines -[2018-02-13T08:34:01.118] [INFO] cheese - inserting 1000 documents. first: Category:Irish country singers templates and last: Uprising of May 2-3, 1808 -[2018-02-13T08:34:01.178] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:34:01.178] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:34:01.182] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Robert Pearsall (architect) and last: Anne Perkin -[2018-02-13T08:34:01.261] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:34:01.379] [INFO] cheese - inserting 1000 documents. first: Category:World Airways accidents and incidents and last: Wikipedia:Articles for deletion/Pacific Square -[2018-02-13T08:34:01.514] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:34:01.569] [INFO] cheese - inserting 1000 documents. first: H.T. Burleigh and last: Wikipedia:Articles for deletion/Larry Sanders (politician) -[2018-02-13T08:34:01.630] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:34:01.701] [INFO] cheese - inserting 1000 documents. first: Fernando Fernandes and last: 1978–79 Maltese Premier League -[2018-02-13T08:34:01.734] [INFO] cheese - inserting 1000 documents. first: Guadalupe Contreras Ramos and last: University of denver -[2018-02-13T08:34:01.746] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:34:01.790] [INFO] cheese - inserting 1000 documents. first: UCI Mountain Bike & Trials World Championships - Men's cross-country eliminator and last: File:APeacocksTale.jpg -[2018-02-13T08:34:01.817] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:34:01.839] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:34:01.887] [INFO] cheese - inserting 1000 documents. first: Category:Marvel Comics Atlanteans and last: Corbett and Courtney Before the Kinetograph -[2018-02-13T08:34:01.925] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:34:01.933] [INFO] cheese - inserting 1000 documents. first: Annie Perkin and last: 2014 Grand Prix of Bahrain -[2018-02-13T08:34:01.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The real students of telecom and last: Further Continuing Appropriations, 2010 -[2018-02-13T08:34:02.030] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:34:02.059] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:34:02.066] [INFO] cheese - inserting 1000 documents. first: Imperial pint and last: The Buzz -[2018-02-13T08:34:02.155] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:34:02.159] [INFO] cheese - inserting 1000 documents. first: John McDougall (disambiguation) and last: Category:Futsal in Slovakia -[2018-02-13T08:34:02.226] [INFO] cheese - inserting 1000 documents. first: 1979–80 Maltese Premier League and last: Ryazanskiy Prospekt -[2018-02-13T08:34:02.246] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:34:02.310] [INFO] cheese - inserting 1000 documents. first: Transverse mesocolons and last: Category:North Vietnamese military personnel of the Vietnam War -[2018-02-13T08:34:02.321] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:34:02.387] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:34:02.412] [INFO] cheese - inserting 1000 documents. first: Joseph Wanton Morrison and last: Adventures in slumberland (film) -[2018-02-13T08:34:02.464] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:34:02.523] [INFO] cheese - inserting 1000 documents. first: 2014 Grand Prix of Spain and last: Category:Rugby union at the 2002 Asian Games -[2018-02-13T08:34:02.537] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/William Olin and last: File:Himg logo.jpg -[2018-02-13T08:34:02.592] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:34:02.732] [INFO] cheese - inserting 1000 documents. first: 1959–60 Danish Ice Hockey Championship season and last: James Franklin (quarterback) -[2018-02-13T08:34:02.759] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:34:02.812] [INFO] cheese - inserting 1000 documents. first: Longmans, Green and co. and last: Howard-Payne Junior College -[2018-02-13T08:34:02.832] [INFO] cheese - inserting 1000 documents. first: Minister of Foreign Affairs (Mongolia) and last: January 2006 deaths -[2018-02-13T08:34:02.832] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:34:02.866] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:34:02.955] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:34:03.228] [INFO] cheese - inserting 1000 documents. first: Acronicta cuspis and last: Wikipedia:WikiProject Spam/LinkReports/powerplaymanager.com -[2018-02-13T08:34:03.287] [INFO] cheese - inserting 1000 documents. first: Lombardi Trophy and last: Felipe Massa -[2018-02-13T08:34:03.295] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:34:03.348] [INFO] cheese - inserting 1000 documents. first: Ghost Dance shirt and last: Category:Boxing in Colombia -[2018-02-13T08:34:03.431] [INFO] cheese - inserting 1000 documents. first: File:Haigh's Mrs Kimble.jpg and last: Wikipedia:Articles for deletion/Mootstormfront -[2018-02-13T08:34:03.464] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:34:03.485] [INFO] cheese - inserting 1000 documents. first: Ken Halverson and last: Let's Talk About It (single) -[2018-02-13T08:34:03.492] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:34:03.508] [INFO] cheese - inserting 1000 documents. first: December 2005 deaths and last: Category:Suicide by city -[2018-02-13T08:34:03.529] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:34:03.580] [INFO] cheese - inserting 1000 documents. first: Category:1984 Summer Olympics stubs and last: Maasniel -[2018-02-13T08:34:03.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Bejucal and last: Tom Jones (lyricist) -[2018-02-13T08:34:03.656] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:34:03.720] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:34:03.748] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:34:03.787] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:34:04.072] [INFO] cheese - inserting 1000 documents. first: Nello Di Costanzo and last: Samuel Tuitupou -[2018-02-13T08:34:04.125] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:34:04.136] [INFO] cheese - inserting 1000 documents. first: Grossglockner Automobile and Motorcycle Races and last: Pepelu Vidal -[2018-02-13T08:34:04.237] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:34:04.297] [INFO] cheese - inserting 1000 documents. first: Life in a Day (single) and last: Template:Arrondissements of Haiti -[2018-02-13T08:34:04.311] [INFO] cheese - inserting 1000 documents. first: Category:Discoveries by Filip Fratev and last: Apollonius (ambassador) -[2018-02-13T08:34:04.322] [INFO] cheese - inserting 1000 documents. first: 1958 New York Film Critics Circle Awards and last: Wikipedia:Version 1.0 Editorial Team/AFL articles by quality log -[2018-02-13T08:34:04.401] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ours (song) and last: Republic of China (1949–present) -[2018-02-13T08:34:04.409] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:34:04.411] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:34:04.427] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:34:04.515] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:34:04.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Netflix distribution centers and last: File:Slaverweapon.jpg -[2018-02-13T08:34:04.605] [INFO] cheese - inserting 1000 documents. first: British Open (tennis) and last: DC vs. Heller -[2018-02-13T08:34:04.614] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:34:04.712] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:34:04.720] [INFO] cheese - inserting 1000 documents. first: Möbius mu function and last: Interstate 696 -[2018-02-13T08:34:04.845] [INFO] cheese - inserting 1000 documents. first: Freweyni and last: Template:Location map Indonesia Maluku-Western New Guinea -[2018-02-13T08:34:04.850] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:34:04.925] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:34:04.968] [INFO] cheese - inserting 1000 documents. first: File:More-Bad-News-Record-Store-250.jpg and last: Montreal Science Centre -[2018-02-13T08:34:05.021] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:34:05.029] [INFO] cheese - inserting 1000 documents. first: Causal dynamic triangulation and last: Alaska Newspapers, Inc. -[2018-02-13T08:34:05.040] [INFO] cheese - inserting 1000 documents. first: Mbayar and last: Robert J.S. Ross -[2018-02-13T08:34:05.110] [INFO] cheese - inserting 1000 documents. first: Offenbach-Ost station and last: Nimrod Shapria Bar-Or -[2018-02-13T08:34:05.205] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:34:05.209] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:34:05.334] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:05.417] [INFO] cheese - inserting 1000 documents. first: Pete Mathews Coliseum and last: Tendayi Jembere -[2018-02-13T08:34:05.507] [INFO] cheese - inserting 1000 documents. first: Marcus Williams (basketball, born 1986) and last: Jonas Karlsson (ice hockey) -[2018-02-13T08:34:05.552] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:34:05.594] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:34:05.636] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/In God We Trust: But Which One? and last: Bbf3 -[2018-02-13T08:34:05.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Texas Tech University/WP and last: Osborn Anderson -[2018-02-13T08:34:05.805] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:34:05.950] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:34:05.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cummer Valley Middle School and last: 278197 Touvron -[2018-02-13T08:34:05.976] [INFO] cheese - inserting 1000 documents. first: File:IntentionalTalklogo.jpg and last: Geothlypis formosa -[2018-02-13T08:34:05.989] [INFO] cheese - inserting 1000 documents. first: List of Moomin characters and last: Amt-ertl -[2018-02-13T08:34:06.048] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:34:06.066] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:34:06.068] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg Conservatory and last: Hawk (aircraft) -[2018-02-13T08:34:06.094] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:34:06.161] [INFO] cheese - inserting 1000 documents. first: Hymenocallis duvalensis and last: John Antwi -[2018-02-13T08:34:06.252] [INFO] cheese - batch complete in: 1.402 secs -[2018-02-13T08:34:06.299] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:34:06.410] [INFO] cheese - inserting 1000 documents. first: Mandy Ashford and last: Sichuan treecreeper -[2018-02-13T08:34:06.580] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:34:06.596] [INFO] cheese - inserting 1000 documents. first: BBF3 and last: Filmweb -[2018-02-13T08:34:06.703] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:34:06.719] [INFO] cheese - inserting 1000 documents. first: Varanus nebulosus and last: The O's -[2018-02-13T08:34:06.776] [INFO] cheese - inserting 1000 documents. first: Seventh Democratic Party presidential debate, March 2016 in Flint, Michigan and last: Category:Mountain passes of Bhutan -[2018-02-13T08:34:06.789] [INFO] cheese - inserting 1000 documents. first: General Philip Rey and last: Roger Malina -[2018-02-13T08:34:06.800] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:34:06.815] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1954 Central American and Caribbean Games and last: Category:Energy in Zimbabwe -[2018-02-13T08:34:06.857] [INFO] cheese - inserting 1000 documents. first: Civil Aviation Authority (Vietnam) and last: Gândul Mâței -[2018-02-13T08:34:06.857] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:06.902] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:34:06.931] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:34:06.969] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:34:07.161] [INFO] cheese - inserting 1000 documents. first: Dijkgraaf, Gelderland and last: File:David Brewer.jpg -[2018-02-13T08:34:07.219] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:34:07.226] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Misyulya and last: Pochayevsko-Uspenskaya Lavra -[2018-02-13T08:34:07.361] [INFO] cheese - inserting 1000 documents. first: Norman Nicholson and last: Papilio rutulus -[2018-02-13T08:34:07.372] [INFO] cheese - inserting 1000 documents. first: Brier Creek and last: William S. Thomas -[2018-02-13T08:34:07.401] [INFO] cheese - inserting 1000 documents. first: Portuguese Basketball Premier League and last: Wikipedia:Articles for deletion/Franciscan Missionaries of Divine Compassion -[2018-02-13T08:34:07.421] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:34:07.443] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:34:07.557] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:34:07.577] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:34:07.581] [INFO] cheese - inserting 1000 documents. first: Austro-Hungarian crown and last: Multidimensional Transform -[2018-02-13T08:34:07.622] [INFO] cheese - inserting 1000 documents. first: Category:Sanz (Hasidic dynasty) and last: The Hunt (1963 film) -[2018-02-13T08:34:07.698] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:34:07.703] [INFO] cheese - inserting 1000 documents. first: Melinda's World and last: Template:HornedFrogsBBCoach -[2018-02-13T08:34:07.827] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:34:07.989] [INFO] cheese - inserting 1000 documents. first: Category:1982 in golf and last: Emilio Aldama -[2018-02-13T08:34:08.213] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:34:08.309] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:34:08.502] [INFO] cheese - inserting 1000 documents. first: File:Vadim Yemelyanov.jpg and last: VSI (disambiguation) -[2018-02-13T08:34:08.560] [INFO] cheese - inserting 1000 documents. first: Pinnacle Valley and last: Template:Lebanese parliamentary election, 2005 -[2018-02-13T08:34:08.680] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:34:08.686] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:34:08.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hkcolordigital.com and last: Popular music in Latvia -[2018-02-13T08:34:08.801] [INFO] cheese - inserting 1000 documents. first: Sejong-City and last: Fred Hilton -[2018-02-13T08:34:08.822] [INFO] cheese - inserting 1000 documents. first: St. James' Way and last: Winfs Opath -[2018-02-13T08:34:08.880] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:34:08.905] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:34:08.907] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:34:08.983] [INFO] cheese - inserting 1000 documents. first: White Wilderness and last: Portal:Philadelphia/Philadelphia news/July 2008 -[2018-02-13T08:34:09.044] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:34:09.117] [INFO] cheese - inserting 1000 documents. first: Breithorn and last: Wikipedia:Incomplete lists -[2018-02-13T08:34:09.126] [INFO] cheese - inserting 1000 documents. first: 332706 Karlheidlas and last: Pugachev Airport -[2018-02-13T08:34:09.185] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:34:09.199] [INFO] cheese - inserting 1000 documents. first: Harold W. Wells and last: File:Richardson Heritage Room.png -[2018-02-13T08:34:09.244] [INFO] cheese - batch complete in: 1.687 secs -[2018-02-13T08:34:09.338] [INFO] cheese - batch complete in: 1.761 secs -[2018-02-13T08:34:09.350] [INFO] cheese - inserting 1000 documents. first: The Foreign Exchange and last: Take down -[2018-02-13T08:34:09.422] [INFO] cheese - inserting 1000 documents. first: KITG and last: Lee Ju-hwan -[2018-02-13T08:34:09.477] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:34:09.521] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:34:09.604] [INFO] cheese - inserting 1000 documents. first: Derived stem and last: Micronisation -[2018-02-13T08:34:09.625] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Archdiocese of Mendoza and last: Wikipedia:Miscellany for deletion/User:Kid Hurricane -[2018-02-13T08:34:09.640] [INFO] cheese - inserting 1000 documents. first: Province No. 1 and last: 2016 IIHF World U18 Championship Division I -[2018-02-13T08:34:09.673] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:34:09.683] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:34:09.828] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:34:09.973] [INFO] cheese - inserting 1000 documents. first: Category:Singapore transport templates and last: Hauerseter-Gardermobanen -[2018-02-13T08:34:10.077] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:34:10.115] [INFO] cheese - inserting 1000 documents. first: So Much 2 Say (Take 6 album) and last: The 2009–10 PBA Season -[2018-02-13T08:34:10.172] [INFO] cheese - inserting 1000 documents. first: Takedowns and last: Nba finals -[2018-02-13T08:34:10.233] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:34:10.277] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:34:10.329] [INFO] cheese - inserting 1000 documents. first: Skagenfondene and last: File:Page from Codex, the Damascus Pentateuch.jpg -[2018-02-13T08:34:10.379] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:34:10.381] [INFO] cheese - inserting 1000 documents. first: Aimerikos and last: Hailey (given name) -[2018-02-13T08:34:10.444] [INFO] cheese - inserting 1000 documents. first: Salviati (glassmakers) and last: Wikipedia:Articles for deletion/Man glue -[2018-02-13T08:34:10.485] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:34:10.543] [INFO] cheese - inserting 1000 documents. first: Template:National sports teams of Switzerland and last: Premium e-mail -[2018-02-13T08:34:10.591] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:10.691] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:34:10.699] [INFO] cheese - inserting 1000 documents. first: Eureka Flag and last: The Surgeon's Mate (novel) -[2018-02-13T08:34:10.782] [INFO] cheese - inserting 1000 documents. first: Doc Elliott and last: Template:Philadelphia 76ers 1982-83 NBA champions -[2018-02-13T08:34:10.843] [INFO] cheese - batch complete in: 1.598 secs -[2018-02-13T08:34:10.883] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:34:11.053] [INFO] cheese - inserting 1000 documents. first: Château de Pornic and last: Dihydroxynaphthoquinone -[2018-02-13T08:34:11.102] [INFO] cheese - inserting 1000 documents. first: Enharmonic note and last: Collaboration (Shorty Rogers and André Previn album) -[2018-02-13T08:34:11.166] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:34:11.242] [INFO] cheese - inserting 1000 documents. first: Neureichenau and last: Category:1919 in film -[2018-02-13T08:34:11.304] [INFO] cheese - inserting 1000 documents. first: File:The-music-of-christmas.scc.jpg and last: CPF6 -[2018-02-13T08:34:11.311] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:34:11.377] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:34:11.429] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:34:11.510] [INFO] cheese - inserting 1000 documents. first: José Fuentes Mares National Prize for Literature and last: Evci, Ayaş -[2018-02-13T08:34:11.585] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:34:11.677] [INFO] cheese - inserting 1000 documents. first: Rueter-Hess Reservoir (project) and last: Template:All India Rashtriya Janata Party/meta/shortname -[2018-02-13T08:34:11.744] [INFO] cheese - inserting 1000 documents. first: Template:Philadelphia Warriors 1946-47 BAA champions and last: Michigan Grrrowl -[2018-02-13T08:34:11.761] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:34:11.827] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:34:11.885] [INFO] cheese - inserting 1000 documents. first: Ashéninga language and last: Nakhtmin (charioteer) -[2018-02-13T08:34:11.946] [INFO] cheese - inserting 1000 documents. first: File:Toyah dreamchild.jpg and last: Han Yin -[2018-02-13T08:34:11.965] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:34:12.021] [INFO] cheese - inserting 1000 documents. first: The Nutmeg of Consolation (novel) and last: Ain't Misbehaving -[2018-02-13T08:34:12.041] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:34:12.082] [INFO] cheese - inserting 1000 documents. first: Simple Certificate Enrollment Protocol and last: File:Spidertrike.jpg -[2018-02-13T08:34:12.121] [INFO] cheese - inserting 1000 documents. first: Feruz, Ayaş and last: Category:Schools in Wakefield District -[2018-02-13T08:34:12.155] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T08:34:12.218] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:34:12.232] [INFO] cheese - inserting 1000 documents. first: Stoney Point (Le Cunff) Airport and last: Wikipedia:Featured article candidates/never proposal -[2018-02-13T08:34:12.196] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:12.346] [INFO] cheese - inserting 1000 documents. first: File:Kennedy Center Ribbon.svg and last: Robert Kemeys Thomas -[2018-02-13T08:34:12.416] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:34:12.489] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:34:12.710] [INFO] cheese - inserting 1000 documents. first: Devil guts and last: Draft:Presidential Preference Election -[2018-02-13T08:34:12.750] [INFO] cheese - inserting 1000 documents. first: Domination (Domino album) and last: Template:Cambrian substrate revolution/doc -[2018-02-13T08:34:12.778] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:12.817] [INFO] cheese - inserting 1000 documents. first: Liang Gang and last: Rolandylis -[2018-02-13T08:34:12.904] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:34:12.931] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:34:12.992] [INFO] cheese - inserting 1000 documents. first: TEPCO and last: Template:Cr icon -[2018-02-13T08:34:13.051] [INFO] cheese - inserting 1000 documents. first: Lake Karachay and last: Category:Norwegian biologists -[2018-02-13T08:34:13.077] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:34:13.095] [INFO] cheese - inserting 1000 documents. first: Seticosta chlorothicta and last: Brighton by-election, 1914 -[2018-02-13T08:34:13.128] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:34:13.153] [INFO] cheese - inserting 1000 documents. first: Hail To The Chief and last: Vodyanoi -[2018-02-13T08:34:13.210] [INFO] cheese - inserting 1000 documents. first: Vaginal microbicide and last: Icelandic Modern Media Initiative -[2018-02-13T08:34:13.209] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:34:13.283] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:34:13.320] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:34:13.333] [INFO] cheese - inserting 1000 documents. first: File:2003 Carolina Dodge Dealers 400 finish.jpg and last: Oţelul Galaţi -[2018-02-13T08:34:13.349] [INFO] cheese - inserting 1000 documents. first: File:Afro-Cuban Influence.jpg and last: Streptomyces prunicolor -[2018-02-13T08:34:13.402] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:34:13.471] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:34:13.501] [INFO] cheese - inserting 1000 documents. first: Jarque-Bera and last: Movable Cellular Automata -[2018-02-13T08:34:13.566] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:34:13.770] [INFO] cheese - inserting 1000 documents. first: Elements Of Life (album) and last: Montgomery County High School -[2018-02-13T08:34:13.855] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:34:13.892] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/adondeirhoy.com and last: Khirkiqocha -[2018-02-13T08:34:13.913] [INFO] cheese - inserting 1000 documents. first: Template:User OS:Solaris and last: Niagara Parks Commission -[2018-02-13T08:34:14.045] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:34:14.078] [INFO] cheese - inserting 1000 documents. first: South Korean films of 1976 and last: Gaith Abdul-Ghani -[2018-02-13T08:34:14.095] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:34:14.150] [INFO] cheese - inserting 1000 documents. first: Lodekka (Music) and last: Category:Sexism in Canada -[2018-02-13T08:34:14.218] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:34:14.285] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:14.336] [INFO] cheese - inserting 1000 documents. first: Joseph Thunder and last: Category:Frisia articles needing attention -[2018-02-13T08:34:14.451] [INFO] cheese - inserting 1000 documents. first: Template:Los Angeles Buccaneers coach navbox and last: Cognitive Neuroscience of Disgust -[2018-02-13T08:34:14.479] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:34:14.575] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:34:14.653] [INFO] cheese - inserting 1000 documents. first: Regnitzlosau and last: Edward Algernon FitzRoy -[2018-02-13T08:34:14.683] [INFO] cheese - inserting 1000 documents. first: Orville Faubus and last: Clifford Jarvis -[2018-02-13T08:34:14.742] [INFO] cheese - inserting 1000 documents. first: Category:Mixed martial arts in Oceania and last: Wikipedia:WikiProject Spam/Local/25cineframes.com -[2018-02-13T08:34:14.747] [INFO] cheese - inserting 1000 documents. first: Category:Scientists from Meghalaya and last: Lupercalia ignita -[2018-02-13T08:34:14.752] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:34:14.783] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:34:14.803] [INFO] cheese - batch complete in: 1.519 secs -[2018-02-13T08:34:14.893] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:34:14.952] [INFO] cheese - inserting 1000 documents. first: Lotf 'Ali Khan and last: Category:En Vogue albums -[2018-02-13T08:34:15.071] [INFO] cheese - inserting 1000 documents. first: Clay Office and Conference Center and last: KCVL -[2018-02-13T08:34:15.071] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:34:15.136] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dashes.js and last: Typhoon Yancy (Gading) -[2018-02-13T08:34:15.164] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:34:15.200] [INFO] cheese - inserting 1000 documents. first: Honored Artist and last: John Bollard (politician) -[2018-02-13T08:34:15.213] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:15.275] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:34:15.421] [INFO] cheese - inserting 1000 documents. first: File:Active voltage-to-current 1000.jpg and last: Category:Unknown-importance Israel-related articles -[2018-02-13T08:34:15.445] [INFO] cheese - inserting 1000 documents. first: German submarine U-1104 and last: Wikipedia:Miscellany for deletion/Draft:Collage -[2018-02-13T08:34:15.521] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:34:15.576] [INFO] cheese - inserting 1000 documents. first: Category:Tropidomarga and last: MV Stena Shipper -[2018-02-13T08:34:15.605] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:34:15.629] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:34:15.839] [INFO] cheese - inserting 1000 documents. first: Differential dynamic programming and last: Lysichiton camtschatcensis -[2018-02-13T08:34:15.847] [INFO] cheese - inserting 1000 documents. first: File:Les Bijoux v1.jpg and last: AbcFamily -[2018-02-13T08:34:15.976] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:15.977] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:16.043] [INFO] cheese - inserting 1000 documents. first: Kemijärvi and last: Arcadia (disambiguation) -[2018-02-13T08:34:16.192] [INFO] cheese - inserting 1000 documents. first: Sportcity Metrolink station and last: File:NBprovincialElectoralDistricts.PNG -[2018-02-13T08:34:16.294] [INFO] cheese - inserting 1000 documents. first: Aquaspirillum fasciculus and last: Category:Roman Catholic churches completed in 1711 -[2018-02-13T08:34:16.312] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:34:16.375] [INFO] cheese - inserting 1000 documents. first: Cardenolides and last: Wikipedia:Articles for deletion/Pawel Plaszczak -[2018-02-13T08:34:16.377] [INFO] cheese - batch complete in: 1.574 secs -[2018-02-13T08:34:16.568] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:34:16.485] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:34:16.662] [INFO] cheese - inserting 1000 documents. first: Democratic Socialist Coalition and last: Wikipedia:WikiProject Spam/LinkReports/chosimsodep.com -[2018-02-13T08:34:16.695] [INFO] cheese - inserting 1000 documents. first: Sprawl position and last: National Register of Historic Places listings in Vermont -[2018-02-13T08:34:16.764] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:34:16.826] [INFO] cheese - batch complete in: 1.755 secs -[2018-02-13T08:34:16.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nomad-mytravel.blogspot.com and last: Celeste West -[2018-02-13T08:34:16.930] [INFO] cheese - inserting 1000 documents. first: Measurement of a Circle and last: Chalin, Kuyavian-Pomeranian Voivodeship -[2018-02-13T08:34:16.959] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:34:17.007] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:34:17.086] [INFO] cheese - inserting 1000 documents. first: Category:Vietnamese officials and last: Category:Rolando -[2018-02-13T08:34:17.119] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marcin Chumiecki and last: Peter Nedved -[2018-02-13T08:34:17.132] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:34:17.166] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches completed in 1710 and last: Wikipedia:Articles for deletion/Fingon -[2018-02-13T08:34:17.177] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:34:17.236] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:34:17.263] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 1960 Winter Olympics – Men's giant slalom and last: Red Pencil protest -[2018-02-13T08:34:17.332] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:34:17.396] [INFO] cheese - inserting 1000 documents. first: Bas-Uele and last: Robert Casey (disambiguation) -[2018-02-13T08:34:17.435] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:34:17.460] [INFO] cheese - inserting 1000 documents. first: Yaroslav III of Kiev and last: Forced-vortex -[2018-02-13T08:34:17.467] [INFO] cheese - inserting 1000 documents. first: Phyllis George and last: Hsü Shih-Ch'ang -[2018-02-13T08:34:17.496] [INFO] cheese - inserting 1000 documents. first: Chalin-Kolonia and last: Ruprecht Gerngroß -[2018-02-13T08:34:17.542] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:34:17.583] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:34:17.613] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:34:17.682] [INFO] cheese - inserting 1000 documents. first: Category:People from Sribne Raion and last: Destiny: World Domination from Stone Age to Space Age -[2018-02-13T08:34:17.766] [INFO] cheese - inserting 1000 documents. first: London Taxi: Rushour and last: Mulbarton, Norfolk -[2018-02-13T08:34:17.794] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:34:17.846] [INFO] cheese - inserting 1000 documents. first: Oberes Wesertal and last: Yokota Shōkai -[2018-02-13T08:34:17.870] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:34:17.927] [INFO] cheese - inserting 1000 documents. first: Paul O'Grady's Animal Orphans and last: House of Mgeladze -[2018-02-13T08:34:17.931] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:34:18.010] [INFO] cheese - inserting 1000 documents. first: Rodriguan (disambiguation) and last: Wikipedia:WikiProject Dispute Resolution/Proposals/Content Committee -[2018-02-13T08:34:18.015] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:34:18.061] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:34:18.180] [INFO] cheese - inserting 1000 documents. first: Ray Brown (offensive lineman) and last: Category:Memphis Tigers football -[2018-02-13T08:34:18.217] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:34:18.221] [INFO] cheese - inserting 1000 documents. first: Aban (urban-type settlement) and last: Category:July 2008 peer reviews -[2018-02-13T08:34:18.273] [INFO] cheese - inserting 1000 documents. first: Moon Studios and last: MUOS-1 -[2018-02-13T08:34:18.328] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:34:18.363] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:34:18.459] [INFO] cheese - inserting 1000 documents. first: Fuchstal and last: 383 in Ireland -[2018-02-13T08:34:18.462] [INFO] cheese - inserting 1000 documents. first: Category:Spanish publishers (people) and last: Chesmenskii Raion -[2018-02-13T08:34:18.535] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:34:18.552] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:34:18.570] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Baldwin County, Alabama and last: Wikipedia:Goings-on/January 5, 2014 -[2018-02-13T08:34:18.644] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:34:18.689] [INFO] cheese - inserting 1000 documents. first: Hsü Shihch'ang and last: Pu Chou Mountain -[2018-02-13T08:34:18.727] [INFO] cheese - inserting 1000 documents. first: Aleksandra Wasowicz and last: Laspeyresia ibeeliana -[2018-02-13T08:34:18.884] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:34:18.921] [INFO] cheese - inserting 1000 documents. first: Piz Tasna and last: Élégie (ballet) -[2018-02-13T08:34:18.934] [INFO] cheese - batch complete in: 1.32 secs -[2018-02-13T08:34:18.983] [INFO] cheese - inserting 1000 documents. first: Category:Churches completed in 1580 and last: Reti Film -[2018-02-13T08:34:18.985] [INFO] cheese - inserting 1000 documents. first: Portal:Law/Picture/Week 19 2006 and last: Hills (store) -[2018-02-13T08:34:19.096] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:34:19.128] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:34:19.146] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:34:19.234] [INFO] cheese - inserting 1000 documents. first: Bassano (photographers) and last: Anonimo veneziano -[2018-02-13T08:34:19.242] [INFO] cheese - inserting 1000 documents. first: Category:Here! original productions and last: Category:A-Class Melanesia articles -[2018-02-13T08:34:19.281] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:34:19.319] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:34:19.369] [INFO] cheese - inserting 1000 documents. first: File:Jewish Bakers Voice cover.jpg and last: Weather Machine (sculpture) -[2018-02-13T08:34:19.459] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:34:19.607] [INFO] cheese - inserting 1000 documents. first: Lopho and last: Tri-Cities Prep Highschool (Pasco, Washington) -[2018-02-13T08:34:19.656] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:34:19.691] [INFO] cheese - inserting 1000 documents. first: Ambovombe and last: Pat Broderick -[2018-02-13T08:34:19.716] [INFO] cheese - inserting 1000 documents. first: Dambyn Tömörtsog and last: Draft:YouTheology -[2018-02-13T08:34:19.780] [INFO] cheese - inserting 1000 documents. first: Party Unity My Ass and last: Wikipedia:WikiProject U.S. Roads/Utah/Mines -[2018-02-13T08:34:19.782] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:34:19.788] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/purplecirclesband.co.uk and last: Valley of Decision (disambiguation) -[2018-02-13T08:34:19.791] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Metros of the former Soviet Union articles and last: Fort Hunt Park -[2018-02-13T08:34:19.792] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:34:19.885] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:34:19.895] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:34:19.903] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:34:19.943] [INFO] cheese - inserting 1000 documents. first: List of geological features on Rhea and last: Telcordia LERG Routing Guide -[2018-02-13T08:34:20.035] [INFO] cheese - inserting 1000 documents. first: Category:Sri Lankan Chetty people by occupation and last: Wikipedia:Articles for deletion/5 Wits -[2018-02-13T08:34:20.183] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:34:20.202] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:34:20.377] [INFO] cheese - inserting 1000 documents. first: Category:Chinese Taipei at the World Aquatics Championships and last: Pierre Affre -[2018-02-13T08:34:20.487] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Debian Free Software Guidelines and last: Large Print Books -[2018-02-13T08:34:20.475] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:20.541] [INFO] cheese - inserting 1000 documents. first: File:In Vanda's Room FilmPoster.jpeg and last: Svetozar Šapurić -[2018-02-13T08:34:20.584] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:34:20.622] [INFO] cheese - inserting 1000 documents. first: Joe Frank (american football) and last: Tafersit -[2018-02-13T08:34:20.629] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:20.702] [INFO] cheese - inserting 1000 documents. first: Corporation of Dun Laoghaire and last: Francois Labbé -[2018-02-13T08:34:20.731] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:34:20.764] [INFO] cheese - inserting 1000 documents. first: Template:User Legitimate Regime in Iran and last: Milla, Burkina Faso -[2018-02-13T08:34:20.831] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:34:20.843] [INFO] cheese - inserting 1000 documents. first: Leslie Cornfeld and last: Category:Former State Roads in Hernando County, Florida -[2018-02-13T08:34:20.871] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:34:20.949] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:34:21.070] [INFO] cheese - inserting 1000 documents. first: Okhla railway station and last: Wikipedia:Articles for deletion/Sex scandals in local schools (Hong Kong) -[2018-02-13T08:34:21.095] [INFO] cheese - inserting 1000 documents. first: Salicylic acid (plant hormone) and last: List of Perth suburbs -[2018-02-13T08:34:21.145] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:34:21.198] [INFO] cheese - inserting 1000 documents. first: 0.999999999999999999999 and last: Jack Russell (character) -[2018-02-13T08:34:21.248] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:34:21.264] [INFO] cheese - inserting 1000 documents. first: Ascenção E Queda de um Paquera and last: Testify, Parts 1 and 2 -[2018-02-13T08:34:21.339] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:34:21.479] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:34:21.538] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Check Wikipedia/Error 019 whitelist and last: Visa policy of the British Overseas Territories -[2018-02-13T08:34:21.634] [INFO] cheese - inserting 1000 documents. first: Hans Androschin and last: Category:Financial services companies of Peru -[2018-02-13T08:34:21.657] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:34:21.667] [INFO] cheese - inserting 1000 documents. first: Andrew jarvis and last: Hou (currency) -[2018-02-13T08:34:21.685] [INFO] cheese - inserting 1000 documents. first: Cyclostyle (copier) and last: Gombak River -[2018-02-13T08:34:21.704] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:34:21.792] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:34:21.879] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:34:22.011] [INFO] cheese - inserting 1000 documents. first: Illinois Central Passenger Depot-Storm Lake and last: Template:Did you know nominations/Something Beautiful (Jordan Smith album) -[2018-02-13T08:34:22.132] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:34:22.203] [INFO] cheese - inserting 1000 documents. first: Idalus simplex and last: Estonia national football team results -[2018-02-13T08:34:22.301] [INFO] cheese - inserting 1000 documents. first: 1079 in art and last: Category:C-Class Tibet articles -[2018-02-13T08:34:22.317] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:34:22.321] [INFO] cheese - inserting 1000 documents. first: Deining and last: Rahovart -[2018-02-13T08:34:22.399] [INFO] cheese - inserting 1000 documents. first: Mobile BayBears and last: GNFS -[2018-02-13T08:34:22.389] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:34:22.458] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:34:22.572] [INFO] cheese - inserting 1000 documents. first: Sweet verbena-tree and last: EC 1.1.1.17 -[2018-02-13T08:34:22.585] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T08:34:22.659] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:34:22.676] [INFO] cheese - inserting 1000 documents. first: Automobilclub von Deutschland and last: Template:US-electronic-band-stub -[2018-02-13T08:34:22.748] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:34:22.779] [INFO] cheese - inserting 1000 documents. first: Little Things (Oak Ridge Boys song) and last: Santa Fina -[2018-02-13T08:34:22.816] [INFO] cheese - inserting 1000 documents. first: Macau Baptist Convention and last: Ödön Tersztyánszky -[2018-02-13T08:34:22.865] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T08:34:22.898] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:34:23.016] [INFO] cheese - inserting 1000 documents. first: Glidecam and last: Mazra'eh-ye Khodabandehlu -[2018-02-13T08:34:23.043] [INFO] cheese - inserting 1000 documents. first: Benedict Nicolson and last: Miller Reese Hutchison -[2018-02-13T08:34:23.061] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:34:23.079] [INFO] cheese - inserting 1000 documents. first: EC 1.3.1.63 and last: Otrokovice railway station -[2018-02-13T08:34:23.134] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:34:23.162] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:34:23.304] [INFO] cheese - inserting 1000 documents. first: Theory of rent and last: OVS language -[2018-02-13T08:34:23.414] [INFO] cheese - batch complete in: 1.934 secs -[2018-02-13T08:34:23.418] [INFO] cheese - inserting 1000 documents. first: Behelit and last: Adelanto, CA -[2018-02-13T08:34:23.531] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:34:23.544] [INFO] cheese - inserting 1000 documents. first: Doo rag and last: 3 count -[2018-02-13T08:34:23.547] [INFO] cheese - inserting 1000 documents. first: Democracy 250 and last: MacAdams -[2018-02-13T08:34:23.577] [INFO] cheese - inserting 1000 documents. first: Holophaea eurytorna and last: Category:River islands of Washington (state) -[2018-02-13T08:34:23.604] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:34:23.657] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:34:23.724] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:34:23.836] [INFO] cheese - inserting 1000 documents. first: Australasian College of Health Informatics and last: Philadelphia Phillie -[2018-02-13T08:34:23.886] [INFO] cheese - inserting 1000 documents. first: Gridapp and last: File:Liberator250.jpg -[2018-02-13T08:34:23.949] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:34:24.022] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:34:24.070] [INFO] cheese - inserting 1000 documents. first: Bibliotheca scriptorium graecorum et romanorum teubneriana and last: Category:2005 establishments in North Dakota -[2018-02-13T08:34:24.108] [INFO] cheese - inserting 1000 documents. first: Weekend Breakfast and last: Friedrich-Märker-Preis -[2018-02-13T08:34:24.150] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:34:24.220] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:34:24.278] [INFO] cheese - inserting 1000 documents. first: Template:Current Senate crossbench and last: Alexander Mackenzie of Kintail -[2018-02-13T08:34:24.378] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:24.520] [INFO] cheese - inserting 1000 documents. first: Emily Pauline Johnson and last: Allensville, KY -[2018-02-13T08:34:24.544] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/fcmb.com and last: Yanıkhan -[2018-02-13T08:34:24.627] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:34:24.662] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:34:24.707] [INFO] cheese - inserting 1000 documents. first: Phalaena astrea and last: Mechanics Hall, Worcester -[2018-02-13T08:34:24.714] [INFO] cheese - inserting 1000 documents. first: Tarascosaurus and last: IHCOYC XPICTOC -[2018-02-13T08:34:24.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mister Iraq and last: File:SIGIR logo.jpg -[2018-02-13T08:34:24.785] [INFO] cheese - inserting 1000 documents. first: Category:User yue-hk-3 and last: Category:Abbots of Czerwińsk -[2018-02-13T08:34:24.794] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:34:24.857] [INFO] cheese - inserting 1000 documents. first: File:Maavichiguru.jpg and last: Eastern correa -[2018-02-13T08:34:24.861] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:34:24.873] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:34:24.919] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:34:24.968] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:34:25.164] [INFO] cheese - inserting 1000 documents. first: List of Fossil Parks and last: ÖT -[2018-02-13T08:34:25.224] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:34:25.277] [INFO] cheese - inserting 1000 documents. first: Lena Smedsaas and last: Sophia Batchelor -[2018-02-13T08:34:25.351] [INFO] cheese - inserting 1000 documents. first: Skybuilt Power and last: U.S. Route 641 in Tennessee -[2018-02-13T08:34:25.368] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:34:25.404] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:34:25.426] [INFO] cheese - inserting 1000 documents. first: Allenton, MI and last: Damgalnunna -[2018-02-13T08:34:25.504] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:34:25.584] [INFO] cheese - inserting 1000 documents. first: Harold Cox and last: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality log -[2018-02-13T08:34:25.608] [INFO] cheese - inserting 1000 documents. first: Roundleaf correa and last: List of Braniff International Airways destinations -[2018-02-13T08:34:25.681] [INFO] cheese - inserting 1000 documents. first: File:Alderbrook Winery.jpg and last: List of Churchill Brothers S.C. managers -[2018-02-13T08:34:25.739] [INFO] cheese - inserting 1000 documents. first: Palm Atlantis and last: Myint Swe (general) -[2018-02-13T08:34:25.747] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:34:25.755] [INFO] cheese - inserting 1000 documents. first: 1965–66 NBA season and last: Cabot Tower -[2018-02-13T08:34:25.763] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:34:25.801] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:34:25.883] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:34:25.882] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:34:26.150] [INFO] cheese - inserting 1000 documents. first: Lo Nuestro Award for Salsa Artist of the Year and last: File:Sungai Ara FC.png -[2018-02-13T08:34:26.161] [INFO] cheese - inserting 1000 documents. first: Mayonaisse and last: Xiāoshān Qū -[2018-02-13T08:34:26.198] [INFO] cheese - inserting 1000 documents. first: List of Brit Air destinations and last: Carlsson, Daniel -[2018-02-13T08:34:26.207] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:34:26.261] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:34:26.304] [INFO] cheese - inserting 1000 documents. first: Evelyn nesbit thaw and last: Makrihorion, Greece -[2018-02-13T08:34:26.328] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:34:26.394] [INFO] cheese - inserting 1000 documents. first: Episodes of the big bang theory and last: List of FIS Nordic World Ski Championships medalists in nordic combined -[2018-02-13T08:34:26.434] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:34:26.458] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:34:26.539] [INFO] cheese - inserting 1000 documents. first: Unplugged (Alice in Chains album) and last: List of academic statistical associations -[2018-02-13T08:34:26.619] [INFO] cheese - inserting 1000 documents. first: Eugene-Springfield and last: Familialism -[2018-02-13T08:34:26.657] [INFO] cheese - inserting 1000 documents. first: Westinghouse Electric Corporation of 1886 and last: Maria Jelinek -[2018-02-13T08:34:26.693] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:34:26.733] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:34:26.767] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:34:26.866] [INFO] cheese - inserting 1000 documents. first: Tutti i colori del silenzio and last: File:Back soon on NT.jpg -[2018-02-13T08:34:26.894] [INFO] cheese - inserting 1000 documents. first: Carlsson, Johan and last: Ruth Margery Addoms -[2018-02-13T08:34:26.957] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:34:26.994] [INFO] cheese - inserting 1000 documents. first: Duncan Potts and last: File:Assyriska goteborg.svg -[2018-02-13T08:34:27.000] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:34:27.051] [INFO] cheese - inserting 1000 documents. first: Makrihorio, Greece and last: Category:Members of the École de Nancy -[2018-02-13T08:34:27.062] [INFO] cheese - inserting 1000 documents. first: Category:Dakota and last: Kunwarjibhai Bavaliya -[2018-02-13T08:34:27.097] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:34:27.225] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:34:27.233] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:34:27.484] [INFO] cheese - inserting 1000 documents. first: Category:RNK Split players and last: Category:Lists of universities and colleges in Africa -[2018-02-13T08:34:27.503] [INFO] cheese - inserting 1000 documents. first: FK Senta and last: R.A.Chandrasena -[2018-02-13T08:34:27.526] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:34:27.579] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:34:27.605] [INFO] cheese - inserting 1000 documents. first: JHQ Rheindahlen bombing 1987 and last: File:Goodwins logo.jpg -[2018-02-13T08:34:27.605] [INFO] cheese - inserting 1000 documents. first: Tanzania at the 2000 Summer Olympics and last: Joachim van den Hove -[2018-02-13T08:34:27.611] [INFO] cheese - inserting 1000 documents. first: Nerea Pérez Machado and last: Island Verditer-flycatcher -[2018-02-13T08:34:27.651] [INFO] cheese - inserting 1000 documents. first: Dinosaur mummy and last: Wikipedia:Version 1.0 Editorial Team/Kurdistan articles by quality -[2018-02-13T08:34:27.663] [INFO] cheese - inserting 1000 documents. first: Florida State Road 270 (pre-1945) and last: Christopher Cumingham -[2018-02-13T08:34:27.671] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:34:27.675] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:34:27.709] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:34:27.734] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:34:27.775] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:34:27.848] [INFO] cheese - inserting 1000 documents. first: Maeterlinck and last: Langnau -[2018-02-13T08:34:27.950] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T08:34:28.098] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Australia and last: Tsuchitaru Station -[2018-02-13T08:34:28.143] [INFO] cheese - inserting 1000 documents. first: Category:People from Selkirk, Scottish Borders and last: Suzugamine Women's College -[2018-02-13T08:34:28.144] [INFO] cheese - inserting 1000 documents. first: Dull Verditer-flycatcher and last: Category:Bora–Witoto languages -[2018-02-13T08:34:28.164] [INFO] cheese - inserting 1000 documents. first: File:Rydale Clothing Logo.jpeg and last: Category:San Pablo Bay -[2018-02-13T08:34:28.164] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:34:28.208] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:34:28.350] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:34:28.440] [INFO] cheese - inserting 1000 documents. first: Finger stool and last: Ludwig von Siegen -[2018-02-13T08:34:28.458] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:34:28.496] [INFO] cheese - inserting 1000 documents. first: Category:People from Venlo and last: Macular pucker -[2018-02-13T08:34:28.501] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Catholic cathedrals in the United States and last: SnowyHydro SouthCare -[2018-02-13T08:34:28.582] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:34:28.604] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:34:28.614] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:34:28.909] [INFO] cheese - inserting 1000 documents. first: List of number-one rhythm and blues hits (UK) and last: Ahmed and Salim -[2018-02-13T08:34:28.964] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:34:29.020] [INFO] cheese - inserting 1000 documents. first: Boltus and last: Holy Cross Abbey, Thurles -[2018-02-13T08:34:29.064] [INFO] cheese - inserting 1000 documents. first: Category:Ghana–Togo Mountain languages and last: Prince of Wales International Centre for Research into Schizophrenia and Depression -[2018-02-13T08:34:29.081] [INFO] cheese - inserting 1000 documents. first: Victor Keyru and last: Nereus (nuclear reactor) -[2018-02-13T08:34:29.115] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:34:29.145] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:34:29.215] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:34:29.237] [INFO] cheese - inserting 1000 documents. first: Southampton brass band and last: CONMEBOL Jubilee Awards -[2018-02-13T08:34:29.268] [INFO] cheese - inserting 1000 documents. first: East Fairfield and last: William Ormand Mitchell -[2018-02-13T08:34:29.288] [INFO] cheese - inserting 1000 documents. first: Sun Certified Business Component Developer and last: Template:Trinidad and Tobago legislative election, 2007 -[2018-02-13T08:34:29.322] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:34:29.377] [INFO] cheese - batch complete in: 1.426 secs -[2018-02-13T08:34:29.386] [INFO] cheese - inserting 1000 documents. first: Lake June in Winter and last: Widnes War Memorial -[2018-02-13T08:34:29.395] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:29.533] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:34:29.683] [INFO] cheese - inserting 1000 documents. first: Adaži and last: Michael Buckley (professor) -[2018-02-13T08:34:29.747] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:34:29.902] [INFO] cheese - inserting 1000 documents. first: Sqeezer and last: File:DaddyDearest2016TVB.jpg -[2018-02-13T08:34:29.918] [INFO] cheese - inserting 1000 documents. first: Isøyane Bird Sanctuary and last: Category:Girls Next Door songs -[2018-02-13T08:34:29.976] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:34:29.985] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:34:30.151] [INFO] cheese - inserting 1000 documents. first: Don´t repeat yourself and last: Plast -[2018-02-13T08:34:30.164] [INFO] cheese - inserting 1000 documents. first: The People's Quiz and last: Superbowl I -[2018-02-13T08:34:30.180] [INFO] cheese - inserting 1000 documents. first: Mountains (EP) and last: Nagasako Takashi -[2018-02-13T08:34:30.197] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:34:30.261] [INFO] cheese - inserting 1000 documents. first: Gravity feed and last: Everything Will Be Fine -[2018-02-13T08:34:30.260] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:34:30.273] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:34:30.330] [INFO] cheese - inserting 1000 documents. first: The Talking Machine News and last: Maria Falcione -[2018-02-13T08:34:30.363] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:34:30.435] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:34:30.477] [INFO] cheese - inserting 1000 documents. first: William Ormond Mitchell and last: Fender Musical Instruments Corporation -[2018-02-13T08:34:30.589] [INFO] cheese - inserting 1000 documents. first: Özge Özel and last: Alan Bourne -[2018-02-13T08:34:30.602] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:34:30.620] [INFO] cheese - inserting 1000 documents. first: William O'Byrne and last: United Nations Security Council Resolution 1806 -[2018-02-13T08:34:30.640] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:34:30.712] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:34:30.851] [INFO] cheese - inserting 1000 documents. first: 46th parallel south and last: Penn Station (Baltimore Light Rail station) -[2018-02-13T08:34:30.947] [INFO] cheese - inserting 1000 documents. first: Category:Bosniaks of Serbia and last: File:RobinDVD.png -[2018-02-13T08:34:30.967] [INFO] cheese - inserting 1000 documents. first: Jullunder and last: Tapanui Branch -[2018-02-13T08:34:30.967] [INFO] cheese - inserting 1000 documents. first: Order of Battle of the Battle of Lanfeng and last: Gudbrandur Torlaksson -[2018-02-13T08:34:30.992] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:34:31.029] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:34:31.030] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:34:31.095] [INFO] cheese - inserting 1000 documents. first: Kobus Vandenberg and last: Harold Y. McSween -[2018-02-13T08:34:31.126] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:31.170] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:31.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Black Lunch Table/April 2016 New Orleans and last: Category:Footballers from Baden-Württemberg -[2018-02-13T08:34:31.363] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:34:31.403] [INFO] cheese - inserting 1000 documents. first: Template:Ben Aaronovitch and last: Cozumel Island raccoon -[2018-02-13T08:34:31.516] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:34:31.636] [INFO] cheese - inserting 1000 documents. first: M'um and last: Wikipedia:Articles for deletion/Undercut Productions -[2018-02-13T08:34:31.652] [INFO] cheese - inserting 1000 documents. first: Gyula Valyi and last: The Biggest Loser Australia 2006 -[2018-02-13T08:34:31.720] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:34:31.813] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:34:31.821] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class filmmaking articles and last: C 52 -[2018-02-13T08:34:31.900] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2014 January 11 and last: Template:2004DutchOlympicSailingTeam -[2018-02-13T08:34:31.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Groundswell (book) and last: Medija Thermal Spa -[2018-02-13T08:34:31.954] [INFO] cheese - inserting 1000 documents. first: Chambered nautilus and last: Tillamook Cheese Factory -[2018-02-13T08:34:31.985] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:34:32.028] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:34:32.058] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:34:32.141] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Greene County, Indiana and last: Smilus -[2018-02-13T08:34:32.154] [INFO] cheese - batch complete in: 1.552 secs -[2018-02-13T08:34:32.251] [INFO] cheese - inserting 1000 documents. first: Test of Written English and last: Galehband -[2018-02-13T08:34:32.250] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:34:32.359] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:34:32.517] [INFO] cheese - inserting 1000 documents. first: Template:Age in months/doc and last: MBRL -[2018-02-13T08:34:32.614] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:34:32.674] [INFO] cheese - inserting 1000 documents. first: File:Hotel-school-in-switzerland.jpg and last: Ivan Farmakovsky -[2018-02-13T08:34:32.694] [INFO] cheese - inserting 1000 documents. first: Norman Taber and last: Wikipedia:Articles for deletion/DiggFans -[2018-02-13T08:34:32.762] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:34:32.810] [INFO] cheese - inserting 1000 documents. first: Talmei Yaffe and last: Yuca fries -[2018-02-13T08:34:32.814] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:34:32.908] [INFO] cheese - inserting 1000 documents. first: Galleh Band and last: File:Huabiao Award.gif -[2018-02-13T08:34:32.911] [INFO] cheese - inserting 1000 documents. first: Category:2014 Pacific typhoon season and last: Sack of Salona -[2018-02-13T08:34:32.918] [INFO] cheese - inserting 1000 documents. first: Category:Electoral reform in Wales and last: Jeekel -[2018-02-13T08:34:32.919] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:34:32.991] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:34:33.018] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:34:33.025] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:33.156] [INFO] cheese - inserting 1000 documents. first: Dolby Digital EX and last: Category:Chubu region -[2018-02-13T08:34:33.260] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:34:33.309] [INFO] cheese - inserting 1000 documents. first: Burton Drayer and last: History of Sullivan County, New York -[2018-02-13T08:34:33.364] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:34:33.490] [INFO] cheese - inserting 1000 documents. first: Bookmark image and last: List of Bartimaeus characters -[2018-02-13T08:34:33.525] [INFO] cheese - inserting 1000 documents. first: First Baptist Church of Tarrytown (Tarrytown, New York) and last: Category:Tourist attractions in Franklin County, Kentucky -[2018-02-13T08:34:33.530] [INFO] cheese - inserting 1000 documents. first: History of Vietnamese Americans in Boston and last: File:Encore 1996.jpg -[2018-02-13T08:34:33.535] [INFO] cheese - inserting 1000 documents. first: Places named for Pope John Paul II and last: GTYJ -[2018-02-13T08:34:33.575] [INFO] cheese - inserting 1000 documents. first: Love Me No More (film) and last: Wikipedia:WikiProject Academic Journals/Journals cited by Wikipedia/P38 -[2018-02-13T08:34:33.588] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:33.631] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:34:33.646] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:34:33.650] [INFO] cheese - inserting 1000 documents. first: Slip-stick phenomenon and last: Template:Kings Of The Lombards -[2018-02-13T08:34:33.660] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:34:33.726] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:34:33.739] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:34:33.958] [INFO] cheese - inserting 1000 documents. first: History of Tompkins County, New York and last: This DJ -[2018-02-13T08:34:34.032] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:34:34.075] [INFO] cheese - inserting 1000 documents. first: Category:Kanto region and last: Paul Dodge -[2018-02-13T08:34:34.149] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Kenton County, Kentucky and last: File:JikkyouPowerProWrestling96MaxVoltageScreenshotSNES.png -[2018-02-13T08:34:34.179] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:34:34.244] [INFO] cheese - inserting 1000 documents. first: Gospel Oak (ward) and last: 1981 Heineken Open – Singles -[2018-02-13T08:34:34.281] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:34:34.333] [INFO] cheese - inserting 1000 documents. first: File:Gennady Komnatov.jpg and last: Category:Basketball players from Kerala -[2018-02-13T08:34:34.358] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:34:34.375] [INFO] cheese - inserting 1000 documents. first: Gregory Camp and last: Charles Frederick Ferguson -[2018-02-13T08:34:34.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2006-01-01 source inclusion in Jayendra Saraswathi and last: Kathleen P. King -[2018-02-13T08:34:34.432] [INFO] cheese - inserting 1000 documents. first: Andre Ngongang Ouandji and last: Keith L. Brown -[2018-02-13T08:34:34.471] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:34:34.525] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:34:34.656] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Madagascar and last: The royal college curepipe -[2018-02-13T08:34:34.736] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:34:34.760] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:34:34.897] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:34:35.067] [INFO] cheese - inserting 1000 documents. first: Paper Wrapped Cake and last: Template:Vermont Catamounts men's basketball coach navbox -[2018-02-13T08:34:35.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/wizardradio.co.uk and last: Forum baths -[2018-02-13T08:34:35.192] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:34:35.305] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:34:35.393] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Ontonagon County, Michigan and last: File:GregoryGerrer.jpg -[2018-02-13T08:34:35.404] [INFO] cheese - inserting 1000 documents. first: File:David Jenkins Welsh composer.jpg and last: Category:Wikipedia sockpuppets of Rinku125 -[2018-02-13T08:34:35.547] [INFO] cheese - inserting 1000 documents. first: Goodrich, Herfordshire and last: Joshua Jebb -[2018-02-13T08:34:35.549] [INFO] cheese - batch complete in: 1.268 secs -[2018-02-13T08:34:35.560] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:34:35.650] [INFO] cheese - inserting 1000 documents. first: Succinctly representable game and last: Active directory objects -[2018-02-13T08:34:35.692] [INFO] cheese - batch complete in: 1.513 secs -[2018-02-13T08:34:35.710] [INFO] cheese - inserting 1000 documents. first: Sheffield & Hallamshire Football Association and last: Cyclodextrine -[2018-02-13T08:34:35.750] [INFO] cheese - inserting 1000 documents. first: Mihai Bravu, Giurgiu and last: List of call centre companies -[2018-02-13T08:34:35.758] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:34:35.902] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:34:35.902] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:34:36.000] [INFO] cheese - inserting 1000 documents. first: Manhattan Parade and last: R & W Hawthorn -[2018-02-13T08:34:36.093] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:34:36.142] [INFO] cheese - inserting 1000 documents. first: Category:1911 in Washington, D.C. and last: Seal of Karnataka -[2018-02-13T08:34:36.250] [INFO] cheese - inserting 1000 documents. first: File:Notable Welshmen 1700 1900.pdf and last: Wikipedia:Articles for deletion/Christian Dvorak -[2018-02-13T08:34:36.257] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:34:36.287] [INFO] cheese - inserting 1000 documents. first: Trisikad and last: Che Det -[2018-02-13T08:34:36.362] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:36.379] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:36.492] [INFO] cheese - inserting 1000 documents. first: European Commissioner for Institutional Relations and Communication Strategy and last: Instituto Nacional de Sismología, Vulcanología, Metereología e Hidrología -[2018-02-13T08:34:36.585] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:34:36.699] [INFO] cheese - inserting 1000 documents. first: Gulbenkian Professor of Armenian and last: Ususau, Arad -[2018-02-13T08:34:36.736] [INFO] cheese - inserting 1000 documents. first: Universal (Orlando) and last: Missouri Route 23 (decommissioned) -[2018-02-13T08:34:36.815] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:34:36.916] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject University of North Texas/Article alerts/Archive and last: Category:Former Liberty Media subsidiaries -[2018-02-13T08:34:36.940] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:34:37.061] [INFO] cheese - inserting 1000 documents. first: Kenneth Brown (author) and last: Quentin Bryce -[2018-02-13T08:34:37.055] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:34:37.147] [INFO] cheese - inserting 1000 documents. first: Balkan Black Box and last: WILD LAW -[2018-02-13T08:34:37.246] [INFO] cheese - inserting 1000 documents. first: Paul Haywood and last: Jef Chandler -[2018-02-13T08:34:37.250] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:34:37.254] [INFO] cheese - inserting 1000 documents. first: Guns and Roses (disambiguation) and last: Clemens-Brentano-Preis -[2018-02-13T08:34:37.314] [INFO] cheese - batch complete in: 1.622 secs -[2018-02-13T08:34:37.467] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:34:37.480] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:34:37.483] [INFO] cheese - inserting 1000 documents. first: Nivaria and last: Roots (Everly Brothers album) -[2018-02-13T08:34:37.698] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:34:37.842] [INFO] cheese - inserting 1000 documents. first: Tarnova, Arad and last: James Murray (hurler) -[2018-02-13T08:34:37.930] [INFO] cheese - inserting 1000 documents. first: Chechen Island and last: 18th Street (Philadelphia) -[2018-02-13T08:34:37.933] [INFO] cheese - inserting 1000 documents. first: Cross harp and last: Stone and Sun -[2018-02-13T08:34:37.992] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T08:34:38.183] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:34:38.210] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:34:38.310] [INFO] cheese - inserting 1000 documents. first: Windymen and last: Jennifer Convertibles -[2018-02-13T08:34:38.390] [INFO] cheese - inserting 1000 documents. first: East Foxley and last: File:In Angel City.jpg -[2018-02-13T08:34:38.481] [INFO] cheese - inserting 1000 documents. first: Simplex (French automobile manufacturer) and last: Box (Mill Lane) Halt railway station -[2018-02-13T08:34:38.497] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:34:38.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/HMS Lion (1910)/archive1 and last: Chris Talbot -[2018-02-13T08:34:38.647] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T08:34:38.652] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:34:38.780] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:34:38.972] [INFO] cheese - inserting 1000 documents. first: Category:ISSF shooting events and last: Category:Atlanta Thrashers players -[2018-02-13T08:34:39.080] [INFO] cheese - inserting 1000 documents. first: Home Alone 5: The Holiday Heist and last: US Senate members -[2018-02-13T08:34:39.102] [INFO] cheese - inserting 1000 documents. first: Portuguese America and last: Austin canons -[2018-02-13T08:34:39.209] [INFO] cheese - inserting 1000 documents. first: File:Mnquma CoA.png and last: Alan Woods (public servant) -[2018-02-13T08:34:39.122] [INFO] cheese - batch complete in: 1.808 secs -[2018-02-13T08:34:39.216] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:34:39.255] [INFO] cheese - inserting 1000 documents. first: Narendra Nayak and last: File:Herfølge BK.png -[2018-02-13T08:34:39.279] [INFO] cheese - inserting 1000 documents. first: Mt Misery and last: Wikipedia:Articles for deletion/George Cavanaugh -[2018-02-13T08:34:39.303] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T08:34:39.333] [INFO] cheese - inserting 1000 documents. first: Barras (people) and last: Bay View High School -[2018-02-13T08:34:39.408] [INFO] cheese - inserting 1000 documents. first: Cliffs of Dover (song) and last: Museum of National Resistance -[2018-02-13T08:34:39.427] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:34:39.456] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:34:39.464] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:34:39.514] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:34:39.586] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:34:39.770] [INFO] cheese - inserting 1000 documents. first: Miho Takenaka and last: Hypericum bupleuroides -[2018-02-13T08:34:39.827] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:34:39.856] [INFO] cheese - inserting 1000 documents. first: Wind powered generator and last: File:Thebestsofar.jpg -[2018-02-13T08:34:39.914] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:34:40.024] [INFO] cheese - inserting 1000 documents. first: Category:10th-century Danish people and last: Coat of arms of Kent -[2018-02-13T08:34:40.069] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:34:40.080] [INFO] cheese - inserting 1000 documents. first: Van Benschoten House and Guest House and last: Tae Hyeon-sil -[2018-02-13T08:34:40.084] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Dundswk/Archive and last: Carlisle City Council election, 2007 -[2018-02-13T08:34:40.114] [INFO] cheese - inserting 1000 documents. first: Tom Keating (American Football) and last: Cote Chalonnaise -[2018-02-13T08:34:40.165] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:34:40.159] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:34:40.220] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Blackhawks players and last: Kalapana (band) -[2018-02-13T08:34:40.267] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:34:40.199] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/If I Had Changed My Mind and last: SFGate.com -[2018-02-13T08:34:40.512] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:34:40.523] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:34:40.695] [INFO] cheese - inserting 1000 documents. first: Actual/365 and last: List of people from Caracas -[2018-02-13T08:34:40.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:2008 main page redesign proposal/Nat/Beta and last: East State Street -[2018-02-13T08:34:40.853] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:34:40.911] [INFO] cheese - inserting 1000 documents. first: Template:First and Second Cabinets of Louis Napoleon and last: Wikipedia:WikiProject Spam/Local/publications.maxwellinstitute.byu.edu -[2018-02-13T08:34:40.910] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:34:40.966] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:34:41.054] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Billie (1964) and last: Television 4 -[2018-02-13T08:34:41.082] [INFO] cheese - inserting 1000 documents. first: Hyun-shil Tae and last: Template:Somerset CCC -[2018-02-13T08:34:41.083] [INFO] cheese - inserting 1000 documents. first: Holtsås and last: Pattress box -[2018-02-13T08:34:41.137] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:34:41.151] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:34:41.256] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:34:41.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/St. Catharines Wine Tasting of 2005 and last: Fungivore -[2018-02-13T08:34:41.465] [INFO] cheese - inserting 1000 documents. first: Ocean Beach Railway and last: Vice presidents of Taiwan -[2018-02-13T08:34:41.526] [INFO] cheese - inserting 1000 documents. first: Vuelta a Argentina and last: 2016 FINA Diving World Cup - Men's 10 metre platform -[2018-02-13T08:34:41.527] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:34:41.541] [INFO] cheese - inserting 1000 documents. first: Noël Lefebvre-Duruflé and last: File:Nongoma CoA.png -[2018-02-13T08:34:41.580] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:34:41.653] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:34:41.656] [INFO] cheese - inserting 1000 documents. first: Kaimu and last: Macho Man -[2018-02-13T08:34:41.658] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:34:41.774] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:34:41.798] [INFO] cheese - inserting 1000 documents. first: Nao Kodaira and last: Bugul'minskii Raion -[2018-02-13T08:34:41.839] [INFO] cheese - inserting 1000 documents. first: Internal economies of scale and last: Carlito Cool -[2018-02-13T08:34:41.847] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:34:41.936] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:34:42.054] [INFO] cheese - inserting 1000 documents. first: Category:2018 in West Indian cricket and last: 20 SOS -[2018-02-13T08:34:42.062] [INFO] cheese - inserting 1000 documents. first: File:GW summer2.jpg and last: Trim Road (Ottawa) -[2018-02-13T08:34:42.374] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:34:42.458] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:34:42.576] [INFO] cheese - inserting 1000 documents. first: File:2011 ISAF Sailing World Championships logo.jpg and last: Category:La Massana -[2018-02-13T08:34:43.054] [INFO] cheese - inserting 1000 documents. first: Taiwanese vice presidents and last: Rob McVicar -[2018-02-13T08:34:43.185] [INFO] cheese - inserting 1000 documents. first: Herochroma baibarana and last: Defines -[2018-02-13T08:34:43.282] [INFO] cheese - batch complete in: 2.145 secs -[2018-02-13T08:34:43.392] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Glasscock County, Texas and last: Ají panca -[2018-02-13T08:34:43.323] [INFO] cheese - batch complete in: 1.743 secs -[2018-02-13T08:34:43.439] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T08:34:43.434] [INFO] cheese - inserting 1000 documents. first: Council High School (Virginia) and last: The Human Giant -[2018-02-13T08:34:43.876] [INFO] cheese - batch complete in: 2.218 secs -[2018-02-13T08:34:44.071] [INFO] cheese - batch complete in: 2.135 secs -[2018-02-13T08:34:44.230] [INFO] cheese - inserting 1000 documents. first: Large ant-blue and last: Guardian Media Ltd. -[2018-02-13T08:34:44.322] [INFO] cheese - batch complete in: 1.839 secs -[2018-02-13T08:34:44.387] [INFO] cheese - inserting 1000 documents. first: Franklin Strait and last: Górna Grupa -[2018-02-13T08:34:44.387] [INFO] cheese - inserting 1000 documents. first: Category:Titans and last: Ethnism -[2018-02-13T08:34:44.606] [INFO] cheese - batch complete in: 2.21 secs -[2018-02-13T08:34:44.656] [INFO] cheese - batch complete in: 2.881 secs -[2018-02-13T08:34:44.811] [INFO] cheese - inserting 1000 documents. first: Azhikkal and last: Tschadsa -[2018-02-13T08:34:44.853] [INFO] cheese - inserting 1000 documents. first: Category:Ordino and last: Tropical Storm Astride -[2018-02-13T08:34:44.922] [INFO] cheese - inserting 1000 documents. first: Trent Dabbs and last: Kenseth -[2018-02-13T08:34:44.951] [INFO] cheese - batch complete in: 1.663 secs -[2018-02-13T08:34:44.995] [INFO] cheese - batch complete in: 1.664 secs -[2018-02-13T08:34:45.043] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:34:45.204] [INFO] cheese - inserting 1000 documents. first: Daydream (1981 film) and last: Thomas Stephens (Jesuit) -[2018-02-13T08:34:45.208] [INFO] cheese - inserting 1000 documents. first: Student debt in the United States and last: Template:Taxonomy/Hesperapis -[2018-02-13T08:34:45.259] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:34:45.271] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:34:45.276] [INFO] cheese - inserting 1000 documents. first: Transalpine Redemptorist and last: Société Wallonne de Financement et de Garantie des Petites et Moyennes Entreprises -[2018-02-13T08:34:45.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Surveillance awareness day and last: Book:Leonardo DiCaprio -[2018-02-13T08:34:45.447] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:34:45.490] [INFO] cheese - batch complete in: 1.605 secs -[2018-02-13T08:34:45.606] [INFO] cheese - inserting 1000 documents. first: Barmedghe and last: File:A Time for Us (album).jpeg -[2018-02-13T08:34:45.723] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:34:45.737] [INFO] cheese - inserting 1000 documents. first: Kali Bannerjee and last: 2010 Regions Morgan Keegan Championships -[2018-02-13T08:34:45.793] [INFO] cheese - inserting 1000 documents. first: Broom-Hilda and last: Cayuni River -[2018-02-13T08:34:45.850] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:34:45.874] [INFO] cheese - inserting 1000 documents. first: Nguyễn Văn Toàn (disambiguation) and last: South Negros BioPower -[2018-02-13T08:34:45.878] [INFO] cheese - inserting 1000 documents. first: Sample (music) and last: Category:Madison County, Ohio -[2018-02-13T08:34:45.887] [INFO] cheese - inserting 1000 documents. first: David Gerstein and last: Amber Asylum -[2018-02-13T08:34:45.924] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:34:45.973] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:34:45.988] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:34:46.023] [INFO] cheese - inserting 1000 documents. first: Template:1916–17 Western Conference men's basketball standings and last: El secretario -[2018-02-13T08:34:46.008] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:34:46.092] [INFO] cheese - inserting 1000 documents. first: Digital Life (magazine) and last: 1st Battalion, 6th Marine Regiment -[2018-02-13T08:34:46.147] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:34:46.227] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:34:46.422] [INFO] cheese - inserting 1000 documents. first: Template:Metropolitan municipalities in Turkey and last: File:Tiptree United FC logo.png -[2018-02-13T08:34:46.485] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:34:46.551] [INFO] cheese - inserting 1000 documents. first: Silver Fame and last: Category:2018 in winter sports -[2018-02-13T08:34:46.604] [INFO] cheese - inserting 1000 documents. first: Love Bite and last: 2010 Nelonen – Finnish League Division 4 -[2018-02-13T08:34:46.713] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:34:46.725] [INFO] cheese - inserting 1000 documents. first: Gertrude of Hohenberg and last: Are You Listening? (Dolores O'Riordan album) -[2018-02-13T08:34:46.764] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:34:46.783] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/The Day We Fight Back and last: Setoclavine -[2018-02-13T08:34:46.795] [INFO] cheese - inserting 1000 documents. first: Maurice Twomey and last: File:Seeing Double + Don't Stop Movin' album cover.jpg -[2018-02-13T08:34:46.858] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:34:46.969] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ranch Road 1 and last: Shitlington Crag -[2018-02-13T08:34:46.989] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:34:47.023] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:34:47.152] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:34:47.229] [INFO] cheese - inserting 1000 documents. first: File:Centralwashington.PNG and last: Linear temporal logic -[2018-02-13T08:34:47.304] [INFO] cheese - inserting 1000 documents. first: List of country names in various languages (A-C) and last: Ute Indians -[2018-02-13T08:34:47.311] [INFO] cheese - inserting 1000 documents. first: Category:2002 in winter sports and last: Alykel (airport) -[2018-02-13T08:34:47.373] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:34:47.389] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:34:47.424] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:34:47.488] [INFO] cheese - inserting 1000 documents. first: Potosa and last: Saint Gothian Sands Local Nature Reserve -[2018-02-13T08:34:47.509] [INFO] cheese - inserting 1000 documents. first: Instrumentenkunde and last: Khafar -[2018-02-13T08:34:47.595] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:34:47.616] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:34:47.669] [INFO] cheese - inserting 1000 documents. first: Am Timan (airport) and last: Moralny codex -[2018-02-13T08:34:47.689] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T08:34:47.807] [INFO] cheese - inserting 1000 documents. first: Electoral district of Ashfield-Croydon and last: 2-Bromo-4,5-methylenedioxyamphetamine -[2018-02-13T08:34:47.808] [INFO] cheese - inserting 1000 documents. first: Vetyver and last: Template:PBB/2623 -[2018-02-13T08:34:47.839] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Digison and last: Prince-primate -[2018-02-13T08:34:47.885] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:34:47.913] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:34:47.947] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:34:48.090] [INFO] cheese - inserting 1000 documents. first: Hillcrest Country Club (disambiguation) and last: Heino Hansen -[2018-02-13T08:34:48.096] [INFO] cheese - inserting 1000 documents. first: Kifteh Giv Sin and last: Neo orthodoxy -[2018-02-13T08:34:48.162] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:34:48.187] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:48.190] [INFO] cheese - inserting 1000 documents. first: St. Gothian Sands Local Nature Reserve and last: Dallas International School Mission Laïque Française -[2018-02-13T08:34:48.239] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Anatolidion and last: Draft:Allen M. Burdett Jr. -[2018-02-13T08:34:48.266] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:34:48.325] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:34:48.360] [INFO] cheese - inserting 1000 documents. first: Holy cow and last: Banana Republicans -[2018-02-13T08:34:48.482] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:34:48.535] [INFO] cheese - inserting 1000 documents. first: Template:PBB/5764 and last: List of Welsh musicians -[2018-02-13T08:34:48.645] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:34:48.711] [INFO] cheese - inserting 1000 documents. first: 1963 Berlin International Film Festival and last: 2005 Kurdistan governorate elections -[2018-02-13T08:34:48.749] [INFO] cheese - inserting 1000 documents. first: Pallisers and last: Preferred roaming list -[2018-02-13T08:34:48.782] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:34:48.839] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/The Unwinding and last: Suzy Stride -[2018-02-13T08:34:48.868] [INFO] cheese - inserting 1000 documents. first: Wigwag (disambiguation) and last: Ellinitsa -[2018-02-13T08:34:48.869] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:34:48.902] [INFO] cheese - inserting 1000 documents. first: Ðà Nẵng F.C. and last: Association of Independent Colleges and Universities in Massachusetts -[2018-02-13T08:34:48.914] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:34:48.957] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:34:48.992] [INFO] cheese - inserting 1000 documents. first: Liverpool City Council election, 2016 and last: Programme note -[2018-02-13T08:34:49.015] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:34:49.132] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:34:49.279] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1311 and last: Pranab Kumar Mukherjee -[2018-02-13T08:34:49.294] [INFO] cheese - inserting 1000 documents. first: List of Baccano episodes and last: Satellite drag -[2018-02-13T08:34:49.390] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:34:49.399] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:34:49.442] [INFO] cheese - inserting 1000 documents. first: Kaskade (Project Pitchfork album) and last: List of populated places in Hungary (Sz) -[2018-02-13T08:34:49.452] [INFO] cheese - inserting 1000 documents. first: Terminal illness and last: André Courrèges -[2018-02-13T08:34:49.513] [INFO] cheese - inserting 1000 documents. first: Tetralopha cyrilla and last: Classical tradition -[2018-02-13T08:34:49.582] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:34:49.609] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:34:49.653] [INFO] cheese - inserting 1000 documents. first: Programme notes and last: Rizzato -[2018-02-13T08:34:49.665] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:34:49.736] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:34:49.802] [INFO] cheese - inserting 1000 documents. first: Synthetic ruby and last: Portal:Language/Language topic/January 2006 -[2018-02-13T08:34:49.857] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Computer science articles and last: Liu Heita -[2018-02-13T08:34:49.904] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:34:49.993] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:34:50.136] [INFO] cheese - inserting 1000 documents. first: Richard Finan and last: Japanese general election, 1960 -[2018-02-13T08:34:50.222] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:34:50.348] [INFO] cheese - inserting 1000 documents. first: Qal'eh-ye Taqiabad and last: Wikipedia:WikiProject Spam/LinkReports/russianschool.com -[2018-02-13T08:34:50.363] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1618 and last: Template:PBB/222487 -[2018-02-13T08:34:50.374] [INFO] cheese - inserting 1000 documents. first: TBM 930 and last: File:Biffy Clyro - Ellipsis Cover.jpg -[2018-02-13T08:34:50.430] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:34:50.471] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:34:50.473] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:34:50.611] [INFO] cheese - inserting 1000 documents. first: File:Climactichnites - Todd Gass 2.JPG and last: David battley -[2018-02-13T08:34:50.617] [INFO] cheese - inserting 1000 documents. first: Greyabbey and last: Wikipedia:Articles for deletion/Desperados -[2018-02-13T08:34:50.620] [INFO] cheese - inserting 1000 documents. first: Modri e and last: Category:Education in Randolph County, Missouri -[2018-02-13T08:34:50.683] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:34:50.719] [INFO] cheese - inserting 1000 documents. first: Jim McKay and last: Peter Steele -[2018-02-13T08:34:50.759] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:34:50.766] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:34:50.859] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:34:50.898] [INFO] cheese - inserting 1000 documents. first: Rhythm and Blues (album) and last: Peerumedu -[2018-02-13T08:34:50.987] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:34:50.992] [INFO] cheese - inserting 1000 documents. first: Cladodont and last: Caucasian dog -[2018-02-13T08:34:51.058] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:34:51.065] [INFO] cheese - inserting 1000 documents. first: Category:Canadian ceremonial units and last: K truck -[2018-02-13T08:34:51.130] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:34:51.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/russianschool.com and last: Space Quest IV: Roger Wilco and The Time Rippers -[2018-02-13T08:34:51.293] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:34:51.430] [INFO] cheese - inserting 1000 documents. first: Pike-characin and last: Template:Saint Lucian general election, 2011 -[2018-02-13T08:34:51.431] [INFO] cheese - inserting 1000 documents. first: Template:OldAfdMulti and last: Turnaround jump shot -[2018-02-13T08:34:51.471] [INFO] cheese - inserting 1000 documents. first: Mount Olivet, West Virginia and last: Bella Bella/Shearwater Water Aerodrome -[2018-02-13T08:34:51.486] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:34:51.533] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:34:51.610] [INFO] cheese - inserting 1000 documents. first: Vladimir Antonovich Zorich and last: Draft:The Wolf Man (film) -[2018-02-13T08:34:51.612] [INFO] cheese - inserting 1000 documents. first: Category:Architects from New York City and last: WFKX -[2018-02-13T08:34:51.620] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:34:51.657] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:34:51.729] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9058 and last: File:Hindley Station.JPG -[2018-02-13T08:34:51.731] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:34:51.748] [INFO] cheese - inserting 1000 documents. first: File:Kaohsiung County location.jpg and last: 2099 (comics) -[2018-02-13T08:34:51.816] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:34:51.866] [INFO] cheese - inserting 1000 documents. first: Space Quest V: The Next Mutation and last: 1920–21 Georgetown Hoyas men's basketball team -[2018-02-13T08:34:51.862] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:34:51.965] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:34:52.072] [INFO] cheese - inserting 1000 documents. first: Hossein Vafaei and last: List of political parties of the Turks and Caicos Islands -[2018-02-13T08:34:52.132] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:34:52.148] [INFO] cheese - inserting 1000 documents. first: Anil Mathur and last: Art repatriation -[2018-02-13T08:34:52.152] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Newfoundland and Labrador and last: Ayyoubid -[2018-02-13T08:34:52.197] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:34:52.226] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:34:52.252] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Bureaucrat Unchecking and last: Wikipedia:Sockpuppet investigations/Gfdssfdg -[2018-02-13T08:34:52.300] [INFO] cheese - inserting 1000 documents. first: Assault gliders and last: Pereira accounting -[2018-02-13T08:34:52.301] [INFO] cheese - inserting 1000 documents. first: CAW8 and last: Monty Naicker -[2018-02-13T08:34:52.326] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:34:52.346] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:34:52.367] [INFO] cheese - inserting 1000 documents. first: Finding Fela and last: The Best of Jay Sean -[2018-02-13T08:34:52.391] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:34:52.478] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:34:52.645] [INFO] cheese - inserting 1000 documents. first: Acacia auronitens and last: Category:1887 establishments in Zanzibar -[2018-02-13T08:34:52.696] [INFO] cheese - inserting 1000 documents. first: Category:Food additives and last: MIT Press -[2018-02-13T08:34:52.696] [INFO] cheese - inserting 1000 documents. first: Federal Ministry for Economics and Technologies (Germany) and last: Category:Latvian airbases -[2018-02-13T08:34:52.721] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:34:52.803] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:34:52.852] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:34:52.922] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject League of Copyeditors/Requests/Oil shale geology and last: Dogrose -[2018-02-13T08:34:52.937] [INFO] cheese - inserting 1000 documents. first: Charlotte Marie of Saxe-Jena and last: Aggressive (disambiguation) -[2018-02-13T08:34:52.978] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:34:53.017] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:34:53.048] [INFO] cheese - inserting 1000 documents. first: Lucian Bute vs. Jean Pascal and last: Queensland colonial election, 1896 -[2018-02-13T08:34:53.053] [INFO] cheese - inserting 1000 documents. first: ConnectU and last: Stephen Booth (cricketer) -[2018-02-13T08:34:53.115] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:34:53.136] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:34:53.163] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vondruke and last: Space Hulk: Vengeance of the Blood Angels -[2018-02-13T08:34:53.240] [INFO] cheese - inserting 1000 documents. first: Jan Peter van Baurscheit the Elder and last: Jan de Boer -[2018-02-13T08:34:53.248] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:34:53.252] [INFO] cheese - inserting 1000 documents. first: Template:Sul Ross State Lobos football coach navbox and last: Portal:Animation/Anniversaries/May/May 17 -[2018-02-13T08:34:53.286] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:34:53.318] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:34:53.410] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9148 and last: No. 10 Group RAAF -[2018-02-13T08:34:53.446] [INFO] cheese - inserting 1000 documents. first: VNN and last: Viable but nonculturable -[2018-02-13T08:34:53.448] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:34:53.516] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:34:53.543] [INFO] cheese - inserting 1000 documents. first: Erbin (protein) and last: Arrowfield 3YO Sprint -[2018-02-13T08:34:53.550] [INFO] cheese - inserting 1000 documents. first: José Luis García Muñoz and last: Boisé du Tremblay -[2018-02-13T08:34:53.590] [INFO] cheese - inserting 1000 documents. first: Greed and fear and last: St. Joseph River (Maumee River) -[2018-02-13T08:34:53.601] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:34:53.641] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:34:53.728] [INFO] cheese - inserting 1000 documents. first: Template:Sockpuppet category/error and last: Category:Exoplanet navigational boxes -[2018-02-13T08:34:53.738] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:34:53.766] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:34:53.779] [INFO] cheese - inserting 1000 documents. first: Category:Michigan Wolverines football coaches and last: Frustration Plantation -[2018-02-13T08:34:53.799] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian sports businesspeople and last: Wikipedia:Files for discussion/2016 April 11 -[2018-02-13T08:34:53.862] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:34:53.960] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:34:54.041] [INFO] cheese - inserting 1000 documents. first: House at 313 North Main Street and last: Deanna Pappas -[2018-02-13T08:34:54.061] [INFO] cheese - inserting 1000 documents. first: Template:PBB/23142 and last: Template:PBB/10307 -[2018-02-13T08:34:54.127] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:34:54.176] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:34:54.234] [INFO] cheese - inserting 1000 documents. first: Saline Creek and last: America's Secret War: Inside the Hidden Worldwide Struggle Between America and Its Enemies -[2018-02-13T08:34:54.251] [INFO] cheese - inserting 1000 documents. first: Feature-oriented scanning probe microscopy and last: Lilium pardalinum subsp. pitkinense -[2018-02-13T08:34:54.318] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:34:54.364] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:54.371] [INFO] cheese - inserting 1000 documents. first: Lean on Me (Kirk Franklin song) and last: 5-pyridoxate,NADPH:oxygen oxidoreductase (decyclizing) -[2018-02-13T08:34:54.398] [INFO] cheese - inserting 1000 documents. first: Category:Military installations of Cyprus and last: Broadway (band) -[2018-02-13T08:34:54.432] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:34:54.501] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:54.662] [INFO] cheese - inserting 1000 documents. first: Florida State Road 377 and last: Bolondo -[2018-02-13T08:34:54.688] [INFO] cheese - inserting 1000 documents. first: Template:PBB/10308 and last: Template:PBB/9063 -[2018-02-13T08:34:54.721] [INFO] cheese - inserting 1000 documents. first: Phthalate,NADH:oxygen oxidoreductase (4,5-hydroxylating) and last: S-adenozil-L-metionin:16S rRNA (cytidine1409-2'-O)-methyltransferase -[2018-02-13T08:34:54.740] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:34:54.779] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:34:54.805] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:34:54.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Seb Lester and last: Wasp 58 -[2018-02-13T08:34:54.843] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Birdy and last: Kelly Thiebaud -[2018-02-13T08:34:54.951] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:34:54.953] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:34:55.034] [INFO] cheese - inserting 1000 documents. first: Pont Nedd Fechan and last: Best Recording for Children -[2018-02-13T08:34:55.100] [INFO] cheese - inserting 1000 documents. first: S-adenozil-L-metionin:tRNA (guanine37-N1)-methyltransferase and last: ATP:ethanolamine O-phosphotransferase -[2018-02-13T08:34:55.116] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T08:34:55.132] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:34:55.281] [INFO] cheese - inserting 1000 documents. first: Jane (1916 film) and last: Template:TamilNadu-stub -[2018-02-13T08:34:55.380] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:34:55.418] [INFO] cheese - inserting 1000 documents. first: ATP:pseudouridine 5'-phosphotransferase and last: A-League transfers for 2016–17 season -[2018-02-13T08:34:55.450] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:34:55.471] [INFO] cheese - inserting 1000 documents. first: Hikari Rail Star (Shinkansen) and last: Richard Corbett -[2018-02-13T08:34:55.500] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9131 and last: Template:PBB/3735 -[2018-02-13T08:34:55.504] [INFO] cheese - inserting 1000 documents. first: Toolchains and last: Alawiyyin -[2018-02-13T08:34:55.551] [INFO] cheese - inserting 1000 documents. first: CCC Chuen Yuen College and last: Miklagård -[2018-02-13T08:34:55.580] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:55.599] [INFO] cheese - batch complete in: 1.861 secs -[2018-02-13T08:34:55.606] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:34:55.667] [INFO] cheese - inserting 1000 documents. first: Zermelo–Fraenkel axiomatization and last: Category:Universities in Malawi -[2018-02-13T08:34:55.679] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:34:55.792] [INFO] cheese - inserting 1000 documents. first: Campagnola, Domenico and last: Tymor yr Heliwr -[2018-02-13T08:34:55.814] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:34:55.908] [INFO] cheese - inserting 1000 documents. first: Soccerstar (EP album) and last: Neil Lynch (disambiguation) -[2018-02-13T08:34:55.917] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:34:55.989] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:34:56.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/5150 (involuntary psychiatric hold) and last: Magpie, Victoria -[2018-02-13T08:34:56.155] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:34:56.320] [INFO] cheese - inserting 1000 documents. first: Template:PBB/3895 and last: Template:PBB/3347 -[2018-02-13T08:34:56.333] [INFO] cheese - inserting 1000 documents. first: PTVS and last: NWT Spruce Coupe -[2018-02-13T08:34:56.367] [INFO] cheese - inserting 1000 documents. first: Southern Beltway (Pittsburgh) and last: U.S. Route 9 Business (Jersey City, New Jersey) -[2018-02-13T08:34:56.387] [INFO] cheese - inserting 1000 documents. first: Morfe Forest and last: Monstersauria -[2018-02-13T08:34:56.387] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:34:56.405] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:34:56.474] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:34:56.510] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:34:56.552] [INFO] cheese - inserting 1000 documents. first: Derbyshire County Cricket Club in 1965 and last: Template:Ball State Cardinals football navbox -[2018-02-13T08:34:56.629] [INFO] cheese - inserting 1000 documents. first: Makuti-Kariba Highway and last: SubTile -[2018-02-13T08:34:56.676] [INFO] cheese - inserting 1000 documents. first: Dark desire and last: Theatre District, New York City -[2018-02-13T08:34:56.680] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:34:56.731] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:34:56.791] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:34:56.884] [INFO] cheese - inserting 1000 documents. first: 1995 Atlantic Hurricane season and last: Wikipedia:Articles for deletion/Median number -[2018-02-13T08:34:57.030] [INFO] cheese - inserting 1000 documents. first: Spruce Coupe and last: Do Sakhli -[2018-02-13T08:34:57.051] [INFO] cheese - batch complete in: 1.452 secs -[2018-02-13T08:34:57.073] [INFO] cheese - inserting 1000 documents. first: ATP phosphohydrolase (nucleosome-assembling) and last: Template:Did you know nominations/United States Senate election in Florida, 1950 -[2018-02-13T08:34:57.122] [INFO] cheese - inserting 1000 documents. first: Template:PBB/3595 and last: Independent Force -[2018-02-13T08:34:57.116] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:34:57.130] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T08:34:57.222] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:34:57.248] [INFO] cheese - inserting 1000 documents. first: Gillman v. Holmes County School District and last: Central Park, Utah -[2018-02-13T08:34:57.299] [INFO] cheese - inserting 1000 documents. first: U.S. Route 1 Business (Jersey City, New Jersey) and last: High Level/Footner Lake Water Aerodrome -[2018-02-13T08:34:57.349] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:34:57.374] [INFO] cheese - inserting 1000 documents. first: George R. Reeves and last: Sharath Gayakwad -[2018-02-13T08:34:57.416] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:34:57.493] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:57.636] [INFO] cheese - inserting 1000 documents. first: L’Atalante and last: Category:British prisoners and detainees -[2018-02-13T08:34:57.664] [INFO] cheese - inserting 1000 documents. first: Do Salkhi and last: The Symbolic Life -[2018-02-13T08:34:57.669] [INFO] cheese - inserting 1000 documents. first: Moulders of Men and last: Hypercallia halobapta -[2018-02-13T08:34:57.705] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:34:57.723] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:34:57.729] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:34:57.745] [INFO] cheese - inserting 1000 documents. first: Template:PBB/2041 and last: Template:PBB/23085 -[2018-02-13T08:34:57.818] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:34:57.840] [INFO] cheese - inserting 1000 documents. first: Jet Star 2 - Coaster and last: Battle of Mingtiao -[2018-02-13T08:34:57.898] [INFO] cheese - inserting 1000 documents. first: File:Six Pack (Cover art) Front.jpg and last: List of Princesses Episodes -[2018-02-13T08:34:57.900] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:34:57.955] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:34:57.974] [INFO] cheese - inserting 1000 documents. first: CEK7 and last: Sir John Riddell, 13th Baronet -[2018-02-13T08:34:58.029] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:34:58.156] [INFO] cheese - inserting 1000 documents. first: Neeyane and last: Sunnistan -[2018-02-13T08:34:58.199] [INFO] cheese - inserting 1000 documents. first: Dkctf and last: Ghost Riders in the Sky (Slim Whitman album) -[2018-02-13T08:34:58.203] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:34:58.244] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Ram Narayan/archive2 and last: Wikipedia:WikiProject Spam/LinkReports/rhythmfmgoa881.yolasite.com -[2018-02-13T08:34:58.248] [INFO] cheese - inserting 1000 documents. first: 10 Hygiea and last: Jan, Count Zizka -[2018-02-13T08:34:58.267] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:34:58.273] [INFO] cheese - inserting 1000 documents. first: Campbell Funeral Church and last: Template:PBB/4722 -[2018-02-13T08:34:58.274] [INFO] cheese - inserting 1000 documents. first: Thomas Carroll (disambiguation) and last: Sassoon General Hospital -[2018-02-13T08:34:58.298] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T08:34:58.314] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class MonmouthpediA-related articles and last: Dioryctria okui -[2018-02-13T08:34:58.320] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:34:58.342] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:34:58.365] [INFO] cheese - batch complete in: 1.314 secs -[2018-02-13T08:34:58.380] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:34:58.532] [INFO] cheese - inserting 1000 documents. first: Colegio Mexico Bachillerato, A.C. and last: Nileshwar Railway Station -[2018-02-13T08:34:58.580] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T08:34:58.612] [INFO] cheese - inserting 1000 documents. first: File:Andrew Stevovich oil painting, Bus Stop, 2001, 24" x 24" .jpg and last: Category:1740 establishments in Prussia -[2018-02-13T08:34:58.632] [INFO] cheese - inserting 1000 documents. first: Attock District and last: Magnus Johansson -[2018-02-13T08:34:58.649] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T08:34:58.666] [INFO] cheese - inserting 1000 documents. first: Archbishop Sebouh Chouldjian and last: 1985 TANFL Season -[2018-02-13T08:34:58.727] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:34:58.736] [INFO] cheese - inserting 1000 documents. first: Category:Sevastopol and last: Burger vans -[2018-02-13T08:34:58.758] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:34:58.787] [INFO] cheese - inserting 1000 documents. first: Jaanimae and last: Template:PBB/11345 -[2018-02-13T08:34:58.791] [INFO] cheese - inserting 1000 documents. first: Rathcoole (Belfast) and last: Brazilian Remote Sensing Satellite -[2018-02-13T08:34:58.800] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:34:58.842] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:34:58.887] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:34:59.043] [INFO] cheese - inserting 1000 documents. first: Category:Bolivian people of Chilean descent and last: Template:Trinity Evangelical Divinity School -[2018-02-13T08:34:59.045] [INFO] cheese - inserting 1000 documents. first: AS Farcha and last: Adonim ha-Levi -[2018-02-13T08:34:59.089] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:34:59.132] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:34:59.243] [INFO] cheese - inserting 1000 documents. first: 1986 TFL Statewide League Season and last: Mattias Nilsson Jr. -[2018-02-13T08:34:59.270] [INFO] cheese - inserting 1000 documents. first: Taco trucks and last: Polynose -[2018-02-13T08:34:59.312] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:34:59.333] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:34:59.352] [INFO] cheese - inserting 1000 documents. first: Capitrol and last: Rogozarski AZR -[2018-02-13T08:34:59.382] [INFO] cheese - inserting 1000 documents. first: File:Federal Thunderbolt 1000.jpg and last: Paris by Night (song) -[2018-02-13T08:34:59.418] [INFO] cheese - inserting 1000 documents. first: Volutions Magazine and last: Moose Jaw Municipal Airport -[2018-02-13T08:34:59.448] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:34:59.459] [INFO] cheese - inserting 1000 documents. first: List of monastic houses on the Isle of Man and last: Wikipedia:Multilingual ranking April 2002 -[2018-02-13T08:34:59.520] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:34:59.539] [INFO] cheese - inserting 1000 documents. first: Chah Shuli and last: Mazra'eh-ye Tang Firuzi -[2018-02-13T08:34:59.559] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:34:59.661] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:34:59.681] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T08:34:59.688] [INFO] cheese - inserting 1000 documents. first: Posoquerieae and last: Wikipedia:WikiProject Directory/Description/WikiProject Holidays/Christmas task force -[2018-02-13T08:34:59.873] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:35:00.005] [INFO] cheese - inserting 1000 documents. first: File:Vaptzarov-ship.jpg and last: Daisy-wheel typewriter -[2018-02-13T08:35:00.009] [INFO] cheese - inserting 1000 documents. first: File:Northmayfairbungalow.jpg and last: Arnold Lodge School -[2018-02-13T08:35:00.088] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:35:00.094] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:00.217] [INFO] cheese - inserting 1000 documents. first: Slovenian 2011 YouTube Affair and last: Fernanda de Freitas -[2018-02-13T08:35:00.240] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Tulayi and last: Slavery in Denmark -[2018-02-13T08:35:00.246] [INFO] cheese - inserting 1000 documents. first: Bourne Park (football ground) and last: Template:PBB/1175 -[2018-02-13T08:35:00.287] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:35:00.296] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:35:00.305] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:00.454] [INFO] cheese - inserting 1000 documents. first: Portal:German Empire/Selected article/8 and last: Women's rights in the Philippines -[2018-02-13T08:35:00.500] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:00.545] [INFO] cheese - inserting 1000 documents. first: CJS4 and last: TechCentralStation.com -[2018-02-13T08:35:00.568] [INFO] cheese - inserting 1000 documents. first: The Drop (Brian Eno album) and last: Anorthosis FC -[2018-02-13T08:35:00.600] [INFO] cheese - inserting 1000 documents. first: 16 Wishes and last: IPoDWDM -[2018-02-13T08:35:00.624] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:35:00.626] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:35:00.663] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Multilingual ranking March 2002 and last: Kolomenskoe -[2018-02-13T08:35:00.680] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:35:00.689] [INFO] cheese - inserting 1000 documents. first: Lina Carstens and last: 3-Hydroxytetrahydrofuran -[2018-02-13T08:35:00.697] [INFO] cheese - inserting 1000 documents. first: Phillip Jones of Fonmon and last: Mazra'eh-ye Darishak -[2018-02-13T08:35:00.741] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:35:00.744] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T08:35:00.751] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:35:00.814] [INFO] cheese - inserting 1000 documents. first: Second Reformed Dutch Church of Kingston and last: Obiecanowo, Kuyavian-Pomeranian Voivodeship -[2018-02-13T08:35:00.864] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:00.961] [INFO] cheese - inserting 1000 documents. first: Category:Politicians of African descent and last: Elpistostege watsoni -[2018-02-13T08:35:01.020] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:35:01.134] [INFO] cheese - inserting 1000 documents. first: Welawa-Bydgoszcz Treaty and last: File:Spinalthing.jpg -[2018-02-13T08:35:01.183] [INFO] cheese - inserting 1000 documents. first: Battersea power station in popular culture and last: Template:Taxonomy/Acer sect. Parviflora -[2018-02-13T08:35:01.191] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Dozdakuiyeh and last: Stenodes bipunctata -[2018-02-13T08:35:01.209] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:35:01.292] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:35:01.379] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:01.391] [INFO] cheese - inserting 1000 documents. first: Guy Bingham and last: Andrea Commodi -[2018-02-13T08:35:01.423] [INFO] cheese - inserting 1000 documents. first: Kiev City Council and last: Mobsters and Mormons -[2018-02-13T08:35:01.478] [INFO] cheese - inserting 1000 documents. first: Ośno, Żnin County and last: Template:PBB/56648 -[2018-02-13T08:35:01.511] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:35:01.520] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:35:01.570] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:35:01.623] [INFO] cheese - inserting 1000 documents. first: British Rail Class 717 and last: Preparatoria La Salle Simón Bolívar -[2018-02-13T08:35:01.675] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:35:01.741] [INFO] cheese - inserting 1000 documents. first: Aysén Region and last: Women's Basketball Hall of Fame -[2018-02-13T08:35:01.834] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:35:01.873] [INFO] cheese - inserting 1000 documents. first: Sergei Valentinovich Novikov and last: Alfredo Travia -[2018-02-13T08:35:01.891] [INFO] cheese - inserting 1000 documents. first: Glasgow slum clearance and last: Evergreen, Alberta -[2018-02-13T08:35:01.916] [INFO] cheese - inserting 1000 documents. first: Maljukgeori janhoksa and last: Phalonia corsicana -[2018-02-13T08:35:01.952] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:35:01.982] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:35:01.990] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:35:02.041] [INFO] cheese - inserting 1000 documents. first: Bachelor (disambiguation) and last: Phillip Furtwangler -[2018-02-13T08:35:02.167] [INFO] cheese - inserting 1000 documents. first: Ḵaasda Héen and last: Neil Tobin -[2018-02-13T08:35:02.189] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:35:02.260] [INFO] cheese - inserting 1000 documents. first: Category:Châteaux in Oise and last: Class AB amplifiers -[2018-02-13T08:35:02.260] [INFO] cheese - inserting 1000 documents. first: Preparatoria La Salle Simon Bolivar and last: Bischoff, Douglas G. -[2018-02-13T08:35:02.293] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:35:02.346] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:35:02.352] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:35:02.464] [INFO] cheese - inserting 1000 documents. first: Conchylis austrinana and last: Amir Salar-e Sar Tang -[2018-02-13T08:35:02.482] [INFO] cheese - inserting 1000 documents. first: James Lyons (admiral) and last: Carl Anschutz -[2018-02-13T08:35:02.510] [INFO] cheese - inserting 1000 documents. first: Garth, Alberta and last: Greek legislative election, 1895 -[2018-02-13T08:35:02.608] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:35:02.648] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:02.708] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:35:02.752] [INFO] cheese - inserting 1000 documents. first: Picard existence theorem and last: Category:Reformed Presbyterian Church (denomination) -[2018-02-13T08:35:02.807] [INFO] cheese - inserting 1000 documents. first: Madam Rosmerta and last: Unia Wolnosci -[2018-02-13T08:35:02.849] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:35:02.971] [INFO] cheese - inserting 1000 documents. first: A Presentation of Progressive Jazz and last: Banco Serfín -[2018-02-13T08:35:02.980] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:35:03.037] [INFO] cheese - inserting 1000 documents. first: Muhacir and last: Tunbridge Wells Girls Grammar School -[2018-02-13T08:35:03.050] [INFO] cheese - inserting 1000 documents. first: Category:Altensteig and last: Bodley (library) -[2018-02-13T08:35:03.107] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:35:03.186] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:35:03.194] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:35:03.310] [INFO] cheese - inserting 1000 documents. first: Chant Noël: Chants For The Holiday Season and last: Category:Diving Universiade champions navigational boxes -[2018-02-13T08:35:03.312] [INFO] cheese - inserting 1000 documents. first: Kushk-i-Sartang and last: Animals in Thai folklore -[2018-02-13T08:35:03.360] [INFO] cheese - inserting 1000 documents. first: Milo Rimbaldi and last: Srbski -[2018-02-13T08:35:03.384] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:35:03.390] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:35:03.468] [INFO] cheese - inserting 1000 documents. first: Bhai kahn Singh Nabha and last: Category:Fictional shapeshifters -[2018-02-13T08:35:03.511] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:35:03.519] [INFO] cheese - inserting 1000 documents. first: Granman and last: Bangor (airport) -[2018-02-13T08:35:03.555] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:03.598] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:35:03.878] [INFO] cheese - inserting 1000 documents. first: Bangui M'Poko (airport) and last: The Nor'-westers -[2018-02-13T08:35:03.881] [INFO] cheese - inserting 1000 documents. first: Category:Swimming Universiade champions navigational boxes and last: Divisional Secretariats of Uva Province -[2018-02-13T08:35:03.965] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T08:35:03.984] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:35:03.996] [INFO] cheese - inserting 1000 documents. first: File:7 Sinz.jpg and last: Robert Fechner -[2018-02-13T08:35:04.045] [INFO] cheese - inserting 1000 documents. first: File:ThomasMansfield Logo.jpg and last: Category:1985 in New Mexico -[2018-02-13T08:35:04.056] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:35:04.083] [INFO] cheese - inserting 1000 documents. first: Category:Social issues and last: Wikipedia:Arbitration Committee Elections January 2006 Vote/Vote Tznkai -[2018-02-13T08:35:04.097] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:35:04.123] [INFO] cheese - inserting 1000 documents. first: Eunomia family and last: Multiplicity (film) -[2018-02-13T08:35:04.204] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:35:04.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of The Fairly OddParents DVD and VHS and last: Radiological fallout -[2018-02-13T08:35:04.265] [INFO] cheese - inserting 1000 documents. first: Pete Wentz (musician) and last: Julius Butty -[2018-02-13T08:35:04.264] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:35:04.353] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:35:04.386] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:35:04.546] [INFO] cheese - inserting 1000 documents. first: Nattapon Malapun and last: Category:Buddhism in Karnataka -[2018-02-13T08:35:04.630] [INFO] cheese - inserting 1000 documents. first: Zarat, Iran and last: File:Showbiz Police 2014 Titlecard.jpg -[2018-02-13T08:35:04.633] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:35:04.634] [INFO] cheese - inserting 1000 documents. first: Divisional Secretariats of Sabaragamuwa Province and last: Glossary of New Thought terms -[2018-02-13T08:35:04.640] [INFO] cheese - inserting 1000 documents. first: List of Sega Genesis & Sega Mega Drive Games and last: Love Italian Style (film) -[2018-02-13T08:35:04.736] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:35:04.736] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:35:04.744] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:35:04.921] [INFO] cheese - inserting 1000 documents. first: File:Torchy the Battery Boy titlescreen.jpg and last: Total hemolytic complement -[2018-02-13T08:35:04.976] [INFO] cheese - inserting 1000 documents. first: Cool World soundtrack and last: Gave d'Ossau -[2018-02-13T08:35:04.986] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:35:05.053] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:05.095] [INFO] cheese - inserting 1000 documents. first: St Mary's Church, Llanfairpwll and last: Sister Luisa Capomazza -[2018-02-13T08:35:05.145] [INFO] cheese - inserting 1000 documents. first: Cacl2 and last: ∇ -[2018-02-13T08:35:05.150] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:05.252] [INFO] cheese - inserting 1000 documents. first: Portal:Nick and last: Template:2012 CIFL Standings -[2018-02-13T08:35:05.255] [INFO] cheese - inserting 1000 documents. first: Sonoma State Seawolves baseball and last: Category:1671 in New Spain -[2018-02-13T08:35:05.279] [INFO] cheese - inserting 1000 documents. first: 17th Earl of Oxford, Lord Bulbeck and last: Kármán line -[2018-02-13T08:35:05.282] [INFO] cheese - inserting 1000 documents. first: 1st Man in Space and last: Corporate Dealmaker -[2018-02-13T08:35:05.290] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:35:05.319] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:05.344] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:05.396] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:35:05.408] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:05.502] [INFO] cheese - inserting 1000 documents. first: File:Xtro2.jpg and last: Category:Gibraltarian diaspora -[2018-02-13T08:35:05.612] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:35:05.669] [INFO] cheese - inserting 1000 documents. first: Impallomeni and last: Thomas Pearson Moody -[2018-02-13T08:35:05.676] [INFO] cheese - inserting 1000 documents. first: Mandolin Concerto and last: David Kennedy (advertising) -[2018-02-13T08:35:05.751] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:35:05.792] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:35:05.863] [INFO] cheese - inserting 1000 documents. first: Category:1671 in Spain and last: Weird Loners -[2018-02-13T08:35:05.888] [INFO] cheese - inserting 1000 documents. first: Loveless (comic book) and last: Arapi -[2018-02-13T08:35:05.952] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:35:05.993] [INFO] cheese - inserting 1000 documents. first: Gent Go-Go Rollergirls and last: Category:Pacific Games -[2018-02-13T08:35:06.013] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:35:06.055] [INFO] cheese - inserting 1000 documents. first: Archer season 7 and last: Awards and nominations received by Rita Ora -[2018-02-13T08:35:06.087] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T08:35:06.106] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:06.244] [INFO] cheese - inserting 1000 documents. first: Porn in the Philippines and last: HVDC Mechanicville-Schenectady -[2018-02-13T08:35:06.250] [INFO] cheese - inserting 1000 documents. first: Prince William of Hesse-Kassel and last: File:Live in Concert (Najwa Karam album).jpg -[2018-02-13T08:35:06.337] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:35:06.349] [INFO] cheese - inserting 1000 documents. first: Charles Onyango Obbo and last: Link edit -[2018-02-13T08:35:06.367] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:35:06.373] [INFO] cheese - inserting 1000 documents. first: St Neots Priory and last: Vladimir Propp -[2018-02-13T08:35:06.399] [INFO] cheese - inserting 1000 documents. first: Laddivadi railway station and last: Get You Back (Mayer Hawthorne song) -[2018-02-13T08:35:06.400] [INFO] cheese - inserting 1000 documents. first: Category:Flora of Shandong and last: Leucanopsis obvia -[2018-02-13T08:35:06.424] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T08:35:06.453] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:35:06.462] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:06.488] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:35:06.579] [INFO] cheese - inserting 1000 documents. first: File:Primer 55 - Family for Life.jpg and last: Category:National Youth Competition seasons -[2018-02-13T08:35:06.588] [INFO] cheese - inserting 1000 documents. first: William Passmore (boxer) and last: Frankie Odell -[2018-02-13T08:35:06.675] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:35:06.674] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:06.919] [INFO] cheese - inserting 1000 documents. first: Out of Pocket (song) and last: Sindh Rangers -[2018-02-13T08:35:06.924] [INFO] cheese - inserting 1000 documents. first: George Consider Hale and last: Template:Attached KML/New York State Route 189 -[2018-02-13T08:35:06.969] [INFO] cheese - inserting 1000 documents. first: Template:Infobox road/link/GBR and last: Cow shit -[2018-02-13T08:35:07.001] [INFO] cheese - inserting 1000 documents. first: File:SSI-0.PNG and last: Lan (given name) -[2018-02-13T08:35:07.043] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:07.048] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:35:07.050] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:35:07.093] [INFO] cheese - inserting 1000 documents. first: Robert F. Fairlie and last: James McCoy (politician) -[2018-02-13T08:35:07.088] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:07.211] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:35:07.228] [INFO] cheese - inserting 1000 documents. first: China–Pakistan Free Trade Agreement and last: Primacy of the Roman pontiff -[2018-02-13T08:35:07.307] [INFO] cheese - inserting 1000 documents. first: Scott Bradley (politician) and last: Kabuli kikar -[2018-02-13T08:35:07.310] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:35:07.325] [INFO] cheese - inserting 1000 documents. first: USS California (SP-647) and last: Bibliography of Prem Rawat -[2018-02-13T08:35:07.326] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T08:35:07.419] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:35:07.490] [INFO] cheese - inserting 1000 documents. first: William E. Colby and last: A Tale of Two Cities (1935) -[2018-02-13T08:35:07.589] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:35:07.627] [INFO] cheese - inserting 1000 documents. first: Liberal Democrat Members of Parliament in London and last: Rik Makarem -[2018-02-13T08:35:07.733] [INFO] cheese - inserting 1000 documents. first: Ralph Bernard and last: Wikipedia:Articles for deletion/List of fashion photographers -[2018-02-13T08:35:07.733] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:35:07.784] [INFO] cheese - inserting 1000 documents. first: Medieval Catalan and last: Emily Arnesen -[2018-02-13T08:35:07.819] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:07.835] [INFO] cheese - inserting 1000 documents. first: An Old Man and His Grandson and last: Zenith CH640 -[2018-02-13T08:35:07.933] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:35:07.955] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:35:08.014] [INFO] cheese - inserting 1000 documents. first: 3rd Golden Globe Awards and last: Wikipedia:Articles for deletion/Qincheng Prison -[2018-02-13T08:35:08.048] [INFO] cheese - inserting 1000 documents. first: Vilayati babul and last: Category:Paintings by Hendrick Avercamp -[2018-02-13T08:35:08.093] [INFO] cheese - inserting 1000 documents. first: Töpfer and last: Sun girl -[2018-02-13T08:35:08.133] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:35:08.137] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:35:08.167] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:35:08.345] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Fatwhales and last: Jacob`s Ladder -[2018-02-13T08:35:08.348] [INFO] cheese - inserting 1000 documents. first: Category:Icebreakers of Germany and last: (231665) 7602 P-L -[2018-02-13T08:35:08.405] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:08.424] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:35:08.499] [INFO] cheese - inserting 1000 documents. first: Hoosier North Athletic Conference and last: Masters M85 100 metres world record progression -[2018-02-13T08:35:08.607] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:08.644] [INFO] cheese - inserting 1000 documents. first: Software Automatic Mouth and last: Garden centre -[2018-02-13T08:35:08.659] [INFO] cheese - inserting 1000 documents. first: Cyclone Carmen (1971) and last: Wikipedia:WikiProject Spam/LinkReports/dichvuseo.n.nu -[2018-02-13T08:35:08.757] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:35:08.762] [INFO] cheese - inserting 1000 documents. first: Lapshina and last: 32nd Antiaircraft Artillery Brigade -[2018-02-13T08:35:08.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of best-selling albums in the United States and last: Lovelock -[2018-02-13T08:35:08.775] [INFO] cheese - inserting 1000 documents. first: Timok Mouth and last: The Long Goodbye (Stargate Atlantis) -[2018-02-13T08:35:08.821] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:35:08.915] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:35:08.883] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:35:08.956] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:35:09.029] [INFO] cheese - inserting 1000 documents. first: Category:Education in Kingston upon Hull and last: Fushengzhuang Railway Station -[2018-02-13T08:35:09.089] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:35:09.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe Prissel and last: Throat microphone -[2018-02-13T08:35:09.180] [INFO] cheese - inserting 1000 documents. first: Ecomonic and last: Halisidota lacteogrisea -[2018-02-13T08:35:09.182] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:35:09.262] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:35:09.332] [INFO] cheese - inserting 1000 documents. first: Papilio soratensis and last: Méndez Núñez -[2018-02-13T08:35:09.365] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:09.433] [INFO] cheese - inserting 1000 documents. first: А. П. Прудников and last: Niels Winther Poulsen -[2018-02-13T08:35:09.456] [INFO] cheese - inserting 1000 documents. first: WKDO (AM) and last: Category:Start-Class Tropical cyclone season articles -[2018-02-13T08:35:09.476] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:35:09.481] [INFO] cheese - inserting 1000 documents. first: Personal Aides de Camp to The Queen and last: Checkmate (DC Comics) -[2018-02-13T08:35:09.481] [INFO] cheese - inserting 1000 documents. first: Anju Railway Station and last: Junior e Leonardo -[2018-02-13T08:35:09.498] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:35:09.524] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:35:09.562] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:35:09.646] [INFO] cheese - inserting 1000 documents. first: SpaceShipOne flight 13P and last: Edhom -[2018-02-13T08:35:09.684] [INFO] cheese - inserting 1000 documents. first: Sabir Ali (politician) and last: Sakhteman-e Hajj Parviz -[2018-02-13T08:35:09.703] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:35:09.714] [INFO] cheese - inserting 1000 documents. first: File:Psilocybe.tampanensis.two.jpg and last: Kostas Giannidis -[2018-02-13T08:35:09.750] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T08:35:09.756] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:35:09.892] [INFO] cheese - inserting 1000 documents. first: File:KateRyanUR My Love.jpeg and last: Der Weibsteufel (1966 film) -[2018-02-13T08:35:09.901] [INFO] cheese - inserting 1000 documents. first: List of mosques in Senegal and last: SSAU (disambiguation) -[2018-02-13T08:35:09.903] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Tropical cyclone season articles and last: 1-random real -[2018-02-13T08:35:09.933] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T08:35:09.946] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:09.978] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:35:10.023] [INFO] cheese - inserting 1000 documents. first: Briggs Program and last: Road manager -[2018-02-13T08:35:10.131] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:10.184] [INFO] cheese - inserting 1000 documents. first: Sehtolan, Kazerun and last: Category:American film people -[2018-02-13T08:35:10.206] [INFO] cheese - inserting 1000 documents. first: Lisa Yee and last: LaDell Andersen -[2018-02-13T08:35:10.258] [INFO] cheese - inserting 1000 documents. first: WRKZ and last: Andreja Gomboc -[2018-02-13T08:35:10.265] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:35:10.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/electroniccigarettenow.net and last: Pearson College (United Kingdom) -[2018-02-13T08:35:10.336] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:35:10.373] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:35:10.439] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:35:10.563] [INFO] cheese - inserting 1000 documents. first: Foulfellow and Gideon and last: Template:Afd footer (multiple)/doc -[2018-02-13T08:35:10.615] [INFO] cheese - inserting 1000 documents. first: Kwak Yoon-gy and last: John Howell Collier -[2018-02-13T08:35:10.655] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/2008 UAW-Dodge 400 and last: League for Political Education -[2018-02-13T08:35:10.669] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:35:10.673] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:35:10.730] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:35:10.778] [INFO] cheese - inserting 1000 documents. first: Flynn and last: Wikipedia:Categories for deletion/Log/2006 January 11 -[2018-02-13T08:35:10.785] [INFO] cheese - inserting 1000 documents. first: Gemini Cain and last: Thalesa parva -[2018-02-13T08:35:10.833] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:10.849] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:35:10.880] [INFO] cheese - inserting 1000 documents. first: Croftland, Alberta and last: Emilia Turei -[2018-02-13T08:35:10.885] [INFO] cheese - inserting 1000 documents. first: Pal chaudhury high school and last: Peñacerrada -[2018-02-13T08:35:10.922] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:35:10.941] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:35:11.094] [INFO] cheese - inserting 1000 documents. first: Brandau (surname) and last: Category:Actors from Kyoto Prefecture -[2018-02-13T08:35:11.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chicago Engineering Design Team and last: Shakespeare & Company (Massachusetts) -[2018-02-13T08:35:11.099] [INFO] cheese - inserting 1000 documents. first: Super Deformed and last: Franklin MacVeagh -[2018-02-13T08:35:11.121] [INFO] cheese - inserting 1000 documents. first: Papular eruption of blacks and last: Category:Treaties entered into force in 1955 -[2018-02-13T08:35:11.140] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T08:35:11.152] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:11.165] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:35:11.190] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:35:11.205] [INFO] cheese - inserting 1000 documents. first: Halisidota albipuncta and last: Japanese destroyer Yamayuki (DD-129) -[2018-02-13T08:35:11.263] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:35:11.334] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Indian people by community and last: Wilbert (bishop) -[2018-02-13T08:35:11.347] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gunged and last: Indiana-Purdue University Fort Wayne -[2018-02-13T08:35:11.357] [INFO] cheese - inserting 1000 documents. first: Bundesministerium für Familie, Senioren, Frauen und Jugend and last: Vilho Luolajan Mikkola -[2018-02-13T08:35:11.393] [INFO] cheese - inserting 1000 documents. first: Category:Ugly Leaders albums and last: Roman Catholic dioceses in Haiti -[2018-02-13T08:35:11.391] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:35:11.412] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:35:11.415] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:35:11.464] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T08:35:11.535] [INFO] cheese - inserting 1000 documents. first: Foreign aid to Syria and last: Patterson House (Larned, Kansas) -[2018-02-13T08:35:11.569] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:35:11.636] [INFO] cheese - inserting 1000 documents. first: I Do (Jewel song) and last: Harry Graham -[2018-02-13T08:35:11.650] [INFO] cheese - inserting 1000 documents. first: Mordekhay and last: Emaanuel de Witte -[2018-02-13T08:35:11.670] [INFO] cheese - inserting 1000 documents. first: NRK P13 and last: Laurenţiu Streza -[2018-02-13T08:35:11.729] [INFO] cheese - inserting 1000 documents. first: Roman Catholic dioceses in Honduras and last: Hamtaro (series) -[2018-02-13T08:35:11.737] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:35:11.739] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:35:11.740] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:11.853] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T08:35:11.922] [INFO] cheese - inserting 1000 documents. first: File:Tamil Virtual University.jpg and last: Sir Olivers Song -[2018-02-13T08:35:11.931] [INFO] cheese - inserting 1000 documents. first: Oculinidae and last: Warpes -[2018-02-13T08:35:11.986] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:35:11.996] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:12.083] [INFO] cheese - inserting 1000 documents. first: Template:User browser:Any other browser than Microsoft Internet Explorer and last: Main sequence star -[2018-02-13T08:35:12.101] [INFO] cheese - inserting 1000 documents. first: Chateau de Beggen and last: Sava Mutkurov -[2018-02-13T08:35:12.131] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:35:12.166] [INFO] cheese - inserting 1000 documents. first: TasRail TR class and last: Chengdu Tianfu International Airport -[2018-02-13T08:35:12.171] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:35:12.213] [INFO] cheese - inserting 1000 documents. first: Stemness and last: Wikipedia:Village pump (policy)/Archive 127 -[2018-02-13T08:35:12.227] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:35:12.259] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/KC Panchal and last: The Decision (song) -[2018-02-13T08:35:12.269] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:35:12.320] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:12.352] [INFO] cheese - inserting 1000 documents. first: Tehues and last: Tamara Bull -[2018-02-13T08:35:12.399] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:35:12.425] [INFO] cheese - inserting 1000 documents. first: Arboleas and last: The Tale of Kieu -[2018-02-13T08:35:12.512] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:35:12.525] [INFO] cheese - inserting 1000 documents. first: Wilbert Jones and last: South Saddle Mountain -[2018-02-13T08:35:12.596] [INFO] cheese - inserting 1000 documents. first: * (disambiguation) and last: Sedes (band) -[2018-02-13T08:35:12.606] [INFO] cheese - inserting 1000 documents. first: Louisiana gubernatorial election, 1963-64 and last: Pickens County Airport (Georgia) -[2018-02-13T08:35:12.624] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:35:12.633] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:35:12.653] [INFO] cheese - inserting 1000 documents. first: Number Seven (Will Hoge album) and last: Wikipedia:Sockpuppet investigations/Trfc06/Archive -[2018-02-13T08:35:12.679] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:12.723] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:35:12.728] [INFO] cheese - inserting 1000 documents. first: Pioneer Oil Company Filling Station and last: Category:Albums produced by Rémi Gallego -[2018-02-13T08:35:12.786] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:12.838] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Sępólno Krajeńskie and last: Amujan -[2018-02-13T08:35:12.888] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:13.015] [INFO] cheese - inserting 1000 documents. first: Pennsylvania House of Representatives, District 4 and last: Duranavir -[2018-02-13T08:35:13.087] [INFO] cheese - inserting 1000 documents. first: Abdrabuh Mansur Hadi and last: Marcus lewis -[2018-02-13T08:35:13.094] [INFO] cheese - inserting 1000 documents. first: State Highway 9 (Kerala) and last: Category:Romanesque Revival architecture in Texas -[2018-02-13T08:35:13.122] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:35:13.146] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:35:13.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Sslib/Archive and last: ACB Player of the Month Award -[2018-02-13T08:35:13.195] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:35:13.247] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:35:13.299] [INFO] cheese - inserting 1000 documents. first: USS Plunger (SS-2) and last: Majority Leader of the House of Representatives -[2018-02-13T08:35:13.356] [INFO] cheese - inserting 1000 documents. first: Freiburg Minster and last: Computer-generated-imagery -[2018-02-13T08:35:13.367] [INFO] cheese - inserting 1000 documents. first: Template:PVésubie and last: Wikipedia:Articles for deletion/2007-08 Lancashire FA Challenge Trophy -[2018-02-13T08:35:13.378] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:35:13.389] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/FlyDubai and last: List of European Union member states by population -[2018-02-13T08:35:13.421] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:35:13.430] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:13.463] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:13.612] [INFO] cheese - inserting 1000 documents. first: Category:Romanesque Revival architecture in Virginia and last: Farage -[2018-02-13T08:35:13.642] [INFO] cheese - inserting 1000 documents. first: Baneservice and last: Khudadad -[2018-02-13T08:35:13.665] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:35:13.710] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:35:13.764] [INFO] cheese - inserting 1000 documents. first: Emad Deh Rural District and last: Template:Database Population Aramits -[2018-02-13T08:35:13.777] [INFO] cheese - inserting 1000 documents. first: Theodore Joyce and last: Wikipedia:Articles for deletion/List of asteroids/120901-121000 -[2018-02-13T08:35:13.819] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:35:13.830] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:35:13.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Harvestmen Macro and last: Category:Members of the Frankfurt Parliament -[2018-02-13T08:35:13.946] [INFO] cheese - inserting 1000 documents. first: Alexander Nisbet and last: Kishi Asako -[2018-02-13T08:35:13.973] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:14.021] [INFO] cheese - inserting 1000 documents. first: Yoojimboo (movie) and last: Parthenon marbles -[2018-02-13T08:35:14.032] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:35:14.089] [INFO] cheese - inserting 1000 documents. first: Proto-Austroasiatic language and last: Wikipedia:Articles for deletion/Moldova-South Korea relations -[2018-02-13T08:35:14.118] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:35:14.122] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T08:35:14.162] [INFO] cheese - inserting 1000 documents. first: Chanchamayo FC and last: Wikipedia:Administrators' noticeboard/IncidentArchive599 -[2018-02-13T08:35:14.273] [INFO] cheese - inserting 1000 documents. first: File:BirminghamCorpHydrant.jpg and last: Altinkum -[2018-02-13T08:35:14.294] [INFO] cheese - inserting 1000 documents. first: Category:Intellectual property adjudication bodies and last: Template:WikiProject Latin America/testcases -[2018-02-13T08:35:14.300] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:14.365] [INFO] cheese - inserting 1000 documents. first: Daniela Escobar and last: Gudarzi -[2018-02-13T08:35:14.367] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:35:14.435] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:35:14.512] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:35:14.600] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/Byzantine-Arab Wars (780-1180)/1 and last: Aragami (video game) -[2018-02-13T08:35:14.641] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:35:14.700] [INFO] cheese - inserting 1000 documents. first: Alexander Vorobyov and last: File:Manhattan 1 20 025.jpg -[2018-02-13T08:35:14.714] [INFO] cheese - inserting 1000 documents. first: Chukotian languages and last: College of fine arts -[2018-02-13T08:35:14.753] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:35:14.755] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:35:14.840] [INFO] cheese - inserting 1000 documents. first: CVB 42 and last: Edmonton Beverly-Clareview -[2018-02-13T08:35:14.855] [INFO] cheese - inserting 1000 documents. first: File:George Formby with friends - April 1915.JPG and last: File:The Stranglers and Friends - Live in Concert.jpg -[2018-02-13T08:35:14.855] [INFO] cheese - inserting 1000 documents. first: Rick Waugh (Canadian) and last: Qal'eh Gach Giran -[2018-02-13T08:35:14.874] [INFO] cheese - inserting 1000 documents. first: Gstreamer and last: Samuel C. Hyde -[2018-02-13T08:35:14.880] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T08:35:14.881] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:14.901] [INFO] cheese - inserting 1000 documents. first: File:Adam Hills in Gordon Street Tonight logo.jpg and last: Dernier domicile connu -[2018-02-13T08:35:14.907] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:35:14.929] [INFO] cheese - inserting 1000 documents. first: Robert Smith (baseball) and last: Air tide -[2018-02-13T08:35:14.947] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:35:14.971] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:35:15.014] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:35:15.131] [INFO] cheese - inserting 1000 documents. first: File:Djevara band 2008.jpg and last: Kenny Baysmore -[2018-02-13T08:35:15.164] [INFO] cheese - inserting 1000 documents. first: File:UW-Superior logo.png and last: Template:1939-40 in European Football (UEFA) -[2018-02-13T08:35:15.165] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T08:35:15.176] [INFO] cheese - inserting 1000 documents. first: William Mattice and last: Staedterdorf -[2018-02-13T08:35:15.203] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:35:15.228] [INFO] cheese - inserting 1000 documents. first: Qal'eh-ye Kajgiran and last: Ab Naru, Mamasani -[2018-02-13T08:35:15.247] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:35:15.299] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T08:35:15.317] [INFO] cheese - inserting 1000 documents. first: Category:Croatian Ice Hockey League seasons and last: Mikolaj Marek Dowgielewicz -[2018-02-13T08:35:15.360] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T08:35:15.449] [INFO] cheese - inserting 1000 documents. first: Fast Romantics and last: Category:Princesses of Carignan -[2018-02-13T08:35:15.461] [INFO] cheese - inserting 1000 documents. first: Atmospheric oscillation and last: Argeos -[2018-02-13T08:35:15.522] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:15.535] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:35:15.580] [INFO] cheese - inserting 1000 documents. first: Esteé Lauder and last: China (Vangelis album) -[2018-02-13T08:35:15.621] [INFO] cheese - inserting 1000 documents. first: Captain Cook's Pine and last: File:HappyEndingsPoster.jpg -[2018-02-13T08:35:15.670] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:35:15.685] [INFO] cheese - inserting 1000 documents. first: Template:1933-34 Big Ten Conference men's basketball standings and last: Template:1963-64 NHL season by team -[2018-02-13T08:35:15.690] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:35:15.846] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:15.862] [INFO] cheese - inserting 1000 documents. first: Abgasht-e Madui and last: Category:Lists of women Twenty20 International cricketers -[2018-02-13T08:35:15.934] [INFO] cheese - inserting 1000 documents. first: Pangi Territory and last: 2012 Copa Inca -[2018-02-13T08:35:15.933] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:35:16.001] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in Ecuador and last: File:RogerWithFriends.jpg -[2018-02-13T08:35:16.042] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:35:16.117] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:35:16.259] [INFO] cheese - inserting 1000 documents. first: The Price of Fame:Tv Series and last: Valverde (province) -[2018-02-13T08:35:16.314] [INFO] cheese - inserting 1000 documents. first: Romano Galvani and last: The Lenox Hotel -[2018-02-13T08:35:16.339] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:35:16.343] [INFO] cheese - inserting 1000 documents. first: Jimmy Whitehouse and last: Woking Muslim Mission -[2018-02-13T08:35:16.363] [INFO] cheese - inserting 1000 documents. first: Frank Freda and last: Template:1962-63 in Spanish football -[2018-02-13T08:35:16.388] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:35:16.423] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:35:16.468] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:35:16.488] [INFO] cheese - inserting 1000 documents. first: Yanaimalai hills and last: 1925 Iowa Hawkeyes football team -[2018-02-13T08:35:16.582] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:35:16.663] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Clan/doc and last: Same-sex civil unions in the united states -[2018-02-13T08:35:16.753] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:35:16.806] [INFO] cheese - inserting 1000 documents. first: Template:1964-69 Sports Illustrated Swimsuit and last: Malovic -[2018-02-13T08:35:16.807] [INFO] cheese - inserting 1000 documents. first: Pieter van der Hurk and last: Palmayra Atoll -[2018-02-13T08:35:16.843] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T08:35:16.874] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:35:16.960] [INFO] cheese - inserting 1000 documents. first: Ice cream headache and last: R. Pacheco -[2018-02-13T08:35:16.966] [INFO] cheese - inserting 1000 documents. first: Trusham and last: City and Borough of Sitka, Alaska -[2018-02-13T08:35:17.005] [INFO] cheese - inserting 1000 documents. first: Fano's lemma and last: Archdiocese of Potenza-Muro Lucano-Marsico Nuovo -[2018-02-13T08:35:17.016] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:35:17.044] [INFO] cheese - inserting 1000 documents. first: Climate change delusion and last: Clifford Constitution -[2018-02-13T08:35:17.087] [INFO] cheese - inserting 1000 documents. first: Badamak, Fars and last: File:The Movies original lineup.jpg -[2018-02-13T08:35:17.097] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:35:17.114] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:35:17.140] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:35:17.174] [INFO] cheese - inserting 1000 documents. first: List of AAA World Cruiserweight Champions and last: Provelosaurus -[2018-02-13T08:35:17.183] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:35:17.215] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:35:17.285] [INFO] cheese - inserting 1000 documents. first: File:Kinetic by Joel Vaughn.jpg and last: Template:2010-11 Division I independents standings (men)/doc -[2018-02-13T08:35:17.326] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:17.425] [INFO] cheese - inserting 1000 documents. first: Orwell (disambiguation) and last: Macintosh User Groups in the UK -[2018-02-13T08:35:17.488] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:35:17.512] [INFO] cheese - inserting 1000 documents. first: Samten Migdron and last: Pale Pinion -[2018-02-13T08:35:17.524] [INFO] cheese - inserting 1000 documents. first: Template:2010-11 CCHA standings (men) and last: 1114 AD -[2018-02-13T08:35:17.530] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Joplin Demize and last: Zofia Filip -[2018-02-13T08:35:17.542] [INFO] cheese - inserting 1000 documents. first: Philip Sargant Florence and last: Filthy Rich (TV series) -[2018-02-13T08:35:17.543] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T08:35:17.589] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:35:17.592] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:35:17.609] [INFO] cheese - inserting 1000 documents. first: John Thomas Seton and last: Housing Project (album) -[2018-02-13T08:35:17.611] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:35:17.694] [INFO] cheese - inserting 1000 documents. first: Euro Taillights and last: Portal:Food/Selected person/12 -[2018-02-13T08:35:17.712] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:17.772] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:35:17.845] [INFO] cheese - inserting 1000 documents. first: 1115 AD and last: Template:2011-12 NCAA Division I FBS football conferences -[2018-02-13T08:35:17.860] [INFO] cheese - inserting 1000 documents. first: Bush administration (2000) and last: Category:Satirical television programmes -[2018-02-13T08:35:17.877] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:35:18.064] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:35:18.247] [INFO] cheese - inserting 1000 documents. first: Template:2011-12 Mountain West Conference men's basketball standings and last: Template:2013-14 Big West men's basketball standings -[2018-02-13T08:35:18.268] [INFO] cheese - inserting 1000 documents. first: Darreh Chapi, Lorestan and last: File:AT&T logo.svg -[2018-02-13T08:35:18.273] [INFO] cheese - inserting 1000 documents. first: We are fed up and last: Saltarelli -[2018-02-13T08:35:18.273] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:35:18.289] [INFO] cheese - inserting 1000 documents. first: Notocrypta feisthamelii and last: Ruby Ross Wood -[2018-02-13T08:35:18.318] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Writing your first article and last: FELDA -[2018-02-13T08:35:18.321] [INFO] cheese - inserting 1000 documents. first: That Same Old Feeling and last: Beacom College -[2018-02-13T08:35:18.324] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:35:18.330] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:35:18.355] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:35:18.404] [INFO] cheese - inserting 1000 documents. first: Exeter Township School District and last: Brownstone musical -[2018-02-13T08:35:18.407] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:18.417] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:35:18.505] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:35:18.604] [INFO] cheese - inserting 1000 documents. first: Template:2013-14 FA WSL PFA Team of the Year and last: Template:2014-15 Premier League table/testcases -[2018-02-13T08:35:18.649] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T08:35:18.693] [INFO] cheese - inserting 1000 documents. first: Category:C-Class Nickelodeon articles of High-importance and last: BANGLADESH -[2018-02-13T08:35:18.726] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:35:18.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Feng Sushi and last: To India - My Native Land -[2018-02-13T08:35:18.797] [INFO] cheese - inserting 1000 documents. first: Right In The Night (Whigfield Song) and last: W Wells (Middlesex cricketer) -[2018-02-13T08:35:18.816] [INFO] cheese - inserting 1000 documents. first: U.G. Krishnamurti and last: The Witness (1969 French film) -[2018-02-13T08:35:18.843] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:35:18.886] [INFO] cheese - inserting 1000 documents. first: Umbilicus (disambiguation) and last: Risu Akizuki -[2018-02-13T08:35:18.871] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:35:18.924] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:35:18.970] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:35:18.989] [INFO] cheese - inserting 1000 documents. first: Specialist registrar and last: Nazdrat -[2018-02-13T08:35:19.020] [INFO] cheese - inserting 1000 documents. first: Closing ceremony at the olympic games and last: Index of philosophy of language articles -[2018-02-13T08:35:19.053] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:35:19.059] [INFO] cheese - inserting 1000 documents. first: Sleepwalker (Shtirski) and last: Template:2015-16 UEFA Champions League Group H table/doc -[2018-02-13T08:35:19.089] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:19.102] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:35:19.136] [INFO] cheese - inserting 1000 documents. first: IRAQ and last: Core Based Statistical Areas -[2018-02-13T08:35:19.173] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:35:19.231] [INFO] cheese - inserting 1000 documents. first: Inka Tampu, Huayopata and last: Haymaking (disambiguation) -[2018-02-13T08:35:19.352] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:35:19.440] [INFO] cheese - inserting 1000 documents. first: N69 and last: Archdiocese of Fianarantsoa -[2018-02-13T08:35:19.460] [INFO] cheese - inserting 1000 documents. first: Lewis Williams (disambiguation) and last: Template:Campaignbox Lithuanian Civil War of 1431-1435 -[2018-02-13T08:35:19.466] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Kurdistan articles and last: Portal:Nautical/Featured Knot/20 -[2018-02-13T08:35:19.484] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:35:19.522] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:35:19.553] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:35:19.601] [INFO] cheese - inserting 1000 documents. first: Couch Park and last: Air Rally -[2018-02-13T08:35:19.601] [INFO] cheese - inserting 1000 documents. first: Kenneth J. Spreitzer and last: Ecoteaux (Vaud) -[2018-02-13T08:35:19.646] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:35:19.657] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:19.669] [INFO] cheese - inserting 1000 documents. first: Virginia-class cruiser and last: Transdermal patch -[2018-02-13T08:35:19.699] [INFO] cheese - inserting 1000 documents. first: Geelkuriban and last: Category:1902 in China -[2018-02-13T08:35:19.735] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:35:19.768] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:35:19.825] [INFO] cheese - inserting 1000 documents. first: Deepavali (film) and last: Cheesy Bean & Rice Burrito -[2018-02-13T08:35:19.828] [INFO] cheese - inserting 1000 documents. first: Jiwan Luitel and last: File:TheMosquitoCoastNovel.jpg -[2018-02-13T08:35:19.854] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:35:19.873] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:35:19.889] [INFO] cheese - inserting 1000 documents. first: Template:Sbw-big and last: Henry Nicholas (disambiguation) -[2018-02-13T08:35:19.913] [INFO] cheese - inserting 1000 documents. first: Pregnin and last: Shermann Audio -[2018-02-13T08:35:19.932] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:19.963] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T08:35:20.037] [INFO] cheese - inserting 1000 documents. first: Joel Henry Hildebrand and last: Kin Platt -[2018-02-13T08:35:20.072] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T08:35:20.186] [INFO] cheese - inserting 1000 documents. first: File:Samson head on.jpg and last: Shield-Wizard Comics -[2018-02-13T08:35:20.187] [INFO] cheese - inserting 1000 documents. first: Ipan, Guam and last: Mountbatten, Devon -[2018-02-13T08:35:20.225] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:35:20.242] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:35:20.291] [INFO] cheese - inserting 1000 documents. first: Eddie Roebuck and last: Baragharia -[2018-02-13T08:35:20.305] [INFO] cheese - inserting 1000 documents. first: Sweet Seasons and last: Shayātīn -[2018-02-13T08:35:20.317] [INFO] cheese - inserting 1000 documents. first: Cheesy Roll Up and last: Category:Finnish major generals -[2018-02-13T08:35:20.320] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:35:20.357] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T08:35:20.366] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:35:20.423] [INFO] cheese - inserting 1000 documents. first: USS Roosevelt (DDG-80) and last: Repeat --- The Best of Jethro Tull --- Vol II -[2018-02-13T08:35:20.439] [INFO] cheese - inserting 1000 documents. first: Andy Russo and last: Unleashed (Toby Keith album) -[2018-02-13T08:35:20.543] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:35:20.591] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:20.696] [INFO] cheese - inserting 1000 documents. first: John Tredinnick Crocker and last: File:Charles W Chesnutt Library.jpg -[2018-02-13T08:35:20.705] [INFO] cheese - inserting 1000 documents. first: Category:Lists of prisons in China and last: Fighting Fools -[2018-02-13T08:35:20.764] [INFO] cheese - inserting 1000 documents. first: Template:Sfrac/sandbox and last: Unsellables (UK TV series) -[2018-02-13T08:35:20.812] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:35:20.811] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:35:20.866] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:35:20.916] [INFO] cheese - inserting 1000 documents. first: Vladimir Lurasov and last: Category:Visitor attractions in Tartu County -[2018-02-13T08:35:20.947] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:35:21.010] [INFO] cheese - inserting 1000 documents. first: Obsza and last: The Who Collection, Volume Two -[2018-02-13T08:35:21.020] [INFO] cheese - inserting 1000 documents. first: State University of New York at Brockport and last: Category:Fal catchment -[2018-02-13T08:35:21.080] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:35:21.091] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:35:21.253] [INFO] cheese - inserting 1000 documents. first: File:PointersOperaHouse.jpg and last: Etrépilly -[2018-02-13T08:35:21.328] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:35:21.375] [INFO] cheese - inserting 1000 documents. first: Category:Defunct townships in Adams County, North Dakota and last: Bruno Bianchi (cartoonist) -[2018-02-13T08:35:21.378] [INFO] cheese - inserting 1000 documents. first: Sentence symbol and last: Category:Christian clergy in Canada -[2018-02-13T08:35:21.394] [INFO] cheese - inserting 1000 documents. first: Joseph (Bible) and last: Dicen que Soy un Mujeriego -[2018-02-13T08:35:21.423] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:35:21.427] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:21.468] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:35:21.484] [INFO] cheese - inserting 1000 documents. first: The Salamander (film) and last: Template:Waitemata by-election, 1941 -[2018-02-13T08:35:21.523] [INFO] cheese - inserting 1000 documents. first: 28 June 2004 and last: File:UD 5 Lily.jpg -[2018-02-13T08:35:21.547] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:35:21.581] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Don't Tell Me Promo Tour and last: Chartier's Creek, Pennsylvania -[2018-02-13T08:35:21.618] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:35:21.627] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:35:21.661] [INFO] cheese - inserting 1000 documents. first: Liar's Poker and last: Charles M. Price -[2018-02-13T08:35:21.759] [INFO] cheese - inserting 1000 documents. first: Stanisław Antoni Poniatowski and last: CD64 -[2018-02-13T08:35:21.769] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T08:35:21.860] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:35:21.917] [INFO] cheese - inserting 1000 documents. first: Felis onca and last: American Guns -[2018-02-13T08:35:21.996] [INFO] cheese - inserting 1000 documents. first: Les Créoles and last: 2011-12 UEFA Champions League -[2018-02-13T08:35:21.998] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2016 April 18 and last: Template:NandiAwardBestActor 2000-2019 -[2018-02-13T08:35:22.018] [INFO] cheese - inserting 1000 documents. first: The Bastards and the Knives and last: Eslamabad, Neyriz -[2018-02-13T08:35:22.055] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:22.055] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:22.067] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:35:22.109] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:35:22.234] [INFO] cheese - inserting 1000 documents. first: Berdkunk’ and last: Francis Maneoru -[2018-02-13T08:35:22.275] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:35:22.277] [INFO] cheese - inserting 1000 documents. first: Template:IRT Broadway - Seventh Avenue Line and last: Template:Unicode chart CJK Unified Ideographs (8D00-9FFF) -[2018-02-13T08:35:22.306] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T08:35:22.337] [INFO] cheese - inserting 1000 documents. first: Category:Animal Liberation Front and last: New Brighton A.F.C., New Zealand -[2018-02-13T08:35:22.405] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:35:22.418] [INFO] cheese - inserting 1000 documents. first: Sieves and last: David Pierre Eto'o Fils -[2018-02-13T08:35:22.485] [INFO] cheese - inserting 1000 documents. first: File:Cirsium muticum.jpg and last: Crocidura negligens -[2018-02-13T08:35:22.492] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:22.513] [INFO] cheese - inserting 1000 documents. first: Westminster (district board) and last: Anthony Boam -[2018-02-13T08:35:22.560] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T08:35:22.569] [INFO] cheese - inserting 1000 documents. first: Charles Melvin Price and last: USAir Arena -[2018-02-13T08:35:22.577] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:35:22.591] [INFO] cheese - inserting 1000 documents. first: Badamuyi and last: Sharman's rock-wallaby -[2018-02-13T08:35:22.625] [INFO] cheese - inserting 1000 documents. first: Template:Skøyen-Filipstadlinjen and last: Fathima Reddy -[2018-02-13T08:35:22.661] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:35:22.662] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:35:22.717] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:35:22.741] [INFO] cheese - inserting 1000 documents. first: Monterotondo (RM) and last: Gonatista -[2018-02-13T08:35:22.792] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:22.991] [INFO] cheese - inserting 1000 documents. first: USS Repose and last: Guy Hemmings -[2018-02-13T08:35:23.013] [INFO] cheese - inserting 1000 documents. first: ZENworks Desktop Management and last: Musedit -[2018-02-13T08:35:23.019] [INFO] cheese - inserting 1000 documents. first: Stole Beer from a Golfer and last: List of religious leaders in 1914 -[2018-02-13T08:35:23.038] [INFO] cheese - inserting 1000 documents. first: Brookfield Renewable Power and last: Rio Grande (company) -[2018-02-13T08:35:23.076] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:35:23.083] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:23.133] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:35:23.151] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:23.157] [INFO] cheese - inserting 1000 documents. first: Template:Wisconsin-Whitewater Warhawks football coach navbox and last: Clyde Rocks -[2018-02-13T08:35:23.193] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/collectedpapers.com.ua and last: Student Apex Body HNB Garhwal Central University -[2018-02-13T08:35:23.260] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:35:23.300] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:35:23.472] [INFO] cheese - inserting 1000 documents. first: Samadarvish and last: Carillon (Elgar) -[2018-02-13T08:35:23.537] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:23.588] [INFO] cheese - inserting 1000 documents. first: Slovak People's Party and last: Gaunts ghosts -[2018-02-13T08:35:23.652] [INFO] cheese - inserting 1000 documents. first: Category:Parks in Lambton County and last: Guam Regional Transit Authority -[2018-02-13T08:35:23.674] [INFO] cheese - inserting 1000 documents. first: John mcain and last: Wikipedia:WikiProject Ukrainian subdivisions -[2018-02-13T08:35:23.707] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:35:23.723] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:35:23.742] [INFO] cheese - inserting 1000 documents. first: Shungu Wembadio Pene Kikumba and last: Frank Torley -[2018-02-13T08:35:23.755] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:23.789] [INFO] cheese - inserting 1000 documents. first: George Snow Hill and last: Mazra'eh-ye Pahn -[2018-02-13T08:35:23.807] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:23.833] [INFO] cheese - inserting 1000 documents. first: B. A. Botkin and last: Bolivian sol -[2018-02-13T08:35:23.859] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:35:23.898] [INFO] cheese - inserting 1000 documents. first: Wilson-Bonifils Airield and last: Waitpinga -[2018-02-13T08:35:23.923] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:35:23.989] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:35:24.077] [INFO] cheese - inserting 1000 documents. first: Vladimir Astapovsky and last: Sorin Bușu -[2018-02-13T08:35:24.137] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:35:24.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 December 19 and last: Simon Nielsen (disambiguation) -[2018-02-13T08:35:24.228] [INFO] cheese - inserting 1000 documents. first: Template:MICEX and last: Working envelope -[2018-02-13T08:35:24.233] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:24.274] [INFO] cheese - inserting 1000 documents. first: Category:Television plays and last: Iran - Georgia relations -[2018-02-13T08:35:24.282] [INFO] cheese - inserting 1000 documents. first: Jake Edward Ryan and last: Category:1988 disestablishments in Louisiana -[2018-02-13T08:35:24.295] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:35:24.314] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:35:24.355] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:35:24.420] [INFO] cheese - inserting 1000 documents. first: Cornelius O. Jansen and last: T. Gehrels -[2018-02-13T08:35:24.467] [INFO] cheese - inserting 1000 documents. first: Gedalia Alon and last: Jaap van der Poll -[2018-02-13T08:35:24.503] [INFO] cheese - inserting 1000 documents. first: VRR (disambiguation) and last: Wikipedia:Articles for deletion/Wizard's Convention -[2018-02-13T08:35:24.511] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:35:24.535] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:24.571] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:35:24.639] [INFO] cheese - inserting 1000 documents. first: Thomas Bryan (courtier) and last: Wikipedia:Articles for deletion/Christopher Twitchen -[2018-02-13T08:35:24.687] [INFO] cheese - inserting 1000 documents. first: Traffic classification and last: Lee Cox (disambiguation) -[2018-02-13T08:35:24.690] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:35:24.699] [INFO] cheese - inserting 1000 documents. first: Eugène de Planard and last: Category:1900-01 in Italian football -[2018-02-13T08:35:24.757] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:35:24.795] [INFO] cheese - inserting 1000 documents. first: File:Makemepure.JPG and last: File:Itk GNF1H.png -[2018-02-13T08:35:24.876] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:24.968] [INFO] cheese - inserting 1000 documents. first: Category:Rabbinic Judaism and last: Henry Edmund Donnelly -[2018-02-13T08:35:24.983] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:35:25.057] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:35:25.167] [INFO] cheese - inserting 1000 documents. first: Black and Gold (Will Coleman song) and last: Attleboro station -[2018-02-13T08:35:25.183] [INFO] cheese - inserting 1000 documents. first: Annetta and last: Bartlett, TN -[2018-02-13T08:35:25.224] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:35:25.225] [INFO] cheese - inserting 1000 documents. first: Category:2009 Big East Conference football season and last: Gad loch -[2018-02-13T08:35:25.252] [INFO] cheese - inserting 1000 documents. first: Brick Presbyterian Church Complex and last: WSVL-LP -[2018-02-13T08:35:25.258] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:35:25.309] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:35:25.361] [INFO] cheese - inserting 1000 documents. first: San Pedro Southwestern Railroad and last: Wikipedia:Featured picture candidates/Musa x paradisiaca flower -[2018-02-13T08:35:25.365] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:35:25.400] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Prince Edward Island and last: Roger Jones (mathematician) -[2018-02-13T08:35:25.430] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:35:25.521] [INFO] cheese - inserting 1000 documents. first: Baithu Rahma and last: Haroon Moghul -[2018-02-13T08:35:25.531] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:35:25.580] [INFO] cheese - inserting 1000 documents. first: Category:1907-08 in Italian football and last: Category:1936-37 in French football -[2018-02-13T08:35:25.617] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:35:25.630] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:35:25.690] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Syracuse to Washington, DC flights and last: Bertsch-Oceanview, CA -[2018-02-13T08:35:25.690] [INFO] cheese - inserting 1000 documents. first: Fernando de Toro and last: Wikipedia:Articles for deletion/Itchycoo Park -[2018-02-13T08:35:25.742] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:25.765] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:35:25.889] [INFO] cheese - inserting 1000 documents. first: Heel strike (gait) and last: Duchess consort of Anjou -[2018-02-13T08:35:26.000] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:26.026] [INFO] cheese - inserting 1000 documents. first: The Knower (song) and last: Category:1940-41 in German football leagues -[2018-02-13T08:35:26.040] [INFO] cheese - inserting 1000 documents. first: Jesús (wrestler) and last: Sterling SAR 87 -[2018-02-13T08:35:26.047] [INFO] cheese - inserting 1000 documents. first: Martín Travieso Nieva and last: Shimon Ratner -[2018-02-13T08:35:26.083] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:35:26.119] [INFO] cheese - inserting 1000 documents. first: Wattenmeer and last: Boyd County, KY -[2018-02-13T08:35:26.136] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:35:26.166] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T08:35:26.207] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:35:26.220] [INFO] cheese - inserting 1000 documents. first: Category:Books by Fredric Jameson and last: The Strange Awakening -[2018-02-13T08:35:26.267] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:35:26.323] [INFO] cheese - inserting 1000 documents. first: Jack White VC and last: J. I. Wedgwood -[2018-02-13T08:35:26.399] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:35:26.547] [INFO] cheese - inserting 1000 documents. first: Abitibi–Témiscamingue and last: List of highways numbered 452 -[2018-02-13T08:35:26.550] [INFO] cheese - inserting 1000 documents. first: Category:1941-42 in European ice hockey and last: Category:1953-54 in Italian football leagues -[2018-02-13T08:35:26.557] [INFO] cheese - inserting 1000 documents. first: Créoles and last: The George C. Marshall Space Flight Center -[2018-02-13T08:35:26.618] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:35:26.625] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:35:26.640] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:35:26.667] [INFO] cheese - inserting 1000 documents. first: Dinosaur Bones and last: Robert Leroux -[2018-02-13T08:35:26.686] [INFO] cheese - inserting 1000 documents. first: Godspeed on the Devil's Thunder and last: Burkes Tavern, Virginia -[2018-02-13T08:35:26.723] [INFO] cheese - inserting 1000 documents. first: Boyd County, NE and last: Wikipedia:Articles for deletion/List of every mayor in the World -[2018-02-13T08:35:26.766] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:35:26.805] [INFO] cheese - inserting 1000 documents. first: Jane Hedges Todd and last: Lahure (disambiguation) -[2018-02-13T08:35:26.821] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:35:26.849] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:35:26.949] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:35:27.016] [INFO] cheese - inserting 1000 documents. first: Category:1956-57 in American soccer and last: Stupinsky Municipal District -[2018-02-13T08:35:27.077] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:35:27.194] [INFO] cheese - inserting 1000 documents. first: The story of a mother and last: Pine moth -[2018-02-13T08:35:27.255] [INFO] cheese - inserting 1000 documents. first: Template:Laughlin-Needles-Lake Havasu City Radio and last: Acacia turgida -[2018-02-13T08:35:27.264] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:35:27.284] [INFO] cheese - inserting 1000 documents. first: Antitype armena and last: File:AngieBolen.jpg -[2018-02-13T08:35:27.355] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:35:27.380] [INFO] cheese - inserting 1000 documents. first: Concerti grossi, Op.6 (Handel) and last: Oqulak -[2018-02-13T08:35:27.399] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:35:27.444] [INFO] cheese - inserting 1000 documents. first: Category:1959-60 in Spanish basketball and last: Category:1972-73 in Asian association football leagues -[2018-02-13T08:35:27.457] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:35:27.470] [INFO] cheese - inserting 1000 documents. first: Category:Busan Metro lines and last: File:Mieleton elokuu.jpg -[2018-02-13T08:35:27.498] [INFO] cheese - inserting 1000 documents. first: Abdul 2 Ghani and last: Category:Top-importance emergency medicine and EMS articles -[2018-02-13T08:35:27.507] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:35:27.556] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:35:27.594] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:35:27.634] [INFO] cheese - inserting 1000 documents. first: AS-105 (spacecraft) and last: Brooksville, MS -[2018-02-13T08:35:27.726] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:35:27.767] [INFO] cheese - inserting 1000 documents. first: Category:1972-73 in Spanish football leagues and last: Category:1979-80 in Welsh football -[2018-02-13T08:35:27.788] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T08:35:27.822] [INFO] cheese - inserting 1000 documents. first: Tapps-Gervis-Meyrick baronets and last: BHSF -[2018-02-13T08:35:27.874] [INFO] cheese - inserting 1000 documents. first: El Dorado and Western Railway and last: Canine gait -[2018-02-13T08:35:27.926] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:35:27.932] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:35:27.969] [INFO] cheese - inserting 1000 documents. first: Gillmeria tetradactyla and last: Banksia rufa ssp. tutanningensis -[2018-02-13T08:35:27.972] [INFO] cheese - inserting 1000 documents. first: Owl Molla and last: Technogypsie -[2018-02-13T08:35:28.083] [INFO] cheese - inserting 1000 documents. first: Bemidji State Beavers softball and last: Wikipedia:WikiProject Spam/LinkReports/eautoship.com -[2018-02-13T08:35:28.084] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:28.086] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:35:28.106] [INFO] cheese - inserting 1000 documents. first: Kiga Station and last: Super Sapiens -[2018-02-13T08:35:28.164] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:28.170] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:35:28.233] [INFO] cheese - inserting 1000 documents. first: Brooksville, OK and last: Lyon Playfair -[2018-02-13T08:35:28.319] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:35:28.325] [INFO] cheese - inserting 1000 documents. first: Category:1978-79 Scottish Football League and last: Template:1966 Japan Soccer League Team of the Year -[2018-02-13T08:35:28.419] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:35:28.472] [INFO] cheese - inserting 1000 documents. first: Debora Kinski and last: Interfaith officiants -[2018-02-13T08:35:28.474] [INFO] cheese - inserting 1000 documents. first: Amtorg Trading Association and last: Cedar Creek Grist Mill -[2018-02-13T08:35:28.526] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:35:28.531] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:35:28.566] [INFO] cheese - inserting 1000 documents. first: Category:Las Vegas Locomotives and last: Wikipedia:WikiProject Spam/LinkReports/sante-club.com -[2018-02-13T08:35:28.569] [INFO] cheese - inserting 1000 documents. first: Speak My Mind and last: John Sidney “Sid” Dinsdale -[2018-02-13T08:35:28.630] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:35:28.628] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:35:28.670] [INFO] cheese - inserting 1000 documents. first: File:Bgd.png and last: Baloncesto Galicia Ferrol -[2018-02-13T08:35:28.700] [INFO] cheese - inserting 1000 documents. first: Mary Sue Terry and last: Matákoan -[2018-02-13T08:35:28.739] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:35:28.831] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:35:28.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/medicalnewstoday.com and last: River Maine (Kerry) -[2018-02-13T08:35:28.879] [INFO] cheese - inserting 1000 documents. first: Kuusjoki and last: Carlinville, IL -[2018-02-13T08:35:28.924] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:35:28.961] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:28.973] [INFO] cheese - inserting 1000 documents. first: Peter Struwwel and last: Wikipedia:Requests for checkuser/Case/Unicorn144 -[2018-02-13T08:35:29.050] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:35:29.095] [INFO] cheese - inserting 1000 documents. first: I Never Knew (What That Song Meant Before) (song) and last: Category:Park Ave. members -[2018-02-13T08:35:29.139] [INFO] cheese - inserting 1000 documents. first: Juan Manuel Sánchez, Duke of Almodóvar del Río and last: Integrated computer-aided manufacturing -[2018-02-13T08:35:29.191] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:35:29.251] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:29.286] [INFO] cheese - inserting 1000 documents. first: Bahara, India and last: Turoctocog -[2018-02-13T08:35:29.371] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:35:29.397] [INFO] cheese - inserting 1000 documents. first: Conventional truck and last: Mărgineni, Bacău -[2018-02-13T08:35:29.446] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:35:29.473] [INFO] cheese - inserting 1000 documents. first: Carlisle, AR and last: Cherokee, IA -[2018-02-13T08:35:29.506] [INFO] cheese - inserting 1000 documents. first: Infraspecific and last: Doneva -[2018-02-13T08:35:29.524] [INFO] cheese - inserting 1000 documents. first: Matakoan and last: Heidi Zeigler -[2018-02-13T08:35:29.600] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:35:29.620] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:29.643] [INFO] cheese - inserting 1000 documents. first: Saijanjoki and last: NightOwl Convenience Stores -[2018-02-13T08:35:29.654] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:35:29.741] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:35:29.756] [INFO] cheese - inserting 1000 documents. first: File:1991 NHL Draft.png and last: 1854 AHS -[2018-02-13T08:35:29.879] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:35:29.920] [INFO] cheese - inserting 1000 documents. first: M G George Muthoot and last: The Hub (Programme) -[2018-02-13T08:35:29.965] [INFO] cheese - inserting 1000 documents. first: Template:Nothanks/doc and last: Wikipedia:Articles for deletion/Owain Phyfe -[2018-02-13T08:35:30.074] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:35:30.119] [INFO] cheese - inserting 1000 documents. first: Cherokee, KS and last: Clinton County, IL -[2018-02-13T08:35:30.119] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:35:30.166] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:35:30.196] [INFO] cheese - inserting 1000 documents. first: Rai Sport and last: Genevieve Dieudonné -[2018-02-13T08:35:30.265] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:35:30.277] [INFO] cheese - inserting 1000 documents. first: Template:Tinashe singles and last: Hunt Club (disambiguation) -[2018-02-13T08:35:30.351] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:30.446] [INFO] cheese - inserting 1000 documents. first: Harbor–UCLA Medical Center and last: John George "Jack" Phillips -[2018-02-13T08:35:30.477] [INFO] cheese - inserting 1000 documents. first: Clinton County, IN and last: Couderay (village), Sawyer County, WI -[2018-02-13T08:35:30.507] [INFO] cheese - inserting 1000 documents. first: Zeyn'ali and last: File:Lil Wayne - Mirror (single cover).jpg -[2018-02-13T08:35:30.508] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:35:30.517] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:35:30.528] [INFO] cheese - inserting 1000 documents. first: Khankhamis-e Olya and last: 41st Annual Primetime Emmy Awards -[2018-02-13T08:35:30.596] [INFO] cheese - inserting 1000 documents. first: Joseph-Nicolas-Pancrace Royer and last: Circuit training -[2018-02-13T08:35:30.598] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:35:30.641] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:35:30.726] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:35:30.820] [INFO] cheese - inserting 1000 documents. first: Soviet Top League 1957 and last: Średni Łan -[2018-02-13T08:35:30.887] [INFO] cheese - inserting 1000 documents. first: Joe Susan and last: Euxoa epicremna -[2018-02-13T08:35:30.899] [INFO] cheese - inserting 1000 documents. first: Category:Churches completed in 1445 and last: Victor Sosnora -[2018-02-13T08:35:30.901] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:30.967] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:35:31.014] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:35:31.047] [INFO] cheese - inserting 1000 documents. first: 1989 Primetime Emmy Awards and last: Old Myakka, FL -[2018-02-13T08:35:31.113] [INFO] cheese - inserting 1000 documents. first: Couderay (village), WI and last: Lakewood Freeway -[2018-02-13T08:35:31.118] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:35:31.137] [INFO] cheese - inserting 1000 documents. first: Template:1960 College Football Consensus All-Americans and last: 1967–68 Tranmere Rovers F.C. season -[2018-02-13T08:35:31.147] [INFO] cheese - inserting 1000 documents. first: File:Matt Will Don't Let It Go To Waste Single.JPG and last: Ust-Ianskii Ulus -[2018-02-13T08:35:31.205] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:35:31.225] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:31.246] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:35:31.364] [INFO] cheese - inserting 1000 documents. first: Gostinnyi Dvor and last: American girl dolls -[2018-02-13T08:35:31.440] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:35:31.441] [INFO] cheese - inserting 1000 documents. first: Old Town, FL and last: Howey-In-The-Hills, FL -[2018-02-13T08:35:31.448] [INFO] cheese - inserting 1000 documents. first: Tomaszówka and last: Daijiworld Media -[2018-02-13T08:35:31.483] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:35:31.510] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:31.575] [INFO] cheese - inserting 1000 documents. first: Category:Australian actresses who committed suicide and last: Róger Guedes -[2018-02-13T08:35:31.615] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:35:31.667] [INFO] cheese - inserting 1000 documents. first: Cumberland County, KY and last: 1960–61 United States network television schedule -[2018-02-13T08:35:31.671] [INFO] cheese - inserting 1000 documents. first: LA Tennis Open USTA Men's Challenger (I) and last: Template:POTD/2010-03-05 -[2018-02-13T08:35:31.699] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T08:35:31.726] [INFO] cheese - inserting 1000 documents. first: Category:Flathead National Forest and last: Wartaqooqan -[2018-02-13T08:35:31.725] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:35:31.771] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:31.837] [INFO] cheese - inserting 1000 documents. first: Frederick Rossini and last: Dynamic-Tension -[2018-02-13T08:35:31.862] [INFO] cheese - inserting 1000 documents. first: Howey in the Hills, FL and last: Tarleton State Texans men's basketball -[2018-02-13T08:35:31.927] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:35:31.942] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:32.032] [INFO] cheese - inserting 1000 documents. first: Ancient map and last: Meriwan -[2018-02-13T08:35:32.040] [INFO] cheese - inserting 1000 documents. first: Delaware County, IN and last: Paul Rebhan -[2018-02-13T08:35:32.060] [INFO] cheese - inserting 1000 documents. first: Yu Station and last: Acetonedicarboxylic acid -[2018-02-13T08:35:32.065] [INFO] cheese - inserting 1000 documents. first: Radyo5 NewsFM Davao and last: Category:Road accident deaths in Albania -[2018-02-13T08:35:32.078] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:35:32.116] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:35:32.111] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:35:32.133] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:35:32.242] [INFO] cheese - inserting 1000 documents. first: Web management team and last: Lawry's Restaurants Inc. -[2018-02-13T08:35:32.287] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:35:32.298] [INFO] cheese - inserting 1000 documents. first: Tarleton State TexAnns women's basketball and last: Aalto, Marja-Sisko -[2018-02-13T08:35:32.308] [INFO] cheese - inserting 1000 documents. first: Asadabad Sanjabi-ye Bala and last: Category:Spanish military personnel of the Spanish Civil War (National faction) -[2018-02-13T08:35:32.337] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gregory Arlt and last: Kingdom Hearts X -[2018-02-13T08:35:32.364] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:35:32.390] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:32.421] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:35:32.477] [INFO] cheese - inserting 1000 documents. first: Dunwoody, GA and last: Elderton, PA -[2018-02-13T08:35:32.518] [INFO] cheese - inserting 1000 documents. first: Category:Polish actors who committed suicide and last: File:Senate of Poland Composition.svg -[2018-02-13T08:35:32.554] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:35:32.579] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:35:32.659] [INFO] cheese - inserting 1000 documents. first: Don't Go To Sleep! and last: Aidan Zammit -[2018-02-13T08:35:32.729] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:35:32.765] [INFO] cheese - inserting 1000 documents. first: Rin Kono and last: Steve Gainey -[2018-02-13T08:35:32.827] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:35:32.890] [INFO] cheese - inserting 1000 documents. first: Over-investment and last: Kingston Hawthorn Cricket Club -[2018-02-13T08:35:32.892] [INFO] cheese - inserting 1000 documents. first: Due marines e un generale and last: Piazza Armenia -[2018-02-13T08:35:32.895] [INFO] cheese - inserting 1000 documents. first: Aalto, Pauliina and last: SR 833 (FL) -[2018-02-13T08:35:32.908] [INFO] cheese - inserting 1000 documents. first: Eldon, IA and last: Natural deduction logic -[2018-02-13T08:35:32.935] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:35:32.938] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:35:32.948] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:35:32.955] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T08:35:33.013] [INFO] cheese - inserting 1000 documents. first: William Laws Calley Jr. and last: Penkov -[2018-02-13T08:35:33.064] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T08:35:33.078] [INFO] cheese - inserting 1000 documents. first: Planned cesarean section and last: 1907 Australasian Championships -[2018-02-13T08:35:33.110] [INFO] cheese - inserting 1000 documents. first: Richard Curran and last: DSC-H3 -[2018-02-13T08:35:33.146] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:35:33.156] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T08:35:33.297] [INFO] cheese - inserting 1000 documents. first: File:Lockheed-logo Winnie-Mae.png and last: Wikipedia:Articles for deletion/Hurst v. Newman -[2018-02-13T08:35:33.314] [INFO] cheese - inserting 1000 documents. first: SR 840 (FL) and last: Wikipedia:Sockpuppet investigations/50.121.48.234 -[2018-02-13T08:35:33.318] [INFO] cheese - inserting 1000 documents. first: Template:Ukrainian Women's Volleyball Super League and last: Erkna Lighthouse -[2018-02-13T08:35:33.321] [INFO] cheese - inserting 1000 documents. first: Balfour House and last: Chaa-Kholskiy -[2018-02-13T08:35:33.344] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:33.352] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:35:33.361] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:35:33.370] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:35:33.422] [INFO] cheese - inserting 1000 documents. first: Mohawk Airlines and last: Yushan (mountain) -[2018-02-13T08:35:33.470] [INFO] cheese - inserting 1000 documents. first: Penkova and last: Category:Bicol Region geography stubs -[2018-02-13T08:35:33.493] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:35:33.536] [INFO] cheese - inserting 1000 documents. first: Template:Chembox HenryConstant and last: Chimalpahin Quauhtlehuanitzin -[2018-02-13T08:35:33.563] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:35:33.645] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:35:33.662] [INFO] cheese - inserting 1000 documents. first: File:Tonkin Zouave officer.png and last: File:Dr. Jekyll and Sister Hyde.jpg -[2018-02-13T08:35:33.714] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:35:33.791] [INFO] cheese - inserting 1000 documents. first: R. ehrenbergii and last: 100,000 Homes Campaign -[2018-02-13T08:35:33.935] [INFO] cheese - inserting 1000 documents. first: Stephen Askin and last: Category:1593 crimes -[2018-02-13T08:35:33.951] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:35:33.992] [INFO] cheese - inserting 1000 documents. first: File:Image page sandbox.png and last: Nickelodean -[2018-02-13T08:35:34.094] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:35:34.109] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:35:34.140] [INFO] cheese - inserting 1000 documents. first: Traveler's Aid Association and last: 1965–66 West Ham United F.C. season -[2018-02-13T08:35:34.198] [INFO] cheese - inserting 1000 documents. first: Simon François Daumont de Saint-Lusson and last: Gwladys Yvonne McKeon -[2018-02-13T08:35:34.216] [INFO] cheese - inserting 1000 documents. first: Mathmetics and last: Dextrorotation -[2018-02-13T08:35:34.250] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:35:34.278] [INFO] cheese - inserting 1000 documents. first: Aiming station and last: Principal series representation -[2018-02-13T08:35:34.306] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:35:34.302] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:35:34.329] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:35:34.431] [INFO] cheese - inserting 1000 documents. first: Miyagi Gakuin Women's College and last: Hidden Camera -[2018-02-13T08:35:34.475] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:34.495] [INFO] cheese - inserting 1000 documents. first: Estação arqueológica do Cabeço do Vouga and last: Wikipedia:Wikipedia Signpost/2014-02-12/Technology report -[2018-02-13T08:35:34.563] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:35:34.653] [INFO] cheese - inserting 1000 documents. first: File:Tecmo Super NBA Basketball.jpg and last: Category:Government-owned companies of Singapore -[2018-02-13T08:35:34.698] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:35:34.707] [INFO] cheese - inserting 1000 documents. first: Kieler Schloss and last: John Bellasis, 1st Baron Bellasis -[2018-02-13T08:35:34.761] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:34.793] [INFO] cheese - inserting 1000 documents. first: James Turner, 1st Baron Netherthorpe and last: File:Esc-logo-klein.jpg -[2018-02-13T08:35:34.830] [INFO] cheese - inserting 1000 documents. first: John Dring and last: Arthur Lytlleton -[2018-02-13T08:35:34.847] [INFO] cheese - inserting 1000 documents. first: BitTorrent Party and last: National Association of Boat Owners -[2018-02-13T08:35:34.851] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:34.882] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:35:34.890] [INFO] cheese - inserting 1000 documents. first: Broadcast Advertising Clearance Centre and last: Franklin County, TX -[2018-02-13T08:35:34.924] [INFO] cheese - inserting 1000 documents. first: Bathysquillidae and last: Șuștiu -[2018-02-13T08:35:34.923] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:35:34.956] [INFO] cheese - inserting 1000 documents. first: Tetritsq'aro and last: Honors of Wales -[2018-02-13T08:35:34.974] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:35:34.977] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:35:35.044] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:35.056] [INFO] cheese - inserting 1000 documents. first: Kum (mountain) and last: Working (disambiguation) -[2018-02-13T08:35:35.091] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T08:35:35.151] [INFO] cheese - inserting 1000 documents. first: Colour Fred and last: Portal:University of Oxford/Selected article/15 -[2018-02-13T08:35:35.207] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:35:35.273] [INFO] cheese - inserting 1000 documents. first: Edgar Kendall Taylor and last: Balurmachchi -[2018-02-13T08:35:35.274] [INFO] cheese - inserting 1000 documents. first: Four Hours to Kill and last: Galidzor -[2018-02-13T08:35:35.308] [INFO] cheese - inserting 1000 documents. first: File:Yaroslav Golovanov.jpg and last: File:Love-triffids.jpg -[2018-02-13T08:35:35.314] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T08:35:35.324] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:35:35.339] [INFO] cheese - inserting 1000 documents. first: Skid Row (disambiguation) and last: SN-42 -[2018-02-13T08:35:35.364] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:35:35.365] [INFO] cheese - inserting 1000 documents. first: J. L. Boerdam and last: Tommy Lee (American football) -[2018-02-13T08:35:35.394] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:35:35.436] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:35:35.469] [INFO] cheese - inserting 1000 documents. first: Abruzzi, Luigi Amedeo Giuseppe Maria Ferdinando Francesco, Duke of the and last: Wikipedia:Votes for deletion/Freetown Elementary School -[2018-02-13T08:35:35.567] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:35:35.616] [INFO] cheese - inserting 1000 documents. first: Yonit Levi and last: W269CJ -[2018-02-13T08:35:35.618] [INFO] cheese - inserting 1000 documents. first: Baka to Test to Shōkanjū: Matsuri and last: Michael von Grünau -[2018-02-13T08:35:35.662] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:35:35.674] [INFO] cheese - inserting 1000 documents. first: Category:Fb team templates Mexico and last: Wikipedia:Articles for deletion/Andino Clarinets -[2018-02-13T08:35:35.735] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:35:35.755] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:35:35.806] [INFO] cheese - inserting 1000 documents. first: William F. O'Hare and last: Template:Colorado-transport-stub -[2018-02-13T08:35:35.893] [INFO] cheese - inserting 1000 documents. first: Tony Simmons (American football) and last: Danskøya -[2018-02-13T08:35:35.911] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:35:35.950] [INFO] cheese - inserting 1000 documents. first: Perfect Liberty and last: Category:Museums in Pinellas County, Florida -[2018-02-13T08:35:35.969] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:35:36.004] [INFO] cheese - inserting 1000 documents. first: Daphane Hatzilakos and last: Wikipedia:Featured article candidates/Gross domestic product/archive1 -[2018-02-13T08:35:36.024] [INFO] cheese - inserting 1000 documents. first: Gallipolis, OH and last: Gosnold, MA -[2018-02-13T08:35:36.044] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:35:36.083] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:36.123] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:35:36.188] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/ Space Shuttle and last: My Man (Tammy Wynette song) -[2018-02-13T08:35:36.229] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:36.243] [INFO] cheese - inserting 1000 documents. first: File:Ashanti- good-good music video.PNG and last: Category:Executed Spanish people -[2018-02-13T08:35:36.289] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:35:36.298] [INFO] cheese - inserting 1000 documents. first: Category:Sweden football manager history navigational boxes and last: Portal:Asia/Featured picture/25 -[2018-02-13T08:35:36.345] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:35:36.418] [INFO] cheese - inserting 1000 documents. first: Kalaka (state constituency) and last: Grave Creek -[2018-02-13T08:35:36.435] [INFO] cheese - inserting 1000 documents. first: Miltochrista eccentropis and last: Khelil -[2018-02-13T08:35:36.446] [INFO] cheese - inserting 1000 documents. first: Renfro Valley, Kentucky and last: File:ParallelStance.gif -[2018-02-13T08:35:36.457] [INFO] cheese - inserting 1000 documents. first: Gosper County, NE and last: Michael Stone (federal government administrator) -[2018-02-13T08:35:36.461] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:35:36.512] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:35:36.508] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:35:36.566] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:36.627] [INFO] cheese - inserting 1000 documents. first: Wehrkunde and last: Pocatello Senior High School -[2018-02-13T08:35:36.667] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Video games/Peer review/Race Driver: Create and Race and last: King Airfield Hangar -[2018-02-13T08:35:36.669] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:36.704] [INFO] cheese - inserting 1000 documents. first: Category:Conglomerate companies of Denmark and last: Category:Irvine Meadow XI F.C. -[2018-02-13T08:35:36.710] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T08:35:36.746] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:35:36.781] [INFO] cheese - inserting 1000 documents. first: History of the Shakespeare authorship question and last: Hendrik Ernst -[2018-02-13T08:35:36.837] [INFO] cheese - inserting 1000 documents. first: Canada sochi 2014 and last: Sand-e Mirshaban -[2018-02-13T08:35:36.875] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:35:36.890] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T08:35:36.979] [INFO] cheese - inserting 1000 documents. first: Bhuddist and last: Willow (PAT station) -[2018-02-13T08:35:37.037] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:35:37.115] [INFO] cheese - inserting 1000 documents. first: File:Tom Williams - Welsh rugby player born 1887.jpg and last: Category:Indian women choreographers -[2018-02-13T08:35:37.223] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:35:37.216] [INFO] cheese - inserting 1000 documents. first: Category:People from Rennebu and last: The Bass Player and the Blonde -[2018-02-13T08:35:37.255] [INFO] cheese - inserting 1000 documents. first: Colonial Dames of America and last: Slack space -[2018-02-13T08:35:37.291] [INFO] cheese - inserting 1000 documents. first: Fumehood and last: Gulf Breeze, FL -[2018-02-13T08:35:37.297] [INFO] cheese - inserting 1000 documents. first: Absinthe Rose and last: Mulayit Taung -[2018-02-13T08:35:37.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Soldier and the State and last: Category:Films directed by Ray Nazarro -[2018-02-13T08:35:37.329] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:35:37.354] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:37.397] [INFO] cheese - inserting 1000 documents. first: High Representative of the European Union and last: File:Nothing Worth Having Comes Easy.jpg -[2018-02-13T08:35:37.407] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:37.411] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:35:37.423] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:35:37.509] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:35:37.742] [INFO] cheese - inserting 1000 documents. first: Cape Pembroke lighthouse and last: Michael John Myers -[2018-02-13T08:35:37.769] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Box Elder County, Utah and last: File:Game-of-Thrones-S06-E02-Home.jpg -[2018-02-13T08:35:37.806] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:35:37.826] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:35:37.841] [INFO] cheese - inserting 1000 documents. first: Hajiabdollah and last: Roberto Menichelli -[2018-02-13T08:35:37.869] [INFO] cheese - inserting 1000 documents. first: Gulf City, FL and last: Alaric, King of the Visigoths -[2018-02-13T08:35:37.875] [INFO] cheese - inserting 1000 documents. first: Georgia and Florida RailNet and last: Commonweal (disambiguation) -[2018-02-13T08:35:37.892] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:35:37.917] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:35:37.930] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:37.956] [INFO] cheese - inserting 1000 documents. first: William Middleton (disambiguation) and last: Wikipedia:Requests for adminship/Llywrch -[2018-02-13T08:35:37.999] [INFO] cheese - inserting 1000 documents. first: Aven Armand and last: Wells City F.C. -[2018-02-13T08:35:38.031] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:38.063] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:35:38.066] [INFO] cheese - inserting 1000 documents. first: Pool Party (The Office) and last: Category:Basketball teams in Colombia -[2018-02-13T08:35:38.142] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:38.285] [INFO] cheese - inserting 1000 documents. first: Sayid Ali Asghar Kurdistani and last: Category:1503 establishments in Lithuania -[2018-02-13T08:35:38.298] [INFO] cheese - inserting 1000 documents. first: Marco Fidel Suarez and last: Helotes, TX -[2018-02-13T08:35:38.318] [INFO] cheese - inserting 1000 documents. first: Cho Byeong-ok and last: File:Stefan Pierer’s ownership of KTM, Husqvarna and Husaberg.png -[2018-02-13T08:35:38.327] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:35:38.335] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:35:38.369] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:35:38.416] [INFO] cheese - inserting 1000 documents. first: Action of 8 January 1780 and last: 1999–00 FA Cup -[2018-02-13T08:35:38.446] [INFO] cheese - inserting 1000 documents. first: Toronto sports and last: Central Makran range -[2018-02-13T08:35:38.455] [INFO] cheese - inserting 1000 documents. first: Clayton & Black and last: Dr. Walter E. Williams -[2018-02-13T08:35:38.456] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:35:38.513] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Caribbean and last: South Milwaukee High School -[2018-02-13T08:35:38.516] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T08:35:38.522] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:35:38.585] [INFO] cheese - inserting 1000 documents. first: KAMEN feat.Tatsuya Ishii and last: Massbus -[2018-02-13T08:35:38.597] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:35:38.635] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:35:38.645] [INFO] cheese - inserting 1000 documents. first: Shropshire Wildlife Trust and last: Honaker, VA -[2018-02-13T08:35:38.706] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T08:35:38.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Kenosplit/Archive and last: Evans Timothy Fosu Fosu-Mensah -[2018-02-13T08:35:38.810] [INFO] cheese - inserting 1000 documents. first: File:NIT Kurukshetra RR.png and last: Kalpasi -[2018-02-13T08:35:38.896] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:38.906] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:35:39.100] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Anniversaries/December/December 22 and last: Elachista canapennella -[2018-02-13T08:35:39.176] [INFO] cheese - inserting 1000 documents. first: Honalo, HI and last: Itasca Township, MN -[2018-02-13T08:35:39.185] [INFO] cheese - inserting 1000 documents. first: Category:Rapid transit in Hong Kong and last: Balsa (software) -[2018-02-13T08:35:39.197] [INFO] cheese - inserting 1000 documents. first: Daneți and last: Tosan tank -[2018-02-13T08:35:39.208] [INFO] cheese - inserting 1000 documents. first: File:WWWH-FM Paradise radio logo.jpg and last: Template:Subatomic particle/symbol/bottom xi -[2018-02-13T08:35:39.220] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:35:39.242] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:35:39.251] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:35:39.283] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:35:39.321] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:35:39.343] [INFO] cheese - inserting 1000 documents. first: Tracy Dawson and last: Hechi Airport -[2018-02-13T08:35:39.380] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Diocese of Port Harcourt and last: File:FastCat logo.png -[2018-02-13T08:35:39.441] [INFO] cheese - inserting 1000 documents. first: Web Mining and last: Divine Right of Kings (disambiguation) -[2018-02-13T08:35:39.448] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:35:39.451] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:35:39.526] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:35:39.676] [INFO] cheese - inserting 1000 documents. first: Itawamba County, MS and last: Jordan Township, Northumberland County, PA -[2018-02-13T08:35:39.697] [INFO] cheese - inserting 1000 documents. first: Category:Softball media and last: Japan National Route 392 -[2018-02-13T08:35:39.723] [INFO] cheese - inserting 1000 documents. first: Chevrolet Cup and last: Metallica - Kill 'Em All -[2018-02-13T08:35:39.730] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:39.751] [INFO] cheese - inserting 1000 documents. first: Template:Subatomic particle/symbol/bottom xi0 and last: Category:Caves of Jeju Province -[2018-02-13T08:35:39.752] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:35:39.804] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:35:39.824] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:35:39.838] [INFO] cheese - inserting 1000 documents. first: Cioabă and last: Newton R. Casey -[2018-02-13T08:35:39.875] [INFO] cheese - inserting 1000 documents. first: King Norris and last: Category:Protected areas of Chile -[2018-02-13T08:35:39.903] [INFO] cheese - inserting 1000 documents. first: Edmond Burat de Gurgy and last: Pukarani (Potosí) -[2018-02-13T08:35:39.906] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:35:39.954] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:35:39.974] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:35:40.089] [INFO] cheese - inserting 1000 documents. first: Shahidul Alam and last: Cuisine of Castile-León -[2018-02-13T08:35:40.130] [INFO] cheese - inserting 1000 documents. first: Jordan Township, PA and last: Knox Township, Clarion County, PA -[2018-02-13T08:35:40.160] [INFO] cheese - inserting 1000 documents. first: Japan National Route 393 and last: Ali Azari Karki -[2018-02-13T08:35:40.167] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:35:40.259] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:35:40.299] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:35:40.329] [INFO] cheese - inserting 1000 documents. first: Administrative aide and last: Jéfferson Pérez -[2018-02-13T08:35:40.417] [INFO] cheese - inserting 1000 documents. first: Objects of labour and last: Jacky Chamoun -[2018-02-13T08:35:40.429] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:35:40.471] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:35:40.503] [INFO] cheese - inserting 1000 documents. first: Helpless and last: Mystic (singer) -[2018-02-13T08:35:40.533] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Jeju Province and last: Sgurr an Utha and Fraoch-bheinn -[2018-02-13T08:35:40.553] [INFO] cheese - inserting 1000 documents. first: Attribute certificate and last: Fagot -[2018-02-13T08:35:40.586] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:40.594] [INFO] cheese - inserting 1000 documents. first: Feeder (livestock equipment) and last: Nathan Orf -[2018-02-13T08:35:40.600] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:35:40.616] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:35:40.684] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:35:40.785] [INFO] cheese - inserting 1000 documents. first: 7RM and last: Oxyophthalmellus somalicus -[2018-02-13T08:35:40.840] [INFO] cheese - inserting 1000 documents. first: Dobříš and last: Emomali Sharipani Ramona -[2018-02-13T08:35:40.856] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:35:40.892] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Abusefilter-ANIbugnotice and last: Cyana obscura -[2018-02-13T08:35:40.893] [INFO] cheese - inserting 1000 documents. first: Lauderdale County, AL and last: Little Wolf, WI -[2018-02-13T08:35:40.916] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T08:35:40.964] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:35:40.971] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:35:41.000] [INFO] cheese - inserting 1000 documents. first: SRAS and last: File:Kuttiyattu paradevada temple1.jpg -[2018-02-13T08:35:41.069] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:35:41.102] [INFO] cheese - inserting 1000 documents. first: Baron Wilson of High Wray and last: 6th Corps -[2018-02-13T08:35:41.112] [INFO] cheese - inserting 1000 documents. first: Fatigue jacket and last: Ann Rutledge (Amtrak) -[2018-02-13T08:35:41.153] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:41.207] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:41.216] [INFO] cheese - inserting 1000 documents. first: Little York, IL and last: Character entity reference -[2018-02-13T08:35:41.272] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:35:41.293] [INFO] cheese - inserting 1000 documents. first: Lužani (Derventa) and last: Sixty-third subharmonic -[2018-02-13T08:35:41.398] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:35:41.417] [INFO] cheese - inserting 1000 documents. first: Yard number and last: Kim A-Lang -[2018-02-13T08:35:41.457] [INFO] cheese - inserting 1000 documents. first: Oxyophthalmellus rehni and last: Edmond Paea -[2018-02-13T08:35:41.496] [INFO] cheese - inserting 1000 documents. first: Euxoa rossica and last: Rafael Pereira da Silva (Manchester United) -[2018-02-13T08:35:41.515] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:35:41.561] [INFO] cheese - inserting 1000 documents. first: The National Organisation for Scouts and Guides and last: High & Mighty -[2018-02-13T08:35:41.595] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:35:41.597] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:35:41.716] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:35:41.730] [INFO] cheese - inserting 1000 documents. first: L.H.O.O.Q. and last: Tert-Butylamine -[2018-02-13T08:35:41.819] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:41.887] [INFO] cheese - inserting 1000 documents. first: Harry Connick, Jr. and last: List of people with last name Englefield -[2018-02-13T08:35:41.888] [INFO] cheese - inserting 1000 documents. first: Ganiklis and last: Schism fanzine -[2018-02-13T08:35:41.895] [INFO] cheese - inserting 1000 documents. first: CUNA Credit Union and last: Raï'n'B -[2018-02-13T08:35:41.934] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:35:41.991] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:35:42.009] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:35:42.070] [INFO] cheese - inserting 1000 documents. first: CHERUB: Black Friday and last: Bufkan -[2018-02-13T08:35:42.125] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:35:42.130] [INFO] cheese - inserting 1000 documents. first: List of people with last name Entwistle and last: List of people with the last name Dunn -[2018-02-13T08:35:42.151] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T08:35:42.228] [INFO] cheese - inserting 1000 documents. first: Peter Kelder (soap character) and last: 15053 Bochnicek -[2018-02-13T08:35:42.297] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:35:42.318] [INFO] cheese - inserting 1000 documents. first: Marquette (town), Green Lake County, WI and last: Menomonie, WI -[2018-02-13T08:35:42.359] [INFO] cheese - inserting 1000 documents. first: Template:MeSH number and last: Gallowglass -[2018-02-13T08:35:42.374] [INFO] cheese - inserting 1000 documents. first: List of people with the last name Durston and last: People with last name Cruise -[2018-02-13T08:35:42.377] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T08:35:42.387] [INFO] cheese - inserting 1000 documents. first: They (pronoun) and last: The Red Jumpsuit Apparatus (demo) -[2018-02-13T08:35:42.419] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T08:35:42.438] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:35:42.467] [INFO] cheese - inserting 1000 documents. first: Edward Paea and last: Vincenzo Puccitta -[2018-02-13T08:35:42.499] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:35:42.580] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:35:42.584] [INFO] cheese - inserting 1000 documents. first: Rai'n'B and last: Conrad Kilian -[2018-02-13T08:35:42.604] [INFO] cheese - inserting 1000 documents. first: Template:Canvey Island Independent Party/meta/shortname and last: Category:Hydroelectric power stations in Belize -[2018-02-13T08:35:42.611] [INFO] cheese - inserting 1000 documents. first: People with last name Cruse and last: People with the last name Clark -[2018-02-13T08:35:42.630] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T08:35:42.656] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:35:42.658] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:35:42.735] [INFO] cheese - inserting 1000 documents. first: Menomonie (city), Dunn County, WI and last: Fra Mauro -[2018-02-13T08:35:42.764] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:35:42.843] [INFO] cheese - inserting 1000 documents. first: 15034 Decines and last: File:Hood & Pen - Daikaiju! Giant Monster Tales Coverart.png -[2018-02-13T08:35:42.846] [INFO] cheese - inserting 1000 documents. first: Katrin Velkova and last: Burdon (last name) -[2018-02-13T08:35:42.858] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T08:35:42.885] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:35:42.951] [INFO] cheese - inserting 1000 documents. first: Hinukh people and last: File:Journler Icon.png -[2018-02-13T08:35:42.981] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:35:43.035] [INFO] cheese - inserting 1000 documents. first: Monroeville, PA and last: Crash (Dave Matthews Band album) -[2018-02-13T08:35:43.046] [INFO] cheese - inserting 1000 documents. first: Cesare Mariani and last: Delphic of Gamma Sigma Tau -[2018-02-13T08:35:43.048] [INFO] cheese - inserting 1000 documents. first: Molecular tagging velocimetry and last: Émile Georget -[2018-02-13T08:35:43.070] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T08:35:43.106] [INFO] cheese - inserting 1000 documents. first: Burgess (last name) and last: Mityana Hospital -[2018-02-13T08:35:43.118] [INFO] cheese - inserting 1000 documents. first: List of theatres and concert halls in Madrid and last: Terrorism in Poland -[2018-02-13T08:35:43.118] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:43.127] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T08:35:43.156] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:35:43.203] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:43.266] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Group-autoreviewer/simple and last: Category:Davis & Elkins College faculty -[2018-02-13T08:35:43.514] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/1bonus1.com and last: Chitralekha(deity) -[2018-02-13T08:35:43.515] [INFO] cheese - inserting 1000 documents. first: Ariel (novel series) and last: Template:Administrative levels of Romania (sidebar) -[2018-02-13T08:35:43.538] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:35:43.609] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:35:43.763] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:35:43.816] [INFO] cheese - inserting 1000 documents. first: Yves Bélanger (ice hockey) and last: Category:Sport in Worcester -[2018-02-13T08:35:43.816] [INFO] cheese - inserting 1000 documents. first: Nazlini, AZ and last: Nordick Township, MN -[2018-02-13T08:35:43.863] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:35:43.897] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:35:44.002] [INFO] cheese - inserting 1000 documents. first: File:Improv performing at banglore.jpg and last: Igor Dima -[2018-02-13T08:35:44.006] [INFO] cheese - inserting 1000 documents. first: Martina Müller-Skibbe and last: Category:2016 elections in Turkey -[2018-02-13T08:35:44.050] [INFO] cheese - inserting 1000 documents. first: You Wanna? and last: Thomas' Christmas Wonderland & Other Thomas Adventures -[2018-02-13T08:35:44.067] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:35:44.080] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:35:44.163] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:35:44.309] [INFO] cheese - inserting 1000 documents. first: Deramciclane and last: Thompson Twins - Greatest Hits -[2018-02-13T08:35:44.309] [INFO] cheese - inserting 1000 documents. first: Nordland Township, Aitkin County, MN and last: Okmulgee, OK -[2018-02-13T08:35:44.340] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:35:44.411] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:35:44.437] [INFO] cheese - inserting 1000 documents. first: The Chosen (Ricardo Pinto) and last: Portal:Rwanda/Selected panorama -[2018-02-13T08:35:44.531] [INFO] cheese - inserting 1000 documents. first: Masonic Temple (Burlington, Vermont) and last: Lala de Cizique -[2018-02-13T08:35:44.549] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:35:44.637] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:35:44.666] [INFO] cheese - inserting 1000 documents. first: Sterling Institute of Relationship and last: File:Concavemirror raydiagram F.gif -[2018-02-13T08:35:44.760] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:35:44.783] [INFO] cheese - inserting 1000 documents. first: Coolie (Malayalam film) and last: Glen Ellyn (Metra) -[2018-02-13T08:35:44.803] [INFO] cheese - inserting 1000 documents. first: Category:2012 elections in Turkey and last: Hey Ma -[2018-02-13T08:35:44.883] [INFO] cheese - inserting 1000 documents. first: Okmulgee County, OK and last: Panama, IL -[2018-02-13T08:35:44.904] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:35:44.910] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:44.960] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:35:45.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jim Gary and last: Groep T -[2018-02-13T08:35:45.114] [INFO] cheese - inserting 1000 documents. first: Category:Ranma ½ element redirects to lists and last: Indian logics -[2018-02-13T08:35:45.137] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:35:45.202] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:35:45.218] [INFO] cheese - inserting 1000 documents. first: Alexander's Bush Squirrel and last: Betty Tylden -[2018-02-13T08:35:45.264] [INFO] cheese - inserting 1000 documents. first: Category:Fictional survivalists and last: Haywood (family name) -[2018-02-13T08:35:45.285] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T08:35:45.291] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:35:45.400] [INFO] cheese - inserting 1000 documents. first: Hogwarts subjects and last: Great Influenza Pandemic -[2018-02-13T08:35:45.438] [INFO] cheese - inserting 1000 documents. first: Sam Marata and last: Amata stenoptera -[2018-02-13T08:35:45.461] [INFO] cheese - inserting 1000 documents. first: Acid strength and last: Ifuraces -[2018-02-13T08:35:45.467] [INFO] cheese - inserting 1000 documents. first: Wittgenstein rod and last: Delta-system lemma -[2018-02-13T08:35:45.483] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:35:45.528] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:35:45.536] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:45.533] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:35:45.594] [INFO] cheese - inserting 1000 documents. first: Hazell (family name) and last: Thomas Austin (cricketer) -[2018-02-13T08:35:45.680] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:35:45.757] [INFO] cheese - inserting 1000 documents. first: Christopher Simonsen Fougner and last: RMIT Vietnam -[2018-02-13T08:35:45.789] [INFO] cheese - inserting 1000 documents. first: File:Peaches-Talk-to-Me.jpg and last: James Walter Reeves -[2018-02-13T08:35:45.844] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:45.890] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:35:45.940] [INFO] cheese - inserting 1000 documents. first: Mixi and last: Avanti! (Italian newspaper) -[2018-02-13T08:35:46.041] [INFO] cheese - inserting 1000 documents. first: Amata stictoptera and last: Elka discography -[2018-02-13T08:35:46.047] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:35:46.098] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:35:46.144] [INFO] cheese - inserting 1000 documents. first: Mrs. Loring's Secret and last: Template:Mycologist/doc -[2018-02-13T08:35:46.208] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:35:46.232] [INFO] cheese - inserting 1000 documents. first: Food safety in China and last: List of athletes from Alaska -[2018-02-13T08:35:46.324] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:35:46.339] [INFO] cheese - inserting 1000 documents. first: Laid Low (EP) and last: Template:Bluebook website/testcases -[2018-02-13T08:35:46.341] [INFO] cheese - inserting 1000 documents. first: Cathal mac Domhnall Ua Conchobair and last: Seavey House -[2018-02-13T08:35:46.347] [INFO] cheese - inserting 1000 documents. first: UMkhuze Game Reserve and last: Peridot, AZ -[2018-02-13T08:35:46.407] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:46.407] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:35:46.510] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:35:46.595] [INFO] cheese - inserting 1000 documents. first: Chotur and last: Wikipedia:Mediation Cabal/Cases/2008-07-27 Articles for deletion/Characters and groups in Bionicle -[2018-02-13T08:35:46.671] [INFO] cheese - inserting 1000 documents. first: Nick (Pakistan) and last: Deh-e Ra'is -[2018-02-13T08:35:46.744] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:35:46.747] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:35:46.899] [INFO] cheese - inserting 1000 documents. first: E.M.W. Tillyard and last: Sonority Sequencing Principle -[2018-02-13T08:35:46.955] [INFO] cheese - inserting 1000 documents. first: Perkasie, PA and last: Port Wing, WI -[2018-02-13T08:35:46.999] [INFO] cheese - inserting 1000 documents. first: Cardiff, United Kingdom and last: 47 Brand -[2018-02-13T08:35:47.016] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:35:47.050] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:35:47.089] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:35:47.099] [INFO] cheese - inserting 1000 documents. first: 2000 Speed World Challenge season and last: File:All-Time Greatest Hits (Ray Stevens album).jpeg -[2018-02-13T08:35:47.189] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:35:47.197] [INFO] cheese - inserting 1000 documents. first: Mannington Mine disaster and last: Reason (program) -[2018-02-13T08:35:47.276] [INFO] cheese - inserting 1000 documents. first: Deh-e Ra'is-e Garuk and last: Abramov, Vitaliy -[2018-02-13T08:35:47.317] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:35:47.374] [INFO] cheese - inserting 1000 documents. first: Portage, IN and last: Reno, Parker County, TX -[2018-02-13T08:35:47.389] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:47.438] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T08:35:47.586] [INFO] cheese - inserting 1000 documents. first: 1960 San Francisco 49ers season and last: La Schelle Tarver -[2018-02-13T08:35:47.620] [INFO] cheese - inserting 1000 documents. first: Template:SA Rugby Results/doc and last: Category:Belgian Pro League players -[2018-02-13T08:35:47.641] [INFO] cheese - inserting 1000 documents. first: Hall of fame racing and last: See the Bombers Fly Up -[2018-02-13T08:35:47.658] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:35:47.698] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:47.705] [INFO] cheese - inserting 1000 documents. first: Tim Dudfield and last: Ross Township, MI -[2018-02-13T08:35:47.737] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:35:47.781] [INFO] cheese - inserting 1000 documents. first: Abramov, Yevda and last: PPcoin -[2018-02-13T08:35:47.786] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T08:35:47.815] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tiffany Taylor (pornographic actress) and last: Richard Silcock -[2018-02-13T08:35:47.843] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T08:35:47.898] [INFO] cheese - inserting 1000 documents. first: Keep on Walking (CD) and last: Tert-butylamine -[2018-02-13T08:35:47.902] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:35:47.979] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:35:48.099] [INFO] cheese - inserting 1000 documents. first: Ross Township, MN and last: Santa Claus, GA -[2018-02-13T08:35:48.133] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:35:48.188] [INFO] cheese - inserting 1000 documents. first: Category:Belgian Second Division players and last: Category:Albania entertainment templates -[2018-02-13T08:35:48.244] [INFO] cheese - inserting 1000 documents. first: Tanjung Ipoh and last: Joachim Fernández -[2018-02-13T08:35:48.233] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:35:48.265] [INFO] cheese - inserting 1000 documents. first: Praepositus sacri palatii and last: Osvaldo Félix Souza -[2018-02-13T08:35:48.380] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:35:48.406] [INFO] cheese - batch complete in: 1.999 secs -[2018-02-13T08:35:48.410] [INFO] cheese - inserting 1000 documents. first: Occupy ucd and last: IdeaPlane -[2018-02-13T08:35:48.441] [INFO] cheese - inserting 1000 documents. first: Template:User CRS and last: Wikipedia:Articles for deletion/List of English words of Romanian origin -[2018-02-13T08:35:48.514] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:48.517] [INFO] cheese - inserting 1000 documents. first: Mangalore Express and last: Hungary women's national goalball team -[2018-02-13T08:35:48.582] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:35:48.641] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:35:48.663] [INFO] cheese - inserting 1000 documents. first: Muhilankudieruppu and last: File:EvoTerra.jpg -[2018-02-13T08:35:48.759] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:35:48.804] [INFO] cheese - inserting 1000 documents. first: Eagle Lake (Fish River) and last: Pink Ocean (EP) -[2018-02-13T08:35:48.825] [INFO] cheese - inserting 1000 documents. first: Category:Aitkin County, Minnesota and last: Sharpsburg, PA -[2018-02-13T08:35:48.919] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:35:48.992] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:35:49.085] [INFO] cheese - inserting 1000 documents. first: Exercise Summer Pulse and last: EllisDon -[2018-02-13T08:35:49.106] [INFO] cheese - inserting 1000 documents. first: Numantianus and last: Wikipedia:Articles for deletion/Live in Montecarlo -[2018-02-13T08:35:49.166] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:49.170] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:35:49.216] [INFO] cheese - inserting 1000 documents. first: Riverdale (Metra) and last: Wikipedia:Reference desk/Archives/Language/2014 February 8 -[2018-02-13T08:35:49.247] [INFO] cheese - inserting 1000 documents. first: Somma-Vesuvio and last: Pam Ann -[2018-02-13T08:35:49.255] [INFO] cheese - inserting 1000 documents. first: Design Assist and last: File:JetsNow&Then.jpg -[2018-02-13T08:35:49.270] [INFO] cheese - inserting 1000 documents. first: Lamrim and last: South Pymatuning Township, PA -[2018-02-13T08:35:49.323] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:35:49.326] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:35:49.356] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:35:49.379] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:35:49.610] [INFO] cheese - inserting 1000 documents. first: NGC 7252 and last: Maria Sergeeva -[2018-02-13T08:35:49.632] [INFO] cheese - inserting 1000 documents. first: South Range, MI and last: Stoddard, WI -[2018-02-13T08:35:49.633] [INFO] cheese - inserting 1000 documents. first: John de Gruchy and last: Ubisoft Ukraine -[2018-02-13T08:35:49.666] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T08:35:49.668] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:35:49.700] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:35:49.813] [INFO] cheese - inserting 1000 documents. first: Sahara Force India and last: Category:Mac OS graphics software -[2018-02-13T08:35:49.856] [INFO] cheese - inserting 1000 documents. first: Suarăș and last: 1937 Eastern Suburbs DRLFC season -[2018-02-13T08:35:49.921] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:35:49.935] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Barrett M82 and last: Konrad Wysocki -[2018-02-13T08:35:49.935] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:35:49.952] [INFO] cheese - inserting 1000 documents. first: Carissa Putri and last: K.P. Ummer -[2018-02-13T08:35:50.020] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:35:50.027] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:35:50.108] [INFO] cheese - inserting 1000 documents. first: Stoddard County, MO and last: Estelle Leonard -[2018-02-13T08:35:50.178] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:50.280] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Delhi and last: Shahi-Kot Valley -[2018-02-13T08:35:50.287] [INFO] cheese - inserting 1000 documents. first: 1605 in art and last: Kurt Enoch Stenberg -[2018-02-13T08:35:50.308] [INFO] cheese - inserting 1000 documents. first: Cassida affinis and last: Category:Banks disestablished in 1845 -[2018-02-13T08:35:50.355] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:35:50.391] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:35:50.399] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:50.510] [INFO] cheese - inserting 1000 documents. first: Eupoecilia anebrica and last: Feel Like Fame -[2018-02-13T08:35:50.567] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:35:50.613] [INFO] cheese - inserting 1000 documents. first: Ur-du-kuga and last: Maurice Noguès -[2018-02-13T08:35:50.683] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:35:50.698] [INFO] cheese - inserting 1000 documents. first: Bertone and last: File:Folk-sandstone.classification.png -[2018-02-13T08:35:50.767] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:35:50.785] [INFO] cheese - inserting 1000 documents. first: Portal:Transport/Selected anniversaries/August 3 and last: Template:Lubartów-geo-stub -[2018-02-13T08:35:50.861] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:35:50.907] [INFO] cheese - inserting 1000 documents. first: Sungai Besi (federal constituency) and last: Donald Anderson McGavran -[2018-02-13T08:35:50.955] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:35:50.963] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (earth) and last: Brace for impact -[2018-02-13T08:35:50.990] [INFO] cheese - inserting 1000 documents. first: It Was a Business Doing Pleasure and last: Ivan Ilich -[2018-02-13T08:35:51.008] [INFO] cheese - inserting 1000 documents. first: File:AajKaArjun.jpg and last: Category:Tourism in Mauritania -[2018-02-13T08:35:51.041] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:35:51.077] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:35:51.131] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:35:51.172] [INFO] cheese - inserting 1000 documents. first: KFKF-FM and last: Heroes of the East -[2018-02-13T08:35:51.261] [INFO] cheese - inserting 1000 documents. first: Order of Friendship (Vietnam) and last: File:Rush x files.jpg -[2018-02-13T08:35:51.276] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:35:51.384] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:35:51.461] [INFO] cheese - inserting 1000 documents. first: Battle of Tsushima strait and last: Fellowship of the ring soundtrack -[2018-02-13T08:35:51.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The GOAT Store and last: Wólka Rozwadowska -[2018-02-13T08:35:51.548] [INFO] cheese - inserting 1000 documents. first: File:James Yoxall.jpg and last: All the King's Horses (Grover Washington, Jr. album) -[2018-02-13T08:35:51.554] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:35:51.592] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:51.665] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:35:51.739] [INFO] cheese - inserting 1000 documents. first: Daniel Muzito and last: Abreu, Átila -[2018-02-13T08:35:51.789] [INFO] cheese - inserting 1000 documents. first: Sunday morning cartoon and last: Fairchild Industries FH-1100 -[2018-02-13T08:35:51.910] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:35:52.028] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:35:52.058] [INFO] cheese - inserting 1000 documents. first: Brace procedure and last: USS Tortuga -[2018-02-13T08:35:52.084] [INFO] cheese - inserting 1000 documents. first: ISRG and last: Father John Dear -[2018-02-13T08:35:52.197] [INFO] cheese - inserting 1000 documents. first: I I Chundrigar and last: Template:Catawba Indians football coach navbox -[2018-02-13T08:35:52.255] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T08:35:52.262] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:35:52.368] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:35:52.411] [INFO] cheese - inserting 1000 documents. first: Symphony No. 1 (Schubert) and last: Portal:Schools/Selected picture/9 -[2018-02-13T08:35:52.441] [INFO] cheese - inserting 1000 documents. first: Seascraper and last: John Charlton (disambiguation) -[2018-02-13T08:35:52.462] [INFO] cheese - inserting 1000 documents. first: Abreu, Cláudia and last: Experimental range -[2018-02-13T08:35:52.535] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:35:52.541] [INFO] cheese - inserting 1000 documents. first: File:A Moon Shaped Pool.jpg and last: Common nettle-tap -[2018-02-13T08:35:52.540] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:35:52.623] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:35:52.677] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:35:52.904] [INFO] cheese - inserting 1000 documents. first: Church of Peace (Potsdam) and last: Námata -[2018-02-13T08:35:52.942] [INFO] cheese - inserting 1000 documents. first: D. Gale Johnson and last: Adam-Pierre de La Grené -[2018-02-13T08:35:53.000] [INFO] cheese - inserting 1000 documents. first: Chopin's heart and last: File:BugMafiaPanaCandMoarteaNeVaDesparti.ogg -[2018-02-13T08:35:52.993] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:35:53.030] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:35:53.059] [INFO] cheese - inserting 1000 documents. first: Industrial plasticine and last: Template:Libertarianz/meta/color -[2018-02-13T08:35:53.112] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:35:53.116] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steve Corcoran and last: Category:LA Galaxy players -[2018-02-13T08:35:53.163] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:35:53.173] [INFO] cheese - inserting 1000 documents. first: Justice Ingram (disambiguation) and last: Category:Zhengzhou University -[2018-02-13T08:35:53.179] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:35:53.188] [INFO] cheese - inserting 1000 documents. first: ACCENT Speakers Bureau and last: Kopczany -[2018-02-13T08:35:53.259] [INFO] cheese - inserting 1000 documents. first: File:St Mary Cathedral Calgary front statue.jpg and last: Roderick at Random -[2018-02-13T08:35:53.278] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:35:53.305] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:35:53.345] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:35:53.537] [INFO] cheese - inserting 1000 documents. first: Monkey Magic (arcade game) and last: Educational Service Districts in Washington -[2018-02-13T08:35:53.592] [INFO] cheese - inserting 1000 documents. first: Costica Canacheu and last: CRDA CANT Z.506 -[2018-02-13T08:35:53.605] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:53.686] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:35:53.717] [INFO] cheese - inserting 1000 documents. first: Functional Capacity Evaluation and last: Ladislao Michele Zaleski -[2018-02-13T08:35:53.736] [INFO] cheese - inserting 1000 documents. first: Category:Television series produced in Toronto and last: Universidad del Valle de Atemajac -[2018-02-13T08:35:53.792] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:35:53.821] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:35:53.899] [INFO] cheese - inserting 1000 documents. first: DataMeet and last: Homshetsi dialect language -[2018-02-13T08:35:53.928] [INFO] cheese - inserting 1000 documents. first: DFW Toros and last: Henrykowo, Podlaskie Voivodeship -[2018-02-13T08:35:53.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jacobo Ríos and last: Siam Empire -[2018-02-13T08:35:53.950] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:54.013] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:35:54.060] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:35:54.180] [INFO] cheese - inserting 1000 documents. first: Kuzan-e Olya and last: Category:People from Pisco, Peru -[2018-02-13T08:35:54.247] [INFO] cheese - inserting 1000 documents. first: Dent (fell) and last: Louis MacNeice -[2018-02-13T08:35:54.271] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:54.312] [INFO] cheese - inserting 1000 documents. first: Jane loop and last: Jon Hepworth -[2018-02-13T08:35:54.328] [INFO] cheese - inserting 1000 documents. first: Miracle of Dunkirk and last: Blue Mountains Grammar School -[2018-02-13T08:35:54.349] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:35:54.366] [INFO] cheese - inserting 1000 documents. first: Too Cool To Be Forgotten and last: John Beswick (politician) -[2018-02-13T08:35:54.383] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:54.431] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:54.477] [INFO] cheese - inserting 1000 documents. first: Monica Kalondo and last: Peirre Omidyar -[2018-02-13T08:35:54.522] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:35:54.558] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:54.661] [INFO] cheese - inserting 1000 documents. first: Izoby and last: SWEAT (hypothesis) -[2018-02-13T08:35:54.718] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:35:54.743] [INFO] cheese - inserting 1000 documents. first: Category:World Fantasy Award winners and last: Hupogrammos Disciple's -[2018-02-13T08:35:54.779] [INFO] cheese - inserting 1000 documents. first: Category:People from San Ignacio, Paraguay and last: J. H. Delorey -[2018-02-13T08:35:54.806] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:35:54.860] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:35:54.914] [INFO] cheese - inserting 1000 documents. first: Boesio and last: Halbturn -[2018-02-13T08:35:54.923] [INFO] cheese - inserting 1000 documents. first: Thinicola and last: Wikipedia:Articles for deletion/Ben Briley -[2018-02-13T08:35:54.985] [INFO] cheese - inserting 1000 documents. first: Ragged Lake (Maine) and last: File:Kouvot logo 2016.png -[2018-02-13T08:35:54.978] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:35:55.028] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:35:55.152] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:35:55.182] [INFO] cheese - inserting 1000 documents. first: Richard John Beswick and last: NY 2 (1927–1939) -[2018-02-13T08:35:55.185] [INFO] cheese - inserting 1000 documents. first: Agasta Christie and last: Dreadnought! -[2018-02-13T08:35:55.257] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:35:55.271] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:35:55.375] [INFO] cheese - inserting 1000 documents. first: Bernadette Porter and last: Stefan Dötzler -[2018-02-13T08:35:55.398] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T08:35:55.407] [INFO] cheese - inserting 1000 documents. first: Traumatologists and last: Tonight (1957 TV series) -[2018-02-13T08:35:55.428] [INFO] cheese - inserting 1000 documents. first: Unterstraße and last: Giuseppe Ferrandino -[2018-02-13T08:35:55.448] [INFO] cheese - inserting 1000 documents. first: Frederick Louis MacNeice and last: Langbaurgh -[2018-02-13T08:35:55.466] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:35:55.481] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:35:55.634] [INFO] cheese - batch complete in: 1.285 secs -[2018-02-13T08:35:55.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/411 and last: Wikipedia:Pokémon Collaborative Project/List of articles -[2018-02-13T08:35:55.749] [INFO] cheese - inserting 1000 documents. first: File:Kempston-micro-electronics-logo.png and last: South West 2 East -[2018-02-13T08:35:55.752] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:35:55.768] [INFO] cheese - inserting 1000 documents. first: Cardiff Waterbus and last: Subtle -[2018-02-13T08:35:55.829] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:35:55.848] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:55.860] [INFO] cheese - inserting 1000 documents. first: Apache Apex and last: Marusya Bociurkiw -[2018-02-13T08:35:55.931] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:35:55.994] [INFO] cheese - inserting 1000 documents. first: Template:Unity (Hungary)/meta/shortname and last: Purtow -[2018-02-13T08:35:56.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Trickietrickie/Archive and last: 2007–08 A.F.C. Bournemouth season -[2018-02-13T08:35:56.050] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:56.064] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:35:56.131] [INFO] cheese - inserting 1000 documents. first: File:WKO logo.PNG and last: The Exiles (Space: 1999) -[2018-02-13T08:35:56.182] [INFO] cheese - inserting 1000 documents. first: ANBO 41 and last: File:Jefferson Blvd South.jpg -[2018-02-13T08:35:56.198] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:35:56.235] [INFO] cheese - inserting 1000 documents. first: Category:People from Florence County, Wisconsin and last: CCAMLR Ecosystem Monitoring Programme -[2018-02-13T08:35:56.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/woodtreks.com and last: Rajsk -[2018-02-13T08:35:56.256] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:35:56.290] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:35:56.307] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:35:56.397] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2012 January 4 and last: Madhupur, India (disambiguation) -[2018-02-13T08:35:56.426] [INFO] cheese - inserting 1000 documents. first: Morris Hudson and last: Martha Euphemia Lofton Haynes -[2018-02-13T08:35:56.429] [INFO] cheese - inserting 1000 documents. first: Battle of Stepney and last: H. G. Van de Sande Bakhuyzen -[2018-02-13T08:35:56.439] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T08:35:56.477] [INFO] cheese - inserting 1000 documents. first: File:Chien-Ying Chang02.jpg and last: El Rey (Tito Puente album) -[2018-02-13T08:35:56.482] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:35:56.514] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:35:56.533] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:56.682] [INFO] cheese - inserting 1000 documents. first: Ishamael ax and last: Aashirwaad -[2018-02-13T08:35:56.718] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:35:56.730] [INFO] cheese - inserting 1000 documents. first: Csávoly and last: File:Marlon PE.jpg -[2018-02-13T08:35:56.733] [INFO] cheese - inserting 1000 documents. first: CCAMLR Ecosystem Monitoring Program and last: Breže, Ribnica -[2018-02-13T08:35:56.746] [INFO] cheese - inserting 1000 documents. first: Rzepniewo and last: Gnilec -[2018-02-13T08:35:56.769] [INFO] cheese - inserting 1000 documents. first: Madonna del Prato (disambiguation) and last: File:AAIC.gif -[2018-02-13T08:35:56.779] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:35:56.798] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:35:56.798] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:35:56.829] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:35:56.869] [INFO] cheese - inserting 1000 documents. first: Hussain as Waris-e-Anbia and last: Aragonese nationalism -[2018-02-13T08:35:56.930] [INFO] cheese - inserting 1000 documents. first: Tropeiro seedeater and last: Kandy Hospital -[2018-02-13T08:35:56.951] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:35:57.083] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:35:57.223] [INFO] cheese - inserting 1000 documents. first: SMS Greif and last: Zero Divide: The Final Conflict -[2018-02-13T08:35:57.239] [INFO] cheese - inserting 1000 documents. first: (5) Astraea and last: United Democrats -[2018-02-13T08:35:57.265] [INFO] cheese - inserting 1000 documents. first: 1964 Brinks Hotel bombing and last: Wikipedia:Version 1.0 Editorial Team/Good Charlotte articles by quality log -[2018-02-13T08:35:57.273] [INFO] cheese - inserting 1000 documents. first: Grenvillites and last: List of early-modern journals -[2018-02-13T08:35:57.277] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:57.322] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:35:57.330] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:35:57.336] [INFO] cheese - inserting 1000 documents. first: Periyakulam (Lok Sabha constituency) and last: File:Edgewater Plant.jpg -[2018-02-13T08:35:57.341] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:35:57.427] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:35:57.475] [INFO] cheese - inserting 1000 documents. first: List of Scottish football transfers summer 2016 and last: Syracuse Orange women's tennis -[2018-02-13T08:35:57.496] [INFO] cheese - inserting 1000 documents. first: Royal Spanish Football Federation and last: Dave Clark (soul musician) -[2018-02-13T08:35:57.584] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:35:57.593] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:57.667] [INFO] cheese - inserting 1000 documents. first: Template:Albany Great Danes men's basketball template and last: Lifestyle advice -[2018-02-13T08:35:57.731] [INFO] cheese - inserting 1000 documents. first: Joe Roman and last: Polonskyi Raion -[2018-02-13T08:35:57.742] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:35:57.813] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics German Type UB I submarines good content and last: Annette Dasch -[2018-02-13T08:35:57.785] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:57.873] [INFO] cheese - inserting 1000 documents. first: Motorola Motofone and last: Danny bonaduce -[2018-02-13T08:35:57.940] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:35:57.960] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:35:58.043] [INFO] cheese - inserting 1000 documents. first: Build Service and last: E93 -[2018-02-13T08:35:58.117] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:35:58.123] [INFO] cheese - inserting 1000 documents. first: Madras College and last: GNLU -[2018-02-13T08:35:58.210] [INFO] cheese - inserting 1000 documents. first: Georgia State Panthers women's tennis and last: Category:Populated places in Luzon -[2018-02-13T08:35:58.248] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:35:58.339] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:58.349] [INFO] cheese - inserting 1000 documents. first: Star-Spangled Kid and last: Social policy -[2018-02-13T08:35:58.450] [INFO] cheese - inserting 1000 documents. first: McKinley Township (disambiguation) and last: Spandau Type 3 20mm cannon -[2018-02-13T08:35:58.493] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:35:58.550] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:35:58.658] [INFO] cheese - inserting 1000 documents. first: Bonne of Artois and last: Jaguaré, Espírito Santo -[2018-02-13T08:35:58.659] [INFO] cheese - inserting 1000 documents. first: Martha McLean - Anza Narrows Park and last: Burlington Northern Depot -[2018-02-13T08:35:58.665] [INFO] cheese - inserting 1000 documents. first: Scantling draft and last: Wolf Boy -[2018-02-13T08:35:58.674] [INFO] cheese - inserting 1000 documents. first: Mandarthi and last: Felix Houphouet Boigny -[2018-02-13T08:35:58.721] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:58.726] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:58.752] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:35:58.754] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:35:58.867] [INFO] cheese - inserting 1000 documents. first: Star Wars: The Empire Strikes Back (1992 video game) and last: Category:Currencies of the United States -[2018-02-13T08:35:58.877] [INFO] cheese - inserting 1000 documents. first: Roll over protection structure and last: Lowestoft and East Suffolk Maritime Museum -[2018-02-13T08:35:58.954] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:35:58.969] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:35:59.061] [INFO] cheese - inserting 1000 documents. first: Tinea tetricella and last: File:Luke Banned 1990 Original.jpg -[2018-02-13T08:35:59.131] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:59.174] [INFO] cheese - inserting 1000 documents. first: Bradford Council and last: Canadian federal election 1968 -[2018-02-13T08:35:59.218] [INFO] cheese - inserting 1000 documents. first: Jean Graton and last: AMC Amitron -[2018-02-13T08:35:59.223] [INFO] cheese - inserting 1000 documents. first: File:James Augustus Grant.jpg and last: Coffee Shop Murder Case -[2018-02-13T08:35:59.225] [INFO] cheese - inserting 1000 documents. first: Template:King George's Fields and last: Embassy of Russia in Yaoundé -[2018-02-13T08:35:59.232] [INFO] cheese - inserting 1000 documents. first: Félix Houphouët Boigny and last: Andrew McNair -[2018-02-13T08:35:59.232] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:59.288] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:59.290] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:35:59.311] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:35:59.307] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:35:59.407] [INFO] cheese - inserting 1000 documents. first: 47P/Ashbrook–Jackson and last: File:JimmyCC.JPG -[2018-02-13T08:35:59.461] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Chicago Justice (TV series) and last: Acacia arrecta -[2018-02-13T08:35:59.524] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:35:59.550] [INFO] cheese - inserting 1000 documents. first: Amir Suljić and last: Facial mocap -[2018-02-13T08:35:59.539] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:35:59.653] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:35:59.747] [INFO] cheese - inserting 1000 documents. first: Scar Top and last: Albert, Prince of Wales -[2018-02-13T08:35:59.867] [INFO] cheese - inserting 1000 documents. first: Oratorio Society of Chicago and last: Category:Early computers articles by quality and importance -[2018-02-13T08:35:59.898] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:59.918] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:35:59.969] [INFO] cheese - inserting 1000 documents. first: Category:Livetronica music groups and last: Wikipedia:WikiProject Spam/LinkReports/tienlen.net -[2018-02-13T08:36:00.053] [INFO] cheese - inserting 1000 documents. first: Detective Boys Survival Case and last: Template:Persian Gulf -[2018-02-13T08:36:00.061] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:36:00.130] [INFO] cheese - inserting 1000 documents. first: Edward Streeter and last: South African Students' Association -[2018-02-13T08:36:00.148] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:36:00.265] [INFO] cheese - inserting 1000 documents. first: Edward William Barankin and last: Olly Schoberova -[2018-02-13T08:36:00.266] [INFO] cheese - inserting 1000 documents. first: Mariyampil and last: Libya economy -[2018-02-13T08:36:00.269] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:36:00.317] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:36:00.337] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:36:00.463] [INFO] cheese - inserting 1000 documents. first: Vrbas (river) and last: Psammoperca waigiensis -[2018-02-13T08:36:00.464] [INFO] cheese - inserting 1000 documents. first: File:Reserve Forest PGR1.jpg and last: Majdan Policki -[2018-02-13T08:36:00.467] [INFO] cheese - inserting 1000 documents. first: Fourth Grade (South Park) and last: Ocnogyna valantini -[2018-02-13T08:36:00.535] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:36:00.554] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:36:00.570] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:36:00.623] [INFO] cheese - inserting 1000 documents. first: 2010 Canadian Senior Curling Championships and last: 293 A.2d 747 -[2018-02-13T08:36:00.685] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Australian House of Representatives for Diamond Valley and last: File:VotB I Think I Love You.jpg -[2018-02-13T08:36:00.692] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:36:00.726] [INFO] cheese - inserting 1000 documents. first: Tanzania economy and last: The Strawberry Roan -[2018-02-13T08:36:00.742] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:36:00.770] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:36:00.869] [INFO] cheese - inserting 1000 documents. first: MDash and last: Category:Serbian magazines -[2018-02-13T08:36:00.957] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:36:01.019] [INFO] cheese - inserting 1000 documents. first: Cramer interpretation and last: Lloyds and Bolsa International Bank -[2018-02-13T08:36:01.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Heinz-Wolfgang Schnaufer and last: Kapeenkoski -[2018-02-13T08:36:01.078] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:36:01.157] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:36:01.241] [INFO] cheese - inserting 1000 documents. first: K257AA and last: Anti-RANKL antibody -[2018-02-13T08:36:01.243] [INFO] cheese - inserting 1000 documents. first: Crisp Gascoyne and last: Livermore Optical Transient Imaging System -[2018-02-13T08:36:01.304] [INFO] cheese - inserting 1000 documents. first: Weymouth Wildcats and last: Category:B-Class Fishing articles -[2018-02-13T08:36:01.306] [INFO] cheese - inserting 1000 documents. first: Galtieri and last: Manitoba Labour Party -[2018-02-13T08:36:01.305] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:36:01.323] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:36:01.381] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:36:01.388] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:36:01.465] [INFO] cheese - inserting 1000 documents. first: Nowiny Żukowskie and last: Judo at the 2008 Summer Olympics – Men's 100 kg -[2018-02-13T08:36:01.600] [INFO] cheese - inserting 1000 documents. first: Lloyds & Bolsa International Bank and last: Anglia Hastings & Thanet Building Society -[2018-02-13T08:36:01.609] [INFO] cheese - inserting 1000 documents. first: File:Blake, On the Balcony.jpg and last: Koloniale Tentoonstelling (1914) -[2018-02-13T08:36:01.612] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:36:01.705] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:01.709] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:36:01.809] [INFO] cheese - inserting 1000 documents. first: Workers' Power (UK) and last: American Beauty (Bruce Springsteen EP) -[2018-02-13T08:36:01.900] [INFO] cheese - inserting 1000 documents. first: KrohnAir and last: James Kelley House (disambiguation) -[2018-02-13T08:36:01.933] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:36:01.965] [INFO] cheese - inserting 1000 documents. first: Kulabad, Lorestan and last: Cleora repetita -[2018-02-13T08:36:01.983] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:36:02.058] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:36:02.107] [INFO] cheese - inserting 1000 documents. first: Robert Boyd Russell and last: Shadows (Wagon Christ single) -[2018-02-13T08:36:02.175] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:36:02.281] [INFO] cheese - inserting 1000 documents. first: Judo at the 2008 Summer Olympics – Men's +100 kg and last: 98th Hellenic National Guard Higher Command -[2018-02-13T08:36:02.283] [INFO] cheese - inserting 1000 documents. first: Lake Zumbra and last: List of BSA local councils and districts in Maryland -[2018-02-13T08:36:02.325] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:36:02.338] [INFO] cheese - inserting 1000 documents. first: The Firstborn Is Dead and last: André Lwoff -[2018-02-13T08:36:02.345] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:36:02.385] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/1997 September 5 and last: Nataliia Godunko -[2018-02-13T08:36:02.425] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:36:02.438] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Szczecin and last: Adrian Shooter -[2018-02-13T08:36:02.455] [INFO] cheese - inserting 1000 documents. first: Bostall Heath and Woods and last: Category:People from Jos -[2018-02-13T08:36:02.456] [INFO] cheese - inserting 1000 documents. first: Boarmia repetita and last: Der Polizeipräsident in Berlin -[2018-02-13T08:36:02.457] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:36:02.498] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:36:02.516] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:02.527] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:36:02.687] [INFO] cheese - inserting 1000 documents. first: Quesnel (sternwheeler) and last: US 29 in Maryland -[2018-02-13T08:36:02.713] [INFO] cheese - inserting 1000 documents. first: Youth exclusion and last: Mackovic -[2018-02-13T08:36:02.766] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:36:02.768] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:36:02.801] [INFO] cheese - inserting 1000 documents. first: Caminhos da Colônia and last: Marie Equi -[2018-02-13T08:36:02.875] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:36:02.882] [INFO] cheese - inserting 1000 documents. first: Karl-Heinz Ertel and last: Wikipedia:Articles for deletion/Midtown footbridge -[2018-02-13T08:36:02.906] [INFO] cheese - inserting 1000 documents. first: Historical process of beatification and canonization and last: Chilean battleship Capitán Prat -[2018-02-13T08:36:02.942] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rizwan Library and last: Jose Atienza, Jr. -[2018-02-13T08:36:02.965] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:36:03.003] [INFO] cheese - inserting 1000 documents. first: Pagara fuscipes and last: Noturus elegans -[2018-02-13T08:36:03.022] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:36:03.059] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:36:03.125] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:03.233] [INFO] cheese - inserting 1000 documents. first: Mikhael Gromov and last: Contra terrene -[2018-02-13T08:36:03.308] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:36:03.352] [INFO] cheese - inserting 1000 documents. first: National Symphony Orchestra of Cuba and last: Sylvain Deplace -[2018-02-13T08:36:03.378] [INFO] cheese - inserting 1000 documents. first: Słupie, Gmina Bakałarzewo and last: Nowe Rzepki -[2018-02-13T08:36:03.431] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:36:03.455] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:36:03.469] [INFO] cheese - inserting 1000 documents. first: Hunt, Texas and last: Commanding what is just -[2018-02-13T08:36:03.547] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Oregonia and last: Stonehaven (Media, Pennsylvania) -[2018-02-13T08:36:03.557] [INFO] cheese - inserting 1000 documents. first: Percina squamata and last: Extended System Description Table -[2018-02-13T08:36:03.574] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:03.606] [INFO] cheese - inserting 1000 documents. first: Ford 400 and last: W288CV -[2018-02-13T08:36:03.616] [INFO] cheese - inserting 1000 documents. first: Category:Headlands of Syria and last: Dyurtiulinsky Raion -[2018-02-13T08:36:03.627] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:03.638] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:36:03.668] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:36:03.699] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:36:03.886] [INFO] cheese - inserting 1000 documents. first: Nowe Żochy and last: Central American jumping pitviper -[2018-02-13T08:36:03.932] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:36:03.960] [INFO] cheese - inserting 1000 documents. first: Fencehouses and last: Attack of the fifty foot woman -[2018-02-13T08:36:04.020] [INFO] cheese - inserting 1000 documents. first: ESDT and last: She-balsam -[2018-02-13T08:36:04.026] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:36:04.052] [INFO] cheese - inserting 1000 documents. first: Iraqi Premier League 2001-02 and last: Bailey Junior High -[2018-02-13T08:36:04.076] [INFO] cheese - inserting 1000 documents. first: Ciro Gomes and last: Light middlewight -[2018-02-13T08:36:04.088] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:04.110] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T08:36:04.130] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:36:04.146] [INFO] cheese - inserting 1000 documents. first: Pietro Ercole Fava and last: Category:1983 establishments in Pakistan -[2018-02-13T08:36:04.171] [INFO] cheese - inserting 1000 documents. first: Shiozawa, Niigata and last: Smolyan -[2018-02-13T08:36:04.205] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:04.249] [INFO] cheese - inserting 1000 documents. first: Category:Baroque Revival architecture in Spain and last: Isthmura -[2018-02-13T08:36:04.281] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:36:04.318] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:36:04.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jordan sydow and last: Wikipedia:WikiProject Spam/COIReports/2008, Aug 1 -[2018-02-13T08:36:04.446] [INFO] cheese - inserting 1000 documents. first: Paweł Klisz and last: 2002 Leeward Islands Junior Championships in Athletics -[2018-02-13T08:36:04.465] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:04.539] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T08:36:04.597] [INFO] cheese - inserting 1000 documents. first: Steve Jensen and last: Category:Miss World 1991 delegates -[2018-02-13T08:36:04.607] [INFO] cheese - inserting 1000 documents. first: Patricia Vizitiu and last: Wikipedia:Suspected copyright violations/2010-03-19 -[2018-02-13T08:36:04.647] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:36:04.685] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:36:04.733] [INFO] cheese - inserting 1000 documents. first: Category:1986 establishments in Iran and last: Fahaheel (football club) -[2018-02-13T08:36:04.793] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:36:04.801] [INFO] cheese - inserting 1000 documents. first: City of Ekurhuleni Metropolitan Municipality and last: Category:East Carolina Pirates football coaches -[2018-02-13T08:36:04.821] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Isthmura and last: Cristóforo Chrisostome Carletti -[2018-02-13T08:36:04.879] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:36:04.924] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:36:05.085] [INFO] cheese - inserting 1000 documents. first: Susan Smith Blackburn Award and last: 1997 Davis Cup Europe/Africa Zone -[2018-02-13T08:36:05.097] [INFO] cheese - inserting 1000 documents. first: Arboreal decomposition and last: Wikipedia:Articles for deletion/Richard Swann -[2018-02-13T08:36:05.122] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:36:05.139] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:36:05.157] [INFO] cheese - inserting 1000 documents. first: Mahmood Mosque and last: Category:Railway lines opened in 1876 -[2018-02-13T08:36:05.274] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:36:05.285] [INFO] cheese - inserting 1000 documents. first: Expressive language disorder and last: HMS Caesar -[2018-02-13T08:36:05.312] [INFO] cheese - inserting 1000 documents. first: Roy noble and last: Black hayate -[2018-02-13T08:36:05.326] [INFO] cheese - inserting 1000 documents. first: Delaware County National Bank and last: Tinea (Eucarphia) resectella -[2018-02-13T08:36:05.369] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:36:05.372] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:36:05.386] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:36:05.482] [INFO] cheese - inserting 1000 documents. first: Rhinegrave of Salm and last: Amsterdam Exhibition -[2018-02-13T08:36:05.543] [INFO] cheese - inserting 1000 documents. first: Template:Humornotsuggested and last: Palmov Victor -[2018-02-13T08:36:05.556] [INFO] cheese - inserting 1000 documents. first: Ignorance is Bliss (album) and last: Euterpe leucodrosime -[2018-02-13T08:36:05.559] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:05.603] [INFO] cheese - inserting 1000 documents. first: Rock The Nation and last: Maud Shackle -[2018-02-13T08:36:05.620] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:36:05.636] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:36:05.668] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:36:05.711] [INFO] cheese - inserting 1000 documents. first: Category:Railway lines opened in 1897 and last: File:Keane-Call Me What You Like.jpg -[2018-02-13T08:36:05.761] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:36:05.827] [INFO] cheese - inserting 1000 documents. first: 1982–83 Watford F.C. season and last: File:CanYouGiveIt.jpg -[2018-02-13T08:36:05.852] [INFO] cheese - inserting 1000 documents. first: Earth Omen and last: Demographics of the Republic of China -[2018-02-13T08:36:05.864] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:36:05.920] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:36:05.995] [INFO] cheese - inserting 1000 documents. first: Rangitikei by-election, 1909 and last: Thermal power station Regina Margherita -[2018-02-13T08:36:06.049] [INFO] cheese - inserting 1000 documents. first: I'm Here (film) and last: JUMPstart RNA motif -[2018-02-13T08:36:06.051] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:36:06.068] [INFO] cheese - inserting 1000 documents. first: Kenan and kel and last: Behrends -[2018-02-13T08:36:06.077] [INFO] cheese - inserting 1000 documents. first: Terminology Coordination Unit of the European Parliament and last: Portal:Tiruchirappalli -[2018-02-13T08:36:06.087] [INFO] cheese - inserting 1000 documents. first: Kevin rose and last: Tony Geary -[2018-02-13T08:36:06.113] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:36:06.128] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:36:06.147] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:36:06.157] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:36:06.231] [INFO] cheese - inserting 1000 documents. first: Capt. Oliver Bearse House and last: Category:List-Class Alternate History articles -[2018-02-13T08:36:06.305] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:36:06.313] [INFO] cheese - inserting 1000 documents. first: Baroness Louise Lehzen and last: Falcine -[2018-02-13T08:36:06.377] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:36:06.457] [INFO] cheese - inserting 1000 documents. first: John Lindsay, 20th Earl of Crawford and last: Wikipedia:WikiProject Video games/Peer review/Breed (video game) -[2018-02-13T08:36:06.620] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:06.654] [INFO] cheese - inserting 1000 documents. first: Sheffield Municipal election, 1960 and last: Same-sex marriage in Kentucky -[2018-02-13T08:36:06.752] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:36:06.767] [INFO] cheese - inserting 1000 documents. first: Cheyenne Westphal and last: Template:2016-17 Iran Pro League table -[2018-02-13T08:36:06.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RedandNater.com (2nd nomination) and last: St. John's Evangelical Lutheran Church (Springfield, Ohio) -[2018-02-13T08:36:06.846] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:36:06.875] [INFO] cheese - inserting 1000 documents. first: Shadow (Final Fantasy) and last: Paul Westerburg -[2018-02-13T08:36:06.884] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:36:06.962] [INFO] cheese - inserting 1000 documents. first: Behrens and last: Soviet coat of arms -[2018-02-13T08:36:07.031] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:36:07.050] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:36:07.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ambassadors/Courses/Psychology Capstone64APSWI999/Timeline and last: European White-front -[2018-02-13T08:36:07.141] [INFO] cheese - inserting 1000 documents. first: WTO (disambiguation) and last: B-58 -[2018-02-13T08:36:07.150] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:36:07.259] [INFO] cheese - inserting 1000 documents. first: Charles K. McNeil and last: United Nations Observer Group in Central America -[2018-02-13T08:36:07.278] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:36:07.335] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:36:07.345] [INFO] cheese - inserting 1000 documents. first: Nestor von Henko and last: Carl A. Kemme -[2018-02-13T08:36:07.410] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:36:07.453] [INFO] cheese - inserting 1000 documents. first: Template:2016-17 National League 1 Table and last: File:Crying - Don McLean.jpg -[2018-02-13T08:36:07.461] [INFO] cheese - inserting 1000 documents. first: Ramshackled and last: Peotr Kapitsa -[2018-02-13T08:36:07.512] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:36:07.515] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:36:07.552] [INFO] cheese - inserting 1000 documents. first: Superman:Speeding Bullet and last: File:Ciesa2.JPG -[2018-02-13T08:36:07.597] [INFO] cheese - inserting 1000 documents. first: Due Diligence and last: Lyse Doucet -[2018-02-13T08:36:07.604] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:36:07.647] [INFO] cheese - inserting 1000 documents. first: Greenland White-front and last: William Grieve (disambiguation) -[2018-02-13T08:36:07.673] [INFO] cheese - inserting 1000 documents. first: File:Munnar tea field.jpg and last: Mask of satan -[2018-02-13T08:36:07.675] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:36:07.706] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:07.711] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T08:36:07.794] [INFO] cheese - inserting 1000 documents. first: Template:Vermont Catamounts men's basketball navbox and last: Template:TFA title/March 7, 2014 -[2018-02-13T08:36:07.830] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:36:07.922] [INFO] cheese - inserting 1000 documents. first: Category:Honor societies and last: List of Australian divisions in WWI -[2018-02-13T08:36:07.978] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/J.A.T.D.Nishantha and last: WCPH -[2018-02-13T08:36:07.986] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:07.988] [INFO] cheese - inserting 1000 documents. first: Iolas blue and last: History of Berkeley, California -[2018-02-13T08:36:07.992] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Kaunas County and last: John Williams Jr -[2018-02-13T08:36:08.039] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:36:08.047] [INFO] cheese - inserting 1000 documents. first: Dospat Peak and last: Wikipedia:Articles for deletion/Water empire -[2018-02-13T08:36:08.057] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:36:08.072] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:36:08.080] [INFO] cheese - inserting 1000 documents. first: McJones and last: Calixto García de Luna e Izquierdo -[2018-02-13T08:36:08.116] [INFO] cheese - inserting 1000 documents. first: The mask of satan and last: Category:Egyptian chefs -[2018-02-13T08:36:08.121] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:36:08.182] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:36:08.234] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:08.244] [INFO] cheese - inserting 1000 documents. first: Category:SYN Media shows and last: Henry Garland Bennett -[2018-02-13T08:36:08.356] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:36:08.602] [INFO] cheese - inserting 1000 documents. first: Bergsma and last: Southern Illinois Normal College -[2018-02-13T08:36:08.653] [INFO] cheese - inserting 1000 documents. first: Arctic Air (TV series) and last: Lockheed XV-4B Hummingbird -[2018-02-13T08:36:08.658] [INFO] cheese - inserting 1000 documents. first: Power of Siberia and last: Strathcona Transit -[2018-02-13T08:36:08.680] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:36:08.703] [INFO] cheese - inserting 1000 documents. first: File:CBCfront.jpg and last: Toronto Electric Light Company -[2018-02-13T08:36:08.716] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:36:08.764] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:36:08.776] [INFO] cheese - inserting 1000 documents. first: Euro 2016 squads and last: Template:Taxonomy/Toxotidae -[2018-02-13T08:36:08.792] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:08.828] [INFO] cheese - inserting 1000 documents. first: Nigel King and last: Donough O'Brien (cricketer) -[2018-02-13T08:36:08.883] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:36:08.941] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:09.024] [INFO] cheese - inserting 1000 documents. first: José Miguel Fernández and last: Eddings Point Community Praise House -[2018-02-13T08:36:09.081] [INFO] cheese - inserting 1000 documents. first: Obdurodon dicksoni and last: Binky (Harry Potter) -[2018-02-13T08:36:09.093] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:36:09.253] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:36:09.361] [INFO] cheese - inserting 1000 documents. first: Nikolai Rimsky-Korsakoff and last: Atsuhiko Ejiri -[2018-02-13T08:36:09.395] [INFO] cheese - inserting 1000 documents. first: Black-eye Goby and last: Cottonwood Creek(Kern County) -[2018-02-13T08:36:09.419] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:09.448] [INFO] cheese - inserting 1000 documents. first: Honey Bottom and last: File:Posterreunionusx.jpg -[2018-02-13T08:36:09.462] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:36:09.501] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Toxotes and last: Category:Governors of Samsun -[2018-02-13T08:36:09.527] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:36:09.549] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:09.566] [INFO] cheese - inserting 1000 documents. first: Paulsgrove F.C. and last: Wikipedia:ESP/PROG -[2018-02-13T08:36:09.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/freakmuseum.blogspot.com and last: Betsinga language -[2018-02-13T08:36:09.621] [INFO] cheese - inserting 1000 documents. first: Frederick Phillips and last: Category:Nations at the Asian Games -[2018-02-13T08:36:09.642] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:36:09.636] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:36:09.708] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:36:09.847] [INFO] cheese - inserting 1000 documents. first: NWCDEX and last: History of Muslim Egypt -[2018-02-13T08:36:09.865] [INFO] cheese - inserting 1000 documents. first: Mundair Kalan and last: Masa'aki Mochizuki -[2018-02-13T08:36:09.881] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T08:36:09.924] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T08:36:09.975] [INFO] cheese - inserting 1000 documents. first: Walt Disney World Inside Out and last: Category:17th-century Indian literature -[2018-02-13T08:36:09.979] [INFO] cheese - inserting 1000 documents. first: Whistler tip and last: Laona Township, Minnesota -[2018-02-13T08:36:09.996] [INFO] cheese - inserting 1000 documents. first: Super-Dude and last: Jon Lane Kent -[2018-02-13T08:36:10.021] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:36:10.025] [INFO] cheese - inserting 1000 documents. first: Fado (character) and last: Tree sitter -[2018-02-13T08:36:10.071] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:36:10.098] [INFO] cheese - inserting 1000 documents. first: Major (Canada) and last: Port Glasgow Athletic -[2018-02-13T08:36:10.122] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:36:10.155] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:36:10.206] [INFO] cheese - inserting 1000 documents. first: Cricket (1914 automobile) and last: Inter.funda.stifle -[2018-02-13T08:36:10.211] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:36:10.285] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:36:10.392] [INFO] cheese - inserting 1000 documents. first: Special routes of U.S. Route 221 and last: Porgi l'altra guancia -[2018-02-13T08:36:10.401] [INFO] cheese - inserting 1000 documents. first: File:Intango.jpg and last: Weyman Bennett -[2018-02-13T08:36:10.473] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:36:10.477] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:36:10.579] [INFO] cheese - inserting 1000 documents. first: Category:Epsom and last: Ministry of Environment (Cambodia) -[2018-02-13T08:36:10.602] [INFO] cheese - inserting 1000 documents. first: Fruit stickers and last: Julio Canani -[2018-02-13T08:36:10.674] [INFO] cheese - inserting 1000 documents. first: Tang Jun (politician) and last: EgyptAir MS804 -[2018-02-13T08:36:10.725] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:36:10.734] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:36:10.837] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:36:10.922] [INFO] cheese - inserting 1000 documents. first: Risk (Terminaator album) and last: SMJP -[2018-02-13T08:36:10.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2006 February 1 and last: Astoria (OR) -[2018-02-13T08:36:11.023] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:11.103] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:36:11.116] [INFO] cheese - inserting 1000 documents. first: Adamangalampudur and last: Philip Vallance -[2018-02-13T08:36:11.168] [INFO] cheese - inserting 1000 documents. first: Immunities and last: Liberalism and radicalism in Bulgaria -[2018-02-13T08:36:11.207] [INFO] cheese - inserting 1000 documents. first: WGND-FM and last: Kazuya Maeda (footballer, born 1984) -[2018-02-13T08:36:11.219] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:36:11.283] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:36:11.300] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:36:11.463] [INFO] cheese - inserting 1000 documents. first: Monastery of Nonantola and last: Kassanda -[2018-02-13T08:36:11.481] [INFO] cheese - inserting 1000 documents. first: COPS (tv show) and last: Kevin Sullivan (communications professional) -[2018-02-13T08:36:11.497] [INFO] cheese - inserting 1000 documents. first: Kirschst. and last: Template:Leinster Hurling Team 2014 -[2018-02-13T08:36:11.517] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:11.523] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:36:11.543] [INFO] cheese - inserting 1000 documents. first: Stanley "Stan" Marsh and last: Take Me Out (disambiguation) -[2018-02-13T08:36:11.569] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:36:11.617] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:36:11.657] [INFO] cheese - inserting 1000 documents. first: Soldier Mountains and last: Category:Secularism in Canada -[2018-02-13T08:36:11.669] [INFO] cheese - inserting 1000 documents. first: Frente Amplio Popular and last: The Second Album (The Spencer Davis Group album) -[2018-02-13T08:36:11.704] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:36:11.711] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:36:11.743] [INFO] cheese - inserting 1000 documents. first: Forest Grove (OR) and last: Wikipedia:Articles for deletion/Roman verone -[2018-02-13T08:36:11.811] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:36:11.931] [INFO] cheese - inserting 1000 documents. first: 2016 Sri Lanka floods and last: Frank Held -[2018-02-13T08:36:11.946] [INFO] cheese - inserting 1000 documents. first: Lloyd McIntyre and last: Template:Asteras Tripolis squad -[2018-02-13T08:36:11.963] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:36:11.983] [INFO] cheese - inserting 1000 documents. first: Sorry Seems to be the Hardest Word and last: Asteroid dust -[2018-02-13T08:36:11.991] [INFO] cheese - inserting 1000 documents. first: Gingerbread man and last: Omotegō, Fukushima -[2018-02-13T08:36:12.001] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:36:12.026] [INFO] cheese - inserting 1000 documents. first: Philippine Senate elections, 1931 and last: Wikipedia:WikiProject Video games/Command & Conquer -[2018-02-13T08:36:12.041] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:36:12.075] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:36:12.081] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:36:12.125] [INFO] cheese - inserting 1000 documents. first: First Congregational Church (Vermontville, Michigan) and last: FIBA's 50 Greatest Players -[2018-02-13T08:36:12.176] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:36:12.228] [INFO] cheese - inserting 1000 documents. first: Rajeev Kanakala and last: Category:Stone circles in Ireland -[2018-02-13T08:36:12.301] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:36:12.309] [INFO] cheese - inserting 1000 documents. first: Elmer McCurdy and last: Asian small-clawed otters -[2018-02-13T08:36:12.367] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:12.408] [INFO] cheese - inserting 1000 documents. first: List of tallest buildings in Mississippi and last: File:Absolutedeceptionposter.jpg -[2018-02-13T08:36:12.521] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:36:12.589] [INFO] cheese - inserting 1000 documents. first: Category:Memphis Tigers athletic directors and last: Rail transport in China -[2018-02-13T08:36:12.651] [INFO] cheese - inserting 1000 documents. first: Epidermal growth factor family and last: Template:Disneymania -[2018-02-13T08:36:12.691] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:36:12.741] [INFO] cheese - inserting 1000 documents. first: Illerup inscriptions and last: 163rd (Norfolk & Suffolk) Brigade -[2018-02-13T08:36:12.782] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:12.846] [INFO] cheese - inserting 1000 documents. first: Asteroidal dust and last: The Honourable the Commons of the United Kingdom of Great Britain and Northern Ireland in Parliament assembled -[2018-02-13T08:36:12.893] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:36:13.023] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:36:13.060] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2010 South American Games – Men's Madison and last: St Bridget's, Brigham -[2018-02-13T08:36:13.129] [INFO] cheese - inserting 1000 documents. first: Kaub and last: Category:Lebanese films -[2018-02-13T08:36:13.158] [INFO] cheese - inserting 1000 documents. first: Shacal-2 and last: Aleksandr Sergeyevich Pushkin -[2018-02-13T08:36:13.163] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:36:13.252] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:36:13.322] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:36:13.361] [INFO] cheese - inserting 1000 documents. first: Adilabad mandal and last: Natsuto Wada -[2018-02-13T08:36:13.441] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:36:13.481] [INFO] cheese - inserting 1000 documents. first: Melba Manners and last: Esrefpasa -[2018-02-13T08:36:13.504] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Computer Guy 2/Archive and last: Wikipedia:Articles for deletion/Spandex fetishism -[2018-02-13T08:36:13.509] [INFO] cheese - inserting 1000 documents. first: USS Manayunk (AN-81) and last: R 9 -[2018-02-13T08:36:13.555] [INFO] cheese - inserting 1000 documents. first: The Singles Collection (Silversun Pickups album) and last: File:Prephenate dehydrogenase to arogenate.png -[2018-02-13T08:36:13.556] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:36:13.572] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:36:13.607] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:36:13.642] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:36:13.671] [INFO] cheese - inserting 1000 documents. first: St. Bridget's, Brigham and last: Transfers of Undertakings Directive 2001 -[2018-02-13T08:36:13.727] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:36:13.829] [INFO] cheese - inserting 1000 documents. first: Strange Bedfellows (DS9 episode) and last: Asian ball-jointed doll -[2018-02-13T08:36:13.897] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:36:13.960] [INFO] cheese - inserting 1000 documents. first: HxC and last: Wikipedia:Articles for deletion/The Story of Tohoshi -[2018-02-13T08:36:13.987] [INFO] cheese - inserting 1000 documents. first: Francisco de Sá Carneiro and last: Aperture synthesis -[2018-02-13T08:36:14.009] [INFO] cheese - inserting 1000 documents. first: Conus chytreus and last: Category:Loyola Ramblers women's basketball -[2018-02-13T08:36:14.008] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:36:14.032] [INFO] cheese - inserting 1000 documents. first: Ebersberg district and last: Erin Nicole Peterson -[2018-02-13T08:36:14.052] [INFO] cheese - inserting 1000 documents. first: File:Histidinol Phosphate Trans.jpg and last: Maryland State Highway 105 -[2018-02-13T08:36:14.060] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:14.070] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:36:14.099] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian speculative fiction artists and last: Category:Fireworks in Canada -[2018-02-13T08:36:14.109] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:36:14.130] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:36:14.239] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:36:14.569] [INFO] cheese - inserting 1000 documents. first: File:Billiongravy.jpg and last: Savery, Wyoming -[2018-02-13T08:36:14.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/k-popexpress.com and last: Distratto -[2018-02-13T08:36:14.583] [INFO] cheese - inserting 1000 documents. first: Roseville Area Schools and last: Scouting in Finland -[2018-02-13T08:36:14.596] [INFO] cheese - inserting 1000 documents. first: Maryland State Route 105 and last: Runyonia -[2018-02-13T08:36:14.628] [INFO] cheese - inserting 1000 documents. first: Australian Liberal Students Federation and last: Ecclesiastical Commissioners -[2018-02-13T08:36:14.648] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:36:14.659] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:36:14.674] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:14.714] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:14.748] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:36:14.805] [INFO] cheese - inserting 1000 documents. first: 1946 Pittsburgh Panthers football team and last: Sucedió en Sevilla -[2018-02-13T08:36:14.905] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:15.033] [INFO] cheese - inserting 1000 documents. first: Nintendo Entertainment System hardware clone and last: RJD2 -[2018-02-13T08:36:15.134] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:36:15.155] [INFO] cheese - inserting 1000 documents. first: Category:1962 in chess and last: Template:Microsoft Expression -[2018-02-13T08:36:15.162] [INFO] cheese - inserting 1000 documents. first: Ir herbowo and last: National Midget Hockey Championship -[2018-02-13T08:36:15.162] [INFO] cheese - inserting 1000 documents. first: Henniker Town Hall and last: Template:Country data Liguria/doc -[2018-02-13T08:36:15.205] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:36:15.211] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:36:15.261] [INFO] cheese - inserting 1000 documents. first: Ren Chengyuan and last: Polycarpos Yiorkadjis -[2018-02-13T08:36:15.285] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:36:15.356] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:36:15.371] [INFO] cheese - inserting 1000 documents. first: Louis Cahuzac and last: File:World-travel.jpg -[2018-02-13T08:36:15.403] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1936 Summer Olympics - Men's eight and last: Draft:Mark Singer -[2018-02-13T08:36:15.444] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:36:15.455] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:15.558] [INFO] cheese - inserting 1000 documents. first: ARD 2001 and last: Portal:Gabon/Featured picture -[2018-02-13T08:36:15.696] [INFO] cheese - batch complete in: 1.969 secs -[2018-02-13T08:36:15.748] [INFO] cheese - inserting 1000 documents. first: Dowlatabad, Khorramabad and last: AAIIB -[2018-02-13T08:36:15.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rachelmacnair.com and last: Cambaroides koshewnikowi -[2018-02-13T08:36:15.830] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:36:15.875] [INFO] cheese - inserting 1000 documents. first: Analysis of flows and last: Matsuyama, Yamagata -[2018-02-13T08:36:15.889] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:15.906] [INFO] cheese - inserting 1000 documents. first: File:Eurozine screenshot.png and last: Grammatotria -[2018-02-13T08:36:16.016] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:16.084] [INFO] cheese - inserting 1000 documents. first: Stine Andresen and last: Bernard Lafayette -[2018-02-13T08:36:16.090] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:36:16.223] [INFO] cheese - inserting 1000 documents. first: State Energy Commission of Western Australia and last: Star Wars: Episode V -[2018-02-13T08:36:16.270] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:36:16.284] [INFO] cheese - inserting 1000 documents. first: Kawah Ijen Volcano and last: Justice Lacy -[2018-02-13T08:36:16.338] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:36:16.350] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:36:16.406] [INFO] cheese - inserting 1000 documents. first: The Sixth extinction Elizabeth kolbert and last: Anglo Australian Observatory -[2018-02-13T08:36:16.484] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:36:16.538] [INFO] cheese - inserting 1000 documents. first: Novell "Vladivar" and last: Chalcolepidius porcatus -[2018-02-13T08:36:16.611] [INFO] cheese - inserting 1000 documents. first: Oxyrhynchite and last: Louis Trudel -[2018-02-13T08:36:16.619] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:36:16.716] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:16.722] [INFO] cheese - inserting 1000 documents. first: Portal:Gabon/Selected panorama/1 and last: Trenail -[2018-02-13T08:36:16.808] [INFO] cheese - inserting 1000 documents. first: Hirata, Yamagata and last: Canon EOS 10D -[2018-02-13T08:36:16.836] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:36:16.902] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:16.929] [INFO] cheese - inserting 1000 documents. first: File:My Life singlecover.jpg and last: Wingman (seduction) -[2018-02-13T08:36:16.946] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the Province of Ancona and last: Saturday Night Live (season 42) -[2018-02-13T08:36:16.985] [INFO] cheese - inserting 1000 documents. first: Canibalism and last: Portsmouth Island, North Carolina -[2018-02-13T08:36:17.045] [INFO] cheese - inserting 1000 documents. first: 2014 Malaysian Open and last: Template:Did you know nominations/The Flask, Highgate -[2018-02-13T08:36:17.050] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:17.078] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:36:17.131] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:36:17.151] [INFO] cheese - inserting 1000 documents. first: Oktophonie and last: Robert Thorogood -[2018-02-13T08:36:17.174] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:36:17.245] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:36:17.401] [INFO] cheese - inserting 1000 documents. first: Den fynske landsby and last: Chloditan -[2018-02-13T08:36:17.493] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:36:17.564] [INFO] cheese - inserting 1000 documents. first: Manuel F. Ayau and last: Oswald Mitchell -[2018-02-13T08:36:17.602] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Template:Tron and last: Abd Al-Salam Al-Hilah -[2018-02-13T08:36:17.664] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:36:17.675] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:36:17.723] [INFO] cheese - inserting 1000 documents. first: Boarding passes and last: SG Bad Breisig -[2018-02-13T08:36:17.813] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:36:17.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mitry - Claye (SNCF) and last: File:Selftitledautumnscover.jpg -[2018-02-13T08:36:17.914] [INFO] cheese - inserting 1000 documents. first: Ethmia eupostica and last: Template:2005–06 Big Ten Conference men's basketball standings -[2018-02-13T08:36:17.993] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:36:17.999] [INFO] cheese - inserting 1000 documents. first: Category:1898 and last: Jason Becker -[2018-02-13T08:36:18.031] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:36:18.092] [INFO] cheese - inserting 1000 documents. first: Katy Deepwell and last: James Griffin and the Subterraneans -[2018-02-13T08:36:18.093] [INFO] cheese - inserting 1000 documents. first: Record of fallen vampire and last: Liberty Plains Parish, Cumberland -[2018-02-13T08:36:18.141] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T08:36:18.164] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:36:18.173] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:18.181] [INFO] cheese - inserting 1000 documents. first: File:D'Artagnan and Three Musketeers.jpg and last: Emertonella taczanowskii -[2018-02-13T08:36:18.263] [INFO] cheese - inserting 1000 documents. first: Triethyl orthoacetate and last: Saints Peter and Paul Roman Catholic Church (Clear Creek) -[2018-02-13T08:36:18.305] [INFO] cheese - batch complete in: 1.255 secs -[2018-02-13T08:36:18.350] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:36:18.406] [INFO] cheese - inserting 1000 documents. first: Zhou Peng (canoeist) and last: Template:SriLankaNationalTeams -[2018-02-13T08:36:18.452] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:36:18.545] [INFO] cheese - inserting 1000 documents. first: Postal Service of Russia and last: Ken Welsh -[2018-02-13T08:36:18.562] [INFO] cheese - inserting 1000 documents. first: Carl V. Weygandt and last: Hajj Khadijeh -[2018-02-13T08:36:18.597] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:18.624] [INFO] cheese - inserting 1000 documents. first: Connecticut Hurricanes Drum and Bugle Corps and last: File:Harvard Rugby, 1995.png.jpg -[2018-02-13T08:36:18.628] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:36:18.687] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:18.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramsgate Neighborhood and last: File:Audioslave your time has come.png -[2018-02-13T08:36:18.832] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:18.835] [INFO] cheese - inserting 1000 documents. first: Étienne-Augustin De Wailly and last: Wikipedia:Reference desk/Archives/Humanities/2016 May 14 -[2018-02-13T08:36:18.905] [INFO] cheese - inserting 1000 documents. first: Capitonym and last: Donald "Buzz" Lukens -[2018-02-13T08:36:18.908] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:18.916] [INFO] cheese - inserting 1000 documents. first: Portal:Oxfordshire/Selected picture/5 and last: 2000 Chevrolet Cup -[2018-02-13T08:36:18.932] [INFO] cheese - inserting 1000 documents. first: João N'tyamba and last: State Intellectual Property Office -[2018-02-13T08:36:18.984] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:36:19.024] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:36:19.024] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:36:19.093] [INFO] cheese - inserting 1000 documents. first: Hajj Ali-ye Gerehbid and last: Trichocirca decaryanum -[2018-02-13T08:36:19.105] [INFO] cheese - inserting 1000 documents. first: Petalocrinidae and last: Wikipedia:Articles for deletion/Belle Knox -[2018-02-13T08:36:19.119] [INFO] cheese - inserting 1000 documents. first: Robert H. Nelson and last: Cesvaine -[2018-02-13T08:36:19.164] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:36:19.169] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:19.175] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:19.249] [INFO] cheese - inserting 1000 documents. first: Soiku and last: Federation of Fly Fishers -[2018-02-13T08:36:19.282] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:19.339] [INFO] cheese - inserting 1000 documents. first: Neighborhoods in Key West and last: Nemet Qasimli -[2018-02-13T08:36:19.433] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:19.496] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Mammals/Article templates/stats/Ctenomyidae nav and last: Kendallville, IN µSA -[2018-02-13T08:36:19.603] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:36:19.638] [INFO] cheese - inserting 1000 documents. first: Charles Berkeley, 3rd Baron FitzHardinge and last: Babayevski -[2018-02-13T08:36:19.673] [INFO] cheese - inserting 1000 documents. first: Papilio encelades and last: Nerd jeans -[2018-02-13T08:36:19.695] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:36:19.748] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wookieepedia (3rd nomination) and last: Diet RC Cola -[2018-02-13T08:36:19.777] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:36:19.817] [INFO] cheese - inserting 1000 documents. first: North Alantic Sea Movement and last: Wikipedia:Articles for deletion/Roaming Janitors International -[2018-02-13T08:36:19.833] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:36:19.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tengashop.com.au and last: Yara Shahidi -[2018-02-13T08:36:19.863] [INFO] cheese - inserting 1000 documents. first: Conrad I, Duke of Bohemia and last: Postage stamps and postal history of Bolivar Department -[2018-02-13T08:36:19.901] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:36:19.905] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:36:19.965] [INFO] cheese - inserting 1000 documents. first: Derby Wharf Light Station and last: Steerleaders -[2018-02-13T08:36:19.973] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:36:20.019] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:36:20.049] [INFO] cheese - inserting 1000 documents. first: Suh Jung and last: I-5 Publishing -[2018-02-13T08:36:20.100] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:36:20.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nome.unak.is and last: Wikipedia:WikiProject user warnings/Testing/ImageTaggingBot -[2018-02-13T08:36:20.131] [INFO] cheese - inserting 1000 documents. first: Anhydrophryne hewitti and last: Paul Ellwood, Jr. -[2018-02-13T08:36:20.177] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:20.190] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:36:20.270] [INFO] cheese - inserting 1000 documents. first: 5 Characters in Search of an Exit and last: Our Lady of the Roses -[2018-02-13T08:36:20.308] [INFO] cheese - inserting 1000 documents. first: Take a Good Look (TV series) and last: Ithaca Falls -[2018-02-13T08:36:20.312] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:36:20.349] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:36:20.377] [INFO] cheese - inserting 1000 documents. first: Deadliest Atlantic hurricane and last: Eurovision winners -[2018-02-13T08:36:20.403] [INFO] cheese - inserting 1000 documents. first: Just Friends (Amy Winehouse song) and last: Animo Locke Tech Charter High School -[2018-02-13T08:36:20.443] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:36:20.470] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T08:36:20.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject user warnings/Testing/SDPatrolBot and last: 2014 Division 1 Kvalserien -[2018-02-13T08:36:20.520] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T08:36:20.550] [INFO] cheese - inserting 1000 documents. first: The Life of Verdi (docudrama) and last: Scottish delict -[2018-02-13T08:36:20.626] [INFO] cheese - inserting 1000 documents. first: M. Sarada Menon and last: Category:Geography of Kottayam district -[2018-02-13T08:36:20.643] [INFO] cheese - inserting 1000 documents. first: Postage stamps and postal history of the North German Confederation and last: List of bridges in Cambridge -[2018-02-13T08:36:20.668] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:36:20.680] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:36:20.786] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:36:20.880] [INFO] cheese - inserting 1000 documents. first: Ishoyahb IV and last: Opera-ballets -[2018-02-13T08:36:20.923] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:36:21.014] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/workingdogvids.com and last: Hedwig Eleonora of Schleswig-Holstein-Gottorp -[2018-02-13T08:36:21.031] [INFO] cheese - inserting 1000 documents. first: Philaster and last: List of evolutionary psychologists -[2018-02-13T08:36:21.041] [INFO] cheese - inserting 1000 documents. first: Crimea transfer and last: Ass2mouth -[2018-02-13T08:36:21.075] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:21.098] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:21.101] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:36:21.138] [INFO] cheese - inserting 1000 documents. first: Category:Bacteria described in the 1960s and last: Nataliconus -[2018-02-13T08:36:21.147] [INFO] cheese - inserting 1000 documents. first: Simmon's citrate agar and last: Times-up! -[2018-02-13T08:36:21.182] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ahmadiyya articles by quality log and last: Category:Mumbai culture -[2018-02-13T08:36:21.208] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:36:21.227] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:36:21.243] [INFO] cheese - inserting 1000 documents. first: Operas-ballets and last: Terrine -[2018-02-13T08:36:21.248] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:36:21.301] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:36:21.417] [INFO] cheese - inserting 1000 documents. first: Slip Stich and Pass and last: Ford F-Series -[2018-02-13T08:36:21.486] [INFO] cheese - inserting 1000 documents. first: Rey, Anthony and last: Wikipedia:WikiProject User scripts/Scripts/TimeTraveller.js -[2018-02-13T08:36:21.494] [INFO] cheese - inserting 1000 documents. first: Operation Lava Jato and last: Template:Uruguay squad 1949 South American Championship -[2018-02-13T08:36:21.502] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:36:21.525] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T08:36:21.557] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:21.638] [INFO] cheese - inserting 1000 documents. first: Chartered Companies and last: Wikipedia:Articles for deletion/Swansea Bowls -[2018-02-13T08:36:21.682] [INFO] cheese - inserting 1000 documents. first: Postal Address Verification and last: Abernant Colliery -[2018-02-13T08:36:21.705] [INFO] cheese - inserting 1000 documents. first: File:Saya de Malha2b.PNG and last: File:Hzlg.jpg -[2018-02-13T08:36:21.762] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:36:21.788] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:36:21.875] [INFO] cheese - inserting 1000 documents. first: Sähkönsinistä sinfoniaa (album) and last: LRQ -[2018-02-13T08:36:21.905] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:36:22.048] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:36:22.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Guputa1111 and last: Shortage (economics) -[2018-02-13T08:36:22.114] [INFO] cheese - inserting 1000 documents. first: Untied States House of Representatives elections in Virginia, 1988 and last: Bandžovo Brdo Sports Center -[2018-02-13T08:36:22.149] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:36:22.162] [INFO] cheese - inserting 1000 documents. first: Republic of Zangaro and last: Shepard Block -[2018-02-13T08:36:22.171] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:36:22.215] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:36:22.356] [INFO] cheese - inserting 1000 documents. first: Ford F-150 (F-Series truck) and last: Pneumonoultramicroscopicsilicovolcanokoniosis -[2018-02-13T08:36:22.400] [INFO] cheese - inserting 1000 documents. first: Shooting at the 1974 Asian Games and last: Saud Al Nasser Al Sabah -[2018-02-13T08:36:22.411] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Guffey and last: Red Clay School District -[2018-02-13T08:36:22.420] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:36:22.474] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:36:22.481] [INFO] cheese - inserting 1000 documents. first: LTW and last: 802.11 b/g -[2018-02-13T08:36:22.502] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:22.541] [INFO] cheese - inserting 1000 documents. first: Adoro, Marcus and last: Pineville Historic District -[2018-02-13T08:36:22.552] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:36:22.599] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:22.606] [INFO] cheese - inserting 1000 documents. first: File:Stolen Earth.jpg and last: Wikipedia:Articles for deletion/G-Boy Status -[2018-02-13T08:36:22.626] [INFO] cheese - inserting 1000 documents. first: Robert Smith (cricketer, born 1946) and last: Polaris (composition) -[2018-02-13T08:36:22.665] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:36:22.684] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:36:22.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Creating Change 2012 and last: Dongen (plaats) -[2018-02-13T08:36:22.791] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:36:22.894] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Swapnil mali/MITSOT and last: Aerts, Peter -[2018-02-13T08:36:22.928] [INFO] cheese - inserting 1000 documents. first: 1st Afro-Asian Games and last: Sebhat Guebre-Egziabher -[2018-02-13T08:36:22.928] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:36:23.025] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:36:23.045] [INFO] cheese - inserting 1000 documents. first: Kalasin Province Stadium and last: Category:U.S. Sassuolo Calcio seasons -[2018-02-13T08:36:23.076] [INFO] cheese - inserting 1000 documents. first: José Luis de Quintanar Soto y Ruiz and last: Category:Maddy Prior albums -[2018-02-13T08:36:23.078] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:36:23.097] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors to Fiji and last: Template:Hawaii-royal-stub -[2018-02-13T08:36:23.112] [INFO] cheese - inserting 1000 documents. first: Afak and last: Pananmal Punjabi -[2018-02-13T08:36:23.135] [INFO] cheese - inserting 1000 documents. first: Eersel (plaats) and last: Perceptual Robotics -[2018-02-13T08:36:23.147] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:36:23.155] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:36:23.162] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:36:23.196] [INFO] cheese - inserting 1000 documents. first: K-Y jelly and last: Anne Cox Chambers -[2018-02-13T08:36:23.274] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:36:23.363] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:36:23.466] [INFO] cheese - inserting 1000 documents. first: Aerts, Philippe and last: K24GE-D -[2018-02-13T08:36:23.531] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:23.628] [INFO] cheese - inserting 1000 documents. first: Teddy girl and last: Bickerstaff encephalitis -[2018-02-13T08:36:23.673] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:23.703] [INFO] cheese - inserting 1000 documents. first: Jasmine Gill and last: James B. McCoy -[2018-02-13T08:36:23.736] [INFO] cheese - inserting 1000 documents. first: 461 U.S. 574 and last: Acleris variegana -[2018-02-13T08:36:23.758] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:36:23.799] [INFO] cheese - inserting 1000 documents. first: UI Chrome and last: Super Commando Dhruva -[2018-02-13T08:36:23.809] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:36:23.859] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:36:23.897] [INFO] cheese - inserting 1000 documents. first: David Houle (biologist) and last: Category:English editors -[2018-02-13T08:36:23.970] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:36:24.061] [INFO] cheese - inserting 1000 documents. first: BZ Crucis and last: 2012 World Junior Championships in Athletics – Men's 10000 metres -[2018-02-13T08:36:24.121] [INFO] cheese - inserting 1000 documents. first: P3X-888 and last: Wikipedia:Help desk/Archive 5 -[2018-02-13T08:36:24.135] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:24.146] [INFO] cheese - inserting 1000 documents. first: Conus mucronatus and last: Wikipedia:WikiProject Spam/LinkReports/alerjik.net -[2018-02-13T08:36:24.174] [INFO] cheese - inserting 1000 documents. first: Template:FC Homburg squad and last: Paddy Knob -[2018-02-13T08:36:24.206] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:24.212] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:36:24.243] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:36:24.287] [INFO] cheese - inserting 1000 documents. first: 1962 Detroit Lions season and last: Długołęka, Łódź Voivodeship -[2018-02-13T08:36:24.318] [INFO] cheese - inserting 1000 documents. first: Octatonic and last: 20th Century Masters – The Millennium Collection: The Best of George Strait -[2018-02-13T08:36:24.332] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:24.383] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:36:24.391] [INFO] cheese - inserting 1000 documents. first: Template:HNK Hajduk Split squad and last: Familiar 48 -[2018-02-13T08:36:24.452] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:24.578] [INFO] cheese - inserting 1000 documents. first: File:1059balitafm.jpg and last: Joanne Pricilla Loutoy -[2018-02-13T08:36:24.605] [INFO] cheese - inserting 1000 documents. first: Main Battle Tank and last: Joseph Patrick Walsh -[2018-02-13T08:36:24.653] [INFO] cheese - inserting 1000 documents. first: Albert Monnier and last: 2016 SEABA Cup squads -[2018-02-13T08:36:24.668] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:24.723] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:36:24.730] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:36:24.833] [INFO] cheese - inserting 1000 documents. first: Glinice and last: Węglewice -[2018-02-13T08:36:24.931] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:36:25.063] [INFO] cheese - inserting 1000 documents. first: Rubik the amazing cube and last: Windowpane (song) -[2018-02-13T08:36:25.071] [INFO] cheese - inserting 1000 documents. first: File:Altbeastplay.png and last: Jusepe de Ribera -[2018-02-13T08:36:25.123] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:25.149] [INFO] cheese - inserting 1000 documents. first: File:Coach Tom Scott.jpg and last: Category:Apartment buildings in Kentucky -[2018-02-13T08:36:25.187] [INFO] cheese - inserting 1000 documents. first: Jayy Mannon and last: Dendrocopos noguchii -[2018-02-13T08:36:25.196] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:36:25.253] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:36:25.276] [INFO] cheese - batch complete in: 2.001 secs -[2018-02-13T08:36:25.311] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Selected works/12 and last: DINFIA IA 46 Ranquel -[2018-02-13T08:36:25.333] [INFO] cheese - inserting 1000 documents. first: Joanne Loutoy and last: Wikipedia:Articles for deletion/Krokodilpoort -[2018-02-13T08:36:25.368] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:36:25.384] [INFO] cheese - inserting 1000 documents. first: A Scholar's Feast and last: Kumt'ap-sa temple -[2018-02-13T08:36:25.410] [INFO] cheese - inserting 1000 documents. first: Węglewice, Łęczyca County and last: Beunans Meriasek -[2018-02-13T08:36:25.406] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:25.435] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:25.472] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:36:25.601] [INFO] cheese - inserting 1000 documents. first: Brooke Knight and last: Category:French beatified people -[2018-02-13T08:36:25.601] [INFO] cheese - inserting 1000 documents. first: File:Bobbycapo.jpg and last: Dirge of Cerberus: Final Fantasy VII Original Soundtrack -[2018-02-13T08:36:25.636] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T08:36:25.636] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:36:25.701] [INFO] cheese - inserting 1000 documents. first: Destructo Trucks and last: Category:Argentine female singers -[2018-02-13T08:36:25.741] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T08:36:25.754] [INFO] cheese - inserting 1000 documents. first: DINFIA IA 50 Guarani II and last: Catherine Booth-Clibborn -[2018-02-13T08:36:25.808] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:36:25.847] [INFO] cheese - inserting 1000 documents. first: Kumt'ap-sa Temple and last: Sekai kara Neko ga Kieta nara -[2018-02-13T08:36:25.864] [INFO] cheese - inserting 1000 documents. first: Cantellated order-4 hexagonal tiling honeycomb and last: President of the Liberal Party (UK) -[2018-02-13T08:36:25.884] [INFO] cheese - inserting 1000 documents. first: LeRoy Sprankle and last: Red white and blue -[2018-02-13T08:36:25.893] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:36:25.931] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:25.945] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:36:25.961] [INFO] cheese - inserting 1000 documents. first: Guzelyurt and last: Freestyle Skiing -[2018-02-13T08:36:26.041] [INFO] cheese - inserting 1000 documents. first: ITyphoon and last: Wikipedia:In-Universe -[2018-02-13T08:36:26.067] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:36:26.161] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:26.226] [INFO] cheese - inserting 1000 documents. first: Kostandin and Doruntine and last: US intervention in Latin America -[2018-02-13T08:36:26.249] [INFO] cheese - inserting 1000 documents. first: U.S. Route 99E and last: Yojinbo (film) -[2018-02-13T08:36:26.288] [INFO] cheese - inserting 1000 documents. first: List of MLB Managers 2006 and last: Poo-Shi -[2018-02-13T08:36:26.333] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:26.345] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:36:26.387] [INFO] cheese - inserting 1000 documents. first: Foley Hoag and last: Gil Álvarez de Albornoz -[2018-02-13T08:36:26.407] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:26.465] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:36:26.481] [INFO] cheese - inserting 1000 documents. first: List of nearest exoplanets and last: HackerOne -[2018-02-13T08:36:26.508] [INFO] cheese - inserting 1000 documents. first: Template:Nitric oxide modulators and last: File:Sarah Brightman Steve Harley The Phantom of the Opera 1986 Single.jpg -[2018-02-13T08:36:26.535] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:26.572] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:36:26.661] [INFO] cheese - inserting 1000 documents. first: Petru Stirbate and last: Q'Viva!: The Chosen -[2018-02-13T08:36:26.731] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:36:26.790] [INFO] cheese - inserting 1000 documents. first: Vsesportový Areal and last: Achilles hold -[2018-02-13T08:36:26.803] [INFO] cheese - inserting 1000 documents. first: Anterior cutaneous branch and last: Wikipedia:Articles for deletion/Rafiulla Mian Rrahi -[2018-02-13T08:36:26.846] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:36:26.873] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:36:26.876] [INFO] cheese - inserting 1000 documents. first: Tricia Marwick and last: Category:Marquette County, Michigan -[2018-02-13T08:36:26.890] [INFO] cheese - inserting 1000 documents. first: Category:Amiens SC and last: Aaron Sears -[2018-02-13T08:36:26.902] [INFO] cheese - inserting 1000 documents. first: Category:American politicians with physical disabilities and last: Aiteta acutipennis -[2018-02-13T08:36:26.924] [INFO] cheese - inserting 1000 documents. first: Héctor Thomas and last: Category:Egyptian cyclists -[2018-02-13T08:36:26.961] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:36:26.984] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:36:26.985] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:27.023] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:36:27.052] [INFO] cheese - inserting 1000 documents. first: 2016–17 Missouri Tigers women's basketball team and last: Sacred Heart High School of Itogon, Inc. -[2018-02-13T08:36:27.120] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:36:27.250] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jannareddy and last: Pakistani Highflyer -[2018-02-13T08:36:27.279] [INFO] cheese - inserting 1000 documents. first: File:Blood Car poster.jpg and last: File:Letschangetheworldwithmusic.jpg -[2018-02-13T08:36:27.320] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:36:27.331] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:36:27.444] [INFO] cheese - inserting 1000 documents. first: Batna (province) and last: Chickenwing -[2018-02-13T08:36:27.474] [INFO] cheese - inserting 1000 documents. first: Paul Robert Cohen, Appellant v. State of California and last: Abbess Martin -[2018-02-13T08:36:27.537] [INFO] cheese - inserting 1000 documents. first: Hal Lashwood and last: Category:Media in Abha -[2018-02-13T08:36:27.543] [INFO] cheese - inserting 1000 documents. first: France–Iceland relations and last: Chiefs of Joint Staff of the Armed Forces of Bosnia and Herzegovina -[2018-02-13T08:36:27.544] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:36:27.551] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:36:27.595] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:36:27.606] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:36:27.753] [INFO] cheese - inserting 1000 documents. first: Rower and last: Western Wireless Corporation -[2018-02-13T08:36:27.809] [INFO] cheese - inserting 1000 documents. first: Kevin Bauder and last: List of Unicode characters/CJK Unified Ideographs, part 1 (4E00-62FF) -[2018-02-13T08:36:27.833] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:36:27.900] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:36:27.928] [INFO] cheese - inserting 1000 documents. first: Kiltsi Airfield and last: Wikipedia:WikiProject Toronto Blue Jays -[2018-02-13T08:36:27.973] [INFO] cheese - inserting 1000 documents. first: Simon Lazenby and last: History of Petersburg, Virginia -[2018-02-13T08:36:27.982] [INFO] cheese - inserting 1000 documents. first: List of initiatives of Punjab Government (2008-13) and last: Yawhen Kalinin -[2018-02-13T08:36:28.004] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:36:28.032] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:36:28.034] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:36:28.127] [INFO] cheese - inserting 1000 documents. first: Arado SD.III and last: Tiwi Islands Shire -[2018-02-13T08:36:28.139] [INFO] cheese - inserting 1000 documents. first: File:Defrancis.jpg and last: Evil I -[2018-02-13T08:36:28.200] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:36:28.211] [INFO] cheese - inserting 1000 documents. first: Coca cola black cherry vanilla and last: Kjell Borgen -[2018-02-13T08:36:28.218] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:36:28.264] [INFO] cheese - inserting 1000 documents. first: List of Unicode characters/CJK Unified Ideographs, part 2 (6300-77FF) and last: Non-Intrusive Stress Measurement System -[2018-02-13T08:36:28.328] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:36:28.341] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:36:28.391] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pentagon (Bangladeshi band) and last: Widnet il-baħar -[2018-02-13T08:36:28.428] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:36:28.437] [INFO] cheese - inserting 1000 documents. first: Vilayet of Van and last: Kurtziella newcombei -[2018-02-13T08:36:28.502] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:36:28.526] [INFO] cheese - inserting 1000 documents. first: Category:UNIDROIT and last: 1943–44 Wisconsin Badgers men's basketball team -[2018-02-13T08:36:28.677] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:36:28.721] [INFO] cheese - inserting 1000 documents. first: Albert S. Marks and last: Parang -[2018-02-13T08:36:28.822] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:36:28.869] [INFO] cheese - inserting 1000 documents. first: Widnet il-bahar and last: Wikipedia:WikiProject Spam/LinkReports/cms.puranastudy.webnode.com -[2018-02-13T08:36:28.901] [INFO] cheese - inserting 1000 documents. first: Kid Herman and last: Wikipedia:Reference desk/Archives/Miscellaneous/2008 August 4 -[2018-02-13T08:36:28.962] [INFO] cheese - inserting 1000 documents. first: Esporte Clube Iranduba da Amazônia and last: Cecilia Liu -[2018-02-13T08:36:28.973] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:36:29.017] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:36:29.110] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:36:29.157] [INFO] cheese - inserting 1000 documents. first: Rock City (Royce Da 5'9" album) and last: Kitāb al-jabr wa’l-muqābalah -[2018-02-13T08:36:29.211] [INFO] cheese - inserting 1000 documents. first: H-1B Visas and last: Asida (beetle) -[2018-02-13T08:36:29.253] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:36:29.355] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:36:29.406] [INFO] cheese - inserting 1000 documents. first: Rhipha olafi and last: 天野 正道 -[2018-02-13T08:36:29.471] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:36:29.505] [INFO] cheese - inserting 1000 documents. first: File:CaddyMaxiLife2.JPG and last: A 113 -[2018-02-13T08:36:29.508] [INFO] cheese - inserting 1000 documents. first: Pulseniagara.com and last: AMD Carrizo -[2018-02-13T08:36:29.576] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:29.578] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:36:29.644] [INFO] cheese - inserting 1000 documents. first: Template:Moyoco Anno and last: Bridge Information Systems -[2018-02-13T08:36:29.660] [INFO] cheese - inserting 1000 documents. first: Ostad Nur Ali Elahi and last: File:UniversalMen.JPG -[2018-02-13T08:36:29.688] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:29.744] [INFO] cheese - inserting 1000 documents. first: Kevin Williamson (screenwriter) and last: Wikipedia:Articles for deletion/Psychic Pokémon -[2018-02-13T08:36:29.749] [INFO] cheese - inserting 1000 documents. first: Rasa (aesthetics) and last: Wikipedia:Articles for deletion/Log/2006 February 7 -[2018-02-13T08:36:29.750] [INFO] cheese - batch complete in: 1.532 secs -[2018-02-13T08:36:29.773] [INFO] cheese - inserting 1000 documents. first: Category:English oceanographers and last: Portal:Algeria/Topics -[2018-02-13T08:36:29.816] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:36:29.832] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:36:29.841] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:36:30.033] [INFO] cheese - inserting 1000 documents. first: Category:City and town clerks and last: Wikipedia:WikiProject Deletion sorting in The Signpost -[2018-02-13T08:36:30.040] [INFO] cheese - inserting 1000 documents. first: Venus and Adonis (painting) and last: Cromwell, Henry -[2018-02-13T08:36:30.100] [INFO] cheese - inserting 1000 documents. first: File:Shepshed Dynamo FC logo.png and last: Idol series -[2018-02-13T08:36:30.103] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:36:30.107] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:36:30.137] [INFO] cheese - inserting 1000 documents. first: Praxi Simeon and last: Bill of Rights of 1689 -[2018-02-13T08:36:30.156] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:36:30.214] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:36:30.255] [INFO] cheese - inserting 1000 documents. first: File:Arke Stadion.jpg and last: V70 -[2018-02-13T08:36:30.294] [INFO] cheese - inserting 1000 documents. first: File:PotC-RNA.svg and last: Senmon gakko -[2018-02-13T08:36:30.329] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:36:30.347] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Log/2006 February 7 and last: Nisg̱a’a language -[2018-02-13T08:36:30.349] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:36:30.481] [INFO] cheese - inserting 1000 documents. first: Gallurese-Sassarese Sardinian language and last: Category:Hungarian herpetologists -[2018-02-13T08:36:30.482] [INFO] cheese - inserting 1000 documents. first: Cross, Henry and last: List of Britain's Got Talent finalists (series 10) -[2018-02-13T08:36:30.439] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:36:30.630] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:36:30.683] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:36:30.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flying Pokémon and last: Eleazar Wheelock -[2018-02-13T08:36:30.756] [INFO] cheese - inserting 1000 documents. first: Battle of Fayetteville and last: File:4,5 & 6PRLP.jpeg -[2018-02-13T08:36:30.937] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:36:30.938] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:36:30.983] [INFO] cheese - inserting 1000 documents. first: Célio de Castro and last: Politics of Adygea -[2018-02-13T08:36:31.011] [INFO] cheese - inserting 1000 documents. first: Kaunaoa Bay and last: Asian Medical Institute,Kyrgyzstan -[2018-02-13T08:36:31.048] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:36:31.138] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:36:31.235] [INFO] cheese - inserting 1000 documents. first: Skycity Triple Crown and last: Wikipedia:Articles for deletion/Nickel (band) -[2018-02-13T08:36:31.283] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:36:31.287] [INFO] cheese - inserting 1000 documents. first: Joint Expedition Against Franklin and last: Piel CP.604 Diamant -[2018-02-13T08:36:31.368] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:31.403] [INFO] cheese - inserting 1000 documents. first: Mania Metropolitan Area and last: John Stephen Hirsch -[2018-02-13T08:36:31.511] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:36:31.590] [INFO] cheese - inserting 1000 documents. first: File:CIS Wilfrid Laurier Jersey.png and last: Lamae -[2018-02-13T08:36:31.614] [INFO] cheese - inserting 1000 documents. first: Joseph H. Cook and last: Candyman (album) -[2018-02-13T08:36:31.615] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rotary Club of Pensacola Suburban West and last: Scarface the world is yours -[2018-02-13T08:36:31.646] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:36:31.653] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:31.655] [INFO] cheese - inserting 1000 documents. first: Onchidella pachyderma and last: Template:Infobox VG series/doc -[2018-02-13T08:36:31.698] [INFO] cheese - batch complete in: 1.368 secs -[2018-02-13T08:36:31.749] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:31.851] [INFO] cheese - inserting 1000 documents. first: Lycoming O-235-C2A and last: Scaptius sanguistrigata -[2018-02-13T08:36:31.929] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:36:31.971] [INFO] cheese - inserting 1000 documents. first: BMT 60th Street Tunnel Connector and last: A. aeolicus -[2018-02-13T08:36:32.024] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:36:32.035] [INFO] cheese - inserting 1000 documents. first: Galasa dilirialis and last: Mississippi Medal of Efficiency -[2018-02-13T08:36:32.075] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:36:32.106] [INFO] cheese - inserting 1000 documents. first: Bettijane Sills and last: Portal:Speculative fiction/Selected biography/16 -[2018-02-13T08:36:32.120] [INFO] cheese - inserting 1000 documents. first: Wayside Inn (Arlington, Massachusetts) and last: HD 152786 -[2018-02-13T08:36:32.131] [INFO] cheese - inserting 1000 documents. first: Pseudo-homosexuality and last: Clarinet Concerto (Mozart) -[2018-02-13T08:36:32.167] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T08:36:32.183] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:36:32.229] [INFO] cheese - batch complete in: 1.292 secs -[2018-02-13T08:36:32.297] [INFO] cheese - inserting 1000 documents. first: Romulo Davide and last: Hemisyntrachelus cortesii -[2018-02-13T08:36:32.353] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T08:36:32.470] [INFO] cheese - inserting 1000 documents. first: Man on the Prowl and last: Awesome Wave -[2018-02-13T08:36:32.480] [INFO] cheese - inserting 1000 documents. first: A. pyrophilus and last: Flue-gas emissions from fossil-fuel combustion -[2018-02-13T08:36:32.503] [INFO] cheese - inserting 1000 documents. first: File:Mtmg.jpg and last: File:AFMS plane monument.jpg -[2018-02-13T08:36:32.534] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:36:32.585] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:36:32.621] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:36:32.742] [INFO] cheese - inserting 1000 documents. first: Pet Food Express and last: The Whiskey Rebellion -[2018-02-13T08:36:32.753] [INFO] cheese - inserting 1000 documents. first: Colin Russell and last: 17th Space Surveillance Squadron -[2018-02-13T08:36:32.825] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:36:32.829] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:36:32.986] [INFO] cheese - inserting 1000 documents. first: Hemisyntrachelus pisanus and last: Bobby Smith (footballer, born 1900s) -[2018-02-13T08:36:33.010] [INFO] cheese - inserting 1000 documents. first: File:Pandamonium.jpg and last: Al-Khayyam -[2018-02-13T08:36:33.043] [INFO] cheese - inserting 1000 documents. first: English words of polish origin and last: Piper (2016 film) -[2018-02-13T08:36:33.053] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:33.054] [INFO] cheese - inserting 1000 documents. first: Ravin and last: Alejandro Rodriguez (pioneer child psychiatrist) -[2018-02-13T08:36:33.100] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:36:33.104] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:36:33.120] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:36:33.180] [INFO] cheese - inserting 1000 documents. first: Judo at the 2008 Summer Olympics - Women's +78 kg and last: Kumakōgen -[2018-02-13T08:36:33.206] [INFO] cheese - inserting 1000 documents. first: The Mountain School and last: Agua Dulce, California -[2018-02-13T08:36:33.218] [INFO] cheese - inserting 1000 documents. first: Category:New England Blizzard players and last: Category:Macedonian law -[2018-02-13T08:36:33.223] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T08:36:33.326] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:36:33.445] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:36:33.535] [INFO] cheese - inserting 1000 documents. first: 1952 Southern 500 and last: Poznań Old Town -[2018-02-13T08:36:33.603] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:36:33.625] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Thebes (Boeotia) and last: P-26A Peashooter -[2018-02-13T08:36:33.687] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:36:33.698] [INFO] cheese - inserting 1000 documents. first: Joe Butler (footballer) and last: Category:Former counties of the United Kingdom -[2018-02-13T08:36:33.720] [INFO] cheese - inserting 1000 documents. first: Diankongou and last: Wikipedia:SALAT -[2018-02-13T08:36:33.763] [INFO] cheese - inserting 1000 documents. first: Category:Environment of Paraíba and last: Reyno de Navarra Arena -[2018-02-13T08:36:33.790] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:33.798] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:36:33.871] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:36:34.000] [INFO] cheese - inserting 1000 documents. first: Ingold I of Sweden and last: Subnational entities of Belgium -[2018-02-13T08:36:34.007] [INFO] cheese - inserting 1000 documents. first: Kadra Noor and last: Bombardier Q400 -[2018-02-13T08:36:34.043] [INFO] cheese - inserting 1000 documents. first: File:Milladonovan.jpg and last: Extraction (military) -[2018-02-13T08:36:34.070] [INFO] cheese - inserting 1000 documents. first: John Stezaker and last: Tahnun bin Zayed Al Nahyan -[2018-02-13T08:36:34.146] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:36:34.172] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:36:34.179] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:36:34.214] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:36:34.397] [INFO] cheese - inserting 1000 documents. first: J. E. Ferneley and last: Dar Baluteh Sofla -[2018-02-13T08:36:34.442] [INFO] cheese - inserting 1000 documents. first: Red Booles and last: History of the Roman military -[2018-02-13T08:36:34.466] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:36:34.471] [INFO] cheese - inserting 1000 documents. first: Stanmore Hawks and last: Wikipedia:Articles for deletion/Kaleidoscope (design agency) -[2018-02-13T08:36:34.484] [INFO] cheese - inserting 1000 documents. first: Category:Duterte Administration personnel and last: Recombinant human erythropoietin -[2018-02-13T08:36:34.543] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:36:34.572] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:36:34.624] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:36:34.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topic candidates/Atlantic campaign of May 1794/addition1 and last: File:2002 UCI Track Cycling World Championships logo.jpg -[2018-02-13T08:36:34.821] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:36:34.937] [INFO] cheese - inserting 1000 documents. first: The king is dead. long live the king and last: Any Team will Do -[2018-02-13T08:36:34.993] [INFO] cheese - inserting 1000 documents. first: Lord Llandaff and last: Category:Pangolins -[2018-02-13T08:36:35.009] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:36:35.014] [INFO] cheese - inserting 1000 documents. first: Mary Murillo and last: The Best Disney Album in the World... Ever! -[2018-02-13T08:36:35.061] [INFO] cheese - inserting 1000 documents. first: Teicha and last: Jornal Nippak -[2018-02-13T08:36:35.066] [INFO] cheese - inserting 1000 documents. first: Roberto Navarro Gonzalez and last: File:MeldrickLewis.jpg -[2018-02-13T08:36:35.072] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:36:35.092] [INFO] cheese - inserting 1000 documents. first: Category:Weightlifting in Estonia and last: Category:Base tunnels -[2018-02-13T08:36:35.103] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:36:35.106] [INFO] cheese - inserting 1000 documents. first: Dar Balut-e Pain and last: Hamburger Kammerspiele -[2018-02-13T08:36:35.128] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:36:35.150] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:36:35.228] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:36:35.261] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:36:35.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Peer review/22nd Regiment Massachusetts Volunteer Infantry and last: Montpier -[2018-02-13T08:36:35.424] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:35.653] [INFO] cheese - inserting 1000 documents. first: Butler's Dunnart and last: Diane of Orléans -[2018-02-13T08:36:35.696] [INFO] cheese - inserting 1000 documents. first: Jinggangshan college and last: BICEP1 -[2018-02-13T08:36:35.702] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:36:35.717] [INFO] cheese - inserting 1000 documents. first: File:ID4TIME.jpg and last: Wikipedia:Articles for deletion/Rogers Orchards -[2018-02-13T08:36:35.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Richard Dewdney and last: Chemikal underground -[2018-02-13T08:36:35.748] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:36:35.755] [INFO] cheese - inserting 1000 documents. first: IRLR and last: Allison Flemming (The Grudge Character) -[2018-02-13T08:36:35.773] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:36:35.805] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:36:35.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To Love Somebody (2014 British film) and last: Category:Exiles of the Iranian Revolution in Mexico -[2018-02-13T08:36:35.839] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:35.884] [INFO] cheese - inserting 1000 documents. first: Albert Ramos-Vinolas and last: Grayson Boucher -[2018-02-13T08:36:35.947] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:36:35.988] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:36:36.059] [INFO] cheese - inserting 1000 documents. first: Trevor Dunn and last: The Whiffenpoof Song -[2018-02-13T08:36:36.133] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:36:36.236] [INFO] cheese - inserting 1000 documents. first: List of birds of Vanuatu and last: Muhammad Shukri (author) -[2018-02-13T08:36:36.278] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:36:36.302] [INFO] cheese - inserting 1000 documents. first: BICEP3 and last: Ary L. Goldberger -[2018-02-13T08:36:36.321] [INFO] cheese - inserting 1000 documents. first: Draft:Trickster (anime) and last: Bader S. Dweik -[2018-02-13T08:36:36.327] [INFO] cheese - inserting 1000 documents. first: Template:Ffestiniog RDT and last: Ger McDonnell -[2018-02-13T08:36:36.331] [INFO] cheese - inserting 1000 documents. first: Category:1993 floods and last: Gabriel Roman -[2018-02-13T08:36:36.357] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:36:36.365] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:36:36.383] [INFO] cheese - inserting 1000 documents. first: Weiss WM-21 Sólyom and last: Stephen Thompson (fighter) -[2018-02-13T08:36:36.383] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:36:36.394] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:36:36.467] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:36.597] [INFO] cheese - inserting 1000 documents. first: Diómedes Diaz and last: The New Left Review -[2018-02-13T08:36:36.652] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:36:36.727] [INFO] cheese - inserting 1000 documents. first: University of Arizona Art Museum, Tucson and last: Events in 1801 -[2018-02-13T08:36:36.762] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:36:36.766] [INFO] cheese - inserting 1000 documents. first: Short Type 830 and last: Sir Patrick Dun's Hospital -[2018-02-13T08:36:36.770] [INFO] cheese - inserting 1000 documents. first: Ravin Caldwell and last: Rooker-Feldman -[2018-02-13T08:36:36.834] [INFO] cheese - inserting 1000 documents. first: Baibai-Fas languages and last: Category:Episcopal bishops of Washington (state) -[2018-02-13T08:36:36.920] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:36:36.930] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:36:36.963] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:36:36.996] [INFO] cheese - inserting 1000 documents. first: TACHS test and last: Category:Sheriffs' departments of Illinois -[2018-02-13T08:36:37.058] [INFO] cheese - inserting 1000 documents. first: Gabon at the 2004 Summer Olympics and last: Marlene Ahrens -[2018-02-13T08:36:37.060] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:37.179] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:36:37.268] [INFO] cheese - inserting 1000 documents. first: Events in 1800 and last: St. Mark's Chapel, Vancouver -[2018-02-13T08:36:37.281] [INFO] cheese - inserting 1000 documents. first: File:Smokie - Midnight Cafe.jpg and last: Destiny? -[2018-02-13T08:36:37.317] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:36:37.362] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:36:37.446] [INFO] cheese - inserting 1000 documents. first: Nord 1220 Norélan and last: Smith, Jefferson -[2018-02-13T08:36:37.504] [INFO] cheese - inserting 1000 documents. first: Purdue University College of Technology at South Bend Elkhart and last: File:Classroom and administration block, St Mary's School, (Yala Township, Nyanza Province, Kenya)..jpg -[2018-02-13T08:36:37.542] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:36:37.610] [INFO] cheese - inserting 1000 documents. first: Luis Andrés Vargas Gómez and last: R68 (KwaZulu-Natal) -[2018-02-13T08:36:37.629] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:36:37.690] [INFO] cheese - inserting 1000 documents. first: 2007 Election and last: Austin Parsons -[2018-02-13T08:36:37.693] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sugar (Shortland Street) and last: File:SWE-OR6.png -[2018-02-13T08:36:37.713] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:36:37.764] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:36:37.803] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:36:37.951] [INFO] cheese - inserting 1000 documents. first: HSC Natchan World and last: Template:Did you know nominations/Vétra -[2018-02-13T08:36:37.992] [INFO] cheese - inserting 1000 documents. first: 1982 Astro-Bluebonnet Bowl and last: George N Moloney -[2018-02-13T08:36:38.022] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:36:38.110] [INFO] cheese - inserting 1000 documents. first: Smith, Jennifer and last: Template:User x-1/doc -[2018-02-13T08:36:38.128] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:38.194] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:36:38.198] [INFO] cheese - inserting 1000 documents. first: Akaka Falls State Park and last: Elections in Latvia -[2018-02-13T08:36:38.319] [INFO] cheese - inserting 1000 documents. first: R69 (KwaZulu-Natal) and last: Rumba clave -[2018-02-13T08:36:38.319] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:36:38.367] [INFO] cheese - inserting 1000 documents. first: Berja and last: Nintendogs: Dachshund and Friends -[2018-02-13T08:36:38.379] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day/10/09 and last: Əmirli -[2018-02-13T08:36:38.414] [INFO] cheese - inserting 1000 documents. first: Mau-mauing and last: Lower Madawaska River Provincial Park -[2018-02-13T08:36:38.429] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:36:38.441] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:38.449] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:36:38.473] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:36:38.741] [INFO] cheese - inserting 1000 documents. first: Vito Leonetti and last: Northcote Manor -[2018-02-13T08:36:38.838] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:36:38.845] [INFO] cheese - inserting 1000 documents. first: The Heart Desires and last: Groenkloof Nature Reserve -[2018-02-13T08:36:38.896] [INFO] cheese - inserting 1000 documents. first: Liber Papiensis and last: Cherdonna Shinatra -[2018-02-13T08:36:39.042] [INFO] cheese - inserting 1000 documents. first: Walsh Island and last: Forest Lawn, Calgary -[2018-02-13T08:36:39.048] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:36:39.051] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:36:39.065] [INFO] cheese - inserting 1000 documents. first: Category:Grand Funk Railroad live albums and last: Ahmed Al-Fateh -[2018-02-13T08:36:39.118] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:36:39.170] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:39.218] [INFO] cheese - inserting 1000 documents. first: Instruction path length and last: João de Lencastre, 1st Duke of Aveiro -[2018-02-13T08:36:39.298] [INFO] cheese - inserting 1000 documents. first: Iberá and last: NIBBLE -[2018-02-13T08:36:39.348] [INFO] cheese - inserting 1000 documents. first: Cholen and last: Till Midnight -[2018-02-13T08:36:39.357] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:36:39.369] [INFO] cheese - inserting 1000 documents. first: Turner Classic Movies and last: Olympic Tennis Centre (Athens) -[2018-02-13T08:36:39.415] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:36:39.419] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:36:39.516] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T08:36:39.678] [INFO] cheese - inserting 1000 documents. first: File:Covenant-Voices-during-a-rehearsal.jpg and last: Richard Bennett (New Zealand cricketer) -[2018-02-13T08:36:39.688] [INFO] cheese - inserting 1000 documents. first: Queen of North and last: Category:Music festivals in Fredericton -[2018-02-13T08:36:39.715] [INFO] cheese - inserting 1000 documents. first: 1997 Ford World Women's Curling Championship and last: Paint Creek (Johnson County, Kentucky) -[2018-02-13T08:36:39.758] [INFO] cheese - inserting 1000 documents. first: Highland Lawn and last: Johnny Evilguy -[2018-02-13T08:36:39.759] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:36:39.765] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:36:39.802] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:36:39.838] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:36:39.981] [INFO] cheese - inserting 1000 documents. first: Dionychopus rubidus and last: Oronsay (disambiguation) -[2018-02-13T08:36:40.000] [INFO] cheese - inserting 1000 documents. first: Riek Schagen and last: Ireland (name) -[2018-02-13T08:36:40.041] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:36:40.064] [INFO] cheese - inserting 1000 documents. first: Serua Province, Fiji and last: The Adventure -[2018-02-13T08:36:40.092] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:36:40.201] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:36:40.318] [INFO] cheese - inserting 1000 documents. first: List of military equipment manufactured in Pakistan and last: Flag of Antigua -[2018-02-13T08:36:40.339] [INFO] cheese - inserting 1000 documents. first: Siena Baseball Field and last: Fifth generation (disambiguation) -[2018-02-13T08:36:40.372] [INFO] cheese - inserting 1000 documents. first: Nikos Kaklamanakis and last: Wikipedia:Articles for deletion/Bingle -[2018-02-13T08:36:40.391] [INFO] cheese - inserting 1000 documents. first: PUPPP syndrome and last: Eliomys occidentalis -[2018-02-13T08:36:40.391] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:36:40.415] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:36:40.476] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:36:40.566] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mohammed Hameeduddin and last: Occa kuronumai -[2018-02-13T08:36:40.543] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:36:40.643] [INFO] cheese - inserting 1000 documents. first: Category:1993 in rugby league and last: Reformed Churches in the Netherlands (Liberated) -[2018-02-13T08:36:40.649] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:36:40.725] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:36:40.832] [INFO] cheese - inserting 1000 documents. first: Xuan Liu and last: Puckstering -[2018-02-13T08:36:40.931] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:36:41.032] [INFO] cheese - inserting 1000 documents. first: James Taylor (lawyer) and last: Siler semiglaucus -[2018-02-13T08:36:41.055] [INFO] cheese - inserting 1000 documents. first: Guven and last: 1995 Baku Metro fire -[2018-02-13T08:36:41.097] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:36:41.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/retete-culese.blogspot.com and last: RWD-24 -[2018-02-13T08:36:41.176] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:41.221] [INFO] cheese - inserting 1000 documents. first: St Pius X Church and last: Automolis duplicata -[2018-02-13T08:36:41.233] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom locations: S and last: East Maitland -[2018-02-13T08:36:41.244] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:36:41.304] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:36:41.362] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:36:41.546] [INFO] cheese - inserting 1000 documents. first: Rocky and bullwinkle and last: Seattle seawall -[2018-02-13T08:36:41.551] [INFO] cheese - inserting 1000 documents. first: Holy Crown of Thorns and last: File:Redemption large.jpg -[2018-02-13T08:36:41.574] [INFO] cheese - inserting 1000 documents. first: Value Change Dump and last: 249th EN -[2018-02-13T08:36:41.625] [INFO] cheese - inserting 1000 documents. first: Black September in Jordan and last: Pembe Marmara -[2018-02-13T08:36:41.636] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:41.671] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:36:41.675] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:36:41.709] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:41.790] [INFO] cheese - inserting 1000 documents. first: Walter Thomas Mills and last: Quantization of the electromagnetic field -[2018-02-13T08:36:41.855] [INFO] cheese - inserting 1000 documents. first: Category:1943 record charts and last: Category:Olympic handball players of Kazakhstan -[2018-02-13T08:36:41.859] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:36:41.883] [INFO] cheese - inserting 1000 documents. first: Automolis fassli and last: Tyler Evans -[2018-02-13T08:36:41.975] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:42.059] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:36:42.061] [INFO] cheese - inserting 1000 documents. first: Commonwealth of Israel and last: Toby gad -[2018-02-13T08:36:42.114] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:36:42.223] [INFO] cheese - inserting 1000 documents. first: File:MDNighthawks.PNG and last: Criticism of Michael Moore -[2018-02-13T08:36:42.254] [INFO] cheese - inserting 1000 documents. first: Broadcast media industry and last: Wikipedia:Articles for deletion/Hans Sandrock -[2018-02-13T08:36:42.260] [INFO] cheese - inserting 1000 documents. first: File:Final Quad Poster (smallest).jpg and last: MATRI Perlis -[2018-02-13T08:36:42.276] [INFO] cheese - inserting 1000 documents. first: JUST Me and last: Methphendrazine -[2018-02-13T08:36:42.283] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:36:42.305] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:36:42.311] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:36:42.322] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Women's triple jump and last: Nathanial Neale -[2018-02-13T08:36:42.324] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:36:42.396] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T08:36:42.409] [INFO] cheese - inserting 1000 documents. first: Irina Borechko and last: Masan Group -[2018-02-13T08:36:42.458] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T08:36:42.482] [INFO] cheese - inserting 1000 documents. first: Siai-Marchetti Warrior and last: Wikipedia:Articles for deletion/Maitrayaniya Upanishad -[2018-02-13T08:36:42.541] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:36:42.584] [INFO] cheese - inserting 1000 documents. first: Transportation in Palau and last: Aquae Flaviae -[2018-02-13T08:36:42.650] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:36:42.701] [INFO] cheese - inserting 1000 documents. first: Grooved helmet-orchid and last: Hank the Cowdog season 1 -[2018-02-13T08:36:42.745] [INFO] cheese - inserting 1000 documents. first: Sergey Khorokhordin and last: Petplan USA pet insurance -[2018-02-13T08:36:42.765] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:36:42.797] [INFO] cheese - inserting 1000 documents. first: W278AI and last: List of Equatorial Guinean records in athletics -[2018-02-13T08:36:42.823] [INFO] cheese - inserting 1000 documents. first: Nat Neale and last: Category:Sport in Tainan -[2018-02-13T08:36:42.892] [INFO] cheese - inserting 1000 documents. first: Saluc and last: Category:1906 elections in the United States -[2018-02-13T08:36:42.911] [INFO] cheese - inserting 1000 documents. first: Swamp Wallaby and last: Casignetella directella -[2018-02-13T08:36:42.912] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:36:42.928] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:42.997] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:36:43.072] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:36:43.079] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:36:43.309] [INFO] cheese - inserting 1000 documents. first: Thailand at the 2006 Winter Olympics and last: George colby chase -[2018-02-13T08:36:43.321] [INFO] cheese - inserting 1000 documents. first: Category:Critics and last: Teletext Limited -[2018-02-13T08:36:43.365] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:36:43.401] [INFO] cheese - inserting 1000 documents. first: IBasis and last: Double Diamond Dude Ranch Dining Hall -[2018-02-13T08:36:43.411] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:36:43.424] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Allerød Municipality and last: 2016 Sparta Prague Open - Doubles -[2018-02-13T08:36:43.425] [INFO] cheese - inserting 1000 documents. first: Slovenian PrvaLiga 2008–09 and last: William II of Brunswick-Calenberg-Göttingen -[2018-02-13T08:36:43.448] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:36:43.476] [INFO] cheese - inserting 1000 documents. first: Casignetella diplodon and last: Conditional fallacy -[2018-02-13T08:36:43.484] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:43.514] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:36:43.535] [INFO] cheese - inserting 1000 documents. first: ISO 639:ptq and last: Bell and Hammer -[2018-02-13T08:36:43.573] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:36:43.607] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:36:43.662] [INFO] cheese - inserting 1000 documents. first: Otome game and last: Ontario Highway 49 -[2018-02-13T08:36:43.727] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:36:43.853] [INFO] cheese - inserting 1000 documents. first: Category:Olympic boxers of Papua New Guinea and last: Dragiša Pejović -[2018-02-13T08:36:43.860] [INFO] cheese - inserting 1000 documents. first: Tobias Mattay and last: Henry Hiles -[2018-02-13T08:36:43.891] [INFO] cheese - inserting 1000 documents. first: John Hyacinth de Magellan and last: Scuola italiana di Mosca -[2018-02-13T08:36:43.897] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:36:43.914] [INFO] cheese - inserting 1000 documents. first: 1976 U.S. Clay Court Championships - Women's Doubles and last: Chulahoma (disambiguation) -[2018-02-13T08:36:43.936] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:36:43.939] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:36:43.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eqt.com and last: Chionodraco kathleenae -[2018-02-13T08:36:43.987] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:36:44.001] [INFO] cheese - inserting 1000 documents. first: George chase and last: C.L. Jackson -[2018-02-13T08:36:44.041] [INFO] cheese - inserting 1000 documents. first: Tarantella, Incorporated and last: Wicked Witch of the East -[2018-02-13T08:36:44.054] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T08:36:44.070] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:44.138] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:36:44.206] [INFO] cheese - inserting 1000 documents. first: Kohan and last: SKGLB Museum -[2018-02-13T08:36:44.274] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:36:44.423] [INFO] cheese - inserting 1000 documents. first: French Lake, California and last: Aftershock (Law & Order) -[2018-02-13T08:36:44.485] [INFO] cheese - inserting 1000 documents. first: Category:Vice Chancellors of the University of South Australia and last: File:President Wanted Poster.jpg -[2018-02-13T08:36:44.489] [INFO] cheese - inserting 1000 documents. first: 2010 NPSL season and last: Ibn Bajja (crater) -[2018-02-13T08:36:44.493] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:36:44.543] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:44.570] [INFO] cheese - inserting 1000 documents. first: Al–Li and last: Category:Serj Tankian live albums -[2018-02-13T08:36:44.588] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:36:44.680] [INFO] cheese - inserting 1000 documents. first: Chaenichthys rhinoceratus hamatus and last: Film1 Family -[2018-02-13T08:36:44.681] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:36:44.794] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:44.889] [INFO] cheese - inserting 1000 documents. first: Lady Yuhwa and last: Template:BE-REG-FLE -[2018-02-13T08:36:44.917] [INFO] cheese - inserting 1000 documents. first: Kostelec u Heřmanova Městce and last: Nonnberg Abbey -[2018-02-13T08:36:44.954] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:36:45.033] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:36:45.116] [INFO] cheese - inserting 1000 documents. first: Ihar Razhkow and last: Category:Public transport in Alberta -[2018-02-13T08:36:45.123] [INFO] cheese - inserting 1000 documents. first: B.H. Roberts and last: Category:1936 in sports -[2018-02-13T08:36:45.147] [INFO] cheese - inserting 1000 documents. first: File:Bonobo Kanzi Panbanisha Sue 2054.jpg and last: Category:Sports venues in Nord-Pas-de-Calais -[2018-02-13T08:36:45.151] [INFO] cheese - inserting 1000 documents. first: Channing Gibson and last: Drillia detecta -[2018-02-13T08:36:45.207] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:36:45.216] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:36:45.267] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:36:45.277] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:36:45.325] [INFO] cheese - inserting 1000 documents. first: 1947 Yorkshire Cup and last: House of Commons, Parliament of the United Kingdom of Great Britain and Northern Ireland -[2018-02-13T08:36:45.434] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:36:45.442] [INFO] cheese - inserting 1000 documents. first: Template:Cite DGRBM/testcases and last: Amar-e Mianrud -[2018-02-13T08:36:45.561] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:36:45.691] [INFO] cheese - inserting 1000 documents. first: Lamourby and last: It's About Time (song) -[2018-02-13T08:36:45.739] [INFO] cheese - inserting 1000 documents. first: Category:Universities in Nord-Pas-de-Calais and last: Events in 1082 -[2018-02-13T08:36:45.758] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:36:45.763] [INFO] cheese - inserting 1000 documents. first: Drillia diasi and last: Wikipedia:Articles for deletion/Jim Thornton -[2018-02-13T08:36:45.792] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:36:45.841] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:36:45.892] [INFO] cheese - inserting 1000 documents. first: NAPA Auto Parts 300 and last: Mappila Paattu -[2018-02-13T08:36:45.897] [INFO] cheese - inserting 1000 documents. first: 2008 Toronto explosion and last: Proof (alcohol) -[2018-02-13T08:36:45.960] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:36:45.965] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:36:46.008] [INFO] cheese - inserting 1000 documents. first: House of Lords, Parliament of the United Kingdom of Great Britain and Northern Ireland and last: Beatty Anchorage, British Columbia -[2018-02-13T08:36:46.023] [INFO] cheese - inserting 1000 documents. first: Jiangsu Suning Appliance Group Co., Ltd. and last: Events in 256 -[2018-02-13T08:36:46.025] [INFO] cheese - inserting 1000 documents. first: Davaoeño dialect and last: Shahrak Sarab-e Humian -[2018-02-13T08:36:46.060] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T08:36:46.101] [INFO] cheese - inserting 1000 documents. first: Third Reich and Roll and last: Timeline of liberal and democratic parties in New Zealand -[2018-02-13T08:36:46.171] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:46.177] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:36:46.267] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:36:46.339] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Patchouli and last: ビ -[2018-02-13T08:36:46.350] [INFO] cheese - inserting 1000 documents. first: Events in 255 and last: Births in 1441 -[2018-02-13T08:36:46.382] [INFO] cheese - inserting 1000 documents. first: HMS Hecate (1839) and last: Category:WikiProject Essays articles -[2018-02-13T08:36:46.390] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T08:36:46.423] [INFO] cheese - inserting 1000 documents. first: Template:Country Radio Stations in Wyoming and last: Category:1918 in rail transport -[2018-02-13T08:36:46.429] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:46.483] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:36:46.490] [INFO] cheese - inserting 1000 documents. first: Francisco Rodríguez Jr. and last: Template:Diff3/sandbox -[2018-02-13T08:36:46.499] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:36:46.540] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T08:36:46.598] [INFO] cheese - inserting 1000 documents. first: Mappilapaattu and last: Cadena Salsoul -[2018-02-13T08:36:46.643] [INFO] cheese - inserting 1000 documents. first: Lost in Smoke 2 and last: McDavid (restaurant) -[2018-02-13T08:36:46.676] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T08:36:46.702] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:46.707] [INFO] cheese - inserting 1000 documents. first: Category:DOS games and last: Category:757 -[2018-02-13T08:36:46.783] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2012-02-02 and last: Category:Norwegian football clubs 2010 season -[2018-02-13T08:36:46.789] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:36:46.913] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:36:46.990] [INFO] cheese - inserting 1000 documents. first: File:Joe Satriani - 1992 - Friends.jpg and last: Tourism in Crimea -[2018-02-13T08:36:47.009] [INFO] cheese - inserting 1000 documents. first: Category:1919 in rail transport and last: Zarat, Siazan -[2018-02-13T08:36:47.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2007 May 6 and last: Wikipedia:WikiProject Regional and national music/Outreach -[2018-02-13T08:36:47.037] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:36:47.045] [INFO] cheese - inserting 1000 documents. first: Wǔdāngquán and last: Sporting CP in European football -[2018-02-13T08:36:47.063] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:36:47.071] [INFO] cheese - inserting 1000 documents. first: Births in 644 and last: Pravetz-16E -[2018-02-13T08:36:47.095] [INFO] cheese - inserting 1000 documents. first: Template:Footer Olympic Champions 3000 m Steeplechase Men and last: Category:1614 -[2018-02-13T08:36:47.096] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:36:47.119] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:36:47.125] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:36:47.137] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T08:36:47.327] [INFO] cheese - inserting 1000 documents. first: Thomas Macdonough and last: Marilena Carpathia -[2018-02-13T08:36:47.380] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:36:47.424] [INFO] cheese - inserting 1000 documents. first: Yanıq Ələz and last: Bill Lancton -[2018-02-13T08:36:47.488] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T08:36:47.572] [INFO] cheese - inserting 1000 documents. first: Nikonha and last: Category:Moby remix albums -[2018-02-13T08:36:47.572] [INFO] cheese - inserting 1000 documents. first: Swapnil Patil and last: Hanby Hall -[2018-02-13T08:36:47.578] [INFO] cheese - inserting 1000 documents. first: Pravetz-16ES and last: Category:Serbian Orthodox Church in Canada -[2018-02-13T08:36:47.599] [INFO] cheese - inserting 1000 documents. first: Bartolomeo della Porta and last: Kyongwon Ahn -[2018-02-13T08:36:47.648] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:36:47.669] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:36:47.708] [INFO] cheese - inserting 1000 documents. first: Miroslav Lehký and last: File:Hexagonal Coordinates ZigZag Columns.svg -[2018-02-13T08:36:47.722] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:36:47.731] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:36:47.858] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:36:47.935] [INFO] cheese - inserting 1000 documents. first: Category:1615 and last: Wikipedia:Votes for deletion/Ba'thist regime -[2018-02-13T08:36:47.961] [INFO] cheese - inserting 1000 documents. first: Samurai Shodown (series) and last: Category:1986 in British cinema -[2018-02-13T08:36:47.994] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T08:36:48.004] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:36:48.112] [INFO] cheese - inserting 1000 documents. first: Long Island (Boston) and last: Jack Thompson and the Jacob Robida murders -[2018-02-13T08:36:48.120] [INFO] cheese - inserting 1000 documents. first: List of RHPs in Nassau and last: Clore leadership programme -[2018-02-13T08:36:48.219] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:36:48.292] [INFO] cheese - inserting 1000 documents. first: File:Misiaremix1999.jpg and last: Cancellaria parva -[2018-02-13T08:36:48.300] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:36:48.364] [INFO] cheese - inserting 1000 documents. first: List of Iowa Civil War units and last: Jennifer McMahon -[2018-02-13T08:36:48.389] [INFO] cheese - inserting 1000 documents. first: Deaths in 1567 and last: Deaths in 741 -[2018-02-13T08:36:48.420] [INFO] cheese - inserting 1000 documents. first: Western Sahara question and last: Dormition Cathedral, Kiev -[2018-02-13T08:36:48.427] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:48.435] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:36:48.456] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:36:48.496] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:36:48.501] [INFO] cheese - inserting 1000 documents. first: Angami-Pochuri and last: Wikipedia:WikiProject Spam/LinkReports/nycsubway.org -[2018-02-13T08:36:48.563] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:48.767] [INFO] cheese - inserting 1000 documents. first: Deaths in 740 and last: Category:Retail companies of South America -[2018-02-13T08:36:48.782] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T08:36:48.954] [INFO] cheese - inserting 1000 documents. first: Microsveltia patricia and last: Pina (disambiguation) -[2018-02-13T08:36:48.965] [INFO] cheese - inserting 1000 documents. first: ECPP and last: Ara Coeli Church -[2018-02-13T08:36:48.969] [INFO] cheese - inserting 1000 documents. first: Yulia Makhalina and last: Category:Song dynasty eunuchs -[2018-02-13T08:36:48.995] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:36:49.029] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:49.063] [INFO] cheese - inserting 1000 documents. first: Allium praecox and last: A.III -[2018-02-13T08:36:49.080] [INFO] cheese - inserting 1000 documents. first: Rude's Hill and last: Central Mashan Miao language -[2018-02-13T08:36:49.084] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:36:49.136] [INFO] cheese - inserting 1000 documents. first: Mankato airport and last: Patrick Forbes of Corse -[2018-02-13T08:36:49.136] [INFO] cheese - inserting 1000 documents. first: Zagreb University and last: Boston Harbor Islands National Recreation Area -[2018-02-13T08:36:49.193] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:36:49.200] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:36:49.227] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:36:49.231] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:36:49.554] [INFO] cheese - inserting 1000 documents. first: Category:Song dynasty generals and last: Victor Zangiyev -[2018-02-13T08:36:49.588] [INFO] cheese - inserting 1000 documents. first: Henlow Camp station and last: Wikipedia:Articles for deletion/Kuch Gunjoan Ki Shaan Mein -[2018-02-13T08:36:49.624] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:36:49.675] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:49.769] [INFO] cheese - inserting 1000 documents. first: Barbecue flavour and last: Uganda national under-19 cricket team -[2018-02-13T08:36:49.791] [INFO] cheese - inserting 1000 documents. first: Greg Broderick and last: Roger W. Riehl -[2018-02-13T08:36:49.824] [INFO] cheese - inserting 1000 documents. first: Adolfo Lazzarini and last: La 1/2 Docena -[2018-02-13T08:36:49.840] [INFO] cheese - inserting 1000 documents. first: José Mariano da Conceição Vellozo and last: File:Birralee logo.JPG -[2018-02-13T08:36:49.869] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:36:49.883] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:36:49.892] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:36:49.932] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:50.012] [INFO] cheese - inserting 1000 documents. first: List of women architects and last: Clonca Church & Cross -[2018-02-13T08:36:50.066] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:36:50.136] [INFO] cheese - inserting 1000 documents. first: Constantine and Athanasios Zografi and last: Terebra hancocki -[2018-02-13T08:36:50.176] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:36:50.188] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Edgar County, Illinois and last: Platphalonidia dubia -[2018-02-13T08:36:50.258] [INFO] cheese - inserting 1000 documents. first: Wautoma and last: 57-cell -[2018-02-13T08:36:50.273] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:36:50.359] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:36:50.401] [INFO] cheese - inserting 1000 documents. first: Category:Railway companies established in 1998 and last: Froths -[2018-02-13T08:36:50.434] [INFO] cheese - inserting 1000 documents. first: Persian Armenia and last: St. Patrick's Catholic Church, Yungaburra -[2018-02-13T08:36:50.438] [INFO] cheese - inserting 1000 documents. first: File:Bolinao beacon.JPG and last: CPDLC -[2018-02-13T08:36:50.481] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:36:50.525] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:36:50.546] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:36:50.565] [INFO] cheese - inserting 1000 documents. first: Huhne and last: Composers' Guild of Great Britain -[2018-02-13T08:36:50.644] [INFO] cheese - inserting 1000 documents. first: Bantam (military) and last: Al Masihiya -[2018-02-13T08:36:50.690] [INFO] cheese - inserting 1000 documents. first: Terebra helichrysum and last: De Huinsermolen, Húns -[2018-02-13T08:36:50.693] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:50.758] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:36:50.796] [INFO] cheese - inserting 1000 documents. first: Latvian names and last: Category:Community schools in the Royal Borough of Kensington and Chelsea -[2018-02-13T08:36:50.829] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:36:50.946] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:36:51.082] [INFO] cheese - inserting 1000 documents. first: Nightmare (Soul Calibur) and last: Dervishalikyshlak -[2018-02-13T08:36:51.174] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:36:51.298] [INFO] cheese - inserting 1000 documents. first: Mineral resource and last: Mwene-Ditu (commune) -[2018-02-13T08:36:51.302] [INFO] cheese - inserting 1000 documents. first: 2003–04 AFC Ajax season and last: Irn-Bru Cup -[2018-02-13T08:36:51.329] [INFO] cheese - inserting 1000 documents. first: David Brewer (broker) and last: First pair part -[2018-02-13T08:36:51.334] [INFO] cheese - inserting 1000 documents. first: Erromanga (ship) and last: Yorkie Terriers -[2018-02-13T08:36:51.362] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:36:51.365] [INFO] cheese - inserting 1000 documents. first: Projective special linear group and last: Bessacarr -[2018-02-13T08:36:51.373] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:36:51.421] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:36:51.434] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:36:51.476] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:36:51.557] [INFO] cheese - inserting 1000 documents. first: Sami Jo Small and last: The Outlets -[2018-02-13T08:36:51.618] [INFO] cheese - inserting 1000 documents. first: Early Family Historic District and last: Christie Carpino -[2018-02-13T08:36:51.636] [INFO] cheese - inserting 1000 documents. first: Ərəb, Khachmaz and last: Portal:Early modern Britain/Selected biography/4 -[2018-02-13T08:36:51.636] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:36:51.675] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:36:51.691] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:36:51.826] [INFO] cheese - inserting 1000 documents. first: Sarangapani temple and last: Revue Canadienne de Psychiatrie -[2018-02-13T08:36:51.862] [INFO] cheese - inserting 1000 documents. first: Little Flatrock River and last: File:The Last Desperate Hours.jpg -[2018-02-13T08:36:51.883] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:36:51.929] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:36:51.958] [INFO] cheese - inserting 1000 documents. first: Listowel mutiny and last: Category:Theatres in Croatia -[2018-02-13T08:36:51.958] [INFO] cheese - inserting 1000 documents. first: Feet in the Clouds and last: List of infrared articles -[2018-02-13T08:36:52.019] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:36:52.038] [INFO] cheese - inserting 1000 documents. first: 김해국제공항 and last: Category:Metro Conference soccer -[2018-02-13T08:36:52.053] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:36:52.095] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:36:52.122] [INFO] cheese - inserting 1000 documents. first: Shamballah and last: CIGI -[2018-02-13T08:36:52.150] [INFO] cheese - inserting 1000 documents. first: King of the Children and last: St. Paul\'s United Methodist Church (Nyack, New York) -[2018-02-13T08:36:52.183] [INFO] cheese - inserting 1000 documents. first: X-Win64 and last: Portal:Rugby league/Did you know -[2018-02-13T08:36:52.257] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:36:52.273] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:36:52.358] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:36:52.479] [INFO] cheese - inserting 1000 documents. first: L'Intrépide and last: Paralepetopsis ferrugivora -[2018-02-13T08:36:52.568] [INFO] cheese - inserting 1000 documents. first: 501e Régiment de chars de combat and last: Puck (comics character) -[2018-02-13T08:36:52.567] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:36:52.656] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:36:52.716] [INFO] cheese - inserting 1000 documents. first: Wikipedia:RESTRICTED and last: Peter Brady (The Invisible Man) -[2018-02-13T08:36:52.748] [INFO] cheese - inserting 1000 documents. first: McFarlane Lake, Ontario and last: Edward Francis Boyd -[2018-02-13T08:36:52.770] [INFO] cheese - inserting 1000 documents. first: CB Coruña and last: Tiroler Graukäse -[2018-02-13T08:36:52.790] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:52.811] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:36:52.817] [INFO] cheese - inserting 1000 documents. first: Category:Lincoln Saltdogs players and last: Template:News/Talk Radio Stations in Maine -[2018-02-13T08:36:52.825] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:36:52.895] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:36:52.934] [INFO] cheese - inserting 1000 documents. first: Boeing LRV and last: Wikipedia:Use of userboxes -[2018-02-13T08:36:52.995] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:36:53.037] [INFO] cheese - inserting 1000 documents. first: Horslips and last: Vibrating structure gyroscope -[2018-02-13T08:36:53.060] [INFO] cheese - inserting 1000 documents. first: Paralepetopsis floridensis and last: Frank "Deacon" Waite -[2018-02-13T08:36:53.084] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change for the Children Foundation and last: Category:Energy companies established in 1956 -[2018-02-13T08:36:53.114] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:36:53.163] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:36:53.179] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:53.188] [INFO] cheese - inserting 1000 documents. first: National Palace (Guatemala) and last: Aura (Revelation Space) -[2018-02-13T08:36:53.211] [INFO] cheese - inserting 1000 documents. first: Belfer Center and last: J Psychohist -[2018-02-13T08:36:53.237] [INFO] cheese - inserting 1000 documents. first: Leslie Pine and last: Wikipedia:Articles for deletion/Virtual Print Fee -[2018-02-13T08:36:53.247] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:36:53.251] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T08:36:53.301] [INFO] cheese - inserting 1000 documents. first: Roscommon Township and last: Category:Executed Iraqi women -[2018-02-13T08:36:53.326] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:36:53.357] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:36:53.457] [INFO] cheese - inserting 1000 documents. first: The 1960 Winter Olympics and last: The Emancipation Of Mimi Billboard 200 trajectory -[2018-02-13T08:36:53.515] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:36:53.516] [INFO] cheese - inserting 1000 documents. first: File:Gummibears.jpg and last: List of Beyblade: Metal Fusion episodes (season 1 part 1) -[2018-02-13T08:36:53.580] [INFO] cheese - inserting 1000 documents. first: File:WhatsLeftOfSpiderJohn.jpg and last: Funk Bible -[2018-02-13T08:36:53.586] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:36:53.619] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:36:53.630] [INFO] cheese - inserting 1000 documents. first: Comarchis staurocola and last: Opharus brasiliensis -[2018-02-13T08:36:53.670] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T08:36:53.728] [INFO] cheese - inserting 1000 documents. first: Tarbey and last: SE-tan -[2018-02-13T08:36:53.737] [INFO] cheese - inserting 1000 documents. first: Category:Bus transportation in Mississippi and last: Meanwhile Studios -[2018-02-13T08:36:53.780] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:53.891] [INFO] cheese - inserting 1000 documents. first: List of Olympic medalists in swimming (men) and last: Irregular Galaxy M82 -[2018-02-13T08:36:54.005] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:54.048] [INFO] cheese - inserting 1000 documents. first: Under the Mersey Wall and last: Wikipedia:Articles for deletion/Ground Control (film) -[2018-02-13T08:36:54.057] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:36:54.234] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:36:54.239] [INFO] cheese - inserting 1000 documents. first: 2010 National Cricket League Twenty20 and last: Wikipedia:Files for deletion/2010 April 10 -[2018-02-13T08:36:54.244] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/City of God – 10 Years Later and last: American Indian Pidgin English language -[2018-02-13T08:36:54.297] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:36:54.298] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:36:54.300] [INFO] cheese - inserting 1000 documents. first: File:Donovan-The Great Donovan.jpg and last: Journal of the Atmospheric Sciences -[2018-02-13T08:36:54.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of G:link stations/archive1 and last: Palace of Maffei Marescotti -[2018-02-13T08:36:54.394] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:36:54.469] [INFO] cheese - inserting 1000 documents. first: Template:Settlements on the Isle of Wight and last: Songs of the underground railroad -[2018-02-13T08:36:54.507] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:36:54.568] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:36:54.574] [INFO] cheese - inserting 1000 documents. first: Monastery of Chevetogne and last: Hol Horse (manga) -[2018-02-13T08:36:54.675] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:36:54.840] [INFO] cheese - inserting 1000 documents. first: Queensland Kanaka English language and last: Lotta Falkenback -[2018-02-13T08:36:54.875] [INFO] cheese - inserting 1000 documents. first: Jane Elizabeth Harris and last: Category:Les Discrets albums -[2018-02-13T08:36:54.881] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2010 April 10 and last: Aureliano Sanchez Arango -[2018-02-13T08:36:54.913] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:36:54.919] [INFO] cheese - inserting 1000 documents. first: Messier Object 82 and last: Lord's Day Act -[2018-02-13T08:36:54.946] [INFO] cheese - inserting 1000 documents. first: A178 road (Great Britain) and last: Mehdibəyli -[2018-02-13T08:36:54.968] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:36:54.989] [INFO] cheese - inserting 1000 documents. first: File:Petticoat library.jpg and last: Birkat Kohanim -[2018-02-13T08:36:55.012] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:36:55.027] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:36:55.048] [INFO] cheese - inserting 1000 documents. first: Cishomonormativity and last: Fellows, John -[2018-02-13T08:36:55.050] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:55.178] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:55.215] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:36:55.448] [INFO] cheese - inserting 1000 documents. first: Tinguirica fauna and last: Houngan (Clayfighter) -[2018-02-13T08:36:55.467] [INFO] cheese - inserting 1000 documents. first: Ajmer Chandigarh Garib Rath Express and last: Claude Weston -[2018-02-13T08:36:55.562] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:55.621] [INFO] cheese - inserting 1000 documents. first: Kansas National Forest and last: Alıbəyli, Zangilan -[2018-02-13T08:36:55.631] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:36:55.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2010-04-12/Arbitration report and last: Krumbiegel -[2018-02-13T08:36:55.711] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:55.801] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:36:55.844] [INFO] cheese - inserting 1000 documents. first: 17-Dihydroequilin sodium sulfate and last: Rocky Bluff Battery and Township -[2018-02-13T08:36:55.935] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:36:55.950] [INFO] cheese - inserting 1000 documents. first: HM Prison Acklington and last: Babotie -[2018-02-13T08:36:56.094] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:36:56.189] [INFO] cheese - inserting 1000 documents. first: Wrinkle ridge and last: Pauline Parker -[2018-02-13T08:36:56.215] [INFO] cheese - inserting 1000 documents. first: Template:R to alternative disambiguation and last: Peter Tossol -[2018-02-13T08:36:56.259] [INFO] cheese - inserting 1000 documents. first: Housetrucker and last: Portal:Aerosmith/box-footer -[2018-02-13T08:36:56.289] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:36:56.293] [INFO] cheese - inserting 1000 documents. first: Three Blind Dates and last: A467 road (Great Britain) -[2018-02-13T08:36:56.305] [INFO] cheese - inserting 1000 documents. first: Doctors to Be: 20 Years On and last: MUC8 -[2018-02-13T08:36:56.306] [INFO] cheese - batch complete in: 1.279 secs -[2018-02-13T08:36:56.345] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:36:56.355] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:36:56.426] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:36:56.455] [INFO] cheese - inserting 1000 documents. first: File:Cover Nergens Zonder Jou.jpg and last: 1912-13 Scottish Football League -[2018-02-13T08:36:56.504] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SZM left/Airport and last: Category:Documents of Slovenia -[2018-02-13T08:36:56.536] [INFO] cheese - batch complete in: 1.567 secs -[2018-02-13T08:36:56.583] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:56.624] [INFO] cheese - inserting 1000 documents. first: U.S. presidential election, 1796 and last: MFPA -[2018-02-13T08:36:56.705] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:56.820] [INFO] cheese - inserting 1000 documents. first: Maren Derlien and last: Portal:Brazil/Selected quote/Archives -[2018-02-13T08:36:56.834] [INFO] cheese - inserting 1000 documents. first: Batman: Battle For The Cowl and last: Fujiwara no Kiyonari -[2018-02-13T08:36:56.854] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:36:56.892] [INFO] cheese - inserting 1000 documents. first: Nemuroglanis and last: Barbey D`Aurevilly -[2018-02-13T08:36:56.910] [INFO] cheese - inserting 1000 documents. first: Olav Bjornstad and last: Vishveshwarayya -[2018-02-13T08:36:56.922] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:36:56.967] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T08:36:56.985] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:36:57.054] [INFO] cheese - inserting 1000 documents. first: Cindy Burger and last: Bajemelia -[2018-02-13T08:36:57.067] [INFO] cheese - inserting 1000 documents. first: Patricia Aldyen Austin Taylor "Pat" Buckley and last: Long Footed Potoroo -[2018-02-13T08:36:57.093] [INFO] cheese - inserting 1000 documents. first: List of National Titles and last: Hroðulf -[2018-02-13T08:36:57.114] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:36:57.126] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:57.215] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:36:57.322] [INFO] cheese - inserting 1000 documents. first: 1955-56 Hong Kong First Division League and last: 1978-79 OB I bajnoksag season -[2018-02-13T08:36:57.334] [INFO] cheese - inserting 1000 documents. first: Holddown (disambiguation) and last: PUC-Rio -[2018-02-13T08:36:57.409] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:36:57.485] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:36:57.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Walnut Street Historic District and last: File:Squilstand.jpg -[2018-02-13T08:36:57.531] [INFO] cheese - inserting 1000 documents. first: Peter F. (Peter Ferdinand) Drucker and last: Category:Barbados at the Central American and Caribbean Games -[2018-02-13T08:36:57.566] [INFO] cheese - inserting 1000 documents. first: Phtheochroa duponchelana and last: 2011 UEFA European Under-21 Football Championship qualification Group 7 -[2018-02-13T08:36:57.608] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:36:57.632] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:36:57.683] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:36:57.706] [INFO] cheese - inserting 1000 documents. first: Marguerite Viby and last: Tita (footballer) -[2018-02-13T08:36:57.767] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:36:57.925] [INFO] cheese - inserting 1000 documents. first: 1978-79 Polska Liga Hokejowa season and last: Maguta -[2018-02-13T08:36:57.957] [INFO] cheese - inserting 1000 documents. first: K205CY and last: Wajir North Constituency -[2018-02-13T08:36:57.964] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:36:58.016] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:36:58.223] [INFO] cheese - inserting 1000 documents. first: Mohammed Al-Balushi and last: Kikonai -[2018-02-13T08:36:58.241] [INFO] cheese - inserting 1000 documents. first: File:Star Fox Adventures GCN Screenshot.jpg and last: Lake Isabella -[2018-02-13T08:36:58.247] [INFO] cheese - inserting 1000 documents. first: Empty category (category theory) and last: 1965 Rutgers Scarlet Knights football team -[2018-02-13T08:36:58.293] [INFO] cheese - inserting 1000 documents. first: Template:Copper Basin Railway and last: Norris Stephen Falla -[2018-02-13T08:36:58.293] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:36:58.301] [INFO] cheese - inserting 1000 documents. first: Dorin Goian and last: Progressive Canadian Party candidates, 2006 Canadian federal election -[2018-02-13T08:36:58.322] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:36:58.354] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:36:58.356] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:36:58.383] [INFO] cheese - inserting 1000 documents. first: He Whom God Would Make Manifest and last: Wikipedia:GIANTDICK -[2018-02-13T08:36:58.476] [INFO] cheese - inserting 1000 documents. first: 2011 UEFA European Under-21 Football Championship qualification Group 8 and last: Pipariya -[2018-02-13T08:36:58.493] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:36:58.551] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:36:58.655] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:36:58.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Greavesville and last: 2011 Kremlin Cup - Women's Singles Qualifying -[2018-02-13T08:36:58.836] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:58.878] [INFO] cheese - inserting 1000 documents. first: Gord Reay and last: File:YuccaTheatreMidland.jpg -[2018-02-13T08:36:58.957] [INFO] cheese - inserting 1000 documents. first: A340 road (Great Britain) and last: Sandstone Township -[2018-02-13T08:36:58.979] [INFO] cheese - inserting 1000 documents. first: List of plants used in South Asian cuisine and last: Gerald Michael Browne -[2018-02-13T08:36:59.054] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:36:59.062] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:36:59.087] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:36:59.149] [INFO] cheese - inserting 1000 documents. first: 2011 Kōfu International Open - Doubles and last: The Mormons (documentary) -[2018-02-13T08:36:59.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Teniii and last: The Islamic Bank of Asia -[2018-02-13T08:36:59.268] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:36:59.292] [INFO] cheese - inserting 1000 documents. first: Gary Graham (musician) and last: Erxian -[2018-02-13T08:36:59.305] [INFO] cheese - inserting 1000 documents. first: District courts of Japan and last: Arnold Payne (athlete) -[2018-02-13T08:36:59.338] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:36:59.354] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:36:59.442] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:36:59.536] [INFO] cheese - inserting 1000 documents. first: Ebauche and last: Ong Bak -[2018-02-13T08:36:59.608] [INFO] cheese - inserting 1000 documents. first: 2011-12 Scottish Junior Cup and last: Communist purges in Serbia in 1944-1945 -[2018-02-13T08:36:59.640] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T08:36:59.680] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T08:36:59.690] [INFO] cheese - inserting 1000 documents. first: Secularism in the Arab World and last: The Streamy Awards -[2018-02-13T08:36:59.728] [INFO] cheese - inserting 1000 documents. first: Category:Film artists from Karnataka and last: Category:Beernem -[2018-02-13T08:36:59.784] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:36:59.800] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:36:59.840] [INFO] cheese - inserting 1000 documents. first: Student protests and last: It's Roger Rabbit -[2018-02-13T08:36:59.941] [INFO] cheese - inserting 1000 documents. first: Saint Vincent and the Grenadines at the Commonwealth Games and last: Pederly -[2018-02-13T08:36:59.975] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:36:59.980] [INFO] cheese - inserting 1000 documents. first: Broginin and last: Template:Steve Martino -[2018-02-13T08:37:00.041] [INFO] cheese - inserting 1000 documents. first: Communities in the Minneapolis-Saint Paul Metro area and last: List of MPs of Colchester, 1885-1983 -[2018-02-13T08:37:00.073] [INFO] cheese - inserting 1000 documents. first: Juno Award for Classical Album of the Year – Large Ensemble or Soloist(s) with Large Ensemble Accompaniment and last: Madhu Purnima -[2018-02-13T08:37:00.098] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:37:00.110] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:37:00.177] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:37:00.191] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:37:00.329] [INFO] cheese - inserting 1000 documents. first: Guatemala at the 1984 Summer Paralympics and last: Category:Works by David Storey -[2018-02-13T08:37:00.368] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:37:00.497] [INFO] cheese - inserting 1000 documents. first: Architecture of Moscow and last: Swimming at the 2011 World Aquatics Championships - Women's 200 metre butterfly -[2018-02-13T08:37:00.560] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T08:37:00.578] [INFO] cheese - inserting 1000 documents. first: Lutz-Splendore-de Almeida disease and last: Wikipedia:Changing username/Archive4 -[2018-02-13T08:37:00.603] [INFO] cheese - inserting 1000 documents. first: Slit Throats Case and last: William W. Thayer -[2018-02-13T08:37:00.651] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:37:00.718] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:37:00.792] [INFO] cheese - inserting 1000 documents. first: Madison Park High School and last: Dyffryn-bern -[2018-02-13T08:37:00.879] [INFO] cheese - inserting 1000 documents. first: Kelanly and last: 1981 All-Ireland Senior Hurling Championship -[2018-02-13T08:37:00.894] [INFO] cheese - inserting 1000 documents. first: Barbell Nebula and last: Rice car -[2018-02-13T08:37:00.912] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:37:00.992] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2011 World Aquatics Championships - Women's 200 metre freestyle and last: Hardington, Somerset -[2018-02-13T08:37:01.009] [INFO] cheese - inserting 1000 documents. first: Category:Socialist parties in China and last: Les as du turf -[2018-02-13T08:37:01.022] [INFO] cheese - inserting 1000 documents. first: File:8 track sound system.jpg and last: IFLB -[2018-02-13T08:37:01.031] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:37:01.061] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:37:01.062] [INFO] cheese - batch complete in: 1.382 secs -[2018-02-13T08:37:01.148] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Changing username/Archive40 and last: Longgang Mosque -[2018-02-13T08:37:01.153] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:37:01.204] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:37:01.267] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:01.391] [INFO] cheese - inserting 1000 documents. first: List of tall buildings and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/634 -[2018-02-13T08:37:01.429] [INFO] cheese - inserting 1000 documents. first: Cyril Aphrem Karim and last: Chabad Lubavitch News -[2018-02-13T08:37:01.499] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:37:01.514] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:37:01.723] [INFO] cheese - inserting 1000 documents. first: Christopher Wood (English painter) and last: Category:Protégé (TV series) -[2018-02-13T08:37:01.753] [INFO] cheese - inserting 1000 documents. first: Big Babies and last: Cyril Dunne -[2018-02-13T08:37:01.781] [INFO] cheese - inserting 1000 documents. first: Robert Scott Duncanson and last: Hypotia bleusei -[2018-02-13T08:37:01.818] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:37:01.828] [INFO] cheese - inserting 1000 documents. first: Call to power II and last: Iranistan -[2018-02-13T08:37:01.927] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:37:01.936] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:37:01.977] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:37:02.053] [INFO] cheese - inserting 1000 documents. first: Sam Gash and last: Grand Moff Governor Wilhuff Tarkin -[2018-02-13T08:37:02.072] [INFO] cheese - inserting 1000 documents. first: Category:Edwards County, Kansas and last: Student council -[2018-02-13T08:37:02.084] [INFO] cheese - inserting 1000 documents. first: Category:Cleveland City Schools and last: Template:Did you know nominations/Sonia Destri Lie -[2018-02-13T08:37:02.136] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:37:02.173] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:37:02.202] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:37:02.259] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/635 and last: Edward Belfour -[2018-02-13T08:37:02.352] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:37:02.381] [INFO] cheese - inserting 1000 documents. first: Template:Lists of South African cricketers and last: Category:Taxa named by Alfred Nehring -[2018-02-13T08:37:02.450] [INFO] cheese - inserting 1000 documents. first: File:Anvil - Speed of Sound.jpg and last: File:Love is Gone 2.png -[2018-02-13T08:37:02.534] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:37:02.566] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:37:02.649] [INFO] cheese - inserting 1000 documents. first: Broad Town White Horse and last: Wikipedia:Motto of the day/February 22, 2012 -[2018-02-13T08:37:02.651] [INFO] cheese - inserting 1000 documents. first: Brandy for the Parson and last: Archevan’ -[2018-02-13T08:37:02.766] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:37:02.773] [INFO] cheese - inserting 1000 documents. first: File:Interior of Mirror Lake Library 1915 building.jpg and last: Hanover Town Library -[2018-02-13T08:37:02.800] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:37:02.976] [INFO] cheese - inserting 1000 documents. first: UV/VIS spectroscopy and last: Varsity Show (movie) -[2018-02-13T08:37:03.015] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:37:03.149] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:37:03.199] [INFO] cheese - inserting 1000 documents. first: The Philanthropist and last: Samantha Jones (character) -[2018-02-13T08:37:03.252] [INFO] cheese - inserting 1000 documents. first: KXET and last: Land of legends (Sagnlandet Lejre) -[2018-02-13T08:37:03.277] [INFO] cheese - inserting 1000 documents. first: Template:March 1943 shipwrecks and last: Quinton Joseph Flynn -[2018-02-13T08:37:03.324] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:03.363] [INFO] cheese - inserting 1000 documents. first: Marilyn Brick and last: Maxwell-Boltzmann velocity distribution -[2018-02-13T08:37:03.373] [INFO] cheese - inserting 1000 documents. first: Shiraz Regional Library of Science and Technology and last: The Putney Vale Cemetery and Crematorium -[2018-02-13T08:37:03.388] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:37:03.391] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:37:03.493] [INFO] cheese - inserting 1000 documents. first: Category:Olympic wrestlers of Guinea-Bissau and last: Harringay Green Lanes -[2018-02-13T08:37:03.537] [INFO] cheese - batch complete in: 1.335 secs -[2018-02-13T08:37:03.536] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:37:03.581] [INFO] cheese - inserting 1000 documents. first: Category:Geography of San José de Ocoa Province and last: Graduate Institute of Geneva -[2018-02-13T08:37:03.584] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:37:03.656] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:37:03.847] [INFO] cheese - inserting 1000 documents. first: Vieques Airport and last: Gönen -[2018-02-13T08:37:03.856] [INFO] cheese - inserting 1000 documents. first: Constitution of russia and last: Web harvesting -[2018-02-13T08:37:03.861] [INFO] cheese - inserting 1000 documents. first: Category:People from East Khasi Hills district and last: Homosexuality: A New Christian Ethic -[2018-02-13T08:37:03.894] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:37:03.903] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:03.906] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2016-06-18 and last: Koomn Woastn -[2018-02-13T08:37:03.919] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:37:03.973] [INFO] cheese - inserting 1000 documents. first: Amendments to the Constitution of Pakistan and last: The Rosetta Foundation -[2018-02-13T08:37:03.990] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:37:04.020] [INFO] cheese - inserting 1000 documents. first: Graduate Institute in Geneva and last: Pudhu Pudhu Ragangal -[2018-02-13T08:37:04.023] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:37:04.060] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T08:37:04.119] [INFO] cheese - inserting 1000 documents. first: François Condelmerio and last: Hello Taiwan -[2018-02-13T08:37:04.183] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:04.196] [INFO] cheese - inserting 1000 documents. first: Leon Bibel and last: Ådne Søndrål -[2018-02-13T08:37:04.203] [INFO] cheese - inserting 1000 documents. first: Grozden Peak and last: 2015 Puskas Cup -[2018-02-13T08:37:04.232] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T08:37:04.264] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:37:04.338] [INFO] cheese - inserting 1000 documents. first: Sarab-e Abdali and last: I.A.R. 9K Mistral -[2018-02-13T08:37:04.355] [INFO] cheese - inserting 1000 documents. first: Miosgán Médhbh and last: Norwegian National Association for Lesbian and Gay Liberation -[2018-02-13T08:37:04.373] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:37:04.390] [INFO] cheese - inserting 1000 documents. first: Bank Holiday Monday (song) and last: Wikipedia:Requests for checkuser/Case/Derex -[2018-02-13T08:37:04.382] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T08:37:04.413] [INFO] cheese - inserting 1000 documents. first: Count Jacob Sievers and last: Category:People from Hylte Municipality -[2018-02-13T08:37:04.446] [INFO] cheese - inserting 1000 documents. first: 2015 Rally Liepaja and last: Ana Petra Perez Florido -[2018-02-13T08:37:04.450] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:37:04.479] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T08:37:04.484] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:37:04.509] [INFO] cheese - inserting 1000 documents. first: Easton Bavents and last: Dominique Maltais -[2018-02-13T08:37:04.561] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:37:04.648] [INFO] cheese - inserting 1000 documents. first: Ana Radovic (basketball, born 1990) and last: Wikipedia:Miscellany for deletion/User:MetaphoricalIdiot/Tau (2π) -[2018-02-13T08:37:04.670] [INFO] cheese - batch complete in: 0.191 secs -[2018-02-13T08:37:04.747] [INFO] cheese - inserting 1000 documents. first: Tyler Moore and last: Gukchae Park -[2018-02-13T08:37:04.758] [INFO] cheese - inserting 1000 documents. first: Template:Pretty Ricky and last: Category:Ferry terminals in California -[2018-02-13T08:37:04.775] [INFO] cheese - inserting 1000 documents. first: Hana no Gosho and last: Subbotin oil field -[2018-02-13T08:37:04.810] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:37:04.886] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:37:04.931] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:37:05.038] [INFO] cheese - inserting 1000 documents. first: Bahia de Cata and last: 2015-16 Gazelec Ajaccio season -[2018-02-13T08:37:05.058] [INFO] cheese - inserting 1000 documents. first: Sunny Deol and last: File:FinalFantasyTacticsAdvanceGBACoverArtUS.jpg -[2018-02-13T08:37:05.068] [INFO] cheese - inserting 1000 documents. first: Category:Sports competitions in Indonesia and last: Dysstroma mulleolata -[2018-02-13T08:37:05.072] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:37:05.077] [INFO] cheese - inserting 1000 documents. first: Templum Iovis and last: Sarmouni Brotherhood -[2018-02-13T08:37:05.152] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:37:05.167] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:37:05.175] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:37:05.324] [INFO] cheese - inserting 1000 documents. first: Convergence (novel) and last: Attendorn -[2018-02-13T08:37:05.342] [INFO] cheese - inserting 1000 documents. first: Borivoj Lazic and last: Cative -[2018-02-13T08:37:05.363] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T08:37:05.390] [INFO] cheese - inserting 1000 documents. first: 2011 FIA WTCC Race of China and last: Category:United States House of Representatives elections, 2003 -[2018-02-13T08:37:05.460] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:37:05.462] [INFO] cheese - inserting 1000 documents. first: Template:IETF RFC 1st april and last: Cha Jong-Bok -[2018-02-13T08:37:05.541] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:37:05.640] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:37:05.642] [INFO] cheese - inserting 1000 documents. first: The Shops at Iverson and last: Salgira -[2018-02-13T08:37:05.757] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:37:05.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/MrsDietz19 and last: Criona Ni Dhalaigh -[2018-02-13T08:37:05.866] [INFO] cheese - inserting 1000 documents. first: Masahiro Wada and last: Chongqing University of Technology -[2018-02-13T08:37:05.893] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:05.933] [INFO] cheese - inserting 1000 documents. first: Youth (Conrad short story) and last: Wikipedia:Articles for deletion/Peter buchanan -[2018-02-13T08:37:06.000] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:37:06.013] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:37:06.132] [INFO] cheese - inserting 1000 documents. first: Catherine Curtin and last: Duena y senora (telenovela) -[2018-02-13T08:37:06.204] [INFO] cheese - inserting 1000 documents. first: Taichang Emperor of China and last: Texas Regulars -[2018-02-13T08:37:06.204] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T08:37:06.234] [INFO] cheese - inserting 1000 documents. first: Shin A-Lam and last: FW Ogilvie -[2018-02-13T08:37:06.272] [INFO] cheese - inserting 1000 documents. first: Template:Office holders in the Diocese of Limerick, Killaloe & Ardfert and last: Graat -[2018-02-13T08:37:06.288] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:37:06.319] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:37:06.333] [INFO] cheese - inserting 1000 documents. first: Belleisle Creek, New Brunswick and last: Population Research Institute -[2018-02-13T08:37:06.342] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:37:06.442] [INFO] cheese - inserting 1000 documents. first: Category:1643 establishments in Japan and last: Capital of Sardinia -[2018-02-13T08:37:06.450] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:37:06.456] [INFO] cheese - inserting 1000 documents. first: Honda Civic (sixth generation) and last: Sparta Township, Kent County, Michigan -[2018-02-13T08:37:06.481] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T08:37:06.560] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:37:06.578] [INFO] cheese - inserting 1000 documents. first: Csabdi and last: Raphaël Poulain -[2018-02-13T08:37:06.649] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:37:06.662] [INFO] cheese - inserting 1000 documents. first: Category:Culture articles needing translation from Chinese Wikipedia and last: Frank Hickling -[2018-02-13T08:37:06.662] [INFO] cheese - inserting 1000 documents. first: Hobbys Yard, New South Wales and last: 2001 Copa America Final -[2018-02-13T08:37:06.718] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T08:37:06.755] [INFO] cheese - inserting 1000 documents. first: Eydvor Klakstein and last: Federation Francaise des Societes Feministes -[2018-02-13T08:37:06.768] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:37:06.780] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T08:37:06.825] [INFO] cheese - inserting 1000 documents. first: Category:Ittihad FC matches and last: Publique Sportive Mouara -[2018-02-13T08:37:06.879] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:06.930] [INFO] cheese - inserting 1000 documents. first: Mithranism and last: Kite Hill, Laguna Niguel, California -[2018-02-13T08:37:06.994] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:07.025] [INFO] cheese - inserting 1000 documents. first: Federation Haitienne de Basket-Ball and last: Gerard DuBois -[2018-02-13T08:37:07.065] [INFO] cheese - inserting 1000 documents. first: US Immigration and Naturalization Service and last: Tom Ballard -[2018-02-13T08:37:07.072] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T08:37:07.074] [INFO] cheese - inserting 1000 documents. first: 2001 Copa Peru and last: File:Jerry Douglas Y&R.jpg -[2018-02-13T08:37:07.116] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T08:37:07.122] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:37:07.202] [INFO] cheese - inserting 1000 documents. first: Soudan Mine and last: Väisälä crater -[2018-02-13T08:37:07.244] [INFO] cheese - inserting 1000 documents. first: Patrick F. Taylor and last: Boulevard Rene-Levesque -[2018-02-13T08:37:07.313] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:37:07.316] [INFO] cheese - inserting 1000 documents. first: Littleton Adventist Hospital and last: Wikipedia:Articles for deletion/Topsite (www) -[2018-02-13T08:37:07.363] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:37:07.367] [INFO] cheese - inserting 1000 documents. first: Karibib Air Base and last: Halleforsnas IF -[2018-02-13T08:37:07.433] [INFO] cheese - inserting 1000 documents. first: Sporting Moura and last: Wikipedia:Sockpuppet investigations/Dinesh Meena92/Archive -[2018-02-13T08:37:07.434] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:37:07.442] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T08:37:07.538] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:07.618] [INFO] cheese - inserting 1000 documents. first: The Works (TV series) and last: Alejandro Prospero Reverend -[2018-02-13T08:37:07.629] [INFO] cheese - inserting 1000 documents. first: Wabash Avenue (Baltimore) and last: Lovesong of the Buzzard -[2018-02-13T08:37:07.676] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:07.688] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:37:07.743] [INFO] cheese - inserting 1000 documents. first: Hallestad Church and last: James Davis Boriko -[2018-02-13T08:37:07.808] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T08:37:07.815] [INFO] cheese - inserting 1000 documents. first: Baron Boyle of Broghill and last: Naftex -[2018-02-13T08:37:07.941] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:37:07.949] [INFO] cheese - inserting 1000 documents. first: Talhaearn and last: Bullshitters -[2018-02-13T08:37:07.971] [INFO] cheese - inserting 1000 documents. first: Aenetus crameri and last: Category:Colbie Caillat -[2018-02-13T08:37:08.008] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:37:08.076] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:37:08.078] [INFO] cheese - inserting 1000 documents. first: Crestview, Okaloosa County, FL and last: Mildred Z Solomon -[2018-02-13T08:37:08.138] [INFO] cheese - inserting 1000 documents. first: Richard Almgill Harrison and last: Canadians of Greek ancestry -[2018-02-13T08:37:08.148] [INFO] cheese - inserting 1000 documents. first: Jamyangiin Monkhbat and last: Somerset station (Market–Frankford Line) -[2018-02-13T08:37:08.154] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:08.191] [INFO] cheese - inserting 1000 documents. first: List of Valencian monarchs and last: Eagle-Vail -[2018-02-13T08:37:08.196] [INFO] cheese - inserting 1000 documents. first: Wielka Wola, Opoczno County and last: Wola Wydrzyna -[2018-02-13T08:37:08.209] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:37:08.259] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:37:08.276] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:37:08.333] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:37:08.530] [INFO] cheese - inserting 1000 documents. first: Jose Guardiola (actor) and last: Jorg Schellmann -[2018-02-13T08:37:08.549] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T08:37:08.556] [INFO] cheese - inserting 1000 documents. first: Antun Palic and last: Wikipedia:Articles for deletion/The California Penal League of Fantasy Baseball -[2018-02-13T08:37:08.586] [INFO] cheese - inserting 1000 documents. first: Banach-Mazur game and last: Japanese Ministry of Education, Culture, Sports, Science and Technology -[2018-02-13T08:37:08.603] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:37:08.694] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:37:08.703] [INFO] cheese - inserting 1000 documents. first: A.H. Clough and last: Migraine of the eye -[2018-02-13T08:37:08.707] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Atlanta Way (film) and last: Art Museum at SUNY Potsdam -[2018-02-13T08:37:08.798] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:37:08.804] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:37:08.820] [INFO] cheese - inserting 1000 documents. first: Jorg Schneider and last: Foxtrott -[2018-02-13T08:37:08.847] [INFO] cheese - inserting 1000 documents. first: Złotniki, Pajęczno County and last: Konopnica, Poddębice County -[2018-02-13T08:37:08.909] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T08:37:08.957] [INFO] cheese - inserting 1000 documents. first: WTGV-FM and last: Tenno Heika Banzai -[2018-02-13T08:37:08.959] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:37:09.008] [INFO] cheese - inserting 1000 documents. first: Michael Omidi and last: Bahceli, Nigde -[2018-02-13T08:37:09.082] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:37:09.082] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:37:09.201] [INFO] cheese - inserting 1000 documents. first: 17α-Ethynyl-5(10)-estren-17β-ol and last: List of Djurgardens IF Fotboll managers -[2018-02-13T08:37:09.217] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T08:37:09.226] [INFO] cheese - inserting 1000 documents. first: Sanghamitta and last: FILE ID.DIZ -[2018-02-13T08:37:09.295] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:37:09.311] [INFO] cheese - inserting 1000 documents. first: Driving licence in Canada and last: Wikipedia:Articles for deletion/Only Man -[2018-02-13T08:37:09.383] [INFO] cheese - inserting 1000 documents. first: Archeological sites and last: File:Thegladiatordaredevil.jpg -[2018-02-13T08:37:09.382] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:09.402] [INFO] cheese - inserting 1000 documents. first: Eye migraine and last: CGAS Brooklyn -[2018-02-13T08:37:09.414] [INFO] cheese - inserting 1000 documents. first: Case No. 05-cv-1189 and last: The GrooveGrass Boyz -[2018-02-13T08:37:09.425] [INFO] cheese - inserting 1000 documents. first: List of Djurgardens IF Fotboll players (25–99 appearances) and last: Makombe River -[2018-02-13T08:37:09.464] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T08:37:09.466] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:37:09.509] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:37:09.524] [INFO] cheese - inserting 1000 documents. first: Bahcesehir Koleji and last: Quantitative sciences -[2018-02-13T08:37:09.537] [INFO] cheese - inserting 1000 documents. first: Ray Griff and last: Wikipedia:Version 1.0 Editorial Team/Geology articles by quality/1 -[2018-02-13T08:37:09.591] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:37:09.592] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:09.670] [INFO] cheese - inserting 1000 documents. first: Makoto Sato (actor) and last: ISO 3166-2:LU-RD -[2018-02-13T08:37:09.686] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T08:37:09.764] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Rubia and last: Riverside Secondary -[2018-02-13T08:37:09.830] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:37:09.871] [INFO] cheese - inserting 1000 documents. first: File:Vellum The Book of All Hours by Hal Duncan.jpeg and last: Template:RussiaAdmMunRef/kya/munlist/nizhneingashsky -[2018-02-13T08:37:09.875] [INFO] cheese - inserting 1000 documents. first: Steph rice and last: File:Various artists-star in a million.jpg -[2018-02-13T08:37:09.914] [INFO] cheese - inserting 1000 documents. first: Mellosa Church and last: Category:Laser ranging satellites -[2018-02-13T08:37:09.924] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:37:09.933] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:37:09.956] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T08:37:10.037] [INFO] cheese - inserting 1000 documents. first: Gavin Whittaker and last: Siberian Yup'ik -[2018-02-13T08:37:10.046] [INFO] cheese - inserting 1000 documents. first: Quantitative science and last: Belotic (Vladimirci) -[2018-02-13T08:37:10.062] [INFO] cheese - inserting 1000 documents. first: Chloe Lane and last: Bone Thugs-N-Harmony discography -[2018-02-13T08:37:10.085] [INFO] cheese - inserting 1000 documents. first: PVCO and last: Category:Belgian jazz pianists -[2018-02-13T08:37:10.087] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:37:10.092] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:37:10.112] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:37:10.150] [INFO] cheese - inserting 1000 documents. first: Mas negro que la noche (2014 film) and last: O Mundo E Bao, Sebastiao! -[2018-02-13T08:37:10.160] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:37:10.208] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T08:37:10.361] [INFO] cheese - inserting 1000 documents. first: Lillien Martin and last: Judith Kelley -[2018-02-13T08:37:10.387] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2008, Aug 22 and last: Category:Olympic beach volleyball players of Angola -[2018-02-13T08:37:10.396] [INFO] cheese - inserting 1000 documents. first: Louisa Alice Baker and last: Brod, Radom County -[2018-02-13T08:37:10.399] [INFO] cheese - inserting 1000 documents. first: Sheikh Ahmed Abdullah and last: Veta La Palma -[2018-02-13T08:37:10.414] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:37:10.421] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T08:37:10.429] [INFO] cheese - inserting 1000 documents. first: Merida Province (1622-1676) and last: Pierre Antoine Francois Huber -[2018-02-13T08:37:10.450] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T08:37:10.468] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:10.492] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:37:10.588] [INFO] cheese - inserting 1000 documents. first: Zoltán Béres and last: Ian Shaw (archaeologist) -[2018-02-13T08:37:10.638] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:37:10.659] [INFO] cheese - inserting 1000 documents. first: Category:Tokyo International University faculty and last: Category:2010s in California by city -[2018-02-13T08:37:10.679] [INFO] cheese - inserting 1000 documents. first: Brohn and last: Trinity Academy -[2018-02-13T08:37:10.688] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T08:37:10.703] [INFO] cheese - inserting 1000 documents. first: Wayne Handley and last: Robert Frederick Foster -[2018-02-13T08:37:10.715] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T08:37:10.757] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:10.773] [INFO] cheese - inserting 1000 documents. first: Shirai Ryu and last: Nancy Evans (disambiguation) -[2018-02-13T08:37:10.820] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:10.833] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pipers and last: Mutating engine -[2018-02-13T08:37:10.891] [INFO] cheese - inserting 1000 documents. first: Regnbagslandet and last: Samuel Herrera Chavez -[2018-02-13T08:37:10.904] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:37:10.913] [INFO] cheese - inserting 1000 documents. first: Marquis of Bute and last: File:Goldfootbikinimachine.jpg -[2018-02-13T08:37:10.914] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T08:37:10.935] [INFO] cheese - inserting 1000 documents. first: Superrigidity theorem and last: Antiroll tanks -[2018-02-13T08:37:10.966] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:37:11.014] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sienna Biotec and last: Shuangjing Subdistrict, Beijing -[2018-02-13T08:37:11.016] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:37:11.072] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T08:37:11.125] [INFO] cheese - inserting 1000 documents. first: Samuel Lim Nunez and last: TMSanime -[2018-02-13T08:37:11.148] [INFO] cheese - inserting 1000 documents. first: Elisabeth Cain and last: Red Haw State Park -[2018-02-13T08:37:11.157] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T08:37:11.161] [INFO] cheese - inserting 1000 documents. first: North Road (disambiguation) and last: 2011–13 Saudi Arabian protests -[2018-02-13T08:37:11.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Buffy/Episodes/to do and last: Archives Restaurant (Washington, D.C.) -[2018-02-13T08:37:11.192] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T08:37:11.218] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:37:11.222] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:37:11.340] [INFO] cheese - inserting 1000 documents. first: Cafe Tacvba (album) and last: Church of Santa Teresa y San Jose (Madrid) -[2018-02-13T08:37:11.341] [INFO] cheese - inserting 1000 documents. first: Sladan Scepovic and last: Conlay station -[2018-02-13T08:37:11.359] [INFO] cheese - batch complete in: 0.202 secs -[2018-02-13T08:37:11.363] [INFO] cheese - inserting 1000 documents. first: Aghkilisa (disambiguation) and last: Nawathana -[2018-02-13T08:37:11.405] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:37:11.459] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teabagger and last: Enigmaticolus auzendei -[2018-02-13T08:37:11.482] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:37:11.591] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:11.697] [INFO] cheese - inserting 1000 documents. first: Soren Nielsen May and last: Turkey in the Bala Turkvizyon Song Contest -[2018-02-13T08:37:11.698] [INFO] cheese - inserting 1000 documents. first: John Caulfield (footballer) and last: Wikipedia:Help desk/Archives/2014 April 3 -[2018-02-13T08:37:11.704] [INFO] cheese - inserting 1000 documents. first: Music of Saint Lucia and last: Wilno, Ontario -[2018-02-13T08:37:11.715] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T08:37:11.749] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:37:11.754] [INFO] cheese - inserting 1000 documents. first: Astrodynamics and last: Indian general election, 1980 -[2018-02-13T08:37:11.799] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:37:11.808] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:37:11.816] [INFO] cheese - inserting 1000 documents. first: Korban Ha-Edah and last: 1964 in the environment -[2018-02-13T08:37:11.824] [INFO] cheese - inserting 1000 documents. first: Anthony Merry and last: Folke K. Skoog -[2018-02-13T08:37:11.867] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:37:11.930] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:11.984] [INFO] cheese - inserting 1000 documents. first: APAH and last: Football of Ukraine -[2018-02-13T08:37:12.020] [INFO] cheese - inserting 1000 documents. first: Turkish government – Gulen Movement conflict and last: Euro 2016 statistics -[2018-02-13T08:37:12.025] [INFO] cheese - inserting 1000 documents. first: Manaria canetae and last: Klistervatnet/Bjørnevatnet -[2018-02-13T08:37:12.040] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:12.047] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:37:12.074] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:37:12.114] [INFO] cheese - inserting 1000 documents. first: Jacob Lincoln Freund and last: Child soldiers in Africa -[2018-02-13T08:37:12.155] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:12.161] [INFO] cheese - inserting 1000 documents. first: Idgah (place) and last: Cristian Fernandez Conchuela -[2018-02-13T08:37:12.209] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:37:12.239] [INFO] cheese - inserting 1000 documents. first: Vrion, Sarande and last: Agua de Pau Massif -[2018-02-13T08:37:12.240] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kenneth Arbuthnot and last: A Worn Path -[2018-02-13T08:37:12.256] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T08:37:12.299] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:12.424] [INFO] cheese - inserting 1000 documents. first: Railroad watch and last: Henry II of Silesia -[2018-02-13T08:37:12.424] [INFO] cheese - inserting 1000 documents. first: Aguas Boas e Forles and last: Module:Key people/sandbox -[2018-02-13T08:37:12.442] [INFO] cheese - inserting 1000 documents. first: 2007 All-Ireland Senior Camogie Championship and last: Frag-fest -[2018-02-13T08:37:12.450] [INFO] cheese - batch complete in: 0.194 secs -[2018-02-13T08:37:12.460] [INFO] cheese - inserting 1000 documents. first: Public Health Service Achievement Medal and last: File:Hbar 338A87E.png -[2018-02-13T08:37:12.462] [INFO] cheese - inserting 1000 documents. first: Claudio Foscarini and last: Category:Book-Class chess articles -[2018-02-13T08:37:12.465] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T08:37:12.488] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:12.507] [INFO] cheese - inserting 1000 documents. first: Cipriano Cassamá and last: Australian-Zimbabwean relations -[2018-02-13T08:37:12.523] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:37:12.538] [INFO] cheese - inserting 1000 documents. first: Toki wo Koe Sora wo Koe / Password is 0 and last: Wikipedia:Articles for deletion/Homeworkgate -[2018-02-13T08:37:12.542] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:37:12.587] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:37:12.603] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:37:12.815] [INFO] cheese - inserting 1000 documents. first: Nikita Nikiforovs and last: Hollocher -[2018-02-13T08:37:12.941] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:13.055] [INFO] cheese - inserting 1000 documents. first: Selekuer and last: Joe Hernandez (American football) -[2018-02-13T08:37:13.076] [INFO] cheese - inserting 1000 documents. first: Studio Bellerive and last: Der Jager von Fall (1974 film) -[2018-02-13T08:37:13.076] [INFO] cheese - inserting 1000 documents. first: Khety I (nomarch) and last: Category:One Way (American band) songs -[2018-02-13T08:37:13.079] [INFO] cheese - inserting 1000 documents. first: Vorosto and last: File:Pawlu Camilleri il-Bibi Armonika Awi2001.jpg -[2018-02-13T08:37:13.091] [INFO] cheese - inserting 1000 documents. first: Kisbér and last: Braunau in Rohr Abbey -[2018-02-13T08:37:13.106] [INFO] cheese - inserting 1000 documents. first: Australian-Ukrainian relations and last: Sport Mastermind -[2018-02-13T08:37:13.121] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:13.128] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:13.136] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:37:13.147] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:13.179] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:37:13.184] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:13.355] [INFO] cheese - inserting 1000 documents. first: Musierowicz and last: Category:1989 politics in New York (state) -[2018-02-13T08:37:13.389] [INFO] cheese - inserting 1000 documents. first: Final Fight Guy and last: Friedrich Wilhelm Hemprich -[2018-02-13T08:37:13.400] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:37:13.422] [INFO] cheese - inserting 1000 documents. first: Syrnola hera and last: Wikipedia:Articles for deletion/Siterra -[2018-02-13T08:37:13.459] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:37:13.471] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:37:13.490] [INFO] cheese - inserting 1000 documents. first: Daredevil (TV series) and last: Category:2005–06 NCAA Division I women's basketball season -[2018-02-13T08:37:13.549] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:37:13.606] [INFO] cheese - inserting 1000 documents. first: Schaffle and last: Pentecostal Holiness Churches -[2018-02-13T08:37:13.657] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Wedding (Power Rangers) and last: Believe (Brooks & Dunn song) -[2018-02-13T08:37:13.679] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:13.708] [INFO] cheese - inserting 1000 documents. first: Kovzha River and last: John D. Harvey -[2018-02-13T08:37:13.738] [INFO] cheese - inserting 1000 documents. first: Stay (Tooji song) and last: Alexander Libermann -[2018-02-13T08:37:13.741] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:37:13.752] [INFO] cheese - inserting 1000 documents. first: WBSI and last: Oudheusden -[2018-02-13T08:37:13.772] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:37:13.792] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T08:37:13.814] [INFO] cheese - inserting 1000 documents. first: Category:Estonian women judges and last: Pinhook, Lawrence County -[2018-02-13T08:37:13.842] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:37:13.852] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:13.983] [INFO] cheese - inserting 1000 documents. first: File:Grosvenor Park Theatre Logo.png and last: File:ACS Ksar (logo).png -[2018-02-13T08:37:14.088] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:37:14.154] [INFO] cheese - inserting 1000 documents. first: Manna (gymnastics) and last: Granulifusus staminatus -[2018-02-13T08:37:14.224] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:37:14.272] [INFO] cheese - inserting 1000 documents. first: Egana and last: Category:Belarusian words and phrases -[2018-02-13T08:37:14.314] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:37:14.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2016 June 20 and last: AMD A10 5745M -[2018-02-13T08:37:14.360] [INFO] cheese - inserting 1000 documents. first: Andrew Tan (businessman) and last: Krzemienica -[2018-02-13T08:37:14.394] [INFO] cheese - inserting 1000 documents. first: File:Pahoeoe fountain original.jpg and last: Category:American novelty song performers -[2018-02-13T08:37:14.396] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:14.418] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:37:14.435] [INFO] cheese - inserting 1000 documents. first: Bács-Kiskun County and last: Epsilon Proteobacteria -[2018-02-13T08:37:14.459] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:37:14.465] [INFO] cheese - inserting 1000 documents. first: Reithrodontomys megalotis and last: Marc Singer (documentarian) -[2018-02-13T08:37:14.516] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:37:14.539] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:37:14.569] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Vera (Openg) and last: Battle on the Kozara -[2018-02-13T08:37:14.600] [INFO] cheese - inserting 1000 documents. first: Export of cryptography in the United States and last: Copper-copper(II) sulfate electrode -[2018-02-13T08:37:14.609] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T08:37:14.678] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:37:14.718] [INFO] cheese - inserting 1000 documents. first: Latirus stenomphalus and last: Tritia goreensis -[2018-02-13T08:37:14.741] [INFO] cheese - inserting 1000 documents. first: A4-5150M and last: Template:Bishop of the Lindisfaras -[2018-02-13T08:37:14.770] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:37:14.774] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:37:14.846] [INFO] cheese - inserting 1000 documents. first: Krzemienica, Łódź Voivodeship and last: Łobudzice, Zduńska Wola County -[2018-02-13T08:37:14.871] [INFO] cheese - inserting 1000 documents. first: Farol da Ponta de Sao Lourenco and last: Frederic and Cecilia Cutescu-Storck Art Museum -[2018-02-13T08:37:14.900] [INFO] cheese - inserting 1000 documents. first: The Plan (Six Feet Under Episode) and last: Bad Day For Trains -[2018-02-13T08:37:14.903] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:37:14.907] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T08:37:14.984] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:15.118] [INFO] cheese - inserting 1000 documents. first: File:Half Note (album).jpg and last: Category:20th-century Lebanese actresses -[2018-02-13T08:37:15.124] [INFO] cheese - inserting 1000 documents. first: Template:Bishops of the Lindisfaras and last: Ces Renwick -[2018-02-13T08:37:15.135] [INFO] cheese - inserting 1000 documents. first: File:Mikko alanne.jpg and last: Displacement ventilation -[2018-02-13T08:37:15.161] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:37:15.165] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:37:15.167] [INFO] cheese - inserting 1000 documents. first: Template:Prisons in Yorkshire and the Humber and last: Calliotropis francocacii -[2018-02-13T08:37:15.198] [INFO] cheese - inserting 1000 documents. first: Nepenthes sp. Anipahan and last: Algroup -[2018-02-13T08:37:15.208] [INFO] cheese - inserting 1000 documents. first: Star Wars: Droids and last: Avaré, São Paulo -[2018-02-13T08:37:15.205] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:37:15.227] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:37:15.240] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T08:37:15.327] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:37:15.431] [INFO] cheese - inserting 1000 documents. first: Nowy Kromolin and last: 2007 BCR Open Romania – Doubles -[2018-02-13T08:37:15.521] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:37:15.562] [INFO] cheese - inserting 1000 documents. first: File:Adolf Dickfeld.jpg and last: Funeral Dirge For The Rotting Sun -[2018-02-13T08:37:15.654] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:37:15.689] [INFO] cheese - inserting 1000 documents. first: Queen's first e.p. and last: Pune District -[2018-02-13T08:37:15.708] [INFO] cheese - inserting 1000 documents. first: King Gaplus and last: Minimum Viable Product (Silicon Valley) -[2018-02-13T08:37:15.737] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:37:15.770] [INFO] cheese - inserting 1000 documents. first: Calliotropis galea and last: 1960 SN -[2018-02-13T08:37:15.792] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:37:15.800] [INFO] cheese - inserting 1000 documents. first: Cecil Renwick and last: Lying Cat -[2018-02-13T08:37:15.839] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:37:15.888] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:37:15.892] [INFO] cheese - inserting 1000 documents. first: Box crab and last: Template:Electoral districts of Western Australia -[2018-02-13T08:37:15.966] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:37:16.007] [INFO] cheese - inserting 1000 documents. first: Gergo Ivancsik and last: Shelford's law of tolerance -[2018-02-13T08:37:16.038] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T08:37:16.082] [INFO] cheese - inserting 1000 documents. first: 1966 CF and last: Henllan, Ceredigion -[2018-02-13T08:37:16.085] [INFO] cheese - inserting 1000 documents. first: File:Golf Bloom.jpg and last: File:Grb FK Mladi Radnik.png -[2018-02-13T08:37:16.115] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T08:37:16.138] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:37:16.154] [INFO] cheese - inserting 1000 documents. first: Standard gravitational parameter and last: William George Horner -[2018-02-13T08:37:16.218] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:37:16.240] [INFO] cheese - inserting 1000 documents. first: Gustav Adolph, Count of Nassau-Saarbrucken and last: Hellas ohne Gotter -[2018-02-13T08:37:16.249] [INFO] cheese - inserting 1000 documents. first: Bando Jonez and last: Wikipedia:Sockpuppet investigations/DataDrivenOne/Archive -[2018-02-13T08:37:16.269] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T08:37:16.297] [INFO] cheese - inserting 1000 documents. first: Draft:Amy Leventer and last: Kentucky Route 420 -[2018-02-13T08:37:16.320] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:37:16.351] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:37:16.374] [INFO] cheese - inserting 1000 documents. first: Template:WikiProjectbasename/doc and last: Category:People from Lysekil Municipality -[2018-02-13T08:37:16.386] [INFO] cheese - inserting 1000 documents. first: Funeral For a Feeling and last: Template:AFL-bio-1940s-stub -[2018-02-13T08:37:16.407] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T08:37:16.461] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:37:16.516] [INFO] cheese - inserting 1000 documents. first: Pierre Rigolout and last: Washington Preparatory High School -[2018-02-13T08:37:16.531] [INFO] cheese - inserting 1000 documents. first: Helle (Spuligbach) and last: Ibirapuera (Sao Paulo Metro) -[2018-02-13T08:37:16.570] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T08:37:16.577] [INFO] cheese - inserting 1000 documents. first: Adobe Photoshop Lightroom 2 and last: Computer game AI -[2018-02-13T08:37:16.593] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:37:16.642] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:37:16.710] [INFO] cheese - inserting 1000 documents. first: Butov and last: Hewani -[2018-02-13T08:37:16.735] [INFO] cheese - inserting 1000 documents. first: Ibn Baya Ensemble and last: Javier Gonzalez Fraga -[2018-02-13T08:37:16.748] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T08:37:16.767] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T08:37:16.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/BetterThanSuchAsYou/Archive and last: Centennial Broadcasting -[2018-02-13T08:37:16.942] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:37:17.037] [INFO] cheese - inserting 1000 documents. first: X-57 Maxwell and last: Template:Attached KML/Newtown Square Branch -[2018-02-13T08:37:17.049] [INFO] cheese - inserting 1000 documents. first: Elizabeth Thomas (poet) and last: Qubani ka meetha -[2018-02-13T08:37:17.101] [INFO] cheese - inserting 1000 documents. first: Dezső and last: Kiiasovskiy -[2018-02-13T08:37:17.106] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:37:17.119] [INFO] cheese - inserting 1000 documents. first: File:Johnny English movie.jpg and last: Category:Art museums and galleries in Russia -[2018-02-13T08:37:17.125] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:37:17.136] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:37:17.194] [INFO] cheese - inserting 1000 documents. first: Eike and last: Ćiribiribela -[2018-02-13T08:37:17.230] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:37:17.232] [INFO] cheese - inserting 1000 documents. first: Javier Gomez Cifuentes and last: Quigley poll -[2018-02-13T08:37:17.247] [INFO] cheese - inserting 1000 documents. first: File:Pabst100.jpg and last: Smoke and Ashes -[2018-02-13T08:37:17.275] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:37:17.298] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:17.335] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:37:17.376] [INFO] cheese - inserting 1000 documents. first: Grote Kerk and last: Great Negotiations: Agreements that Changed the Modern World -[2018-02-13T08:37:17.417] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:37:17.506] [INFO] cheese - inserting 1000 documents. first: Germantitov and last: Idelsonia -[2018-02-13T08:37:17.552] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:37:17.606] [INFO] cheese - inserting 1000 documents. first: Template:Unicode chart Osage and last: Hayes County Sheriff's Office -[2018-02-13T08:37:17.622] [INFO] cheese - inserting 1000 documents. first: Msn money and last: Yuri Lyapkin -[2018-02-13T08:37:17.642] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:37:17.689] [INFO] cheese - inserting 1000 documents. first: Sonorous Entertainment Inc. and last: Wikipedia:Articles for deletion/Star Mountain Studios -[2018-02-13T08:37:17.697] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:37:17.735] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:37:17.808] [INFO] cheese - inserting 1000 documents. first: Cichostów-Kolonia and last: Jakubówka -[2018-02-13T08:37:17.823] [INFO] cheese - inserting 1000 documents. first: Independent School League (Washington, DC area) and last: Zond Program -[2018-02-13T08:37:17.836] [INFO] cheese - inserting 1000 documents. first: Category:1900s disestablishments in Hawaii and last: Category:Nigerian graphic designers -[2018-02-13T08:37:17.858] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:37:17.907] [INFO] cheese - inserting 1000 documents. first: Idzerda and last: Jyoumon -[2018-02-13T08:37:17.923] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:17.925] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:37:17.962] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T08:37:18.089] [INFO] cheese - inserting 1000 documents. first: Q300 and last: Amoxipen -[2018-02-13T08:37:18.125] [INFO] cheese - inserting 1000 documents. first: Helmut Rauca and last: Thor Halvorsen -[2018-02-13T08:37:18.140] [INFO] cheese - inserting 1000 documents. first: 85 Leonard Street and last: Template:Taxonomy/Gymnarthridae -[2018-02-13T08:37:18.183] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:37:18.244] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:37:18.301] [INFO] cheese - inserting 1000 documents. first: Housing at Yale and last: Template:2000–01 in Serie A -[2018-02-13T08:37:18.235] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:37:18.332] [INFO] cheese - inserting 1000 documents. first: Gyirong County and last: Nitrium (Star Trek) -[2018-02-13T08:37:18.342] [INFO] cheese - inserting 1000 documents. first: Jakubówka, Lublin Voivodeship and last: Adamowice, Lesser Poland Voivodeship -[2018-02-13T08:37:18.364] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:37:18.433] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:18.416] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:37:18.611] [INFO] cheese - inserting 1000 documents. first: The Nearness of You (Houston Person album) and last: Ajjamada B. Devaiah -[2018-02-13T08:37:18.690] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:37:18.729] [INFO] cheese - inserting 1000 documents. first: Pakistan Nuclear Society and last: Steppin' Out (song) -[2018-02-13T08:37:18.735] [INFO] cheese - inserting 1000 documents. first: Thorleif Halvorsen and last: Ambikah -[2018-02-13T08:37:18.740] [INFO] cheese - inserting 1000 documents. first: Tain District and last: John Smedley -[2018-02-13T08:37:18.743] [INFO] cheese - inserting 1000 documents. first: Hitler's Putsch and last: Lavalys -[2018-02-13T08:37:18.790] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:37:18.791] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:37:18.798] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:37:18.849] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:37:18.964] [INFO] cheese - inserting 1000 documents. first: Triceromeryx and last: Łomnica-Zdrój -[2018-02-13T08:37:19.015] [INFO] cheese - inserting 1000 documents. first: The Mark of Zero and last: Plastics Historical Society -[2018-02-13T08:37:19.021] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:37:19.066] [INFO] cheese - inserting 1000 documents. first: Amoxipenil and last: Relative error -[2018-02-13T08:37:19.074] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:37:19.149] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:37:19.172] [INFO] cheese - inserting 1000 documents. first: Von Dincklage and last: WMXXX -[2018-02-13T08:37:19.201] [INFO] cheese - inserting 1000 documents. first: Miyazakihayao and last: School board (England & Wales) -[2018-02-13T08:37:19.236] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:37:19.241] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:37:19.269] [INFO] cheese - inserting 1000 documents. first: Buddleja davidii 'Windy Hill' and last: Paralititan stromeri -[2018-02-13T08:37:19.306] [INFO] cheese - inserting 1000 documents. first: Ambyka and last: File:Power-rangersadishankar.jpeg -[2018-02-13T08:37:19.330] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:19.399] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:37:19.421] [INFO] cheese - inserting 1000 documents. first: Trzepieciny and last: Jim McAlister (soccer) -[2018-02-13T08:37:19.490] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:37:19.508] [INFO] cheese - inserting 1000 documents. first: Anna of Brandenburg and last: Riemann theta function -[2018-02-13T08:37:19.536] [INFO] cheese - inserting 1000 documents. first: Piazzia and last: Shcherban' -[2018-02-13T08:37:19.558] [INFO] cheese - inserting 1000 documents. first: St. Thomas Aquinas High School (Overland Park, Kansas) and last: CSI: Miami (season 5) -[2018-02-13T08:37:19.575] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:37:19.593] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:37:19.682] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:37:19.837] [INFO] cheese - inserting 1000 documents. first: Lee Jae-Sung and last: Archdeaconry of Italy and Malta -[2018-02-13T08:37:19.915] [INFO] cheese - inserting 1000 documents. first: Absolute error and last: Albanian Communist Party -[2018-02-13T08:37:19.929] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:37:19.953] [INFO] cheese - inserting 1000 documents. first: Category:Manx short story writers and last: Toveri -[2018-02-13T08:37:19.970] [INFO] cheese - inserting 1000 documents. first: Cornisepta verenae and last: Tret'yakov -[2018-02-13T08:37:20.027] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:37:20.046] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:37:20.049] [INFO] cheese - inserting 1000 documents. first: Aptalis Pharmatech and last: Johannesburg City Library -[2018-02-13T08:37:20.057] [INFO] cheese - inserting 1000 documents. first: Euler-MacLaurin formula and last: Wikipedia:Articles for deletion/Birmingham New Road tram stop -[2018-02-13T08:37:20.080] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:37:20.149] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:20.160] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:37:20.324] [INFO] cheese - inserting 1000 documents. first: File:Ami Suzuki - Thank You 4 Every Day Every Body.jpg and last: Canton City School District -[2018-02-13T08:37:20.325] [INFO] cheese - inserting 1000 documents. first: Trevanvoorth and last: Surround array -[2018-02-13T08:37:20.364] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:37:20.375] [INFO] cheese - inserting 1000 documents. first: Category:Defunct airports in Germany and last: Jimmy Phillips (footballer, born 1966) -[2018-02-13T08:37:20.378] [INFO] cheese - inserting 1000 documents. first: List of Archdeacons of Italy and Malta and last: Monin–Obukhov similarity theory -[2018-02-13T08:37:20.403] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:37:20.426] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:37:20.432] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:37:20.590] [INFO] cheese - inserting 1000 documents. first: E.1 and last: Sanagochi -[2018-02-13T08:37:20.591] [INFO] cheese - inserting 1000 documents. first: Category:Sex crimes in Northern Ireland and last: Drew Bledso -[2018-02-13T08:37:20.612] [INFO] cheese - inserting 1000 documents. first: Sakız, Mersin and last: Wang Ying(Screen actress) -[2018-02-13T08:37:20.633] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T08:37:20.636] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:37:20.661] [INFO] cheese - inserting 1000 documents. first: Communist Party of Albania and last: Bernardino de Campos -[2018-02-13T08:37:20.671] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:37:20.739] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:20.894] [INFO] cheese - inserting 1000 documents. first: Toyota EX-I and last: Pans Lane Halt station -[2018-02-13T08:37:20.934] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:37:20.946] [INFO] cheese - inserting 1000 documents. first: Oh No Ross and Carrie and last: Nari (letter) -[2018-02-13T08:37:21.024] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:21.042] [INFO] cheese - inserting 1000 documents. first: Witanowice, Lesser Poland Voivodeship and last: HIC 10203 -[2018-02-13T08:37:21.051] [INFO] cheese - inserting 1000 documents. first: The goatse man and last: Robert Berry -[2018-02-13T08:37:21.069] [INFO] cheese - inserting 1000 documents. first: Kam Newton and last: Kyiv National Trade-Economics University -[2018-02-13T08:37:21.162] [INFO] cheese - inserting 1000 documents. first: Ohana Punch and last: Consummation (Album) -[2018-02-13T08:37:21.176] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:21.203] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:37:21.254] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:37:21.293] [INFO] cheese - inserting 1000 documents. first: Fischhof Manuscript and last: Tallinn French Gymnasium -[2018-02-13T08:37:21.314] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:37:21.404] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:37:21.449] [INFO] cheese - inserting 1000 documents. first: TAAG Angola Airlines Flight 462 and last: Gen. George Cowles House -[2018-02-13T08:37:21.567] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:37:21.607] [INFO] cheese - inserting 1000 documents. first: Martino’s Summer and last: Christian Schilling -[2018-02-13T08:37:21.628] [INFO] cheese - inserting 1000 documents. first: Ralph O. Brewster and last: Suzukaze Mayo -[2018-02-13T08:37:21.721] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:37:21.721] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:37:21.732] [INFO] cheese - inserting 1000 documents. first: Leonard Horatio Slatter and last: Chłopice -[2018-02-13T08:37:21.818] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:37:21.852] [INFO] cheese - inserting 1000 documents. first: United Malays National Organisation leadership election, 2004 and last: Christian Brothers' School -[2018-02-13T08:37:21.866] [INFO] cheese - inserting 1000 documents. first: Category:1738 operas and last: Wikipedia:Deletion review/Log/2007 May 16 -[2018-02-13T08:37:21.916] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:37:21.952] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:37:22.070] [INFO] cheese - inserting 1000 documents. first: Portal:Cars/Selected picture/24 and last: Evening Prayer -[2018-02-13T08:37:22.085] [INFO] cheese - inserting 1000 documents. first: Category:Works by Pierre-Joseph Proudhon and last: Sir Gilbert Claughton -[2018-02-13T08:37:22.136] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:37:22.140] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:37:22.174] [INFO] cheese - inserting 1000 documents. first: Annebronte and last: Preventive treatment -[2018-02-13T08:37:22.229] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:37:22.240] [INFO] cheese - inserting 1000 documents. first: Molesworth of Tetcott and last: Cawy Bottling Company -[2018-02-13T08:37:22.289] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:37:22.318] [INFO] cheese - inserting 1000 documents. first: File:BBC Sleepers DVD cover.jpg and last: Ciecierze -[2018-02-13T08:37:22.357] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Monterey, California and last: Vladislav Frolov (field athlete) -[2018-02-13T08:37:22.358] [INFO] cheese - inserting 1000 documents. first: Geoffrey Hoyle and last: Passive park -[2018-02-13T08:37:22.359] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:37:22.402] [INFO] cheese - inserting 1000 documents. first: Tamatebako and last: Nekromantik -[2018-02-13T08:37:22.416] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:37:22.407] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:22.508] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:37:22.568] [INFO] cheese - inserting 1000 documents. first: Simplified molecular input line entry system and last: Admission Possible -[2018-02-13T08:37:22.628] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:37:22.638] [INFO] cheese - inserting 1000 documents. first: Prophylactic treatment and last: Masonic of Detroit -[2018-02-13T08:37:22.639] [INFO] cheese - inserting 1000 documents. first: Skye (Disambiguation) and last: Kerli Koiv -[2018-02-13T08:37:22.683] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T08:37:22.703] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:37:22.783] [INFO] cheese - inserting 1000 documents. first: Bączal Dolny and last: Stare Miasto, Podkarpackie Voivodeship -[2018-02-13T08:37:22.802] [INFO] cheese - inserting 1000 documents. first: 1100 Milam and last: Chilean frigate Covadonga -[2018-02-13T08:37:22.820] [INFO] cheese - inserting 1000 documents. first: File:Hitler and the Occult.jpg and last: Adrian Voo -[2018-02-13T08:37:22.830] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:37:22.838] [INFO] cheese - inserting 1000 documents. first: Katekyo Hitman Reborn and last: BCCH -[2018-02-13T08:37:22.868] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:22.881] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:37:22.921] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:37:23.046] [INFO] cheese - inserting 1000 documents. first: Category:Koderma district and last: Ethmia canuisella -[2018-02-13T08:37:23.068] [INFO] cheese - inserting 1000 documents. first: Koforidua Senior High Technical School and last: Martha J. Wong -[2018-02-13T08:37:23.079] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:37:23.106] [INFO] cheese - inserting 1000 documents. first: God Shuffled His Feet and last: Category:Archaeological sites in Libya -[2018-02-13T08:37:23.161] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:23.253] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:37:23.287] [INFO] cheese - inserting 1000 documents. first: Scott Oldham and last: Wikipedia:Deletion review/List of interesting or unusual place names (2nd) -[2018-02-13T08:37:23.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:MARINERSNEWS and last: Przędzel-Kolonia -[2018-02-13T08:37:23.349] [INFO] cheese - inserting 1000 documents. first: Draft:Noel Cressie draft and last: Template:Taxonomy/Angonisaurus -[2018-02-13T08:37:23.365] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 3219 and last: Category:Colombian Christians -[2018-02-13T08:37:23.398] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:37:23.402] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:37:23.452] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:23.455] [INFO] cheese - inserting 1000 documents. first: Zaksa Kędzierzyn-Koźle and last: Runica, Lipkovo -[2018-02-13T08:37:23.459] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:37:23.533] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:37:23.747] [INFO] cheese - inserting 1000 documents. first: Fenclozic acid and last: File:MCMBLostBoy2010.jpg -[2018-02-13T08:37:23.748] [INFO] cheese - inserting 1000 documents. first: Martha Jee Wong and last: Robert Verdun -[2018-02-13T08:37:23.812] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:37:23.817] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:37:23.867] [INFO] cheese - inserting 1000 documents. first: Daryl Shuttleworth and last: File:Bluebeards Castle screenshot.jpg -[2018-02-13T08:37:23.888] [INFO] cheese - inserting 1000 documents. first: File:Roberta Flack - Killing Me Softly with His Song.jpg and last: File:Water SA.jpg -[2018-02-13T08:37:23.908] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the province of Savona and last: Casa de Guerche -[2018-02-13T08:37:23.915] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:37:23.950] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:37:23.967] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:37:23.969] [INFO] cheese - inserting 1000 documents. first: Mirko Gashi and last: Category:Stockton-on-Tees Borough -[2018-02-13T08:37:23.977] [INFO] cheese - inserting 1000 documents. first: Al-Husseiniyah and last: Tsai Ting-kuei -[2018-02-13T08:37:24.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Ambition (cards) and last: Wikipedia:Votes for deletion/Charlie Young -[2018-02-13T08:37:24.023] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:37:24.027] [INFO] cheese - inserting 1000 documents. first: Dave Hyatt and last: Pierre Pelot -[2018-02-13T08:37:24.031] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:37:24.034] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T08:37:24.104] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:37:24.233] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Charmer and last: Green-lit -[2018-02-13T08:37:24.255] [INFO] cheese - inserting 1000 documents. first: George 'Shadow' Morton and last: Kambarata-2 -[2018-02-13T08:37:24.255] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T08:37:24.265] [INFO] cheese - inserting 1000 documents. first: Iran (word) and last: Peterborough Roadrunners -[2018-02-13T08:37:24.309] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:37:24.313] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T08:37:24.359] [INFO] cheese - inserting 1000 documents. first: Ballica and last: Durgasthan -[2018-02-13T08:37:24.372] [INFO] cheese - inserting 1000 documents. first: Tsai Ting-Kuei and last: Portlaoise body -[2018-02-13T08:37:24.381] [INFO] cheese - inserting 1000 documents. first: St. John's Church, Egham and last: William O. Reichert -[2018-02-13T08:37:24.411] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:37:24.419] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:24.444] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Elfrid Sundqvist and last: Long Beach Grand Prix -[2018-02-13T08:37:24.459] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T08:37:24.473] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T08:37:24.517] [INFO] cheese - inserting 1000 documents. first: Peter Heathfield and last: List of Star Wars handmaidens -[2018-02-13T08:37:24.590] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:37:24.599] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron and last: Lipoxin -[2018-02-13T08:37:24.702] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:24.773] [INFO] cheese - inserting 1000 documents. first: Khattiya Sawasdipol and last: $2 coin -[2018-02-13T08:37:24.804] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Hot Cut-up Pancake & the Grannies on Flying Wheelchairs and last: Wikipedia:Votes for deletion/Julian Aguilar -[2018-02-13T08:37:24.956] [INFO] cheese - inserting 1000 documents. first: Whatever Tomorrow Brings and last: Conception: Ore no Kodomo wo Undekure -[2018-02-13T08:37:24.967] [INFO] cheese - inserting 1000 documents. first: William Reichert and last: Template:Malaysian general election, 1986 -[2018-02-13T08:37:24.979] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:25.005] [INFO] cheese - inserting 1000 documents. first: Discipline (Janet Jackson album) and last: Vente-privee.com -[2018-02-13T08:37:25.009] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:37:25.082] [INFO] cheese - inserting 1000 documents. first: Podocytisus caramanicus and last: Wayne's World 2 (soundtrack) -[2018-02-13T08:37:25.106] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:37:25.114] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:37:25.169] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:37:25.193] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:37:25.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Julian Togelius and last: Wikipedia:Votes for deletion/Misoponia -[2018-02-13T08:37:25.307] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T08:37:25.460] [INFO] cheese - inserting 1000 documents. first: Gwydir Castle and last: Cana Island Light -[2018-02-13T08:37:25.524] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:37:25.558] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Mission of Maitreya, Eternal Divine Path and last: Wikipedia:Votes for deletion/Quartetarian -[2018-02-13T08:37:25.577] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T08:37:25.590] [INFO] cheese - inserting 1000 documents. first: Portal:Children's literature/Selected quote/week20 and last: Wikipedia:Featured picture candidates/Three Eras of Houston -[2018-02-13T08:37:25.632] [INFO] cheese - inserting 1000 documents. first: Red Nightmare and last: Cuvette Department -[2018-02-13T08:37:25.638] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:37:25.653] [INFO] cheese - inserting 1000 documents. first: Katie Peretti Snyder and last: Amirdovlat Amasiatsi -[2018-02-13T08:37:25.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2014 April 16 and last: Hyamic languages -[2018-02-13T08:37:25.675] [INFO] cheese - inserting 1000 documents. first: Bashdiza and last: Eric Gast -[2018-02-13T08:37:25.695] [INFO] cheese - inserting 1000 documents. first: Template:Infobox DIN and last: The Yodel Napper! -[2018-02-13T08:37:25.696] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:37:25.710] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:37:25.717] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:37:25.726] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:25.777] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:37:25.779] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Quarto do Chefinho and last: Wikipedia:Votes for deletion/Syprus -[2018-02-13T08:37:25.824] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T08:37:25.956] [INFO] cheese - inserting 1000 documents. first: Jorge Garcia Carneiro and last: Juana Ramirez -[2018-02-13T08:37:25.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Syracuse to Washington, DC flights and last: Wikipedia:Votes for deletion/White-on-black color scheme -[2018-02-13T08:37:25.975] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T08:37:25.987] [INFO] cheese - inserting 1000 documents. first: Tea production in the United States and last: Trust companies -[2018-02-13T08:37:25.992] [INFO] cheese - batch complete in: 0.168 secs -[2018-02-13T08:37:26.054] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:26.064] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 1035-2 and last: Cirák -[2018-02-13T08:37:26.082] [INFO] cheese - inserting 1000 documents. first: Category:IS Open and last: Lionardo da Serzana -[2018-02-13T08:37:26.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Volée Air Flight 180 and last: Category:People murdered in Ukraine -[2018-02-13T08:37:26.112] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:37:26.128] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:37:26.167] [INFO] cheese - inserting 1000 documents. first: The Yodel Napper and last: Meet the Press (US TV program) -[2018-02-13T08:37:26.169] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:26.248] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:37:26.308] [INFO] cheese - inserting 1000 documents. first: Co-captain and last: Kashii-Jingu Station -[2018-02-13T08:37:26.346] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/White Nationalist Party and last: Consulate-General of Russia in Shenyang -[2018-02-13T08:37:26.356] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:37:26.403] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:37:26.422] [INFO] cheese - inserting 1000 documents. first: Tokyo Metro Nanboku Line and last: David B. Pall -[2018-02-13T08:37:26.510] [INFO] cheese - inserting 1000 documents. first: Henri-Edgar Lavigueur and last: Category:Paralympic athletes of Latvia -[2018-02-13T08:37:26.509] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:37:26.549] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:37:26.621] [INFO] cheese - inserting 1000 documents. first: Cakóháza and last: Pokcy -[2018-02-13T08:37:26.705] [INFO] cheese - inserting 1000 documents. first: Kashii-gu and last: Wikipedia:Teahouse/Host lounge/How-to guides/Other -[2018-02-13T08:37:26.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Louisa Connolly-Burnham and last: Battle of Kiauneliškis -[2018-02-13T08:37:26.724] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:37:26.744] [INFO] cheese - inserting 1000 documents. first: Draft:Crawshay Bailey, Junior and last: Claudia Wiesemann -[2018-02-13T08:37:26.765] [INFO] cheese - inserting 1000 documents. first: Consulate-General of Russia in Guangzhou and last: Bristol Type 45 Scandinavian Tourer -[2018-02-13T08:37:26.784] [INFO] cheese - inserting 1000 documents. first: Philippines under state of emergency, 2003 and last: Promises (group) -[2018-02-13T08:37:26.788] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:37:26.809] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:26.822] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:37:26.825] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:37:26.847] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:37:27.122] [INFO] cheese - inserting 1000 documents. first: Category:Paralympic competitors for Latvia and last: Bibliography of Canadian nationalism -[2018-02-13T08:37:27.130] [INFO] cheese - inserting 1000 documents. first: Krugers Woche and last: La Vina, Catamarca -[2018-02-13T08:37:27.159] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T08:37:27.164] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:27.200] [INFO] cheese - inserting 1000 documents. first: Zudreitai and last: File:Crackinup.jpg -[2018-02-13T08:37:27.236] [INFO] cheese - inserting 1000 documents. first: Bristol Type 81A Greek Military Tourer and last: File:City of the Daleks.jpg -[2018-02-13T08:37:27.249] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:27.298] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:37:27.308] [INFO] cheese - inserting 1000 documents. first: R. Syme and last: Faílde -[2018-02-13T08:37:27.311] [INFO] cheese - inserting 1000 documents. first: Uelzen–Stendal railway and last: Aleksandar Ðuric -[2018-02-13T08:37:27.365] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:27.382] [INFO] cheese - inserting 1000 documents. first: Clara Pinto Correia and last: Vincent I. Maduka -[2018-02-13T08:37:27.394] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:37:27.396] [INFO] cheese - inserting 1000 documents. first: Kjersti Plätzer and last: Sebadoh III -[2018-02-13T08:37:27.438] [INFO] cheese - inserting 1000 documents. first: La Vina, Salta and last: A Cry of Peacocks -[2018-02-13T08:37:27.470] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:37:27.493] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:37:27.498] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T08:37:27.557] [INFO] cheese - inserting 1000 documents. first: Lin Qisheng and last: Wikipedia:Articles for deletion/John McGuinness (Irish footballer) -[2018-02-13T08:37:27.638] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:37:27.786] [INFO] cheese - inserting 1000 documents. first: Mubarak Hashem and last: Wikipedia:Articles for deletion/Skyfex -[2018-02-13T08:37:27.852] [INFO] cheese - inserting 1000 documents. first: Booster (electric power) and last: Super Bowl MVP -[2018-02-13T08:37:27.859] [INFO] cheese - inserting 1000 documents. first: Bundy Ranch standoff and last: Leib Carriage House -[2018-02-13T08:37:27.872] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:37:27.940] [INFO] cheese - inserting 1000 documents. first: San Rocco alla Lupa, Siena and last: Tomy's Secret -[2018-02-13T08:37:27.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adolf Benda and last: Line 16 (Sao Paulo Metro) -[2018-02-13T08:37:27.956] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:37:27.983] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:37:28.029] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:37:28.064] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:37:28.094] [INFO] cheese - inserting 1000 documents. first: Broker, Lewis and last: Maria Magdalene -[2018-02-13T08:37:28.150] [INFO] cheese - inserting 1000 documents. first: Aysgarth Falls and last: List of Italo-Dalmatian languages -[2018-02-13T08:37:28.211] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:37:28.334] [INFO] cheese - inserting 1000 documents. first: List of Bishops and Archbishops of Kraków and last: Iran at the 2008 Summer Paralympics -[2018-02-13T08:37:28.352] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:37:28.411] [INFO] cheese - inserting 1000 documents. first: Line 17 (Sao Paulo Metro) and last: Gong Suo Xin Yu -[2018-02-13T08:37:28.444] [INFO] cheese - inserting 1000 documents. first: Prague 18 and last: Elliott Richards -[2018-02-13T08:37:28.461] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:37:28.471] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:37:28.478] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:37:28.605] [INFO] cheese - inserting 1000 documents. first: Stade Marocain and last: Overworking -[2018-02-13T08:37:28.622] [INFO] cheese - inserting 1000 documents. first: Al-kitāb al-mukhtaṣar fī ḥisāb al-ğabr wa’l-muqābala and last: Émigrés' billions -[2018-02-13T08:37:28.666] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:37:28.711] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:37:28.759] [INFO] cheese - inserting 1000 documents. first: Luvsjon and last: Mario Gonzalez (footballer) -[2018-02-13T08:37:28.782] [INFO] cheese - inserting 1000 documents. first: El secreto de Tomy and last: Category:Business organizations of Africa -[2018-02-13T08:37:28.808] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:37:28.834] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:37:28.934] [INFO] cheese - inserting 1000 documents. first: Ryley and last: Category:Albany, New York -[2018-02-13T08:37:28.957] [INFO] cheese - inserting 1000 documents. first: Electoral district of Beeloo and last: Catoptria falsella -[2018-02-13T08:37:28.993] [INFO] cheese - inserting 1000 documents. first: George K. Fraenkel and last: Fishfur -[2018-02-13T08:37:28.992] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:37:29.009] [INFO] cheese - inserting 1000 documents. first: List of Southern Romance languages and last: Category:1710s deaths -[2018-02-13T08:37:29.016] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:37:29.021] [INFO] cheese - inserting 1000 documents. first: Category:Gaelic games governing bodies in Leinster and last: St Paul-without-the-Walls -[2018-02-13T08:37:29.023] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T08:37:29.084] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:37:29.089] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:37:29.167] [INFO] cheese - inserting 1000 documents. first: Template:Nine Network and last: Rheinmetall 120mm Gun -[2018-02-13T08:37:29.217] [INFO] cheese - inserting 1000 documents. first: Dan Simrell and last: League of Legends Challenger Series North America -[2018-02-13T08:37:29.217] [INFO] cheese - inserting 1000 documents. first: I Know (Luther Vandross song) and last: The Life of Josiah Henson -[2018-02-13T08:37:29.225] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:29.279] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:37:29.294] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:37:29.318] [INFO] cheese - inserting 1000 documents. first: Miguel Angel Huerta and last: Mildred Gordon (biologist) -[2018-02-13T08:37:29.378] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:37:29.425] [INFO] cheese - inserting 1000 documents. first: DWS Amsterdam and last: Ludwig South-North line -[2018-02-13T08:37:29.456] [INFO] cheese - inserting 1000 documents. first: File:X^x.jpg and last: Category:Transport in Aberdeen -[2018-02-13T08:37:29.468] [INFO] cheese - inserting 1000 documents. first: A New York Christmas and last: Black River, Nova Scotia (disambiguation) -[2018-02-13T08:37:29.477] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:37:29.524] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:29.539] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:37:29.616] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change-NY and last: Category:Palestine-related articles needing merge action -[2018-02-13T08:37:29.642] [INFO] cheese - inserting 1000 documents. first: Musee des 24 Heures du Mans and last: Charles Turner (water polo) -[2018-02-13T08:37:29.647] [INFO] cheese - inserting 1000 documents. first: 2016–17 UMass Minutemen men's basketball team and last: Morada -[2018-02-13T08:37:29.671] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Belgium in the long nineteenth century and last: Sagittaria pygmaea -[2018-02-13T08:37:29.673] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:37:29.682] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T08:37:29.726] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:37:29.730] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:37:29.862] [INFO] cheese - inserting 1000 documents. first: Category:1720s deaths and last: Edgar Ende -[2018-02-13T08:37:29.877] [INFO] cheese - inserting 1000 documents. first: John William Woolsey and last: Stigmella kurilensis -[2018-02-13T08:37:29.925] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T08:37:30.044] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:37:30.047] [INFO] cheese - inserting 1000 documents. first: Alex Burns (footballer) and last: Wikipedia:Articles for deletion/Mardon -[2018-02-13T08:37:30.109] [INFO] cheese - inserting 1000 documents. first: Elmer Angsman and last: File:Warts and All Volume 2.jpg -[2018-02-13T08:37:30.116] [INFO] cheese - inserting 1000 documents. first: Niccolo Barbieri and last: File:KerrieRobertsalbum.jpg -[2018-02-13T08:37:30.139] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:37:30.194] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:37:30.217] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:37:30.225] [INFO] cheese - inserting 1000 documents. first: Comella insularis and last: Laguna Antaccocha -[2018-02-13T08:37:30.300] [INFO] cheese - inserting 1000 documents. first: Decollation and last: Tente (toy) -[2018-02-13T08:37:30.306] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:37:30.327] [INFO] cheese - inserting 1000 documents. first: Category:1603 in the Papal States and last: Angel Perdomo -[2018-02-13T08:37:30.382] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:37:30.398] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:37:30.539] [INFO] cheese - inserting 1000 documents. first: Zyugyul'ba and last: Dzherembel’ -[2018-02-13T08:37:30.544] [INFO] cheese - inserting 1000 documents. first: The New Reign (Warriors) and last: OFK Dunajska Luzna -[2018-02-13T08:37:30.583] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:37:30.606] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T08:37:30.658] [INFO] cheese - inserting 1000 documents. first: Zirngibl and last: François Bazin (disambiguation) -[2018-02-13T08:37:30.663] [INFO] cheese - inserting 1000 documents. first: Category:Government-related professional associations and last: File:The-Birth.jpg -[2018-02-13T08:37:30.680] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T08:37:30.722] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:37:30.765] [INFO] cheese - inserting 1000 documents. first: Lago Antaccocha and last: Remote (location) -[2018-02-13T08:37:30.782] [INFO] cheese - inserting 1000 documents. first: File:Cephalonia and Ithaca elevation.jpg and last: 2003 NAACP Awards -[2018-02-13T08:37:30.809] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/harishsunshine.tk and last: Pascual Echague -[2018-02-13T08:37:30.820] [INFO] cheese - inserting 1000 documents. first: Canadian Criminal Code and last: Steinrode -[2018-02-13T08:37:30.827] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:37:30.846] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:37:30.929] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:37:30.957] [INFO] cheese - inserting 1000 documents. first: Tb/s and last: File:Lovesongscliffrichard.jpg -[2018-02-13T08:37:30.972] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:37:31.010] [INFO] cheese - inserting 1000 documents. first: Dzherimbel’ and last: Category:Suicides in Idaho -[2018-02-13T08:37:31.025] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:37:31.065] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:37:31.142] [INFO] cheese - inserting 1000 documents. first: Andrew Beckwith and last: 1915 Michigan State Normal Normalites football team -[2018-02-13T08:37:31.177] [INFO] cheese - inserting 1000 documents. first: Pasi Maattanen and last: Polzanska vas -[2018-02-13T08:37:31.192] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:37:31.216] [INFO] cheese - inserting 1000 documents. first: File:Musashi-Kosugi-Mid-Sky-Tower-2008-05-17.jpg and last: Carmen Fault -[2018-02-13T08:37:31.242] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T08:37:31.280] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:31.286] [INFO] cheese - inserting 1000 documents. first: 2003 Players' Championship and last: Captive Market (short story) -[2018-02-13T08:37:31.342] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:37:31.368] [INFO] cheese - inserting 1000 documents. first: 2003 Image Awards and last: Wikipedia:Articles for deletion/Goober Adventure -[2018-02-13T08:37:31.486] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:37:31.531] [INFO] cheese - inserting 1000 documents. first: Pompeyo Marquez and last: Miller twist rule -[2018-02-13T08:37:31.578] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T08:37:31.610] [INFO] cheese - inserting 1000 documents. first: Jak & Daxter: The Precursor Legacy and last: Darren John Sutherland -[2018-02-13T08:37:31.634] [INFO] cheese - inserting 1000 documents. first: Pappataci fever and last: Greta Von Amburg -[2018-02-13T08:37:31.694] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:37:31.719] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:37:31.737] [INFO] cheese - inserting 1000 documents. first: Periyanayaki Shrine, Thiruvithancode and last: Policía al habla -[2018-02-13T08:37:31.815] [INFO] cheese - inserting 1000 documents. first: Stöckey and last: Ferraz de Vasconcelos -[2018-02-13T08:37:31.820] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:37:31.864] [INFO] cheese - inserting 1000 documents. first: File:American Staffordshire Terrier (Roxy) by Jleon.JPG and last: Mitra contracta -[2018-02-13T08:37:31.890] [INFO] cheese - inserting 1000 documents. first: Rafael Bermudez and last: 2693 BC -[2018-02-13T08:37:31.892] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:37:31.899] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:37:31.905] [INFO] cheese - inserting 1000 documents. first: Category:VMI Keydets navigational boxes and last: Sangre en el Diván -[2018-02-13T08:37:31.930] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T08:37:31.986] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:37:31.998] [INFO] cheese - inserting 1000 documents. first: Photocopying processes and last: Lake Kejimikujik -[2018-02-13T08:37:32.046] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T08:37:32.077] [INFO] cheese - inserting 1000 documents. first: Jeremy Scott and last: Net Backup -[2018-02-13T08:37:32.106] [INFO] cheese - inserting 1000 documents. first: Great ice storm and last: Template:ISO 639 name os -[2018-02-13T08:37:32.143] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:37:32.146] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:32.196] [INFO] cheese - inserting 1000 documents. first: 2694 BC and last: Rosolino Paterno, soldato... -[2018-02-13T08:37:32.226] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T08:37:32.248] [INFO] cheese - inserting 1000 documents. first: Category:GAA people from New York (state) and last: Kentucky Route 462 -[2018-02-13T08:37:32.305] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:37:32.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/1993 Russian constitutional crisis and last: The Rock Road to Dublin -[2018-02-13T08:37:32.391] [INFO] cheese - inserting 1000 documents. first: Jaroslaw Hrycak and last: College Football Playoff National Championship Trophy -[2018-02-13T08:37:32.391] [INFO] cheese - inserting 1000 documents. first: Mitra coronata and last: SS Empire Clyde (1919) -[2018-02-13T08:37:32.400] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T08:37:32.453] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:37:32.463] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:37:32.471] [INFO] cheese - inserting 1000 documents. first: Presentation Convent Girls High School and last: Lansing family -[2018-02-13T08:37:32.560] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:37:32.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Leutes and last: 2954 BC -[2018-02-13T08:37:32.615] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:37:32.651] [INFO] cheese - inserting 1000 documents. first: Republican Leader of the United States Senate and last: Mr Potato Head -[2018-02-13T08:37:32.757] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:37:32.767] [INFO] cheese - inserting 1000 documents. first: Middlesbrough Borough Council and last: Isser Zalman Meltzer -[2018-02-13T08:37:33.021] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:37:33.098] [INFO] cheese - inserting 1000 documents. first: El Castillo del Terror (2004) and last: Anna Sethne -[2018-02-13T08:37:33.110] [INFO] cheese - inserting 1000 documents. first: Flight Attendant School and last: The Acolytes -[2018-02-13T08:37:33.139] [INFO] cheese - inserting 1000 documents. first: HD 30834 and last: List of registered historic places in Pennsylvania -[2018-02-13T08:37:33.155] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:37:33.173] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:37:33.201] [INFO] cheese - inserting 1000 documents. first: Thomas Hope (MP for Maidstone) and last: Niobe, Red Deer County, Alberta -[2018-02-13T08:37:33.211] [INFO] cheese - inserting 1000 documents. first: 2955 BC and last: Wikipedia:WikiProject Spam/LinkReports/thesite.org -[2018-02-13T08:37:33.216] [INFO] cheese - inserting 1000 documents. first: Babelomurex stenospinus and last: Ocinebrina piantonii -[2018-02-13T08:37:33.268] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:37:33.283] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:37:33.318] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:37:33.331] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:37:33.638] [INFO] cheese - inserting 1000 documents. first: Anna Cathrine Sethne and last: Jōwa (second) -[2018-02-13T08:37:33.669] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Did you know/11 and last: File:Hunters' Chorus from The Rose of Erin.ogg -[2018-02-13T08:37:33.671] [INFO] cheese - inserting 1000 documents. first: Ocinebrina purpuroidea and last: ḪARSAG -[2018-02-13T08:37:33.672] [INFO] cheese - inserting 1000 documents. first: Vanatori de munte and last: Portal:Latvia/Featured picture/10 -[2018-02-13T08:37:33.674] [INFO] cheese - inserting 1000 documents. first: Instituto Autónomo del Aeropuerto Internacional de Maiquetía and last: Aya takano -[2018-02-13T08:37:33.680] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:37:33.684] [INFO] cheese - inserting 1000 documents. first: Niobe, Grande Prairie County No. 1, Alberta and last: Callistus Chukwu -[2018-02-13T08:37:33.695] [INFO] cheese - inserting 1000 documents. first: Qazansu river and last: File:Captain Commando Screenshot.png -[2018-02-13T08:37:33.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thesite.org and last: Duminichsky -[2018-02-13T08:37:33.710] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:37:33.731] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:37:33.740] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T08:37:33.725] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:37:33.761] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:37:33.787] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:37:33.808] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:37:34.146] [INFO] cheese - inserting 1000 documents. first: Hans Georg Pescher and last: Category:Start-Class Tirana articles -[2018-02-13T08:37:34.160] [INFO] cheese - inserting 1000 documents. first: Jackal (The Day Of The Jackal) and last: Therizinosaurid -[2018-02-13T08:37:34.162] [INFO] cheese - inserting 1000 documents. first: Duminichskiy and last: Sant Sebastia de la Guarda -[2018-02-13T08:37:34.171] [INFO] cheese - inserting 1000 documents. first: Joan Kemp-Welch and last: CerS5 -[2018-02-13T08:37:34.174] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Equilio and last: Category:Bird common name disambiguation pages -[2018-02-13T08:37:34.183] [INFO] cheese - inserting 1000 documents. first: Enci and last: Wikipedia:Bots/Requests for approval/Kaspobot 2 -[2018-02-13T08:37:34.186] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:37:34.210] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:37:34.220] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:37:34.235] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:37:34.251] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:37:34.270] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:34.307] [INFO] cheese - inserting 1000 documents. first: Client program and last: CC Chapman -[2018-02-13T08:37:34.359] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:34.455] [INFO] cheese - inserting 1000 documents. first: Scapular of Our Lady of Mount Carmel and last: Haripur district -[2018-02-13T08:37:34.486] [INFO] cheese - inserting 1000 documents. first: Santa Albertina, Sao Paulo, Brazil and last: Category:1935 in Alabama -[2018-02-13T08:37:34.566] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:37:34.575] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:37:34.718] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Profoun education and last: Painted Lady butterflies -[2018-02-13T08:37:34.771] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:37:34.796] [INFO] cheese - inserting 1000 documents. first: Category:World War I speeches and last: File:Latin kings VTF.jpg -[2018-02-13T08:37:34.804] [INFO] cheese - inserting 1000 documents. first: Golden-rods and last: Karu Diddina Kapuram -[2018-02-13T08:37:34.817] [INFO] cheese - inserting 1000 documents. first: Category:American Battle Monuments Commission and last: Seal of alabama -[2018-02-13T08:37:34.840] [INFO] cheese - inserting 1000 documents. first: Template:User browser:WebKit and last: Music inspired by Watership Down -[2018-02-13T08:37:34.907] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:37:34.911] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:37:34.945] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:37:34.960] [INFO] cheese - inserting 1000 documents. first: Sibbarp, Malmo and last: File:Ask the Fish.jpeg -[2018-02-13T08:37:34.980] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:37:34.998] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:37:35.061] [INFO] cheese - inserting 1000 documents. first: Oradea Transport Local and last: 'Enry the 'Ermit -[2018-02-13T08:37:35.150] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:37:35.302] [INFO] cheese - inserting 1000 documents. first: St. Demetrius' Church, Polican and last: Mevik Chapel -[2018-02-13T08:37:35.325] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T08:37:35.377] [INFO] cheese - inserting 1000 documents. first: Hsu Jui-Te and last: Central Ave/Camelback -[2018-02-13T08:37:35.388] [INFO] cheese - inserting 1000 documents. first: Multi-tasking MS-DOS 4.1 and last: Keith Nelson type lifeboat -[2018-02-13T08:37:35.413] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:35.439] [INFO] cheese - inserting 1000 documents. first: List of Uruguayan writers and last: Cedar BRT Line -[2018-02-13T08:37:35.449] [INFO] cheese - inserting 1000 documents. first: Siege of Sebastopol and last: Muskets -[2018-02-13T08:37:35.451] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:37:35.482] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:37:35.502] [INFO] cheese - inserting 1000 documents. first: Klickitat tribe and last: Mertztown, Pennsylvania -[2018-02-13T08:37:35.519] [INFO] cheese - inserting 1000 documents. first: Utenn and last: Cymbiola intruderi -[2018-02-13T08:37:35.531] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:37:35.581] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:37:35.614] [INFO] cheese - inserting 1000 documents. first: Stateless society and last: Silver Stadium -[2018-02-13T08:37:35.616] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:37:35.663] [INFO] cheese - inserting 1000 documents. first: SS Acadia (1932) and last: Sebastien Monier -[2018-02-13T08:37:35.695] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:35.729] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:37:35.818] [INFO] cheese - inserting 1000 documents. first: Campbell/Central Ave and last: Wikipedia:Articles for deletion/Marguerite Humeau -[2018-02-13T08:37:35.856] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:37:35.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The pocket guide to divorce and last: Meridarchis excisa -[2018-02-13T08:37:35.899] [INFO] cheese - inserting 1000 documents. first: Air Coryell and last: 2007 Road World Championships -[2018-02-13T08:37:35.948] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:37:35.961] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:36.001] [INFO] cheese - inserting 1000 documents. first: Sebastien-Melchior Cornu and last: Steve Bassett (disambiguation) -[2018-02-13T08:37:36.018] [INFO] cheese - inserting 1000 documents. first: Cymbiola perplicata and last: File:Aviaries Estate and Midland Works, Armley .png -[2018-02-13T08:37:36.046] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T08:37:36.047] [INFO] cheese - inserting 1000 documents. first: CJCA (AM) and last: L'Éducation sentimentale -[2018-02-13T08:37:36.088] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:37:36.113] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:36.190] [INFO] cheese - inserting 1000 documents. first: Network analysis and last: Peter Chen -[2018-02-13T08:37:36.200] [INFO] cheese - inserting 1000 documents. first: Abiodun (Nigeria ruler) and last: Category:Canadian female diplomats -[2018-02-13T08:37:36.216] [INFO] cheese - inserting 1000 documents. first: Frostbiter: Wrath of the Wendigo and last: Wikipedia:MAROC -[2018-02-13T08:37:36.232] [INFO] cheese - inserting 1000 documents. first: The Ultimate Collection (Elektricni Orgazam album) and last: Homoeosoma reliquella -[2018-02-13T08:37:36.246] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:37:36.251] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T08:37:36.268] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:37:36.293] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:36.426] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:GameGuy95/Who Wants to Be a Millionaire (daytime version) and last: Les Gens du voyage -[2018-02-13T08:37:36.539] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:36.581] [INFO] cheese - inserting 1000 documents. first: Equality Rocks and last: Kunda, India -[2018-02-13T08:37:36.606] [INFO] cheese - inserting 1000 documents. first: International military decoration authorized by the US military and last: 244BC -[2018-02-13T08:37:36.674] [INFO] cheese - inserting 1000 documents. first: Fan Gang and last: Nepticula ceanothi -[2018-02-13T08:37:36.697] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:36.706] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:37:36.757] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:37:36.952] [INFO] cheese - inserting 1000 documents. first: Mark Esho and last: Category:1872 in British India -[2018-02-13T08:37:37.021] [INFO] cheese - inserting 1000 documents. first: Category:Tram transport in Africa and last: Roderick Norman McIver MacSween -[2018-02-13T08:37:37.024] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:37:37.098] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:37:37.120] [INFO] cheese - inserting 1000 documents. first: Florida state university college of law and last: G. Trissino -[2018-02-13T08:37:37.171] [INFO] cheese - inserting 1000 documents. first: Bucculatrix ratisbonnensis and last: Church of Saint Nicetas, Moscow -[2018-02-13T08:37:37.177] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:37:37.226] [INFO] cheese - inserting 1000 documents. first: 245BC and last: Westin Westminster -[2018-02-13T08:37:37.235] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:37:37.248] [INFO] cheese - inserting 1000 documents. first: Faustino Asprilla and last: Cellular pathology -[2018-02-13T08:37:37.264] [INFO] cheese - inserting 1000 documents. first: KRPT-FM and last: Turbulent prandtl number -[2018-02-13T08:37:37.288] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:37:37.325] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:37:37.366] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:37:37.453] [INFO] cheese - inserting 1000 documents. first: The Last Hurrah (film) and last: A. L. Strang -[2018-02-13T08:37:37.457] [INFO] cheese - inserting 1000 documents. first: Chaworth Brabazon, 6th Earl of Meath and last: Category:July 2016 peer reviews -[2018-02-13T08:37:37.486] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:37:37.497] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:37:37.525] [INFO] cheese - inserting 1000 documents. first: Tornadoes of 1997 and last: Portal:Indigenous peoples in Canada/Selected picture/5 -[2018-02-13T08:37:37.585] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:37:37.630] [INFO] cheese - inserting 1000 documents. first: Betts House (Yale University) and last: My Eyes (Blake Shelton Song) -[2018-02-13T08:37:37.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality/43 and last: Thaang -[2018-02-13T08:37:37.691] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:37:37.716] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T08:37:37.752] [INFO] cheese - inserting 1000 documents. first: Campbell Hill (Logan County, Ohio) and last: William de Soulis -[2018-02-13T08:37:37.800] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:37:37.840] [INFO] cheese - inserting 1000 documents. first: File:Nathaniel Clifton.jpg and last: Dalaca brunneotincta -[2018-02-13T08:37:37.841] [INFO] cheese - inserting 1000 documents. first: Silver bullion coin and last: File:Qotsabeaversplitcd.jpg -[2018-02-13T08:37:37.871] [INFO] cheese - inserting 1000 documents. first: William James (rugby) and last: Category:Cricket in North West (South African province) -[2018-02-13T08:37:37.876] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:37:37.926] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:37.939] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:37:37.971] [INFO] cheese - inserting 1000 documents. first: Canton of Baden and last: Category:Lists of English phrases -[2018-02-13T08:37:38.001] [INFO] cheese - inserting 1000 documents. first: Kazys Ladiga and last: Portal:Furry/Selected comic/3 -[2018-02-13T08:37:38.054] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:37:38.077] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:37:38.139] [INFO] cheese - inserting 1000 documents. first: Magnolia liliifera and last: Category:2015 in South African rugby union -[2018-02-13T08:37:38.222] [INFO] cheese - inserting 1000 documents. first: Kuzhambu and last: Life on Mars (soundtrack) -[2018-02-13T08:37:38.224] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:38.385] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:37:38.446] [INFO] cheese - inserting 1000 documents. first: ZEN Vision W and last: File:Cavalier King Charles Spaniel puppy.jpg -[2018-02-13T08:37:38.503] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Dubai 2 and last: Category:Economy of Kingston upon Hull -[2018-02-13T08:37:38.550] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:38.580] [INFO] cheese - inserting 1000 documents. first: Park Hyun-kon and last: Wikipedia:Sockpuppet investigations/195.224.183.184 -[2018-02-13T08:37:38.596] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:37:38.671] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:37:38.832] [INFO] cheese - inserting 1000 documents. first: Henry Wyndham (1790-1860) and last: Leslie Holdsworth Allen -[2018-02-13T08:37:38.874] [INFO] cheese - inserting 1000 documents. first: William Targ and last: Phil Jones (climatologist) -[2018-02-13T08:37:38.890] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:37:38.898] [INFO] cheese - inserting 1000 documents. first: Copernican cosmology and last: "Crazy" (1991) -[2018-02-13T08:37:38.910] [INFO] cheese - inserting 1000 documents. first: W-curve and last: Robert Biddulph (governor) -[2018-02-13T08:37:38.960] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:38.968] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:37:38.974] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:39.054] [INFO] cheese - inserting 1000 documents. first: 50 Number Ones and last: Federal Reserve Bank Building (Boston) -[2018-02-13T08:37:39.081] [INFO] cheese - inserting 1000 documents. first: Serampore Girl's College and last: Vieux-Quebec–Cap-Blanc–colline Parlementaire -[2018-02-13T08:37:39.111] [INFO] cheese - inserting 1000 documents. first: Nahar el-bared and last: Fresh (IDE) -[2018-02-13T08:37:39.122] [INFO] cheese - inserting 1000 documents. first: €2 commemorative coins and last: Zakharovsky Municipal District -[2018-02-13T08:37:39.128] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:37:39.145] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:37:39.197] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:37:39.231] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:39.357] [INFO] cheese - inserting 1000 documents. first: Música en Compostela and last: File:Rodengo-Saiano-Stemma.png -[2018-02-13T08:37:39.412] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:39.450] [INFO] cheese - inserting 1000 documents. first: FedACH and last: Template:Serbian language -[2018-02-13T08:37:39.457] [INFO] cheese - inserting 1000 documents. first: Forward public school and last: West Zone of Sao Paulo -[2018-02-13T08:37:39.464] [INFO] cheese - inserting 1000 documents. first: St Leonard's Church, Wollaton and last: Hot Choice PPV -[2018-02-13T08:37:39.486] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:37:39.499] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:39.536] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:37:39.667] [INFO] cheese - inserting 1000 documents. first: The Greek Coffin Mystery and last: Michael Dixon (museum director) -[2018-02-13T08:37:39.682] [INFO] cheese - inserting 1000 documents. first: Naji Sayed and last: Virupaksha -[2018-02-13T08:37:39.719] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:37:39.723] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:39.771] [INFO] cheese - inserting 1000 documents. first: Asadabad, Firuzabad and last: Zabrde (Priboj) -[2018-02-13T08:37:39.800] [INFO] cheese - inserting 1000 documents. first: Marker (TV Series) and last: IRT 9th Avenue Line -[2018-02-13T08:37:39.807] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T08:37:39.884] [INFO] cheese - inserting 1000 documents. first: Template:2009–10 Premier League PFA Team of the Year and last: St Mark's School, Hong Kong -[2018-02-13T08:37:39.964] [INFO] cheese - inserting 1000 documents. first: Gashimov Memorial and last: Faubourg Livaudais -[2018-02-13T08:37:39.973] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:37:39.990] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:40.086] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Funeral Orchestra and last: Brookville Equipment Corporation -[2018-02-13T08:37:40.098] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:37:40.183] [INFO] cheese - inserting 1000 documents. first: 3661 BC and last: Kraco Car Stereo 150 -[2018-02-13T08:37:40.192] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:37:40.208] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:37:40.238] [INFO] cheese - inserting 1000 documents. first: File:Sherwood tracking drums at Studio Litho, Sept 2015.jpg and last: The Real Story (TV series) -[2018-02-13T08:37:40.240] [INFO] cheese - inserting 1000 documents. first: America's Pulse and last: Ecw tv title -[2018-02-13T08:37:40.310] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:37:40.351] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:37:40.512] [INFO] cheese - inserting 1000 documents. first: Electric light (illumination) and last: Hacker Craft -[2018-02-13T08:37:40.521] [INFO] cheese - inserting 1000 documents. first: Ake Akerstrom and last: Cigri, Basmakci -[2018-02-13T08:37:40.565] [INFO] cheese - inserting 1000 documents. first: File:Forio-Stemma.gif and last: 3-colourability -[2018-02-13T08:37:40.569] [INFO] cheese - inserting 1000 documents. first: Photobacterium leiognathi and last: Template:Great power diplomacy -[2018-02-13T08:37:40.555] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:37:40.574] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T08:37:40.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/D.S.G Justice and last: Wikipedia:Wikiproject Rational Skepticism -[2018-02-13T08:37:40.626] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:37:40.648] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:37:40.675] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:37:40.753] [INFO] cheese - inserting 1000 documents. first: Meessen De Clercq and last: Holland station -[2018-02-13T08:37:40.809] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:37:40.814] [INFO] cheese - inserting 1000 documents. first: John Crews and last: Kung-Ekoka language -[2018-02-13T08:37:40.838] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of innovative inventions and last: Max Lieberman -[2018-02-13T08:37:40.898] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:37:40.901] [INFO] cheese - inserting 1000 documents. first: Ers people and last: Wikipedia:WikiProject Spam/Local/globalhds.com -[2018-02-13T08:37:40.919] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:37:40.980] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:41.010] [INFO] cheese - inserting 1000 documents. first: Paraul Morii and last: An Audience With the Cope 2000 -[2018-02-13T08:37:41.042] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:37:41.087] [INFO] cheese - inserting 1000 documents. first: Saro Segrave Meteor and last: H-Function -[2018-02-13T08:37:41.149] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:37:41.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tim Deegan (meteorologist) and last: Template:GMORFC notice -[2018-02-13T08:37:41.225] [INFO] cheese - inserting 1000 documents. first: U.S. two-dollar bill and last: Bilgoraj County -[2018-02-13T08:37:41.247] [INFO] cheese - inserting 1000 documents. first: Router Solicitation/Router Advertisement and last: Overtornea SK -[2018-02-13T08:37:41.274] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:37:41.291] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T08:37:41.301] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:37:41.338] [INFO] cheese - inserting 1000 documents. first: Let's Go Get Stoned (R&B song) and last: William J. Whalen III -[2018-02-13T08:37:41.352] [INFO] cheese - inserting 1000 documents. first: List of power stations in Myanmar and last: Category:1911 in Arizona Territory -[2018-02-13T08:37:41.386] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T08:37:41.408] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T08:37:41.589] [INFO] cheese - inserting 1000 documents. first: 3-colouring and last: Terminal services -[2018-02-13T08:37:41.603] [INFO] cheese - inserting 1000 documents. first: Definition of free cultural works and last: Olivella baetica -[2018-02-13T08:37:41.618] [INFO] cheese - inserting 1000 documents. first: TheFacebook and last: Cascading Stylesheets -[2018-02-13T08:37:41.692] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:41.701] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:37:41.742] [INFO] cheese - inserting 1000 documents. first: Oxnered and last: Ityoṗṗya -[2018-02-13T08:37:41.755] [INFO] cheese - inserting 1000 documents. first: Young Lions and last: Bendorf -[2018-02-13T08:37:41.750] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:37:41.797] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:41.818] [INFO] cheese - inserting 1000 documents. first: Category:1863 establishments in Arizona Territory and last: Choreutis pelargodes -[2018-02-13T08:37:41.833] [INFO] cheese - inserting 1000 documents. first: Franz Heritsch and last: Gallant discography -[2018-02-13T08:37:41.843] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:37:41.891] [INFO] cheese - inserting 1000 documents. first: Kangaroo Creek Reservoir and last: What I Cannot Change -[2018-02-13T08:37:41.918] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:41.926] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:37:42.001] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:42.167] [INFO] cheese - inserting 1000 documents. first: IZBAN A.S. and last: UFC 149 -[2018-02-13T08:37:42.197] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T08:37:42.228] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/SyedNaqvi90 and last: Category:B-Class Australia, New Zealand and South Pacific military history articles -[2018-02-13T08:37:42.281] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:37:42.371] [INFO] cheese - inserting 1000 documents. first: Hanukkah (Khazar) and last: Film shoot -[2018-02-13T08:37:42.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/publicspeakinghelp.info and last: 2014 Liège–Bastogne–Liège -[2018-02-13T08:37:42.410] [INFO] cheese - inserting 1000 documents. first: Foreign eXchange Office and last: Emerson Hart -[2018-02-13T08:37:42.414] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:37:42.448] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:42.473] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:37:42.519] [INFO] cheese - inserting 1000 documents. first: Jofra Archer and last: 2015 EU LCS Summer Playoffs -[2018-02-13T08:37:42.536] [INFO] cheese - inserting 1000 documents. first: Lee Clark (footballer) and last: Geoffroy Saint-Hilaire -[2018-02-13T08:37:42.577] [INFO] cheese - inserting 1000 documents. first: Praxis Ethiopia and last: Elias Mudzuri (mayor of Harare) -[2018-02-13T08:37:42.607] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:37:42.669] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:37:42.668] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:37:42.724] [INFO] cheese - inserting 1000 documents. first: Category:Start-Class Australia, New Zealand and South Pacific military history articles and last: Zimbabwe Exiles Forum -[2018-02-13T08:37:42.779] [INFO] cheese - inserting 1000 documents. first: Professional Master's in Social Sciences and Humanities and last: Louis Francis Costello -[2018-02-13T08:37:42.781] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:37:42.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Africa articles by quality/53 and last: Yekaxana, Gobustan -[2018-02-13T08:37:42.867] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:37:42.943] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:37:42.958] [INFO] cheese - inserting 1000 documents. first: 2014 Bardiani–CSF season and last: Wikipedia:WikiProject Editor Retention/Editor of the Week/Hall of Fame/2014-04-26 -[2018-02-13T08:37:43.038] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:37:43.097] [INFO] cheese - inserting 1000 documents. first: 1975 Chadian coup and last: X-Ray Absorption Edge Spectroscopy -[2018-02-13T08:37:43.144] [INFO] cheese - inserting 1000 documents. first: Draft:Cincinnati Food + Wine Classic and last: Pedestredorcadion lianokladii -[2018-02-13T08:37:43.172] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:37:43.286] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:37:43.387] [INFO] cheese - inserting 1000 documents. first: Allegan (meteorite) and last: Three Silent Men -[2018-02-13T08:37:43.394] [INFO] cheese - inserting 1000 documents. first: Stephen Bassett and last: Category:Wikipedia featured topics Alaska class cruisers good content -[2018-02-13T08:37:43.413] [INFO] cheese - inserting 1000 documents. first: List of mammals of Bangladesh and last: Category:Start-Class Nirvana articles -[2018-02-13T08:37:43.488] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:37:43.502] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:37:43.569] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:37:43.617] [INFO] cheese - inserting 1000 documents. first: Geoffroy-Saint-Hilaire and last: Town privileges -[2018-02-13T08:37:43.622] [INFO] cheese - inserting 1000 documents. first: Bogotá Savannah Railway and last: Historical Memory Bill -[2018-02-13T08:37:43.676] [INFO] cheese - inserting 1000 documents. first: Mont Gelé (3518) and last: Ashia -[2018-02-13T08:37:43.708] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:37:43.734] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:37:43.764] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:37:43.805] [INFO] cheese - inserting 1000 documents. first: Dorian Blues and last: Blank and Jones -[2018-02-13T08:37:43.810] [INFO] cheese - inserting 1000 documents. first: Pedestredorcadion margheritae and last: Hendrick Shnoek -[2018-02-13T08:37:43.861] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:43.885] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:37:44.004] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Palm Beach County, Florida and last: Embassy of Russia in Havana -[2018-02-13T08:37:44.007] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics Alaska class cruisers featured content and last: Guizhentang Pharmaceutical Company -[2018-02-13T08:37:44.031] [INFO] cheese - inserting 1000 documents. first: Portal:Hawaii/Kokua and last: 1482 in art -[2018-02-13T08:37:44.054] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:37:44.061] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:37:44.111] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:37:44.188] [INFO] cheese - inserting 1000 documents. first: 2008 Australian Rally Championship and last: Mitsubishi Caterpillar Forklift America -[2018-02-13T08:37:44.238] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:44.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2014 April 21 and last: Book:North American Aviation -[2018-02-13T08:37:44.336] [INFO] cheese - inserting 1000 documents. first: Category:Presidents of the University of North Dakota and last: Category:People from Gaular -[2018-02-13T08:37:44.374] [INFO] cheese - inserting 1000 documents. first: Volodymyr-Volynsky and last: List of members of the Australian House of Representatives -[2018-02-13T08:37:44.390] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:37:44.397] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:37:44.418] [INFO] cheese - inserting 1000 documents. first: King of Croatia and last: Tony Hawk: American Sk8land -[2018-02-13T08:37:44.479] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:37:44.479] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:37:44.596] [INFO] cheese - inserting 1000 documents. first: Andrea Philip and last: Hyacinth Casteneda -[2018-02-13T08:37:44.619] [INFO] cheese - inserting 1000 documents. first: Book:Hoagy Carmichael and last: Law Institute of Lithuania -[2018-02-13T08:37:44.631] [INFO] cheese - inserting 1000 documents. first: New Year Honours 2000 and last: Emile Descombes -[2018-02-13T08:37:44.651] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:37:44.681] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:37:44.693] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:37:44.787] [INFO] cheese - inserting 1000 documents. first: Aviation in the Arctic and last: Under the City -[2018-02-13T08:37:44.818] [INFO] cheese - inserting 1000 documents. first: FC Gold Pride and last: Mason creek -[2018-02-13T08:37:44.951] [INFO] cheese - inserting 1000 documents. first: Category:Torae albums and last: The 1920 Royal Navy Mission to Enzeli -[2018-02-13T08:37:44.953] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:37:44.963] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:37:45.029] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:37:45.273] [INFO] cheese - inserting 1000 documents. first: Luna Leopold and last: Portal:Bible/Bible news -[2018-02-13T08:37:45.333] [INFO] cheese - inserting 1000 documents. first: Category:Districts of Vojvodina and last: Kailasam Balachander filmography -[2018-02-13T08:37:45.376] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:37:45.385] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:37:45.426] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom Parliament constituencies (1885–1918) and last: Wikipedia:Suspected sock puppets/86.152.81.41 -[2018-02-13T08:37:45.481] [INFO] cheese - inserting 1000 documents. first: IAFF Fallen Fire Fighters Memorial and last: File:HoodTreason.jpg -[2018-02-13T08:37:45.513] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:37:45.525] [INFO] cheese - inserting 1000 documents. first: Electrode (Pokemon) and last: Category:Source (journalism) -[2018-02-13T08:37:45.535] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:37:45.599] [INFO] cheese - inserting 1000 documents. first: Mason Creek and last: Sergei Ryzhikov -[2018-02-13T08:37:45.638] [INFO] cheese - inserting 1000 documents. first: A város alatt and last: Category:Pagham F.C. players -[2018-02-13T08:37:45.638] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:37:45.644] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of Kharkiv and last: Mesteacănu River (Strâmbu-Băiuţ) -[2018-02-13T08:37:45.665] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:45.723] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:37:45.736] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:37:45.837] [INFO] cheese - inserting 1000 documents. first: Freewheelers (disambiguation) and last: File:Ferry Corsten - WKND.jpg -[2018-02-13T08:37:45.915] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:46.002] [INFO] cheese - inserting 1000 documents. first: Aoun Al-Sharif Qasim and last: Achilles Alexandrakis -[2018-02-13T08:37:46.068] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/annickpress.com and last: Xenies, Greece -[2018-02-13T08:37:46.080] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:37:46.122] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:37:46.125] [INFO] cheese - inserting 1000 documents. first: Miereghiţa River and last: File:Missmatch poster.jpg -[2018-02-13T08:37:46.138] [INFO] cheese - inserting 1000 documents. first: Sergey Ryzhikov and last: NHS Health and Social Care Information Centre -[2018-02-13T08:37:46.183] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:37:46.198] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:46.257] [INFO] cheese - inserting 1000 documents. first: File:XEAM LaMandona1310 logo.png and last: West Texas Normal College -[2018-02-13T08:37:46.276] [INFO] cheese - inserting 1000 documents. first: Category:Manx politicians and last: Tav Falco -[2018-02-13T08:37:46.298] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:46.316] [INFO] cheese - inserting 1000 documents. first: FETCH! with Ruff Ruffman and last: Simon Nikolaus von Montjoye-Hirsingen -[2018-02-13T08:37:46.381] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:37:46.382] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:37:46.385] [INFO] cheese - inserting 1000 documents. first: Saint Motel and last: Apres Vous (2003 film) -[2018-02-13T08:37:46.571] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:37:46.649] [INFO] cheese - inserting 1000 documents. first: Bremgarten West railway station and last: A.K.A. (album) -[2018-02-13T08:37:46.728] [INFO] cheese - inserting 1000 documents. first: Ágios Ioánnis, Kavála and last: Long Range Development Plan (UCSC) -[2018-02-13T08:37:46.773] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:37:46.826] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:37:46.932] [INFO] cheese - inserting 1000 documents. first: Routing (EDA) and last: HR 1599 -[2018-02-13T08:37:46.969] [INFO] cheese - inserting 1000 documents. first: Oxycanus beltista and last: Commissioners of the great seal -[2018-02-13T08:37:46.971] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:37:47.002] [INFO] cheese - inserting 1000 documents. first: Waterford Tramore Railway and last: Lise Hilboldt -[2018-02-13T08:37:47.082] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Choosing Wisely/American Congress of Obstetricians and Gynecologists watchlist and last: File:目玉焼き.JPG -[2018-02-13T08:37:47.077] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:37:47.090] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:37:47.159] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:37:47.173] [INFO] cheese - inserting 1000 documents. first: File:Bell and gill at outfest 2008 .jpg and last: Udeghe people -[2018-02-13T08:37:47.222] [INFO] cheese - inserting 1000 documents. first: Powderhall Sprint and last: Kaohsiung Harbor Museum -[2018-02-13T08:37:47.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Alexander Kapranos and last: Leliwa coat of arms -[2018-02-13T08:37:47.259] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:37:47.337] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:37:47.370] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:37:47.480] [INFO] cheese - inserting 1000 documents. first: H. B. G. Austin and last: Schenley Bridge -[2018-02-13T08:37:47.545] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:37:47.549] [INFO] cheese - inserting 1000 documents. first: Henderson Lake (New York) and last: Glossary of spirituality-related terms -[2018-02-13T08:37:47.571] [INFO] cheese - inserting 1000 documents. first: Pandora (website) and last: Category:Royal Norwegian Order of Merit -[2018-02-13T08:37:47.624] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:37:47.664] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:37:47.688] [INFO] cheese - inserting 1000 documents. first: Chionoi and last: 1990 Tour de France, Prologue to Stage 10 -[2018-02-13T08:37:47.730] [INFO] cheese - inserting 1000 documents. first: Fruitdale (VTA) and last: Category:Cities and towns in Chelyabinsk Oblast -[2018-02-13T08:37:47.742] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:37:47.781] [INFO] cheese - inserting 1000 documents. first: Plocaederus bipartitus and last: People's Republic of Luhansk -[2018-02-13T08:37:47.789] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:47.814] [INFO] cheese - inserting 1000 documents. first: World Trade Center-Metro Manila and last: Yolandi van der Westhuizen -[2018-02-13T08:37:47.848] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:37:47.876] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:37:48.002] [INFO] cheese - inserting 1000 documents. first: Groupe Mixte d'Intervention and last: Wikipedia:Featured picture candidates/Calvin Johnson (football player) -[2018-02-13T08:37:48.006] [INFO] cheese - inserting 1000 documents. first: Little monocacy river and last: Wikipedia:Votes for deletion/Vigatec (Chile) -[2018-02-13T08:37:48.015] [INFO] cheese - inserting 1000 documents. first: Alexander Ebner and last: Raymond Ndong Sima -[2018-02-13T08:37:48.061] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:37:48.063] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:37:48.083] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:37:48.182] [INFO] cheese - inserting 1000 documents. first: Dr. Linda Baboolal and last: File:Football Manager 2009.jpg -[2018-02-13T08:37:48.213] [INFO] cheese - inserting 1000 documents. first: Timeline of New York City history and last: 1953 Mille Miglia -[2018-02-13T08:37:48.214] [INFO] cheese - inserting 1000 documents. first: Template:Dykn and last: Wikipedia:Sockpuppet investigations/Superkeegan9100/Archive -[2018-02-13T08:37:48.224] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:48.266] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:37:48.274] [INFO] cheese - inserting 1000 documents. first: Lemonescent and last: Stark and Fulton -[2018-02-13T08:37:48.276] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:48.293] [INFO] cheese - inserting 1000 documents. first: Cypress Hills–Grasslands and last: Template:ISO 3166 code Western Sahara -[2018-02-13T08:37:48.339] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:37:48.341] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:37:48.431] [INFO] cheese - inserting 1000 documents. first: Oxycanus goldfinchi and last: Category:Tourist attractions in Fredericton -[2018-02-13T08:37:48.520] [INFO] cheese - inserting 1000 documents. first: Lebanese navy and last: Hiltenfingen -[2018-02-13T08:37:48.585] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:37:48.688] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:37:48.748] [INFO] cheese - inserting 1000 documents. first: Steamtown Heritage Rail Centre and last: Granata sulcifera -[2018-02-13T08:37:48.830] [INFO] cheese - inserting 1000 documents. first: United Cooperative and last: Full Gallop (stage play) -[2018-02-13T08:37:48.831] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:37:48.846] [INFO] cheese - inserting 1000 documents. first: File:Ganga Bruta.jpg and last: Category:Fortifications in Australia -[2018-02-13T08:37:48.854] [INFO] cheese - inserting 1000 documents. first: U.S. Attorney for the Northern District of Georgia and last: KWR-37 -[2018-02-13T08:37:48.885] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:37:48.924] [INFO] cheese - inserting 1000 documents. first: Tourism in Georgia (country) and last: Australian aussies -[2018-02-13T08:37:48.933] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:37:48.943] [INFO] cheese - inserting 1000 documents. first: Family dog and last: Vinaroz -[2018-02-13T08:37:48.972] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:37:49.005] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:37:49.086] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:37:49.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/finance.flemingeurope.com and last: Upmaa -[2018-02-13T08:37:49.268] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:37:49.349] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code United Kingdom Casnewydd GB-CNW and last: Template:ISO 3166 code Azerbaijan Samaxi -[2018-02-13T08:37:49.374] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:49.470] [INFO] cheese - inserting 1000 documents. first: Graded linear space and last: Category:Alevism -[2018-02-13T08:37:49.477] [INFO] cheese - inserting 1000 documents. first: Category:Royal residences in the London Borough of Richmond upon Thames and last: Draft:Luz-Cristal Sanchez Glangchai -[2018-02-13T08:37:49.509] [INFO] cheese - inserting 1000 documents. first: Furdale, Saskatchewan and last: Fo Guang Shan Temple, Toronto -[2018-02-13T08:37:49.557] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:37:49.583] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:37:49.605] [INFO] cheese - inserting 1000 documents. first: 2008–09 Qatar Stars League and last: Batova river -[2018-02-13T08:37:49.607] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:37:49.622] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Azerbaijan Samux and last: Template:ISO 3166 code Czech Republic Stredoceský kraj -[2018-02-13T08:37:49.689] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:37:49.708] [INFO] cheese - inserting 1000 documents. first: Wakes Cove Provincial Park and last: Introduction to Arithmetic -[2018-02-13T08:37:49.717] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:49.739] [INFO] cheese - inserting 1000 documents. first: The Revenge of the Whore and last: College of Science and Technology (Bhutan) -[2018-02-13T08:37:49.820] [INFO] cheese - inserting 1000 documents. first: KWT-37 and last: Barayev -[2018-02-13T08:37:49.839] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:37:49.851] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:37:49.940] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:37:49.992] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Czech Republic Central Bohemia and last: Template:ISO 3166 code Italy Chieti -[2018-02-13T08:37:50.062] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T08:37:50.093] [INFO] cheese - inserting 1000 documents. first: Ngan Lung and last: Category:Historic districts in Indiana by county -[2018-02-13T08:37:50.142] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:37:50.163] [INFO] cheese - inserting 1000 documents. first: Alexei Vasilevsky (ice hockey) and last: Timeline of Luxembourg City history -[2018-02-13T08:37:50.239] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:37:50.304] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Italy Como and last: Template:ISO 3166 code Mexico Chihuahua -[2018-02-13T08:37:50.451] [INFO] cheese - inserting 1000 documents. first: LSIL-1022 and last: File:Analysisdata.jpg -[2018-02-13T08:37:50.458] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:37:50.600] [INFO] cheese - inserting 1000 documents. first: Oxycanus snelleni and last: Brown Ministry -[2018-02-13T08:37:50.609] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:37:50.613] [INFO] cheese - inserting 1000 documents. first: Batova reka and last: The Song of the Sybil -[2018-02-13T08:37:50.725] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:37:50.751] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Mexico Coahuila and last: Template:ISO 3166 code Russian Federation Smolenskaja Oblast -[2018-02-13T08:37:50.768] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:37:50.928] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:37:51.026] [INFO] cheese - inserting 1000 documents. first: Blue Ridge Museum and last: Västertorp -[2018-02-13T08:37:51.065] [INFO] cheese - inserting 1000 documents. first: David Nolan (swimmer) and last: File:Zoo Laka Taka.jpg -[2018-02-13T08:37:51.160] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:37:51.163] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T08:37:51.343] [INFO] cheese - inserting 1000 documents. first: She Lao and last: 2015 in public domain -[2018-02-13T08:37:51.495] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Russian Federation Stavropol'skiy kray and last: Template:ISO 3166 code Thailand Sakon Nakhon -[2018-02-13T08:37:51.637] [INFO] cheese - inserting 1000 documents. first: Category:Uttar Pradesh MLAs 1997-2002 and last: File:CANDU Direct Heat.jpg -[2018-02-13T08:37:51.717] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:37:51.727] [INFO] cheese - inserting 1000 documents. first: Danio nigrofasciatus and last: George A. Smith -[2018-02-13T08:37:51.749] [INFO] cheese - inserting 1000 documents. first: Dano-Swedish War (1657-1658) and last: The Shires Gateway -[2018-02-13T08:37:51.860] [INFO] cheese - inserting 1000 documents. first: Joffery Douglas Lupul and last: Transitus Mariae -[2018-02-13T08:37:51.864] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:37:51.889] [INFO] cheese - batch complete in: 1.65 secs -[2018-02-13T08:37:51.991] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:37:52.169] [INFO] cheese - batch complete in: 2.228 secs -[2018-02-13T08:37:52.337] [INFO] cheese - batch complete in: 1.728 secs -[2018-02-13T08:37:52.351] [INFO] cheese - inserting 1000 documents. first: Rhine Villa Football Club and last: Paeonia lemoinei -[2018-02-13T08:37:52.377] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Thailand Samut Prakan and last: Cold-core low -[2018-02-13T08:37:52.452] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:37:52.548] [INFO] cheese - inserting 1000 documents. first: Romanian-Canadians and last: Alimentation par Sol -[2018-02-13T08:37:52.644] [INFO] cheese - batch complete in: 1.484 secs -[2018-02-13T08:37:52.949] [INFO] cheese - inserting 1000 documents. first: Arabic grammarians and last: Mariette Laenen -[2018-02-13T08:37:53.177] [INFO] cheese - inserting 1000 documents. first: Portal:Jane Austen/Editors and last: Turbonilla acra -[2018-02-13T08:37:52.950] [INFO] cheese - batch complete in: 1.681 secs -[2018-02-13T08:37:53.294] [INFO] cheese - inserting 1000 documents. first: Category:1980 in Haiti and last: Hamdan vs Rumsfeld -[2018-02-13T08:37:53.750] [INFO] cheese - inserting 1000 documents. first: File:Baltimore oriole.ogg and last: File:Melvlog.png -[2018-02-13T08:37:53.770] [INFO] cheese - batch complete in: 1.878 secs -[2018-02-13T08:37:53.913] [INFO] cheese - inserting 1000 documents. first: Communist Party of Turkey 1920 and last: Gino Cassinis -[2018-02-13T08:37:53.937] [INFO] cheese - batch complete in: 1.946 secs -[2018-02-13T08:37:54.029] [INFO] cheese - inserting 1000 documents. first: Litton (disambiguation) and last: Martin-Baker Space Systems -[2018-02-13T08:37:54.056] [INFO] cheese - batch complete in: 2.192 secs -[2018-02-13T08:37:54.348] [INFO] cheese - batch complete in: 2.01 secs -[2018-02-13T08:37:54.414] [INFO] cheese - batch complete in: 1.962 secs -[2018-02-13T08:37:54.522] [INFO] cheese - batch complete in: 1.876 secs -[2018-02-13T08:37:54.720] [INFO] cheese - inserting 1000 documents. first: V. O. Key Jr. and last: Wikipedia:Articles for deletion/Video game proponent -[2018-02-13T08:37:55.869] [INFO] cheese - batch complete in: 3.7 secs -[2018-02-13T08:37:56.504] [INFO] cheese - inserting 1000 documents. first: Territory of Surinam and last: Aythos -[2018-02-13T08:37:56.639] [INFO] cheese - inserting 1000 documents. first: Abstained and last: Trans-activators -[2018-02-13T08:37:56.894] [INFO] cheese - batch complete in: 3.121 secs -[2018-02-13T08:37:56.963] [INFO] cheese - batch complete in: 3.026 secs -[2018-02-13T08:37:57.081] [INFO] cheese - inserting 1000 documents. first: Barrow Park Cenotaph and last: Goran Tosic -[2018-02-13T08:37:57.254] [INFO] cheese - batch complete in: 2.84 secs -[2018-02-13T08:37:57.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Article assessment/1980s comedy films/Twins (film) and last: File:Butler elementary arlington tx.jpg -[2018-02-13T08:37:57.459] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Common paradise kingfisher and last: Category:Simon Property Group templates -[2018-02-13T08:37:57.461] [INFO] cheese - inserting 1000 documents. first: File:Crime Story Cast.jpg and last: Small nucleolar RNA snoMBI-87 -[2018-02-13T08:37:57.577] [INFO] cheese - batch complete in: 3.229 secs -[2018-02-13T08:37:57.583] [INFO] cheese - inserting 1000 documents. first: Turbonilla aculeus and last: 1989 in the Philippines -[2018-02-13T08:37:57.867] [INFO] cheese - batch complete in: 4.87 secs -[2018-02-13T08:37:57.997] [INFO] cheese - batch complete in: 3.475 secs -[2018-02-13T08:37:58.220] [INFO] cheese - batch complete in: 4.164 secs -[2018-02-13T08:37:58.410] [INFO] cheese - inserting 1000 documents. first: Sweet Cuppin' Cakes Theme Song and last: Hachijōko-jima -[2018-02-13T08:37:58.522] [INFO] cheese - inserting 1000 documents. first: Category:Olympic table tennis players of Argentina and last: Hart Plain -[2018-02-13T08:37:58.635] [INFO] cheese - inserting 1000 documents. first: Category:Pre-Confederation Ontario and last: Barbara Shinn-Cunningham -[2018-02-13T08:37:58.707] [INFO] cheese - batch complete in: 1.744 secs -[2018-02-13T08:37:58.781] [INFO] cheese - inserting 1000 documents. first: 2010 Volkswagen Jetta TDI Cup and last: P. Marius Andersen -[2018-02-13T08:37:58.888] [INFO] cheese - batch complete in: 1.993 secs -[2018-02-13T08:37:58.901] [INFO] cheese - batch complete in: 3.031 secs -[2018-02-13T08:37:59.132] [INFO] cheese - batch complete in: 1.878 secs -[2018-02-13T08:37:59.506] [INFO] cheese - inserting 1000 documents. first: Peter Jacob and last: Call of Duty World League Season 1 -[2018-02-13T08:37:59.542] [INFO] cheese - inserting 1000 documents. first: Small nucleolar RNA snoR1 and last: Alfred Jones -[2018-02-13T08:37:59.594] [INFO] cheese - inserting 1000 documents. first: Glossary of computers and last: File:From Bessie to Brazil.jpg -[2018-02-13T08:37:59.600] [INFO] cheese - inserting 1000 documents. first: Hachijoko-jima and last: Parc floral et arboré de la Chènevière -[2018-02-13T08:37:59.661] [INFO] cheese - inserting 1000 documents. first: Template:Cell wall disruptive antibiotics and last: Mohammad ElBaradei -[2018-02-13T08:37:59.670] [INFO] cheese - batch complete in: 1.673 secs -[2018-02-13T08:37:59.765] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:37:59.808] [INFO] cheese - batch complete in: 1.588 secs -[2018-02-13T08:37:59.929] [INFO] cheese - batch complete in: 2.062 secs -[2018-02-13T08:37:59.995] [INFO] cheese - batch complete in: 2.417 secs -[2018-02-13T08:38:00.288] [INFO] cheese - inserting 1000 documents. first: St Peter's Woodlands and last: Category:List-Class Australia, New Zealand and South Pacific military history articles -[2018-02-13T08:38:00.479] [INFO] cheese - inserting 1000 documents. first: Template:AUTP and last: Edwin Tunis -[2018-02-13T08:38:00.478] [INFO] cheese - inserting 1000 documents. first: Category:PlayStation 2 peripherals and last: Ditfurt -[2018-02-13T08:38:00.496] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T08:38:00.782] [INFO] cheese - batch complete in: 1.894 secs -[2018-02-13T08:38:00.727] [INFO] cheese - batch complete in: 1.825 secs -[2018-02-13T08:38:00.905] [INFO] cheese - inserting 1000 documents. first: Call of Duty World League Season 2 and last: Template:User WeChat -[2018-02-13T08:38:01.043] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:38:01.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Psychology Senior Capstone (Greta Munger)/Timeline and last: Millar Burrows -[2018-02-13T08:38:01.139] [INFO] cheese - inserting 1000 documents. first: Willie Geist and last: U.S. Route 89 in Wyoming -[2018-02-13T08:38:01.267] [INFO] cheese - inserting 1000 documents. first: Peter Van Alstine and last: Straight knee strike -[2018-02-13T08:38:01.307] [INFO] cheese - inserting 1000 documents. first: 1988 West German motorcycle Grand Prix and last: Nye Ver, Nye Boysa -[2018-02-13T08:38:01.383] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:38:01.538] [INFO] cheese - batch complete in: 1.773 secs -[2018-02-13T08:38:01.583] [INFO] cheese - batch complete in: 1.775 secs -[2018-02-13T08:38:01.680] [INFO] cheese - batch complete in: 1.751 secs -[2018-02-13T08:38:01.823] [INFO] cheese - inserting 1000 documents. first: SDU Ireland and last: List of countries by natural disaster risk -[2018-02-13T08:38:02.011] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:38:02.021] [INFO] cheese - inserting 1000 documents. first: West Ham United F.C. season 2010-11 and last: El Cóndor, Jujuy -[2018-02-13T08:38:02.091] [INFO] cheese - inserting 1000 documents. first: 10 cm Bubble Chamber (CERN) and last: Pholidota (orchid) -[2018-02-13T08:38:02.218] [INFO] cheese - batch complete in: 1.721 secs -[2018-02-13T08:38:02.224] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:38:02.663] [INFO] cheese - inserting 1000 documents. first: Laura Dickinson incident and last: Wikipedia:WikiProject Spam/LinkReports/gold10.ru -[2018-02-13T08:38:02.670] [INFO] cheese - inserting 1000 documents. first: EADS SPACE and last: Wikipedia:Votes for deletion/Nejaa Halcyon -[2018-02-13T08:38:02.708] [INFO] cheese - inserting 1000 documents. first: Iritriya and last: Puebla American School Model United Nations -[2018-02-13T08:38:02.712] [INFO] cheese - inserting 1000 documents. first: Eremophila nivea and last: Zonbu -[2018-02-13T08:38:02.735] [INFO] cheese - inserting 1000 documents. first: Act on Petition and last: American Power Boat Association -[2018-02-13T08:38:02.897] [INFO] cheese - batch complete in: 1.314 secs -[2018-02-13T08:38:02.929] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:38:02.923] [INFO] cheese - batch complete in: 2.195 secs -[2018-02-13T08:38:02.972] [INFO] cheese - batch complete in: 1.589 secs -[2018-02-13T08:38:02.915] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T08:38:03.224] [INFO] cheese - inserting 1000 documents. first: VOLAGS and last: De la Fonte, Jeanne -[2018-02-13T08:38:03.293] [INFO] cheese - inserting 1000 documents. first: Mr. Right (Website) and last: Template:Did you know nominations/Louis Victor Plessier -[2018-02-13T08:38:03.387] [INFO] cheese - inserting 1000 documents. first: El Talar, Jujuy and last: File:Petersen Sports Complex (logo).png -[2018-02-13T08:38:03.439] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:38:03.487] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:38:03.673] [INFO] cheese - batch complete in: 1.455 secs -[2018-02-13T08:38:04.168] [INFO] cheese - inserting 1000 documents. first: Luis Duggan and last: Michael W. D'Arcy -[2018-02-13T08:38:04.213] [INFO] cheese - inserting 1000 documents. first: 1991–92 Japan Ice Hockey League season and last: Category:Musical groups from North Rhine-Westphalia -[2018-02-13T08:38:04.228] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australian biota articles by quality/6 and last: Category:List-Class College baseball articles -[2018-02-13T08:38:04.391] [INFO] cheese - batch complete in: 1.415 secs -[2018-02-13T08:38:04.467] [INFO] cheese - inserting 1000 documents. first: Adorée, Renée and last: Wikipedia:Today's articles for improvement/2014/21 -[2018-02-13T08:38:04.518] [INFO] cheese - batch complete in: 1.609 secs -[2018-02-13T08:38:04.628] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Plumtree School and last: Willie Cross -[2018-02-13T08:38:04.654] [INFO] cheese - batch complete in: 1.724 secs -[2018-02-13T08:38:04.705] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:38:04.779] [INFO] cheese - inserting 1000 documents. first: The Modern (band) and last: Brzeźno Człuchowskie railway station -[2018-02-13T08:38:04.820] [INFO] cheese - inserting 1000 documents. first: Eddie Hart (athlete) and last: Category:1460s births -[2018-02-13T08:38:04.837] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:38:04.993] [INFO] cheese - batch complete in: 2.078 secs -[2018-02-13T08:38:05.099] [INFO] cheese - inserting 1000 documents. first: Pomroy Township, Minnesota (disambiguation) and last: Portal:Speculative fiction/Possible futures/22 -[2018-02-13T08:38:05.156] [INFO] cheese - batch complete in: 2.233 secs -[2018-02-13T08:38:05.363] [INFO] cheese - batch complete in: 1.689 secs -[2018-02-13T08:38:05.692] [INFO] cheese - inserting 1000 documents. first: Jacob Tostrup and last: AICA ribonucleotide -[2018-02-13T08:38:05.745] [INFO] cheese - inserting 1000 documents. first: Ergon (Australia) and last: Wikipedia:WikiProject Spam/LinkReports/avoiceformen.org -[2018-02-13T08:38:05.805] [INFO] cheese - inserting 1000 documents. first: Interstate 80N (Oregon-Idaho-Utah) and last: Category:1878 establishments in Ottoman Syria -[2018-02-13T08:38:05.814] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:38:05.860] [INFO] cheese - inserting 1000 documents. first: Elasticity of complementarity and last: Halls (department store) -[2018-02-13T08:38:05.899] [INFO] cheese - batch complete in: 1.381 secs -[2018-02-13T08:38:06.017] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:38:06.085] [INFO] cheese - batch complete in: 1.431 secs -[2018-02-13T08:38:06.104] [INFO] cheese - inserting 1000 documents. first: Indiana Veterans’ Home and last: Category:Streets in Contra Costa County, California -[2018-02-13T08:38:06.269] [INFO] cheese - inserting 1000 documents. first: Henrique Arlindo Etges and last: Samuele Modica -[2018-02-13T08:38:06.271] [INFO] cheese - batch complete in: 1.434 secs -[2018-02-13T08:38:06.392] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:38:06.432] [INFO] cheese - inserting 1000 documents. first: Factor X deficiency, congenital and last: Ferrocarriles Nacionales de México -[2018-02-13T08:38:06.632] [INFO] cheese - batch complete in: 1.639 secs -[2018-02-13T08:38:06.843] [INFO] cheese - inserting 1000 documents. first: Category:1460s deaths and last: Warnia coat of arms -[2018-02-13T08:38:06.930] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/William K. Meade and last: Places of Interest in Pandacan -[2018-02-13T08:38:06.953] [INFO] cheese - inserting 1000 documents. first: Aminoimidazole carboxamide ribonucleotide and last: Gamal Abdel-Hameed -[2018-02-13T08:38:07.109] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:38:07.109] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:38:07.113] [INFO] cheese - batch complete in: 1.957 secs -[2018-02-13T08:38:07.126] [INFO] cheese - inserting 1000 documents. first: Lost Spirits and last: Filippo Cansacchi -[2018-02-13T08:38:07.175] [INFO] cheese - inserting 1000 documents. first: W. Ben Hunt Cabin and last: Category:Pfeiffer University -[2018-02-13T08:38:07.197] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom by-elections (1979 - 2010) and last: CHKG -[2018-02-13T08:38:07.247] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:38:07.292] [INFO] cheese - batch complete in: 1.393 secs -[2018-02-13T08:38:07.380] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:38:07.541] [INFO] cheese - inserting 1000 documents. first: Nineteen Stories and last: Here Not There -[2018-02-13T08:38:07.665] [INFO] cheese - inserting 1000 documents. first: Kesagatame and last: Tailwhip air -[2018-02-13T08:38:07.695] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:38:07.785] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:38:07.985] [INFO] cheese - inserting 1000 documents. first: Portal:Animation/Selected biography/29 and last: Northwestern Crow -[2018-02-13T08:38:08.037] [INFO] cheese - inserting 1000 documents. first: HNLMS Gouden Leeuw and last: Rendiconti di Matematica e delle sue Applicazioni -[2018-02-13T08:38:08.068] [INFO] cheese - inserting 1000 documents. first: HMS Nile and last: Pontoon Stand -[2018-02-13T08:38:08.108] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:38:08.112] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/New Jersey articles by quality/9 and last: Tictaalic -[2018-02-13T08:38:08.141] [INFO] cheese - inserting 1000 documents. first: Batrachiderpeton reticulatum and last: Adolescents and food marketing -[2018-02-13T08:38:08.186] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:38:08.230] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:38:08.239] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:38:08.279] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:38:08.443] [INFO] cheese - inserting 1000 documents. first: Howard 'Howdy' Quicksell and last: German destroyer Z43 -[2018-02-13T08:38:08.472] [INFO] cheese - inserting 1000 documents. first: Kiss My Grass: A Hillbilly Tribute to Kiss and last: FURB -[2018-02-13T08:38:08.552] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:38:08.615] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T08:38:08.731] [INFO] cheese - inserting 1000 documents. first: Suresh Angadi and last: Jebus (disambiguation) -[2018-02-13T08:38:08.840] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:38:08.938] [INFO] cheese - inserting 1000 documents. first: Tiktaalic and last: Via Montenapoleone (film) -[2018-02-13T08:38:08.970] [INFO] cheese - inserting 1000 documents. first: Category:Online retailers of the United Arab Emirates and last: Nadja Sellrup -[2018-02-13T08:38:09.046] [INFO] cheese - inserting 1000 documents. first: File:Cloudinary - Official logo.svg and last: Giampiero Iatteri -[2018-02-13T08:38:09.125] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:38:09.130] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:38:09.209] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:38:09.265] [INFO] cheese - inserting 1000 documents. first: Joseph Rorke and last: Anatoli Fedotov -[2018-02-13T08:38:09.371] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:38:09.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Northern California Solar Regatta and last: Template:Did you know nominations/Battle of Burton Bridge (1322) -[2018-02-13T08:38:09.533] [INFO] cheese - inserting 1000 documents. first: Polymelus and last: Polena -[2018-02-13T08:38:09.660] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:38:09.669] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:38:09.823] [INFO] cheese - inserting 1000 documents. first: Aalborg BK and last: Monno -[2018-02-13T08:38:09.833] [INFO] cheese - inserting 1000 documents. first: Yasukazu Ikari and last: List of aircraft (Ci) -[2018-02-13T08:38:09.877] [INFO] cheese - inserting 1000 documents. first: Category:Estonian biologists and last: Gawen Lawrie -[2018-02-13T08:38:09.923] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:38:09.992] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:38:10.083] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:38:10.184] [INFO] cheese - inserting 1000 documents. first: Magelungen and last: Ayrılık Zor -[2018-02-13T08:38:10.221] [INFO] cheese - inserting 1000 documents. first: The Word Magazine and last: Hørning municipality -[2018-02-13T08:38:10.242] [INFO] cheese - inserting 1000 documents. first: File:Trust a Try.ogg and last: Packard Campus for Audio-Visual Conservation -[2018-02-13T08:38:10.319] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:38:10.364] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:38:10.382] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:38:10.415] [INFO] cheese - inserting 1000 documents. first: Watut languages and last: Category:1530s establishments in Ireland -[2018-02-13T08:38:10.521] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:38:10.594] [INFO] cheese - inserting 1000 documents. first: Poleto and last: Aleyski Raion -[2018-02-13T08:38:10.678] [INFO] cheese - inserting 1000 documents. first: Marie Ann Battiste and last: 1959 Honduran Amateur League -[2018-02-13T08:38:10.709] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:38:10.828] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:38:10.995] [INFO] cheese - inserting 1000 documents. first: Master (judiciary) and last: Song Suk-woo -[2018-02-13T08:38:11.083] [INFO] cheese - inserting 1000 documents. first: Hvorslev municipality and last: Knockouts haircuts for men -[2018-02-13T08:38:11.103] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:38:11.110] [INFO] cheese - inserting 1000 documents. first: Category:Works by Simon Kinberg and last: Canarium grandiflorum -[2018-02-13T08:38:11.150] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:38:11.164] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:38:11.266] [INFO] cheese - inserting 1000 documents. first: James Stanhope, 7th Earl Stanhope and last: Sineus and Truvor -[2018-02-13T08:38:11.353] [INFO] cheese - inserting 1000 documents. first: Promise Not to Tell and last: Inosinate -[2018-02-13T08:38:11.390] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/cellphonesnationwide.com and last: Ariel Amaya -[2018-02-13T08:38:11.401] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T08:38:11.539] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:38:11.646] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:38:11.740] [INFO] cheese - inserting 1000 documents. first: Georgi Kirkov and last: Željko Perović -[2018-02-13T08:38:11.807] [INFO] cheese - inserting 1000 documents. first: Ban Du, Chiang Rai and last: ACyS -[2018-02-13T08:38:11.870] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:38:12.015] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:38:12.134] [INFO] cheese - inserting 1000 documents. first: Ghaffur and last: Pudukkottai State -[2018-02-13T08:38:12.257] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:38:12.267] [INFO] cheese - inserting 1000 documents. first: Teeth & Tongue and last: Wikipedia:Turkish -[2018-02-13T08:38:12.321] [INFO] cheese - inserting 1000 documents. first: Lashar and last: Thornton, New York -[2018-02-13T08:38:12.392] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:38:12.411] [INFO] cheese - inserting 1000 documents. first: Mirrodin (plane) and last: Eurasian Turtle-Dove -[2018-02-13T08:38:12.498] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:38:12.543] [INFO] cheese - inserting 1000 documents. first: File:1906 (Bambata album).jpg and last: Category:1680s in Portugal -[2018-02-13T08:38:12.603] [INFO] cheese - batch complete in: 1.5 secs -[2018-02-13T08:38:12.711] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:38:12.937] [INFO] cheese - inserting 1000 documents. first: Moissaye J. Olgin and last: Triaxomera griseolella -[2018-02-13T08:38:12.984] [INFO] cheese - inserting 1000 documents. first: Baron de Hirsch Cemetery, Halifax and last: Dassera -[2018-02-13T08:38:13.004] [INFO] cheese - inserting 1000 documents. first: St Christopher's Cathedral, Manuka and last: Category:Political office-holders in Iowa -[2018-02-13T08:38:13.048] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:38:13.127] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:38:13.218] [INFO] cheese - batch complete in: 1.817 secs -[2018-02-13T08:38:13.282] [INFO] cheese - inserting 1000 documents. first: Afghan Civil War (disambiguation) and last: File:JSFulton1979.tif -[2018-02-13T08:38:13.301] [INFO] cheese - inserting 1000 documents. first: Counting tube and last: Beverly Hills Cop 4 -[2018-02-13T08:38:13.334] [INFO] cheese - inserting 1000 documents. first: J. C. Massee and last: Pak Se Ri -[2018-02-13T08:38:13.372] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:38:13.478] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:38:13.496] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T08:38:13.594] [INFO] cheese - inserting 1000 documents. first: White rain lily and last: Shen Tan Di Renjie -[2018-02-13T08:38:13.621] [INFO] cheese - inserting 1000 documents. first: Gostivari and last: Styl Kar -[2018-02-13T08:38:13.771] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:38:13.813] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:38:14.176] [INFO] cheese - inserting 1000 documents. first: Waretini and last: Lucien Dirksz -[2018-02-13T08:38:14.214] [INFO] cheese - inserting 1000 documents. first: Language A Key Mechanism of Control and last: Lockheed AT-18 -[2018-02-13T08:38:14.231] [INFO] cheese - inserting 1000 documents. first: In the Name of Metal (disambiguation) and last: Erik–Michael Estrada -[2018-02-13T08:38:14.224] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:38:14.349] [INFO] cheese - batch complete in: 1.301 secs -[2018-02-13T08:38:14.460] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:38:14.571] [INFO] cheese - inserting 1000 documents. first: Category:Synagogues in Bosnia and Herzegovina and last: Little Sark -[2018-02-13T08:38:14.643] [INFO] cheese - inserting 1000 documents. first: Visions of Jesus Christ and last: Morane-Saulnier AF -[2018-02-13T08:38:14.725] [INFO] cheese - inserting 1000 documents. first: Eishō (Muromachi period) and last: Nottingham Girls' High School -[2018-02-13T08:38:14.738] [INFO] cheese - batch complete in: 1.26 secs -[2018-02-13T08:38:14.789] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T08:38:14.950] [INFO] cheese - batch complete in: 1.732 secs -[2018-02-13T08:38:15.195] [INFO] cheese - inserting 1000 documents. first: Geoff Chilvers and last: Latin Grammy Award for Best Urban Performance -[2018-02-13T08:38:15.219] [INFO] cheese - inserting 1000 documents. first: File:England-Saint-Michaels-Mount-1900-1.jpg and last: Wikipedia:3rrn -[2018-02-13T08:38:15.301] [INFO] cheese - inserting 1000 documents. first: Onnum and last: Category:My Dying Bride live albums -[2018-02-13T08:38:15.309] [INFO] cheese - inserting 1000 documents. first: Vasily Kalika and last: Lawrence's Thrush -[2018-02-13T08:38:15.328] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:38:15.460] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:38:15.513] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:38:15.545] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:38:15.595] [INFO] cheese - inserting 1000 documents. first: Trail Smoke Eaters and last: EBaumsWorld -[2018-02-13T08:38:15.805] [INFO] cheese - inserting 1000 documents. first: Fritz Spengler and last: List of diplomatic missions of Guyana -[2018-02-13T08:38:15.829] [INFO] cheese - batch complete in: 2.016 secs -[2018-02-13T08:38:15.839] [INFO] cheese - inserting 1000 documents. first: Liberty and Justice for... and last: Wikipedia:MCD -[2018-02-13T08:38:15.889] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T08:38:15.985] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:38:16.172] [INFO] cheese - inserting 1000 documents. first: Art clay silver and last: South Vacherie -[2018-02-13T08:38:16.272] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Merge articles and last: Pauline Beale and Arthur Fowler -[2018-02-13T08:38:16.308] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 NBA Midwest standings and last: Voices in My Head (Dot Rotten album) -[2018-02-13T08:38:16.334] [INFO] cheese - inserting 1000 documents. first: Category:Mystery characters and last: Wikipedia:WikiProject Wikipack Africa Content/Wikipedia:NPOV -[2018-02-13T08:38:16.351] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:38:16.396] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:38:16.438] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:38:16.552] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:38:16.602] [INFO] cheese - inserting 1000 documents. first: Category:My Dying Bride compilation albums and last: Guantanamo detainee 058 -[2018-02-13T08:38:16.713] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T08:38:16.798] [INFO] cheese - inserting 1000 documents. first: TEA Laser and last: We Gon' Ride -[2018-02-13T08:38:16.825] [INFO] cheese - inserting 1000 documents. first: File:Uptown Anthem.jpg and last: 2008–09 ISU Speed Skating World Cup – World Cup 2 -[2018-02-13T08:38:16.828] [INFO] cheese - inserting 1000 documents. first: Category:1993 in horse racing and last: Cmuwest -[2018-02-13T08:38:16.977] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:38:17.056] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:38:17.120] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T08:38:17.394] [INFO] cheese - inserting 1000 documents. first: Mohamed Albuflasa and last: Küçükçekmece, İstanbul -[2018-02-13T08:38:17.446] [INFO] cheese - inserting 1000 documents. first: 1962 TCU Horned Frogs football team and last: Philadelphia sound -[2018-02-13T08:38:17.586] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:38:17.591] [INFO] cheese - inserting 1000 documents. first: Patricia Tallman and last: Gen (Street Fighter) -[2018-02-13T08:38:17.601] [INFO] cheese - inserting 1000 documents. first: Extended BASIC-86 and last: Ballarat Regional Soccer Facility -[2018-02-13T08:38:17.600] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:38:17.788] [INFO] cheese - batch complete in: 1.437 secs -[2018-02-13T08:38:17.837] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T08:38:17.862] [INFO] cheese - inserting 1000 documents. first: Drops of Jupiter (song) and last: Category:Jordanian people of Iranian descent -[2018-02-13T08:38:17.934] [INFO] cheese - inserting 1000 documents. first: Category:Pilgrimage routes and last: Pir Double Shah -[2018-02-13T08:38:18.055] [INFO] cheese - inserting 1000 documents. first: Kana Cone and last: Category:British Merchant Navy -[2018-02-13T08:38:18.121] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:38:18.171] [INFO] cheese - inserting 1000 documents. first: Leo III (emperor) and last: D1GP -[2018-02-13T08:38:18.183] [INFO] cheese - batch complete in: 1.468 secs -[2018-02-13T08:38:18.218] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:38:18.336] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:38:18.475] [INFO] cheese - inserting 1000 documents. first: Sweet Shells and last: Vuelta a los Pirineos -[2018-02-13T08:38:18.589] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:38:18.708] [INFO] cheese - inserting 1000 documents. first: Côme-Séraphin Cherrier and last: Playatmcd.com -[2018-02-13T08:38:18.805] [INFO] cheese - inserting 1000 documents. first: TEKDOS and last: I Am the Last of All the Field That Fell: A Channel -[2018-02-13T08:38:18.853] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:38:18.983] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:38:19.019] [INFO] cheese - inserting 1000 documents. first: Category:Administrative okrugs of Moscow and last: Kristine Roepstorff -[2018-02-13T08:38:19.169] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:19.257] [INFO] cheese - inserting 1000 documents. first: Philippe de l'Espinoy and last: 1953 New York Yankees season -[2018-02-13T08:38:19.272] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OLYMOSNAT and last: Irving Kriesberg -[2018-02-13T08:38:19.329] [INFO] cheese - inserting 1000 documents. first: Digimon Adventure and last: Medium of instruction -[2018-02-13T08:38:19.345] [INFO] cheese - inserting 1000 documents. first: Mona Lisa Overdrive (album) and last: Bucket of Blood -[2018-02-13T08:38:19.337] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:38:19.409] [INFO] cheese - inserting 1000 documents. first: Susan Ryan Peters and last: Mainland U.S. -[2018-02-13T08:38:19.419] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T08:38:19.469] [INFO] cheese - batch complete in: 1.681 secs -[2018-02-13T08:38:19.491] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:38:19.502] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:38:19.663] [INFO] cheese - inserting 1000 documents. first: Willie Steenson and last: GUU (disambiguation) -[2018-02-13T08:38:19.742] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:38:19.758] [INFO] cheese - inserting 1000 documents. first: Joachim Heinz Ehrig and last: Rolf von Goth -[2018-02-13T08:38:19.858] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:38:19.936] [INFO] cheese - inserting 1000 documents. first: 2007 UCI Track Cycling World Championships – Women's Team Sprint and last: Category:Wildfires in North Carolina -[2018-02-13T08:38:20.065] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:38:20.170] [INFO] cheese - inserting 1000 documents. first: List of members of the Swiss National Council and last: Wendelin Endrédy -[2018-02-13T08:38:20.269] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:38:20.307] [INFO] cheese - inserting 1000 documents. first: Département Protection Sécurité and last: The Frackles -[2018-02-13T08:38:20.410] [INFO] cheese - inserting 1000 documents. first: Achitophel (disambiguation) and last: Samuel Adams (composer) -[2018-02-13T08:38:20.414] [INFO] cheese - inserting 1000 documents. first: Category:1868 ballet premieres and last: Portal:Karachi/Karachi Topics -[2018-02-13T08:38:20.545] [INFO] cheese - inserting 1000 documents. first: New South Wales Xplorer and last: Nevada class battleships -[2018-02-13T08:38:20.554] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:38:20.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2014 May 14 and last: File:Have a Nice Day, Volume 21.jpg -[2018-02-13T08:38:20.610] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:38:20.681] [INFO] cheese - inserting 1000 documents. first: Olt county and last: Basilicas -[2018-02-13T08:38:20.688] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:38:20.727] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:38:20.856] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:38:20.965] [INFO] cheese - batch complete in: 1.496 secs -[2018-02-13T08:38:21.179] [INFO] cheese - inserting 1000 documents. first: Jerome Corsi and last: Syrid -[2018-02-13T08:38:21.300] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:38:21.319] [INFO] cheese - inserting 1000 documents. first: Luis Guzman (disambiguation) and last: Ida Proper -[2018-02-13T08:38:21.353] [INFO] cheese - inserting 1000 documents. first: Malappuram Collectorate and last: SimCity (remake) -[2018-02-13T08:38:21.435] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:38:21.434] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:38:21.480] [INFO] cheese - inserting 1000 documents. first: Zhu Fatai and last: Portal:American football/Quotes/23 -[2018-02-13T08:38:21.617] [INFO] cheese - inserting 1000 documents. first: Mr. Probz and last: Category:1941 establishments in Burma -[2018-02-13T08:38:21.619] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:38:21.709] [INFO] cheese - inserting 1000 documents. first: 1925 in baseball and last: Mount St. Mary's (disambiguation) -[2018-02-13T08:38:21.721] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:38:21.770] [INFO] cheese - inserting 1000 documents. first: F-68 and last: Folgerite -[2018-02-13T08:38:21.833] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:38:21.870] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:38:21.949] [INFO] cheese - inserting 1000 documents. first: Category:1474 births and last: Cléo de Merode -[2018-02-13T08:38:21.989] [INFO] cheese - inserting 1000 documents. first: Lafayette Daily Advertiser and last: Khet Yan Nawa -[2018-02-13T08:38:22.038] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:38:22.094] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:38:22.125] [INFO] cheese - inserting 1000 documents. first: Category:1960s establishments in Liechtenstein and last: Angano... Angano... nouvelles de Madagascar -[2018-02-13T08:38:22.142] [INFO] cheese - inserting 1000 documents. first: Ooyala (film) and last: Chaetosphaeridiales -[2018-02-13T08:38:22.252] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:38:22.250] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:38:22.491] [INFO] cheese - inserting 1000 documents. first: Khyber (Hunza) and last: Hardware cloth -[2018-02-13T08:38:22.554] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Regional and national music articles and last: Category:Uruguayan academics -[2018-02-13T08:38:22.561] [INFO] cheese - inserting 1000 documents. first: Category:Ski areas and resorts in Norway and last: First nation -[2018-02-13T08:38:22.582] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:38:22.691] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:38:22.697] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:38:22.824] [INFO] cheese - inserting 1000 documents. first: File:Standards Vol. 1.jpg and last: And I approved this message -[2018-02-13T08:38:22.923] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:38:22.988] [INFO] cheese - inserting 1000 documents. first: Category:Spouses of Illinois politicians and last: Goff, Bruce -[2018-02-13T08:38:22.988] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Farm to Market Road 742 and last: Statute Law Revision (Miscellaneous Provisions) Act 1993 -[2018-02-13T08:38:23.023] [INFO] cheese - inserting 1000 documents. first: Category:Taxa named by Pierre Viette and last: Sand Fire -[2018-02-13T08:38:23.057] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:38:23.061] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:38:23.073] [INFO] cheese - inserting 1000 documents. first: Jules-Elie Delaunay and last: File:Young Adam movie.jpg -[2018-02-13T08:38:23.117] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:38:23.195] [INFO] cheese - inserting 1000 documents. first: Category:Nike (rocket family) and last: Wangman Lowangcha -[2018-02-13T08:38:23.203] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:38:23.305] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:38:23.386] [INFO] cheese - inserting 1000 documents. first: Evinohório, Greece and last: Merri Rose -[2018-02-13T08:38:23.402] [INFO] cheese - inserting 1000 documents. first: File:Starship Command.png and last: File:Ibniasdaq-2.jpg -[2018-02-13T08:38:23.444] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:38:23.484] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:38:23.636] [INFO] cheese - inserting 1000 documents. first: Unca and last: Judo at the 2008 Summer Paralympics – Women's 57 kg -[2018-02-13T08:38:23.713] [INFO] cheese - inserting 1000 documents. first: Ellen Nyman and last: 2004 Women's Pan-American Volleyball Cup Squads -[2018-02-13T08:38:23.756] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:38:23.815] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:38:23.880] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/healthca.info and last: John and Elizabeth McMurn Early House -[2018-02-13T08:38:24.092] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:38:24.121] [INFO] cheese - inserting 1000 documents. first: Moshling and last: File:Lincolnshire Independents logo.jpg -[2018-02-13T08:38:24.174] [INFO] cheese - inserting 1000 documents. first: Template:Help me working and last: Sklené, Žďár nad Sázavou -[2018-02-13T08:38:24.257] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:38:24.311] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:38:24.322] [INFO] cheese - inserting 1000 documents. first: SKP and last: File:The Donnas - Spend the Night.jpg -[2018-02-13T08:38:24.413] [INFO] cheese - inserting 1000 documents. first: CHEF-FM and last: Wikipedia:Arbitration Committee Elections December 2007/Candidate statements/Example/Questions for the candidate -[2018-02-13T08:38:24.315] [INFO] cheese - inserting 1000 documents. first: Heated floor and last: Succession to the Crown Act 1603 -[2018-02-13T08:38:24.534] [INFO] cheese - inserting 1000 documents. first: Liverpool City Council election, 1999 and last: Wikipedia:Categories for deletion/Log/2006 March 11 -[2018-02-13T08:38:24.518] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:38:24.570] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:38:24.581] [INFO] cheese - batch complete in: 1.378 secs -[2018-02-13T08:38:24.681] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T08:38:24.750] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Latymer Upper School and last: Agraulis glycera -[2018-02-13T08:38:24.839] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:38:24.842] [INFO] cheese - inserting 1000 documents. first: Colegio Estilo and last: Category:2014–15 Colonial Athletic Association women's basketball season -[2018-02-13T08:38:24.938] [INFO] cheese - inserting 1000 documents. first: Bertram Bisgood and last: Brown moray eel -[2018-02-13T08:38:24.943] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:38:25.010] [INFO] cheese - inserting 1000 documents. first: Template:Simon & Garfunkel singles and last: Segregation Academy -[2018-02-13T08:38:25.074] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:38:25.133] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:38:25.166] [INFO] cheese - inserting 1000 documents. first: Gheert Cremer and last: Ivan Yarygin -[2018-02-13T08:38:25.279] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:38:25.321] [INFO] cheese - inserting 1000 documents. first: Source route bridging and last: Jean Michel Larqué -[2018-02-13T08:38:25.391] [INFO] cheese - inserting 1000 documents. first: Guernsey at the 2006 Commonwealth Games and last: Sri Lankan Muslim -[2018-02-13T08:38:25.409] [INFO] cheese - inserting 1000 documents. first: Atanu Roy and last: Suillellus frostii -[2018-02-13T08:38:25.450] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:38:25.481] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:38:25.482] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:38:25.746] [INFO] cheese - inserting 1000 documents. first: Cliff 'Em All and last: River Gunboat -[2018-02-13T08:38:25.775] [INFO] cheese - inserting 1000 documents. first: Alfred David McAlpine and last: Dono y 2 -[2018-02-13T08:38:25.821] [INFO] cheese - inserting 1000 documents. first: TV5 (TV Network) and last: Sir Robert Napier, 2nd Baronet -[2018-02-13T08:38:25.838] [INFO] cheese - inserting 1000 documents. first: Cholotis isotacta and last: File:Tower of Love Today.jpg -[2018-02-13T08:38:25.868] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:38:25.876] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:38:25.917] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:38:25.974] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:38:26.006] [INFO] cheese - inserting 1000 documents. first: Ljubljana Matica Alpine Club and last: Kevin Souter -[2018-02-13T08:38:26.114] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:38:26.266] [INFO] cheese - inserting 1000 documents. first: Tubiporus frostii and last: Category:1991 in Cambodia -[2018-02-13T08:38:26.277] [INFO] cheese - inserting 1000 documents. first: File:Pinatasparty.gif and last: Catch a nigger by the toe -[2018-02-13T08:38:26.311] [INFO] cheese - inserting 1000 documents. first: Ministry of Petroleum and last: 2004–05 Vyshcha Liha -[2018-02-13T08:38:26.399] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:38:26.469] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:38:26.499] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:38:26.542] [INFO] cheese - inserting 1000 documents. first: 2016 Advantage Cars Prague Open – Women's Singles and last: 2016–17 Rugby Europe International Championships -[2018-02-13T08:38:26.608] [INFO] cheese - inserting 1000 documents. first: Wheelchair racing at the 1984 Summer Olympics and last: Reşid Pasha -[2018-02-13T08:38:26.608] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:38:26.667] [INFO] cheese - inserting 1000 documents. first: Wolverhampton Wanderers F.C. season 1958–59 and last: St. Louis Board of Police Commissioners -[2018-02-13T08:38:26.710] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:38:26.757] [INFO] cheese - inserting 1000 documents. first: First Presbyterian Church (Sag Harbor, New York) and last: SAI KZ VII -[2018-02-13T08:38:26.903] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:26.936] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:38:27.052] [INFO] cheese - inserting 1000 documents. first: Chicago Film Critics Association and last: Model building code -[2018-02-13T08:38:27.144] [INFO] cheese - inserting 1000 documents. first: Balloon Array for RBSP Relativistic Electron Losses and last: Iku language -[2018-02-13T08:38:27.221] [INFO] cheese - batch complete in: 1.345 secs -[2018-02-13T08:38:27.319] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:38:27.412] [INFO] cheese - inserting 1000 documents. first: Audenarde and last: File:ElectrolinerCNSRRVSEng.jpg -[2018-02-13T08:38:27.464] [INFO] cheese - inserting 1000 documents. first: Reshid Pasha and last: Television Registrada -[2018-02-13T08:38:27.477] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:38:27.487] [INFO] cheese - inserting 1000 documents. first: Category:Music schools in Africa and last: Accession (DS9 episode) -[2018-02-13T08:38:27.536] [INFO] cheese - inserting 1000 documents. first: Category:2005 Christmas albums and last: Canoeing at the 2010 South American Games - Women's K-1 1000 metres -[2018-02-13T08:38:27.575] [INFO] cheese - inserting 1000 documents. first: Sackville Relay Station and last: Vasco Road (California) -[2018-02-13T08:38:27.600] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:38:27.655] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:38:27.705] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:38:27.721] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:38:27.766] [INFO] cheese - inserting 1000 documents. first: London Buses route H19 and last: Mike Burgoyne -[2018-02-13T08:38:27.838] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:38:27.966] [INFO] cheese - inserting 1000 documents. first: Iku-Gora-Ankwa language and last: Tschongrad County -[2018-02-13T08:38:28.006] [INFO] cheese - inserting 1000 documents. first: Canoeing at the 2010 South American Games - Women's K-1 200 metres and last: IHS Global Insight -[2018-02-13T08:38:28.027] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:38:28.044] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T08:38:28.184] [INFO] cheese - inserting 1000 documents. first: Template:Country data Federation of Nigeria (Commonwealth realm) and last: Akshar Deri -[2018-02-13T08:38:28.190] [INFO] cheese - inserting 1000 documents. first: Muscle contraction and last: Wikipedia:Articles for deletion/Spanglew -[2018-02-13T08:38:28.229] [INFO] cheese - inserting 1000 documents. first: Septarian nodule and last: Template:OrgSynth -[2018-02-13T08:38:28.377] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:38:28.398] [INFO] cheese - inserting 1000 documents. first: What the World Needs Now: Stan Getz Plays Burt Bacharach and Hal David and last: Category:Argeș basin -[2018-02-13T08:38:28.409] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:38:28.425] [INFO] cheese - inserting 1000 documents. first: King Arthur Carrousel and last: Wikipedia:Articles for deletion/RandumNess -[2018-02-13T08:38:28.482] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T08:38:28.552] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:38:28.579] [INFO] cheese - inserting 1000 documents. first: Olepa and last: File:Love's Unfolding Dream.jpg -[2018-02-13T08:38:28.596] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:38:28.757] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:38:28.839] [INFO] cheese - inserting 1000 documents. first: Mini Hatch and last: File:GMAPINOYTV2012LOGO.jpg -[2018-02-13T08:38:28.851] [INFO] cheese - inserting 1000 documents. first: 1989 New South Wales Open - Women's Singles and last: Lü Wang -[2018-02-13T08:38:28.949] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:38:28.959] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:38:29.100] [INFO] cheese - inserting 1000 documents. first: Tapasya (1976 film) and last: Abhyankar-moh theorem -[2018-02-13T08:38:29.120] [INFO] cheese - inserting 1000 documents. first: Nandasmo F.C. and last: John Taverner (clergyman) -[2018-02-13T08:38:29.145] [INFO] cheese - inserting 1000 documents. first: John Ivory Talbot and last: Jeon Mi-Gyeong -[2018-02-13T08:38:29.159] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:38:29.222] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:38:29.273] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:38:29.361] [INFO] cheese - inserting 1000 documents. first: Boyardee and last: Cadet Second Lieutenant -[2018-02-13T08:38:29.441] [INFO] cheese - inserting 1000 documents. first: La Mesilla and last: Toshiko Ueda -[2018-02-13T08:38:29.498] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:38:29.550] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:38:29.602] [INFO] cheese - inserting 1000 documents. first: Bakke and last: Palestine (region) -[2018-02-13T08:38:29.623] [INFO] cheese - inserting 1000 documents. first: Category:English football clubs 1928–29 season and last: Category:Video albums by genre -[2018-02-13T08:38:29.689] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/besttattoos.webs.com and last: Template:Togneme Userbox -[2018-02-13T08:38:29.744] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:38:29.760] [INFO] cheese - inserting 1000 documents. first: Holy Family High School (Port Allen) and last: Eleventeen (album) -[2018-02-13T08:38:29.793] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:38:29.825] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:38:29.882] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:38:29.944] [INFO] cheese - inserting 1000 documents. first: CAF Super Cup 2017 and last: José María Arroyo -[2018-02-13T08:38:30.114] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:38:30.171] [INFO] cheese - inserting 1000 documents. first: Ectenessa decorata and last: Oscar (footballer born 1991) -[2018-02-13T08:38:30.300] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:38:30.387] [INFO] cheese - inserting 1000 documents. first: Mooney 205 and last: Chapter nine institutions -[2018-02-13T08:38:30.406] [INFO] cheese - inserting 1000 documents. first: Template:Governors of Mississippi and last: Category:British television personalities -[2018-02-13T08:38:30.504] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:38:30.527] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:38:30.559] [INFO] cheese - inserting 1000 documents. first: Template:Most Imposing Togneme Userbox and last: Nepal and Tibet Philatelic Study Circle -[2018-02-13T08:38:30.561] [INFO] cheese - inserting 1000 documents. first: Konjska Reka and last: Glacier Cream -[2018-02-13T08:38:30.638] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic dioceses in the Republic of the Congo and last: Empoli Football Club -[2018-02-13T08:38:30.651] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:38:30.656] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:38:30.706] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:38:30.752] [INFO] cheese - inserting 1000 documents. first: Category:1970s disasters and last: Patrick Ambron -[2018-02-13T08:38:30.846] [INFO] cheese - inserting 1000 documents. first: Panda Security and last: Weasel (disambiguation) -[2018-02-13T08:38:30.856] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:38:30.953] [INFO] cheese - inserting 1000 documents. first: Craig Reid (footballer born 1985) and last: Haven't Got Time for the Pain -[2018-02-13T08:38:30.955] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:38:31.060] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:38:31.126] [INFO] cheese - inserting 1000 documents. first: NY-109 and last: Cow plop -[2018-02-13T08:38:31.132] [INFO] cheese - inserting 1000 documents. first: Big crash and last: File:Prince and Princess Bibesco Wedding, 1919.jpg -[2018-02-13T08:38:31.173] [INFO] cheese - inserting 1000 documents. first: Münchener Bach-Orchester and last: Jelly balls -[2018-02-13T08:38:31.178] [INFO] cheese - inserting 1000 documents. first: Chapter 9 institutions and last: Category:Manitoba Junior Hockey League seasons -[2018-02-13T08:38:31.179] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:38:31.225] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:38:31.261] [INFO] cheese - inserting 1000 documents. first: File:Stockport County Warm Up vs Cambridge.jpg and last: Knud Morten Lange -[2018-02-13T08:38:31.280] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:38:31.289] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:38:31.346] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:38:31.405] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Shotton Surface Mine and last: Wesam Malik -[2018-02-13T08:38:31.465] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:38:31.620] [INFO] cheese - inserting 1000 documents. first: Edward Popham (d. 1772) and last: Chamdo Monastery -[2018-02-13T08:38:31.744] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:38:31.847] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Algeria articles and last: Oligancistrus -[2018-02-13T08:38:31.930] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:38:31.971] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese states and last: File:Amiga Defender of the Crown raid.png -[2018-02-13T08:38:32.015] [INFO] cheese - inserting 1000 documents. first: Owerri Imo Airport and last: Matarova -[2018-02-13T08:38:32.115] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Philadelphia Phillies/Recognized content and last: Kamikaze Taxi -[2018-02-13T08:38:32.117] [INFO] cheese - inserting 1000 documents. first: Doheny Eye Institute and last: File:Confused Feelings.jpg -[2018-02-13T08:38:32.162] [INFO] cheese - inserting 1000 documents. first: NOCTURNAL OPERA and last: American Stores Company -[2018-02-13T08:38:32.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:American Eagle/euNO and last: Chamaemeles -[2018-02-13T08:38:32.146] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:38:32.185] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:38:32.283] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:38:32.320] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:38:32.346] [INFO] cheese - inserting 1000 documents. first: Stefan Witkowski and last: Eritrichium nanum -[2018-02-13T08:38:32.356] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:38:32.390] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:38:32.450] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:38:32.689] [INFO] cheese - inserting 1000 documents. first: Template:Georgia Southern Eagles men's basketball coach navbox and last: A Time to Stand (DS9 episode) -[2018-02-13T08:38:32.771] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:38:32.996] [INFO] cheese - inserting 1000 documents. first: Ra Graharipu and last: Category:Finnish female swimmers -[2018-02-13T08:38:33.060] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:38:33.083] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/niz/munlist/lukoyanovsky and last: Southern California Lacrosse League -[2018-02-13T08:38:33.109] [INFO] cheese - inserting 1000 documents. first: Jim Mair (musician) and last: Swiss referendum, 1884 -[2018-02-13T08:38:33.127] [INFO] cheese - inserting 1000 documents. first: Dzhafar-Beyli and last: L. M. Alcott -[2018-02-13T08:38:33.129] [INFO] cheese - inserting 1000 documents. first: Pittsfield Railroad Station and last: File:WALR logo.gif -[2018-02-13T08:38:33.134] [INFO] cheese - inserting 1000 documents. first: NetDevil and last: Müllerebe -[2018-02-13T08:38:33.148] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:38:33.218] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:38:33.234] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:38:33.252] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:38:33.326] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:38:33.559] [INFO] cheese - inserting 1000 documents. first: Jacob ben David Yom Tov and last: Football in Egypt -[2018-02-13T08:38:33.633] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:38:33.652] [INFO] cheese - inserting 1000 documents. first: Category:1993 establishments in Antarctica and last: 2016-17 FIS Freestyle Skiing World Cup -[2018-02-13T08:38:33.732] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:38:33.831] [INFO] cheese - inserting 1000 documents. first: Rennerod and last: Lloyd Anoaʻi -[2018-02-13T08:38:33.851] [INFO] cheese - inserting 1000 documents. first: M P W Bolton and last: File:Punjab medical college.png -[2018-02-13T08:38:33.873] [INFO] cheese - inserting 1000 documents. first: Pettorano and last: Maciej Kozłowski -[2018-02-13T08:38:33.912] [INFO] cheese - inserting 1000 documents. first: Pigott Building and last: Proof by abstract nonsense -[2018-02-13T08:38:33.943] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:38:33.984] [INFO] cheese - batch complete in: 1.594 secs -[2018-02-13T08:38:34.046] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:38:34.054] [INFO] cheese - inserting 1000 documents. first: Carl Günther and last: Erratic boulder -[2018-02-13T08:38:34.056] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:38:34.238] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:38:34.479] [INFO] cheese - inserting 1000 documents. first: Template:2016-17 Belgian First Division A Europa League play-offs Group B table and last: Whalebone (album) -[2018-02-13T08:38:34.556] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:38:34.585] [INFO] cheese - inserting 1000 documents. first: Azal Espanhol and last: 1954 British Grand Prix -[2018-02-13T08:38:34.724] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:38:34.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Bratislava/archive1 and last: Jedediah K. Smith -[2018-02-13T08:38:34.825] [INFO] cheese - inserting 1000 documents. first: The British Chess Championship and last: Template:BBCDWnew/sandbox -[2018-02-13T08:38:34.844] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:38:34.858] [INFO] cheese - inserting 1000 documents. first: Category:1917 in Japanese sport and last: Gagik Siravyan -[2018-02-13T08:38:34.942] [INFO] cheese - inserting 1000 documents. first: Category:Lewisia and last: King's-mantle -[2018-02-13T08:38:34.944] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:38:34.959] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:38:34.961] [INFO] cheese - inserting 1000 documents. first: NAH and last: Lappi, Pakistan -[2018-02-13T08:38:35.011] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:38:35.054] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:38:35.178] [INFO] cheese - inserting 1000 documents. first: Kensington and Tacony RR and last: South Australian state election, 1997 -[2018-02-13T08:38:35.226] [INFO] cheese - inserting 1000 documents. first: Category:Anti-Zionism in Belgium and last: Gallbladder attacks -[2018-02-13T08:38:35.270] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:38:35.331] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:38:35.398] [INFO] cheese - inserting 1000 documents. first: Category:Education in Azad Kashmir and last: Undine Boat Club -[2018-02-13T08:38:35.419] [INFO] cheese - inserting 1000 documents. first: Rich Waltz and last: Category:Suspected Wikipedia sockpuppets of Ellielancaster -[2018-02-13T08:38:35.488] [INFO] cheese - inserting 1000 documents. first: Template:Costa Rica squad 2002 CONCACAF Gold Cup and last: Brown Booby -[2018-02-13T08:38:35.479] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:38:35.513] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:38:35.597] [INFO] cheese - inserting 1000 documents. first: Category:Earls of Northesk and last: Paranerita sithnides -[2018-02-13T08:38:35.612] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:38:35.727] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:38:35.744] [INFO] cheese - inserting 1000 documents. first: Aron Wilford and last: NINA -[2018-02-13T08:38:36.081] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:38:36.143] [INFO] cheese - inserting 1000 documents. first: Pilar, Buenos Aires and last: Ethan Brown -[2018-02-13T08:38:36.190] [INFO] cheese - inserting 1000 documents. first: Here Comes The Kraken and last: F8 (classification) -[2018-02-13T08:38:36.248] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:38:36.359] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:38:36.432] [INFO] cheese - inserting 1000 documents. first: Senatskaya Tower and last: Bill Henderson (UK politician) -[2018-02-13T08:38:36.459] [INFO] cheese - inserting 1000 documents. first: Hatunqucha (Junín) and last: 1998-99 Stockport County F.C. season -[2018-02-13T08:38:36.539] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:38:36.545] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:38:36.605] [INFO] cheese - inserting 1000 documents. first: Bratac and last: Wikipedia:Articles for deletion/Air banding -[2018-02-13T08:38:36.608] [INFO] cheese - inserting 1000 documents. first: Love from Paris and last: Justine (Amnesia: The Dark Descent) -[2018-02-13T08:38:36.703] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:38:36.712] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:38:36.895] [INFO] cheese - inserting 1000 documents. first: Similar awlking and last: Category:Fenerbahçe footballers -[2018-02-13T08:38:36.997] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:38:37.002] [INFO] cheese - inserting 1000 documents. first: File:DATEM Systems International.jpg and last: File:Noafteryousir.jpg -[2018-02-13T08:38:37.021] [INFO] cheese - inserting 1000 documents. first: Laser guided bombing and last: Otto Divosta -[2018-02-13T08:38:37.065] [INFO] cheese - inserting 1000 documents. first: Peter Lillback and last: MPT-76 -[2018-02-13T08:38:37.103] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:38:37.123] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:38:37.143] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:38:37.338] [INFO] cheese - inserting 1000 documents. first: File:John Melville Kelly's oil on board painting 'Lei Makers on the Greensward', c. 1930.jpg and last: Ex-Muslims -[2018-02-13T08:38:37.412] [INFO] cheese - inserting 1000 documents. first: William Allen Trimble and last: Histiobranchus bruuni -[2018-02-13T08:38:37.460] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:38:37.545] [INFO] cheese - inserting 1000 documents. first: List of east west streets of Toronto and last: Wikipedia:Miscellany for deletion/Wikipedia:Penguin Path 306 -[2018-02-13T08:38:37.546] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:38:37.657] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:38:37.806] [INFO] cheese - inserting 1000 documents. first: Draft:Matthew Derr and last: Zimbabwe People First -[2018-02-13T08:38:37.817] [INFO] cheese - inserting 1000 documents. first: File:Southern United FC logo.svg and last: Labdia orthoschema -[2018-02-13T08:38:37.860] [INFO] cheese - inserting 1000 documents. first: SMK Lembah Subang and last: Wikipedia:Articles for deletion/Terry Smith (news anchor) -[2018-02-13T08:38:37.869] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:38:37.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeffrey Kofman and last: Alex de Rakoff -[2018-02-13T08:38:37.895] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:38:38.006] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:38:38.047] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:38:38.234] [INFO] cheese - inserting 1000 documents. first: Pavels Kolcovs and last: Photographing -[2018-02-13T08:38:38.311] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:38:38.376] [INFO] cheese - inserting 1000 documents. first: Miss Colorado USA and last: Inferior vesical artery -[2018-02-13T08:38:38.401] [INFO] cheese - inserting 1000 documents. first: Labdia orthritis and last: Stantondale F.C. -[2018-02-13T08:38:38.422] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/logsoku.com and last: YMCA UST -[2018-02-13T08:38:38.494] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:38:38.513] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:38:38.637] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:38:38.640] [INFO] cheese - inserting 1000 documents. first: List of schools in the Roman Catholic Archdiocese of Washington and last: Category:Sex education in Europe -[2018-02-13T08:38:38.655] [INFO] cheese - inserting 1000 documents. first: Alexis de Redé and last: Gordon, Illinois -[2018-02-13T08:38:38.777] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:38:38.826] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:38:38.849] [INFO] cheese - inserting 1000 documents. first: File:Jonathan Banal playing for NCAA's Mapua Institute of Technology.jpg and last: Cloud-Chief -[2018-02-13T08:38:38.984] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:38:39.043] [INFO] cheese - inserting 1000 documents. first: 1954 German Grand Prix and last: Institutions of the European Union -[2018-02-13T08:38:39.178] [INFO] cheese - inserting 1000 documents. first: Zhuang Jiajie and last: NC 134 -[2018-02-13T08:38:39.237] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:38:39.244] [INFO] cheese - inserting 1000 documents. first: Olympique Gymnaste Club Nice Côte d'Azur and last: Category:Bahamian films -[2018-02-13T08:38:39.252] [INFO] cheese - batch complete in: 4.527 secs -[2018-02-13T08:38:39.336] [INFO] cheese - inserting 1000 documents. first: Gary D. Cohn and last: Category:1966 in Antigua and Barbuda -[2018-02-13T08:38:39.346] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:38:39.473] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:38:39.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Excitint2015 and last: Category:Geothermal energy in Africa -[2018-02-13T08:38:39.516] [INFO] cheese - inserting 1000 documents. first: Slash, Virginia and last: 2010 Manaus plane crash -[2018-02-13T08:38:39.592] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:38:39.606] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:38:39.642] [INFO] cheese - inserting 1000 documents. first: Karamu High School and last: Shortthorn Fangtooth -[2018-02-13T08:38:39.642] [INFO] cheese - inserting 1000 documents. first: Judy Higginbotham and last: CCDM J17305+5218C -[2018-02-13T08:38:39.735] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:38:39.735] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:38:39.813] [INFO] cheese - inserting 1000 documents. first: Travis Scott (rapper) and last: File:Luneta philippine flag half mast.jpg -[2018-02-13T08:38:39.895] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:38:40.034] [INFO] cheese - inserting 1000 documents. first: Kumanovo, city of the culture and last: Jean-François Coux -[2018-02-13T08:38:40.039] [INFO] cheese - inserting 1000 documents. first: CoCo and last: Dmitriy Vavilov -[2018-02-13T08:38:40.052] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable software release/LimeSurvey and last: Wikipedia:WikiProject Spam/LinkReports/hoga-pr.de -[2018-02-13T08:38:40.146] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:38:40.150] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:38:40.273] [INFO] cheese - inserting 1000 documents. first: Category:Geothermal energy in North America and last: Francesco Minorello -[2018-02-13T08:38:40.266] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:38:40.389] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:38:40.494] [INFO] cheese - inserting 1000 documents. first: BD+52 2065C and last: Ulrich Folkers -[2018-02-13T08:38:40.558] [INFO] cheese - inserting 1000 documents. first: V (Maroon 5 album) and last: Abdurahman Mohamud Turyare -[2018-02-13T08:38:40.575] [INFO] cheese - inserting 1000 documents. first: Kochi Refineries and last: Bunbuku chagama -[2018-02-13T08:38:40.631] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:38:40.646] [INFO] cheese - inserting 1000 documents. first: 2002 European Grand Prix and last: Saint-Joseph (AOC) -[2018-02-13T08:38:40.671] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:38:40.690] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:38:40.763] [INFO] cheese - inserting 1000 documents. first: Dmitry Vavilov and last: Vysoky, Murmansk Oblast -[2018-02-13T08:38:40.856] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:38:40.912] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:38:40.984] [INFO] cheese - inserting 1000 documents. first: Sand, Punjab and last: Category:Use Indian English from August 2016 -[2018-02-13T08:38:40.988] [INFO] cheese - inserting 1000 documents. first: Southern Florida and last: William de Briouze -[2018-02-13T08:38:40.994] [INFO] cheese - inserting 1000 documents. first: Category:Women in Israel and last: Wikipedia:WikiProject Spam/LinkReports/pensamentos.org -[2018-02-13T08:38:41.058] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:38:41.065] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:38:41.096] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:38:41.266] [INFO] cheese - inserting 1000 documents. first: Ethanoligenens harbinense and last: El-Keib Cabinet -[2018-02-13T08:38:41.307] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:38:41.320] [INFO] cheese - inserting 1000 documents. first: Clutton Brock and last: Stand guidance system -[2018-02-13T08:38:41.370] [INFO] cheese - inserting 1000 documents. first: The Real Thing (Kylie Minogue song) and last: Sherab Palden Beru -[2018-02-13T08:38:41.388] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:38:41.476] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:38:41.488] [INFO] cheese - inserting 1000 documents. first: Cape Mohican oil spill and last: Khalden Training Camp -[2018-02-13T08:38:41.579] [INFO] cheese - inserting 1000 documents. first: Kalyan Jewellers and last: Category:2009 Regions Morgan Keegan Championships and the Cellular South Cup -[2018-02-13T08:38:41.582] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:38:41.595] [INFO] cheese - inserting 1000 documents. first: Behind the Altar and last: Royal Commission into Juvenile Detention in the Northern Territory -[2018-02-13T08:38:41.617] [INFO] cheese - inserting 1000 documents. first: Robert Zmelík and last: Hit by Pitch -[2018-02-13T08:38:41.667] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:38:41.672] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:38:41.677] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:38:41.753] [INFO] cheese - inserting 1000 documents. first: UEFA Euro U21 and last: Rgb(255, 255, 0) -[2018-02-13T08:38:41.770] [INFO] cheese - inserting 1000 documents. first: Frangelico and last: Churchill River (Hudson Bay) -[2018-02-13T08:38:41.802] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:38:41.887] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:38:42.029] [INFO] cheese - inserting 1000 documents. first: Antics 3D and last: File:Strong Bad.png -[2018-02-13T08:38:42.048] [INFO] cheese - inserting 1000 documents. first: Mike Adams and last: Ma’aleh Adumim -[2018-02-13T08:38:42.091] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:38:42.112] [INFO] cheese - inserting 1000 documents. first: 2010 French Open – Men's Singles and last: File:Alan Country Boy.jpg -[2018-02-13T08:38:42.167] [INFO] cheese - inserting 1000 documents. first: Belasica Petrich and last: BBC Radio 1's Dance Anthems -[2018-02-13T08:38:42.337] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:38:42.363] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:38:42.375] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:38:42.427] [INFO] cheese - inserting 1000 documents. first: James Rewcastle and last: Wikipedia:WikiProject Spam/LinkReports/doowansgardensupply.com -[2018-02-13T08:38:42.439] [INFO] cheese - inserting 1000 documents. first: Sturlung Era and last: Ritual combat -[2018-02-13T08:38:42.587] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:38:42.604] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:38:42.606] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Simon Fuller and last: National Petroleum Reserve in Alaska -[2018-02-13T08:38:42.778] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:38:42.918] [INFO] cheese - inserting 1000 documents. first: File:NotNecessarilyAcoustic.jpg and last: Ward Inlet -[2018-02-13T08:38:43.014] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:38:43.084] [INFO] cheese - inserting 1000 documents. first: Samuel T. Herring and last: Gough, Thomas -[2018-02-13T08:38:43.086] [INFO] cheese - inserting 1000 documents. first: Time-memory trade-off and last: KFFC -[2018-02-13T08:38:43.121] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:38:43.139] [INFO] cheese - inserting 1000 documents. first: Michael T. "Nuf Ced" McGreevy and last: A.C. Hardy -[2018-02-13T08:38:43.188] [INFO] cheese - inserting 1000 documents. first: CA1 and last: Piney Flats -[2018-02-13T08:38:43.195] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:38:43.234] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/doowansgardensupply.com and last: Matthias Woerndle -[2018-02-13T08:38:43.239] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:38:43.310] [INFO] cheese - inserting 1000 documents. first: Ponderosa Campground and last: Lockheed U-2R -[2018-02-13T08:38:43.336] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:38:43.353] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:38:43.425] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:38:43.663] [INFO] cheese - inserting 1000 documents. first: Campher and last: Hunter T 72 -[2018-02-13T08:38:43.742] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:38:43.811] [INFO] cheese - inserting 1000 documents. first: Gould, Thomas and last: Irfaan -[2018-02-13T08:38:43.825] [INFO] cheese - inserting 1000 documents. first: Spring Hill, Pike County, Alabama and last: File:Petrus Christus - Portrait of a Young Woman - Google Art Project.jpg -[2018-02-13T08:38:43.828] [INFO] cheese - inserting 1000 documents. first: Pier 57 (Seattle) and last: File:Bay high crest panama city.jpg -[2018-02-13T08:38:43.866] [INFO] cheese - inserting 1000 documents. first: (6033) 1984 SQ4 and last: Category:Golden Arena award -[2018-02-13T08:38:43.888] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:38:43.897] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:38:43.985] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:38:44.080] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:38:44.146] [INFO] cheese - inserting 1000 documents. first: Hattie Johnson and last: Alessandro Mendini -[2018-02-13T08:38:44.255] [INFO] cheese - inserting 1000 documents. first: You're Only Lonely and last: Samuel Balto -[2018-02-13T08:38:44.255] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:38:44.341] [INFO] cheese - inserting 1000 documents. first: USS Merganser (AM-135) and last: Sam Hobbs -[2018-02-13T08:38:44.362] [INFO] cheese - inserting 1000 documents. first: List of railway stations in Pakistan and last: Wikipedia:Articles for deletion/Tony Grier -[2018-02-13T08:38:44.407] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:38:44.481] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:38:44.468] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:38:44.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dbaj and last: Malanshof, Gauteng -[2018-02-13T08:38:44.715] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:38:44.719] [INFO] cheese - inserting 1000 documents. first: Pyroderces anthinopa and last: Category:Male actors from Edmonton -[2018-02-13T08:38:44.786] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:38:44.890] [INFO] cheese - inserting 1000 documents. first: AMC-15 (satellite) and last: Jan Panacek -[2018-02-13T08:38:45.016] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:38:45.147] [INFO] cheese - inserting 1000 documents. first: No, No, Nanoosh and last: Star trek tos -[2018-02-13T08:38:45.147] [INFO] cheese - inserting 1000 documents. first: Laides and last: Breathable liquid -[2018-02-13T08:38:45.156] [INFO] cheese - inserting 1000 documents. first: Joe Tait and last: Character Map (Windows) -[2018-02-13T08:38:45.209] [INFO] cheese - inserting 1000 documents. first: Category:Croatian film awards and last: South Central Rain -[2018-02-13T08:38:45.232] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:38:45.245] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:38:45.288] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:38:45.377] [INFO] cheese - inserting 1000 documents. first: List of U.S. Highways in Washington, D.C. and last: Dr. Dharamvir Dhillon -[2018-02-13T08:38:45.392] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T08:38:45.474] [INFO] cheese - inserting 1000 documents. first: Maroeladal, Gauteng and last: Category:Populated places in East Kazakhstan Region -[2018-02-13T08:38:45.546] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:38:45.590] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:38:45.608] [INFO] cheese - inserting 1000 documents. first: Black Bindweed and last: Norma McCormick -[2018-02-13T08:38:45.698] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:38:45.771] [INFO] cheese - inserting 1000 documents. first: Neohebestola vitticollis and last: Jinshi Township -[2018-02-13T08:38:45.849] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:38:45.909] [INFO] cheese - inserting 1000 documents. first: Çəmənli and last: The Witcher: Enhanced Edition -[2018-02-13T08:38:45.997] [INFO] cheese - inserting 1000 documents. first: BU(n) and last: Black-throated trogon -[2018-02-13T08:38:45.999] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:38:46.008] [INFO] cheese - inserting 1000 documents. first: Agricultural Development Denmark Asia and last: Henry B. Sayler -[2018-02-13T08:38:46.012] [INFO] cheese - inserting 1000 documents. first: A Sorrow Beyond Dreams. A Life Story and last: Chhal (TV series) -[2018-02-13T08:38:46.053] [INFO] cheese - inserting 1000 documents. first: Providing material support to the al-Qaeda terrorist network and last: Halcyon River Diaries -[2018-02-13T08:38:46.067] [INFO] cheese - inserting 1000 documents. first: Port Talbot Steel works and last: Wikipedia:Articles for deletion/Speed alliance -[2018-02-13T08:38:46.091] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:38:46.095] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:38:46.102] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:38:46.162] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:38:46.186] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:38:46.297] [INFO] cheese - inserting 1000 documents. first: Deweese (surname) and last: Holly-leaf grevillea -[2018-02-13T08:38:46.341] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:38:46.461] [INFO] cheese - inserting 1000 documents. first: Stoel Rives and last: Project West Wind -[2018-02-13T08:38:46.678] [INFO] cheese - inserting 1000 documents. first: Vancouver 86ers and last: File:AbaBayefsky.png -[2018-02-13T08:38:46.737] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:38:46.865] [INFO] cheese - inserting 1000 documents. first: File:Etna (Disgaea).png and last: Anti-bacterial medicine -[2018-02-13T08:38:46.868] [INFO] cheese - inserting 1000 documents. first: Quill Corp. v. North Dakota and last: Ros Hill -[2018-02-13T08:38:46.904] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:38:46.921] [INFO] cheese - inserting 1000 documents. first: State Route 141 (California) and last: File:Multicolorbands.jpg -[2018-02-13T08:38:46.924] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Madhya Pradesh articles of Mid-importance and last: Sebastiano Girelli -[2018-02-13T08:38:46.958] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:38:47.032] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:38:47.056] [INFO] cheese - inserting 1000 documents. first: Hidayat Ullah and last: Vincent (given name) -[2018-02-13T08:38:47.133] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:38:47.133] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:38:47.166] [INFO] cheese - inserting 1000 documents. first: Me 'N Rock 'N Roll Are Here To Stay and last: Antonio Ramon Horta -[2018-02-13T08:38:47.181] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:38:47.294] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:38:47.637] [INFO] cheese - inserting 1000 documents. first: Category:Butler Bulldogs football navigational boxes and last: Africa Movie Academy Award for Best Actor in a Supporting Role -[2018-02-13T08:38:47.677] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:38:47.725] [INFO] cheese - inserting 1000 documents. first: Tini Stoessel and last: File:World Billiards Logo.jpg -[2018-02-13T08:38:47.782] [INFO] cheese - inserting 1000 documents. first: Charles G. Bennett and last: Diamond Consulting -[2018-02-13T08:38:47.783] [INFO] cheese - inserting 1000 documents. first: Olympic Aviation Flight 545 and last: James Tunstall -[2018-02-13T08:38:47.793] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:38:47.852] [INFO] cheese - inserting 1000 documents. first: Huang Lee and last: WHKT (AM) -[2018-02-13T08:38:47.862] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:38:47.875] [INFO] cheese - inserting 1000 documents. first: Helobiae and last: Na Sgiathan -[2018-02-13T08:38:47.880] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:38:47.910] [INFO] cheese - inserting 1000 documents. first: Category:Recipients of the Order of Merit of the Federal Republic of Germany and last: Evgeniy Yerastov -[2018-02-13T08:38:47.941] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:38:47.978] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:38:48.018] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:38:48.145] [INFO] cheese - inserting 1000 documents. first: Corbett-Terwilliger-Lair Hil and last: Template:Did you know nominations/Yasss Bish -[2018-02-13T08:38:48.170] [INFO] cheese - inserting 1000 documents. first: Lost (television drama) and last: Dune: House Atreides -[2018-02-13T08:38:48.192] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:38:48.319] [INFO] cheese - batch complete in: 1.415 secs -[2018-02-13T08:38:48.402] [INFO] cheese - inserting 1000 documents. first: Grange City, Washington and last: Category:Three-volume novels -[2018-02-13T08:38:48.418] [INFO] cheese - inserting 1000 documents. first: Dineor language and last: First International Tramways and Light Railways Exhibition -[2018-02-13T08:38:48.468] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:38:48.489] [INFO] cheese - inserting 1000 documents. first: Francis of Girolama and last: Template:Catholic Schools in Laredo -[2018-02-13T08:38:48.546] [INFO] cheese - inserting 1000 documents. first: Fadi Hammadeh and last: WNUW-FM -[2018-02-13T08:38:48.568] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:38:48.600] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:38:48.694] [INFO] cheese - inserting 1000 documents. first: Neris river and last: Pink floyd live -[2018-02-13T08:38:48.670] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:38:48.793] [INFO] cheese - inserting 1000 documents. first: Anthropological Survey of India and last: Gagince -[2018-02-13T08:38:48.839] [INFO] cheese - inserting 1000 documents. first: Omri Elmakyes and last: Paratheta astigmatica -[2018-02-13T08:38:48.943] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:38:48.980] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:38:49.022] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:38:49.205] [INFO] cheese - inserting 1000 documents. first: 7-deaza-2’-C-methyladenosine and last: Adesmus divus -[2018-02-13T08:38:49.259] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:38:49.334] [INFO] cheese - inserting 1000 documents. first: La Trinitaria, Mexico and last: Generalization in ethics -[2018-02-13T08:38:49.417] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:38:49.490] [INFO] cheese - inserting 1000 documents. first: State of Origin 2005 and last: National Weather Service Forecast Office -[2018-02-13T08:38:49.539] [INFO] cheese - inserting 1000 documents. first: Xenopoulo and last: Wikipedia:Articles for deletion/Top Hat Willy -[2018-02-13T08:38:49.600] [INFO] cheese - inserting 1000 documents. first: Kshitij School (Nepal) and last: List of reflexes (alphabetical) -[2018-02-13T08:38:49.613] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:38:49.624] [INFO] cheese - inserting 1000 documents. first: Golema Njiva and last: Cerithidea anticipata -[2018-02-13T08:38:49.688] [INFO] cheese - inserting 1000 documents. first: File:Russiancolours.jpg and last: GM Tech IV engine -[2018-02-13T08:38:49.702] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:38:49.732] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:38:49.771] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:38:49.873] [INFO] cheese - batch complete in: 1.554 secs -[2018-02-13T08:38:49.882] [INFO] cheese - inserting 1000 documents. first: Smush and last: Tatiana of Rome -[2018-02-13T08:38:49.969] [INFO] cheese - inserting 1000 documents. first: Category:Handball in Gabon and last: 2003–04 England Hockey League season -[2018-02-13T08:38:50.031] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:38:50.016] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:38:50.190] [INFO] cheese - inserting 1000 documents. first: John McLean (footballer) and last: Elena D'Angri -[2018-02-13T08:38:50.297] [INFO] cheese - inserting 1000 documents. first: Category:Predecessors of the Great Northern Railway (U.S.) and last: Category:Railway accidents in Switzerland -[2018-02-13T08:38:50.311] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:38:50.412] [INFO] cheese - inserting 1000 documents. first: Moses T. Stevens and last: Wayamba university -[2018-02-13T08:38:50.428] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:38:50.496] [INFO] cheese - inserting 1000 documents. first: Evans & Novak and last: Guam League 2006 -[2018-02-13T08:38:50.542] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:38:50.642] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:38:50.807] [INFO] cheese - inserting 1000 documents. first: Category:Sport in the Cayman Islands and last: John Breckinridge -[2018-02-13T08:38:50.905] [INFO] cheese - inserting 1000 documents. first: Apeba barauna and last: Kamalpur, Bhulath -[2018-02-13T08:38:50.912] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:38:50.968] [INFO] cheese - inserting 1000 documents. first: Sydney Simpson and last: St Peter, Cheapside -[2018-02-13T08:38:50.977] [INFO] cheese - inserting 1000 documents. first: Paradoxurus montanus and last: Category:2014 in Martinique -[2018-02-13T08:38:51.003] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:38:51.081] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:38:51.084] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T08:38:51.093] [INFO] cheese - inserting 1000 documents. first: Instructions of Shuruppak and last: Ruzbe -[2018-02-13T08:38:51.146] [INFO] cheese - inserting 1000 documents. first: Category:Saudi Arabian football biography stubs and last: Inverness burghs constituency -[2018-02-13T08:38:51.201] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:38:51.202] [INFO] cheese - inserting 1000 documents. first: Lower Silesian-Mark railway and last: Kosikhinsky -[2018-02-13T08:38:51.241] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:38:51.335] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:38:51.520] [INFO] cheese - inserting 1000 documents. first: 1887 Bloody Sunday and last: Category:Women's sport in Peru -[2018-02-13T08:38:51.557] [INFO] cheese - inserting 1000 documents. first: HC Spartak Moscow and last: Ottawa/Rockcliffe Water Aerodrome -[2018-02-13T08:38:51.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ryn Goblin and last: Arthur Farnsworth -[2018-02-13T08:38:51.595] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:38:51.628] [INFO] cheese - inserting 1000 documents. first: Spitfire (Porter Robinson album) and last: Category:Kenyan expatriates in Saudi Arabia -[2018-02-13T08:38:51.673] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:38:51.727] [INFO] cheese - inserting 1000 documents. first: KP Pietersen and last: Paratio language -[2018-02-13T08:38:51.761] [INFO] cheese - inserting 1000 documents. first: Education in Odisha and last: 1948 Washington Senators season -[2018-02-13T08:38:51.771] [INFO] cheese - inserting 1000 documents. first: Rozbe and last: FM 97.5 -[2018-02-13T08:38:51.776] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:38:51.764] [INFO] cheese - batch complete in: 1.891 secs -[2018-02-13T08:38:51.950] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:38:51.959] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:38:51.976] [INFO] cheese - inserting 1000 documents. first: Kosikhinskiy and last: Juan Anacleto Araneta -[2018-02-13T08:38:51.977] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:38:52.084] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:38:52.372] [INFO] cheese - inserting 1000 documents. first: FM 97.7 and last: The Playhouse to Be Let -[2018-02-13T08:38:52.417] [INFO] cheese - inserting 1000 documents. first: Category:Opinion polling for elections in the Czech Republic and last: Bilochun -[2018-02-13T08:38:52.442] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:38:52.513] [INFO] cheese - inserting 1000 documents. first: CTR7 and last: K.W. Lee -[2018-02-13T08:38:52.515] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:38:52.562] [INFO] cheese - inserting 1000 documents. first: Paratió language and last: Madan Mohan Jiu Temple -[2018-02-13T08:38:52.640] [INFO] cheese - inserting 1000 documents. first: Pahurat and last: Alejandro Cao de Benos de Les y Perez -[2018-02-13T08:38:52.646] [INFO] cheese - inserting 1000 documents. first: Ahl al-Kahf and last: Jeebropilly -[2018-02-13T08:38:52.660] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:52.671] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:38:52.770] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:38:52.772] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:38:52.842] [INFO] cheese - inserting 1000 documents. first: Transapical Transcatheter Mitral Valve Implantation of the Tiara Bio-prosthesis and last: Jake Thomas (Canadian football) -[2018-02-13T08:38:52.863] [INFO] cheese - inserting 1000 documents. first: Egil Skallagrimsson and last: Disfiguration -[2018-02-13T08:38:52.940] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:38:52.963] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:38:53.031] [INFO] cheese - inserting 1000 documents. first: Disaster learning and last: Tody-tyrants -[2018-02-13T08:38:53.130] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:38:53.166] [INFO] cheese - inserting 1000 documents. first: Gaoqiao, Changsha County and last: Huidobro, Burgos -[2018-02-13T08:38:53.276] [INFO] cheese - inserting 1000 documents. first: Dastira imitatrix and last: Wikipedia:United States Education Program/Courses/Wiki-Project Management (Jonathan Obar)/Group 3 Sandbox/Bookshelf Sandbox/Advanced Section/Discussion Section/Other Section -[2018-02-13T08:38:53.352] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:38:53.413] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:38:53.540] [INFO] cheese - inserting 1000 documents. first: North Pickenham and last: Jesse Alto -[2018-02-13T08:38:53.571] [INFO] cheese - inserting 1000 documents. first: Category:Transportation infrastructure in Mexico and last: Bulling (agricultural) -[2018-02-13T08:38:53.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Strategic essentialism and last: Fishersgate railway station -[2018-02-13T08:38:53.612] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:38:53.628] [INFO] cheese - inserting 1000 documents. first: Jan Roth and last: Mary Woodall -[2018-02-13T08:38:53.685] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:38:53.737] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:38:53.748] [INFO] cheese - inserting 1000 documents. first: The Bald Knobbers and last: File:Scottish Tartans Society (coat of arms).png -[2018-02-13T08:38:53.777] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:38:53.838] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:38:53.871] [INFO] cheese - inserting 1000 documents. first: Category:1356 deaths and last: Orochimaru -[2018-02-13T08:38:53.955] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:38:53.965] [INFO] cheese - inserting 1000 documents. first: Orichevskiy and last: Exeter Tramway Company -[2018-02-13T08:38:53.966] [INFO] cheese - inserting 1000 documents. first: Mariano Florentino Cuéllar and last: Category:Chilean male rowers -[2018-02-13T08:38:54.057] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:38:54.092] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:38:54.287] [INFO] cheese - inserting 1000 documents. first: Bear & Co. and last: Old Canberra Inn -[2018-02-13T08:38:54.294] [INFO] cheese - inserting 1000 documents. first: Here, My Love and last: Roger R. Ream -[2018-02-13T08:38:54.350] [INFO] cheese - inserting 1000 documents. first: File:Scottish Tartarns World Register (logo).png and last: List of number-one Billboard Top Latin Albums of 2005 -[2018-02-13T08:38:54.358] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:38:54.373] [INFO] cheese - inserting 1000 documents. first: Kasama Airport and last: BMW i3 REx -[2018-02-13T08:38:54.391] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:38:54.439] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:38:54.495] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:38:54.589] [INFO] cheese - inserting 1000 documents. first: Sikh feminism and last: Nikita Sergeevic Hruscev -[2018-02-13T08:38:54.691] [INFO] cheese - inserting 1000 documents. first: Interstate Route 205 (California) and last: N-base -[2018-02-13T08:38:54.761] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:38:54.876] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:38:54.923] [INFO] cheese - inserting 1000 documents. first: Electoral Commission of Uganda and last: Category:Women's sports competitions in Brazil -[2018-02-13T08:38:55.084] [INFO] cheese - inserting 1000 documents. first: Rock Lee and last: File:Juliana Hatfield - Bed.jpg -[2018-02-13T08:38:55.102] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:38:55.367] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:38:55.412] [INFO] cheese - inserting 1000 documents. first: File:Threeview Shche-2.gif and last: Template:1944 NCAA Men's Basketball Consensus All-Americans -[2018-02-13T08:38:55.418] [INFO] cheese - inserting 1000 documents. first: File:Jack of Clubs (album).jpg and last: Moon Island (Hong Kong) -[2018-02-13T08:38:55.457] [INFO] cheese - inserting 1000 documents. first: New Delhi Ajmer Shatabdi Express and last: Wikipedia:WikiProject Spam/Local/bcud.unipune.ac.in -[2018-02-13T08:38:55.470] [INFO] cheese - inserting 1000 documents. first: Longford, Coventry and last: Samuel T. Worcester -[2018-02-13T08:38:55.492] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:38:55.499] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:38:55.602] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:38:55.605] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:38:55.650] [INFO] cheese - inserting 1000 documents. first: Nikita Sergeevic Xruscev and last: Template:Bad English -[2018-02-13T08:38:55.747] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:55.754] [INFO] cheese - inserting 1000 documents. first: N-Base and last: Allan Houser -[2018-02-13T08:38:55.786] [INFO] cheese - inserting 1000 documents. first: Ministry of Education Republic of China and last: Kim Song-guk (sport shooter) -[2018-02-13T08:38:55.843] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:38:55.864] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:38:56.134] [INFO] cheese - inserting 1000 documents. first: Ed Swearingen and last: List of airports in Libyan Arab Jamahiriya -[2018-02-13T08:38:56.139] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of the Duchy of Milan and last: Herman van Aldewereld -[2018-02-13T08:38:56.143] [INFO] cheese - inserting 1000 documents. first: Template:Michael Bolton and last: Ivan II Draskovic -[2018-02-13T08:38:56.191] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:38:56.208] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:38:56.212] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:38:56.234] [INFO] cheese - inserting 1000 documents. first: Post Coïtum, Animal Triste and last: Donald McAllister -[2018-02-13T08:38:56.275] [INFO] cheese - inserting 1000 documents. first: Claire Nielson and last: Diplomatic body -[2018-02-13T08:38:56.362] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:38:56.365] [INFO] cheese - inserting 1000 documents. first: List of works by Elliott Carter and last: Taft CJ -[2018-02-13T08:38:56.415] [INFO] cheese - inserting 1000 documents. first: Daybreak and last: Peek (crater) -[2018-02-13T08:38:56.431] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:38:56.490] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:38:56.618] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:38:56.649] [INFO] cheese - inserting 1000 documents. first: Swissmint and last: Chatt G. Wright -[2018-02-13T08:38:56.826] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:38:56.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mulgrave.com and last: Breathlyzer -[2018-02-13T08:38:57.004] [INFO] cheese - inserting 1000 documents. first: Adult video chat and last: Louise Berliawsky Nevelson -[2018-02-13T08:38:57.034] [INFO] cheese - inserting 1000 documents. first: Stylissa and last: Cone ant -[2018-02-13T08:38:57.042] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:38:57.046] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:38:57.069] [INFO] cheese - inserting 1000 documents. first: European LC Championships 1995 - Men's 100m Freestyle and last: Category:Port cities in Australia -[2018-02-13T08:38:57.159] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:38:57.196] [INFO] cheese - inserting 1000 documents. first: 1929 in Afghanistan and last: State Highway 16 -[2018-02-13T08:38:57.225] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:38:57.275] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:38:57.328] [INFO] cheese - inserting 1000 documents. first: Category:Czech male discus throwers and last: Wikipedia:WikiProject Spam/LinkReports/pitbull-info-and-training.com -[2018-02-13T08:38:57.413] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:38:57.615] [INFO] cheese - inserting 1000 documents. first: Category:1839 establishments in Brazil and last: Orlin (disambiguation) -[2018-02-13T08:38:57.632] [INFO] cheese - inserting 1000 documents. first: Capcom Entertainment, Inc. and last: Time Assassins -[2018-02-13T08:38:57.645] [INFO] cheese - inserting 1000 documents. first: Berlin-Görlitz Railway Company and last: The Three Men of Melita Žganjer -[2018-02-13T08:38:57.680] [INFO] cheese - inserting 1000 documents. first: ERK (disambiguation) and last: Styx II -[2018-02-13T08:38:57.687] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:38:57.734] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:38:57.737] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:38:57.829] [INFO] cheese - inserting 1000 documents. first: Independent Paralympic Athletes at the 2016 Summer Paralympics and last: United States Post Office and Courthouse (Rome, Georgia) -[2018-02-13T08:38:57.843] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:38:57.864] [INFO] cheese - inserting 1000 documents. first: Category:Secretaries of State of Michigan and last: The Mock Tempest -[2018-02-13T08:38:57.869] [INFO] cheese - inserting 1000 documents. first: Last Forever – Part 1 and last: Anatinomma bispinosum -[2018-02-13T08:38:57.910] [INFO] cheese - inserting 1000 documents. first: State Highway 17 and last: Scape goat -[2018-02-13T08:38:57.960] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:38:57.962] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:38:58.033] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:38:58.147] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:38:58.367] [INFO] cheese - inserting 1000 documents. first: Pieter de Valk and last: Wanna go home, baby? -[2018-02-13T08:38:58.483] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:38:58.557] [INFO] cheese - inserting 1000 documents. first: Let the Wookiee win and last: Jillion Potter -[2018-02-13T08:38:58.611] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:38:58.644] [INFO] cheese - inserting 1000 documents. first: File:Wonder Boy III Monster Lair - level1.png and last: Lipjani -[2018-02-13T08:38:58.652] [INFO] cheese - inserting 1000 documents. first: Globe Road & Devonshire Street railway station and last: Cancer adspersus -[2018-02-13T08:38:58.672] [INFO] cheese - inserting 1000 documents. first: Baron Lytton and last: Category:Cass County, Indiana -[2018-02-13T08:38:58.685] [INFO] cheese - inserting 1000 documents. first: Kaiwera Downs Wind Farm and last: Category:Irish people of South African descent -[2018-02-13T08:38:58.714] [INFO] cheese - inserting 1000 documents. first: Category:NASCAR on the radio and last: Category:1739 in music -[2018-02-13T08:38:58.729] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:38:58.731] [INFO] cheese - inserting 1000 documents. first: Heinz Welzel and last: Eulia tristriata -[2018-02-13T08:38:58.780] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:38:58.776] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:38:58.761] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:38:58.842] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:38:58.887] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:38:59.152] [INFO] cheese - inserting 1000 documents. first: Holy Spirit (Islam) and last: Josh Ritchart -[2018-02-13T08:38:59.178] [INFO] cheese - inserting 1000 documents. first: Category:Clark County, Indiana and last: Category:Buffalo County, South Dakota -[2018-02-13T08:38:59.208] [INFO] cheese - inserting 1000 documents. first: List of archdeacons of Ashford and last: Falizan -[2018-02-13T08:38:59.210] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:38:59.221] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:38:59.304] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:38:59.370] [INFO] cheese - inserting 1000 documents. first: Category:Wards of the London Borough of Bexley and last: Category:Wards of Bradford -[2018-02-13T08:38:59.408] [INFO] cheese - inserting 1000 documents. first: Cancer convexus and last: Tapas Fleming -[2018-02-13T08:38:59.441] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:38:59.555] [INFO] cheese - inserting 1000 documents. first: Spies Like Us (disambiguation) and last: Wikipedia:Miscellany for deletion/User:C09notes -[2018-02-13T08:38:59.559] [INFO] cheese - inserting 1000 documents. first: 1958 Individual Speedway World Championship and last: L'Heritier -[2018-02-13T08:38:59.632] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:38:59.606] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:38:59.732] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:38:59.865] [INFO] cheese - inserting 1000 documents. first: Category:USA-centric and last: Idrees Bashir -[2018-02-13T08:38:59.890] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1240 and last: Computer reservation system -[2018-02-13T08:38:59.948] [INFO] cheese - inserting 1000 documents. first: Draco cornutus and last: 2016 Challenger Banque Nationale de Gatineau - Women's Doubles -[2018-02-13T08:38:59.954] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:38:59.994] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:39:00.107] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:39:00.209] [INFO] cheese - inserting 1000 documents. first: Category:Educational institutions disestablished in 1933 and last: Petros Mantalos -[2018-02-13T08:39:00.236] [INFO] cheese - inserting 1000 documents. first: AVCA and last: Fierce, Isakowitz and Blalock -[2018-02-13T08:39:00.314] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:39:00.327] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:39:00.381] [INFO] cheese - inserting 1000 documents. first: File:The Third Kiss.jpg and last: Wikipedia:Reference desk/Archives/Humanities/2014 May 22 -[2018-02-13T08:39:00.388] [INFO] cheese - inserting 1000 documents. first: List of accidents and incidents involving military aircraft (1950–1974) and last: Arthur St George -[2018-02-13T08:39:00.434] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics Aston Villa F.C. featured content and last: Gerd wedler -[2018-02-13T08:39:00.460] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:39:00.471] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:39:00.568] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:39:00.719] [INFO] cheese - inserting 1000 documents. first: Rodrigues Alves and last: The Ungrateful Heart -[2018-02-13T08:39:00.839] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:39:00.898] [INFO] cheese - inserting 1000 documents. first: Runar and last: E-LSA -[2018-02-13T08:39:00.920] [INFO] cheese - inserting 1000 documents. first: Template:Al Arabi SC (Qatar) managers and last: John Gundersen Neergaard -[2018-02-13T08:39:00.951] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Statto-JTA Publishing Corporation and last: Category:Elevators -[2018-02-13T08:39:01.000] [INFO] cheese - inserting 1000 documents. first: File:Swindon town fc badge 1971.PNG and last: Category:Greek coats of arms -[2018-02-13T08:39:01.033] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:39:01.024] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:39:01.086] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marrua and last: Wikipedia:Articles for deletion/Sabzi -[2018-02-13T08:39:01.097] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:39:01.237] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:39:01.286] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:39:01.338] [INFO] cheese - inserting 1000 documents. first: Fire in the Breeze and last: File:National Association of Russian Explorers.png -[2018-02-13T08:39:01.355] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia Emerald access and last: Wikipedia:WikiProject Spam/LinkReports/encontrosdaimagem.com -[2018-02-13T08:39:01.500] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:39:01.607] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:39:01.731] [INFO] cheese - inserting 1000 documents. first: Category:Scottish political theorists and last: Sarmad Tariq -[2018-02-13T08:39:01.884] [INFO] cheese - batch complete in: 1.557 secs -[2018-02-13T08:39:01.965] [INFO] cheese - inserting 1000 documents. first: Ptilochares melanoma and last: Abatino Faunistic Park -[2018-02-13T08:39:01.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/South-Central Eurasia and last: 2TM -[2018-02-13T08:39:02.123] [INFO] cheese - inserting 1000 documents. first: How to Behave and last: Portal:Energy/Selected picture/Layout -[2018-02-13T08:39:02.156] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:39:02.206] [INFO] cheese - inserting 1000 documents. first: USAT Bowling Green Victory and last: Lietuvos TSR valstybinis dailės institutas -[2018-02-13T08:39:02.207] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:39:02.270] [INFO] cheese - inserting 1000 documents. first: Category:Lower Sorbian language and last: Bicocca (quartiere di Milano) -[2018-02-13T08:39:02.296] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:39:02.317] [INFO] cheese - inserting 1000 documents. first: High Tension and last: Ultima 7, pt. 2 -[2018-02-13T08:39:02.332] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:39:02.416] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:39:02.524] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:39:02.611] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pier-uk.co.uk and last: 2017 TCR International Series -[2018-02-13T08:39:02.742] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:39:02.815] [INFO] cheese - inserting 1000 documents. first: JJ (Skins character) and last: Gerard Braybrooke I -[2018-02-13T08:39:02.909] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:39:03.060] [INFO] cheese - inserting 1000 documents. first: 2mrw and last: Category:Newspaper logos -[2018-02-13T08:39:03.208] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:39:03.212] [INFO] cheese - inserting 1000 documents. first: Lietuvos valstybinis dailės institutas and last: CaribVision -[2018-02-13T08:39:03.216] [INFO] cheese - inserting 1000 documents. first: Miss Teen USA 1990 and last: Category:Medieval armour -[2018-02-13T08:39:03.224] [INFO] cheese - inserting 1000 documents. first: 1913 London International Radiotelegraphic Convention and last: Black-throated Antshrike -[2018-02-13T08:39:03.296] [INFO] cheese - inserting 1000 documents. first: Bruzzano and last: 455th Flying Training Squadron -[2018-02-13T08:39:03.337] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:39:03.358] [INFO] cheese - batch complete in: 1.202 secs -[2018-02-13T08:39:03.360] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:39:03.526] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:39:03.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:EXPLORE and last: Category:Screenplays by Martyn Burke -[2018-02-13T08:39:03.643] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:39:03.772] [INFO] cheese - inserting 1000 documents. first: Ultima 7 Part Two and last: Eidi -[2018-02-13T08:39:03.909] [INFO] cheese - inserting 1000 documents. first: Brit nat and last: Juno Awards of 2013 -[2018-02-13T08:39:03.951] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:39:04.070] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:39:04.107] [INFO] cheese - inserting 1000 documents. first: Undulated Antshrike and last: Double-banded Greytail -[2018-02-13T08:39:04.141] [INFO] cheese - inserting 1000 documents. first: Vital Suit and last: Jissetsu -[2018-02-13T08:39:04.169] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:39:04.212] [INFO] cheese - inserting 1000 documents. first: UUDL and last: Salvatore Bocchetti -[2018-02-13T08:39:04.220] [INFO] cheese - inserting 1000 documents. first: Francis X. Beytagh and last: Oavelgem -[2018-02-13T08:39:04.239] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:39:04.245] [INFO] cheese - inserting 1000 documents. first: Educational Attainment and last: Wikipedia:Articles for deletion/Yolanda Soares -[2018-02-13T08:39:04.274] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:39:04.335] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:39:04.343] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:39:04.393] [INFO] cheese - inserting 1000 documents. first: File:Dimitrij of Rostov.jpg and last: Xenolith (disambiguation) -[2018-02-13T08:39:04.490] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:39:04.610] [INFO] cheese - inserting 1000 documents. first: Equatorial Greytail and last: Maxi floppy -[2018-02-13T08:39:04.660] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:39:04.798] [INFO] cheese - inserting 1000 documents. first: Eliezer Ben-Rafael and last: Category:1998 African Cup of Nations managers -[2018-02-13T08:39:04.820] [INFO] cheese - inserting 1000 documents. first: Getafe Air Force Base and last: Template:Cairo International Film Festival -[2018-02-13T08:39:04.855] [INFO] cheese - inserting 1000 documents. first: Pilot (Best Friends Forever) and last: Wikipedia:WikiProject Spam/LinkReports/aboutthebeatles.com -[2018-02-13T08:39:04.867] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:39:04.939] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:39:04.958] [INFO] cheese - inserting 1000 documents. first: Kantō Jissetsu and last: Aesthetic object -[2018-02-13T08:39:05.001] [INFO] cheese - inserting 1000 documents. first: File:Ski race at Bánkút, Hungary (2006).jpg and last: Wikipedia:Reference desk/Archives/Mathematics/2007 June 7 -[2018-02-13T08:39:05.009] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:39:05.042] [INFO] cheese - inserting 1000 documents. first: Saskatchewan general election, 1912 and last: David Euan Wallace -[2018-02-13T08:39:05.123] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:39:05.120] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:39:05.317] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T08:39:05.337] [INFO] cheese - inserting 1000 documents. first: Maxi-disk and last: Beth Brooke -[2018-02-13T08:39:05.410] [INFO] cheese - inserting 1000 documents. first: Northwest Airlines Flight 2 and last: Xelhua -[2018-02-13T08:39:05.438] [INFO] cheese - inserting 1000 documents. first: JFK Fried Chicken and last: ISO 639:mus -[2018-02-13T08:39:05.468] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:39:05.522] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:39:05.589] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:39:05.612] [INFO] cheese - inserting 1000 documents. first: Draft:Double Mountain Brewery and last: Hades (EP) -[2018-02-13T08:39:05.679] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:39:05.839] [INFO] cheese - inserting 1000 documents. first: Navy of Cape Verde and last: Category:Brutalist architects -[2018-02-13T08:39:05.893] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:39:05.942] [INFO] cheese - inserting 1000 documents. first: NK Neretva and last: Dilip Buwa -[2018-02-13T08:39:05.970] [INFO] cheese - inserting 1000 documents. first: Category:2009–10 Libyan Cup and last: Wikipedia:WikiProject Spam/LinkReports/almogaz.com -[2018-02-13T08:39:06.000] [INFO] cheese - inserting 1000 documents. first: ISO 639:muu and last: ISO 639:squ -[2018-02-13T08:39:06.058] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:39:06.115] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:39:06.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/U.S. National Gold Bank Notes (1871-1883) and last: M. quadrilineatus -[2018-02-13T08:39:06.187] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:39:06.272] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:39:06.340] [INFO] cheese - inserting 1000 documents. first: Wake in Fright (novel) and last: Crossoona Rath -[2018-02-13T08:39:06.452] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:39:06.455] [INFO] cheese - inserting 1000 documents. first: Gandhi–King Award and last: Berzelius (crater) -[2018-02-13T08:39:06.503] [INFO] cheese - inserting 1000 documents. first: Turyancay and last: Wikipedia:Featured list candidates/List of Bryan Adams awards/archive1 -[2018-02-13T08:39:06.506] [INFO] cheese - inserting 1000 documents. first: James Murray (boxer) and last: UvA -[2018-02-13T08:39:06.560] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:39:06.605] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:39:06.610] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:39:06.752] [INFO] cheese - inserting 1000 documents. first: Savara language (Munda) and last: Trebečaj -[2018-02-13T08:39:06.810] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:39:06.824] [INFO] cheese - inserting 1000 documents. first: Template:Ontario provincial election, 1937/Ottawa South and last: White-tailed Robin -[2018-02-13T08:39:06.871] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:39:06.923] [INFO] cheese - inserting 1000 documents. first: File:Croatian Swimming Federation logo.jpg and last: Stephen Shaw (tennis) -[2018-02-13T08:39:06.940] [INFO] cheese - inserting 1000 documents. first: Category:South Korean female sprinters and last: Category:People from Uvarovo, Tambov Oblast -[2018-02-13T08:39:07.009] [INFO] cheese - inserting 1000 documents. first: Charles Natusch and last: Contractual terms -[2018-02-13T08:39:07.018] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:39:07.024] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:39:07.154] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:39:07.396] [INFO] cheese - inserting 1000 documents. first: Anton Fritsch and last: Bikes, blues, and bbq -[2018-02-13T08:39:07.423] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Bryan Adams awards/archive2 and last: Patriot Guard -[2018-02-13T08:39:07.444] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:39:07.521] [INFO] cheese - inserting 1000 documents. first: Sunda Robin and last: Golden-crowned Sparrow -[2018-02-13T08:39:07.637] [INFO] cheese - inserting 1000 documents. first: ISO 639:xml and last: Category:Populated places in Indonesia -[2018-02-13T08:39:07.802] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:39:07.807] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:39:07.852] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:39:07.873] [INFO] cheese - inserting 1000 documents. first: File:GoT A Golden Crown.jpg and last: Aaron Davies (footballer) -[2018-02-13T08:39:08.006] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:39:08.091] [INFO] cheese - inserting 1000 documents. first: DAT Politics and last: Sinfjötli -[2018-02-13T08:39:08.211] [INFO] cheese - inserting 1000 documents. first: Category:VfL Halle 1896 and last: Joguet -[2018-02-13T08:39:08.248] [INFO] cheese - batch complete in: 1.687 secs -[2018-02-13T08:39:08.379] [INFO] cheese - inserting 1000 documents. first: Martin-Baker MB 1 and last: Wikipedia:Articles for deletion/List of alpha emitting materials -[2018-02-13T08:39:08.381] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:39:08.478] [INFO] cheese - inserting 1000 documents. first: White-throated Sparrow and last: Warczewiczella velata -[2018-02-13T08:39:08.489] [INFO] cheese - batch complete in: 1.335 secs -[2018-02-13T08:39:08.517] [INFO] cheese - inserting 1000 documents. first: Yadgar Muhammad Mirza and last: The Defendant -[2018-02-13T08:39:08.549] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:39:08.633] [INFO] cheese - inserting 1000 documents. first: Category:2001 fires and last: Category:Unknown-importance Los Angeles Dodgers articles -[2018-02-13T08:39:08.631] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:39:08.687] [INFO] cheese - inserting 1000 documents. first: Aaron Davis (footballer) and last: Horticulture industry -[2018-02-13T08:39:08.739] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fort Mall and last: Category:Gambian Christians -[2018-02-13T08:39:08.742] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:39:08.790] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:39:08.877] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:39:09.028] [INFO] cheese - inserting 1000 documents. first: Zygopetalum velatum and last: Loango Weaver -[2018-02-13T08:39:09.077] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand Christian monks and last: University of Trinity College -[2018-02-13T08:39:09.077] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:39:09.205] [INFO] cheese - inserting 1000 documents. first: Shoujo Tsubaki and last: Alpine snowbell -[2018-02-13T08:39:09.260] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:39:09.374] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:39:09.422] [INFO] cheese - inserting 1000 documents. first: Template:ZHCOTM and last: West Grey -[2018-02-13T08:39:09.430] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Los Angeles Dodgers articles and last: Philip Abraham -[2018-02-13T08:39:09.432] [INFO] cheese - inserting 1000 documents. first: SS Zachary Taylor and last: Gehrig38 -[2018-02-13T08:39:09.438] [INFO] cheese - inserting 1000 documents. first: Austro-Hungarian Air Service in World War I and last: Bahey eldin hassan -[2018-02-13T08:39:09.555] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:39:09.613] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:39:09.621] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:09.633] [INFO] cheese - inserting 1000 documents. first: Lufira Masked Weaver and last: Lanceolated Warbler -[2018-02-13T08:39:09.643] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:39:09.690] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:39:09.720] [INFO] cheese - inserting 1000 documents. first: BK-46 and last: Aleksandrovo, Haskovo Province -[2018-02-13T08:39:09.864] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:39:10.037] [INFO] cheese - inserting 1000 documents. first: List of treaties of naval collaboration of the Ottoman Empire and last: Jelena Yankovic -[2018-02-13T08:39:10.041] [INFO] cheese - inserting 1000 documents. first: Continental Stove Works and last: Skunk River Bridge -[2018-02-13T08:39:10.158] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:39:10.164] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:39:10.169] [INFO] cheese - inserting 1000 documents. first: 1939 Yale Bulldogs football team and last: Bench research -[2018-02-13T08:39:10.270] [INFO] cheese - inserting 1000 documents. first: Pallas's Grasshopper Warbler and last: O Chirombe -[2018-02-13T08:39:10.282] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:39:10.368] [INFO] cheese - inserting 1000 documents. first: Category:Hapoel Tayibe F.C. players and last: Sarafxanli -[2018-02-13T08:39:10.397] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:39:10.457] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:39:10.620] [INFO] cheese - inserting 1000 documents. first: Bryagovo, Haskovo Province and last: The Hottest Show on Earth Tour -[2018-02-13T08:39:10.665] [INFO] cheese - inserting 1000 documents. first: File:Logo Il Messaggero.png and last: Pyhä-Häkki National Park -[2018-02-13T08:39:10.704] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:39:10.761] [INFO] cheese - inserting 1000 documents. first: Mississippi Mills and last: Everquest II -[2018-02-13T08:39:10.791] [INFO] cheese - batch complete in: 1.17 secs -[2018-02-13T08:39:10.797] [INFO] cheese - inserting 1000 documents. first: Yelena Yankovic and last: Cercospora janseana -[2018-02-13T08:39:10.939] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:39:11.009] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:39:11.115] [INFO] cheese - inserting 1000 documents. first: Category:Chilean female hammer throwers and last: ECMA 94-2 -[2018-02-13T08:39:11.133] [INFO] cheese - inserting 1000 documents. first: Flame-throated Bulbul and last: Assam Laughingthrush -[2018-02-13T08:39:11.175] [INFO] cheese - inserting 1000 documents. first: Divine Legation of Moses and last: Category:1625 in art -[2018-02-13T08:39:11.200] [INFO] cheese - inserting 1000 documents. first: Sharafkhanly and last: Pole Mokotowskie -[2018-02-13T08:39:11.208] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:39:11.246] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:39:11.338] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:39:11.375] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:39:11.733] [INFO] cheese - inserting 1000 documents. first: SeaQuest (disambiguation) and last: Timeline of Asian nations -[2018-02-13T08:39:11.772] [INFO] cheese - inserting 1000 documents. first: Septoria rosae and last: Amory Houghton, Jr. -[2018-02-13T08:39:11.824] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:39:11.879] [INFO] cheese - inserting 1000 documents. first: Carl Critchlow and last: Second East–West Highway -[2018-02-13T08:39:11.919] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:39:12.009] [INFO] cheese - inserting 1000 documents. first: ECMA-94-2 and last: Doble Copacabana Grand Prix Fides -[2018-02-13T08:39:12.100] [INFO] cheese - inserting 1000 documents. first: Bhutan Laughingthrush and last: Category:Landforms of Jackson County, Florida -[2018-02-13T08:39:12.119] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T08:39:12.208] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:39:12.286] [INFO] cheese - inserting 1000 documents. first: Category:1626 in art and last: Category:Special schools in Surrey -[2018-02-13T08:39:12.293] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz SLR-Class and last: Yorkshire County Cricket -[2018-02-13T08:39:12.299] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:39:12.403] [INFO] cheese - inserting 1000 documents. first: CFRT and last: Colorado Dory -[2018-02-13T08:39:12.408] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:39:12.435] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:39:12.548] [INFO] cheese - batch complete in: 1.609 secs -[2018-02-13T08:39:12.579] [INFO] cheese - inserting 1000 documents. first: File:One Tree Hill - Season 1 - DVD.JPG and last: Bud Yorkin Productions -[2018-02-13T08:39:12.643] [INFO] cheese - inserting 1000 documents. first: Workspace Manager and last: Developments of Transformation optics -[2018-02-13T08:39:12.643] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:39:12.735] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:39:12.791] [INFO] cheese - inserting 1000 documents. first: Derry Quinn and last: Ud-Din, Qamar -[2018-02-13T08:39:12.833] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:39:12.972] [INFO] cheese - inserting 1000 documents. first: File:Korengal (film) poster 2014.jpg and last: UMS de Loum -[2018-02-13T08:39:13.002] [INFO] cheese - inserting 1000 documents. first: Wisconsin School of Law and last: List of islands of Vanuatu -[2018-02-13T08:39:13.009] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:39:13.083] [INFO] cheese - inserting 1000 documents. first: Holger-Madsen and last: Jasmine Chen -[2018-02-13T08:39:13.096] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:39:13.154] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:39:13.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/colorhexa.com and last: Belebu -[2018-02-13T08:39:13.367] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:39:13.401] [INFO] cheese - inserting 1000 documents. first: Asteromella brassicae and last: Charles H. Atherton -[2018-02-13T08:39:13.460] [INFO] cheese - inserting 1000 documents. first: Native American Venture Fund and last: Shantanu Maheshwari -[2018-02-13T08:39:13.521] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:39:13.581] [INFO] cheese - inserting 1000 documents. first: White Knuckled Substance and last: Wikipedia:Articles for deletion/California bearing ratio -[2018-02-13T08:39:13.598] [INFO] cheese - inserting 1000 documents. first: Jan Almeloveen and last: File:Gorefest false.jpg -[2018-02-13T08:39:13.635] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:39:13.641] [INFO] cheese - inserting 1000 documents. first: Luis Angel Firpo managers and last: Sumatran Green Pigeon -[2018-02-13T08:39:13.704] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:39:13.709] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:39:13.785] [INFO] cheese - batch complete in: 1.237 secs -[2018-02-13T08:39:14.074] [INFO] cheese - inserting 1000 documents. first: Category:Olympic fencers of Bohemia and last: File:Album The Camera And The Song frontcover.jpg -[2018-02-13T08:39:14.120] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Automatic restroom and last: Isleta del Sur -[2018-02-13T08:39:14.138] [INFO] cheese - inserting 1000 documents. first: Charles Faddis and last: Wikipedia:WikiProject Spam/COIReports/2007, Jun 11 -[2018-02-13T08:39:14.166] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:39:14.269] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:39:14.305] [INFO] cheese - inserting 1000 documents. first: Candy Candy (song) and last: Monchy & Nathalia -[2018-02-13T08:39:14.317] [INFO] cheese - inserting 1000 documents. first: B. lutea and last: Yellow-browed Woodpecker -[2018-02-13T08:39:14.339] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:39:14.438] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:39:14.504] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T08:39:14.579] [INFO] cheese - inserting 1000 documents. first: The Clinton Daily Journal and last: Category:Lists of populated places in Greece -[2018-02-13T08:39:14.702] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/8si.ru and last: Category:Iranian pole vaulters -[2018-02-13T08:39:14.714] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:39:14.847] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:39:14.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2007 June 9 and last: George Schwabe -[2018-02-13T08:39:14.985] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:39:14.996] [INFO] cheese - inserting 1000 documents. first: White-winged Woodpecker and last: We gaan naar Rome -[2018-02-13T08:39:14.996] [INFO] cheese - inserting 1000 documents. first: WXCQ and last: Wikipedia:Articles for deletion/Akinobu Uraka -[2018-02-13T08:39:15.022] [INFO] cheese - inserting 1000 documents. first: Male language (Ethiopia) and last: Verhoshizhemskiy District -[2018-02-13T08:39:15.031] [INFO] cheese - inserting 1000 documents. first: Illapel and last: Parabiaugmented dodecahedron -[2018-02-13T08:39:15.095] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:39:15.141] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:39:15.159] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:39:15.205] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:39:15.228] [INFO] cheese - inserting 1000 documents. first: Adam Polakoff and last: Wikipedia:Requests for comment/Diyako, Heja helweda, Muhamed -[2018-02-13T08:39:15.312] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:39:15.409] [INFO] cheese - inserting 1000 documents. first: Lorenzino da Bologna and last: Cushing reaction -[2018-02-13T08:39:15.482] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:39:15.512] [INFO] cheese - inserting 1000 documents. first: 1958 NCAA Swimming and Diving Championships and last: Gebechán -[2018-02-13T08:39:15.521] [INFO] cheese - inserting 1000 documents. first: Proper names derived from Draz- and last: File:F prendergast.jpg -[2018-02-13T08:39:15.619] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:39:15.696] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:39:15.722] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of St. Francis County, Arkansas and last: Variable Dwarf Kingfisher -[2018-02-13T08:39:15.809] [INFO] cheese - inserting 1000 documents. first: Verhoshizhemski District and last: Stroud (district) -[2018-02-13T08:39:15.862] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:39:15.912] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:39:15.901] [INFO] cheese - inserting 1000 documents. first: Stationary phase (chemistry) and last: Jastrzębia, Świętokrzyskie Voivodeship -[2018-02-13T08:39:15.965] [INFO] cheese - inserting 1000 documents. first: Death of Oury Jalloh and last: Argiope keyserlingi -[2018-02-13T08:39:16.012] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:39:16.091] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:39:16.189] [INFO] cheese - inserting 1000 documents. first: Bronze-winged parrot and last: Jacob Yost -[2018-02-13T08:39:16.328] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:39:16.353] [INFO] cheese - inserting 1000 documents. first: Metabiaugmented dodecahedron and last: Richard Wylly Habersham -[2018-02-13T08:39:16.378] [INFO] cheese - inserting 1000 documents. first: Mountain Kingfisher and last: Punawithi BTS Station -[2018-02-13T08:39:16.425] [INFO] cheese - inserting 1000 documents. first: Building & Construction Trades Council v. Associated Builders & Contractors of Massachusetts/Rhode Island, Inc. and last: Category:Bolivian female long-distance runners -[2018-02-13T08:39:16.441] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:39:16.491] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:39:16.502] [INFO] cheese - inserting 1000 documents. first: Template:Moldovan "A" Division seasons and last: BMMRS -[2018-02-13T08:39:16.578] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:39:16.683] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:39:16.789] [INFO] cheese - inserting 1000 documents. first: MD-8 and last: Portal:Indigenous peoples of North America/Things you can do -[2018-02-13T08:39:16.804] [INFO] cheese - inserting 1000 documents. first: Smainak and last: Wikipedia:Help desk/Archives/2012 March 25 -[2018-02-13T08:39:16.811] [INFO] cheese - inserting 1000 documents. first: Jacob Fassett and last: John Sherwin -[2018-02-13T08:39:16.838] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:39:16.857] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:39:16.902] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:16.999] [INFO] cheese - inserting 1000 documents. first: Category:Afghan shot putters and last: File:Domenic Marte.jpg -[2018-02-13T08:39:17.059] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:39:17.135] [INFO] cheese - inserting 1000 documents. first: Pha Dhampa Sangye and last: Category:Historic house museums in Louisiana -[2018-02-13T08:39:17.210] [INFO] cheese - inserting 1000 documents. first: Paul Dougherty (1877-1947) and last: File:Pachygrapsus marmoratus 2009 G4.jpg -[2018-02-13T08:39:17.237] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:39:17.272] [INFO] cheese - inserting 1000 documents. first: Bone Box and last: Lee Geyer -[2018-02-13T08:39:17.295] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:39:17.317] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:39:17.415] [INFO] cheese - inserting 1000 documents. first: Category:South Carolina railroads and last: Trinity Washington University -[2018-02-13T08:39:17.442] [INFO] cheese - inserting 1000 documents. first: Punnawithi BTS station and last: Culama caliginosa -[2018-02-13T08:39:17.496] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/detroityes.com and last: Wikipedia:Main Page history/2012 March 28 -[2018-02-13T08:39:17.549] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:39:17.551] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:39:17.600] [INFO] cheese - inserting 1000 documents. first: Category:Bissau-Guinean male sprinters and last: Marcus Garvey: Look for me in the Whirlwind -[2018-02-13T08:39:17.632] [INFO] cheese - inserting 1000 documents. first: Category:Baptist schools and last: Colossus (Roller Coaster) -[2018-02-13T08:39:17.641] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:39:17.665] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:39:17.819] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:39:17.911] [INFO] cheese - inserting 1000 documents. first: Lee W. Metcalf and last: Katsunuma Nobutomo -[2018-02-13T08:39:17.924] [INFO] cheese - inserting 1000 documents. first: Peacock Alley (room) and last: Me album -[2018-02-13T08:39:17.985] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:39:18.083] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:39:18.122] [INFO] cheese - inserting 1000 documents. first: Tancred (given name) and last: Mikhail Mikhailovich Roshchin -[2018-02-13T08:39:18.227] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:39:18.423] [INFO] cheese - inserting 1000 documents. first: Albert II, Duke of Mecklenburg-Stargard and last: HEPCA -[2018-02-13T08:39:18.424] [INFO] cheese - inserting 1000 documents. first: Culama treicleiota and last: Kelly Garrett (actress) -[2018-02-13T08:39:18.455] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:39:18.503] [INFO] cheese - inserting 1000 documents. first: Enhydriodon and last: Category:Cape Verdean male marathon runners -[2018-02-13T08:39:18.563] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:39:18.628] [INFO] cheese - inserting 1000 documents. first: File:Arms by andrew.jpg and last: List of World Embryo chapters -[2018-02-13T08:39:18.632] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:39:18.719] [INFO] cheese - inserting 1000 documents. first: Christopher Acosta and last: Floorfillers -[2018-02-13T08:39:18.725] [INFO] cheese - inserting 1000 documents. first: Markham Stouffville Hospital and last: Mount Pleasant, County Durham -[2018-02-13T08:39:18.741] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:39:18.777] [INFO] cheese - inserting 1000 documents. first: BarcoGraphics and last: File:ABC 7.jpg -[2018-02-13T08:39:18.790] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:39:18.881] [INFO] cheese - batch complete in: 1.332 secs -[2018-02-13T08:39:18.895] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:39:19.027] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota maps and last: Pinoy Pop Superstar The Finalists -[2018-02-13T08:39:19.032] [INFO] cheese - inserting 1000 documents. first: Eberhard Grün and last: Tubize 2179 -[2018-02-13T08:39:19.080] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:39:19.081] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:39:19.144] [INFO] cheese - inserting 1000 documents. first: Suzana Douglass and last: Metro-Goldwyn-Mayer, Inc. -[2018-02-13T08:39:19.190] [INFO] cheese - inserting 1000 documents. first: Acoustics (Minus the Bear EP) and last: Democratic Party of Texas -[2018-02-13T08:39:19.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wikipack Africa Content/Battle of Sio and last: File:IMI, Kritva'15.jpg -[2018-02-13T08:39:19.203] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:39:19.253] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:39:19.261] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:39:19.342] [INFO] cheese - inserting 1000 documents. first: Samuel Taliaferro and last: Thomas F. Lewis -[2018-02-13T08:39:19.374] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:39:19.424] [INFO] cheese - inserting 1000 documents. first: Seton Portage Historic Provincial Park and last: Lü Shao -[2018-02-13T08:39:19.493] [INFO] cheese - inserting 1000 documents. first: Category:Emirati airline chief executives and last: Wikipedia:WikiProject Spam/LinkReports/nap.st -[2018-02-13T08:39:19.577] [INFO] cheese - inserting 1000 documents. first: Buftea and last: Clemens non papa -[2018-02-13T08:39:19.560] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:39:19.643] [INFO] cheese - inserting 1000 documents. first: Pigface Vs. The World and last: Sir William Brown, 1st Baronet, of Astrop -[2018-02-13T08:39:19.655] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:39:19.666] [INFO] cheese - inserting 1000 documents. first: Category:Deaths from cancer in Thailand and last: Kaladyuz -[2018-02-13T08:39:19.619] [INFO] cheese - inserting 1000 documents. first: U.S. Army Japan Aviation Detachment Japan and last: Scarce dart -[2018-02-13T08:39:19.762] [INFO] cheese - inserting 1000 documents. first: Judith and Holofernes (disambiguation) and last: Tetraibidion sahlbergi -[2018-02-13T08:39:19.756] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:39:19.782] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:39:19.826] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:39:19.838] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:39:19.904] [INFO] cheese - inserting 1000 documents. first: John Ballenden and last: Wikipedia:IANAL -[2018-02-13T08:39:19.922] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:39:20.043] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:39:20.291] [INFO] cheese - inserting 1000 documents. first: Jacques Villeneuve, Sr. and last: File:Cups14.jpg -[2018-02-13T08:39:20.363] [INFO] cheese - inserting 1000 documents. first: 05-cv-784 and last: Maharaja Jagatjij Singh -[2018-02-13T08:39:20.419] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:39:20.529] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:39:20.580] [INFO] cheese - inserting 1000 documents. first: Scarce Dart and last: Category:Vietnamese male middle-distance runners -[2018-02-13T08:39:20.608] [INFO] cheese - inserting 1000 documents. first: Grammatical cases and last: Estates of the Netherlands Antilles -[2018-02-13T08:39:20.610] [INFO] cheese - inserting 1000 documents. first: Twilight Records and last: Paul VI Audience Hall -[2018-02-13T08:39:20.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/chicksgrovequarry.co.uk and last: Kiss (Mai Kuraki song) -[2018-02-13T08:39:20.690] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:39:20.728] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:39:20.764] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:39:20.801] [INFO] cheese - inserting 1000 documents. first: Andrew Fetterly Wilkes Krier and last: File:Saraswati Park.jpg -[2018-02-13T08:39:20.879] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:39:21.008] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:39:21.012] [INFO] cheese - inserting 1000 documents. first: Better Loosen Up and last: Wikipedia:Articles for deletion/Koenma -[2018-02-13T08:39:21.097] [INFO] cheese - inserting 1000 documents. first: File:Cups13.jpg and last: Mars science laboratory mission -[2018-02-13T08:39:21.129] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:39:21.191] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:39:21.234] [INFO] cheese - inserting 1000 documents. first: Brenda Duff Frazier and last: Sequential Walking -[2018-02-13T08:39:21.271] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:39:21.284] [INFO] cheese - inserting 1000 documents. first: Linear extension and last: Javier Mejías Leal -[2018-02-13T08:39:21.390] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:39:21.544] [INFO] cheese - inserting 1000 documents. first: 2016 Summer Olympic Games and last: Autoroute 30 -[2018-02-13T08:39:21.592] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Reserve Defense Corps and last: Untermyer Fountain -[2018-02-13T08:39:21.631] [INFO] cheese - inserting 1000 documents. first: Hundred of Mongolata and last: Justice Myers -[2018-02-13T08:39:21.667] [INFO] cheese - inserting 1000 documents. first: Category:University of Peradeniya and last: Artemio "Vibora" Ricarte -[2018-02-13T08:39:21.670] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:39:21.695] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:39:21.756] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:39:21.839] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:39:21.896] [INFO] cheese - inserting 1000 documents. first: Major productions of Swan Lake derived from its 1895 revival and last: Kalika, Kaski -[2018-02-13T08:39:21.916] [INFO] cheese - inserting 1000 documents. first: American anthrax attacks and last: Beech T-34C Turbo Mentor -[2018-02-13T08:39:22.059] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:39:22.071] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:39:22.140] [INFO] cheese - inserting 1000 documents. first: Better loosen up and last: Willie Hefner -[2018-02-13T08:39:22.178] [INFO] cheese - inserting 1000 documents. first: Category:Liberian folklore and last: Boot shot -[2018-02-13T08:39:22.270] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:39:22.273] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:39:22.377] [INFO] cheese - inserting 1000 documents. first: Paul Jones (footballer born 1953) and last: Vishtasp Jalali -[2018-02-13T08:39:22.436] [INFO] cheese - inserting 1000 documents. first: Andy Crawford (1960's footballer) and last: Gaulish languages -[2018-02-13T08:39:22.457] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:39:22.468] [INFO] cheese - inserting 1000 documents. first: Modified BSD licence and last: NPL (disambiguation) -[2018-02-13T08:39:22.474] [INFO] cheese - inserting 1000 documents. first: Artemio "El Vibora" Ricarte and last: Route 1 (Paraguay) -[2018-02-13T08:39:22.508] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:39:22.540] [INFO] cheese - inserting 1000 documents. first: H. Pollard and last: Category:1974 establishments in Canada -[2018-02-13T08:39:22.552] [INFO] cheese - inserting 1000 documents. first: Pirebedil' and last: Sal Guarriello -[2018-02-13T08:39:22.552] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:39:22.600] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:39:22.641] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:39:22.671] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:39:22.840] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 6001-6500 and last: Edmonton-St. Albert -[2018-02-13T08:39:22.842] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 3428 (Texas) and last: Shayne McMenemy -[2018-02-13T08:39:22.859] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T08:39:22.909] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:39:23.051] [INFO] cheese - inserting 1000 documents. first: Junior Mance Special and last: NAVSTAR II-4 -[2018-02-13T08:39:23.123] [INFO] cheese - inserting 1000 documents. first: Theodore M. Brown and last: G. T. Popa -[2018-02-13T08:39:23.144] [INFO] cheese - inserting 1000 documents. first: FC Kremin Kremenchuk season 2005-06 and last: List of minor planets: 52001-53000 -[2018-02-13T08:39:23.162] [INFO] cheese - inserting 1000 documents. first: File:EastWindsorCTseal.png and last: Oraukwu, Anambra -[2018-02-13T08:39:23.173] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:39:23.174] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:39:23.283] [INFO] cheese - inserting 1000 documents. first: Category:Art museums established in 1974 and last: Moose Factory, Ontario -[2018-02-13T08:39:23.373] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:39:23.401] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:39:23.512] [INFO] cheese - inserting 1000 documents. first: Willie G. Hefner and last: Magnolia macrophylla -[2018-02-13T08:39:23.560] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:39:23.652] [INFO] cheese - inserting 1000 documents. first: Bonnie Clutter and last: Judith Burmeister -[2018-02-13T08:39:23.735] [INFO] cheese - batch complete in: 1.462 secs -[2018-02-13T08:39:23.814] [INFO] cheese - inserting 1000 documents. first: 1998 Swisscom Challenge - Doubles and last: Bermuda - United States relations -[2018-02-13T08:39:23.875] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T08:39:23.878] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:39:23.994] [INFO] cheese - inserting 1000 documents. first: John Smith (Disney) and last: Alberta Highway 770 -[2018-02-13T08:39:24.125] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:39:24.220] [INFO] cheese - inserting 1000 documents. first: 1974-75 Portuguese Liga and last: 2008-09 Arab Champions League -[2018-02-13T08:39:24.248] [INFO] cheese - inserting 1000 documents. first: Jeona and last: Category:History of Vyborg -[2018-02-13T08:39:24.259] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:39:24.307] [INFO] cheese - inserting 1000 documents. first: Khalil Ahmad al-Saharanpuri and last: Western !Kung -[2018-02-13T08:39:24.324] [INFO] cheese - inserting 1000 documents. first: 2 51 honeycomb and last: Category:Canada political party histogram templates -[2018-02-13T08:39:24.372] [INFO] cheese - inserting 1000 documents. first: List of Melbourne Heart FC players and last: Kimsaqucha (disambiguation) -[2018-02-13T08:39:24.373] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:39:24.404] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:39:24.424] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:39:24.508] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:39:24.601] [INFO] cheese - inserting 1000 documents. first: Portal:Louisiana/Projects and last: Americana (film) -[2018-02-13T08:39:24.644] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T08:39:24.806] [INFO] cheese - inserting 1000 documents. first: Morecambe Bay cockling disaster 2004 and last: Teletouch -[2018-02-13T08:39:24.838] [INFO] cheese - inserting 1000 documents. first: Zagurski and last: Lorestan province -[2018-02-13T08:39:24.917] [INFO] cheese - inserting 1000 documents. first: Punjabi music and last: Odd man out -[2018-02-13T08:39:24.930] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:39:24.971] [INFO] cheese - inserting 1000 documents. first: Judo at the 2010 South American Games - Women's 78kg and last: Camaldine Abraw -[2018-02-13T08:39:24.979] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:39:25.048] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:39:25.111] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:39:25.167] [INFO] cheese - inserting 1000 documents. first: Grapevine trunk disease and last: Aberdare Urban District Council election, 1903 -[2018-02-13T08:39:25.210] [INFO] cheese - inserting 1000 documents. first: Greg Billington and last: Category:1988 American novels -[2018-02-13T08:39:25.216] [INFO] cheese - inserting 1000 documents. first: File:Maryland-easternshore.png and last: File:R1a distribution Eurasia.jpg -[2018-02-13T08:39:25.255] [INFO] cheese - inserting 1000 documents. first: Flat-headed Cat and last: Ultra-prominent summits of Hawaii -[2018-02-13T08:39:25.264] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:39:25.297] [INFO] cheese - inserting 1000 documents. first: 1996-97 Nemzeti Bajnokság I and last: Nicaragua - United States relations -[2018-02-13T08:39:25.331] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:39:25.391] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:39:25.391] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:39:25.413] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:39:25.581] [INFO] cheese - inserting 1000 documents. first: File:Shorey.jpg and last: Vabadussõjalaste Liit -[2018-02-13T08:39:25.619] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:39:25.696] [INFO] cheese - inserting 1000 documents. first: Namibia-Zimbabwe relations and last: Iran-Switzerland relations -[2018-02-13T08:39:25.728] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:39:25.767] [INFO] cheese - inserting 1000 documents. first: Philosophy of psychiatry and last: Charles-Marie de Trolong du Rumain -[2018-02-13T08:39:25.833] [INFO] cheese - inserting 1000 documents. first: Karl Lanckoronski and last: Catellus Development Corporation -[2018-02-13T08:39:25.833] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:39:25.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/2008 Summer Olympics medal table and last: File:Pacific Coast University logo.png -[2018-02-13T08:39:25.880] [INFO] cheese - inserting 1000 documents. first: Cossula and last: Epipactis cruenta -[2018-02-13T08:39:25.943] [INFO] cheese - inserting 1000 documents. first: R and D and last: USS Southfield (1857) -[2018-02-13T08:39:25.979] [INFO] cheese - inserting 1000 documents. first: The Speed of Darkness (EP) and last: Evelle Younger -[2018-02-13T08:39:26.006] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:39:26.013] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:39:26.080] [INFO] cheese - inserting 1000 documents. first: Alexander Schrijver and last: Headful of Ghosts -[2018-02-13T08:39:26.089] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:39:26.097] [INFO] cheese - inserting 1000 documents. first: 1987 World Championships in Athletics - Men's 3000 metre steeplechase and last: 1986-87 New York Rangers season -[2018-02-13T08:39:26.128] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:39:26.158] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:39:26.172] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:39:26.325] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:39:26.592] [INFO] cheese - inserting 1000 documents. first: 1975-76 Nemzeti Bajnokság I and last: 2002-03 Chelsea F.C. season -[2018-02-13T08:39:26.610] [INFO] cheese - inserting 1000 documents. first: Deep Earth Lady and last: File:Turn-Down Day - The Cyrkle.jpg -[2018-02-13T08:39:26.673] [INFO] cheese - inserting 1000 documents. first: 1933 World Figure Skating Championships and last: Frederick S. Perls -[2018-02-13T08:39:26.675] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:39:26.728] [INFO] cheese - inserting 1000 documents. first: Epipactis subclausa and last: File:Stafford Railway Building Society.png -[2018-02-13T08:39:26.731] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:39:26.759] [INFO] cheese - inserting 1000 documents. first: Misterton, Nottinghamshire and last: John Fife Symington -[2018-02-13T08:39:26.795] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:39:26.874] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:39:26.874] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:39:27.131] [INFO] cheese - inserting 1000 documents. first: Blackwater (town) and last: Wikipedia:Articles for deletion/The conscripts -[2018-02-13T08:39:27.209] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 2012–13 UEL GS and last: 1812 San Juan Capistrano earthquake -[2018-02-13T08:39:27.248] [INFO] cheese - inserting 1000 documents. first: Head Schoolboy and last: 1999-2000 La Liga -[2018-02-13T08:39:27.246] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:39:27.299] [INFO] cheese - inserting 1000 documents. first: John Symington and last: Robert Gernon -[2018-02-13T08:39:27.336] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:39:27.354] [INFO] cheese - inserting 1000 documents. first: Mike D and last: Derech Hashem -[2018-02-13T08:39:27.364] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:39:27.386] [INFO] cheese - inserting 1000 documents. first: File:Janani DO Madhavan.png and last: King Daddy II -[2018-02-13T08:39:27.417] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:39:27.498] [INFO] cheese - inserting 1000 documents. first: Sugar in wine and last: Tesinon -[2018-02-13T08:39:27.506] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:39:27.536] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T08:39:27.620] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:39:27.697] [INFO] cheese - inserting 1000 documents. first: Austrian football championship 1954-55 and last: List of roads in Hamilton -[2018-02-13T08:39:27.722] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T08:39:27.781] [INFO] cheese - inserting 1000 documents. first: PASKAL and last: Delaware (chicken) -[2018-02-13T08:39:27.897] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:39:27.898] [INFO] cheese - inserting 1000 documents. first: Portal:Biotechnology/Title/35 and last: Bambui -[2018-02-13T08:39:27.927] [INFO] cheese - inserting 1000 documents. first: Ivan Niven and last: SnoRNA SNORD50 -[2018-02-13T08:39:27.962] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:39:27.969] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:39:28.058] [INFO] cheese - inserting 1000 documents. first: Sun Bak and last: M. J. Kister -[2018-02-13T08:39:28.085] [INFO] cheese - inserting 1000 documents. first: File:ThisIsArtRecordingslogo.png and last: Another Code: R – A Journey into Lost Memories -[2018-02-13T08:39:28.108] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:39:28.140] [INFO] cheese - inserting 1000 documents. first: 1936–37 Michigan Wolverines men's basketball team and last: Karasi Bey -[2018-02-13T08:39:28.174] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:39:28.263] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:39:28.409] [INFO] cheese - inserting 1000 documents. first: Pareto Priority Index and last: 1998 European Athletics Championships – Men's 110 metre hurdles -[2018-02-13T08:39:28.417] [INFO] cheese - inserting 1000 documents. first: Gary Beach and last: Category:British novels -[2018-02-13T08:39:28.495] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:39:28.517] [INFO] cheese - inserting 1000 documents. first: Template:Urban Rail Transit in ASEAN and last: Pornographic film star -[2018-02-13T08:39:28.581] [INFO] cheese - inserting 1000 documents. first: Daniel Earhart and last: Arthur Wallace Steere -[2018-02-13T08:39:28.588] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:39:28.638] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:39:28.641] [INFO] cheese - inserting 1000 documents. first: Philippe deLacy and last: File:Tattertown.jpg -[2018-02-13T08:39:28.723] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:39:28.789] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:39:28.810] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Exeter Racecourse and last: Borough of Greenwich -[2018-02-13T08:39:28.855] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Humboldt County, California and last: Filthy Lucre (Californication episode) -[2018-02-13T08:39:28.884] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:39:28.960] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:39:29.022] [INFO] cheese - inserting 1000 documents. first: Kazakhstan - United States relations and last: 2007-08 Cymru Alliance -[2018-02-13T08:39:29.075] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:39:29.285] [INFO] cheese - inserting 1000 documents. first: George Noah and last: Lemelson Capital Management -[2018-02-13T08:39:29.306] [INFO] cheese - inserting 1000 documents. first: Ashbel Parsons Willard and last: Lyon and Healy -[2018-02-13T08:39:29.331] [INFO] cheese - inserting 1000 documents. first: 2012–13 Florida Panthers season and last: File:Eston railway station 1902.jpg -[2018-02-13T08:39:29.340] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:39:29.410] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:39:29.441] [INFO] cheese - inserting 1000 documents. first: Rajamundry and last: Note book -[2018-02-13T08:39:29.455] [INFO] cheese - inserting 1000 documents. first: Infantry divisions of the Soviet Union 1917-1957 and last: Fort Madison - Keokuk micropolitan area -[2018-02-13T08:39:29.516] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:39:29.584] [INFO] cheese - inserting 1000 documents. first: Russ Bell and last: 01 (disambiguation) -[2018-02-13T08:39:29.597] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:39:29.633] [INFO] cheese - inserting 1000 documents. first: BMW i Performance and last: File:Shaklee Logo.png -[2018-02-13T08:39:29.701] [INFO] cheese - batch complete in: 1.206 secs -[2018-02-13T08:39:29.715] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:39:29.768] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:39:29.872] [INFO] cheese - inserting 1000 documents. first: Leningrad udelivaet Ameriku Disk 2 and last: Wikipedia:List of featured articles English Wikipedia should have -[2018-02-13T08:39:29.948] [INFO] cheese - inserting 1000 documents. first: 1957-58 Beşiktaş JK season and last: 2009 World Championships in Athletics - Men's discus throw -[2018-02-13T08:39:29.969] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T08:39:29.972] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T08:39:29.987] [INFO] cheese - inserting 1000 documents. first: Kazi Zafar Ahmed and last: Earl Day Ehrhart -[2018-02-13T08:39:30.081] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:39:30.160] [INFO] cheese - inserting 1000 documents. first: Template:Noarlunga Centre railway line and last: Frank Foss (disambiguation) -[2018-02-13T08:39:30.167] [INFO] cheese - inserting 1000 documents. first: Marion H. Knight and last: Local variables, recursion and reentrancy -[2018-02-13T08:39:30.221] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:39:30.259] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:39:30.280] [INFO] cheese - inserting 1000 documents. first: 02 (disambiguation) and last: Wikipedia:Articles for deletion/Problem Solver -[2018-02-13T08:39:30.423] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:39:30.498] [INFO] cheese - inserting 1000 documents. first: Turbo Cat and last: Common Chimpanzees -[2018-02-13T08:39:30.532] [INFO] cheese - inserting 1000 documents. first: File:The Victorians Their story in pictures titlecard.jpg and last: Robert H. Gibbs, Jr. -[2018-02-13T08:39:30.582] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:39:30.626] [INFO] cheese - inserting 1000 documents. first: Bernard Docker and last: Jeffrey D. Perry -[2018-02-13T08:39:30.674] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:39:30.748] [INFO] cheese - inserting 1000 documents. first: Gloucester (MA) and last: Music of Basilicata -[2018-02-13T08:39:30.773] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:39:30.866] [INFO] cheese - inserting 1000 documents. first: Lomond No. 37, Saskatchewan and last: 2014 Internationaux de Tennis de BLOIS – Singles -[2018-02-13T08:39:30.963] [INFO] cheese - inserting 1000 documents. first: Note-book and last: Congolese franc -[2018-02-13T08:39:30.983] [INFO] cheese - inserting 1000 documents. first: List of minor planets/11401-11500 and last: Category:Tourist attractions in the London Borough of Barking and Dagenham -[2018-02-13T08:39:31.035] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:39:31.058] [INFO] cheese - inserting 1000 documents. first: Freeze Out (disambiguation) and last: Newfoundland expedition (1585) -[2018-02-13T08:39:31.074] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:39:31.169] [INFO] cheese - inserting 1000 documents. first: Journal of Raman Spectroscopy and last: Nancy J. Boettger -[2018-02-13T08:39:31.134] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:39:31.211] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:31.261] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:39:31.262] [INFO] cheese - batch complete in: 1.561 secs -[2018-02-13T08:39:31.333] [INFO] cheese - inserting 1000 documents. first: Battle at Rappahannock Station and last: Judge E. C. Hart -[2018-02-13T08:39:31.489] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:39:31.643] [INFO] cheese - inserting 1000 documents. first: 2008-09 Coventry City F.C. season and last: Cambodia - People's Repbulic of China relations -[2018-02-13T08:39:31.767] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:39:32.028] [INFO] cheese - inserting 1000 documents. first: Common bladderwort and last: SnoRNA SNORA51 -[2018-02-13T08:39:32.068] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:39:32.071] [INFO] cheese - inserting 1000 documents. first: Teleki-Bolyai Library and last: Arshak Jamalyan -[2018-02-13T08:39:32.119] [INFO] cheese - inserting 1000 documents. first: Fleetwood Freeport and last: Category:Paintings by Caspar David Friedrich -[2018-02-13T08:39:32.126] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:39:32.143] [INFO] cheese - inserting 1000 documents. first: Cureton House and last: Category:World War I ships of China -[2018-02-13T08:39:32.197] [INFO] cheese - inserting 1000 documents. first: Middle nasal meatus and last: Kamate haka -[2018-02-13T08:39:32.321] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:39:32.340] [INFO] cheese - inserting 1000 documents. first: Pelosia and last: File:MoraIK.png -[2018-02-13T08:39:32.383] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T08:39:32.413] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:39:32.555] [INFO] cheese - inserting 1000 documents. first: Belarus - European Union relations and last: 7057 Al-Fārābī -[2018-02-13T08:39:32.701] [INFO] cheese - inserting 1000 documents. first: Young Hotspur and last: Beechmont -[2018-02-13T08:39:32.765] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T08:39:32.812] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:39:32.890] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:39:32.940] [INFO] cheese - inserting 1000 documents. first: Erectile bone and last: Andrew Stevens -[2018-02-13T08:39:32.961] [INFO] cheese - inserting 1000 documents. first: Jacqulin Hume Foundation and last: Painted Frog -[2018-02-13T08:39:33.156] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:39:33.295] [INFO] cheese - batch complete in: 2.033 secs -[2018-02-13T08:39:33.333] [INFO] cheese - inserting 1000 documents. first: Elvira, Mistress of the dark and last: Zijad Švrakić -[2018-02-13T08:39:33.569] [INFO] cheese - batch complete in: 1.248 secs -[2018-02-13T08:39:33.757] [INFO] cheese - inserting 1000 documents. first: Emil Strub and last: Sir John Ellerman -[2018-02-13T08:39:33.763] [INFO] cheese - inserting 1000 documents. first: Stress measures and last: File:Springfield Kings.png -[2018-02-13T08:39:33.777] [INFO] cheese - inserting 1000 documents. first: Category:Paintings by Rudolf Frentz and last: Baghalduz-e Olya -[2018-02-13T08:39:33.839] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:39:33.844] [INFO] cheese - inserting 1000 documents. first: Myxas glutinosa and last: Robert Bowne Minturn -[2018-02-13T08:39:33.923] [INFO] cheese - batch complete in: 1.54 secs -[2018-02-13T08:39:33.927] [INFO] cheese - inserting 1000 documents. first: John Lovelace, 2nd Baron Lovelace and last: Book:Wikipedia Signpost/2006-05-01 -[2018-02-13T08:39:33.931] [INFO] cheese - batch complete in: 1.517 secs -[2018-02-13T08:39:33.943] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:39:34.170] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:39:34.253] [INFO] cheese - inserting 1000 documents. first: Symbols of Himachal Pradesh and last: Wikipedia:Articles for deletion/Janine Circincione -[2018-02-13T08:39:34.380] [INFO] cheese - inserting 1000 documents. first: Dominik Kun and last: Wikipedia:BMJ/Navbox -[2018-02-13T08:39:34.402] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:39:34.405] [INFO] cheese - inserting 1000 documents. first: Jim Rose Circus and last: Wikipedia:Today's featured article/August 27, 2005 -[2018-02-13T08:39:34.441] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:39:34.528] [INFO] cheese - inserting 1000 documents. first: Federal electoral districts of Mexico and last: Garadheancal -[2018-02-13T08:39:34.541] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:39:34.666] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:39:34.774] [INFO] cheese - inserting 1000 documents. first: Classical wave tunneling and last: File:The Benevolent Volume Lurkings.jpg -[2018-02-13T08:39:34.837] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:39:34.844] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota Supreme Court and last: Byron Brad McCrimmon -[2018-02-13T08:39:34.955] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/News/Newsletter March 2006 and last: Madara (manga) -[2018-02-13T08:39:34.964] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:39:35.017] [INFO] cheese - inserting 1000 documents. first: Book:Wikipedia Signpost/2006-05-08 and last: Category:Eurovision songs of Portugal -[2018-02-13T08:39:35.095] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:39:35.191] [INFO] cheese - inserting 1000 documents. first: 72993 Hannahlivsey and last: Shany Kedmy -[2018-02-13T08:39:35.205] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:39:35.296] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:39:35.388] [INFO] cheese - inserting 1000 documents. first: Fenario and last: Canadian Journal of Occupational Therapy -[2018-02-13T08:39:35.448] [INFO] cheese - inserting 1000 documents. first: Template:User EU Balkans and last: List of Registered Historic Places in Maine -[2018-02-13T08:39:35.481] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:39:35.616] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/August 28, 2005 and last: Intermediate representation -[2018-02-13T08:39:35.648] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:39:35.730] [INFO] cheese - inserting 1000 documents. first: Canfield Village Middle School and last: Incurvaria circulella -[2018-02-13T08:39:35.830] [INFO] cheese - batch complete in: 1.288 secs -[2018-02-13T08:39:35.846] [INFO] cheese - inserting 1000 documents. first: Server Appliance and last: Super 530F -[2018-02-13T08:39:35.830] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:39:35.992] [INFO] cheese - inserting 1000 documents. first: Mpumalanga Province and last: HFSJ -[2018-02-13T08:39:36.044] [INFO] cheese - batch complete in: 1.08 secs -[2018-02-13T08:39:36.188] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 472001–473000 and last: Category:Transportation buildings and structures on the National Register of Historic Places in Oregon -[2018-02-13T08:39:36.169] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:39:36.278] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:39:36.409] [INFO] cheese - inserting 1000 documents. first: Wildlife sanctuaries in Uttar Pradesh and last: Wescorp Energy Inc. -[2018-02-13T08:39:36.445] [INFO] cheese - inserting 1000 documents. first: Helston Community College and last: Uganik, Alaska -[2018-02-13T08:39:36.462] [INFO] cheese - inserting 1000 documents. first: Slava Moscow and last: Portal:London/Showcase picture/06 2010 -[2018-02-13T08:39:36.475] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:39:36.495] [INFO] cheese - inserting 1000 documents. first: Evangelical Church of the Union and last: Eisosomes -[2018-02-13T08:39:36.655] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:39:36.692] [INFO] cheese - batch complete in: 1.487 secs -[2018-02-13T08:39:36.740] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:39:36.894] [INFO] cheese - inserting 1000 documents. first: Chile men's national basketball team and last: Haerentibaculum -[2018-02-13T08:39:36.955] [INFO] cheese - inserting 1000 documents. first: İstranca Mountains and last: Fernando Margáin -[2018-02-13T08:39:36.962] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:39:36.975] [INFO] cheese - inserting 1000 documents. first: Mmm, Mmm, Mmm, Mmm and last: Buford "Mad Dog" Tannen -[2018-02-13T08:39:36.999] [INFO] cheese - inserting 1000 documents. first: Strathcona Baptist Girls' Grammar and last: Portal:Nontheism/Selected biography/December 2006 -[2018-02-13T08:39:37.064] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:39:37.112] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:39:37.166] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:39:37.224] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Caernarvon Athletic and last: Arudou -[2018-02-13T08:39:37.299] [INFO] cheese - inserting 1000 documents. first: Philiodoron frater and last: Category:Paraguayan historical films -[2018-02-13T08:39:37.344] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:39:37.394] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cheapkingdom.com and last: File:More Than A Thousand album cover.jpg -[2018-02-13T08:39:37.418] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:39:37.463] [INFO] cheese - inserting 1000 documents. first: Over-the-air broadcasting and last: Chris Stokes (bobsleigh) -[2018-02-13T08:39:37.494] [INFO] cheese - inserting 1000 documents. first: Riba (disambiguation) and last: Dongo language (Ubangian) -[2018-02-13T08:39:37.513] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:39:37.568] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:39:37.615] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:39:37.910] [INFO] cheese - inserting 1000 documents. first: Sumerian calendar and last: Ohio State Route 720 -[2018-02-13T08:39:37.980] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:39:37.989] [INFO] cheese - inserting 1000 documents. first: Debito and last: Demoblican -[2018-02-13T08:39:38.018] [INFO] cheese - inserting 1000 documents. first: Category:Paraguayan films by genre and last: Thoracibidion flavopictum -[2018-02-13T08:39:38.087] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:39:38.115] [INFO] cheese - inserting 1000 documents. first: National Museum of the United States Navy and last: KOZK -[2018-02-13T08:39:38.141] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:39:38.152] [INFO] cheese - inserting 1000 documents. first: Haravrd and last: Jose Vasconcelos -[2018-02-13T08:39:38.228] [INFO] cheese - inserting 1000 documents. first: History of Arrah and last: Template:Ranks and Insignia of Non NATO Navies/OR/New Zealand -[2018-02-13T08:39:38.276] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:39:38.324] [INFO] cheese - inserting 1000 documents. first: Alexandru Birladeanu and last: Sergei Solnechnikov -[2018-02-13T08:39:38.388] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T08:39:38.414] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:39:38.499] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:39:38.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Makebelievee and last: Fourth Avenue / Ninth Street (New York City Subway) -[2018-02-13T08:39:38.611] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:39:38.720] [INFO] cheese - inserting 1000 documents. first: Demublican and last: Lake alta -[2018-02-13T08:39:38.784] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:39:38.816] [INFO] cheese - inserting 1000 documents. first: Edward Horne and last: Doc Shebeleza -[2018-02-13T08:39:38.891] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:39:39.027] [INFO] cheese - inserting 1000 documents. first: USS Whippoorwill (AMS-207) and last: File:Fiume-class.PNG -[2018-02-13T08:39:39.102] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:39:39.108] [INFO] cheese - inserting 1000 documents. first: Lake dunstan and last: Novosibirsk reservoir -[2018-02-13T08:39:39.141] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T08:39:39.144] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/May 7, 2012 and last: German University of Administrative Sciences -[2018-02-13T08:39:39.201] [INFO] cheese - inserting 1000 documents. first: Draft:Reflective crack and last: Category:Lists of people killed in World War I -[2018-02-13T08:39:39.219] [INFO] cheese - inserting 1000 documents. first: U.S. Route 78 in Alabama and last: UN/LOCODE:CSULC -[2018-02-13T08:39:39.280] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:39:39.321] [INFO] cheese - inserting 1000 documents. first: Category:Alternative rock groups from Nevada and last: Asana (software) -[2018-02-13T08:39:39.405] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:39.405] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:39:39.433] [INFO] cheese - inserting 1000 documents. first: Big penis and last: Sanford Independence Bowl -[2018-02-13T08:39:39.442] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:39:39.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dance Evolution and last: Steven Schwartz (vice-chancellor) -[2018-02-13T08:39:39.542] [INFO] cheese - inserting 1000 documents. first: Fonthill lake and last: Salvation Committee -[2018-02-13T08:39:39.567] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:39:39.572] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:39:39.570] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:39:39.917] [INFO] cheese - inserting 1000 documents. first: Cannibal Isles and last: File:Mercer University Historic Quad North.jpg -[2018-02-13T08:39:39.925] [INFO] cheese - inserting 1000 documents. first: File:Syd.dock.jpg and last: Underdaks -[2018-02-13T08:39:40.022] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:39:40.063] [INFO] cheese - inserting 1000 documents. first: Nogai in the Bala Türkvizyon Song Contest and last: Olympic Art Competition -[2018-02-13T08:39:40.066] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:39:40.080] [INFO] cheese - inserting 1000 documents. first: Undersecretary of Commerce for International Trade and last: Category:PAOK FC players -[2018-02-13T08:39:40.119] [INFO] cheese - inserting 1000 documents. first: Ricardo Balbín and last: Category:Flamenco musicians by instrument -[2018-02-13T08:39:40.155] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:39:40.217] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:39:40.237] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:39:40.252] [INFO] cheese - inserting 1000 documents. first: Template:Tollywood films and last: Jose Armando Melo -[2018-02-13T08:39:40.278] [INFO] cheese - inserting 1000 documents. first: File:Gela405.PNG and last: Wikipedia:Articles for deletion/Blütreich -[2018-02-13T08:39:40.324] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:39:40.403] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:39:40.527] [INFO] cheese - inserting 1000 documents. first: MainStay Independence Bowl and last: Weaubleau structure -[2018-02-13T08:39:40.648] [INFO] cheese - inserting 1000 documents. first: Template:SIA Barnstar and last: Template:Editnotices/Page/Mike Mills -[2018-02-13T08:39:40.656] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:39:40.740] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:39:40.765] [INFO] cheese - inserting 1000 documents. first: Glabrous dermis and last: Third way -[2018-02-13T08:39:40.774] [INFO] cheese - inserting 1000 documents. first: File:Street in the Sorbian Quarter.jpg and last: Masters W65 800 metres world record progression -[2018-02-13T08:39:40.883] [INFO] cheese - inserting 1000 documents. first: Quarryhouse Moor Ponds and last: Category:Summer Olympics competitors for American Samoa -[2018-02-13T08:39:40.887] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:39:40.895] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:39:40.949] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:39:40.985] [INFO] cheese - inserting 1000 documents. first: Richard Vigneault and last: Minnesota dot -[2018-02-13T08:39:41.097] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:39:41.204] [INFO] cheese - inserting 1000 documents. first: Category:Halloween albums and last: Girlfriend -[2018-02-13T08:39:41.300] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Mine Smell Like Honey and last: County Route 53 (Saratoga County, New York) -[2018-02-13T08:39:41.315] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:39:41.409] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:39:41.437] [INFO] cheese - inserting 1000 documents. first: Reicke and last: 13 Voices (song) -[2018-02-13T08:39:41.487] [INFO] cheese - inserting 1000 documents. first: Creighton model and last: Unauthorised copying -[2018-02-13T08:39:41.510] [INFO] cheese - inserting 1000 documents. first: Masters W70 800 metres world record progression and last: Final Fantasy Explorers -[2018-02-13T08:39:41.553] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:39:41.571] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:39:41.642] [INFO] cheese - inserting 1000 documents. first: File:CTA red line rerouted.jpg and last: FAR Part 103 -[2018-02-13T08:39:41.651] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:39:41.767] [INFO] cheese - batch complete in: 1.443 secs -[2018-02-13T08:39:41.790] [INFO] cheese - inserting 1000 documents. first: Etsuko Kozakura and last: Inertial -[2018-02-13T08:39:41.831] [INFO] cheese - inserting 1000 documents. first: William Berger and last: Stuora galbajávri -[2018-02-13T08:39:41.954] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:39:42.007] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:39:42.026] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vargathrone and last: WIN 35428 -[2018-02-13T08:39:42.121] [INFO] cheese - inserting 1000 documents. first: County Route 54 (Saratoga County, New York) and last: Graphical waterfall -[2018-02-13T08:39:42.206] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:39:42.246] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:39:42.286] [INFO] cheese - inserting 1000 documents. first: Gaz Metan II Mediaș and last: Walther Gothan -[2018-02-13T08:39:42.320] [INFO] cheese - inserting 1000 documents. first: Dumb-Ass Partners and last: River Melfa -[2018-02-13T08:39:42.337] [INFO] cheese - inserting 1000 documents. first: Suolojávri (kautokeino) and last: Heatmeiser -[2018-02-13T08:39:42.356] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:39:42.435] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:39:42.487] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:39:42.603] [INFO] cheese - inserting 1000 documents. first: United States women's movement (1963 - 1981) and last: Ammonoossuc -[2018-02-13T08:39:42.624] [INFO] cheese - inserting 1000 documents. first: Forst Cantú and last: Zombification -[2018-02-13T08:39:42.779] [INFO] cheese - inserting 1000 documents. first: Great south pond and last: San Telmo Island -[2018-02-13T08:39:42.781] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:39:42.779] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:39:42.901] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:39:43.118] [INFO] cheese - inserting 1000 documents. first: Group responsibility and last: Ghaleh Joogh -[2018-02-13T08:39:43.196] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article removal candidates/Economics and last: Mount LeConte -[2018-02-13T08:39:43.201] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:39:43.205] [INFO] cheese - inserting 1000 documents. first: NBN Virtual School of Emerging Sciences and last: Eucosma lugubrana -[2018-02-13T08:39:43.309] [INFO] cheese - inserting 1000 documents. first: Croniades pieria and last: File:Nigerian Capital Development Fund (NCDF), Old Logo.png -[2018-02-13T08:39:43.313] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:39:43.371] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:39:43.424] [INFO] cheese - inserting 1000 documents. first: Leslie Hunterr and last: Katherine Cressida -[2018-02-13T08:39:43.480] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:39:43.522] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:39:43.586] [INFO] cheese - inserting 1000 documents. first: Jang Dong-Gun and last: VT52 -[2018-02-13T08:39:43.725] [INFO] cheese - batch complete in: 1.718 secs -[2018-02-13T08:39:43.758] [INFO] cheese - inserting 1000 documents. first: McClelland College and last: Category:Solihull Moors F.C. players -[2018-02-13T08:39:43.769] [INFO] cheese - inserting 1000 documents. first: Category:Kindersley No. 290, Saskatchewan and last: Wikipedia:Featured article candidates/Waddesdon Road railway station/archive1 -[2018-02-13T08:39:43.868] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:39:43.880] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:39:43.895] [INFO] cheese - inserting 1000 documents. first: Ghal'eh Joogh and last: Category:Songs written by Michael Scholz -[2018-02-13T08:39:43.978] [INFO] cheese - inserting 1000 documents. first: Joseph Casper and last: USS Longspur (MHC-28) -[2018-02-13T08:39:44.004] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:39:44.039] [INFO] cheese - inserting 1000 documents. first: Sir Thomas Stanhope and last: Religious drugs -[2018-02-13T08:39:44.054] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:39:44.119] [INFO] cheese - batch complete in: 0.806 secs +[2018-02-13T13:29:48.557] [INFO] cheese - worker pid:71641 is now alive. startByte: 0 endByte: 3633830694 +[2018-02-13T13:29:48.557] [INFO] cheese - worker pid:71640 is now alive. startByte: 10891492082 endByte: 14525322776 +[2018-02-13T13:29:48.557] [INFO] cheese - worker pid:71643 is now alive. startByte: 7260661388 endByte: 10894492082 +[2018-02-13T13:29:48.557] [INFO] cheese - worker pid:71642 is now alive. startByte: 3629830694 endByte: 7263661388 +[2018-02-13T13:34:01.285] [ERROR] cheese - err: empty pages arr +[2018-02-13T13:34:01.285] [INFO] cheese - worker pid:71641 is done. inserted 0 pages in 252.67 secs. +[2018-02-13T13:34:07.139] [ERROR] cheese - err: empty pages arr +[2018-02-13T13:34:07.139] [INFO] cheese - worker pid:71640 is done. inserted 0 pages in 258.531 secs. +[2018-02-13T13:34:07.312] [ERROR] cheese - err: empty pages arr +[2018-02-13T13:34:07.313] [INFO] cheese - worker pid:71642 is done. inserted 0 pages in 258.658 secs. +[2018-02-13T13:34:07.490] [ERROR] cheese - err: empty pages arr +[2018-02-13T13:34:07.491] [INFO] cheese - worker pid:71643 is done. inserted 0 pages in 258.873 secs. From 9bd4565ab602dd49aa9e8b10bf532f95a775f48a Mon Sep 17 00:00:00 2001 From: spencermountain Date: Tue, 13 Feb 2018 14:45:48 -0500 Subject: [PATCH 12/42] skip non-0 namespace, redirects --- scratch.js | 4 +++- src/00-init-db.js | 11 +++++++---- src/multithreader.js | 4 +--- src/worker.js | 7 ++++++- worker.logs | 12 ------------ 5 files changed, 17 insertions(+), 21 deletions(-) diff --git a/scratch.js b/scratch.js index 4972560..69a2561 100644 --- a/scratch.js +++ b/scratch.js @@ -1,6 +1,8 @@ const w2m = require('./src') -const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' +// const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' +const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' +// const path = './tests/tinywiki-latest-pages-articles.xml.bz2' w2m({ file: path, db: 'enpwiki', diff --git a/src/00-init-db.js b/src/00-init-db.js index 5fefc9a..18958a0 100644 --- a/src/00-init-db.js +++ b/src/00-init-db.js @@ -2,9 +2,12 @@ const MongoClient = require('mongodb').MongoClient; const fs = require("fs") //start it up running -const init = async (options={skip_first:0,verbose:true}) => { +const init = async ( options = { + skip_first: 0, + verbose: true + } ) => { - return new Promise( async (resolve,reject) => { + return new Promise(async (resolve, reject) => { //this is required if (!fs.existsSync(options.file)) { console.log('please supply a filename for the wikipedia article dump in xml format'); @@ -16,8 +19,8 @@ const init = async (options={skip_first:0,verbose:true}) => { } // Connect to mongo let url = 'mongodb://localhost:27017/' + options.db; - options.db = await MongoClient.connect(url) - options.collection = options.db.collection('wikipedia'); + options.db = await MongoClient.connect(url) + options.collection = options.db.collection('wikipedia'); // if (options.auto_skip) { // options.skip_first = await options.collection.count() diff --git a/src/multithreader.js b/src/multithreader.js index 808b84a..a2902e1 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -7,9 +7,7 @@ var WorkerNodes, workerNodes; WorkerNodes = require('worker-nodes'); - fs = require("fs"); - cpus = require('os').cpus() cpuCount = cpus.length; @@ -38,7 +36,7 @@ start = async function(options) { chunkSize = Math.floor(size / cpuCount); console.log(`${cpuCount} cpu cores detected. file size (bytes): ${size} file will be divided into: ${cpuCount} each process will be given (bytes): ${chunkSize}`); console.log(`launching ${cpuCount} processes. do ctrl-c to kill all.`); - console.log("do tail -f ../worker.logs on a separate terminal window for logs."); + console.log("do tail -f ./worker.logs on a separate terminal window for logs."); await workerNodes.ready(); diff --git a/src/worker.js b/src/worker.js index 4048a99..c339cd7 100644 --- a/src/worker.js +++ b/src/worker.js @@ -86,7 +86,12 @@ const xmlSplit = async (options, chunkSize, workerNr) => { page._id = line.substring(line.lastIndexOf("") + 7, line.lastIndexOf("")); } } - if (line.indexOf("")) { + //skip any pages not in the '0' namespace + if (line.indexOf("") !== -1 && line.indexOf("0") === -1) { + skipPage = true; + } + //skip pages that are a redirect, too + if (line.indexOf(" { + console.log('dropped existing pages\n') + w2m({ + file: path, + db: dbName, + }) }) diff --git a/src/index.js b/src/index.js index 9ff55f6..b253149 100755 --- a/src/index.js +++ b/src/index.js @@ -18,8 +18,8 @@ const main = async (options, callback = noop ) => { await init(options) setInterval(async () => { count = await options.db.collection("queue").count() - console.log(`final doc count: ${count} in last 60 seconds.`) - }, 60000) + console.log(`final doc count: ${count} in last 10 seconds.`) + }, 10000) } diff --git a/src/worker.js b/src/worker.js index c339cd7..4618293 100644 --- a/src/worker.js +++ b/src/worker.js @@ -1,6 +1,7 @@ const LineByLineReader = require('line-by-line') const init = require('./00-init-db'); const log4js = require('log4js'); +const config = require('../config') log4js.configure({ appenders: { @@ -16,18 +17,16 @@ log4js.configure({ } } }); - - const logger = log4js.getLogger('cheese'); const xmlSplit = async (options, chunkSize, workerNr) => { - var file, - insertToDb, + var insertToDb, lineNumber, lr, page, pageCount, - pages; + pages, + skipPage; if (workerNr === 0) { startByte = 0 @@ -35,16 +34,13 @@ const xmlSplit = async (options, chunkSize, workerNr) => { // start a megabyte earlier startByte = (workerNr * chunkSize) - 1000000 } - // end 2 megabytes later so we don't lose pages cut by chunks endByte = startByte + chunkSize + 3000000 - logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) await init(options) - file = options.file; - lr = new LineByLineReader(file, { + lr = new LineByLineReader(options.file, { start: startByte, end: endByte }); @@ -52,9 +48,10 @@ const xmlSplit = async (options, chunkSize, workerNr) => { page = null; pageCount = 0; pages = []; - var skipPage = false; + skipPage = false; workerBegin = Date.now() jobBegin = Date.now() + insertToDb = function() { var insertMany; if (pages.length === 0) { @@ -65,15 +62,17 @@ const xmlSplit = async (options, chunkSize, workerNr) => { insertMany = Object.assign([], pages); logger.info("inserting", insertMany.length, "documents. first:", insertMany[0]._id, "and last:", insertMany[insertMany.length - 1]._id); pages = []; - options.db.collection("queue").insertMany(insertMany, function() { + options.db.collection(config.queueLocation).insertMany(insertMany, function() { // tbd. error checks }); logger.info("batch complete in: " + ((Date.now() - jobBegin) / 1000) + " secs") jobBegin = Date.now() return lr.resume(); }; + lr.on('error', function(err) { // 'err' contains error object + console.error(err) return logger.error("linereader error"); }); diff --git a/tests/cli.test.js b/tests/cli.test.js index d3e3115..1b4a6dd 100644 --- a/tests/cli.test.js +++ b/tests/cli.test.js @@ -4,7 +4,7 @@ let db = require('./db') // this test actually writes to mongodb! ( in the tlg-wikipedia table) test('test-real-smallwiki', function(t) { - db.drop('smallwiki', () => { + db.drop('smallwiki', 'wikipedia', () => { exec('./bin/wp2mongo.js ./tests/smallwiki-latest-pages-articles.xml.bz2') db.count('smallwiki', count => { t.equal(count, 1050, 'count-is-correct') diff --git a/tests/custom.test.js b/tests/custom.test.js index fa36362..68ce58f 100644 --- a/tests/custom.test.js +++ b/tests/custom.test.js @@ -10,7 +10,7 @@ test('custom-made-tinywiki', function(t) { file: './tests/tinywiki-latest-pages-articles.xml.bz2', db: 'tempwiki', } - db.drop(obj.db, () => { + db.drop(obj.db, 'wikipedia', () => { wp2mongo(obj, () => { db.firstTen(obj.db, docs => { t.equal(docs.length, 7, 'seven records') diff --git a/tests/db.js b/tests/db.js index 2d83d31..0a8b247 100644 --- a/tests/db.js +++ b/tests/db.js @@ -38,9 +38,9 @@ const firstTen = function(dbName, cb) { } //delete all pages -const drop = function(dbName, cb) { +const drop = function(dbName, colName, cb) { open(dbName, function(db) { - let col = db.collection('wikipedia') + let col = db.collection(colName) col.deleteMany({}) setTimeout(function() { db.close() @@ -56,4 +56,4 @@ module.exports = { } // firstTwo('tempwiki', console.log) // open('tempwiki', console.log) -drop('smallwiki', console.log) +// drop('smallwiki', 'wikipedia',console.log) diff --git a/tests/plain.test.js b/tests/plain.test.js index 52a2c76..e24e214 100644 --- a/tests/plain.test.js +++ b/tests/plain.test.js @@ -8,7 +8,7 @@ test('plaintext', function(t) { db: 'plainwiki', plaintext: true } - db.drop(obj.db, () => { + db.drop(obj.db, 'wikipedia', () => { wp2mongo(obj, () => { db.firstTen(obj.db, docs => { t.equal(docs.length, 7, '7 records') diff --git a/worker.logs b/worker.logs index e69de29..f08cbfc 100644 --- a/worker.logs +++ b/worker.logs @@ -0,0 +1,50 @@ +[2018-02-13T14:54:54.409] [INFO] cheese - worker pid:82033 is now alive. startByte: 150021017 endByte: 304042034 +[2018-02-13T14:54:54.409] [INFO] cheese - worker pid:82032 is now alive. startByte: 0 endByte: 154021017 +[2018-02-13T14:54:54.410] [INFO] cheese - worker pid:82035 is now alive. startByte: 452063051 endByte: 606084068 +[2018-02-13T14:54:54.420] [INFO] cheese - worker pid:82034 is now alive. startByte: 301042034 endByte: 455063051 +[2018-02-13T14:55:20.898] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) +[2018-02-13T14:55:22.059] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States +[2018-02-13T14:55:22.171] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin +[2018-02-13T14:55:22.387] [INFO] cheese - batch complete in: 27.881 secs +[2018-02-13T14:55:22.387] [INFO] cheese - worker pid:82035 is done. inserted 62328 pages in 0 secs. +[2018-02-13T14:55:23.873] [INFO] cheese - batch complete in: 29.396 secs +[2018-02-13T14:55:23.873] [INFO] cheese - worker pid:82034 is done. inserted 62522 pages in 0 secs. +[2018-02-13T14:55:23.887] [INFO] cheese - batch complete in: 29.409 secs +[2018-02-13T14:55:23.887] [INFO] cheese - worker pid:82033 is done. inserted 63109 pages in 0 secs. +[2018-02-13T14:59:46.077] [INFO] cheese - worker pid:82583 is now alive. startByte: 0 endByte: 154021017 +[2018-02-13T14:59:46.081] [INFO] cheese - worker pid:82586 is now alive. startByte: 452063051 endByte: 606084068 +[2018-02-13T14:59:46.080] [INFO] cheese - worker pid:82584 is now alive. startByte: 150021017 endByte: 304042034 +[2018-02-13T14:59:46.081] [INFO] cheese - worker pid:82585 is now alive. startByte: 301042034 endByte: 455063051 +[2018-02-13T15:00:08.929] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) +[2018-02-13T15:00:09.652] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin +[2018-02-13T15:00:09.933] [INFO] cheese - batch complete in: 23.806 secs +[2018-02-13T15:00:09.933] [INFO] cheese - worker pid:82586 is done. inserted 62328 pages in 0 secs. +[2018-02-13T15:00:10.063] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States +[2018-02-13T15:00:11.221] [INFO] cheese - batch complete in: 25.095 secs +[2018-02-13T15:00:11.221] [INFO] cheese - worker pid:82584 is done. inserted 63109 pages in 0 secs. +[2018-02-13T15:00:11.781] [INFO] cheese - batch complete in: 25.612 secs +[2018-02-13T15:00:11.782] [INFO] cheese - worker pid:82585 is done. inserted 62522 pages in 0.001 secs. +[2018-02-13T15:01:57.901] [INFO] cheese - worker pid:82844 is now alive. startByte: 0 endByte: 154021017 +[2018-02-13T15:01:57.901] [INFO] cheese - worker pid:82845 is now alive. startByte: 150021017 endByte: 304042034 +[2018-02-13T15:01:57.902] [INFO] cheese - worker pid:82846 is now alive. startByte: 301042034 endByte: 455063051 +[2018-02-13T15:01:57.903] [INFO] cheese - worker pid:82847 is now alive. startByte: 452063051 endByte: 606084068 +[2018-02-13T15:07:09.121] [INFO] cheese - worker pid:83540 is now alive. startByte: 0 endByte: 154021017 +[2018-02-13T15:07:09.122] [INFO] cheese - worker pid:83541 is now alive. startByte: 150021017 endByte: 304042034 +[2018-02-13T15:07:09.126] [INFO] cheese - worker pid:83543 is now alive. startByte: 452063051 endByte: 606084068 +[2018-02-13T15:07:09.125] [INFO] cheese - worker pid:83542 is now alive. startByte: 301042034 endByte: 455063051 +[2018-02-13T15:07:31.442] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) +[2018-02-13T15:07:32.822] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin +[2018-02-13T15:07:32.865] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States +[2018-02-13T15:08:19.245] [INFO] cheese - worker pid:83671 is now alive. startByte: 452063051 endByte: 606084068 +[2018-02-13T15:08:19.244] [INFO] cheese - worker pid:83669 is now alive. startByte: 150021017 endByte: 304042034 +[2018-02-13T15:08:19.244] [INFO] cheese - worker pid:83668 is now alive. startByte: 0 endByte: 154021017 +[2018-02-13T15:08:19.244] [INFO] cheese - worker pid:83670 is now alive. startByte: 301042034 endByte: 455063051 +[2018-02-13T15:08:41.262] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) +[2018-02-13T15:08:42.210] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin +[2018-02-13T15:08:42.218] [INFO] cheese - batch complete in: 22.929 secs +[2018-02-13T15:08:42.219] [INFO] cheese - worker pid:83671 is done. inserted 62328 pages in 0 secs. +[2018-02-13T15:08:42.939] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States +[2018-02-13T15:08:43.161] [INFO] cheese - batch complete in: 23.871 secs +[2018-02-13T15:08:43.161] [INFO] cheese - worker pid:83669 is done. inserted 63109 pages in 0 secs. +[2018-02-13T15:08:44.564] [INFO] cheese - batch complete in: 25.252 secs +[2018-02-13T15:08:44.565] [INFO] cheese - worker pid:83670 is done. inserted 62522 pages in 0.001 secs. From d3ba784802f8c555a0115fa9790490e42a5ad3b1 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Tue, 13 Feb 2018 15:47:37 -0500 Subject: [PATCH 14/42] add default batch_size, add filesize to logs --- config.js | 4 +- package-lock.json | 5 + package.json | 3 +- src/index.js | 10 +- src/multithreader.js | 52 +- src/worker.js | 5 +- worker.logs | 1181 ++++++++++++++++++++++++++++++++++++++++-- 7 files changed, 1175 insertions(+), 85 deletions(-) diff --git a/config.js b/config.js index 408695a..a86b1f3 100644 --- a/config.js +++ b/config.js @@ -1,4 +1,6 @@ module.exports = { //which collection to store temporary queued-up xml strings - "queueLocation": 'queue' + "queue": 'queue', + //number of pages to write at a time, to the queue + "batch_size": 1000 } diff --git a/package-lock.json b/package-lock.json index 49f77ef..71dc3c6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -861,6 +861,11 @@ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "optional": true }, + "filesize": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.0.tgz", + "integrity": "sha512-g5OWtoZWcPI56js1DFhIEqyG9tnu/7sG3foHwgS9KGYFMfsYguI3E+PRVCmtmE96VajQIEMRU2OhN+ME589Gdw==" + }, "finalhandler": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", diff --git a/package.json b/package.json index 7de9c3c..2c5a1a4 100644 --- a/package.json +++ b/package.json @@ -16,11 +16,12 @@ "main": "./src/index.js", "scripts": { "test": "\"node_modules/.bin/tape\" \"./tests/*.test.js\" | \"node_modules/.bin/tap-spec\" --color", - "cleanup":"rm ./worker.logs && touch ./worker.logs" + "cleanup": "rm ./worker.logs && touch ./worker.logs" }, "dependencies": { "cluster": "^0.7.7", "commander": "^2.12.0", + "filesize": "^3.6.0", "kue": "^0.11.1", "line-by-line": "^0.1.6", "log4js": "^2.5.3", diff --git a/src/index.js b/src/index.js index b253149..ec6f26d 100755 --- a/src/index.js +++ b/src/index.js @@ -2,9 +2,13 @@ // usage: // node index.js afwiki-latest-pages-articles.xml.bz2 const init = require('./00-init-db'); +const config = require('../config') const multithreader = require("./multithreader") const noop = () => { } +const defaults = { + batch_size: config.batch_size +} process.on('unhandledRejection', up => { console.log(up) @@ -12,13 +16,13 @@ process.on('unhandledRejection', up => { //open up a mongo db, and start xml-streaming.. const main = async (options, callback = noop ) => { - params = Object.assign({}, options); + params = Object.assign({}, options, defaults); multithreader.start(params) await init(options) setInterval(async () => { - count = await options.db.collection("queue").count() - console.log(`final doc count: ${count} in last 10 seconds.`) + count = await options.db.collection(config.queue).count() + console.log(`queue size: ${count}`) }, 10000) } diff --git a/src/multithreader.js b/src/multithreader.js index a2902e1..8f2b741 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -1,15 +1,8 @@ -var WorkerNodes, - cpuCount, - fs, - start, - workerLog, - workerLogs, - workerNodes; - -WorkerNodes = require('worker-nodes'); -fs = require("fs"); -cpus = require('os').cpus() -cpuCount = cpus.length; +const filesize = require('filesize'); +const fs = require("fs"); +const WorkerNodes = require('worker-nodes'); +const cpus = require('os').cpus() +const cpuCount = cpus.length; workerNodes = new WorkerNodes(__dirname + '/worker.js', { minWorkers: cpuCount - 1, @@ -17,26 +10,29 @@ workerNodes = new WorkerNodes(__dirname + '/worker.js', { maxTasksPerWorker: 1 }); -workerLogs = {}; - -workerLog = function(msg) { - var name; - if (msg) { - if (workerLogs[name = msg.pid] === undefined) { - workerLogs[name] = {}; - } - workerLogs[msg.pid] = msg; - } -}; - -start = async function(options) { +// let workerLogs = {}; +// const workerLog = function(msg) { +// var name; +// if (msg) { +// if (workerLogs[name = msg.pid] === undefined) { +// workerLogs[name] = {}; +// } +// workerLogs[msg.pid] = msg; +// } +// }; + +const start = async function(options) { var chunkSize, size; size = fs.statSync(options.file)["size"]; chunkSize = Math.floor(size / cpuCount); - console.log(`${cpuCount} cpu cores detected. file size (bytes): ${size} file will be divided into: ${cpuCount} each process will be given (bytes): ${chunkSize}`); - console.log(`launching ${cpuCount} processes. do ctrl-c to kill all.`); - console.log("do tail -f ./worker.logs on a separate terminal window for logs."); + console.log(`${cpuCount} cpu cores detected. + ${filesize(size)} file will be divided into ${cpuCount} zones + - each process will be given: ${filesize(chunkSize)} + +ok, launching ${cpuCount} processes. do ctrl-c to kill all. +do tail -f ./worker.logs on a separate terminal window for logs. +`) await workerNodes.ready(); diff --git a/src/worker.js b/src/worker.js index 4618293..86c34f2 100644 --- a/src/worker.js +++ b/src/worker.js @@ -1,6 +1,7 @@ const LineByLineReader = require('line-by-line') const init = require('./00-init-db'); const log4js = require('log4js'); +const filesize = require('filesize'); const config = require('../config') log4js.configure({ @@ -37,7 +38,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { // end 2 megabytes later so we don't lose pages cut by chunks endByte = startByte + chunkSize + 3000000 - logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) + logger.info(`worker pid:${process.pid} is now alive. starting: ${filesize(startByte)} ending: ${filesize(endByte)}`) await init(options) lr = new LineByLineReader(options.file, { @@ -62,7 +63,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { insertMany = Object.assign([], pages); logger.info("inserting", insertMany.length, "documents. first:", insertMany[0]._id, "and last:", insertMany[insertMany.length - 1]._id); pages = []; - options.db.collection(config.queueLocation).insertMany(insertMany, function() { + options.db.collection(config.queue).insertMany(insertMany, function() { // tbd. error checks }); logger.info("batch complete in: " + ((Date.now() - jobBegin) / 1000) + " secs") diff --git a/worker.logs b/worker.logs index f08cbfc..2cb5261 100644 --- a/worker.logs +++ b/worker.logs @@ -1,50 +1,1131 @@ -[2018-02-13T14:54:54.409] [INFO] cheese - worker pid:82033 is now alive. startByte: 150021017 endByte: 304042034 -[2018-02-13T14:54:54.409] [INFO] cheese - worker pid:82032 is now alive. startByte: 0 endByte: 154021017 -[2018-02-13T14:54:54.410] [INFO] cheese - worker pid:82035 is now alive. startByte: 452063051 endByte: 606084068 -[2018-02-13T14:54:54.420] [INFO] cheese - worker pid:82034 is now alive. startByte: 301042034 endByte: 455063051 -[2018-02-13T14:55:20.898] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) -[2018-02-13T14:55:22.059] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States -[2018-02-13T14:55:22.171] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin -[2018-02-13T14:55:22.387] [INFO] cheese - batch complete in: 27.881 secs -[2018-02-13T14:55:22.387] [INFO] cheese - worker pid:82035 is done. inserted 62328 pages in 0 secs. -[2018-02-13T14:55:23.873] [INFO] cheese - batch complete in: 29.396 secs -[2018-02-13T14:55:23.873] [INFO] cheese - worker pid:82034 is done. inserted 62522 pages in 0 secs. -[2018-02-13T14:55:23.887] [INFO] cheese - batch complete in: 29.409 secs -[2018-02-13T14:55:23.887] [INFO] cheese - worker pid:82033 is done. inserted 63109 pages in 0 secs. -[2018-02-13T14:59:46.077] [INFO] cheese - worker pid:82583 is now alive. startByte: 0 endByte: 154021017 -[2018-02-13T14:59:46.081] [INFO] cheese - worker pid:82586 is now alive. startByte: 452063051 endByte: 606084068 -[2018-02-13T14:59:46.080] [INFO] cheese - worker pid:82584 is now alive. startByte: 150021017 endByte: 304042034 -[2018-02-13T14:59:46.081] [INFO] cheese - worker pid:82585 is now alive. startByte: 301042034 endByte: 455063051 -[2018-02-13T15:00:08.929] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) -[2018-02-13T15:00:09.652] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin -[2018-02-13T15:00:09.933] [INFO] cheese - batch complete in: 23.806 secs -[2018-02-13T15:00:09.933] [INFO] cheese - worker pid:82586 is done. inserted 62328 pages in 0 secs. -[2018-02-13T15:00:10.063] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States -[2018-02-13T15:00:11.221] [INFO] cheese - batch complete in: 25.095 secs -[2018-02-13T15:00:11.221] [INFO] cheese - worker pid:82584 is done. inserted 63109 pages in 0 secs. -[2018-02-13T15:00:11.781] [INFO] cheese - batch complete in: 25.612 secs -[2018-02-13T15:00:11.782] [INFO] cheese - worker pid:82585 is done. inserted 62522 pages in 0.001 secs. -[2018-02-13T15:01:57.901] [INFO] cheese - worker pid:82844 is now alive. startByte: 0 endByte: 154021017 -[2018-02-13T15:01:57.901] [INFO] cheese - worker pid:82845 is now alive. startByte: 150021017 endByte: 304042034 -[2018-02-13T15:01:57.902] [INFO] cheese - worker pid:82846 is now alive. startByte: 301042034 endByte: 455063051 -[2018-02-13T15:01:57.903] [INFO] cheese - worker pid:82847 is now alive. startByte: 452063051 endByte: 606084068 -[2018-02-13T15:07:09.121] [INFO] cheese - worker pid:83540 is now alive. startByte: 0 endByte: 154021017 -[2018-02-13T15:07:09.122] [INFO] cheese - worker pid:83541 is now alive. startByte: 150021017 endByte: 304042034 -[2018-02-13T15:07:09.126] [INFO] cheese - worker pid:83543 is now alive. startByte: 452063051 endByte: 606084068 -[2018-02-13T15:07:09.125] [INFO] cheese - worker pid:83542 is now alive. startByte: 301042034 endByte: 455063051 -[2018-02-13T15:07:31.442] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) -[2018-02-13T15:07:32.822] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin -[2018-02-13T15:07:32.865] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States -[2018-02-13T15:08:19.245] [INFO] cheese - worker pid:83671 is now alive. startByte: 452063051 endByte: 606084068 -[2018-02-13T15:08:19.244] [INFO] cheese - worker pid:83669 is now alive. startByte: 150021017 endByte: 304042034 -[2018-02-13T15:08:19.244] [INFO] cheese - worker pid:83668 is now alive. startByte: 0 endByte: 154021017 -[2018-02-13T15:08:19.244] [INFO] cheese - worker pid:83670 is now alive. startByte: 301042034 endByte: 455063051 -[2018-02-13T15:08:41.262] [INFO] cheese - inserting 33890 documents. first: Taliesin West and last: Shunt (electrical) -[2018-02-13T15:08:42.210] [INFO] cheese - inserting 37801 documents. first: Low Countries and last: Stephen Baldwin -[2018-02-13T15:08:42.218] [INFO] cheese - batch complete in: 22.929 secs -[2018-02-13T15:08:42.219] [INFO] cheese - worker pid:83671 is done. inserted 62328 pages in 0 secs. -[2018-02-13T15:08:42.939] [INFO] cheese - inserting 30299 documents. first: Euston Road and last: Government shutdown in the United States -[2018-02-13T15:08:43.161] [INFO] cheese - batch complete in: 23.871 secs -[2018-02-13T15:08:43.161] [INFO] cheese - worker pid:83669 is done. inserted 63109 pages in 0 secs. -[2018-02-13T15:08:44.564] [INFO] cheese - batch complete in: 25.252 secs -[2018-02-13T15:08:44.565] [INFO] cheese - worker pid:83670 is done. inserted 62522 pages in 0.001 secs. +[2018-02-13T15:44:09.170] [INFO] cheese - worker pid:87782 is now alive. starting: 0 B ending: 146.89 MB +[2018-02-13T15:44:09.171] [INFO] cheese - worker pid:87784 is now alive. starting: 287.1 MB ending: 433.98 MB +[2018-02-13T15:44:09.171] [INFO] cheese - worker pid:87783 is now alive. starting: 143.07 MB ending: 289.96 MB +[2018-02-13T15:44:09.171] [INFO] cheese - worker pid:87785 is now alive. starting: 431.12 MB ending: 578.01 MB +[2018-02-13T15:44:09.673] [INFO] cheese - inserting 503 documents. first: Low Countries and last: San Diego Padres +[2018-02-13T15:44:09.675] [INFO] cheese - inserting 492 documents. first: Taliesin West and last: The Hunchback of Notre Dame (1939 movie) +[2018-02-13T15:44:09.706] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T15:44:09.706] [INFO] cheese - batch complete in: 0.469 secs +[2018-02-13T15:44:09.719] [INFO] cheese - inserting 596 documents. first: Euston Road and last: University of California, San Diego +[2018-02-13T15:44:09.782] [INFO] cheese - batch complete in: 0.56 secs +[2018-02-13T15:44:09.855] [INFO] cheese - inserting 640 documents. first: April and last: Football +[2018-02-13T15:44:09.917] [INFO] cheese - batch complete in: 0.712 secs +[2018-02-13T15:44:10.004] [INFO] cheese - inserting 417 documents. first: Balk and last: Barákapuszta +[2018-02-13T15:44:10.011] [INFO] cheese - inserting 854 documents. first: Drew Carey and last: Sillanwali Tehsil +[2018-02-13T15:44:10.032] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T15:44:10.056] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T15:44:10.127] [INFO] cheese - inserting 566 documents. first: University of California and last: Volans (disambiguation) +[2018-02-13T15:44:10.159] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T15:44:10.343] [INFO] cheese - inserting 501 documents. first: Chris Clifford and last: Listening +[2018-02-13T15:44:10.367] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T15:44:10.387] [INFO] cheese - inserting 540 documents. first: Puran Tehsil and last: Car accident +[2018-02-13T15:44:10.409] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T15:44:10.456] [INFO] cheese - inserting 588 documents. first: Georgy Malenkov and last: Crocodylomorph +[2018-02-13T15:44:10.483] [INFO] cheese - batch complete in: 0.324 secs +[2018-02-13T15:44:10.580] [INFO] cheese - inserting 834 documents. first: Poland and last: Socrates +[2018-02-13T15:44:10.646] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T15:44:10.718] [INFO] cheese - inserting 583 documents. first: Cookies 'N' Beans and last: Hässleholm +[2018-02-13T15:44:10.719] [INFO] cheese - inserting 609 documents. first: Malden, Massachusetts and last: Dorah Pass +[2018-02-13T15:44:10.746] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T15:44:10.750] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T15:44:10.842] [INFO] cheese - inserting 433 documents. first: Lepidosauromorph and last: James B. Dudley +[2018-02-13T15:44:10.860] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T15:44:10.986] [INFO] cheese - inserting 575 documents. first: Höganäs and last: WaveBird Wireless Controller +[2018-02-13T15:44:11.006] [INFO] cheese - inserting 519 documents. first: Gondogoro Pass and last: Richard Widmark +[2018-02-13T15:44:11.012] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T15:44:11.029] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T15:44:11.097] [INFO] cheese - inserting 656 documents. first: Dante Alighieri and last: Psoriasis +[2018-02-13T15:44:11.105] [INFO] cheese - inserting 376 documents. first: Duck and Cover and last: Volcano Rabbit +[2018-02-13T15:44:11.119] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T15:44:11.148] [INFO] cheese - batch complete in: 0.501 secs +[2018-02-13T15:44:11.294] [INFO] cheese - inserting 650 documents. first: Battle of Bataan and last: The Wyatt Family +[2018-02-13T15:44:11.308] [INFO] cheese - inserting 504 documents. first: Virgin Atlantic Airways and last: Polarization +[2018-02-13T15:44:11.317] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T15:44:11.331] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T15:44:11.472] [INFO] cheese - inserting 539 documents. first: Happy Science and last: Validity +[2018-02-13T15:44:11.493] [INFO] cheese - batch complete in: 0.373 secs +[2018-02-13T15:44:11.603] [INFO] cheese - inserting 610 documents. first: Dolores Huerta and last: Mr. Lordi +[2018-02-13T15:44:11.624] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T15:44:11.689] [INFO] cheese - inserting 732 documents. first: Dance, Dance and last: Varsity letter +[2018-02-13T15:44:11.708] [INFO] cheese - inserting 756 documents. first: Jurassic Park and last: Baltic Sea +[2018-02-13T15:44:11.714] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T15:44:11.766] [INFO] cheese - batch complete in: 0.618 secs +[2018-02-13T15:44:11.793] [INFO] cheese - inserting 565 documents. first: King Duncan and last: Beriberi +[2018-02-13T15:44:11.825] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T15:44:11.859] [INFO] cheese - inserting 410 documents. first: Anti-balaka and last: Sune Bergström +[2018-02-13T15:44:11.873] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T15:44:12.119] [INFO] cheese - inserting 537 documents. first: Linear mapping and last: Lassie Lou Ahern +[2018-02-13T15:44:12.126] [INFO] cheese - inserting 565 documents. first: Free content and last: MySims +[2018-02-13T15:44:12.138] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T15:44:12.151] [INFO] cheese - batch complete in: 0.437 secs +[2018-02-13T15:44:12.358] [INFO] cheese - inserting 571 documents. first: Hanna Maron and last: Paco Peña +[2018-02-13T15:44:12.384] [INFO] cheese - batch complete in: 0.246 secs +[2018-02-13T15:44:12.472] [INFO] cheese - inserting 593 documents. first: The Sun (newspaper) and last: Live from SoHo (Maroon 5 album) +[2018-02-13T15:44:12.507] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T15:44:12.598] [INFO] cheese - inserting 661 documents. first: Scandinavia and last: Laws of war +[2018-02-13T15:44:12.638] [INFO] cheese - inserting 565 documents. first: Gerard Mortier and last: Warren Lamb +[2018-02-13T15:44:12.649] [INFO] cheese - batch complete in: 0.882 secs +[2018-02-13T15:44:12.657] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T15:44:12.770] [INFO] cheese - inserting 652 documents. first: Île-de-Bréhat and last: Seckington +[2018-02-13T15:44:12.823] [INFO] cheese - batch complete in: 0.997 secs +[2018-02-13T15:44:12.874] [INFO] cheese - inserting 602 documents. first: Alexander Berkman and last: Ordered pair +[2018-02-13T15:44:12.900] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T15:44:12.930] [INFO] cheese - inserting 548 documents. first: Rodeo of Chile and last: Armando Peraza +[2018-02-13T15:44:12.951] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T15:44:12.985] [INFO] cheese - inserting 482 documents. first: Maharashtra and last: Seafood +[2018-02-13T15:44:13.014] [INFO] cheese - batch complete in: 0.365 secs +[2018-02-13T15:44:13.273] [INFO] cheese - inserting 587 documents. first: St Just in Penwith and last: Primula +[2018-02-13T15:44:13.320] [INFO] cheese - inserting 617 documents. first: Shirley Chisholm and last: Power Rangers Zeo +[2018-02-13T15:44:13.354] [INFO] cheese - batch complete in: 0.53 secs +[2018-02-13T15:44:13.378] [INFO] cheese - batch complete in: 0.427 secs +[2018-02-13T15:44:13.428] [INFO] cheese - inserting 578 documents. first: Arts and crafts and last: Chesterfield +[2018-02-13T15:44:13.454] [INFO] cheese - inserting 358 documents. first: Peer review and last: Pipette +[2018-02-13T15:44:13.472] [INFO] cheese - batch complete in: 0.572 secs +[2018-02-13T15:44:13.478] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T15:44:13.709] [INFO] cheese - inserting 621 documents. first: Power Rangers Turbo and last: Powhatan, Louisiana +[2018-02-13T15:44:13.726] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T15:44:13.802] [INFO] cheese - inserting 515 documents. first: Protura and last: Milan Hlavsa +[2018-02-13T15:44:13.829] [INFO] cheese - batch complete in: 0.475 secs +[2018-02-13T15:44:13.841] [INFO] cheese - inserting 465 documents. first: Formation and evolution of the Solar System and last: Christopher Nolan +[2018-02-13T15:44:13.869] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T15:44:13.882] [INFO] cheese - inserting 602 documents. first: Muscle and last: Blackcurrant +[2018-02-13T15:44:13.918] [INFO] cheese - batch complete in: 0.439 secs +[2018-02-13T15:44:14.026] [INFO] cheese - inserting 626 documents. first: Karlheinz Böhm and last: Wells, British Columbia +[2018-02-13T15:44:14.038] [INFO] cheese - inserting 186 documents. first: Olympic (band) and last: Middle Triassic +[2018-02-13T15:44:14.050] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T15:44:14.062] [INFO] cheese - batch complete in: 0.233 secs +[2018-02-13T15:44:14.192] [INFO] cheese - inserting 622 documents. first: Foucault pendulum and last: Captain Jack Harkness +[2018-02-13T15:44:14.213] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T15:44:14.225] [INFO] cheese - inserting 561 documents. first: Date and last: Evo Morales +[2018-02-13T15:44:14.267] [INFO] cheese - batch complete in: 0.349 secs +[2018-02-13T15:44:14.321] [INFO] cheese - inserting 484 documents. first: Surya and last: Goatwhore +[2018-02-13T15:44:14.357] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T15:44:14.382] [INFO] cheese - inserting 420 documents. first: Shahab al-Din Suhrawardi and last: Hemerophile +[2018-02-13T15:44:14.409] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T15:44:14.549] [INFO] cheese - inserting 552 documents. first: Hurricane Fico and last: British Rail Class 103 +[2018-02-13T15:44:14.573] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T15:44:14.650] [INFO] cheese - inserting 663 documents. first: Lake Titicaca and last: Spider +[2018-02-13T15:44:14.654] [INFO] cheese - inserting 602 documents. first: Rural Municipality of Brenda and last: Maximum Overload +[2018-02-13T15:44:14.711] [INFO] cheese - batch complete in: 0.444 secs +[2018-02-13T15:44:14.736] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T15:44:14.868] [INFO] cheese - inserting 402 documents. first: The Winter's Tale and last: 1961 World Ice Hockey Championships +[2018-02-13T15:44:14.901] [INFO] cheese - batch complete in: 0.492 secs +[2018-02-13T15:44:15.020] [INFO] cheese - inserting 791 documents. first: British Rail Class 104 and last: La Chapelle-Hermier +[2018-02-13T15:44:15.047] [INFO] cheese - batch complete in: 0.474 secs +[2018-02-13T15:44:15.161] [INFO] cheese - inserting 626 documents. first: 1760s and last: Odisha +[2018-02-13T15:44:15.186] [INFO] cheese - inserting 642 documents. first: Idde Schultz and last: Hyatt Center +[2018-02-13T15:44:15.191] [INFO] cheese - batch complete in: 0.48 secs +[2018-02-13T15:44:15.224] [INFO] cheese - batch complete in: 0.488 secs +[2018-02-13T15:44:15.271] [INFO] cheese - inserting 312 documents. first: 1961 Stanley Cup Finals and last: Pylorus +[2018-02-13T15:44:15.289] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T15:44:15.325] [INFO] cheese - inserting 987 documents. first: La Chapelle-Palluau and last: Peyrieu +[2018-02-13T15:44:15.351] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T15:44:15.466] [INFO] cheese - inserting 553 documents. first: Punjab (India) and last: Polyunsaturated fat +[2018-02-13T15:44:15.489] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T15:44:15.548] [INFO] cheese - inserting 618 documents. first: Leo Burnett Building and last: Ram Trucks +[2018-02-13T15:44:15.578] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T15:44:15.596] [INFO] cheese - inserting 879 documents. first: Nashville, Arkansas and last: Monpezat +[2018-02-13T15:44:15.597] [INFO] cheese - inserting 348 documents. first: Huxley family and last: AKUT Search and Rescue Association +[2018-02-13T15:44:15.615] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T15:44:15.632] [INFO] cheese - batch complete in: 0.281 secs +[2018-02-13T15:44:15.769] [INFO] cheese - inserting 459 documents. first: The North Avenue Irregulars and last: Ionia +[2018-02-13T15:44:15.787] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T15:44:15.854] [INFO] cheese - inserting 570 documents. first: Tropical Storm Norma (1970) and last: Naturalism (literature) +[2018-02-13T15:44:15.875] [INFO] cheese - batch complete in: 0.297 secs +[2018-02-13T15:44:15.916] [INFO] cheese - inserting 923 documents. first: Monségur, Pyrénées-Atlantiques and last: Folembray +[2018-02-13T15:44:15.937] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T15:44:15.950] [INFO] cheese - inserting 458 documents. first: The Twelve Days of Christmas (song) and last: Video camera +[2018-02-13T15:44:15.970] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T15:44:16.031] [INFO] cheese - inserting 428 documents. first: Harmonic and last: Małkinia Górna +[2018-02-13T15:44:16.048] [INFO] cheese - batch complete in: 0.261 secs +[2018-02-13T15:44:16.150] [INFO] cheese - inserting 996 documents. first: Fonsommes and last: Gaudiempré +[2018-02-13T15:44:16.173] [INFO] cheese - batch complete in: 0.236 secs +[2018-02-13T15:44:16.188] [INFO] cheese - inserting 637 documents. first: Moose Pond and last: Samantha Power +[2018-02-13T15:44:16.211] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T15:44:16.285] [INFO] cheese - inserting 536 documents. first: Pope Innocent VI and last: Mesosaurus +[2018-02-13T15:44:16.309] [INFO] cheese - batch complete in: 0.339 secs +[2018-02-13T15:44:16.380] [INFO] cheese - inserting 998 documents. first: Gavrelle and last: Olive Hill, Kentucky +[2018-02-13T15:44:16.382] [INFO] cheese - inserting 461 documents. first: John C. Calhoun and last: Constantine the Great +[2018-02-13T15:44:16.400] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T15:44:16.401] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T15:44:16.531] [INFO] cheese - inserting 617 documents. first: Edward J. Perkins and last: Gueudecourt +[2018-02-13T15:44:16.559] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T15:44:16.669] [INFO] cheese - inserting 378 documents. first: Bokbunja ju and last: Lilly Ledbetter Fair Pay Act of 2009 +[2018-02-13T15:44:16.673] [INFO] cheese - inserting 497 documents. first: Cleopatra VII and last: Eagle (disambiguation) +[2018-02-13T15:44:16.682] [INFO] cheese - inserting 990 documents. first: Orchard Grass Hills, Kentucky and last: Dayton, Iowa +[2018-02-13T15:44:16.694] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T15:44:16.702] [INFO] cheese - batch complete in: 0.302 secs +[2018-02-13T15:44:16.712] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T15:44:16.834] [INFO] cheese - inserting 543 documents. first: Guignemicourt and last: Caravan (travellers) +[2018-02-13T15:44:16.855] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T15:44:16.973] [INFO] cheese - inserting 958 documents. first: De Soto, Iowa and last: Natural gas vehicle +[2018-02-13T15:44:16.999] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T15:44:17.038] [INFO] cheese - inserting 646 documents. first: Hide (musician) and last: Aegukga +[2018-02-13T15:44:17.068] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T15:44:17.127] [INFO] cheese - inserting 473 documents. first: International Food Policy Research Institute and last: Mina (singer) +[2018-02-13T15:44:17.136] [INFO] cheese - inserting 477 documents. first: Flying University and last: John Diefenbaker +[2018-02-13T15:44:17.152] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T15:44:17.156] [INFO] cheese - batch complete in: 0.301 secs +[2018-02-13T15:44:17.334] [INFO] cheese - inserting 779 documents. first: Bustuchin and last: British Rail Class D2/12 +[2018-02-13T15:44:17.362] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T15:44:17.399] [INFO] cheese - inserting 507 documents. first: Conquest and last: Engineered languages +[2018-02-13T15:44:17.421] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T15:44:17.478] [INFO] cheese - inserting 454 documents. first: Maynard Ferguson and last: The Five +[2018-02-13T15:44:17.497] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T15:44:17.669] [INFO] cheese - inserting 933 documents. first: British Rail Class D3/1 and last: British Rail Class D3/14 +[2018-02-13T15:44:17.679] [INFO] cheese - inserting 482 documents. first: Pronghorn and last: 1534 +[2018-02-13T15:44:17.690] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T15:44:17.697] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T15:44:17.710] [INFO] cheese - inserting 488 documents. first: Omar Karami and last: Frederik H. Kreuger +[2018-02-13T15:44:17.730] [INFO] cheese - batch complete in: 0.574 secs +[2018-02-13T15:44:18.055] [INFO] cheese - inserting 577 documents. first: 1708 and last: Lady Macbeth of the Mtsensk District +[2018-02-13T15:44:18.081] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T15:44:18.143] [INFO] cheese - inserting 497 documents. first: List of Independent Administrative Institutes in Japan and last: Saskatoon Blades +[2018-02-13T15:44:18.149] [INFO] cheese - inserting 547 documents. first: British Rail Class D16/1 and last: Keita Goto +[2018-02-13T15:44:18.173] [INFO] cheese - inserting 581 documents. first: Statutory rape and last: Chevrolet Traverse +[2018-02-13T15:44:18.179] [INFO] cheese - batch complete in: 0.489 secs +[2018-02-13T15:44:18.177] [INFO] cheese - batch complete in: 0.68 secs +[2018-02-13T15:44:18.211] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T15:44:18.396] [INFO] cheese - inserting 502 documents. first: Adoption and last: Runestone +[2018-02-13T15:44:18.414] [INFO] cheese - batch complete in: 0.333 secs +[2018-02-13T15:44:18.571] [INFO] cheese - inserting 603 documents. first: Zhelyu Zhelev and last: Väröbacka +[2018-02-13T15:44:18.604] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T15:44:18.611] [INFO] cheese - inserting 620 documents. first: Type 4 150 mm howitzer and last: Cape Henry Light +[2018-02-13T15:44:18.643] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T15:44:18.688] [INFO] cheese - inserting 502 documents. first: Shunichiro Okano and last: Erich von dem Bach-Zelewski +[2018-02-13T15:44:18.713] [INFO] cheese - inserting 582 documents. first: Balcony and last: Electrolysis +[2018-02-13T15:44:18.713] [INFO] cheese - batch complete in: 0.534 secs +[2018-02-13T15:44:18.748] [INFO] cheese - batch complete in: 0.334 secs +[2018-02-13T15:44:18.929] [INFO] cheese - inserting 581 documents. first: Innuendo (song) and last: Diabolus in Musica +[2018-02-13T15:44:18.960] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T15:44:19.031] [INFO] cheese - inserting 533 documents. first: Jurassic and last: NASCAR +[2018-02-13T15:44:19.068] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T15:44:19.081] [INFO] cheese - inserting 571 documents. first: Will Mellor and last: Mono no aware +[2018-02-13T15:44:19.101] [INFO] cheese - batch complete in: 0.388 secs +[2018-02-13T15:44:19.124] [INFO] cheese - inserting 433 documents. first: Washington Irving and last: Herero +[2018-02-13T15:44:19.146] [INFO] cheese - batch complete in: 0.503 secs +[2018-02-13T15:44:19.302] [INFO] cheese - inserting 580 documents. first: Señorita Pólvora and last: Orillia +[2018-02-13T15:44:19.331] [INFO] cheese - batch complete in: 0.371 secs +[2018-02-13T15:44:19.409] [INFO] cheese - inserting 561 documents. first: Monument and last: Ghost light +[2018-02-13T15:44:19.435] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T15:44:19.466] [INFO] cheese - inserting 525 documents. first: Salmon (color) and last: Nisio Isin +[2018-02-13T15:44:19.474] [INFO] cheese - inserting 374 documents. first: Lake Wobegon and last: Clarke County, Alabama +[2018-02-13T15:44:19.484] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T15:44:19.508] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T15:44:19.585] [INFO] cheese - inserting 516 documents. first: West Perth, Ontario and last: Truncated icosahedron +[2018-02-13T15:44:19.607] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T15:44:19.701] [INFO] cheese - inserting 479 documents. first: Roman Giertych and last: Centre-Val de Loire +[2018-02-13T15:44:19.723] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T15:44:19.826] [INFO] cheese - inserting 368 documents. first: Grove Hill, Alabama and last: Karl Pearson +[2018-02-13T15:44:19.840] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T15:44:19.854] [INFO] cheese - inserting 445 documents. first: Kapok and last: Comcast Center +[2018-02-13T15:44:19.869] [INFO] cheese - batch complete in: 0.384 secs +[2018-02-13T15:44:20.044] [INFO] cheese - inserting 419 documents. first: Champagne-Ardenne and last: Gerhard Armauer Hansen +[2018-02-13T15:44:20.061] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T15:44:20.179] [INFO] cheese - inserting 372 documents. first: HCJB and last: Brooks Range +[2018-02-13T15:44:20.183] [INFO] cheese - inserting 599 documents. first: Truncated octahedron and last: The Girl Next Door (2004 movie) +[2018-02-13T15:44:20.194] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T15:44:20.205] [INFO] cheese - batch complete in: 0.598 secs +[2018-02-13T15:44:20.252] [INFO] cheese - inserting 549 documents. first: Yutyrannus and last: Constitution of Albania +[2018-02-13T15:44:20.281] [INFO] cheese - batch complete in: 0.441 secs +[2018-02-13T15:44:20.382] [INFO] cheese - inserting 574 documents. first: Fire station and last: Taj Mahal (musician) +[2018-02-13T15:44:20.409] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T15:44:20.539] [INFO] cheese - inserting 563 documents. first: José Gaspar Rodríguez de Francia y Velasco and last: Messerschmitt Bf 110 +[2018-02-13T15:44:20.548] [INFO] cheese - inserting 617 documents. first: Prince Edward, Duke of York and Albany and last: Crossosomatales +[2018-02-13T15:44:20.558] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T15:44:20.574] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T15:44:20.658] [INFO] cheese - inserting 559 documents. first: Napa, California and last: Yu Gamdong +[2018-02-13T15:44:20.679] [INFO] cheese - batch complete in: 0.397 secs +[2018-02-13T15:44:20.695] [INFO] cheese - inserting 527 documents. first: Floyd Patterson and last: Medieval music +[2018-02-13T15:44:20.713] [INFO] cheese - batch complete in: 0.304 secs +[2018-02-13T15:44:20.897] [INFO] cheese - inserting 414 documents. first: Aquanaut and last: Airbourne +[2018-02-13T15:44:20.919] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T15:44:21.004] [INFO] cheese - inserting 589 documents. first: Yangnyeong and last: Bahrainona +[2018-02-13T15:44:21.005] [INFO] cheese - inserting 666 documents. first: Waterfowl and last: 2008 +[2018-02-13T15:44:21.012] [INFO] cheese - inserting 547 documents. first: Neolithic and last: Lake Van +[2018-02-13T15:44:21.024] [INFO] cheese - batch complete in: 0.345 secs +[2018-02-13T15:44:21.038] [INFO] cheese - batch complete in: 0.464 secs +[2018-02-13T15:44:21.044] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T15:44:21.337] [INFO] cheese - inserting 526 documents. first: Bahraini and last: Wing-banded Antbird +[2018-02-13T15:44:21.350] [INFO] cheese - inserting 549 documents. first: Falafel and last: Dwarf hamster +[2018-02-13T15:44:21.362] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T15:44:21.368] [INFO] cheese - batch complete in: 0.33 secs +[2018-02-13T15:44:21.398] [INFO] cheese - inserting 461 documents. first: Love? and last: Ted Hartley +[2018-02-13T15:44:21.406] [INFO] cheese - inserting 610 documents. first: Kurdish language and last: Sickle +[2018-02-13T15:44:21.431] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T15:44:21.439] [INFO] cheese - batch complete in: 0.52 secs +[2018-02-13T15:44:21.672] [INFO] cheese - inserting 488 documents. first: Damien Rice and last: Technical University of Berlin +[2018-02-13T15:44:21.691] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T15:44:21.716] [INFO] cheese - inserting 492 documents. first: Seine and last: Cyclone Jal +[2018-02-13T15:44:21.743] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T15:44:21.784] [INFO] cheese - inserting 590 documents. first: Kilometres per hour and last: U.S. Open +[2018-02-13T15:44:21.804] [INFO] cheese - inserting 490 documents. first: Joint-stock company and last: Luciano García Alén +[2018-02-13T15:44:21.810] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T15:44:21.831] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T15:44:22.018] [INFO] cheese - inserting 450 documents. first: Leeds Rhinos and last: Tomokazu Hirama +[2018-02-13T15:44:22.034] [INFO] cheese - batch complete in: 0.342 secs +[2018-02-13T15:44:22.074] [INFO] cheese - inserting 555 documents. first: Hurricane Bud (2012) and last: St. Osyth +[2018-02-13T15:44:22.110] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T15:44:22.129] [INFO] cheese - inserting 558 documents. first: World Cup and last: Himeji Castle +[2018-02-13T15:44:22.150] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T15:44:22.170] [INFO] cheese - inserting 522 documents. first: Sergei Filippenkov and last: Noble orchid +[2018-02-13T15:44:22.195] [INFO] cheese - batch complete in: 0.364 secs +[2018-02-13T15:44:22.386] [INFO] cheese - inserting 600 documents. first: Kazushi Isoyama and last: Félix María Samaniego +[2018-02-13T15:44:22.404] [INFO] cheese - batch complete in: 0.37 secs +[2018-02-13T15:44:22.438] [INFO] cheese - inserting 482 documents. first: Tang Dynasty and last: Hilbert's paradox of the Grand Hotel +[2018-02-13T15:44:22.455] [INFO] cheese - batch complete in: 0.305 secs +[2018-02-13T15:44:22.479] [INFO] cheese - inserting 440 documents. first: Ahmad and last: Wyre Forest +[2018-02-13T15:44:22.494] [INFO] cheese - inserting 480 documents. first: Great Oakley and last: Arranged marriage +[2018-02-13T15:44:22.498] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T15:44:22.524] [INFO] cheese - batch complete in: 0.414 secs +[2018-02-13T15:44:22.739] [INFO] cheese - inserting 505 documents. first: Opposite number and last: Flamingo +[2018-02-13T15:44:22.743] [INFO] cheese - inserting 539 documents. first: Jan Góra and last: Isaiah Washington +[2018-02-13T15:44:22.755] [INFO] cheese - inserting 580 documents. first: Vermilion (song) and last: Ryo Nurishi +[2018-02-13T15:44:22.761] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T15:44:22.768] [INFO] cheese - batch complete in: 0.27 secs +[2018-02-13T15:44:22.785] [INFO] cheese - inserting 375 documents. first: Eastern diamondback rattlesnake and last: Greta Van Susteren +[2018-02-13T15:44:22.793] [INFO] cheese - batch complete in: 0.389 secs +[2018-02-13T15:44:22.808] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T15:44:23.037] [INFO] cheese - inserting 326 documents. first: Magnesium oxide and last: Tanystropheus +[2018-02-13T15:44:23.046] [INFO] cheese - inserting 553 documents. first: Stock (firearm) and last: I Will Never Let You Down +[2018-02-13T15:44:23.051] [INFO] cheese - batch complete in: 0.29 secs +[2018-02-13T15:44:23.071] [INFO] cheese - batch complete in: 0.303 secs +[2018-02-13T15:44:23.106] [INFO] cheese - inserting 439 documents. first: Tucker Carlson and last: Mel Stuart +[2018-02-13T15:44:23.121] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T15:44:23.131] [INFO] cheese - inserting 582 documents. first: Aaron Lennon and last: Cornish, Maine +[2018-02-13T15:44:23.153] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T15:44:23.335] [INFO] cheese - inserting 400 documents. first: Yuryuzan and last: British occupation zone +[2018-02-13T15:44:23.351] [INFO] cheese - inserting 219 documents. first: Sweet Dreams Are Made of This and last: Hideaki Kitajima +[2018-02-13T15:44:23.358] [INFO] cheese - batch complete in: 0.205 secs +[2018-02-13T15:44:23.357] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T15:44:23.389] [INFO] cheese - inserting 432 documents. first: The Elements of Style and last: Mass grave +[2018-02-13T15:44:23.409] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T15:44:23.502] [INFO] cheese - inserting 478 documents. first: Conrad Bain and last: American spadefoot toads +[2018-02-13T15:44:23.533] [INFO] cheese - batch complete in: 0.412 secs +[2018-02-13T15:44:23.589] [INFO] cheese - inserting 258 documents. first: Shigemaru Takenokoshi and last: Norihiro Nishi +[2018-02-13T15:44:23.600] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T15:44:23.732] [INFO] cheese - inserting 502 documents. first: Greater Hesse and last: Pineal gland +[2018-02-13T15:44:23.736] [INFO] cheese - inserting 481 documents. first: Fred West and last: Dunellen, New Jersey +[2018-02-13T15:44:23.764] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T15:44:23.768] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T15:44:24.017] [INFO] cheese - inserting 636 documents. first: Theory and last: Der Rosenkavalier +[2018-02-13T15:44:24.038] [INFO] cheese - batch complete in: 0.438 secs +[2018-02-13T15:44:24.063] [INFO] cheese - inserting 514 documents. first: Notaden and last: Eileen Brennan +[2018-02-13T15:44:24.089] [INFO] cheese - inserting 591 documents. first: Gamma-Hydroxybutyric acid and last: Tropical Storm Ingrid (2007) +[2018-02-13T15:44:24.093] [INFO] cheese - batch complete in: 0.559 secs +[2018-02-13T15:44:24.124] [INFO] cheese - inserting 550 documents. first: 2016 Kumamoto earthquakes and last: Perlin noise +[2018-02-13T15:44:24.126] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T15:44:24.161] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T15:44:24.450] [INFO] cheese - inserting 556 documents. first: Dagger and last: Heredity +[2018-02-13T15:44:24.463] [INFO] cheese - inserting 610 documents. first: 61 (number) and last: Sommeri +[2018-02-13T15:44:24.469] [INFO] cheese - batch complete in: 0.43 secs +[2018-02-13T15:44:24.472] [INFO] cheese - inserting 594 documents. first: Derek Jameson and last: List of cities in Serbia +[2018-02-13T15:44:24.481] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T15:44:24.491] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T15:44:24.545] [INFO] cheese - inserting 534 documents. first: Mireia Lalaguna and last: Masada +[2018-02-13T15:44:24.565] [INFO] cheese - batch complete in: 0.404 secs +[2018-02-13T15:44:24.790] [INFO] cheese - inserting 516 documents. first: Variation and last: C.A. Belgrano +[2018-02-13T15:44:24.807] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T15:44:24.828] [INFO] cheese - inserting 497 documents. first: Davis Cleveland and last: Small Smiles Dental Centers +[2018-02-13T15:44:24.846] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T15:44:24.923] [INFO] cheese - inserting 680 documents. first: Cave of the Patriarchs and last: Nassau (state) +[2018-02-13T15:44:24.949] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T15:44:25.146] [INFO] cheese - inserting 532 documents. first: Denmark at the 1972 Summer Paralympics and last: Pakistan Television +[2018-02-13T15:44:25.157] [INFO] cheese - inserting 603 documents. first: Stettfurt and last: Kotoko +[2018-02-13T15:44:25.165] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T15:44:25.185] [INFO] cheese - inserting 626 documents. first: Michael Clarke Duncan and last: Doddinghurst +[2018-02-13T15:44:25.210] [INFO] cheese - batch complete in: 0.729 secs +[2018-02-13T15:44:25.227] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T15:44:25.353] [INFO] cheese - inserting 561 documents. first: Exo's Showtime and last: Armenia in the Eurovision Song Contest 2016 +[2018-02-13T15:44:25.417] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T15:44:25.546] [INFO] cheese - inserting 349 documents. first: Wawiriya Burton and last: Dhamrai Jagannath Roth +[2018-02-13T15:44:25.572] [INFO] cheese - batch complete in: 0.407 secs +[2018-02-13T15:44:25.573] [INFO] cheese - inserting 642 documents. first: Mariano José de Larra and last: Mélodie +[2018-02-13T15:44:25.597] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T15:44:25.604] [INFO] cheese - inserting 575 documents. first: Railway semaphore signal and last: Preston Wamsley +[2018-02-13T15:44:25.625] [INFO] cheese - batch complete in: 0.398 secs +[2018-02-13T15:44:25.772] [INFO] cheese - inserting 614 documents. first: Social issue and last: Guairá Department +[2018-02-13T15:44:25.797] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T15:44:25.967] [INFO] cheese - inserting 462 documents. first: Killer Instinct and last: Ryu Hyun-Jin +[2018-02-13T15:44:25.973] [INFO] cheese - inserting 384 documents. first: Jennifer Government: NationStates and last: Gerardus Mercator +[2018-02-13T15:44:25.992] [INFO] cheese - inserting 543 documents. first: Stage6 and last: Barrack (disambiguation) +[2018-02-13T15:44:26.003] [INFO] cheese - batch complete in: 0.378 secs +[2018-02-13T15:44:25.996] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T15:44:26.056] [INFO] cheese - batch complete in: 0.459 secs +[2018-02-13T15:44:26.285] [INFO] cheese - inserting 398 documents. first: Skyfall and last: Bat'leth +[2018-02-13T15:44:26.313] [INFO] cheese - batch complete in: 0.317 secs +[2018-02-13T15:44:26.389] [INFO] cheese - inserting 514 documents. first: Julie Trustrup Jensen and last: Madurai district +[2018-02-13T15:44:26.433] [INFO] cheese - batch complete in: 0.636 secs +[2018-02-13T15:44:26.474] [INFO] cheese - inserting 471 documents. first: Almond cake and last: Winter Youth Olympic Games +[2018-02-13T15:44:26.481] [INFO] cheese - inserting 436 documents. first: Jacob Obrecht and last: Suleiman the Magnificent +[2018-02-13T15:44:26.498] [INFO] cheese - batch complete in: 0.495 secs +[2018-02-13T15:44:26.508] [INFO] cheese - batch complete in: 0.452 secs +[2018-02-13T15:44:26.839] [INFO] cheese - inserting 607 documents. first: 2016 Kaikoura earthquake and last: List of caravanserais in Azerbaijan +[2018-02-13T15:44:26.884] [INFO] cheese - inserting 493 documents. first: Evelina and last: Weight training +[2018-02-13T15:44:26.910] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T15:44:26.960] [INFO] cheese - batch complete in: 0.527 secs +[2018-02-13T15:44:26.995] [INFO] cheese - inserting 544 documents. first: Kālidāsa and last: Islam Karimov +[2018-02-13T15:44:27.019] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T15:44:27.054] [INFO] cheese - inserting 466 documents. first: Great-billed Heron and last: Kenneth Walker +[2018-02-13T15:44:27.107] [INFO] cheese - batch complete in: 0.794 secs +[2018-02-13T15:44:27.331] [INFO] cheese - inserting 559 documents. first: Egyptian goose and last: David Copperfield +[2018-02-13T15:44:27.359] [INFO] cheese - batch complete in: 0.399 secs +[2018-02-13T15:44:27.480] [INFO] cheese - inserting 611 documents. first: Kate Bosworth and last: Brosses +[2018-02-13T15:44:27.480] [INFO] cheese - inserting 559 documents. first: Weekly Shonen Jump and last: Les Pommerats +[2018-02-13T15:44:27.500] [INFO] cheese - batch complete in: 0.391 secs +[2018-02-13T15:44:27.516] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T15:44:27.570] [INFO] cheese - inserting 557 documents. first: Gang and last: Jazz piano +[2018-02-13T15:44:27.598] [INFO] cheese - batch complete in: 0.688 secs +[2018-02-13T15:44:27.674] [INFO] cheese - inserting 480 documents. first: Dadou and last: Đinh Xuân Lâm +[2018-02-13T15:44:27.687] [INFO] cheese - batch complete in: 0.328 secs +[2018-02-13T15:44:27.757] [INFO] cheese - inserting 717 documents. first: Bussières, Yonne and last: Monétay-sur-Loire +[2018-02-13T15:44:27.772] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T15:44:27.871] [INFO] cheese - inserting 467 documents. first: Saignelégier and last: Haripur District +[2018-02-13T15:44:27.896] [INFO] cheese - batch complete in: 0.38 secs +[2018-02-13T15:44:27.992] [INFO] cheese - inserting 461 documents. first: Arnold Spielberg and last: Starships +[2018-02-13T15:44:28.007] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T15:44:28.022] [INFO] cheese - inserting 673 documents. first: Apito and last: Eoghan Quigg +[2018-02-13T15:44:28.034] [INFO] cheese - inserting 582 documents. first: Monétay-sur-Allier and last: Cold Stone Creamery +[2018-02-13T15:44:28.046] [INFO] cheese - batch complete in: 0.448 secs +[2018-02-13T15:44:28.051] [INFO] cheese - batch complete in: 0.279 secs +[2018-02-13T15:44:28.253] [INFO] cheese - inserting 530 documents. first: Sybrand van Haersma Buma and last: Qin Shi Huang +[2018-02-13T15:44:28.323] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T15:44:28.335] [INFO] cheese - inserting 618 documents. first: Karak District and last: Transformer +[2018-02-13T15:44:28.364] [INFO] cheese - batch complete in: 0.468 secs +[2018-02-13T15:44:28.397] [INFO] cheese - inserting 424 documents. first: Max Schmitt in a Single Scull and last: Padmashali +[2018-02-13T15:44:28.409] [INFO] cheese - batch complete in: 0.358 secs +[2018-02-13T15:44:28.530] [INFO] cheese - inserting 644 documents. first: Imhotep and last: Yoshiaki Shimojo +[2018-02-13T15:44:28.557] [INFO] cheese - batch complete in: 0.511 secs +[2018-02-13T15:44:28.612] [INFO] cheese - inserting 691 documents. first: Abigail Kubeka and last: Time in Pakistan +[2018-02-13T15:44:28.632] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T15:44:28.684] [INFO] cheese - inserting 542 documents. first: Ballycastle, County Antrim and last: The Life and Times of Scrooge McDuck +[2018-02-13T15:44:28.704] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T15:44:28.723] [INFO] cheese - inserting 472 documents. first: 2012 Trinidad and Tobago Quadrangular Twenty20 and last: Henri Bergson +[2018-02-13T15:44:28.742] [INFO] cheese - batch complete in: 0.332 secs +[2018-02-13T15:44:28.886] [INFO] cheese - inserting 595 documents. first: Matteo Ferrari and last: Heterodontosaur +[2018-02-13T15:44:28.910] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T15:44:28.945] [INFO] cheese - inserting 723 documents. first: Wels and last: Michalovce +[2018-02-13T15:44:28.966] [INFO] cheese - inserting 385 documents. first: General Certificate of Secondary Education and last: Hugh Orde +[2018-02-13T15:44:28.972] [INFO] cheese - batch complete in: 0.34 secs +[2018-02-13T15:44:28.982] [INFO] cheese - batch complete in: 0.278 secs +[2018-02-13T15:44:29.022] [INFO] cheese - inserting 446 documents. first: Lee Radziwill and last: Cepheid variable +[2018-02-13T15:44:29.036] [INFO] cheese - batch complete in: 0.294 secs +[2018-02-13T15:44:29.292] [INFO] cheese - inserting 443 documents. first: GloFish and last: Protest the Hero +[2018-02-13T15:44:29.313] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T15:44:29.336] [INFO] cheese - inserting 650 documents. first: Mr. Pogo and last: Grini concentration camp +[2018-02-13T15:44:29.347] [INFO] cheese - inserting 579 documents. first: Antti Niemi and last: Riojasaurus +[2018-02-13T15:44:29.353] [INFO] cheese - inserting 597 documents. first: Candy Lo and last: Bering Strait +[2018-02-13T15:44:29.362] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T15:44:29.367] [INFO] cheese - batch complete in: 0.457 secs +[2018-02-13T15:44:29.400] [INFO] cheese - batch complete in: 0.417 secs +[2018-02-13T15:44:29.583] [INFO] cheese - inserting 456 documents. first: Reaction intermediate and last: Anne Hutchinson +[2018-02-13T15:44:29.596] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T15:44:29.612] [INFO] cheese - inserting 215 documents. first: Nicol David and last: Charles Mackerras +[2018-02-13T15:44:29.622] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T15:44:29.693] [INFO] cheese - inserting 643 documents. first: Ludwigslust-Parchim Rural District and last: Flag of Luxembourg +[2018-02-13T15:44:29.713] [INFO] cheese - batch complete in: 0.35 secs +[2018-02-13T15:44:29.771] [INFO] cheese - inserting 384 documents. first: Monolophosaurus and last: Shot (ice hockey) +[2018-02-13T15:44:29.793] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T15:44:29.842] [INFO] cheese - inserting 283 documents. first: Matariki Network of Universities and last: Mazu (goddess) +[2018-02-13T15:44:29.855] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T15:44:30.023] [INFO] cheese - inserting 470 documents. first: Renault Mégane and last: JPEG +[2018-02-13T15:44:30.046] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T15:44:30.126] [INFO] cheese - inserting 603 documents. first: T. Rex Autopsy and last: Sumiteru Taniguchi +[2018-02-13T15:44:30.141] [INFO] cheese - inserting 407 documents. first: Banquo and last: Quicksand (movie) +[2018-02-13T15:44:30.148] [INFO] cheese - batch complete in: 0.435 secs +[2018-02-13T15:44:30.169] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T15:44:30.210] [INFO] cheese - inserting 534 documents. first: Goal (ice hockey) and last: Ain +[2018-02-13T15:44:30.244] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T15:44:30.579] [INFO] cheese - inserting 653 documents. first: Sunao Tsuboi and last: Fatehpur Sikri +[2018-02-13T15:44:30.604] [INFO] cheese - inserting 486 documents. first: Nuss Procedure and last: Race movie +[2018-02-13T15:44:30.610] [INFO] cheese - batch complete in: 0.462 secs +[2018-02-13T15:44:30.650] [INFO] cheese - batch complete in: 0.481 secs +[2018-02-13T15:44:30.746] [INFO] cheese - inserting 581 documents. first: WilliamsF1 Grand Prix results and last: Sodium iodide +[2018-02-13T15:44:30.782] [INFO] cheese - batch complete in: 0.736 secs +[2018-02-13T15:44:30.783] [INFO] cheese - inserting 481 documents. first: Aisne and last: University of Kansas +[2018-02-13T15:44:30.823] [INFO] cheese - batch complete in: 0.579 secs +[2018-02-13T15:44:30.985] [INFO] cheese - inserting 400 documents. first: Ted Manson and last: Dora Baltea +[2018-02-13T15:44:30.997] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T15:44:31.048] [INFO] cheese - inserting 640 documents. first: Murmansk Oblast and last: Hurricane Ophelia +[2018-02-13T15:44:31.075] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T15:44:31.163] [INFO] cheese - inserting 565 documents. first: Sodium fluoride and last: Silicon oxide +[2018-02-13T15:44:31.161] [INFO] cheese - inserting 456 documents. first: University of Pennsylvania and last: Boeing 757 +[2018-02-13T15:44:31.184] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T15:44:31.201] [INFO] cheese - batch complete in: 0.419 secs +[2018-02-13T15:44:31.254] [INFO] cheese - inserting 483 documents. first: Jaime Herrera Beutler and last: Tahiti rail +[2018-02-13T15:44:31.270] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T15:44:31.469] [INFO] cheese - inserting 286 documents. first: Arrondissement of Ambert and last: Shimmer and Shine +[2018-02-13T15:44:31.485] [INFO] cheese - batch complete in: 0.41 secs +[2018-02-13T15:44:31.491] [INFO] cheese - inserting 738 documents. first: List of National Hockey League arenas and last: Ohey +[2018-02-13T15:44:31.507] [INFO] cheese - inserting 486 documents. first: Frank Kelso and last: Burnham-on-Crouch +[2018-02-13T15:44:31.521] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T15:44:31.525] [INFO] cheese - batch complete in: 0.255 secs +[2018-02-13T15:44:31.580] [INFO] cheese - inserting 505 documents. first: Jean Cocteau and last: Carlton Football Club +[2018-02-13T15:44:31.607] [INFO] cheese - batch complete in: 0.406 secs +[2018-02-13T15:44:31.758] [INFO] cheese - inserting 201 documents. first: Katalin Szőke and last: Lindokuhle +[2018-02-13T15:44:31.765] [INFO] cheese - batch complete in: 0.28 secs +[2018-02-13T15:44:31.817] [INFO] cheese - inserting 666 documents. first: Olen and last: Georg Cantor +[2018-02-13T15:44:31.827] [INFO] cheese - inserting 559 documents. first: Cold Norton and last: Bonaventure +[2018-02-13T15:44:31.836] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T15:44:31.846] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T15:44:32.012] [INFO] cheese - inserting 538 documents. first: Essendon Football Club and last: Tiruchirappalli +[2018-02-13T15:44:32.033] [INFO] cheese - batch complete in: 0.426 secs +[2018-02-13T15:44:32.165] [INFO] cheese - inserting 676 documents. first: Pay-per-view and last: Antwerp (province) +[2018-02-13T15:44:32.192] [INFO] cheese - inserting 598 documents. first: Game Revolution and last: Flower pot +[2018-02-13T15:44:32.195] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T15:44:32.212] [INFO] cheese - batch complete in: 0.366 secs +[2018-02-13T15:44:32.266] [INFO] cheese - inserting 268 documents. first: Scottish & Newcastle and last: Rikard Wolff +[2018-02-13T15:44:32.277] [INFO] cheese - batch complete in: 0.512 secs +[2018-02-13T15:44:32.331] [INFO] cheese - inserting 495 documents. first: ROM (disambiguation) and last: Power line +[2018-02-13T15:44:32.347] [INFO] cheese - batch complete in: 0.314 secs +[2018-02-13T15:44:32.423] [INFO] cheese - inserting 467 documents. first: Thulium and last: Suceava +[2018-02-13T15:44:32.438] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T15:44:32.508] [INFO] cheese - inserting 86 documents. first: Earle Hyman and last: Shunt (electrical) +[2018-02-13T15:44:32.517] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T15:44:32.518] [INFO] cheese - worker pid:87785 is done. inserted 62328 pages in 0 secs. +[2018-02-13T15:44:32.565] [INFO] cheese - inserting 716 documents. first: Bernadette Lafont and last: Volksmarine +[2018-02-13T15:44:32.593] [INFO] cheese - batch complete in: 0.381 secs +[2018-02-13T15:44:32.607] [INFO] cheese - inserting 484 documents. first: Dean of Invention and last: Gorgonopsid +[2018-02-13T15:44:32.624] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T15:44:32.683] [INFO] cheese - inserting 506 documents. first: Baiu Mountains and last: Tony Lazzeri +[2018-02-13T15:44:32.701] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T15:44:32.842] [INFO] cheese - inserting 509 documents. first: Buddy Scott and last: Godmanchester +[2018-02-13T15:44:32.853] [INFO] cheese - inserting 569 documents. first: Gorgonops and last: Air navigation +[2018-02-13T15:44:32.856] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T15:44:32.871] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T15:44:32.990] [INFO] cheese - inserting 639 documents. first: Revolution Studios and last: Lehigh Valley IronPigs +[2018-02-13T15:44:33.013] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T15:44:33.141] [INFO] cheese - inserting 495 documents. first: PewDiePie and last: British Darts Organisation +[2018-02-13T15:44:33.154] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T15:44:33.159] [INFO] cheese - inserting 604 documents. first: Kristi Yamaguchi and last: Genetic counselling +[2018-02-13T15:44:33.186] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T15:44:33.217] [INFO] cheese - inserting 27 documents. first: Susan Collins and last: Stephen Baldwin +[2018-02-13T15:44:33.219] [INFO] cheese - batch complete in: 0.033 secs +[2018-02-13T15:44:33.219] [INFO] cheese - worker pid:87783 is done. inserted 63109 pages in 0 secs. +[2018-02-13T15:44:33.251] [INFO] cheese - inserting 196 documents. first: Fishbourne Roman Palace and last: Government shutdown in the United States +[2018-02-13T15:44:33.256] [INFO] cheese - batch complete in: 0.102 secs +[2018-02-13T15:44:33.256] [INFO] cheese - worker pid:87784 is done. inserted 62522 pages in 0 secs. +[2018-02-13T15:44:33.261] [INFO] cheese - inserting 632 documents. first: Le Horps and last: Book of Tobit +[2018-02-13T15:44:33.275] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T15:44:33.490] [INFO] cheese - inserting 591 documents. first: Forbidden City and last: Vince J. McMahon +[2018-02-13T15:44:33.505] [INFO] cheese - batch complete in: 0.23 secs +[2018-02-13T15:44:33.720] [INFO] cheese - inserting 556 documents. first: René Adler and last: Hongwu Emperor +[2018-02-13T15:44:33.733] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T15:44:33.902] [INFO] cheese - inserting 605 documents. first: Soulja Boy Tell 'Em and last: Execution unit +[2018-02-13T15:44:33.913] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T15:44:34.110] [INFO] cheese - inserting 557 documents. first: Pre-1600 Atlantic hurricane seasons and last: Grammy Award for Best Song Written for a Motion Picture, Television or Other Visual Media +[2018-02-13T15:44:34.125] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T15:44:34.294] [INFO] cheese - inserting 557 documents. first: Bonnie Raitt and last: Amfissa +[2018-02-13T15:44:34.306] [INFO] cheese - batch complete in: 0.181 secs +[2018-02-13T15:44:34.499] [INFO] cheese - inserting 560 documents. first: Tann, Hesse and last: Westward Ho! +[2018-02-13T15:44:34.519] [INFO] cheese - batch complete in: 0.213 secs +[2018-02-13T15:44:34.706] [INFO] cheese - inserting 635 documents. first: Bude and last: Écorpain +[2018-02-13T15:44:34.725] [INFO] cheese - batch complete in: 0.206 secs +[2018-02-13T15:44:34.847] [INFO] cheese - inserting 987 documents. first: Épineu-le-Chevreuil and last: Barling, Arkansas +[2018-02-13T15:44:34.857] [INFO] cheese - batch complete in: 0.132 secs +[2018-02-13T15:44:34.995] [INFO] cheese - inserting 877 documents. first: Bey, Ain and last: Angaïs +[2018-02-13T15:44:35.005] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T15:44:35.154] [INFO] cheese - inserting 946 documents. first: Anglet and last: Grand View, Idaho +[2018-02-13T15:44:35.165] [INFO] cheese - batch complete in: 0.16 secs +[2018-02-13T15:44:35.290] [INFO] cheese - inserting 974 documents. first: Grangeville, Idaho and last: Aubin-Saint-Vaast +[2018-02-13T15:44:35.303] [INFO] cheese - batch complete in: 0.138 secs +[2018-02-13T15:44:35.418] [INFO] cheese - inserting 998 documents. first: Aubrometz and last: Marlow, Oklahoma +[2018-02-13T15:44:35.429] [INFO] cheese - batch complete in: 0.126 secs +[2018-02-13T15:44:35.567] [INFO] cheese - inserting 996 documents. first: Maud, Oklahoma and last: Warsaw, Illinois +[2018-02-13T15:44:35.578] [INFO] cheese - batch complete in: 0.149 secs +[2018-02-13T15:44:35.722] [INFO] cheese - inserting 962 documents. first: Washington, Illinois and last: Marions +[2018-02-13T15:44:35.736] [INFO] cheese - batch complete in: 0.158 secs +[2018-02-13T15:44:35.919] [INFO] cheese - inserting 943 documents. first: Marsas, Gironde and last: Gyé-sur-Seine +[2018-02-13T15:44:35.936] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T15:44:36.097] [INFO] cheese - inserting 806 documents. first: Hampigny and last: Saint-André-sur-Orne +[2018-02-13T15:44:36.108] [INFO] cheese - batch complete in: 0.172 secs +[2018-02-13T15:44:36.316] [INFO] cheese - inserting 693 documents. first: Saint-Arnoult, Calvados and last: Link reaction +[2018-02-13T15:44:36.333] [INFO] cheese - batch complete in: 0.225 secs +[2018-02-13T15:44:36.565] [INFO] cheese - inserting 523 documents. first: Rift (geology) and last: Harrow & Wealdstone station +[2018-02-13T15:44:36.582] [INFO] cheese - batch complete in: 0.249 secs +[2018-02-13T15:44:36.782] [INFO] cheese - inserting 508 documents. first: Lemon Drop Mangosteen and last: Liliales +[2018-02-13T15:44:36.794] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T15:44:36.981] [INFO] cheese - inserting 562 documents. first: Drill and last: Beringen +[2018-02-13T15:44:36.994] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T15:44:37.205] [INFO] cheese - inserting 585 documents. first: Beloeil and last: Goat's milk cheese +[2018-02-13T15:44:37.216] [INFO] cheese - batch complete in: 0.222 secs +[2018-02-13T15:44:37.403] [INFO] cheese - inserting 219 documents. first: Webcomic and last: Seal (device) +[2018-02-13T15:44:37.411] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T15:44:37.590] [INFO] cheese - inserting 586 documents. first: The Attitude Era and last: João Justino Amaral dos Santos +[2018-02-13T15:44:37.606] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T15:44:37.851] [INFO] cheese - inserting 636 documents. first: Zé Sérgio and last: Alberto Gilardino +[2018-02-13T15:44:37.865] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T15:44:38.080] [INFO] cheese - inserting 579 documents. first: Angelo Peruzzi and last: The Real Ghostbusters +[2018-02-13T15:44:38.093] [INFO] cheese - batch complete in: 0.228 secs +[2018-02-13T15:44:38.268] [INFO] cheese - inserting 535 documents. first: Messianic Judaism and last: Missy Peregrym +[2018-02-13T15:44:38.279] [INFO] cheese - batch complete in: 0.186 secs +[2018-02-13T15:44:38.434] [INFO] cheese - inserting 381 documents. first: Ken Follett and last: Chanakya +[2018-02-13T15:44:38.442] [INFO] cheese - batch complete in: 0.163 secs +[2018-02-13T15:44:38.638] [INFO] cheese - inserting 610 documents. first: Trowel and last: Gresham's law +[2018-02-13T15:44:38.655] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T15:44:38.853] [INFO] cheese - inserting 609 documents. first: Benjamin Netanyahu and last: Hideki Uchidate +[2018-02-13T15:44:38.869] [INFO] cheese - batch complete in: 0.214 secs +[2018-02-13T15:44:39.088] [INFO] cheese - inserting 635 documents. first: Ricardo Pereira and last: Ukrainian Premier League +[2018-02-13T15:44:39.102] [INFO] cheese - batch complete in: 0.233 secs +[2018-02-13T15:44:39.247] [INFO] cheese - inserting 349 documents. first: Susumu Oki and last: Daisuke Tomita +[2018-02-13T15:44:39.257] [INFO] cheese - batch complete in: 0.155 secs +[2018-02-13T15:44:39.339] [INFO] cheese - inserting 98 documents. first: Seiichiro Okuno and last: Mesonychid +[2018-02-13T15:44:39.342] [INFO] cheese - batch complete in: 0.085 secs +[2018-02-13T15:44:39.542] [INFO] cheese - inserting 598 documents. first: Andrewsarchus and last: Wavelet transform +[2018-02-13T15:44:39.558] [INFO] cheese - batch complete in: 0.216 secs +[2018-02-13T15:44:39.763] [INFO] cheese - inserting 556 documents. first: Gladys Knight and last: Verbenaceae +[2018-02-13T15:44:39.777] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T15:44:39.949] [INFO] cheese - inserting 544 documents. first: Reinaldo da Cruz Oliveira and last: Michael Waltrip +[2018-02-13T15:44:39.960] [INFO] cheese - batch complete in: 0.183 secs +[2018-02-13T15:44:40.116] [INFO] cheese - inserting 580 documents. first: Jean Simmons and last: Issey Nakajima-Farran +[2018-02-13T15:44:40.127] [INFO] cheese - batch complete in: 0.167 secs +[2018-02-13T15:44:40.374] [INFO] cheese - inserting 658 documents. first: Toshimitsu Asai and last: Leap year starting on Thursday +[2018-02-13T15:44:40.392] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T15:44:40.530] [INFO] cheese - inserting 397 documents. first: Leap year starting on Saturday and last: Winnebago County, Wisconsin +[2018-02-13T15:44:40.538] [INFO] cheese - batch complete in: 0.146 secs +[2018-02-13T15:44:40.729] [INFO] cheese - inserting 417 documents. first: Chiton and last: Viral life cycle +[2018-02-13T15:44:40.739] [INFO] cheese - batch complete in: 0.201 secs +[2018-02-13T15:44:40.884] [INFO] cheese - inserting 497 documents. first: Empathy and last: Faber Drive +[2018-02-13T15:44:40.899] [INFO] cheese - batch complete in: 0.16 secs +[2018-02-13T15:44:41.125] [INFO] cheese - inserting 579 documents. first: Abubakari Yakubu and last: Eric S. Raymond +[2018-02-13T15:44:41.139] [INFO] cheese - batch complete in: 0.24 secs +[2018-02-13T15:44:41.344] [INFO] cheese - inserting 570 documents. first: Bourne End, Buckinghamshire and last: Glioblastoma multiforme +[2018-02-13T15:44:41.358] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T15:44:41.567] [INFO] cheese - inserting 661 documents. first: Jordan Schroeder and last: Regeneration +[2018-02-13T15:44:41.582] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T15:44:41.792] [INFO] cheese - inserting 653 documents. first: Lowell, Massachusetts and last: Theanine +[2018-02-13T15:44:41.806] [INFO] cheese - batch complete in: 0.224 secs +[2018-02-13T15:44:41.997] [INFO] cheese - inserting 583 documents. first: Bichon Frisé and last: John Michael Wright +[2018-02-13T15:44:42.008] [INFO] cheese - batch complete in: 0.202 secs +[2018-02-13T15:44:42.155] [INFO] cheese - inserting 330 documents. first: Frank Leboeuf and last: Badwater Basin +[2018-02-13T15:44:42.167] [INFO] cheese - batch complete in: 0.159 secs +[2018-02-13T15:44:42.307] [INFO] cheese - inserting 365 documents. first: Brian Campbell and last: Katarina Waters +[2018-02-13T15:44:42.315] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T15:44:42.544] [INFO] cheese - inserting 542 documents. first: Because (The Beatles song) and last: Circuit Gilles Villeneuve +[2018-02-13T15:44:42.558] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T15:44:42.813] [INFO] cheese - inserting 598 documents. first: A1 and last: Sandpaper +[2018-02-13T15:44:42.832] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T15:44:43.016] [INFO] cheese - inserting 489 documents. first: Corundum and last: Quatour pour la fin du temps +[2018-02-13T15:44:43.027] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T15:44:43.271] [INFO] cheese - inserting 531 documents. first: National parks of New Zealand and last: Steve Hrymnak +[2018-02-13T15:44:43.286] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T15:44:43.456] [INFO] cheese - inserting 523 documents. first: Board of directors and last: Maria Antonia of Spain +[2018-02-13T15:44:43.466] [INFO] cheese - batch complete in: 0.18 secs +[2018-02-13T15:44:43.627] [INFO] cheese - inserting 496 documents. first: Cleisthenes and last: Dooly the Little Dinosaur +[2018-02-13T15:44:43.636] [INFO] cheese - batch complete in: 0.17 secs +[2018-02-13T15:44:43.774] [INFO] cheese - inserting 496 documents. first: Harold Brown and last: Safe from Harm (song) +[2018-02-13T15:44:43.784] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T15:44:43.966] [INFO] cheese - inserting 612 documents. first: Admiralty and last: Zack Ryder +[2018-02-13T15:44:43.982] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T15:44:44.161] [INFO] cheese - inserting 581 documents. first: Pinacosaurus and last: Frances Fisher +[2018-02-13T15:44:44.173] [INFO] cheese - batch complete in: 0.191 secs +[2018-02-13T15:44:44.336] [INFO] cheese - inserting 559 documents. first: Fredonia, Kansas and last: The Kids Are All Right (movie) +[2018-02-13T15:44:44.354] [INFO] cheese - batch complete in: 0.181 secs +[2018-02-13T15:44:44.540] [INFO] cheese - inserting 534 documents. first: I Spit on Your Grave (2010 movie) and last: Personal grooming +[2018-02-13T15:44:44.553] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T15:44:44.721] [INFO] cheese - inserting 429 documents. first: Firework (song) and last: Safeway Inc. +[2018-02-13T15:44:44.735] [INFO] cheese - batch complete in: 0.182 secs +[2018-02-13T15:44:44.883] [INFO] cheese - inserting 387 documents. first: Gamma-ray burst and last: Order of the Indian Empire +[2018-02-13T15:44:44.892] [INFO] cheese - batch complete in: 0.157 secs +[2018-02-13T15:44:45.088] [INFO] cheese - inserting 595 documents. first: Garden State Parkway and last: Vermiculite +[2018-02-13T15:44:45.104] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T15:44:45.405] [INFO] cheese - inserting 565 documents. first: Food politics and last: Périgueux +[2018-02-13T15:44:45.420] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T15:44:45.823] [INFO] cheese - inserting 676 documents. first: Communes of the Dordogne department and last: Bray, Berkshire +[2018-02-13T15:44:45.843] [INFO] cheese - batch complete in: 0.423 secs +[2018-02-13T15:44:46.038] [INFO] cheese - inserting 512 documents. first: Joseph Whittaker (botanist) and last: Afghanistan at the Olympics +[2018-02-13T15:44:46.054] [INFO] cheese - batch complete in: 0.211 secs +[2018-02-13T15:44:46.266] [INFO] cheese - inserting 451 documents. first: Hypodermic needle and last: Barnard's star +[2018-02-13T15:44:46.281] [INFO] cheese - batch complete in: 0.227 secs +[2018-02-13T15:44:46.423] [INFO] cheese - inserting 276 documents. first: Punjabi language movement and last: Ice cap +[2018-02-13T15:44:46.432] [INFO] cheese - batch complete in: 0.151 secs +[2018-02-13T15:44:46.620] [INFO] cheese - inserting 386 documents. first: Carbon–hydrogen bond activation and last: Ireland (disambiguation) +[2018-02-13T15:44:46.633] [INFO] cheese - batch complete in: 0.201 secs +[2018-02-13T15:44:46.804] [INFO] cheese - inserting 343 documents. first: Banbasa and last: National Museum of Australia +[2018-02-13T15:44:46.814] [INFO] cheese - batch complete in: 0.181 secs +[2018-02-13T15:44:46.999] [INFO] cheese - inserting 376 documents. first: Terminal Velocity (video game) and last: Stronger (Kelly Clarkson album) +[2018-02-13T15:44:47.009] [INFO] cheese - batch complete in: 0.195 secs +[2018-02-13T15:44:47.189] [INFO] cheese - inserting 365 documents. first: Henry Cooper and last: Schengen Area +[2018-02-13T15:44:47.198] [INFO] cheese - batch complete in: 0.189 secs +[2018-02-13T15:44:47.381] [INFO] cheese - inserting 475 documents. first: Superstition and last: Sequoia +[2018-02-13T15:44:47.392] [INFO] cheese - batch complete in: 0.194 secs +[2018-02-13T15:44:47.596] [INFO] cheese - inserting 489 documents. first: New Bern, North Carolina and last: Kan'en +[2018-02-13T15:44:47.609] [INFO] cheese - batch complete in: 0.217 secs +[2018-02-13T15:44:47.800] [INFO] cheese - inserting 403 documents. first: Kanpō and last: Tamara Toumanova +[2018-02-13T15:44:47.817] [INFO] cheese - batch complete in: 0.208 secs +[2018-02-13T15:44:48.057] [INFO] cheese - inserting 467 documents. first: Faizal Yusof and last: Glaucous +[2018-02-13T15:44:48.071] [INFO] cheese - batch complete in: 0.254 secs +[2018-02-13T15:44:48.253] [INFO] cheese - inserting 444 documents. first: Cliff Richard and last: Golden Sun (series) +[2018-02-13T15:44:48.263] [INFO] cheese - batch complete in: 0.192 secs +[2018-02-13T15:44:48.625] [INFO] cheese - inserting 551 documents. first: 19th G7 summit and last: Yozo Aoki +[2018-02-13T15:44:48.646] [INFO] cheese - batch complete in: 0.383 secs +[2018-02-13T15:44:48.906] [INFO] cheese - inserting 567 documents. first: South India and last: 2011–12 United States network television schedule +[2018-02-13T15:44:48.922] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T15:44:49.079] [INFO] cheese - inserting 408 documents. first: Comedytime Saturday and last: Red Bridge (Tasmania) +[2018-02-13T15:44:49.088] [INFO] cheese - batch complete in: 0.166 secs +[2018-02-13T15:44:49.261] [INFO] cheese - inserting 382 documents. first: Cable-stayed bridge and last: Hitachi, Ibaraki +[2018-02-13T15:44:49.275] [INFO] cheese - batch complete in: 0.186 secs +[2018-02-13T15:44:49.456] [INFO] cheese - inserting 403 documents. first: Third Geneva Convention and last: Grey bamboo lemur +[2018-02-13T15:44:49.467] [INFO] cheese - batch complete in: 0.192 secs +[2018-02-13T15:44:49.716] [INFO] cheese - inserting 584 documents. first: Angola colobus and last: Luanda Province +[2018-02-13T15:44:49.732] [INFO] cheese - batch complete in: 0.265 secs +[2018-02-13T15:44:49.959] [INFO] cheese - inserting 569 documents. first: Historic Monuments and Sites of Hiraizumi and last: Cannibalism in animals +[2018-02-13T15:44:49.973] [INFO] cheese - batch complete in: 0.241 secs +[2018-02-13T15:44:50.184] [INFO] cheese - inserting 564 documents. first: Curtsey and last: Rangpur +[2018-02-13T15:44:50.196] [INFO] cheese - batch complete in: 0.223 secs +[2018-02-13T15:44:50.381] [INFO] cheese - inserting 520 documents. first: Rangpur, Bangladesh and last: Pseudoscorpion +[2018-02-13T15:44:50.394] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T15:44:50.580] [INFO] cheese - inserting 490 documents. first: Astacus astacus and last: Andreas Vesalius +[2018-02-13T15:44:50.594] [INFO] cheese - batch complete in: 0.2 secs +[2018-02-13T15:44:50.759] [INFO] cheese - inserting 546 documents. first: Rembert Dodoens and last: Job for a Cowboy +[2018-02-13T15:44:50.769] [INFO] cheese - batch complete in: 0.175 secs +[2018-02-13T15:44:51.001] [INFO] cheese - inserting 451 documents. first: Chhatrapati Shivaji Terminus and last: Dick Van Dyke +[2018-02-13T15:44:51.016] [INFO] cheese - batch complete in: 0.247 secs +[2018-02-13T15:44:51.165] [INFO] cheese - inserting 383 documents. first: Eli Wallach and last: Hardee's +[2018-02-13T15:44:51.174] [INFO] cheese - batch complete in: 0.158 secs +[2018-02-13T15:44:51.344] [INFO] cheese - inserting 439 documents. first: Easy Rider and last: Neomorphinae +[2018-02-13T15:44:51.357] [INFO] cheese - batch complete in: 0.183 secs +[2018-02-13T15:44:51.585] [INFO] cheese - inserting 488 documents. first: Backpropagation and last: Robert Hughes (critic) +[2018-02-13T15:44:51.596] [INFO] cheese - batch complete in: 0.239 secs +[2018-02-13T15:44:51.867] [INFO] cheese - inserting 584 documents. first: Steve Harvey and last: Cleator Moor +[2018-02-13T15:44:51.884] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T15:44:52.056] [INFO] cheese - inserting 519 documents. first: Haile and last: Ralph Bellamy +[2018-02-13T15:44:52.071] [INFO] cheese - batch complete in: 0.187 secs +[2018-02-13T15:44:52.263] [INFO] cheese - inserting 517 documents. first: United States Hockey Hall of Fame and last: Giuseppe Tomasi di Lampedusa +[2018-02-13T15:44:52.274] [INFO] cheese - batch complete in: 0.203 secs +[2018-02-13T15:44:52.448] [INFO] cheese - inserting 469 documents. first: Mute swan and last: James Murdoch (journalist) +[2018-02-13T15:44:52.460] [INFO] cheese - batch complete in: 0.185 secs +[2018-02-13T15:44:52.663] [INFO] cheese - inserting 370 documents. first: Edmund Papinot and last: Sereno Peck Fenn +[2018-02-13T15:44:52.672] [INFO] cheese - batch complete in: 0.212 secs +[2018-02-13T15:44:52.798] [INFO] cheese - inserting 351 documents. first: John Andrews and last: Robert Eugene Bush +[2018-02-13T15:44:52.805] [INFO] cheese - batch complete in: 0.133 secs +[2018-02-13T15:44:53.048] [INFO] cheese - inserting 567 documents. first: Televisión Nacional de Chile and last: Protectionist Party +[2018-02-13T15:44:53.064] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T15:44:53.248] [INFO] cheese - inserting 451 documents. first: Fallingwater and last: Avrilly, Allier +[2018-02-13T15:44:53.261] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T15:44:53.397] [INFO] cheese - inserting 678 documents. first: Richard Blanco and last: Martha +[2018-02-13T15:44:53.406] [INFO] cheese - batch complete in: 0.145 secs +[2018-02-13T15:44:53.547] [INFO] cheese - inserting 730 documents. first: Charles Roven and last: 983 +[2018-02-13T15:44:53.559] [INFO] cheese - batch complete in: 0.153 secs +[2018-02-13T15:44:53.676] [INFO] cheese - inserting 484 documents. first: 982 and last: Robert M. La Follette, Sr. +[2018-02-13T15:44:53.684] [INFO] cheese - batch complete in: 0.125 secs +[2018-02-13T15:44:53.832] [INFO] cheese - inserting 404 documents. first: The Piano Teacher and last: Ann Sothern +[2018-02-13T15:44:53.840] [INFO] cheese - batch complete in: 0.156 secs +[2018-02-13T15:44:53.991] [INFO] cheese - inserting 483 documents. first: Gustavo Santaolalla and last: Poás Volcano National Park +[2018-02-13T15:44:53.999] [INFO] cheese - batch complete in: 0.159 secs +[2018-02-13T15:44:54.139] [INFO] cheese - inserting 462 documents. first: Mr. Saturday Night and last: Andrea Feldman +[2018-02-13T15:44:54.147] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T15:44:54.258] [INFO] cheese - inserting 407 documents. first: Bill Wendell and last: Daína Chaviano +[2018-02-13T15:44:54.267] [INFO] cheese - batch complete in: 0.12 secs +[2018-02-13T15:44:54.389] [INFO] cheese - inserting 386 documents. first: Angélica Gorodischer and last: The Pink Panther 2 +[2018-02-13T15:44:54.396] [INFO] cheese - batch complete in: 0.129 secs +[2018-02-13T15:44:54.517] [INFO] cheese - inserting 295 documents. first: Boston National Historical Park and last: Panchayat town +[2018-02-13T15:44:54.522] [INFO] cheese - batch complete in: 0.126 secs +[2018-02-13T15:44:54.681] [INFO] cheese - inserting 488 documents. first: Translocation (botany) and last: Vör +[2018-02-13T15:44:54.690] [INFO] cheese - batch complete in: 0.168 secs +[2018-02-13T15:44:54.830] [INFO] cheese - inserting 486 documents. first: Rán and last: Oceanus Hopkins +[2018-02-13T15:44:54.841] [INFO] cheese - batch complete in: 0.151 secs +[2018-02-13T15:44:54.956] [INFO] cheese - inserting 378 documents. first: Division of Cowper and last: Ymir +[2018-02-13T15:44:54.962] [INFO] cheese - batch complete in: 0.121 secs +[2018-02-13T15:44:55.096] [INFO] cheese - inserting 486 documents. first: Thomas Tinker and last: Bridgette Andersen +[2018-02-13T15:44:55.104] [INFO] cheese - batch complete in: 0.142 secs +[2018-02-13T15:44:55.242] [INFO] cheese - inserting 553 documents. first: Kary Mullis and last: Motala +[2018-02-13T15:44:55.250] [INFO] cheese - batch complete in: 0.146 secs +[2018-02-13T15:44:55.403] [INFO] cheese - inserting 508 documents. first: Vadstena and last: Northampton Saints +[2018-02-13T15:44:55.413] [INFO] cheese - batch complete in: 0.163 secs +[2018-02-13T15:44:55.599] [INFO] cheese - inserting 669 documents. first: Worcester Warriors and last: Degerfors Municipality +[2018-02-13T15:44:55.611] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T15:44:55.816] [INFO] cheese - inserting 617 documents. first: Söderköping Municipality and last: Eve Hewson +[2018-02-13T15:44:55.830] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T15:44:55.973] [INFO] cheese - inserting 519 documents. first: Ali Hewson and last: Godzilla (2014 movie) +[2018-02-13T15:44:55.982] [INFO] cheese - batch complete in: 0.152 secs +[2018-02-13T15:44:56.165] [INFO] cheese - inserting 489 documents. first: Anguirus and last: Nature photography +[2018-02-13T15:44:56.175] [INFO] cheese - batch complete in: 0.193 secs +[2018-02-13T15:44:56.316] [INFO] cheese - inserting 434 documents. first: Tetanuran and last: Christian Gottfried Ehrenberg +[2018-02-13T15:44:56.325] [INFO] cheese - batch complete in: 0.15 secs +[2018-02-13T15:44:56.493] [INFO] cheese - inserting 497 documents. first: Afro-Haitian and last: Expected value +[2018-02-13T15:44:56.502] [INFO] cheese - batch complete in: 0.177 secs +[2018-02-13T15:44:56.667] [INFO] cheese - inserting 612 documents. first: Canaletto and last: Kaohsiung Mosque +[2018-02-13T15:44:56.679] [INFO] cheese - batch complete in: 0.176 secs +[2018-02-13T15:44:56.826] [INFO] cheese - inserting 588 documents. first: Taipei Cultural Mosque and last: Court Appointed Special Advocate +[2018-02-13T15:44:56.838] [INFO] cheese - batch complete in: 0.159 secs +[2018-02-13T15:44:56.971] [INFO] cheese - inserting 628 documents. first: Mac McGarry and last: Tomáš Plekanec +[2018-02-13T15:44:56.985] [INFO] cheese - batch complete in: 0.147 secs +[2018-02-13T15:44:57.130] [INFO] cheese - inserting 592 documents. first: Ray Frederick and last: Shonda Rhimes +[2018-02-13T15:44:57.140] [INFO] cheese - batch complete in: 0.155 secs +[2018-02-13T15:44:57.274] [INFO] cheese - inserting 418 documents. first: Oswestry and last: Ioannis Grivas +[2018-02-13T15:44:57.281] [INFO] cheese - batch complete in: 0.141 secs +[2018-02-13T15:44:57.416] [INFO] cheese - inserting 537 documents. first: Rafael Addiego Bruno and last: David Krejčí +[2018-02-13T15:44:57.424] [INFO] cheese - batch complete in: 0.143 secs +[2018-02-13T15:44:57.553] [INFO] cheese - inserting 582 documents. first: Alexandre Borges and last: Richard Coogan +[2018-02-13T15:44:57.566] [INFO] cheese - batch complete in: 0.142 secs +[2018-02-13T15:44:57.701] [INFO] cheese - inserting 579 documents. first: Karl Otto Götz and last: Open University of Israel +[2018-02-13T15:44:57.709] [INFO] cheese - batch complete in: 0.143 secs +[2018-02-13T15:44:57.860] [INFO] cheese - inserting 553 documents. first: Birgitta Valberg and last: Gallatin, Tennessee +[2018-02-13T15:44:57.869] [INFO] cheese - batch complete in: 0.16 secs +[2018-02-13T15:44:58.021] [INFO] cheese - inserting 614 documents. first: Virgilio Barco Vargas and last: Chamba State +[2018-02-13T15:44:58.031] [INFO] cheese - batch complete in: 0.162 secs +[2018-02-13T15:44:58.177] [INFO] cheese - inserting 615 documents. first: Wild Bill Hickok and last: Karlheinz Hackl +[2018-02-13T15:44:58.189] [INFO] cheese - batch complete in: 0.158 secs +[2018-02-13T15:44:58.346] [INFO] cheese - inserting 632 documents. first: Division of Maranoa and last: Ken Dodd +[2018-02-13T15:44:58.358] [INFO] cheese - batch complete in: 0.169 secs +[2018-02-13T15:44:58.492] [INFO] cheese - inserting 475 documents. first: Grass Valley, California and last: Feixi County +[2018-02-13T15:44:58.500] [INFO] cheese - batch complete in: 0.141 secs +[2018-02-13T15:44:58.656] [INFO] cheese - inserting 597 documents. first: Feidong County and last: Problem (Ariana Grande song) +[2018-02-13T15:44:58.668] [INFO] cheese - batch complete in: 0.168 secs +[2018-02-13T15:44:58.847] [INFO] cheese - inserting 658 documents. first: Yevgeny Samoteykin and last: Josh Meyers +[2018-02-13T15:44:58.860] [INFO] cheese - batch complete in: 0.192 secs +[2018-02-13T15:44:59.015] [INFO] cheese - inserting 607 documents. first: Danny Masterson and last: Laura Bell Bundy +[2018-02-13T15:44:59.028] [INFO] cheese - batch complete in: 0.168 secs +[2018-02-13T15:44:59.166] [INFO] cheese - inserting 580 documents. first: Alex Avila and last: Defensin +[2018-02-13T15:44:59.176] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T15:44:59.361] [INFO] cheese - inserting 640 documents. first: Málaga Cathedral and last: Assassin's Creed: Revelations +[2018-02-13T15:44:59.373] [INFO] cheese - batch complete in: 0.197 secs +[2018-02-13T15:44:59.508] [INFO] cheese - inserting 608 documents. first: Lieutenant general and last: Herman Teirlinck +[2018-02-13T15:44:59.522] [INFO] cheese - batch complete in: 0.148 secs +[2018-02-13T15:44:59.666] [INFO] cheese - inserting 500 documents. first: Alice Nahon and last: Juke Girl +[2018-02-13T15:44:59.675] [INFO] cheese - batch complete in: 0.153 secs +[2018-02-13T15:44:59.818] [INFO] cheese - inserting 481 documents. first: The Marrying Man and last: Infrared telescope +[2018-02-13T15:44:59.831] [INFO] cheese - batch complete in: 0.156 secs +[2018-02-13T15:45:00.127] [INFO] cheese - inserting 511 documents. first: Løjenkær and last: Dolores Gray +[2018-02-13T15:45:00.137] [INFO] cheese - batch complete in: 0.306 secs +[2018-02-13T15:45:00.332] [INFO] cheese - inserting 598 documents. first: Mildred Miller and last: Bergeforsen +[2018-02-13T15:45:00.346] [INFO] cheese - batch complete in: 0.209 secs +[2018-02-13T15:45:00.510] [INFO] cheese - inserting 605 documents. first: Stavreviken and last: Still Alice +[2018-02-13T15:45:00.521] [INFO] cheese - batch complete in: 0.174 secs +[2018-02-13T15:45:00.695] [INFO] cheese - inserting 588 documents. first: I'm Going Slightly Mad and last: Tierra de reyes +[2018-02-13T15:45:00.712] [INFO] cheese - batch complete in: 0.191 secs +[2018-02-13T15:45:00.881] [INFO] cheese - inserting 561 documents. first: Logogram and last: Call of Duty: Black Ops III +[2018-02-13T15:45:00.895] [INFO] cheese - batch complete in: 0.183 secs +[2018-02-13T15:45:01.038] [INFO] cheese - inserting 510 documents. first: Titan arum and last: Asiatic linsang +[2018-02-13T15:45:01.049] [INFO] cheese - batch complete in: 0.154 secs +[2018-02-13T15:45:01.397] [INFO] cheese - inserting 619 documents. first: Donald Wrye and last: Mario Biaggi +[2018-02-13T15:45:01.412] [INFO] cheese - batch complete in: 0.363 secs +[2018-02-13T15:45:01.595] [INFO] cheese - inserting 544 documents. first: Cristiano Araújo and last: Tribute to Jerusalem +[2018-02-13T15:45:01.610] [INFO] cheese - batch complete in: 0.198 secs +[2018-02-13T15:45:01.828] [INFO] cheese - inserting 417 documents. first: Jerusalem Forest and last: Dorothy Kilgallen +[2018-02-13T15:45:01.839] [INFO] cheese - batch complete in: 0.229 secs +[2018-02-13T15:45:02.084] [INFO] cheese - inserting 459 documents. first: Martin Ritt and last: Strelka Institute for Media, Architecture and Design +[2018-02-13T15:45:02.110] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T15:45:02.311] [INFO] cheese - inserting 490 documents. first: United States National Arboretum and last: List of people from New York +[2018-02-13T15:45:02.329] [INFO] cheese - batch complete in: 0.219 secs +[2018-02-13T15:45:02.531] [INFO] cheese - inserting 514 documents. first: List of people from Ohio and last: Carlos Oroza +[2018-02-13T15:45:02.545] [INFO] cheese - batch complete in: 0.215 secs +[2018-02-13T15:45:02.726] [INFO] cheese - inserting 446 documents. first: Heinz Oberhummer and last: Stuck in the Middle (TV series) +[2018-02-13T15:45:02.735] [INFO] cheese - batch complete in: 0.19 secs +[2018-02-13T15:46:54.951] [INFO] cheese - worker pid:88126 is now alive. starting: 143.07 MB ending: 289.96 MB +[2018-02-13T15:46:54.950] [INFO] cheese - worker pid:88125 is now alive. starting: 0 B ending: 146.89 MB +[2018-02-13T15:46:54.952] [INFO] cheese - worker pid:88128 is now alive. starting: 431.12 MB ending: 578.01 MB +[2018-02-13T15:46:54.951] [INFO] cheese - worker pid:88127 is now alive. starting: 287.1 MB ending: 433.98 MB +[2018-02-13T15:46:55.424] [INFO] cheese - inserting 503 documents. first: Low Countries and last: San Diego Padres +[2018-02-13T15:46:55.459] [INFO] cheese - inserting 492 documents. first: Taliesin West and last: The Hunchback of Notre Dame (1939 movie) +[2018-02-13T15:46:55.462] [INFO] cheese - batch complete in: 0.465 secs +[2018-02-13T15:46:55.493] [INFO] cheese - inserting 596 documents. first: Euston Road and last: University of California, San Diego +[2018-02-13T15:46:55.498] [INFO] cheese - batch complete in: 0.477 secs +[2018-02-13T15:46:55.544] [INFO] cheese - batch complete in: 0.545 secs +[2018-02-13T15:46:55.597] [INFO] cheese - inserting 640 documents. first: April and last: Football +[2018-02-13T15:46:55.662] [INFO] cheese - batch complete in: 0.664 secs +[2018-02-13T15:46:55.738] [INFO] cheese - inserting 854 documents. first: Drew Carey and last: Sillanwali Tehsil +[2018-02-13T15:46:55.772] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T15:46:55.845] [INFO] cheese - inserting 417 documents. first: Balk and last: Barákapuszta +[2018-02-13T15:46:55.875] [INFO] cheese - batch complete in: 0.377 secs +[2018-02-13T15:46:55.896] [INFO] cheese - inserting 566 documents. first: University of California and last: Volans (disambiguation) +[2018-02-13T15:46:55.944] [INFO] cheese - batch complete in: 0.4 secs +[2018-02-13T15:46:56.110] [INFO] cheese - inserting 540 documents. first: Puran Tehsil and last: Car accident +[2018-02-13T15:46:56.133] [INFO] cheese - batch complete in: 0.361 secs +[2018-02-13T15:46:56.206] [INFO] cheese - inserting 501 documents. first: Chris Clifford and last: Listening +[2018-02-13T15:46:56.226] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T15:46:56.229] [INFO] cheese - inserting 588 documents. first: Georgy Malenkov and last: Crocodylomorph +[2018-02-13T15:46:56.265] [INFO] cheese - batch complete in: 0.321 secs +[2018-02-13T15:46:56.284] [INFO] cheese - inserting 834 documents. first: Poland and last: Socrates +[2018-02-13T15:46:56.341] [INFO] cheese - batch complete in: 0.679 secs +[2018-02-13T15:46:56.450] [INFO] cheese - inserting 609 documents. first: Malden, Massachusetts and last: Dorah Pass +[2018-02-13T15:46:56.469] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T15:46:56.546] [INFO] cheese - inserting 583 documents. first: Cookies 'N' Beans and last: Hässleholm +[2018-02-13T15:46:56.573] [INFO] cheese - batch complete in: 0.347 secs +[2018-02-13T15:46:56.600] [INFO] cheese - inserting 433 documents. first: Lepidosauromorph and last: James B. Dudley +[2018-02-13T15:46:56.617] [INFO] cheese - batch complete in: 0.352 secs +[2018-02-13T15:46:56.723] [INFO] cheese - inserting 519 documents. first: Gondogoro Pass and last: Richard Widmark +[2018-02-13T15:46:56.741] [INFO] cheese - batch complete in: 0.272 secs +[2018-02-13T15:46:56.800] [INFO] cheese - inserting 656 documents. first: Dante Alighieri and last: Psoriasis +[2018-02-13T15:46:56.816] [INFO] cheese - inserting 575 documents. first: Höganäs and last: WaveBird Wireless Controller +[2018-02-13T15:46:56.836] [INFO] cheese - batch complete in: 0.263 secs +[2018-02-13T15:46:56.838] [INFO] cheese - batch complete in: 0.497 secs +[2018-02-13T15:46:56.883] [INFO] cheese - inserting 376 documents. first: Duck and Cover and last: Volcano Rabbit +[2018-02-13T15:46:56.901] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T15:46:57.018] [INFO] cheese - inserting 504 documents. first: Virgin Atlantic Airways and last: Polarization +[2018-02-13T15:46:57.034] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T15:46:57.122] [INFO] cheese - inserting 650 documents. first: Battle of Bataan and last: The Wyatt Family +[2018-02-13T15:46:57.143] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T15:46:57.214] [INFO] cheese - inserting 539 documents. first: Happy Science and last: Validity +[2018-02-13T15:46:57.244] [INFO] cheese - batch complete in: 0.343 secs +[2018-02-13T15:46:57.370] [INFO] cheese - inserting 756 documents. first: Jurassic Park and last: Baltic Sea +[2018-02-13T15:46:57.370] [INFO] cheese - inserting 732 documents. first: Dance, Dance and last: Varsity letter +[2018-02-13T15:46:57.394] [INFO] cheese - batch complete in: 0.359 secs +[2018-02-13T15:46:57.405] [INFO] cheese - inserting 610 documents. first: Dolores Huerta and last: Mr. Lordi +[2018-02-13T15:46:57.423] [INFO] cheese - batch complete in: 0.585 secs +[2018-02-13T15:46:57.426] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T15:46:57.554] [INFO] cheese - inserting 565 documents. first: King Duncan and last: Beriberi +[2018-02-13T15:46:57.581] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T15:46:57.672] [INFO] cheese - inserting 410 documents. first: Anti-balaka and last: Sune Bergström +[2018-02-13T15:46:57.685] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T15:46:57.757] [INFO] cheese - inserting 565 documents. first: Free content and last: MySims +[2018-02-13T15:46:57.780] [INFO] cheese - batch complete in: 0.386 secs +[2018-02-13T15:46:57.939] [INFO] cheese - inserting 537 documents. first: Linear mapping and last: Lassie Lou Ahern +[2018-02-13T15:46:57.961] [INFO] cheese - batch complete in: 0.276 secs +[2018-02-13T15:46:58.088] [INFO] cheese - inserting 593 documents. first: The Sun (newspaper) and last: Live from SoHo (Maroon 5 album) +[2018-02-13T15:46:58.121] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T15:46:58.194] [INFO] cheese - inserting 571 documents. first: Hanna Maron and last: Paco Peña +[2018-02-13T15:46:58.212] [INFO] cheese - batch complete in: 0.25 secs +[2018-02-13T15:46:58.227] [INFO] cheese - inserting 661 documents. first: Scandinavia and last: Laws of war +[2018-02-13T15:46:58.283] [INFO] cheese - batch complete in: 0.86 secs +[2018-02-13T15:46:58.471] [INFO] cheese - inserting 565 documents. first: Gerard Mortier and last: Warren Lamb +[2018-02-13T15:46:58.477] [INFO] cheese - inserting 602 documents. first: Alexander Berkman and last: Ordered pair +[2018-02-13T15:46:58.486] [INFO] cheese - inserting 652 documents. first: Île-de-Bréhat and last: Seckington +[2018-02-13T15:46:58.494] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T15:46:58.514] [INFO] cheese - batch complete in: 0.393 secs +[2018-02-13T15:46:58.544] [INFO] cheese - batch complete in: 0.963 secs +[2018-02-13T15:46:58.606] [INFO] cheese - inserting 482 documents. first: Maharashtra and last: Seafood +[2018-02-13T15:46:58.636] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T15:46:58.745] [INFO] cheese - inserting 548 documents. first: Rodeo of Chile and last: Armando Peraza +[2018-02-13T15:46:58.766] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T15:46:58.882] [INFO] cheese - inserting 578 documents. first: Arts and crafts and last: Chesterfield +[2018-02-13T15:46:58.894] [INFO] cheese - inserting 358 documents. first: Peer review and last: Pipette +[2018-02-13T15:46:58.910] [INFO] cheese - batch complete in: 0.396 secs +[2018-02-13T15:46:58.919] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T15:46:58.927] [INFO] cheese - inserting 587 documents. first: St Just in Penwith and last: Primula +[2018-02-13T15:46:58.957] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T15:46:59.021] [INFO] cheese - inserting 617 documents. first: Shirley Chisholm and last: Power Rangers Zeo +[2018-02-13T15:46:59.044] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T15:46:59.267] [INFO] cheese - inserting 465 documents. first: Formation and evolution of the Solar System and last: Christopher Nolan +[2018-02-13T15:46:59.286] [INFO] cheese - batch complete in: 0.375 secs +[2018-02-13T15:46:59.335] [INFO] cheese - inserting 602 documents. first: Muscle and last: Blackcurrant +[2018-02-13T15:46:59.365] [INFO] cheese - inserting 621 documents. first: Power Rangers Turbo and last: Powhatan, Louisiana +[2018-02-13T15:46:59.366] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T15:46:59.379] [INFO] cheese - inserting 515 documents. first: Protura and last: Milan Hlavsa +[2018-02-13T15:46:59.392] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T15:46:59.406] [INFO] cheese - batch complete in: 0.449 secs +[2018-02-13T15:46:59.585] [INFO] cheese - inserting 622 documents. first: Foucault pendulum and last: Captain Jack Harkness +[2018-02-13T15:46:59.606] [INFO] cheese - batch complete in: 0.32 secs +[2018-02-13T15:46:59.609] [INFO] cheese - inserting 186 documents. first: Olympic (band) and last: Middle Triassic +[2018-02-13T15:46:59.627] [INFO] cheese - batch complete in: 0.221 secs +[2018-02-13T15:46:59.661] [INFO] cheese - inserting 561 documents. first: Date and last: Evo Morales +[2018-02-13T15:46:59.679] [INFO] cheese - inserting 626 documents. first: Karlheinz Böhm and last: Wells, British Columbia +[2018-02-13T15:46:59.682] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T15:46:59.711] [INFO] cheese - batch complete in: 0.319 secs +[2018-02-13T15:46:59.905] [INFO] cheese - inserting 552 documents. first: Hurricane Fico and last: British Rail Class 103 +[2018-02-13T15:46:59.910] [INFO] cheese - inserting 420 documents. first: Shahab al-Din Suhrawardi and last: Hemerophile +[2018-02-13T15:46:59.926] [INFO] cheese - inserting 484 documents. first: Surya and last: Goatwhore +[2018-02-13T15:46:59.930] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T15:46:59.935] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T15:46:59.954] [INFO] cheese - batch complete in: 0.243 secs +[2018-02-13T15:47:00.015] [INFO] cheese - inserting 663 documents. first: Lake Titicaca and last: Spider +[2018-02-13T15:47:00.044] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T15:47:00.228] [INFO] cheese - inserting 791 documents. first: British Rail Class 104 and last: La Chapelle-Hermier +[2018-02-13T15:47:00.238] [INFO] cheese - inserting 602 documents. first: Rural Municipality of Brenda and last: Maximum Overload +[2018-02-13T15:47:00.248] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T15:47:00.260] [INFO] cheese - inserting 402 documents. first: The Winter's Tale and last: 1961 World Ice Hockey Championships +[2018-02-13T15:47:00.261] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T15:47:00.279] [INFO] cheese - batch complete in: 0.344 secs +[2018-02-13T15:47:00.337] [INFO] cheese - inserting 626 documents. first: 1760s and last: Odisha +[2018-02-13T15:47:00.367] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T15:47:00.475] [INFO] cheese - inserting 987 documents. first: La Chapelle-Palluau and last: Peyrieu +[2018-02-13T15:47:00.498] [INFO] cheese - batch complete in: 0.25 secs +[2018-02-13T15:47:00.577] [INFO] cheese - inserting 312 documents. first: 1961 Stanley Cup Finals and last: Pylorus +[2018-02-13T15:47:00.585] [INFO] cheese - inserting 642 documents. first: Idde Schultz and last: Hyatt Center +[2018-02-13T15:47:00.590] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T15:47:00.604] [INFO] cheese - inserting 553 documents. first: Punjab (India) and last: Polyunsaturated fat +[2018-02-13T15:47:00.609] [INFO] cheese - batch complete in: 0.348 secs +[2018-02-13T15:47:00.629] [INFO] cheese - batch complete in: 0.262 secs +[2018-02-13T15:47:00.725] [INFO] cheese - inserting 879 documents. first: Nashville, Arkansas and last: Monpezat +[2018-02-13T15:47:00.755] [INFO] cheese - batch complete in: 0.257 secs +[2018-02-13T15:47:00.886] [INFO] cheese - inserting 459 documents. first: The North Avenue Irregulars and last: Ionia +[2018-02-13T15:47:00.890] [INFO] cheese - inserting 348 documents. first: Huxley family and last: AKUT Search and Rescue Association +[2018-02-13T15:47:00.903] [INFO] cheese - batch complete in: 0.313 secs +[2018-02-13T15:47:00.902] [INFO] cheese - batch complete in: 0.273 secs +[2018-02-13T15:47:00.911] [INFO] cheese - inserting 618 documents. first: Leo Burnett Building and last: Ram Trucks +[2018-02-13T15:47:00.935] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T15:47:01.015] [INFO] cheese - inserting 923 documents. first: Monségur, Pyrénées-Atlantiques and last: Folembray +[2018-02-13T15:47:01.038] [INFO] cheese - batch complete in: 0.283 secs +[2018-02-13T15:47:01.131] [INFO] cheese - inserting 428 documents. first: Harmonic and last: Małkinia Górna +[2018-02-13T15:47:01.147] [INFO] cheese - batch complete in: 0.245 secs +[2018-02-13T15:47:01.191] [INFO] cheese - inserting 570 documents. first: Tropical Storm Norma (1970) and last: Naturalism (literature) +[2018-02-13T15:47:01.201] [INFO] cheese - inserting 458 documents. first: The Twelve Days of Christmas (song) and last: Video camera +[2018-02-13T15:47:01.210] [INFO] cheese - batch complete in: 0.274 secs +[2018-02-13T15:47:01.218] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T15:47:01.238] [INFO] cheese - inserting 996 documents. first: Fonsommes and last: Gaudiempré +[2018-02-13T15:47:01.260] [INFO] cheese - batch complete in: 0.222 secs +[2018-02-13T15:47:01.433] [INFO] cheese - inserting 461 documents. first: John C. Calhoun and last: Constantine the Great +[2018-02-13T15:47:01.435] [INFO] cheese - inserting 998 documents. first: Gavrelle and last: Olive Hill, Kentucky +[2018-02-13T15:47:01.456] [INFO] cheese - batch complete in: 0.309 secs +[2018-02-13T15:47:01.466] [INFO] cheese - batch complete in: 0.206 secs +[2018-02-13T15:47:01.511] [INFO] cheese - inserting 637 documents. first: Moose Pond and last: Samantha Power +[2018-02-13T15:47:01.526] [INFO] cheese - inserting 536 documents. first: Pope Innocent VI and last: Mesosaurus +[2018-02-13T15:47:01.534] [INFO] cheese - batch complete in: 0.323 secs +[2018-02-13T15:47:01.555] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T15:47:01.690] [INFO] cheese - inserting 497 documents. first: Cleopatra VII and last: Eagle (disambiguation) +[2018-02-13T15:47:01.720] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T15:47:01.734] [INFO] cheese - inserting 990 documents. first: Orchard Grass Hills, Kentucky and last: Dayton, Iowa +[2018-02-13T15:47:01.758] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T15:47:01.799] [INFO] cheese - inserting 617 documents. first: Edward J. Perkins and last: Gueudecourt +[2018-02-13T15:47:01.820] [INFO] cheese - batch complete in: 0.286 secs +[2018-02-13T15:47:01.849] [INFO] cheese - inserting 378 documents. first: Bokbunja ju and last: Lilly Ledbetter Fair Pay Act of 2009 +[2018-02-13T15:47:01.872] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T15:47:01.974] [INFO] cheese - inserting 958 documents. first: De Soto, Iowa and last: Natural gas vehicle +[2018-02-13T15:47:01.996] [INFO] cheese - batch complete in: 0.238 secs +[2018-02-13T15:47:02.021] [INFO] cheese - inserting 646 documents. first: Hide (musician) and last: Aegukga +[2018-02-13T15:47:02.045] [INFO] cheese - batch complete in: 0.325 secs +[2018-02-13T15:47:02.056] [INFO] cheese - inserting 543 documents. first: Guignemicourt and last: Caravan (travellers) +[2018-02-13T15:47:02.078] [INFO] cheese - batch complete in: 0.258 secs +[2018-02-13T15:47:02.269] [INFO] cheese - inserting 473 documents. first: International Food Policy Research Institute and last: Mina (singer) +[2018-02-13T15:47:02.293] [INFO] cheese - inserting 779 documents. first: Bustuchin and last: British Rail Class D2/12 +[2018-02-13T15:47:02.293] [INFO] cheese - batch complete in: 0.421 secs +[2018-02-13T15:47:02.327] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T15:47:02.348] [INFO] cheese - inserting 507 documents. first: Conquest and last: Engineered languages +[2018-02-13T15:47:02.356] [INFO] cheese - inserting 477 documents. first: Flying University and last: John Diefenbaker +[2018-02-13T15:47:02.371] [INFO] cheese - batch complete in: 0.326 secs +[2018-02-13T15:47:02.372] [INFO] cheese - batch complete in: 0.293 secs +[2018-02-13T15:47:02.601] [INFO] cheese - inserting 454 documents. first: Maynard Ferguson and last: The Five +[2018-02-13T15:47:02.620] [INFO] cheese - batch complete in: 0.327 secs +[2018-02-13T15:47:02.623] [INFO] cheese - inserting 933 documents. first: British Rail Class D3/1 and last: British Rail Class D3/14 +[2018-02-13T15:47:02.625] [INFO] cheese - inserting 482 documents. first: Pronghorn and last: 1534 +[2018-02-13T15:47:02.643] [INFO] cheese - batch complete in: 0.316 secs +[2018-02-13T15:47:02.646] [INFO] cheese - batch complete in: 0.275 secs +[2018-02-13T15:47:02.906] [INFO] cheese - inserting 488 documents. first: Omar Karami and last: Frederik H. Kreuger +[2018-02-13T15:47:02.919] [INFO] cheese - inserting 577 documents. first: 1708 and last: Lady Macbeth of the Mtsensk District +[2018-02-13T15:47:02.925] [INFO] cheese - batch complete in: 0.553 secs +[2018-02-13T15:47:02.942] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T15:47:03.065] [INFO] cheese - inserting 547 documents. first: British Rail Class D16/1 and last: Keita Goto +[2018-02-13T15:47:03.085] [INFO] cheese - batch complete in: 0.442 secs +[2018-02-13T15:47:03.206] [INFO] cheese - inserting 502 documents. first: Adoption and last: Runestone +[2018-02-13T15:47:03.224] [INFO] cheese - batch complete in: 0.282 secs +[2018-02-13T15:47:03.226] [INFO] cheese - inserting 497 documents. first: List of Independent Administrative Institutes in Japan and last: Saskatoon Blades +[2018-02-13T15:47:03.259] [INFO] cheese - batch complete in: 0.639 secs +[2018-02-13T15:47:03.317] [INFO] cheese - inserting 581 documents. first: Statutory rape and last: Chevrolet Traverse +[2018-02-13T15:47:03.336] [INFO] cheese - batch complete in: 0.411 secs +[2018-02-13T15:47:03.475] [INFO] cheese - inserting 502 documents. first: Shunichiro Okano and last: Erich von dem Bach-Zelewski +[2018-02-13T15:47:03.487] [INFO] cheese - inserting 582 documents. first: Balcony and last: Electrolysis +[2018-02-13T15:47:03.500] [INFO] cheese - batch complete in: 0.415 secs +[2018-02-13T15:47:03.508] [INFO] cheese - batch complete in: 0.284 secs +[2018-02-13T15:47:03.585] [INFO] cheese - inserting 620 documents. first: Type 4 150 mm howitzer and last: Cape Henry Light +[2018-02-13T15:47:03.612] [INFO] cheese - inserting 603 documents. first: Zhelyu Zhelev and last: Väröbacka +[2018-02-13T15:47:03.619] [INFO] cheese - batch complete in: 0.36 secs +[2018-02-13T15:47:03.632] [INFO] cheese - batch complete in: 0.295 secs +[2018-02-13T15:47:03.778] [INFO] cheese - inserting 533 documents. first: Jurassic and last: NASCAR +[2018-02-13T15:47:03.796] [INFO] cheese - batch complete in: 0.288 secs +[2018-02-13T15:47:03.838] [INFO] cheese - inserting 571 documents. first: Will Mellor and last: Mono no aware +[2018-02-13T15:47:03.867] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T15:47:03.931] [INFO] cheese - inserting 581 documents. first: Innuendo (song) and last: Diabolus in Musica +[2018-02-13T15:47:03.950] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T15:47:04.043] [INFO] cheese - inserting 433 documents. first: Washington Irving and last: Herero +[2018-02-13T15:47:04.066] [INFO] cheese - batch complete in: 0.447 secs +[2018-02-13T15:47:04.111] [INFO] cheese - inserting 561 documents. first: Monument and last: Ghost light +[2018-02-13T15:47:04.134] [INFO] cheese - batch complete in: 0.338 secs +[2018-02-13T15:47:04.198] [INFO] cheese - inserting 525 documents. first: Salmon (color) and last: Nisio Isin +[2018-02-13T15:47:04.218] [INFO] cheese - batch complete in: 0.351 secs +[2018-02-13T15:47:04.282] [INFO] cheese - inserting 580 documents. first: Señorita Pólvora and last: Orillia +[2018-02-13T15:47:04.341] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T15:47:04.411] [INFO] cheese - inserting 374 documents. first: Lake Wobegon and last: Clarke County, Alabama +[2018-02-13T15:47:04.446] [INFO] cheese - inserting 479 documents. first: Roman Giertych and last: Centre-Val de Loire +[2018-02-13T15:47:04.449] [INFO] cheese - batch complete in: 0.382 secs +[2018-02-13T15:47:04.471] [INFO] cheese - batch complete in: 0.337 secs +[2018-02-13T15:47:04.618] [INFO] cheese - inserting 445 documents. first: Kapok and last: Comcast Center +[2018-02-13T15:47:04.632] [INFO] cheese - batch complete in: 0.413 secs +[2018-02-13T15:47:04.656] [INFO] cheese - inserting 516 documents. first: West Perth, Ontario and last: Truncated icosahedron +[2018-02-13T15:47:04.672] [INFO] cheese - batch complete in: 0.331 secs +[2018-02-13T15:47:04.746] [INFO] cheese - inserting 368 documents. first: Grove Hill, Alabama and last: Karl Pearson +[2018-02-13T15:47:04.750] [INFO] cheese - inserting 419 documents. first: Champagne-Ardenne and last: Gerhard Armauer Hansen +[2018-02-13T15:47:04.760] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T15:47:04.778] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T15:47:04.970] [INFO] cheese - inserting 372 documents. first: HCJB and last: Brooks Range +[2018-02-13T15:47:04.987] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T15:47:05.105] [INFO] cheese - inserting 574 documents. first: Fire station and last: Taj Mahal (musician) +[2018-02-13T15:47:05.132] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T15:47:05.185] [INFO] cheese - inserting 549 documents. first: Yutyrannus and last: Constitution of Albania +[2018-02-13T15:47:05.211] [INFO] cheese - batch complete in: 0.451 secs +[2018-02-13T15:47:05.232] [INFO] cheese - inserting 599 documents. first: Truncated octahedron and last: The Girl Next Door (2004 movie) +[2018-02-13T15:47:05.254] [INFO] cheese - batch complete in: 0.582 secs +[2018-02-13T15:47:05.324] [INFO] cheese - inserting 617 documents. first: Prince Edward, Duke of York and Albany and last: Crossosomatales +[2018-02-13T15:47:05.350] [INFO] cheese - batch complete in: 0.362 secs +[2018-02-13T15:47:05.411] [INFO] cheese - inserting 527 documents. first: Floyd Patterson and last: Medieval music +[2018-02-13T15:47:05.430] [INFO] cheese - batch complete in: 0.298 secs +[2018-02-13T15:47:05.543] [INFO] cheese - inserting 559 documents. first: Napa, California and last: Yu Gamdong +[2018-02-13T15:47:05.570] [INFO] cheese - inserting 563 documents. first: José Gaspar Rodríguez de Francia y Velasco and last: Messerschmitt Bf 110 +[2018-02-13T15:47:05.578] [INFO] cheese - batch complete in: 0.367 secs +[2018-02-13T15:47:05.595] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T15:47:05.727] [INFO] cheese - inserting 547 documents. first: Neolithic and last: Lake Van +[2018-02-13T15:47:05.752] [INFO] cheese - batch complete in: 0.322 secs +[2018-02-13T15:47:05.783] [INFO] cheese - inserting 666 documents. first: Waterfowl and last: 2008 +[2018-02-13T15:47:05.808] [INFO] cheese - batch complete in: 0.458 secs +[2018-02-13T15:47:05.903] [INFO] cheese - inserting 589 documents. first: Yangnyeong and last: Bahrainona +[2018-02-13T15:47:05.931] [INFO] cheese - batch complete in: 0.353 secs +[2018-02-13T15:47:05.931] [INFO] cheese - inserting 414 documents. first: Aquanaut and last: Airbourne +[2018-02-13T15:47:05.950] [INFO] cheese - batch complete in: 0.355 secs +[2018-02-13T15:47:06.085] [INFO] cheese - inserting 610 documents. first: Kurdish language and last: Sickle +[2018-02-13T15:47:06.099] [INFO] cheese - inserting 549 documents. first: Falafel and last: Dwarf hamster +[2018-02-13T15:47:06.106] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T15:47:06.123] [INFO] cheese - batch complete in: 0.315 secs +[2018-02-13T15:47:06.245] [INFO] cheese - inserting 526 documents. first: Bahraini and last: Wing-banded Antbird +[2018-02-13T15:47:06.266] [INFO] cheese - batch complete in: 0.335 secs +[2018-02-13T15:47:06.419] [INFO] cheese - inserting 461 documents. first: Love? and last: Ted Hartley +[2018-02-13T15:47:06.425] [INFO] cheese - inserting 488 documents. first: Damien Rice and last: Technical University of Berlin +[2018-02-13T15:47:06.425] [INFO] cheese - inserting 590 documents. first: Kilometres per hour and last: U.S. Open +[2018-02-13T15:47:06.441] [INFO] cheese - batch complete in: 0.318 secs +[2018-02-13T15:47:06.462] [INFO] cheese - batch complete in: 0.356 secs +[2018-02-13T15:47:06.464] [INFO] cheese - batch complete in: 0.514 secs +[2018-02-13T15:47:06.578] [INFO] cheese - inserting 492 documents. first: Seine and last: Cyclone Jal +[2018-02-13T15:47:06.612] [INFO] cheese - batch complete in: 0.346 secs +[2018-02-13T15:47:06.771] [INFO] cheese - inserting 450 documents. first: Leeds Rhinos and last: Tomokazu Hirama +[2018-02-13T15:47:06.795] [INFO] cheese - batch complete in: 0.354 secs +[2018-02-13T15:47:06.819] [INFO] cheese - inserting 558 documents. first: World Cup and last: Himeji Castle +[2018-02-13T15:47:06.841] [INFO] cheese - batch complete in: 0.379 secs +[2018-02-13T15:47:06.858] [INFO] cheese - inserting 490 documents. first: Joint-stock company and last: Luciano García Alén +[2018-02-13T15:47:06.888] [INFO] cheese - batch complete in: 0.424 secs +[2018-02-13T15:47:06.978] [INFO] cheese - inserting 555 documents. first: Hurricane Bud (2012) and last: St. Osyth +[2018-02-13T15:47:07.002] [INFO] cheese - batch complete in: 0.39 secs +[2018-02-13T15:47:07.112] [INFO] cheese - inserting 482 documents. first: Tang Dynasty and last: Hilbert's paradox of the Grand Hotel +[2018-02-13T15:47:07.128] [INFO] cheese - batch complete in: 0.287 secs +[2018-02-13T15:47:07.164] [INFO] cheese - inserting 600 documents. first: Kazushi Isoyama and last: Félix María Samaniego +[2018-02-13T15:47:07.198] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T15:47:07.208] [INFO] cheese - inserting 522 documents. first: Sergei Filippenkov and last: Noble orchid +[2018-02-13T15:47:07.230] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T15:47:07.399] [INFO] cheese - inserting 480 documents. first: Great Oakley and last: Arranged marriage +[2018-02-13T15:47:07.416] [INFO] cheese - inserting 505 documents. first: Opposite number and last: Flamingo +[2018-02-13T15:47:07.422] [INFO] cheese - batch complete in: 0.42 secs +[2018-02-13T15:47:07.440] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T15:47:07.501] [INFO] cheese - inserting 440 documents. first: Ahmad and last: Wyre Forest +[2018-02-13T15:47:07.522] [INFO] cheese - batch complete in: 0.292 secs +[2018-02-13T15:47:07.546] [INFO] cheese - inserting 580 documents. first: Vermilion (song) and last: Ryo Nurishi +[2018-02-13T15:47:07.567] [INFO] cheese - batch complete in: 0.369 secs +[2018-02-13T15:47:07.670] [INFO] cheese - inserting 375 documents. first: Eastern diamondback rattlesnake and last: Greta Van Susteren +[2018-02-13T15:47:07.680] [INFO] cheese - inserting 326 documents. first: Magnesium oxide and last: Tanystropheus +[2018-02-13T15:47:07.686] [INFO] cheese - batch complete in: 0.264 secs +[2018-02-13T15:47:07.699] [INFO] cheese - batch complete in: 0.259 secs +[2018-02-13T15:47:07.776] [INFO] cheese - inserting 539 documents. first: Jan Góra and last: Isaiah Washington +[2018-02-13T15:47:07.793] [INFO] cheese - batch complete in: 0.271 secs +[2018-02-13T15:47:07.886] [INFO] cheese - inserting 582 documents. first: Aaron Lennon and last: Cornish, Maine +[2018-02-13T15:47:07.908] [INFO] cheese - batch complete in: 0.341 secs +[2018-02-13T15:47:07.959] [INFO] cheese - inserting 439 documents. first: Tucker Carlson and last: Mel Stuart +[2018-02-13T15:47:07.977] [INFO] cheese - batch complete in: 0.291 secs +[2018-02-13T15:47:07.993] [INFO] cheese - inserting 400 documents. first: Yuryuzan and last: British occupation zone +[2018-02-13T15:47:08.011] [INFO] cheese - batch complete in: 0.312 secs +[2018-02-13T15:47:08.050] [INFO] cheese - inserting 553 documents. first: Stock (firearm) and last: I Will Never Let You Down +[2018-02-13T15:47:08.070] [INFO] cheese - batch complete in: 0.277 secs +[2018-02-13T15:47:08.100] [INFO] cheese - inserting 219 documents. first: Sweet Dreams Are Made of This and last: Hideaki Kitajima +[2018-02-13T15:47:08.107] [INFO] cheese - batch complete in: 0.199 secs +[2018-02-13T15:47:08.318] [INFO] cheese - inserting 258 documents. first: Shigemaru Takenokoshi and last: Norihiro Nishi +[2018-02-13T15:47:08.320] [INFO] cheese - inserting 502 documents. first: Greater Hesse and last: Pineal gland +[2018-02-13T15:47:08.327] [INFO] cheese - batch complete in: 0.22 secs +[2018-02-13T15:47:08.347] [INFO] cheese - batch complete in: 0.336 secs +[2018-02-13T15:47:08.359] [INFO] cheese - inserting 432 documents. first: The Elements of Style and last: Mass grave +[2018-02-13T15:47:08.361] [INFO] cheese - inserting 478 documents. first: Conrad Bain and last: American spadefoot toads +[2018-02-13T15:47:08.378] [INFO] cheese - batch complete in: 0.308 secs +[2018-02-13T15:47:08.379] [INFO] cheese - batch complete in: 0.402 secs +[2018-02-13T15:47:08.637] [INFO] cheese - inserting 591 documents. first: Gamma-Hydroxybutyric acid and last: Tropical Storm Ingrid (2007) +[2018-02-13T15:47:08.656] [INFO] cheese - inserting 481 documents. first: Fred West and last: Dunellen, New Jersey +[2018-02-13T15:47:08.658] [INFO] cheese - batch complete in: 0.311 secs +[2018-02-13T15:47:08.686] [INFO] cheese - inserting 636 documents. first: Theory and last: Der Rosenkavalier +[2018-02-13T15:47:08.685] [INFO] cheese - batch complete in: 0.307 secs +[2018-02-13T15:47:08.730] [INFO] cheese - batch complete in: 0.403 secs +[2018-02-13T15:47:08.865] [INFO] cheese - inserting 514 documents. first: Notaden and last: Eileen Brennan +[2018-02-13T15:47:08.889] [INFO] cheese - batch complete in: 0.51 secs From 1ec4e2a76bcb3d3d8c0ecbeee6d406b44bc9ff66 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Tue, 13 Feb 2018 15:53:47 -0500 Subject: [PATCH 15/42] formatting and comments --- src/multithreader.js | 11 ++++------- src/worker.js | 9 +++++++-- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/multithreader.js b/src/multithreader.js index 8f2b741..6e33cc2 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -22,10 +22,10 @@ workerNodes = new WorkerNodes(__dirname + '/worker.js', { // }; const start = async function(options) { - var chunkSize, - size; - size = fs.statSync(options.file)["size"]; - chunkSize = Math.floor(size / cpuCount); + //divide the size of the xml file, by the number of cpus: + const size = fs.statSync(options.file)["size"]; + const chunkSize = Math.floor(size / cpuCount); + console.log(`${cpuCount} cpu cores detected. ${filesize(size)} file will be divided into ${cpuCount} zones - each process will be given: ${filesize(chunkSize)} @@ -34,7 +34,6 @@ ok, launching ${cpuCount} processes. do ctrl-c to kill all. do tail -f ./worker.logs on a separate terminal window for logs. `) - await workerNodes.ready(); cpus.forEach((val, key) => { workerNodes.call(options, chunkSize, key); @@ -45,8 +44,6 @@ process.on('unhandledRejection', function(up) { return console.log(up); }); -// setInterval((function() {}), 2000); - process.on('SIGINT', async function() { console.log("Cleaning up child processes..."); await workerNodes.terminate(); diff --git a/src/worker.js b/src/worker.js index 86c34f2..f165ab1 100644 --- a/src/worker.js +++ b/src/worker.js @@ -38,9 +38,13 @@ const xmlSplit = async (options, chunkSize, workerNr) => { // end 2 megabytes later so we don't lose pages cut by chunks endByte = startByte + chunkSize + 3000000 - logger.info(`worker pid:${process.pid} is now alive. starting: ${filesize(startByte)} ending: ${filesize(endByte)}`) + logger.info(` + worker pid:${process.pid} is now alive. + starting: ${filesize(startByte)} ending: ${filesize(endByte)} +`) await init(options) + //begin our line-reader at this specific place lr = new LineByLineReader(options.file, { start: startByte, end: endByte @@ -72,7 +76,6 @@ const xmlSplit = async (options, chunkSize, workerNr) => { }; lr.on('error', function(err) { - // 'err' contains error object console.error(err) return logger.error("linereader error"); }); @@ -95,6 +98,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { skipPage = true; } } + //begin storing this page's xml contents if (line.indexOf("") !== -1) { page = { body: line, @@ -108,6 +112,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { } skipPage = false; page = null; + //once we have some pages to write, put them in mongo if (pageCount % options.batch_size === 0) { insertToDb(); } From 598f42926a0c6004876f485135935744d7c9ada3 Mon Sep 17 00:00:00 2001 From: devrim Date: Tue, 13 Feb 2018 22:44:09 -0800 Subject: [PATCH 16/42] completely fixed and working - doArticle is the bottleneck now. takes too long to parse the pages - lets look at that next. --- package.json | 3 + src/01-article-logic.js | 48 +- src/03-write-db.js | 12 +- src/index.js | 38 +- src/multithreader.js | 62 +- src/worker.js | 114 +- worker.logs | 57441 -------------------------------------- yarn.lock | 30 +- 8 files changed, 211 insertions(+), 57537 deletions(-) delete mode 100644 worker.logs diff --git a/package.json b/package.json index 85db929..f88ef07 100644 --- a/package.json +++ b/package.json @@ -26,10 +26,13 @@ "moment": "^2.20.1", "momentjs": "^2.0.0", "mongodb": "^2.2.33", + "prettysize": "^1.1.0", + "string-to-stream": "^1.1.0", "unbzip2-stream": "^1.0.9", "worker-nodes": "^1.6.0", "wtf_wikipedia": "^2.4.2", "xml-stream": "^0.4.5", + "xml2js": "^0.4.19", "xmlsplit": "^1.2.8" }, "devDependencies": { diff --git a/src/01-article-logic.js b/src/01-article-logic.js index c673372..91c4846 100644 --- a/src/01-article-logic.js +++ b/src/01-article-logic.js @@ -1,25 +1,37 @@ //logic for parsing an object's xml const transform = require('./02-transform-wiki'); +const XmlStream = require('xml-stream'); +var str = require('string-to-stream') // get wikiscript from the xml, parse it, and send it to mongo -const doArticle = function(page, options) { - //ignore 'talk pages', etc. - if (page.ns === '0') { - if (options.verbose === true){ - console.log(page.title); - } - let script = page.revision.text['$text'] || ''; - let data = { - title: page.title, - script: script - }; - try { - return transform(data, options) - } catch (err) { - console.log(err); - return null + + + +const doArticle = function(pageStr, options,callback) { + + let xml = new XmlStream(str(pageStr)); + + //xml.on("end",(page)=>{ + xml.on('endElement: page', async (page) => { + // ignore 'talk pages', etc. + if (page.ns === '0') { + if (options.verbose === true){ + console.log(page.title); + } + let script = page.revision.text['$text'] || ''; + let data = { + title: page.title, + script: script + }; + try { + return callback(transform(data, options)) + } catch (err) { + console.log(err); + return null + } } - } - return null + return null + }); + } module.exports = doArticle diff --git a/src/03-write-db.js b/src/03-write-db.js index 01db17b..f0dabc4 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -17,10 +17,11 @@ checkWriteSuccess = (preCount,postCount,arr) => { return } -const writeDb = async (arr, options, callback) => { +const writeDb = async (arr, options, coll) => { return new Promise( async (resolve,reject)=>{ - // let preCount = await options.collection.count() - options.collection.insertMany( arr, { ordered: true }, async (err, result) => { + //let preCount = await options.collection.count() + //arrr = [{arr:arr}] + options.db.collection(coll).insertMany( arr, { ordered: false }, async (err, result) => { if (err) { // collect insert errors... // tbd. skip duplicate key errors @@ -28,9 +29,10 @@ const writeDb = async (arr, options, callback) => { // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) } - // let postCount = await options.collection.count() + let count = await options.collection.count() // checkWriteSuccess(preCount,postCount,arr) - resolve() + + resolve(`${arr.length} docs inserted. total:${count}`) }) }) } diff --git a/src/index.js b/src/index.js index 63a77c8..2012fd0 100755 --- a/src/index.js +++ b/src/index.js @@ -5,11 +5,10 @@ const fs = require('fs'); const XmlStream = require('xml-stream'); const bz2 = require('unbzip2-stream'); const init = require('./00-init-db'); -const doArticle = require('./01-article-logic'); const writeDb = require('./03-write-db'); const done = require('./_done'); const moment = require("moment") -const multithreader = require("./multithreader") +const mt = require("./multithreader") const noop = () => {} var jobBegin = 0 @@ -19,13 +18,38 @@ process.on('unhandledRejection', up => { console.log(up) }) const main = async (options, callback=noop) => { params = Object.assign({}, options); - multithreader.start(params) await init(options) - setInterval( async () => { - count = await options.db.collection("queue").count() - console.log(`final doc count: ${count} in last 60 seconds.`) - },60000) + + mt.worker.parseXML(params) + + writing = 0 + mt.worker.on("msg", async (msg) => { + if (msg.type === "insertToDb"){ + // console.log("-->",msg.length,msg.pages.length) + writing++ + res = await writeDb(msg.pages,options,"wikipedia") + writing-- + console.log("worker "+msg.pid+":"+res+` batch took ${Math.round((msg.timeSpent.total)/1000)} secs. --doArticle()-- took ${Math.round(msg.timeSpent.doArticle/1000)} secs.`) + } + }) + + mt.worker.on("allWorkersFinished", ()=>{ + + setInterval(()=>{ + if (writing === 0){ + console.log("all done, exiting...") + process.exit() + } + },500) + + }) + + // await init(options) + // setInterval( async () => { + // count = await options.db.collection("queue").count() + // console.log(`final doc count: ${count} in last 60 seconds.`) + // },60000) } diff --git a/src/multithreader.js b/src/multithreader.js index 64c64df..c89991d 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -1,9 +1,8 @@ var WorkerNodes, cpuCount, fs, start, workerLog, workerLogs, workerNodes; - +const pretty = require('prettysize'); WorkerNodes = require('worker-nodes'); - fs = require("fs"); - +const EventEmitter = require('events'); cpus = require('os').cpus() cpuCount = cpus.length; @@ -25,26 +24,53 @@ workerLog = function(msg) { } }; -start = async function(options) { - var chunkSize, size; - size = fs.statSync(options.file)["size"]; - chunkSize = Math.floor(size / cpuCount); - console.log(`${cpuCount} cpu cores detected. file size (bytes): ${size} file will be divided into: ${cpuCount} each process will be given (bytes): ${chunkSize}`); - console.log(`launching ${cpuCount} processes. do ctrl-c to kill all.`); - console.log("do tail -f ../worker.logs on a separate terminal window for logs."); +class Worker extends EventEmitter { + constructor(){ + super() + } + parseXML (options) { + var chunkSize, size; + size = fs.statSync(options.file)["size"]; + // size = 633279000 + chunkSize = Math.floor(size / cpuCount); + console.log(`${cpuCount} cpu cores detected. file size: ${pretty(size)} file will be divided into: ${cpuCount} each process will be given: ${pretty(chunkSize)}`); + console.log(`launching ${cpuCount} processes. do ctrl-c to kill all.`); + console.log("do tail -f /tmp/worker.logs on a separate terminal window for logs."); + + //await workerNodes.ready(); + var workerCount = 0 + cpus.forEach((val,key) => { + workerNodes.call.xmlSplit(options, chunkSize, key).then((msg) => { + + workerCount++ - await workerNodes.ready(); - cpus.forEach((val,key) => { - workerNodes.call(options, chunkSize, key); - }); -}; + if (workerCount === cpuCount) { + workerNodes.workersQueue.storage.forEach((worker)=>{ + worker.process.child.on("message", async (msg)=>{ + this.emit("msg",msg); + if(msg.type === "workerDone"){ + workerCount-- + //console.log(workerCount) + if (workerCount === 0) { + //console.log("all done.") + await workerNodes.terminate() + this.emit("allWorkersFinished"); + } + } + }) + }) + }; + }); + }); + }; + +} process.on('unhandledRejection', function(up) { return console.log(up); }); -// setInterval((function() {}), 2000); process.on('SIGINT', async function() { console.log("Cleaning up child processes..."); @@ -52,4 +78,6 @@ process.on('SIGINT', async function() { return process.exit(); }); -module.exports = {start:start} +worker = new Worker() + +module.exports = {worker:worker} diff --git a/src/worker.js b/src/worker.js index 15f2505..cb74e2c 100644 --- a/src/worker.js +++ b/src/worker.js @@ -2,15 +2,18 @@ const LineByLineReader = require('line-by-line') const fs = require("fs") const init = require('./00-init-db'); const log4js = require('log4js'); +const doArticle = require('./01-article-logic'); + log4js.configure({ - appenders: { cheese: { type: 'file', filename: __dirname+'/../worker.logs' } }, + appenders: { cheese: { type: 'file', filename: '/tmp/worker.logs' } }, categories: { default: { appenders: ['cheese'], level: 'info' } } }); const logger = log4js.getLogger('cheese'); + const xmlSplit = async (options, chunkSize, workerNr) => { var cpuCount, file, insertToDb, lineNumber, lr, page, pageCount, pages, size; @@ -35,74 +38,91 @@ const xmlSplit = async (options, chunkSize, workerNr) => { start: startByte, end: endByte }); - lineNumber = 0; + + page = null; pageCount = 0; pages = []; - var skipPage = false; workerBegin = Date.now() jobBegin = Date.now() - insertToDb = function() { - var insertMany; - if (pages.length === 0) { - // shouldn't happen. - return logger.error("err: empty pages arr"); - } + doArticleTimeCounter = 0 + insertToDb = function(last) { lr.pause(); - insertMany = Object.assign([], pages); - logger.info("inserting",insertMany.length,"documents. first:", insertMany[0]._id, "and last:", insertMany[insertMany.length - 1]._id); + process.send({type:"insertToDb",pages:pages,length:pages.length,pid: process.pid, timeSpent:{total:Date.now()-workerBegin,doArticle:doArticleTimeCounter}}) pages = []; - options.db.collection("queue").insertMany(insertMany, function() { - // tbd. error checks - }); - logger.info("batch complete in: "+((Date.now()-jobBegin)/1000)+" secs") jobBegin = Date.now() - return lr.resume(); + doArticleTimeCounter = 0 + workerBegin = Date.now() + logger.info(`batch complete: worker pid:${process.pid} inserted ${pageCount} pages in ${((Date.now()-workerBegin)/1000)} secs. doArticle took ${doArticleTimeCounter/1000} secs.`); + lr.resume(); + if(last){ + process.send({type:"workerDone",pid:process.pid}) + } }; - lr.on('error', function(err) { + lr.on('error', (err) => { // 'err' contains error object - return logger.error("linereader error"); + logger.error("linereader error"); }); - lr.on('line', function(line) { - lineNumber++; + lr.on('line', (line) => { + + if (line.indexOf("") !== -1) { + page = {body:line, skip: false, title: null} + pageCount++; + } + if (page) { page.body += line; - if (!page.title) { - if (line.indexOf("") !== -1) { - page._id = line.substring(line.lastIndexOf("<title>") + 7, line.lastIndexOf("")); - } - } - if (line.indexOf("")) { - skipPage = true; + + if (!page.title && line.indexOf("") !== -1) { + page.title = line.substring(line.lastIndexOf("<title>") + 7, line.lastIndexOf("")); } - } - if (line.indexOf("") !== -1) { - page = { - body: line, - lr: lineNumber - }; - pageCount++; - } - if (page && line.indexOf("") !== -1) { - if (!skipPage){ - pages.push(page); + + if (line.indexOf("") > -1){ + if(line.indexOf("0") === -1) { + logger.info("skipping",page.title) + page.skip = true; + } } - skipPage = false; - page = null; - if (pageCount % options.batch_size === 0) { - return insertToDb(); + + if (line.indexOf("") !== -1) { + if (!page.skip) { + doArticleTime = Date.now() + doArticle(page.body,options,(pageObj)=>{ + doArticleTimeCounter += Date.now()-doArticleTime + if (pageObj){ + pages.push(pageObj); + } + if (pageCount % options.batch_size === 0) { + insertToDb(); + } + }) + } + page = null; } + + // let's catch these before parsing for extra speed. + + // if (options.skip_redirects === true && data.type === 'redirect') { + // return null + // } + // if (options.skip_disambig === true && data.type === 'disambiguation') { + // return null + // } + } }); - return lr.on('end', function() { + + lr.on('end', function() { // All lines are read, file is closed now. // insert remaining pages. - insertToDb(); - logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now()-jobBegin)/1000)} secs.`); + insertToDb(true); + logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now()-workerBegin)/1000)} secs. doArticle took ${doArticleTimeCounter/1000} secs.`); // process.exit() - return + + }); + return(process.pid) }; -module.exports = xmlSplit +module.exports = {xmlSplit} diff --git a/worker.logs b/worker.logs deleted file mode 100644 index 32d47fd..0000000 --- a/worker.logs +++ /dev/null @@ -1,57441 +0,0 @@ -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56524 is now alive. startByte: 27139532279 endByte: 36189376372 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56521 is now alive. startByte: 0 endByte: 9049844093 -5236220465 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56527 is now alive. startByte: 54280064558 endByte: 63329908651 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56522 is now alive. startByte: 9045844093 endByte: 18095688186 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56526 is now alive. startByte: 45233220465 endByte: 54283064558 -[2018-02-13T00:23:48.836] [INFO] cheese - worker pid:56523 is now alive. startByte: 18092688186 endByte: 27142532279 -[2018-02-13T00:23:49.238] [INFO] cheese - inserting 1000 documents. first: Life-annuities and last: McCarroll -[2018-02-13T00:23:49.311] [INFO] cheese - inserting 1000 documents. first: Murder Love and last: Kenninji -[2018-02-13T00:23:49.311] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:23:49.321] [INFO] cheese - inserting 1000 documents. first: Judy Corbalis and last: Template:Administrative divisions of Russia -[2018-02-13T00:23:49.327] [INFO] cheese - inserting 1000 documents. first: Category:2015 in the Cook Islands and last: Phos alabaster -[2018-02-13T00:23:49.331] [INFO] cheese - inserting 1000 documents. first: Varian Johnson and last: Flucindole -[2018-02-13T00:23:49.386] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:23:49.398] [INFO] cheese - inserting 1000 documents. first: Sarra Manning and last: SNIA -[2018-02-13T00:23:49.411] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:23:49.416] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:23:49.430] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:23:49.530] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:23:49.740] [INFO] cheese - inserting 1000 documents. first: Ruthenium hexafluoride and last: Wanda Brister -[2018-02-13T00:23:49.792] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:23:49.799] [INFO] cheese - inserting 1000 documents. first: Algerian constitution and last: 80th Division (People's Volunteer Army) -[2018-02-13T00:23:49.800] [INFO] cheese - inserting 1000 documents. first: Cocolmeca and last: Tânia Ribeiro -[2018-02-13T00:23:49.803] [INFO] cheese - inserting 1000 documents. first: Chonta Palm and last: Template:PBB/122876 -[2018-02-13T00:23:49.839] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:23:49.840] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:23:49.874] [INFO] cheese - inserting 1000 documents. first: Category:Pittsburgh Penguins trophies and awards and last: Category:WikiProject OpenStreetMap -[2018-02-13T00:23:49.895] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:23:49.920] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:23:50.120] [INFO] cheese - inserting 1000 documents. first: Pakistanis in Canada and last: Wikipedia:Articles for deletion/2008 Roses Tournament -[2018-02-13T00:23:50.141] [INFO] cheese - inserting 1000 documents. first: Aben ezra and last: File:Katiewilks.gif -[2018-02-13T00:23:50.167] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:50.170] [INFO] cheese - inserting 1000 documents. first: List of TVB series (2004) and last: Category:Detroit Pistons draft picks -[2018-02-13T00:23:50.184] [INFO] cheese - inserting 1000 documents. first: Kibler Park and last: Deutsches Institut für Entwicklungspolitik -[2018-02-13T00:23:50.202] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:23:50.217] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:23:50.221] [INFO] cheese - inserting 1000 documents. first: Freedom of speech in South Korea and last: Jewish nose -[2018-02-13T00:23:50.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kevin Ou and last: Dewey Township, Indiana -[2018-02-13T00:23:50.262] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:23:50.271] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:23:50.322] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:23:50.463] [INFO] cheese - inserting 1000 documents. first: AccessibleComputing and last: Airline -[2018-02-13T00:23:50.524] [INFO] cheese - inserting 1000 documents. first: Template:PBB/958 and last: Conrado Pérez Armenteros -[2018-02-13T00:23:50.539] [INFO] cheese - inserting 1000 documents. first: Podmokly (Děčín) and last: Ostedes albomarmorata -[2018-02-13T00:23:50.561] [INFO] cheese - batch complete in: 1.688 secs -[2018-02-13T00:23:50.563] [INFO] cheese - inserting 1000 documents. first: Sibelius G7 and last: File:Riverside Superior Court Front.jpg -[2018-02-13T00:23:50.568] [INFO] cheese - inserting 1000 documents. first: How to Destroy Angels and last: Wikipedia:WikiProject Spam/LinkReports/pavucina.org -[2018-02-13T00:23:50.573] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:23:50.583] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:23:50.603] [INFO] cheese - inserting 1000 documents. first: Dick Johnson Township, Indiana and last: Winfield Township, Indiana -[2018-02-13T00:23:50.618] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:23:50.624] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:23:50.663] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:23:50.728] [INFO] cheese - inserting 1000 documents. first: 1992 Pacific hurricane season and last: PMTU -[2018-02-13T00:23:50.793] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:23:50.911] [INFO] cheese - inserting 1000 documents. first: St. Martin's Griffin and last: Template:PBB/10097 -[2018-02-13T00:23:50.939] [INFO] cheese - inserting 1000 documents. first: John C. Avise and last: File:Perdido en el espacio.jpg -[2018-02-13T00:23:50.946] [INFO] cheese - inserting 1000 documents. first: Raoul Șorban and last: CS Source -[2018-02-13T00:23:50.966] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:23:50.985] [INFO] cheese - inserting 1000 documents. first: Ostedes andamanica and last: Akihiro Murayama -[2018-02-13T00:23:50.988] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:23:51.000] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:23:51.060] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:23:51.201] [INFO] cheese - inserting 1000 documents. first: Wood Township, Indiana and last: Category:Decorative arts museums in Italy -[2018-02-13T00:23:51.261] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:23:51.263] [INFO] cheese - inserting 1000 documents. first: Sodium pareth sulfate and last: Hedemorapartiet -[2018-02-13T00:23:51.309] [INFO] cheese - inserting 1000 documents. first: FIA Formula One World Championship and last: Lectionary 232 -[2018-02-13T00:23:51.321] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:23:51.349] [INFO] cheese - inserting 1000 documents. first: Maestro Semester One and last: Tiblisi -[2018-02-13T00:23:51.350] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:23:51.402] [INFO] cheese - inserting 1000 documents. first: Raynesway and last: Wikipedia:Sockpuppet investigations/Cavefish777 -[2018-02-13T00:23:51.401] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:23:51.419] [INFO] cheese - inserting 1000 documents. first: Sixpence (British) and last: Template:PBB/8321 -[2018-02-13T00:23:51.443] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:23:51.481] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:23:51.580] [INFO] cheese - inserting 1000 documents. first: Byrnesville and last: County Route 615 (Cumberland County, New Jersey) -[2018-02-13T00:23:51.619] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:23:51.634] [INFO] cheese - inserting 1000 documents. first: Timberforce and last: I. variabilis -[2018-02-13T00:23:51.674] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:23:51.686] [INFO] cheese - inserting 1000 documents. first: Charge (fanfare) and last: Yadollah Royai -[2018-02-13T00:23:51.725] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:23:51.734] [INFO] cheese - inserting 1000 documents. first: March 1925 and last: August 1926 -[2018-02-13T00:23:51.771] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:51.782] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8323 and last: Template:PBB/80333 -[2018-02-13T00:23:51.811] [INFO] cheese - inserting 1000 documents. first: Fürstenberg-Baar and last: Fort Worth Water Gardens -[2018-02-13T00:23:51.815] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:23:51.867] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:23:51.895] [INFO] cheese - inserting 1000 documents. first: County Route 616 (Cumberland County, New Jersey) and last: 5α-Reductase type II -[2018-02-13T00:23:51.933] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:23:51.986] [INFO] cheese - inserting 1000 documents. first: Laird Shipyard and last: Template:Usertalkpage2/doc -[2018-02-13T00:23:52.027] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:23:52.061] [INFO] cheese - inserting 1000 documents. first: Moment of angle and last: Wanza -[2018-02-13T00:23:52.102] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:23:52.110] [INFO] cheese - inserting 1000 documents. first: Miomyrmex and last: My Friend Flicker -[2018-02-13T00:23:52.120] [INFO] cheese - inserting 1000 documents. first: Jeffrey G Kitingan and last: Template:PBB/222 -[2018-02-13T00:23:52.170] [INFO] cheese - inserting 1000 documents. first: Australian Democrats and last: Big Dipper (disambiguation) -[2018-02-13T00:23:52.170] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:23:52.180] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:23:52.249] [INFO] cheese - inserting 1000 documents. first: Cairo Conference (1943) and last: 1985 SEC Baseball Tournament -[2018-02-13T00:23:52.267] [INFO] cheese - inserting 1000 documents. first: File:Columbia TriStar Television.jpg and last: File:Openallhours 1.jpg -[2018-02-13T00:23:52.272] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T00:23:52.296] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:23:52.314] [INFO] cheese - inserting 1000 documents. first: Portal:Nova Scotia/Selected panoramic picture and last: Sombrero calañés -[2018-02-13T00:23:52.329] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:23:52.357] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:23:52.458] [INFO] cheese - inserting 1000 documents. first: Chris Seitz and last: François Pelletier -[2018-02-13T00:23:52.504] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:23:52.510] [INFO] cheese - inserting 1000 documents. first: Bobby Graham and last: Anisocarpus rammii -[2018-02-13T00:23:52.560] [INFO] cheese - inserting 1000 documents. first: Final Fantasy Fables: Chocobo's Dungeon DS and last: Cell Metabolism -[2018-02-13T00:23:52.578] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:23:52.607] [INFO] cheese - inserting 1000 documents. first: Annie Get Your Gun (1986 London revival cast) and last: JPMorgan Chase Multibillion-dollar Trading Loss May, 2012 -[2018-02-13T00:23:52.635] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:23:52.660] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:23:52.756] [INFO] cheese - inserting 1000 documents. first: Watford F.C. season 2009–10 and last: File:KillerBitch FinalCover.jpg -[2018-02-13T00:23:52.787] [INFO] cheese - inserting 1000 documents. first: Samsonite Corporation and last: Prince Edward Island Route 158 -[2018-02-13T00:23:52.792] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:23:52.890] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:23:52.923] [INFO] cheese - inserting 1000 documents. first: Korean G7 and last: Philadelphia Transportation Company -[2018-02-13T00:23:52.927] [INFO] cheese - inserting 1000 documents. first: Information Card Foundation and last: Great Gaddesden -[2018-02-13T00:23:52.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Record Production/TabHeader/doc and last: Angst (1928 film) -[2018-02-13T00:23:52.948] [INFO] cheese - inserting 1000 documents. first: United States Government Printing Office and last: Sit-out powerbomb -[2018-02-13T00:23:52.967] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:23:52.968] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:23:53.021] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:23:53.021] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:23:53.223] [INFO] cheese - inserting 1000 documents. first: Balabanchevo and last: List of UEFA Women's Cup winners -[2018-02-13T00:23:53.251] [INFO] cheese - inserting 1000 documents. first: File:AartKoopmans.jpg and last: Rick Smith (hockey) -[2018-02-13T00:23:53.267] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:23:53.279] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8192 and last: Template:PBB/11177 -[2018-02-13T00:23:53.294] [INFO] cheese - inserting 1000 documents. first: Template:Bostrichiformia-stub and last: Maxine (Blossom) Miles -[2018-02-13T00:23:53.293] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:23:53.321] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:23:53.332] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:23:53.361] [INFO] cheese - inserting 1000 documents. first: Gridmp and last: History of Tatarstan -[2018-02-13T00:23:53.422] [INFO] cheese - inserting 1000 documents. first: Category:House of Vendramin and last: Active Parking Assist -[2018-02-13T00:23:53.425] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:23:53.477] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:23:53.626] [INFO] cheese - inserting 1000 documents. first: Portal:Electronics/Selected biography/7 and last: Wikipedia:Requests for bureaucratship/Grandmasterka -[2018-02-13T00:23:53.639] [INFO] cheese - inserting 1000 documents. first: Julius Posener and last: Template:PBB/84084 -[2018-02-13T00:23:53.653] [INFO] cheese - inserting 1000 documents. first: Jakob Xavery and last: Misión Chaqueña -[2018-02-13T00:23:53.667] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:23:53.670] [INFO] cheese - inserting 1000 documents. first: List of listed buildings in Oban, Argyll and Bute and last: Murder Is No Joke -[2018-02-13T00:23:53.673] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:23:53.708] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:23:53.712] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:23:53.801] [INFO] cheese - inserting 1000 documents. first: Huntsman's Leap and last: Draft:Women in Global Environmental Change -[2018-02-13T00:23:53.845] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:23:53.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Matthew 4:4 and last: Mladost (sports society) -[2018-02-13T00:23:53.964] [INFO] cheese - inserting 1000 documents. first: Egoi Martinez de Esteban and last: Patron system -[2018-02-13T00:23:53.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:2008 main page redesign proposal/Aquillyne and last: Utah State Route 263 (1959–1969) -[2018-02-13T00:23:54.005] [INFO] cheese - inserting 1000 documents. first: Bursa and last: Bill Bryson -[2018-02-13T00:23:54.005] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:23:54.007] [INFO] cheese - inserting 1000 documents. first: Misión Kilómetro 6 and last: Template:National football Supercups (CONCACAF region) -[2018-02-13T00:23:54.003] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:23:54.017] [INFO] cheese - inserting 1000 documents. first: The Ghost Train (1927 film) and last: Chah-e Kashmir -[2018-02-13T00:23:54.036] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:23:54.068] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:23:54.074] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:23:54.137] [INFO] cheese - batch complete in: 1.865 secs -[2018-02-13T00:23:54.180] [INFO] cheese - inserting 1000 documents. first: Bihu Songs of Assam (book) and last: Category:Hockomock League -[2018-02-13T00:23:54.233] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:23:54.361] [INFO] cheese - inserting 1000 documents. first: Senad Lupic and last: Mediterranean–Niger Railway -[2018-02-13T00:23:54.374] [INFO] cheese - inserting 1000 documents. first: Glenn R. Conrad and last: Twin Tiers -[2018-02-13T00:23:54.389] [INFO] cheese - inserting 1000 documents. first: Utah State Route 263 (1959) and last: BRP Diego Silang (PF-9) -[2018-02-13T00:23:54.423] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Shizuoka Prefecture and last: Category:African-American history of Illinois -[2018-02-13T00:23:54.423] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:23:54.436] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:23:54.446] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:23:54.503] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:23:54.525] [INFO] cheese - inserting 1000 documents. first: Christopher Paul Greener and last: Phanerogam -[2018-02-13T00:23:54.583] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:23:54.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dardani (village) and last: Oresteya -[2018-02-13T00:23:54.683] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:23:54.781] [INFO] cheese - inserting 1000 documents. first: Lino-cut and last: 4th Space Operations Squadron -[2018-02-13T00:23:54.795] [INFO] cheese - inserting 1000 documents. first: Category:People from Babadag and last: Aguada Cecilio -[2018-02-13T00:23:54.837] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1678 and last: Mr. Men and Little Miss (Books) -[2018-02-13T00:23:54.835] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:23:54.847] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:23:54.880] [INFO] cheese - inserting 1000 documents. first: File:Photograph of Mr. Amin.jpg and last: Template:Did you know nominations/Centripetal Spring Armchair -[2018-02-13T00:23:54.900] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:23:54.935] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:23:55.036] [INFO] cheese - inserting 1000 documents. first: File:Ursinus College Logo.png and last: Waldegrave Islands -[2018-02-13T00:23:55.097] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:23:55.243] [INFO] cheese - inserting 1000 documents. first: Category:Israeli people of Finnish descent and last: Winter Story 2007–2008 -[2018-02-13T00:23:55.257] [INFO] cheese - inserting 1000 documents. first: New Union Social Liberals and last: Polish anti-Semitism -[2018-02-13T00:23:55.268] [INFO] cheese - inserting 1000 documents. first: Aguada de Guerra and last: Sharon Webb -[2018-02-13T00:23:55.277] [INFO] cheese - inserting 1000 documents. first: Bush pilots and last: Sand table -[2018-02-13T00:23:55.279] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:23:55.325] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:23:55.383] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:23:55.399] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:23:55.432] [INFO] cheese - inserting 1000 documents. first: AMA House and last: Canadian Egg Marketing Agency v. Richardson -[2018-02-13T00:23:55.466] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:23:55.507] [INFO] cheese - inserting 1000 documents. first: Second round of voting in the 2008 Zimbabwean presidential election and last: Template:PBB/54332 -[2018-02-13T00:23:55.554] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:23:55.612] [INFO] cheese - inserting 1000 documents. first: Murgisca cervinalis and last: Graptemys pseudogeographica versa -[2018-02-13T00:23:55.647] [INFO] cheese - inserting 1000 documents. first: Lockheed CL-915 and last: Yury Nikitin -[2018-02-13T00:23:55.655] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:23:55.696] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:23:55.751] [INFO] cheese - inserting 1000 documents. first: R. v. Cuerrier and last: Sean Riley (American football) -[2018-02-13T00:23:55.757] [INFO] cheese - inserting 1000 documents. first: Guitar Hero: 80s Edition and last: Mathematical fictionalism -[2018-02-13T00:23:55.794] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:55.810] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:23:55.816] [INFO] cheese - inserting 1000 documents. first: Hollóko and last: File:HabsburgStammtafelGruftTuscan.png -[2018-02-13T00:23:55.858] [INFO] cheese - inserting 1000 documents. first: Template:PBB/54657 and last: Connecticut Superior Court -[2018-02-13T00:23:55.894] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:23:55.906] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:23:55.979] [INFO] cheese - inserting 1000 documents. first: Hyperestrogenism and last: A Grande Musica -[2018-02-13T00:23:56.005] [INFO] cheese - inserting 1000 documents. first: Book:Flags of the U.S. states and last: File:SageFrancis-SeaLion.jpg -[2018-02-13T00:23:56.023] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:23:56.048] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:23:56.076] [INFO] cheese - inserting 1000 documents. first: New Hampshire Healthy Families and last: Wikipedia:Articles for deletion/James Dodkins -[2018-02-13T00:23:56.084] [INFO] cheese - inserting 1000 documents. first: Big Audio Dynamite and last: Conditional proof -[2018-02-13T00:23:56.106] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:23:56.188] [INFO] cheese - batch complete in: 2.051 secs -[2018-02-13T00:23:56.191] [INFO] cheese - inserting 1000 documents. first: A Jamaa and last: Bratcice -[2018-02-13T00:23:56.229] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:23:56.242] [INFO] cheese - inserting 1000 documents. first: Email relay and last: The Game of Life Card Game -[2018-02-13T00:23:56.244] [INFO] cheese - inserting 1000 documents. first: File:RoyalDodge.jpg and last: Cig (disambiguation) -[2018-02-13T00:23:56.293] [INFO] cheese - inserting 1000 documents. first: Unicorn Plant and last: In taberna mori -[2018-02-13T00:23:56.293] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:23:56.297] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:23:56.348] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:23:56.357] [INFO] cheese - inserting 1000 documents. first: Category:Articles with failed verification from September 2014 and last: File:Rice-Mike-150105-stern.jpg -[2018-02-13T00:23:56.386] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:23:56.451] [INFO] cheese - inserting 1000 documents. first: U.S. Route 411 in Georgia and last: Wikipedia:WikiProject Spam/LinkReports/deallocker.com -[2018-02-13T00:23:56.468] [INFO] cheese - inserting 1000 documents. first: Columbia Gorge Casino and last: Wynyard Memorial Airport -[2018-02-13T00:23:56.500] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:23:56.523] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:23:56.582] [INFO] cheese - inserting 1000 documents. first: Template:PBB/2077 and last: Tseren-Ochiryn Dambadorj -[2018-02-13T00:23:56.622] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:23:56.666] [INFO] cheese - inserting 1000 documents. first: Madheshi and last: Julius Cæsar (play) -[2018-02-13T00:23:56.707] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:23:56.762] [INFO] cheese - inserting 1000 documents. first: Botys oeaxalis and last: File:Bridge on John P Saylor Trail.jpg -[2018-02-13T00:23:56.771] [INFO] cheese - inserting 1000 documents. first: Template:Janet periodic table and last: Darko Pavicevic -[2018-02-13T00:23:56.803] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:23:56.809] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:23:56.816] [INFO] cheese - inserting 1000 documents. first: Wadih Sabrá and last: Stereo MC's -[2018-02-13T00:23:56.851] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 May 4 and last: Radio Yunost -[2018-02-13T00:23:56.887] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:23:56.896] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:23:56.972] [INFO] cheese - inserting 1000 documents. first: Template:PBB/64478 and last: Template:PBB/26539 -[2018-02-13T00:23:57.013] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:23:57.072] [INFO] cheese - inserting 1000 documents. first: List of Roman Catholic missionaries and last: File:Voeflogo.png -[2018-02-13T00:23:57.073] [INFO] cheese - inserting 1000 documents. first: Darko Stanic and last: Es ist euch gut, dass ich hingehe, BWV 108 -[2018-02-13T00:23:57.108] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:23:57.118] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:23:57.154] [INFO] cheese - inserting 1000 documents. first: 7th Lumières Awards and last: Baby baby baby oh -[2018-02-13T00:23:57.173] [INFO] cheese - inserting 1000 documents. first: List of GP3 Series drivers and last: The Hangman (2010 film) -[2018-02-13T00:23:57.195] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:23:57.201] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:23:57.288] [INFO] cheese - inserting 1000 documents. first: Iluppaiyur and last: Solncevski Raion -[2018-02-13T00:23:57.313] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:23:57.365] [INFO] cheese - inserting 1000 documents. first: Akrotiri Peninsula (Crete) and last: Craig Theater -[2018-02-13T00:23:57.403] [INFO] cheese - inserting 1000 documents. first: Embassy of India, Washington, D.C. and last: Template:PBB/8985 -[2018-02-13T00:23:57.425] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:23:57.445] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:23:57.483] [INFO] cheese - inserting 1000 documents. first: Solncevskii Raion and last: Kosaca noble family -[2018-02-13T00:23:57.484] [INFO] cheese - inserting 1000 documents. first: File:Bells at Mission, San Diego.jpg and last: Luis Conrado Batlle y Berres -[2018-02-13T00:23:57.503] [INFO] cheese - batch complete in: 0.19 secs -[2018-02-13T00:23:57.528] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:23:57.629] [INFO] cheese - inserting 1000 documents. first: File:Hangmannew.jpg and last: Category:1963 live albums -[2018-02-13T00:23:57.661] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Metropolitan New York Library Council and last: Rajiv Tomar -[2018-02-13T00:23:57.686] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:23:57.724] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:23:57.738] [INFO] cheese - inserting 1000 documents. first: Template:PBB/8991 and last: Nowiny-Leśniczówka -[2018-02-13T00:23:57.770] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:23:57.791] [INFO] cheese - inserting 1000 documents. first: Kossakowka and last: Matilde Rosa Lopes de Araujo -[2018-02-13T00:23:57.796] [INFO] cheese - inserting 1000 documents. first: International Asperger Year and last: Avco Corporation -[2018-02-13T00:23:57.821] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:23:57.827] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:23:57.871] [INFO] cheese - inserting 1000 documents. first: Conjunction introduction and last: Donald Knuth -[2018-02-13T00:23:57.925] [INFO] cheese - inserting 1000 documents. first: 54th Street Theater and last: Skerryvore -[2018-02-13T00:23:57.968] [INFO] cheese - batch complete in: 1.78 secs -[2018-02-13T00:23:57.985] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:23:58.063] [INFO] cheese - inserting 1000 documents. first: Tarana railway station and last: The White Man's Law -[2018-02-13T00:23:58.064] [INFO] cheese - inserting 1000 documents. first: Flying Snake and last: NuSMV 2 -[2018-02-13T00:23:58.067] [INFO] cheese - inserting 1000 documents. first: Template:PBB/6137 and last: Template:PBB/4212 -[2018-02-13T00:23:58.095] [INFO] cheese - inserting 1000 documents. first: Matjaz Brumen and last: Jake Fury -[2018-02-13T00:23:58.096] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:23:58.099] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:23:58.116] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:23:58.156] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:23:58.163] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ToucH RadiO Internet Broadcasting and last: U.S. Route 38 in Colorado -[2018-02-13T00:23:58.215] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:23:58.427] [INFO] cheese - inserting 1000 documents. first: Senile plaques and last: Düsseldorf school of painting -[2018-02-13T00:23:58.437] [INFO] cheese - inserting 1000 documents. first: Sts. Sergios and Bacchus and last: Argentina Sono film -[2018-02-13T00:23:58.461] [INFO] cheese - inserting 1000 documents. first: Miodrag Koljević and last: Barstow Road -[2018-02-13T00:23:58.477] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:23:58.503] [INFO] cheese - inserting 1000 documents. first: Forest of Mondrem and last: H. C. ten Berge -[2018-02-13T00:23:58.504] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:23:58.517] [INFO] cheese - inserting 1000 documents. first: Bruce Lindahl and last: Doctors (series 9) -[2018-02-13T00:23:58.543] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:23:58.568] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:23:58.566] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:23:58.630] [INFO] cheese - inserting 1000 documents. first: Osvaldo Ferreño and last: Paradsasvar -[2018-02-13T00:23:58.690] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:23:58.993] [INFO] cheese - inserting 1000 documents. first: Lloyd's bank and last: Edward Somerset, 2nd Marquis of Worcester -[2018-02-13T00:23:59.009] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian people of Irish descent and last: Okeechobee High School (1925) -[2018-02-13T00:23:59.054] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:23:59.068] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:23:59.103] [INFO] cheese - inserting 1000 documents. first: Chris Nelson (photographer) and last: File:ChildhoodsEnd(1stEd).jpg -[2018-02-13T00:23:59.117] [INFO] cheese - inserting 1000 documents. first: Pat Farrell (Fianna Fail) and last: Category:Chilean expatriates in Indonesia -[2018-02-13T00:23:59.140] [INFO] cheese - inserting 1000 documents. first: John Paine (sport shooter) and last: Trip Mines -[2018-02-13T00:23:59.149] [INFO] cheese - inserting 1000 documents. first: Relationship of command and last: 1937 Sugar Bowl -[2018-02-13T00:23:59.161] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:23:59.165] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:23:59.252] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:23:59.260] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:23:59.556] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Rustam Effendi and last: Category:1960s establishments in California -[2018-02-13T00:23:59.567] [INFO] cheese - inserting 1000 documents. first: Orumieh and last: Krasnogorsk uzb -[2018-02-13T00:23:59.602] [INFO] cheese - inserting 1000 documents. first: Forward lateral and last: Wikipedia:Miscellany for deletion/User:Tomas Zenteno -[2018-02-13T00:23:59.604] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:23:59.626] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:23:59.634] [INFO] cheese - inserting 1000 documents. first: Hum-vees and last: Darrington Unit -[2018-02-13T00:23:59.683] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:23:59.711] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:23:59.734] [INFO] cheese - inserting 1000 documents. first: Woolloongabba Branch railway line and last: Pinkilluni (Puno) -[2018-02-13T00:23:59.775] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:23:59.836] [INFO] cheese - inserting 1000 documents. first: Dunfermline East (UK Parliament constituency) and last: Thinking Fellers Union Local -[2018-02-13T00:23:59.914] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:23:59.982] [INFO] cheese - inserting 1000 documents. first: Help:Visual file markup/frameless mode and last: Category:Limburg (Belgium) -[2018-02-13T00:24:00.001] [INFO] cheese - inserting 1000 documents. first: McCormick & Company, Inc. and last: County Route 620 (Morris County, New Jersey) -[2018-02-13T00:24:00.003] [INFO] cheese - inserting 1000 documents. first: Causes of the United States housing bubble and last: Anguis rufa javanica -[2018-02-13T00:24:00.013] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:24:00.067] [INFO] cheese - inserting 1000 documents. first: All-NBA Team Third Time and last: Alexandre sabès pétion -[2018-02-13T00:24:00.068] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:00.074] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:24:00.117] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:24:00.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Yabllib and last: Roderick O'Connor (land commissioner) -[2018-02-13T00:24:00.165] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:24:00.248] [INFO] cheese - inserting 1000 documents. first: Donald E. Knuth and last: Eigenstate -[2018-02-13T00:24:00.262] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2002 Commonwealth Games - Men's 100 Metres and last: Edmund G. Brown Sr. -[2018-02-13T00:24:00.300] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:24:00.369] [INFO] cheese - inserting 1000 documents. first: Stewart McCrae and last: Theresa of Portugal, Countess of Flanders -[2018-02-13T00:24:00.382] [INFO] cheese - batch complete in: 2.414 secs -[2018-02-13T00:24:00.420] [INFO] cheese - inserting 1000 documents. first: Australian Capital Territory Legislative Assembly electorates and last: Hockley, King and Queen County, Virginia -[2018-02-13T00:24:00.451] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:24:00.462] [INFO] cheese - inserting 1000 documents. first: The Galilean Satellites and last: Wikipedia:WikiProject Gospel music/To-do -[2018-02-13T00:24:00.484] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:24:00.487] [INFO] cheese - inserting 1000 documents. first: Ghalib Khan and last: Corinne Marshall -[2018-02-13T00:24:00.496] [INFO] cheese - inserting 1000 documents. first: Robert Sharples (classicist) and last: Category:1671 in law -[2018-02-13T00:24:00.520] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:24:00.547] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:00.590] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:24:00.693] [INFO] cheese - inserting 1000 documents. first: Docs.com and last: Danilo Fernando Avelar -[2018-02-13T00:24:00.767] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:00.862] [INFO] cheese - inserting 1000 documents. first: Yao Tingmei and last: File:KA Most Wanted.jpg -[2018-02-13T00:24:00.905] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:24:00.910] [INFO] cheese - inserting 1000 documents. first: Anthony Volmink and last: Garz/Rügen Castle -[2018-02-13T00:24:00.931] [INFO] cheese - inserting 1000 documents. first: Foiled carbene and last: Wikipedia:Articles for creation/2007-01-20 -[2018-02-13T00:24:00.960] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:24:01.019] [INFO] cheese - inserting 1000 documents. first: Pothyne stictica and last: File:Sherbrooke2003logo.png -[2018-02-13T00:24:01.035] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:24:01.074] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:24:01.099] [INFO] cheese - inserting 1000 documents. first: Godfrey II Count of Louvain and last: Neuchâtel Xamax FC -[2018-02-13T00:24:01.185] [INFO] cheese - inserting 1000 documents. first: Suleyman Ates and last: Etienne Mignot de Montigny -[2018-02-13T00:24:01.214] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:24:01.216] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:24:01.283] [INFO] cheese - inserting 1000 documents. first: Amphidromus semitessellatus and last: Win Clark -[2018-02-13T00:24:01.354] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:01.384] [INFO] cheese - inserting 1000 documents. first: PSR B1257+12A and last: Wikipedia:Articles for deletion/Navnath Sampradaya -[2018-02-13T00:24:01.450] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:24:01.562] [INFO] cheese - inserting 1000 documents. first: Walter Brandt and last: List Of Episodes : The Partially Examined Life -[2018-02-13T00:24:01.575] [INFO] cheese - inserting 1000 documents. first: Saint Vitalis of Gaza and last: Smallville, USA -[2018-02-13T00:24:01.626] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:24:01.645] [INFO] cheese - inserting 1000 documents. first: Etienne Mimard and last: Incomplete and Utter History of Classical Music -[2018-02-13T00:24:01.664] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:24:01.701] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:24:01.737] [INFO] cheese - inserting 1000 documents. first: Srikanth Srinivasan and last: Wikipedia:WikiProject Spam/LinkReports/rehabanklesprain.com -[2018-02-13T00:24:01.759] [INFO] cheese - inserting 1000 documents. first: Neuchatel Xamax FC and last: Emma Gillett -[2018-02-13T00:24:01.804] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:01.831] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:24:01.919] [INFO] cheese - inserting 1000 documents. first: Johann Borenstein and last: India House (Indian High Commision in London) -[2018-02-13T00:24:01.977] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:24:02.045] [INFO] cheese - inserting 1000 documents. first: FC Polet and last: Cuitlateco -[2018-02-13T00:24:02.088] [INFO] cheese - inserting 1000 documents. first: Lou Rell and last: 1915-16 Indian cricket season -[2018-02-13T00:24:02.088] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:02.097] [INFO] cheese - inserting 1000 documents. first: Bret Wood (film director) and last: Hajnalka Kiraly-Picot -[2018-02-13T00:24:02.151] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:02.151] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:24:02.225] [INFO] cheese - inserting 1000 documents. first: Jeremy Penick and last: Illuminating Hadrian's Wall -[2018-02-13T00:24:02.309] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:24:02.403] [INFO] cheese - inserting 1000 documents. first: São Tomé and Principe Dobra and last: Sant Andreu de Llavaneres -[2018-02-13T00:24:02.433] [INFO] cheese - inserting 1000 documents. first: Bibliography of Prem Rawat and related organizations and last: Dharowali -[2018-02-13T00:24:02.457] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:24:02.475] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:02.517] [INFO] cheese - inserting 1000 documents. first: Category:People from Juárez Municipality, Chihuahua and last: Northern pudu -[2018-02-13T00:24:02.541] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Transhumanism articles and last: Category:Project-Class National Institutes of Health articles -[2018-02-13T00:24:02.549] [INFO] cheese - inserting 1000 documents. first: Elizabeth Barrett Browning and last: Fatah -[2018-02-13T00:24:02.563] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:24:02.589] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:24:02.642] [INFO] cheese - batch complete in: 2.26 secs -[2018-02-13T00:24:02.688] [INFO] cheese - inserting 1000 documents. first: 1916-17 Indian cricket season and last: Ben mahmoud -[2018-02-13T00:24:02.700] [INFO] cheese - inserting 1000 documents. first: Tarporley Hunt and last: File:Merle Okie.jpg -[2018-02-13T00:24:02.745] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:02.747] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:02.825] [INFO] cheese - inserting 1000 documents. first: Ornstein-Uhlenbeck and last: Candy Girl: A Year in the Life of an Unlikely Stripper -[2018-02-13T00:24:02.890] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:24:02.935] [INFO] cheese - inserting 1000 documents. first: Napo plump toad and last: Category:German football clubs 1981–82 season -[2018-02-13T00:24:02.963] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class National Institutes of Health articles and last: Prince Carl Philip of Sweden, Duke of Värmland -[2018-02-13T00:24:02.977] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:02.979] [INFO] cheese - inserting 1000 documents. first: Khingans and last: Category:British royalty stubs -[2018-02-13T00:24:02.998] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:24:03.055] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:03.141] [INFO] cheese - inserting 1000 documents. first: Ihor Pokarynin and last: Neil Komadoski (ice hockey, born 1982) -[2018-02-13T00:24:03.200] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:24:03.252] [INFO] cheese - inserting 1000 documents. first: Iulian Dumitraș and last: Template:Editnotices/Page/LittleBigPlanet 2 -[2018-02-13T00:24:03.302] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:24:03.344] [INFO] cheese - inserting 1000 documents. first: 27th Infantry Division (United Kingdom) and last: Billy Graham (evangelist) -[2018-02-13T00:24:03.388] [INFO] cheese - inserting 1000 documents. first: Tuli Lodge Airport and last: County Route 672 (Salem County, New Jersey) -[2018-02-13T00:24:03.395] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:24:03.457] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:03.562] [INFO] cheese - inserting 1000 documents. first: 浦佐駅 and last: Jonathan Earle -[2018-02-13T00:24:03.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ninjas in Pyjamas and last: Fast of esther -[2018-02-13T00:24:03.619] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:24:03.643] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:24:03.680] [INFO] cheese - inserting 1000 documents. first: Bobby Kotic and last: Template:1963 United States Ryder Cup team -[2018-02-13T00:24:03.740] [INFO] cheese - inserting 1000 documents. first: Jiangsu Lu and last: Miami Valley Channel -[2018-02-13T00:24:03.753] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:24:03.829] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:24:03.845] [INFO] cheese - inserting 1000 documents. first: File:Mount Lebanon Shaker Meetinghouse 12July2008.jpg and last: David J. Patterson -[2018-02-13T00:24:03.858] [INFO] cheese - inserting 1000 documents. first: County Route 674 (Salem County, New Jersey) and last: Acraea masamba -[2018-02-13T00:24:03.907] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:24:03.931] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:04.017] [INFO] cheese - inserting 1000 documents. first: Pseudocalamobius rondoni and last: List of college affilated to Calcutta University -[2018-02-13T00:24:04.073] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:04.155] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject R&B and Soul Music/Unreferenced BLPs and last: Human Readable Interpretation -[2018-02-13T00:24:04.191] [INFO] cheese - inserting 1000 documents. first: Fast of ester and last: Dolmus -[2018-02-13T00:24:04.210] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:04.232] [INFO] cheese - inserting 1000 documents. first: Category:User qya-4 and last: Parade of Progress -[2018-02-13T00:24:04.276] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:24:04.302] [INFO] cheese - inserting 1000 documents. first: Union City, Tennessee-Kentucky Micropolitan Statistical Area and last: France Football European Team of the Year -[2018-02-13T00:24:04.313] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:04.340] [INFO] cheese - inserting 1000 documents. first: William Bayles and last: Polytetrafluoroethylen capacitor -[2018-02-13T00:24:04.365] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:04.388] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:04.501] [INFO] cheese - inserting 1000 documents. first: File:Sacred Heart Girls' College Logo.png and last: Monika Ciecierska -[2018-02-13T00:24:04.555] [INFO] cheese - inserting 1000 documents. first: Now and Forever (film) and last: Mostafa Ekrami -[2018-02-13T00:24:04.557] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:04.591] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:24:04.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Radio/to do and last: MS Angelina Lauro -[2018-02-13T00:24:04.680] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/M1jam/Archive and last: Tihvinskii Raion -[2018-02-13T00:24:04.685] [INFO] cheese - inserting 1000 documents. first: Carl Skottberg and last: File:Basil flower.JPG -[2018-02-13T00:24:04.691] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:24:04.713] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:24:04.734] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:24:04.813] [INFO] cheese - inserting 1000 documents. first: Lucian Perkins and last: File:Polynesian triangle poorly drawn.jpg -[2018-02-13T00:24:04.862] [INFO] cheese - inserting 1000 documents. first: Forteana and last: Eurogame -[2018-02-13T00:24:04.877] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:24:04.895] [INFO] cheese - inserting 1000 documents. first: Thomas Williams (rugby league) and last: Dovisdiana -[2018-02-13T00:24:04.953] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:24:04.971] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Fergasonanton and last: Milica Bodrožić -[2018-02-13T00:24:04.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Matt Norman and last: File:Ieremiamovilatombstone9fz.jpg -[2018-02-13T00:24:05.029] [INFO] cheese - batch complete in: 2.387 secs -[2018-02-13T00:24:05.031] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:24:05.046] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:24:05.106] [INFO] cheese - inserting 1000 documents. first: Mordellistena rufifrons and last: Pulaski Cavalry Legion -[2018-02-13T00:24:05.168] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:24:05.169] [INFO] cheese - inserting 1000 documents. first: File:Sen John Williams TN.jpg and last: Güzellik ve Aşk -[2018-02-13T00:24:05.255] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:05.365] [INFO] cheese - inserting 1000 documents. first: File:Head anatomy lateral view 45px.jpg and last: List of Indian films -[2018-02-13T00:24:05.368] [INFO] cheese - inserting 1000 documents. first: Pavonia Terminal (Erie Railroad station) and last: Edmonton Investors Group Limited Partnership -[2018-02-13T00:24:05.393] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:24:05.420] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:05.465] [INFO] cheese - inserting 1000 documents. first: Short line railroad and last: Max the Dog -[2018-02-13T00:24:05.492] [INFO] cheese - inserting 1000 documents. first: Flor Silvestre con el Mariachi México and last: Loretta Tupper -[2018-02-13T00:24:05.518] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:24:05.563] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:24:05.600] [INFO] cheese - inserting 1000 documents. first: File:Official Airtime logo.png and last: Category:1400s establishments in Romania -[2018-02-13T00:24:05.642] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:05.677] [INFO] cheese - inserting 1000 documents. first: Huesn ue Ask and last: Edgard Sorgeloos -[2018-02-13T00:24:05.718] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:24:05.729] [INFO] cheese - inserting 1000 documents. first: Polish Peasant Party and last: Hybris Records -[2018-02-13T00:24:05.772] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:24:05.785] [INFO] cheese - inserting 1000 documents. first: Transfer of sovereignty of Macau and last: Pyotr Il'yich Tchaikovsky -[2018-02-13T00:24:05.824] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:24:05.901] [INFO] cheese - inserting 1000 documents. first: Loretta Clemens and last: 2007 in Liechtenstein -[2018-02-13T00:24:05.938] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:24:05.977] [INFO] cheese - inserting 1000 documents. first: Category:15th-century establishments in Romania and last: Anatomical variation -[2018-02-13T00:24:05.991] [INFO] cheese - inserting 1000 documents. first: Caesar Best and Greatest and last: Charlie Miller -[2018-02-13T00:24:06.005] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:24:06.071] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:06.099] [INFO] cheese - inserting 1000 documents. first: Category:Hambleton geography stubs and last: File:Neuron colored small.jpg -[2018-02-13T00:24:06.103] [INFO] cheese - inserting 1000 documents. first: Anieliny and last: Petey Cipriano -[2018-02-13T00:24:06.138] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:24:06.142] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:24:06.210] [INFO] cheese - inserting 1000 documents. first: Template:Hong Kong football seasons/doc and last: Template:2007-08 Horizon League men's basketball standings -[2018-02-13T00:24:06.256] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:24:06.312] [INFO] cheese - inserting 1000 documents. first: Dnovski and last: Aḥmadzay -[2018-02-13T00:24:06.363] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:24:06.490] [INFO] cheese - inserting 1000 documents. first: Template:Australia-documentary-film-stub and last: Rangdi Krogstad -[2018-02-13T00:24:06.516] [INFO] cheese - inserting 1000 documents. first: Team Cheerios and last: Milltown, County Kerry -[2018-02-13T00:24:06.546] [INFO] cheese - inserting 1000 documents. first: Srikanthakati and last: Template:Maltese Second Division 2008-09 -[2018-02-13T00:24:06.550] [INFO] cheese - inserting 1000 documents. first: Ralph Hyde and last: Star Wars: clone wars -[2018-02-13T00:24:06.551] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:06.594] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:24:06.608] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:24:06.611] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:24:06.636] [INFO] cheese - inserting 1000 documents. first: Abraham M. Halpern and last: Category:Accidental deaths in Algeria -[2018-02-13T00:24:06.704] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:24:06.763] [INFO] cheese - inserting 1000 documents. first: Ušumgallu and last: File:WTCJ-FM Classic Hits radio logo.jpg -[2018-02-13T00:24:06.840] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:07.072] [INFO] cheese - inserting 1000 documents. first: Bavarian Maximilian Railway and last: Pedro Romo (actor) -[2018-02-13T00:24:07.074] [INFO] cheese - inserting 1000 documents. first: Template:Algeria tallest buildings lists and last: Raid Rasheed -[2018-02-13T00:24:07.102] [INFO] cheese - inserting 1000 documents. first: Category:Accidental deaths in Angola and last: Tsutāja -[2018-02-13T00:24:07.126] [INFO] cheese - inserting 1000 documents. first: Star Wars: Clone wars and last: List of Major League Baseball players (D) -[2018-02-13T00:24:07.151] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:24:07.166] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:24:07.157] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:24:07.209] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:07.244] [INFO] cheese - inserting 1000 documents. first: Grand Unified Theory and last: History of Africa -[2018-02-13T00:24:07.253] [INFO] cheese - inserting 1000 documents. first: Anti-LKM antibody and last: 1999 Fed Cup Europe/Africa Zone Group II – Pool B -[2018-02-13T00:24:07.268] [INFO] cheese - inserting 1000 documents. first: Umbrail Pass and last: 1982 in Singapore -[2018-02-13T00:24:07.307] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:07.349] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:24:07.377] [INFO] cheese - batch complete in: 2.347 secs -[2018-02-13T00:24:07.546] [INFO] cheese - inserting 1000 documents. first: Mets–Willets Point (disambiguation) and last: Pardhan (disambiguation) -[2018-02-13T00:24:07.552] [INFO] cheese - inserting 1000 documents. first: File:Londonboys-love4unity.jpeg and last: Wikipedia:Miscellany for deletion/User:Mattbuck/Wikipedia - FUCK YEAH! -[2018-02-13T00:24:07.576] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:24:07.586] [INFO] cheese - inserting 1000 documents. first: Eleonora de Medici and last: Wikipedia:Version 1.0 Editorial Team/Aerospace biography articles by quality -[2018-02-13T00:24:07.629] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:24:07.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Worker Student Alliance and last: Martin Reuben Gainsbrugh -[2018-02-13T00:24:07.682] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:24:07.699] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:24:07.751] [INFO] cheese - inserting 1000 documents. first: Category:1928 elections in the United Kingdom and last: Bogue Chitto, Lincoln County, Mississippi -[2018-02-13T00:24:07.842] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:24:07.912] [INFO] cheese - inserting 1000 documents. first: Resolution 338 and last: Sletta, Hordaland -[2018-02-13T00:24:07.947] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:24:07.951] [INFO] cheese - inserting 1000 documents. first: Sioux Falls Pheasants and last: Batata harra -[2018-02-13T00:24:08.041] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:24:08.175] [INFO] cheese - inserting 1000 documents. first: Category:Television categories for deletion scanning and last: Quincy, Illinois micropolitan Area -[2018-02-13T00:24:08.184] [INFO] cheese - inserting 1000 documents. first: Template:Bids for the 2018 and 2022 FIFA World Cup and last: National American Greek Council -[2018-02-13T00:24:08.225] [INFO] cheese - inserting 1000 documents. first: Martin Gainsbrugh and last: Moncrieff J. Spear -[2018-02-13T00:24:08.251] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:24:08.264] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:24:08.292] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:24:08.314] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eurozone as an optimum currency area and last: Shashishalhem -[2018-02-13T00:24:08.370] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:24:08.422] [INFO] cheese - inserting 1000 documents. first: Critics' Choice Television Award for Best Actress in a Drama Series and last: Tuskestan -[2018-02-13T00:24:08.493] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:08.605] [INFO] cheese - inserting 1000 documents. first: Court of General Surveyors and last: Kshullaka -[2018-02-13T00:24:08.639] [INFO] cheese - inserting 1000 documents. first: History of Ptolemaic Egypt and last: Catnip (disambiguation) -[2018-02-13T00:24:08.643] [INFO] cheese - inserting 1000 documents. first: The Barefoot Rugby League Show and last: Penstemon palmeri var. eglandulosus -[2018-02-13T00:24:08.651] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:24:08.704] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:08.725] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:24:08.820] [INFO] cheese - inserting 1000 documents. first: List of main characters in Bamse and last: Transient lingual papillitis -[2018-02-13T00:24:08.865] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:08.880] [INFO] cheese - inserting 1000 documents. first: Wagon Hill Cemetery Monument and last: Zacharias Peter Paul Obenauf -[2018-02-13T00:24:08.921] [INFO] cheese - inserting 1000 documents. first: Toskastan and last: Category:People of Meiji-period Japan -[2018-02-13T00:24:08.955] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:24:08.988] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:09.065] [INFO] cheese - inserting 1000 documents. first: Live: Meadowbrook, Rochester, Michigan – 12th September 1971 and last: Kaiga Nuclear Power Plant -[2018-02-13T00:24:09.105] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:24:09.163] [INFO] cheese - inserting 1000 documents. first: Tarawa Beachhead and last: Ron Fimrite -[2018-02-13T00:24:09.233] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:24:09.280] [INFO] cheese - inserting 1000 documents. first: Patrick Sjöberg and last: Princess Srirasmi -[2018-02-13T00:24:09.319] [INFO] cheese - inserting 1000 documents. first: Talkers magazine and last: Farhad Ahmed Dockrat -[2018-02-13T00:24:09.340] [INFO] cheese - inserting 1000 documents. first: File:Dorits.jpg and last: Wikipedia:Requested articles/Sports/Association football (soccer) -[2018-02-13T00:24:09.342] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:24:09.375] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:24:09.399] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:24:09.469] [INFO] cheese - inserting 1000 documents. first: Wayne Wilkins and last: Saint-Raphaël Arrondissement -[2018-02-13T00:24:09.492] [INFO] cheese - inserting 1000 documents. first: 1905 law on the Separation of the Churches and the State and last: Monohorgonj Upazila -[2018-02-13T00:24:09.505] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:24:09.543] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:09.664] [INFO] cheese - inserting 1000 documents. first: History of Oceania and last: JohnnyUnitas -[2018-02-13T00:24:09.688] [INFO] cheese - inserting 1000 documents. first: ROSL and last: Iuzhnyy District -[2018-02-13T00:24:09.721] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:24:09.731] [INFO] cheese - inserting 1000 documents. first: Ethnies and last: Cheshmeh-ye Nil -[2018-02-13T00:24:09.737] [INFO] cheese - inserting 1000 documents. first: House of Malatesta and last: United States Air Force Pararescue -[2018-02-13T00:24:09.769] [INFO] cheese - batch complete in: 2.392 secs -[2018-02-13T00:24:09.781] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:09.802] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:09.829] [INFO] cheese - inserting 1000 documents. first: Category:Cardiidae and last: Category:Category-Class Melbourne articles -[2018-02-13T00:24:09.830] [INFO] cheese - inserting 1000 documents. first: WDKB and last: M. rubra -[2018-02-13T00:24:09.887] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:09.900] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:24:10.021] [INFO] cheese - inserting 1000 documents. first: Manoharganj Upazila and last: Lambert III (bishop of Kraków) -[2018-02-13T00:24:10.042] [INFO] cheese - inserting 1000 documents. first: Peter B. Krauser and last: Manuel Antonio Mesones Muro -[2018-02-13T00:24:10.071] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:24:10.103] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:10.207] [INFO] cheese - inserting 1000 documents. first: Dashti, Golestan and last: Wikipedia:Sockpuppet investigations/ScienceApologist -[2018-02-13T00:24:10.236] [INFO] cheese - inserting 1000 documents. first: Diocese of Ariano Irpino-Lacedonia and last: Naseem Kharal -[2018-02-13T00:24:10.262] [INFO] cheese - inserting 1000 documents. first: 2009 in spaceflight (July–December) and last: Cú Mara mac Maic Liac -[2018-02-13T00:24:10.267] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:10.302] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:10.323] [INFO] cheese - inserting 1000 documents. first: Quinidine gluconate and last: A.M.W.S. -[2018-02-13T00:24:10.319] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:24:10.387] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:24:10.475] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Querétaro and last: Olympiada, Chalkidiki -[2018-02-13T00:24:10.499] [INFO] cheese - inserting 1000 documents. first: Fountain Formation and last: Wikipedia:Requests for checkuser/Case/Bosna -[2018-02-13T00:24:10.515] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:24:10.536] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:24:10.651] [INFO] cheese - inserting 1000 documents. first: John McCone and last: Wikipedia:Editor review/AJH16 -[2018-02-13T00:24:10.658] [INFO] cheese - inserting 1000 documents. first: Category:Prairie School architecture in Washington (state) and last: Ace Buchanan -[2018-02-13T00:24:10.690] [INFO] cheese - inserting 1000 documents. first: Aruba at the Pan American Games and last: Kölner Kartause -[2018-02-13T00:24:10.699] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:24:10.716] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:24:10.754] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:10.953] [INFO] cheese - inserting 1000 documents. first: Shocks and discontinuities (magnetohydrodynamics) and last: Submarine earthquake -[2018-02-13T00:24:10.957] [INFO] cheese - inserting 1000 documents. first: File:Leon vance.jpg and last: Wikipedia:Votes for deletion/EdgeSide -[2018-02-13T00:24:10.975] [INFO] cheese - inserting 1000 documents. first: Steven Brusatte and last: Culture of Madeira -[2018-02-13T00:24:11.004] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:11.030] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:24:11.047] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:24:11.102] [INFO] cheese - inserting 1000 documents. first: File:2012 ALCS.gif and last: Universidad San Sebastián -[2018-02-13T00:24:11.106] [INFO] cheese - inserting 1000 documents. first: Genrikh Liushkov and last: Category:Ships of the Royal New Zealand Navy -[2018-02-13T00:24:11.157] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:11.156] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:11.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/neuchess.com and last: Fontana del Nettuno -[2018-02-13T00:24:11.376] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:24:11.507] [INFO] cheese - inserting 1000 documents. first: John George Lambton, 3rd Earl of Durham and last: Wikipedia:Articles for deletion/WikiProject Chinese characters -[2018-02-13T00:24:11.519] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Earth Angel/archive1 and last: Oetenbachgasse -[2018-02-13T00:24:11.535] [INFO] cheese - inserting 1000 documents. first: Shonan Beach FM and last: Ralph J Gleason -[2018-02-13T00:24:11.540] [INFO] cheese - inserting 1000 documents. first: Edward Garvey and last: Niels Dorph -[2018-02-13T00:24:11.557] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:24:11.581] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:24:11.582] [INFO] cheese - inserting 1000 documents. first: Ultras (comics) and last: Category:Russian Civil War films -[2018-02-13T00:24:11.579] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:11.600] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:24:11.656] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:24:11.773] [INFO] cheese - inserting 1000 documents. first: File:Human GALE bound to NADH and UDP-glucose.png and last: Wikipedia:WikiProject Spam/LinkReports/ankaraticaret.org -[2018-02-13T00:24:11.845] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:24:11.909] [INFO] cheese - inserting 1000 documents. first: Yano (disambiguation) and last: Kolonia Kąty -[2018-02-13T00:24:11.941] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:24:11.992] [INFO] cheese - inserting 1000 documents. first: Gandhian socialism and last: Category:B-Class Finland articles -[2018-02-13T00:24:11.994] [INFO] cheese - inserting 1000 documents. first: Daihatsu New Line and last: Gyan Vihar University -[2018-02-13T00:24:11.999] [INFO] cheese - inserting 1000 documents. first: Calcium-binding glycoprotein and last: Wikipedia:WikiProject Indian Premier League/Article alerts -[2018-02-13T00:24:12.041] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:24:12.055] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:12.054] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:12.081] [INFO] cheese - inserting 1000 documents. first: Showing to the moon and last: Flip Saunders -[2018-02-13T00:24:12.094] [INFO] cheese - inserting 1000 documents. first: Johnny Unitas and last: Kesgrave -[2018-02-13T00:24:12.135] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:24:12.225] [INFO] cheese - inserting 1000 documents. first: 2011–12 South Pacific cyclone season and last: 2002 Croatian Figure Skating Championships -[2018-02-13T00:24:12.270] [INFO] cheese - batch complete in: 2.501 secs -[2018-02-13T00:24:12.282] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:24:12.330] [INFO] cheese - inserting 1000 documents. first: Hugo Zoeller and last: Template:Puchov District -[2018-02-13T00:24:12.332] [INFO] cheese - inserting 1000 documents. first: Vn and last: Frits Pirard -[2018-02-13T00:24:12.364] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:24:12.370] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:24:12.441] [INFO] cheese - inserting 1000 documents. first: Timoleague and Courtmacsherry Extension Light Railway and last: Category:Schools in Addis Ababa -[2018-02-13T00:24:12.504] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:24:12.612] [INFO] cheese - inserting 1000 documents. first: Baron von Tauchnitz Bernard and last: Sylvia McNair -[2018-02-13T00:24:12.631] [INFO] cheese - inserting 1000 documents. first: Slovene intimism and last: St John the Baptist Church -[2018-02-13T00:24:12.682] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:12.704] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:24:12.715] [INFO] cheese - inserting 1000 documents. first: Murray Avenue and last: Turritella cornea -[2018-02-13T00:24:12.782] [INFO] cheese - inserting 1000 documents. first: March 1 movement and last: Ghost in the Shell: Stand Alone Complex O.S.T 2 -[2018-02-13T00:24:12.802] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:24:12.811] [INFO] cheese - inserting 1000 documents. first: File:World-Middle-Powers.svg and last: Wikipedia:Articles for deletion/Glastonbury Festival (R.E.M.) -[2018-02-13T00:24:12.850] [INFO] cheese - inserting 1000 documents. first: 2015 Belgium national football team results and last: Doryrhamphus japonicus -[2018-02-13T00:24:12.850] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:12.905] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:24:12.913] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:24:13.195] [INFO] cheese - inserting 1000 documents. first: File:Chhota Chetan.jpg and last: Category:Unknown-importance Washington University in St. Louis articles -[2018-02-13T00:24:13.268] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:24:13.281] [INFO] cheese - inserting 1000 documents. first: Charbonnières Arrondissement and last: Mont Organise -[2018-02-13T00:24:13.282] [INFO] cheese - inserting 1000 documents. first: The Lady Vanished and last: Veliko Trnjane -[2018-02-13T00:24:13.293] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Biology and last: Interstate 39 in Illinois -[2018-02-13T00:24:13.331] [INFO] cheese - inserting 1000 documents. first: Mieczyslaw Horzowski and last: Broken plural -[2018-02-13T00:24:13.347] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:13.356] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:13.363] [INFO] cheese - inserting 1000 documents. first: Honshu pipefish and last: Category:Bonnier family -[2018-02-13T00:24:13.336] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:24:13.408] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:13.428] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:24:13.631] [INFO] cheese - inserting 1000 documents. first: John Taylor (Geordy songwriter) and last: Hart Council -[2018-02-13T00:24:13.679] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:24:13.749] [INFO] cheese - inserting 1000 documents. first: Three-ring circus and last: File:Dario-11.gif -[2018-02-13T00:24:13.752] [INFO] cheese - inserting 1000 documents. first: Vilje Kolo and last: NBA Nation (tour) -[2018-02-13T00:24:13.753] [INFO] cheese - inserting 1000 documents. first: Joachim Ekanga-Ehawa and last: The Lovely Eggs -[2018-02-13T00:24:13.792] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:13.798] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:24:13.800] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:13.810] [INFO] cheese - inserting 1000 documents. first: Aimoin of Fleury and last: Candace Jordan -[2018-02-13T00:24:13.875] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:13.956] [INFO] cheese - inserting 1000 documents. first: Mike Modest and last: Hurricane Orlene -[2018-02-13T00:24:14.023] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:24:14.120] [INFO] cheese - inserting 1000 documents. first: Trance house and last: Category:Rapid City Rush -[2018-02-13T00:24:14.169] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:24:14.179] [INFO] cheese - inserting 1000 documents. first: Sarah Devens and last: Teacher of Latin America -[2018-02-13T00:24:14.254] [INFO] cheese - inserting 1000 documents. first: Black/Matrix (video game series) and last: Why Shoot a Butler -[2018-02-13T00:24:14.291] [INFO] cheese - inserting 1000 documents. first: Gallup survey and last: Michael Scott (Artistic Director) -[2018-02-13T00:24:14.321] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:24:14.384] [INFO] cheese - inserting 1000 documents. first: Category:Musicals based on poems and last: Newmarket West Train Station -[2018-02-13T00:24:14.392] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:24:14.418] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:24:14.520] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:24:14.633] [INFO] cheese - inserting 1000 documents. first: Kurt Waldheim and last: Laurence of Canterbury -[2018-02-13T00:24:14.692] [INFO] cheese - inserting 1000 documents. first: File:Curtiss King PaidDues12.jpg and last: Pozega Valley -[2018-02-13T00:24:14.737] [INFO] cheese - inserting 1000 documents. first: File:The pillows - KOOL SPICE.jpg and last: Moroccan Quarter -[2018-02-13T00:24:14.779] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:24:14.835] [INFO] cheese - batch complete in: 2.565 secs -[2018-02-13T00:24:14.889] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:24:14.991] [INFO] cheese - inserting 1000 documents. first: Dirty Money (duo) and last: Category:Politics of Austria-Hungary -[2018-02-13T00:24:15.023] [INFO] cheese - inserting 1000 documents. first: The Unfinished Clue and last: Template:2015 County Hurling Championships -[2018-02-13T00:24:15.035] [INFO] cheese - inserting 1000 documents. first: Robert German and last: Trilingualism -[2018-02-13T00:24:15.048] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:24:15.124] [INFO] cheese - inserting 1000 documents. first: Portal:Surrey/Selected picture/3 and last: 1984–85 Huddersfield Town A.F.C. season -[2018-02-13T00:24:15.123] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:15.154] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:24:15.229] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:24:15.442] [INFO] cheese - inserting 1000 documents. first: Borts and last: Category:Polish civil aircraft 2010–2019 -[2018-02-13T00:24:15.477] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:24:15.639] [INFO] cheese - inserting 1000 documents. first: Bluecher and last: Vsevolod I -[2018-02-13T00:24:15.666] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Eleanor Robinson and last: Doliops gertrudis -[2018-02-13T00:24:15.678] [INFO] cheese - inserting 1000 documents. first: Japanese Regional Leagues 1985 and last: Mikael Blomkvist -[2018-02-13T00:24:15.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mokhless Al-Hariri and last: Template:2007-08 NBA Atlantic standings -[2018-02-13T00:24:15.696] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:24:15.724] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:24:15.753] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:15.755] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:24:15.784] [INFO] cheese - inserting 1000 documents. first: File:Eli's Cheesecake Logo.jpg and last: Kafsh Mahalleh -[2018-02-13T00:24:15.826] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:24:15.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Doctor's Advocate (song) and last: Template:Euro topics -[2018-02-13T00:24:15.931] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:24:16.126] [INFO] cheese - inserting 1000 documents. first: Draft:William Richardson Belknap and last: Amnokkang Sports Club -[2018-02-13T00:24:16.150] [INFO] cheese - inserting 1000 documents. first: Template:2007-08 NBA Central Division Standings and last: MI 17 -[2018-02-13T00:24:16.156] [INFO] cheese - inserting 1000 documents. first: The Zillo Beast Strikes Back and last: Tom Knoakes -[2018-02-13T00:24:16.180] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:16.208] [INFO] cheese - inserting 1000 documents. first: File:David Schwimmer as Ross Geller.jpg and last: File:SC Vila Rea.png -[2018-02-13T00:24:16.233] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:24:16.245] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:24:16.306] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:24:16.362] [INFO] cheese - inserting 1000 documents. first: Gilad Anni-Padda and last: Billy Payne -[2018-02-13T00:24:16.425] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:24:16.466] [INFO] cheese - inserting 1000 documents. first: 2007 Notre Dame Fighting Irish football team and last: Communal forests of India -[2018-02-13T00:24:16.522] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:24:16.624] [INFO] cheese - inserting 1000 documents. first: Tracy Ryan (actress) and last: Anonychomyrma extensa -[2018-02-13T00:24:16.645] [INFO] cheese - inserting 1000 documents. first: Category:Road transport in South Africa and last: Mongolia - Education System -[2018-02-13T00:24:16.663] [INFO] cheese - inserting 1000 documents. first: Dig-Dig-Joy and last: Gus-Khrustal'nyi District -[2018-02-13T00:24:16.670] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:24:16.692] [INFO] cheese - inserting 1000 documents. first: Chillion L. Miller and last: David Jacobus Bosch -[2018-02-13T00:24:16.703] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:16.719] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:24:16.799] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:24:17.005] [INFO] cheese - inserting 1000 documents. first: File:A Plan of Alexandria now Belhaven.jpg and last: Piqua High School -[2018-02-13T00:24:17.072] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:24:17.075] [INFO] cheese - inserting 1000 documents. first: Gus-Khrustal'niy District and last: File:KuK Maria Theresa, 1895.png -[2018-02-13T00:24:17.079] [INFO] cheese - inserting 1000 documents. first: Mozzarella sticks and last: Soledad Alvear Valenzuela -[2018-02-13T00:24:17.156] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:17.217] [INFO] cheese - inserting 1000 documents. first: Kitzbühele EC and last: Category:Holston River -[2018-02-13T00:24:17.222] [INFO] cheese - inserting 1000 documents. first: Assault & battery and last: Arpeggiated -[2018-02-13T00:24:17.222] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:24:17.271] [INFO] cheese - inserting 1000 documents. first: May 2010 Thai military crackdown and last: Svetlana Vukajlovic -[2018-02-13T00:24:17.312] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:24:17.325] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:24:17.351] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:24:17.469] [INFO] cheese - inserting 1000 documents. first: La Banda Sinaloense and last: Mehmed III -[2018-02-13T00:24:17.560] [INFO] cheese - inserting 1000 documents. first: Portal:Indigenous peoples of North America/Selected article/February and last: Mark McCormack's world golf rankings -[2018-02-13T00:24:17.580] [INFO] cheese - batch complete in: 2.745 secs -[2018-02-13T00:24:17.615] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:24:17.637] [INFO] cheese - inserting 1000 documents. first: Tanit d'or and last: Persistent fault -[2018-02-13T00:24:17.652] [INFO] cheese - inserting 1000 documents. first: Pura Luhur Batukaru and last: OS 11 -[2018-02-13T00:24:17.708] [INFO] cheese - inserting 1000 documents. first: Hold Back the River and last: Doma clasica -[2018-02-13T00:24:17.728] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:17.739] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Zhelyakov and last: The Big Idea (U.S. TV series) -[2018-02-13T00:24:17.743] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:24:17.765] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:17.815] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:24:17.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Israel Palestine Collaboration/Links to reliable sources discussions and last: Harada Station -[2018-02-13T00:24:17.937] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:24:18.100] [INFO] cheese - inserting 1000 documents. first: Bård Lappegård Lahn and last: Umago -[2018-02-13T00:24:18.118] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RapidKL LRT right/KL Monorail and last: Category:Marussia Formula One drivers -[2018-02-13T00:24:18.157] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:24:18.157] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:18.241] [INFO] cheese - inserting 1000 documents. first: Minister for Women and Equality and last: Category:Populated coastal places in Belgium -[2018-02-13T00:24:18.243] [INFO] cheese - inserting 1000 documents. first: Garrison schools and last: Compulsory education -[2018-02-13T00:24:18.309] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:24:18.312] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:24:18.335] [INFO] cheese - inserting 1000 documents. first: Hoplocorypha acuta and last: Uyghur peoples -[2018-02-13T00:24:18.377] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:24:18.424] [INFO] cheese - inserting 1000 documents. first: Portuguese School of Equestrian Art and last: Time-keeper -[2018-02-13T00:24:18.470] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:18.513] [INFO] cheese - inserting 1000 documents. first: Host–pathogen interaction and last: Vyaznikovskii -[2018-02-13T00:24:18.557] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:24:18.667] [INFO] cheese - inserting 1000 documents. first: Cleeve Hurdle and last: Gilstead -[2018-02-13T00:24:18.677] [INFO] cheese - inserting 1000 documents. first: The Definitive Collection (Level 42) and last: 七 -[2018-02-13T00:24:18.697] [INFO] cheese - inserting 1000 documents. first: File:ImaginationCover.jpg and last: François Eugène Vidocq -[2018-02-13T00:24:18.713] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:24:18.719] [INFO] cheese - inserting 1000 documents. first: Category:Populated coastal places in Belize and last: Taylorcraft BF -[2018-02-13T00:24:18.733] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:24:18.768] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:18.797] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:24:18.907] [INFO] cheese - inserting 1000 documents. first: Viaznikovsky and last: Template:Did you know nominations/Hessentag -[2018-02-13T00:24:18.909] [INFO] cheese - inserting 1000 documents. first: Turris clionellaeformis and last: Hallelujah for the Cross -[2018-02-13T00:24:18.988] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:18.981] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:19.210] [INFO] cheese - inserting 1000 documents. first: Anatol E. Baconschi and last: Midway Mills, Virginia -[2018-02-13T00:24:19.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2007 February 17 and last: Leonid Shvartzman -[2018-02-13T00:24:19.260] [INFO] cheese - inserting 1000 documents. first: Bretenanwealda and last: Category:2007 Pan Arab Games -[2018-02-13T00:24:19.273] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:24:19.332] [INFO] cheese - inserting 1000 documents. first: Analytic element method and last: KDE Dot News -[2018-02-13T00:24:19.332] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:19.343] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:24:19.367] [INFO] cheese - inserting 1000 documents. first: Category:Blinn Buccaneers football and last: Euryphene laetitioides -[2018-02-13T00:24:19.383] [INFO] cheese - inserting 1000 documents. first: Le Grand, Alabama and last: Lamprosema camphorae -[2018-02-13T00:24:19.414] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:24:19.437] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:19.470] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:24:19.648] [INFO] cheese - inserting 1000 documents. first: Jeff Clarke (disambiguation) and last: File:Closeup of pavement with grass.JPG -[2018-02-13T00:24:19.696] [INFO] cheese - inserting 1000 documents. first: Mustafa I and last: List of national anthems -[2018-02-13T00:24:19.697] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:19.725] [INFO] cheese - inserting 1000 documents. first: Swiftboat campaign and last: Category:Maritime incidents in 1981 -[2018-02-13T00:24:19.766] [INFO] cheese - inserting 1000 documents. first: Chūma and last: Hayataella -[2018-02-13T00:24:19.778] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:24:19.793] [INFO] cheese - inserting 1000 documents. first: O Fado da Procura and last: File:Safe Auto logo (low res).jpg -[2018-02-13T00:24:19.809] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:24:19.847] [INFO] cheese - batch complete in: 2.266 secs -[2018-02-13T00:24:19.861] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:19.898] [INFO] cheese - inserting 1000 documents. first: Category:Important Bird Areas of Iceland and last: Lycée Français de Toronto -[2018-02-13T00:24:19.909] [INFO] cheese - inserting 1000 documents. first: Densha Otoko and last: Donald Arseneault -[2018-02-13T00:24:19.940] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:24:20.004] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:24:20.078] [INFO] cheese - inserting 1000 documents. first: Phellinus igniarius and last: Masonic Widows and Orphans Home -[2018-02-13T00:24:20.126] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:20.148] [INFO] cheese - inserting 1000 documents. first: Category:Girls' schools in Louisiana and last: Kasabad -[2018-02-13T00:24:20.198] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:24:20.211] [INFO] cheese - inserting 1000 documents. first: File:Kaathodu Kaathoram.jpg and last: Grappling Hook (video game) -[2018-02-13T00:24:20.271] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:24:20.274] [INFO] cheese - inserting 1000 documents. first: Tacpac and last: Westkapelle-Binnen -[2018-02-13T00:24:20.331] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:20.433] [INFO] cheese - inserting 1000 documents. first: Brzozowiec and last: Godziszów, Lublin Voivodeship -[2018-02-13T00:24:20.443] [INFO] cheese - inserting 1000 documents. first: Lycee Francais Toronto and last: Forelius pruinosus -[2018-02-13T00:24:20.470] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:24:20.503] [INFO] cheese - inserting 1000 documents. first: Pedro Vicente Maldonado Canton and last: List of islands of the Northeast United States -[2018-02-13T00:24:20.503] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:24:20.525] [INFO] cheese - inserting 1000 documents. first: Kasabad-e Pa'in and last: Carabus stscheglowi -[2018-02-13T00:24:20.560] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:24:20.565] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:24:20.668] [INFO] cheese - inserting 1000 documents. first: Anterior tibial vessels and last: Badgerland -[2018-02-13T00:24:20.707] [INFO] cheese - inserting 1000 documents. first: David Branch (fighter) and last: Turó del Samont -[2018-02-13T00:24:20.712] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:24:20.751] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:24:20.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Toymaster and last: Viardo -[2018-02-13T00:24:20.900] [INFO] cheese - inserting 1000 documents. first: High criticism and last: File:CEOSL logo.png -[2018-02-13T00:24:20.932] [INFO] cheese - inserting 1000 documents. first: Cicindela pulchra and last: Social messaging applications -[2018-02-13T00:24:20.931] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:24:20.945] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:24:20.982] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:24:21.108] [INFO] cheese - inserting 1000 documents. first: Dark-frame subtraction and last: File:Wrights Cold Tar Soap Logo.png -[2018-02-13T00:24:21.123] [INFO] cheese - inserting 1000 documents. first: Puig Neulós and last: Wikipedia:WikiProject Spam/LinkReports/paginasweb.com.pe -[2018-02-13T00:24:21.141] [INFO] cheese - inserting 1000 documents. first: Side collision and last: Category:Mind Funk albums -[2018-02-13T00:24:21.150] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:24:21.173] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:21.237] [INFO] cheese - inserting 1000 documents. first: Virapoullé and last: Lords of Galloway -[2018-02-13T00:24:21.241] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:24:21.314] [INFO] cheese - inserting 1000 documents. first: Ahi'ezer and last: Andreas Høy -[2018-02-13T00:24:21.312] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:24:21.366] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:24:21.487] [INFO] cheese - inserting 1000 documents. first: Chat applications and last: Palpita crococosta -[2018-02-13T00:24:21.501] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/karendejo.com and last: ISO 639:bzt -[2018-02-13T00:24:21.553] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:24:21.582] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:24:21.715] [INFO] cheese - inserting 1000 documents. first: Red River Valley (album) and last: USS Gambier Bay (AVG-73) -[2018-02-13T00:24:21.777] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:24:21.829] [INFO] cheese - inserting 1000 documents. first: Living Environs and last: Polish-Swedish War of 1620-1622 -[2018-02-13T00:24:21.857] [INFO] cheese - inserting 1000 documents. first: Category:1963 Canadian television series debuts and last: Category:Rimouski -[2018-02-13T00:24:21.884] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:24:21.917] [INFO] cheese - inserting 1000 documents. first: Cruella DeVil and last: Colonial Heads of Cape Verde -[2018-02-13T00:24:21.916] [INFO] cheese - inserting 1000 documents. first: Nikola Tesla and last: Postmaster General -[2018-02-13T00:24:21.941] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:24:21.978] [INFO] cheese - inserting 1000 documents. first: ISO 639:bzu and last: ISO 639:kng -[2018-02-13T00:24:22.052] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:22.056] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:24:22.072] [INFO] cheese - batch complete in: 2.225 secs -[2018-02-13T00:24:22.086] [INFO] cheese - inserting 1000 documents. first: Palpita eupilosalis and last: Category:Ballets to the music of Henry Purcell -[2018-02-13T00:24:22.198] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:24:22.383] [INFO] cheese - inserting 1000 documents. first: USS Gambier Bay (ACV-73) and last: USS Key West (PG-125) -[2018-02-13T00:24:22.399] [INFO] cheese - inserting 1000 documents. first: Template:Pilipinas Got Talent and last: Wikipedia:WikiProject Spam/LinkReports/cctvpuertorico.com -[2018-02-13T00:24:22.435] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:24:22.462] [INFO] cheese - inserting 1000 documents. first: Category:Symbols of Connecticut and last: Wikipedia:Articles for deletion/The Old-Time Gospel Hour -[2018-02-13T00:24:22.474] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:24:22.542] [INFO] cheese - inserting 1000 documents. first: Central do Brasil (film) and last: File:The Collegiate at The University of Winnipeg.jpg -[2018-02-13T00:24:22.559] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:24:22.632] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:24:22.734] [INFO] cheese - inserting 1000 documents. first: 1845 in Chile and last: Category:Wayne State Wildcats -[2018-02-13T00:24:22.780] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:24:22.786] [INFO] cheese - inserting 1000 documents. first: Heads of Government of Cape Verde and last: Wikipedia:Featured article candidates/Bettie Page/archive1 -[2018-02-13T00:24:22.842] [INFO] cheese - inserting 1000 documents. first: ISO 639:noo and last: Čičke -[2018-02-13T00:24:22.863] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:24:22.890] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:24:22.900] [INFO] cheese - inserting 1000 documents. first: A Cappella Records, Inc. and last: Category:Iraqi people of American descent -[2018-02-13T00:24:22.940] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:24:23.003] [INFO] cheese - inserting 1000 documents. first: Solina and last: CASCADE(Japanese Band) -[2018-02-13T00:24:23.023] [INFO] cheese - inserting 1000 documents. first: File:PCRpublication.png and last: Kure-Portpier Station -[2018-02-13T00:24:23.052] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:24:23.064] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:24:23.131] [INFO] cheese - inserting 1000 documents. first: Category:Winona State Warriors and last: Category:Swedish Pentecostal Movement -[2018-02-13T00:24:23.188] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:24:23.273] [INFO] cheese - inserting 1000 documents. first: ISO 639:trw and last: Hereford Railway -[2018-02-13T00:24:23.326] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:23.399] [INFO] cheese - inserting 1000 documents. first: George Thorne (disambiguation) and last: File:HTV-3 patch.png -[2018-02-13T00:24:23.407] [INFO] cheese - inserting 1000 documents. first: Vizcacha and last: Ronald Broadhurst -[2018-02-13T00:24:23.423] [INFO] cheese - inserting 1000 documents. first: Calgary Highlanders and last: Summer's Lease -[2018-02-13T00:24:23.457] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:24:23.469] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:24:23.475] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:24:23.511] [INFO] cheese - inserting 1000 documents. first: Khassimirou Diop and last: Uniroyal Fun Cup -[2018-02-13T00:24:23.568] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:24:23.597] [INFO] cheese - inserting 1000 documents. first: Category:Rural councils of Lviv Oblast and last: The Portrait of Mr. W.H. -[2018-02-13T00:24:23.643] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:23.733] [INFO] cheese - inserting 1000 documents. first: List of National Taiwan University people and last: Wikipedia:Reference desk/Archives/Humanities/2010 May 21 -[2018-02-13T00:24:23.789] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:24:23.863] [INFO] cheese - inserting 1000 documents. first: Spinning wheel (animation) and last: File:Limocar logo.png -[2018-02-13T00:24:23.896] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:24:23.902] [INFO] cheese - inserting 1000 documents. first: The Lords of the Nine and last: Peter Malm -[2018-02-13T00:24:23.919] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Ming–Hồ War and last: Category:Nayarit articles missing geocoordinate data -[2018-02-13T00:24:23.972] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:24:23.991] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:24:24.003] [INFO] cheese - inserting 1000 documents. first: Jamestown Red Sox and last: Category:Racehorse owners and breeders -[2018-02-13T00:24:24.049] [INFO] cheese - inserting 1000 documents. first: Financial services company and last: Daniel O'Keeffe (commissioner) -[2018-02-13T00:24:24.067] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:24.083] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:24.135] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:No personal attacks and last: Weightlifting at the 2008 Summer Olympics – Women's 58 kg -[2018-02-13T00:24:24.173] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:24:24.176] [INFO] cheese - inserting 1000 documents. first: LIU Blackbirds men's basketball and last: Category:Associazione Calcio Bellaria Igea Marina SRL -[2018-02-13T00:24:24.181] [INFO] cheese - inserting 1000 documents. first: Paul Cohen and last: Pope Valentine -[2018-02-13T00:24:24.242] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:24:24.323] [INFO] cheese - batch complete in: 2.25 secs -[2018-02-13T00:24:24.331] [INFO] cheese - inserting 1000 documents. first: Template:Rugby union in Sweden and last: Portal:Indonesia/Featured picture/7 -[2018-02-13T00:24:24.361] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:24:24.438] [INFO] cheese - inserting 1000 documents. first: O'Connor Island and last: File:Teenage Mutant Ninja Turtles II (1991 film) poster.jpg -[2018-02-13T00:24:24.478] [INFO] cheese - inserting 1000 documents. first: Wyoming (1940 film) and last: File:B5album1.jpg -[2018-02-13T00:24:24.474] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:24:24.495] [INFO] cheese - inserting 1000 documents. first: Adhesive Comics and last: M. Thomson -[2018-02-13T00:24:24.543] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:24:24.551] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:24:24.648] [INFO] cheese - inserting 1000 documents. first: Hodam, West Virginia and last: Adhar Kayvan -[2018-02-13T00:24:24.679] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:24:24.749] [INFO] cheese - inserting 1000 documents. first: Category:Upper West Side and last: Category:Cities and towns in Nalgonda district -[2018-02-13T00:24:24.751] [INFO] cheese - inserting 1000 documents. first: Ronnie Barrett and last: 12 hour gap -[2018-02-13T00:24:24.787] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:24:24.837] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:24:24.873] [INFO] cheese - inserting 1000 documents. first: Zed Group and last: Miles Justice Knowlton -[2018-02-13T00:24:24.885] [INFO] cheese - inserting 1000 documents. first: Oregon, Kentucky and last: Category:Potez aircraft engines -[2018-02-13T00:24:24.905] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:24:24.915] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:24:25.005] [INFO] cheese - inserting 1000 documents. first: Gammer Gurton's Garland and last: Line 7, Suzhou Rail Transit -[2018-02-13T00:24:25.054] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:24:25.084] [INFO] cheese - inserting 1000 documents. first: Land of Broken Hearts and last: Paulus de Santa Maria -[2018-02-13T00:24:25.136] [INFO] cheese - inserting 1000 documents. first: Robertson v. United States ex rel. Watson and last: The Bread -[2018-02-13T00:24:25.150] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:24:25.186] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:25.250] [INFO] cheese - inserting 1000 documents. first: Jean Marcot and last: Chapar -[2018-02-13T00:24:25.286] [INFO] cheese - inserting 1000 documents. first: File:Logo of Orexigen Therapeutics.jpg and last: Pyralis flegialis -[2018-02-13T00:24:25.302] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:24:25.335] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:24:25.357] [INFO] cheese - inserting 1000 documents. first: Dydoe piercing and last: Tirfing (Fire Emblem) -[2018-02-13T00:24:25.420] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:24:25.461] [INFO] cheese - inserting 1000 documents. first: Overly Attached Girlfriend and last: Category:1920s in Algeria -[2018-02-13T00:24:25.498] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:24:25.515] [INFO] cheese - inserting 1000 documents. first: File:FredFrith AlbumCover MiddleMoment(1995).jpg and last: Wikipedia:Featured article candidates/C programming language -[2018-02-13T00:24:25.517] [INFO] cheese - inserting 1000 documents. first: Seine-et-Marne I (electoral constituency) and last: Majority representation system -[2018-02-13T00:24:25.555] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:24:25.556] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:24:25.682] [INFO] cheese - inserting 1000 documents. first: Zăvoi and last: Playin' with Fire -[2018-02-13T00:24:25.731] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:25.737] [INFO] cheese - inserting 1000 documents. first: Paradosis villosalis and last: Draft:Dodge & Twist -[2018-02-13T00:24:25.809] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:24:25.842] [INFO] cheese - inserting 1000 documents. first: Barbara Yung Mei Ling and last: UTC+03:00 -[2018-02-13T00:24:25.868] [INFO] cheese - inserting 1000 documents. first: Vicente Martínez (wrestler) and last: Category:Populated places in Azilal Province -[2018-02-13T00:24:25.902] [INFO] cheese - inserting 1000 documents. first: File:Murder in the Cathedral (movie poster).jpg and last: Wikipedia:Articles for deletion/Visual modularity -[2018-02-13T00:24:25.906] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:25.906] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:24:25.950] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:24:26.040] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lajme.gen.al and last: File:Labyrinth return to heaven denied.jpg -[2018-02-13T00:24:26.079] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:24:26.160] [INFO] cheese - inserting 1000 documents. first: Century Development Corporation and last: Fraktur (Pennsylvania German folk art) -[2018-02-13T00:24:26.215] [INFO] cheese - inserting 1000 documents. first: District Five Schoolhouse and last: Category:Stub-Class Indian cinema articles of Mid-importance -[2018-02-13T00:24:26.238] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:26.295] [INFO] cheese - inserting 1000 documents. first: 1908 Pattern Webbing and last: Category:Populated places in Cojedes (state) -[2018-02-13T00:24:26.293] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:24:26.348] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:26.361] [INFO] cheese - inserting 1000 documents. first: Mount Washington Railway and last: Olivio Premium Products -[2018-02-13T00:24:26.362] [INFO] cheese - inserting 1000 documents. first: Pope Victor I and last: Range voting -[2018-02-13T00:24:26.364] [INFO] cheese - inserting 1000 documents. first: List of compositions by Bohuslav Martinů and last: The Traitor (play) -[2018-02-13T00:24:26.409] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:26.418] [INFO] cheese - inserting 1000 documents. first: Bouc–Wen model of hysteresis and last: Random coefficient model -[2018-02-13T00:24:26.421] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:24:26.490] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:24:26.488] [INFO] cheese - batch complete in: 2.165 secs -[2018-02-13T00:24:26.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Hayley Williams and last: Adriankin -[2018-02-13T00:24:26.688] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:26.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Junior Juice and last: Convention on the Protection and Use of Transboundary Watercourses and International Lakes -[2018-02-13T00:24:26.778] [INFO] cheese - inserting 1000 documents. first: File:Vammalan Lentopallo (emblem).jpg and last: Marathon Lucerne -[2018-02-13T00:24:26.832] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:24:26.841] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:24:26.868] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2010 May 30 and last: File:Williamsoncorrigan12172.jpg -[2018-02-13T00:24:26.886] [INFO] cheese - inserting 1000 documents. first: File:Cape Ann.PNG and last: Ulmus glaucescens var. lasiocarpa -[2018-02-13T00:24:26.908] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:24:26.948] [INFO] cheese - inserting 1000 documents. first: Wallace Bennett and last: Category:Chess images -[2018-02-13T00:24:26.950] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:24:27.039] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:24:27.055] [INFO] cheese - inserting 1000 documents. first: Bad Parents and last: Landing Zone Brace -[2018-02-13T00:24:27.128] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:24:27.145] [INFO] cheese - inserting 1000 documents. first: Marathon luzern and last: St. George's Monastery (Wadi Qilt) -[2018-02-13T00:24:27.159] [INFO] cheese - inserting 1000 documents. first: Jukka-Pekka Tanner and last: The Double (film) -[2018-02-13T00:24:27.185] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:24:27.187] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:24:27.312] [INFO] cheese - inserting 1000 documents. first: 'Alenu prayer and last: Speckled Hen -[2018-02-13T00:24:27.331] [INFO] cheese - inserting 1000 documents. first: Chiappa Rhino and last: Redemption (disambiguation) -[2018-02-13T00:24:27.345] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:24:27.377] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:24:27.521] [INFO] cheese - inserting 1000 documents. first: Jehuda Löw ben Bezalel and last: Template:George Meredith -[2018-02-13T00:24:27.555] [INFO] cheese - inserting 1000 documents. first: File:Flare3D IDE 271.png and last: Drepung Loseling -[2018-02-13T00:24:27.559] [INFO] cheese - inserting 1000 documents. first: All the Kids Agree and last: Karaboya -[2018-02-13T00:24:27.571] [INFO] cheese - inserting 1000 documents. first: File:Pubertyblues.jpg and last: Bestbreeder from 1997 to 2000 -[2018-02-13T00:24:27.577] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:24:27.600] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:24:27.626] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:27.649] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:24:27.745] [INFO] cheese - inserting 1000 documents. first: Rhydfelin and last: Saint Leo the Great School (Pennsylvania) -[2018-02-13T00:24:27.793] [INFO] cheese - inserting 1000 documents. first: Memunneh and last: Berlin-Blankenheimer Eisenbahn -[2018-02-13T00:24:27.826] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:24:27.951] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:24:28.144] [INFO] cheese - inserting 1000 documents. first: Template:Story/doc and last: William Leddra -[2018-02-13T00:24:28.160] [INFO] cheese - inserting 1000 documents. first: Åryd, Karlshamn and last: Communications Security Establishment Canada -[2018-02-13T00:24:28.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Arbitration Committee/CheckUser and Oversight/2012 CUOS appointments/CU/DeltaQuad and last: Gatari Air Service -[2018-02-13T00:24:28.210] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:24:28.227] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:24:28.268] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:24:28.470] [INFO] cheese - inserting 1000 documents. first: Ricardo brown and last: Chain of Lakes Middle School -[2018-02-13T00:24:28.554] [INFO] cheese - inserting 1000 documents. first: Seed (video game) and last: Tommy Decker -[2018-02-13T00:24:28.562] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/'Sgudi 'Snaysi and last: 1st Foreign Parachute Heavy Mortar Company -[2018-02-13T00:24:28.598] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:24:28.684] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:24:28.686] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:24:28.741] [INFO] cheese - inserting 1000 documents. first: V-by-One HS and last: Valday (inhabited locality) -[2018-02-13T00:24:28.799] [INFO] cheese - inserting 1000 documents. first: Category:American distilled drinks and last: Athletics at the 2008 Summer Olympics – Women's long jump -[2018-02-13T00:24:28.800] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:24:28.827] [INFO] cheese - inserting 1000 documents. first: Wikipedia:The Wikipedia Library/Header and last: SMS Saida -[2018-02-13T00:24:28.861] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:24:28.869] [INFO] cheese - inserting 1000 documents. first: Robert A Heinlein and last: Economy of South Africa -[2018-02-13T00:24:28.883] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:24:28.986] [INFO] cheese - batch complete in: 2.497 secs -[2018-02-13T00:24:29.021] [INFO] cheese - inserting 1000 documents. first: Medial femoral circumflex artery and last: CKOB-AM 1400 -[2018-02-13T00:24:29.039] [INFO] cheese - inserting 1000 documents. first: Ornella Barra and last: Street Medicine -[2018-02-13T00:24:29.078] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:24:29.098] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:24:29.128] [INFO] cheese - inserting 1000 documents. first: Template:PoloAt1920SummerOlympics and last: File:D&DBoggle.JPG -[2018-02-13T00:24:29.172] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:24:29.184] [INFO] cheese - inserting 1000 documents. first: 1995 FINA World Swimming Championships (25 m) and last: Adessive form -[2018-02-13T00:24:29.222] [INFO] cheese - inserting 1000 documents. first: File:This is us.jpg and last: Leicester Hockey Club -[2018-02-13T00:24:29.257] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:24:29.265] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:24:29.466] [INFO] cheese - inserting 1000 documents. first: Jupa'in and last: Category:Bodies of water of Guinea -[2018-02-13T00:24:29.473] [INFO] cheese - inserting 1000 documents. first: Category:Biosphere reserves of Bolivia and last: Template:Cabañas Department -[2018-02-13T00:24:29.514] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:24:29.540] [INFO] cheese - inserting 1000 documents. first: Alexander Rozenbaum and last: Template:Uw-vandal4 -[2018-02-13T00:24:29.559] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:24:29.564] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pros and last: Conquest of California -[2018-02-13T00:24:29.605] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:24:29.645] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:29.712] [INFO] cheese - inserting 1000 documents. first: Raveena Ravi and last: South Russia -[2018-02-13T00:24:29.757] [INFO] cheese - inserting 1000 documents. first: Jessie M. Rattley and last: Baki Sahari -[2018-02-13T00:24:29.775] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:24:29.779] [INFO] cheese - inserting 1000 documents. first: Takab Rural District (Dargaz County) and last: Sir John Wedderburn, 5th Baronet of Blackness -[2018-02-13T00:24:29.807] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:24:29.832] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:24:29.870] [INFO] cheese - inserting 1000 documents. first: Humboldt Unified School District and last: Vikidia -[2018-02-13T00:24:29.907] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:24:30.017] [INFO] cheese - inserting 1000 documents. first: Template:GFDL/doc and last: Instructional Television Fixed Service -[2018-02-13T00:24:30.027] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/christian-louboutin-shoes.com and last: Tabunski -[2018-02-13T00:24:30.072] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:30.082] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:24:30.096] [INFO] cheese - inserting 1000 documents. first: 🇬🇸 and last: Grass It Up -[2018-02-13T00:24:30.176] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:24:30.190] [INFO] cheese - inserting 1000 documents. first: Crib note and last: Category:1904 in Pennsylvania -[2018-02-13T00:24:30.232] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:30.260] [INFO] cheese - inserting 1000 documents. first: Joseph Martin (Ipswich MP) and last: Thrasher (disambiguation) -[2018-02-13T00:24:30.296] [INFO] cheese - inserting 1000 documents. first: Bakı and last: Jonny Quest: The Real Adventures -[2018-02-13T00:24:30.302] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:24:30.350] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:30.499] [INFO] cheese - inserting 1000 documents. first: Gabriello Carotti and last: Spray Foam Insulation -[2018-02-13T00:24:30.504] [INFO] cheese - inserting 1000 documents. first: Aggregates, West Virginia and last: Rookery Nook (1953 film) -[2018-02-13T00:24:30.512] [INFO] cheese - inserting 1000 documents. first: Gurvan Saikhan Mountains and last: StyleFeeder -[2018-02-13T00:24:30.515] [INFO] cheese - inserting 1000 documents. first: Category:Football leagues in Kazakhstan and last: Cloverhill, New Jersey -[2018-02-13T00:24:30.542] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:24:30.565] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:30.575] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:24:30.573] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:24:30.687] [INFO] cheese - inserting 1000 documents. first: Adam & Yves and last: Kelley (disambiguation) -[2018-02-13T00:24:30.726] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:24:30.796] [INFO] cheese - inserting 1000 documents. first: File:Turok comic first issue logo.png and last: Kim Seon-young (judoka) -[2018-02-13T00:24:30.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Arsenal F.C./archive1 and last: Surveyor-General for Western Australia -[2018-02-13T00:24:30.819] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:24:30.864] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:24:30.953] [INFO] cheese - inserting 1000 documents. first: Category:1970s Hindi-language films and last: Lee Kohler -[2018-02-13T00:24:30.959] [INFO] cheese - inserting 1000 documents. first: Sercan Kaya and last: Outlaw (TV series) -[2018-02-13T00:24:30.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ignore all rules, except for consensus and last: Black-lored waxbill -[2018-02-13T00:24:30.997] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:31.001] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:24:31.011] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:31.069] [INFO] cheese - inserting 1000 documents. first: Telecommunications in South Africa and last: Silesian Voivodeship -[2018-02-13T00:24:31.093] [INFO] cheese - inserting 1000 documents. first: Kim Seon-Yeong and last: File:Scout Aword.png -[2018-02-13T00:24:31.099] [INFO] cheese - inserting 1000 documents. first: Kelli (disambiguation) and last: Mozart Clarinet Quintet -[2018-02-13T00:24:31.119] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:24:31.143] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:24:31.200] [INFO] cheese - batch complete in: 2.214 secs -[2018-02-13T00:24:31.235] [INFO] cheese - inserting 1000 documents. first: William Macomber and last: Czech Republic - Hungary relations -[2018-02-13T00:24:31.259] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:24:31.315] [INFO] cheese - inserting 1000 documents. first: Boldhome and last: Kings prerogative -[2018-02-13T00:24:31.368] [INFO] cheese - inserting 1000 documents. first: Category:Cuban books and last: Wikipedia:Version 1.0 Editorial Team/Book articles by quality/6 -[2018-02-13T00:24:31.383] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:24:31.408] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:24:31.426] [INFO] cheese - inserting 1000 documents. first: Brisbane Valley and last: Ethan Tate -[2018-02-13T00:24:31.429] [INFO] cheese - inserting 1000 documents. first: US Boxing and last: Wikipedia:Today's featured article/requests/Portrait of a Young Girl (Christus) -[2018-02-13T00:24:31.449] [INFO] cheese - inserting 1000 documents. first: Greece-Luxembourg relations and last: THE-QS World University Rankings, 2008 -[2018-02-13T00:24:31.470] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:24:31.473] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:24:31.534] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:24:31.574] [INFO] cheese - inserting 1000 documents. first: Atropos puniceus and last: Kondagsaz -[2018-02-13T00:24:31.630] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:24:31.698] [INFO] cheese - inserting 1000 documents. first: 2008-2009 Israel-Gaza War and last: 1979-80 NFL playoffs -[2018-02-13T00:24:31.715] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:24:31.809] [INFO] cheese - inserting 1000 documents. first: Lord Rector of Edinburgh University and last: Swaythling -[2018-02-13T00:24:31.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Book articles by quality/7 and last: Dick Gamble -[2018-02-13T00:24:31.860] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:31.868] [INFO] cheese - inserting 1000 documents. first: 2010 Tunis Open - Doubles and last: Swimming at the 2009 World Aquatics Championships - Women's 200 metre freestyle -[2018-02-13T00:24:31.898] [INFO] cheese - batch complete in: 0.182 secs -[2018-02-13T00:24:31.915] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:31.954] [INFO] cheese - inserting 1000 documents. first: Template:Party shading/None/block and last: Works of Henry Rollins -[2018-02-13T00:24:31.956] [INFO] cheese - inserting 1000 documents. first: Archery History and last: Yazoo Brewing Company -[2018-02-13T00:24:32.009] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:24:32.012] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:24:32.061] [INFO] cheese - inserting 1000 documents. first: European Cup Winners' Cup 1985-86 and last: List of minor planets: 106001-107000 -[2018-02-13T00:24:32.072] [INFO] cheese - inserting 1000 documents. first: Emerald Fire and last: Shagap’ -[2018-02-13T00:24:32.095] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:24:32.191] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:24:32.363] [INFO] cheese - inserting 1000 documents. first: 2009-10 Alabama-Huntsville Chargers ice hockey season and last: List of minor planets/3401-3500 -[2018-02-13T00:24:32.398] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:24:32.481] [INFO] cheese - inserting 1000 documents. first: Minority Report (movie) and last: Matilda dixon -[2018-02-13T00:24:32.517] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2015 February 25 and last: List of Living Legends Award winners -[2018-02-13T00:24:32.517] [INFO] cheese - inserting 1000 documents. first: The Sikh Missionary Society UK and last: Australian legislative election, 1996 -[2018-02-13T00:24:32.528] [INFO] cheese - inserting 1000 documents. first: Area Bishop of Northern Ontario Region and last: Board of Marshals -[2018-02-13T00:24:32.572] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:24:32.602] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:24:32.620] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:24:32.621] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:24:32.649] [INFO] cheese - inserting 1000 documents. first: Finland - South Korea relations and last: 1901-02 Scottish Cup -[2018-02-13T00:24:32.718] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:24:32.818] [INFO] cheese - inserting 1000 documents. first: Shagab and last: Gray Ghost (television) -[2018-02-13T00:24:32.877] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:24:32.938] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 48001-49000 and last: Primera División de México 1902-03 -[2018-02-13T00:24:32.959] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:24:32.990] [INFO] cheese - inserting 1000 documents. first: Subject bibliography and last: 1990 European Athletics Championships - Men's 20 km walk -[2018-02-13T00:24:33.023] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:24:33.063] [INFO] cheese - inserting 1000 documents. first: List of airports in the Philippines by total passenger traffic and last: File:Frolov-Sergei-Kuzmich-d25sw.jpg -[2018-02-13T00:24:33.104] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:33.108] [INFO] cheese - inserting 1000 documents. first: Crown in Saskatoon and last: Basutodon ferox -[2018-02-13T00:24:33.156] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:24:33.166] [INFO] cheese - inserting 1000 documents. first: Jigme Dorji Wangchuk and last: County executive -[2018-02-13T00:24:33.228] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:24:33.238] [INFO] cheese - inserting 1000 documents. first: Holy See - Lebanon relations and last: 2010 Honolulu Challenger - Doubles -[2018-02-13T00:24:33.270] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:24:33.327] [INFO] cheese - inserting 1000 documents. first: Har Kisi Ko and last: Template:2015 Super Rugby referees -[2018-02-13T00:24:33.333] [INFO] cheese - inserting 1000 documents. first: Imran Arif and last: Template:Romanian princesses -[2018-02-13T00:24:33.367] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:24:33.385] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:24:33.453] [INFO] cheese - inserting 1000 documents. first: 1971-72 in Swiss football and last: 2008-09 Rutgers Scarlet Knights men's basketball team -[2018-02-13T00:24:33.458] [INFO] cheese - inserting 1000 documents. first: Oaksey Halt railway station and last: List of Bunheads episodes -[2018-02-13T00:24:33.478] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:24:33.506] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:24:33.554] [INFO] cheese - inserting 1000 documents. first: SECD machine and last: 2001 Tour de France -[2018-02-13T00:24:33.660] [INFO] cheese - inserting 1000 documents. first: Yateley School and last: Wikipedia:Version 1.0 Editorial Team/Professional sound production articles by quality -[2018-02-13T00:24:33.703] [INFO] cheese - inserting 1000 documents. first: Grand Forks Public Schools and last: Red-tailed boa -[2018-02-13T00:24:33.705] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:24:33.720] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 8501-9000 and last: ISO 639:sjt -[2018-02-13T00:24:33.727] [INFO] cheese - batch complete in: 2.527 secs -[2018-02-13T00:24:33.767] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:24:33.782] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:33.951] [INFO] cheese - inserting 1000 documents. first: People's Party (Turkey) and last: Catephia albirena -[2018-02-13T00:24:34.019] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:24:34.083] [INFO] cheese - inserting 1000 documents. first: Tandzatap’ and last: Nerkin Kanlidzha -[2018-02-13T00:24:34.100] [INFO] cheese - inserting 1000 documents. first: Thanksgiving (The Middle) and last: Category:Presidents of NBC News -[2018-02-13T00:24:34.109] [INFO] cheese - inserting 1000 documents. first: East Bird's Head - Sentani languages and last: 1982-83 Quebec Nordiques season -[2018-02-13T00:24:34.134] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:24:34.150] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:24:34.192] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:24:34.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Professional sound production articles by quality log and last: New Zealand TR class locomotive -[2018-02-13T00:24:34.361] [INFO] cheese - inserting 1000 documents. first: Don Anderson and last: Stephan Cretier -[2018-02-13T00:24:34.361] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:24:34.405] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:24:34.467] [INFO] cheese - inserting 1000 documents. first: Eblen Center and last: Portal:Agriculture and agronomy/Things you can do -[2018-02-13T00:24:34.477] [INFO] cheese - inserting 1000 documents. first: 2005-06 Albanian Superliga and last: Category:San Francisco Art Institute faculty -[2018-02-13T00:24:34.528] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:24:34.556] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:24:34.646] [INFO] cheese - inserting 1000 documents. first: Tour Signal and last: Drumcree conflict -[2018-02-13T00:24:34.699] [INFO] cheese - inserting 1000 documents. first: Category:Japanese expatriates in England and last: Gryazinsky -[2018-02-13T00:24:34.727] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:24:34.777] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:24:34.864] [INFO] cheese - inserting 1000 documents. first: Category:Indian expatriate male actors in Pakistan and last: CAS-1 -[2018-02-13T00:24:34.876] [INFO] cheese - inserting 1000 documents. first: 1645 Poems and last: Low Fell -[2018-02-13T00:24:34.905] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:24:34.922] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:24:34.936] [INFO] cheese - inserting 1000 documents. first: File:Sandflora Baseball Park 2.jpg and last: Template:NS Intercity lines/branches -[2018-02-13T00:24:34.988] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:24:35.313] [INFO] cheese - inserting 1000 documents. first: Gryazinskiy and last: 2012 Team Saxo Bank season -[2018-02-13T00:24:35.446] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:24:35.453] [INFO] cheese - inserting 1000 documents. first: List of the Angry Video Game Nerd episodes and last: 1997-98 LFF Lyga -[2018-02-13T00:24:35.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Im in ur base and last: List of classic rock songs -[2018-02-13T00:24:35.514] [INFO] cheese - inserting 1000 documents. first: Austrian football championship 1921-22 and last: 1995-96 Danish 1st Division -[2018-02-13T00:24:35.628] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:24:35.598] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:24:35.715] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:24:35.759] [INFO] cheese - inserting 1000 documents. first: File:Try cover.png and last: Howgego -[2018-02-13T00:24:35.832] [INFO] cheese - inserting 1000 documents. first: Category:Police forces of the Crown dependencies and last: Template:Arrondissements of Allier -[2018-02-13T00:24:35.904] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:24:35.979] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T00:24:36.139] [INFO] cheese - inserting 1000 documents. first: 2001 Legg Mason Tennis Classic - Doubles and last: List of minor planets: 29001-30000 -[2018-02-13T00:24:36.196] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:24:36.343] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Globalization articles and last: Category:Bodies of water of Yukon -[2018-02-13T00:24:36.391] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:24:36.429] [INFO] cheese - inserting 1000 documents. first: 1955-56 in Swiss football and last: Category:1955 elections in Germany -[2018-02-13T00:24:36.443] [INFO] cheese - inserting 1000 documents. first: Brzozówka, Lublin Voivodeship and last: Opera Roanoke -[2018-02-13T00:24:36.446] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:24:36.482] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:24:36.503] [INFO] cheese - inserting 1000 documents. first: Portal:Kurdistan/Selected biography/6 and last: Template:Chiapas F.C. managers -[2018-02-13T00:24:36.544] [INFO] cheese - inserting 1000 documents. first: La Torre di Pisa and last: D. C. Wimberly -[2018-02-13T00:24:36.545] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:24:36.553] [INFO] cheese - inserting 1000 documents. first: Armor Ambush and last: Fuzhou dialect -[2018-02-13T00:24:36.600] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:24:36.614] [INFO] cheese - inserting 1000 documents. first: 1977-78 La Liga and last: Conmacne mara -[2018-02-13T00:24:36.627] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:24:36.641] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:24:36.678] [INFO] cheese - inserting 1000 documents. first: Bazu Band and last: We Created A Monster -[2018-02-13T00:24:36.715] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:24:36.721] [INFO] cheese - inserting 1000 documents. first: Alhambra and last: Ulster -[2018-02-13T00:24:36.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battle of Trenton/archive1 and last: Primera División Verano 2000 -[2018-02-13T00:24:36.775] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:24:36.804] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 198001-199000 and last: Too Much, Too Little, Too Late EP -[2018-02-13T00:24:36.845] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:24:36.870] [INFO] cheese - batch complete in: 3.143 secs -[2018-02-13T00:24:36.937] [INFO] cheese - inserting 1000 documents. first: Category:Journalists from Kentucky and last: File:Oleksandr Muzychko.jpg -[2018-02-13T00:24:37.013] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:24:37.136] [INFO] cheese - inserting 1000 documents. first: Routes (visual novel) and last: Wikipedia:Peer review/Battlefield 2142/archive1 -[2018-02-13T00:24:37.152] [INFO] cheese - inserting 1000 documents. first: File:Shirley's Sounds.jpg and last: Neapolis University Paphos -[2018-02-13T00:24:37.166] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2005 World Aquatics Championships - Men's 50 metre freestyle and last: 2010 Hypo-Meeting -[2018-02-13T00:24:37.206] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:24:37.213] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:37.216] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:24:37.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Temps and last: Philopatyr Mercurius -[2018-02-13T00:24:37.265] [INFO] cheese - inserting 1000 documents. first: 511 in poetry and last: Wikipedia:WikiProject Disambiguation/Disambiguation pages with hatnotes -[2018-02-13T00:24:37.320] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:24:37.320] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:24:37.422] [INFO] cheese - inserting 1000 documents. first: Ronald Truhbuhovich and last: Category:Tunisian expatriates in Sudan -[2018-02-13T00:24:37.462] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:24:37.568] [INFO] cheese - inserting 1000 documents. first: Troy-Waterford Bridge and last: Japanese civil war -[2018-02-13T00:24:37.589] [INFO] cheese - inserting 1000 documents. first: Laurel Fork and last: Derventio -[2018-02-13T00:24:37.629] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:24:37.638] [INFO] cheese - inserting 1000 documents. first: Sithon antimachus and last: Patan Ju -[2018-02-13T00:24:37.641] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:37.673] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:24:37.709] [INFO] cheese - inserting 1000 documents. first: Gliniski and last: File:Killing Time (Star Trek novel).jpg -[2018-02-13T00:24:37.741] [INFO] cheese - inserting 1000 documents. first: List of Bangladeshi films of 1994 and last: Template:U0400 -[2018-02-13T00:24:37.757] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:24:37.779] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:24:37.837] [INFO] cheese - inserting 1000 documents. first: HadSM3 and last: Tie-in novel -[2018-02-13T00:24:37.897] [INFO] cheese - inserting 1000 documents. first: Gonbatuk and last: Zatičina -[2018-02-13T00:24:37.899] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:24:37.927] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:24:37.975] [INFO] cheese - inserting 1000 documents. first: Category:Olympic silver medalists for the United Team of Germany and last: English cricket team in South Africa in 1964–65 -[2018-02-13T00:24:38.024] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:24:38.059] [INFO] cheese - inserting 1000 documents. first: File:Palimos03.jpg and last: Nx (digraph) -[2018-02-13T00:24:38.116] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:24:38.151] [INFO] cheese - inserting 1000 documents. first: Kamo no yasunori no jo and last: George Metzler -[2018-02-13T00:24:38.161] [INFO] cheese - inserting 1000 documents. first: Has Anyone Seen the Colonel and last: Category:1889 establishments in Dakota Territory -[2018-02-13T00:24:38.195] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:24:38.201] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:38.272] [INFO] cheese - inserting 1000 documents. first: Sophie Roberge and last: 2009 Chinese Artistic Gymnastics Championships -[2018-02-13T00:24:38.306] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:24:38.321] [INFO] cheese - inserting 1000 documents. first: Luigi Mazzella and last: Xiao Rang -[2018-02-13T00:24:38.377] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:38.484] [INFO] cheese - inserting 1000 documents. first: Laté 298 and last: Creative Arts Emmy Awards -[2018-02-13T00:24:38.525] [INFO] cheese - inserting 1000 documents. first: Pericine and last: Hydro-electric plant -[2018-02-13T00:24:38.534] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:24:38.575] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:24:38.640] [INFO] cheese - inserting 1000 documents. first: Ailey (crater) and last: Alugolla (7°9'N 80°31'E) -[2018-02-13T00:24:38.648] [INFO] cheese - inserting 1000 documents. first: Boardman Lake Trail and last: Wikipedia:WikiProject Spam/LinkReports/jahania.org -[2018-02-13T00:24:38.662] [INFO] cheese - inserting 1000 documents. first: Colors ~Melody and Harmony~ and last: Wilhelm Kempf -[2018-02-13T00:24:38.673] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:24:38.690] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:24:38.735] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:24:38.812] [INFO] cheese - inserting 1000 documents. first: Jujuy and last: Swift Boat Vets -[2018-02-13T00:24:38.860] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:38.897] [INFO] cheese - inserting 1000 documents. first: Astana, Kazakhstan and last: 2008–09 Ukrainian Premier League Reserves -[2018-02-13T00:24:38.968] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:24:38.992] [INFO] cheese - inserting 1000 documents. first: New College, Chennai and last: TV Animation Fullmetal Alchemist Original Soundtrack 1 -[2018-02-13T00:24:39.051] [INFO] cheese - inserting 1000 documents. first: Ambaliyadda (7°1'N 80°54'E) and last: Angela Moroşanu -[2018-02-13T00:24:39.063] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:24:39.133] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:24:39.223] [INFO] cheese - inserting 1000 documents. first: United States Internal Revenue Service and last: William the Conqueror -[2018-02-13T00:24:39.321] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/jahania.org and last: American Fantastic Tales -[2018-02-13T00:24:39.352] [INFO] cheese - inserting 1000 documents. first: Claude Conder and last: Apostol Arsache -[2018-02-13T00:24:39.383] [INFO] cheese - inserting 1000 documents. first: Portal:College football/Selected picture/2008 31 and last: Edward T. Welburn -[2018-02-13T00:24:39.402] [INFO] cheese - batch complete in: 2.531 secs -[2018-02-13T00:24:39.407] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:24:39.447] [INFO] cheese - inserting 1000 documents. first: High Spin and last: Treblinka (disambiguation) -[2018-02-13T00:24:39.446] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:24:39.474] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:24:39.522] [INFO] cheese - inserting 1000 documents. first: Bronchodilation and last: Ann Taylor Corporation -[2018-02-13T00:24:39.563] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:24:39.633] [INFO] cheese - inserting 1000 documents. first: Vinojinidis and last: Non Residential Indian -[2018-02-13T00:24:39.638] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:24:39.698] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:24:39.883] [INFO] cheese - inserting 1000 documents. first: Kergoat and last: Brachypodium salzmannii -[2018-02-13T00:24:39.932] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:24:39.973] [INFO] cheese - inserting 1000 documents. first: Rough green snake and last: Krągłe -[2018-02-13T00:24:40.023] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:24:40.027] [INFO] cheese - inserting 1000 documents. first: Gomoku Narabe and last: Extra-man offense -[2018-02-13T00:24:40.032] [INFO] cheese - inserting 1000 documents. first: The Party's Over (1956 song) and last: Peter Fröjdfeldt -[2018-02-13T00:24:40.084] [INFO] cheese - inserting 1000 documents. first: Union with God and last: St Catherine of Sweden -[2018-02-13T00:24:40.087] [INFO] cheese - inserting 1000 documents. first: USS John L. Clem and last: Template:Albany Great Danes football navbox -[2018-02-13T00:24:40.099] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:40.114] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:24:40.120] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:40.142] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:24:40.293] [INFO] cheese - inserting 1000 documents. first: Festuca salzmannii and last: Template:Roman Catholic Diocese of Houma–Thibodaux -[2018-02-13T00:24:40.342] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:24:40.457] [INFO] cheese - inserting 1000 documents. first: Krągłe, Podlaskie Voivodeship and last: Category:FL-Class Amiga articles of Top-importance -[2018-02-13T00:24:40.589] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:24:40.671] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Irish Republicanism and last: Omar Hijazi -[2018-02-13T00:24:40.712] [INFO] cheese - inserting 1000 documents. first: Thirty-eighth century BC and last: Spindasis kallimon -[2018-02-13T00:24:40.748] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:24:40.808] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:24:40.832] [INFO] cheese - inserting 1000 documents. first: File:Winterwomenreissue.jpg and last: File:Bioshock series.jpg -[2018-02-13T00:24:40.929] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:24:40.971] [INFO] cheese - inserting 1000 documents. first: James William Dunegan and last: Category:Discoveries by Joseph Jean Pierre Laurent -[2018-02-13T00:24:40.975] [INFO] cheese - inserting 1000 documents. first: Sennaar and last: Rhinobatos productus -[2018-02-13T00:24:41.024] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:24:41.051] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:24:41.233] [INFO] cheese - inserting 1000 documents. first: Mark Wotte and last: Lonely for the Last Time -[2018-02-13T00:24:41.245] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Amiga articles of High-importance and last: Reducation -[2018-02-13T00:24:41.269] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:41.277] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RE-Hesse left/50 and last: Jaroslav Erno Sedivy -[2018-02-13T00:24:41.302] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:24:41.317] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:24:41.338] [INFO] cheese - inserting 1000 documents. first: Wu Weizhong and last: Gora pri Pečah -[2018-02-13T00:24:41.390] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:41.454] [INFO] cheese - inserting 1000 documents. first: Boydsville, Kentucky and Tennessee and last: Thomas Pang Cheung-wai -[2018-02-13T00:24:41.494] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:24:41.515] [INFO] cheese - inserting 1000 documents. first: Primary Club and last: Bantock, Sir Granville Ransome -[2018-02-13T00:24:41.557] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:41.594] [INFO] cheese - inserting 1000 documents. first: Dr vino and last: Ability Photoalbum -[2018-02-13T00:24:41.625] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:24:41.693] [INFO] cheese - inserting 1000 documents. first: Khazar Beyg and last: Chayon-ryu -[2018-02-13T00:24:41.721] [INFO] cheese - inserting 1000 documents. first: Ethnic groups in Japan and last: Maarten van der Weijden -[2018-02-13T00:24:41.757] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:24:41.818] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:24:41.899] [INFO] cheese - inserting 1000 documents. first: Bute by-election, 1885 and last: Category:1940s disestablishments in Minnesota -[2018-02-13T00:24:41.899] [INFO] cheese - inserting 1000 documents. first: Madonna-whore complex and last: Advertising campaigns -[2018-02-13T00:24:41.941] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:24:41.949] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:24:41.982] [INFO] cheese - inserting 1000 documents. first: Eydhafushi and last: Patni -[2018-02-13T00:24:42.040] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:24:42.100] [INFO] cheese - inserting 1000 documents. first: Martin Harvey and last: Mollaret's meningitis -[2018-02-13T00:24:42.106] [INFO] cheese - inserting 1000 documents. first: Leon Smith and last: Al-Madina Souq -[2018-02-13T00:24:42.149] [INFO] cheese - inserting 1000 documents. first: William II of England and last: AD 23 -[2018-02-13T00:24:42.161] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:24:42.175] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:24:42.232] [INFO] cheese - inserting 1000 documents. first: Bronisław Szwarce and last: Category:1961 in television -[2018-02-13T00:24:42.310] [INFO] cheese - batch complete in: 2.907 secs -[2018-02-13T00:24:42.301] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:42.360] [INFO] cheese - inserting 1000 documents. first: Algebraic input method and last: Bearspring, Tennessee -[2018-02-13T00:24:42.459] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:24:42.593] [INFO] cheese - inserting 1000 documents. first: AK-105 and last: King's Mill Hospital -[2018-02-13T00:24:42.605] [INFO] cheese - inserting 1000 documents. first: Toby Love Reloaded and last: Kalinówka Królewska -[2018-02-13T00:24:42.672] [INFO] cheese - inserting 1000 documents. first: Category:Airliner accidents and incidents in Minnesota and last: School meals initiative for healthy children -[2018-02-13T00:24:42.699] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:24:42.731] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:24:42.762] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:24:42.836] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia books on systems and last: KBytes -[2018-02-13T00:24:42.930] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Internationalist Books and last: Mercer Middle School (Aldie, Virginia) -[2018-02-13T00:24:42.938] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:24:43.019] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:24:43.026] [INFO] cheese - inserting 1000 documents. first: Alan Tennie and last: SV Jenaer Glaswerk -[2018-02-13T00:24:43.072] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:43.245] [INFO] cheese - inserting 1000 documents. first: Kamionka, Mońki County and last: Zaraszów-Kolonia -[2018-02-13T00:24:43.277] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:24:43.285] [INFO] cheese - inserting 1000 documents. first: Majungaichthys and last: Hayden, Wheeler and Schwend -[2018-02-13T00:24:43.286] [INFO] cheese - inserting 1000 documents. first: Category:1915 in North America and last: Category:Death in West Virginia -[2018-02-13T00:24:43.320] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:24:43.324] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:24:43.345] [INFO] cheese - inserting 1000 documents. first: AD 24 and last: 1117 -[2018-02-13T00:24:43.394] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:24:43.419] [INFO] cheese - inserting 1000 documents. first: Tony Jordan and last: Doughoregan Manor -[2018-02-13T00:24:43.427] [INFO] cheese - inserting 1000 documents. first: How to Dismantle An Atomic Bomb and last: George Mihaita -[2018-02-13T00:24:43.467] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:24:43.476] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:43.486] [INFO] cheese - inserting 1000 documents. first: Marra Developments v BW Rofe and last: George Albert Bowater -[2018-02-13T00:24:43.524] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:24:43.630] [INFO] cheese - inserting 1000 documents. first: Matthew 8:5-13 and last: The Killing House -[2018-02-13T00:24:43.670] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:24:43.741] [INFO] cheese - inserting 1000 documents. first: Dàolǐ Qū and last: Wikipedia:Categories for discussion/Log/2008 August 21 -[2018-02-13T00:24:43.795] [INFO] cheese - inserting 1000 documents. first: Katie Patrick and last: Wikipedia:WikiProject Spam/LinkReports/bargainpump.com -[2018-02-13T00:24:43.801] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:24:43.855] [INFO] cheese - inserting 1000 documents. first: Massively multiplayer online RPG and last: Susan Holloway Scott -[2018-02-13T00:24:43.860] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:24:43.905] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:24:43.939] [INFO] cheese - inserting 1000 documents. first: Category:Novels set in Cape Verde and last: Isis the Amazon -[2018-02-13T00:24:43.968] [INFO] cheese - inserting 1000 documents. first: Federal Judiciary and last: Gabriel Köerner -[2018-02-13T00:24:44.044] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:24:44.106] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:24:44.244] [INFO] cheese - inserting 1000 documents. first: John Gordon, Lord Gordon and last: Category:Roman Catholic secondary schools in the Diocese of Northampton -[2018-02-13T00:24:44.311] [INFO] cheese - inserting 1000 documents. first: Topchihinsky Raion and last: Rohrenkopf -[2018-02-13T00:24:44.366] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:24:44.396] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:24:44.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Pokémon voice actors and last: Szerszenie -[2018-02-13T00:24:44.674] [INFO] cheese - inserting 1000 documents. first: Lindsay Hayward and last: Lake Margherita -[2018-02-13T00:24:44.700] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:24:44.707] [INFO] cheese - inserting 1000 documents. first: History of Connecticut industry and last: Oriani destroyer class -[2018-02-13T00:24:44.759] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:24:44.798] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:24:44.824] [INFO] cheese - inserting 1000 documents. first: RD-107A and last: Category:Unsolved murders in Gambia -[2018-02-13T00:24:44.874] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:24:44.881] [INFO] cheese - inserting 1000 documents. first: Volcanic desert and last: If the Pig had Wings -[2018-02-13T00:24:44.904] [INFO] cheese - inserting 1000 documents. first: Monosexuality and last: Puns on Hollywood -[2018-02-13T00:24:44.916] [INFO] cheese - inserting 1000 documents. first: 1118 and last: Fallopia japonica -[2018-02-13T00:24:44.922] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:24:44.966] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:24:45.037] [INFO] cheese - batch complete in: 1.642 secs -[2018-02-13T00:24:45.059] [INFO] cheese - inserting 1000 documents. first: Tołwin and last: Gladius Dei -[2018-02-13T00:24:45.111] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:24:45.137] [INFO] cheese - inserting 1000 documents. first: Ricarda Jordan and last: Listed buildings in New Mills -[2018-02-13T00:24:45.165] [INFO] cheese - inserting 1000 documents. first: 75 Public Square and last: Herbert Reich (sailor) -[2018-02-13T00:24:45.184] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:45.205] [INFO] cheese - inserting 1000 documents. first: Category:Culture of Uttarakhand and last: Hms royal george -[2018-02-13T00:24:45.207] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:24:45.269] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:24:45.359] [INFO] cheese - inserting 1000 documents. first: Rancho Cañada de los Coches and last: Paul Robert Hale -[2018-02-13T00:24:45.447] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:24:45.522] [INFO] cheese - inserting 1000 documents. first: Juliet Huddy and last: Syas River -[2018-02-13T00:24:45.572] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:24:45.589] [INFO] cheese - inserting 1000 documents. first: Ciemne and last: No 205 Sqn -[2018-02-13T00:24:45.616] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Oak Hill Industrial Academy and last: One Woman to Another -[2018-02-13T00:24:45.629] [INFO] cheese - inserting 1000 documents. first: Naoise O Muiri and last: John MacBrien -[2018-02-13T00:24:45.632] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:45.667] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:24:45.688] [INFO] cheese - inserting 1000 documents. first: Polish 2nd Armoured Regiment and last: Hypoaesthesia -[2018-02-13T00:24:45.689] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:24:45.736] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:45.776] [INFO] cheese - inserting 1000 documents. first: ISO 639:gla and last: Category:1682 in politics -[2018-02-13T00:24:45.809] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:24:45.899] [INFO] cheese - inserting 1000 documents. first: Tanjii Bird Reserve and last: Kemerovo Region -[2018-02-13T00:24:45.944] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:24:45.986] [INFO] cheese - inserting 1000 documents. first: Osijek railway station and last: Barkah, Iran -[2018-02-13T00:24:46.024] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:24:46.040] [INFO] cheese - inserting 1000 documents. first: Gallery of Admiral Cheng Ho and last: Category:Politics of Kırklareli Province -[2018-02-13T00:24:46.059] [INFO] cheese - inserting 1000 documents. first: Isser Yehuda Unterman and last: SOS (ABBA song) -[2018-02-13T00:24:46.112] [INFO] cheese - inserting 1000 documents. first: Liz prince and last: Astronomical Society of London -[2018-02-13T00:24:46.127] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:24:46.139] [INFO] cheese - inserting 1000 documents. first: Category:1683 in politics and last: Wikipedia:Articles for deletion/List of Nobel laureates affiliated with Princeton University -[2018-02-13T00:24:46.150] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:24:46.179] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:24:46.192] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:24:46.333] [INFO] cheese - inserting 1000 documents. first: Philip Claypool and last: Category:Wikipedians by alma mater: INSEAD -[2018-02-13T00:24:46.387] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:24:46.443] [INFO] cheese - inserting 1000 documents. first: Category:Federal Republic of Central America and last: UNSW International House -[2018-02-13T00:24:46.474] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2015-02-13 and last: Alex pike -[2018-02-13T00:24:46.516] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:24:46.562] [INFO] cheese - inserting 1000 documents. first: Seela Misra and last: Wikipedia:WikiProject Spam/LinkReports/affil.co.uk -[2018-02-13T00:24:46.569] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:46.621] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:24:46.627] [INFO] cheese - inserting 1000 documents. first: English mythology and last: Telugu language -[2018-02-13T00:24:46.644] [INFO] cheese - inserting 1000 documents. first: Fiennes Stanley Wykeham Cornwallis, 1st Baron Cornwallis and last: Daryl Clare -[2018-02-13T00:24:46.691] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:24:46.707] [INFO] cheese - inserting 1000 documents. first: Cecily and Cathe and last: Template:FootballIDRIVECurrent -[2018-02-13T00:24:46.717] [INFO] cheese - batch complete in: 1.68 secs -[2018-02-13T00:24:46.764] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:24:46.885] [INFO] cheese - inserting 1000 documents. first: Forum clause and last: File:Youth Association of Kuwait logo.png -[2018-02-13T00:24:46.889] [INFO] cheese - inserting 1000 documents. first: Maine Prairie Township, Minnesota and last: HMS Prince of Orange (1734) -[2018-02-13T00:24:46.933] [INFO] cheese - inserting 1000 documents. first: Plebeius sorhagenii and last: Charlebois, Manitoba -[2018-02-13T00:24:46.932] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:24:46.965] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:24:47.008] [INFO] cheese - inserting 1000 documents. first: Wang Yin and last: Template:S-line/MOSMETRO right/Filyovskaya -[2018-02-13T00:24:47.025] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:24:47.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Raymarine Marine Electronics and last: Granville Maynard Sharp -[2018-02-13T00:24:47.051] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:24:47.104] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:24:47.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2015 April 12 and last: Morgan, New Jersey -[2018-02-13T00:24:47.276] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:24:47.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gotz.narod.ru and last: Robert Fuller House -[2018-02-13T00:24:47.341] [INFO] cheese - inserting 1000 documents. first: Victoria River-Daly Shire and last: Elizabeth Stanley -[2018-02-13T00:24:47.359] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:24:47.390] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:24:47.407] [INFO] cheese - inserting 1000 documents. first: Category:Pre-statehood history of Pennsylvania and last: Scraper (biology) -[2018-02-13T00:24:47.428] [INFO] cheese - inserting 1000 documents. first: Storage clamp and last: Gordon Welchman -[2018-02-13T00:24:47.450] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:47.490] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:24:47.574] [INFO] cheese - inserting 1000 documents. first: File:1998 NBA Finals.jpg and last: Crotalus exul -[2018-02-13T00:24:47.625] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:24:47.633] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian medical doctors and last: Wikipedia:Articles for deletion/Ted Chapelhow -[2018-02-13T00:24:47.676] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:47.743] [INFO] cheese - inserting 1000 documents. first: SS-355 and last: Christopher Grace -[2018-02-13T00:24:47.761] [INFO] cheese - inserting 1000 documents. first: Isoceteth-20 and last: Emmeline Hill -[2018-02-13T00:24:47.765] [INFO] cheese - inserting 1000 documents. first: Megadrive Handheld and last: 1953 NCAA Men's Basketball All-Americans -[2018-02-13T00:24:47.776] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:24:47.813] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:24:47.813] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:47.938] [INFO] cheese - inserting 1000 documents. first: So many dynamos and last: Charles Murray Padday -[2018-02-13T00:24:47.980] [INFO] cheese - inserting 1000 documents. first: Suzuki Liana and last: LoveFilm -[2018-02-13T00:24:47.986] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:24:48.042] [INFO] cheese - inserting 1000 documents. first: Fool (Twelfth Night) and last: Latter Zhou -[2018-02-13T00:24:48.047] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:24:48.056] [INFO] cheese - inserting 1000 documents. first: Mauritania–U.S. relations and last: Category:1921 establishments in Costa Rica -[2018-02-13T00:24:48.086] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:24:48.101] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:24:48.140] [INFO] cheese - inserting 1000 documents. first: Copa Mustang I 2004 and last: Frullania intermedia -[2018-02-13T00:24:48.169] [INFO] cheese - inserting 1000 documents. first: International Bluegrass Music Hall of Honor and last: Category:Siege of Sarajevo -[2018-02-13T00:24:48.187] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:24:48.221] [INFO] cheese - inserting 1000 documents. first: Battle of Bennington and last: USS Merrimack -[2018-02-13T00:24:48.236] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:24:48.408] [INFO] cheese - inserting 1000 documents. first: Marcos Espinal and last: Halo: The Graphic Novel -[2018-02-13T00:24:48.428] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T00:24:48.554] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:24:48.617] [INFO] cheese - inserting 1000 documents. first: Category:1920s establishments in Costa Rica and last: Diagnostic Impotence Questionnaire -[2018-02-13T00:24:48.729] [INFO] cheese - inserting 1000 documents. first: Latter Tang and last: Spirama rosacea -[2018-02-13T00:24:48.813] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:24:48.856] [INFO] cheese - inserting 1000 documents. first: Okiek and last: Template:Democratic Korea Party/meta/color -[2018-02-13T00:24:48.865] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:24:48.879] [INFO] cheese - inserting 1000 documents. first: Vandenberg, Arthur H. and last: Sai Van Bridge -[2018-02-13T00:24:49.012] [INFO] cheese - inserting 1000 documents. first: Template:TopicHistoryoutput and last: Template:Fb team Emmen -[2018-02-13T00:24:49.039] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:24:49.071] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T00:24:49.126] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:24:49.341] [INFO] cheese - inserting 1000 documents. first: Branko Schmidt and last: Zara Turner -[2018-02-13T00:24:49.441] [INFO] cheese - inserting 1000 documents. first: Hypopyra mollis and last: Jim F. Heenan -[2018-02-13T00:24:49.462] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:24:49.516] [INFO] cheese - inserting 1000 documents. first: FC Real Odessa and last: Badentarbet Bay -[2018-02-13T00:24:49.542] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:24:49.665] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:24:49.736] [INFO] cheese - inserting 1000 documents. first: 28-out perfect game and last: Sara Hausmann -[2018-02-13T00:24:49.824] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:24:49.832] [INFO] cheese - inserting 1000 documents. first: Herwig Rüdisser and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Wikipedians for local history/mylocalhistorypage -[2018-02-13T00:24:49.879] [INFO] cheese - inserting 1000 documents. first: Accidental (music) and last: Stop signal -[2018-02-13T00:24:49.920] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:24:49.925] [INFO] cheese - inserting 1000 documents. first: Puget Sound Shipyard and last: Wikipedia:Articles for deletion/.hack//fragment -[2018-02-13T00:24:50.045] [INFO] cheese - inserting 1000 documents. first: File:Actionsperadmin.png and last: John Frank Charles Kingman -[2018-02-13T00:24:50.124] [INFO] cheese - batch complete in: 1.696 secs -[2018-02-13T00:24:50.186] [INFO] cheese - inserting 1000 documents. first: The Mermaid (1910 film) and last: Category:1969–70 in Soviet ice hockey -[2018-02-13T00:24:50.198] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:24:50.273] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:24:50.318] [INFO] cheese - inserting 1000 documents. first: U.S.–Norway relations and last: File:Joe Hill Louis - Boogie in the Park.ogg -[2018-02-13T00:24:50.330] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:24:50.365] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:24:50.566] [INFO] cheese - inserting 1000 documents. first: Read India and last: Liu Chi-Wen -[2018-02-13T00:24:50.593] [INFO] cheese - inserting 1000 documents. first: Polish Mountain Hillclimb and last: Billboard Top Rock'n'Roll Hits: 1961 -[2018-02-13T00:24:50.613] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:24:50.693] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:24:50.886] [INFO] cheese - inserting 1000 documents. first: North Monmouthshire (UK Parliament constituency) and last: List of New Jersey rivers -[2018-02-13T00:24:50.913] [INFO] cheese - inserting 1000 documents. first: Category:1970–71 in Soviet ice hockey and last: Template:Suburbs of Mainz -[2018-02-13T00:24:50.945] [INFO] cheese - inserting 1000 documents. first: Acrolepia amseli and last: Dallas (1978 TV series) (season 14) -[2018-02-13T00:24:50.951] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:24:51.009] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:24:51.050] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:24:51.105] [INFO] cheese - inserting 1000 documents. first: Plantar fibromatosis and last: San Carlos Sija -[2018-02-13T00:24:51.231] [INFO] cheese - inserting 1000 documents. first: SS Quersee and last: Calcarovula ildiko -[2018-02-13T00:24:51.243] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T00:24:51.294] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:24:51.401] [INFO] cheese - inserting 1000 documents. first: Linlin Deng and last: Asano Station -[2018-02-13T00:24:51.449] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:24:51.465] [INFO] cheese - inserting 1000 documents. first: Piletocera maculifrons and last: Stadiasmus Patarensis -[2018-02-13T00:24:51.501] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:24:51.536] [INFO] cheese - inserting 1000 documents. first: W25CS and last: Template:Taxonomy/Bellubrunnus -[2018-02-13T00:24:51.539] [INFO] cheese - inserting 1000 documents. first: Constitution of Saudi Arabia and last: Sion (district) -[2018-02-13T00:24:51.572] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:24:51.579] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:24:51.683] [INFO] cheese - inserting 1000 documents. first: Calcarovula longirostrata and last: Nuculoidea -[2018-02-13T00:24:51.700] [INFO] cheese - inserting 1000 documents. first: Store-and-forward switching center and last: Nemertea -[2018-02-13T00:24:51.721] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:24:51.745] [INFO] cheese - inserting 1000 documents. first: San Francisco La Unión and last: Clerk of the Closet -[2018-02-13T00:24:51.783] [INFO] cheese - inserting 1000 documents. first: Pusca Automata model 1986 and last: File:Times Like These (Buddy Jewell album) coverart.jpg -[2018-02-13T00:24:51.784] [INFO] cheese - inserting 1000 documents. first: Porthcuel and last: AH13 -[2018-02-13T00:24:51.833] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:24:51.851] [INFO] cheese - batch complete in: 1.726 secs -[2018-02-13T00:24:51.873] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:24:51.906] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:24:51.993] [INFO] cheese - inserting 1000 documents. first: File:Richard Skalak.jpg and last: US–Republic of China relations -[2018-02-13T00:24:52.078] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:24:52.312] [INFO] cheese - inserting 1000 documents. first: Georgi Petrov (footballer, born 1974) and last: Bogu kumite -[2018-02-13T00:24:52.385] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:24:52.415] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Equatorial Guinea and last: The Ruff & Ready Show -[2018-02-13T00:24:52.452] [INFO] cheese - inserting 1000 documents. first: 11 Mile and last: Birdmount -[2018-02-13T00:24:52.455] [INFO] cheese - inserting 1000 documents. first: The Peninsula (newspaper) and last: New Haven Shuttle (Amtrak) -[2018-02-13T00:24:52.475] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:24:52.504] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:24:52.521] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:24:52.571] [INFO] cheese - inserting 1000 documents. first: T Coronae borealis and last: List of Arsenal F.C. players -[2018-02-13T00:24:52.582] [INFO] cheese - inserting 1000 documents. first: United States Republic of China relations and last: FORV Sagar Sampada -[2018-02-13T00:24:52.614] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:24:52.633] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:24:52.801] [INFO] cheese - inserting 1000 documents. first: Peter atte Wood and last: William Carter (Mansfield MP) -[2018-02-13T00:24:52.977] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:24:52.992] [INFO] cheese - inserting 1000 documents. first: Compendium of Macromolecular Nomenclature and last: In Jae Keun -[2018-02-13T00:24:53.018] [INFO] cheese - inserting 1000 documents. first: Mako Kojima and last: Accounting Review -[2018-02-13T00:24:53.068] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:24:53.075] [INFO] cheese - inserting 1000 documents. first: Pennsylvania gubernatorial election, 1986 and last: Private Wealth Management -[2018-02-13T00:24:53.081] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:24:53.130] [INFO] cheese - inserting 1000 documents. first: Fbins and last: Church Street–Cady Hill Historic District -[2018-02-13T00:24:53.130] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:24:53.182] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:24:53.273] [INFO] cheese - inserting 1000 documents. first: Helmet vanga and last: Nuclear Bomb -[2018-02-13T00:24:53.326] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:24:53.348] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Texas State Highway Spur 86 and last: File:T-34 fully restored.jpg -[2018-02-13T00:24:53.387] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:24:53.394] [INFO] cheese - inserting 1000 documents. first: File:Tattoo Bugle Call.jpg and last: São Miguel das Missões, Rio Grande do Sul -[2018-02-13T00:24:53.403] [INFO] cheese - inserting 1000 documents. first: Least integer principle and last: U.S.-Rwanda relations -[2018-02-13T00:24:53.451] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:24:53.454] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:24:53.513] [INFO] cheese - inserting 1000 documents. first: Ruth McGregor and last: HBC (disambiguation) -[2018-02-13T00:24:53.558] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:24:53.572] [INFO] cheese - inserting 1000 documents. first: Template:User 2 Minutes to Midnight and last: Category:Top-importance B-Class Palaeontology articles -[2018-02-13T00:24:53.621] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:24:53.659] [INFO] cheese - inserting 1000 documents. first: Low (Inna song) and last: Specialized camping -[2018-02-13T00:24:53.700] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:24:53.725] [INFO] cheese - inserting 1000 documents. first: Yeshivah College, Australia and last: Rap in Sweden -[2018-02-13T00:24:53.762] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:24:53.782] [INFO] cheese - inserting 1000 documents. first: Platyhelmintha and last: Printing -[2018-02-13T00:24:53.809] [INFO] cheese - inserting 1000 documents. first: US-Rwanda relations and last: ModPlug (disambiguation) -[2018-02-13T00:24:53.855] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:24:53.860] [INFO] cheese - inserting 1000 documents. first: São Miguel das Missões, Rio Grande do Sul, Brazil and last: Wikipedia:Articles for deletion/Marcus Fiesel -[2018-02-13T00:24:53.863] [INFO] cheese - inserting 1000 documents. first: Category:Fictional members of the United States House of Representatives and last: Template:Munich U-Bahn U5 navbox -[2018-02-13T00:24:53.880] [INFO] cheese - batch complete in: 2.029 secs -[2018-02-13T00:24:53.909] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:24:53.939] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:24:54.044] [INFO] cheese - inserting 1000 documents. first: Adventure camping and last: Category:Nigerian expatriates in Lebanon -[2018-02-13T00:24:54.064] [INFO] cheese - inserting 1000 documents. first: Energy use in the US and last: No. 5 Squadron RNAS -[2018-02-13T00:24:54.107] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:24:54.218] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:24:54.238] [INFO] cheese - inserting 1000 documents. first: Drain (disambiguation) and last: Redondo Beach (disambiguation) -[2018-02-13T00:24:54.289] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:24:54.346] [INFO] cheese - inserting 1000 documents. first: Latin gamma and last: MTV En Espanol -[2018-02-13T00:24:54.350] [INFO] cheese - inserting 1000 documents. first: Monte Walsh (disambiguation) and last: He and She (film) -[2018-02-13T00:24:54.449] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:24:54.481] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:24:54.555] [INFO] cheese - inserting 1000 documents. first: Wildwood Lake (disambiguation) and last: Category:Populated places established in 1696 -[2018-02-13T00:24:54.563] [INFO] cheese - inserting 1000 documents. first: Shebrew and last: Access Bank Nigerian Government Bond Index -[2018-02-13T00:24:54.652] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:24:54.684] [INFO] cheese - inserting 1000 documents. first: Dobra, India and last: Β-Phenylacetic acid -[2018-02-13T00:24:54.698] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:24:54.779] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:24:54.823] [INFO] cheese - inserting 1000 documents. first: Robyn Hitchcock and the Egyptians and last: Mike Jackson (left-handed pitcher) -[2018-02-13T00:24:54.900] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:24:55.037] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese conductors (music) and last: Roman Catholicism in Tuva -[2018-02-13T00:24:55.049] [INFO] cheese - inserting 1000 documents. first: Concept cars from Opel and last: 2010–11 Segunda División B Play-Off -[2018-02-13T00:24:55.084] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:24:55.138] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:24:55.237] [INFO] cheese - inserting 1000 documents. first: Pollycarpus Priyanto and last: Home Sweet Homediddly-Dum-Doodily -[2018-02-13T00:24:55.271] [INFO] cheese - inserting 1000 documents. first: Chuckie Campbell and last: Category:Racism in Denmark -[2018-02-13T00:24:55.285] [INFO] cheese - inserting 1000 documents. first: 387th Air Expeditionary Group and last: Beta adrenergic receptor kinase -[2018-02-13T00:24:55.320] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:24:55.337] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:24:55.360] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Don Weis and last: Knight Rider (NES) -[2018-02-13T00:24:55.351] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:24:55.417] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:24:55.448] [INFO] cheese - inserting 1000 documents. first: Roman Catholicism in West Papua and last: Thysanoplusia lectula -[2018-02-13T00:24:55.483] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:55.555] [INFO] cheese - inserting 1000 documents. first: 2010–11 Tercera División play-offs and last: Leioheterodon modestus -[2018-02-13T00:24:55.590] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:24:55.636] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Hapoel Majd al-Krum and last: Category:Books by Henry VIII -[2018-02-13T00:24:55.667] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:24:55.686] [INFO] cheese - inserting 1000 documents. first: James Sidney, Baron Ensor Ensor and last: Anno hegirae -[2018-02-13T00:24:55.697] [INFO] cheese - inserting 1000 documents. first: 4 in the Morning and last: File:Ghost pirates.jpg -[2018-02-13T00:24:55.711] [INFO] cheese - inserting 1000 documents. first: Touch Flo 3D and last: Bearden, Knoxville, Tennessee -[2018-02-13T00:24:55.727] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:24:55.728] [INFO] cheese - inserting 1000 documents. first: Inquirições and last: Wikipedia:BUSFAQ -[2018-02-13T00:24:55.746] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:24:55.749] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:24:55.776] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:24:55.866] [INFO] cheese - inserting 1000 documents. first: Category:Organizations based in Ramallah and last: Portal:Trains/Selected picture/Week 28, 2012/link -[2018-02-13T00:24:55.918] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:24:55.966] [INFO] cheese - inserting 1000 documents. first: Cavalcade (play) and last: March 28, 2002 -[2018-02-13T00:24:56.050] [INFO] cheese - inserting 1000 documents. first: Doreen Liu and last: Isaac Mbenza -[2018-02-13T00:24:56.103] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:24:56.153] [INFO] cheese - batch complete in: 2.273 secs -[2018-02-13T00:24:56.169] [INFO] cheese - inserting 1000 documents. first: Secular Canons of St. John the Evangelist and last: William I, Viscount of Béarn -[2018-02-13T00:24:56.185] [INFO] cheese - inserting 1000 documents. first: Slobodni Tjednik and last: Portland (Oregon) -[2018-02-13T00:24:56.241] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:24:56.247] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bathroom attendant and last: Wikipedia:Articles for deletion/Mark Foresta -[2018-02-13T00:24:56.249] [INFO] cheese - inserting 1000 documents. first: Template:Xsign and last: Wikipedia:WikiProject Washington (U.S. state) -[2018-02-13T00:24:56.275] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:24:56.292] [INFO] cheese - inserting 1000 documents. first: Template:Chennai Super Kings and last: Template:Membership/Mozambique -[2018-02-13T00:24:56.346] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:24:56.349] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:24:56.383] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:24:57.008] [INFO] cheese - inserting 1000 documents. first: Raymark and last: Edrington plc -[2018-02-13T00:24:57.040] [INFO] cheese - inserting 1000 documents. first: Template:Membership/Namibia and last: Khvor-e Bala -[2018-02-13T00:24:57.049] [INFO] cheese - inserting 1000 documents. first: Dodanim Barboza and last: Narcoota -[2018-02-13T00:24:57.133] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:24:57.154] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T00:24:57.169] [INFO] cheese - inserting 1000 documents. first: Template:MDintbtm and last: Dec. 25 -[2018-02-13T00:24:57.186] [INFO] cheese - inserting 1000 documents. first: Portland (Oregon, United States) and last: Multiprotocol BGP -[2018-02-13T00:24:57.206] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:24:57.242] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:24:57.254] [INFO] cheese - inserting 1000 documents. first: File:Einsjager.jpg and last: Araneids -[2018-02-13T00:24:57.360] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:24:57.591] [INFO] cheese - inserting 1000 documents. first: List of protected heritage sites in La Roche-en-Ardenne and last: Bunguran -[2018-02-13T00:24:57.664] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T00:24:57.760] [INFO] cheese - inserting 1000 documents. first: Al Wasl F.C. season 2009–10 and last: River Rother, Derbyshire -[2018-02-13T00:24:57.766] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:24:57.815] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:24:57.834] [INFO] cheese - inserting 1000 documents. first: Category:Iron sculptures in the United States and last: A Heart in Pawn -[2018-02-13T00:24:57.864] [INFO] cheese - inserting 1000 documents. first: Seascapes and last: Chappelle & Stinnette Records -[2018-02-13T00:24:57.913] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:24:57.983] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:24:58.070] [INFO] cheese - inserting 1000 documents. first: Salonen, Esa-Pekka and last: JBOSS -[2018-02-13T00:24:58.153] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:24:58.210] [INFO] cheese - inserting 1000 documents. first: Suskind book and last: Portal:Yoruba/box-footer -[2018-02-13T00:24:58.284] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:24:58.318] [INFO] cheese - inserting 1000 documents. first: Proteuxoa florescens and last: Chik Mohamad Yusuf -[2018-02-13T00:24:58.370] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:24:58.388] [INFO] cheese - inserting 1000 documents. first: Muhammed bin Saud and last: Austral Photoplay Company -[2018-02-13T00:24:58.403] [INFO] cheese - inserting 1000 documents. first: Amegilla zonata and last: William John Tout -[2018-02-13T00:24:58.455] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:24:58.460] [INFO] cheese - inserting 1000 documents. first: Jack McDevitt and last: Battle of Naissus -[2018-02-13T00:24:58.466] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:24:58.577] [INFO] cheese - inserting 1000 documents. first: File:2-Perelman-Cyclopedia-Cigars.jpg and last: Portal:Dallas-Fort Worth/news archive/2006 -[2018-02-13T00:24:58.598] [INFO] cheese - batch complete in: 2.445 secs -[2018-02-13T00:24:58.651] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:24:58.736] [INFO] cheese - inserting 1000 documents. first: Holbein family and last: Wikipedia:NC (events) -[2018-02-13T00:24:58.766] [INFO] cheese - inserting 1000 documents. first: Austrian Sports Badge and last: Your Dream Home -[2018-02-13T00:24:58.798] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:24:58.802] [INFO] cheese - inserting 1000 documents. first: International Dawn Chorus Day and last: Pre-medical -[2018-02-13T00:24:58.811] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:24:58.820] [INFO] cheese - inserting 1000 documents. first: Georgina Geikie and last: Ammaa ki boli -[2018-02-13T00:24:58.849] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:24:58.854] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:24:58.863] [INFO] cheese - inserting 1000 documents. first: Category:Stone sculptures in the United States by state and last: Category:Water transportation in Nebraska -[2018-02-13T00:24:58.916] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:24:59.050] [INFO] cheese - inserting 1000 documents. first: Titus I Mar Thoma and last: File:When Will I Be Famous.PNG -[2018-02-13T00:24:59.112] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:24:59.178] [INFO] cheese - inserting 1000 documents. first: Jean Marie Atangana Mebara and last: Crime in Benin -[2018-02-13T00:24:59.265] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:24:59.277] [INFO] cheese - inserting 1000 documents. first: Asylum Township and last: Zambia–U.S. relations -[2018-02-13T00:24:59.292] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Ulster County, New York and last: Category:Populated places in Ben Tre Province -[2018-02-13T00:24:59.337] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:24:59.375] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:24:59.427] [INFO] cheese - inserting 1000 documents. first: S&P Global Platts and last: Woodshed treatment -[2018-02-13T00:24:59.424] [INFO] cheese - inserting 1000 documents. first: Category:1780s establishments in the Northwest Territory and last: Alina Tecsor -[2018-02-13T00:24:59.513] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:24:59.566] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:24:59.781] [INFO] cheese - inserting 1000 documents. first: شىنجاڭ ئۇيغۇر ئاپتونوم رايون and last: Selman City -[2018-02-13T00:24:59.811] [INFO] cheese - inserting 1000 documents. first: Zambia–US relations and last: Category:Ambassadors of South Africa to Italy -[2018-02-13T00:24:59.818] [INFO] cheese - inserting 1000 documents. first: The Hangman (film) and last: Kreios -[2018-02-13T00:24:59.857] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:24:59.860] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:24:59.902] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Benešov District and last: Sir Thomas Mildmay -[2018-02-13T00:24:59.943] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:24:59.972] [INFO] cheese - inserting 1000 documents. first: Digital hearing aid and last: Peter Bulling -[2018-02-13T00:24:59.991] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:25:00.061] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:25:00.214] [INFO] cheese - inserting 1000 documents. first: The Grand Shrines of Ise and last: Walter de Camp -[2018-02-13T00:25:00.256] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:25:00.264] [INFO] cheese - inserting 1000 documents. first: Jafarabad, Nishapur and last: List of protected heritage sites in Jemeppe-sur-Sambre -[2018-02-13T00:25:00.285] [INFO] cheese - inserting 1000 documents. first: Jorge Alberto del Río Sálas and last: Europa-Institut -[2018-02-13T00:25:00.308] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:00.354] [INFO] cheese - inserting 1000 documents. first: Change of life and last: Category:Bhola District -[2018-02-13T00:25:00.365] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:00.405] [INFO] cheese - inserting 1000 documents. first: Category:1999 establishments in Kansas and last: Nancy Xynos -[2018-02-13T00:25:00.409] [INFO] cheese - inserting 1000 documents. first: Portal:Queens of the Stone Age/Worklist and last: S-30 -[2018-02-13T00:25:00.427] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:00.456] [INFO] cheese - inserting 1000 documents. first: Strange loop and last: Link awareness -[2018-02-13T00:25:00.463] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:25:00.517] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:25:00.586] [INFO] cheese - batch complete in: 1.988 secs -[2018-02-13T00:25:00.675] [INFO] cheese - inserting 1000 documents. first: Bretton Woods agreements and last: Dieudonne M'bala M'bala -[2018-02-13T00:25:00.703] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:25:00.744] [INFO] cheese - inserting 1000 documents. first: Herding test and last: Gleason Building (Lawrence, Massachusetts) -[2018-02-13T00:25:00.761] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/irazola.co.uk and last: David Lloyd Johnston CC -[2018-02-13T00:25:00.771] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:25:00.791] [INFO] cheese - inserting 1000 documents. first: Itv1 and last: Wikipedia:Articles for deletion/Baraqyal -[2018-02-13T00:25:00.800] [INFO] cheese - inserting 1000 documents. first: File:ShiroiKisetsu SakuraHitohira.png and last: Botys dryalis -[2018-02-13T00:25:00.809] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:00.845] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:25:00.848] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:25:00.915] [INFO] cheese - inserting 1000 documents. first: Tasta IL and last: Category:Ambassadors of Turkey to Northern Cyprus -[2018-02-13T00:25:00.931] [INFO] cheese - inserting 1000 documents. first: Dieudonne Owona and last: Template:UK bilateral relations -[2018-02-13T00:25:00.952] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:25:00.959] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:25:01.164] [INFO] cheese - inserting 1000 documents. first: Template:2006 films and last: Ammanford Colliery Halt railway station -[2018-02-13T00:25:01.182] [INFO] cheese - inserting 1000 documents. first: John Albert Morris and last: Libode, Eastern Cape -[2018-02-13T00:25:01.208] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:25:01.220] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:25:01.281] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Utah State Route 212 (1941–2012) and last: Category:Bronze Age sites in Essex -[2018-02-13T00:25:01.302] [INFO] cheese - inserting 1000 documents. first: Michael E. McMahon and last: João Paulo Cunha -[2018-02-13T00:25:01.318] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rhia Charles and last: Trane Whistle -[2018-02-13T00:25:01.321] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:25:01.349] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:25:01.353] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:25:01.359] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Germany articles by quality/24 and last: Empress XiaoDing -[2018-02-13T00:25:01.402] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:25:01.466] [INFO] cheese - inserting 1000 documents. first: Steynsburg, Eastern Cape and last: Wikipedia:WikiProject Spam/LinkReports/icasualties.org -[2018-02-13T00:25:01.507] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:25:01.584] [INFO] cheese - inserting 1000 documents. first: TI-36X and last: Conversion and Judaism -[2018-02-13T00:25:01.630] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:01.647] [INFO] cheese - inserting 1000 documents. first: Bourget (electoral district) and last: Colonie, NY -[2018-02-13T00:25:01.679] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:25:01.686] [INFO] cheese - inserting 1000 documents. first: Portal:Republika Srpska/sr wiki and last: Pierre-Macario Saba -[2018-02-13T00:25:01.710] [INFO] cheese - inserting 1000 documents. first: An Evening With Herbie Hancock and Chick Corea: In Concert and last: Wikipedia:Miscellany for deletion/User:Patryk Larney -[2018-02-13T00:25:01.721] [INFO] cheese - inserting 1000 documents. first: Sworn Enemy and last: Category:Lithuanian sculptors -[2018-02-13T00:25:01.729] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:25:01.760] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:25:01.791] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:01.817] [INFO] cheese - inserting 1000 documents. first: Pathways Schools and last: Hanila -[2018-02-13T00:25:01.858] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:25:02.040] [INFO] cheese - inserting 1000 documents. first: Jose Eduardo Agualusa and last: Michael Rosch -[2018-02-13T00:25:02.088] [INFO] cheese - inserting 1000 documents. first: Honda Elite and last: Iblees -[2018-02-13T00:25:02.124] [INFO] cheese - inserting 1000 documents. first: Stanley Baldwin and last: Single-occupancy vehicle -[2018-02-13T00:25:02.129] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:25:02.186] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:25:02.213] [INFO] cheese - inserting 1000 documents. first: Latin declensions and last: Princess Tarakanoff -[2018-02-13T00:25:02.251] [INFO] cheese - inserting 1000 documents. first: Eicochrysops sanyere and last: No. 14 Squadron IAF -[2018-02-13T00:25:02.283] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:25:02.318] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:25:02.330] [INFO] cheese - batch complete in: 1.744 secs -[2018-02-13T00:25:02.451] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Nabatieh Governorate and last: Category:Populated places in Western Greece -[2018-02-13T00:25:02.550] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:25:02.703] [INFO] cheese - inserting 1000 documents. first: Barotseland and last: Chorismate -[2018-02-13T00:25:02.755] [INFO] cheese - inserting 1000 documents. first: File:Hello-Sunshine-SFA-Screenshot.jpg and last: Category:1998 Winter Paralympics -[2018-02-13T00:25:02.770] [INFO] cheese - inserting 1000 documents. first: Michael Soderlund and last: Thomas Lewis Horabin -[2018-02-13T00:25:02.796] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T00:25:02.810] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:25:02.842] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:25:02.892] [INFO] cheese - inserting 1000 documents. first: File:WWE Authority.png and last: Wikipedia:Wikipedia Signpost/Newsroom/From the editor -[2018-02-13T00:25:02.897] [INFO] cheese - inserting 1000 documents. first: Franklin Township, Beaver County and last: Category:Ambassadors of India to Botswana -[2018-02-13T00:25:02.951] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:25:02.973] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:25:03.218] [INFO] cheese - inserting 1000 documents. first: GSF Development Driller and last: Category:Former populated places in Greece -[2018-02-13T00:25:03.263] [INFO] cheese - inserting 1000 documents. first: Steve Kuntz and last: Montana in the American Civil War -[2018-02-13T00:25:03.269] [INFO] cheese - inserting 1000 documents. first: WXRY-LP and last: Nuria Espert -[2018-02-13T00:25:03.289] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:25:03.333] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:25:03.346] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:25:03.403] [INFO] cheese - inserting 1000 documents. first: Seven Churches of Asia and last: Foucault, Jean Bernard Léon -[2018-02-13T00:25:03.413] [INFO] cheese - inserting 1000 documents. first: Template:Guangzhou Metro lines/list and last: Signature Panel Code -[2018-02-13T00:25:03.442] [INFO] cheese - inserting 1000 documents. first: Mavado (Mortal Kombat) and last: Fleroya -[2018-02-13T00:25:03.465] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:25:03.467] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:25:03.528] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:25:03.644] [INFO] cheese - inserting 1000 documents. first: Bass-line and last: Category:FA-Class Disability articles -[2018-02-13T00:25:03.673] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:25:03.691] [INFO] cheese - inserting 1000 documents. first: Octavio Pato and last: 18th Utah Senate District -[2018-02-13T00:25:03.721] [INFO] cheese - inserting 1000 documents. first: Dough knots and last: Category:Executed Gambian people -[2018-02-13T00:25:03.752] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:25:03.783] [INFO] cheese - inserting 1000 documents. first: Jezernice and last: Category:Lighthouses completed in 1967 -[2018-02-13T00:25:03.847] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:25:03.886] [INFO] cheese - inserting 1000 documents. first: Unusually Thicke and last: Crawford Corners, New Jersey -[2018-02-13T00:25:03.892] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:25:03.917] [INFO] cheese - inserting 1000 documents. first: Club Atlético Huracán and last: Flist -[2018-02-13T00:25:03.967] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:25:03.985] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:25:04.180] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Disability articles and last: Shiva the Destroyer -[2018-02-13T00:25:04.215] [INFO] cheese - inserting 1000 documents. first: Quercus kelloggii and last: Van de Graaff generator -[2018-02-13T00:25:04.258] [INFO] cheese - inserting 1000 documents. first: File:Jiran2.jpg and last: North Moreton -[2018-02-13T00:25:04.260] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:25:04.330] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:04.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/Imelda Marcos and last: Academic health science centre -[2018-02-13T00:25:04.404] [INFO] cheese - batch complete in: 2.073 secs -[2018-02-13T00:25:04.414] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:25:04.428] [INFO] cheese - inserting 1000 documents. first: Sug Corneluis and last: File:Florence Wald.jpg -[2018-02-13T00:25:04.469] [INFO] cheese - inserting 1000 documents. first: Template:User WikiProject X/doc and last: Sandris Berzinš -[2018-02-13T00:25:04.513] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:25:04.594] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:25:04.649] [INFO] cheese - inserting 1000 documents. first: WWF No Way Out and last: Sveta Nedelja, Istria -[2018-02-13T00:25:04.742] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:25:04.833] [INFO] cheese - inserting 1000 documents. first: Genetic diseases and last: Rolf Osterreich -[2018-02-13T00:25:04.886] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:25:04.981] [INFO] cheese - inserting 1000 documents. first: Doreen McCannell-Botterill and last: Enno III of East Frisia -[2018-02-13T00:25:04.997] [INFO] cheese - inserting 1000 documents. first: China Travel Hong Kong and last: Stary Gołębiewek -[2018-02-13T00:25:05.031] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:25:05.037] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:25:05.120] [INFO] cheese - inserting 1000 documents. first: Pièces de viole and last: Fox ADHD -[2018-02-13T00:25:05.143] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topic candidates/Charlemagne class battleship/archive1 and last: Bayırköy, Alanya -[2018-02-13T00:25:05.176] [INFO] cheese - inserting 1000 documents. first: Te Hāhi Tūhauwiri and last: VGT -[2018-02-13T00:25:05.175] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:25:05.187] [INFO] cheese - inserting 1000 documents. first: Roman Jakobczak and last: 82nd Regiment of Foot (disambiguation) -[2018-02-13T00:25:05.208] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:25:05.220] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:25:05.245] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:25:05.363] [INFO] cheese - inserting 1000 documents. first: Odd Fellows Building (Malden, Massachusetts) and last: List of Longest Serving Soap Opera Actors -[2018-02-13T00:25:05.372] [INFO] cheese - inserting 1000 documents. first: Edzard II of East Frisia and last: Zephyr Books -[2018-02-13T00:25:05.410] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:05.440] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:25:05.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Apeslowy/Eric Martin Nebraska and last: L. C. Crow -[2018-02-13T00:25:05.670] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:25:05.681] [INFO] cheese - inserting 1000 documents. first: File:Coat of arms of Rawtenstall.jpg and last: Ryoki inoue -[2018-02-13T00:25:05.716] [INFO] cheese - inserting 1000 documents. first: Bayırkozağacı, Alanya and last: Gedik, Göle -[2018-02-13T00:25:05.725] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:25:05.748] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:05.792] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Piątek and last: Lipiny, Łódź East County -[2018-02-13T00:25:05.811] [INFO] cheese - inserting 1000 documents. first: Branimir Štulić and last: Werschetz -[2018-02-13T00:25:05.831] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:25:05.845] [INFO] cheese - inserting 1000 documents. first: Central Bontoc language and last: Gary Andrew Speed -[2018-02-13T00:25:05.863] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:25:05.894] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:06.083] [INFO] cheese - inserting 1000 documents. first: Category:1947 in Soviet football leagues and last: Category:1921 disestablishments in Kansas -[2018-02-13T00:25:06.084] [INFO] cheese - inserting 1000 documents. first: Category:Townships in Lee County, Illinois and last: St Valery-en-Caux -[2018-02-13T00:25:06.114] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:06.129] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:06.152] [INFO] cheese - inserting 1000 documents. first: Van de Graff generator and last: Vitamin P -[2018-02-13T00:25:06.155] [INFO] cheese - inserting 1000 documents. first: Gülistan, Göle and last: Wikipedia:WikiProject Goa/Collaboration -[2018-02-13T00:25:06.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alliance Records and last: Women in Tibet -[2018-02-13T00:25:06.196] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:06.228] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:25:06.251] [INFO] cheese - inserting 1000 documents. first: Moskwa, Łódź Voivodeship and last: Reformed Church in Transylvania -[2018-02-13T00:25:06.275] [INFO] cheese - batch complete in: 1.871 secs -[2018-02-13T00:25:06.292] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:25:06.344] [INFO] cheese - inserting 1000 documents. first: Smoke Johnson and last: YPPH -[2018-02-13T00:25:06.405] [INFO] cheese - inserting 1000 documents. first: Piwauwau and last: Open Source Windows Software List -[2018-02-13T00:25:06.413] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:25:06.438] [INFO] cheese - inserting 1000 documents. first: Category:1920s disestablishments in Kansas and last: Wikipedia:Miscellany for deletion/User:Ryanasaurus0077/Obi-Wan Kenobi -[2018-02-13T00:25:06.449] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:25:06.505] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:25:06.560] [INFO] cheese - inserting 1000 documents. first: File:Pourchot-026.jpg and last: Filipino condiments -[2018-02-13T00:25:06.586] [INFO] cheese - inserting 1000 documents. first: Cassolette and last: Boxing at the 2002 South American Games -[2018-02-13T00:25:06.592] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:25:06.629] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:25:06.680] [INFO] cheese - inserting 1000 documents. first: List of flags of Australia and last: Category:Lleida Esportiu footballers -[2018-02-13T00:25:06.747] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:25:06.795] [INFO] cheese - inserting 1000 documents. first: File:WhenWarIsOver.JPG and last: Crescent sign -[2018-02-13T00:25:06.831] [INFO] cheese - inserting 1000 documents. first: Measuring Attractiveness by a Categorical Based Evaluation Technique (MACBETH) and last: Metropolitan Utah -[2018-02-13T00:25:06.845] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:25:06.873] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:06.925] [INFO] cheese - inserting 1000 documents. first: Majnu (disambiguation) and last: Jacob Margido Esp -[2018-02-13T00:25:06.934] [INFO] cheese - inserting 1000 documents. first: Gulong ng Palad and last: La Pérouse, Jean François de Galaup, Comte de -[2018-02-13T00:25:06.998] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:07.003] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:25:07.039] [INFO] cheese - inserting 1000 documents. first: Chuang Chih-yuan and last: Category:Ships built in Australia -[2018-02-13T00:25:07.082] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:25:07.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/List of World War I aces credited with 9 victories and last: Vukadinović -[2018-02-13T00:25:07.155] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:25:07.226] [INFO] cheese - inserting 1000 documents. first: HK Liepāja and last: Gretta -[2018-02-13T00:25:07.245] [INFO] cheese - inserting 1000 documents. first: Van Riebeeck Decoration and last: Technics and Time, 1 -[2018-02-13T00:25:07.261] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:25:07.299] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:07.362] [INFO] cheese - inserting 1000 documents. first: 2000 NatWest Trophy and last: Template:Hildebr. -[2018-02-13T00:25:07.400] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:25:07.426] [INFO] cheese - inserting 1000 documents. first: West Las Vegas Schools and last: Fredrick News Post -[2018-02-13T00:25:07.468] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:07.471] [INFO] cheese - inserting 1000 documents. first: Vukadinovic and last: Portal:Jane Austen/Did you know/10 -[2018-02-13T00:25:07.516] [INFO] cheese - inserting 1000 documents. first: Pygmy gerbil and last: Fabijan Sovagovic -[2018-02-13T00:25:07.584] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:25:07.633] [INFO] cheese - inserting 1000 documents. first: Pantothenic acid and last: 970s BC -[2018-02-13T00:25:07.674] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:25:07.711] [INFO] cheese - inserting 1000 documents. first: Channel 40 low-power TV stations in the United States and last: ABT Sportsline -[2018-02-13T00:25:07.815] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:25:07.968] [INFO] cheese - batch complete in: 1.693 secs -[2018-02-13T00:25:08.120] [INFO] cheese - inserting 1000 documents. first: Swallow (Zhao Wei album) and last: Efrenk River -[2018-02-13T00:25:08.134] [INFO] cheese - inserting 1000 documents. first: The Amateur View and last: Maboroshi no Daichi -[2018-02-13T00:25:08.259] [INFO] cheese - inserting 1000 documents. first: File:2004 Summer Olympics logo.svg and last: 2008 Summer Olympics medal winners -[2018-02-13T00:25:08.257] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:25:08.297] [INFO] cheese - inserting 1000 documents. first: Portal:Jane Austen/Did you know/11 and last: Settle-Carlisle Line -[2018-02-13T00:25:08.302] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:25:08.380] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:25:08.430] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:25:08.446] [INFO] cheese - inserting 1000 documents. first: Parco Natura Viva and last: Ferlin Eugene Husky -[2018-02-13T00:25:08.502] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:25:08.547] [INFO] cheese - inserting 1000 documents. first: Quintiliano H. de Mesquita and last: Ben and Me (movie) -[2018-02-13T00:25:08.603] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T00:25:08.645] [INFO] cheese - inserting 1000 documents. first: Dai Rees (rugby league born c. 1885) and last: Duke of Lancaster's -[2018-02-13T00:25:08.685] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:08.728] [INFO] cheese - inserting 1000 documents. first: Sardinita De Salado and last: File:Another Step Closer to You.jpg -[2018-02-13T00:25:08.763] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:25:08.805] [INFO] cheese - inserting 1000 documents. first: Medina High School (Ohio) and last: File:Karoly-Szabo-October-6-1953x.jpg -[2018-02-13T00:25:08.814] [INFO] cheese - inserting 1000 documents. first: Herb Parker Stadium and last: Königstein (Taunus) -[2018-02-13T00:25:08.821] [INFO] cheese - inserting 1000 documents. first: 2015 Pan American Games torch relay and last: NIH funding -[2018-02-13T00:25:08.854] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:25:08.860] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:25:08.864] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:25:09.055] [INFO] cheese - inserting 1000 documents. first: List of episodes of Power Rangers and last: Chichester Samuel Parkinson-Fortescue, 1st Baron Carlingford -[2018-02-13T00:25:09.101] [INFO] cheese - inserting 1000 documents. first: Template:RadioDept and last: Wikipedia:Articles for deletion/Broughton Anglican College -[2018-02-13T00:25:09.173] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:25:09.206] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:09.328] [INFO] cheese - inserting 1000 documents. first: Common Grass Carp and last: Chanon Lake -[2018-02-13T00:25:09.344] [INFO] cheese - inserting 1000 documents. first: Category:Insignia propers of the Order of the Aztec Eagle and last: Edwin Scott Gaustad -[2018-02-13T00:25:09.352] [INFO] cheese - inserting 1000 documents. first: Minister of Housing, Spatial Planning and the Environment and last: AECB -[2018-02-13T00:25:09.392] [INFO] cheese - inserting 1000 documents. first: Hypoatherina and last: Kenny Heitz -[2018-02-13T00:25:09.392] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:25:09.408] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:25:09.415] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:25:09.459] [INFO] cheese - inserting 1000 documents. first: 980s BC and last: Lake Baikal -[2018-02-13T00:25:09.489] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:25:09.581] [INFO] cheese - batch complete in: 1.609 secs -[2018-02-13T00:25:09.778] [INFO] cheese - inserting 1000 documents. first: File:Nipawin Hawks Logo.svg and last: Caroline Healey Dall -[2018-02-13T00:25:09.839] [INFO] cheese - inserting 1000 documents. first: Template:RubberBible53rd and last: M-5 -[2018-02-13T00:25:09.859] [INFO] cheese - inserting 1000 documents. first: Luis Estrada Paetau and last: Blue Army Tour -[2018-02-13T00:25:09.862] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:25:09.906] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/May 7 and last: Template:Sm -[2018-02-13T00:25:09.914] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:25:09.919] [INFO] cheese - inserting 1000 documents. first: Chavoley Lake and last: St James' Hospital, Leeds -[2018-02-13T00:25:09.919] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:25:09.935] [INFO] cheese - inserting 1000 documents. first: Madrid Municipal Police and last: A-B foam -[2018-02-13T00:25:09.964] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:25:09.968] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:25:09.979] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:10.231] [INFO] cheese - inserting 1000 documents. first: BACTIBASE and last: Wikipedia:NONCE -[2018-02-13T00:25:10.297] [INFO] cheese - inserting 1000 documents. first: 1997 FINA Short Course World Championships – Women's 4x100m Medley Relay and last: Federal League Park (Buffalo) -[2018-02-13T00:25:10.300] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:25:10.331] [INFO] cheese - inserting 1000 documents. first: File:Different Times Playbill.jpg and last: Žurena -[2018-02-13T00:25:10.335] [INFO] cheese - inserting 1000 documents. first: Template:Algoma Central style and last: Georg Grün -[2018-02-13T00:25:10.356] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:25:10.380] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:25:10.384] [INFO] cheese - inserting 1000 documents. first: 2006-07 UEFA Cup and last: Our Lady of Bechouat -[2018-02-13T00:25:10.397] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:25:10.432] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:10.480] [INFO] cheese - inserting 1000 documents. first: El Djem and last: Octafluoropropane (data page) -[2018-02-13T00:25:10.541] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:25:10.675] [INFO] cheese - inserting 1000 documents. first: Xenotaca and last: Smith Shoe Shop -[2018-02-13T00:25:10.710] [INFO] cheese - inserting 1000 documents. first: The Girl With the Red Riding Hood and last: Sonnenkopf -[2018-02-13T00:25:10.716] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:10.766] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:10.794] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dr sreeharii and last: Margarones tritonias -[2018-02-13T00:25:10.804] [INFO] cheese - inserting 1000 documents. first: Union de la Critique de Cinéma and last: Ken Garing -[2018-02-13T00:25:10.837] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:25:10.849] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:10.880] [INFO] cheese - inserting 1000 documents. first: Haut Bages Liberal and last: David Aldrich -[2018-02-13T00:25:10.929] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:25:11.022] [INFO] cheese - inserting 1000 documents. first: Heirloom tomato and last: The Light at the End of the World (My Dying Bride album) -[2018-02-13T00:25:11.073] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:11.101] [INFO] cheese - inserting 1000 documents. first: File:AshteadLogo.PNG and last: Ditte Kotzian -[2018-02-13T00:25:11.104] [INFO] cheese - inserting 1000 documents. first: Sonntagshorn and last: Wheego Whip LiFe -[2018-02-13T00:25:11.108] [INFO] cheese - inserting 1000 documents. first: Yam and last: Cocoa programming -[2018-02-13T00:25:11.144] [INFO] cheese - inserting 1000 documents. first: Margarodes nereis and last: 2004 in French television -[2018-02-13T00:25:11.143] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:25:11.148] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:25:11.176] [INFO] cheese - inserting 1000 documents. first: Amanda Jacqueline Redman and last: Tom Rice -[2018-02-13T00:25:11.243] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T00:25:11.267] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:25:11.277] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:11.397] [INFO] cheese - inserting 1000 documents. first: Central Bank of United Arab Emirates and last: Telephone Organization of Thailand FC -[2018-02-13T00:25:11.478] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:25:11.699] [INFO] cheese - inserting 1000 documents. first: Vivus Inc. and last: Hummelsberg (Schwäbische Alb) -[2018-02-13T00:25:11.707] [INFO] cheese - inserting 1000 documents. first: Z9 and last: Category:Halcyonidae -[2018-02-13T00:25:11.719] [INFO] cheese - inserting 1000 documents. first: Return of the Ankh and last: Scottish Fire and Rescue Service -[2018-02-13T00:25:11.724] [INFO] cheese - inserting 1000 documents. first: Mediterranean seabass and last: Wikipedia:Articles for deletion/List of socialists from Eastern Europe -[2018-02-13T00:25:11.742] [INFO] cheese - inserting 1000 documents. first: Zineb El Rhazoui and last: Jha (Indic) -[2018-02-13T00:25:11.759] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:25:11.794] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:25:11.799] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:11.803] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:25:11.848] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:25:11.979] [INFO] cheese - inserting 1000 documents. first: Zhaotong Airport and last: Cronulla Riot -[2018-02-13T00:25:12.041] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:25:12.167] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jet-CD and last: Daikanbō Station -[2018-02-13T00:25:12.175] [INFO] cheese - inserting 1000 documents. first: Adriaan Backer and last: Salah Dessouki -[2018-02-13T00:25:12.253] [INFO] cheese - inserting 1000 documents. first: Category:1992 disestablishments in Kansas and last: List of 2015 UCI ProTeams and riders -[2018-02-13T00:25:12.280] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:12.300] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:12.322] [INFO] cheese - inserting 1000 documents. first: Georges Goyon and last: Bandarik -[2018-02-13T00:25:12.342] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:25:12.370] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:25:12.471] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 304 and last: George Cram Cook -[2018-02-13T00:25:12.491] [INFO] cheese - inserting 1000 documents. first: Tales of the Beanworld and last: Germantown Academy -[2018-02-13T00:25:12.515] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:25:12.583] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:25:12.697] [INFO] cheese - inserting 1000 documents. first: Judeo-Georgian language and last: Sakigake!! Otoko Juku -[2018-02-13T00:25:12.792] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:25:12.832] [INFO] cheese - inserting 1000 documents. first: Category:Auto GP and last: Calliaster -[2018-02-13T00:25:12.847] [INFO] cheese - inserting 1000 documents. first: 2013–15 detention of Al Jazeera journalists by Egypt and last: Tax refund theft in the United States -[2018-02-13T00:25:12.876] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:25:12.888] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:25:12.890] [INFO] cheese - inserting 1000 documents. first: Valchi Dol and last: Bârgăuani -[2018-02-13T00:25:12.932] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:25:13.010] [INFO] cheese - inserting 1000 documents. first: Second Arab-Israeli War and last: Scabbers -[2018-02-13T00:25:13.031] [INFO] cheese - inserting 1000 documents. first: Fledgling Phoenix and last: Linjiang Campaign -[2018-02-13T00:25:13.083] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:25:13.090] [INFO] cheese - batch complete in: 1.847 secs -[2018-02-13T00:25:13.141] [INFO] cheese - inserting 1000 documents. first: Tavringer Romani and last: Euspira notabilis -[2018-02-13T00:25:13.141] [INFO] cheese - inserting 1000 documents. first: Syllepte rhyparialis and last: Château de la Garoupe -[2018-02-13T00:25:13.150] [INFO] cheese - inserting 1000 documents. first: Category:Land speed record people and last: Thakur Ram Singh(Revolutionary) -[2018-02-13T00:25:13.165] [INFO] cheese - inserting 1000 documents. first: David Eli Lilienthal and last: Festival Prijateljstva -[2018-02-13T00:25:13.177] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:25:13.184] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:25:13.189] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:25:13.249] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:25:13.269] [INFO] cheese - inserting 1000 documents. first: Tug of war at the 1906 Summer Olympics and last: Tessanne Chin -[2018-02-13T00:25:13.315] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:25:13.527] [INFO] cheese - inserting 1000 documents. first: Portal:Architecture/Selected picture/9 and last: Chubin, Razavi Khorasan -[2018-02-13T00:25:13.535] [INFO] cheese - inserting 1000 documents. first: Albert Blue and last: Herbert Perez -[2018-02-13T00:25:13.543] [INFO] cheese - inserting 1000 documents. first: Someone Like Me / Right Now 2004 and last: LSA (Drug) -[2018-02-13T00:25:13.562] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:25:13.573] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:25:13.617] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:25:13.628] [INFO] cheese - inserting 1000 documents. first: Ái (digraph) and last: General purpose macroprocessor -[2018-02-13T00:25:13.681] [INFO] cheese - inserting 1000 documents. first: Euspira obtusa and last: Surviving Summer -[2018-02-13T00:25:13.690] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:13.727] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:25:13.750] [INFO] cheese - inserting 1000 documents. first: Fataluku and last: Padjadjaran University -[2018-02-13T00:25:13.802] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:25:13.891] [INFO] cheese - inserting 1000 documents. first: Chubain and last: New School for the Arts -[2018-02-13T00:25:13.955] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:14.037] [INFO] cheese - inserting 1000 documents. first: Battle of Clitheroe and last: Attorneys-General for England and Wales -[2018-02-13T00:25:14.087] [INFO] cheese - inserting 1000 documents. first: Category:Kharkiv National University of Economics and last: Racemic methamphetamine -[2018-02-13T00:25:14.137] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:25:14.160] [INFO] cheese - inserting 1000 documents. first: Supriyadi and last: File:Pub (Đorđe Balašević album - cover art).jpg -[2018-02-13T00:25:14.193] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:25:14.226] [INFO] cheese - inserting 1000 documents. first: J. E. Thorold Rogers and last: Arkell Museum -[2018-02-13T00:25:14.277] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:25:14.331] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:25:14.458] [INFO] cheese - inserting 1000 documents. first: Fabrizio Faniello and last: Rock Dating -[2018-02-13T00:25:14.477] [INFO] cheese - inserting 1000 documents. first: Category:Fossil taxa described in 1941 and last: Wikipedia:Featured list candidates/List of Malmö FF players/archive1 -[2018-02-13T00:25:14.536] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:25:14.548] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:25:14.587] [INFO] cheese - inserting 1000 documents. first: Lake Zurich and last: Ptolemy III Euergetes -[2018-02-13T00:25:14.691] [INFO] cheese - inserting 1000 documents. first: Heroes (Måns Zelmerlöw song) and last: Nokia Cinemagraph -[2018-02-13T00:25:14.708] [INFO] cheese - batch complete in: 1.618 secs -[2018-02-13T00:25:14.746] [INFO] cheese - inserting 1000 documents. first: Petrus de Aquileia and last: Category:People from Lorain, Ohio -[2018-02-13T00:25:14.811] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:25:14.827] [INFO] cheese - inserting 1000 documents. first: An Ordinale Kernewek and last: Mark Wood (bishop) -[2018-02-13T00:25:14.866] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:25:14.936] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:25:14.979] [INFO] cheese - inserting 1000 documents. first: Palinurus mauritanicus and last: File:Firma vertical.png -[2018-02-13T00:25:15.054] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:25:15.298] [INFO] cheese - inserting 1000 documents. first: E.V.Saroja and last: Tree chart -[2018-02-13T00:25:15.300] [INFO] cheese - inserting 1000 documents. first: Riga, Gulf of and last: Showtime (film) -[2018-02-13T00:25:15.395] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:25:15.397] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:25:15.420] [INFO] cheese - inserting 1000 documents. first: Jember Fashion Carnival and last: Template:Infobox Song Contest/Eurovision Young Musicians 1996 -[2018-02-13T00:25:15.521] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:25:15.541] [INFO] cheese - inserting 1000 documents. first: NDC-GR and last: Immolator -[2018-02-13T00:25:15.608] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:25:15.633] [INFO] cheese - inserting 1000 documents. first: Hassan Khairat and last: Kuanjie Three-self Patriotic Church -[2018-02-13T00:25:15.717] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:25:15.725] [INFO] cheese - inserting 1000 documents. first: Find the Lady (1956 film) and last: Michael Weinstein (disambiguation) -[2018-02-13T00:25:15.801] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:25:15.816] [INFO] cheese - inserting 1000 documents. first: Uwini and last: U.K. Ambassador to Costa Rica -[2018-02-13T00:25:15.942] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:25:16.110] [INFO] cheese - inserting 1000 documents. first: Charles Vincent and last: F Scott -[2018-02-13T00:25:16.128] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Song Contest/Eurovision Young Musicians 1998 and last: Wikipedia:Articles for deletion/The Lion Story Bible -[2018-02-13T00:25:16.211] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:25:16.216] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:25:16.230] [INFO] cheese - inserting 1000 documents. first: Template:Afghanistan-judo-bio-stub and last: 1932 Winter Olympics medal count -[2018-02-13T00:25:16.278] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SBB left/S25 and last: Rcms -[2018-02-13T00:25:16.332] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:25:16.340] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:25:16.351] [INFO] cheese - inserting 1000 documents. first: Dan Weinstein (disambiguation) and last: Homosexual rights in Mauritania -[2018-02-13T00:25:16.399] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:25:16.477] [INFO] cheese - inserting 1000 documents. first: U. K. Ambassador to Costa Rica and last: Nick Cannon Presents: Wild 'n Out -[2018-02-13T00:25:16.527] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:25:16.616] [INFO] cheese - inserting 1000 documents. first: Category:1916–17 in Swedish football and last: Category:Beninese awards -[2018-02-13T00:25:16.667] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:16.745] [INFO] cheese - inserting 1000 documents. first: FCC song and last: Holly Bluff -[2018-02-13T00:25:16.774] [INFO] cheese - inserting 1000 documents. first: 1960 Winter Olympics medal count and last: Category:Filipino sport shooters -[2018-02-13T00:25:16.779] [INFO] cheese - inserting 1000 documents. first: Comic-relief and last: Category:J. G. Thirlwell albums -[2018-02-13T00:25:16.828] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:16.855] [INFO] cheese - inserting 1000 documents. first: Strider Academy and last: Category:Time (magazine) articles -[2018-02-13T00:25:16.862] [INFO] cheese - inserting 1000 documents. first: Pistacia lentiscus and last: Graptolithina -[2018-02-13T00:25:16.869] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:25:16.875] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:25:16.940] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:17.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject SUNY/Active participants and last: Osmanthus bibracteatus -[2018-02-13T00:25:17.034] [INFO] cheese - batch complete in: 2.326 secs -[2018-02-13T00:25:17.095] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:25:17.163] [INFO] cheese - inserting 1000 documents. first: Category:Bahamian awards and last: UK threat level -[2018-02-13T00:25:17.208] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:17.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Donation appeal ideas and last: Waiting Room (band) -[2018-02-13T00:25:17.300] [INFO] cheese - inserting 1000 documents. first: The Álvaro de Bazán (F101) and last: Wikipedia:Articles for deletion/Armando Cesari -[2018-02-13T00:25:17.321] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:25:17.324] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/AMX-30E and last: Hilton Head Island-Beaufort Micropolitan Statistical Area -[2018-02-13T00:25:17.373] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:25:17.392] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:25:17.465] [INFO] cheese - inserting 1000 documents. first: File:New Jersey Trenton.png and last: Saint Alphonsus Liguori -[2018-02-13T00:25:17.475] [INFO] cheese - inserting 1000 documents. first: Osmanthus ilicifolius and last: U. K. Ambassador to Finland -[2018-02-13T00:25:17.543] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:17.542] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:25:17.629] [INFO] cheese - inserting 1000 documents. first: Estació del Nord Sports Hall and last: File:Telford Tigers Logo.png -[2018-02-13T00:25:17.694] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:25:17.831] [INFO] cheese - inserting 1000 documents. first: Esther Mae Nesbitt House and last: Faschnaut Day -[2018-02-13T00:25:17.871] [INFO] cheese - inserting 1000 documents. first: Henny ter Weer and last: Ingeborg Krog -[2018-02-13T00:25:17.880] [INFO] cheese - inserting 1000 documents. first: UK Ambassador to Finland and last: Voltz (disambiguation) -[2018-02-13T00:25:17.883] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:25:17.894] [INFO] cheese - inserting 1000 documents. first: Hilton Head Island-Beaufort Micropolitan Area and last: Category:State law enforcement agencies of Iowa -[2018-02-13T00:25:17.918] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:17.921] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:25:17.952] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:25:18.087] [INFO] cheese - inserting 1000 documents. first: Liguori, Saint Alphonsus and last: Peace of Vasvar -[2018-02-13T00:25:18.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/derefer.unbubble.eu and last: Indian General Elections 2009 -[2018-02-13T00:25:18.142] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:25:18.145] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:18.212] [INFO] cheese - inserting 1000 documents. first: Mauritius India Tax Treaty and last: William Rigby -[2018-02-13T00:25:18.224] [INFO] cheese - inserting 1000 documents. first: Sir William Blackett, 1st Baronet of Matfen and last: David DeGraff House -[2018-02-13T00:25:18.240] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:25:18.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gentlemen's agreement and last: Slinger Super Speedway -[2018-02-13T00:25:18.273] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:25:18.308] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:25:18.381] [INFO] cheese - inserting 1000 documents. first: Li Yuwei and last: Cəfərli, Gadabay -[2018-02-13T00:25:18.425] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:25:18.459] [INFO] cheese - inserting 1000 documents. first: Alice in Wonderland (1933 film) and last: Draconic month -[2018-02-13T00:25:18.527] [INFO] cheese - inserting 1000 documents. first: Schedonorus ferrugineus and last: Panathinaikos Athletics -[2018-02-13T00:25:18.536] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T00:25:18.609] [INFO] cheese - inserting 1000 documents. first: Brâncuși and last: FC Steaua București season 2005-06 -[2018-02-13T00:25:18.613] [INFO] cheese - inserting 1000 documents. first: Carousel (Blink-182 song) and last: Last of the Runaways -[2018-02-13T00:25:18.621] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:25:18.639] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:25:18.677] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:18.678] [INFO] cheese - inserting 1000 documents. first: File:EmptySouls.jpg and last: Norwegian Coast Guard -[2018-02-13T00:25:18.704] [INFO] cheese - inserting 1000 documents. first: Melbourne/Essendon Airport and last: Miss Teen All American -[2018-02-13T00:25:18.724] [INFO] cheese - inserting 1000 documents. first: Operation Iraqi Freedom VI and last: USS Matagorda (AG-122) -[2018-02-13T00:25:18.735] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:25:18.761] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:25:18.774] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:25:18.888] [INFO] cheese - inserting 1000 documents. first: Fænø and last: Județul Lăpușna -[2018-02-13T00:25:18.923] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:25:18.971] [INFO] cheese - inserting 1000 documents. first: Andy Balbirnie and last: Category:Hamdanid emirate of Mosul -[2018-02-13T00:25:19.006] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:25:19.066] [INFO] cheese - inserting 1000 documents. first: Subhanahongsa Award and last: G.G. Grice Jr -[2018-02-13T00:25:19.105] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:19.107] [INFO] cheese - inserting 1000 documents. first: Walsh County Courthouse and last: File:Cento anni d'amore.jpg -[2018-02-13T00:25:19.132] [INFO] cheese - inserting 1000 documents. first: Jidov Cemetery Giurtelecu Șimleului and last: Category:Museums established in 1794 -[2018-02-13T00:25:19.137] [INFO] cheese - inserting 1000 documents. first: USCGC Humboldt (WAVP-373) and last: Wikipedia:Articles for deletion/Justin Meyer -[2018-02-13T00:25:19.136] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:19.152] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:25:19.160] [INFO] cheese - inserting 1000 documents. first: Clash (magazine) and last: Villanovan Culture -[2018-02-13T00:25:19.180] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:19.212] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:25:19.368] [INFO] cheese - inserting 1000 documents. first: Template:LG phones and last: Hermann Maurer -[2018-02-13T00:25:19.404] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:25:19.410] [INFO] cheese - inserting 1000 documents. first: Template:User interest Bahamas/doc and last: Template:ISO 3166 code-3 UY -[2018-02-13T00:25:19.432] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:25:19.442] [INFO] cheese - inserting 1000 documents. first: Ipomoea pes-caprae subsp. brasiliensis and last: U. K. Ambassador to Switzerland -[2018-02-13T00:25:19.443] [INFO] cheese - inserting 1000 documents. first: Eva Philipse and last: Public key pair -[2018-02-13T00:25:19.473] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:25:19.482] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:25:19.487] [INFO] cheese - inserting 1000 documents. first: Anomalistic month and last: BCP -[2018-02-13T00:25:19.490] [INFO] cheese - inserting 1000 documents. first: Mid Atlantic Skateboard Series and last: List of Victoria Crosses by School -[2018-02-13T00:25:19.537] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:25:19.554] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:25:19.615] [INFO] cheese - inserting 1000 documents. first: Choceň and last: Paracas culture -[2018-02-13T00:25:19.648] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code-3 UZ and last: Template:ISO 3166 numeric FI -[2018-02-13T00:25:19.666] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:19.674] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:25:19.705] [INFO] cheese - inserting 1000 documents. first: Thijs Waterink and last: Category:People of Yemeni descent -[2018-02-13T00:25:19.744] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:25:19.752] [INFO] cheese - inserting 1000 documents. first: River Eula and last: Category:Sports venues completed in 2010 -[2018-02-13T00:25:19.804] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:25:19.833] [INFO] cheese - inserting 1000 documents. first: List of Vietnamese American Groups and last: Pic d'Artsinol -[2018-02-13T00:25:19.833] [INFO] cheese - inserting 1000 documents. first: Category:Recipients of the Merit Order of the Bavarian Crown and last: File:Royal Navy Medical Assistant Insignia.JPG -[2018-02-13T00:25:19.864] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:25:19.890] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:25:19.943] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 numeric FR and last: John Shadden -[2018-02-13T00:25:19.967] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:25:20.028] [INFO] cheese - inserting 1000 documents. first: EN postal area and last: Do You Really Want To Hurt Me -[2018-02-13T00:25:20.066] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:25:20.177] [INFO] cheese - inserting 1000 documents. first: Hal Pereira and last: Estonian flag -[2018-02-13T00:25:20.235] [INFO] cheese - inserting 1000 documents. first: Category:Olympics gymnastics team navigational boxes and last: Marina Salandy-Brown -[2018-02-13T00:25:20.260] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:25:20.287] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:25:20.301] [INFO] cheese - inserting 1000 documents. first: Big Red (mascot) and last: Satoshi Shimizu -[2018-02-13T00:25:20.321] [INFO] cheese - inserting 1000 documents. first: NMIMS,Shirpur and last: Utzschneider and Fraunhofer -[2018-02-13T00:25:20.349] [INFO] cheese - inserting 1000 documents. first: Silvașu de Jos and last: Category:Canadian military personnel killed in the War in Afghanistan (2001–2014) -[2018-02-13T00:25:20.354] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:25:20.365] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:25:20.477] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:25:20.732] [INFO] cheese - inserting 1000 documents. first: HRSMN and last: Disc Jockey Jamboree -[2018-02-13T00:25:20.783] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:25:20.803] [INFO] cheese - inserting 1000 documents. first: Betty Erde and last: Federación Estatal de Lesbianas, Gays, Transexuales y Bisexuales -[2018-02-13T00:25:20.827] [INFO] cheese - inserting 1000 documents. first: G. und S. Merz and last: Wikipedia:Suspected copyright violations/2015-03-05 -[2018-02-13T00:25:20.840] [INFO] cheese - inserting 1000 documents. first: Fishing boat (traditional) and last: Abla Ki Shakti -[2018-02-13T00:25:20.854] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:25:20.858] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:25:20.875] [INFO] cheese - inserting 1000 documents. first: Potowatomi and last: Michael Hogan -[2018-02-13T00:25:20.886] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:25:20.889] [INFO] cheese - inserting 1000 documents. first: Air Vallée Holding and last: Bombing of enkhuizen -[2018-02-13T00:25:20.940] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:20.960] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:25:21.073] [INFO] cheese - inserting 1000 documents. first: Video Electronics Standards Association and last: Stanley Cup -[2018-02-13T00:25:21.140] [INFO] cheese - inserting 1000 documents. first: Category:People from Rumphi District and last: Iridient Developer -[2018-02-13T00:25:21.163] [INFO] cheese - inserting 1000 documents. first: Category:Shiraz University alumni and last: Mona Lisas and Mad Hatters -[2018-02-13T00:25:21.168] [INFO] cheese - batch complete in: 1.614 secs -[2018-02-13T00:25:21.181] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:25:21.229] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:21.249] [INFO] cheese - inserting 1000 documents. first: Akbar Ansari and last: Wikipedia:Reference desk/Archives/Miscellaneous/2008 August 11 -[2018-02-13T00:25:21.295] [INFO] cheese - inserting 1000 documents. first: File:Buckcherry all night long.png and last: The Right Worshipful -[2018-02-13T00:25:21.295] [INFO] cheese - inserting 1000 documents. first: Ante Mašić and last: File:Violent Rome.jpg -[2018-02-13T00:25:21.294] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:25:21.333] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:21.351] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:21.418] [INFO] cheese - inserting 1000 documents. first: Maria Stuart and last: Black Sun Productions -[2018-02-13T00:25:21.485] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:25:21.589] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/The dress and last: Category:1965 disestablishments in Minnesota -[2018-02-13T00:25:21.663] [INFO] cheese - inserting 1000 documents. first: Craig Johnson (football coach) and last: Wikipedia:Articles for deletion/Suite101.com (3rd nomination) -[2018-02-13T00:25:21.668] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:25:21.688] [INFO] cheese - inserting 1000 documents. first: Setter (computer science) and last: Dead & Buried -[2018-02-13T00:25:21.708] [INFO] cheese - inserting 1000 documents. first: Promysel Narimanova and last: Roads in Calgary -[2018-02-13T00:25:21.732] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:25:21.759] [INFO] cheese - inserting 1000 documents. first: Polychrome brickwork and last: Wikipedia:Motto of the day/August 28, 2012 -[2018-02-13T00:25:21.796] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:25:21.798] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:25:21.841] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:25:22.024] [INFO] cheese - inserting 1000 documents. first: Սարգիս Տիրանեան and last: Baldwin High School (Baldwin City, Kansas) -[2018-02-13T00:25:22.065] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:22.192] [INFO] cheese - inserting 1000 documents. first: Sintashta and last: Wikipedia:Articles for deletion/North Flinty Knoll -[2018-02-13T00:25:22.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject United States Public Policy/Assessment log and last: Progun -[2018-02-13T00:25:22.250] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:25:22.272] [INFO] cheese - inserting 1000 documents. first: Abdullah Al-Sooli and last: COBIS -[2018-02-13T00:25:22.273] [INFO] cheese - inserting 1000 documents. first: Offset (wheel) and last: Heterozius -[2018-02-13T00:25:22.320] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:25:22.339] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:22.348] [INFO] cheese - inserting 1000 documents. first: File:Here's Jaki.jpg and last: Charles Zomphier -[2018-02-13T00:25:22.359] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:25:22.450] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:25:22.502] [INFO] cheese - inserting 1000 documents. first: Max Vernon Mathews and last: Florida Gators women's cross country -[2018-02-13T00:25:22.558] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:25:22.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Userboxes/Wikipedia/Stats and tools/edit count and last: ATCvet code QA03AX10 -[2018-02-13T00:25:22.747] [INFO] cheese - inserting 1000 documents. first: Ofra Haza and last: Ocean thermal energy conversion -[2018-02-13T00:25:22.755] [INFO] cheese - inserting 1000 documents. first: File:Lumines-roundabout-screenshot.png and last: Qaravəlli, Shamakhi -[2018-02-13T00:25:22.780] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:25:22.786] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:25:22.833] [INFO] cheese - inserting 1000 documents. first: Category:Roads in Hamilton, Ontario and last: Scott Tercero -[2018-02-13T00:25:22.834] [INFO] cheese - batch complete in: 1.666 secs -[2018-02-13T00:25:22.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Comics/To-do and last: Decision-matrix method -[2018-02-13T00:25:22.886] [INFO] cheese - inserting 1000 documents. first: File:TestFlight Icon.png and last: De Excidio (disambiguation) -[2018-02-13T00:25:22.890] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:25:22.913] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:25:22.920] [INFO] cheese - inserting 1000 documents. first: Ivan Opačak and last: File:Amersham Town F.C. logo.png -[2018-02-13T00:25:22.952] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:25:22.987] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:25:23.033] [INFO] cheese - inserting 1000 documents. first: ATC code A03AX11 and last: American football club -[2018-02-13T00:25:23.071] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:23.129] [INFO] cheese - inserting 1000 documents. first: 2008 UCLA Bruins football team and last: HIP 81657 -[2018-02-13T00:25:23.161] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:23.215] [INFO] cheese - inserting 1000 documents. first: Fairy stone (disambiguation) and last: World's busiest airports by aircraft movements -[2018-02-13T00:25:23.243] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:23.291] [INFO] cheese - inserting 1000 documents. first: ATC code A16A and last: 2010 Ontario/Quebec earthquake -[2018-02-13T00:25:23.305] [INFO] cheese - inserting 1000 documents. first: London Goodenough Trust and last: File:Chrispaul.jpg -[2018-02-13T00:25:23.329] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:25:23.340] [INFO] cheese - inserting 1000 documents. first: Carrion/Apologies to Insect Life and last: Choltice (Pardubice District) -[2018-02-13T00:25:23.364] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:25:23.397] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:23.400] [INFO] cheese - inserting 1000 documents. first: Category:Languages by word order and last: Philosophy of life sciences -[2018-02-13T00:25:23.447] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:25:23.517] [INFO] cheese - inserting 1000 documents. first: Category:Algeria location map templates and last: ATC code C09CA04 -[2018-02-13T00:25:23.520] [INFO] cheese - inserting 1000 documents. first: SAO 253651 and last: File:N&VTragedy.jpg -[2018-02-13T00:25:23.541] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:25:23.592] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:25:23.685] [INFO] cheese - inserting 1000 documents. first: World's busiest airports by cargo traffic and last: Japanese cherry tree -[2018-02-13T00:25:23.689] [INFO] cheese - inserting 1000 documents. first: File:Wadati-benioff-zone.png and last: Ermeni -[2018-02-13T00:25:23.712] [INFO] cheese - inserting 1000 documents. first: ATCvet code QC09CA04 and last: ATCvet code QD10AB05 -[2018-02-13T00:25:23.725] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:23.733] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:23.741] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:25:23.770] [INFO] cheese - inserting 1000 documents. first: Liberty Displaying the Arts and Sciences and last: Lake Kawaguchiko -[2018-02-13T00:25:23.810] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CNN and last: Template:Db-nonsense-notice-NPF/doc -[2018-02-13T00:25:23.810] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:25:23.849] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:25:24.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Saphiragold/Archive and last: Wikipedia:PC/F -[2018-02-13T00:25:24.069] [INFO] cheese - inserting 1000 documents. first: Brain aneurysm and last: Vanguard-class submarine -[2018-02-13T00:25:24.071] [INFO] cheese - inserting 1000 documents. first: Logically equivolent and last: Category:European Route of Industrial Heritage Anchor Points -[2018-02-13T00:25:24.098] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:25:24.112] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:24.133] [INFO] cheese - inserting 1000 documents. first: Category:ISO language articles citing sources other than Ethnologue and last: Björn Westerberg -[2018-02-13T00:25:24.159] [INFO] cheese - batch complete in: 1.325 secs -[2018-02-13T00:25:24.167] [INFO] cheese - inserting 1000 documents. first: Jason Castro (disambiguation) and last: Filip Krajinovic -[2018-02-13T00:25:24.170] [INFO] cheese - inserting 1000 documents. first: County Route 55 (Chemung County, New York) and last: Category:Wikipedia featured topics The X-Files (season 8) -[2018-02-13T00:25:24.185] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:24.196] [INFO] cheese - inserting 1000 documents. first: Sakuramachi Tennō and last: Luis Armando Reynoso -[2018-02-13T00:25:24.211] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:25:24.265] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:25:24.287] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:25:24.440] [INFO] cheese - inserting 1000 documents. first: Herman Berlinski (composer, organist and musicologist) and last: ATCvet code QH03BB01 -[2018-02-13T00:25:24.469] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:25:24.497] [INFO] cheese - inserting 1000 documents. first: Compute Unified Device Architecture and last: Journal of international affairs -[2018-02-13T00:25:24.553] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:24.695] [INFO] cheese - inserting 1000 documents. first: Greja Kristen Jawi Wetan and last: Jonathan Brooks House -[2018-02-13T00:25:24.710] [INFO] cheese - inserting 1000 documents. first: ATC code H03BB02 and last: ATCvet code QJ01DB03 -[2018-02-13T00:25:24.720] [INFO] cheese - inserting 1000 documents. first: Category:New Saint Andrews College faculty and last: 185th New York State Legislature -[2018-02-13T00:25:24.733] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:25:24.743] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:25:24.763] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:24.833] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics The X-Files (season 8) good content and last: Monaville, Illinois -[2018-02-13T00:25:24.887] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:25:24.945] [INFO] cheese - inserting 1000 documents. first: ATC code J01DB04 and last: ATC code J06BB -[2018-02-13T00:25:24.980] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:25:25.049] [INFO] cheese - inserting 1000 documents. first: Geoff Richardson (rugby dual code) and last: Flatiron (volcano) -[2018-02-13T00:25:25.052] [INFO] cheese - inserting 1000 documents. first: Central Valley High School (Spokane Valley, Washington) and last: Category:British American Tobacco people -[2018-02-13T00:25:25.077] [INFO] cheese - inserting 1000 documents. first: Bloomfield School District (Indiana) and last: Template:User Scouts (UK) -[2018-02-13T00:25:25.085] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:25:25.093] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:25:25.157] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:25:25.175] [INFO] cheese - inserting 1000 documents. first: U.S.S. Bibb and last: Lougheed Town Centre station -[2018-02-13T00:25:25.237] [INFO] cheese - inserting 1000 documents. first: Katcha language and last: Category:Canadian French -[2018-02-13T00:25:25.238] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:25:25.274] [INFO] cheese - inserting 1000 documents. first: ATC code J06BB01 and last: Category:The Bedroom Philosopher albums -[2018-02-13T00:25:25.329] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:25.330] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:25:25.434] [INFO] cheese - inserting 1000 documents. first: Jane Thornton and last: Can toi -[2018-02-13T00:25:25.463] [INFO] cheese - inserting 1000 documents. first: Pale Green Triangle and last: F2222A -[2018-02-13T00:25:25.473] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:25.506] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:25.541] [INFO] cheese - inserting 1000 documents. first: ATC code L04AB and last: Wikipedia:Miscellany for deletion/User:Jase 17 -[2018-02-13T00:25:25.542] [INFO] cheese - inserting 1000 documents. first: File:LOGO-ST4.jpg and last: Westport Landing -[2018-02-13T00:25:25.571] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:25:25.594] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:25:25.601] [INFO] cheese - inserting 1000 documents. first: Isaac D'Israeli and last: Collier County, Florida -[2018-02-13T00:25:25.664] [INFO] cheese - inserting 1000 documents. first: Category:Guinean academics and last: Tennis and Ski Warehouse -[2018-02-13T00:25:25.677] [INFO] cheese - batch complete in: 1.518 secs -[2018-02-13T00:25:25.708] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:25:25.823] [INFO] cheese - inserting 1000 documents. first: ATCvet code QN02AF01 and last: ATCvet code QN05CM -[2018-02-13T00:25:25.829] [INFO] cheese - inserting 1000 documents. first: Ka-Tet and last: Too Much Too Little Too Late -[2018-02-13T00:25:25.839] [INFO] cheese - inserting 1000 documents. first: 2008 Presidential election and last: Empire Connection -[2018-02-13T00:25:25.852] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:25:25.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kamerhiphop.com and last: Peltophryne -[2018-02-13T00:25:25.922] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:25:25.975] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:25:25.999] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:25:26.020] [INFO] cheese - inserting 1000 documents. first: Gang saw and last: Quality Schools International -[2018-02-13T00:25:26.126] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:26.161] [INFO] cheese - inserting 1000 documents. first: 540 area code and last: Template:Lighthouses of Trinity House -[2018-02-13T00:25:26.244] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:25:26.356] [INFO] cheese - inserting 1000 documents. first: ATC code N05CM01 and last: Maskan Bank -[2018-02-13T00:25:26.389] [INFO] cheese - inserting 1000 documents. first: Łukasz Pawłowski and last: Meta di Sorrento -[2018-02-13T00:25:26.402] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:25:26.417] [INFO] cheese - inserting 1000 documents. first: Mohammad Halilula and last: Women and Girls Lead Global -[2018-02-13T00:25:26.451] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:25:26.474] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:25:26.545] [INFO] cheese - inserting 1000 documents. first: Mikhail Bernadski and last: Vail Lake -[2018-02-13T00:25:26.659] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:25:26.664] [INFO] cheese - inserting 1000 documents. first: Category:Relational database management systems and last: Template:ISO 3166 name CI-19 -[2018-02-13T00:25:26.702] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:25:26.724] [INFO] cheese - inserting 1000 documents. first: Plesiatropha and last: Gw foote -[2018-02-13T00:25:26.800] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:25:26.870] [INFO] cheese - inserting 1000 documents. first: 1987 Australian Sports Car Championship and last: Disc form factors -[2018-02-13T00:25:26.927] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name CI-05 and last: Template:ISO 3166 name JO-MA -[2018-02-13T00:25:26.982] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:25:27.045] [INFO] cheese - inserting 1000 documents. first: File:BCWildlifeParklogo.gif and last: Bari Alphabet -[2018-02-13T00:25:27.030] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:25:27.081] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Co-op/Maximus2929 and last: Template:Did you know nominations/Nocomis platyrhynchus -[2018-02-13T00:25:27.094] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:25:27.167] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:25:27.231] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name JO-AQ and last: Template:ISO 3166 name PG-MBA -[2018-02-13T00:25:27.248] [INFO] cheese - inserting 1000 documents. first: Brookfield Township, LaSalle County, Illinois and last: Arena Football: Road to Glory -[2018-02-13T00:25:27.250] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:25:27.291] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:25:27.430] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name PG-MPL and last: Template:ISO 3166 name ES-BU -[2018-02-13T00:25:27.492] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:25:27.546] [INFO] cheese - inserting 1000 documents. first: Lake Point Tower and last: Frank Slaughter -[2018-02-13T00:25:27.587] [INFO] cheese - inserting 1000 documents. first: Trine Bakke Rognmo and last: Wichita National Forest -[2018-02-13T00:25:27.614] [INFO] cheese - inserting 1000 documents. first: Category:1690s in Sweden and last: Milla, Illinois -[2018-02-13T00:25:27.624] [INFO] cheese - inserting 1000 documents. first: The Beach (novel) and last: Ferdinand V of Spain -[2018-02-13T00:25:27.651] [INFO] cheese - inserting 1000 documents. first: Circulatory system of insects and last: Va Va Voom (disambiguation) -[2018-02-13T00:25:27.658] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:25:27.682] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:25:27.764] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:25:27.767] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name ES-S and last: Template:ISO 3166 name GB-GLS -[2018-02-13T00:25:27.785] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:25:27.822] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:25:27.909] [INFO] cheese - inserting 1000 documents. first: Space Marine Predator and last: California's 31st State Senate district -[2018-02-13T00:25:27.909] [INFO] cheese - batch complete in: 2.232 secs -[2018-02-13T00:25:28.002] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:25:28.150] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 name GB-GRE and last: ATCvet code QR05CB12 -[2018-02-13T00:25:28.182] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:28.246] [INFO] cheese - inserting 1000 documents. first: File:Living With Fibromyalgia (DVD cover).jpg and last: File:Addicted Tour.jpg -[2018-02-13T00:25:28.272] [INFO] cheese - inserting 1000 documents. first: File:Chapel123.jpg and last: Petrokimia Putra -[2018-02-13T00:25:28.293] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:25:28.334] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:25:28.375] [INFO] cheese - inserting 1000 documents. first: 2015 Toronto International Film Festival and last: Category:Trelleborgs FF templates -[2018-02-13T00:25:28.445] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:25:28.455] [INFO] cheese - inserting 1000 documents. first: Dollars & Sense and last: Exercise Deep Sabre -[2018-02-13T00:25:28.498] [INFO] cheese - inserting 1000 documents. first: Izačić and last: Wikipedia:Articles for deletion/Nene Thomas -[2018-02-13T00:25:28.533] [INFO] cheese - inserting 1000 documents. first: Ananas sativus and last: The pleasure paradox -[2018-02-13T00:25:28.546] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:25:28.531] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:25:28.634] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:25:28.785] [INFO] cheese - inserting 1000 documents. first: Gemma Mengual and last: A126 road (Great Britain) -[2018-02-13T00:25:28.836] [INFO] cheese - inserting 1000 documents. first: Katheryn Meaklim and last: Bors, Iran -[2018-02-13T00:25:28.850] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:25:28.966] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:25:29.134] [INFO] cheese - inserting 1000 documents. first: ATCvet code QS01HA and last: Plana, Bileća -[2018-02-13T00:25:29.153] [INFO] cheese - inserting 1000 documents. first: Category:Syrianska FC templates and last: Category:Films set in the United States Virgin Islands -[2018-02-13T00:25:29.219] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:25:29.270] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:25:29.290] [INFO] cheese - inserting 1000 documents. first: The paradox of hedonism and last: Jackson Kaujeua -[2018-02-13T00:25:29.383] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:25:29.392] [INFO] cheese - inserting 1000 documents. first: Charles Ross (British Army officer) and last: Acrolepiopsis chirapanthui -[2018-02-13T00:25:29.471] [INFO] cheese - inserting 1000 documents. first: A127 road (Great Britain) and last: Template:History of Belize -[2018-02-13T00:25:29.506] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:29.530] [INFO] cheese - inserting 1000 documents. first: Hungarianisation and last: White Esk -[2018-02-13T00:25:29.597] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:25:29.714] [INFO] cheese - inserting 1000 documents. first: Podgorje, Bileća and last: File:Ebony Eyes.jpg -[2018-02-13T00:25:29.718] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T00:25:29.763] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:25:29.841] [INFO] cheese - inserting 1000 documents. first: Folk metal and last: Biot–Savart law -[2018-02-13T00:25:29.907] [INFO] cheese - inserting 1000 documents. first: 873 area code and last: Orion Cinema -[2018-02-13T00:25:29.910] [INFO] cheese - inserting 1000 documents. first: File:Statue of Queen Victoria, Rosalind Park, Bendigo, Victoria, Australia.jpg and last: N. Prabhakar -[2018-02-13T00:25:29.932] [INFO] cheese - batch complete in: 2.023 secs -[2018-02-13T00:25:29.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Washitaw Nation and last: A654 road (Great Britain) -[2018-02-13T00:25:29.955] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:25:29.973] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:25:29.978] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:25:30.017] [INFO] cheese - inserting 1000 documents. first: Center versus periphery and last: Hernando Ruiz de Alarcón -[2018-02-13T00:25:30.059] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:25:30.182] [INFO] cheese - inserting 1000 documents. first: Morgan Jones (New York) and last: Unknown Soldier (film) -[2018-02-13T00:25:30.227] [INFO] cheese - inserting 1000 documents. first: Library of Ashurbanipal and last: David W. Harper -[2018-02-13T00:25:30.242] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:25:30.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steve Burke and last: A396 road (Great Britain) -[2018-02-13T00:25:30.283] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:25:30.283] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:25:30.292] [INFO] cheese - inserting 1000 documents. first: Mavzuna Chorieva and last: The Great Smoky Mountains -[2018-02-13T00:25:30.323] [INFO] cheese - inserting 1000 documents. first: File:SchemingSchemers1956onesheet.jpg and last: File:Garbage The Chemicals RSD.png -[2018-02-13T00:25:30.335] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:30.368] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:25:30.373] [INFO] cheese - inserting 1000 documents. first: Andrew Charles Anderson and last: 1972 in Northern Ireland -[2018-02-13T00:25:30.417] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:25:30.570] [INFO] cheese - inserting 1000 documents. first: W. K. George and last: SS Greater Buffalo -[2018-02-13T00:25:30.573] [INFO] cheese - inserting 1000 documents. first: Klingonese language and last: A4020 road (Great Britain) -[2018-02-13T00:25:30.588] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 683 BC and last: Alexandr Shvedov -[2018-02-13T00:25:30.611] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:25:30.626] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:30.661] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:30.676] [INFO] cheese - inserting 1000 documents. first: Tournament Capital Center and last: I-376 Bus. -[2018-02-13T00:25:30.707] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:25:30.725] [INFO] cheese - inserting 1000 documents. first: Lovekraft and last: August 28,1898 -[2018-02-13T00:25:30.779] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:30.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject military history and last: Wikipedia:Articles for deletion/FUDD -[2018-02-13T00:25:30.823] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:30.951] [INFO] cheese - inserting 1000 documents. first: Joffa Smith and last: Category:Colonial forts in Rhode Island -[2018-02-13T00:25:30.981] [INFO] cheese - inserting 1000 documents. first: Drone flute and last: De Vasa's hexagonal chess -[2018-02-13T00:25:30.986] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:30.997] [INFO] cheese - inserting 1000 documents. first: Levakend and last: Portal:Arctic/Selected article/9 -[2018-02-13T00:25:31.010] [INFO] cheese - inserting 1000 documents. first: Birket and last: Louis the 20th -[2018-02-13T00:25:31.040] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:25:31.051] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:25:31.073] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:25:31.138] [INFO] cheese - inserting 1000 documents. first: Thaworn Senniam and last: Sugar shanty -[2018-02-13T00:25:31.177] [INFO] cheese - inserting 1000 documents. first: Taylor County, Florida and last: SOM -[2018-02-13T00:25:31.181] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:25:31.256] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T00:25:31.440] [INFO] cheese - inserting 1000 documents. first: Template:Wofford Terriers football navbox and last: SpABdomain -[2018-02-13T00:25:31.476] [INFO] cheese - inserting 1000 documents. first: Minuscule 746 and last: M-protein -[2018-02-13T00:25:31.489] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:31.524] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2007 February 24 and last: Template:India Squad 1999 Cricket World Cup -[2018-02-13T00:25:31.557] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:25:31.571] [INFO] cheese - inserting 1000 documents. first: Louis Alphonse Gonzalve Victor Emmanuel Marc de Bourbon and last: Category:1750 establishments in Pennsylvania -[2018-02-13T00:25:31.593] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:25:31.602] [INFO] cheese - inserting 1000 documents. first: Template:SMUMustangsFBCoach and last: A6211 road (Great Britain) -[2018-02-13T00:25:31.642] [INFO] cheese - inserting 1000 documents. first: Desferrioxamine and last: Schofields, New South Wales -[2018-02-13T00:25:31.661] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:25:31.670] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:25:31.733] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:25:31.873] [INFO] cheese - inserting 1000 documents. first: Category:First Ladies of Zambia and last: File:TheNewBatmanAdventuresLogo.jpg -[2018-02-13T00:25:31.923] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:25:31.975] [INFO] cheese - inserting 1000 documents. first: George C. Read and last: 50th Regiment Infantry U.S. Colored Troops -[2018-02-13T00:25:31.990] [INFO] cheese - inserting 1000 documents. first: Raninder Singh and last: 2002 AFL Womens National Championships -[2018-02-13T00:25:32.028] [INFO] cheese - inserting 1000 documents. first: Malaysian expressway systems 6 and last: Guamal -[2018-02-13T00:25:32.057] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:25:32.063] [INFO] cheese - inserting 1000 documents. first: Washington's 15th Legislative District and last: Smith House (Bentonville, Arkansas) -[2018-02-13T00:25:32.068] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:25:32.089] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:32.137] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:32.249] [INFO] cheese - inserting 1000 documents. first: Wilhelm Normann and last: Istvan, Grof Tisza -[2018-02-13T00:25:32.325] [INFO] cheese - inserting 1000 documents. first: Quzan and last: Qal'eh-ye Mansuria -[2018-02-13T00:25:32.423] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:25:32.491] [INFO] cheese - inserting 1000 documents. first: Self-organizing map and last: Elliptical orbit -[2018-02-13T00:25:32.499] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:25:32.576] [INFO] cheese - inserting 1000 documents. first: 2003 AFL Womens National Championships and last: Template:1910 Helms Foundation NCAA Men's Basketball All-Americans -[2018-02-13T00:25:32.581] [INFO] cheese - batch complete in: 1.325 secs -[2018-02-13T00:25:32.631] [INFO] cheese - inserting 1000 documents. first: European historical fiction and last: Cumbria rail crash -[2018-02-13T00:25:32.646] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:32.661] [INFO] cheese - inserting 1000 documents. first: Opistognathus aurifons and last: Namanga (Tanzanian ward) -[2018-02-13T00:25:32.699] [INFO] cheese - inserting 1000 documents. first: Tetramorium pilosum and last: File:Five-More-Hours-Deorro-Chris-Brown.jpg -[2018-02-13T00:25:32.721] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:25:32.746] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:25:32.792] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:25:32.971] [INFO] cheese - inserting 1000 documents. first: Stevy Nzambe and last: Melaniparus cinerascens -[2018-02-13T00:25:33.041] [INFO] cheese - inserting 1000 documents. first: Punding and last: File:Virgin train at holyhead.jpg -[2018-02-13T00:25:33.049] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:25:33.135] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:25:33.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 June 24 and last: Anatoliy Nenartovich -[2018-02-13T00:25:33.297] [INFO] cheese - inserting 1000 documents. first: List of United States Supreme Court cases, volume 441 and last: Wikipedia:Featured article candidates/Google/archive2 -[2018-02-13T00:25:33.297] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:25:33.335] [INFO] cheese - inserting 1000 documents. first: Dene K'e language and last: Shinkawa Yua -[2018-02-13T00:25:33.348] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:25:33.381] [INFO] cheese - inserting 1000 documents. first: File:Both worlds 69.jpg and last: Tikunei Zohar -[2018-02-13T00:25:33.383] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:25:33.398] [INFO] cheese - inserting 1000 documents. first: Wild Days (song) and last: Relative survival rate -[2018-02-13T00:25:33.414] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:25:33.471] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:25:33.686] [INFO] cheese - inserting 1000 documents. first: OG RON C and last: Vecdaugava -[2018-02-13T00:25:33.733] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:33.739] [INFO] cheese - inserting 1000 documents. first: Aleksander Baumgardten and last: Samy naceri -[2018-02-13T00:25:33.747] [INFO] cheese - inserting 1000 documents. first: Category:2001 in South Africa and last: 2007 Canada Winter Games -[2018-02-13T00:25:33.765] [INFO] cheese - inserting 1000 documents. first: Category:2006 disestablishments in Wales and last: ETV+ -[2018-02-13T00:25:33.767] [INFO] cheese - inserting 1000 documents. first: File:Jodie Connor - Take You There.ogg and last: Ramadhan Saputra -[2018-02-13T00:25:33.795] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:25:33.804] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:25:33.809] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:25:33.825] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:25:33.907] [INFO] cheese - inserting 1000 documents. first: Indochinese serow and last: File:Vahlherberternst.jpg -[2018-02-13T00:25:33.954] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:25:33.990] [INFO] cheese - inserting 1000 documents. first: Alcyone and last: Furies -[2018-02-13T00:25:34.109] [INFO] cheese - batch complete in: 1.528 secs -[2018-02-13T00:25:34.209] [INFO] cheese - inserting 1000 documents. first: K 14 and last: Mash It Up -[2018-02-13T00:25:34.255] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:25:34.257] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Australian Women's Weekly Children's Birthday Cake Book and last: Wikipedia:Articles for deletion/FEU Advocate -[2018-02-13T00:25:34.303] [INFO] cheese - inserting 1000 documents. first: WYBN and last: Category:National symbols of Bulgaria -[2018-02-13T00:25:34.305] [INFO] cheese - inserting 1000 documents. first: Tango Rosario and last: Anglo-Russian invasion of North Holland in 1799 -[2018-02-13T00:25:34.319] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:25:34.357] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:25:34.362] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:25:34.373] [INFO] cheese - inserting 1000 documents. first: Samir Amin and last: METAL GEAR SOLID 2 SONS OF LIBIRTY -[2018-02-13T00:25:34.442] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:25:34.468] [INFO] cheese - inserting 1000 documents. first: Pat Yisrael and last: Heinz Valk -[2018-02-13T00:25:34.514] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:25:34.561] [INFO] cheese - inserting 1000 documents. first: Killing Me Softly (novel) and last: Superconducting Radio Frequency -[2018-02-13T00:25:34.611] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:25:34.728] [INFO] cheese - inserting 1000 documents. first: Xtreem and last: David Mitchell (admiral) -[2018-02-13T00:25:34.737] [INFO] cheese - inserting 1000 documents. first: Carisa Bianchi and last: Vitor José -[2018-02-13T00:25:34.765] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:25:34.791] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:25:34.815] [INFO] cheese - inserting 1000 documents. first: Category:Bridges completed in 1720 and last: Bass (vocal range) -[2018-02-13T00:25:34.871] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:25:34.920] [INFO] cheese - inserting 1000 documents. first: Crawford Auto-Aviation Museum and last: Laura N. Chick -[2018-02-13T00:25:34.964] [INFO] cheese - inserting 1000 documents. first: Criticism of Western Culture and last: Deep femoral veins -[2018-02-13T00:25:34.979] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:25:34.995] [INFO] cheese - inserting 1000 documents. first: Software patching and last: Thánh Gióng -[2018-02-13T00:25:35.040] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:25:35.076] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:35.316] [INFO] cheese - inserting 1000 documents. first: Template:Lectins and last: Hornbill Films -[2018-02-13T00:25:35.387] [INFO] cheese - inserting 1000 documents. first: Alessandro Ferrara and last: Northwest Region, Cameroon -[2018-02-13T00:25:35.405] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:25:35.504] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:25:35.525] [INFO] cheese - inserting 1000 documents. first: Winter hazel and last: Parti Bersatu Rakyat Jelata Sabah -[2018-02-13T00:25:35.728] [INFO] cheese - inserting 1000 documents. first: Hipponax and last: Dom Pedro II -[2018-02-13T00:25:35.774] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:25:36.030] [INFO] cheese - inserting 1000 documents. first: Category:2015 in New Caledonia and last: Leo (ThunderCats) -[2018-02-13T00:25:36.113] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles incorporating an MLCC with a warning and last: Costas N. Papanicolas -[2018-02-13T00:25:36.187] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable software release/Firefox and last: Vallejo Flour Mill -[2018-02-13T00:25:36.207] [INFO] cheese - batch complete in: 2.098 secs -[2018-02-13T00:25:36.310] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T00:25:36.421] [INFO] cheese - batch complete in: 1.345 secs -[2018-02-13T00:25:36.644] [INFO] cheese - batch complete in: 1.665 secs -[2018-02-13T00:25:36.722] [INFO] cheese - inserting 1000 documents. first: Charlotte Champe Stearns and last: File:Lagos highway.jpg -[2018-02-13T00:25:36.780] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T00:25:36.941] [INFO] cheese - inserting 1000 documents. first: Template:1923 PCC football standings and last: Los Premios MTV Latinoamérica for Best New Artist — International -[2018-02-13T00:25:37.026] [INFO] cheese - batch complete in: 1.522 secs -[2018-02-13T00:25:37.062] [INFO] cheese - inserting 1000 documents. first: Category:Yugoslav war crimes and last: Wave set-down -[2018-02-13T00:25:37.092] [INFO] cheese - inserting 1000 documents. first: Saeculo exeunte and last: Båstad tennisstadion -[2018-02-13T00:25:37.094] [INFO] cheese - inserting 1000 documents. first: Robert M. Wolterstorff and last: Bryan Keith Holland -[2018-02-13T00:25:37.100] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:25:37.160] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T00:25:37.157] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:25:37.267] [INFO] cheese - inserting 1000 documents. first: Karaga District and last: Wikipedia:Featured article candidates/Liberal Party (Utah) -[2018-02-13T00:25:37.311] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:25:37.328] [INFO] cheese - inserting 1000 documents. first: Smirne - Southern Zone, Morocco and last: Small crown chip -[2018-02-13T00:25:37.392] [INFO] cheese - inserting 1000 documents. first: Helicella bierzona and last: The Best Job in the World (advertising) -[2018-02-13T00:25:37.393] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:25:37.448] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:25:37.542] [INFO] cheese - inserting 1000 documents. first: Najafi, Lorestan and last: Hacı Ahmed Muhiddin Piri -[2018-02-13T00:25:37.599] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:25:37.607] [INFO] cheese - inserting 1000 documents. first: Bozuretown, New Jersey and last: Chevalierella congoensis -[2018-02-13T00:25:37.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Business and economics articles by quality/28 and last: Mineapolis -[2018-02-13T00:25:37.650] [INFO] cheese - inserting 1000 documents. first: Quinuclidines and last: Wikipedia:Articles for deletion/Robert V. Somers -[2018-02-13T00:25:37.671] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:25:37.759] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:37.803] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:25:37.899] [INFO] cheese - inserting 1000 documents. first: Johann Radetzky and last: Template:Latest preview software release/Apache OpenOffice -[2018-02-13T00:25:37.953] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:25:38.002] [INFO] cheese - inserting 1000 documents. first: New Mexican rubber plant and last: Wújí -[2018-02-13T00:25:38.017] [INFO] cheese - inserting 1000 documents. first: Template:Time zones of Australia labeled and last: Na Yeon Choi -[2018-02-13T00:25:38.045] [INFO] cheese - inserting 1000 documents. first: Saint Kitts and Nevis/Geography and last: Music notation -[2018-02-13T00:25:38.057] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:25:38.069] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:25:38.082] [INFO] cheese - inserting 1000 documents. first: Estádio do Tafe and last: British Academy Video Games Awards -[2018-02-13T00:25:38.125] [INFO] cheese - inserting 1000 documents. first: True Colors (TSR episode) and last: Jan F. E. Celliers -[2018-02-13T00:25:38.128] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:25:38.141] [INFO] cheese - batch complete in: 1.934 secs -[2018-02-13T00:25:38.185] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:25:38.228] [INFO] cheese - inserting 1000 documents. first: Browserless and last: Hans Hoßfeld -[2018-02-13T00:25:38.287] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:38.360] [INFO] cheese - inserting 1000 documents. first: Julie of the Wolves and last: Biscotasing, ontario -[2018-02-13T00:25:38.363] [INFO] cheese - inserting 1000 documents. first: Turje, Slovenia and last: Abdelhak Aatkani -[2018-02-13T00:25:38.398] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:25:38.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/2018 and last: Category:1990s independent films -[2018-02-13T00:25:38.416] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:38.459] [INFO] cheese - inserting 1000 documents. first: Category:Plays by John Millington Synge and last: Order of Ennead (album) -[2018-02-13T00:25:38.465] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:25:38.522] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:38.562] [INFO] cheese - inserting 1000 documents. first: Carl E. Mapes and last: Fashionista (television show) -[2018-02-13T00:25:38.596] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:25:38.622] [INFO] cheese - inserting 1000 documents. first: Cornelius O'Leary and last: Masonic Building (Newtonville) -[2018-02-13T00:25:38.678] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:25:38.804] [INFO] cheese - inserting 1000 documents. first: Akhmed Avtorkhanov and last: Lochty -[2018-02-13T00:25:38.843] [INFO] cheese - inserting 1000 documents. first: Fancy Dress (film) and last: Template:WP Brunei -[2018-02-13T00:25:38.852] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:38.868] [INFO] cheese - inserting 1000 documents. first: Alexi Murdoch and last: Joseph-Désiré Job -[2018-02-13T00:25:38.896] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:25:38.915] [INFO] cheese - inserting 1000 documents. first: Michigan Madness and last: Kraszków -[2018-02-13T00:25:38.949] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:25:38.956] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:25:39.049] [INFO] cheese - inserting 1000 documents. first: Template:Cities and towns in Neu-Ulm (district) and last: Template:Nsb next local -[2018-02-13T00:25:39.057] [INFO] cheese - inserting 1000 documents. first: Sniglet and last: Antiochus I Soter -[2018-02-13T00:25:39.091] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:25:39.121] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T00:25:39.169] [INFO] cheese - inserting 1000 documents. first: Brooding patch and last: Louis de St Allouarn -[2018-02-13T00:25:39.212] [INFO] cheese - inserting 1000 documents. first: Arrakyul and last: Kruplin-Piaski -[2018-02-13T00:25:39.243] [INFO] cheese - inserting 1000 documents. first: Greeley (surname) and last: Victor Adetunji Haffner -[2018-02-13T00:25:39.248] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:25:39.266] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:25:39.311] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:39.331] [INFO] cheese - inserting 1000 documents. first: Lochtee and last: Charles James (rugby league) -[2018-02-13T00:25:39.390] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:25:39.401] [INFO] cheese - inserting 1000 documents. first: Western Hedgehog and last: 1927 Pulitzer Prize -[2018-02-13T00:25:39.447] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:25:39.493] [INFO] cheese - inserting 1000 documents. first: Pray for Me (Mobb Deep song) and last: Wikipedia:Articles for deletion/Wallenburg Set -[2018-02-13T00:25:39.540] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:39.589] [INFO] cheese - inserting 1000 documents. first: The Jacksons – An American Dream and last: Omar Mohammed Khalifh -[2018-02-13T00:25:39.644] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:39.655] [INFO] cheese - inserting 1000 documents. first: File:Him - Rupert Holmes.jpg and last: Stathmodera densesulcata -[2018-02-13T00:25:39.671] [INFO] cheese - inserting 1000 documents. first: Von Stackelberg and last: Number-one albums of 2006 (Australia) -[2018-02-13T00:25:39.695] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:25:39.728] [INFO] cheese - inserting 1000 documents. first: Diego Del Real and last: Erik Svensson (Malmö FF footballer 1943–1944) -[2018-02-13T00:25:39.732] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:25:39.763] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:25:39.889] [INFO] cheese - inserting 1000 documents. first: Levin Schucking and last: Mauno kling -[2018-02-13T00:25:39.925] [INFO] cheese - inserting 1000 documents. first: Category:Singaporean gamblers and last: Electoral district of Cootamundra -[2018-02-13T00:25:39.943] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:25:39.950] [INFO] cheese - inserting 1000 documents. first: Nowa Wieś, Gmina Poddębice and last: Wólka Bankowa -[2018-02-13T00:25:39.961] [INFO] cheese - inserting 1000 documents. first: Famous gay lesbian and bisexual people and last: Ethal -[2018-02-13T00:25:39.990] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:25:40.041] [INFO] cheese - inserting 1000 documents. first: Stathmodera flavescens and last: Bahria College Karachi NORE I -[2018-02-13T00:25:40.057] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:25:40.089] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:40.187] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:25:40.199] [INFO] cheese - inserting 1000 documents. first: Honda XL350R and last: Smartlynx Airlines -[2018-02-13T00:25:40.236] [INFO] cheese - inserting 1000 documents. first: Sound Wave (Stanley Huang album) and last: Bradypterus timoriensis -[2018-02-13T00:25:40.263] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:25:40.306] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:25:40.506] [INFO] cheese - inserting 1000 documents. first: Paul Bley/NHØP and last: File:Madhk1.jpg -[2018-02-13T00:25:40.512] [INFO] cheese - inserting 1000 documents. first: Wólka Włościańska and last: Stefanów Ruszkowski -[2018-02-13T00:25:40.521] [INFO] cheese - inserting 1000 documents. first: Missa Sicca and last: Puberty (Naked Brothers Band Episode) -[2018-02-13T00:25:40.549] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:25:40.550] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:25:40.578] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:25:40.614] [INFO] cheese - inserting 1000 documents. first: Cathedral of the Holy Spirit, Palmerston North and last: 1991 Grand Prix (snooker) -[2018-02-13T00:25:40.651] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:25:40.657] [INFO] cheese - inserting 1000 documents. first: Template:Seeds explanation/doc and last: File:CSKA Moscow.svg -[2018-02-13T00:25:40.683] [INFO] cheese - inserting 1000 documents. first: 2003 Mercedes-Benz Cup – Doubles and last: Luigi Mattei -[2018-02-13T00:25:40.686] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:40.731] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:25:40.886] [INFO] cheese - inserting 1000 documents. first: Anubal and last: Susana Giménez -[2018-02-13T00:25:40.910] [INFO] cheese - inserting 1000 documents. first: Kohniconus janowskyae and last: Schaffner's wattle -[2018-02-13T00:25:40.916] [INFO] cheese - inserting 1000 documents. first: File:Kodakumi03-ddd.01.jpg and last: Portuguese Volleyball League A2 -[2018-02-13T00:25:40.942] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:25:40.943] [INFO] cheese - inserting 1000 documents. first: Littleham and last: Janice Brown (superintendent) -[2018-02-13T00:25:40.950] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:25:40.951] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:25:40.962] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Gaziantep and last: File:Barefoot Bay Beach.jpg -[2018-02-13T00:25:40.999] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:25:41.014] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:41.148] [INFO] cheese - inserting 1000 documents. first: Chartreuse of Dijon and last: Henry II, King of France -[2018-02-13T00:25:41.152] [INFO] cheese - inserting 1000 documents. first: Mathilda (novella) and last: File:Saintrophimetympanum.jpg -[2018-02-13T00:25:41.183] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:25:41.204] [INFO] cheese - inserting 1000 documents. first: State Committee for Scientific Research and last: Tutu (Egyptian deity) -[2018-02-13T00:25:41.217] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:25:41.237] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:25:41.305] [INFO] cheese - inserting 1000 documents. first: HSC Jaume II and last: SP-95 -[2018-02-13T00:25:41.335] [INFO] cheese - inserting 1000 documents. first: Mächtig and last: Barton Baronets -[2018-02-13T00:25:41.366] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:41.424] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:25:41.434] [INFO] cheese - inserting 1000 documents. first: Category:1935 in India and last: File:Kora-fm-logo.jpg -[2018-02-13T00:25:41.528] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:25:41.638] [INFO] cheese - inserting 1000 documents. first: Thomas Murray Hall and last: Category:1731 in Christianity -[2018-02-13T00:25:41.686] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:25:41.781] [INFO] cheese - inserting 1000 documents. first: Ahmed Ali Jaber and last: Category:Pop video albums -[2018-02-13T00:25:41.864] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:25:41.876] [INFO] cheese - inserting 1000 documents. first: Soghain and last: São Vicente, Brazil -[2018-02-13T00:25:41.965] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:25:42.043] [INFO] cheese - inserting 1000 documents. first: Bass Baronets and last: Channel 1 (Syria) -[2018-02-13T00:25:42.044] [INFO] cheese - inserting 1000 documents. first: SP-97 and last: Tonia Joy -[2018-02-13T00:25:42.120] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:25:42.127] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:25:42.138] [INFO] cheese - inserting 1000 documents. first: Category:17th century in Ireland and last: Motet in D, "Ave verum Corpus" -[2018-02-13T00:25:42.166] [INFO] cheese - inserting 1000 documents. first: Nina Frausing-Pedersen and last: Avraham Negusa -[2018-02-13T00:25:42.211] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:25:42.236] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:25:42.338] [INFO] cheese - inserting 1000 documents. first: History of music and last: Powell Doctrine -[2018-02-13T00:25:42.352] [INFO] cheese - inserting 1000 documents. first: Category:Dance music video albums and last: Category:Groups that resisted the Greek military junta of 1967-1974 -[2018-02-13T00:25:42.393] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:25:42.444] [INFO] cheese - batch complete in: 1.494 secs -[2018-02-13T00:25:42.455] [INFO] cheese - inserting 1000 documents. first: 2012 FIA WTCC Race of Morocco and last: Ankole Mole Rat -[2018-02-13T00:25:42.482] [INFO] cheese - inserting 1000 documents. first: Sinfonia Finlandia Jyvaskyla and last: Kōko Tsurumi -[2018-02-13T00:25:42.484] [INFO] cheese - inserting 1000 documents. first: Barren Island, Andaman Islands and last: 2.6.13 Linux kernel -[2018-02-13T00:25:42.495] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:42.519] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:25:42.559] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:25:42.613] [INFO] cheese - inserting 1000 documents. first: Tzu Chi Malaysia and last: Portal:Graffiti/Intro -[2018-02-13T00:25:42.670] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:25:42.709] [INFO] cheese - inserting 1000 documents. first: Category:Battles involving the Kingdom of Imereti and last: Conor O'Brien (musician) -[2018-02-13T00:25:42.779] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:25:42.804] [INFO] cheese - inserting 1000 documents. first: CADE COURTLEY and last: Saint Kitts and Nevis at the 2009 World Championships in Athletics -[2018-02-13T00:25:42.860] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:25:42.886] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Decorah Bald Eagles and last: Spotted Snow Flat -[2018-02-13T00:25:42.931] [INFO] cheese - inserting 1000 documents. first: Category:Gates of Beijing and last: B. V. S. Ravi -[2018-02-13T00:25:42.935] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:25:42.982] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:25:43.017] [INFO] cheese - inserting 1000 documents. first: Sion Hillock Fort and last: Giovanni Comisso -[2018-02-13T00:25:43.059] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:25:43.063] [INFO] cheese - inserting 1000 documents. first: Tajikistan copyright law and last: Category:People from Kaliningrad -[2018-02-13T00:25:43.099] [INFO] cheese - inserting 1000 documents. first: File:Contraband-1980-poster.jpg and last: McVaugh's pine -[2018-02-13T00:25:43.111] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:25:43.134] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:25:43.158] [INFO] cheese - inserting 1000 documents. first: Dark-Edged Snow Flat and last: File:Rocky 1981.JPG -[2018-02-13T00:25:43.188] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:25:43.251] [INFO] cheese - inserting 1000 documents. first: File:Thai Express (Canada) logo.svg and last: Asch's Conformity Experiment -[2018-02-13T00:25:43.264] [INFO] cheese - inserting 1000 documents. first: Lars Fredrick Nilson and last: Template:South Korea baseball roster 2008 Summer Olympics -[2018-02-13T00:25:43.281] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:43.305] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:25:43.396] [INFO] cheese - inserting 1000 documents. first: Alvin Plantinga and last: Xilonen -[2018-02-13T00:25:43.405] [INFO] cheese - inserting 1000 documents. first: 爆米花夏季棒球聯盟 and last: Çukuryurt -[2018-02-13T00:25:43.432] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:25:43.444] [INFO] cheese - inserting 1000 documents. first: Template:Cities and towns in Borken (district) and last: Zahir Howaida -[2018-02-13T00:25:43.476] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T00:25:43.486] [INFO] cheese - inserting 1000 documents. first: Quadratic acid and last: File:Unity Larry Young.jpg -[2018-02-13T00:25:43.507] [INFO] cheese - inserting 1000 documents. first: File:Octane Trends.jpg and last: Tagetes glandulosa -[2018-02-13T00:25:43.527] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:25:43.550] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:25:43.577] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:25:43.658] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in Wisconsin and last: Joseph Raymond Sarnoski -[2018-02-13T00:25:43.687] [INFO] cheese - inserting 1000 documents. first: Devil's Hole and last: Cta -[2018-02-13T00:25:43.716] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:25:43.736] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:25:43.857] [INFO] cheese - inserting 1000 documents. first: Design to cost and last: Category:Sportspeople in Kristianstad by club or team -[2018-02-13T00:25:43.892] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:25:43.902] [INFO] cheese - inserting 1000 documents. first: Tagetes porophyllum and last: Pogorelec -[2018-02-13T00:25:43.953] [INFO] cheese - inserting 1000 documents. first: Route 23 (MTA Maryland) and last: Geoff Hoyle -[2018-02-13T00:25:43.960] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:25:44.006] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:25:44.045] [INFO] cheese - inserting 1000 documents. first: Crash the boards and last: Sweating sickness (cattle) -[2018-02-13T00:25:44.093] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:25:44.191] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/John F. Long Pool and last: Bjelke-Petersen family -[2018-02-13T00:25:44.197] [INFO] cheese - inserting 1000 documents. first: Mandamus (disambiguation) and last: Esterka, Łódź Voivodeship -[2018-02-13T00:25:44.234] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople in Halmstad by club or team and last: Holoreta rubicunda -[2018-02-13T00:25:44.238] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:25:44.245] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:25:44.285] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:44.305] [INFO] cheese - inserting 1000 documents. first: File:Wade michael page police handout.png and last: Ayaştürkmenli, Mersin -[2018-02-13T00:25:44.364] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:44.449] [INFO] cheese - inserting 1000 documents. first: Recency and last: 1994–95 Tottenham Hotspur F.C. season -[2018-02-13T00:25:44.486] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:44.595] [INFO] cheese - inserting 1000 documents. first: Category:Azonto and last: Johann Martin Boltzius -[2018-02-13T00:25:44.691] [INFO] cheese - inserting 1000 documents. first: Transportation in alaska and last: Boat Harbour, New South Wales -[2018-02-13T00:25:44.708] [INFO] cheese - inserting 1000 documents. first: Category:Scotch-Irish American history and last: Austin 25/30 -[2018-02-13T00:25:44.755] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:44.759] [INFO] cheese - inserting 1000 documents. first: Franciszkany and last: Krzyż -[2018-02-13T00:25:44.810] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:44.814] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:25:44.843] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:25:44.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Royal Mara Safari Lodge (2nd nomination) and last: Meditation in Health Science -[2018-02-13T00:25:44.940] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:44.989] [INFO] cheese - inserting 1000 documents. first: Bradleja and last: She Lives! -[2018-02-13T00:25:45.046] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:25:45.103] [INFO] cheese - inserting 1000 documents. first: Chicomecoatl and last: Polk County, Texas -[2018-02-13T00:25:45.134] [INFO] cheese - inserting 1000 documents. first: Antony James and last: Wikipedia:United States Education Program/Courses/Brain and Behavior (Lisa Lu) -[2018-02-13T00:25:45.136] [INFO] cheese - inserting 1000 documents. first: Krzyż, Łódź Voivodeship and last: Katsiaryna Muliuk -[2018-02-13T00:25:45.170] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:45.176] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:25:45.179] [INFO] cheese - inserting 1000 documents. first: Ditrigona inconspicua and last: Template:Did you know nominations/Every Last Child -[2018-02-13T00:25:45.191] [INFO] cheese - batch complete in: 1.715 secs -[2018-02-13T00:25:45.252] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:25:45.257] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Adore (album)/archive1 and last: Rally for the Progressive Alternative -[2018-02-13T00:25:45.313] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:45.341] [INFO] cheese - inserting 1000 documents. first: Stopce and last: Srpska Kuća -[2018-02-13T00:25:45.384] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:25:45.547] [INFO] cheese - inserting 1000 documents. first: Category:Footballers in Montenegro and last: Koide Ichijūrō -[2018-02-13T00:25:45.575] [INFO] cheese - inserting 1000 documents. first: Maryland Heights Expressway and last: Category:1931 in Mexican sports -[2018-02-13T00:25:45.582] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:25:45.599] [INFO] cheese - inserting 1000 documents. first: Plac Wilsona (metro station) and last: The Black Superman -[2018-02-13T00:25:45.619] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:45.630] [INFO] cheese - inserting 1000 documents. first: Giorvis Duvergel and last: Template:Fb competition 2008-09 FA Youth Cup -[2018-02-13T00:25:45.648] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:25:45.671] [INFO] cheese - inserting 1000 documents. first: Basotho Congress Party and last: Turkish Foreign Ministry -[2018-02-13T00:25:45.687] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:25:45.717] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:25:45.928] [INFO] cheese - inserting 1000 documents. first: Starac and last: Recognition of states -[2018-02-13T00:25:45.939] [INFO] cheese - inserting 1000 documents. first: Famous in Love and last: Category:Hotels in Gilgit-Baltistan -[2018-02-13T00:25:45.964] [INFO] cheese - inserting 1000 documents. first: Get Tough: The Best of the Del-Lords and last: Straža, Straža -[2018-02-13T00:25:45.962] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:45.986] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:46.010] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:25:46.064] [INFO] cheese - inserting 1000 documents. first: File:Logo trombi.png and last: Leopoldów, Łęczna County -[2018-02-13T00:25:46.084] [INFO] cheese - inserting 1000 documents. first: NPEC and last: Southern pigmy rattlesnake -[2018-02-13T00:25:46.108] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:46.116] [INFO] cheese - inserting 1000 documents. first: Black Superman and last: Alburwic -[2018-02-13T00:25:46.142] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:25:46.188] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:25:46.325] [INFO] cheese - inserting 1000 documents. first: Jenifer Benitez and last: Angel Mullera -[2018-02-13T00:25:46.343] [INFO] cheese - inserting 1000 documents. first: Category:Factory Records artists and last: Morgny-la-Pommeraye, France -[2018-02-13T00:25:46.349] [INFO] cheese - inserting 1000 documents. first: Prathista and last: Shibei Tuhua -[2018-02-13T00:25:46.362] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:25:46.394] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:25:46.410] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:25:46.450] [INFO] cheese - inserting 1000 documents. first: False etymologies and last: Category:Victims of aviation accidents or incidents in Mali -[2018-02-13T00:25:46.488] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:46.543] [INFO] cheese - inserting 1000 documents. first: Sacerdotal state and last: Rooks Creek Township, Livingston County, Illinois -[2018-02-13T00:25:46.596] [INFO] cheese - inserting 1000 documents. first: Cliff Robinson (artist) and last: Virchow-Seckel syndrome -[2018-02-13T00:25:46.596] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:46.655] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:25:46.747] [INFO] cheese - inserting 1000 documents. first: Saint-Martin-du-Vivier, France and last: The Two of Us -[2018-02-13T00:25:46.787] [INFO] cheese - inserting 1000 documents. first: These Electric Pages Have Been Unplugged and last: Wikipedia:Meetup/Hobart/2 -[2018-02-13T00:25:46.793] [INFO] cheese - inserting 1000 documents. first: Qujiang Hakka-Shibei Shaoguan Tuhua language and last: Portal:Trains/Did you know/April 2015 -[2018-02-13T00:25:46.794] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:25:46.813] [INFO] cheese - inserting 1000 documents. first: Perła and last: Klimkówka -[2018-02-13T00:25:46.835] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:25:46.838] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:25:46.857] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:25:47.016] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2007 March 1 and last: Battle of Goito -[2018-02-13T00:25:47.084] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:25:47.145] [INFO] cheese - inserting 1000 documents. first: Surubí and last: Rigolets -[2018-02-13T00:25:47.194] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:25:47.254] [INFO] cheese - inserting 1000 documents. first: Javier Aguirre (director) and last: Category:Iowa politicians convicted of crimes -[2018-02-13T00:25:47.259] [INFO] cheese - inserting 1000 documents. first: Derek Theler and last: Pozhoga -[2018-02-13T00:25:47.263] [INFO] cheese - inserting 1000 documents. first: Wohyń and last: File:Boca-logo.jpg -[2018-02-13T00:25:47.270] [INFO] cheese - inserting 1000 documents. first: Template:S-line/TER Nord-Pas-de-Calais left/21 and last: File:Skank Siderado.jpg -[2018-02-13T00:25:47.308] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:25:47.310] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:25:47.318] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:25:47.355] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:25:47.396] [INFO] cheese - inserting 1000 documents. first: Pecos County, Texas and last: Port Laoise -[2018-02-13T00:25:47.396] [INFO] cheese - inserting 1000 documents. first: Lincoln County School District and last: Murcia (autonomous community) -[2018-02-13T00:25:47.430] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:25:47.507] [INFO] cheese - batch complete in: 2.316 secs -[2018-02-13T00:25:47.531] [INFO] cheese - inserting 1000 documents. first: Margaret II of Flanders and last: File:Tuliptree Sign.jpg -[2018-02-13T00:25:47.580] [INFO] cheese - inserting 1000 documents. first: File:Trouble with the Curve Poster.jpg and last: Crofts Baronets -[2018-02-13T00:25:47.570] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:25:47.612] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:25:47.628] [INFO] cheese - inserting 1000 documents. first: Kamienica, Limanowa County and last: Wola Wereszczyńska -[2018-02-13T00:25:47.645] [INFO] cheese - inserting 1000 documents. first: Ma Fu-hsiang and last: Saša Božičič -[2018-02-13T00:25:47.669] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:25:47.694] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:25:47.794] [INFO] cheese - inserting 1000 documents. first: Petit Computer 3 and last: Lamb succory -[2018-02-13T00:25:47.814] [INFO] cheese - inserting 1000 documents. first: The Model and the Star and last: Nayar clan -[2018-02-13T00:25:47.840] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:25:47.865] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:25:47.879] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Takes America/Waldwick/2012 and last: Mackintosh Baronets -[2018-02-13T00:25:47.910] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:25:47.946] [INFO] cheese - inserting 1000 documents. first: Hevaahulhudhoo and last: The Last Days -[2018-02-13T00:25:48.016] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:48.039] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Łabowa and last: Iran Aseman Airlines Flight 6875 -[2018-02-13T00:25:48.091] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Jay Joyce and last: Category:1932 in gymnastics -[2018-02-13T00:25:48.091] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:25:48.126] [INFO] cheese - batch complete in: 0.216 secs -[2018-02-13T00:25:48.166] [INFO] cheese - inserting 1000 documents. first: Caracul and last: Omair Ahmad -[2018-02-13T00:25:48.170] [INFO] cheese - inserting 1000 documents. first: Cricketvine and last: Dr Mohammed Ibrahim -[2018-02-13T00:25:48.226] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:48.240] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:25:48.404] [INFO] cheese - inserting 1000 documents. first: Off-Off Broadway and last: SvR 2007 -[2018-02-13T00:25:48.483] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:25:48.618] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Lockheed Leamington and last: Template:Essays in a nutshell -[2018-02-13T00:25:48.661] [INFO] cheese - inserting 1000 documents. first: Przezwody, Lesser Poland Voivodeship and last: Wikipedia:Featured list candidates/List of numbered highways in Washington -[2018-02-13T00:25:48.672] [INFO] cheese - inserting 1000 documents. first: Dr. Mohammad Ibrahim and last: Porsche PFM N03 -[2018-02-13T00:25:48.695] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:25:48.754] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:25:48.760] [INFO] cheese - inserting 1000 documents. first: Vermont Square, Los Angeles and last: File:Engineer bridge demolition (Korean War).jpg -[2018-02-13T00:25:48.817] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:25:48.958] [INFO] cheese - inserting 1000 documents. first: Category:Pompilidae and last: Stork margarine -[2018-02-13T00:25:48.978] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:25:49.020] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:25:49.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Signposts and last: Mary Swander writer -[2018-02-13T00:25:49.304] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:25:49.366] [INFO] cheese - inserting 1000 documents. first: File:Somji-small.jpg and last: Groń, Tatra County -[2018-02-13T00:25:49.366] [INFO] cheese - inserting 1000 documents. first: International Day of Happiness and last: 2012-13 Texas Longhorns men's basketball team -[2018-02-13T00:25:49.416] [INFO] cheese - inserting 1000 documents. first: Ralph Peter Goldston and last: Now That We're Men -[2018-02-13T00:25:49.441] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:25:49.458] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:25:49.489] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:25:49.664] [INFO] cheese - inserting 1000 documents. first: Squadron vice-admiral and last: Economic Development in Schenectady New York -[2018-02-13T00:25:49.757] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:25:49.877] [INFO] cheese - inserting 1000 documents. first: Pontifical Bolivarian University and last: BBC Wildlife (magazine) -[2018-02-13T00:25:49.934] [INFO] cheese - inserting 1000 documents. first: Hensley Township, Champaign County, Illinois and last: File:Tinkgi2me500.JPG -[2018-02-13T00:25:49.977] [INFO] cheese - inserting 1000 documents. first: Chac Uayab Xoc and last: Crofton Park, London, England -[2018-02-13T00:25:49.976] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:25:50.043] [INFO] cheese - inserting 1000 documents. first: Members of the Western Australian Legislative Council, 1989–1993 and last: Lioré et Olivier LéO 21 -[2018-02-13T00:25:50.071] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:25:50.074] [INFO] cheese - inserting 1000 documents. first: Thalia Mara and last: Sturnira sorianoi -[2018-02-13T00:25:50.080] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:25:50.127] [INFO] cheese - inserting 1000 documents. first: Category:Football at the 1964 Summer Olympics and last: Ministere Francais de l’Education Nationale -[2018-02-13T00:25:50.153] [INFO] cheese - batch complete in: 2.646 secs -[2018-02-13T00:25:50.154] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:25:50.203] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:25:50.370] [INFO] cheese - inserting 1000 documents. first: John Lawes and last: 56th Brigade (disambiguation) -[2018-02-13T00:25:50.433] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:25:50.456] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Category-article-count and last: Jarosławice, Świętokrzyskie Voivodeship -[2018-02-13T00:25:50.494] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:25:50.496] [INFO] cheese - inserting 1000 documents. first: Kalateh-ye Molla, Meyami and last: Miltiadis -[2018-02-13T00:25:50.535] [INFO] cheese - inserting 1000 documents. first: Federal Tax Identification Number and last: Category:Canadian university and college rectors -[2018-02-13T00:25:50.566] [INFO] cheese - inserting 1000 documents. first: Amanda Mallory and last: File:Slatta-crosscountry.jpg -[2018-02-13T00:25:50.569] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:50.574] [INFO] cheese - inserting 1000 documents. first: File:Freeland Community School District logo.png and last: Chennai Coimbatore Shatabdi Express -[2018-02-13T00:25:50.601] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:25:50.624] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:25:50.629] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:25:50.837] [INFO] cheese - inserting 1000 documents. first: Norris L. Einertson and last: Gare de Saint-Germain-en-Laye-Grande Ceinture -[2018-02-13T00:25:50.865] [INFO] cheese - inserting 1000 documents. first: File:Mount Barker High School logo.jpg and last: File:Lichfield City F.C. logo.png -[2018-02-13T00:25:50.875] [INFO] cheese - inserting 1000 documents. first: Kargów and last: Porąbki, Kielce County -[2018-02-13T00:25:50.877] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:50.906] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:25:50.918] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:25:50.954] [INFO] cheese - inserting 1000 documents. first: File:Davidlowrendezvous.png and last: Bert Broer -[2018-02-13T00:25:50.992] [INFO] cheese - inserting 1000 documents. first: WP Diamonds and last: Excellency over the Masses -[2018-02-13T00:25:50.999] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:25:51.030] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:51.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teenage phsycology and last: Heartland Flyer (Amtrak) -[2018-02-13T00:25:51.186] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:25:51.234] [INFO] cheese - inserting 1000 documents. first: Thierberg (Vogtland) and last: US Post Office-Hyattsville Main -[2018-02-13T00:25:51.252] [INFO] cheese - inserting 1000 documents. first: Category:People murdered in the United States and last: Category:Military templates by country -[2018-02-13T00:25:51.262] [INFO] cheese - inserting 1000 documents. first: Pride of Texas and last: Stainand colour -[2018-02-13T00:25:51.266] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:25:51.286] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:51.302] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:25:51.344] [INFO] cheese - inserting 1000 documents. first: Template:1963 AFL Eastern standings and last: Johan Gustafson (kidnap victim) -[2018-02-13T00:25:51.380] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:25:51.399] [INFO] cheese - inserting 1000 documents. first: List of i-schools and last: NY 170 -[2018-02-13T00:25:51.447] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:25:51.579] [INFO] cheese - inserting 1000 documents. first: Frank Caplan and last: Category:Mexican people of African descent -[2018-02-13T00:25:51.593] [INFO] cheese - inserting 1000 documents. first: Rembów, Świętokrzyskie Voivodeship and last: Wierzchowiny, Podkarpackie Voivodeship -[2018-02-13T00:25:51.601] [INFO] cheese - inserting 1000 documents. first: Shao Jiang and last: Lord Boothby -[2018-02-13T00:25:51.633] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:25:51.618] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:25:51.689] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:25:51.740] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Sinoadapis and last: Template:Did you know nominations/Procambarus natchitochae -[2018-02-13T00:25:51.754] [INFO] cheese - inserting 1000 documents. first: Staynand colour and last: Category:1960s establishments in Rwanda -[2018-02-13T00:25:51.786] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:25:51.835] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:51.912] [INFO] cheese - inserting 1000 documents. first: Darlene Chapinni and last: Maviddapuram -[2018-02-13T00:25:51.965] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:25:52.023] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Kazakhstan to South Korea and last: Bagirovkend -[2018-02-13T00:25:52.078] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:25:52.135] [INFO] cheese - inserting 1000 documents. first: Category:Mexican people of Arab descent and last: Ust-Bol'shereckiy District -[2018-02-13T00:25:52.157] [INFO] cheese - inserting 1000 documents. first: Kevin Gilbert (disambiguation) and last: Needmore, Mississippi -[2018-02-13T00:25:52.231] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:25:52.256] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:52.268] [INFO] cheese - inserting 1000 documents. first: Element 93 and last: Khazaran, Khazaria -[2018-02-13T00:25:52.329] [INFO] cheese - inserting 1000 documents. first: Sassanian army and last: Mars Rovers -[2018-02-13T00:25:52.340] [INFO] cheese - inserting 1000 documents. first: Category:1980s establishments in Rwanda and last: Karl Markt -[2018-02-13T00:25:52.384] [INFO] cheese - batch complete in: 2.231 secs -[2018-02-13T00:25:52.396] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:25:52.419] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:25:52.463] [INFO] cheese - inserting 1000 documents. first: Ravensthorpe Airport and last: Szentábrahám -[2018-02-13T00:25:52.512] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:25:52.584] [INFO] cheese - inserting 1000 documents. first: Bagry and last: Category:Olympic alpine skiers of Egypt -[2018-02-13T00:25:52.642] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:25:52.670] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gabriel Brown (actor) and last: Amanush 2 -[2018-02-13T00:25:52.671] [INFO] cheese - inserting 1000 documents. first: Ust-Bol'sherecki District and last: Alliance of Digital Humanities Organizations -[2018-02-13T00:25:52.717] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:25:52.726] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:25:52.907] [INFO] cheese - inserting 1000 documents. first: Category:2010–11 W-League by team and last: Tandy stores -[2018-02-13T00:25:52.931] [INFO] cheese - inserting 1000 documents. first: Freddie (video game character) and last: File:Thescore.jpg -[2018-02-13T00:25:52.952] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:25:52.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rosetta Stoned and last: Tkachenko Heorhy -[2018-02-13T00:25:52.992] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:25:53.040] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:25:53.061] [INFO] cheese - inserting 1000 documents. first: Category:Melipotis and last: Category:Dinosaur fossils -[2018-02-13T00:25:53.081] [INFO] cheese - inserting 1000 documents. first: Template:F1 driver/doc and last: Night Winds -[2018-02-13T00:25:53.099] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:25:53.117] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/replicaestores.com and last: Cooperative Correspondence Club -[2018-02-13T00:25:53.131] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:53.161] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:25:53.299] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Yemeni people and last: Category:Rugby league teams in Brisbane -[2018-02-13T00:25:53.338] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:25:53.400] [INFO] cheese - inserting 1000 documents. first: ASCII Media Works manga and last: File:Dedman College of H&S.png -[2018-02-13T00:25:53.402] [INFO] cheese - inserting 1000 documents. first: Rose Museum and last: Banazur -[2018-02-13T00:25:53.413] [INFO] cheese - inserting 1000 documents. first: Category:Religion in Pakistan and last: Wikipedia:Articles for deletion/Darth Glentract -[2018-02-13T00:25:53.432] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:25:53.434] [INFO] cheese - inserting 1000 documents. first: Song stuck in your head and last: Category:Girls' schools in Trinidad and Tobago -[2018-02-13T00:25:53.437] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:25:53.473] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:25:53.484] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:25:53.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Doc Marten Skins and last: Mayor of Helsinki -[2018-02-13T00:25:53.630] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:25:53.761] [INFO] cheese - inserting 1000 documents. first: M-Tag and last: Tyson DeVree -[2018-02-13T00:25:53.785] [INFO] cheese - inserting 1000 documents. first: Category:Girls' schools in Iraq and last: 1977-78 in Turkish football -[2018-02-13T00:25:53.791] [INFO] cheese - inserting 1000 documents. first: Template:Psf and last: Template:2007-08 Biathlon World Cup -[2018-02-13T00:25:53.813] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:25:53.815] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:25:53.844] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:25:53.866] [INFO] cheese - inserting 1000 documents. first: Alfred Effiong and last: Ana Barros -[2018-02-13T00:25:53.911] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:25:53.921] [INFO] cheese - inserting 1000 documents. first: Nicholas Clapton and last: KWFP -[2018-02-13T00:25:53.942] [INFO] cheese - inserting 1000 documents. first: Double-yolked egg and last: Rye Patch Dam -[2018-02-13T00:25:53.966] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:25:53.997] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:25:54.108] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Featured prefecture/1 and last: Bursumlu -[2018-02-13T00:25:54.112] [INFO] cheese - inserting 1000 documents. first: Interbay, Tampa, Florida and last: Wikipedia:Possibly unfree files/2010 July 11 -[2018-02-13T00:25:54.141] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:25:54.163] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:25:54.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Bronwyn Oliver/archive1 and last: Qahej-e Pa'in -[2018-02-13T00:25:54.216] [INFO] cheese - inserting 1000 documents. first: Terminal complement complex and last: La Granadera -[2018-02-13T00:25:54.222] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:54.251] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:25:54.288] [INFO] cheese - inserting 1000 documents. first: Balanjar, Khazaria and last: Realencyclopädie der classischen Altertumswissenschaft -[2018-02-13T00:25:54.327] [INFO] cheese - inserting 1000 documents. first: Motorola 68851 and last: Category:Russian rock singers -[2018-02-13T00:25:54.361] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:25:54.371] [INFO] cheese - batch complete in: 1.987 secs -[2018-02-13T00:25:54.425] [INFO] cheese - inserting 1000 documents. first: File:Wag The Dog Poster.jpg and last: Wikipedia:Votes for deletion/Log/2005 July 4 -[2018-02-13T00:25:54.470] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2010 July 11 and last: Category:Association football clubs 1930–31 season -[2018-02-13T00:25:54.481] [INFO] cheese - inserting 1000 documents. first: Moises Matias de Andrade and last: Whitemans green -[2018-02-13T00:25:54.509] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:25:54.516] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:25:54.531] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:54.606] [INFO] cheese - inserting 1000 documents. first: Chris Wilson (golfer) and last: John de Foix, Captal de Buch -[2018-02-13T00:25:54.661] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:25:54.713] [INFO] cheese - inserting 1000 documents. first: Portal:Cuba/Did you know/79 and last: RapidMind -[2018-02-13T00:25:54.754] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:54.836] [INFO] cheese - inserting 1000 documents. first: Everyone Nose (All The Girls Standing In The Line For The Bathroom) and last: Template:GEOnetdab/doc -[2018-02-13T00:25:54.883] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:25:54.940] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hybrid offshore wind energy and last: Wikipedia:Articles for deletion/Vardough -[2018-02-13T00:25:54.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Log/2005 July 3 and last: Pornchai Thongburan -[2018-02-13T00:25:54.978] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:25:54.979] [INFO] cheese - inserting 1000 documents. first: Steggles and last: Category:Private Practice task force -[2018-02-13T00:25:54.999] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:25:55.035] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:25:55.127] [INFO] cheese - inserting 1000 documents. first: Category:Guam politicians convicted of crimes and last: Valea Sasului River (disambiguation) -[2018-02-13T00:25:55.144] [INFO] cheese - inserting 1000 documents. first: Ulaanbataar and last: Juraj Červenák -[2018-02-13T00:25:55.185] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:25:55.190] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:55.296] [INFO] cheese - inserting 1000 documents. first: Dzhamilli and last: Sedley Cudmore -[2018-02-13T00:25:55.355] [INFO] cheese - inserting 1000 documents. first: Mark Messmer and last: 2007 Indy Japan 300 -[2018-02-13T00:25:55.444] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:25:55.462] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:25:55.555] [INFO] cheese - inserting 1000 documents. first: File:Environmental Defence Canada Logo.jpg and last: Sergey Bestuchev -[2018-02-13T00:25:55.641] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for comment/Zephram Stark and last: Flexor carpi ulnaris muscle -[2018-02-13T00:25:55.667] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:25:55.772] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:25:55.909] [INFO] cheese - inserting 1000 documents. first: Seymour H. Person and last: Minister of Trade -[2018-02-13T00:25:55.957] [INFO] cheese - inserting 1000 documents. first: Category:Canadian soccer clubs 1975 season and last: Portal:Poland/Selected picture/67 -[2018-02-13T00:25:55.975] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:25:56.095] [INFO] cheese - inserting 1000 documents. first: David Main and last: Template:Infobox deputy first minister -[2018-02-13T00:25:56.112] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:25:56.121] [INFO] cheese - inserting 1000 documents. first: IRUN and last: File:Don't Blame Me.jpg -[2018-02-13T00:25:56.174] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:25:56.227] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:25:56.237] [INFO] cheese - inserting 1000 documents. first: Haq ol Khvajeh and last: Category:1940s in French Togoland -[2018-02-13T00:25:56.294] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:25:56.452] [INFO] cheese - inserting 1000 documents. first: The New Scooby and Scrappy-Doo Show and last: Carl Zimmer -[2018-02-13T00:25:56.474] [INFO] cheese - inserting 1000 documents. first: Cornerstone Festival and last: The Plimsouls -[2018-02-13T00:25:56.506] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:25:56.513] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2007 March 3 and last: Category:Rock formations of New Hampshire -[2018-02-13T00:25:56.538] [INFO] cheese - inserting 1000 documents. first: Template:Infobox deputy prime minister and last: File:TrevorRabin90124.jpg -[2018-02-13T00:25:56.548] [INFO] cheese - inserting 1000 documents. first: Poghos Galstyan and last: Eucalyptus longifolia -[2018-02-13T00:25:56.564] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:25:56.568] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Nic Nac and last: The Wolf Song -[2018-02-13T00:25:56.570] [INFO] cheese - batch complete in: 2.199 secs -[2018-02-13T00:25:56.595] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:56.607] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:25:56.617] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:25:56.630] [INFO] cheese - inserting 1000 documents. first: Category:1950s in French Togoland and last: Pitt-Greensburg -[2018-02-13T00:25:56.672] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:25:56.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Harbhajan Singh and last: Category:Srikakulam district -[2018-02-13T00:25:56.907] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:25:56.923] [INFO] cheese - inserting 1000 documents. first: Michael Chowen and last: Brühwurst -[2018-02-13T00:25:56.925] [INFO] cheese - inserting 1000 documents. first: Tarsnap and last: Ю́рий Васи́льевич Про́хоров -[2018-02-13T00:25:56.929] [INFO] cheese - inserting 1000 documents. first: William J. Hamblin and last: Human rights of Kurdish people -[2018-02-13T00:25:56.949] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:25:56.950] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:25:56.963] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:25:56.996] [INFO] cheese - inserting 1000 documents. first: Up in the Clouds and last: File:Best of Both Worlds Davina.jpg -[2018-02-13T00:25:57.000] [INFO] cheese - inserting 1000 documents. first: Worldloppet and last: Comeback Player of the Year Award -[2018-02-13T00:25:57.043] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:25:57.062] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:25:57.267] [INFO] cheese - inserting 1000 documents. first: Trangie and last: Qaf (letter) -[2018-02-13T00:25:57.285] [INFO] cheese - inserting 1000 documents. first: History of computer art and last: Ceferabad -[2018-02-13T00:25:57.309] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:25:57.323] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:25:57.364] [INFO] cheese - inserting 1000 documents. first: Peter Holmes (motorcycle racer) and last: Category:Infrastructure completed in 1953 -[2018-02-13T00:25:57.402] [INFO] cheese - inserting 1000 documents. first: Hired armed ship Charles and last: Luke gillespie -[2018-02-13T00:25:57.405] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:25:57.423] [INFO] cheese - inserting 1000 documents. first: Category:Antigua and Barbuda people of American descent and last: Domaine Chasse Bili Uere -[2018-02-13T00:25:57.428] [INFO] cheese - inserting 1000 documents. first: Marvelman and last: Nagas -[2018-02-13T00:25:57.447] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:25:57.486] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:25:57.498] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:25:57.648] [INFO] cheese - inserting 1000 documents. first: Caleb P. Bennett and last: P. V. Narasimharao -[2018-02-13T00:25:57.758] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:25:57.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2008 August 29 and last: Chobanabdally -[2018-02-13T00:25:57.790] [INFO] cheese - inserting 1000 documents. first: Neolithic discontinuity theory and last: Purdue University at Fort Wayne -[2018-02-13T00:25:57.855] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:25:57.855] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:25:57.907] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Robeson County, North Carolina and last: Rowland Main Street Historic District -[2018-02-13T00:25:57.975] [INFO] cheese - inserting 1000 documents. first: Second A. K. Antony ministry and last: Igor Vujanovic -[2018-02-13T00:25:58.004] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:25:58.025] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:25:58.045] [INFO] cheese - inserting 1000 documents. first: List of places in northumberland and last: Service Electric Cable -[2018-02-13T00:25:58.110] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:25:58.232] [INFO] cheese - inserting 1000 documents. first: Cohranli and last: Paul Pelletier -[2018-02-13T00:25:58.247] [INFO] cheese - inserting 1000 documents. first: Template:CodeFederalRegulations and last: Wi fi -[2018-02-13T00:25:58.248] [INFO] cheese - inserting 1000 documents. first: Indiana University at Indianapolis and last: Leccinum atrostipitatum -[2018-02-13T00:25:58.270] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:25:58.302] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:25:58.310] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:25:58.358] [INFO] cheese - inserting 1000 documents. first: Minister of Irrigation, Power and Energy (Sri Lanka) and last: Linguistic substrate -[2018-02-13T00:25:58.386] [INFO] cheese - inserting 1000 documents. first: 2003 Priority Telecom Dutch Open and last: Portal:University of Oxford/Selected panorama/Layout -[2018-02-13T00:25:58.401] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:58.435] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:25:58.437] [INFO] cheese - inserting 1000 documents. first: Ballade Number 2 in F major and last: Second Labour Government of New Zealand -[2018-02-13T00:25:58.499] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:25:58.654] [INFO] cheese - inserting 1000 documents. first: Culture of Mangalorean Catholics and last: File:Deuteronomium - From the Midst of the Battle.jpg -[2018-02-13T00:25:58.658] [INFO] cheese - inserting 1000 documents. first: Ananta and last: Richmond Range National Park -[2018-02-13T00:25:58.663] [INFO] cheese - inserting 1000 documents. first: Sant Joan de Labritja (village) and last: It's Only Love (Tommy James and the Shondells song) -[2018-02-13T00:25:58.696] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:25:58.714] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:25:58.768] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T00:25:58.815] [INFO] cheese - inserting 1000 documents. first: Aetna Township, Logan County, Illinois and last: Georg Wilhelm -[2018-02-13T00:25:58.821] [INFO] cheese - inserting 1000 documents. first: Hulst (municipality) and last: UBM Medica -[2018-02-13T00:25:58.854] [INFO] cheese - inserting 1000 documents. first: Charalambos Simopoulos and last: Nadporuchik -[2018-02-13T00:25:58.877] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:25:58.879] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:25:58.901] [INFO] cheese - inserting 1000 documents. first: L. S. Mason and last: Public reserve -[2018-02-13T00:25:58.939] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:25:58.964] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:25:59.041] [INFO] cheese - inserting 1000 documents. first: Dread Beat an' Blood and last: C Company, 52nd Infantry Regiment (Anti-Tank) -[2018-02-13T00:25:59.068] [INFO] cheese - inserting 1000 documents. first: Category:Environmental issues in New York (state) and last: John Gerzema -[2018-02-13T00:25:59.077] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:25:59.107] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:25:59.214] [INFO] cheese - inserting 1000 documents. first: Symplocos esquirolii and last: Ken Wannberg -[2018-02-13T00:25:59.231] [INFO] cheese - inserting 1000 documents. first: University Gardens High School and last: James Burrough -[2018-02-13T00:25:59.274] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:25:59.305] [INFO] cheese - inserting 1000 documents. first: Vanity Press and last: List of gelechiid genera: X -[2018-02-13T00:25:59.329] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:25:59.341] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:25:59.397] [INFO] cheese - inserting 1000 documents. first: University of California–Merced and last: Esk Valley Railway -[2018-02-13T00:25:59.446] [INFO] cheese - inserting 1000 documents. first: Soleilmoon and last: Şurtan -[2018-02-13T00:25:59.505] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:25:59.542] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:25:59.606] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Account suspensions/Fenian Swine. and last: Rational singularity -[2018-02-13T00:25:59.691] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:25:59.712] [INFO] cheese - inserting 1000 documents. first: Peronea fulvocristana and last: Atypon -[2018-02-13T00:25:59.778] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:25:59.803] [INFO] cheese - inserting 1000 documents. first: Tyrol knapweed and last: Fossil fuel divestment movement -[2018-02-13T00:25:59.850] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:25:59.875] [INFO] cheese - inserting 1000 documents. first: File:Kundun1.jpg and last: Template:Pan American Games Boxing -[2018-02-13T00:25:59.894] [INFO] cheese - inserting 1000 documents. first: Roseneath Theatre and last: Lord High Sheriff -[2018-02-13T00:25:59.930] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:25:59.966] [INFO] cheese - inserting 1000 documents. first: Der Dritte and last: Education in Reverse -[2018-02-13T00:25:59.977] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:26:00.046] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:00.057] [INFO] cheese - inserting 1000 documents. first: Royal National Park and last: Jack Parsons (rocket engineer) -[2018-02-13T00:26:00.149] [INFO] cheese - batch complete in: 1.38 secs -[2018-02-13T00:26:00.229] [INFO] cheese - inserting 1000 documents. first: Scottish ethnicity and last: Category:Schools in Guyana -[2018-02-13T00:26:00.238] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Østerbros BK and last: Template:Taxonomy/Asterales -[2018-02-13T00:26:00.273] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:00.275] [INFO] cheese - inserting 1000 documents. first: Michelle Suárez Bértora and last: Jerron Paxton -[2018-02-13T00:26:00.287] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:26:00.333] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:26:00.396] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Did you know/155 and last: Jimmy James (Singer) -[2018-02-13T00:26:00.400] [INFO] cheese - inserting 1000 documents. first: Arche (mythology) and last: Template:Attached KML/Interstate 229 (South Dakota) -[2018-02-13T00:26:00.432] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:00.440] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:26:00.685] [INFO] cheese - inserting 1000 documents. first: Birdu and last: Mayoora -[2018-02-13T00:26:00.735] [INFO] cheese - inserting 1000 documents. first: Category:American bibliophiles and last: Mines and Minerals (Development and Regulation) Amendment Bill, 2015 -[2018-02-13T00:26:00.740] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:26:00.785] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:00.836] [INFO] cheese - inserting 1000 documents. first: Electric fiddle and last: Child day care center -[2018-02-13T00:26:00.837] [INFO] cheese - inserting 1000 documents. first: Chaffyn and last: The Kellys of Tobruk -[2018-02-13T00:26:00.863] [INFO] cheese - inserting 1000 documents. first: Portage Point Inn and last: The Country Gentleman -[2018-02-13T00:26:00.870] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:00.894] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:26:00.902] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:26:00.935] [INFO] cheese - inserting 1000 documents. first: Category:Education in Guyana and last: Player Character Record Sheets -[2018-02-13T00:26:00.984] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:26:01.054] [INFO] cheese - inserting 1000 documents. first: Perquisite (musician) and last: Robert Dean Clatterbuck -[2018-02-13T00:26:01.082] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:26:01.166] [INFO] cheese - inserting 1000 documents. first: Portal:Cuba/Did you know/94 and last: Portal:Caribbean/Selected picture/10 -[2018-02-13T00:26:01.175] [INFO] cheese - inserting 1000 documents. first: Cal State–Humboldt and last: Fabrice Olinga -[2018-02-13T00:26:01.192] [INFO] cheese - inserting 1000 documents. first: Hong Kong First Division League 2005–06 and last: Category:Protected areas of Burundi -[2018-02-13T00:26:01.209] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:26:01.217] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:26:01.240] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:01.289] [INFO] cheese - inserting 1000 documents. first: W-Y-S-I-W-Y-G and last: Katheryn Elizabeth Hudson -[2018-02-13T00:26:01.347] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:26:01.367] [INFO] cheese - inserting 1000 documents. first: Johnny Lozada and last: Shorter, Alabama -[2018-02-13T00:26:01.388] [INFO] cheese - inserting 1000 documents. first: Talking-head and last: Tachilek -[2018-02-13T00:26:01.407] [INFO] cheese - inserting 1000 documents. first: Mimozethes angula and last: Category:Compsosomatini -[2018-02-13T00:26:01.436] [INFO] cheese - batch complete in: 1.287 secs -[2018-02-13T00:26:01.479] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:01.478] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:26:01.541] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2012-08-22 and last: Category:Aviators from Iowa -[2018-02-13T00:26:01.604] [INFO] cheese - inserting 1000 documents. first: Leandro Antonio Martínez and last: Ángel Custodio Quintana -[2018-02-13T00:26:01.622] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:26:01.679] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:01.701] [INFO] cheese - inserting 1000 documents. first: Robert Bradford (NI politician) and last: Tupelo, MS μSA -[2018-02-13T00:26:01.769] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:01.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2008, Aug 31 and last: America a Prophecy -[2018-02-13T00:26:01.875] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:26:01.913] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Effigy (album) and last: José da Avé-Maria Leite da Costa e Silva -[2018-02-13T00:26:01.957] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:01.981] [INFO] cheese - inserting 1000 documents. first: Template:Dario Fo and last: Category:2010s establishments in El Salvador -[2018-02-13T00:26:01.986] [INFO] cheese - inserting 1000 documents. first: Raytheon Intelligence, Information and Services and last: M. K. Čiurlionis -[2018-02-13T00:26:02.030] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:02.038] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:26:02.094] [INFO] cheese - inserting 1000 documents. first: Gimme That (Ciara song) and last: Errinundra plum-pine -[2018-02-13T00:26:02.151] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:02.236] [INFO] cheese - inserting 1000 documents. first: Seremban railway station and last: Speculative mathematics -[2018-02-13T00:26:02.246] [INFO] cheese - inserting 1000 documents. first: Belaya River (Imandra) and last: 30BC -[2018-02-13T00:26:02.275] [INFO] cheese - inserting 1000 documents. first: Portal:Flodden/Ecomuseum Sites/5 and last: Javier Hernández (footballer, born 1988) -[2018-02-13T00:26:02.278] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:26:02.280] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:26:02.313] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:02.404] [INFO] cheese - inserting 1000 documents. first: List of Historic Sites of Japan (Fukushima) and last: John Noseworthy (disambiguation) -[2018-02-13T00:26:02.440] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:02.445] [INFO] cheese - inserting 1000 documents. first: Blue ice (aviation) and last: Caleys -[2018-02-13T00:26:02.500] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:02.506] [INFO] cheese - inserting 1000 documents. first: Rev. Fr. Mariampillai Sarathjeevan and last: Category:Species described in 1769 -[2018-02-13T00:26:02.547] [INFO] cheese - inserting 1000 documents. first: 28BC and last: Wycliffe and the Cycle of Death -[2018-02-13T00:26:02.570] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:26:02.594] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:26:02.632] [INFO] cheese - inserting 1000 documents. first: The embryonic and prenatal development of the male reproductive system (human) and last: Wikipedia:Peer review/Well-made play/archive1 -[2018-02-13T00:26:02.666] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:02.688] [INFO] cheese - inserting 1000 documents. first: Tuskegee, Alabama and last: Aqueous solution -[2018-02-13T00:26:02.748] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T00:26:02.869] [INFO] cheese - inserting 1000 documents. first: Magomed Yevloyev and last: Sidekick '08 -[2018-02-13T00:26:02.873] [INFO] cheese - inserting 1000 documents. first: Csíkpálfalva and last: Line out -[2018-02-13T00:26:02.918] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:26:02.958] [INFO] cheese - inserting 1000 documents. first: Dame Grand Cross of the British Empire and last: Brian Chippendale -[2018-02-13T00:26:02.957] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:26:02.991] [INFO] cheese - inserting 1000 documents. first: Colin Williams (disambiguation) and last: File:Keep the Faith An Evening with Bon Jovi.jpg -[2018-02-13T00:26:03.059] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:26:03.081] [INFO] cheese - inserting 1000 documents. first: Hun lakhon lek and last: Aes Corp -[2018-02-13T00:26:03.092] [INFO] cheese - inserting 1000 documents. first: The encyclopedia Iranica and last: Tōkai earthquakes -[2018-02-13T00:26:03.062] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:26:03.157] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:26:03.166] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:03.283] [INFO] cheese - inserting 1000 documents. first: Template:Religious Radio Stations in Arizona and last: File:Audioslave - I Am The Highway.ogg -[2018-02-13T00:26:03.317] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:26:03.465] [INFO] cheese - inserting 1000 documents. first: Ovayok Territorial Park, Nunavut and last: Atlanta Union Station (1930) -[2018-02-13T00:26:03.496] [INFO] cheese - inserting 1000 documents. first: Occipital nerve and last: Wikipedia:Articles for deletion/Allison Moore (voice actress) -[2018-02-13T00:26:03.517] [INFO] cheese - inserting 1000 documents. first: Avalon High School and last: Idritsa -[2018-02-13T00:26:03.517] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:26:03.531] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:03.564] [INFO] cheese - inserting 1000 documents. first: Category:Honest Don's Records EPs and last: Wikipedia:Miscellany for deletion/User:Weaponbb7/Subpagetostopbickingovervenue/respectculturalrightsofreligion -[2018-02-13T00:26:03.567] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:26:03.593] [INFO] cheese - inserting 1000 documents. first: 2006-2007 roster (DTL EKA AEL) and last: Longitude 90 degrees E -[2018-02-13T00:26:03.607] [INFO] cheese - inserting 1000 documents. first: Treehorn's Treasure and last: ZF expression -[2018-02-13T00:26:03.607] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:03.639] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:26:03.672] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:26:03.873] [INFO] cheese - inserting 1000 documents. first: Political Corruption in Nigeria and last: Ed Loewe -[2018-02-13T00:26:03.901] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ornithogaleae and last: Beaver Creek (Split Rock Creek) -[2018-02-13T00:26:03.910] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:03.935] [INFO] cheese - inserting 1000 documents. first: Bubble Shooter and last: The Excursion (poem) -[2018-02-13T00:26:03.956] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:03.984] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:26:03.997] [INFO] cheese - inserting 1000 documents. first: Distilled water and last: Angels Camp, California -[2018-02-13T00:26:04.044] [INFO] cheese - inserting 1000 documents. first: Hales (disambiguation) and last: Wikipedia:Articles for deletion/Ron Shimshilashvili -[2018-02-13T00:26:04.057] [INFO] cheese - inserting 1000 documents. first: Tom Coates and last: Slavery Reparation Tax Credit -[2018-02-13T00:26:04.063] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T00:26:04.089] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:04.093] [INFO] cheese - inserting 1000 documents. first: Longitude 95 degrees E and last: Category:FL-Class UK Waterways articles -[2018-02-13T00:26:04.111] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:04.176] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:26:04.246] [INFO] cheese - inserting 1000 documents. first: Category:IDW Publishing titles and last: Laurel Micropolitan Area -[2018-02-13T00:26:04.278] [INFO] cheese - inserting 1000 documents. first: RCDP and last: Hot Springs sinkhole -[2018-02-13T00:26:04.286] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:26:04.312] [INFO] cheese - inserting 1000 documents. first: Category:Chinese people of Ivorian descent and last: Miles Store, Virginia -[2018-02-13T00:26:04.342] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:26:04.327] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:26:04.428] [INFO] cheese - inserting 1000 documents. first: File:Strast.jpeg and last: Argentine Naval Hydrographic Service -[2018-02-13T00:26:04.462] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:26:04.526] [INFO] cheese - inserting 1000 documents. first: Allan Heinburg and last: Night Skies -[2018-02-13T00:26:04.536] [INFO] cheese - inserting 1000 documents. first: Top wrap and last: Nicomen Mountain -[2018-02-13T00:26:04.550] [INFO] cheese - inserting 1000 documents. first: AutoGyro Cavalon and last: Garcetti v Ceballos -[2018-02-13T00:26:04.577] [INFO] cheese - batch complete in: 0.235 secs -[2018-02-13T00:26:04.583] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:26:04.587] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:26:04.664] [INFO] cheese - inserting 1000 documents. first: List of alphabets used by Turkic languages and last: Gwendoline Eastlake-Smith -[2018-02-13T00:26:04.697] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:26:04.744] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Transnistria and last: Nyingchi County -[2018-02-13T00:26:04.765] [INFO] cheese - inserting 1000 documents. first: Lily of Java and last: Paradise Cinemas (Kolkata) -[2018-02-13T00:26:04.786] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:04.795] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:26:04.840] [INFO] cheese - inserting 1000 documents. first: Edmond Modeste Lescarbault and last: Groppa -[2018-02-13T00:26:04.895] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:04.983] [INFO] cheese - inserting 1000 documents. first: Edward Wester Creal and last: File:TearsRollDown.jpg -[2018-02-13T00:26:05.021] [INFO] cheese - inserting 1000 documents. first: Bridge Street Bridge (disambiguation) and last: Mooru Guttu Ondu Sullu Ondu Nija -[2018-02-13T00:26:05.036] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:05.050] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:26:05.074] [INFO] cheese - inserting 1000 documents. first: Museum of Ho Chi Minh City and last: Earthquake Cocktail -[2018-02-13T00:26:05.121] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:05.145] [INFO] cheese - inserting 1000 documents. first: 1820 in Brazil and last: Howard Hughes and The Western Approaches -[2018-02-13T00:26:05.152] [INFO] cheese - inserting 1000 documents. first: Musée d'Orsay (Paris RER) and last: East London Transit -[2018-02-13T00:26:05.200] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:26:05.203] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:26:05.223] [INFO] cheese - inserting 1000 documents. first: Ünőmező and last: Donald Hankinson -[2018-02-13T00:26:05.255] [INFO] cheese - inserting 1000 documents. first: Imperial estates and last: Swift & Co. v United States -[2018-02-13T00:26:05.277] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:26:05.279] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:26:05.411] [INFO] cheese - inserting 1000 documents. first: File:Coilunnatural3.jpg and last: 1980 South American Championships – Singles -[2018-02-13T00:26:05.463] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:05.499] [INFO] cheese - inserting 1000 documents. first: Keith Brookman and last: Frank Woodruff Buckles -[2018-02-13T00:26:05.538] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:26:05.558] [INFO] cheese - inserting 1000 documents. first: Nhon Hoi Bridge and last: Hans Zorn -[2018-02-13T00:26:05.563] [INFO] cheese - inserting 1000 documents. first: Swift v Tyson and last: File:Somethin Bout Kreay Cover.jpg -[2018-02-13T00:26:05.588] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:26:05.589] [INFO] cheese - inserting 1000 documents. first: List of Cultural Properties of the Philippines in Tagbilaran and last: Chowara -[2018-02-13T00:26:05.604] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:26:05.649] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:26:05.847] [INFO] cheese - inserting 1000 documents. first: Louis-Jean Pin and last: Going Band -[2018-02-13T00:26:05.891] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:05.906] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Kozakken Boys and last: Embassy of Ecuador in London -[2018-02-13T00:26:05.938] [INFO] cheese - inserting 1000 documents. first: Arnold, California and last: Cherry Hills Village, Colorado -[2018-02-13T00:26:05.953] [INFO] cheese - inserting 1000 documents. first: Cities in Newfoundland and Labrador and last: Brother Mutant (comics) -[2018-02-13T00:26:05.958] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:26:05.964] [INFO] cheese - inserting 1000 documents. first: Tres Fronteiras and last: Yandro Quintana -[2018-02-13T00:26:05.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject NASCAR/Newsletter/NASCARPOM and last: File:Internode logo.svg -[2018-02-13T00:26:06.010] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:06.030] [INFO] cheese - inserting 1000 documents. first: Mudra Bank and last: Canal estate -[2018-02-13T00:26:06.032] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:26:06.042] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:26:06.067] [INFO] cheese - batch complete in: 2.002 secs -[2018-02-13T00:26:06.098] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:26:06.259] [INFO] cheese - inserting 1000 documents. first: Orlando Bloo and last: 1999 World Championships in Athletics – Men's long jump -[2018-02-13T00:26:06.314] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:26:06.337] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Teahouse/Host landing and last: FC Chabab -[2018-02-13T00:26:06.387] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:06.395] [INFO] cheese - inserting 1000 documents. first: Category:Soviet members of the Verkhovna Rada and last: Cricket in Iran -[2018-02-13T00:26:06.435] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:26:06.468] [INFO] cheese - inserting 1000 documents. first: Category:American people of Flemish descent and last: Adrian Franklin -[2018-02-13T00:26:06.471] [INFO] cheese - inserting 1000 documents. first: Kyobashi Station and last: Nicki Billie Nielsen -[2018-02-13T00:26:06.503] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:26:06.503] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:06.546] [INFO] cheese - inserting 1000 documents. first: Harm de Blij and last: Pirquet (crater) -[2018-02-13T00:26:06.618] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:26:06.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NCASTRO and last: Category:Commercial Swimming Club swimmers -[2018-02-13T00:26:06.745] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:26:06.786] [INFO] cheese - inserting 1000 documents. first: Template:Fujifilm DSLR cameras and last: Victor de Broglie (1846-1906) -[2018-02-13T00:26:06.828] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:06.834] [INFO] cheese - inserting 1000 documents. first: Lycee Rene Descartes (Cambodia) and last: File:SPORZA-306x225.jpg -[2018-02-13T00:26:06.877] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:06.899] [INFO] cheese - inserting 1000 documents. first: Category:Jimmy Buffett compilation albums and last: Ana Bárbara (album) -[2018-02-13T00:26:06.941] [INFO] cheese - inserting 1000 documents. first: New Departure (Ireland) and last: File:Thief Of Bagdad (1940).jpg -[2018-02-13T00:26:06.948] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:26:07.006] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:26:07.100] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Guyver85 and last: Antoine du Verdier -[2018-02-13T00:26:07.153] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:07.198] [INFO] cheese - inserting 1000 documents. first: Real-life test and last: Jeff King (author) -[2018-02-13T00:26:07.249] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:26:07.289] [INFO] cheese - inserting 1000 documents. first: Template:I-77 aux and last: People's Solution -[2018-02-13T00:26:07.334] [INFO] cheese - inserting 1000 documents. first: Billy Davies (rugby league) and last: Son of Gutbucket -[2018-02-13T00:26:07.348] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:26:07.374] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Liamorpha and last: File:Trinity line 4-2015.jpg -[2018-02-13T00:26:07.384] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:26:07.408] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:26:07.477] [INFO] cheese - inserting 1000 documents. first: File:MyDinnerWithJimi.jpg and last: Template:Cite Catholic Encyclopedia -[2018-02-13T00:26:07.516] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:26:07.570] [INFO] cheese - inserting 1000 documents. first: Rangers F.C. season 1971-72 and last: File:Big L - Harlem's Finest - A Freestyle History.jpg -[2018-02-13T00:26:07.576] [INFO] cheese - inserting 1000 documents. first: Denmark High School and last: Estonia at the 2012 Summer Paralympics -[2018-02-13T00:26:07.615] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:26:07.626] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:07.742] [INFO] cheese - inserting 1000 documents. first: Amazon Dash Replenishment Service and last: Columbus State Univ. -[2018-02-13T00:26:07.800] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:26:07.842] [INFO] cheese - inserting 1000 documents. first: AC Russell and last: Marquis of Lorne -[2018-02-13T00:26:07.885] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:26:07.905] [INFO] cheese - inserting 1000 documents. first: Columbine, Colorado and last: West Samoset, Florida -[2018-02-13T00:26:07.938] [INFO] cheese - inserting 1000 documents. first: Dietrich of the Goths and last: Mangaltar, Bagmati -[2018-02-13T00:26:07.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Chowkatsun9 and last: Neocollyris subclavata -[2018-02-13T00:26:07.973] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:26:07.978] [INFO] cheese - batch complete in: 1.91 secs -[2018-02-13T00:26:07.987] [INFO] cheese - inserting 1000 documents. first: East Kilbride Pirates and last: Bowie Middle School (Irving, Texas) -[2018-02-13T00:26:08.017] [INFO] cheese - inserting 1000 documents. first: Category:Czech history and last: Category:Wikipedia requested photographs in Guizhou -[2018-02-13T00:26:08.025] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:08.043] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:08.046] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:26:08.139] [INFO] cheese - inserting 1000 documents. first: Miokovci and last: File:Obama victory pdi.jpg -[2018-02-13T00:26:08.209] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:26:08.301] [INFO] cheese - inserting 1000 documents. first: Brahms / Handel and last: Enfermes dehors -[2018-02-13T00:26:08.311] [INFO] cheese - inserting 1000 documents. first: Neocollyris subtileflavescens and last: Francois Wong -[2018-02-13T00:26:08.336] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:08.339] [INFO] cheese - inserting 1000 documents. first: Sea Life Minnesota Aquarium and last: Poy Poy 2 -[2018-02-13T00:26:08.342] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:26:08.373] [INFO] cheese - inserting 1000 documents. first: Category:Nationalist Party of Australia members of the Parliament of Victoria and last: Template:NZ-struct-stub -[2018-02-13T00:26:08.388] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:26:08.407] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:26:08.490] [INFO] cheese - inserting 1000 documents. first: Equivalent concentration and last: Hercules In The Underworld -[2018-02-13T00:26:08.540] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:26:08.639] [INFO] cheese - inserting 1000 documents. first: Images 1966-1967 and last: Jane Pemberton Small -[2018-02-13T00:26:08.657] [INFO] cheese - inserting 1000 documents. first: Compagnie Française de l'Afrique Occidentale and last: Marjory E. Mecklenburg -[2018-02-13T00:26:08.665] [INFO] cheese - inserting 1000 documents. first: Marie Du Toit and last: Lingga Isaq Game Reserve -[2018-02-13T00:26:08.675] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:26:08.693] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:26:08.719] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:26:08.740] [INFO] cheese - inserting 1000 documents. first: Template:NZ-university-stub and last: Portal:Current events/2015 April 8 -[2018-02-13T00:26:08.785] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:26:08.813] [INFO] cheese - inserting 1000 documents. first: Chase Ellison and last: Cestodaria -[2018-02-13T00:26:08.875] [INFO] cheese - inserting 1000 documents. first: 2006 Summer SMTown and last: Rufus Books -[2018-02-13T00:26:08.875] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:26:08.913] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:26:08.986] [INFO] cheese - inserting 1000 documents. first: Marjory M. Mecklenburg and last: 1945 Mass State Aggies football team -[2018-02-13T00:26:09.020] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:26:09.067] [INFO] cheese - inserting 1000 documents. first: File:Cambrian-news-150th-logo.jpg and last: Category:Polydor Records soundtracks -[2018-02-13T00:26:09.101] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:26:09.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Untitled Third Studio Album (2nd nomination) and last: Category:Chinese artistic gymnasts -[2018-02-13T00:26:09.160] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:26:09.191] [INFO] cheese - inserting 1000 documents. first: NOFV and last: Family Values (album) -[2018-02-13T00:26:09.238] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:26:09.259] [INFO] cheese - inserting 1000 documents. first: Bentley Historical Museum and last: Portal:AC/DC/Selected article/Nominations -[2018-02-13T00:26:09.303] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:26:09.339] [INFO] cheese - inserting 1000 documents. first: Somalia federal government and last: Roger-Jean Le Nizerhy -[2018-02-13T00:26:09.372] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:09.442] [INFO] cheese - inserting 1000 documents. first: File:Jimmy Sturr Polka in Paradise cover.jpg and last: Archery medal winners at the 1982 Commonwealth Games -[2018-02-13T00:26:09.483] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:26:09.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alkmania and last: British Rail Class 76 -[2018-02-13T00:26:09.525] [INFO] cheese - inserting 1000 documents. first: Taylor Avenue and last: Wikipedia:Reference desk/Archives/Language/September 2008 -[2018-02-13T00:26:09.552] [INFO] cheese - inserting 1000 documents. first: Whitfield, Manatee County, Florida and last: Rossville, Georgia -[2018-02-13T00:26:09.560] [INFO] cheese - inserting 1000 documents. first: Soho, Hong Kong and last: Coronation of the Danish monarch -[2018-02-13T00:26:09.570] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:09.575] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:26:09.594] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:09.617] [INFO] cheese - inserting 1000 documents. first: A Mi Shabba and last: Broadway (Sacramento RT) -[2018-02-13T00:26:09.638] [INFO] cheese - inserting 1000 documents. first: File:Summer and the City (book cover).jpg and last: Sealdin -[2018-02-13T00:26:09.653] [INFO] cheese - batch complete in: 1.675 secs -[2018-02-13T00:26:09.661] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:26:09.677] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:26:09.846] [INFO] cheese - inserting 1000 documents. first: Sir Spencer Fane and last: Monaco at the 2010 European Athletics Championships -[2018-02-13T00:26:09.899] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:09.953] [INFO] cheese - inserting 1000 documents. first: Charles Kingsley Barrett and last: IMO 7358327 -[2018-02-13T00:26:09.983] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:26:09.985] [INFO] cheese - inserting 1000 documents. first: National fire and rescue service of Scotland and last: Bjørn Tolleivson Frøysok -[2018-02-13T00:26:09.997] [INFO] cheese - inserting 1000 documents. first: World Revolution (political group) and last: Mounir Farah -[2018-02-13T00:26:10.004] [INFO] cheese - inserting 1000 documents. first: Ukrainian Premier League Reserve and last: Portal:Oregon/Selected picture/29 -[2018-02-13T00:26:10.024] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:10.049] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:10.066] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:10.085] [INFO] cheese - inserting 1000 documents. first: De Havilland DH.65 Hound and last: Wikipedia:Featured article review/Revised Standard Version -[2018-02-13T00:26:10.135] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:10.191] [INFO] cheese - inserting 1000 documents. first: Portal:University of Oxford/Selected panorama/12 and last: Ian Emes -[2018-02-13T00:26:10.245] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:10.246] [INFO] cheese - inserting 1000 documents. first: IMO 7358561 and last: Death of Shaima Alawadi -[2018-02-13T00:26:10.269] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:26:10.376] [INFO] cheese - inserting 1000 documents. first: Bjørn Tolleivson Frøysåk and last: File:Emily Hahn.jpg -[2018-02-13T00:26:10.417] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:10.444] [INFO] cheese - inserting 1000 documents. first: Portal:Oregon/Selected picture/28 and last: Səhlaabad -[2018-02-13T00:26:10.462] [INFO] cheese - inserting 1000 documents. first: Charles H. Burke and last: File:Dystopia logo.jpg -[2018-02-13T00:26:10.483] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:26:10.498] [INFO] cheese - inserting 1000 documents. first: Andahuaylas Province and last: Chem. Eur. J. -[2018-02-13T00:26:10.504] [INFO] cheese - inserting 1000 documents. first: IMO 9320544 and last: Dominican Republic Handicap Hurdle -[2018-02-13T00:26:10.515] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:10.530] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:26:10.559] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:10.722] [INFO] cheese - inserting 1000 documents. first: Karel Uyttersprot and last: 10R (disambiguation) -[2018-02-13T00:26:10.753] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 2014 Winter Olympics and last: Morning Glory (band) -[2018-02-13T00:26:10.766] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:26:10.786] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:26:10.838] [INFO] cheese - inserting 1000 documents. first: Category:2015 establishments in Estonia and last: 2015 Batman Cup – Doubles -[2018-02-13T00:26:10.843] [INFO] cheese - inserting 1000 documents. first: Anne no Nikki and last: File:MorganOrganized.jpg -[2018-02-13T00:26:10.861] [INFO] cheese - inserting 1000 documents. first: Bourke County, New South Wales and last: Ongka's Big Moka -[2018-02-13T00:26:10.884] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:26:10.891] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:10.911] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:10.922] [INFO] cheese - inserting 1000 documents. first: Category:Horse health and last: List of Picasso artworks 1951–60 -[2018-02-13T00:26:10.969] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:26:11.104] [INFO] cheese - inserting 1000 documents. first: Template:PowerliftingAt2012SummerParalympics and last: Mario Bazán -[2018-02-13T00:26:11.121] [INFO] cheese - inserting 1000 documents. first: A Force More Powerful (2000 TV series) and last: Norm Row -[2018-02-13T00:26:11.141] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:26:11.143] [INFO] cheese - inserting 1000 documents. first: HMS Blaxton (M1132) and last: VFAT long file name support -[2018-02-13T00:26:11.177] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:26:11.185] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:26:11.270] [INFO] cheese - inserting 1000 documents. first: President Harry Truman and last: Mário João -[2018-02-13T00:26:11.301] [INFO] cheese - inserting 1000 documents. first: ANAPROF in CONCACAF and last: Wikipedia:Wikipedia Signpost/2008-09-08/In the news -[2018-02-13T00:26:11.304] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:11.343] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:11.358] [INFO] cheese - inserting 1000 documents. first: Between, Georgia and last: Victoria, Illinois -[2018-02-13T00:26:11.486] [INFO] cheese - batch complete in: 1.833 secs -[2018-02-13T00:26:11.510] [INFO] cheese - inserting 1000 documents. first: Laundry detergent and last: Category:Science and technology in South Africa -[2018-02-13T00:26:11.514] [INFO] cheese - inserting 1000 documents. first: Charlie Howard (cricketer) and last: Amazing Cooking Kids (season 1) -[2018-02-13T00:26:11.560] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:26:11.569] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:11.619] [INFO] cheese - inserting 1000 documents. first: File:Kbmt news 2010.png and last: File:Emil i Lönneberga.jpg -[2018-02-13T00:26:11.627] [INFO] cheese - inserting 1000 documents. first: MV Westward and last: University College London Hospitals NHS Foundation Trust -[2018-02-13T00:26:11.672] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:26:11.686] [INFO] cheese - inserting 1000 documents. first: VFAT long filename support and last: File:Photos icon for OS X.png -[2018-02-13T00:26:11.696] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:11.733] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians who contribute to the reference desk and last: William Corless Mills -[2018-02-13T00:26:11.756] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:11.802] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:12.003] [INFO] cheese - inserting 1000 documents. first: DSC-RX100 and last: File:TheBigWave.jpg -[2018-02-13T00:26:12.049] [INFO] cheese - inserting 1000 documents. first: File:Nya hyss av Emil i Lönneberga.jpg and last: 1946–47 Liverpool F.C. season -[2018-02-13T00:26:12.049] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:26:12.055] [INFO] cheese - inserting 1000 documents. first: Waikiki (band) and last: Wikipedia:Articles for deletion/Queer West News -[2018-02-13T00:26:12.092] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:26:12.096] [INFO] cheese - inserting 1000 documents. first: Ilamatepec and last: Daewoo Precision Industries K2 -[2018-02-13T00:26:12.100] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:12.126] [INFO] cheese - inserting 1000 documents. first: Taiwan-Bangladesh relations and last: SCIS (disambiguation) -[2018-02-13T00:26:12.185] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:26:12.208] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:12.238] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jambo and last: Horror game -[2018-02-13T00:26:12.295] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:12.440] [INFO] cheese - inserting 1000 documents. first: Hamid Arasly and last: W.S. Burhaus -[2018-02-13T00:26:12.444] [INFO] cheese - inserting 1000 documents. first: Template:Darlington and last: OOTH -[2018-02-13T00:26:12.487] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:26:12.489] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:12.522] [INFO] cheese - inserting 1000 documents. first: Charlie and the Chocolate Factory: The Musical and last: John Wasdin's perfect game -[2018-02-13T00:26:12.525] [INFO] cheese - inserting 1000 documents. first: Template:Modern Rock Radio Stations in Massachusetts and last: Category:Iowa society -[2018-02-13T00:26:12.561] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:12.583] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:12.665] [INFO] cheese - inserting 1000 documents. first: United States Glacier National Park and last: Pierrebraunia -[2018-02-13T00:26:12.705] [INFO] cheese - inserting 1000 documents. first: Isadora (film) and last: Great Short Novels of Adult Fantasy I -[2018-02-13T00:26:12.720] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:26:12.742] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:12.851] [INFO] cheese - inserting 1000 documents. first: OPBN and last: Rumesh Joseph Ratnayake -[2018-02-13T00:26:12.852] [INFO] cheese - inserting 1000 documents. first: Armenians in Belarus and last: Via della Spiga, Milan -[2018-02-13T00:26:12.860] [INFO] cheese - inserting 1000 documents. first: Template:2012 Summer Paralympics women's wheelchair basketball game B6 and last: Francisco Hernández (Peruvian footballer) -[2018-02-13T00:26:12.881] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:26:12.897] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:12.907] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:26:12.974] [INFO] cheese - inserting 1000 documents. first: Wilfred Spruson and last: Wikipedia:WikiProject Spam/LinkReports/buypckeys.com -[2018-02-13T00:26:13.023] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:13.044] [INFO] cheese - inserting 1000 documents. first: Template:Buriram-geo-stub and last: Friend virus -[2018-02-13T00:26:13.092] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:26:13.125] [INFO] cheese - inserting 1000 documents. first: Gallio and last: Lists of tennis records and statistics -[2018-02-13T00:26:13.147] [INFO] cheese - inserting 1000 documents. first: Wataga, Illinois and last: Michiana Shores, Indiana -[2018-02-13T00:26:13.165] [INFO] cheese - inserting 1000 documents. first: Princess Marie of Orléans (1813-1839) and last: Melicytus dentatus -[2018-02-13T00:26:13.167] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:13.184] [INFO] cheese - inserting 1000 documents. first: Vancouver Jazz Festival and last: Category:Dōjin anime -[2018-02-13T00:26:13.208] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:26:13.215] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:26:13.249] [INFO] cheese - batch complete in: 1.763 secs -[2018-02-13T00:26:13.294] [INFO] cheese - inserting 1000 documents. first: Template:History of Papua New Guinea and last: File:Arun Sharma.jpg -[2018-02-13T00:26:13.352] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:13.357] [INFO] cheese - inserting 1000 documents. first: Military Working Dogs and last: Muniments room -[2018-02-13T00:26:13.401] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:26:13.428] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/May/02/Selected picture and last: Noah Creshevsky -[2018-02-13T00:26:13.455] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:13.534] [INFO] cheese - inserting 1000 documents. first: Alfredo Luís da Costa and last: Le Dénouement imprévu -[2018-02-13T00:26:13.577] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:13.591] [INFO] cheese - inserting 1000 documents. first: Co-agonist and last: Marheinecke -[2018-02-13T00:26:13.612] [INFO] cheese - inserting 1000 documents. first: Hanuta and last: Gazz. Chim. Ital. -[2018-02-13T00:26:13.636] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:26:13.654] [INFO] cheese - inserting 1000 documents. first: Ilam Cement Plant and last: Tkil -[2018-02-13T00:26:13.664] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:26:13.714] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:26:13.759] [INFO] cheese - inserting 1000 documents. first: The Code Project and last: Wikipedia:Featured article candidates/Southern Cross (wordless novel)/archive1 -[2018-02-13T00:26:13.798] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:13.831] [INFO] cheese - inserting 1000 documents. first: San miguel national high school and last: File:Sidneyia.png -[2018-02-13T00:26:13.876] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:13.982] [INFO] cheese - inserting 1000 documents. first: Rainbow Road (Mario Kart track) and last: Syamsul Chaerudin -[2018-02-13T00:26:14.010] [INFO] cheese - inserting 1000 documents. first: Category:Phyllachorales and last: Lehrte, Germany -[2018-02-13T00:26:14.019] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:14.060] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:14.068] [INFO] cheese - inserting 1000 documents. first: Novodevichye Cemetery and last: AF Tschiffely -[2018-02-13T00:26:14.094] [INFO] cheese - inserting 1000 documents. first: Category:Unsolved crimes in Rwanda and last: Template:2015–16 in Turkish football -[2018-02-13T00:26:14.104] [INFO] cheese - inserting 1000 documents. first: J S Carpenter House and last: Jefferson-Hemings controversy -[2018-02-13T00:26:14.127] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:14.136] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:26:14.172] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:14.298] [INFO] cheese - inserting 1000 documents. first: Est, Willem Hessels van and last: File:Nala100.jpg -[2018-02-13T00:26:14.342] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:14.410] [INFO] cheese - inserting 1000 documents. first: Banco Latino and last: Wikipedia:WikiProject Spam/LinkReports/panjewellery.com -[2018-02-13T00:26:14.416] [INFO] cheese - inserting 1000 documents. first: Michigan City, Indiana and last: Fine Gael Party -[2018-02-13T00:26:14.436] [INFO] cheese - inserting 1000 documents. first: Mont-Pérat and last: Cash for votes -[2018-02-13T00:26:14.455] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:26:14.485] [INFO] cheese - inserting 1000 documents. first: HD 20644 and last: Tanja Börzel -[2018-02-13T00:26:14.487] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:14.495] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T00:26:14.537] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:14.563] [INFO] cheese - inserting 1000 documents. first: Data farming and last: Academia Juárez -[2018-02-13T00:26:14.580] [INFO] cheese - inserting 1000 documents. first: Eddie Hice and last: Wikipedia:WikiProject Spam/LinkReports/tiyatropiya.com -[2018-02-13T00:26:14.633] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:26:14.647] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:14.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Moses mayfield and last: Men in White (1998 film) -[2018-02-13T00:26:14.813] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:26:14.819] [INFO] cheese - inserting 1000 documents. first: Factory Girl (TV series) and last: Chastellain, Pierre -[2018-02-13T00:26:14.847] [INFO] cheese - inserting 1000 documents. first: R. H. Mottram and last: Polish 17th Infantry Division -[2018-02-13T00:26:14.857] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:26:14.886] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:26:15.004] [INFO] cheese - inserting 1000 documents. first: C26H54O and last: Perumal Sthanu Ravi Gupta -[2018-02-13T00:26:15.030] [INFO] cheese - inserting 1000 documents. first: The Conservative Mind and last: Automatic Tool Changer -[2018-02-13T00:26:15.039] [INFO] cheese - inserting 1000 documents. first: Oscar Littleton Chaplin and last: London Underground C Stock -[2018-02-13T00:26:15.045] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:26:15.090] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:26:15.085] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:15.144] [INFO] cheese - inserting 1000 documents. first: Mount Ōyama (Kanagawa) and last: Domnall ua Neill -[2018-02-13T00:26:15.185] [INFO] cheese - inserting 1000 documents. first: By the Great Horn Spoon and last: Nellie Clifden -[2018-02-13T00:26:15.185] [INFO] cheese - inserting 1000 documents. first: Polish 1st Independent Parachute Brigade and last: File:Milford140.jpg -[2018-02-13T00:26:15.187] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:26:15.225] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:26:15.229] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:26:15.364] [INFO] cheese - inserting 1000 documents. first: William Page (MP) and last: Wikipedia:Articles for deletion/Jacksonville, Wyoming -[2018-02-13T00:26:15.396] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:26:15.513] [INFO] cheese - inserting 1000 documents. first: London Underground B Stock and last: Sikorsky R-4 -[2018-02-13T00:26:15.534] [INFO] cheese - inserting 1000 documents. first: Ahmadou Bello and last: Mike Stephens -[2018-02-13T00:26:15.539] [INFO] cheese - inserting 1000 documents. first: Épinette des Vosges and last: Sabols -[2018-02-13T00:26:15.570] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:26:15.586] [INFO] cheese - inserting 1000 documents. first: Kaakan and last: Voiceless dental flap -[2018-02-13T00:26:15.583] [INFO] cheese - inserting 1000 documents. first: Category:1851 racehorse births and last: Category:British East India Company Army personnel -[2018-02-13T00:26:15.598] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:26:15.581] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:15.652] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:26:15.654] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:15.728] [INFO] cheese - inserting 1000 documents. first: Maryville Saints and last: Template:German Athletics Champions in women's 800 m -[2018-02-13T00:26:15.788] [INFO] cheese - inserting 1000 documents. first: Geothermal power in Iceland and last: Winona, Kansas -[2018-02-13T00:26:15.863] [INFO] cheese - batch complete in: 1.368 secs -[2018-02-13T00:26:15.768] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:26:15.906] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2008-03-17/SPV and last: Category:Bishops of Orléans -[2018-02-13T00:26:15.951] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:15.972] [INFO] cheese - inserting 1000 documents. first: Red Death at 6:14 and last: Aid to the Church in Need -[2018-02-13T00:26:16.025] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:26:16.039] [INFO] cheese - inserting 1000 documents. first: Winning - The Answers and last: LMOE -[2018-02-13T00:26:16.040] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bojnec and last: Category:1996 in Ecuadorian sport -[2018-02-13T00:26:16.077] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:16.081] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:16.131] [INFO] cheese - inserting 1000 documents. first: Home and Away (album) and last: Category:Sri Lankan people by ethnic or national origin -[2018-02-13T00:26:16.179] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:16.277] [INFO] cheese - inserting 1000 documents. first: Nyree Lewis and last: Sammuel von Soemmering -[2018-02-13T00:26:16.317] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:26:16.368] [INFO] cheese - inserting 1000 documents. first: Fleetwood Pier and last: Category:Culture in Genoa -[2018-02-13T00:26:16.378] [INFO] cheese - inserting 1000 documents. first: Oeceoclades analamerensis and last: Wikipedia:Articles for deletion/Invenergy -[2018-02-13T00:26:16.407] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:26:16.408] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:26:16.432] [INFO] cheese - inserting 1000 documents. first: Levanto (SP) and last: Gare de Fouilloy -[2018-02-13T00:26:16.470] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:16.535] [INFO] cheese - inserting 1000 documents. first: Template:Fair use replace and last: File:Fisherman's Blues Waterboys Album Cover.jpg -[2018-02-13T00:26:16.573] [INFO] cheese - inserting 1000 documents. first: Emergency oxygen system and last: File:Ehwa badge.png -[2018-02-13T00:26:16.591] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:26:16.631] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:16.725] [INFO] cheese - inserting 1000 documents. first: File:1998WomensFinalFourLogo.jpg and last: Monsanto's house of the future -[2018-02-13T00:26:16.739] [INFO] cheese - inserting 1000 documents. first: Columbia University TeenScreen Program and last: Real Time Policy -[2018-02-13T00:26:16.741] [INFO] cheese - inserting 1000 documents. first: Skaručna Basin and last: Woking Council election, 2000 -[2018-02-13T00:26:16.765] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:26:16.772] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:16.779] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:26:16.895] [INFO] cheese - inserting 1000 documents. first: Chorkie and last: Nødebo Church -[2018-02-13T00:26:16.979] [INFO] cheese - inserting 1000 documents. first: Tule River and last: Vancouver School Board -[2018-02-13T00:26:17.018] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:26:17.067] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:17.130] [INFO] cheese - inserting 1000 documents. first: Dominion Stores Ltd. and last: Category:1989 in North Korean football -[2018-02-13T00:26:17.180] [INFO] cheese - inserting 1000 documents. first: Kim Dinh and last: Əliabad, Lerik -[2018-02-13T00:26:17.182] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:26:17.243] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:26:17.253] [INFO] cheese - inserting 1000 documents. first: Rent (the musical) and last: G-network -[2018-02-13T00:26:17.322] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:26:17.417] [INFO] cheese - inserting 1000 documents. first: Tallest tokyo and last: Hungarian Food Safety Office -[2018-02-13T00:26:17.447] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:26:17.461] [INFO] cheese - inserting 1000 documents. first: Admire, Kansas and last: Rayville, Louisiana -[2018-02-13T00:26:17.498] [INFO] cheese - inserting 1000 documents. first: 2013 European Athletics U23 Championships – Men's 100 metres and last: Agonopterix muricolorella -[2018-02-13T00:26:17.531] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:26:17.627] [INFO] cheese - inserting 1000 documents. first: Kairwan and last: Category:Lierse S.K. players -[2018-02-13T00:26:17.629] [INFO] cheese - batch complete in: 1.766 secs -[2018-02-13T00:26:17.705] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:26:17.721] [INFO] cheese - inserting 1000 documents. first: Camp Delta (Guantanamo) and last: Category:File-Class Dartmouth College articles -[2018-02-13T00:26:17.732] [INFO] cheese - inserting 1000 documents. first: Yugoslavia at the 1987 Mediterranean Games and last: Turbonilla soniliana -[2018-02-13T00:26:17.763] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:26:17.769] [INFO] cheese - inserting 1000 documents. first: America's Got Talent 3 and last: File:1920 Poster.JPG -[2018-02-13T00:26:17.830] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T00:26:17.844] [INFO] cheese - inserting 1000 documents. first: Rokkaku Middle School and last: List of state leaders in 1568 BC -[2018-02-13T00:26:17.848] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:26:17.919] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:26:17.935] [INFO] cheese - inserting 1000 documents. first: Río de la Leche and last: Kiran Shekhawat -[2018-02-13T00:26:17.977] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:18.271] [INFO] cheese - inserting 1000 documents. first: Category:File-Class DC Comics articles and last: Olive de Nice -[2018-02-13T00:26:18.346] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:26:18.400] [INFO] cheese - inserting 1000 documents. first: Turbonilla sororia and last: Template:Anglicise rank/sandbox -[2018-02-13T00:26:18.433] [INFO] cheese - inserting 1000 documents. first: Romain Crevoisier and last: Paul Brown (footballer) -[2018-02-13T00:26:18.434] [INFO] cheese - inserting 1000 documents. first: Oho-Yama and last: Operation Ezra and Nehemiah -[2018-02-13T00:26:18.439] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:26:18.476] [INFO] cheese - inserting 1000 documents. first: Schnelldorf and last: Category:French Wars of Religion -[2018-02-13T00:26:18.484] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:26:18.497] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:26:18.525] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:26:18.643] [INFO] cheese - inserting 1000 documents. first: Val Robertson and last: Florence Hezlet -[2018-02-13T00:26:18.681] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:26:18.773] [INFO] cheese - inserting 1000 documents. first: Macedonian Prva Liga 1999–2000 and last: Template:Imagemap Germany district FRI -[2018-02-13T00:26:18.816] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:26:18.833] [INFO] cheese - inserting 1000 documents. first: Politechnika Świętokrzyska and last: Category:Short duration GRB -[2018-02-13T00:26:18.860] [INFO] cheese - inserting 1000 documents. first: Islam in Côte d'Ivoire and last: Category:Games with concealed rules -[2018-02-13T00:26:18.878] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:26:18.893] [INFO] cheese - inserting 1000 documents. first: Template:Sassoon family tree and last: Gogol, Goa -[2018-02-13T00:26:18.911] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:18.921] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Tibetan Buddhism and last: Wikipedia:Articles for deletion/Ashley Juggs (2nd nomination) -[2018-02-13T00:26:18.941] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:18.993] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:26:19.066] [INFO] cheese - inserting 1000 documents. first: Prehistory of Delaware and last: George L. Hicks -[2018-02-13T00:26:19.121] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:19.172] [INFO] cheese - inserting 1000 documents. first: Corporate insolvency and last: Noble Society -[2018-02-13T00:26:19.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eric Schomburg and last: Wikipedia:Votes for deletion/Everything I Do (I Do It for You) -[2018-02-13T00:26:19.233] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:26:19.243] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:26:19.338] [INFO] cheese - inserting 1000 documents. first: The Call of the Wild (film) and last: Dianne Brimble -[2018-02-13T00:26:19.346] [INFO] cheese - inserting 1000 documents. first: Converse, Louisiana and last: Smith Mills, Massachusetts -[2018-02-13T00:26:19.357] [INFO] cheese - inserting 1000 documents. first: Template:Name culture and last: Secretary of Finance and Public Credit (Mexico) -[2018-02-13T00:26:19.384] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:19.413] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:26:19.428] [INFO] cheese - batch complete in: 1.798 secs -[2018-02-13T00:26:19.452] [INFO] cheese - inserting 1000 documents. first: Portal:Pokémon/Understanding Pokémon/Header and last: Wikipedia:Articles for deletion/Pinewood derby car modifications -[2018-02-13T00:26:19.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Epistle to augusta and last: Wikipedia:Votes for deletion/Mills lighthouse -[2018-02-13T00:26:19.520] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:19.543] [INFO] cheese - inserting 1000 documents. first: Maritime force and last: Wikipedia:Wikipedia Signpost/Templates/Tag series/Usage chart -[2018-02-13T00:26:19.563] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:26:19.598] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:26:19.632] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mazzikabox.com and last: AISB (disambiguation) -[2018-02-13T00:26:19.709] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:19.814] [INFO] cheese - inserting 1000 documents. first: Bras de Brosne and last: Starkey, NY -[2018-02-13T00:26:19.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The Down and Outs and last: Wikipedia:Votes for deletion/Enjoyingtea -[2018-02-13T00:26:19.848] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:26:19.859] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:19.925] [INFO] cheese - inserting 1000 documents. first: Template:Swedish Army Officer Rank Insignia and last: Claude Davey -[2018-02-13T00:26:19.954] [INFO] cheese - inserting 1000 documents. first: James Bourchier Metro Station and last: Jean Vanek -[2018-02-13T00:26:19.967] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:19.987] [INFO] cheese - inserting 1000 documents. first: Eliyahu Zini and last: Kirirom I Hydro Power Plant -[2018-02-13T00:26:20.014] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:26:20.023] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:20.128] [INFO] cheese - inserting 1000 documents. first: Artin-Scheier theory and last: Wikipedia:Votes for deletion/Fred VII -[2018-02-13T00:26:20.167] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:26:20.255] [INFO] cheese - inserting 1000 documents. first: File:Basketcase2.jpg and last: Jake Mauer -[2018-02-13T00:26:20.342] [INFO] cheese - inserting 1000 documents. first: AJP (disambiguation) and last: French football Division 2 1946–47 -[2018-02-13T00:26:20.335] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:20.412] [INFO] cheese - inserting 1000 documents. first: Alba Roma and last: Lemlanti -[2018-02-13T00:26:20.449] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:26:20.511] [INFO] cheese - inserting 1000 documents. first: Template:User Kashmiri Proud and last: Bruno Langlois -[2018-02-13T00:26:20.546] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:20.567] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:26:20.580] [INFO] cheese - inserting 1000 documents. first: Herminio Blanco Mendoza and last: Good, WV -[2018-02-13T00:26:20.620] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:20.660] [INFO] cheese - inserting 1000 documents. first: Cranks restaurant and last: Category:Chaldean kings -[2018-02-13T00:26:20.706] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:26:20.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Abersee and last: Vranov -[2018-02-13T00:26:20.951] [INFO] cheese - inserting 1000 documents. first: Lyclene and last: SAO 64053 -[2018-02-13T00:26:20.961] [INFO] cheese - inserting 1000 documents. first: Bui and last: Yoshiki Hiraki -[2018-02-13T00:26:20.967] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:20.971] [INFO] cheese - inserting 1000 documents. first: Erich von Hornbostel and last: Coe Township, Michigan -[2018-02-13T00:26:20.978] [INFO] cheese - inserting 1000 documents. first: The St. Augustine Academy and last: Dzorgai Qiang language -[2018-02-13T00:26:21.001] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:21.006] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:26:21.028] [INFO] cheese - inserting 1000 documents. first: Lumparlanti and last: Wikipedia:Miscellany for deletion/User:Lizhandlin -[2018-02-13T00:26:21.035] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:26:21.059] [INFO] cheese - batch complete in: 1.631 secs -[2018-02-13T00:26:21.087] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:21.248] [INFO] cheese - inserting 1000 documents. first: After All The Wishing… and last: Spike UK -[2018-02-13T00:26:21.287] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:26:21.325] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The Lonely Sidewalk and last: Německý Brod -[2018-02-13T00:26:21.363] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:21.378] [INFO] cheese - inserting 1000 documents. first: Prohibition of Female Genital Mutilation (Scotland) Act 2005 and last: Morrison v. National Australia Bank -[2018-02-13T00:26:21.430] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:26:21.435] [INFO] cheese - inserting 1000 documents. first: Pingfang Qiang language and last: Cyprus – UK relations -[2018-02-13T00:26:21.481] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:21.522] [INFO] cheese - inserting 1000 documents. first: Category:People from Legionowo and last: Everstiluutnantti -[2018-02-13T00:26:21.552] [INFO] cheese - inserting 1000 documents. first: Prince Henry's Room and last: Apostolic fathers -[2018-02-13T00:26:21.595] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:21.628] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:21.647] [INFO] cheese - inserting 1000 documents. first: Allium waldsteinianum and last: Sandy Edmonds -[2018-02-13T00:26:21.684] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:21.746] [INFO] cheese - inserting 1000 documents. first: Mark Davies (Anglican bishop) and last: Voivodeship Road 430 (Poland) -[2018-02-13T00:26:21.786] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:26:21.842] [INFO] cheese - inserting 1000 documents. first: Category:Woodworking machines and last: Islamic New Year -[2018-02-13T00:26:21.845] [INFO] cheese - inserting 1000 documents. first: 2012 NCAA Division I FCS football rankings and last: Phineas And Ferb: Summer Belongs To You -[2018-02-13T00:26:21.889] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:21.920] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:26:21.985] [INFO] cheese - inserting 1000 documents. first: Blue schist and last: Coat of arms of Korybut -[2018-02-13T00:26:22.135] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:26:22.150] [INFO] cheese - inserting 1000 documents. first: False heather and last: Crescent (heraldry) -[2018-02-13T00:26:22.164] [INFO] cheese - inserting 1000 documents. first: Cleveland Symphony Orchestra and last: Category:Moroccan Maliki scholars -[2018-02-13T00:26:22.254] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:26:22.282] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:26:22.290] [INFO] cheese - inserting 1000 documents. first: Smithsonian Asian Pacific American Program and last: Kahar Barat -[2018-02-13T00:26:22.350] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:26:22.371] [INFO] cheese - inserting 1000 documents. first: Coldwater Township, Isabella County, Michigan and last: Interior Township, Michigan -[2018-02-13T00:26:22.405] [INFO] cheese - inserting 1000 documents. first: Underarms And Sideways and last: File:Fortune Dane.jpg -[2018-02-13T00:26:22.439] [INFO] cheese - batch complete in: 1.38 secs -[2018-02-13T00:26:22.468] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:22.576] [INFO] cheese - inserting 1000 documents. first: Hahn's Department Stores and last: El Lado oscuro del corazón -[2018-02-13T00:26:22.621] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:26:22.686] [INFO] cheese - inserting 1000 documents. first: Reformation of a contract and last: HLB International -[2018-02-13T00:26:22.696] [INFO] cheese - inserting 1000 documents. first: 1776: The Illustrated Edition and last: Meghan L. O’Sullivan -[2018-02-13T00:26:22.697] [INFO] cheese - inserting 1000 documents. first: Youth Groups and last: File:Interstate77 map.png -[2018-02-13T00:26:22.713] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Duke the Dog and last: Korney Shperling -[2018-02-13T00:26:22.732] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:22.735] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:26:22.786] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:22.795] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:26:22.969] [INFO] cheese - inserting 1000 documents. first: Wheelchair basketball at the 2012 Summer Paralympics – Men and last: Menahem Koretski -[2018-02-13T00:26:23.033] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:26:23.146] [INFO] cheese - inserting 1000 documents. first: File:LoverComeBack-poster.jpg and last: Buccaneers (film) -[2018-02-13T00:26:23.189] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:26:23.202] [INFO] cheese - inserting 1000 documents. first: December 1950 and last: List of visitors to Armenian Genocide Memorial -[2018-02-13T00:26:23.234] [INFO] cheese - inserting 1000 documents. first: Kanevskoi District and last: Mathías Cardacio -[2018-02-13T00:26:23.243] [INFO] cheese - inserting 1000 documents. first: Category:Resorts in the United Kingdom and last: Jining–Tongliao Railway -[2018-02-13T00:26:23.276] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:23.293] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:26:23.320] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:26:23.367] [INFO] cheese - inserting 1000 documents. first: File:Interstate80 map.png and last: Domeykite -[2018-02-13T00:26:23.429] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:26:23.543] [INFO] cheese - inserting 1000 documents. first: Boris at Last: -Feedbacker- and last: Template:Attached KML/Farm to Market Road 1938 -[2018-02-13T00:26:23.600] [INFO] cheese - inserting 1000 documents. first: Esenboğa Uluslararası Havalimanı and last: Philip L. Kohl -[2018-02-13T00:26:23.666] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:26:23.718] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:26:23.804] [INFO] cheese - inserting 1000 documents. first: Matchwood Township, Michigan and last: Jenkins Township, Crow Wing County, Minnesota -[2018-02-13T00:26:23.893] [INFO] cheese - inserting 1000 documents. first: 2015–16 Colorado State Rams men's basketball team and last: Peter Hines -[2018-02-13T00:26:23.906] [INFO] cheese - batch complete in: 1.467 secs -[2018-02-13T00:26:23.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Can Togay and last: Casey Carswell -[2018-02-13T00:26:23.955] [INFO] cheese - inserting 1000 documents. first: Information services and last: Wikipedia:Articles for deletion/Route M4 (Manhattan) -[2018-02-13T00:26:23.956] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:26:24.004] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:26:24.033] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:26:24.121] [INFO] cheese - inserting 1000 documents. first: Glenopolar angle and last: Alpha (band) -[2018-02-13T00:26:24.142] [INFO] cheese - inserting 1000 documents. first: Portal:Hong Kong/Selected biography/2 and last: Water maker and purifier -[2018-02-13T00:26:24.187] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:26:24.185] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:24.215] [INFO] cheese - inserting 1000 documents. first: Non-local object and last: The Hobbit: An Unexpected Journey -[2018-02-13T00:26:24.255] [INFO] cheese - inserting 1000 documents. first: Graeme Bean and last: Subalpine larkspur -[2018-02-13T00:26:24.277] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:26:24.290] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:26:24.417] [INFO] cheese - inserting 1000 documents. first: Percy baynes and last: Wikipedia:WikiProject Spam/LinkReports/dyras.com -[2018-02-13T00:26:24.451] [INFO] cheese - inserting 1000 documents. first: David Gordon Allen d’Aldecamb Lumsden of Cushnie and last: Deccan park -[2018-02-13T00:26:24.459] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:24.516] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:24.532] [INFO] cheese - inserting 1000 documents. first: 2015 South African Athletics Championships and last: Category:Penn Quakers soccer -[2018-02-13T00:26:24.541] [INFO] cheese - inserting 1000 documents. first: Ri Hak-son and last: Igor Melher -[2018-02-13T00:26:24.569] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:26:24.600] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:24.654] [INFO] cheese - inserting 1000 documents. first: Chenab Nagar Bridge and last: File:Reikäleipä view from above.jpg -[2018-02-13T00:26:24.657] [INFO] cheese - inserting 1000 documents. first: Estadio Manuel Ruíz de Lopera and last: Litter (animal) -[2018-02-13T00:26:24.704] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:24.756] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:24.917] [INFO] cheese - inserting 1000 documents. first: Lake Edward Township, Crow Wing County, Minnesota and last: Randall, Minnesota -[2018-02-13T00:26:24.927] [INFO] cheese - inserting 1000 documents. first: Philip Pembroke Stephens and last: Flying observatory -[2018-02-13T00:26:24.951] [INFO] cheese - inserting 1000 documents. first: Lee Garlington and last: Battle of Jarosław -[2018-02-13T00:26:24.962] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:26:24.979] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T00:26:24.998] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:25.003] [INFO] cheese - inserting 1000 documents. first: Category:American college wrestling templates and last: Farm to Market Road 2491 (Texas) -[2018-02-13T00:26:25.052] [INFO] cheese - inserting 1000 documents. first: Bolivar Edwards Kemp and last: Church of Akureyri -[2018-02-13T00:26:25.067] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:25.099] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:25.104] [INFO] cheese - inserting 1000 documents. first: File:Cavity decay process.png and last: Sun tzu ping fa -[2018-02-13T00:26:25.177] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:25.212] [INFO] cheese - inserting 1000 documents. first: Jake paralysis and last: Jonsson -[2018-02-13T00:26:25.296] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:26:25.453] [INFO] cheese - inserting 1000 documents. first: NAfW election, 2003 and last: Category:Oil and gas companies of the Republic of the Congo -[2018-02-13T00:26:25.487] [INFO] cheese - inserting 1000 documents. first: Texas Farm to Market Road 2491 and last: Daytime Emmy Award for Outstanding Entertainment Talk Show Host -[2018-02-13T00:26:25.522] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:26:25.527] [INFO] cheese - inserting 1000 documents. first: Muzeum Geologiczne Instytutu Nauk Geologicznych PAN w Krakowie and last: Bucuria -[2018-02-13T00:26:25.534] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:25.578] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:26:25.600] [INFO] cheese - inserting 1000 documents. first: Papillon-Lefèvre syndrome and last: Craterellus lutescens -[2018-02-13T00:26:25.641] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:26:25.714] [INFO] cheese - inserting 1000 documents. first: Behor and last: Wikipedia:Teahouse/Questions/Archive 39 -[2018-02-13T00:26:25.780] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:26:25.942] [INFO] cheese - inserting 1000 documents. first: EOFAD and last: Constance Fligg Elam Tipper -[2018-02-13T00:26:26.014] [INFO] cheese - inserting 1000 documents. first: Queensboro Ward and last: Category:Welsh Jesuits -[2018-02-13T00:26:26.018] [INFO] cheese - inserting 1000 documents. first: Starshipsofa and last: Brachychiton populneus -[2018-02-13T00:26:26.025] [INFO] cheese - inserting 1000 documents. first: Sad Café and last: CRC Chemicals Rebel 500 -[2018-02-13T00:26:26.031] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:26:26.082] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:26.089] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:26:26.106] [INFO] cheese - inserting 1000 documents. first: File:Uzair 100 0787.JPG and last: File:Bobby Valentino - Slow Down.jpg -[2018-02-13T00:26:26.118] [INFO] cheese - inserting 1000 documents. first: Richardson Township, Morrison County, Minnesota and last: Donnelly, Minnesota -[2018-02-13T00:26:26.120] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:26:26.163] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:26:26.196] [INFO] cheese - inserting 1000 documents. first: Connexin 20 and last: Church of St Christopher, Bare -[2018-02-13T00:26:26.196] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:26:26.245] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:26.403] [INFO] cheese - inserting 1000 documents. first: François Xavier Matthieu and last: Category:2010s Lithuanian television series endings -[2018-02-13T00:26:26.440] [INFO] cheese - inserting 1000 documents. first: Jacob Shaw (comics) and last: File:DeadHomiez.jpg -[2018-02-13T00:26:26.462] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:26.494] [INFO] cheese - inserting 1000 documents. first: Rebel 450 and last: Invalides (Paris RER) -[2018-02-13T00:26:26.507] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:26:26.534] [INFO] cheese - inserting 1000 documents. first: Uppal and last: Taboga -[2018-02-13T00:26:26.548] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:26.581] [INFO] cheese - inserting 1000 documents. first: File:Wikipedia-fonttest-chrome-0.2.149.29-windows-xp.png and last: Zalaháshágy -[2018-02-13T00:26:26.596] [INFO] cheese - inserting 1000 documents. first: Black-bellied Glossy-starling and last: St. Catherine's, Meath Street -[2018-02-13T00:26:26.598] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:26:26.644] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:26:26.644] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:26.857] [INFO] cheese - inserting 1000 documents. first: Les Belles-soeurs and last: Norberto Huezo -[2018-02-13T00:26:26.919] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:26.974] [INFO] cheese - inserting 1000 documents. first: Bruce Coburn and last: A.J. Carlson -[2018-02-13T00:26:27.010] [INFO] cheese - inserting 1000 documents. first: Category:Lithuanian television series endings by year and last: Thomas Browne (died 1891) -[2018-02-13T00:26:27.032] [INFO] cheese - inserting 1000 documents. first: Busaw and last: Ammann-Beenker tiling -[2018-02-13T00:26:27.039] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:27.075] [INFO] cheese - inserting 1000 documents. first: Princess Maria Antonietta of the Two Sicilies and last: Millwall v West Ham -[2018-02-13T00:26:27.108] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:26:27.115] [INFO] cheese - inserting 1000 documents. first: William Charlton (died 1567) and last: Category:Council of European Municipalities and Regions -[2018-02-13T00:26:27.117] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:26:27.183] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:26:27.185] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:27.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Jamal Lost and last: Microteaching -[2018-02-13T00:26:27.300] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:26:27.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Buchli drive and last: RND07 -[2018-02-13T00:26:27.411] [INFO] cheese - inserting 1000 documents. first: Donnelly Township, Stevens County, Minnesota and last: Ethel, Missouri -[2018-02-13T00:26:27.437] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:27.466] [INFO] cheese - inserting 1000 documents. first: Category:1907 establishments in Iceland and last: United States v. Mitchell (disambiguation) -[2018-02-13T00:26:27.564] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T00:26:27.597] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:27.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Artist Point and last: Wikipedia:Votes for deletion/Simon R Jones -[2018-02-13T00:26:27.679] [INFO] cheese - inserting 1000 documents. first: R1200S and last: Kurumba Maldives -[2018-02-13T00:26:27.686] [INFO] cheese - inserting 1000 documents. first: Gastric ulcers and last: Rafael Vasquez (baseball) -[2018-02-13T00:26:27.712] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:27.766] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:26:27.797] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:26:27.847] [INFO] cheese - inserting 1000 documents. first: Millwall v west ham and last: Leonora of Castile -[2018-02-13T00:26:27.904] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:26:27.977] [INFO] cheese - inserting 1000 documents. first: The Nonesuch Press and last: Northern Securities Co. v. United States -[2018-02-13T00:26:28.023] [INFO] cheese - inserting 1000 documents. first: List of butterflies of The Gambia and last: Category:People associated with the University of Sri Jayewardenepura -[2018-02-13T00:26:28.029] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:26:28.057] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:28.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Deepcut Barracks and last: Stay on My Side Tonight -[2018-02-13T00:26:28.147] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:26:28.159] [INFO] cheese - inserting 1000 documents. first: Category:Judiciary of Honduras and last: Beki Adam -[2018-02-13T00:26:28.187] [INFO] cheese - inserting 1000 documents. first: United States Special Envoy for Northern Ireland and last: Wikipedia:Articles for deletion/Millennium Middle School -[2018-02-13T00:26:28.201] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:26:28.255] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:28.452] [INFO] cheese - inserting 1000 documents. first: Leptosaces mataea and last: Category:1980s disestablishments in Syria -[2018-02-13T00:26:28.470] [INFO] cheese - inserting 1000 documents. first: Khambaliya and last: Kharaosta -[2018-02-13T00:26:28.473] [INFO] cheese - inserting 1000 documents. first: File:RyanFrancis-USC12.jpeg and last: European Transport Safety Council -[2018-02-13T00:26:28.480] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:26:28.513] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:26:28.522] [INFO] cheese - inserting 1000 documents. first: Am ol Deyay-e Yek and last: Hayaviyyeh -[2018-02-13T00:26:28.541] [INFO] cheese - inserting 1000 documents. first: Real Madrid C.F. season 1902–03 and last: Jānis Cimze -[2018-02-13T00:26:28.550] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:26:28.577] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:26:28.629] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:26:28.641] [INFO] cheese - inserting 1000 documents. first: Handheld museum guide and last: Für immer (Warlock song) -[2018-02-13T00:26:28.811] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:26:28.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/2003 Doubles Champion and last: File:American Tourister logo.png -[2018-02-13T00:26:28.898] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:29.016] [INFO] cheese - inserting 1000 documents. first: Elizabeth Mary Driver and last: Berrya tahitensis -[2018-02-13T00:26:29.051] [INFO] cheese - inserting 1000 documents. first: Khersheh and last: United States Post Office-Visalia Town Center Station -[2018-02-13T00:26:29.058] [INFO] cheese - inserting 1000 documents. first: Burial (Extol album) and last: Lob Scows -[2018-02-13T00:26:29.069] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:29.094] [INFO] cheese - inserting 1000 documents. first: La Plata, Missouri and last: Hampton, Nebraska -[2018-02-13T00:26:29.112] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:26:29.121] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:26:29.147] [INFO] cheese - inserting 1000 documents. first: Portal:Judaism/Weekly Torah portion/Bereishit and last: Wikipedia:WikiProject Christianity/Church of the Nazarene work group/Category -[2018-02-13T00:26:29.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Dermovision and last: Wikipedia:Votes for deletion/Yara-ma-ya-hoo -[2018-02-13T00:26:29.179] [INFO] cheese - batch complete in: 1.613 secs -[2018-02-13T00:26:29.203] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:26:29.206] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:26:29.311] [INFO] cheese - inserting 1000 documents. first: Paleochannel and last: Forgive me (leona song) -[2018-02-13T00:26:29.374] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:26:29.433] [INFO] cheese - inserting 1000 documents. first: Category:Bahrain-Qatar relations and last: Tampureh-ye Ruisheyd -[2018-02-13T00:26:29.451] [INFO] cheese - inserting 1000 documents. first: Berrya vescoana and last: Lifted Up (1985) -[2018-02-13T00:26:29.462] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:26:29.489] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Frequencies of Brilliance and last: Touch-Tone Terrorists -[2018-02-13T00:26:29.507] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:29.549] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:26:29.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Christianity/Church of the Nazarene work group/Content and last: Up in the Air (soundtrack) -[2018-02-13T00:26:29.616] [INFO] cheese - inserting 1000 documents. first: File:CM big snow.jpg and last: Taranto air strike -[2018-02-13T00:26:29.615] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:29.673] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:29.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Proxymed and last: Monkey Mia, Western Australia -[2018-02-13T00:26:29.792] [INFO] cheese - inserting 1000 documents. first: Template:User Ps 3 and last: Category:1995 establishments in New Zealand -[2018-02-13T00:26:29.799] [INFO] cheese - inserting 1000 documents. first: FC Shakhtar Donetsk Reserves and Youth Team and last: Rugby Quebec -[2018-02-13T00:26:29.803] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:26:29.830] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:26:29.860] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:26:29.995] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SHM right/2 and last: File:Kurac, pička, govno, sisa.jpg -[2018-02-13T00:26:30.026] [INFO] cheese - inserting 1000 documents. first: Smooth horsetail and last: Udarnenskoye Urban Settlement -[2018-02-13T00:26:30.036] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:30.077] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:26:30.109] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of Ecuador and last: Wikipedia:Articles for deletion/Tommaso Cardile -[2018-02-13T00:26:30.150] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:26:30.182] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Camilla Hall and last: Ray Hayworth -[2018-02-13T00:26:30.207] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:26:30.271] [INFO] cheese - inserting 1000 documents. first: Bettadasanapura, Bangalore and last: Sehjowal chak no.11 -[2018-02-13T00:26:30.312] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:30.362] [INFO] cheese - inserting 1000 documents. first: File:The Apple (1980) Soundtrack.jpg and last: Meigs County (disambiguation) -[2018-02-13T00:26:30.403] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:26:30.476] [INFO] cheese - inserting 1000 documents. first: No Me Sé Rajar and last: Pressure (Billy Ocean song) -[2018-02-13T00:26:30.479] [INFO] cheese - inserting 1000 documents. first: Category:French classical musicians by instrument and last: Mississippi Marine Brigade -[2018-02-13T00:26:30.485] [INFO] cheese - inserting 1000 documents. first: Plains lovegrass and last: File:Qian Xiuling cropped square in 1933.JPG -[2018-02-13T00:26:30.496] [INFO] cheese - inserting 1000 documents. first: W. R. Ogilvie-Grant and last: Scharley -[2018-02-13T00:26:30.524] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:26:30.533] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:26:30.539] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:30.559] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:26:30.639] [INFO] cheese - inserting 1000 documents. first: Hordville, Nebraska and last: Shamong Township, New Jersey -[2018-02-13T00:26:30.689] [INFO] cheese - inserting 1000 documents. first: Choreutis incisalis and last: Chiaia funicular -[2018-02-13T00:26:30.692] [INFO] cheese - inserting 1000 documents. first: File:Joshiraku manga volume 1 cover.jpg and last: Ground Master 400 -[2018-02-13T00:26:30.719] [INFO] cheese - batch complete in: 1.54 secs -[2018-02-13T00:26:30.744] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:26:30.750] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:30.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Integration of Internet Explorer and Windows and last: Wikipedia:Votes for deletion/Canvasion -[2018-02-13T00:26:30.912] [INFO] cheese - inserting 1000 documents. first: Spatzenhausen and last: Underground rivers in London -[2018-02-13T00:26:30.916] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:26:30.939] [INFO] cheese - inserting 1000 documents. first: Henry Winslow Woollett and last: 1994 European Athletics Championships – Women's 100 metres hurdles -[2018-02-13T00:26:30.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/schylaske.co.nf and last: Template:Infobox legislative election/sandbox -[2018-02-13T00:26:30.959] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:26:30.989] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:26:30.999] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:26:31.220] [INFO] cheese - inserting 1000 documents. first: Neuchâtel Open SBS Trophy and last: Low Impact Ion Cannon -[2018-02-13T00:26:31.277] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:26:31.326] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Good Shepherd (2006 film) and last: Wikipedia:Votes for deletion/Alfredo M. Bonanno -[2018-02-13T00:26:31.327] [INFO] cheese - inserting 1000 documents. first: Isovaleryl-coa dehydrogenase and last: Template:Nebraska Pageant Winners -[2018-02-13T00:26:31.379] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:26:31.378] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:31.476] [INFO] cheese - inserting 1000 documents. first: Falla monument and last: 2003 Greenlandic Men's Football Championship -[2018-02-13T00:26:31.479] [INFO] cheese - inserting 1000 documents. first: Münsterhausen and last: Callan -[2018-02-13T00:26:31.517] [INFO] cheese - inserting 1000 documents. first: Alt Pirineu i Aran and last: List of international organization leaders in 2008 -[2018-02-13T00:26:31.525] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:26:31.548] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:31.580] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:26:31.675] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Carlo Beenakker and last: Trinity Island -[2018-02-13T00:26:31.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space 1026 and last: File:Energy Pointer Sisters album.jpg -[2018-02-13T00:26:31.716] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:26:31.729] [INFO] cheese - inserting 1000 documents. first: Category:1955 Canadian television series endings and last: List of names for the Volkswagen Type 1 -[2018-02-13T00:26:31.731] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:31.801] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:26:31.915] [INFO] cheese - inserting 1000 documents. first: Michigan–Minnesota football rivalry and last: Steriruncic 7-cube -[2018-02-13T00:26:31.958] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:31.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Justin Sofio and last: Robert H. Waterman Jr. -[2018-02-13T00:26:31.980] [INFO] cheese - inserting 1000 documents. first: Velaga Dizdarevic and last: Ponder (horse) -[2018-02-13T00:26:31.993] [INFO] cheese - inserting 1000 documents. first: Dermotoxins and last: James Rayside -[2018-02-13T00:26:31.999] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:26:32.024] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:26:32.047] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:32.125] [INFO] cheese - inserting 1000 documents. first: Pride Of The Prairie and last: German submarine U-393 -[2018-02-13T00:26:32.166] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:26:32.208] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Radio KoL and last: Wikipedia:Votes for deletion/Four dumb kids -[2018-02-13T00:26:32.239] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:26:32.269] [INFO] cheese - inserting 1000 documents. first: Labinskiy District and last: Wikipedia:Meetup/Los Angeles -[2018-02-13T00:26:32.310] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:26:32.354] [INFO] cheese - inserting 1000 documents. first: Puerto Limon, Costa Rica and last: Sutton School -[2018-02-13T00:26:32.392] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:26:32.396] [INFO] cheese - inserting 1000 documents. first: Steriruncicantic 7-cube and last: Revolt (Muse song) -[2018-02-13T00:26:32.402] [INFO] cheese - inserting 1000 documents. first: Batavian Society of Arts and Sciences and last: Henry Justin Alan -[2018-02-13T00:26:32.447] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:26:32.460] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:26:32.513] [INFO] cheese - inserting 1000 documents. first: Kjersti Horn and last: West Virginia University-Morgantown -[2018-02-13T00:26:32.545] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:26:32.577] [INFO] cheese - inserting 1000 documents. first: Southampton Township, New Jersey and last: East Otto, New York -[2018-02-13T00:26:32.646] [INFO] cheese - inserting 1000 documents. first: Peter Kivy and last: Category:People from Valparaíso Province -[2018-02-13T00:26:32.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Chigozie okonkwo and last: Assonet Bay -[2018-02-13T00:26:32.695] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:32.730] [INFO] cheese - batch complete in: 2.011 secs -[2018-02-13T00:26:32.746] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:26:32.819] [INFO] cheese - inserting 1000 documents. first: Albertville, AL μSA and last: History of the constellations -[2018-02-13T00:26:32.832] [INFO] cheese - inserting 1000 documents. first: Cleo Merode and last: Arizona Route 202 -[2018-02-13T00:26:32.834] [INFO] cheese - inserting 1000 documents. first: London City & Midland Bank and last: Liubeshiv -[2018-02-13T00:26:32.872] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:32.884] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:26:32.894] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:32.915] [INFO] cheese - inserting 1000 documents. first: West Virginia University Morgantown and last: Victory Square War Memorial -[2018-02-13T00:26:32.958] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:26:33.141] [INFO] cheese - inserting 1000 documents. first: Joe Devine (scout) and last: Wedding arrhae -[2018-02-13T00:26:33.390] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:26:33.519] [INFO] cheese - inserting 1000 documents. first: Jonathan Dorr Bradley and last: United Arab Emirates Bahrain relations -[2018-02-13T00:26:33.544] [INFO] cheese - inserting 1000 documents. first: Hon Alexandra Knatchbull and last: File:Hand water pump.jpg -[2018-02-13T00:26:33.645] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:26:33.689] [INFO] cheese - inserting 1000 documents. first: Mme. Sun Yat-sen and last: Matic Kotnik -[2018-02-13T00:26:33.694] [INFO] cheese - inserting 1000 documents. first: David Preiss and last: Pierre Lambert de la Motte -[2018-02-13T00:26:33.738] [INFO] cheese - inserting 1000 documents. first: Hassō no kamae and last: File:Cyrilalbum.jpg -[2018-02-13T00:26:33.812] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T00:26:33.902] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:26:33.907] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T00:26:34.016] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T00:26:34.209] [INFO] cheese - inserting 1000 documents. first: Bahrain United Arab Emirates relations and last: Gagea gussonei -[2018-02-13T00:26:34.313] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:26:34.354] [INFO] cheese - inserting 1000 documents. first: Naik, J. P. and last: Ankara Railway Station -[2018-02-13T00:26:34.377] [INFO] cheese - inserting 1000 documents. first: Hassan Mohamud and last: Virgilio Rosario -[2018-02-13T00:26:34.404] [INFO] cheese - inserting 1000 documents. first: Júlio de Castilhos, RS and last: Traditional games -[2018-02-13T00:26:34.405] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Kinkead and last: Wikipedia:Articles for deletion/Eeth Koth -[2018-02-13T00:26:34.420] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:26:34.481] [INFO] cheese - inserting 1000 documents. first: Crossing Guard and last: A Letter to a Hindu -[2018-02-13T00:26:34.479] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:26:34.486] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T00:26:34.511] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:26:34.603] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:26:34.803] [INFO] cheese - inserting 1000 documents. first: Bundesvision Song Contest 2010 and last: Portal:Current events/March 2014/Sidebar -[2018-02-13T00:26:34.861] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:26:34.907] [INFO] cheese - inserting 1000 documents. first: File:Sword of chaos.jpg and last: James Allan (disambiguation) -[2018-02-13T00:26:34.919] [INFO] cheese - inserting 1000 documents. first: Department of Primary Industry and last: Weeds -[2018-02-13T00:26:34.919] [INFO] cheese - inserting 1000 documents. first: Circus Redickuless and last: Vita Bergen -[2018-02-13T00:26:34.942] [INFO] cheese - inserting 1000 documents. first: File:G fr navarea-logo.png and last: Arne & Carlos -[2018-02-13T00:26:34.951] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:26:34.954] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:34.959] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:26:35.009] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:26:35.090] [INFO] cheese - inserting 1000 documents. first: 2009 IPP Trophy and last: Kathleen Cotter -[2018-02-13T00:26:35.155] [INFO] cheese - inserting 1000 documents. first: East Randolph, New York and last: Pitcairn, New York -[2018-02-13T00:26:35.244] [INFO] cheese - inserting 1000 documents. first: False helmet orchid and last: Tommy Gunn (pornographic actor) -[2018-02-13T00:26:35.253] [INFO] cheese - inserting 1000 documents. first: Víctor Manuelle and last: Wikipedia:Votes for deletion/David McKenzie -[2018-02-13T00:26:35.253] [INFO] cheese - batch complete in: 2.523 secs -[2018-02-13T00:26:35.260] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:26:35.302] [INFO] cheese - inserting 1000 documents. first: 1952 Nippon Professional Baseball season and last: Lord Shield -[2018-02-13T00:26:35.339] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:26:35.346] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:26:35.392] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:35.395] [INFO] cheese - inserting 1000 documents. first: Black Suit and last: List of Registered Historic Places in Albany County, New York -[2018-02-13T00:26:35.410] [INFO] cheese - inserting 1000 documents. first: Wallum sedge frog and last: Close Encounters of the Fifth Kind -[2018-02-13T00:26:35.445] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:26:35.478] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:26:35.628] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/Gryphon2 and last: Postlarva -[2018-02-13T00:26:35.661] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Sakai, software project and last: Wikipedia:Votes for deletion/Sleepyshat -[2018-02-13T00:26:35.699] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:35.714] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:26:35.779] [INFO] cheese - inserting 1000 documents. first: Category:2010s disestablishments in Ireland and last: 2000 Oklahoma State Cowboys football team -[2018-02-13T00:26:35.813] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:35.814] [INFO] cheese - inserting 1000 documents. first: File:Official Cover Art of Amelia and Me by Heather Stemp.png and last: Colin McLean -[2018-02-13T00:26:35.837] [INFO] cheese - inserting 1000 documents. first: Arthur Devlin (disambiguation) and last: File:Grimus cover.jpg -[2018-02-13T00:26:35.865] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:26:35.886] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:26:35.924] [INFO] cheese - inserting 1000 documents. first: Category:1876 poems and last: Lunar letters -[2018-02-13T00:26:35.975] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:36.315] [INFO] cheese - inserting 1000 documents. first: Libertarian perspectives on marriage and last: Acadamh Ríoga na hÉireann -[2018-02-13T00:26:36.380] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:26:36.455] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Asuka Fukuda and last: Wikipedia:Articles for deletion/.hack/SIGN -[2018-02-13T00:26:36.459] [INFO] cheese - inserting 1000 documents. first: Béla Bácskai and last: Scouting in Orkney -[2018-02-13T00:26:36.475] [INFO] cheese - inserting 1000 documents. first: Lycaenesthes smithi and last: Portal:Politics/Selected article/18 -[2018-02-13T00:26:36.489] [INFO] cheese - inserting 1000 documents. first: Category:International schools in Gabon and last: Wikipedia:CYCMISSING -[2018-02-13T00:26:36.525] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:26:36.538] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:26:36.539] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:26:36.585] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:26:36.671] [INFO] cheese - inserting 1000 documents. first: Italian cricket team and last: Du Shi -[2018-02-13T00:26:36.744] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:26:36.955] [INFO] cheese - inserting 1000 documents. first: File:Logo of the NSLF.jpg and last: Category:2000 disestablishments in Israel -[2018-02-13T00:26:36.957] [INFO] cheese - inserting 1000 documents. first: Your Starter for... and last: Jaama -[2018-02-13T00:26:37.006] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:26:37.014] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:37.047] [INFO] cheese - inserting 1000 documents. first: Nèiměnggǔ and last: KZHN (AM) -[2018-02-13T00:26:37.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Cycling Missing and last: Lanceleaf thoroughwort -[2018-02-13T00:26:37.108] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:26:37.114] [INFO] cheese - inserting 1000 documents. first: Tere Mere Sapne (1996 film) and last: Qadi Numan -[2018-02-13T00:26:37.112] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:37.125] [INFO] cheese - inserting 1000 documents. first: Rensselaer Falls, New York and last: Brevard, North Carolina -[2018-02-13T00:26:37.155] [INFO] cheese - inserting 1000 documents. first: Ivory Joe Hunter and last: Compression Labs Inc. -[2018-02-13T00:26:37.159] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:37.218] [INFO] cheese - batch complete in: 1.965 secs -[2018-02-13T00:26:37.220] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:26:37.414] [INFO] cheese - inserting 1000 documents. first: Jaama (Illuka) and last: Rarities (The Beatles US album) -[2018-02-13T00:26:37.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Global Allergy Network and last: Andreas Bomba -[2018-02-13T00:26:37.452] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:37.453] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:37.494] [INFO] cheese - inserting 1000 documents. first: False fennel and last: Jones Island (South Australia) -[2018-02-13T00:26:37.536] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:26:37.569] [INFO] cheese - inserting 1000 documents. first: Danny Spanos and last: Portal:Poetry/Quotes/2 -[2018-02-13T00:26:37.625] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:37.715] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Worcestershire and last: File:SebastianArcelus2008.jpg -[2018-02-13T00:26:37.767] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:26:37.806] [INFO] cheese - inserting 1000 documents. first: Shir Ali and last: Category:Transport infrastructure completed in 1823 -[2018-02-13T00:26:37.807] [INFO] cheese - inserting 1000 documents. first: Chaudhry Rehmat Ali’s and last: Wikipedia:WikiProject Missing encyclopedic articles/Antarctica/R1 -[2018-02-13T00:26:37.837] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:37.842] [INFO] cheese - inserting 1000 documents. first: Portal:Volcanoes/Selected article/16 and last: Thomas Björn Open -[2018-02-13T00:26:37.883] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:26:37.899] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:37.960] [INFO] cheese - inserting 1000 documents. first: Bullet Babe and last: Gagea heldreichii -[2018-02-13T00:26:38.035] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:38.142] [INFO] cheese - inserting 1000 documents. first: Asplundia allenii and last: Template:Local Government Areas of the Northern Territory -[2018-02-13T00:26:38.189] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:26:38.263] [INFO] cheese - inserting 1000 documents. first: File:Galemys pyrenaicus 01 by-dpc.jpg and last: Category:United States presidential campaigns, 2008 -[2018-02-13T00:26:38.274] [INFO] cheese - inserting 1000 documents. first: 1360 AM and last: Norwest Center (Minneapolis) -[2018-02-13T00:26:38.304] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:38.336] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:26:38.499] [INFO] cheese - inserting 1000 documents. first: Category:Anglican bishops of Calgary and last: Helen Quintana Cordero -[2018-02-13T00:26:38.565] [INFO] cheese - inserting 1000 documents. first: Ayiya and last: Cortland Winn -[2018-02-13T00:26:38.644] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:26:38.687] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:26:38.733] [INFO] cheese - inserting 1000 documents. first: Gagea montana and last: Wikipedia:Sockpuppet investigations/Mr.sahota -[2018-02-13T00:26:38.815] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:26:38.885] [INFO] cheese - inserting 1000 documents. first: Haydn's Opus 76 String Quartets and last: Template:Ss icon -[2018-02-13T00:26:38.913] [INFO] cheese - inserting 1000 documents. first: Rosman, North Carolina and last: Mariemont, Ohio -[2018-02-13T00:26:38.926] [INFO] cheese - inserting 1000 documents. first: Goverment of Pakistan and last: Category:Organizations based in Kobe -[2018-02-13T00:26:38.933] [INFO] cheese - inserting 1000 documents. first: File:Gunnerkrigg SecondTreatise.jpg and last: Miroslav Klinger -[2018-02-13T00:26:38.934] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:26:38.985] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:26:39.015] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:26:39.026] [INFO] cheese - batch complete in: 1.807 secs -[2018-02-13T00:26:39.061] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Melvin and Teddy and last: Wikipedia:Votes for deletion/L'inderdit -[2018-02-13T00:26:39.101] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:26:39.113] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Finalfantasy23 and last: Carl, Duke of Ostrogothland -[2018-02-13T00:26:39.156] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:26:39.191] [INFO] cheese - inserting 1000 documents. first: Lucky Buddha Beer and last: Hangard Wood -[2018-02-13T00:26:39.240] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:39.329] [INFO] cheese - inserting 1000 documents. first: Al-Saika and last: Wikipedia:Votes for deletion/Axelrodian education -[2018-02-13T00:26:39.369] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:26:39.376] [INFO] cheese - inserting 1000 documents. first: Zabłocki, Janusz and last: Court of Summary Jurisdiction -[2018-02-13T00:26:39.389] [INFO] cheese - inserting 1000 documents. first: Tony the gun bonello and last: Ballybrown GAA -[2018-02-13T00:26:39.414] [INFO] cheese - inserting 1000 documents. first: Robin White (African Journalist) and last: History of Wrocław -[2018-02-13T00:26:39.430] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:39.446] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:26:39.504] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:39.713] [INFO] cheese - inserting 1000 documents. first: Deutsch-Französisches Gymnasium Freiburg im Breisgau and last: Cryptolechia vestalis -[2018-02-13T00:26:39.722] [INFO] cheese - inserting 1000 documents. first: Topsey Sinden and last: Sudbury municipal election, 1950 -[2018-02-13T00:26:39.775] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:26:39.791] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:26:39.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Meat helmet and last: Template:European Poker Awards Player of the Year -[2018-02-13T00:26:39.865] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:39.978] [INFO] cheese - inserting 1000 documents. first: File:Oklahoma City Oklahoma.jpg and last: John Hunt (New South Wales politician) -[2018-02-13T00:26:40.049] [INFO] cheese - inserting 1000 documents. first: Template:Louisiana–Monroe Warhawks men's basketball coach navbox and last: Pop'n Music Script -[2018-02-13T00:26:40.060] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:26:40.076] [INFO] cheese - inserting 1000 documents. first: William David Pearlman and last: Category:Unincorporated communities in Santa Rosa County, Florida -[2018-02-13T00:26:40.119] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:26:40.124] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:26:40.156] [INFO] cheese - inserting 1000 documents. first: Harpalyce albella and last: Witch mark -[2018-02-13T00:26:40.195] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:26:40.320] [INFO] cheese - inserting 1000 documents. first: East Central Texas forests and last: Jakabaring Stadium -[2018-02-13T00:26:40.363] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:26:40.433] [INFO] cheese - inserting 1000 documents. first: Portal:Toys/Selected article/14 and last: Athletics at the 2012 Summer Paralympics – Women's 200 metres T34 -[2018-02-13T00:26:40.502] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:40.507] [INFO] cheese - inserting 1000 documents. first: South Dakota Highway 89 and last: TV 69 -[2018-02-13T00:26:40.522] [INFO] cheese - inserting 1000 documents. first: Selenite (ion) and last: Harry Lumley (baseball) -[2018-02-13T00:26:40.569] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:26:40.578] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:26:40.592] [INFO] cheese - inserting 1000 documents. first: Pulmonary gas exchange and last: Category:Grade I listed ships -[2018-02-13T00:26:40.630] [INFO] cheese - inserting 1000 documents. first: Monfort Heights East, Ohio and last: Goldsby, Oklahoma -[2018-02-13T00:26:40.630] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:40.695] [INFO] cheese - inserting 1000 documents. first: Judy Coser and last: SQH -[2018-02-13T00:26:40.718] [INFO] cheese - batch complete in: 1.691 secs -[2018-02-13T00:26:40.749] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:26:40.754] [INFO] cheese - inserting 1000 documents. first: Geoffrey peterson and last: File:Clark Shaughnessy.jpg -[2018-02-13T00:26:40.797] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:26:40.923] [INFO] cheese - inserting 1000 documents. first: File:The Fabled Fourth Graders of Aesop Elementary School.jpg and last: No Fond Return Of Love -[2018-02-13T00:26:40.960] [INFO] cheese - inserting 1000 documents. first: Gatekeepers (game show) and last: Category:Academics of the Helsinki University of Technology -[2018-02-13T00:26:40.980] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:26:40.988] [INFO] cheese - inserting 1000 documents. first: Olean, NY μSA and last: Kingsville, TX μSA -[2018-02-13T00:26:41.010] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:26:41.044] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:26:41.055] [INFO] cheese - inserting 1000 documents. first: Kodakara and last: JFK National Historic Site -[2018-02-13T00:26:41.068] [INFO] cheese - inserting 1000 documents. first: Earthquakes in 1913 and last: 1927 in the Philippines -[2018-02-13T00:26:41.101] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:26:41.121] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:26:41.185] [INFO] cheese - inserting 1000 documents. first: The Moon and the Nightspirit and last: PADM -[2018-02-13T00:26:41.227] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:41.255] [INFO] cheese - inserting 1000 documents. first: A Man Rides Through and last: File:SchoolsPlusLogo.jpg -[2018-02-13T00:26:41.298] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:26:41.402] [INFO] cheese - inserting 1000 documents. first: Category:1995 establishments in the Bahamas and last: Bell 47-G2 -[2018-02-13T00:26:41.421] [INFO] cheese - inserting 1000 documents. first: Game Design Workshop and last: Gayton, Merseyside -[2018-02-13T00:26:41.448] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:26:41.476] [INFO] cheese - inserting 1000 documents. first: 1928 in the Philippines and last: Category:1786 establishments in Virginia -[2018-02-13T00:26:41.509] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:41.568] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:26:41.651] [INFO] cheese - inserting 1000 documents. first: Garcinia prainiana and last: Stock Market Regulation in the United States -[2018-02-13T00:26:41.658] [INFO] cheese - inserting 1000 documents. first: Template:USCongRep/MD/81 and last: Wikipedia:Articles for deletion/List of streets in Manchester -[2018-02-13T00:26:41.703] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:26:41.713] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:26:41.722] [INFO] cheese - inserting 1000 documents. first: Vincent Obsitnik and last: Utah State Route 66 (1931) -[2018-02-13T00:26:41.817] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:41.936] [INFO] cheese - inserting 1000 documents. first: 1967 Iowa–Minnesota tornado outbreak and last: File:Rago1470 160AJ MiddxUni.JPG -[2018-02-13T00:26:41.946] [INFO] cheese - inserting 1000 documents. first: Innovisions and last: Gnathifera aphronesa -[2018-02-13T00:26:41.962] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Cylindrophyllum and last: Template:Bfidb series/doc -[2018-02-13T00:26:41.989] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:26:41.990] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:42.024] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:26:42.189] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of County Sligo and last: Executive Council of Massachusetts -[2018-02-13T00:26:42.190] [INFO] cheese - inserting 1000 documents. first: Template:Social Democratic Party of Switzerland/meta/color and last: Jason Holley -[2018-02-13T00:26:42.220] [INFO] cheese - inserting 1000 documents. first: Belangalo State Forest and last: Kraul Mountains -[2018-02-13T00:26:42.245] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:42.266] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:26:42.270] [INFO] cheese - inserting 1000 documents. first: Newcastle, Oklahoma and last: Strausstown, Pennsylvania -[2018-02-13T00:26:42.292] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:26:42.368] [INFO] cheese - batch complete in: 1.65 secs -[2018-02-13T00:26:42.395] [INFO] cheese - inserting 1000 documents. first: File:Gdleen novel cover vol 1.jpg and last: Athletics at the 2007 Summer Universiade – Women's 4 × 400 metres relay -[2018-02-13T00:26:42.403] [INFO] cheese - inserting 1000 documents. first: Gnathifera eurybias and last: Team Øster Hus-Ridley -[2018-02-13T00:26:42.408] [INFO] cheese - inserting 1000 documents. first: Interstate 90 in Wyoming and last: List of Canadian ambassadors to Israel -[2018-02-13T00:26:42.451] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:26:42.464] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:26:42.520] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:26:42.666] [INFO] cheese - inserting 1000 documents. first: Proper divisors and last: Wikipedia:Articles for deletion/Barikad Crew -[2018-02-13T00:26:42.692] [INFO] cheese - inserting 1000 documents. first: Oslo Cup and last: Lists of English words of international origin -[2018-02-13T00:26:42.713] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:26:42.741] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:42.784] [INFO] cheese - inserting 1000 documents. first: Barbourville and last: Ton Class Minesweepers -[2018-02-13T00:26:42.844] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:26:42.865] [INFO] cheese - inserting 1000 documents. first: Duwayne Smart and last: Category:Songs written by Tomomi Ogawa -[2018-02-13T00:26:42.873] [INFO] cheese - inserting 1000 documents. first: Dover street market and last: GT3 -[2018-02-13T00:26:42.879] [INFO] cheese - inserting 1000 documents. first: Category:Austria–Poland relations and last: Frost Bank Tower (San Antonio) -[2018-02-13T00:26:42.961] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:26:42.968] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:43.013] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:43.160] [INFO] cheese - inserting 1000 documents. first: Berceuse (in C major) Op. 2, for piano and last: Saint Vitalis (disambiguation) -[2018-02-13T00:26:43.205] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:26:43.233] [INFO] cheese - inserting 1000 documents. first: Meyer-Hanno and last: File:The Heritage Fleet logo.png -[2018-02-13T00:26:43.273] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:26:43.367] [INFO] cheese - inserting 1000 documents. first: Halcyon Class Minesweepers and last: Sorrent -[2018-02-13T00:26:43.423] [INFO] cheese - inserting 1000 documents. first: John Francis Hayes and last: File:The Last Outlaw 1927 Poster.jpg -[2018-02-13T00:26:43.433] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:26:43.472] [INFO] cheese - inserting 1000 documents. first: Category:Bluffton Beavers and last: Cotul Ostritei -[2018-02-13T00:26:43.487] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:26:43.493] [INFO] cheese - inserting 1000 documents. first: Daniel L. Ackman and last: M8 Buford -[2018-02-13T00:26:43.559] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:26:43.564] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:26:43.655] [INFO] cheese - inserting 1000 documents. first: PAVC and last: John Fleming (1743-1802) -[2018-02-13T00:26:43.685] [INFO] cheese - inserting 1000 documents. first: John Rolph (judge) and last: Mahmoad Abdah v. George W. Bush -[2018-02-13T00:26:43.698] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:26:43.733] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:26:43.813] [INFO] cheese - inserting 1000 documents. first: Tilden Township, Berks County, Pennsylvania and last: Lima, Pennsylvania -[2018-02-13T00:26:43.868] [INFO] cheese - inserting 1000 documents. first: René Sully Prudhomme and last: Cariamaen -[2018-02-13T00:26:43.913] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T00:26:43.929] [INFO] cheese - inserting 1000 documents. first: Mark Milligan and last: Wikipedia:Articles for deletion/Prussian Blue (band) -[2018-02-13T00:26:43.929] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:44.009] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:26:44.020] [INFO] cheese - inserting 1000 documents. first: Mălinești and last: Bankruptcy in Puerto Rico -[2018-02-13T00:26:44.059] [INFO] cheese - inserting 1000 documents. first: Sparta Township, Knox County, Illinois and last: Category:Hilltop Hoods members -[2018-02-13T00:26:44.084] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:26:44.102] [INFO] cheese - inserting 1000 documents. first: File:War-turks-persian.jpg and last: Metrorail Witwatersrand -[2018-02-13T00:26:44.120] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:26:44.161] [INFO] cheese - inserting 1000 documents. first: C. Burton Hotel and last: Flor Silvestre (1942 Film) -[2018-02-13T00:26:44.160] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:26:44.253] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:26:44.356] [INFO] cheese - inserting 1000 documents. first: File:Official Rain's Coming World Tour poster.jpg and last: Denver (song) -[2018-02-13T00:26:44.395] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:44.472] [INFO] cheese - inserting 1000 documents. first: Darcy law and last: File:Cutleraflatmancover.jpg -[2018-02-13T00:26:44.479] [INFO] cheese - inserting 1000 documents. first: Category:Argentine male writers and last: Template:2015–16 National League table -[2018-02-13T00:26:44.523] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:26:44.548] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:26:44.598] [INFO] cheese - inserting 1000 documents. first: Van Frassen and last: Striker (comic) -[2018-02-13T00:26:44.593] [INFO] cheese - inserting 1000 documents. first: Metrorail (Johannesburg) and last: Alvania moniziana -[2018-02-13T00:26:44.644] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:26:44.668] [INFO] cheese - inserting 1000 documents. first: Çay Qaraqoyunlu and last: Nseries -[2018-02-13T00:26:44.672] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:26:44.730] [INFO] cheese - inserting 1000 documents. first: United Kingdom - Mexico relations and last: Alex Byrne -[2018-02-13T00:26:44.729] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:26:44.760] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:44.948] [INFO] cheese - inserting 1000 documents. first: Category:War films based on actual events and last: Chairman Drek -[2018-02-13T00:26:44.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Four Arms Of Value (FAV) and last: NZ History online -[2018-02-13T00:26:44.998] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:44.998] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:45.097] [INFO] cheese - inserting 1000 documents. first: Category:People's Progressive Alliance (Mauritania) politicians and last: Kirk beadle -[2018-02-13T00:26:45.153] [INFO] cheese - inserting 1000 documents. first: File:Klu-heli-2.jpeg and last: File:Kaldaljos.jpg -[2018-02-13T00:26:45.155] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:26:45.195] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:26:45.197] [INFO] cheese - inserting 1000 documents. first: Chimney Point, Vermont and last: Steve Thomas (ice hockey) -[2018-02-13T00:26:45.200] [INFO] cheese - inserting 1000 documents. first: Schizodon intermedius and last: Bristol Theatre Royal -[2018-02-13T00:26:45.270] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:26:45.277] [INFO] cheese - inserting 1000 documents. first: Linwood, Pennsylvania and last: North Catasauqua, Pennsylvania -[2018-02-13T00:26:45.284] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:26:45.560] [INFO] cheese - batch complete in: 1.647 secs -[2018-02-13T00:26:45.563] [INFO] cheese - inserting 1000 documents. first: Cipemastat and last: Telengana Rashtriya Samiti -[2018-02-13T00:26:45.577] [INFO] cheese - inserting 1000 documents. first: Template:San Diego Chargers 2015 draft navbox and last: Tulipa erythronioides -[2018-02-13T00:26:45.616] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:26:45.633] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:26:45.709] [INFO] cheese - inserting 1000 documents. first: 1983–84 Newcastle United F.C. season and last: Jawlan -[2018-02-13T00:26:45.720] [INFO] cheese - inserting 1000 documents. first: Cape Freckled Nightjar and last: Athletics at the 2012 Summer Paralympics – Men's discus throw F54-6 -[2018-02-13T00:26:45.758] [INFO] cheese - inserting 1000 documents. first: Bruneau Hot Springsnail and last: Ni no kuni -[2018-02-13T00:26:45.756] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:26:45.774] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:45.843] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:26:45.946] [INFO] cheese - inserting 1000 documents. first: Vyborg Governorate and last: Wikipedia:Votes for deletion/Ruius Martinus -[2018-02-13T00:26:45.999] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:26:46.077] [INFO] cheese - inserting 1000 documents. first: Tulipa latifolia and last: List of That '70s Show DVDs -[2018-02-13T00:26:46.114] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:46.211] [INFO] cheese - inserting 1000 documents. first: Granite City, Wisconsin and last: Ang Umaga -[2018-02-13T00:26:46.213] [INFO] cheese - inserting 1000 documents. first: Category:Hotels in the Palestinian territories and last: Secretary of State of Spain -[2018-02-13T00:26:46.254] [INFO] cheese - inserting 1000 documents. first: Noordin Mohammad Top and last: Distance-vector routing protocols -[2018-02-13T00:26:46.257] [INFO] cheese - inserting 1000 documents. first: Category:Ricky Nelson songs and last: Draggle -[2018-02-13T00:26:46.273] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:46.276] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:46.277] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:26:46.301] [INFO] cheese - inserting 1000 documents. first: Mother Mother and last: USS Robin Hood (1861) -[2018-02-13T00:26:46.321] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:46.360] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:26:46.470] [INFO] cheese - inserting 1000 documents. first: Trihelium and last: Concave Cake -[2018-02-13T00:26:46.536] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:26:46.632] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gifting way and last: Wikipedia:Votes for deletion/Ramunas Geciauskas -[2018-02-13T00:26:46.707] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:26:46.712] [INFO] cheese - inserting 1000 documents. first: Abnér and last: Category:University of Texas at Houston -[2018-02-13T00:26:46.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sic 'em Bears and last: File:Wismut Kristall und 1cm3 Wuerfel.jpg -[2018-02-13T00:26:46.715] [INFO] cheese - inserting 1000 documents. first: 1966 Singapore Grand Prix and last: Parklands, South Africa -[2018-02-13T00:26:46.754] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:26:46.761] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:46.768] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:26:46.793] [INFO] cheese - inserting 1000 documents. first: Kiss Me Again and last: Don Bessillieu -[2018-02-13T00:26:46.843] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:26:46.918] [INFO] cheese - inserting 1000 documents. first: Northampton, Pennsylvania and last: Bradley, South Carolina -[2018-02-13T00:26:46.937] [INFO] cheese - inserting 1000 documents. first: Marie Félicité Brosset and last: Category:Japanese international schools in South Korea -[2018-02-13T00:26:46.986] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:46.994] [INFO] cheese - batch complete in: 1.434 secs -[2018-02-13T00:26:47.052] [INFO] cheese - inserting 1000 documents. first: Category:Prisoners sentenced to death by Niger and last: Pattinarendrapur -[2018-02-13T00:26:47.073] [INFO] cheese - inserting 1000 documents. first: File:Tom Wesselmann.jpg and last: Devils apple -[2018-02-13T00:26:47.091] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:26:47.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/GK Wien-Southeast and last: The Jackson 5 Live -[2018-02-13T00:26:47.124] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:26:47.152] [INFO] cheese - inserting 1000 documents. first: American Osteopathic Board of Physical Medicine and Rehabilitation and last: Corps-de-logis -[2018-02-13T00:26:47.175] [INFO] cheese - inserting 1000 documents. first: Dennis Matthies and last: Blessed by a Broken Heart -[2018-02-13T00:26:47.196] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:47.201] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:47.218] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:26:47.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/UMassBoston and last: Category:Mountain ranges of Hesse -[2018-02-13T00:26:47.436] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:26:47.480] [INFO] cheese - inserting 1000 documents. first: SUC (disambiguation) and last: Lakeview Islands, Lexington -[2018-02-13T00:26:47.517] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:47.565] [INFO] cheese - inserting 1000 documents. first: Devils Apple and last: Vizezemin -[2018-02-13T00:26:47.600] [INFO] cheese - inserting 1000 documents. first: Christopher Stevens (disambiguation) and last: Don Chamberlain -[2018-02-13T00:26:47.660] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:47.692] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:26:47.718] [INFO] cheese - inserting 1000 documents. first: Bobby Whitlock and last: Diya' al-Dawla -[2018-02-13T00:26:47.748] [INFO] cheese - inserting 1000 documents. first: File:Pogl blacklight.jpg and last: Category:Kenyan women -[2018-02-13T00:26:47.803] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:26:47.800] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:26:47.937] [INFO] cheese - inserting 1000 documents. first: 2005 Grand Prix (snooker) and last: Category:Districts of Upper West Region -[2018-02-13T00:26:47.974] [INFO] cheese - inserting 1000 documents. first: Premo poretta power poll and last: Inngone -[2018-02-13T00:26:47.992] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:26:48.042] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:26:48.051] [INFO] cheese - inserting 1000 documents. first: École Nationale Supérieure Agronomique de Rennes and last: File:Bobmouldsilverage-e13389992789021-300x300.jpeg -[2018-02-13T00:26:48.090] [INFO] cheese - inserting 1000 documents. first: Vizazamin and last: Alexander Bernardazzi -[2018-02-13T00:26:48.095] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:48.147] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:26:48.253] [INFO] cheese - inserting 1000 documents. first: Baron Burns and last: Learning drug -[2018-02-13T00:26:48.291] [INFO] cheese - inserting 1000 documents. first: Pied du Roi and last: Category:Thoroughbred family 2-n -[2018-02-13T00:26:48.294] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:48.331] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:26:48.339] [INFO] cheese - inserting 1000 documents. first: Quebec provincial by-elections, 2010 and last: The Lost Chords -[2018-02-13T00:26:48.425] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:26:48.448] [INFO] cheese - inserting 1000 documents. first: Cokesbury, South Carolina and last: Nash, Texas -[2018-02-13T00:26:48.448] [INFO] cheese - inserting 1000 documents. first: Do You Think Of Me and last: Shahrak-e Shahidar Jai, Bagh-e Malek -[2018-02-13T00:26:48.451] [INFO] cheese - inserting 1000 documents. first: Selebi and last: Tukhnakaya -[2018-02-13T00:26:48.482] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:26:48.495] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:26:48.536] [INFO] cheese - batch complete in: 1.541 secs -[2018-02-13T00:26:48.612] [INFO] cheese - inserting 1000 documents. first: Dubréka Prefecture and last: YCM -[2018-02-13T00:26:48.687] [INFO] cheese - inserting 1000 documents. first: Abdulai Dukuly and last: File:DraftRV.png -[2018-02-13T00:26:48.687] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:26:48.732] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Ageing and culture/invitation and last: Electronic Sports World Cup 2010 -[2018-02-13T00:26:48.736] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:48.791] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:26:48.815] [INFO] cheese - inserting 1000 documents. first: If Not for You (album) and last: Frank Mills (disambiguation) -[2018-02-13T00:26:48.818] [INFO] cheese - inserting 1000 documents. first: Chronological summary of the 2010 Summer Youth Olympics and last: Broadcast and The Focus Group Investigate Witch Cults Of The Radio Age -[2018-02-13T00:26:48.865] [INFO] cheese - inserting 1000 documents. first: Ballydavid, County Tipperary and last: U. K. - Namibia relations -[2018-02-13T00:26:48.891] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:48.887] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:48.947] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:26:49.233] [INFO] cheese - inserting 1000 documents. first: Parkland Historic District and last: Mont-Royal -[2018-02-13T00:26:49.266] [INFO] cheese - inserting 1000 documents. first: The Gulf Medal 1990-91 and last: Maurolycus -[2018-02-13T00:26:49.267] [INFO] cheese - inserting 1000 documents. first: Podari, Dolj and last: Solanum igneum var. parvifolium -[2018-02-13T00:26:49.276] [INFO] cheese - inserting 1000 documents. first: U. K.–Namibia relations and last: Thestor obscurus -[2018-02-13T00:26:49.286] [INFO] cheese - inserting 1000 documents. first: Template:R from writers and last: Wikipedia:WikiProject Spam/Local/tricent.cz -[2018-02-13T00:26:49.291] [INFO] cheese - inserting 1000 documents. first: Sphaeromimus and last: Water Eaton railway station -[2018-02-13T00:26:49.295] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:26:49.307] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:26:49.315] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:26:49.308] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:26:49.333] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:26:49.352] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:49.689] [INFO] cheese - inserting 1000 documents. first: File:Gusa Regional Science High School-X Official Seal.png and last: Wikipedia:WikiProject Spam/LinkReports/floortime.org.ua -[2018-02-13T00:26:49.697] [INFO] cheese - inserting 1000 documents. first: Eleuthere Elie Nicolas Mascart and last: NexGen Storage -[2018-02-13T00:26:49.730] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:49.732] [INFO] cheese - inserting 1000 documents. first: My Turn on Earth and last: Wikipedia:Requests for adminship/Hex 2 -[2018-02-13T00:26:49.735] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:26:49.754] [INFO] cheese - inserting 1000 documents. first: Solanum persicifolium and last: Alices Adventures in Wonderland -[2018-02-13T00:26:49.781] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:26:49.790] [INFO] cheese - inserting 1000 documents. first: Category:Streamline Moderne architecture in Massachusetts and last: Tadpole Fish -[2018-02-13T00:26:49.800] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:26:49.834] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:49.883] [INFO] cheese - inserting 1000 documents. first: ProSpace and last: Butyrki Prison -[2018-02-13T00:26:49.957] [INFO] cheese - inserting 1000 documents. first: New Boston, Texas and last: Henderson, Texas -[2018-02-13T00:26:49.958] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:26:50.063] [INFO] cheese - batch complete in: 1.526 secs -[2018-02-13T00:26:50.085] [INFO] cheese - inserting 1000 documents. first: Rouzbeh Arghavan and last: Bleach: Hell Chapter -[2018-02-13T00:26:50.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Contemporary Christian and last: Cairn Bannoch -[2018-02-13T00:26:50.122] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:50.124] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:26:50.154] [INFO] cheese - inserting 1000 documents. first: Chris Dangerous and last: List of RHPs in ID -[2018-02-13T00:26:50.177] [INFO] cheese - inserting 1000 documents. first: Electoral district of St Marys and last: Fu Gongshi -[2018-02-13T00:26:50.188] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:26:50.217] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:26:50.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mount Crushmore and last: Pterodactylus elegans -[2018-02-13T00:26:50.276] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:26:50.382] [INFO] cheese - inserting 1000 documents. first: Freeminded Democratic Party of Switzerland and last: Snake River (United States) -[2018-02-13T00:26:50.422] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Jade Helm 15 and last: Bob Wanner -[2018-02-13T00:26:50.453] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:50.477] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:50.508] [INFO] cheese - inserting 1000 documents. first: Omm ol Helianeh and last: Guy Sayer -[2018-02-13T00:26:50.548] [INFO] cheese - inserting 1000 documents. first: Route 251 (Illinois) and last: Category:Bemidji, Minnesota -[2018-02-13T00:26:50.550] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:26:50.597] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:50.667] [INFO] cheese - inserting 1000 documents. first: Parker Center for Investment Research and last: File:TAR11RaceRoute6.2.PNG -[2018-02-13T00:26:50.705] [INFO] cheese - inserting 1000 documents. first: Industrial Scripts and last: Aleksandrovo (disambiguation) -[2018-02-13T00:26:50.707] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:26:50.715] [INFO] cheese - inserting 1000 documents. first: Euclid View Flats and last: Old Bell (disambiguation) -[2018-02-13T00:26:50.746] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:26:50.770] [INFO] cheese - inserting 1000 documents. first: Sony VAIO UX Micro PC and last: Category:Soviet Union–Uruguay relations -[2018-02-13T00:26:50.774] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:50.811] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:26:50.894] [INFO] cheese - inserting 1000 documents. first: Rayleigh (Lunar crater) and last: Abu Horaira -[2018-02-13T00:26:50.941] [INFO] cheese - inserting 1000 documents. first: New South Wales 79 class locomotive and last: New South Wales 45 (later 71) class locomotive -[2018-02-13T00:26:50.951] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:26:50.988] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:26:51.114] [INFO] cheese - inserting 1000 documents. first: Pedra Furada (disambiguation) and last: Josh Furman -[2018-02-13T00:26:51.118] [INFO] cheese - inserting 1000 documents. first: Cape Torrens Wilderness Protection Area and last: Agonidium explanatum -[2018-02-13T00:26:51.127] [INFO] cheese - inserting 1000 documents. first: The Irish Volunteer and last: Elasonas, Greece -[2018-02-13T00:26:51.172] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:26:51.172] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:51.202] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:51.296] [INFO] cheese - inserting 1000 documents. first: Alexandrovsky (disambiguation) and last: Category:Canterbury-Bankstown Bulldogs templates -[2018-02-13T00:26:51.349] [INFO] cheese - inserting 1000 documents. first: Holy City, CA and last: Shōen Uemura -[2018-02-13T00:26:51.357] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:26:51.382] [INFO] cheese - inserting 1000 documents. first: Template:User rec-4 and last: Caetano N'Tchama -[2018-02-13T00:26:51.413] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:26:51.455] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:51.486] [INFO] cheese - inserting 1000 documents. first: Mount Enterprise, Texas and last: Lincolnia, Virginia -[2018-02-13T00:26:51.525] [INFO] cheese - inserting 1000 documents. first: Elasonas and last: Gasztowtt -[2018-02-13T00:26:51.560] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:26:51.594] [INFO] cheese - batch complete in: 1.531 secs -[2018-02-13T00:26:51.607] [INFO] cheese - inserting 1000 documents. first: Agonidium exultans and last: Norway–U.K. relations -[2018-02-13T00:26:51.645] [INFO] cheese - inserting 1000 documents. first: Jan Wijnants (cyclist) and last: Wikipedia:WikiProject Spam/Local/shoppingatmsecret.com -[2018-02-13T00:26:51.654] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:26:51.718] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:26:51.825] [INFO] cheese - inserting 1000 documents. first: Luigi Datome and last: Shil'yan -[2018-02-13T00:26:51.871] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:51.908] [INFO] cheese - inserting 1000 documents. first: 19th century philosophy and last: Wikipedia:Pending changes/Closure -[2018-02-13T00:26:51.943] [INFO] cheese - inserting 1000 documents. first: Mr Van Driessen and last: Asterix and Obelix All at Sea -[2018-02-13T00:26:51.958] [INFO] cheese - inserting 1000 documents. first: Robert E. Wise and last: Manifesto on Freedom and Democracy -[2018-02-13T00:26:51.962] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:26:51.988] [INFO] cheese - inserting 1000 documents. first: Junction City High School (Arkansas) and last: North Texas State Mean Green basketball -[2018-02-13T00:26:51.999] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:26:52.000] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:26:52.051] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:26:52.159] [INFO] cheese - inserting 1000 documents. first: 2015 Netherlands Women's Sevens and last: Prey reversal -[2018-02-13T00:26:52.226] [INFO] cheese - inserting 1000 documents. first: Category:Bristol Bulldogs riders and last: File:MrMetSheaSignage.jpg -[2018-02-13T00:26:52.235] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:26:52.286] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:52.360] [INFO] cheese - inserting 1000 documents. first: Pentila maculata and last: Category:Carlsbad, California -[2018-02-13T00:26:52.389] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:26:52.480] [INFO] cheese - inserting 1000 documents. first: Jacques Faivre (bishop) and last: File:Vision of Love (Mariah Carey song - sample).ogg -[2018-02-13T00:26:52.508] [INFO] cheese - inserting 1000 documents. first: Template:Gene and last: Stronghold (game) -[2018-02-13T00:26:52.515] [INFO] cheese - inserting 1000 documents. first: Kirchroth and last: Paul Blanchard -[2018-02-13T00:26:52.531] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:52.553] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:26:52.600] [INFO] cheese - inserting 1000 documents. first: Category:Futsal Hazfi Cup and last: Thennal Thedunna Poovu -[2018-02-13T00:26:52.629] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:26:52.641] [INFO] cheese - inserting 1000 documents. first: Tavira DOC and last: File:The Flower of My Secret.jpg -[2018-02-13T00:26:52.644] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:26:52.661] [INFO] cheese - inserting 1000 documents. first: Anatoly Akimov and last: Trinidad and Tobago-U. K. relations -[2018-02-13T00:26:52.681] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:26:52.742] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:26:52.952] [INFO] cheese - inserting 1000 documents. first: Service Level Management and last: Edwina Booth -[2018-02-13T00:26:52.974] [INFO] cheese - inserting 1000 documents. first: Lorton, Virginia and last: Parsons, West Virginia -[2018-02-13T00:26:52.999] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:26:53.039] [INFO] cheese - inserting 1000 documents. first: Elizabeth Sutherland and last: Flores Province -[2018-02-13T00:26:53.039] [INFO] cheese - batch complete in: 1.445 secs -[2018-02-13T00:26:53.048] [INFO] cheese - inserting 1000 documents. first: PS25R-South Richmond HS/IS and last: Ihor Hlavan -[2018-02-13T00:26:53.061] [INFO] cheese - inserting 1000 documents. first: North Carolina Highway 86 Truck and last: William Randolph Stein -[2018-02-13T00:26:53.078] [INFO] cheese - inserting 1000 documents. first: Monkee Chow Mein and last: The Mountain of the Cannibal God -[2018-02-13T00:26:53.079] [INFO] cheese - inserting 1000 documents. first: Less Emissions and last: Ułanowice -[2018-02-13T00:26:53.085] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:26:53.091] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:26:53.125] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:53.156] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:53.210] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:26:53.507] [INFO] cheese - inserting 1000 documents. first: Boston Park Plaza Hotel & Towers and last: QLogic -[2018-02-13T00:26:53.600] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:26:53.696] [INFO] cheese - inserting 1000 documents. first: Daniel Parslow and last: Irrara County, New South Wales -[2018-02-13T00:26:53.698] [INFO] cheese - inserting 1000 documents. first: José Leyver Ojeda and last: Saint Francis (Pa.) Red Flash -[2018-02-13T00:26:53.736] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:26:53.748] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:26:53.779] [INFO] cheese - inserting 1000 documents. first: Randolph Stein and last: Martin Luther Procise III -[2018-02-13T00:26:53.824] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:26:53.889] [INFO] cheese - inserting 1000 documents. first: Węgrce Szlacheckie and last: Wikipedia:RECORD -[2018-02-13T00:26:53.948] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:26:53.977] [INFO] cheese - inserting 1000 documents. first: La montagna del dio cannibale and last: File:Sahour.jpg -[2018-02-13T00:26:54.012] [INFO] cheese - inserting 1000 documents. first: Former members of the Libyan Islamic Fighting Group and last: Anthus novaeseelandiae novaeseelandiae -[2018-02-13T00:26:54.028] [INFO] cheese - inserting 1000 documents. first: Ancient monument and last: 1997 in birding and ornithology -[2018-02-13T00:26:54.041] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:26:54.059] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:26:54.063] [INFO] cheese - inserting 1000 documents. first: Marcion, application and last: Penguin 60's Classics -[2018-02-13T00:26:54.105] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:26:54.118] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:26:54.196] [INFO] cheese - inserting 1000 documents. first: Thomas B. Buck, III and last: Toni Collette and the Finish -[2018-02-13T00:26:54.223] [INFO] cheese - inserting 1000 documents. first: Thomas, West Virginia and last: Richland Center, Wisconsin -[2018-02-13T00:26:54.250] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:26:54.276] [INFO] cheese - inserting 1000 documents. first: Clinical rotation and last: Eastern Otomí language -[2018-02-13T00:26:54.286] [INFO] cheese - inserting 1000 documents. first: Colville Wemyss and last: Tsor -[2018-02-13T00:26:54.289] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:26:54.318] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:26:54.332] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:54.526] [INFO] cheese - inserting 1000 documents. first: Temple Records (UK label) and last: Wikipedia:Requests for bureaucratship/Majorly -[2018-02-13T00:26:54.582] [INFO] cheese - inserting 1000 documents. first: KunstHausWien and last: Typhlops inornatus -[2018-02-13T00:26:54.610] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:26:54.649] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:26:54.654] [INFO] cheese - inserting 1000 documents. first: File:Sent-Myhell-Armys--Arms-of-St-Michael-ca-1460.png and last: Category:Libraries in Japan -[2018-02-13T00:26:54.708] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:26:54.711] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ron Parker and last: Russkiye Borisy -[2018-02-13T00:26:54.729] [INFO] cheese - inserting 1000 documents. first: Reg Dean and last: Category:1919 establishments in the Republic of Macedonia -[2018-02-13T00:26:54.739] [INFO] cheese - inserting 1000 documents. first: Abner Méndez and last: File:Blue Force Gear logo.png -[2018-02-13T00:26:54.745] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:54.761] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:26:54.790] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:26:54.998] [INFO] cheese - inserting 1000 documents. first: Valerie Martínez and last: Country Sunshine with Myrna Lorrie -[2018-02-13T00:26:55.022] [INFO] cheese - inserting 1000 documents. first: Rrusi Paris and last: Democratic Party (New Mexico) -[2018-02-13T00:26:55.025] [INFO] cheese - inserting 1000 documents. first: Template:GUI widgets and last: John Traphagan -[2018-02-13T00:26:55.036] [INFO] cheese - inserting 1000 documents. first: UNC-Wilmington Seahawks baseball and last: Westbury Square -[2018-02-13T00:26:55.045] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:26:55.068] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:26:55.078] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:26:55.077] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:26:55.109] [INFO] cheese - inserting 1000 documents. first: File:2015 A-League Grand Final logo.png and last: Üsküdar Amerikan Lisesi -[2018-02-13T00:26:55.113] [INFO] cheese - inserting 1000 documents. first: Webacholic and last: Wikipedia:Articles for deletion/Claude Bédard -[2018-02-13T00:26:55.185] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:26:55.189] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:55.318] [INFO] cheese - inserting 1000 documents. first: Governor of Ceylon and last: Qayali, Jalilabad -[2018-02-13T00:26:55.355] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:26:55.446] [INFO] cheese - inserting 1000 documents. first: Rhysopleura orbicollis and last: December 11 (Eastern Orthodox liturgics) -[2018-02-13T00:26:55.486] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:26:55.499] [INFO] cheese - inserting 1000 documents. first: Richwood, Wisconsin and last: History of Baden-Württemberg -[2018-02-13T00:26:55.516] [INFO] cheese - inserting 1000 documents. first: Crosspoint and last: Prodaná nevěsta (film) -[2018-02-13T00:26:55.538] [INFO] cheese - inserting 1000 documents. first: Bank of Pilot Mountain and last: Wikipedia:No original research/Noticeboard/Archive 33 -[2018-02-13T00:26:55.555] [INFO] cheese - inserting 1000 documents. first: Pfofeld and last: File:Ciołek's Missal.jpg -[2018-02-13T00:26:55.581] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:26:55.623] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:55.660] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:26:55.683] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T00:26:55.763] [INFO] cheese - inserting 1000 documents. first: Michael Hoffman (politician) and last: Badahare -[2018-02-13T00:26:55.793] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:26:55.824] [INFO] cheese - inserting 1000 documents. first: Japanese heavy industry during WW2 times and last: 1935–36 Yugoslav Football Championship -[2018-02-13T00:26:55.898] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:26:55.926] [INFO] cheese - inserting 1000 documents. first: Galong language and last: Garba raas -[2018-02-13T00:26:56.004] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:26:56.135] [INFO] cheese - inserting 1000 documents. first: Category:1881 establishments in New Mexico Territory and last: Southern Conference Softball Tournament -[2018-02-13T00:26:56.179] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:26:56.180] [INFO] cheese - inserting 1000 documents. first: A.S.D. Riccione 1929 and last: Grigore D. Constantinescu -[2018-02-13T00:26:56.207] [INFO] cheese - inserting 1000 documents. first: Category:Free-minded Liberal Party politicians and last: Duvannaya -[2018-02-13T00:26:56.228] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:26:56.252] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:56.288] [INFO] cheese - inserting 1000 documents. first: Template:User lang subcat/5 and last: Interstate 69 Business (Lansing, Michigan) -[2018-02-13T00:26:56.340] [INFO] cheese - inserting 1000 documents. first: Hans-Joachim Geisler and last: Wikipedia:Sockpuppet investigations/Malarious -[2018-02-13T00:26:56.346] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:26:56.365] [INFO] cheese - inserting 1000 documents. first: WMKS and last: Lambda Aquarii -[2018-02-13T00:26:56.390] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:56.397] [INFO] cheese - inserting 1000 documents. first: Awk programming language and last: Trifluoperazine -[2018-02-13T00:26:56.412] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:26:56.444] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:26:56.522] [INFO] cheese - inserting 1000 documents. first: 18th century Germany and last: Padar Gyul'mali -[2018-02-13T00:26:56.530] [INFO] cheese - inserting 1000 documents. first: Sergeevka and last: Category:1978 in New Zealand association football -[2018-02-13T00:26:56.555] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:26:56.563] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:26:56.659] [INFO] cheese - inserting 1000 documents. first: Ring-spatha and last: Lake Tudu -[2018-02-13T00:26:56.709] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:26:56.772] [INFO] cheese - inserting 1000 documents. first: C29H39N5O8 and last: UW–Green Bay Phoenix softball -[2018-02-13T00:26:56.805] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:26:56.819] [INFO] cheese - inserting 1000 documents. first: Contact, l'encyclopédie de la création and last: Dorzhsuren Munkhbayar -[2018-02-13T00:26:56.819] [INFO] cheese - inserting 1000 documents. first: Padar Gyul’mali and last: Wikipedia:Articles for deletion/Flying High (album) -[2018-02-13T00:26:56.829] [INFO] cheese - inserting 1000 documents. first: Operation Dignity Battle (Benghazi) and last: Amanayara -[2018-02-13T00:26:56.845] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:26:56.859] [INFO] cheese - inserting 1000 documents. first: Kijow Voivodship and last: Tiger-Man -[2018-02-13T00:26:56.861] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:26:56.866] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:26:56.939] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:26:57.197] [INFO] cheese - inserting 1000 documents. first: Orta-Zeyzit and last: File:Danny'sSongAnne.jpg -[2018-02-13T00:26:57.200] [INFO] cheese - inserting 1000 documents. first: Ubajärv and last: Discrete collision detection -[2018-02-13T00:26:57.210] [INFO] cheese - inserting 1000 documents. first: File:Renewable Energy Sources and Climate Change Mitigation.jpg and last: Category:1950s disestablishments in Mexico -[2018-02-13T00:26:57.233] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:26:57.253] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:26:57.264] [INFO] cheese - inserting 1000 documents. first: Hope's Anthem and last: Template:Denver Pioneers athletic director navbox -[2018-02-13T00:26:57.267] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:26:57.310] [INFO] cheese - inserting 1000 documents. first: Multisystem disease and last: Don't Try This at Home (TV series) -[2018-02-13T00:26:57.324] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:26:57.356] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:26:57.370] [INFO] cheese - inserting 1000 documents. first: Category:Communications in Angola and last: Envelope (aerospace) -[2018-02-13T00:26:57.438] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:26:57.560] [INFO] cheese - inserting 1000 documents. first: File:Silver City NM seal.png and last: Anti-conversion violence in India -[2018-02-13T00:26:57.585] [INFO] cheese - inserting 1000 documents. first: Category:1916 establishments in Mexico and last: Category:1923 disestablishments in Germany -[2018-02-13T00:26:57.599] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:26:57.618] [INFO] cheese - inserting 1000 documents. first: Bass horn and last: Lake District -[2018-02-13T00:26:57.647] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:26:57.722] [INFO] cheese - inserting 1000 documents. first: Songs Of Innocence And Experience and last: Yong Zhuang -[2018-02-13T00:26:57.724] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T00:26:57.740] [INFO] cheese - inserting 1000 documents. first: Bánh Mì and last: Džanići -[2018-02-13T00:26:57.755] [INFO] cheese - inserting 1000 documents. first: Category:Assassinated Pakistani activists and last: Category:New Zealand at the FIFA World Cup -[2018-02-13T00:26:57.767] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:26:57.793] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:26:57.842] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:26:57.889] [INFO] cheese - inserting 1000 documents. first: Category:User arc and last: South Keys station -[2018-02-13T00:26:57.957] [INFO] cheese - inserting 1000 documents. first: Sciex and last: Air Force of Mauritania -[2018-02-13T00:26:57.965] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:26:57.991] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:26:58.095] [INFO] cheese - inserting 1000 documents. first: Buick Excelle XT and last: Category:Politicians from County Leitrim -[2018-02-13T00:26:58.109] [INFO] cheese - inserting 1000 documents. first: Flassavatn and last: Wikipedia:Featured article candidates/Thescelosaurus -[2018-02-13T00:26:58.144] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:26:58.159] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:26:58.167] [INFO] cheese - inserting 1000 documents. first: Kamikaz and last: Category:Egyptian emigrants to Nigeria -[2018-02-13T00:26:58.220] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:26:58.335] [INFO] cheese - inserting 1000 documents. first: Air Force of Moldova and last: ZIP code 30144 -[2018-02-13T00:26:58.392] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:26:58.404] [INFO] cheese - inserting 1000 documents. first: Džepi and last: Portal:Current events/2010 August 17 -[2018-02-13T00:26:58.456] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:26:58.494] [INFO] cheese - inserting 1000 documents. first: Tseen Foo and last: (323) Brucia -[2018-02-13T00:26:58.550] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:26:58.571] [INFO] cheese - inserting 1000 documents. first: Minsan may isang puta and last: Category:Burial sites of Mexican noble families -[2018-02-13T00:26:58.606] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:26:58.613] [INFO] cheese - inserting 1000 documents. first: Phlong language and last: Category:1910 establishments in Mexico -[2018-02-13T00:26:58.657] [INFO] cheese - inserting 1000 documents. first: File:Sweet&Sour Cover Inner.jpg and last: Karlików -[2018-02-13T00:26:58.661] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:26:58.709] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:26:58.725] [INFO] cheese - inserting 1000 documents. first: Lemon socialism and last: File:Radio Times Vote Dalek cover.jpg -[2018-02-13T00:26:58.751] [INFO] cheese - inserting 1000 documents. first: Gidea Park, London, England and last: Gaston (comics) -[2018-02-13T00:26:58.757] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:26:58.808] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:26:58.821] [INFO] cheese - inserting 1000 documents. first: Criticism of concordats and last: Cayetano Paderanga, Jr. -[2018-02-13T00:26:58.868] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:26:58.957] [INFO] cheese - inserting 1000 documents. first: Category:Black Prairie albums and last: Supporting role -[2018-02-13T00:26:58.958] [INFO] cheese - inserting 1000 documents. first: (324) Bamberga and last: Category:Humanistic psychology -[2018-02-13T00:26:58.989] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:26:59.020] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:26:59.039] [INFO] cheese - inserting 1000 documents. first: Clarke Sound and last: Eosu Station -[2018-02-13T00:26:59.040] [INFO] cheese - inserting 1000 documents. first: Galactocentrism and last: Comet Machholz 1 -[2018-02-13T00:26:59.074] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:26:59.099] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:26:59.219] [INFO] cheese - inserting 1000 documents. first: Jan Diddens and last: USS Ajax (SP-738) -[2018-02-13T00:26:59.270] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:26:59.272] [INFO] cheese - inserting 1000 documents. first: When I See You Again and last: Apriona gressitti -[2018-02-13T00:26:59.314] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:26:59.396] [INFO] cheese - inserting 1000 documents. first: Category:Grand Slam (tennis) champions in men's singles and last: Category:California elections, 1914 -[2018-02-13T00:26:59.463] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:26:59.482] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topical outlines/Draft/Topical outline of Greenland and last: File:KBCO logo.png -[2018-02-13T00:26:59.564] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:26:59.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Battle at La Hogue and last: Wikipedia:WikiProject Spam/LinkReports/homeandstone.com -[2018-02-13T00:26:59.637] [INFO] cheese - inserting 1000 documents. first: ATV Evening News and last: Crib (disambiguation) -[2018-02-13T00:26:59.639] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:26:59.672] [INFO] cheese - inserting 1000 documents. first: MADAM-6 and last: Free Press (organization) -[2018-02-13T00:26:59.705] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:26:59.751] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:26:59.802] [INFO] cheese - inserting 1000 documents. first: Apriona japonica and last: Wikipedia:Articles for deletion/Marvin Amparo -[2018-02-13T00:26:59.852] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:26:59.884] [INFO] cheese - inserting 1000 documents. first: The Ace of Cads and last: Category:1997 establishments in Thailand -[2018-02-13T00:26:59.886] [INFO] cheese - inserting 1000 documents. first: Aase (disambiguation) and last: Wikipedia:Sockpuppet investigations/Cde000 -[2018-02-13T00:26:59.913] [INFO] cheese - inserting 1000 documents. first: Masque of Mandragora and last: 74th parallel north -[2018-02-13T00:26:59.913] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:26:59.932] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:26:59.940] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:00.122] [INFO] cheese - inserting 1000 documents. first: Theory of General Relativity and last: Orthodox Church in America -[2018-02-13T00:27:00.138] [INFO] cheese - inserting 1000 documents. first: Ahmed Rami (disambiguation) and last: Alfonso the Chaste (disambiguation) -[2018-02-13T00:27:00.163] [INFO] cheese - inserting 1000 documents. first: Stuart Matsikenyeri and last: Total asset turnover -[2018-02-13T00:27:00.183] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:00.184] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ergonomically Designed Facilities and last: Parker J. Palmer -[2018-02-13T00:27:00.233] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T00:27:00.239] [INFO] cheese - inserting 1000 documents. first: Queen's Park, Brisbane and last: Australia: Boom to Bust -[2018-02-13T00:27:00.243] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:27:00.256] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:27:00.271] [INFO] cheese - inserting 1000 documents. first: Estelle Kohler and last: TT9 (tomb) -[2018-02-13T00:27:00.309] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:27:00.316] [INFO] cheese - inserting 1000 documents. first: International Right to Know Day and last: Mass of the Resurrection -[2018-02-13T00:27:00.319] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:27:00.377] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:00.470] [INFO] cheese - inserting 1000 documents. first: Alfonsów (disambiguation) and last: Jesse Zubot -[2018-02-13T00:27:00.503] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:27:00.673] [INFO] cheese - inserting 1000 documents. first: Blind judo and last: Murguztala -[2018-02-13T00:27:00.707] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:00.733] [INFO] cheese - inserting 1000 documents. first: File:Anarky (vol.2) -8 (December 1999) The Sins of the Father - cover.jpg and last: Quebec provincial by-elections, 2002 -[2018-02-13T00:27:00.759] [INFO] cheese - inserting 1000 documents. first: Template:Country data City of Valencia and last: Maryknoll Sister -[2018-02-13T00:27:00.786] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:27:00.797] [INFO] cheese - inserting 1000 documents. first: Vayeira and last: Noztra -[2018-02-13T00:27:00.817] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:27:00.855] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:00.860] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiWorldDays and last: Benjamin Jefferson Hill -[2018-02-13T00:27:00.873] [INFO] cheese - inserting 1000 documents. first: Andilly (disambiguation) and last: ORV Sagar Kanya -[2018-02-13T00:27:00.903] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:27:00.920] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:27:01.023] [INFO] cheese - inserting 1000 documents. first: File:BarwellFC.png and last: Lecedi -[2018-02-13T00:27:01.058] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:01.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Shirley Marulanda and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Tenacious D -[2018-02-13T00:27:01.186] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:27:01.239] [INFO] cheese - inserting 1000 documents. first: Emergency shut down valve and last: Rahnoja -[2018-02-13T00:27:01.276] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:27:01.310] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Changing username/Usurpations/Completed/36 and last: Category:Science and technology in Warwickshire -[2018-02-13T00:27:01.313] [INFO] cheese - inserting 1000 documents. first: Pat Goss and last: Taipei American School student organizations -[2018-02-13T00:27:01.373] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:27:01.403] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:01.416] [INFO] cheese - inserting 1000 documents. first: File:FC Olimpia Bălţi.png and last: File:Los Angeles Aztecs.png -[2018-02-13T00:27:01.472] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:27:01.528] [INFO] cheese - inserting 1000 documents. first: Bristol Jupiter and last: Choiseul -[2018-02-13T00:27:01.553] [INFO] cheese - inserting 1000 documents. first: Rätsepa, Vändra Parish and last: Ashill (disambiguation) -[2018-02-13T00:27:01.580] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:27:01.603] [INFO] cheese - inserting 1000 documents. first: File:Dunyov István.jpg and last: Quinny Brook -[2018-02-13T00:27:01.642] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T00:27:01.661] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:27:01.892] [INFO] cheese - inserting 1000 documents. first: File:Los Angeles Blades.png and last: File:SC Albi.png -[2018-02-13T00:27:01.911] [INFO] cheese - inserting 1000 documents. first: Erebus dasypterus and last: Llanpumpsaint railway station -[2018-02-13T00:27:01.927] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:27:01.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Virtual Magic Kingdom/archive1 and last: 820 chipset -[2018-02-13T00:27:01.954] [INFO] cheese - inserting 1000 documents. first: Ashiya Station (disambiguation) and last: Ayane (disambiguation) -[2018-02-13T00:27:01.954] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:27:01.987] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:27:02.047] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:27:02.161] [INFO] cheese - inserting 1000 documents. first: The Cautionary Tale of Numero Cinco (Angel) and last: MV al-Salam Boccaccio 98 -[2018-02-13T00:27:02.166] [INFO] cheese - inserting 1000 documents. first: File:TheLessonsOfHistory.jpg and last: Acacia platensis -[2018-02-13T00:27:02.196] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:27:02.222] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:27:02.235] [INFO] cheese - inserting 1000 documents. first: Multiplatform Television Service and last: Edward Joseph Gilbert -[2018-02-13T00:27:02.253] [INFO] cheese - inserting 1000 documents. first: Mituna Captor and last: Pobres Rico -[2018-02-13T00:27:02.264] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:02.299] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:27:02.471] [INFO] cheese - inserting 1000 documents. first: Balara (disambiguation) and last: Megalodicopia hyans -[2018-02-13T00:27:02.483] [INFO] cheese - inserting 1000 documents. first: Burnett Heads and last: Case No. 04-cv-1166 -[2018-02-13T00:27:02.496] [INFO] cheese - inserting 1000 documents. first: Two Minute Warning (Angel City album) and last: Laura Rockefeller Chasin -[2018-02-13T00:27:02.497] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:27:02.523] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:02.542] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:27:02.561] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Edwin Kuh and last: Robert Davis McKenzie -[2018-02-13T00:27:02.627] [INFO] cheese - inserting 1000 documents. first: How Do You Love and last: Template:Alliance for Italy/meta/color -[2018-02-13T00:27:02.630] [INFO] cheese - inserting 1000 documents. first: My Sweet, Yet Brutal Sweetheart and last: Cutting Edge record label -[2018-02-13T00:27:02.646] [INFO] cheese - batch complete in: 1.829 secs -[2018-02-13T00:27:02.675] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:27:02.707] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:02.770] [INFO] cheese - inserting 1000 documents. first: Batovo (disambiguation) and last: Bellevue Palace (disambiguation) -[2018-02-13T00:27:02.820] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:02.915] [INFO] cheese - inserting 1000 documents. first: No. 04-cv-1166 and last: Kapanakci, Goranboy -[2018-02-13T00:27:02.940] [INFO] cheese - inserting 1000 documents. first: Umu Oma and last: Wikipedia:WikiProject Wine/Newsletter/04-1-2007 -[2018-02-13T00:27:02.952] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:02.976] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:27:02.999] [INFO] cheese - inserting 1000 documents. first: Lucky Luciano and last: Rievaulx Abbey -[2018-02-13T00:27:03.023] [INFO] cheese - inserting 1000 documents. first: National Road 540 and last: Bruce and Pepper Wayne Gacy's Home Movies -[2018-02-13T00:27:03.040] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:27:03.046] [INFO] cheese - inserting 1000 documents. first: Active record pattern and last: Siziwang Banner -[2018-02-13T00:27:03.066] [INFO] cheese - inserting 1000 documents. first: Robert McKenzie III and last: Draft:Self system -[2018-02-13T00:27:03.070] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T00:27:03.105] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:27:03.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/IPL Franchise earnings for 2009 and last: Demonstrate -[2018-02-13T00:27:03.130] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:27:03.172] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:27:03.309] [INFO] cheese - inserting 1000 documents. first: Kepenekci, Zaqatala and last: James Hawkins-Whitshed -[2018-02-13T00:27:03.342] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:03.349] [INFO] cheese - inserting 1000 documents. first: Bettenhausen (disambiguation) and last: Frans Peeraer -[2018-02-13T00:27:03.390] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:03.407] [INFO] cheese - inserting 1000 documents. first: Leclanche battery and last: Category:A-Class Cheshire articles -[2018-02-13T00:27:03.414] [INFO] cheese - inserting 1000 documents. first: Duqiong Township and last: De Havilland DH.50A -[2018-02-13T00:27:03.444] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:27:03.449] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:03.513] [INFO] cheese - inserting 1000 documents. first: Colburn's Tuco-tuco and last: Didrah language -[2018-02-13T00:27:03.581] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:27:03.601] [INFO] cheese - inserting 1000 documents. first: Boom crash opera and last: International Patent -[2018-02-13T00:27:03.639] [INFO] cheese - inserting 1000 documents. first: Marcus pohlmann and last: Herbert Schmidt Ostheim -[2018-02-13T00:27:03.665] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:27:03.676] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:27:03.709] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hana Sehu and last: Whitby Morrison -[2018-02-13T00:27:03.736] [INFO] cheese - inserting 1000 documents. first: Pirates 4-D and last: Truman P. White -[2018-02-13T00:27:03.739] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:03.791] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:27:03.807] [INFO] cheese - inserting 1000 documents. first: Altar (disambiguation) and last: Marjory Gordon -[2018-02-13T00:27:03.824] [INFO] cheese - inserting 1000 documents. first: Didra language and last: Barangay justice system -[2018-02-13T00:27:03.856] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:27:03.857] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:03.872] [INFO] cheese - inserting 1000 documents. first: Blumenthal (disambiguation) and last: Bowers School (disambiguation) -[2018-02-13T00:27:03.903] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:27:04.123] [INFO] cheese - inserting 1000 documents. first: Glabrescent and last: Template:R list topic -[2018-02-13T00:27:04.144] [INFO] cheese - inserting 1000 documents. first: 10,000 martyrs and last: Bill C-44 -[2018-02-13T00:27:04.175] [INFO] cheese - inserting 1000 documents. first: File:HMAS manoora crest.png and last: Toledo bend reservoir -[2018-02-13T00:27:04.175] [INFO] cheese - inserting 1000 documents. first: Bowery boys (disambiguation) and last: Brzeźnica (disambiguation) -[2018-02-13T00:27:04.182] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:27:04.207] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:27:04.209] [INFO] cheese - inserting 1000 documents. first: Arteria arcuata and last: Category:Woodley Sports F.C. -[2018-02-13T00:27:04.234] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:27:04.243] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:04.282] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:27:04.321] [INFO] cheese - inserting 1000 documents. first: Wycombe Railway Company and last: Monocat -[2018-02-13T00:27:04.357] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:27:04.393] [INFO] cheese - inserting 1000 documents. first: Big bear lake and last: Chilko lake -[2018-02-13T00:27:04.423] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:27:04.435] [INFO] cheese - inserting 1000 documents. first: Rhazes and last: Reklaw, Texas -[2018-02-13T00:27:04.468] [INFO] cheese - inserting 1000 documents. first: Brzeźnik (disambiguation) and last: C97 (disambiguation) -[2018-02-13T00:27:04.501] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:27:04.504] [INFO] cheese - inserting 1000 documents. first: Template:R flt and last: Template:POTD protected/2015-05-17 -[2018-02-13T00:27:04.528] [INFO] cheese - batch complete in: 1.458 secs -[2018-02-13T00:27:04.547] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:27:04.628] [INFO] cheese - inserting 1000 documents. first: File:LCFR Reserve Rescue 680.jpg and last: Category:Jollibee -[2018-02-13T00:27:04.642] [INFO] cheese - inserting 1000 documents. first: Lough ramor and last: Kim Zwarts -[2018-02-13T00:27:04.662] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:27:04.668] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:04.748] [INFO] cheese - inserting 1000 documents. first: SPAM Town USA and last: Wikipedia:Articles for deletion/Kanvas Grey -[2018-02-13T00:27:04.750] [INFO] cheese - inserting 1000 documents. first: C98 (disambiguation) and last: Cady (disambiguation) -[2018-02-13T00:27:04.760] [INFO] cheese - inserting 1000 documents. first: CAFM and last: HP Pavillion -[2018-02-13T00:27:04.777] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:04.811] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:27:04.814] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:27:04.943] [INFO] cheese - inserting 1000 documents. first: ΚΛΨ and last: Agoseris carnea -[2018-02-13T00:27:04.979] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/exactantigen.com and last: Carlos Baena (disambiguation) -[2018-02-13T00:27:05.001] [INFO] cheese - inserting 1000 documents. first: Lake waswanipi and last: Utah State Route 101 -[2018-02-13T00:27:05.002] [INFO] cheese - inserting 1000 documents. first: Category:Selected anniversaries (October 2012) and last: Sinji language -[2018-02-13T00:27:05.007] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:27:05.015] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:27:05.035] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:27:05.055] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:05.287] [INFO] cheese - inserting 1000 documents. first: Carlos Borja (disambiguation) and last: Chain Lightning (disambiguation) -[2018-02-13T00:27:05.304] [INFO] cheese - inserting 1000 documents. first: File:Jeanne Mas album.jpg and last: Dr. Bonner -[2018-02-13T00:27:05.319] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:27:05.341] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:27:05.365] [INFO] cheese - inserting 1000 documents. first: Lake Burbury and last: Sagar manthan -[2018-02-13T00:27:05.404] [INFO] cheese - inserting 1000 documents. first: Perang and last: Detective Investigation Files II -[2018-02-13T00:27:05.429] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:27:05.443] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:05.521] [INFO] cheese - inserting 1000 documents. first: Agoseris confinis and last: Your Whole -[2018-02-13T00:27:05.538] [INFO] cheese - inserting 1000 documents. first: Senate of Kampuchea and last: GMT355 -[2018-02-13T00:27:05.560] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:05.575] [INFO] cheese - inserting 1000 documents. first: Chain O'Lakes State Park (disambiguation) and last: Chiffon (disambiguation) -[2018-02-13T00:27:05.587] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:27:05.595] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:27:05.629] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Raffaelli and last: Push pull strategy -[2018-02-13T00:27:05.665] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:05.751] [INFO] cheese - inserting 1000 documents. first: Category:2003 Qatar Open and last: 2001 Cincinnati Bearcats football team -[2018-02-13T00:27:05.808] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:05.821] [INFO] cheese - inserting 1000 documents. first: Guerrero (Mexico) and last: City of Refuge (disambiguation) -[2018-02-13T00:27:05.827] [INFO] cheese - inserting 1000 documents. first: Zachary Lansdowne and last: Roy Giles -[2018-02-13T00:27:05.857] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:27:05.875] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:27:05.887] [INFO] cheese - inserting 1000 documents. first: Colbert Hills and last: Melakwa lake -[2018-02-13T00:27:05.916] [INFO] cheese - inserting 1000 documents. first: Conde de Bonfim and last: Criticism of Ban Ki-moon -[2018-02-13T00:27:05.934] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:27:05.952] [INFO] cheese - inserting 1000 documents. first: Dream Come True (A Flock of Seagulls album) and last: He's A Rebel -[2018-02-13T00:27:05.963] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:05.979] [INFO] cheese - inserting 1000 documents. first: Troup, Texas and last: Electrical connector -[2018-02-13T00:27:05.992] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:06.060] [INFO] cheese - inserting 1000 documents. first: Lake pyasino and last: Barnard Point -[2018-02-13T00:27:06.066] [INFO] cheese - inserting 1000 documents. first: Kampimodromus and last: Valgesoo -[2018-02-13T00:27:06.066] [INFO] cheese - batch complete in: 1.538 secs -[2018-02-13T00:27:06.085] [INFO] cheese - batch complete in: 0.151 secs -[2018-02-13T00:27:06.102] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:27:06.247] [INFO] cheese - inserting 1000 documents. first: Ancient Egyptian tomb and last: Turks And Caicos Creole English language -[2018-02-13T00:27:06.292] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:27:06.314] [INFO] cheese - inserting 1000 documents. first: Ivaylovgrad reservoir and last: Odell lake (oregon) -[2018-02-13T00:27:06.331] [INFO] cheese - inserting 1000 documents. first: Alec Brownstein and last: Gigi (musical) -[2018-02-13T00:27:06.331] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:27:06.350] [INFO] cheese - inserting 1000 documents. first: Teenaged Mutant Ninja Turtles and last: Ballad of a Thin Man -[2018-02-13T00:27:06.352] [INFO] cheese - inserting 1000 documents. first: Category:House of Holland and last: Ted Collinson -[2018-02-13T00:27:06.353] [INFO] cheese - inserting 1000 documents. first: Collins, California (disambiguation) and last: Arthur Quimby -[2018-02-13T00:27:06.364] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:06.377] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:27:06.395] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:27:06.399] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:06.515] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Record Production/October 7 and last: Yasnenskoye -[2018-02-13T00:27:06.550] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:27:06.635] [INFO] cheese - inserting 1000 documents. first: Spelga reservoir and last: Lex Column -[2018-02-13T00:27:06.647] [INFO] cheese - inserting 1000 documents. first: Prang Ku District and last: Qingshangnan -[2018-02-13T00:27:06.670] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:27:06.682] [INFO] cheese - inserting 1000 documents. first: Template:WargameMag and last: Gornji Malovan -[2018-02-13T00:27:06.697] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:27:06.732] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:27:06.744] [INFO] cheese - inserting 1000 documents. first: Greg Richards (rugby league) and last: Leo Lee -[2018-02-13T00:27:06.795] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:27:06.841] [INFO] cheese - inserting 1000 documents. first: 12 Aquilae and last: Kurara -[2018-02-13T00:27:06.878] [INFO] cheese - inserting 1000 documents. first: 1932–33 Illinois Fighting Illini men's basketball team and last: The House on Greenapple Road -[2018-02-13T00:27:06.884] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:27:06.916] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:06.936] [INFO] cheese - inserting 1000 documents. first: Crowsnest (disambiguation) and last: DWR (disambiguation) -[2018-02-13T00:27:06.952] [INFO] cheese - inserting 1000 documents. first: Connector (mathematics) and last: Paraconsistent logics -[2018-02-13T00:27:06.957] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:27:07.016] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T00:27:07.108] [INFO] cheese - inserting 1000 documents. first: Tameside Stadium and last: Mizdow -[2018-02-13T00:27:07.133] [INFO] cheese - inserting 1000 documents. first: Template:Aston Villa F.C. seasons and last: Greg Dewey -[2018-02-13T00:27:07.152] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:27:07.162] [INFO] cheese - inserting 1000 documents. first: DWRT (disambiguation) and last: Natkrižovljan -[2018-02-13T00:27:07.180] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:07.343] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:07.379] [INFO] cheese - inserting 1000 documents. first: Dead finish and last: Wildlife Prairie Park -[2018-02-13T00:27:07.420] [INFO] cheese - inserting 1000 documents. first: Lindell Cooley and last: Leni Kaurin -[2018-02-13T00:27:07.433] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:27:07.474] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:27:07.609] [INFO] cheese - inserting 1000 documents. first: Victoria Leyde and last: Reproductive tract infections -[2018-02-13T00:27:07.717] [INFO] cheese - inserting 1000 documents. first: Dracula (Caminhos do Coração) and last: Prince Gaetan, Count of Girgenti -[2018-02-13T00:27:07.726] [INFO] cheese - inserting 1000 documents. first: David Ireland (disambiguation) and last: Dermopathy (disambiguation) -[2018-02-13T00:27:07.735] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:27:07.757] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:27:07.804] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:27:07.862] [INFO] cheese - inserting 1000 documents. first: Macho Mandow and last: Gnaphalium pes-cati -[2018-02-13T00:27:07.870] [INFO] cheese - inserting 1000 documents. first: Karen Ogden and last: Kondek-e Khanjar -[2018-02-13T00:27:07.920] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:27:07.927] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:27:07.981] [INFO] cheese - inserting 1000 documents. first: Zeta (magazine) and last: Aigaleo, Greece -[2018-02-13T00:27:08.018] [INFO] cheese - inserting 1000 documents. first: Dernbach (disambiguation) and last: Division of Honour (disambiguation) -[2018-02-13T00:27:08.058] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:27:08.064] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:27:08.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Zhu Xiao Di and last: La Junta station -[2018-02-13T00:27:08.184] [INFO] cheese - inserting 1000 documents. first: Fansub and last: Heinrich Schutz -[2018-02-13T00:27:08.211] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:27:08.247] [INFO] cheese - inserting 1000 documents. first: The Piano Sings and last: Nakheel Harbour and Tower -[2018-02-13T00:27:08.274] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T00:27:08.304] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:27:08.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/macht-rap.de and last: Marguerite Geirnaert -[2018-02-13T00:27:08.352] [INFO] cheese - inserting 1000 documents. first: Divisive (disambiguation) and last: Dublin Review (disambiguation) -[2018-02-13T00:27:08.372] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:08.390] [INFO] cheese - inserting 1000 documents. first: Kondek and last: Yazd Now -[2018-02-13T00:27:08.391] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:08.436] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:08.581] [INFO] cheese - inserting 1000 documents. first: File:FnqrAO.png and last: Category:People from Bhopal -[2018-02-13T00:27:08.586] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Disgaea characters and last: 501st Clone Trooper Legion -[2018-02-13T00:27:08.633] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:27:08.640] [INFO] cheese - inserting 1000 documents. first: Whitesand Bay (Cornwall) and last: File:Skarabraelive.jpg -[2018-02-13T00:27:08.645] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:27:08.658] [INFO] cheese - inserting 1000 documents. first: Rhodicinium hexafluorophosphate and last: ESAC (disambiguation) -[2018-02-13T00:27:08.691] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:08.703] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:27:08.769] [INFO] cheese - inserting 1000 documents. first: Marguerite Gorr and last: Cotana germana -[2018-02-13T00:27:08.822] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:08.824] [INFO] cheese - inserting 1000 documents. first: Category:Military ranks of the Soviet Union and last: All-Star break (MLB) -[2018-02-13T00:27:08.872] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:08.981] [INFO] cheese - inserting 1000 documents. first: Stari Farkašić and last: Ashina Nishufu -[2018-02-13T00:27:09.008] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:27:09.009] [INFO] cheese - inserting 1000 documents. first: History of drinking and last: Wikipedia:Bots/Requests for approval/MetsBot 8 -[2018-02-13T00:27:09.018] [INFO] cheese - inserting 1000 documents. first: Broderick Wright and last: DSC-T50 -[2018-02-13T00:27:09.059] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:09.063] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:09.216] [INFO] cheese - inserting 1000 documents. first: M. Roslin Hashim and last: Re-Invention World Tour -[2018-02-13T00:27:09.307] [INFO] cheese - inserting 1000 documents. first: Ashina Funian and last: Eric Rogers (disambiguation) -[2018-02-13T00:27:09.311] [INFO] cheese - inserting 1000 documents. first: Cotana joiceyi and last: League of the Unemployed -[2018-02-13T00:27:09.325] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:27:09.330] [INFO] cheese - inserting 1000 documents. first: Psephocrita melanodoxa and last: Georgian legislative election, 2012 -[2018-02-13T00:27:09.344] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:27:09.390] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:27:09.388] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:27:09.434] [INFO] cheese - inserting 1000 documents. first: Antiphonitis and last: Battle of Dresden -[2018-02-13T00:27:09.495] [INFO] cheese - inserting 1000 documents. first: Frederick Bagg Bonanza Farm and last: Kocesker -[2018-02-13T00:27:09.501] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T00:27:09.544] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:27:09.599] [INFO] cheese - inserting 1000 documents. first: Portal:Hamilton, Ontario/Box-footer and last: Hesitation Waltz -[2018-02-13T00:27:09.613] [INFO] cheese - inserting 1000 documents. first: Eric Rosenthal (disambiguation) and last: FIN (disambiguation) -[2018-02-13T00:27:09.667] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:09.678] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:27:09.801] [INFO] cheese - inserting 1000 documents. first: Wheelchair fencing at the 2012 Summer Paralympics – Men's sabre B and last: Arteria thoracica -[2018-02-13T00:27:09.837] [INFO] cheese - inserting 1000 documents. first: Claude Fell and last: Imani Vol. 1 -[2018-02-13T00:27:09.845] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:27:09.847] [INFO] cheese - inserting 1000 documents. first: Kocvelili and last: Spider Coneflower -[2018-02-13T00:27:09.872] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:27:09.874] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:09.905] [INFO] cheese - inserting 1000 documents. first: Modra Observatory and last: Eragon Shadeslayer -[2018-02-13T00:27:09.906] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2010 Summer Youth Olympics – Girls' 400 metre freestyle and last: Lastine -[2018-02-13T00:27:09.932] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:27:09.972] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:27:10.091] [INFO] cheese - inserting 1000 documents. first: Kids of the Century and last: The Notorious Mrs. Ebbsmith -[2018-02-13T00:27:10.132] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:27:10.139] [INFO] cheese - inserting 1000 documents. first: Erik Sanko and last: Step-sisters -[2018-02-13T00:27:10.172] [INFO] cheese - inserting 1000 documents. first: Windows Eight Point One and last: Colin Cruse -[2018-02-13T00:27:10.173] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:27:10.204] [INFO] cheese - inserting 1000 documents. first: Category:Jersey lawyers and last: Ptilinopus mangoliensis -[2018-02-13T00:27:10.209] [INFO] cheese - inserting 1000 documents. first: Fifth Freedom (disambiguation) and last: Forager (disambiguation) -[2018-02-13T00:27:10.212] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:27:10.238] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:27:10.263] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:10.445] [INFO] cheese - inserting 1000 documents. first: Hoosac River and last: File:PussyfootTheWayThatYouDoIt.ogg -[2018-02-13T00:27:10.478] [INFO] cheese - inserting 1000 documents. first: File:Nelly Cootalot Spoonbeaks Ahoy.png and last: List of Registered Historic Places in Ohio -[2018-02-13T00:27:10.487] [INFO] cheese - inserting 1000 documents. first: Yang Talat District and last: Spain national futsal team -[2018-02-13T00:27:10.500] [INFO] cheese - inserting 1000 documents. first: Foramen cecum (disambiguation) and last: Pulcifer, Wisconsin -[2018-02-13T00:27:10.505] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:27:10.514] [INFO] cheese - inserting 1000 documents. first: Category:Books by Maurice Gee and last: Christopher Seton-Watson -[2018-02-13T00:27:10.514] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:27:10.529] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:27:10.550] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:27:10.572] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:10.602] [INFO] cheese - inserting 1000 documents. first: Battle of Eckmühl and last: Bill Cosby -[2018-02-13T00:27:10.605] [INFO] cheese - inserting 1000 documents. first: Bill Martin (artist) and last: Ahmed Kousay Al-Taie -[2018-02-13T00:27:10.644] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:27:10.689] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T00:27:10.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Andrew Luke (2nd nomination) and last: Lukasrand Tower -[2018-02-13T00:27:10.746] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:27:10.806] [INFO] cheese - inserting 1000 documents. first: 2008 FIU Golden Panthers football and last: Weinberg (disambiguation) -[2018-02-13T00:27:10.840] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:27:10.926] [INFO] cheese - inserting 1000 documents. first: Umberleigh and last: Keith Ham -[2018-02-13T00:27:10.948] [INFO] cheese - inserting 1000 documents. first: Gambian (disambiguation) and last: Germantown, Pennsylvania (disambiguation) -[2018-02-13T00:27:10.959] [INFO] cheese - inserting 1000 documents. first: Fédération Indochinoise des Associations du Scoutisme and last: Wikipedia:WikiProject Spam/LinkReports/kbra.com -[2018-02-13T00:27:10.964] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:10.966] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:27:10.982] [INFO] cheese - inserting 1000 documents. first: Kendal Rugby Union Football Club and last: Hassan Odeola -[2018-02-13T00:27:11.001] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:11.023] [INFO] cheese - inserting 1000 documents. first: OpenFormula and last: Snow field -[2018-02-13T00:27:11.033] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:11.050] [INFO] cheese - inserting 1000 documents. first: Clairaut (disambiguation) and last: Asset recovery software -[2018-02-13T00:27:11.078] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:27:11.086] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:27:11.149] [INFO] cheese - inserting 1000 documents. first: Category:Seton Hall Pirates women's basketball and last: Gordon County (disambiguation) -[2018-02-13T00:27:11.167] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:27:11.386] [INFO] cheese - inserting 1000 documents. first: Photometry (disambiguation) and last: ALCS broadcasters -[2018-02-13T00:27:11.396] [INFO] cheese - inserting 1000 documents. first: Category:Angola–India relations and last: File:Pokemon Chronicles.png -[2018-02-13T00:27:11.396] [INFO] cheese - inserting 1000 documents. first: Bruce Museum and last: Karalahti -[2018-02-13T00:27:11.421] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:27:11.437] [INFO] cheese - inserting 1000 documents. first: Gordon Craig (disambiguation) and last: Matthias of Neuburg -[2018-02-13T00:27:11.441] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:27:11.442] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:11.505] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:27:11.564] [INFO] cheese - inserting 1000 documents. first: File:Disease-Resistant Cassava Revives DRC Agriculture.JPG and last: Milli Yakjehti Council -[2018-02-13T00:27:11.587] [INFO] cheese - inserting 1000 documents. first: Yvain, the knight of the lion and last: 백지선 -[2018-02-13T00:27:11.616] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:27:11.649] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:11.701] [INFO] cheese - inserting 1000 documents. first: Green Lane (disambiguation) and last: HDGF (disambiguation) -[2018-02-13T00:27:11.722] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:27:11.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2012 October 7 and last: New programming language -[2018-02-13T00:27:11.807] [INFO] cheese - inserting 1000 documents. first: Category:Jackson State University alumni and last: Transfer (disambiguation) -[2018-02-13T00:27:11.868] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:11.908] [INFO] cheese - inserting 1000 documents. first: Pic-Pic and last: Jani Sullanmaa -[2018-02-13T00:27:11.914] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:27:11.945] [INFO] cheese - inserting 1000 documents. first: Anemonospermos verbascifolia and last: Order Of 13 Centuries Of Bulgaria -[2018-02-13T00:27:11.975] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:27:11.986] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:11.989] [INFO] cheese - inserting 1000 documents. first: HDMS (disambiguation) and last: Woo Fung -[2018-02-13T00:27:12.018] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:27:12.041] [INFO] cheese - inserting 1000 documents. first: PLOS and last: Foreign relations of Macedonia -[2018-02-13T00:27:12.119] [INFO] cheese - batch complete in: 1.429 secs -[2018-02-13T00:27:12.137] [INFO] cheese - inserting 1000 documents. first: Saint Clair (disambiguation) and last: Wikipedia:Articles for deletion/B-Valentine -[2018-02-13T00:27:12.156] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:27:12.168] [INFO] cheese - inserting 1000 documents. first: Grammatiko, Greece and last: Fleet management -[2018-02-13T00:27:12.224] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:27:12.275] [INFO] cheese - inserting 1000 documents. first: Harwich railway station (disambiguation) and last: Herald Island (disambiguation) -[2018-02-13T00:27:12.279] [INFO] cheese - inserting 1000 documents. first: Category:Lists of landforms by country and last: Barbadians in the Amazon -[2018-02-13T00:27:12.307] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:12.335] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:27:12.343] [INFO] cheese - inserting 1000 documents. first: Cleomenes (disambiguation) and last: GCT (disambiguation) -[2018-02-13T00:27:12.367] [INFO] cheese - inserting 1000 documents. first: Order of 13 Centuries of Bulgaria and last: Wikipedia:Articles for deletion/Log/2015 May 26 -[2018-02-13T00:27:12.370] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:27:12.410] [INFO] cheese - inserting 1000 documents. first: Bullshit episodes and last: Brunswick valley -[2018-02-13T00:27:12.443] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:27:12.472] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:12.558] [INFO] cheese - inserting 1000 documents. first: Chesterfield County Sheriff’s Office (Virginia) and last: Honey Creek, Wisconsin (disambiguation) -[2018-02-13T00:27:12.582] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:27:12.611] [INFO] cheese - inserting 1000 documents. first: Vergile Boumelaha and last: GCE (disambiguation) -[2018-02-13T00:27:12.658] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:27:12.756] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rev. Stephen T. Wheeler and last: Lane Dwinell -[2018-02-13T00:27:12.809] [INFO] cheese - inserting 1000 documents. first: Honey Creek Township (disambiguation) and last: Héricourt (disambiguation) -[2018-02-13T00:27:12.854] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:27:12.871] [INFO] cheese - inserting 1000 documents. first: Hemilability and last: File:G09828gpcz0.jpg -[2018-02-13T00:27:12.876] [INFO] cheese - inserting 1000 documents. first: Carl Bridge and last: Lisa A Callif -[2018-02-13T00:27:12.889] [INFO] cheese - inserting 1000 documents. first: Eucalyptus ovata and last: Chemerinsky -[2018-02-13T00:27:12.921] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:27:12.973] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:27:12.999] [INFO] cheese - inserting 1000 documents. first: Night and Day (disambiguation) and last: Unterseeboot 2513 -[2018-02-13T00:27:13.014] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:27:13.018] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:13.029] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:13.379] [INFO] cheese - inserting 1000 documents. first: Hòa Bình (disambiguation) and last: 2010 Copiapo mining accident -[2018-02-13T00:27:13.499] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:27:13.542] [INFO] cheese - inserting 1000 documents. first: Portal:Bihar/Selected articles/Layout and last: Isidor Barndt (1816-1891) -[2018-02-13T00:27:13.592] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:13.625] [INFO] cheese - inserting 1000 documents. first: David Searls and last: John Fownes-Luttrell -[2018-02-13T00:27:13.654] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:27:13.704] [INFO] cheese - inserting 1000 documents. first: Portal:Apple Inc./Selected article/9 and last: Category:Lists of Norwegian people by occupation -[2018-02-13T00:27:13.706] [INFO] cheese - inserting 1000 documents. first: File:PrabirAndTheSubstitutes.jpg and last: Moesa River -[2018-02-13T00:27:13.708] [INFO] cheese - inserting 1000 documents. first: Lawrence Gordon (producer) and last: Japanese dictionary -[2018-02-13T00:27:13.745] [INFO] cheese - inserting 1000 documents. first: Imperial Standard (disambiguation) and last: Ruby pipeline -[2018-02-13T00:27:13.766] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:27:13.765] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:27:13.778] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:27:13.785] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:27:13.828] [INFO] cheese - inserting 1000 documents. first: German submarine U 803 and last: Axel (disambiguation) -[2018-02-13T00:27:13.881] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:27:13.981] [INFO] cheese - inserting 1000 documents. first: ^? and last: Snežnik, Slovenia (settlement) -[2018-02-13T00:27:13.997] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:27:14.011] [INFO] cheese - inserting 1000 documents. first: Curtis turbine and last: Ibon Areso Mendiguren -[2018-02-13T00:27:14.055] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:14.102] [INFO] cheese - inserting 1000 documents. first: Winnisquam, NH and last: Gandikar -[2018-02-13T00:27:14.105] [INFO] cheese - inserting 1000 documents. first: German submarine UB-65 and last: Hacimemmedoba -[2018-02-13T00:27:14.124] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:27:14.130] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:14.210] [INFO] cheese - inserting 1000 documents. first: Zichron Moshe and last: Jiang (disambiguation) -[2018-02-13T00:27:14.221] [INFO] cheese - inserting 1000 documents. first: Von Hippel-Lindau and last: Category:Las Vegas Quicksilver players -[2018-02-13T00:27:14.224] [INFO] cheese - inserting 1000 documents. first: Melian and last: Love and Rockets -[2018-02-13T00:27:14.241] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:27:14.287] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:27:14.299] [INFO] cheese - inserting 1000 documents. first: Aetheria (disambiguation) and last: Wikipedia:Articles for deletion/The Ups and The Downs -[2018-02-13T00:27:14.300] [INFO] cheese - inserting 1000 documents. first: Kicking and Screaming and last: Baby Washington -[2018-02-13T00:27:14.327] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:27:14.328] [INFO] cheese - batch complete in: 2.208 secs -[2018-02-13T00:27:14.367] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:27:14.426] [INFO] cheese - inserting 1000 documents. first: Lewis acid catalysis and last: Outstanding Sound Design/Composition (Dance) -[2018-02-13T00:27:14.469] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:27:14.472] [INFO] cheese - inserting 1000 documents. first: Storvatnet (Bykle) and last: Iranian football league -[2018-02-13T00:27:14.504] [INFO] cheese - inserting 1000 documents. first: Aqua Zoo Friesland and last: Dávid Vojvoda -[2018-02-13T00:27:14.539] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:27:14.575] [INFO] cheese - inserting 1000 documents. first: Sow (disambiguation) and last: Times-Journal -[2018-02-13T00:27:14.583] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:27:14.624] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:27:14.702] [INFO] cheese - inserting 1000 documents. first: Komancza Republic and last: Matthew Theissen -[2018-02-13T00:27:14.778] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:27:14.795] [INFO] cheese - inserting 1000 documents. first: Smith Newton and last: Queen's Own Royal Glasgow Yeomanry, Lanarkshire (Glasgow) -[2018-02-13T00:27:14.823] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:27:14.874] [INFO] cheese - inserting 1000 documents. first: John Muir Award (disambiguation) and last: Category:Chadian Roman Catholic archbishops -[2018-02-13T00:27:14.892] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:27:14.984] [INFO] cheese - inserting 1000 documents. first: USS Titan and last: Salpistele -[2018-02-13T00:27:15.032] [INFO] cheese - inserting 1000 documents. first: Category:Eskişehir Cup and last: Sir George Parkyns, 4th Baronet -[2018-02-13T00:27:15.047] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:27:15.103] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:27:15.108] [INFO] cheese - inserting 1000 documents. first: Fred Christensen and last: File:Flesheatersposter.jpg -[2018-02-13T00:27:15.145] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Native American leader and last: Łąka, Podkarpackie Voivodeship -[2018-02-13T00:27:15.151] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:15.178] [INFO] cheese - inserting 1000 documents. first: Category:1989 elections in Turkey and last: Black Death (1992 film) -[2018-02-13T00:27:15.222] [INFO] cheese - inserting 1000 documents. first: Frans Gommers and last: KWAY (disambiguation) -[2018-02-13T00:27:15.222] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:27:15.226] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:15.256] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:27:15.529] [INFO] cheese - inserting 1000 documents. first: Currant-tree and last: Template:2000s-rock-single-stub -[2018-02-13T00:27:15.585] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:15.588] [INFO] cheese - inserting 1000 documents. first: KWEY (disambiguation) and last: Dent d'Oche -[2018-02-13T00:27:15.619] [INFO] cheese - inserting 1000 documents. first: Piled Higher and Deeper and last: Aberfoyle Park, South Australia -[2018-02-13T00:27:15.644] [INFO] cheese - inserting 1000 documents. first: Łukawiec, Rzeszów County and last: 11P (disambiguation) -[2018-02-13T00:27:15.667] [INFO] cheese - inserting 1000 documents. first: George Parkyns, 4th Baronet and last: Droughts in Australia -[2018-02-13T00:27:15.678] [INFO] cheese - inserting 1000 documents. first: 1572 in India and last: Category:3rd millennium in Saint Kitts and Nevis -[2018-02-13T00:27:15.693] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:27:15.730] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:27:15.779] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:27:15.785] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:15.805] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:27:16.099] [INFO] cheese - inserting 1000 documents. first: 11th Armored (disambiguation) and last: Category:List-Class Baseball articles by project -[2018-02-13T00:27:16.113] [INFO] cheese - inserting 1000 documents. first: Keloid and last: The (Young) Rascals -[2018-02-13T00:27:16.121] [INFO] cheese - inserting 1000 documents. first: Kast (disambiguation) and last: Kiełpiny (disambiguation) -[2018-02-13T00:27:16.127] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:27:16.152] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:27:16.268] [INFO] cheese - inserting 1000 documents. first: Limuchiha and last: Sweet Waters -[2018-02-13T00:27:16.270] [INFO] cheese - batch complete in: 1.941 secs -[2018-02-13T00:27:16.286] [INFO] cheese - inserting 1000 documents. first: Lexington Airport (Oregon) and last: File:Catalina-62.jpg -[2018-02-13T00:27:16.289] [INFO] cheese - inserting 1000 documents. first: Memory Rd. and last: Geological Survey of Finland, Bulletin -[2018-02-13T00:27:16.309] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:27:16.354] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:27:16.352] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:16.374] [INFO] cheese - inserting 1000 documents. first: Kiha (disambiguation) and last: Kordes (disambiguation) -[2018-02-13T00:27:16.399] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:27:16.494] [INFO] cheese - inserting 1000 documents. first: Sima Pandurović and last: Train Station -[2018-02-13T00:27:16.541] [INFO] cheese - inserting 1000 documents. first: Aukan (disambiguation) and last: Charles Jean Francois Henault -[2018-02-13T00:27:16.594] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:27:16.596] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:27:16.732] [INFO] cheese - inserting 1000 documents. first: KOT (disambiguation) and last: LEDS (disambiguation) -[2018-02-13T00:27:16.759] [INFO] cheese - inserting 1000 documents. first: Template:Olympics archery header/doc and last: Rtw2 -[2018-02-13T00:27:16.765] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:16.801] [INFO] cheese - inserting 1000 documents. first: Unterseeboot 1 (1906) and last: U-36 (1936) -[2018-02-13T00:27:16.810] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:27:16.832] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:27:16.855] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Australia/Units/April 14 and last: Category:Tennis in Lithuania -[2018-02-13T00:27:16.871] [INFO] cheese - inserting 1000 documents. first: Template:Labour LegCo members and last: This Charming Life -[2018-02-13T00:27:16.899] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:16.906] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:27:16.980] [INFO] cheese - inserting 1000 documents. first: LEEP (disambiguation) and last: Langenfeld (disambiguation) -[2018-02-13T00:27:17.012] [INFO] cheese - inserting 1000 documents. first: U 36 (1936) and last: Areeiro (disambiguation) -[2018-02-13T00:27:17.014] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:27:17.045] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:27:17.104] [INFO] cheese - inserting 1000 documents. first: Veniss Underground and last: Non-executive director -[2018-02-13T00:27:17.159] [INFO] cheese - inserting 1000 documents. first: Rtw 2 and last: Template:Office holders in the Diocese of Gloucester -[2018-02-13T00:27:17.204] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:27:17.218] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:17.346] [INFO] cheese - inserting 1000 documents. first: Ares (rocket) (disambiguation) and last: Pennsylvania House of Representatives, District 15 -[2018-02-13T00:27:17.350] [INFO] cheese - inserting 1000 documents. first: Belén de Bajirá and last: Ameristar Jet Charter -[2018-02-13T00:27:17.359] [INFO] cheese - inserting 1000 documents. first: File:Homme-au-bain-christophe-honore.jpg and last: Lev Korolyov (disambiguation) -[2018-02-13T00:27:17.385] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:17.396] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:17.397] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:27:17.597] [INFO] cheese - inserting 1000 documents. first: Chobhar (disambiguation) and last: Gulluk, Azerbaijan -[2018-02-13T00:27:17.618] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:27:17.628] [INFO] cheese - inserting 1000 documents. first: Lev of Galicia (disambiguation) and last: Live and Let Live (disambiguation) -[2018-02-13T00:27:17.653] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:27:17.661] [INFO] cheese - inserting 1000 documents. first: Wretched & Divine and last: Lynda Marchal -[2018-02-13T00:27:17.692] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:17.725] [INFO] cheese - inserting 1000 documents. first: Boy Meets World (Disney) and last: Incheon International Airport -[2018-02-13T00:27:17.738] [INFO] cheese - inserting 1000 documents. first: Patent Ochsner and last: Montréal/Boucherville Water Aerodrome -[2018-02-13T00:27:17.742] [INFO] cheese - inserting 1000 documents. first: Zarankiewicz and last: Category:Al-Qurain SC -[2018-02-13T00:27:17.754] [INFO] cheese - inserting 1000 documents. first: American Cream Draft and last: East Khandesh -[2018-02-13T00:27:17.778] [INFO] cheese - inserting 1000 documents. first: Seattle MLS 2010 and last: Ism (disambiguation) -[2018-02-13T00:27:17.786] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:27:17.790] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:27:17.797] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:27:17.799] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:27:17.807] [INFO] cheese - batch complete in: 1.537 secs -[2018-02-13T00:27:17.825] [INFO] cheese - inserting 1000 documents. first: Live and Rare (disambiguation) and last: Lubów (disambiguation) -[2018-02-13T00:27:17.865] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:27:17.959] [INFO] cheese - inserting 1000 documents. first: Amber Beattie and last: Andravida military airport -[2018-02-13T00:27:17.984] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:27:17.985] [INFO] cheese - inserting 1000 documents. first: Smackdown (song) and last: Shablykinskiy -[2018-02-13T00:27:18.023] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:27:18.069] [INFO] cheese - inserting 1000 documents. first: Category:1983 in darts and last: 1868 Ecuador earthquakes -[2018-02-13T00:27:18.094] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:27:18.132] [INFO] cheese - inserting 1000 documents. first: File:HTML500 Logo Orange BG.png and last: Alvim Pereira -[2018-02-13T00:27:18.157] [INFO] cheese - inserting 1000 documents. first: Utah State Route 2 (disambiguation) and last: Franklin Township School District (disambiguation) -[2018-02-13T00:27:18.183] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:27:18.206] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:27:18.217] [INFO] cheese - inserting 1000 documents. first: Amyloid precursor protein secretase and last: Kimie Shingyoji -[2018-02-13T00:27:18.240] [INFO] cheese - inserting 1000 documents. first: New army sword and last: Oddur Pétursson -[2018-02-13T00:27:18.283] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:18.297] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:18.334] [INFO] cheese - inserting 1000 documents. first: MISA (disambiguation) and last: Shilpi Mudgal -[2018-02-13T00:27:18.343] [INFO] cheese - inserting 1000 documents. first: Shablykinski and last: Eat St -[2018-02-13T00:27:18.355] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:27:18.363] [INFO] cheese - inserting 1000 documents. first: Spring Creek School (disambiguation) and last: USASF (disambiguation) -[2018-02-13T00:27:18.374] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:18.396] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:27:18.496] [INFO] cheese - inserting 1000 documents. first: Adrian Gerald Foley and last: Anonymous Tombs in Amarna -[2018-02-13T00:27:18.571] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:18.716] [INFO] cheese - inserting 1000 documents. first: Kalika and last: LDD (disambiguation) -[2018-02-13T00:27:18.753] [INFO] cheese - inserting 1000 documents. first: Malcolm (disambiguation) and last: Mark Ellis (disambiguation) -[2018-02-13T00:27:18.776] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:27:18.781] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:18.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 April 12 and last: Religious views of Abraham Lincoln -[2018-02-13T00:27:18.927] [INFO] cheese - inserting 1000 documents. first: Barr 6 and last: Solid black (chicken plumage) -[2018-02-13T00:27:18.962] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:27:18.997] [INFO] cheese - inserting 1000 documents. first: Jo Hyeon-jeong and last: Acris -[2018-02-13T00:27:19.020] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:27:19.077] [INFO] cheese - inserting 1000 documents. first: Mark Everett (disambiguation) and last: Mayhew (disambiguation) -[2018-02-13T00:27:19.097] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:27:19.134] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:27:19.186] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Mickleover Royals and last: Batocera rufomaculata var. diana -[2018-02-13T00:27:19.201] [INFO] cheese - inserting 1000 documents. first: Grounded (disambiguation) and last: Pine Tree Council -[2018-02-13T00:27:19.241] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:27:19.256] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:27:19.374] [INFO] cheese - inserting 1000 documents. first: Einstein-Podolsky-Rosen paradox and last: Bolshevism -[2018-02-13T00:27:19.389] [INFO] cheese - inserting 1000 documents. first: Maylands (disambiguation) and last: Michael Culme-Seymour (disambiguation) -[2018-02-13T00:27:19.410] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:27:19.418] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/On the Radio (album) and last: C31H64 -[2018-02-13T00:27:19.462] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Heights, Illinois and last: File:Koufaxbother4.jpg -[2018-02-13T00:27:19.469] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T00:27:19.476] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:27:19.518] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:27:19.534] [INFO] cheese - inserting 1000 documents. first: Baltimore Area Council and last: German submarine U63 -[2018-02-13T00:27:19.566] [INFO] cheese - inserting 1000 documents. first: Batocera rufomaculata var. flavescens and last: Jimmy Batten -[2018-02-13T00:27:19.568] [INFO] cheese - inserting 1000 documents. first: Gatorland and last: Pedro Linares -[2018-02-13T00:27:19.569] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:27:19.593] [INFO] cheese - inserting 1000 documents. first: Illinois-Indiana League and last: Rogério Lourenço -[2018-02-13T00:27:19.611] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:27:19.624] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:27:19.646] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:27:19.778] [INFO] cheese - inserting 1000 documents. first: Alan J. H. Maclean and last: Ebih-Il -[2018-02-13T00:27:19.808] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:19.859] [INFO] cheese - inserting 1000 documents. first: Rhodium (II) Acetate and last: Wilno region -[2018-02-13T00:27:19.865] [INFO] cheese - inserting 1000 documents. first: U-63 and last: Digyakhoba -[2018-02-13T00:27:19.891] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:19.892] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:27:19.894] [INFO] cheese - inserting 1000 documents. first: Ministério Público (disambiguation) and last: FNCZ -[2018-02-13T00:27:19.919] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:20.005] [INFO] cheese - inserting 1000 documents. first: Thomas Brown (minister) and last: Coudraysien -[2018-02-13T00:27:20.056] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:20.063] [INFO] cheese - inserting 1000 documents. first: Zaboomafoo and last: Burschenschaften -[2018-02-13T00:27:20.106] [INFO] cheese - inserting 1000 documents. first: SVCL and last: Musi (disambiguation) -[2018-02-13T00:27:20.121] [INFO] cheese - inserting 1000 documents. first: Ebih Il and last: Bolerium -[2018-02-13T00:27:20.128] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:27:20.146] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:27:20.160] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:27:20.224] [INFO] cheese - inserting 1000 documents. first: Ignateva and last: Ida Pollock -[2018-02-13T00:27:20.272] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:27:20.333] [INFO] cheese - inserting 1000 documents. first: 4-TE and last: Template:To SVG -[2018-02-13T00:27:20.342] [INFO] cheese - inserting 1000 documents. first: MusicDNA (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/onvibramfivefingersshoes.com -[2018-02-13T00:27:20.366] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:27:20.392] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:27:20.434] [INFO] cheese - inserting 1000 documents. first: Osmar Loss Vieira and last: File:TheMysteryTrainPoster.jpg -[2018-02-13T00:27:20.477] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:27:20.483] [INFO] cheese - inserting 1000 documents. first: Keley-i Kallahan language and last: File:Walt Disney World Dolphin logo.svg -[2018-02-13T00:27:20.534] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:20.600] [INFO] cheese - inserting 1000 documents. first: Template:R7 and last: Category:Dames Grand Cross of the Royal Victorian Order -[2018-02-13T00:27:20.621] [INFO] cheese - inserting 1000 documents. first: Arsenal (Highbury Hill) railway station and last: Freddie Brooks (musician) -[2018-02-13T00:27:20.631] [INFO] cheese - inserting 1000 documents. first: Momiji Dolls and last: Viadukt -[2018-02-13T00:27:20.654] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:27:20.657] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:27:20.681] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:27:20.749] [INFO] cheese - inserting 1000 documents. first: Dan Broström and last: Cry wolf -[2018-02-13T00:27:20.801] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:27:20.865] [INFO] cheese - inserting 1000 documents. first: Jim Meddick and last: Act of Navigation -[2018-02-13T00:27:20.892] [INFO] cheese - inserting 1000 documents. first: Neelum (disambiguation) and last: Niedźwiady (disambiguation) -[2018-02-13T00:27:20.914] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:27:20.925] [INFO] cheese - inserting 1000 documents. first: 2/1st Yorkshire Mounted Brigade and last: C13NH12O2Br -[2018-02-13T00:27:20.948] [INFO] cheese - batch complete in: 1.479 secs -[2018-02-13T00:27:20.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dermatology and last: Henning Bahs -[2018-02-13T00:27:20.972] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:20.996] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:27:21.007] [INFO] cheese - inserting 1000 documents. first: National Institute of Statistics and Census of Panama and last: Wikipedia:Articles for deletion/Pie Rats -[2018-02-13T00:27:21.082] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:27:21.142] [INFO] cheese - inserting 1000 documents. first: Icteric and last: Milan Jovanić -[2018-02-13T00:27:21.222] [INFO] cheese - inserting 1000 documents. first: Niedźwiednik (disambiguation) and last: Nowhere (disambiguation) -[2018-02-13T00:27:21.238] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:27:21.256] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:27:21.362] [INFO] cheese - inserting 1000 documents. first: Batuque (religion) and last: File:Frase de Neil Armstrong.ogg -[2018-02-13T00:27:21.409] [INFO] cheese - inserting 1000 documents. first: Bulgarian Constitutional Clubs and last: Talent (comics) -[2018-02-13T00:27:21.431] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:27:21.498] [INFO] cheese - inserting 1000 documents. first: Nowhere to Go (disambiguation) and last: Olchowiec (disambiguation) -[2018-02-13T00:27:21.501] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:21.558] [INFO] cheese - inserting 1000 documents. first: Akane the Kunoichi and last: Action of 9 February 1799 (South Africa) -[2018-02-13T00:27:21.566] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:27:21.576] [INFO] cheese - inserting 1000 documents. first: Sport (Russian TV channel,2011) and last: The Flatiron Challenge at Lacombe -[2018-02-13T00:27:21.621] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:27:21.661] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:27:21.778] [INFO] cheese - inserting 1000 documents. first: The Fremantle Journal and General Advertiser and last: Makai Kingdom: Chronicles Of The Sacred Tome -[2018-02-13T00:27:21.788] [INFO] cheese - inserting 1000 documents. first: Donde Estas Corazon? and last: Waldron, Washington -[2018-02-13T00:27:21.818] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:27:21.821] [INFO] cheese - inserting 1000 documents. first: IT Acronyms and last: HD 10180 f -[2018-02-13T00:27:21.830] [INFO] cheese - inserting 1000 documents. first: Electric light ochestra and last: Evgeniy Pokhlebaev -[2018-02-13T00:27:21.842] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:27:21.858] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:27:21.869] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:21.955] [INFO] cheese - inserting 1000 documents. first: Category:1968 in paleontology and last: Portal:Current events/2000 October 23 -[2018-02-13T00:27:21.987] [INFO] cheese - inserting 1000 documents. first: Trigonectes and last: Category:Pipelines in Oman -[2018-02-13T00:27:21.991] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:27:22.035] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:22.057] [INFO] cheese - inserting 1000 documents. first: Osieki (disambiguation) and last: PWU (disambiguation) -[2018-02-13T00:27:22.088] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:27:22.142] [INFO] cheese - inserting 1000 documents. first: Joe Smith (CFL football player) and last: Butanenitrile -[2018-02-13T00:27:22.191] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:22.208] [INFO] cheese - inserting 1000 documents. first: Evgueny Pokhlebaev and last: Narayanapuram -[2018-02-13T00:27:22.255] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:22.264] [INFO] cheese - inserting 1000 documents. first: Rennie Lake and last: Chou Chuan-huing -[2018-02-13T00:27:22.317] [INFO] cheese - inserting 1000 documents. first: PXC (disambiguation) and last: Paul Phoenix (disambiguation) -[2018-02-13T00:27:22.328] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:22.359] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:22.368] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2000 October 26 and last: High-level-architecture -[2018-02-13T00:27:22.429] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:22.439] [INFO] cheese - inserting 1000 documents. first: Category:Infrastructure in Oman and last: Wesley Kreder -[2018-02-13T00:27:22.456] [INFO] cheese - inserting 1000 documents. first: Navigation Acts and last: Jeremy Gelbwaks -[2018-02-13T00:27:22.544] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:22.553] [INFO] cheese - inserting 1000 documents. first: Pinchas Cohen Gan and last: Dianat -[2018-02-13T00:27:22.594] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:22.597] [INFO] cheese - inserting 1000 documents. first: Paul Pry (disambiguation) and last: Philippe Gardent (disambiguation) -[2018-02-13T00:27:22.593] [INFO] cheese - batch complete in: 1.645 secs -[2018-02-13T00:27:22.663] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:27:22.717] [INFO] cheese - inserting 1000 documents. first: Polyptychus affinis and last: Music City Championship at Gaylord Opryland -[2018-02-13T00:27:22.758] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:22.853] [INFO] cheese - inserting 1000 documents. first: Nadezda Petrovic and last: Don't you want me -[2018-02-13T00:27:22.922] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Wolfkeeper and last: Category:Dominican Republic at the Pan American Games -[2018-02-13T00:27:22.937] [INFO] cheese - inserting 1000 documents. first: Strictly Come Dancing - Series 10 and last: Category:Albums by Dominican Republic artists by genre -[2018-02-13T00:27:22.954] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:27:22.968] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:27:22.989] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:23.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Molly Bennett and last: Kleptomaniax -[2018-02-13T00:27:23.064] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Adele Schreiber-Krieger and last: Wikipedia:Related WikiProjects/WikiProject Minnesota Twins -[2018-02-13T00:27:23.162] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:27:23.180] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:27:23.267] [INFO] cheese - inserting 1000 documents. first: File:Buckethead-SpinalClock.jpg and last: Wikipedia:WikiProject Spam/LinkReports/thermalsolar.co.uk -[2018-02-13T00:27:23.268] [INFO] cheese - inserting 1000 documents. first: Bop Gun (Endangered Species) and last: Category:2008 in Canada -[2018-02-13T00:27:23.304] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:27:23.309] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:27:23.360] [INFO] cheese - inserting 1000 documents. first: Category:Merrimack College faculty and last: File:KK Smederevo 1953.png -[2018-02-13T00:27:23.396] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:27:23.457] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Caribbean/Turks and Caicos Islands work group and last: Wikipedia:Related WikiProjects/WikiProject Celts -[2018-02-13T00:27:23.512] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:23.594] [INFO] cheese - inserting 1000 documents. first: List of spherical objects in the Solar System and last: Metaformaldehye -[2018-02-13T00:27:23.641] [INFO] cheese - inserting 1000 documents. first: Doulos (SIL) and last: Wikipedia:Requests for adminship/Purplefeltangel2 -[2018-02-13T00:27:23.660] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:27:23.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thermalsolar.co.uk and last: Uinskaya -[2018-02-13T00:27:23.709] [INFO] cheese - inserting 1000 documents. first: Chromatic and diatonic and last: File:Peel sessions-triffids.jpg -[2018-02-13T00:27:23.738] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:27:23.741] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:23.794] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:23.816] [INFO] cheese - inserting 1000 documents. first: Category:Ruined castles in Fife and last: Thecla porthura -[2018-02-13T00:27:23.869] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:23.904] [INFO] cheese - inserting 1000 documents. first: Gábor Korchmáros and last: Wikipedia:Related WikiProjects/WikiProject Public Art -[2018-02-13T00:27:23.963] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:27:23.977] [INFO] cheese - inserting 1000 documents. first: Q106 (disambiguation) and last: Jacques-Marie Le Père -[2018-02-13T00:27:23.991] [INFO] cheese - inserting 1000 documents. first: File:Gotwald, William Washington En.jpg and last: William Best (Nova Scotia politician) -[2018-02-13T00:27:24.007] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:27:24.027] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:27:24.195] [INFO] cheese - inserting 1000 documents. first: Elegy (Twilight Zone episode) and last: Organisation for the Maintenance of Supplies -[2018-02-13T00:27:24.215] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Libraries/2013 (off-season) and last: CMLL Mini-Estrellas tournaments -[2018-02-13T00:27:24.231] [INFO] cheese - inserting 1000 documents. first: Rat-bite fevers and last: Cocos Island, Western Australia -[2018-02-13T00:27:24.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Georgia Tech and last: Complement Ther Med. -[2018-02-13T00:27:24.277] [INFO] cheese - inserting 1000 documents. first: C10H16N4O7 and last: Realistic (disambiguation) -[2018-02-13T00:27:24.276] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:27:24.299] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:24.334] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:24.350] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:24.351] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:24.363] [INFO] cheese - inserting 1000 documents. first: Oil of mirbane and last: Svecc -[2018-02-13T00:27:24.395] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:27:24.447] [INFO] cheese - inserting 1000 documents. first: At Home with Their Greatest Hits and last: Nigel Edward Buxton -[2018-02-13T00:27:24.517] [INFO] cheese - inserting 1000 documents. first: Realize (disambiguation) and last: Rich List (disambiguation) -[2018-02-13T00:27:24.532] [INFO] cheese - batch complete in: 1.937 secs -[2018-02-13T00:27:24.541] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:27:24.606] [INFO] cheese - inserting 1000 documents. first: Feng Zhongpu and last: Template:Attached KML/DG postcode area -[2018-02-13T00:27:24.632] [INFO] cheese - inserting 1000 documents. first: Category:Former Kurdish states and last: Synchrotron accelerator -[2018-02-13T00:27:24.652] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:24.685] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:24.723] [INFO] cheese - inserting 1000 documents. first: Category:Spetsnaz brigades of Russia and last: El Reno Municipal Swimming Pool Bath House -[2018-02-13T00:27:24.759] [INFO] cheese - inserting 1000 documents. first: Rich Township (disambiguation) and last: Robert Waterman (disambiguation) -[2018-02-13T00:27:24.766] [INFO] cheese - inserting 1000 documents. first: Liviu and last: Wikipedia:Articles for deletion/Poptimal -[2018-02-13T00:27:24.774] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:27:24.780] [INFO] cheese - inserting 1000 documents. first: Saraca and last: Matawan Regional High School -[2018-02-13T00:27:24.806] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:27:24.828] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:27:24.859] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:25.004] [INFO] cheese - inserting 1000 documents. first: Category:American Samoan clergy and last: Category:Road speed limit -[2018-02-13T00:27:25.050] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:27:25.064] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/DH postcode area and last: Template:Fb team Fortuna Brazi -[2018-02-13T00:27:25.093] [INFO] cheese - inserting 1000 documents. first: Geoffrey Hill (disambiguation) and last: Agra Cantt. (Vidhan Sabha constituency) -[2018-02-13T00:27:25.096] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:27:25.130] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:25.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Mass spectrometry/Participants and last: Divisions of Kenya -[2018-02-13T00:27:25.255] [INFO] cheese - inserting 1000 documents. first: 4 Stroke Internal Combustion Engine and last: Body and Soul (David Murray album) -[2018-02-13T00:27:25.282] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:27:25.328] [INFO] cheese - inserting 1000 documents. first: Browne v Dunn and last: Roy Wayne Farris -[2018-02-13T00:27:25.332] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:27:25.394] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:27:25.422] [INFO] cheese - inserting 1000 documents. first: Ruben Gonzalez (disambiguation) and last: Fundamenta Botanica -[2018-02-13T00:27:25.487] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:25.659] [INFO] cheese - inserting 1000 documents. first: Chanthaburi Province Stadium and last: Colobothea femorosa -[2018-02-13T00:27:25.674] [INFO] cheese - inserting 1000 documents. first: Fortuna Brazi and last: Wikipedia:Miscellany for deletion/Wikipedia:Articles for creation/Suman Ashraphi -[2018-02-13T00:27:25.694] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:27:25.713] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:27:25.762] [INFO] cheese - inserting 1000 documents. first: McDonald's Championship (golf) and last: Rosie Munter -[2018-02-13T00:27:25.788] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:27:25.911] [INFO] cheese - inserting 1000 documents. first: Cholesteryl pelargonate and last: Lime nitrogen -[2018-02-13T00:27:25.928] [INFO] cheese - inserting 1000 documents. first:  and last: The Barbegal mill -[2018-02-13T00:27:25.944] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:27:25.952] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:27:26.013] [INFO] cheese - inserting 1000 documents. first: Dave Magadan and last: KRNIC -[2018-02-13T00:27:26.020] [INFO] cheese - inserting 1000 documents. first: File:Hmwithsstuff.JPG and last: Old-fashioned (short story) -[2018-02-13T00:27:26.033] [INFO] cheese - inserting 1000 documents. first: Salvatore (disambiguation) and last: Sawgrass (disambiguation) -[2018-02-13T00:27:26.044] [INFO] cheese - inserting 1000 documents. first: Corinne Griffith and last: Jesus in Islam -[2018-02-13T00:27:26.057] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:27:26.077] [INFO] cheese - inserting 1000 documents. first: Colobothea fibrosa and last: Diomedea bidentata -[2018-02-13T00:27:26.077] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:27:26.083] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:27:26.110] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:26.146] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:26.148] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:27:26.166] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T00:27:26.260] [INFO] cheese - inserting 1000 documents. first: Alpha-thiolglycerol and last: TaylorWessing -[2018-02-13T00:27:26.317] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:26.320] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:27:26.332] [INFO] cheese - inserting 1000 documents. first: Luca Coletto and last: Seems Like Old Times (disambiguation) -[2018-02-13T00:27:26.348] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:27:26.386] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:27:26.454] [INFO] cheese - inserting 1000 documents. first: The GSIA and last: Wikipedia:Articles for deletion/The War of Turkish Presidential Elections -[2018-02-13T00:27:26.494] [INFO] cheese - inserting 1000 documents. first: Diomedea linearis and last: Windham Township (Wyoming County, Pennsylvania) -[2018-02-13T00:27:26.501] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:26.506] [INFO] cheese - inserting 1000 documents. first:  and last: File:Bedwetter cover.jpg -[2018-02-13T00:27:26.523] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:27:26.535] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:26.592] [INFO] cheese - inserting 1000 documents. first: Sphincter pupillae and last: The First Duty -[2018-02-13T00:27:26.714] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:27:26.791] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:26.812] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:26.828] [INFO] cheese - inserting 1000 documents. first: Seenu (disambiguation) and last: Carry chain -[2018-02-13T00:27:26.842] [INFO] cheese - inserting 1000 documents. first: 30076 and last: File:VA - Fairfax County Police Badge.jpg -[2018-02-13T00:27:26.860] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:26.892] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:27:27.003] [INFO] cheese - inserting 1000 documents. first: Igreja e Convento de Nossa Senhora do Carmo and last: 2015–16 Regionalliga (women) -[2018-02-13T00:27:27.004] [INFO] cheese - inserting 1000 documents. first: Beatdown Set and last: Pedro Oldoni -[2018-02-13T00:27:27.014] [INFO] cheese - inserting 1000 documents. first:  and last:  -[2018-02-13T00:27:27.046] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:27:27.053] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:27.070] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:27:27.165] [INFO] cheese - inserting 1000 documents. first: Wilborn Temple First Church of God in Christ and last: Canvas (film) -[2018-02-13T00:27:27.193] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:27.226] [INFO] cheese - inserting 1000 documents. first: Curtain Call For Clifford and last: Poor housing -[2018-02-13T00:27:27.245] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:27:27.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jagged edges and last: University of La Laguna -[2018-02-13T00:27:27.264] [INFO] cheese - inserting 1000 documents. first: Diarrhoea and last: SQL programming language -[2018-02-13T00:27:27.286] [INFO] cheese - inserting 1000 documents. first: Yenikend, Sabirabad and last: Riding sword -[2018-02-13T00:27:27.307] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:27:27.328] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:27.347] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T00:27:27.368] [INFO] cheese - inserting 1000 documents. first: Sio (disambiguation) and last: Somogyi (disambiguation) -[2018-02-13T00:27:27.387] [INFO] cheese - inserting 1000 documents. first: File:Dharmayutham.jpg and last: Wikipedia:WikiProject Directory/Description/WikiProject Cell Signaling -[2018-02-13T00:27:27.403] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:27:27.410] [INFO] cheese - inserting 1000 documents. first: Patricia Ross and last: Category:Regionally Important Geological / Geomorphicological Sites (RIGS) in Cumbria -[2018-02-13T00:27:27.445] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:27.462] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:27.548] [INFO] cheese - inserting 1000 documents. first: Glease (Glee) and last: Gorgyra mocquerysii -[2018-02-13T00:27:27.577] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:27:27.662] [INFO] cheese - inserting 1000 documents. first: Somov (disambiguation) and last: Iassy-Chişinău Operation -[2018-02-13T00:27:27.683] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:27:27.749] [INFO] cheese - inserting 1000 documents. first: Adenotrophic viviparity and last: Zhang Xiaobin (footballer, born 1985) -[2018-02-13T00:27:27.767] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Battle of Britpop and last: Bangladesh University of Professionals -[2018-02-13T00:27:27.810] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:27.815] [INFO] cheese - inserting 1000 documents. first: Layline and last: Saint Mary's Regional Medical Center (Reno, Nevada) -[2018-02-13T00:27:27.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Lede section and last: Steven Silver (disambiguation) -[2018-02-13T00:27:27.837] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:27.862] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:27:27.865] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:27:27.914] [INFO] cheese - inserting 1000 documents. first: Jalan Tengku Ampuan Bariah and last: Archery at the 2004 Summer Paralympics – Men's individual W2 -[2018-02-13T00:27:27.936] [INFO] cheese - inserting 1000 documents. first: Category:1017 establishments by country and last: Wikipedia:WikiProject Directory/Description/WikiProject Intelligence Agency -[2018-02-13T00:27:27.963] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:27.986] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:27:28.053] [INFO] cheese - inserting 1000 documents. first: Steven Vidler (disambiguation) and last: Super Spike V'Ball/Nintendo World Cup (disambiguation) -[2018-02-13T00:27:28.072] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:27:28.232] [INFO] cheese - inserting 1000 documents. first: Super Sunday (disambiguation) and last: TVIS (disambiguation) -[2018-02-13T00:27:28.252] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:27:28.256] [INFO] cheese - inserting 1000 documents. first: Grand Theft Auto: Liberty City Stories Radio Stations and last: File:The Whole of the Moon Waterboys single.jpg -[2018-02-13T00:27:28.267] [INFO] cheese - inserting 1000 documents. first: Missouri - Nebraska Bell and last: Alexander Streatfeild -[2018-02-13T00:27:28.284] [INFO] cheese - inserting 1000 documents. first: HRH The Prince Philip and last: West Farms Square–East Tremont Avenue -[2018-02-13T00:27:28.290] [INFO] cheese - inserting 1000 documents. first: Category:Ecuador communications-related lists and last: Joy Laville -[2018-02-13T00:27:28.303] [INFO] cheese - inserting 1000 documents. first: Quévy and last: European Capital of Culture -[2018-02-13T00:27:28.313] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:28.311] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:28.331] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:28.331] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:27:28.433] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T00:27:28.493] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Interlanguage Links and last: P2P economic system -[2018-02-13T00:27:28.500] [INFO] cheese - inserting 1000 documents. first: TVL (disambiguation) and last: Termini (disambiguation) -[2018-02-13T00:27:28.523] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:28.566] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:27:28.681] [INFO] cheese - inserting 1000 documents. first: File:C.brunneus.png and last: University Medical Center Utrecht -[2018-02-13T00:27:28.688] [INFO] cheese - inserting 1000 documents. first: List of settlement houses in Chicago and last: ⡐ -[2018-02-13T00:27:28.717] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:28.721] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:28.724] [INFO] cheese - inserting 1000 documents. first: Tern Island (disambiguation) and last: Cardiff City F.C. season 1992–93 -[2018-02-13T00:27:28.747] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:27:28.786] [INFO] cheese - inserting 1000 documents. first: Template:Election dual-member and last: Wikipedia:Articles for deletion/Vandalismo -[2018-02-13T00:27:28.787] [INFO] cheese - inserting 1000 documents. first: Just Add Water and last: Vivien Savage -[2018-02-13T00:27:28.822] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:28.841] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:27:28.859] [INFO] cheese - inserting 1000 documents. first: ⡑ and last: Category:Jordan transport-related lists -[2018-02-13T00:27:28.877] [INFO] cheese - batch complete in: 0.155 secs -[2018-02-13T00:27:28.906] [INFO] cheese - inserting 1000 documents. first: The Man I Love (disambiguation) and last: Standing Rules of the United States Senate, Rule XXXV -[2018-02-13T00:27:28.924] [INFO] cheese - batch complete in: 0.177 secs -[2018-02-13T00:27:29.049] [INFO] cheese - inserting 1000 documents. first: File:Dora the Explorer logo.svg and last: 긏 -[2018-02-13T00:27:29.066] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:27:29.088] [INFO] cheese - inserting 1000 documents. first: Done and last: File:The Stuffs.jpg -[2018-02-13T00:27:29.131] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:27:29.136] [INFO] cheese - inserting 1000 documents. first: Thomas Crittenden (disambiguation) and last: Tomisław (disambiguation) -[2018-02-13T00:27:29.140] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Philosophy/Epistemology and last: White-Holman House -[2018-02-13T00:27:29.161] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:27:29.164] [INFO] cheese - inserting 1000 documents. first: Stonor (disambiguation) and last: Zurbahan -[2018-02-13T00:27:29.200] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:27:29.202] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:27:29.255] [INFO] cheese - inserting 1000 documents. first: Neuropsychology (journal) and last: 냅 -[2018-02-13T00:27:29.280] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:27:29.350] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Universal hacking corporation and last: Reserve Bank -[2018-02-13T00:27:29.379] [INFO] cheese - inserting 1000 documents. first: Tomki (disambiguation) and last: Tropical Storm Opal (disambiguation) -[2018-02-13T00:27:29.402] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:27:29.410] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:27:29.449] [INFO] cheese - inserting 1000 documents. first: 냆 and last: 둈 -[2018-02-13T00:27:29.465] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:27:29.499] [INFO] cheese - inserting 1000 documents. first: CONSOL Energy Park and last: Wikipedia:Articles for deletion/Guided self service -[2018-02-13T00:27:29.543] [INFO] cheese - inserting 1000 documents. first: File:Johnny von neumann sig.gif and last: File:Vertex new.jpg -[2018-02-13T00:27:29.547] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:27:29.582] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Ophelia (disambiguation) and last: UMN (disambiguation) -[2018-02-13T00:27:29.588] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:29.600] [INFO] cheese - batch complete in: 0.19 secs -[2018-02-13T00:27:29.622] [INFO] cheese - inserting 1000 documents. first: File:J.C. Deagan, Inc. Logo.png and last: Category:Producer, Artist -[2018-02-13T00:27:29.661] [INFO] cheese - inserting 1000 documents. first: Dario Fo and last: John MacBride -[2018-02-13T00:27:29.666] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:27:29.710] [INFO] cheese - inserting 1000 documents. first: Kolyshleyskaya and last: Kitikmeot Air -[2018-02-13T00:27:29.732] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T00:27:29.742] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:27:29.803] [INFO] cheese - inserting 1000 documents. first: Moorilla Vinyard and last: LANTIRN pods -[2018-02-13T00:27:29.828] [INFO] cheese - inserting 1000 documents. first: UMO (disambiguation) and last: Urtenen (disambiguation) -[2018-02-13T00:27:29.864] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:27:29.871] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:27:29.964] [INFO] cheese - inserting 1000 documents. first: File:Edge new.jpg and last: Inter curtea de arges -[2018-02-13T00:27:29.992] [INFO] cheese - inserting 1000 documents. first: Phi Lambda Alpha and last: Lirası -[2018-02-13T00:27:30.009] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:27:30.042] [INFO] cheese - inserting 1000 documents. first: Long–Evans rat and last: Dakota Jackson -[2018-02-13T00:27:30.059] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:27:30.103] [INFO] cheese - inserting 1000 documents. first: Zoveydi-ye Ramezan and last: 2012–13 Southern Illinois Salukis men's basketball team -[2018-02-13T00:27:30.104] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:30.105] [INFO] cheese - inserting 1000 documents. first: Urubamba (disambiguation) and last: P-51/F-6C Mustang -[2018-02-13T00:27:30.154] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:27:30.239] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:27:30.385] [INFO] cheese - inserting 1000 documents. first: SCUD missiles and last: George Kranky -[2018-02-13T00:27:30.416] [INFO] cheese - inserting 1000 documents. first: Via Nazionale (disambiguation) and last: WFAS (disambiguation) -[2018-02-13T00:27:30.437] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:27:30.453] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:27:30.487] [INFO] cheese - inserting 1000 documents. first: Schizoeaca and last: Diocletian window -[2018-02-13T00:27:30.507] [INFO] cheese - inserting 1000 documents. first: 1994 Northeast Louisiana Indians football team and last: 뚿 -[2018-02-13T00:27:30.532] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:27:30.549] [INFO] cheese - inserting 1000 documents. first: Jack Abbot (disambiguation) and last: Prof. Michael Beesley -[2018-02-13T00:27:30.532] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:27:30.590] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:30.638] [INFO] cheese - inserting 1000 documents. first: ORESKABAND and last: Hanover School District 28 -[2018-02-13T00:27:30.641] [INFO] cheese - inserting 1000 documents. first: WFBR (disambiguation) and last: Tambor huasca -[2018-02-13T00:27:30.665] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:27:30.681] [INFO] cheese - inserting 1000 documents. first: 뛀 and last: 멬 -[2018-02-13T00:27:30.692] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:27:30.696] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:27:30.817] [INFO] cheese - inserting 1000 documents. first: 멭 and last: 븟 -[2018-02-13T00:27:30.820] [INFO] cheese - inserting 1000 documents. first: Theodore Kollek and last: Fawzi Khalid Abdullah Fahad Al Odah -[2018-02-13T00:27:30.837] [INFO] cheese - batch complete in: 0.144 secs -[2018-02-13T00:27:30.869] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:27:30.871] [INFO] cheese - inserting 1000 documents. first: Relligion and last: Yankees—Mets rivalry -[2018-02-13T00:27:30.906] [INFO] cheese - inserting 1000 documents. first: John Gilroy and last: Category:1941 in Switzerland -[2018-02-13T00:27:30.919] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:30.927] [INFO] cheese - inserting 1000 documents. first: Template:Country data Nanyo and last: Category:2012–13 in Surinamese football -[2018-02-13T00:27:30.934] [INFO] cheese - inserting 1000 documents. first: Liam Gallagher and last: Loyalist feud -[2018-02-13T00:27:30.935] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:27:30.976] [INFO] cheese - inserting 1000 documents. first: 븠 and last: 쇈 -[2018-02-13T00:27:30.979] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:31.001] [INFO] cheese - batch complete in: 0.164 secs -[2018-02-13T00:27:31.030] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T00:27:31.146] [INFO] cheese - inserting 1000 documents. first: 쇉 and last: 앩 -[2018-02-13T00:27:31.160] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:27:31.190] [INFO] cheese - inserting 1000 documents. first: White Marsh (disambiguation) and last: Williamson River (disambiguation) -[2018-02-13T00:27:31.197] [INFO] cheese - inserting 1000 documents. first: Lion's Mane Jelly and last: Category:Rapid transit in the Philippines -[2018-02-13T00:27:31.215] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:27:31.240] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:31.262] [INFO] cheese - inserting 1000 documents. first: Helmuth Duckadam and last: Anton Felkel -[2018-02-13T00:27:31.308] [INFO] cheese - inserting 1000 documents. first: Category:19th-century establishments in Sudan and last: Demographics of Cleveland, Ohio -[2018-02-13T00:27:31.315] [INFO] cheese - inserting 1000 documents. first: Category:Disease-related deaths in Canada and last: Category:Africa politician templates -[2018-02-13T00:27:31.321] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:27:31.364] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:31.411] [INFO] cheese - inserting 1000 documents. first: Williamsport (disambiguation) and last: Sulaiman Shah II of Kedah -[2018-02-13T00:27:31.424] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:31.503] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:31.600] [INFO] cheese - inserting 1000 documents. first: 앪 and last: Wikipedia:Sockpuppet investigations/117.199.111.175/Archive -[2018-02-13T00:27:31.639] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:27:31.794] [INFO] cheese - inserting 1000 documents. first: De Fructibus Et Seminibus Plantarum and last: Holt Publishers -[2018-02-13T00:27:31.796] [INFO] cheese - inserting 1000 documents. first: X woman (disambiguation) and last: Take a Letter Mr. Jones -[2018-02-13T00:27:31.831] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:27:31.855] [INFO] cheese - inserting 1000 documents. first: Hydrocarbon classification and last: Robert Spitzer -[2018-02-13T00:27:31.890] [INFO] cheese - inserting 1000 documents. first: Friuli-Venezia Giulia regional election, 2008 and last: FL 7 -[2018-02-13T00:27:31.888] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:27:31.941] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:31.947] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:27:31.958] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Tanzania by decade and last: Eat-the-World -[2018-02-13T00:27:32.055] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:27:32.139] [INFO] cheese - inserting 1000 documents. first: Selçuk Dereli and last: Vietjet Aviation Join Stock Company -[2018-02-13T00:27:32.191] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:32.233] [INFO] cheese - inserting 1000 documents. first: ZPR (disambiguation) and last: Łaszewo (disambiguation) -[2018-02-13T00:27:32.266] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:32.378] [INFO] cheese - inserting 1000 documents. first: Chevy subdivision and last: File:Watchmylips.jpg -[2018-02-13T00:27:32.395] [INFO] cheese - inserting 1000 documents. first: Convair 600 and last: 109th Regiment of Foot (Bombay Infantry) -[2018-02-13T00:27:32.427] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:32.439] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:27:32.547] [INFO] cheese - inserting 1000 documents. first: Coat of arms of New York and last: Yitschak Rabin -[2018-02-13T00:27:32.614] [INFO] cheese - inserting 1000 documents. first: Canada Scoops and last: Jonathan Browning (designer) -[2018-02-13T00:27:32.662] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:27:32.664] [INFO] cheese - inserting 1000 documents. first: Template:Basketball kit and last: Template:Independent Nationalist/meta/color -[2018-02-13T00:27:32.699] [INFO] cheese - batch complete in: 1.669 secs -[2018-02-13T00:27:32.708] [INFO] cheese - inserting 1000 documents. first: Vietjet Aviation Joint Stock Company and last: List of Azerbaijani writers -[2018-02-13T00:27:32.712] [INFO] cheese - inserting 1000 documents. first: Ławica (disambiguation) and last: File:Ksee24.jpg -[2018-02-13T00:27:32.731] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:27:32.813] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:32.832] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:27:32.944] [INFO] cheese - inserting 1000 documents. first: Bigutar and last: Pelamis Wave Power -[2018-02-13T00:27:33.047] [INFO] cheese - inserting 1000 documents. first: String Instrument Repertoire and last: Janssone van Dornicke -[2018-02-13T00:27:33.068] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:27:33.097] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:27:33.360] [INFO] cheese - inserting 1000 documents. first: Punjab Youth Festival and last: Category:Lists by city in the Philippines -[2018-02-13T00:27:33.404] [INFO] cheese - inserting 1000 documents. first: Template:Independent Nationalist/meta/shortname and last: Hearst Communications, Inc -[2018-02-13T00:27:33.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Yannis Spathas and last: List of Lua IDEs -[2018-02-13T00:27:33.430] [INFO] cheese - inserting 1000 documents. first: Chalalán Ecolodge and last: San Javier Municipality, Cercado -[2018-02-13T00:27:33.435] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:27:33.497] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:27:33.505] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:27:33.535] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:27:33.547] [INFO] cheese - inserting 1000 documents. first: Nicholas Paspaley Senior and last: Seikichi Odo -[2018-02-13T00:27:33.593] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:27:33.652] [INFO] cheese - inserting 1000 documents. first: Buck dancing and last: Category:Carlism -[2018-02-13T00:27:33.691] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:27:33.848] [INFO] cheese - inserting 1000 documents. first: Chhitauna and last: Uinskii Raion -[2018-02-13T00:27:33.869] [INFO] cheese - inserting 1000 documents. first: George M. Williamson (architect) and last: Padmapani Acharya -[2018-02-13T00:27:33.878] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:27:33.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of unusual animal anecdotes and last: Heather Ryan (Playboy model) -[2018-02-13T00:27:33.920] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:33.926] [INFO] cheese - inserting 1000 documents. first: List of C Sharp IDEs and last: Concern (organisation) -[2018-02-13T00:27:33.942] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:27:33.990] [INFO] cheese - inserting 1000 documents. first: Stirling County RFC and last: Mitcham Library -[2018-02-13T00:27:33.992] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:27:34.048] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:27:34.085] [INFO] cheese - inserting 1000 documents. first: Ahmed Shukairy and last: Mathematicians -[2018-02-13T00:27:34.144] [INFO] cheese - inserting 1000 documents. first: Daizona pacifica and last: Lukinić Brdo -[2018-02-13T00:27:34.159] [INFO] cheese - batch complete in: 1.46 secs -[2018-02-13T00:27:34.202] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:27:34.254] [INFO] cheese - inserting 1000 documents. first: Veritas Music Entertainment, Inc. and last: Capri, Campania -[2018-02-13T00:27:34.304] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:27:34.332] [INFO] cheese - inserting 1000 documents. first: Niels Werring and last: Portal:Canada/Tab1 -[2018-02-13T00:27:34.353] [INFO] cheese - inserting 1000 documents. first: Category:Lists of companies of the Czech Republic and last: Musculus psoas major -[2018-02-13T00:27:34.373] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:27:34.394] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:34.492] [INFO] cheese - inserting 1000 documents. first: Serrano-class destroyer and last: Eastwood, South Australia -[2018-02-13T00:27:34.535] [INFO] cheese - inserting 1000 documents. first: File:Ambo Mineral Water logo.jpg and last: 2015-16 Minnesota Wild season -[2018-02-13T00:27:34.545] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:27:34.599] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:27:34.612] [INFO] cheese - inserting 1000 documents. first: The God Of Cookery and last: Department of Premier and Cabinet (New South Wales) -[2018-02-13T00:27:34.669] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:27:34.745] [INFO] cheese - inserting 1000 documents. first: St. John (store) and last: List of Hospitals in Macau -[2018-02-13T00:27:34.752] [INFO] cheese - inserting 1000 documents. first: 1979 Alpine Skiing World Cup – Men's Downhill and last: Wikipedia:Articles for deletion/Mi Propio Auto -[2018-02-13T00:27:34.787] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:27:34.792] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:27:34.812] [INFO] cheese - inserting 1000 documents. first: Shrenika and last: Wikipedia:Reference desk/Archives/Mathematics/2008 October 14 -[2018-02-13T00:27:34.871] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:27:34.950] [INFO] cheese - inserting 1000 documents. first: File:Logo Dzair TV.png and last: Dichomeris lotellus -[2018-02-13T00:27:34.995] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:27:35.085] [INFO] cheese - inserting 1000 documents. first: Erindale, South Australia and last: Flixton -[2018-02-13T00:27:35.130] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:27:35.139] [INFO] cheese - inserting 1000 documents. first: Peck NW2 and last: Wikipedia:MSIE Tools -[2018-02-13T00:27:35.178] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:35.225] [INFO] cheese - inserting 1000 documents. first: Ventaquemada and last: Equity feminists -[2018-02-13T00:27:35.253] [INFO] cheese - inserting 1000 documents. first: William Mareshall and last: Stare Garnowo -[2018-02-13T00:27:35.278] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:27:35.282] [INFO] cheese - inserting 1000 documents. first: Description Logic and last: Safari -[2018-02-13T00:27:35.299] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:27:35.337] [INFO] cheese - inserting 1000 documents. first: Salim Ghazal and last: Ningerum, Papua New Guinea -[2018-02-13T00:27:35.362] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T00:27:35.430] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:27:35.466] [INFO] cheese - inserting 1000 documents. first: Category:German cameras and last: Griswold Home Care -[2018-02-13T00:27:35.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Opera tools and last: North China plain -[2018-02-13T00:27:35.548] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:27:35.591] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:27:35.598] [INFO] cheese - inserting 1000 documents. first: Former Yugoslav Republic of Macedonia - Denar and last: Homologoumena -[2018-02-13T00:27:35.634] [INFO] cheese - inserting 1000 documents. first: Roosevelt Hotel (New Orleans) and last: A Most Peculiar Man -[2018-02-13T00:27:35.642] [INFO] cheese - inserting 1000 documents. first: Andrew Lahde and last: Murowaniec, Masovian Voivodeship -[2018-02-13T00:27:35.657] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:27:35.665] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:35.688] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:27:35.760] [INFO] cheese - inserting 1000 documents. first: Mait and last: Panzer Division Tatra -[2018-02-13T00:27:35.804] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:35.932] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Vbabey and last: Wikipedia:Sockpuppet investigations/Almightyvegeta/Archive -[2018-02-13T00:27:35.950] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Consumer Reports/Medical education and last: Rodeo (Travis Scott album) -[2018-02-13T00:27:35.964] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:27:36.016] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:27:36.038] [INFO] cheese - inserting 1000 documents. first: Nowa Pułapina and last: Tim the Tiny Horse at Large -[2018-02-13T00:27:36.086] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:27:36.118] [INFO] cheese - inserting 1000 documents. first: Joxer Goes to Stuttgart and last: Self-facilitating media node -[2018-02-13T00:27:36.125] [INFO] cheese - inserting 1000 documents. first: Ledger Hill and last: Creative Music Studio -[2018-02-13T00:27:36.132] [INFO] cheese - inserting 1000 documents. first: Typhoon Namtheun and last: Leo Stepanyan -[2018-02-13T00:27:36.169] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:36.181] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:27:36.205] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:27:36.386] [INFO] cheese - inserting 1000 documents. first: List of Connecticut breweries and last: Hive mind (disambiguation) -[2018-02-13T00:27:36.402] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in New Spain by century and last: Kuzhithurai railway station -[2018-02-13T00:27:36.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (anglicization) and last: Primitive root modulo n -[2018-02-13T00:27:36.452] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:27:36.470] [INFO] cheese - inserting 1000 documents. first: Grzbiet Lasocki and last: Integral Nactiv -[2018-02-13T00:27:36.499] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:27:36.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Planet Recordz and last: Whitaker College of Health Sciences -[2018-02-13T00:27:36.536] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:36.544] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T00:27:36.569] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:27:36.684] [INFO] cheese - inserting 1000 documents. first: 281st Security Division (Wehrmacht) and last: Petionville, Haiti -[2018-02-13T00:27:36.729] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:27:36.774] [INFO] cheese - inserting 1000 documents. first: Kaitarō Hasegawa and last: A man for all islands -[2018-02-13T00:27:36.820] [INFO] cheese - inserting 1000 documents. first: File:Resurrection City Washington D.C. 1968.jpg and last: Wikipedia:Articles for deletion/Lokanatham Nandikeswararao -[2018-02-13T00:27:36.855] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:27:36.885] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:27:36.901] [INFO] cheese - inserting 1000 documents. first: Suchindram railway station and last: Antonella (TV series) -[2018-02-13T00:27:36.925] [INFO] cheese - inserting 1000 documents. first: Category:Ahva politicians and last: Wikipedia:WikiProject Spam/LinkReports/pfculture.net -[2018-02-13T00:27:36.946] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:27:36.971] [INFO] cheese - inserting 1000 documents. first: Natomas Men's Professional Tennis Tournament and last: List of articles about Ontario CCF/NDP members -[2018-02-13T00:27:36.986] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:27:37.046] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:37.241] [INFO] cheese - inserting 1000 documents. first: IPS Panel and last: Cotton Club Casino -[2018-02-13T00:27:37.276] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:27:37.295] [INFO] cheese - inserting 1000 documents. first: John Borstlap and last: Category:1997–98 in Caribbean football by country -[2018-02-13T00:27:37.320] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blue Prism and last: Labaratorija zvuka -[2018-02-13T00:27:37.336] [INFO] cheese - inserting 1000 documents. first: Situated knowledge and last: Luis de Urquijo -[2018-02-13T00:27:37.335] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:37.368] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the Middle East and last: Nokia 2760 -[2018-02-13T00:27:37.373] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:27:37.384] [INFO] cheese - inserting 1000 documents. first: Category:Palladian Revival architecture in California and last: Sylwia Ejdys -[2018-02-13T00:27:37.427] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:27:37.437] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:37.503] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:37.679] [INFO] cheese - inserting 1000 documents. first: File:MediaCorp okto.jpg and last: List of Ambassadors of Russia to Côte d'Ivoire -[2018-02-13T00:27:37.697] [INFO] cheese - inserting 1000 documents. first: Category:1998–99 in Caribbean football by country and last: File:Dami Im - Smile.jpg -[2018-02-13T00:27:37.764] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:27:37.763] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:27:37.815] [INFO] cheese - inserting 1000 documents. first: Press and last: Gusto (album) -[2018-02-13T00:27:37.937] [INFO] cheese - inserting 1000 documents. first: Zolotaya Dolina and last: Lukas Wooller -[2018-02-13T00:27:37.939] [INFO] cheese - batch complete in: 1.388 secs -[2018-02-13T00:27:37.974] [INFO] cheese - inserting 1000 documents. first: Tatiana Golikova and last: VT-04 -[2018-02-13T00:27:37.984] [INFO] cheese - inserting 1000 documents. first: Code of Laws of the United States of America and last: Template:Infobox Six Nations Championship 2 -[2018-02-13T00:27:38.022] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:27:38.049] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:38.054] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:27:38.074] [INFO] cheese - inserting 1000 documents. first: Template:Shaw Communications and last: Madeleine Bejart -[2018-02-13T00:27:38.165] [INFO] cheese - inserting 1000 documents. first: Sabit Uka and last: Wikipedia:Sockpuppet investigations/YourMamasWeightIsOffTheScale -[2018-02-13T00:27:38.171] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:27:38.200] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:27:38.269] [INFO] cheese - inserting 1000 documents. first: List of colonial governors of Côte d'Ivoire and last: 1984 U.S. Pro Indoor – Doubles -[2018-02-13T00:27:38.322] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:27:38.580] [INFO] cheese - inserting 1000 documents. first: Resonance Records and last: Category:2010 in table tennis -[2018-02-13T00:27:38.590] [INFO] cheese - inserting 1000 documents. first: VT-06 and last: File:Equilibrium sign 15.png -[2018-02-13T00:27:38.676] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:38.677] [INFO] cheese - inserting 1000 documents. first: List of Mississippi state highways and last: Category:Albinism -[2018-02-13T00:27:38.688] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:27:38.718] [INFO] cheese - inserting 1000 documents. first: Karen Strong-Hearth and last: Category:2012–13 Oberliga -[2018-02-13T00:27:38.772] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:27:38.813] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:27:38.823] [INFO] cheese - inserting 1000 documents. first: Armande Gresinde Claire Elizabeth Béjart and last: Pocock Racing Shells -[2018-02-13T00:27:38.903] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:27:38.956] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2004 Summer Paralympics – Women's 100 metre breaststroke SB5 and last: Category:Liberia communications-related lists -[2018-02-13T00:27:38.999] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:27:39.034] [INFO] cheese - inserting 1000 documents. first: Josefina Valencia Muñoz and last: Agboville, Ivory Coast -[2018-02-13T00:27:39.081] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:27:39.159] [INFO] cheese - inserting 1000 documents. first: Samuel Tyszelman and last: Category:Journalists from North Dakota -[2018-02-13T00:27:39.177] [INFO] cheese - inserting 1000 documents. first: Category:Polish Roman Catholic saints and last: Show Boat (book) -[2018-02-13T00:27:39.197] [INFO] cheese - inserting 1000 documents. first: Michael Horton (actor) and last: Reginaldo de Santana Marilia -[2018-02-13T00:27:39.206] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:27:39.223] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:27:39.233] [INFO] cheese - inserting 1000 documents. first: L'Hopital's rule and last: 1921 in literature -[2018-02-13T00:27:39.245] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:39.297] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T00:27:39.314] [INFO] cheese - inserting 1000 documents. first: File:DonaldWolfit.jpg and last: Wikipedia:Reference desk/Archives/Language/2012 October 16 -[2018-02-13T00:27:39.355] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:39.404] [INFO] cheese - inserting 1000 documents. first: Emma Barton and last: Jolinar's Memories -[2018-02-13T00:27:39.456] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:39.534] [INFO] cheese - inserting 1000 documents. first: Category:Bad Taste Records albums and last: Aaron London -[2018-02-13T00:27:39.575] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:27:39.581] [INFO] cheese - inserting 1000 documents. first: Cuticle (hair) and last: Szwelice -[2018-02-13T00:27:39.583] [INFO] cheese - inserting 1000 documents. first: 1995 Peters International – Men's Singles and last: Yao Ziyi -[2018-02-13T00:27:39.600] [INFO] cheese - inserting 1000 documents. first: Iivari Kyykoski and last: List of Italian films of the 1950s -[2018-02-13T00:27:39.617] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:27:39.632] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:39.658] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:27:39.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2012 October 15 and last: Category:Lists of organisations based in Ethiopia -[2018-02-13T00:27:39.803] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:27:39.894] [INFO] cheese - inserting 1000 documents. first: God Loves, Man Kills and last: Breeks -[2018-02-13T00:27:39.941] [INFO] cheese - inserting 1000 documents. first: Nduduzo Makhathini and last: Template:Turkish general election, June 2015 -[2018-02-13T00:27:39.941] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:39.957] [INFO] cheese - inserting 1000 documents. first: Nelson Borges (footballer, born 1992) and last: Palincăria River -[2018-02-13T00:27:39.973] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:40.002] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:27:40.027] [INFO] cheese - inserting 1000 documents. first: Tłucznice and last: Marianowo, Gmina Szydłowo -[2018-02-13T00:27:40.062] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:27:40.078] [INFO] cheese - inserting 1000 documents. first: 1903 New York Highlanders season and last: Wikipedia:Requests for arbitration/Zeq-Zero0000/Workshop -[2018-02-13T00:27:40.117] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:27:40.119] [INFO] cheese - inserting 1000 documents. first: 1900 in literature and last: Welly Wanging -[2018-02-13T00:27:40.122] [INFO] cheese - inserting 1000 documents. first: Trochulus ataxiacus and last: Chemicals production -[2018-02-13T00:27:40.154] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:27:40.172] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:27:40.278] [INFO] cheese - inserting 1000 documents. first: Diplôme d'Études Supérieur Approfondies and last: Paulin Demski -[2018-02-13T00:27:40.305] [INFO] cheese - inserting 1000 documents. first: Gandey block and last: Category:Sport in Burkina Faso -[2018-02-13T00:27:40.311] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:27:40.321] [INFO] cheese - inserting 1000 documents. first: Zarnich and last: Wikipedia:Good article reassessment/Lynton K. Caldwell/1 -[2018-02-13T00:27:40.351] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:27:40.371] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:27:40.410] [INFO] cheese - inserting 1000 documents. first: Młodynin and last: Ruda, Ostrów Mazowiecka County -[2018-02-13T00:27:40.415] [INFO] cheese - inserting 1000 documents. first: Sorghum elegans and last: Hop C virus -[2018-02-13T00:27:40.436] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:27:40.442] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:27:40.537] [INFO] cheese - inserting 1000 documents. first: Wetwang railway station and last: Wikipedia:Articles for deletion/The Cosmic Circus -[2018-02-13T00:27:40.583] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:27:40.663] [INFO] cheese - inserting 1000 documents. first: Lottery(2009 film) and last: Draft:The Ballad of Yoel Moshe Salomon -[2018-02-13T00:27:40.680] [INFO] cheese - inserting 1000 documents. first: Jari kuosma and last: Teresa Calvesi -[2018-02-13T00:27:40.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/latraceclaraz.org and last: Template:EventsAt1960SummerParalympics -[2018-02-13T00:27:40.698] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:27:40.709] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:27:40.727] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:27:40.775] [INFO] cheese - inserting 1000 documents. first: Ian Melady and last: Senkele Wildlife Sanctuary -[2018-02-13T00:27:40.787] [INFO] cheese - inserting 1000 documents. first: 2003 Torneo Godó – Singles and last: Category:Lists of biota of South America -[2018-02-13T00:27:40.818] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:40.825] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:40.933] [INFO] cheese - inserting 1000 documents. first: List of Chitpavans and last: Cray X2 -[2018-02-13T00:27:40.978] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:27:41.065] [INFO] cheese - inserting 1000 documents. first: The Promised Land (2015 album) and last: Sergei Gladyshev -[2018-02-13T00:27:41.077] [INFO] cheese - inserting 1000 documents. first: Pack trip and last: Wikipedia:Suspected sock puppets/vyaghradhataki -[2018-02-13T00:27:41.096] [INFO] cheese - inserting 1000 documents. first: 2012 in South Africa and last: Wikipedia:Articles for deletion/LimeLife (2nd nomination) -[2018-02-13T00:27:41.099] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:27:41.112] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:41.138] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:27:41.148] [INFO] cheese - inserting 1000 documents. first: File:COLL-.JPG and last: Category:People of the Ottoman–Saudi War -[2018-02-13T00:27:41.155] [INFO] cheese - inserting 1000 documents. first: List of Portuguese and last: National Drug Code -[2018-02-13T00:27:41.206] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:27:41.254] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:27:41.334] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The man with the smallest penis in existence and the microscope technician who loved him and last: L.O.V.E -[2018-02-13T00:27:41.386] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:27:41.444] [INFO] cheese - inserting 1000 documents. first: File:Shchelkino power station.JPG and last: Snow Chicken -[2018-02-13T00:27:41.528] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:27:41.534] [INFO] cheese - inserting 1000 documents. first: Primus National Soccer League and last: Xerocrassa cretica -[2018-02-13T00:27:41.569] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:27:41.588] [INFO] cheese - inserting 1000 documents. first: Jadis et naguère and last: SR-823 -[2018-02-13T00:27:41.629] [INFO] cheese - inserting 1000 documents. first: Sergey Gladyshev and last: Jonathan Robinson (politician) -[2018-02-13T00:27:41.631] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:27:41.699] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:27:41.773] [INFO] cheese - inserting 1000 documents. first: Emanoil Porumbaru and last: New York State Route 971J -[2018-02-13T00:27:41.827] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:27:41.858] [INFO] cheese - inserting 1000 documents. first: MWSD and last: Wikipedia:Articles for deletion/World Without Zionism -[2018-02-13T00:27:41.901] [INFO] cheese - inserting 1000 documents. first: Indian-Britons and last: Music in Elizabethan Era -[2018-02-13T00:27:41.930] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:41.952] [INFO] cheese - inserting 1000 documents. first: Eby Shoe Corporation and last: Elena Bonfanti -[2018-02-13T00:27:41.959] [INFO] cheese - inserting 1000 documents. first: Tommy West (Singer/Producer) and last: Nyaa~nyaa -[2018-02-13T00:27:41.980] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:27:42.005] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:27:42.029] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:27:42.104] [INFO] cheese - inserting 1000 documents. first: Proto-Zhou and last: Template:S-line/MBTA right/Lexington -[2018-02-13T00:27:42.141] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:27:42.200] [INFO] cheese - inserting 1000 documents. first: God Willin' & the Creek Don't Rise and last: Wikipedia:Articles for deletion/Rob Hotchkiss -[2018-02-13T00:27:42.243] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:27:42.322] [INFO] cheese - inserting 1000 documents. first: Central Reservations and last: National Action Party (Turkey) -[2018-02-13T00:27:42.349] [INFO] cheese - inserting 1000 documents. first: Peritoneal fluid excess and last: La Mutualité -[2018-02-13T00:27:42.364] [INFO] cheese - inserting 1000 documents. first: Rostki (Ostrołęka County) and last: Anna van Rijn College -[2018-02-13T00:27:42.371] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:27:42.392] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:27:42.404] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:27:42.423] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2008 Summer Paralympics – Men's individual pursuit (LC 1) and last: Portal:Southern Levant -[2018-02-13T00:27:42.447] [INFO] cheese - inserting 1000 documents. first: Young Marble Giants and last: Notable Irish buildings -[2018-02-13T00:27:42.468] [INFO] cheese - inserting 1000 documents. first: 25–35 Power Street and last: African claw-toed frog -[2018-02-13T00:27:42.487] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:27:42.518] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:27:42.529] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T00:27:42.624] [INFO] cheese - inserting 1000 documents. first: Over The Top and last: Category:Songs with lyrics by Roma Ryan -[2018-02-13T00:27:42.666] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:27:42.722] [INFO] cheese - inserting 1000 documents. first: Template:Volcano project and last: U.S. Air Force Surgeon General -[2018-02-13T00:27:42.746] [INFO] cheese - inserting 1000 documents. first: Cookie (singer) and last: Bisoro -[2018-02-13T00:27:42.760] [INFO] cheese - inserting 1000 documents. first: Fabian von Schlabrendorff and last: Revival (Gillian Welch album) -[2018-02-13T00:27:42.765] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:42.796] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:42.820] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:27:42.825] [INFO] cheese - inserting 1000 documents. first: Template:2015–16 in Dutch football and last: Eloquent ORM -[2018-02-13T00:27:42.894] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:27:43.039] [INFO] cheese - inserting 1000 documents. first: Maulvi Abdul Haleem and last: Illinois Gov. -[2018-02-13T00:27:43.094] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:27:43.202] [INFO] cheese - inserting 1000 documents. first: Death is Glory...Now and last: Suddenly Yours -[2018-02-13T00:27:43.249] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:27:43.307] [INFO] cheese - inserting 1000 documents. first: Category:1820s in the Portuguese Empire and last: Irene Tobar -[2018-02-13T00:27:43.309] [INFO] cheese - inserting 1000 documents. first: Christoph Dugarry and last: Hazard identification -[2018-02-13T00:27:43.330] [INFO] cheese - inserting 1000 documents. first: Tank Beat and last: Bethany Memorial Chapel -[2018-02-13T00:27:43.340] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:27:43.395] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:27:43.427] [INFO] cheese - inserting 1000 documents. first: Dagelma and last: Wikipedia:Articles for deletion/A&A Global Industries -[2018-02-13T00:27:43.429] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:27:43.489] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:27:43.570] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2012-10-28 and last: Physcomitrium patens -[2018-02-13T00:27:43.630] [INFO] cheese - inserting 1000 documents. first: National Chamber of Commerce and last: Faaa, French Polynesia -[2018-02-13T00:27:43.654] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:27:43.685] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:43.712] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 15th century in Portuguese India and last: Pursuit (1972 film) -[2018-02-13T00:27:43.719] [INFO] cheese - inserting 1000 documents. first: Lents, Oregon and last: List of Registered Historic Places in Gloucester County, New Jersey -[2018-02-13T00:27:43.752] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:27:43.760] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:27:43.819] [INFO] cheese - inserting 1000 documents. first: Category:1912 in chess and last: Nebo, Queensland -[2018-02-13T00:27:43.823] [INFO] cheese - inserting 1000 documents. first: Byelorussian Soviet Socialist Republic and last: Honor Lost: Love and Death in Modern-Day Jordan -[2018-02-13T00:27:43.858] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:43.892] [INFO] cheese - batch complete in: 1.362 secs -[2018-02-13T00:27:43.942] [INFO] cheese - inserting 1000 documents. first: Sam H. Lawson Middle School and last: Ilya Mashkov -[2018-02-13T00:27:44.000] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:27:44.001] [INFO] cheese - inserting 1000 documents. first: Genthia patens and last: Papuan rugby union team -[2018-02-13T00:27:44.055] [INFO] cheese - inserting 1000 documents. first: Ralph Kerr Maxwell and last: W38BQ -[2018-02-13T00:27:44.064] [INFO] cheese - inserting 1000 documents. first: Template:Mossad Directors and last: Field dressing deer -[2018-02-13T00:27:44.069] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:27:44.119] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:27:44.125] [INFO] cheese - inserting 1000 documents. first: Duder's Beach and last: Wikipedia:Articles for deletion/Blanche Devereaux -[2018-02-13T00:27:44.155] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:27:44.189] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:44.326] [INFO] cheese - inserting 1000 documents. first: 2008 in art and last: Decla-Bioscop -[2018-02-13T00:27:44.363] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:44.433] [INFO] cheese - inserting 1000 documents. first: Greenbank, West Virginia and last: Todd Greene -[2018-02-13T00:27:44.484] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:27:44.509] [INFO] cheese - inserting 1000 documents. first: File:Coroner - Grin.jpg and last: Osmar Donizete Cândido -[2018-02-13T00:27:44.521] [INFO] cheese - inserting 1000 documents. first: Papua New Guinean national rugby union team and last: Category:Commercial buildings completed in 1964 -[2018-02-13T00:27:44.525] [INFO] cheese - inserting 1000 documents. first: Teiya Ichiryūsai and last: Wikipedia:Featured article candidates/Murder of Dwayne Jones/archive2 -[2018-02-13T00:27:44.550] [INFO] cheese - inserting 1000 documents. first: Sawicki and last: Internetnews.com -[2018-02-13T00:27:44.556] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:44.562] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:27:44.625] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:27:44.685] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:27:44.833] [INFO] cheese - inserting 1000 documents. first: Jessica simpson (album) and last: Teague Middle School -[2018-02-13T00:27:44.870] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:44.886] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in Dutch Mauritius by decade and last: Category:1630 establishments by continent -[2018-02-13T00:27:44.912] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:44.970] [INFO] cheese - inserting 1000 documents. first: Rosvalla IP and last: Gnophria ceramensis -[2018-02-13T00:27:45.007] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:27:45.054] [INFO] cheese - inserting 1000 documents. first: Dome Creek, British Columbia and last: Chodkowo-Działki -[2018-02-13T00:27:45.084] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and manga/Anniversaries/June/June 25 and last: Hubert Poelz -[2018-02-13T00:27:45.090] [INFO] cheese - inserting 1000 documents. first: Pullquotes and last: ROSSEM -[2018-02-13T00:27:45.092] [INFO] cheese - inserting 1000 documents. first: List of tunnels in the Netherlands and last: Einstein shift -[2018-02-13T00:27:45.108] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:27:45.159] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:45.165] [INFO] cheese - inserting 1000 documents. first: Category:1630 by continent and last: Category:8th-century disestablishments in the Maya civilization -[2018-02-13T00:27:45.174] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:27:45.214] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:27:45.214] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T00:27:45.363] [INFO] cheese - inserting 1000 documents. first: Ace (truck) and last: Matt Brandstein -[2018-02-13T00:27:45.446] [INFO] cheese - inserting 1000 documents. first: Lord Southwood and last: Category:FIU Panthers men's basketball seasons -[2018-02-13T00:27:45.459] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:27:45.540] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:27:45.564] [INFO] cheese - inserting 1000 documents. first: Cieśle, Gmina Bodzanów and last: Kuchary Żydowskie -[2018-02-13T00:27:45.599] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:27:45.704] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2015 June 12 and last: 渡部秀 -[2018-02-13T00:27:45.739] [INFO] cheese - inserting 1000 documents. first: Bradley greive and last: USCGC Yamacraw (WLB-333) -[2018-02-13T00:27:45.755] [INFO] cheese - inserting 1000 documents. first: Achimenes and last: Gamliel I -[2018-02-13T00:27:45.758] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:27:45.834] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:27:45.851] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:27:46.034] [INFO] cheese - inserting 1000 documents. first: Milewo, Płońsk County and last: Paul Warwick (rugby player) -[2018-02-13T00:27:46.060] [INFO] cheese - inserting 1000 documents. first: Musculus biceps brachii and last: Little Raven (Arapaho leader) -[2018-02-13T00:27:46.162] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:46.193] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:27:46.195] [INFO] cheese - inserting 1000 documents. first: Rick Down and last: Peter Lundin -[2018-02-13T00:27:46.255] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:27:46.265] [INFO] cheese - inserting 1000 documents. first: Pays basque français and last: Pakistanis in Sharjah -[2018-02-13T00:27:46.323] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:27:46.414] [INFO] cheese - inserting 1000 documents. first: Chile miners and last: Armée de Liberation de Zgharta -[2018-02-13T00:27:46.503] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:27:46.633] [INFO] cheese - inserting 1000 documents. first: Poniaty-Cibory and last: Crissey Field State Recreation Site -[2018-02-13T00:27:46.639] [INFO] cheese - inserting 1000 documents. first: Case shot and last: Category:Airports in Utah -[2018-02-13T00:27:46.680] [INFO] cheese - inserting 1000 documents. first: Abitar and last: 2005 Fed Cup Europe/Africa Zone Group II – Pool B -[2018-02-13T00:27:46.708] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:27:46.688] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:27:46.796] [INFO] cheese - inserting 1000 documents. first: Clyde Tolson and last: Neanderthals Bandits and Farmers -[2018-02-13T00:27:46.802] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:27:46.810] [INFO] cheese - inserting 1000 documents. first: Ilamai Oonjal Aadukirathu and last: Tarkan Mustafa -[2018-02-13T00:27:46.879] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:27:46.885] [INFO] cheese - inserting 1000 documents. first: 2025 Jaane Kya Hoga Aage and last: State House Historic District -[2018-02-13T00:27:46.965] [INFO] cheese - batch complete in: 1.751 secs -[2018-02-13T00:27:47.015] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:27:47.180] [INFO] cheese - inserting 1000 documents. first: Jungle Love (Steve Miller Band song) and last: Lenggong-Sauk Bypass -[2018-02-13T00:27:47.262] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:27:47.351] [INFO] cheese - inserting 1000 documents. first: Don't Rush (song) and last: 1972 Queen's Club Championships – Men's Singles -[2018-02-13T00:27:47.381] [INFO] cheese - inserting 1000 documents. first: 1543 in art and last: 2005 UK Championship (snooker) -[2018-02-13T00:27:47.389] [INFO] cheese - inserting 1000 documents. first: IT Baseline Protection Catalogs and last: Emil Rilke -[2018-02-13T00:27:47.422] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:27:47.429] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:27:47.460] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:27:47.485] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Nekima Levy-Pounds and last: Rosendahl-Holtwick station -[2018-02-13T00:27:47.526] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:47.549] [INFO] cheese - inserting 1000 documents. first: Orfeo ToolBox and last: Xīnjīapō Mínghángjú -[2018-02-13T00:27:47.586] [INFO] cheese - inserting 1000 documents. first: WWUS 104.1 and last: Meinhart de Schomberg, 3rd Duke of Schomberg -[2018-02-13T00:27:47.593] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:47.646] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:27:47.765] [INFO] cheese - inserting 1000 documents. first: Sheykh Saleh, Shush and last: Wikipedia:Sockpuppet investigations/BStudent0 -[2018-02-13T00:27:47.785] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (musicians) articles by quality/73 and last: Category:Slovenian musicians by genre -[2018-02-13T00:27:47.800] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:27:47.802] [INFO] cheese - inserting 1000 documents. first: Edith New and last: Crepidium glaucum -[2018-02-13T00:27:47.830] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:47.832] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:27:47.867] [INFO] cheese - inserting 1000 documents. first: Classic Period and last: Wilcox Central High School -[2018-02-13T00:27:47.908] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:27:47.944] [INFO] cheese - inserting 1000 documents. first: Archimede Morleo and last: Third Creek Presbyterian Church and Cemetery -[2018-02-13T00:27:47.944] [INFO] cheese - inserting 1000 documents. first: WBO and last: File:BostonBoston.jpg -[2018-02-13T00:27:47.988] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:27:47.996] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:27:48.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Capitalistroadster and last: Wikipedia:WPPun -[2018-02-13T00:27:48.146] [INFO] cheese - inserting 1000 documents. first: Percilla, Texas and last: Beef grade scale -[2018-02-13T00:27:48.151] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:48.207] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:27:48.219] [INFO] cheese - inserting 1000 documents. first: Crepis chamaephylla and last: 1993 Pacific-10 Conference football season -[2018-02-13T00:27:48.221] [INFO] cheese - inserting 1000 documents. first: Society of business practitioners and last: Country-club Republican -[2018-02-13T00:27:48.267] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:27:48.277] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:48.311] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2007 April 21 and last: Category:San Francisco Fog (MISL) players -[2018-02-13T00:27:48.359] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:27:48.387] [INFO] cheese - inserting 1000 documents. first: HomeAway and last: Agustín Fernández Muñoz, Duke of Riansares -[2018-02-13T00:27:48.433] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:48.513] [INFO] cheese - inserting 1000 documents. first: Beef grading and last: Middlemore Train Station -[2018-02-13T00:27:48.546] [INFO] cheese - inserting 1000 documents. first: Category:Components and last: Category:Amphitheaters -[2018-02-13T00:27:48.548] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:27:48.556] [INFO] cheese - inserting 1000 documents. first: Draft:After the Ball (film) and last: Bucknell Bison women's soccer -[2018-02-13T00:27:48.589] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:48.596] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:27:48.605] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Wiśniew and last: Autostrada A5 -[2018-02-13T00:27:48.661] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:48.804] [INFO] cheese - inserting 1000 documents. first: The Chauffeur Tells a Secret (Dynasty) and last: Two-Double-Seven -[2018-02-13T00:27:48.876] [INFO] cheese - inserting 1000 documents. first: Boston (album) and last: Celine Dion -[2018-02-13T00:27:48.875] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:27:48.887] [INFO] cheese - inserting 1000 documents. first: Break Your Back (Jay Sean song) and last: James Bogdani -[2018-02-13T00:27:48.900] [INFO] cheese - inserting 1000 documents. first: Morningside Train Station and last: NBC Daytona Beach -[2018-02-13T00:27:48.924] [INFO] cheese - inserting 1000 documents. first: Remiszew Duży and last: Marquis de Montcalme -[2018-02-13T00:27:48.940] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:27:48.943] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:27:48.948] [INFO] cheese - inserting 1000 documents. first: Norman Rule and last: Sovet Ekonomicheskoy Vzaimopomoshchi -[2018-02-13T00:27:48.960] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:27:48.982] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:27:49.032] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:27:49.071] [INFO] cheese - inserting 1000 documents. first: S.K. Wankhede and last: Petroleuse -[2018-02-13T00:27:49.162] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:27:49.236] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Qianxisaurus and last: 2006 Dutch National Track Championships – Women's points race -[2018-02-13T00:27:49.284] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:27:49.306] [INFO] cheese - inserting 1000 documents. first: Barkhausia triangularis and last: 磯村一路 -[2018-02-13T00:27:49.348] [INFO] cheese - inserting 1000 documents. first: Joaquín Calomarde and last: Fourth Rugby League World Cup -[2018-02-13T00:27:49.350] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:27:49.400] [INFO] cheese - inserting 1000 documents. first: Scoparia hawaiiensis and last: District of Columbia's congressional districts -[2018-02-13T00:27:49.416] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:49.454] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:27:49.466] [INFO] cheese - inserting 1000 documents. first: Stored Images and last: Sed card -[2018-02-13T00:27:49.545] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:27:49.661] [INFO] cheese - inserting 1000 documents. first: James Walker (Harvard) and last: Rogue Squadron II: Rogue Leader -[2018-02-13T00:27:49.687] [INFO] cheese - inserting 1000 documents. first: Category:1730s in Portuguese India and last: Category:1130 in the Holy Roman Empire -[2018-02-13T00:27:49.701] [INFO] cheese - inserting 1000 documents. first: ESO 540-030 and last: Yechidah -[2018-02-13T00:27:49.716] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:27:49.722] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:27:49.750] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:27:49.789] [INFO] cheese - inserting 1000 documents. first: Jake "The Snake" Plummer and last: Wikipedia:WikiProject Spam/LinkReports/cathrosoccerclinic.com -[2018-02-13T00:27:49.835] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:49.891] [INFO] cheese - inserting 1000 documents. first: Assemblage and last: Dutch Dwarf -[2018-02-13T00:27:49.938] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:27:49.939] [INFO] cheese - inserting 1000 documents. first: Puerto Rico's congressional districts and last: Nick Evans -[2018-02-13T00:27:49.978] [INFO] cheese - inserting 1000 documents. first: Liedewy Hawke and last: Category:3rd millennium BC in Africa -[2018-02-13T00:27:49.994] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:27:49.995] [INFO] cheese - inserting 1000 documents. first: Robert E. Connick and last: Emperor Akihito of Japan -[2018-02-13T00:27:50.009] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:27:50.070] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:27:50.071] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/log/November 2012 and last: Garab, Khuzestan -[2018-02-13T00:27:50.110] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:50.146] [INFO] cheese - inserting 1000 documents. first: Original (album) and last: 1989 Miami Dolphins season -[2018-02-13T00:27:50.183] [INFO] cheese - inserting 1000 documents. first: Horki and last: Category:Industrial Ethernet -[2018-02-13T00:27:50.185] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:27:50.286] [INFO] cheese - inserting 1000 documents. first: Amygdaloid nucleus and last: Ride of Steel (Darien Lake) -[2018-02-13T00:27:50.306] [INFO] cheese - inserting 1000 documents. first: Brachodes caradjae and last: George Seay -[2018-02-13T00:27:50.319] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:27:50.327] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:27:50.355] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:27:50.369] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Kuwait to the United States and last: Category:1945 establishments in Slovakia -[2018-02-13T00:27:50.445] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:27:50.488] [INFO] cheese - inserting 1000 documents. first: Category:8th-century Irish monarchs and last: Neoborolia nohirae -[2018-02-13T00:27:50.547] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:27:50.627] [INFO] cheese - inserting 1000 documents. first: Footsteps (album) and last: Fred Tauby -[2018-02-13T00:27:50.683] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:27:50.724] [INFO] cheese - inserting 1000 documents. first: Karate at the 2015 European Games – Men's kumite +84 kg and last: Reynaldo Miravalles -[2018-02-13T00:27:50.769] [INFO] cheese - inserting 1000 documents. first: Category:1945 in Slovakia and last: Les Sille -[2018-02-13T00:27:50.769] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:27:50.818] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:27:50.838] [INFO] cheese - inserting 1000 documents. first: Category:Performers of Christian music and last: Mayian -[2018-02-13T00:27:50.864] [INFO] cheese - inserting 1000 documents. first: Gurab Zarmakh and last: Template:SeattleMeetup -[2018-02-13T00:27:50.910] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:27:50.932] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:27:51.044] [INFO] cheese - inserting 1000 documents. first: 1979-1980 United States network television schedule (late night) and last: OLAF -[2018-02-13T00:27:51.087] [INFO] cheese - inserting 1000 documents. first: Leucania nohirae and last: Category:Commanders by Number of the Order of Isabella the Catholic -[2018-02-13T00:27:51.088] [INFO] cheese - inserting 1000 documents. first: Quanta Plus and last: Caricature -[2018-02-13T00:27:51.094] [INFO] cheese - inserting 1000 documents. first: Bearstack and last: Créole haïtien -[2018-02-13T00:27:51.101] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:51.140] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:27:51.156] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:27:51.177] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T00:27:51.293] [INFO] cheese - inserting 1000 documents. first: Sergey Makovetskiy and last: File:All Beauty Destroyed.jpg -[2018-02-13T00:27:51.302] [INFO] cheese - inserting 1000 documents. first: Shoot (film) and last: 趙承熙 -[2018-02-13T00:27:51.349] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:27:51.353] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:27:51.461] [INFO] cheese - inserting 1000 documents. first: Hermit of Tong and last: Handen på hjärtat -[2018-02-13T00:27:51.465] [INFO] cheese - inserting 1000 documents. first: File:Tornado warning.gif and last: Aether (disambiguation) -[2018-02-13T00:27:51.469] [INFO] cheese - inserting 1000 documents. first: Paulino Outdoor Oven and last: Lake District, Fribourg -[2018-02-13T00:27:51.556] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:27:51.580] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:27:51.631] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:27:51.678] [INFO] cheese - inserting 1000 documents. first: Jati Umra (Amritsar) and last: Wikipedia:WikiProject Spam/LinkReports/gyn-fansub.zxq.net -[2018-02-13T00:27:51.735] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:27:51.966] [INFO] cheese - inserting 1000 documents. first: I440bx and last: St. Oliver Plunkett GAA -[2018-02-13T00:27:51.992] [INFO] cheese - inserting 1000 documents. first: Body-caudal fin locomotion and last: Best of The Beatles -[2018-02-13T00:27:52.000] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:27:52.051] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:27:52.068] [INFO] cheese - inserting 1000 documents. first: Ricardo Espalter and last: Category:13th-century BC disestablishments -[2018-02-13T00:27:52.070] [INFO] cheese - inserting 1000 documents. first: Canadian Winter Sport Institute and last: Shannon River (Western Australia) -[2018-02-13T00:27:52.103] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:27:52.113] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:27:52.150] [INFO] cheese - inserting 1000 documents. first: Glossary of spirituality-related terms (A–C) and last: Researcher administered survey -[2018-02-13T00:27:52.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Imeprial Crown of Russia and last: DAP Helicopteros -[2018-02-13T00:27:52.215] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:27:52.244] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:27:52.317] [INFO] cheese - inserting 1000 documents. first: Tell Balgeary, Balgury is Dead and last: George N. Leighton -[2018-02-13T00:27:52.352] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:27:52.360] [INFO] cheese - inserting 1000 documents. first: Stephano and last: Zeppelin bend -[2018-02-13T00:27:52.392] [INFO] cheese - inserting 1000 documents. first: File:I the Mighty Satori Album Cover.jpg and last: Saúl Gutiérrez -[2018-02-13T00:27:52.434] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:52.434] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T00:27:52.471] [INFO] cheese - inserting 1000 documents. first: Labitsky and last: Jose Ferrer (jockey) -[2018-02-13T00:27:52.504] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:52.519] [INFO] cheese - inserting 1000 documents. first: Burg Falkenstein (Niederfalkenstein) and last: Weird tales (disambiguation) -[2018-02-13T00:27:52.569] [INFO] cheese - inserting 1000 documents. first: Hungarian Village and last: File:UBX JP47 16.png -[2018-02-13T00:27:52.590] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:27:52.616] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:27:52.658] [INFO] cheese - inserting 1000 documents. first: Richard Friedman and last: Luis Márquez -[2018-02-13T00:27:52.714] [INFO] cheese - inserting 1000 documents. first: Template:Tercera Division Grupo 14 and last: Devra Davis -[2018-02-13T00:27:52.725] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:27:52.760] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:27:52.765] [INFO] cheese - inserting 1000 documents. first: Royal National Orthopaedic Hospital NHS Trust and last: Halbert Lynn White, Jr. -[2018-02-13T00:27:52.809] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:27:52.960] [INFO] cheese - inserting 1000 documents. first: File:UBX JP47 17.png and last: Laira TMD -[2018-02-13T00:27:52.961] [INFO] cheese - inserting 1000 documents. first: Libertarian movement and last: Mr. Hahn (turntablelist) -[2018-02-13T00:27:53.020] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:27:53.050] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:53.183] [INFO] cheese - inserting 1000 documents. first: Wells score (disambiguation) and last: Zogaj, Shkodër -[2018-02-13T00:27:53.231] [INFO] cheese - inserting 1000 documents. first: Nothing to Make a Fuss About and last: CSA Victoria Cahul -[2018-02-13T00:27:53.267] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:27:53.311] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:27:53.318] [INFO] cheese - inserting 1000 documents. first: SouthPark Mall and last: Mathrafal -[2018-02-13T00:27:53.328] [INFO] cheese - inserting 1000 documents. first: Trideps and last: Run Fat Boy Run -[2018-02-13T00:27:53.390] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:27:53.414] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:27:53.650] [INFO] cheese - inserting 1000 documents. first: Double bowline and last: Thoughtpolice -[2018-02-13T00:27:53.665] [INFO] cheese - inserting 1000 documents. first: Christgau (disambiguation) and last: Kamárai, Ahaía -[2018-02-13T00:27:53.718] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:27:53.762] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T00:27:53.811] [INFO] cheese - inserting 1000 documents. first: Veselin Vlahović and last: Dwight Duffus -[2018-02-13T00:27:53.818] [INFO] cheese - inserting 1000 documents. first: Canalis semicircularis superior and last: Category:Compositions by Zygmunt Stojowski -[2018-02-13T00:27:53.898] [INFO] cheese - inserting 1000 documents. first: Raisin River (United States) and last: Atlantic Cape Community College -[2018-02-13T00:27:53.901] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:27:53.908] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:27:53.939] [INFO] cheese - inserting 1000 documents. first: Template:1970–71 ABA season by team and last: 2015 Charleston, South Carolina massacre -[2018-02-13T00:27:53.980] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:27:53.999] [INFO] cheese - inserting 1000 documents. first: Robert Curzon, 14th Baron Zouch and last: Cabo Espichel -[2018-02-13T00:27:53.997] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:27:54.078] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:27:54.268] [INFO] cheese - inserting 1000 documents. first: Janina Konarska and last: Janów, Warsaw West County -[2018-02-13T00:27:54.324] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:27:54.400] [INFO] cheese - inserting 1000 documents. first: Template:1931 NCAA Men's Basketball Consensus All-Americans and last: Cymbidium (disambiguation) -[2018-02-13T00:27:54.444] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:27:54.453] [INFO] cheese - inserting 1000 documents. first: Category:1573 establishments in Macau and last: Conus mindanus -[2018-02-13T00:27:54.460] [INFO] cheese - inserting 1000 documents. first: Category:Association football matches navigational boxes by teams:Brazil and last: Terry Cooke (footballer, born 1962) -[2018-02-13T00:27:54.514] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:54.542] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:27:54.546] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/PCA Masters XI v Nashua Titans 15 September 2005 and last: Alan Anderson (basketball) -[2018-02-13T00:27:54.602] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:27:54.630] [INFO] cheese - inserting 1000 documents. first: Absolute Power (series) and last: Pseudomonas facilis -[2018-02-13T00:27:54.700] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:27:54.755] [INFO] cheese - inserting 1000 documents. first: Klaudyn and last: MVM Group -[2018-02-13T00:27:54.798] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:27:54.851] [INFO] cheese - inserting 1000 documents. first: Jacobaea viscosa and last: Maryhull -[2018-02-13T00:27:54.858] [INFO] cheese - inserting 1000 documents. first: Vrooman Avenue School and last: National Register of Historic Places listings in Greenwich, Connecticut -[2018-02-13T00:27:54.895] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:27:54.905] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:27:54.931] [INFO] cheese - inserting 1000 documents. first: San Carlo de' Catinari and last: USS Yankee Hero -[2018-02-13T00:27:54.931] [INFO] cheese - inserting 1000 documents. first: Theocrastus Bombastus von Hohenheim and last: Colouring algorithm -[2018-02-13T00:27:54.971] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:55.013] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T00:27:55.075] [INFO] cheese - inserting 1000 documents. first: Dryden Flight Research Facility and last: Wikipedia:Articles for deletion/Worcestershire v Essex 21-24 September 2005 -[2018-02-13T00:27:55.104] [INFO] cheese - inserting 1000 documents. first: File:Objects db1.png and last: Chesham Town F.C. -[2018-02-13T00:27:55.120] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:27:55.142] [INFO] cheese - inserting 1000 documents. first: Ławeczko Nowe and last: Duchy of Ingria -[2018-02-13T00:27:55.167] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:27:55.183] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:27:55.261] [INFO] cheese - inserting 1000 documents. first: Tomás Ó Mellaig and last: Me Gusta Todo de Ti (song) -[2018-02-13T00:27:55.293] [INFO] cheese - inserting 1000 documents. first: Alderville and last: Corentin Denolly -[2018-02-13T00:27:55.296] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:27:55.345] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:27:55.393] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Luxembourg to the Soviet Union and last: Category:1979 establishments in Slovenia -[2018-02-13T00:27:55.456] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:27:55.458] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Worcestershire v Glamorgan 17 July 2005 and last: Ravindra Jain -[2018-02-13T00:27:55.514] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:27:55.550] [INFO] cheese - inserting 1000 documents. first: Goose Eye Mountain and last: Jericoacoara beach -[2018-02-13T00:27:55.560] [INFO] cheese - inserting 1000 documents. first: Everybody Is Different and last: Microwaved (single) -[2018-02-13T00:27:55.602] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:27:55.606] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:55.704] [INFO] cheese - inserting 1000 documents. first: Hemetre and last: Wikipedia:WikiProject Dictionary of National Biography/Topical lists -[2018-02-13T00:27:55.751] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:27:55.767] [INFO] cheese - inserting 1000 documents. first: Bill Brown (English footballer) and last: Earlobe type -[2018-02-13T00:27:55.814] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:27:55.852] [INFO] cheese - inserting 1000 documents. first: Thecla guadala and last: File:Kiladi Kittu poster.jpg -[2018-02-13T00:27:55.907] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:55.939] [INFO] cheese - inserting 1000 documents. first: File:RTÉ The Panel Mug.jpg and last: Interference (Prison Break episode) -[2018-02-13T00:27:55.974] [INFO] cheese - inserting 1000 documents. first: Russell Senior and last: Template:NJ Legislative 07 -[2018-02-13T00:27:55.975] [INFO] cheese - batch complete in: 0.373 secs -t: List of diplomatic missions of Tonga and last: Yakovlev Yak-30 -[2018-02-13T00:27:56.029] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:27:56.040] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:27:56.051] [INFO] cheese - inserting 1000 documents. first: Wire-and-string puzzle and last: Plateau (disambiguation) -[2018-02-13T00:27:56.109] [INFO] cheese - inserting 1000 documents. first: Valmiki (1946 film) and last: FNRS 2 -[2018-02-13T00:27:56.114] [INFO] cheese - inserting 1000 documents. first: Cologne Diocesan Feud and last: Østerø -[2018-02-13T00:27:56.115] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T00:27:56.145] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:27:56.170] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:27:56.258] [INFO] cheese - inserting 1000 documents. first: John Doe (Prison Break episode) and last: Ring systems -[2018-02-13T00:27:56.295] [INFO] cheese - inserting 1000 documents. first: Timeline of Lille and last: Sarkorreh -[2018-02-13T00:27:56.301] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:27:56.343] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:27:56.380] [INFO] cheese - inserting 1000 documents. first: Prince's Trust Team and last: Wikipedia:Articles for deletion/Lists of country-related topics -[2018-02-13T00:27:56.428] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:27:56.515] [INFO] cheese - inserting 1000 documents. first: Walker Lambiotte and last: Trichotaphe cyclospila -[2018-02-13T00:27:56.521] [INFO] cheese - inserting 1000 documents. first: Category:Bathyscaphes and last: James D. Dole Homestead -[2018-02-13T00:27:56.523] [INFO] cheese - inserting 1000 documents. first: File:WPNW-Logo.jpg and last: Bonnethead -[2018-02-13T00:27:56.562] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:27:56.565] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:27:56.586] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:27:56.637] [INFO] cheese - inserting 1000 documents. first: Sar Kureh and last: FA Penang -[2018-02-13T00:27:56.649] [INFO] cheese - inserting 1000 documents. first: Marten Hoekstra and last: File:Couples.JPG -[2018-02-13T00:27:56.665] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:27:56.687] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:56.814] [INFO] cheese - inserting 1000 documents. first: Venchan Peak and last: 1938 Women's British Open Squash Championship -[2018-02-13T00:27:56.836] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:27:56.903] [INFO] cheese - inserting 1000 documents. first: Category:1980s disestablishments in Spain and last: Neklinovskaya -[2018-02-13T00:27:56.927] [INFO] cheese - inserting 1000 documents. first: Category:People from City of London and last: File:HarlanEstate.jpg -[2018-02-13T00:27:56.927] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:27:56.968] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:27:57.016] [INFO] cheese - inserting 1000 documents. first: Category:Railway companies disestablished in 1940 and last: Category:Italian contraltos -[2018-02-13T00:27:57.047] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:57.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Atomic Raygun Attack and last: James Fearnley -[2018-02-13T00:27:57.098] [INFO] cheese - inserting 1000 documents. first: Giants-Eagles rivalry and last: Bud Thackery -[2018-02-13T00:27:57.140] [INFO] cheese - inserting 1000 documents. first: John of Lancaster, 1st Duke of Bedford and last: Abducens nerve -[2018-02-13T00:27:57.198] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:27:57.203] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:27:57.252] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Elmore County, Alabama and last: Santa Ana Church (Manila) -[2018-02-13T00:27:57.260] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T00:27:57.310] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:27:57.345] [INFO] cheese - inserting 1000 documents. first: Neklinovskoye and last: Symmetrocladia -[2018-02-13T00:27:57.405] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:27:57.432] [INFO] cheese - inserting 1000 documents. first: Exact rhyme and last: JoS Bank -[2018-02-13T00:27:57.488] [INFO] cheese - inserting 1000 documents. first: List of Recent Holarctic Bird Species and last: Sharif Murtaza -[2018-02-13T00:27:57.501] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:27:57.550] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:27:57.655] [INFO] cheese - inserting 1000 documents. first: 3-Hydroxyaspartic acid and last: Category:Historic districts in Sullivan County, New York -[2018-02-13T00:27:57.693] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:27:57.709] [INFO] cheese - inserting 1000 documents. first: Category:Standardbred racehorses and last: Campbell County High School shooting -[2018-02-13T00:27:57.736] [INFO] cheese - inserting 1000 documents. first: Liability and Student Records and last: Samuel McTier -[2018-02-13T00:27:57.769] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:27:57.774] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:27:57.776] [INFO] cheese - inserting 1000 documents. first: Seattle Union Record and last: UFC on Fox 6 -[2018-02-13T00:27:57.844] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:27:57.866] [INFO] cheese - inserting 1000 documents. first: Shutarou Mendou and last: Leo Tim Kwong -[2018-02-13T00:27:57.910] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:27:57.912] [INFO] cheese - inserting 1000 documents. first: Fenestela 68 Braşov and last: 1996 Qatar ExxonMobil Open – Singles -[2018-02-13T00:27:57.920] [INFO] cheese - inserting 1000 documents. first: Ring billed gull and last: Procure -[2018-02-13T00:27:57.950] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:27:57.979] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:27:58.118] [INFO] cheese - inserting 1000 documents. first: Goldenwave tickseed and last: Nicolaus Zwetnow -[2018-02-13T00:27:58.151] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:27:58.186] [INFO] cheese - inserting 1000 documents. first: UFC on Fox 6: Johnson vs. Dodson and last: Wikipedia:Articles for deletion/Prime Time League -[2018-02-13T00:27:58.214] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:27:58.226] [INFO] cheese - inserting 1000 documents. first: To be continued and last: Wikipedia:WikiProject Missing encyclopedic articles/Hotlist of Art & Architecture/Z -[2018-02-13T00:27:58.233] [INFO] cheese - inserting 1000 documents. first: Hung Qwan Chuen and last: Adamów -[2018-02-13T00:27:58.246] [INFO] cheese - inserting 1000 documents. first: Victory in Europe Day and last: The Institute of Technology at Linköping University -[2018-02-13T00:27:58.270] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:27:58.280] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:27:58.312] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T00:27:58.363] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Yale University and last: Heggere -[2018-02-13T00:27:58.371] [INFO] cheese - inserting 1000 documents. first: MOS:QUOTATION MARKS and last: Category:Suspected Wikipedia sockpuppets of Petermaxlawrence -[2018-02-13T00:27:58.393] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Personal attack intervention noticeboard and last: The Great Charter of the Liberties -[2018-02-13T00:27:58.400] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:27:58.413] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:58.446] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:27:58.527] [INFO] cheese - inserting 1000 documents. first: Category:I Am Kloot album covers and last: Oxidation ponds -[2018-02-13T00:27:58.562] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:27:58.580] [INFO] cheese - inserting 1000 documents. first: Midayikunnam and last: God of christianity -[2018-02-13T00:27:58.627] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:27:58.753] [INFO] cheese - inserting 1000 documents. first: Hemmadaga and last: AS DGSSIE -[2018-02-13T00:27:58.832] [INFO] cheese - inserting 1000 documents. first: Jan Brady and last: Ptolemy's Gate -[2018-02-13T00:27:58.840] [INFO] cheese - inserting 1000 documents. first: Category:1938 in American football and last: Wikipedia:Articles for deletion/Terry Duguid -[2018-02-13T00:27:58.848] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:27:58.909] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:27:58.964] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:27:59.197] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/List of doom metal bands and last: Category:Ellen Street, Fremantle -[2018-02-13T00:27:59.227] [INFO] cheese - inserting 1000 documents. first: Alex Scott (footballer) and last: Category:Chinese printers -[2018-02-13T00:27:59.234] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:27:59.253] [INFO] cheese - inserting 1000 documents. first: Safari apple and last: Category:Peruvian Nationalist Party politicians -[2018-02-13T00:27:59.282] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:27:59.285] [INFO] cheese - inserting 1000 documents. first: School of the Sextian and last: Category:People from Hundested -[2018-02-13T00:27:59.295] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:27:59.341] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:27:59.427] [INFO] cheese - inserting 1000 documents. first: Ralph Waldo Emerson Award and last: Apollinaris Patera -[2018-02-13T00:27:59.452] [INFO] cheese - inserting 1000 documents. first: Sogut and last: American Law Institute -[2018-02-13T00:27:59.480] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:27:59.529] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:27:59.559] [INFO] cheese - inserting 1000 documents. first: Newlands Cricket Ground and last: Birdmen of Catrazza -[2018-02-13T00:27:59.612] [INFO] cheese - inserting 1000 documents. first: Native Development Kit and last: Acıpayam, Elâzığ -[2018-02-13T00:27:59.633] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:27:59.641] [INFO] cheese - inserting 1000 documents. first: Category:1615 in religion and last: Graham Mylne -[2018-02-13T00:27:59.660] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CONTENTDISPUTE and last: People's Republic of China–Ghana relations -[2018-02-13T00:27:59.680] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:27:59.728] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:27:59.739] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:27:59.812] [INFO] cheese - inserting 1000 documents. first: The prats and last: NL4 -[2018-02-13T00:27:59.858] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:27:59.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Google platform and last: The Aesthetic Dimension -[2018-02-13T00:27:59.935] [INFO] cheese - inserting 1000 documents. first: Jakobus ("James"), Count of Lichtenberg and last: La Lettre b -[2018-02-13T00:27:59.959] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:27:59.968] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:28:00.094] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eldebrock and last: Stubenberg family -[2018-02-13T00:28:00.096] [INFO] cheese - inserting 1000 documents. first: People's Republic of China–Guinea-Bissau relations and last: Template:Australia Squad 2000 Summer Olympics -[2018-02-13T00:28:00.120] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Back up jackson and last: Carolus Gustavus -[2018-02-13T00:28:00.131] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:00.140] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:00.162] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:28:00.210] [INFO] cheese - inserting 1000 documents. first: NL4 connector and last: Paikalangadi -[2018-02-13T00:28:00.300] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:28:00.337] [INFO] cheese - inserting 1000 documents. first: Lord Harrowby and last: The Honourable Arumugam Thondaman MP -[2018-02-13T00:28:00.377] [INFO] cheese - inserting 1000 documents. first: Christian Gottlieb Ferdinand von Hochstetter and last: TRC Lorraine 37 L -[2018-02-13T00:28:00.423] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:28:00.438] [INFO] cheese - inserting 1000 documents. first: Corpus Juris Secundum and last: Christopher North (composer) -[2018-02-13T00:28:00.446] [INFO] cheese - inserting 1000 documents. first: Category:Welsh pop music groups and last: Nanmen Subdistrict -[2018-02-13T00:28:00.450] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:28:00.497] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:28:00.556] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:28:00.695] [INFO] cheese - inserting 1000 documents. first: List of schools in Colombia and last: Wikipedia:Articles for deletion/Newsweek's List of the 1,000 Top U.S. Schools (2005) -[2018-02-13T00:28:00.725] [INFO] cheese - inserting 1000 documents. first: Murder Club of Brooklyn and last: Category:Education in Maine by county -[2018-02-13T00:28:00.803] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:28:00.808] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:28:00.819] [INFO] cheese - inserting 1000 documents. first: Federal Charter school program and last: File:Raineycawthon.jpg -[2018-02-13T00:28:00.897] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:28:00.953] [INFO] cheese - inserting 1000 documents. first: Wandy yazid and last: August 7, 4:15 -[2018-02-13T00:28:00.974] [INFO] cheese - inserting 1000 documents. first: Dominique de Caen and last: Template:Animation-studio-stub -[2018-02-13T00:28:01.059] [INFO] cheese - inserting 1000 documents. first: Glen Eden Lutheran Memorial Park and last: Athletics at the 2008 Summer Paralympics – Women's 400 metres T13 -[2018-02-13T00:28:01.059] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:28:01.061] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:28:01.144] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:01.321] [INFO] cheese - inserting 1000 documents. first: Jinja safari and last: South African Class 10E1, Series 1 -[2018-02-13T00:28:01.402] [INFO] cheese - inserting 1000 documents. first: Rubroboletus lupinus and last: Category:1580s establishments in the British Empire -[2018-02-13T00:28:01.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Newsweek’s List of Top High Schools (2003) and last: Jean Baptiste Baron de Cloots -[2018-02-13T00:28:01.437] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:28:01.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Berkeley/2011 and last: Template:Quebec provincial by-election, November 17, 1980/Electoral District/Brome-Missisquoi (provincial electoral district) -[2018-02-13T00:28:01.464] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:01.499] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:01.506] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:28:01.669] [INFO] cheese - inserting 1000 documents. first: Sadykierz (disambiguation) and last: Mitsubishi Fuso Aero Star Eco Hybrid -[2018-02-13T00:28:01.745] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:28:01.837] [INFO] cheese - inserting 1000 documents. first: Category:1600s establishments in the British Empire and last: Draft:Leptosynapta dolabrifera -[2018-02-13T00:28:01.886] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:28:01.894] [INFO] cheese - inserting 1000 documents. first: Economic Calculation Debate and last: Black Mask (radical group) -[2018-02-13T00:28:01.901] [INFO] cheese - inserting 1000 documents. first: Template:Quebec provincial by-election, November 17, 1980/Electoral District/Mégantic-Compton and last: Wikipedia:CATRED -[2018-02-13T00:28:01.912] [INFO] cheese - inserting 1000 documents. first: Shaari Tadin and last: Champion/St. Regis Dam -[2018-02-13T00:28:01.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/juicycouture-outlet.org and last: Charles Darlington -[2018-02-13T00:28:01.947] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:28:01.969] [INFO] cheese - batch complete in: 1.412 secs -[2018-02-13T00:28:01.975] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:28:01.969] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:28:02.004] [INFO] cheese - inserting 1000 documents. first: Tweeter And The Monkey Man and last: Herbert Wilfred Herridge -[2018-02-13T00:28:02.068] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:02.120] [INFO] cheese - inserting 1000 documents. first: Paxar and last: Wikipedia:WikiProject Spam/LinkReports/iso17799.co.uk -[2018-02-13T00:28:02.162] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:02.227] [INFO] cheese - inserting 1000 documents. first: Shooting at the 1968 Summer Olympics – 300 metre free rifle and last: Die Welt (Herzl) -[2018-02-13T00:28:02.271] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:02.333] [INFO] cheese - inserting 1000 documents. first: Bhaswar Chattopadhyay and last: 10 Haters -[2018-02-13T00:28:02.355] [INFO] cheese - inserting 1000 documents. first: Methylobacillus glycogenes and last: List of Beano comic strips -[2018-02-13T00:28:02.376] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:02.391] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:28:02.465] [INFO] cheese - inserting 1000 documents. first: RAF West Ruislip and last: Wikipedia:Files for deletion/2010 September 16 -[2018-02-13T00:28:02.520] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:02.530] [INFO] cheese - inserting 1000 documents. first: Rule of War and last: Orange Township, Ashland County, Ohio -[2018-02-13T00:28:02.599] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:02.628] [INFO] cheese - inserting 1000 documents. first: 1954–55 Toronto Maple Leafs season and last: The Capitol Years 65/77 -[2018-02-13T00:28:02.696] [INFO] cheese - inserting 1000 documents. first: Category:1104 establishments in Europe and last: Butte desertparsley -[2018-02-13T00:28:02.696] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:28:02.757] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:28:02.823] [INFO] cheese - inserting 1000 documents. first: Template:User in Georgia and last: Template:Taxonomy/Amphicyonidae -[2018-02-13T00:28:02.862] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:28:02.925] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2010 September 16 and last: ’u’ (opera) -[2018-02-13T00:28:02.971] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:03.039] [INFO] cheese - inserting 1000 documents. first: Western Digital and last: Absolute Humidity -[2018-02-13T00:28:03.083] [INFO] cheese - inserting 1000 documents. first: Yoshihiko Amino and last: Korean people in the United Arab Emirates -[2018-02-13T00:28:03.096] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:28:03.100] [INFO] cheese - inserting 1000 documents. first: Category:1524 in South America and last: 180 Out -[2018-02-13T00:28:03.117] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Photography "Perfectly Exposed" exposure, f stops, shutter speed and depth of field and last: Ingrow -[2018-02-13T00:28:03.144] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:28:03.148] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:28:03.166] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:03.181] [INFO] cheese - inserting 1000 documents. first: Canadair DC-4M Argonaut and last: Teviot Falls -[2018-02-13T00:28:03.281] [INFO] cheese - inserting 1000 documents. first: Proprietors: Kammath & Kammath and last: Criminal business -[2018-02-13T00:28:03.312] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:28:03.325] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:28:03.358] [INFO] cheese - inserting 1000 documents. first: Hugh hardy and last: BS Moss' Broadway Theater -[2018-02-13T00:28:03.431] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:03.476] [INFO] cheese - inserting 1000 documents. first: The Singular Universe and the Reality of Time and last: Category:1380s establishments in Poland -[2018-02-13T00:28:03.509] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:28:03.539] [INFO] cheese - inserting 1000 documents. first: Heat (1987 movie) and last: Darky -[2018-02-13T00:28:03.590] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:03.614] [INFO] cheese - inserting 1000 documents. first: Korean people in Yemen and last: Capsazepine -[2018-02-13T00:28:03.631] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Carrom articles and last: Legacy of Ashes (album) -[2018-02-13T00:28:03.655] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:28:03.665] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:28:03.729] [INFO] cheese - inserting 1000 documents. first: Suruke and last: Max Rudolph -[2018-02-13T00:28:03.763] [INFO] cheese - inserting 1000 documents. first: Ilya Boldinskiy and last: Charlie Clark (English footballer) -[2018-02-13T00:28:03.768] [INFO] cheese - inserting 1000 documents. first: Electro-System and last: CRM Magazine -[2018-02-13T00:28:03.772] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:03.800] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:28:03.807] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:28:03.962] [INFO] cheese - inserting 1000 documents. first: Angry Video Game Nerd: The Movie and last: 1937 in the Mandatory Palestinian National Authority -[2018-02-13T00:28:03.992] [INFO] cheese - inserting 1000 documents. first: Brian Wenham and last: Maximilian Scheubner-Richter -[2018-02-13T00:28:03.992] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:28:04.046] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:28:04.104] [INFO] cheese - inserting 1000 documents. first: Hal Turpin and last: File:Flyingrhinojuniorhigh.jpg -[2018-02-13T00:28:04.125] [INFO] cheese - inserting 1000 documents. first: K-1 launch vehicle and last: The Payne Brothers -[2018-02-13T00:28:04.136] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:28:04.143] [INFO] cheese - inserting 1000 documents. first: Bayldonite and last: Pachylaelaps quadricombinatus -[2018-02-13T00:28:04.168] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:28:04.178] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:04.229] [INFO] cheese - inserting 1000 documents. first: London Metal Exchange and last: Mam'zelle Champagne -[2018-02-13T00:28:04.282] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Miroslav Holeňák and last: Gail Martin -[2018-02-13T00:28:04.323] [INFO] cheese - inserting 1000 documents. first: Yanaqucha (Cusco) and last: Corpus Christi – Kingsville CSA -[2018-02-13T00:28:04.321] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T00:28:04.337] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:28:04.352] [INFO] cheese - inserting 1000 documents. first: 1937 of the Mandatory Palestinian National Authority and last: File:Bestbreeder from 1997 to 2000.jpg -[2018-02-13T00:28:04.360] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:28:04.401] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:28:04.438] [INFO] cheese - inserting 1000 documents. first: Trimmers and last: File:TheCopperBeech.jpg -[2018-02-13T00:28:04.471] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:28:04.502] [INFO] cheese - inserting 1000 documents. first: Pachylaelaps quadritus and last: Template:ChambersCountyTX-geo-stub -[2018-02-13T00:28:04.541] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:28:04.602] [INFO] cheese - inserting 1000 documents. first: General Electoral Union and last: Permeameter -[2018-02-13T00:28:04.656] [INFO] cheese - inserting 1000 documents. first: Dothan–Enterprise–Ozark CSA and last: Category:1844 disestablishments in Europe -[2018-02-13T00:28:04.667] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:28:04.701] [INFO] cheese - inserting 1000 documents. first: KUUT and last: File:ESPN Full Court logo.svg -[2018-02-13T00:28:04.710] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:28:04.786] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:04.865] [INFO] cheese - inserting 1000 documents. first: Laleli, Refahiye and last: Category:Plains of Taiwan -[2018-02-13T00:28:04.911] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:04.913] [INFO] cheese - inserting 1000 documents. first: Garnock Spout and last: Mallapur Kariyat Nesargi -[2018-02-13T00:28:04.993] [INFO] cheese - inserting 1000 documents. first: List of birds of Zimbabwe and last: File:Pyral-old-logo-1981.jpg -[2018-02-13T00:28:05.013] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:05.100] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:28:05.149] [INFO] cheese - inserting 1000 documents. first: Category:1845 disestablishments in Europe and last: Rathaspick -[2018-02-13T00:28:05.179] [INFO] cheese - inserting 1000 documents. first: Louis Burger and last: Griffonia Simplicifolia -[2018-02-13T00:28:05.188] [INFO] cheese - inserting 1000 documents. first: Sancta Maria and last: Template:Cabinet of Geir Hallgrímsson -[2018-02-13T00:28:05.193] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:28:05.241] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:05.250] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:28:05.321] [INFO] cheese - inserting 1000 documents. first: Signal to Noise (Rise Album) and last: Nichlas Torp -[2018-02-13T00:28:05.395] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:28:05.416] [INFO] cheese - inserting 1000 documents. first: Florodora and last: Col Needham -[2018-02-13T00:28:05.469] [INFO] cheese - inserting 1000 documents. first: Ruwer (municipality) and last: Wikipedia:Articles for deletion/Stream machine -[2018-02-13T00:28:05.527] [INFO] cheese - inserting 1000 documents. first: Mallapur S.A. and last: Sedlare -[2018-02-13T00:28:05.529] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:05.566] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T00:28:05.603] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:28:05.614] [INFO] cheese - inserting 1000 documents. first: Sinyuan, Pingtung and last: 1992 World Junior Championships in Athletics – Women's discus throw -[2018-02-13T00:28:05.677] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:05.794] [INFO] cheese - inserting 1000 documents. first: Bass Sax and last: Template:Naomh Adhamhnáin C.L.G. squad -[2018-02-13T00:28:05.847] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:28:05.881] [INFO] cheese - inserting 1000 documents. first: File:ImmaterielZoneKlein.jpg and last: Template:States in the sphere of influence of Imperial Japan during World War 2 -[2018-02-13T00:28:05.917] [INFO] cheese - inserting 1000 documents. first: Deborah Mayfair and last: Wettonmill -[2018-02-13T00:28:05.921] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:05.992] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:28:06.014] [INFO] cheese - inserting 1000 documents. first: Addison Road Station and last: Buffalo Township (Union County, Pennsylvania) -[2018-02-13T00:28:06.025] [INFO] cheese - inserting 1000 documents. first: Laspeyresia splendana and last: Ansarullah (Ahmadiyya) -[2018-02-13T00:28:06.039] [INFO] cheese - inserting 1000 documents. first: Baltimore Orioles roster and last: Mazda SportsLook -[2018-02-13T00:28:06.049] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:28:06.085] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:28:06.128] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:28:06.312] [INFO] cheese - inserting 1000 documents. first: Naomh Mícheál C.L.G. and last: File:Mark Stewart - The Politics of Envy.jpg -[2018-02-13T00:28:06.349] [INFO] cheese - inserting 1000 documents. first: 39th Tactical Fighter Squadron and last: File:Bobbygonzo.jpg -[2018-02-13T00:28:06.378] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:06.437] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:06.482] [INFO] cheese - inserting 1000 documents. first: Category:League1 Ontario and last: Template:North Hollywood, California -[2018-02-13T00:28:06.525] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:28:06.576] [INFO] cheese - inserting 1000 documents. first: National Council for the Social Studies and last: Whitespot syndrome -[2018-02-13T00:28:06.586] [INFO] cheese - inserting 1000 documents. first: François Heywaert and last: Selenoyl fluoride -[2018-02-13T00:28:06.618] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:06.701] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:28:06.722] [INFO] cheese - inserting 1000 documents. first: Template:Gloucestershire-struct-stub and last: São Nicolau Crioulo language -[2018-02-13T00:28:06.789] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:28:06.870] [INFO] cheese - inserting 1000 documents. first: Golden West College and last: Enzkreis -[2018-02-13T00:28:06.910] [INFO] cheese - inserting 1000 documents. first: Dipropionylmorphine and last: K.A. Nowotny -[2018-02-13T00:28:06.910] [INFO] cheese - inserting 1000 documents. first: Category:People's Republic of China politicians from Hainan and last: Navy Type 96 Carrier Bomber -[2018-02-13T00:28:06.956] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:28:07.022] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:07.019] [INFO] cheese - batch complete in: 1.452 secs -[2018-02-13T00:28:07.095] [INFO] cheese - inserting 1000 documents. first: CAT:FA and last: Ciscarpathia -[2018-02-13T00:28:07.163] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:28:07.215] [INFO] cheese - inserting 1000 documents. first: Saint-Herblain and last: Mount Alvernia Hospital -[2018-02-13T00:28:07.285] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:28:07.291] [INFO] cheese - inserting 1000 documents. first: Category:Vines and last: Marcos Highway -[2018-02-13T00:28:07.355] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:28:07.368] [INFO] cheese - inserting 1000 documents. first: Kagoshima main line and last: Wikipedia:Articles for deletion/Hywel Gwynfryn -[2018-02-13T00:28:07.421] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Metropolitan area of Barranquilla and last: Ishimaru -[2018-02-13T00:28:07.441] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:28:07.493] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:28:07.549] [INFO] cheese - inserting 1000 documents. first: Xeo-Genetic and last: List of steam festivals -[2018-02-13T00:28:07.588] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:07.664] [INFO] cheese - inserting 1000 documents. first: Carenum brevicolle and last: Gateshead West by-election (1955) -[2018-02-13T00:28:07.695] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:28:07.736] [INFO] cheese - inserting 1000 documents. first: Category:History of the Marlborough Region and last: Miss Goat -[2018-02-13T00:28:07.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of songs published as live versions and last: Shaun Scott (actor) -[2018-02-13T00:28:07.766] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:28:07.818] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:07.834] [INFO] cheese - inserting 1000 documents. first: Trudy Walhof-Groenman and last: Wikipedia:Peer review/Don't Bite the Sun/archive1 -[2018-02-13T00:28:07.876] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:28:07.893] [INFO] cheese - inserting 1000 documents. first: Worms: The Director's Cut and last: Lisa Evers -[2018-02-13T00:28:07.919] [INFO] cheese - inserting 1000 documents. first: 2008-09 LA Lakers season and last: Prevention of Corruption Act, 1988 -[2018-02-13T00:28:07.962] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:28:07.974] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:28:08.082] [INFO] cheese - inserting 1000 documents. first: Alexander Mackenzie (explorer) and last: First trimester -[2018-02-13T00:28:08.136] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T00:28:08.155] [INFO] cheese - inserting 1000 documents. first: Wu Jingbiao and last: Asca aphidioides -[2018-02-13T00:28:08.214] [INFO] cheese - inserting 1000 documents. first: File:StockbridgeMA-seal.png and last: Southport, United States -[2018-02-13T00:28:08.213] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:08.258] [INFO] cheese - inserting 1000 documents. first: SNOMED Clinical Terms and last: Category:Bridges in Mexico -[2018-02-13T00:28:08.261] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:08.276] [INFO] cheese - inserting 1000 documents. first: Heman (Bible) and last: Isthmus of Fallopian tube -[2018-02-13T00:28:08.314] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:28:08.317] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:08.394] [INFO] cheese - inserting 1000 documents. first: McCain Democrat and last: Noble Square, Chicago -[2018-02-13T00:28:08.431] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:28:08.518] [INFO] cheese - inserting 1000 documents. first: Asca arboriensis and last: 1991 Maryland Terrapins football team -[2018-02-13T00:28:08.559] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:28:08.582] [INFO] cheese - inserting 1000 documents. first: Stratham new hampshire and last: Category:Template-Class Economics articles -[2018-02-13T00:28:08.622] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:28:08.706] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Brooklyn and last: Negative binomial -[2018-02-13T00:28:08.758] [INFO] cheese - inserting 1000 documents. first: Rem Urasin and last: KSYR -[2018-02-13T00:28:08.759] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:08.763] [INFO] cheese - inserting 1000 documents. first: Fimbriae of Fallopian tube and last: Rhodri Williams (rugby player) -[2018-02-13T00:28:08.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/therealblakeman/Archive and last: Anna of Masovia (b.1270) -[2018-02-13T00:28:08.825] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:28:08.833] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:08.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Requests for comment/User names (2nd nomination) and last: Kozí příběh- pověsti staré Prahy -[2018-02-13T00:28:08.866] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:28:08.907] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:28:08.923] [INFO] cheese - inserting 1000 documents. first: Third trimester and last: Joseph Autran -[2018-02-13T00:28:08.934] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Economics articles and last: Kendra Harrison -[2018-02-13T00:28:08.967] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:28:09.004] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:28:09.165] [INFO] cheese - inserting 1000 documents. first: Martijn Meerdink and last: Tug Daniels -[2018-02-13T00:28:09.190] [INFO] cheese - inserting 1000 documents. first: New Haven, Ohio and last: Portal:2010s/Selected article/3 -[2018-02-13T00:28:09.211] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:28:09.232] [INFO] cheese - inserting 1000 documents. first: Paracuellos (disambiguation) and last: 532d Bombardment Squadron -[2018-02-13T00:28:09.234] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:09.247] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2008 October 31 and last: Fukuoka Subway 2000 series -[2018-02-13T00:28:09.280] [INFO] cheese - inserting 1000 documents. first: Duke of Rohan and last: Alfredo Bojalil Gil -[2018-02-13T00:28:09.286] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:09.318] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:09.332] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:28:09.408] [INFO] cheese - inserting 1000 documents. first: File:Jeanne-Hatto-Walkure-1906.jpg and last: Kathryn Scola -[2018-02-13T00:28:09.470] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:28:09.564] [INFO] cheese - inserting 1000 documents. first: Category:Combined heat and power plants by country and last: Congratulatory first -[2018-02-13T00:28:09.611] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:09.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/TAJJ Championship Wrestling and last: Rome Middle School -[2018-02-13T00:28:09.694] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:09.713] [INFO] cheese - inserting 1000 documents. first: Alternet.com and last: Araya Peninsula -[2018-02-13T00:28:09.722] [INFO] cheese - inserting 1000 documents. first: Prayer for Peace (Hazrat Inayat Khan) and last: Wikipedia:Articles for deletion/Perfect rhyme -[2018-02-13T00:28:09.767] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:09.780] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:28:09.875] [INFO] cheese - inserting 1000 documents. first: William Henry Allchin and last: Wars involving Britain -[2018-02-13T00:28:09.921] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:09.954] [INFO] cheese - inserting 1000 documents. first: Solo (2006 film) and last: List of First Ladies of Puerto Rico -[2018-02-13T00:28:09.997] [INFO] cheese - inserting 1000 documents. first: Funk & Wagnalls and last: Tree warbler -[2018-02-13T00:28:10.000] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:28:10.065] [INFO] cheese - inserting 1000 documents. first: Dog spike and last: King's Norton RD -[2018-02-13T00:28:10.071] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T00:28:10.123] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:10.156] [INFO] cheese - inserting 1000 documents. first: Anguilla National cricket Team and last: Lassens Natural Food & Vitamins -[2018-02-13T00:28:10.255] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:28:10.311] [INFO] cheese - inserting 1000 documents. first: Category:Japanese mountain climbers and last: Bombay blood -[2018-02-13T00:28:10.354] [INFO] cheese - inserting 1000 documents. first: Wars involving Great Britain and last: L'Echappée Belle -[2018-02-13T00:28:10.374] [INFO] cheese - inserting 1000 documents. first: Granitsa, Evrytania and last: Vudu box -[2018-02-13T00:28:10.377] [INFO] cheese - inserting 1000 documents. first: Melton Halt railway station and last: File:Mark Lenzi.jpeg -[2018-02-13T00:28:10.438] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:28:10.470] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:28:10.518] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:28:10.566] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T00:28:10.778] [INFO] cheese - inserting 1000 documents. first: Running Badge and last: Mõisaküla, Torgu Parish -[2018-02-13T00:28:10.790] [INFO] cheese - inserting 1000 documents. first: Bob Smith (right-handed pitcher born 1931) and last: Lewis Carl Davidson Hamilton -[2018-02-13T00:28:10.827] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:28:10.831] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:28:10.884] [INFO] cheese - inserting 1000 documents. first: File:Jag Panzer - Ample Destruction - 04 - Harder than Steel (sample).ogg and last: Kosuke -[2018-02-13T00:28:10.930] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:10.935] [INFO] cheese - inserting 1000 documents. first: Karl II. Franz von Innerösterreich and last: A Summer to Remember -[2018-02-13T00:28:10.974] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:28:10.997] [INFO] cheese - inserting 1000 documents. first: Pizzoletta and last: Lužice -[2018-02-13T00:28:11.083] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:28:11.298] [INFO] cheese - inserting 1000 documents. first: Foreign Languages Specializing School and last: ICC ODI Team of the Year -[2018-02-13T00:28:11.311] [INFO] cheese - inserting 1000 documents. first: Stellar association and last: Hessians -[2018-02-13T00:28:11.313] [INFO] cheese - inserting 1000 documents. first: Kousuke and last: Wikipedia:Training/For Ambassadors/My watchlist 1 -[2018-02-13T00:28:11.314] [INFO] cheese - inserting 1000 documents. first: Category:World War II cemeteries in Germany and last: Andrey Dostoyevsky -[2018-02-13T00:28:11.357] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:11.361] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:11.357] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:11.397] [INFO] cheese - inserting 1000 documents. first: Renewable energy in Indonesia and last: Fati Jamali -[2018-02-13T00:28:11.402] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T00:28:11.438] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:28:11.467] [INFO] cheese - inserting 1000 documents. first: LOW LINE and last: Theming -[2018-02-13T00:28:11.542] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:28:11.645] [INFO] cheese - inserting 1000 documents. first: 1992 NBA Finals and last: Upsilon Bootis -[2018-02-13T00:28:11.735] [INFO] cheese - inserting 1000 documents. first: Gravity (Jamie Woon song) and last: Ligamentum talocalcaneum anterius -[2018-02-13T00:28:11.741] [INFO] cheese - inserting 1000 documents. first: Matti Harju and last: Cinzia de Ponti -[2018-02-13T00:28:11.741] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:28:11.779] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:11.788] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:28:11.894] [INFO] cheese - inserting 1000 documents. first: Evangelical School of Smyrna and last: Bring It On (Kaci Battaglia album) -[2018-02-13T00:28:11.916] [INFO] cheese - inserting 1000 documents. first: Qaraqurtlu and last: Short Fat Fannie -[2018-02-13T00:28:11.950] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:28:11.978] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:28:12.112] [INFO] cheese - inserting 1000 documents. first: Arvis Vilkaste and last: HU-16B Albatross -[2018-02-13T00:28:12.168] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:28:12.197] [INFO] cheese - inserting 1000 documents. first: Bonjour strad and last: Budhanilkantha -[2018-02-13T00:28:12.197] [INFO] cheese - inserting 1000 documents. first: Cinzia Fiordeponti and last: Todor Kozlovski -[2018-02-13T00:28:12.235] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:12.243] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:28:12.320] [INFO] cheese - inserting 1000 documents. first: Democracy: An American Novel and last: FBI Ten Most Wanted Fugitives -[2018-02-13T00:28:12.368] [INFO] cheese - inserting 1000 documents. first: USS Bowfin (AGSS-287) and last: Thampi Kannanthanam -[2018-02-13T00:28:12.374] [INFO] cheese - inserting 1000 documents. first: Template:Boy and last: Iveco EuroPolis -[2018-02-13T00:28:12.391] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:28:12.418] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:12.484] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:28:12.503] [INFO] cheese - inserting 1000 documents. first: Chatsworth Metro Orange Line (Metrolink & Amtrak station) and last: Imogen Miller -[2018-02-13T00:28:12.555] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:28:12.587] [INFO] cheese - inserting 1000 documents. first: Dan-Foam and last: Nepeta (disambiguation) -[2018-02-13T00:28:12.620] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:12.703] [INFO] cheese - inserting 1000 documents. first: Percent for Art and last: Porcupine rim trail -[2018-02-13T00:28:12.765] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T00:28:12.799] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Politics1.com (2nd nomination) and last: Alltagsgeschichte -[2018-02-13T00:28:12.847] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:28:12.920] [INFO] cheese - inserting 1000 documents. first: Serafin Enoss Bertaso Airport and last: Centralnyi -[2018-02-13T00:28:12.939] [INFO] cheese - inserting 1000 documents. first: Heathrow Terminal 4 and last: Egypt II: The Heliopolis Prophecy -[2018-02-13T00:28:12.943] [INFO] cheese - inserting 1000 documents. first: Category:People from Chamdo and last: Category:Wikipedia sockpuppets of MatthewCenance -[2018-02-13T00:28:12.970] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:28:12.978] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:12.985] [INFO] cheese - inserting 1000 documents. first: 1922 Boston College Eagles football team and last: Cazal Eyewear -[2018-02-13T00:28:13.011] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:28:13.044] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:13.313] [INFO] cheese - inserting 1000 documents. first: Quasi-conformal mapping and last: Wikipedia:Articles for deletion/List of Norwegian-Americans -[2018-02-13T00:28:13.323] [INFO] cheese - inserting 1000 documents. first: Deformable bodies and last: Pandava -[2018-02-13T00:28:13.335] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/multicore.ning.com and last: 1895 Ottawa Hockey Club season -[2018-02-13T00:28:13.345] [INFO] cheese - inserting 1000 documents. first: Maxime Arseneau and last: Tracheal tug sign -[2018-02-13T00:28:13.349] [INFO] cheese - inserting 1000 documents. first: Banovci (Bebrina) and last: Plélan -[2018-02-13T00:28:13.366] [INFO] cheese - inserting 1000 documents. first: George Shelly and last: Category:Morocco–Tunisia relations -[2018-02-13T00:28:13.389] [INFO] cheese - inserting 1000 documents. first: Template:Wikiproject banner shell and last: Lee Craig -[2018-02-13T00:28:13.388] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:13.392] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:28:13.399] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:28:13.431] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:13.443] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:28:13.526] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:28:13.554] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T00:28:13.869] [INFO] cheese - inserting 1000 documents. first: Governor of Bilecik and last: Feeling Yes, Feeling No -[2018-02-13T00:28:13.894] [INFO] cheese - inserting 1000 documents. first: Good Friday Prayer for the Jews and last: Bars and stars -[2018-02-13T00:28:13.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User talk:203.171.195.165 and last: Dołęga (disambiguation) -[2018-02-13T00:28:13.930] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:28:13.938] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:13.954] [INFO] cheese - inserting 1000 documents. first: Shades of the Swarm and last: Now: The Hits of Summer 2009 -[2018-02-13T00:28:13.976] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:14.080] [INFO] cheese - inserting 1000 documents. first: File:Rodovia-fernao-dias-2.jpg and last: Landing fee -[2018-02-13T00:28:14.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeroen bours and last: Managua International Airport -[2018-02-13T00:28:14.092] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:28:14.218] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:28:14.225] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:28:14.384] [INFO] cheese - inserting 1000 documents. first: Sir John Robison and last: Bandy Island -[2018-02-13T00:28:14.420] [INFO] cheese - inserting 1000 documents. first: File:Polenabzeichen.jpg and last: Category:Princes of Zvenyhorod -[2018-02-13T00:28:14.428] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:28:14.480] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:14.513] [INFO] cheese - inserting 1000 documents. first: Black Coffee (2005 film) and last: File:Billboard Top Hits 1986.jpg -[2018-02-13T00:28:14.565] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:28:14.614] [INFO] cheese - inserting 1000 documents. first: Category:Ontario, Oregon and last: Bowling at the 2007 Asian Indoor Games -[2018-02-13T00:28:14.617] [INFO] cheese - inserting 1000 documents. first: Henry Heth (Colonel) and last: The Good Shepherd (Christ) -[2018-02-13T00:28:14.659] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:14.677] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:14.739] [INFO] cheese - inserting 1000 documents. first: Castle View School and last: Natalya Antyukh -[2018-02-13T00:28:14.756] [INFO] cheese - inserting 1000 documents. first: Banna Peak and last: Template:Editnotices/Page/Talk:Association football -[2018-02-13T00:28:14.790] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:28:14.797] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:28:14.928] [INFO] cheese - inserting 1000 documents. first: The Girl Was Young and last: Avie Tevanian -[2018-02-13T00:28:14.968] [INFO] cheese - inserting 1000 documents. first: Category:French hoteliers and last: File:SaganWalk.4.5.AsteroidBelt.jpg -[2018-02-13T00:28:15.015] [INFO] cheese - batch complete in: 1.46 secs -[2018-02-13T00:28:15.031] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:15.074] [INFO] cheese - inserting 1000 documents. first: Norway House, Canada and last: Eslamabad (Dashti) -[2018-02-13T00:28:15.127] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:28:15.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/EQMS::LIMS and last: Category:Rugby clubs established in 1910 -[2018-02-13T00:28:15.157] [INFO] cheese - inserting 1000 documents. first: Bonsai cultivation and care and last: Neoparaphytoseius sooretamus -[2018-02-13T00:28:15.165] [INFO] cheese - inserting 1000 documents. first: Rhiana Griffith and last: Alexander Gordon -[2018-02-13T00:28:15.179] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:28:15.191] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:28:15.199] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:28:15.335] [INFO] cheese - inserting 1000 documents. first: Alma heights and last: Wikipedia:Requests for adminship/Sean Black -[2018-02-13T00:28:15.371] [INFO] cheese - inserting 1000 documents. first: Elephas namadicus and last: Andrew J. Levander -[2018-02-13T00:28:15.490] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:28:15.497] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:15.701] [INFO] cheese - inserting 1000 documents. first: Ballyboy (barony) and last: File:Governor of Malatya.png -[2018-02-13T00:28:15.714] [INFO] cheese - inserting 1000 documents. first: David Pierre and last: Wikipedia:WikiProject Spam/LinkReports/adlusa.org -[2018-02-13T00:28:15.720] [INFO] cheese - inserting 1000 documents. first: Big Bang Burger Bar, The and last: Category:1985 elections in Canada -[2018-02-13T00:28:15.744] [INFO] cheese - inserting 1000 documents. first: Category:Conflicts in 1217 and last: Template:Independent Radical Party/meta/color -[2018-02-13T00:28:15.758] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:28:15.776] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:28:15.821] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:28:15.838] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:28:16.049] [INFO] cheese - inserting 1000 documents. first: Alberto Thieroldt and last: Category:Saint Vincent and the Grenadines sprinters -[2018-02-13T00:28:16.058] [INFO] cheese - inserting 1000 documents. first: Fifth millennium and last: Oswald Hanfling -[2018-02-13T00:28:16.101] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:28:16.106] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:28:16.197] [INFO] cheese - inserting 1000 documents. first: Guiana Industrial Workers Union and last: Hypatima haligramma -[2018-02-13T00:28:16.243] [INFO] cheese - inserting 1000 documents. first: Shravakayana and last: Jean-Francois Bachelot -[2018-02-13T00:28:16.279] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:28:16.321] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:16.323] [INFO] cheese - inserting 1000 documents. first: BUI (disambiguation) and last: Category:1925 in fiction -[2018-02-13T00:28:16.386] [INFO] cheese - inserting 1000 documents. first: National Anthem of the Republic of China and last: Li Tieh Kuai -[2018-02-13T00:28:16.394] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:16.415] [INFO] cheese - inserting 1000 documents. first: Life and Death (Dynasty) and last: 15th Hong Kong Film Awards -[2018-02-13T00:28:16.483] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:28:16.515] [INFO] cheese - batch complete in: 1.5 secs -[2018-02-13T00:28:16.650] [INFO] cheese - inserting 1000 documents. first: Category:Maltese sprinters and last: Gładyszów -[2018-02-13T00:28:16.651] [INFO] cheese - inserting 1000 documents. first: Żabinka and last: Peter Bazalgette -[2018-02-13T00:28:16.712] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:28:16.727] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:16.750] [INFO] cheese - inserting 1000 documents. first: SM U VI (Austria-Hungary) and last: Ida Crowe Pollock -[2018-02-13T00:28:16.831] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:28:16.869] [INFO] cheese - inserting 1000 documents. first: Category:1873 establishments in Norway and last: Tony Dortie -[2018-02-13T00:28:16.977] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:28:17.082] [INFO] cheese - inserting 1000 documents. first: Category:Macquarie University and last: Pierce the Veil -[2018-02-13T00:28:17.138] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:28:17.175] [INFO] cheese - inserting 1000 documents. first: Category:21st-century disestablishments in Trinidad and Tobago and last: Avia 137AZ -[2018-02-13T00:28:17.208] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:28:17.282] [INFO] cheese - inserting 1000 documents. first: Le Rhone and last: Live @ Warp10 -[2018-02-13T00:28:17.321] [INFO] cheese - inserting 1000 documents. first: Awre for Blakeney railway station and last: Category:Buckethead task force articles -[2018-02-13T00:28:17.342] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:28:17.364] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:17.451] [INFO] cheese - inserting 1000 documents. first: Babalu Sobral and last: Robert Mohr -[2018-02-13T00:28:17.502] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:17.531] [INFO] cheese - inserting 1000 documents. first: Papillon-Lefevre disease and last: Traver Rains -[2018-02-13T00:28:17.568] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:17.576] [INFO] cheese - inserting 1000 documents. first: Category:Classical music in China and last: Tachina barbata -[2018-02-13T00:28:17.620] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:28:17.679] [INFO] cheese - inserting 1000 documents. first: Slovenian music and last: Chicago Sun-Times -[2018-02-13T00:28:17.695] [INFO] cheese - inserting 1000 documents. first: Piece of My Heart (Tara Kemp song) and last: Ignazia Verzeri -[2018-02-13T00:28:17.708] [INFO] cheese - inserting 1000 documents. first: Tabimorelin and last: Raymond Henry Sherry -[2018-02-13T00:28:17.812] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T00:28:17.818] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:28:17.871] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T00:28:17.917] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2010 September 21 and last: Wikipedia:Articles for deletion/Billy E. Vaughn -[2018-02-13T00:28:17.944] [INFO] cheese - inserting 1000 documents. first: File:Wir sind Helden Die Reklamation.jpg and last: Pamela Goldsmith-Jones -[2018-02-13T00:28:17.962] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:18.006] [INFO] cheese - inserting 1000 documents. first: Tredegar Park, Newport and last: Category:Trails -[2018-02-13T00:28:18.035] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:28:18.086] [INFO] cheese - inserting 1000 documents. first: Paramonacanthus and last: Gishi (disambiguation) -[2018-02-13T00:28:18.086] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:28:18.154] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:28:18.253] [INFO] cheese - inserting 1000 documents. first: Raymond Sherry and last: Lisie heart institute -[2018-02-13T00:28:18.256] [INFO] cheese - inserting 1000 documents. first: Category:Directors General of the Nigerian State Security Service and last: Category:Transport infrastructure completed in the 12th century -[2018-02-13T00:28:18.297] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:28:18.307] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:18.446] [INFO] cheese - inserting 1000 documents. first: File:Baci ceremony.jpg and last: Jeleznodorozhnyy Okrug -[2018-02-13T00:28:18.487] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:18.493] [INFO] cheese - inserting 1000 documents. first: Green Bay, Virginia (disambiguation) and last: British Columbia Premier League -[2018-02-13T00:28:18.559] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:28:18.610] [INFO] cheese - inserting 1000 documents. first: Aggressive NK cell leukemia and last: Jed Z. Buchwald -[2018-02-13T00:28:18.640] [INFO] cheese - inserting 1000 documents. first: File:Soldier River.jpg and last: Fear of Fours -[2018-02-13T00:28:18.695] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:28:18.705] [INFO] cheese - inserting 1000 documents. first: Category:Infrastructure completed in 1127 and last: XELE-AM -[2018-02-13T00:28:18.721] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:28:18.750] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:28:18.812] [INFO] cheese - inserting 1000 documents. first: William Shaw (mathematician) and last: Short R.24/31 -[2018-02-13T00:28:18.878] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:28:18.925] [INFO] cheese - inserting 1000 documents. first: Wolf herring and last: Take Me Out To The Ball Game -[2018-02-13T00:28:18.945] [INFO] cheese - inserting 1000 documents. first: Jeleznodorozhnyi Okrug and last: Wikipedia:Commonname -[2018-02-13T00:28:18.960] [INFO] cheese - inserting 1000 documents. first: Block 15 F-16 Fighting Falcon and last: Decay (film) -[2018-02-13T00:28:18.987] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:28:19.020] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T00:28:19.040] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:28:19.122] [INFO] cheese - inserting 1000 documents. first: Orthilia secunda and last: Awakened (2013 film) -[2018-02-13T00:28:19.175] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:28:19.292] [INFO] cheese - inserting 1000 documents. first: Alastair Gordon, Earl of Aboyne and last: Wikipedia:Articles for deletion/American Orthodox Catholic Church -[2018-02-13T00:28:19.357] [INFO] cheese - inserting 1000 documents. first: Shahin Dezh and last: ⁴ -[2018-02-13T00:28:19.357] [INFO] cheese - inserting 1000 documents. first: Great Hypostyle Hall, Karnak and last: Graveri -[2018-02-13T00:28:19.397] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:28:19.405] [INFO] cheese - inserting 1000 documents. first: Rihand Dam and last: Category:Ivorian expatriates in France -[2018-02-13T00:28:19.442] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:19.497] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:28:19.503] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:28:19.541] [INFO] cheese - inserting 1000 documents. first: Nickel(II) sulfide and last: Category:1969 establishments in Uganda -[2018-02-13T00:28:19.588] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:28:19.692] [INFO] cheese - inserting 1000 documents. first: Hasan İpek and last: Wonkwang University Law School -[2018-02-13T00:28:19.731] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:19.829] [INFO] cheese - inserting 1000 documents. first: Tetrominoes and last: West Side of Stamford, Connecticut -[2018-02-13T00:28:19.869] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:19.891] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and manga/Anniversaries/February/February 8 and last: German stock market index -[2018-02-13T00:28:19.927] [INFO] cheese - inserting 1000 documents. first: Shirgjan and last: Hoffman's Parakeet -[2018-02-13T00:28:19.960] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:28:20.005] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:28:20.018] [INFO] cheese - inserting 1000 documents. first: Mycosphaerella rabiei and last: Wikipedia:Copyright problems/2012 November 23 -[2018-02-13T00:28:20.028] [INFO] cheese - inserting 1000 documents. first: Template:USCongDistStateNC and last: Category:Tourism in Guatemala -[2018-02-13T00:28:20.058] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:28:20.114] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:28:20.149] [INFO] cheese - inserting 1000 documents. first: Yeungnam Law School and last: Tennis at the 2015 Pan American Games – Men's doubles -[2018-02-13T00:28:20.205] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:28:20.269] [INFO] cheese - inserting 1000 documents. first: Saljut I and last: Music terminology -[2018-02-13T00:28:20.381] [INFO] cheese - inserting 1000 documents. first: Xaskul and last: Estelle v. Gamble -[2018-02-13T00:28:20.387] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:28:20.446] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:28:20.456] [INFO] cheese - inserting 1000 documents. first: Hoffmans' Parakeet and last: Save The Last Dance For Me (album) -[2018-02-13T00:28:20.472] [INFO] cheese - inserting 1000 documents. first: Fenerbahçe Ülker season 2008–09 and last: Category:Wikipedia sockpuppets of Mr D Assange118 -[2018-02-13T00:28:20.514] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:28:20.516] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 November 27 and last: Category:1959 in Ukraine -[2018-02-13T00:28:20.538] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:28:20.605] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:28:20.680] [INFO] cheese - inserting 1000 documents. first: Danger Street and last: Category:1869 disestablishments in France -[2018-02-13T00:28:20.681] [INFO] cheese - inserting 1000 documents. first: Carotid sinus massage and last: The One with the Breast Milk -[2018-02-13T00:28:20.719] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:20.739] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:28:20.928] [INFO] cheese - inserting 1000 documents. first: Category:Event venues established in 1999 and last: USSR Ministry of Communications -[2018-02-13T00:28:20.932] [INFO] cheese - inserting 1000 documents. first: Mesici and last: Matti Keinonen -[2018-02-13T00:28:20.938] [INFO] cheese - inserting 1000 documents. first: Critic of the slave trade and last: Whitmore v. Arkansas -[2018-02-13T00:28:20.979] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:20.987] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:28:20.995] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:28:21.041] [INFO] cheese - inserting 1000 documents. first: Spankee Rogers and last: Late Night Tales: Matt Helders -[2018-02-13T00:28:21.076] [INFO] cheese - inserting 1000 documents. first: Elwood Babbitt and last: Category:Archers at the 2015 European Games -[2018-02-13T00:28:21.099] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:21.148] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:21.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anti-atheists and last: Motorcycle enduro -[2018-02-13T00:28:21.265] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:21.295] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Ranjanrampal and last: Priotrochus iris -[2018-02-13T00:28:21.328] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:28:21.331] [INFO] cheese - inserting 1000 documents. first: File:PDF NN in ideal gas.svg and last: Umberto Menegalli -[2018-02-13T00:28:21.365] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:28:21.450] [INFO] cheese - inserting 1000 documents. first: Halley wars and last: Category:Games about extraterrestrial life -[2018-02-13T00:28:21.498] [INFO] cheese - inserting 1000 documents. first: Carcassonne (board game) and last: Jacqueline Lichtenberg -[2018-02-13T00:28:21.513] [INFO] cheese - inserting 1000 documents. first: Federation of Bangladesh Chambers of Commerce and Industries and last: Jamia Uloom-i-Sharia -[2018-02-13T00:28:21.569] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:28:21.606] [INFO] cheese - inserting 1000 documents. first: Rehabilitation Institute of Michigan and last: Zebrahead Discography -[2018-02-13T00:28:21.631] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T00:28:21.640] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:28:21.683] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:28:21.753] [INFO] cheese - inserting 1000 documents. first: Priotrochus kotschyi and last: Thomas Catesby Paget -[2018-02-13T00:28:21.805] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:21.903] [INFO] cheese - inserting 1000 documents. first: The Country Coordinating Mechanism and last: Category:2009 establishments in Canada -[2018-02-13T00:28:21.913] [INFO] cheese - inserting 1000 documents. first: Jewish Year Book and last: Rio Hondo bicycle path -[2018-02-13T00:28:21.950] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:21.959] [INFO] cheese - inserting 1000 documents. first: Black Star Canyon and last: File:Blume KTN.JPG -[2018-02-13T00:28:21.987] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2015 June 29 and last: H:GT -[2018-02-13T00:28:21.991] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:28:22.022] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:28:22.028] [INFO] cheese - inserting 1000 documents. first: Cosmic Hot Interstellar Plasma Spectrometer and last: 1961 Alabama Crimson Tide football team -[2018-02-13T00:28:22.048] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:22.100] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:28:22.198] [INFO] cheese - inserting 1000 documents. first: Category:1880 establishments in Cyprus and last: Masatane -[2018-02-13T00:28:22.249] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:28:22.422] [INFO] cheese - inserting 1000 documents. first: Template:FIFA Women's World Cup Best Young Player and last: File:Hideaway Girl poster.jpg -[2018-02-13T00:28:22.481] [INFO] cheese - inserting 1000 documents. first: Kimi no Iru Machi and last: Wikipedia:WikiProject Screencast/Scripts/Images -[2018-02-13T00:28:22.489] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:22.499] [INFO] cheese - inserting 1000 documents. first: Radio atmospherics and last: Bernard Rich -[2018-02-13T00:28:22.541] [INFO] cheese - inserting 1000 documents. first: Popular Front Party and last: Kinpachi-sensei -[2018-02-13T00:28:22.576] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:22.675] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:28:22.761] [INFO] cheese - inserting 1000 documents. first: 1962 Alabama Crimson Tide football team and last: Secret speech -[2018-02-13T00:28:22.754] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:28:22.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Archive242 and last: Merry Christmas, Baby (album) -[2018-02-13T00:28:22.862] [INFO] cheese - inserting 1000 documents. first: Methuen Treaty and last: Harve Bennett -[2018-02-13T00:28:22.864] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:28:22.930] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:28:22.972] [INFO] cheese - batch complete in: 1.34 secs -[2018-02-13T00:28:23.035] [INFO] cheese - inserting 1000 documents. first: Serpentine Running Club and last: Category:1036 by continent -[2018-02-13T00:28:23.101] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:28:23.134] [INFO] cheese - inserting 1000 documents. first: Railway stations in Sikkim and last: Coombe Junction Halt -[2018-02-13T00:28:23.137] [INFO] cheese - inserting 1000 documents. first: Manifest Destiny (song) and last: Katherine von Bora -[2018-02-13T00:28:23.186] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:28:23.189] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:23.289] [INFO] cheese - inserting 1000 documents. first: Rubber deck and last: Novovasilyevka -[2018-02-13T00:28:23.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Medfordese and last: Bank of America Tower, Albuquerque -[2018-02-13T00:28:23.326] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:28:23.357] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:28:23.423] [INFO] cheese - inserting 1000 documents. first: Category:Dutch sportsmen and last: Singa, Sudan -[2018-02-13T00:28:23.447] [INFO] cheese - inserting 1000 documents. first: Category:Urdu-English translators and last: Category:1792 disestablishments in Ireland -[2018-02-13T00:28:23.494] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:28:23.498] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:23.641] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Belarus and last: Criminal black man -[2018-02-13T00:28:23.755] [INFO] cheese - inserting 1000 documents. first: Rishtey (season 3) and last: Wrapped normal distribution -[2018-02-13T00:28:23.752] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:23.790] [INFO] cheese - inserting 1000 documents. first: Doc Neeson and last: File:Early flight 02561u (5).jpg -[2018-02-13T00:28:23.847] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:28:24.006] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:28:24.096] [INFO] cheese - inserting 1000 documents. first: American Sovereignty Restoration Act and last: Category:Sciaenidae -[2018-02-13T00:28:24.100] [INFO] cheese - inserting 1000 documents. first: Category:Rivers by mountain range and last: Module:Tennis events nav/doc -[2018-02-13T00:28:24.155] [INFO] cheese - inserting 1000 documents. first: Treadaway and last: Category:Renewable energy in the Netherlands -[2018-02-13T00:28:24.193] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:24.194] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:28:24.263] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:28:24.349] [INFO] cheese - inserting 1000 documents. first: Paul Émile Lecoq de Boisbaudran and last: Regent's Park -[2018-02-13T00:28:24.425] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T00:28:24.430] [INFO] cheese - inserting 1000 documents. first: The Long Cairn and last: Category:Assassinated Saudi Arabian people -[2018-02-13T00:28:24.443] [INFO] cheese - inserting 1000 documents. first: W. J. Muller and last: Wikipedia:WikiProject Spam/LinkReports/emmytvlegends.org -[2018-02-13T00:28:24.485] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:28:24.504] [INFO] cheese - inserting 1000 documents. first: David Mack (police officer) and last: Portal:Military history of Africa/Selected anniversaries/February 8 -[2018-02-13T00:28:24.525] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:28:24.603] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:28:24.645] [INFO] cheese - inserting 1000 documents. first: Nothris discretella and last: Federated states of micronesia national under-23 football team -[2018-02-13T00:28:24.707] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:24.732] [INFO] cheese - inserting 1000 documents. first: Warren Crawford and last: DeTas-Yayasan Pahang -[2018-02-13T00:28:24.802] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:24.834] [INFO] cheese - inserting 1000 documents. first: Bzoe and last: Gulf of Kachchh Marine National Park -[2018-02-13T00:28:24.914] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:28:24.919] [INFO] cheese - inserting 1000 documents. first: Template:1987–88 NHL Smythe Division standings and last: Range accrual -[2018-02-13T00:28:24.963] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:28:25.067] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Incidents/Stevertigo/September 2010 and last: Wikipedia:Articles for deletion/Timelog Project -[2018-02-13T00:28:25.234] [INFO] cheese - inserting 1000 documents. first: Dennis Kusinich and last: List of Dublin City University faculties, schools, research centres and laboratories -[2018-02-13T00:28:25.239] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:28:25.301] [INFO] cheese - inserting 1000 documents. first: Sebastián de Morra and last: Template:Pool A Men's Water polo at the 2015 Pan American Games -[2018-02-13T00:28:25.300] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:28:25.390] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:28:25.472] [INFO] cheese - inserting 1000 documents. first: Category:People's Liberation Army generals from Shanghai and last: Dundurn Publishing -[2018-02-13T00:28:25.540] [INFO] cheese - inserting 1000 documents. first: RMIT Music and last: O What a Beautiful Mornin' -[2018-02-13T00:28:25.586] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:28:25.634] [INFO] cheese - inserting 1000 documents. first: Herbert Norkus (ship) and last: Eric and Ernie -[2018-02-13T00:28:25.664] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:28:25.771] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:28:25.799] [INFO] cheese - inserting 1000 documents. first: Emil Holas and last: Marie de Garis -[2018-02-13T00:28:25.849] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:25.858] [INFO] cheese - inserting 1000 documents. first: Romania in the Eurovision Song Contest 1996 and last: SBRT -[2018-02-13T00:28:25.879] [INFO] cheese - inserting 1000 documents. first: David Croft (TV producer) and last: Mad Max -[2018-02-13T00:28:25.888] [INFO] cheese - inserting 1000 documents. first: Discovery Park erratic and last: Bartlett Regional Hospital -[2018-02-13T00:28:25.910] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:28:25.938] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:25.969] [INFO] cheese - batch complete in: 1.544 secs -[2018-02-13T00:28:26.015] [INFO] cheese - inserting 1000 documents. first: HD-39801 and last: Nebraska–Omaha Mavericks men's soccer -[2018-02-13T00:28:26.063] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:26.158] [INFO] cheese - inserting 1000 documents. first: Richard Schope and last: Cocktail effect -[2018-02-13T00:28:26.197] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:26.309] [INFO] cheese - inserting 1000 documents. first: Category:1733 disestablishments in Europe and last: Indian Institute of Technology (Ropar) -[2018-02-13T00:28:26.322] [INFO] cheese - inserting 1000 documents. first: File:Victor Vashi.gif and last: Thoracolumbosacral orthosis -[2018-02-13T00:28:26.337] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:28:26.385] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:28:26.400] [INFO] cheese - inserting 1000 documents. first: Levelling mechanism and last: Know your meme -[2018-02-13T00:28:26.422] [INFO] cheese - inserting 1000 documents. first: File:Short Ride 2.jpg and last: Subcommittee on Superfund and Environmental Health -[2018-02-13T00:28:26.440] [INFO] cheese - inserting 1000 documents. first: Ms frontpage and last: Persistent storage -[2018-02-13T00:28:26.449] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:26.464] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:26.503] [INFO] cheese - inserting 1000 documents. first: Spanish (wine) and last: Sebastián Arrieta -[2018-02-13T00:28:26.529] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:28:26.570] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:28:26.796] [INFO] cheese - inserting 1000 documents. first: Solidago simplex and last: File:MenAmongstMountainsCover.jpg -[2018-02-13T00:28:26.853] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:28:26.951] [INFO] cheese - inserting 1000 documents. first: Unramified morphism and last: George John (cricketer) -[2018-02-13T00:28:26.960] [INFO] cheese - inserting 1000 documents. first: Charles Percy Graham-Montgomery, 6th Baronet Stanhope and last: Category:1983 in New Zealand sport -[2018-02-13T00:28:26.964] [INFO] cheese - inserting 1000 documents. first: Herodias and last: Lisle (town), Broome County, New York -[2018-02-13T00:28:26.990] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:28:27.077] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:28:27.086] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T00:28:27.088] [INFO] cheese - inserting 1000 documents. first: Sadananda (of Vedantasara) and last: Payyavula Kesav -[2018-02-13T00:28:27.236] [INFO] cheese - inserting 1000 documents. first: Okanogan Highland and last: Eupatorium shimadai -[2018-02-13T00:28:27.236] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:28:27.332] [INFO] cheese - inserting 1000 documents. first: Severn Teackle Wallis and last: Chesapeake and Albemarle Railroad -[2018-02-13T00:28:27.386] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:28:27.575] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T00:28:27.767] [INFO] cheese - inserting 1000 documents. first: Windsor (village), Broome County, New York and last: Jackson (town), Washington County, Wisconsin -[2018-02-13T00:28:27.771] [INFO] cheese - inserting 1000 documents. first: Algebris and last: Template:RussiaAdmMunRef/per/munlist/solikamsky -[2018-02-13T00:28:27.808] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:28:27.842] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:28:27.880] [INFO] cheese - inserting 1000 documents. first: Book:Katy Perry and last: 10 (Los Angeles Railway) -[2018-02-13T00:28:27.895] [INFO] cheese - inserting 1000 documents. first: Crâng Park and last: Rebecca Boado Rosas -[2018-02-13T00:28:27.981] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:28:28.052] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:28:28.065] [INFO] cheese - inserting 1000 documents. first: Tanat Nusserbaev and last: Day 'n' Nite -[2018-02-13T00:28:28.081] [INFO] cheese - inserting 1000 documents. first: Ordnance Island, Bermuda and last: Category:1334 in India -[2018-02-13T00:28:28.115] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:28:28.134] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T00:28:28.364] [INFO] cheese - inserting 1000 documents. first: Boho, County Fermanagh and last: Bindi Kullar -[2018-02-13T00:28:28.388] [INFO] cheese - inserting 1000 documents. first: 1993 World Championships in Athletics – Men's 4 x 100 metres relay and last: Fricated alveolar click -[2018-02-13T00:28:28.426] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:28:28.450] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:28:28.531] [INFO] cheese - inserting 1000 documents. first: Butterfly (documentary film) and last: Template:Asian Games Tennis -[2018-02-13T00:28:28.537] [INFO] cheese - inserting 1000 documents. first: Category:Native American people of the Indian Wars and last: Fratres Pontifices -[2018-02-13T00:28:28.551] [INFO] cheese - inserting 1000 documents. first: Template:NRHP in Hudson County, New Jersey and last: St Kevins C.B.S -[2018-02-13T00:28:28.570] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:28.572] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:28:28.593] [INFO] cheese - inserting 1000 documents. first: La Digue Day Gecko and last: Gelechia fuscomaculella -[2018-02-13T00:28:28.619] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:28.649] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:28:28.795] [INFO] cheese - inserting 1000 documents. first: New York compression and last: Category:Scottish new wave musical groups -[2018-02-13T00:28:28.828] [INFO] cheese - inserting 1000 documents. first: Brown-mantled tamarin and last: Category:Libraries in North Carolina -[2018-02-13T00:28:28.835] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:28:28.878] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:28:28.882] [INFO] cheese - inserting 1000 documents. first: Louisiana and Arkansas Railroad and last: Be With You (MAX song) -[2018-02-13T00:28:28.938] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:28:28.960] [INFO] cheese - inserting 1000 documents. first: Jackson (village), Washington County, Wisconsin and last: Milford, New York -[2018-02-13T00:28:28.982] [INFO] cheese - inserting 1000 documents. first: WKRP In Cincinnati and last: Jake Rodríguez -[2018-02-13T00:28:28.997] [INFO] cheese - inserting 1000 documents. first: 9500 Liberty and last: Alla Gerber -[2018-02-13T00:28:29.016] [INFO] cheese - inserting 1000 documents. first: Lee Martyn Rogers and last: Category:CBeebies -[2018-02-13T00:28:29.035] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T00:28:29.053] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:28:29.074] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:29.097] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:28:29.277] [INFO] cheese - inserting 1000 documents. first: Huygens-Fokker Foundation and last: Sardarah -[2018-02-13T00:28:29.314] [INFO] cheese - inserting 1000 documents. first: File:Laulasiapartment1.jpg and last: Wikipedia:Version 1.0 Editorial Team/Dutch military history articles by quality/2 -[2018-02-13T00:28:29.325] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:28:29.383] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:29.401] [INFO] cheese - inserting 1000 documents. first: Typhoon Imbudo and last: Journal impact factor -[2018-02-13T00:28:29.440] [INFO] cheese - inserting 1000 documents. first: The Daily Grind (EP) and last: Category:Lithuanian mixed martial artists -[2018-02-13T00:28:29.441] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Famous Litvaks of Lithuanian origin and last: Morgan Matson -[2018-02-13T00:28:29.468] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:28:29.528] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:29.534] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:28:29.614] [INFO] cheese - inserting 1000 documents. first: Peter de Blaquiere and last: Template:RussiaAdmMunRef/pri/munlist/krasnoarmeysky -[2018-02-13T00:28:29.657] [INFO] cheese - inserting 1000 documents. first: The Ballad of Forty Dollars and last: Tydemania navigatoris -[2018-02-13T00:28:29.662] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:28:29.698] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:28:29.746] [INFO] cheese - inserting 1000 documents. first: File:Wcpw logo.jpg and last: Wikipedia:WikiProject Trains/ICC valuations/St. Johns River Terminal Company -[2018-02-13T00:28:29.815] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:29.888] [INFO] cheese - inserting 1000 documents. first: Baker’s Dozen and last: Activity on node (AON) diagram -[2018-02-13T00:28:29.905] [INFO] cheese - inserting 1000 documents. first: Teleperformance philippines and last: 2004 World Junior Championships in Athletics – Men's triple jump -[2018-02-13T00:28:29.923] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:28:29.947] [INFO] cheese - inserting 1000 documents. first: Saint Stanisław and last: Ctenotus taeniolatus -[2018-02-13T00:28:29.949] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:28:30.011] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:28:30.042] [INFO] cheese - inserting 1000 documents. first: Tydemania (fish) and last: Rutger de Regt -[2018-02-13T00:28:30.094] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:28:30.140] [INFO] cheese - inserting 1000 documents. first: Leyland Tiger (front-engined) and last: Htoma Myauk -[2018-02-13T00:28:30.176] [INFO] cheese - inserting 1000 documents. first: Southwestern Michigan Athletic Conference and last: Template:Soca music -[2018-02-13T00:28:30.200] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:28:30.229] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:28:30.289] [INFO] cheese - inserting 1000 documents. first: Morris (village), New York and last: Yue cuisine -[2018-02-13T00:28:30.308] [INFO] cheese - inserting 1000 documents. first: Template:Chicago Cubs and last: Kayseri Yeni Stadyumu -[2018-02-13T00:28:30.312] [INFO] cheese - inserting 1000 documents. first: Category:Congressional delegations from Virginia navigational boxes and last: Category:Lists of Hindu religious leaders -[2018-02-13T00:28:30.355] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:28:30.358] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:30.395] [INFO] cheese - batch complete in: 1.36 secs -[2018-02-13T00:28:30.591] [INFO] cheese - inserting 1000 documents. first: St. Luigi Orione and last: Violadores del verso -[2018-02-13T00:28:30.642] [INFO] cheese - inserting 1000 documents. first: Template:Nuclear-powered icebreakers of Russia and last: Remembering 1942 -[2018-02-13T00:28:30.679] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:28:30.703] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:28:30.716] [INFO] cheese - inserting 1000 documents. first: Pauline Calf and last: Cologna -[2018-02-13T00:28:30.770] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:28:30.843] [INFO] cheese - inserting 1000 documents. first: Undisclosed (song) and last: Estephan II -[2018-02-13T00:28:30.856] [INFO] cheese - inserting 1000 documents. first: Nerve guidance conduit and last: Now! 4 (Canadian series) -[2018-02-13T00:28:30.877] [INFO] cheese - inserting 1000 documents. first: Perite and last: Category:Manufacturing companies based in Washington, D.C. -[2018-02-13T00:28:30.886] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:28:30.898] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:28:30.956] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:28:31.098] [INFO] cheese - inserting 1000 documents. first: Douglas Everett (disambiguation) and last: Ditlef Hvistendahl Christiansen -[2018-02-13T00:28:31.144] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:31.147] [INFO] cheese - inserting 1000 documents. first: List of World War II divisions of Germany and last: Matthew Thiessen -[2018-02-13T00:28:31.168] [INFO] cheese - inserting 1000 documents. first: Rugby World Cup 2011 20th Place Playoff and last: Bengali Britons -[2018-02-13T00:28:31.210] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:28:31.244] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:28:31.326] [INFO] cheese - inserting 1000 documents. first: Joseph Reagle and last: Archibald Pitt -[2018-02-13T00:28:31.350] [INFO] cheese - inserting 1000 documents. first: NK Partizan and last: File:Students dancing the Conga (St John's Regional College, Australia, 2007).jpg -[2018-02-13T00:28:31.379] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:31.414] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:31.516] [INFO] cheese - inserting 1000 documents. first: File:Peter Fitzgerald cropped.jpg and last: Category:1962 music awards -[2018-02-13T00:28:31.543] [INFO] cheese - inserting 1000 documents. first: Canton cuisine and last: Self bondage -[2018-02-13T00:28:31.568] [INFO] cheese - inserting 1000 documents. first: Mendota Consolidated Community School District 289 and last: Ebersbach (Fils) station -[2018-02-13T00:28:31.579] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:28:31.616] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:31.642] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T00:28:31.707] [INFO] cheese - inserting 1000 documents. first: Tower City (Cleveland) and last: כּ -[2018-02-13T00:28:31.745] [INFO] cheese - inserting 1000 documents. first: Sampling (A level business) and last: File:MenAgainstTheSea.JPG -[2018-02-13T00:28:31.754] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:28:31.767] [INFO] cheese - inserting 1000 documents. first: You Better Keep It on Your Mind and last: William Ritchie (footballer) -[2018-02-13T00:28:31.815] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:28:31.819] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:28:31.900] [INFO] cheese - inserting 1000 documents. first: Mr. Bass Man and last: Brand Upon the Brain -[2018-02-13T00:28:31.940] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:28:32.012] [INFO] cheese - inserting 1000 documents. first: Madison-Model High School and last: Wikipedia:WikiProject Spam/Local/blendedbody.com -[2018-02-13T00:28:32.058] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:28:32.137] [INFO] cheese - inserting 1000 documents. first: Solidago hintoniorum and last: Template:User in WF -[2018-02-13T00:28:32.156] [INFO] cheese - inserting 1000 documents. first: William and Mary Quarterly and last: St. Mary Help of Christians Catholic School -[2018-02-13T00:28:32.169] [INFO] cheese - inserting 1000 documents. first: Varig Logistica and last: Renewed judgment as a matter of law -[2018-02-13T00:28:32.170] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:28:32.203] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:28:32.227] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:32.233] [INFO] cheese - inserting 1000 documents. first: Kangdong (village) and last: Template:DLM style -[2018-02-13T00:28:32.287] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:28:32.292] [INFO] cheese - inserting 1000 documents. first: Montereau-sur-le-Jard and last: Mehmet Hakki Hocaoğlu -[2018-02-13T00:28:32.345] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:28:32.476] [INFO] cheese - inserting 1000 documents. first: Buckleria brasilia and last: Bill Tupper -[2018-02-13T00:28:32.535] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:32.564] [INFO] cheese - inserting 1000 documents. first: Staples, William and last: Category:Maritime incidents in February 1940 -[2018-02-13T00:28:32.637] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:32.656] [INFO] cheese - inserting 1000 documents. first: She Used to Wanna Be a Ballerina and last: Spider-Man (1994 TV series: Season 1) -[2018-02-13T00:28:32.673] [INFO] cheese - inserting 1000 documents. first: Chen Yun and last: Fritjov Capra -[2018-02-13T00:28:32.686] [INFO] cheese - inserting 1000 documents. first: Cigarette packets in Australia and last: Category:1910s classical albums -[2018-02-13T00:28:32.723] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:28:32.740] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:32.768] [INFO] cheese - inserting 1000 documents. first: Sir Frederick Pile and last: Edmundo Rivero -[2018-02-13T00:28:32.811] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T00:28:32.864] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:28:32.872] [INFO] cheese - inserting 1000 documents. first: File:Ureme 4 Front.jpg and last: Wikipedia:Requests for adminship/Seattle Skier -[2018-02-13T00:28:32.956] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:28:33.084] [INFO] cheese - inserting 1000 documents. first: Susan Mokotoff Reverby and last: Andrea Mohr -[2018-02-13T00:28:33.229] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:33.280] [INFO] cheese - inserting 1000 documents. first: Government House Canada and last: The Street (1988 TV Series) -[2018-02-13T00:28:33.307] [INFO] cheese - inserting 1000 documents. first: Category:1910s albums and last: Category:Afghanistan-Sweden relations -[2018-02-13T00:28:33.307] [INFO] cheese - inserting 1000 documents. first: Buzzcocks F.O.C. and last: Anthony J. Catanese -[2018-02-13T00:28:33.342] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:28:33.384] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:28:33.389] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:28:33.519] [INFO] cheese - inserting 1000 documents. first: Onoel and last: Air cleaner -[2018-02-13T00:28:33.558] [INFO] cheese - inserting 1000 documents. first: Naturescaping and last: James Madison University College of Visual and Performing Arts -[2018-02-13T00:28:33.627] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:28:33.710] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:28:33.915] [INFO] cheese - inserting 1000 documents. first: File:Jack Goes Boating Poster.jpg and last: List of heads of state of Manchukuo -[2018-02-13T00:28:33.974] [INFO] cheese - inserting 1000 documents. first: David Bowman (bishop) and last: Template:Did you know nominations/List of tallest buildings in Brooklyn -[2018-02-13T00:28:33.999] [INFO] cheese - inserting 1000 documents. first: Blade (Puppet Master Character) and last: Police area -[2018-02-13T00:28:34.015] [INFO] cheese - inserting 1000 documents. first: Category:Afghanistan-Switzerland relations and last: Vientiane Prefecture -[2018-02-13T00:28:34.019] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:28:34.038] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:28:34.068] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:28:34.084] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:28:34.147] [INFO] cheese - inserting 1000 documents. first: Regents v. Bakke and last: Wikipedia:Special:Categories -[2018-02-13T00:28:34.196] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:28:34.209] [INFO] cheese - inserting 1000 documents. first: Tracked vehicle and last: Neoconservatives -[2018-02-13T00:28:34.252] [INFO] cheese - inserting 1000 documents. first: Heroin Chic and last: File:DeltaGoodremPredictableFrontCover.jpg -[2018-02-13T00:28:34.325] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:28:34.340] [INFO] cheese - batch complete in: 1.529 secs -[2018-02-13T00:28:34.392] [INFO] cheese - inserting 1000 documents. first: Tamron SP AF 11-18mm f/4.5-5.6 Di II LD Aspherical IF and last: Wikipedia:Articles for deletion/AFC Wimbledon league record by opponent -[2018-02-13T00:28:34.454] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:28:34.525] [INFO] cheese - inserting 1000 documents. first: Police Area and last: The Hathaways -[2018-02-13T00:28:34.525] [INFO] cheese - inserting 1000 documents. first: BAA airports and last: Something Right (Westlife song) -[2018-02-13T00:28:34.540] [INFO] cheese - inserting 1000 documents. first: Luang Prabang Province and last: Category:Nelson College faculty -[2018-02-13T00:28:34.579] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:28:34.585] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:28:34.597] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:28:34.606] [INFO] cheese - inserting 1000 documents. first: Beypazarı and last: Musayi District -[2018-02-13T00:28:34.668] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:28:34.789] [INFO] cheese - inserting 1000 documents. first: The Lord's Chosen Charismatic Revival Movement and last: Wikipedia:Articles for deletion/Trishneet Arora (2nd nomination) -[2018-02-13T00:28:34.829] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:28:34.855] [INFO] cheese - inserting 1000 documents. first: Bindon Liberty and last: List of state leaders in 288 -[2018-02-13T00:28:34.914] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:28:34.967] [INFO] cheese - inserting 1000 documents. first: Bucks Bridge and last: Category:Athletics (track and field) venues in Botswana -[2018-02-13T00:28:34.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ultimatemonica.free.fr and last: Wikipedia:Articles for deletion/Mercia Movement -[2018-02-13T00:28:35.013] [INFO] cheese - inserting 1000 documents. first: History of County Londonderry and last: Category:Gold mines in Kosovo -[2018-02-13T00:28:35.014] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:28:35.030] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:35.122] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:28:35.135] [INFO] cheese - inserting 1000 documents. first: Portal:Military history of Africa/Selected anniversaries/July 6 and last: Nepenthes angustifolia -[2018-02-13T00:28:35.214] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:35.265] [INFO] cheese - inserting 1000 documents. first: Coastal miterwort and last: West of the West -[2018-02-13T00:28:35.296] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:35.453] [INFO] cheese - inserting 1000 documents. first: Benedetto Pistrucci and last: Wikipedia:References -[2018-02-13T00:28:35.516] [INFO] cheese - inserting 1000 documents. first: Raicevic and last: Bhartiya Sarvekshan Sewa -[2018-02-13T00:28:35.520] [INFO] cheese - inserting 1000 documents. first: Category:Athletics (track and field) venues in Belgium and last: Category:1991–92 in Republic of Ireland football -[2018-02-13T00:28:35.562] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T00:28:35.572] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:28:35.580] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:35.597] [INFO] cheese - inserting 1000 documents. first: Klemm Kl.36 and last: Wrestling at the 2010 Commonwealth Games – Men's Greco-Roman 74 kg -[2018-02-13T00:28:35.625] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 287 and last: Harrington-Wilson 2 -[2018-02-13T00:28:35.661] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:35.677] [INFO] cheese - inserting 1000 documents. first: Template:2015 Pan American Games Argentina women's field hockey team roster and last: Many spotted Dichomeris Moth -[2018-02-13T00:28:35.701] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:28:35.736] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:35.763] [INFO] cheese - inserting 1000 documents. first: Borrowing (linguistics) and last: Nemo (American band) -[2018-02-13T00:28:35.807] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:28:35.984] [INFO] cheese - inserting 1000 documents. first: Negative effects of smoking and last: Madar, Nepal -[2018-02-13T00:28:36.044] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:28:36.164] [INFO] cheese - inserting 1000 documents. first: Chris Senn and last: List of mayors of Milan -[2018-02-13T00:28:36.180] [INFO] cheese - inserting 1000 documents. first: Many spotted dichomeris moth and last: Rakovica, Vozdovac -[2018-02-13T00:28:36.197] [INFO] cheese - inserting 1000 documents. first: Liz Tayler and last: Category:Office buildings completed in 1893 -[2018-02-13T00:28:36.205] [INFO] cheese - inserting 1000 documents. first: Wrestling at the 2010 Commonwealth Games – Men's Greco-Roman 84 kg and last: City Journal (Thrissur) -[2018-02-13T00:28:36.209] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:28:36.220] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:36.247] [INFO] cheese - inserting 1000 documents. first: Category:410 births and last: Genetically-modified crops -[2018-02-13T00:28:36.274] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:28:36.276] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:28:36.331] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:28:36.450] [INFO] cheese - inserting 1000 documents. first: Mahadewa Portaha and last: Men without Hats -[2018-02-13T00:28:36.502] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:28:36.611] [INFO] cheese - inserting 1000 documents. first: The Lovemaster (film) and last: Template:TV series based on Arthurian legends -[2018-02-13T00:28:36.623] [INFO] cheese - inserting 1000 documents. first: Helenium mexicanum and last: Filago rotundata -[2018-02-13T00:28:36.642] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:28:36.658] [INFO] cheese - inserting 1000 documents. first: Wellspring Academies and last: Jamie Wall -[2018-02-13T00:28:36.665] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:36.668] [INFO] cheese - inserting 1000 documents. first: Gaia and last: Terence O'Neill -[2018-02-13T00:28:36.695] [INFO] cheese - inserting 1000 documents. first: HMS Raven (1882) and last: List of settlements in Oregon -[2018-02-13T00:28:36.703] [INFO] cheese - inserting 1000 documents. first: Category:Grenada stubs and last: Ebba von Sydow -[2018-02-13T00:28:36.710] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:28:36.752] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:28:36.755] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T00:28:36.760] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:36.851] [INFO] cheese - inserting 1000 documents. first: Category:Murder in Barbados and last: Wendover Will -[2018-02-13T00:28:36.894] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:28:37.021] [INFO] cheese - inserting 1000 documents. first: 67th Texas Legislature and last: Kholus -[2018-02-13T00:28:37.028] [INFO] cheese - inserting 1000 documents. first: Murder of Martha Morrison and last: RU 23908 -[2018-02-13T00:28:37.084] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:28:37.093] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:28:37.152] [INFO] cheese - inserting 1000 documents. first: Brenden Benson and last: Andagaadu -[2018-02-13T00:28:37.158] [INFO] cheese - inserting 1000 documents. first: Lucia Anguissola and last: Ronald Allen Burdo -[2018-02-13T00:28:37.193] [INFO] cheese - inserting 1000 documents. first: Template:China Soccer Squad 2008 Summer Olympics and last: Template:IBAF World Rankings ref -[2018-02-13T00:28:37.205] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:37.243] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:37.267] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:28:37.347] [INFO] cheese - inserting 1000 documents. first: File:Racing Simulation 3.jpg and last: The Glen Campbell Collection (1962–1989) Gentle on My Mind -[2018-02-13T00:28:37.417] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:28:37.682] [INFO] cheese - inserting 1000 documents. first: Kholoos and last: Counterpoint (In the Nursery album) -[2018-02-13T00:28:37.799] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:28:37.841] [INFO] cheese - inserting 1000 documents. first: File:Corn Mo.jpg and last: James Thomas Bailey -[2018-02-13T00:28:37.867] [INFO] cheese - inserting 1000 documents. first: It (1927 film) and last: Leonard Peikoff -[2018-02-13T00:28:37.885] [INFO] cheese - inserting 1000 documents. first: File:My Soul to Take.jpg and last: Margherita Beriza -[2018-02-13T00:28:37.914] [INFO] cheese - inserting 1000 documents. first: Ronald Burdo and last: Mushroom Rock State Park -[2018-02-13T00:28:37.948] [INFO] cheese - inserting 1000 documents. first: Methodios of Thessaloniki and last: Wikipedia:WikiProject Spam/LinkReports/makemoneyonline.mx -[2018-02-13T00:28:37.953] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:28:38.015] [INFO] cheese - batch complete in: 1.26 secs -[2018-02-13T00:28:38.025] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:28:38.032] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:28:38.049] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:28:38.173] [INFO] cheese - inserting 1000 documents. first: 2-Dimethylaminoethylazide and last: Portal:Football in Germany/Selected biography/7 -[2018-02-13T00:28:38.238] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:28:38.352] [INFO] cheese - inserting 1000 documents. first: Jahloul Chico Bouchikhi and last: Category:2008 disestablishments in Wales -[2018-02-13T00:28:38.406] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:28:38.509] [INFO] cheese - inserting 1000 documents. first: Democrat Underground and last: Appleseed (disambiguation) -[2018-02-13T00:28:38.518] [INFO] cheese - inserting 1000 documents. first: Beriza and last: Bystré nad Topľou -[2018-02-13T00:28:38.580] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:38.593] [INFO] cheese - inserting 1000 documents. first: Category:1526 in the Spanish Empire and last: Moía Mane -[2018-02-13T00:28:38.598] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:28:38.659] [INFO] cheese - inserting 1000 documents. first: LNLS and last: Michael Massing -[2018-02-13T00:28:38.668] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:28:38.714] [INFO] cheese - inserting 1000 documents. first: Portal:Football in Germany/Selected biography/8 and last: San Jerónimo de Millapoa -[2018-02-13T00:28:38.752] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:28:38.761] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:28:38.775] [INFO] cheese - inserting 1000 documents. first: Category:2000 in Argentine television and last: Tolombeh-ye Seyyed Toghra -[2018-02-13T00:28:38.826] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:38.952] [INFO] cheese - inserting 1000 documents. first: Karanis and last: Dougco -[2018-02-13T00:28:38.995] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:39.053] [INFO] cheese - inserting 1000 documents. first: Faces (film) and last: Canada lynx -[2018-02-13T00:28:39.060] [INFO] cheese - inserting 1000 documents. first: Dina and Maerseveen Islands and last: Helly space -[2018-02-13T00:28:39.096] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:39.121] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T00:28:39.134] [INFO] cheese - inserting 1000 documents. first: Mikel Balenziaga and last: Gunnar Utterberg -[2018-02-13T00:28:39.141] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture of the day/December 1, 2005 and last: File:FC Indiana logo.jpg -[2018-02-13T00:28:39.161] [INFO] cheese - inserting 1000 documents. first: Dark age renaissance and last: Wikipedia:Sockpuppet investigations/Hammerharder -[2018-02-13T00:28:39.189] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:28:39.206] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:39.214] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:28:39.249] [INFO] cheese - inserting 1000 documents. first: Moia Mané and last: Wikipedia:Articles for deletion/History of tax resistance -[2018-02-13T00:28:39.322] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:28:39.428] [INFO] cheese - inserting 1000 documents. first: Julien Wartelle and last: Count Koopula -[2018-02-13T00:28:39.489] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:28:39.511] [INFO] cheese - inserting 1000 documents. first: Alfred Day and last: Asian Forum for Human Rights and Development -[2018-02-13T00:28:39.559] [INFO] cheese - inserting 1000 documents. first: Kenta Uchida and last: Georgia State University Library -[2018-02-13T00:28:39.564] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:39.609] [INFO] cheese - inserting 1000 documents. first: Scott Sherman (politician) and last: Category:1980 in American motorsport -[2018-02-13T00:28:39.657] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:28:39.674] [INFO] cheese - inserting 1000 documents. first: Category:People murdered in Tokyo and last: Scaleybark -[2018-02-13T00:28:39.695] [INFO] cheese - inserting 1000 documents. first: Antony Lane and last: Rug beater -[2018-02-13T00:28:39.700] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:28:39.750] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:28:39.837] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:28:40.026] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Bakakkaa and last: Burton, Cheshire -[2018-02-13T00:28:40.045] [INFO] cheese - inserting 1000 documents. first: Category:1979 in American motorsport and last: Louisiana State Highway 131 -[2018-02-13T00:28:40.094] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:28:40.108] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:40.130] [INFO] cheese - inserting 1000 documents. first: North Caucasian Emirate and last: Category:1890s establishments by country -[2018-02-13T00:28:40.176] [INFO] cheese - inserting 1000 documents. first: I-485/South Boulevard and last: Aspro-Ocio Group -[2018-02-13T00:28:40.183] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:28:40.232] [INFO] cheese - inserting 1000 documents. first: North African Cup Winners Cup and last: Flasks -[2018-02-13T00:28:40.253] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:28:40.257] [INFO] cheese - inserting 1000 documents. first: Canadian lynx and last: Black Sabbath (album) -[2018-02-13T00:28:40.298] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:28:40.349] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T00:28:40.456] [INFO] cheese - inserting 1000 documents. first: Gammarid amphipods and last: Bismarck Brown Y -[2018-02-13T00:28:40.528] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:28:40.640] [INFO] cheese - inserting 1000 documents. first: In Limbo (song) and last: Sudbrook House -[2018-02-13T00:28:40.685] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:28:40.689] [INFO] cheese - inserting 1000 documents. first: Football at the 1912 Summer Olympics – Consolation tournament and last: File:OLIVER111.jpeg -[2018-02-13T00:28:40.721] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/modeldads.co.uk and last: The Dark of the Moon -[2018-02-13T00:28:40.736] [INFO] cheese - inserting 1000 documents. first: Italo-Albanese Diocese of Piana degli Albanesi and last: Idiopoma doliaris -[2018-02-13T00:28:40.755] [INFO] cheese - inserting 1000 documents. first: Operation Magician and last: Template:POTD protected/2008-11-22 -[2018-02-13T00:28:40.763] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:28:40.782] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:28:40.789] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:28:40.839] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:28:40.982] [INFO] cheese - inserting 1000 documents. first: Marc Zoro and last: Riceland Foods -[2018-02-13T00:28:41.036] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:28:41.153] [INFO] cheese - inserting 1000 documents. first: Hawley smoot tariff and last: Michelle Hamer -[2018-02-13T00:28:41.195] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:41.232] [INFO] cheese - inserting 1000 documents. first: MT Stolt Valor and last: Art Students League of NY -[2018-02-13T00:28:41.269] [INFO] cheese - inserting 1000 documents. first: Category:Prisoners of war held by Italy and last: Iris stylosa -[2018-02-13T00:28:41.283] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:28:41.302] [INFO] cheese - inserting 1000 documents. first: 2009, The Year of Us and last: People's Agenda -[2018-02-13T00:28:41.359] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:28:41.391] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:28:41.435] [INFO] cheese - inserting 1000 documents. first: File:Malaysian Newsprint Industries logo.jpg and last: Kodumudi Magudeswarar temple -[2018-02-13T00:28:41.510] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:28:41.577] [INFO] cheese - inserting 1000 documents. first: Radio orienteering and last: Taka -[2018-02-13T00:28:41.640] [INFO] cheese - inserting 1000 documents. first: Wadsworth and last: Stacks -[2018-02-13T00:28:41.663] [INFO] cheese - inserting 1000 documents. first: List of accolades received by Milk and last: Category:Films directed by John Pasquin -[2018-02-13T00:28:41.689] [INFO] cheese - inserting 1000 documents. first: George "The Fairy Earl" FitzGerald, 16th Earl of Kildare and last: Template:User ANG -[2018-02-13T00:28:41.725] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:28:41.726] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:28:41.732] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:28:41.753] [INFO] cheese - inserting 1000 documents. first: Russian peasants and last: Dick Darby -[2018-02-13T00:28:41.804] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:28:41.835] [INFO] cheese - batch complete in: 1.486 secs -[2018-02-13T00:28:42.027] [INFO] cheese - inserting 1000 documents. first: Category:Thomas College people and last: Wikipedia:WikiProject Spam/LinkReports/emil.input.sk -[2018-02-13T00:28:42.139] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:28:42.278] [INFO] cheese - inserting 1000 documents. first: Shusaku and last: Trace inequalities -[2018-02-13T00:28:42.290] [INFO] cheese - inserting 1000 documents. first: Chandra Mahesh and last: Category:Theatres completed in 1603 -[2018-02-13T00:28:42.311] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:42.321] [INFO] cheese - inserting 1000 documents. first: Médina, Dakar and last: Mominul Haque -[2018-02-13T00:28:42.336] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:28:42.397] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:28:42.419] [INFO] cheese - inserting 1000 documents. first: Hetyefo and last: Rindermarktbrunnen -[2018-02-13T00:28:42.474] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:28:42.491] [INFO] cheese - inserting 1000 documents. first: Category:History of racism in the United States and last: Basic Neuroanatomy -[2018-02-13T00:28:42.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/emil.input.sk and last: List of reported extraterrestrial beings -[2018-02-13T00:28:42.585] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:28:42.627] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:28:42.754] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Disney articles of Unknown-importance and last: Category:1720s in the Viceroyalty of Peru -[2018-02-13T00:28:42.804] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:42.820] [INFO] cheese - inserting 1000 documents. first: Kompong Phluk and last: The Bay Area's News Station -[2018-02-13T00:28:42.855] [INFO] cheese - inserting 1000 documents. first: File:Across My Heart.jpg and last: Evhe -[2018-02-13T00:28:42.871] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:28:42.885] [INFO] cheese - inserting 1000 documents. first: John Waite (broadcaster) and last: Wikipedia:Files for deletion/2007 May 12 -[2018-02-13T00:28:42.924] [INFO] cheese - inserting 1000 documents. first: Félicien Rops and last: Motor Torpedo Boat PT-109 -[2018-02-13T00:28:42.924] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:28:42.943] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:28:43.000] [INFO] cheese - inserting 1000 documents. first: Cheney Racing and last: Wikipedia:WikiProject Spam/LinkReports/generouspeople.blogspot.com -[2018-02-13T00:28:43.021] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T00:28:43.060] [INFO] cheese - inserting 1000 documents. first: Madagascar Current and last: Wikipedia:Articles for deletion/5205 Izard Street -[2018-02-13T00:28:43.077] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:28:43.159] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:28:43.286] [INFO] cheese - inserting 1000 documents. first: Category:1740s in the Viceroyalty of Peru and last: Vanessa Yeung -[2018-02-13T00:28:43.311] [INFO] cheese - inserting 1000 documents. first: Young Broadcasting San Francisco and last: Ghoria gigantea -[2018-02-13T00:28:43.332] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:28:43.390] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:28:43.486] [INFO] cheese - inserting 1000 documents. first: List of Dallas Stars seasons and last: Paul Brydon -[2018-02-13T00:28:43.550] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:28:43.593] [INFO] cheese - inserting 1000 documents. first: Franzbrötchen and last: Oregon Senate Bill 100 (1973) -[2018-02-13T00:28:43.660] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:28:43.704] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/generouspeople.blogspot.com and last: Leo Diogenes -[2018-02-13T00:28:43.764] [INFO] cheese - inserting 1000 documents. first: Agylla gigas and last: Lashtaghan-e Pa'in va Bala -[2018-02-13T00:28:43.772] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:28:43.816] [INFO] cheese - inserting 1000 documents. first: Category:Tennis at the 2015 Summer Universiade and last: File:Marygold.png -[2018-02-13T00:28:43.831] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:28:43.888] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:28:43.992] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Website template and last: Template:Cathead naval ships of -[2018-02-13T00:28:44.008] [INFO] cheese - inserting 1000 documents. first: CBS Digital Media and last: Vasia Panagopoulou -[2018-02-13T00:28:44.063] [INFO] cheese - inserting 1000 documents. first: Template:Poland-poet-stub and last: Β¹ Mon -[2018-02-13T00:28:44.061] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:28:44.074] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:28:44.123] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:28:44.148] [INFO] cheese - inserting 1000 documents. first: Bibesco, Elizabeth and last: VW Corrado -[2018-02-13T00:28:44.189] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Multi-sport events articles and last: Yoshifumi -[2018-02-13T00:28:44.198] [INFO] cheese - inserting 1000 documents. first: Lord Alexander Russell, GCB and last: List of earthquakes in 1952 -[2018-02-13T00:28:44.219] [INFO] cheese - inserting 1000 documents. first: Lashtaghan-e Pain and last: Air Tractor AT-503A -[2018-02-13T00:28:44.226] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T00:28:44.230] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:28:44.232] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:44.286] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:28:44.515] [INFO] cheese - inserting 1000 documents. first: Boswell, Alexander and last: Adrián Palomares -[2018-02-13T00:28:44.549] [INFO] cheese - inserting 1000 documents. first: Seán Ryan (Irish fiddler) and last: Tayk -[2018-02-13T00:28:44.555] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:28:44.632] [INFO] cheese - inserting 1000 documents. first: Beta Monocerotis A and last: Te Pū Ao -[2018-02-13T00:28:44.637] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:28:44.705] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:28:44.715] [INFO] cheese - inserting 1000 documents. first: Kevin Anderson (Athletic Director) and last: Charlotte of Great Britain and Ireland -[2018-02-13T00:28:44.734] [INFO] cheese - inserting 1000 documents. first: Bumdelling Wildlife Sanctuary and last: Category:Egyptian sportsmen -[2018-02-13T00:28:44.775] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:28:44.779] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:44.790] [INFO] cheese - inserting 1000 documents. first: The Wizard of Oz in Concert and last: Ruff Ryders' First Lady -[2018-02-13T00:28:44.866] [INFO] cheese - inserting 1000 documents. first: Beige box and last: 12th September -[2018-02-13T00:28:44.867] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:28:44.909] [INFO] cheese - inserting 1000 documents. first: Divaricate navarretia and last: File:Nana's Party poster.jpg -[2018-02-13T00:28:44.930] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:28:44.984] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:28:45.152] [INFO] cheese - inserting 1000 documents. first: List of Sciences Po people and last: Battle of Marracuene -[2018-02-13T00:28:45.158] [INFO] cheese - inserting 1000 documents. first: History of the Saint Thomas Christian tradition and last: Wikipedia:Articles for deletion/Batman/Houdini: The Devil's Workshop -[2018-02-13T00:28:45.260] [INFO] cheese - inserting 1000 documents. first: Andrew Smyth and last: Ayumi Hamasaki Countdown Live 2009–2010 A: Future Classics -[2018-02-13T00:28:45.263] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:28:45.289] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:28:45.329] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:45.348] [INFO] cheese - inserting 1000 documents. first: Queen Charlotte of Hanover and last: Josip Ilicic -[2018-02-13T00:28:45.399] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:28:45.415] [INFO] cheese - inserting 1000 documents. first: Arhus Theatre and last: File:Monorail Station.jpg -[2018-02-13T00:28:45.439] [INFO] cheese - inserting 1000 documents. first: Broadley's Flat Lizard and last: Gutierrezia longipappa -[2018-02-13T00:28:45.471] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:28:45.518] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:28:45.700] [INFO] cheese - inserting 1000 documents. first: 2009 in Iraqi football and last: NLR crane tank -[2018-02-13T00:28:45.707] [INFO] cheese - inserting 1000 documents. first: September 12th and last: The Magic School Bus Gets Ants In It's Pants -[2018-02-13T00:28:45.707] [INFO] cheese - inserting 1000 documents. first: Bessemer Michigan and last: Aloa gangara -[2018-02-13T00:28:45.792] [INFO] cheese - inserting 1000 documents. first: Category:People from Owensboro, Kentucky and last: Tropical agriculture -[2018-02-13T00:28:45.797] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:28:45.833] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:28:45.840] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:28:45.882] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:28:45.908] [INFO] cheese - inserting 1000 documents. first: I rymden finns inga känslor and last: File:Grand-eastbourne.jpg -[2018-02-13T00:28:46.005] [INFO] cheese - inserting 1000 documents. first: Dimitrie Neculuta and last: Murman -[2018-02-13T00:28:46.029] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:28:46.090] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:28:46.095] [INFO] cheese - inserting 1000 documents. first: Jacques Tetreault and last: File:Haka2.png -[2018-02-13T00:28:46.169] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:28:46.361] [INFO] cheese - inserting 1000 documents. first: Residential colleges of Rice University and last: Stein Ringen -[2018-02-13T00:28:46.403] [INFO] cheese - inserting 1000 documents. first: Lisa Says and last: Russian Venezuelan -[2018-02-13T00:28:46.423] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:28:46.429] [INFO] cheese - inserting 1000 documents. first: Category:Government buildings completed in 1838 and last: Titlagarh Junction -[2018-02-13T00:28:46.450] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:28:46.459] [INFO] cheese - inserting 1000 documents. first: Colum Cille mac Fedelmtheo and last: Roger Yang -[2018-02-13T00:28:46.486] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:28:46.534] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:28:46.558] [INFO] cheese - inserting 1000 documents. first: Lock and Key Party and last: Category:Large burghs -[2018-02-13T00:28:46.634] [INFO] cheese - inserting 1000 documents. first: Ñegro and last: File:Melbournegrammarcrest.jpg -[2018-02-13T00:28:46.650] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:28:46.694] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:46.797] [INFO] cheese - inserting 1000 documents. first: Category:1515 establishments in Spain and last: Heiliger Forest -[2018-02-13T00:28:46.831] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:28:46.876] [INFO] cheese - inserting 1000 documents. first: Public welfare in Puerto Rico and last: Scenes From An Execution -[2018-02-13T00:28:46.879] [INFO] cheese - inserting 1000 documents. first: MT USA and last: William III of Toulouse -[2018-02-13T00:28:46.888] [INFO] cheese - inserting 1000 documents. first: Music of Venezuela and last: Unitary representation -[2018-02-13T00:28:46.913] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:28:46.922] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:28:46.936] [INFO] cheese - inserting 1000 documents. first: File:Roxie Hart - 1942 - Poster.png and last: Fixed set -[2018-02-13T00:28:47.000] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T00:28:47.039] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:28:47.113] [INFO] cheese - inserting 1000 documents. first: Exit (unix) and last: Ackersdijk -[2018-02-13T00:28:47.160] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:28:47.193] [INFO] cheese - inserting 1000 documents. first: Single-sided/double-sided and last: Vasocontrictor -[2018-02-13T00:28:47.255] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:28:47.306] [INFO] cheese - inserting 1000 documents. first: File:Atom -- An Odyssey from the Big Bang to Life on Earth -- book cover.jpg and last: Alien Nation (album) -[2018-02-13T00:28:47.346] [INFO] cheese - inserting 1000 documents. first: File:Bill Carson.jpg and last: Devil's Castle Dracula X: Rondo of Blood -[2018-02-13T00:28:47.355] [INFO] cheese - inserting 1000 documents. first: Attractive fixed set and last: Mount K'lamm -[2018-02-13T00:28:47.345] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:28:47.405] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:28:47.410] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:28:47.419] [INFO] cheese - inserting 1000 documents. first: KAMEWA and last: Lorenzo Valla's Dialogue on Free Will -[2018-02-13T00:28:47.463] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:47.707] [INFO] cheese - inserting 1000 documents. first: Political positions of Carly Fiorina and last: Nuno Santos (footballer born 1980) -[2018-02-13T00:28:47.730] [INFO] cheese - inserting 1000 documents. first: Ollywood films of 1973 and last: Category:1976 in Spanish motorsport -[2018-02-13T00:28:47.732] [INFO] cheese - inserting 1000 documents. first: Moss Bros. Group and last: Wikipedia:Articles for deletion/Log/2008 November 24 -[2018-02-13T00:28:47.743] [INFO] cheese - inserting 1000 documents. first: SpongeBob Home Video and last: Capital gains tax in Australia -[2018-02-13T00:28:47.751] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:28:47.768] [INFO] cheese - inserting 1000 documents. first: Template:Duchesses of Orléans and last: Category:Buffalo Sabres logos -[2018-02-13T00:28:47.796] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:28:47.806] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:28:47.813] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:28:47.842] [INFO] cheese - inserting 1000 documents. first: William Weare and last: Wikipedia:Non-free content review/Archive 1 -[2018-02-13T00:28:47.855] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:28:47.924] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:28:47.987] [INFO] cheese - inserting 1000 documents. first: Easily recognizable code and last: Peter–Weyl theorem -[2018-02-13T00:28:48.061] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T00:28:48.142] [INFO] cheese - inserting 1000 documents. first: Category:1966 in Taiwanese sport and last: Category:1252 in the Holy Roman Empire -[2018-02-13T00:28:48.176] [INFO] cheese - inserting 1000 documents. first: Gorna Vasilitsa and last: New Town Eco Park -[2018-02-13T00:28:48.210] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:48.224] [INFO] cheese - inserting 1000 documents. first: From the Beggar's Mantle and last: Yeaw v. Boy Scouts of America -[2018-02-13T00:28:48.242] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:28:48.280] [INFO] cheese - inserting 1000 documents. first: Dr. Prof. Anatoly Nikolayevich Perminov and last: Gilla Isa Mac Fir Bisigh -[2018-02-13T00:28:48.284] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:28:48.304] [INFO] cheese - inserting 1000 documents. first: RAF Exeter and last: NYUDL -[2018-02-13T00:28:48.328] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:48.350] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:28:48.419] [INFO] cheese - inserting 1000 documents. first: Rose Gamgee and last: Category:Ferroalloys -[2018-02-13T00:28:48.510] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:28:48.651] [INFO] cheese - inserting 1000 documents. first: Category:1258 in the Holy Roman Empire and last: Koot (disambiguation) -[2018-02-13T00:28:48.656] [INFO] cheese - inserting 1000 documents. first: File:Let's Do Christmas with Gino and Mel.png and last: File:Homer and Ruth Drake Field House.jpg -[2018-02-13T00:28:48.694] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:48.700] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:48.773] [INFO] cheese - inserting 1000 documents. first: The Emerald Forest (film) and last: Neil Reidman -[2018-02-13T00:28:48.817] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:28:48.833] [INFO] cheese - inserting 1000 documents. first: Hellinsia carphodactyla and last: 1950–51 Ashes series -[2018-02-13T00:28:48.878] [INFO] cheese - inserting 1000 documents. first: Punctate flower chafer and last: Darshan -[2018-02-13T00:28:48.878] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:28:48.930] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:28:49.049] [INFO] cheese - inserting 1000 documents. first: Kermit-Tipton Stadium and last: Royal Town of Sutton Coldfield -[2018-02-13T00:28:49.070] [INFO] cheese - inserting 1000 documents. first: Diesel and dust and last: Arrondissement of Les Sables-d'Olonne -[2018-02-13T00:28:49.086] [INFO] cheese - inserting 1000 documents. first: Ashkan, Minab and last: 2012 Aceh Governor Cup -[2018-02-13T00:28:49.090] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:28:49.130] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:28:49.136] [INFO] cheese - inserting 1000 documents. first: Anthony Van Dyck and last: Mike Levey -[2018-02-13T00:28:49.138] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:28:49.159] [INFO] cheese - inserting 1000 documents. first: Baise Bichawa and last: Lo Zoo di 105 -[2018-02-13T00:28:49.199] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:28:49.208] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:28:49.311] [INFO] cheese - inserting 1000 documents. first: Maheswaram and last: Ludi Juvenales -[2018-02-13T00:28:49.329] [INFO] cheese - inserting 1000 documents. first: Bairi Sawai and last: Max Whitlock -[2018-02-13T00:28:49.358] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:28:49.378] [INFO] cheese - inserting 1000 documents. first: Lohman (disambiguation) and last: Nzau Namsan -[2018-02-13T00:28:49.379] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:28:49.419] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:28:49.542] [INFO] cheese - inserting 1000 documents. first: Category:1986 establishments in Uganda and last: US biological warfare program -[2018-02-13T00:28:49.577] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:49.653] [INFO] cheese - inserting 1000 documents. first: File:Linger in shadows ps3 cover.png and last: Photogramme -[2018-02-13T00:28:49.686] [INFO] cheese - inserting 1000 documents. first: Kupriyanov Island and last: Renown (German Barque) -[2018-02-13T00:28:49.699] [INFO] cheese - inserting 1000 documents. first: Input/output processing and last: Happy Holiday(s) -[2018-02-13T00:28:49.706] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:28:49.766] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:49.802] [INFO] cheese - inserting 1000 documents. first: Stuart Uhlmann and last: Dyschirius kadleci -[2018-02-13T00:28:49.869] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:28:49.877] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:49.913] [INFO] cheese - inserting 1000 documents. first: Nyumba ya Sanaa and last: Portal:LGBT/Selected anniversaries/8 -[2018-02-13T00:28:49.950] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:28:50.116] [INFO] cheese - inserting 1000 documents. first: Hohes Venn – Eifel Nature Park and last: Mis Kan -[2018-02-13T00:28:50.134] [INFO] cheese - inserting 1000 documents. first: Methoxyethane and last: Ti Grace -[2018-02-13T00:28:50.153] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:28:50.165] [INFO] cheese - inserting 1000 documents. first: File:Xenosaga Episode II - Jenseits von Gut und Bose Coverart.png and last: 2006 Rhythmic Gymnastics European Championships -[2018-02-13T00:28:50.166] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:28:50.169] [INFO] cheese - inserting 1000 documents. first: Dyschirius ruthmuellerae and last: Hieracium absonum -[2018-02-13T00:28:50.212] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:28:50.249] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:28:50.259] [INFO] cheese - inserting 1000 documents. first: Raphael Semmes and last: Marc Rich -[2018-02-13T00:28:50.330] [INFO] cheese - inserting 1000 documents. first: Academic Association of Coimbra and last: David Sherman -[2018-02-13T00:28:50.337] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T00:28:50.345] [INFO] cheese - inserting 1000 documents. first: Diospyros whyteana and last: Juliet Doesn't Live Here Anymore -[2018-02-13T00:28:50.386] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:28:50.410] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:28:50.521] [INFO] cheese - inserting 1000 documents. first: Hieracium chapacanum and last: Hearn, John -[2018-02-13T00:28:50.556] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:28:50.571] [INFO] cheese - inserting 1000 documents. first: Pulad-e Qasemi and last: Category:2005 establishments in Armenia -[2018-02-13T00:28:50.638] [INFO] cheese - inserting 1000 documents. first: Émily de Châtelet and last: Revy -[2018-02-13T00:28:50.644] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:28:50.657] [INFO] cheese - inserting 1000 documents. first: Manoj Hemaratne and last: Thomassen -[2018-02-13T00:28:50.694] [INFO] cheese - inserting 1000 documents. first: North Dakota College Athletic Conference and last: Wikipedia:Articles for deletion/Criticism of Nortel -[2018-02-13T00:28:50.705] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:50.709] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:28:50.763] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:50.780] [INFO] cheese - inserting 1000 documents. first: Loricariichthys rostratus and last: +x (Martin Garrix album) -[2018-02-13T00:28:50.820] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:28:50.979] [INFO] cheese - inserting 1000 documents. first: Takehito and last: Hajji Khadem -[2018-02-13T00:28:51.003] [INFO] cheese - inserting 1000 documents. first: All Nippon Airways Flight 58 and last: Zettafarad -[2018-02-13T00:28:51.041] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:51.087] [INFO] cheese - inserting 1000 documents. first: Daniel Joseph Daly and last: 2009 Pickup Truck Racing season -[2018-02-13T00:28:51.104] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:28:51.165] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:28:51.213] [INFO] cheese - inserting 1000 documents. first: Hindle Wakes (1952 film) and last: Wikipedia:WikiProject Spam/LinkReports/rochesterway.com -[2018-02-13T00:28:51.214] [INFO] cheese - inserting 1000 documents. first: Riverside Historic District (Evansville, Indiana) and last: Template:Lago d'Idro -[2018-02-13T00:28:51.222] [INFO] cheese - inserting 1000 documents. first: Daniel Ziegler and last: Captain Cook -[2018-02-13T00:28:51.224] [INFO] cheese - inserting 1000 documents. first: Template:Women's Volleyball World Championship winners and last: Wikipedia:WikiProject Spam/LinkReports/thai-buddha-amulets.com -[2018-02-13T00:28:51.264] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:51.263] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:28:51.290] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:28:51.323] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T00:28:51.420] [INFO] cheese - inserting 1000 documents. first: Mahreghan and last: Tombu Shomali -[2018-02-13T00:28:51.460] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:28:51.600] [INFO] cheese - inserting 1000 documents. first: Taney Place and last: Carbon-based fuel -[2018-02-13T00:28:51.611] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SPP and last: James Potter -[2018-02-13T00:28:51.656] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:28:51.672] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:28:51.695] [INFO] cheese - inserting 1000 documents. first: Category:13th century BC in India and last: The Stoom Stichting Nederland -[2018-02-13T00:28:51.722] [INFO] cheese - inserting 1000 documents. first: Margaret Wild and last: 2008 Bucharest Summit -[2018-02-13T00:28:51.745] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:51.789] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:28:51.793] [INFO] cheese - inserting 1000 documents. first: Category:21st-century establishments in Spain and last: Charles H. Williams -[2018-02-13T00:28:51.848] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:28:51.885] [INFO] cheese - inserting 1000 documents. first: Tombu Shemali and last: File:Alliance Review logo.png -[2018-02-13T00:28:51.933] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:52.095] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2008-11-27 and last: Wikipedia:WikiProject Spam/LinkReports/pontaven.org -[2018-02-13T00:28:52.135] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:28:52.180] [INFO] cheese - inserting 1000 documents. first: Category:2009 establishments in Montserrat and last: List of Women's National Basketball Association career steals leaders -[2018-02-13T00:28:52.192] [INFO] cheese - inserting 1000 documents. first: Joseph Ujlaki and last: Lex Poetelia Papiria -[2018-02-13T00:28:52.202] [INFO] cheese - inserting 1000 documents. first: Warren's, Vermont and last: Israel Israeli -[2018-02-13T00:28:52.214] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:28:52.222] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:28:52.234] [INFO] cheese - inserting 1000 documents. first: Psychological projection and last: Bai Chongxi -[2018-02-13T00:28:52.238] [INFO] cheese - inserting 1000 documents. first: Portal:Austria/Selected article/4 and last: Category:1964 establishments in Australia -[2018-02-13T00:28:52.239] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:28:52.283] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:28:52.290] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:28:52.325] [INFO] cheese - inserting 1000 documents. first: Elm Guest House claims and controversy and last: Tetsuharu -[2018-02-13T00:28:52.354] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:28:52.434] [INFO] cheese - inserting 1000 documents. first: File:BritanniaScan1.jpg and last: Template:1999 WNBA Western Conference standings -[2018-02-13T00:28:52.482] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:28:52.508] [INFO] cheese - inserting 1000 documents. first: Rabbit, Not Rabbot and last: Category:1st-century BC theatre -[2018-02-13T00:28:52.521] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chris Kangas and last: Freaky (song) -[2018-02-13T00:28:52.542] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:28:52.571] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:28:52.609] [INFO] cheese - inserting 1000 documents. first: Lauri Harjola and last: Cizeta-Moroder V16T -[2018-02-13T00:28:52.642] [INFO] cheese - inserting 1000 documents. first: Category:1963 establishments in Australia and last: Category:1840s conflicts -[2018-02-13T00:28:52.662] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:52.684] [INFO] cheese - inserting 1000 documents. first: All My Life (Irving Berlin song) and last: Category:1931 establishments in Montenegro -[2018-02-13T00:28:52.697] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:28:52.728] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:28:52.781] [INFO] cheese - inserting 1000 documents. first: John G. Simcoe and last: Basement apartment -[2018-02-13T00:28:52.835] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:28:52.884] [INFO] cheese - inserting 1000 documents. first: PA 44 and last: South Omaha Main Street Historic District -[2018-02-13T00:28:52.884] [INFO] cheese - inserting 1000 documents. first: Ground-based telescope and last: Ardozyga voluta -[2018-02-13T00:28:52.924] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:28:52.925] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:28:53.081] [INFO] cheese - inserting 1000 documents. first: Koushi Rikudou and last: Fort Duncan -[2018-02-13T00:28:53.098] [INFO] cheese - inserting 1000 documents. first: John rothchild and last: Order of Wen the Eternally Surprised -[2018-02-13T00:28:53.150] [INFO] cheese - inserting 1000 documents. first: Union Carbide and last: Floris V, Count of Holland -[2018-02-13T00:28:53.174] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:28:53.216] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:28:53.223] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Abby Martin and last: Marhun, Rudkhaneh -[2018-02-13T00:28:53.247] [INFO] cheese - inserting 1000 documents. first: Court-Martial Appeal Court and last: 69th Reconnaissance Group -[2018-02-13T00:28:53.279] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:28:53.291] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:28:53.303] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:28:53.358] [INFO] cheese - inserting 1000 documents. first: Ardozyga xanthocephala and last: Category:LGBT journalists from South Africa -[2018-02-13T00:28:53.367] [INFO] cheese - inserting 1000 documents. first: Boris Mikhailovich Kustodiev and last: Iur'yev-Polskiy District -[2018-02-13T00:28:53.405] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:28:53.413] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:28:53.586] [INFO] cheese - inserting 1000 documents. first: Port 25565 and last: File:H&a romances.jpg -[2018-02-13T00:28:53.627] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:28:53.649] [INFO] cheese - inserting 1000 documents. first: Category:Scottish fiddlers and last: Wikipedia:Articles for deletion/Girafa 2 -[2018-02-13T00:28:53.657] [INFO] cheese - inserting 1000 documents. first: Third Stanhope Ministry and last: Solidarity (social sciences) -[2018-02-13T00:28:53.684] [INFO] cheese - inserting 1000 documents. first: Marhun, Rudan and last: Template:Muhan Dojeon -[2018-02-13T00:28:53.691] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:28:53.708] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:28:53.739] [INFO] cheese - inserting 1000 documents. first: Leader (movie) and last: Chōjūgiga -[2018-02-13T00:28:53.739] [INFO] cheese - inserting 1000 documents. first: File:Genes Reunited.png and last: Seth C. Bradford -[2018-02-13T00:28:53.766] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:28:53.769] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:28:53.772] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:28:53.990] [INFO] cheese - inserting 1000 documents. first: Solidarity (social science) and last: Wikipedia:Articles for deletion/Ryebender -[2018-02-13T00:28:54.024] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:28:54.059] [INFO] cheese - inserting 1000 documents. first: Home and Away: Romances and last: Complete Segal space -[2018-02-13T00:28:54.062] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Max Perlman and last: File:American Atheist magazine cover.png -[2018-02-13T00:28:54.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rory Lindsay and last: Category:English cheeses -[2018-02-13T00:28:54.101] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:28:54.103] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:28:54.128] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:54.133] [INFO] cheese - inserting 1000 documents. first: Second Siege of Warsaw (1794) and last: The secret party -[2018-02-13T00:28:54.153] [INFO] cheese - inserting 1000 documents. first: Froggie went Courting and last: Alice Isen -[2018-02-13T00:28:54.172] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:28:54.192] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:28:54.215] [INFO] cheese - inserting 1000 documents. first: Neon lamp and last: New Jersey Route 179 -[2018-02-13T00:28:54.400] [INFO] cheese - inserting 1000 documents. first: HMP Kennet and last: Dallas Bradshaw -[2018-02-13T00:28:54.414] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T00:28:54.416] [INFO] cheese - inserting 1000 documents. first: Category:1640s establishments in the Swedish colonial empire and last: Cyclone Raquel -[2018-02-13T00:28:54.456] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:28:54.459] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:54.537] [INFO] cheese - inserting 1000 documents. first: Category:Fairs in Germany and last: Fort Gary - Fort Edmonton Trail -[2018-02-13T00:28:54.587] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:28:54.601] [INFO] cheese - inserting 1000 documents. first: Category:Thessalian mythology and last: 1982 Fed Cup -[2018-02-13T00:28:54.613] [INFO] cheese - inserting 1000 documents. first: Category:Battleships by country and last: Anek Ngernmool -[2018-02-13T00:28:54.679] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:28:54.687] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:54.743] [INFO] cheese - inserting 1000 documents. first: Ensemble Theatre Cincinnati and last: James Carpenter (actor) -[2018-02-13T00:28:54.795] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:28:54.811] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Geology articles and last: Thomas Acquinas -[2018-02-13T00:28:54.856] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:28:54.948] [INFO] cheese - inserting 1000 documents. first: Minolta AF 35mm F1.4 G "New" and last: James Clifford Timlin -[2018-02-13T00:28:54.971] [INFO] cheese - inserting 1000 documents. first: Joseph Asher and last: Chaudas Aigas -[2018-02-13T00:28:54.986] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:28:55.008] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:28:55.008] [INFO] cheese - inserting 1000 documents. first: Here Comes the Night (disambiguation) and last: Who is Guru Maharaj Ji? -[2018-02-13T00:28:55.060] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:28:55.175] [INFO] cheese - inserting 1000 documents. first: Rainbow Room and last: Brizlincote -[2018-02-13T00:28:55.197] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Newtown, Connecticut and last: File:Luke Srama.jpg -[2018-02-13T00:28:55.227] [INFO] cheese - inserting 1000 documents. first: Category:Politicians of the Holy Roman Empire and last: The Misadventure of Zoo -[2018-02-13T00:28:55.227] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:28:55.239] [INFO] cheese - inserting 1000 documents. first: County Route 583 (New Jersey) and last: Ebla -[2018-02-13T00:28:55.242] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:28:55.275] [INFO] cheese - inserting 1000 documents. first: Vlatko Kostov and last: A. H. M. Azwer -[2018-02-13T00:28:55.274] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:28:55.305] [INFO] cheese - inserting 1000 documents. first: E-Wall and last: James Augustine Cunneen -[2018-02-13T00:28:55.306] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:28:55.314] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:28:55.355] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:28:55.358] [INFO] cheese - inserting 1000 documents. first: Tyler-Jacksonville, Texas CSA and last: File:False Mirrors cover.jpg -[2018-02-13T00:28:55.416] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:28:55.728] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/Foo Fighters discography and last: Chinatown, Atlanta -[2018-02-13T00:28:55.736] [INFO] cheese - inserting 1000 documents. first: Chen style and last: Template:Penthouse Pets of 2009 -[2018-02-13T00:28:55.744] [INFO] cheese - inserting 1000 documents. first: File:Aropa records logo.svg and last: Category:People from Picardy -[2018-02-13T00:28:55.748] [INFO] cheese - inserting 1000 documents. first: Draft:Black and White and Dead All Over (film) and last: The Association for Clinical Biochemistry and Laboratory Medicine -[2018-02-13T00:28:55.771] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:28:55.786] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:28:55.798] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:28:55.815] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:28:55.816] [INFO] cheese - inserting 1000 documents. first: Moor Fountain and last: Category:Paraguayan cuisine -[2018-02-13T00:28:55.866] [INFO] cheese - inserting 1000 documents. first: Petrivente and last: Vaseline (Brand) -[2018-02-13T00:28:55.909] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:28:55.911] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:28:56.084] [INFO] cheese - inserting 1000 documents. first: Category:Sports governing bodies in Australia by state or territory and last: Portal:Children's and young adult literature/Selected quote/Archive -[2018-02-13T00:28:56.115] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:28:56.132] [INFO] cheese - inserting 1000 documents. first: Calothamnus formosus and last: Dungariya -[2018-02-13T00:28:56.136] [INFO] cheese - inserting 1000 documents. first: Fiat A.22 R and last: Colton Smith -[2018-02-13T00:28:56.170] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:28:56.171] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:28:56.204] [INFO] cheese - inserting 1000 documents. first: Decimal digit and last: William J. Janklow -[2018-02-13T00:28:56.246] [INFO] cheese - inserting 1000 documents. first: Corrimal High School and last: 19th Light Dragoons -[2018-02-13T00:28:56.293] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:28:56.322] [INFO] cheese - inserting 1000 documents. first: Category:11Water members and last: Pisidium nitidum -[2018-02-13T00:28:56.326] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:28:56.371] [INFO] cheese - inserting 1000 documents. first: Portal:Children's and young adult literature/Selected quote/Layout and last: Kharan Rifles -[2018-02-13T00:28:56.380] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:28:56.392] [INFO] cheese - inserting 1000 documents. first: GIDS and last: The Lakes of Pontchartrain -[2018-02-13T00:28:56.414] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:28:56.456] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:28:56.494] [INFO] cheese - inserting 1000 documents. first: Template:Ethnic groups of Ghana and last: Eupogonius albipilis -[2018-02-13T00:28:56.533] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:28:56.589] [INFO] cheese - inserting 1000 documents. first: Category:Asian-American culture in New Jersey and last: Category:Locomotives of Mexico -[2018-02-13T00:28:56.638] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:56.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/uggboot-sale.com and last: Tar-mairon -[2018-02-13T00:28:56.710] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:28:56.732] [INFO] cheese - inserting 1000 documents. first: Vladimir Grigorevich Boltyansky and last: Anzali Mordab -[2018-02-13T00:28:56.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Setanta747/temptest and last: Bird-banding -[2018-02-13T00:28:56.792] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:28:56.847] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:56.861] [INFO] cheese - inserting 1000 documents. first: Sam West and last: Wikipedia:Articles for deletion/Fizzlethorpe Bristlebane -[2018-02-13T00:28:56.907] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:28:56.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nikil Murugan and last: Hoplorana fuscovestita -[2018-02-13T00:28:56.952] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:28:57.002] [INFO] cheese - inserting 1000 documents. first: Spit It Out (disambiguation) and last: Royal Photographic Society of Great Britain -[2018-02-13T00:28:57.051] [INFO] cheese - inserting 1000 documents. first: Alexandre Guedes and last: Daniel E. Bandmann -[2018-02-13T00:28:57.051] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:28:57.097] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:28:57.166] [INFO] cheese - inserting 1000 documents. first: L. Michael White and last: Josephus L. Mavretic -[2018-02-13T00:28:57.211] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:28:57.228] [INFO] cheese - inserting 1000 documents. first: Give it Up Or Turnit A Loose and last: Monteith (surname) -[2018-02-13T00:28:57.229] [INFO] cheese - inserting 1000 documents. first: Code name and last: Hugh McCalmont Cairns, 1st Earl of Cairns -[2018-02-13T00:28:57.280] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:28:57.301] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:28:57.363] [INFO] cheese - inserting 1000 documents. first: Gibberd and last: No Present Like Time -[2018-02-13T00:28:57.412] [INFO] cheese - inserting 1000 documents. first: Selective Service Administration and last: Wikipedia:Articles for deletion/List of programs broadcast by Game Show Network -[2018-02-13T00:28:57.417] [INFO] cheese - inserting 1000 documents. first: Hoplorana mussardi and last: John P. Hand -[2018-02-13T00:28:57.420] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Ritchie County, West Virginia and last: The Wedding at Cana (Veronese) -[2018-02-13T00:28:57.429] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:28:57.470] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:28:57.469] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:28:57.506] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:28:57.569] [INFO] cheese - inserting 1000 documents. first: Province Island and last: Austro-Hungarian Unterseeboot XXI -[2018-02-13T00:28:57.620] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:28:57.687] [INFO] cheese - inserting 1000 documents. first: Imp dehydrogenase and last: James Van Heusen -[2018-02-13T00:28:57.741] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:28:57.806] [INFO] cheese - inserting 1000 documents. first: Spiral (spaceplane) and last: Anthony Clement -[2018-02-13T00:28:57.872] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:28:57.880] [INFO] cheese - inserting 1000 documents. first: Santos (company) and last: Wikipedia:Articles for deletion/Quirkyalone (2nd nomination) -[2018-02-13T00:28:57.888] [INFO] cheese - inserting 1000 documents. first: J. Wesley Graham and last: Öchse -[2018-02-13T00:28:57.904] [INFO] cheese - inserting 1000 documents. first: Barrabus the Grey and last: American Samoan constitutional referendum, 2010 -[2018-02-13T00:28:57.928] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:28:57.936] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:28:57.952] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:28:57.966] [INFO] cheese - inserting 1000 documents. first: SM Unterseeboot 21 (Austria-Hungary) and last: Tujani Castle -[2018-02-13T00:28:58.010] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:28:58.178] [INFO] cheese - inserting 1000 documents. first: Eastleigh Borough Council election, 1998 and last: Lorie Skjerven Gildea -[2018-02-13T00:28:58.179] [INFO] cheese - inserting 1000 documents. first: Lord Cairns and last: Ellesmere Port -[2018-02-13T00:28:58.180] [INFO] cheese - inserting 1000 documents. first: Lubbock police department and last: Bruthers of Different Muthers -[2018-02-13T00:28:58.204] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:28:58.211] [INFO] cheese - inserting 1000 documents. first: Cassop-cum-quarrington and last: Sancai Tuhui -[2018-02-13T00:28:58.217] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:28:58.224] [INFO] cheese - inserting 1000 documents. first: 1310News and last: Astronomy of the Soviet Union -[2018-02-13T00:28:58.247] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T00:28:58.255] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:28:58.269] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:28:58.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topics/Petropavlovsk-class battleships and last: Lamina choroidocapillaris -[2018-02-13T00:28:58.333] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:28:58.342] [INFO] cheese - inserting 1000 documents. first: Numular dermatitis and last: Saint Paul Manor Apartments -[2018-02-13T00:28:58.391] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:28:58.452] [INFO] cheese - inserting 1000 documents. first: Linguals and last: Category:Lithuanian human rights activists -[2018-02-13T00:28:58.466] [INFO] cheese - inserting 1000 documents. first: Edouard Schmit and last: Russian philology -[2018-02-13T00:28:58.480] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:28:58.496] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:28:58.610] [INFO] cheese - inserting 1000 documents. first: Category:Arts centres in South Korea and last: Spes phthisica -[2018-02-13T00:28:58.657] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:28:58.661] [INFO] cheese - inserting 1000 documents. first: In Your Own Sweet Way and last: File:Ameno-by-dj-quicksilver.jpg -[2018-02-13T00:28:58.669] [INFO] cheese - inserting 1000 documents. first: File:KXAN-TV.png and last: Category:Imagination -[2018-02-13T00:28:58.716] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:28:58.720] [INFO] cheese - inserting 1000 documents. first: Atmospheres (unit) and last: Portal:Tropical cyclones/Featured article/Tropical Storm Zeta (2005) -[2018-02-13T00:28:58.723] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:28:58.746] [INFO] cheese - inserting 1000 documents. first: Soviet philology and last: Himno de Aguascalientes -[2018-02-13T00:28:58.768] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:28:58.771] [INFO] cheese - inserting 1000 documents. first: Marine Park Station and last: Gleichberge -[2018-02-13T00:28:58.794] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:28:58.838] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:28:59.146] [INFO] cheese - inserting 1000 documents. first: Pritilata Waddedar and last: Wikipedia:Articles for deletion/Kiara Belen -[2018-02-13T00:28:59.163] [INFO] cheese - inserting 1000 documents. first: File system in userspace and last: Monument (Ultravox album) -[2018-02-13T00:28:59.189] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:28:59.217] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:28:59.222] [INFO] cheese - inserting 1000 documents. first: Nisqually and last: Daito Bunka University -[2018-02-13T00:28:59.292] [INFO] cheese - inserting 1000 documents. first: Union of the Parliaments and last: Strathallan -[2018-02-13T00:28:59.296] [INFO] cheese - inserting 1000 documents. first: Anthem of Aguascalientes and last: Chop blocking -[2018-02-13T00:28:59.300] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T00:28:59.315] [INFO] cheese - inserting 1000 documents. first: Category:1989 in luge and last: Solomon Nunes Carvalho -[2018-02-13T00:28:59.315] [INFO] cheese - inserting 1000 documents. first: Portal:Tropical cyclones/Featured article/2008-53 and last: Template:Ladakh -[2018-02-13T00:28:59.365] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:28:59.360] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:28:59.394] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:28:59.419] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:28:59.608] [INFO] cheese - inserting 1000 documents. first: Kamyshlinski and last: Help:Reset password -[2018-02-13T00:28:59.628] [INFO] cheese - inserting 1000 documents. first: Süper star and last: Makryotika -[2018-02-13T00:28:59.642] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:28:59.681] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:28:59.755] [INFO] cheese - inserting 1000 documents. first: File:DK fredsprismedal.png and last: List of engineers of Russia -[2018-02-13T00:28:59.795] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:28:59.825] [INFO] cheese - inserting 1000 documents. first: Nicolas Hytner and last: Cybershot DSC-HX50 -[2018-02-13T00:28:59.840] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To know and last: Category:Warren G. Harding -[2018-02-13T00:28:59.866] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:28:59.879] [INFO] cheese - inserting 1000 documents. first: Charnley River and last: Portal:Wisconsin/DYK/6 -[2018-02-13T00:28:59.888] [INFO] cheese - inserting 1000 documents. first: Roxburgh Lake and last: Bisset, Edmonton -[2018-02-13T00:28:59.913] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:28:59.942] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:28:59.954] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:29:00.018] [INFO] cheese - inserting 1000 documents. first: Les Subsistances and last: Category:Protected areas of Rutland County, Vermont -[2018-02-13T00:29:00.020] [INFO] cheese - inserting 1000 documents. first: Raveh, Markazi and last: Nakasako -[2018-02-13T00:29:00.059] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:29:00.069] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:29:00.160] [INFO] cheese - inserting 1000 documents. first: Cybershot HX50 and last: Category:1229 in Asia -[2018-02-13T00:29:00.241] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:29:00.275] [INFO] cheese - inserting 1000 documents. first: Washington State Route 92 and last: Headies -[2018-02-13T00:29:00.295] [INFO] cheese - inserting 1000 documents. first: SAME (protocol) and last: Martin Short -[2018-02-13T00:29:00.317] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:29:00.360] [INFO] cheese - inserting 1000 documents. first: Paulinho (footballer, born August 1983) and last: Dooleys (Album) -[2018-02-13T00:29:00.374] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Rutland County, Vermont and last: Diving at the 2010 Asian Games -[2018-02-13T00:29:00.368] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:29:00.409] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:29:00.423] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:29:00.457] [INFO] cheese - inserting 1000 documents. first: Category:Equatoguinean judoka and last: Kinel-Cherkasski Raion -[2018-02-13T00:29:00.493] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:00.528] [INFO] cheese - inserting 1000 documents. first: Category:1230 in the Mongol Empire and last: Georgy Zhuravlev -[2018-02-13T00:29:00.542] [INFO] cheese - inserting 1000 documents. first: Pooler and last: Cathedral of Beauvais -[2018-02-13T00:29:00.563] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:29:00.606] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:29:00.674] [INFO] cheese - inserting 1000 documents. first: El Chupadero and last: List of titles and honours of Elizabeth II -[2018-02-13T00:29:00.722] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:00.743] [INFO] cheese - inserting 1000 documents. first: US Patent System and last: American Sean nos Dancing -[2018-02-13T00:29:00.765] [INFO] cheese - inserting 1000 documents. first: R3 (ring road) and last: FN Model 1906 -[2018-02-13T00:29:00.789] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:29:00.801] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:29:00.850] [INFO] cheese - inserting 1000 documents. first: Category:Television series set in the 1810s and last: Zinacatepec Municipality -[2018-02-13T00:29:00.869] [INFO] cheese - inserting 1000 documents. first: Shakardara and last: Dennis Ward -[2018-02-13T00:29:00.896] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:29:00.911] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:29:01.021] [INFO] cheese - inserting 1000 documents. first: Black Bear Road (album) and last: Aesculus californica -[2018-02-13T00:29:01.092] [INFO] cheese - inserting 1000 documents. first: Committee for the Preservation of the White House and last: Tilt up building -[2018-02-13T00:29:01.094] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:29:01.141] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:29:01.167] [INFO] cheese - inserting 1000 documents. first: Cristofano Malvezzi and last: Noether -[2018-02-13T00:29:01.186] [INFO] cheese - inserting 1000 documents. first: American Sean nós Dancing and last: Segunda Aficionados de la Comunidad de Madrid -[2018-02-13T00:29:01.223] [INFO] cheese - inserting 1000 documents. first: Template:Footer World Champions Team event and last: Pearce, Charles -[2018-02-13T00:29:01.227] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:29:01.249] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:01.262] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:29:01.266] [INFO] cheese - inserting 1000 documents. first: North American footbal and last: Booooom, Blast & Ruin -[2018-02-13T00:29:01.379] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:01.564] [INFO] cheese - inserting 1000 documents. first: Edward Rawson (politician) and last: Specific acoustic impedance -[2018-02-13T00:29:01.571] [INFO] cheese - inserting 1000 documents. first: Category:Films about widowhood and last: File:Winnie the War Winner.png -[2018-02-13T00:29:01.607] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:01.629] [INFO] cheese - inserting 1000 documents. first: Stockton-on-the-Forest and last: Category:Condiment stubs -[2018-02-13T00:29:01.631] [INFO] cheese - inserting 1000 documents. first: Pelham, Charles and last: Vincenzo Borghini -[2018-02-13T00:29:01.630] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:29:01.663] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:29:01.677] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:29:01.755] [INFO] cheese - inserting 1000 documents. first: Gabriel Iribarren and last: File:Kathymatteaalbum.jpg -[2018-02-13T00:29:01.794] [INFO] cheese - inserting 1000 documents. first: File:Williams-Happy-2.jpg and last: 2009 Knoxville Challenger -[2018-02-13T00:29:01.799] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:01.853] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:01.983] [INFO] cheese - inserting 1000 documents. first: ESJ Paris and last: Hipervitaminoz -[2018-02-13T00:29:02.012] [INFO] cheese - inserting 1000 documents. first: Vain elämää and last: DITTO -[2018-02-13T00:29:02.018] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:02.066] [INFO] cheese - inserting 1000 documents. first: Reactor design and last: File:Thopramkudy city.jpg -[2018-02-13T00:29:02.082] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:02.137] [INFO] cheese - inserting 1000 documents. first: Federal Charter of 1291 and last: Guy Steele, Jr. -[2018-02-13T00:29:02.144] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:02.192] [INFO] cheese - inserting 1000 documents. first: Godfrey public school and last: 1565 in India -[2018-02-13T00:29:02.218] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T00:29:02.257] [INFO] cheese - inserting 1000 documents. first: List of newspapers in New York in the 18th century and last: Richard Marshall (rugby league) -[2018-02-13T00:29:02.258] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:29:02.306] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:29:02.324] [INFO] cheese - inserting 1000 documents. first: Starmedia and last: Category:Villages in Pembrokeshire -[2018-02-13T00:29:02.396] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:29:02.473] [INFO] cheese - inserting 1000 documents. first: Indianola Historic District and last: Wikipedia:NSUMO -[2018-02-13T00:29:02.489] [INFO] cheese - inserting 1000 documents. first: 2007-08 UEFA Cup and last: Al Uqsur Governorate -[2018-02-13T00:29:02.541] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:02.556] [INFO] cheese - inserting 1000 documents. first: Henry Bentley (Canadian politician) and last: Kingdom of Tigré -[2018-02-13T00:29:02.564] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:02.612] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:02.653] [INFO] cheese - inserting 1000 documents. first: Template:DonleyCountyTX-geo-stub and last: Cuban bibles -[2018-02-13T00:29:02.693] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:02.800] [INFO] cheese - inserting 1000 documents. first: Category:1604 establishments in the Spanish Empire and last: Pao Hsi-jen -[2018-02-13T00:29:02.822] [INFO] cheese - inserting 1000 documents. first: Category:French emigrants to Niger and last: Kati Thanda–Lake Eyre -[2018-02-13T00:29:02.824] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:29:02.856] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:29:02.891] [INFO] cheese - inserting 1000 documents. first: Template:User dsb-1 and last: File:PythonProgLogo.png -[2018-02-13T00:29:02.910] [INFO] cheese - inserting 1000 documents. first: Category:People from Katwijk and last: 1983 Grand Prix (tennis) -[2018-02-13T00:29:02.925] [INFO] cheese - inserting 1000 documents. first: Jumbly and last: Maria d'Oro und Bello Blue -[2018-02-13T00:29:02.965] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:02.975] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:02.988] [INFO] cheese - inserting 1000 documents. first: Cuban bible and last: Template:Medkovets -[2018-02-13T00:29:03.031] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:29:03.040] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:29:03.131] [INFO] cheese - inserting 1000 documents. first: Category:1810s in the Spanish East Indies and last: Template:Pacific Cup tournament -[2018-02-13T00:29:03.144] [INFO] cheese - inserting 1000 documents. first: International date line and last: Wildcard DNS entry -[2018-02-13T00:29:03.172] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:29:03.215] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T00:29:03.273] [INFO] cheese - inserting 1000 documents. first: Robbie Brian Ftorek and last: Dopplereffekt -[2018-02-13T00:29:03.328] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:29:03.355] [INFO] cheese - inserting 1000 documents. first: Schweinfurth (disambiguation) and last: Wikipedia:Teahouse/Questions/Archive 04 -[2018-02-13T00:29:03.363] [INFO] cheese - inserting 1000 documents. first: Hamilton Municipal Election in 2010 and last: Template:Colombia football squad 1992 Summer Olympics -[2018-02-13T00:29:03.395] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:29:03.432] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:29:03.452] [INFO] cheese - inserting 1000 documents. first: Jose Francisco Bermudez and last: Metagalaxy -[2018-02-13T00:29:03.492] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:03.530] [INFO] cheese - inserting 1000 documents. first: Tai-bach and last: List of portable software -[2018-02-13T00:29:03.556] [INFO] cheese - inserting 1000 documents. first: Makkasan Railway Station and last: Fine-Pix HS20EXR -[2018-02-13T00:29:03.599] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:29:03.698] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:29:03.715] [INFO] cheese - inserting 1000 documents. first: Template:2007–08 in Italian football and last: Central Organization for Durable Peace -[2018-02-13T00:29:03.787] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:03.837] [INFO] cheese - inserting 1000 documents. first: Alex Caie and last: Sailing at the 2015 Pan American Games – J/24 -[2018-02-13T00:29:03.858] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:29:03.873] [INFO] cheese - inserting 1000 documents. first: Land of Immortals and last: Wunna Dam -[2018-02-13T00:29:03.874] [INFO] cheese - inserting 1000 documents. first: Category:West Bromwich Albion F.C. non-playing staff and last: K nut -[2018-02-13T00:29:03.911] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:29:03.923] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:29:03.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Spellage and last: Category:1952 disestablishments in China -[2018-02-13T00:29:04.004] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:29:04.171] [INFO] cheese - inserting 1000 documents. first: Malise Graham, 1st Earl of Menteith and last: Adur District Council election, 2002 -[2018-02-13T00:29:04.218] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:29:04.220] [INFO] cheese - inserting 1000 documents. first: TINLA and last: List of Aromanians -[2018-02-13T00:29:04.240] [INFO] cheese - inserting 1000 documents. first: Template:R caps and last: List of Russian ballerinas -[2018-02-13T00:29:04.271] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:29:04.281] [INFO] cheese - inserting 1000 documents. first: Huaibang Hu and last: Aga-Mirza-Obasi -[2018-02-13T00:29:04.293] [INFO] cheese - inserting 1000 documents. first: Sasanian Persia and last: Families with Children from China -[2018-02-13T00:29:04.300] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:29:04.315] [INFO] cheese - inserting 1000 documents. first: Dinajpur District (disambiguation) and last: Centre-half back -[2018-02-13T00:29:04.319] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:29:04.338] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:04.380] [INFO] cheese - inserting 1000 documents. first: Category:2004 in South American sport and last: Sayaka Yamamoto -[2018-02-13T00:29:04.392] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:29:04.444] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:29:04.500] [INFO] cheese - inserting 1000 documents. first: Russian ballerinas and last: Category:Oklahoma elections, 1992 -[2018-02-13T00:29:04.539] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:29:04.595] [INFO] cheese - inserting 1000 documents. first: Italian Fourth Army and last: Aurangabad central jail -[2018-02-13T00:29:04.625] [INFO] cheese - inserting 1000 documents. first: Venus DeMilo and last: Template:Cities of Pima County, Arizona -[2018-02-13T00:29:04.628] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:29:04.678] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:04.690] [INFO] cheese - inserting 1000 documents. first: Friends of Coyle Creek and last: John A. McDougall -[2018-02-13T00:29:04.747] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:29:04.823] [INFO] cheese - inserting 1000 documents. first: Small-stuff and last: Vishera River, Perm Oblast -[2018-02-13T00:29:04.823] [INFO] cheese - inserting 1000 documents. first: George F. Roesch and last: Category:1998 in Central American sport -[2018-02-13T00:29:04.985] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:29:05.028] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:29:05.122] [INFO] cheese - inserting 1000 documents. first: Roderick Moore (disambiguation) and last: River of Tuoni (song) -[2018-02-13T00:29:05.194] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:29:05.252] [INFO] cheese - inserting 1000 documents. first: Category:Jandaia do Sul and last: Category:1922 Missouri Valley Intercollegiate Athletic Association football season -[2018-02-13T00:29:05.266] [INFO] cheese - inserting 1000 documents. first: GIVE Center West and last: Diether Lukesch -[2018-02-13T00:29:05.299] [INFO] cheese - inserting 1000 documents. first: Phoenix FM (Central Victoria) and last: Kolibri Choir -[2018-02-13T00:29:05.314] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:29:05.318] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:29:05.376] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:29:05.394] [INFO] cheese - inserting 1000 documents. first: Category:Culture by city in Norway and last: Yehuda Alcalay -[2018-02-13T00:29:05.446] [INFO] cheese - inserting 1000 documents. first: Paul van Buitenen and last: Treaty of London (1839) -[2018-02-13T00:29:05.451] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:05.516] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T00:29:05.537] [INFO] cheese - inserting 1000 documents. first: Alena Vrzáňová and last: Jefferson Barracks -[2018-02-13T00:29:05.561] [INFO] cheese - inserting 1000 documents. first: Martyno Mažvydo mokykla and last: Category:Officers of the Legion of Merit -[2018-02-13T00:29:05.587] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:29:05.609] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:05.769] [INFO] cheese - inserting 1000 documents. first: Category:Transport in the Ionian Islands and last: Argentina Bangladesh relations -[2018-02-13T00:29:05.795] [INFO] cheese - inserting 1000 documents. first: Joseph Taitatzak and last: Category:Israeli Muay Thai practitioners -[2018-02-13T00:29:05.808] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:29:05.826] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:29:05.828] [INFO] cheese - inserting 1000 documents. first: Buffy the Vampire Killer and last: Werner Reinhart -[2018-02-13T00:29:05.888] [INFO] cheese - inserting 1000 documents. first: David Friedrichsfeld and last: Digital Natives -[2018-02-13T00:29:05.894] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:29:05.938] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:29:05.951] [INFO] cheese - inserting 1000 documents. first: Cape Boggs and last: This Is Bat Country -[2018-02-13T00:29:05.991] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:29:06.061] [INFO] cheese - inserting 1000 documents. first: Cruise (automotive) and last: File:MaxCarlish2.jpg -[2018-02-13T00:29:06.121] [INFO] cheese - inserting 1000 documents. first: Bangladesh-Argentina relations and last: Irene Chepet Cheptai -[2018-02-13T00:29:06.147] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:29:06.149] [INFO] cheese - inserting 1000 documents. first: Microsoft-Novell deal and last: St Mary's University College Twickenham -[2018-02-13T00:29:06.199] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:29:06.207] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:29:06.321] [INFO] cheese - inserting 1000 documents. first: Mon Mane Na (2008 film) and last: West Germany women's national field hockey team -[2018-02-13T00:29:06.339] [INFO] cheese - inserting 1000 documents. first: No 241 Operational Conversion Unit RAF and last: Annie Meinertzhagen -[2018-02-13T00:29:06.339] [INFO] cheese - inserting 1000 documents. first: Antoine Louis Camille Lemonnier and last: Myrsini -[2018-02-13T00:29:06.372] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:29:06.377] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:29:06.406] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:29:06.521] [INFO] cheese - inserting 1000 documents. first: Parent's Music Resource center and last: Crab pan -[2018-02-13T00:29:06.529] [INFO] cheese - inserting 1000 documents. first: Jafarabad, Khomeyn and last: Sexxx -[2018-02-13T00:29:06.575] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:29:06.578] [INFO] cheese - inserting 1000 documents. first: Category:People from Balrampur and last: Macedon (satrapy) -[2018-02-13T00:29:06.583] [INFO] cheese - inserting 1000 documents. first: Irine Chepet Cheptai and last: 2015 BBL Champions Cup -[2018-02-13T00:29:06.582] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:29:06.632] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:29:06.652] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:29:06.722] [INFO] cheese - inserting 1000 documents. first: Naomi Ichihara Roekkum and last: Register in bankruptcy -[2018-02-13T00:29:06.725] [INFO] cheese - inserting 1000 documents. first: On Reflection and last: File:Blitzkrieg book cover.jpg -[2018-02-13T00:29:06.755] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:29:06.763] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:29:06.941] [INFO] cheese - inserting 1000 documents. first: The Lute Player (Orazio Gentileschi) and last: Wikipedia:Reference desk/Archives/Language/2015 July 27 -[2018-02-13T00:29:06.983] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:29:07.042] [INFO] cheese - inserting 1000 documents. first: Glen Oak High School and last: Social grade -[2018-02-13T00:29:07.045] [INFO] cheese - inserting 1000 documents. first: Carter and Burgess Plaza and last: Wikipedia:Peer review/Percy Fender/archive1 -[2018-02-13T00:29:07.083] [INFO] cheese - inserting 1000 documents. first: USS Tananek Bay (CVE-88) and last: Gongo Lutete -[2018-02-13T00:29:07.099] [INFO] cheese - inserting 1000 documents. first: Category:Dams in England and last: Kiyangkongrejo -[2018-02-13T00:29:07.098] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:29:07.141] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:07.181] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:29:07.242] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:29:07.256] [INFO] cheese - inserting 1000 documents. first: Caribe Hilton Hotel and last: Prometheus Bound -[2018-02-13T00:29:07.443] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:29:07.582] [INFO] cheese - inserting 1000 documents. first: 1965 Army Cadets football team and last: Template:Wiktla -[2018-02-13T00:29:07.671] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:29:07.699] [INFO] cheese - inserting 1000 documents. first: Online Nation (TV series) and last: Category:Algerian diplomats -[2018-02-13T00:29:07.732] [INFO] cheese - inserting 1000 documents. first: Worawut Srisupha and last: WarZ -[2018-02-13T00:29:07.739] [INFO] cheese - inserting 1000 documents. first: Leftright politics and last: Jan G.F. Veldhuis -[2018-02-13T00:29:07.749] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Danjin Spear and last: Clement Spiette -[2018-02-13T00:29:07.769] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:29:07.774] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T00:29:07.780] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:29:07.798] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:07.833] [INFO] cheese - inserting 1000 documents. first: Scott Hiley and last: Synethesia -[2018-02-13T00:29:07.887] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:29:08.066] [INFO] cheese - inserting 1000 documents. first: Template:Wiktmy and last: Brian Lacey (Gaelic footballer) -[2018-02-13T00:29:08.118] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:29:08.131] [INFO] cheese - inserting 1000 documents. first: File:Out of the Blue (Blue Mitchell album).jpg and last: USI Holdings Limited -[2018-02-13T00:29:08.167] [INFO] cheese - inserting 1000 documents. first: Armand Pagnoulle and last: Testudinaceae -[2018-02-13T00:29:08.185] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:08.227] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:29:08.288] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2012 December 28 and last: In-game currency -[2018-02-13T00:29:08.343] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:29:08.383] [INFO] cheese - inserting 1000 documents. first: 22nd SS Volunteer Cavalry Division Division Maria Theresa and last: National Wildlife Refuge System -[2018-02-13T00:29:08.385] [INFO] cheese - inserting 1000 documents. first: Category:Notosuchians and last: Category:Music in Rotterdam -[2018-02-13T00:29:08.392] [INFO] cheese - inserting 1000 documents. first: Human Powered Aircraft Group and last: DE-35 -[2018-02-13T00:29:08.411] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:29:08.443] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:08.483] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:29:08.567] [INFO] cheese - inserting 1000 documents. first: Laurent Monsengwo Pasinya and last: Autograph 2010(Bengali) -[2018-02-13T00:29:08.596] [INFO] cheese - inserting 1000 documents. first: King Xiang of Zhou and last: Dwarf throw -[2018-02-13T00:29:08.610] [INFO] cheese - inserting 1000 documents. first: File:Allan Holdsworth - 1987 - Sand.jpg and last: R63 (Western Cape) -[2018-02-13T00:29:08.615] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:29:08.676] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T00:29:08.676] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:29:08.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Yoko Ono articles by quality statistics and last: Category:Athletes from Gansu -[2018-02-13T00:29:08.767] [INFO] cheese - inserting 1000 documents. first: Debinha and last: Octade (unit) -[2018-02-13T00:29:08.788] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:29:08.819] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:08.846] [INFO] cheese - inserting 1000 documents. first: Bill Lawrence (TV producer) and last: Chirbury and Brompton -[2018-02-13T00:29:08.882] [INFO] cheese - inserting 1000 documents. first: Daniel McMann and last: Abi-hime -[2018-02-13T00:29:08.887] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:29:08.923] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:29:08.960] [INFO] cheese - inserting 1000 documents. first: Giovanni Conterno and last: Ibi (tribe) -[2018-02-13T00:29:09.013] [INFO] cheese - inserting 1000 documents. first: Erythromycin Ethylsuccinate and last: Wikipedia:Articles for deletion/Love Makes the World Go 'Round (1986 song) -[2018-02-13T00:29:09.021] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:09.084] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:29:09.118] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2012 December 29 and last: List of archdeacons of Bromley -[2018-02-13T00:29:09.168] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:29:09.221] [INFO] cheese - inserting 1000 documents. first: Octads (computing) and last: Ergatis (Gelechia) staticella -[2018-02-13T00:29:09.265] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:09.333] [INFO] cheese - inserting 1000 documents. first: Dogs damour and last: 9903 Leonhardt -[2018-02-13T00:29:09.377] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:09.404] [INFO] cheese - inserting 1000 documents. first: Glottic and last: Woodlouse spider -[2018-02-13T00:29:09.473] [INFO] cheese - inserting 1000 documents. first: Daily Mail (Pakistan) and last: Golden Globe Awards 2008 -[2018-02-13T00:29:09.491] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:29:09.609] [INFO] cheese - inserting 1000 documents. first: Eufaula tribe and last: Russian-speaking Ukraine -[2018-02-13T00:29:09.654] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:09.715] [INFO] cheese - inserting 1000 documents. first: Aunt Sally (film) and last: Administrative regions of the Federal District -[2018-02-13T00:29:09.718] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:29:09.757] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:29:09.779] [INFO] cheese - inserting 1000 documents. first: Someone like You (Arthur Louis song) and last: Carpenter, Christopher -[2018-02-13T00:29:09.822] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:29:09.863] [INFO] cheese - inserting 1000 documents. first: Aleksandr Kuprin and last: Lamar Hunt -[2018-02-13T00:29:09.909] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Superman and last: Portal:Catholicism/Patron of the Day Archive/May 24 2007 -[2018-02-13T00:29:09.938] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T00:29:09.952] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:29:10.030] [INFO] cheese - inserting 1000 documents. first: Paper Planes – Homeland Security Remixes EP and last: Medicare (for all) -[2018-02-13T00:29:10.085] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:29:10.111] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 582 and last: Ion Dissonance -[2018-02-13T00:29:10.116] [INFO] cheese - inserting 1000 documents. first: 陇南市 and last: Otto Heidkämper -[2018-02-13T00:29:10.156] [INFO] cheese - inserting 1000 documents. first: CSAR Class E 4-8-2T and last: Sen. Dean Heller -[2018-02-13T00:29:10.156] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:29:10.161] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:10.209] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:10.217] [INFO] cheese - inserting 1000 documents. first: Cole, Christopher and last: Category:Trees of the Arabian Peninsula -[2018-02-13T00:29:10.276] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:29:10.384] [INFO] cheese - inserting 1000 documents. first: Ana Margarita Martínez-Casado and last: ISRO Satellite centre -[2018-02-13T00:29:10.425] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:29:10.438] [INFO] cheese - inserting 1000 documents. first: Senator Dean Heller and last: White-tailed Mountain Vole -[2018-02-13T00:29:10.469] [INFO] cheese - inserting 1000 documents. first: British Columbia Colleges' Athletic Association and last: Horikawa River -[2018-02-13T00:29:10.489] [INFO] cheese - inserting 1000 documents. first: Bakhtar News Agency and last: Coppermine Expedition -[2018-02-13T00:29:10.501] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:29:10.517] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:29:10.549] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:29:10.599] [INFO] cheese - inserting 1000 documents. first: Père David's mole and last: Wikipedia:Articles for deletion/Jewish-Arab conflict -[2018-02-13T00:29:10.649] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:29:10.813] [INFO] cheese - inserting 1000 documents. first: Nine Stones of Altarnun and last: Template:Did you know nominations/Jeanne Lampl-de Groot -[2018-02-13T00:29:10.871] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:10.943] [INFO] cheese - inserting 1000 documents. first: Aplonay and last: Kevin Brown (pitcher) -[2018-02-13T00:29:10.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Asthma/archive3 and last: Hindasgeri -[2018-02-13T00:29:10.954] [INFO] cheese - inserting 1000 documents. first: Travel visa and last: Isabel J. Cox -[2018-02-13T00:29:10.972] [INFO] cheese - inserting 1000 documents. first: Category:1937 in South Dakota and last: Anishinabek Education Institute -[2018-02-13T00:29:10.981] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Holly and last: File:Flash Blaine.png -[2018-02-13T00:29:10.990] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:10.993] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:29:11.022] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:29:11.028] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:29:11.054] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:11.168] [INFO] cheese - inserting 1000 documents. first: Aquatic biomonitoring and last: John O'Rourke -[2018-02-13T00:29:11.201] [INFO] cheese - inserting 1000 documents. first: Coconympha iriarcha and last: Neotelphusa phaeomacula -[2018-02-13T00:29:11.215] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:11.274] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:29:11.302] [INFO] cheese - inserting 1000 documents. first: Hirebudihal and last: Wikipedia:WikiProject Films/Outreach/September 2007 Newsletter -[2018-02-13T00:29:11.327] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:29:11.380] [INFO] cheese - inserting 1000 documents. first: Saythu Khocha and last: Portal:Physics/2013 Selected articles -[2018-02-13T00:29:11.405] [INFO] cheese - inserting 1000 documents. first: Hermann Friedrich Waesemann and last: Metropolitan, Carriage, Wagon and Finance -[2018-02-13T00:29:11.419] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:29:11.456] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:11.482] [INFO] cheese - inserting 1000 documents. first: Pegram v. Herdrich and last: Jairou -[2018-02-13T00:29:11.536] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:11.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Films/Outreach/September 2008 Newsletter and last: Category:Parks in Huntingdon County, Pennsylvania -[2018-02-13T00:29:11.586] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:29:11.634] [INFO] cheese - inserting 1000 documents. first: Category:Nations at sport events in 1970 and last: My Lonely Me -[2018-02-13T00:29:11.647] [INFO] cheese - inserting 1000 documents. first: Hesbaye and last: WMGT -[2018-02-13T00:29:11.689] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:11.723] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:29:11.735] [INFO] cheese - inserting 1000 documents. first: Velvet Climbing Mouse and last: Amity University Rajasthan -[2018-02-13T00:29:11.779] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:29:12.010] [INFO] cheese - inserting 1000 documents. first: Seventh-day Adventists and the Sabbath and last: File:SuperFresh-oldlogo.png -[2018-02-13T00:29:12.086] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:29:12.091] [INFO] cheese - inserting 1000 documents. first: N Krishnan and last: LSP Museum -[2018-02-13T00:29:12.152] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:12.161] [INFO] cheese - inserting 1000 documents. first: The Paradise of Bachelors and the Tartarus of Maids and last: Nick jr. UK -[2018-02-13T00:29:12.167] [INFO] cheese - inserting 1000 documents. first: Frederick Church and last: 2000 Summer Paralympics -[2018-02-13T00:29:12.203] [INFO] cheese - inserting 1000 documents. first: Dramatic re-enactment and last: R.W. Macan -[2018-02-13T00:29:12.208] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:29:12.245] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:29:12.243] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:12.312] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg University and last: Flag of mexico -[2018-02-13T00:29:12.314] [INFO] cheese - inserting 1000 documents. first: Zoned binary-coded decimal and last: Category:20th century in British India -[2018-02-13T00:29:12.365] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:29:12.381] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:29:12.557] [INFO] cheese - inserting 1000 documents. first: Louisiana State Penitentiary Museum and last: Wikipedia:Articles for deletion/Martha Lipton -[2018-02-13T00:29:12.573] [INFO] cheese - inserting 1000 documents. first: Greenbriar and last: WGZR-FM -[2018-02-13T00:29:12.635] [INFO] cheese - inserting 1000 documents. first: Marie Solange Pagonendji-Ndakala and last: Snapbacks & Tattoos -[2018-02-13T00:29:12.631] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:29:12.671] [INFO] cheese - inserting 1000 documents. first: Tony Moses and last: Wikipedia:Reference desk/Archives/Science/2008 December 4 -[2018-02-13T00:29:12.630] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:29:12.716] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:29:12.875] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:29:12.907] [INFO] cheese - inserting 1000 documents. first: List of Digambar Jain ascetics and last: Category:Buildings and structures in Panamá Province -[2018-02-13T00:29:12.960] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:13.067] [INFO] cheese - inserting 1000 documents. first: Uncle toms cabin and last: Infinity Radio -[2018-02-13T00:29:13.151] [INFO] cheese - inserting 1000 documents. first: Shabbat HaGadol and last: Banded tubes -[2018-02-13T00:29:13.155] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:29:13.181] [INFO] cheese - inserting 1000 documents. first: British Continental Airways and last: 335 U.S. 464 -[2018-02-13T00:29:13.201] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:13.259] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:13.307] [INFO] cheese - inserting 1000 documents. first: Mauger (French name) and last: Dabbing (motorcycling) -[2018-02-13T00:29:13.369] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:29:13.396] [INFO] cheese - inserting 1000 documents. first: File:Lines - The Beach Boys.ogg and last: Policewoman (disambiguation) -[2018-02-13T00:29:13.438] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:29:13.485] [INFO] cheese - inserting 1000 documents. first: List of content management systems and last: Goldman Sachs -[2018-02-13T00:29:13.566] [INFO] cheese - inserting 1000 documents. first: Samir Mashharawi and last: Zacharias Paulusz -[2018-02-13T00:29:13.600] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T00:29:13.617] [INFO] cheese - inserting 1000 documents. first: Luigi Agricola and last: White-tailed Olalla Rat -[2018-02-13T00:29:13.620] [INFO] cheese - inserting 1000 documents. first: Adèle Isaac and last: Thomas Clarke (disambiguation) -[2018-02-13T00:29:13.641] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:29:13.671] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:29:13.696] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:29:13.725] [INFO] cheese - inserting 1000 documents. first: Holor and last: Bronwyn Drainie -[2018-02-13T00:29:13.773] [INFO] cheese - inserting 1000 documents. first: Ace Metrix and last: Longbottom, Arthur -[2018-02-13T00:29:13.781] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:29:13.825] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:29:13.901] [INFO] cheese - inserting 1000 documents. first: William Peel and last: Funf -[2018-02-13T00:29:13.951] [INFO] cheese - inserting 1000 documents. first: Argentine Brown Bat and last: Portal:Trains/Selected article/Week 43, 2013 -[2018-02-13T00:29:13.957] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:29:13.994] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:29:14.071] [INFO] cheese - inserting 1000 documents. first: Billy Ruane (music promoter) and last: Dukes of Épernon -[2018-02-13T00:29:14.152] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:14.162] [INFO] cheese - inserting 1000 documents. first: Category:Skyscrapers in El Salvador and last: Frank Hannyngton -[2018-02-13T00:29:14.224] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:29:14.267] [INFO] cheese - inserting 1000 documents. first: Lynch, Arthur and last: Ariyapedatha Rahasyam -[2018-02-13T00:29:14.315] [INFO] cheese - inserting 1000 documents. first: Filippo di Ser Brunellesco Brunelleschi and last: Price scissors -[2018-02-13T00:29:14.322] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:14.385] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Selected article/Week 44, 2013 and last: Template:2012–13 CCHA standings (men)/doc -[2018-02-13T00:29:14.389] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:29:14.424] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:29:14.426] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Saskatoon and last: List of sovereign states in 1909 -[2018-02-13T00:29:14.491] [INFO] cheese - inserting 1000 documents. first: Counts of Périgord and last: Baava (2010 film) -[2018-02-13T00:29:14.506] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:14.534] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:29:14.654] [INFO] cheese - inserting 1000 documents. first: Highland Park distillery and last: Haimirich -[2018-02-13T00:29:14.685] [INFO] cheese - inserting 1000 documents. first: Bachelor of Computer Applications and last: Opeas pumilum -[2018-02-13T00:29:14.714] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T00:29:14.751] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:29:14.754] [INFO] cheese - inserting 1000 documents. first: Nirthashala and last: Death and taxes (disambiguation) -[2018-02-13T00:29:14.826] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:14.941] [INFO] cheese - inserting 1000 documents. first: United States Post Office and Courthouse (Eureka, California) and last: Melaka State Secretariat Building -[2018-02-13T00:29:14.965] [INFO] cheese - inserting 1000 documents. first: Lajos Halász and last: Girò di Cagliari -[2018-02-13T00:29:14.985] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:29:15.012] [INFO] cheese - inserting 1000 documents. first: Audrey A. McNiff and last: Lebo M. -[2018-02-13T00:29:15.013] [INFO] cheese - inserting 1000 documents. first: Lawh-i-Tibb and last: Paul Jans -[2018-02-13T00:29:15.030] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:29:15.140] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:29:15.150] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:29:15.307] [INFO] cheese - inserting 1000 documents. first: Leo Morrissey and last: General Von Klinkerhoffen -[2018-02-13T00:29:15.350] [INFO] cheese - inserting 1000 documents. first: Nikolay (Yarushevich) and last: Category:1704 in Gibraltar -[2018-02-13T00:29:15.363] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:29:15.396] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:29:15.568] [INFO] cheese - inserting 1000 documents. first: Category:Greek-American culture in Maryland and last: CONNECT (Alfa Remeo) -[2018-02-13T00:29:15.589] [INFO] cheese - inserting 1000 documents. first: Category:1460s conflicts and last: Wapoga River -[2018-02-13T00:29:15.658] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:29:15.694] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:29:15.775] [INFO] cheese - inserting 1000 documents. first: File:HarrietHarman.jpg and last: Ahlul-Kitaab -[2018-02-13T00:29:15.853] [INFO] cheese - inserting 1000 documents. first: File:Mexico City Polution.jpg and last: Szalaszend -[2018-02-13T00:29:15.861] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:29:15.895] [INFO] cheese - inserting 1000 documents. first: Portal:Serer religion/Selected biography/1 and last: File:Dead & Company logo.png -[2018-02-13T00:29:15.902] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:29:15.944] [INFO] cheese - inserting 1000 documents. first: Deputy-Governors and last: Marsh Gentian -[2018-02-13T00:29:15.948] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:29:15.968] [INFO] cheese - inserting 1000 documents. first: California Proposition 54 (2003) and last: Bedřich Hrozný -[2018-02-13T00:29:15.998] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:29:16.045] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T00:29:16.085] [INFO] cheese - inserting 1000 documents. first: Enrique Echeverría and last: Piplod, Surat -[2018-02-13T00:29:16.119] [INFO] cheese - inserting 1000 documents. first: List of National Basketball Association players with 40 or more rebounds in a game and last: 李小鹏 -[2018-02-13T00:29:16.141] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:29:16.174] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:16.311] [INFO] cheese - inserting 1000 documents. first: Padariya Jat and last: Art (album) -[2018-02-13T00:29:16.363] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:29:16.391] [INFO] cheese - inserting 1000 documents. first: Chalk Mountains (Colorado) and last: Car company bailout -[2018-02-13T00:29:16.399] [INFO] cheese - inserting 1000 documents. first: Ambiyaa and last: Dr. Abby Lockhart -[2018-02-13T00:29:16.443] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:29:16.450] [INFO] cheese - inserting 1000 documents. first: HgcE RNA and last: Šuta -[2018-02-13T00:29:16.476] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:16.533] [INFO] cheese - inserting 1000 documents. first: Category:Nuova Cosenza Calcio players and last: April 1920 -[2018-02-13T00:29:16.551] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:29:16.566] [INFO] cheese - inserting 1000 documents. first: Black-banded sea kraits and last: Joan, Heiress of Navarre -[2018-02-13T00:29:16.612] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:29:16.619] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:29:16.754] [INFO] cheese - inserting 1000 documents. first: Paraspori and last: File:Scorpion's Revenge DVD.jpg -[2018-02-13T00:29:16.813] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:29:16.876] [INFO] cheese - inserting 1000 documents. first: ISO 3166-2:GB-BKM and last: 1990 Philadelphia Wings -[2018-02-13T00:29:16.917] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:16.955] [INFO] cheese - inserting 1000 documents. first: Megami Tensei Gaiden: Last Bible II and last: United States Department of Justice Tax Division -[2018-02-13T00:29:16.955] [INFO] cheese - inserting 1000 documents. first: Belgrade, Serbia and last: Sir Richard Squires -[2018-02-13T00:29:17.019] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:29:17.049] [INFO] cheese - inserting 1000 documents. first: May 1920 and last: Norton Street Congregational Church -[2018-02-13T00:29:17.057] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:29:17.080] [INFO] cheese - inserting 1000 documents. first: Palaeocyanus and last: Earth Orbiter 1 -[2018-02-13T00:29:17.083] [INFO] cheese - inserting 1000 documents. first: Corazón Aymara and last: Maud of Huntingdon -[2018-02-13T00:29:17.101] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:29:17.150] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:29:17.160] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:29:17.285] [INFO] cheese - inserting 1000 documents. first: Kazuhiro Mori (cyclist) and last: Sodomites (song) -[2018-02-13T00:29:17.331] [INFO] cheese - inserting 1000 documents. first: Oxycirrhites typus and last: Man Who Haunted Himself -[2018-02-13T00:29:17.344] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:29:17.444] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:29:17.523] [INFO] cheese - inserting 1000 documents. first: Parinacochas Lake and last: Wikipedia:Requests for feedback/2010 November 3 -[2018-02-13T00:29:17.568] [INFO] cheese - inserting 1000 documents. first: The Blue Gardenia (1953 film) and last: File:Liveinchicago.jpg -[2018-02-13T00:29:17.572] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:29:17.623] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:29:17.626] [INFO] cheese - inserting 1000 documents. first: Laguna Parinacota and last: Template:POTD/2013-01-09 -[2018-02-13T00:29:17.656] [INFO] cheese - inserting 1000 documents. first: Nathaniel Dusk and last: Joshua W. Groban -[2018-02-13T00:29:17.693] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:29:17.730] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:17.811] [INFO] cheese - inserting 1000 documents. first: .DZ and last: National Park Association -[2018-02-13T00:29:17.812] [INFO] cheese - inserting 1000 documents. first: Kevin Fogg and last: 2014 Cambodian League -[2018-02-13T00:29:17.847] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:29:17.850] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:29:17.925] [INFO] cheese - inserting 1000 documents. first: Template:Infobox motor race and last: Kurath, Hans -[2018-02-13T00:29:17.939] [INFO] cheese - inserting 1000 documents. first: Three Jewels Temples and last: Cellulase -[2018-02-13T00:29:17.957] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:29:17.985] [INFO] cheese - inserting 1000 documents. first: YP-214 and last: Gbaya People -[2018-02-13T00:29:18.028] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:29:18.047] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:18.154] [INFO] cheese - inserting 1000 documents. first: Category:President of the United States navigational boxes and last: Wikipedia:Article grades -[2018-02-13T00:29:18.209] [INFO] cheese - inserting 1000 documents. first: Craigie High School and last: Uruguay at the 1924 Summer Olympics -[2018-02-13T00:29:18.213] [INFO] cheese - inserting 1000 documents. first: Colin Langley and last: Gérard Pettipas -[2018-02-13T00:29:18.234] [INFO] cheese - inserting 1000 documents. first: Thazhakara (Village) and last: Gol Transportes Aéreos S/A -[2018-02-13T00:29:18.241] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:29:18.274] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:18.282] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:29:18.317] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:18.373] [INFO] cheese - inserting 1000 documents. first: Mohd Noor Ali and last: FM 2917 -[2018-02-13T00:29:18.405] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:29:18.427] [INFO] cheese - inserting 1000 documents. first: Pseudocercospora theae and last: Category:Abenaki communities -[2018-02-13T00:29:18.482] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:18.604] [INFO] cheese - inserting 1000 documents. first: Jason Mitchell (actor) and last: Template:France diplomatic missions -[2018-02-13T00:29:18.625] [INFO] cheese - inserting 1000 documents. first: File:NAAFS logo.png and last: Western Chorus Frog -[2018-02-13T00:29:18.655] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:29:18.687] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:18.766] [INFO] cheese - inserting 1000 documents. first: National Supercomputing Center (Shenzhen) and last: Sonosuke Fujimaki -[2018-02-13T00:29:18.808] [INFO] cheese - inserting 1000 documents. first: Cigar Makers' International Union and last: Jim Dodge -[2018-02-13T00:29:18.823] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:29:18.836] [INFO] cheese - inserting 1000 documents. first: Gol Transportes Aereos S/A and last: File:CharlottetownAbbies.png -[2018-02-13T00:29:18.886] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:18.890] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:29:18.970] [INFO] cheese - inserting 1000 documents. first: Tim Murray (rapper) and last: Signs of Life (1968 film) -[2018-02-13T00:29:19.015] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:29:19.089] [INFO] cheese - inserting 1000 documents. first: Russian Army (1917) and last: Minami Kamakura High School Girls Cycling Club -[2018-02-13T00:29:19.141] [INFO] cheese - inserting 1000 documents. first: Linear space and last: Mint-made errors -[2018-02-13T00:29:19.138] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:29:19.175] [INFO] cheese - inserting 1000 documents. first: San Andrés Tuxtla, Veracruz and last: Fragile (Cherrelle album) -[2018-02-13T00:29:19.214] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:29:19.232] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T00:29:19.245] [INFO] cheese - inserting 1000 documents. first: Spring Peeper and last: Naser Al-Meqlad -[2018-02-13T00:29:19.302] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:19.327] [INFO] cheese - inserting 1000 documents. first: File:Imperial hotel hobart.JPG and last: Template:PulitzerPrize DramaAuthors 1951–1975 -[2018-02-13T00:29:19.382] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:29:19.458] [INFO] cheese - inserting 1000 documents. first: Rapture (Anita Baker album) and last: Chicago Patriots Gaelic Football Club -[2018-02-13T00:29:19.502] [INFO] cheese - inserting 1000 documents. first: Darahičyn and last: 廖洋震 -[2018-02-13T00:29:19.552] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:29:19.570] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:19.632] [INFO] cheese - inserting 1000 documents. first: 2006 Women's British Open Squash Championship and last: The Zodiac killer -[2018-02-13T00:29:19.652] [INFO] cheese - inserting 1000 documents. first: Kensgaila VK-8 Aušra and last: 2-lithiobutane -[2018-02-13T00:29:19.683] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:29:19.687] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:29:19.884] [INFO] cheese - inserting 1000 documents. first: Latsamy Mingboupha and last: Category:1944 in Guam -[2018-02-13T00:29:19.963] [INFO] cheese - inserting 1000 documents. first: Category:Liberal Party (UK) life peers and last: Wikipedia:Articles for deletion/Amberair -[2018-02-13T00:29:19.971] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:29:20.024] [INFO] cheese - inserting 1000 documents. first: File:Handcream for a Generation cover.jpeg and last: Cycling at the 1983 Pan American Games -[2018-02-13T00:29:20.084] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:29:20.104] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:29:20.132] [INFO] cheese - inserting 1000 documents. first: Robert Stanley (aviator) and last: Universal magisterium -[2018-02-13T00:29:20.144] [INFO] cheese - inserting 1000 documents. first: Kinta valley and last: Category:1797 establishments in Virginia -[2018-02-13T00:29:20.145] [INFO] cheese - inserting 1000 documents. first: 531 U.S. 326 and last: Mike Riley (curler) -[2018-02-13T00:29:20.187] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:20.189] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:29:20.200] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:29:20.290] [INFO] cheese - inserting 1000 documents. first: Tholian and last: Externsteine -[2018-02-13T00:29:20.352] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:29:20.387] [INFO] cheese - inserting 1000 documents. first: File:Danville Dashers Hockey Logo.png and last: The Stones Are Rolling -[2018-02-13T00:29:20.429] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:20.449] [INFO] cheese - inserting 1000 documents. first: Deno and last: Davison Peak -[2018-02-13T00:29:20.489] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:20.565] [INFO] cheese - inserting 1000 documents. first: Lewisham City Learning Centre and last: Huo Long Jing -[2018-02-13T00:29:20.571] [INFO] cheese - inserting 1000 documents. first: Category:1856 establishments in Virginia and last: That's How You Know (Nico & Vinz song) -[2018-02-13T00:29:20.613] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:29:20.618] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:20.634] [INFO] cheese - inserting 1000 documents. first: Ricardo Oliveira (rink hockey player) and last: Hong Kong legislative election, 2012 (Kowloon West) -[2018-02-13T00:29:20.649] [INFO] cheese - inserting 1000 documents. first: Ordinary and Universal Magisterium and last: Proper venue -[2018-02-13T00:29:20.688] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:29:20.701] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:29:20.873] [INFO] cheese - inserting 1000 documents. first: Davisville Glacier and last: Kooyman Peak -[2018-02-13T00:29:20.912] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Yorkshire/Newsletter/January 2009 and last: Gravely -[2018-02-13T00:29:20.920] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:29:20.984] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:20.988] [INFO] cheese - inserting 1000 documents. first: Category:Maryland elections, 1972 and last: Thursday (mixtape) -[2018-02-13T00:29:21.048] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:21.050] [INFO] cheese - inserting 1000 documents. first: Fusarium oxysporum f.sp. coffea and last: Chen Zhen (Minister) -[2018-02-13T00:29:21.213] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:21.302] [INFO] cheese - inserting 1000 documents. first: Taibai Stream Salamander and last: 2013 Roger Federer tennis season -[2018-02-13T00:29:21.345] [INFO] cheese - inserting 1000 documents. first: Jack Angel (SHC) and last: Volodymyr Ivasyuk -[2018-02-13T00:29:21.370] [INFO] cheese - inserting 1000 documents. first: Understanding Comics and last: V. R. Krishna Iyer -[2018-02-13T00:29:21.376] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:29:21.440] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:29:21.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Department of Fun/Word Association/Fixed and last: Not sold in stores (marketing) -[2018-02-13T00:29:21.486] [INFO] cheese - inserting 1000 documents. first: Erika Renee Land and last: Buena Vista Plantation -[2018-02-13T00:29:21.509] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T00:29:21.552] [INFO] cheese - inserting 1000 documents. first: File:Elderly logo.png and last: Pavoor -[2018-02-13T00:29:21.554] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:29:21.580] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:29:21.633] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:29:21.796] [INFO] cheese - inserting 1000 documents. first: Anshe Chesed Fairmount Temple and last: Four Provinces (Pakistan) -[2018-02-13T00:29:21.797] [INFO] cheese - inserting 1000 documents. first: Chen Zhen (Martial Artist) and last: Meir Taweig Synagogue -[2018-02-13T00:29:21.837] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:29:21.847] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:29:21.935] [INFO] cheese - inserting 1000 documents. first: Draft:Fascia Training and last: Category:North Carolina elections, 1841 -[2018-02-13T00:29:21.972] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:29:22.014] [INFO] cheese - inserting 1000 documents. first: Meiji University junior college and last: Wikipedia:WikiProject Spam/LinkReports/sneakers-nike.com -[2018-02-13T00:29:22.069] [INFO] cheese - inserting 1000 documents. first: Steve Lilliewhite and last: Nagqu Prefecture -[2018-02-13T00:29:22.081] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:29:22.105] [INFO] cheese - inserting 1000 documents. first: Periya, Kasaragod and last: Haralampie Hadži-Risteski -[2018-02-13T00:29:22.143] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:29:22.170] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:29:22.280] [INFO] cheese - inserting 1000 documents. first: Stylidium subg. Tolypangium and last: St John's College, Agra -[2018-02-13T00:29:22.335] [INFO] cheese - inserting 1000 documents. first: Category:North Carolina elections, 1843 and last: Elections in Sarawak -[2018-02-13T00:29:22.364] [INFO] cheese - inserting 1000 documents. first: WrestleMania X - Seven and last: Girolamo Conestaggio -[2018-02-13T00:29:22.375] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:29:22.406] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:22.410] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:29:22.506] [INFO] cheese - inserting 1000 documents. first: Taxco and last: Lake City -[2018-02-13T00:29:22.568] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/wholesalenikemall.com and last: British Irish Parliamentary Assembly -[2018-02-13T00:29:22.586] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:29:22.628] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:22.645] [INFO] cheese - inserting 1000 documents. first: File:Funtimecomicslogo.png and last: Hassan Sabry Pasha -[2018-02-13T00:29:22.686] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:29:22.739] [INFO] cheese - inserting 1000 documents. first: Philip Sang'ka Marmo and last: Skymaster Excel -[2018-02-13T00:29:22.767] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:29:22.795] [INFO] cheese - inserting 1000 documents. first: Massey Commission and last: Wikipedia:Wikipedia Signpost/2005-12-26/News and notes -[2018-02-13T00:29:22.826] [INFO] cheese - inserting 1000 documents. first: File:Malfatti Commission.jpg and last: Al-Khalīlī -[2018-02-13T00:29:22.848] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for permissions/Approved/January 2013 and last: Atkarskoye -[2018-02-13T00:29:22.861] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:29:22.888] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:29:22.912] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:29:23.064] [INFO] cheese - inserting 1000 documents. first: Portal:Santana/Nominate/Selected article and last: S. L. Sokolov -[2018-02-13T00:29:23.098] [INFO] cheese - inserting 1000 documents. first: Provincia de El Bierzo and last: Thu, Palpa -[2018-02-13T00:29:23.112] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:29:23.160] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:29:23.203] [INFO] cheese - inserting 1000 documents. first: Template:Classical music festival and last: Cardinals (The Wonder Years song) -[2018-02-13T00:29:23.239] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:29:23.317] [INFO] cheese - inserting 1000 documents. first: Portal:Sports/Selected group/4 and last: Hosmer Lake -[2018-02-13T00:29:23.350] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-01-02/Features and admins and last: Category:Political parties in Northern Catalonia -[2018-02-13T00:29:23.376] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:23.406] [INFO] cheese - inserting 1000 documents. first: Specialty show and last: Blogging software -[2018-02-13T00:29:23.493] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:29:23.542] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:29:23.676] [INFO] cheese - inserting 1000 documents. first: List of arches in Oregon and last: 2004 NECBL season -[2018-02-13T00:29:23.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/zorder256 and last: Buru people -[2018-02-13T00:29:23.706] [INFO] cheese - inserting 1000 documents. first: County Route 42 (Rensselaer County, New York) and last: TRIM31 (gene) -[2018-02-13T00:29:23.716] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:23.737] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:29:23.739] [INFO] cheese - inserting 1000 documents. first: Email advertising and last: SoCal -[2018-02-13T00:29:23.743] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:29:23.789] [INFO] cheese - inserting 1000 documents. first: Cigarettes & Saints and last: Uniclam -[2018-02-13T00:29:23.821] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T00:29:23.830] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:29:23.980] [INFO] cheese - inserting 1000 documents. first: St. Albert the Great Elementary School (Kentucky) and last: Niall-Iain McDonald -[2018-02-13T00:29:23.995] [INFO] cheese - inserting 1000 documents. first: STMN2 (gene) and last: File:Feelin's.jpg -[2018-02-13T00:29:24.023] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:29:24.038] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:29:24.097] [INFO] cheese - inserting 1000 documents. first: Alfred Dwight Foster Hamlin and last: Piotrkow Statutes -[2018-02-13T00:29:24.128] [INFO] cheese - inserting 1000 documents. first: File:Hosiden-logo.png and last: Turkmenistan League -[2018-02-13T00:29:24.159] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:29:24.161] [INFO] cheese - inserting 1000 documents. first: Temperature (game theory) and last: Seiha English Academy -[2018-02-13T00:29:24.169] [INFO] cheese - inserting 1000 documents. first: Marché du Porc Breton and last: Cryptosporidium parvum virus 1 -[2018-02-13T00:29:24.182] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:24.215] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:29:24.223] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:24.396] [INFO] cheese - inserting 1000 documents. first: List of NASCAR all-time cup winners and last: ETV4 (gene) -[2018-02-13T00:29:24.429] [INFO] cheese - inserting 1000 documents. first: DNAase and last: Choristoneura occidentalis -[2018-02-13T00:29:24.431] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:24.480] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:29:24.575] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Barbara Samorajczyk and last: The Great Web Black-out -[2018-02-13T00:29:24.591] [INFO] cheese - inserting 1000 documents. first: Portal:Somerset/Selected article/22 and last: SS Helga -[2018-02-13T00:29:24.602] [INFO] cheese - inserting 1000 documents. first: Beebee gun and last: File:KGMB9 Logo 2007.png -[2018-02-13T00:29:24.622] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:29:24.656] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:24.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/White Trash Debutantes and last: Rodney Holman -[2018-02-13T00:29:24.690] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:29:24.734] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:29:24.788] [INFO] cheese - inserting 1000 documents. first: ALAS2 (gene) and last: Wikipedia:Articles for deletion/List of medical schools in Bahrain -[2018-02-13T00:29:24.790] [INFO] cheese - inserting 1000 documents. first: Andrés García and last: Musée de Cluny -- Musée national du Moyen Âge -[2018-02-13T00:29:24.820] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:29:24.859] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:29:24.950] [INFO] cheese - inserting 1000 documents. first: Category:Protests in Venezuela and last: Category:United Kingdom Acts of Parliament 1900 -[2018-02-13T00:29:25.006] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:29:25.041] [INFO] cheese - inserting 1000 documents. first: W.F. Ragle and last: John Lee Wortham -[2018-02-13T00:29:25.091] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:25.130] [INFO] cheese - inserting 1000 documents. first: Martin Riman and last: File:Kmos-tv-logo.png -[2018-02-13T00:29:25.174] [INFO] cheese - inserting 1000 documents. first: Thyon and last: Rosemarie Kother-Gabriel -[2018-02-13T00:29:25.180] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:29:25.231] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:25.254] [INFO] cheese - inserting 1000 documents. first: The Outcry and last: Molybdic -[2018-02-13T00:29:25.324] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:29:25.515] [INFO] cheese - inserting 1000 documents. first: File:Melvins vs. Minneapolis.jpg and last: KAT2A (gene) -[2018-02-13T00:29:25.543] [INFO] cheese - inserting 1000 documents. first: County Route 74 (Rensselaer County, New York) and last: Conway's group -[2018-02-13T00:29:25.594] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:29:25.646] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:25.658] [INFO] cheese - inserting 1000 documents. first: Bangor, County Mayo and last: Painless (House) -[2018-02-13T00:29:25.684] [INFO] cheese - inserting 1000 documents. first: Vladaya and last: Light (automobile) -[2018-02-13T00:29:25.754] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:29:25.761] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:29:25.906] [INFO] cheese - inserting 1000 documents. first: NR6A1 (gene) and last: HLA-A (gene) -[2018-02-13T00:29:25.932] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:29:25.938] [INFO] cheese - inserting 1000 documents. first: The Lady with the Unicorn and last: Big Cat -[2018-02-13T00:29:25.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jill Hardy and last: Clarkson Memorial -[2018-02-13T00:29:26.012] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T00:29:26.030] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:29:26.094] [INFO] cheese - inserting 1000 documents. first: Category:Masonic buildings in North Dakota and last: 屯昌县 -[2018-02-13T00:29:26.129] [INFO] cheese - inserting 1000 documents. first: Labyrint (disambiguation) and last: Category:2012 establishments in Maine -[2018-02-13T00:29:26.161] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:29:26.184] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:29:26.222] [INFO] cheese - inserting 1000 documents. first: Vallassinese dialect and last: USS Partridge -[2018-02-13T00:29:26.230] [INFO] cheese - inserting 1000 documents. first: Oskari Rissanen and last: David Mulhall -[2018-02-13T00:29:26.270] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:29:26.278] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:29:26.437] [INFO] cheese - inserting 1000 documents. first: Japalura major and last: CN Police -[2018-02-13T00:29:26.453] [INFO] cheese - inserting 1000 documents. first: Great Web Black-out and last: Morten Dons -[2018-02-13T00:29:26.461] [INFO] cheese - inserting 1000 documents. first: OR11L1 (gene) and last: History of religion in Ukraine -[2018-02-13T00:29:26.504] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:26.534] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:29:26.579] [INFO] cheese - batch complete in: 1.952 secs -[2018-02-13T00:29:26.713] [INFO] cheese - inserting 1000 documents. first: Vbuletin and last: Cesare Pronti -[2018-02-13T00:29:26.759] [INFO] cheese - inserting 1000 documents. first: Marcus Daly (politics) and last: Panamaram -[2018-02-13T00:29:26.763] [INFO] cheese - inserting 1000 documents. first: South Jasper Range and last: Râșdaș River -[2018-02-13T00:29:26.787] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:29:26.821] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:26.840] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:29:27.011] [INFO] cheese - inserting 1000 documents. first: Template:Comedy Central programming and last: OR10J3 (gene) -[2018-02-13T00:29:27.022] [INFO] cheese - inserting 1000 documents. first: Xbalanque and last: Washington Allston -[2018-02-13T00:29:27.059] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:29:27.124] [INFO] cheese - inserting 1000 documents. first: The Severn and last: Joshua Michael Marshall -[2018-02-13T00:29:27.136] [INFO] cheese - inserting 1000 documents. first: Deborah Joy and last: Template:Ethnic groups in Burma -[2018-02-13T00:29:27.159] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:29:27.212] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:29:27.233] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:29:27.327] [INFO] cheese - inserting 1000 documents. first: Raymond J. Reeves and last: File:Gorkamorka box.jpg -[2018-02-13T00:29:27.331] [INFO] cheese - inserting 1000 documents. first: OR13G1 (gene) and last: MRPS17 (gene) -[2018-02-13T00:29:27.350] [INFO] cheese - inserting 1000 documents. first: Payyampally and last: 2003 ABN AMRO World Tennis Tournament -[2018-02-13T00:29:27.354] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:29:27.356] [INFO] cheese - inserting 1000 documents. first: Pochi (song) and last: Low Intensity Conflict -[2018-02-13T00:29:27.376] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:29:27.411] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:29:27.457] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:27.594] [INFO] cheese - inserting 1000 documents. first: Template:Languages of Burma and last: Category:British religious workers -[2018-02-13T00:29:27.643] [INFO] cheese - inserting 1000 documents. first: Battle of Caldera and last: Punta Gorda Airport (disambiguation) -[2018-02-13T00:29:27.669] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:29:27.658] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:27.748] [INFO] cheese - inserting 1000 documents. first: Robert K. Futterman and last: 1971-72 Michigan Wolverines men's basketball team -[2018-02-13T00:29:27.772] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:29:28.075] [INFO] cheese - inserting 1000 documents. first: Rappbodeblick (oberhalb Eichenberg) and last: Ryan W. Pearson -[2018-02-13T00:29:28.129] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:28.156] [INFO] cheese - inserting 1000 documents. first: USS Maui (ARG-8) and last: Chile at the 1956 Summer Olympics -[2018-02-13T00:29:28.183] [INFO] cheese - inserting 1000 documents. first: Military Operation and last: Comparison of popular optical data-storage systems -[2018-02-13T00:29:28.216] [INFO] cheese - inserting 1000 documents. first: Korak, Nepal and last: JLS (Group) -[2018-02-13T00:29:28.248] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:29:28.261] [INFO] cheese - inserting 1000 documents. first: His Wife's Mother (1932 film) and last: Category:Reform in Morocco -[2018-02-13T00:29:28.265] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:29:28.274] [INFO] cheese - inserting 1000 documents. first: 1971-72 Rangers F.C. season and last: 1994-95 First Macedonian Football League -[2018-02-13T00:29:28.296] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:29:28.402] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:29:28.412] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:29:28.524] [INFO] cheese - inserting 1000 documents. first: Julianna Margulies and last: Compound noun -[2018-02-13T00:29:28.584] [INFO] cheese - inserting 1000 documents. first: Theophilus John Minton Syphax and last: SLC14A1 (gene) -[2018-02-13T00:29:28.631] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:29:28.701] [INFO] cheese - batch complete in: 1.542 secs -[2018-02-13T00:29:28.912] [INFO] cheese - inserting 1000 documents. first: SLC15A1 (gene) and last: CA8 (gene) -[2018-02-13T00:29:28.927] [INFO] cheese - inserting 1000 documents. first: 1994-95 French Division 1 and last: Slammerverse -[2018-02-13T00:29:29.002] [INFO] cheese - inserting 1000 documents. first: Eye to Eye (UK TV series) and last: The Sharyn River -[2018-02-13T00:29:29.018] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:29:29.051] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:29:29.067] [INFO] cheese - inserting 1000 documents. first: Lamar Trotti and last: West Barsham -[2018-02-13T00:29:29.074] [INFO] cheese - inserting 1000 documents. first: File:NASCARcampworldseries.png and last: File:Ndcv.png -[2018-02-13T00:29:29.075] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:29:29.138] [INFO] cheese - inserting 1000 documents. first: 2000 Arizona Diamondbacks season and last: AMS-204 -[2018-02-13T00:29:29.179] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:29:29.218] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:29:29.240] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:29:29.350] [INFO] cheese - inserting 1000 documents. first: Allan Robin Winston Hancox and last: HVCN1 (gene) -[2018-02-13T00:29:29.356] [INFO] cheese - inserting 1000 documents. first: 2004-05 Newcastle United F.C. season and last: 2010-11 in Argentine football -[2018-02-13T00:29:29.376] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:29:29.377] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:29:29.580] [INFO] cheese - inserting 1000 documents. first: USA D.O.D. and last: NREP (gene) -[2018-02-13T00:29:29.607] [INFO] cheese - inserting 1000 documents. first: Template:1971 NL Record vs. opponents/doc and last: Template:CRH color/doc -[2018-02-13T00:29:29.622] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:29:29.635] [INFO] cheese - inserting 1000 documents. first: S. Senadeera and last: File:Nicly.png -[2018-02-13T00:29:29.675] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:29:29.684] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:29:29.700] [INFO] cheese - inserting 1000 documents. first: James Craig Annan and last: Denmark-Tanzania relations -[2018-02-13T00:29:29.700] [INFO] cheese - inserting 1000 documents. first: Compound adjective and last: Unary -[2018-02-13T00:29:29.754] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:29:29.775] [INFO] cheese - inserting 1000 documents. first: Pyotr Leonidovich Kapitsa and last: Studentereksamen -[2018-02-13T00:29:29.776] [INFO] cheese - inserting 1000 documents. first: Aid Convoy and last: Turn Island -[2018-02-13T00:29:29.780] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T00:29:29.839] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:29:29.857] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:29:29.898] [INFO] cheese - inserting 1000 documents. first: COPS2 (gene) and last: Nfsug -[2018-02-13T00:29:29.932] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:29:30.013] [INFO] cheese - inserting 1000 documents. first: Denmark-Uganda relations and last: Netherlands Football League Championship 1902-03 -[2018-02-13T00:29:30.049] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:29:30.108] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sumire (model, born 1990) and last: Category:Houses in Larimer County, Colorado -[2018-02-13T00:29:30.167] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:29:30.186] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Jack Sholder and last: File:Blackadder archbishop.jpg -[2018-02-13T00:29:30.239] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:29:30.299] [INFO] cheese - inserting 1000 documents. first: File:Nicma.png and last: File:Jurongwestavenue1.jpg -[2018-02-13T00:29:30.387] [INFO] cheese - inserting 1000 documents. first: Netherlands Football League Championship 1903-04 and last: Arizona desert centipede -[2018-02-13T00:29:30.388] [INFO] cheese - inserting 1000 documents. first: Dowel bar retrofit and last: Media in Topeka, Kansas -[2018-02-13T00:29:30.398] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:29:30.442] [INFO] cheese - inserting 1000 documents. first: File:Th artcgirlz-1.jpg and last: Pseudopezicula tracheiphila -[2018-02-13T00:29:30.447] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:29:30.460] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:29:30.528] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:29:30.583] [INFO] cheese - inserting 1000 documents. first: Southwark Bridge and last: Socialist Worker's Party -[2018-02-13T00:29:30.641] [INFO] cheese - inserting 1000 documents. first: Amsterdamse Poort (Haarlem) and last: Hamoud Abdullah Hamoud Hassan Al Wady -[2018-02-13T00:29:30.666] [INFO] cheese - inserting 1000 documents. first: Mais Gate and last: Best Direction Award (Locarno International Film Festival) -[2018-02-13T00:29:30.676] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:29:30.678] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:29:30.713] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:30.838] [INFO] cheese - inserting 1000 documents. first: Simeon Slavchev and last: Eugène Barthe -[2018-02-13T00:29:30.897] [INFO] cheese - inserting 1000 documents. first: Justice Taylor and last: Waclaw Szamotulczyk -[2018-02-13T00:29:30.903] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:29:30.953] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:30.969] [INFO] cheese - inserting 1000 documents. first: I am the Walrus and last: File:RootsManuva BrandNewSecondHand albumcover.jpg -[2018-02-13T00:29:31.010] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:29:31.035] [INFO] cheese - inserting 1000 documents. first: Anne & Serge Golon and last: Time and Again (Voyager episode) -[2018-02-13T00:29:31.099] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:29:31.161] [INFO] cheese - inserting 1000 documents. first: Portal:Machine learning/Selected picture and last: Boxun.com -[2018-02-13T00:29:31.197] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:29:31.266] [INFO] cheese - inserting 1000 documents. first: Template:User Chitrapur Saraswat Brahmin and last: File:George and Tammy and Tina.jpg -[2018-02-13T00:29:31.303] [INFO] cheese - inserting 1000 documents. first: Hinko Bauer and last: 2013 Indian Grand Prix -[2018-02-13T00:29:31.311] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:31.514] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:29:31.571] [INFO] cheese - inserting 1000 documents. first: Northampton massachusetts and last: File:University at buffalo 006.JPG -[2018-02-13T00:29:31.608] [INFO] cheese - inserting 1000 documents. first: US Goverment and last: Zdzislaw Kasprzak -[2018-02-13T00:29:31.657] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:29:31.674] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:29:31.724] [INFO] cheese - inserting 1000 documents. first: Diego de la Vega and last: Joe Tex -[2018-02-13T00:29:31.756] [INFO] cheese - inserting 1000 documents. first: KOI-2124.01 and last: Wikipedia:Today's featured article/requests/Serpens -[2018-02-13T00:29:31.817] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T00:29:31.859] [INFO] cheese - inserting 1000 documents. first: File:RootsManuva RunComeSaveMe albumcover.jpg and last: Elizabeth Catlett -[2018-02-13T00:29:31.867] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:31.950] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:29:32.080] [INFO] cheese - inserting 1000 documents. first: Slob, U.S. Virgin Islands and last: La Loba (Mexican Telenovela) -[2018-02-13T00:29:32.126] [INFO] cheese - inserting 1000 documents. first: 2013 Abu Dhabi Grand Prix and last: Craspedia nigristellata -[2018-02-13T00:29:32.171] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:29:32.195] [INFO] cheese - inserting 1000 documents. first: File:PanPacificChamp08.png and last: Binkley brothers dixie clodhoppers -[2018-02-13T00:29:32.211] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:29:32.215] [INFO] cheese - inserting 1000 documents. first: Al-Madhbah and last: Robert Chisholm (disambiguation) -[2018-02-13T00:29:32.269] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:32.303] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:29:32.478] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sleepyhead (band) and last: Athrips pallida -[2018-02-13T00:29:32.631] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:29:32.711] [INFO] cheese - inserting 1000 documents. first: Ron Lynch (American football) and last: 遼陽 -[2018-02-13T00:29:32.711] [INFO] cheese - inserting 1000 documents. first: Treaty of Vienna and last: Wikipedia:Peer review/Military history of African Americans -[2018-02-13T00:29:32.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Most-wanted articles/old and last: Kashkevar, Markazi -[2018-02-13T00:29:32.762] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:29:32.770] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:29:32.778] [INFO] cheese - inserting 1000 documents. first: Amigo (disambiguation) and last: Kituwa -[2018-02-13T00:29:32.824] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian documentary filmmakers and last: Massacre in Dhaka University during 1971 -[2018-02-13T00:29:32.826] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:32.846] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:29:32.898] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:29:32.992] [INFO] cheese - inserting 1000 documents. first: Richard Lewontin and last: Ferenc Mádl -[2018-02-13T00:29:33.088] [INFO] cheese - batch complete in: 1.271 secs -[2018-02-13T00:29:33.130] [INFO] cheese - inserting 1000 documents. first: Athrips punctosa and last: Padus rufula -[2018-02-13T00:29:33.148] [INFO] cheese - inserting 1000 documents. first: Big Man (comics) and last: Wenchow -[2018-02-13T00:29:33.176] [INFO] cheese - inserting 1000 documents. first: Dynaponics and last: Siege of Ochakov (1737) -[2018-02-13T00:29:33.189] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:29:33.204] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:29:33.216] [INFO] cheese - inserting 1000 documents. first: Tarkan discography and last: File:KEUV31.png -[2018-02-13T00:29:33.255] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:29:33.296] [INFO] cheese - inserting 1000 documents. first: Tā marbuta and last: File:SaintPetersburgTimesRussiaLogo.png -[2018-02-13T00:29:33.300] [INFO] cheese - inserting 1000 documents. first: Khunjerab National Park and last: Wikipedia:Articles for deletion/Angels Wake -[2018-02-13T00:29:33.329] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:29:33.358] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:33.385] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:29:33.613] [INFO] cheese - inserting 1000 documents. first: Jack McCarthy (baseball) and last: The Court -[2018-02-13T00:29:33.653] [INFO] cheese - inserting 1000 documents. first: Al `Ujaylat and last: Mary D. Glasspool -[2018-02-13T00:29:33.752] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:33.749] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:29:33.780] [INFO] cheese - inserting 1000 documents. first: Category:Australian television-related lists and last: Ugo, re d'Italia -[2018-02-13T00:29:33.808] [INFO] cheese - inserting 1000 documents. first: File:Saintplayer blue.png and last: List of asteroids/74001–75000 -[2018-02-13T00:29:33.849] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:29:33.871] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:29:33.950] [INFO] cheese - inserting 1000 documents. first: Prunus parksii and last: Prophet (Islam) -[2018-02-13T00:29:34.019] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:29:34.037] [INFO] cheese - inserting 1000 documents. first: Understudy and last: Patrick Leahy -[2018-02-13T00:29:34.056] [INFO] cheese - inserting 1000 documents. first: Lancaster Regional Airport and last: Alois Riehl -[2018-02-13T00:29:34.116] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T00:29:34.121] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:29:34.132] [INFO] cheese - inserting 1000 documents. first: Category:Internet soap operas and last: File:Borzsony badge.jpg -[2018-02-13T00:29:34.188] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:29:34.249] [INFO] cheese - inserting 1000 documents. first: Lawrence (Seaford, Delaware) and last: 462nd Tactical Fighter Squadron -[2018-02-13T00:29:34.256] [INFO] cheese - inserting 1000 documents. first: 🎽 and last: Category:Republic of China people by occupation -[2018-02-13T00:29:34.277] [INFO] cheese - inserting 1000 documents. first: List of asteroids/73001–74000 and last: Akira Matsunaga -[2018-02-13T00:29:34.290] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:29:34.307] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:29:34.320] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:29:34.412] [INFO] cheese - inserting 1000 documents. first: Bhoirgaon and last: File:Noi siamo le colonne vittorio de sica luigi filippo damico pcsi.jpg -[2018-02-13T00:29:34.452] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:34.550] [INFO] cheese - inserting 1000 documents. first: 38 (Irish) Brigade and last: Category:German-American culture in New Jersey -[2018-02-13T00:29:34.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Rugby league/to do and last: Security breach notification laws -[2018-02-13T00:29:34.603] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:29:34.611] [INFO] cheese - inserting 1000 documents. first: Pumping on Your Stereo and last: Diocese of Chelmsford -[2018-02-13T00:29:34.642] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:34.661] [INFO] cheese - inserting 1000 documents. first: Derby-Shelton Bridge and last: File:The Telegraph (Calcutta).png -[2018-02-13T00:29:34.669] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:29:34.724] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Huggle/No you can't have instant reverts and last: Category:Dayton Flyers -[2018-02-13T00:29:34.724] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:29:34.799] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:29:34.876] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Legislative Council of Fiji by ethnicity and last: Khiêm Lăng -[2018-02-13T00:29:34.938] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:29:34.947] [INFO] cheese - inserting 1000 documents. first: Lisa Murkowski and last: Fushengji shi -[2018-02-13T00:29:35.022] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:29:35.112] [INFO] cheese - inserting 1000 documents. first: Category:Swedish directors and last: Travis London -[2018-02-13T00:29:35.174] [INFO] cheese - inserting 1000 documents. first: Kidney Diseases and last: Kranji Mile -[2018-02-13T00:29:35.199] [INFO] cheese - inserting 1000 documents. first: Europarl TV and last: Category:Songwriters from Hawaii -[2018-02-13T00:29:35.203] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:29:35.218] [INFO] cheese - inserting 1000 documents. first: Acanthosicyos naudinianus and last: Manlius, NY -[2018-02-13T00:29:35.238] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:35.249] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:29:35.299] [INFO] cheese - inserting 1000 documents. first: "Lucian Blaga" University of Sibiu and last: Standup fighting -[2018-02-13T00:29:35.359] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:29:35.399] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:29:35.416] [INFO] cheese - inserting 1000 documents. first: World of Silence and last: Lycee Victor Hugo (Sofia) -[2018-02-13T00:29:35.535] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:29:35.660] [INFO] cheese - inserting 1000 documents. first: Vento di ponente (television series) and last: Who I Am (book) -[2018-02-13T00:29:35.695] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:29:35.768] [INFO] cheese - inserting 1000 documents. first: Gass the band and last: Shirley Adele Field -[2018-02-13T00:29:35.816] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:29:35.883] [INFO] cheese - inserting 1000 documents. first: Template:Nippon Professional Baseball Seasons and last: Julius Shaambeni Shilongo Mnyika -[2018-02-13T00:29:35.962] [INFO] cheese - inserting 1000 documents. first: Theodore Wright and last: First Sale Doctrine -[2018-02-13T00:29:36.022] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:29:36.082] [INFO] cheese - inserting 1000 documents. first: Marinier Archipelago and last: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2015 August 13 -[2018-02-13T00:29:36.082] [INFO] cheese - inserting 1000 documents. first: Standup fight and last: Cangaceiro -[2018-02-13T00:29:36.088] [INFO] cheese - inserting 1000 documents. first: Ellery Albee Hibbard and last: Raul Alcala -[2018-02-13T00:29:36.122] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T00:29:36.161] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:29:36.169] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:29:36.175] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:29:36.231] [INFO] cheese - inserting 1000 documents. first: Niall Dickson and last: Category:Argentine nobility -[2018-02-13T00:29:36.262] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:29:36.390] [INFO] cheese - inserting 1000 documents. first: Fukuhara and last: Vojsko, Vodice -[2018-02-13T00:29:36.466] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:29:36.520] [INFO] cheese - inserting 1000 documents. first: Climate zones by altitude and last: ER de Belgrade -[2018-02-13T00:29:36.531] [INFO] cheese - inserting 1000 documents. first: Category:Houses in Sioux County, Iowa and last: Gelechia obscurosuffusella -[2018-02-13T00:29:36.559] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:29:36.566] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:36.617] [INFO] cheese - inserting 1000 documents. first: Category:Policy debate and last: Template:Birmingham Landmarks -[2018-02-13T00:29:36.663] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:29:36.668] [INFO] cheese - inserting 1000 documents. first: File:Phyllis Iolanthe and Strephon.jpg and last: Phytotaxonomic -[2018-02-13T00:29:36.672] [INFO] cheese - inserting 1000 documents. first: Carolina Beatriz Ângelo and last: Organogels -[2018-02-13T00:29:36.716] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:29:36.744] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:29:36.832] [INFO] cheese - inserting 1000 documents. first: Portal:Royal Air Force/Wikimedia and last: Mojinos Escozíos -[2018-02-13T00:29:36.872] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:29:36.895] [INFO] cheese - inserting 1000 documents. first: Neil Schyan Jeffers and last: Austin Planetarium -[2018-02-13T00:29:36.902] [INFO] cheese - inserting 1000 documents. first: Pear Tree House and last: Sørumsand -[2018-02-13T00:29:36.940] [INFO] cheese - inserting 1000 documents. first: Wild marijuana and last: Iran at the 2015 World Championships in Athletics -[2018-02-13T00:29:36.941] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:29:36.972] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:29:36.986] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:29:37.096] [INFO] cheese - inserting 1000 documents. first: Jerry kindall field at frank sancet stadium and last: Powderfinger discography -[2018-02-13T00:29:37.141] [INFO] cheese - inserting 1000 documents. first: Deutsch-Stamora and last: Category:Tourist attractions in Binghamton, New York -[2018-02-13T00:29:37.247] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:29:37.262] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:29:37.300] [INFO] cheese - inserting 1000 documents. first: Royal College of Pathologists of Australasia and last: Johnny O’Keefe -[2018-02-13T00:29:37.464] [INFO] cheese - inserting 1000 documents. first: Bohumil Sládek and last: Vasyl Anatoliyovich Lomachenko -[2018-02-13T00:29:37.474] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:29:37.544] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:29:37.647] [INFO] cheese - inserting 1000 documents. first: Alison Cumings and last: Category:Fort Hays State Tigers men's basketball coaches -[2018-02-13T00:29:37.711] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:29:37.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Peer review/Ronald Skirth and last: Mizerable -[2018-02-13T00:29:37.944] [INFO] cheese - inserting 1000 documents. first: Category:Cape Verde national football team navigational boxes and last: Frances Isabella Duberly -[2018-02-13T00:29:37.964] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T00:29:37.992] [INFO] cheese - inserting 1000 documents. first: Meletinsky and last: The Popular Magazine -[2018-02-13T00:29:38.064] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:29:38.122] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:29:38.158] [INFO] cheese - inserting 1000 documents. first: 2FC and last: Pinning hold -[2018-02-13T00:29:38.186] [INFO] cheese - inserting 1000 documents. first: Ganglionic eminences and last: Meanings of asteroid names (113001-114000) -[2018-02-13T00:29:38.197] [INFO] cheese - inserting 1000 documents. first: List of Finance Ministers of France and last: Emergency Vets -[2018-02-13T00:29:38.265] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:29:38.260] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:29:38.338] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:29:38.394] [INFO] cheese - inserting 1000 documents. first: Wiehle–Reston East Station and last: Starlight (Warriors) -[2018-02-13T00:29:38.464] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:29:38.592] [INFO] cheese - inserting 1000 documents. first: ThDP and last: Bonython Park, Adelaide -[2018-02-13T00:29:38.696] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:29:38.706] [INFO] cheese - inserting 1000 documents. first: Category:Music of the Harry Potter films and last: Phanerochaete chrysorhizon -[2018-02-13T00:29:38.710] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wiesława Hunzvi and last: Clarence H. "Du" Burns Arena -[2018-02-13T00:29:38.774] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:29:38.777] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:29:38.846] [INFO] cheese - inserting 1000 documents. first: Oxford Pledge and last: List of shoe-throwing incidents -[2018-02-13T00:29:38.896] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:29:38.901] [INFO] cheese - inserting 1000 documents. first: Nothris kalevalella and last: Category:Future Elections -[2018-02-13T00:29:38.913] [INFO] cheese - inserting 1000 documents. first: The Notorious B.I.G. Duets: The Final Chapter and last: Walton family -[2018-02-13T00:29:38.963] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:29:38.984] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:29:39.113] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations located underground in Norway and last: Schaadt -[2018-02-13T00:29:39.162] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:29:39.345] [INFO] cheese - inserting 1000 documents. first: Whitney, West Virginia and last: Category:Swedish-American culture in Nebraska -[2018-02-13T00:29:39.364] [INFO] cheese - inserting 1000 documents. first: Phanerochaete radicata and last: History of automated adaptive instruction in computer applications -[2018-02-13T00:29:39.410] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:29:39.438] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:29:39.470] [INFO] cheese - inserting 1000 documents. first: Energies of God and last: Return To Castle Wolfenstein -[2018-02-13T00:29:39.511] [INFO] cheese - inserting 1000 documents. first: Mega TV Championship and last: L'album biango -[2018-02-13T00:29:39.536] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (Anatolian gods) and last: John James Hugh Henry Stewart-Murray, 7th Duke of Athole -[2018-02-13T00:29:39.553] [INFO] cheese - batch complete in: 1.215 secs -[2018-02-13T00:29:39.562] [INFO] cheese - inserting 1000 documents. first: Félicie Point and last: Catholic Art Quarterly -[2018-02-13T00:29:39.563] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:29:39.584] [INFO] cheese - inserting 1000 documents. first: Calabi-Yau four-fold and last: Leitrim Observer -[2018-02-13T00:29:39.603] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:29:39.607] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:29:39.643] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:29:39.796] [INFO] cheese - inserting 1000 documents. first: Category:British Columbia general election, 1941 results by riding and last: File:Un biglietto del tram.jpg -[2018-02-13T00:29:39.838] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:29:39.842] [INFO] cheese - inserting 1000 documents. first: Jim kennedy and last: Cecil Forsyth -[2018-02-13T00:29:39.887] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:29:39.933] [INFO] cheese - inserting 1000 documents. first: Template:Airports in Portugal and last: Category:Wildfowl & Wetlands Trust -[2018-02-13T00:29:39.936] [INFO] cheese - inserting 1000 documents. first: Nothing to Lose (S'Express song) and last: Baba Hafusa -[2018-02-13T00:29:39.968] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:29:39.991] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:29:40.058] [INFO] cheese - inserting 1000 documents. first: Essential supremum and essential infimum and last: File:MersenneLargest.png -[2018-02-13T00:29:40.073] [INFO] cheese - inserting 1000 documents. first: Template:Lotr and last: Mamadou Camara -[2018-02-13T00:29:40.119] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:29:40.160] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:29:40.274] [INFO] cheese - inserting 1000 documents. first: Category:Hedningarna compilation albums and last: File:Idle No More 2013 c.jpg -[2018-02-13T00:29:40.338] [INFO] cheese - inserting 1000 documents. first: Sunday Arts and last: The Kane Family -[2018-02-13T00:29:40.342] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:40.410] [INFO] cheese - inserting 1000 documents. first: Gelechia palpialbella and last: Carolina Hall (University of North Carolina at Chapel Hill) -[2018-02-13T00:29:40.445] [INFO] cheese - inserting 1000 documents. first: RTCW and last: Phocoena -[2018-02-13T00:29:40.460] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:29:40.480] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:29:40.500] [INFO] cheese - inserting 1000 documents. first: So Nice (album) and last: 30th British Columbia general election -[2018-02-13T00:29:40.609] [INFO] cheese - inserting 1000 documents. first: Hyperdrive (storage) and last: I Don't Want to Be Your Friend -[2018-02-13T00:29:40.617] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:29:40.621] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:29:40.697] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:29:40.779] [INFO] cheese - inserting 1000 documents. first: Remire-Montjoly and last: The Blackstone Hotel -[2018-02-13T00:29:40.859] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:29:40.869] [INFO] cheese - inserting 1000 documents. first: Category:Italian actresses and last: Saint Doulchard -[2018-02-13T00:29:40.928] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:29:40.944] [INFO] cheese - inserting 1000 documents. first: Fairfield Township, Tuscarawas County, OH and last: Union Township, Belmont County, OH -[2018-02-13T00:29:40.977] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:29:41.000] [INFO] cheese - inserting 1000 documents. first: Braemar, New South Wales and last: Celeia -[2018-02-13T00:29:41.015] [INFO] cheese - inserting 1000 documents. first: 31st British Columbia general election and last: Remscheid Dam -[2018-02-13T00:29:41.052] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:29:41.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Sustainable Development Goals and last: List of Australian Prank Patrol episodes (series 1) -[2018-02-13T00:29:41.069] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:29:41.130] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:29:41.289] [INFO] cheese - inserting 1000 documents. first: Union Township, Brown County, OH and last: Hermann Buchner (SS officer) -[2018-02-13T00:29:41.332] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:29:41.380] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1932 Summer Olympics – Men's double sculls and last: Template:Did you know nominations/William Vane, 2nd Viscount Vane -[2018-02-13T00:29:41.400] [INFO] cheese - inserting 1000 documents. first: Category:Portal-Class Maryland articles and last: Lofty Promenade -[2018-02-13T00:29:41.433] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:41.437] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:29:41.477] [INFO] cheese - inserting 1000 documents. first: List of American films of 1943 and last: Blige -[2018-02-13T00:29:41.542] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:29:41.549] [INFO] cheese - inserting 1000 documents. first: Beaufortia incana and last: 316th Composite Wing -[2018-02-13T00:29:41.626] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:29:41.644] [INFO] cheese - inserting 1000 documents. first: Julia Maesa and last: Victoria Ka'iulani -[2018-02-13T00:29:41.694] [INFO] cheese - inserting 1000 documents. first: UNOSOM and last: We are Voice and Rhythm Only -[2018-02-13T00:29:41.705] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:29:41.731] [INFO] cheese - inserting 1000 documents. first: Everhardt Franßen and last: Tanglewood (Akron, Alabama) -[2018-02-13T00:29:41.773] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:29:41.775] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:29:41.845] [INFO] cheese - inserting 1000 documents. first: Japanese government-issued rupee in Burma and last: Category:Olympic athletes of Upper Volta -[2018-02-13T00:29:41.870] [INFO] cheese - inserting 1000 documents. first: Mount Minami-heito and last: Template:1981 Toronto Blue Jays season game log -[2018-02-13T00:29:41.888] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:29:41.904] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:29:42.004] [INFO] cheese - inserting 1000 documents. first: IOCL and last: Vicesimus Blenkinsop -[2018-02-13T00:29:42.039] [INFO] cheese - inserting 1000 documents. first: Bertie's Brochures and last: William L. Storrs -[2018-02-13T00:29:42.040] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:29:42.107] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:42.206] [INFO] cheese - inserting 1000 documents. first: In the Bush and last: St. Charles High School, Minnesota -[2018-02-13T00:29:42.210] [INFO] cheese - inserting 1000 documents. first: Template:WashingtonDC-stub and last: James Allen (linebacker) -[2018-02-13T00:29:42.235] [INFO] cheese - inserting 1000 documents. first: Hugh Awdeley and last: Koma Kulshan -[2018-02-13T00:29:42.242] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:29:42.251] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Coahomasuchus and last: ICAAP -[2018-02-13T00:29:42.266] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:29:42.292] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:29:42.313] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:29:42.503] [INFO] cheese - inserting 1000 documents. first: File:Teenage Shutdown! The World Ain't Round it's Square.JPEG.jpg and last: Category:Houses in Monroe County, Mississippi -[2018-02-13T00:29:42.547] [INFO] cheese - inserting 1000 documents. first: 2000 in science and last: Walrein -[2018-02-13T00:29:42.551] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:42.557] [INFO] cheese - inserting 1000 documents. first: St. Charles West High School, Missouri and last: Neha Hinge -[2018-02-13T00:29:42.569] [INFO] cheese - inserting 1000 documents. first: Category:People from Drenthe and last: Template:Podilsko-Vyhurivska Line -[2018-02-13T00:29:42.600] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:29:42.605] [INFO] cheese - inserting 1000 documents. first: Irasaiah Ilanthirayan and last: Depron -[2018-02-13T00:29:42.621] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:42.639] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:29:42.671] [INFO] cheese - inserting 1000 documents. first: DJ CXL and last: Morton Norton Cohen -[2018-02-13T00:29:42.682] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:29:42.810] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:42.856] [INFO] cheese - inserting 1000 documents. first: God’s American Israel and last: DMCRA -[2018-02-13T00:29:42.923] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:29:42.963] [INFO] cheese - inserting 1000 documents. first: The Run to the Roses and last: Template:Did you know nominations/Beth Rivkah -[2018-02-13T00:29:42.990] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:29:43.065] [INFO] cheese - inserting 1000 documents. first: Giovanni Poggi and last: Template:Editnotices/Page/Empress Quan Huijie -[2018-02-13T00:29:43.117] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:29:43.198] [INFO] cheese - inserting 1000 documents. first: WindEurope and last: Goslings and Sharpe -[2018-02-13T00:29:43.214] [INFO] cheese - inserting 1000 documents. first: Natural anti-cancer:Pancratistatin and last: 1951 USC Trojans football team -[2018-02-13T00:29:43.227] [INFO] cheese - inserting 1000 documents. first: Category:Quad Cities Cubs players and last: Heale Peak -[2018-02-13T00:29:43.243] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:29:43.266] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:29:43.270] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:43.343] [INFO] cheese - inserting 1000 documents. first: Category:Ice hockey clubs established in 2009 and last: Khanpur Mahar -[2018-02-13T00:29:43.345] [INFO] cheese - inserting 1000 documents. first: Template:User WikiProject Russian federal subjects and last: Sarah Hogg, Viscountess Hailsham -[2018-02-13T00:29:43.389] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:29:43.410] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:29:43.471] [INFO] cheese - inserting 1000 documents. first: HD 20468 and last: Narcosis (Peruvian band) -[2018-02-13T00:29:43.552] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:29:43.667] [INFO] cheese - inserting 1000 documents. first: Kecleon and last: Moleskin -[2018-02-13T00:29:43.698] [INFO] cheese - inserting 1000 documents. first: Category:Albanian-language poets and last: Caia (plant) -[2018-02-13T00:29:43.726] [INFO] cheese - inserting 1000 documents. first: Parametric representation and last: Ar'ara al-Naqab -[2018-02-13T00:29:43.732] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:29:43.750] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:43.789] [INFO] cheese - inserting 1000 documents. first: Borderliners and last: Wikipedia:Articles for deletion/Mithunam -[2018-02-13T00:29:43.792] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:43.829] [INFO] cheese - inserting 1000 documents. first: All-Union Communist Party of Bolsheviks (1995) and last: La Misión de Corpus Christi de San Antonio de la Ysleta del Sur -[2018-02-13T00:29:43.861] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:29:43.904] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:29:43.942] [INFO] cheese - inserting 1000 documents. first: Dokudanjou Beauty and last: Emarginella -[2018-02-13T00:29:43.965] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:29:44.036] [INFO] cheese - inserting 1000 documents. first: KaitO and last: Aniakchak Crater -[2018-02-13T00:29:44.096] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:29:44.102] [INFO] cheese - inserting 1000 documents. first: Arkansas Highway 876 and last: Maxis Taxi -[2018-02-13T00:29:44.143] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:29:44.257] [INFO] cheese - inserting 1000 documents. first: Quinnipiac Bobcats basketball and last: White edged coleotechnites Moth -[2018-02-13T00:29:44.269] [INFO] cheese - inserting 1000 documents. first: Henry Hopkins and last: I Can't Hear The Music -[2018-02-13T00:29:44.292] [INFO] cheese - inserting 1000 documents. first: Timeline of U.S. attack on Afghanistan in November 2001 and last: John B. Steele -[2018-02-13T00:29:44.301] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:29:44.322] [INFO] cheese - inserting 1000 documents. first: Irving Freese and last: Faule Renne -[2018-02-13T00:29:44.320] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:29:44.358] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:44.411] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:44.576] [INFO] cheese - inserting 1000 documents. first: The Jug and last: Ritarihalli -[2018-02-13T00:29:44.596] [INFO] cheese - inserting 1000 documents. first: John Stagliano and last: Bayside -[2018-02-13T00:29:44.601] [INFO] cheese - inserting 1000 documents. first: White edged Coleotechnites moth and last: Day-Lewis (name) -[2018-02-13T00:29:44.634] [INFO] cheese - inserting 1000 documents. first: Hesse Peak and last: Kirchner Peak -[2018-02-13T00:29:44.689] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:29:44.734] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:44.752] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:29:44.756] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:29:44.823] [INFO] cheese - inserting 1000 documents. first: Titty Hill and last: The Very Best of - Rain, Rain, Beautiful Rain -[2018-02-13T00:29:44.876] [INFO] cheese - inserting 1000 documents. first: The Innocents (1987 film) and last: Category:Culture in Münster -[2018-02-13T00:29:44.894] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:29:44.946] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:29:44.955] [INFO] cheese - inserting 1000 documents. first: John B. Weber and last: Niederrieden -[2018-02-13T00:29:45.075] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:29:45.192] [INFO] cheese - inserting 1000 documents. first: 2014 Malaysia Open Superseries Premier and last: Crescent Heights, Texas -[2018-02-13T00:29:45.226] [INFO] cheese - inserting 1000 documents. first: Kirby Cone and last: 2011 2. Divisjon -[2018-02-13T00:29:45.232] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:29:45.278] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:29:45.316] [INFO] cheese - inserting 1000 documents. first: Nelson Mandella Gardens and last: Wikipedia:WikiProject Spam/LinkReports/img.webme.com -[2018-02-13T00:29:45.318] [INFO] cheese - inserting 1000 documents. first: 1980 Holiday Bowl and last: Meenkarappuzha -[2018-02-13T00:29:45.363] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/World Quest/Pokopon Pekōrya and last: Entry (film) -[2018-02-13T00:29:45.370] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:29:45.383] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:29:45.427] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:29:45.531] [INFO] cheese - inserting 1000 documents. first: Joseph Showalter Smith and last: WYFZ -[2018-02-13T00:29:45.585] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:45.634] [INFO] cheese - inserting 1000 documents. first: Category:17th century in Moldavia and last: Template:1901 NL Record vs. opponents -[2018-02-13T00:29:45.638] [INFO] cheese - inserting 1000 documents. first: Sunrise Glacier (Montana) and last: File:Lutessa Lena Luthor (Tess Mercer)-.jpg -[2018-02-13T00:29:45.670] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:29:45.686] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:29:45.781] [INFO] cheese - inserting 1000 documents. first: Thanskgiving Day and last: Thomas Nuttall -[2018-02-13T00:29:45.797] [INFO] cheese - inserting 1000 documents. first: Glossotrophia ghirshmani and last: Category:Films directed by Sudz Sutherland -[2018-02-13T00:29:45.818] [INFO] cheese - inserting 1000 documents. first: Glazoué and last: Category:Military units and formations of Czechoslovakia -[2018-02-13T00:29:45.827] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:29:45.847] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:29:45.856] [INFO] cheese - inserting 1000 documents. first: Lamin, Western Division and last: Madonna singles -[2018-02-13T00:29:45.875] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:45.921] [INFO] cheese - inserting 1000 documents. first: Joe Boley and last: Black Jack (Jericho) -[2018-02-13T00:29:45.935] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:29:45.973] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:29:46.010] [INFO] cheese - inserting 1000 documents. first: Category:Thailand Masters (badminton) and last: Kolebira block -[2018-02-13T00:29:46.045] [INFO] cheese - inserting 1000 documents. first: ATC-NS and last: Wikipedia:Requested articles/Social sciences/Geography, cities, regions and named places/Kosovo/Region 08 -[2018-02-13T00:29:46.057] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:29:46.120] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:29:46.195] [INFO] cheese - inserting 1000 documents. first: Aku Hirviniemi and last: Beazer (disambiguation) -[2018-02-13T00:29:46.291] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:46.364] [INFO] cheese - inserting 1000 documents. first: Master of Wilten and last: Jardins ethnobotaniques de la Gardie -[2018-02-13T00:29:46.426] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:29:46.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/IncidentArchive254 and last: Provadiya Hook -[2018-02-13T00:29:46.488] [INFO] cheese - inserting 1000 documents. first: Category:Devonian trilobites of Africa and last: Suresh Prasad Sarbadhikari -[2018-02-13T00:29:46.494] [INFO] cheese - inserting 1000 documents. first: Garden Key Light and last: Edge, Chester, Cheshire -[2018-02-13T00:29:46.504] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:29:46.554] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:29:46.566] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:29:46.649] [INFO] cheese - inserting 1000 documents. first: Studio crafts and last: Naruhiko -[2018-02-13T00:29:46.699] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:46.756] [INFO] cheese - inserting 1000 documents. first: Category:1560s in England and last: William Codrington -[2018-02-13T00:29:46.816] [INFO] cheese - inserting 1000 documents. first: Malcolm F. Brown and last: Wikipedia:WikiProject Dungeons & Dragons/backlog -[2018-02-13T00:29:46.816] [INFO] cheese - inserting 1000 documents. first: Arthur Helps and last: MediaWiki:Linktrail -[2018-02-13T00:29:46.816] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:29:46.857] [INFO] cheese - inserting 1000 documents. first: Category:Works by Bahram Beyzai and last: Hiding in Plain Sight -[2018-02-13T00:29:46.857] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:29:46.893] [INFO] cheese - inserting 1000 documents. first: The Search For The Next Doll and last: File:GranvilleasSD.jpg -[2018-02-13T00:29:46.899] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T00:29:46.911] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:29:46.943] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:29:47.083] [INFO] cheese - inserting 1000 documents. first: Hala Al Turk and last: Sayf ad-Dawlah -[2018-02-13T00:29:47.121] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:29:47.155] [INFO] cheese - inserting 1000 documents. first: ALCO Century 420 and last: Ignaz Boesendorfer -[2018-02-13T00:29:47.177] [INFO] cheese - inserting 1000 documents. first: Mega Mega Mega and last: Burtville -[2018-02-13T00:29:47.234] [INFO] cheese - inserting 1000 documents. first: Chen Yanxi and last: Jacob Vita Pardo -[2018-02-13T00:29:47.235] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:29:47.218] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:29:47.261] [INFO] cheese - inserting 1000 documents. first: Turnberry Associates and last: File:Prince William School map.png -[2018-02-13T00:29:47.465] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:29:47.538] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:29:47.675] [INFO] cheese - inserting 1000 documents. first: Alexander Ivanov-Kramskoi and last: Template:Infobox philosopher/doc -[2018-02-13T00:29:47.675] [INFO] cheese - inserting 1000 documents. first: Khasi Katha and last: Category:Sara Bareilles video albums -[2018-02-13T00:29:47.762] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:29:47.805] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:29:48.043] [INFO] cheese - inserting 1000 documents. first: Henry B. Lembeck and last: 1906 Uruguayan Primera Division -[2018-02-13T00:29:48.057] [INFO] cheese - inserting 1000 documents. first: Eric Wasmann and last: Category:Japanese people of Ghanaian descent -[2018-02-13T00:29:48.129] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Wikititlesuffix and last: Brittas Empire -[2018-02-13T00:29:48.133] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:29:48.142] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:29:48.174] [INFO] cheese - inserting 1000 documents. first: Siege of Itami (1574) and last: Litchfield, Northern Territory -[2018-02-13T00:29:48.215] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T00:29:48.247] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:29:48.257] [INFO] cheese - inserting 1000 documents. first: Old Bailey House and last: Life and Work of Ludwig van Beethoven -[2018-02-13T00:29:48.280] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Roel Reiné and last: Category:People from Pokrovsk Raion -[2018-02-13T00:29:48.314] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:29:48.330] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:29:48.392] [INFO] cheese - inserting 1000 documents. first: File:Pi-1.jpg and last: Wikipedia:Requests for comment/Magic Trick Instructions -[2018-02-13T00:29:48.436] [INFO] cheese - inserting 1000 documents. first: 1906–07 Nemzeti Bajnoksag I and last: 1995–96 Primera Divisio -[2018-02-13T00:29:48.458] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:29:48.461] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:29:48.564] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pcgamerweb.com and last: Gordon, Henry -[2018-02-13T00:29:48.598] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:29:48.651] [INFO] cheese - inserting 1000 documents. first: Second-order function and last: Mansfield Point -[2018-02-13T00:29:48.673] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:29:48.770] [INFO] cheese - inserting 1000 documents. first: List of municipal districts in Nova Scotia and last: Crepereia (gens) -[2018-02-13T00:29:48.780] [INFO] cheese - inserting 1000 documents. first: Mirza Muhammad Ali and last: El Hajj Aboubacar Somparé -[2018-02-13T00:29:48.844] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:48.855] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:29:48.880] [INFO] cheese - inserting 1000 documents. first: Glenn M. Anderson and last: Online training -[2018-02-13T00:29:48.905] [INFO] cheese - inserting 1000 documents. first: Lofting and last: Edmonton municipal election, 1913 -[2018-02-13T00:29:48.972] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:29:48.981] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:29:49.013] [INFO] cheese - inserting 1000 documents. first: Grady, Henry and last: K203EH -[2018-02-13T00:29:49.062] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:29:49.132] [INFO] cheese - inserting 1000 documents. first: 2010 Liege–Bastogne–Liege and last: ChEMBLdb -[2018-02-13T00:29:49.265] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:29:49.341] [INFO] cheese - inserting 1000 documents. first: Saint Vincent de Paul and last: John Agyekum Kufuor -[2018-02-13T00:29:49.492] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T00:29:49.507] [INFO] cheese - inserting 1000 documents. first: State Railway Workshops of Western Australia and last: Toxodont -[2018-02-13T00:29:49.513] [INFO] cheese - inserting 1000 documents. first: Atlamajalcingo del Monte (municipality) and last: Guangxi Institute for Nationality Studies -[2018-02-13T00:29:49.603] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:29:49.614] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:29:49.717] [INFO] cheese - inserting 1000 documents. first: Lise Deharme and last: Oleg Protsenko -[2018-02-13T00:29:49.722] [INFO] cheese - inserting 1000 documents. first: Museo Egizio, Florence and last: Yugoslavia/Zagreb -[2018-02-13T00:29:49.724] [INFO] cheese - inserting 1000 documents. first: File:Nymagpies.jpg and last: List of Tyler Perry's House of Payne episodes -[2018-02-13T00:29:49.778] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:29:49.785] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:29:49.776] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:29:49.845] [INFO] cheese - inserting 1000 documents. first: Category:1557 in Japan and last: Template:Fb team Gombe United -[2018-02-13T00:29:49.896] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:29:50.055] [INFO] cheese - inserting 1000 documents. first: Albert Edmunds Cahlan and last: Category:European American culture in Idaho -[2018-02-13T00:29:50.114] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:29:50.131] [INFO] cheese - inserting 1000 documents. first: Chicago band and last: Portal:Esperanto/Article of the month/August -[2018-02-13T00:29:50.161] [INFO] cheese - inserting 1000 documents. first: Template:Burma-archery-bio-stub and last: Category:Media of Sorsogon -[2018-02-13T00:29:50.189] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:29:50.212] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:29:50.481] [INFO] cheese - inserting 1000 documents. first: Szava and last: ELK (disambiguation) -[2018-02-13T00:29:50.538] [INFO] cheese - inserting 1000 documents. first: Draddy Gymnasium and last: Venerable Edmund Arrowsmith -[2018-02-13T00:29:50.611] [INFO] cheese - inserting 1000 documents. first: WA Conservation Council and last: File:Mayne Family Tomb.JPG -[2018-02-13T00:29:50.799] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:29:50.801] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T00:29:50.887] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:29:51.147] [INFO] cheese - inserting 1000 documents. first: The Beast (comic books) and last: James I of Cyprus -[2018-02-13T00:29:51.382] [INFO] cheese - batch complete in: 1.89 secs -[2018-02-13T00:29:51.410] [INFO] cheese - inserting 1000 documents. first: Category:Folk albums by Bangladeshi artists and last: Park Beom-ho -[2018-02-13T00:29:51.428] [INFO] cheese - inserting 1000 documents. first: Home organ and last: Boots (The Killers song) -[2018-02-13T00:29:51.461] [INFO] cheese - inserting 1000 documents. first: Malini & Co. and last: Wikipedia:Articles for deletion/Peace Lines NGO -[2018-02-13T00:29:51.496] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:29:51.504] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Did you know/17 and last: Drosera (disambiguation) -[2018-02-13T00:29:51.505] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T00:29:51.633] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T00:29:51.655] [INFO] cheese - batch complete in: 1.466 secs -[2018-02-13T00:29:51.725] [INFO] cheese - inserting 1000 documents. first: Long-horned bison and last: Portal:Western Sahara/Quotes -[2018-02-13T00:29:51.732] [INFO] cheese - inserting 1000 documents. first: 1685 in England and last: Lucile packard foundation for children's health -[2018-02-13T00:29:51.777] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:29:51.809] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:29:51.886] [INFO] cheese - inserting 1000 documents. first: E510 (disambiguation) and last: Jaungulbene -[2018-02-13T00:29:51.920] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:51.922] [INFO] cheese - inserting 1000 documents. first: Jesús Colón Berlingeri and last: John Huddart -[2018-02-13T00:29:51.973] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:52.014] [INFO] cheese - inserting 1000 documents. first: K204EX and last: Nidzica castle -[2018-02-13T00:29:52.055] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:29:52.096] [INFO] cheese - inserting 1000 documents. first: Mentschlekhkeyt and last: Vaikom Muhammed Bashir -[2018-02-13T00:29:52.259] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:29:52.324] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dr650.zenseeker.net and last: Wikipedia:WikiProject Spam/LinkReports/referer.us -[2018-02-13T00:29:52.337] [INFO] cheese - inserting 1000 documents. first: Soeharto and last: Resona -[2018-02-13T00:29:52.350] [INFO] cheese - inserting 1000 documents. first: Psikhelekedana and last: File:Openportal mascot.png -[2018-02-13T00:29:52.375] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:29:52.402] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox New Zealand land wars and last: Baldi, Bernardino -[2018-02-13T00:29:52.428] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:29:52.459] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:29:52.496] [INFO] cheese - inserting 1000 documents. first: David Pendleton and last: Szeleslevelu -[2018-02-13T00:29:52.554] [INFO] cheese - inserting 1000 documents. first: Nuestra (La Vida Bohème Album) and last: Draft:Howell Tatum -[2018-02-13T00:29:52.563] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:29:52.641] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:29:52.738] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:29:52.917] [INFO] cheese - inserting 1000 documents. first: Deb fruend and last: Lauzon (disambiguation) -[2018-02-13T00:29:52.969] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:29:53.055] [INFO] cheese - inserting 1000 documents. first: Elk Hill (Nellysford, Virginia) and last: Lee Gooch -[2018-02-13T00:29:53.156] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:29:53.158] [INFO] cheese - inserting 1000 documents. first: Final Smash and last: Laramide Orogeny -[2018-02-13T00:29:53.209] [INFO] cheese - inserting 1000 documents. first: South Australian Art Gallery and last: Reference re Provincial Court Judges -[2018-02-13T00:29:53.217] [INFO] cheese - inserting 1000 documents. first: Category:New York University School of Medicine faculty and last: Hello, Emma -[2018-02-13T00:29:53.236] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:29:53.257] [INFO] cheese - inserting 1000 documents. first: Category:Kenyan physicians and last: Prothylacinidae -[2018-02-13T00:29:53.265] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:29:53.289] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:29:53.315] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:29:53.402] [INFO] cheese - inserting 1000 documents. first: Terry McDonald (disambiguation) and last: Adolph I, Prince of Anhalt-Kothen -[2018-02-13T00:29:53.500] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:29:53.548] [INFO] cheese - inserting 1000 documents. first: Saint-Médard, Haute-Garonne and last: Officer Colicchio -[2018-02-13T00:29:53.596] [INFO] cheese - inserting 1000 documents. first: Wanna Play a Game? and last: Richter, Henry -[2018-02-13T00:29:53.602] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:29:53.642] [INFO] cheese - inserting 1000 documents. first: Resona impact and last: Allied Control Authority (ACA) -[2018-02-13T00:29:53.652] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:29:53.666] [INFO] cheese - inserting 1000 documents. first: Pep Kelly and last: The Story of Thor -[2018-02-13T00:29:53.689] [INFO] cheese - inserting 1000 documents. first: Mladý muž a bílá velryba and last: Meyrick Booth -[2018-02-13T00:29:53.712] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T00:29:53.721] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:29:53.728] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:29:53.742] [INFO] cheese - inserting 1000 documents. first: Voice Fantasia and last: Gulshan-e-Iqbal II -[2018-02-13T00:29:53.778] [INFO] cheese - inserting 1000 documents. first: Spulerina isonoma and last: Thomas and Friends – Series 1 -[2018-02-13T00:29:53.820] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:29:53.828] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:29:54.001] [INFO] cheese - inserting 1000 documents. first: Paolo Magrassi and last: Bürentogtokh, Khövsgöl -[2018-02-13T00:29:54.034] [INFO] cheese - inserting 1000 documents. first: Rowland, Henry and last: Kristina Háfoss -[2018-02-13T00:29:54.043] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:29:54.089] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:29:54.122] [INFO] cheese - inserting 1000 documents. first: Williamsburg Wizards and last: Workplaces -[2018-02-13T00:29:54.136] [INFO] cheese - inserting 1000 documents. first: Kathleen O'Connor (painter) and last: 1985–86 Clemson Tigers men's basketball team -[2018-02-13T00:29:54.150] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:29:54.174] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:54.177] [INFO] cheese - inserting 1000 documents. first: Macedonian numerals and last: Minuscule 44 -[2018-02-13T00:29:54.231] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:29:54.357] [INFO] cheese - inserting 1000 documents. first: Comalcalco and last: Moeraki -[2018-02-13T00:29:54.451] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:29:54.491] [INFO] cheese - inserting 1000 documents. first: Skata and last: Category:1994 in Namibia -[2018-02-13T00:29:54.507] [INFO] cheese - inserting 1000 documents. first: Polyarteritis nodos and last: Quercus subera -[2018-02-13T00:29:54.530] [INFO] cheese - inserting 1000 documents. first: D&E Entertainment and last: Sporting KC -[2018-02-13T00:29:54.536] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:29:54.537] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:29:54.574] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:29:54.611] [INFO] cheese - inserting 1000 documents. first: Farmington Canal State Park Trail and last: Liberal Democrat Party (Turkey) -[2018-02-13T00:29:54.666] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:29:54.692] [INFO] cheese - inserting 1000 documents. first: Akkrum and last: Wikipedia:Village pump/December 2003 archive 2 -[2018-02-13T00:29:54.755] [INFO] cheese - inserting 1000 documents. first: Template:Reference necessary/doc and last: WABG (AM) -[2018-02-13T00:29:54.789] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:29:54.817] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:29:54.897] [INFO] cheese - inserting 1000 documents. first: Category:Filipino people of Scottish descent and last: Aleksandrow, Nowy Dwor Mazowiecki County -[2018-02-13T00:29:54.910] [INFO] cheese - inserting 1000 documents. first: Template:New Zealand Squad 1988 Women's Cricket World Cup and last: K211FR -[2018-02-13T00:29:54.926] [INFO] cheese - inserting 1000 documents. first: Chotec and last: Camptonville, California -[2018-02-13T00:29:54.949] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:29:54.983] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:54.994] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:55.115] [INFO] cheese - inserting 1000 documents. first: Tiguentourine and last: File:MTV2 Guy Code.jpg -[2018-02-13T00:29:55.178] [INFO] cheese - inserting 1000 documents. first: Madame irma and last: Unwan -[2018-02-13T00:29:55.268] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:29:55.316] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:29:55.410] [INFO] cheese - inserting 1000 documents. first: Antonio Carlos Ortega and last: Galactic Orbiting Robot Force -[2018-02-13T00:29:55.468] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:29:55.524] [INFO] cheese - inserting 1000 documents. first: Aleksandrow, Opole Voivodeship and last: Karl-Heinrich Welzel -[2018-02-13T00:29:55.547] [INFO] cheese - inserting 1000 documents. first: EP1 receptor and last: Wikipedia:WikiProject Spam/Local/howtogetintograduateschool.com -[2018-02-13T00:29:55.565] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:29:55.616] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:29:55.675] [INFO] cheese - inserting 1000 documents. first: Sanfjallet and last: Wikipedia:Articles for deletion/Admiral Freebee -[2018-02-13T00:29:55.705] [INFO] cheese - inserting 1000 documents. first: Trusina case and last: 1 January 2013 -[2018-02-13T00:29:55.716] [INFO] cheese - inserting 1000 documents. first: Template:1973/74 Richmond dual premiership players and last: CAVLC -[2018-02-13T00:29:55.728] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:29:55.742] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:29:55.776] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:29:55.831] [INFO] cheese - inserting 1000 documents. first: Abolhassan Banisadr and last: Once & Again -[2018-02-13T00:29:55.833] [INFO] cheese - inserting 1000 documents. first: Time to React – Live! and last: Dave Hoskins -[2018-02-13T00:29:55.884] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:29:55.897] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T00:29:55.979] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/WikiD Writing Workshop Melbourne September 2015 and last: Quercus barbanthera -[2018-02-13T00:29:55.992] [INFO] cheese - inserting 1000 documents. first: Turbidity meter and last: Santuccione -[2018-02-13T00:29:56.028] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:29:56.033] [INFO] cheese - inserting 1000 documents. first: K22FS-D and last: VDE (disambiguation) -[2018-02-13T00:29:56.072] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:29:56.083] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:29:56.126] [INFO] cheese - inserting 1000 documents. first: Around The Way Girl and last: File:Teenage Fanclub Live 2003.JPG -[2018-02-13T00:29:56.170] [INFO] cheese - inserting 1000 documents. first: Texan flag and last: Almost Grown -[2018-02-13T00:29:56.176] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:29:56.184] [INFO] cheese - inserting 1000 documents. first: KLSR-TV and last: Andrew P. O'Rourke -[2018-02-13T00:29:56.211] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:29:56.232] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:29:56.340] [INFO] cheese - inserting 1000 documents. first: Quercus barbeyana and last: Queen Amina Statue -[2018-02-13T00:29:56.377] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:29:56.440] [INFO] cheese - inserting 1000 documents. first: Urine cytology and last: Academy of Fine Arts Karlsruhe -[2018-02-13T00:29:56.458] [INFO] cheese - inserting 1000 documents. first: Category:Disasters in New Brunswick and last: Julia kwan -[2018-02-13T00:29:56.461] [INFO] cheese - inserting 1000 documents. first: Woman of the World (disambiguation) and last: Bill Ballenger -[2018-02-13T00:29:56.535] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:29:56.558] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:29:56.623] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:29:56.739] [INFO] cheese - inserting 1000 documents. first: File:Senator Xenophon Pierce.jpg and last: File:FarelDalrymple APE04.jpg -[2018-02-13T00:29:56.780] [INFO] cheese - inserting 1000 documents. first: La Spezia-Rimini line and last: File:Mister Jones.jpg -[2018-02-13T00:29:56.790] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:29:56.868] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:29:56.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2015 September and last: Fremantle School building -[2018-02-13T00:29:56.899] [INFO] cheese - inserting 1000 documents. first: Honours of the Principality of Wales and last: Charolais cattle -[2018-02-13T00:29:56.934] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:29:56.946] [INFO] cheese - inserting 1000 documents. first: Action of 14 February 1944 and last: Wikipedia:WikiProject Spam/LinkReports/mikroe.com -[2018-02-13T00:29:56.973] [INFO] cheese - inserting 1000 documents. first: Category:Endosymbiotic events and last: Pontifical Confutation of the Augsburg Confession -[2018-02-13T00:29:56.973] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:29:56.976] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:29:57.017] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:29:57.128] [INFO] cheese - inserting 1000 documents. first: Greek Macedonian Empire and last: Red Sox Hitting Coach -[2018-02-13T00:29:57.207] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:29:57.218] [INFO] cheese - inserting 1000 documents. first: Huautla (municipality of Hidalgo) and last: Mr Justice Blackburn -[2018-02-13T00:29:57.248] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mikroe.com and last: Andras Visky -[2018-02-13T00:29:57.259] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:57.275] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:29:57.335] [INFO] cheese - inserting 1000 documents. first: Banyash Roumanians and last: Ruby (1992 film) -[2018-02-13T00:29:57.336] [INFO] cheese - inserting 1000 documents. first: Sven Olof Andersson and last: Specialised agency -[2018-02-13T00:29:57.370] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:29:57.382] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:29:57.425] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Pages needing attention/Forestry and last: Abantis amneris -[2018-02-13T00:29:57.486] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:29:57.540] [INFO] cheese - inserting 1000 documents. first: Andrasfa and last: Aninoasa River (Dambovita) -[2018-02-13T00:29:57.572] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:29:57.659] [INFO] cheese - inserting 1000 documents. first: Silvie von Ziegesar and last: Category:People from Burlington, New York -[2018-02-13T00:29:57.661] [INFO] cheese - inserting 1000 documents. first: Sci-fi (tv channel) and last: National Unity (Peru) -[2018-02-13T00:29:57.677] [INFO] cheese - inserting 1000 documents. first: Category:Diamond Rio albums and last: Hg (software) -[2018-02-13T00:29:57.695] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:29:57.727] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:29:57.730] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:29:57.785] [INFO] cheese - inserting 1000 documents. first: Aniol Dowgird and last: Saab RBS-70 -[2018-02-13T00:29:57.815] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:29:57.833] [INFO] cheese - inserting 1000 documents. first: Category:Taiwanese beauty pageant winners and last: 2011 Marbella Cup -[2018-02-13T00:29:57.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/T. K. Abdullah and last: File:SpongeBob SquarePants characters cast.png -[2018-02-13T00:29:57.895] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:29:57.977] [INFO] cheese - inserting 1000 documents. first: Suimenkul Chokmorov and last: Ballycogley -[2018-02-13T00:29:57.979] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:29:58.077] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:29:58.289] [INFO] cheese - inserting 1000 documents. first: Die schonsten Melodien aus Derrick & der Alte and last: Amicable Contributionship for the Insurance of Houses against Fire -[2018-02-13T00:29:58.325] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Youtubek and last: D524 (Croatia) -[2018-02-13T00:29:58.337] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:29:58.357] [INFO] cheese - inserting 1000 documents. first: Spotted bowerbird and last: Category:Uchibō Line -[2018-02-13T00:29:58.369] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Zhang Lu (Han dynasty) and last: Mangubat -[2018-02-13T00:29:58.371] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:29:58.434] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:29:58.438] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:29:58.508] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/PennyMarketing/Archive and last: Vincent Moore -[2018-02-13T00:29:58.561] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:29:58.666] [INFO] cheese - inserting 1000 documents. first: D525 (Croatia) and last: Template:Two digit year except 00 -[2018-02-13T00:29:58.745] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians by alma mater: University of Leeds and last: File:JetpackEditor.gif -[2018-02-13T00:29:58.762] [INFO] cheese - inserting 1000 documents. first: Unidad Nacional and last: Cherokee Indian Normal School of Robeson County -[2018-02-13T00:29:58.764] [INFO] cheese - inserting 1000 documents. first: Daniel Meyer and last: Peter Nery -[2018-02-13T00:29:58.774] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:29:58.824] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:29:58.838] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:29:58.882] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T00:29:58.950] [INFO] cheese - inserting 1000 documents. first: Antipapacy and last: Gaetano Cardinal Cicognani -[2018-02-13T00:29:59.004] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:29:59.009] [INFO] cheese - inserting 1000 documents. first: Qushijeh and last: Kim Hyun-Soo (disambiguation) -[2018-02-13T00:29:59.026] [INFO] cheese - inserting 1000 documents. first: Kot Addu Tehsil and last: Avrille, Maine-et-Loire -[2018-02-13T00:29:59.051] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:29:59.082] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:29:59.143] [INFO] cheese - inserting 1000 documents. first: Synthetic viability and last: Category:Prehistory of Europe -[2018-02-13T00:29:59.217] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:29:59.370] [INFO] cheese - inserting 1000 documents. first: Olympia CFR Satu Mare and last: Bare (Gorazde) -[2018-02-13T00:29:59.413] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:29:59.457] [INFO] cheese - inserting 1000 documents. first: United States Ambassador to Hungary and last: Street railways in Poznań -[2018-02-13T00:29:59.466] [INFO] cheese - inserting 1000 documents. first: Bi-blue and last: First Baptist Church of Eufaula -[2018-02-13T00:29:59.509] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:29:59.511] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:29:59.548] [INFO] cheese - inserting 1000 documents. first: Benderson and last: List of Vice Presidents of Botswana -[2018-02-13T00:29:59.589] [INFO] cheese - inserting 1000 documents. first: Raddock and last: Category:Populated places in Hamadan County -[2018-02-13T00:29:59.597] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:29:59.615] [INFO] cheese - inserting 1000 documents. first: Arthur Albohn and last: Mui Airport -[2018-02-13T00:29:59.631] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:29:59.663] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:29:59.696] [INFO] cheese - inserting 1000 documents. first: Jonathan Lewis Seward and last: Belk, Silesian Voivodeship -[2018-02-13T00:29:59.737] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:29:59.907] [INFO] cheese - inserting 1000 documents. first: Jaan Viik and last: Health care in Europe -[2018-02-13T00:29:59.958] [INFO] cheese - inserting 1000 documents. first: ISN 151 and last: Template:Archive bar -[2018-02-13T00:29:59.976] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:00.045] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:30:00.058] [INFO] cheese - inserting 1000 documents. first: Category:Asian Games cricketers and last: Bialopole, Lublin Voivodeship -[2018-02-13T00:30:00.089] [INFO] cheese - inserting 1000 documents. first: Pembroke State College for Indians and last: Cambyses I -[2018-02-13T00:30:00.109] [INFO] cheese - inserting 1000 documents. first: Solomon Richards and last: Pavel Chihuán -[2018-02-13T00:30:00.130] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:30:00.155] [INFO] cheese - inserting 1000 documents. first: Vice President of Botswana and last: Velocisaurus -[2018-02-13T00:30:00.157] [INFO] cheese - inserting 1000 documents. first: Template:HamadanCounty-geo-stub and last: New Zealand Army Long Service and Good Conduct Medal -[2018-02-13T00:30:00.159] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:30:00.165] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T00:30:00.222] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:30:00.229] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:30:00.414] [INFO] cheese - inserting 1000 documents. first: SmithKline and French and last: Ottone Enrico del Caretto, Marquis of Savona -[2018-02-13T00:30:00.478] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:00.546] [INFO] cheese - inserting 1000 documents. first: Bialoskory, Lublin Voivodeship and last: Mount Tempyo -[2018-02-13T00:30:00.573] [INFO] cheese - inserting 1000 documents. first: ISN 094 and last: Majorca rail network -[2018-02-13T00:30:00.599] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:30:00.630] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mailzzang+aus and last: Category:African people of Berber descent -[2018-02-13T00:30:00.688] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:30:00.727] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:30:00.744] [INFO] cheese - inserting 1000 documents. first: Category:American emigrants to the Turks and Caicos Islands and last: Chilla-Kimsa Chata mountain range -[2018-02-13T00:30:00.772] [INFO] cheese - inserting 1000 documents. first: Otakar Vavra and last: The Fairmont Burrard Landing -[2018-02-13T00:30:00.794] [INFO] cheese - inserting 1000 documents. first: Category:Israeli weightlifters and last: Carole Weatherford -[2018-02-13T00:30:00.802] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:30:00.829] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:30:00.839] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:30:01.040] [INFO] cheese - inserting 1000 documents. first: Bayly, Susan and last: Death of Darren Goforth -[2018-02-13T00:30:01.095] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:30:01.271] [INFO] cheese - inserting 1000 documents. first: African red snappers and last: Lachine, Québec -[2018-02-13T00:30:01.294] [INFO] cheese - inserting 1000 documents. first: Ersilia mediterranea and last: Sterling Hill, CT -[2018-02-13T00:30:01.358] [INFO] cheese - inserting 1000 documents. first: Ira William "Bill" McCollum, Jr. and last: Phoma trifolii -[2018-02-13T00:30:01.379] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:30:01.399] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:30:01.475] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:30:01.499] [INFO] cheese - inserting 1000 documents. first: Réunion ibis and last: Worker-communist Party of Iraq -[2018-02-13T00:30:01.518] [INFO] cheese - inserting 1000 documents. first: Tenpyo Zan and last: Soho, Birmingham -[2018-02-13T00:30:01.632] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T00:30:01.636] [INFO] cheese - inserting 1000 documents. first: Mark Denny and last: Percy Westerman -[2018-02-13T00:30:01.721] [INFO] cheese - inserting 1000 documents. first: List of graduate student associations and last: Wikipedia:WikiProject Spam/LinkReports/tankmemorial.vpweb.co.uk -[2018-02-13T00:30:01.726] [INFO] cheese - batch complete in: 1.561 secs -[2018-02-13T00:30:01.792] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T00:30:01.841] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:30:01.956] [INFO] cheese - inserting 1000 documents. first: 3 Dots and last: Category:Jamaican actresses -[2018-02-13T00:30:02.011] [INFO] cheese - inserting 1000 documents. first: Turner Sports and last: David Austin Starkweather -[2018-02-13T00:30:02.022] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:30:02.060] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:30:02.240] [INFO] cheese - inserting 1000 documents. first: Jean E. Riachi and last: Category:LGBT culture in New Zealand -[2018-02-13T00:30:02.305] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:30:02.341] [INFO] cheese - inserting 1000 documents. first: Kerenhappuch and last: Tavola -[2018-02-13T00:30:02.389] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/tankmemorial.vpweb.co.uk and last: Montana Stockgrowers Association -[2018-02-13T00:30:02.437] [INFO] cheese - inserting 1000 documents. first: Missouri gubernatorial special election, 1825 and last: Anri (given name) -[2018-02-13T00:30:02.438] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:30:02.450] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:30:02.772] [INFO] cheese - inserting 1000 documents. first: Bill Lienhard and last: File:WorkBuggy.jpg -[2018-02-13T00:30:03.112] [INFO] cheese - inserting 1000 documents. first: Long's Regiment and last: M. Cantor -[2018-02-13T00:30:03.129] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T00:30:03.180] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:30:03.400] [INFO] cheese - batch complete in: 1.607 secs -[2018-02-13T00:30:03.512] [INFO] cheese - inserting 1000 documents. first: File:1astivers.PNG and last: Vasyl Mykhaylovych Ivanchuk -[2018-02-13T00:30:03.596] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T00:30:03.752] [INFO] cheese - inserting 1000 documents. first: Penny Greely and last: Template:2016 AL West standings/doc -[2018-02-13T00:30:03.784] [INFO] cheese - inserting 1000 documents. first: Backworth Hoard and last: Times Like These (Kid Rock song) -[2018-02-13T00:30:03.787] [INFO] cheese - batch complete in: 1.349 secs -[2018-02-13T00:30:03.840] [INFO] cheese - inserting 1000 documents. first: Brady Seals the Truth and last: Henry D. Bonilla -[2018-02-13T00:30:03.866] [INFO] cheese - batch complete in: 1.416 secs -[2018-02-13T00:30:03.869] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:30:03.896] [INFO] cheese - inserting 1000 documents. first: Candida dubliniensis and last: Michelle Thomas -[2018-02-13T00:30:03.929] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in the Falkland Islands by decade and last: Khislavichsky -[2018-02-13T00:30:03.969] [INFO] cheese - batch complete in: 2.242 secs -[2018-02-13T00:30:03.975] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:30:04.105] [INFO] cheese - inserting 1000 documents. first: Trichia sericea and last: Mumbai Rajdhani Express -[2018-02-13T00:30:04.130] [INFO] cheese - inserting 1000 documents. first: Category:Spandau Ballet albums and last: Behind the sofa -[2018-02-13T00:30:04.148] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:30:04.186] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:30:04.194] [INFO] cheese - inserting 1000 documents. first: Ivan Tkachenko (disambiguation) and last: Category:Conservative Party Prime Ministers of the United Kingdom -[2018-02-13T00:30:04.199] [INFO] cheese - inserting 1000 documents. first: Henry Cassel and last: Staining wood -[2018-02-13T00:30:04.201] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Travis Jeppesen and last: Daniel Lyon (disambiguation) -[2018-02-13T00:30:04.234] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:30:04.252] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:30:04.250] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:30:04.355] [INFO] cheese - inserting 1000 documents. first: Khislavichskiy and last: Multiple Rounds Simultaneous Impact -[2018-02-13T00:30:04.403] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:04.464] [INFO] cheese - inserting 1000 documents. first: CFU-GM and last: Münchenstein castle (Schloss) -[2018-02-13T00:30:04.485] [INFO] cheese - inserting 1000 documents. first: Hananiah ben Teradyon and last: Jethro Hatch -[2018-02-13T00:30:04.519] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:30:04.552] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:30:04.592] [INFO] cheese - inserting 1000 documents. first: File:Thungapuram Ayyannar Temple Infant view -1.JPG and last: Wikipedia:0.8/Index/D3 -[2018-02-13T00:30:04.621] [INFO] cheese - inserting 1000 documents. first: Kim Namjoon and last: Agra Rural Vidhan Sabha constituency -[2018-02-13T00:30:04.626] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:30:04.681] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:30:04.775] [INFO] cheese - inserting 1000 documents. first: Stress concentration factor and last: Colorado state route 391 -[2018-02-13T00:30:04.790] [INFO] cheese - inserting 1000 documents. first: Byron Dobell and last: MasterCuts -[2018-02-13T00:30:04.815] [INFO] cheese - inserting 1000 documents. first: KVLO and last: Joseph Hutcheson -[2018-02-13T00:30:04.826] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:30:04.827] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:04.841] [INFO] cheese - inserting 1000 documents. first: Janata Dal (United) and last: Islamic Republic of Iran Air Force -[2018-02-13T00:30:04.856] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:30:04.925] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:30:05.022] [INFO] cheese - inserting 1000 documents. first: Vernon Haynes and last: Long-capsule suncup -[2018-02-13T00:30:05.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/COSMOLOGY. DIFFERENCES AND HYERARCHY OF INFINITE SETS BY THE EXAMPLE OF MULTIDIMENSIONAL SPACES AND SOME RELATIONS OF THESE SPACES, AND A BIT ABOUT THE UNIVERSE and last: Mann, Michael -[2018-02-13T00:30:05.080] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:05.104] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:05.116] [INFO] cheese - inserting 1000 documents. first: Bjorøyl and last: Muriel H. Brown -[2018-02-13T00:30:05.139] [INFO] cheese - inserting 1000 documents. first: Wikipedia:0.8/Index/D4 and last: Borne, Mysliborz County -[2018-02-13T00:30:05.180] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:30:05.197] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:30:05.212] [INFO] cheese - inserting 1000 documents. first: EC 1.11.1.20 and last: Catechol 2,3-oxygenase -[2018-02-13T00:30:05.304] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Randal McCloy and last: File:Wikitaconiccarnival.jpg -[2018-02-13T00:30:05.321] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:05.351] [INFO] cheese - inserting 1000 documents. first: Manning, Michael and last: Category:1725 in the Holy Roman Empire -[2018-02-13T00:30:05.357] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:30:05.391] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:30:05.451] [INFO] cheese - inserting 1000 documents. first: Heartleaf suncup and last: Mayor of danbury CT U.S.A -[2018-02-13T00:30:05.463] [INFO] cheese - inserting 1000 documents. first: Borojevici and last: Brezje pri Dovskem -[2018-02-13T00:30:05.487] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:30:05.509] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:30:05.609] [INFO] cheese - inserting 1000 documents. first: Circle Link and last: Robert Enoch Withers -[2018-02-13T00:30:05.644] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:05.715] [INFO] cheese - inserting 1000 documents. first: Brezje pri Poljcanah and last: Bukowina, Jaroslaw County -[2018-02-13T00:30:05.740] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:30:05.744] [INFO] cheese - inserting 1000 documents. first: The Sarong Girl and last: MV Kwuna -[2018-02-13T00:30:05.747] [INFO] cheese - inserting 1000 documents. first: Category:1732 in the Holy Roman Empire and last: Emeroleter levis -[2018-02-13T00:30:05.773] [INFO] cheese - inserting 1000 documents. first: John H. Mickey and last: Empress/McNeill Spectra Energy Aerodrome -[2018-02-13T00:30:05.785] [INFO] cheese - inserting 1000 documents. first: Air Forces and last: Autonomous prefecture -[2018-02-13T00:30:05.799] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:05.795] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:05.867] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:05.906] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:30:06.013] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2009 January 1 and last: Robert Müller (Ice Hockey Player) -[2018-02-13T00:30:06.016] [INFO] cheese - inserting 1000 documents. first: Davis family card game and last: Thomas A. D. Fessenden -[2018-02-13T00:30:06.054] [INFO] cheese - inserting 1000 documents. first: Bukowina, Piotrkow County and last: Nikolaisen -[2018-02-13T00:30:06.068] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:06.068] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:30:06.082] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:06.147] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Emeroleter and last: James Riddell (disambiguation) -[2018-02-13T00:30:06.176] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:30:06.260] [INFO] cheese - inserting 1000 documents. first: Campo Largo do Piaui and last: CS Flacara Moreni -[2018-02-13T00:30:06.276] [INFO] cheese - inserting 1000 documents. first: Category:Wrestling at the 2006 Asian Games and last: Neustrashimy class destroyer -[2018-02-13T00:30:06.283] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:30:06.295] [INFO] cheese - inserting 1000 documents. first: Per-Gunnar Andersson (rally driver) and last: Platanovrissi -[2018-02-13T00:30:06.322] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:30:06.368] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:06.418] [INFO] cheese - inserting 1000 documents. first: 7th Marines and last: Wikipedia:Articles for deletion/Philosophical Institute -[2018-02-13T00:30:06.479] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:30:06.486] [INFO] cheese - inserting 1000 documents. first: Charlie Ernst and last: Films about mohammed -[2018-02-13T00:30:06.490] [INFO] cheese - inserting 1000 documents. first: Amy Whelan and last: Gymnastics at the 2015 African Games -[2018-02-13T00:30:06.538] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:06.551] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:06.569] [INFO] cheese - inserting 1000 documents. first: 50th Nova Scotia general election and last: Template:Historical parties in Turkey -[2018-02-13T00:30:06.616] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:30:06.618] [INFO] cheese - inserting 1000 documents. first: Platanovrisi and last: Molly Ockett -[2018-02-13T00:30:06.663] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:30:06.702] [INFO] cheese - inserting 1000 documents. first: Bagram Airbase and last: Cynog Dafis -[2018-02-13T00:30:06.762] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:30:06.793] [INFO] cheese - inserting 1000 documents. first: Quail class destroyer and last: Thresher/Permit class submarine -[2018-02-13T00:30:06.829] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:06.853] [INFO] cheese - inserting 1000 documents. first: Ebiquity and last: Calybites securinella -[2018-02-13T00:30:06.856] [INFO] cheese - inserting 1000 documents. first: Tooth bleaching and last: VoteSpotter -[2018-02-13T00:30:06.891] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:30:06.899] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:30:06.946] [INFO] cheese - inserting 1000 documents. first: Jeremiah Masoli and last: Woolly fern -[2018-02-13T00:30:06.975] [INFO] cheese - inserting 1000 documents. first: File:GMMB title.jpg and last: Category:Cambridge City F.C. players -[2018-02-13T00:30:06.976] [INFO] cheese - inserting 1000 documents. first: San Pietro in Casale and last: Hemorrhagic stroke -[2018-02-13T00:30:06.990] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:30:07.013] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:30:07.154] [INFO] cheese - inserting 1000 documents. first: Caloptilia securinella and last: Category:Project-Class Fencing articles -[2018-02-13T00:30:07.167] [INFO] cheese - inserting 1000 documents. first: Draft:The Sky Has Fallen and last: Roscoe Seely Conkling -[2018-02-13T00:30:07.183] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:30:07.216] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:30:07.225] [INFO] cheese - inserting 1000 documents. first: Tench class submarine and last: Nippon (aircraft) -[2018-02-13T00:30:07.241] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:30:07.281] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:07.481] [INFO] cheese - inserting 1000 documents. first: Mount Robertson (Antarctica) and last: Cehovice -[2018-02-13T00:30:07.501] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Paul Theroux and last: Dan Marriott -[2018-02-13T00:30:07.505] [INFO] cheese - inserting 1000 documents. first: Ländches Railway and last: Squatter (pastoral) -[2018-02-13T00:30:07.504] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:30:07.539] [INFO] cheese - inserting 1000 documents. first: K221DQ and last: Wikipedia:Articles for deletion/Rafiq Subaie -[2018-02-13T00:30:07.550] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:30:07.561] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 142 BC and last: HIF hydroxylase -[2018-02-13T00:30:07.581] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:30:07.605] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:07.639] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:30:07.691] [INFO] cheese - inserting 1000 documents. first: Whirlwind USA and last: Eston Airport -[2018-02-13T00:30:07.742] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:30:07.760] [INFO] cheese - inserting 1000 documents. first: Cehovini and last: Saint Monance -[2018-02-13T00:30:07.792] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:30:07.867] [INFO] cheese - inserting 1000 documents. first: Blackburnian warbler and last: ZFV -[2018-02-13T00:30:07.904] [INFO] cheese - inserting 1000 documents. first: Lander, Venezuela and last: Dilbert's Desktop Toys -[2018-02-13T00:30:07.924] [INFO] cheese - inserting 1000 documents. first: Eulima crossei and last: Template:Attached KML/Maryland Route 364 -[2018-02-13T00:30:07.935] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T00:30:07.941] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:30:07.962] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:30:08.035] [INFO] cheese - inserting 1000 documents. first: Zheng Xunyu and last: Osage Village State Historic Site -[2018-02-13T00:30:08.083] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:08.118] [INFO] cheese - inserting 1000 documents. first: Windmill (Transformers) and last: Category:Government ministers of the Federated States of Micronesia -[2018-02-13T00:30:08.136] [INFO] cheese - inserting 1000 documents. first: Category:1434 establishments in the Holy Roman Empire and last: File:St. Petersburg Pier September 2015.jpg -[2018-02-13T00:30:08.151] [INFO] cheese - inserting 1000 documents. first: CJR4 and last: Chagrin Falls (song) -[2018-02-13T00:30:08.155] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:08.192] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:30:08.194] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:08.243] [INFO] cheese - inserting 1000 documents. first: Template:Rus CUT Stadium and last: Category:United States House of Representatives elections, 1855 -[2018-02-13T00:30:08.271] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:30:08.290] [INFO] cheese - inserting 1000 documents. first: Category:Lebanese painters and last: La Tombe -[2018-02-13T00:30:08.345] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:30:08.373] [INFO] cheese - inserting 1000 documents. first: Chateau de Kolbsheim and last: Chotow, Swietokrzyskie Voivodeship -[2018-02-13T00:30:08.415] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:30:08.578] [INFO] cheese - inserting 1000 documents. first: Chotycany and last: Ciro Diaz -[2018-02-13T00:30:08.596] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:30:08.625] [INFO] cheese - inserting 1000 documents. first: ZDJ and last: Preston Bissett -[2018-02-13T00:30:08.627] [INFO] cheese - inserting 1000 documents. first: Maxime Lacroix and last: Yeshu ben Pandera -[2018-02-13T00:30:08.630] [INFO] cheese - inserting 1000 documents. first: Category:2015 in sailing and last: Category:People extradited from Australia -[2018-02-13T00:30:08.634] [INFO] cheese - inserting 1000 documents. first: Patricia Haruna and last: Wikipedia:Arbitration Committee Elections January 2006/Vote/Everyking -[2018-02-13T00:30:08.665] [INFO] cheese - inserting 1000 documents. first: Stand by Me What you See Is What you Get and last: Attila Simon (footballer born in 1979) -[2018-02-13T00:30:08.669] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:30:08.672] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:30:08.677] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:08.684] [INFO] cheese - inserting 1000 documents. first: Juan Francisco Lombardo and last: Template:TV Newscaf Aus -[2018-02-13T00:30:08.689] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:30:08.712] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:30:08.762] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:30:08.809] [INFO] cheese - inserting 1000 documents. first: Ciro Truhelka and last: Template:Gulf and Ohio Railways -[2018-02-13T00:30:08.835] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:30:09.006] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Consortium of Liberal Arts Colleges and last: De Stem des Bloed -[2018-02-13T00:30:09.020] [INFO] cheese - inserting 1000 documents. first: Auburn Community Mausoleum and last: Wikipedia:Administrators' noticeboard/IncidentArchive898 -[2018-02-13T00:30:09.022] [INFO] cheese - inserting 1000 documents. first: Moxon and last: Specularite -[2018-02-13T00:30:09.044] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:30:09.075] [INFO] cheese - inserting 1000 documents. first: Kumari kandam and last: Legislation on hunting with dogs -[2018-02-13T00:30:09.098] [INFO] cheese - inserting 1000 documents. first: Category:Rider University and last: Category:Eastern Lombard language -[2018-02-13T00:30:09.102] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:30:09.104] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:30:09.103] [INFO] cheese - inserting 1000 documents. first: Commercial space station and last: Rave Mobile Safety -[2018-02-13T00:30:09.119] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:09.174] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:30:09.179] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:30:09.320] [INFO] cheese - inserting 1000 documents. first: Njai Siti and last: Hoseynabad-e Shamlu -[2018-02-13T00:30:09.362] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:30:09.463] [INFO] cheese - inserting 1000 documents. first: M.S. Babu Raj and last: Melanie Figueroa -[2018-02-13T00:30:09.553] [INFO] cheese - inserting 1000 documents. first: Theatre of War and last: Chester Straub -[2018-02-13T00:30:09.565] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:09.577] [INFO] cheese - inserting 1000 documents. first: Inquisitor (search software) and last: Division Bath, Chicago -[2018-02-13T00:30:09.578] [INFO] cheese - inserting 1000 documents. first: Category:573 by continent and last: File:Aalstlogo.jpg -[2018-02-13T00:30:09.631] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:09.636] [INFO] cheese - inserting 1000 documents. first: Coracao de Jesus Basilica and last: Mount Hay -[2018-02-13T00:30:09.657] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:30:09.663] [INFO] cheese - inserting 1000 documents. first: Screen magnifier and last: Odalist -[2018-02-13T00:30:09.668] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:09.692] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:09.723] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T00:30:09.816] [INFO] cheese - inserting 1000 documents. first: File:The Nutt House.jpg and last: File:Peter Henry Emerson (British, born Cuba - Pictures of East Anglian Life. Illustrated with Thirty-Two Photogravures and Fifteen Small Illustrat... - Google Art Project.jpg -[2018-02-13T00:30:09.849] [INFO] cheese - inserting 1000 documents. first: Farm Road 1960 and last: Jack R. Williams -[2018-02-13T00:30:09.870] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:30:09.898] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:30:09.995] [INFO] cheese - inserting 1000 documents. first: Template:Fb team WRB M'Sila and last: File:Solomons Club - Tecmo - Game Boy box art.jpg -[2018-02-13T00:30:10.043] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:30:10.070] [INFO] cheese - inserting 1000 documents. first: File:Greinacher circuit.svg and last: Kenji Takahashi (footballer, born 1985) -[2018-02-13T00:30:10.094] [INFO] cheese - inserting 1000 documents. first: St Mary’s Church, Wreay and last: The Pinnacle (Cleveland) -[2018-02-13T00:30:10.105] [INFO] cheese - inserting 1000 documents. first: Jacob Schowalter and last: Napoleon Brown -[2018-02-13T00:30:10.117] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:30:10.124] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:30:10.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Aecis and last: Cléo from 5 to 7 -[2018-02-13T00:30:10.139] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:30:10.170] [INFO] cheese - inserting 1000 documents. first: Category:Google Art Project works by Rafael Martínez Padilla and last: Category:Agriculture in Northern Africa -[2018-02-13T00:30:10.178] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:30:10.203] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:30:10.241] [INFO] cheese - inserting 1000 documents. first: Jarolim and last: Dabrowki, Podlaskie Voivodeship -[2018-02-13T00:30:10.272] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:30:10.371] [INFO] cheese - inserting 1000 documents. first: Nathan Matthews and last: Lay of Thrym -[2018-02-13T00:30:10.406] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:30:10.426] [INFO] cheese - inserting 1000 documents. first: Viceroyalties of New Spain and last: Sacred fire of Vesta -[2018-02-13T00:30:10.460] [INFO] cheese - inserting 1000 documents. first: Imperial anthem and last: Jarvis Christian -[2018-02-13T00:30:10.479] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:30:10.484] [INFO] cheese - inserting 1000 documents. first: Crnkamenska Kula and last: Walking Bout Company -[2018-02-13T00:30:10.503] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:10.519] [INFO] cheese - inserting 1000 documents. first: Antonio Mucci and last: 39th Army (People's Republic of China) -[2018-02-13T00:30:10.527] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:30:10.550] [INFO] cheese - inserting 1000 documents. first: Sir Charles Cameron Lees and last: Marika hase -[2018-02-13T00:30:10.573] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:30:10.631] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:10.633] [INFO] cheese - inserting 1000 documents. first: Johannes Pullois and last: Barton-le-clay -[2018-02-13T00:30:10.718] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:30:10.780] [INFO] cheese - inserting 1000 documents. first: Fomes geotropus and last: CLi2O3 -[2018-02-13T00:30:10.821] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:30:10.862] [INFO] cheese - inserting 1000 documents. first: X-ray telescopes and last: Mingus Mountain Academy -[2018-02-13T00:30:10.896] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:10.898] [INFO] cheese - inserting 1000 documents. first: Hockey at the 2002 Commonwealth Games – Men's tournament and last: Category:Translated pages -[2018-02-13T00:30:10.942] [INFO] cheese - inserting 1000 documents. first: Panthera onca centralis and last: Parisoma (genus) -[2018-02-13T00:30:10.948] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:10.957] [INFO] cheese - inserting 1000 documents. first: Ernie Rea and last: This Is Me (Camp Rock song) -[2018-02-13T00:30:10.991] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:11.000] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:11.062] [INFO] cheese - inserting 1000 documents. first: CMgO3 and last: Royal Malaysia Police -[2018-02-13T00:30:11.089] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:30:11.107] [INFO] cheese - inserting 1000 documents. first: William Vander Zalm and last: Interval class -[2018-02-13T00:30:11.191] [INFO] cheese - inserting 1000 documents. first: Canadian Prairie Provinces and last: Just a Game Stakes -[2018-02-13T00:30:11.207] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:30:11.226] [INFO] cheese - inserting 1000 documents. first: Double Clutch and last: Steve White-Cooper -[2018-02-13T00:30:11.259] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:30:11.283] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:30:11.351] [INFO] cheese - inserting 1000 documents. first: Template:WP Television and last: 1998 Kentucky Wildcats football team -[2018-02-13T00:30:11.401] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:30:11.405] [INFO] cheese - inserting 1000 documents. first: File:Dragonconlogo.png and last: Chester Culver -[2018-02-13T00:30:11.425] [INFO] cheese - inserting 1000 documents. first: Buffet Group and last: The Mad Empress -[2018-02-13T00:30:11.462] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:30:11.503] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:30:11.507] [INFO] cheese - inserting 1000 documents. first: Garett Jones and last: Phallus cinnabarinus -[2018-02-13T00:30:11.564] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:30:11.624] [INFO] cheese - inserting 1000 documents. first: Phyllonorycter aurifascia and last: 2B11 -[2018-02-13T00:30:11.672] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:11.712] [INFO] cheese - inserting 1000 documents. first: Shipwrecked: Battle of the Islands 2008 and last: Chiltern Edge School -[2018-02-13T00:30:11.737] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:30:11.851] [INFO] cheese - inserting 1000 documents. first: Template:Seoul National University and last: Wikipedia:Templates for deletion/Log/2009 January 4 -[2018-02-13T00:30:11.888] [INFO] cheese - inserting 1000 documents. first: "Saucy Jacky" postcard and last: Category:1988 in female bodybuilding -[2018-02-13T00:30:11.916] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:30:11.950] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:30:12.027] [INFO] cheese - inserting 1000 documents. first: M151 A2 and last: Mare Vitalis -[2018-02-13T00:30:12.037] [INFO] cheese - inserting 1000 documents. first: Harry Lee Carrico and last: Elnur Mammadli -[2018-02-13T00:30:12.061] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:30:12.070] [INFO] cheese - inserting 1000 documents. first: List of cities in Orissa by population and last: African immigrants to Lithuania -[2018-02-13T00:30:12.093] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:30:12.109] [INFO] cheese - inserting 1000 documents. first: Hikitsuke-kata and last: Awa province (Tokushima) -[2018-02-13T00:30:12.115] [INFO] cheese - inserting 1000 documents. first: Margherita Gonzaga d'Este and last: Major airline -[2018-02-13T00:30:12.127] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:30:12.160] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:30:12.181] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:30:12.241] [INFO] cheese - inserting 1000 documents. first: Larry J. Pogemiller and last: Robert Casey, Sr. -[2018-02-13T00:30:12.251] [INFO] cheese - inserting 1000 documents. first: Category:Moist (Canadian band) songs and last: Mt. Hamwŏl -[2018-02-13T00:30:12.261] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:30:12.297] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:12.313] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2009 January 4 and last: Greenpeace china -[2018-02-13T00:30:12.354] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:30:12.486] [INFO] cheese - inserting 1000 documents. first: Black people in Lithuania and last: Masalhan -[2018-02-13T00:30:12.503] [INFO] cheese - inserting 1000 documents. first: Robert P. Casey, Sr. and last: Thomas W. Wilson -[2018-02-13T00:30:12.524] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:30:12.525] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:30:12.530] [INFO] cheese - inserting 1000 documents. first: Aryeh and last: File:Solenta Aviation logo.gif -[2018-02-13T00:30:12.574] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:30:12.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Cape May Gazette and last: Kenny vadas -[2018-02-13T00:30:12.662] [INFO] cheese - inserting 1000 documents. first: Mount Hamwŏl and last: Live at the Checkerboard Lounge: Chicago 1981 -[2018-02-13T00:30:12.678] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:12.701] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:30:12.729] [INFO] cheese - inserting 1000 documents. first: File:Which1.JPG and last: Inverarity (surname) -[2018-02-13T00:30:12.776] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:30:12.797] [INFO] cheese - inserting 1000 documents. first: Template:Libya-mosque-stub and last: Wikipedia:Miscellany for deletion/User:Tomzatarkay -[2018-02-13T00:30:12.830] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/EH74DK and last: Ardanion -[2018-02-13T00:30:12.833] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:30:12.867] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:30:12.888] [INFO] cheese - inserting 1000 documents. first: Lord James Townshend and last: Dasny -[2018-02-13T00:30:12.923] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:30:13.096] [INFO] cheese - inserting 1000 documents. first: Sanuki province and last: Gardiner -[2018-02-13T00:30:13.123] [INFO] cheese - inserting 1000 documents. first: Ocampo, Tamaulipas and last: Horizontal elevator -[2018-02-13T00:30:13.172] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:30:13.174] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:30:13.209] [INFO] cheese - inserting 1000 documents. first: Live at the Checkerboard Lounge Chicago 1981 and last: 2001 Food City 500 -[2018-02-13T00:30:13.215] [INFO] cheese - inserting 1000 documents. first: HMS Archer (1885) and last: File:TheMirror.jpg -[2018-02-13T00:30:13.219] [INFO] cheese - inserting 1000 documents. first: Dasoguz Airport and last: Deux enfoires a Saint-Tropez -[2018-02-13T00:30:13.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Motorcycling/Motorcycle Sport and last: Nitzarim -[2018-02-13T00:30:13.242] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:30:13.246] [INFO] cheese - inserting 1000 documents. first: Ardáni and last: Hello! Project shuffle unit -[2018-02-13T00:30:13.259] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:30:13.303] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:30:13.309] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:13.310] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:30:13.461] [INFO] cheese - inserting 1000 documents. first: Category:1949 in Portugal and last: My So-Called Life (album) -[2018-02-13T00:30:13.490] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:30:13.637] [INFO] cheese - inserting 1000 documents. first: List of cathedrals in Luxembourg and last: Kisa dialect -[2018-02-13T00:30:13.675] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Legislature Historic and last: Two world wars and one world cup -[2018-02-13T00:30:13.676] [INFO] cheese - inserting 1000 documents. first: Sandleford and last: International Association of Hebrew Free Loans -[2018-02-13T00:30:13.680] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:30:13.697] [INFO] cheese - inserting 1000 documents. first: Teeratep Winothai and last: Wikipedia:RFC/KM -[2018-02-13T00:30:13.698] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Not A Facehugger and last: Monsieur Albert -[2018-02-13T00:30:13.704] [INFO] cheese - inserting 1000 documents. first: Dobsice (Nymburk District) and last: Beatrice Lascaris di Tenda -[2018-02-13T00:30:13.724] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:30:13.728] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:13.731] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:30:13.749] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:30:13.747] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:30:13.941] [INFO] cheese - inserting 1000 documents. first: Leslie and last: 53rd Division (British) -[2018-02-13T00:30:13.959] [INFO] cheese - inserting 1000 documents. first: Krista Lahteenmäki and last: Eberhard Louis, Duke of Wurttemberg -[2018-02-13T00:30:13.992] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:30:14.003] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:30:14.017] [INFO] cheese - inserting 1000 documents. first: Kabarasi dialect and last: File:C.L.G. Na Cealla Beaga logo.jpg -[2018-02-13T00:30:14.067] [INFO] cheese - inserting 1000 documents. first: Sinn Féin Bank and last: Wu Jiaxin -[2018-02-13T00:30:14.066] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:14.084] [INFO] cheese - inserting 1000 documents. first: Le Gouffre and last: India mobile numbers -[2018-02-13T00:30:14.139] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:30:14.172] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:30:14.192] [INFO] cheese - inserting 1000 documents. first: East Karelian Uprising and last: Category:Works by Arthur Koestler -[2018-02-13T00:30:14.285] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mikk Haavistu and last: Strâmba River (Geamărtălui) -[2018-02-13T00:30:14.326] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:30:14.360] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:30:14.414] [INFO] cheese - inserting 1000 documents. first: Incorporated businesses and last: Le roi malgré lui -[2018-02-13T00:30:14.461] [INFO] cheese - inserting 1000 documents. first: Category:230s conflicts and last: Conny Andersson -[2018-02-13T00:30:14.466] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:30:14.491] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:30:14.509] [INFO] cheese - inserting 1000 documents. first: Category:1965 establishments in Cape Verde and last: Encolpotis scioplasta -[2018-02-13T00:30:14.559] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:30:14.622] [INFO] cheese - inserting 1000 documents. first: B.Kanabur and last: Dodge Brisa -[2018-02-13T00:30:14.647] [INFO] cheese - inserting 1000 documents. first: Football at the 2011 Pan American Games – Men's tournament and last: Category:Churches in Queen Anne's County, Maryland -[2018-02-13T00:30:14.652] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:30:14.692] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:30:14.752] [INFO] cheese - inserting 1000 documents. first: Category:Irish water skiers and last: MicroRNA mir-395 -[2018-02-13T00:30:14.766] [INFO] cheese - inserting 1000 documents. first: Terra-Filmverleih and last: Baruch Ben Haim -[2018-02-13T00:30:14.793] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:14.802] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:30:14.863] [INFO] cheese - inserting 1000 documents. first: Encolpotis xanthoria and last: 1551 in France -[2018-02-13T00:30:14.895] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:30:14.978] [INFO] cheese - inserting 1000 documents. first: Lars Schmidt and last: Wikipedia:WikiProject Spam/LinkReports/hello-yorick.com -[2018-02-13T00:30:14.990] [INFO] cheese - inserting 1000 documents. first: Lugaid Réoderg and last: Hubbard's Cave -[2018-02-13T00:30:15.017] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:30:15.042] [INFO] cheese - inserting 1000 documents. first: Operation Headstrong and last: Herzog & de Meuron -[2018-02-13T00:30:15.050] [INFO] cheese - inserting 1000 documents. first: File:Tina Manning John Trudell family.jpg and last: Nakane -[2018-02-13T00:30:15.051] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:30:15.078] [INFO] cheese - inserting 1000 documents. first: Eulima mioacutissima and last: Template:2008 Summer Olympics men's handball game C2 -[2018-02-13T00:30:15.097] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:30:15.110] [INFO] cheese - inserting 1000 documents. first: Bob Freeman Smith and last: Krasnogorsk Archive -[2018-02-13T00:30:15.116] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T00:30:15.125] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:30:15.144] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:30:15.274] [INFO] cheese - inserting 1000 documents. first: Ohio State Highway 527 and last: Anthony Smith -[2018-02-13T00:30:15.317] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:30:15.388] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/classicsofgolf.com and last: En concert a l'Olympia -[2018-02-13T00:30:15.426] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:30:15.439] [INFO] cheese - inserting 1000 documents. first: John Abel McPherson and last: Category:Wikipedia sockpuppets of Richard Thoma -[2018-02-13T00:30:15.491] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:15.527] [INFO] cheese - inserting 1000 documents. first: World Festival of Youth and last: Narain (Madhya Pradesh cricketer) -[2018-02-13T00:30:15.589] [INFO] cheese - inserting 1000 documents. first: Celeste Lake and last: Category:2008 Big East Conference baseball season -[2018-02-13T00:30:15.591] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:15.613] [INFO] cheese - inserting 1000 documents. first: Category:1872 establishments and last: File:Frieth overview.JPG -[2018-02-13T00:30:15.634] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:30:15.670] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:30:15.685] [INFO] cheese - inserting 1000 documents. first: En concert au Zenith de Paris and last: Jim Donahue (baseball) -[2018-02-13T00:30:15.720] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:30:15.793] [INFO] cheese - inserting 1000 documents. first: Anthony Smith (singer) and last: Purchase prize -[2018-02-13T00:30:15.840] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:15.883] [INFO] cheese - inserting 1000 documents. first: Ashbya gossypii and last: Robert S. Smith (priest) -[2018-02-13T00:30:15.909] [INFO] cheese - inserting 1000 documents. first: Arne Naess and last: Vernix -[2018-02-13T00:30:15.964] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:30:16.022] [INFO] cheese - inserting 1000 documents. first: Category:Tracked infantry fighting vehicles and last: Yehude Simon Munaro -[2018-02-13T00:30:16.031] [INFO] cheese - inserting 1000 documents. first: Dinesh Mirkar and last: River Cam (disambiguation) -[2018-02-13T00:30:16.037] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:30:16.065] [INFO] cheese - inserting 1000 documents. first: 𐊤 and last: Category:French autobiographies -[2018-02-13T00:30:16.066] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:16.116] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:30:16.133] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:30:16.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/EIN News and last: Arent Crowninshield -[2018-02-13T00:30:16.324] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:30:16.354] [INFO] cheese - inserting 1000 documents. first: Krohn's disease and last: Police corruption in Greece -[2018-02-13T00:30:16.380] [INFO] cheese - inserting 1000 documents. first: Category:John Wiley & Sons and last: Polythrincium trifolii -[2018-02-13T00:30:16.390] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:30:16.431] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:30:16.436] [INFO] cheese - inserting 1000 documents. first: Feenmarchen waltz and last: File:A Date with Jimmy Smith Volume Two.jpg -[2018-02-13T00:30:16.466] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:30:16.540] [INFO] cheese - inserting 1000 documents. first: Amioides grossidens and last: Monroe Doctrine (Japan) -[2018-02-13T00:30:16.579] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:16.678] [INFO] cheese - inserting 1000 documents. first: ISN 139 and last: Higinio Ortuzar -[2018-02-13T00:30:16.722] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:30:16.831] [INFO] cheese - inserting 1000 documents. first: Independent-comics and last: Wireless Internet hotspot -[2018-02-13T00:30:16.835] [INFO] cheese - inserting 1000 documents. first: Reubien and last: STS 59 -[2018-02-13T00:30:16.838] [INFO] cheese - inserting 1000 documents. first: North Elmham railway station and last: Hawthorne (Metro-North station) -[2018-02-13T00:30:16.857] [INFO] cheese - inserting 1000 documents. first: Hector Silva Airstrip and last: Tube Fender -[2018-02-13T00:30:16.869] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:30:16.890] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:30:16.896] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:30:16.927] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:30:16.981] [INFO] cheese - inserting 1000 documents. first: Monroe Doctrine (United States) and last: Tert-Amylol -[2018-02-13T00:30:17.003] [INFO] cheese - inserting 1000 documents. first: Ictineo and last: Wallon -[2018-02-13T00:30:17.024] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:17.073] [INFO] cheese - batch complete in: 1.036 secs -[2018-02-13T00:30:17.116] [INFO] cheese - inserting 1000 documents. first: Godurowo and last: Henri Francois Brosselard-Faidherbe -[2018-02-13T00:30:17.163] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:17.271] [INFO] cheese - inserting 1000 documents. first: 2015 Malaysia Cup group stage and last: Conus donnae -[2018-02-13T00:30:17.279] [INFO] cheese - inserting 1000 documents. first: JSQ-33 and last: Athletics at the 1964 Summer Olympics – Men's pole vault -[2018-02-13T00:30:17.302] [INFO] cheese - inserting 1000 documents. first: STS 62 and last: Portal:Zimbabwe/Selected article -[2018-02-13T00:30:17.303] [INFO] cheese - inserting 1000 documents. first: File:Northsoundseawolves.jpg and last: Fontaine-l'Eveque Castle -[2018-02-13T00:30:17.324] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:17.332] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:17.339] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:30:17.339] [INFO] cheese - inserting 1000 documents. first: 2004–06 European Nations Cup Second Division and last: United States House of Representatives elections in Kansas, 1992 -[2018-02-13T00:30:17.379] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:17.398] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:30:17.514] [INFO] cheese - inserting 1000 documents. first: Fontaine-les-Dijon and last: Frederic Bolley -[2018-02-13T00:30:17.535] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:30:17.564] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Faxcon9xS and last: List of number-one albums of 2009 (New Zealand) -[2018-02-13T00:30:17.618] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:30:17.728] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Vahram Papazyan (athlete) and last: Servo motor -[2018-02-13T00:30:17.754] [INFO] cheese - inserting 1000 documents. first: Bayer HealthCare, India and last: Margaret Ellen Wright -[2018-02-13T00:30:17.780] [INFO] cheese - inserting 1000 documents. first: Frederic Bong and last: Galvao -[2018-02-13T00:30:17.782] [INFO] cheese - inserting 1000 documents. first: File:Buoyancy.jpg and last: Brent Ward Jett, Jr. -[2018-02-13T00:30:17.786] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:30:17.819] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:30:17.829] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:30:17.862] [INFO] cheese - inserting 1000 documents. first: The Great Plan, Volume 2 and last: Wallachs -[2018-02-13T00:30:17.881] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:17.940] [INFO] cheese - inserting 1000 documents. first: House wren and last: Pinus taeda -[2018-02-13T00:30:17.922] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:30:18.023] [INFO] cheese - inserting 1000 documents. first: Galvez (Vino de la Tierra) and last: Geza Teleki (politician) -[2018-02-13T00:30:18.021] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T00:30:18.080] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:30:18.103] [INFO] cheese - inserting 1000 documents. first: Brentwood Tolan and last: Isaac Tatem Hopper -[2018-02-13T00:30:18.117] [INFO] cheese - inserting 1000 documents. first: New Tottenham Hotspur stadium and last: Category:Macal River -[2018-02-13T00:30:18.173] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:30:18.183] [INFO] cheese - inserting 1000 documents. first: Anguilla mossambica and last: 1/2 + 1/4 + 1/8 + 1/16 + ... -[2018-02-13T00:30:18.217] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:30:18.234] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:30:18.326] [INFO] cheese - inserting 1000 documents. first: Alan Coe Bunce and last: Shoestring acacia -[2018-02-13T00:30:18.400] [INFO] cheese - inserting 1000 documents. first: File:Unit Statistics.png and last: Goodbye (Alma Cardzic song) -[2018-02-13T00:30:18.425] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:30:18.447] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:30:18.455] [INFO] cheese - inserting 1000 documents. first: Fuma Conspiracy and last: Robert Allan Ridley Parker -[2018-02-13T00:30:18.530] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:30:18.655] [INFO] cheese - inserting 1000 documents. first: Dong-Hyek Lim and last: Joni pitkanen -[2018-02-13T00:30:18.741] [INFO] cheese - inserting 1000 documents. first: Michal Hrazdira and last: Category:Engineering universities and colleges in Finland -[2018-02-13T00:30:18.803] [INFO] cheese - inserting 1000 documents. first: Goods of the House of Orleans and last: Gradski stadion (Zepce) -[2018-02-13T00:30:18.806] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:30:18.801] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:30:18.824] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:18.839] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Japanese films by year and last: Richard Moore (journalist) -[2018-02-13T00:30:18.891] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:30:18.936] [INFO] cheese - inserting 1000 documents. first: Holcocera baccharisella and last: Duchy of Kopanica -[2018-02-13T00:30:18.974] [INFO] cheese - inserting 1000 documents. first: Robert Rescorla and last: Warner Bros. Feature Animation -[2018-02-13T00:30:18.976] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:30:19.005] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:30:19.016] [INFO] cheese - inserting 1000 documents. first: Punjab Prisons Staff Training Institute and last: Gugnecourt -[2018-02-13T00:30:19.039] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:30:19.104] [INFO] cheese - inserting 1000 documents. first: Sefid Khani, Hamadan and last: Wikipedia:Articles for deletion/Cloud marketing (2nd nomination) -[2018-02-13T00:30:19.120] [INFO] cheese - inserting 1000 documents. first: David Hookes and last: Hate group -[2018-02-13T00:30:19.130] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:30:19.179] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T00:30:19.204] [INFO] cheese - inserting 1000 documents. first: Category:Oulu and last: Saptha Kannimar Padal -[2018-02-13T00:30:19.213] [INFO] cheese - inserting 1000 documents. first: Gugu River (Raul Ses) and last: Hanne Romer -[2018-02-13T00:30:19.216] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Salisbury and last: File:D40 Locomotive.jpg -[2018-02-13T00:30:19.239] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:30:19.267] [INFO] cheese - inserting 1000 documents. first: Oei Invasion and last: Wikipedia:Articles for deletion/Lindsay Lohan's third album -[2018-02-13T00:30:19.280] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:19.280] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:19.326] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:30:19.408] [INFO] cheese - inserting 1000 documents. first: Template:Montreal municipal election, 1998/Position/Councillor, Fleury and last: Gaika (disambiguation) -[2018-02-13T00:30:19.412] [INFO] cheese - inserting 1000 documents. first: Minister for National Education and Religious Affairs and last: Garage Beat '66 Volume 2: Chicks are for Kids! -[2018-02-13T00:30:19.417] [INFO] cheese - inserting 1000 documents. first: Hanne Tomta and last: Henrik Rydstrom -[2018-02-13T00:30:19.440] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:30:19.441] [INFO] cheese - batch complete in: 0.202 secs -[2018-02-13T00:30:19.464] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:30:19.578] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Teen Titans episodes/archive1 and last: Ibenik -[2018-02-13T00:30:19.594] [INFO] cheese - inserting 1000 documents. first: Goździków, Greater Poland Voivodeship and last: Frank Heller -[2018-02-13T00:30:19.614] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:30:19.648] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:30:19.711] [INFO] cheese - inserting 1000 documents. first: Halah and last: Gangrenous stomatitis -[2018-02-13T00:30:19.751] [INFO] cheese - inserting 1000 documents. first: Template:Infobox User-2/doc and last: Le insaziabili -[2018-02-13T00:30:19.757] [INFO] cheese - inserting 1000 documents. first: Chester Heights (PRR station) and last: Wikipedia:WikiProject Spam/LinkReports/tursiops.br.googlepages.com -[2018-02-13T00:30:19.759] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:30:19.775] [INFO] cheese - inserting 1000 documents. first: Gatra (disambiguation) and last: Laurentian View -[2018-02-13T00:30:19.797] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:30:19.801] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:30:19.835] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:30:19.843] [INFO] cheese - inserting 1000 documents. first: Nuristanis and last: Shmoo Group -[2018-02-13T00:30:19.906] [INFO] cheese - inserting 1000 documents. first: Meinborn and last: File:RolandoTinioNatlArtistNCCAgov.jpg -[2018-02-13T00:30:19.912] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:30:19.948] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:30:20.078] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas established in 1995 and last: The adventures of darwin the game -[2018-02-13T00:30:20.140] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:30:20.232] [INFO] cheese - inserting 1000 documents. first: Danse des Ouléd-Naïd and last: The Elbert P. Tuttle U.S. Court of Appeals Building -[2018-02-13T00:30:20.260] [INFO] cheese - inserting 1000 documents. first: Grace Under Pressure (1984 album) and last: Edmund Boyd Osler -[2018-02-13T00:30:20.273] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:30:20.289] [INFO] cheese - inserting 1000 documents. first: John Woodruff (representative) and last: Posterior ligament of incus -[2018-02-13T00:30:20.290] [INFO] cheese - inserting 1000 documents. first: Toto cerca casa and last: Category:Wikipedia articles in need of updating from December 2010 -[2018-02-13T00:30:20.320] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:30:20.343] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:20.347] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:30:20.351] [INFO] cheese - inserting 1000 documents. first: United States presidential election in New York, 1984 and last: Wikipedia:Today's article for improvement/Archives/Unsuccessful Nominations/November 2012 -[2018-02-13T00:30:20.412] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:30:20.520] [INFO] cheese - inserting 1000 documents. first: Dark Avenger (computer virus) and last: Wikipedia:Articles for creation/Redirects/2009-01 -[2018-02-13T00:30:20.565] [INFO] cheese - inserting 1000 documents. first: George W Forbes and last: Template:2004 Summer Olympics France men's handball team roster -[2018-02-13T00:30:20.573] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:30:20.606] [INFO] cheese - inserting 1000 documents. first: Valea Leurdei River and last: Hollental (disambiguation) -[2018-02-13T00:30:20.617] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:30:20.660] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:30:20.696] [INFO] cheese - inserting 1000 documents. first: UK General Election, 1997 and last: Montserrat Carulla -[2018-02-13T00:30:20.730] [INFO] cheese - inserting 1000 documents. first: Stunt Track Racer and last: Template:Deprod/doc -[2018-02-13T00:30:20.739] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:30:20.783] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:30:20.839] [INFO] cheese - inserting 1000 documents. first: Hollental (Franconian Forest) and last: Hyvinkaan Palloseura -[2018-02-13T00:30:20.857] [INFO] cheese - inserting 1000 documents. first: Marquess of Ailesbury and last: Youth sexuality -[2018-02-13T00:30:20.863] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:30:20.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's article for improvement/Archives/Unsuccessful Nominations/October 2012 and last: High Navarrese -[2018-02-13T00:30:20.986] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T00:30:21.004] [INFO] cheese - inserting 1000 documents. first: Facial disc and last: Śródka, Międzychód County -[2018-02-13T00:30:21.012] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:30:21.074] [INFO] cheese - inserting 1000 documents. first: Super Mario World 2: Yoshi's Island and last: Leatherwood Plantation -[2018-02-13T00:30:21.093] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:30:21.148] [INFO] cheese - inserting 1000 documents. first: Way-point and last: INS Mahe -[2018-02-13T00:30:21.159] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:30:21.188] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:30:21.203] [INFO] cheese - inserting 1000 documents. first: Municipal Elections in Santa Perpetua de Mogoda and last: Category:Archbishops of Athens and All Greece -[2018-02-13T00:30:21.242] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:30:21.332] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/Pages needing translation into English and last: Category:Pyramids and bipyramids -[2018-02-13T00:30:21.346] [INFO] cheese - inserting 1000 documents. first: Insekten-Borse and last: Izabelow, Swietokrzyskie Voivodeship -[2018-02-13T00:30:21.360] [INFO] cheese - inserting 1000 documents. first: Erdoğan Yeşilyurt and last: Krafs -[2018-02-13T00:30:21.363] [INFO] cheese - batch complete in: 0.174 secs -[2018-02-13T00:30:21.389] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:30:21.412] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:30:21.445] [INFO] cheese - inserting 1000 documents. first: Strzyżmin and last: Kamal "Chance" Givens -[2018-02-13T00:30:21.464] [INFO] cheese - inserting 1000 documents. first: Antonello Gangini and last: Julia Dorr -[2018-02-13T00:30:21.465] [INFO] cheese - inserting 1000 documents. first: Caterina Irene Elena Maria Imperiali di Francavilla and last: File:Progeny (film).jpg -[2018-02-13T00:30:21.486] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:30:21.502] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:30:21.506] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:30:21.636] [INFO] cheese - inserting 1000 documents. first: Izacic and last: Interstate 25 Business (Douglas, Wyoming) -[2018-02-13T00:30:21.672] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:30:21.698] [INFO] cheese - inserting 1000 documents. first: Scout Craft and last: GroundWorks Theatre -[2018-02-13T00:30:21.732] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/World s Most Hated and last: Tom Korologos -[2018-02-13T00:30:21.754] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:21.759] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:30:21.807] [INFO] cheese - inserting 1000 documents. first: Middle-earth peoples and last: Nizar Sassi -[2018-02-13T00:30:21.864] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:21.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/J. A. D. A Perera and last: Cator’s fantasy -[2018-02-13T00:30:21.906] [INFO] cheese - inserting 1000 documents. first: Rimington's Tigers and last: New Synagogue, Przemyśl -[2018-02-13T00:30:21.911] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:30:21.928] [INFO] cheese - inserting 1000 documents. first: Janos Gyongyosi and last: Wikipedia:Sockpuppet investigations/Strawberrywalruslane/Archive -[2018-02-13T00:30:21.950] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:21.953] [INFO] cheese - inserting 1000 documents. first: Muhammad Ayub Khan and last: Mario Party -[2018-02-13T00:30:21.955] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:30:22.036] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T00:30:22.103] [INFO] cheese - inserting 1000 documents. first: Category:County roads in Okaloosa County, Florida and last: Template:Salvatore -[2018-02-13T00:30:22.132] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic Armenian inventors and last: Ktla.com -[2018-02-13T00:30:22.138] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:30:22.163] [INFO] cheese - inserting 1000 documents. first: Jean-Marc Levy-Leblond and last: Joao Afonso da Costa de Sousa de Macedo, 1st Duke of Albuquerque -[2018-02-13T00:30:22.185] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:30:22.276] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:30:22.306] [INFO] cheese - inserting 1000 documents. first: Loco Locass and last: File:MartinBarre StageLeft.jpg -[2018-02-13T00:30:22.387] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:22.424] [INFO] cheese - inserting 1000 documents. first: Luxborough Street and last: Beverly Deepe Keever -[2018-02-13T00:30:22.476] [INFO] cheese - inserting 1000 documents. first: Stronnictwo Pracy and last: A. W. Gridley House -[2018-02-13T00:30:22.501] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:30:22.560] [INFO] cheese - inserting 1000 documents. first: Courtney Smith Pope and last: Jose Acosta (priest) -[2018-02-13T00:30:22.565] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:30:22.607] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:30:22.717] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/AuggiePaoli and last: Kamishlovskiy District -[2018-02-13T00:30:22.722] [INFO] cheese - inserting 1000 documents. first: Jenny Wilson (politician) and last: Paul Donal Harkins -[2018-02-13T00:30:22.783] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:22.791] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:30:22.878] [INFO] cheese - inserting 1000 documents. first: Jose Adolfo Alvarado Lara and last: Josef Sturmann -[2018-02-13T00:30:22.907] [INFO] cheese - inserting 1000 documents. first: Series connection and last: Oshkosh Air Show -[2018-02-13T00:30:22.915] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:30:22.985] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:23.028] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pacenation.us and last: Yagan's lookout -[2018-02-13T00:30:23.074] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:23.078] [INFO] cheese - inserting 1000 documents. first: HMS Serapis (1779) and last: The Dears -[2018-02-13T00:30:23.116] [INFO] cheese - inserting 1000 documents. first: Josef Sural and last: Category:Unionist Party (Canada) MPs -[2018-02-13T00:30:23.124] [INFO] cheese - inserting 1000 documents. first: Creekside Middle School (Woodstock, Illinois) and last: Gutów, Greater Poland Voivodeship -[2018-02-13T00:30:23.129] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:30:23.140] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:30:23.176] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:30:23.196] [INFO] cheese - inserting 1000 documents. first: Best Nine Award and last: George O'Keefe -[2018-02-13T00:30:23.222] [INFO] cheese - inserting 1000 documents. first: Sanga-Sanga, Kalimantan and last: Cabinet of Kosovo -[2018-02-13T00:30:23.254] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:30:23.273] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:30:23.346] [INFO] cheese - inserting 1000 documents. first: Julian Montellano and last: Sunni fatwas on Shi'as -[2018-02-13T00:30:23.363] [INFO] cheese - inserting 1000 documents. first: Royal Mottos and last: File:AForest single.jpg -[2018-02-13T00:30:23.364] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:30:23.382] [INFO] cheese - inserting 1000 documents. first: John Kasic and last: Quest for a Throne -[2018-02-13T00:30:23.412] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:30:23.422] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:30:23.505] [INFO] cheese - inserting 1000 documents. first: Kantkula, Laane-Viru County and last: Khatoco Khánh Hòa F.C. -[2018-02-13T00:30:23.521] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:30:23.550] [INFO] cheese - inserting 1000 documents. first: Kąkolewo, Ostrów Wielkopolski County and last: Kuh-e Kaf -[2018-02-13T00:30:23.570] [INFO] cheese - inserting 1000 documents. first: Yayasan Senyum and last: Category:WikiProject Terrorism members -[2018-02-13T00:30:23.584] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:23.615] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:30:23.732] [INFO] cheese - inserting 1000 documents. first: Kheir Eddine District and last: Category:Lobanov-Rostovsky family -[2018-02-13T00:30:23.753] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:30:23.757] [INFO] cheese - inserting 1000 documents. first: Le Macchie and last: Category:Library buildings completed in 1893 -[2018-02-13T00:30:23.815] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:30:23.841] [INFO] cheese - inserting 1000 documents. first: Adrian Wilson (actor) and last: Tuberous sclerosis complex tumor suppressors -[2018-02-13T00:30:23.849] [INFO] cheese - inserting 1000 documents. first: Steilhang and last: Wikipedia:WikiProject Spam/LinkReports/easymistry.com -[2018-02-13T00:30:23.885] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:30:23.893] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:30:23.940] [INFO] cheese - inserting 1000 documents. first: Koln-Steinstrasse station and last: Kozia Gora, Pomeranian Voivodeship -[2018-02-13T00:30:23.955] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nafizaydin@hotmail.com and last: Anbu Sagodharargal -[2018-02-13T00:30:23.964] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:30:23.969] [INFO] cheese - inserting 1000 documents. first: Music of Extremadura and last: Richard Burdon Haldane -[2018-02-13T00:30:24.001] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Terrorism articles and last: PSD (Photoshop Document) -[2018-02-13T00:30:24.011] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:30:24.072] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:30:24.149] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:30:24.266] [INFO] cheese - inserting 1000 documents. first: Kozia Gora, Warmian-Masurian Voivodeship and last: Krzyzanowice, Masovian Voivodeship -[2018-02-13T00:30:24.286] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:30:24.287] [INFO] cheese - inserting 1000 documents. first: Hourglass (Squeeze song) and last: Baal Zephon -[2018-02-13T00:30:24.306] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Thema International Fund and last: U.S. Route 29 Business (Danville, Virginia) -[2018-02-13T00:30:24.334] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:24.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/easymistry.com and last: File:1989 5 bolívares Obverse.jpg -[2018-02-13T00:30:24.349] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:30:24.395] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:24.439] [INFO] cheese - inserting 1000 documents. first: Andrei Chukhley and last: Newington College Show -[2018-02-13T00:30:24.480] [INFO] cheese - inserting 1000 documents. first: A&R Cambridge Ltd. and last: La Compania del Tango Nomada -[2018-02-13T00:30:24.485] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:24.507] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:30:24.530] [INFO] cheese - inserting 1000 documents. first: Portal:Maryland/On this day/May 7 and last: Pegky Zina -[2018-02-13T00:30:24.590] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:30:24.670] [INFO] cheese - inserting 1000 documents. first: Leadtime and last: Wikipedia:CHECKWIKI/034 dump -[2018-02-13T00:30:24.697] [INFO] cheese - inserting 1000 documents. first: La Compote and last: Category:Transport in Vietnam by city -[2018-02-13T00:30:24.704] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:30:24.716] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:30:24.759] [INFO] cheese - inserting 1000 documents. first: Brazilian Development Bank and last: Diocese of Qu'Appelle -[2018-02-13T00:30:24.770] [INFO] cheese - inserting 1000 documents. first: Butterfly attractor and last: Baići -[2018-02-13T00:30:24.822] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:30:24.816] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:30:24.904] [INFO] cheese - inserting 1000 documents. first: Lake Tohmajarvi and last: Lazy, Piaseczno County -[2018-02-13T00:30:24.904] [INFO] cheese - inserting 1000 documents. first: Treaty of Ruby Valley 1863 and last: K262AQ -[2018-02-13T00:30:24.919] [INFO] cheese - inserting 1000 documents. first: Watford Gap and last: Closed list -[2018-02-13T00:30:24.924] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:30:24.968] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:24.998] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:30:25.193] [INFO] cheese - inserting 1000 documents. first: AC-130H Hercules and last: Li Qiang (born 1959) -[2018-02-13T00:30:25.246] [INFO] cheese - inserting 1000 documents. first: 1923 in jazz and last: Stephen Don Black -[2018-02-13T00:30:25.299] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:30:25.321] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:30:25.351] [INFO] cheese - inserting 1000 documents. first: Liu Kai and last: The Belle of New York (theatre) -[2018-02-13T00:30:25.589] [INFO] cheese - inserting 1000 documents. first: Template:D.C. Statehood Party/meta/color and last: Un air si pur -[2018-02-13T00:30:25.708] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T00:30:25.839] [INFO] cheese - inserting 1000 documents. first: K262AR and last: Wikipedia:Featured picture candidates/Sarcophaga bercaea -[2018-02-13T00:30:26.110] [INFO] cheese - inserting 1000 documents. first: Les Betises and last: Lineas Aereas Nacionales -[2018-02-13T00:30:26.161] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T00:30:26.138] [INFO] cheese - inserting 1000 documents. first: Paysandisia archon and last: Xavier High School -[2018-02-13T00:30:26.233] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T00:30:26.243] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:30:26.437] [INFO] cheese - batch complete in: 1.62 secs -[2018-02-13T00:30:26.525] [INFO] cheese - inserting 1000 documents. first: D&D 4th edition and last: K. Rajah Iyer -[2018-02-13T00:30:26.592] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T00:30:26.665] [INFO] cheese - inserting 1000 documents. first: Lineas Aereas Nacionales S. A. (Peru) and last: Llevame Donde Naci -[2018-02-13T00:30:26.703] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:30:26.815] [INFO] cheese - inserting 1000 documents. first: File:You Are Everything Ross and Gaye.jpg and last: HD 201567 -[2018-02-13T00:30:26.853] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:30:26.903] [INFO] cheese - inserting 1000 documents. first: Krześlice and last: Cynthia Cruz -[2018-02-13T00:30:26.955] [INFO] cheese - inserting 1000 documents. first: File:Pinellas Special.JPG and last: Template:SGP Results4/reserveB -[2018-02-13T00:30:26.958] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:30:26.997] [INFO] cheese - inserting 1000 documents. first: Yanomama and last: Wolf Hirth -[2018-02-13T00:30:27.005] [INFO] cheese - inserting 1000 documents. first: Llica d'Amunt and last: Luda Zurka – uzivo -[2018-02-13T00:30:27.036] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T00:30:27.045] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:27.052] [INFO] cheese - inserting 1000 documents. first: Uniformity norm and last: Akademie der bildenden Künste Wien -[2018-02-13T00:30:27.109] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:30:27.115] [INFO] cheese - batch complete in: 2.117 secs -[2018-02-13T00:30:27.139] [INFO] cheese - inserting 1000 documents. first: Captain Gantu and last: The Mekons Rock'n'Roll -[2018-02-13T00:30:27.208] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:30:27.385] [INFO] cheese - inserting 1000 documents. first: Category:17th-century disestablishments in Oceania and last: Category:1992–93 Football League Third Division by team -[2018-02-13T00:30:27.415] [INFO] cheese - inserting 1000 documents. first: Ludek (name) and last: Climate Vulnerability Monitor -[2018-02-13T00:30:27.432] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:30:27.459] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:30:27.505] [INFO] cheese - inserting 1000 documents. first: 16S rRNA (guanine1207-N2)-methyltransferase and last: Papilio aeneides -[2018-02-13T00:30:27.515] [INFO] cheese - inserting 1000 documents. first: William T. Cannady and last: File:George Washington Farewell Address by Edward Percy Moran.jpg -[2018-02-13T00:30:27.554] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:27.577] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:30:27.583] [INFO] cheese - inserting 1000 documents. first: Template:R to Swiss municipality (canton) and last: Abbey of St-Germain-des-Prés -[2018-02-13T00:30:27.618] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:30:27.684] [INFO] cheese - inserting 1000 documents. first: Tigre Club and last: Run, Ronnie, Run -[2018-02-13T00:30:27.727] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:30:27.770] [INFO] cheese - inserting 1000 documents. first: Palpal organ and last: Compsolechia succincta -[2018-02-13T00:30:27.821] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:30:27.848] [INFO] cheese - inserting 1000 documents. first: Eva (2009 film) and last: Lukowiec, Lublin Voivodeship -[2018-02-13T00:30:27.958] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:30:28.014] [INFO] cheese - inserting 1000 documents. first: Parides gargasus and last: Wikipedia:Peer review/Giffnock/archive1 -[2018-02-13T00:30:28.152] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:28.197] [INFO] cheese - inserting 1000 documents. first: Bang The Drum Slowly Dumbass (Beavis and Butt-head Episode) and last: Bahá'í Faith in Sweden -[2018-02-13T00:30:28.273] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:30:28.422] [INFO] cheese - inserting 1000 documents. first: Charles Luckman and last: Nei Lak Shan -[2018-02-13T00:30:28.430] [INFO] cheese - inserting 1000 documents. first: Lukowiec, Masovian Voivodeship and last: पारेवङा -[2018-02-13T00:30:28.484] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:30:28.491] [INFO] cheese - inserting 1000 documents. first: Template:Sampson County, North Carolina and last: I've Got a Crush on Obama -[2018-02-13T00:30:28.523] [INFO] cheese - inserting 1000 documents. first: Teresa Teng and last: Ifrit -[2018-02-13T00:30:28.554] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:30:28.552] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:30:28.565] [INFO] cheese - inserting 1000 documents. first: Compsolechia titanota and last: File:Pavarotti and Friends - Liberia.jpg -[2018-02-13T00:30:28.660] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T00:30:28.689] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:30:28.826] [INFO] cheese - inserting 1000 documents. first: Maieco Domingos Henrique Antonio and last: Marataizes, Espirito Santo -[2018-02-13T00:30:28.902] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:28.905] [INFO] cheese - inserting 1000 documents. first: United States Post Office–Quincy Main and last: Compote (disambiguation) -[2018-02-13T00:30:28.939] [INFO] cheese - inserting 1000 documents. first: Paula Morris and last: File:Gazeta Kombetare February 12, 2013.jpg -[2018-02-13T00:30:28.955] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:30:29.033] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:30:29.235] [INFO] cheese - inserting 1000 documents. first: Shelley Bennett and last: Made in Jamaica -[2018-02-13T00:30:29.238] [INFO] cheese - inserting 1000 documents. first: USS Talbot County (LST-1153) and last: Hugo Laviada Molina -[2018-02-13T00:30:29.310] [INFO] cheese - inserting 1000 documents. first: Chaim Barlev and last: Template:DogImages -[2018-02-13T00:30:29.314] [INFO] cheese - inserting 1000 documents. first: Category:Publications established in 1744 and last: Category:Museums in Nevada County, Arkansas -[2018-02-13T00:30:29.330] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:29.411] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:30:29.416] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:30:29.476] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:30:29.635] [INFO] cheese - inserting 1000 documents. first: Colombian cocaine and last: Category:Beaches of the Northland Region -[2018-02-13T00:30:29.639] [INFO] cheese - inserting 1000 documents. first: Marjan Kovacevic and last: Maurycow, Lask County -[2018-02-13T00:30:29.713] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:30:29.719] [INFO] cheese - inserting 1000 documents. first: River Esk (disambiguation) and last: Tumor alopecia -[2018-02-13T00:30:29.751] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:30:29.846] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:30:29.983] [INFO] cheese - inserting 1000 documents. first: George Mayo and last: Garbahaareey -[2018-02-13T00:30:30.003] [INFO] cheese - inserting 1000 documents. first: Michael P. Decker and last: Heterobasidiomycetes -[2018-02-13T00:30:30.022] [INFO] cheese - inserting 1000 documents. first: Mauvais oil and last: Michalovice (Litomerice District) -[2018-02-13T00:30:30.092] [INFO] cheese - inserting 1000 documents. first: Sharpies (Australian subculture) and last: Bishop of Praeneste -[2018-02-13T00:30:30.144] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:30:30.157] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:30:30.205] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:30:30.250] [INFO] cheese - batch complete in: 1.59 secs -[2018-02-13T00:30:30.299] [INFO] cheese - inserting 1000 documents. first: St. Francis' College and last: U.S. Route 217 -[2018-02-13T00:30:30.471] [INFO] cheese - inserting 1000 documents. first: Municipality of Veržej and last: Orrin Frink -[2018-02-13T00:30:30.543] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T00:30:30.602] [INFO] cheese - inserting 1000 documents. first: Locally inertial coordinates and last: Template:Citroën vehicles timeline (modern) -[2018-02-13T00:30:30.644] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:30:30.686] [INFO] cheese - inserting 1000 documents. first: Michalow, Gmina Brzeziny and last: Minis River (Topa) -[2018-02-13T00:30:30.693] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:30:30.722] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:30:30.892] [INFO] cheese - inserting 1000 documents. first: Akita Senshū Museum of Art and last: Category:17th-century American people by occupation -[2018-02-13T00:30:30.993] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:30:30.993] [INFO] cheese - inserting 1000 documents. first: Mobile packet data service and last: The Politics of Anti-Semitism -[2018-02-13T00:30:31.006] [INFO] cheese - inserting 1000 documents. first: Minister of Foreign Affairs (Sao Tome and Principe) and last: Montcel, Puy-de-Dome -[2018-02-13T00:30:31.062] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:30:31.069] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:30:31.182] [INFO] cheese - inserting 1000 documents. first: ି and last: Template:United States presidential election, 1968 imagemap -[2018-02-13T00:30:31.188] [INFO] cheese - inserting 1000 documents. first: Caro William and last: Bruno Buccellati -[2018-02-13T00:30:31.230] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:30:31.248] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:30:31.346] [INFO] cheese - inserting 1000 documents. first: File:Kelly123.jpg and last: Burn proof -[2018-02-13T00:30:31.366] [INFO] cheese - inserting 1000 documents. first: Holiday Inn Resort Bali Benoa and last: 1996 ITC Estoril round -[2018-02-13T00:30:31.396] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:30:31.425] [INFO] cheese - inserting 1000 documents. first: Montclar, Bergueda and last: Musee des Beaux-Arts de Dijon -[2018-02-13T00:30:31.434] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:31.449] [INFO] cheese - inserting 1000 documents. first: Altscheid and last: Citizens for ethics -[2018-02-13T00:30:31.458] [INFO] cheese - inserting 1000 documents. first: Margin call and last: No! -[2018-02-13T00:30:31.457] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:30:31.497] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:31.547] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T00:30:31.645] [INFO] cheese - inserting 1000 documents. first: Big Bear Lake standoff and last: Rilsan -[2018-02-13T00:30:31.650] [INFO] cheese - inserting 1000 documents. first: Harry Endo and last: Hurşit Meriç -[2018-02-13T00:30:31.663] [INFO] cheese - inserting 1000 documents. first: Musee des Beaux-Arts de Nantes and last: Nemcice (Mlada Boleslav District) -[2018-02-13T00:30:31.687] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:30:31.694] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:31.708] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:31.795] [INFO] cheese - inserting 1000 documents. first: George Ash (Australian politician) and last: Chloe-Jasmine -[2018-02-13T00:30:31.815] [INFO] cheese - inserting 1000 documents. first: Action Contre la Faim and last: Shkhem -[2018-02-13T00:30:31.827] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:30:32.147] [INFO] cheese - inserting 1000 documents. first: Nemcice (Prachatice District) and last: File:Weigel's logo.png -[2018-02-13T00:30:32.306] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:30:32.488] [INFO] cheese - inserting 1000 documents. first: Keri Russel and last: Wikipedia:Suspected sock puppets/Elfred -[2018-02-13T00:30:32.550] [INFO] cheese - inserting 1000 documents. first: Category:Revolvers of the Soviet Union and last: Order of Koutusoff, 1st Grade -[2018-02-13T00:30:32.551] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T00:30:32.624] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:30:32.729] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:30:32.817] [INFO] cheese - inserting 1000 documents. first: Herja and last: Category:1933 in Greece -[2018-02-13T00:30:32.927] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T00:30:32.965] [INFO] cheese - inserting 1000 documents. first: Nisia Floresta, Rio Grande do Norte and last: Nowa Wies, Wschowa County -[2018-02-13T00:30:32.978] [INFO] cheese - inserting 1000 documents. first: Attwood's phacelia and last: Fourseam, KY -[2018-02-13T00:30:32.999] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:30:33.086] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T00:30:33.218] [INFO] cheese - inserting 1000 documents. first: Gudina Tumsa and last: Almaş River (Bistriţa) -[2018-02-13T00:30:33.262] [INFO] cheese - inserting 1000 documents. first: History of the Scots language and last: Rhön-Grabfeld -[2018-02-13T00:30:33.306] [INFO] cheese - inserting 1000 documents. first: William Hoy and last: Coat of arms of Malawi -[2018-02-13T00:30:33.308] [INFO] cheese - inserting 1000 documents. first: Nowa Wies, Zyrardow County and last: Ojakula, Laane-Viru County -[2018-02-13T00:30:33.310] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:30:33.345] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:33.350] [INFO] cheese - inserting 1000 documents. first: 1999 San Diego Film Critics Society Awards and last: Lubbock Lake Landmark -[2018-02-13T00:30:33.389] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:30:33.391] [INFO] cheese - batch complete in: 1.844 secs -[2018-02-13T00:30:33.401] [INFO] cheese - inserting 1000 documents. first: Lambda Omega sorority Norroena and last: Kolopsoides -[2018-02-13T00:30:33.423] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:30:33.496] [INFO] cheese - inserting 1000 documents. first: 1591 in France and last: The Grand Duchy of Baden -[2018-02-13T00:30:33.545] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:30:33.585] [INFO] cheese - inserting 1000 documents. first: Ojala Que Llueva Cafe and last: Orlow, Lesser Poland Voivodeship -[2018-02-13T00:30:33.639] [INFO] cheese - inserting 1000 documents. first: Alunişu River (Cracău) and last: Yalalag Zapoteco language -[2018-02-13T00:30:33.653] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:30:33.658] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:30:33.729] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:30:33.968] [INFO] cheese - inserting 1000 documents. first: Category:Transport in North Korea and last: Otsuchi Station -[2018-02-13T00:30:33.979] [INFO] cheese - inserting 1000 documents. first: File:Snapshot 2007-06-22 14-42-06.jpg and last: J. Scott Smart -[2018-02-13T00:30:33.990] [INFO] cheese - inserting 1000 documents. first: Flag of Normandy and last: Peştiş River (Mureş) -[2018-02-13T00:30:33.989] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:30:34.014] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:30:34.016] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:30:34.138] [INFO] cheese - inserting 1000 documents. first: Mister rogers and last: Journal of orthomolecular medicine -[2018-02-13T00:30:34.144] [INFO] cheese - inserting 1000 documents. first: Federico Archuleta and last: Wikipedia:WikiProject Spam/LinkReports/religioustolerance.org -[2018-02-13T00:30:34.154] [INFO] cheese - inserting 1000 documents. first: Tyloses and last: Take It Easy (Vanessa Carlton song) -[2018-02-13T00:30:34.189] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:30:34.191] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:30:34.195] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:30:34.275] [INFO] cheese - inserting 1000 documents. first: Category:Deputies of Antalya and last: Braşov Council Square (Piaţa Sfatului) -[2018-02-13T00:30:34.310] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:30:34.352] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Hengel and last: Template:The Denmark Barnstar of National Merit -[2018-02-13T00:30:34.396] [INFO] cheese - inserting 1000 documents. first: Hand gestures and last: Fukuyama, Kagoshima -[2018-02-13T00:30:34.408] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:34.434] [INFO] cheese - inserting 1000 documents. first: Places In Between (Terri Hendrix Album) and last: Mark Draycott -[2018-02-13T00:30:34.460] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:30:34.479] [INFO] cheese - inserting 1000 documents. first: Willows (song) and last: Gelechia (Ceratophora) scutella -[2018-02-13T00:30:34.485] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:30:34.499] [INFO] cheese - inserting 1000 documents. first: Braşov railway station and last: PAB1040 (gene) -[2018-02-13T00:30:34.510] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:30:34.559] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:30:34.625] [INFO] cheese - inserting 1000 documents. first: Template:The Indonesia Barnstar of National Merit and last: Template:Editnotices/Page/Wikipedia:Please do not bite the newcomers -[2018-02-13T00:30:34.642] [INFO] cheese - inserting 1000 documents. first: Plessy v. Fergusen and last: Guwolsan Mountain -[2018-02-13T00:30:34.648] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:30:34.702] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:30:34.733] [INFO] cheese - inserting 1000 documents. first: Category:Lehman College alumni and last: Wikipedia:Images and media for deletion/2009 January 13 -[2018-02-13T00:30:34.778] [INFO] cheese - inserting 1000 documents. first: Lætitia Milot and last: Steve L Busby -[2018-02-13T00:30:34.789] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:30:34.804] [INFO] cheese - inserting 1000 documents. first: Băişoara and last: Qaleh-ye Astijan -[2018-02-13T00:30:34.821] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:30:34.856] [INFO] cheese - inserting 1000 documents. first: Cameron Quiseng and last: Pedro Canario, Espirito Santo -[2018-02-13T00:30:34.856] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:30:34.895] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:30:34.909] [INFO] cheese - inserting 1000 documents. first: Ike Harris and last: File:Derby hat.jpg -[2018-02-13T00:30:35.038] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:30:35.177] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Asijan and last: File:Shaggy dog.jpg -[2018-02-13T00:30:35.218] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:35.244] [INFO] cheese - inserting 1000 documents. first: Template:Kōchi Prefecture and last: Philippe de Remi (died 1265) -[2018-02-13T00:30:35.289] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:35.337] [INFO] cheese - inserting 1000 documents. first: Football at the 2002 Asian Games – Women and last: Aframonius diedes -[2018-02-13T00:30:35.341] [INFO] cheese - inserting 1000 documents. first: Aira District, Kagoshima and last: File:NikolaiBukharin.jpg -[2018-02-13T00:30:35.343] [INFO] cheese - inserting 1000 documents. first: Everyday Sunshine and last: Ghana Empire -[2018-02-13T00:30:35.350] [INFO] cheese - inserting 1000 documents. first: WKY Radio and last: Kazakhstan Superleague -[2018-02-13T00:30:35.383] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:30:35.415] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:30:35.427] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:30:35.462] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:30:35.580] [INFO] cheese - inserting 1000 documents. first: Philippe de Remi (died 1296) and last: 1961 Buddy Shuman 250 -[2018-02-13T00:30:35.617] [INFO] cheese - inserting 1000 documents. first: Boat Tail Hollow Point and last: The Last Giant: Anthology -[2018-02-13T00:30:35.617] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:30:35.653] [INFO] cheese - inserting 1000 documents. first: Bumbeşti-Jiu and last: Poiana River (Sălăuţa) -[2018-02-13T00:30:35.675] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:30:35.699] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:30:35.829] [INFO] cheese - inserting 1000 documents. first: Placzki, Silesian Voivodeship and last: Policia (song) -[2018-02-13T00:30:35.866] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:30:35.917] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Kirby's Block Ball and last: File:I Do - Castells.ogg -[2018-02-13T00:30:35.960] [INFO] cheese - inserting 1000 documents. first: 2006 Africa Cup of Nations squads and last: Lakeland High School (Michigan) -[2018-02-13T00:30:35.965] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:30:35.990] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/March 7, 2013 and last: Valcăliţa River -[2018-02-13T00:30:36.003] [INFO] cheese - inserting 1000 documents. first: Catwalk (documentary) and last: G V School -[2018-02-13T00:30:36.011] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:30:36.053] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:30:36.126] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:30:36.130] [INFO] cheese - inserting 1000 documents. first: SubRon and last: Seddonville -[2018-02-13T00:30:36.201] [INFO] cheese - inserting 1000 documents. first: Döderlein bacillus and last: Predboj -[2018-02-13T00:30:36.253] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:30:36.295] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:30:36.341] [INFO] cheese - inserting 1000 documents. first: Vâlceaua Vlădişor River and last: Crngrob 2 Mass Grave -[2018-02-13T00:30:36.382] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:30:36.508] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ketaki Chester and last: S.Coups (에스.쿱스) (Rapper) -[2018-02-13T00:30:36.542] [INFO] cheese - inserting 1000 documents. first: Ram Jam and last: Chinese Wall -[2018-02-13T00:30:36.562] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:30:36.646] [INFO] cheese - inserting 1000 documents. first: Mitsubishi MRX09 Racing Lancer and last: Flutivate -[2018-02-13T00:30:36.654] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T00:30:36.750] [INFO] cheese - inserting 1000 documents. first: Predenice and last: Przewoz, Bytow County -[2018-02-13T00:30:36.782] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:30:36.818] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:36.866] [INFO] cheese - inserting 1000 documents. first: Steve bordin and last: John L. Sullivan (elephant) -[2018-02-13T00:30:36.884] [INFO] cheese - inserting 1000 documents. first: Ahan Tongshan Cup and last: Judge Aldisert -[2018-02-13T00:30:36.897] [INFO] cheese - inserting 1000 documents. first: Cinciş River and last: Charles Dashwood (Royal Navy officer) -[2018-02-13T00:30:36.920] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:30:36.977] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T00:30:37.032] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:30:37.108] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1980 Summer Olympics – Men's coxless pair and last: Taoudeni Basin -[2018-02-13T00:30:37.185] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:30:37.242] [INFO] cheese - inserting 1000 documents. first: Acrocercops perturbata and last: Radimovice u Tabora -[2018-02-13T00:30:37.309] [INFO] cheese - inserting 1000 documents. first: Carolina Entertainment Complex and last: Osaka Evessa -[2018-02-13T00:30:37.315] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:30:37.408] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:30:37.458] [INFO] cheese - inserting 1000 documents. first: Template:House of Aviz-Beja and last: Samuel Farrow -[2018-02-13T00:30:37.549] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:30:37.552] [INFO] cheese - inserting 1000 documents. first: Template:1992 WWF pay-per-view events and last: Waka Waka (disambiguation) -[2018-02-13T00:30:37.587] [INFO] cheese - inserting 1000 documents. first: Mark A. Landis and last: Template:NYCL -[2018-02-13T00:30:37.594] [INFO] cheese - inserting 1000 documents. first: Radimovice u Zelce and last: Recica Kriska -[2018-02-13T00:30:37.602] [INFO] cheese - inserting 1000 documents. first: Hellraiser VIII and last: Scenery And Fish -[2018-02-13T00:30:37.617] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:37.621] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:30:37.655] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:30:37.687] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:30:37.812] [INFO] cheese - inserting 1000 documents. first: List of Polish Uprisings and last: Kostroma (river) -[2018-02-13T00:30:37.858] [INFO] cheese - inserting 1000 documents. first: Template:Municipalities of Goa and last: Beatrice Alfonso of Castile-León -[2018-02-13T00:30:37.898] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T00:30:37.906] [INFO] cheese - inserting 1000 documents. first: Recica, Croatia and last: Chelsea (CDP), Wisconsin -[2018-02-13T00:30:37.931] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:37.953] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:30:38.005] [INFO] cheese - inserting 1000 documents. first: Drovers and last: Category:History of Ireland 1800-1922 -[2018-02-13T00:30:38.012] [INFO] cheese - inserting 1000 documents. first: Waka-waka and last: Transfer of Population Under the Terms of Delhi Agreement -[2018-02-13T00:30:38.041] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:38.072] [INFO] cheese - inserting 1000 documents. first: Template:NYCL/doc and last: Category:Ambassadors of India to Suriname -[2018-02-13T00:30:38.075] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:30:38.118] [INFO] cheese - inserting 1000 documents. first: Rio Duey and last: Vladik Kreinovich -[2018-02-13T00:30:38.120] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:30:38.142] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:30:38.285] [INFO] cheese - inserting 1000 documents. first: Grill and last: Wivelsfield -[2018-02-13T00:30:38.297] [INFO] cheese - inserting 1000 documents. first: Estado de Washington and last: Govinda Roy -[2018-02-13T00:30:38.309] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Lomza and last: Rudnik, Raciborz County -[2018-02-13T00:30:38.339] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:30:38.351] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:30:38.359] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:30:38.419] [INFO] cheese - inserting 1000 documents. first: Ubiquiti and last: Thornley-with-Wheatley -[2018-02-13T00:30:38.449] [INFO] cheese - inserting 1000 documents. first: Reed Township, Ohio and last: Arhopala allata suffusa -[2018-02-13T00:30:38.452] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Marrakesh-Safi and last: QSI Sanaa International School -[2018-02-13T00:30:38.460] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:30:38.492] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:30:38.491] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:30:38.540] [INFO] cheese - inserting 1000 documents. first: Rudnik, Radzyn Podlaski County and last: Category:Documentary film series -[2018-02-13T00:30:38.577] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:30:38.618] [INFO] cheese - inserting 1000 documents. first: Mologa (town) and last: Earl of Iddesleigh -[2018-02-13T00:30:38.690] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:30:38.750] [INFO] cheese - inserting 1000 documents. first: Template:Kraków Fast Tram 50 and last: Humair Hayat Khan Rokhri -[2018-02-13T00:30:38.757] [INFO] cheese - inserting 1000 documents. first: Saint-Creac and last: Glucose bisphosphate -[2018-02-13T00:30:38.785] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:30:38.797] [INFO] cheese - inserting 1000 documents. first: File:Stiv Bators.jpg and last: Category:Russian military historians -[2018-02-13T00:30:38.798] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:30:38.804] [INFO] cheese - inserting 1000 documents. first: Optics & Photonics News and last: Nigel Doughty -[2018-02-13T00:30:38.856] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:30:38.869] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:30:38.883] [INFO] cheese - inserting 1000 documents. first: PilotsEYE.tv and last: Wikipedia:Route diagram template/BS-anleitung+LR/doc -[2018-02-13T00:30:38.925] [INFO] cheese - inserting 1000 documents. first: Bob Enevoldsen and last: Maija Isola -[2018-02-13T00:30:38.942] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:30:38.989] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:30:39.018] [INFO] cheese - inserting 1000 documents. first: Sainte-Elisabeth, Quebec and last: San Sebastian, Toledo -[2018-02-13T00:30:39.041] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:30:39.123] [INFO] cheese - inserting 1000 documents. first: Yunán Province and last: Hedgehog mortar -[2018-02-13T00:30:39.160] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:39.256] [INFO] cheese - inserting 1000 documents. first: San Secondo (Citta di Castello) and last: Fehaid Al Deehani -[2018-02-13T00:30:39.276] [INFO] cheese - inserting 1000 documents. first: Category:Japanese military historians and last: Category:Leander-class cruisers (1931) of the Royal Navy -[2018-02-13T00:30:39.292] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:30:39.320] [INFO] cheese - inserting 1000 documents. first: The Story So Far (Zack Hexum album) and last: Fujifilm DX-10 -[2018-02-13T00:30:39.330] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:39.343] [INFO] cheese - inserting 1000 documents. first: Karwitz and last: John Sunderland -[2018-02-13T00:30:39.362] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:30:39.393] [INFO] cheese - inserting 1000 documents. first: Category:Silent film portal and last: Byron Barwig -[2018-02-13T00:30:39.398] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:30:39.453] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:30:39.492] [INFO] cheese - inserting 1000 documents. first: Category:Fictional French police detectives and last: Schuzka o pul ctvrte -[2018-02-13T00:30:39.495] [INFO] cheese - inserting 1000 documents. first: Alexander J. Kaleri and last: Generalized special orthogonal group -[2018-02-13T00:30:39.518] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:30:39.535] [INFO] cheese - inserting 1000 documents. first: Georgia University and last: Twenty-three unsolved problems -[2018-02-13T00:30:39.566] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:30:39.568] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:39.652] [INFO] cheese - inserting 1000 documents. first: Christodoulos Tsigantes and last: Category:Havmanden-class submarines (1911) -[2018-02-13T00:30:39.683] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:30:39.700] [INFO] cheese - inserting 1000 documents. first: Salvador Luis Reyes and last: Alive (Nitty Gritty Dirt Band album) -[2018-02-13T00:30:39.723] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:30:39.756] [INFO] cheese - inserting 1000 documents. first: Nicholas Mander and last: Virgin with Child and Chancellor Rolin -[2018-02-13T00:30:39.787] [INFO] cheese - inserting 1000 documents. first: Pacific Front Recordings and last: Dear Diary (Brandy & Mr. Whiskers episode) -[2018-02-13T00:30:39.795] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:30:39.838] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:30:39.847] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:2016-17 United States network television schedule and last: File:Melburnians Ice Hockey Club 1910.png -[2018-02-13T00:30:39.899] [INFO] cheese - inserting 1000 documents. first: Dennis Schmidt and last: Cum hoc non propter hoc -[2018-02-13T00:30:39.905] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:39.913] [INFO] cheese - inserting 1000 documents. first: Sepmistr and last: State of Scott -[2018-02-13T00:30:39.914] [INFO] cheese - inserting 1000 documents. first: Template:Korea University and last: Big Ten Championship -[2018-02-13T00:30:39.933] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:30:39.936] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:30:39.974] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:30:40.106] [INFO] cheese - inserting 1000 documents. first: Simoes, Piaui and last: Slupia, Konskie County -[2018-02-13T00:30:40.134] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:30:40.204] [INFO] cheese - inserting 1000 documents. first: Little Red Lighthouse and last: LPR -[2018-02-13T00:30:40.247] [INFO] cheese - inserting 1000 documents. first: The Paganini Quartet and last: Francisco Quisumbing -[2018-02-13T00:30:40.256] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:30:40.259] [INFO] cheese - inserting 1000 documents. first: File:Airservices Australia logo.png and last: Anthony Bozzella -[2018-02-13T00:30:40.278] [INFO] cheese - inserting 1000 documents. first: Memorial Hermann Life Flight and last: Bataan (disambiguation) -[2018-02-13T00:30:40.300] [INFO] cheese - inserting 1000 documents. first: Big Ten Conference Tournament and last: Matthew O'Reilly -[2018-02-13T00:30:40.301] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:30:40.305] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:40.309] [INFO] cheese - inserting 1000 documents. first: Slupia, Lesser Poland Voivodeship and last: Sosnowka, Podlaskie Voivodeship -[2018-02-13T00:30:40.340] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:40.345] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:30:40.354] [INFO] cheese - inserting 1000 documents. first: Foucaucourt-sur-Thabas, Lorraine and last: Old Post Office (Kirkwood, Delaware) -[2018-02-13T00:30:40.370] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:30:40.400] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:30:40.540] [INFO] cheese - inserting 1000 documents. first: Sosnowka, Wabrzezno County and last: Light Rail and Modern Tramway -[2018-02-13T00:30:40.562] [INFO] cheese - batch complete in: 0.216 secs -[2018-02-13T00:30:40.609] [INFO] cheese - inserting 1000 documents. first: Faber-Jackson Law and last: Yelena Khlusovich -[2018-02-13T00:30:40.618] [INFO] cheese - inserting 1000 documents. first: Captain George Carleton and last: C6H4O5 -[2018-02-13T00:30:40.648] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:30:40.652] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:30:40.691] [INFO] cheese - inserting 1000 documents. first: H.A.C. Handball and last: Arop-Sissano language -[2018-02-13T00:30:40.732] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:30:40.741] [INFO] cheese - inserting 1000 documents. first: Stary Petrin and last: Sturlic -[2018-02-13T00:30:40.746] [INFO] cheese - inserting 1000 documents. first: School business manager and last: Tai Kok Tsui Ferry -[2018-02-13T00:30:40.773] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:30:40.818] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:30:40.849] [INFO] cheese - inserting 1000 documents. first: Sarsostraca and last: Histopathologic -[2018-02-13T00:30:40.900] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:30:40.975] [INFO] cheese - inserting 1000 documents. first: QuikAir and last: CD Radio -[2018-02-13T00:30:41.007] [INFO] cheese - inserting 1000 documents. first: Category:Swedish people of the Seven Years' War and last: Swietokrzyskie Regional Assembly -[2018-02-13T00:30:41.011] [INFO] cheese - inserting 1000 documents. first: Vikalpa and last: Template:User Tochigi Prefecture -[2018-02-13T00:30:41.013] [INFO] cheese - inserting 1000 documents. first: Category:Cenozoic Caribbean and last: Scotch Free Church -[2018-02-13T00:30:41.040] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:30:41.048] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:30:41.058] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:30:41.164] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:30:41.264] [INFO] cheese - inserting 1000 documents. first: Susanne Henrietta of Lorraine-Elbeuf and last: Taquaracu de Minas -[2018-02-13T00:30:41.320] [INFO] cheese - inserting 1000 documents. first: Follow Me (Pain song) and last: Nap Shea -[2018-02-13T00:30:41.353] [INFO] cheese - inserting 1000 documents. first: Norma Reid Birley and last: Category:North Dakota Fighting Sioux women's ice hockey -[2018-02-13T00:30:41.361] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:30:41.419] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:30:41.430] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:30:41.440] [INFO] cheese - inserting 1000 documents. first: Kinder Morgan and last: Man of the House -[2018-02-13T00:30:41.535] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:30:41.638] [INFO] cheese - inserting 1000 documents. first: File:WAMedcaidBirthGraph.gif and last: Cristina Hoyos -[2018-02-13T00:30:41.642] [INFO] cheese - inserting 1000 documents. first: Interstate 670 (Kansas-Missouri) and last: List of presidential trips made by Barack Obama during 2010 -[2018-02-13T00:30:41.653] [INFO] cheese - inserting 1000 documents. first: Ohio State Route 543 and last: Template:S-line/IT-Eurostar left/Frecciabianco -[2018-02-13T00:30:41.674] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:30:41.701] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:30:41.712] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:30:41.858] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota Fighting Sioux men's ice hockey and last: Alfonso XI of Castille -[2018-02-13T00:30:41.897] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:41.900] [INFO] cheese - inserting 1000 documents. first: File:Cilfynydd RFC.jpg and last: Without A Trace (Trish) -[2018-02-13T00:30:41.930] [INFO] cheese - inserting 1000 documents. first: 24/7 (Rojo album) and last: Template:User in Wales/doc -[2018-02-13T00:30:41.961] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:30:41.964] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:30:42.000] [INFO] cheese - inserting 1000 documents. first: 16th Street (Washington, D.C.) and last: Hypolimnas bolina -[2018-02-13T00:30:42.052] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:30:42.070] [INFO] cheese - inserting 1000 documents. first: Living Legends (charity) and last: File:Cashola.jpg -[2018-02-13T00:30:42.082] [INFO] cheese - inserting 1000 documents. first: USWA and last: A Small Killing -[2018-02-13T00:30:42.089] [INFO] cheese - inserting 1000 documents. first: Astana FC and last: Template:2015–16 National Youth League table -[2018-02-13T00:30:42.112] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:30:42.129] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:30:42.138] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T00:30:42.241] [INFO] cheese - inserting 1000 documents. first: Category:The X Factor (TV series) navigational boxes and last: Dalworth High School -[2018-02-13T00:30:42.299] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:30:42.323] [INFO] cheese - inserting 1000 documents. first: Farnell (cocktail) and last: Extensions (album) -[2018-02-13T00:30:42.372] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:30:42.432] [INFO] cheese - inserting 1000 documents. first: File:Vladimir Chelomei.jpg and last: John Valentine (cricket) -[2018-02-13T00:30:42.436] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Batangas and last: Rishi Chanda -[2018-02-13T00:30:42.483] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:30:42.510] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:30:42.512] [INFO] cheese - inserting 1000 documents. first: KHAW and last: Template:Current U.S. governors -[2018-02-13T00:30:42.557] [INFO] cheese - inserting 1000 documents. first: Frank Fukuyama and last: Infinity Challenge -[2018-02-13T00:30:42.568] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:30:42.593] [INFO] cheese - inserting 1000 documents. first: Qal'eh Darvish and last: Category:Dominica expatriates in China -[2018-02-13T00:30:42.614] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:42.626] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:30:42.684] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kurort.sergeevka.com.ua and last: 田鳳山 -[2018-02-13T00:30:42.736] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:30:42.800] [INFO] cheese - inserting 1000 documents. first: 1994–95 Pilkington Cup and last: Gary P. Emerson -[2018-02-13T00:30:42.830] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:30:42.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion requests and last: White separatism -[2018-02-13T00:30:42.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Game (drinking game) and last: Fort Garrison -[2018-02-13T00:30:42.994] [INFO] cheese - inserting 1000 documents. first: Category:Dominica expatriates in Iran and last: Mordovsky (disambiguation) -[2018-02-13T00:30:43.003] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Perth/3 and last: File:Me Natalie (1967).jpg -[2018-02-13T00:30:43.019] [INFO] cheese - inserting 1000 documents. first: Catalan-Valencian and last: Ford Supermodel Of The World -[2018-02-13T00:30:43.049] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:30:43.071] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:43.090] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:30:43.105] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:30:43.125] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:30:43.180] [INFO] cheese - inserting 1000 documents. first: Le Chatelier's principle (chemistry) and last: Tocoron River -[2018-02-13T00:30:43.265] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:30:43.387] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of Mecklenburg and last: Category:Media companies established in 1914 -[2018-02-13T00:30:43.439] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:30:43.534] [INFO] cheese - inserting 1000 documents. first: Toczen, Greater Poland Voivodeship and last: ZBGM-75 AICBM -[2018-02-13T00:30:43.575] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:30:43.578] [INFO] cheese - inserting 1000 documents. first: Mordovsky (inhabited locality) and last: GE Healthcare Ltd -[2018-02-13T00:30:43.640] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:30:43.650] [INFO] cheese - inserting 1000 documents. first: General Tormassov and last: 455 (New Jersey bus) -[2018-02-13T00:30:43.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/How to prevent mold and last: Parachute Creek -[2018-02-13T00:30:43.715] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:30:43.717] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:30:43.791] [INFO] cheese - inserting 1000 documents. first: Urmas Rooba and last: Wikipedia:Articles for deletion/Ryan Dowling -[2018-02-13T00:30:43.857] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:30:43.882] [INFO] cheese - inserting 1000 documents. first: Traungoldhohle and last: Turt River -[2018-02-13T00:30:43.918] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:30:44.060] [INFO] cheese - inserting 1000 documents. first: Mamureh and last: Debagram -[2018-02-13T00:30:44.126] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:30:44.143] [INFO] cheese - inserting 1000 documents. first: Spheric section and last: University of Mondragon -[2018-02-13T00:30:44.156] [INFO] cheese - inserting 1000 documents. first: Category:Media companies disestablished in 1961 and last: Slalom water ski -[2018-02-13T00:30:44.176] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:30:44.215] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:30:44.254] [INFO] cheese - inserting 1000 documents. first: Over the Rainbow and last: Wikipedia:Historical archive/Imported pictures/Pictures from southwarkphotolibrary.co.uk details -[2018-02-13T00:30:44.344] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T00:30:44.391] [INFO] cheese - inserting 1000 documents. first: 6-bolt mains and last: List of taxi episodes -[2018-02-13T00:30:44.407] [INFO] cheese - inserting 1000 documents. first: Commercial style and last: Brit hume -[2018-02-13T00:30:44.426] [INFO] cheese - inserting 1000 documents. first: University of Narino and last: Vamonos Pa'l Rio -[2018-02-13T00:30:44.447] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:30:44.493] [INFO] cheese - inserting 1000 documents. first: Category:Municipal presidents of Ensenada and last: Snow Trolls -[2018-02-13T00:30:44.503] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:30:44.530] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:30:44.584] [INFO] cheese - inserting 1000 documents. first: Dream Chronicles: The Eternal Maze and last: Ulrich Füterer -[2018-02-13T00:30:44.601] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:30:44.650] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:30:44.705] [INFO] cheese - inserting 1000 documents. first: Ludicrous Mode and last: Billman (surname) -[2018-02-13T00:30:44.711] [INFO] cheese - inserting 1000 documents. first: Vamoscsalad and last: Veze, Cantal -[2018-02-13T00:30:44.748] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:30:44.775] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:30:44.871] [INFO] cheese - inserting 1000 documents. first: Category:1830 disasters and last: Zayante Band-Winged Grasshopper -[2018-02-13T00:30:44.928] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:30:44.992] [INFO] cheese - inserting 1000 documents. first: Vezelise and last: Vladimir Martinovic -[2018-02-13T00:30:45.041] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:30:45.075] [INFO] cheese - inserting 1000 documents. first: Template:Location map Sweden and last: St. Francis Xavier College (Canberra) -[2018-02-13T00:30:45.114] [INFO] cheese - inserting 1000 documents. first: Boštanj Quarry Mass Grave and last: Atlanta International Documentary Film Festival -[2018-02-13T00:30:45.123] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:30:45.128] [INFO] cheese - inserting 1000 documents. first: Dinmore railway station and last: Gdańsk Nowe Szkoty railway station -[2018-02-13T00:30:45.154] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:30:45.183] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:30:45.201] [INFO] cheese - inserting 1000 documents. first: Vladimir Matic and last: Weglewo, Pila County -[2018-02-13T00:30:45.208] [INFO] cheese - inserting 1000 documents. first: File:Marianas Trench - Astoria (Official Album Cover).jpg and last: Yelena Parkhomenko -[2018-02-13T00:30:45.218] [INFO] cheese - batch complete in: 0.177 secs -[2018-02-13T00:30:45.224] [INFO] cheese - inserting 1000 documents. first: Template:Kalmar County and last: Hilltop Youth -[2018-02-13T00:30:45.250] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:30:45.298] [INFO] cheese - inserting 1000 documents. first: Benalbanach (ship) and last: August of Saxe-Coburg and Gotha, 5th Prince of Kohary -[2018-02-13T00:30:45.320] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:30:45.346] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:30:45.401] [INFO] cheese - inserting 1000 documents. first: Weglewo, Pomeranian Voivodeship and last: Vyacheslav Vasilevski -[2018-02-13T00:30:45.426] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:30:45.476] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe and the bassett and last: Kiss and Say Goodbye -[2018-02-13T00:30:45.477] [INFO] cheese - inserting 1000 documents. first: George Small (piano maker) and last: Template:Two Gallants -[2018-02-13T00:30:45.508] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:30:45.509] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:45.600] [INFO] cheese - inserting 1000 documents. first: Aikim Andrews and last: Arif (surname) -[2018-02-13T00:30:45.604] [INFO] cheese - inserting 1000 documents. first: Wojtostwo, Piotrkow County and last: Yoko Kasahara -[2018-02-13T00:30:45.625] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:30:45.638] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:30:45.669] [INFO] cheese - inserting 1000 documents. first: Beyliks and last: Meeno Peluce -[2018-02-13T00:30:45.685] [INFO] cheese - inserting 1000 documents. first: File:Beverley Knight - Sista Sista (CD 2).jpg and last: Thuravoor cherthala -[2018-02-13T00:30:45.715] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:45.720] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:30:45.801] [INFO] cheese - inserting 1000 documents. first: File:Osiris statuette cropped.jpg and last: The Skin That I Inhabit -[2018-02-13T00:30:45.832] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:30:45.848] [INFO] cheese - inserting 1000 documents. first: Ribulose-bisphosphate-carboxylase/oxygenase N-methyltransferase and last: Dryden Historic District (North Park, San Diego, California) -[2018-02-13T00:30:45.880] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:30:45.907] [INFO] cheese - inserting 1000 documents. first: Category:Mainstream jazz trombonists and last: Wikipedia:Articles for deletion/Kantebura killas -[2018-02-13T00:30:45.923] [INFO] cheese - inserting 1000 documents. first: Belgorod and last: Empetrum -[2018-02-13T00:30:45.940] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:30:45.995] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:30:45.995] [INFO] cheese - inserting 1000 documents. first: 1559 in France and last: 52 Armored Engineer Squadron -[2018-02-13T00:30:46.040] [INFO] cheese - inserting 1000 documents. first: Ghāghra and last: John DiGilio -[2018-02-13T00:30:46.048] [INFO] cheese - inserting 1000 documents. first: Zaluzany and last: Zerovnica -[2018-02-13T00:30:46.065] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:30:46.109] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:46.117] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:30:46.142] [INFO] cheese - inserting 1000 documents. first: List of Doctor Who universe creatures and aliens (H–P) and last: 2-octaprenyl-6-hydroxyphenyl methylase -[2018-02-13T00:30:46.172] [INFO] cheese - inserting 1000 documents. first: Adam and Eve and Pinch Me (Rendell novel) and last: Sylvester L. Weaver -[2018-02-13T00:30:46.175] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:30:46.241] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:30:46.302] [INFO] cheese - inserting 1000 documents. first: Zerstorergeschwader 1 and last: File:C.D. Howe in aircraft factory.jpg -[2018-02-13T00:30:46.327] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:30:46.340] [INFO] cheese - inserting 1000 documents. first: Zürich Hardbrücke railway station and last: Stub Hub -[2018-02-13T00:30:46.381] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:30:46.430] [INFO] cheese - inserting 1000 documents. first: Jaroslav Sieger and last: Landgravines of Hesse-Marburg -[2018-02-13T00:30:46.442] [INFO] cheese - inserting 1000 documents. first: S-adenosyl-L-methionine:3-(all-trans-polyprenyl)benzene-1,2-diol 2-O-methyltransferase and last: Trimethylamine methyltransferase -[2018-02-13T00:30:46.449] [INFO] cheese - inserting 1000 documents. first: Template:User phonograph and last: Category:1911 establishments in the Portuguese Empire -[2018-02-13T00:30:46.464] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:30:46.478] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:30:46.533] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:30:46.650] [INFO] cheese - inserting 1000 documents. first: Viva Santana! and last: Category:American painter stubs -[2018-02-13T00:30:46.663] [INFO] cheese - inserting 1000 documents. first: Bonde Farmhouse and last: Guntha -[2018-02-13T00:30:46.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Image Tag Team and last: Indiana University – Purdue University Indianapolis -[2018-02-13T00:30:46.700] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:30:46.713] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:30:46.718] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:30:46.794] [INFO] cheese - inserting 1000 documents. first: Post-bebop and last: Area code 656 -[2018-02-13T00:30:46.796] [INFO] cheese - inserting 1000 documents. first: First Outlook and last: Czajków, Turek County -[2018-02-13T00:30:46.835] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:30:46.848] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:30:46.924] [INFO] cheese - inserting 1000 documents. first: Fragmentation bombs and last: Neville Featherstone-Griffin -[2018-02-13T00:30:46.941] [INFO] cheese - inserting 1000 documents. first: William and Helen Koerting House and last: Nina compton -[2018-02-13T00:30:46.970] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:30:46.992] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:30:47.097] [INFO] cheese - inserting 1000 documents. first: Pope Cosmas II of Alexandria and last: Wikipedia:Articles for deletion/Axsellit -[2018-02-13T00:30:47.116] [INFO] cheese - inserting 1000 documents. first: South End, Seattle, Washington and last: Obscurior niasiensis -[2018-02-13T00:30:47.146] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:47.217] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:30:47.297] [INFO] cheese - inserting 1000 documents. first: Czyste, Greater Poland Voivodeship and last: Toby Alderweireld -[2018-02-13T00:30:47.313] [INFO] cheese - inserting 1000 documents. first: Indiana University Purdue University at Indianapolis and last: Thousand islands dressing -[2018-02-13T00:30:47.328] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:30:47.344] [INFO] cheese - inserting 1000 documents. first: Draft:David Phillips (archer) and last: File:Jhurulu School Building Erection.jpg -[2018-02-13T00:30:47.375] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:30:47.379] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:30:47.390] [INFO] cheese - inserting 1000 documents. first: Bishopric of Lodève and last: Remember the Milk -[2018-02-13T00:30:47.435] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:30:47.470] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese football friendly trophies and last: National Kiswahili Association-Kenya -[2018-02-13T00:30:47.510] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:30:47.558] [INFO] cheese - inserting 1000 documents. first: Downtown Historic District (Galesville, Wisconsin) and last: Ruben Alvarez -[2018-02-13T00:30:47.574] [INFO] cheese - inserting 1000 documents. first: Munhar and last: Jean Belanger -[2018-02-13T00:30:47.590] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:30:47.594] [INFO] cheese - inserting 1000 documents. first: Mennen Tullen and last: Gargantuas -[2018-02-13T00:30:47.611] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:30:47.646] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:30:47.665] [INFO] cheese - inserting 1000 documents. first: Pacman (software) and last: Balkan pine -[2018-02-13T00:30:47.706] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:30:47.716] [INFO] cheese - inserting 1000 documents. first: Giovan Battista Filippo Basile and last: ISO 639:cch -[2018-02-13T00:30:47.740] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:30:47.743] [INFO] cheese - inserting 1000 documents. first: UniTrans and last: Monirul Islam -[2018-02-13T00:30:47.794] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:30:47.861] [INFO] cheese - inserting 1000 documents. first: Category:Events by country and last: Portal:History of science/Selected anniversaries/April 12 -[2018-02-13T00:30:47.895] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:30:47.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/xatzone.com and last: Anodorhynchus martinicus -[2018-02-13T00:30:47.967] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:30:47.978] [INFO] cheese - inserting 1000 documents. first: ISO 639:ccj and last: Funk on Ah Roll -[2018-02-13T00:30:48.007] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:30:48.036] [INFO] cheese - inserting 1000 documents. first: The Farnsworth Parabox and last: File:Scarpa stair.JPG -[2018-02-13T00:30:48.085] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:30:48.105] [INFO] cheese - inserting 1000 documents. first: Category:1851 establishments in Switzerland and last: BT National League Division 3 -[2018-02-13T00:30:48.117] [INFO] cheese - inserting 1000 documents. first: The Baptism of Christ (Piero della Francesca) and last: Malcolm Munthe -[2018-02-13T00:30:48.142] [INFO] cheese - inserting 1000 documents. first: Random oracle model and last: Battle of Savo Island -[2018-02-13T00:30:48.148] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:30:48.165] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:30:48.183] [INFO] cheese - inserting 1000 documents. first: List of advertising agencies by revenue and last: ISO 639:ksj -[2018-02-13T00:30:48.190] [INFO] cheese - inserting 1000 documents. first: Jim Johnson (football coach) and last: Wikipedia:WikiProject Spam/LinkReports/stelling-amsterdam.nl -[2018-02-13T00:30:48.202] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:30:48.221] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:30:48.237] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:30:48.414] [INFO] cheese - inserting 1000 documents. first: Museum of Life (film) and last: Best of Puddle of Mudd -[2018-02-13T00:30:48.490] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:30:48.532] [INFO] cheese - inserting 1000 documents. first: ISO 639:ksl and last: CA7 (disambiguation) -[2018-02-13T00:30:48.554] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:30:48.591] [INFO] cheese - inserting 1000 documents. first: Remote Control (1992 film) and last: Rapture Index -[2018-02-13T00:30:48.604] [INFO] cheese - inserting 1000 documents. first: Luigi Marchesi (painter) and last: Farad (disambiguation) -[2018-02-13T00:30:48.627] [INFO] cheese - inserting 1000 documents. first: File:FC Spandau.png and last: Category:Suspected Wikipedia sockpuppets of Ccsheffield -[2018-02-13T00:30:48.643] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:30:48.659] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:48.705] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:30:48.740] [INFO] cheese - inserting 1000 documents. first: Bishop of Vancouver and last: Revista H -[2018-02-13T00:30:48.811] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:30:48.816] [INFO] cheese - inserting 1000 documents. first: ISO 639:mrs and last: ISO 639:pec -[2018-02-13T00:30:48.855] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:30:48.941] [INFO] cheese - inserting 1000 documents. first: Tokio Hotel Best Of and last: The Successor (film) -[2018-02-13T00:30:48.991] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:30:49.036] [INFO] cheese - inserting 1000 documents. first: File:Ho Chi Minh City University of Law Logo.jpeg and last: Al-Qatta'i -[2018-02-13T00:30:49.060] [INFO] cheese - inserting 1000 documents. first: Mary Lasker and last: Wikipedia:Articles for deletion/Brian M. Palmer -[2018-02-13T00:30:49.083] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:49.108] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:30:49.111] [INFO] cheese - inserting 1000 documents. first: File:Artie bio.JPG and last: Nicole Dufresne -[2018-02-13T00:30:49.121] [INFO] cheese - inserting 1000 documents. first: ISO 639:ped and last: When The Saints Come Marching In -[2018-02-13T00:30:49.135] [INFO] cheese - inserting 1000 documents. first: Sterling-Winthrop Co. and last: José Ramírez III -[2018-02-13T00:30:49.152] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:30:49.163] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:30:49.173] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:30:49.198] [INFO] cheese - inserting 1000 documents. first: Lockheed TR-1 and last: Orange box -[2018-02-13T00:30:49.278] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:30:49.404] [INFO] cheese - inserting 1000 documents. first: Harlem Shake (meme and last: Oregon Republican primary, 2008 -[2018-02-13T00:30:49.418] [INFO] cheese - inserting 1000 documents. first: Dirk Schulze-Makuch and last: Geronimo (1993 film) -[2018-02-13T00:30:49.427] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:30:49.441] [INFO] cheese - inserting 1000 documents. first: Melty Brain and last: Draft:Danko Sipka -[2018-02-13T00:30:49.465] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:30:49.482] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:49.673] [INFO] cheese - inserting 1000 documents. first: Xenusian and last: 1973 Cannes Film Festival -[2018-02-13T00:30:49.712] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:30:49.722] [INFO] cheese - inserting 1000 documents. first: Association of Public-Safety communications Officials-International and last: June 2007 Texas flooding -[2018-02-13T00:30:49.748] [INFO] cheese - inserting 1000 documents. first: Brazilian embroidery and last: Template:Subdivisions of Newfoundland and Labrador -[2018-02-13T00:30:49.775] [INFO] cheese - inserting 1000 documents. first: ISO 639:tvs and last: ISO 639:yra -[2018-02-13T00:30:49.782] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:30:49.809] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:30:49.833] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:30:49.964] [INFO] cheese - inserting 1000 documents. first: Nike White Rose Classic and last: Greek Basket League 2004-05 -[2018-02-13T00:30:50.023] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:30:50.100] [INFO] cheese - inserting 1000 documents. first: Humaria hemispherica and last: List of 2006 box office number-one films in the South Korea -[2018-02-13T00:30:50.107] [INFO] cheese - inserting 1000 documents. first: Category:1916 in the United States Virgin Islands and last: Boudjebaa El Bordj -[2018-02-13T00:30:50.224] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:30:50.243] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:30:50.253] [INFO] cheese - inserting 1000 documents. first: Group 12 element and last: Albert Woolson -[2018-02-13T00:30:50.261] [INFO] cheese - inserting 1000 documents. first: ISO 639:yrb and last: Catalan-Talgo -[2018-02-13T00:30:50.291] [INFO] cheese - inserting 1000 documents. first: Reasons (disambiguation) and last: Tim Coyle -[2018-02-13T00:30:50.315] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:30:50.352] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T00:30:50.418] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:30:50.668] [INFO] cheese - inserting 1000 documents. first: Payao Poontarat and last: Template:User Fermanagh -[2018-02-13T00:30:50.773] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:30:50.801] [INFO] cheese - inserting 1000 documents. first: File:The Load-Out Side-B Jackson Browne.jpg and last: Category:Sculptors from Oregon -[2018-02-13T00:30:50.873] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:30:50.951] [INFO] cheese - inserting 1000 documents. first: Josimar da silva Martins and last: Neue Deutsche Welle (Album) -[2018-02-13T00:30:50.960] [INFO] cheese - inserting 1000 documents. first: 1955 NCAA Division I-A football season and last: Category:Top-importance Past Political Scandals and Controversies articles -[2018-02-13T00:30:50.992] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:30:51.025] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:30:51.058] [INFO] cheese - inserting 1000 documents. first: Collaboration with Nazi Germany and last: Nanog -[2018-02-13T00:30:51.118] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:30:51.200] [INFO] cheese - inserting 1000 documents. first: File:Xmastress.PNG and last: The Definitive Simon and Garfunkel -[2018-02-13T00:30:51.264] [INFO] cheese - inserting 1000 documents. first: Lapis armenus and last: Portuguese East Africa Colony -[2018-02-13T00:30:51.285] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:30:51.317] [INFO] cheese - inserting 1000 documents. first: 2016 Superbike World Championship and last: Holiday Chile -[2018-02-13T00:30:51.326] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:30:51.367] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:30:51.426] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Past Political Scandals and Controversies articles and last: Toll (road usage) -[2018-02-13T00:30:51.442] [INFO] cheese - inserting 1000 documents. first: Never Seen The Light of Day and last: Category:Gearing-class destroyer infobox templates -[2018-02-13T00:30:51.471] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:51.508] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:30:51.515] [INFO] cheese - inserting 1000 documents. first: Cherry Drummond and last: Greatest Hits (Patricia Conroy album) -[2018-02-13T00:30:51.569] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:30:51.626] [INFO] cheese - inserting 1000 documents. first: Chitterlings and last: Platanista Gangetica -[2018-02-13T00:30:51.655] [INFO] cheese - inserting 1000 documents. first: Dismiss with prejudice and last: 1744 in the United Kingdom -[2018-02-13T00:30:51.704] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T00:30:51.710] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:30:51.813] [INFO] cheese - inserting 1000 documents. first: File:Loose.png and last: Anoushay Abbasi -[2018-02-13T00:30:51.865] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:30:51.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2015 October 2 and last: Michael Clarkson (pastoralist) -[2018-02-13T00:30:51.960] [INFO] cheese - inserting 1000 documents. first: Marcel Busch and last: Category:Vålerenga Ishockey players -[2018-02-13T00:30:51.996] [INFO] cheese - inserting 1000 documents. first: Alliance israélite universelle and last: Wikipedia:Articles for deletion/Oldest Official Student Publication -[2018-02-13T00:30:52.032] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:30:52.045] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:30:52.063] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:30:52.110] [INFO] cheese - inserting 1000 documents. first: Cardinal Wiseman Catholic Technology College and last: Simulex Inc. -[2018-02-13T00:30:52.175] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:30:52.211] [INFO] cheese - inserting 1000 documents. first: File:AllTimeLowStraightToDVD.jpg and last: Mountain Grove, Virginia -[2018-02-13T00:30:52.262] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:30:52.302] [INFO] cheese - inserting 1000 documents. first: San Juan Tamazola Mixtec and last: Category:History of Kerala on film -[2018-02-13T00:30:52.363] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:30:52.437] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Conquer Club and last: State Electricity Regulatory Commission -[2018-02-13T00:30:52.479] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:30:52.502] [INFO] cheese - inserting 1000 documents. first: Book:People and Orders (PT) 11 Seg and last: PS Gael (1867) -[2018-02-13T00:30:52.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiquette assistance/archive2 and last: Rulers of Choson -[2018-02-13T00:30:52.543] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:30:52.592] [INFO] cheese - inserting 1000 documents. first: Enrique Amorim and last: Wikipedia:Selected anniversaries/July 3 -[2018-02-13T00:30:52.601] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:30:52.613] [INFO] cheese - inserting 1000 documents. first: The Godfather I and last: The Angelic Upstarts -[2018-02-13T00:30:52.685] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:30:52.695] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:30:52.749] [INFO] cheese - inserting 1000 documents. first: Camp sites and last: MGZ -[2018-02-13T00:30:52.767] [INFO] cheese - inserting 1000 documents. first: Veni redemptor gentium and last: Dublin GAA Senior B Hurling Championship -[2018-02-13T00:30:52.812] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:30:52.824] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:52.947] [INFO] cheese - inserting 1000 documents. first: Royal Road of Kraków and last: Portal:Istanbul/Categories -[2018-02-13T00:30:52.992] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:30:53.127] [INFO] cheese - inserting 1000 documents. first: Tatyana Gordeyeva and last: Wikipedia:Articles for deletion/Secret Agent 23 Skidoo -[2018-02-13T00:30:53.223] [INFO] cheese - inserting 1000 documents. first: The very best of Level 42 and last: John Oxx -[2018-02-13T00:30:53.236] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:30:53.255] [INFO] cheese - inserting 1000 documents. first: Indoors and last: Jonathan Davis (disambiguation) -[2018-02-13T00:30:53.270] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:30:53.318] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:30:53.326] [INFO] cheese - inserting 1000 documents. first: Kevin "Dis" McAllister and last: Muzaffarpur Junction -[2018-02-13T00:30:53.332] [INFO] cheese - inserting 1000 documents. first: MHJ and last: Soft Focus -[2018-02-13T00:30:53.363] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:30:53.391] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:30:53.477] [INFO] cheese - inserting 1000 documents. first: File:Captain Barbell.jpg and last: Bob Braithwaite (sport shooter) -[2018-02-13T00:30:53.522] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:30:53.569] [INFO] cheese - inserting 1000 documents. first: Orlando Science Center and last: Uppland Runic Inscription 358 -[2018-02-13T00:30:53.581] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Selected anniversaries/July 4 and last: Italo-Ethiopian War -[2018-02-13T00:30:53.610] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:30:53.615] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fiona Clayton and last: Leman International School (China) -[2018-02-13T00:30:54.082] [INFO] cheese - batch complete in: 1.386 secs -[2018-02-13T00:30:54.199] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:30:54.316] [INFO] cheese - inserting 1000 documents. first: Murray Tosh and last: File:Recruitmovie.jpg -[2018-02-13T00:30:54.371] [INFO] cheese - inserting 1000 documents. first: Mic array and last: Wikipedia:WikiProject Spam/LinkReports/mccb.org -[2018-02-13T00:30:54.463] [INFO] cheese - inserting 1000 documents. first: Darko Karadžić and last: Lined surgeonfish -[2018-02-13T00:30:54.489] [INFO] cheese - inserting 1000 documents. first: Great Ejectment and last: Ban Phônsavan -[2018-02-13T00:30:54.537] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:30:54.590] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T00:30:54.603] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T00:30:54.677] [INFO] cheese - batch complete in: 1.314 secs -[2018-02-13T00:30:54.861] [INFO] cheese - inserting 1000 documents. first: UD Fuengirola Los Boliches and last: Category:15th century in Easter Island -[2018-02-13T00:30:54.885] [INFO] cheese - inserting 1000 documents. first: Voluntary Taxation and last: Kōjimachi Station -[2018-02-13T00:30:54.908] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:30:55.043] [INFO] cheese - batch complete in: 1.433 secs -[2018-02-13T00:30:55.109] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mccb.org and last: Category:Seaside resorts in Oregon -[2018-02-13T00:30:55.149] [INFO] cheese - inserting 1000 documents. first: Thakhèk and last: Doremi Laboratories, Inc. -[2018-02-13T00:30:55.190] [INFO] cheese - inserting 1000 documents. first: Alpha1Estates and last: File:Edinburgh Castle 2005.jpg -[2018-02-13T00:30:55.208] [INFO] cheese - inserting 1000 documents. first: Category:FC Krystal Kherson players and last: Wikipedia:Articles for deletion/JP Cadorin -[2018-02-13T00:30:55.213] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:30:55.221] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:30:55.282] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:30:55.294] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:30:55.390] [INFO] cheese - inserting 1000 documents. first: Hoor of Babylon and last: File:NRJ 12 2015 logo.png -[2018-02-13T00:30:55.544] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:30:55.653] [INFO] cheese - inserting 1000 documents. first: South American Plate and last: Historical Jesus -[2018-02-13T00:30:55.677] [INFO] cheese - inserting 1000 documents. first: File:FlyingWithoutWings.jpg and last: File:Live and die.jpg -[2018-02-13T00:30:55.720] [INFO] cheese - batch complete in: 1.638 secs -[2018-02-13T00:30:55.720] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:30:55.797] [INFO] cheese - inserting 1000 documents. first: United States presidential election in Alabama, 1824 and last: Category:WikiProject Nauru members -[2018-02-13T00:30:55.819] [INFO] cheese - inserting 1000 documents. first: Qays ibn Musahir and last: William with the long beard -[2018-02-13T00:30:55.828] [INFO] cheese - inserting 1000 documents. first: Dichloroacetamide and last: Template:MuswellbrookShire-geo-stub -[2018-02-13T00:30:55.850] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:30:55.859] [INFO] cheese - inserting 1000 documents. first: 2011 Extreme Sailing Series and last: Wikipedia:WikiProject Spam/Local/pashtopro.com -[2018-02-13T00:30:55.868] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:30:55.925] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:30:55.937] [INFO] cheese - inserting 1000 documents. first: Dublin and Southwestern Railroad and last: File:Sentou Yousei Yukikaze.jpg -[2018-02-13T00:30:55.943] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:56.016] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:30:56.114] [INFO] cheese - inserting 1000 documents. first: Saint-Trinit and last: SR-54 -[2018-02-13T00:30:56.148] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:30:56.258] [INFO] cheese - inserting 1000 documents. first: Oregon Bill of 1848 and last: Grid search -[2018-02-13T00:30:56.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Veritas Aeterna/Draft Kissinger and last: KVIE, Inc. -[2018-02-13T00:30:56.295] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:30:56.312] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:56.391] [INFO] cheese - inserting 1000 documents. first: Duane Mansion and last: The Jim Morrison Triptych -[2018-02-13T00:30:56.437] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:30:56.457] [INFO] cheese - inserting 1000 documents. first: Template:Maitland-geo-stub and last: List of Heroes of the Russian Federation (B) -[2018-02-13T00:30:56.480] [INFO] cheese - inserting 1000 documents. first: Formal derivative and last: Bánh xèo -[2018-02-13T00:30:56.523] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:30:56.549] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:30:56.552] [INFO] cheese - inserting 1000 documents. first: Where Were You Last Night (song) and last: Jimmie Jones (defensive end) -[2018-02-13T00:30:56.594] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:30:56.644] [INFO] cheese - inserting 1000 documents. first: Rod Smart and last: Two Knights defence -[2018-02-13T00:30:56.715] [INFO] cheese - inserting 1000 documents. first: Polo, Valenzuela and last: Karasuk, Russia -[2018-02-13T00:30:56.727] [INFO] cheese - inserting 1000 documents. first: Later Sabeol and last: Jules B Montenier -[2018-02-13T00:30:56.735] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:30:56.752] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:30:56.797] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:30:56.944] [INFO] cheese - inserting 1000 documents. first: Pearl in the Palm and last: Maybe My Baby -[2018-02-13T00:30:56.968] [INFO] cheese - inserting 1000 documents. first: Carlsbad 1907 chess tournament and last: Economic and Social Committee -[2018-02-13T00:30:56.989] [INFO] cheese - inserting 1000 documents. first: Charonia tritonis and last: File for Record -[2018-02-13T00:30:57.007] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:30:57.019] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:30:57.064] [INFO] cheese - inserting 1000 documents. first: Dvd Ram and last: Template:Chapters in the Gospel of Mark -[2018-02-13T00:30:57.065] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:30:57.101] [INFO] cheese - inserting 1000 documents. first: Vyacheslav Derkach and last: List of songs containing the fifties' chord progression -[2018-02-13T00:30:57.149] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:30:57.203] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:30:57.241] [INFO] cheese - inserting 1000 documents. first: Manual Testing and last: Alison Fairlie -[2018-02-13T00:30:57.286] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:30:57.484] [INFO] cheese - inserting 1000 documents. first: File:CILLA BAT BRN.jpg and last: Allegations of breaches of international law by the United States -[2018-02-13T00:30:57.485] [INFO] cheese - inserting 1000 documents. first: E. Clarke Arnold Residence and last: 1993 Malaysian constitutional ammendment -[2018-02-13T00:30:57.502] [INFO] cheese - inserting 1000 documents. first: Two Knights Defence and last: Irenism -[2018-02-13T00:30:57.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/beedbox.com and last: Category:Peaceville Records albums -[2018-02-13T00:30:57.526] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:30:57.537] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:30:57.577] [INFO] cheese - inserting 1000 documents. first: Mundakanniamman Koil (Chennai MRTS) and last: Sierra de San Carlos -[2018-02-13T00:30:57.579] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:30:57.595] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:30:57.600] [INFO] cheese - inserting 1000 documents. first: Lee Sang-hyun and last: Immurement -[2018-02-13T00:30:57.655] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:30:57.667] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:30:57.674] [INFO] cheese - inserting 1000 documents. first: Template:1976 AL Record vs. opponents and last: Category:1978 natural disasters in the United States -[2018-02-13T00:30:57.708] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:30:57.956] [INFO] cheese - inserting 1000 documents. first: David Grann and last: Beat Me -[2018-02-13T00:30:57.982] [INFO] cheese - inserting 1000 documents. first: Chosroids and last: Zanesville-Dresden Road -[2018-02-13T00:30:57.997] [INFO] cheese - inserting 1000 documents. first: Category:Permanent Records albums and last: Semi-Detached -[2018-02-13T00:30:58.010] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:30:58.028] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:30:58.031] [INFO] cheese - inserting 1000 documents. first: Category:1971 natural disasters in the United States and last: Jacobisq/Capacity to be alone -[2018-02-13T00:30:58.047] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:30:58.069] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:30:58.097] [INFO] cheese - inserting 1000 documents. first: Africanus, Sextus Julius and last: Jarosite -[2018-02-13T00:30:58.135] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:30:58.182] [INFO] cheese - inserting 1000 documents. first: Wood gecko and last: Ciphers and Constellations, in Love with a Woman -[2018-02-13T00:30:58.228] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:30:58.257] [INFO] cheese - inserting 1000 documents. first: Template:Lok Rajya Party/meta/shortname and last: List of bishops in the Episcopal Diocese of Chicago -[2018-02-13T00:30:58.304] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:30:58.326] [INFO] cheese - inserting 1000 documents. first: Toutant Airport and last: Category:Paradime albums -[2018-02-13T00:30:58.361] [INFO] cheese - inserting 1000 documents. first: Ruslan Mirzaliyev and last: Morton d. may -[2018-02-13T00:30:58.363] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:30:58.399] [INFO] cheese - inserting 1000 documents. first: Asmat languages and last: ASHS -[2018-02-13T00:30:58.403] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:30:58.409] [INFO] cheese - inserting 1000 documents. first: 1953 Cupa României Final and last: Shield aralia -[2018-02-13T00:30:58.443] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:30:58.465] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:30:58.556] [INFO] cheese - inserting 1000 documents. first: Category:1788 in Africa and last: Lurch/Butterfly Love -[2018-02-13T00:30:58.564] [INFO] cheese - inserting 1000 documents. first: Category:Paper + Plastick albums and last: Portal:University of Montana/Selected article -[2018-02-13T00:30:58.587] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:30:58.587] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:30:58.737] [INFO] cheese - inserting 1000 documents. first: Martin Chávez and last: John Taylor, Baron Taylor of Warwick -[2018-02-13T00:30:58.744] [INFO] cheese - inserting 1000 documents. first: Izel Jenkins and last: Microparasite -[2018-02-13T00:30:58.747] [INFO] cheese - inserting 1000 documents. first: Ghita of Alizarr and last: Wikipedia:Template messages/Section -[2018-02-13T00:30:58.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Sujitmoto Group and last: Wikipedia:Articles for deletion/The Church at BattleCreek -[2018-02-13T00:30:58.778] [INFO] cheese - inserting 1000 documents. first: EA Distribution and last: The Hip Hop Years -[2018-02-13T00:30:58.787] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:30:58.806] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:30:58.841] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:30:58.863] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:30:58.929] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:30:59.067] [INFO] cheese - inserting 1000 documents. first: Tokyo Youth Development Ordinance and last: Bafata (disambiguation) -[2018-02-13T00:30:59.139] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:30:59.153] [INFO] cheese - inserting 1000 documents. first: File:Steel Pole Bath Tub - Lurch and Butterfly Love.jpeg and last: Category:1865 in Maryland -[2018-02-13T00:30:59.226] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:30:59.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wendy Sweeney and last: Wikipedia:Articles for deletion/Tom Williams's (stock trader) -[2018-02-13T00:30:59.420] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:30:59.466] [INFO] cheese - inserting 1000 documents. first: Alexander Malcolm Manson and last: Wikipedia:Articles for deletion/American Mayor(film) -[2018-02-13T00:30:59.477] [INFO] cheese - inserting 1000 documents. first: Bishop of St-Lizier and last: Ilona Jokinen -[2018-02-13T00:30:59.491] [INFO] cheese - inserting 1000 documents. first: Baila Conmigo (disambiguation) and last: Template:Packaging -[2018-02-13T00:30:59.512] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:30:59.538] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:30:59.546] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:30:59.585] [INFO] cheese - inserting 1000 documents. first: Mwanga District and last: Polyols -[2018-02-13T00:30:59.617] [INFO] cheese - inserting 1000 documents. first: You shall not bear false witness against your neighbor and last: Kolkata railway station -[2018-02-13T00:30:59.649] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:30:59.652] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:30:59.758] [INFO] cheese - inserting 1000 documents. first: Category:1941 comics endings and last: Draft:List of blockchain companies -[2018-02-13T00:30:59.789] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:30:59.930] [INFO] cheese - inserting 1000 documents. first: Hopkinsia and last: Buchtel football -[2018-02-13T00:30:59.963] [INFO] cheese - inserting 1000 documents. first: Cross stitches and last: Menominees -[2018-02-13T00:30:59.978] [INFO] cheese - inserting 1000 documents. first: Rome (Paris Métro) and last: Server-side include -[2018-02-13T00:30:59.980] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:30:59.990] [INFO] cheese - inserting 1000 documents. first: Portal:Portal/Selected picture/5 and last: Mythos (computer game) -[2018-02-13T00:31:00.005] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:31:00.045] [INFO] cheese - inserting 1000 documents. first: Helen of Troy (TV series) and last: Template:Modern-pentathlon-stub -[2018-02-13T00:31:00.057] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T00:31:00.064] [INFO] cheese - inserting 1000 documents. first: Yumi (disambiguation) and last: Dogger -[2018-02-13T00:31:00.067] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:31:00.088] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:00.145] [INFO] cheese - inserting 1000 documents. first: 2015–16 Esbjerg fB season and last: Second Revolution Day -[2018-02-13T00:31:00.160] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:31:00.274] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:00.498] [INFO] cheese - inserting 1000 documents. first: Nubian Flapshell Turtle and last: Category:Wikipedia featured topics New York and New Jersey campaign featured content -[2018-02-13T00:31:00.528] [INFO] cheese - inserting 1000 documents. first: Chang Hsien-chung and last: Darn That Dream -[2018-02-13T00:31:00.580] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:31:00.593] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:31:00.602] [INFO] cheese - inserting 1000 documents. first: File:We're the Brotherhood Of Man.jpg and last: Folke Sundquist -[2018-02-13T00:31:00.649] [INFO] cheese - inserting 1000 documents. first: Efase kigali and last: Wikipedia:Main Page history/2013 March 3 -[2018-02-13T00:31:00.694] [INFO] cheese - inserting 1000 documents. first: Helensburgh railway station and last: File:SAPN.png -[2018-02-13T00:31:00.697] [INFO] cheese - inserting 1000 documents. first: Nyerere Day and last: 1916 in Russia -[2018-02-13T00:31:00.696] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:31:00.731] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:31:00.768] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:31:00.771] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:31:01.001] [INFO] cheese - inserting 1000 documents. first: Arncliffe, North Yorkshire and last: Kay Kendall -[2018-02-13T00:31:01.069] [INFO] cheese - inserting 1000 documents. first: Portal:Arizonan/News/Wikinews and last: Template:Taxonomy/Priapulidae -[2018-02-13T00:31:01.095] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:31:01.118] [INFO] cheese - inserting 1000 documents. first: Sampov Meas and last: Category:Defunct magazines of Canada -[2018-02-13T00:31:01.122] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:31:01.123] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean diaspora in Asia and last: Joao Paulo Bravo Pereira -[2018-02-13T00:31:01.134] [INFO] cheese - inserting 1000 documents. first: 2006–07 Wisconsin Badgers men's basketball team and last: Asante Kotoko F.C. -[2018-02-13T00:31:01.208] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:31:01.230] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:31:01.239] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:01.252] [INFO] cheese - inserting 1000 documents. first: Avraham (Yair) Stern and last: 134th meridian east -[2018-02-13T00:31:01.373] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:01.453] [INFO] cheese - inserting 1000 documents. first: Coupling (UK) and last: Wikipedia:Articles for deletion/Çağlar -[2018-02-13T00:31:01.525] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:31:01.625] [INFO] cheese - inserting 1000 documents. first: Hendrick Mommers and last: Schall (disambiguation) -[2018-02-13T00:31:01.658] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:31:01.790] [INFO] cheese - inserting 1000 documents. first: Colchuck Glacier and last: Wikipedia:Articles for deletion/Engineering For Kids -[2018-02-13T00:31:01.810] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ethel Lang (supercentenarian) and last: 2002 Major League Baseball Draft -[2018-02-13T00:31:01.830] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:31:01.849] [INFO] cheese - inserting 1000 documents. first: Bustros and last: 2006 Texas Rangers season -[2018-02-13T00:31:01.862] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:31:01.875] [INFO] cheese - inserting 1000 documents. first: List of defunct United States Congressional committees and last: Donald Marron -[2018-02-13T00:31:01.917] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:31:01.943] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:31:01.985] [INFO] cheese - inserting 1000 documents. first: Cuba at the 1900 Summer Olympics and last: Model Penal Code -[2018-02-13T00:31:02.033] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:02.050] [INFO] cheese - inserting 1000 documents. first: FC Homburg and last: 2011 in Japanese television -[2018-02-13T00:31:02.065] [INFO] cheese - inserting 1000 documents. first: Concord Records and last: List of Billboard Hot 100 number-one singles of 1995 -[2018-02-13T00:31:02.089] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:31:02.139] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:31:02.211] [INFO] cheese - inserting 1000 documents. first: 18 Ursae Majoris and last: De Zwarte Raaf -[2018-02-13T00:31:02.253] [INFO] cheese - inserting 1000 documents. first: Category:Wireless internet service providers and last: Krause Center for Leadership and Ethics -[2018-02-13T00:31:02.276] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:02.295] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:31:02.431] [INFO] cheese - inserting 1000 documents. first: Numerical error and last: Augsburg-Firnhaberau -[2018-02-13T00:31:02.464] [INFO] cheese - inserting 1000 documents. first: CADPAC and last: Mirai Ninja (video game) -[2018-02-13T00:31:02.474] [INFO] cheese - inserting 1000 documents. first: Template:Bathurst 1000 winners and last: Nieborowice -[2018-02-13T00:31:02.481] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:31:02.501] [INFO] cheese - inserting 1000 documents. first: Randy Pendleton and last: Elisabeth Aasen -[2018-02-13T00:31:02.536] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:31:02.567] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:31:02.630] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:31:02.688] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Windowgate and last: Krivosheinskii -[2018-02-13T00:31:02.726] [INFO] cheese - inserting 1000 documents. first: Jennifer Chatman and last: Wikipedia:Featured picture candidates/Shangrila Lake -[2018-02-13T00:31:02.731] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:02.771] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:02.860] [INFO] cheese - inserting 1000 documents. first: Pinus serotina and last: Bobby Flay England -[2018-02-13T00:31:02.955] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:31:02.978] [INFO] cheese - inserting 1000 documents. first: Standard Diver Dress and last: Portal:Mumbai/In the news -[2018-02-13T00:31:02.997] [INFO] cheese - inserting 1000 documents. first: Haukåsen Radar and last: Major Jill Metzger -[2018-02-13T00:31:03.024] [INFO] cheese - inserting 1000 documents. first: The Union (newspaper) and last: Rascals in Paradise (short story collection) -[2018-02-13T00:31:03.048] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:03.051] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:31:03.081] [INFO] cheese - inserting 1000 documents. first: Krivosheinskoye and last: Lotus Deities -[2018-02-13T00:31:03.087] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:03.094] [INFO] cheese - inserting 1000 documents. first: Cherokee High School and last: File:Southwell logo.jpg -[2018-02-13T00:31:03.122] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:31:03.146] [INFO] cheese - inserting 1000 documents. first: Akami v. Limelight and last: R v Secretary of State for Transport, ex p Factortame Ltd -[2018-02-13T00:31:03.161] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:31:03.197] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:31:03.419] [INFO] cheese - inserting 1000 documents. first: Bolide impact and last: U.S. Route 64 in Arkansas -[2018-02-13T00:31:03.429] [INFO] cheese - inserting 1000 documents. first: File:Jerry Frei.png and last: Template:Footer World LC Champions 4x100m Freestyle Women -[2018-02-13T00:31:03.460] [INFO] cheese - inserting 1000 documents. first: Tv9 Kannada News Channel and last: Wikipedia:Articles for deletion/Alasdair Macmillan -[2018-02-13T00:31:03.468] [INFO] cheese - inserting 1000 documents. first: Mohammadabad Rural District (Anbarabad County) and last: R.S.Cowan -[2018-02-13T00:31:03.470] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:31:03.482] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:31:03.500] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:31:03.520] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:03.578] [INFO] cheese - inserting 1000 documents. first: St. Simon (horse) and last: Fire Drakes -[2018-02-13T00:31:03.602] [INFO] cheese - inserting 1000 documents. first: Category:Miracles attributed to Jesus and last: 1959–60 Dumbarton F.C. season -[2018-02-13T00:31:03.616] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:03.640] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:31:03.717] [INFO] cheese - inserting 1000 documents. first: Bobby England and last: Baron Balfour of Inchrye -[2018-02-13T00:31:03.861] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:31:03.871] [INFO] cheese - inserting 1000 documents. first: Category:1969 disestablishments in Maryland and last: Eliezer ben Nathan of Mainz -[2018-02-13T00:31:03.915] [INFO] cheese - inserting 1000 documents. first: Cult with No Name and last: Neyinzaya River -[2018-02-13T00:31:03.922] [INFO] cheese - inserting 1000 documents. first: 14 Street (IRT Third Avenue Line) and last: Neurosciences Institute (Saint Thomas Health Services) -[2018-02-13T00:31:03.939] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:31:03.972] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:31:04.004] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of the Tisa-Iza-Vișeu subbasin and last: Myrna Williams (politician) -[2018-02-13T00:31:04.024] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:31:04.073] [INFO] cheese - inserting 1000 documents. first: Editions Gründ and last: Королівство Русі -[2018-02-13T00:31:04.075] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:31:04.115] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:31:04.158] [INFO] cheese - inserting 1000 documents. first: Fire Drake and last: KFQD -[2018-02-13T00:31:04.233] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:31:04.315] [INFO] cheese - inserting 1000 documents. first: Category:Blue Ridge-class command ships and last: ພ -[2018-02-13T00:31:04.357] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:04.371] [INFO] cheese - inserting 1000 documents. first: Jonathan Ignoumba and last: The Dominion -[2018-02-13T00:31:04.392] [INFO] cheese - inserting 1000 documents. first: Bensberg (KVB) and last: Category:Seminaries and theological colleges in Indiana -[2018-02-13T00:31:04.416] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:31:04.439] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:31:04.500] [INFO] cheese - inserting 1000 documents. first: File:Mobile Suit Gundam 0083 Stardust Memory Blu-ray cover.jpg and last: India national under-18 and under-19 basketball team -[2018-02-13T00:31:04.530] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class United States articles and last: Rouelle -[2018-02-13T00:31:04.550] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:31:04.602] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:31:04.650] [INFO] cheese - inserting 1000 documents. first: Vinyl Records and last: Handley-Page 0/400 -[2018-02-13T00:31:04.673] [INFO] cheese - inserting 1000 documents. first: Pygmy scale and last: Bagh Ahani -[2018-02-13T00:31:04.708] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:31:04.708] [INFO] cheese - inserting 1000 documents. first: File:InMyCountry.jpg and last: Hidden room -[2018-02-13T00:31:04.749] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:31:04.788] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:04.819] [INFO] cheese - inserting 1000 documents. first: State Route 146 (New York) and last: I'm on the Outside (Looking In) -[2018-02-13T00:31:04.835] [INFO] cheese - inserting 1000 documents. first: Vriddhagiriswarar Temple, Vriddhachalam and last: Vernawahlshausen station -[2018-02-13T00:31:04.945] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:05.011] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:31:05.082] [INFO] cheese - inserting 1000 documents. first: India national under-16 and under-17 basketball team and last: Spring Tonic -[2018-02-13T00:31:05.113] [INFO] cheese - inserting 1000 documents. first: Glycine N-phenylacetyltransferase and last: EC 2.4.1.56 -[2018-02-13T00:31:05.120] [INFO] cheese - inserting 1000 documents. first: Immigration and Refugee Board and last: Asterocampa -[2018-02-13T00:31:05.130] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:05.153] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:31:05.165] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:31:05.338] [INFO] cheese - inserting 1000 documents. first: Shigureden and last: Jan Joest van Kalkar -[2018-02-13T00:31:05.405] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:31:05.418] [INFO] cheese - inserting 1000 documents. first: René Radembino-Coniquet and last: Legend of the Metallic Blood -[2018-02-13T00:31:05.469] [INFO] cheese - inserting 1000 documents. first: Andrea Fabbri and last: Yuko Takayama -[2018-02-13T00:31:05.473] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:31:05.507] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:31:05.516] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Zambia and last: Wikipedia:WikiProject C/C++/Article alerts -[2018-02-13T00:31:05.536] [INFO] cheese - inserting 1000 documents. first: Mister Mxyzptlk and last: Wisconsin State Assembly -[2018-02-13T00:31:05.560] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:31:05.591] [INFO] cheese - inserting 1000 documents. first: File:TeenNick Top 10 Logo.png and last: Killing Reagan: The Violent Assault That Changed a Presidency -[2018-02-13T00:31:05.601] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:31:05.631] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:31:05.634] [INFO] cheese - inserting 1000 documents. first: Kenneth G. Elzinga and last: L'Amour à La Française -[2018-02-13T00:31:05.684] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:31:05.753] [INFO] cheese - inserting 1000 documents. first: Richard van Bleeck and last: Template:Chembox Elements/sandbox -[2018-02-13T00:31:05.779] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:31:05.848] [INFO] cheese - inserting 1000 documents. first: Cross division and last: Amadeu Teixeira Arena -[2018-02-13T00:31:05.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/chez-soso.picoz.com and last: 103 Monkland -[2018-02-13T00:31:05.893] [INFO] cheese - inserting 1000 documents. first: The Eighteenth of December and last: Category:1991 establishments in the Dominican Republic -[2018-02-13T00:31:05.887] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:31:05.902] [INFO] cheese - inserting 1000 documents. first: John of Kronstadt and last: Jack Russo -[2018-02-13T00:31:05.940] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:31:05.932] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:31:05.979] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:31:06.214] [INFO] cheese - inserting 1000 documents. first: Lefteris Lazarou and last: Professor ordinarius -[2018-02-13T00:31:06.255] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:06.335] [INFO] cheese - inserting 1000 documents. first: William Overton (bishop) and last: St. John's University of Tanzania -[2018-02-13T00:31:06.367] [INFO] cheese - inserting 1000 documents. first: Studies of Broadcasting and last: File:Radiohead - Pop Is Dead music video screen capture.jpg -[2018-02-13T00:31:06.371] [INFO] cheese - inserting 1000 documents. first: SC Bose and last: Edystone -[2018-02-13T00:31:06.376] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:06.386] [INFO] cheese - inserting 1000 documents. first: Addison Alexander Mackenzie and last: Category:Wikipedians who like Babylon 5 -[2018-02-13T00:31:06.422] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:31:06.460] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:31:06.464] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:31:06.508] [INFO] cheese - inserting 1000 documents. first: Dormi jesu and last: Michelle MacLaren -[2018-02-13T00:31:06.546] [INFO] cheese - inserting 1000 documents. first: AMGN and last: Lougheed, Alberta -[2018-02-13T00:31:06.569] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:31:06.595] [INFO] cheese - inserting 1000 documents. first: Dr.hab. and last: 🅼 -[2018-02-13T00:31:06.625] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:31:06.637] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:31:06.739] [INFO] cheese - inserting 1000 documents. first: Bob Hammond (footballer, born 1905) and last: Luis Cámara -[2018-02-13T00:31:06.742] [INFO] cheese - inserting 1000 documents. first: Charles Henry Bennett (illustrator) and last: Wikipedia:Articles for deletion/Ahuva Gray -[2018-02-13T00:31:06.782] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:31:06.800] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:31:06.880] [INFO] cheese - inserting 1000 documents. first: Template:Di-no rationale-caption and last: File:Cryptic Edge of Sanity.jpg -[2018-02-13T00:31:06.941] [INFO] cheese - inserting 1000 documents. first: Dark Passenger and last: Dmitry Nikolayevich Bludov -[2018-02-13T00:31:06.945] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:06.952] [INFO] cheese - inserting 1000 documents. first: 🅽 and last: Template:Puerto Rico 2006 World Baseball Classic roster -[2018-02-13T00:31:07.003] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:31:07.005] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:07.020] [INFO] cheese - inserting 1000 documents. first: Marine Heavy Helicopter Squadron 362 and last: File:Richard-Watson-Gilder.jpg -[2018-02-13T00:31:07.062] [INFO] cheese - inserting 1000 documents. first: Xrinh and last: Carl Liscombe -[2018-02-13T00:31:07.082] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:07.151] [INFO] cheese - inserting 1000 documents. first: I-Road and last: Matt Stephen Targett -[2018-02-13T00:31:07.155] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:31:07.212] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:07.252] [INFO] cheese - inserting 1000 documents. first: File:Hazzy Hilo.jpg and last: Wikipedia:WikiProject Spam/LinkReports/cahiersduvaldebargis.free.fr -[2018-02-13T00:31:07.397] [INFO] cheese - inserting 1000 documents. first: Obadiah Parker Live and last: Sestercii -[2018-02-13T00:31:07.422] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:31:07.478] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:07.533] [INFO] cheese - inserting 1000 documents. first: Ondansetron Hydrochloride and last: Mirabad-e Abadi -[2018-02-13T00:31:07.581] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:31:07.620] [INFO] cheese - inserting 1000 documents. first: A torinói ló and last: Wikipedia:Articles for deletion/Bernard the Arch-elf -[2018-02-13T00:31:07.677] [INFO] cheese - inserting 1000 documents. first: File:Celtic Nations.png and last: Deir al Qamar -[2018-02-13T00:31:07.684] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:31:07.781] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:31:07.800] [INFO] cheese - inserting 1000 documents. first: Category:Shenzhen templates and last: CASC CH-4 -[2018-02-13T00:31:07.862] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:31:07.992] [INFO] cheese - inserting 1000 documents. first: Aston Moore and last: Wikipedia:Articles for deletion/Dixie Chicken (bar) -[2018-02-13T00:31:08.126] [INFO] cheese - inserting 1000 documents. first: Committee on Regional Development and last: Wikipedia:Articles for deletion/Zac Poonen (3rd nomination) -[2018-02-13T00:31:08.158] [INFO] cheese - inserting 1000 documents. first: William Hawley Bowlus and last: PDC-EFR -[2018-02-13T00:31:08.166] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:31:08.249] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:31:08.248] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:31:08.285] [INFO] cheese - inserting 1000 documents. first: Acalyptris nigripexus and last: Harold "Mick" Crocker -[2018-02-13T00:31:08.306] [INFO] cheese - inserting 1000 documents. first: Gove County and last: Turner Fenton High School -[2018-02-13T00:31:08.351] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:31:08.401] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T00:31:08.528] [INFO] cheese - inserting 1000 documents. first: CASC CH4 and last: Diyarbakır Fortress -[2018-02-13T00:31:08.553] [INFO] cheese - inserting 1000 documents. first: Patrick Eddington and last: Wikipedia:Peer review/Rachel Stevens/archive1 -[2018-02-13T00:31:08.584] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:31:08.619] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:31:08.672] [INFO] cheese - inserting 1000 documents. first: Катерина Кондратенко and last: Category:1905 in Ecuador -[2018-02-13T00:31:08.675] [INFO] cheese - inserting 1000 documents. first: Lemon and last: List of glaciers in the United States -[2018-02-13T00:31:08.706] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:08.729] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:31:08.800] [INFO] cheese - inserting 1000 documents. first: Category:Transport disasters in 1777 and last: Trifurcula saturejae -[2018-02-13T00:31:08.837] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:08.886] [INFO] cheese - inserting 1000 documents. first: Thomas P. "Tip" O'Neill and last: NetBEUI Frames protocol -[2018-02-13T00:31:08.923] [INFO] cheese - inserting 1000 documents. first: Conus leviteni and last: Liberal Democratic Party (Chile, 1875) -[2018-02-13T00:31:08.955] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:31:08.971] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:31:08.991] [INFO] cheese - inserting 1000 documents. first: Steven J. Law and last: Ensay, Victoria -[2018-02-13T00:31:09.053] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:31:09.074] [INFO] cheese - inserting 1000 documents. first: Category:1911 in Ecuador and last: Mădălin Martin -[2018-02-13T00:31:09.119] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:31:09.166] [INFO] cheese - inserting 1000 documents. first: Carex subnigricans and last: Acheria -[2018-02-13T00:31:09.168] [INFO] cheese - inserting 1000 documents. first: Template:Historical provinces of Finland and last: Penal laws -[2018-02-13T00:31:09.201] [INFO] cheese - inserting 1000 documents. first: Category:2009 Brazilian television series endings and last: Edmund Moy -[2018-02-13T00:31:09.230] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:31:09.235] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:31:09.259] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:31:09.421] [INFO] cheese - inserting 1000 documents. first: Artillery train and last: Mirela Nichita-Pasca -[2018-02-13T00:31:09.451] [INFO] cheese - inserting 1000 documents. first: File:Helmet rear view mirror.JPG and last: Ma Nishtanah -[2018-02-13T00:31:09.480] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:31:09.514] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:09.532] [INFO] cheese - inserting 1000 documents. first: Pierre Dubois Davaugour and last: File:Legwraps.JPG -[2018-02-13T00:31:09.572] [INFO] cheese - inserting 1000 documents. first: Anaebena and last: Category:2010–12 Algerian protests -[2018-02-13T00:31:09.613] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:31:09.650] [INFO] cheese - inserting 1000 documents. first: Arrouya and last: Wikipedia:Articles for deletion/Muhamet Kyçyku (Çami) -[2018-02-13T00:31:09.670] [INFO] cheese - inserting 1000 documents. first: Kenghkam and last: Gumpoldskirchener Spätrot -[2018-02-13T00:31:09.716] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:31:09.724] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:09.778] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:31:09.920] [INFO] cheese - inserting 1000 documents. first: C elegantissimum and last: Category:Tobacconists -[2018-02-13T00:31:09.960] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:31:10.017] [INFO] cheese - inserting 1000 documents. first: Her Best Move and last: Chichester Senior High School -[2018-02-13T00:31:10.067] [INFO] cheese - inserting 1000 documents. first: Frenchay, Bristol and last: Controlled drug -[2018-02-13T00:31:10.075] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:10.113] [INFO] cheese - inserting 1000 documents. first: Category:People of the 2010–12 Algerian protests and last: Wikipedia:Articles for deletion/BMW 2 Series -[2018-02-13T00:31:10.129] [INFO] cheese - inserting 1000 documents. first: Lisbon Strategy and last: Isuzu Motors -[2018-02-13T00:31:10.142] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:31:10.162] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:31:10.190] [INFO] cheese - inserting 1000 documents. first: Ruth Gerson and last: File:Oozumoutamashiisfc.jpg -[2018-02-13T00:31:10.211] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:31:10.214] [INFO] cheese - inserting 1000 documents. first: Tortkol, Uzbekistan and last: Assistant Principal (university) -[2018-02-13T00:31:10.274] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:31:10.320] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:31:10.364] [INFO] cheese - inserting 1000 documents. first: Template:Fbml manager and last: Ennen aamunkoittoo -[2018-02-13T00:31:10.419] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:31:10.571] [INFO] cheese - inserting 1000 documents. first: Criticom II and last: Rory Hayes (t.v character) -[2018-02-13T00:31:10.624] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:31:10.679] [INFO] cheese - inserting 1000 documents. first: St Peter and All Souls, Peterborough and last: Private Odartey Lamptey -[2018-02-13T00:31:10.707] [INFO] cheese - inserting 1000 documents. first: Janez Puh and last: Paul Stapfer -[2018-02-13T00:31:10.760] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:31:10.792] [INFO] cheese - inserting 1000 documents. first: Ōzumō Spirit and last: Stadiums in Canada -[2018-02-13T00:31:10.801] [INFO] cheese - inserting 1000 documents. first: AIDS origin and last: Wikipedia:WikiProject Vital Articles/Peer review -[2018-02-13T00:31:10.852] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:31:10.925] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:10.936] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:31:11.069] [INFO] cheese - inserting 1000 documents. first: Portal:South Korea/Did you know/102 and last: Wikipedia:5 Millionth Article Message -[2018-02-13T00:31:11.130] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:31:11.272] [INFO] cheese - inserting 1000 documents. first: Template:Swiftsure class submarine and last: Voiceless labialized velar approximant -[2018-02-13T00:31:11.316] [INFO] cheese - inserting 1000 documents. first: Jerrahi-Halveti and last: Category:Taekwondo in China -[2018-02-13T00:31:11.364] [INFO] cheese - inserting 1000 documents. first: The Olive Tree and last: Vanessa Grigoriadis -[2018-02-13T00:31:11.366] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T00:31:11.404] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:31:11.418] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Dragoj and last: Newark Chornomorska Sitch -[2018-02-13T00:31:11.459] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:31:11.477] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:31:11.487] [INFO] cheese - inserting 1000 documents. first: James Richard Dacres (Royal Navy officer, born 1749) and last: Category:18th-century explorers -[2018-02-13T00:31:11.552] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:31:11.636] [INFO] cheese - inserting 1000 documents. first: Joe Borchard and last: Gadsby's Tavern -[2018-02-13T00:31:11.640] [INFO] cheese - inserting 1000 documents. first: File:Max Carey (1912 baseball card).jpg and last: File:Official poster of MDNJK.jpg -[2018-02-13T00:31:11.712] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:31:11.718] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:31:11.865] [INFO] cheese - inserting 1000 documents. first: File:Administrators' noticeboard.png and last: File:Barcan-post-family-1906.gif -[2018-02-13T00:31:11.905] [INFO] cheese - inserting 1000 documents. first: 20th Century Fox Video (1982 Company) and last: Category:Constituencies of Hong Kong Legislative Council -[2018-02-13T00:31:11.914] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:31:11.962] [INFO] cheese - inserting 1000 documents. first: Category:19th-century explorers and last: Wikipedia:Version 1.0 Editorial Team/National Register of Historic Places articles by quality/44 -[2018-02-13T00:31:11.973] [INFO] cheese - inserting 1000 documents. first: Category:Incompatible parameters in rail line template and last: Category:1582 in Russia -[2018-02-13T00:31:11.974] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:31:12.024] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:31:12.084] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:31:12.298] [INFO] cheese - inserting 1000 documents. first: Cameron Donlad and last: Dallas (TV show) -[2018-02-13T00:31:12.351] [INFO] cheese - inserting 1000 documents. first: Spring plan and last: Live cattle trade -[2018-02-13T00:31:12.415] [INFO] cheese - inserting 1000 documents. first: Voiceless labiodental fricative and last: Spiritual Five -[2018-02-13T00:31:12.420] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:31:12.418] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:31:12.507] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T00:31:12.543] [INFO] cheese - inserting 1000 documents. first: Cavendish University and last: File:MPSJHS Logo.png -[2018-02-13T00:31:12.558] [INFO] cheese - inserting 1000 documents. first: Charles Chester (cricketer) and last: H-p filter -[2018-02-13T00:31:12.589] [INFO] cheese - inserting 1000 documents. first: Toumazou v. Republic of Turkey and last: Mountain States Telephone and Telegraph Exchange Building -[2018-02-13T00:31:12.596] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:31:12.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jobs in Nigeria and last: Minuscule 178 -[2018-02-13T00:31:12.620] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:31:12.652] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:31:12.669] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:31:12.811] [INFO] cheese - inserting 1000 documents. first: Bahar Begum and last: Matthew Wright (basketball) -[2018-02-13T00:31:12.867] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:12.999] [INFO] cheese - inserting 1000 documents. first: Malonic aciduria and last: Huey P. Long Bridge (New Orleans) -[2018-02-13T00:31:13.039] [INFO] cheese - inserting 1000 documents. first: St John's Church, Wolverhampton and last: Live at Chastain Park -[2018-02-13T00:31:13.040] [INFO] cheese - inserting 1000 documents. first: Koko Kovacs and last: Accius (disambiguation) -[2018-02-13T00:31:13.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Durvexity and last: Category:2nd-century Roman usurpers -[2018-02-13T00:31:13.074] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:31:13.081] [INFO] cheese - inserting 1000 documents. first: Bastioides and last: Traminer Epice -[2018-02-13T00:31:13.090] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:31:13.098] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:31:13.130] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:13.167] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:31:13.264] [INFO] cheese - inserting 1000 documents. first: Lake Manicouagan and last: The Integral Trees -[2018-02-13T00:31:13.372] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:31:13.381] [INFO] cheese - inserting 1000 documents. first: Category:Finite automata and last: Nisith Ranjan Ray -[2018-02-13T00:31:13.532] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:31:13.585] [INFO] cheese - inserting 1000 documents. first: Yuhei Sato (footballer) and last: Arkivet (Kristiansand) -[2018-02-13T00:31:13.594] [INFO] cheese - inserting 1000 documents. first: East of Chicago Pizza and last: Excelsior (wood wool) -[2018-02-13T00:31:13.610] [INFO] cheese - inserting 1000 documents. first: H. K. Primary School and last: LMO -[2018-02-13T00:31:13.643] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:13.692] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:13.709] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:31:13.761] [INFO] cheese - inserting 1000 documents. first: Traminer Rosa and last: Category:Houses in Culpeper County, Virginia -[2018-02-13T00:31:13.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-02-06/Features and admins and last: K. 111 -[2018-02-13T00:31:13.818] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:31:13.852] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:31:14.112] [INFO] cheese - inserting 1000 documents. first: Songs and Other Things and last: List of saltpeter works in Tarapacá and Antofagasta -[2018-02-13T00:31:14.133] [INFO] cheese - inserting 1000 documents. first: Vytautas Vasiliauskas and last: List of Padma Bhushan Award recipients (1960–1969) -[2018-02-13T00:31:14.149] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:14.176] [INFO] cheese - inserting 1000 documents. first: Sarah Borges and the Broken Singles and last: Ricardo Montero Duque -[2018-02-13T00:31:14.189] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:31:14.212] [INFO] cheese - inserting 1000 documents. first: 1947-48 Basketball Association of America season and last: Agnes Tachyon -[2018-02-13T00:31:14.231] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:31:14.272] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:31:14.277] [INFO] cheese - inserting 1000 documents. first: Category:Places of worship in County Monaghan and last: Palakkulam -[2018-02-13T00:31:14.292] [INFO] cheese - inserting 1000 documents. first: Jean-Charles Lapierre and last: Vaughn Monroe -[2018-02-13T00:31:14.331] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:31:14.355] [INFO] cheese - inserting 1000 documents. first: The Most Holy Tablet and last: Advisory Committee on Human Radiation Experiments -[2018-02-13T00:31:14.386] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:31:14.449] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:31:14.517] [INFO] cheese - inserting 1000 documents. first: Hasanabad-e Olya, Kerman and last: Category:1853 establishments in Missouri -[2018-02-13T00:31:14.604] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:14.681] [INFO] cheese - inserting 1000 documents. first: Luise Henriette von Oranien and last: Waterfall Country (Wales) -[2018-02-13T00:31:14.707] [INFO] cheese - inserting 1000 documents. first: File:2011-World-Series.svg and last: Category:People from Sheikhupura -[2018-02-13T00:31:14.712] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:14.757] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:31:14.772] [INFO] cheese - inserting 1000 documents. first: Qussey and last: Bahia Colonet, Baja California -[2018-02-13T00:31:14.826] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:31:14.869] [INFO] cheese - inserting 1000 documents. first: Thanippara and last: Les Rougons Macquart -[2018-02-13T00:31:14.952] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:31:15.001] [INFO] cheese - inserting 1000 documents. first: Juzuiyeh, Baft and last: EC 2.4.1.268 -[2018-02-13T00:31:15.091] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:15.322] [INFO] cheese - inserting 1000 documents. first: Category:Carboniferous insects and last: Valuation and Valuers -[2018-02-13T00:31:15.353] [INFO] cheese - inserting 1000 documents. first: Category:Paralympic swimmers of Trinidad and Tobago and last: List of Code Lyoko episodes (Season 2) -[2018-02-13T00:31:15.366] [INFO] cheese - inserting 1000 documents. first: Wallis and futana and last: Readlyn -[2018-02-13T00:31:15.418] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:31:15.433] [INFO] cheese - inserting 1000 documents. first: Electoral history of Gholam-Ali Haddad-Adel and last: Category:Nigerian women journalists -[2018-02-13T00:31:15.447] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:31:15.489] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T00:31:15.516] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:31:15.579] [INFO] cheese - inserting 1000 documents. first: Ggs (gene) and last: District of Leominster -[2018-02-13T00:31:15.608] [INFO] cheese - inserting 1000 documents. first: Les Rougons-Macquart and last: Category:Book-Class Animation articles of Bottom-importance -[2018-02-13T00:31:15.633] [INFO] cheese - inserting 1000 documents. first: 1984-85 American Hockey League season and last: USB-6008 -[2018-02-13T00:31:15.677] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:31:15.686] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:31:15.734] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:31:15.884] [INFO] cheese - inserting 1000 documents. first: .guitars and last: Category:Bulgarian women architects -[2018-02-13T00:31:15.931] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:31:16.036] [INFO] cheese - inserting 1000 documents. first: Kui Xing and last: Category:Mongolian martial artists -[2018-02-13T00:31:16.054] [INFO] cheese - inserting 1000 documents. first: Leominster district and last: Hall's Theory of encoding and decoding -[2018-02-13T00:31:16.087] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:31:16.092] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:31:16.106] [INFO] cheese - inserting 1000 documents. first: Category:Redirect-Class Animation articles of Bottom-importance and last: Brain-to-body size -[2018-02-13T00:31:16.132] [INFO] cheese - inserting 1000 documents. first: Ployes and last: Monochromatic Stains -[2018-02-13T00:31:16.177] [INFO] cheese - inserting 1000 documents. first: Category:Burkinabé football referees and last: File:Bring radicals cartoon.svg -[2018-02-13T00:31:16.181] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:31:16.223] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:31:16.244] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:31:16.320] [INFO] cheese - inserting 1000 documents. first: Post-tensioned concrete and last: Plon -[2018-02-13T00:31:16.332] [INFO] cheese - inserting 1000 documents. first: Category:77 BC births and last: Laws of the 16th Congress of the Philippines -[2018-02-13T00:31:16.383] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:31:16.426] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:31:16.498] [INFO] cheese - inserting 1000 documents. first: Elisabeth Gording and last: Afrikan P. Bogaewsky -[2018-02-13T00:31:16.572] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:31:16.599] [INFO] cheese - inserting 1000 documents. first: Mikhail Pashnin and last: Wikipedia:Requests for feedback/2010 December 29 -[2018-02-13T00:31:16.623] [INFO] cheese - inserting 1000 documents. first: Sunderland AFC Women and last: Eye Jewellery -[2018-02-13T00:31:16.646] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:31:16.682] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:31:16.729] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marquis de Piro and last: Saroj Nalini Dutta -[2018-02-13T00:31:16.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Art/US-UK/Jewish Museum rules/list and last: Trey (The OC) -[2018-02-13T00:31:16.786] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:31:16.816] [INFO] cheese - inserting 1000 documents. first: List of most viewed online videos in the first 24 hours and last: Jerome Kass -[2018-02-13T00:31:16.842] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:31:16.859] [INFO] cheese - inserting 1000 documents. first: 1967–68 Atlantic Coast Conference men's basketball season and last: Haplogroup G-M201 (Y-DNA) -[2018-02-13T00:31:16.870] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:16.902] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:31:17.001] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2010-12-27 and last: Category:1860s in Brazil -[2018-02-13T00:31:17.056] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:31:17.122] [INFO] cheese - inserting 1000 documents. first: Fresh Verdicts on Joan of Arc and last: Route 230 (Oregon) -[2018-02-13T00:31:17.188] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:17.230] [INFO] cheese - inserting 1000 documents. first: Retroactive interference and last: Transylvania County -[2018-02-13T00:31:17.247] [INFO] cheese - inserting 1000 documents. first: Dave Hatton and last: Small-toothed long-eared bat -[2018-02-13T00:31:17.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Phipps Conservatory and Botanical Gardens/archive1 and last: 2014 World Field Archery Championships -[2018-02-13T00:31:17.297] [INFO] cheese - inserting 1000 documents. first: Template:TOC US states/doc and last: Jared Homan -[2018-02-13T00:31:17.304] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Microsoft/featured content and last: Chevrolet Impala Limited -[2018-02-13T00:31:17.312] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:31:17.316] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:17.329] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:17.398] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:17.408] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:17.536] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Intelligent design articles by quality statistics and last: Wikipedia:Articles for deletion/Buster Baxter -[2018-02-13T00:31:17.631] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:31:18.052] [INFO] cheese - inserting 1000 documents. first: Agnès Souret and last: Paenibacillus tylopili -[2018-02-13T00:31:18.059] [INFO] cheese - inserting 1000 documents. first: 1912 Republican National Convention and last: Gbits/sec -[2018-02-13T00:31:18.089] [INFO] cheese - inserting 1000 documents. first: Template:Barisal Bulls current squad and last: Category:1985 establishments in Cape Verde -[2018-02-13T00:31:18.101] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:31:18.114] [INFO] cheese - inserting 1000 documents. first: Nyctophilus microdon and last: Big-eared pipistrelle -[2018-02-13T00:31:18.151] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:31:18.168] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:31:18.172] [INFO] cheese - inserting 1000 documents. first: Pressure Reducing Valve and last: Victoria Zhilinskayte -[2018-02-13T00:31:18.203] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:31:18.206] [INFO] cheese - inserting 1000 documents. first: Portal:Industrial music/Selected picture/3 and last: Category:Actors from Montana -[2018-02-13T00:31:18.258] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:31:18.290] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:31:18.463] [INFO] cheese - inserting 1000 documents. first: Bulkington and last: Local Authority Accommodation -[2018-02-13T00:31:18.553] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T00:31:18.606] [INFO] cheese - inserting 1000 documents. first: GByte and last: André Danican Philidor -[2018-02-13T00:31:18.640] [INFO] cheese - inserting 1000 documents. first: Blue-hooded Euphonia and last: Template:AustTRFK6.1 -[2018-02-13T00:31:18.657] [INFO] cheese - inserting 1000 documents. first: List of sugar mills in Queensland and last: Address at Rice University on the Nation's Space Effort -[2018-02-13T00:31:18.703] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:31:18.706] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:18.794] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:31:18.823] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Nebraska and last: Marcelo Ramiro Camacho -[2018-02-13T00:31:18.841] [INFO] cheese - inserting 1000 documents. first: Play Online Viewer and last: Category:Stub-Class The X Factor articles -[2018-02-13T00:31:18.858] [INFO] cheese - inserting 1000 documents. first: Hypsugo macrotis and last: 1996 NHL Eastern Conference Finals -[2018-02-13T00:31:18.948] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:31:18.968] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:31:18.973] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:31:19.186] [INFO] cheese - inserting 1000 documents. first: Bajatey Raho and last: West Derbyshire by-election, 1900 -[2018-02-13T00:31:19.247] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:19.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Collaboration of the week/Child-raising and last: Glabellar reflex -[2018-02-13T00:31:19.355] [INFO] cheese - inserting 1000 documents. first: 1962 New York Mets season and last: Dune hairy-footed gerbil -[2018-02-13T00:31:19.388] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Rogov and last: Zinc Rocks -[2018-02-13T00:31:19.402] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:31:19.428] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:31:19.452] [INFO] cheese - inserting 1000 documents. first: Temporary deafness and last: Template:Gmina Kolsko -[2018-02-13T00:31:19.476] [INFO] cheese - inserting 1000 documents. first: Address at Rice University on the Nations Space Effort and last: Jerome Zeringue -[2018-02-13T00:31:19.477] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:31:19.520] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:31:19.556] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:31:19.602] [INFO] cheese - inserting 1000 documents. first: Category:2000 in Italian sport and last: Category:1983–84 Atlantic Coast Conference men's basketball season -[2018-02-13T00:31:19.644] [INFO] cheese - inserting 1000 documents. first: Ooshima Naoto and last: HMS Intrepid -[2018-02-13T00:31:19.656] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:31:19.743] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T00:31:19.871] [INFO] cheese - inserting 1000 documents. first: Gerbillurus tytonis and last: Niviventer cremoriventer -[2018-02-13T00:31:19.946] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:19.977] [INFO] cheese - inserting 1000 documents. first: Joonas Rask and last: First Brigade of the Polish Legions -[2018-02-13T00:31:20.032] [INFO] cheese - inserting 1000 documents. first: Great Bircham and last: Category:Salesian monasteries -[2018-02-13T00:31:20.038] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:20.040] [INFO] cheese - inserting 1000 documents. first: Maksud Karimov and last: Category:Yukon territorial election results by riding -[2018-02-13T00:31:20.042] [INFO] cheese - inserting 1000 documents. first: Snehansu Kanta Acharya and last: Evan Mervyn Davies -[2018-02-13T00:31:20.085] [INFO] cheese - inserting 1000 documents. first: David F. Bradford and last: Keep it all -[2018-02-13T00:31:20.089] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:31:20.106] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:31:20.121] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:31:20.150] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:31:20.330] [INFO] cheese - inserting 1000 documents. first: Oldfield white-bellied rat and last: Peruvian cotton rat -[2018-02-13T00:31:20.425] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:31:20.426] [INFO] cheese - inserting 1000 documents. first: Larkrise to Candleford and last: Der 18te Brumaire Des Louis Napoleon -[2018-02-13T00:31:20.473] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:31:20.527] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after waterfalls and last: Category:Nuclear missiles of the Cold War -[2018-02-13T00:31:20.625] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:31:20.630] [INFO] cheese - inserting 1000 documents. first: Ticker tape and last: North Carolina Agriculture and Technology University -[2018-02-13T00:31:20.698] [INFO] cheese - inserting 1000 documents. first: Annette Akroyd and last: Palazzo Curti Valmarana -[2018-02-13T00:31:20.761] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:20.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Timothy Solichin and last: Korzeniowski -[2018-02-13T00:31:20.805] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T00:31:20.843] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:31:20.850] [INFO] cheese - inserting 1000 documents. first: Portal:Norway/DYK/81 and last: Meshach Dean -[2018-02-13T00:31:20.851] [INFO] cheese - inserting 1000 documents. first: Category:Former subdivisions of Wales and last: Template:404 -[2018-02-13T00:31:20.933] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:20.996] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:31:21.125] [INFO] cheese - inserting 1000 documents. first: Peoples Will and last: Category:Apostolic Nuncios to South Korea -[2018-02-13T00:31:21.156] [INFO] cheese - inserting 1000 documents. first: Category:1718 establishments in the Thirteen Colonies and last: 1970 European/South American Cup -[2018-02-13T00:31:21.168] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:31:21.226] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:31:21.291] [INFO] cheese - inserting 1000 documents. first: Confidential birth and last: .sb file -[2018-02-13T00:31:21.339] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:31:21.419] [INFO] cheese - inserting 1000 documents. first: Houston-Stafford Electric and last: Citi Movement -[2018-02-13T00:31:21.507] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:31:21.565] [INFO] cheese - inserting 1000 documents. first: Henselt and last: WQO -[2018-02-13T00:31:21.593] [INFO] cheese - inserting 1000 documents. first: Bug Dome and last: Category:Polo in Asia -[2018-02-13T00:31:21.620] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:31:21.625] [INFO] cheese - inserting 1000 documents. first: 2011 Copa Centroamericana and last: Wikipedia:Sockpuppet investigations/Nimbley6/Archive -[2018-02-13T00:31:21.633] [INFO] cheese - inserting 1000 documents. first: Bobo doll experiment and last: Bubble -[2018-02-13T00:31:21.656] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:21.710] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:31:21.712] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Did you know/January 2011 and last: Block of a ring -[2018-02-13T00:31:21.732] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:31:21.889] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:31:21.906] [INFO] cheese - inserting 1000 documents. first: Category:Television series based on the novels of Farhat Ishtiaq and last: Historical Malacca City Council -[2018-02-13T00:31:21.989] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:31:22.011] [INFO] cheese - inserting 1000 documents. first: Trevor Eastwood and last: Eschweilera venezuelica -[2018-02-13T00:31:22.085] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:31:22.221] [INFO] cheese - inserting 1000 documents. first: File:MerleDixon.jpg and last: Bays of the Philipines -[2018-02-13T00:31:22.301] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:31:22.448] [INFO] cheese - inserting 1000 documents. first: Dagen (Norwegian newspaper) and last: Mos:dp -[2018-02-13T00:31:22.488] [INFO] cheese - inserting 1000 documents. first: The Shepheardes' Calender and last: Wareo -[2018-02-13T00:31:22.501] [INFO] cheese - inserting 1000 documents. first: Statue of The Earl Kitchener, London and last: Khun Phawo National Park -[2018-02-13T00:31:22.519] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:31:22.544] [INFO] cheese - inserting 1000 documents. first: Grias colombiana and last: Gobio -[2018-02-13T00:31:22.553] [INFO] cheese - inserting 1000 documents. first: Władysław of Legnica and last: Alexander Mikhailovich -[2018-02-13T00:31:22.594] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:31:22.599] [INFO] cheese - inserting 1000 documents. first: Marginal Utility and last: Beaches (film) -[2018-02-13T00:31:22.602] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:31:22.642] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:31:22.661] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:31:22.744] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:31:23.031] [INFO] cheese - inserting 1000 documents. first: Commando: A One Man Army and last: Salisbury, MD-DE MSA -[2018-02-13T00:31:23.128] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:31:23.203] [INFO] cheese - inserting 1000 documents. first: Victor emanuel range and last: List of U.S. communities with Hispanic majority populations in the 2010 census -[2018-02-13T00:31:23.208] [INFO] cheese - inserting 1000 documents. first: File:John P. 'Clipper' Smith.jpg and last: File:BlackstreetJoySingle.jpg -[2018-02-13T00:31:23.225] [INFO] cheese - inserting 1000 documents. first: Romanogobio benacensis and last: Federal Highway 112 -[2018-02-13T00:31:23.261] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:31:23.272] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:23.298] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:31:23.336] [INFO] cheese - inserting 1000 documents. first: Ober Engadin and last: The San Fransisco Gate -[2018-02-13T00:31:23.351] [INFO] cheese - inserting 1000 documents. first: File:Play Dead - The First Flower (1983).gif and last: Basilica di San Pietro in Vincoli -[2018-02-13T00:31:23.413] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:31:23.483] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:31:23.779] [INFO] cheese - inserting 1000 documents. first: I Don't Want to See You Like This and last: Gerald Abrams -[2018-02-13T00:31:23.797] [INFO] cheese - inserting 1000 documents. first: James Archibald St.George Fitzwarenne Despencer-Robertson and last: Tepui goldenthroat -[2018-02-13T00:31:23.824] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:31:23.857] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:23.883] [INFO] cheese - inserting 1000 documents. first: The Fall of the House of Usher and last: Kingdom of Spain -[2018-02-13T00:31:23.901] [INFO] cheese - inserting 1000 documents. first: List of Sket Dance chapters and last: Category:Medical Subject Headings -[2018-02-13T00:31:23.958] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:31:23.962] [INFO] cheese - inserting 1000 documents. first: Category:2008 establishments in Kosovo and last: Gelechia algeriella -[2018-02-13T00:31:24.025] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T00:31:24.053] [INFO] cheese - inserting 1000 documents. first: Template:Malkangiri district and last: Wikipedia:Special:MostLinkedPages -[2018-02-13T00:31:24.063] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:31:24.095] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:31:24.251] [INFO] cheese - inserting 1000 documents. first: Weinstein Co and last: Penrhyndeudraeth railway station -[2018-02-13T00:31:24.255] [INFO] cheese - inserting 1000 documents. first: File:Rooftop-album-by-ulrik-munther.jpg and last: Category:Wikipedia sockpuppets of Alifriend7 -[2018-02-13T00:31:24.297] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:31:24.313] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:31:24.371] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RedSpotGames and last: Tamás Kovács (fencer) -[2018-02-13T00:31:24.399] [INFO] cheese - inserting 1000 documents. first: Polytmus milleri and last: Seps StriÉ Du Maroc -[2018-02-13T00:31:24.420] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:24.469] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:31:24.549] [INFO] cheese - inserting 1000 documents. first: Template:SJFA North Division Two and last: Honkytonks And Heartaches -[2018-02-13T00:31:24.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/London Burning Book and last: Template:Attached KML/Alabama State Route 179 -[2018-02-13T00:31:24.590] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:31:24.592] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:31:24.674] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Vrave98 and last: Iron Gates (Danube) -[2018-02-13T00:31:24.715] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:31:24.777] [INFO] cheese - inserting 1000 documents. first: Tegnsprak and last: Edward Rowlands -[2018-02-13T00:31:24.787] [INFO] cheese - inserting 1000 documents. first: EslizÓN TridÁCtilo Del Atlas and last: Megalurus pryeri -[2018-02-13T00:31:24.806] [INFO] cheese - inserting 1000 documents. first: St. George Rotunda and last: Bicycle Race -[2018-02-13T00:31:24.818] [INFO] cheese - inserting 1000 documents. first: Lieutenant Esmee Pascal and last: Wikipedia:Redirects for discussion/Log/2011 January 2 -[2018-02-13T00:31:24.823] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:31:24.847] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:31:24.860] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:31:24.872] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:25.091] [INFO] cheese - inserting 1000 documents. first: Honkytonks & Heartaches and last: Genroku akō jiken -[2018-02-13T00:31:25.107] [INFO] cheese - inserting 1000 documents. first: Goran Marić (Volleyball player) and last: Category:1984–85 Pacific-10 Conference men's basketball season -[2018-02-13T00:31:25.114] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/uol.com and last: Aholibah Underwing -[2018-02-13T00:31:25.145] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:25.166] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:31:25.201] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:25.275] [INFO] cheese - inserting 1000 documents. first: Route 65 (Missouri pre-1926) and last: Choir of St John's College, Cambridge -[2018-02-13T00:31:25.317] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:31:25.382] [INFO] cheese - inserting 1000 documents. first: Dead Men Tell and last: File:HRHDanielleSteel.jpg -[2018-02-13T00:31:25.431] [INFO] cheese - inserting 1000 documents. first: Long Lee and last: Oswaldo de Andrade -[2018-02-13T00:31:25.442] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:31:25.508] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:31:25.510] [INFO] cheese - inserting 1000 documents. first: O.W. Holmes and last: Juri Schlünz -[2018-02-13T00:31:25.528] [INFO] cheese - inserting 1000 documents. first: Khajur and last: Alice Creek Historic District -[2018-02-13T00:31:25.547] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:31:25.568] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:31:25.732] [INFO] cheese - inserting 1000 documents. first: George Poe and last: Pathetic Sharks -[2018-02-13T00:31:25.741] [INFO] cheese - inserting 1000 documents. first: Dynamic memory allocation and last: Zionist conspiracy theories regarding the September 11, 2001 Attacks -[2018-02-13T00:31:25.800] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fluoridealert.org and last: Emily Quihampton -[2018-02-13T00:31:25.823] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:25.946] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T00:31:25.948] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:31:26.040] [INFO] cheese - inserting 1000 documents. first: Anatoma africanae and last: Accademia Di Belle Arti, Florence -[2018-02-13T00:31:26.045] [INFO] cheese - inserting 1000 documents. first: Category:1721 disestablishments in Russia and last: Wikipedia:Articles for deletion/Vadym Troyan -[2018-02-13T00:31:26.057] [INFO] cheese - inserting 1000 documents. first: Pakistan vs West Indies ODI Series in 2008-09 and last: Wikipedia:WikiProject Spam/LinkReports/namore.info -[2018-02-13T00:31:26.062] [INFO] cheese - inserting 1000 documents. first: Van morrison and last: Waiter boy -[2018-02-13T00:31:26.089] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:31:26.120] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:31:26.157] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:31:26.155] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:31:26.378] [INFO] cheese - inserting 1000 documents. first: Order of the golden horseshoe and last: Binoy Basu -[2018-02-13T00:31:26.426] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:31:26.445] [INFO] cheese - inserting 1000 documents. first: Massachusetts Library System and last: File:International Journal of Hematology.jpg -[2018-02-13T00:31:26.517] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:31:26.612] [INFO] cheese - inserting 1000 documents. first: The Gate Thief and last: St. Crispin's Senior Secondary School -[2018-02-13T00:31:26.631] [INFO] cheese - inserting 1000 documents. first: Government Degree College, Bandipora and last: Wikipedia:WikiProject Spam/Local/sceneonhai.wordpress.com -[2018-02-13T00:31:26.667] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:31:26.671] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Valued picture candidates/Nixon's Departure and last: Kerem Özyeğen -[2018-02-13T00:31:26.673] [INFO] cheese - inserting 1000 documents. first: Bestvina and last: Nenenui -[2018-02-13T00:31:26.679] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:31:26.727] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:31:26.730] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:31:26.809] [INFO] cheese - inserting 1000 documents. first: Chico Carrasquel and last: Foreign terrorist organizations -[2018-02-13T00:31:26.882] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:31:26.907] [INFO] cheese - inserting 1000 documents. first: Smitherman and last: Ctenobrycon spilurus -[2018-02-13T00:31:26.909] [INFO] cheese - inserting 1000 documents. first: Black-spotted palm viper and last: Milovan Sikimic -[2018-02-13T00:31:26.958] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:31:26.956] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:27.066] [INFO] cheese - inserting 1000 documents. first: José Antonio Plaza and last: Wikipedia:Miscellany for deletion/User:Islamicdaayee -[2018-02-13T00:31:27.141] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:31:27.322] [INFO] cheese - inserting 1000 documents. first: Template:Fats Domino and last: Category:Articles slanted towards recent events from November 2015 -[2018-02-13T00:31:27.365] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:31:27.388] [INFO] cheese - inserting 1000 documents. first: Paul O'Duffy and last: POME -[2018-02-13T00:31:27.405] [INFO] cheese - inserting 1000 documents. first: Cut offs and last: Pavel Andreyevich Gerdt -[2018-02-13T00:31:27.447] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:31:27.456] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:31:27.641] [INFO] cheese - inserting 1000 documents. first: Mario Und Der Zauberer and last: Toras Chaim (Denver) -[2018-02-13T00:31:27.684] [INFO] cheese - inserting 1000 documents. first: Yazdanabad, Kerman and last: Kenneth Grenville Gee -[2018-02-13T00:31:27.704] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:31:27.727] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:31:27.766] [INFO] cheese - inserting 1000 documents. first: Target (2004 film) and last: Mau rakau -[2018-02-13T00:31:27.805] [INFO] cheese - inserting 1000 documents. first: Moskow and last: Barnstable County -[2018-02-13T00:31:27.841] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:31:27.909] [INFO] cheese - inserting 1000 documents. first: Category:Articles that may contain original research from November 2015 and last: File:Majayjay Flag.jpg -[2018-02-13T00:31:27.924] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:31:27.958] [INFO] cheese - inserting 1000 documents. first: Elizaveta Pavlovna Gerdt and last: Postman's sort -[2018-02-13T00:31:28.014] [INFO] cheese - inserting 1000 documents. first: Lists of American Civil War Regiments by State and last: Paweł Midloch -[2018-02-13T00:31:28.018] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:28.036] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:28.082] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:31:28.131] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Atban3000/Archive and last: David Andrews (director) -[2018-02-13T00:31:28.163] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:28.171] [INFO] cheese - inserting 1000 documents. first: First Sylow Theorem and last: PS Prince Arthur -[2018-02-13T00:31:28.234] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:28.576] [INFO] cheese - inserting 1000 documents. first: File:666 Ways to Love.jpg and last: Misfits Box Set -[2018-02-13T00:31:28.653] [INFO] cheese - inserting 1000 documents. first: Alaipayuthey (soundtrack) and last: City of Greenville -[2018-02-13T00:31:28.655] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:31:28.729] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:31:28.737] [INFO] cheese - inserting 1000 documents. first: Indira Priyadarshini Vrikshamitra and last: Polikarpov MR-1 -[2018-02-13T00:31:28.758] [INFO] cheese - inserting 1000 documents. first: Djenné Cercle and last: Colonia, Yap, FSM -[2018-02-13T00:31:28.768] [INFO] cheese - inserting 1000 documents. first: Glenmont, New York and last: Inside heel hook -[2018-02-13T00:31:28.777] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:31:28.864] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:31:28.912] [INFO] cheese - inserting 1000 documents. first: Barnes County and last: STS-83 -[2018-02-13T00:31:28.952] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:31:29.045] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:31:29.136] [INFO] cheese - inserting 1000 documents. first: István Zsolt and last: Tufts Med -[2018-02-13T00:31:29.228] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:31:29.278] [INFO] cheese - inserting 1000 documents. first: Rigabad, Fahraj and last: Tintina (rock) -[2018-02-13T00:31:29.406] [INFO] cheese - inserting 1000 documents. first: John Hegre and last: Category:Userspace drafts from November 2008 -[2018-02-13T00:31:29.359] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:31:29.483] [INFO] cheese - inserting 1000 documents. first: Terry Ragon and last: John La Touche -[2018-02-13T00:31:29.492] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:31:29.508] [INFO] cheese - inserting 1000 documents. first: Now! (France Joli album) and last: Moniruzzaman (Rajshahi Division cricketer) -[2018-02-13T00:31:29.570] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:31:29.615] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:31:29.831] [INFO] cheese - inserting 1000 documents. first: Guiding Light (1952-1959) and last: Wuky -[2018-02-13T00:31:29.902] [INFO] cheese - inserting 1000 documents. first: Unwelcome and last: Brayan Perea -[2018-02-13T00:31:29.915] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T00:31:29.973] [INFO] cheese - inserting 1000 documents. first: Furmint and last: Mūlamadhyamakakārikā -[2018-02-13T00:31:29.984] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:31:30.031] [INFO] cheese - inserting 1000 documents. first: Baruch Herzfeld and last: Gökçehatipler, Çaycuma -[2018-02-13T00:31:30.058] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T00:31:30.089] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:31:30.093] [INFO] cheese - inserting 1000 documents. first: Ys Strategy and last: Caroline Addyman -[2018-02-13T00:31:30.160] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:31:30.226] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/spazure and last: Members of the Victorian Legislative Council, 1982–1985 -[2018-02-13T00:31:30.270] [INFO] cheese - inserting 1000 documents. first: Guajiro-Spanish and last: Category:Net laying ships of the Royal Navy -[2018-02-13T00:31:30.273] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:31:30.310] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Tommystar and last: Category:Maldivian expatriates in Saudi Arabia -[2018-02-13T00:31:30.320] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:31:30.394] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T00:31:30.508] [INFO] cheese - inserting 1000 documents. first: List of cities, towns, and villages in Hungary (N-Z) and last: File:LBHS.jpg -[2018-02-13T00:31:30.526] [INFO] cheese - inserting 1000 documents. first: Yume Zyûya and last: Category:Netherlands–Tunisia relations -[2018-02-13T00:31:30.536] [INFO] cheese - inserting 1000 documents. first: Template:FC Zürich managers and last: File:Stella Mann Logo.png -[2018-02-13T00:31:30.560] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:31:30.566] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:30.594] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:31:30.631] [INFO] cheese - inserting 1000 documents. first: Category:Net laying ships of the Royal Australian Navy and last: Category:1977 in road cycling -[2018-02-13T00:31:30.664] [INFO] cheese - inserting 1000 documents. first: Category:Cambodian artists and last: Head Coaches of the Boston Bruins -[2018-02-13T00:31:30.666] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:31:30.715] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:31:30.734] [INFO] cheese - inserting 1000 documents. first: Anglican Church of Australia and last: Compass variation -[2018-02-13T00:31:30.805] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:31:30.818] [INFO] cheese - inserting 1000 documents. first: Category:Maldivian expatriates and last: Bechéreau SRAP T.7 -[2018-02-13T00:31:30.870] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:30.999] [INFO] cheese - inserting 1000 documents. first: Stratonovich and last: List of mammals in the United States -[2018-02-13T00:31:31.078] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:31:31.107] [INFO] cheese - inserting 1000 documents. first: Lisunov Li-2 and last: Oceans Act of 2000 -[2018-02-13T00:31:31.142] [INFO] cheese - inserting 1000 documents. first: George Koch and last: Pierre de la Brosse -[2018-02-13T00:31:31.183] [INFO] cheese - inserting 1000 documents. first: Elaine D. Kaplan and last: Category:1964–65 in Canadian ice hockey -[2018-02-13T00:31:31.194] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:31:31.286] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:31:31.303] [INFO] cheese - inserting 1000 documents. first: Amy Polumbo and last: Multiscale Mathematics -[2018-02-13T00:31:31.317] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:31.403] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:31:31.763] [INFO] cheese - inserting 1000 documents. first: Moustapha Sohem and last: Fantanile Negre -[2018-02-13T00:31:31.820] [INFO] cheese - inserting 1000 documents. first: EC 2.6.1.63 and last: Waveney Council election, 2004 -[2018-02-13T00:31:31.832] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:31:31.852] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2015 October 26 and last: Wikipedia:Articles for deletion/Center for Public Administration and Policy -[2018-02-13T00:31:31.872] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:31:31.888] [INFO] cheese - inserting 1000 documents. first: 21 Lutetia and last: Sing Lung -[2018-02-13T00:31:31.926] [INFO] cheese - inserting 1000 documents. first: Spring Azure and last: SS Heraklion -[2018-02-13T00:31:31.928] [INFO] cheese - inserting 1000 documents. first: Template:Lorenzo the Elder to Giovanni de' Medici il Popolano and last: Gale Staley -[2018-02-13T00:31:31.932] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:31:31.947] [INFO] cheese - inserting 1000 documents. first: Erg of Bilma and last: 1920 St. Louis Browns season -[2018-02-13T00:31:31.986] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:31:31.999] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:31:32.016] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T00:31:32.036] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:31:32.223] [INFO] cheese - inserting 1000 documents. first: Waveney Council election, 2011 and last: Ballina Stephenites GAA -[2018-02-13T00:31:32.265] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:31:32.381] [INFO] cheese - inserting 1000 documents. first: USONA and last: SS Kilkenny -[2018-02-13T00:31:32.461] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:31:32.469] [INFO] cheese - inserting 1000 documents. first: Bell Records artists and last: Bullet Ants -[2018-02-13T00:31:32.500] [INFO] cheese - inserting 1000 documents. first: EnergySolutions and last: Tormod Kristoffer Hustad -[2018-02-13T00:31:32.538] [INFO] cheese - inserting 1000 documents. first: Stigniţa and last: Category:Pennsylvania elections, 1961 -[2018-02-13T00:31:32.563] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:31:32.613] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:31:32.628] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:31:32.745] [INFO] cheese - inserting 1000 documents. first: Caracciolo-class battleship and last: Putijarra language -[2018-02-13T00:31:32.748] [INFO] cheese - inserting 1000 documents. first: Chéng Lóng and last: Doc Daneeka -[2018-02-13T00:31:32.819] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:31:32.860] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:31:33.069] [INFO] cheese - inserting 1000 documents. first: Ministry of Culture (Syria) and last: Quebec Workers' Socialist Group -[2018-02-13T00:31:33.082] [INFO] cheese - inserting 1000 documents. first: WFP Schools and last: Cameeragal language -[2018-02-13T00:31:33.092] [INFO] cheese - inserting 1000 documents. first: Template:FISA/doc and last: Jakub Hanák -[2018-02-13T00:31:33.109] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:31:33.113] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:31:33.143] [INFO] cheese - inserting 1000 documents. first: File:Leeds Fans Community Benefit Society logo.png and last: Category:16th century BC by country -[2018-02-13T00:31:33.149] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:31:33.151] [INFO] cheese - inserting 1000 documents. first: European Speed Skating Championship and last: Kirby Moorside -[2018-02-13T00:31:33.208] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:31:33.213] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:31:33.435] [INFO] cheese - inserting 1000 documents. first: Wonnarua language and last: Template:Evolution-book-stub -[2018-02-13T00:31:33.473] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:31:33.512] [INFO] cheese - inserting 1000 documents. first: 1930 Newark Tornadoes season and last: List of Poirot episodes -[2018-02-13T00:31:33.545] [INFO] cheese - inserting 1000 documents. first: Nail lichen and last: Niko Nieminen -[2018-02-13T00:31:33.559] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:33.578] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:31:33.642] [INFO] cheese - inserting 1000 documents. first: GM K platform (1975) and last: On An Island -[2018-02-13T00:31:33.669] [INFO] cheese - inserting 1000 documents. first: Glyfada and last: Lancashire and Yorkshire Railway -[2018-02-13T00:31:33.690] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:31:33.753] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:31:33.904] [INFO] cheese - inserting 1000 documents. first: The History of Computers and last: File:Rich Boy Break the Pot.jpg -[2018-02-13T00:31:33.931] [INFO] cheese - inserting 1000 documents. first: Mission sui juris of Drisdale River and last: Bjørn Hoem -[2018-02-13T00:31:33.958] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:33.959] [INFO] cheese - inserting 1000 documents. first: Cuevas de la Araña and last: Template:Lists of Provinces of the Dominican Republic -[2018-02-13T00:31:34.015] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:31:34.042] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:31:34.159] [INFO] cheese - inserting 1000 documents. first: Tamayoa and last: File:Lykke Li - Little Bit alt single cover.jpg -[2018-02-13T00:31:34.253] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:31:34.351] [INFO] cheese - inserting 1000 documents. first: Mp3 surround and last: Indo-Tibetan -[2018-02-13T00:31:34.413] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:31:34.467] [INFO] cheese - inserting 1000 documents. first: Category:B-Class New South Wales articles and last: File:Cold Steel film poster.jpg -[2018-02-13T00:31:34.482] [INFO] cheese - inserting 1000 documents. first: Daemisan and last: Henry Scudamore-Stanhope -[2018-02-13T00:31:34.499] [INFO] cheese - inserting 1000 documents. first: Reconquest of Angola and last: Þjóðskrá -[2018-02-13T00:31:34.550] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:31:34.560] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:31:34.605] [INFO] cheese - inserting 1000 documents. first: Megacraspedus jablonkayi and last: Mein Herz ruft nach dir -[2018-02-13T00:31:34.620] [INFO] cheese - inserting 1000 documents. first: Oxymora and last: Scooter (band) -[2018-02-13T00:31:34.667] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:34.674] [INFO] cheese - batch complete in: 2.637 secs -[2018-02-13T00:31:34.733] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T00:31:34.757] [INFO] cheese - inserting 1000 documents. first: AMAP-ADS Active Protection System and last: Bridgewater Collieries -[2018-02-13T00:31:34.813] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:31:34.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Coat of arms of Western Sahara and last: Category:Illinois elections, 1838 -[2018-02-13T00:31:34.931] [INFO] cheese - inserting 1000 documents. first: Gulf Coast Indians and last: Empire Betsy -[2018-02-13T00:31:35.023] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:31:35.043] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:31:35.061] [INFO] cheese - inserting 1000 documents. first: Quince Orchard High School and last: Wikipedia:Votes for deletion/Loxie & Zoot -[2018-02-13T00:31:35.202] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:31:35.356] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Paleoheterodonta and last: Waco Model EGC-7 -[2018-02-13T00:31:35.411] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:31:35.495] [INFO] cheese - inserting 1000 documents. first: Category:Images for deletion and last: Wikipedia:Articles for deletion/Organization for Human Brain Mapping -[2018-02-13T00:31:35.559] [INFO] cheese - inserting 1000 documents. first: The Gold Dagger for Non-Fiction and last: Wikipedia:WikiProject Spam/LinkReports/go4expert.com -[2018-02-13T00:31:35.577] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:31:35.611] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:31:35.614] [INFO] cheese - inserting 1000 documents. first: Category:Illinois elections, 1842 and last: Alliance for True Democracy -[2018-02-13T00:31:35.696] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:31:35.765] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/Archive28 and last: Our Whole Lives -[2018-02-13T00:31:35.791] [INFO] cheese - inserting 1000 documents. first: John Forrest (Victorian politician) and last: David Auburn -[2018-02-13T00:31:35.814] [INFO] cheese - inserting 1000 documents. first: Waco Model EGC-8 and last: Monashee mountain -[2018-02-13T00:31:35.826] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:31:35.882] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T00:31:35.900] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:35.960] [INFO] cheese - inserting 1000 documents. first: 2007 NRL season results and last: Alexandru Iacob -[2018-02-13T00:31:36.076] [INFO] cheese - batch complete in: 1.402 secs -[2018-02-13T00:31:36.099] [INFO] cheese - inserting 1000 documents. first: Queen of Württemberg and last: Watkins Review -[2018-02-13T00:31:36.183] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:31:36.208] [INFO] cheese - inserting 1000 documents. first: Neurergus microspilotus and last: Wikipedia:Templates for discussion/Log/2013 March 24 -[2018-02-13T00:31:36.271] [INFO] cheese - inserting 1000 documents. first: William Talbot of Kineton and last: Kevin's Hurling club -[2018-02-13T00:31:36.276] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:36.385] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:31:36.552] [INFO] cheese - inserting 1000 documents. first: Freeville and last: Wing turret -[2018-02-13T00:31:36.576] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Quadrigyridae and last: AMET University -[2018-02-13T00:31:36.577] [INFO] cheese - inserting 1000 documents. first: Giovanni Lanza (painter) and last: Category:1963-64 in Welsh rugby union -[2018-02-13T00:31:36.601] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:31:36.605] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:31:36.608] [INFO] cheese - inserting 1000 documents. first: Devonport Navy Base and last: Saskatchewan Highway 43 -[2018-02-13T00:31:36.640] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:31:36.660] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:31:36.801] [INFO] cheese - inserting 1000 documents. first: Paranormal operator and last: Portal:Anglicanism/DYK/25 -[2018-02-13T00:31:36.878] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:31:36.926] [INFO] cheese - inserting 1000 documents. first: Honda Ishiro and last: Infield fly rule -[2018-02-13T00:31:36.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lance Strate and last: File:RasputinaUnknown.jpg -[2018-02-13T00:31:36.939] [INFO] cheese - inserting 1000 documents. first: Category:1963-64 in Scottish rugby union and last: Richard Labonté -[2018-02-13T00:31:36.976] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:31:36.997] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:37.019] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T00:31:37.062] [INFO] cheese - inserting 1000 documents. first: 2011 North Korea national football team results and last: Template:Taxonomy/Stolonoidea -[2018-02-13T00:31:37.107] [INFO] cheese - inserting 1000 documents. first: Star Wars: Episode 4 - A New Hope and last: Php2 -[2018-02-13T00:31:37.121] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:31:37.182] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:31:37.320] [INFO] cheese - inserting 1000 documents. first: Samuel C. Black and last: Gręzawa -[2018-02-13T00:31:37.326] [INFO] cheese - inserting 1000 documents. first: Template:2013 ANZ Championship finals bracket and last: ABC 15 News -[2018-02-13T00:31:37.331] [INFO] cheese - inserting 1000 documents. first: Hypothetical disaster and last: Harry Lionel Shapiro -[2018-02-13T00:31:37.369] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:31:37.378] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:31:37.427] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:31:37.460] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Graptoloidea and last: Category:People from Bint Jbeil District -[2018-02-13T00:31:37.539] [INFO] cheese - inserting 1000 documents. first: Category:1873 establishments in Indiana and last: Ferzikovo railway station -[2018-02-13T00:31:37.575] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:31:37.679] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:31:37.786] [INFO] cheese - inserting 1000 documents. first: Hemmeroids and last: Body Shop (disambiguation) -[2018-02-13T00:31:37.801] [INFO] cheese - inserting 1000 documents. first: Element from decay and last: Wikipedia:Articles for deletion/Totaro Murakami -[2018-02-13T00:31:37.830] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:37.851] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:31:37.867] [INFO] cheese - inserting 1000 documents. first: Jagłowice and last: Bending iron -[2018-02-13T00:31:37.915] [INFO] cheese - inserting 1000 documents. first: Labour Zionism and last: The Crusades -[2018-02-13T00:31:37.921] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:31:37.990] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:31:38.003] [INFO] cheese - inserting 1000 documents. first: Template:1988 in Ukrainian football and last: Wikipedia:Articles for deletion/2015 Lista cu protestele locale/internationale pentru victimele din clubul Colectiv -[2018-02-13T00:31:38.029] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Sudan and last: Category:FA-Class Blu-ray articles -[2018-02-13T00:31:38.046] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:31:38.075] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:31:38.103] [INFO] cheese - inserting 1000 documents. first: Article 48 (Weimar Republic) and last: Florida State Road 406 -[2018-02-13T00:31:38.127] [INFO] cheese - inserting 1000 documents. first: EC 2.7.6.1 and last: Category:Immigration to Vanuatu -[2018-02-13T00:31:38.163] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:31:38.166] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:31:38.283] [INFO] cheese - inserting 1000 documents. first: Nick Kotys and last: Passo Cereda -[2018-02-13T00:31:38.331] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:31:38.401] [INFO] cheese - inserting 1000 documents. first: Category:2015–16 Mid-Eastern Athletic Conference men's basketball season and last: Category:Justin Trudeau -[2018-02-13T00:31:38.459] [INFO] cheese - inserting 1000 documents. first: List of Parma Calcio 1913 managers and last: 1973 Emperor's Cup -[2018-02-13T00:31:38.466] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:31:38.475] [INFO] cheese - inserting 1000 documents. first: Category:C-Class Coldplay articles and last: Template:Ds/sanction/usageline -[2018-02-13T00:31:38.504] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:31:38.511] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:31:38.521] [INFO] cheese - inserting 1000 documents. first: Rasabali and last: Union Mining Company -[2018-02-13T00:31:38.577] [INFO] cheese - inserting 1000 documents. first: Cluster chord and last: Dennis Waterman -[2018-02-13T00:31:38.583] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:31:38.606] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Electronic design services companies and last: Competence (human resources) -[2018-02-13T00:31:38.645] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:31:38.647] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:31:38.848] [INFO] cheese - inserting 1000 documents. first: Passo Cibiana and last: Wikipedia:WikiProject Pharmacology/Log/2009-02-10 -[2018-02-13T00:31:38.878] [INFO] cheese - inserting 1000 documents. first: Attractions in Louisville and last: Glacier damming -[2018-02-13T00:31:38.890] [INFO] cheese - inserting 1000 documents. first: File:Molecular Imaging and Biology.jpg and last: File:Mujo Ulqinaku.jpg -[2018-02-13T00:31:38.902] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:31:38.914] [INFO] cheese - inserting 1000 documents. first: Felix Robertson and last: James Ball (economist) -[2018-02-13T00:31:38.919] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:31:38.948] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:31:38.962] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:31:39.181] [INFO] cheese - inserting 1000 documents. first: Adjudicator and last: TCP/IP printer -[2018-02-13T00:31:39.218] [INFO] cheese - inserting 1000 documents. first: Glacier dam and last: Dietz, Robert -[2018-02-13T00:31:39.228] [INFO] cheese - inserting 1000 documents. first: Liberian Development Chartered Company and last: Portal:United Kingdom/Did you know/July 2007 -[2018-02-13T00:31:39.233] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:31:39.244] [INFO] cheese - inserting 1000 documents. first: William Blair Capital Partners and last: Character orientation -[2018-02-13T00:31:39.246] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:31:39.274] [INFO] cheese - inserting 1000 documents. first: ။ and last: Striccarella -[2018-02-13T00:31:39.290] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:31:39.314] [INFO] cheese - inserting 1000 documents. first: Annoyed grunt and last: St Louis Browns -[2018-02-13T00:31:39.316] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:31:39.328] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:31:39.332] [INFO] cheese - inserting 1000 documents. first: File:US Navy 050111-N-6817C-134 Sailors stand-by to load jugs of purified water into an approaching SH-60B Seahawk on the flight deck aboard USS Abraham Lincoln (CVN 72).jpg and last: Major League Baseball Rivalries -[2018-02-13T00:31:39.379] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:31:39.390] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:31:39.609] [INFO] cheese - inserting 1000 documents. first: Digby, Robert and last: Mara Junior Science College Kuching -[2018-02-13T00:31:39.622] [INFO] cheese - inserting 1000 documents. first: Aleksandra Beļcova and last: White Coffee Pot, Jr. -[2018-02-13T00:31:39.648] [INFO] cheese - inserting 1000 documents. first: Trebbiano Viccio and last: Mazin Masoud Al-Kasbi -[2018-02-13T00:31:39.647] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:31:39.682] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:31:39.697] [INFO] cheese - inserting 1000 documents. first: Template:Infobox golfer/sandbox and last: Hotpot (disambiguation) -[2018-02-13T00:31:39.727] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:31:39.804] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:31:39.857] [INFO] cheese - inserting 1000 documents. first: Sale El Sol and last: File:Mfi pic8.jpg -[2018-02-13T00:31:39.927] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Video game articles by quality/44 and last: Arcturos (disambiguation) -[2018-02-13T00:31:40.000] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:31:40.100] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:31:40.302] [INFO] cheese - inserting 1000 documents. first: Chocolate (ice cream) and last: Khanty-Mansiyskii District -[2018-02-13T00:31:40.318] [INFO] cheese - inserting 1000 documents. first: St Louis County and last: SatireWire -[2018-02-13T00:31:40.322] [INFO] cheese - inserting 1000 documents. first: Martin Price (numismatist) and last: Polyhymno walsinghami -[2018-02-13T00:31:40.341] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:31:40.390] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:31:40.399] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:31:40.458] [INFO] cheese - inserting 1000 documents. first: Sachar (disambiguation) and last: Glaphyrina plicata -[2018-02-13T00:31:40.523] [INFO] cheese - inserting 1000 documents. first: Xylotol and last: Hickey hider -[2018-02-13T00:31:40.530] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:31:40.583] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:31:40.611] [INFO] cheese - inserting 1000 documents. first: Arthur Nall-Cain, 2nd Baron Brocket and last: Vejer de la Frontera -[2018-02-13T00:31:40.620] [INFO] cheese - inserting 1000 documents. first: Church of the Holy Transfiguration, Sarajevo and last: Womanizer (disambiguation) -[2018-02-13T00:31:40.641] [INFO] cheese - inserting 1000 documents. first: Mary Wolmarans and last: Matthias Neithardt -[2018-02-13T00:31:40.667] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:31:40.667] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:31:40.685] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T00:31:40.833] [INFO] cheese - inserting 1000 documents. first: Lord Arthur Somerset (1780–1816) and last: Category:Lists of mountains of the Alps -[2018-02-13T00:31:40.883] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:31:40.892] [INFO] cheese - inserting 1000 documents. first: Category:15th-century architecture and last: File:Concord Coach Lines logo.png -[2018-02-13T00:31:40.950] [INFO] cheese - inserting 1000 documents. first: Category:Song recordings produced by Ian Anderson and last: Wikipedia:Articles for deletion/Post-presidency of Bill Clinton -[2018-02-13T00:31:40.950] [INFO] cheese - inserting 1000 documents. first: Striped Weasel and last: Luise Kähler -[2018-02-13T00:31:40.958] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:31:40.988] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:31:41.011] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:31:41.049] [INFO] cheese - inserting 1000 documents. first: Camp Barton and last: Portal:Indonesia/ST List/SA Borneo Clouded Leopard -[2018-02-13T00:31:41.085] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:41.163] [INFO] cheese - inserting 1000 documents. first: Yamaguti prefecture and last: Sharpstown scandal -[2018-02-13T00:31:41.180] [INFO] cheese - inserting 1000 documents. first: LongEZ and last: Vauxhall by-election, 1989 -[2018-02-13T00:31:41.232] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:31:41.250] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:31:41.288] [INFO] cheese - inserting 1000 documents. first: Portal:Astronomy/Events/April 2013 and last: United States House of Representatives elections in New Jersey, 1840 -[2018-02-13T00:31:41.318] [INFO] cheese - inserting 1000 documents. first: Full Tillt Boogie Band and last: Ernie Smith (Negro League baseball player) -[2018-02-13T00:31:41.328] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:31:41.340] [INFO] cheese - inserting 1000 documents. first: Category:United States Attorneys for the District of Mississippi and last: Template:KPL 2009 Map -[2018-02-13T00:31:41.399] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:31:41.401] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:31:41.434] [INFO] cheese - inserting 1000 documents. first: Category:Political parties in Queensland and last: Wikipedia:Articles for deletion/Minnesota Bluegrass and Old-Time Music Festival -[2018-02-13T00:31:41.473] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:31:41.509] [INFO] cheese - inserting 1000 documents. first: Beam Power Challenge and last: Sedgefield Borough Council election, 2003 -[2018-02-13T00:31:41.562] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:31:41.630] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Alabama, 1841 and last: Category:Song recordings produced by Pharrell Williams -[2018-02-13T00:31:41.645] [INFO] cheese - inserting 1000 documents. first: Komthur and last: A Very Special Drawn Together Afterschool Special -[2018-02-13T00:31:41.659] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:31:41.705] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:31:41.788] [INFO] cheese - inserting 1000 documents. first: Cosmopolitan bulrush and last: Nuffield chemistry -[2018-02-13T00:31:41.808] [INFO] cheese - inserting 1000 documents. first: Portal:Dinosaurs/Selected article/28 and last: Balisana -[2018-02-13T00:31:41.821] [INFO] cheese - inserting 1000 documents. first: Orehovica, Vipava and last: Vista Systems -[2018-02-13T00:31:41.831] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:41.858] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:31:41.898] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:41.929] [INFO] cheese - inserting 1000 documents. first: Trigonocephalus halys and last: Puzzles Like You -[2018-02-13T00:31:41.943] [INFO] cheese - inserting 1000 documents. first: Sharpstown affair and last: A Shropshire Lad -[2018-02-13T00:31:41.980] [INFO] cheese - inserting 1000 documents. first: Category:Song recordings produced by Pip Williams and last: Chinese Dream -[2018-02-13T00:31:41.982] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:31:42.026] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:31:42.035] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:31:42.180] [INFO] cheese - inserting 1000 documents. first: Obedience trial and last: Giant Pacific chiton -[2018-02-13T00:31:42.231] [INFO] cheese - inserting 1000 documents. first: Personal Egress Air Packs and last: Inner Harbor Navigation Canal (IHNC) Seabrook Floodgate Structure -[2018-02-13T00:31:42.315] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:31:42.356] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:31:42.428] [INFO] cheese - inserting 1000 documents. first: Hyakujuu-Ou Go-Lion and last: Greenville unionist convention -[2018-02-13T00:31:42.452] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Cāmadevivaṃsa and last: File:Bull Promontional Photo.jpg -[2018-02-13T00:31:42.478] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:31:42.481] [INFO] cheese - inserting 1000 documents. first: File:PuzzlesLikeYou.gif and last: Clervaux railway station -[2018-02-13T00:31:42.508] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:42.528] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:31:42.554] [INFO] cheese - inserting 1000 documents. first: Plan A (song) and last: Rex Gary -[2018-02-13T00:31:42.594] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:31:42.738] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/ast/admlaw and last: Doug Murray (Coronation Street) -[2018-02-13T00:31:42.778] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:31:42.837] [INFO] cheese - inserting 1000 documents. first: Trowel and last: VGA connector -[2018-02-13T00:31:42.871] [INFO] cheese - inserting 1000 documents. first: BGSQ and last: Wikipedia:Valued picture candidates/Childe's Tomb -[2018-02-13T00:31:42.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/July 15, 2007 and last: Sky's The Limit(album) -[2018-02-13T00:31:42.897] [INFO] cheese - inserting 1000 documents. first: Category:Fictional volleyball players and last: Category:McKim, Mead, and White buildings -[2018-02-13T00:31:42.912] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:31:42.926] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:31:42.954] [INFO] cheese - inserting 1000 documents. first: Pink bogbutton and last: Template:Creative Commons topics -[2018-02-13T00:31:42.980] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Coosa County, Alabama and last: Buginese (Unicode block) -[2018-02-13T00:31:42.987] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:31:42.993] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:31:43.038] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:31:43.044] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:31:43.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nosmokingblogdiary.blogspot.com and last: Pakistani Baluchistan -[2018-02-13T00:31:43.226] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:31:43.247] [INFO] cheese - inserting 1000 documents. first: Union des Démocrates de Côte d’Ivoire and last: Paul Humphrey (singer/songwriter) -[2018-02-13T00:31:43.284] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:31:43.366] [INFO] cheese - inserting 1000 documents. first: Mikhail Ryumin and last: Black-Capped Woodland-Warbler -[2018-02-13T00:31:43.381] [INFO] cheese - inserting 1000 documents. first: NOV Fm and last: Phalaena selenitica -[2018-02-13T00:31:43.412] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:31:43.472] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:31:43.613] [INFO] cheese - inserting 1000 documents. first: File:St George logo.png and last: ChiChi -[2018-02-13T00:31:43.644] [INFO] cheese - inserting 1000 documents. first: All We Need (Raury album) and last: Kim Byung-ok -[2018-02-13T00:31:43.670] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:31:43.680] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm Tempel and last: Tickhill -[2018-02-13T00:31:43.683] [INFO] cheese - inserting 1000 documents. first: David Taw and last: João Maria Barreto Ferreira do Amaral, 2nd Baron of Oliveira Lima -[2018-02-13T00:31:43.707] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:31:43.724] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:31:43.754] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:31:43.763] [INFO] cheese - inserting 1000 documents. first: Fred Papas and last: AACA -[2018-02-13T00:31:43.822] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:31:43.841] [INFO] cheese - inserting 1000 documents. first: Eggers Group and last: National Route 131 -[2018-02-13T00:31:43.903] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:31:44.000] [INFO] cheese - inserting 1000 documents. first: Mordellistenoda melana and last: Category:Media in Lima -[2018-02-13T00:31:44.045] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:31:44.155] [INFO] cheese - inserting 1000 documents. first: Willi Rothhaar and last: Pedro de Silva -[2018-02-13T00:31:44.182] [INFO] cheese - inserting 1000 documents. first: Cryonics in popular culture and last: Template:Country data Bottrop -[2018-02-13T00:31:44.211] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:44.218] [INFO] cheese - inserting 1000 documents. first: Cities of the Faroe Islands and last: Tures valley railroad -[2018-02-13T00:31:44.249] [INFO] cheese - inserting 1000 documents. first: Ahsa and last: Devoted to You (song) -[2018-02-13T00:31:44.264] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:31:44.290] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:31:44.332] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:31:44.406] [INFO] cheese - inserting 1000 documents. first: Chaams and last: CTP:molybdopterin cytidylyltransferase -[2018-02-13T00:31:44.419] [INFO] cheese - inserting 1000 documents. first: Margaret Wade (basketball) and last: Soboșa River -[2018-02-13T00:31:44.442] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:44.461] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:31:44.615] [INFO] cheese - inserting 1000 documents. first: Stjepan Držislav and last: Document Exploitation -[2018-02-13T00:31:44.652] [INFO] cheese - inserting 1000 documents. first: Pedro de Silva Cienfuegos-Jovellanos and last: War Times: Reports From The Opposition -[2018-02-13T00:31:44.661] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:31:44.700] [INFO] cheese - inserting 1000 documents. first: Template:WAM talk 2015 and last: Stalked spikemoss -[2018-02-13T00:31:44.704] [INFO] cheese - inserting 1000 documents. first: Nogeoldae and last: Boleslaus V, Duke of Poland -[2018-02-13T00:31:44.753] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:31:44.774] [INFO] cheese - inserting 1000 documents. first: MoCo cytidylyltransferase and last: Category:Medical and health organisations based in Poland -[2018-02-13T00:31:44.832] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:31:44.844] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:31:44.870] [INFO] cheese - inserting 1000 documents. first: Signatura and last: Contes -[2018-02-13T00:31:44.873] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:31:44.926] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:31:44.948] [INFO] cheese - inserting 1000 documents. first: Devoted To You and last: European Party -[2018-02-13T00:31:44.992] [INFO] cheese - inserting 1000 documents. first: Pietro Moriconi and last: Mettmenhasli-See -[2018-02-13T00:31:45.008] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:31:45.044] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:31:45.214] [INFO] cheese - inserting 1000 documents. first: Patrick Joseph Carew and last: Test tube holder -[2018-02-13T00:31:45.225] [INFO] cheese - inserting 1000 documents. first: Category:Zambian expatriates in the United Kingdom and last: Category:Grammarians of Yiddish -[2018-02-13T00:31:45.247] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:31:45.259] [INFO] cheese - inserting 1000 documents. first: Trachydora pygaea and last: Asser (monk) -[2018-02-13T00:31:45.285] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:45.287] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:31:45.355] [INFO] cheese - inserting 1000 documents. first: Mahmud Abu al-Fath and last: Abdul hay mosallam -[2018-02-13T00:31:45.371] [INFO] cheese - inserting 1000 documents. first: Katharina Haecker and last: Saint-Rose (AMT) -[2018-02-13T00:31:45.408] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:31:45.423] [INFO] cheese - inserting 1000 documents. first: University Of Nebraska and last: Octopuses -[2018-02-13T00:31:45.426] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:31:45.494] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:31:45.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2006 February 12 and last: K. 242 -[2018-02-13T00:31:45.575] [INFO] cheese - inserting 1000 documents. first: Tej Pratap Yadav and last: Ryan Switzer -[2018-02-13T00:31:45.587] [INFO] cheese - inserting 1000 documents. first: A Tribute to the Four Horsemen and last: Bąkowice -[2018-02-13T00:31:45.587] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:31:45.619] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:31:45.635] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Wisconsin, 1994 and last: Per Meinich -[2018-02-13T00:31:45.637] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:31:45.679] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:31:45.767] [INFO] cheese - inserting 1000 documents. first: File:Vipin Verma.jpg and last: Fly-boy -[2018-02-13T00:31:45.813] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:31:45.929] [INFO] cheese - inserting 1000 documents. first: Bielice, Namysłów County and last: Lake of Riesser -[2018-02-13T00:31:45.963] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:31:46.021] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/userweb.pedf.cuni.cz and last: Hygrophoropsis laevis -[2018-02-13T00:31:46.044] [INFO] cheese - inserting 1000 documents. first: T-Link and last: Category:Jewish Jordanian history -[2018-02-13T00:31:46.065] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:31:46.075] [INFO] cheese - inserting 1000 documents. first: Tyubu and last: Taygete (moon) -[2018-02-13T00:31:46.099] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:31:46.115] [INFO] cheese - inserting 1000 documents. first: Category:Towers completed in 2009 and last: Category:Aircraft manufactured in India -[2018-02-13T00:31:46.134] [INFO] cheese - inserting 1000 documents. first: Ball Of Confusion (That's What The World Is Today) and last: Born A Rebel -[2018-02-13T00:31:46.163] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:31:46.181] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:31:46.240] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:31:46.293] [INFO] cheese - inserting 1000 documents. first: Serbia national under-19 football team and last: Atep Rizal -[2018-02-13T00:31:46.332] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:31:46.404] [INFO] cheese - inserting 1000 documents. first: Hygrophoropsis fuscosquamula and last: List of eruvin -[2018-02-13T00:31:46.407] [INFO] cheese - inserting 1000 documents. first: Großer Plöner-see and last: 12 light field ambulance -[2018-02-13T00:31:46.437] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Irving Quant and last: Arda Envinyanta -[2018-02-13T00:31:46.441] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:31:46.450] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:46.480] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:31:46.508] [INFO] cheese - inserting 1000 documents. first: Category:Aircraft manufactured by the Philippines and last: Template:ABA League rebounding leaders -[2018-02-13T00:31:46.540] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:31:46.650] [INFO] cheese - inserting 1000 documents. first: Campari (disambiguation) and last: Parsley virus 3 -[2018-02-13T00:31:46.685] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:31:46.722] [INFO] cheese - inserting 1000 documents. first: Shelkovnikov Beybut Martirosovich and last: File:Karwar Evening.jpg -[2018-02-13T00:31:46.748] [INFO] cheese - inserting 1000 documents. first: 2011 in São Tomé and Príncipe and last: Anthophila punctosa -[2018-02-13T00:31:46.770] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:31:46.780] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/annisaa.invisionplus.net and last: 1234567890 day -[2018-02-13T00:31:46.795] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:31:46.815] [INFO] cheese - inserting 1000 documents. first: Sujeong and last: Navy Medical Service -[2018-02-13T00:31:46.822] [INFO] cheese - inserting 1000 documents. first: Lazy eye and last: Malcolm Bradbury -[2018-02-13T00:31:46.825] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:31:46.859] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:46.891] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:31:46.902] [INFO] cheese - inserting 1000 documents. first: Her Şey Aşktan and last: Category:Europa Jupiter System Mission -[2018-02-13T00:31:46.947] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:31:47.228] [INFO] cheese - inserting 1000 documents. first: Silver Wolf Award (The Scout Association) and last: File:Patients and medical staff.jpg -[2018-02-13T00:31:47.271] [INFO] cheese - inserting 1000 documents. first: Choreutis philonyma and last: Evergreen Street -[2018-02-13T00:31:47.285] [INFO] cheese - inserting 1000 documents. first: Ender's Game series and last: Mänttä-Vilppula -[2018-02-13T00:31:47.291] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:31:47.293] [INFO] cheese - inserting 1000 documents. first: Template:ConfirmationImageOTRS and last: Jean-Talon Market -[2018-02-13T00:31:47.306] [INFO] cheese - inserting 1000 documents. first: Donati Salla and last: RGVFC -[2018-02-13T00:31:47.313] [INFO] cheese - inserting 1000 documents. first: Darby End and last: James Sumner (baseball) -[2018-02-13T00:31:47.338] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:31:47.364] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:31:47.386] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:31:47.392] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:31:47.388] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:31:47.769] [INFO] cheese - inserting 1000 documents. first: Polandish Passage and last: Andrew Crommelin -[2018-02-13T00:31:47.784] [INFO] cheese - inserting 1000 documents. first: File:View of Village Market.JPG and last: Paurine Mpariwa -[2018-02-13T00:31:47.804] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ophthalmophaginae and last: Category:Israeli surnames -[2018-02-13T00:31:47.815] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/defendamerica.mil and last: CD53 -[2018-02-13T00:31:47.824] [INFO] cheese - inserting 1000 documents. first: File:Lake People Park, Seattle, March 2013.jpg and last: Rahul Khullar -[2018-02-13T00:31:47.825] [INFO] cheese - inserting 1000 documents. first: Template:Hearthstone and last: West 12 Shepherd's Bush -[2018-02-13T00:31:47.828] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:31:47.858] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:31:47.860] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:31:47.860] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:31:47.891] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:31:47.942] [INFO] cheese - inserting 1000 documents. first: Upper Aulaqi Sultanate and last: Carlenrig -[2018-02-13T00:31:47.961] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:31:48.007] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:31:48.250] [INFO] cheese - inserting 1000 documents. first: Only Fools (Never Fall in Love) and last: Teledyne Turbine Engines -[2018-02-13T00:31:48.267] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/anite.com and last: Pander Brothers -[2018-02-13T00:31:48.285] [INFO] cheese - inserting 1000 documents. first: 2011 F1 season and last: Sladjan Pajić -[2018-02-13T00:31:48.293] [INFO] cheese - inserting 1000 documents. first: Category:Media in Beirut and last: Jelly roll motif -[2018-02-13T00:31:48.341] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:31:48.350] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:31:48.357] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:48.375] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:31:48.441] [INFO] cheese - inserting 1000 documents. first: CD63 and last: Untied aid -[2018-02-13T00:31:48.493] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:48.560] [INFO] cheese - inserting 1000 documents. first: The Last Few Bricks and last: Paranà -[2018-02-13T00:31:48.609] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:31:48.699] [INFO] cheese - inserting 1000 documents. first: Template:Country data Conil de la Frontera and last: Wikipedia:WikiProject Spam/LinkReports/parahat.info -[2018-02-13T00:31:48.735] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:31:48.760] [INFO] cheese - inserting 1000 documents. first: 2013 Conference USA men's soccer season and last: New Musical Theater of San Francisco, Inc. -[2018-02-13T00:31:48.773] [INFO] cheese - inserting 1000 documents. first: List of mountain types and last: Samuel Byck -[2018-02-13T00:31:48.779] [INFO] cheese - inserting 1000 documents. first: Philonides (physician) and last: 2005 Pot Black -[2018-02-13T00:31:48.796] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:31:48.826] [INFO] cheese - inserting 1000 documents. first: Category:Defunct ice hockey leagues in the United Kingdom and last: Wikipedia:WikiProject Azerbaijan/Article alerts/Archive -[2018-02-13T00:31:48.826] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:31:48.828] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:31:48.846] [INFO] cheese - inserting 1000 documents. first: Arthur, 1st Duke of Connaught and last: File:Roncesvalles Festival-2006.JPG -[2018-02-13T00:31:48.890] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:48.916] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:31:49.011] [INFO] cheese - inserting 1000 documents. first: Bamforth National Wildlife Refuge and last: Beni Ebeid Stadium -[2018-02-13T00:31:49.032] [INFO] cheese - inserting 1000 documents. first: Category:Albanian emigrants to Yugoslavia and last: Category:Chinese baritones -[2018-02-13T00:31:49.064] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:31:49.074] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:31:49.081] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Montcalm County, Michigan and last: San Diego Sockers (2001–2004) -[2018-02-13T00:31:49.140] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:31:49.211] [INFO] cheese - inserting 1000 documents. first: San Diego-Coronado Bridge and last: Edward Lhwyd -[2018-02-13T00:31:49.256] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:49.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sense and Goodness Without God and last: SGCIM -[2018-02-13T00:31:49.343] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:31:49.586] [INFO] cheese - inserting 1000 documents. first: Fragkias and last: File:Florida Blazers logo 1974.png -[2018-02-13T00:31:49.591] [INFO] cheese - inserting 1000 documents. first: Category:Media in Gyeongju and last: Annette Roque -[2018-02-13T00:31:49.592] [INFO] cheese - inserting 1000 documents. first: Kalbar and last: Heavy metal L-Gaim -[2018-02-13T00:31:49.602] [INFO] cheese - inserting 1000 documents. first: Dutch process chocolate and last: Anti-disestablishmentarianism -[2018-02-13T00:31:49.633] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:31:49.640] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:31:49.657] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:31:49.686] [INFO] cheese - inserting 1000 documents. first: John Johnstone (disambiguation) and last: The Nightcrawlers -[2018-02-13T00:31:49.696] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:31:49.744] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:31:49.879] [INFO] cheese - inserting 1000 documents. first: Five Years In A LIVEtime and last: Petero Byakatonda -[2018-02-13T00:31:49.921] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:31:49.998] [INFO] cheese - inserting 1000 documents. first: List of Sony television series and last: Un camino hacia el destino -[2018-02-13T00:31:49.999] [INFO] cheese - inserting 1000 documents. first: Maintenance regulation and last: Lithuanian Civil War (1431–1435) -[2018-02-13T00:31:50.035] [INFO] cheese - inserting 1000 documents. first: The 1936 Olympics and last: Patrick Wolridge-Gordon -[2018-02-13T00:31:50.051] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:31:50.077] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:31:50.117] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:31:50.240] [INFO] cheese - inserting 1000 documents. first: Iya Savvina and last: Fishguard and Rosslare Railways and Harbours -[2018-02-13T00:31:50.288] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:31:50.387] [INFO] cheese - inserting 1000 documents. first: Step It Up (song) and last: Category:Aviation code templates -[2018-02-13T00:31:50.433] [INFO] cheese - inserting 1000 documents. first: Kahurabad-e Sohrabi and last: National Register of Historic Places listings in Kiowa County, Kansas -[2018-02-13T00:31:50.453] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:31:50.459] [INFO] cheese - inserting 1000 documents. first: Telus Plaza and last: Wikipedia:Arbitration Committee Elections December 2015/Candidates/Keilana/Questions -[2018-02-13T00:31:50.517] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:31:50.533] [INFO] cheese - inserting 1000 documents. first: Ernst Toch and last: Cigarette lighters -[2018-02-13T00:31:50.531] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:31:50.653] [INFO] cheese - inserting 1000 documents. first: List of minor planets/76801–76900 and last: Wikipedia:Articles for deletion/Employee leasing -[2018-02-13T00:31:50.724] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T00:31:50.769] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:50.980] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Lane County, Kansas and last: Municipal councillor (NL) -[2018-02-13T00:31:50.981] [INFO] cheese - inserting 1000 documents. first: Herfast de Crépon and last: 322d Bombardment Squadron -[2018-02-13T00:31:51.018] [INFO] cheese - inserting 1000 documents. first: Predictive Informatics and last: Cicely (disambiguation) -[2018-02-13T00:31:51.023] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:31:51.028] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:31:51.064] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:31:51.184] [INFO] cheese - inserting 1000 documents. first: B 93 and last: Violet Dancer -[2018-02-13T00:31:51.272] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:51.325] [INFO] cheese - inserting 1000 documents. first: Category:Dundela F.C. players and last: Wikipedia:Files for deletion/2011 January 12 -[2018-02-13T00:31:51.402] [INFO] cheese - inserting 1000 documents. first: File:The movie poster for the 2015 documentary "A Wing and a Prayer".jpg and last: A340-642 -[2018-02-13T00:31:51.409] [INFO] cheese - inserting 1000 documents. first: Category:Pan American Games gold medalists for the United States and last: Wikipedia:0.7/0.7index/Amusements -[2018-02-13T00:31:51.420] [INFO] cheese - inserting 1000 documents. first: Şenlikköy Stadium and last: Paget baronets -[2018-02-13T00:31:51.443] [INFO] cheese - inserting 1000 documents. first: Pasha's Mosque and last: Category:String quartets by Milton Babbitt -[2018-02-13T00:31:51.447] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:31:51.455] [INFO] cheese - batch complete in: 2.539 secs -[2018-02-13T00:31:51.468] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T00:31:51.474] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:31:51.527] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:51.772] [INFO] cheese - inserting 1000 documents. first: Corning Community College and last: Écublens, Vaud -[2018-02-13T00:31:52.095] [INFO] cheese - batch complete in: 1.371 secs -[2018-02-13T00:31:52.181] [INFO] cheese - inserting 1000 documents. first: Christine Malèvre and last: Category:Lacrosse teams -[2018-02-13T00:31:52.241] [INFO] cheese - inserting 1000 documents. first: A340-643 and last: Template:Fb competition 2004-05 Macedonian Prva Liga -[2018-02-13T00:31:52.245] [INFO] cheese - inserting 1000 documents. first: Traubendorn and last: Ingenious Media -[2018-02-13T00:31:52.248] [INFO] cheese - inserting 1000 documents. first: Category:String quartets by Carl Nielsen and last: Qanat Siyah -[2018-02-13T00:31:52.291] [INFO] cheese - inserting 1000 documents. first: Barbatula brandti and last: James O'Kelly -[2018-02-13T00:31:52.316] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:31:52.355] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:31:52.378] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:31:52.407] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:31:52.451] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:31:52.802] [INFO] cheese - inserting 1000 documents. first: Under Secretary for Arms Control and International Security and last: Laura Johnson -[2018-02-13T00:31:52.850] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:31:52.874] [INFO] cheese - inserting 1000 documents. first: Modern Life is War and last: Template:PASOBronzeMedalist -[2018-02-13T00:31:52.874] [INFO] cheese - inserting 1000 documents. first: File:I Thank You ZZ Top.jpg and last: Żychckie Osady -[2018-02-13T00:31:52.879] [INFO] cheese - inserting 1000 documents. first: Qanat Seyah and last: File:Sam Concepcion in World Vision Mission in Cagayan de Oro, 2012.jpg -[2018-02-13T00:31:52.907] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2011 January 12 and last: Razboienii de Jos -[2018-02-13T00:31:52.909] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:31:52.912] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:52.918] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:31:52.957] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T00:31:52.961] [INFO] cheese - inserting 1000 documents. first: Tonight's the Night (1934 film) and last: Category:Arts festivals in North America -[2018-02-13T00:31:53.015] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:31:53.084] [INFO] cheese - inserting 1000 documents. first: Plead and last: Hurrian language -[2018-02-13T00:31:53.181] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T00:31:53.236] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Człuchów County and last: 1988 Guarujá Open -[2018-02-13T00:31:53.281] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:31:53.300] [INFO] cheese - inserting 1000 documents. first: Precious Blood (song) and last: Category:Azerbaijani football clubs 2007–08 season -[2018-02-13T00:31:53.363] [INFO] cheese - inserting 1000 documents. first: Template:Talt and last: Wikipedia:Articles for deletion/Kolinsky sable -[2018-02-13T00:31:53.397] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2007 July 16 and last: DN-1-Class Blimp -[2018-02-13T00:31:53.405] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:31:53.451] [INFO] cheese - inserting 1000 documents. first: Borşeni and last: File:ACA stageFINAL.JPG -[2018-02-13T00:31:53.493] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:31:53.499] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:31:53.513] [INFO] cheese - inserting 1000 documents. first: Logie Award for Most Popular Drama Program and last: Stella von Schöneberg -[2018-02-13T00:31:53.514] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:31:53.581] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:31:53.647] [INFO] cheese - inserting 1000 documents. first: What Happens at the National Propane Gas Convention in Memphis Stays at the National Propane Gas Convention in Memphis and last: York Regional Road 99 -[2018-02-13T00:31:53.689] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:31:53.791] [INFO] cheese - inserting 1000 documents. first: Pyramid roof and last: USC-Conway Chanticleers -[2018-02-13T00:31:53.867] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:31:53.871] [INFO] cheese - inserting 1000 documents. first: Acoustics Research Institute and last: Pisang raja udang -[2018-02-13T00:31:53.872] [INFO] cheese - inserting 1000 documents. first: Kevlarsjäl and last: Masahiro kawasaki -[2018-02-13T00:31:53.917] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:31:53.925] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:31:53.987] [INFO] cheese - inserting 1000 documents. first: Oklahoma Wing Civil Air Patrol and last: Template:Editnotices/Page/Dead centre (engineering) -[2018-02-13T00:31:54.056] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:31:54.060] [INFO] cheese - inserting 1000 documents. first: Sandy Bruce-Lockhart, Baron Bruce-Lockhart and last: WAAY-TV -[2018-02-13T00:31:54.074] [INFO] cheese - inserting 1000 documents. first: Green liberalism and last: Child safety lock -[2018-02-13T00:31:54.119] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:31:54.148] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:31:54.201] [INFO] cheese - inserting 1000 documents. first: South Carolina-Conway Chanticleers and last: Category:Moldovan expatriate sportspeople -[2018-02-13T00:31:54.247] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:31:54.264] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Palermo-Juventina and last: Wikipedia:Articles for deletion/Cecil Johnson -[2018-02-13T00:31:54.350] [INFO] cheese - inserting 1000 documents. first: Rueppellii and last: Egletes humifusa -[2018-02-13T00:31:54.366] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:31:54.396] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:31:54.400] [INFO] cheese - inserting 1000 documents. first: Kate Mullins and last: Category:Populated places in Ford County, Illinois -[2018-02-13T00:31:54.490] [INFO] cheese - inserting 1000 documents. first: File:Namibian Army Wolf armed with Air Defence cannon.jpg and last: 16th Transport Squadron -[2018-02-13T00:31:54.540] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:31:54.584] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:31:54.746] [INFO] cheese - inserting 1000 documents. first: American Athletic Conference Baseball Tournament and last: Oeffag series 153 -[2018-02-13T00:31:54.795] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:31:54.796] [INFO] cheese - inserting 1000 documents. first: Thousand Cranes and last: Callicebus (Torquatus) medemi -[2018-02-13T00:31:54.879] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:31:54.895] [INFO] cheese - inserting 1000 documents. first: Claim jump and last: Port Road -[2018-02-13T00:31:54.912] [INFO] cheese - inserting 1000 documents. first: Tiddington railway station and last: Template:Belgium-film-director-stub -[2018-02-13T00:31:54.922] [INFO] cheese - inserting 1000 documents. first: Category:Infectious Records albums and last: William Bradshaw (writer) -[2018-02-13T00:31:54.939] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:31:54.974] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:31:54.983] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:31:55.009] [INFO] cheese - inserting 1000 documents. first: Apatema and last: Lord SatyNarayan -[2018-02-13T00:31:55.036] [INFO] cheese - inserting 1000 documents. first: Henri I de Montmorency and last: Caine, Hall, Sir -[2018-02-13T00:31:55.054] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:31:55.097] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T00:31:55.166] [INFO] cheese - inserting 1000 documents. first: Oeffag series 253 and last: Tower Battery -[2018-02-13T00:31:55.211] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:31:55.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ewell Grove Infant and Nursery School and last: Maritime Air Mass -[2018-02-13T00:31:55.301] [INFO] cheese - inserting 1000 documents. first: The Grolier Club and last: File:Clinical Gastroenterology and Hepatology.gif -[2018-02-13T00:31:55.314] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:31:55.342] [INFO] cheese - inserting 1000 documents. first: Category:Senecio and last: Elmisauridae -[2018-02-13T00:31:55.364] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gümbadey and last: Salman the Persian (film) -[2018-02-13T00:31:55.367] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:31:55.376] [INFO] cheese - inserting 1000 documents. first: Transit car and last: Celtedens -[2018-02-13T00:31:55.403] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:31:55.425] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:31:55.435] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:31:55.551] [INFO] cheese - inserting 1000 documents. first: Polychrome Glacier and last: EDreams (2) -[2018-02-13T00:31:55.584] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:31:55.705] [INFO] cheese - inserting 1000 documents. first: Mesua kochummenia and last: Saint-Alexis-des-Monts, Quebec -[2018-02-13T00:31:55.715] [INFO] cheese - inserting 1000 documents. first: Category:Parks in Humboldt County, California and last: County board of elections -[2018-02-13T00:31:55.737] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:31:55.750] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:31:55.774] [INFO] cheese - inserting 1000 documents. first: Carrolla and last: Casimir III of Poland -[2018-02-13T00:31:55.834] [INFO] cheese - inserting 1000 documents. first: Anchiniinae and last: George Lawler (EastEnders) -[2018-02-13T00:31:55.869] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:31:55.963] [INFO] cheese - inserting 1000 documents. first: London Buses route 7 and last: I Think I'm A Clone Now -[2018-02-13T00:31:55.976] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:31:56.044] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:31:56.071] [INFO] cheese - inserting 1000 documents. first: Breckenridge, CO Micropolitan Statistical Area and last: United States House of Representatives elections in Illinois, 1890 -[2018-02-13T00:31:56.109] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:31:56.111] [INFO] cheese - inserting 1000 documents. first: Michael Maurice Micklewhite and last: Disputed territories -[2018-02-13T00:31:56.221] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T00:31:56.272] [INFO] cheese - inserting 1000 documents. first: Category:Bloodshot Records albums and last: Totally Táta -[2018-02-13T00:31:56.380] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:31:56.469] [INFO] cheese - inserting 1000 documents. first: Kava, Mali and last: Norm Rogers -[2018-02-13T00:31:56.495] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Missions in 3-D Pinball Space Cadet and last: Cardioglossa pulchra -[2018-02-13T00:31:56.508] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:31:56.575] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:31:56.611] [INFO] cheese - inserting 1000 documents. first: Emagine and last: Doha Stadium (Qatar) -[2018-02-13T00:31:56.690] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:31:56.766] [INFO] cheese - inserting 1000 documents. first: Template:Indian Justice Party/meta/shortname and last: Lestina -[2018-02-13T00:31:56.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/God-Grilla and last: Open-source 3-D printer -[2018-02-13T00:31:56.825] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:31:56.861] [INFO] cheese - inserting 1000 documents. first: Category:Northumberland cuisine and last: The Metro (film) -[2018-02-13T00:31:56.864] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:31:56.954] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:31:56.991] [INFO] cheese - inserting 1000 documents. first: Cardioglossa schioetzi and last: Yokoyama BayStars -[2018-02-13T00:31:56.994] [INFO] cheese - inserting 1000 documents. first: William IV of England,Scotland,and Ireland and last: Category:New Zealand baseball players -[2018-02-13T00:31:57.040] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:31:57.069] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:31:57.194] [INFO] cheese - inserting 1000 documents. first: Category:Asian-New Zealand culture in Auckland and last: Zdzisław Bradel -[2018-02-13T00:31:57.195] [INFO] cheese - inserting 1000 documents. first: Marguerite de Launay, baronne de Staal and last: Filosofy -[2018-02-13T00:31:57.238] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:31:57.249] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T00:31:57.293] [INFO] cheese - inserting 1000 documents. first: File:Lopez Play.png and last: FSMK -[2018-02-13T00:31:57.334] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:31:57.387] [INFO] cheese - inserting 1000 documents. first: High Definition Televison and last: Ernest Hackel -[2018-02-13T00:31:57.445] [INFO] cheese - inserting 1000 documents. first: Massadio Haïdara and last: Wikipedia:Campus Ambassadors/Louisiana State University/Trained Ambassadors -[2018-02-13T00:31:57.446] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:31:57.468] [INFO] cheese - inserting 1000 documents. first: Alberto Ullastres and last: Suman (actor) -[2018-02-13T00:31:57.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2009 February 15 and last: Pseudanapaea transvestita -[2018-02-13T00:31:57.501] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:31:57.526] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:31:57.559] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:31:57.675] [INFO] cheese - inserting 1000 documents. first: Alina Bolshakova and last: Nat haversine -[2018-02-13T00:31:57.688] [INFO] cheese - inserting 1000 documents. first: Air Tanzania Corporation and last: Pork Knuckles and Ginger Stew (ZYU GEK GOENG) -[2018-02-13T00:31:57.720] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:31:57.739] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:31:57.881] [INFO] cheese - inserting 1000 documents. first: Category:Continental unions and last: Tachycardia, paroxysmal -[2018-02-13T00:31:57.900] [INFO] cheese - inserting 1000 documents. first: Travis Norton and last: Discrete Uniform Distribution -[2018-02-13T00:31:57.912] [INFO] cheese - inserting 1000 documents. first: Privett church and last: Category:Populated places in Bureau County, Illinois -[2018-02-13T00:31:57.923] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:31:57.928] [INFO] cheese - inserting 1000 documents. first: 1983 Bristol Open and last: Wallen, Indiana -[2018-02-13T00:31:57.951] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:31:57.975] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:31:57.989] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:31:58.043] [INFO] cheese - inserting 1000 documents. first: Phylosophy and last: Loop splitting -[2018-02-13T00:31:58.167] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:31:58.201] [INFO] cheese - inserting 1000 documents. first: St. Croix Boom Company House and Barn and last: Category:Referendums in the Åland Islands -[2018-02-13T00:31:58.301] [INFO] cheese - inserting 1000 documents. first: Category:Education in Conwy County Borough and last: Charles Corbett -[2018-02-13T00:31:58.344] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:31:58.377] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:31:58.443] [INFO] cheese - inserting 1000 documents. first: Derk-Elsko Bruins and last: Sino-Tibetan relations during the Tang dynasty -[2018-02-13T00:31:58.488] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:31:58.500] [INFO] cheese - inserting 1000 documents. first: Trash Pussies and last: State Highway 26 (Texas 1939) -[2018-02-13T00:31:58.575] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:31:58.594] [INFO] cheese - inserting 1000 documents. first: G. diffusa and last: Thyreostat II -[2018-02-13T00:31:58.603] [INFO] cheese - inserting 1000 documents. first: Category:Burials in Tyne and Wear and last: Phanigiri -[2018-02-13T00:31:58.623] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:31:58.692] [INFO] cheese - inserting 1000 documents. first: Japalura Tree Dragon and last: Pınarbaşı, Kastamonu -[2018-02-13T00:31:58.696] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:31:58.750] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:31:58.787] [INFO] cheese - inserting 1000 documents. first: Ricsinsåt and last: Institute of Politics and Public Service -[2018-02-13T00:31:58.838] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:31:58.906] [INFO] cheese - inserting 1000 documents. first: List of Federal Reserve branches and last: Macquarie Island Cormorant -[2018-02-13T00:31:58.939] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:31:58.945] [INFO] cheese - inserting 1000 documents. first: State Highway 27 (Texas 1939) and last: Dendropsophus leali -[2018-02-13T00:31:58.948] [INFO] cheese - inserting 1000 documents. first: Arawak people and last: Vesikur -[2018-02-13T00:31:58.978] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:31:58.988] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:31:58.998] [INFO] cheese - inserting 1000 documents. first: Rescue Us and last: Les Innommables -[2018-02-13T00:31:59.047] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:31:59.140] [INFO] cheese - inserting 1000 documents. first: Apocalyptic Raids and last: List of state leaders in 1761 -[2018-02-13T00:31:59.196] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T00:31:59.198] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/1996 Andhra Pradesh cyclone and last: Slender sow thistle -[2018-02-13T00:31:59.240] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:31:59.256] [INFO] cheese - inserting 1000 documents. first: Ave (intermunicipal community) and last: Tose Proeski -[2018-02-13T00:31:59.277] [INFO] cheese - inserting 1000 documents. first: Market House (Rothwell, Northamptonshire) and last: Lucrezia (disambiguation) -[2018-02-13T00:31:59.311] [INFO] cheese - inserting 1000 documents. first: DG Flugzeugbau DG-1000T and last: Mott Haven Historic District -[2018-02-13T00:31:59.326] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:31:59.333] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Muslim history and last: Natan Altman -[2018-02-13T00:31:59.351] [INFO] cheese - inserting 1000 documents. first: Category:AEK Athens F.C. chairmen and last: Template:Spain-dessert-stub -[2018-02-13T00:31:59.358] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:31:59.405] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:31:59.427] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:31:59.432] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:31:59.712] [INFO] cheese - inserting 1000 documents. first: Slender sow-thistle and last: Simplemente María (Mexican telenovela) -[2018-02-13T00:31:59.785] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:31:59.886] [INFO] cheese - inserting 1000 documents. first: AKFM and last: Wikipedia:Articles for deletion/Robert trail -[2018-02-13T00:31:59.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Jrmillikan and last: Category:Sharks (rugby union) players -[2018-02-13T00:31:59.941] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:31:59.951] [INFO] cheese - inserting 1000 documents. first: Kent North and last: A. S. Gage Ranch -[2018-02-13T00:31:59.952] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:31:59.982] [INFO] cheese - inserting 1000 documents. first: Wikimedian and last: Puddle City Racing Lights -[2018-02-13T00:32:00.018] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:32:00.036] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:32:00.060] [INFO] cheese - inserting 1000 documents. first: Sarpsborg 08 FF and last: Portal:Oceania/Daily article/9 -[2018-02-13T00:32:00.148] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:32:00.379] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1762 and last: Yousef Alavi -[2018-02-13T00:32:00.395] [INFO] cheese - inserting 1000 documents. first: Category:Sufism in Azad Kashmir and last: Category:Members of the 17th Canadian Ministry -[2018-02-13T00:32:00.404] [INFO] cheese - inserting 1000 documents. first: Category:1923–24 domestic association football cups and last: Quest of Ki -[2018-02-13T00:32:00.422] [INFO] cheese - inserting 1000 documents. first: Template:2011 Vodacom Cup Tables and last: Alan Allport -[2018-02-13T00:32:00.451] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:32:00.453] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:32:00.479] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:32:00.485] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T00:32:00.507] [INFO] cheese - inserting 1000 documents. first: Template:By-elections to the 38th UK Parliament and last: Dayton–Campbell Historic District -[2018-02-13T00:32:00.599] [INFO] cheese - inserting 1000 documents. first: Bony semicircular canals and last: Wikipedia:Articles for deletion/Honestforum -[2018-02-13T00:32:00.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Deletion sorting/Hockey and last: Wikipedia:Miscellany for deletion/User:Abd/JzG -[2018-02-13T00:32:00.616] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:32:00.677] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:32:00.702] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:32:00.936] [INFO] cheese - inserting 1000 documents. first: Home Park (Atlanta) and last: ⎪ -[2018-02-13T00:32:01.000] [INFO] cheese - inserting 1000 documents. first: Calcipotriene 0.005% and Betamethasone Dipropionate 0.064% Foam and last: Latin Patriarchate of Ethiopia -[2018-02-13T00:32:01.046] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:32:01.096] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:32:01.336] [INFO] cheese - inserting 1000 documents. first: SV Estelle and last: Etang de brouquenat -[2018-02-13T00:32:01.394] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:32:01.427] [INFO] cheese - inserting 1000 documents. first: Ellenbrook (disambiguation) and last: Paul Hufford -[2018-02-13T00:32:01.467] [INFO] cheese - inserting 1000 documents. first: Scapel and last: Hallelujah(Single) -[2018-02-13T00:32:01.478] [INFO] cheese - inserting 1000 documents. first: Viktor Zuckerkandl and last: Jenny Jerome -[2018-02-13T00:32:01.509] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T00:32:01.543] [INFO] cheese - inserting 1000 documents. first: Latin Patriarch of Ethiopia and last: Elshan Rzazade -[2018-02-13T00:32:01.603] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:32:01.607] [INFO] cheese - inserting 1000 documents. first: ⎫ and last: Harukazechan -[2018-02-13T00:32:01.621] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:32:01.634] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:32:01.690] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:32:01.821] [INFO] cheese - inserting 1000 documents. first: List of mammals and last: Greatest Hits III -[2018-02-13T00:32:01.960] [INFO] cheese - batch complete in: 1.475 secs -[2018-02-13T00:32:02.016] [INFO] cheese - inserting 1000 documents. first: Lac de goria and last: Gokū no Daibōken -[2018-02-13T00:32:02.072] [INFO] cheese - inserting 1000 documents. first: Eastern architectural history and last: Lucija Zaninović -[2018-02-13T00:32:02.169] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:02.184] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:32:02.323] [INFO] cheese - inserting 1000 documents. first: Concerti Grossi, Op. 3 (Handel) and last: Johnny Aardvark -[2018-02-13T00:32:02.355] [INFO] cheese - inserting 1000 documents. first: Jogiya (disambiguation) and last: List of power plants in Hong Kong -[2018-02-13T00:32:02.368] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:32:02.370] [INFO] cheese - inserting 1000 documents. first: Maryland Route 304 and last: File:Burdett, Alberta, Canada Location.png -[2018-02-13T00:32:02.436] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:32:02.452] [INFO] cheese - inserting 1000 documents. first: Voss Veksel- og Landmandsbank ASA and last: Pugh's Mill Covered Bridge -[2018-02-13T00:32:02.470] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:32:02.571] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:32:02.834] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in San Luis Obispo County, California and last: Neamblysomus -[2018-02-13T00:32:02.857] [INFO] cheese - inserting 1000 documents. first: File:Madhumati 2013.jpg and last: Escherichia coli endodeoxyribonuclease -[2018-02-13T00:32:02.901] [INFO] cheese - inserting 1000 documents. first: Ferrocarril de Chihuahua al Pacifico and last: Coline Mattel -[2018-02-13T00:32:02.905] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:32:02.945] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:32:02.998] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:32:03.013] [INFO] cheese - inserting 1000 documents. first: Category:Tailless delta-wing aircraft and last: Peace Sign (song) -[2018-02-13T00:32:03.035] [INFO] cheese - inserting 1000 documents. first: Bahurim and last: Churchill, Ontario -[2018-02-13T00:32:03.077] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:32:03.097] [INFO] cheese - inserting 1000 documents. first: Eleutherodactylus gossei and last: Pristimantis serendipitus -[2018-02-13T00:32:03.122] [INFO] cheese - inserting 1000 documents. first: Category:Thai musical instruments and last: Dustbin -[2018-02-13T00:32:03.150] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T00:32:03.183] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:32:03.201] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:32:03.383] [INFO] cheese - inserting 1000 documents. first: Red or black and last: C16H9NO2 -[2018-02-13T00:32:03.427] [INFO] cheese - inserting 1000 documents. first: Template:LDS Temple/Rio de Janeiro Brazil Temple and last: Ames, Iowa metropolitan area -[2018-02-13T00:32:03.433] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:32:03.441] [INFO] cheese - inserting 1000 documents. first: German submarine UC 4 and last: Wikipedia:Sockpuppet investigations/Rave92/Archive -[2018-02-13T00:32:03.499] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:32:03.504] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:32:03.534] [INFO] cheese - inserting 1000 documents. first: Peace Sign (Rick Ross song) and last: Jakub Bargiełowski -[2018-02-13T00:32:03.594] [INFO] cheese - inserting 1000 documents. first: Pristimantis shrevei and last: Physalaemus barbouri -[2018-02-13T00:32:03.597] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:32:03.643] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:32:03.820] [INFO] cheese - inserting 1000 documents. first: Three principles of the people and last: Capital punishment in sri lanka -[2018-02-13T00:32:03.867] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:32:03.876] [INFO] cheese - inserting 1000 documents. first: Gazdunuiyeh and last: United States House of Representatives elections in Maine, 1898 -[2018-02-13T00:32:03.967] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:32:03.971] [INFO] cheese - inserting 1000 documents. first: Nitropyrene and last: Yalegoda -[2018-02-13T00:32:03.971] [INFO] cheese - inserting 1000 documents. first: My Side of Your Window and last: Iodotyrosine deiodinase -[2018-02-13T00:32:04.054] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:32:04.044] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:32:04.234] [INFO] cheese - inserting 1000 documents. first: Physalaemus fuscomaculatus and last: Core (India) -[2018-02-13T00:32:04.236] [INFO] cheese - inserting 1000 documents. first: After Love (1948 film) and last: Wikipedia:Sockpuppet investigations/Taichi1 -[2018-02-13T00:32:04.288] [INFO] cheese - inserting 1000 documents. first: Churchville, Ontario and last: Intercal -[2018-02-13T00:32:04.303] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:04.313] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:32:04.441] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T00:32:04.536] [INFO] cheese - inserting 1000 documents. first: Peerage of England and Ireland in 1350 and last: File:Ceramichill 4.jpg -[2018-02-13T00:32:04.623] [INFO] cheese - inserting 1000 documents. first: Assyrian Religion and last: Wikipedia:Articles for deletion/Axototl -[2018-02-13T00:32:04.628] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:04.713] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:32:04.920] [INFO] cheese - inserting 1000 documents. first: Hettigammedda and last: File:Inca scene vidunderlige kartoffel.png -[2018-02-13T00:32:04.961] [INFO] cheese - inserting 1000 documents. first: File:Lily Allen - The Fear.png and last: Ho-Pei Circuit -[2018-02-13T00:32:04.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Old-time Base Ball articles by quality statistics and last: Scutiger brevipes -[2018-02-13T00:32:04.997] [INFO] cheese - inserting 1000 documents. first: Category:Tucker family and last: Vinda International Holdings -[2018-02-13T00:32:05.012] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T00:32:05.070] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:32:05.099] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:32:05.104] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T00:32:05.202] [INFO] cheese - inserting 1000 documents. first: Payson, Arizona micropolitan area and last: Mazra'eh-ye Shahid Beheshti -[2018-02-13T00:32:05.285] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:32:05.410] [INFO] cheese - inserting 1000 documents. first: Marquee and last: Friedrich Ludwig, Fürst zu Hohenlohe-Ingelfingen -[2018-02-13T00:32:05.494] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:32:05.528] [INFO] cheese - inserting 1000 documents. first: The Del Satins and last: Luzon narrow-mouthed frog -[2018-02-13T00:32:05.573] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:05.578] [INFO] cheese - inserting 1000 documents. first: Ho-pei circuit and last: Hinnanit -[2018-02-13T00:32:05.620] [INFO] cheese - inserting 1000 documents. first: Template:Kaitseväe harjutusväljad and last: Lactarius (Lactariidae) -[2018-02-13T00:32:05.635] [INFO] cheese - inserting 1000 documents. first: International emergency medicine and last: The Moss -[2018-02-13T00:32:05.639] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:32:05.654] [INFO] cheese - inserting 1000 documents. first: List of Lincoln City F.C. players (25-99 appearances) and last: Zbu language -[2018-02-13T00:32:05.686] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:32:05.702] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:32:05.735] [INFO] cheese - batch complete in: 1.294 secs -[2018-02-13T00:32:05.757] [INFO] cheese - inserting 1000 documents. first: Georgia marble and last: Crownies -[2018-02-13T00:32:05.823] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:32:05.920] [INFO] cheese - inserting 1000 documents. first: Kaloula rigida and last: Volcano clawed frog -[2018-02-13T00:32:05.995] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:32:06.011] [INFO] cheese - inserting 1000 documents. first: Bjørkelangen and last: Lockheed weapons scandal -[2018-02-13T00:32:06.087] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/zachimalawi.blogspot.fi and last: Category:Films directed by Robert Bibal -[2018-02-13T00:32:06.109] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:32:06.164] [INFO] cheese - inserting 1000 documents. first: Torn meniscus and last: Category:Gallaudet University people -[2018-02-13T00:32:06.217] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:32:06.254] [INFO] cheese - inserting 1000 documents. first: Showu language and last: Category:1935 in Greek sport -[2018-02-13T00:32:06.338] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:32:06.388] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:32:06.441] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2011 January 15 and last: Harold Hippisley -[2018-02-13T00:32:06.541] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:32:06.599] [INFO] cheese - inserting 1000 documents. first: The Cyclops (film) and last: Category:Treasure troves of Italy -[2018-02-13T00:32:06.748] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:32:06.847] [INFO] cheese - inserting 1000 documents. first: Category:People from Korça and last: Lombard Tuscany -[2018-02-13T00:32:06.903] [INFO] cheese - inserting 1000 documents. first: Ulrich von Brockdorff-Rantzau and last: The Legend Of Zelda: Oracle of Ages -[2018-02-13T00:32:06.921] [INFO] cheese - inserting 1000 documents. first: Desenchantee and last: Wikipedia:Articles for deletion/Monica François -[2018-02-13T00:32:06.948] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:32:07.077] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:32:07.105] [INFO] cheese - batch complete in: 1.37 secs -[2018-02-13T00:32:07.142] [INFO] cheese - inserting 1000 documents. first: Category:1930 in Greek sport and last: UFO sightings in India -[2018-02-13T00:32:07.289] [INFO] cheese - inserting 1000 documents. first: Percival hall and last: Portal:United States Air Force/picture/2009March -[2018-02-13T00:32:07.300] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:32:07.414] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:32:07.459] [INFO] cheese - inserting 1000 documents. first: Kåre Karlsson and last: Katana Divisional Secretariat -[2018-02-13T00:32:07.546] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:32:07.671] [INFO] cheese - inserting 1000 documents. first: Michael Audreson and last: Sanctuary of the Madonna di San Luca -[2018-02-13T00:32:07.760] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:32:07.804] [INFO] cheese - inserting 1000 documents. first: C.K. Colley and last: Category:Pegnitz basin -[2018-02-13T00:32:07.843] [INFO] cheese - inserting 1000 documents. first: Hecla, Kentucky and last: Astoria, Oregon micropolitan area -[2018-02-13T00:32:07.878] [INFO] cheese - inserting 1000 documents. first: Pete Lesperance and last: The Long Arm of Looney Coote -[2018-02-13T00:32:07.890] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:32:07.895] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:32:07.970] [INFO] cheese - inserting 1000 documents. first: Ruta Bloomfield and last: Department of the Environment, Transport and the Regions -[2018-02-13T00:32:08.013] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:32:08.045] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:32:08.331] [INFO] cheese - inserting 1000 documents. first: Phnum Srok District and last: Ptychadena wadei -[2018-02-13T00:32:08.370] [INFO] cheese - inserting 1000 documents. first: Kelaniya Divisional Secretariat and last: Koren Jelila Yal -[2018-02-13T00:32:08.388] [INFO] cheese - inserting 1000 documents. first: Laramie, Wyoming micropolitan area and last: Anton Šoltis -[2018-02-13T00:32:08.419] [INFO] cheese - inserting 1000 documents. first: Last House on the Left and last: Voronoi diagrams -[2018-02-13T00:32:08.420] [INFO] cheese - inserting 1000 documents. first: Category:Merchant ships of Fiji and last: File:EastBayPioneers.png -[2018-02-13T00:32:08.437] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:32:08.449] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:08.499] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T00:32:08.526] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:32:08.609] [INFO] cheese - batch complete in: 1.504 secs -[2018-02-13T00:32:08.699] [INFO] cheese - inserting 1000 documents. first: Fenstock and last: USS Winifred -[2018-02-13T00:32:08.802] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:32:08.840] [INFO] cheese - inserting 1000 documents. first: Derrick Alexander (wide receiver) and last: Dj Friction -[2018-02-13T00:32:08.884] [INFO] cheese - inserting 1000 documents. first: African bullfrog and last: Category:Staurois -[2018-02-13T00:32:08.965] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:32:08.967] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:32:09.174] [INFO] cheese - inserting 1000 documents. first: Trichoclystis peregrina and last: Template:EB1911 poster/sandbox -[2018-02-13T00:32:09.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2015 November 19 and last: Peru at the 2017 World Games -[2018-02-13T00:32:09.243] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:32:09.291] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:32:09.357] [INFO] cheese - inserting 1000 documents. first: Koren Jelila and last: IsDate -[2018-02-13T00:32:09.380] [INFO] cheese - inserting 1000 documents. first: Wörterbuch der ägyptischen Sprache and last: Papua conflict -[2018-02-13T00:32:09.425] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:32:09.471] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T00:32:09.611] [INFO] cheese - inserting 1000 documents. first: Staurois natator and last: Kita-Asahikawa Freight Terminal -[2018-02-13T00:32:09.724] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:32:09.755] [INFO] cheese - inserting 1000 documents. first: Black Lake Dene Nation and last: David C. Steinmetz -[2018-02-13T00:32:09.771] [INFO] cheese - inserting 1000 documents. first: Treaty of San Ildefonse and last: Broadcasting, Entertainment, Cinematograph and Theatre Union -[2018-02-13T00:32:09.805] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:09.845] [INFO] cheese - inserting 1000 documents. first: Club Portugalete and last: Deutsche Volksunion -[2018-02-13T00:32:09.878] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T00:32:09.896] [INFO] cheese - inserting 1000 documents. first: Zhang Chunzhen and last: A4135 -[2018-02-13T00:32:09.970] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:32:09.996] [INFO] cheese - inserting 1000 documents. first: File:TheRaceOfTheTiger.jpg and last: Callum Lancaster -[2018-02-13T00:32:10.027] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:32:10.107] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:32:10.213] [INFO] cheese - inserting 1000 documents. first: Frank Rooney and last: Guadahortuna, Spain -[2018-02-13T00:32:10.251] [INFO] cheese - inserting 1000 documents. first: Category:1977 in Pakistani sport and last: Compagnie des Forges et Chantiers de la Méditerranée -[2018-02-13T00:32:10.278] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:32:10.308] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:10.463] [INFO] cheese - inserting 1000 documents. first: Architects in fiction and last: Thomas Christie -[2018-02-13T00:32:10.539] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:32:10.572] [INFO] cheese - inserting 1000 documents. first: A4138 and last: George C Beresford -[2018-02-13T00:32:10.627] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:32:10.714] [INFO] cheese - inserting 1000 documents. first: Carakale Brewing Company and last: File:Devendra Banhart - Mala.jpg -[2018-02-13T00:32:10.730] [INFO] cheese - inserting 1000 documents. first: List of triumphal arches (provincial) and last: Dvals -[2018-02-13T00:32:10.760] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:32:10.801] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:32:10.826] [INFO] cheese - inserting 1000 documents. first: Q'umirqucha (Q'umir Qucha) and last: Convertible husbandry -[2018-02-13T00:32:10.900] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:32:10.908] [INFO] cheese - inserting 1000 documents. first: Category:People from Porédaka and last: Georgia State Route 342 -[2018-02-13T00:32:10.970] [INFO] cheese - inserting 1000 documents. first: Marist College (disambiguation) and last: Template:Islands of the Clyde -[2018-02-13T00:32:10.971] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:32:11.008] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:32:11.140] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topic outline/Drafts/Topic outline of Samoa and last: Czarne Pustkowie -[2018-02-13T00:32:11.190] [INFO] cheese - inserting 1000 documents. first: Beretta 9000S Type F40 and last: Mohammed Neguib -[2018-02-13T00:32:11.243] [INFO] cheese - inserting 1000 documents. first: Category:Griptonite Games and last: Lucien Ceyssens -[2018-02-13T00:32:11.277] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:32:11.299] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:32:11.328] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T00:32:11.376] [INFO] cheese - inserting 1000 documents. first: Ministry of Communications of Pakistan and last: Sound and Vision India -[2018-02-13T00:32:11.413] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:32:11.421] [INFO] cheese - inserting 1000 documents. first: Jim Cornelison and last: File:Milosevic on Trial.jpg -[2018-02-13T00:32:11.437] [INFO] cheese - inserting 1000 documents. first: Dark Canyon Wilderness and last: Decimal fraction -[2018-02-13T00:32:11.455] [INFO] cheese - inserting 1000 documents. first: Thornburg Middle School and last: Rufous-bellied nighthawk -[2018-02-13T00:32:11.473] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:11.500] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:32:11.558] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:32:11.709] [INFO] cheese - inserting 1000 documents. first: Częstkowo and last: Stara Dąbrowa, Pomeranian Voivodeship -[2018-02-13T00:32:11.717] [INFO] cheese - inserting 1000 documents. first: Category:1965 establishments in Albania and last: File:TheWellTemperedCriticFrye.jpg -[2018-02-13T00:32:11.752] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:32:11.764] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:32:11.820] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Great Eastern Hotel (Kolkata) and last: Petro Atlético Handball -[2018-02-13T00:32:11.852] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:32:11.899] [INFO] cheese - inserting 1000 documents. first: Edinburgh Royal Infirmary and last: Saint Helena petrel -[2018-02-13T00:32:11.932] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:12.027] [INFO] cheese - inserting 1000 documents. first: John Franklin Baker, Jr. and last: Wikipedia:WikiProject Spam/LinkReports/apocalypsesurvivalteam.webs.com -[2018-02-13T00:32:12.098] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:12.106] [INFO] cheese - inserting 1000 documents. first: Olympic Ski jumping and last: New York City Panel for Educational Policy -[2018-02-13T00:32:12.151] [INFO] cheese - inserting 1000 documents. first: Joseph Tobji and last: File:TimeAndChance.jpg -[2018-02-13T00:32:12.185] [INFO] cheese - inserting 1000 documents. first: Husayn Fawzi Alnajjar and last: Toni Bernardó -[2018-02-13T00:32:12.193] [INFO] cheese - inserting 1000 documents. first: Strzyżyno and last: Grigory Helbach -[2018-02-13T00:32:12.204] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:32:12.242] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:32:12.273] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:32:12.336] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:32:12.359] [INFO] cheese - inserting 1000 documents. first: Category:People by place and last: Phyllastrephus cerviniventris -[2018-02-13T00:32:12.428] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:32:12.601] [INFO] cheese - inserting 1000 documents. first: Kornel Ujejski and last: The Merv Griffin Show -[2018-02-13T00:32:12.702] [INFO] cheese - inserting 1000 documents. first: Category:The Boston Globe people and last: Khorol'skiy -[2018-02-13T00:32:12.751] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T00:32:12.787] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:32:12.941] [INFO] cheese - inserting 1000 documents. first: Point defense and last: McLeod Center -[2018-02-13T00:32:12.976] [INFO] cheese - inserting 1000 documents. first: Alocolytoceratinae and last: Category:Hell in a Cell -[2018-02-13T00:32:13.019] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:32:13.004] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:32:13.074] [INFO] cheese - inserting 1000 documents. first: Marjorie Sigley and last: Arnd Peiffer -[2018-02-13T00:32:13.099] [INFO] cheese - inserting 1000 documents. first: Lowland tiny greenbul and last: Mental map -[2018-02-13T00:32:13.141] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:32:13.142] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:32:13.242] [INFO] cheese - inserting 1000 documents. first: Rakovac (Beočin) and last: Kala Savage -[2018-02-13T00:32:13.319] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:32:13.363] [INFO] cheese - inserting 1000 documents. first: Khorol'ski and last: Battle of Seven Oaks (1816) -[2018-02-13T00:32:13.417] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:32:13.472] [INFO] cheese - inserting 1000 documents. first: Shared services agreement and last: Oslo–Gardermoen -[2018-02-13T00:32:13.485] [INFO] cheese - inserting 1000 documents. first: Combined pulmonary fibrosis and emphysema and last: Category:AfC submissions by date/16 November 2009 -[2018-02-13T00:32:13.499] [INFO] cheese - inserting 1000 documents. first: Hvassaleiti and last: Lilac-crowned fruit dove -[2018-02-13T00:32:13.528] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:32:13.527] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:13.565] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:13.597] [INFO] cheese - inserting 1000 documents. first: Nadia Ivonne Lopez and last: Gene Littles -[2018-02-13T00:32:13.628] [INFO] cheese - inserting 1000 documents. first: International political economy and last: Youth work -[2018-02-13T00:32:13.645] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:32:13.696] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T00:32:13.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Juan Gossaín and last: File:Belle Le Grand poster.jpg -[2018-02-13T00:32:13.761] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:32:13.810] [INFO] cheese - inserting 1000 documents. first: Ore no Kanojo and last: Turkmenian Weasel -[2018-02-13T00:32:13.856] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:32:13.899] [INFO] cheese - inserting 1000 documents. first: Ptilinopus rarotongensis and last: Stephen Hytner -[2018-02-13T00:32:13.911] [INFO] cheese - inserting 1000 documents. first: Tâmega river and last: Sleep clock -[2018-02-13T00:32:13.943] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:32:13.955] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/24 November 2009 and last: The Cameron Files: Pharaoh's Curse -[2018-02-13T00:32:13.972] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:32:14.060] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:32:14.119] [INFO] cheese - inserting 1000 documents. first: List of Nigerian jurist and last: Template:Did you know nominations/Gärdslösa Church -[2018-02-13T00:32:14.155] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:32:14.160] [INFO] cheese - inserting 1000 documents. first: David michael maurer and last: 2006 in Swiss music -[2018-02-13T00:32:14.246] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:32:14.310] [INFO] cheese - inserting 1000 documents. first: File:Fire & Movement magazine, 10th anniversary edition, number 49, July-Aug 1986, cover page, Trial of Strength.jpg and last: Dorin Recean -[2018-02-13T00:32:14.355] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:32:14.361] [INFO] cheese - inserting 1000 documents. first: Vitali class and last: Alcippe pyrrhoptera -[2018-02-13T00:32:14.404] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:32:14.485] [INFO] cheese - inserting 1000 documents. first: Vanderkaay and last: Political parties in Dominican Republic -[2018-02-13T00:32:14.538] [INFO] cheese - inserting 1000 documents. first: Joel Bennett and last: Jim Steranko bibliography -[2018-02-13T00:32:14.570] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:32:14.601] [INFO] cheese - inserting 1000 documents. first: Portal:Liquor/Header and last: Adreview -[2018-02-13T00:32:14.662] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:32:14.713] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:32:14.828] [INFO] cheese - inserting 1000 documents. first: Chien Chang and last: Category:Antiques shows in the United States -[2018-02-13T00:32:14.858] [INFO] cheese - inserting 1000 documents. first: Spectacled fulvetta and last: Ray Gabelich -[2018-02-13T00:32:14.875] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:32:14.877] [INFO] cheese - inserting 1000 documents. first: Ella Grasso and last: Adorno family -[2018-02-13T00:32:14.925] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:32:14.966] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T00:32:15.136] [INFO] cheese - inserting 1000 documents. first: List of TIME Magazine's 100 most influential people of the 20th century and last: Syro-Malankarese Catholic Church -[2018-02-13T00:32:15.195] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Chemicals/Log/2009-02-24 and last: Prince of Al Zengi Dynasty -[2018-02-13T00:32:15.202] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwe education navigational boxes and last: Malaysian Australian -[2018-02-13T00:32:15.205] [INFO] cheese - inserting 1000 documents. first: Graceanna Lewis and last: Wikipedia:Articles for deletion/Lewis Nicholls -[2018-02-13T00:32:15.263] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T00:32:15.328] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:32:15.336] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:32:15.323] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:32:15.418] [INFO] cheese - inserting 1000 documents. first: COSPAR ID and last: Snout radical -[2018-02-13T00:32:15.500] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:15.670] [INFO] cheese - inserting 1000 documents. first: Government of Manitoba and last: Campylorhamphus falcularius -[2018-02-13T00:32:15.723] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:32:15.794] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of Mower County, Minnesota and last: ABS-CBN Publishing, Inc. -[2018-02-13T00:32:15.814] [INFO] cheese - inserting 1000 documents. first: German Occupation and last: Smat -[2018-02-13T00:32:15.831] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:32:15.852] [INFO] cheese - inserting 1000 documents. first: Category:1298 establishments in England and last: Dinosaurichnium -[2018-02-13T00:32:15.875] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:32:15.894] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:32:15.909] [INFO] cheese - inserting 1000 documents. first: Portal:Film in the United States/Projects and last: Gulf of Gwadar -[2018-02-13T00:32:15.935] [INFO] cheese - inserting 1000 documents. first: Mike Howlett and last: Fall of France -[2018-02-13T00:32:15.953] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:32:15.977] [INFO] cheese - inserting 1000 documents. first: Greene Washington Caldwell and last: Namhae Chemical Corporation -[2018-02-13T00:32:16.003] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:32:16.030] [INFO] cheese - inserting 1000 documents. first: Campylorhamphus and last: Milos Marić -[2018-02-13T00:32:16.028] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:32:16.101] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:32:16.276] [INFO] cheese - inserting 1000 documents. first: St. Elizabeth Seton School (Naples, Florida) and last: Oklahoma Mansion -[2018-02-13T00:32:16.277] [INFO] cheese - inserting 1000 documents. first: Frances James and last: Cramer V -[2018-02-13T00:32:16.307] [INFO] cheese - inserting 1000 documents. first: Kang Mee-sun and last: File:ITV Hub Logo.png -[2018-02-13T00:32:16.309] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:32:16.311] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:32:16.354] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:16.466] [INFO] cheese - inserting 1000 documents. first: File:Private party album.jpg and last: Template:Did you know nominations/Heroes for Sale (Andy Mineo album) -[2018-02-13T00:32:16.534] [INFO] cheese - inserting 1000 documents. first: Lesser green leafbird and last: Fidelma Healy Eames -[2018-02-13T00:32:16.536] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:32:16.627] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:32:16.652] [INFO] cheese - inserting 1000 documents. first: Football in South Australia and last: Soul Sonic Force -[2018-02-13T00:32:16.708] [INFO] cheese - inserting 1000 documents. first: Cramer V (statistics) and last: Farra Design Center -[2018-02-13T00:32:16.714] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Wilkin County, Minnesota and last: Ireland national rugby league team match results -[2018-02-13T00:32:16.720] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:32:16.758] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:32:16.771] [INFO] cheese - inserting 1000 documents. first: Owen Coffin and last: Hendrickson (disambiguation) -[2018-02-13T00:32:16.775] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:32:16.841] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:32:16.853] [INFO] cheese - inserting 1000 documents. first: Two-seam fastball and last: Cael Sanderson -[2018-02-13T00:32:16.880] [INFO] cheese - inserting 1000 documents. first: Category:Polish South African and last: Category:Wetlands of the Gambia -[2018-02-13T00:32:16.926] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:32:16.957] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:32:17.027] [INFO] cheese - inserting 1000 documents. first: Radomil River and last: Cpuz -[2018-02-13T00:32:17.084] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:32:17.159] [INFO] cheese - inserting 1000 documents. first: Charles Morgan Williams and last: Minuscule 819 (Gregory-Aland) -[2018-02-13T00:32:17.184] [INFO] cheese - inserting 1000 documents. first: Category:People from Ennedi-Ouest Region and last: Isopogon uncinatus -[2018-02-13T00:32:17.208] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:32:17.232] [INFO] cheese - inserting 1000 documents. first: Dynamic data and last: Palais Mollard-Clary -[2018-02-13T00:32:17.240] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:32:17.268] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic groups in Pittsburgh and last: Cerro Sentilo -[2018-02-13T00:32:17.304] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:32:17.318] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:32:17.352] [INFO] cheese - inserting 1000 documents. first: Hb S and last: Category:21st century in Zagreb -[2018-02-13T00:32:17.401] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:32:17.522] [INFO] cheese - inserting 1000 documents. first: Delichon nipalense and last: Euneornis campestris -[2018-02-13T00:32:17.627] [INFO] cheese - inserting 1000 documents. first: Essex Church and last: File:Secondary Music School in Tuzla.jpg -[2018-02-13T00:32:17.649] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:32:17.690] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:32:17.709] [INFO] cheese - inserting 1000 documents. first: Job Shadowing and last: August Imgard -[2018-02-13T00:32:17.746] [INFO] cheese - inserting 1000 documents. first: Zuph and last: Sacix -[2018-02-13T00:32:17.750] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:17.752] [INFO] cheese - inserting 1000 documents. first: Category:Women philatelists and last: Draft:Ninth generation of video game consoles -[2018-02-13T00:32:17.802] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:17.816] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:32:17.826] [INFO] cheese - inserting 1000 documents. first: Bert Boeckmann and last: Atatürk Int'l Airport -[2018-02-13T00:32:17.855] [INFO] cheese - inserting 1000 documents. first: Lump In My Throat and last: File:Treebeard.jpg -[2018-02-13T00:32:17.877] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:32:17.924] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:32:17.992] [INFO] cheese - inserting 1000 documents. first: Euneornis and last: Smoke screening -[2018-02-13T00:32:18.051] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:32:18.123] [INFO] cheese - inserting 1000 documents. first: Category:1950s in Iceland and last: The Seventh Curse (film) -[2018-02-13T00:32:18.170] [INFO] cheese - inserting 1000 documents. first: Boston Bombings and last: Absaroka (state) -[2018-02-13T00:32:18.176] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:32:18.193] [INFO] cheese - inserting 1000 documents. first: Fulvio Caccia and last: Wikipedia:Reference desk/Archives/Computing/2015 November 25 -[2018-02-13T00:32:18.225] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:32:18.264] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:18.342] [INFO] cheese - inserting 1000 documents. first: Ataturk Int'l Airport and last: File:BurgerTime arcadeflyer.png -[2018-02-13T00:32:18.381] [INFO] cheese - inserting 1000 documents. first: LUCT and last: Black-and-rufous swallow -[2018-02-13T00:32:18.399] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:32:18.422] [INFO] cheese - inserting 1000 documents. first: Ү and last: List of tropical cyclone spawned tornadoes -[2018-02-13T00:32:18.421] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:32:18.496] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:18.609] [INFO] cheese - inserting 1000 documents. first: Stanley Cowie and last: National Register of Historic Places listings in Clinton County, Michigan -[2018-02-13T00:32:18.636] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2015 December 2 and last: Category:Sunset Boulevard (Los Angeles) -[2018-02-13T00:32:18.660] [INFO] cheese - inserting 1000 documents. first: Category:American female serial killers and last: Recife Dollabarat -[2018-02-13T00:32:18.704] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:32:18.707] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:32:18.769] [INFO] cheese - inserting 1000 documents. first: BB&T Ballpark at Historic Bowman Field and last: GNB -[2018-02-13T00:32:18.796] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:18.897] [INFO] cheese - inserting 1000 documents. first: Hirundo nigrorufa and last: Drake (elm cultivar) -[2018-02-13T00:32:18.911] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:32:18.980] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:32:18.983] [INFO] cheese - inserting 1000 documents. first: Birgitta Johansson and last: Richard Enslen -[2018-02-13T00:32:19.098] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:32:19.308] [INFO] cheese - inserting 1000 documents. first: David Higgins (composer) and last: Luxembourg National Division -[2018-02-13T00:32:19.375] [INFO] cheese - inserting 1000 documents. first: Oakview and last: Abatski -[2018-02-13T00:32:19.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple chlorpromazine and last: Category:People from Lacs District -[2018-02-13T00:32:19.393] [INFO] cheese - inserting 1000 documents. first: List of Michigan State Historic Sites in Clinton County and last: Pinyon Canyon Maneuver Site -[2018-02-13T00:32:19.393] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:32:19.463] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:32:19.497] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:32:19.510] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:32:19.569] [INFO] cheese - inserting 1000 documents. first: Richard Gholson and last: Category:Valleys of South Africa -[2018-02-13T00:32:19.644] [INFO] cheese - inserting 1000 documents. first: Albert runcorn and last: Category:B-Class Low-importance Pornography articles -[2018-02-13T00:32:19.654] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:32:19.696] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:32:19.822] [INFO] cheese - inserting 1000 documents. first: Lolth and last: Western front -[2018-02-13T00:32:19.872] [INFO] cheese - inserting 1000 documents. first: Eric B. Minier and last: Seven years’ war -[2018-02-13T00:32:19.880] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:32:19.907] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:32:19.918] [INFO] cheese - inserting 1000 documents. first: Abatskii and last: Pepdidyl carboxyamidase -[2018-02-13T00:32:19.955] [INFO] cheese - inserting 1000 documents. first: Bromley Rock Provincial Park and last: Ja'afar Abdul El Hakh -[2018-02-13T00:32:19.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Freud and Religion and last: Cowper ministry (1870) -[2018-02-13T00:32:19.967] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:32:19.974] [INFO] cheese - inserting 1000 documents. first: Huon melidectes and last: Myioborus pariae -[2018-02-13T00:32:20.005] [INFO] cheese - batch complete in: 0.309 secs -[2018-02-13T00:32:20.009] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:32:20.030] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:32:20.069] [INFO] cheese - inserting 1000 documents. first: File:Shimkent hôtel poster.jpg and last: Rector (college) -[2018-02-13T00:32:20.121] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:32:20.333] [INFO] cheese - inserting 1000 documents. first: Beach starwort and last: 2014 CS Warsaw Cup -[2018-02-13T00:32:20.373] [INFO] cheese - inserting 1000 documents. first: Baird's flycatcher and last: Nectarinia thomensis -[2018-02-13T00:32:20.436] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:32:20.451] [INFO] cheese - inserting 1000 documents. first: Bidan, Kuhbanan and last: Category:Fichtel Mountains -[2018-02-13T00:32:20.479] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:20.607] [INFO] cheese - inserting 1000 documents. first: Mohamed Kassas and last: Yin Ts'ang -[2018-02-13T00:32:20.651] [INFO] cheese - inserting 1000 documents. first: James Boswell (disambiguation) and last: File:Donwinslowof1.jpg -[2018-02-13T00:32:20.682] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:20.724] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:32:20.761] [INFO] cheese - inserting 1000 documents. first: Gastrophryne and last: Status of Women Canada -[2018-02-13T00:32:20.765] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:32:20.869] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:32:20.982] [INFO] cheese - inserting 1000 documents. first: Imperial pint and last: The Buzz -[2018-02-13T00:32:21.093] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T00:32:21.166] [INFO] cheese - inserting 1000 documents. first: Ursula's sunbird and last: Honor Code (NCIS) -[2018-02-13T00:32:21.214] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:32:21.262] [INFO] cheese - inserting 1000 documents. first: Avalon Landing and last: Wikipedia:Suspected copyright violations/2011-01-25 -[2018-02-13T00:32:21.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Close and last: Sociotechnical -[2018-02-13T00:32:21.329] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:32:21.365] [INFO] cheese - inserting 1000 documents. first: 2016 Hobart International and last: Category:Sub-prefectures of Nawa Region -[2018-02-13T00:32:21.374] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:32:21.449] [INFO] cheese - inserting 1000 documents. first: Conoppia palmicinctum and last: File:PoultryBTS.jpg -[2018-02-13T00:32:21.504] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T00:32:21.551] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:32:21.600] [INFO] cheese - inserting 1000 documents. first: Metropolitan Police Act 1839 and last: Arkansas razorback -[2018-02-13T00:32:21.715] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:32:21.786] [INFO] cheese - inserting 1000 documents. first: Valea Boului River (Vasilatu) and last: Lorzem -[2018-02-13T00:32:21.852] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:32:21.989] [INFO] cheese - inserting 1000 documents. first: Socio-technical and last: File:MapleCore Company Logo in Red.jpg -[2018-02-13T00:32:21.996] [INFO] cheese - inserting 1000 documents. first: Venus (Belgian band) and last: Category:Beer brewing companies based in Utah -[2018-02-13T00:32:22.002] [INFO] cheese - inserting 1000 documents. first: Bill Cahr and last: Sanxia Old Street -[2018-02-13T00:32:22.076] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:22.082] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:32:22.079] [INFO] cheese - inserting 1000 documents. first: Thai Border Patrol Police and last: Forever Mery -[2018-02-13T00:32:22.116] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:32:22.158] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:32:22.238] [INFO] cheese - inserting 1000 documents. first: Lombardi Trophy and last: Felipe Massa -[2018-02-13T00:32:22.357] [INFO] cheese - batch complete in: 1.264 secs -[2018-02-13T00:32:22.394] [INFO] cheese - inserting 1000 documents. first: Phrygilus dorsalis and last: Spot-breasted scimitar babbler -[2018-02-13T00:32:22.434] [INFO] cheese - inserting 1000 documents. first: File:Interior of Biosphere 2.jpg and last: October 31, 2004 -[2018-02-13T00:32:22.459] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:32:22.535] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:32:22.597] [INFO] cheese - inserting 1000 documents. first: PMPC Star Award for Best Drama Actor and Actress and last: Category:Portugal government stubs -[2018-02-13T00:32:22.612] [INFO] cheese - inserting 1000 documents. first: Joseph Eron Irenas and last: Tunable resistive pulse sensing -[2018-02-13T00:32:22.648] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:22.666] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:32:22.736] [INFO] cheese - inserting 1000 documents. first: County roads in Ontario and last: Płowce, Warmian-Masurian Voivodeship -[2018-02-13T00:32:22.797] [INFO] cheese - inserting 1000 documents. first: WQBC and last: Wikipedia:London Gazette Index/16/1676 -[2018-02-13T00:32:22.814] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:32:22.875] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:32:22.941] [INFO] cheese - inserting 1000 documents. first: Suyai Steinhaue and last: MediaWiki:HighlightEditSections.js -[2018-02-13T00:32:22.992] [INFO] cheese - inserting 1000 documents. first: Angelo Cannavacciuolo and last: Thomas Gerald Pickavance -[2018-02-13T00:32:23.020] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:32:23.076] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:32:23.229] [INFO] cheese - inserting 1000 documents. first: To Young Men Only and last: R536 road (South Africa) -[2018-02-13T00:32:23.283] [INFO] cheese - inserting 1000 documents. first: Eu four freedoms and last: Gunkanjima -[2018-02-13T00:32:23.322] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:32:23.405] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:32:23.415] [INFO] cheese - inserting 1000 documents. first: Rogale, Ełk County and last: File:UMPIRING AT THE OLD TRAFFORD .jpg -[2018-02-13T00:32:23.516] [INFO] cheese - inserting 1000 documents. first: Möbius mu function and last: Interstate 696 -[2018-02-13T00:32:23.611] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:32:23.667] [INFO] cheese - inserting 1000 documents. first: File:A Day Late and a Dollar Short (The Queers album - cover art).jpg and last: Category:Central Coast, New South Wales geography stubs -[2018-02-13T00:32:23.687] [INFO] cheese - batch complete in: 1.329 secs -[2018-02-13T00:32:23.758] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:32:23.802] [INFO] cheese - inserting 1000 documents. first: Bridgeport, Montgomery County, Pennsylvania and last: No. 101 Squadron IAF -[2018-02-13T00:32:23.895] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:32:23.948] [INFO] cheese - inserting 1000 documents. first: Category:1698 in music and last: Olombelona Ricky -[2018-02-13T00:32:24.003] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:32:24.092] [INFO] cheese - inserting 1000 documents. first: 2004 Tercera División play-offs and last: Category:1609 establishments by country -[2018-02-13T00:32:24.111] [INFO] cheese - inserting 1000 documents. first: Damian Johnson (broadcaster) and last: Digital Britain -[2018-02-13T00:32:24.132] [INFO] cheese - inserting 1000 documents. first: File:Port modification.JPG and last: Northern red currant -[2018-02-13T00:32:24.166] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T00:32:24.181] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:32:24.228] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:32:24.258] [INFO] cheese - inserting 1000 documents. first: Template:CentralCoastNSW-geo-stub and last: Borivoje Djordjević -[2018-02-13T00:32:24.328] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:32:24.349] [INFO] cheese - inserting 1000 documents. first: Mlecchita vikalpa and last: File:2005 IIHF World Championship logo.svg -[2018-02-13T00:32:24.498] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:32:24.518] [INFO] cheese - inserting 1000 documents. first: Like Father Like Son (film) and last: Category:21st-century executions by Arkansas -[2018-02-13T00:32:24.599] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:32:24.632] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg Conservatory and last: Hawk (aircraft) -[2018-02-13T00:32:24.765] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:32:24.776] [INFO] cheese - inserting 1000 documents. first: File:Prime Cuts Peter Lang.jpg and last: Lira Calabrese -[2018-02-13T00:32:24.838] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:32:24.851] [INFO] cheese - inserting 1000 documents. first: 嵇康 and last: Category:People from Miaoli County -[2018-02-13T00:32:24.863] [INFO] cheese - inserting 1000 documents. first: Papuan scrubwren and last: Syndactyla guttulata -[2018-02-13T00:32:24.909] [INFO] cheese - inserting 1000 documents. first: Hans ferlitsch and last: Shah of Bratpuhr -[2018-02-13T00:32:24.939] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:32:24.959] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:32:24.983] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:32:24.985] [INFO] cheese - inserting 1000 documents. first: Category:1932–33 in Turkish football and last: Chlorolestes nylephtha -[2018-02-13T00:32:25.023] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:25.099] [INFO] cheese - inserting 1000 documents. first: 1993 Kazakhstan Cup Final and last: Wikipedia:Wiki Ed/Connecticut College/The Net Generation (fall 2015) -[2018-02-13T00:32:25.181] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:32:25.295] [INFO] cheese - inserting 1000 documents. first: Toltec cotton rat and last: Linwood, Howard County, Maryland -[2018-02-13T00:32:25.350] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:32:25.435] [INFO] cheese - inserting 1000 documents. first: Category:Straits of Papua New Guinea and last: Sulawesi babbler -[2018-02-13T00:32:25.444] [INFO] cheese - inserting 1000 documents. first: 1976 Liberty Bowl and last: Junior Bowl -[2018-02-13T00:32:25.500] [INFO] cheese - inserting 1000 documents. first: Paul Johnson (politician) and last: Thomaston, GA Micropolitan Statistical Area -[2018-02-13T00:32:25.500] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:32:25.524] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:32:25.566] [INFO] cheese - inserting 1000 documents. first: Julia Stegner and last: Steeplecab -[2018-02-13T00:32:25.568] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:32:25.631] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:32:25.648] [INFO] cheese - inserting 1000 documents. first: Norman Nicholson and last: Papilio rutulus -[2018-02-13T00:32:25.728] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:32:25.743] [INFO] cheese - inserting 1000 documents. first: The Free Rider Problem and last: XHES-FM -[2018-02-13T00:32:25.808] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:32:25.818] [INFO] cheese - inserting 1000 documents. first: Xfm UK and last: Wikipedia:Peer review/Cleveland Indians/archive3 -[2018-02-13T00:32:25.888] [INFO] cheese - inserting 1000 documents. first: Trichastoma celebense and last: Starship Children's Hospital -[2018-02-13T00:32:25.888] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:32:25.911] [INFO] cheese - inserting 1000 documents. first: Grow Up (Paramore song) and last: Constituency NA-222 -[2018-02-13T00:32:25.930] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:32:25.946] [INFO] cheese - inserting 1000 documents. first: CD Arenas de Frajanas and last: Wikipedia:WikiProject Food and drink/Beverages Task Force/WikiProject Coca-Cola/Article alerts/Archive -[2018-02-13T00:32:25.970] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:32:26.040] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:32:26.115] [INFO] cheese - inserting 1000 documents. first: The Lord of the Rings: the Battle for Middle-Earth II and last: Clare Tomlinson -[2018-02-13T00:32:26.180] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:32:26.296] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2007 July 24 and last: Geometric Style -[2018-02-13T00:32:26.339] [INFO] cheese - inserting 1000 documents. first: Template:Series and sequence and last: NewtonThree -[2018-02-13T00:32:26.354] [INFO] cheese - inserting 1000 documents. first: Cadbury Eyebrows and last: Ramlat al-Sab'atayn -[2018-02-13T00:32:26.355] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:32:26.358] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Luke Castellan and last: Nutrition Education -[2018-02-13T00:32:26.400] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:32:26.427] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:32:26.441] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:26.499] [INFO] cheese - inserting 1000 documents. first: Phoenix (East Indiaman) and last: Wikipedia:Articles for deletion/Car dealer fraud -[2018-02-13T00:32:26.569] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:32:26.640] [INFO] cheese - inserting 1000 documents. first: Breithorn and last: Wikipedia:Incomplete lists -[2018-02-13T00:32:26.747] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T00:32:26.804] [INFO] cheese - inserting 1000 documents. first: Piculus leucolaemus and last: Tight End Ed / 'Tween a Rock & an Ed Place -[2018-02-13T00:32:26.806] [INFO] cheese - inserting 1000 documents. first: Working condition and last: C1 Hours of Work (Industry) Convention, 1919 -[2018-02-13T00:32:26.858] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:32:26.865] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:32:26.951] [INFO] cheese - inserting 1000 documents. first: List of nations by population density and last: Wikipedia:Miscellany for deletion/User:Mlindstr/Outcast -[2018-02-13T00:32:26.961] [INFO] cheese - inserting 1000 documents. first: Spotted Horse (disambiguation) and last: Wilhelm Gerstenmeier -[2018-02-13T00:32:27.003] [INFO] cheese - inserting 1000 documents. first: Robert Sampson (lawyer) and last: Olorgesailie -[2018-02-13T00:32:27.018] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:32:27.031] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:32:27.092] [INFO] cheese - inserting 1000 documents. first: Republican Party presidential primaries, 1956 and last: Wahluke -[2018-02-13T00:32:27.115] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:32:27.173] [INFO] cheese - inserting 1000 documents. first: Zell, Upper Franconia and last: Appropriation Act 1820 -[2018-02-13T00:32:27.186] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:32:27.217] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:32:27.367] [INFO] cheese - inserting 1000 documents. first: San Marino Stadium and last: Athenee Palace Hilton Hotel -[2018-02-13T00:32:27.395] [INFO] cheese - inserting 1000 documents. first: Category:Cricket grounds in the Maldives and last: Mundus, diabolus, et caro -[2018-02-13T00:32:27.414] [INFO] cheese - inserting 1000 documents. first: Classic Warfare and last: Sanal kumar sasidharan -[2018-02-13T00:32:27.414] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:32:27.447] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:32:27.481] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:32:27.604] [INFO] cheese - inserting 1000 documents. first: One If by Land (Jericho episodes) and last: Bristly Ox-Tongue -[2018-02-13T00:32:27.656] [INFO] cheese - inserting 1000 documents. first: Eureka Flag and last: The Surgeon's Mate (novel) -[2018-02-13T00:32:27.681] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:32:27.692] [INFO] cheese - inserting 1000 documents. first: Appropriation Act 1821 and last: My Ladye Nevell's Booke -[2018-02-13T00:32:27.759] [INFO] cheese - inserting 1000 documents. first: Category:Egyptologist stubs and last: President (TV series) -[2018-02-13T00:32:27.770] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:27.787] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T00:32:27.846] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:32:27.877] [INFO] cheese - inserting 1000 documents. first: Mundus, diabolus et caro and last: Gilroy (surname) -[2018-02-13T00:32:27.935] [INFO] cheese - inserting 1000 documents. first: An off day game and last: Jim Evans (wide receiver) -[2018-02-13T00:32:27.962] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:32:27.982] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:32:28.117] [INFO] cheese - inserting 1000 documents. first: WCBS-TV/WCBSDT and last: Washington Legal Foundation -[2018-02-13T00:32:28.218] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:32:28.262] [INFO] cheese - inserting 1000 documents. first: Bristly Oxtongue and last: List of Billboard number-one country albums of 2004 -[2018-02-13T00:32:28.334] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:32:28.360] [INFO] cheese - inserting 1000 documents. first: La Fère and last: James 'Jim' King -[2018-02-13T00:32:28.412] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:32:28.413] [INFO] cheese - inserting 1000 documents. first: Pedro Téllez-Girón y Velasco Guzmán y Tovar and last: Connor Wilkinson -[2018-02-13T00:32:28.426] [INFO] cheese - inserting 1000 documents. first: Thomas Harcourt Ambrose Valintine and last: Ron Shuval -[2018-02-13T00:32:28.446] [INFO] cheese - inserting 1000 documents. first: Seyval Blanc and last: Edward Scanlon -[2018-02-13T00:32:28.481] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:32:28.488] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:32:28.509] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:32:28.719] [INFO] cheese - inserting 1000 documents. first: The Nutmeg of Consolation (novel) and last: Ain't Misbehaving -[2018-02-13T00:32:28.797] [INFO] cheese - inserting 1000 documents. first: Ceriani and last: Carlos Silva (hurdler) -[2018-02-13T00:32:28.800] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T00:32:28.846] [INFO] cheese - inserting 1000 documents. first: Eddie Miro and last: Sandwell and West Birmingham Hospitals NHS Trust -[2018-02-13T00:32:28.857] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:28.889] [INFO] cheese - inserting 1000 documents. first: Delia Linsey King and last: File:Lost Control Cover.jpg -[2018-02-13T00:32:28.912] [INFO] cheese - inserting 1000 documents. first: Icelandic Santas and last: Roman Catholic Diocese of Cerreto Sannita -[2018-02-13T00:32:28.933] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:28.964] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:32:28.974] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:28.994] [INFO] cheese - inserting 1000 documents. first: File:FlemingsSteakhouse.png and last: Category:Cemeteries on the National Register of Historic Places in Indiana -[2018-02-13T00:32:29.033] [INFO] cheese - inserting 1000 documents. first: Template:East Lindsey (district) and last: CVAS, Jhang -[2018-02-13T00:32:29.064] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:32:29.095] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:32:29.440] [INFO] cheese - inserting 1000 documents. first: Aanpavam (TV series) and last: Hairy white oldfield aster -[2018-02-13T00:32:29.448] [INFO] cheese - inserting 1000 documents. first: Qinghua Daxue Fushu Zhongxue and last: File:Dixon IL ICRR First St Bridge1.jpg -[2018-02-13T00:32:29.466] [INFO] cheese - inserting 1000 documents. first: Philip of Nevers and last: Augustus Bartholomew -[2018-02-13T00:32:29.499] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:32:29.518] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:32:29.522] [INFO] cheese - inserting 1000 documents. first: Milwaukee Mustangs (1994-2001) and last: Andreas Meyer (civil engineer) -[2018-02-13T00:32:29.561] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:32:29.600] [INFO] cheese - inserting 1000 documents. first: Hail To The Chief and last: Vodyanoi -[2018-02-13T00:32:29.609] [INFO] cheese - inserting 1000 documents. first: Suzanne Coupal and last: Othman Aziz -[2018-02-13T00:32:29.630] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:32:29.687] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:32:29.698] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:32:29.780] [INFO] cheese - inserting 1000 documents. first: Aquakinisis and last: Advice Goddess -[2018-02-13T00:32:29.886] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T00:32:30.017] [INFO] cheese - inserting 1000 documents. first: 2015–16 Central Arkansas Bears men's basketball team and last: Wikipedia:Today's featured article/December 24, 2015 -[2018-02-13T00:32:30.031] [INFO] cheese - inserting 1000 documents. first: File:Cross of Gisulf, 7th century.jpg and last: Template:Widereceiver-1910s-stub -[2018-02-13T00:32:30.083] [INFO] cheese - inserting 1000 documents. first: K Street (District of Columbia) and last: David of Basra -[2018-02-13T00:32:30.117] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:32:30.151] [INFO] cheese - inserting 1000 documents. first: Category:Executed people from South Yorkshire and last: File:Main-Radweg Logo.svg -[2018-02-13T00:32:30.168] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:32:30.170] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:32:30.220] [INFO] cheese - inserting 1000 documents. first: Linguistic functions of pharynx and last: Markaszek -[2018-02-13T00:32:30.239] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:32:30.294] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:32:30.524] [INFO] cheese - inserting 1000 documents. first: Spec 4 and last: W.O. Kuhne -[2018-02-13T00:32:30.641] [INFO] cheese - inserting 1000 documents. first: The Atlas Abbey and last: Hamlet! -[2018-02-13T00:32:30.662] [INFO] cheese - inserting 1000 documents. first: CT Floquet and last: HH Hilton -[2018-02-13T00:32:30.673] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:32:30.714] [INFO] cheese - inserting 1000 documents. first: Gibichung and last: Lisp (language) -[2018-02-13T00:32:30.709] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:32:30.761] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:32:30.787] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:32:30.843] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Best Of UWF and last: Wikipedia:WikiProject National Register of Historic Places/Theatres -[2018-02-13T00:32:30.845] [INFO] cheese - inserting 1000 documents. first: Orville Faubus and last: Clifford Jarvis -[2018-02-13T00:32:30.852] [INFO] cheese - inserting 1000 documents. first: List of accolades received by Frida and last: Wikipedia:Articles for deletion/Nicholas Hagger (2nd nomination) -[2018-02-13T00:32:30.894] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:32:30.895] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:32:30.949] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T00:32:31.113] [INFO] cheese - inserting 1000 documents. first: Category:Polish black-and-white films and last: Category:Philippine speculative fiction -[2018-02-13T00:32:31.162] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:32:31.167] [INFO] cheese - inserting 1000 documents. first: Jimmy Phillips (Texas) and last: Pandjeh Incident -[2018-02-13T00:32:31.210] [INFO] cheese - inserting 1000 documents. first: Packet Processing and last: Dal'eh Heydar -[2018-02-13T00:32:31.218] [INFO] cheese - inserting 1000 documents. first: 95.7 MAX-FM and last: Pattern Variables -[2018-02-13T00:32:31.218] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:32:31.255] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:32:31.266] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:32:31.335] [INFO] cheese - inserting 1000 documents. first: Willingtown Square and last: File:FrontSuperSabrina.jpg -[2018-02-13T00:32:31.339] [INFO] cheese - inserting 1000 documents. first: Category:Bridges on the National Register of Historic Places in Pennsylvania and last: European Revolution of 1848 -[2018-02-13T00:32:31.379] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:32:31.412] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:32:31.600] [INFO] cheese - inserting 1000 documents. first: Ghal'eh Heidar and last: Endomondo -[2018-02-13T00:32:31.617] [INFO] cheese - inserting 1000 documents. first: Atrial Fluter and last: Procolobus verus -[2018-02-13T00:32:31.626] [INFO] cheese - inserting 1000 documents. first: Category:Mountains and hills of the Eifel (North Rhine-Westphalia) and last: Koosharem Junction, Utah -[2018-02-13T00:32:31.631] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:32:31.689] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:32:31.730] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:32:31.819] [INFO] cheese - inserting 1000 documents. first: European Revolutions of 1848 and last: Category:1869 establishments in Wales -[2018-02-13T00:32:31.838] [INFO] cheese - inserting 1000 documents. first: One Piece: Romance Dawn Story and last: Kurashima Ayumi -[2018-02-13T00:32:31.853] [INFO] cheese - inserting 1000 documents. first: Kemijärvi and last: Arcadia (disambiguation) -[2018-02-13T00:32:31.855] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:32:31.862] [INFO] cheese - inserting 1000 documents. first: Royden Park and last: Sandycreek -[2018-02-13T00:32:31.879] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:32:31.921] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:32:31.927] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:32:32.089] [INFO] cheese - inserting 1000 documents. first: Recognition of same-sex unions in the British Indian Ocean Territory and last: Template:Inter-county hurlers category -[2018-02-13T00:32:32.204] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:32:32.237] [INFO] cheese - inserting 1000 documents. first: File:The Groovenians title card.png and last: Category:Philippine anthology films -[2018-02-13T00:32:32.259] [INFO] cheese - inserting 1000 documents. first: Category:Hydrocarbon solvents and last: Exilisciurus concinnus -[2018-02-13T00:32:32.306] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:32:32.328] [INFO] cheese - inserting 1000 documents. first: William Elphinstone Gordon and last: Wikipedia:WikiProject Smithsonian Institution-related -[2018-02-13T00:32:32.354] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:32:32.374] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:32:32.538] [INFO] cheese - inserting 1000 documents. first: Ebert-groener deal and last: Bangladesh Shishu Academy -[2018-02-13T00:32:32.607] [INFO] cheese - inserting 1000 documents. first: Baryshski and last: Template:Latin Extended-A -[2018-02-13T00:32:32.607] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:32:32.657] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:32:32.686] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Chandavaram Buddhist site and last: Category:Works about monarchs -[2018-02-13T00:32:32.735] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:32:32.751] [INFO] cheese - inserting 1000 documents. first: Phyllis George and last: Hsü Shih-Ch'ang -[2018-02-13T00:32:32.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of legislation sponsored by Ron Paul and last: Arnold, Illinois -[2018-02-13T00:32:32.804] [INFO] cheese - inserting 1000 documents. first: Exilisciurus and last: File:Wsop logo.png -[2018-02-13T00:32:32.848] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T00:32:32.891] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:32:32.929] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:32:33.130] [INFO] cheese - inserting 1000 documents. first: Incoherent broad band cavity enhanced absorption spectroscopy and last: El Pelon -[2018-02-13T00:32:33.190] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:32:33.216] [INFO] cheese - inserting 1000 documents. first: The Big Lebowsky and last: Munster Schools Rugby Senior Cup -[2018-02-13T00:32:33.282] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:32:33.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/siteresources.worldbank.org and last: The College of Engineering Scinces at sudan university -[2018-02-13T00:32:33.359] [INFO] cheese - inserting 1000 documents. first: HartCommon and last: Category:Generals under Liu Bei -[2018-02-13T00:32:33.392] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:33.401] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lightning Scientific Martial Arts and Physical Culture and last: Category:Mid-importance Batman articles -[2018-02-13T00:32:33.408] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:32:33.466] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:32:33.536] [INFO] cheese - inserting 1000 documents. first: Mickey Rooney Award and last: Inkaar (1943 film) -[2018-02-13T00:32:33.570] [INFO] cheese - inserting 1000 documents. first: Miyaji Masayuki and last: Nancy Padian -[2018-02-13T00:32:33.593] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:32:33.684] [INFO] cheese - batch complete in: 1.805 secs -[2018-02-13T00:32:33.733] [INFO] cheese - inserting 1000 documents. first: Hsü Shihch'ang and last: Pu Chou Mountain -[2018-02-13T00:32:33.756] [INFO] cheese - inserting 1000 documents. first: David Barrett (football player) and last: John Bock -[2018-02-13T00:32:33.766] [INFO] cheese - inserting 1000 documents. first: Vostochno-Prinovozemelskoye structure and last: Mike Ross -[2018-02-13T00:32:33.801] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:32:33.807] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:32:33.831] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T00:32:33.890] [INFO] cheese - inserting 1000 documents. first: Parliamentary Ombudsman and last: Patrick W. Welch -[2018-02-13T00:32:33.998] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:32:34.146] [INFO] cheese - inserting 1000 documents. first: Assa (river) and last: Scottish Boat Race -[2018-02-13T00:32:34.202] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:32:34.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SAY and last: Category:World War I shipwrecks in the Aegean Sea -[2018-02-13T00:32:34.295] [INFO] cheese - inserting 1000 documents. first: George Wilkins Kendall and last: Wikipedia:Articles for deletion/Alexander Domijan -[2018-02-13T00:32:34.326] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:32:34.348] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:32:34.352] [INFO] cheese - inserting 1000 documents. first: Gerardo Allucingoli and last: Blood-colored Woodpecker -[2018-02-13T00:32:34.426] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:34.436] [INFO] cheese - inserting 1000 documents. first: Mobil Cotton Bowl Classic and last: Shah, Al Gharbia -[2018-02-13T00:32:34.502] [INFO] cheese - inserting 1000 documents. first: Keshtu'iyeh and last: Defamation Bill 2012-13 -[2018-02-13T00:32:34.531] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T00:32:34.595] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:32:34.725] [INFO] cheese - inserting 1000 documents. first: List of geological features on Rhea and last: Telcordia LERG Routing Guide -[2018-02-13T00:32:34.777] [INFO] cheese - inserting 1000 documents. first: Maracaibo Lake (Bolivia) and last: Wikipedia:Articles for deletion/Geoffrey Martin (Australian mathematician) -[2018-02-13T00:32:34.779] [INFO] cheese - inserting 1000 documents. first: Dompfeil and last: Wikipedia:Articles for deletion/Seven Society, Order of the Crown and Dagger -[2018-02-13T00:32:34.791] [INFO] cheese - inserting 1000 documents. first: Crocidura flavescens and last: Second Fußball-Bundesliga 1986/87 -[2018-02-13T00:32:34.796] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:32:34.820] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:32:34.858] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:32:34.866] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:32:34.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Life Begins at 40 (Novel) and last: Template:Taxonomy/Ommastrephinae -[2018-02-13T00:32:34.928] [INFO] cheese - inserting 1000 documents. first: Warped Tour 2013 Tour Compilation and last: Mouftaou -[2018-02-13T00:32:34.967] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:32:34.984] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:32:34.994] [INFO] cheese - inserting 1000 documents. first: Old Coley and last: List of songs recorded by Metallica -[2018-02-13T00:32:35.063] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:32:35.275] [INFO] cheese - inserting 1000 documents. first: News and Notes and last: Hipposideros caffer -[2018-02-13T00:32:35.312] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:32:35.377] [INFO] cheese - inserting 1000 documents. first: Bl. Alanus de Rupe and last: Jacob Dingee House -[2018-02-13T00:32:35.389] [INFO] cheese - inserting 1000 documents. first: El Adoua and last: Elizabeth Burgin -[2018-02-13T00:32:35.430] [INFO] cheese - inserting 1000 documents. first: Category:Journalists from Prince Edward Island and last: Harrison HS -[2018-02-13T00:32:35.435] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:32:35.437] [INFO] cheese - inserting 1000 documents. first: Salicylic acid (plant hormone) and last: List of Perth suburbs -[2018-02-13T00:32:35.443] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:32:35.463] [INFO] cheese - inserting 1000 documents. first: Touraine wine and last: David D'Alessandro -[2018-02-13T00:32:35.495] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:32:35.539] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:32:35.556] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:32:35.619] [INFO] cheese - inserting 1000 documents. first: Agincourt, Ontario and last: Amherst Ramblers -[2018-02-13T00:32:35.727] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:32:35.736] [INFO] cheese - inserting 1000 documents. first: Spurred roundleaf bat and last: Rhinolophus eloquens -[2018-02-13T00:32:35.806] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:32:35.874] [INFO] cheese - inserting 1000 documents. first: Levedohori, Elis and last: Persiraja Banda -[2018-02-13T00:32:35.883] [INFO] cheese - inserting 1000 documents. first: Smooth Sailin' (Leon Bridges song) and last: Wilshire/Vermont (Los Angeles Metro station) -[2018-02-13T00:32:35.899] [INFO] cheese - inserting 1000 documents. first: Isometry (quadratic forms) and last: Category:1951 in Polish sport -[2018-02-13T00:32:35.926] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:32:35.927] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:35.998] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:36.259] [INFO] cheese - inserting 1000 documents. first: Het Lage Land and last: Category:Public libraries in Scotland -[2018-02-13T00:32:36.375] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:32:36.444] [INFO] cheese - inserting 1000 documents. first: Mobile BayBears and last: GNFS -[2018-02-13T00:32:36.468] [INFO] cheese - inserting 1000 documents. first: Executive government and last: Roger IV, Count of Foix -[2018-02-13T00:32:36.556] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:32:36.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Allied occupation of Europe (2nd nomination) and last: Category:Religious organizations established in 1924 -[2018-02-13T00:32:36.623] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:32:36.649] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:32:36.733] [INFO] cheese - inserting 1000 documents. first: Wilshire/Normandie (Los Angeles Metro station) and last: Taiwan Political parties -[2018-02-13T00:32:36.775] [INFO] cheese - inserting 1000 documents. first: Glaucias (physician 3rd c.BC) and last: Goode Glacier -[2018-02-13T00:32:36.781] [INFO] cheese - inserting 1000 documents. first: File:Baby don't cry cd+dvd.jpg and last: Robert C. Brack -[2018-02-13T00:32:36.786] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:32:36.828] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:32:36.832] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:32:37.064] [INFO] cheese - inserting 1000 documents. first: FIBA Asia Under-16 Championship for Women 2009 and last: Orkdal Church -[2018-02-13T00:32:37.071] [INFO] cheese - inserting 1000 documents. first: File:DetroitShock.png and last: Corporate Sex Offender -[2018-02-13T00:32:37.123] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:32:37.138] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:32:37.163] [INFO] cheese - inserting 1000 documents. first: Minor County cricket and last: ICAW -[2018-02-13T00:32:37.181] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Core topics/Tree and last: Volcanic Islands -[2018-02-13T00:32:37.204] [INFO] cheese - inserting 1000 documents. first: By My Side Again and last: Topic outline of Africa -[2018-02-13T00:32:37.207] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:32:37.208] [INFO] cheese - inserting 1000 documents. first: Bertinazzi and last: Rockhampton City Hall -[2018-02-13T00:32:37.233] [INFO] cheese - inserting 1000 documents. first: Behelit and last: Adelanto, CA -[2018-02-13T00:32:37.258] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:32:37.264] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:32:37.277] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:32:37.343] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:32:37.541] [INFO] cheese - inserting 1000 documents. first: File:Depeche Mode - Soothe My Soul.jpg and last: José Giménez -[2018-02-13T00:32:37.583] [INFO] cheese - inserting 1000 documents. first: Corporate Sex Offenders and last: Rabbit In The Moon -[2018-02-13T00:32:37.584] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:32:37.629] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:32:37.670] [INFO] cheese - inserting 1000 documents. first: Mitsubishi gallant and last: Suleimani -[2018-02-13T00:32:37.704] [INFO] cheese - inserting 1000 documents. first: Russian Orthodox Ecclesiastical Mission in Jerusalem and last: Category:Wikipedia sockpuppets of AshleyBird1 -[2018-02-13T00:32:37.708] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:32:37.757] [INFO] cheese - inserting 1000 documents. first: Will Hatcher and last: Bradley Stacey -[2018-02-13T00:32:37.758] [INFO] cheese - inserting 1000 documents. first: James L. Dennis and last: Phyllis Dorothy James, Baroness James of Holland Park, OBE, FRSA, FRSL -[2018-02-13T00:32:37.782] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:32:37.863] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:32:37.954] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:32:38.067] [INFO] cheese - inserting 1000 documents. first: Emily Pauline Johnson and last: Allensville, KY -[2018-02-13T00:32:38.086] [INFO] cheese - inserting 1000 documents. first: Template:Chase H.Q. series and last: Alvan F. Sanborn -[2018-02-13T00:32:38.137] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:32:38.141] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:32:38.190] [INFO] cheese - inserting 1000 documents. first: Omiodes asaphombra and last: Xx male -[2018-02-13T00:32:38.261] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:32:38.375] [INFO] cheese - inserting 1000 documents. first: Filleting (obfuscation) and last: Deadheading (employee) -[2018-02-13T00:32:38.418] [INFO] cheese - inserting 1000 documents. first: Marouf Bakhit and last: Tie Plant, Mississippi -[2018-02-13T00:32:38.438] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:32:38.453] [INFO] cheese - inserting 1000 documents. first: Ruslan Stratonovich and last: Category:Soil contamination -[2018-02-13T00:32:38.466] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:32:38.493] [INFO] cheese - inserting 1000 documents. first: Tarika Ramilison Fenoarivo and last: List of number-one hits of 1990 (Flanders) -[2018-02-13T00:32:38.517] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:32:38.548] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:32:38.564] [INFO] cheese - inserting 1000 documents. first: Allenton, MI and last: Damgalnunna -[2018-02-13T00:32:38.608] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:32:38.617] [INFO] cheese - inserting 1000 documents. first: Lawyer's Prologue and Tale and last: U.s. inventions -[2018-02-13T00:32:38.669] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:38.686] [INFO] cheese - inserting 1000 documents. first: Portal:Houston/Did you know?/August 2007 and last: Fictional universe of Carnivàle -[2018-02-13T00:32:38.735] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:32:38.765] [INFO] cheese - inserting 1000 documents. first: Gordon O. Tanner (lawyer) and last: Heinrich Sir Albemarle Bertie, 1st Baronet -[2018-02-13T00:32:38.801] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:32:38.812] [INFO] cheese - inserting 1000 documents. first: 2006 Rally Deutschland and last: AirCal Tours -[2018-02-13T00:32:38.835] [INFO] cheese - inserting 1000 documents. first: VRT Top 30 number-one hits of 1990 (Flanders) and last: File:Logo of FC Madalena.png -[2018-02-13T00:32:38.853] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:32:38.873] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:32:38.926] [INFO] cheese - inserting 1000 documents. first: File:Srbthrust2.jpg and last: Sergeantsville, New Jersey -[2018-02-13T00:32:38.967] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:32:39.028] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/March 2009 and last: Cloud machine -[2018-02-13T00:32:39.076] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:32:39.161] [INFO] cheese - inserting 1000 documents. first: List of lesbian, gay, bisexual or transgender-related films by year and last: Wo de fu qin mu qin -[2018-02-13T00:32:39.161] [INFO] cheese - inserting 1000 documents. first: Renapur Taluka and last: Freddie Fox -[2018-02-13T00:32:39.214] [INFO] cheese - inserting 1000 documents. first: Unplugged (Alice in Chains album) and last: List of academic statistical associations -[2018-02-13T00:32:39.246] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:32:39.273] [INFO] cheese - inserting 1000 documents. first: File:Alabama Splash Adventure logo.png and last: Hypsirhophus discurus -[2018-02-13T00:32:39.313] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:32:39.355] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:32:39.369] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:32:39.468] [INFO] cheese - inserting 1000 documents. first: Template:MichiganStateBasketballCoach and last: Giambellino (district) -[2018-02-13T00:32:39.574] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:32:39.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Most Liberal Law School and last: File:Target T-1136.JPG -[2018-02-13T00:32:39.697] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:32:39.788] [INFO] cheese - inserting 1000 documents. first: MDCCLXX and last: Janiki Małe -[2018-02-13T00:32:39.825] [INFO] cheese - inserting 1000 documents. first: Albania – Georgia relations and last: File:Mariam Aslamazian.jpg -[2018-02-13T00:32:39.841] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:32:39.871] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:32:39.905] [INFO] cheese - inserting 1000 documents. first: Template:SwimmingAt1984SummerOlympics and last: File:Micromachine 2.jpg -[2018-02-13T00:32:39.952] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:32:39.954] [INFO] cheese - inserting 1000 documents. first: List of programs broadcast by Spacetoon (Pakistan) and last: Cybernetic Culture Research Unit -[2018-02-13T00:32:39.997] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:32:40.093] [INFO] cheese - inserting 1000 documents. first: Template:Goniodorididae-stub and last: Classic FM (Bulgaria) -[2018-02-13T00:32:40.155] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:32:40.187] [INFO] cheese - inserting 1000 documents. first: Emmanuel Habyarimana and last: Bishop of Poznań -[2018-02-13T00:32:40.248] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:32:40.291] [INFO] cheese - inserting 1000 documents. first: First Gentleman of Pakistan and last: SV Overbos -[2018-02-13T00:32:40.314] [INFO] cheese - inserting 1000 documents. first: Janiki Wielkie and last: Eloka -[2018-02-13T00:32:40.314] [INFO] cheese - inserting 1000 documents. first: Maeterlinck and last: Langnau -[2018-02-13T00:32:40.333] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:40.364] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:40.394] [INFO] cheese - inserting 1000 documents. first: Gazelle Valley and last: Wikipedia:Featured article review/Swastika/archive1 -[2018-02-13T00:32:40.395] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T00:32:40.448] [INFO] cheese - inserting 1000 documents. first: Petroleum Institute of Pakistan and last: F. Gordon Spear -[2018-02-13T00:32:40.449] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:32:40.539] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:32:40.670] [INFO] cheese - inserting 1000 documents. first: Skins (US Series) and last: Wikipedia:Articles for deletion/Dehn plane -[2018-02-13T00:32:40.738] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:32:40.864] [INFO] cheese - inserting 1000 documents. first: 2013–14 Swindon Town F.C. season and last: Helgi Hrafn Gunnarsson -[2018-02-13T00:32:40.882] [INFO] cheese - inserting 1000 documents. first: Gedney Farms, NY and last: Sleeper-hold -[2018-02-13T00:32:40.908] [INFO] cheese - inserting 1000 documents. first: Template:Regional Internet Registry and last: Fresh xpress -[2018-02-13T00:32:40.952] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:32:41.079] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:32:41.106] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:32:41.373] [INFO] cheese - inserting 1000 documents. first: F.G. Spear and last: Category:1700 in horse racing -[2018-02-13T00:32:41.380] [INFO] cheese - inserting 1000 documents. first: Ettrokro and last: Cathedral Church of Saint Peter, Exeter -[2018-02-13T00:32:41.450] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:32:41.495] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T00:32:41.575] [INFO] cheese - inserting 1000 documents. first: Category:Post office buildings in Pennsylvania and last: File:SiphonWithTubeUpperReservoir.png -[2018-02-13T00:32:41.619] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2013 April 27 and last: D-alanyl-D-alanine hydrolase -[2018-02-13T00:32:41.673] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:32:41.681] [INFO] cheese - inserting 1000 documents. first: East Fairfield and last: William Ormand Mitchell -[2018-02-13T00:32:41.770] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:32:41.881] [INFO] cheese - inserting 1000 documents. first: Swiss Federal Supreme Court and last: FM106-3 -[2018-02-13T00:32:41.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/SLSB and last: Curtis Cooper (mathematician) -[2018-02-13T00:32:41.911] [INFO] cheese - batch complete in: 1.515 secs -[2018-02-13T00:32:42.034] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:32:42.124] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:32:42.290] [INFO] cheese - inserting 1000 documents. first: Template:People's Choice Award for Favorite TV Drama and last: Wikipedia:Miscellany for deletion/User:Mattyredd24/Aayush Datt Fan Club -[2018-02-13T00:32:42.385] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:32:42.405] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/123quantumcomputers.webs.com and last: São Paulo F.C. season 2004 -[2018-02-13T00:32:42.488] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:32:42.536] [INFO] cheese - inserting 1000 documents. first: Louis Adolf Gölsdorf and last: Commandement de la force d'action terrestre -[2018-02-13T00:32:42.552] [INFO] cheese - inserting 1000 documents. first: D-alanyl-D-alanine-cleaving carboxypeptidase and last: Ibn 'Ata Allah -[2018-02-13T00:32:42.601] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T00:32:42.620] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:32:42.786] [INFO] cheese - inserting 1000 documents. first: Ayers Saint Gross and last: Meridian (disambiguation) -[2018-02-13T00:32:42.840] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:32:42.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Special state-to-state relations and last: Varúj...! -[2018-02-13T00:32:42.887] [INFO] cheese - inserting 1000 documents. first: Robert Thomas Grotz and last: Olof "olofmeister" Kajbjer -[2018-02-13T00:32:42.910] [INFO] cheese - inserting 1000 documents. first: William Ormond Mitchell and last: Fender Musical Instruments Corporation -[2018-02-13T00:32:42.926] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:32:42.929] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:32:42.948] [INFO] cheese - inserting 1000 documents. first: WBBO and last: 1000 De La Gauchetiere -[2018-02-13T00:32:42.990] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T00:32:43.031] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T00:32:43.058] [INFO] cheese - inserting 1000 documents. first: X Factor (Poland) and last: List of Acts of the Parliament of South Africa, 1990–1999 -[2018-02-13T00:32:43.092] [INFO] cheese - inserting 1000 documents. first: Thomas Alexander Murphree and last: Royce H. Savage -[2018-02-13T00:32:43.147] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:32:43.158] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:32:43.180] [INFO] cheese - inserting 1000 documents. first: Iris pallida and last: Wikipedia:Articles for deletion/Waitakere Mega Centre -[2018-02-13T00:32:43.221] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:32:43.271] [INFO] cheese - inserting 1000 documents. first: Category:Boise Irrigators players and last: Schadowstrasse (Düsseldorf) -[2018-02-13T00:32:43.328] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:32:43.395] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Seoul Independent Film Festival and last: RT aerostats systems -[2018-02-13T00:32:43.431] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:43.524] [INFO] cheese - inserting 1000 documents. first: List of Acts of the Parliament of South Africa, 2000–2009 and last: File:Musician Atari Blitzkrieg.jpg -[2018-02-13T00:32:43.532] [INFO] cheese - inserting 1000 documents. first: Siva Yoga and last: Miloslav Konopka -[2018-02-13T00:32:43.558] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:32:43.563] [INFO] cheese - inserting 1000 documents. first: 1000 de La Gauchetiere and last: Blåmannsisen -[2018-02-13T00:32:43.585] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:32:43.651] [INFO] cheese - inserting 1000 documents. first: KAPF and last: Tiny house movement -[2018-02-13T00:32:43.676] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:32:43.745] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:32:43.868] [INFO] cheese - inserting 1000 documents. first: N. K. Achumi and last: Athletics at the 1994 Commonwealth Games – Men's marathon -[2018-02-13T00:32:43.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2011 January 31 and last: Petra (sculpture) -[2018-02-13T00:32:43.880] [INFO] cheese - inserting 1000 documents. first: Chambered nautilus and last: Tillamook Cheese Factory -[2018-02-13T00:32:43.910] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:32:43.952] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:32:43.964] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:32:43.985] [INFO] cheese - inserting 1000 documents. first: Nabilla Benattia and last: IX Brigade, Royal Horse Artillery -[2018-02-13T00:32:44.530] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:32:44.572] [INFO] cheese - inserting 1000 documents. first: Near East Side and last: Brândușa River -[2018-02-13T00:32:45.331] [INFO] cheese - batch complete in: 1.746 secs -[2018-02-13T00:32:45.407] [INFO] cheese - inserting 1000 documents. first: Behrouz Afagh and last: Childs v Desormeaux -[2018-02-13T00:32:45.446] [INFO] cheese - inserting 1000 documents. first: Mean score and last: Hae-ryung -[2018-02-13T00:32:45.562] [INFO] cheese - batch complete in: 1.652 secs -[2018-02-13T00:32:45.581] [INFO] cheese - batch complete in: 1.904 secs -[2018-02-13T00:32:45.658] [INFO] cheese - inserting 1000 documents. first: Genocide in Somalia and last: Alaskan Air Defense Sector -[2018-02-13T00:32:45.694] [INFO] cheese - inserting 1000 documents. first: Rustai-ye Abolfazl ebn Magh and last: Diocese of Fond du Lac -[2018-02-13T00:32:45.720] [INFO] cheese - inserting 1000 documents. first: George P. Wanty and last: Richard Browne (artist) -[2018-02-13T00:32:45.731] [INFO] cheese - batch complete in: 1.779 secs -[2018-02-13T00:32:45.766] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T00:32:45.859] [INFO] cheese - batch complete in: 2.114 secs -[2018-02-13T00:32:45.972] [INFO] cheese - inserting 1000 documents. first: Vector State Research Center of Virology and Biotechnology and last: James halpert -[2018-02-13T00:32:46.018] [INFO] cheese - inserting 1000 documents. first: File:Anna Ascends-593646673-large.jpg and last: Gardner, Paul -[2018-02-13T00:32:46.021] [INFO] cheese - inserting 1000 documents. first: Dolby Digital EX and last: Category:Chubu region -[2018-02-13T00:32:46.025] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:32:46.028] [INFO] cheese - inserting 1000 documents. first: Liz Macclarnon and last: Holz -[2018-02-13T00:32:46.055] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:32:46.083] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:32:46.093] [INFO] cheese - batch complete in: 2.129 secs -[2018-02-13T00:32:46.129] [INFO] cheese - inserting 1000 documents. first: The Enduring Chill and last: Category:University of Peshawar faculty -[2018-02-13T00:32:46.167] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:32:46.196] [INFO] cheese - inserting 1000 documents. first: League of Legends Clash of Fates and last: Wądzyn, Warmian-Masurian Voivodeship -[2018-02-13T00:32:46.240] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:32:46.268] [INFO] cheese - inserting 1000 documents. first: Diocese of Eau Claire and last: Ahlbeck (near Ueckermünde) -[2018-02-13T00:32:46.326] [INFO] cheese - inserting 1000 documents. first: Microsoft Windows Store and last: USAF Weapons and Tactics Center -[2018-02-13T00:32:46.328] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:32:46.360] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:32:46.395] [INFO] cheese - inserting 1000 documents. first: Pamela beesly and last: Observatoire des Pises -[2018-02-13T00:32:46.443] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:32:46.464] [INFO] cheese - inserting 1000 documents. first: File:JustSoYouKnowSingle.jpg and last: Evan Hlavacek -[2018-02-13T00:32:46.483] [INFO] cheese - inserting 1000 documents. first: Nouméa Cathedral and last: Amardeep Jha -[2018-02-13T00:32:46.524] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:32:46.525] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:32:46.542] [INFO] cheese - inserting 1000 documents. first: Wierzbica, Warmian-Masurian Voivodeship and last: Brzozówko -[2018-02-13T00:32:46.571] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:32:46.640] [INFO] cheese - inserting 1000 documents. first: Category:Kanto region and last: Paul Dodge -[2018-02-13T00:32:46.685] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:32:46.713] [INFO] cheese - inserting 1000 documents. first: Brian Krzanich and last: Lotus wrightii -[2018-02-13T00:32:46.732] [INFO] cheese - inserting 1000 documents. first: 1906 Illinois Fighting Illini football team and last: Category:1510 in the Colony of Santiago -[2018-02-13T00:32:46.748] [INFO] cheese - inserting 1000 documents. first: The Hispanic Society of America and last: 26 July 2007 Baghdad market bombing -[2018-02-13T00:32:46.751] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:32:46.775] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:32:46.790] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:32:46.869] [INFO] cheese - inserting 1000 documents. first: Tamil-murasu and last: File:Ttkidzpromo.jpg -[2018-02-13T00:32:46.875] [INFO] cheese - inserting 1000 documents. first: Budry and last: Henry Rupert Wilhoit Junior -[2018-02-13T00:32:46.944] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe kamensky and last: Fijian newspapers -[2018-02-13T00:32:46.952] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:32:46.963] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:32:47.096] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:47.278] [INFO] cheese - inserting 1000 documents. first: Nadiradze and last: Embassy of Switzerland in Tbilisi (Russian Interests Section) -[2018-02-13T00:32:47.284] [INFO] cheese - inserting 1000 documents. first: Category:1970s establishments in Liberia and last: Dark Guardian (novel) -[2018-02-13T00:32:47.305] [INFO] cheese - inserting 1000 documents. first: Police mole and last: Valea Calului River (Râul Târgului) -[2018-02-13T00:32:47.311] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:32:47.331] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:32:47.361] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:47.435] [INFO] cheese - inserting 1000 documents. first: Category:Regional capitals in Namibia and last: Charles Hartley -[2018-02-13T00:32:47.445] [INFO] cheese - inserting 1000 documents. first: Espírito Santo Sociedade Esportiva and last: Coronado California -[2018-02-13T00:32:47.448] [INFO] cheese - inserting 1000 documents. first: Goodrich, Herfordshire and last: Joshua Jebb -[2018-02-13T00:32:47.481] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:32:47.489] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:32:47.527] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:32:47.649] [INFO] cheese - inserting 1000 documents. first: File:Pengo test.svg and last: Cair Andros -[2018-02-13T00:32:47.670] [INFO] cheese - inserting 1000 documents. first: Embassy of Switzerland in Moscow (Georgian Interests Section) and last: Nusrat Imroz Tisha -[2018-02-13T00:32:47.697] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:32:47.704] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:32:47.721] [INFO] cheese - inserting 1000 documents. first: Southern California InFocus and last: Valea Mare River (Urlățelu) -[2018-02-13T00:32:47.740] [INFO] cheese - inserting 1000 documents. first: Charles Kornmann and last: Marsha Pechman -[2018-02-13T00:32:47.758] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:47.766] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:32:47.808] [INFO] cheese - inserting 1000 documents. first: File:Minsa'y isang Gamu-gamo.jpg and last: EC 3.4.21.74 -[2018-02-13T00:32:47.858] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:32:47.911] [INFO] cheese - inserting 1000 documents. first: Lazonby and Kirkoswald and last: Not for Me -[2018-02-13T00:32:47.961] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:32:48.036] [INFO] cheese - inserting 1000 documents. first: Marshall Neill and last: Walter Keeling -[2018-02-13T00:32:48.082] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:32:48.104] [INFO] cheese - inserting 1000 documents. first: Kenneth Brown (author) and last: Quentin Bryce -[2018-02-13T00:32:48.114] [INFO] cheese - inserting 1000 documents. first: Draft:Brian Shure and last: Syriac Catholic Archeparchy of Homs -[2018-02-13T00:32:48.126] [INFO] cheese - inserting 1000 documents. first: Abdelhak Serhane and last: Osmanabad Tahsil -[2018-02-13T00:32:48.161] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:32:48.169] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:32:48.177] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:32:48.187] [INFO] cheese - inserting 1000 documents. first: Farjestad and last: 13th Legion -[2018-02-13T00:32:48.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Twin Air and last: Category:Alosa -[2018-02-13T00:32:48.293] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:32:48.341] [INFO] cheese - inserting 1000 documents. first: Koichi Togashi and last: Titanic 3D -[2018-02-13T00:32:48.374] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:32:48.417] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:48.539] [INFO] cheese - inserting 1000 documents. first: Walter DeKalb Kelley and last: Elite force -[2018-02-13T00:32:48.605] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:32:48.667] [INFO] cheese - inserting 1000 documents. first: Syrian Catholic Archdiocese of Homs-Hama-Nabk and last: Category:1763 establishments in Russia -[2018-02-13T00:32:48.720] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:32:48.744] [INFO] cheese - inserting 1000 documents. first: Union Street, Borough and last: Template:Académie Française Seat 9 -[2018-02-13T00:32:48.784] [INFO] cheese - inserting 1000 documents. first: Lide z maringotek and last: Adam Cleghorn Welch -[2018-02-13T00:32:48.816] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:32:48.827] [INFO] cheese - inserting 1000 documents. first: 1959 Elections of Singapore and last: El diputado -[2018-02-13T00:32:48.871] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:32:48.907] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:32:48.980] [INFO] cheese - inserting 1000 documents. first: Boa Gwon and last: Forsterygion flavonigrum -[2018-02-13T00:32:49.012] [INFO] cheese - inserting 1000 documents. first: Category:ISSF shooting events and last: Category:Atlanta Thrashers players -[2018-02-13T00:32:49.071] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:32:49.117] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T00:32:49.136] [INFO] cheese - inserting 1000 documents. first: Batman 3 (Nolan) and last: Lohan, Pakistan -[2018-02-13T00:32:49.217] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Talk:Cisgenesis and last: File:Telenor Group.svg -[2018-02-13T00:32:49.253] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:32:49.318] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:32:49.418] [INFO] cheese - inserting 1000 documents. first: File:Escape Ironic Advertisement Chicago Feb 2 2011 storm.JPG and last: Anwar Ferguson -[2018-02-13T00:32:49.427] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Phil Manzanera and last: Lebanese cinema -[2018-02-13T00:32:49.462] [INFO] cheese - inserting 1000 documents. first: Road To The Riches and last: Monthélie -[2018-02-13T00:32:49.480] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:32:49.500] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:32:49.560] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:32:49.701] [INFO] cheese - inserting 1000 documents. first: Pteroglossus frantzii and last: Voiceless lateral affricate -[2018-02-13T00:32:49.798] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:32:49.893] [INFO] cheese - inserting 1000 documents. first: Category:Reservoirs in Ulster County, New York and last: Category:1838 disestablishments in Ceylon -[2018-02-13T00:32:49.907] [INFO] cheese - inserting 1000 documents. first: Juan Guerrero and last: As-Salih Hajji -[2018-02-13T00:32:49.963] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:32:49.966] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:32:50.061] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Blackhawks players and last: Kalapana (band) -[2018-02-13T00:32:50.068] [INFO] cheese - inserting 1000 documents. first: Dubberman Denmark and last: Joondalup railway line, Perth -[2018-02-13T00:32:50.090] [INFO] cheese - inserting 1000 documents. first: 1st Of Tha Month and last: Clupeoides -[2018-02-13T00:32:50.109] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:32:50.118] [INFO] cheese - inserting 1000 documents. first: Category:Church of England independent schools in the Diocese of Ely and last: Nidamangalam Taluk -[2018-02-13T00:32:50.139] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:32:50.139] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:32:50.182] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:32:50.272] [INFO] cheese - inserting 1000 documents. first: Frisch School and last: Frommer's -[2018-02-13T00:32:50.323] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:32:50.408] [INFO] cheese - inserting 1000 documents. first: Thumathoides and last: Category:Piper family -[2018-02-13T00:32:50.431] [INFO] cheese - inserting 1000 documents. first: Nicktown, Pennsylvania and last: Template:Green Party (Norway)/meta/abbr -[2018-02-13T00:32:50.434] [INFO] cheese - inserting 1000 documents. first: Soufli Province and last: FIS Alpine World Ski Championships 2011 – Women's super-G -[2018-02-13T00:32:50.439] [INFO] cheese - inserting 1000 documents. first: Pat Best and last: Wikipedia:WikiProject Malaysia/Cartography -[2018-02-13T00:32:50.444] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:32:50.473] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:32:50.481] [INFO] cheese - inserting 1000 documents. first: Category:1887 establishments in Florida and last: Paramyxovirus -[2018-02-13T00:32:50.492] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:32:50.502] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:32:50.517] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:32:50.730] [INFO] cheese - inserting 1000 documents. first: Consortium on Financial Systems and Poverty and last: Breeding Ground (album) -[2018-02-13T00:32:50.743] [INFO] cheese - inserting 1000 documents. first: Haplochromis kamiranzovu and last: Wikipedia:Featured picture candidates/Portrait of a cat -[2018-02-13T00:32:50.753] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:32:50.774] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:32:50.813] [INFO] cheese - inserting 1000 documents. first: AIS arena and last: Igor Cherevchenko -[2018-02-13T00:32:50.862] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:32:50.870] [INFO] cheese - inserting 1000 documents. first: Kaimu and last: Macho Man -[2018-02-13T00:32:50.887] [INFO] cheese - inserting 1000 documents. first: Template:Lexa and last: Growth planning -[2018-02-13T00:32:50.931] [INFO] cheese - inserting 1000 documents. first: Spiral Galaxy NGC 4435 and last: Yanornis -[2018-02-13T00:32:50.955] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:32:50.970] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:32:50.981] [INFO] cheese - inserting 1000 documents. first: Listen to Me (disambiguation) and last: Moravská národní obec -[2018-02-13T00:32:51.000] [INFO] cheese - inserting 1000 documents. first: André Lapize and last: Giuseppe Mingione -[2018-02-13T00:32:51.027] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:32:51.034] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:32:51.076] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:32:51.313] [INFO] cheese - inserting 1000 documents. first: Category:Lutjanus and last: Pantanodon -[2018-02-13T00:32:51.395] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:32:51.407] [INFO] cheese - inserting 1000 documents. first: Blue Scapular of the Immaculate Conception and last: Jeffrey Hunter (disambiguation) -[2018-02-13T00:32:51.518] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:32:51.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Pharmacology/Log/2011-02-08 and last: Sysoyev (disambiguation) -[2018-02-13T00:32:51.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/December 20, 2015 and last: Ralph McLean (politician) -[2018-02-13T00:32:51.611] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:32:51.653] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian-American culture by city and last: J.J.C. Bradfield -[2018-02-13T00:32:51.673] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:32:51.719] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:32:51.777] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Uzumaki Carly and last: The History of Mr Polly -[2018-02-13T00:32:51.835] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:32:51.871] [INFO] cheese - inserting 1000 documents. first: Category:Pantanodon and last: Table Cricket -[2018-02-13T00:32:51.907] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:32:51.915] [INFO] cheese - inserting 1000 documents. first: Category:Titans and last: Ethnism -[2018-02-13T00:32:51.931] [INFO] cheese - inserting 1000 documents. first: The Saga of Jenny and last: File:DanD-NoyMoon SharmCover.jpg -[2018-02-13T00:32:51.974] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:51.978] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:32:52.022] [INFO] cheese - inserting 1000 documents. first: Syntarsus (disambiguation) and last: St. Hallvard's Medal -[2018-02-13T00:32:52.040] [INFO] cheese - inserting 1000 documents. first: 2013-14 Portsmouth F.C. season and last: Nevado Callangate -[2018-02-13T00:32:52.073] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:52.076] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:32:52.094] [INFO] cheese - inserting 1000 documents. first: Hammurah and last: 1906 Swarthmore Garnet Tide football team -[2018-02-13T00:32:52.144] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:32:52.211] [INFO] cheese - inserting 1000 documents. first: File:HLR-SHORT-ARC-SUPPLY-A.jpg and last: S-Adenosylmethionine -[2018-02-13T00:32:52.252] [INFO] cheese - inserting 1000 documents. first: File:GuerolitoCover.jpg and last: Project Global -[2018-02-13T00:32:52.255] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:32:52.280] [INFO] cheese - inserting 1000 documents. first: Schools in Nigeria and last: Otis Putnam House -[2018-02-13T00:32:52.291] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:52.311] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:32:52.375] [INFO] cheese - inserting 1000 documents. first: Scullard v Knowles & Southern Regional Council for Education & Training and last: Template:WP Essex -[2018-02-13T00:32:52.380] [INFO] cheese - inserting 1000 documents. first: Bobs burgers episodes and last: Octopamine (disambiguation) -[2018-02-13T00:32:52.404] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:32:52.412] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:32:52.441] [INFO] cheese - inserting 1000 documents. first: Creme Puff (disambiguation) and last: Tsil'ninskii Raion -[2018-02-13T00:32:52.472] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:52.563] [INFO] cheese - inserting 1000 documents. first: Sample (music) and last: Category:Madison County, Ohio -[2018-02-13T00:32:52.608] [INFO] cheese - inserting 1000 documents. first: RCAF Station Mountain View and last: CBON-FM-17 -[2018-02-13T00:32:52.612] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:32:52.634] [INFO] cheese - inserting 1000 documents. first: Ligne de Bourg en Bresse-Bellegarde and last: File:Aintmisbehavin.jpg -[2018-02-13T00:32:52.645] [INFO] cheese - inserting 1000 documents. first: Muslim Countries and last: Atlanta Bliss -[2018-02-13T00:32:52.650] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:32:52.696] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:32:52.710] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:32:52.754] [INFO] cheese - inserting 1000 documents. first: Caterham bypass and last: Totally disconnected groups -[2018-02-13T00:32:52.795] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:32:52.837] [INFO] cheese - inserting 1000 documents. first: Pandulf (disambiguation) and last: Module:ISO 3166/data/AX -[2018-02-13T00:32:52.871] [INFO] cheese - inserting 1000 documents. first: Frank Serratore and last: Wikipedia:WikiProject Academic Journals/Journals cited by Wikipedia/J51 -[2018-02-13T00:32:52.874] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:32:52.937] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:32:53.134] [INFO] cheese - inserting 1000 documents. first: Audi Le Mans quattro and last: Caught Up (Millie Jackson album) -[2018-02-13T00:32:53.147] [INFO] cheese - inserting 1000 documents. first: Dr.S Radhakrishnan and last: Smiles for Macavity -[2018-02-13T00:32:53.160] [INFO] cheese - inserting 1000 documents. first: SKY TG24 and last: Born to Be Blue! (Bobby Timmons album) -[2018-02-13T00:32:53.170] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Greenville County, South Carolina and last: Kowalewo, West Pomeranian Voivodeship -[2018-02-13T00:32:53.176] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:32:53.199] [INFO] cheese - inserting 1000 documents. first: Anderson Private School For The Gifted and Talented and last: Juan de Argüelles -[2018-02-13T00:32:53.208] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:32:53.219] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:53.251] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:32:53.270] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:53.308] [INFO] cheese - inserting 1000 documents. first: File:Centralwashington.PNG and last: Linear temporal logic -[2018-02-13T00:32:53.322] [INFO] cheese - inserting 1000 documents. first: Casey the Alien and last: Aporia lama -[2018-02-13T00:32:53.361] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:32:53.360] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:32:53.563] [INFO] cheese - inserting 1000 documents. first: Portal:Indigenous peoples of the Americas/Selected biography/1 and last: Swarm (video game) -[2018-02-13T00:32:53.605] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:32:53.627] [INFO] cheese - inserting 1000 documents. first: Krakowice and last: Jamno, Koszalin -[2018-02-13T00:32:53.663] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:32:53.674] [INFO] cheese - inserting 1000 documents. first: Cernat River (Durbav) and last: Category:Medical colleges in Maharashtra -[2018-02-13T00:32:53.682] [INFO] cheese - inserting 1000 documents. first: PowerHouse (programming language) and last: Box Hill Town Hall -[2018-02-13T00:32:53.683] [INFO] cheese - inserting 1000 documents. first: 2016 Southern Myanmar FC season and last: Deng Furu -[2018-02-13T00:32:53.712] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:32:53.727] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:32:53.734] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:32:53.744] [INFO] cheese - inserting 1000 documents. first: Pieris peloria and last: Aetostreon -[2018-02-13T00:32:53.788] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:32:53.985] [INFO] cheese - inserting 1000 documents. first: Kazimierz Pomorski and last: Nuisance variable -[2018-02-13T00:32:54.011] [INFO] cheese - inserting 1000 documents. first: Helen Nielsen and last: 1997–98 Yemeni League -[2018-02-13T00:32:54.012] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:32:54.050] [INFO] cheese - inserting 1000 documents. first: Holy cow and last: Banana Republicans -[2018-02-13T00:32:54.052] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:32:54.090] [INFO] cheese - inserting 1000 documents. first: Japanese eggplant and last: US 59 (IA) -[2018-02-13T00:32:54.121] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:32:54.131] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:32:54.138] [INFO] cheese - inserting 1000 documents. first: Chah Zangi, Kerman and last: Wikipedia:WikiProject District of Columbia/tasks/Under review/FAC -[2018-02-13T00:32:54.161] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sunshine octopus and last: Category:1958 British Empire and Commonwealth Games -[2018-02-13T00:32:54.176] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:32:54.205] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:32:54.225] [INFO] cheese - inserting 1000 documents. first: Leone Ebreo de Somi and last: Precedent book -[2018-02-13T00:32:54.268] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:32:54.272] [INFO] cheese - inserting 1000 documents. first: Suchao Nutnum and last: Handball at the 2004 Summer Olympics - Men's team squads -[2018-02-13T00:32:54.307] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:32:54.383] [INFO] cheese - inserting 1000 documents. first: Category:European Colombian and last: Category:1993 in Australian rugby union -[2018-02-13T00:32:54.390] [INFO] cheese - inserting 1000 documents. first: 1998–99 Yemeni League and last: File:Greatest of the Delta Blues Singers.jpg -[2018-02-13T00:32:54.410] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:32:54.432] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:32:54.552] [INFO] cheese - inserting 1000 documents. first: Holy Rood Church and last: Kashkarov -[2018-02-13T00:32:54.565] [INFO] cheese - inserting 1000 documents. first: Aaron Edwards and last: Kinship care -[2018-02-13T00:32:54.585] [INFO] cheese - inserting 1000 documents. first: US 75 (IA) and last: Way Out West (festival) -[2018-02-13T00:32:54.590] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:32:54.615] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:32:54.626] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:32:54.645] [INFO] cheese - inserting 1000 documents. first: The unforgiven 2 and last: Sacred and Profane (Britten) -[2018-02-13T00:32:54.684] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:32:54.720] [INFO] cheese - inserting 1000 documents. first: Template:S-line/RB-RP right/31 and last: Nutahara -[2018-02-13T00:32:54.760] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:32:54.790] [INFO] cheese - inserting 1000 documents. first: Kinnarathumbikal and last: Sphinx ceculus -[2018-02-13T00:32:54.813] [INFO] cheese - inserting 1000 documents. first: Terminal illness and last: André Courrèges -[2018-02-13T00:32:54.840] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:32:54.873] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:32:54.899] [INFO] cheese - inserting 1000 documents. first: NanKang Biotech Incubation Center and last: James Franck Institute -[2018-02-13T00:32:54.953] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:32:54.991] [INFO] cheese - inserting 1000 documents. first: Vic Hanson and last: Category:French eugenicists -[2018-02-13T00:32:55.010] [INFO] cheese - inserting 1000 documents. first: Éric Le Chanony and last: List of Old Bristolians born before the 19th century -[2018-02-13T00:32:55.083] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:55.059] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:32:55.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Post-hardcore/leftpanel and last: Waterlaso -[2018-02-13T00:32:55.181] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:32:55.263] [INFO] cheese - inserting 1000 documents. first: Category:1974 in Kansas and last: Anglo-Bhutan War of 1864–65 -[2018-02-13T00:32:55.305] [INFO] cheese - inserting 1000 documents. first: Bus monitoring and last: Research article -[2018-02-13T00:32:55.315] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:32:55.326] [INFO] cheese - inserting 1000 documents. first: Tihomir Orešković and last: Qaṣīdah -[2018-02-13T00:32:55.349] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:32:55.371] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:32:55.429] [INFO] cheese - inserting 1000 documents. first: Group Captain Cheshire and last: Peter Collins (Formula One) -[2018-02-13T00:32:55.467] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:55.503] [INFO] cheese - inserting 1000 documents. first: Category:Filipino professional wrestlers and last: Tumichuqua lake -[2018-02-13T00:32:55.545] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:32:55.598] [INFO] cheese - inserting 1000 documents. first: Jim McKay and last: Peter Steele -[2018-02-13T00:32:55.601] [INFO] cheese - inserting 1000 documents. first: Axel Heiberg Stang and last: Anomaluromorpha -[2018-02-13T00:32:55.605] [INFO] cheese - inserting 1000 documents. first: Rithā' and last: Jade Wang -[2018-02-13T00:32:55.633] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:32:55.647] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:32:55.646] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:32:55.662] [INFO] cheese - inserting 1000 documents. first: Category:Natural phenols and last: Murray Edmund Watts -[2018-02-13T00:32:55.709] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:32:55.737] [INFO] cheese - inserting 1000 documents. first: History of hentai and last: File:Rissa IL.jpg -[2018-02-13T00:32:55.790] [INFO] cheese - inserting 1000 documents. first: San Antonio lake and last: James P. Leamy -[2018-02-13T00:32:55.792] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:32:55.796] [INFO] cheese - inserting 1000 documents. first: Atenia quadrani and last: John Mahnken -[2018-02-13T00:32:55.816] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:32:55.851] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:32:55.989] [INFO] cheese - inserting 1000 documents. first: Rhizosthenes falciformis and last: Wikipedia:Articles for deletion/Go Solutions Group, Inc. -[2018-02-13T00:32:56.024] [INFO] cheese - inserting 1000 documents. first: Mervyn and last: List of PSone Classics N–Z -[2018-02-13T00:32:56.024] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:32:56.065] [INFO] cheese - inserting 1000 documents. first: Stormer (disambiguation) and last: St.Anselm's School -[2018-02-13T00:32:56.067] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:32:56.072] [INFO] cheese - inserting 1000 documents. first: James R. Nowlin and last: Brighton Blitz -[2018-02-13T00:32:56.101] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:32:56.132] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:32:56.150] [INFO] cheese - inserting 1000 documents. first: File:Kaohsiung County location.jpg and last: 2099 (comics) -[2018-02-13T00:32:56.161] [INFO] cheese - inserting 1000 documents. first: Category:Cochliopina and last: Category:Geomitra -[2018-02-13T00:32:56.189] [INFO] cheese - inserting 1000 documents. first: 2013 Belkin Pro Cycling season and last: Category:Museums in Caracas -[2018-02-13T00:32:56.209] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:32:56.215] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:32:56.291] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:32:56.437] [INFO] cheese - inserting 1000 documents. first: Hochthürmerberg and last: Charlotte Gingras -[2018-02-13T00:32:56.448] [INFO] cheese - inserting 1000 documents. first: Archibald Ronald McDonald Gordon and last: Hoodoo science -[2018-02-13T00:32:56.480] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:32:56.504] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:32:56.509] [INFO] cheese - inserting 1000 documents. first: Chop Suey! and last: De Mil Colores (Daniela Romo album) -[2018-02-13T00:32:56.564] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:32:56.586] [INFO] cheese - inserting 1000 documents. first: Geomitra delphinuloides and last: Lithasia jayana -[2018-02-13T00:32:56.615] [INFO] cheese - inserting 1000 documents. first: Coris picta and last: Gastric-brooding Frog -[2018-02-13T00:32:56.618] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:32:56.664] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:32:56.679] [INFO] cheese - inserting 1000 documents. first: Cremisan and last: Ma Chu -[2018-02-13T00:32:56.726] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:32:56.835] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Sediment in the Gulf of Mexico and last: Privalov -[2018-02-13T00:32:56.845] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/darryllevine.com and last: Waite Hockin Stirling -[2018-02-13T00:32:56.865] [INFO] cheese - inserting 1000 documents. first: Category:Food additives and last: MIT Press -[2018-02-13T00:32:56.883] [INFO] cheese - inserting 1000 documents. first: Rugose rocksnail and last: FC Lisma-Mordovia Saransk -[2018-02-13T00:32:56.895] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:32:56.906] [INFO] cheese - inserting 1000 documents. first: Spira (Final Fantasy X) and last: Uietkuk -[2018-02-13T00:32:56.910] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:32:56.927] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:32:56.943] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:32:56.956] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:32:57.054] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PASH and last: Scarletstadion Achter de Kazerne -[2018-02-13T00:32:57.090] [INFO] cheese - inserting 1000 documents. first: File:Sir Edwin, Lady Leela & Nissanka Wijeyeratne.jpg and last: Category:Companies based in Coles County, Illinois -[2018-02-13T00:32:57.111] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:32:57.187] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:32:57.262] [INFO] cheese - inserting 1000 documents. first: Tony Church (trailer writer) and last: Philonesia filiceti -[2018-02-13T00:32:57.283] [INFO] cheese - inserting 1000 documents. first: Kingsburg Police Department and last: Narong Wongthongkam -[2018-02-13T00:32:57.293] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:32:57.325] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:32:57.335] [INFO] cheese - inserting 1000 documents. first: John Lee Richmond and last: Wikipedia:WikiProject Spam/LinkReports/xdeal.net -[2018-02-13T00:32:57.351] [INFO] cheese - inserting 1000 documents. first: Slate River (Colorado) and last: Template:Vissel Kobe -[2018-02-13T00:32:57.373] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:32:57.516] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:32:57.643] [INFO] cheese - inserting 1000 documents. first: Philonesia and last: Category:Wikipedians interested in literature -[2018-02-13T00:32:57.689] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:32:57.741] [INFO] cheese - inserting 1000 documents. first: Tolombeh-ye Hajji Garam and last: Haskett Court -[2018-02-13T00:32:57.773] [INFO] cheese - inserting 1000 documents. first: Bofh and last: File:Escudo-Piloña.jpg -[2018-02-13T00:32:57.778] [INFO] cheese - inserting 1000 documents. first: Greed and fear and last: St. Joseph River (Maumee River) -[2018-02-13T00:32:57.791] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:32:57.812] [INFO] cheese - inserting 1000 documents. first: Kerry District League Premier B and last: Donald Mackenzie (advocate) -[2018-02-13T00:32:57.829] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:32:57.844] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:32:57.869] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:32:57.910] [INFO] cheese - inserting 1000 documents. first: Climate Data Records and last: Climate of Arkansas -[2018-02-13T00:32:57.944] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:32:57.945] [INFO] cheese - inserting 1000 documents. first: Tapetto Volante and last: Template:Ukraine-hotel-stub -[2018-02-13T00:32:57.993] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:32:58.025] [INFO] cheese - inserting 1000 documents. first: DE-533 and last: Valea Hrăii River -[2018-02-13T00:32:58.068] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:32:58.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Retailing/to do and last: Category:Universities and colleges in Marseille -[2018-02-13T00:32:58.205] [INFO] cheese - inserting 1000 documents. first: Cariogenic and last: Wikipedia:Images and media for deletion/2006 September 9 -[2018-02-13T00:32:58.206] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:32:58.209] [INFO] cheese - inserting 1000 documents. first: Quell (wearable) and last: A Midnight Summer's Dream -[2018-02-13T00:32:58.215] [INFO] cheese - inserting 1000 documents. first: Smos and last: Renal veins -[2018-02-13T00:32:58.234] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:32:58.243] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:32:58.260] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:32:58.371] [INFO] cheese - inserting 1000 documents. first: Ski jumping at the 2011 European Youth Olympic Winter Festival and last: Template:Tamil Nadu Highways Network -[2018-02-13T00:32:58.436] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:32:58.513] [INFO] cheese - inserting 1000 documents. first: Category:Universities and colleges in Bordeaux and last: Daya Master -[2018-02-13T00:32:58.543] [INFO] cheese - inserting 1000 documents. first: Health and Welfare Canada and last: Amcham -[2018-02-13T00:32:58.544] [INFO] cheese - inserting 1000 documents. first: 1928 Colgate football team and last: Autodromo de Turagua -[2018-02-13T00:32:58.559] [INFO] cheese - inserting 1000 documents. first: CXVIII and last: A. A. Delvig -[2018-02-13T00:32:58.561] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:32:58.586] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:32:58.598] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:32:58.616] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:32:58.667] [INFO] cheese - inserting 1000 documents. first: Beebopareebop Rhubarb Pie and last: Paige Young -[2018-02-13T00:32:58.745] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:32:58.814] [INFO] cheese - inserting 1000 documents. first: File:Advertising Standards Council of India Logo.jpg and last: Wikipedia:Copyright problems/2011 February 13 -[2018-02-13T00:32:58.844] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:32:58.970] [INFO] cheese - inserting 1000 documents. first: Tied note and last: Emden, Germany -[2018-02-13T00:32:58.983] [INFO] cheese - inserting 1000 documents. first: Hikari Rail Star (Shinkansen) and last: Richard Corbett -[2018-02-13T00:32:59.004] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:32:59.029] [INFO] cheese - inserting 1000 documents. first: File:Recovery Road (TV series) title.png and last: Babić, Ivan -[2018-02-13T00:32:59.042] [INFO] cheese - inserting 1000 documents. first: Scott Act (1888) and last: Japanese Unconditional Surrender -[2018-02-13T00:32:59.044] [INFO] cheese - inserting 1000 documents. first: Operation Argo and last: Zabrus gravis -[2018-02-13T00:32:59.045] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T00:32:59.077] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:32:59.084] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:32:59.086] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:32:59.152] [INFO] cheese - inserting 1000 documents. first: Category:Living museums in Washington (state) and last: Bulgarian Jewry -[2018-02-13T00:32:59.174] [INFO] cheese - inserting 1000 documents. first: SD Negreira and last: Wikipedia:Articles for deletion/WWII: War of Supremacy -[2018-02-13T00:32:59.195] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:32:59.230] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:32:59.292] [INFO] cheese - inserting 1000 documents. first: 한효주 and last: Joseph Buerger -[2018-02-13T00:32:59.330] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:32:59.344] [INFO] cheese - inserting 1000 documents. first: Linda Chou and last: Wikipedia:Images and media for deletion/2007 January 16 -[2018-02-13T00:32:59.379] [INFO] cheese - inserting 1000 documents. first: Belsky, Ivan and last: Firminus -[2018-02-13T00:32:59.382] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:32:59.412] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:32:59.439] [INFO] cheese - inserting 1000 documents. first: File:Holyfield vs Cooper.jpg and last: Periclimenes priodactylus -[2018-02-13T00:32:59.475] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:32:59.525] [INFO] cheese - inserting 1000 documents. first: Kiesling and last: Wikipedia:Articles for deletion/Gravity Falls -[2018-02-13T00:32:59.571] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:32:59.625] [INFO] cheese - inserting 1000 documents. first: Portal:Cricket/Anniversaries/June/June 9 and last: Carlos Rafael -[2018-02-13T00:32:59.629] [INFO] cheese - inserting 1000 documents. first: Intercounty Maple Leafs and last: Category:Companies of Tajikistan -[2018-02-13T00:32:59.657] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:32:59.677] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:32:59.685] [INFO] cheese - inserting 1000 documents. first: 1995 Atlantic Hurricane season and last: Wikipedia:Articles for deletion/Median number -[2018-02-13T00:32:59.727] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Images and media for deletion/2007 January 15 and last: Raymond Jackson (disambiguation) -[2018-02-13T00:32:59.742] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:32:59.751] [INFO] cheese - inserting 1000 documents. first: 1923 Drake Bulldogs football team and last: Franz Pitzinger -[2018-02-13T00:32:59.775] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:32:59.801] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:32:59.837] [INFO] cheese - inserting 1000 documents. first: Periclimenes signatus and last: Emeka Onyenekwu -[2018-02-13T00:32:59.919] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:32:59.974] [INFO] cheese - inserting 1000 documents. first: Category:Cambridge University Press books and last: Toto Le Héros -[2018-02-13T00:33:00.021] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:33:00.053] [INFO] cheese - inserting 1000 documents. first: Oklahoma State Highway 53A and last: Portal:Ethics/Quotes -[2018-02-13T00:33:00.090] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:00.125] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Tajikistan and last: Wikipedia:POTD row/April 3, 2006 -[2018-02-13T00:33:00.151] [INFO] cheese - inserting 1000 documents. first: TXDADS and last: Lago di santa rosalia -[2018-02-13T00:33:00.175] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:33:00.201] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:33:00.235] [INFO] cheese - inserting 1000 documents. first: Sara Creek and last: United Nations Convention Against Torture -[2018-02-13T00:33:00.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Center for Appropriate Transport and last: Towns and cities in Kosovo -[2018-02-13T00:33:00.281] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:33:00.316] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:33:00.353] [INFO] cheese - inserting 1000 documents. first: Ogliastro Lake and last: Wikipedia:Images and media for deletion/2008 March 23 -[2018-02-13T00:33:00.375] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:33:00.448] [INFO] cheese - inserting 1000 documents. first: Cat House (Charmed) and last: Category:British Library Arundel collection -[2018-02-13T00:33:00.519] [INFO] cheese - inserting 1000 documents. first: Johnny Maulbetsch and last: Category:Succineidae -[2018-02-13T00:33:00.524] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:00.582] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:00.697] [INFO] cheese - inserting 1000 documents. first: Itarildë and last: Connection (fibred manifold) -[2018-02-13T00:33:00.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Images and media for deletion/2008 March 22 and last: Dheri Thothal -[2018-02-13T00:33:00.720] [INFO] cheese - inserting 1000 documents. first: Wikipedia:POTD row/April 5, 2006 and last: Keith Dorney -[2018-02-13T00:33:00.732] [INFO] cheese - inserting 1000 documents. first: 10 Hygiea and last: Jan, Count Zizka -[2018-02-13T00:33:00.740] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:33:00.742] [INFO] cheese - inserting 1000 documents. first: Towns and cities of Kosovo and last: Vallombrosan Benedictines -[2018-02-13T00:33:00.747] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:33:00.793] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:00.813] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T00:33:00.817] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:33:00.916] [INFO] cheese - inserting 1000 documents. first: Uz Jsme Doma and last: Darren Jones -[2018-02-13T00:33:00.948] [INFO] cheese - inserting 1000 documents. first: Vincenzo Ruggiero and last: Template:CinemaofSwitzerland -[2018-02-13T00:33:00.949] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:33:01.018] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:33:01.171] [INFO] cheese - inserting 1000 documents. first: Musume Morning and last: Category:People from Northeast China -[2018-02-13T00:33:01.213] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:33:01.223] [INFO] cheese - inserting 1000 documents. first: Film poem and last: Pendarvis Williams -[2018-02-13T00:33:01.272] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:01.311] [INFO] cheese - inserting 1000 documents. first: File:Forever Worlds - Enter the Unknown coverart.png and last: Splitrock, Wisconsin -[2018-02-13T00:33:01.346] [INFO] cheese - inserting 1000 documents. first: Mizuti and last: Template:Central America topic -[2018-02-13T00:33:01.349] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:01.397] [INFO] cheese - inserting 1000 documents. first: Cone biopsy and last: Template:Warcraft Universe -[2018-02-13T00:33:01.397] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:33:01.441] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:01.565] [INFO] cheese - inserting 1000 documents. first: Template:CinemaofTaiwan and last: Army Reserve Aviation Command -[2018-02-13T00:33:01.580] [INFO] cheese - inserting 1000 documents. first: MEMOrg and last: Wikipedia:Articles for deletion/Apostolic Johannite Church -[2018-02-13T00:33:01.610] [INFO] cheese - inserting 1000 documents. first: Category:2007 establishments in Arizona and last: Spiralisigna gloriae -[2018-02-13T00:33:01.610] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:01.616] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:33:01.662] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:33:01.686] [INFO] cheese - inserting 1000 documents. first: FAI Under-17 Cup and last: Causes of inflation -[2018-02-13T00:33:01.721] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:33:01.733] [INFO] cheese - inserting 1000 documents. first: List of monastic houses on the Isle of Man and last: Wikipedia:Multilingual ranking April 2002 -[2018-02-13T00:33:01.743] [INFO] cheese - inserting 1000 documents. first: Cleveland Council of Independent Schools and last: Cádiz Cortes -[2018-02-13T00:33:01.770] [INFO] cheese - inserting 1000 documents. first: Myadora novaezelandiae and last: File:Aadmi Sadak Ka.jpg -[2018-02-13T00:33:01.779] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:33:01.790] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:33:01.803] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:33:01.898] [INFO] cheese - inserting 1000 documents. first: Pobe Mengao and last: Wikipedia:Flag protection and patrolled revisions/Flag protection -[2018-02-13T00:33:01.934] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:33:01.964] [INFO] cheese - inserting 1000 documents. first: Battlelab and last: File:Roswell Invaders logo.gif -[2018-02-13T00:33:02.008] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:33:02.013] [INFO] cheese - inserting 1000 documents. first: File:Intercourse, first edition.jpg and last: Category:Articles with evidence out of context -[2018-02-13T00:33:02.048] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:33:02.098] [INFO] cheese - inserting 1000 documents. first: 11th Aviation Group (United States) and last: Ani-Mayhem -[2018-02-13T00:33:02.146] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:33:02.160] [INFO] cheese - inserting 1000 documents. first: Ray González and last: Ice sledge hockey at the 2006 Winter Paralympics -[2018-02-13T00:33:02.182] [INFO] cheese - inserting 1000 documents. first: William Augustus Brevoort Coolidge and last: Wikipedia:Articles for deletion/Lodestar -[2018-02-13T00:33:02.230] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:33:02.266] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:33:02.418] [INFO] cheese - inserting 1000 documents. first: Terry Blair (politician) and last: Minuscule 407 -[2018-02-13T00:33:02.426] [INFO] cheese - inserting 1000 documents. first: Abd Allah abu Amir and last: Category:2005 establishments in Michigan -[2018-02-13T00:33:02.461] [INFO] cheese - inserting 1000 documents. first: List of Micropolitan Statistical Areas and last: Category:Festivals established in 2001 -[2018-02-13T00:33:02.486] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:02.489] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:33:02.518] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:02.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Multilingual ranking March 2002 and last: Kolomenskoe -[2018-02-13T00:33:02.583] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:33:02.651] [INFO] cheese - inserting 1000 documents. first: Chlorocypha bambtoni and last: Samuel Fowler -[2018-02-13T00:33:02.703] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:02.721] [INFO] cheese - inserting 1000 documents. first: File:TGFTC.jpg and last: Category:Buildings and structures in Dubai -[2018-02-13T00:33:02.768] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:02.777] [INFO] cheese - inserting 1000 documents. first: Apostolic Vicariate of Villavicencio and last: XHTAZ-TDT -[2018-02-13T00:33:02.800] [INFO] cheese - inserting 1000 documents. first: Anton Krošl and last: Hash tree -[2018-02-13T00:33:02.811] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:33:02.827] [INFO] cheese - inserting 1000 documents. first: Ani-Mayhem! and last: Béla Guttman -[2018-02-13T00:33:02.839] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:02.888] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:33:02.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/File:Tachysphex specie.jpg and last: Joshua Jennison House -[2018-02-13T00:33:02.963] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:33:03.025] [INFO] cheese - inserting 1000 documents. first: Clinton Township, Ohio and last: Marxist Socialism -[2018-02-13T00:33:03.063] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:33:03.152] [INFO] cheese - inserting 1000 documents. first: Pausanias (disambiguation) and last: Tore tanzt -[2018-02-13T00:33:03.159] [INFO] cheese - inserting 1000 documents. first: Aysén Region and last: Women's Basketball Hall of Fame -[2018-02-13T00:33:03.174] [INFO] cheese - inserting 1000 documents. first: XHTAT-TDT and last: Category:Time travelers -[2018-02-13T00:33:03.193] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:03.199] [INFO] cheese - inserting 1000 documents. first: Alfa Romeo Tipo 33 and last: San Francisco School of Design -[2018-02-13T00:33:03.208] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:33:03.223] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:33:03.271] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:03.385] [INFO] cheese - inserting 1000 documents. first: Aidar Kumisbekov and last: File:Colors1.jpg -[2018-02-13T00:33:03.417] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:03.465] [INFO] cheese - inserting 1000 documents. first: List of recreational number theory topics and last: File:Club color pohang.png -[2018-02-13T00:33:03.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Missing encyclopedic articles/DNB Epitome 01 and last: Carboniferous (album) -[2018-02-13T00:33:03.614] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:33:03.644] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:33:03.691] [INFO] cheese - inserting 1000 documents. first: Robert Nosse and last: Wikipedia:Articles for deletion/Vocalocity -[2018-02-13T00:33:03.720] [INFO] cheese - inserting 1000 documents. first: National LIDAR Dataset – USA and last: Economic Club of Pittsburgh -[2018-02-13T00:33:03.776] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:33:03.779] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:33:03.901] [INFO] cheese - inserting 1000 documents. first: Pheidole oculata and last: File:Kent.gif -[2018-02-13T00:33:03.986] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:33:04.018] [INFO] cheese - inserting 1000 documents. first: Madam Rosmerta and last: Unia Wolnosci -[2018-02-13T00:33:04.090] [INFO] cheese - inserting 1000 documents. first: Konstantin Petrovich Mikhailov and last: 1511 (year) -[2018-02-13T00:33:04.120] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:33:04.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mrs. Malfoy, Mrs. Tavington, and Mrs. Keegan Present Themselves and last: Category:Sogn og Fjordane -[2018-02-13T00:33:04.144] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:33:04.231] [INFO] cheese - inserting 1000 documents. first: All by Myself (Grey's Anatomy) and last: Battle of Tuiteam-Tarbhach -[2018-02-13T00:33:04.247] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:33:04.310] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:33:04.374] [INFO] cheese - inserting 1000 documents. first: 1510 (year) and last: 552 (year) -[2018-02-13T00:33:04.388] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:33:04.424] [INFO] cheese - inserting 1000 documents. first: Strongylognathus minutus and last: Bombardier Bi-Level Coach -[2018-02-13T00:33:04.429] [INFO] cheese - inserting 1000 documents. first: Principle of minimal privilege and last: Right You Are, If You Think So -[2018-02-13T00:33:04.451] [INFO] cheese - inserting 1000 documents. first: Economy of Philadelphia and last: Karen E. Goulekas -[2018-02-13T00:33:04.467] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:33:04.508] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:33:04.529] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:33:04.583] [INFO] cheese - inserting 1000 documents. first: 551 (year) and last: Year 1831 -[2018-02-13T00:33:04.601] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:33:04.742] [INFO] cheese - inserting 1000 documents. first: Year 1830 and last: Year 863 -[2018-02-13T00:33:04.766] [INFO] cheese - batch complete in: 0.165 secs -[2018-02-13T00:33:04.791] [INFO] cheese - inserting 1000 documents. first: Battle of Tuttim-Tarwach and last: Non è mai troppo tardi (film 1953) -[2018-02-13T00:33:04.796] [INFO] cheese - inserting 1000 documents. first: Eunomia family and last: Multiplicity (film) -[2018-02-13T00:33:04.805] [INFO] cheese - inserting 1000 documents. first: Rivest-Shamir-Adleman Number and last: File:BradfordPA.PNG -[2018-02-13T00:33:04.824] [INFO] cheese - inserting 1000 documents. first: Right You Are (If You Think You Are) and last: Białobrzeski family -[2018-02-13T00:33:04.839] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:33:04.849] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:33:04.865] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:33:04.874] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:33:04.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cheryl Cran and last: Deh-e Pain, Ravar -[2018-02-13T00:33:04.903] [INFO] cheese - inserting 1000 documents. first: Year 862 and last: Sylph (Dungeons and Dragons) -[2018-02-13T00:33:04.918] [INFO] cheese - batch complete in: 0.152 secs -[2018-02-13T00:33:04.941] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:05.050] [INFO] cheese - inserting 1000 documents. first: Candlegrease bun and last: File:Roland XP-30 Synthesizer.JPG -[2018-02-13T00:33:05.109] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:33:05.149] [INFO] cheese - inserting 1000 documents. first: List of Dungeons and Dragons deities and last: Timeline of the presidency of Barack Obama (2016) -[2018-02-13T00:33:05.169] [INFO] cheese - inserting 1000 documents. first: Mohsen Mostafavi and last: Category:National Football League on the radio -[2018-02-13T00:33:05.180] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:33:05.214] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:33:05.248] [INFO] cheese - inserting 1000 documents. first: Domain Model and last: Category:Bodo nationalism -[2018-02-13T00:33:05.252] [INFO] cheese - inserting 1000 documents. first: Tsarevna Sophia Alekseyevna and last: ZX Spectrum character set -[2018-02-13T00:33:05.285] [INFO] cheese - inserting 1000 documents. first: Buss bar and last: EC 3.6.5.5 -[2018-02-13T00:33:05.297] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:33:05.299] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:05.332] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:33:05.471] [INFO] cheese - inserting 1000 documents. first: Tokyo Subway Attacks and last: Bjørnar Valstad -[2018-02-13T00:33:05.525] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:33:05.530] [INFO] cheese - inserting 1000 documents. first: 17th Earl of Oxford, Lord Bulbeck and last: Kármán line -[2018-02-13T00:33:05.582] [INFO] cheese - inserting 1000 documents. first: List of Ubisoft games and last: 15thOWS -[2018-02-13T00:33:05.638] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:33:05.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Ruby-crowned kinglet and last: 2016 New Zealand Open Grand Prix -[2018-02-13T00:33:05.674] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:33:05.786] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:33:05.845] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Terri Clark (author) and last: George McCall Courts -[2018-02-13T00:33:05.894] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:33:05.998] [INFO] cheese - inserting 1000 documents. first: Post ship and last: Quanzhen School -[2018-02-13T00:33:06.022] [INFO] cheese - inserting 1000 documents. first: CDC14 and last: File:Avolites Logo.svg -[2018-02-13T00:33:06.072] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:06.110] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:33:06.262] [INFO] cheese - inserting 1000 documents. first: Dielectric constant of vacuum and last: File:3lbs title card.jpg -[2018-02-13T00:33:06.309] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:06.351] [INFO] cheese - inserting 1000 documents. first: Faliyu and last: De Finetti’s representation theorem -[2018-02-13T00:33:06.370] [INFO] cheese - inserting 1000 documents. first: File:JoeHenry-FiremansWedding.jpg and last: File:Astronbelt-arcadegame.jpg -[2018-02-13T00:33:06.374] [INFO] cheese - inserting 1000 documents. first: Current account mortgage and last: RBW -[2018-02-13T00:33:06.386] [INFO] cheese - inserting 1000 documents. first: St Neots Priory and last: Vladimir Propp -[2018-02-13T00:33:06.417] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:33:06.437] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:33:06.446] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:33:06.492] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:33:06.642] [INFO] cheese - inserting 1000 documents. first: File:Anna-Rossinelli-Marylou.jpg and last: Lumding–Dibrugarh section -[2018-02-13T00:33:06.678] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:33:06.749] [INFO] cheese - inserting 1000 documents. first: Illinois Open and last: Courtney Love Returns -[2018-02-13T00:33:06.799] [INFO] cheese - inserting 1000 documents. first: Jean-Paul Faber and last: Category:People from Drâa-Tafilalet -[2018-02-13T00:33:06.799] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:33:06.862] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:33:06.865] [INFO] cheese - inserting 1000 documents. first: File:Bandore1.gif and last: File:Look Press.jpg -[2018-02-13T00:33:06.865] [INFO] cheese - inserting 1000 documents. first: Hypermutation and last: Gunther Lutjens -[2018-02-13T00:33:06.929] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:06.949] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:33:06.972] [INFO] cheese - inserting 1000 documents. first: Cladeiodon and last: Boogie Shoes -[2018-02-13T00:33:07.046] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:33:07.095] [INFO] cheese - inserting 1000 documents. first: 1983 K-League and last: Fossil-fuelled power station -[2018-02-13T00:33:07.155] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:07.164] [INFO] cheese - inserting 1000 documents. first: William E. Colby and last: A Tale of Two Cities (1935) -[2018-02-13T00:33:07.229] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:33:07.236] [INFO] cheese - inserting 1000 documents. first: Brandon Williams (cornerback, born 1980) and last: File:Christougenna with katy.jpg -[2018-02-13T00:33:07.265] [INFO] cheese - inserting 1000 documents. first: Liposcelis and last: Economic liberalisation in Myanmar -[2018-02-13T00:33:07.276] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:07.314] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:33:07.334] [INFO] cheese - inserting 1000 documents. first: Bobrowniki, West Pomeranian Voivodeship and last: Nałęcze, West Pomeranian Voivodeship -[2018-02-13T00:33:07.376] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:07.502] [INFO] cheese - inserting 1000 documents. first: 2013 Power Horse Cup – Doubles and last: Template:POTD protected/2013-05-19 -[2018-02-13T00:33:07.503] [INFO] cheese - inserting 1000 documents. first: Philippines Campaign (1944–1945) and last: Udaipur -[2018-02-13T00:33:07.538] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:07.542] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:33:07.639] [INFO] cheese - inserting 1000 documents. first: Akkar and last: Pool cue -[2018-02-13T00:33:07.668] [INFO] cheese - inserting 1000 documents. first: Delivery (song) and last: Peyrolles, Gard -[2018-02-13T00:33:07.691] [INFO] cheese - inserting 1000 documents. first: Steymann v Staatssecretaris van Justitie and last: Margaret Pattens -[2018-02-13T00:33:07.709] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:33:07.713] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:33:07.753] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:07.813] [INFO] cheese - inserting 1000 documents. first: Orzeń and last: File:Full Metal Jacket poster.jpg -[2018-02-13T00:33:07.821] [INFO] cheese - inserting 1000 documents. first: Software Automatic Mouth and last: Garden centre -[2018-02-13T00:33:07.846] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:07.880] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:33:07.960] [INFO] cheese - inserting 1000 documents. first: List of counties and cities in Virginia and last: Cripple Creek (film) -[2018-02-13T00:33:08.016] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:08.026] [INFO] cheese - inserting 1000 documents. first: Maximum Entropy and last: Murphy's World -[2018-02-13T00:33:08.082] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Wyoming Highway 74 and last: 2012 Euskaltel-Euskadi season -[2018-02-13T00:33:08.093] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:08.141] [INFO] cheese - inserting 1000 documents. first: Pairs figure skater and last: Mykola Tomyn -[2018-02-13T00:33:08.150] [INFO] cheese - inserting 1000 documents. first: Sandy Cohen (ice hockey) and last: Perigonia caryae -[2018-02-13T00:33:08.182] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:33:08.279] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:33:08.304] [INFO] cheese - inserting 1000 documents. first: Lagrange interpolation polynomial and last: Second lake, nova scotia -[2018-02-13T00:33:08.312] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:33:08.388] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:33:08.600] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Swiss films and last: Breakfast at Sweethearts (song) -[2018-02-13T00:33:08.637] [INFO] cheese - inserting 1000 documents. first: Amarpal Singh Ajnala and last: Grand Prix racing -[2018-02-13T00:33:08.650] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:33:08.660] [INFO] cheese - inserting 1000 documents. first: SpaceShipOne flight 13P and last: Edhom -[2018-02-13T00:33:08.687] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:33:08.700] [INFO] cheese - inserting 1000 documents. first: Corston, Somersetshire and last: Wikipedia:WikiProject Spam/LinkReports/spleticna.si -[2018-02-13T00:33:08.710] [INFO] cheese - inserting 1000 documents. first: The Wish to Be An Indian and last: The Earth, A Small Man, His Dog And A Chicken -[2018-02-13T00:33:08.726] [INFO] cheese - inserting 1000 documents. first: Deep mine and last: Weezer ("The Blue Album") -[2018-02-13T00:33:08.735] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:33:08.740] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:33:08.752] [INFO] cheese - inserting 1000 documents. first: Lakes in Yukon and last: Wikipedia:Articles for deletion/Criticism of Noam Chomsky (2nd nomination) -[2018-02-13T00:33:08.776] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:33:08.785] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:33:08.827] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:09.062] [INFO] cheese - inserting 1000 documents. first: Grind it! Records and last: Category:People from Coolidge, Arizona -[2018-02-13T00:33:09.091] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Criticism of Hugo Chávez (3nd nomination) and last: Columbarium altocanalis -[2018-02-13T00:33:09.098] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by O Muel and last: India cricket team in Zimbabwe in 2016 -[2018-02-13T00:33:09.110] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:33:09.141] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/spleticna.si and last: Orange Bowl (tennis) -[2018-02-13T00:33:09.144] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:33:09.160] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:33:09.203] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:33:09.221] [INFO] cheese - inserting 1000 documents. first: WRKZ and last: Andreja Gomboc -[2018-02-13T00:33:09.224] [INFO] cheese - inserting 1000 documents. first: The Cream & The Crock - The Best Of You Am I and last: Itamar Batista da Silva -[2018-02-13T00:33:09.239] [INFO] cheese - inserting 1000 documents. first: Bangor (Wales) railway station and last: The Ground of Arts -[2018-02-13T00:33:09.281] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:33:09.281] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:33:09.306] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:33:09.566] [INFO] cheese - inserting 1000 documents. first: Columbarium mariae and last: Black supremism -[2018-02-13T00:33:09.584] [INFO] cheese - inserting 1000 documents. first: N-methylpyridinium and last: Template:Santeros de Aguada roster -[2018-02-13T00:33:09.607] [INFO] cheese - inserting 1000 documents. first: The Way (song) and last: Land of Black Gold (film) -[2018-02-13T00:33:09.618] [INFO] cheese - inserting 1000 documents. first: Adhemarius daphne and last: Pablo Barnansi -[2018-02-13T00:33:09.637] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:09.728] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:09.732] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:33:09.756] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:33:09.861] [INFO] cheese - inserting 1000 documents. first: UAAP Volleyball Champions and last: Great Dodford, Worcestershire -[2018-02-13T00:33:09.904] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:33:09.922] [INFO] cheese - inserting 1000 documents. first: Arithmetick: or, The Grounde of Arts and last: Image stacking -[2018-02-13T00:33:10.026] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:33:10.056] [INFO] cheese - inserting 1000 documents. first: Super Deformed and last: Franklin MacVeagh -[2018-02-13T00:33:10.150] [INFO] cheese - inserting 1000 documents. first: Template:Life graphical timeline and last: Peter Morcom -[2018-02-13T00:33:10.175] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:33:10.214] [INFO] cheese - inserting 1000 documents. first: File:ARS Winnenden.png and last: Jean-Felix Tchicaya -[2018-02-13T00:33:10.279] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:33:10.270] [INFO] cheese - inserting 1000 documents. first: Compé Anansi and last: Art Powell (American football) -[2018-02-13T00:33:10.336] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:33:10.388] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:33:10.410] [INFO] cheese - inserting 1000 documents. first: The Adventures of Tintin: Land of Black Gold and last: Picture It! 2000 -[2018-02-13T00:33:10.530] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:33:10.603] [INFO] cheese - inserting 1000 documents. first: Dąbrówka Kościelna, Greater Poland Voivodeship and last: Saturday Night Live (season 19) -[2018-02-13T00:33:10.680] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:33:10.765] [INFO] cheese - inserting 1000 documents. first: File:Terracina-comune.jpg and last: Downfall (Solitude Aeturnus album) -[2018-02-13T00:33:10.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for permissions/Denied/January 2016 and last: Aaron Frenkel -[2018-02-13T00:33:10.799] [INFO] cheese - inserting 1000 documents. first: Edm. Harbitz and last: Koç Lisesi -[2018-02-13T00:33:10.810] [INFO] cheese - inserting 1000 documents. first: Mordekhay and last: Emaanuel de Witte -[2018-02-13T00:33:10.812] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:33:10.814] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:33:10.853] [INFO] cheese - inserting 1000 documents. first: Puntzi Mountain AS and last: Wikipedia:Join Wikipedia! -[2018-02-13T00:33:10.859] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:33:10.905] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:33:10.948] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:33:11.047] [INFO] cheese - inserting 1000 documents. first: Picture It! 98 and last: Bad video games -[2018-02-13T00:33:11.119] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:33:11.214] [INFO] cheese - inserting 1000 documents. first: B splines and last: Wikipedia:Reference desk/Archives/Mathematics/2007 August 10 -[2018-02-13T00:33:11.258] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:11.310] [INFO] cheese - inserting 1000 documents. first: Category:Squats in Spain and last: John Ruch -[2018-02-13T00:33:11.345] [INFO] cheese - inserting 1000 documents. first: Gerald Curatola and last: Eddie DelGrosso -[2018-02-13T00:33:11.352] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:11.403] [INFO] cheese - inserting 1000 documents. first: North Dakota Highway Patrol and last: A Vision of Judgment -[2018-02-13T00:33:11.448] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:11.524] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:11.552] [INFO] cheese - inserting 1000 documents. first: Pulgoki-jip and last: SVREP -[2018-02-13T00:33:11.576] [INFO] cheese - inserting 1000 documents. first: Category:Northern Rugby Football League seasons and last: Bhadaas -[2018-02-13T00:33:11.632] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:11.703] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:11.834] [INFO] cheese - inserting 1000 documents. first: Arboleas and last: The Tale of Kieu -[2018-02-13T00:33:11.924] [INFO] cheese - inserting 1000 documents. first: Controlled interface and last: Wikipedia:Articles for deletion/Zalefar -[2018-02-13T00:33:11.931] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T00:33:12.017] [INFO] cheese - inserting 1000 documents. first: Template:3OH!3 songs and last: File:Terror Trail poster.jpg -[2018-02-13T00:33:12.025] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:12.081] [INFO] cheese - inserting 1000 documents. first: List of provincial historic sites of Alberta and last: Jean Cousin (composer) -[2018-02-13T00:33:12.113] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:33:12.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Philadelphia articles by quality/6 and last: Plesetsk Cosmodrome Site 43 -[2018-02-13T00:33:12.241] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:33:12.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Antony Crockett and last: Shinhwa videography -[2018-02-13T00:33:12.251] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:33:12.311] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:33:12.318] [INFO] cheese - inserting 1000 documents. first: Khulan khatun and last: Flavian Aponso -[2018-02-13T00:33:12.365] [INFO] cheese - inserting 1000 documents. first: Kattur, Thiruvarur district and last: AD 1128 -[2018-02-13T00:33:12.387] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:33:12.403] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:33:12.528] [INFO] cheese - inserting 1000 documents. first: Reba episodes and last: Anna fantastic -[2018-02-13T00:33:12.550] [INFO] cheese - inserting 1000 documents. first: AD 1127 and last: Tokmakov -[2018-02-13T00:33:12.575] [INFO] cheese - batch complete in: 0.188 secs -[2018-02-13T00:33:12.576] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:12.648] [INFO] cheese - inserting 1000 documents. first: Sulawesi Bronze Bush Skink and last: Bustantigo -[2018-02-13T00:33:12.706] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:33:12.719] [INFO] cheese - inserting 1000 documents. first: USS Plunger (SS-2) and last: Majority Leader of the House of Representatives -[2018-02-13T00:33:12.781] [INFO] cheese - inserting 1000 documents. first: Alexis de Tocqueville Center for Political and Legal Thought and last: Guillaume Mathieu, comte Dumas -[2018-02-13T00:33:12.792] [INFO] cheese - inserting 1000 documents. first: Tolombeh-ye 22 Bahman (disambiguation) and last: Category:People from Aousserd -[2018-02-13T00:33:12.795] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:33:12.852] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:33:12.861] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:33:12.920] [INFO] cheese - inserting 1000 documents. first: StB and last: BCE Emergis -[2018-02-13T00:33:13.008] [INFO] cheese - inserting 1000 documents. first: Holyrood Church, Swindon and last: Episcopal Bishop of Pittsburgh -[2018-02-13T00:33:13.038] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:13.074] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:13.119] [INFO] cheese - inserting 1000 documents. first: Aranwë and last: Robert B. Campbell -[2018-02-13T00:33:13.164] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:33:13.180] [INFO] cheese - inserting 1000 documents. first: 1981 Custom Credit Australian Indoor Championships – Doubles and last: Battle of Barry (folklore) -[2018-02-13T00:33:13.237] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:13.423] [INFO] cheese - inserting 1000 documents. first: Yoojimboo (movie) and last: Parthenon marbles -[2018-02-13T00:33:13.427] [INFO] cheese - inserting 1000 documents. first: Category:People from Bryson City, North Carolina and last: 1929 Yugoslav First League -[2018-02-13T00:33:13.454] [INFO] cheese - inserting 1000 documents. first: Category:People from Augustenborg, Denmark and last: Template:ALeagueVenue Suncorp -[2018-02-13T00:33:13.463] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Bishop of Pittsburgh and last: Mein Kampf in the Arabic language -[2018-02-13T00:33:13.474] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:33:13.476] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:33:13.502] [INFO] cheese - inserting 1000 documents. first: Acustic and last: Melzer See -[2018-02-13T00:33:13.505] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:33:13.517] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:13.545] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:33:13.556] [INFO] cheese - inserting 1000 documents. first: Capital Research & Management Company and last: Great Highland Bagpipe -[2018-02-13T00:33:13.631] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:13.635] [INFO] cheese - inserting 1000 documents. first: William Elliott (American politician) and last: Nebiryraw I -[2018-02-13T00:33:13.694] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:13.806] [INFO] cheese - inserting 1000 documents. first: AunaCable and last: Lake Schmachter -[2018-02-13T00:33:13.829] [INFO] cheese - inserting 1000 documents. first: CBB17 and last: Vanitha (disambiguation) -[2018-02-13T00:33:13.846] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:33:13.868] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:33:13.889] [INFO] cheese - inserting 1000 documents. first: 1930 Yugoslav First League and last: Subhi Bay Barakat al-Khalidi -[2018-02-13T00:33:13.941] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:33:13.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Robson Chavez Santana and last: Anti-Vietnam War activism -[2018-02-13T00:33:14.017] [INFO] cheese - inserting 1000 documents. first: Gstreamer and last: Samuel C. Hyde -[2018-02-13T00:33:14.033] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:33:14.052] [INFO] cheese - inserting 1000 documents. first: Nicole Genier and last: Trinidad and Tobago general election, 1956 -[2018-02-13T00:33:14.088] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:33:14.111] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:33:14.119] [INFO] cheese - inserting 1000 documents. first: John O'Keefe and last: William Semple Green -[2018-02-13T00:33:14.283] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:33:14.315] [INFO] cheese - inserting 1000 documents. first: Großer Prebelow Lake and last: File:For Better or Worse coming out panel.PNG -[2018-02-13T00:33:14.393] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:33:14.400] [INFO] cheese - inserting 1000 documents. first: Category:Manufacturing companies established in 1891 and last: Kcee (disambiguation) -[2018-02-13T00:33:14.474] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:33:14.505] [INFO] cheese - inserting 1000 documents. first: Priory Green Primary School and last: Ranks of the French Navy -[2018-02-13T00:33:14.571] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:33:14.647] [INFO] cheese - inserting 1000 documents. first: Peptidyl-glutamate 4-carboxylase and last: Pyreinoye gas field -[2018-02-13T00:33:14.668] [INFO] cheese - inserting 1000 documents. first: Let's Polka! and last: Wikipedia:Administrators' noticeboard/IncidentArchive284 -[2018-02-13T00:33:14.697] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:33:14.752] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:33:14.819] [INFO] cheese - inserting 1000 documents. first: Kennedy Polamalu and last: Quenby Fung -[2018-02-13T00:33:14.821] [INFO] cheese - inserting 1000 documents. first: Esteé Lauder and last: China (Vangelis album) -[2018-02-13T00:33:14.825] [INFO] cheese - inserting 1000 documents. first: Rana bolavensis and last: Buluan Lake -[2018-02-13T00:33:14.845] [INFO] cheese - inserting 1000 documents. first: Kenmore House (disambiguation) and last: Portal:Prehistory of North America/DYK/15 -[2018-02-13T00:33:14.861] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:33:14.878] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:14.894] [INFO] cheese - inserting 1000 documents. first: Anguissola and last: Wegie -[2018-02-13T00:33:14.897] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:33:14.901] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:33:14.954] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:15.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/WDL/Participants and last: Jonaicha khurd -[2018-02-13T00:33:15.170] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:33:15.201] [INFO] cheese - inserting 1000 documents. first: File:OPENING OF THE ACCESSIBLE PATHWAY AT MOUNT LAVINIA POST OFFICE .JPG and last: Playoff (disambiguation) -[2018-02-13T00:33:15.241] [INFO] cheese - inserting 1000 documents. first: File:Gb 16loverslane.JPG and last: Category:Asian film director stubs -[2018-02-13T00:33:15.264] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:33:15.363] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:33:15.445] [INFO] cheese - inserting 1000 documents. first: Re-cap and last: Wikipedia:Articles for deletion/Elective surgery (male-to-female) -[2018-02-13T00:33:15.505] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:33:15.507] [INFO] cheese - inserting 1000 documents. first: Feysville, Western Australia and last: Eddy Ham -[2018-02-13T00:33:15.514] [INFO] cheese - inserting 1000 documents. first: Portal:Prehistory of North America/DYK/16 and last: Advanced Dungeons and Dragons Player's Handbook -[2018-02-13T00:33:15.569] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:33:15.581] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:33:15.663] [INFO] cheese - inserting 1000 documents. first: Frontera (2014 film) and last: Nemontemi -[2018-02-13T00:33:15.716] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:33:15.718] [INFO] cheese - inserting 1000 documents. first: Jiganski Ulus and last: Tercentenary Lectures -[2018-02-13T00:33:15.800] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:33:15.818] [INFO] cheese - inserting 1000 documents. first: Advanced Dungeons and Dragons Player's Handbook 1st edition and last: Shedu (Dungeons and Dragons) -[2018-02-13T00:33:15.831] [INFO] cheese - inserting 1000 documents. first: Diocese of Katiola and last: File:AFC Wallingford Badge.png -[2018-02-13T00:33:15.839] [INFO] cheese - inserting 1000 documents. first: Ice cream headache and last: R. Pacheco -[2018-02-13T00:33:15.845] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:33:15.894] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:33:15.948] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T00:33:16.043] [INFO] cheese - inserting 1000 documents. first: Infinity chili and last: Distributed Access Control System (DACS) -[2018-02-13T00:33:16.083] [INFO] cheese - inserting 1000 documents. first: Jaigaon and last: Wikipedia:Articles for deletion/Wikitrip -[2018-02-13T00:33:16.118] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:16.214] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:33:16.246] [INFO] cheese - inserting 1000 documents. first: Georges-Robert Lefort and last: List of hospitals in Indianapolis -[2018-02-13T00:33:16.284] [INFO] cheese - inserting 1000 documents. first: Okamura island and last: Collège Saint Joseph – Antoura -[2018-02-13T00:33:16.301] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:33:16.346] [INFO] cheese - inserting 1000 documents. first: File:NIS lynyrd.png and last: Angel Cerenkov -[2018-02-13T00:33:16.346] [INFO] cheese - inserting 1000 documents. first: Shifter (Dungeons and Dragons) and last: Cicely Blair -[2018-02-13T00:33:16.347] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:33:16.413] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:33:16.483] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:33:16.655] [INFO] cheese - inserting 1000 documents. first: Iowa courthouses and last: List of major power stations in Gansu -[2018-02-13T00:33:16.706] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:33:16.721] [INFO] cheese - inserting 1000 documents. first: Bond van Vrije Liberalen and last: USFPS -[2018-02-13T00:33:16.738] [INFO] cheese - inserting 1000 documents. first: Imperial Valley lettuce strike of 1930 and last: Buddy (Italian singer) -[2018-02-13T00:33:16.776] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:33:16.786] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:16.795] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Otsego County, Michigan and last: Weston Doty -[2018-02-13T00:33:16.816] [INFO] cheese - inserting 1000 documents. first: Bush administration (2000) and last: Category:Satirical television programmes -[2018-02-13T00:33:16.846] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:16.882] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:33:16.947] [INFO] cheese - inserting 1000 documents. first: Actinomyces glaucescens and last: Wikipedia:Articles for deletion/Ashlei Nemer -[2018-02-13T00:33:16.996] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:33:17.010] [INFO] cheese - inserting 1000 documents. first: Trod and last: Wikipedia:Reference desk/Archives/Entertainment/2007 August 12 -[2018-02-13T00:33:17.074] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:17.084] [INFO] cheese - inserting 1000 documents. first: Tahar Ben Ammar and last: Elizabeth Ellery Bailey -[2018-02-13T00:33:17.139] [INFO] cheese - inserting 1000 documents. first: Category:Belgian amputees and last: Wikipedia:WikiProject American music/tasks/Under review/FSC -[2018-02-13T00:33:17.142] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:17.187] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:33:17.248] [INFO] cheese - inserting 1000 documents. first: US Post Office (Westhampton Beach, New York) and last: Canadian Biography Online -[2018-02-13T00:33:17.296] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:33:17.301] [INFO] cheese - inserting 1000 documents. first: Paeonia californica and last: Botanical Beach, British Columbia -[2018-02-13T00:33:17.308] [INFO] cheese - inserting 1000 documents. first: 2014-15 DePaul Blue Demons men's basketball team and last: Zachary lazar -[2018-02-13T00:33:17.349] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:17.368] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:33:17.450] [INFO] cheese - inserting 1000 documents. first: File:Last DanceClare.jpg and last: Portal:Syracuse, New York/Old postcards/157 -[2018-02-13T00:33:17.479] [INFO] cheese - inserting 1000 documents. first: U.G. Krishnamurti and last: The Witness (1969 French film) -[2018-02-13T00:33:17.489] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:33:17.527] [INFO] cheese - inserting 1000 documents. first: Rinjūken Akugata and last: KISS IN THE SKY -[2018-02-13T00:33:17.542] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject American Old West/tasks/Under review/FSC and last: 3-hydroxydecanoyl-(acyl-carrier-protein) dehydratase -[2018-02-13T00:33:17.547] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:17.569] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:33:17.601] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:33:17.746] [INFO] cheese - inserting 1000 documents. first: Template:2011 Australian International Rules Team and last: Mbwana Samatta -[2018-02-13T00:33:17.793] [INFO] cheese - inserting 1000 documents. first: Inward and last: Iberoamerican Association of Postgraduate Universities -[2018-02-13T00:33:17.811] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:33:17.895] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:33:18.009] [INFO] cheese - inserting 1000 documents. first: Thomas Morey and last: Leo Burke -[2018-02-13T00:33:18.034] [INFO] cheese - inserting 1000 documents. first: Brecon RFC and last: Gladiators (UK) -[2018-02-13T00:33:18.076] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:33:18.078] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:18.140] [INFO] cheese - inserting 1000 documents. first: Eystein Ivarsson and last: Elana Eden -[2018-02-13T00:33:18.182] [INFO] cheese - inserting 1000 documents. first: LM 22A4 and last: End Productions -[2018-02-13T00:33:18.190] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:33:18.223] [INFO] cheese - inserting 1000 documents. first: EC 4.2.1.60 and last: Sunnyfields (Simeon, Virginia) -[2018-02-13T00:33:18.255] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:33:18.298] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:33:18.303] [INFO] cheese - inserting 1000 documents. first: Virginia-class cruiser and last: Transdermal patch -[2018-02-13T00:33:18.381] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:33:18.505] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for comment/User names/Index and last: Proletariet -[2018-02-13T00:33:18.540] [INFO] cheese - inserting 1000 documents. first: Super Street Fighter and last: Summer Hill railway station, Sydney -[2018-02-13T00:33:18.552] [INFO] cheese - inserting 1000 documents. first: File:Tuskegee Experiments (Byron).jpg and last: Knjaz Miloš a.d. -[2018-02-13T00:33:18.554] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:18.593] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:33:18.607] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:33:18.650] [INFO] cheese - inserting 1000 documents. first: File:Red Red Meat - Jimmywine Majestic.jpg and last: Template:ISO 3166 code Portugal Madeira -[2018-02-13T00:33:18.697] [INFO] cheese - inserting 1000 documents. first: Portal:Orissa/Selected picture/5 and last: Counter steer -[2018-02-13T00:33:18.700] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:33:18.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jaylen D Bledsoe and last: Martin (1999 cyclone) -[2018-02-13T00:33:18.761] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:33:18.776] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:18.939] [INFO] cheese - inserting 1000 documents. first: Palk Straight and last: János Koppány -[2018-02-13T00:33:18.981] [INFO] cheese - inserting 1000 documents. first: Conops vesicularis and last: File:InTheCountryOfLastThings.jpg -[2018-02-13T00:33:19.029] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:33:19.100] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:33:19.145] [INFO] cheese - inserting 1000 documents. first: USS Roosevelt (DDG-80) and last: Repeat --- The Best of Jethro Tull --- Vol II -[2018-02-13T00:33:19.147] [INFO] cheese - inserting 1000 documents. first: Ibrox Primary School and last: Burns T. Walling -[2018-02-13T00:33:19.277] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:33:19.301] [INFO] cheese - inserting 1000 documents. first: Lalisha nurani and last: Noahs Ark -[2018-02-13T00:33:19.301] [INFO] cheese - inserting 1000 documents. first: Martin (1986 cyclone) and last: Template:R from included subject -[2018-02-13T00:33:19.309] [INFO] cheese - inserting 1000 documents. first: Martial Premat and last: National Law Center on Homelessness and Poverty -[2018-02-13T00:33:19.361] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T00:33:19.381] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:33:19.417] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:33:19.518] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:33:19.790] [INFO] cheese - inserting 1000 documents. first: Vladimir Highway and last: Peire de la Gavarana -[2018-02-13T00:33:19.880] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:33:19.894] [INFO] cheese - inserting 1000 documents. first: Category:Kerry Ellis and last: Oklahoma (wine) -[2018-02-13T00:33:19.961] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:33:19.977] [INFO] cheese - inserting 1000 documents. first: 1974 Individual Ice Speedway World Championship and last: Driving license in the Netherlands -[2018-02-13T00:33:19.981] [INFO] cheese - inserting 1000 documents. first: Nanawa Station and last: Uroconger erythraeus -[2018-02-13T00:33:20.057] [INFO] cheese - inserting 1000 documents. first: Muslim Educational Society and last: Vineland nj -[2018-02-13T00:33:20.058] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:33:20.063] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:33:20.139] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1976 Summer Olympics – Men's 200 metre breaststroke and last: International Harvester corporation -[2018-02-13T00:33:20.147] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:33:20.226] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:33:20.383] [INFO] cheese - inserting 1000 documents. first: Peire de la Cà Varana and last: Socialist Register -[2018-02-13T00:33:20.413] [INFO] cheese - inserting 1000 documents. first: Category:2008 in kickboxing and last: ISIRI 6788 -[2018-02-13T00:33:20.430] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:33:20.453] [INFO] cheese - inserting 1000 documents. first: Liar's Poker and last: Charles M. Price -[2018-02-13T00:33:20.474] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:33:20.502] [INFO] cheese - inserting 1000 documents. first: Category:Polish Servants of God and last: File:TheMeaningOfAnxiety.jpg -[2018-02-13T00:33:20.540] [INFO] cheese - inserting 1000 documents. first: Aqua Pura and last: Goodman's Law -[2018-02-13T00:33:20.546] [INFO] cheese - batch complete in: 1.185 secs -[2018-02-13T00:33:20.562] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:20.654] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:20.694] [INFO] cheese - inserting 1000 documents. first: Bonus tax and last: File:Illsaharemkeeper.jpg -[2018-02-13T00:33:20.750] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:33:20.804] [INFO] cheese - inserting 1000 documents. first: International Harvester Corporation and last: Frenstat -[2018-02-13T00:33:20.836] [INFO] cheese - inserting 1000 documents. first: Ričardas Zdančius and last: National Energy Foundation -[2018-02-13T00:33:20.854] [INFO] cheese - inserting 1000 documents. first: DWSY and last: Bellator 44 -[2018-02-13T00:33:20.857] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:33:20.894] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:33:20.983] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:33:21.095] [INFO] cheese - inserting 1000 documents. first: Alan MacRuairi and last: List of fictional United States presidencies of historical figures (A–G) -[2018-02-13T00:33:21.109] [INFO] cheese - inserting 1000 documents. first: János Székely (writer) and last: Grangnolo -[2018-02-13T00:33:21.184] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:21.210] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:33:21.299] [INFO] cheese - inserting 1000 documents. first: Lai neir and last: Björneborgarnas marsch -[2018-02-13T00:33:21.349] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:33:21.379] [INFO] cheese - inserting 1000 documents. first: Charles Melvin Price and last: USAir Arena -[2018-02-13T00:33:21.446] [INFO] cheese - inserting 1000 documents. first: Template:User Rājasthān and last: Lofthouse (disambiguation) -[2018-02-13T00:33:21.447] [INFO] cheese - inserting 1000 documents. first: Opština Opovo and last: Lynnhaven Roads -[2018-02-13T00:33:21.450] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:33:21.500] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:33:21.503] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:33:21.575] [INFO] cheese - inserting 1000 documents. first: File:Night Ranger.jpg and last: Liverpool Warriors -[2018-02-13T00:33:21.629] [INFO] cheese - inserting 1000 documents. first: List of fictional United States presidencies of historical figures (H–J) and last: Johann Scheubel -[2018-02-13T00:33:21.630] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:33:21.654] [INFO] cheese - inserting 1000 documents. first: Bulbourethral and last: Sir John Habakkuk -[2018-02-13T00:33:21.678] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:33:21.729] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:33:21.743] [INFO] cheese - inserting 1000 documents. first: Gertrude Lübbe-Wolff and last: Moya Brennan Band -[2018-02-13T00:33:21.787] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:33:21.851] [INFO] cheese - inserting 1000 documents. first: Dorset Police Authority and last: Paparazzi eye in the dark -[2018-02-13T00:33:21.898] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:33:21.920] [INFO] cheese - inserting 1000 documents. first: List of athletics clubs in Luxembourg and last: Feelin' Sorry...For All The Hearts We've Broken -[2018-02-13T00:33:21.985] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:33:22.060] [INFO] cheese - inserting 1000 documents. first: Gustave Pelgrims and last: Maggie Mancuso -[2018-02-13T00:33:22.065] [INFO] cheese - inserting 1000 documents. first: True real mode and last: File:Portsmouth Naval Prison.jpg -[2018-02-13T00:33:22.099] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:33:22.107] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:33:22.138] [INFO] cheese - inserting 1000 documents. first: File:CJIQ-FM.png and last: Hierodula fruhstorferi -[2018-02-13T00:33:22.177] [INFO] cheese - inserting 1000 documents. first: Monthélie (AOC) and last: Category:States and territories disestablished in 1792 -[2018-02-13T00:33:22.181] [INFO] cheese - inserting 1000 documents. first: Slovak People's Party and last: Gaunts ghosts -[2018-02-13T00:33:22.222] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:22.235] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:33:22.270] [INFO] cheese - inserting 1000 documents. first: Saint Matfiy and last: Binary pase shift keying -[2018-02-13T00:33:22.275] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:33:22.343] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:33:22.534] [INFO] cheese - inserting 1000 documents. first: Fever In Fever Out and last: Tourneville -[2018-02-13T00:33:22.612] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:33:22.622] [INFO] cheese - inserting 1000 documents. first: Superior Catholic Finger and last: Eid Church (Rauma) -[2018-02-13T00:33:22.681] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:33:22.682] [INFO] cheese - inserting 1000 documents. first: Category:States and territories disestablished in 1833 and last: Lopinavir/ritonavir -[2018-02-13T00:33:22.699] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sajwan Nagar Mitthepur and last: Saleem Mairaj -[2018-02-13T00:33:22.740] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:33:22.757] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:33:22.793] [INFO] cheese - inserting 1000 documents. first: George Bowen (footballer) and last: Wikipedia:Articles for deletion/Carpatair Flight 128 -[2018-02-13T00:33:22.851] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:33:22.984] [INFO] cheese - inserting 1000 documents. first: Billingsdal and last: George Wallace (disambiguation) -[2018-02-13T00:33:22.998] [INFO] cheese - inserting 1000 documents. first: Kotomitsuki and last: Redruth RFC -[2018-02-13T00:33:23.002] [INFO] cheese - inserting 1000 documents. first: Holm Church and last: 2009 APRA Silver Scroll Awards -[2018-02-13T00:33:23.041] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:33:23.059] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:33:23.061] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:33:23.075] [INFO] cheese - inserting 1000 documents. first: Cornelius O. Jansen and last: T. Gehrels -[2018-02-13T00:33:23.095] [INFO] cheese - inserting 1000 documents. first: Latham Trimotor and last: Cabaret (2015 film) -[2018-02-13T00:33:23.104] [INFO] cheese - inserting 1000 documents. first: Grand Sassiere and last: Bers slice -[2018-02-13T00:33:23.145] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:33:23.147] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:33:23.175] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:23.235] [INFO] cheese - inserting 1000 documents. first: File:Maqbaratoshoara09.jpg and last: Cristina Favre -[2018-02-13T00:33:23.277] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:33:23.453] [INFO] cheese - inserting 1000 documents. first: Interactive Systems and last: Category:Over 30s v Under 30s cricketers -[2018-02-13T00:33:23.456] [INFO] cheese - inserting 1000 documents. first: Alfred Marten and last: Dowty, David -[2018-02-13T00:33:23.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alternative Living and last: .lnk -[2018-02-13T00:33:23.489] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:33:23.501] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:33:23.530] [INFO] cheese - inserting 1000 documents. first: Category:New Taipei Members of the Legislative Yuan and last: Iranian Basketball Super League 1998–99 -[2018-02-13T00:33:23.533] [INFO] cheese - inserting 1000 documents. first: Annetta and last: Bartlett, TN -[2018-02-13T00:33:23.538] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:33:23.579] [INFO] cheese - inserting 1000 documents. first: Anthony John La Rose and last: Lecithocera tumidosa -[2018-02-13T00:33:23.587] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:23.595] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:23.707] [INFO] cheese - inserting 1000 documents. first: Epoque hotels and last: Khanbal -[2018-02-13T00:33:23.713] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:33:23.759] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:33:23.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Syracuse to Washington, DC flights and last: Bertsch-Oceanview, CA -[2018-02-13T00:33:23.956] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:33:24.002] [INFO] cheese - inserting 1000 documents. first: Aleksi Makela and last: Chah Zard 1 -[2018-02-13T00:33:24.018] [INFO] cheese - inserting 1000 documents. first: Elitis and last: Picotamide -[2018-02-13T00:33:24.044] [INFO] cheese - inserting 1000 documents. first: Iranian Basketball Super League 1999–00 and last: Grimoire of exalted deeds -[2018-02-13T00:33:24.051] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:33:24.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for discussion/2016 January 12 and last: Category:Sports leagues established in 1886 -[2018-02-13T00:33:24.085] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:24.152] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:33:24.164] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:33:24.197] [INFO] cheese - inserting 1000 documents. first: Wattenmeer and last: Boyd County, KY -[2018-02-13T00:33:24.227] [INFO] cheese - inserting 1000 documents. first: Acrochordonichthys pachyderma and last: Murphy Lake (Price County, Wisconsin) -[2018-02-13T00:33:24.230] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:33:24.243] [INFO] cheese - inserting 1000 documents. first: Davrian and last: Unsolved English murders -[2018-02-13T00:33:24.273] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:33:24.304] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:33:24.503] [INFO] cheese - inserting 1000 documents. first: Nizhny Arkhyz and last: Sunnyside Hospital -[2018-02-13T00:33:24.507] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 May 29 and last: DPMI kernel -[2018-02-13T00:33:24.527] [INFO] cheese - inserting 1000 documents. first: Blepephaeus multinotatus and last: 1st Radio Squadron, Mobile -[2018-02-13T00:33:24.541] [INFO] cheese - inserting 1000 documents. first: Grimoire of Exalted Deeds and last: Battle of St Pol de Leon -[2018-02-13T00:33:24.551] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:24.568] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:33:24.573] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:24.598] [INFO] cheese - inserting 1000 documents. first: Boyd County, NE and last: Wikipedia:Articles for deletion/List of every mayor in the World -[2018-02-13T00:33:24.609] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:33:24.625] [INFO] cheese - inserting 1000 documents. first: Template:Railclosed color and last: Wei Chun -[2018-02-13T00:33:24.654] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:24.681] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:33:24.770] [INFO] cheese - inserting 1000 documents. first: All About Eve (album) and last: Portal:Video games/Wikimedia -[2018-02-13T00:33:24.850] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:33:24.892] [INFO] cheese - inserting 1000 documents. first: Lemuel Goodell and last: National Interagency Confederation for Biological Research -[2018-02-13T00:33:24.953] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:33:25.003] [INFO] cheese - inserting 1000 documents. first: WYAP-LP and last: Reactive material -[2018-02-13T00:33:25.017] [INFO] cheese - inserting 1000 documents. first: Spanish Song Book and last: Dress reform parlor -[2018-02-13T00:33:25.065] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:33:25.084] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:33:25.124] [INFO] cheese - inserting 1000 documents. first: United Presbyterian Church (disambiguation) and last: Portal:Professional wrestling/Did you know/56 -[2018-02-13T00:33:25.181] [INFO] cheese - inserting 1000 documents. first: Julien MacDonald and last: File:KeyToRebecca.jpg -[2018-02-13T00:33:25.187] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:33:25.216] [INFO] cheese - inserting 1000 documents. first: AS-105 (spacecraft) and last: Brooksville, MS -[2018-02-13T00:33:25.245] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:33:25.279] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:33:25.404] [INFO] cheese - inserting 1000 documents. first: Abdul Kader Haïdara and last: Pietrele River (Râmnicul Sărat) -[2018-02-13T00:33:25.443] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:33:25.470] [INFO] cheese - inserting 1000 documents. first: Effective sample size and last: File:Transpacific Flight.jpg -[2018-02-13T00:33:25.510] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:33:25.513] [INFO] cheese - inserting 1000 documents. first: GU-50 and last: Purusha-Sukta -[2018-02-13T00:33:25.526] [INFO] cheese - inserting 1000 documents. first: British institute of florence and last: Wikipedia:WikiProject Spam/LinkReports/british.tv -[2018-02-13T00:33:25.534] [INFO] cheese - inserting 1000 documents. first: 1999 Washington Summit and last: Gabros United -[2018-02-13T00:33:25.580] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:33:25.583] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:33:25.623] [INFO] cheese - inserting 1000 documents. first: Category:1642 establishments in the Thirteen Colonies and last: Hariharganj block -[2018-02-13T00:33:25.629] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:33:25.663] [INFO] cheese - inserting 1000 documents. first: Brooksville, OK and last: Lyon Playfair -[2018-02-13T00:33:25.693] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:33:25.718] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:25.868] [INFO] cheese - inserting 1000 documents. first: Basilica of the Sacred Heart of Jesus, Syracuse and last: Thiomonas islandica -[2018-02-13T00:33:25.929] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:33:25.936] [INFO] cheese - inserting 1000 documents. first: Survey mark and last: Simon Jackson (cricketer) -[2018-02-13T00:33:25.971] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:33:25.983] [INFO] cheese - inserting 1000 documents. first: Moxos Plains and last: Land reform in zimbabwe -[2018-02-13T00:33:26.008] [INFO] cheese - inserting 1000 documents. first: Purusa and last: Sudan Peoples' Liberation Movement -[2018-02-13T00:33:26.013] [INFO] cheese - inserting 1000 documents. first: File:Stigata album.jpg and last: Joe mcelveen -[2018-02-13T00:33:26.024] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:33:26.050] [INFO] cheese - inserting 1000 documents. first: Wating and last: Category:Protected areas of Green County, Wisconsin -[2018-02-13T00:33:26.055] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:33:26.120] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:33:26.129] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:33:26.271] [INFO] cheese - inserting 1000 documents. first: Kuusjoki and last: Carlinville, IL -[2018-02-13T00:33:26.401] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:33:26.481] [INFO] cheese - inserting 1000 documents. first: زهران علوش and last: 1960s in European fashion -[2018-02-13T00:33:26.535] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:33:26.588] [INFO] cheese - inserting 1000 documents. first: EC 4.4.1.13 and last: Civsoc brunel -[2018-02-13T00:33:26.655] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Realzdealzio2 and last: MPQ-64 Sentinel -[2018-02-13T00:33:26.659] [INFO] cheese - inserting 1000 documents. first: Portal:Dragon Ball/Related portals and last: NOPSI -[2018-02-13T00:33:26.666] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:33:26.695] [INFO] cheese - inserting 1000 documents. first: List of Kolkata facts and last: Miłość w czasach popkultury -[2018-02-13T00:33:26.715] [INFO] cheese - inserting 1000 documents. first: 30th Air Defense Missile Squadron and last: Portal:United States/Anniversaries/January/January 16 -[2018-02-13T00:33:26.714] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:33:26.739] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:33:26.775] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:33:26.796] [INFO] cheese - inserting 1000 documents. first: Carlisle, AR and last: Cherokee, IA -[2018-02-13T00:33:26.801] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:33:26.864] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:33:26.913] [INFO] cheese - inserting 1000 documents. first: Annonay International Film Festival and last: Wikipedia:Requests for mediation/kebo gotti -[2018-02-13T00:33:26.959] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:33:27.107] [INFO] cheese - inserting 1000 documents. first: Tomarchio and last: IBM DOS 4.00 -[2018-02-13T00:33:27.129] [INFO] cheese - inserting 1000 documents. first: Cherokee, KS and last: Clinton County, IL -[2018-02-13T00:33:27.133] [INFO] cheese - inserting 1000 documents. first: Eaglestone and last: Dhaka zila -[2018-02-13T00:33:27.137] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:27.181] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:33:27.202] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:27.239] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Anniversaries/January/January 17 and last: Category:Towns in Bayfield County, Wisconsin -[2018-02-13T00:33:27.294] [INFO] cheese - inserting 1000 documents. first: Souari Nut and last: Beliefnet.com -[2018-02-13T00:33:27.305] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:33:27.335] [INFO] cheese - inserting 1000 documents. first: 3T Meets the Family of Soul and last: File:SIB structure.jpg -[2018-02-13T00:33:27.363] [INFO] cheese - inserting 1000 documents. first: Arevik National Park and last: Morning Service -[2018-02-13T00:33:27.369] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:33:27.428] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:33:27.433] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:33:27.444] [INFO] cheese - inserting 1000 documents. first: Clinton County, IN and last: Couderay (village), Sawyer County, WI -[2018-02-13T00:33:27.503] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:33:27.550] [INFO] cheese - inserting 1000 documents. first: Smeaton's lighthouse and last: Buraq, Syria -[2018-02-13T00:33:27.602] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:33:27.743] [INFO] cheese - inserting 1000 documents. first: Pericallia matronula and last: Category:1972 in sport wrestling -[2018-02-13T00:33:27.747] [INFO] cheese - inserting 1000 documents. first: Air-tractor sledge and last: Pärnu Tervis -[2018-02-13T00:33:27.800] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:33:27.810] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:33:27.819] [INFO] cheese - inserting 1000 documents. first: Slackers CDs and Games and last: Hindle Wakes (play) -[2018-02-13T00:33:27.851] [INFO] cheese - inserting 1000 documents. first: Dairy production and last: Philmont Scout Ranch flash flood -[2018-02-13T00:33:27.881] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:27.903] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:33:27.909] [INFO] cheese - inserting 1000 documents. first: Colony Club and last: Bank Rakyat Indonesia -[2018-02-13T00:33:27.951] [INFO] cheese - inserting 1000 documents. first: Couderay (village), WI and last: Lakewood Freeway -[2018-02-13T00:33:27.994] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:33:28.026] [INFO] cheese - inserting 1000 documents. first: Braq and last: Antun -[2018-02-13T00:33:28.042] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:28.139] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:33:28.296] [INFO] cheese - inserting 1000 documents. first: Joan McArthur and last: My Gospel -[2018-02-13T00:33:28.326] [INFO] cheese - inserting 1000 documents. first: Demarquette Lee and last: Pârlita River (Taița) -[2018-02-13T00:33:28.345] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:33:28.347] [INFO] cheese - inserting 1000 documents. first: 1998 'Friendship' Cup and last: Arachniography -[2018-02-13T00:33:28.356] [INFO] cheese - inserting 1000 documents. first: Victoria Hall (Ontario) and last: Birkat Hachammah -[2018-02-13T00:33:28.383] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:28.390] [INFO] cheese - inserting 1000 documents. first: Cumberland County, KY and last: 1960–61 United States network television schedule -[2018-02-13T00:33:28.420] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:33:28.449] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:33:28.512] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:33:28.645] [INFO] cheese - inserting 1000 documents. first: NCAA Division I Men's Swimming and Diving Championships and last: Association of Writers of Montenegro -[2018-02-13T00:33:28.691] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:33:28.709] [INFO] cheese - inserting 1000 documents. first: Portal:Theatre/Selected article and last: Bulan Sabriel -[2018-02-13T00:33:28.799] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:33:28.913] [INFO] cheese - inserting 1000 documents. first: Alseodaphne and last: File:Mexia Public Schools Museum.JPG -[2018-02-13T00:33:28.916] [INFO] cheese - inserting 1000 documents. first: Delaware County, IN and last: Paul Rebhan -[2018-02-13T00:33:28.929] [INFO] cheese - inserting 1000 documents. first: Category:Gucci Mane songs and last: Sea Ape -[2018-02-13T00:33:28.950] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:33:28.956] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:33:28.981] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:29.026] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2016 January 31 and last: Wikipedia:Articles for deletion/Binibining Pilipinas 2016 -[2018-02-13T00:33:29.047] [INFO] cheese - inserting 1000 documents. first: R550 Magic and last: As Long As I'm Rockin' with You -[2018-02-13T00:33:29.092] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:33:29.107] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:33:29.224] [INFO] cheese - inserting 1000 documents. first: Philip Morris v. Uruguay and last: Valerie Coleman -[2018-02-13T00:33:29.252] [INFO] cheese - inserting 1000 documents. first: Category:Places of worship in Finland and last: The Darcy School (New Jersey) -[2018-02-13T00:33:29.275] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:29.317] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:33:29.352] [INFO] cheese - inserting 1000 documents. first: Dunwoody, GA and last: Elderton, PA -[2018-02-13T00:33:29.388] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:33:29.517] [INFO] cheese - inserting 1000 documents. first: Back to Nature for Girl and last: Asteropeia mcphersonii -[2018-02-13T00:33:29.530] [INFO] cheese - inserting 1000 documents. first: Template:Santa Maria Bulacan and last: FM-index -[2018-02-13T00:33:29.598] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:33:29.639] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:33:29.677] [INFO] cheese - inserting 1000 documents. first: Representation of Soul and Body and last: Category:St. Louis Rams draft navigational boxes -[2018-02-13T00:33:29.711] [INFO] cheese - inserting 1000 documents. first: Category:People from Egedal Municipality and last: Serbian Orthodox Eparchy of Australia and New Zealand -[2018-02-13T00:33:29.757] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:29.832] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:33:29.912] [INFO] cheese - inserting 1000 documents. first: Eldon, IA and last: Natural deduction logic -[2018-02-13T00:33:29.961] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:29.990] [INFO] cheese - inserting 1000 documents. first: Michael Klein (businessman) and last: Thomas Anderson (footballer) -[2018-02-13T00:33:30.058] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:33:30.099] [INFO] cheese - inserting 1000 documents. first: Blank Firing Attachment and last: Homer Simpson, This is Your Wife -[2018-02-13T00:33:30.137] [INFO] cheese - inserting 1000 documents. first: Category:Ruderal species and last: Reading F.C. season 2004-05 -[2018-02-13T00:33:30.187] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:33:30.192] [INFO] cheese - inserting 1000 documents. first: Asteropeia micraster and last: Bomarea angustifolia -[2018-02-13T00:33:30.199] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:33:30.308] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:30.464] [INFO] cheese - inserting 1000 documents. first: Solar Aircraft Company and last: El Camino de los gatos -[2018-02-13T00:33:30.465] [INFO] cheese - inserting 1000 documents. first: Survival Island 3 and last: Pre-1967 borders -[2018-02-13T00:33:30.514] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:33:30.518] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:33:30.648] [INFO] cheese - inserting 1000 documents. first: Mohawk Airlines and last: Yushan (mountain) -[2018-02-13T00:33:30.691] [INFO] cheese - inserting 1000 documents. first: Category:Vice-Chancellors of the University of Jaffna and last: 2013–14 Phoenix Coyotes season -[2018-02-13T00:33:30.695] [INFO] cheese - inserting 1000 documents. first: Reading F.C. season 2005-06 and last: Nagahama (moth) -[2018-02-13T00:33:30.728] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:30.741] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:33:30.781] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:33:30.850] [INFO] cheese - inserting 1000 documents. first: Mitch Williams (General Hospital) and last: Who Got The Gravy? -[2018-02-13T00:33:30.936] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:33:30.998] [INFO] cheese - inserting 1000 documents. first: Smash bros. melee and last: Scared Famous/FF» (Haunted Graffiti 3–4) -[2018-02-13T00:33:31.026] [INFO] cheese - inserting 1000 documents. first: Very Mary-Kate and last: Panic of 1930 -[2018-02-13T00:33:31.053] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:33:31.110] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:33:31.207] [INFO] cheese - inserting 1000 documents. first: El Intransigente and last: Category:2000 in wrestling -[2018-02-13T00:33:31.215] [INFO] cheese - inserting 1000 documents. first: Category:Stins in Friesland and last: Category:Maritimepattu DS Division -[2018-02-13T00:33:31.242] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:33:31.284] [INFO] cheese - inserting 1000 documents. first: Mathmetics and last: Dextrorotation -[2018-02-13T00:33:31.288] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:31.348] [INFO] cheese - inserting 1000 documents. first: Guillem Augier Novella and last: Wikipedia:Peer review/Leona Lewis/archive1 -[2018-02-13T00:33:31.374] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:33:31.392] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:33:31.475] [INFO] cheese - inserting 1000 documents. first: File:KFXN1003.png and last: Seesaw (album) -[2018-02-13T00:33:31.520] [INFO] cheese - inserting 1000 documents. first: Porro and last: Alexander III, King of Scots -[2018-02-13T00:33:31.533] [INFO] cheese - inserting 1000 documents. first: Michael Smith (darts player) and last: M.M. Ahmad -[2018-02-13T00:33:31.546] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:33:31.583] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:31.640] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:31.667] [INFO] cheese - inserting 1000 documents. first: Category:List-Class WikiProject Volcanoes articles and last: Sir Giles Gilbert Scott, OM, FRIBA -[2018-02-13T00:33:31.740] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:33:31.747] [INFO] cheese - inserting 1000 documents. first: Panayotis and last: Snax (musician) -[2018-02-13T00:33:31.836] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:33:31.894] [INFO] cheese - inserting 1000 documents. first: Fiji Teachers Union and last: Category:Centronia -[2018-02-13T00:33:31.973] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:33:32.139] [INFO] cheese - inserting 1000 documents. first: Broadcast Advertising Clearance Centre and last: Franklin County, TX -[2018-02-13T00:33:32.172] [INFO] cheese - inserting 1000 documents. first: Chamamé and last: BWV 540 -[2018-02-13T00:33:32.220] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:33:32.235] [INFO] cheese - inserting 1000 documents. first: Zündnadelgewehr and last: Twin arginine protein transport -[2018-02-13T00:33:32.236] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:33:32.289] [INFO] cheese - inserting 1000 documents. first: 4-oxalomesaconate tautomerase and last: Irregularity (canon law) -[2018-02-13T00:33:32.317] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:33:32.356] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:33:32.362] [INFO] cheese - inserting 1000 documents. first: CBWU-FM and last: Caracosta -[2018-02-13T00:33:32.386] [INFO] cheese - inserting 1000 documents. first: Griffith's plum-yew and last: 150th Training Motor Rifle Division -[2018-02-13T00:33:32.427] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:33:32.433] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:32.511] [INFO] cheese - inserting 1000 documents. first: Knut Olaf Andreasson Strand and last: Euphorbia hofstaetteri -[2018-02-13T00:33:32.556] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:33:32.693] [INFO] cheese - inserting 1000 documents. first: Criegee zwitterion and last: Ian Barker -[2018-02-13T00:33:32.715] [INFO] cheese - inserting 1000 documents. first: John Cotton (fl. 1379-1388) and last: File:Cross Examination Debate Association Logo.jpg -[2018-02-13T00:33:32.730] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:33:32.768] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:32.783] [INFO] cheese - inserting 1000 documents. first: First Job Contract and last: Alchemy (video game) -[2018-02-13T00:33:32.783] [INFO] cheese - inserting 1000 documents. first: Abruzzi, Luigi Amedeo Giuseppe Maria Ferdinando Francesco, Duke of the and last: Wikipedia:Votes for deletion/Freetown Elementary School -[2018-02-13T00:33:32.849] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:33:32.878] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:33:32.895] [INFO] cheese - inserting 1000 documents. first: Vila d'Eivissa and last: Brighton High School (Brighton, Colorado) -[2018-02-13T00:33:32.965] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:33:32.967] [INFO] cheese - inserting 1000 documents. first: Bridge Inn (Middle-earth) and last: Template:Ashland County, Wisconsin -[2018-02-13T00:33:33.024] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:33:33.106] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Fijocrypta and last: Souk En Nhas -[2018-02-13T00:33:33.108] [INFO] cheese - inserting 1000 documents. first: File:Londonboysmoyloveoriginalcover.jpeg and last: 4 Songs (disambiguation) -[2018-02-13T00:33:33.168] [INFO] cheese - inserting 1000 documents. first: Gallipolis, OH and last: Gosnold, MA -[2018-02-13T00:33:33.174] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:33:33.180] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:33:33.196] [INFO] cheese - inserting 1000 documents. first: All-Ireland Senior Hurling Championship 1924 and last: 16S RNA Psi516 synthase -[2018-02-13T00:33:33.221] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:33:33.305] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:33:33.424] [INFO] cheese - inserting 1000 documents. first: Category:Culture by country and last: Daniele Barbaro -[2018-02-13T00:33:33.457] [INFO] cheese - inserting 1000 documents. first: Inter-service Intelligence Directorate and last: The Sins of the Cities of the Plain -[2018-02-13T00:33:33.487] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:33:33.503] [INFO] cheese - inserting 1000 documents. first: File:Trollback nike.jpg and last: Kaleidoscope (Siouxsie album) -[2018-02-13T00:33:33.541] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:33:33.556] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:33:33.676] [INFO] cheese - inserting 1000 documents. first: Gosper County, NE and last: Michael Stone (federal government administrator) -[2018-02-13T00:33:33.706] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2016 South Asian Games and last: Beauty and the Barge (disambiguation) -[2018-02-13T00:33:33.730] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:33:33.737] [INFO] cheese - inserting 1000 documents. first: RNA pseudouridine synthase RsuA and last: Jie Zhitui -[2018-02-13T00:33:33.746] [INFO] cheese - inserting 1000 documents. first: IdeaPad Z and last: Category:Keene State College alumni -[2018-02-13T00:33:33.759] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:33.821] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:33:33.852] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:33:33.914] [INFO] cheese - inserting 1000 documents. first: Early Morning Rain and last: Cocytodes -[2018-02-13T00:33:33.933] [INFO] cheese - inserting 1000 documents. first: Guioa patentinervis and last: Hopea cagayanensis -[2018-02-13T00:33:33.968] [INFO] cheese - inserting 1000 documents. first: Pentacerotidae and last: Cincinnati State and Technical College -[2018-02-13T00:33:33.987] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:33.988] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:34.043] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:33:34.312] [INFO] cheese - inserting 1000 documents. first: Poshekhonskii Raion and last: GDP of Latvia -[2018-02-13T00:33:34.372] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:34.397] [INFO] cheese - inserting 1000 documents. first: Silent Radar and last: Portal:SAARC/Bhutan/Intro -[2018-02-13T00:33:34.482] [INFO] cheese - inserting 1000 documents. first: Fumehood and last: Gulf Breeze, FL -[2018-02-13T00:33:34.510] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:33:34.519] [INFO] cheese - inserting 1000 documents. first: Codalithia and last: Bernice Cronkhite -[2018-02-13T00:33:34.613] [INFO] cheese - inserting 1000 documents. first: Port Laoise Town Council and last: European Technology Assessment Group (ETAG) -[2018-02-13T00:33:34.639] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:33:34.645] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:34.731] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:33:34.764] [INFO] cheese - inserting 1000 documents. first: File:BA-single2.jpg and last: Income distribution - United States -[2018-02-13T00:33:34.797] [INFO] cheese - inserting 1000 documents. first: File:Come into my World single.png and last: Ngaous -[2018-02-13T00:33:34.837] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:33:34.959] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T00:33:35.103] [INFO] cheese - inserting 1000 documents. first: List of higher education institutions in Denver and last: Thommayanti -[2018-02-13T00:33:35.133] [INFO] cheese - inserting 1000 documents. first: Gulf City, FL and last: Alaric, King of the Visigoths -[2018-02-13T00:33:35.164] [INFO] cheese - inserting 1000 documents. first: Charles Lamarche and last: Wikipedia:WikiProject Spam/LinkReports/articulos-interesantes.blogspot.com -[2018-02-13T00:33:35.167] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:35.192] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:33:35.236] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:33:35.278] [INFO] cheese - inserting 1000 documents. first: Slovenian patrol boat Triglav and last: Portal:Current events/2011 March 2 -[2018-02-13T00:33:35.328] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:33:35.363] [INFO] cheese - inserting 1000 documents. first: File:'Sunagawa No.5' by Hiroshi Nakamura, 1955.jpg and last: Monema melli -[2018-02-13T00:33:35.453] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:33:35.462] [INFO] cheese - inserting 1000 documents. first: Du Lièvre River and last: Harry Bennett -[2018-02-13T00:33:35.542] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:33:35.615] [INFO] cheese - inserting 1000 documents. first: Marco Fidel Suarez and last: Helotes, TX -[2018-02-13T00:33:35.617] [INFO] cheese - inserting 1000 documents. first: Category:Protolychnis and last: Template:Attached KML/Illinois Route 4 -[2018-02-13T00:33:35.636] [INFO] cheese - inserting 1000 documents. first: Category:University of Memphis faculty and last: Vidya Niketan School (Pune) -[2018-02-13T00:33:35.676] [INFO] cheese - inserting 1000 documents. first: At It Again and last: Khaya anthotheca -[2018-02-13T00:33:35.678] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:33:35.736] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:35.748] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:33:35.776] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:33:35.926] [INFO] cheese - inserting 1000 documents. first: What Was I Scared Of? and last: Param Vishisht Seva -[2018-02-13T00:33:35.967] [INFO] cheese - inserting 1000 documents. first: Cnidocampa johanibergmani and last: Category:Organizations for children with health issues -[2018-02-13T00:33:35.995] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:33:35.998] [INFO] cheese - inserting 1000 documents. first: Shropshire Wildlife Trust and last: Honaker, VA -[2018-02-13T00:33:36.046] [INFO] cheese - inserting 1000 documents. first: Torpedo Stadium (Moscow) and last: Cold Day In the Sun -[2018-02-13T00:33:36.083] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:33:36.145] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:33:36.165] [INFO] cheese - inserting 1000 documents. first: List of My Hero Academia chapters and last: Category:Kingussie -[2018-02-13T00:33:36.187] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:33:36.225] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:33:36.245] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Lithuania and last: Experiment Below -[2018-02-13T00:33:36.262] [INFO] cheese - inserting 1000 documents. first: The Muppet Show (comics) and last: List of Denmark-related articles -[2018-02-13T00:33:36.293] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:33:36.383] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:33:36.579] [INFO] cheese - inserting 1000 documents. first: Honalo, HI and last: Itasca Township, MN -[2018-02-13T00:33:36.605] [INFO] cheese - inserting 1000 documents. first: Tisovec, Dobrepolje and last: Raven Quinn -[2018-02-13T00:33:36.625] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:33:36.682] [INFO] cheese - inserting 1000 documents. first: Echo Church and School and last: Estakhruiyeh, Baft -[2018-02-13T00:33:36.685] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:33:36.760] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:33:36.772] [INFO] cheese - inserting 1000 documents. first: Antoon Stillemans and last: D×D×D -[2018-02-13T00:33:36.866] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:33:36.902] [INFO] cheese - inserting 1000 documents. first: Larry Smith (editor) and last: Meridyrias -[2018-02-13T00:33:36.927] [INFO] cheese - inserting 1000 documents. first: Category:Lovoa and last: Scott christian higher secondary school -[2018-02-13T00:33:36.947] [INFO] cheese - inserting 1000 documents. first: Wanderer Fantasy and last: Sofiiska kotlovina -[2018-02-13T00:33:36.958] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:33:37.003] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:33:37.000] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:33:37.166] [INFO] cheese - inserting 1000 documents. first: Itawamba County, MS and last: Jordan Township, Northumberland County, PA -[2018-02-13T00:33:37.220] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:33:37.274] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Delta, British Columbia and last: Halima-5,13-dien-15-yl-diphosphate lyase -[2018-02-13T00:33:37.275] [INFO] cheese - inserting 1000 documents. first: File:Alisonmoyetweakinthepresenceofbeautysingle.jpeg and last: Wikipedia:WikiProject Military history/Ottoman military history task force/Article alerts/Archive -[2018-02-13T00:33:37.290] [INFO] cheese - inserting 1000 documents. first: Pat Bourke (footballer, born 1923) and last: 1993 IAAF World Indoor Championships – Women's long jump -[2018-02-13T00:33:37.320] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:33:37.346] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:33:37.349] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:33:37.399] [INFO] cheese - inserting 1000 documents. first: Meristides and last: List of Presidents of the Basque Parliament -[2018-02-13T00:33:37.409] [INFO] cheese - inserting 1000 documents. first: Category:Mauria and last: Wikipedia:Bots/Requests for approval/HermesBot 11 -[2018-02-13T00:33:37.447] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:33:37.449] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:33:37.486] [INFO] cheese - inserting 1000 documents. first: Dragonquest (disambiguation) and last: Marvin Perry -[2018-02-13T00:33:37.544] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:33:37.607] [INFO] cheese - inserting 1000 documents. first: Jordan Township, PA and last: Knox Township, Clarion County, PA -[2018-02-13T00:33:37.652] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:33:37.759] [INFO] cheese - inserting 1000 documents. first: List of international cricket five-wicket hauls at the Asgiriya Stadium and last: Falcaria (genus) -[2018-02-13T00:33:37.805] [INFO] cheese - inserting 1000 documents. first: William Vincent Carpenter and last: United Nations Security Council Resolution 381 -[2018-02-13T00:33:37.810] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:33:37.869] [INFO] cheese - inserting 1000 documents. first: Attribute certificate and last: Fagot -[2018-02-13T00:33:37.876] [INFO] cheese - inserting 1000 documents. first: Moranopteris aphelolepis and last: The Watch Below -[2018-02-13T00:33:37.880] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:37.945] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:33:37.948] [INFO] cheese - inserting 1000 documents. first: (S)-beta-macrocarpene synthase and last: Fernley H. Banbury -[2018-02-13T00:33:37.994] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:33:38.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Balkan military history task force/Article alerts/Archive and last: List of Professor Layton media -[2018-02-13T00:33:38.067] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:33:38.169] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:33:38.290] [INFO] cheese - inserting 1000 documents. first: Lauderdale County, AL and last: Little Wolf, WI -[2018-02-13T00:33:38.322] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:33:38.406] [INFO] cheese - inserting 1000 documents. first: Samurai Johnny Frankenstein and last: Yorktown High School (Yorktown, Indiana) -[2018-02-13T00:33:38.413] [INFO] cheese - inserting 1000 documents. first: Pyrgus centaureae and last: DAVIET Jalandhar -[2018-02-13T00:33:38.436] [INFO] cheese - inserting 1000 documents. first: Let's Paint TV and last: Passiflora anfracta -[2018-02-13T00:33:38.450] [INFO] cheese - inserting 1000 documents. first: Three Mustaphas Three and last: Category:1724 in the Spanish Empire -[2018-02-13T00:33:38.460] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:33:38.498] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:33:38.503] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:33:38.583] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:33:38.619] [INFO] cheese - inserting 1000 documents. first: Little York, IL and last: Character entity reference -[2018-02-13T00:33:38.643] [INFO] cheese - inserting 1000 documents. first: Template:Cite swiss law/doc and last: Champagne-Marne Defensive Campaign -[2018-02-13T00:33:38.665] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:33:38.710] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:33:38.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Moy Salinas and last: Yuji Nakayoshi -[2018-02-13T00:33:38.844] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:33:38.888] [INFO] cheese - inserting 1000 documents. first: Passiflora brachyantha and last: Ramsay wood -[2018-02-13T00:33:38.909] [INFO] cheese - inserting 1000 documents. first: File:Gorillacitydcu0.jpg and last: Tamseale -[2018-02-13T00:33:38.937] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:33:38.980] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:33:39.052] [INFO] cheese - inserting 1000 documents. first: Category:1724 in Spain and last: Vukovar resolution -[2018-02-13T00:33:39.092] [INFO] cheese - inserting 1000 documents. first: Ganiklis and last: Schism fanzine -[2018-02-13T00:33:39.096] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:33:39.155] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:33:39.159] [INFO] cheese - inserting 1000 documents. first: File:Mersey-Sound.jpg and last: Nigel Searle -[2018-02-13T00:33:39.214] [INFO] cheese - inserting 1000 documents. first: Upper Lake (Bhopal) and last: Torre de los Ingleses -[2018-02-13T00:33:39.229] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:33:39.292] [INFO] cheese - inserting 1000 documents. first: Balochistan Rural Support Programme (BRSP) and last: Asaphocrita irenica -[2018-02-13T00:33:39.308] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:33:39.430] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:33:39.438] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Contemporary philosophy articles and last: Category:FA-Class Boston Red Sox articles -[2018-02-13T00:33:39.487] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:33:39.521] [INFO] cheese - inserting 1000 documents. first: Tamseuxoa and last: Valentina Rendón -[2018-02-13T00:33:39.578] [INFO] cheese - inserting 1000 documents. first: Marquette (town), Green Lake County, WI and last: Menomonie, WI -[2018-02-13T00:33:39.578] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:33:39.637] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:33:39.676] [INFO] cheese - inserting 1000 documents. first: Staples station (Minnesota) and last: Motion dazzle -[2018-02-13T00:33:39.725] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:33:39.827] [INFO] cheese - inserting 1000 documents. first: III Marine Amphibious Corps and last: Template:Daycap -[2018-02-13T00:33:39.835] [INFO] cheese - inserting 1000 documents. first: Nénimë and last: Alaska Airlines Arena -[2018-02-13T00:33:39.876] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:33:39.884] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:33:39.908] [INFO] cheese - inserting 1000 documents. first: Psidium harrisianum and last: Wikipedia:Articles for deletion/Special Needs Advocates for Understanding -[2018-02-13T00:33:39.937] [INFO] cheese - inserting 1000 documents. first: Hellenic Police - Cyber Crime Center and last: Metagenomics: An Alternative Approach to Genomics -[2018-02-13T00:33:39.938] [INFO] cheese - inserting 1000 documents. first: Menomonie (city), Dunn County, WI and last: Fra Mauro -[2018-02-13T00:33:39.955] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:33:39.991] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:40.034] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:33:40.085] [INFO] cheese - inserting 1000 documents. first: 10th (Prince of Wales's Own Royal) Hussars and last: Figure skating at the 2006 Winter Olympics - Pair Skating -[2018-02-13T00:33:40.096] [INFO] cheese - inserting 1000 documents. first: Balas y Chocolate World Tour and last: Fabio De Masi -[2018-02-13T00:33:40.150] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:33:40.156] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:40.236] [INFO] cheese - inserting 1000 documents. first: Monroeville, PA and last: Crash (Dave Matthews Band album) -[2018-02-13T00:33:40.264] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:33:40.361] [INFO] cheese - inserting 1000 documents. first: Category:Communities in Victoria County, New Brunswick and last: Blue Charge -[2018-02-13T00:33:40.405] [INFO] cheese - inserting 1000 documents. first: Andrei Andriyevskiy and last: Brix degree -[2018-02-13T00:33:40.406] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:33:40.409] [INFO] cheese - inserting 1000 documents. first: ᚗ and last: Dorrie (Super Mario 64) -[2018-02-13T00:33:40.425] [INFO] cheese - inserting 1000 documents. first: File:Logo for Lego Pirates of the caribbean theme.png and last: Category:Films directed by Reginald Fogwell -[2018-02-13T00:33:40.476] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:33:40.491] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:33:40.523] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:33:40.600] [INFO] cheese - inserting 1000 documents. first: Reverse-Flash (Eobard Thawne) and last: Category:People of the war in Donbass -[2018-02-13T00:33:40.670] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:33:40.748] [INFO] cheese - inserting 1000 documents. first: Nazlini, AZ and last: Nordick Township, MN -[2018-02-13T00:33:40.819] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:33:40.862] [INFO] cheese - inserting 1000 documents. first: Figure skating at the 2006 Winter Olympics - Pair skating and last: Bagnowski Dwor -[2018-02-13T00:33:40.950] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:33:40.956] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Norma Ashby and last: Category:Sport in Burnaby -[2018-02-13T00:33:40.961] [INFO] cheese - inserting 1000 documents. first: Plerandra veitchii and last: Sway & King Tech -[2018-02-13T00:33:41.006] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:33:41.034] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:33:41.137] [INFO] cheese - inserting 1000 documents. first: Nordland Township, Aitkin County, MN and last: Okmulgee, OK -[2018-02-13T00:33:41.190] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:33:41.212] [INFO] cheese - inserting 1000 documents. first: Uruguayan immigration to Ecuador and last: Antonio Prieto (tennis) -[2018-02-13T00:33:41.214] [INFO] cheese - inserting 1000 documents. first: Ash Shara'i` al `Ulya and last: H. subumbrans -[2018-02-13T00:33:41.274] [INFO] cheese - inserting 1000 documents. first: File:Rai University logo.jpg and last: Jaakko Tallus -[2018-02-13T00:33:41.276] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:33:41.284] [INFO] cheese - inserting 1000 documents. first: Bajory Male and last: Brzesnica -[2018-02-13T00:33:41.288] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:33:41.334] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:41.368] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:33:41.510] [INFO] cheese - inserting 1000 documents. first: Portal:Pensacola/Selected article/4 and last: Wikipedia:Articles for deletion/List of municipal authorities in Adams County, Pennsylvania -[2018-02-13T00:33:41.534] [INFO] cheese - inserting 1000 documents. first: Okmulgee County, OK and last: Panama, IL -[2018-02-13T00:33:41.558] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:33:41.583] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:33:41.587] [INFO] cheese - inserting 1000 documents. first: Solanum burtonii and last: Juan Antonio Medina -[2018-02-13T00:33:41.645] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:33:41.749] [INFO] cheese - inserting 1000 documents. first: Bordered patch and last: 36˚30'N -[2018-02-13T00:33:41.796] [INFO] cheese - inserting 1000 documents. first: Brzeszczki Duze and last: Kryptonics (company) -[2018-02-13T00:33:41.800] [INFO] cheese - inserting 1000 documents. first: Beşiktaş–Galatasaray rivalry and last: Template:User in United Kingdom -[2018-02-13T00:33:41.827] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:41.883] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:41.902] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:33:41.936] [INFO] cheese - inserting 1000 documents. first: File:Los Angeles National Cemetery Entrance.jpg and last: Category:Star Ferry -[2018-02-13T00:33:42.007] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:33:42.073] [INFO] cheese - inserting 1000 documents. first: Hogwarts subjects and last: Great Influenza Pandemic -[2018-02-13T00:33:42.101] [INFO] cheese - inserting 1000 documents. first: Regina, Minneapolis and last: Higurashi episodes -[2018-02-13T00:33:42.118] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:33:42.149] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:42.160] [INFO] cheese - inserting 1000 documents. first: Rajah Sulayman Park and last: Ulrika von Strussenfelt -[2018-02-13T00:33:42.218] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:42.221] [INFO] cheese - inserting 1000 documents. first: Category:Immersed tube tunnels in Canada and last: KUBE-FM 1049 -[2018-02-13T00:33:42.266] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:33:42.346] [INFO] cheese - inserting 1000 documents. first: Template:User in UK and last: Lena Bryant -[2018-02-13T00:33:42.354] [INFO] cheese - inserting 1000 documents. first: Category:Former national rugby union teams and last: United States Court of Appeals 7th Circuit -[2018-02-13T00:33:42.413] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:33:42.436] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:33:42.514] [INFO] cheese - inserting 1000 documents. first: Welsh Argentinians and last: Saddlebrooke, Missouri -[2018-02-13T00:33:42.582] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:33:42.680] [INFO] cheese - inserting 1000 documents. first: Project MOJO and last: Portal:Austin/Selected picture/3 -[2018-02-13T00:33:42.731] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:33:42.735] [INFO] cheese - inserting 1000 documents. first: File:Valediction (Agent Carter).jpg and last: نادية مراد -[2018-02-13T00:33:42.817] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:33:42.859] [INFO] cheese - inserting 1000 documents. first: Chandipriya and last: Lonely (Sharon Sheeley song) -[2018-02-13T00:33:42.859] [INFO] cheese - inserting 1000 documents. first: United States Court of Appeals 8th Circuit and last: Granny nipper -[2018-02-13T00:33:42.913] [INFO] cheese - inserting 1000 documents. first: UMkhuze Game Reserve and last: Peridot, AZ -[2018-02-13T00:33:42.947] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:33:43.000] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:33:43.095] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:33:43.224] [INFO] cheese - inserting 1000 documents. first: Sulcus terminalis and last: Light Weight (company) -[2018-02-13T00:33:43.245] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Princess Charlotte of Prussia and last: Toms Run (Twin Creek) -[2018-02-13T00:33:43.279] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:33:43.285] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:33:43.319] [INFO] cheese - inserting 1000 documents. first: Johnson creek public schools and last: Assembly of the Turkish Republic of Northern Cyprus -[2018-02-13T00:33:43.350] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox Anastasian War and last: 1593 in Scotland -[2018-02-13T00:33:43.382] [INFO] cheese - inserting 1000 documents. first: Perkasie, PA and last: Port Wing, WI -[2018-02-13T00:33:43.406] [INFO] cheese - inserting 1000 documents. first: Maurice quentin de la tour and last: Vermeg -[2018-02-13T00:33:43.417] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:33:43.432] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T00:33:43.449] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:33:43.449] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:33:43.557] [INFO] cheese - inserting 1000 documents. first: Thira (regional unit) and last: Wikipedia:Possibly unfree files/2011 March 6 -[2018-02-13T00:33:43.619] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:33:43.675] [INFO] cheese - inserting 1000 documents. first: File:University of Trieste logo.jpg and last: 1598 CE -[2018-02-13T00:33:43.690] [INFO] cheese - inserting 1000 documents. first: Czuszow and last: Dzwiniacz Gorny -[2018-02-13T00:33:43.704] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:33:43.724] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:33:43.740] [INFO] cheese - inserting 1000 documents. first: Portage, IN and last: Reno, Parker County, TX -[2018-02-13T00:33:43.764] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:33:43.892] [INFO] cheese - inserting 1000 documents. first: John Bohrnstedt House and last: Template:Redirect sp -[2018-02-13T00:33:43.915] [INFO] cheese - inserting 1000 documents. first: 1597 CE and last: 621 CE -[2018-02-13T00:33:43.920] [INFO] cheese - inserting 1000 documents. first: Aluminum foil and last: Winthrop Street (IRT Nostrand Avenue Line station) -[2018-02-13T00:33:43.924] [INFO] cheese - inserting 1000 documents. first: 2000 Adelaide Race of a Thousand Years and last: Viequenses -[2018-02-13T00:33:43.941] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:33:43.966] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:44.028] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:44.031] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:33:44.158] [INFO] cheese - inserting 1000 documents. first: Tim Dudfield and last: Ross Township, MI -[2018-02-13T00:33:44.188] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:44.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2011 March 6 and last: Category:Danish websites -[2018-02-13T00:33:44.311] [INFO] cheese - inserting 1000 documents. first: Trent Merrin and last: Dumuzi the Shepherd -[2018-02-13T00:33:44.333] [INFO] cheese - inserting 1000 documents. first: 620 CE and last: Hugh W. Sheffey -[2018-02-13T00:33:44.353] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:33:44.374] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:33:44.397] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:33:44.522] [INFO] cheese - inserting 1000 documents. first: Ross Township, MN and last: Santa Claus, GA -[2018-02-13T00:33:44.549] [INFO] cheese - inserting 1000 documents. first: File:KeeLoq Decrypt2.png and last: Athletics at the 1920 Summer Olympics – Men's pole vault -[2018-02-13T00:33:44.552] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:33:44.612] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:33:44.634] [INFO] cheese - inserting 1000 documents. first: Template:R sub and last: Wilhelmstrassenfest -[2018-02-13T00:33:44.635] [INFO] cheese - inserting 1000 documents. first: Der Ring Des Nibelungen and last: Ostheide -[2018-02-13T00:33:44.710] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:33:44.717] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:33:44.860] [INFO] cheese - inserting 1000 documents. first: William Necton and last: Lyn Stanley, International Recording Artist -[2018-02-13T00:33:44.869] [INFO] cheese - inserting 1000 documents. first: The Betrothed (miniseries) and last: State Committee for Labour and Social Affairs -[2018-02-13T00:33:44.902] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:33:44.915] [INFO] cheese - inserting 1000 documents. first: Category:NORCECA Beach Volleyball Circuit 2009 and last: Shaka Smart -[2018-02-13T00:33:44.924] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:33:44.985] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:33:45.120] [INFO] cheese - inserting 1000 documents. first: Category:Aitkin County, Minnesota and last: Sharpsburg, PA -[2018-02-13T00:33:45.156] [INFO] cheese - inserting 1000 documents. first: File:CyberspaceRPGCover.jpg and last: Wikipedia:FGdesk -[2018-02-13T00:33:45.187] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:45.203] [INFO] cheese - inserting 1000 documents. first: Category:1880s in Indiana and last: HMS Sköld -[2018-02-13T00:33:45.214] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:33:45.256] [INFO] cheese - inserting 1000 documents. first: The Candidate and last: Category:Conservation in Latvia -[2018-02-13T00:33:45.276] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:33:45.365] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:33:45.394] [INFO] cheese - inserting 1000 documents. first: State Committee for Labor and Social Affairs and last: Premier of Croatia -[2018-02-13T00:33:45.402] [INFO] cheese - inserting 1000 documents. first: Category:1982 establishments in Rhode Island and last: Category:Disestablishments in Kenya -[2018-02-13T00:33:45.444] [INFO] cheese - inserting 1000 documents. first: One-Eleven and last: Aius Loquens -[2018-02-13T00:33:45.452] [INFO] cheese - inserting 1000 documents. first: Lamrim and last: South Pymatuning Township, PA -[2018-02-13T00:33:45.471] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:33:45.477] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:33:45.540] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:45.544] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:33:45.772] [INFO] cheese - inserting 1000 documents. first: South Range, MI and last: Stoddard, WI -[2018-02-13T00:33:45.790] [INFO] cheese - inserting 1000 documents. first: Great Britain (Cyborg 009 character) and last: Turkmendemiryollary -[2018-02-13T00:33:45.795] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:33:45.832] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:33:45.840] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Arab world articles and last: Wikipedia:WikiProject Spam/LinkReports/plato.stanford.edu -[2018-02-13T00:33:45.900] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:33:45.910] [INFO] cheese - inserting 1000 documents. first: Al Porto and last: Israeli Shabas -[2018-02-13T00:33:45.910] [INFO] cheese - inserting 1000 documents. first: Messaoud Bouardja and last: Z. Anorg. Allgem. Chem. -[2018-02-13T00:33:45.922] [INFO] cheese - inserting 1000 documents. first: The land before time 7 and last: Wikipedia:WikiProject Spam/LinkReports/bdtools.net -[2018-02-13T00:33:45.924] [INFO] cheese - inserting 1000 documents. first: Hindley railway station and last: Template:Montour County, Pennsylvania -[2018-02-13T00:33:45.967] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:45.972] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:33:45.978] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:33:45.987] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:33:46.094] [INFO] cheese - inserting 1000 documents. first: Stoddard County, MO and last: Estelle Leonard -[2018-02-13T00:33:46.133] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:33:46.314] [INFO] cheese - inserting 1000 documents. first: Andar ng mga Balita (radio) and last: Fred Horsman -[2018-02-13T00:33:46.346] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:33:46.381] [INFO] cheese - inserting 1000 documents. first: Stoycho Mladenov, Jr. and last: Rogue Male (band) -[2018-02-13T00:33:46.382] [INFO] cheese - inserting 1000 documents. first: Melissa Gonzales and last: W.D. Puleston -[2018-02-13T00:33:46.393] [INFO] cheese - inserting 1000 documents. first: Poonam Jhawer and last: FC Bataysk-2007 -[2018-02-13T00:33:46.437] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:33:46.440] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:33:46.447] [INFO] cheese - inserting 1000 documents. first: Z. Anorg. Allgemeine Chemie and last: Godly Response to Abuse in the Christian Environment -[2018-02-13T00:33:46.445] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:46.564] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:33:46.691] [INFO] cheese - inserting 1000 documents. first: Library of Babel and last: American Physical Education Association -[2018-02-13T00:33:46.805] [INFO] cheese - inserting 1000 documents. first: McCrae (disambiguation) and last: Consuela (Family Guy) -[2018-02-13T00:33:46.835] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:33:46.857] [INFO] cheese - inserting 1000 documents. first: Chicago Manufacturing Renaissance Council and last: Smiarowo -[2018-02-13T00:33:46.860] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:33:46.917] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:46.955] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (earth) and last: Brace for impact -[2018-02-13T00:33:47.061] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:33:47.106] [INFO] cheese - inserting 1000 documents. first: Leandro Castán and last: Could Be Anything -[2018-02-13T00:33:47.133] [INFO] cheese - inserting 1000 documents. first: Pholiota aurantioalbida and last: File:National Energy Foundation logo.gif -[2018-02-13T00:33:47.139] [INFO] cheese - inserting 1000 documents. first: Mushti-yuddha and last: Manavari, Kermanshah -[2018-02-13T00:33:47.152] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:33:47.187] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:33:47.198] [INFO] cheese - inserting 1000 documents. first: Smiary and last: Stryszow -[2018-02-13T00:33:47.200] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:33:47.215] [INFO] cheese - inserting 1000 documents. first: Upper Oligocene and last: V.m. -[2018-02-13T00:33:47.241] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:33:47.277] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:33:47.394] [INFO] cheese - inserting 1000 documents. first: William MacQuitty and last: Wikipedia:Featured picture candidates/329 eclipse -[2018-02-13T00:33:47.455] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:33:47.497] [INFO] cheese - inserting 1000 documents. first: Strzakly and last: Samsung Mirage -[2018-02-13T00:33:47.511] [INFO] cheese - inserting 1000 documents. first: Template:Estonian parliamentary election, 2011 and last: Rock Camp (disambiguation) -[2018-02-13T00:33:47.516] [INFO] cheese - inserting 1000 documents. first: Watson baronets and last: Waterborne (film) -[2018-02-13T00:33:47.525] [INFO] cheese - inserting 1000 documents. first: Category:Military installations of the Ground Forces of Islamic Republic of Iran Army and last: Microtus liechtensteinii -[2018-02-13T00:33:47.537] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:33:47.548] [INFO] cheese - inserting 1000 documents. first: File:Marano di Napoli-Stemma.png and last: Badra'i -[2018-02-13T00:33:47.555] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:33:47.565] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:33:47.588] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:33:47.610] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:33:47.704] [INFO] cheese - inserting 1000 documents. first: Brace procedure and last: USS Tortuga -[2018-02-13T00:33:47.777] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:33:47.904] [INFO] cheese - inserting 1000 documents. first: Atuagagdliutit and last: Matt Uelmen -[2018-02-13T00:33:47.933] [INFO] cheese - inserting 1000 documents. first: Al-Sabah family and last: Gierloz -[2018-02-13T00:33:47.943] [INFO] cheese - inserting 1000 documents. first: Mario Pérez Jiménez and last: Küchük Muhammad -[2018-02-13T00:33:47.958] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:47.970] [INFO] cheese - inserting 1000 documents. first: Gregoor and last: Alvin Ailey's Revelations -[2018-02-13T00:33:47.971] [INFO] cheese - inserting 1000 documents. first: A Fool Never Learns and last: Paerata railway station -[2018-02-13T00:33:47.995] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:33:48.010] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:33:48.029] [INFO] cheese - inserting 1000 documents. first: Template:JusticeSecretary and last: Ogilvy-Wedderburn baronets -[2018-02-13T00:33:48.077] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:33:48.033] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:33:48.188] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:33:48.323] [INFO] cheese - inserting 1000 documents. first: Gierloz Polska and last: Iglowice -[2018-02-13T00:33:48.392] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:33:48.593] [INFO] cheese - inserting 1000 documents. first: File:St Mary Cathedral Calgary front statue.jpg and last: Roderick at Random -[2018-02-13T00:33:48.657] [INFO] cheese - inserting 1000 documents. first: Igly and last: Kiezliny -[2018-02-13T00:33:48.666] [INFO] cheese - inserting 1000 documents. first: Option (football) and last: Otterberg (Verbandsgemeinde) -[2018-02-13T00:33:48.672] [INFO] cheese - inserting 1000 documents. first: Wolstan (disambiguation) and last: But-1-en-3-yne -[2018-02-13T00:33:48.687] [INFO] cheese - inserting 1000 documents. first: Papatoitoi Railway Station and last: Her Majesty Love -[2018-02-13T00:33:48.692] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:33:48.685] [INFO] cheese - inserting 1000 documents. first: File:The Psychedelic Furs cover.jpg and last: Acting Ensign Crusher -[2018-02-13T00:33:48.698] [INFO] cheese - inserting 1000 documents. first: Mahagama (community development block) and last: Online library -[2018-02-13T00:33:48.703] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:33:48.720] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:33:48.761] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:33:48.775] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:33:48.817] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:33:48.829] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:33:48.992] [INFO] cheese - inserting 1000 documents. first: Kijowiec-Sciany and last: Krusliwiec -[2018-02-13T00:33:49.015] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:33:49.221] [INFO] cheese - inserting 1000 documents. first: CCCP Fedeli alla linea and last: Fight night at the joe -[2018-02-13T00:33:49.228] [INFO] cheese - inserting 1000 documents. first: Ihre Majestät die Liebe and last: Todd Glass awful prank show -[2018-02-13T00:33:49.236] [INFO] cheese - inserting 1000 documents. first: Krusze-Lubnice and last: Jilin Provincial Experimental School -[2018-02-13T00:33:49.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/International Academy for Genealogical and Heraldic Studies and last: Eytan Elbaz -[2018-02-13T00:33:49.251] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:33:49.256] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:33:49.277] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:33:49.288] [INFO] cheese - inserting 1000 documents. first: Template:User in Senegal/doc and last: Category:Geography of Jo Daviess County, Illinois -[2018-02-13T00:33:49.301] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:49.364] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:33:49.417] [INFO] cheese - inserting 1000 documents. first: Blind spot (vision) and last: Category:1852 in sports -[2018-02-13T00:33:49.506] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:33:49.544] [INFO] cheese - inserting 1000 documents. first: Dent (fell) and last: Louis MacNeice -[2018-02-13T00:33:49.637] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:33:49.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Ferdinand Bockman and last: Spartak Kavkaztransgaz Izobilny -[2018-02-13T00:33:49.702] [INFO] cheese - inserting 1000 documents. first: The Greatest Game Show Ever and last: Convention for the Suppression of Unlawful Acts against the Safety of Civil Aviation -[2018-02-13T00:33:49.775] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:33:49.784] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:33:49.795] [INFO] cheese - inserting 1000 documents. first: File:The Man in the Brown Suit First Edition Cover 1924.jpg and last: Mindhunter -[2018-02-13T00:33:49.858] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Will County, Illinois and last: Category:Novels set in Chile -[2018-02-13T00:33:49.904] [INFO] cheese - inserting 1000 documents. first: Follow You Home (Embrace song) and last: John Patrick Acquaviva -[2018-02-13T00:33:49.908] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:49.936] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:50.033] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:33:50.158] [INFO] cheese - inserting 1000 documents. first: Breakwaters and last: Enetoi -[2018-02-13T00:33:50.228] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:33:50.364] [INFO] cheese - inserting 1000 documents. first: Lilliputian violet and last: Carbine Studios -[2018-02-13T00:33:50.371] [INFO] cheese - inserting 1000 documents. first: File:Emblem of Daekyo Kagaroos.jpg and last: Category:Media in the San Francisco Bay Area -[2018-02-13T00:33:50.435] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:50.443] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:33:50.557] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/change-apps.com and last: Jamila Mejri -[2018-02-13T00:33:50.566] [INFO] cheese - inserting 1000 documents. first: Bulgarian toponyms in Antarctica (F) and last: Eas Mor (upper) -[2018-02-13T00:33:50.578] [INFO] cheese - inserting 1000 documents. first: 1926 Florida Gators football team and last: Wikipedia:Reference desk/Archives/Entertainment/2007 August 21 -[2018-02-13T00:33:50.678] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:33:50.692] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:33:50.697] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:33:50.811] [INFO] cheese - inserting 1000 documents. first: Frederick Louis MacNeice and last: Langbaurgh -[2018-02-13T00:33:50.874] [INFO] cheese - inserting 1000 documents. first: This Week (BBC, UK) and last: Post hoc analysis -[2018-02-13T00:33:50.898] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T00:33:50.938] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:50.983] [INFO] cheese - inserting 1000 documents. first: Anulus inguinalis profundus and last: Royal Banner -[2018-02-13T00:33:51.054] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:33:51.113] [INFO] cheese - inserting 1000 documents. first: File:Main Street in Radzin.JPG and last: Blocco-Juve -[2018-02-13T00:33:51.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Entermedia GmbH and last: Book:Nucleosynthesis or naturally forming elements -[2018-02-13T00:33:51.221] [INFO] cheese - inserting 1000 documents. first: Intuitive Counselor and last: Royal Dutch East Indies Army -[2018-02-13T00:33:51.238] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:33:51.300] [INFO] cheese - inserting 1000 documents. first: Berhthun (bishop) and last: Template:Pakistan Squad 1975 Cricket World Cup -[2018-02-13T00:33:51.353] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:33:51.359] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:33:51.403] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:33:51.539] [INFO] cheese - inserting 1000 documents. first: Sterling Entertainment Group and last: Drepaneid -[2018-02-13T00:33:51.660] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:33:51.803] [INFO] cheese - inserting 1000 documents. first: PVX-410 and last: Wikipedia:WikiProject Spam/LinkReports/findminecraft.com -[2018-02-13T00:33:51.803] [INFO] cheese - inserting 1000 documents. first: Herrn Filip Collins Abenteuer and last: Black Earth Farming -[2018-02-13T00:33:51.811] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Shawn Noel and last: Rebatement of the rectangle -[2018-02-13T00:33:51.840] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:33:51.849] [INFO] cheese - inserting 1000 documents. first: The King and I (film) and last: File:Ryujiyamazaki.jpg -[2018-02-13T00:33:51.846] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:33:51.856] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:33:51.941] [INFO] cheese - inserting 1000 documents. first: Battle of Stepney and last: H. G. Van de Sande Bakhuyzen -[2018-02-13T00:33:51.949] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:33:51.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:TTANS and last: 2007 World Championships in Athletics – Men's 10,000 metres -[2018-02-13T00:33:52.040] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T00:33:52.047] [INFO] cheese - inserting 1000 documents. first: Echeneid and last: Aufstrich -[2018-02-13T00:33:52.064] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:33:52.126] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:33:52.244] [INFO] cheese - inserting 1000 documents. first: Vinos de Madrid (DO) and last: Department of Justice and Law Reform -[2018-02-13T00:33:52.299] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:33:52.328] [INFO] cheese - inserting 1000 documents. first: 2.0 EDR and last: Edgar Allan Poe’s bibliography -[2018-02-13T00:33:52.335] [INFO] cheese - inserting 1000 documents. first: Hedgehog medick and last: Sankheda Furniture -[2018-02-13T00:33:52.375] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sam Henderson (weightlifter) and last: Category:Disestablishments in Bahrain by decade -[2018-02-13T00:33:52.386] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:33:52.386] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:33:52.456] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:33:52.613] [INFO] cheese - inserting 1000 documents. first: Bixby, Missouri and last: Itemirus -[2018-02-13T00:33:52.625] [INFO] cheese - inserting 1000 documents. first: Herpes simplex I virus and last: Pepsi Ripsaw Roller Coaster -[2018-02-13T00:33:52.706] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:33:52.722] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:33:52.821] [INFO] cheese - inserting 1000 documents. first: (5) Astraea and last: United Democrats -[2018-02-13T00:33:52.924] [INFO] cheese - inserting 1000 documents. first: Fort Bend School District and last: Ceraceomyces -[2018-02-13T00:33:52.942] [INFO] cheese - inserting 1000 documents. first: Thilak and last: Mame Slaughter -[2018-02-13T00:33:52.948] [INFO] cheese - inserting 1000 documents. first: File:Logo Esselunga.gif and last: Category:Islamic organisations based in Bangladesh -[2018-02-13T00:33:52.978] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:33:52.983] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:33:52.999] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:33:53.061] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:33:53.200] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wales/List of people born in Wales on Wikidata and last: Castro brothers -[2018-02-13T00:33:53.244] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:33:53.290] [INFO] cheese - inserting 1000 documents. first: Swamp Rock and last: E. Rhys -[2018-02-13T00:33:53.309] [INFO] cheese - inserting 1000 documents. first: Pepsi Ripsaw and last: Gârcic River -[2018-02-13T00:33:53.341] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:33:53.356] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:33:53.359] [INFO] cheese - inserting 1000 documents. first: Washington D.C. International and last: Fash Rural District -[2018-02-13T00:33:53.388] [INFO] cheese - inserting 1000 documents. first: Soleiman Agha and last: Chipko Andolan -[2018-02-13T00:33:53.429] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:33:53.439] [INFO] cheese - inserting 1000 documents. first: Category:Islamic organisations based in the United Kingdom and last: SMS Prinz Adalbert -[2018-02-13T00:33:53.449] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:33:53.501] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:33:53.566] [INFO] cheese - inserting 1000 documents. first: Gabriel Espinosa-Canada and last: Toronto Comics Art Festival -[2018-02-13T00:33:53.611] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:33:53.725] [INFO] cheese - inserting 1000 documents. first: Star-Spangled Kid and last: Social policy -[2018-02-13T00:33:53.779] [INFO] cheese - inserting 1000 documents. first: El Malpaís National Monument and last: Manitoba Justice -[2018-02-13T00:33:53.786] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Cartoon Network/Section header and last: Template:Did you know nominations/Opium production in Burma -[2018-02-13T00:33:53.801] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:33:53.828] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:33:53.831] [INFO] cheese - inserting 1000 documents. first: Samsung Mobile Innovator and last: Catherine Guigon -[2018-02-13T00:33:53.843] [INFO] cheese - inserting 1000 documents. first: Category:First Doctor novels and last: Alpine County Courthouse -[2018-02-13T00:33:53.830] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:33:53.896] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:33:53.913] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:53.933] [INFO] cheese - inserting 1000 documents. first: Snowball (cocktail) and last: Berisad Glacier -[2018-02-13T00:33:53.990] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:33:54.042] [INFO] cheese - inserting 1000 documents. first: Filmography of Brian Cox and last: Category:2016 Colonial Athletic Association baseball season -[2018-02-13T00:33:54.126] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:33:54.265] [INFO] cheese - inserting 1000 documents. first: Template:World Heritage Sites in Malaysia and last: Qurahjil -[2018-02-13T00:33:54.291] [INFO] cheese - inserting 1000 documents. first: File:Peace River Bible Institute (logo).jpg and last: 6th Alpine Division -[2018-02-13T00:33:54.300] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:33:54.331] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:33:54.389] [INFO] cheese - inserting 1000 documents. first: Fukushima Daiichi nuclear plant and last: Ajnathavasam -[2018-02-13T00:33:54.418] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:33:54.436] [INFO] cheese - inserting 1000 documents. first: The Libertines (DVD) and last: Non-archimedean field -[2018-02-13T00:33:54.480] [INFO] cheese - inserting 1000 documents. first: List of muscles of the body and last: File:Poster of the movie.jpg -[2018-02-13T00:33:54.491] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:54.527] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:33:54.557] [INFO] cheese - inserting 1000 documents. first: Jean Graton and last: AMC Amitron -[2018-02-13T00:33:54.626] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:33:54.711] [INFO] cheese - inserting 1000 documents. first: San Francisco in the 1970s and last: Mississippi State Bulldogs men's tennis -[2018-02-13T00:33:54.716] [INFO] cheese - inserting 1000 documents. first: Pasque Flower and last: Teemu Rannikko -[2018-02-13T00:33:54.766] [INFO] cheese - inserting 1000 documents. first: Rudy Árias and last: The Dream Girl (operetta) -[2018-02-13T00:33:54.771] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:33:54.779] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:33:54.857] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:33:54.888] [INFO] cheese - inserting 1000 documents. first: Eanippadikal and last: File:Superboy (Kon-El) (Smallville).jpg -[2018-02-13T00:33:54.896] [INFO] cheese - inserting 1000 documents. first: Nissan Pivo and last: Eon (novel) -[2018-02-13T00:33:54.943] [INFO] cheese - inserting 1000 documents. first: Opus De Funk (disambiguation) and last: Zénith (Cap-Haïtien) -[2018-02-13T00:33:54.948] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:33:54.955] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:33:55.025] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:33:55.423] [INFO] cheese - inserting 1000 documents. first: Category:National members of the Asian Cycling Confederation and last: Wikipedia:Articles for deletion/ussein Karim (2nd nomination) -[2018-02-13T00:33:55.425] [INFO] cheese - inserting 1000 documents. first: Valea Mare River (Sâmbotin) and last: Wikipedia:Articles for deletion/Colonization of Trans-Neptunian Objects -[2018-02-13T00:33:55.430] [INFO] cheese - inserting 1000 documents. first: Swede (Root Vegetbale) and last: V. P. Balasubramanian -[2018-02-13T00:33:55.461] [INFO] cheese - inserting 1000 documents. first: Birla Foundation and last: Walsh, Robert -[2018-02-13T00:33:55.469] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:33:55.482] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:33:55.517] [INFO] cheese - inserting 1000 documents. first: File:Joe Blackledge.jpg and last: Medial arcuate ligaments -[2018-02-13T00:33:55.520] [INFO] cheese - inserting 1000 documents. first: 2011 IRB Junior World Championship and last: In the Shadow of the Dreamchild -[2018-02-13T00:33:55.520] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:33:55.551] [INFO] cheese - inserting 1000 documents. first: Vrbas (river) and last: Psammoperca waigiensis -[2018-02-13T00:33:55.526] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:33:55.585] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:33:55.565] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:33:55.644] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:33:55.929] [INFO] cheese - inserting 1000 documents. first: Medial bicipital grooves and last: William E. Higginbotham -[2018-02-13T00:33:55.964] [INFO] cheese - inserting 1000 documents. first: Category:Academia in Singapore and last: Category:1961 establishments in Uganda -[2018-02-13T00:33:55.970] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:33:56.009] [INFO] cheese - inserting 1000 documents. first: Abdul Qadir Jeelani and last: Wikipedia:Today's featured article/September 27, 2006 -[2018-02-13T00:33:56.031] [INFO] cheese - inserting 1000 documents. first: Ron May (United Airlines Flight 232) and last: Sesbanieae -[2018-02-13T00:33:56.032] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:33:56.038] [INFO] cheese - inserting 1000 documents. first: Template:Homebrew and last: Category:1710s establishments in France -Cabal -[2018-02-13T00:33:56.088] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:33:56.092] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:33:56.106] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:33:56.110] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:33:56.169] [INFO] cheese - inserting 1000 documents. first: Galtieri and last: Manitoba Labour Party -[2018-02-13T00:33:56.225] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:33:56.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:STINKBOMB and last: Bangladesh - Chile relations -[2018-02-13T00:33:56.366] [INFO] cheese - inserting 1000 documents. first: Sydney Place and last: File:Annie - Happy Without You.png -[2018-02-13T00:33:56.394] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:33:56.420] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:33:56.444] [INFO] cheese - inserting 1000 documents. first: File:Grand Canal at Wilton Terrace, Dublin.jpg and last: Leonid Volochine -[2018-02-13T00:33:56.488] [INFO] cheese - inserting 1000 documents. first: Charles Whitworth and last: Nikolay Zhushikov -[2018-02-13T00:33:56.492] [INFO] cheese - inserting 1000 documents. first: Headlight-Herald (Tillamook) and last: Category:Waynesburg (minor league baseball) players -[2018-02-13T00:33:56.528] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:33:56.580] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:33:56.582] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:33:56.601] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/September 28, 2006 and last: Atlético Goianense -[2018-02-13T00:33:56.670] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:33:56.888] [INFO] cheese - inserting 1000 documents. first: Category:Table tennis competitions by country and last: Ulster Defence Regiment Medal -[2018-02-13T00:33:56.958] [INFO] cheese - inserting 1000 documents. first: The Firstborn Is Dead and last: André Lwoff -[2018-02-13T00:33:56.972] [INFO] cheese - inserting 1000 documents. first: File:JC-LiveUnplugged.jpg and last: Sankt Johann -[2018-02-13T00:33:56.975] [INFO] cheese - inserting 1000 documents. first: File:The Queen of Hearts (Agnetha Fältskog song) coverart.jpg and last: .ae Domain Administration -[2018-02-13T00:33:56.991] [INFO] cheese - inserting 1000 documents. first: Banca Popolare FriulAdria and last: Wikipedia:Articles for deletion/Joel Spitzer -[2018-02-13T00:33:56.990] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:33:56.998] [INFO] cheese - inserting 1000 documents. first: Bangladesh Chile relations and last: The Face (U.S. season 1) -[2018-02-13T00:33:57.032] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:33:57.043] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:33:57.049] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:33:57.081] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:33:57.082] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:33:57.182] [INFO] cheese - inserting 1000 documents. first: Atletico Goianense and last: United States Route 12 -[2018-02-13T00:33:57.245] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:33:57.381] [INFO] cheese - inserting 1000 documents. first: File:Donnaperamica A Woman as a Friend.jpg and last: Brandon Sheffield -[2018-02-13T00:33:57.389] [INFO] cheese - inserting 1000 documents. first: Portal:Chronology/Selected article and last: Aparisyon -[2018-02-13T00:33:57.415] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:33:57.422] [INFO] cheese - inserting 1000 documents. first: Bushido 9 and last: Insaniquarium! -[2018-02-13T00:33:57.430] [INFO] cheese - inserting 1000 documents. first: Anthropogenic Heat and last: Luby-Kurki -[2018-02-13T00:33:57.430] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:33:57.470] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:33:57.479] [INFO] cheese - inserting 1000 documents. first: M Yasir and last: Itamar massacre -[2018-02-13T00:33:57.487] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:33:57.542] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:33:57.619] [INFO] cheese - inserting 1000 documents. first: United States Route 112 and last: Testament of Joseph -[2018-02-13T00:33:57.661] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:33:57.687] [INFO] cheese - inserting 1000 documents. first: Lubycza Krolewska and last: Mlada Hora -[2018-02-13T00:33:57.711] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:33:57.745] [INFO] cheese - inserting 1000 documents. first: Mikhael Gromov and last: Contra terrene -[2018-02-13T00:33:57.795] [INFO] cheese - inserting 1000 documents. first: Burning Down the House: Fighting Fires and Losing Myself and last: David Joseph (basketball) -[2018-02-13T00:33:57.816] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:33:57.844] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:33:57.872] [INFO] cheese - inserting 1000 documents. first: Cabral Neculai Ibacka and last: Drăculeşti River -[2018-02-13T00:33:57.890] [INFO] cheese - inserting 1000 documents. first: File:RobynSings.jpg and last: Lissotis hartlaubii -[2018-02-13T00:33:57.915] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:33:57.925] [INFO] cheese - inserting 1000 documents. first: Mlawka and last: Nowy Kadlubek -[2018-02-13T00:33:57.928] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:33:57.956] [INFO] cheese - inserting 1000 documents. first: File:Città del Vaticano.png and last: Amphoe Ban Khok -[2018-02-13T00:33:57.957] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:33:58.001] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:33:58.116] [INFO] cheese - inserting 1000 documents. first: Testament of Ashur and last: DanskMetal -[2018-02-13T00:33:58.158] [INFO] cheese - inserting 1000 documents. first: 2016 Launceston Tennis International – Women's Doubles and last: Ugom Range -[2018-02-13T00:33:58.161] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:33:58.198] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:33:58.255] [INFO] cheese - inserting 1000 documents. first: Naqus and last: James Lung -[2018-02-13T00:33:58.275] [INFO] cheese - inserting 1000 documents. first: Nowy Kaleczyn and last: Morpho godarti -[2018-02-13T00:33:58.304] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:33:58.334] [INFO] cheese - inserting 1000 documents. first: Svetlana (name) and last: Turbo Super Stunt Squad -[2018-02-13T00:33:58.339] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:33:58.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Merced skimmers and last: Dance, Dance, Dance (Yowsah, Yowsah, Yowsah) -[2018-02-13T00:33:58.402] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:33:58.442] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:33:58.634] [INFO] cheese - inserting 1000 documents. first: Nauseton and last: Philip Levine (entrepreneur) -[2018-02-13T00:33:58.659] [INFO] cheese - inserting 1000 documents. first: African common toad (disambiguation) and last: Jaseel Ismail -[2018-02-13T00:33:58.669] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:33:58.674] [INFO] cheese - inserting 1000 documents. first: Shiozawa, Niigata and last: Smolyan -[2018-02-13T00:33:58.710] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:33:58.712] [INFO] cheese - inserting 1000 documents. first: Porkkalam (2009 film) and last: Category:The Singers Unlimited albums -[2018-02-13T00:33:58.748] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:33:58.754] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:33:58.842] [INFO] cheese - inserting 1000 documents. first: London Plus and last: Badia, South Tyrol -[2018-02-13T00:33:58.855] [INFO] cheese - inserting 1000 documents. first: Mikhaylovskiy mine and last: Stanislav Stashkov -[2018-02-13T00:33:58.901] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:33:58.911] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:33:58.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Harold Brown (media) and last: Singhofen -[2018-02-13T00:33:59.038] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:33:59.046] [INFO] cheese - inserting 1000 documents. first: Timor-Leste at the 2000 Summer Paralympics and last: Category:21st-century establishments in Japan -[2018-02-13T00:33:59.050] [INFO] cheese - inserting 1000 documents. first: Machilipatnam Area Development Authority and last: Category:Start-Class Los Angeles Rams articles -[2018-02-13T00:33:59.093] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:33:59.122] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:33:59.201] [INFO] cheese - inserting 1000 documents. first: Manyu (department) and last: Weejas -[2018-02-13T00:33:59.247] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:33:59.269] [INFO] cheese - inserting 1000 documents. first: Category:Alphaviruses and last: Rashidali -[2018-02-13T00:33:59.316] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:33:59.328] [INFO] cheese - inserting 1000 documents. first: Platon (photographer) and last: Portal:New Zealand/Selected article/Week 16, 2006 -[2018-02-13T00:33:59.394] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Los Angeles Rams articles and last: Edward C. Bairstow -[2018-02-13T00:33:59.393] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:33:59.408] [INFO] cheese - inserting 1000 documents. first: Steinsberg and last: Pacific Rim Winemakers -[2018-02-13T00:33:59.443] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:33:59.455] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:33:59.483] [INFO] cheese - inserting 1000 documents. first: Expressive language disorder and last: HMS Caesar -[2018-02-13T00:33:59.494] [INFO] cheese - inserting 1000 documents. first: Category:3rd-millennium establishments in Japan and last: List of minerals (notes) -[2018-02-13T00:33:59.553] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:33:59.564] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:33:59.639] [INFO] cheese - inserting 1000 documents. first: Bishop Kenny and last: List of Czech films of the 1960s -[2018-02-13T00:33:59.773] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:33:59.824] [INFO] cheese - inserting 1000 documents. first: Rashid'ali and last: File:Arms of the Diocese of Cape Town.gif -[2018-02-13T00:33:59.975] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:34:00.011] [INFO] cheese - inserting 1000 documents. first: Al-Baith and last: Blake, Geoffrey -[2018-02-13T00:34:00.060] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:34:00.067] [INFO] cheese - inserting 1000 documents. first: Super Mario Bros. & Friends and last: The Runes of the Earth -[2018-02-13T00:34:00.111] [INFO] cheese - inserting 1000 documents. first: Don Fox and last: Wikipedia:WikiProject Spam/LinkReports/spatemag.com -[2018-02-13T00:34:00.151] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:34:00.202] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:34:00.466] [INFO] cheese - inserting 1000 documents. first: Cuccurullo and last: Augustinius Neldal Lossius -[2018-02-13T00:34:00.532] [INFO] cheese - inserting 1000 documents. first: Morelos mine and last: HMS Chelmer (1904) -[2018-02-13T00:34:00.535] [INFO] cheese - inserting 1000 documents. first: Kevin rose and last: Tony Geary -[2018-02-13T00:34:00.539] [INFO] cheese - inserting 1000 documents. first: Bourne, Geoffrey and last: Lincoln station -[2018-02-13T00:34:00.548] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:34:00.599] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:34:00.614] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:34:00.632] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:34:00.781] [INFO] cheese - inserting 1000 documents. first: ARMulator and last: Indian folk dance -[2018-02-13T00:34:00.820] [INFO] cheese - inserting 1000 documents. first: 100 broken windows and last: I Think I Love You -[2018-02-13T00:34:00.822] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:34:00.884] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:34:00.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thomas Verenna and last: Birthday Honours 1895 -[2018-02-13T00:34:00.963] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:01.033] [INFO] cheese - inserting 1000 documents. first: Rónán mac Colmáin (Irish poet) and last: Darlin' Darlin' Baby (Sweet Tender Love) -[2018-02-13T00:34:01.035] [INFO] cheese - inserting 1000 documents. first: Atakka Yō! and last: YIC -[2018-02-13T00:34:01.046] [INFO] cheese - inserting 1000 documents. first: Techno folk and last: Category:Nuclear energy in Ghana -[2018-02-13T00:34:01.073] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:01.103] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:34:01.153] [INFO] cheese - batch complete in: 1.6 secs -[2018-02-13T00:34:01.241] [INFO] cheese - inserting 1000 documents. first: Birthday Honours 1896 and last: Pale Bridewort -[2018-02-13T00:34:01.248] [INFO] cheese - inserting 1000 documents. first: East German national ice hockey team and last: Portal:SAARC/Selected Picture/3-Max -[2018-02-13T00:34:01.268] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:34:01.294] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:01.330] [INFO] cheese - inserting 1000 documents. first: WTO (disambiguation) and last: B-58 -[2018-02-13T00:34:01.370] [INFO] cheese - inserting 1000 documents. first: Shah Reza Pahlavi and last: André Lacroix -[2018-02-13T00:34:01.414] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:34:01.428] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in East Germany by decade and last: Category:Articles containing Romansh-language text -[2018-02-13T00:34:01.437] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:34:01.480] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:34:01.499] [INFO] cheese - inserting 1000 documents. first: Aurora's drift and last: Agusta A.105 -[2018-02-13T00:34:01.556] [INFO] cheese - inserting 1000 documents. first: Murugesu Balasunderam and last: Wikipedia:Editor review/Simply south 5 -[2018-02-13T00:34:01.563] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:01.620] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:34:01.702] [INFO] cheese - inserting 1000 documents. first: Chalarotona and last: Template:Nippon TV Do'yō drama -[2018-02-13T00:34:01.727] [INFO] cheese - inserting 1000 documents. first: Frémicourt and last: Fractievoorzitter -[2018-02-13T00:34:01.743] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:01.792] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:34:01.878] [INFO] cheese - inserting 1000 documents. first: Hull City Council and last: Wikipedia:Featured portal candidates/Portal:Food -[2018-02-13T00:34:01.899] [INFO] cheese - inserting 1000 documents. first: Category:1900s establishments in Ceylon and last: Cossus striolatus -[2018-02-13T00:34:01.958] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:34:01.973] [INFO] cheese - inserting 1000 documents. first: Civilized Evil and last: Subspecifically -[2018-02-13T00:34:01.978] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:34:02.046] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:34:02.095] [INFO] cheese - inserting 1000 documents. first: Category:Honor societies and last: List of Australian divisions in WWI -[2018-02-13T00:34:02.121] [INFO] cheese - inserting 1000 documents. first: Book:Dorothy Dandridge and last: Zaur Tagi-Zade -[2018-02-13T00:34:02.161] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:34:02.185] [INFO] cheese - inserting 1000 documents. first: Leicetser City F.C. and last: National Oath Tower -[2018-02-13T00:34:02.193] [INFO] cheese - inserting 1000 documents. first: Rethink Robotics and last: Category:Education in Karnataka by district -[2018-02-13T00:34:02.202] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:34:02.247] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:34:02.274] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:02.333] [INFO] cheese - inserting 1000 documents. first: Paropta johannes and last: Gakiyeh, Dorudfaraman -[2018-02-13T00:34:02.365] [INFO] cheese - inserting 1000 documents. first: Geng Zhong and last: Madam (Fashion) -[2018-02-13T00:34:02.369] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:34:02.370] [INFO] cheese - inserting 1000 documents. first: Veijo Puhjo and last: Wikipedia:Version 1.0 Editorial Team/Baseball player articles by quality/12 -[2018-02-13T00:34:02.417] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:34:02.421] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:34:02.608] [INFO] cheese - inserting 1000 documents. first: Draft:Sobolev-RKHS-CA and last: Template:WikiProject computer science -[2018-02-13T00:34:02.612] [INFO] cheese - inserting 1000 documents. first: Leueen MacGrath and last: Wikipedia:Possibly unfree files/2007 September 1 -[2018-02-13T00:34:02.654] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:34:02.662] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:34:02.712] [INFO] cheese - inserting 1000 documents. first: Gakeyeh and last: Category:Articles with Kanuri-language external links -[2018-02-13T00:34:02.745] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:34:02.764] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Baseball player articles by quality/13 and last: Philip II of Macedon National Stadium -[2018-02-13T00:34:02.856] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:34:03.047] [INFO] cheese - inserting 1000 documents. first: Robert Sandeman and last: Le Concert des Nations -[2018-02-13T00:34:03.093] [INFO] cheese - inserting 1000 documents. first: Obdurodon dicksoni and last: Binky (Harry Potter) -[2018-02-13T00:34:03.149] [INFO] cheese - inserting 1000 documents. first: Jagged Germanderwort and last: Komsomolske -[2018-02-13T00:34:03.154] [INFO] cheese - inserting 1000 documents. first: 3-M and last: Blackwell Scientific -[2018-02-13T00:34:03.164] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:34:03.185] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:03.243] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T00:34:03.289] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T00:34:03.409] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2007 September 1 and last: Valle del Cauca Deputies hostage crisis -[2018-02-13T00:34:03.427] [INFO] cheese - inserting 1000 documents. first: File:Tom keifer - the way life goes.jpg and last: Eshwara Temple, Kengeri, Bangalore -[2018-02-13T00:34:03.524] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:34:03.532] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:34:03.538] [INFO] cheese - inserting 1000 documents. first: File:Liu Qixiong.jpg and last: Douglas M. Baker, Jr -[2018-02-13T00:34:03.591] [INFO] cheese - inserting 1000 documents. first: Category:New Age albums by Greek artists and last: Perthshire beardmoss -[2018-02-13T00:34:03.626] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:34:03.632] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:34:03.786] [INFO] cheese - inserting 1000 documents. first: Categories of protected areas of Ukraine and last: Category:Sackville family -[2018-02-13T00:34:03.822] [INFO] cheese - inserting 1000 documents. first: Bibles for America and last: Tahoma National Cemetery -[2018-02-13T00:34:03.836] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:34:03.959] [INFO] cheese - inserting 1000 documents. first: Perthshire Beardmoss and last: Category:1344 disestablishments by continent -[2018-02-13T00:34:04.004] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:34:03.920] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:34:04.094] [INFO] cheese - inserting 1000 documents. first: Category:1993 in Monaco and last: In the zone -[2018-02-13T00:34:04.171] [INFO] cheese - inserting 1000 documents. first: Category:Railway services introduced in 1883 and last: Dekko -[2018-02-13T00:34:04.181] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:34:04.227] [INFO] cheese - inserting 1000 documents. first: File:Kellyclarksonbecauseofyouvideo.png and last: File:Bigbrainacademymindsprint.jpg -[2018-02-13T00:34:04.233] [INFO] cheese - inserting 1000 documents. first: Fado (character) and last: Tree sitter -[2018-02-13T00:34:04.247] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:34:04.305] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:34:04.336] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:34:04.386] [INFO] cheese - inserting 1000 documents. first: H. Vishwanath and last: Intel Core i Series -[2018-02-13T00:34:04.435] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:34:04.461] [INFO] cheese - inserting 1000 documents. first: The Constant Lover (Magneta Lane song) and last: Apostle plant -[2018-02-13T00:34:04.510] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:34:04.569] [INFO] cheese - inserting 1000 documents. first: Vampiro Americano and last: Category:Secondary schools in Finland -[2018-02-13T00:34:04.634] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:34:04.642] [INFO] cheese - inserting 1000 documents. first: Taisho Tripitaka and last: César Rincón -[2018-02-13T00:34:04.671] [INFO] cheese - inserting 1000 documents. first: Category:2002 establishments in Taiwan and last: Mountain snowberry -[2018-02-13T00:34:04.693] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:04.695] [INFO] cheese - inserting 1000 documents. first: Katherine Levy and last: Junmin Shenfenzheng -[2018-02-13T00:34:04.716] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:34:04.742] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:34:04.778] [INFO] cheese - inserting 1000 documents. first: 2002 Júbilo Iwata season and last: Charity Watch -[2018-02-13T00:34:04.816] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:34:04.867] [INFO] cheese - inserting 1000 documents. first: Walking iris and last: Burns, Raymond -[2018-02-13T00:34:04.915] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:34:04.957] [INFO] cheese - inserting 1000 documents. first: Immunities and last: Liberalism and radicalism in Bulgaria -[2018-02-13T00:34:05.011] [INFO] cheese - inserting 1000 documents. first: Blackburn High School and last: Rich content -[2018-02-13T00:34:05.014] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:34:05.030] [INFO] cheese - inserting 1000 documents. first: Evgeni Popov and last: Ernest Clarence Breeze -[2018-02-13T00:34:05.065] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:05.072] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:34:05.104] [INFO] cheese - inserting 1000 documents. first: I Love You (EP) and last: Camp Thomas (Ohio) -[2018-02-13T00:34:05.147] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:34:05.149] [INFO] cheese - inserting 1000 documents. first: Chang, Raymond and last: Vernon Regional Junior College -[2018-02-13T00:34:05.150] [INFO] cheese - inserting 1000 documents. first: Template:User WP Ras al-Khaimah and last: Portal:Current events/2011 March 18 -[2018-02-13T00:34:05.177] [INFO] cheese - inserting 1000 documents. first: ARA Santiago del Estero (S-12) and last: Wikipedia:Relevance of content/Content policy analysis -[2018-02-13T00:34:05.187] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:34:05.212] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:05.247] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:34:05.450] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for arbitration/Aitias/Workshop and last: Dr. Sangamesh Saundattimath -[2018-02-13T00:34:05.498] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:34:05.515] [INFO] cheese - inserting 1000 documents. first: Saint Rögnvald and last: Michael Chriton -[2018-02-13T00:34:05.542] [INFO] cheese - inserting 1000 documents. first: Binnein Beag and last: Countess of Oxford -[2018-02-13T00:34:05.553] [INFO] cheese - inserting 1000 documents. first: File:March of the Red Bull Legions.ogg and last: Template:Handball at the South Asian Games -[2018-02-13T00:34:05.560] [INFO] cheese - inserting 1000 documents. first: Special olympics and last: Cosmopterix abnormalis -[2018-02-13T00:34:05.566] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:34:05.570] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Two-cent piece (United States coin) and last: Food from the 'Hood -[2018-02-13T00:34:05.581] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:34:05.606] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:05.623] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:05.623] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:34:05.713] [INFO] cheese - inserting 1000 documents. first: Gingerbread man and last: Omotegō, Fukushima -[2018-02-13T00:34:05.917] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:34:05.984] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Greg Gossel and last: COS by H&M -[2018-02-13T00:34:06.042] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:34:06.115] [INFO] cheese - inserting 1000 documents. first: Midterm elections 2010 and last: 1992 IIHF World Women's Championship -[2018-02-13T00:34:06.133] [INFO] cheese - inserting 1000 documents. first: Africa Fencing Confederation and last: George Schley -[2018-02-13T00:34:06.151] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:34:06.183] [INFO] cheese - inserting 1000 documents. first: File:Kathakali - the play begins.jpg and last: Whitehall, Stronsay -[2018-02-13T00:34:06.184] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:34:06.237] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:34:06.242] [INFO] cheese - inserting 1000 documents. first: Template:Redirect template index and last: Serbia and Montenegro Basketball Cup -[2018-02-13T00:34:06.292] [INFO] cheese - inserting 1000 documents. first: File:Dmharvey-wallpaper-alien.svg and last: The Roof Gardens and Babylon -[2018-02-13T00:34:06.301] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:34:06.355] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:34:06.450] [INFO] cheese - inserting 1000 documents. first: Spain support for Iran during the Iran–Iraq war and last: Nintoku Seamount -[2018-02-13T00:34:06.502] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:34:06.555] [INFO] cheese - inserting 1000 documents. first: 1511 Idrija earthquake and last: Wikipedia:Articles for deletion/Kiichi Nakamoto -[2018-02-13T00:34:06.584] [INFO] cheese - inserting 1000 documents. first: Edward Hitchcock jr and last: Paul Adams (Massachusetts politician) -[2018-02-13T00:34:06.613] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:34:06.636] [INFO] cheese - inserting 1000 documents. first: Shacal-2 and last: Aleksandr Sergeyevich Pushkin -[2018-02-13T00:34:06.647] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:34:06.660] [INFO] cheese - inserting 1000 documents. first: Mesara Plain and last: Category:National Register of Historic Places in King County, Washington -[2018-02-13T00:34:06.693] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:34:06.715] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:34:06.736] [INFO] cheese - inserting 1000 documents. first: File:Ichigaya station.jpg and last: Alltheweb.com -[2018-02-13T00:34:06.799] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:34:06.814] [INFO] cheese - inserting 1000 documents. first: Nintoku Guyot and last: Colors of rainbow -[2018-02-13T00:34:06.846] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:34:06.941] [INFO] cheese - inserting 1000 documents. first: President of the Third Reich and last: Route 105 (Vermont) -[2018-02-13T00:34:06.970] [INFO] cheese - inserting 1000 documents. first: Alessandro Gallo and last: Parliament of Mpumalanga -[2018-02-13T00:34:06.974] [INFO] cheese - inserting 1000 documents. first: Taste of Chaos 2010 and last: Biological issues in Fantasia (Rite of Spring) -[2018-02-13T00:34:06.998] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:34:07.036] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:07.044] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:34:07.142] [INFO] cheese - inserting 1000 documents. first: The Big Brain Theory: Pure Genius and last: Category:French-American culture in Wisconsin -[2018-02-13T00:34:07.208] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:07.260] [INFO] cheese - inserting 1000 documents. first: Dona Kossy and last: Wikipedia:Sockpuppet investigations/Shake it like a ladder to the sun. -[2018-02-13T00:34:07.288] [INFO] cheese - inserting 1000 documents. first: Edmark Corporation and last: Wikipedia:Articles for deletion/Dvar (2nd nomination) -[2018-02-13T00:34:07.306] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:34:07.332] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:34:07.339] [INFO] cheese - inserting 1000 documents. first: Francisco de Sá Carneiro and last: Aperture synthesis -[2018-02-13T00:34:07.357] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Hanson County, South Dakota and last: Cibbo Matto -[2018-02-13T00:34:07.387] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:34:07.401] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:34:07.460] [INFO] cheese - inserting 1000 documents. first: Route 119 (Vermont) and last: File:Ampelakia.JPG -[2018-02-13T00:34:07.462] [INFO] cheese - inserting 1000 documents. first: Hibbertia prostrata and last: Italian American Mafia -[2018-02-13T00:34:07.501] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:34:07.508] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:34:07.690] [INFO] cheese - inserting 1000 documents. first: Giant Centipede and last: Bay de North, Newfoundland and Labrador -[2018-02-13T00:34:07.755] [INFO] cheese - inserting 1000 documents. first: Gray poplar and last: File:Little Red Flowers poster.JPG -[2018-02-13T00:34:07.770] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in the Roman Empire and last: Wikipedia:Articles for deletion/Sean Maye -[2018-02-13T00:34:07.792] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:34:07.832] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:07.866] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:07.918] [INFO] cheese - inserting 1000 documents. first: List of journalism schools in Europe and last: French Formula 3 -[2018-02-13T00:34:07.941] [INFO] cheese - inserting 1000 documents. first: I've Got To Find My Baby and last: Category:Wofford Terriers men's basketball players -[2018-02-13T00:34:07.966] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:34:07.976] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:08.035] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Huw aled lewis and last: Edward Sassoon -[2018-02-13T00:34:08.096] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:34:08.147] [INFO] cheese - inserting 1000 documents. first: Severe Tropical Storm Meari (2011) and last: Category:Handball competitions in Argentina -[2018-02-13T00:34:08.175] [INFO] cheese - inserting 1000 documents. first: Nintendo Entertainment System hardware clone and last: RJD2 -[2018-02-13T00:34:08.205] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:34:08.249] [INFO] cheese - inserting 1000 documents. first: Rosella Bjornson and last: Publication history of Dick Grayson -[2018-02-13T00:34:08.319] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:34:08.362] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:34:08.426] [INFO] cheese - inserting 1000 documents. first: File:BenjaminSmoke.jpg and last: The (Non-)Decadent Sounds of Faye -[2018-02-13T00:34:08.473] [INFO] cheese - inserting 1000 documents. first: Sahpresa and last: Americans for Peace Now -[2018-02-13T00:34:08.500] [INFO] cheese - inserting 1000 documents. first: Too Old To Rock 'N' Roll Tour and last: Rubber tires -[2018-02-13T00:34:08.513] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:34:08.537] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:34:08.570] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:34:08.640] [INFO] cheese - inserting 1000 documents. first: Clemson College and last: Category:Military locations -[2018-02-13T00:34:08.662] [INFO] cheese - inserting 1000 documents. first: Bilton Grange (disambiguation) and last: Streptomyces javensis -[2018-02-13T00:34:08.676] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:34:08.697] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:08.783] [INFO] cheese - inserting 1000 documents. first: Category:People from Bonham, Texas and last: Dharapuram (State Assembly Constituency) -[2018-02-13T00:34:08.834] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:08.881] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject MythBusters and last: Anna Lang -[2018-02-13T00:34:08.895] [INFO] cheese - inserting 1000 documents. first: Food physics and last: Avalonianus sanfordi -[2018-02-13T00:34:08.904] [INFO] cheese - inserting 1000 documents. first: Analysis of flows and last: Matsuyama, Yamagata -[2018-02-13T00:34:08.911] [INFO] cheese - inserting 1000 documents. first: Sheep farming in Wales and last: Category:Category-Class Skepticism articles -[2018-02-13T00:34:08.921] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:34:08.929] [INFO] cheese - inserting 1000 documents. first: NFL Most Valuable Player and last: Eric Poole (disambiguation) -[2018-02-13T00:34:08.952] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:08.957] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:34:08.960] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:34:09.041] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:34:09.233] [INFO] cheese - inserting 1000 documents. first: Pipettor and last: Truncated -[2018-02-13T00:34:09.254] [INFO] cheese - inserting 1000 documents. first: Anvatt and last: Republic of Ireland women's national football team 2010s results -[2018-02-13T00:34:09.259] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Skepticism articles and last: G4 states -[2018-02-13T00:34:09.280] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:34:09.284] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:34:09.286] [INFO] cheese - inserting 1000 documents. first: Common bond (disambiguation) and last: Anita Stewart (culinary author) -[2018-02-13T00:34:09.319] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:34:09.341] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:34:09.357] [INFO] cheese - inserting 1000 documents. first: Ducati 125 Bronco and last: Brewer State Junior College -[2018-02-13T00:34:09.404] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:34:09.420] [INFO] cheese - inserting 1000 documents. first: Hirata, Yamagata and last: Canon EOS 10D -[2018-02-13T00:34:09.472] [INFO] cheese - inserting 1000 documents. first: File:11 Flottille Emblem.png and last: Portal:Golf/Selected picture/09 -[2018-02-13T00:34:09.480] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:34:09.530] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:34:09.675] [INFO] cheese - inserting 1000 documents. first: Thunderer (comics) and last: Australian Society of Anaesthetists -[2018-02-13T00:34:09.741] [INFO] cheese - inserting 1000 documents. first: Orewa Surf Life Saving Club and last: Agent Deborah Ciccerone Waldrup -[2018-02-13T00:34:09.750] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:34:09.763] [INFO] cheese - inserting 1000 documents. first: Phillips, Howard and last: Orianica Velásquez -[2018-02-13T00:34:09.814] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:34:09.819] [INFO] cheese - inserting 1000 documents. first: World Harmony Run and last: Dormition of the Theotokos Cathedral, Varna -[2018-02-13T00:34:09.821] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:34:09.870] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:34:09.895] [INFO] cheese - inserting 1000 documents. first: Ernie Simms and last: File:Real Love.ogg -[2018-02-13T00:34:09.936] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:09.944] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 2002-03 UCL QR2 and last: Heraklion Prefecture -[2018-02-13T00:34:09.973] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:34:09.995] [INFO] cheese - inserting 1000 documents. first: File:HCBC Blade.svg and last: Injury of brachial plexus -[2018-02-13T00:34:10.038] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:10.225] [INFO] cheese - inserting 1000 documents. first: Chocolate Biscuit pudding and last: Cross Corners, nh -[2018-02-13T00:34:10.238] [INFO] cheese - inserting 1000 documents. first: Mercedes Divide and last: Message to the Black Man -[2018-02-13T00:34:10.245] [INFO] cheese - inserting 1000 documents. first: Euboea Prefecture and last: Category:Junimea -[2018-02-13T00:34:10.250] [INFO] cheese - inserting 1000 documents. first: Category:11th century in Bolivia and last: 123 Signals Unit RAF -[2018-02-13T00:34:10.260] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:34:10.280] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:34:10.278] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:34:10.299] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:10.335] [INFO] cheese - inserting 1000 documents. first: CCCSTI and last: HADOPI -[2018-02-13T00:34:10.347] [INFO] cheese - inserting 1000 documents. first: Category:1898 and last: Jason Becker -[2018-02-13T00:34:10.370] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:10.434] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:34:10.457] [INFO] cheese - inserting 1000 documents. first: Crying freeman and last: National German-American Alliance -[2018-02-13T00:34:10.508] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:10.629] [INFO] cheese - inserting 1000 documents. first: Naim moghabghab and last: Category:1233 festivals -[2018-02-13T00:34:10.660] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:34:10.689] [INFO] cheese - inserting 1000 documents. first: Nauheed and last: Category:Roman governors of Germania Superior -[2018-02-13T00:34:10.724] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:10.725] [INFO] cheese - inserting 1000 documents. first: List Of University Interscholastic League Events and last: Benjamin Orr (disambiguation) -[2018-02-13T00:34:10.755] [INFO] cheese - inserting 1000 documents. first: LPT2 (CONFIG.SYS directive) and last: SMBC Theater -[2018-02-13T00:34:10.768] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:34:10.774] [INFO] cheese - inserting 1000 documents. first: Hadopi law and last: Octonians -[2018-02-13T00:34:10.802] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:34:10.879] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:10.956] [INFO] cheese - inserting 1000 documents. first: 105mm Gun T8 and last: Meat Alexandria -[2018-02-13T00:34:11.038] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:34:11.105] [INFO] cheese - inserting 1000 documents. first: Capitonym and last: Donald "Buzz" Lukens -[2018-02-13T00:34:11.144] [INFO] cheese - inserting 1000 documents. first: Numerical approximations of π and last: Ka'ahumanu Church -[2018-02-13T00:34:11.150] [INFO] cheese - inserting 1000 documents. first: Saint Saffold and last: Secaucus Junction (NJT) -[2018-02-13T00:34:11.197] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:11.233] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:34:11.246] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:34:11.341] [INFO] cheese - inserting 1000 documents. first: Category:1997–98 in Belgian football and last: Nazeer Ahmed -[2018-02-13T00:34:11.344] [INFO] cheese - inserting 1000 documents. first: E-75 highway and last: Louis-Gustave Martin -[2018-02-13T00:34:11.388] [INFO] cheese - inserting 1000 documents. first: Vibroweapon and last: Bola Ige -[2018-02-13T00:34:11.400] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:11.415] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:34:11.478] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:34:11.617] [INFO] cheese - inserting 1000 documents. first: Standard Chartered Thailand and last: File:Back-and-white hawk-eagle.jpg -[2018-02-13T00:34:11.629] [INFO] cheese - inserting 1000 documents. first: Chicken Creek (disambiguation) and last: Template:TNT Tropang Texters -[2018-02-13T00:34:11.645] [INFO] cheese - inserting 1000 documents. first: Kaʻahumanu Church and last: Limnaecia phragmitella -[2018-02-13T00:34:11.658] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:34:11.705] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:11.709] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:11.740] [INFO] cheese - inserting 1000 documents. first: Bill Morton (football) and last: Jack Riley -[2018-02-13T00:34:11.781] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:34:11.804] [INFO] cheese - inserting 1000 documents. first: File:ACallToArms.jpg and last: Narawi -[2018-02-13T00:34:11.839] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:11.886] [INFO] cheese - inserting 1000 documents. first: Template:User JBU and last: Abraham McClellan (Tennessee politician) -[2018-02-13T00:34:11.932] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:11.978] [INFO] cheese - inserting 1000 documents. first: Conrad I, Duke of Bohemia and last: Postage stamps and postal history of Bolivar Department -[2018-02-13T00:34:11.984] [INFO] cheese - inserting 1000 documents. first: RML 7-inch gun and last: Anette Støvelbæk -[2018-02-13T00:34:12.129] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:12.282] [INFO] cheese - inserting 1000 documents. first: Secret meeting between the IRA and UVF and last: Alexander Bell and Elisha Gray telephone controversy -[2018-02-13T00:34:12.292] [INFO] cheese - inserting 1000 documents. first: Jeff Tomlinson and last: Dorpat (disambiguation) -[2018-02-13T00:34:12.454] [INFO] cheese - inserting 1000 documents. first: Robert S. Rhine and last: Commerce Bank & Trust Holding Company -[2018-02-13T00:34:13.272] [INFO] cheese - inserting 1000 documents. first: Forbidden Passage and last: File:Colonial Theater - 1962.jpg -[2018-02-13T00:34:13.293] [INFO] cheese - batch complete in: 2.059 secs -[2018-02-13T00:34:13.324] [INFO] cheese - batch complete in: 1.615 secs -[2018-02-13T00:34:13.370] [INFO] cheese - batch complete in: 1.589 secs -[2018-02-13T00:34:13.483] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Collier County, Florida and last: File:Ett hus med många rum cover.jpg -[2018-02-13T00:34:13.589] [INFO] cheese - batch complete in: 1.93 secs -[2018-02-13T00:34:13.652] [INFO] cheese - batch complete in: 1.813 secs -[2018-02-13T00:34:13.686] [INFO] cheese - inserting 1000 documents. first: Richard Cheatham and last: Bulotu -[2018-02-13T00:34:13.710] [INFO] cheese - batch complete in: 1.581 secs -[2018-02-13T00:34:13.835] [INFO] cheese - batch complete in: 1.903 secs -[2018-02-13T00:34:13.998] [INFO] cheese - inserting 1000 documents. first: Special Immigrant Juvenile and last: Semispinalis thoracis muscles -[2018-02-13T00:34:14.041] [INFO] cheese - inserting 1000 documents. first: Richard Wells (nurse) and last: Juan Martín Cueva -[2018-02-13T00:34:14.046] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:34:14.086] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:34:14.180] [INFO] cheese - inserting 1000 documents. first: Navajo Business Council and last: Category:Deaf universities and colleges in the United States -[2018-02-13T00:34:14.182] [INFO] cheese - inserting 1000 documents. first: Vilovataya (inflow sluggish) and last: TimedText:Beach Boys that s not me.ogg.en.srt -[2018-02-13T00:34:14.243] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:14.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gia Lashay and last: Eddie Murphy (disambiguation) -[2018-02-13T00:34:14.275] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:34:14.324] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:34:14.330] [INFO] cheese - inserting 1000 documents. first: List of people from Swansea and last: Tactical Provost Wing -[2018-02-13T00:34:14.345] [INFO] cheese - inserting 1000 documents. first: Postage stamps and postal history of the North German Confederation and last: List of bridges in Cambridge -[2018-02-13T00:34:14.387] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:34:14.417] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:34:14.424] [INFO] cheese - inserting 1000 documents. first: Bad Aibling (Hofberg) and last: 32033 Arjunkapoor -[2018-02-13T00:34:14.433] [INFO] cheese - inserting 1000 documents. first: My Face Can’t Be Felt and last: Steven Troughton-Smith -[2018-02-13T00:34:14.478] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:34:14.485] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:34:14.590] [INFO] cheese - inserting 1000 documents. first: Brain chip and last: Ghulam Dastagir Shaida -[2018-02-13T00:34:14.637] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:34:14.744] [INFO] cheese - inserting 1000 documents. first: File:Chic - Le Freak.ogg and last: Kaij Mek, Arizona -[2018-02-13T00:34:14.849] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:34:14.874] [INFO] cheese - inserting 1000 documents. first: Schlossberg (hill) and last: Robert F. Fisher -[2018-02-13T00:34:14.891] [INFO] cheese - inserting 1000 documents. first: House of Icel and last: Wikipedia:Articles for deletion/Thomas Kraft -[2018-02-13T00:34:14.932] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:34:14.933] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:34:14.942] [INFO] cheese - inserting 1000 documents. first: KHV (disambiguation) and last: Category:Fuzhou Military Region -[2018-02-13T00:34:15.003] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:34:15.113] [INFO] cheese - inserting 1000 documents. first: Workaholic (song) and last: Naniwa University of the Arts -[2018-02-13T00:34:15.118] [INFO] cheese - inserting 1000 documents. first: Slip Stich and Pass and last: Ford F-Series -[2018-02-13T00:34:15.209] [INFO] cheese - inserting 1000 documents. first: Geoff Siegel and last: ZE (disambiguation) -[2018-02-13T00:34:15.221] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:34:15.312] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:34:15.317] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:34:15.437] [INFO] cheese - inserting 1000 documents. first: Wirscheid and last: Toros Toramanian -[2018-02-13T00:34:15.530] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:34:15.552] [INFO] cheese - inserting 1000 documents. first: Category:Midland Colts players and last: European Championship in football (disambiguation) -[2018-02-13T00:34:15.553] [INFO] cheese - inserting 1000 documents. first: The International Association of Media and History and last: Wikipedia:Brazil Collaboration/Header -[2018-02-13T00:34:15.653] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:34:15.657] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:34:15.727] [INFO] cheese - inserting 1000 documents. first: Voice in the Night and last: Category:Departments of Moronou Region -[2018-02-13T00:34:15.806] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:34:15.878] [INFO] cheese - inserting 1000 documents. first: Gabriel Ilyich Urazovsky and last: Dudilla Sridhar Babu -[2018-02-13T00:34:15.955] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:34:16.037] [INFO] cheese - inserting 1000 documents. first: MSSS and last: Nevėžis Kėdainiai -[2018-02-13T00:34:16.053] [INFO] cheese - inserting 1000 documents. first: Mount Ulla Township, Rowan County, North Carolina and last: WAP Push -[2018-02-13T00:34:16.089] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:16.115] [INFO] cheese - inserting 1000 documents. first: Trachealis and last: Category:Kentucky Democratic Party -[2018-02-13T00:34:16.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Brazil Collaboration/History and last: Shippee, California -[2018-02-13T00:34:16.118] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:34:16.147] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:34:16.182] [INFO] cheese - inserting 1000 documents. first: Yonathan Suryatama and last: Wikipedia:Articles for deletion/Spider-Man (set index) -[2018-02-13T00:34:16.183] [INFO] cheese - inserting 1000 documents. first: Ford F-150 (F-Series truck) and last: Pneumonoultramicroscopicsilicovolcanokoniosis -[2018-02-13T00:34:16.200] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:34:16.240] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:34:16.266] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:34:16.278] [INFO] cheese - inserting 1000 documents. first: Wahineopio Kahakuha'ako'i and last: Anthidium luizae -[2018-02-13T00:34:16.325] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:34:16.409] [INFO] cheese - inserting 1000 documents. first: File:Songs from Before (Front Cover).png and last: Fortress (Thee Oh Sees song) -[2018-02-13T00:34:16.449] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:34:16.458] [INFO] cheese - inserting 1000 documents. first: Bogoz River and last: 1943 Brooklyn Dodgers season -[2018-02-13T00:34:16.513] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:16.565] [INFO] cheese - inserting 1000 documents. first: Apatema mediopallidum and last: Ron Wear -[2018-02-13T00:34:16.620] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:34:16.636] [INFO] cheese - inserting 1000 documents. first: Anthidium luctuosum and last: File:Boys Will Be Boys.jpg -[2018-02-13T00:34:16.647] [INFO] cheese - inserting 1000 documents. first: Universal Combat Gold and last: Y. I. Zolotarev -[2018-02-13T00:34:16.647] [INFO] cheese - inserting 1000 documents. first: Slavery in Indian Territory and last: File:Tua Tua Keladi.jpg -[2018-02-13T00:34:16.680] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:34:16.702] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:34:16.718] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:34:16.749] [INFO] cheese - inserting 1000 documents. first: Turnabout (Margaret Peterson Haddix novel) and last: ᓺ -[2018-02-13T00:34:16.784] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:34:16.901] [INFO] cheese - inserting 1000 documents. first: K-Y jelly and last: Anne Cox Chambers -[2018-02-13T00:34:16.919] [INFO] cheese - inserting 1000 documents. first: New York Review of Books Classics and last: Wikipedia:WikiProject Spam/LinkReports/imwerden.de -[2018-02-13T00:34:17.018] [INFO] cheese - inserting 1000 documents. first: ᓻ and last: Brent, John -[2018-02-13T00:34:17.027] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:34:17.033] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:17.090] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:34:17.135] [INFO] cheese - inserting 1000 documents. first: Madura horseshoe bat and last: Alex Motley -[2018-02-13T00:34:17.171] [INFO] cheese - inserting 1000 documents. first: Kropotkin (urban locality) and last: File:MG 3102.jpg -[2018-02-13T00:34:17.193] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:34:17.238] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:17.352] [INFO] cheese - inserting 1000 documents. first: Serampore Union Institution and last: Treadmill with Vibration Isolation Stabilization -[2018-02-13T00:34:17.418] [INFO] cheese - inserting 1000 documents. first: File:Entwistlerestaurantrow.jpg and last: 1967 Grand Prix motorcycle racing season -[2018-02-13T00:34:17.434] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:34:17.492] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:34:17.543] [INFO] cheese - inserting 1000 documents. first: Private numbering plan and last: Ribot's law -[2018-02-13T00:34:17.569] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:17.588] [INFO] cheese - inserting 1000 documents. first: Brereton, John and last: Emperor Taizong's campaign against states of the Western Regions -[2018-02-13T00:34:17.640] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:34:17.768] [INFO] cheese - inserting 1000 documents. first: Gregory Kane (journalist) and last: John Johnson (British politician) -[2018-02-13T00:34:17.793] [INFO] cheese - inserting 1000 documents. first: Kyiv Urban Rail and last: C³-bu -[2018-02-13T00:34:17.827] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:34:17.843] [INFO] cheese - inserting 1000 documents. first: Most Distinguished Order of Saint Michael and Saint George and last: Garbayuela, Badajoz -[2018-02-13T00:34:17.845] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:34:17.860] [INFO] cheese - inserting 1000 documents. first: Intramolecular aglycone delivery and last: Totoma, California -[2018-02-13T00:34:17.866] [INFO] cheese - inserting 1000 documents. first: P3X-888 and last: Wikipedia:Help desk/Archive 5 -[2018-02-13T00:34:17.874] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:34:17.909] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:17.931] [INFO] cheese - inserting 1000 documents. first: Top Model Norge (cycle 6) and last: Port Kent (Amtrak station) -[2018-02-13T00:34:17.931] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:34:17.935] [INFO] cheese - inserting 1000 documents. first: WYLN-LP and last: List of mayors of Albany, New York -[2018-02-13T00:34:17.962] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:34:17.994] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:34:18.156] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hartaculinara.us2.list-manage2.com and last: Tracy Lee Stum -[2018-02-13T00:34:18.179] [INFO] cheese - inserting 1000 documents. first: Garbayuela, Spain and last: File:Hotchkiss Hall.jpg -[2018-02-13T00:34:18.199] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:34:18.201] [INFO] cheese - inserting 1000 documents. first: Totoma and last: File:Oscartune.jpg -[2018-02-13T00:34:18.212] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:34:18.228] [INFO] cheese - inserting 1000 documents. first: Andrew, Mark and last: 1932 Penn Quakers football team -[2018-02-13T00:34:18.255] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:34:18.270] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:34:18.303] [INFO] cheese - inserting 1000 documents. first: Category:2012–13 CWHL season and last: Canibal mine -[2018-02-13T00:34:18.345] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:18.478] [INFO] cheese - inserting 1000 documents. first: Module:ISO 3166/data/NO and last: LATTC / Ortho Institute station -[2018-02-13T00:34:18.479] [INFO] cheese - inserting 1000 documents. first: Gujarat Vidyapeeth and last: Wikipedia:Arbitration/Index/Involved parties -[2018-02-13T00:34:18.498] [INFO] cheese - inserting 1000 documents. first: Botys ptoalis and last: File:Sanger Logo.png -[2018-02-13T00:34:18.498] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:34:18.528] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:34:18.536] [INFO] cheese - inserting 1000 documents. first: File:Altbeastplay.png and last: Jusepe de Ribera -[2018-02-13T00:34:18.562] [INFO] cheese - inserting 1000 documents. first: The Shock Doctrine and last: Israeli acute paralysis virus -[2018-02-13T00:34:18.576] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:34:18.596] [INFO] cheese - inserting 1000 documents. first: Dorjee Sun and last: Exoristopsis -[2018-02-13T00:34:18.600] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:34:18.622] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:34:18.678] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:18.756] [INFO] cheese - inserting 1000 documents. first: Category:Ghanaian producers and last: Shue Creek -[2018-02-13T00:34:18.777] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:34:18.804] [INFO] cheese - inserting 1000 documents. first: Category:Titanium mines in Guatemala and last: Honour of Windsor -[2018-02-13T00:34:18.920] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:34:18.952] [INFO] cheese - inserting 1000 documents. first: Fabriciella and last: Acemya tibialis -[2018-02-13T00:34:18.998] [INFO] cheese - inserting 1000 documents. first: Phoenix Assurance and last: Friedberg in der Wetterau -[2018-02-13T00:34:19.020] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:34:19.096] [INFO] cheese - inserting 1000 documents. first: Characium and last: ⠯ -[2018-02-13T00:34:19.106] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:34:19.170] [INFO] cheese - inserting 1000 documents. first: St. Curetán and last: Phil Neale -[2018-02-13T00:34:19.181] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:34:19.236] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:34:19.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Laurette Atindehou and last: Armed Forces Logistics Authority (Egypt) -[2018-02-13T00:34:19.292] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:34:19.403] [INFO] cheese - inserting 1000 documents. first: File:Harvey Firestone Memorial, Akron, Ohio USA.jpg and last: File:Muruwari language.png -[2018-02-13T00:34:19.409] [INFO] cheese - inserting 1000 documents. first: Poisson bright spot and last: Category:People from Cornwall, Connecticut -[2018-02-13T00:34:19.437] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:34:19.444] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:34:19.501] [INFO] cheese - inserting 1000 documents. first: Ikramullah Sheikh and last: Captain Fracassa's Journey -[2018-02-13T00:34:19.513] [INFO] cheese - inserting 1000 documents. first: Guzelyurt and last: Freestyle Skiing -[2018-02-13T00:34:19.527] [INFO] cheese - inserting 1000 documents. first: Tomasa Núñez and last: Category:Francesca Michielin songs -[2018-02-13T00:34:19.537] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:19.550] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:34:19.568] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:34:19.623] [INFO] cheese - inserting 1000 documents. first: State Route 330 (Tennessee) and last: Glace Bay, NS -[2018-02-13T00:34:19.635] [INFO] cheese - inserting 1000 documents. first: Piatkowisko and last: Przebendow -[2018-02-13T00:34:19.655] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:34:19.673] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:19.674] [INFO] cheese - inserting 1000 documents. first: Safe + Sound and last: Kai Chi Liu -[2018-02-13T00:34:19.719] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:34:19.824] [INFO] cheese - inserting 1000 documents. first: Przebrod and last: Rzezewo -[2018-02-13T00:34:19.848] [INFO] cheese - batch complete in: 0.193 secs -[2018-02-13T00:34:19.850] [INFO] cheese - inserting 1000 documents. first: Zadravko Milutinović and last: Gorshkov, Aleksandr -[2018-02-13T00:34:19.880] [INFO] cheese - inserting 1000 documents. first: File:Ngarna languages.png and last: Leptopelis bequaerti -[2018-02-13T00:34:19.885] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:34:19.924] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:34:19.929] [INFO] cheese - inserting 1000 documents. first: Category:Rijksmonuments in Flevoland and last: Wikipedia:WikiProject Spam/LinkReports/nikelebronshoes.net -[2018-02-13T00:34:19.979] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:20.034] [INFO] cheese - inserting 1000 documents. first: Lac la Biche, AB and last: Template:Podcasting-stub -[2018-02-13T00:34:20.065] [INFO] cheese - inserting 1000 documents. first: Rzezusnia and last: Category:Constitutional bishops -[2018-02-13T00:34:20.073] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:34:20.085] [INFO] cheese - inserting 1000 documents. first: Tricia Marwick and last: Category:Marquette County, Michigan -[2018-02-13T00:34:20.090] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:34:20.118] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Geelong and last: Template:Chembox Bioavail -[2018-02-13T00:34:20.155] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:34:20.181] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:34:20.284] [INFO] cheese - inserting 1000 documents. first: Brucia La Terra and last: Swedish Division 1 (ice hockey) -[2018-02-13T00:34:20.285] [INFO] cheese - inserting 1000 documents. first: Kirill Razlogov and last: 2016 British Rally Championship season -[2018-02-13T00:34:20.310] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:34:20.327] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:20.418] [INFO] cheese - inserting 1000 documents. first: Wieclawice and last: Wolka Nowodworska -[2018-02-13T00:34:20.523] [INFO] cheese - inserting 1000 documents. first: Albert Rivaud and last: Bi Yan -[2018-02-13T00:34:20.549] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:20.627] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:34:20.661] [INFO] cheese - inserting 1000 documents. first: File:Didn't You Used to Be... cover.jpg and last: Category:1970 in Libya -[2018-02-13T00:34:20.720] [INFO] cheese - inserting 1000 documents. first: Category:Multilingual support templates and last: Normally aspirated -[2018-02-13T00:34:20.727] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:34:20.785] [INFO] cheese - inserting 1000 documents. first: Italian Classroom and last: Akakura -[2018-02-13T00:34:20.804] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:34:20.820] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:34:20.848] [INFO] cheese - inserting 1000 documents. first: Template:Women's International Zionist Organization/meta/shortname and last: 2016 TCR International Series season -[2018-02-13T00:34:20.899] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:34:20.965] [INFO] cheese - inserting 1000 documents. first: Wolka Nurzecka and last: Guardian Trust -[2018-02-13T00:34:20.986] [INFO] cheese - inserting 1000 documents. first: Rower and last: Western Wireless Corporation -[2018-02-13T00:34:21.025] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:34:21.069] [INFO] cheese - inserting 1000 documents. first: Olías del Rey and last: ReCharge Collectible Card Game -[2018-02-13T00:34:21.067] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:34:21.135] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:21.162] [INFO] cheese - inserting 1000 documents. first: First Cain Ministry and last: Den schwulen und lesbischen Opfern des Nationalsozialismus -[2018-02-13T00:34:21.219] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:21.298] [INFO] cheese - inserting 1000 documents. first: Anastasia Salina and last: Victor Naicu -[2018-02-13T00:34:21.331] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:34:21.394] [INFO] cheese - inserting 1000 documents. first: Imperial Spa and last: Category:2011 in American women's soccer leagues -[2018-02-13T00:34:21.422] [INFO] cheese - inserting 1000 documents. first: Area code 712 and last: Glenoe -[2018-02-13T00:34:21.476] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:34:21.477] [INFO] cheese - inserting 1000 documents. first: Tameza and last: Template:Libertas by country -[2018-02-13T00:34:21.489] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:34:21.550] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:34:21.662] [INFO] cheese - inserting 1000 documents. first: Sándor, Pál and last: Wikipedia:Meetup/ARLiSVRA2016 -[2018-02-13T00:34:21.673] [INFO] cheese - inserting 1000 documents. first: Holland's Sportive Lemur and last: Ponce de Leon Springs -[2018-02-13T00:34:21.713] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:21.760] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:34:21.853] [INFO] cheese - inserting 1000 documents. first: Grieg (surname) and last: Wikipedia:Reference desk/Archives/Miscellaneous/2013 June 28 -[2018-02-13T00:34:21.864] [INFO] cheese - inserting 1000 documents. first: Albert S. Marks and last: Parang -[2018-02-13T00:34:21.901] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:34:21.927] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:34:21.951] [INFO] cheese - inserting 1000 documents. first: Björneborg, Sweden and last: Infantry Regiment 9 Potsdam -[2018-02-13T00:34:21.986] [INFO] cheese - inserting 1000 documents. first: File:Temple of the Invisible.jpg and last: Gta 4 -[2018-02-13T00:34:21.992] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:22.009] [INFO] cheese - inserting 1000 documents. first: Category:FC Ripensia Timișoara players and last: Wikipedia:Reference desk/Archives/Entertainment/2016 February 8 -[2018-02-13T00:34:22.050] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:34:22.070] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:34:22.111] [INFO] cheese - inserting 1000 documents. first: Barbashmin and last: Setoishi Station -[2018-02-13T00:34:22.154] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:34:22.370] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 1996 Summer Olympics - Team jumping and last: Category:21st-century Uruguayan people -[2018-02-13T00:34:22.396] [INFO] cheese - inserting 1000 documents. first: Category:Hospital buildings completed in 1894 and last: File:Muse-the 2nd law lp.jpg -[2018-02-13T00:34:22.396] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:34:22.409] [INFO] cheese - inserting 1000 documents. first: File:Phish - Live Phish Volume 10.jpg and last: File:SwordTrilogy.jpg -[2018-02-13T00:34:22.449] [INFO] cheese - inserting 1000 documents. first: File:Cbs2hdlogo.jpg and last: Adavikatanahalli -[2018-02-13T00:34:22.460] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:34:22.472] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:34:22.518] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:34:22.557] [INFO] cheese - inserting 1000 documents. first: Kevin Williamson (screenwriter) and last: Wikipedia:Articles for deletion/Psychic Pokémon -[2018-02-13T00:34:22.570] [INFO] cheese - inserting 1000 documents. first: Vaccarizzo Albanian and last: Di Resta -[2018-02-13T00:34:22.615] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:34:22.628] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:34:22.708] [INFO] cheese - inserting 1000 documents. first: George Eaton Sutherland and last: Category:Discoveries by Atsuo Asami -[2018-02-13T00:34:22.735] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:34:22.905] [INFO] cheese - inserting 1000 documents. first: Hawley Smoot tariff and last: Wikipedia:Articles for deletion/Madakkavil -[2018-02-13T00:34:22.940] [INFO] cheese - inserting 1000 documents. first: Anthu Inthu Preethi Banthu and last: File:OutrunOnline.jpg -[2018-02-13T00:34:22.955] [INFO] cheese - inserting 1000 documents. first: Litleo and last: AUTOFAIL (CONFIG.SYS directive) -[2018-02-13T00:34:22.968] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:22.984] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:34:23.004] [INFO] cheese - inserting 1000 documents. first: The Via Latina tombs in Rome and last: National Heritage Museum (Lexington, Mass.) -[2018-02-13T00:34:23.017] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Pan-African Parliament from the Central African Republic and last: Sandy Lam (album) -[2018-02-13T00:34:23.019] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:34:23.045] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:34:23.095] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Connerdn and last: Daya Rajasinghe -[2018-02-13T00:34:23.118] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:23.136] [INFO] cheese - batch complete in: 2.001 secs -[2018-02-13T00:34:23.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flying Pokémon and last: Eleazar Wheelock -[2018-02-13T00:34:23.345] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:34:23.356] [INFO] cheese - inserting 1000 documents. first: File:Defendor poster.jpg and last: Aeis -[2018-02-13T00:34:23.415] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:23.433] [INFO] cheese - inserting 1000 documents. first: Category:Basquet Manresa basketball players and last: Category:FC Flora Tallinn players -[2018-02-13T00:34:23.464] [INFO] cheese - inserting 1000 documents. first: BASEDEV (CONFIG.SYS directive) and last: Fujin, Heilongjiang -[2018-02-13T00:34:23.483] [INFO] cheese - inserting 1000 documents. first: The Versatile Burl Ives! (album) and last: Clarence A. Manning -[2018-02-13T00:34:23.486] [INFO] cheese - inserting 1000 documents. first: 22739 Sikhote-Alin and last: Preston Thorgrimson Shidler Gates & Ellis -[2018-02-13T00:34:23.496] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:34:23.539] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:34:23.569] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:23.583] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:34:23.813] [INFO] cheese - inserting 1000 documents. first: Imprinted stamp and last: Wikipedia:Articles for deletion/Chiara Glorioso -[2018-02-13T00:34:23.857] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:34:23.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/BeaveRun Motorsports Complex and last: Villanueva de Alcardete, Spain -[2018-02-13T00:34:23.891] [INFO] cheese - inserting 1000 documents. first: File:FC Dynamo Moscow crest.png and last: Category:Women in Shahnameh -[2018-02-13T00:34:23.927] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:34:23.936] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:34:24.043] [INFO] cheese - inserting 1000 documents. first: File:Fatafehi Tuʻipelehake.jpg and last: Polynucleobacter difficilis -[2018-02-13T00:34:24.060] [INFO] cheese - inserting 1000 documents. first: Good glaux and last: Sailing to Byzantium -[2018-02-13T00:34:24.134] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:34:24.184] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:34:24.188] [INFO] cheese - inserting 1000 documents. first: Modedit and last: Girolamo Segato -[2018-02-13T00:34:24.318] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:34:24.454] [INFO] cheese - inserting 1000 documents. first: Template:Fukushima-railstation-stub and last: Dolphin-friendly -[2018-02-13T00:34:24.502] [INFO] cheese - inserting 1000 documents. first: Pseudo-homosexuality and last: Clarinet Concerto (Mozart) -[2018-02-13T00:34:24.559] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:34:24.568] [INFO] cheese - inserting 1000 documents. first: File:Maintenance Crest.jpg and last: File:PureReasonRevolution AmorVincitOmnia.jpg -[2018-02-13T00:34:24.598] [INFO] cheese - inserting 1000 documents. first: HM Prison North Wales and last: Wikipedia:Syracuse University -[2018-02-13T00:34:24.655] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:34:24.672] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:34:24.676] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T00:34:24.806] [INFO] cheese - inserting 1000 documents. first: Ernest Bethel and last: Winters-Ballinger Eagles -[2018-02-13T00:34:24.883] [INFO] cheese - inserting 1000 documents. first: Acarus putrescentiae and last: Claw toe -[2018-02-13T00:34:24.920] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:34:24.924] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Log/2006 April 13 and last: When 6021 Met 4267 -[2018-02-13T00:34:24.962] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:34:24.982] [INFO] cheese - inserting 1000 documents. first: Dolphin by-catch and last: 16th Amendment U.S. -[2018-02-13T00:34:25.035] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:34:25.052] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:34:25.185] [INFO] cheese - inserting 1000 documents. first: Oakland-Jack London Square station and last: The Not So Secret Life of the Manic Depressive -[2018-02-13T00:34:25.213] [INFO] cheese - inserting 1000 documents. first: Category:Gorilla Biscuits albums and last: Wikipedia:Good article reassessment/Andrés Nocioni/1 -[2018-02-13T00:34:25.228] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:34:25.306] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:34:25.435] [INFO] cheese - inserting 1000 documents. first: Khalifeh, Kermanshah and last: Ab Barik-e Sofla, Kermanshah -[2018-02-13T00:34:25.466] [INFO] cheese - inserting 1000 documents. first: Magaz de Pisuerga and last: Mahamud, Burgos -[2018-02-13T00:34:25.486] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:34:25.506] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:25.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/compositesw.com and last: Al Arabi Qatar -[2018-02-13T00:34:25.649] [INFO] cheese - inserting 1000 documents. first: Pearl harbor bombings and last: 81st Congress -[2018-02-13T00:34:25.691] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:34:25.700] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:34:25.754] [INFO] cheese - inserting 1000 documents. first: Lobe of pituitary gland and last: Ahmad, Mushtaq -[2018-02-13T00:34:25.793] [INFO] cheese - inserting 1000 documents. first: Company of Snakes and last: Sandra McDonald -[2018-02-13T00:34:25.803] [INFO] cheese - inserting 1000 documents. first: The Mountain School and last: Agua Dulce, California -[2018-02-13T00:34:25.815] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:34:25.838] [INFO] cheese - inserting 1000 documents. first: Mahamud, Spain and last: Wikipedia:WikiProject Spam/LinkReports/sportal.siol.net -[2018-02-13T00:34:25.891] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:34:25.895] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T00:34:25.899] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:34:25.977] [INFO] cheese - inserting 1000 documents. first: Cayetano Bonnín Vasqúez and last: St. Joseph's Church, Semarang -[2018-02-13T00:34:26.018] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:26.140] [INFO] cheese - inserting 1000 documents. first: Al Arabi Doha and last: Portal:Fictional characters/Comics/2 -[2018-02-13T00:34:26.187] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:34:26.202] [INFO] cheese - inserting 1000 documents. first: Ahmad, Zainal Abidin and last: Category:Albanian Salafis -[2018-02-13T00:34:26.205] [INFO] cheese - inserting 1000 documents. first: Category:Transport in Trinidad and Tobago and last: Category:Canadian blues musicians by instrument -[2018-02-13T00:34:26.229] [INFO] cheese - inserting 1000 documents. first: MS Kronprins Harald and last: Cêgnê -[2018-02-13T00:34:26.239] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:26.247] [INFO] cheese - inserting 1000 documents. first: Bates's Case and last: Defense Cyber Investigations Training Academy -[2018-02-13T00:34:26.268] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:34:26.283] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:26.312] [INFO] cheese - inserting 1000 documents. first: Ingold I of Sweden and last: Subnational entities of Belgium -[2018-02-13T00:34:26.315] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:34:26.365] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:26.479] [INFO] cheese - inserting 1000 documents. first: History of slavery in Illinois and last: People who have lived at airports -[2018-02-13T00:34:26.500] [INFO] cheese - inserting 1000 documents. first: Template:NXEA color and last: Ilovu -[2018-02-13T00:34:26.541] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:34:26.551] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:26.575] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2016-02-19 and last: SK Pardubice -[2018-02-13T00:34:26.616] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:34:26.692] [INFO] cheese - inserting 1000 documents. first: Defense Computer Forensics Lab and last: Wikipedia:Articles for deletion/RadCon -[2018-02-13T00:34:26.701] [INFO] cheese - inserting 1000 documents. first: Lake Traful and last: 6th GayVN Awards -[2018-02-13T00:34:26.715] [INFO] cheese - inserting 1000 documents. first: Victor Manuel Baute and last: Dharmic tradition -[2018-02-13T00:34:26.725] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:34:26.755] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:34:26.774] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:34:26.871] [INFO] cheese - inserting 1000 documents. first: Lord Llandaff and last: Category:Pangolins -[2018-02-13T00:34:26.889] [INFO] cheese - inserting 1000 documents. first: Environmental Dispute Resolution Fund and last: List of moths of Equatorial Guinea -[2018-02-13T00:34:26.924] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:26.976] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:34:27.022] [INFO] cheese - inserting 1000 documents. first: Category:Technical universities and colleges in Germany and last: Template:User WP Ricciardo -[2018-02-13T00:34:27.106] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:34:27.153] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1968 Summer Olympics – Men's decathlon and last: Baraboi, Dondușeni -[2018-02-13T00:34:27.172] [INFO] cheese - inserting 1000 documents. first: Us sailing and last: Monterde de Albarracín, Teruel -[2018-02-13T00:34:27.209] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:27.266] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:34:27.281] [INFO] cheese - inserting 1000 documents. first: Mimika Air Flight 514 and last: Wikipedia:Articles for deletion/Alta Mira -[2018-02-13T00:34:27.303] [INFO] cheese - inserting 1000 documents. first: Carlos Hall and last: Live Phish Volume 19 -[2018-02-13T00:34:27.331] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:34:27.362] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:34:27.432] [INFO] cheese - inserting 1000 documents. first: File:20 Odd Years cover.jpg and last: File:TheFoldingStar.jpg -[2018-02-13T00:34:27.464] [INFO] cheese - inserting 1000 documents. first: Template:User WP Hülkenberg and last: Template:DSCG -[2018-02-13T00:34:27.468] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:27.491] [INFO] cheese - inserting 1000 documents. first: Monterde de Albarracín, Spain and last: Wikipedia:Articles for deletion/Call Me Lightning -[2018-02-13T00:34:27.493] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:34:27.560] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:34:27.652] [INFO] cheese - inserting 1000 documents. first: Trevor Dunn and last: The Whiffenpoof Song -[2018-02-13T00:34:27.675] [INFO] cheese - inserting 1000 documents. first: Zen Buddhist Enlightenment and last: Why Does the Sun Shine? (The Sun Is a Mass of Incandescent Gas) -[2018-02-13T00:34:27.682] [INFO] cheese - inserting 1000 documents. first: Clarke Mills and last: Falsterbo Coast guard Crash -[2018-02-13T00:34:27.714] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:34:27.727] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:27.733] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:34:27.738] [INFO] cheese - inserting 1000 documents. first: West Florida Parishes and last: Category:1850 in British sport -[2018-02-13T00:34:27.791] [INFO] cheese - inserting 1000 documents. first: Portal:United States Marine Corps/quote/2011April and last: ARCHON -[2018-02-13T00:34:27.807] [INFO] cheese - inserting 1000 documents. first: Matej Hradecky and last: Corky ironbark -[2018-02-13T00:34:27.813] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:34:27.829] [INFO] cheese - inserting 1000 documents. first: Urriés, Zaragoza and last: Santiuste, Spain -[2018-02-13T00:34:27.831] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:34:27.845] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:34:27.863] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:34:28.110] [INFO] cheese - inserting 1000 documents. first: Sayatón and last: Aldealengua de Pedraza, Spain -[2018-02-13T00:34:28.123] [INFO] cheese - inserting 1000 documents. first: Lowell Junction and last: Xyletobius aleuritis -[2018-02-13T00:34:28.132] [INFO] cheese - inserting 1000 documents. first: David Bunnell and last: Virashaiva -[2018-02-13T00:34:28.132] [INFO] cheese - inserting 1000 documents. first: Tumbledown ironbark and last: Girolamo Sordo -[2018-02-13T00:34:28.134] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:34:28.173] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:28.179] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:34:28.184] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:28.218] [INFO] cheese - inserting 1000 documents. first: 2007/08 Ystalyfera RFC season and last: Aïchour -[2018-02-13T00:34:28.264] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:28.363] [INFO] cheese - inserting 1000 documents. first: Aldealengua de Santa María, Segovia and last: San Felices, Soria -[2018-02-13T00:34:28.383] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:34:28.452] [INFO] cheese - inserting 1000 documents. first: Xyletobius ashmeadi and last: File:Boom Boom Pow - Screenshot.jpg -[2018-02-13T00:34:28.456] [INFO] cheese - inserting 1000 documents. first: Spam (computing) and last: Category:Speed skating venues in the United States -[2018-02-13T00:34:28.457] [INFO] cheese - inserting 1000 documents. first: Gabon at the 2004 Summer Olympics and last: Marlene Ahrens -[2018-02-13T00:34:28.489] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:34:28.515] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:34:28.529] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:34:28.638] [INFO] cheese - inserting 1000 documents. first: List of Filipino films of 2016 and last: Draft:Pomorska Street in Bydgoszcz -[2018-02-13T00:34:28.651] [INFO] cheese - inserting 1000 documents. first: NCAA Division I Women's Lacrosse Championship and last: Átame! -[2018-02-13T00:34:28.670] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:34:28.693] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:34:28.702] [INFO] cheese - inserting 1000 documents. first: San Felices, Spain and last: Urueña -[2018-02-13T00:34:28.725] [INFO] cheese - inserting 1000 documents. first: Gloeostereum and last: Wikipedia:WikiProject Spam/LinkReports/vrnjacka-banja.com -[2018-02-13T00:34:28.735] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:34:28.747] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:34:28.785] [INFO] cheese - inserting 1000 documents. first: Legbrace fascination and last: Tjänstemannacentralorganisationen -[2018-02-13T00:34:28.803] [INFO] cheese - inserting 1000 documents. first: Zamorin - Palakkad War and last: Dromotectum -[2018-02-13T00:34:28.834] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:34:28.836] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:34:29.040] [INFO] cheese - inserting 1000 documents. first: Jarod Miller and last: Melchior Borchgrevinck -[2018-02-13T00:34:29.051] [INFO] cheese - inserting 1000 documents. first: Carl Heinrich Hagen and last: Wikipedia:Sockpuppet investigations/Mattsabe/Archive -[2018-02-13T00:34:29.074] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:34:29.084] [INFO] cheese - inserting 1000 documents. first: Urueña, Valladolid and last: Gafsa, Tunisia -[2018-02-13T00:34:29.096] [INFO] cheese - inserting 1000 documents. first: Podillia Upland and last: NIAW -[2018-02-13T00:34:29.103] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:29.137] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:34:29.157] [INFO] cheese - inserting 1000 documents. first: Akaka Falls State Park and last: Elections in Latvia -[2018-02-13T00:34:29.166] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:34:29.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Battle of Ghadames and last: Portal:Women's sport/Birthdays/June 23 -[2018-02-13T00:34:29.240] [INFO] cheese - inserting 1000 documents. first: Abani Bari Achho and last: St Mary's Church, Battersea -[2018-02-13T00:34:29.247] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:34:29.296] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:34:29.308] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:29.434] [INFO] cheese - inserting 1000 documents. first: 1993 IMSA GT Championship season and last: Lichenaula musica -[2018-02-13T00:34:29.470] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:34:29.562] [INFO] cheese - inserting 1000 documents. first: Hans Brachrogge and last: HealthRight International -[2018-02-13T00:34:29.686] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:34:29.760] [INFO] cheese - inserting 1000 documents. first: 2016 Philippine elections debates and last: Issac Crewdson -[2018-02-13T00:34:29.786] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:34:29.842] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Franklin County, Washington and last: Doe Boyland -[2018-02-13T00:34:29.845] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Rudolf Ising and last: Woman of Distinction Awards -[2018-02-13T00:34:29.858] [INFO] cheese - inserting 1000 documents. first: Assam New Year Day and last: Template:Infobox Law and Order character -[2018-02-13T00:34:29.907] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:34:29.909] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:34:29.915] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:34:29.987] [INFO] cheese - inserting 1000 documents. first: Turner Classic Movies and last: Olympic Tennis Centre (Athens) -[2018-02-13T00:34:30.012] [INFO] cheese - inserting 1000 documents. first: Issac Delahaye and last: List of Belgian women artists -[2018-02-13T00:34:30.021] [INFO] cheese - inserting 1000 documents. first: Sven Dufva and last: FC Admira Wacker Mödling Amateure -[2018-02-13T00:34:30.037] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:34:30.039] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:34:30.061] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:34:30.297] [INFO] cheese - inserting 1000 documents. first: Women of Distinction and last: Tokitsuyama -[2018-02-13T00:34:30.309] [INFO] cheese - inserting 1000 documents. first: Francis H. Case and last: Invasion Of The Body Squeezers: Part Two -[2018-02-13T00:34:30.312] [INFO] cheese - inserting 1000 documents. first: Rumah Nyumbang and last: WN812 -[2018-02-13T00:34:30.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/National Museum of Natural History (France) and last: Llibre de les dones -[2018-02-13T00:34:30.348] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:34:30.349] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:30.377] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:34:30.386] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:34:30.394] [INFO] cheese - inserting 1000 documents. first: Brannan Springs, California and last: Aymaq -[2018-02-13T00:34:30.420] [INFO] cheese - inserting 1000 documents. first: George VI of Imereti and last: File:Truechurchmen2.jpg -[2018-02-13T00:34:30.438] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:34:30.586] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T00:34:30.758] [INFO] cheese - inserting 1000 documents. first: Nikos Kaklamanakis and last: Wikipedia:Articles for deletion/Bingle -[2018-02-13T00:34:30.777] [INFO] cheese - inserting 1000 documents. first: Aymak and last: Let's Face the Music! -[2018-02-13T00:34:30.800] [INFO] cheese - inserting 1000 documents. first: Tokitsuyama Jinichi and last: Robert Dobkin -[2018-02-13T00:34:30.818] [INFO] cheese - inserting 1000 documents. first: Joeun Food and last: Statira -[2018-02-13T00:34:30.828] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:34:30.836] [INFO] cheese - inserting 1000 documents. first: Oscar Rolando Hernández and last: Wikipedia:WikiProject Spam/LinkReports/wholesaleeshop.com.au -[2018-02-13T00:34:30.836] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:34:30.896] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:34:30.930] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:34:31.021] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Women in Red/5/invitation and last: Lin Shin-yi -[2018-02-13T00:34:31.028] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:34:31.204] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:34:31.259] [INFO] cheese - inserting 1000 documents. first: Purbeck District Council election, 2004 and last: Mont-Joli, QC -[2018-02-13T00:34:31.299] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:34:31.417] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sportetcitoyennete.com and last: U.S. Post Office-Springville Main -[2018-02-13T00:34:31.434] [INFO] cheese - inserting 1000 documents. first: Edward Burton (footballer) and last: Blades of Vengeance -[2018-02-13T00:34:31.460] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:34:31.501] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:34:31.530] [INFO] cheese - inserting 1000 documents. first: Category:1946 in Moyen-Congo and last: Wikipedia:Online Ambassadors/Apply/sudheendrac -[2018-02-13T00:34:31.572] [INFO] cheese - inserting 1000 documents. first: Flakstadelva and last: Bolsa de Valores de Nicaragua -[2018-02-13T00:34:31.593] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:34:31.640] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:34:31.702] [INFO] cheese - inserting 1000 documents. first: Rocky and bullwinkle and last: Seattle seawall -[2018-02-13T00:34:31.759] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:34:31.763] [INFO] cheese - inserting 1000 documents. first: Tamaulipan mezquital and last: Gausbert de Poicibot -[2018-02-13T00:34:31.819] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:31.825] [INFO] cheese - inserting 1000 documents. first: U.S. Post Office-Visalia Town Center Station and last: Chandgana coal mine -[2018-02-13T00:34:31.850] [INFO] cheese - inserting 1000 documents. first: Wu Rong-yi and last: Gudur–Renigunta section -[2018-02-13T00:34:31.874] [INFO] cheese - inserting 1000 documents. first: Mridula Koshy and last: Wikipedia:WikiProject Spam/LinkReports/renandstimpyepisodes.com -[2018-02-13T00:34:31.878] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:34:31.908] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:34:31.922] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:34:31.952] [INFO] cheese - inserting 1000 documents. first: Radwimps 4 ~Okazu no Gohan~ and last: Year of the Dragon (play) -[2018-02-13T00:34:31.989] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:32.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Keith Middleton and last: File:Tgot1.jpg -[2018-02-13T00:34:32.135] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:34:32.292] [INFO] cheese - inserting 1000 documents. first: File:Gmis.hdr.logo.png and last: Кхъу -[2018-02-13T00:34:32.305] [INFO] cheese - inserting 1000 documents. first: Masked (The Secret Circle) and last: Wikipedia:User Advocacy/post it -[2018-02-13T00:34:32.335] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:34:32.345] [INFO] cheese - inserting 1000 documents. first: Siai-Marchetti Warrior and last: Wikipedia:Articles for deletion/Maitrayaniya Upanishad -[2018-02-13T00:34:32.359] [INFO] cheese - inserting 1000 documents. first: Kokila (film) and last: Category:Railway stations in Nijmegen -[2018-02-13T00:34:32.362] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:34:32.397] [INFO] cheese - inserting 1000 documents. first: Year of the Dragon (1975 film) and last: Stanley Russell -[2018-02-13T00:34:32.405] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:34:32.431] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:34:32.462] [INFO] cheese - inserting 1000 documents. first: Gausbert de Puicibot and last: Criminal by passion -[2018-02-13T00:34:32.474] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:32.572] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:34:32.649] [INFO] cheese - inserting 1000 documents. first: County Councillor and last: Brian Skrudland -[2018-02-13T00:34:32.699] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:34:32.812] [INFO] cheese - inserting 1000 documents. first: Life and Stuff and last: Metrodiol -[2018-02-13T00:34:32.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/7 Seconds: A Typical Teenager, Atypical Life and last: Right colic arteries -[2018-02-13T00:34:32.816] [INFO] cheese - inserting 1000 documents. first: Giant Warty Squid and last: Star 104.5 -[2018-02-13T00:34:32.858] [INFO] cheese - inserting 1000 documents. first: Habeck and last: Juan Sanchez (artist) -[2018-02-13T00:34:32.867] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:34:32.877] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:32.891] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:34:32.945] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:34:33.022] [INFO] cheese - inserting 1000 documents. first: Category:Critics and last: Teletext Limited -[2018-02-13T00:34:33.027] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Owen Kratz and last: Wikipedia:Articles for deletion/TBA (Christina Stürmer) -[2018-02-13T00:34:33.065] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:33.080] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:34:33.081] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/wholesale07.com and last: Zudan -[2018-02-13T00:34:33.108] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:34:33.203] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Asian Games articles and last: Hornsea Bridge -[2018-02-13T00:34:33.234] [INFO] cheese - inserting 1000 documents. first: Palais des Sports de Beaublanc and last: Macular sparing -[2018-02-13T00:34:33.234] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:34:33.248] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samuel Isaias Lora and last: Scholesy -[2018-02-13T00:34:33.315] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:34:33.332] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:34:33.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CHILDRENSLIT and last: Category:Non-English-language newspapers published in Pennsylvania -[2018-02-13T00:34:33.456] [INFO] cheese - inserting 1000 documents. first: Antapentan and last: Brooks Free Library -[2018-02-13T00:34:33.474] [INFO] cheese - inserting 1000 documents. first: List of University of Tennessee notable people and last: Roman Catholic Diocese of Popokabaka -[2018-02-13T00:34:33.514] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:33.529] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:34:33.552] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:34:33.827] [INFO] cheese - inserting 1000 documents. first: Tarantella, Incorporated and last: Wicked Witch of the East -[2018-02-13T00:34:33.930] [INFO] cheese - inserting 1000 documents. first: Nanobiotix and last: Viopsicol -[2018-02-13T00:34:33.930] [INFO] cheese - inserting 1000 documents. first: Berresse and last: Hello Kitty (Girls) -[2018-02-13T00:34:33.940] [INFO] cheese - inserting 1000 documents. first: The Krewe Of BOO and last: Asteromassaria -[2018-02-13T00:34:33.963] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:34:33.966] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:34:33.972] [INFO] cheese - inserting 1000 documents. first: One Romantic Night and last: St Cuthberts Way -[2018-02-13T00:34:33.981] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:34:34.038] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:34:34.071] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:34:34.133] [INFO] cheese - inserting 1000 documents. first: Cafe de Colombia (cycling team) and last: Kellom Elementary School -[2018-02-13T00:34:34.196] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:34:34.249] [INFO] cheese - inserting 1000 documents. first: Azucaps and last: Dowflake -[2018-02-13T00:34:34.278] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:34:34.310] [INFO] cheese - inserting 1000 documents. first: Jakub Vojta (ice hockey) and last: Ravalle Quinn -[2018-02-13T00:34:34.367] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:34:34.419] [INFO] cheese - inserting 1000 documents. first: Homeward Bound (Girls) and last: Kendall and Kylie -[2018-02-13T00:34:34.466] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:34.555] [INFO] cheese - inserting 1000 documents. first: Category:Tasmanian languages and last: St joseph's high school patna -[2018-02-13T00:34:34.557] [INFO] cheese - inserting 1000 documents. first: Supermarkets in Poland and last: April 2099 lunar eclipse -[2018-02-13T00:34:34.592] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:34:34.616] [INFO] cheese - inserting 1000 documents. first: Conductive yarn and last: Highway 8 (Saskatchewan) -[2018-02-13T00:34:34.632] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:34:34.657] [INFO] cheese - inserting 1000 documents. first: List of The Simpsons episodes (Season 11) and last: Orquesta Nacional de Espana -[2018-02-13T00:34:34.710] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:34:34.755] [INFO] cheese - inserting 1000 documents. first: B.H. Roberts and last: Category:1936 in sports -[2018-02-13T00:34:34.770] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:34:34.851] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:34:34.882] [INFO] cheese - inserting 1000 documents. first: María Concepción de la Natividad y el Perpetuo Socorro de María and last: David Zwingerman -[2018-02-13T00:34:34.889] [INFO] cheese - inserting 1000 documents. first: Gewacalm and last: Zantryl -[2018-02-13T00:34:34.925] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:34:34.932] [INFO] cheese - inserting 1000 documents. first: St Clair, South Australia and last: Template:Did you know nominations/Yves Gaucher (artist) -[2018-02-13T00:34:34.949] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:34:35.008] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:34:35.087] [INFO] cheese - inserting 1000 documents. first: Staging (data) and last: Tam media research -[2018-02-13T00:34:35.135] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:34:35.140] [INFO] cheese - inserting 1000 documents. first: Counterstrike (drum & bass group) and last: Kaon Ultra -[2018-02-13T00:34:35.157] [INFO] cheese - inserting 1000 documents. first: Highway 49 (Saskatchewan) and last: Munderic of Arisitum -[2018-02-13T00:34:35.173] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:34:35.213] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:34:35.226] [INFO] cheese - inserting 1000 documents. first: Orquesta nacional de espana and last: Anzoátegui (disambiguation) -[2018-02-13T00:34:35.276] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:34:35.333] [INFO] cheese - inserting 1000 documents. first: Divers Alert Network Asia-Pacific and last: Silvio Garattini -[2018-02-13T00:34:35.377] [INFO] cheese - inserting 1000 documents. first: Kaon-Cl and last: Neutraphyllin -[2018-02-13T00:34:35.380] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:35.427] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:34:35.440] [INFO] cheese - inserting 1000 documents. first: Third Reich and Roll and last: Timeline of liberal and democratic parties in New Zealand -[2018-02-13T00:34:35.491] [INFO] cheese - inserting 1000 documents. first: Family temple and last: Riwandi Wahit -[2018-02-13T00:34:35.499] [INFO] cheese - inserting 1000 documents. first: List of songs by A Day to Remember and last: Template:POTD protected/2013-07-10 -[2018-02-13T00:34:35.498] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:34:35.557] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:34:35.559] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:34:35.613] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Bannock County, Idaho and last: Eferon -[2018-02-13T00:34:35.653] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:34:35.691] [INFO] cheese - inserting 1000 documents. first: Walter Augustus Drake and last: DuPont Fabros Technology -[2018-02-13T00:34:35.698] [INFO] cheese - inserting 1000 documents. first: François René and last: Nieuwland -[2018-02-13T00:34:35.718] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:34:35.728] [INFO] cheese - inserting 1000 documents. first: Gabriela E. Medina and last: Caborn-Welborn -[2018-02-13T00:34:35.754] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:34:35.793] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:34:35.839] [INFO] cheese - inserting 1000 documents. first: Epheron and last: Baeyer-Villiger -[2018-02-13T00:34:35.840] [INFO] cheese - inserting 1000 documents. first: Category:DOS games and last: Category:757 -[2018-02-13T00:34:35.856] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:34:35.874] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:34:35.912] [INFO] cheese - inserting 1000 documents. first: Aeromonas salmonicida and last: Callahan Museum of the American Printing House for the Blind -[2018-02-13T00:34:35.963] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:35.995] [INFO] cheese - inserting 1000 documents. first: File:Women's Media Centre of Cambodia.png and last: Prophylux -[2018-02-13T00:34:36.012] [INFO] cheese - batch complete in: 0.156 secs -[2018-02-13T00:34:36.054] [INFO] cheese - inserting 1000 documents. first: Bulanda and last: File:Meenda Sorgam poster.jpg -[2018-02-13T00:34:36.089] [INFO] cheese - inserting 1000 documents. first: Template:Footer Olympic Champions 3000 m Steeplechase Men and last: Category:1614 -[2018-02-13T00:34:36.112] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:34:36.134] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:34:36.136] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 728 and last: Novas (surname) -[2018-02-13T00:34:36.183] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:34:36.205] [INFO] cheese - inserting 1000 documents. first: Royal carribean and last: Omukama -[2018-02-13T00:34:36.249] [INFO] cheese - inserting 1000 documents. first: Propranur and last: Fascol -[2018-02-13T00:34:36.265] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:34:36.274] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:34:36.319] [INFO] cheese - inserting 1000 documents. first: Florent Rouamba and last: Monadnock Railroad -[2018-02-13T00:34:36.346] [INFO] cheese - inserting 1000 documents. first: The Pest (1922 film) and last: Shield (comics) -[2018-02-13T00:34:36.355] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:34:36.374] [INFO] cheese - inserting 1000 documents. first: Draft:Gianni Berengo Gardin and last: Boone, William -[2018-02-13T00:34:36.396] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:34:36.398] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:34:36.454] [INFO] cheese - inserting 1000 documents. first: Theretra boisduvali and last: Kessar -[2018-02-13T00:34:36.478] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:34:36.550] [INFO] cheese - inserting 1000 documents. first: Template:2011–2012 News Corporation scandal and last: Lirab, Basht -[2018-02-13T00:34:36.589] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:36.634] [INFO] cheese - inserting 1000 documents. first: Min Tid Skal Komme and last: Wikipedia:Requests for mediation/Merging of self-consciousness and self-awareness -[2018-02-13T00:34:36.649] [INFO] cheese - inserting 1000 documents. first: Category:1615 and last: Wikipedia:Votes for deletion/Ba'thist regime -[2018-02-13T00:34:36.668] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:34:36.682] [INFO] cheese - inserting 1000 documents. first: Noltam and last: Pantrop -[2018-02-13T00:34:36.686] [INFO] cheese - inserting 1000 documents. first: Boothby, William and last: Category:1981 in Northern Cyprus -[2018-02-13T00:34:36.692] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:34:36.708] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:34:36.727] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:34:36.745] [INFO] cheese - inserting 1000 documents. first: Hathaways Mountain Pines and last: File:Mason Jennings How Deep Is That River EP Cover.jpg -[2018-02-13T00:34:36.795] [INFO] cheese - inserting 1000 documents. first: Yemeni Arabic dialects and last: PG-58 -[2018-02-13T00:34:36.803] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:34:36.847] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:34:36.861] [INFO] cheese - inserting 1000 documents. first: File:Peter Francis.png and last: Baba Kelu -[2018-02-13T00:34:36.903] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:34:36.941] [INFO] cheese - inserting 1000 documents. first: Roger Mortimer, Baron of Chirk and last: Communities in the Minneapolis / St. Paul Metro area -[2018-02-13T00:34:36.960] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:34:37.072] [INFO] cheese - inserting 1000 documents. first: File:Percussion.png and last: 2006 Champ Car season -[2018-02-13T00:34:37.073] [INFO] cheese - inserting 1000 documents. first: Category:1989 in Northern Cyprus and last: Pacífico (Madrid) -[2018-02-13T00:34:37.115] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:34:37.207] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:34:37.242] [INFO] cheese - inserting 1000 documents. first: Puberty (Munch painting) and last: Bulletin of Engineering Geology and the Environment -[2018-02-13T00:34:37.248] [INFO] cheese - inserting 1000 documents. first: Aso Station and last: Grand'Mère, Quebec -[2018-02-13T00:34:37.334] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:37.349] [INFO] cheese - inserting 1000 documents. first: University Avenue (Minneapolis-St. Paul) and last: Denyl -[2018-02-13T00:34:37.379] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:34:37.405] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:37.432] [INFO] cheese - inserting 1000 documents. first: Baba-ye Kalan and last: Akaruye -[2018-02-13T00:34:37.487] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:34:37.577] [INFO] cheese - inserting 1000 documents. first: Zagreb University and last: Boston Harbor Islands National Recreation Area -[2018-02-13T00:34:37.615] [INFO] cheese - inserting 1000 documents. first: Di-Hydan and last: Phenaphen Caplets -[2018-02-13T00:34:37.694] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:34:37.696] [INFO] cheese - inserting 1000 documents. first: Les Pepees Font la Loi and last: Ask Italian -[2018-02-13T00:34:37.702] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T00:34:37.792] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:34:37.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/impressnow.com and last: Cesatiella -[2018-02-13T00:34:37.847] [INFO] cheese - inserting 1000 documents. first: Meningeal coverings and last: Curved Bar -[2018-02-13T00:34:37.885] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:34:37.912] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:34:37.914] [INFO] cheese - inserting 1000 documents. first: Phendon and last: University of Trás-os-Montes & Alto Douro -[2018-02-13T00:34:37.936] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:34:38.016] [INFO] cheese - inserting 1000 documents. first: C. C. Capwell and last: Hakone-juku -[2018-02-13T00:34:38.074] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:34:38.106] [INFO] cheese - inserting 1000 documents. first: Akasheh and last: File:Saw II poster.jpg -[2018-02-13T00:34:38.108] [INFO] cheese - inserting 1000 documents. first: Category:Songs with lyrics by Dario Fo and last: Rhysling (crater) -[2018-02-13T00:34:38.116] [INFO] cheese - inserting 1000 documents. first: Template:NRHP in Muskingum County, Ohio and last: Microsul -[2018-02-13T00:34:38.140] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:34:38.157] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:38.165] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:34:38.247] [INFO] cheese - inserting 1000 documents. first: Charonectria and last: Category:Esbjerg -[2018-02-13T00:34:38.288] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:34:38.308] [INFO] cheese - inserting 1000 documents. first: William Wentworth Fitzwilliam and last: Irakli (Prince) -[2018-02-13T00:34:38.330] [INFO] cheese - inserting 1000 documents. first: Renasul and last: Fenetazina -[2018-02-13T00:34:38.346] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:34:38.351] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:34:38.454] [INFO] cheese - inserting 1000 documents. first: Charles A. Alluaud and last: Paul J. Smith -[2018-02-13T00:34:38.455] [INFO] cheese - inserting 1000 documents. first: Wautoma and last: 57-cell -[2018-02-13T00:34:38.464] [INFO] cheese - inserting 1000 documents. first: C. M. Anglo Bengali Inter College and last: 2015–16 USC Upstate Spartans women's basketball team -[2018-02-13T00:34:38.492] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:34:38.497] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:38.512] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:34:38.575] [INFO] cheese - inserting 1000 documents. first: DGIST and last: Cecilie Breil Kramer -[2018-02-13T00:34:38.610] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:38.645] [INFO] cheese - inserting 1000 documents. first: Onda Cero and last: Walking seal -[2018-02-13T00:34:38.658] [INFO] cheese - inserting 1000 documents. first: Genphen and last: Borja Ekiza -[2018-02-13T00:34:38.689] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:34:38.697] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:34:38.752] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wenborn and last: Laila Mehdin -[2018-02-13T00:34:38.756] [INFO] cheese - inserting 1000 documents. first: Hinckley and Bosworth Council election 1995 and last: Bertrand, Louis, Saint -[2018-02-13T00:34:38.781] [INFO] cheese - inserting 1000 documents. first: Mehdia (disambiguation) and last: Alternate IPA symbol -[2018-02-13T00:34:38.788] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:34:38.816] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:34:38.821] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:34:39.045] [INFO] cheese - inserting 1000 documents. first: Frederick Craven and last: Babuijore Dharani Dhar High School (H.S) -[2018-02-13T00:34:39.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kohl's Plaza (Colonie, New York) and last: Balfour Williamson & Co. -[2018-02-13T00:34:39.130] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:34:39.180] [INFO] cheese - inserting 1000 documents. first: Projective special linear group and last: Bessacarr -[2018-02-13T00:34:39.200] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:34:39.229] [INFO] cheese - inserting 1000 documents. first: Too Close For Comfort (1956 song) and last: Sol de otoño -[2018-02-13T00:34:39.269] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:34:39.311] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:34:39.357] [INFO] cheese - inserting 1000 documents. first: Anomia simplex and last: Bayview-Montalvin Manor, California -[2018-02-13T00:34:39.409] [INFO] cheese - inserting 1000 documents. first: Robert L. Wilson and last: ONSLG -[2018-02-13T00:34:39.411] [INFO] cheese - inserting 1000 documents. first: Obsolete IPA symbol and last: Denis Howe (footballer) -[2018-02-13T00:34:39.433] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:34:39.468] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:34:39.494] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:34:39.560] [INFO] cheese - inserting 1000 documents. first: Epicranius muscle and last: Alejandro Aravena -[2018-02-13T00:34:39.609] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:34:39.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/AFC articles by quality/8 and last: Circumstances (rhetoric) -[2018-02-13T00:34:39.737] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:34:39.831] [INFO] cheese - inserting 1000 documents. first: Carriage Crossing and last: Taecanet -[2018-02-13T00:34:39.885] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:34:39.940] [INFO] cheese - inserting 1000 documents. first: Category:Works by Oliver Goldsmith and last: 1995–96 FIS Cross-Country World Cup -[2018-02-13T00:34:39.945] [INFO] cheese - inserting 1000 documents. first: Gerd Arntz and last: Christian Menn -[2018-02-13T00:34:39.949] [INFO] cheese - inserting 1000 documents. first: Shamballah and last: CIGI -[2018-02-13T00:34:39.961] [INFO] cheese - inserting 1000 documents. first: Angelina (singer) and last: Cheshmeh-ye Sib Deli Gerdu -[2018-02-13T00:34:39.992] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:39.993] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:34:40.013] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:34:40.057] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:34:40.084] [INFO] cheese - inserting 1000 documents. first: Category:Mining museums in the Czech Republic and last: Winona Rider -[2018-02-13T00:34:40.112] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:34:40.148] [INFO] cheese - inserting 1000 documents. first: 1985 TAAC Men's Basketball Tournament and last: Jon Rollason -[2018-02-13T00:34:40.201] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:34:40.268] [INFO] cheese - inserting 1000 documents. first: File:WintersKnight.jpg and last: Scheuder -[2018-02-13T00:34:40.302] [INFO] cheese - inserting 1000 documents. first: H. C. Enoses and last: Best Country Solo Performance -[2018-02-13T00:34:40.316] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:34:40.336] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:34:40.399] [INFO] cheese - inserting 1000 documents. first: List of United States presidential pets and last: Peyton House (Raymond, Mississippi) -[2018-02-13T00:34:40.411] [INFO] cheese - inserting 1000 documents. first: Cassie Mitchell and last: Template:R U -[2018-02-13T00:34:40.444] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:34:40.465] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:34:40.514] [INFO] cheese - inserting 1000 documents. first: Yuri Feodorovich Lisyansky and last: File:InvisibleLantern.jpg -[2018-02-13T00:34:40.568] [INFO] cheese - inserting 1000 documents. first: File:Colonel Bogey.ogg and last: C. Allen Foster -[2018-02-13T00:34:40.588] [INFO] cheese - inserting 1000 documents. first: Horslips and last: Vibrating structure gyroscope -[2018-02-13T00:34:40.585] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:34:40.620] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:40.665] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:34:40.723] [INFO] cheese - inserting 1000 documents. first: HMS Pylades (J401) and last: Frédéric Page -[2018-02-13T00:34:40.740] [INFO] cheese - inserting 1000 documents. first: Autogiro AC-35 and last: King Alfred School (disambiguation) -[2018-02-13T00:34:40.771] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:34:40.778] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:34:40.855] [INFO] cheese - inserting 1000 documents. first: White Point (Victoria), Nova Scotia and last: Portal:Fascism/DYK/4 -[2018-02-13T00:34:40.907] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:34:40.916] [INFO] cheese - inserting 1000 documents. first: Template:Redirect U and last: Daisuke Suzuki (actor) -[2018-02-13T00:34:40.958] [INFO] cheese - inserting 1000 documents. first: Abdulahad Malek and last: Shawn Chapman -[2018-02-13T00:34:41.003] [INFO] cheese - inserting 1000 documents. first: Cir process and last: Stolenwealth -[2018-02-13T00:34:41.029] [INFO] cheese - inserting 1000 documents. first: Kinzigtalbahn (disambiguation) and last: Santa Maria degli Scalzi (disambiguation) -[2018-02-13T00:34:41.033] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:34:41.043] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:41.050] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:34:41.108] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:34:41.193] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Macau articles and last: Chanakia, Greece -[2018-02-13T00:34:41.246] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:41.256] [INFO] cheese - inserting 1000 documents. first: List of Olympic medalists in swimming (men) and last: Irregular Galaxy M82 -[2018-02-13T00:34:41.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michel Marot and last: Wikipedia:Version 1.0 Editorial Team/Australia articles by quality/193 -[2018-02-13T00:34:41.295] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:34:41.324] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:34:41.338] [INFO] cheese - inserting 1000 documents. first: Kacchi Plain and last: Template:New Zealand Conservative Party/meta/color -[2018-02-13T00:34:41.380] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:34:41.388] [INFO] cheese - inserting 1000 documents. first: The Garden of Health and last: Dashwood, Robert -[2018-02-13T00:34:41.426] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:41.468] [INFO] cheese - inserting 1000 documents. first: Trans-Europe Express and last: Howard Groskloss -[2018-02-13T00:34:41.499] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Falling In Reverse (band) (2nd nomination) and last: Wikipedia:WikiProject Spam/LinkReports/thegolddiggerssupersite.com -[2018-02-13T00:34:41.513] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:34:41.547] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:34:41.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australia articles by quality/194 and last: Zorro-II -[2018-02-13T00:34:41.709] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:34:41.717] [INFO] cheese - inserting 1000 documents. first: 1963 Tulsa Golden Hurricane football team and last: My Ways -[2018-02-13T00:34:41.748] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:34:41.789] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Micko Larkin and last: Category:Arachnologists by nationality -[2018-02-13T00:34:41.832] [INFO] cheese - inserting 1000 documents. first: List of Williams College Bicentennial Winners and last: Julian Robert Hunte -[2018-02-13T00:34:41.839] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:41.844] [INFO] cheese - inserting 1000 documents. first: Template:Most traded currencies and last: Kathleen M. Carley -[2018-02-13T00:34:41.886] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:34:41.889] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:34:41.903] [INFO] cheese - inserting 1000 documents. first: Messier Object 82 and last: Lord's Day Act -[2018-02-13T00:34:41.942] [INFO] cheese - inserting 1000 documents. first: Category:Cemeteries and tombs in Rome and last: List of United States Supreme Court cases, volume 42 -[2018-02-13T00:34:41.952] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:34:41.987] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:34:42.033] [INFO] cheese - inserting 1000 documents. first: Polygamy in Niue and last: Hypoecta -[2018-02-13T00:34:42.086] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:34:42.125] [INFO] cheese - inserting 1000 documents. first: She (Zayn song) and last: Gino Birindelli -[2018-02-13T00:34:42.196] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:34:42.279] [INFO] cheese - inserting 1000 documents. first: Jessica Biel filmography and last: Helmholtz Institute Jena -[2018-02-13T00:34:42.331] [INFO] cheese - inserting 1000 documents. first: Foreign object (professional wrestling) and last: 3-q -[2018-02-13T00:34:42.341] [INFO] cheese - inserting 1000 documents. first: Richard Field (publisher) and last: Wikipedia:WikiProject Spam/LinkReports/maisoncheerup.pbwiki.com -[2018-02-13T00:34:42.349] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:34:42.424] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:34:42.427] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:34:42.438] [INFO] cheese - inserting 1000 documents. first: Idanophana and last: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/330 -[2018-02-13T00:34:42.486] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:34:42.563] [INFO] cheese - inserting 1000 documents. first: Kahramankazan and last: Amusement Parks USA -[2018-02-13T00:34:42.641] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:34:42.698] [INFO] cheese - inserting 1000 documents. first: Wrinkle ridge and last: Pauline Parker -[2018-02-13T00:34:42.781] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:34:42.848] [INFO] cheese - inserting 1000 documents. first: List of Space Brothers characters and last: St. Petersburg Academic Symphony Orchestra -[2018-02-13T00:34:42.869] [INFO] cheese - inserting 1000 documents. first: Thanatopsis (disambiguation) and last: Eurico -[2018-02-13T00:34:42.882] [INFO] cheese - inserting 1000 documents. first: Kiwa NV and last: Stensen ducts -[2018-02-13T00:34:42.902] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:34:42.908] [INFO] cheese - inserting 1000 documents. first: 2008 U.S. Open and last: Storyteller Café -[2018-02-13T00:34:42.933] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:34:42.938] [INFO] cheese - inserting 1000 documents. first: Empyelocera camillae and last: Category:Defunct ski areas and resorts in California -[2018-02-13T00:34:42.967] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:34:42.955] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:34:42.983] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:34:43.185] [INFO] cheese - inserting 1000 documents. first: File:Baby-Love-large.jpg and last: Millimetre wave -[2018-02-13T00:34:43.260] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:34:43.358] [INFO] cheese - inserting 1000 documents. first: Category:Kazakhstan national football team managers and last: Smith v Croft (No 2) -[2018-02-13T00:34:43.368] [INFO] cheese - inserting 1000 documents. first: Tayma Loren and last: Marguerite Carré -[2018-02-13T00:34:43.375] [INFO] cheese - inserting 1000 documents. first: List of National Titles and last: Hroðulf -[2018-02-13T00:34:43.387] [INFO] cheese - inserting 1000 documents. first: Merna Summers and last: 2009 H1N1 influenza -[2018-02-13T00:34:43.400] [INFO] cheese - inserting 1000 documents. first: Zhang Boxing and last: Wikipedia:Meetup/DC/Virtual -[2018-02-13T00:34:43.401] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:34:43.415] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:34:43.447] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:34:43.462] [INFO] cheese - inserting 1000 documents. first: Warcry (singer) and last: Simple magic square -[2018-02-13T00:34:43.471] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:34:43.486] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:34:43.530] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:34:43.682] [INFO] cheese - inserting 1000 documents. first: Sandon tornado and last: Iron(II) sulphate -[2018-02-13T00:34:43.742] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:34:43.796] [INFO] cheese - inserting 1000 documents. first: Patrick Wilson filmography and last: File:Battleship Sevastopol.jpg -[2018-02-13T00:34:43.821] [INFO] cheese - inserting 1000 documents. first: Cordia Tsoi Pop-Yee and last: Gulfstream U-4 -[2018-02-13T00:34:43.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:RFUD and last: Lewis Ballham -[2018-02-13T00:34:43.844] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:34:43.855] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:43.866] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:34:43.869] [INFO] cheese - inserting 1000 documents. first: Oebles-Schlechtewitz and last: Sharan Merriam -[2018-02-13T00:34:43.898] [INFO] cheese - inserting 1000 documents. first: Category:Discoveries by Yuri A. Belyaev and last: Subcutaneous tissue of the penis -[2018-02-13T00:34:43.912] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:44.030] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:34:44.205] [INFO] cheese - inserting 1000 documents. first: File:Star Fox Adventures GCN Screenshot.jpg and last: Lake Isabella -[2018-02-13T00:34:44.289] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:34:44.342] [INFO] cheese - inserting 1000 documents. first: Konkordiahutte and last: W. A. Sutton -[2018-02-13T00:34:44.351] [INFO] cheese - inserting 1000 documents. first: Joseph Lewis Ballham and last: Associated, California -[2018-02-13T00:34:44.386] [INFO] cheese - inserting 1000 documents. first: Subcutaneous tissues of the penis and last: Three Steps Over Heaven -[2018-02-13T00:34:44.398] [INFO] cheese - inserting 1000 documents. first: Jeong-A Industry Co., Ltd and last: Heroes' Day -[2018-02-13T00:34:44.403] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:34:44.409] [INFO] cheese - inserting 1000 documents. first: John A. Gosling and last: Suburban Noize records -[2018-02-13T00:34:44.410] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:34:44.462] [INFO] cheese - inserting 1000 documents. first: Category:Toshiba EMI games and last: 2012 CAF Men's Pre-Olympic Tournament Second Round -[2018-02-13T00:34:44.456] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:34:44.490] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:34:44.528] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:34:44.559] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:34:44.826] [INFO] cheese - inserting 1000 documents. first: Category:2000s in Italian television and last: TYROLIT Schleifmittelwerke Swarovski KG -[2018-02-13T00:34:44.889] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:34:44.907] [INFO] cheese - inserting 1000 documents. first: Suburban noize records and last: Situation theory -[2018-02-13T00:34:44.942] [INFO] cheese - inserting 1000 documents. first: Jnana Prabodhini and last: Andy Kennedy (football player) -[2018-02-13T00:34:44.966] [INFO] cheese - inserting 1000 documents. first: Deep and Dark and Dangerous and last: Chokhatauri district -[2018-02-13T00:34:44.982] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:44.998] [INFO] cheese - inserting 1000 documents. first: Tre metri sopra il cielo and last: Superior horns of the thyroid cartilage -[2018-02-13T00:34:44.998] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:34:45.011] [INFO] cheese - inserting 1000 documents. first: Ebauche and last: Ong Bak -[2018-02-13T00:34:45.028] [INFO] cheese - inserting 1000 documents. first: Rodney Terry and last: Paul Curtman -[2018-02-13T00:34:45.031] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:34:45.054] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:34:45.073] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:34:45.083] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:34:45.289] [INFO] cheese - inserting 1000 documents. first: Portal:Brittany/Selected picture/3 and last: List of fatal accidents to commercial cargo aircraft -[2018-02-13T00:34:45.348] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:34:45.359] [INFO] cheese - inserting 1000 documents. first: Dedoplis Tsqaro district and last: Joseph Takahashi -[2018-02-13T00:34:45.387] [INFO] cheese - inserting 1000 documents. first: South Central China and last: Category:Blackjack players -[2018-02-13T00:34:45.399] [INFO] cheese - inserting 1000 documents. first: Countries occupied by Soviet Union and last: Clara Bracy -[2018-02-13T00:34:45.403] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:34:45.416] [INFO] cheese - inserting 1000 documents. first: Chris Mensalvas and last: Jama Masjid, Erandol -[2018-02-13T00:34:45.455] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:34:45.459] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:34:45.465] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:34:45.477] [INFO] cheese - inserting 1000 documents. first: Stan Morgan and last: Ekbom Disease -[2018-02-13T00:34:45.527] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:34:45.708] [INFO] cheese - inserting 1000 documents. first: Hatiya, Bangladesh and last: Chocho del Páramo -[2018-02-13T00:34:45.713] [INFO] cheese - inserting 1000 documents. first: Barbell Nebula and last: Rice car -[2018-02-13T00:34:45.738] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:34:45.755] [INFO] cheese - inserting 1000 documents. first: Rip Colt and last: Template:MarsGeo-Deimos -[2018-02-13T00:34:45.766] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:34:45.776] [INFO] cheese - inserting 1000 documents. first: Lucien (band) and last: Hwang Suk-young -[2018-02-13T00:34:45.791] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:34:45.829] [INFO] cheese - inserting 1000 documents. first: Willie Ogg and last: Category:Medical and health organisations based in Sudan -[2018-02-13T00:34:45.872] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:34:45.914] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:34:45.955] [INFO] cheese - inserting 1000 documents. first: Delphine lalaurie and last: HLA-A28 -[2018-02-13T00:34:45.960] [INFO] cheese - inserting 1000 documents. first: Neon Christ and last: Oddvar Hansen -[2018-02-13T00:34:46.016] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:34:46.027] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:46.095] [INFO] cheese - inserting 1000 documents. first: National costume of Azerbaijan and last: Fokker V 30 -[2018-02-13T00:34:46.139] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:34:46.213] [INFO] cheese - inserting 1000 documents. first: Category:1748 establishments in the Habsburg Monarchy and last: Rudrahridaya Upanishad -[2018-02-13T00:34:46.264] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:34:46.312] [INFO] cheese - inserting 1000 documents. first: Bombei and last: Thomas O’Shea -[2018-02-13T00:34:46.347] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:46.359] [INFO] cheese - inserting 1000 documents. first: Together Again (Tony Bennett and Bill Evans album) and last: Atomic Force Microscopy -[2018-02-13T00:34:46.381] [INFO] cheese - inserting 1000 documents. first: Macedon railway station, Victoria and last: International Expressive Arts Therapy Association-IEATA -[2018-02-13T00:34:46.405] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:34:46.410] [INFO] cheese - inserting 1000 documents. first: Campbell, oh and last: Michael Keeping -[2018-02-13T00:34:46.430] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:34:46.456] [INFO] cheese - inserting 1000 documents. first: Category:Edwards County, Kansas and last: Student council -[2018-02-13T00:34:46.463] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:34:46.531] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:34:46.552] [INFO] cheese - inserting 1000 documents. first: Category:1995 Indian television series endings and last: Waitlist control -[2018-02-13T00:34:46.590] [INFO] cheese - inserting 1000 documents. first: Insects (disambiguation) and last: Harold Williamson -[2018-02-13T00:34:46.598] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:34:46.634] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:34:46.696] [INFO] cheese - inserting 1000 documents. first: File:The Vogues.jpg and last: ShapeAccelArray -[2018-02-13T00:34:46.735] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:34:46.739] [INFO] cheese - inserting 1000 documents. first: Muckinipates Creek and last: Wikipedia:Sockpuppet investigations/Jakenrds111 -[2018-02-13T00:34:46.751] [INFO] cheese - inserting 1000 documents. first: Atmospheric Phenomena and last: Proatheris -[2018-02-13T00:34:46.773] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:34:46.801] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:34:46.882] [INFO] cheese - inserting 1000 documents. first: Lhasoi and last: Wikipedia:Peer review/Real Madrid C.F./archive3 -[2018-02-13T00:34:46.937] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:34:46.988] [INFO] cheese - inserting 1000 documents. first: Brunswick Railroad Museum and last: The Heart of Dixie (song) -[2018-02-13T00:34:46.995] [INFO] cheese - inserting 1000 documents. first: Saint Eustase and last: SS Vermar -[2018-02-13T00:34:47.020] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:34:47.030] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:34:47.092] [INFO] cheese - inserting 1000 documents. first: Marilyn Brick and last: Maxwell-Boltzmann velocity distribution -[2018-02-13T00:34:47.155] [INFO] cheese - inserting 1000 documents. first: Template:City of Perth Suburbs and last: 1973-74 NC State Wolfpack men's basketball team -[2018-02-13T00:34:47.160] [INFO] cheese - inserting 1000 documents. first: Category:Sports teams in Zanzibar and last: Carlos Alberto Rodrigues Gavião -[2018-02-13T00:34:47.165] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:34:47.221] [INFO] cheese - inserting 1000 documents. first: Sa ad Madhi Sa ad Howash Al Azmi and last: Sony Greatest Hits -[2018-02-13T00:34:47.281] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:34:47.307] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:47.335] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:47.402] [INFO] cheese - inserting 1000 documents. first: Jean-Guy Poitras and last: Federal Road 220 -[2018-02-13T00:34:47.443] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:34:47.464] [INFO] cheese - inserting 1000 documents. first: Category:2008 elections in Ireland and last: Setu Bharatam -[2018-02-13T00:34:47.472] [INFO] cheese - inserting 1000 documents. first: Knight Companion of the Bath (1725–1815) and last: Honorary Knight Grand Cross of the Order of the Star of India -[2018-02-13T00:34:47.512] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:34:47.514] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:34:47.663] [INFO] cheese - inserting 1000 documents. first: Category:Toll bridges in the Republic of Ireland and last: Template:Editnotices/Page/User talk:Avicennasis/MainArchive/2011Q4 -[2018-02-13T00:34:47.694] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:34:47.698] [INFO] cheese - inserting 1000 documents. first: Nanopollution and last: Wood-Ridge -[2018-02-13T00:34:47.710] [INFO] cheese - inserting 1000 documents. first: Mommy blog and last: David McKinney (publisher) -[2018-02-13T00:34:47.737] [INFO] cheese - inserting 1000 documents. first: Leon Bibel and last: Ådne Søndrål -[2018-02-13T00:34:47.746] [INFO] cheese - inserting 1000 documents. first: National Road 220 and last: Iban Mayoz Exteberria -[2018-02-13T00:34:47.758] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:34:47.759] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:34:47.793] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:34:47.819] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:34:47.859] [INFO] cheese - inserting 1000 documents. first: Sausage Fest and last: File:Lossity.jpg -[2018-02-13T00:34:47.876] [INFO] cheese - inserting 1000 documents. first: Honorary Knight Grand Commander of the Order of the Star of India and last: Dintal-e Habibabad -[2018-02-13T00:34:47.901] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:34:47.939] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:34:48.014] [INFO] cheese - inserting 1000 documents. first: Wyse Fork Confederate order of battle and last: File:Habern.jpg -[2018-02-13T00:34:48.054] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:34:48.185] [INFO] cheese - inserting 1000 documents. first: Double Sextet and last: Stegophorella -[2018-02-13T00:34:48.197] [INFO] cheese - inserting 1000 documents. first: Miss Love Tantei and last: Choctawhatchee senior high school -[2018-02-13T00:34:48.206] [INFO] cheese - inserting 1000 documents. first: Ivan Mayoz Exteberria and last: Andrea Pozzi -[2018-02-13T00:34:48.209] [INFO] cheese - inserting 1000 documents. first: Copthall County Grammar School and last: Malaysian earthtiger tarantula -[2018-02-13T00:34:48.212] [INFO] cheese - inserting 1000 documents. first: Mitsubishi 4J1 engine and last: Wikipedia:Meetup/Sydney/Pete Forsyth links -[2018-02-13T00:34:48.234] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:34:48.241] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:34:48.244] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:34:48.258] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:34:48.257] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:34:48.363] [INFO] cheese - inserting 1000 documents. first: Sunny Deol and last: File:FinalFantasyTacticsAdvanceGBACoverArtUS.jpg -[2018-02-13T00:34:48.446] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:34:48.525] [INFO] cheese - inserting 1000 documents. first: Wootton, Staffordshire and last: Wikipedia:Requests for adminship/BuickCenturyDriver 2 -[2018-02-13T00:34:48.612] [INFO] cheese - inserting 1000 documents. first: Nikita gale and last: Goodman, Charles -[2018-02-13T00:34:48.608] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:34:48.687] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:34:48.697] [INFO] cheese - inserting 1000 documents. first: Morses Gulch and last: Particle effects -[2018-02-13T00:34:48.755] [INFO] cheese - inserting 1000 documents. first: Historic properties in Glendale, Arizona and last: San Joaquin saltbush -[2018-02-13T00:34:48.781] [INFO] cheese - inserting 1000 documents. first: Arsheesh and last: White Magic for Lovers -[2018-02-13T00:34:48.789] [INFO] cheese - inserting 1000 documents. first: Stearophora and last: The Bay (Chain Store) -[2018-02-13T00:34:48.803] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:34:48.838] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:34:48.853] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:34:48.872] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:34:49.132] [INFO] cheese - inserting 1000 documents. first: Battle of Orbitello and last: Alucita euscripta -[2018-02-13T00:34:49.137] [INFO] cheese - inserting 1000 documents. first: Goodyear, Charles and last: Hotai Motors -[2018-02-13T00:34:49.181] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:34:49.187] [INFO] cheese - inserting 1000 documents. first: Interstate 90 (South Dakota) and last: B. J. Ward(actress) -[2018-02-13T00:34:49.194] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:34:49.206] [INFO] cheese - inserting 1000 documents. first: Taichang Emperor of China and last: Texas Regulars -[2018-02-13T00:34:49.207] [INFO] cheese - inserting 1000 documents. first: Mihail Zafiu and last: GeoCitizens -[2018-02-13T00:34:49.235] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:34:49.253] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:34:49.281] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:34:49.288] [INFO] cheese - inserting 1000 documents. first: File:Stray cat sanctuary (Ottawa, Ontario).jpg and last: Glam-rock -[2018-02-13T00:34:49.303] [INFO] cheese - inserting 1000 documents. first: Indian locomotive class XC and last: Central American bark lizards -[2018-02-13T00:34:49.348] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:34:49.356] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:34:49.542] [INFO] cheese - inserting 1000 documents. first: Category:1980s disestablishments in Jamaica and last: Category:1924 disasters in the United Kingdom -[2018-02-13T00:34:49.560] [INFO] cheese - inserting 1000 documents. first: Koch-Mehrin and last: Guangning County, Liaoning -[2018-02-13T00:34:49.585] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:34:49.637] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:34:49.651] [INFO] cheese - inserting 1000 documents. first: Relax-GAM Fuenlabrada and last: Albert Hamer Reiser -[2018-02-13T00:34:49.706] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:34:49.737] [INFO] cheese - inserting 1000 documents. first: Parade dress and last: 2014 State of Origin series -[2018-02-13T00:34:49.758] [INFO] cheese - inserting 1000 documents. first: GeoCitizen and last: Category:People from Saint-Georges, Quebec -[2018-02-13T00:34:49.800] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:49.811] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:49.849] [INFO] cheese - inserting 1000 documents. first: Slobozhan kobzars and last: The Rocket (film) -[2018-02-13T00:34:49.924] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:34:49.942] [INFO] cheese - inserting 1000 documents. first: Soudan Mine and last: Väisälä crater -[2018-02-13T00:34:50.013] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:34:50.016] [INFO] cheese - inserting 1000 documents. first: Template:2016FLRep and last: The Chops -[2018-02-13T00:34:50.023] [INFO] cheese - inserting 1000 documents. first: Daishogi and last: Orneodes seychellensis -[2018-02-13T00:34:50.032] [INFO] cheese - inserting 1000 documents. first: Protocols of Zion (imprints) and last: The Biologic Show -[2018-02-13T00:34:50.061] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:34:50.071] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:34:50.090] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:34:50.344] [INFO] cheese - inserting 1000 documents. first: New York State Route 179 and last: File:Sb30 .jpg -[2018-02-13T00:34:50.361] [INFO] cheese - inserting 1000 documents. first: Hoot Smalley and last: Category:Georgian football club matches -[2018-02-13T00:34:50.413] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:34:50.419] [INFO] cheese - inserting 1000 documents. first: Getter Love!! and last: Another World Entertainment -[2018-02-13T00:34:50.449] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:34:50.485] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:34:50.525] [INFO] cheese - inserting 1000 documents. first: Intelligent web business lab and last: Wikipedia:WikiProject Spam/LinkReports/madeitinhome.com -[2018-02-13T00:34:50.532] [INFO] cheese - inserting 1000 documents. first: Nicolás de la Quadra and last: Ice Tea -[2018-02-13T00:34:50.572] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:34:50.575] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:34:50.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ink and Bone and last: EDJ (disambiguation) -[2018-02-13T00:34:50.674] [INFO] cheese - inserting 1000 documents. first: List of Valencian monarchs and last: Eagle-Vail -[2018-02-13T00:34:50.702] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:34:50.768] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:34:50.898] [INFO] cheese - inserting 1000 documents. first: Stepwise regression and last: Somewhere over the rainbow -[2018-02-13T00:34:50.936] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian football club matches and last: Category:Economy of Bakersfield, California -[2018-02-13T00:34:50.951] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:34:51.004] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:34:51.009] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/California State Route 371 and last: Citronen mine -[2018-02-13T00:34:51.049] [INFO] cheese - inserting 1000 documents. first: Portal:Music of Australia/Selected image/11 and last: BMW 6 series -[2018-02-13T00:34:51.058] [INFO] cheese - inserting 1000 documents. first: Cormac Ó Curnáin and last: Arsène Lupin (film) -[2018-02-13T00:34:51.089] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:34:51.148] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:34:51.196] [INFO] cheese - inserting 1000 documents. first: Cricket at the 2017 Southeast Asian Games and last: Category:Music videos directed by Annabel Jankel -[2018-02-13T00:34:51.202] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:34:51.296] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:34:51.538] [INFO] cheese - inserting 1000 documents. first: Sanghamitta and last: FILE ID.DIZ -[2018-02-13T00:34:51.560] [INFO] cheese - inserting 1000 documents. first: Joe Kovacic and last: Mama Jo's Recording Studio -[2018-02-13T00:34:51.576] [INFO] cheese - inserting 1000 documents. first: Gibbons-Hawking effect and last: De Flat -[2018-02-13T00:34:51.616] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:34:51.622] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:34:51.631] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:34:51.666] [INFO] cheese - inserting 1000 documents. first: 文聖區 and last: Moje najmilšie -[2018-02-13T00:34:51.696] [INFO] cheese - inserting 1000 documents. first: File:Ithu Thaanda Police (2016) - Poster.jpg and last: Gaetano Amico III -[2018-02-13T00:34:51.727] [INFO] cheese - inserting 1000 documents. first: Vacht Nacht and last: Dashound -[2018-02-13T00:34:51.734] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:34:51.737] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:34:51.804] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:34:51.814] [INFO] cheese - inserting 1000 documents. first: Category:Lead and zinc mines in Greenland and last: Richard Hopkins (MP) -[2018-02-13T00:34:51.884] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:34:52.081] [INFO] cheese - inserting 1000 documents. first: 1-900 (film) and last: Smokescreen (Marvel Comics) -[2018-02-13T00:34:52.107] [INFO] cheese - inserting 1000 documents. first: Waheela and last: Middle East Institute -[2018-02-13T00:34:52.117] [INFO] cheese - inserting 1000 documents. first: File:Mcewans logo.gif and last: Tachikawa Army Type 95 Model 3 Trainer -[2018-02-13T00:34:52.118] [INFO] cheese - inserting 1000 documents. first: File:Portrait of Leon County Assistant Superintendent for Instruction Aquilina Casañas Howell at her office door.jpg and last: September (The Shins song) -[2018-02-13T00:34:52.126] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:34:52.156] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:52.166] [INFO] cheese - inserting 1000 documents. first: Almendra (Aldemaro Romero album) and last: Operation Canopy -[2018-02-13T00:34:52.178] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:52.206] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:34:52.219] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:34:52.267] [INFO] cheese - inserting 1000 documents. first: Gavin Whittaker and last: Siberian Yup'ik -[2018-02-13T00:34:52.342] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:34:52.396] [INFO] cheese - inserting 1000 documents. first: File:National Insect Week Logo.jpg and last: File:GoodMorningAmericaLogo.jpg -[2018-02-13T00:34:52.433] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:34:52.566] [INFO] cheese - inserting 1000 documents. first: Cranmer Park and last: Bisdak -[2018-02-13T00:34:52.612] [INFO] cheese - inserting 1000 documents. first: Yorrell and last: File:Dr KR Balakrishnan, Fortis Malar Hospital, Chennai.jpg -[2018-02-13T00:34:52.651] [INFO] cheese - inserting 1000 documents. first: James Madison 1809 presidential inauguration and last: Il Sole Nella Pioggia -[2018-02-13T00:34:52.687] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:34:52.709] [INFO] cheese - inserting 1000 documents. first: Socialist Workers' Movement and last: Farm to Market Road 2519 (Texas) -[2018-02-13T00:34:52.713] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:34:52.748] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:34:52.768] [INFO] cheese - inserting 1000 documents. first: Mitsubishi Army Type 97 Headquarter Reconnaissance and last: SR-124 (UT) -[2018-02-13T00:34:52.802] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:34:52.867] [INFO] cheese - inserting 1000 documents. first: Barnaby (comics Tintin) and last: Wikipedia:Featured picture candidates/File:Pitta moluccensis - Kaeng Krachan.jpg -[2018-02-13T00:34:52.874] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:34:52.945] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:53.186] [INFO] cheese - inserting 1000 documents. first: Handayama Botanical Garden and last: Torchlight to Valhalla -[2018-02-13T00:34:53.192] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pipers and last: Mutating engine -[2018-02-13T00:34:53.202] [INFO] cheese - inserting 1000 documents. first: Trigger Fingers (film) and last: Caesarius, Saint -[2018-02-13T00:34:53.236] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:34:53.254] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 2657 (Texas) and last: Category:Members of the 19th Seanad -[2018-02-13T00:34:53.260] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:34:53.282] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:34:53.329] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:34:53.388] [INFO] cheese - inserting 1000 documents. first: Utah State Route 124 (1935) and last: St. Patrick High School (Yellowknife) -[2018-02-13T00:34:53.389] [INFO] cheese - inserting 1000 documents. first: Engelholms Glass and last: Bouquet Of Black Orchids -[2018-02-13T00:34:53.404] [INFO] cheese - inserting 1000 documents. first: My Family, My Films and My Nation and last: File:The Vineyard on ABCFamily.jpg -[2018-02-13T00:34:53.450] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:34:53.455] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:34:53.478] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:34:53.672] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Texas/PASS and last: Fox River (Alaska) -[2018-02-13T00:34:53.685] [INFO] cheese - inserting 1000 documents. first: Cassius, Saint and last: Template:England squad 2001 UEFA Women's European Championship -[2018-02-13T00:34:53.707] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:34:53.733] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:34:53.769] [INFO] cheese - inserting 1000 documents. first: TW03 Danio and last: Template:WGA Awards Chron -[2018-02-13T00:34:53.812] [INFO] cheese - inserting 1000 documents. first: Powder-wig and last: Chittening -[2018-02-13T00:34:53.821] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:34:53.835] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/auditoriummusic.com and last: Muafname -[2018-02-13T00:34:53.849] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:34:53.874] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:34:53.886] [INFO] cheese - inserting 1000 documents. first: Hans Sutor and last: Kenya - Australia relations -[2018-02-13T00:34:53.953] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:34:53.968] [INFO] cheese - inserting 1000 documents. first: Music of Saint Lucia and last: Wilno, Ontario -[2018-02-13T00:34:54.054] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:34:54.091] [INFO] cheese - inserting 1000 documents. first: Dansish Ministry of the Environment and last: 1920-21 Port Vale FC season -[2018-02-13T00:34:54.128] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:34:54.148] [INFO] cheese - inserting 1000 documents. first: File:Ejaculation Educational Demonstration.OGG and last: Jeff Ridgway -[2018-02-13T00:34:54.205] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:34:54.232] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/computernetboarder.com and last: Providence St. Mel -[2018-02-13T00:34:54.242] [INFO] cheese - inserting 1000 documents. first: Kenya-Australia relations and last: Wikipedia:WikiProject Spam/LinkReports/hitomitanakaxxx.com -[2018-02-13T00:34:54.268] [INFO] cheese - inserting 1000 documents. first: File:Aspen Gold Kingston Trio2.jpg and last: Fire Station No. 3 -[2018-02-13T00:34:54.271] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:34:54.276] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:34:54.291] [INFO] cheese - inserting 1000 documents. first: Relationship transgression and last: Rick Rosenthal -[2018-02-13T00:34:54.306] [INFO] cheese - inserting 1000 documents. first: 1920-29 in anthropology and last: 18 - Allein unter Madchen -[2018-02-13T00:34:54.328] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:34:54.404] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:34:54.447] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:34:54.625] [INFO] cheese - inserting 1000 documents. first: I Look Like An Engineer and last: 1944-45 Slovenská liga -[2018-02-13T00:34:54.650] [INFO] cheese - inserting 1000 documents. first: Schwergewicht and last: Georgiy Sedov (icebreaker) -[2018-02-13T00:34:54.650] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:34:54.677] [INFO] cheese - inserting 1000 documents. first: Oak hills country club and last: Category:Chiefs of Defence of Norway -[2018-02-13T00:34:54.701] [INFO] cheese - inserting 1000 documents. first: Public Health Service Achievement Medal and last: File:Hbar 338A87E.png -[2018-02-13T00:34:54.699] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:34:54.720] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:34:54.733] [INFO] cheese - inserting 1000 documents. first: File:PanicSpring.jpg and last: Template:Taxonomy/Heterodontosauridae -[2018-02-13T00:34:54.767] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:34:54.781] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:34:54.787] [INFO] cheese - inserting 1000 documents. first: International Telegraph Alphabet No. 1 and last: Artem Jijikhia -[2018-02-13T00:34:54.842] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:34:54.852] [INFO] cheese - inserting 1000 documents. first: SeeU and last: 1954-55 Philadelphia Warriors season -[2018-02-13T00:34:54.873] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:34:54.876] [INFO] cheese - inserting 1000 documents. first: File:Yfflowbeat.jpg and last: Casually Dressed and Deep in Conversation -[2018-02-13T00:34:54.933] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:34:55.026] [INFO] cheese - inserting 1000 documents. first: Category:1965–66 ice hockey leagues and last: Atlantic Horse Mackerel -[2018-02-13T00:34:55.065] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:34:55.075] [INFO] cheese - inserting 1000 documents. first: Lezayre Station and last: Template:DCAni-trademark-copyright -[2018-02-13T00:34:55.090] [INFO] cheese - inserting 1000 documents. first: 1954-55 Michigan Wolverines men's ice hockey season and last: 1954-55 Iowa Hawkeyes men's basketball team -[2018-02-13T00:34:55.109] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:34:55.132] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:55.210] [INFO] cheese - inserting 1000 documents. first: 2011 European Athletics Indoor Championships and last: Habroichthys -[2018-02-13T00:34:55.253] [INFO] cheese - inserting 1000 documents. first: Tomoyuki Higuchi and last: Template:Admin comment -[2018-02-13T00:34:55.272] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:34:55.318] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:55.432] [INFO] cheese - inserting 1000 documents. first: 1951-52 Tercera Division and last: 1961-62 Liga Alef -[2018-02-13T00:34:55.467] [INFO] cheese - inserting 1000 documents. first: Nikolay Glazkov and last: Notre Dame High School, West Haven, Connecticut -[2018-02-13T00:34:55.479] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:34:55.528] [INFO] cheese - inserting 1000 documents. first: Final Fight Guy and last: Friedrich Wilhelm Hemprich -[2018-02-13T00:34:55.531] [INFO] cheese - inserting 1000 documents. first: Category:1976 establishments in Rwanda and last: Lata Gouveia -[2018-02-13T00:34:55.549] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:34:55.565] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:55.643] [INFO] cheese - inserting 1000 documents. first: Charlie Pechous and last: Maximum Absorbency Garment -[2018-02-13T00:34:55.679] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:34:55.758] [INFO] cheese - inserting 1000 documents. first: 1962-63 Liga Alef and last: 1966 European Athletics Championships - Men's 200 metres -[2018-02-13T00:34:55.835] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:34:55.843] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:34:55.964] [INFO] cheese - inserting 1000 documents. first: Peripeltopleurus and last: Mary Lou Fulton Teachers College -[2018-02-13T00:34:56.034] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:34:56.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GOAWAY and last: 1975-76 Houston Rockets season -[2018-02-13T00:34:56.084] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:34:56.091] [INFO] cheese - inserting 1000 documents. first: The Rolling Stones 1965 tours and last: Owen's College, Manchester -[2018-02-13T00:34:56.103] [INFO] cheese - inserting 1000 documents. first: SS Hannington Court (1912) and last: Workplace Harassment and Productivity -[2018-02-13T00:34:56.117] [INFO] cheese - inserting 1000 documents. first: Road Accident Research Unit and last: Abdul Hakim Bukhary -[2018-02-13T00:34:56.136] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:34:56.154] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:34:56.190] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:34:56.269] [INFO] cheese - inserting 1000 documents. first: 1973-74 in English soccer and last: 1978-79 Division 1 season (Swedish ice hockey) -[2018-02-13T00:34:56.292] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:34:56.318] [INFO] cheese - inserting 1000 documents. first: File:Saawariya1.jpg and last: Charles Stewart (Texas politician) -[2018-02-13T00:34:56.371] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:34:56.456] [INFO] cheese - inserting 1000 documents. first: Astrometis sertulifera and last: File:Torso male.jpg -[2018-02-13T00:34:56.506] [INFO] cheese - inserting 1000 documents. first: 1980 US Open - Men's Doubles and last: 1982 IAAF World Cross Country Championships - Senior women's race -[2018-02-13T00:34:56.548] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:34:56.583] [INFO] cheese - inserting 1000 documents. first: Lousy With Sylvianbriar and last: Ab Ti-ye Mahtab -[2018-02-13T00:34:56.583] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:34:56.633] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:34:56.645] [INFO] cheese - inserting 1000 documents. first: PMODE/W and last: MIDR Cymru -[2018-02-13T00:34:56.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mikeyasadie and last: Boone Karlson -[2018-02-13T00:34:56.659] [INFO] cheese - inserting 1000 documents. first: Bács-Kiskun County and last: Epsilon Proteobacteria -[2018-02-13T00:34:56.704] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:34:56.710] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:34:56.764] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T00:34:56.807] [INFO] cheese - inserting 1000 documents. first: Reese C. De Graffenreid and last: Hits as a particle acts like a wave -[2018-02-13T00:34:56.811] [INFO] cheese - inserting 1000 documents. first: 1981-82 Rude Pravo Cup and last: 1987-88 FDGB-Pokal -[2018-02-13T00:34:56.831] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:34:56.843] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:34:57.012] [INFO] cheese - inserting 1000 documents. first: 1984-85 Milwaukee Bucks season and last: 1979-80 South-West Indian Ocean cyclone season -[2018-02-13T00:34:57.022] [INFO] cheese - inserting 1000 documents. first: File:Tubal pregnancy, gross pathology 01ee049 lores.jpg and last: Blue Murder (play) -[2018-02-13T00:34:57.032] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:34:57.100] [INFO] cheese - inserting 1000 documents. first: Ab Ti and last: Juan Manuel Bordaberry -[2018-02-13T00:34:57.106] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:34:57.157] [INFO] cheese - inserting 1000 documents. first: File:OldCustomHouse2.jpg and last: Glasgow Anniesland by-election, 2000 -[2018-02-13T00:34:57.176] [INFO] cheese - inserting 1000 documents. first: Homefront (THQ) and last: Texas Business State Highway 70-G -[2018-02-13T00:34:57.185] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:34:57.250] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:34:57.336] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:34:57.373] [INFO] cheese - inserting 1000 documents. first: Team 29 and last: Leomar Francisco Rodrigues -[2018-02-13T00:34:57.410] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:34:57.434] [INFO] cheese - inserting 1000 documents. first: Acts like a wave hits as a particle and last: 1979 student protests in Nepal -[2018-02-13T00:34:57.567] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:34:57.757] [INFO] cheese - inserting 1000 documents. first: File:For Badgeholders Only Part 1.jpg and last: Wikipedia:Version 1.0 Editorial Team/Biography (musicians) articles by quality/152 -[2018-02-13T00:34:57.764] [INFO] cheese - inserting 1000 documents. first: Star Wars: Droids and last: Avaré, São Paulo -[2018-02-13T00:34:57.783] [INFO] cheese - inserting 1000 documents. first: 1992-93 Football League Third Division and last: 1994-95 in Russian futsal -[2018-02-13T00:34:57.799] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:34:57.804] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:34:57.858] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T00:34:57.878] [INFO] cheese - inserting 1000 documents. first: Ira "Buddy" Williams and last: Sam Goldbloom -[2018-02-13T00:34:57.913] [INFO] cheese - inserting 1000 documents. first: Chatham-Kent-Essex and last: File:Erskinehill.jpg -[2018-02-13T00:34:57.939] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:34:57.953] [INFO] cheese - inserting 1000 documents. first: The Complete Pacific Jazz Joe Pass Quartet Sessions and last: Berens River First Nation -[2018-02-13T00:34:57.966] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:34:57.977] [INFO] cheese - inserting 1000 documents. first: 1994-95 Czech 2. Liga and last: Category:Louisiana elections, 1835 -[2018-02-13T00:34:57.984] [INFO] cheese - inserting 1000 documents. first: Lavonia and last: Pumpkinhead 2 -[2018-02-13T00:34:58.011] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:34:58.037] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:34:58.040] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:34:58.219] [INFO] cheese - inserting 1000 documents. first: Category:Louisiana elections, 1837 and last: Deddoman Wandārando -[2018-02-13T00:34:58.227] [INFO] cheese - inserting 1000 documents. first: Category:Geology of Maine and last: Alex Mihailovich -[2018-02-13T00:34:58.254] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:34:58.292] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:34:58.393] [INFO] cheese - inserting 1000 documents. first: ISeries QSHELL and last: Miniș River (Cigher) -[2018-02-13T00:34:58.416] [INFO] cheese - inserting 1000 documents. first: Samuel Goldbloom and last: Odo V, Count of Meaux -[2018-02-13T00:34:58.422] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:34:58.431] [INFO] cheese - inserting 1000 documents. first: Maryland State Highway 281 and last: 8-bit processor -[2018-02-13T00:34:58.444] [INFO] cheese - inserting 1000 documents. first: Akumajō Dorakyura and last: 1998 European Short Course Swimming Championships - Women's 50 metre freestyle -[2018-02-13T00:34:58.466] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:34:58.468] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:34:58.469] [INFO] cheese - inserting 1000 documents. first: Standard gravitational parameter and last: William George Horner -[2018-02-13T00:34:58.485] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:34:58.550] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:34:58.859] [INFO] cheese - inserting 1000 documents. first: 1997-98 UEFA Champions League group stage and last: 1998-99 Australian Figure Skating Championships -[2018-02-13T00:34:58.919] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:59.029] [INFO] cheese - inserting 1000 documents. first: Template:D1GP circuits and last: Silent Hill: Orphan -[2018-02-13T00:34:59.081] [INFO] cheese - inserting 1000 documents. first: Category:1950 in South Dakota and last: Propylacetone -[2018-02-13T00:34:59.083] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:34:59.143] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:34:59.196] [INFO] cheese - inserting 1000 documents. first: 1998 European Athletics Championships - Women's high jump and last: 2001 Wimbledon Championships - Women's Doubles Qualifying -[2018-02-13T00:34:59.232] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:34:59.239] [INFO] cheese - inserting 1000 documents. first: Anthony Harris (defensive lineman) and last: Band of Brothers (Korean TV series) -[2018-02-13T00:34:59.241] [INFO] cheese - inserting 1000 documents. first: Benoit Sixteen and last: Demon Seed (novel) -[2018-02-13T00:34:59.261] [INFO] cheese - inserting 1000 documents. first: Template:Parks in Indianapolis and last: Category:Football managers in Sri Lanka -[2018-02-13T00:34:59.293] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:34:59.304] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:34:59.355] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T00:34:59.420] [INFO] cheese - inserting 1000 documents. first: Ålgård Church and last: 1998-99 Czech Cup -[2018-02-13T00:34:59.424] [INFO] cheese - inserting 1000 documents. first: File:Johnny English movie.jpg and last: Category:Art museums and galleries in Russia -[2018-02-13T00:34:59.449] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:34:59.472] [INFO] cheese - inserting 1000 documents. first: The Fragments (sculpture) and last: Wikipedia:Articles for deletion/List of fictional restaurants -[2018-02-13T00:34:59.514] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:34:59.528] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:34:59.594] [INFO] cheese - inserting 1000 documents. first: Lobster cockroach and last: Appleby grammar school -[2018-02-13T00:34:59.655] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:34:59.698] [INFO] cheese - inserting 1000 documents. first: Briegel and last: 2004 Dutch Open - Doubles -[2018-02-13T00:34:59.702] [INFO] cheese - inserting 1000 documents. first: US military ID and last: Germinal pierre dandelin -[2018-02-13T00:34:59.721] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:34:59.745] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:34:59.754] [INFO] cheese - inserting 1000 documents. first: Roundtop, California and last: Category:Scouting and Guiding in Luxembourg -[2018-02-13T00:34:59.759] [INFO] cheese - inserting 1000 documents. first: John Frederick Nelson and last: Marguerite de La Sablière -[2018-02-13T00:34:59.804] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:34:59.806] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:34:59.909] [INFO] cheese - inserting 1000 documents. first: 2004-05 R.S.C. Anderlecht season and last: Atvi kabul -[2018-02-13T00:34:59.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hillcreststjohn.com and last: List of tropidophiid species and subspecies -[2018-02-13T00:34:59.939] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:34:59.961] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:34:59.986] [INFO] cheese - inserting 1000 documents. first: Category:1891 establishments in Washington, D.C. and last: File:No limit kids DVD cover.jpg -[2018-02-13T00:35:00.018] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:35:00.035] [INFO] cheese - inserting 1000 documents. first: Gerolamo cardano and last: Mexico's independence day -[2018-02-13T00:35:00.108] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:35:00.157] [INFO] cheese - inserting 1000 documents. first: 2005-07 European Challenge Trophy and last: 2007-08 AZAL PFC season -[2018-02-13T00:35:00.210] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:35:00.290] [INFO] cheese - inserting 1000 documents. first: 1798 Irish Rebellion and last: The Peculiar Exploits of Brigadier Ffellowes -[2018-02-13T00:35:00.303] [INFO] cheese - inserting 1000 documents. first: Q300 and last: Amoxipen -[2018-02-13T00:35:00.306] [INFO] cheese - inserting 1000 documents. first: USNH Beaufort and last: Sid Espinosa -[2018-02-13T00:35:00.350] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:35:00.358] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:35:00.372] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:35:00.408] [INFO] cheese - inserting 1000 documents. first: Category:Japanese women journalists and last: Anton I -[2018-02-13T00:35:00.436] [INFO] cheese - inserting 1000 documents. first: Violaines and last: Nelson Mandela Primary School -[2018-02-13T00:35:00.445] [INFO] cheese - inserting 1000 documents. first: Portal:Transnational child protection/Related portals and last: 2008-09 Cyclo-cross Superprestige -[2018-02-13T00:35:00.450] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:35:00.468] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:35:00.492] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:35:00.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Friend Society and last: Edwin J. Cohn -[2018-02-13T00:35:00.623] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:35:00.691] [INFO] cheese - inserting 1000 documents. first: List of places in Ukraine named Antonivka and last: 2009 Pekao Open - Doubles -[2018-02-13T00:35:00.715] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:35:00.732] [INFO] cheese - inserting 1000 documents. first: Newark Sunday Call and last: Category:People of the Aden Emergency -[2018-02-13T00:35:00.749] [INFO] cheese - inserting 1000 documents. first: Tshering Dendup and last: Wikipedia:Articles for deletion/PromiseLand San Marcos -[2018-02-13T00:35:00.755] [INFO] cheese - inserting 1000 documents. first: List of 1. FC Magdeburg players and last: Asian Basketball Confederation Champions Cup 1997 -[2018-02-13T00:35:00.775] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:35:00.799] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:35:00.821] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:00.863] [INFO] cheese - inserting 1000 documents. first: Neotinea maculata and last: Category:2003 in motorsport -[2018-02-13T00:35:00.903] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:35:00.912] [INFO] cheese - inserting 1000 documents. first: Amoxipenil and last: Relative error -[2018-02-13T00:35:00.948] [INFO] cheese - inserting 1000 documents. first: 2009 US Open - women's doubles and last: 2010 Fed Cup Asia/Oceania Zone Group I - Pool A -[2018-02-13T00:35:00.987] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:35:00.993] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:35:01.091] [INFO] cheese - inserting 1000 documents. first: Category:Mongolian writers and last: Alacakaya -[2018-02-13T00:35:01.149] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:35:01.176] [INFO] cheese - inserting 1000 documents. first: Straße der Megalithkultur and last: Impossible monsters -[2018-02-13T00:35:01.193] [INFO] cheese - inserting 1000 documents. first: File:Bloodlines Novel.jpg and last: Mount Corrimal -[2018-02-13T00:35:01.207] [INFO] cheese - inserting 1000 documents. first: 2010 Fed Cup Europe/Africa Zone Group III - Play-offs and last: 2010-11 in Australian association football -[2018-02-13T00:35:01.220] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:35:01.253] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:35:01.264] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:35:01.296] [INFO] cheese - inserting 1000 documents. first: Asian Basketball Confederation Champions Cup 1996 and last: Secure hypertext transfer protocol -[2018-02-13T00:35:01.324] [INFO] cheese - inserting 1000 documents. first: Category:2004 in motorsport and last: William Bleakes -[2018-02-13T00:35:01.349] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:35:01.457] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:35:01.592] [INFO] cheese - inserting 1000 documents. first: Eastern League Most Valuable Player Award and last: 2011-12 Eurocup Basketball Quarterfinals -[2018-02-13T00:35:01.618] [INFO] cheese - inserting 1000 documents. first: File:The Hold Steady - Almost Killed Me cover.jpg and last: Halloween (King Diamond single) -[2018-02-13T00:35:01.620] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:35:01.684] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:01.717] [INFO] cheese - inserting 1000 documents. first: Fastest airplane and last: Racine carrée -[2018-02-13T00:35:01.719] [INFO] cheese - inserting 1000 documents. first: Absolute error and last: Albanian Communist Party -[2018-02-13T00:35:01.764] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:35:01.796] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2011 April 17 and last: Boulogne sur mer -[2018-02-13T00:35:01.808] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:35:01.842] [INFO] cheese - inserting 1000 documents. first: Bile farms and last: Award Software Inc -[2018-02-13T00:35:01.858] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:35:01.862] [INFO] cheese - inserting 1000 documents. first: 2011-12 Farjestad BK season and last: 2011-2012 Kuwaiti protests -[2018-02-13T00:35:01.898] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:35:01.914] [INFO] cheese - inserting 1000 documents. first: Karel Schummelketel and last: PCS-1416 -[2018-02-13T00:35:01.917] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:35:01.958] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:35:02.087] [INFO] cheese - inserting 1000 documents. first: 2011-12 Slovak Extraliga season and last: 2007-08 FC Dinamo Bucuresti season -[2018-02-13T00:35:02.092] [INFO] cheese - inserting 1000 documents. first: Reginald Covill and last: Halhal District -[2018-02-13T00:35:02.107] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:35:02.120] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:35:02.174] [INFO] cheese - inserting 1000 documents. first: Vulcanian Eruption and last: Oil Beetle -[2018-02-13T00:35:02.227] [INFO] cheese - inserting 1000 documents. first: Objective Resolution and last: Category:Miki Howard songs -[2018-02-13T00:35:02.230] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:35:02.265] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:35:02.269] [INFO] cheese - inserting 1000 documents. first: File:Anti-FlagTISE.jpg and last: 2012 Tashkent Challenger - Doubles -[2018-02-13T00:35:02.292] [INFO] cheese - inserting 1000 documents. first: Communist Party of Albania and last: Bernardino de Campos -[2018-02-13T00:35:02.306] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:35:02.328] [INFO] cheese - inserting 1000 documents. first: Saint Laurent du Var and last: Papken I -[2018-02-13T00:35:02.344] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:02.348] [INFO] cheese - inserting 1000 documents. first: Strong Man's Burden and last: Polymastia aurantium -[2018-02-13T00:35:02.372] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:02.397] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:02.411] [INFO] cheese - inserting 1000 documents. first: Pennsylvania State-Brandywine Lions and last: 2013 Johan Cruijff-schaal -[2018-02-13T00:35:02.460] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:35:02.467] [INFO] cheese - inserting 1000 documents. first: Algay and last: 2011-12 Primera División de México season -[2018-02-13T00:35:02.493] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:35:02.605] [INFO] cheese - inserting 1000 documents. first: The Simpsons (season 6) and last: Purba Banglar Sarbahara Party (Maoist Bolshevik Reorganization Movement) -[2018-02-13T00:35:02.641] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:35:02.660] [INFO] cheese - inserting 1000 documents. first: Lagâri Hasan and last: Category:Serbia and Montenegro football templates -[2018-02-13T00:35:02.691] [INFO] cheese - inserting 1000 documents. first: 2012-13 Eurocup Basketball Knockout Stage and last: 2012-13 Southeastern Louisiana Lions men's basketball team -[2018-02-13T00:35:02.808] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:35:02.837] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:02.943] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Saw Binnya and last: Bekisopa mine -[2018-02-13T00:35:03.050] [INFO] cheese - inserting 1000 documents. first: Template:Cullman County, Alabama and last: Noel McNamara -[2018-02-13T00:35:03.070] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:35:03.083] [INFO] cheese - inserting 1000 documents. first: St. Psalmodius and last: File:Doug Stone - I'd Be Better Off.jpg -[2018-02-13T00:35:03.110] [INFO] cheese - inserting 1000 documents. first: Ralph O. Brewster and last: Suzukaze Mayo -[2018-02-13T00:35:03.110] [INFO] cheese - inserting 1000 documents. first: Duluth-Superior Dukes and last: 2013 Internationaux de Tennis de Vendée - Singles -[2018-02-13T00:35:03.111] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:35:03.133] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:35:03.137] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:35:03.181] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:35:03.234] [INFO] cheese - inserting 1000 documents. first: Congal Cláen and last: File:Baty2.jpg -[2018-02-13T00:35:03.274] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:35:03.333] [INFO] cheese - inserting 1000 documents. first: Category:Serbia and Montenegro sports templates and last: Edmund Bowyer (disambiguation) -[2018-02-13T00:35:03.364] [INFO] cheese - inserting 1000 documents. first: 高台家の人々 and last: Template:Galaxie 500 -[2018-02-13T00:35:03.373] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:03.385] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:35:03.494] [INFO] cheese - inserting 1000 documents. first: Climax Entertainment and last: 2003-04 PBA season -[2018-02-13T00:35:03.494] [INFO] cheese - inserting 1000 documents. first: Alain Goulem and last: Harpalus lethierryi -[2018-02-13T00:35:03.535] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:35:03.540] [INFO] cheese - inserting 1000 documents. first: Carol Baker and last: File:Sheffield Wednesday.svg -[2018-02-13T00:35:03.548] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:35:03.596] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:35:03.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Spaceflight/Style guide and last: St John's Church, Wellington -[2018-02-13T00:35:03.630] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:35:03.645] [INFO] cheese - inserting 1000 documents. first: Tamatebako and last: Nekromantik -[2018-02-13T00:35:03.700] [INFO] cheese - inserting 1000 documents. first: Brahmacarya and last: Takitimu -[2018-02-13T00:35:03.704] [INFO] cheese - inserting 1000 documents. first: Abu Al-Husayn Al-Nuri and last: File:Minarets with M.jpg -[2018-02-13T00:35:03.699] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:35:03.750] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:03.770] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:35:03.820] [INFO] cheese - inserting 1000 documents. first: Category:Wikimedia chapter user templates and last: 2013-14 Telekom S-League -[2018-02-13T00:35:03.847] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:35:03.923] [INFO] cheese - inserting 1000 documents. first: 1986 Chicago White Sox season and last: Lake Quilotoa -[2018-02-13T00:35:03.955] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:03.977] [INFO] cheese - inserting 1000 documents. first: Harpalus liobasis and last: Ba dum tss -[2018-02-13T00:35:04.016] [INFO] cheese - inserting 1000 documents. first: Junko Chodos and last: Fine (Printing) -[2018-02-13T00:35:04.028] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:35:04.030] [INFO] cheese - inserting 1000 documents. first: 2013-14 UD Almeria season and last: 2014 Coupe Banque Nationale - Singles -[2018-02-13T00:35:04.093] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:04.066] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:35:04.216] [INFO] cheese - inserting 1000 documents. first: Joe Klopfenstein and last: Tom Breiding -[2018-02-13T00:35:04.317] [INFO] cheese - inserting 1000 documents. first: Vale Of Evesham School and last: Portal:Moscow/Categories -[2018-02-13T00:35:04.337] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:35:04.398] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:35:04.420] [INFO] cheese - inserting 1000 documents. first: God Shuffled His Feet and last: Category:Archaeological sites in Libya -[2018-02-13T00:35:04.501] [INFO] cheese - inserting 1000 documents. first: 2014 FINA World Swimming Championships (25 m) - Men's 4 × 100 metre freestyle relay and last: Perungudi, Tiruchirappalli -[2018-02-13T00:35:04.510] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:35:04.513] [INFO] cheese - inserting 1000 documents. first: USS Embattle (AM-434) and last: Wikipedia:WikiProject Spam/LinkReports/karidies.com -[2018-02-13T00:35:04.591] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:35:04.630] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:35:04.694] [INFO] cheese - inserting 1000 documents. first: Lee Tae-yang and last: Nic.in -[2018-02-13T00:35:04.735] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:35:04.740] [INFO] cheese - inserting 1000 documents. first: Lev Lifshitz and last: 2005–06 Colorado Avalanche season -[2018-02-13T00:35:04.791] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:35:04.828] [INFO] cheese - inserting 1000 documents. first: 2014 UCI Cyclo-cross World Championships - Women's elite race and last: Cracklin' Bread -[2018-02-13T00:35:04.828] [INFO] cheese - inserting 1000 documents. first: Category:Education in Tuscarawas County, Ohio and last: Fly-by-light -[2018-02-13T00:35:04.854] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:35:04.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/VPHybridCAD and last: Template:VFL Cob -[2018-02-13T00:35:04.886] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:35:04.909] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:04.981] [INFO] cheese - inserting 1000 documents. first: USS Guide (MSO-447) and last: Wikipedia:Peer review/Transportation in Omaha/archive1 -[2018-02-13T00:35:05.031] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:35:05.070] [INFO] cheese - inserting 1000 documents. first: Hardin's Fort, Kentucky and last: Henry William Braid -[2018-02-13T00:35:05.082] [INFO] cheese - inserting 1000 documents. first: Los Chiles Airport and last: 2014-15 Rain or Shine Elasto Painters season -[2018-02-13T00:35:05.110] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:35:05.110] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:35:05.153] [INFO] cheese - inserting 1000 documents. first: Dave Hyatt and last: Pierre Pelot -[2018-02-13T00:35:05.207] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:35:05.289] [INFO] cheese - inserting 1000 documents. first: Paulin Sterkaj and last: Robert Moore (Pennsylvania) -[2018-02-13T00:35:05.309] [INFO] cheese - inserting 1000 documents. first: 2014-15 Navy Midshipmen men's basketball team and last: 2014-15 Southeastern Conference men's basketball season -[2018-02-13T00:35:05.309] [INFO] cheese - inserting 1000 documents. first: File:Runemagick-moonofthechaoseclipse.jpg and last: Oblates of the Benedictine Congregation of Monte Oliveto -[2018-02-13T00:35:05.323] [INFO] cheese - inserting 1000 documents. first: Clandestine stations and last: SH428 -[2018-02-13T00:35:05.332] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:05.334] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:35:05.348] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:05.380] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:35:05.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2007, Sep 25 and last: Category:Works by L. Sprague de Camp -[2018-02-13T00:35:05.521] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:35:05.562] [INFO] cheese - inserting 1000 documents. first: 2015 Argentina Open - Doubles and last: 2014-15 Serie A1 (men's water polo) -[2018-02-13T00:35:05.594] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:35:05.660] [INFO] cheese - inserting 1000 documents. first: Henry Braid and last: Category:1992–93 Australian region cyclone season -[2018-02-13T00:35:05.694] [INFO] cheese - inserting 1000 documents. first: Richard Fleischner and last: Heather Knight -[2018-02-13T00:35:05.708] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron and last: Lipoxin -[2018-02-13T00:35:05.715] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:35:05.741] [INFO] cheese - inserting 1000 documents. first: Kitchen rudder and last: Babatunde Oshinowo -[2018-02-13T00:35:05.749] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:35:05.773] [INFO] cheese - inserting 1000 documents. first: Route 428 and last: File:RobertGray.jpg -[2018-02-13T00:35:05.779] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:05.857] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:35:05.893] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:35:05.923] [INFO] cheese - inserting 1000 documents. first: 2015 Istanbul Open - Singles and last: 2015-16 Charlotte Checkers season -[2018-02-13T00:35:05.940] [INFO] cheese - inserting 1000 documents. first: Brădeanu and last: SR 240 -[2018-02-13T00:35:05.961] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:35:06.000] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:35:06.185] [INFO] cheese - inserting 1000 documents. first: The Prophecy (film series) and last: Quiet Achiever -[2018-02-13T00:35:06.185] [INFO] cheese - inserting 1000 documents. first: Sanjivani (singer) and last: Arturo González -[2018-02-13T00:35:06.213] [INFO] cheese - inserting 1000 documents. first: Lehmann Aviation LA300 and last: Probation (1932 film) -[2018-02-13T00:35:06.214] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:35:06.242] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:06.270] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:35:06.367] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blemmyes and last: Pfäfers Abbey -[2018-02-13T00:35:06.370] [INFO] cheese - inserting 1000 documents. first: Gene Rockwell and last: List of number-one albums in 2005 (New Zealand) -[2018-02-13T00:35:06.415] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:35:06.418] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:35:06.432] [INFO] cheese - inserting 1000 documents. first: SH 240 and last: Latvian People's front -[2018-02-13T00:35:06.469] [INFO] cheese - inserting 1000 documents. first: Red Nightmare and last: Cuvette Department -[2018-02-13T00:35:06.492] [INFO] cheese - inserting 1000 documents. first: 2015-16 Israel State Cup and last: You Made Me Want to Be a Saint -[2018-02-13T00:35:06.507] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:35:06.540] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:35:06.559] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:35:06.653] [INFO] cheese - inserting 1000 documents. first: File:LWNDWY single cover.jpg and last: Rio Nido, CA -[2018-02-13T00:35:06.702] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:06.712] [INFO] cheese - inserting 1000 documents. first: Category:Deaths by car bomb in Italy and last: Skirt, Hirari -[2018-02-13T00:35:06.751] [INFO] cheese - inserting 1000 documents. first: Hoodie Weather and last: Chen Chi-nan -[2018-02-13T00:35:06.771] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:35:06.780] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:06.836] [INFO] cheese - inserting 1000 documents. first: Seybouse and last: Ferdinand Karsch-Haack -[2018-02-13T00:35:06.879] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:35:06.899] [INFO] cheese - inserting 1000 documents. first: Penha (district of São Paulo) and last: Catrina Le-May Doan -[2018-02-13T00:35:06.960] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:35:06.977] [INFO] cheese - inserting 1000 documents. first: 2015 IAAF World Relays - Women's 4 × 200 metres relay and last: 2015-16 Pittsburgh Panthers men's basketball team -[2018-02-13T00:35:06.997] [INFO] cheese - inserting 1000 documents. first: Category:Classical mystics and last: Mad Money (film) -[2018-02-13T00:35:07.049] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:35:07.072] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:35:07.208] [INFO] cheese - inserting 1000 documents. first: Shaarey Zedek Synagogue (Winnipeg) and last: Wikipedia:Articles for deletion/Kamigawa -[2018-02-13T00:35:07.211] [INFO] cheese - inserting 1000 documents. first: Category:Corsica region articles needing translation from French Wikipedia and last: Tuyen Quang -[2018-02-13T00:35:07.219] [INFO] cheese - inserting 1000 documents. first: Tokyo Metro Nanboku Line and last: David B. Pall -[2018-02-13T00:35:07.286] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:07.303] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:35:07.342] [INFO] cheese - inserting 1000 documents. first: 2015-16 Evansville Purple Aces women's basketball team and last: Athletics at the 1952 Summer Olympics - Men's 4 × 400 metres relay -[2018-02-13T00:35:07.353] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:35:07.402] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:35:07.503] [INFO] cheese - inserting 1000 documents. first: 1950–51 Kentucky Wildcats men's basketball team and last: Context change potential -[2018-02-13T00:35:07.547] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:35:07.566] [INFO] cheese - inserting 1000 documents. first: Ể and last: Accounting System -[2018-02-13T00:35:07.580] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Pulaski Skyway/archive1 and last: Silvije Čavlina -[2018-02-13T00:35:07.607] [INFO] cheese - inserting 1000 documents. first: All For Latvia! - For Fatherland and Freedom/LNNK and last: The Serpent's Shadow (Lackey) -[2018-02-13T00:35:07.625] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:35:07.627] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:35:07.629] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:35:07.748] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Addleshaw Tower and last: La Espid Seyyed Fakhr -[2018-02-13T00:35:07.782] [INFO] cheese - inserting 1000 documents. first: The Sinner (Gerritsen) and last: All-Ireland Senior Club Football Championship 2010-11 -[2018-02-13T00:35:07.782] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:35:07.803] [INFO] cheese - batch complete in: 0.176 secs -[2018-02-13T00:35:07.829] [INFO] cheese - inserting 1000 documents. first: Category:Reportedly haunted locations in Italy and last: Dream girl -[2018-02-13T00:35:07.875] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:07.880] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Boardex and last: SS Francis J. O'Gara -[2018-02-13T00:35:07.933] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:07.944] [INFO] cheese - inserting 1000 documents. first: R. Syme and last: Faílde -[2018-02-13T00:35:07.947] [INFO] cheese - inserting 1000 documents. first: Tokyo International School and last: Kletkamp -[2018-02-13T00:35:07.985] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:35:07.991] [INFO] cheese - inserting 1000 documents. first: Homm and last: Lopid people -[2018-02-13T00:35:07.997] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:35:08.019] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2004 Summer Paralympics - Men's 800 metres T54 and last: Athletics at the 2013 Southeast Asian Games - Men's 1500 metres -[2018-02-13T00:35:08.040] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:35:08.047] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:35:08.121] [INFO] cheese - inserting 1000 documents. first: Staphylococcus pseudintermedius and last: Islas de Santa Fe National Park -[2018-02-13T00:35:08.153] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:35:08.266] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2013 Southeast Asian Games - Women's javelin throw and last: Category:Template space -[2018-02-13T00:35:08.279] [INFO] cheese - inserting 1000 documents. first: Portal:Latin music/Did you know?/20 and last: Brian Hanley -[2018-02-13T00:35:08.282] [INFO] cheese - inserting 1000 documents. first: Category:Theatre in Florida and last: Selent-Schlesen -[2018-02-13T00:35:08.286] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:35:08.304] [INFO] cheese - inserting 1000 documents. first: Schubert octet and last: Freedom4 Communications -[2018-02-13T00:35:08.318] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:35:08.323] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:08.372] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:08.413] [INFO] cheese - inserting 1000 documents. first: The Dakotas (TV Series) and last: Sullivan South High School (Tennessee) -[2018-02-13T00:35:08.460] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:08.519] [INFO] cheese - inserting 1000 documents. first: Category:Explosions in Saudi Arabia and last: William D. Dickey -[2018-02-13T00:35:08.545] [INFO] cheese - inserting 1000 documents. first: Balding-Nichols distribution and last: Template:Specific-section -[2018-02-13T00:35:08.566] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:35:08.593] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:35:08.641] [INFO] cheese - inserting 1000 documents. first: Aysgarth Falls and last: List of Italo-Dalmatian languages -[2018-02-13T00:35:08.761] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:08.890] [INFO] cheese - inserting 1000 documents. first: Eugenio Cajés and last: Wikipedia:Version 1.0 Editorial Team/Amphibian and reptile articles by quality/1 -[2018-02-13T00:35:08.909] [INFO] cheese - inserting 1000 documents. first: Bhairon Singh Shekhawat ministry (1977-1980) and last: Brookland - CUA -[2018-02-13T00:35:08.932] [INFO] cheese - inserting 1000 documents. first: Martina franca and last: Wikipedia:DELPRO -[2018-02-13T00:35:08.934] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:35:08.939] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:35:08.950] [INFO] cheese - inserting 1000 documents. first: RACS and last: Sangiran Early Man Site -[2018-02-13T00:35:08.969] [INFO] cheese - inserting 1000 documents. first: M. S. Kariapper and last: Gotvand Dam -[2018-02-13T00:35:08.972] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:35:09.010] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:35:09.030] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:35:09.037] [INFO] cheese - inserting 1000 documents. first: Augusta Anderson and last: Vung Liem District -[2018-02-13T00:35:09.135] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:35:09.201] [INFO] cheese - inserting 1000 documents. first: Broadway-City Hall station and last: Palo Verde School -[2018-02-13T00:35:09.220] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:35:09.307] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Amphibian and reptile articles by quality/2 and last: File:Flawless (go to the city) Cover.jpg -[2018-02-13T00:35:09.335] [INFO] cheese - inserting 1000 documents. first: List of Southern Romance languages and last: Category:1710s deaths -[2018-02-13T00:35:09.343] [INFO] cheese - inserting 1000 documents. first: Parc Municipa and last: Big River (California) -[2018-02-13T00:35:09.352] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:35:09.393] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:09.395] [INFO] cheese - inserting 1000 documents. first: List of Borgia popes and last: John Hardin McHenry -[2018-02-13T00:35:09.402] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:35:09.429] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Hjiooo/Archive and last: The fashion show -[2018-02-13T00:35:09.441] [INFO] cheese - inserting 1000 documents. first: Boston-Worcester-Providence combined statistical area and last: Columbus - West Point Combined Statistical Area -[2018-02-13T00:35:09.448] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:09.471] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:35:09.481] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:09.529] [INFO] cheese - inserting 1000 documents. first: Davor Ivo Stier and last: Warriors Orochi 3 Ultimate -[2018-02-13T00:35:09.583] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:09.719] [INFO] cheese - inserting 1000 documents. first: Communists in the United States Labor Movement (1937-50) and last: Empire of Alexander the Great -[2018-02-13T00:35:09.728] [INFO] cheese - inserting 1000 documents. first: Suzanne Rayappan and last: North West Region Waste Management Group -[2018-02-13T00:35:09.761] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:35:09.763] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:35:09.764] [INFO] cheese - inserting 1000 documents. first: Gerbillus andersoni and last: Fourth Light Armored Reconnaissance Battalion -[2018-02-13T00:35:09.807] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:35:09.810] [INFO] cheese - inserting 1000 documents. first: Karina Aznavourian and last: Yonōzu, Oita -[2018-02-13T00:35:09.824] [INFO] cheese - inserting 1000 documents. first: Henry Davis McHenry and last: Paul C. Paquet -[2018-02-13T00:35:09.882] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:35:09.931] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:35:10.018] [INFO] cheese - inserting 1000 documents. first: Jennifer Gillis and last: X6i -[2018-02-13T00:35:10.074] [INFO] cheese - inserting 1000 documents. first: 210182 Mazzini and last: Cycling at the 1976 Summer Olympics - Men's track time trial -[2018-02-13T00:35:10.097] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:35:10.121] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:35:10.213] [INFO] cheese - inserting 1000 documents. first: Category:1720s deaths and last: Edgar Ende -[2018-02-13T00:35:10.233] [INFO] cheese - inserting 1000 documents. first: Aeroflot Bonus and last: Gwyneth Cravens -[2018-02-13T00:35:10.272] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:35:10.268] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:35:10.333] [INFO] cheese - inserting 1000 documents. first: Diphu railway station and last: English National League (1981-82) -[2018-02-13T00:35:10.338] [INFO] cheese - inserting 1000 documents. first: Tatekoshi Station and last: File:Caroline-murmurs.jpg -[2018-02-13T00:35:10.348] [INFO] cheese - inserting 1000 documents. first: Thrash rap and last: Martin County Courthouse -[2018-02-13T00:35:10.352] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:35:10.358] [INFO] cheese - inserting 1000 documents. first: Earl I. West and last: Brown-spotted blenny -[2018-02-13T00:35:10.399] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:35:10.402] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:10.412] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:35:10.462] [INFO] cheese - inserting 1000 documents. first: Paul Karl Stumph and last: File:Brad columbus.jpeg -[2018-02-13T00:35:10.503] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:35:10.582] [INFO] cheese - inserting 1000 documents. first: Office of the First Minister and last: Pirate code of the Brethren -[2018-02-13T00:35:10.583] [INFO] cheese - inserting 1000 documents. first: England national football team results - unofficial matches and last: Esteghlal-Sepahan rivalry -[2018-02-13T00:35:10.612] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:35:10.614] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:35:10.744] [INFO] cheese - inserting 1000 documents. first: Brown-Spotted Blenny and last: Catalan sheepdog -[2018-02-13T00:35:10.782] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:35:10.792] [INFO] cheese - inserting 1000 documents. first: The Nutshell Studies of Unexpected Death and last: Wikipedia:CLANS -[2018-02-13T00:35:10.803] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 2002 Asian Games - Team eventing and last: First campaign in the Goguryeo-Tang War -[2018-02-13T00:35:10.838] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:35:10.844] [INFO] cheese - inserting 1000 documents. first: Bethlehem Chapel and last: Wikipedia:Featured article candidates/Ayn Rand/archive1 -[2018-02-13T00:35:10.866] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:35:10.876] [INFO] cheese - inserting 1000 documents. first: Canadian Criminal Code and last: Steinrode -[2018-02-13T00:35:10.910] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:35:10.927] [INFO] cheese - inserting 1000 documents. first: Greatest Video Game Music and last: John Lindsay, Lord Menmuir -[2018-02-13T00:35:10.933] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:35:10.982] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kalonga Chaambwa and last: General Betray Us Controversy -[2018-02-13T00:35:10.990] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:35:11.032] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:11.091] [INFO] cheese - inserting 1000 documents. first: Fencing at the 2015 Pan American Games - Men's foil and last: Football at the 2015 All-Africa Games - Women's tournament -[2018-02-13T00:35:11.114] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:35:11.206] [INFO] cheese - inserting 1000 documents. first: Trevor Ó Clochartaigh and last: Category:1915 in Uruguay -[2018-02-13T00:35:11.306] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:35:11.322] [INFO] cheese - inserting 1000 documents. first: Template:Scottish Clan and last: Serra de Tramuntana-Costa Nord -[2018-02-13T00:35:11.421] [INFO] cheese - inserting 1000 documents. first: Category:Radial engines and last: File:GFR American.jpg -[2018-02-13T00:35:11.448] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:35:11.454] [INFO] cheese - inserting 1000 documents. first: Lada 112 and last: Ο Boötis -[2018-02-13T00:35:11.555] [INFO] cheese - inserting 1000 documents. first: We'll Keep a Welcome (song) and last: Football at the 1998 Asian Games - Women -[2018-02-13T00:35:11.574] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:35:11.575] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:35:11.614] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:35:11.707] [INFO] cheese - inserting 1000 documents. first: Eureka Stockade (miniseries) and last: List of ECAC Hockey Rookie of the Year -[2018-02-13T00:35:11.764] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:35:11.822] [INFO] cheese - inserting 1000 documents. first: Stöckey and last: Ferraz de Vasconcelos -[2018-02-13T00:35:11.867] [INFO] cheese - inserting 1000 documents. first: Fenerbahçe Women Euroleague 2012-13 and last: History of cricket (1726-1740) -[2018-02-13T00:35:11.872] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:35:11.878] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in Uruguay and last: Eraserheads: The Reunion Concert (film) -[2018-02-13T00:35:11.890] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:35:11.947] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:35:11.955] [INFO] cheese - inserting 1000 documents. first: 1997 Eliteserien and last: File:Battle of Long Island Map.jpg -[2018-02-13T00:35:11.967] [INFO] cheese - inserting 1000 documents. first: Expert Opinion on Drug Metabolism & Toxicology and last: Antarna -[2018-02-13T00:35:11.993] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:12.014] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:35:12.123] [INFO] cheese - inserting 1000 documents. first: Δ Boötis and last: M-6 (Michigan) -[2018-02-13T00:35:12.127] [INFO] cheese - inserting 1000 documents. first: Jacques Aubert (entomologist) and last: Howard-Odmin-Sherman Farmstead -[2018-02-13T00:35:12.157] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:35:12.183] [INFO] cheese - inserting 1000 documents. first: Eulalia (Sister) Bourne and last: Partido Progresista de Coahuila -[2018-02-13T00:35:12.190] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:35:12.280] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:35:12.377] [INFO] cheese - inserting 1000 documents. first: Kevin Lotscher and last: Mongol–Langam languages -[2018-02-13T00:35:12.381] [INFO] cheese - inserting 1000 documents. first: Boyacá Chicó F.C and last: B. K. Follett -[2018-02-13T00:35:12.388] [INFO] cheese - inserting 1000 documents. first: Eleanor, Princess of Wales and last: Wikipedia:WikiProject Spam/LinkReports/hansburg.narod -[2018-02-13T00:35:12.418] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:35:12.422] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:35:12.428] [INFO] cheese - inserting 1000 documents. first: Iceland-Serbia and Montenegro relations and last: Honduras national football team results - 2002 -[2018-02-13T00:35:12.435] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:35:12.476] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:35:12.497] [INFO] cheese - inserting 1000 documents. first: Republican Leader of the United States Senate and last: Mr Potato Head -[2018-02-13T00:35:12.561] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:12.579] [INFO] cheese - inserting 1000 documents. first: Grapefruit drug interactions and last: Baha'i Faith in Tunisia -[2018-02-13T00:35:12.609] [INFO] cheese - inserting 1000 documents. first: M-6 (MI) and last: St Xavier's College -[2018-02-13T00:35:12.622] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:35:12.661] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:35:12.758] [INFO] cheese - inserting 1000 documents. first: Japan-Portugal relations and last: June 16-18, 2014 tornado outbreak -[2018-02-13T00:35:12.794] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:35:12.811] [INFO] cheese - inserting 1000 documents. first: Kaisariyeh and last: Prince albert in a can -[2018-02-13T00:35:12.816] [INFO] cheese - inserting 1000 documents. first: Template:User Corei3 and last: Kirihata-ji (Awa) -[2018-02-13T00:35:12.829] [INFO] cheese - inserting 1000 documents. first: IIHF Men's World Ranking and last: Ustazade Silvestre de Sacy -[2018-02-13T00:35:12.849] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:12.910] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:35:12.916] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:13.063] [INFO] cheese - inserting 1000 documents. first: SS City of Manchester and last: File:Mass Effect 2 Kasumi Gameplay.jpg -[2018-02-13T00:35:13.109] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:35:13.177] [INFO] cheese - inserting 1000 documents. first: Template:Fs team Snezhana Lyubertsy (women) and last: Tuyam Island -[2018-02-13T00:35:13.218] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:35:13.261] [INFO] cheese - inserting 1000 documents. first: Hank Hannegraaf and last: James Davidson (Ottawa mayor) -[2018-02-13T00:35:13.303] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:35:13.358] [INFO] cheese - inserting 1000 documents. first: Qazansu river and last: File:Captain Commando Screenshot.png -[2018-02-13T00:35:13.375] [INFO] cheese - inserting 1000 documents. first: File:Moravian1.jpeg and last: IFPI -[2018-02-13T00:35:13.410] [INFO] cheese - inserting 1000 documents. first: Portal:Mathematics/Featured picture template and last: Elena Ferrante -[2018-02-13T00:35:13.417] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:13.419] [INFO] cheese - inserting 1000 documents. first: Leonor Rivera-Kipping and last: St. Ursula's Church, Kouvola -[2018-02-13T00:35:13.433] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:35:13.447] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:35:13.455] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:35:13.504] [INFO] cheese - inserting 1000 documents. first: Oakland Point and last: St Matthews Anglican Church, West Pymble -[2018-02-13T00:35:13.512] [INFO] cheese - inserting 1000 documents. first: File:ST Tholian.jpg and last: K.G. Murray Publishing Company -[2018-02-13T00:35:13.547] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:35:13.556] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:35:13.670] [INFO] cheese - inserting 1000 documents. first: Chigwell (UK Parliament constituency) and last: Outstation movement -[2018-02-13T00:35:13.695] [INFO] cheese - inserting 1000 documents. first: Olan Omiping and last: List of compositions by Franz Liszt (S.1-350) -[2018-02-13T00:35:13.713] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:35:13.718] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:35:13.748] [INFO] cheese - inserting 1000 documents. first: European Parliament elections, 2009 and last: Wikipedia:WikiProject Spam/LinkReports/panamaeconomyinsight.com.pa -[2018-02-13T00:35:13.789] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:35:13.845] [INFO] cheese - inserting 1000 documents. first: J2K-Codec and last: Love's Small Song -[2018-02-13T00:35:13.889] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:35:13.892] [INFO] cheese - inserting 1000 documents. first: Laurent LeClaire and last: Symphony No. 3 (Raff) -[2018-02-13T00:35:13.917] [INFO] cheese - inserting 1000 documents. first: List of Singaporean electoral divisions (1988-91) and last: List of members of the parliament of East Timor, 2001-07 -[2018-02-13T00:35:13.941] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:35:13.943] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:35:13.979] [INFO] cheese - inserting 1000 documents. first: Lesser Seed Finch and last: Birkenhead High School Academy -[2018-02-13T00:35:14.039] [INFO] cheese - inserting 1000 documents. first: Scapular of Our Lady of Mount Carmel and last: Haripur district -[2018-02-13T00:35:14.044] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:14.109] [INFO] cheese - inserting 1000 documents. first: White Pyjamas (Franciscus Henri album) and last: Vali von der osten -[2018-02-13T00:35:14.113] [INFO] cheese - inserting 1000 documents. first: Honey to the Bee and last: Love and Other Planets -[2018-02-13T00:35:14.144] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:35:14.158] [INFO] cheese - inserting 1000 documents. first: Draft:List of companies in Greater Richmond, Virginia and last: List of violent incidents in the Israeli-Palestinian conflict, 2001 -[2018-02-13T00:35:14.196] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:35:14.199] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:35:14.287] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:35:14.423] [INFO] cheese - inserting 1000 documents. first: Coleophora galatellae and last: Fly Me Europe -[2018-02-13T00:35:14.442] [INFO] cheese - inserting 1000 documents. first: À La Poursuite Du Bonheur and last: Virginian Piedmont -[2018-02-13T00:35:14.533] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:35:14.567] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:35:14.678] [INFO] cheese - inserting 1000 documents. first: Little Italy-University Circle (RTA Rapid Transit station) and last: 2016 GOP primary -[2018-02-13T00:35:14.701] [INFO] cheese - inserting 1000 documents. first: Sanda Dubravcic and last: Big dynorphin -[2018-02-13T00:35:14.722] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:35:14.740] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:35:14.795] [INFO] cheese - inserting 1000 documents. first: Vali Von Der Osten and last: 1987 NCAA Division I-AA football season -[2018-02-13T00:35:14.845] [INFO] cheese - inserting 1000 documents. first: Associação de Escuteros de Angola and last: Rodange -[2018-02-13T00:35:14.846] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:35:14.886] [INFO] cheese - inserting 1000 documents. first: Siege of Sebastopol and last: Muskets -[2018-02-13T00:35:14.896] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:35:14.957] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:35:15.040] [INFO] cheese - inserting 1000 documents. first: File:Rayleigh scattering in sulfur suspension.jpg and last: Meanings of minor planet names: 432001-433000 -[2018-02-13T00:35:15.070] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:35:15.072] [INFO] cheese - inserting 1000 documents. first: Abdulfatah Ahmed and last: Lists of Juice -[2018-02-13T00:35:15.084] [INFO] cheese - inserting 1000 documents. first: Patrick Henry Mall and last: Antiques roadshow -[2018-02-13T00:35:15.084] [INFO] cheese - inserting 1000 documents. first: Poshteh Chah and last: Sir Walter Pringle of Lochton, Lord Newhall -[2018-02-13T00:35:15.107] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:15.121] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:35:15.150] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:35:15.170] [INFO] cheese - inserting 1000 documents. first: Bogdanović and last: David Chutter -[2018-02-13T00:35:15.207] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:35:15.256] [INFO] cheese - inserting 1000 documents. first: James Hernandez and last: File:Interior Spirit of Ontario.JPG -[2018-02-13T00:35:15.265] [INFO] cheese - inserting 1000 documents. first: Michigan-Chicago football rivalry and last: Low self-discharge nickel-metal hydride battery -[2018-02-13T00:35:15.289] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:35:15.299] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:35:15.412] [INFO] cheese - inserting 1000 documents. first: Franca BC and last: John R. Conniff -[2018-02-13T00:35:15.445] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:35:15.453] [INFO] cheese - inserting 1000 documents. first: 1993 PBA Governors' Cup and last: Whitemare -[2018-02-13T00:35:15.459] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 385001-386000 and last: Osnabrück-Brackwede railway -[2018-02-13T00:35:15.489] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:35:15.523] [INFO] cheese - inserting 1000 documents. first: Intimate Apparel (play) and last: Category:Islam in Colombia -[2018-02-13T00:35:15.533] [INFO] cheese - inserting 1000 documents. first: Network analysis and last: Peter Chen -[2018-02-13T00:35:15.546] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:15.583] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:35:15.637] [INFO] cheese - inserting 1000 documents. first: H I and last: Asbestos glove -[2018-02-13T00:35:15.639] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:35:15.649] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures on U.S. Route 66 and last: Category:1977 in aquatics -[2018-02-13T00:35:15.685] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:15.692] [INFO] cheese - inserting 1000 documents. first: Orient Point-New London Ferry and last: Ryan (airline) -[2018-02-13T00:35:15.709] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:35:15.739] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:35:15.868] [INFO] cheese - inserting 1000 documents. first: Template:User Part Time Resident-Belfast and last: Category:Club Athletico Paulistano basketball players -[2018-02-13T00:35:15.962] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:35:16.087] [INFO] cheese - inserting 1000 documents. first: S7 (airline) and last: Murkoff -[2018-02-13T00:35:16.112] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:35:16.121] [INFO] cheese - inserting 1000 documents. first: Activation key and last: KNUT GLOMSAAS -[2018-02-13T00:35:16.154] [INFO] cheese - inserting 1000 documents. first: Lobo Stadium and last: Template:You're welcome/doc -[2018-02-13T00:35:16.182] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:35:16.189] [INFO] cheese - inserting 1000 documents. first: File:TheyGotAway.jpg and last: Chestnut-bellied Helmet-shrike -[2018-02-13T00:35:16.224] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:35:16.247] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:16.256] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/Wavecut platform and last: Los Angeles Pacific College -[2018-02-13T00:35:16.338] [INFO] cheese - inserting 1000 documents. first: PATH (New Jersey-New York) and last: Revolutionary situation in Russia 1859-1861 -[2018-02-13T00:35:16.340] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:35:16.344] [INFO] cheese - inserting 1000 documents. first: Club Athletico Paulistano basketball and last: Wild Weekend -[2018-02-13T00:35:16.351] [INFO] cheese - inserting 1000 documents. first: Faustino Asprilla and last: Cellular pathology -[2018-02-13T00:35:16.376] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:35:16.414] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:35:16.432] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:35:16.601] [INFO] cheese - inserting 1000 documents. first: La Florida, Santiago Province and last: Devilish Presley -[2018-02-13T00:35:16.619] [INFO] cheese - inserting 1000 documents. first: Resistance movements in partitioned Poland (1795-1918) and last: Category:Films directed by Roger Richebé -[2018-02-13T00:35:16.658] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:35:16.658] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:16.676] [INFO] cheese - inserting 1000 documents. first: Template:Coahoma County, Mississippi and last: Portland Metropolitan Area -[2018-02-13T00:35:16.699] [INFO] cheese - inserting 1000 documents. first: 1974 Asian Games medal table and last: Over/under cable wrapping -[2018-02-13T00:35:16.714] [INFO] cheese - inserting 1000 documents. first: USS Seattle (ACR-11) and last: Canon S1 -[2018-02-13T00:35:16.725] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:35:16.760] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:16.788] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:16.916] [INFO] cheese - inserting 1000 documents. first: International Society of New Testament Studies and last: Mecyclothorax ovalipennis -[2018-02-13T00:35:16.926] [INFO] cheese - inserting 1000 documents. first: Louise Marwood and last: Segona Divisio 2006-07 -[2018-02-13T00:35:16.954] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:35:16.973] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:35:17.039] [INFO] cheese - inserting 1000 documents. first: Jean-Gilles du Coëtlosquet and last: Okahno -[2018-02-13T00:35:17.044] [INFO] cheese - inserting 1000 documents. first: Canton of Baden and last: Category:Lists of English phrases -[2018-02-13T00:35:17.097] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:17.209] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:35:17.318] [INFO] cheese - inserting 1000 documents. first: File:DJSnakeMiddle.jpg and last: Shooting at the 2015 European Games - Women's skeet -[2018-02-13T00:35:17.323] [INFO] cheese - inserting 1000 documents. first: Thomas de Vaus and last: Boeing 787-10 -[2018-02-13T00:35:17.347] [INFO] cheese - inserting 1000 documents. first: Template:Mana Party/meta/color and last: Ph. Eur. -[2018-02-13T00:35:17.348] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:35:17.384] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:35:17.424] [INFO] cheese - inserting 1000 documents. first: Minami-Ibaraki Station and last: Drakkar Entertainment -[2018-02-13T00:35:17.448] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:35:17.477] [INFO] cheese - inserting 1000 documents. first: Mecyclothorax gourvesioides and last: Policy & Internet -[2018-02-13T00:35:17.489] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:35:17.540] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:35:17.599] [INFO] cheese - inserting 1000 documents. first: Short track speed skating at the 2007 Asian Winter Games - Men's 1500 metres and last: Portosystemic anastomosis -[2018-02-13T00:35:17.634] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:35:17.663] [INFO] cheese - inserting 1000 documents. first: Route 390 (Maryland) and last: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/354 -[2018-02-13T00:35:17.713] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:35:17.801] [INFO] cheese - inserting 1000 documents. first: Speed skating at the 1968 Winter Olympics - Men's 5000 metres and last: Shooting at the 2002 Asian Games - Men's 25 metre rapid fire pistol -[2018-02-13T00:35:17.821] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:35:17.832] [INFO] cheese - inserting 1000 documents. first: USS Lycoming and last: B.A.C -[2018-02-13T00:35:17.888] [INFO] cheese - inserting 1000 documents. first: 50 Number Ones and last: Federal Reserve Bank Building (Boston) -[2018-02-13T00:35:17.888] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:35:17.894] [INFO] cheese - inserting 1000 documents. first: Abacetus brevicollis and last: File:StainsFeltAlbum.jpg -[2018-02-13T00:35:17.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Emmanuel Morin and last: Cracking India -[2018-02-13T00:35:17.947] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:35:17.972] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:17.977] [INFO] cheese - inserting 1000 documents. first: Portal:U.S. Roads/Did you know/May 2011 and last: Wikipedia:Articles for deletion/Isabelle leon -[2018-02-13T00:35:18.034] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:35:18.062] [INFO] cheese - inserting 1000 documents. first: Sarrià (Barcelona-Vallès Line) and last: Gonionota praeclivis -[2018-02-13T00:35:18.072] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:35:18.092] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:35:18.127] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (sports and games) articles by quality/355 and last: Richard Barrington -[2018-02-13T00:35:18.168] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:18.282] [INFO] cheese - inserting 1000 documents. first: Mitch Thorp and last: Template:Mystery-film-stub -[2018-02-13T00:35:18.306] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2012 Summer Olympics - Men's 4 × 200 metre freestyle relay and last: Swimming at the 2015 World Aquatics Championships - Men's 200 metre freestyle -[2018-02-13T00:35:18.331] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:35:18.341] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:35:18.441] [INFO] cheese - inserting 1000 documents. first: Huron College and last: Category:Pakistani non-fiction writers -[2018-02-13T00:35:18.494] [INFO] cheese - inserting 1000 documents. first: Bunny Johnson and last: Sherrie Sprenger -[2018-02-13T00:35:18.494] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:18.510] [INFO] cheese - inserting 1000 documents. first: Stade St. Leonard and last: Impuza Mugambi -[2018-02-13T00:35:18.551] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:35:18.556] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:35:18.560] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2015 World Aquatics Championships - Women's 4 × 100 metre freestyle relay and last: Prussian invasion of Holland -[2018-02-13T00:35:18.596] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:35:18.609] [INFO] cheese - inserting 1000 documents. first: List of Métis settlements in Alberta and last: E'Thembeni -[2018-02-13T00:35:18.667] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:35:18.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Funeral Orchestra and last: Brookville Equipment Corporation -[2018-02-13T00:35:18.733] [INFO] cheese - inserting 1000 documents. first: Category:Icelandic sopranos and last: Massanes, Gard -[2018-02-13T00:35:18.763] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:35:18.812] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:18.912] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2014 Summer Youth Olympics - Girls' doubles and last: Toyota concept vehicles, 2010-19 -[2018-02-13T00:35:18.945] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:35:18.975] [INFO] cheese - inserting 1000 documents. first: Comprehensive Income Policy Agreement and last: File:America's Next Great Restaurant (emblem).png -[2018-02-13T00:35:19.019] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:35:19.069] [INFO] cheese - inserting 1000 documents. first: RW van Bemmelen and last: Wikipedia:Miscellany for deletion/User:Thodin/claims -[2018-02-13T00:35:19.081] [INFO] cheese - inserting 1000 documents. first: Rockford Township, Floyd County, Iowa and last: Colorado River Floods of 1983 -[2018-02-13T00:35:19.123] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:35:19.128] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:35:19.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dark Tichondrias/Userboxes/Receive Anal Sex (2nd nomination) and last: Tohru Nogami -[2018-02-13T00:35:19.178] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:35:19.200] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Florida, 1857 and last: File:Ram Lal.jpeg -[2018-02-13T00:35:19.240] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:35:19.322] [INFO] cheese - inserting 1000 documents. first: Marc Béziat and last: Athar Sohaib -[2018-02-13T00:35:19.352] [INFO] cheese - inserting 1000 documents. first: Asura habrotis and last: General Blood -[2018-02-13T00:35:19.358] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:35:19.375] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of innovative inventions and last: Max Lieberman -[2018-02-13T00:35:19.413] [INFO] cheese - inserting 1000 documents. first: United states sales tax and last: The Art Institute of California - Inland Empire -[2018-02-13T00:35:19.415] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:35:19.444] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:19.476] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:35:19.479] [INFO] cheese - inserting 1000 documents. first: Uniforms of the Luftwaffe (1935-1945) and last: The Divergent Series: Insurgent - Original Motion Picture Soundtrack -[2018-02-13T00:35:19.503] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:35:19.522] [INFO] cheese - inserting 1000 documents. first: Nina burleigh and last: Wikipedia:WikiProject Spam/LinkReports/saturdaychurch.org -[2018-02-13T00:35:19.578] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:35:19.618] [INFO] cheese - inserting 1000 documents. first: BASToF Syndrome and last: Tobias Delius -[2018-02-13T00:35:19.666] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:19.710] [INFO] cheese - inserting 1000 documents. first: PulseAsia Inc and last: Wrestling at the 1928 Summer Olympics - Men's Greco-Roman bantamweight -[2018-02-13T00:35:19.733] [INFO] cheese - inserting 1000 documents. first: Franciscan Action Network and last: Centruroides ornatus -[2018-02-13T00:35:19.735] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:35:19.751] [INFO] cheese - inserting 1000 documents. first: Don Gustavson and last: Miu-Khumi -[2018-02-13T00:35:19.777] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:35:19.819] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:35:19.899] [INFO] cheese - inserting 1000 documents. first: Robert-Jean de Coigny and last: Ignition (album) -[2018-02-13T00:35:19.968] [INFO] cheese - inserting 1000 documents. first: Shūkichi Tsujimura and last: File:Innersydneyrail.jpg -[2018-02-13T00:35:19.986] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:35:20.014] [INFO] cheese - inserting 1000 documents. first: Women in warfare and the military (1900-1945) and last: Eremophila spuria -[2018-02-13T00:35:20.055] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:35:20.092] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:35:20.124] [INFO] cheese - inserting 1000 documents. first: Template:Pantheon of Dragonlance and last: On the Sun -[2018-02-13T00:35:20.148] [INFO] cheese - inserting 1000 documents. first: TheFacebook and last: Cascading Stylesheets -[2018-02-13T00:35:20.200] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:20.256] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:35:20.298] [INFO] cheese - inserting 1000 documents. first: Template:Extinct breeds of dog and last: File:Little Red - Midnight Remember.jpg -[2018-02-13T00:35:20.370] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:35:20.426] [INFO] cheese - inserting 1000 documents. first: Sardehat-e Ja'far and last: Category:600 mm gauge railways in Poland -[2018-02-13T00:35:20.469] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:35:20.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/bahamasfinancialservices.com and last: Wikipedia:Version 1.0 Editorial Team/Neuroscience articles by quality statistics -[2018-02-13T00:35:20.516] [INFO] cheese - inserting 1000 documents. first: Zuiko Digital ED 14-54mm f/2.8-3.5 II and last: Category:Financial services companies established in 2016 -[2018-02-13T00:35:20.548] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:20.582] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:20.709] [INFO] cheese - inserting 1000 documents. first: Osorioichthys and last: File:Courtneyfathom.jpg -[2018-02-13T00:35:20.762] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:35:20.824] [INFO] cheese - inserting 1000 documents. first: Robert Wilson (Missouri) and last: Nathaniel Barksdale Dial -[2018-02-13T00:35:20.881] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:20.889] [INFO] cheese - inserting 1000 documents. first: Belsőtelep and last: KF Tirana season 2009–10 -[2018-02-13T00:35:20.930] [INFO] cheese - inserting 1000 documents. first: Shahpurkandi dam project and last: Liquor Goat -[2018-02-13T00:35:20.931] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:35:20.966] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:35:20.994] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2007 October 2 and last: List of runestones -[2018-02-13T00:35:21.031] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:35:21.041] [INFO] cheese - inserting 1000 documents. first: Lee Clark (footballer) and last: Geoffroy Saint-Hilaire -[2018-02-13T00:35:21.103] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:35:21.140] [INFO] cheese - inserting 1000 documents. first: NDS pen and last: Gregg Steinhafel -[2018-02-13T00:35:21.191] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:21.270] [INFO] cheese - inserting 1000 documents. first: フルバ and last: Dallas Texans (AFL) first-round draft picks -[2018-02-13T00:35:21.275] [INFO] cheese - inserting 1000 documents. first: Cation-pi interaction and last: (?) -[2018-02-13T00:35:21.305] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:35:21.327] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:35:21.361] [INFO] cheese - inserting 1000 documents. first: Pahn and last: Arkansas State Highway 16 Spur -[2018-02-13T00:35:21.362] [INFO] cheese - inserting 1000 documents. first: Harlow District Council election, 2003 and last: Subject whom -[2018-02-13T00:35:21.412] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:35:21.428] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:35:21.564] [INFO] cheese - inserting 1000 documents. first: Category:Freeman Dyson and last: Lunar eclipse (disambiguation) -[2018-02-13T00:35:21.610] [INFO] cheese - inserting 1000 documents. first: 1923 Tour of Flanders and last: Maaroufi -[2018-02-13T00:35:21.609] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:21.658] [INFO] cheese - inserting 1000 documents. first: File:Cosmis Requiem.jpg and last: Yaquzlejeh -[2018-02-13T00:35:21.659] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:35:21.675] [INFO] cheese - inserting 1000 documents. first: Geoffroy-Saint-Hilaire and last: Town privileges -[2018-02-13T00:35:21.707] [INFO] cheese - inserting 1000 documents. first: History of the administrative division of Russia in 1708–1744 and last: Jonathan Thompson (disambiguation) -[2018-02-13T00:35:21.730] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T00:35:21.732] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:35:21.742] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:35:21.970] [INFO] cheese - inserting 1000 documents. first: List of the it crowd episodes and last: Noauto -[2018-02-13T00:35:22.022] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:35:22.030] [INFO] cheese - inserting 1000 documents. first: The Liberal Party and last: Tip cat -[2018-02-13T00:35:22.042] [INFO] cheese - inserting 1000 documents. first: Template:R from pejorative and last: Category:Wikipedians by alma mater: Maryland Institute College of Art -[2018-02-13T00:35:22.073] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:35:22.094] [INFO] cheese - inserting 1000 documents. first: HMS Croome and last: Anticipate Recordings -[2018-02-13T00:35:22.134] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:35:22.137] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:35:22.289] [INFO] cheese - inserting 1000 documents. first: Bedside test and last: Peninsula Center, Wisconsin -[2018-02-13T00:35:22.368] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:35:22.403] [INFO] cheese - inserting 1000 documents. first: Volodymyr-Volynsky and last: List of members of the Australian House of Representatives -[2018-02-13T00:35:22.405] [INFO] cheese - inserting 1000 documents. first: Sulichay and last: Indonesia–Brazil relations -[2018-02-13T00:35:22.493] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:22.519] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of cultural references to Stephen King and last: Li Qiang (activist) -[2018-02-13T00:35:22.519] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:35:22.620] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:35:22.668] [INFO] cheese - inserting 1000 documents. first: Xavi Torres and last: Actenochroma -[2018-02-13T00:35:22.686] [INFO] cheese - inserting 1000 documents. first: List of head masters of Eton College and last: Template:2001 Southland Football League standings -[2018-02-13T00:35:22.729] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:35:22.757] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:35:22.799] [INFO] cheese - inserting 1000 documents. first: Markinch Curling Club and last: Adams Township, Washington County, OH -[2018-02-13T00:35:22.851] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:35:22.866] [INFO] cheese - inserting 1000 documents. first: Stringmusic and last: N K -[2018-02-13T00:35:22.908] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:22.949] [INFO] cheese - inserting 1000 documents. first: Indonesia - Brazil relations and last: Philip krejcarek -[2018-02-13T00:35:23.006] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:35:23.023] [INFO] cheese - inserting 1000 documents. first: Helen Lines and last: Portal:Ayyavazhi/Introduction -[2018-02-13T00:35:23.080] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:23.097] [INFO] cheese - inserting 1000 documents. first: Template:Capcom and last: Maltermoro -[2018-02-13T00:35:23.119] [INFO] cheese - inserting 1000 documents. first: Electrode (Pokemon) and last: Category:Source (journalism) -[2018-02-13T00:35:23.121] [INFO] cheese - inserting 1000 documents. first: Chaos;Child and last: List of Secretaries-General of the Association of Southeast Asian Nations -[2018-02-13T00:35:23.131] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:35:23.162] [INFO] cheese - inserting 1000 documents. first: Rock n Roll Animal and last: College Slam -[2018-02-13T00:35:23.167] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:35:23.176] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:35:23.204] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:35:23.329] [INFO] cheese - inserting 1000 documents. first: N L and last: List of UK Dance Singles Chart number ones of 2003 -[2018-02-13T00:35:23.360] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:35:23.419] [INFO] cheese - inserting 1000 documents. first: Phillies Clubhouse and last: DJmag.com -[2018-02-13T00:35:23.426] [INFO] cheese - inserting 1000 documents. first: Category:Military installations in Sindh and last: Tideglusib -[2018-02-13T00:35:23.448] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:35:23.469] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:35:23.497] [INFO] cheese - inserting 1000 documents. first: Adoni revenue division and last: Rudolf Auspitz -[2018-02-13T00:35:23.500] [INFO] cheese - inserting 1000 documents. first: Big Bone, KY and last: Perca schrenkii -[2018-02-13T00:35:23.512] [INFO] cheese - inserting 1000 documents. first: Aladdin's Eatery and last: File:Bloc Party - Ion Square.ogg -[2018-02-13T00:35:23.530] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:35:23.533] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:35:23.560] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:23.705] [INFO] cheese - inserting 1000 documents. first: Category:Manx politicians and last: Tav Falco -[2018-02-13T00:35:23.757] [INFO] cheese - inserting 1000 documents. first: File:H. Verlan Andersen.jpg and last: Law of Macao -[2018-02-13T00:35:23.762] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:35:23.814] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:35:23.893] [INFO] cheese - inserting 1000 documents. first: Christian Gospel and last: 爪 -[2018-02-13T00:35:23.935] [INFO] cheese - inserting 1000 documents. first: Thesaurus (Clare Fischer album) and last: Category:Baseball venues in the Dallas-Fort Worth Metroplex -[2018-02-13T00:35:23.969] [INFO] cheese - inserting 1000 documents. first: Phoenix Suns head coaches and last: Template:ISO 3166 code POR -[2018-02-13T00:35:23.986] [INFO] cheese - inserting 1000 documents. first: Håkan Ericsson and last: Stargate: Extinction -[2018-02-13T00:35:23.996] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:24.011] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:35:24.059] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:35:24.088] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:35:24.218] [INFO] cheese - inserting 1000 documents. first: Bradenton Beach Scenic Highway and last: Template:US-jazz-band-stub -[2018-02-13T00:35:24.285] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:35:24.437] [INFO] cheese - inserting 1000 documents. first: Ario Soerjo and last: Transmission (EP)(Mêlée) -[2018-02-13T00:35:24.445] [INFO] cheese - inserting 1000 documents. first: Portal:Earth sciences/Selected articles and last: Gerhard Hasel -[2018-02-13T00:35:24.471] [INFO] cheese - inserting 1000 documents. first: Tongyi and last: WWE Internet Champion -[2018-02-13T00:35:24.480] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:35:24.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Alexander Kapranos and last: Leliwa coat of arms -[2018-02-13T00:35:24.507] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Female Prisoner Ayaka: Tormenting and Breaking in a Bitch and last: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Legionnaires' disease -[2018-02-13T00:35:24.510] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:35:24.535] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:35:24.547] [INFO] cheese - inserting 1000 documents. first: Soosai and last: Harrogate Bus Station -[2018-02-13T00:35:24.579] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:35:24.593] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:24.623] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:24.661] [INFO] cheese - inserting 1000 documents. first: Glenn Layendecker and last: Operation Dove (Ireland) -[2018-02-13T00:35:24.703] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:24.834] [INFO] cheese - inserting 1000 documents. first: Turkey Spain relations and last: Wikipedia:Cheapness -[2018-02-13T00:35:24.880] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:35:24.885] [INFO] cheese - inserting 1000 documents. first: Achintya Bhedābheda and last: John Steele House (disambiguation) -[2018-02-13T00:35:24.925] [INFO] cheese - inserting 1000 documents. first: Dumping Syndrome and last: File:StAndrews.jpg -[2018-02-13T00:35:24.927] [INFO] cheese - inserting 1000 documents. first: 316028 Patrickwils and last: 350509 Vepřoknedlozelo -[2018-02-13T00:35:24.928] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:35:24.954] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:35:24.981] [INFO] cheese - inserting 1000 documents. first: Munyon and last: Mendota Station -[2018-02-13T00:35:24.981] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:35:25.039] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:35:25.076] [INFO] cheese - inserting 1000 documents. first: Little monocacy river and last: Wikipedia:Votes for deletion/Vigatec (Chile) -[2018-02-13T00:35:25.118] [INFO] cheese - inserting 1000 documents. first: Zoran Žigić and last: File:Polmadie.jpg -[2018-02-13T00:35:25.145] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:35:25.184] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:25.248] [INFO] cheese - inserting 1000 documents. first: 350509 Veproknedlozelo and last: Leo Baeck Institute London -[2018-02-13T00:35:25.250] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CHEAPNESS and last: Aerial (Scottish band) -[2018-02-13T00:35:25.287] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:35:25.306] [INFO] cheese - inserting 1000 documents. first: Far Tottering and Oyster Creek Railway and last: Muscular pile -[2018-02-13T00:35:25.325] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:25.395] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:35:25.465] [INFO] cheese - inserting 1000 documents. first: Bert Sprotte and last: List of National Historic Landmarks in Louisiana -[2018-02-13T00:35:25.507] [INFO] cheese - inserting 1000 documents. first: Municipalities of Guam and last: 1980–1982 -[2018-02-13T00:35:25.544] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:35:25.573] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:35:25.680] [INFO] cheese - inserting 1000 documents. first: File:FC Boskovice logo.svg and last: List of mountains of Missouri -[2018-02-13T00:35:25.713] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:35:25.789] [INFO] cheese - inserting 1000 documents. first: U.S. Attorney for the Northern District of Georgia and last: KWR-37 -[2018-02-13T00:35:25.797] [INFO] cheese - inserting 1000 documents. first: Andrzej Gryfita and last: Wikipedia:WikiProject Spam/LinkReports/codingplayground.blogspot.it -[2018-02-13T00:35:25.802] [INFO] cheese - inserting 1000 documents. first: Marshall, Peter and last: Category:Decadent literature -[2018-02-13T00:35:25.826] [INFO] cheese - inserting 1000 documents. first: Marchioness of Kipon and last: Yoan Andreu -[2018-02-13T00:35:25.852] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:35:25.852] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:35:25.865] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:25.868] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:35:25.959] [INFO] cheese - inserting 1000 documents. first: National Fisheries Institute and last: Hasting Old Town Week -[2018-02-13T00:35:26.001] [INFO] cheese - inserting 1000 documents. first: All They Ever Wanted and last: Living in China -[2018-02-13T00:35:26.014] [INFO] cheese - inserting 1000 documents. first: Giovanni Antonio Acquaviva d'Aragona and last: Lutzia shinonagai -[2018-02-13T00:35:26.018] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:35:26.048] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:35:26.056] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:35:26.165] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/codingplayground.blogspot.it and last: Chapykh -[2018-02-13T00:35:26.194] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:35:26.248] [INFO] cheese - inserting 1000 documents. first: Johnny Paris and last: Bobby Ayala -[2018-02-13T00:35:26.274] [INFO] cheese - inserting 1000 documents. first: Category:3rd millennium in Lithuania and last: Frequency Modulation Radio -[2018-02-13T00:35:26.287] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:35:26.307] [INFO] cheese - inserting 1000 documents. first: The Great Ones Remember and last: Wikipedia:Ottoman/P -[2018-02-13T00:35:26.311] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:35:26.349] [INFO] cheese - inserting 1000 documents. first: A. Flea and last: Headwater stream -[2018-02-13T00:35:26.364] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:35:26.404] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:26.426] [INFO] cheese - inserting 1000 documents. first: KWT-37 and last: Barayev -[2018-02-13T00:35:26.451] [INFO] cheese - inserting 1000 documents. first: File:D-Lite - D'slove.jpg and last: Category:Scientists from Assam -[2018-02-13T00:35:26.474] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:35:26.484] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:35:26.579] [INFO] cheese - inserting 1000 documents. first: Golabar-e Sofla and last: Wikipedia:WikiProject Spam/LinkReports/girlsbcn-online.com -[2018-02-13T00:35:26.617] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:35:26.658] [INFO] cheese - inserting 1000 documents. first: Gabriela (disambiguation) and last: Moses Leaving to Egypt (Pietro Perugino) -[2018-02-13T00:35:26.709] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:35:26.767] [INFO] cheese - inserting 1000 documents. first: Kinnitty Castle and last: Saffron-crested Tyrant Manakin -[2018-02-13T00:35:26.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Women in Red/Youth lit writers and last: Nans Peters -[2018-02-13T00:35:26.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Patrol Men (film) and last: Princess Virginia (Ira) of Fürstenberg -[2018-02-13T00:35:26.813] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:35:26.820] [INFO] cheese - inserting 1000 documents. first: Square-lattice Ising model and last: Davies, Roger -[2018-02-13T00:35:26.841] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:35:26.891] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:26.909] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:35:27.078] [INFO] cheese - inserting 1000 documents. first: Sulphur-bellied Tyrant Manakin and last: All the weyrs of pern -[2018-02-13T00:35:27.099] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:35:27.102] [INFO] cheese - inserting 1000 documents. first: WellStar Kennestone Regional Medical Hospital and last: Rust and Bone (short story collection) -[2018-02-13T00:35:27.104] [INFO] cheese - inserting 1000 documents. first: Danio nigrofasciatus and last: George A. Smith -[2018-02-13T00:35:27.155] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:27.164] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:27.178] [INFO] cheese - inserting 1000 documents. first: Sunday Times Rich List 2011 and last: TNA Entertainment, LLC -[2018-02-13T00:35:27.247] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:35:27.250] [INFO] cheese - inserting 1000 documents. first: Davis, Willie and last: Taylor, Kate -[2018-02-13T00:35:27.277] [INFO] cheese - inserting 1000 documents. first: Concentrate of Poppy Straw and last: Category:Linköping University academics -[2018-02-13T00:35:27.287] [INFO] cheese - inserting 1000 documents. first: Category:Curling competitions in France and last: La Salle Parish, Louisiana -[2018-02-13T00:35:27.297] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:35:27.326] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:35:27.334] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:27.363] [INFO] cheese - inserting 1000 documents. first: All the woo in the world and last: Category:Uzbekistani classical pianists -[2018-02-13T00:35:27.394] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:35:27.465] [INFO] cheese - inserting 1000 documents. first: Bad Elk v. U.S. and last: Aq Bolagh Rural District -[2018-02-13T00:35:27.498] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:35:27.571] [INFO] cheese - inserting 1000 documents. first: Fubuki Shirou and last: Andrea Cipressa -[2018-02-13T00:35:27.605] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:35:27.613] [INFO] cheese - inserting 1000 documents. first: V. O. Key Jr. and last: Wikipedia:Articles for deletion/Video game proponent -[2018-02-13T00:35:27.626] [INFO] cheese - inserting 1000 documents. first: GNTC and last: NarNarayan -[2018-02-13T00:35:27.662] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:35:27.693] [INFO] cheese - inserting 1000 documents. first: Mayorship of Rob Ford and last: Category:Scientists from Goa -[2018-02-13T00:35:27.674] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:35:27.717] [INFO] cheese - inserting 1000 documents. first: 2009-10 Pittsburgh Panthers women's basketball team and last: Pictures of the Floating World -[2018-02-13T00:35:27.740] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:35:27.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PRONUNCIATION and last: Wikipedia:Articles for deletion/Mike Hines -[2018-02-13T00:35:27.773] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:35:27.810] [INFO] cheese - inserting 1000 documents. first: Vermicious Knids and last: 1982 WAFL season -[2018-02-13T00:35:27.825] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:27.849] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:35:28.007] [INFO] cheese - inserting 1000 documents. first: TDM-GCC and last: Template:Canadian election result/pickup -[2018-02-13T00:35:28.013] [INFO] cheese - inserting 1000 documents. first: Bedecs and last: Aingya, Tantabin -[2018-02-13T00:35:28.039] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:35:28.077] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:35:28.111] [INFO] cheese - inserting 1000 documents. first: Historical record archives of FC Dynamo Kyiv and last: Spear-Bearer -[2018-02-13T00:35:28.130] [INFO] cheese - inserting 1000 documents. first: Palos (TV series) and last: And When Did You Last See Your Father? -[2018-02-13T00:35:28.211] [INFO] cheese - inserting 1000 documents. first: Null picture and last: Pat Harrington Sr -[2018-02-13T00:35:28.198] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:35:28.220] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:35:28.256] [INFO] cheese - inserting 1000 documents. first: Bugil Girls' High School and last: Cliffs notes -[2018-02-13T00:35:28.306] [INFO] cheese - inserting 1000 documents. first: Category:Olympic table tennis players of Argentina and last: Hart Plain -[2018-02-13T00:35:28.320] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:35:28.325] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:28.393] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:35:28.458] [INFO] cheese - inserting 1000 documents. first: ¡Alabadle! and last: Morristown Metropolitan Statistical Area -[2018-02-13T00:35:28.481] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:35:28.580] [INFO] cheese - inserting 1000 documents. first: Joseph Mitchell (city manager) and last: Subaša -[2018-02-13T00:35:28.586] [INFO] cheese - inserting 1000 documents. first: Aingzauk and last: Michio kaku -[2018-02-13T00:35:28.586] [INFO] cheese - inserting 1000 documents. first: Torrington by-election, 1958 and last: Murmur of the heart -[2018-02-13T00:35:28.610] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:35:28.617] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:28.627] [INFO] cheese - inserting 1000 documents. first: Eleutherine and last: Ararat Cement -[2018-02-13T00:35:28.646] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:35:28.672] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:35:28.715] [INFO] cheese - inserting 1000 documents. first: Nerinckx, Charles and last: Category:Politics of County Kerry -[2018-02-13T00:35:28.735] [INFO] cheese - batch complete in: 0.254 secs -[2018-02-13T00:35:28.796] [INFO] cheese - inserting 1000 documents. first: Template:Events at the 2013 Asian Youth Games and last: Shahrestanak, Zanjan -[2018-02-13T00:35:28.837] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:35:28.851] [INFO] cheese - inserting 1000 documents. first: Music of the heart and last: Lei Aurea -[2018-02-13T00:35:28.882] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:35:28.888] [INFO] cheese - inserting 1000 documents. first: Category:PlayStation 2 peripherals and last: Ditfurt -[2018-02-13T00:35:28.904] [INFO] cheese - inserting 1000 documents. first: Indiana State Road 269 and last: Archduke ferdinand zvonimir of austria -[2018-02-13T00:35:28.909] [INFO] cheese - inserting 1000 documents. first: Dinsmoor, Samuel and last: Micah Lea'alafa -[2018-02-13T00:35:28.938] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:35:28.946] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:35:28.950] [INFO] cheese - inserting 1000 documents. first: Comparison of mobile IRC clients and last: File:Overseas Property TV.svg -[2018-02-13T00:35:28.955] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:35:28.993] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:35:29.056] [INFO] cheese - inserting 1000 documents. first: File:Resolution (Hamiet Bluiett album).jpg and last: Gjysylkanë -[2018-02-13T00:35:29.099] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:35:29.168] [INFO] cheese - inserting 1000 documents. first: Sahr Satana and last: File:The Big Bang Single.jpg -[2018-02-13T00:35:29.195] [INFO] cheese - inserting 1000 documents. first: Archduke franz ferdinand of austria and last: Arrondissement of belley -[2018-02-13T00:35:29.208] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:35:29.217] [INFO] cheese - inserting 1000 documents. first: Piano-Rag-Music and last: Canal Days Marine Heritage Festival -[2018-02-13T00:35:29.218] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:35:29.260] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:35:29.273] [INFO] cheese - inserting 1000 documents. first: CfBT Education Trust and last: Son of Sam (EP) -[2018-02-13T00:35:29.305] [INFO] cheese - inserting 1000 documents. first: Faro de Punta Higuero and last: Wikipedia:WikiProject Wikibundle/Icon -[2018-02-13T00:35:29.314] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:35:29.347] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:35:29.375] [INFO] cheese - inserting 1000 documents. first: Arrondissement of bergerac and last: Aslackby and laughton -[2018-02-13T00:35:29.398] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:35:29.459] [INFO] cheese - inserting 1000 documents. first: Fernando Stahelin and last: Les Fonts (FGC) -[2018-02-13T00:35:29.497] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:35:29.512] [INFO] cheese - inserting 1000 documents. first: EADS SPACE and last: Wikipedia:Votes for deletion/Nejaa Halcyon -[2018-02-13T00:35:29.540] [INFO] cheese - inserting 1000 documents. first: Spes Utia Island and last: Felsodetrehem -[2018-02-13T00:35:29.585] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:35:29.636] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:35:29.663] [INFO] cheese - inserting 1000 documents. first: Category:Airports in Balearic Islands and last: David Briggs (composer) -[2018-02-13T00:35:29.705] [INFO] cheese - inserting 1000 documents. first: Farariana and last: More Greatest Hits of the Monkees -[2018-02-13T00:35:29.736] [INFO] cheese - inserting 1000 documents. first: File:Varian's War.jpg and last: The Difference (Nick Jonas song) -[2018-02-13T00:35:29.761] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:29.781] [INFO] cheese - inserting 1000 documents. first: National Association of Old IRA and last: Half angle equations -[2018-02-13T00:35:29.797] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:35:29.838] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:35:29.856] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:30.130] [INFO] cheese - inserting 1000 documents. first: File:DCPLlogo.png and last: Mazra'eh-ye Sabz Dasht -[2018-02-13T00:35:30.183] [INFO] cheese - inserting 1000 documents. first: Stella Kilonzo and last: DXBB -[2018-02-13T00:35:30.261] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:35:30.283] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:35:30.334] [INFO] cheese - inserting 1000 documents. first: Malcolm Betruger and last: File:Herbertbrownstein2.jpg -[2018-02-13T00:35:30.338] [INFO] cheese - inserting 1000 documents. first: Old Fall River Road and last: Nikolay Kolesov -[2018-02-13T00:35:30.372] [INFO] cheese - inserting 1000 documents. first: Half-angle equations and last: Ying-yuan Lee -[2018-02-13T00:35:30.377] [INFO] cheese - inserting 1000 documents. first: Bern Psychomachia and last: Blue Bloods (season 7) -[2018-02-13T00:35:30.379] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:35:30.381] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:35:30.414] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:35:30.453] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:35:30.466] [INFO] cheese - inserting 1000 documents. first: Eddie Hart (athlete) and last: Category:1460s births -[2018-02-13T00:35:30.526] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T00:35:30.676] [INFO] cheese - inserting 1000 documents. first: Roland Frasier and last: Wikipedia:Articles for deletion/TestMP -[2018-02-13T00:35:30.734] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:35:30.739] [INFO] cheese - inserting 1000 documents. first: Heartstrings (TV series) and last: Template:Chadian presidential election, 2011 -[2018-02-13T00:35:30.791] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:30.809] [INFO] cheese - inserting 1000 documents. first: Ken Smith (politician) and last: United States Virgin Islands Democratic caucuses, 2016 -[2018-02-13T00:35:30.813] [INFO] cheese - inserting 1000 documents. first: File:WhoIAmHatesWhoIveBeen.jpg and last: WSTQ FM -[2018-02-13T00:35:30.842] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:35:30.858] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:35:30.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/royalunibrew.com and last: Cycles (Doobies) -[2018-02-13T00:35:30.906] [INFO] cheese - inserting 1000 documents. first: Moldova–Malta relations and last: American Board of Dermatology -[2018-02-13T00:35:30.938] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:35:30.963] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:31.118] [INFO] cheese - inserting 1000 documents. first: Category:Animal anatomy stubs and last: Category:1967 establishments in Iceland -[2018-02-13T00:35:31.123] [INFO] cheese - inserting 1000 documents. first: Category:1460s deaths and last: Warnia coat of arms -[2018-02-13T00:35:31.130] [INFO] cheese - inserting 1000 documents. first: Vereinigte Astronomische Gesellschaft and last: Australasian journal of philosophy -[2018-02-13T00:35:31.146] [INFO] cheese - inserting 1000 documents. first: Beitou Museum and last: Wikipedia:WikiProject Spam/LinkReports/biggsltd.com -[2018-02-13T00:35:31.149] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:35:31.156] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:35:31.171] [INFO] cheese - inserting 1000 documents. first: United States Virgin Islands Republican caucus, 2016 and last: 1901 (disambiguation) -[2018-02-13T00:35:31.180] [INFO] cheese - inserting 1000 documents. first: Convoy of death and last: Short Sandringham & Seaforth -[2018-02-13T00:35:31.198] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:35:31.201] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:35:31.229] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:35:31.237] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:35:31.340] [INFO] cheese - inserting 1000 documents. first: James Mills (disambiguation) and last: Docosatetraenyl ethanolamide -[2018-02-13T00:35:31.399] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:35:31.469] [INFO] cheese - inserting 1000 documents. first: Australasian society for computers in learning in tertiary education and last: Category:German Navy ship names -[2018-02-13T00:35:31.497] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:35:31.568] [INFO] cheese - inserting 1000 documents. first: Category:United States Baseball League players and last: United States v. Camacho -[2018-02-13T00:35:31.630] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:35:31.720] [INFO] cheese - inserting 1000 documents. first: Spanish art and last: 2006 FA Cup Final -[2018-02-13T00:35:31.735] [INFO] cheese - inserting 1000 documents. first: Anglican Diocese of Argentina and last: Thomas Cook's Rugby Club -[2018-02-13T00:35:31.752] [INFO] cheese - inserting 1000 documents. first: Category:Bachman-Turner Overdrive albums and last: File:Qaeda in Azzan.jpg -[2018-02-13T00:35:31.773] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:31.793] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:35:31.807] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:31.816] [INFO] cheese - inserting 1000 documents. first: Hadi Bargizar and last: Sanjay Brijkishorlal Nirupam -[2018-02-13T00:35:31.850] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:35:31.851] [INFO] cheese - inserting 1000 documents. first: Kiss My Grass: A Hillbilly Tribute to Kiss and last: FURB -[2018-02-13T00:35:31.899] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:35:31.901] [INFO] cheese - inserting 1000 documents. first: Churumuco and last: Saint-Vincent-sur-Oust -[2018-02-13T00:35:31.942] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:31.966] [INFO] cheese - inserting 1000 documents. first: Category:Peninsulas of Livingston Island and last: List of English Sport Shooters -[2018-02-13T00:35:32.004] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:35:32.124] [INFO] cheese - inserting 1000 documents. first: Frot-Laffly armoured roller and last: Odise Rroshi -[2018-02-13T00:35:32.138] [INFO] cheese - inserting 1000 documents. first: A Veiga and last: Factorial number -[2018-02-13T00:35:32.156] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:35:32.172] [INFO] cheese - inserting 1000 documents. first: Walnut Spring and last: File:TheWoodentops.jpg -[2018-02-13T00:35:32.181] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:35:32.222] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:32.241] [INFO] cheese - inserting 1000 documents. first: Vela Blagoeva and last: Geographical Society of Philadelphia -[2018-02-13T00:35:32.287] [INFO] cheese - inserting 1000 documents. first: File:B'z TBPII.jpg and last: John Frisell -[2018-02-13T00:35:32.287] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:35:32.334] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:35:32.405] [INFO] cheese - inserting 1000 documents. first: Aalborg BK and last: Monno -[2018-02-13T00:35:32.408] [INFO] cheese - inserting 1000 documents. first: Hattingen Mitte station and last: Spain Peak -[2018-02-13T00:35:32.443] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:32.456] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:35:32.483] [INFO] cheese - inserting 1000 documents. first: Heronries and last: Category:6th arrondissement of Lyon -[2018-02-13T00:35:32.523] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:35:32.542] [INFO] cheese - inserting 1000 documents. first: Massingham and last: HD 129685 -[2018-02-13T00:35:32.599] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:35:32.758] [INFO] cheese - inserting 1000 documents. first: Aphelion (Dave Rempis album) and last: UAW–DaimlerChrysler 400 -[2018-02-13T00:35:32.814] [INFO] cheese - inserting 1000 documents. first: Glenn Haynes and last: Cherry Hill Road (Calverton–College Park, Maryland) -[2018-02-13T00:35:32.826] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:32.868] [INFO] cheese - inserting 1000 documents. first: Brittany Byrnes and last: Shut Up, You Fucking Baby! -[2018-02-13T00:35:32.888] [INFO] cheese - inserting 1000 documents. first: Daniele Brusaschetto and last: File:Quarter Obverse 2010.png -[2018-02-13T00:35:32.895] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:35:32.924] [INFO] cheese - inserting 1000 documents. first: Etroussat and last: Erythromycin A -[2018-02-13T00:35:32.961] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:35:32.974] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:35:32.991] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:35:33.065] [INFO] cheese - inserting 1000 documents. first: Virginia Secondary Route 716 (Fairfax County) and last: Caneaught Creek -[2018-02-13T00:35:33.107] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:33.116] [INFO] cheese - inserting 1000 documents. first: James Stanhope, 7th Earl Stanhope and last: Sineus and Truvor -[2018-02-13T00:35:33.184] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:35:33.218] [INFO] cheese - inserting 1000 documents. first: JHQ Rheindahlen Bombing 1987 and last: EC 1.17.1.8 -[2018-02-13T00:35:33.250] [INFO] cheese - inserting 1000 documents. first: Constellation Family and last: Wikipedia:Articles for deletion/Gary Levy -[2018-02-13T00:35:33.256] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:35:33.284] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:35:33.321] [INFO] cheese - inserting 1000 documents. first: Gatton family and last: U6atac minor spliceosomal RNA -[2018-02-13T00:35:33.334] [INFO] cheese - inserting 1000 documents. first: File:Chicago Teachers Union.jpg and last: Fair Park Coliseum (Dallas, TX) -[2018-02-13T00:35:33.359] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:35:33.377] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:33.427] [INFO] cheese - inserting 1000 documents. first: File:KylieXCover.png and last: Marbury Reedbed Nature Reserve -[2018-02-13T00:35:33.444] [INFO] cheese - inserting 1000 documents. first: EC 1.1.1.212 and last: Category:Burials at North Road Cemetery -[2018-02-13T00:35:33.469] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:35:33.482] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:33.551] [INFO] cheese - inserting 1000 documents. first: US Post Office-Reno Main and last: Brunswick County Airport -[2018-02-13T00:35:33.576] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:35:33.686] [INFO] cheese - inserting 1000 documents. first: Pensionärernas Riksorganisation and last: Dearne District Light Railway -[2018-02-13T00:35:33.691] [INFO] cheese - inserting 1000 documents. first: Naman Ojha and last: Burhøns -[2018-02-13T00:35:33.702] [INFO] cheese - inserting 1000 documents. first: Baron de Hirsch Cemetery, Halifax and last: Dassera -[2018-02-13T00:35:33.727] [INFO] cheese - inserting 1000 documents. first: Dexchlorpheniramine and last: Triple Net Lease -[2018-02-13T00:35:33.728] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:35:33.735] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:35:33.768] [INFO] cheese - inserting 1000 documents. first: Neil Davies (disambiguation) and last: Wikipedia:GLAM/National Railway Museum/Tab header -[2018-02-13T00:35:33.778] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:35:33.808] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:35:33.815] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:35:33.908] [INFO] cheese - inserting 1000 documents. first: Night of Champions and last: C.C.I.A.A. -[2018-02-13T00:35:33.931] [INFO] cheese - inserting 1000 documents. first: Catspaw (TV series) and last: SS Caesarea -[2018-02-13T00:35:33.950] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:33.963] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:35:34.115] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2009 May 26 and last: Wikipedia:Articles for deletion/Nicolette DuClare -[2018-02-13T00:35:34.131] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Divisions of the Galactic Empire (Star Wars) and last: Template:Bay class minesweeper -[2018-02-13T00:35:34.167] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:35:34.181] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:35:34.214] [INFO] cheese - inserting 1000 documents. first: Coleophora bidens and last: Körösmart -[2018-02-13T00:35:34.275] [INFO] cheese - inserting 1000 documents. first: Juha Pasoja and last: Čajniče -[2018-02-13T00:35:34.370] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:35:34.388] [INFO] cheese - inserting 1000 documents. first: Eishō (Muromachi period) and last: Nottingham Girls' High School -[2018-02-13T00:35:34.411] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:35:34.472] [INFO] cheese - inserting 1000 documents. first: Raphèl maì amèche zabì almi and last: Pureness -[2018-02-13T00:35:34.510] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:35:34.537] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:35:34.542] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Adirondack (train) and last: G. V. T. Matthews -[2018-02-13T00:35:34.608] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:35:34.685] [INFO] cheese - inserting 1000 documents. first: Sister killer and last: Sunbury Festival -[2018-02-13T00:35:34.712] [INFO] cheese - inserting 1000 documents. first: Genlisea violacea and last: Wikipedia:Suspected sock puppets/86.92.134.171 -[2018-02-13T00:35:34.752] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:35:34.795] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:35:34.911] [INFO] cheese - inserting 1000 documents. first: Tenkegörbed and last: 2010 Maldives FA Cup -[2018-02-13T00:35:34.917] [INFO] cheese - inserting 1000 documents. first: File:Dinosaur-Planet2.jpg and last: El pez que fuma -[2018-02-13T00:35:34.937] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 August 19 and last: Prodenia synstictis -[2018-02-13T00:35:34.974] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:35:34.984] [INFO] cheese - inserting 1000 documents. first: Draft:Cecil E. Harris and last: Ed Bacon (episcopal priest) -[2018-02-13T00:35:34.985] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:35:34.990] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:35:35.073] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:35.105] [INFO] cheese - inserting 1000 documents. first: Dear Diary (disambiguation) and last: …Ich töte mich… -[2018-02-13T00:35:35.125] [INFO] cheese - inserting 1000 documents. first: Art clay silver and last: South Vacherie -[2018-02-13T00:35:35.143] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:35:35.191] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:35:35.230] [INFO] cheese - inserting 1000 documents. first: C. J. Kemp and last: System file checker -[2018-02-13T00:35:35.286] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:35:35.361] [INFO] cheese - inserting 1000 documents. first: Croatia national rugby union team (sevens) and last: Category:Castros in Portugal -[2018-02-13T00:35:35.364] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tripper.com and last: Love Valour Compassion -[2018-02-13T00:35:35.388] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:35:35.405] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:35:35.431] [INFO] cheese - inserting 1000 documents. first: Yaakov Kedmi and last: Échard -[2018-02-13T00:35:35.476] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:35:35.501] [INFO] cheese - inserting 1000 documents. first: File:C-j-murray-1880.jpg and last: Maria new -[2018-02-13T00:35:35.520] [INFO] cheese - inserting 1000 documents. first: …I Believe in Humility and last: Lethe Vallis -[2018-02-13T00:35:35.591] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:35:35.602] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:35.675] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change (Sugababes song) and last: Template:F1 cars 1962 -[2018-02-13T00:35:35.745] [INFO] cheese - inserting 1000 documents. first: File:Amara Muzik Logo.png and last: Manfredi, Carlo -[2018-02-13T00:35:35.752] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:35:35.797] [INFO] cheese - inserting 1000 documents. first: Patricia Tallman and last: Gen (Street Fighter) -[2018-02-13T00:35:35.853] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:35:35.964] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:35:36.036] [INFO] cheese - inserting 1000 documents. first: Alauddin Khalji and last: Karaszó -[2018-02-13T00:35:36.116] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/December 7, 2006 and last: Gateside -[2018-02-13T00:35:36.135] [INFO] cheese - inserting 1000 documents. first: Chamberless long cairns and last: Mataguayo language -[2018-02-13T00:35:36.149] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:35:36.190] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:35:36.190] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:35:36.220] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Poland-related articles by quality/130 and last: Theravil Aru -[2018-02-13T00:35:36.276] [INFO] cheese - inserting 1000 documents. first: Category:Porsgrunn and last: Fi zilal al-Qur'an -[2018-02-13T00:35:36.279] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:35:36.344] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:35:36.423] [INFO] cheese - inserting 1000 documents. first: Moller, Carl and last: File:You Took the Words Right out of My Mouth by Meat Loaf US vinyl.jpg -[2018-02-13T00:35:36.470] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:35:36.516] [INFO] cheese - inserting 1000 documents. first: Kisháza and last: Badai Pasti Berlalu -[2018-02-13T00:35:36.558] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:35:36.605] [INFO] cheese - inserting 1000 documents. first: Mirza Khanlu and last: Category:1993 establishments in Puerto Rico -[2018-02-13T00:35:36.634] [INFO] cheese - inserting 1000 documents. first: Mourad Moose Topalian and last: Louis-Jules Barbon Mancini Mazarini, duc de Nivernais -[2018-02-13T00:35:36.645] [INFO] cheese - inserting 1000 documents. first: Digimon Adventure and last: Medium of instruction -[2018-02-13T00:35:36.645] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:35:36.664] [INFO] cheese - inserting 1000 documents. first: Kyle Veris and last: Titusville High School -[2018-02-13T00:35:36.676] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:35:36.678] [INFO] cheese - inserting 1000 documents. first: Goru River and last: Wikipedia:Articles for deletion/Thomas and friends video - release -[2018-02-13T00:35:36.727] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:35:36.730] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:35:36.736] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:35:36.958] [INFO] cheese - inserting 1000 documents. first: Chuymani and last: Mamie Phipps Clark -[2018-02-13T00:35:36.985] [INFO] cheese - inserting 1000 documents. first: Category:Sexual harassment and last: Fifth gender -[2018-02-13T00:35:37.010] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:37.071] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:35:37.107] [INFO] cheese - inserting 1000 documents. first: Qeshlaq-e Shah Khanem Ali Borat and last: Prechlau -[2018-02-13T00:35:37.130] [INFO] cheese - inserting 1000 documents. first: Zhonghe, Taipei and last: Eats Darkness -[2018-02-13T00:35:37.166] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:35:37.198] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:35:37.293] [INFO] cheese - inserting 1000 documents. first: EMI, Ltd. and last: Category:Insurance companies of Bermuda -[2018-02-13T00:35:37.302] [INFO] cheese - inserting 1000 documents. first: Narrowleaf Lupine and last: Arturo von Vacano -[2018-02-13T00:35:37.365] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:35:37.368] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:35:37.423] [INFO] cheese - inserting 1000 documents. first: Olt county and last: Basilicas -[2018-02-13T00:35:37.436] [INFO] cheese - inserting 1000 documents. first: Nasir Siddiqi and last: Black sassafras -[2018-02-13T00:35:37.472] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:35:37.485] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:35:37.578] [INFO] cheese - inserting 1000 documents. first: Template:Project section header/doc and last: File:The Impossible Dream Richard & Adam cover.png -[2018-02-13T00:35:37.584] [INFO] cheese - inserting 1000 documents. first: The Armchairs and last: Chattanooga News–Free Press -[2018-02-13T00:35:37.626] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:37.673] [INFO] cheese - inserting 1000 documents. first: Rajya Sabha (Tamil Nadu) and last: Orthodoxos Ioannou -[2018-02-13T00:35:37.695] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:35:37.765] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:35:37.813] [INFO] cheese - inserting 1000 documents. first: Basilinna and last: Pilawa Dolna -[2018-02-13T00:35:37.897] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:35:37.909] [INFO] cheese - inserting 1000 documents. first: Oliver's sassafras and last: Woodrow Wilson School, Princeton University -[2018-02-13T00:35:37.960] [INFO] cheese - inserting 1000 documents. first: Eaten Alive and last: John Crowell -[2018-02-13T00:35:37.974] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:38.058] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:35:38.221] [INFO] cheese - inserting 1000 documents. first: Category:1474 births and last: Cléo de Merode -[2018-02-13T00:35:38.237] [INFO] cheese - inserting 1000 documents. first: Batman (servant) and last: 2013–14 Saint Mary's Gaels men's basketball team -[2018-02-13T00:35:38.287] [INFO] cheese - inserting 1000 documents. first: A PFG 1937-38 and last: Midoil, California -[2018-02-13T00:35:38.308] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:35:38.311] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:35:38.333] [INFO] cheese - inserting 1000 documents. first: Isidor Schneider and last: Mount Comfort Airport -[2018-02-13T00:35:38.348] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:35:38.388] [INFO] cheese - inserting 1000 documents. first: Prose fiction and last: File:Ancientasiaminor.jpg -[2018-02-13T00:35:38.420] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:35:38.442] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:35:38.572] [INFO] cheese - inserting 1000 documents. first: Diana Natalicio and last: File:DriveTime logo.jpg -[2018-02-13T00:35:38.621] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:35:38.692] [INFO] cheese - inserting 1000 documents. first: 1951 24 Hours of Le Mans and last: Human left lung -[2018-02-13T00:35:38.721] [INFO] cheese - inserting 1000 documents. first: Robert Sitwell and last: Blennidus tenenbaumi -[2018-02-13T00:35:38.763] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:35:38.812] [INFO] cheese - inserting 1000 documents. first: Guanica Light and last: Piloswine (Pokémon) -[2018-02-13T00:35:38.837] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:35:38.878] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:35:38.979] [INFO] cheese - inserting 1000 documents. first: Love Is the Song We Sing: San Francisco Nuggets 1965–1970 and last: Wikipedia:WikiProject Spam/LinkReports/shitxxx.com -[2018-02-13T00:35:39.015] [INFO] cheese - inserting 1000 documents. first: Are You There, Chelsea? and last: Staatsbank der DDR -[2018-02-13T00:35:39.026] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:39.031] [INFO] cheese - inserting 1000 documents. first: Jules-Elie Delaunay and last: File:Young Adam movie.jpg -[2018-02-13T00:35:39.100] [INFO] cheese - inserting 1000 documents. first: Category:1551 establishments in the Republic of Venice and last: Užička Crna Gora -[2018-02-13T00:35:39.103] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:35:39.106] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:35:39.127] [INFO] cheese - inserting 1000 documents. first: Kim Hyun-jung (disambiguation) and last: Sony MCL-06T -[2018-02-13T00:35:39.172] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:35:39.176] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:35:39.378] [INFO] cheese - inserting 1000 documents. first: The Woman's Bible and last: Face Off (album) -[2018-02-13T00:35:39.413] [INFO] cheese - inserting 1000 documents. first: Marie of Saxe-Coburg-Gotha and United Kingdom and last: Frith Street -[2018-02-13T00:35:39.423] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:35:39.425] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cypressbayhighschool.org and last: File:Clase aparte album cover.jpg -[2018-02-13T00:35:39.483] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:35:39.496] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:35:39.560] [INFO] cheese - inserting 1000 documents. first: Template:Norway football squad 1936 Summer Olympics and last: Gertrude of Flanders (1112–1186) -[2018-02-13T00:35:39.570] [INFO] cheese - inserting 1000 documents. first: Nieuport-Delage NiD 32RH and last: Angut-e Gharbi Rural District -[2018-02-13T00:35:39.595] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:35:39.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Bimini and last: Comedy-thriller -[2018-02-13T00:35:39.618] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:35:39.660] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:35:39.768] [INFO] cheese - inserting 1000 documents. first: Category:Holiness universities and colleges and last: File:Dhsmith.JPG -[2018-02-13T00:35:39.797] [INFO] cheese - inserting 1000 documents. first: SKP and last: File:The Donnas - Spend the Night.jpg -[2018-02-13T00:35:39.816] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:35:39.867] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:35:39.878] [INFO] cheese - inserting 1000 documents. first: Just a Little Harmless Sex and last: Assuristan -[2018-02-13T00:35:39.933] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:35:39.946] [INFO] cheese - inserting 1000 documents. first: Walter Reuther Central High School and last: Volodymyr Yezersky -[2018-02-13T00:35:40.009] [INFO] cheese - inserting 1000 documents. first: Russian battleship Revoliutsiia and last: Charles Percy Graham-Montgomery -[2018-02-13T00:35:40.011] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:35:40.030] [INFO] cheese - inserting 1000 documents. first: GoldlinQ and last: Category:Buildings and structures in Daggett County, Utah -[2018-02-13T00:35:40.057] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:35:40.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elizabeth II and last: Intercollegiate Fencing Conference of Southern California -[2018-02-13T00:35:40.122] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:40.176] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:35:40.230] [INFO] cheese - inserting 1000 documents. first: File:Dollywiki2.jpg and last: 1922 films -[2018-02-13T00:35:40.277] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:35:40.373] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality/19 and last: Portal:Baseball/Selected article/October, 2007 -[2018-02-13T00:35:40.476] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:35:40.545] [INFO] cheese - inserting 1000 documents. first: Logie, Dundee and last: Pulmonary barotrauma -[2018-02-13T00:35:40.591] [INFO] cheese - inserting 1000 documents. first: 1922 in cinema and last: The Carpentered Hen -[2018-02-13T00:35:40.703] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:35:40.721] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:35:40.756] [INFO] cheese - inserting 1000 documents. first: Midwest Fencing Conference and last: Category:Alcaldes of the Province of Cáceres -[2018-02-13T00:35:40.791] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:35:40.794] [INFO] cheese - inserting 1000 documents. first: Cliff 'Em All and last: River Gunboat -[2018-02-13T00:35:40.798] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Izard County, Arkansas and last: Pompeius -[2018-02-13T00:35:40.842] [INFO] cheese - inserting 1000 documents. first: William M. Ryan Sr. and last: Category:Rocketry stubs -[2018-02-13T00:35:40.873] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:35:40.888] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T00:35:40.930] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:35:41.034] [INFO] cheese - inserting 1000 documents. first: GayNZ.com and last: Wikipedia:Articles for deletion/Sailboat 4 logo -[2018-02-13T00:35:41.072] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:35:41.102] [INFO] cheese - inserting 1000 documents. first: 1976 ATP Buenos Aires - Singles and last: Growers Stadium -[2018-02-13T00:35:41.105] [INFO] cheese - inserting 1000 documents. first: 1952 24 Hours of LeMans and last: Baile Ailein -[2018-02-13T00:35:41.170] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:35:41.204] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:35:41.276] [INFO] cheese - inserting 1000 documents. first: Chelsea Maning and last: Victor Garcia de la Concha -[2018-02-13T00:35:41.338] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:35:41.392] [INFO] cheese - inserting 1000 documents. first: Category:Alcaldes of the Second Spanish Republic and last: Category:Wars of the Diadochi -[2018-02-13T00:35:41.430] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:35:41.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Webalbum and last: G.W. Reynolds -[2018-02-13T00:35:41.488] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:35:41.559] [INFO] cheese - inserting 1000 documents. first: Category:Regiments by war and last: File:Alvin T. Smith.png -[2018-02-13T00:35:41.566] [INFO] cheese - inserting 1000 documents. first: Candalides helenita and last: Jongblood Primary -[2018-02-13T00:35:41.576] [INFO] cheese - inserting 1000 documents. first: Immersion heater and last: Oland Brewery -[2018-02-13T00:35:41.614] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:35:41.620] [INFO] cheese - inserting 1000 documents. first: John B. Lange Middle School and last: File:LEAD Pakistan Logo.png -[2018-02-13T00:35:41.620] [INFO] cheese - inserting 1000 documents. first: Chicago Film Critics Association and last: Model building code -[2018-02-13T00:35:41.628] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:41.632] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:35:41.670] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:35:41.719] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:35:42.036] [INFO] cheese - inserting 1000 documents. first: G.V. Kromah and last: Newmans Weir -[2018-02-13T00:35:42.127] [INFO] cheese - inserting 1000 documents. first: Liquor Monopoly of Sweden and last: Category:2007 Southern Conference baseball season -[2018-02-13T00:35:42.139] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:35:42.274] [INFO] cheese - inserting 1000 documents. first: Ayuba Suleiman Diallo and last: Clepsydra Geyser -[2018-02-13T00:35:42.276] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:35:42.345] [INFO] cheese - inserting 1000 documents. first: Category:Conflicts in 1339 and last: Wikipedia:Articles for deletion/Georgia – South Africa relations -[2018-02-13T00:35:42.422] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:35:42.456] [INFO] cheese - inserting 1000 documents. first: Qeshlaq-e Barandaq and last: Africa News Service -[2018-02-13T00:35:42.508] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:35:42.538] [INFO] cheese - inserting 1000 documents. first: Church of St. Gregory the Great (New York City) and last: Wikipedia:WikiProject Spam/Local/getbig.com -[2018-02-13T00:35:42.607] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:35:42.679] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T00:35:42.739] [INFO] cheese - inserting 1000 documents. first: Victrack and last: St George's German Lutheran Church -[2018-02-13T00:35:42.765] [INFO] cheese - inserting 1000 documents. first: Muscle contraction and last: Wikipedia:Articles for deletion/Spanglew -[2018-02-13T00:35:42.782] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:35:42.840] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:35:42.882] [INFO] cheese - inserting 1000 documents. first: Ryoma Baba and last: Josef Hauser (player) -[2018-02-13T00:35:42.933] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:35:42.970] [INFO] cheese - inserting 1000 documents. first: Tropical Depression One (2009) and last: File:ThinkBigCovers.jpg -[2018-02-13T00:35:42.982] [INFO] cheese - inserting 1000 documents. first: Lost on a Mountain in Maine and last: Thoughtform -[2018-02-13T00:35:43.044] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:35:43.047] [INFO] cheese - inserting 1000 documents. first: Julius Muthamia and last: Category:Populated places in the Engcobo Local Municipality -[2018-02-13T00:35:43.059] [INFO] cheese - inserting 1000 documents. first: Category:Townlands of County Monaghan and last: Miramichi Rural School -[2018-02-13T00:35:43.063] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:35:43.130] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:35:43.150] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:35:43.272] [INFO] cheese - inserting 1000 documents. first: Inter-University Seminar on Armed Forces and Society and last: The Flirting Widow -[2018-02-13T00:35:43.312] [INFO] cheese - inserting 1000 documents. first: Fix This Yard and last: I've Been In Love Before (song) -[2018-02-13T00:35:43.332] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:35:43.355] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:35:43.425] [INFO] cheese - inserting 1000 documents. first: Methylarginine and last: Template:GoldenGlobeBestSuppActorMotionPicture 1943–1960 -[2018-02-13T00:35:43.463] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:35:43.513] [INFO] cheese - inserting 1000 documents. first: T-minus and last: Herald Tribune -[2018-02-13T00:35:43.513] [INFO] cheese - inserting 1000 documents. first: Bakke and last: Palestine (region) -[2018-02-13T00:35:43.534] [INFO] cheese - inserting 1000 documents. first: Nelson Rural School and last: File:Drifters Poster.jpg -[2018-02-13T00:35:43.570] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:35:43.574] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in the Intsika Yethu Local Municipality and last: Philippines at the 2012 Asian Beach Games -[2018-02-13T00:35:43.580] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:35:43.600] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:35:43.638] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:43.700] [INFO] cheese - inserting 1000 documents. first: Carl Hugo Johansson and last: Miriam O'Callaghan -[2018-02-13T00:35:43.845] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:35:44.011] [INFO] cheese - inserting 1000 documents. first: NKFD and last: Submarine Squadron 3 -[2018-02-13T00:35:44.060] [INFO] cheese - inserting 1000 documents. first: Nathan (Prophet) and last: Template:WPAM -[2018-02-13T00:35:44.095] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:35:44.165] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:35:44.311] [INFO] cheese - inserting 1000 documents. first: Category:Years in Hamburg and last: 2013 Asian Athletics Championships – Women's heptathlon -[2018-02-13T00:35:44.327] [INFO] cheese - inserting 1000 documents. first: Courage Competition and last: The Lost -[2018-02-13T00:35:44.350] [INFO] cheese - inserting 1000 documents. first: Settignano, Desiderio da and last: Wikipedia:Help desk/Archives/2007 October 9 -[2018-02-13T00:35:44.365] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:35:44.387] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:35:44.505] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:35:44.534] [INFO] cheese - inserting 1000 documents. first: Panda Security and last: Weasel (disambiguation) -[2018-02-13T00:35:44.553] [INFO] cheese - inserting 1000 documents. first: Matlab Gonj J. B. High School and last: Forever Fever -[2018-02-13T00:35:44.665] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:35:44.716] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T00:35:44.787] [INFO] cheese - inserting 1000 documents. first: PG-WPD and last: Pomus -[2018-02-13T00:35:44.822] [INFO] cheese - inserting 1000 documents. first: Maurice "The Rocket" Richard and last: Category:Houses completed in 1996 -[2018-02-13T00:35:44.842] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:35:44.875] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:35:44.903] [INFO] cheese - inserting 1000 documents. first: Men in Pink and last: Rufus and Flora Bates House -[2018-02-13T00:35:44.918] [INFO] cheese - inserting 1000 documents. first: And the Days We Chance Upon... and last: File:C&PVA.jpg -[2018-02-13T00:35:44.965] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:35:44.972] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:35:45.011] [INFO] cheese - inserting 1000 documents. first: Category:Visakhapatnam articles by quality and last: Club-tipped whorled wattle -[2018-02-13T00:35:45.033] [INFO] cheese - inserting 1000 documents. first: Red-chested goshawk and last: My Son The Fanatic -[2018-02-13T00:35:45.052] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:45.089] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:35:45.214] [INFO] cheese - inserting 1000 documents. first: SB203580 and last: Googol Hyperplex -[2018-02-13T00:35:45.215] [INFO] cheese - inserting 1000 documents. first: Radio BA and last: Descendants of Gautama Buddha -[2018-02-13T00:35:45.250] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:35:45.261] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:35:45.326] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese states and last: File:Amiga Defender of the Crown raid.png -[2018-02-13T00:35:45.341] [INFO] cheese - inserting 1000 documents. first: Thomas Gorman and last: Effective Lagrangian -[2018-02-13T00:35:45.422] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:35:45.430] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:35:45.457] [INFO] cheese - inserting 1000 documents. first: Enaliarctos barnesi and last: Adil Haider -[2018-02-13T00:35:45.510] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:35:45.518] [INFO] cheese - inserting 1000 documents. first: Furio Piccirilli and last: Mara Montes -[2018-02-13T00:35:45.607] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:35:45.633] [INFO] cheese - inserting 1000 documents. first: Nisha Patel-Nasri and last: Adgandestrius -[2018-02-13T00:35:45.719] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:35:45.825] [INFO] cheese - inserting 1000 documents. first: File:Groovemasters Reed Juber.jpg and last: IBM - International Business Machines -[2018-02-13T00:35:45.856] [INFO] cheese - inserting 1000 documents. first: Category:Americans convicted of spying for Cuba and last: Wikipedia:Articles for deletion/Yonder (comics) -[2018-02-13T00:35:45.886] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:35:45.917] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:35:45.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Main moon productions and last: File:BalticRibbon.png -[2018-02-13T00:35:45.968] [INFO] cheese - inserting 1000 documents. first: James Morton (Alpha Phi Alpha) and last: H. Smith (crater) -[2018-02-13T00:35:46.003] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:35:46.011] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:35:46.077] [INFO] cheese - inserting 1000 documents. first: NetDevil and last: Müllerebe -[2018-02-13T00:35:46.148] [INFO] cheese - inserting 1000 documents. first: Lower Saint Regis Lake and last: Wynnewood Road (NHSL station) -[2018-02-13T00:35:46.152] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:35:46.206] [INFO] cheese - inserting 1000 documents. first: Vladimir Hutt and last: Onychospina -[2018-02-13T00:35:46.210] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:35:46.267] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:35:46.332] [INFO] cheese - inserting 1000 documents. first: Religion and culture in ancient Iran and last: Jakob Erbar -[2018-02-13T00:35:46.346] [INFO] cheese - inserting 1000 documents. first: Harrington (crater) and last: File:Buddy Arnold.jpg -[2018-02-13T00:35:46.396] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:35:46.398] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Douglas County, Wisconsin and last: Shandao Temple -[2018-02-13T00:35:46.402] [INFO] cheese - inserting 1000 documents. first: José Castro and last: Sirkeci -[2018-02-13T00:35:46.401] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:35:46.460] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:35:46.472] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:35:46.630] [INFO] cheese - inserting 1000 documents. first: Jordan Township, Jasper County, Indiana and last: Li Sheng (artist) -[2018-02-13T00:35:46.660] [INFO] cheese - inserting 1000 documents. first: George Villiers Duke of Buckingham and last: National Register of Historic Places listings in Missouri, Counties D-I -[2018-02-13T00:35:46.672] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:35:46.695] [INFO] cheese - inserting 1000 documents. first: Roger Goupillières and last: Book:Gamma Rays -[2018-02-13T00:35:46.704] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:35:46.744] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:35:46.751] [INFO] cheese - inserting 1000 documents. first: Stratin and last: Corridor D (Europe) -[2018-02-13T00:35:46.780] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:35:46.830] [INFO] cheese - inserting 1000 documents. first: Azal Espanhol and last: 1954 British Grand Prix -[2018-02-13T00:35:46.904] [INFO] cheese - inserting 1000 documents. first: Template:Student project tutorial/core/project is live/DYK and last: Anak ni Zuma -[2018-02-13T00:35:46.905] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:35:46.932] [INFO] cheese - inserting 1000 documents. first: Portal:Thailand/WikiProjects and last: Madison International Speedway -[2018-02-13T00:35:47.004] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:35:47.021] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:35:47.139] [INFO] cheese - inserting 1000 documents. first: Tricuspid (valve) stenosis and last: Kingdom of Aethelmearc -[2018-02-13T00:35:47.188] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Missouri, Counties J-K and last: Siege of Genoa (1747) -[2018-02-13T00:35:47.219] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:35:47.239] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:35:47.270] [INFO] cheese - inserting 1000 documents. first: Robert L. Wilson House and last: Mostafa Al-Abbad -[2018-02-13T00:35:47.310] [INFO] cheese - inserting 1000 documents. first: Category:People from Suffern, New York and last: Wikipedia:Sockpuppet investigations/67.87.140.155 -[2018-02-13T00:35:47.323] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:35:47.371] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:35:47.448] [INFO] cheese - inserting 1000 documents. first: Bordello of Blood (song) and last: Eustixia pupula -[2018-02-13T00:35:47.479] [INFO] cheese - inserting 1000 documents. first: Category:Structure and last: The Wink (Seinfeld) -[2018-02-13T00:35:47.501] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:47.528] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:35:47.584] [INFO] cheese - inserting 1000 documents. first: Yo-Yo (album) and last: Wikipedia:Version 1.0 Editorial Team/Philosopher articles by quality/2 -[2018-02-13T00:35:47.594] [INFO] cheese - inserting 1000 documents. first: Valery Karnitsky and last: Napoléon Louis de Talleyrand-Périgord, duc de Valençay -[2018-02-13T00:35:47.604] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Kershaw County, South Carolina and last: File:Comedian-standup-ghuggi.JPG -[2018-02-13T00:35:47.637] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:35:47.655] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:35:47.659] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:47.755] [INFO] cheese - inserting 1000 documents. first: Bassa-Komo language and last: Sadeqabad, Fasa -[2018-02-13T00:35:47.799] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:35:47.826] [INFO] cheese - inserting 1000 documents. first: Portal:Language/Did you know/June 2006 and last: Porthcawl, Wales -[2018-02-13T00:35:47.873] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:35:47.956] [INFO] cheese - inserting 1000 documents. first: Bombay Scottish School, Powai and last: Wikipedia:Articles for deletion/One Beer -[2018-02-13T00:35:47.980] [INFO] cheese - inserting 1000 documents. first: Thelcteria and last: File:Boeing 727-LAB cropped.jpg -[2018-02-13T00:35:47.999] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:35:48.001] [INFO] cheese - inserting 1000 documents. first: Category:1888 establishments in Hong Kong and last: Radio Clash -[2018-02-13T00:35:48.044] [INFO] cheese - inserting 1000 documents. first: Sheer heart attack and last: Ricardo Infante -[2018-02-13T00:35:48.042] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:35:48.066] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:35:48.131] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:35:48.192] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ceramoporidae and last: 3 Acts of God -[2018-02-13T00:35:48.243] [INFO] cheese - inserting 1000 documents. first: Pak Tjokro and last: Gallotia auaritae -[2018-02-13T00:35:48.295] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:35:48.354] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:35:48.712] [INFO] cheese - inserting 1000 documents. first: Scincogekkonomorph and last: Wikipedia:Articles for deletion/Anis Alamgir -[2018-02-13T00:35:48.776] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:35:48.801] [INFO] cheese - inserting 1000 documents. first: 2004 in Ghana and last: Wikipedia:WikiProject Spam/LinkReports/lensindia.com -[2018-02-13T00:35:48.854] [INFO] cheese - inserting 1000 documents. first: Yokoshiba Station and last: The Gauldal cathedral -[2018-02-13T00:35:48.854] [INFO] cheese - inserting 1000 documents. first: LG VX8350 and last: Rambo to Hell and Back -[2018-02-13T00:35:48.905] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:35:48.928] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:35:48.932] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:35:49.016] [INFO] cheese - inserting 1000 documents. first: Category:Medical and health organisations in Senegal and last: Ormond Beach Municipal (airport) -[2018-02-13T00:35:49.048] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:35:49.072] [INFO] cheese - inserting 1000 documents. first: William Bingham Compton, 6th Marquess of Northampton and last: Wikipedia:POTD column/June 17, 2006 -[2018-02-13T00:35:49.080] [INFO] cheese - inserting 1000 documents. first: Rose Tree and last: Bascanichthys bascanoides -[2018-02-13T00:35:49.112] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:35:49.124] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:35:49.280] [INFO] cheese - inserting 1000 documents. first: Kerala House and last: Issaquah Class ferry -[2018-02-13T00:35:49.293] [INFO] cheese - inserting 1000 documents. first: Portal:Michigan Highways/Selected picture/September 2012 and last: Template:C.D. Tondela -[2018-02-13T00:35:49.321] [INFO] cheese - inserting 1000 documents. first: Finlaggan and last: J. Dudley Goodlette -[2018-02-13T00:35:49.324] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:35:49.350] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:35:49.368] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:35:49.394] [INFO] cheese - inserting 1000 documents. first: Osaka International (airport) and last: Nickel Coin Mares' Standard Open NH Flat Race -[2018-02-13T00:35:49.448] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:35:49.584] [INFO] cheese - inserting 1000 documents. first: Sooty Sand-Eel and last: Category:Rural Districts of Sistan and Baluchestan Province -[2018-02-13T00:35:49.633] [INFO] cheese - inserting 1000 documents. first: 1954 German Grand Prix and last: Institutions of the European Union -[2018-02-13T00:35:49.657] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:35:49.701] [INFO] cheese - inserting 1000 documents. first: The Office (American TV series) and last: Will June -[2018-02-13T00:35:49.723] [INFO] cheese - batch complete in: 2.818 secs -[2018-02-13T00:35:49.743] [INFO] cheese - inserting 1000 documents. first: Template:Uw-vandal and last: Castle of Rozafa -[2018-02-13T00:35:49.755] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:35:49.771] [INFO] cheese - inserting 1000 documents. first: 1671 in poetry and last: Jack Cunliffe -[2018-02-13T00:35:49.782] [INFO] cheese - inserting 1000 documents. first: Akhtar Mohammed and last: Category:Funk dance -[2018-02-13T00:35:49.837] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:35:49.902] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:49.931] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:35:50.123] [INFO] cheese - inserting 1000 documents. first: File:MercyMe All of Creation.ogg and last: Tennessee Whiskey (album) -[2018-02-13T00:35:50.203] [INFO] cheese - inserting 1000 documents. first: File:Rupee's Valuation.jpg and last: Shaw Charity Classic -[2018-02-13T00:35:50.251] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:35:50.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wooburn Grange Country Club and last: Horst Bredekamp -[2018-02-13T00:35:50.368] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:35:50.572] [INFO] cheese - inserting 1000 documents. first: Advertising Media Scheduling and last: Wikipedia:Articles for deletion/Vsevolod Holubovych -[2018-02-13T00:35:50.621] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:35:50.672] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:35:50.722] [INFO] cheese - inserting 1000 documents. first: File:Bostik-brand.svg and last: Wikipedia:WikiProject Trains/ICC valuations/Reading, Marietta and Hanover Railroad -[2018-02-13T00:35:50.764] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:35:50.829] [INFO] cheese - inserting 1000 documents. first: Braniew and last: Category:Biota of Ireland -[2018-02-13T00:35:50.897] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:35:50.938] [INFO] cheese - inserting 1000 documents. first: Live in Allentown and last: Soo-Myun Kim -[2018-02-13T00:35:50.996] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:35:51.065] [INFO] cheese - inserting 1000 documents. first: 2002 European Grand Prix and last: Saint-Joseph (AOC) -[2018-02-13T00:35:51.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/operaincerta.it and last: Brian Wilson (systems scientist) -[2018-02-13T00:35:51.130] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T00:35:51.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Nickelodeon/Nicktoons task force/Recognized content and last: "The Man From the USSR" and other plays : With Two Essays on the Drama -[2018-02-13T00:35:51.176] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:35:51.178] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:35:51.278] [INFO] cheese - inserting 1000 documents. first: Nocton v Lord Ashburton and last: 2005 NRL Finals Series -[2018-02-13T00:35:51.342] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:35:51.386] [INFO] cheese - inserting 1000 documents. first: Anti-System and last: Template:Revúca District -[2018-02-13T00:35:51.412] [INFO] cheese - inserting 1000 documents. first: Hubert Shurtz and last: Sabah Chinese Association -[2018-02-13T00:35:51.444] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:35:51.482] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:35:51.561] [INFO] cheese - inserting 1000 documents. first: Category:Populated places on the Marikina River and last: File:Hen's Teeth and Horse's Toes.jpg -[2018-02-13T00:35:51.621] [INFO] cheese - inserting 1000 documents. first: "The Man from the USSR" and other Plays : With Two Essays on the Drama and last: Template:Yoram Gross -[2018-02-13T00:35:51.626] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T00:35:51.684] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:35:51.693] [INFO] cheese - inserting 1000 documents. first: Dawid Moryc Apfelbaum and last: File:Laurajeanourswansongcover.jpg -[2018-02-13T00:35:51.761] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:35:51.808] [INFO] cheese - inserting 1000 documents. first: Winterthour (district) and last: Jawa (Indonesia) -[2018-02-13T00:35:51.868] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:35:51.879] [INFO] cheese - inserting 1000 documents. first: List of World War II war correspondents (1942-43) and last: Subinaghi -[2018-02-13T00:35:51.908] [INFO] cheese - inserting 1000 documents. first: Frangelico and last: Churchill River (Hudson Bay) -[2018-02-13T00:35:51.949] [INFO] cheese - inserting 1000 documents. first: File:Koolie Family.jpg and last: HuaiNanZi -[2018-02-13T00:35:51.961] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:35:52.003] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:35:52.044] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:35:52.074] [INFO] cheese - inserting 1000 documents. first: Kununurra Airport and last: Puchalapalli Sundaraiah -[2018-02-13T00:35:52.134] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:35:52.228] [INFO] cheese - inserting 1000 documents. first: John Rudolph Niernsee and last: Oakland Auditorium Arena -[2018-02-13T00:35:52.268] [INFO] cheese - inserting 1000 documents. first: Flux Pavillion and last: Mijikenda language -[2018-02-13T00:35:52.288] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:35:52.319] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:35:52.360] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Gargamel62/The Studio (Company) and last: Capparella -[2018-02-13T00:35:52.390] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:35:52.506] [INFO] cheese - inserting 1000 documents. first: Cirrhimuraena paucidens and last: File:Kate Ryan-Light in the Dark-single.jpg -[2018-02-13T00:35:52.536] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:35:52.583] [INFO] cheese - inserting 1000 documents. first: Category:Lists of United States placename etymology and last: Networking processors -[2018-02-13T00:35:52.608] [INFO] cheese - inserting 1000 documents. first: Yitzchak adlerstein and last: Wikipedia:WikiProject Spam/LinkReports/keith-koep.com -[2018-02-13T00:35:52.643] [INFO] cheese - inserting 1000 documents. first: Category:1924 establishments in Belgium and last: Communist Cambodia (disambiguation) -[2018-02-13T00:35:52.645] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:35:52.650] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:35:52.664] [INFO] cheese - inserting 1000 documents. first: USS LST-557 and last: Category:Top-importance Bengal articles -[2018-02-13T00:35:52.671] [INFO] cheese - inserting 1000 documents. first: Time-memory trade-off and last: KFFC -[2018-02-13T00:35:52.695] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:35:52.735] [INFO] cheese - inserting 1000 documents. first: Cappelluzzo and last: Category:Kosovar beauty pageant winners -[2018-02-13T00:35:52.743] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:35:52.748] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:35:52.782] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:35:52.841] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/expressdebanat.ro and last: Liotia atomus -[2018-02-13T00:35:52.882] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:35:53.009] [INFO] cheese - inserting 1000 documents. first: Glinica, Głogów County and last: Stara Góra -[2018-02-13T00:35:53.042] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Bengal articles and last: St John’s School, Kempston -[2018-02-13T00:35:53.062] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:35:53.076] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:35:53.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dimitri Spanoa and last: Chongtar -[2018-02-13T00:35:53.106] [INFO] cheese - inserting 1000 documents. first: Leopoldo de Gregorio, Marquis of Esquilache and last: File:UMassFive-logo.png -[2018-02-13T00:35:53.126] [INFO] cheese - inserting 1000 documents. first: Neusser Straße/Gürtel (KVB) and last: John Howard Clark -[2018-02-13T00:35:53.140] [INFO] cheese - inserting 1000 documents. first: Velocidad Total and last: Template:Long geological range -[2018-02-13T00:35:53.145] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:35:53.151] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:35:53.173] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:35:53.189] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:35:53.345] [INFO] cheese - inserting 1000 documents. first: You're Only Lonely and last: Samuel Balto -[2018-02-13T00:35:53.487] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:35:53.527] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia C-Class vital articles in Art and last: Justin Jones (guitarist) -[2018-02-13T00:35:53.622] [INFO] cheese - inserting 1000 documents. first: 99 North and last: Port of Chicago -[2018-02-13T00:35:53.648] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:35:53.690] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:35:53.750] [INFO] cheese - inserting 1000 documents. first: Gelae (tribe) and last: Nintendo 3DS line -[2018-02-13T00:35:53.752] [INFO] cheese - inserting 1000 documents. first: Category:Basketball templates by country and last: File:Shubhodrishti 2005 poster.jpg -[2018-02-13T00:35:53.799] [INFO] cheese - inserting 1000 documents. first: January 1910 Stanley Cup championship and last: Marco degli Ambrosi -[2018-02-13T00:35:53.835] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:53.837] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:35:53.893] [INFO] cheese - inserting 1000 documents. first: I Love 1976 and last: NES Zeldas -[2018-02-13T00:35:53.958] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:35:53.998] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:35:54.166] [INFO] cheese - inserting 1000 documents. first: Polly Burton and last: MOSI of Tampa -[2018-02-13T00:35:54.210] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:35:54.253] [INFO] cheese - inserting 1000 documents. first: China Railways QJ and last: Wikipedia:Vietnam -[2018-02-13T00:35:54.317] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:35:54.340] [INFO] cheese - inserting 1000 documents. first: Black Bindweed and last: Norma McCormick -[2018-02-13T00:35:54.341] [INFO] cheese - inserting 1000 documents. first: English (Evangelical) Lutheran Conference of Missouri and last: Commander's Call -[2018-02-13T00:35:54.349] [INFO] cheese - inserting 1000 documents. first: Fanlight Fanny and last: Ventral roots of the spinal nerves -[2018-02-13T00:35:54.389] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:35:54.394] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:35:54.399] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:35:54.449] [INFO] cheese - inserting 1000 documents. first: Westland-Yeovil and last: MV Leirna -[2018-02-13T00:35:54.492] [INFO] cheese - inserting 1000 documents. first: Famicom Zelda games and last: Chapeltoun, east ayrshire -[2018-02-13T00:35:54.495] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:35:54.549] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:35:54.588] [INFO] cheese - inserting 1000 documents. first: Missouri Courts and last: Kulshekar -[2018-02-13T00:35:54.633] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:35:54.656] [INFO] cheese - inserting 1000 documents. first: Granowice and last: Wikipedia:Articles for deletion/Noctis (Band) -[2018-02-13T00:35:54.697] [INFO] cheese - inserting 1000 documents. first: Category:1566 in the Philippines and last: Aalborg Symphony Orchestra -[2018-02-13T00:35:54.714] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:35:54.735] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:35:54.763] [INFO] cheese - inserting 1000 documents. first: Ventral root of the spinal nerve and last: D-glycerate:NAD+ oxidoreductase -[2018-02-13T00:35:54.853] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:35:54.936] [INFO] cheese - inserting 1000 documents. first: Râjleţu-Govora and last: Dinculesti -[2018-02-13T00:35:55.026] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:35:55.064] [INFO] cheese - inserting 1000 documents. first: Rr Lyrae Variables and last: Category:Ballet companies in Germany -[2018-02-13T00:35:55.097] [INFO] cheese - inserting 1000 documents. first: 4-phospho-D-erythronate:NAD+ 2-oxidoreductase and last: (R)-tetrahydroberberine:NADP+ oxidoreductase -[2018-02-13T00:35:55.109] [INFO] cheese - inserting 1000 documents. first: Vancouver 86ers and last: File:AbaBayefsky.png -[2018-02-13T00:35:55.113] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:35:55.117] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:35:55.179] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:35:55.267] [INFO] cheese - inserting 1000 documents. first: Hernando de Alvarado Tezozómoc and last: Vista(IIMB Fest) -[2018-02-13T00:35:55.289] [INFO] cheese - inserting 1000 documents. first: Etoile Haitienne and last: UDP-D-galacturonate:(1-4)-alpha-poly-D-galacturonate 4-alpha-D-galacturonosyltransferase -[2018-02-13T00:35:55.306] [INFO] cheese - batch complete in: 0.193 secs -[2018-02-13T00:35:55.323] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:35:55.360] [INFO] cheese - inserting 1000 documents. first: John M. Gearin and last: Ark (toy company) -[2018-02-13T00:35:55.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Xebulon/Archive and last: Musée alsacien (disambiguation) -[2018-02-13T00:35:55.414] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:35:55.429] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:35:55.436] [INFO] cheese - inserting 1000 documents. first: UDP-alpha-D-galactose:lipopolysaccharide 3-alpha-D-galactosyltransferase and last: S-adenozil-L-homocysteine homocysteinylribohydrolase -[2018-02-13T00:35:55.469] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:35:55.611] [INFO] cheese - inserting 1000 documents. first: FC Pryladyst Mukacheve and last: In This Life (disambiguation) -[2018-02-13T00:35:55.656] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:35:55.680] [INFO] cheese - inserting 1000 documents. first: Australian Water Dragon and last: Template:Mauritius-footy-bio-stub -[2018-02-13T00:35:55.743] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:35:55.772] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-09-14 and last: Template:Brooklands-AMG1GP -[2018-02-13T00:35:55.811] [INFO] cheese - inserting 1000 documents. first: S-adenozil-L-homocysteine hydrolase and last: Aakhri Sauda: The Last Deal -[2018-02-13T00:35:55.828] [INFO] cheese - inserting 1000 documents. first: Mánya (disambiguation) and last: Sixteen Acres, Springfield, Massachusetts -[2018-02-13T00:35:55.831] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T00:35:55.860] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:35:55.880] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:35:55.921] [INFO] cheese - inserting 1000 documents. first: This is my rifle and last: WRAC -[2018-02-13T00:35:55.962] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:35:55.971] [INFO] cheese - inserting 1000 documents. first: Lost (television drama) and last: Dune: House Atreides -[2018-02-13T00:35:56.049] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:35:56.279] [INFO] cheese - inserting 1000 documents. first: Steve Knight and last: Breandán Ó hEithir -[2018-02-13T00:35:56.306] [INFO] cheese - inserting 1000 documents. first: 2016 Östersunds FK Season and last: 2014 South American Artistic Gymnastics Championships -[2018-02-13T00:35:56.339] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:35:56.365] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:35:56.371] [INFO] cheese - inserting 1000 documents. first: Douglas Sang-Hue and last: Mas sabe el diablo -[2018-02-13T00:35:56.463] [INFO] cheese - inserting 1000 documents. first: Neon Genesis Evangelion (anime) and last: Category:Defunct organizations based in New York City -[2018-02-13T00:35:56.484] [INFO] cheese - inserting 1000 documents. first: George Otto Simms and last: Anarcho primitivism -[2018-02-13T00:35:56.498] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:35:56.519] [INFO] cheese - inserting 1000 documents. first: John Cornelius Butler and last: Template:WikiProject Badminton -[2018-02-13T00:35:56.558] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:35:56.567] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:35:56.606] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:35:56.657] [INFO] cheese - inserting 1000 documents. first: Fraser – Winter Park (Amtrak station) and last: D-2,6-diaminohexanoate 5,6-aminomutase -[2018-02-13T00:35:56.682] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:35:56.860] [INFO] cheese - inserting 1000 documents. first: Shiki Tsukai and last: Category:Suspected Wikipedia sockpuppets of TimySmidge -[2018-02-13T00:35:56.910] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:35:56.957] [INFO] cheese - inserting 1000 documents. first: File:Russiancolours.jpg and last: GM Tech IV engine -[2018-02-13T00:35:56.965] [INFO] cheese - inserting 1000 documents. first: L-tyrosine 2,3-aminomutase and last: Cerro Iru Willkhi -[2018-02-13T00:35:56.976] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Bradley County, Tennessee and last: Bacon Egg and Cheese sandwich -[2018-02-13T00:35:57.015] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:35:57.021] [INFO] cheese - inserting 1000 documents. first: Famous (Marques Houston album) and last: Bitstamp -[2018-02-13T00:35:57.040] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:35:57.053] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T00:35:57.087] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:35:57.102] [INFO] cheese - inserting 1000 documents. first: NGC 6031 and last: G. D. Vosburg -[2018-02-13T00:35:57.152] [INFO] cheese - inserting 1000 documents. first: File:George Washington Bridge NYC at night 2006.jpg and last: 2006 Men's World Floorball Championships -[2018-02-13T00:35:57.162] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:35:57.233] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:35:57.274] [INFO] cheese - inserting 1000 documents. first: Kim Jin-tae and last: Alfred Jerome Cadman -[2018-02-13T00:35:57.314] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:35:57.415] [INFO] cheese - inserting 1000 documents. first: Conahy Shamrocks GAA and last: Naruto: Shippuden (season 5) -[2018-02-13T00:35:57.441] [INFO] cheese - inserting 1000 documents. first: Brightwater, New Zealand and last: Mississippi H.B. 1523 -[2018-02-13T00:35:57.508] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:35:57.511] [INFO] cheese - inserting 1000 documents. first: 23RAINYDAYS and last: Tattooed Serpent -[2018-02-13T00:35:57.597] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:35:57.684] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:35:57.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/weeshweesh.com and last: Yosuke Ikehata -[2018-02-13T00:35:57.848] [INFO] cheese - inserting 1000 documents. first: Philip Williams (United States Navy) and last: How Not to Die in Less Than 24 Hours -[2018-02-13T00:35:57.890] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:35:57.972] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:35:58.144] [INFO] cheese - inserting 1000 documents. first: Mississippi HB 1523 and last: St. Jason -[2018-02-13T00:35:58.162] [INFO] cheese - inserting 1000 documents. first: New Jersey Lis pendens and last: Dimitar Bosnov -[2018-02-13T00:35:58.195] [INFO] cheese - inserting 1000 documents. first: Nikki Blonski and last: Jacqueline Lamba -[2018-02-13T00:35:58.205] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:35:58.220] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:35:58.287] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T00:35:58.398] [INFO] cheese - inserting 1000 documents. first: Peter Parker 2099 and last: Adolfo Romero Lainas -[2018-02-13T00:35:58.418] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ryn Goblin and last: Arthur Farnsworth -[2018-02-13T00:35:58.437] [INFO] cheese - inserting 1000 documents. first: Sergiu Moga and last: Karl Moor -[2018-02-13T00:35:58.452] [INFO] cheese - inserting 1000 documents. first: List of Fire Emblem: The Sacred Stones characters and last: File:Texasleague.png -[2018-02-13T00:35:58.471] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:35:58.501] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:35:58.509] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:35:58.540] [INFO] cheese - batch complete in: 1.487 secs -[2018-02-13T00:35:58.639] [INFO] cheese - inserting 1000 documents. first: Equestrian at the 2006 Central American and Caribbean Games and last: Hyogo At-large district -[2018-02-13T00:35:58.656] [INFO] cheese - inserting 1000 documents. first: Stevenage Borough Council election, 2006 and last: Awomo -[2018-02-13T00:35:58.686] [INFO] cheese - inserting 1000 documents. first: Johnny Dollar (musician) and last: Nam khao thod -[2018-02-13T00:35:58.703] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:35:58.710] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:35:58.745] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:35:58.859] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1967 Pan American Games – Men's 100 metre freestyle and last: Nadahup -[2018-02-13T00:35:58.931] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:35:58.969] [INFO] cheese - inserting 1000 documents. first: File:Pewee nest 2.jpg and last: Watson Island (disambiguation) -[2018-02-13T00:35:59.021] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:35:59.090] [INFO] cheese - inserting 1000 documents. first: Nigel Brooks and last: Wikipedia:WikiProject Spam/Local/moltech.ru -[2018-02-13T00:35:59.116] [INFO] cheese - inserting 1000 documents. first: Camp one (Guantanamo) and last: Wikipedia:Articles for deletion/Dublin Bus (No. 54A) -[2018-02-13T00:35:59.125] [INFO] cheese - inserting 1000 documents. first: Ibaraki At-large district and last: Shadows 4 -[2018-02-13T00:35:59.128] [INFO] cheese - inserting 1000 documents. first: Egil Skallagrimsson and last: Disfiguration -[2018-02-13T00:35:59.152] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:35:59.239] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:35:59.256] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:35:59.289] [INFO] cheese - inserting 1000 documents. first: Template:1904 MLB season by team and last: Covert Carry -[2018-02-13T00:35:59.309] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:35:59.399] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:35:59.482] [INFO] cheese - inserting 1000 documents. first: Category:Kabaddi in Pakistan and last: Template:Parajanov -[2018-02-13T00:35:59.536] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:35:59.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teemo and last: Chapolim Colorado -[2018-02-13T00:35:59.714] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:35:59.763] [INFO] cheese - inserting 1000 documents. first: Christian Lucatero and last: Obama ficki -[2018-02-13T00:35:59.787] [INFO] cheese - inserting 1000 documents. first: Category:Ships of the Romanian Naval Forces and last: Clarksville Historic District (Clarksville, Missouri) -[2018-02-13T00:35:59.832] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:35:59.851] [INFO] cheese - inserting 1000 documents. first: Asenova krepost and last: Category:Filipino wrestlers -[2018-02-13T00:35:59.871] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:35:59.948] [INFO] cheese - inserting 1000 documents. first: File:Fanny Fern grave.jpg and last: How Like a Winter -[2018-02-13T00:35:59.979] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:36:00.018] [INFO] cheese - inserting 1000 documents. first: Category:1356 deaths and last: Orochimaru -[2018-02-13T00:36:00.021] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:36:00.088] [INFO] cheese - inserting 1000 documents. first: Delta Shuttle and last: Wikipedia:WikiProject Christianity/Essential articles -[2018-02-13T00:36:00.115] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:36:00.146] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:36:00.334] [INFO] cheese - inserting 1000 documents. first: O Chapolin Colorado and last: Richard Jackson (footballer, born 1980) -[2018-02-13T00:36:00.450] [INFO] cheese - inserting 1000 documents. first: Statistical grammar and last: Dennis Doherty -[2018-02-13T00:36:00.480] [INFO] cheese - inserting 1000 documents. first: Drawehn and last: White Horse Wood -[2018-02-13T00:36:00.493] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:36:00.524] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:36:00.583] [INFO] cheese - inserting 1000 documents. first: The Transformers: Monstrosity and last: Django/Misty -[2018-02-13T00:36:00.608] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:36:00.637] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:36:00.661] [INFO] cheese - inserting 1000 documents. first: Ken Eklund and last: X Triticale -[2018-02-13T00:36:00.733] [INFO] cheese - inserting 1000 documents. first: Mike Anthony Boland and last: Category:French parasitologists -[2018-02-13T00:36:00.743] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:36:00.834] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:36:01.050] [INFO] cheese - inserting 1000 documents. first: Rock Lee and last: File:Juliana Hatfield - Bed.jpg -[2018-02-13T00:36:01.057] [INFO] cheese - inserting 1000 documents. first: Escuela Mexicana del Valle / Americana and last: Elisa Herrero Uceda -[2018-02-13T00:36:01.086] [INFO] cheese - inserting 1000 documents. first: Michael Joseph Dudick and last: Utkala -[2018-02-13T00:36:01.094] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:36:01.121] [INFO] cheese - inserting 1000 documents. first: Physiological needs and last: Oil City Park -[2018-02-13T00:36:01.124] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:36:01.135] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:36:01.160] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Washington Amateur Croquet League and last: Tulip era -[2018-02-13T00:36:01.187] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:36:01.238] [INFO] cheese - inserting 1000 documents. first: Gamba language and last: Long Thanh Town -[2018-02-13T00:36:01.244] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:36:01.272] [INFO] cheese - inserting 1000 documents. first: Nassuvan and last: Category:Florida Comptrollers -[2018-02-13T00:36:01.317] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:36:01.347] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:36:01.452] [INFO] cheese - inserting 1000 documents. first: Netoge and last: Deborah A Miranda -[2018-02-13T00:36:01.494] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:36:01.504] [INFO] cheese - inserting 1000 documents. first: 179th Street Station (Cedar Busway station) and last: Toronto Xtreme -[2018-02-13T00:36:01.544] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:36:01.601] [INFO] cheese - inserting 1000 documents. first: LJY and last: Maguma -[2018-02-13T00:36:01.642] [INFO] cheese - inserting 1000 documents. first: Starsky and Hutch and last: Aq Bolagh-e Bala -[2018-02-13T00:36:01.646] [INFO] cheese - inserting 1000 documents. first: Tanya (name) and last: James Beaty, Sr. -[2018-02-13T00:36:01.650] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:36:01.669] [INFO] cheese - inserting 1000 documents. first: Powder Monkey (novel) and last: 2002 European Athletics Championships – Men's triple jump -[2018-02-13T00:36:01.687] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:36:01.699] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:36:01.722] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:36:01.814] [INFO] cheese - inserting 1000 documents. first: Daybreak and last: Peek (crater) -[2018-02-13T00:36:01.890] [INFO] cheese - inserting 1000 documents. first: The Uranian and last: Gul gulshan gulfaam -[2018-02-13T00:36:01.903] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:36:01.926] [INFO] cheese - inserting 1000 documents. first: Acacia cupularis and last: Isthmus of Parpach -[2018-02-13T00:36:01.933] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:36:02.070] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:36:02.251] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Beer articles and last: Aerated biofilters -[2018-02-13T00:36:02.275] [INFO] cheese - inserting 1000 documents. first: Ghost amendment and last: A/L iiwarai -[2018-02-13T00:36:02.334] [INFO] cheese - inserting 1000 documents. first: Markus Feulner and last: Template:Hlohovec District -[2018-02-13T00:36:02.340] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:36:02.342] [INFO] cheese - inserting 1000 documents. first: Bayntun-Sandys baronets and last: Yuanping, Shanxi -[2018-02-13T00:36:02.353] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:02.385] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:36:02.402] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:36:02.481] [INFO] cheese - inserting 1000 documents. first: Category:Banks disestablished in 1925 and last: Ostend–Bruges International -[2018-02-13T00:36:02.510] [INFO] cheese - inserting 1000 documents. first: ATCvet code QG52 and last: Mama Do -[2018-02-13T00:36:02.542] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:02.573] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:36:02.677] [INFO] cheese - inserting 1000 documents. first: Osvaldo Vieira International and last: Orlando Sanford (airport) -[2018-02-13T00:36:02.692] [INFO] cheese - batch complete in: 0.15 secs -[2018-02-13T00:36:02.707] [INFO] cheese - inserting 1000 documents. first: Sir Francis Windebank and last: Wikipedia:WikiProject Spam/LinkReports/club-creative.pp.net.ua -[2018-02-13T00:36:02.712] [INFO] cheese - inserting 1000 documents. first: ERK (disambiguation) and last: Styx II -[2018-02-13T00:36:02.746] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:36:02.764] [INFO] cheese - inserting 1000 documents. first: Immortal (stable) and last: Dash Bolaghi -[2018-02-13T00:36:02.785] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:36:02.800] [INFO] cheese - inserting 1000 documents. first: Stanley Island and last: Jeff Henley -[2018-02-13T00:36:02.809] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:02.832] [INFO] cheese - inserting 1000 documents. first: Cosmo Jones in 'Crime Smasher' and last: Mike Clark (Jicks) -[2018-02-13T00:36:02.868] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:36:02.887] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:02.945] [INFO] cheese - inserting 1000 documents. first: Category:Rugby union tours of Zimbabwe and last: Template:Dutch Footballer of the Year -[2018-02-13T00:36:03.008] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:36:03.019] [INFO] cheese - inserting 1000 documents. first: Osaka (airport) and last: Hymyileva Mies -[2018-02-13T00:36:03.064] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:36:03.076] [INFO] cheese - inserting 1000 documents. first: Lex Calpurnia and last: Amos Milton Musser -[2018-02-13T00:36:03.119] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:36:03.165] [INFO] cheese - inserting 1000 documents. first: Joyce Kakuramatsi Kikafunda and last: Category:AfC submissions by date/08 September 2013 -[2018-02-13T00:36:03.210] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:36:03.260] [INFO] cheese - inserting 1000 documents. first: Baron Lytton and last: Category:Cass County, Indiana -[2018-02-13T00:36:03.275] [INFO] cheese - inserting 1000 documents. first: Portal:Technology/Selected article/archive and last: File:Logging train.jpg -[2018-02-13T00:36:03.327] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:03.340] [INFO] cheese - inserting 1000 documents. first: One Two Go Airlines Company Limited and last: Category:1548 compositions -[2018-02-13T00:36:03.370] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:36:03.465] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:03.508] [INFO] cheese - inserting 1000 documents. first: Craig Cobb and last: File:Claremont High School Logo.jpg -[2018-02-13T00:36:03.580] [INFO] cheese - inserting 1000 documents. first: Before the Thrones and last: Is This Real? (lisahall album) -[2018-02-13T00:36:03.606] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:36:03.653] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:36:03.692] [INFO] cheese - inserting 1000 documents. first: Template:TFA title/September 11, 2013 and last: Loca (Dana International song) -[2018-02-13T00:36:03.718] [INFO] cheese - inserting 1000 documents. first: Category:Clark County, Indiana and last: Category:Buffalo County, South Dakota -[2018-02-13T00:36:03.719] [INFO] cheese - inserting 1000 documents. first: File:Cbc.png and last: Template:Vw6 -[2018-02-13T00:36:03.740] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:36:03.758] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:36:03.789] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:03.934] [INFO] cheese - inserting 1000 documents. first: Aiton, Cluj and last: Etou Megumi -[2018-02-13T00:36:03.976] [INFO] cheese - inserting 1000 documents. first: Dead in the Water (Supernatural) and last: Template:South Africa Squad 2013 Women's Cricket World Cup -[2018-02-13T00:36:03.982] [INFO] cheese - inserting 1000 documents. first: Category:Cornett players and last: Cooley anaemia -[2018-02-13T00:36:03.991] [INFO] cheese - inserting 1000 documents. first: Mount Chomolungma and last: Piz Toissa -[2018-02-13T00:36:03.989] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:36:04.012] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:36:04.034] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:36:04.062] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:36:04.121] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1240 and last: Computer reservation system -[2018-02-13T00:36:04.166] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:04.187] [INFO] cheese - inserting 1000 documents. first: 2013–14 Baltic Basketball League and last: Ford R1014 -[2018-02-13T00:36:04.228] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:36:04.259] [INFO] cheese - inserting 1000 documents. first: Touch detective 2 and last: Sophie Charlotte of Bavaria -[2018-02-13T00:36:04.267] [INFO] cheese - inserting 1000 documents. first: Nizzetto and last: Awards and nominations received by Elena Paparizou -[2018-02-13T00:36:04.305] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:36:04.324] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:04.327] [INFO] cheese - inserting 1000 documents. first: Eastham v Newcastle United FC and last: Wikipedia:WikiProject Spam/LinkReports/ulscr.org.uk -[2018-02-13T00:36:04.377] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:36:04.416] [INFO] cheese - inserting 1000 documents. first: Mike V and last: Pittsburgh Dance Council -[2018-02-13T00:36:04.477] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:36:04.488] [INFO] cheese - inserting 1000 documents. first: Awards and nominations received by Elizabeth Taylor and last: Songs recorded by Stateless -[2018-02-13T00:36:04.511] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:36:04.562] [INFO] cheese - inserting 1000 documents. first: Tonight Tonight (EP) and last: Seduction (Wiley song) -[2018-02-13T00:36:04.616] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:36:04.619] [INFO] cheese - inserting 1000 documents. first: Qarah Chanaq, Ardabil and last: Dim Seqerlu -[2018-02-13T00:36:04.667] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:36:04.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Statto-JTA Publishing Corporation and last: Category:Elevators -[2018-02-13T00:36:04.828] [INFO] cheese - inserting 1000 documents. first: Category:Reading skill advocates and last: Joshua Holmes (rugby union) -[2018-02-13T00:36:04.837] [INFO] cheese - inserting 1000 documents. first: Large Black pig and last: Wikipedia:Requests for adminship/KieferSkunk -[2018-02-13T00:36:04.842] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:36:04.867] [INFO] cheese - inserting 1000 documents. first: Songs recorded by Status Quo and last: File:Averett stacked logo.png -[2018-02-13T00:36:04.938] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:04.945] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:36:04.960] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:36:04.986] [INFO] cheese - inserting 1000 documents. first: Plain chachalaca and last: Barlaston railway station -[2018-02-13T00:36:05.083] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:36:05.129] [INFO] cheese - inserting 1000 documents. first: Saks (Surname) and last: CSU Galați -[2018-02-13T00:36:05.167] [INFO] cheese - inserting 1000 documents. first: Dim Segherlu and last: Discount rate (disambiguation) -[2018-02-13T00:36:05.175] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:36:05.226] [INFO] cheese - inserting 1000 documents. first: Category:Campeonato Paranaense 1 players and last: Monastir Habib Bourguiba (international airport) -[2018-02-13T00:36:05.228] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:36:05.259] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:36:05.352] [INFO] cheese - inserting 1000 documents. first: Gras, Ardèche and last: Category:Football managers in France by club -[2018-02-13T00:36:05.389] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:36:05.400] [INFO] cheese - inserting 1000 documents. first: File:RedBankJazzBluesFest2009r.jpg and last: Category:Kirkkonummi -[2018-02-13T00:36:05.453] [INFO] cheese - inserting 1000 documents. first: High Tension and last: Ultima 7, pt. 2 -[2018-02-13T00:36:05.455] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:05.478] [INFO] cheese - inserting 1000 documents. first: Template:Snina District and last: Kingston, Hampshire -[2018-02-13T00:36:05.500] [INFO] cheese - inserting 1000 documents. first: Monseñor Óscar Arnulfo Romero (international airport) and last: 2016–17 Central Coast Mariners FC season -[2018-02-13T00:36:05.515] [INFO] cheese - inserting 1000 documents. first: Diz (disambiguation) and last: Countess of Harrington -[2018-02-13T00:36:05.520] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:05.530] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:36:05.533] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:36:05.558] [INFO] cheese - inserting 1000 documents. first: Ecuadorian Spanish and last: Category:2003 in Gaelic football -[2018-02-13T00:36:05.563] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:36:05.609] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:36:05.708] [INFO] cheese - inserting 1000 documents. first: Template:National pitch and putt teams and last: Qijiang -[2018-02-13T00:36:05.743] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:36:05.839] [INFO] cheese - inserting 1000 documents. first: First-mover disadvantage and last: ArtPrize -[2018-02-13T00:36:05.877] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:05.926] [INFO] cheese - inserting 1000 documents. first: Heat leg rash and last: Lesa Ann Pedriana -[2018-02-13T00:36:05.945] [INFO] cheese - inserting 1000 documents. first: Khalil Kandi and last: 2013–14 UMass Minutemen basketball team -[2018-02-13T00:36:05.965] [INFO] cheese - inserting 1000 documents. first: Roman Catholics in Kazakhstan and last: John McLaughlin's One On One -[2018-02-13T00:36:05.994] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Banská Bystrica Region and last: Charlotte Robillard-Millette -[2018-02-13T00:36:05.996] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:36:06.013] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:06.028] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:36:06.059] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:36:06.155] [INFO] cheese - inserting 1000 documents. first: Ultima 7 Part Two and last: Eidi -[2018-02-13T00:36:06.203] [INFO] cheese - inserting 1000 documents. first: Yesterday Man and last: Trivial Pursuit: Unhinged -[2018-02-13T00:36:06.309] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:36:06.335] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:36:06.520] [INFO] cheese - inserting 1000 documents. first: Assyrians and Syriacs in Syria and last: West Virginia Highway 112 -[2018-02-13T00:36:06.526] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Anthony Drazan and last: Category:United Kingdom free speech case law -[2018-02-13T00:36:06.573] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:36:06.584] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:36:06.586] [INFO] cheese - inserting 1000 documents. first: Portal:Conservatism/box-header-main-ctr and last: Vyacheslav Klypo -[2018-02-13T00:36:06.632] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:36:06.660] [INFO] cheese - inserting 1000 documents. first: File:Carmichael clan farmhouse kitchen.jpg and last: Enanthic acid -[2018-02-13T00:36:06.705] [INFO] cheese - inserting 1000 documents. first: Stanley Rabjohn and last: Nicotinamide mononucleotide -[2018-02-13T00:36:06.711] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:36:06.770] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:36:06.858] [INFO] cheese - inserting 1000 documents. first: José Antonio Cedeño and last: Seal Rock (Oregon) -[2018-02-13T00:36:06.916] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:36:06.945] [INFO] cheese - inserting 1000 documents. first: Route 112 (West Virginia) and last: Heisei Harenchi Gakuen -[2018-02-13T00:36:06.987] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:36:07.022] [INFO] cheese - inserting 1000 documents. first: Perinephila and last: Guestling Halt railway station -[2018-02-13T00:36:07.043] [INFO] cheese - inserting 1000 documents. first: Saskatchewan general election, 1912 and last: David Euan Wallace -[2018-02-13T00:36:07.056] [INFO] cheese - inserting 1000 documents. first: Enanthate and last: Portal:Australia/Anniversaries/October/October 27 -[2018-02-13T00:36:07.072] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:07.088] [INFO] cheese - inserting 1000 documents. first: Category:Freedom of speech in the United Kingdom and last: File:Via Castellana Bandiera.jpg -[2018-02-13T00:36:07.108] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Janie Tsao and last: Maxime Hautbois -[2018-02-13T00:36:07.108] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:36:07.113] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:36:07.156] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:36:07.165] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:07.199] [INFO] cheese - inserting 1000 documents. first: Batt and last: Me (Album) -[2018-02-13T00:36:07.232] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:36:07.382] [INFO] cheese - inserting 1000 documents. first: Malignant poroma and last: Hiyama Yuuya -[2018-02-13T00:36:07.429] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:36:07.464] [INFO] cheese - inserting 1000 documents. first: Mass setting and last: Category:Gunnerales -[2018-02-13T00:36:07.503] [INFO] cheese - inserting 1000 documents. first: File:Cholamandalam MS General Insurance.svg and last: Bian language -[2018-02-13T00:36:07.537] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:36:07.557] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:36:07.595] [INFO] cheese - inserting 1000 documents. first: File:Brand New - New Favorite Weapon (Deluxe).jpg and last: List of songs recorded by Lali Espósito -[2018-02-13T00:36:07.597] [INFO] cheese - inserting 1000 documents. first: Norman Greenhalgh and last: Thomas Napier (colonist of Victoria) -[2018-02-13T00:36:07.691] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:07.706] [INFO] cheese - inserting 1000 documents. first: 2007–08 Russian Cup and last: Connecticut Route 215 -[2018-02-13T00:36:07.724] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:36:07.809] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:36:07.812] [INFO] cheese - inserting 1000 documents. first: Gandhi–King Award and last: Berzelius (crater) -[2018-02-13T00:36:07.885] [INFO] cheese - inserting 1000 documents. first: Category:Besançon RC managers and last: Bettina Müller (canoeist) -[2018-02-13T00:36:07.908] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:36:07.948] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:36:08.046] [INFO] cheese - inserting 1000 documents. first: The Boyz (boy band) and last: Category:Colleen Peterson songs -[2018-02-13T00:36:08.082] [INFO] cheese - inserting 1000 documents. first: The Phynx and last: B Grupa -[2018-02-13T00:36:08.095] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:36:08.152] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:36:08.223] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Customusertemplate-ACP2:Be a part of Wikipedia (History, Copyediting) and last: Wikipedia:WikiProject Spam/Local/nma.co.uk -[2018-02-13T00:36:08.239] [INFO] cheese - inserting 1000 documents. first: Newspaper and Stamp Duties Act and last: Super Specialty Hospital -[2018-02-13T00:36:08.293] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:08.312] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:36:08.431] [INFO] cheese - inserting 1000 documents. first: SUDO and last: Modena Team -[2018-02-13T00:36:08.442] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in the Ntambanana Local Municipality and last: Escadrille N.62 -[2018-02-13T00:36:08.443] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 527 and last: Taisiya Laptyeva -[2018-02-13T00:36:08.472] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:36:08.484] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:36:08.502] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:36:08.564] [INFO] cheese - inserting 1000 documents. first: File:South America Precipitation Map (data from 1976-2009).gif and last: Expatriate Afghan football clubs -[2018-02-13T00:36:08.598] [INFO] cheese - inserting 1000 documents. first: DAT Politics and last: Sinfjötli -[2018-02-13T00:36:08.602] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:36:08.608] [INFO] cheese - inserting 1000 documents. first: Heptapolis and last: File:Middlesex county 1875 - carlisle - p45 500.jpg -[2018-02-13T00:36:08.678] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:36:08.684] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:36:08.782] [INFO] cheese - inserting 1000 documents. first: James Daniel (American football coach) and last: Sir David Monro -[2018-02-13T00:36:08.839] [INFO] cheese - inserting 1000 documents. first: Extant papal tombs and last: Sarawak FA international players -[2018-02-13T00:36:08.874] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:08.870] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:36:08.901] [INFO] cheese - inserting 1000 documents. first: Georgie Robertson Christian College and last: Ember Corporation -[2018-02-13T00:36:08.941] [INFO] cheese - inserting 1000 documents. first: Yilngali language and last: City of Gympie -[2018-02-13T00:36:08.962] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:09.012] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:36:09.086] [INFO] cheese - inserting 1000 documents. first: KRCS-FM and last: Wikipedia:WikiProject Spam/LinkReports/physics.mcgill.ca -[2018-02-13T00:36:09.256] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:36:09.330] [INFO] cheese - inserting 1000 documents. first: Diffuser (optics) and last: Category:Literary agents -[2018-02-13T00:36:09.380] [INFO] cheese - inserting 1000 documents. first: Template:ZHCOTM and last: West Grey -[2018-02-13T00:36:09.425] [INFO] cheese - inserting 1000 documents. first: Scarborough F.C. players and last: José Ulisses de Pina Correia e Silva -[2018-02-13T00:36:09.426] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:36:09.487] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:36:09.485] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:36:09.543] [INFO] cheese - inserting 1000 documents. first: Ukfwo language and last: Rachel Dunlop -[2018-02-13T00:36:09.611] [INFO] cheese - inserting 1000 documents. first: SD San Pedro and last: Wikipedia:University of the Philippines -[2018-02-13T00:36:09.635] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:36:09.675] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:36:09.805] [INFO] cheese - inserting 1000 documents. first: Template:Parga div and last: Dragon Dance (novel) -[2018-02-13T00:36:09.852] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:09.873] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bobber-Xi-Wu and last: Portal:India/SC Summary/SP Dal Lake -[2018-02-13T00:36:09.911] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:09.964] [INFO] cheese - inserting 1000 documents. first: Apethorpe Hall and last: Khaled Al-Ansari -[2018-02-13T00:36:09.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:University of the Philippines System and last: Madan, Montana Province -[2018-02-13T00:36:10.015] [INFO] cheese - inserting 1000 documents. first: Category:21st-century disestablishments in Oklahoma and last: Sony DSLR-A100/B -[2018-02-13T00:36:10.023] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:36:10.035] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:36:10.057] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:10.105] [INFO] cheese - inserting 1000 documents. first: Mississippi Mills and last: Everquest II -[2018-02-13T00:36:10.155] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:36:10.203] [INFO] cheese - inserting 1000 documents. first: Sijil Rendah Pelajaran and last: Portal:Southeast Asia/2007 October 23 -[2018-02-13T00:36:10.246] [INFO] cheese - inserting 1000 documents. first: Category:Fictional characters introduced in 1602 and last: Charles Pingle -[2018-02-13T00:36:10.251] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:36:10.300] [INFO] cheese - inserting 1000 documents. first: Frederick Grove and last: Flood Control (Computer Science) -[2018-02-13T00:36:10.348] [INFO] cheese - batch complete in: 1.473 secs -[2018-02-13T00:36:10.352] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:10.418] [INFO] cheese - inserting 1000 documents. first: 2008 Montreux Volley Masters and last: Category:Hupa villages -[2018-02-13T00:36:10.432] [INFO] cheese - inserting 1000 documents. first: Milburg and last: File:AUS Alphanumeric Route C108.svg -[2018-02-13T00:36:10.457] [INFO] cheese - inserting 1000 documents. first: New Zealand NORML and last: Cape San Diego -[2018-02-13T00:36:10.461] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:10.495] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:36:10.508] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:10.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/amigos-de-borges.net and last: 1999 San Diego Padres season -[2018-02-13T00:36:10.653] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:36:10.725] [INFO] cheese - inserting 1000 documents. first: CFRT and last: Colorado Dory -[2018-02-13T00:36:10.794] [INFO] cheese - inserting 1000 documents. first: Eltonåsen and last: Meadow Sweet -[2018-02-13T00:36:10.809] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:36:10.812] [INFO] cheese - inserting 1000 documents. first: File:AUS Alphanumeric Route C109.svg and last: Teleia sultanella -[2018-02-13T00:36:10.898] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:36:10.905] [INFO] cheese - inserting 1000 documents. first: File:Talons Back Cover.jpg and last: Girkalnis -[2018-02-13T00:36:10.906] [INFO] cheese - inserting 1000 documents. first: Category:Milton Wildcats football players and last: Wikipedia:Articles for deletion/1990-95 Southern Hemisphere tropical cyclone seasons -[2018-02-13T00:36:10.963] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:36:11.002] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:36:11.030] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:11.208] [INFO] cheese - inserting 1000 documents. first: Vehicle registration plates of Mrkazi and last: Interessement -[2018-02-13T00:36:11.326] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:36:11.337] [INFO] cheese - inserting 1000 documents. first: Sad Songs and last: Winterville Site -[2018-02-13T00:36:11.398] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:36:11.408] [INFO] cheese - inserting 1000 documents. first: Sergey Tolchinsky and last: Wikipedia:Featured article candidates/History of Aston Villa F.C. (1961-present)/archive1 -[2018-02-13T00:36:11.476] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:11.489] [INFO] cheese - inserting 1000 documents. first: Oecophora tigratella and last: Category:The Band video albums -[2018-02-13T00:36:11.510] [INFO] cheese - inserting 1000 documents. first: Mr Justice Laddie and last: File:CTRP logo.png -[2018-02-13T00:36:11.546] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:36:11.583] [INFO] cheese - inserting 1000 documents. first: White Knuckled Substance and last: Wikipedia:Articles for deletion/California bearing ratio -[2018-02-13T00:36:11.586] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:36:11.632] [INFO] cheese - inserting 1000 documents. first: River Gardens, California and last: Graham School of Continuing Liberal and Professional Studies -[2018-02-13T00:36:11.655] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:36:11.696] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:11.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thailand-Ukraine relations and last: 20va Shatabdam -[2018-02-13T00:36:11.773] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:36:11.816] [INFO] cheese - inserting 1000 documents. first: File:LSD-Flux.jpg and last: Category:World-bearing animals -[2018-02-13T00:36:11.863] [INFO] cheese - inserting 1000 documents. first: Il Signor Bruschino and last: History of University of Texas at Austin -[2018-02-13T00:36:11.866] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:36:11.873] [INFO] cheese - inserting 1000 documents. first: Khanandabil-e Sharqi and last: Harasban -[2018-02-13T00:36:11.902] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:36:11.925] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:36:11.947] [INFO] cheese - inserting 1000 documents. first: Confederation of Workers of the Republic of Panama and last: Buttevent Franciscan Friary -[2018-02-13T00:36:11.980] [INFO] cheese - inserting 1000 documents. first: Ochr 1 and last: Honey Don't (The Beatles song) -[2018-02-13T00:36:12.006] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:36:12.008] [INFO] cheese - batch complete in: 0.235 secs -[2018-02-13T00:36:12.033] [INFO] cheese - inserting 1000 documents. first: Template:Ottawa Renegades and last: Template:Party shading/Coalition -[2018-02-13T00:36:12.083] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:36:12.202] [INFO] cheese - inserting 1000 documents. first: Havay and last: Rancagua de la Independencia Airport -[2018-02-13T00:36:12.228] [INFO] cheese - inserting 1000 documents. first: Honey Pie (The Beatles song) and last: Birds in culture -[2018-02-13T00:36:12.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of 3-2-1 Penguins! episodes and last: Donna Jean & the Tricksters -[2018-02-13T00:36:12.247] [INFO] cheese - inserting 1000 documents. first: Illapel and last: Parabiaugmented dodecahedron -[2018-02-13T00:36:12.254] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:36:12.265] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:36:12.300] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:36:12.323] [INFO] cheese - inserting 1000 documents. first: Arthur Ross (ice hockey) and last: Barefoot sandal -[2018-02-13T00:36:12.333] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:12.366] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:12.401] [INFO] cheese - inserting 1000 documents. first: File:Album Mr Natural.jpg and last: Corium -[2018-02-13T00:36:12.448] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:36:12.463] [INFO] cheese - inserting 1000 documents. first: Template:Party shading/Coalition/doc and last: Gimnàstic Tarragona -[2018-02-13T00:36:12.510] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:12.687] [INFO] cheese - inserting 1000 documents. first: Nicol Drysdale Stenhouse and last: William Duke of Cambridge -[2018-02-13T00:36:12.731] [INFO] cheese - inserting 1000 documents. first: Template:1915-16 Big Ten Conference men's basketball standings and last: Atheocratism -[2018-02-13T00:36:12.793] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:36:12.809] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:36:12.837] [INFO] cheese - inserting 1000 documents. first: Bull Creek, Florida and last: Contact activation pathway -[2018-02-13T00:36:12.890] [INFO] cheese - inserting 1000 documents. first: Shipping pool and last: José Batlle y Ordóñez, Uruguay -[2018-02-13T00:36:12.899] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:36:12.990] [INFO] cheese - inserting 1000 documents. first: Doom Resurrection and last: 1080s in poetry -[2018-02-13T00:36:13.003] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:36:13.066] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:36:13.113] [INFO] cheese - inserting 1000 documents. first: Draft:Oye Akideinde and last: The Hakawati -[2018-02-13T00:36:13.132] [INFO] cheese - inserting 1000 documents. first: Øyvind Rimbereid and last: Lambert Meertens -[2018-02-13T00:36:13.139] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:36:13.171] [INFO] cheese - inserting 1000 documents. first: Metabiaugmented dodecahedron and last: Richard Wylly Habersham -[2018-02-13T00:36:13.196] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:36:13.250] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:36:13.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cellunlockpro.net and last: 1963 UEFA European Under-18 Football Championship -[2018-02-13T00:36:13.395] [INFO] cheese - inserting 1000 documents. first: Thomas Coningsby and last: Carl Brettschneider -[2018-02-13T00:36:13.406] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:36:13.438] [INFO] cheese - inserting 1000 documents. first: File:Eliphalet Ball marker.jpg and last: Template:1999-2000 Northeast Conference men's basketball standings -[2018-02-13T00:36:13.455] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:36:13.463] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:36:13.475] [INFO] cheese - inserting 1000 documents. first: File:Armchair Science first issue (lowres).jpg and last: Ricardo p cruz sr elementary school -[2018-02-13T00:36:13.501] [INFO] cheese - inserting 1000 documents. first: 1070s in poetry and last: It's a Business -[2018-02-13T00:36:13.538] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:13.555] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:36:13.687] [INFO] cheese - inserting 1000 documents. first: Nørre Gymnasium and last: Presa Canario -[2018-02-13T00:36:13.726] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 NHL Central Division standings and last: Template:2010-11 Division I independents standings (men) -[2018-02-13T00:36:13.728] [INFO] cheese - inserting 1000 documents. first: 1964 UEFA European Under-18 Football Championship and last: Mayu language -[2018-02-13T00:36:13.742] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:36:13.764] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:36:13.788] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:36:13.848] [INFO] cheese - inserting 1000 documents. first: Category:South Carolina railroads and last: Trinity Washington University -[2018-02-13T00:36:13.881] [INFO] cheese - inserting 1000 documents. first: Emlyn Hugh Garner Evans and last: Ormenion -[2018-02-13T00:36:13.932] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:36:13.942] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:36:13.962] [INFO] cheese - inserting 1000 documents. first: File:Durga Puja 2008 Mymensingh 5.JPG and last: Dmitry Makarov -[2018-02-13T00:36:13.971] [INFO] cheese - inserting 1000 documents. first: Canyon Lake Dam and last: Wikipedia:Articles for deletion/Deena Martin -[2018-02-13T00:36:14.019] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:36:14.039] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:36:14.057] [INFO] cheese - inserting 1000 documents. first: Pisacayo and last: 706 AD -[2018-02-13T00:36:14.063] [INFO] cheese - inserting 1000 documents. first: Menejou language and last: File:School seal of Notre Dame of Kidapawan College.jpg -[2018-02-13T00:36:14.099] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:36:14.107] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:36:14.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2006 May 28 and last: Blewitt Falls Lake -[2018-02-13T00:36:14.304] [INFO] cheese - inserting 1000 documents. first: 707 AD and last: 1696 AD -[2018-02-13T00:36:14.331] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:36:14.334] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:36:14.443] [INFO] cheese - inserting 1000 documents. first: Herbert Waddell and last: Naturschutzbund Deutschland -[2018-02-13T00:36:14.465] [INFO] cheese - inserting 1000 documents. first: Ormenio, Greece and last: Milwaukee Avenue, Chicago -[2018-02-13T00:36:14.495] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:36:14.550] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/praram9.com and last: Alyta -[2018-02-13T00:36:14.566] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:36:14.571] [INFO] cheese - inserting 1000 documents. first: Bernathonomus postrosea and last: HMS Sierra Leone -[2018-02-13T00:36:14.592] [INFO] cheese - inserting 1000 documents. first: Professor G.Q. Max Lu and last: Template:2012-13 Hong Kong Top Footballer -[2018-02-13T00:36:14.626] [INFO] cheese - inserting 1000 documents. first: Markham Stouffville Hospital and last: Mount Pleasant, County Durham -[2018-02-13T00:36:14.647] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:36:14.689] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:14.686] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:36:14.728] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:36:14.923] [INFO] cheese - inserting 1000 documents. first: Haj House (Mumbai) and last: MINERVA -[2018-02-13T00:36:14.959] [INFO] cheese - inserting 1000 documents. first: Scottish Cup 1995-96 and last: CCCCCCCC -[2018-02-13T00:36:14.974] [INFO] cheese - inserting 1000 documents. first: Template:2012-13 IRB Womens Sevens World Series and last: Template:2014 FIFA World Cup qualification - AFC Third Round Group E -[2018-02-13T00:36:14.988] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:36:15.013] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:36:15.031] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:36:15.060] [INFO] cheese - inserting 1000 documents. first: Franciscus Richardot and last: File:ESC 1979 logo.png -[2018-02-13T00:36:15.108] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:15.111] [INFO] cheese - inserting 1000 documents. first: Comedy Arts Festival and last: Wikipedia:Wikipedia Signpost/2013-09-11/Arbitration report -[2018-02-13T00:36:15.152] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:36:15.167] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Gratiot County, Michigan and last: Jake Smith (baseball) -[2018-02-13T00:36:15.273] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:15.373] [INFO] cheese - inserting 1000 documents. first: Buftea and last: Clemens non papa -[2018-02-13T00:36:15.444] [INFO] cheese - inserting 1000 documents. first: File:Unsylva 72.jpg and last: Football at the Summer Universiade -[2018-02-13T00:36:15.459] [INFO] cheese - inserting 1000 documents. first: Template:2015–16 FA WSL PFA Team of the Year and last: Template:2015-16 National League 1 Table -[2018-02-13T00:36:15.468] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:36:15.488] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:36:15.540] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:36:15.610] [INFO] cheese - inserting 1000 documents. first: Mahadevi Verma and last: Fax Preference Service -[2018-02-13T00:36:15.636] [INFO] cheese - inserting 1000 documents. first: Chah Esmaeel, Zahedan and last: Category:People associated with Saïd Business School -[2018-02-13T00:36:15.677] [INFO] cheese - inserting 1000 documents. first: N'toko and last: The Moonshiners -[2018-02-13T00:36:15.677] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:36:15.694] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:36:15.750] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:36:15.806] [INFO] cheese - inserting 1000 documents. first: Loss Creek, Texas and last: Wikipedia:Reference desk/Archives/Science/2011 June 1 -[2018-02-13T00:36:15.854] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:15.935] [INFO] cheese - inserting 1000 documents. first: Template:2015-16 Maltese Premier League Second Phase table and last: Template:Attached KML/Interstate 635 (Kansas-Missouri) -[2018-02-13T00:36:15.962] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:16.094] [INFO] cheese - inserting 1000 documents. first: Lynde Point Lighthouse and last: St. Paul's Union Church and Cemetery -[2018-02-13T00:36:16.150] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:36:16.170] [INFO] cheese - inserting 1000 documents. first: Better Loosen Up and last: Wikipedia:Articles for deletion/Koenma -[2018-02-13T00:36:16.174] [INFO] cheese - inserting 1000 documents. first: Category:Fashion journalism and last: Dwarf croaking gourami -[2018-02-13T00:36:16.179] [INFO] cheese - inserting 1000 documents. first: Julia Duin and last: Sulaiman Al Nassr -[2018-02-13T00:36:16.195] [INFO] cheese - inserting 1000 documents. first: Category:Saïd Business School and last: Wikipedia:WikiProject Spam/LinkReports/smithsustainabledesign.com -[2018-02-13T00:36:16.203] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:36:16.206] [INFO] cheese - inserting 1000 documents. first: Moonshiners and last: Håkan Fredriksson -[2018-02-13T00:36:16.236] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:36:16.237] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:36:16.248] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:36:16.258] [INFO] cheese - inserting 1000 documents. first: Category:People from Zombo District and last: Afghan (name) -[2018-02-13T00:36:16.280] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:36:16.345] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:36:16.598] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Mexico-Singapore relations and last: Template:Fb competition 1948-49 Division 2 -[2018-02-13T00:36:16.613] [INFO] cheese - inserting 1000 documents. first: Category:Gornik Wałbrzych players and last: Category:Isotopes of rhenium -[2018-02-13T00:36:16.644] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:16.645] [INFO] cheese - inserting 1000 documents. first: Kaathirundha Kangal and last: Purplebanded snake eel -[2018-02-13T00:36:16.669] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:36:16.688] [INFO] cheese - inserting 1000 documents. first: Knoebels staff and last: Imran ibn Shahin -[2018-02-13T00:36:16.710] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:36:16.755] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:36:16.773] [INFO] cheese - inserting 1000 documents. first: Theracon and last: Pat McManus -[2018-02-13T00:36:16.820] [INFO] cheese - inserting 1000 documents. first: 100 Milionë (The Million Dollar Drop) Albania and last: Marie-Louise O'Donnell -[2018-02-13T00:36:16.849] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:36:16.882] [INFO] cheese - inserting 1000 documents. first: Better loosen up and last: Willie Hefner -[2018-02-13T00:36:16.883] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:36:17.001] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:36:17.185] [INFO] cheese - inserting 1000 documents. first: College of Chinese Culture and last: SATA-IO Serial ATA Revision 2.0 -[2018-02-13T00:36:17.253] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:36:17.273] [INFO] cheese - inserting 1000 documents. first: Mahmoud Saad (disambiguation) and last: Child identity fraud -[2018-02-13T00:36:17.290] [INFO] cheese - inserting 1000 documents. first: U2 incident and last: Hempstead,near Holt, Norfolk -[2018-02-13T00:36:17.343] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:36:17.351] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:17.371] [INFO] cheese - inserting 1000 documents. first: Category:Isotopes of rhodium and last: Frank Beattie -[2018-02-13T00:36:17.457] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:36:17.544] [INFO] cheese - inserting 1000 documents. first: Marie Louise O'Donnell and last: Wikipedia:Miscellany for deletion/User:24.177.120.138/Don't create an account -[2018-02-13T00:36:17.552] [INFO] cheese - inserting 1000 documents. first: File:Warmonger.jpg and last: Abbacy of St Emmeram in Regensburg -[2018-02-13T00:36:17.626] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:36:17.640] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:36:17.795] [INFO] cheese - inserting 1000 documents. first: SATA-IO Serial ATA Revision 3.0 and last: Ad Kolnaar -[2018-02-13T00:36:17.835] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Christianity navigational boxes and last: Template:Fb round2 2014-15 DFB-Pokal R1 -[2018-02-13T00:36:17.860] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:36:17.882] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class United States comics articles and last: Stagecoach Cambridgeshire -[2018-02-13T00:36:17.885] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:17.996] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:36:18.002] [INFO] cheese - inserting 1000 documents. first: Willie G. Hefner and last: Magnolia macrophylla -[2018-02-13T00:36:18.099] [INFO] cheese - inserting 1000 documents. first: Rhode Island Rams football and last: WCRX-LP -[2018-02-13T00:36:18.103] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T00:36:18.153] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:36:18.243] [INFO] cheese - inserting 1000 documents. first: A nos actes manqués and last: Antrodiaetus -[2018-02-13T00:36:18.248] [INFO] cheese - inserting 1000 documents. first: Zagai Island (Queensland) and last: Another Joyous Occasion -[2018-02-13T00:36:18.291] [INFO] cheese - inserting 1000 documents. first: The Lost City (1950 film) and last: Template:Movement for Democratic Change - Tsvangirai/meta/shortname -[2018-02-13T00:36:18.299] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:36:18.310] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:36:18.332] [INFO] cheese - inserting 1000 documents. first: Joaquín Ibáñez Cuevas y de Valonga, Baron de Eroles and last: Ametropalpis vidua -[2018-02-13T00:36:18.356] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:18.408] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:36:18.479] [INFO] cheese - inserting 1000 documents. first: Stagecoach Warwickshire and last: File:Speed King.jpg -[2018-02-13T00:36:18.495] [INFO] cheese - inserting 1000 documents. first: Mahmoud Bahmani and last: Low-latency queuing -[2018-02-13T00:36:18.523] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:36:18.547] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:36:18.587] [INFO] cheese - inserting 1000 documents. first: Category:Sabah federal constituencies and last: Template:Quebec provincial election, 1994/Sainte-Marie-Saint-Jacques -[2018-02-13T00:36:18.609] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:36:18.715] [INFO] cheese - inserting 1000 documents. first: Punjabi music and last: Odd man out -[2018-02-13T00:36:18.796] [INFO] cheese - inserting 1000 documents. first: Charlie Weir and last: Kuwaiti protests (2011–present) -[2018-02-13T00:36:18.800] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:36:18.809] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2008–09 Cypriot First Division and last: Category:2006 short story collections -[2018-02-13T00:36:18.824] [INFO] cheese - inserting 1000 documents. first: Template:OlivierAward MusicalBestActress 1979-2000 and last: Anthoecia divitiosa -[2018-02-13T00:36:18.841] [INFO] cheese - inserting 1000 documents. first: Bentley railway station and last: Dudley "Red" Garrett Memorial Award -[2018-02-13T00:36:18.860] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:36:18.860] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:36:18.900] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:36:18.906] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:18.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tucapital.es and last: Groupe Les Echos -[2018-02-13T00:36:19.003] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:19.073] [INFO] cheese - inserting 1000 documents. first: George Robert Stephenson and last: 1906 Minnesota Golden Gophers football team -[2018-02-13T00:36:19.131] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:36:19.295] [INFO] cheese - inserting 1000 documents. first: Category:Lists of English words of Indian origin and last: Maidiping -[2018-02-13T00:36:19.299] [INFO] cheese - inserting 1000 documents. first: 10th (Sussex) Parachute Battalion and last: Category:The Cranberries members -[2018-02-13T00:36:19.331] [INFO] cheese - inserting 1000 documents. first: Number One (Remember When We Danced All Night) and last: Shivaji Yadav -[2018-02-13T00:36:19.371] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:36:19.422] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:36:19.447] [INFO] cheese - inserting 1000 documents. first: Template:Hacrobia and last: B626 MRK -[2018-02-13T00:36:19.468] [INFO] cheese - inserting 1000 documents. first: History of Ankara and last: Dagora, the Space Monster -[2018-02-13T00:36:19.473] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:36:19.516] [INFO] cheese - inserting 1000 documents. first: R and D and last: USS Southfield (1857) -[2018-02-13T00:36:19.553] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:36:19.621] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:36:19.669] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:36:19.770] [INFO] cheese - inserting 1000 documents. first: 1907 Minnesota Golden Gophers football team and last: Player vs. environment -[2018-02-13T00:36:19.868] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:36:19.870] [INFO] cheese - inserting 1000 documents. first: Bacarri and last: Beth Yeshurun Day School -[2018-02-13T00:36:19.892] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jakob Ziguras and last: USCGC Beaufort (PF-59) -[2018-02-13T00:36:19.922] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:36:19.963] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:36:20.018] [INFO] cheese - inserting 1000 documents. first: Klonari and last: Miriam Frenken -[2018-02-13T00:36:20.070] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:36:20.096] [INFO] cheese - inserting 1000 documents. first: Cane Hill Cemetery and last: Template:IPAc2-mh -[2018-02-13T00:36:20.108] [INFO] cheese - inserting 1000 documents. first: Crusty bread and last: Mer Island -[2018-02-13T00:36:20.202] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:36:20.246] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:36:20.402] [INFO] cheese - inserting 1000 documents. first: PvM and last: Prince of Central Park (2000 film) -[2018-02-13T00:36:20.431] [INFO] cheese - inserting 1000 documents. first: Mike D and last: Derech Hashem -[2018-02-13T00:36:20.447] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:36:20.491] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OERde13 and last: Qaleh Qazi, East Azerbaijan -[2018-02-13T00:36:20.513] [INFO] cheese - inserting 1000 documents. first: Jonathan Holmes (disambiguation) and last: People’s Primary Healthcare Initiative KP -[2018-02-13T00:36:20.530] [INFO] cheese - inserting 1000 documents. first: Category:Baseball venues in Ohio and last: May Brahe -[2018-02-13T00:36:20.539] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:36:20.541] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:20.588] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:36:20.599] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:36:20.710] [INFO] cheese - inserting 1000 documents. first: Category:Islam infobox templates and last: Template:Course page/Tabs -[2018-02-13T00:36:20.765] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:36:20.828] [INFO] cheese - inserting 1000 documents. first: Elena Birkbeck and last: GUS staining -[2018-02-13T00:36:20.849] [INFO] cheese - inserting 1000 documents. first: Surekha Sikri and last: Cullahill -[2018-02-13T00:36:20.883] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:36:20.890] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:36:20.921] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Bala, East Azerbaijan and last: Template:POTD protected/2013-09-18 -[2018-02-13T00:36:20.959] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:36:20.967] [INFO] cheese - inserting 1000 documents. first: FC Schweinfurt 05 II and last: Template:WP California -[2018-02-13T00:36:20.971] [INFO] cheese - inserting 1000 documents. first: File:Kanon Wakeshima Unbalance by Me Cover.jpg and last: Category:1893-94 in Scottish football -[2018-02-13T00:36:21.008] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:36:21.017] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:36:21.144] [INFO] cheese - inserting 1000 documents. first: Gary Beach and last: Category:British novels -[2018-02-13T00:36:21.168] [INFO] cheese - inserting 1000 documents. first: Le Blockhaus d'Éperlecques and last: Template:1988 K-League Best XI -[2018-02-13T00:36:21.194] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:36:21.223] [INFO] cheese - inserting 1000 documents. first: Henry M. Paulson and last: Bombing of Zadar in World War II -[2018-02-13T00:36:21.236] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:21.256] [INFO] cheese - inserting 1000 documents. first: Category:1906-07 IAAUS men's basketball season and last: Category:1918-19 American college basketball standings templates -[2018-02-13T00:36:21.284] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:36:21.293] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:36:21.321] [INFO] cheese - inserting 1000 documents. first: Quruqchi Rudi and last: Paradisus Londinensis -[2018-02-13T00:36:21.358] [INFO] cheese - inserting 1000 documents. first: Homosexuality and Mormonism and last: Bethlehem Lutheran School -[2018-02-13T00:36:21.365] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:36:21.398] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:36:21.436] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Faxai and last: Nangong Shi -[2018-02-13T00:36:21.492] [INFO] cheese - inserting 1000 documents. first: Category:1910-11 in European association football leagues and last: Category:1921-22 in Italian football leagues -[2018-02-13T00:36:21.552] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:36:21.561] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:36:21.786] [INFO] cheese - inserting 1000 documents. first: File:Polymeroxidation.jpg and last: Template:Uw-notvand -[2018-02-13T00:36:21.788] [INFO] cheese - inserting 1000 documents. first: Rajamundry and last: Note book -[2018-02-13T00:36:21.834] [INFO] cheese - inserting 1000 documents. first: HIV-AIDS in New Zealand and last: File:Javier Gonzalez, economist.png -[2018-02-13T00:36:21.894] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:36:21.903] [INFO] cheese - inserting 1000 documents. first: Sullivan West Central School and last: Second Hand Band -[2018-02-13T00:36:21.941] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:36:21.952] [INFO] cheese - inserting 1000 documents. first: File:Avril Henry.jpg and last: Category:1941-42 in Irish association football -[2018-02-13T00:36:21.955] [INFO] cheese - inserting 1000 documents. first: Chinatown (Manchester) and last: Chris "Drama" Pfaff -[2018-02-13T00:36:21.956] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:36:22.012] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:36:22.023] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:22.064] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:22.417] [INFO] cheese - inserting 1000 documents. first: Category:1941-42 Pacific Coast Conference men's basketball season and last: Category:1947-48 in Italian football -[2018-02-13T00:36:22.430] [INFO] cheese - inserting 1000 documents. first: Comet Zhu–Balam and last: Template:Db-unfree-notice -[2018-02-13T00:36:22.496] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:22.520] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T00:36:22.572] [INFO] cheese - inserting 1000 documents. first: Al Barks and last: Joannicius (disambiguation) -[2018-02-13T00:36:22.613] [INFO] cheese - inserting 1000 documents. first: 4 Cheyne Walk and last: Category:Caribbean sportspeople -[2018-02-13T00:36:22.642] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:36:22.665] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:36:22.874] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Route 12 (1924) and last: National Workers' Movement (St. Vincent) -[2018-02-13T00:36:22.883] [INFO] cheese - inserting 1000 documents. first: Note-book and last: Congolese franc -[2018-02-13T00:36:22.886] [INFO] cheese - inserting 1000 documents. first: Bindura District and last: Template:Italictitle/sandbox -[2018-02-13T00:36:22.931] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T00:36:22.972] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:36:22.979] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:36:22.984] [INFO] cheese - inserting 1000 documents. first: Gonzap and last: Category:1963-64 NBA season -[2018-02-13T00:36:23.023] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:36:23.133] [INFO] cheese - inserting 1000 documents. first: Khadem Kandi and last: Wikipedia:GA/Music -[2018-02-13T00:36:23.157] [INFO] cheese - inserting 1000 documents. first: Microsoft Broadband Networking and last: List of former NTA Film Network affiliates -[2018-02-13T00:36:23.171] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:36:23.178] [INFO] cheese - inserting 1000 documents. first: Animal Wall and last: Asciidoc -[2018-02-13T00:36:23.194] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:36:23.224] [INFO] cheese - inserting 1000 documents. first: Category:1961-62 NHL season and last: History of jammu -[2018-02-13T00:36:23.236] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:36:23.251] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:36:23.336] [INFO] cheese - inserting 1000 documents. first: Template:Italictitle/testcases and last: Brăhăşoaia -[2018-02-13T00:36:23.373] [INFO] cheese - inserting 1000 documents. first: Steuben (glass) and last: Portal:Georgia (country)/Selected picture -[2018-02-13T00:36:23.388] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:36:23.420] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:36:23.474] [INFO] cheese - inserting 1000 documents. first: Tangata (spider) and last: Category:1977-78 in Maltese football -[2018-02-13T00:36:23.498] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:36:23.580] [INFO] cheese - inserting 1000 documents. first: Category:Lists of motorcycles and last: The RAND Journal of Economics -[2018-02-13T00:36:23.587] [INFO] cheese - inserting 1000 documents. first: Erectile bone and last: Andrew Stevens -[2018-02-13T00:36:23.603] [INFO] cheese - inserting 1000 documents. first: James Du Pré and last: Category:High-importance Pritzker Military Library-related articles -[2018-02-13T00:36:23.634] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:36:23.657] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:23.670] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:36:23.701] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/harryfox.com and last: PCOS infertility -[2018-02-13T00:36:23.762] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:36:23.793] [INFO] cheese - inserting 1000 documents. first: Brahasoaia and last: Luke, be a Jedi tonight -[2018-02-13T00:36:23.818] [INFO] cheese - inserting 1000 documents. first: Category:1980-81 in Portuguese football and last: Wikipedia:WikiProject Spam/LinkReports/healthy-joints.net -[2018-02-13T00:36:23.828] [INFO] cheese - inserting 1000 documents. first: Template:User KCL and last: Korean War Memorial -[2018-02-13T00:36:23.835] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:23.858] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:36:23.887] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:24.244] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Pritzker Military Library-related articles and last: Bossman (artist) -[2018-02-13T00:36:24.290] [INFO] cheese - inserting 1000 documents. first: Jim Rose Circus and last: Wikipedia:Today's featured article/August 27, 2005 -[2018-02-13T00:36:24.304] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:36:24.404] [INFO] cheese - inserting 1000 documents. first: Eucalyptus expressa and last: Template:ESPN NFL/doc -[2018-02-13T00:36:24.429] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:36:24.440] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Latvia articles by quality/1 and last: Angeles City Science High School -[2018-02-13T00:36:24.571] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:36:24.597] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:36:24.631] [INFO] cheese - inserting 1000 documents. first: Vashishthiputra Pulumavi and last: Portal:San Diego-Tijuana/Tab2 -[2018-02-13T00:36:24.662] [INFO] cheese - inserting 1000 documents. first: Category:User dz-5 and last: Portal:A Nightmare on Elm Street/Did you know/archive -[2018-02-13T00:36:24.712] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:36:24.777] [INFO] cheese - inserting 1000 documents. first: Charles Grosvenor and last: Wilfred White (ice hockey) -[2018-02-13T00:36:24.795] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:36:24.874] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T00:36:25.059] [INFO] cheese - inserting 1000 documents. first: Pointrest, Missouri and last: Category:Former houses in the London Borough of Lambeth -[2018-02-13T00:36:25.126] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:36:25.184] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Economics articles and last: Teribersky Raion -[2018-02-13T00:36:25.233] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:36:25.236] [INFO] cheese - inserting 1000 documents. first: Central of Georgia "Big Apple" and last: Ivan I of Russia -[2018-02-13T00:36:25.248] [INFO] cheese - inserting 1000 documents. first: Portal:Saguenay-Lac-Saint-Jean/Wikimedia and last: Mohammed Jiwa Zainal al-Abidin I -[2018-02-13T00:36:25.274] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/August 28, 2005 and last: Intermediate representation -[2018-02-13T00:36:25.298] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:25.300] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:36:25.324] [INFO] cheese - inserting 1000 documents. first: PXC and last: Category:Montenegrin language -[2018-02-13T00:36:25.340] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:36:25.382] [INFO] cheese - inserting 1000 documents. first: Corinne Chapelle and last: Charlie Silver -[2018-02-13T00:36:25.395] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:36:25.448] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:36:25.522] [INFO] cheese - inserting 1000 documents. first: Template:2013–14 ISU SS WC1 and last: Aqbolagh-e Hasan Kandi -[2018-02-13T00:36:25.567] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:25.672] [INFO] cheese - inserting 1000 documents. first: Intaglio: A Novel in Six Stories and last: Category:Populated places in Jackson County, Michigan -[2018-02-13T00:36:25.696] [INFO] cheese - inserting 1000 documents. first: Category:Catholic Church in Iceland and last: Wikipedia:Articles for deletion/Dreadnaut -[2018-02-13T00:36:25.714] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:36:25.736] [INFO] cheese - inserting 1000 documents. first: File:David-Thomas-Broughton-300x300.jpg and last: Hallgrímskirkja (Hvalfirði) -[2018-02-13T00:36:25.741] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:25.783] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:25.860] [INFO] cheese - inserting 1000 documents. first: Calidota laqueata and last: Wikipedia:Reference desk/Archives/Language/2013 September 16 -[2018-02-13T00:36:25.862] [INFO] cheese - inserting 1000 documents. first: Nickel oxide and last: Wikipedia:Articles for deletion/Tim Roll-Pickering -[2018-02-13T00:36:25.868] [INFO] cheese - inserting 1000 documents. first: Of Other Worlds and last: Wikipedia:Articles for deletion/New Taoist Community -[2018-02-13T00:36:25.900] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:36:25.927] [INFO] cheese - inserting 1000 documents. first: Mmm, Mmm, Mmm, Mmm and last: Buford "Mad Dog" Tannen -[2018-02-13T00:36:25.931] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:36:25.932] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:26.010] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:26.183] [INFO] cheese - inserting 1000 documents. first: Wet Hot American Summer: Ten Years Later and last: Camp Kia Kima -[2018-02-13T00:36:26.237] [INFO] cheese - inserting 1000 documents. first: Separating set and last: Highland, NY -[2018-02-13T00:36:26.255] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Hornsby and last: Ottoman Airforce -[2018-02-13T00:36:26.256] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:26.321] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:26.347] [INFO] cheese - inserting 1000 documents. first: Iya, Iran and last: Uralic–Yukaghir -[2018-02-13T00:36:26.357] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:36:26.519] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:36:26.522] [INFO] cheese - inserting 1000 documents. first: Maharashtra State Highway 151 and last: Coelogyne corymbosa -[2018-02-13T00:36:26.594] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:36:26.764] [INFO] cheese - inserting 1000 documents. first: File:Catoptric theatre.jpg and last: Darnley Island (Queensland) -[2018-02-13T00:36:26.820] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:36:26.896] [INFO] cheese - inserting 1000 documents. first: Papa Wemba discography and last: Alexandre Gama (entrepreneur) -[2018-02-13T00:36:26.951] [INFO] cheese - inserting 1000 documents. first: Haravrd and last: Jose Vasconcelos -[2018-02-13T00:36:26.965] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:36:27.034] [INFO] cheese - inserting 1000 documents. first: Template:2012–13 PBA Commisioner's Cup Playoffs bracket and last: Topdog vs. Underdog -[2018-02-13T00:36:27.037] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:36:27.070] [INFO] cheese - inserting 1000 documents. first: File:Live Radio City Music Hall 2003 album cover.jpg and last: Wikipedia:Articles for creation/2007-10-30 -[2018-02-13T00:36:27.080] [INFO] cheese - inserting 1000 documents. first: Gary Buchanan and last: NMAMIT, Nitte -[2018-02-13T00:36:27.088] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:27.150] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:36:27.171] [INFO] cheese - inserting 1000 documents. first: Adarnase V of Tao and last: List of port grapes -[2018-02-13T00:36:27.265] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:27.270] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:36:27.306] [INFO] cheese - inserting 1000 documents. first: Erub Island and last: Gallo-Romans -[2018-02-13T00:36:27.392] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:36:27.458] [INFO] cheese - inserting 1000 documents. first: Symmetry minute and last: Template:Did you know nominations/Coryloides -[2018-02-13T00:36:27.462] [INFO] cheese - inserting 1000 documents. first: Halal Snack Pack and last: Missa Tu es Petrus (Palestrina) -[2018-02-13T00:36:27.508] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:36:27.527] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:36:27.597] [INFO] cheese - inserting 1000 documents. first: Ad-Dhahiriya and last: Roman Catholic Archdiocese of Avignon -[2018-02-13T00:36:27.619] [INFO] cheese - inserting 1000 documents. first: Category:Endorheic lakes of Australia and last: Category:Åland Islands user templates -[2018-02-13T00:36:27.638] [INFO] cheese - inserting 1000 documents. first: File:JakesThing.jpg and last: Calcium-54 -[2018-02-13T00:36:27.645] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:27.651] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:36:27.673] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:36:27.689] [INFO] cheese - inserting 1000 documents. first: Big penis and last: Sanford Independence Bowl -[2018-02-13T00:36:27.792] [INFO] cheese - inserting 1000 documents. first: Khamas (raga) and last: The Unguarded Moment (song) -[2018-02-13T00:36:27.794] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:36:27.819] [INFO] cheese - inserting 1000 documents. first: File:WBXX theedge104.9 logo.png and last: Ćeran -[2018-02-13T00:36:27.826] [INFO] cheese - inserting 1000 documents. first: Category:Fellows of Queens' College, Cambridge and last: Caledonia-3 Vermont Representative District, 2002–12 -[2018-02-13T00:36:27.853] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:36:27.871] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:36:27.956] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:36:28.067] [INFO] cheese - inserting 1000 documents. first: Ausferrite and last: Wikipedia:Miscellany for deletion/Portal:Forums -[2018-02-13T00:36:28.118] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:28.144] [INFO] cheese - inserting 1000 documents. first: Calcium-55 and last: Ldm -[2018-02-13T00:36:28.188] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:36:28.237] [INFO] cheese - inserting 1000 documents. first: Udel (polymer) and last: Category:Damallsvenskan seasons -[2018-02-13T00:36:28.274] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:36:28.292] [INFO] cheese - inserting 1000 documents. first: Injac and last: 1st Pioneer Battalion (Australia) -[2018-02-13T00:36:28.301] [INFO] cheese - inserting 1000 documents. first: Gibraltar Three and last: John Gale (theologian) -[2018-02-13T00:36:28.308] [INFO] cheese - inserting 1000 documents. first: Clos St. Denis Grand cru and last: Wikipedia:Version 1.0 Editorial Team/St. Louis Cardinals articles by quality statistics -[2018-02-13T00:36:28.335] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:36:28.351] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:36:28.390] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:36:28.432] [INFO] cheese - inserting 1000 documents. first: MainStay Independence Bowl and last: Weaubleau structure -[2018-02-13T00:36:28.492] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:36:28.499] [INFO] cheese - inserting 1000 documents. first: Maybach Music Group Presents Self Made and last: Category:Chilean cumbia -[2018-02-13T00:36:28.512] [INFO] cheese - inserting 1000 documents. first: 欧阳修 and last: Cypripedium franchetii -[2018-02-13T00:36:28.544] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:36:28.563] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:36:28.723] [INFO] cheese - inserting 1000 documents. first: John Sidney Smith and last: Middlesbrough conurbation -[2018-02-13T00:36:28.725] [INFO] cheese - inserting 1000 documents. first: W*ING World Tag Team Championship and last: Hannelore Auer -[2018-02-13T00:36:28.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for creation/2006-06-02 and last: File:Downtwo.jpg -[2018-02-13T00:36:28.764] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:36:28.771] [INFO] cheese - inserting 1000 documents. first: Nils Fredrik Rønnbeck and last: Heroin (album) -[2018-02-13T00:36:28.778] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:36:28.818] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:36:28.826] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:36:28.916] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Bible/Images and last: Konoike Chiaki -[2018-02-13T00:36:28.951] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:36:29.024] [INFO] cheese - inserting 1000 documents. first: Template:The Pharmacology Barnstar and last: You Adachi -[2018-02-13T00:36:29.083] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:36:29.094] [INFO] cheese - inserting 1000 documents. first: Etsuko Kozakura and last: Inertial -[2018-02-13T00:36:29.135] [INFO] cheese - inserting 1000 documents. first: Mike Thompson (umpire) and last: Foreign Policy: Understanding ISIS, The Middle East, and The Complexity of The Syrian War -[2018-02-13T00:36:29.220] [INFO] cheese - inserting 1000 documents. first: Tibetan-Chinese politics and last: Pine Lake (Duxbury, Massachusetts) -[2018-02-13T00:36:29.235] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:36:29.275] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:36:29.303] [INFO] cheese - inserting 1000 documents. first: Hawzien and last: Sierra de Teruel -[2018-02-13T00:36:29.400] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:36:29.460] [INFO] cheese - inserting 1000 documents. first: Bartholomeus and last: Epidendrum callista -[2018-02-13T00:36:29.462] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:36:29.502] [INFO] cheese - inserting 1000 documents. first: Phill harrison and last: Bloodlust (comics) -[2018-02-13T00:36:29.524] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:36:29.581] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:36:29.676] [INFO] cheese - inserting 1000 documents. first: The Book of Mormon (soundtrack) and last: File:Little-Brown-Company-logo.PNG -[2018-02-13T00:36:29.727] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:36:29.800] [INFO] cheese - inserting 1000 documents. first: File:Graceful4 cddvd.jpg and last: Fox Business Happy Hour -[2018-02-13T00:36:29.844] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:36:29.881] [INFO] cheese - inserting 1000 documents. first: Mr. Bill the Conqueror and last: Fellow of the American Society for Microbiology -[2018-02-13T00:36:29.912] [INFO] cheese - inserting 1000 documents. first: Dendrobium bronckartii and last: St. Mark's, Connah's Quay -[2018-02-13T00:36:29.928] [INFO] cheese - inserting 1000 documents. first: Henry Petrie (antiquary) and last: Wikipedia:Articles for deletion/Signs of Reason -[2018-02-13T00:36:29.943] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:36:29.951] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:29.963] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Infobox colors and last: The housemartins -[2018-02-13T00:36:29.977] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:36:30.029] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:36:30.139] [INFO] cheese - inserting 1000 documents. first: Omaha Market House and last: Template:Boxing2011PanAmGames -[2018-02-13T00:36:30.153] [INFO] cheese - inserting 1000 documents. first: Brian bouldrey and last: Brook Village, Nova Scotia -[2018-02-13T00:36:30.167] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:30.180] [INFO] cheese - inserting 1000 documents. first: Jang Dong-Gun and last: VT52 -[2018-02-13T00:36:30.194] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:36:30.247] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T00:36:30.323] [INFO] cheese - inserting 1000 documents. first: Granai airstrike and last: N. Santosh Hegde -[2018-02-13T00:36:30.339] [INFO] cheese - inserting 1000 documents. first: Category:1956 disasters in the United States and last: Arquimínio Rodrigues da Costas -[2018-02-13T00:36:30.363] [INFO] cheese - inserting 1000 documents. first: 1962 Grammys and last: File:Narracan Council 1993.jpg -[2018-02-13T00:36:30.382] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:30.392] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:30.404] [INFO] cheese - inserting 1000 documents. first: The American Academy of Arts and Sciences and last: Wikipedia:Articles for deletion/Dylan pool -[2018-02-13T00:36:30.409] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:36:30.465] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:36:30.536] [INFO] cheese - inserting 1000 documents. first: BAe/McDonnell-Douglas T-45 Goshawk and last: F1 Lotus Team -[2018-02-13T00:36:30.581] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:36:30.690] [INFO] cheese - inserting 1000 documents. first: Thomas Dunhill and last: Electrical polarity -[2018-02-13T00:36:30.742] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:36:30.800] [INFO] cheese - inserting 1000 documents. first: Category:FA Women's Premier League Plate and last: Category:Culture in Central Greece -[2018-02-13T00:36:30.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gui4Cli and last: Large-leaved dendrobium -[2018-02-13T00:36:30.883] [INFO] cheese - inserting 1000 documents. first: William Leach (canoer) and last: Yaraldzha -[2018-02-13T00:36:30.883] [INFO] cheese - inserting 1000 documents. first: Arthur Frederick Pickard and last: Essential mineral -[2018-02-13T00:36:30.923] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:36:30.927] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:36:30.957] [INFO] cheese - inserting 1000 documents. first: American - Greenlandic relations and last: Xiamen–Shenzhen Railway -[2018-02-13T00:36:30.983] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:36:31.027] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:36:31.093] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:36:31.109] [INFO] cheese - inserting 1000 documents. first: Cozy III and last: Vesicular monoamine transporter 1 -[2018-02-13T00:36:31.211] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:36:31.303] [INFO] cheese - inserting 1000 documents. first: Raymond George and last: The Black and White Years -[2018-02-13T00:36:31.351] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:36:31.387] [INFO] cheese - inserting 1000 documents. first: Yaralucheh and last: Sorkheh Kamran -[2018-02-13T00:36:31.390] [INFO] cheese - inserting 1000 documents. first: Hatta I Cabinet and last: Strontium-97 -[2018-02-13T00:36:31.412] [INFO] cheese - inserting 1000 documents. first: Slender pitcher-plant and last: Billy Hughes (footballer, born 1865) -[2018-02-13T00:36:31.443] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:31.461] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:36:31.469] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:36:31.607] [INFO] cheese - inserting 1000 documents. first: Philip Hooker and last: Kyun Hota Hai Pyarrr -[2018-02-13T00:36:31.611] [INFO] cheese - inserting 1000 documents. first: Hanseat III and last: Wikipedia:Articles for deletion/List of Doctor Who Adventures serials -[2018-02-13T00:36:31.641] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:36:31.656] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:36:31.672] [INFO] cheese - inserting 1000 documents. first: File:Niagarahostel salmon.jpg and last: Intruder in the dust -[2018-02-13T00:36:31.716] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:36:31.723] [INFO] cheese - inserting 1000 documents. first: List of alumni of the University of Cambridge and last: KV. 208 -[2018-02-13T00:36:31.734] [INFO] cheese - inserting 1000 documents. first: Strontium-98 and last: Polonium-203 -[2018-02-13T00:36:31.776] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:36:31.799] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:36:31.842] [INFO] cheese - inserting 1000 documents. first: Tatar-e Olya, East Azerbaijan and last: Belgium men's national football team -[2018-02-13T00:36:31.867] [INFO] cheese - inserting 1000 documents. first: List of books about manuscripts and last: Upper Pickwick -[2018-02-13T00:36:31.903] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:31.909] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:31.987] [INFO] cheese - inserting 1000 documents. first: Devinder Pal Singh Bhullar and last: Kyengera -[2018-02-13T00:36:32.023] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:36:32.028] [INFO] cheese - inserting 1000 documents. first: Anyphaena pallidula and last: Bosnian parliament -[2018-02-13T00:36:32.077] [INFO] cheese - inserting 1000 documents. first: AN/AVQ23E and last: Category:Water transport in Israel -[2018-02-13T00:36:32.084] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:36:32.103] [INFO] cheese - inserting 1000 documents. first: Polonium-204 and last: Nobelium-248 -[2018-02-13T00:36:32.109] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:36:32.160] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:36:32.325] [INFO] cheese - inserting 1000 documents. first: Baltalı and last: MKAK -[2018-02-13T00:36:32.359] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:36:32.388] [INFO] cheese - inserting 1000 documents. first: Sutra of Complete Enlightenment and last: Portal:Horror/This day in horror archive/August/19 -[2018-02-13T00:36:32.417] [INFO] cheese - inserting 1000 documents. first: Yttrium-76 and last: Wikipedia:WikiProject Spam/LinkReports/goroda.rossii.alf.navvigator.ru -[2018-02-13T00:36:32.433] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:36:32.443] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:36:32.451] [INFO] cheese - inserting 1000 documents. first: Salman Al Khalifa and last: Mayor of Columbus, OH -[2018-02-13T00:36:32.555] [INFO] cheese - inserting 1000 documents. first: KV 208 and last: Supertec -[2018-02-13T00:36:32.552] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:36:32.617] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:36:32.645] [INFO] cheese - inserting 1000 documents. first: Catochrysops lithargyria and last: The Breakup, Part 2 -[2018-02-13T00:36:32.721] [INFO] cheese - inserting 1000 documents. first: File:ImgCadaQueBelanova.jpg and last: Scio me nihil scire -[2018-02-13T00:36:32.751] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:36:32.807] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:36:32.842] [INFO] cheese - inserting 1000 documents. first: Mercury-185 and last: U21 2009 -[2018-02-13T00:36:32.883] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:32.884] [INFO] cheese - inserting 1000 documents. first: Category:1971 in South American football leagues and last: Bengal's snake-Eel -[2018-02-13T00:36:32.941] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:36:33.058] [INFO] cheese - inserting 1000 documents. first: Category:19th-century merchants and last: Category:East African cricket captains -[2018-02-13T00:36:33.085] [INFO] cheese - inserting 1000 documents. first: Portal:Horror/This day in horror archive/August/2 and last: File:Union Chapel.gif -[2018-02-13T00:36:33.094] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:36:33.135] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:36:33.211] [INFO] cheese - inserting 1000 documents. first: Bengals snake eel and last: Category:Boxing at the 1998 Asian Games -[2018-02-13T00:36:33.225] [INFO] cheese - inserting 1000 documents. first: Home Is Where My Feet Are and last: Michael Psellus -[2018-02-13T00:36:33.237] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:36:33.273] [INFO] cheese - inserting 1000 documents. first: Jeremy Herbert and last: Chersky (disambiguation) -[2018-02-13T00:36:33.272] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:36:33.280] [INFO] cheese - inserting 1000 documents. first: File:George David Freeman.jpg and last: Category:Michael Stearns albums -[2018-02-13T00:36:33.313] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:36:33.337] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:36:33.424] [INFO] cheese - inserting 1000 documents. first: Coral reefs and last: Wikipedia:Articles for deletion/Esquilax -[2018-02-13T00:36:33.435] [INFO] cheese - inserting 1000 documents. first: Istituto di Credito Fondiario delle Venezie and last: Visa requirements for South Ossetia citizens -[2018-02-13T00:36:33.470] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:36:33.497] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:36:33.597] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 276 and last: Almachovan -[2018-02-13T00:36:33.632] [INFO] cheese - inserting 1000 documents. first: Bjorn Fratangelo and last: Five-hundred-meter Aperture Spherical radio Telescope -[2018-02-13T00:36:33.638] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:36:33.676] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:36:33.685] [INFO] cheese - inserting 1000 documents. first: Ottawa Township and last: Puelia -[2018-02-13T00:36:33.696] [INFO] cheese - inserting 1000 documents. first: Light of the World (Jesus) and last: MRNA (guanine-N7-)-methyltransferase -[2018-02-13T00:36:33.741] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:36:33.753] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:36:33.766] [INFO] cheese - inserting 1000 documents. first: Constantine IX Monomachus and last: Gay Fest -[2018-02-13T00:36:33.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Alchemy213/Darryl "Daz" Coppins and last: Template:2016-17 in Croatian football -[2018-02-13T00:36:33.819] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:36:33.855] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:36:33.971] [INFO] cheese - inserting 1000 documents. first: Bayanlucheh and last: Andrew Nicholas Bonaparte-Wyse -[2018-02-13T00:36:33.989] [INFO] cheese - inserting 1000 documents. first: 50d and last: Wikipedia:WikiProject Spam/LinkReports/writingexcuses.com -[2018-02-13T00:36:33.998] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:36:34.030] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:36:34.047] [INFO] cheese - inserting 1000 documents. first: Game mapping and last: File:VCWilliamKenny1.jpg -[2018-02-13T00:36:34.148] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:36:34.173] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Followingfireworks and last: Findlay Township -[2018-02-13T00:36:34.197] [INFO] cheese - inserting 1000 documents. first: Curtiss Mansion and last: Paul Cox -[2018-02-13T00:36:34.203] [INFO] cheese - inserting 1000 documents. first: Raddia and last: Mika Penniman -[2018-02-13T00:36:34.216] [INFO] cheese - inserting 1000 documents. first: Photothermal spectroscopy and last: File:Screenshot-fontproblem1.jpg -[2018-02-13T00:36:34.254] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:36:34.262] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:36:34.345] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:36:34.384] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:36:34.402] [INFO] cheese - inserting 1000 documents. first: Steriruncinated 7-demicube and last: Cao Loc District -[2018-02-13T00:36:34.483] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:34.561] [INFO] cheese - inserting 1000 documents. first: McGlusky the Sea Rover and last: Wikipedia:WikiProject Spam/Local/my-xbox360.com -[2018-02-13T00:36:34.630] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:36:34.738] [INFO] cheese - inserting 1000 documents. first: BRE (disambiguation) and last: Category:AfC submissions by date/10 July 2009 -[2018-02-13T00:36:34.782] [INFO] cheese - inserting 1000 documents. first: Hits South America (A-Ha EP) and last: Wikipedia:Choosing Wisely/American Association of Critical-Care Nurses -[2018-02-13T00:36:34.776] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:36:34.810] [INFO] cheese - inserting 1000 documents. first: Inman park and last: Damn! I Wish I Was Your Lover -[2018-02-13T00:36:34.817] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whitko marching pride and last: Weng (Isar) -[2018-02-13T00:36:34.833] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:34.846] [INFO] cheese - inserting 1000 documents. first: Bao Thang District and last: 2013 World Archery Championships – Compound Mixed Team -[2018-02-13T00:36:34.848] [INFO] cheese - inserting 1000 documents. first: Eislingen and last: Waikino Music Festival -[2018-02-13T00:36:34.884] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:36:34.885] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:36:34.913] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:36:34.926] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:35.015] [INFO] cheese - inserting 1000 documents. first: Al Qubbah, Libya and last: Syd Kitchen -[2018-02-13T00:36:35.060] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:36:35.117] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/11 July 2009 and last: Category:1791 poems -[2018-02-13T00:36:35.147] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:36:35.202] [INFO] cheese - inserting 1000 documents. first: Westendorf (Landkreis Augsburg) and last: Coactivator -[2018-02-13T00:36:35.237] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:36:35.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wiki Loves Women/Volunteers and last: Dlugy -[2018-02-13T00:36:35.294] [INFO] cheese - inserting 1000 documents. first: Scouting in Londonderry and last: Mørejarl -[2018-02-13T00:36:35.302] [INFO] cheese - inserting 1000 documents. first: Baltimore Blast (1980–1992) and last: Sistema Uniforme de Mejora Académica (SUMA) -[2018-02-13T00:36:35.328] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:35.338] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:35.339] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:36:35.349] [INFO] cheese - inserting 1000 documents. first: Wayang Wong and last: File:Ellis-fred-1919.tif -[2018-02-13T00:36:35.385] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:36:35.454] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fairuzfan.com and last: Damnatio ad bestias -[2018-02-13T00:36:35.490] [INFO] cheese - inserting 1000 documents. first: Ahmedi and last: Jorge Daponte -[2018-02-13T00:36:35.491] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:36:35.498] [INFO] cheese - inserting 1000 documents. first: Pietari Inkinen and last: Septomazzantia phaseolorum -[2018-02-13T00:36:35.534] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:36:35.563] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:36:35.590] [INFO] cheese - inserting 1000 documents. first: List of county roads in Bay County, Florida and last: Hannibal Lecter series -[2018-02-13T00:36:35.627] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:36:35.775] [INFO] cheese - inserting 1000 documents. first: Photography in the United States of America and last: Black-eared catbird -[2018-02-13T00:36:35.862] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/apo-opa.org and last: Ship of Fools (song) -[2018-02-13T00:36:35.924] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:35.978] [INFO] cheese - inserting 1000 documents. first: Deanne cheuk and last: Taiyo o nusunda otoko -[2018-02-13T00:36:36.001] [INFO] cheese - inserting 1000 documents. first: Piptoporus elatinus and last: Marptusa oppressa -[2018-02-13T00:36:36.012] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:36:36.038] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:36:36.089] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:36:36.137] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Space exploration articles by quality/8 and last: Confed Cup -[2018-02-13T00:36:36.206] [INFO] cheese - inserting 1000 documents. first: Persecution of secularists in Bangladesh and last: List of people with last name Wallman -[2018-02-13T00:36:36.211] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:36:36.249] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:36:36.446] [INFO] cheese - inserting 1000 documents. first: Scindalma semitostum and last: Saffron Walden Grammar School -[2018-02-13T00:36:36.452] [INFO] cheese - inserting 1000 documents. first: Rochford, South Dakota and last: Galway Warriors -[2018-02-13T00:36:36.462] [INFO] cheese - inserting 1000 documents. first: List of people with last name Walters and last: List of people with the last name Voyles -[2018-02-13T00:36:36.472] [INFO] cheese - inserting 1000 documents. first: John P. Angelos and last: Saginaw Township, MI -[2018-02-13T00:36:36.473] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:36:36.480] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:36:36.508] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:36:36.514] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:36:36.591] [INFO] cheese - inserting 1000 documents. first: File:A VideoCover Japan.jpg and last: Agrilozodes -[2018-02-13T00:36:36.668] [INFO] cheese - inserting 1000 documents. first: List of people with the last name Wadding and last: People with last name Sweeney -[2018-02-13T00:36:36.668] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:36:36.708] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:36:36.742] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Our Last Day To Live and last: Himantoglossum hircinum ssp. caprinum -[2018-02-13T00:36:36.784] [INFO] cheese - inserting 1000 documents. first: Pholiota filaris and last: French ship Protée -[2018-02-13T00:36:36.804] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:36:36.808] [INFO] cheese - inserting 1000 documents. first: BML and last: Meifumado -[2018-02-13T00:36:36.813] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:36:36.825] [INFO] cheese - inserting 1000 documents. first: Valley Christian High School (San Jose, CA) and last: Brisbane Planetarium -[2018-02-13T00:36:36.863] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:36:36.877] [INFO] cheese - inserting 1000 documents. first: People with last name Swinburne and last: People with the last name Shown -[2018-02-13T00:36:36.886] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T00:36:36.909] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:36:36.996] [INFO] cheese - inserting 1000 documents. first: Faisal Saigol and last: Al P. Martinich -[2018-02-13T00:36:37.037] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:36:37.044] [INFO] cheese - inserting 1000 documents. first: People with the last name Shurtleff and last: Ryan (last name) -[2018-02-13T00:36:37.094] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:36:37.130] [INFO] cheese - inserting 1000 documents. first: Template:Australian Film Institute Award for Best Actress in a Leading Role 1971-1979 and last: Women's Full-Contact at W.A.K.O. European Championships 2004 Budva -48 kg -[2018-02-13T00:36:37.145] [INFO] cheese - inserting 1000 documents. first: Himantoglossum caprinum ssp. rumelicum and last: Xylina innominata -[2018-02-13T00:36:37.174] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:36:37.197] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:36:37.226] [INFO] cheese - inserting 1000 documents. first: Cassia bicapsularis and last: Thomas Paterson -[2018-02-13T00:36:37.262] [INFO] cheese - inserting 1000 documents. first: Agbebi and last: Thomas Hepburn -[2018-02-13T00:36:37.283] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:36:37.300] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:36:37.318] [INFO] cheese - inserting 1000 documents. first: Escape From The Studio Tour and last: Wicked witch -[2018-02-13T00:36:37.377] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:36:37.424] [INFO] cheese - inserting 1000 documents. first: Ryeland (last name) and last: Klara Grahn -[2018-02-13T00:36:37.504] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:36:37.625] [INFO] cheese - inserting 1000 documents. first: Ralph (magazine) and last: Constitution of Tennessee -[2018-02-13T00:36:37.631] [INFO] cheese - inserting 1000 documents. first: Lithophane illecebra and last: Academic grading in hungary -[2018-02-13T00:36:37.669] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:36:37.714] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:36:37.756] [INFO] cheese - inserting 1000 documents. first: Category:Belarus articles by importance and last: Graculus perspicillatus -[2018-02-13T00:36:37.806] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:36:37.831] [INFO] cheese - inserting 1000 documents. first: Hugh Esmor Huxley and last: Diocese of Breslau -[2018-02-13T00:36:37.838] [INFO] cheese - inserting 1000 documents. first: Daddy, Mammy, Juddy, Jimmy, Jully and all the family and last: Diario Norte -[2018-02-13T00:36:37.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Timothy Grayem and last: Former Residence of Ba Jin -[2018-02-13T00:36:37.881] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:36:37.892] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:36:37.963] [INFO] cheese - inserting 1000 documents. first: Academic grading in iceland and last: Administrative divisions of argentina -[2018-02-13T00:36:37.972] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:36:38.012] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:36:38.129] [INFO] cheese - inserting 1000 documents. first: Poria crocipora and last: Phacidium minutissimum -[2018-02-13T00:36:38.140] [INFO] cheese - inserting 1000 documents. first: 50 yen and last: List of number-one hits of 2011 (South Korea) -[2018-02-13T00:36:38.162] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:36:38.273] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:36:38.348] [INFO] cheese - inserting 1000 documents. first: Administrative divisions of arkhangelsk oblast and last: St. Roch Church -[2018-02-13T00:36:38.377] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:36:38.454] [INFO] cheese - inserting 1000 documents. first: Bishopric of Breslau and last: Not So Suite 16 (The Suite Life of Zack and Cody episode) -[2018-02-13T00:36:38.471] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1073 and last: Chassidic Judaism -[2018-02-13T00:36:38.472] [INFO] cheese - inserting 1000 documents. first: Pennisetum americanum and last: Polyporus separans -[2018-02-13T00:36:38.513] [INFO] cheese - inserting 1000 documents. first: Anna Ksok and last: Apollon Tsochlas -[2018-02-13T00:36:38.531] [INFO] cheese - inserting 1000 documents. first: Norwood (LIRR station) and last: Wikipedia:WikiProject Microsoft collaboration -[2018-02-13T00:36:38.546] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:36:38.551] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:36:38.607] [INFO] cheese - inserting 1000 documents. first: Category:2016 in Malawi and last: Baily (family name) -[2018-02-13T00:36:38.609] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:36:38.609] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:36:38.654] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:36:38.685] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:38.696] [INFO] cheese - inserting 1000 documents. first: Agariste of sicyon and last: Alabama and florida railway -[2018-02-13T00:36:38.760] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:36:38.867] [INFO] cheese - inserting 1000 documents. first: Bain (family name) and last: The Twisters -[2018-02-13T00:36:38.891] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:36:38.907] [INFO] cheese - inserting 1000 documents. first: Mycosphaerella ceres and last: Rot (Danube) -[2018-02-13T00:36:39.013] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:39.042] [INFO] cheese - inserting 1000 documents. first: Alabama and gulf coast railway and last: Always right as in we are -[2018-02-13T00:36:39.110] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:36:39.234] [INFO] cheese - inserting 1000 documents. first: Nigel Edward Seely, 5th Baronet and last: Mi-Ok Lee -[2018-02-13T00:36:39.272] [INFO] cheese - inserting 1000 documents. first: Sexualities (journal) and last: Category:South Sudan templates -[2018-02-13T00:36:39.274] [INFO] cheese - inserting 1000 documents. first: Henry Dickerson McDaniel and last: SBC Classic -[2018-02-13T00:36:39.290] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:36:39.313] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:36:39.339] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:36:39.354] [INFO] cheese - inserting 1000 documents. first: Always where i need to be and last: Anna paulowna railway station -[2018-02-13T00:36:39.372] [INFO] cheese - inserting 1000 documents. first: Category:Transistors and last: Common collared lizard -[2018-02-13T00:36:39.380] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:36:39.398] [INFO] cheese - inserting 1000 documents. first: Ozonium auricomum and last: Dothidea melanops -[2018-02-13T00:36:39.426] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:39.434] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:36:39.460] [INFO] cheese - inserting 1000 documents. first: 2001 Latvian Football Cup and last: Bharane -[2018-02-13T00:36:39.524] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:36:39.614] [INFO] cheese - inserting 1000 documents. first: Anna rutgers van der loeff and last: Armenians in italy -[2018-02-13T00:36:39.636] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:36:39.706] [INFO] cheese - inserting 1000 documents. first: Portal:Supreme Court of the United States/Selected biography/Layout and last: Hawkman (The Batman) -[2018-02-13T00:36:39.747] [INFO] cheese - inserting 1000 documents. first: Allez Oop and last: The Sun Always Shines on TV -[2018-02-13T00:36:39.753] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:36:39.788] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:36:39.800] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mokshanine and last: Cincinati Bengals -[2018-02-13T00:36:39.812] [INFO] cheese - inserting 1000 documents. first: Armenians in jordan and last: Australian championships in athletics -[2018-02-13T00:36:39.822] [INFO] cheese - inserting 1000 documents. first: National Quality Research Center and last: Category:Tottenham -[2018-02-13T00:36:39.835] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:36:39.851] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:36:39.886] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:36:39.910] [INFO] cheese - inserting 1000 documents. first: Kim Tae Hwan (actor born 1992) and last: Meridan State College -[2018-02-13T00:36:39.970] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:36:40.051] [INFO] cheese - inserting 1000 documents. first: St Mary's Church, Hayling Island and last: United States of America - Malawi relations -[2018-02-13T00:36:40.080] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:36:40.127] [INFO] cheese - inserting 1000 documents. first: Arne Wilhelm Kaurin Tiselius and last: Toyota Cressida -[2018-02-13T00:36:40.143] [INFO] cheese - inserting 1000 documents. first: Green Lantern (The Batman) and last: Pseudoraja fischeri -[2018-02-13T00:36:40.201] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:36:40.202] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:36:40.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/IWGP World Heavyweight Championship and last: Differential nonlinearity -[2018-02-13T00:36:40.278] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:36:40.315] [INFO] cheese - inserting 1000 documents. first: Balgreen halt railway station and last: Baron bourke of castleconnell -[2018-02-13T00:36:40.331] [INFO] cheese - inserting 1000 documents. first: Cincinatti Bengals and last: Felt Mansion -[2018-02-13T00:36:40.337] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:36:40.376] [INFO] cheese - inserting 1000 documents. first: Flaming cliffs 3 and last: File:Vetri (season 2).jpg -[2018-02-13T00:36:40.385] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:36:40.411] [INFO] cheese - inserting 1000 documents. first: Algrœn and last: Tyler Mcniven -[2018-02-13T00:36:40.443] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:36:40.492] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:36:40.693] [INFO] cheese - inserting 1000 documents. first: Baron brabazon of tara and last: Battle of ashdown -[2018-02-13T00:36:40.728] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:36:40.760] [INFO] cheese - inserting 1000 documents. first: Gladys Amelia Anslow and last: Shilong Road (Shanghai Metro) -[2018-02-13T00:36:40.820] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:36:40.848] [INFO] cheese - inserting 1000 documents. first: Neve Eitan and last: Acyl CoA Cholesteryl Acyl Transferase -[2018-02-13T00:36:40.902] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:36:40.906] [INFO] cheese - inserting 1000 documents. first: Battle of asiago and last: Battle of friedland -[2018-02-13T00:36:40.928] [INFO] cheese - inserting 1000 documents. first: Carlos Narciso Chaínho and last: Matthew 10:20 -[2018-02-13T00:36:40.934] [INFO] cheese - batch complete in: 0.206 secs -[2018-02-13T00:36:40.939] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Prowers County, Colorado and last: Fellini's Pizza -[2018-02-13T00:36:40.946] [INFO] cheese - inserting 1000 documents. first: Julie Benz and last: Request For Comments -[2018-02-13T00:36:40.955] [INFO] cheese - inserting 1000 documents. first: Geoff Blakely and last: Category:Churches in South Sudan -[2018-02-13T00:36:40.963] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:40.995] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:36:41.002] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:36:41.015] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:36:41.110] [INFO] cheese - inserting 1000 documents. first: Battle of friedlingen and last: Battle of mons seleucus -[2018-02-13T00:36:41.139] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:36:41.160] [INFO] cheese - inserting 1000 documents. first: Sigma Tau and last: 2009–10 Levski Sofia season -[2018-02-13T00:36:41.230] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:36:41.313] [INFO] cheese - inserting 1000 documents. first: Bühne (Harzvorland) and last: Battle of Kalisz -[2018-02-13T00:36:41.373] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:41.429] [INFO] cheese - inserting 1000 documents. first: Battle of mont sorrel and last: Battle of texel -[2018-02-13T00:36:41.431] [INFO] cheese - inserting 1000 documents. first: Matthew 10:22 and last: Pro Evo 4 -[2018-02-13T00:36:41.446] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:36:41.466] [INFO] cheese - inserting 1000 documents. first: Ding (cartoonist) and last: File:Geo Super logo.png -[2018-02-13T00:36:41.468] [INFO] cheese - inserting 1000 documents. first: Category:Sacrifices in fiction and last: Qarajah Qaya -[2018-02-13T00:36:41.483] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:36:41.507] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:36:41.512] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:36:41.527] [INFO] cheese - inserting 1000 documents. first: Glodeanu-Sarat and last: List of asteroids/187801–187900 -[2018-02-13T00:36:41.560] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:36:41.670] [INFO] cheese - inserting 1000 documents. first: Battle of thala and last: Beaches of hong kong -[2018-02-13T00:36:41.688] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:36:41.703] [INFO] cheese - inserting 1000 documents. first: Template:Politics of Turkey and last: New Zealand Knights FC -[2018-02-13T00:36:41.710] [INFO] cheese - inserting 1000 documents. first: That Man (song) and last: Ethyl bisulfate -[2018-02-13T00:36:41.732] [INFO] cheese - batch complete in: 0.172 secs -[2018-02-13T00:36:41.746] [INFO] cheese - inserting 1000 documents. first: Richard Ruscyzk and last: Julija Volkova -[2018-02-13T00:36:41.772] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:36:41.782] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:36:41.872] [INFO] cheese - inserting 1000 documents. first: Beaches of singapore and last: Berkeley journal of employment and labor law -[2018-02-13T00:36:41.895] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:36:41.918] [INFO] cheese - inserting 1000 documents. first: F.C. Julis and last: Sabine R. Huebner (Ancient Historian) -[2018-02-13T00:36:41.947] [INFO] cheese - inserting 1000 documents. first: Martinian and last: Magwe Division, Burma -[2018-02-13T00:36:41.952] [INFO] cheese - inserting 1000 documents. first: Sanyan-e Pain and last: Aleksei Kulashko -[2018-02-13T00:36:41.960] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:36:42.005] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:36:42.019] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:36:42.053] [INFO] cheese - inserting 1000 documents. first: 1977–78 Scottish Second Division and last: Jamie Davis (musician) -[2018-02-13T00:36:42.056] [INFO] cheese - inserting 1000 documents. first: Conditions (album) and last: Big brother is watching -[2018-02-13T00:36:42.103] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:36:42.105] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:36:42.274] [INFO] cheese - inserting 1000 documents. first: Ragnhild Barland and last: File:Armies Of Light.png -[2018-02-13T00:36:42.287] [INFO] cheese - inserting 1000 documents. first: Big brothers big sisters of america and last: Blackpool pleasure beach railway station -[2018-02-13T00:36:42.314] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:36:42.336] [INFO] cheese - inserting 1000 documents. first: Callistemon and last: File:Graves of January Uprising veterans.jpg -[2018-02-13T00:36:42.351] [INFO] cheese - inserting 1000 documents. first: Sigurdur Thorarinsson and last: Category:1946 disestablishments in Belgium -[2018-02-13T00:36:42.349] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:36:42.412] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:36:42.458] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:36:42.480] [INFO] cheese - inserting 1000 documents. first: Portal:Asian games and last: Template:Infobox animal breed -[2018-02-13T00:36:42.489] [INFO] cheese - inserting 1000 documents. first: Beat Konducta: Volume 1 and last: Lewis and Clark Highway -[2018-02-13T00:36:42.570] [INFO] cheese - inserting 1000 documents. first: Fables (The Dodos song) and last: 1968–69 Scottish Division Two -[2018-02-13T00:36:42.588] [INFO] cheese - inserting 1000 documents. first: Blackpool south railway station and last: Bombing of osaka -[2018-02-13T00:36:42.613] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:36:42.620] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:36:42.653] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:36:42.663] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:36:42.843] [INFO] cheese - inserting 1000 documents. first: Bombing of palestine in world war ii and last: Fête St-Jean-Baptiste -[2018-02-13T00:36:42.861] [INFO] cheese - inserting 1000 documents. first: Tainted (Comic) and last: Peter Curran (footballer) -[2018-02-13T00:36:42.866] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:36:42.880] [INFO] cheese - inserting 1000 documents. first: R&B/Hip-Hop Catalog Albums and last: History of the compass -[2018-02-13T00:36:42.902] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:36:42.932] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:36:43.045] [INFO] cheese - inserting 1000 documents. first: TWC Uptown Amphitheatre and last: Wikipedia:Articles for deletion/J. Patrick Capps -[2018-02-13T00:36:43.046] [INFO] cheese - inserting 1000 documents. first: Education in Chile and last: Kestutis, Grand Prince of Lithuania -[2018-02-13T00:36:43.083] [INFO] cheese - inserting 1000 documents. first: Bracknell forest local elections and last: Wikipedia:WikiProject Big Brother/Big Brother USA -[2018-02-13T00:36:43.090] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:36:43.105] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:43.128] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:36:43.223] [INFO] cheese - inserting 1000 documents. first: Priceline.com and last: Turdus philomelos -[2018-02-13T00:36:43.312] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:36:43.335] [INFO] cheese - inserting 1000 documents. first: XHAQ-FM and last: Armistice Day Blizzard -[2018-02-13T00:36:43.360] [INFO] cheese - inserting 1000 documents. first: Zulfiqqar Ali Bhuttoo and last: Avengers Reborn -[2018-02-13T00:36:43.399] [INFO] cheese - inserting 1000 documents. first: British k class submarine and last: Wikipedia:WikiProject Spam/LinkReports/cbseguess.com -[2018-02-13T00:36:43.412] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:36:43.418] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:36:43.438] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:36:43.595] [INFO] cheese - inserting 1000 documents. first: Category:Mixed martial arts in the United Kingdom and last: Wikipedia:Articles for deletion/Frylock -[2018-02-13T00:36:43.705] [INFO] cheese - inserting 1000 documents. first: Skirgaila, Grand Prince of Lithuania and last: Wikipedia:Articles for deletion/Cochrane (unit) -[2018-02-13T00:36:43.743] [INFO] cheese - inserting 1000 documents. first: Building owners and managers association and last: Scottish Football League 1987-88 -[2018-02-13T00:36:43.754] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:36:43.783] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:43.788] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:36:44.041] [INFO] cheese - inserting 1000 documents. first: Rebellion (1954 film) and last: Iganga General Hospital -[2018-02-13T00:36:44.147] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:36:44.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jim Golden: Guitarist, Radio Personality and last: The Hungry Actors -[2018-02-13T00:36:44.178] [INFO] cheese - inserting 1000 documents. first: Cia activities in brazil and last: McGill Conservatory -[2018-02-13T00:36:44.187] [INFO] cheese - inserting 1000 documents. first: Peugeot 107 and last: Hugh Addonizio -[2018-02-13T00:36:44.210] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:44.269] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:36:44.298] [INFO] cheese - inserting 1000 documents. first: Shireen Sheriar Irani and last: Bahreman, East Azerbaijan -[2018-02-13T00:36:44.318] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T00:36:44.372] [INFO] cheese - inserting 1000 documents. first: Hessian Affine region detector and last: William O'Brien Drury -[2018-02-13T00:36:44.432] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:44.456] [INFO] cheese - inserting 1000 documents. first: Vienna Schwechat International Airport and last: Perseverance Hall -[2018-02-13T00:36:44.456] [INFO] cheese - batch complete in: 1.843 secs -[2018-02-13T00:36:44.478] [INFO] cheese - inserting 1000 documents. first: Campaigns of the american civil war and last: Canton of nangis -[2018-02-13T00:36:44.568] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:36:44.626] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:36:44.802] [INFO] cheese - inserting 1000 documents. first: Felipe Banguero and last: Category:1968 establishments in Zambia -[2018-02-13T00:36:44.906] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:36:44.921] [INFO] cheese - inserting 1000 documents. first: Canton of nantua and last: Carnival in coal -[2018-02-13T00:36:44.963] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:36:45.068] [INFO] cheese - inserting 1000 documents. first: Council of Reims and last: Broughton Poggs -[2018-02-13T00:36:45.136] [INFO] cheese - inserting 1000 documents. first: Category:1910–11 in Scottish football and last: Category:Suspected Wikipedia sockpuppets of Drodedsweard -[2018-02-13T00:36:45.172] [INFO] cheese - inserting 1000 documents. first: Lectionary 332 and last: Phragmatobia rubricosta -[2018-02-13T00:36:45.179] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:36:45.212] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:36:45.217] [INFO] cheese - inserting 1000 documents. first: Carnival in colombia and last: Catherine of valois -[2018-02-13T00:36:45.256] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:36:45.275] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:36:45.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sgt. Robert Barnes and last: The River in Reverse -[2018-02-13T00:36:45.356] [INFO] cheese - inserting 1000 documents. first: Chauna torquata and last: The Challengers (game show) -[2018-02-13T00:36:45.383] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:36:45.445] [INFO] cheese - inserting 1000 documents. first: Abd-al-Hussain Borunsi and last: Category:Churches in Western Sahara -[2018-02-13T00:36:45.449] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T00:36:45.492] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:45.510] [INFO] cheese - inserting 1000 documents. first: Catherine of ymseborg and last: Central council of afghan trade unions -[2018-02-13T00:36:45.539] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:36:45.679] [INFO] cheese - inserting 1000 documents. first: Glaucostegus and last: Category:Automotive industry in the United States -[2018-02-13T00:36:45.710] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:36:45.719] [INFO] cheese - inserting 1000 documents. first: File:DIFF Dharamshala International Film Festival Logo.jpg and last: Gavrilovfjellet -[2018-02-13T00:36:45.757] [INFO] cheese - inserting 1000 documents. first: Compound pendulum and last: Chapman university school of law -[2018-02-13T00:36:45.767] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:36:45.779] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:36:45.802] [INFO] cheese - inserting 1000 documents. first: Łączna and last: Challenge to Lassie -[2018-02-13T00:36:45.850] [INFO] cheese - inserting 1000 documents. first: Uighur detainees in Guantanamo and last: Brand New Lover -[2018-02-13T00:36:45.879] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:36:45.922] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:36:45.936] [INFO] cheese - inserting 1000 documents. first: 1679 Parliament and last: Wikipedia:Files for discussion/2016 May 10 -[2018-02-13T00:36:45.969] [INFO] cheese - inserting 1000 documents. first: Chapman and oxley and last: Chief justice of sri lanka -[2018-02-13T00:36:45.997] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:36:45.992] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:36:46.094] [INFO] cheese - inserting 1000 documents. first: 2011 UT Martin Skyhawks football team and last: Julius Ubido -[2018-02-13T00:36:46.105] [INFO] cheese - inserting 1000 documents. first: Poamsan and last: Metal Hero Series -[2018-02-13T00:36:46.113] [INFO] cheese - inserting 1000 documents. first: List of peers 1650–1659 and last: Gómez (given name) -[2018-02-13T00:36:46.137] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:36:46.148] [INFO] cheese - inserting 1000 documents. first: Chief justice of western australia and last: Christianity in the united states -[2018-02-13T00:36:46.156] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:36:46.169] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:36:46.175] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:36:46.250] [INFO] cheese - inserting 1000 documents. first: Timoteo Rosales III and last: Portal:Indonesia/Featured picture/2008 -[2018-02-13T00:36:46.294] [INFO] cheese - inserting 1000 documents. first: Lee T. Todd, Jr. and last: Daudpur -[2018-02-13T00:36:46.301] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:36:46.307] [INFO] cheese - inserting 1000 documents. first: Tania Verstak and last: Please, Please -[2018-02-13T00:36:46.329] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:36:46.382] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:36:46.419] [INFO] cheese - inserting 1000 documents. first: Christianization of bulgaria and last: Cinema of saudi arabia -[2018-02-13T00:36:46.466] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:36:46.686] [INFO] cheese - inserting 1000 documents. first: Hilda Stumpf and last: Breinesflya -[2018-02-13T00:36:46.694] [INFO] cheese - inserting 1000 documents. first: Cinema of scotland and last: Holbeck Ghyll -[2018-02-13T00:36:46.713] [INFO] cheese - inserting 1000 documents. first: Inula spiraeifolia and last: Crăciunești (disambiguation) -[2018-02-13T00:36:46.713] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:36:46.749] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:36:46.772] [INFO] cheese - inserting 1000 documents. first: Synthetic Schlieren and last: Kimberley Nixon -[2018-02-13T00:36:46.777] [INFO] cheese - inserting 1000 documents. first: Stripe and last: Percy Jocelyn -[2018-02-13T00:36:46.793] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:36:46.829] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:36:46.831] [INFO] cheese - inserting 1000 documents. first: Varbanova and last: Walder Rivers -[2018-02-13T00:36:46.884] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:36:46.900] [INFO] cheese - inserting 1000 documents. first: HSLA Steel and last: O. E. Hailey -[2018-02-13T00:36:46.895] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:36:46.969] [INFO] cheese - inserting 1000 documents. first: Clarence thomas supreme court nomination and last: Coat of arms of buenos aires -[2018-02-13T00:36:46.973] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:36:47.008] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:36:47.146] [INFO] cheese - inserting 1000 documents. first: Craciunesti (disambiguation) and last: Bright Star at Panghulo -[2018-02-13T00:36:47.180] [INFO] cheese - inserting 1000 documents. first: Coat of arms of buftea and last: Collective soul discography -[2018-02-13T00:36:47.188] [INFO] cheese - inserting 1000 documents. first: Category:University of Wisconsin–Eau Claire faculty and last: Category:Torneo Nacional Interprovincial seasons -[2018-02-13T00:36:47.205] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:36:47.243] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:36:47.266] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:36:47.313] [INFO] cheese - inserting 1000 documents. first: Helene Macher and last: Great Beijing Wheel -[2018-02-13T00:36:47.354] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:36:47.456] [INFO] cheese - inserting 1000 documents. first: Altunhisar and last: Spell drop -[2018-02-13T00:36:47.484] [INFO] cheese - inserting 1000 documents. first: Collective for living cinema and last: Commissioners for the reduction of the national debt -[2018-02-13T00:36:47.513] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:36:47.550] [INFO] cheese - inserting 1000 documents. first: Francis Plunkett and last: Bhagavat Geeta -[2018-02-13T00:36:47.579] [INFO] cheese - inserting 1000 documents. first: Draft:Thomas Meilleur-Giguere and last: Patrick Sheehan (Oregon politician) -[2018-02-13T00:36:47.589] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:36:47.642] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:36:47.689] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:36:47.725] [INFO] cheese - inserting 1000 documents. first: Lists of universities in jacksonville and last: Michael FQ San Nicolas -[2018-02-13T00:36:47.821] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:36:47.869] [INFO] cheese - inserting 1000 documents. first: U-shape line and last: Wikipedia:Articles for deletion/Cody Arens -[2018-02-13T00:36:47.915] [INFO] cheese - inserting 1000 documents. first: Commissioners in lunacy and last: Completely hausdorff space -[2018-02-13T00:36:47.935] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:36:47.962] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:48.033] [INFO] cheese - inserting 1000 documents. first: Hiroyasu Sasaki and last: Arms1 -[2018-02-13T00:36:48.108] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:36:48.185] [INFO] cheese - inserting 1000 documents. first: File:West Adelaide Bloods Jumper.svg and last: Consejo mundial de lucha libre -[2018-02-13T00:36:48.232] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T00:36:48.301] [INFO] cheese - inserting 1000 documents. first: Walter Sillers State Office Building and last: Amblesthidus amoenus -[2018-02-13T00:36:48.324] [INFO] cheese - inserting 1000 documents. first: Liheslaturan Guahan and last: List of listed London Underground stations -[2018-02-13T00:36:48.326] [INFO] cheese - inserting 1000 documents. first: I Can See Clearly Now and last: Nagak -[2018-02-13T00:36:48.360] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:36:48.387] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:36:48.423] [INFO] cheese - inserting 1000 documents. first: Template:International cricket in 2011–12 and last: Morphology linguistics -[2018-02-13T00:36:48.423] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:36:48.516] [INFO] cheese - inserting 1000 documents. first: Consejo mundial de lucha libre roster and last: Cook islands national rugby league team -[2018-02-13T00:36:48.519] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:36:48.554] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:36:48.647] [INFO] cheese - inserting 1000 documents. first: CFHL3 and last: File:Bandera Federada 2007.svg -[2018-02-13T00:36:48.670] [INFO] cheese - inserting 1000 documents. first: Issac newton and last: Hartmannsdorf -[2018-02-13T00:36:48.730] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:36:48.753] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T00:36:48.806] [INFO] cheese - inserting 1000 documents. first: Old Centralians and last: Avkhara -[2018-02-13T00:36:48.856] [INFO] cheese - inserting 1000 documents. first: Cook and enjoy it and last: Council of wales and the marches -[2018-02-13T00:36:48.887] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:36:48.904] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:36:48.913] [INFO] cheese - inserting 1000 documents. first: Template:D.I.T.C. and last: Harris shutter -[2018-02-13T00:36:48.929] [INFO] cheese - inserting 1000 documents. first: Amblesthidus plagiatus and last: James Fulton (New Zealand cricketer) -[2018-02-13T00:36:48.957] [INFO] cheese - inserting 1000 documents. first: Book:Rosendale, New York and last: File:Colditz Castle1.jpg -[2018-02-13T00:36:48.966] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:36:48.991] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:36:49.000] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:36:49.100] [INFO] cheese - inserting 1000 documents. first: Council of the americas and last: Cradley heath railway station -[2018-02-13T00:36:49.128] [INFO] cheese - batch complete in: 0.224 secs -[2018-02-13T00:36:49.195] [INFO] cheese - inserting 1000 documents. first: Category:Central State Marauders football coaches and last: Portal:United Kingdom/Featured picture/39 -[2018-02-13T00:36:49.282] [INFO] cheese - inserting 1000 documents. first: Avkhareh and last: Queanbeyan West -[2018-02-13T00:36:49.288] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:36:49.361] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:36:49.460] [INFO] cheese - inserting 1000 documents. first: File:Televisa Regional Logo.png and last: Nasdaq OMX Copenhagen -[2018-02-13T00:36:49.467] [INFO] cheese - inserting 1000 documents. first: The Moffatts and last: Congo "Crisis" -[2018-02-13T00:36:49.502] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:36:49.534] [INFO] cheese - inserting 1000 documents. first: Weightlifting at the 1988 Summer Olympics – Men's 67.5 kg and last: Wikipedia:Meetup/Women in Red/8/Invitation & Thank you & Barnstar -[2018-02-13T00:36:49.568] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:36:49.577] [INFO] cheese - inserting 1000 documents. first: Plumbbob and last: Matthaios Asanes Kantakouzenos -[2018-02-13T00:36:49.640] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:36:49.717] [INFO] cheese - inserting 1000 documents. first: Craft and folk art museum and last: William H. Powell -[2018-02-13T00:36:49.741] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:36:49.851] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:36:49.954] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Desha County, Arkansas and last: Panda Bowl -[2018-02-13T00:36:49.972] [INFO] cheese - inserting 1000 documents. first: Luigi Borgomainerio and last: Barcelona Sants -[2018-02-13T00:36:50.021] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:36:50.038] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:36:50.107] [INFO] cheese - inserting 1000 documents. first: Platyptilia terminalis and last: Neomastogenius -[2018-02-13T00:36:50.152] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:36:50.204] [INFO] cheese - inserting 1000 documents. first: Bud Konheim and last: Category:1970s in American cinema -[2018-02-13T00:36:50.263] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:36:50.269] [INFO] cheese - inserting 1000 documents. first: Theodosius of Portugal and last: Gernsbach -[2018-02-13T00:36:50.359] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:36:50.526] [INFO] cheese - inserting 1000 documents. first: Camanche Reservoir and last: Ayatollah Ahmad Jannati Massah -[2018-02-13T00:36:50.532] [INFO] cheese - inserting 1000 documents. first: Japanese American Citizens League and last: Wikipedia:Articles for deletion/Bia and Bria -[2018-02-13T00:36:50.581] [INFO] cheese - inserting 1000 documents. first: Panda game and last: Portal:Human Body/Musculoskeletal System/Selected article/Layout -[2018-02-13T00:36:50.620] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:36:50.644] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T00:36:50.651] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:36:50.685] [INFO] cheese - inserting 1000 documents. first: Island Pond (Stoddard, New Hampshire) and last: Ik start -[2018-02-13T00:36:50.768] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:36:50.819] [INFO] cheese - inserting 1000 documents. first: Ceres, Santa Fe and last: Wikipedia:Reference desk/Archives/Computing/2011 June 20 -[2018-02-13T00:36:50.888] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:36:50.903] [INFO] cheese - inserting 1000 documents. first: When people grow, people go and last: Jisha Murder Case -[2018-02-13T00:36:50.969] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:36:51.022] [INFO] cheese - inserting 1000 documents. first: Carrie (book) and last: Hiv antigens -[2018-02-13T00:36:51.105] [INFO] cheese - inserting 1000 documents. first: Portal:Human Body/Musculoskeletal System/Selected picture and last: Awake (Bleed the Dream album) -[2018-02-13T00:36:51.098] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:36:51.173] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:36:51.201] [INFO] cheese - inserting 1000 documents. first: Maria's Day and last: Gone for Goode -[2018-02-13T00:36:51.270] [INFO] cheese - inserting 1000 documents. first: File:Tkrnewopen.jpg and last: File:Wallace Terry 1.jpg -[2018-02-13T00:36:51.277] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:36:51.307] [INFO] cheese - inserting 1000 documents. first: Sean Taylor (writer) and last: Economic Development Quarterly -[2018-02-13T00:36:51.344] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:36:51.373] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:36:51.387] [INFO] cheese - inserting 1000 documents. first: Arthur Phillips and last: Copyparty -[2018-02-13T00:36:51.491] [INFO] cheese - inserting 1000 documents. first: Young Souls Tour and last: Bong Ti -[2018-02-13T00:36:51.550] [INFO] cheese - inserting 1000 documents. first: Carl Eyring and last: ISO 639:qlf -[2018-02-13T00:36:51.577] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:36:51.608] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:36:51.662] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:36:51.764] [INFO] cheese - inserting 1000 documents. first: File:Warren Cup exhibition 011.jpg and last: Portugal's Day -[2018-02-13T00:36:51.850] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:36:51.890] [INFO] cheese - inserting 1000 documents. first: Graywing and last: Wikipedia:Featured list candidates/List of members of the Basketball Hall of Fame (coaches)/archive1 -[2018-02-13T00:36:51.911] [INFO] cheese - inserting 1000 documents. first: 1946 All-Ireland Minor Hurling Championship and last: Template:Country data Dungarpur State -[2018-02-13T00:36:51.950] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2005 Dubbo New Years Eve Riot and last: Garde des sceaux -[2018-02-13T00:36:51.962] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:36:51.976] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:36:52.027] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:36:52.089] [INFO] cheese - inserting 1000 documents. first: ISO 639:qlj and last: Fauresmith (industry) -[2018-02-13T00:36:52.152] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:36:52.239] [INFO] cheese - inserting 1000 documents. first: Renault 1.4 Litre and last: Babakücə (disambiguation) -[2018-02-13T00:36:52.291] [INFO] cheese - inserting 1000 documents. first: Under Dusken and last: Joe Dallesandro -[2018-02-13T00:36:52.301] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:36:52.404] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:36:52.409] [INFO] cheese - inserting 1000 documents. first: T.J. Palmer and last: Chris Fydler -[2018-02-13T00:36:52.522] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:36:52.597] [INFO] cheese - inserting 1000 documents. first: The Orchard on Fire and last: Category:American Civil War museums in Alabama -[2018-02-13T00:36:52.658] [INFO] cheese - inserting 1000 documents. first: New York State Touring Route 16A and last: Michael and Me -[2018-02-13T00:36:52.714] [INFO] cheese - inserting 1000 documents. first: The Vermin and last: Ochropleura talda -[2018-02-13T00:36:52.739] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:36:52.705] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:52.809] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:36:52.846] [INFO] cheese - inserting 1000 documents. first: The Sphere College Project and last: Mexican anthem -[2018-02-13T00:36:52.958] [INFO] cheese - inserting 1000 documents. first: Belle Story and last: Mikuláš Tóth (disambiguation) -[2018-02-13T00:36:52.967] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:36:53.031] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:36:53.227] [INFO] cheese - inserting 1000 documents. first: Canaria and last: Kenneth W. Brewer -[2018-02-13T00:36:53.309] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Quitman County, Mississippi and last: File:Jason Becker Not Dead Yet (2012).jpg -[2018-02-13T00:36:53.325] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:36:53.332] [INFO] cheese - inserting 1000 documents. first: A a milne and last: John Charles Martin Nash -[2018-02-13T00:36:53.389] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:53.404] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:36:53.410] [INFO] cheese - inserting 1000 documents. first: Biphenyl-2,3-diol 1,2-dioxygenase and last: California Ballroom -[2018-02-13T00:36:53.425] [INFO] cheese - inserting 1000 documents. first: Caesars Head, South Carolina and last: Larry Cochran -[2018-02-13T00:36:53.465] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:36:53.502] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:36:53.541] [INFO] cheese - inserting 1000 documents. first: Spider-Man: Turn Off the Dark (album) and last: Category:People educated at West Monmouth School -[2018-02-13T00:36:53.593] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:36:53.691] [INFO] cheese - inserting 1000 documents. first: Inclusive restroom and last: Category:People educated at Kirkcudbright Academy -[2018-02-13T00:36:53.756] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:36:53.778] [INFO] cheese - inserting 1000 documents. first: List of EC numbers (EC 5) and last: Siege of Kaifeng (1127) -[2018-02-13T00:36:53.810] [INFO] cheese - inserting 1000 documents. first: George Candilis and last: File:Green Island Serenade - Zi Wei.ogg -[2018-02-13T00:36:53.817] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:36:53.854] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:36:53.863] [INFO] cheese - inserting 1000 documents. first: Ferredoxin—nitrite reductase and last: List of diplomatic missions of Mauritania -[2018-02-13T00:36:53.883] [INFO] cheese - inserting 1000 documents. first: Futurologists and last: Pila, Laguna -[2018-02-13T00:36:53.893] [INFO] cheese - inserting 1000 documents. first: Eriostemon nottii and last: Jurgen Streppel -[2018-02-13T00:36:53.925] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:36:53.940] [INFO] cheese - inserting 1000 documents. first: Hugh Sexey Middle School and last: Xinzhai Town -[2018-02-13T00:36:53.960] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:36:53.966] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:36:54.025] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:36:54.222] [INFO] cheese - inserting 1000 documents. first: Uniform expansivity and last: Eric la salle -[2018-02-13T00:36:54.225] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jacketsale2016.com and last: British Airtours 28M -[2018-02-13T00:36:54.252] [INFO] cheese - inserting 1000 documents. first: Category:1932 establishments in the British Empire and last: Kiran-e Bala -[2018-02-13T00:36:54.274] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:36:54.282] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:36:54.330] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:36:54.346] [INFO] cheese - inserting 1000 documents. first: California State Route 26 (1964) and last: Wikipedia:Articles for deletion/Nappyafro.com -[2018-02-13T00:36:54.367] [INFO] cheese - inserting 1000 documents. first: Eternauta and last: Bishop Harry Jackson -[2018-02-13T00:36:54.392] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:36:54.407] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:54.434] [INFO] cheese - inserting 1000 documents. first: Joaquim Sorolla and last: Xingalol -[2018-02-13T00:36:54.553] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:36:54.581] [INFO] cheese - inserting 1000 documents. first: Medlow Bath and last: Watt's linkage -[2018-02-13T00:36:54.734] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:36:54.776] [INFO] cheese - inserting 1000 documents. first: Template:The Maryland Barnstar/Dark and last: Category:Scientific organisations in New Zealand -[2018-02-13T00:36:54.841] [INFO] cheese - inserting 1000 documents. first: Keran-e Olya and last: Psychroserpens burtonensis -[2018-02-13T00:36:54.852] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:36:54.862] [INFO] cheese - inserting 1000 documents. first: Eriq la salle and last: Book of Qi -[2018-02-13T00:36:54.889] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:36:54.916] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian sports venue stubs and last: Cathedral Green Footbridge -[2018-02-13T00:36:54.930] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:36:54.936] [INFO] cheese - inserting 1000 documents. first: Sânziene and last: Karimaddela -[2018-02-13T00:36:54.967] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:36:54.969] [INFO] cheese - inserting 1000 documents. first: Fruity Loops Mobile and last: 1936-37 Serie B -[2018-02-13T00:36:54.988] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:36:55.016] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:36:55.203] [INFO] cheese - inserting 1000 documents. first: 1936-37 Serie C and last: 1980-81 Southern Football League -[2018-02-13T00:36:55.210] [INFO] cheese - inserting 1000 documents. first: Flounder brewing co and last: Wukang County -[2018-02-13T00:36:55.230] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:36:55.254] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:36:55.257] [INFO] cheese - inserting 1000 documents. first: Above and Beyond and last: Wiltshire County Council -[2018-02-13T00:36:55.287] [INFO] cheese - inserting 1000 documents. first: Rotsidis Mammari and last: Lichfield by-election, 1896 -[2018-02-13T00:36:55.329] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:36:55.346] [INFO] cheese - inserting 1000 documents. first: 2009 Wimbledon Championships – Girls' Singles and last: Macleans (toothpaste) -[2018-02-13T00:36:55.359] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:36:55.368] [INFO] cheese - inserting 1000 documents. first: University of Rice and last: Binary Pattern -[2018-02-13T00:36:55.400] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:36:55.417] [INFO] cheese - inserting 1000 documents. first: (R)-propane-1,2-diol and last: Royal Albert Memorial Museum -[2018-02-13T00:36:55.435] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:36:55.482] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:36:55.554] [INFO] cheese - inserting 1000 documents. first: 1980-81 Stoke City F.C. season and last: 1996 Grand Prix de Tennis de Toulouse - Doubles -[2018-02-13T00:36:55.565] [INFO] cheese - inserting 1000 documents. first: Ravaz and last: Igdalu-ye Bala -[2018-02-13T00:36:55.583] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:36:55.607] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:36:55.846] [INFO] cheese - inserting 1000 documents. first: Sports Car Racing and last: Gambling on papal elections -[2018-02-13T00:36:55.848] [INFO] cheese - inserting 1000 documents. first: My Girl Tisa and last: A Secret Life (Marianne Faithfull album) -[2018-02-13T00:36:55.854] [INFO] cheese - inserting 1000 documents. first: Al Hassan Saleh and last: John Russell Walter -[2018-02-13T00:36:55.872] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:36:55.877] [INFO] cheese - inserting 1000 documents. first: Bulk metal glass and last: National Institute of Statistics -[2018-02-13T00:36:55.952] [INFO] cheese - inserting 1000 documents. first: German emperor and last: West Virginia Wesleyan College -[2018-02-13T00:36:55.959] [INFO] cheese - inserting 1000 documents. first: Hugh Havelock McLean and last: Dúghall de Ergadia -[2018-02-13T00:36:55.986] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:55.992] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:36:56.034] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:36:56.121] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:36:56.149] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:36:56.239] [INFO] cheese - inserting 1000 documents. first: Idehlu-ye Pa'in and last: NWFP cuisine -[2018-02-13T00:36:56.317] [INFO] cheese - inserting 1000 documents. first: 2003 IAAF World Indoor Championships - Men's triple jump and last: Politics of South Tyrol -[2018-02-13T00:36:56.317] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:36:56.344] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:36:56.469] [INFO] cheese - inserting 1000 documents. first: Category:User syl and last: File:Moskvarech.JPG -[2018-02-13T00:36:56.512] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:36:56.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fernando Wwirst and last: Brachida hatayana -[2018-02-13T00:36:56.560] [INFO] cheese - inserting 1000 documents. first: Adult Entertainment (Raffi album) and last: 2010-11 ES Sétif season -[2018-02-13T00:36:56.566] [INFO] cheese - inserting 1000 documents. first: Elisabeth Mary of Braganza and last: Ota Filip -[2018-02-13T00:36:56.576] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:36:56.588] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:36:56.608] [INFO] cheese - inserting 1000 documents. first: File:Toast of new orleans.jpg and last: Category:Arts podcasts -[2018-02-13T00:36:56.620] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:36:56.664] [INFO] cheese - inserting 1000 documents. first: NWFP (region) and last: Badalan, Khuzestan -[2018-02-13T00:36:56.681] [INFO] cheese - inserting 1000 documents. first: Category:Prisons in Florida and last: People's Insurance Company of China -[2018-02-13T00:36:56.689] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:36:56.706] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:36:56.760] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:36:56.820] [INFO] cheese - inserting 1000 documents. first: 2010-11 East Carolina Pirates men's basketball team and last: 2011 Sarasota Open - Doubles -[2018-02-13T00:36:56.857] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:36:56.954] [INFO] cheese - inserting 1000 documents. first: Mess Lake Lava Field and last: Northwestern University in Qatar -[2018-02-13T00:36:56.993] [INFO] cheese - inserting 1000 documents. first: Liogluta falcata and last: Category:Doshisha University faculty -[2018-02-13T00:36:56.995] [INFO] cheese - inserting 1000 documents. first: Bismarck cabinet and last: File:En Concierto Inolvidable (Rocio Durcal Album Cover Art).jpg -[2018-02-13T00:36:57.001] [INFO] cheese - inserting 1000 documents. first: File:WindsorHouse.JPG and last: Wikipedia:Requests for checkuser/Case/Danteferno -[2018-02-13T00:36:57.008] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:36:57.027] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:36:57.032] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:57.079] [INFO] cheese - inserting 1000 documents. first: The Devil Comes Back to Georgia and last: Kisschasy Discography -[2018-02-13T00:36:57.078] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:36:57.091] [INFO] cheese - inserting 1000 documents. first: 2011 Sarasota Open - Singles and last: Category:Soviet emigrants to Germany -[2018-02-13T00:36:57.131] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:36:57.135] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:36:57.213] [INFO] cheese - inserting 1000 documents. first: The Enemy Within and last: Nikolai repnin -[2018-02-13T00:36:57.277] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:36:57.347] [INFO] cheese - inserting 1000 documents. first: File:Grateful Dead - Dave's Picks Volume 8.jpg and last: Aphrissa butleri -[2018-02-13T00:36:57.351] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1980 Summer Olympics - Men's 50 kilometres walk and last: Eurocup Basketball 2009-10 Regular Season -[2018-02-13T00:36:57.373] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:36:57.385] [INFO] cheese - inserting 1000 documents. first: Name of Georgia (country) and last: Template:Fb competition 2009-10 Slovenian PrvaLiga relegation play-offs -[2018-02-13T00:36:57.410] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:36:57.426] [INFO] cheese - inserting 1000 documents. first: Papuk Mountain and last: Triple H 100.1 FM -[2018-02-13T00:36:57.457] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:36:57.513] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:36:57.609] [INFO] cheese - inserting 1000 documents. first: Opinions Won't Keep You Warm At Night and last: Category:Cattle stubs -[2018-02-13T00:36:57.613] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Wisangocaris and last: Josef F. Bille -[2018-02-13T00:36:57.677] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:36:57.678] [INFO] cheese - inserting 1000 documents. first: Eurocup Basketball 2010-11 and last: Thomas Moore Costello -[2018-02-13T00:36:57.689] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:36:57.751] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:36:57.871] [INFO] cheese - inserting 1000 documents. first: Euro F3000 Dijon and last: Cross Edge Dash -[2018-02-13T00:36:57.878] [INFO] cheese - inserting 1000 documents. first: Phoebis boisduvalii and last: Links 234 -[2018-02-13T00:36:57.911] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:36:57.918] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:36:57.928] [INFO] cheese - inserting 1000 documents. first: DRE voting machine and last: XiamenAir -[2018-02-13T00:36:57.964] [INFO] cheese - inserting 1000 documents. first: List of minor planets/104901-105000 and last: List of minor planets/179301-179400 -[2018-02-13T00:36:57.978] [INFO] cheese - inserting 1000 documents. first: Summer Of ’69 and last: Talking signs -[2018-02-13T00:36:58.010] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:36:58.019] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:36:58.054] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:36:58.098] [INFO] cheese - inserting 1000 documents. first: File:Babu Rafique shaking hands with President Ayub Khan.jpg and last: Norwegian Bible Belt -[2018-02-13T00:36:58.150] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:36:58.169] [INFO] cheese - inserting 1000 documents. first: Peshwar and last: Category:Amide solvents -[2018-02-13T00:36:58.246] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:36:58.322] [INFO] cheese - inserting 1000 documents. first: Almadeh and last: Mims effect -[2018-02-13T00:36:58.374] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:36:58.375] [INFO] cheese - inserting 1000 documents. first: Id est and last: Desktop environments -[2018-02-13T00:36:58.393] [INFO] cheese - inserting 1000 documents. first: Truth Commissions and last: Fiji/Economy -[2018-02-13T00:36:58.399] [INFO] cheese - inserting 1000 documents. first: List of minor planets/179401-179500 and last: Kingdom of Gao -[2018-02-13T00:36:58.429] [INFO] cheese - inserting 1000 documents. first: Goalpariya dialect and last: Infosphere -[2018-02-13T00:36:58.447] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:36:58.457] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:58.492] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:36:58.531] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:36:58.666] [INFO] cheese - inserting 1000 documents. first: Deborah Steinberg and last: Stanford University School of Medicine Dermatology Residency Program -[2018-02-13T00:36:58.735] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:36:58.792] [INFO] cheese - inserting 1000 documents. first: Immunologic receptor and last: Pabst von Ohain -[2018-02-13T00:36:58.809] [INFO] cheese - inserting 1000 documents. first: SS Coolabah and last: List of minor planets/92101-92200 -[2018-02-13T00:36:58.858] [INFO] cheese - inserting 1000 documents. first: Template:GoldenGlobeAwardBestMotionPictureMusicalComedy 1981-2000 and last: Ashikaga murder case -[2018-02-13T00:36:58.871] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:36:58.912] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:36:58.944] [INFO] cheese - inserting 1000 documents. first: Aviculin and last: Fortress Luxembourg -[2018-02-13T00:36:58.950] [INFO] cheese - inserting 1000 documents. first: Voidable and last: Carmen Sandiego: The Secret of the Stolen Drums -[2018-02-13T00:36:58.959] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:36:59.000] [INFO] cheese - inserting 1000 documents. first: Dialectical and last: Best Country Vocal Performance, Male -[2018-02-13T00:36:59.049] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:36:59.052] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:36:59.089] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:36:59.287] [INFO] cheese - inserting 1000 documents. first: Template:Country data Nottinghamshire and last: National Register of Historic Places listings in Sleeping Bear Dunes National Lakeshore -[2018-02-13T00:36:59.318] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:36:59.401] [INFO] cheese - inserting 1000 documents. first: Template:Secondary schools in Victoria and last: Category:Taxa named by René Lavocat -[2018-02-13T00:36:59.408] [INFO] cheese - inserting 1000 documents. first: Nigerian Mines and Steel Development Ministry and last: Category:Suspected Wikipedia sockpuppets of 92.145.77.139 -[2018-02-13T00:36:59.409] [INFO] cheese - inserting 1000 documents. first: Sam Dockery and last: Galin Qeshlaqi -[2018-02-13T00:36:59.433] [INFO] cheese - inserting 1000 documents. first: Advanced Numerical Research & Analysis Group and last: Wikipedia:Redirects for discussion/Log/2007 November 11 -[2018-02-13T00:36:59.440] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:36:59.443] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:36:59.455] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:36:59.504] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:36:59.540] [INFO] cheese - inserting 1000 documents. first: Aru-ding and last: Rna-binding proteins -[2018-02-13T00:36:59.590] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:36:59.646] [INFO] cheese - inserting 1000 documents. first: Miluta and last: Wikipedia:WikiProject Spam/LinkReports/chemin-compostelle.eu -[2018-02-13T00:36:59.658] [INFO] cheese - inserting 1000 documents. first: Best Rock Instrumental Performance and last: UN/LOCODE:USHBG -[2018-02-13T00:36:59.694] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:36:59.714] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:36:59.803] [INFO] cheese - inserting 1000 documents. first: 2002 African Championships in Athletics – Men's 100 metres and last: Category:Mauritian people of Marathi descent -[2018-02-13T00:36:59.824] [INFO] cheese - inserting 1000 documents. first: Highway 74 (Arkansas) and last: Wikipedia:Articles for deletion/Flashqard -[2018-02-13T00:36:59.853] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:36:59.859] [INFO] cheese - inserting 1000 documents. first: John St. Polis and last: Chlorophoneus multicolor -[2018-02-13T00:36:59.862] [INFO] cheese - inserting 1000 documents. first: Sandstone Center for the Performing Arts and last: Moanasaurus mangahouangae -[2018-02-13T00:36:59.867] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:36:59.916] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:36:59.927] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:36:59.999] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USHBV and last: UN/LOCODE:USHOO -[2018-02-13T00:37:00.047] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:37:00.117] [INFO] cheese - inserting 1000 documents. first: ODU and last: Andrew Blodgett "Monk" Mayfair -[2018-02-13T00:37:00.175] [INFO] cheese - inserting 1000 documents. first: Tulips - Sylvia Plath and last: Mathilde Comont -[2018-02-13T00:37:00.185] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:37:00.200] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Appalachia and last: 1998 Tonys -[2018-02-13T00:37:00.206] [INFO] cheese - inserting 1000 documents. first: Category:Universities and colleges in Ramsey County, Minnesota and last: List of Hoshizora e Kakaru Hashi episodes -[2018-02-13T00:37:00.218] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:37:00.237] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:37:00.274] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:37:00.356] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USMTL and last: File:Alice Auma Lakwena Behrend.jpg -[2018-02-13T00:37:00.375] [INFO] cheese - inserting 1000 documents. first: Paksas Cabinet I and last: Draft:Naphthalene-1,5-dione -[2018-02-13T00:37:00.449] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:37:00.502] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:37:00.847] [INFO] cheese - inserting 1000 documents. first: Second Battle of Kharkiv and last: Of the Father's Heart Begotten -[2018-02-13T00:37:00.871] [INFO] cheese - inserting 1000 documents. first: Puppeh and last: Wikipedia:Sockpuppet investigations/Louisianaruralhistory/Archive -[2018-02-13T00:37:00.877] [INFO] cheese - inserting 1000 documents. first: Paleologus dynasty and last: POO -[2018-02-13T00:37:00.891] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:37:00.898] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USGFA and last: William Ormsby-Gore (1779–1860) -[2018-02-13T00:37:00.936] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:37:00.942] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:37:00.953] [INFO] cheese - inserting 1000 documents. first: File:Aval Appadithan (TV series).jpg and last: Reading Eagle Theater -[2018-02-13T00:37:00.959] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:37:00.977] [INFO] cheese - inserting 1000 documents. first: Camuiesti and last: Cuban general election, 1901 -[2018-02-13T00:37:01.021] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:37:01.041] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:37:01.186] [INFO] cheese - inserting 1000 documents. first: Roderick Macdonald and last: Khalifeh Chay -[2018-02-13T00:37:01.241] [INFO] cheese - inserting 1000 documents. first: File:TSA Cast.jpg and last: LTG Hugh P. Harris, USA -[2018-02-13T00:37:01.277] [INFO] cheese - batch complete in: 1.41 secs -[2018-02-13T00:37:01.306] [INFO] cheese - inserting 1000 documents. first: Myosin type iv and last: File:Freek2.jpg -[2018-02-13T00:37:01.304] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:37:01.348] [INFO] cheese - inserting 1000 documents. first: Category:Books about Woodrow Wilson and last: Portal:University of Cambridge/Did you know/3 -[2018-02-13T00:37:01.364] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:37:01.409] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:37:01.461] [INFO] cheese - inserting 1000 documents. first: List of people born in Calgary, Alberta, Canada and last: Josip Demirović Devj -[2018-02-13T00:37:01.464] [INFO] cheese - inserting 1000 documents. first: Riker and last: Geofroi Jacques Flach -[2018-02-13T00:37:01.507] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:37:01.525] [INFO] cheese - inserting 1000 documents. first: BBC Media Action and last: Pseudiragoides florianii -[2018-02-13T00:37:01.530] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:37:01.605] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:01.723] [INFO] cheese - inserting 1000 documents. first: Category:1898 novels and last: LR44 Batteries -[2018-02-13T00:37:01.771] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:37:01.803] [INFO] cheese - inserting 1000 documents. first: VADM James A. Stockdale, USN and last: Oliver typewriter -[2018-02-13T00:37:01.841] [INFO] cheese - inserting 1000 documents. first: Property class and last: Portal:Weather/Featured content/GA/353 -[2018-02-13T00:37:01.867] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:01.880] [INFO] cheese - inserting 1000 documents. first: Portal:University of Cambridge/Did you know/4 and last: Hero pen -[2018-02-13T00:37:01.935] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:37:01.957] [INFO] cheese - inserting 1000 documents. first: The Rattlesnakes and last: Charles Tayot -[2018-02-13T00:37:02.034] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:37:02.133] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:37:02.182] [INFO] cheese - inserting 1000 documents. first: Polabian culture and last: Godfrey I of Louvain -[2018-02-13T00:37:02.202] [INFO] cheese - inserting 1000 documents. first: Dominican general election, 1954 and last: Freidrich Wachowiak -[2018-02-13T00:37:02.248] [INFO] cheese - inserting 1000 documents. first: Lū’au and last: Politics of sierra leone -[2018-02-13T00:37:02.289] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:37:02.291] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:37:02.321] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:37:02.483] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/Featured content/GA/354 and last: Bolivarian Alliance for the People of Our America -[2018-02-13T00:37:02.493] [INFO] cheese - inserting 1000 documents. first: Virginia Secondary Route 620 (Fairfax County) and last: The Arrangement (1969 film) -[2018-02-13T00:37:02.537] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:02.548] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:37:02.607] [INFO] cheese - inserting 1000 documents. first: Tejima Keizaburō and last: Template:2013–14 IRB Sevens World Series -[2018-02-13T00:37:02.631] [INFO] cheese - inserting 1000 documents. first: Politics of slovakia and last: Portugal in the eurovision dance contest -[2018-02-13T00:37:02.654] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:37:02.656] [INFO] cheese - inserting 1000 documents. first: Robert Niven (cricketer) and last: GNU Libreboot -[2018-02-13T00:37:02.671] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:37:02.723] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:02.804] [INFO] cheese - inserting 1000 documents. first: University of Patna and last: Wikipedia:Articles for deletion/Fresku -[2018-02-13T00:37:02.893] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:37:02.961] [INFO] cheese - inserting 1000 documents. first: Portugal in the great war and last: Isopentenyl-diphosphate Delta-isomerase -[2018-02-13T00:37:02.969] [INFO] cheese - inserting 1000 documents. first: C27H28Br2O5S and last: The Southern District of New York Action Against Online Poker Players -[2018-02-13T00:37:03.010] [INFO] cheese - inserting 1000 documents. first: Texas hold 'em starting hands and last: Monte Vettore -[2018-02-13T00:37:03.013] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:03.044] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:37:03.103] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:37:03.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Peptide-RNA world and last: Francis Rynd -[2018-02-13T00:37:03.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Dabljuh and last: HP LaserJet 4M -[2018-02-13T00:37:03.207] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:37:03.245] [INFO] cheese - inserting 1000 documents. first: Korstin and last: Category:Buildings and structures in Southington, Connecticut -[2018-02-13T00:37:03.279] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:03.313] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:03.406] [INFO] cheese - inserting 1000 documents. first: Tamburlaine the Great (play) and last: Nicholas Goldsborough -[2018-02-13T00:37:03.443] [INFO] cheese - inserting 1000 documents. first: Natronai II and last: Wikipedia:Articles for deletion/Israel FC: Genesis -[2018-02-13T00:37:03.464] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:37:03.566] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:37:03.608] [INFO] cheese - inserting 1000 documents. first: Sine of X and last: COL4A3 -[2018-02-13T00:37:03.678] [INFO] cheese - inserting 1000 documents. first: Visa policy of Trinidad and Tobago and last: Mouhcine Chehibi -[2018-02-13T00:37:03.693] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:37:03.770] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:03.857] [INFO] cheese - inserting 1000 documents. first: HP LaserJet 4 Plus and last: Football World Cup 1998 (qualification AFC) -[2018-02-13T00:37:03.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alptraum and last: Hurstbridge line -[2018-02-13T00:37:03.924] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:37:04.023] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T00:37:04.202] [INFO] cheese - inserting 1000 documents. first: Laai Ying Haap and last: Luigi Calamatta -[2018-02-13T00:37:04.216] [INFO] cheese - inserting 1000 documents. first: Template:Republic of the Congo topics and last: Logik (Processing and Hosting Services) -[2018-02-13T00:37:04.291] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:37:04.295] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:37:04.306] [INFO] cheese - inserting 1000 documents. first: Arresten and last: Sulakhlu -[2018-02-13T00:37:04.307] [INFO] cheese - inserting 1000 documents. first: Mejirodai, Tōkyō and last: Matja language -[2018-02-13T00:37:04.357] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:37:04.410] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:37:04.414] [INFO] cheese - inserting 1000 documents. first: Jerlun-Langkawi (federal constituency) and last: Template:Party shading/Unidos Podemos -[2018-02-13T00:37:04.504] [INFO] cheese - inserting 1000 documents. first: Football World Cup 1998 (qualification CAF) and last: ISO 639:eng -[2018-02-13T00:37:04.534] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T00:37:04.550] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:37:04.852] [INFO] cheese - inserting 1000 documents. first: Micheal Jordon and last: Wikipedia:Articles for deletion/GreenFacts -[2018-02-13T00:37:04.862] [INFO] cheese - inserting 1000 documents. first: Hydroelectric dams and last: Akoli -[2018-02-13T00:37:04.902] [INFO] cheese - inserting 1000 documents. first: Propuesta Indecente and last: ZebraBox -[2018-02-13T00:37:04.938] [INFO] cheese - inserting 1000 documents. first: Musca fenestralis and last: Phineas and Ferb's Musical Cliptastic Countdown -[2018-02-13T00:37:04.947] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:37:04.971] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:37:05.025] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:37:05.049] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:37:05.100] [INFO] cheese - inserting 1000 documents. first: File:UndercoverAngelDVDCover.jpg and last: UN/LOCODE:THMEK -[2018-02-13T00:37:05.164] [INFO] cheese - inserting 1000 documents. first: Titan Maximum and last: KPSS test -[2018-02-13T00:37:05.202] [INFO] cheese - inserting 1000 documents. first: Star Wars: Fall of the Resistance and last: Category:Pliocene animals of Europe -[2018-02-13T00:37:05.205] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:05.273] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:37:05.277] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:37:05.501] [INFO] cheese - inserting 1000 documents. first: Bishops of Paderborn and last: File:Meher masts 2.jpg -[2018-02-13T00:37:05.549] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:05.584] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USQHK and last: UN/LOCODE:USWVY -[2018-02-13T00:37:05.683] [INFO] cheese - inserting 1000 documents. first: Ulu, Russia and last: Stephen Hudson (singer) -[2018-02-13T00:37:05.787] [INFO] cheese - inserting 1000 documents. first: Every Turn of the World and last: Wikipedia:WikiProject Spam/LinkReports/cinmass.com -[2018-02-13T00:37:05.800] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:37:05.848] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:37:05.871] [INFO] cheese - inserting 1000 documents. first: Stag Weekend and last: File:Loose ends french jimi.jpg -[2018-02-13T00:37:05.926] [INFO] cheese - inserting 1000 documents. first: Paganin and last: Ray Procter -[2018-02-13T00:37:05.985] [INFO] cheese - inserting 1000 documents. first: Commissioner of Public Affairs and Public Safety and last: Edward Reed -[2018-02-13T00:37:06.289] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T00:37:06.479] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T00:37:06.523] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:37:06.559] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T00:37:06.802] [INFO] cheese - inserting 1000 documents. first: Amsit and last: Sypharochiton sinclairi -[2018-02-13T00:37:06.905] [INFO] cheese - batch complete in: 1.356 secs -[2018-02-13T00:37:06.980] [INFO] cheese - inserting 1000 documents. first: Bakemon and last: UN/LOCODE:USLOI -[2018-02-13T00:37:07.069] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T00:37:07.085] [INFO] cheese - inserting 1000 documents. first: Template:Showt County and last: Rising film (long tube vertical) evaporator -[2018-02-13T00:37:07.146] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T00:37:07.155] [INFO] cheese - inserting 1000 documents. first: Alphonse Lemonnier and last: Yang–Mills action -[2018-02-13T00:37:07.214] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:07.283] [INFO] cheese - inserting 1000 documents. first: 1913 Copa del Rey and last: H.J. Whigham -[2018-02-13T00:37:07.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/cinmass.com and last: SAIPA Group -[2018-02-13T00:37:07.351] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:37:07.386] [INFO] cheese - inserting 1000 documents. first: Carhampton and last: Dusan Uhrin -[2018-02-13T00:37:07.386] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T00:37:07.469] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T00:37:07.486] [INFO] cheese - inserting 1000 documents. first: Template:1.1-enzyme-stub and last: San Francisco Bay Oil Spill -[2018-02-13T00:37:07.559] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USXWN and last: Bainbridge -[2018-02-13T00:37:07.587] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:37:07.612] [INFO] cheese - inserting 1000 documents. first: Soganlu and last: Template:Fb team Havre -[2018-02-13T00:37:07.622] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:37:07.679] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:37:07.970] [INFO] cheese - inserting 1000 documents. first: Henry James Whigham and last: Propafol -[2018-02-13T00:37:08.126] [INFO] cheese - inserting 1000 documents. first: Moldova Suliţa and last: Graduate School for Computing in Medicine and Life Sciences -[2018-02-13T00:37:08.143] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:37:08.156] [INFO] cheese - inserting 1000 documents. first: Category:People with hemophilia and last: Cortinarius palatinus -[2018-02-13T00:37:08.311] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:37:08.326] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:37:08.388] [INFO] cheese - inserting 1000 documents. first: Six Metamorphoses after Ovid and last: 1982 NLCS -[2018-02-13T00:37:08.447] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:37:08.557] [INFO] cheese - inserting 1000 documents. first: MAX (band) and last: Cumulo-nimbus -[2018-02-13T00:37:08.623] [INFO] cheese - inserting 1000 documents. first: Category:Indian music composers and last: Wizardry III -[2018-02-13T00:37:08.639] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T00:37:08.714] [INFO] cheese - inserting 1000 documents. first: Lebanon - United States of America relations and last: Jayden Post -[2018-02-13T00:37:08.721] [INFO] cheese - inserting 1000 documents. first: Pervasive Informatics and last: Template:NYCS Platform Layout IRT Flushing Line Local Stations/doc -[2018-02-13T00:37:08.761] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T00:37:08.826] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T00:37:08.855] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:37:08.961] [INFO] cheese - inserting 1000 documents. first: Cortinarius neotropicus and last: Bovingdon Hall Woods -[2018-02-13T00:37:09.035] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:37:09.101] [INFO] cheese - inserting 1000 documents. first: Datong-Xian Passenger Dedicated Railway Line and last: Category:Art museums and galleries in Worcestershire -[2018-02-13T00:37:09.108] [INFO] cheese - inserting 1000 documents. first: 1983 NLCS and last: 2011 NCAA Division I Men's Ice Hockey Tournament -[2018-02-13T00:37:09.262] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:37:09.260] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:37:09.455] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout IRT Flushing Line Local Stations and last: Jandar, Kohgiluyeh and Boyer-Ahmad Province -[2018-02-13T00:37:09.513] [INFO] cheese - inserting 1000 documents. first: Prinetti & Stucchi and last: Zohar (disambiguation) -[2018-02-13T00:37:09.514] [INFO] cheese - inserting 1000 documents. first: Reference scenarios and last: Dot com companies -[2018-02-13T00:37:09.518] [INFO] cheese - inserting 1000 documents. first: WRGB and last: Milevsko -[2018-02-13T00:37:09.526] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:37:09.594] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:37:09.602] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:37:09.631] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:37:09.858] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Hema Malini and last: Polykarp Leyser II -[2018-02-13T00:37:09.869] [INFO] cheese - inserting 1000 documents. first: Phyllis Lindstrom and last: Numea -[2018-02-13T00:37:09.934] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:37:09.954] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:37:10.002] [INFO] cheese - inserting 1000 documents. first: Category:Keb' Mo' album covers and last: Category:1920–21 ice hockey leagues -[2018-02-13T00:37:10.004] [INFO] cheese - inserting 1000 documents. first: File:Tiger Daula.gif and last: Real Me (song) -[2018-02-13T00:37:10.031] [INFO] cheese - inserting 1000 documents. first: Electrical energy measurement and last: Category:Wikipedia sockpuppets of Wookiewinnett -[2018-02-13T00:37:10.043] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:37:10.059] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T00:37:10.114] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:37:10.192] [INFO] cheese - inserting 1000 documents. first: Samuel Robbins Brown (missionary) and last: Glycosylphosphatidylinositol diacylglycerol-lyase -[2018-02-13T00:37:10.237] [INFO] cheese - inserting 1000 documents. first: Romaniote language and last: UN/LOCODE:USLVK -[2018-02-13T00:37:10.310] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:37:10.336] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:37:10.385] [INFO] cheese - inserting 1000 documents. first: Joseph Anton Steffan and last: Swimming at the 2006 Asian Games - Women's 100m butterfly -[2018-02-13T00:37:10.436] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:37:10.483] [INFO] cheese - inserting 1000 documents. first: Kamen Rider 555: Paradise Lost and last: Santo Amaro, Azores Islands -[2018-02-13T00:37:10.576] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:37:10.665] [INFO] cheese - inserting 1000 documents. first: Template:2016–17 Northern Football League Division Two table and last: The Final Last of the Ultimate End (short story) -[2018-02-13T00:37:10.678] [INFO] cheese - inserting 1000 documents. first: Milán Václavík and last: Liechtenstein parliamentary election, 1932 -[2018-02-13T00:37:10.781] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:37:10.784] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:37:10.787] [INFO] cheese - inserting 1000 documents. first: Portal:Ice hockey/Featured lists/6 and last: Lee Leffingwell -[2018-02-13T00:37:10.903] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:37:10.981] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USRKF and last: Winnie the pooh -[2018-02-13T00:37:10.986] [INFO] cheese - inserting 1000 documents. first: Lancia Augusta and last: Stefanie Beck -[2018-02-13T00:37:11.098] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:37:11.105] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:37:11.203] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2006 Asian Games - Women's 100m freestyle and last: 2011 Budapest Grand Prix – Singles Qualifying -[2018-02-13T00:37:11.315] [INFO] cheese - inserting 1000 documents. first: Praia da Vitória, Azores Islands and last: Barbadian general election, 1981 -[2018-02-13T00:37:11.341] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:37:11.454] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:37:11.526] [INFO] cheese - inserting 1000 documents. first: Liechtenstein parliamentary election, 1936 and last: Almaran -[2018-02-13T00:37:11.594] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:37:11.645] [INFO] cheese - inserting 1000 documents. first: Kristina Alikina and last: Fernandez de la Cruz (Buenos Aires Premetro) -[2018-02-13T00:37:11.659] [INFO] cheese - inserting 1000 documents. first: Kulul, California and last: Category:Organizations based in Yugoslavia -[2018-02-13T00:37:11.718] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:37:11.728] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:37:11.819] [INFO] cheese - inserting 1000 documents. first: Butlerov and last: Flamingo Resort, Inc. v. United States -[2018-02-13T00:37:11.827] [INFO] cheese - inserting 1000 documents. first: Hermosa, Chicago and last: UN/LOCODE:USHLL -[2018-02-13T00:37:11.872] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:37:11.885] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:37:11.917] [INFO] cheese - inserting 1000 documents. first: 2010 Poli-Farbe Budapest Grand Prix and last: Wikipedia:Articles for deletion/Nickerson Family Association (2nd nomination) -[2018-02-13T00:37:12.018] [INFO] cheese - inserting 1000 documents. first: Isaac Ledyard and last: File:Orb-bike.gif -[2018-02-13T00:37:12.031] [INFO] cheese - inserting 1000 documents. first: Damias elegans and last: Koca Hüsrev Pasha -[2018-02-13T00:37:12.032] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:37:12.132] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:37:12.140] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:37:12.325] [INFO] cheese - inserting 1000 documents. first: Rhizoridae and last: American Tunes -[2018-02-13T00:37:12.356] [INFO] cheese - inserting 1000 documents. first: Hanken and last: UN/LOCODE:USBVY -[2018-02-13T00:37:12.379] [INFO] cheese - inserting 1000 documents. first: Category:"Weird Al" Yankovic audio samples and last: Natividad, California -[2018-02-13T00:37:12.389] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:12.411] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:37:12.472] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:37:12.566] [INFO] cheese - inserting 1000 documents. first: Tala (Darkwatch) and last: Mor karbasi -[2018-02-13T00:37:12.597] [INFO] cheese - inserting 1000 documents. first: Nike Academy and last: William James Manning -[2018-02-13T00:37:12.629] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:37:12.654] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:12.699] [INFO] cheese - inserting 1000 documents. first: Koca Husrev Pasha and last: Template:Attached KML/Pleasant Avenue -[2018-02-13T00:37:12.738] [INFO] cheese - inserting 1000 documents. first: Sam Nzima and last: Anthony Michael Arnold Turnbull -[2018-02-13T00:37:12.811] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:37:12.892] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:12.914] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USRXG and last: UN/LOCODE:USHAR -[2018-02-13T00:37:13.009] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:37:13.037] [INFO] cheese - inserting 1000 documents. first: Category:2009 in fencing and last: Philippe Juvin -[2018-02-13T00:37:13.078] [INFO] cheese - inserting 1000 documents. first: Guadalupe Muñoz Sampedro and last: Martinsville, Clinton County, Indiana -[2018-02-13T00:37:13.111] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:37:13.185] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:37:13.217] [INFO] cheese - inserting 1000 documents. first: Setauket Spy Ring and last: Category:Hotels by city -[2018-02-13T00:37:13.244] [INFO] cheese - inserting 1000 documents. first: William Thomas Manning and last: Wikipedia:Miscellany for deletion/User:CanidG/Snap's World -[2018-02-13T00:37:13.278] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:37:13.314] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:37:13.419] [INFO] cheese - inserting 1000 documents. first: Khalil Said Khalil Deek and last: Żelazna Brama -[2018-02-13T00:37:13.544] [INFO] cheese - inserting 1000 documents. first: Template:Diplomatic missions of Tanzania and last: Category:Selex ES -[2018-02-13T00:37:13.558] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:37:13.605] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:37:13.666] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:USBSG and last: Wikipedia:Categories for deletion/Category:Atheists -[2018-02-13T00:37:13.681] [INFO] cheese - inserting 1000 documents. first: Essa Hukkanen and last: Wikipedia:WikiProject Spam/LinkReports/multipessoa.net -[2018-02-13T00:37:13.760] [INFO] cheese - inserting 1000 documents. first: Abhishek verma and last: Untied Kingdom general election, 1865 -[2018-02-13T00:37:13.748] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:37:13.778] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:37:13.832] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:37:13.915] [INFO] cheese - inserting 1000 documents. first: Triple J Hottest 100 Australian Albums of All Time, 2011 and last: George Barratt -[2018-02-13T00:37:13.933] [INFO] cheese - inserting 1000 documents. first: Abraham Law and last: Meinwerk, Blessed -[2018-02-13T00:37:14.015] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:37:14.044] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:37:14.160] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/IPhone 5S/archive2 and last: Ryouzo -[2018-02-13T00:37:14.216] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:14.304] [INFO] cheese - inserting 1000 documents. first: Saudi Arabia–Untied Arab Emirates relations and last: Category:Lists of 14th-century people -[2018-02-13T00:37:14.337] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:37:14.385] [INFO] cheese - inserting 1000 documents. first: Eufemiusz Czaplic and last: Büyükmenderes River -[2018-02-13T00:37:14.519] [INFO] cheese - inserting 1000 documents. first: Atomship song and last: Sarwankhera -[2018-02-13T00:37:14.601] [INFO] cheese - inserting 1000 documents. first: Ukraine Without Kuchma and last: Vodafone-Funkturm Stuttgart-Vaihingen -[2018-02-13T00:37:14.600] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:37:14.644] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:37:14.661] [INFO] cheese - inserting 1000 documents. first: Joseph Barrett and last: Sleepy-time -[2018-02-13T00:37:14.743] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:37:14.777] [INFO] cheese - inserting 1000 documents. first: Ugra River (Trotuș) and last: First generation immigrant -[2018-02-13T00:37:14.815] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T00:37:14.851] [INFO] cheese - inserting 1000 documents. first: 2014 in Australia and last: Glaucopis auge -[2018-02-13T00:37:14.876] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:37:14.904] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:14.967] [INFO] cheese - inserting 1000 documents. first: Grangegorman F.C. and last: Untied Arab Emirates-Untied Kingdom relations -[2018-02-13T00:37:15.000] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:37:15.154] [INFO] cheese - inserting 1000 documents. first: Carrol Delaney and last: Immigration to Honduras -[2018-02-13T00:37:15.202] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:37:15.209] [INFO] cheese - inserting 1000 documents. first: Borotra and last: Ahdim Olsun -[2018-02-13T00:37:15.213] [INFO] cheese - inserting 1000 documents. first: Red Star, The and last: Joint address (Canada) -[2018-02-13T00:37:15.261] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:37:15.297] [INFO] cheese - inserting 1000 documents. first: Minecraft pe and last: Wikipedia:Articles for deletion/Carey Martin -[2018-02-13T00:37:15.297] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:37:15.362] [INFO] cheese - inserting 1000 documents. first: Rafferty Rides a Winner and last: 2016 in combat sports -[2018-02-13T00:37:15.363] [INFO] cheese - inserting 1000 documents. first: City of Bath Boys' School and last: File:Rshut-big-box2.gif -[2018-02-13T00:37:15.362] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:37:15.392] [INFO] cheese - inserting 1000 documents. first: Category:Cricket laws and regulations and last: Douglas Southall Freeman -[2018-02-13T00:37:15.441] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:37:15.470] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:15.476] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:37:15.597] [INFO] cheese - inserting 1000 documents. first: Rutland 5 4 Vermont Representative District and last: Here (Nicolay album) -[2018-02-13T00:37:15.705] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:37:15.834] [INFO] cheese - inserting 1000 documents. first: Katherine Ruth and last: PS-90 -[2018-02-13T00:37:15.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bailey Pickett and last: The Vikings (British band) -[2018-02-13T00:37:15.878] [INFO] cheese - inserting 1000 documents. first: Batwa people and last: Shishitogarashi -[2018-02-13T00:37:15.884] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:37:15.937] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:37:15.973] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:37:16.005] [INFO] cheese - inserting 1000 documents. first: Strongly real element and last: Template:Donegal constituencies -[2018-02-13T00:37:16.074] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:37:16.131] [INFO] cheese - inserting 1000 documents. first: Nkem Illabor and last: Powelliphanta Sp.Lodestone -[2018-02-13T00:37:16.194] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class American Samoa articles and last: Wikipedia:Articles for deletion/Niger–Pakistan relations -[2018-02-13T00:37:16.219] [INFO] cheese - inserting 1000 documents. first: Kamelion and last: Wikipedia:Picture of the day/December 31, 2004 -[2018-02-13T00:37:16.239] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:37:16.304] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:37:16.307] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:37:16.541] [INFO] cheese - inserting 1000 documents. first: Visa policy of Transnistria and last: Category:Villages in York County, Maine -[2018-02-13T00:37:16.565] [INFO] cheese - inserting 1000 documents. first: Shishi togarashi and last: Sathyan Anthikkad -[2018-02-13T00:37:16.580] [INFO] cheese - inserting 1000 documents. first: King coal highway and last: KoQ -[2018-02-13T00:37:16.620] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:37:16.646] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:37:16.671] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:37:16.684] [INFO] cheese - inserting 1000 documents. first: Template:Dublin constituencies and last: Category:Corruption in Goa -[2018-02-13T00:37:16.797] [INFO] cheese - inserting 1000 documents. first: Category:Olympic judoka of Bulgaria and last: Laurentius of Echternach -[2018-02-13T00:37:16.805] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:16.909] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:16.948] [INFO] cheese - inserting 1000 documents. first: Purple Cherry and last: John FitzPatrick -[2018-02-13T00:37:16.968] [INFO] cheese - inserting 1000 documents. first: Mohali and last: Wikipedia:Featured article candidates/Buckinghamshire/archive1 -[2018-02-13T00:37:17.051] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:37:17.060] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:37:17.214] [INFO] cheese - inserting 1000 documents. first: 2002 All-Ireland Minor Hurling Championship and last: Stanley Rose -[2018-02-13T00:37:17.263] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:37:17.266] [INFO] cheese - inserting 1000 documents. first: Legacy (Eminem song) and last: Sergio Salazar -[2018-02-13T00:37:17.296] [INFO] cheese - inserting 1000 documents. first: Eugene Kalt and last: Wikipedia:WikiProject User Page Design Committee/Design Requests -[2018-02-13T00:37:17.333] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:37:17.338] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mimi Soltysik presidential campaign, 2016 and last: Kŭmt'ap-sa temple -[2018-02-13T00:37:17.398] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:17.419] [INFO] cheese - inserting 1000 documents. first: Haina (bei Gotha) and last: Buddy (musical) -[2018-02-13T00:37:17.422] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:37:17.496] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:37:17.557] [INFO] cheese - inserting 1000 documents. first: Moses Gun and last: John Deasy (1856-1896) -[2018-02-13T00:37:17.627] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:37:17.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Single malt Scotch and last: Wikipedia:Featured article candidates/Zuiderzee Works -[2018-02-13T00:37:17.698] [INFO] cheese - inserting 1000 documents. first: DE18 and last: Mike Sullivan (ice hockey b. 1968) -[2018-02-13T00:37:17.729] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:37:17.730] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:37:17.795] [INFO] cheese - inserting 1000 documents. first: History of Anchorage and last: Trident Centre -[2018-02-13T00:37:17.820] [INFO] cheese - inserting 1000 documents. first: Kŭmt'apsa temple and last: Dyskritodon -[2018-02-13T00:37:17.838] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:37:17.864] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:37:17.912] [INFO] cheese - inserting 1000 documents. first: Jedna si Jedina and last: Category:1910 plays -[2018-02-13T00:37:17.952] [INFO] cheese - inserting 1000 documents. first: 6-Methylenedihydrodesoxymorphine and last: Hannam Station -[2018-02-13T00:37:17.960] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:37:18.005] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:37:18.034] [INFO] cheese - inserting 1000 documents. first: Chatot (Pokemon) and last: Wikipedia:WikiProject Spam/LinkReports/fozoolemahaleh.com -[2018-02-13T00:37:18.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Village pump (miscellaneous)/Archive Homepage and last: County in China -[2018-02-13T00:37:18.074] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:37:18.114] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:37:18.161] [INFO] cheese - inserting 1000 documents. first: Enthentha Dooram (Distant Dreams) - a Telugu movie and last: Dolomittøyane -[2018-02-13T00:37:18.206] [INFO] cheese - inserting 1000 documents. first: Category:Melkite Christian communities in Syria and last: Indian vice-presidential election, 1952 -[2018-02-13T00:37:18.210] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:37:18.243] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:37:18.289] [INFO] cheese - inserting 1000 documents. first: Agdistis omani and last: Template:Infobox hurling championship -[2018-02-13T00:37:18.338] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:37:18.427] [INFO] cheese - inserting 1000 documents. first: Das Tropas River and last: Template:Aviation incidents and accidents in 1988 -[2018-02-13T00:37:18.440] [INFO] cheese - inserting 1000 documents. first: A Toadally Magical Adventure and last: Category:I-Kiribati politicians -[2018-02-13T00:37:18.495] [INFO] cheese - inserting 1000 documents. first: Architectural Lighting Control System (theater) and last: Luke's Shattered Sleep -[2018-02-13T00:37:18.536] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:37:18.575] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:37:18.605] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:37:18.688] [INFO] cheese - inserting 1000 documents. first: BILU and last: Vacuum arc -[2018-02-13T00:37:18.751] [INFO] cheese - inserting 1000 documents. first: Uschold, Mike and last: Template:Did you know nominations/GISHWHES -[2018-02-13T00:37:18.789] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:37:18.819] [INFO] cheese - inserting 1000 documents. first: Gaudé and last: Category:Schools in Allamakee County, Iowa -[2018-02-13T00:37:18.913] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:37:18.920] [INFO] cheese - inserting 1000 documents. first: Kim Dong-Jin (footballer born 1992) and last: Central College tram stop -[2018-02-13T00:37:18.941] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:37:19.022] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:37:19.141] [INFO] cheese - inserting 1000 documents. first: Template:Aviation incidents and accidents in 1987 and last: Rum-theg Dgon-pa -[2018-02-13T00:37:19.164] [INFO] cheese - inserting 1000 documents. first: 1997 World Championships in Athletics – Women's javelin throw and last: Category:Surinamese football referees -[2018-02-13T00:37:19.179] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:37:19.236] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:37:19.311] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Appanoose County, Iowa and last: Category:Gymnastics at the 1992 Summer Olympics -[2018-02-13T00:37:19.320] [INFO] cheese - inserting 1000 documents. first: File:Platit. logo.png and last: Pacita del Rio -[2018-02-13T00:37:19.346] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:37:19.354] [INFO] cheese - inserting 1000 documents. first: Existential psychotherapies and last: Straight Ahead (Ignite album) -[2018-02-13T00:37:19.383] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:37:19.391] [INFO] cheese - inserting 1000 documents. first: Bodyskin and last: Andrzej Wawrzyniak -[2018-02-13T00:37:19.409] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:19.465] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:37:19.473] [INFO] cheese - inserting 1000 documents. first: High Road tram stop and last: Template:Neuropeptide signaling -[2018-02-13T00:37:19.546] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:37:19.589] [INFO] cheese - inserting 1000 documents. first: European Association for Computer-Assisted Language Learning and last: Burg Clam -[2018-02-13T00:37:19.602] [INFO] cheese - inserting 1000 documents. first: Cercle Dijon Football and last: They Said That Hell’s Not Hot -[2018-02-13T00:37:19.644] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:37:19.654] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:37:19.750] [INFO] cheese - inserting 1000 documents. first: Category:Gymnastics at the 1996 Summer Olympics and last: Platyptilia romieuxi -[2018-02-13T00:37:19.788] [INFO] cheese - inserting 1000 documents. first: DANIPS and last: Hangravan -[2018-02-13T00:37:19.797] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:37:19.830] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:37:19.880] [INFO] cheese - inserting 1000 documents. first: Solntsev and last: John Bernard Sale -[2018-02-13T00:37:19.919] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:19.979] [INFO] cheese - inserting 1000 documents. first: Dudley Metropolitan Borough Council election, 1998 and last: Category:1770s paintings -[2018-02-13T00:37:19.996] [INFO] cheese - inserting 1000 documents. first: Sargis Karapetyan (footballer, born 1990) and last: Salée River (Dominica) -[2018-02-13T00:37:19.998] [INFO] cheese - inserting 1000 documents. first: Category:CoDominium series and last: Aaa server -[2018-02-13T00:37:20.042] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:37:20.043] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:37:20.082] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:37:20.166] [INFO] cheese - inserting 1000 documents. first: Defence of India act, 1915 and last: File:Noah Bennett.jpg -[2018-02-13T00:37:20.208] [INFO] cheese - inserting 1000 documents. first: Corsyra and last: Wikipedia:WikiProject Spam/Local/ninelegends.com -[2018-02-13T00:37:20.245] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:20.263] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:37:20.344] [INFO] cheese - inserting 1000 documents. first: Khanik, Beradust and last: ᧉ -[2018-02-13T00:37:20.393] [INFO] cheese - inserting 1000 documents. first: Ashish Kothari and last: Mantidactylus malagasius -[2018-02-13T00:37:20.414] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:37:20.460] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:20.685] [INFO] cheese - inserting 1000 documents. first: Schroeter and last: No Limits (Reset album) -[2018-02-13T00:37:20.769] [INFO] cheese - inserting 1000 documents. first: Texas ebony and last: Pitanga River (Sergipe) -[2018-02-13T00:37:20.792] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:37:20.903] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:37:21.010] [INFO] cheese - inserting 1000 documents. first: Thet and last: Deaths in 1947 -[2018-02-13T00:37:21.050] [INFO] cheese - inserting 1000 documents. first: Woolery Stone Company and last: Template:European Schools -[2018-02-13T00:37:21.072] [INFO] cheese - inserting 1000 documents. first: Skunk oil and last: The Comet Strikes -[2018-02-13T00:37:21.090] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:37:21.120] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:37:21.161] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:37:21.152] [INFO] cheese - inserting 1000 documents. first: Mannix (season 7) and last: In Darkness Waiting (short story) -[2018-02-13T00:37:21.261] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:37:21.374] [INFO] cheese - inserting 1000 documents. first: Starface and last: Wikipedia:WikiProject Preclinical Medicine/Guidelines -[2018-02-13T00:37:21.419] [INFO] cheese - inserting 1000 documents. first: Pomonga River and last: (53550) 2000 BF19 -[2018-02-13T00:37:21.448] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:37:21.458] [INFO] cheese - inserting 1000 documents. first: Annai Airport and last: Wikipedia:Articles for deletion/Ex Girlfriend (band) -[2018-02-13T00:37:21.517] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:37:21.530] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:37:21.684] [INFO] cheese - inserting 1000 documents. first: Joan Berkowitz and last: Marasmarcha griseodactylus -[2018-02-13T00:37:21.733] [INFO] cheese - inserting 1000 documents. first: Template:Drugbox and last: Aranguren (Argentina) -[2018-02-13T00:37:22.080] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T00:37:22.155] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:37:22.225] [INFO] cheese - inserting 1000 documents. first: Dumfries-shire (UK Parliament constituency) and last: Pdc darts -[2018-02-13T00:37:22.256] [INFO] cheese - inserting 1000 documents. first: Ufficialexbox.it and last: File:Insomnia Lover poster.jpeg -[2018-02-13T00:37:22.324] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:37:22.405] [INFO] cheese - inserting 1000 documents. first: WWOR-TV and last: 1991 Canada Cup -[2018-02-13T00:37:22.433] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T00:37:22.471] [INFO] cheese - inserting 1000 documents. first: Facies Hippocratica and last: Mandai Road -[2018-02-13T00:37:22.560] [INFO] cheese - inserting 1000 documents. first: Out of Control (St. Martin's True Crime Library) and last: Wikipedia:Articles for deletion/Greek Life at the University of Central Florida -[2018-02-13T00:37:22.604] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T00:37:22.607] [INFO] cheese - batch complete in: 2.525 secs -[2018-02-13T00:37:22.619] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:37:22.769] [INFO] cheese - inserting 1000 documents. first: Hellinsia griseodactylus and last: Chibok language -[2018-02-13T00:37:22.825] [INFO] cheese - inserting 1000 documents. first: File:Clifford Roach.jpg and last: Wikipedia:Articles for deletion/Renault Energy F1-2014 -[2018-02-13T00:37:22.846] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:37:22.905] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:37:23.065] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dawdle and last: Wikipedia:WikiProject Saskatchewan/Assessment -[2018-02-13T00:37:23.087] [INFO] cheese - inserting 1000 documents. first: Xu Jilin and last: Category:1791 establishments in Pennsylvania -[2018-02-13T00:37:23.115] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:37:23.138] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:37:23.157] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Keighley and district service 760 and last: Fringe benefits tax -[2018-02-13T00:37:23.226] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:37:23.241] [INFO] cheese - inserting 1000 documents. first: Radyo 5 and last: Platyptilia seeboldi -[2018-02-13T00:37:23.278] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:37:23.319] [INFO] cheese - inserting 1000 documents. first: The Tiny Kite of Eddie Wing and last: Blavatnik Awards for Young Scientists -[2018-02-13T00:37:23.363] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:37:23.426] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Gyeongju/archive1 and last: Category:Soccer venues in Arizona -[2018-02-13T00:37:23.485] [INFO] cheese - inserting 1000 documents. first: Heart of Gold (1941 film) and last: Central Police Station, Hong Kong -[2018-02-13T00:37:23.509] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:37:23.586] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:37:23.718] [INFO] cheese - inserting 1000 documents. first: 2006 Texas Tech Red Raiders football team and last: File:Mcoilback.JPG -[2018-02-13T00:37:23.751] [INFO] cheese - inserting 1000 documents. first: File:Pescasseroli-Stemma.gif and last: Kotyapi -[2018-02-13T00:37:23.782] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:37:23.802] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:37:23.834] [INFO] cheese - inserting 1000 documents. first: Out for Blood (disambiguation) and last: Restricted Sector for Stateless Refugees -[2018-02-13T00:37:23.838] [INFO] cheese - inserting 1000 documents. first: New Lenox Township and last: Total Risk-Based Capital -[2018-02-13T00:37:23.887] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:37:23.900] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T00:37:23.944] [INFO] cheese - inserting 1000 documents. first: Emilie Petersen and last: Nassour Studios -[2018-02-13T00:37:23.973] [INFO] cheese - inserting 1000 documents. first: Corocoro.tv and last: Amnat Charoen municipal Stadium -[2018-02-13T00:37:23.985] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:24.011] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:37:24.164] [INFO] cheese - inserting 1000 documents. first: Johan Fabricius and last: Category:Stub-Class Japan-related articles -[2018-02-13T00:37:24.174] [INFO] cheese - inserting 1000 documents. first: Pavlo Pashaiv and last: Hueque River -[2018-02-13T00:37:24.210] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:37:24.214] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BITEDEV and last: Kenjirō Tokutomi -[2018-02-13T00:37:24.227] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:37:24.308] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Cass County, Iowa and last: Template:Top ten European male singles tennis players -[2018-02-13T00:37:24.308] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:24.395] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:37:24.457] [INFO] cheese - inserting 1000 documents. first: Muzi Goti and last: Portal:Geography of Kenya/Selected panorama/8 -[2018-02-13T00:37:24.521] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:37:24.673] [INFO] cheese - inserting 1000 documents. first: Neve Sha'anan, Tel Aviv and last: Henry sabin -[2018-02-13T00:37:24.674] [INFO] cheese - inserting 1000 documents. first: Marsco Glass Products and last: Renegado River -[2018-02-13T00:37:24.689] [INFO] cheese - inserting 1000 documents. first: Category:Promotional photos and last: Treasury shares -[2018-02-13T00:37:24.699] [INFO] cheese - inserting 1000 documents. first: Goal Average and last: Archie McLean (footballer) -[2018-02-13T00:37:24.721] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:37:24.752] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:24.761] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:37:24.784] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:37:24.870] [INFO] cheese - inserting 1000 documents. first: Dancing in the Dark (film) and last: Randy Travis singles discography -[2018-02-13T00:37:24.918] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:37:25.095] [INFO] cheese - inserting 1000 documents. first: Mestská hala Prešov and last: DAR-1 -[2018-02-13T00:37:25.152] [INFO] cheese - inserting 1000 documents. first: Events in 1999 and last: Category:1613 in Malta -[2018-02-13T00:37:25.154] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:37:25.224] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T00:37:25.278] [INFO] cheese - inserting 1000 documents. first: Spinal root and last: Novacaesareala (bird) -[2018-02-13T00:37:25.306] [INFO] cheese - inserting 1000 documents. first: Black Ruby Barb and last: Chinese Lions -[2018-02-13T00:37:25.319] [INFO] cheese - inserting 1000 documents. first: Chinese Riff and last: Political Corruption -[2018-02-13T00:37:25.333] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:37:25.360] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:37:25.362] [INFO] cheese - inserting 1000 documents. first: Micropteryx proavitella and last: Template:User from South Sudan -[2018-02-13T00:37:25.373] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:37:25.427] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:37:25.508] [INFO] cheese - inserting 1000 documents. first: 6th Infantry Regiment (United States) and last: Porta-bote -[2018-02-13T00:37:25.548] [INFO] cheese - inserting 1000 documents. first: DAR-1A and last: Eilema amaura -[2018-02-13T00:37:25.577] [INFO] cheese - inserting 1000 documents. first: Wyshynski and last: Fine-leaf wadara -[2018-02-13T00:37:25.579] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:37:25.603] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:37:25.619] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:37:25.751] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/abercrombiefitchdiscountonline.com and last: 2011 Norfolk State Spartans football team -[2018-02-13T00:37:25.766] [INFO] cheese - inserting 1000 documents. first: The Great Airship and last: Cane (novel) -[2018-02-13T00:37:25.773] [INFO] cheese - inserting 1000 documents. first: Category:Films about nuclear war and weapons and last: Wikipedia:Sockpuppet investigations/Lslavin13 -[2018-02-13T00:37:25.780] [INFO] cheese - inserting 1000 documents. first: Benji Gregory and last: SSBN 735 -[2018-02-13T00:37:25.799] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:37:25.828] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:37:25.828] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:37:25.842] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:37:25.924] [INFO] cheese - inserting 1000 documents. first: File:Lovely difficult cover.jpg and last: Robert van Winkle -[2018-02-13T00:37:25.954] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:37:26.005] [INFO] cheese - inserting 1000 documents. first: 2016–17 Georgia State Panthers women's basketball team and last: Jim Moodie (motorcycle racer) -[2018-02-13T00:37:26.042] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:37:26.082] [INFO] cheese - inserting 1000 documents. first: Lucas Neill and last: Zippe-type -[2018-02-13T00:37:26.129] [INFO] cheese - inserting 1000 documents. first: RS-84 and last: Пётр II Алексеевич -[2018-02-13T00:37:26.135] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:37:26.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/villabordoni.com and last: Category:Southern Ocean articles missing geocoordinate data -[2018-02-13T00:37:26.170] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:26.197] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:37:26.209] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2009 July 22 and last: Aleksandr Agapov -[2018-02-13T00:37:26.274] [INFO] cheese - inserting 1000 documents. first: Aphaniptera and last: Alan Mackay -[2018-02-13T00:37:26.309] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:37:26.414] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:37:26.448] [INFO] cheese - inserting 1000 documents. first: List of RAAF air marshals and last: Women of San Marino -[2018-02-13T00:37:26.556] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:26.607] [INFO] cheese - inserting 1000 documents. first: Noriaki Fujimoto and last: File:Rail sideline LamandaPark California.jpg -[2018-02-13T00:37:26.739] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:37:26.758] [INFO] cheese - inserting 1000 documents. first: Michelangelo Nerosi da Caravaggio and last: History of Southern Sudan -[2018-02-13T00:37:26.815] [INFO] cheese - inserting 1000 documents. first: Infantile eczema and last: Ceuta (Congress of Deputies constituency) -[2018-02-13T00:37:26.832] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:37:26.880] [INFO] cheese - inserting 1000 documents. first: Alexandr Agapov and last: File:Roseriddle.jpg -[2018-02-13T00:37:26.893] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:37:26.897] [INFO] cheese - inserting 1000 documents. first: Vistehola and last: Telangana Boggu Ghani Karimka Sangham -[2018-02-13T00:37:26.931] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:27.020] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T00:37:27.093] [INFO] cheese - inserting 1000 documents. first: Grizzly polar bear hybrid and last: File:Return JLU.jpg -[2018-02-13T00:37:27.102] [INFO] cheese - inserting 1000 documents. first: Women from San Marino and last: 花田十輝 -[2018-02-13T00:37:27.140] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:37:27.158] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:27.225] [INFO] cheese - inserting 1000 documents. first: Fred Royers and last: 2011 Chatham Cup -[2018-02-13T00:37:27.239] [INFO] cheese - inserting 1000 documents. first: Rub (food) and last: Shiraume Gakuen College -[2018-02-13T00:37:27.247] [INFO] cheese - inserting 1000 documents. first: Category:Masques and last: Sky Gardens -[2018-02-13T00:37:27.257] [INFO] cheese - inserting 1000 documents. first: Blood on the dancefloor and last: USS Petaluma (AOG-69) -[2018-02-13T00:37:27.280] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:27.282] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:37:27.296] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:37:27.343] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:37:27.517] [INFO] cheese - inserting 1000 documents. first: Cunetio and last: David (John) Graham -[2018-02-13T00:37:27.553] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:37:27.584] [INFO] cheese - inserting 1000 documents. first: Cutdown and last: Pascual Jordan -[2018-02-13T00:37:27.629] [INFO] cheese - inserting 1000 documents. first: Relations between South Sudan and Uganda and last: Jerome Goldstein -[2018-02-13T00:37:27.643] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:27.677] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:37:27.691] [INFO] cheese - inserting 1000 documents. first: Maciej Wierzbięta and last: Wikipedia:Sockpuppet investigations/OCtruth/Archive -[2018-02-13T00:37:27.692] [INFO] cheese - inserting 1000 documents. first: Katsiaryna Shkuratava and last: Falcon 9 flight 9 -[2018-02-13T00:37:27.708] [INFO] cheese - inserting 1000 documents. first: Sobralia fragrans and last: Template:Rincon class gasoline tankers -[2018-02-13T00:37:27.734] [INFO] cheese - inserting 1000 documents. first: Renaat Demoen and last: Millihenries -[2018-02-13T00:37:27.739] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:37:27.767] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:37:27.772] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:37:27.808] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:37:28.009] [INFO] cheese - inserting 1000 documents. first: Ritz Malheur and last: Countess of Suffolk -[2018-02-13T00:37:28.149] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:37:28.190] [INFO] cheese - inserting 1000 documents. first: Template:March 1944 shipwrecks and last: File:Reza Shirmarz.jpg -[2018-02-13T00:37:28.286] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:37:28.288] [INFO] cheese - inserting 1000 documents. first: Dejerine-Sottas disease and last: File:Protea Telephone Jack.jpg -[2018-02-13T00:37:28.373] [INFO] cheese - inserting 1000 documents. first: Duino Mithraeum and last: Montejo de la Sierra -[2018-02-13T00:37:28.375] [INFO] cheese - inserting 1000 documents. first: File:JPsyNeuro logo.jpg and last: Samuel Manaiakalani Kamakau -[2018-02-13T00:37:28.394] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:37:28.454] [INFO] cheese - inserting 1000 documents. first: Keith Jackson (football player) and last: Collective (Law & Order: Criminal Intent) -[2018-02-13T00:37:28.488] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:37:28.579] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:37:28.643] [INFO] cheese - inserting 1000 documents. first: Mobile lounge and last: Born Dead Icons -[2018-02-13T00:37:28.658] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:37:28.765] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T00:37:28.838] [INFO] cheese - inserting 1000 documents. first: Marja-Liisa Hämäläinen and last: Yeroukhan -[2018-02-13T00:37:28.927] [INFO] cheese - inserting 1000 documents. first: Allen, Marvin and last: Category:Members of the House of Representatives of the Philippines from Las Piñas -[2018-02-13T00:37:28.939] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:37:29.015] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:37:29.083] [INFO] cheese - inserting 1000 documents. first: Lady Jaye Breyer P-Orridge and last: Gogoiu -[2018-02-13T00:37:29.155] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:37:29.214] [INFO] cheese - inserting 1000 documents. first: Moraleja de Enmedio and last: Grand hall -[2018-02-13T00:37:29.333] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:37:29.371] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Ashtabula County, Ohio and last: Charles Sharpes -[2018-02-13T00:37:29.382] [INFO] cheese - inserting 1000 documents. first: Nature via Nurture: Genes, Experience, & What Makes Us Human and last: Tigran Mkrtchyan -[2018-02-13T00:37:29.463] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:37:29.494] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:37:29.529] [INFO] cheese - inserting 1000 documents. first: Justin Jesse Price and last: Anagarika -[2018-02-13T00:37:29.609] [INFO] cheese - inserting 1000 documents. first: Oblivion (comics) and last: Fala Chen -[2018-02-13T00:37:29.641] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T00:37:29.692] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:29.733] [INFO] cheese - inserting 1000 documents. first: Uniforms of the American Civil War and last: Template:Rajput Groups of India -[2018-02-13T00:37:29.745] [INFO] cheese - inserting 1000 documents. first: Ninsun and last: 2nd Byelorussian Front -[2018-02-13T00:37:29.780] [INFO] cheese - inserting 1000 documents. first: Vitilago and last: ABC Bakersfield -[2018-02-13T00:37:29.781] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:37:29.856] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:37:29.865] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:37:29.904] [INFO] cheese - inserting 1000 documents. first: Alive (Dami Im song) and last: File:Denver IA, October 2013.jpg -[2018-02-13T00:37:29.943] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:37:30.025] [INFO] cheese - inserting 1000 documents. first: Category:Foreign charities operating in South Africa and last: Robotic prostheis control -[2018-02-13T00:37:30.047] [INFO] cheese - inserting 1000 documents. first: Category:Organizations established in 1996 and last: Taj Anwar -[2018-02-13T00:37:30.085] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:30.099] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:37:30.175] [INFO] cheese - inserting 1000 documents. first: Masaki Anzu and last: Fourth Ward, Houston -[2018-02-13T00:37:30.190] [INFO] cheese - inserting 1000 documents. first: Category:Challenge de France finals and last: Wikipedia:Sockpuppet investigations/Kasab -[2018-02-13T00:37:30.221] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:37:30.235] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:37:30.281] [INFO] cheese - inserting 1000 documents. first: Donal Gleeson and last: Joseph F. Finnegan -[2018-02-13T00:37:30.326] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:37:30.507] [INFO] cheese - inserting 1000 documents. first: Satiety value and last: Mir Molk -[2018-02-13T00:37:30.533] [INFO] cheese - inserting 1000 documents. first: Fish stocking and last: Revolutionary integrationism -[2018-02-13T00:37:30.538] [INFO] cheese - inserting 1000 documents. first: File:The complete ripping yarns book cover.jpg and last: The Smallest Show on Earth -[2018-02-13T00:37:30.556] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:37:30.557] [INFO] cheese - inserting 1000 documents. first: Oskari Setänen and last: Category:Architects from Tucson, Arizona -[2018-02-13T00:37:30.592] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:37:30.639] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:37:30.644] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:37:30.672] [INFO] cheese - inserting 1000 documents. first: Glasflügel Kestrel 17 and last: Living former members of the Council of Ministers of the Netherlands -[2018-02-13T00:37:30.698] [INFO] cheese - inserting 1000 documents. first: Template:Seismic scales and last: Ovidio Manuel Barbosa Pequeno -[2018-02-13T00:37:30.719] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:37:30.771] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:37:30.867] [INFO] cheese - inserting 1000 documents. first: Poor Little Critter on the Road and last: Category:Burials at the Rila Monastery -[2018-02-13T00:37:30.927] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:37:30.929] [INFO] cheese - inserting 1000 documents. first: Marat-e Balkarun and last: Radio Mystery Theater -[2018-02-13T00:37:30.979] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:37:31.028] [INFO] cheese - inserting 1000 documents. first: Oleksandr Melaschenko and last: Viola x wittrockiana -[2018-02-13T00:37:31.096] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:37:31.150] [INFO] cheese - inserting 1000 documents. first: Category:Former nationalised industries of the United Kingdom and last: Ann Saunderson -[2018-02-13T00:37:31.155] [INFO] cheese - inserting 1000 documents. first: Draft:Girls for Gender Equity and last: Art Basel Hong Kong -[2018-02-13T00:37:31.210] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:37:31.227] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:37:31.271] [INFO] cheese - inserting 1000 documents. first: European Urban and Regional Planning Awards and last: 2013 Tiananmen Square attack -[2018-02-13T00:37:31.295] [INFO] cheese - inserting 1000 documents. first: Dominick Goodman and last: 1981 St.George Whisky season -[2018-02-13T00:37:31.310] [INFO] cheese - inserting 1000 documents. first: Magnitogorsk Metallurg and last: 402nd Support Brigade -[2018-02-13T00:37:31.322] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:31.373] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:37:31.390] [INFO] cheese - inserting 1000 documents. first: Chung Mong-koo and last: Eppa Hunton -[2018-02-13T00:37:31.418] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:37:31.493] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:37:31.506] [INFO] cheese - inserting 1000 documents. first: WACM and last: David ben judah messer leon -[2018-02-13T00:37:31.602] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:37:31.728] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject English Language templates and last: File:Pittsburg State Gorilla logo.svg -[2018-02-13T00:37:31.776] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:37:31.814] [INFO] cheese - inserting 1000 documents. first: Deputy Federal Commissioner of Taxation (NSW) v W R Moran Pty Ltd and last: Wikipedia:Articles for deletion/Crkd -[2018-02-13T00:37:31.897] [INFO] cheese - inserting 1000 documents. first: Thectocercus acuticaudatus and last: Valiabad, Tonekabon -[2018-02-13T00:37:31.916] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:37:31.919] [INFO] cheese - inserting 1000 documents. first: Template:User from Pakistan/doc and last: Stone Hill (disambiguation) -[2018-02-13T00:37:31.944] [INFO] cheese - inserting 1000 documents. first: David ben solomon ibn abi zimra and last: James (Jim) Scott -[2018-02-13T00:37:31.972] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:37:31.985] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:37:32.019] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:37:32.125] [INFO] cheese - inserting 1000 documents. first: Gray mistletoe and last: File:Stevie B B-Sides And Outtakes.jpg -[2018-02-13T00:37:32.181] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:37:32.256] [INFO] cheese - inserting 1000 documents. first: Dells of the wisconsin river and last: Derek van der kooy -[2018-02-13T00:37:32.281] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Lake of the Woods County, Minnesota and last: Category:1957 in English rugby league -[2018-02-13T00:37:32.297] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:37:32.304] [INFO] cheese - inserting 1000 documents. first: E. Hunton and last: Hoss Radbourn -[2018-02-13T00:37:32.345] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:37:32.403] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:37:32.494] [INFO] cheese - inserting 1000 documents. first: Murder of Lynette White and last: File:Global Tower Partners Logo.jpg -[2018-02-13T00:37:32.532] [INFO] cheese - inserting 1000 documents. first: Derelicts of dialect and last: Prudes -[2018-02-13T00:37:32.552] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:37:32.554] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:37:32.557] [INFO] cheese - inserting 1000 documents. first: Charles Stewart Wurts and last: Template:Attached KML/Cropsey Avenue -[2018-02-13T00:37:32.598] [INFO] cheese - inserting 1000 documents. first: Transformers: Classics and last: Template:Fightstatscont -[2018-02-13T00:37:32.663] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:37:32.692] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:37:32.815] [INFO] cheese - inserting 1000 documents. first: Category:1958 in English rugby league and last: Wikipedia:Articles for deletion/Tamil Panar -[2018-02-13T00:37:32.823] [INFO] cheese - inserting 1000 documents. first: Annika Odegard and last: Category:1998 in Ecuador -[2018-02-13T00:37:32.873] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:37:32.890] [INFO] cheese - inserting 1000 documents. first: Diocese of sansepolcro and last: Division of moreton -[2018-02-13T00:37:32.910] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:37:32.933] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:37:33.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anne Rogers and last: SPEAK network -[2018-02-13T00:37:33.168] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 734 and last: Liveni, Botoșani -[2018-02-13T00:37:33.179] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:37:33.184] [INFO] cheese - inserting 1000 documents. first: Division of murray and last: Driekske van bussel -[2018-02-13T00:37:33.203] [INFO] cheese - inserting 1000 documents. first: Peer to peer social networks and last: Template:WAKO Amateur Championships Template -[2018-02-13T00:37:33.219] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:37:33.222] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:37:33.263] [INFO] cheese - inserting 1000 documents. first: N Joachimson v Swiss Bank Corporation and last: EFDA (disambiguation) -[2018-02-13T00:37:33.288] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:37:33.348] [INFO] cheese - inserting 1000 documents. first: Court of Probate Act 1857 and last: SS Delargentino -[2018-02-13T00:37:33.347] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:37:33.357] [INFO] cheese - inserting 1000 documents. first: Minister of State for Overseas Development (Ireland) and last: Penny tray -[2018-02-13T00:37:33.406] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:33.444] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:37:33.601] [INFO] cheese - inserting 1000 documents. first: Dries van agt and last: Lacunar infarct -[2018-02-13T00:37:33.629] [INFO] cheese - inserting 1000 documents. first: William Brockenbrough (jurist) and last: Bronson Speedway -[2018-02-13T00:37:33.653] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:37:33.682] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:37:33.713] [INFO] cheese - inserting 1000 documents. first: Do Right By Me and last: 2011 Mumbai serial blasts -[2018-02-13T00:37:33.736] [INFO] cheese - inserting 1000 documents. first: Alme and last: False Dmitri II -[2018-02-13T00:37:33.756] [INFO] cheese - inserting 1000 documents. first: File:Jornheavyrockradiocd (1).jpg and last: Fireworks (Snoop Dogg song) -[2018-02-13T00:37:33.784] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:33.801] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:37:33.825] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:37:33.889] [INFO] cheese - inserting 1000 documents. first: WHDO-CD and last: Parrysulfan -[2018-02-13T00:37:33.923] [INFO] cheese - inserting 1000 documents. first: Lost & Found: Hip Hop Underground Soul Classics and last: Motta di Livenza -[2018-02-13T00:37:33.997] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:37:34.074] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:37:34.200] [INFO] cheese - inserting 1000 documents. first: French ship La Couronne (1749) and last: Wikipedia:Suspected sock puppets/Auntorious -[2018-02-13T00:37:34.201] [INFO] cheese - inserting 1000 documents. first: List of international cricket centuries by David Boon and last: Category:Villages in Brown County, Illinois -[2018-02-13T00:37:34.272] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:37:34.293] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:34.433] [INFO] cheese - inserting 1000 documents. first: Point light source and last: Alice Minnie Herts -[2018-02-13T00:37:34.440] [INFO] cheese - inserting 1000 documents. first: 1934 German football championship and last: Category:1953 in California -[2018-02-13T00:37:34.478] [INFO] cheese - inserting 1000 documents. first: Eagle butte crater and last: Economy of austria -[2018-02-13T00:37:34.501] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:37:34.507] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:37:34.560] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:37:34.574] [INFO] cheese - inserting 1000 documents. first: Čečelice and last: Wikipedia:WikiProject Trains/ICC valuations/Gauley and Meadow River Railroad -[2018-02-13T00:37:34.602] [INFO] cheese - inserting 1000 documents. first: George Watson's Ladies College and last: Feldbach District -[2018-02-13T00:37:34.637] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:37:34.654] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:37:34.678] [INFO] cheese - inserting 1000 documents. first: False Dmitry III and last: El-hazard -[2018-02-13T00:37:34.709] [INFO] cheese - inserting 1000 documents. first: Deep Stambha and last: Jamie Cachia -[2018-02-13T00:37:34.741] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:37:34.751] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:37:34.800] [INFO] cheese - inserting 1000 documents. first: Economy of azerbaijan and last: Ritchie Gardner -[2018-02-13T00:37:34.850] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:37:34.946] [INFO] cheese - inserting 1000 documents. first: Tiyeegloow District and last: Voicemailgate -[2018-02-13T00:37:34.949] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Greeley County, Nebraska and last: Vincent Wardell -[2018-02-13T00:37:34.980] [INFO] cheese - inserting 1000 documents. first: Ein deutsches requiem and last: Electoral district of swan hill -[2018-02-13T00:37:35.004] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:35.005] [INFO] cheese - batch complete in: 0.155 secs -[2018-02-13T00:37:35.011] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:37:35.076] [INFO] cheese - inserting 1000 documents. first: Jupp (surname) and last: EP80579 -[2018-02-13T00:37:35.102] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Leonard23 and last: Christian Murray -[2018-02-13T00:37:35.109] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:37:35.160] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:37:35.169] [INFO] cheese - inserting 1000 documents. first: Electoral district of swan hills and last: Emperor xizong of tang -[2018-02-13T00:37:35.187] [INFO] cheese - inserting 1000 documents. first: Lidao and last: AC Sparta Prague in European football -[2018-02-13T00:37:35.197] [INFO] cheese - batch complete in: 0.191 secs -[2018-02-13T00:37:35.245] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:37:35.294] [INFO] cheese - inserting 1000 documents. first: Internet FAQ Consortium and last: ALCO Century 630 -[2018-02-13T00:37:35.298] [INFO] cheese - inserting 1000 documents. first: 2016 Philadelphia Freedoms season and last: Template:Unclear inline -[2018-02-13T00:37:35.333] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:37:35.341] [INFO] cheese - inserting 1000 documents. first: Emperor xuan of chen and last: Erlenbach bei dahn -[2018-02-13T00:37:35.347] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:37:35.357] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:37:35.371] [INFO] cheese - inserting 1000 documents. first: Nora to Toki no Koubou: Kiri no Mori no Majo and last: Nayagram -[2018-02-13T00:37:35.407] [INFO] cheese - inserting 1000 documents. first: Explorer 18 and last: Ranjith Madduma Bandara -[2018-02-13T00:37:35.412] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:37:35.437] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:37:35.504] [INFO] cheese - inserting 1000 documents. first: Ma'roof and last: Budokan: The Martial Spirit -[2018-02-13T00:37:35.506] [INFO] cheese - inserting 1000 documents. first: Erlenbach bei kandel and last: Evangelical church of the deaf -[2018-02-13T00:37:35.521] [INFO] cheese - batch complete in: 0.164 secs -[2018-02-13T00:37:35.533] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:35.658] [INFO] cheese - inserting 1000 documents. first: Insert trailer and last: Category:Former Masonic buildings in North Carolina -[2018-02-13T00:37:35.717] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:37:35.752] [INFO] cheese - inserting 1000 documents. first: Template:Inline unclear and last: File:ElizabethUmusic.png -[2018-02-13T00:37:35.771] [INFO] cheese - inserting 1000 documents. first: Evangelical church of the dominican republic and last: Fall of the lelang and daifang -[2018-02-13T00:37:35.793] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:37:35.797] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:37:35.905] [INFO] cheese - inserting 1000 documents. first: Independence Party of New York State and last: Andrew Scott (bishop) -[2018-02-13T00:37:35.907] [INFO] cheese - inserting 1000 documents. first: 2011 irish presidential election and last: Images Of Heaven: The Best Of Peter Godwin -[2018-02-13T00:37:35.919] [INFO] cheese - inserting 1000 documents. first: Dance monkey boy and last: Odřepsy -[2018-02-13T00:37:35.946] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:37:35.955] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:37:35.983] [INFO] cheese - inserting 1000 documents. first: Template:POVsection and last: File:The Novels of Henry James.JPG -[2018-02-13T00:37:36.001] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:37:36.003] [INFO] cheese - inserting 1000 documents. first: Fall of the mutants and last: Fencer of minerva -[2018-02-13T00:37:36.029] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:36.086] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:37:36.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Insects/ant task force/community sandboxes/sandbox3/Formica biamoensis and last: Suerococha (Huallanca) -[2018-02-13T00:37:36.165] [INFO] cheese - inserting 1000 documents. first: Plastic (2012 film) and last: Gobi fish -[2018-02-13T00:37:36.206] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:37:36.218] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:37:36.361] [INFO] cheese - inserting 1000 documents. first: Lockheed Model 44 Excalibur and last: Elm River (Michigan) -[2018-02-13T00:37:36.377] [INFO] cheese - inserting 1000 documents. first: Events in 1427 and last: Fanny Perret (Swiss rhythmic gymnast) -[2018-02-13T00:37:36.389] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:37:36.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hate group/Ex-PremiesPart2 and last: Fort Monroe, Virginia -[2018-02-13T00:37:36.421] [INFO] cheese - inserting 1000 documents. first: 2008–09 Czech 1. Liga season and last: Wikipedia:Articles for deletion/Dominique Strauss-Kahn sexual assault case (2nd nomination) -[2018-02-13T00:37:36.423] [INFO] cheese - inserting 1000 documents. first: Fenchurch street railway station and last: Category:French film awards -[2018-02-13T00:37:36.435] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:37:36.459] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:36.470] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:37:36.510] [INFO] cheese - inserting 1000 documents. first: Banksia baxteri and last: Biohunter -[2018-02-13T00:37:36.514] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:37:36.581] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:37:36.588] [INFO] cheese - inserting 1000 documents. first: Dom Luís Bridge, Porto and last: Sonja Eggerickx -[2018-02-13T00:37:36.643] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:37:36.648] [INFO] cheese - inserting 1000 documents. first: Events in 574 and last: Births in 1784 -[2018-02-13T00:37:36.671] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:37:36.779] [INFO] cheese - inserting 1000 documents. first: Fence River and last: Chittenden-6-2 Vermont Representative District 2002-2012 -[2018-02-13T00:37:36.815] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:37:36.841] [INFO] cheese - inserting 1000 documents. first: Jan (Persian name) and last: Úrvalsdeild 1937 -[2018-02-13T00:37:36.850] [INFO] cheese - inserting 1000 documents. first: Births in 1783 and last: Births in 963 -[2018-02-13T00:37:36.867] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:37:36.893] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:37:36.950] [INFO] cheese - inserting 1000 documents. first: ILL 73 and last: Wikipedia:Reference desk/Archives/Science/2007 November 20 -[2018-02-13T00:37:37.011] [INFO] cheese - inserting 1000 documents. first: Son Montuno and last: McBryde Garden -[2018-02-13T00:37:37.016] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:37:37.059] [INFO] cheese - inserting 1000 documents. first: Gulsara Dadabayeva and last: Wikipedia:Articles for deletion/Jace Daniels -[2018-02-13T00:37:37.067] [INFO] cheese - inserting 1000 documents. first: Class 2 railroad and last: Excelsia College -[2018-02-13T00:37:37.107] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:37.121] [INFO] cheese - inserting 1000 documents. first: Births in 962 and last: Public Debt Management Agency (Greece) -[2018-02-13T00:37:37.139] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:37:37.175] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:37:37.187] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:37:37.275] [INFO] cheese - inserting 1000 documents. first: Počepice and last: Malaysia FAM League -[2018-02-13T00:37:37.312] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:37:37.411] [INFO] cheese - inserting 1000 documents. first: Úrvalsdeild 1938 and last: 1995-96 Czech 1.Liga season -[2018-02-13T00:37:37.412] [INFO] cheese - inserting 1000 documents. first: Spermwhale and last: Filippo strozzi the elder -[2018-02-13T00:37:37.449] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:37:37.453] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:37:37.541] [INFO] cheese - inserting 1000 documents. first: 2002 Asian Athletics Championships – Women's long jump and last: CC-141 -[2018-02-13T00:37:37.547] [INFO] cheese - inserting 1000 documents. first: Jungle geranium and last: File:Possessiing-Ruby-Lin.jpg -[2018-02-13T00:37:37.582] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:37:37.583] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:37:37.606] [INFO] cheese - inserting 1000 documents. first: Employee of the Month (disambiguation) and last: Institute of Molecular and Cell Biology -[2018-02-13T00:37:37.620] [INFO] cheese - inserting 1000 documents. first: Filippo strozzi the younger and last: Flag of the commonwealth of nations -[2018-02-13T00:37:37.636] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:37:37.665] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:37:37.718] [INFO] cheese - inserting 1000 documents. first: File:Paris Arc de Triomphe DSC03090.JPG and last: File:Strange production 1.gif -[2018-02-13T00:37:37.749] [INFO] cheese - inserting 1000 documents. first: Alplaus, New York and last: Obturation -[2018-02-13T00:37:37.763] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:37:37.765] [INFO] cheese - inserting 1000 documents. first: Flag of the comoros and last: Foreign aid to nepal -[2018-02-13T00:37:37.782] [INFO] cheese - batch complete in: 0.145 secs -[2018-02-13T00:37:37.805] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:37:37.848] [INFO] cheese - inserting 1000 documents. first: Missouri State Fairgrounds Speedway and last: Bud, Wisconsin -[2018-02-13T00:37:37.852] [INFO] cheese - inserting 1000 documents. first: Mark Harris (North Carolina politician) and last: Deaths in 1919 -[2018-02-13T00:37:37.894] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:37:37.908] [INFO] cheese - inserting 1000 documents. first: Foreign aid to sudan and last: Francisco de salinas -[2018-02-13T00:37:37.909] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:37:37.910] [INFO] cheese - inserting 1000 documents. first: Bridgeport-Spaulding Schools and last: Kakuyid dynasty -[2018-02-13T00:37:37.924] [INFO] cheese - batch complete in: 0.142 secs -[2018-02-13T00:37:37.959] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:37:38.019] [INFO] cheese - inserting 1000 documents. first: Portal:Sega/Did you know and last: Za našu ljubav -[2018-02-13T00:37:38.057] [INFO] cheese - inserting 1000 documents. first: Deaths in 1918 and last: Deaths in 1081 -[2018-02-13T00:37:38.069] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:37:38.074] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:37:38.077] [INFO] cheese - inserting 1000 documents. first: Francisco de san roman and last: From toshiko with love -[2018-02-13T00:37:38.097] [INFO] cheese - batch complete in: 0.172 secs -[2018-02-13T00:37:38.128] [INFO] cheese - inserting 1000 documents. first: File:Adinstruments logo.png and last: Chlaenius splendidus -[2018-02-13T00:37:38.152] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:37:38.231] [INFO] cheese - inserting 1000 documents. first: Deaths in 1080 and last: Deaths in 251 -[2018-02-13T00:37:38.234] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Farul Constanța and last: WRTV-DT -[2018-02-13T00:37:38.237] [INFO] cheese - inserting 1000 documents. first: From under the cork tree and last: Gardens in northern ireland -[2018-02-13T00:37:38.256] [INFO] cheese - batch complete in: 0.182 secs -[2018-02-13T00:37:38.273] [INFO] cheese - inserting 1000 documents. first: 9th/12th Royal Lancers and last: Rita Childers -[2018-02-13T00:37:38.275] [INFO] cheese - batch complete in: 0.178 secs -[2018-02-13T00:37:38.316] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:37:38.341] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:37:38.350] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout Broadway Junction and last: Template:NYCS Platform Layout IRT Broadway-Seventh Avenue Local Stations -[2018-02-13T00:37:38.391] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:37:38.493] [INFO] cheese - inserting 1000 documents. first: Chlaenius steveni and last: Allied Gold Mining PLC -[2018-02-13T00:37:38.614] [INFO] cheese - inserting 1000 documents. first: Gardens in scotland and last: Geography of saint petersburg -[2018-02-13T00:37:38.634] [INFO] cheese - inserting 1000 documents. first: File:Lind6.JPG and last: Category:Singaporean criminals -[2018-02-13T00:37:38.657] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:37:38.673] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:37:38.750] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:37:38.919] [INFO] cheese - inserting 1000 documents. first: Deaths in 250 and last: Ministry of Road Transport and Bridges -[2018-02-13T00:37:38.971] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:37:39.005] [INFO] cheese - inserting 1000 documents. first: Geography of saint pierre and miquelon and last: Get to know your rabbit -[2018-02-13T00:37:39.024] [INFO] cheese - inserting 1000 documents. first: José Cláudio Carvalho da Silva and last: L'Homme machine -[2018-02-13T00:37:39.039] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:37:39.054] [INFO] cheese - inserting 1000 documents. first: Template:NYCS Platform Layout IRT Broadway-Seventh Avenue Local Stations/previous and last: Technics and Human Development -[2018-02-13T00:37:39.103] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:37:39.106] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:37:39.161] [INFO] cheese - inserting 1000 documents. first: Commander (Magic: The Gathering) and last: Erich Rehm -[2018-02-13T00:37:39.171] [INFO] cheese - inserting 1000 documents. first: Zlotow County and last: Boothia Peninsula -[2018-02-13T00:37:39.199] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:39.242] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:37:39.339] [INFO] cheese - inserting 1000 documents. first: Marie, Countess of Ponthieu and last: List of cities in Pontevedra -[2018-02-13T00:37:39.375] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:37:39.391] [INFO] cheese - inserting 1000 documents. first: Seemann (Apocalyptica song) and last: Krėva Act -[2018-02-13T00:37:39.427] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of English football transfers 2009–10 and last: Category:Gariaband district -[2018-02-13T00:37:39.449] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:37:39.471] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:37:39.544] [INFO] cheese - inserting 1000 documents. first: Downtown Science (album) and last: Lenmichi languages -[2018-02-13T00:37:39.552] [INFO] cheese - inserting 1000 documents. first: File:Batman Forever The Arcade Game Cover.jpg and last: Electronic benefit transfer system -[2018-02-13T00:37:39.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Garland SF-01 and last: 1987-88 NCAA Division I men's ice hockey season -[2018-02-13T00:37:39.593] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:37:39.637] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:37:39.652] [INFO] cheese - inserting 1000 documents. first: List of cities in La Rioja and last: Charter Township of Berrien -[2018-02-13T00:37:39.651] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:37:39.676] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:37:39.762] [INFO] cheese - inserting 1000 documents. first: Shulamith Firestone and last: Borstal Boy -[2018-02-13T00:37:39.833] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:37:39.876] [INFO] cheese - inserting 1000 documents. first: Hochberg (Haardt) and last: Wildwood Crest Memorial School -[2018-02-13T00:37:39.952] [INFO] cheese - inserting 1000 documents. first: Category:Religious buildings completed in 1980 and last: Category:Columbia College (Missouri) -[2018-02-13T00:37:39.917] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:37:39.994] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:37:40.005] [INFO] cheese - inserting 1000 documents. first: 2013 Idol Star Athletics - Archery Championships and last: Mohammad Ilyas -[2018-02-13T00:37:40.017] [INFO] cheese - inserting 1000 documents. first: Valporaiso and last: Mobilian jargon -[2018-02-13T00:37:40.035] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:37:40.065] [INFO] cheese - inserting 1000 documents. first: Southern Methodist University Mustang Band and last: FFCCCB -[2018-02-13T00:37:40.078] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:37:40.126] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:37:40.206] [INFO] cheese - inserting 1000 documents. first: Region lock and last: APC (protein) -[2018-02-13T00:37:40.263] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:37:40.329] [INFO] cheese - inserting 1000 documents. first: File:Mallian campaign cavalry attack.svg and last: Wikipedia:Sockpuppet investigations/PHD-teacher/Archive -[2018-02-13T00:37:40.365] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:37:40.423] [INFO] cheese - inserting 1000 documents. first: File:Go-Ahead Singapore logo.png and last: Default display hardware codepage -[2018-02-13T00:37:40.424] [INFO] cheese - inserting 1000 documents. first: Performative writing and last: F8F -[2018-02-13T00:37:40.461] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:37:40.469] [INFO] cheese - inserting 1000 documents. first: Flor Procuna and last: Tree hakea -[2018-02-13T00:37:40.506] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:37:40.522] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:37:40.567] [INFO] cheese - inserting 1000 documents. first: Sween Castle and last: Category:Short stories by J. R. R. Tolkien -[2018-02-13T00:37:40.621] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:37:40.644] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Boyz 'n Motion and last: Fond du Lac Reporter -[2018-02-13T00:37:40.689] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:40.694] [INFO] cheese - inserting 1000 documents. first: Pomades and last: Bonheur est dans le pré, Le -[2018-02-13T00:37:40.729] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:37:40.747] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/River1range/Archive and last: Begakortes -[2018-02-13T00:37:40.798] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:37:40.880] [INFO] cheese - inserting 1000 documents. first: Default printer hardware code page and last: Flag of Kirkcudbrightshire -[2018-02-13T00:37:40.933] [INFO] cheese - inserting 1000 documents. first: Category:Unakoti district and last: Pain Zanger -[2018-02-13T00:37:40.938] [INFO] cheese - inserting 1000 documents. first: KIST Station and last: Category:People from Jönköping Municipality -[2018-02-13T00:37:40.966] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:37:40.985] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:37:40.998] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:37:41.066] [INFO] cheese - inserting 1000 documents. first: Edward Cornwallis, 5th Earl Cornwallis and last: From Little Things Big Things Grow -[2018-02-13T00:37:41.088] [INFO] cheese - inserting 1000 documents. first: Golod-Shafarevich theorem and last: Pesto rosso -[2018-02-13T00:37:41.111] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:37:41.124] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:37:41.130] [INFO] cheese - inserting 1000 documents. first: Free fatty acids and last: Mikhail Alekseev/Temp -[2018-02-13T00:37:41.142] [INFO] cheese - inserting 1000 documents. first: Begahosszupatak and last: Category:United States mayoral elections, 1959 -[2018-02-13T00:37:41.181] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:37:41.184] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:37:41.258] [INFO] cheese - inserting 1000 documents. first: Pain Zanget and last: HMS Aurora (1814) -[2018-02-13T00:37:41.276] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/andalasbhakti.com and last: File:ShesGotaWaywithWords.jpg -[2018-02-13T00:37:41.293] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T00:37:41.321] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:37:41.432] [INFO] cheese - inserting 1000 documents. first: Category:Motorcycle customization and last: Rukn al-Daula -[2018-02-13T00:37:41.511] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:37:41.665] [INFO] cheese - inserting 1000 documents. first: File:MEMap-location-of-Amity.png and last: The Hamster -[2018-02-13T00:37:41.677] [INFO] cheese - inserting 1000 documents. first: Canterbury-cathedral and last: W.T. White High School -[2018-02-13T00:37:41.713] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:37:41.716] [INFO] cheese - inserting 1000 documents. first: Icosphere and last: Like a Virgin & Other Big Hits! -[2018-02-13T00:37:41.718] [INFO] cheese - inserting 1000 documents. first: File:Positive title card.jpg and last: Brynica River -[2018-02-13T00:37:41.722] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:37:41.733] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Pécs and last: Wikipedia:WikiProject Spam/LinkReports/impresscms.org -[2018-02-13T00:37:41.759] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:37:41.779] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:37:41.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Clayton Marcuson and last: Rough and Rush -[2018-02-13T00:37:41.794] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:37:41.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ITunes Originals – Seether and last: Philip Watson -[2018-02-13T00:37:41.859] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:37:41.878] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:37:42.129] [INFO] cheese - inserting 1000 documents. first: File:COD XP 2016 logo.png and last: F-15G Strike Weasel -[2018-02-13T00:37:42.141] [INFO] cheese - inserting 1000 documents. first: Michael Preston (footballer) and last: Gulfiya Khanafeyeva -[2018-02-13T00:37:42.166] [INFO] cheese - inserting 1000 documents. first: Bram Goldsmith and last: Jonas Johansson (ice hockey) -[2018-02-13T00:37:42.167] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Ehime Prefecture and last: CONSOL Energy Mine Map Preservation Project -[2018-02-13T00:37:42.183] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:37:42.195] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T00:37:42.198] [INFO] cheese - inserting 1000 documents. first: Marine Logistics Command and last: Mohammed Ahmad Said El Edah -[2018-02-13T00:37:42.227] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:37:42.230] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:37:42.254] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:42.320] [INFO] cheese - inserting 1000 documents. first: Danish two-hundred-kroner bill and last: Central Chernozyom Region -[2018-02-13T00:37:42.366] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:37:42.600] [INFO] cheese - inserting 1000 documents. first: Jordan L. Mott and last: Oleg Imrekov -[2018-02-13T00:37:42.603] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Church of St Thomas More, Subang Jaya and last: William King (minister) -[2018-02-13T00:37:42.649] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:37:42.657] [INFO] cheese - inserting 1000 documents. first: Iris Xiomara Castro Sarmiento and last: Semi-combinatorial -[2018-02-13T00:37:42.658] [INFO] cheese - inserting 1000 documents. first: Celebrate Brooklyn! and last: Bertha (TV series) -[2018-02-13T00:37:42.664] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:37:42.677] [INFO] cheese - inserting 1000 documents. first: Wood glass and last: Double figure-eight bend -[2018-02-13T00:37:42.724] [INFO] cheese - inserting 1000 documents. first: Tahrim and last: Robert Friedrich Wilms -[2018-02-13T00:37:42.727] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:37:42.736] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:42.804] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:37:42.888] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:37:43.142] [INFO] cheese - inserting 1000 documents. first: Template:Okayama and last: Yokohama Landmark Tower -[2018-02-13T00:37:43.169] [INFO] cheese - inserting 1000 documents. first: File:Citadel public post museum.jpeg and last: MN 21 -[2018-02-13T00:37:43.186] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:37:43.204] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:37:43.247] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed computer graphics articles and last: Category:Category-Class American music articles -[2018-02-13T00:37:43.283] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:37:43.293] [INFO] cheese - inserting 1000 documents. first: File:Save Yourself.jpg and last: Vitaliy Nidbaykin -[2018-02-13T00:37:43.303] [INFO] cheese - inserting 1000 documents. first: Ele Keats and last: Photoflash bomb -[2018-02-13T00:37:43.309] [INFO] cheese - inserting 1000 documents. first: Graphics Kernel System and last: Devendranagar -[2018-02-13T00:37:43.334] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Louisiana road transport articles and last: Krzysztof Jabłoński -[2018-02-13T00:37:43.348] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:37:43.350] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:37:43.374] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:37:43.400] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:37:43.519] [INFO] cheese - inserting 1000 documents. first: Trunk Highway 22 (Minnesota) and last: Gairdner, William -[2018-02-13T00:37:43.529] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class American music articles and last: Slovenska Vas, Šentrupert -[2018-02-13T00:37:43.560] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:37:43.560] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:37:43.688] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from Glendale, California and last: Template:Talkpage of redirect/testcases -[2018-02-13T00:37:43.699] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ku-ring-gai Philharmonic Orchestra and last: File:DallascowboysRoH.jpg -[2018-02-13T00:37:43.721] [INFO] cheese - inserting 1000 documents. first: RBC Royal Bank and last: Charles Vess -[2018-02-13T00:37:43.729] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:37:43.735] [INFO] cheese - inserting 1000 documents. first: Gold backed and last: Epirranthis -[2018-02-13T00:37:43.748] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:37:43.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The All That Oath and last: Wikipedia:Articles for deletion/Homohypocrite -[2018-02-13T00:37:43.770] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:37:43.773] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:37:43.815] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:37:43.865] [INFO] cheese - inserting 1000 documents. first: Galbraith, William and last: IMA Auditorium -[2018-02-13T00:37:43.902] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:37:43.973] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Dolores County, Colorado and last: Robert Godwin (disambiguation) -[2018-02-13T00:37:44.032] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:37:44.060] [INFO] cheese - inserting 1000 documents. first: Epirrhoe and last: Wikipedia:WikiProject Spam/LinkReports/lodianmusic.com -[2018-02-13T00:37:44.086] [INFO] cheese - inserting 1000 documents. first: Martin John Ferguson and last: Volgogradskoye -[2018-02-13T00:37:44.087] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:37:44.133] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:37:44.138] [INFO] cheese - inserting 1000 documents. first: File:PomeroyJSHS01.jpeg and last: Category:Barbadian sport by year -[2018-02-13T00:37:44.156] [INFO] cheese - inserting 1000 documents. first: Salduz Kola and last: File:Gabriella Hermon.tiff -[2018-02-13T00:37:44.207] [INFO] cheese - inserting 1000 documents. first: Template:Plana Alta and last: Al Zarar -[2018-02-13T00:37:44.254] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:37:44.267] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:37:44.320] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:37:44.415] [INFO] cheese - inserting 1000 documents. first: P&W Trail and last: Emperor Decius -[2018-02-13T00:37:44.489] [INFO] cheese - inserting 1000 documents. first: Category:Nature reserves in Colorado and last: Mercsény -[2018-02-13T00:37:44.501] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:44.582] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:37:44.647] [INFO] cheese - inserting 1000 documents. first: The Eighth and last: Kim Sang Bum -[2018-02-13T00:37:44.696] [INFO] cheese - inserting 1000 documents. first: Lindi St. Clair and last: Wikipedia:Articles for deletion/List of places in Futurama -[2018-02-13T00:37:44.710] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:37:44.774] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:37:44.800] [INFO] cheese - inserting 1000 documents. first: DC Super Hero Girls: Hero of the Year and last: Draft:Charles Thompson (preacher) -[2018-02-13T00:37:44.814] [INFO] cheese - inserting 1000 documents. first: Rockefeller Wildlife Refuge and last: Blue Eyes (Yo Yo Honey Singh song) -[2018-02-13T00:37:44.897] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:37:44.931] [INFO] cheese - inserting 1000 documents. first: File:BiggerPieceofSky.jpg and last: Cowansville (QC) -[2018-02-13T00:37:44.937] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:45.003] [INFO] cheese - inserting 1000 documents. first: Mercseny and last: M.B.E -[2018-02-13T00:37:45.006] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:37:45.125] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:37:45.264] [INFO] cheese - inserting 1000 documents. first: Jeřice and last: Caledonia County Airport -[2018-02-13T00:37:45.269] [INFO] cheese - inserting 1000 documents. first: File:Natalie Imbruglia - Glorious The Singles 1997-2007.jpg and last: Alteration (album) -[2018-02-13T00:37:45.274] [INFO] cheese - inserting 1000 documents. first: Turkoman horse and last: Let It Enfold You -[2018-02-13T00:37:45.300] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:37:45.304] [INFO] cheese - inserting 1000 documents. first: Race-Vine station and last: 1954 Rutgers Queensmen football team -[2018-02-13T00:37:45.305] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:37:45.327] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:37:45.348] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:37:45.415] [INFO] cheese - inserting 1000 documents. first: Kazachye and last: Wikipedia:Possibly unfree files/2013 November 9 -[2018-02-13T00:37:45.452] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:37:45.481] [INFO] cheese - inserting 1000 documents. first: Farnham (QC) and last: HylaFAX -[2018-02-13T00:37:45.501] [INFO] cheese - inserting 1000 documents. first: Adelaide, South Australia, Australia and last: Episcopal Church of the Good Samaritan -[2018-02-13T00:37:45.527] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:37:45.549] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:37:45.618] [INFO] cheese - inserting 1000 documents. first: Lloyd Sabaudo Line and last: Parliamentary representation from buckinghamshire -[2018-02-13T00:37:45.658] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:37:45.697] [INFO] cheese - inserting 1000 documents. first: File:Rico Love TTLO.jpg and last: You're Breaking My Heart (Harry Nilsson song) -[2018-02-13T00:37:45.711] [INFO] cheese - inserting 1000 documents. first: Vladimír Jirásek and last: Ohrazenice (Semily District) -[2018-02-13T00:37:45.739] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:37:45.756] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:37:45.858] [INFO] cheese - inserting 1000 documents. first: Parliamentary representation from cambridgeshire and last: Paul de foix -[2018-02-13T00:37:45.860] [INFO] cheese - inserting 1000 documents. first: Gare de Bruxelles-Central and last: Category:Keen Records albums -[2018-02-13T00:37:45.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2013 November 9 and last: 1992 Wallabies Spring tour -[2018-02-13T00:37:45.879] [INFO] cheese - inserting 1000 documents. first: Woodbury Langdon and last: Category:Celastrales -[2018-02-13T00:37:45.881] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:37:45.895] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:37:45.936] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:37:45.944] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:37:45.996] [INFO] cheese - inserting 1000 documents. first: Al-Sharjah and last: Delta switching -[2018-02-13T00:37:46.075] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:37:46.086] [INFO] cheese - inserting 1000 documents. first: File:The Bolton School coat of arms.png and last: Indian Motorcycle Race 750 -[2018-02-13T00:37:46.099] [INFO] cheese - inserting 1000 documents. first: Nmyc and last: Harmony (module) -[2018-02-13T00:37:46.131] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:37:46.162] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:37:46.269] [INFO] cheese - inserting 1000 documents. first: Monetville Public School and last: Capt. Stone House (Cincinnati, Ohio) -[2018-02-13T00:37:46.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Beynon Sports Surfaces Installations and last: Edward Francis Winslow -[2018-02-13T00:37:46.341] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:37:46.358] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:37:46.463] [INFO] cheese - inserting 1000 documents. first: Lucy Zelic and last: Ormiston Academies Trust -[2018-02-13T00:37:46.538] [INFO] cheese - inserting 1000 documents. first: FBW and last: Emperor of the Yuan Dynasty -[2018-02-13T00:37:46.564] [INFO] cheese - inserting 1000 documents. first: Noel Teasdale and last: Omni (DC Comics) -[2018-02-13T00:37:46.561] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:37:46.602] [INFO] cheese - inserting 1000 documents. first: Colin L. Raston and last: Switzerland at the 2002 Winter Paralympics -[2018-02-13T00:37:46.612] [INFO] cheese - inserting 1000 documents. first: Peoria center for the performing arts and last: Wikipedia:WikiProject Spam/LinkReports/diicc.uda.cl -[2018-02-13T00:37:46.643] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:37:46.647] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:37:46.664] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:37:46.665] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:37:46.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/foothilltransit.org and last: Antonio Delamea Mlinar -[2018-02-13T00:37:46.964] [INFO] cheese - inserting 1000 documents. first: C. H. Burroughs House (Cincinnati, Ohio) and last: Phacelophora -[2018-02-13T00:37:46.999] [INFO] cheese - inserting 1000 documents. first: Darejan Gruzinsky and last: Yur Mahalleh, Sari -[2018-02-13T00:37:47.027] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:37:47.029] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:47.056] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:37:47.098] [INFO] cheese - inserting 1000 documents. first: Trypanosoma brucei rhodesiense and last: Robert James Mackintosh -[2018-02-13T00:37:47.135] [INFO] cheese - inserting 1000 documents. first: 1901 Rutgers Queensmen football team and last: Category:1956 in Indian cinema -[2018-02-13T00:37:47.136] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:37:47.190] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:37:47.263] [INFO] cheese - inserting 1000 documents. first: Yellowish and last: Atilla Altikat -[2018-02-13T00:37:47.285] [INFO] cheese - inserting 1000 documents. first: Pantelej Nis and last: Uxbridge, Tasmania -[2018-02-13T00:37:47.335] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:37:47.342] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:37:47.394] [INFO] cheese - inserting 1000 documents. first: Phaeoura and last: Aleksandr Gushchin -[2018-02-13T00:37:47.412] [INFO] cheese - inserting 1000 documents. first: Kord Kheyl, Esfivard-e Shurab and last: Noel Peverill -[2018-02-13T00:37:47.438] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:37:47.465] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:37:47.491] [INFO] cheese - inserting 1000 documents. first: Phạm Cong Tac and last: Book:Protest the Hero -[2018-02-13T00:37:47.552] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:37:47.584] [INFO] cheese - inserting 1000 documents. first: Warner Bros. Games Montréal and last: Category:Uzbekistani female trampolinists -[2018-02-13T00:37:47.594] [INFO] cheese - inserting 1000 documents. first: Telegraph Hill (disambiguation) and last: Red Stripe Bowl -[2018-02-13T00:37:47.631] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:37:47.646] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:37:47.921] [INFO] cheese - inserting 1000 documents. first: USS Glasgow and last: Sir Charles Dalrymple, 1st Baronet -[2018-02-13T00:37:47.942] [INFO] cheese - inserting 1000 documents. first: Aleksandr Guschin and last: Auguste-Louis de Rossel de Cercy -[2018-02-13T00:37:47.970] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:37:47.994] [INFO] cheese - inserting 1000 documents. first: Category:Seljuq viziers and last: Matheson & Company -[2018-02-13T00:37:48.013] [INFO] cheese - inserting 1000 documents. first: National Wrestling Hall of Fame and Museum and last: Matera (province) -[2018-02-13T00:37:48.041] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:37:48.066] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:37:48.142] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2011 Pacific Games and last: Dené-Caucasian languages -[2018-02-13T00:37:48.178] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:37:48.210] [INFO] cheese - inserting 1000 documents. first: Dallas Adamson High School and last: SMDS -[2018-02-13T00:37:48.214] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:37:48.318] [INFO] cheese - inserting 1000 documents. first: Man High and last: Bristamox -[2018-02-13T00:37:48.347] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:37:48.429] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:37:48.632] [INFO] cheese - inserting 1000 documents. first: File:Srwoggaiden.jpg and last: Waspán -[2018-02-13T00:37:48.674] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:37:48.715] [INFO] cheese - inserting 1000 documents. first: Template:Extra chronology/sandbox and last: Royal Warwickshires -[2018-02-13T00:37:48.727] [INFO] cheese - inserting 1000 documents. first: Lucero Montemayor Gracia and last: Free, prior and informed consent -[2018-02-13T00:37:48.748] [INFO] cheese - inserting 1000 documents. first: File:WMMI 830AM logo.png and last: John Sydney Hicks -[2018-02-13T00:37:48.992] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:37:49.040] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:37:49.101] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:37:49.174] [INFO] cheese - inserting 1000 documents. first: Jean Hugo (Artist, 1894–1984) and last: Pughtown, PA -[2018-02-13T00:37:49.502] [INFO] cheese - batch complete in: 1.461 secs -[2018-02-13T00:37:49.538] [INFO] cheese - inserting 1000 documents. first: Hard drug and last: Denisdor -[2018-02-13T00:37:49.567] [INFO] cheese - inserting 1000 documents. first: Potenza Province and last: English underground -[2018-02-13T00:37:49.823] [INFO] cheese - inserting 1000 documents. first: Hayduta Buttress and last: Club Olympique de Bamako -[2018-02-13T00:37:49.837] [INFO] cheese - batch complete in: 1.408 secs -[2018-02-13T00:37:49.836] [INFO] cheese - batch complete in: 1.658 secs -[2018-02-13T00:37:49.929] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:37:49.987] [INFO] cheese - inserting 1000 documents. first: Saucy Sixth and last: Mermesd -[2018-02-13T00:37:49.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lovefilm.se and last: Hope (Björk song) -[2018-02-13T00:37:50.075] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T00:37:50.112] [INFO] cheese - inserting 1000 documents. first: Metrebus Card and last: Live from London (Justin Timberlake album) -[2018-02-13T00:37:50.211] [INFO] cheese - inserting 1000 documents. first: Eagle, PA and last: Wikipedia:WikiProject Spam/LinkReports/makingpoint.com.ve -[2018-02-13T00:37:50.212] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:37:50.236] [INFO] cheese - batch complete in: 1.562 secs -[2018-02-13T00:37:50.330] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:37:50.356] [INFO] cheese - inserting 1000 documents. first: Germany at the 1994 Winter Paralympics and last: Alberto Vilarino Sobrado -[2018-02-13T00:37:50.400] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:37:50.536] [INFO] cheese - inserting 1000 documents. first: So-net and last: File:Beatles oldies side1.JPG -[2018-02-13T00:37:50.616] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:37:50.725] [INFO] cheese - inserting 1000 documents. first: Gunnar Dahlen and last: Asher Book -[2018-02-13T00:37:50.727] [INFO] cheese - inserting 1000 documents. first: Alberto Vazquez Martinez and last: Architecture of Pec -[2018-02-13T00:37:50.759] [INFO] cheese - inserting 1000 documents. first: Kismaglód and last: Natoma (disambiguation) -[2018-02-13T00:37:50.763] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:37:50.792] [INFO] cheese - inserting 1000 documents. first: Catholic Charismatic Renewal and last: Wikipedia:Articles for deletion/Valyria -[2018-02-13T00:37:50.817] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:37:50.821] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:37:50.829] [INFO] cheese - inserting 1000 documents. first: El Tranquilo Formation and last: File:Kappa theta chi letters.JPG -[2018-02-13T00:37:50.909] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:37:50.930] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:37:50.954] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Early County, Georgia and last: Café W -[2018-02-13T00:37:51.003] [INFO] cheese - inserting 1000 documents. first: Category:Foreign charities operating in the United Kingdom and last: Biskopsgarden Church -[2018-02-13T00:37:51.061] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:37:51.070] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:37:51.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/Imacomp and last: Jaundice, neonatal -[2018-02-13T00:37:51.320] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:37:51.372] [INFO] cheese - inserting 1000 documents. first: Bistrica, Leposavic and last: Cafelandia, Sao Paulo -[2018-02-13T00:37:51.388] [INFO] cheese - inserting 1000 documents. first: Anders Behring Breivik and last: Wikipedia:WikiProject Spam/LinkReports/rhythmstrummer.com -[2018-02-13T00:37:51.394] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:37:51.451] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:37:51.466] [INFO] cheese - inserting 1000 documents. first: Kia Kolayeh and last: Category:Ambassadors of Somalia to Pakistan -[2018-02-13T00:37:51.493] [INFO] cheese - inserting 1000 documents. first: Bulleye model and last: Walt Bahr -[2018-02-13T00:37:51.570] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:37:51.572] [INFO] cheese - inserting 1000 documents. first: Cafe W and last: Yellareddi -[2018-02-13T00:37:51.608] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:37:51.680] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:37:51.699] [INFO] cheese - inserting 1000 documents. first: Caffe mocha and last: File:MrNoodle.jpg -[2018-02-13T00:37:51.726] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:37:51.859] [INFO] cheese - inserting 1000 documents. first: Ed edd n eddy and last: File:Shivers-p02.jpg -[2018-02-13T00:37:51.935] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:37:51.986] [INFO] cheese - inserting 1000 documents. first: City University of Seattle in Slovakia (Vysoka skola manazmentu) and last: Det ar det pojkar gor nar karleken dor -[2018-02-13T00:37:51.990] [INFO] cheese - inserting 1000 documents. first: Korshamn and last: Template:Oncology-stub -[2018-02-13T00:37:52.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rhythmstrummer.com and last: Thomas Perry (footballer) -[2018-02-13T00:37:52.026] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:37:52.100] [INFO] cheese - inserting 1000 documents. first: Thubway Tham's Inthane Moment and last: File:University of Winchester Main Building.jpg -[2018-02-13T00:37:52.099] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:37:52.101] [INFO] cheese - inserting 1000 documents. first: Al Mouttahed Tripoli and last: Assault in the Ring -[2018-02-13T00:37:52.102] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/November 16, 2013 and last: Hoseynabad, Amlash -[2018-02-13T00:37:52.116] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:37:52.159] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:37:52.172] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:37:52.210] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:37:52.343] [INFO] cheese - inserting 1000 documents. first: Det ar dit vi ska and last: En busca del paraiso -[2018-02-13T00:37:52.366] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:37:52.680] [INFO] cheese - inserting 1000 documents. first: File:Toby Keith - American Ride.jpg and last: Toxotarca -[2018-02-13T00:37:52.708] [INFO] cheese - inserting 1000 documents. first: Corticobulbar tract and last: Category:Geometric group theory -[2018-02-13T00:37:52.713] [INFO] cheese - inserting 1000 documents. first: En busca del paraiso (1982 telenovela) and last: Franck Pencole -[2018-02-13T00:37:52.735] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:37:52.735] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:37:52.782] [INFO] cheese - inserting 1000 documents. first: Kharashtom and last: Category:2011 establishments in Macau -[2018-02-13T00:37:52.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/darkorbithackfree.tk and last: Sandorvolgy -[2018-02-13T00:37:52.814] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:37:52.857] [INFO] cheese - inserting 1000 documents. first: File:Francesca Annis as Jessica Atreides.jpg and last: C5H6N2O2 -[2018-02-13T00:37:52.865] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:37:52.889] [INFO] cheese - inserting 1000 documents. first: Muntenian and last: Sayed Ahmad Keir -[2018-02-13T00:37:52.902] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:37:52.980] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:37:52.995] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:37:53.037] [INFO] cheese - inserting 1000 documents. first: Franck Serusclat and last: Grajau (district of Sao Paulo) -[2018-02-13T00:37:53.068] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:37:53.357] [INFO] cheese - inserting 1000 documents. first: O Homem Que Deve Morrer and last: Helgi Bjornsson -[2018-02-13T00:37:53.391] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:37:53.392] [INFO] cheese - inserting 1000 documents. first: Felsopusztaegres and last: Severe outbreak -[2018-02-13T00:37:53.397] [INFO] cheese - inserting 1000 documents. first: Trichernis and last: Category:Songs written by Francis Rossi -[2018-02-13T00:37:53.430] [INFO] cheese - inserting 1000 documents. first: Askarabad, Gilan and last: Category:The Human League tribute albums -[2018-02-13T00:37:53.454] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:37:53.456] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:37:53.481] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:37:53.630] [INFO] cheese - inserting 1000 documents. first: Underground rivers of London and last: Category:Communes of Pyrénées-Atlantiques -[2018-02-13T00:37:53.633] [INFO] cheese - inserting 1000 documents. first: Digital pentuple and last: Wikipedia:Articles for deletion/Meaning of life -[2018-02-13T00:37:53.684] [INFO] cheese - inserting 1000 documents. first: Helgi Mar Magnusson and last: Navicula bicephaloides -[2018-02-13T00:37:53.706] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:37:53.717] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:37:53.722] [INFO] cheese - inserting 1000 documents. first: British motorways and last: Rose-fruited banksia -[2018-02-13T00:37:53.721] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:37:53.812] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:37:53.936] [INFO] cheese - inserting 1000 documents. first: National anthem of Cambodia and last: Temple Gurdon -[2018-02-13T00:37:53.957] [INFO] cheese - inserting 1000 documents. first: Template:WWIISovietArmouredCars and last: Pseudeminia -[2018-02-13T00:37:53.976] [INFO] cheese - inserting 1000 documents. first: Ogden Syndrome and last: Template:2014 SEC football standings -[2018-02-13T00:37:53.998] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:37:54.017] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:37:54.050] [INFO] cheese - inserting 1000 documents. first: Navicula conveyi and last: Johann Ludwig Schonleben -[2018-02-13T00:37:54.078] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:37:54.079] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:37:54.318] [INFO] cheese - inserting 1000 documents. first: Altimaenas and last: Template:Soviet Union Squad 1982 FIBA World Championship -[2018-02-13T00:37:54.349] [INFO] cheese - inserting 1000 documents. first: Johann Matthaus Meyfart and last: Roman republicanism -[2018-02-13T00:37:54.371] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:37:54.394] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:54.409] [INFO] cheese - inserting 1000 documents. first: File:HoyHaroldJames1916-Navy.jpg and last: Betta trifasciata -[2018-02-13T00:37:54.436] [INFO] cheese - inserting 1000 documents. first: Category:Establishments in Egypt by century and last: Book:J. Paul Getty Trust -[2018-02-13T00:37:54.476] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:37:54.521] [INFO] cheese - inserting 1000 documents. first: Pseudoeriosema and last: File:Keibu.png -[2018-02-13T00:37:54.554] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:37:54.589] [INFO] cheese - inserting 1000 documents. first: Francisco José Nicolás González and last: Sukhtkuh -[2018-02-13T00:37:54.628] [INFO] cheese - inserting 1000 documents. first: Juan Jose Fuertes Martinez and last: Klovsteinbakken -[2018-02-13T00:37:54.637] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:37:54.658] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:37:54.664] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:37:54.665] [INFO] cheese - inserting 1000 documents. first: Nesih and last: Category:Basque people by occupation -[2018-02-13T00:37:54.817] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:37:55.013] [INFO] cheese - inserting 1000 documents. first: Charles Lee Salvaggio and last: Lazovici -[2018-02-13T00:37:55.045] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates with red links/120 and last: Resident Evil: Mercenaries Vs. -[2018-02-13T00:37:55.055] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:37:55.083] [INFO] cheese - inserting 1000 documents. first: Butter worm and last: Aphiq -[2018-02-13T00:37:55.084] [INFO] cheese - inserting 1000 documents. first: Panchax pictum and last: August III the Saxon -[2018-02-13T00:37:55.095] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:37:55.180] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:37:55.229] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:37:55.242] [INFO] cheese - inserting 1000 documents. first: Ali Al-Wardi and last: Metaphilosophy (journal) -[2018-02-13T00:37:55.280] [INFO] cheese - inserting 1000 documents. first: Josh Emery and last: Key blanks -[2018-02-13T00:37:55.302] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:37:55.325] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:55.347] [INFO] cheese - inserting 1000 documents. first: Lassnitz and last: Lumieres Award for Best Cinematography -[2018-02-13T00:37:55.381] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:37:55.476] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Magazines/Animage/2011 and last: Daughter of the Devil -[2018-02-13T00:37:55.557] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:37:55.616] [INFO] cheese - inserting 1000 documents. first: Lumieres Award for Best Director and last: Marcal Aquino -[2018-02-13T00:37:55.662] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:37:55.661] [INFO] cheese - inserting 1000 documents. first: Category:Basque people and last: List of parishes of Portugal: H -[2018-02-13T00:37:55.749] [INFO] cheese - inserting 1000 documents. first: List of pharmaceutical firms and last: Wikipedia:WikiProject Christianity/Anabaptist work group/Introduction -[2018-02-13T00:37:55.759] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:37:55.790] [INFO] cheese - inserting 1000 documents. first: File:Magik4.jpg and last: Necromancer bells -[2018-02-13T00:37:55.838] [INFO] cheese - inserting 1000 documents. first: Krajišnik and last: File:Hathitrustlogo.png -[2018-02-13T00:37:55.868] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:37:55.893] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:37:55.908] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:37:55.954] [INFO] cheese - inserting 1000 documents. first: TMNT 4 and last: Switching user names -[2018-02-13T00:37:55.957] [INFO] cheese - inserting 1000 documents. first: Maree Humaine and last: Miss Peru 1984 -[2018-02-13T00:37:55.987] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:37:56.033] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:37:56.091] [INFO] cheese - inserting 1000 documents. first: (13503) 1988 RH6 and last: Category:People educated at Bradford Girls' Grammar School -[2018-02-13T00:37:56.199] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:37:56.271] [INFO] cheese - inserting 1000 documents. first: Miss Peru 1985 and last: Nicolas Ortiz -[2018-02-13T00:37:56.310] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:37:56.475] [INFO] cheese - inserting 1000 documents. first: Darko Jevtic and last: Kari Hiran -[2018-02-13T00:37:56.564] [INFO] cheese - inserting 1000 documents. first: Hawke Sea Scout Group and last: Wikipedia:Version 1.0 Editorial Team/Utah road transport articles by quality -[2018-02-13T00:37:56.578] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:37:56.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2016 June 11 and last: Patricia Villanueva Abrajan -[2018-02-13T00:37:56.643] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:37:56.665] [INFO] cheese - inserting 1000 documents. first: Skin pens and last: Neferti -[2018-02-13T00:37:56.680] [INFO] cheese - inserting 1000 documents. first: Borneo-Philippines languages and last: Urcabustaiz -[2018-02-13T00:37:56.682] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:37:56.684] [INFO] cheese - inserting 1000 documents. first: Hersh and last: Wikipedia:Articles for deletion/Fuzzical Fighter -[2018-02-13T00:37:56.702] [INFO] cheese - inserting 1000 documents. first: Category:Grêmio Foot-Ball Porto Alegrense and last: Elops affinis -[2018-02-13T00:37:56.758] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:37:56.778] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:37:56.789] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:37:56.792] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:37:56.939] [INFO] cheese - inserting 1000 documents. first: Rhipidognathidae and last: Q'alawana -[2018-02-13T00:37:57.014] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:37:57.147] [INFO] cheese - inserting 1000 documents. first: File:George J. Zimmermann buffalo mayor 1934 1937.jpg and last: Microsoft v. Lindows -[2018-02-13T00:37:57.195] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:37:57.246] [INFO] cheese - inserting 1000 documents. first: Peter Nguyễn Văn Hùng and last: Ruth Kluger-Aliav -[2018-02-13T00:37:57.273] [INFO] cheese - inserting 1000 documents. first: DG-400 and last: Portal:Infrastructure/Selected article/21 -[2018-02-13T00:37:57.275] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:37:57.322] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:37:57.336] [INFO] cheese - inserting 1000 documents. first: Xavier University (Cagayan de Oro) and last: Sankichi Awaya -[2018-02-13T00:37:57.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Utah road transport articles by quality log and last: Christine Axsmith -[2018-02-13T00:37:57.401] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:37:57.407] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:37:57.473] [INFO] cheese - inserting 1000 documents. first: William Matteuzzi and last: Nevatim airport -[2018-02-13T00:37:57.476] [INFO] cheese - inserting 1000 documents. first: Ruth Randall Edstrom and last: Sergio Perez Visca -[2018-02-13T00:37:57.502] [INFO] cheese - inserting 1000 documents. first: Herbert Kohl (Educator) and last: USS R-16 (SS-93) -[2018-02-13T00:37:57.508] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:37:57.547] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:37:57.608] [INFO] cheese - inserting 1000 documents. first: List of New wave artists and bands and last: Template:Afd see also documentation/sandbox -[2018-02-13T00:37:57.630] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:37:57.717] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:37:57.798] [INFO] cheese - inserting 1000 documents. first: Sergio Quiroz and last: Sunvara SK -[2018-02-13T00:37:57.800] [INFO] cheese - inserting 1000 documents. first: Princess Mariana (yacht) and last: Battle of Trent's Reach -[2018-02-13T00:37:57.818] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:37:57.865] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:37:57.976] [INFO] cheese - inserting 1000 documents. first: File:GG-Drummond.jpg and last: Love's a Prima Donna -[2018-02-13T00:37:58.054] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:37:58.074] [INFO] cheese - inserting 1000 documents. first: Live at the Isle of Fehmarn and last: Francis Edwards -[2018-02-13T00:37:58.079] [INFO] cheese - inserting 1000 documents. first: Sunatoarea River and last: Tiefing Konate -[2018-02-13T00:37:58.119] [INFO] cheese - inserting 1000 documents. first: St. Alphonsus' Church, Rectory, Convent and Halle and last: Alycia Halladay -[2018-02-13T00:37:58.145] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:37:58.185] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:37:58.196] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:37:58.202] [INFO] cheese - inserting 1000 documents. first: LLNV and last: Portal:War/Selected anniversaries/July 8 -[2018-02-13T00:37:58.278] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:37:58.448] [INFO] cheese - inserting 1000 documents. first: Tietar (river) and last: Vartioitu kyla 1944 -[2018-02-13T00:37:58.518] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:37:58.527] [INFO] cheese - inserting 1000 documents. first: USS R-17 (SS-94) and last: Stroh violin -[2018-02-13T00:37:58.543] [INFO] cheese - inserting 1000 documents. first: Wildrose Alliance Party of Alberta leadership election, 2009 and last: Chubby Chandler -[2018-02-13T00:37:58.639] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:37:58.687] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T00:37:58.715] [INFO] cheese - inserting 1000 documents. first: Chichester to Silchester Way and last: Church of Christ in China Kei Long College -[2018-02-13T00:37:58.787] [INFO] cheese - inserting 1000 documents. first: Vartiokyla dumping ground and last: You Can Dance – Po Prostu Tancz! (season 8) -[2018-02-13T00:37:58.809] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:37:58.825] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:37:58.899] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Douglas County, Wisconsin and last: Ku Weiwei -[2018-02-13T00:37:58.938] [INFO] cheese - inserting 1000 documents. first: Corporate blog and last: Switzerland, Florida -[2018-02-13T00:37:58.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Jurassic Park franchise/archive1 and last: St Mary's Church, Navan -[2018-02-13T00:37:58.971] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:37:59.036] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:37:59.059] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:37:59.072] [INFO] cheese - inserting 1000 documents. first: Youssouf Kone (footballer, born 1995) and last: Oscar Barros -[2018-02-13T00:37:59.086] [INFO] cheese - inserting 1000 documents. first: Contemporary Pictorial Literature and last: Pokémon: Indigo League -[2018-02-13T00:37:59.113] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:37:59.172] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:37:59.317] [INFO] cheese - inserting 1000 documents. first: Princess Maria Theresa of Löwenstein-Wertheim-Rosenberg and last: 1963–64 New Zealand rugby union tour of Britain, Ireland, France and North America -[2018-02-13T00:37:59.355] [INFO] cheese - inserting 1000 documents. first: Oscar Becerra and last: Agrupación Deportiva Ceuta F.C. -[2018-02-13T00:37:59.391] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:37:59.392] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:37:59.458] [INFO] cheese - inserting 1000 documents. first: John A. Treutlen and last: Elections in Israel -[2018-02-13T00:37:59.499] [INFO] cheese - inserting 1000 documents. first: Template:Cayley-court and last: European Winter Throwing Challenge 2004 -[2018-02-13T00:37:59.582] [INFO] cheese - inserting 1000 documents. first: Kapcypriodopsis and last: Chilean-Greek relations -[2018-02-13T00:37:59.589] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:37:59.605] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:37:59.657] [INFO] cheese - inserting 1000 documents. first: Chrono Cross Timeline and last: Scenopoeetes crassirostris -[2018-02-13T00:37:59.660] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:37:59.714] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:37:59.729] [INFO] cheese - inserting 1000 documents. first: The Cannibal (DeMille novel) and last: Michael Sellers (actor) -[2018-02-13T00:37:59.833] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:37:59.970] [INFO] cheese - inserting 1000 documents. first: Ravenswood Divisional Board and last: Ishmael the son of Fabus -[2018-02-13T00:37:59.986] [INFO] cheese - inserting 1000 documents. first: Danish Superliga 1992-93 and last: Adriaan Engelvaart -[2018-02-13T00:38:00.045] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:38:00.065] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:38:00.223] [INFO] cheese - inserting 1000 documents. first: European Winter Throwing Cup 2004 and last: Victor Strahm -[2018-02-13T00:38:00.238] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Sarpy County, Nebraska and last: List of diplomatic missions in Artsakh -[2018-02-13T00:38:00.307] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:38:00.323] [INFO] cheese - inserting 1000 documents. first: Upayoga and last: Alter of heaven -[2018-02-13T00:38:00.330] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:38:00.427] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:38:00.552] [INFO] cheese - inserting 1000 documents. first: Elections in Italy and last: IRI -[2018-02-13T00:38:00.568] [INFO] cheese - inserting 1000 documents. first: Sir James the Rose and last: Herrevad Abbey -[2018-02-13T00:38:00.575] [INFO] cheese - inserting 1000 documents. first: Geke Faber and last: Italian Postcards -[2018-02-13T00:38:00.659] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:00.701] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:38:00.707] [INFO] cheese - inserting 1000 documents. first: R bodies and last: Magnus Ulleland -[2018-02-13T00:38:00.730] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T00:38:00.768] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:38:00.932] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Blaine County, Idaho and last: Wikipedia:WikiProject Video games/Collaboration of the week -[2018-02-13T00:38:01.003] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:38:01.084] [INFO] cheese - inserting 1000 documents. first: Barat Ratna and last: Yuri Stepanov -[2018-02-13T00:38:01.104] [INFO] cheese - inserting 1000 documents. first: The altar of heaven and last: Ghetto y Gastam -[2018-02-13T00:38:01.143] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:38:01.165] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:38:01.212] [INFO] cheese - inserting 1000 documents. first: Moffedille and last: Wikipedia:Articles for deletion/Oncofertility -[2018-02-13T00:38:01.230] [INFO] cheese - inserting 1000 documents. first: Template:Richmond Spiders women's basketball navbox and last: I5-6402P -[2018-02-13T00:38:01.284] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:38:01.313] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:38:01.429] [INFO] cheese - inserting 1000 documents. first: Balcarres saskatchewan and last: Panthera gombaszoegensis -[2018-02-13T00:38:01.446] [INFO] cheese - inserting 1000 documents. first: Jack in the green and last: Bankers' acceptance -[2018-02-13T00:38:01.473] [INFO] cheese - inserting 1000 documents. first: Category:2012 in Iowa and last: 2006 NASCAR Truck Series -[2018-02-13T00:38:01.484] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:38:01.494] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:38:01.511] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:38:01.554] [INFO] cheese - inserting 1000 documents. first: I5-6500TE and last: Grupa Azoty ATT Polymers GmbH -[2018-02-13T00:38:01.574] [INFO] cheese - inserting 1000 documents. first: School for Spies and last: Deivamagal -[2018-02-13T00:38:01.581] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:38:01.581] [INFO] cheese - inserting 1000 documents. first: Dyre Avenue (Bronx) and last: Qualified flying instructor -[2018-02-13T00:38:01.634] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:38:01.645] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:38:01.799] [INFO] cheese - inserting 1000 documents. first: Lung (cancer) and last: Category:Unassessed Finland Floorball task force articles -[2018-02-13T00:38:01.855] [INFO] cheese - inserting 1000 documents. first: 2007 NASCAR Truck Series and last: Aldo Maria Brachetti Peretti -[2018-02-13T00:38:01.858] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:38:01.885] [INFO] cheese - inserting 1000 documents. first: Nallampalli taluk and last: Florence Caroline Douglas Dixie -[2018-02-13T00:38:01.924] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:38:01.953] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:38:01.955] [INFO] cheese - inserting 1000 documents. first: Template:Anti-Waste League/meta/shortname and last: Alexander Bonsor -[2018-02-13T00:38:01.958] [INFO] cheese - inserting 1000 documents. first: Portal:Montana/On this day/May 18 and last: SH 160 (CO) -[2018-02-13T00:38:02.005] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:02.016] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:38:02.047] [INFO] cheese - inserting 1000 documents. first: Computer-aided drafting and last: Back to the Future (TV series) -[2018-02-13T00:38:02.049] [INFO] cheese - inserting 1000 documents. first: Grand Orient de Belgique and last: Coloptilia -[2018-02-13T00:38:02.099] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:38:02.125] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:38:02.258] [INFO] cheese - inserting 1000 documents. first: So You Think You Can Dance Canada (season 2) and last: Günther Merkel -[2018-02-13T00:38:02.305] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:38:02.307] [INFO] cheese - inserting 1000 documents. first: Main Building (Montgomery, West Virginia) and last: Wikipedia:Articles for deletion/Sankhya Technologies -[2018-02-13T00:38:02.348] [INFO] cheese - inserting 1000 documents. first: Battery-capacitor flash and last: Ovčáry -[2018-02-13T00:38:02.352] [INFO] cheese - inserting 1000 documents. first: Schuylkill Haven station (Reading Railroad) and last: NHAMO -[2018-02-13T00:38:02.364] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:38:02.387] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:38:02.454] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:02.493] [INFO] cheese - inserting 1000 documents. first: Commatica and last: Rivière-du-Loup station -[2018-02-13T00:38:02.593] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:38:02.681] [INFO] cheese - inserting 1000 documents. first: Kolaras and last: File:SDAP-plaque.jpg -[2018-02-13T00:38:02.763] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:38:02.807] [INFO] cheese - inserting 1000 documents. first: Solzhenytsin and last: Proposed top-level domains -[2018-02-13T00:38:02.819] [INFO] cheese - inserting 1000 documents. first: War of the Wabash Confederacy and last: USS N-4 (SS-56) -[2018-02-13T00:38:02.825] [INFO] cheese - inserting 1000 documents. first: Category:People from Kaag en Braassem and last: Kosztafalva -[2018-02-13T00:38:02.854] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:02.860] [INFO] cheese - inserting 1000 documents. first: Polepy and last: Category:Log buildings and structures in Pennsylvania -[2018-02-13T00:38:02.878] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:38:02.938] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:38:02.944] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:38:03.023] [INFO] cheese - inserting 1000 documents. first: Feminism and pornography and last: King Faisal Babes FC -[2018-02-13T00:38:03.030] [INFO] cheese - inserting 1000 documents. first: Penny universities and last: Touchscreen interface -[2018-02-13T00:38:03.092] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:38:03.120] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:38:03.254] [INFO] cheese - inserting 1000 documents. first: Kamiya Kashin and last: RFFC -[2018-02-13T00:38:03.303] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:38:03.327] [INFO] cheese - inserting 1000 documents. first: Congregation Shomrei Emunah (Borough Park) and last: Liavol Pain -[2018-02-13T00:38:03.355] [INFO] cheese - inserting 1000 documents. first: Libaton and last: Haem O -[2018-02-13T00:38:03.397] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:38:03.406] [INFO] cheese - inserting 1000 documents. first: Zvi Feldman and last: Tax preparation service -[2018-02-13T00:38:03.417] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:38:03.490] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:38:03.532] [INFO] cheese - inserting 1000 documents. first: USS N-5 (SS-57) and last: Cultural determinism -[2018-02-13T00:38:03.596] [INFO] cheese - inserting 1000 documents. first: 2001 Asia-Pacific Rally Championship and last: File:Trex250 box opened.jpg -[2018-02-13T00:38:03.603] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:38:03.610] [INFO] cheese - inserting 1000 documents. first: Elizabethtown, N.J. and last: Lichen schlerosis -[2018-02-13T00:38:03.611] [INFO] cheese - inserting 1000 documents. first: Medeama SC and last: The Worst Witch (2017 TV series) -[2018-02-13T00:38:03.642] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:38:03.697] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:03.703] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:03.756] [INFO] cheese - inserting 1000 documents. first: Liavol Pa'in and last: John Hodgkinson (actor) -[2018-02-13T00:38:03.816] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:38:03.884] [INFO] cheese - inserting 1000 documents. first: Dave Smith (darts player) and last: George Hodge (cricketer) -[2018-02-13T00:38:03.950] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:38:04.084] [INFO] cheese - inserting 1000 documents. first: Victor Erofeev and last: Moses Ximenes -[2018-02-13T00:38:04.113] [INFO] cheese - inserting 1000 documents. first: Hotdec and last: Fool on the Hill (novel) -[2018-02-13T00:38:04.166] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:38:04.260] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:38:04.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sakert.blogspot.com and last: Protein farnesyltransferase -[2018-02-13T00:38:04.340] [INFO] cheese - inserting 1000 documents. first: Hell Hound and last: Jacques Helbronner -[2018-02-13T00:38:04.373] [INFO] cheese - inserting 1000 documents. first: Two-year college and last: Category:1164 births -[2018-02-13T00:38:04.371] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:38:04.418] [INFO] cheese - inserting 1000 documents. first: Episcepsis endodasia and last: File:Arkadij Gajdar Timur i ego komanda.jpg -[2018-02-13T00:38:04.432] [INFO] cheese - inserting 1000 documents. first: Loxian Apollo and last: Thumbikins -[2018-02-13T00:38:04.435] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:38:04.485] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:38:04.484] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:38:04.525] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:04.737] [INFO] cheese - inserting 1000 documents. first: Arthur W. Bell, III and last: Broadway Calls (Album) -[2018-02-13T00:38:04.799] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:38:04.953] [INFO] cheese - inserting 1000 documents. first: (6018) 1991 PS16 and last: Category:Sint-Martens-Latem -[2018-02-13T00:38:04.955] [INFO] cheese - inserting 1000 documents. first: Cornelius Taiwo and last: Category:Opted-out of message delivery -[2018-02-13T00:38:05.003] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:38:05.036] [INFO] cheese - inserting 1000 documents. first: Legio fulminaris and last: Template:Guyana National Football League -[2018-02-13T00:38:05.041] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:05.081] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:38:05.091] [INFO] cheese - inserting 1000 documents. first: Hanza yellow and last: Ultimate Storm -[2018-02-13T00:38:05.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ken Hunter Football and last: L,L-diaminopimelate aminotransferase -[2018-02-13T00:38:05.144] [INFO] cheese - inserting 1000 documents. first: Keillor and last: Province of Taranto -[2018-02-13T00:38:05.166] [INFO] cheese - inserting 1000 documents. first: File:Pneumatic actuator.jpg and last: Yer demir gök bakir -[2018-02-13T00:38:05.184] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:38:05.188] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:38:05.203] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:38:05.233] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:38:05.379] [INFO] cheese - inserting 1000 documents. first: Wings of an Eagle and Other Great Hits and last: William Stephens (cricketer) -[2018-02-13T00:38:05.385] [INFO] cheese - inserting 1000 documents. first: J. Nutr. Biochem. and last: Category:Chips (band) songs -[2018-02-13T00:38:05.395] [INFO] cheese - inserting 1000 documents. first: Category:Osmania University and last: SV Salamander Türkheim -[2018-02-13T00:38:05.410] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:38:05.430] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:38:05.452] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:05.528] [INFO] cheese - inserting 1000 documents. first: Loue (Isle) and last: Psychoanalytic conceptions of language -[2018-02-13T00:38:05.560] [INFO] cheese - inserting 1000 documents. first: RB Richardson and last: Chromate passivation -[2018-02-13T00:38:05.569] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:38:05.607] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:38:05.724] [INFO] cheese - inserting 1000 documents. first: Pullambadi and last: State Street Bank & Trust -[2018-02-13T00:38:05.752] [INFO] cheese - inserting 1000 documents. first: KBMY and last: 1931 Atlantic hurricane season -[2018-02-13T00:38:05.763] [INFO] cheese - inserting 1000 documents. first: Alan Shubrook and last: Wikipedia:Articles for deletion/ETEBAC5 -[2018-02-13T00:38:05.803] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:38:05.809] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:38:05.817] [INFO] cheese - inserting 1000 documents. first: Category:Blue Coast Records artists and last: File:GGCchristy.jpg -[2018-02-13T00:38:05.827] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:05.876] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:38:05.905] [INFO] cheese - inserting 1000 documents. first: Syro Malabar Church and last: Joint Electronic Device Engineering Council -[2018-02-13T00:38:05.912] [INFO] cheese - inserting 1000 documents. first: Category:Articles sourced only by IMDb from August 2011 and last: Template:Yoko Ono Singles -[2018-02-13T00:38:05.940] [INFO] cheese - inserting 1000 documents. first: William Digby (disambiguation) and last: Agadir-Ida Ou Tanane Prefecture -[2018-02-13T00:38:05.958] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:38:05.979] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:38:05.981] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:38:06.325] [INFO] cheese - inserting 1000 documents. first: Mil horas and last: Category:Pamunkey -[2018-02-13T00:38:06.375] [INFO] cheese - inserting 1000 documents. first: Nanhai County and last: Livin' for the Weekend: Anthology -[2018-02-13T00:38:06.385] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:38:06.455] [INFO] cheese - inserting 1000 documents. first: Shekhpura and last: ANPA -[2018-02-13T00:38:06.463] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:38:06.500] [INFO] cheese - inserting 1000 documents. first: British Cybernetics Society and last: Category:Low-importance Secret Societies articles -[2018-02-13T00:38:06.509] [INFO] cheese - inserting 1000 documents. first: File:PFI HealthStrength.jpg and last: The Mokena Messenger -[2018-02-13T00:38:06.517] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:38:06.531] [INFO] cheese - inserting 1000 documents. first: Madukkur block and last: Kazerne Dossin Memorial -[2018-02-13T00:38:06.551] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:06.556] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:38:06.586] [INFO] cheese - inserting 1000 documents. first: Objectify and last: Tennessee Centennial and International Exposition (1897) -[2018-02-13T00:38:06.603] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:38:06.669] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:38:06.796] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julie Hamill and last: Prem Mayee -[2018-02-13T00:38:06.829] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:38:06.871] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Sowme'eh Sara County and last: Wikipedia:Requests for comment/Dsimic -[2018-02-13T00:38:06.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Nakesha7c and last: Eigel -[2018-02-13T00:38:06.912] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:38:06.937] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:38:06.950] [INFO] cheese - inserting 1000 documents. first: Meroitic script and last: Category:1880 in Illinois -[2018-02-13T00:38:06.962] [INFO] cheese - inserting 1000 documents. first: File:Parallax View movie poster.jpg and last: Nicholas Teo -[2018-02-13T00:38:07.006] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:38:07.023] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:07.061] [INFO] cheese - inserting 1000 documents. first: NY-21 and last: Bo Pellnas -[2018-02-13T00:38:07.111] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:38:07.144] [INFO] cheese - inserting 1000 documents. first: Bantoid–Cross languages and last: New Synagogue, Berlin -[2018-02-13T00:38:07.175] [INFO] cheese - inserting 1000 documents. first: 38 Revenue Collection Unit and last: University of Creative Technology Chittagong -[2018-02-13T00:38:07.202] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:38:07.215] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:38:07.289] [INFO] cheese - inserting 1000 documents. first: File:The Play last lateral 1 of 2.png and last: File:EMAP Company Logo.jpg -[2018-02-13T00:38:07.339] [INFO] cheese - inserting 1000 documents. first: Anthony Suarez and last: Mediouna Airfield -[2018-02-13T00:38:07.340] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:38:07.399] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:38:07.421] [INFO] cheese - inserting 1000 documents. first: Cnemidopteris and last: Grzegorz Skwierczyński -[2018-02-13T00:38:07.509] [INFO] cheese - inserting 1000 documents. first: V-2 diesel engine and last: File:Generalweclutterbuck.jpg -[2018-02-13T00:38:07.512] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:38:07.584] [INFO] cheese - inserting 1000 documents. first: Guantanamo captive 151 and last: Antonius Mor -[2018-02-13T00:38:07.641] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:07.699] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:38:07.801] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rajesh Aggarwal and last: Request for Qualifications -[2018-02-13T00:38:07.835] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:07.943] [INFO] cheese - inserting 1000 documents. first: Category:2014 in Singaporean sport and last: Sust, Iran -[2018-02-13T00:38:07.967] [INFO] cheese - inserting 1000 documents. first: FIVB World Rankings and last: Island Falls -[2018-02-13T00:38:07.980] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:38:08.025] [INFO] cheese - inserting 1000 documents. first: Faizullah Khujayev and last: Valentina Giovagnini -[2018-02-13T00:38:08.035] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:38:08.086] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:38:08.153] [INFO] cheese - inserting 1000 documents. first: Norwegian Academy Prize in memory of Thorleif Dahl and last: Haw flake -[2018-02-13T00:38:08.179] [INFO] cheese - inserting 1000 documents. first: Monster Mash (Misfits) and last: Seleucus Nikator -[2018-02-13T00:38:08.208] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:38:08.237] [INFO] cheese - inserting 1000 documents. first: Category:Neuroscience organizations and last: Category:Buildings and structures in Jackson County, South Dakota -[2018-02-13T00:38:08.268] [INFO] cheese - inserting 1000 documents. first: Anglican diocese of Freetown and last: Category:Insects of Belize -[2018-02-13T00:38:08.274] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:38:08.335] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:38:08.353] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:38:08.419] [INFO] cheese - inserting 1000 documents. first: Central Bureau of Statistics (Nepal) and last: Nalband, Gilan -[2018-02-13T00:38:08.461] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:38:08.511] [INFO] cheese - inserting 1000 documents. first: Hing Wah Estate and last: Category:Rugby union in South America -[2018-02-13T00:38:08.561] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:38:08.696] [INFO] cheese - inserting 1000 documents. first: Shephard group and last: File:Ethan Hardy.jpg -[2018-02-13T00:38:08.696] [INFO] cheese - inserting 1000 documents. first: Waller T. Patton and last: Pedro Luis Díaz Lanz -[2018-02-13T00:38:08.709] [INFO] cheese - inserting 1000 documents. first: Continuous transmission mode and last: Charles McGee (painter) -[2018-02-13T00:38:08.732] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:38:08.739] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:38:08.770] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:38:08.791] [INFO] cheese - inserting 1000 documents. first: Aca Lukas and last: Great Lakes storm of 1913 -[2018-02-13T00:38:08.847] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:38:08.879] [INFO] cheese - inserting 1000 documents. first: Mooring mast and last: Wikipedia:WikiProject University of Florida/to do -[2018-02-13T00:38:08.929] [INFO] cheese - inserting 1000 documents. first: Abortion-rights movement and last: College of Osteopathic Medicine of the Pacific, Northwest -[2018-02-13T00:38:08.932] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:09.004] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:38:09.067] [INFO] cheese - inserting 1000 documents. first: Category:1970s poems and last: Belleplaine -[2018-02-13T00:38:09.123] [INFO] cheese - inserting 1000 documents. first: File:Caleb Knight.jpg and last: Anne-Marie Sicotte -[2018-02-13T00:38:09.149] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:38:09.170] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:38:09.212] [INFO] cheese - inserting 1000 documents. first: Titan Jail and last: TOSCA -[2018-02-13T00:38:09.276] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:09.479] [INFO] cheese - inserting 1000 documents. first: Havens Head Retail Park and last: Cruisin' Down the Highway -[2018-02-13T00:38:09.504] [INFO] cheese - inserting 1000 documents. first: Nasur Mahalleh and last: Module:Message box/configuration/doc -[2018-02-13T00:38:09.529] [INFO] cheese - inserting 1000 documents. first: College of Osteopathic Medicine of the Pacific Northwest and last: Peatbog Records -[2018-02-13T00:38:09.537] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:09.565] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T00:38:09.569] [INFO] cheese - inserting 1000 documents. first: Jiyus and last: Baseball at the 1955 Pan American Games -[2018-02-13T00:38:09.582] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:38:09.626] [INFO] cheese - inserting 1000 documents. first: Kabigon and last: Category:Privateers -[2018-02-13T00:38:09.635] [INFO] cheese - inserting 1000 documents. first: Sokol Saratov and last: Auraya of the White -[2018-02-13T00:38:09.639] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:38:09.673] [INFO] cheese - inserting 1000 documents. first: Turn The Page (Metallica song) and last: Jig maker -[2018-02-13T00:38:09.674] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:38:09.686] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:38:09.734] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:38:09.934] [INFO] cheese - inserting 1000 documents. first: Trigg County Public Schools and last: Category:Medieval Jewish physicians of Italy -[2018-02-13T00:38:09.948] [INFO] cheese - inserting 1000 documents. first: Chris Turner (politician) and last: Category:Census-designated places in Webster County, Iowa -[2018-02-13T00:38:09.957] [INFO] cheese - inserting 1000 documents. first: Goddess Ceres and last: Nicholas Chiorazzi -[2018-02-13T00:38:09.981] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:38:09.997] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:10.003] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:38:10.043] [INFO] cheese - inserting 1000 documents. first: Marjorie Mensah and last: 1982–83 Duleep Trophy -[2018-02-13T00:38:10.088] [INFO] cheese - inserting 1000 documents. first: Kota Ngah Ibrahim and last: Erky Perky -[2018-02-13T00:38:10.105] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:38:10.127] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:38:10.134] [INFO] cheese - inserting 1000 documents. first: Ookami to Koushinryo and last: Tanja Ribic -[2018-02-13T00:38:10.177] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:38:10.235] [INFO] cheese - inserting 1000 documents. first: Konjaku Monogatari and last: Chyhyryn -[2018-02-13T00:38:10.286] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:38:10.303] [INFO] cheese - inserting 1000 documents. first: William Hammond (cricketer) and last: William J. Howell -[2018-02-13T00:38:10.304] [INFO] cheese - inserting 1000 documents. first: Oriental Missionary Society and last: Category:Tourist attractions in Seward County, Nebraska -[2018-02-13T00:38:10.347] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:38:10.358] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:38:10.380] [INFO] cheese - inserting 1000 documents. first: The Robinson Family and last: Category:Los Super Reyes songs -[2018-02-13T00:38:10.418] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:38:10.504] [INFO] cheese - inserting 1000 documents. first: 1983–84 Duleep Trophy and last: File:Game-of-Thrones-S06-E10-The-Winds-of-Winter.jpg -[2018-02-13T00:38:10.540] [INFO] cheese - inserting 1000 documents. first: Vinnius and last: EX-Z57 -[2018-02-13T00:38:10.583] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:38:10.604] [INFO] cheese - inserting 1000 documents. first: Eagle Township, Black Hawk County, Iowa and last: 9 mm Para -[2018-02-13T00:38:10.611] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:38:10.713] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:38:10.868] [INFO] cheese - inserting 1000 documents. first: HMS Merope (1808) and last: Sandy rosenthal -[2018-02-13T00:38:10.928] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Phelps County, Nebraska and last: United Nations Security Council Resolution 2001 -[2018-02-13T00:38:10.933] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:11.001] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:38:11.069] [INFO] cheese - inserting 1000 documents. first: BEL and last: Ozalid (trade mark) -[2018-02-13T00:38:11.107] [INFO] cheese - inserting 1000 documents. first: Category:Vitosha and last: Wikipedia:Copyright problems/2007 December 7/Articles -[2018-02-13T00:38:11.127] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:38:11.135] [INFO] cheese - inserting 1000 documents. first: W219AU and last: Fatima (d. 1246) -[2018-02-13T00:38:11.139] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:38:11.155] [INFO] cheese - inserting 1000 documents. first: Cheetah Danio and last: Template:Unsignedip -[2018-02-13T00:38:11.207] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:38:11.214] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:38:11.327] [INFO] cheese - inserting 1000 documents. first: Template:ВТ-ЭСБЕ and last: Quicksilver Lightning -[2018-02-13T00:38:11.331] [INFO] cheese - inserting 1000 documents. first: Wojciech Gawroński and last: Wikipedia:WikiProject Trains/ICC valuations/Nez Perce and Idaho Railroad -[2018-02-13T00:38:11.352] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fsologub.ru and last: Template:Editnotices/Page/List of people from Newfoundland and Labrador -[2018-02-13T00:38:11.361] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:38:11.382] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:38:11.403] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:38:11.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 December 7 and last: Myosin light chain phosphatase -[2018-02-13T00:38:11.596] [INFO] cheese - inserting 1000 documents. first: 2016–17 Women's EHF Champions League group stage and last: Portal:Business and economics/Selected quote/106 -[2018-02-13T00:38:11.598] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:38:11.631] [INFO] cheese - inserting 1000 documents. first: Nathaniel Claiborne and last: Treaty of Saint-Clair-sur-Epte -[2018-02-13T00:38:11.630] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:38:11.647] [INFO] cheese - inserting 1000 documents. first: Veniamin Fleishman and last: US-412 -[2018-02-13T00:38:11.704] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:38:11.716] [INFO] cheese - inserting 1000 documents. first: Category:Permanent Representatives of Sudan to the United Nations and last: Wikipedia:Articles for deletion/Christian Robert-Godfrey -[2018-02-13T00:38:11.727] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:38:11.729] [INFO] cheese - inserting 1000 documents. first: File:Kings and Queens music video.jpg and last: Masider -[2018-02-13T00:38:11.766] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Anthony Winward and last: Wikipedia:WikiProject Spam/Local/dictionaryofsydney.org -[2018-02-13T00:38:11.780] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:38:11.782] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:38:11.844] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:38:11.980] [INFO] cheese - inserting 1000 documents. first: Chocolate Inspector and last: Wikipedia:Articles for deletion/Kinetic degradation fluxion media (2nd nomination) -[2018-02-13T00:38:12.010] [INFO] cheese - inserting 1000 documents. first: Abdulrazak Gurnah and last: Wikipedia:WikiProject Spam/LinkReports/fripro.com -[2018-02-13T00:38:12.020] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:38:12.074] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:38:12.229] [INFO] cheese - inserting 1000 documents. first: Category:Thai comedians and last: Tomb of National Heroes, Belgrade -[2018-02-13T00:38:12.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/April 6, 2007 and last: Lake Waswanipi -[2018-02-13T00:38:12.265] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:38:12.269] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 July 31 and last: Socialist Youth (Croatia) -[2018-02-13T00:38:12.336] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:38:12.356] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:38:12.462] [INFO] cheese - inserting 1000 documents. first: Song Yun Ah and last: USS S-37 -[2018-02-13T00:38:12.550] [INFO] cheese - inserting 1000 documents. first: Drugi način and last: David Lewis MacPherson -[2018-02-13T00:38:12.597] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:38:12.654] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:38:12.715] [INFO] cheese - inserting 1000 documents. first: File:Danger by Katie Underwood.jpg and last: Wikipedia:Articles for deletion/Birthright (A-Ha song) -[2018-02-13T00:38:12.765] [INFO] cheese - inserting 1000 documents. first: Uilliam ÓDuinnín and last: Template:Perarasu -[2018-02-13T00:38:12.806] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:38:12.826] [INFO] cheese - inserting 1000 documents. first: Tyesha Mattis and last: Shargeh, Baneh -[2018-02-13T00:38:12.864] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:38:12.871] [INFO] cheese - inserting 1000 documents. first: Red Falcons and last: Wikipedia:Tip of the day/November 17, 2007 -[2018-02-13T00:38:12.903] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:38:12.950] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:38:12.963] [INFO] cheese - inserting 1000 documents. first: Dusan Nulícek and last: Simon Geschke -[2018-02-13T00:38:13.089] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:38:13.113] [INFO] cheese - inserting 1000 documents. first: Toktayym Umotalieva and last: Template:PDB Gallery/538 -[2018-02-13T00:38:13.199] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:38:13.293] [INFO] cheese - inserting 1000 documents. first: Lesbian Health Initiative of Houston and last: Tennessee State Route 30 -[2018-02-13T00:38:13.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:POTD/February 9, 2005 and last: Charles A. Lockwood -[2018-02-13T00:38:13.337] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:38:13.342] [INFO] cheese - inserting 1000 documents. first: Sarqul and last: NPC Japan -[2018-02-13T00:38:13.369] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:38:13.395] [INFO] cheese - inserting 1000 documents. first: 2007 Regions Morgan Keegan Championships and the Cellular South Cup and last: Ohangla dance -[2018-02-13T00:38:13.409] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:13.447] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:13.481] [INFO] cheese - inserting 1000 documents. first: 2005–06 Scottish Premier League and last: Love Is War -[2018-02-13T00:38:13.492] [INFO] cheese - inserting 1000 documents. first: Chapman Intermediate School and last: Wikipedia:Articles for deletion/Game Boy games in the Castlevania series -[2018-02-13T00:38:13.531] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:38:13.533] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:38:13.590] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Manchester Ship Canal/archive1 and last: Category:Novels set in Northern Territory (Australia) -[2018-02-13T00:38:13.644] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:38:13.755] [INFO] cheese - inserting 1000 documents. first: Category:Lists of actors by American television series and last: Taichung Municipality -[2018-02-13T00:38:13.789] [INFO] cheese - inserting 1000 documents. first: List of diplomats of the United Kingdom to the Hanseatic League and last: Category:Roads in Vijayawada -[2018-02-13T00:38:13.810] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:38:13.827] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:38:13.887] [INFO] cheese - inserting 1000 documents. first: 3225 Hoag and last: Wikipedia:WikiProject Spam/LinkReports/alfiemartin.com -[2018-02-13T00:38:13.906] [INFO] cheese - inserting 1000 documents. first: Template:Superimpose2 and last: Cuiluan District -[2018-02-13T00:38:13.914] [INFO] cheese - inserting 1000 documents. first: My Dinner With Andre and last: Dale Peck -[2018-02-13T00:38:13.945] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:38:13.965] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:38:13.973] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:38:14.011] [INFO] cheese - inserting 1000 documents. first: Breath of life and last: Team Melli -[2018-02-13T00:38:14.056] [INFO] cheese - inserting 1000 documents. first: Category:Football venues in São Paulo (state) and last: File:Hammerfight video game screenshot.png -[2018-02-13T00:38:14.078] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:38:14.105] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:14.266] [INFO] cheese - inserting 1000 documents. first: Sike Station and last: Category:Dark Angel (band) members -[2018-02-13T00:38:14.271] [INFO] cheese - inserting 1000 documents. first: 2017 FIVB Volleyball Girls' U18 World Championship and last: Tweedmouth rangers fc -[2018-02-13T00:38:14.314] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:38:14.326] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:38:14.355] [INFO] cheese - inserting 1000 documents. first: Серге́й Серге́евич Бодро́в and last: Renee Taylor -[2018-02-13T00:38:14.459] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:38:14.550] [INFO] cheese - inserting 1000 documents. first: Sir David Stuart Beattie and last: B E Sutton -[2018-02-13T00:38:14.591] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:38:14.690] [INFO] cheese - inserting 1000 documents. first: Noncentral beta distribution and last: St. Augustine Foot Soldiers Monument -[2018-02-13T00:38:14.729] [INFO] cheese - inserting 1000 documents. first: What Now My Love (1966 song) and last: Wikipedia:Articles for deletion/The essentials -[2018-02-13T00:38:14.734] [INFO] cheese - inserting 1000 documents. first: William Janklow and last: Galactic Basic -[2018-02-13T00:38:14.755] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:38:14.785] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:38:14.795] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:38:14.874] [INFO] cheese - inserting 1000 documents. first: Category:Daphne and Celeste songs and last: Wikipedia:Articles for deletion/Rolf Dinsdale -[2018-02-13T00:38:14.892] [INFO] cheese - inserting 1000 documents. first: File:Bishop Edward Bass.jpg and last: 2016-17 UMass Minutemen basketball team -[2018-02-13T00:38:14.922] [INFO] cheese - inserting 1000 documents. first: The Grio and last: Category:Steamships of Finland -[2018-02-13T00:38:14.938] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:38:14.941] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:38:15.008] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:15.018] [INFO] cheese - inserting 1000 documents. first: Marvin P. Iannone and last: USS LST-956 -[2018-02-13T00:38:15.068] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:38:15.135] [INFO] cheese - inserting 1000 documents. first: Labyrinth 2 HD and last: Category:1865 in the Confederate States of America -[2018-02-13T00:38:15.170] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:15.224] [INFO] cheese - inserting 1000 documents. first: Danzig 6 and last: Template:Infobox NCAA team season/teamsandbox -[2018-02-13T00:38:15.234] [INFO] cheese - inserting 1000 documents. first: Category:Companies by city and last: Chris Bliss -[2018-02-13T00:38:15.259] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:38:15.290] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:38:15.292] [INFO] cheese - inserting 1000 documents. first: Saudi-Iraq border and last: Mountain coyote mint -[2018-02-13T00:38:15.348] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:38:15.377] [INFO] cheese - inserting 1000 documents. first: Evelyn Beatrice Longman Batchelder and last: Peter Paul Busuttil -[2018-02-13T00:38:15.423] [INFO] cheese - inserting 1000 documents. first: Pine Stump Junction and last: Cambodian Army -[2018-02-13T00:38:15.435] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:38:15.449] [INFO] cheese - inserting 1000 documents. first: Template:CECAFA Cup and last: Jared Lane -[2018-02-13T00:38:15.456] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Douglas County, Kansas and last: Alaska Native languages -[2018-02-13T00:38:15.483] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:38:15.499] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:38:15.502] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:38:15.644] [INFO] cheese - inserting 1000 documents. first: Pronoun dropping language and last: Conde de Casal (Madrid Metro) -[2018-02-13T00:38:15.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/myhotelsibiza.com and last: Portal:Anime and Manga/Anniversaries/July/July 6 -[2018-02-13T00:38:15.665] [INFO] cheese - inserting 1000 documents. first: Munemitsu Mutsu and last: Plateresque Style -[2018-02-13T00:38:15.689] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:38:15.686] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:38:15.734] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:38:15.774] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/51207 and last: File:Trash We'd Love.jpg -[2018-02-13T00:38:15.800] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:38:15.883] [INFO] cheese - inserting 1000 documents. first: Indigenous languages of Alaska and last: King Abel of Denmark -[2018-02-13T00:38:15.889] [INFO] cheese - inserting 1000 documents. first: Indianwood Golf & Country Club and last: Iratsume -[2018-02-13T00:38:15.915] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:15.943] [INFO] cheese - inserting 1000 documents. first: Portal:Anime and Manga/Anniversaries/July/July 7 and last: Eileen McSaveney -[2018-02-13T00:38:15.959] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:38:16.094] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:38:16.178] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/9955 and last: Template:Ledbury and Gloucester Railway -[2018-02-13T00:38:16.194] [INFO] cheese - inserting 1000 documents. first: Dreamgirl: my life as a supreme and last: IFPB -[2018-02-13T00:38:16.262] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:38:16.309] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:38:16.493] [INFO] cheese - inserting 1000 documents. first: The eurasia center and last: Mouth of tyne festival -[2018-02-13T00:38:16.588] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T00:38:16.657] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/5830 and last: Category:Trot groups -[2018-02-13T00:38:16.680] [INFO] cheese - inserting 1000 documents. first: Maplestory Adventures and last: Category:Suspected Wikipedia sockpuppets of Mr.sir named sir -[2018-02-13T00:38:16.682] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:38:16.709] [INFO] cheese - inserting 1000 documents. first: Template:Regent College and last: File:University of Chicago Basketball Team, Intercollegiate Champions, 1909-10.jpg -[2018-02-13T00:38:16.718] [INFO] cheese - inserting 1000 documents. first: Peter J. Hammond (economist) and last: Raheel Sharif -[2018-02-13T00:38:16.734] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:38:16.744] [INFO] cheese - inserting 1000 documents. first: Iridana and last: List of Italian films of 1984 -[2018-02-13T00:38:16.757] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:38:16.779] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T00:38:16.833] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:38:16.946] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/11005 and last: Template:United States Air Force squadron types -[2018-02-13T00:38:16.972] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:38:17.038] [INFO] cheese - inserting 1000 documents. first: Ramzi Abed and last: Royal Irish Rangers (23rd (Inniskilling), 83rd and 87th) -[2018-02-13T00:38:17.100] [INFO] cheese - inserting 1000 documents. first: Jonas Carpignano and last: File:XHSDM LaVozDelaselva95.7 logo.png -[2018-02-13T00:38:17.103] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:38:17.106] [INFO] cheese - inserting 1000 documents. first: Woodstock High School (Georgia) and last: Wasserfall missile -[2018-02-13T00:38:17.115] [INFO] cheese - inserting 1000 documents. first: O‘zbekiston Respublikasi and last: Bomba, Belize -[2018-02-13T00:38:17.136] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:38:17.159] [INFO] cheese - inserting 1000 documents. first: Portal:Novels/Did you know/4 and last: Seth Helgeson -[2018-02-13T00:38:17.173] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:38:17.173] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:38:17.214] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:38:17.311] [INFO] cheese - inserting 1000 documents. first: Oncologic Surgery and last: Eddie Doyle (hurler) -[2018-02-13T00:38:17.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RR & CO. and last: Template:Infected Mushroom -[2018-02-13T00:38:17.365] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:38:17.379] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:38:17.531] [INFO] cheese - inserting 1000 documents. first: SOCATA TB-9 Tampico and last: George Panthanmackel -[2018-02-13T00:38:17.537] [INFO] cheese - inserting 1000 documents. first: Amber Darter and last: Cámara de Diputados -[2018-02-13T00:38:17.554] [INFO] cheese - inserting 1000 documents. first: Naruto Shippuden: Ultimate Ninja Storm Revolution and last: Brisbane Quarter -[2018-02-13T00:38:17.577] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:38:17.604] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:38:17.613] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:38:17.627] [INFO] cheese - inserting 1000 documents. first: Pan, amor y Andalucía and last: Template:2016-17 MAAC women's basketball standings -[2018-02-13T00:38:17.697] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:38:17.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Irish wikipedians' notice board/to do and last: Robert Arbuthnot, 3rd Viscount of Arbuthnott -[2018-02-13T00:38:17.784] [INFO] cheese - inserting 1000 documents. first: Accounting (UIL) and last: Category:Unknown-importance Florida road transport articles -[2018-02-13T00:38:17.825] [INFO] cheese - inserting 1000 documents. first: GSC 02757-01152 and last: Turvo River (Minas Gerais) -[2018-02-13T00:38:17.834] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:38:17.865] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:38:17.945] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:38:18.082] [INFO] cheese - inserting 1000 documents. first: Pacahuara and last: Dennis Horner (rugby league) -[2018-02-13T00:38:18.179] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:18.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/bio27.com and last: Kingiseppsky District -[2018-02-13T00:38:18.194] [INFO] cheese - inserting 1000 documents. first: Farside City and last: C2H2F4 -[2018-02-13T00:38:18.242] [INFO] cheese - inserting 1000 documents. first: 1969–70 Kentucky Colonels season and last: Antimary State Forest -[2018-02-13T00:38:18.250] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:38:18.255] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:38:18.272] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Florida road transport articles and last: Distinguished Civilian Service Award -[2018-02-13T00:38:18.326] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:18.348] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:38:18.432] [INFO] cheese - inserting 1000 documents. first: Uberaba River (Minas Gerais) and last: Characters of Tenchu -[2018-02-13T00:38:18.512] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:38:18.688] [INFO] cheese - inserting 1000 documents. first: 2002-2003 United States network television schedule and last: Wikipedia:Articles for deletion/YangWei -[2018-02-13T00:38:18.748] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:38:18.779] [INFO] cheese - inserting 1000 documents. first: Kayne Turner and last: File:SAstate2013.gif -[2018-02-13T00:38:18.786] [INFO] cheese - inserting 1000 documents. first: Template:WaterPoloAt2012SummerOlympics and last: The Songbook - Australian Chart Hits -[2018-02-13T00:38:18.805] [INFO] cheese - inserting 1000 documents. first: U.S.N.S. Watertown (T-AGM 6) and last: William Emanuel Huddleston -[2018-02-13T00:38:18.819] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:38:18.830] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:38:18.854] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:38:18.865] [INFO] cheese - inserting 1000 documents. first: 42nd Street - Times Square and last: Yevgeniy Shelyutov -[2018-02-13T00:38:18.911] [INFO] cheese - inserting 1000 documents. first: The Women's Peace Crusade and last: Smith-Martin/Apache Blvd (VMR station) -[2018-02-13T00:38:18.920] [INFO] cheese - inserting 1000 documents. first: GAR Hall and last: Thailand Bible Society -[2018-02-13T00:38:18.925] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:38:18.962] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:38:18.968] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:19.140] [INFO] cheese - inserting 1000 documents. first: Shang of Han and last: Hanang -[2018-02-13T00:38:19.176] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:38:19.245] [INFO] cheese - inserting 1000 documents. first: Black Buck Antelope and last: 138th Street (New York City Subway) -[2018-02-13T00:38:19.245] [INFO] cheese - inserting 1000 documents. first: Yevgeny Shelyutov and last: Category:Bear Mountain State Park -[2018-02-13T00:38:19.299] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:38:19.308] [INFO] cheese - inserting 1000 documents. first: The Watsons Go to Birmingham - 1963 and last: Rossoshansky District -[2018-02-13T00:38:19.313] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:38:19.320] [INFO] cheese - inserting 1000 documents. first: Price-101 Freeway/Apache Blvd (VMR station) and last: Roxee Barcelo -[2018-02-13T00:38:19.383] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:38:19.385] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:38:19.432] [INFO] cheese - inserting 1000 documents. first: Zookeeper (disambiguation) and last: Wikipedia:Articles for deletion/List of locations in the Star Fox series -[2018-02-13T00:38:19.436] [INFO] cheese - inserting 1000 documents. first: File:Witchs of warboys.jpg and last: Dargun -[2018-02-13T00:38:19.492] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:38:19.518] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:38:19.713] [INFO] cheese - inserting 1000 documents. first: Category:Music organizations based in the United States and last: Farid Díaz -[2018-02-13T00:38:19.770] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Tamale pie and last: List of Governors of Languedoc -[2018-02-13T00:38:19.825] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:19.847] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:19.866] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Tupilakosaurus and last: Dani Massunguna -[2018-02-13T00:38:19.905] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean convoys of World War II and last: Template:Editnotices/Page/List of companies of Egypt -[2018-02-13T00:38:19.933] [INFO] cheese - inserting 1000 documents. first: Brisk Iced Lemon Tea and last: Southern kiang -[2018-02-13T00:38:19.970] [INFO] cheese - inserting 1000 documents. first: Peta Jane Buscombe and last: Peter Anthony Inge -[2018-02-13T00:38:19.986] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:38:20.023] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:38:20.073] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:38:20.105] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:38:20.189] [INFO] cheese - inserting 1000 documents. first: Twisted and last: Wallins Creek -[2018-02-13T00:38:20.257] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:38:20.363] [INFO] cheese - inserting 1000 documents. first: Antoski and last: Chiesa di Torricella, Ostiano -[2018-02-13T00:38:20.393] [INFO] cheese - inserting 1000 documents. first: Heinrich Rudolph Wullschlaegel and last: Březsko -[2018-02-13T00:38:20.394] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:38:20.453] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:38:20.491] [INFO] cheese - inserting 1000 documents. first: File:Peranmai poster.jpg and last: Aleksei Kukhtinov -[2018-02-13T00:38:20.523] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/List of companies of the Dominican Republic and last: File:HKFoodforLife.jpg -[2018-02-13T00:38:20.527] [INFO] cheese - inserting 1000 documents. first: File:Anna1951.jpg and last: Wikipedia:Missouri -[2018-02-13T00:38:20.559] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:38:20.575] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:38:20.591] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:38:20.663] [INFO] cheese - inserting 1000 documents. first: Fax Machine and last: 10 000 -[2018-02-13T00:38:20.720] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:38:20.774] [INFO] cheese - inserting 1000 documents. first: Arched marble and last: File:285SqnRAAFcrest.png -[2018-02-13T00:38:20.778] [INFO] cheese - inserting 1000 documents. first: Edward Rowe Snow and last: File:TheRavagesofTime-Vol16.jpg -[2018-02-13T00:38:20.823] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:38:20.844] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:38:20.858] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/survivalops.com and last: William Ickes -[2018-02-13T00:38:20.903] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:38:20.932] [INFO] cheese - inserting 1000 documents. first: Category:1960 in education and last: Founder's Award (disambiguation) -[2018-02-13T00:38:20.974] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:38:20.992] [INFO] cheese - inserting 1000 documents. first: File:Contracted2013poster.jpg and last: Donegal by-election, 1879 -[2018-02-13T00:38:21.052] [INFO] cheese - inserting 1000 documents. first: Template:Foloi and last: John of Athos -[2018-02-13T00:38:21.082] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:38:21.199] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:38:21.294] [INFO] cheese - inserting 1000 documents. first: Urraca of León and Castile and last: Category:Female veterinarians -[2018-02-13T00:38:21.353] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:21.448] [INFO] cheese - inserting 1000 documents. first: Homeland Security Presidential Directive 9 and last: Parkside West Historic District -[2018-02-13T00:38:21.450] [INFO] cheese - inserting 1000 documents. first: Glycemic control and last: MSMS -[2018-02-13T00:38:21.516] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Cloyne and last: Category:Albums by Bahamian artists -[2018-02-13T00:38:21.528] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:38:21.530] [INFO] cheese - inserting 1000 documents. first: File:Starsapphire-all-flash32.jpg and last: Lunar Surface Access Module (Project Constellation) -[2018-02-13T00:38:21.587] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:38:21.623] [INFO] cheese - inserting 1000 documents. first: Iceland–Tunisia relations and last: Boston College-Harvard Basketball Rivalry -[2018-02-13T00:38:21.655] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:38:21.683] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:38:21.686] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:38:21.784] [INFO] cheese - inserting 1000 documents. first: Narasimhavarman II and last: Sergio Renán -[2018-02-13T00:38:21.811] [INFO] cheese - inserting 1000 documents. first: Category:Indian female choreographers and last: Logistic loss -[2018-02-13T00:38:21.824] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:38:21.860] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:21.996] [INFO] cheese - inserting 1000 documents. first: Chris Robertson and last: Thiagaraya Nagar (State Assembly Constituency) -[2018-02-13T00:38:22.044] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:38:22.125] [INFO] cheese - inserting 1000 documents. first: Otto Magnus von Stackelberg (ambassador) and last: Wikipedia:Articles for deletion/José Cabrera Costas -[2018-02-13T00:38:22.137] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2013/49/1 and last: Hungarian Defence Forces -[2018-02-13T00:38:22.143] [INFO] cheese - inserting 1000 documents. first: Geography of Texas and last: Tigre (language) -[2018-02-13T00:38:22.146] [INFO] cheese - inserting 1000 documents. first: Mesivta of clifton and last: Tony Romano (disambiguation) -[2018-02-13T00:38:22.214] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:38:22.217] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:38:22.240] [INFO] cheese - inserting 1000 documents. first: Ethni and last: Air Do - Hokkaido International Airlines -[2018-02-13T00:38:22.262] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:38:22.284] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:38:22.379] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T00:38:22.385] [INFO] cheese - inserting 1000 documents. first: Vašek Pospíšil and last: Iván García Cortina -[2018-02-13T00:38:22.468] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:38:22.480] [INFO] cheese - inserting 1000 documents. first: Ustaz Mohammed Yusuf and last: Category:18th-century scientists -[2018-02-13T00:38:22.553] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:38:22.640] [INFO] cheese - inserting 1000 documents. first: Template:Shipindex and last: Category:2014 manga -[2018-02-13T00:38:22.689] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:38:22.715] [INFO] cheese - inserting 1000 documents. first: Silver Hill (Albuquerque) and last: Category:Sport in Saarbrücken -[2018-02-13T00:38:22.738] [INFO] cheese - inserting 1000 documents. first: Minor characters from Wizard of Oz and last: Hans Benndorf -[2018-02-13T00:38:22.780] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:38:22.807] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:38:22.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tsunami in Sangam and last: Vaccarini -[2018-02-13T00:38:22.851] [INFO] cheese - inserting 1000 documents. first: A.K. Premajam and last: Teddy Yip (disambiguation) -[2018-02-13T00:38:22.930] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:22.927] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:38:23.049] [INFO] cheese - inserting 1000 documents. first: Christopher David Lee and last: 2005 World Championships in Athletics - Men's shot put -[2018-02-13T00:38:23.065] [INFO] cheese - inserting 1000 documents. first: Snakeman and last: Paul H. Nitze School of Advanced International Studies (SAIS) at Johns Hopkins University -[2018-02-13T00:38:23.174] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:38:23.195] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:38:23.272] [INFO] cheese - inserting 1000 documents. first: Morgan Jones (US politician) and last: 2011 Utøya, Norway shooting spree -[2018-02-13T00:38:23.333] [INFO] cheese - inserting 1000 documents. first: Category:Onondaga limestone and last: Lollipop chainsaw -[2018-02-13T00:38:23.349] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:38:23.414] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:38:23.473] [INFO] cheese - inserting 1000 documents. first: George Weiss (baseball player) and last: African Studies Association -[2018-02-13T00:38:23.495] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/log/July 2016 and last: Kissos Kissonerga -[2018-02-13T00:38:23.565] [INFO] cheese - inserting 1000 documents. first: RVX and last: Category:Massachusetts county councillors -[2018-02-13T00:38:23.576] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:38:23.579] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:38:23.627] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:38:23.670] [INFO] cheese - inserting 1000 documents. first: Gabal El Uweinat and last: Karlovo (Banat) -[2018-02-13T00:38:23.761] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:38:23.904] [INFO] cheese - inserting 1000 documents. first: Yacov Ben-Dov and last: List of British films of 2012 -[2018-02-13T00:38:23.912] [INFO] cheese - inserting 1000 documents. first: Binjai and last: Jean Du Sable -[2018-02-13T00:38:23.953] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:38:24.004] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:38:24.092] [INFO] cheese - inserting 1000 documents. first: 1954–55 Hapoel Tel Aviv F.C. season and last: Endre, Gotland -[2018-02-13T00:38:24.095] [INFO] cheese - inserting 1000 documents. first: Swedish house of lords and last: Big Cove, AL -[2018-02-13T00:38:24.110] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Arfa ekkeri and last: Hollywood of Europe -[2018-02-13T00:38:24.140] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:38:24.160] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:38:24.191] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:38:24.207] [INFO] cheese - inserting 1000 documents. first: Institute of Technology and Marine Engineering and last: List of French films of 1973 -[2018-02-13T00:38:24.263] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:38:24.289] [INFO] cheese - inserting 1000 documents. first: Lineyte-Samarnon and last: Wikipedia:WikiProject Spam/LinkReports/ychenhappy.com -[2018-02-13T00:38:24.313] [INFO] cheese - inserting 1000 documents. first: Martin Mere, Burscough and last: Charles F Brehm -[2018-02-13T00:38:24.345] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:38:24.371] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:38:24.499] [INFO] cheese - inserting 1000 documents. first: 1919 Western State Hilltoppers football team and last: Tree pincushion protea -[2018-02-13T00:38:24.523] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2009 July 29 and last: Ali Mirza Safavi -[2018-02-13T00:38:24.549] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:38:24.578] [INFO] cheese - inserting 1000 documents. first: Mercury(II) oxide and last: Chard (disambiguation) -[2018-02-13T00:38:24.583] [INFO] cheese - inserting 1000 documents. first: European Hollywood and last: Kal-i-Keh -[2018-02-13T00:38:24.588] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:38:24.677] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:38:24.707] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:38:24.810] [INFO] cheese - inserting 1000 documents. first: Spectamen and last: Wikipedia:Version 1.0 Editorial Team/Fortifications articles by quality/1 -[2018-02-13T00:38:24.850] [INFO] cheese - inserting 1000 documents. first: Karamanid dynasty and last: File:Comparison of Max Hold Spectrum Analyzer trace and Persistence Trace.png -[2018-02-13T00:38:24.896] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:38:24.911] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:38:24.962] [INFO] cheese - inserting 1000 documents. first: Karolyi and last: Crazy Sue -[2018-02-13T00:38:24.997] [INFO] cheese - inserting 1000 documents. first: Silver mirror test and last: Shuttle sorting -[2018-02-13T00:38:25.052] [INFO] cheese - inserting 1000 documents. first: Domestic level analysis and last: File:Roxana Cannon Arsht.jpg -[2018-02-13T00:38:25.074] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:38:25.097] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:38:25.170] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:25.265] [INFO] cheese - inserting 1000 documents. first: List of socialist countries and last: List of Supreme Court Judges of Victoria -[2018-02-13T00:38:25.332] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:38:25.431] [INFO] cheese - inserting 1000 documents. first: Tha Pandian and last: Stuart Waterton -[2018-02-13T00:38:25.475] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:38:25.489] [INFO] cheese - inserting 1000 documents. first: The Squaw Man (1918 film) and last: Utopía Internacional -[2018-02-13T00:38:25.512] [INFO] cheese - inserting 1000 documents. first: Charles Napoléon Dorion and last: Essque Hotels -[2018-02-13T00:38:25.549] [INFO] cheese - inserting 1000 documents. first: Time Devourer and last: Ronan Rafferty -[2018-02-13T00:38:25.568] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:38:25.597] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:38:25.622] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:38:25.653] [INFO] cheese - inserting 1000 documents. first: Tuning hyperparameters and last: Adrian Morejon -[2018-02-13T00:38:25.708] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:38:25.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/No Right Way and last: Post-game show -[2018-02-13T00:38:25.758] [INFO] cheese - inserting 1000 documents. first: My America (documentary) and last: Winnipeg Light Infantry -[2018-02-13T00:38:25.795] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:38:25.819] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:38:25.903] [INFO] cheese - inserting 1000 documents. first: Category:Unreferenced United States presidential elections articles and last: Tofalau -[2018-02-13T00:38:25.963] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:38:26.047] [INFO] cheese - inserting 1000 documents. first: 1999 FIA GT Homestead 3 Hours and last: Template:Grading scheme/doc/see also -[2018-02-13T00:38:26.048] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 70.176.127.164 and last: Wikipedia:Articles for deletion/Stealth Blimp -[2018-02-13T00:38:26.089] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:38:26.094] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:38:26.137] [INFO] cheese - inserting 1000 documents. first: 50th Transition Training Unit and last: Avoué -[2018-02-13T00:38:26.152] [INFO] cheese - inserting 1000 documents. first: File:Grave 6594470 1037571113.jpg and last: Vazman -[2018-02-13T00:38:26.168] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:38:26.197] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:38:26.209] [INFO] cheese - inserting 1000 documents. first: Template:Infobox military conflict and last: K.A.A. Gent -[2018-02-13T00:38:26.308] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:38:26.340] [INFO] cheese - inserting 1000 documents. first: TEVA Pharmaceuticals USA, Inc. and last: Beer in Serbia and Montenegro -[2018-02-13T00:38:26.388] [INFO] cheese - inserting 1000 documents. first: Cotus and last: Category:Kolkata portal -[2018-02-13T00:38:26.418] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:38:26.428] [INFO] cheese - inserting 1000 documents. first: 52d Transport Wing and last: Category:Cruisers of the Republic of China Navy -[2018-02-13T00:38:26.450] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:38:26.462] [INFO] cheese - inserting 1000 documents. first: Grand Avenue, Queens and last: Folkestone & Shepway F.C. -[2018-02-13T00:38:26.495] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:38:26.555] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:38:26.780] [INFO] cheese - inserting 1000 documents. first: Johann Stegner and last: St John Branch -[2018-02-13T00:38:26.822] [INFO] cheese - inserting 1000 documents. first: Category:Multinational companies headquartered in Israel and last: Cox Cup -[2018-02-13T00:38:26.826] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:26.872] [INFO] cheese - inserting 1000 documents. first: Wongaksa (Gigye, Pohang) and last: Category:Syrian Air Force -[2018-02-13T00:38:26.876] [INFO] cheese - inserting 1000 documents. first: Paul Cameron and last: I-610 (TX) -[2018-02-13T00:38:26.906] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:38:26.965] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:38:27.030] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:38:27.099] [INFO] cheese - inserting 1000 documents. first: James Yorke (bishop) and last: Êtienne Hajdu -[2018-02-13T00:38:27.154] [INFO] cheese - inserting 1000 documents. first: File:Asterixcover-27.jpg and last: BMC Software Inc -[2018-02-13T00:38:27.195] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:38:27.216] [INFO] cheese - inserting 1000 documents. first: Alliant Technosystems and last: Category:Law firms established in 1871 -[2018-02-13T00:38:27.249] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:38:27.305] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:38:27.439] [INFO] cheese - inserting 1000 documents. first: Henk Kamerbeek and last: Victor Matheus Da Silva -[2018-02-13T00:38:27.507] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:38:27.583] [INFO] cheese - inserting 1000 documents. first: Kevin Lankinen and last: Ailsa McKay Lecture -[2018-02-13T00:38:27.648] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:38:27.659] [INFO] cheese - inserting 1000 documents. first: Category:Frazioni of the Province of Campobasso and last: George Stracey Smith -[2018-02-13T00:38:27.687] [INFO] cheese - inserting 1000 documents. first: Etienne Hajdu and last: Abdallah Zrika -[2018-02-13T00:38:27.717] [INFO] cheese - inserting 1000 documents. first: Dher Umid Ali Shah and last: Cd4 t cell -[2018-02-13T00:38:27.721] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:38:27.730] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Tax Club (2nd nomination) and last: Template:User zb5108 -[2018-02-13T00:38:27.732] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:38:27.754] [INFO] cheese - inserting 1000 documents. first: I-474 and last: College of Applied Science, Vadakkencherry -[2018-02-13T00:38:27.766] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:38:27.799] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:38:27.820] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:38:27.840] [INFO] cheese - inserting 1000 documents. first: Karlslust dance hall fire and last: S.A.V. Fakir -[2018-02-13T00:38:27.889] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:38:27.982] [INFO] cheese - inserting 1000 documents. first: Rudy Altig and last: Category:1970s meteorology -[2018-02-13T00:38:28.038] [INFO] cheese - inserting 1000 documents. first: Climate of south west england and last: All Riders vs. Great Shocker -[2018-02-13T00:38:28.041] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:38:28.081] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:38:28.113] [INFO] cheese - inserting 1000 documents. first: Dressing room (theater) and last: Template:Charlotte sports venues -[2018-02-13T00:38:28.115] [INFO] cheese - inserting 1000 documents. first: Soon (Gershwin) and last: Heavy Bombardment Period -[2018-02-13T00:38:28.155] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:38:28.157] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:38:28.175] [INFO] cheese - inserting 1000 documents. first: Category:Canadian collage artists and last: Template:Edition needed/doc -[2018-02-13T00:38:28.227] [INFO] cheese - batch complete in: 0.338 secs -[2018-02-13T00:38:28.287] [INFO] cheese - inserting 1000 documents. first: Rush Hour (film) and last: SS Athenic -[2018-02-13T00:38:28.319] [INFO] cheese - inserting 1000 documents. first: Category:Russian football managers and last: Moon Magic -[2018-02-13T00:38:28.334] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:38:28.367] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:38:28.375] [INFO] cheese - inserting 1000 documents. first: Portal:Twilight/Related portals and last: Špičky -[2018-02-13T00:38:28.439] [INFO] cheese - inserting 1000 documents. first: Danielowice and last: Christopher's Christmas Mission -[2018-02-13T00:38:28.458] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:38:28.478] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:38:28.495] [INFO] cheese - inserting 1000 documents. first: Category:1960s meteorology and last: Russell P. Brown -[2018-02-13T00:38:28.502] [INFO] cheese - inserting 1000 documents. first: Eleutherodactylus simoterus and last: Alex William Costa e Silva -[2018-02-13T00:38:28.558] [INFO] cheese - inserting 1000 documents. first: Tesco Clubcard and last: Collie Entragian -[2018-02-13T00:38:28.575] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:38:28.616] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:28.685] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:38:28.917] [INFO] cheese - inserting 1000 documents. first: Želatovice and last: Kamuthi taluk -[2018-02-13T00:38:28.984] [INFO] cheese - inserting 1000 documents. first: Mitrophrys fabricata and last: Ruff Sqwad -[2018-02-13T00:38:28.993] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:38:29.053] [INFO] cheese - inserting 1000 documents. first: Desítkový biliár and last: Aurelia Eusebia -[2018-02-13T00:38:29.107] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:38:29.117] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:38:29.132] [INFO] cheese - inserting 1000 documents. first: Co-operative General Association of Free Will Baptists and last: The Exorcism of Molly Hartley -[2018-02-13T00:38:29.222] [INFO] cheese - inserting 1000 documents. first: Sophoraceae and last: Gaveshan -[2018-02-13T00:38:29.236] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:38:29.301] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:38:29.329] [INFO] cheese - inserting 1000 documents. first: Numberology and last: African-Americans in the Civil War -[2018-02-13T00:38:29.356] [INFO] cheese - inserting 1000 documents. first: Stonybrook-Wilshire and last: Antedated cheque -[2018-02-13T00:38:29.412] [INFO] cheese - inserting 1000 documents. first: Shotokan-ryū and last: WRLE -[2018-02-13T00:38:29.415] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T00:38:29.470] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:38:29.545] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:38:29.712] [INFO] cheese - inserting 1000 documents. first: Khamesan and last: Pritampura -[2018-02-13T00:38:29.731] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Mschuhe3 and last: Category:United States Secret Service agents -[2018-02-13T00:38:29.758] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:38:29.786] [INFO] cheese - inserting 1000 documents. first: The Big 5 and last: Prince Xun (恂) -[2018-02-13T00:38:29.787] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:38:29.830] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:38:29.937] [INFO] cheese - inserting 1000 documents. first: Double-mark and last: Category:Icelandic Roman Catholic priests -[2018-02-13T00:38:29.938] [INFO] cheese - inserting 1000 documents. first: Nelson Cereceda and last: Template:Bethany Dillon -[2018-02-13T00:38:29.961] [INFO] cheese - inserting 1000 documents. first: MRPharmS and last: Bođani Monastery -[2018-02-13T00:38:29.978] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:38:30.004] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T00:38:30.024] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:38:30.161] [INFO] cheese - inserting 1000 documents. first: Eunomia latenigra and last: Austrian Crescent (potato) -[2018-02-13T00:38:30.209] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:38:30.270] [INFO] cheese - inserting 1000 documents. first: Jean Binta Breeze and last: Northern Westchester -[2018-02-13T00:38:30.293] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Talk:WTFPL/Archive 4 and last: Wikipedia:Articles for deletion/Michael J. Yaremchuk (2nd nomination) -[2018-02-13T00:38:30.309] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada-related articles by quality/23 and last: Abner Cotto -[2018-02-13T00:38:30.332] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:38:30.368] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:38:30.405] [INFO] cheese - inserting 1000 documents. first: Elias Karam and last: Buell XB12R -[2018-02-13T00:38:30.420] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:38:30.467] [INFO] cheese - inserting 1000 documents. first: Ranger SVG-770C-B1 and last: Meat Market (disambiguation) -[2018-02-13T00:38:30.485] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:38:30.500] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:38:30.538] [INFO] cheese - inserting 1000 documents. first: St. Peter Igneus and last: SM U-55 -[2018-02-13T00:38:30.643] [INFO] cheese - inserting 1000 documents. first: Sandra Gardebring Ogren and last: 1955 Clemson Tigers football team -[2018-02-13T00:38:30.667] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:38:30.740] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:38:30.868] [INFO] cheese - inserting 1000 documents. first: Chirpyness and last: Jenny Wimperis -[2018-02-13T00:38:30.901] [INFO] cheese - inserting 1000 documents. first: Nijmar and last: Wikipedia:Drafts -[2018-02-13T00:38:30.931] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:38:30.951] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:38:31.013] [INFO] cheese - inserting 1000 documents. first: Category:2003 in Nigeria and last: Narcissus × medioluteus -[2018-02-13T00:38:31.024] [INFO] cheese - inserting 1000 documents. first: File:Ares Logo.png and last: Luka koper -[2018-02-13T00:38:31.035] [INFO] cheese - inserting 1000 documents. first: Francisco Pacheco and last: Category:Scientology and law -[2018-02-13T00:38:31.066] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:38:31.129] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:38:31.135] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:38:31.203] [INFO] cheese - inserting 1000 documents. first: Compadres and last: Human artificial chromosome -[2018-02-13T00:38:31.243] [INFO] cheese - inserting 1000 documents. first: File:Sick Cycle Carousel Music Video.png and last: Cityflo 650 CBTC -[2018-02-13T00:38:31.267] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:38:31.334] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:38:31.418] [INFO] cheese - inserting 1000 documents. first: Ömerli, Şanlıurfa and last: Ingleside (Catonsville, Maryland) -[2018-02-13T00:38:31.421] [INFO] cheese - inserting 1000 documents. first: Category:Polar Satellite Launch Vehicle and last: Pokemon Go Plus -[2018-02-13T00:38:31.458] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:38:31.480] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:31.500] [INFO] cheese - inserting 1000 documents. first: Camp Eden and last: Hieracium onegense -[2018-02-13T00:38:31.507] [INFO] cheese - inserting 1000 documents. first: Flora Penne and last: 1984 Baylor Bears football team -[2018-02-13T00:38:31.548] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:38:31.551] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:38:31.669] [INFO] cheese - inserting 1000 documents. first: Unicode Spacing Modifier Letters and last: Wikipedia:Articles for deletion/Cherie (actress) -[2018-02-13T00:38:31.677] [INFO] cheese - inserting 1000 documents. first: Russian vine and last: Monteiro's Storm-petrel -[2018-02-13T00:38:31.715] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:38:31.718] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:38:31.736] [INFO] cheese - inserting 1000 documents. first: Interstate 395 (District of Columbia) and last: Ahab the Arab -[2018-02-13T00:38:31.798] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:38:31.802] [INFO] cheese - inserting 1000 documents. first: Nikita Glushkov and last: Wojdan -[2018-02-13T00:38:31.822] [INFO] cheese - inserting 1000 documents. first: Arthur Cecil Hynes and last: Category:Rail infrastructure in Bulgaria -[2018-02-13T00:38:31.851] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:38:31.875] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:38:31.925] [INFO] cheese - inserting 1000 documents. first: File:The Miracles City of Angels.jpg and last: QQ games -[2018-02-13T00:38:31.931] [INFO] cheese - inserting 1000 documents. first: Kadlub and last: The Mpowerment Project -[2018-02-13T00:38:32.001] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:38:32.067] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:38:32.163] [INFO] cheese - inserting 1000 documents. first: Swinhoe's Storm-petrel and last: Adımı Kalbine Yaz -[2018-02-13T00:38:32.244] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:32.299] [INFO] cheese - inserting 1000 documents. first: 2006 oklahoma sooners football team and last: Buffalo City Stadium -[2018-02-13T00:38:32.363] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:38:32.456] [INFO] cheese - inserting 1000 documents. first: Woydan and last: Heinrich Gottron -[2018-02-13T00:38:32.469] [INFO] cheese - inserting 1000 documents. first: Oceania Women's Sevens and last: Juan Jacinto (Musician) -[2018-02-13T00:38:32.474] [INFO] cheese - inserting 1000 documents. first: TKO Software and last: Michael Malkior -[2018-02-13T00:38:32.510] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:38:32.522] [INFO] cheese - inserting 1000 documents. first: Lichtenberg, Austria and last: Category:LQ06 quadrangle -[2018-02-13T00:38:32.522] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:38:32.534] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:38:32.567] [INFO] cheese - inserting 1000 documents. first: QQ game and last: Governors of Malta -[2018-02-13T00:38:32.606] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:38:32.638] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:38:32.656] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2011 Summer Universiade – Women's road race and last: Category:1993 in New York (state) -[2018-02-13T00:38:32.715] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:38:32.919] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/IMac4ME and last: Waldrep Dairy -[2018-02-13T00:38:32.951] [INFO] cheese - inserting 1000 documents. first: Teresa Almeida and last: Karolina Semeniuk-Olchawa -[2018-02-13T00:38:32.957] [INFO] cheese - inserting 1000 documents. first: Dhingana City and last: File:Ubisoft Toronto Logo.jpg -[2018-02-13T00:38:32.992] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:33.013] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:38:33.016] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:38:33.091] [INFO] cheese - inserting 1000 documents. first: Spermatazoon and last: The Garey -[2018-02-13T00:38:33.164] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:33.170] [INFO] cheese - inserting 1000 documents. first: Yujiazui and last: Supplementary benefit -[2018-02-13T00:38:33.172] [INFO] cheese - inserting 1000 documents. first: Category:Wards of Sapporo and last: Radio Erevan -[2018-02-13T00:38:33.239] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:38:33.255] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:38:33.400] [INFO] cheese - inserting 1000 documents. first: Gannes, Harry. and last: Category:Italian video game designers -[2018-02-13T00:38:33.437] [INFO] cheese - inserting 1000 documents. first: Portal:College football/College football news and last: Charles Codman -[2018-02-13T00:38:33.443] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:38:33.482] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:38:33.537] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Die Singphoniker and last: Recreational use of drugs -[2018-02-13T00:38:33.582] [INFO] cheese - inserting 1000 documents. first: New South Wales state rugby league team and last: Edwin G. Pulleyblank -[2018-02-13T00:38:33.640] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:38:33.689] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:38:33.826] [INFO] cheese - inserting 1000 documents. first: Cptsd and last: Newcastle RLFC -[2018-02-13T00:38:33.895] [INFO] cheese - inserting 1000 documents. first: D. W. Griffith's Abraham Lincoln and last: Emil Frey-Kloss -[2018-02-13T00:38:33.951] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T00:38:33.997] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:38:34.018] [INFO] cheese - inserting 1000 documents. first: Kallang River and last: List of Will & Grace episodes -[2018-02-13T00:38:34.034] [INFO] cheese - inserting 1000 documents. first: Moscow Metro Line 12 and last: Category:2016 Czech television series debuts -[2018-02-13T00:38:34.083] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:38:34.139] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:38:34.154] [INFO] cheese - inserting 1000 documents. first: Celilo Converter Statio and last: Lenstra-Lenstra-Lovász lattice basis reduction algorithm -[2018-02-13T00:38:34.184] [INFO] cheese - inserting 1000 documents. first: Moroccan Parliament and last: Wanakah, New York -[2018-02-13T00:38:34.232] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:38:34.236] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:38:34.246] [INFO] cheese - inserting 1000 documents. first: Emile Frey and last: The battle of electricity -[2018-02-13T00:38:34.283] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:38:34.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/December 2013 - January 2014 Backlog Elimination Drive/Numbermaniac and last: Within a Song -[2018-02-13T00:38:34.425] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:38:34.499] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Wyoming, 2020 and last: Enniscorthy Greyhound Stadium -[2018-02-13T00:38:34.554] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:38:34.572] [INFO] cheese - inserting 1000 documents. first: The battle of epping forest and last: KIBB-FM -[2018-02-13T00:38:34.601] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:38:34.695] [INFO] cheese - inserting 1000 documents. first: Category:2009 poems and last: File:41 (1927 film).jpg -[2018-02-13T00:38:34.727] [INFO] cheese - inserting 1000 documents. first: Pepino (fruit) and last: Cotuit Hall -[2018-02-13T00:38:34.766] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:38:34.818] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:38:34.852] [INFO] cheese - inserting 1000 documents. first: Haute Marne and last: Lisa Left Eye Lopes -[2018-02-13T00:38:34.856] [INFO] cheese - inserting 1000 documents. first: Transgender Awareness Week and last: Glyphipteryx variella -[2018-02-13T00:38:34.911] [INFO] cheese - inserting 1000 documents. first: Kim:kyungho 1997 (album) and last: Template:Montenegro in Eurovision -[2018-02-13T00:38:34.912] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:38:34.914] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:38:34.936] [INFO] cheese - inserting 1000 documents. first: Iowa gubernatorial election, 2018 and last: Inder puri -[2018-02-13T00:38:34.996] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:38:34.998] [INFO] cheese - inserting 1000 documents. first: Art Museum of Georgia and last: S.T.R.I.K.E -[2018-02-13T00:38:35.004] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:38:35.083] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:38:35.187] [INFO] cheese - inserting 1000 documents. first: Perspecta (journal) and last: Bundle bone -[2018-02-13T00:38:35.227] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:38:35.317] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tomomi Sunaba and last: ŠD NK Križevci -[2018-02-13T00:38:35.349] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:38:35.401] [INFO] cheese - inserting 1000 documents. first: Back to Square-1 Puzzle and last: Faliro Bay -[2018-02-13T00:38:35.403] [INFO] cheese - inserting 1000 documents. first: Uniform dual and last: Fazlabad, Kapurthala -[2018-02-13T00:38:35.438] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:38:35.522] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 124001–125000 and last: List of hospitals in Winnipeg -[2018-02-13T00:38:35.549] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:38:35.551] [INFO] cheese - inserting 1000 documents. first: Paintball bazooka and last: Rudolf Sosna -[2018-02-13T00:38:35.620] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:38:35.635] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:38:35.716] [INFO] cheese - inserting 1000 documents. first: Definite Darkness and last: File:Oscar Wilde FilmPoster.jpeg -[2018-02-13T00:38:35.720] [INFO] cheese - inserting 1000 documents. first: Category:1940 in science and last: Fred Hill (basketball coach) -[2018-02-13T00:38:35.776] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:35.824] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:38:35.878] [INFO] cheese - inserting 1000 documents. first: Kalateh (disambiguation) and last: Avalon Online -[2018-02-13T00:38:35.932] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:36.110] [INFO] cheese - inserting 1000 documents. first: B.J. Wilson and last: 2016-17 Montana Grizzlies men's basketball team -[2018-02-13T00:38:36.150] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:38:36.178] [INFO] cheese - inserting 1000 documents. first: Gunter Wüsthoff and last: 1972 Republican presidential primary -[2018-02-13T00:38:36.223] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:38:36.230] [INFO] cheese - inserting 1000 documents. first: Map of the Human Heart and last: Good to Great -[2018-02-13T00:38:36.259] [INFO] cheese - inserting 1000 documents. first: Rugby union in Basutoland and last: Waugoshance Point -[2018-02-13T00:38:36.265] [INFO] cheese - inserting 1000 documents. first: 17th millennium and last: Metrobus (St.John's, Newfoundland) -[2018-02-13T00:38:36.299] [INFO] cheese - inserting 1000 documents. first: Rick Kozak and last: File:Robert-Courtneidge.jpg -[2018-02-13T00:38:36.310] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:38:36.315] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Totaldramaisland33 and last: Wikipedia:Articles for deletion/Media Go -[2018-02-13T00:38:36.317] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:38:36.326] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:38:36.368] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:38:36.402] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:38:36.649] [INFO] cheese - inserting 1000 documents. first: Nice lorry attack, July 2016 and last: File:Wemall logo 2016.png -[2018-02-13T00:38:36.661] [INFO] cheese - inserting 1000 documents. first: Category:1987 in figure skating and last: Universidad de Alicante -[2018-02-13T00:38:36.699] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:36.715] [INFO] cheese - inserting 1000 documents. first: List of RHPs in Oswego and last: Jennifer Page (Millennium Dome) -[2018-02-13T00:38:36.713] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:38:36.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Puja Agarwal and last: Just as I Am (Brantley Gilbert album), -[2018-02-13T00:38:36.795] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:38:36.846] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:38:36.874] [INFO] cheese - inserting 1000 documents. first: Alfredo Poveda Burbano and last: Jesse Knight House -[2018-02-13T00:38:36.907] [INFO] cheese - inserting 1000 documents. first: English Spinach and last: Wikipedia:WikiProject Australia/Peer review/TISM -[2018-02-13T00:38:36.944] [INFO] cheese - inserting 1000 documents. first: Teri Weigel and last: Craig Russell -[2018-02-13T00:38:36.958] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:38:36.993] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:38:37.058] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:38:37.199] [INFO] cheese - inserting 1000 documents. first: William Todd Tiahrt and last: Category:Santa Rosa de Copán -[2018-02-13T00:38:37.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sp-studio.moy.su and last: Category:Historians of the Caucasus -[2018-02-13T00:38:37.327] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:38:37.426] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:38:37.517] [INFO] cheese - inserting 1000 documents. first: Degaga and last: File:Castlevania - Circle of the Moon - Gameplay.png -[2018-02-13T00:38:37.536] [INFO] cheese - inserting 1000 documents. first: Category:People from Savona and last: No homo -[2018-02-13T00:38:37.580] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:38:37.640] [INFO] cheese - inserting 1000 documents. first: Marcin Krowicki and last: Category:Populated places in Andrew County, Missouri -[2018-02-13T00:38:37.645] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:38:37.710] [INFO] cheese - inserting 1000 documents. first: Cucumis myriocarpus and last: Parks in Windsor, Ontario -[2018-02-13T00:38:37.728] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:38:37.795] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:38:37.845] [INFO] cheese - inserting 1000 documents. first: Category:Proposals in Asia and last: Category:Shipwrecks on the National Register of Historic Places in Texas -[2018-02-13T00:38:37.914] [INFO] cheese - inserting 1000 documents. first: Eugene skinner and last: Kosmos (publisher) -[2018-02-13T00:38:37.939] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:38:37.956] [INFO] cheese - inserting 1000 documents. first: File:Skyline from barton springs ALEXIS CALCOTE.JPG and last: Category:Wikipedia sockpuppets of Ineedanewaccount -[2018-02-13T00:38:37.987] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:38:38.002] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:38:38.102] [INFO] cheese - inserting 1000 documents. first: Template:Sarvabad County and last: Category:Participants in Argentine reality television series -[2018-02-13T00:38:38.155] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:38:38.194] [INFO] cheese - inserting 1000 documents. first: Better Than I Used to Be and last: 1952 Rugby Union European Cup -[2018-02-13T00:38:38.243] [INFO] cheese - inserting 1000 documents. first: Leila Pahlavi and last: Category:1880 animal deaths -[2018-02-13T00:38:38.247] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:38:38.281] [INFO] cheese - inserting 1000 documents. first: Dengakuman and last: The Great Bear (play) -[2018-02-13T00:38:38.307] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:38:38.341] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:38:38.355] [INFO] cheese - inserting 1000 documents. first: Belardi and last: ABA Light-Middleweight Champions -[2018-02-13T00:38:38.418] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:38:38.491] [INFO] cheese - inserting 1000 documents. first: W.G. Aston and last: Lucy Decker Seeley -[2018-02-13T00:38:38.561] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:38:38.589] [INFO] cheese - inserting 1000 documents. first: Stylosanthes biflora and last: Category:Wikipedians in the IEEE Robotics and Automation Society -[2018-02-13T00:38:38.629] [INFO] cheese - inserting 1000 documents. first: Simple Machine and last: Chava -[2018-02-13T00:38:38.633] [INFO] cheese - inserting 1000 documents. first: Harding University Graduate School of Religion and last: Kalancho -[2018-02-13T00:38:38.653] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:38:38.696] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:38:38.712] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:38:38.727] [INFO] cheese - inserting 1000 documents. first: Double skin façades and last: Template:W&J -[2018-02-13T00:38:38.795] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:38:38.850] [INFO] cheese - inserting 1000 documents. first: Category:Flags of Italy and last: Waajeed -[2018-02-13T00:38:38.883] [INFO] cheese - inserting 1000 documents. first: Nepal and Newar Community and last: Osemotor -[2018-02-13T00:38:38.904] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:38:38.936] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:38:39.296] [INFO] cheese - inserting 1000 documents. first: 1992–93 Alpenliga season and last: Kolestan Mahmoud -[2018-02-13T00:38:39.336] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:38:39.459] [INFO] cheese - inserting 1000 documents. first: Acadiana Regional Airport and last: Wikipedia:Version 1.0 Editorial Team/Mammal articles by quality/16 -[2018-02-13T00:38:39.534] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2010–11 AFC Wimbledon season and last: Olenecamptus strigosus strigosus -[2018-02-13T00:38:39.547] [INFO] cheese - inserting 1000 documents. first: Kiev City Hall and last: Portal:Biography/Selected biography arts/1 -[2018-02-13T00:38:39.565] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:38:39.609] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T00:38:39.616] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:38:39.711] [INFO] cheese - inserting 1000 documents. first: Template:Authoronlinesource2004 and last: Kumahachi -[2018-02-13T00:38:39.725] [INFO] cheese - inserting 1000 documents. first: Emu (beer) and last: Megan Mullally Show -[2018-02-13T00:38:39.783] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T00:38:39.817] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:38:39.908] [INFO] cheese - inserting 1000 documents. first: Kolestan Mahmood and last: Category:Protected areas of Sabine County, Texas -[2018-02-13T00:38:39.954] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:38:40.189] [INFO] cheese - inserting 1000 documents. first: Izusan Jinja and last: Jelle de bock -[2018-02-13T00:38:40.381] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:38:40.388] [INFO] cheese - inserting 1000 documents. first: Olenecamptus lineatus and last: Draft:Charles Harris -[2018-02-13T00:38:40.547] [INFO] cheese - inserting 1000 documents. first: Owletts and last: Wikipedia:WikiProject Computational Biology/ISCB competition announcement 2013/Notifications -[2018-02-13T00:38:40.558] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:38:40.864] [INFO] cheese - inserting 1000 documents. first: Cake walk and last: Dinwitty, VA -[2018-02-13T00:38:41.291] [INFO] cheese - batch complete in: 1.671 secs -[2018-02-13T00:38:41.360] [INFO] cheese - inserting 1000 documents. first: 7 Deadly Wonders and last: Rothenfels -[2018-02-13T00:38:41.613] [INFO] cheese - inserting 1000 documents. first: 2006–07 Temple Owls men's basketball team and last: Andrew Koenig (actor) -[2018-02-13T00:38:41.663] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Denbigh Town and last: Jundiuvira River -[2018-02-13T00:38:41.699] [INFO] cheese - batch complete in: 1.882 secs -[2018-02-13T00:38:41.691] [INFO] cheese - batch complete in: 1.907 secs -[2018-02-13T00:38:41.769] [INFO] cheese - inserting 1000 documents. first: Godfrey II, Count of Esch and last: Plinio Antolini -[2018-02-13T00:38:41.791] [INFO] cheese - batch complete in: 1.837 secs -[2018-02-13T00:38:41.850] [INFO] cheese - batch complete in: 1.469 secs -[2018-02-13T00:38:41.854] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T00:38:42.075] [INFO] cheese - inserting 1000 documents. first: PEK Airport and last: Cardy formula -[2018-02-13T00:38:42.236] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T00:38:42.332] [INFO] cheese - inserting 1000 documents. first: Cursillo Movement and last: Developmental science -[2018-02-13T00:38:42.349] [INFO] cheese - inserting 1000 documents. first: Rolf Apitzsch and last: Template:OTRS identity -[2018-02-13T00:38:42.365] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:38:42.403] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:38:42.493] [INFO] cheese - inserting 1000 documents. first: Ralph Ginzberg and last: Roman Catholic Archdiocese of Antequera, Oaxaca -[2018-02-13T00:38:42.558] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/JasenleeSandbox and last: FleetCenter -[2018-02-13T00:38:42.576] [INFO] cheese - inserting 1000 documents. first: Juquiá River and last: Antipope Innocent -[2018-02-13T00:38:42.601] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:38:42.753] [INFO] cheese - inserting 1000 documents. first: Anastasios Sidiropoulos and last: Surgical sealant film -[2018-02-13T00:38:42.763] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:38:42.768] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T00:38:42.855] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:38:42.946] [INFO] cheese - inserting 1000 documents. first: Satu Lung and last: 2001–02 EEHL season -[2018-02-13T00:38:42.977] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:38:42.983] [INFO] cheese - inserting 1000 documents. first: Template:Ritesh Sidhwani and last: Template:Five pillars box -[2018-02-13T00:38:43.077] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:38:43.377] [INFO] cheese - inserting 1000 documents. first: MC (hip hop) and last: Template:Municipalities of the district of Kreuzlingen -[2018-02-13T00:38:43.392] [INFO] cheese - inserting 1000 documents. first: Scottish Conservative and Unionist Students and last: Rock N' Roll Climber -[2018-02-13T00:38:43.424] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:38:43.435] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:38:43.454] [INFO] cheese - inserting 1000 documents. first: Florence Campo di Marte and last: Heart & Soul (Bad Boys Blue album) -[2018-02-13T00:38:43.592] [INFO] cheese - inserting 1000 documents. first: Southeastern xanthurus rat and last: TB 191 -[2018-02-13T00:38:43.596] [INFO] cheese - inserting 1000 documents. first: List of people from Ottawa and last: Desmonds -[2018-02-13T00:38:43.597] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:38:43.697] [INFO] cheese - inserting 1000 documents. first: Category:Electrical engineering organizations and last: Category:Buildings and structures in Narragansett, Rhode Island -[2018-02-13T00:38:43.700] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:38:43.706] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:38:43.806] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:38:43.955] [INFO] cheese - inserting 1000 documents. first: Al Kawr and last: Silentiarius -[2018-02-13T00:38:43.994] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:38:44.039] [INFO] cheese - inserting 1000 documents. first: Community of St. Francis and last: Four Pennies -[2018-02-13T00:38:44.046] [INFO] cheese - inserting 1000 documents. first: Template:Infobox South African subplace 2011/cleanup and last: Wikipedia:Articles for deletion/Felt ball rug -[2018-02-13T00:38:44.054] [INFO] cheese - inserting 1000 documents. first: Portal:Bahamas/box-footer and last: Al Wyg -[2018-02-13T00:38:44.095] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:38:44.100] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:38:44.132] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:38:44.272] [INFO] cheese - inserting 1000 documents. first: Russian doping and last: Mausolea (plant) -[2018-02-13T00:38:44.332] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:38:44.369] [INFO] cheese - inserting 1000 documents. first: Qusays and last: A-Wearying for You -[2018-02-13T00:38:44.401] [INFO] cheese - inserting 1000 documents. first: Yuriy Kravchenko and last: Dova di Predappio -[2018-02-13T00:38:44.612] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:38:44.727] [INFO] cheese - inserting 1000 documents. first: ...That's The Way it Is and last: File:All My Life Billy Joel.jpg -[2018-02-13T00:38:44.748] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T00:38:44.912] [INFO] cheese - inserting 1000 documents. first: Herath and last: Real time world war II -[2018-02-13T00:38:44.954] [INFO] cheese - inserting 1000 documents. first: Universitas Kristen Petra and last: C.F. Jayne -[2018-02-13T00:38:45.139] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:38:45.176] [INFO] cheese - inserting 1000 documents. first: First flight and last: Jack Edwards (footballer, born 1929) -[2018-02-13T00:38:45.279] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T00:38:45.367] [INFO] cheese - batch complete in: 6.806 secs -[2018-02-13T00:38:45.472] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T00:38:45.664] [INFO] cheese - inserting 1000 documents. first: Hwætberht and last: Church of the Annunciation of Our Lady of the Newarke, Leicester -[2018-02-13T00:38:45.852] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T00:38:45.864] [INFO] cheese - inserting 1000 documents. first: CCs2O3 and last: Weldon Memorial Prize -[2018-02-13T00:38:45.981] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:38:46.198] [INFO] cheese - inserting 1000 documents. first: C. F. Jayne and last: Wikipedia:WikiProject Spam/LinkReports/islamic-treatment.blogspot.com -[2018-02-13T00:38:46.321] [INFO] cheese - inserting 1000 documents. first: Category:698 in Asia and last: FAFSA position -[2018-02-13T00:38:46.414] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T00:38:46.506] [INFO] cheese - inserting 1000 documents. first: 2000 European Athletics Indoor Championships and last: Jacek Sieka -[2018-02-13T00:38:46.603] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T00:38:46.609] [INFO] cheese - batch complete in: 1.861 secs -[2018-02-13T00:38:46.734] [INFO] cheese - inserting 1000 documents. first: File:School of Rock poster.jpg and last: 2007-08 FA Cup qualifying rounds -[2018-02-13T00:38:46.811] [INFO] cheese - inserting 1000 documents. first: Toshihisa Izawa and last: National M. K. Čiurlionis School of Art -[2018-02-13T00:38:46.915] [INFO] cheese - batch complete in: 1.443 secs -[2018-02-13T00:38:46.956] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T00:38:47.020] [INFO] cheese - inserting 1000 documents. first: Intellij idea and last: Wikipedia:WikiProject Spam/LinkReports/kivc.com -[2018-02-13T00:38:47.094] [INFO] cheese - inserting 1000 documents. first: Alexey Andreevich and last: Ar Rukayb -[2018-02-13T00:38:47.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nick Seddon and last: Carlos Navarrete Ruiz -[2018-02-13T00:38:47.173] [INFO] cheese - batch complete in: 1.806 secs -[2018-02-13T00:38:47.285] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T00:38:47.309] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:38:47.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/islamic-treatment.blogspot.com and last: String-figure -[2018-02-13T00:38:47.641] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T00:38:47.765] [INFO] cheese - inserting 1000 documents. first: Category:Locus Award for Best Short Story winning works and last: Francisco Gatinho -[2018-02-13T00:38:47.779] [INFO] cheese - inserting 1000 documents. first: Corazón salvaje (novel) and last: Matt Foley -[2018-02-13T00:38:47.884] [INFO] cheese - inserting 1000 documents. first: Generals' Putsch and last: Category:Neosittidae -[2018-02-13T00:38:47.961] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T00:38:47.970] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:38:48.074] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:38:48.148] [INFO] cheese - inserting 1000 documents. first: Evange and last: Buchelberg -[2018-02-13T00:38:48.183] [INFO] cheese - inserting 1000 documents. first: PRDX6 and last: La hija de dios -[2018-02-13T00:38:48.303] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T00:38:48.301] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T00:38:48.345] [INFO] cheese - inserting 1000 documents. first: Ard Ar Raydah and last: Man v. Food (season 2) -[2018-02-13T00:38:48.462] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T00:38:48.651] [INFO] cheese - inserting 1000 documents. first: Jure Balažič and last: List of songs produced by Ester Dean -[2018-02-13T00:38:48.690] [INFO] cheese - inserting 1000 documents. first: La hora de la papa and last: I-Shou University -[2018-02-13T00:38:48.732] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:38:48.736] [INFO] cheese - inserting 1000 documents. first: Millennium (series) and last: 1963–64 FA Cup Qualifying Rounds -[2018-02-13T00:38:48.748] [INFO] cheese - inserting 1000 documents. first: Dean Holden and last: Timeline of the 2006 Lebanon War -[2018-02-13T00:38:48.775] [INFO] cheese - batch complete in: 1.134 secs -[2018-02-13T00:38:48.871] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:38:48.892] [INFO] cheese - inserting 1000 documents. first: Jumbo Pictures and last: Adrar province, Algeria -[2018-02-13T00:38:48.914] [INFO] cheese - inserting 1000 documents. first: Reyhan Seker and last: India–Iceland relations -[2018-02-13T00:38:48.914] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T00:38:49.025] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:38:49.081] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:38:49.142] [INFO] cheese - inserting 1000 documents. first: Anatoliy Shelest and last: Miss Peru 2009 -[2018-02-13T00:38:49.230] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:38:49.311] [INFO] cheese - inserting 1000 documents. first: Gi Hyeong-do and last: Hoboken Cemetery, North Bergen -[2018-02-13T00:38:49.453] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:38:49.566] [INFO] cheese - inserting 1000 documents. first: NCR3 and last: HSD17B2 -[2018-02-13T00:38:49.594] [INFO] cheese - inserting 1000 documents. first: 1962–63 FA Cup Qualifying Rounds and last: United Nations Security Council Resolution 2098 -[2018-02-13T00:38:49.671] [INFO] cheese - inserting 1000 documents. first: Standing Buddha and last: Adam Pierce -[2018-02-13T00:38:49.741] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:38:49.746] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:38:49.869] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:38:50.095] [INFO] cheese - inserting 1000 documents. first: Iceland - India relations and last: Pitch aggregate -[2018-02-13T00:38:50.192] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T00:38:50.347] [INFO] cheese - inserting 1000 documents. first: Saint Vinny's and last: Von Boguslawski -[2018-02-13T00:38:50.354] [INFO] cheese - inserting 1000 documents. first: S-3B Viking and last: Alpha Jamma Omega -[2018-02-13T00:38:50.377] [INFO] cheese - inserting 1000 documents. first: Template:Disambigtalk and last: Herendeşti -[2018-02-13T00:38:50.424] [INFO] cheese - inserting 1000 documents. first: Category:2016 Summer Paralympics football 7-a-side convenience templates and last: Category:Women members of the Swiss Federal Council -[2018-02-13T00:38:50.447] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T00:38:50.480] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T00:38:50.551] [INFO] cheese - inserting 1000 documents. first: Gogli body and last: Lasdikas, Greece -[2018-02-13T00:38:50.584] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T00:38:50.590] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:38:50.768] [INFO] cheese - inserting 1000 documents. first: Katuysha and last: Besserer -[2018-02-13T00:38:50.844] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:38:50.864] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T00:38:51.362] [INFO] cheese - inserting 1000 documents. first: Relax-A-Cisor and last: Debabrata Barua -[2018-02-13T00:38:51.463] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:38:51.559] [INFO] cheese - inserting 1000 documents. first: Herendesti and last: Kurilsky Urban Okrug -[2018-02-13T00:38:51.574] [INFO] cheese - inserting 1000 documents. first: Category:AD 9 births and last: XNA Studio -[2018-02-13T00:38:51.597] [INFO] cheese - inserting 1000 documents. first: Boguslavsky and last: Cities Build On Sand -[2018-02-13T00:38:51.744] [INFO] cheese - inserting 1000 documents. first: University College Galway R.F.C. and last: Corruption in Slovenia -[2018-02-13T00:38:51.763] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T00:38:51.806] [INFO] cheese - inserting 1000 documents. first: HomeServices of America and last: Pinkney's Point -[2018-02-13T00:38:51.821] [INFO] cheese - batch complete in: 1.374 secs -[2018-02-13T00:38:51.839] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T00:38:52.001] [INFO] cheese - inserting 1000 documents. first: Jeremy Koz and last: Complement component 5 -[2018-02-13T00:38:52.109] [INFO] cheese - batch complete in: 1.917 secs -[2018-02-13T00:38:52.113] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T00:38:52.198] [INFO] cheese - batch complete in: 1.354 secs -[2018-02-13T00:38:52.579] [INFO] cheese - inserting 1000 documents. first: Philomath, Indiana and last: Lutch 5V -[2018-02-13T00:38:52.713] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:38:52.827] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Winer and last: IFTU -[2018-02-13T00:38:52.866] [INFO] cheese - inserting 1000 documents. first: Class Of 98 and last: Čistejov -[2018-02-13T00:38:52.873] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:38:52.957] [INFO] cheese - inserting 1000 documents. first: Bromus secalinus and last: Bellemare -[2018-02-13T00:38:52.961] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T00:38:52.976] [INFO] cheese - inserting 1000 documents. first: 2005–06 MŽRKL season and last: Australia Olympic football team -[2018-02-13T00:38:53.013] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:38:53.136] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:38:53.473] [INFO] cheese - inserting 1000 documents. first: England and Wales Greens and last: File:88th Street.jpg -[2018-02-13T00:38:53.483] [INFO] cheese - inserting 1000 documents. first: Nash-Kuiper theorem and last: National Gallery of Modern Art -[2018-02-13T00:38:53.605] [INFO] cheese - batch complete in: 1.406 secs -[2018-02-13T00:38:53.616] [INFO] cheese - inserting 1000 documents. first: Category:Sports governing bodies in Iran and last: National association of collegiate directors of athletics -[2018-02-13T00:38:53.709] [INFO] cheese - batch complete in: 1.87 secs -[2018-02-13T00:38:53.775] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:38:53.802] [INFO] cheese - inserting 1000 documents. first: Luch-5V and last: Cbb17 -[2018-02-13T00:38:53.825] [INFO] cheese - inserting 1000 documents. first: Chantal Osborne and last: Architect's World -[2018-02-13T00:38:53.932] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T00:38:53.951] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:38:54.015] [INFO] cheese - inserting 1000 documents. first: FIA WTCC Race of Sweden and last: File:Only You Can Love Me This Way .png -[2018-02-13T00:38:54.059] [INFO] cheese - inserting 1000 documents. first: Luscombe Aircraft Corporation and last: Kabiru'iyeh -[2018-02-13T00:38:54.125] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T00:38:54.215] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T00:38:54.266] [INFO] cheese - inserting 1000 documents. first: National association of colored women and last: National institute of statistics and census of nicaragua -[2018-02-13T00:38:54.296] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:38:54.505] [INFO] cheese - inserting 1000 documents. first: Atalanta (Bottiaea) and last: Faroese crown -[2018-02-13T00:38:54.565] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 452001-453000 and last: Category:Far-right politics in Zimbabwe -[2018-02-13T00:38:54.565] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:38:54.582] [INFO] cheese - inserting 1000 documents. first: Dharmaa (2010 film) and last: Asymmetric synthesis -[2018-02-13T00:38:54.619] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:38:54.638] [INFO] cheese - inserting 1000 documents. first: National institute of technology calicut and last: Apache Peak (Arizona) -[2018-02-13T00:38:54.650] [INFO] cheese - inserting 1000 documents. first: Water toilet and last: Weierstrass factorization theorem -[2018-02-13T00:38:54.663] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:38:54.666] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:38:54.678] [INFO] cheese - inserting 1000 documents. first: Bayt Ar Rumaym and last: Edwin Tolton -[2018-02-13T00:38:54.740] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T00:38:54.760] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:38:54.808] [INFO] cheese - inserting 1000 documents. first: Salutation, Hammersmith and last: Category:809 in Asia -[2018-02-13T00:38:54.875] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:38:55.011] [INFO] cheese - inserting 1000 documents. first: José Benlliure Gil and last: Ace Ventura: The CD-Rom Game -[2018-02-13T00:38:55.039] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Nambashag and last: Moses Griffiths -[2018-02-13T00:38:55.061] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:38:55.100] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:38:55.159] [INFO] cheese - inserting 1000 documents. first: The Grafting of Life and last: M. Ramachandran -[2018-02-13T00:38:55.178] [INFO] cheese - inserting 1000 documents. first: Unbiased rendering and last: Mesoraca, Italy -[2018-02-13T00:38:55.219] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:38:55.263] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:38:55.447] [INFO] cheese - inserting 1000 documents. first: File:Applestoreginza.jpg and last: Anami Narayan Roy -[2018-02-13T00:38:55.462] [INFO] cheese - inserting 1000 documents. first: Glenageary train station and last: 2002 U.S. Open (tennis) -[2018-02-13T00:38:55.472] [INFO] cheese - inserting 1000 documents. first: Serbian Uprisings and last: Melvin Fitting -[2018-02-13T00:38:55.521] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:38:55.543] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:38:55.556] [INFO] cheese - inserting 1000 documents. first: Category:Works about Algeria and last: WiFi Internet -[2018-02-13T00:38:55.564] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:38:55.639] [INFO] cheese - inserting 1000 documents. first: De grønne pigespejdere, Danmark and last: Pressing stone -[2018-02-13T00:38:55.648] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:38:55.750] [INFO] cheese - inserting 1000 documents. first: Indian cricket team in the West Indies in 2017 and last: The Manassa Mauler -[2018-02-13T00:38:55.755] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:38:55.862] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/yubik.clan.su and last: Budala Gong -[2018-02-13T00:38:55.858] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:38:56.053] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:38:56.371] [INFO] cheese - inserting 1000 documents. first: Bahrud, Yazd and last: Observation arc -[2018-02-13T00:38:56.461] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:38:56.603] [INFO] cheese - inserting 1000 documents. first: Télimélé and last: Zeidae -[2018-02-13T00:38:56.621] [INFO] cheese - inserting 1000 documents. first: Jimmy Townley and last: Chalfont and Latimer train station -[2018-02-13T00:38:56.654] [INFO] cheese - inserting 1000 documents. first: Battle of Kars (disambiguation) and last: Dimensional timber -[2018-02-13T00:38:56.661] [INFO] cheese - inserting 1000 documents. first: Poisonous snakes and last: Group litigation order -[2018-02-13T00:38:56.670] [INFO] cheese - inserting 1000 documents. first: Category:Romanian child actors and last: Category:Sexuality activists -[2018-02-13T00:38:56.691] [INFO] cheese - batch complete in: 1.17 secs -[2018-02-13T00:38:56.726] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T00:38:56.773] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:38:56.783] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:38:56.799] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T00:38:56.992] [INFO] cheese - inserting 1000 documents. first: MYBBP1A and last: List of awards and nominations received by Raphael -[2018-02-13T00:38:57.138] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T00:38:57.291] [INFO] cheese - inserting 1000 documents. first: István Sági and last: Judicial system of the Bahamas -[2018-02-13T00:38:57.364] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:38:57.457] [INFO] cheese - inserting 1000 documents. first: Norman Shaw and last: Category:Taiwanese female golfers -[2018-02-13T00:38:57.501] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:38:57.545] [INFO] cheese - inserting 1000 documents. first: Peter Sundström and last: Lucius Quintius Cincinnatus -[2018-02-13T00:38:57.548] [INFO] cheese - inserting 1000 documents. first: Dechang County and last: Yevgeni Aleksandrovich Smirnov (born 1986) -[2018-02-13T00:38:57.585] [INFO] cheese - inserting 1000 documents. first: Civic-Military Directory and last: James Hyslop -[2018-02-13T00:38:57.608] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:38:57.614] [INFO] cheese - inserting 1000 documents. first: IMP3 and last: Natural resource management region -[2018-02-13T00:38:57.632] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:38:57.676] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:38:57.721] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:38:57.864] [INFO] cheese - inserting 1000 documents. first: Phodopus sungorus and last: Bovo Book -[2018-02-13T00:38:57.902] [INFO] cheese - inserting 1000 documents. first: Court system of the Bahamas and last: Tobeluk vs Lind -[2018-02-13T00:38:57.946] [INFO] cheese - inserting 1000 documents. first: Natural science and technical academy isny and last: Networked and electronic media -[2018-02-13T00:38:57.958] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:38:57.963] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T00:38:57.973] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:38:58.073] [INFO] cheese - inserting 1000 documents. first: Simon Martirosyan and last: Liam Silke -[2018-02-13T00:38:58.101] [INFO] cheese - inserting 1000 documents. first: Revision Quest and last: Ameer Zeb Khan -[2018-02-13T00:38:58.136] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:38:58.151] [INFO] cheese - inserting 1000 documents. first: Jim Fitzsimons and last: Doug Lee -[2018-02-13T00:38:58.210] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:38:58.227] [INFO] cheese - inserting 1000 documents. first: Oleg of drelinia and last: New world warbler -[2018-02-13T00:38:58.249] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:38:58.271] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:38:58.327] [INFO] cheese - inserting 1000 documents. first: Template:Hugo Award Best Novelette and last: Wikipedia:WikiProject Spam/Local/patriotledger.com -[2018-02-13T00:38:58.424] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:38:58.521] [INFO] cheese - inserting 1000 documents. first: Urszula Teresa Mniszech and last: Template:Infobox exam -[2018-02-13T00:38:58.546] [INFO] cheese - inserting 1000 documents. first: One fine day in the middle of the night and last: Plogonnec -[2018-02-13T00:38:58.599] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:38:58.652] [INFO] cheese - inserting 1000 documents. first: File:DetailofMusicWG.jpg and last: Monterrondo -[2018-02-13T00:38:58.607] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:38:58.742] [INFO] cheese - inserting 1000 documents. first: Aerolimousine and last: Wikipedia:Articles for deletion/Nur Amalina Che Bakri -[2018-02-13T00:38:58.793] [INFO] cheese - inserting 1000 documents. first: E. M. Tucker and last: Asociación Hondureña de Tiro Práctico -[2018-02-13T00:38:58.801] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:38:58.842] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:38:58.852] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:38:58.924] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Devout Christian and last: Category:British Columbian actors -[2018-02-13T00:38:58.962] [INFO] cheese - inserting 1000 documents. first: Nice jewish boy and last: Prime Minister parodies (Private Eye) -[2018-02-13T00:38:58.981] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:38:59.003] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:38:59.052] [INFO] cheese - inserting 1000 documents. first: Upper Scorpius association and last: Amurru (disambiguation) -[2018-02-13T00:38:59.128] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:38:59.184] [INFO] cheese - inserting 1000 documents. first: Template:Krantikari Manuwadi Morcha/meta/shortname and last: Unknown (1988 anthology) -[2018-02-13T00:38:59.236] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:59.341] [INFO] cheese - inserting 1000 documents. first: Category:Sports organisations of Honduras and last: Category:1980 in women's sport -[2018-02-13T00:38:59.350] [INFO] cheese - inserting 1000 documents. first: Myrmokata and last: Edge of Madness -[2018-02-13T00:38:59.405] [INFO] cheese - inserting 1000 documents. first: B3105 road and last: Veyyil -[2018-02-13T00:38:59.416] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:38:59.430] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:38:59.486] [INFO] cheese - inserting 1000 documents. first: Action of 19 February 1807 and last: United Airlines Flight 811 -[2018-02-13T00:38:59.486] [INFO] cheese - inserting 1000 documents. first: Anabad (disambiguation) and last: She Still Comes Around (To Love What's Left of Me) -[2018-02-13T00:38:59.491] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:38:59.510] [INFO] cheese - inserting 1000 documents. first: Rajkot Urban Development Authority and last: Plouvorn -[2018-02-13T00:38:59.545] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:38:59.565] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:38:59.580] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:38:59.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Antonio Cabral de Melo and last: Izabad -[2018-02-13T00:38:59.698] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:38:59.793] [INFO] cheese - inserting 1000 documents. first: Category:1981 in women's sport and last: Schweizerhalle -[2018-02-13T00:38:59.856] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:38:59.911] [INFO] cheese - inserting 1000 documents. first: Linaria bipartita and last: W. Rooseboom -[2018-02-13T00:39:00.025] [INFO] cheese - inserting 1000 documents. first: Jeff Pearce (musician) and last: William Wallingford -[2018-02-13T00:39:00.081] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:39:00.102] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:39:00.237] [INFO] cheese - inserting 1000 documents. first: Gelao (language) and last: File:Jigsawcomfortingamanda.PNG -[2018-02-13T00:39:00.314] [INFO] cheese - inserting 1000 documents. first: Multisynthetase complex auxiliary component p38 and last: Kalogréza Railway Station -[2018-02-13T00:39:00.375] [INFO] cheese - inserting 1000 documents. first: Grubelić and last: Stopping digging -[2018-02-13T00:39:00.402] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:39:00.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Evolution of the Wizarding World and last: Su Duko -[2018-02-13T00:39:00.440] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:39:00.444] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:39:00.527] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T00:39:00.545] [INFO] cheese - inserting 1000 documents. first: Garona Halforcen and last: Eunidia transversevittata -[2018-02-13T00:39:00.595] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:39:00.722] [INFO] cheese - inserting 1000 documents. first: File:AChaosOfFlowers1988Cover.jpg and last: Saltuklu -[2018-02-13T00:39:00.728] [INFO] cheese - inserting 1000 documents. first: Linquan County and last: Victor Burgin: Objets Temporels -[2018-02-13T00:39:00.780] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:39:00.805] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:39:01.180] [INFO] cheese - inserting 1000 documents. first: Heliostibes electrica and last: Reshkuiyeh -[2018-02-13T00:39:01.204] [INFO] cheese - inserting 1000 documents. first: Blow Away and last: Wikipedia:Articles for deletion/Harold Donald Hopkins -[2018-02-13T00:39:01.205] [INFO] cheese - inserting 1000 documents. first: Quarterfinals and last: Yetman -[2018-02-13T00:39:01.241] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:39:01.267] [INFO] cheese - inserting 1000 documents. first: Eunidia trialbofasciata and last: Digha–Sonepur rail–cum-road bridge -[2018-02-13T00:39:01.290] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:39:01.303] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:39:01.336] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:39:01.403] [INFO] cheese - inserting 1000 documents. first: Rex Buckland and last: Greg Cipes -[2018-02-13T00:39:01.433] [INFO] cheese - inserting 1000 documents. first: Stöd 2 and last: Template:Opposition (parliamentary)/meta/shortname -[2018-02-13T00:39:01.445] [INFO] cheese - inserting 1000 documents. first: Stáisiún Ros Eó agus Lusca and last: LA Gigolo -[2018-02-13T00:39:01.504] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:39:01.568] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:39:01.580] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:39:01.810] [INFO] cheese - inserting 1000 documents. first: Vaziri, Yazd and last: Chah-e Amur Matal'at -[2018-02-13T00:39:01.835] [INFO] cheese - inserting 1000 documents. first: Getz/Gilberto '76 and last: File:Larry Adler The Glory of Gershwin album cover.jpg -[2018-02-13T00:39:01.863] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:39:01.876] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:39:01.921] [INFO] cheese - inserting 1000 documents. first: Yū Koyama and last: Revanchisme -[2018-02-13T00:39:01.976] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:39:02.063] [INFO] cheese - inserting 1000 documents. first: Operation Kingpin and last: Martin Prusek -[2018-02-13T00:39:02.105] [INFO] cheese - inserting 1000 documents. first: Jurkovic and last: Ključ -[2018-02-13T00:39:02.112] [INFO] cheese - inserting 1000 documents. first: File:MajGenAide.jpg and last: Wallengrenia -[2018-02-13T00:39:02.121] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:39:02.162] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:39:02.178] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:39:02.187] [INFO] cheese - inserting 1000 documents. first: Norman and medieval london and last: Novi di modena -[2018-02-13T00:39:02.223] [INFO] cheese - inserting 1000 documents. first: Karl Friedrich Hieronymus, Baron von Münchhausen and last: Hitler's Terror Weapons -[2018-02-13T00:39:02.245] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:39:02.285] [INFO] cheese - inserting 1000 documents. first: KVOU-FM and last: Template:Bharatiya Lok Tantrik Mazdoor Dal/meta/shortname -[2018-02-13T00:39:02.316] [INFO] cheese - inserting 1000 documents. first: Quai Jacques-Cartier and last: Recopa Sudamericana 2017 -[2018-02-13T00:39:02.347] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:39:02.377] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:39:02.392] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:39:02.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Unreferenced BLP Rescue/March 2011 and last: E.8/47 -[2018-02-13T00:39:02.620] [INFO] cheese - inserting 1000 documents. first: Novo hopovo monastery and last: Ivan Owen -[2018-02-13T00:39:02.638] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:39:02.700] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:39:02.746] [INFO] cheese - inserting 1000 documents. first: Template:Indian Bahujan Samajwadi Party/meta/shortname and last: Food vessel (disambiguation) -[2018-02-13T00:39:02.762] [INFO] cheese - inserting 1000 documents. first: Deep Snow and last: Category:Minas Gerais geography stubs -[2018-02-13T00:39:02.824] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:39:02.869] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:39:03.114] [INFO] cheese - inserting 1000 documents. first: Proposed language families and last: Baron Gauch -[2018-02-13T00:39:03.170] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:39:03.233] [INFO] cheese - inserting 1000 documents. first: Subgame perfect nash equilibrium and last: Pentimento -[2018-02-13T00:39:03.325] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T00:39:03.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Charles Strickland (General Superintendent) and last: Meta-systems -[2018-02-13T00:39:03.497] [INFO] cheese - inserting 1000 documents. first: De Delft and last: Kongudi -[2018-02-13T00:39:03.498] [INFO] cheese - inserting 1000 documents. first: Frank Simpson (disambiguation) and last: WELG (AM) -[2018-02-13T00:39:03.506] [INFO] cheese - inserting 1000 documents. first: Warrenohesperia and last: Legal interpretation -[2018-02-13T00:39:03.559] [INFO] cheese - inserting 1000 documents. first: Mauricelm-Lei Millere and last: Wikipedia:Articles for deletion/List of automotive customizers -[2018-02-13T00:39:03.562] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:39:03.589] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:39:03.608] [INFO] cheese - inserting 1000 documents. first: Prix mondial Cino Del Duca and last: Blackenstein -[2018-02-13T00:39:03.614] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:39:03.645] [INFO] cheese - batch complete in: 1.467 secs -[2018-02-13T00:39:03.647] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:39:03.776] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:39:04.094] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 800 and last: Woodmoor -[2018-02-13T00:39:04.231] [INFO] cheese - inserting 1000 documents. first: Auxiliary organization and last: Mrokocin -[2018-02-13T00:39:04.248] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:39:04.356] [INFO] cheese - inserting 1000 documents. first: The Westies (Irish gang) and last: Hillabee -[2018-02-13T00:39:04.452] [INFO] cheese - inserting 1000 documents. first: Category:NASA people and last: Tufele Faatoia Liamatua -[2018-02-13T00:39:04.377] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:39:04.482] [INFO] cheese - inserting 1000 documents. first: Indoor air and last: Template:Attached KML/Florida State Road 60 -[2018-02-13T00:39:04.549] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:39:04.597] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:39:04.616] [INFO] cheese - inserting 1000 documents. first: Kattathur (South) and last: File:EmpireStateBuildingtotimessquare.JPG -[2018-02-13T00:39:04.678] [INFO] cheese - inserting 1000 documents. first: Lactobacillus reuteri and last: Henry Winfield Watson -[2018-02-13T00:39:04.735] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T00:39:04.809] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T00:39:04.852] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:39:05.073] [INFO] cheese - inserting 1000 documents. first: Category:Companies established in the 21st century and last: Charles Saint George Cleverly -[2018-02-13T00:39:05.158] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:39:05.193] [INFO] cheese - inserting 1000 documents. first: Category:Lists of landforms of Montana and last: Mariam Matrem -[2018-02-13T00:39:05.241] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:39:05.352] [INFO] cheese - inserting 1000 documents. first: Chawinda, Punjab and last: Category:News media by continent -[2018-02-13T00:39:05.354] [INFO] cheese - inserting 1000 documents. first: Hull North and last: Cacaxtla -[2018-02-13T00:39:05.356] [INFO] cheese - inserting 1000 documents. first: Category:Pre-Raphaelite painters and last: Template:Ligue Inter-Régions de football Groupe Est -[2018-02-13T00:39:05.401] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:39:05.410] [INFO] cheese - inserting 1000 documents. first: J. R. Wasson and last: Bulbophyllum cameronense -[2018-02-13T00:39:05.410] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:39:05.458] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T00:39:05.492] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:39:05.529] [INFO] cheese - inserting 1000 documents. first: Springfield Model 1892–99 and last: Court of Historical Review and Appeal -[2018-02-13T00:39:05.620] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:05.716] [INFO] cheese - inserting 1000 documents. first: File:Kamleshwar reservoir.jpg and last: Latia lateralis -[2018-02-13T00:39:05.758] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:39:05.774] [INFO] cheese - inserting 1000 documents. first: 2016 AFF Championship qualification and last: Joe Luther Smith -[2018-02-13T00:39:05.835] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:39:05.889] [INFO] cheese - inserting 1000 documents. first: William Rowland and last: List of families in South Park -[2018-02-13T00:39:05.909] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gene Langmesser and last: Spirits & Cat Ears -[2018-02-13T00:39:05.934] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum campos-portoi and last: Every Man Should Know -[2018-02-13T00:39:05.943] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:39:05.968] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:39:05.975] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:39:06.126] [INFO] cheese - inserting 1000 documents. first: National Ballistic Missile Defense and last: Wikipedia:Articles for deletion/Tony DiCicco -[2018-02-13T00:39:06.163] [INFO] cheese - inserting 1000 documents. first: Zarska Wies and last: San gregorio nelle alpi -[2018-02-13T00:39:06.226] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:06.276] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:39:06.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject:Architecture/Architecture Forum and last: Fordham Spire -[2018-02-13T00:39:06.390] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:39:06.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Reference 36 and last: Mexican white-lipped frog -[2018-02-13T00:39:06.534] [INFO] cheese - inserting 1000 documents. first: Sharif Beyglu and last: Category:Pakistani nobility -[2018-02-13T00:39:06.645] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:39:06.707] [INFO] cheese - inserting 1000 documents. first: 1963 Daytona 500 and last: Neal Lawrence -[2018-02-13T00:39:06.716] [INFO] cheese - inserting 1000 documents. first: Bill Gay (American football) and last: Panzerkampfwagen III Ausf.H -[2018-02-13T00:39:06.672] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:39:06.782] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:39:06.807] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:39:06.823] [INFO] cheese - inserting 1000 documents. first: San gregorio nude beach and last: Wikipedia:Articles for deletion/Nicholas Thorburn -[2018-02-13T00:39:06.890] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:39:07.198] [INFO] cheese - inserting 1000 documents. first: Ambassador Toshiyuki Takano and last: Darklands (video game) -[2018-02-13T00:39:07.248] [INFO] cheese - inserting 1000 documents. first: Roll Over Protection System and last: LDN (song) -[2018-02-13T00:39:07.256] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:39:07.292] [INFO] cheese - inserting 1000 documents. first: VI Corps (Grande Armée) and last: Petites Heures of Jean, Duc de Berry -[2018-02-13T00:39:07.341] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marie Carter and last: Category:Lists of buildings and structures in Utah -[2018-02-13T00:39:07.373] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:07.369] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T00:39:07.383] [INFO] cheese - inserting 1000 documents. first: List of Little League World Series broadcasters and last: Shinshū -[2018-02-13T00:39:07.459] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:39:07.474] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:39:07.517] [INFO] cheese - inserting 1000 documents. first: Stéphanos I Sidarouss and last: Brenda Hutchinson -[2018-02-13T00:39:07.534] [INFO] cheese - inserting 1000 documents. first: First National Bank of Botswana and last: File:Magee Corp Limit Sign.jpg -[2018-02-13T00:39:07.593] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:39:07.644] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:39:07.879] [INFO] cheese - inserting 1000 documents. first: Petites Heures de Jean de Berry and last: Template:Taxonomy/Istiodactylus -[2018-02-13T00:39:07.953] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:39:08.018] [INFO] cheese - inserting 1000 documents. first: Barrio Logan station and last: Mournful Monday -[2018-02-13T00:39:08.024] [INFO] cheese - inserting 1000 documents. first: Long Range Interceptor and last: Master unit -[2018-02-13T00:39:08.027] [INFO] cheese - inserting 1000 documents. first: Zheleznogorskoye Urban Settlement and last: Nelson Hotel B&B -[2018-02-13T00:39:08.045] [INFO] cheese - inserting 1000 documents. first: John Powell (footballer, born 1892) and last: Setyana Mapasa -[2018-02-13T00:39:08.051] [INFO] cheese - inserting 1000 documents. first: All Through the Night (Tone Lōc song) and last: William Chomsky (1896–1977) -[2018-02-13T00:39:08.073] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:39:08.108] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:39:08.146] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:39:08.242] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:39:08.339] [INFO] cheese - inserting 1000 documents. first: Ping-Pong (rocket) and last: Waudru -[2018-02-13T00:39:08.339] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:39:08.477] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T00:39:08.862] [INFO] cheese - inserting 1000 documents. first: 2011–12 Slovak Cup and last: Roky Moon and BOLT! -[2018-02-13T00:39:08.970] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T00:39:09.012] [INFO] cheese - inserting 1000 documents. first: Reuben Wright House and last: Carol Goodner -[2018-02-13T00:39:09.144] [INFO] cheese - inserting 1000 documents. first: Muhammad Yusuf Kandhalawi and last: Category:Kreis Werro -[2018-02-13T00:39:09.190] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T00:39:09.269] [INFO] cheese - inserting 1000 documents. first: Aston 3:16 and last: Casey Cott -[2018-02-13T00:39:09.272] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T00:39:09.277] [INFO] cheese - inserting 1000 documents. first: Template:In Through the Out Door and last: Joe (editor) -[2018-02-13T00:39:09.336] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T00:39:09.387] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T00:39:09.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture of the day/March 18, 2005 and last: Pioneer Playhouse -[2018-02-13T00:39:09.490] [INFO] cheese - inserting 1000 documents. first: Karl-Marx-Orden and last: Sweet Home Chicago -[2018-02-13T00:39:09.539] [INFO] cheese - batch complete in: 1.392 secs -[2018-02-13T00:39:09.604] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T00:39:09.659] [INFO] cheese - inserting 1000 documents. first: Alternative Risk Transfer and last: Canaletto (disambiguation) -[2018-02-13T00:39:09.923] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:39:10.177] [INFO] cheese - inserting 1000 documents. first: File:Ringling Intr Arts Festival.jpg and last: Julpe River -[2018-02-13T00:39:10.324] [INFO] cheese - inserting 1000 documents. first: Template:User Wikipedia Ghana and last: 1990 European Athletics Indoor Championships – Women's triple jump -[2018-02-13T00:39:10.349] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:39:10.433] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T00:39:10.487] [INFO] cheese - inserting 1000 documents. first: File:Parinay.jpg and last: Non-road engine -[2018-02-13T00:39:10.558] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T00:39:10.566] [INFO] cheese - inserting 1000 documents. first: Gaps (album) and last: Category:Heads of government of Burundi -[2018-02-13T00:39:10.632] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T00:39:10.633] [INFO] cheese - inserting 1000 documents. first: Edna Independent School District and last: Corinne West -[2018-02-13T00:39:10.678] [INFO] cheese - inserting 1000 documents. first: Korea K-Pop Hot 100 and last: Hickory Grove, Manitowoc County, Wisconsin -[2018-02-13T00:39:10.733] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T00:39:10.834] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:39:10.937] [INFO] cheese - inserting 1000 documents. first: Volcanic pipe and last: Bridgman's thermodynamic equations -[2018-02-13T00:39:11.046] [INFO] cheese - inserting 1000 documents. first: Tomina River and last: Aborolabis kalaktangensis -[2018-02-13T00:39:11.047] [INFO] cheese - batch complete in: 1.508 secs -[2018-02-13T00:39:11.093] [INFO] cheese - inserting 1000 documents. first: Chelmer Valley Riverside and last: Muricauda beolgyonensis -[2018-02-13T00:39:11.105] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:39:11.117] [INFO] cheese - inserting 1000 documents. first: Category:Hispanic and Latino American members of the United States Congress and last: File:Harold Matthews Cup Logo.gif -[2018-02-13T00:39:11.143] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:39:11.196] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:39:11.266] [INFO] cheese - inserting 1000 documents. first: Rumja and last: Margaret of Habsburg -[2018-02-13T00:39:11.318] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:11.345] [INFO] cheese - inserting 1000 documents. first: Glassheart and last: Mohammed AlـMutair -[2018-02-13T00:39:11.454] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:39:11.563] [INFO] cheese - inserting 1000 documents. first: Loo (Wind) and last: Davie Village, Vancouver, California -[2018-02-13T00:39:11.641] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:39:11.666] [INFO] cheese - inserting 1000 documents. first: Aborolabis martensi and last: Ambient rock -[2018-02-13T00:39:11.749] [INFO] cheese - inserting 1000 documents. first: Morona-Santiago stubfoot toad and last: Draft:Maurice Green (virologist) -[2018-02-13T00:39:11.760] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:39:11.770] [INFO] cheese - inserting 1000 documents. first: Shoaib Akhter and last: File:Joan Lui.jpg -[2018-02-13T00:39:11.816] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:39:11.818] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:39:11.889] [INFO] cheese - inserting 1000 documents. first: New York University College of Arts & Science and last: He Has Left Us Alone -[2018-02-13T00:39:11.930] [INFO] cheese - inserting 1000 documents. first: The Sword of the Spirits and last: Reinforced masonry -[2018-02-13T00:39:11.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fatimah Adams and last: Rousset-les-Vignes -[2018-02-13T00:39:11.955] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:39:11.983] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:39:12.004] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:12.085] [INFO] cheese - inserting 1000 documents. first: Category:People from East Devon (district) and last: Nestell Kipp Anderson -[2018-02-13T00:39:12.127] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:39:12.202] [INFO] cheese - inserting 1000 documents. first: Category:Jails in Iowa and last: Wikipedia:WikiProject Spam/LinkReports/ub90.com -[2018-02-13T00:39:12.227] [INFO] cheese - inserting 1000 documents. first: 64079 (number) and last: Mullet head -[2018-02-13T00:39:12.237] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:39:12.258] [INFO] cheese - inserting 1000 documents. first: Category:Scotland national football team venues and last: Museum on the Seam -[2018-02-13T00:39:12.298] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:39:12.339] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:39:12.381] [INFO] cheese - inserting 1000 documents. first: Amanda Rollins and last: Zsolt Gárdonyi -[2018-02-13T00:39:12.402] [INFO] cheese - inserting 1000 documents. first: Rémuzat and last: Juan Schiaretti -[2018-02-13T00:39:12.424] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:39:12.456] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:39:12.469] [INFO] cheese - inserting 1000 documents. first: Acronicta vulpina and last: S.A. Stepanek -[2018-02-13T00:39:12.520] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:39:12.563] [INFO] cheese - inserting 1000 documents. first: Starchild Trilogy and last: Murder of Jessica Lunsford -[2018-02-13T00:39:12.630] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:39:12.643] [INFO] cheese - inserting 1000 documents. first: Category:GIS data companies and last: Amoranto Stadium -[2018-02-13T00:39:12.653] [INFO] cheese - inserting 1000 documents. first: File:Stuntin'LikeMyDaddy.jpg and last: Take as needed for pain -[2018-02-13T00:39:12.683] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:39:12.714] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:39:12.727] [INFO] cheese - inserting 1000 documents. first: Diastatic malt extract and last: Wikipedia:Miscellany for deletion/User:GangstaEB/VandalClinic -[2018-02-13T00:39:12.738] [INFO] cheese - inserting 1000 documents. first: Skeletal muscle sarcoma and last: Portal:Ecology/Selected picture/40 -[2018-02-13T00:39:12.758] [INFO] cheese - inserting 1000 documents. first: Portal:Mexico City and last: Wikipedia:Featured article candidates/Tintin (character)/archive1 -[2018-02-13T00:39:12.778] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:39:12.785] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:39:12.853] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:39:12.937] [INFO] cheese - inserting 1000 documents. first: Take out the trash day and last: Tax forms in the united states -[2018-02-13T00:39:12.980] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:39:13.049] [INFO] cheese - inserting 1000 documents. first: Balmy Alley and last: Wikipedia:Articles for deletion/WebChat Broadcasting System -[2018-02-13T00:39:13.181] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:39:13.260] [INFO] cheese - inserting 1000 documents. first: Scouting in colorado and last: Wikipedia:Today's featured article/May 27, 2008 -[2018-02-13T00:39:13.353] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:39:13.372] [INFO] cheese - inserting 1000 documents. first: Portal:Ecology/Selected picture/41 and last: T. Ramachandran (politician) -[2018-02-13T00:39:13.453] [INFO] cheese - inserting 1000 documents. first: Federico Peliti and last: Thuruthippuram Boat Race -[2018-02-13T00:39:13.454] [INFO] cheese - inserting 1000 documents. first: Senate president pro tempore and last: Judith Tarr -[2018-02-13T00:39:13.462] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:39:13.517] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:39:13.537] [INFO] cheese - inserting 1000 documents. first: Prisons in America and last: Category:2003 in Saudi Arabian sport -[2018-02-13T00:39:13.540] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:39:13.586] [INFO] cheese - inserting 1000 documents. first: Gilardino and last: Carlos Blanco Galindo -[2018-02-13T00:39:13.599] [INFO] cheese - inserting 1000 documents. first: Searching for nena and last: Seekers of the sacred jewel -[2018-02-13T00:39:13.601] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:39:13.637] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:39:13.658] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:39:13.733] [INFO] cheese - inserting 1000 documents. first: Adina, Malda and last: Jay Clayton (critic) -[2018-02-13T00:39:13.800] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:39:13.843] [INFO] cheese - inserting 1000 documents. first: Texas argentine chamber of commerce and last: Lesotho parliamentary election, 2007 -[2018-02-13T00:39:13.864] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:39:13.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Arko Custom and last: Schlafe, schlafe holder, süßer Knabe -[2018-02-13T00:39:13.928] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:39:14.015] [INFO] cheese - inserting 1000 documents. first: Microeurydemus wraniki and last: Guaranty Bank -[2018-02-13T00:39:14.020] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2013 December 23 and last: Ron Dorsey (basketball, born 1948) -[2018-02-13T00:39:14.059] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:39:14.080] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:39:14.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Quantum Repairmen and last: Category:Mayors of places in South Dakota -[2018-02-13T00:39:14.165] [INFO] cheese - inserting 1000 documents. first: Ion Cristoiu and last: Chemical mechanical polishing -[2018-02-13T00:39:14.225] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:39:14.262] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:39:14.271] [INFO] cheese - inserting 1000 documents. first: Covenant halo and last: SEPT8 -[2018-02-13T00:39:14.278] [INFO] cheese - inserting 1000 documents. first: Category:Canadian comedy-drama television series and last: Robert (Mousey) Thompson -[2018-02-13T00:39:14.316] [INFO] cheese - inserting 1000 documents. first: Category:2008 in Washington, D.C. and last: Template:User admin good behaviour -[2018-02-13T00:39:14.331] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:39:14.350] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:39:14.402] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:39:14.664] [INFO] cheese - inserting 1000 documents. first: K249EW and last: File:AB Crowsnest Pass logo.png -[2018-02-13T00:39:14.769] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:39:14.985] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Utah and last: Lake Beysehir -[2018-02-13T00:39:15.025] [INFO] cheese - inserting 1000 documents. first: Category:Film scores by John Zorn and last: Raimundo Dalmacio -[2018-02-13T00:39:15.026] [INFO] cheese - inserting 1000 documents. first: Ransom Room and last: Beehive shelf -[2018-02-13T00:39:15.028] [INFO] cheese - inserting 1000 documents. first: C20H27NO2 and last: National Committee on Foreign Medical Education and Accreditation -[2018-02-13T00:39:15.056] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:39:15.067] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:39:15.106] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:39:15.106] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T00:39:15.197] [INFO] cheese - inserting 1000 documents. first: Template:Carlisle County, Kentucky and last: 60S ribosomal protein L13a -[2018-02-13T00:39:15.226] [INFO] cheese - inserting 1000 documents. first: File:Latias and Latios.png and last: Seaford Head Nature Reserve -[2018-02-13T00:39:15.290] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:39:15.292] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T00:39:15.496] [INFO] cheese - inserting 1000 documents. first: Isidor Kaufman and last: Vladislav Makarkin -[2018-02-13T00:39:15.531] [INFO] cheese - inserting 1000 documents. first: The Ghetto Boys and last: Los Gallardos -[2018-02-13T00:39:15.537] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:39:15.597] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:39:15.653] [INFO] cheese - inserting 1000 documents. first: Category:Vega, Norway and last: File:Ghoraghata Station Newly constructed Overbridge3.jpg -[2018-02-13T00:39:15.663] [INFO] cheese - inserting 1000 documents. first: McDonnell RF-101C Voodoo and last: File:Butler Grizzlies logo.png -[2018-02-13T00:39:15.704] [INFO] cheese - inserting 1000 documents. first: Zastávka (Brno-Country District) and last: File:Sergio Sollima.jpg -[2018-02-13T00:39:15.769] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:39:15.772] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:39:15.794] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T00:39:15.874] [INFO] cheese - inserting 1000 documents. first: 4th Genie Awards and last: Aeropelican Airlines -[2018-02-13T00:39:15.972] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:39:15.998] [INFO] cheese - inserting 1000 documents. first: HMHA1 and last: File:PBB Protein HCN1 image.jpg -[2018-02-13T00:39:16.213] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Uganda members and last: Wikipedia:Featured picture candidates/Oil Platform -[2018-02-13T00:39:16.227] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:39:16.284] [INFO] cheese - inserting 1000 documents. first: Gádor and last: Pseudothecium -[2018-02-13T00:39:16.300] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:39:16.387] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:39:16.461] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 121 and last: Category:1945 in Irish law -[2018-02-13T00:39:16.517] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:39:16.632] [INFO] cheese - inserting 1000 documents. first: Dark Slope Streaks and last: Wikipedia:Help desk/Archives/2011 August 26 -[2018-02-13T00:39:16.666] [INFO] cheese - inserting 1000 documents. first: Sir John Hartopp, 3rd Baronet and last: Sophie Kasaei -[2018-02-13T00:39:16.700] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:39:16.756] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T00:39:16.821] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marcus Fitzgerald and last: File:Railway network schematic map 2009.png -[2018-02-13T00:39:16.841] [INFO] cheese - inserting 1000 documents. first: Equidistant letter sequencing and last: Mottingham railway station -[2018-02-13T00:39:16.895] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:39:16.896] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:39:16.916] [INFO] cheese - inserting 1000 documents. first: OR2AE1 and last: Template:Roanoke Rapids Radio -[2018-02-13T00:39:16.982] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:39:17.005] [INFO] cheese - inserting 1000 documents. first: Alf Garnet and last: File:Image 004.jpg -[2018-02-13T00:39:17.027] [INFO] cheese - inserting 1000 documents. first: Category:1946 in Irish law and last: Municipal Franchise Act 1835 -[2018-02-13T00:39:17.047] [INFO] cheese - inserting 1000 documents. first: Terpsiphone paradisi ceylonensis and last: Hieronymus Verdussen -[2018-02-13T00:39:17.085] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:39:17.096] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:39:17.123] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:39:17.269] [INFO] cheese - inserting 1000 documents. first: Foodweb dynamics and last: Harry Hitchen -[2018-02-13T00:39:17.328] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:39:17.395] [INFO] cheese - inserting 1000 documents. first: Universal Rocket Module and last: Single lens -[2018-02-13T00:39:17.463] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:39:17.503] [INFO] cheese - inserting 1000 documents. first: Sunderland, Mass and last: Big Island (Nunavut) -[2018-02-13T00:39:17.517] [INFO] cheese - inserting 1000 documents. first: Frans Verdussen and last: Dayton-Wright Aerial Coupe -[2018-02-13T00:39:17.548] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:39:17.599] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:39:17.620] [INFO] cheese - inserting 1000 documents. first: Category:Variance and last: Wikipedia:WikiProject Spam/LinkReports/parallaxfilm.com -[2018-02-13T00:39:17.692] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:39:17.864] [INFO] cheese - inserting 1000 documents. first: Johnny White and last: File:RomeSevenHills.JPG -[2018-02-13T00:39:17.931] [INFO] cheese - inserting 1000 documents. first: São Filipe, Cape Verde (municipality) and last: Hogzilla -[2018-02-13T00:39:18.039] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:39:18.098] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T00:39:18.154] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Institute for Effective Education and last: Category:Petrovec Municipality -[2018-02-13T00:39:18.234] [INFO] cheese - inserting 1000 documents. first: Weingut Hermann Donnhoff and last: Template:CheckIP -[2018-02-13T00:39:18.247] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:39:18.335] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:39:18.349] [INFO] cheese - inserting 1000 documents. first: Carmel-by-the-Sea, Ca and last: Alpha-1 adrenergic receptors -[2018-02-13T00:39:18.402] [INFO] cheese - inserting 1000 documents. first: Samoa at the 2011 Pacific Games and last: Alan Kwong-wing Tang -[2018-02-13T00:39:18.436] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:39:18.474] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:39:18.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/parallaxfilm.com and last: Category:Democratic Party (Turkey, current) -[2018-02-13T00:39:18.593] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:39:18.730] [INFO] cheese - inserting 1000 documents. first: Ștefan Iovan and last: W holding -[2018-02-13T00:39:18.773] [INFO] cheese - inserting 1000 documents. first: Template:Fb team White City and last: Category:Rochester Zeniths players -[2018-02-13T00:39:18.791] [INFO] cheese - inserting 1000 documents. first: Jill de Ray and last: M. D. Ramasami -[2018-02-13T00:39:18.793] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:39:18.848] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:39:18.876] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:39:18.882] [INFO] cheese - inserting 1000 documents. first: Portal:Animation/Anniversaries/November/November 10 and last: Donceni -[2018-02-13T00:39:18.920] [INFO] cheese - inserting 1000 documents. first: Kalessin and last: Smokescreen GT -[2018-02-13T00:39:18.938] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:39:18.988] [INFO] cheese - inserting 1000 documents. first: Portal:Film/Selected article/44 and last: San Juan Airport -[2018-02-13T00:39:18.991] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:39:19.082] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:19.095] [INFO] cheese - inserting 1000 documents. first: Lesina (insect) and last: Wikipedia:Articles for deletion/Sheena Benton -[2018-02-13T00:39:19.260] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:39:19.458] [INFO] cheese - inserting 1000 documents. first: Kisfaludy and last: List of species on Severnaya Zemlya -[2018-02-13T00:39:19.461] [INFO] cheese - inserting 1000 documents. first: Serhiy Svetoslavsky and last: File:PNC Music Pavilion Charlotte Logo.jpg -[2018-02-13T00:39:19.472] [INFO] cheese - inserting 1000 documents. first: Friends and Lovers (album) and last: That's My Baby -[2018-02-13T00:39:19.503] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:39:19.514] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:39:19.565] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:39:19.569] [INFO] cheese - inserting 1000 documents. first: Kandili block and last: Seymour (Burn Notice) -[2018-02-13T00:39:19.647] [INFO] cheese - inserting 1000 documents. first: Category:Market houses and last: Wikipedia:Translation/Rohan Palace -[2018-02-13T00:39:19.690] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:39:19.775] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:39:19.850] [INFO] cheese - inserting 1000 documents. first: Brit Lind-Peterson and last: Wikipedia:Wikipedia Signpost/2016-08-04 -[2018-02-13T00:39:19.920] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:39:19.974] [INFO] cheese - inserting 1000 documents. first: 2005 Red Lake shooting and last: Cat Anatomy -[2018-02-13T00:39:20.030] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T00:39:20.100] [INFO] cheese - inserting 1000 documents. first: Princess Tatiana of Leiningen and last: Port BE -[2018-02-13T00:39:20.103] [INFO] cheese - inserting 1000 documents. first: File:LaughLaugh.jpg and last: Solves problem -[2018-02-13T00:39:20.119] [INFO] cheese - inserting 1000 documents. first: File:Leeds City Council logo.jpg and last: Wikipedia:Articles for deletion/Red5 (3rd nomination) -[2018-02-13T00:39:20.140] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:39:20.142] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:39:20.162] [INFO] cheese - inserting 1000 documents. first: Reigne and last: Ramon A. Alcaraz -[2018-02-13T00:39:20.165] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:39:20.217] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:39:20.257] [INFO] cheese - inserting 1000 documents. first: Stony Lonesome, Indiana and last: Hugh White -[2018-02-13T00:39:20.337] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:39:20.359] [INFO] cheese - inserting 1000 documents. first: Template:NavigationPanAmChampionsMAGPB and last: Ho, Ho, Ho, We say Hey, Hey, Hey -[2018-02-13T00:39:20.426] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:39:20.471] [INFO] cheese - inserting 1000 documents. first: File:Love Drunk cover.jpg and last: Singletaxer -[2018-02-13T00:39:20.512] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Selected picture/Week 21, 2014 and last: Braille pattern dots-2368 -[2018-02-13T00:39:20.517] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:39:20.561] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:39:20.595] [INFO] cheese - inserting 1000 documents. first: Category:Convention centres in Singapore and last: Cathedral of St. Mary of the Assumption -[2018-02-13T00:39:20.661] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:39:20.664] [INFO] cheese - inserting 1000 documents. first: Leaving Beirut and last: Pennsylvania's 7th congressional district election, 2006 -[2018-02-13T00:39:20.727] [INFO] cheese - inserting 1000 documents. first: Union of Communist Parties - Communist Party of the Soviet Union and last: Marnand, Switzerland -[2018-02-13T00:39:20.749] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:39:20.764] [INFO] cheese - inserting 1000 documents. first: Roger Bradshaigh Lloyd and last: Jolotca -[2018-02-13T00:39:20.776] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:39:20.842] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:39:20.875] [INFO] cheese - inserting 1000 documents. first: Marvel's Iron Fist and last: Matsuo Ghost Mine -[2018-02-13T00:39:20.926] [INFO] cheese - inserting 1000 documents. first: Category:1060s in Spain and last: O. James Garden -[2018-02-13T00:39:20.932] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:39:20.961] [INFO] cheese - inserting 1000 documents. first: Single-taxers and last: Ekron Airfield -[2018-02-13T00:39:20.975] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:39:21.020] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:39:21.272] [INFO] cheese - inserting 1000 documents. first: Mariya Vladimirovna Romanova and last: Giorgos Patis -[2018-02-13T00:39:21.310] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:39:21.365] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mitch Zamojc and last: Alicante International Airport -[2018-02-13T00:39:21.410] [INFO] cheese - inserting 1000 documents. first: File:Hiller X-18 front.jpg and last: Striation -[2018-02-13T00:39:21.427] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:39:21.471] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeff the Killer and last: Template:WANFL Ladder/1970 -[2018-02-13T00:39:21.517] [INFO] cheese - inserting 1000 documents. first: Amalgamated Society of Dyers, Finishers and Kindred Trades and last: Kurt Heatherley -[2018-02-13T00:39:21.549] [INFO] cheese - inserting 1000 documents. first: C9H13NO and last: Saint Marcouf Islands -[2018-02-13T00:39:21.554] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:39:21.601] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:39:21.710] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:39:21.724] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:39:21.758] [INFO] cheese - inserting 1000 documents. first: Horst Bagdonat and last: Music Cartel Records -[2018-02-13T00:39:21.769] [INFO] cheese - inserting 1000 documents. first: Dollie de Luxe and last: Sedapatti block -[2018-02-13T00:39:21.808] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:39:21.861] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T00:39:22.105] [INFO] cheese - inserting 1000 documents. first: Adolph Marx and last: APT James -[2018-02-13T00:39:22.104] [INFO] cheese - inserting 1000 documents. first: Super Thunder Blade and last: James Mansfield -[2018-02-13T00:39:22.150] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:39:22.189] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:39:22.196] [INFO] cheese - inserting 1000 documents. first: Haemanota croceicauda and last: Template:Belgian football transfers -[2018-02-13T00:39:22.258] [INFO] cheese - inserting 1000 documents. first: Ramberg-Osgood relationship and last: Wikipedia:Articles for deletion/National Junior Hockey League -[2018-02-13T00:39:22.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/University of the Philippines College of Social Work and Community Development and last: Template:Expand Kurmanji -[2018-02-13T00:39:22.354] [INFO] cheese - inserting 1000 documents. first: Lau Siu-kai and last: White Elster -[2018-02-13T00:39:22.359] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:39:22.367] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:39:22.370] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:22.452] [INFO] cheese - inserting 1000 documents. first: International Criminal Court investigation in Democratic Republic of the Congo and last: Alwarthirunagiri block -[2018-02-13T00:39:22.463] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:39:22.508] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:39:22.554] [INFO] cheese - inserting 1000 documents. first: AQ Shipley and last: Anarchy in the U K -[2018-02-13T00:39:22.588] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:39:22.742] [INFO] cheese - inserting 1000 documents. first: Baby,Now That I've Found You and last: Alton R. Waldon Jr. -[2018-02-13T00:39:22.753] [INFO] cheese - inserting 1000 documents. first: Category:Modularity and last: File:Borgund Stave Church in Lærdalen, 2013 June.jpg -[2018-02-13T00:39:22.790] [INFO] cheese - inserting 1000 documents. first: Mixed mating model and last: World of warcraft: Cataclysm -[2018-02-13T00:39:22.809] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Boston/Mass message and last: Darrell Lockhart -[2018-02-13T00:39:22.827] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:39:22.852] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:39:22.910] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:39:22.942] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:39:23.040] [INFO] cheese - inserting 1000 documents. first: Anarchy in the U. K. (Megadeth single) and last: B S Chimni -[2018-02-13T00:39:23.041] [INFO] cheese - inserting 1000 documents. first: Anopheles stephensi and last: Hockey at the 1995 Pan American Games -[2018-02-13T00:39:23.091] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:39:23.152] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:39:23.244] [INFO] cheese - inserting 1000 documents. first: Salvia spathacea and last: Úbeda -[2018-02-13T00:39:23.315] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:39:23.512] [INFO] cheese - inserting 1000 documents. first: Zgârcea River and last: Saint-Oyens, Switzerland -[2018-02-13T00:39:23.518] [INFO] cheese - inserting 1000 documents. first: Castlegar Regional Airport and last: Shishido Baiken -[2018-02-13T00:39:23.525] [INFO] cheese - inserting 1000 documents. first: The Blacherne and last: File:Paganini Horror (1989 film).jpg -[2018-02-13T00:39:23.599] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:39:23.602] [INFO] cheese - inserting 1000 documents. first: Forest Flora of British Burma and last: Template:Campaignbox India 1857 -[2018-02-13T00:39:23.612] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:39:23.624] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:39:23.745] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:39:23.751] [INFO] cheese - inserting 1000 documents. first: Boy Governor and last: Shlomit -[2018-02-13T00:39:23.792] [INFO] cheese - inserting 1000 documents. first: File:Les sous-doués en vacances.jpg and last: Pulitzer Prize for Local General or Spot News reporting -[2018-02-13T00:39:23.873] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:39:23.979] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T00:39:24.224] [INFO] cheese - inserting 1000 documents. first: Template:Sedgwick County, Colorado and last: Horny like a samurai -[2018-02-13T00:39:24.290] [INFO] cheese - inserting 1000 documents. first: Category:Azerbaijani singer-songwriters and last: Prime Minister (United Kingdom of Great Britain and Northern Ireland) -[2018-02-13T00:39:24.294] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:39:24.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of deaths at the Berlin Wall/archive1 and last: Fundacion Adepal Alcazar -[2018-02-13T00:39:24.345] [INFO] cheese - inserting 1000 documents. first: Indonesian Idol and last: KK (New York City Subway service) -[2018-02-13T00:39:24.352] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:39:24.354] [INFO] cheese - inserting 1000 documents. first: Adhimoolam and last: Electricity sector of the United States -[2018-02-13T00:39:24.393] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:39:24.395] [INFO] cheese - inserting 1000 documents. first: Markov chain mixing time and last: Gabriel Guerra-Mondragón -[2018-02-13T00:39:24.404] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:39:24.449] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:39:24.465] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:39:24.532] [INFO] cheese - inserting 1000 documents. first: St. Jan Berchmans Church, Brussels and last: Sally Jackson (disambiguation) -[2018-02-13T00:39:24.581] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:39:24.643] [INFO] cheese - inserting 1000 documents. first: King's Highway (Brooklyn) and last: Melvyn Goldstein -[2018-02-13T00:39:24.682] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:39:24.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of United States shopping malls by state 2 and last: Pakashticë -[2018-02-13T00:39:24.721] [INFO] cheese - inserting 1000 documents. first: Aerolineas Argentinas Magazine and last: Athletics at the 1990 Commonwealth Games - Men's 1500 metres -[2018-02-13T00:39:24.730] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:39:24.749] [INFO] cheese - inserting 1000 documents. first: 2009 US Open – Boys' Doubles and last: Kamenný Újezd (České Budějovice District) -[2018-02-13T00:39:24.779] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:39:24.797] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:39:24.799] [INFO] cheese - inserting 1000 documents. first: TT (New York City Subway service) and last: Al'Thor -[2018-02-13T00:39:24.855] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:39:24.882] [INFO] cheese - inserting 1000 documents. first: CBMT and last: Category:Albums produced by Don Gallucci -[2018-02-13T00:39:24.921] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:39:24.958] [INFO] cheese - inserting 1000 documents. first: George Guy Dodson and last: The Weather Station -[2018-02-13T00:39:25.003] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:39:25.065] [INFO] cheese - inserting 1000 documents. first: File:IncredibleHulkTVreference.jpg and last: Detours (Sheryl Crow album) -[2018-02-13T00:39:25.103] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:39:25.106] [INFO] cheese - inserting 1000 documents. first: Billy Ngawini and last: Rajeev shukla -[2018-02-13T00:39:25.120] [INFO] cheese - inserting 1000 documents. first: Cheung Ka Long and last: Template:The Box Tops -[2018-02-13T00:39:25.151] [INFO] cheese - inserting 1000 documents. first: Komařice and last: Category:Depression-era mobsters -[2018-02-13T00:39:25.162] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:39:25.173] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:39:25.242] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:39:25.328] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Olean High School shooting and last: Category:Albums produced by King Curtis -[2018-02-13T00:39:25.432] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:39:25.482] [INFO] cheese - inserting 1000 documents. first: Bal Bharati Public School and last: Rsync server -[2018-02-13T00:39:25.566] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:39:25.645] [INFO] cheese - inserting 1000 documents. first: Herrmann, Fernand and last: Sławomir Drabik -[2018-02-13T00:39:25.699] [INFO] cheese - inserting 1000 documents. first: Delphine Depardieu and last: Template:Malaysian general election, 1978 (Penang) -[2018-02-13T00:39:25.714] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Miki Imai (athlete) and last: Wikipedia:Articles for deletion/Pavel Tichon -[2018-02-13T00:39:25.725] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:39:25.739] [INFO] cheese - inserting 1000 documents. first: Nintendo Magazine System: Australia and last: Demba Touré -[2018-02-13T00:39:25.810] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:39:25.845] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:39:25.833] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:39:25.883] [INFO] cheese - inserting 1000 documents. first: Vericeras and last: Wikipedia:WikiProject Spam/LinkReports/hunkaryemekcim.com -[2018-02-13T00:39:25.956] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:39:25.997] [INFO] cheese - inserting 1000 documents. first: Category:Trials in Japan and last: Category:Youngstown articles missing geocoordinate data -[2018-02-13T00:39:26.091] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:39:26.158] [INFO] cheese - inserting 1000 documents. first: John George Spencer-Churchill and last: Antimicrobial agent -[2018-02-13T00:39:26.232] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:39:26.266] [INFO] cheese - inserting 1000 documents. first: Category:Prehistoric pigs and last: Gösta Löfgren -[2018-02-13T00:39:26.317] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Rajshahi District and last: Croft, David -[2018-02-13T00:39:26.317] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:39:26.356] [INFO] cheese - inserting 1000 documents. first: Hessen (ship) and last: Lassik language -[2018-02-13T00:39:26.362] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:26.383] [INFO] cheese - inserting 1000 documents. first: Ramón calderon and last: Headless drummer -[2018-02-13T00:39:26.405] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:39:26.434] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:26.499] [INFO] cheese - inserting 1000 documents. first: Debary, Florida and last: Rrrrrrr!! -[2018-02-13T00:39:26.533] [INFO] cheese - inserting 1000 documents. first: Cauchy–Peano theorem and last: McKim -[2018-02-13T00:39:26.562] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:39:26.605] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:39:26.750] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stagg Marching Chargers and last: Template:Music-genre-stub -[2018-02-13T00:39:26.758] [INFO] cheese - inserting 1000 documents. first: Eladha, Hora Tu Fotos and last: Gmina Pabianice -[2018-02-13T00:39:26.767] [INFO] cheese - inserting 1000 documents. first: Crosbie, David and last: Wikipedia:Articles for deletion/MobiKwik -[2018-02-13T00:39:26.810] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:39:26.814] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:39:26.826] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:39:26.834] [INFO] cheese - inserting 1000 documents. first: Alexander Basilaia and last: Tim Montez -[2018-02-13T00:39:26.865] [INFO] cheese - inserting 1000 documents. first: Nanjapur, Ranga Reddy district and last: Bocicau -[2018-02-13T00:39:26.886] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:39:26.891] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:39:26.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Siren Song (Erasure song) and last: Category:765 establishments -[2018-02-13T00:39:26.996] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:39:27.043] [INFO] cheese - inserting 1000 documents. first: Cvetan Čurlinov and last: Valkas novads -[2018-02-13T00:39:27.086] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:39:27.222] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Simplilearn and last: Caudron-Renault CR.770 Cyclone -[2018-02-13T00:39:27.253] [INFO] cheese - inserting 1000 documents. first: Dr. Francis Kallarakal and last: RdRand -[2018-02-13T00:39:27.267] [INFO] cheese - inserting 1000 documents. first: 3 (Firehouse album) and last: Template:Kępno County -[2018-02-13T00:39:27.349] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:39:27.359] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:39:27.365] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:39:27.346] [INFO] cheese - inserting 1000 documents. first: Template:Brook Benton and last: Category:1889 establishments in Ohio -[2018-02-13T00:39:27.500] [INFO] cheese - inserting 1000 documents. first: Template:Musical-instrument-stub and last: Jeff Tedford -[2018-02-13T00:39:27.505] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:39:27.575] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:39:27.582] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Boone County, Missouri and last: Template:Fb competition 2009-10 WNLD1 -[2018-02-13T00:39:27.674] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:27.703] [INFO] cheese - inserting 1000 documents. first: Raad-1 / Thunder 1 Artillery and last: Siege of Boonesborough -[2018-02-13T00:39:27.798] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:39:27.863] [INFO] cheese - inserting 1000 documents. first: Pavel Štěpánek and last: Category:Contemporary art magazines -[2018-02-13T00:39:27.908] [INFO] cheese - inserting 1000 documents. first: File:JayIsaac2016.jpeg and last: Telle mère, telle fille -[2018-02-13T00:39:27.913] [INFO] cheese - inserting 1000 documents. first: 2081: A Hopeful View of the Human Future and last: Leandro and Leonardo -[2018-02-13T00:39:27.921] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:39:27.960] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:39:27.972] [INFO] cheese - inserting 1000 documents. first: List of national parks of Malawi and last: The Cord of Life -[2018-02-13T00:39:27.973] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:39:28.049] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:39:28.188] [INFO] cheese - inserting 1000 documents. first: Orion Media and last: Longfin lizardfish -[2018-02-13T00:39:28.193] [INFO] cheese - inserting 1000 documents. first: Alan Erasmus and last: William Henry Cavendish Bentinck -[2018-02-13T00:39:28.259] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:39:28.262] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:39:28.280] [INFO] cheese - inserting 1000 documents. first: Asian pacific american history month and last: The Women's History of the World (book) -[2018-02-13T00:39:28.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/tsogem.com and last: Template:S-line/RB-Hesse right/36 -[2018-02-13T00:39:28.377] [INFO] cheese - inserting 1000 documents. first: Bancroft, Edward and last: File:Lady Be Good For Ella.jpg -[2018-02-13T00:39:28.428] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:39:28.453] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:39:28.483] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:39:28.653] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Barbarajohnson1/Archive and last: Education, Education, Education and War -[2018-02-13T00:39:28.698] [INFO] cheese - inserting 1000 documents. first: Category:Shopping malls in San Antonio and last: Yemen at the Olympics -[2018-02-13T00:39:28.755] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:39:28.792] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:39:28.909] [INFO] cheese - inserting 1000 documents. first: Sea of Love (Fly to the Sky album) and last: Template:Wikiproject China -[2018-02-13T00:39:29.027] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:29.058] [INFO] cheese - inserting 1000 documents. first: Wikipedia:FOSS and last: Manuela Campanelli (scientist) -[2018-02-13T00:39:29.129] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:29.142] [INFO] cheese - inserting 1000 documents. first: Bantu Education Act, 1953 and last: William Linn -[2018-02-13T00:39:29.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jamie MacMillan and last: Ay, Jalisco no te rajes! -[2018-02-13T00:39:29.198] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:39:29.224] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:39:29.247] [INFO] cheese - inserting 1000 documents. first: Dada Kondke and last: Single-tier municipalities -[2018-02-13T00:39:29.308] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:39:29.405] [INFO] cheese - inserting 1000 documents. first: Category:Bodies of water of Susquehanna County, Pennsylvania and last: Wikipedia:WikiProject Spam/Local/books.google.bg -[2018-02-13T00:39:29.424] [INFO] cheese - inserting 1000 documents. first: John B. Stephenson and last: Roswell H. Lamson -[2018-02-13T00:39:29.448] [INFO] cheese - inserting 1000 documents. first: Category:Road-Sea Southampton F.C. players and last: Protected battery -[2018-02-13T00:39:29.456] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:29.469] [INFO] cheese - inserting 1000 documents. first: Category:Uzbekistani comedians and last: NK Interblok Ljubljana -[2018-02-13T00:39:29.479] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:39:29.482] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:39:29.537] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:39:29.598] [INFO] cheese - inserting 1000 documents. first: Cierva Autogiro Company, Ltd. and last: Wheel of Fire (Babylon 5) -[2018-02-13T00:39:29.612] [INFO] cheese - inserting 1000 documents. first: Template:AncientRome-stub and last: Ancro -[2018-02-13T00:39:29.635] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:39:29.653] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:39:29.719] [INFO] cheese - inserting 1000 documents. first: Marianna Historic District (Marianna, Florida) and last: Wikipedia:Articles for deletion/Baker (TV series) -[2018-02-13T00:39:29.769] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:39:29.841] [INFO] cheese - inserting 1000 documents. first: The Wrong Man (disambiguation) and last: File:Bw frankenstein.jpg -[2018-02-13T00:39:29.883] [INFO] cheese - inserting 1000 documents. first: Dingy Scrub-hopper and last: Richardson's moray eel -[2018-02-13T00:39:29.886] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:39:29.921] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:39:29.939] [INFO] cheese - inserting 1000 documents. first: Asian giant toad and last: Vijayan Nair -[2018-02-13T00:39:29.954] [INFO] cheese - inserting 1000 documents. first: Mu Les and last: Bradford Park Avenue AFC -[2018-02-13T00:39:29.981] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:39:29.996] [INFO] cheese - inserting 1000 documents. first: 葉亞來 and last: Glorious Lady -[2018-02-13T00:39:30.015] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:39:30.137] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:39:30.256] [INFO] cheese - inserting 1000 documents. first: Vezina and last: The Capitols -[2018-02-13T00:39:30.353] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:39:30.460] [INFO] cheese - inserting 1000 documents. first: Bradford Town F C and last: Mary Pickford films -[2018-02-13T00:39:30.494] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:39:30.498] [INFO] cheese - inserting 1000 documents. first: Category:Monuments and memorials on the National Register of Historic Places in Maryland and last: Semen Makovich -[2018-02-13T00:39:30.506] [INFO] cheese - inserting 1000 documents. first: Post & Mail Tower and last: 2006 U.S. heat wave -[2018-02-13T00:39:30.563] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:39:30.596] [INFO] cheese - inserting 1000 documents. first: 2006–07 Uganda Super League and last: Zeppelin LZ 2 -[2018-02-13T00:39:30.610] [INFO] cheese - inserting 1000 documents. first: Round Lick and last: Wikipedia:Featured picture candidates/File:Musca domestica Portrait.jpg -[2018-02-13T00:39:30.642] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:39:30.661] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:39:30.696] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:39:30.835] [INFO] cheese - inserting 1000 documents. first: Darlenis Obregon Mulato and last: Sığracık, Emirdağ -[2018-02-13T00:39:30.887] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:39:31.037] [INFO] cheese - inserting 1000 documents. first: Category:Serbian female javelin throwers and last: Category:Olympic bronze medalists for the United States in tug of war -[2018-02-13T00:39:31.091] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:39:31.114] [INFO] cheese - inserting 1000 documents. first: Gdamm and last: History of east carolina university -[2018-02-13T00:39:31.210] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:39:31.361] [INFO] cheese - inserting 1000 documents. first: Category:Class-II stars and last: Tekeze River -[2018-02-13T00:39:31.367] [INFO] cheese - inserting 1000 documents. first: Rha and last: Sayers 40, Inc. -[2018-02-13T00:39:31.407] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:39:31.418] [INFO] cheese - inserting 1000 documents. first: L. Birge Harrison and last: Diana Fowley -[2018-02-13T00:39:31.454] [INFO] cheese - inserting 1000 documents. first: Zeppelin LZ 3 and last: Iglesia de la Trinidad -[2018-02-13T00:39:31.455] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T00:39:31.489] [INFO] cheese - inserting 1000 documents. first: History of east finchley and last: Clay research award -[2018-02-13T00:39:31.495] [INFO] cheese - inserting 1000 documents. first: Soğukkuyu, Emirdağ and last: Cuckquean -[2018-02-13T00:39:31.501] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:39:31.521] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:39:31.526] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:39:31.595] [INFO] cheese - inserting 1000 documents. first: Punto Chapultepec and last: AELS -[2018-02-13T00:39:31.616] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:39:31.645] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:39:31.833] [INFO] cheese - inserting 1000 documents. first: Sword Quest and last: Home of the youth -[2018-02-13T00:39:31.855] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:39:31.939] [INFO] cheese - inserting 1000 documents. first: Buddhism in Korea and last: Paul Robeson, The Soviet Union and Communism -[2018-02-13T00:39:31.982] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:39:32.026] [INFO] cheese - inserting 1000 documents. first: Chanel the cheetah girl and last: Phillips v. AWH -[2018-02-13T00:39:32.054] [INFO] cheese - inserting 1000 documents. first: Live at Last and last: Metamorfosi -[2018-02-13T00:39:32.055] [INFO] cheese - inserting 1000 documents. first: Home ownership in australia and last: House of large sizes -[2018-02-13T00:39:32.057] [INFO] cheese - inserting 1000 documents. first: Golden Age of Aviation and last: Category:Democratic People's Front politicians -[2018-02-13T00:39:32.070] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:39:32.073] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:39:32.090] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Truthserum213 and last: Kathrin Marchand -[2018-02-13T00:39:32.103] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:39:32.125] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:39:32.168] [INFO] cheese - inserting 1000 documents. first: Schweizer, Peter and last: Wikipedia:Articles for deletion/Merdeka Plaza -[2018-02-13T00:39:32.170] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:39:32.217] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:39:32.256] [INFO] cheese - inserting 1000 documents. first: House of leiningen and last: Morne Tranquille -[2018-02-13T00:39:32.287] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:39:32.356] [INFO] cheese - inserting 1000 documents. first: Radiative rate and last: 1974 Oran Park round of the Tasman Series -[2018-02-13T00:39:32.420] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:39:32.504] [INFO] cheese - inserting 1000 documents. first: Aletta Jorritsma and last: Zaidatul Husniah Zulkifli -[2018-02-13T00:39:32.529] [INFO] cheese - inserting 1000 documents. first: The Late, Late Show (album) and last: For the Term of His Natural Life (1908 film) -[2018-02-13T00:39:32.529] [INFO] cheese - inserting 1000 documents. first: Category:Democratic People's Front and last: Book:Ray Liotta -[2018-02-13T00:39:32.558] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:39:32.602] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:39:32.607] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:39:32.641] [INFO] cheese - inserting 1000 documents. first: Col. G.S. Dhillon and last: Kyoto Palace -[2018-02-13T00:39:32.715] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:39:32.767] [INFO] cheese - inserting 1000 documents. first: Huwal of the west welsh and last: Splitter (geometry) -[2018-02-13T00:39:32.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Crowne Plaza Riverside and last: Elbląg Voivodship -[2018-02-13T00:39:32.820] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:39:32.861] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:39:32.885] [INFO] cheese - inserting 1000 documents. first: Alberta Highway 549 and last: Ganj Golai -[2018-02-13T00:39:32.952] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:39:32.960] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Israel at the 1950 FIFA World Cup and last: James McEwan (disambiguation) -[2018-02-13T00:39:33.007] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/heatsinkcalculator.com and last: Vandazhi (disambiguation) -[2018-02-13T00:39:33.027] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:39:33.058] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:39:33.124] [INFO] cheese - inserting 1000 documents. first: MiR-138 and last: 1953 Copa del Generalísimo -[2018-02-13T00:39:33.164] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:39:33.373] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/E-flite Blade CX and last: N95-2 -[2018-02-13T00:39:33.413] [INFO] cheese - inserting 1000 documents. first: Cape Verdean Italian and last: Morašice (Znojmo District) -[2018-02-13T00:39:33.420] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:39:33.425] [INFO] cheese - inserting 1000 documents. first: File:Buffalo Dreams Promo.jpg and last: She's A Thief -[2018-02-13T00:39:33.434] [INFO] cheese - inserting 1000 documents. first: The Scarecrow and last: Category:316 BC births -[2018-02-13T00:39:33.440] [INFO] cheese - inserting 1000 documents. first: Victorian Railways box and louvre vans (disambiguation) and last: Stokkseyrar-Dísa -[2018-02-13T00:39:33.447] [INFO] cheese - inserting 1000 documents. first: Category:Military units and formations of British Leeward Islands in World War II and last: Enkh-Amar Kharkhuu -[2018-02-13T00:39:33.457] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:39:33.489] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:39:33.492] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:39:33.495] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:39:33.523] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:39:33.616] [INFO] cheese - inserting 1000 documents. first: Lichas (Spartan) and last: Wikipedia:Sockpuppet investigations/Muhammadhamidrafique/Archive -[2018-02-13T00:39:33.655] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:39:33.780] [INFO] cheese - inserting 1000 documents. first: T. V. Sasivarna Thevar and last: Wikipedia:WikiProject Spam/LinkReports/grottegruppa.no -[2018-02-13T00:39:33.799] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/topper10.net and last: Seftan Delmer -[2018-02-13T00:39:33.835] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:39:33.839] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:39:33.885] [INFO] cheese - inserting 1000 documents. first: Amitié Stadium and last: Necrotizing soft tissue infection -[2018-02-13T00:39:33.918] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:39:33.952] [INFO] cheese - inserting 1000 documents. first: Semgallen and last: Parisian Radicalism -[2018-02-13T00:39:33.973] [INFO] cheese - inserting 1000 documents. first: Quake3 and last: The Battle of Brunanburh -[2018-02-13T00:39:34.000] [INFO] cheese - inserting 1000 documents. first: Thordis Markusdottir and last: Qaleh Sareban -[2018-02-13T00:39:34.006] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:39:34.018] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/A2adams/Archive and last: Monday's Rain -[2018-02-13T00:39:34.039] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:39:34.057] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:39:34.063] [INFO] cheese - inserting 1000 documents. first: CHYKN and last: Category:World Rally Championship seasons -[2018-02-13T00:39:34.093] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:39:34.097] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:39:34.228] [INFO] cheese - inserting 1000 documents. first: Thomas St George McCarthy Cup and last: Geoff Schmidt -[2018-02-13T00:39:34.259] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:39:34.261] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jedi Temple and last: The Opening of the First Parliament -[2018-02-13T00:39:34.335] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:39:34.359] [INFO] cheese - inserting 1000 documents. first: City of Richmond v. J. A. Croson Co. and last: Informa Maritime & Transport -[2018-02-13T00:39:34.433] [INFO] cheese - inserting 1000 documents. first: Qomshan and last: Angelicaut -[2018-02-13T00:39:34.462] [INFO] cheese - inserting 1000 documents. first: XHNOA-TV and last: Waitahuna -[2018-02-13T00:39:34.502] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:39:34.592] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:39:34.630] [INFO] cheese - inserting 1000 documents. first: Agda (theorem prover) and last: Queens Hotel (Southsea) -[2018-02-13T00:39:34.642] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:39:34.719] [INFO] cheese - inserting 1000 documents. first: The Cattle Raid of Cooley and last: Metrovick -[2018-02-13T00:39:34.769] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:39:34.800] [INFO] cheese - inserting 1000 documents. first: Eps1.6 v1ew-s0urce.flv and last: Yoganidrasana -[2018-02-13T00:39:34.815] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:39:34.848] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:39:34.910] [INFO] cheese - inserting 1000 documents. first: D C hand dance and last: DW Griffith filmography -[2018-02-13T00:39:34.945] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:39:35.005] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/St John's CofE Primary School (2nd nomination) and last: Plan to kidnap Pius XII -[2018-02-13T00:39:35.124] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:39:35.196] [INFO] cheese - inserting 1000 documents. first: Jacopo Borbone and last: Research Professor -[2018-02-13T00:39:35.216] [INFO] cheese - inserting 1000 documents. first: Frankfort, New York and last: Category:Iranian athletes -[2018-02-13T00:39:35.241] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:39:35.256] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:39:35.270] [INFO] cheese - inserting 1000 documents. first: Thermo-Gel and last: Rein-rain merger -[2018-02-13T00:39:35.282] [INFO] cheese - inserting 1000 documents. first: DW Harvey and last: PA 894 -[2018-02-13T00:39:35.314] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:39:35.316] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:39:35.457] [INFO] cheese - inserting 1000 documents. first: Nancy Ammerman and last: Grand Mixer DXT -[2018-02-13T00:39:35.496] [INFO] cheese - inserting 1000 documents. first: Julián Ayala and last: Ágnes Ferencz -[2018-02-13T00:39:35.507] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:39:35.513] [INFO] cheese - inserting 1000 documents. first: McCoy Tyner Music and last: Template:Infobox LDS Temple -[2018-02-13T00:39:35.553] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:39:35.565] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:39:35.580] [INFO] cheese - inserting 1000 documents. first: Cranmoor and last: Hashiba Hidetsugu -[2018-02-13T00:39:35.602] [INFO] cheese - inserting 1000 documents. first: Audrey (Neighbours) and last: Vajra (King Aniruddha's Son) -[2018-02-13T00:39:35.619] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:39:35.640] [INFO] cheese - inserting 1000 documents. first: Toe-tow merger and last: Pixner -[2018-02-13T00:39:35.651] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:39:35.695] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:39:35.901] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anton (Bubbe's Boarding House) and last: Opera (band) -[2018-02-13T00:39:35.932] [INFO] cheese - inserting 1000 documents. first: V/Line P class and last: 2008 in heavy metal music -[2018-02-13T00:39:35.934] [INFO] cheese - inserting 1000 documents. first: Černov and last: Category:Seleucid Empire successor states -[2018-02-13T00:39:35.944] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:39:35.969] [INFO] cheese - inserting 1000 documents. first: File:Smokey Robinson - Big Time album cover.jpg and last: Polokwane City F.C. -[2018-02-13T00:39:35.974] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:39:36.004] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:39:36.026] [INFO] cheese - inserting 1000 documents. first: The Country Code and last: Crush by elephant -[2018-02-13T00:39:36.043] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:39:36.065] [INFO] cheese - inserting 1000 documents. first: North Kawartha, Ontario and last: Virginia Furnace -[2018-02-13T00:39:36.141] [INFO] cheese - inserting 1000 documents. first: Panj, Iran and last: Nowghan Sofla -[2018-02-13T00:39:36.191] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:39:36.209] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:36.248] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:39:36.450] [INFO] cheese - inserting 1000 documents. first: Rohini Sector 18, 19 metro station and last: Template:Australia-weightlifting-bio-stub -[2018-02-13T00:39:36.532] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:36.596] [INFO] cheese - inserting 1000 documents. first: Symonds Yat railway station and last: List of Aria (manga) soundtracks -[2018-02-13T00:39:36.677] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:39:36.765] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2007 December 28 and last: Quiet company -[2018-02-13T00:39:36.800] [INFO] cheese - inserting 1000 documents. first: Church of la Asunción (Almansa) and last: File:Grip Tape Further.jpg -[2018-02-13T00:39:36.837] [INFO] cheese - inserting 1000 documents. first: Ellesmere Rural and last: Escape pod podcast -[2018-02-13T00:39:36.866] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:39:36.876] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:39:36.959] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:39:36.978] [INFO] cheese - inserting 1000 documents. first: Lucio Schiavon and last: Heliconia automatia -[2018-02-13T00:39:37.017] [INFO] cheese - inserting 1000 documents. first: John Hudson (classicist) and last: Werner Stocker (actor) -[2018-02-13T00:39:37.073] [INFO] cheese - inserting 1000 documents. first: Category:São Tomé and Príncipe long-distance runners and last: C. J. Ham -[2018-02-13T00:39:37.074] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:39:37.099] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:39:37.188] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:39:37.276] [INFO] cheese - inserting 1000 documents. first: Eiichirô Mishima and last: Category:Batavia -[2018-02-13T00:39:37.320] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:39:37.379] [INFO] cheese - inserting 1000 documents. first: JACL (disambiguation) and last: Category:Lists of surviving military aircraft -[2018-02-13T00:39:37.442] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:39:37.489] [INFO] cheese - inserting 1000 documents. first: File:CollinsKellewayAndrews.jpg and last: Isle of Valen -[2018-02-13T00:39:37.544] [INFO] cheese - inserting 1000 documents. first: Eueides egeriformis and last: Wikipedia:Articles for deletion/Forgotten Kingdom Series -[2018-02-13T00:39:37.552] [INFO] cheese - inserting 1000 documents. first: Zombie knife and last: Thakins and the Struggle for National Independence (1930-1948) -[2018-02-13T00:39:37.554] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:39:37.569] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pirates/Managers and ownership and last: Enterprise, Trinidad and Tobago -[2018-02-13T00:39:37.635] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:39:37.676] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:39:37.704] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:39:37.791] [INFO] cheese - inserting 1000 documents. first: Ernest Brown (dancer) and last: Paramount-Publix Corporation -[2018-02-13T00:39:37.810] [INFO] cheese - inserting 1000 documents. first: Toghril Beg and last: Garbage bin -[2018-02-13T00:39:37.838] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:39:37.895] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:39:37.901] [INFO] cheese - inserting 1000 documents. first: Vasovist and last: Einstein's gift -[2018-02-13T00:39:38.116] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:39:38.267] [INFO] cheese - inserting 1000 documents. first: List of Guardians in a Series of Unfortunate Events and last: Tehachapi, Ca -[2018-02-13T00:39:38.358] [INFO] cheese - inserting 1000 documents. first: The Lion's Parasites and last: Wikipedia:Articles for deletion/Kevin Casha -[2018-02-13T00:39:38.357] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:39:38.384] [INFO] cheese - inserting 1000 documents. first: Dumbo (2017 film) and last: Rick Snyder (psychologist) -[2018-02-13T00:39:38.400] [INFO] cheese - inserting 1000 documents. first: C'est Toi (It's You) and last: Drahabuzh River -[2018-02-13T00:39:38.447] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:39:38.504] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:39:38.511] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:39:38.567] [INFO] cheese - inserting 1000 documents. first: Category:Lafayette and last: The Outer Gate -[2018-02-13T00:39:38.627] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:39:38.762] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2011 September 9 and last: Xen hypervisor -[2018-02-13T00:39:38.797] [INFO] cheese - inserting 1000 documents. first: North Minch and last: Canton of Appenzell Ausserrhoden -[2018-02-13T00:39:38.816] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:39:38.862] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:39:38.898] [INFO] cheese - inserting 1000 documents. first: Tehama, Ca and last: Gerardo Nunez -[2018-02-13T00:39:38.912] [INFO] cheese - inserting 1000 documents. first: Peru national under-16 and under-17 basketball team and last: In the Now -[2018-02-13T00:39:38.958] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:39:38.976] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:39:39.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Armenia/right panel and last: Kokang Special Region -[2018-02-13T00:39:39.066] [INFO] cheese - inserting 1000 documents. first: Ivan Jurić and last: Estados Unidos de América -[2018-02-13T00:39:39.087] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:39:39.114] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:39:39.170] [INFO] cheese - inserting 1000 documents. first: Category:Plays by George Wilkins and last: 20,000 Leagues Across the Land -[2018-02-13T00:39:39.215] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:39.219] [INFO] cheese - inserting 1000 documents. first: Aiesec Waikato and last: Fezakinumab -[2018-02-13T00:39:39.268] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:39:39.383] [INFO] cheese - inserting 1000 documents. first: Old Feijó Airport and last: Category:1991 in Italian cinema -[2018-02-13T00:39:39.395] [INFO] cheese - inserting 1000 documents. first: Portal:City of Bankstown/Selected article/2 and last: Holy Assumption of the Virgin Mary Church -[2018-02-13T00:39:39.426] [INFO] cheese - inserting 1000 documents. first: Bühler (disambiguation) and last: B. Brian Blair -[2018-02-13T00:39:39.446] [INFO] cheese - inserting 1000 documents. first: Loyal Irish Union and last: Rock-afire -[2018-02-13T00:39:39.446] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:39:39.477] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:39.505] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:39:39.570] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:39:39.648] [INFO] cheese - inserting 1000 documents. first: Trafford Ice Dome and last: KT Kumho Rent A Car -[2018-02-13T00:39:39.746] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:39:39.860] [INFO] cheese - inserting 1000 documents. first: Saturday's Children and last: File:Tangent Online logo.png -[2018-02-13T00:39:40.010] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:39:40.065] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/karoo-southafrica.co.za and last: Darcheh Abed -[2018-02-13T00:39:40.168] [INFO] cheese - inserting 1000 documents. first: West Crossett, Ar and last: Wikipedia:WikiProject Military history/Peer review/United States Naval Special Warfare Command -[2018-02-13T00:39:40.216] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:39:40.252] [INFO] cheese - inserting 1000 documents. first: Category:1992 in Italian cinema and last: Spacer (song) -[2018-02-13T00:39:40.278] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:39:40.295] [INFO] cheese - inserting 1000 documents. first: Category:Print media people from Liverpool and last: 2009 Nordic Trophy (Swedish tournament) -[2018-02-13T00:39:40.342] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:39:40.378] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:39:40.565] [INFO] cheese - inserting 1000 documents. first: Halton Moor and last: Daniel Robles -[2018-02-13T00:39:40.573] [INFO] cheese - inserting 1000 documents. first: Fathen and last: Cathedral of the Guardian Angel -[2018-02-13T00:39:40.632] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T00:39:40.645] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:39:40.719] [INFO] cheese - inserting 1000 documents. first: Moshe Taube and last: Edward Holl -[2018-02-13T00:39:40.813] [INFO] cheese - inserting 1000 documents. first: Category:Buddhist monasteries in Canada and last: EC Smith House -[2018-02-13T00:39:40.826] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:39:40.837] [INFO] cheese - inserting 1000 documents. first: Darcheh-ye Abed and last: List of 2014 Indian Premier League personnel changes -[2018-02-13T00:39:40.871] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:39:40.878] [INFO] cheese - inserting 1000 documents. first: File:Gymnastics (Trampoline), London 2012.png and last: Category:Eastern Orthodox monasteries in Croatia -[2018-02-13T00:39:40.932] [INFO] cheese - inserting 1000 documents. first: Waste framework directive and last: Catacaustic -[2018-02-13T00:39:40.951] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:39:40.974] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:39:40.999] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:39:41.194] [INFO] cheese - inserting 1000 documents. first: DMAX (UK TV channel) and last: Wikipedia:Articles for deletion/Anneberg Motocross Track -[2018-02-13T00:39:41.251] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:39:41.280] [INFO] cheese - inserting 1000 documents. first: Siege of the North, Part II and last: Soran (region) -[2018-02-13T00:39:41.351] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:39:41.415] [INFO] cheese - inserting 1000 documents. first: On Dreams and last: Conan oBrien -[2018-02-13T00:39:41.426] [INFO] cheese - inserting 1000 documents. first: 2016 Hypo-Meeting and last: File:Bedevil Soundtrack Album Cover.jpg -[2018-02-13T00:39:41.432] [INFO] cheese - inserting 1000 documents. first: Andraca gongshanensis and last: Dorothy Y. Ko -[2018-02-13T00:39:41.478] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:39:41.490] [INFO] cheese - inserting 1000 documents. first: List of Dungeons & Dragons nonhuman deities and last: US Alençon 61 -[2018-02-13T00:39:41.497] [INFO] cheese - inserting 1000 documents. first: Am Rong and last: Casa air service -[2018-02-13T00:39:41.500] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:39:41.508] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:39:41.590] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:39:41.630] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:39:41.764] [INFO] cheese - inserting 1000 documents. first: F G Bailey and last: Anthea Turner: Perfect Housewife -[2018-02-13T00:39:41.810] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:39:42.131] [INFO] cheese - inserting 1000 documents. first: Plexiform neurofibroma and last: Wikipedia:Miscellany for deletion/Wikipedia:Community Portal/Redesign/Things to do -[2018-02-13T00:39:42.206] [INFO] cheese - inserting 1000 documents. first: Côte d'Or (brand) and last: Wikipedia:Articles for deletion/The Golden Truth -[2018-02-13T00:39:42.215] [INFO] cheese - inserting 1000 documents. first: Norse-Gaelic and last: WXBC (FM) -[2018-02-13T00:39:42.224] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Scotland articles needing expert attention and last: Journal of the American Osteopathic Association -[2018-02-13T00:39:42.224] [INFO] cheese - inserting 1000 documents. first: File:Pierre Victor Auger.jpg and last: Portal:Weather/Selected article/24 -[2018-02-13T00:39:42.228] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:39:42.251] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:39:42.269] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:39:42.281] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:39:42.307] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:39:42.333] [INFO] cheese - inserting 1000 documents. first: Francis Wegg-Prosser and last: Nepali (ethnicity) -[2018-02-13T00:39:42.426] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:39:42.589] [INFO] cheese - inserting 1000 documents. first: Bart Verschoor and last: Manually coded -[2018-02-13T00:39:42.648] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:39:42.653] [INFO] cheese - inserting 1000 documents. first: Beamish stout and last: Mooresville, Al -[2018-02-13T00:39:42.688] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:39:42.729] [INFO] cheese - inserting 1000 documents. first: Category:Retail companies of Mexico and last: University Station (MTR proposed) -[2018-02-13T00:39:42.761] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Community Portal/Redesign/Wikipedia by department and last: Milorad Miskovitch -[2018-02-13T00:39:42.763] [INFO] cheese - inserting 1000 documents. first: Saint Joseph's College (Kentucky) and last: Concrete (Tom Odell song) -[2018-02-13T00:39:42.771] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:39:42.803] [INFO] cheese - inserting 1000 documents. first: Chick Evans (baseball) and last: Wikipedia:WikiProject Spam/Local/windmill.org.au -[2018-02-13T00:39:42.813] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:39:42.823] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:39:42.884] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:39:42.970] [INFO] cheese - inserting 1000 documents. first: KVAN (AM) and last: U.S. Route 176 in South Carolina -[2018-02-13T00:39:42.994] [INFO] cheese - inserting 1000 documents. first: In Catilinam and last: Dharamasala -[2018-02-13T00:39:43.013] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:39:43.061] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:39:43.154] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Rhinella and last: Yanez's Tree Iguana -[2018-02-13T00:39:43.186] [INFO] cheese - inserting 1000 documents. first: Hasetsukabe no Koharumaru and last: 140th Fighter Group -[2018-02-13T00:39:43.215] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:39:43.216] [INFO] cheese - inserting 1000 documents. first: Echinocereus nivosus and last: Swiss International (badminton) -[2018-02-13T00:39:43.295] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:39:43.304] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:39:43.379] [INFO] cheese - inserting 1000 documents. first: The Final Reunion Tour – Cliff Richard and The Shadows and last: Category:Buildings and structures in Victoria County, Texas -[2018-02-13T00:39:43.381] [INFO] cheese - inserting 1000 documents. first: Mittelrhein (wine region) and last: Wikipedia:Featured picture candidates/Canada goose reflection 03.jpg -[2018-02-13T00:39:43.417] [INFO] cheese - inserting 1000 documents. first: Laari language and last: Final Fantasy X: Original Soundtrack -[2018-02-13T00:39:43.424] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:39:43.452] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:39:43.506] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:39:43.766] [INFO] cheese - inserting 1000 documents. first: 100 new shekel banknote and last: Filipe Baravilala -[2018-02-13T00:39:43.792] [INFO] cheese - inserting 1000 documents. first: Gretna F. C. and last: File:Johnny Powers Toronto.jpeg -[2018-02-13T00:39:43.802] [INFO] cheese - inserting 1000 documents. first: Germanic Neopaganism in Germany and last: Sarcomyces -[2018-02-13T00:39:43.803] [INFO] cheese - inserting 1000 documents. first: Hadley Common and last: The Rough Guide to the Music of Central America -[2018-02-13T00:39:43.804] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:43.818] [INFO] cheese - inserting 1000 documents. first: Fist Sized Chunks and last: The Hard Goodbye -[2018-02-13T00:39:43.828] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:39:43.846] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:39:43.863] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:39:43.903] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:39:43.935] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Wharton County, Texas and last: Heaven Afrika -[2018-02-13T00:39:43.953] [INFO] cheese - inserting 1000 documents. first: Sunless (song cycle) and last: Fort Pond Bay -[2018-02-13T00:39:43.999] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:39:44.046] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:39:44.224] [INFO] cheese - inserting 1000 documents. first: Category:Women's sports leagues in Belarus and last: Category:Centrism in South America -[2018-02-13T00:39:44.307] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:39:44.309] [INFO] cheese - inserting 1000 documents. first: Philip McLaren and last: Galway Borough by-election, 1906 -[2018-02-13T00:39:44.359] [INFO] cheese - inserting 1000 documents. first: Queen's Cove and last: Template:Gmina Godów -[2018-02-13T00:39:44.362] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:39:44.417] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:39:44.427] [INFO] cheese - inserting 1000 documents. first: Trichohelotium and last: Andy Brooks -[2018-02-13T00:39:44.451] [INFO] cheese - inserting 1000 documents. first: File:Moreseashells.jpg and last: Michael Dinneen -[2018-02-13T00:39:44.491] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:39:44.533] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:44.548] [INFO] cheese - inserting 1000 documents. first: Wulfbach and last: Estonia in the Eurovision Song Contest 2012 -[2018-02-13T00:39:44.624] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:39:44.677] [INFO] cheese - inserting 1000 documents. first: Decadic logarithm and last: Akinwale Arobieke -[2018-02-13T00:39:44.705] [INFO] cheese - inserting 1000 documents. first: Category:Belmont High School (Los Angeles, California) alumni and last: Category:United States Football League MVPs -[2018-02-13T00:39:44.734] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:39:44.773] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:39:44.909] [INFO] cheese - inserting 1000 documents. first: Damodar Das Arora and last: Steve Hoffman (American football) -[2018-02-13T00:39:45.014] [INFO] cheese - inserting 1000 documents. first: Fredro family and last: Module:Effective protection level -[2018-02-13T00:39:45.041] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:39:45.076] [INFO] cheese - inserting 1000 documents. first: Baron Wallscourt and last: Triple harp -[2018-02-13T00:39:45.087] [INFO] cheese - inserting 1000 documents. first: Bambarakele Falls and last: Corneo-scleral junction -[2018-02-13T00:39:45.111] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:39:45.138] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:39:45.168] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:39:45.244] [INFO] cheese - inserting 1000 documents. first: File:Beyonce-pulse.jpg and last: Category:School districts in Fisher County, Texas -[2018-02-13T00:39:45.310] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:39:45.429] [INFO] cheese - inserting 1000 documents. first: Tachytes etruscus and last: St. Xavier's Social Service Society -[2018-02-13T00:39:45.472] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:39:45.499] [INFO] cheese - inserting 1000 documents. first: Jim Gilliam and last: Administration on Aging -[2018-02-13T00:39:45.549] [INFO] cheese - inserting 1000 documents. first: Parrett Mountain Airport and last: Ceva, Thomas -[2018-02-13T00:39:45.560] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:39:45.610] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:39:45.632] [INFO] cheese - inserting 1000 documents. first: Those Were the Days (1997 film) and last: Supreme administrative court -[2018-02-13T00:39:45.704] [INFO] cheese - inserting 1000 documents. first: Solar maculopathy and last: Template:Chinese dictionaries -[2018-02-13T00:39:45.713] [INFO] cheese - inserting 1000 documents. first: Category:2014 Sun Belt Conference football season and last: File:Jessore University of Science & Technology logo.jpg -[2018-02-13T00:39:45.715] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:39:45.736] [INFO] cheese - inserting 1000 documents. first: Category:Education in Fisher County, Texas and last: Argentina during World War II -[2018-02-13T00:39:45.772] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:39:45.774] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:39:45.780] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:39:45.906] [INFO] cheese - inserting 1000 documents. first: 2016-17 Liga Națională (women's handball) and last: Category:Requests for badminton peer review -[2018-02-13T00:39:45.985] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:39:46.215] [INFO] cheese - inserting 1000 documents. first: Metal-Forum of Ukraine and last: Rizal Park -[2018-02-13T00:39:46.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Stub types for deletion/Log/2009/August/31 and last: Est Domains -[2018-02-13T00:39:46.257] [INFO] cheese - inserting 1000 documents. first: Navel (Jimsaku album) and last: Take This Waltz (film) -[2018-02-13T00:39:46.273] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:39:46.299] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:39:46.307] [INFO] cheese - inserting 1000 documents. first: File:Mthonjaneni CoA.png and last: Alec Smith (trade unionist) -[2018-02-13T00:39:46.315] [INFO] cheese - inserting 1000 documents. first: Repellent and last: David Lengal -[2018-02-13T00:39:46.347] [INFO] cheese - inserting 1000 documents. first: Harlow Aircraft Company and last: RLS algorithm -[2018-02-13T00:39:46.350] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:39:46.370] [INFO] cheese - inserting 1000 documents. first: Fran Beltrán and last: Nuno Miguel Figueiredo Afonso -[2018-02-13T00:39:46.413] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:39:46.421] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:39:46.437] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:39:46.494] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:39:46.916] [INFO] cheese - inserting 1000 documents. first: Category:Russian ultramarathon runners and last: Category:Models of Pakistani descent -[2018-02-13T00:39:47.013] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:39:47.032] [INFO] cheese - inserting 1000 documents. first: 1998–99 Northern Counties East Football League and last: 24-Hours of Reality -[2018-02-13T00:39:47.052] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Audrain County, Missouri and last: Channel Flip -[2018-02-13T00:39:47.190] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:39:47.200] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:39:47.360] [INFO] cheese - inserting 1000 documents. first: Jaime ortega and last: Marie Stubbs -[2018-02-13T00:39:47.399] [INFO] cheese - inserting 1000 documents. first: KLDC and last: Ratio scripta -[2018-02-13T00:39:47.402] [INFO] cheese - inserting 1000 documents. first: Curtiss Speedwing De Luxe B14B and last: Chempaha Perumal -[2018-02-13T00:39:47.424] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T00:39:47.439] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:39:47.447] [INFO] cheese - inserting 1000 documents. first: Timothy Rimbui and last: Baron Martin -[2018-02-13T00:39:47.480] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T00:39:47.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dollie Grissam and last: Template:Fb team Hamble Club -[2018-02-13T00:39:47.573] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T00:39:47.601] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:39:47.711] [INFO] cheese - inserting 1000 documents. first: Elachista occidentalis and last: Wikipedia:Articles for deletion/Robots and Racecars -[2018-02-13T00:39:47.718] [INFO] cheese - inserting 1000 documents. first: Matrix geometrical series and last: Mortgage Professionals Canada -[2018-02-13T00:39:47.752] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:47.783] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:39:47.988] [INFO] cheese - inserting 1000 documents. first: ISO-IR-99 and last: Paperweight (Feeder song) -[2018-02-13T00:39:47.994] [INFO] cheese - inserting 1000 documents. first: White Hall, Il and last: Gardu River (Sebeș) -[2018-02-13T00:39:48.028] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:39:48.035] [INFO] cheese - inserting 1000 documents. first: Rail Bank and last: File:F1poleposition64.jpg -[2018-02-13T00:39:48.069] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:39:48.126] [INFO] cheese - inserting 1000 documents. first: Ahmed Mohammed Ag Hamani and last: Blog hopping -[2018-02-13T00:39:48.153] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:39:48.215] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:39:48.263] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/saltiresociety.org.uk and last: C28H50 -[2018-02-13T00:39:48.333] [INFO] cheese - inserting 1000 documents. first: Schwarzbach (Günz) and last: Wikipedia:WikiProject Spam/Local/boutoula.net -[2018-02-13T00:39:48.362] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:39:48.508] [INFO] cheese - inserting 1000 documents. first: Infrared-Ultraviolet and last: Category:British male wheelchair racers -[2018-02-13T00:39:48.550] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:39:48.629] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:39:48.678] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/FlightMemory and last: Oppau -[2018-02-13T00:39:48.742] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:39:48.755] [INFO] cheese - inserting 1000 documents. first: Marrakech (atb) and last: Syed Ahmed Khan Bahadur -[2018-02-13T00:39:48.849] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:39:48.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/live-in-costarica.com and last: Antipodia atralba -[2018-02-13T00:39:49.032] [INFO] cheese - inserting 1000 documents. first: Hajat Aqa and last: Pinhole -[2018-02-13T00:39:49.110] [INFO] cheese - inserting 1000 documents. first: Blog hop and last: German 578th Volksgrenadier Division -[2018-02-13T00:39:49.144] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:39:49.154] [INFO] cheese - batch complete in: 1.581 secs -[2018-02-13T00:39:49.202] [INFO] cheese - inserting 1000 documents. first: Albert Thoralf Skolem and last: Kronach (White Main) -[2018-02-13T00:39:49.209] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:39:49.266] [INFO] cheese - inserting 1000 documents. first: Draft:Progress in Energy and Combustion Science and last: Category:British breaststroke swimmers -[2018-02-13T00:39:49.276] [INFO] cheese - inserting 1000 documents. first: Solbjerg and last: Jean Pelegri -[2018-02-13T00:39:49.277] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:39:49.345] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:39:49.362] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:39:49.527] [INFO] cheese - inserting 1000 documents. first: Category:People from Gatineau and last: File:Splurge album.jpg -[2018-02-13T00:39:49.584] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:39:49.597] [INFO] cheese - inserting 1000 documents. first: HT Muggeridge and last: Historical U. S. Census Totals for Hampshire County, Massachusetts -[2018-02-13T00:39:49.608] [INFO] cheese - inserting 1000 documents. first: Andy Walker (basketball) and last: Wikipedia:WikiProject Spam/Local/chelsio.com -[2018-02-13T00:39:49.630] [INFO] cheese - inserting 1000 documents. first: Motasingha atralba and last: Vice-captain (association football) -[2018-02-13T00:39:49.634] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:39:49.673] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:39:49.707] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:39:49.723] [INFO] cheese - inserting 1000 documents. first: Krumbach (Kammel) and last: File:FETCH! with Ruff Ruffman logo.png -[2018-02-13T00:39:49.760] [INFO] cheese - inserting 1000 documents. first: Donald A. Bryant and last: Stony Creek Railroad -[2018-02-13T00:39:49.772] [INFO] cheese - inserting 1000 documents. first: Category:History of Sheffield and last: IBM WebSphere Application Server -[2018-02-13T00:39:49.786] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:39:49.824] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:39:49.860] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:39:49.899] [INFO] cheese - inserting 1000 documents. first: Historical U. S. Census Totals for Hartford County, Connecticut and last: I. R. S. Records -[2018-02-13T00:39:49.938] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:39:50.089] [INFO] cheese - inserting 1000 documents. first: Order of battle Battle of South Shanxi and last: Certapay -[2018-02-13T00:39:50.214] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:39:50.237] [INFO] cheese - inserting 1000 documents. first: Algar, Cádiz and last: Robincroft -[2018-02-13T00:39:50.294] [INFO] cheese - inserting 1000 documents. first: BAMZOOKi and last: Marat Garayev -[2018-02-13T00:39:50.295] [INFO] cheese - inserting 1000 documents. first: Transtillaspis monoloba and last: Template:Orbital launches in 1970 -[2018-02-13T00:39:50.350] [INFO] cheese - inserting 1000 documents. first: Category:Education in Jefferson County, Texas and last: Category:1938 establishments in Ireland -[2018-02-13T00:39:50.376] [INFO] cheese - inserting 1000 documents. first: I. S. (manga) and last: J G Thirlwell -[2018-02-13T00:39:50.375] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:39:50.384] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:39:50.390] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:39:50.442] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:39:50.451] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:39:50.720] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Niue articles and last: Kitty GYM -[2018-02-13T00:39:50.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michael Le and last: Neil Colville -[2018-02-13T00:39:50.757] [INFO] cheese - inserting 1000 documents. first: Category:Former county seats in Illinois and last: History of Acapulco -[2018-02-13T00:39:50.768] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:39:50.799] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:39:50.836] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:39:50.900] [INFO] cheese - inserting 1000 documents. first: Marat Garaev and last: Wikipedia:WikiProject Spam/LinkReports/zptown.at.ua -[2018-02-13T00:39:50.936] [INFO] cheese - inserting 1000 documents. first: Template:WAC baseball teams and last: Chamaenerion fleischeri -[2018-02-13T00:39:50.983] [INFO] cheese - inserting 1000 documents. first: Neyeh and last: Papabuco language -[2018-02-13T00:39:51.014] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:39:51.050] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:39:51.105] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:39:51.305] [INFO] cheese - inserting 1000 documents. first: J.C. Mardrus and last: Template:HolmesCountyOH-school-stub -[2018-02-13T00:39:51.367] [INFO] cheese - inserting 1000 documents. first: Moody field and last: Luigi Gentili -[2018-02-13T00:39:51.372] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:39:51.430] [INFO] cheese - inserting 1000 documents. first: Andor Szanyi and last: Bunchgrass Skipper -[2018-02-13T00:39:51.485] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T00:39:51.492] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:39:51.515] [INFO] cheese - inserting 1000 documents. first: FirePro and last: Aeronautical Systems Division -[2018-02-13T00:39:51.562] [INFO] cheese - inserting 1000 documents. first: Category:Italian javelin throwers and last: Category:Organizations established in 1674 -[2018-02-13T00:39:51.576] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:39:51.590] [INFO] cheese - inserting 1000 documents. first: Stanford Center for Internet and Society and last: Hugo DeVries -[2018-02-13T00:39:51.616] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:39:51.664] [INFO] cheese - inserting 1000 documents. first: Texas superconducting supercollider and last: Phragmatobia lymphasea -[2018-02-13T00:39:51.678] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:39:51.730] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:39:52.023] [INFO] cheese - inserting 1000 documents. first: Saint martins church of valjala and last: Roman's saw-scaled viper -[2018-02-13T00:39:52.048] [INFO] cheese - inserting 1000 documents. first: Box Brown and last: Lieutenant Commander -[2018-02-13T00:39:52.057] [INFO] cheese - inserting 1000 documents. first: Template:MuskingumCountyOH-school-stub and last: K-250 -[2018-02-13T00:39:52.082] [INFO] cheese - inserting 1000 documents. first: Draft:Karate Speed Power and last: Putt Putt Travels Through Time -[2018-02-13T00:39:52.197] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:39:52.279] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:39:52.364] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:39:52.375] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T00:39:52.389] [INFO] cheese - inserting 1000 documents. first: Diacrisia ockendeni and last: Court Harwell -[2018-02-13T00:39:52.457] [INFO] cheese - inserting 1000 documents. first: File:Invention of lying ver2.jpg and last: File:Legend of gingko.jpg -[2018-02-13T00:39:52.500] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:39:52.651] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:39:52.713] [INFO] cheese - inserting 1000 documents. first: File:Battle of Stones River, Dec 31 1862 to Jan 3, 1863.png and last: Pepsico Inc. -[2018-02-13T00:39:52.928] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T00:39:53.051] [INFO] cheese - inserting 1000 documents. first: Ulla Toernes and last: Mirror of the Middle Ages -[2018-02-13T00:39:53.060] [INFO] cheese - inserting 1000 documents. first: Category:2011 establishments in Iran and last: Wikipedia:WikiProject Spam/LinkReports/roberttown.net -[2018-02-13T00:39:53.073] [INFO] cheese - inserting 1000 documents. first: Category:1669 by country and last: Gmina Puck -[2018-02-13T00:39:53.143] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:39:53.156] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:39:53.210] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T00:39:53.309] [INFO] cheese - inserting 1000 documents. first: Template:Top Ten Indonesian Badminton Players - Women's doubles and last: Jeong Kwang-il -[2018-02-13T00:39:53.347] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:39:53.350] [INFO] cheese - inserting 1000 documents. first: Allan (name) and last: Wikipedia:Today's featured article/September 9, 2016 -[2018-02-13T00:39:53.382] [INFO] cheese - inserting 1000 documents. first: Category:Intensive care and last: Revolutionary Workers' Party (India) -[2018-02-13T00:39:53.441] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T00:39:53.471] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:39:53.539] [INFO] cheese - inserting 1000 documents. first: John C W Reid and last: 1987 Vuelta a España -[2018-02-13T00:39:53.588] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:39:53.655] [INFO] cheese - inserting 1000 documents. first: File:Journal October.jpg and last: Dioryctria auranticella -[2018-02-13T00:39:53.708] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:53.763] [INFO] cheese - inserting 1000 documents. first: Rjr Nabisco Inc. and last: Wh-interrogative -[2018-02-13T00:39:53.764] [INFO] cheese - inserting 1000 documents. first: Bosco verticale and last: File:Fields in Kumarakom.jpg -[2018-02-13T00:39:53.800] [INFO] cheese - inserting 1000 documents. first: Category:People from Tehama County, California and last: Chris Cross Griffin -[2018-02-13T00:39:53.814] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:39:53.836] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:39:53.852] [INFO] cheese - inserting 1000 documents. first: Matias Montinho and last: Wikipedia:Articles for deletion/Musa Paik -[2018-02-13T00:39:53.885] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:39:53.909] [INFO] cheese - inserting 1000 documents. first: DeKalb Taylor Municipal Airport and last: Wally Tattersall -[2018-02-13T00:39:53.915] [INFO] cheese - inserting 1000 documents. first: Epigallocatechin 3-gallate and last: 代々木 -[2018-02-13T00:39:53.915] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:39:53.960] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:39:53.971] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:54.134] [INFO] cheese - inserting 1000 documents. first: Djerv (band) and last: Simon Langton (archdeacon) -[2018-02-13T00:39:54.185] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:39:54.303] [INFO] cheese - inserting 1000 documents. first: Category:Algeria at the Winter Olympics by year and last: Tierra del Fuego Igneous and Metamorphic Complex -[2018-02-13T00:39:54.305] [INFO] cheese - inserting 1000 documents. first: Lodewijk van Nassau-Beverweert and last: Template:Alaska Railroad lines -[2018-02-13T00:39:54.317] [INFO] cheese - inserting 1000 documents. first: Christopher Cross Griffin and last: File:Woman Montage (2).jpg -[2018-02-13T00:39:54.335] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:39:54.338] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:39:54.389] [INFO] cheese - inserting 1000 documents. first: Herrick chapman and last: Fruitport Township, Michigan -[2018-02-13T00:39:54.453] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:39:54.473] [INFO] cheese - inserting 1000 documents. first: Attack on Anzac Cove and last: El Menzah Sports Palace -[2018-02-13T00:39:54.506] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:39:54.526] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:39:54.613] [INFO] cheese - inserting 1000 documents. first: Roberto Carretero and last: Rikuu East Line -[2018-02-13T00:39:54.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Theories of the State (Erik Olin Wright)/Students and last: Template:ACTU Secretaries -[2018-02-13T00:39:54.714] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:39:54.791] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:39:54.797] [INFO] cheese - inserting 1000 documents. first: Category:Winter Olympics competitors for Romania and last: Yellow Sedge-skipper -[2018-02-13T00:39:54.881] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Republic of Karelia and last: Template:User ca-qc -[2018-02-13T00:39:54.884] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:39:54.944] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:39:55.031] [INFO] cheese - inserting 1000 documents. first: See of Teramo and last: CPA3 -[2018-02-13T00:39:55.091] [INFO] cheese - inserting 1000 documents. first: Coachella Festival and last: Category:Categories requiring diffusion -[2018-02-13T00:39:55.113] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:39:55.155] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:39:55.228] [INFO] cheese - inserting 1000 documents. first: Orson discography and last: Nebby Debbie -[2018-02-13T00:39:55.300] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:39:55.326] [INFO] cheese - inserting 1000 documents. first: Ima Korean and last: Adéane -[2018-02-13T00:39:55.371] [INFO] cheese - inserting 1000 documents. first: Kálmán Széll and last: Netvigator -[2018-02-13T00:39:55.375] [INFO] cheese - inserting 1000 documents. first: Owu kingdom and last: Category:March 2015 events in Asia -[2018-02-13T00:39:55.377] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:39:55.436] [INFO] cheese - inserting 1000 documents. first: Lowey and last: Narrowbar swell shark -[2018-02-13T00:39:55.436] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:55.450] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:39:55.491] [INFO] cheese - inserting 1000 documents. first: Category:Sega System 1 games and last: Günter Schubert -[2018-02-13T00:39:55.522] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:39:55.546] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:39:55.562] [INFO] cheese - inserting 1000 documents. first: BioMetals and last: Catberry -[2018-02-13T00:39:55.609] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:39:55.763] [INFO] cheese - inserting 1000 documents. first: Category:Christian publishers in Thailand and last: Otto Busse (resistance fighter) -[2018-02-13T00:39:55.806] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:39:55.828] [INFO] cheese - inserting 1000 documents. first: Category:1628 in music and last: Electric Universe (disambiguation) -[2018-02-13T00:39:55.832] [INFO] cheese - inserting 1000 documents. first: Globalisation and disease and last: Category:People from Ebeleben -[2018-02-13T00:39:55.892] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:39:55.885] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:39:55.944] [INFO] cheese - inserting 1000 documents. first: Yōichi Kotabe and last: Benetton Rugby Treviso -[2018-02-13T00:39:55.948] [INFO] cheese - inserting 1000 documents. first: File:Australia 1 cent 1912 obverse.JPG and last: Theater of Canada -[2018-02-13T00:39:55.977] [INFO] cheese - inserting 1000 documents. first: Willard and His Bowling Trophies: A Perverse Mystery and last: Thomas G. Stemberg -[2018-02-13T00:39:56.002] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:56.012] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:39:56.046] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:39:56.054] [INFO] cheese - inserting 1000 documents. first: Caldes de Montbui and last: Outreau affair -[2018-02-13T00:39:56.136] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:39:56.255] [INFO] cheese - inserting 1000 documents. first: Nenmara Vallanghy Vela and last: Innerstaden, Malmö -[2018-02-13T00:39:56.268] [INFO] cheese - inserting 1000 documents. first: Category:Sierra Leonean expatriates in Moldova and last: Bartolomeo Gradenigo (bishop of Brescia) -[2018-02-13T00:39:56.336] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:39:56.332] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:39:56.500] [INFO] cheese - inserting 1000 documents. first: Skoog and last: Wikipedia:Deletion review/Log/2011 September 18 -[2018-02-13T00:39:56.591] [INFO] cheese - inserting 1000 documents. first: Space Dude and last: Ho T'ai-hsueh -[2018-02-13T00:39:56.605] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:39:56.613] [INFO] cheese - inserting 1000 documents. first: Category:Governors of Moscow Oblast and last: Robert Elgin McKinley -[2018-02-13T00:39:56.679] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:39:56.720] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:39:56.770] [INFO] cheese - inserting 1000 documents. first: BRCC3 and last: Brandywine Township, Indiana -[2018-02-13T00:39:56.888] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:39:56.991] [INFO] cheese - inserting 1000 documents. first: The Pilgrim Woman and last: Nightfall of Diamonds -[2018-02-13T00:39:57.049] [INFO] cheese - inserting 1000 documents. first: Yoshimasa Oshima and last: Takashi Sawada -[2018-02-13T00:39:57.071] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:39:57.102] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:39:57.137] [INFO] cheese - inserting 1000 documents. first: Category:Recreation by period and last: Bi (cuneiform) -[2018-02-13T00:39:57.188] [INFO] cheese - inserting 1000 documents. first: Gödel's speed-up theorem and last: Wikipedia:WikiProject Spam/LinkReports/hollywoodnorthreport.com -[2018-02-13T00:39:57.245] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:39:57.334] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:39:57.401] [INFO] cheese - inserting 1000 documents. first: Zvi Sherff and last: Moscow, Id -[2018-02-13T00:39:57.487] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:39:57.555] [INFO] cheese - inserting 1000 documents. first: 2016 Wind Energy Holding Bangkok Open – Singles and last: Cinema of Balochistan -[2018-02-13T00:39:57.562] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/CosmicLegg/Archive and last: File:Tetsuo3.jpg -[2018-02-13T00:39:57.575] [INFO] cheese - inserting 1000 documents. first: Li Jié and last: Thornbury Township, PA -[2018-02-13T00:39:57.589] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:39:57.632] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:39:57.653] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:39:57.716] [INFO] cheese - inserting 1000 documents. first: Fresno County Route J1 and last: Larry Bodine (comics) -[2018-02-13T00:39:57.775] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:39:57.777] [INFO] cheese - inserting 1000 documents. first: Strophic song and last: 2006 Pan Pacific Swimming Championships – Men's 200 metre backstroke -[2018-02-13T00:39:57.820] [INFO] cheese - inserting 1000 documents. first: Adhi Sankar and last: Island Resort -[2018-02-13T00:39:57.834] [INFO] cheese - inserting 1000 documents. first: Mountain Home, Id and last: File:BBC Scotland Headquarters.jpg -[2018-02-13T00:39:57.842] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:39:57.878] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:39:57.880] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:39:57.998] [INFO] cheese - inserting 1000 documents. first: Cinema of Khyber Pakhtunkhwa and last: Takamatua -[2018-02-13T00:39:58.015] [INFO] cheese - inserting 1000 documents. first: Thorndale, PA and last: Nakashibetsu, Hokkaido -[2018-02-13T00:39:58.045] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:39:58.051] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:39:58.108] [INFO] cheese - inserting 1000 documents. first: Hörnli and last: Baillie Island, Northwest Territories -[2018-02-13T00:39:58.161] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:39:58.195] [INFO] cheese - inserting 1000 documents. first: Choreographer’s Ball and last: Adopt a user -[2018-02-13T00:39:58.250] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:39:58.262] [INFO] cheese - inserting 1000 documents. first: The Fresh Prince of Belair and last: Wingspan (disambiguation) -[2018-02-13T00:39:58.297] [INFO] cheese - inserting 1000 documents. first: Category:Card games introduced in 1933 and last: Clackline Brook -[2018-02-13T00:39:58.316] [INFO] cheese - inserting 1000 documents. first: Charlie Cowdrey (football coach) and last: H. O. Robinson -[2018-02-13T00:39:58.315] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:39:58.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Haunted seton hill university and last: Starshina -[2018-02-13T00:39:58.367] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:39:58.388] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:39:58.405] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:39:58.451] [INFO] cheese - inserting 1000 documents. first: South Woodslee Ontario and last: Category:LGBT in Saint Helena, Ascension and Tristan da Cunha -[2018-02-13T00:39:58.516] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:39:58.676] [INFO] cheese - inserting 1000 documents. first: Orabindu Benyabhak and last: David McKay (publisher) -[2018-02-13T00:39:58.692] [INFO] cheese - inserting 1000 documents. first: Khowai Government Higher Secondery School and last: Gediminas Bagdonas -[2018-02-13T00:39:58.733] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:39:58.802] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:39:58.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Emma Bossons (2nd nomination) and last: KMXL -[2018-02-13T00:39:58.903] [INFO] cheese - inserting 1000 documents. first: TajAir and last: Category:WikiProject Music genres articles -[2018-02-13T00:39:58.923] [INFO] cheese - inserting 1000 documents. first: Hyde Moves In (That '70s Show) and last: Category:Cryptographic currencies -[2018-02-13T00:39:58.962] [INFO] cheese - inserting 1000 documents. first: Edward Cooke (swimmer) and last: Template:More Galicia/meta/color -[2018-02-13T00:39:58.968] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:39:58.981] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:39:59.019] [INFO] cheese - inserting 1000 documents. first: Venice Beach, CA and last: Voting margin -[2018-02-13T00:39:59.050] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:39:59.067] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:39:59.123] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:39:59.385] [INFO] cheese - inserting 1000 documents. first: Charlotte Police Department and last: Jack Kenny Williams -[2018-02-13T00:39:59.410] [INFO] cheese - inserting 1000 documents. first: Routes of Santiago de Compostela in France and last: Wikipedia:Articles for deletion/Guybrush Threepwood -[2018-02-13T00:39:59.431] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:39:59.481] [INFO] cheese - inserting 1000 documents. first: Lorenzo Cozza and last: CFQM-FM -[2018-02-13T00:39:59.495] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:39:59.533] [INFO] cheese - inserting 1000 documents. first: Hugh Bentley and last: Aruba at the Summer Olympics -[2018-02-13T00:39:59.550] [INFO] cheese - inserting 1000 documents. first: Journal of Graph Theory and last: Jadestone -[2018-02-13T00:39:59.549] [INFO] cheese - inserting 1000 documents. first: Reef the Lost Cauze discography and last: National Children's Book Festival -[2018-02-13T00:39:59.568] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:39:59.594] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:39:59.641] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:39:59.644] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:39:59.776] [INFO] cheese - inserting 1000 documents. first: Longfield railway station and last: California State Highway 275 -[2018-02-13T00:39:59.836] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:39:59.889] [INFO] cheese - inserting 1000 documents. first: Kitti Becséri and last: Wikipedia:Online Ambassadors/Apply/Buggie111 -[2018-02-13T00:39:59.947] [INFO] cheese - inserting 1000 documents. first: Armenia at the Summer Olympics and last: Wolf (Devin Townsend Project song) -[2018-02-13T00:39:59.949] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:39:59.990] [INFO] cheese - inserting 1000 documents. first: Category:People from Orsha and last: Wikipedia:WikiProject Environment/Sustainability task force/to do -[2018-02-13T00:40:00.006] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:40:00.055] [INFO] cheese - inserting 1000 documents. first: 2012 Russian floods and last: Grumman Studios -[2018-02-13T00:40:00.068] [INFO] cheese - inserting 1000 documents. first: KVLY-TV antenna and last: Greg lato -[2018-02-13T00:40:00.108] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:40:00.112] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:40:00.131] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:00.188] [INFO] cheese - inserting 1000 documents. first: Winnipeg Route 42 and last: Pyapon Township -[2018-02-13T00:40:00.247] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:40:00.454] [INFO] cheese - inserting 1000 documents. first: Typhoon Sonca (disambiguation) and last: Beke (Warnow) -[2018-02-13T00:40:00.485] [INFO] cheese - inserting 1000 documents. first: California State Highway 299 and last: Higgins, Inc. -[2018-02-13T00:40:00.531] [INFO] cheese - inserting 1000 documents. first: 2016 All-Australian team and last: Josefa Kellner -[2018-02-13T00:40:00.553] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:40:00.585] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:40:00.645] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:40:00.649] [INFO] cheese - inserting 1000 documents. first: File:Gohan, all depictions, 2014.jpg and last: HD 215456 -[2018-02-13T00:40:00.679] [INFO] cheese - inserting 1000 documents. first: PH monitoring and last: Le Plus bel âge -[2018-02-13T00:40:00.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ben Hillier and last: Qaishan Qan -[2018-02-13T00:40:00.729] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:40:00.732] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:40:00.847] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:40:01.205] [INFO] cheese - inserting 1000 documents. first: Discover Odin and last: O.A. Hankner (football coach) -[2018-02-13T00:40:01.261] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/ISuportSchool and last: Clean feed (TV) -[2018-02-13T00:40:01.285] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mccormick.com.au and last: Tierisch Kölsch -[2018-02-13T00:40:01.313] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:40:01.330] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:40:01.378] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T00:40:01.453] [INFO] cheese - inserting 1000 documents. first: Copa São Paulo de Futebol Júnior and last: Powell Crosley -[2018-02-13T00:40:01.463] [INFO] cheese - inserting 1000 documents. first: File:Bergamot preserves.jpg and last: Gelett Burgess Children's Book Awards -[2018-02-13T00:40:01.501] [INFO] cheese - inserting 1000 documents. first: Le Plus Bel Âge and last: LaVonna Martin-Floreal -[2018-02-13T00:40:01.554] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:40:01.566] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:40:01.620] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:40:01.654] [INFO] cheese - inserting 1000 documents. first: Qaishan Qaghan and last: Template:User UDLSUD -[2018-02-13T00:40:01.765] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:40:01.937] [INFO] cheese - inserting 1000 documents. first: Seisonida and last: Category:2017 in Liberia -[2018-02-13T00:40:01.947] [INFO] cheese - inserting 1000 documents. first: Zoo Doctor: My Mom the Vet and last: Milcombe, Cornwall -[2018-02-13T00:40:02.002] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:40:02.016] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:40:02.046] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Hammam ol Din and last: Belizian cuisine -[2018-02-13T00:40:02.049] [INFO] cheese - inserting 1000 documents. first: U.S. Route 730 in Oregon and last: Category:Cooperatives by country -[2018-02-13T00:40:02.116] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:40:02.171] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:40:02.184] [INFO] cheese - inserting 1000 documents. first: Tohou and last: Texas dragging death -[2018-02-13T00:40:02.304] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:02.395] [INFO] cheese - inserting 1000 documents. first: File:Toroa Foos.jpg and last: Christos Karypidis -[2018-02-13T00:40:02.541] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:40:02.651] [INFO] cheese - inserting 1000 documents. first: Fiber to the home and last: Leshan buddah -[2018-02-13T00:40:02.681] [INFO] cheese - inserting 1000 documents. first: Millendreath and last: Stephen O’Donnell -[2018-02-13T00:40:02.722] [INFO] cheese - inserting 1000 documents. first: Category:2018 in Belgium and last: St. Anne's Church, Sutton Bonington -[2018-02-13T00:40:02.747] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:02.763] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T00:40:02.798] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:40:02.884] [INFO] cheese - inserting 1000 documents. first: Ab Anjir, Darab and last: St George Southwark -[2018-02-13T00:40:02.951] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians in Rochester, New York and last: Gmina Stare Juchy -[2018-02-13T00:40:02.969] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:40:02.994] [INFO] cheese - inserting 1000 documents. first: File:FranceO-logo.png and last: Category:Postcode areas covering North East England -[2018-02-13T00:40:03.037] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:40:03.070] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:40:03.078] [INFO] cheese - inserting 1000 documents. first: LDV Van and last: Anel Townsend -[2018-02-13T00:40:03.143] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:03.166] [INFO] cheese - inserting 1000 documents. first: File:Obviously 5 Believers.ogg and last: Ferries in Istanbul -[2018-02-13T00:40:03.186] [INFO] cheese - inserting 1000 documents. first: Acorn, Pennsylvania and last: Template:Community of Madrid elections -[2018-02-13T00:40:03.206] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:40:03.237] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:40:03.269] [INFO] cheese - inserting 1000 documents. first: Warwick, OK and last: The Red Detachment of Women -[2018-02-13T00:40:03.325] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:40:03.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/webpages.iust.ac.ir and last: 1908-09 Georgetown Hoyas men's basketball team -[2018-02-13T00:40:03.449] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:40:03.467] [INFO] cheese - inserting 1000 documents. first: Rule of the West Bank and East Jerusalem by Jordan and last: Port aux Choix -[2018-02-13T00:40:03.480] [INFO] cheese - inserting 1000 documents. first: Serie B 1974-75 and last: Arthur Alfred Brown -[2018-02-13T00:40:03.522] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:40:03.551] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:40:03.596] [INFO] cheese - inserting 1000 documents. first: Arad, Iran and last: Kings Highway Conservative District -[2018-02-13T00:40:03.610] [INFO] cheese - inserting 1000 documents. first: Category:Chinese children's literature and last: Kazancı, Ermenek -[2018-02-13T00:40:03.612] [INFO] cheese - inserting 1000 documents. first: 2002 Speed World Challenge season and last: Paweł Kaczmarek -[2018-02-13T00:40:03.643] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:40:03.658] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:40:03.660] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:40:03.800] [INFO] cheese - inserting 1000 documents. first: Tom Fenner and last: Shahr Mian-e Sofla -[2018-02-13T00:40:03.853] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:40:03.862] [INFO] cheese - inserting 1000 documents. first: New Wave of New Wave and last: Guided age -[2018-02-13T00:40:03.929] [INFO] cheese - inserting 1000 documents. first: Port aux Choix, Newfoundland and Labrador and last: Jet-Blue Airways -[2018-02-13T00:40:03.952] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:40:04.093] [INFO] cheese - inserting 1000 documents. first: CECIC and last: TruMotion -[2018-02-13T00:40:04.107] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:40:04.131] [INFO] cheese - inserting 1000 documents. first: Category:Noble titles created in 1602 and last: GL261 -[2018-02-13T00:40:04.186] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:40:04.285] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:40:04.326] [INFO] cheese - inserting 1000 documents. first: Jan Klabbers and last: Wikipedia:United States Education Program/Courses/Training Systems/Course description -[2018-02-13T00:40:04.358] [INFO] cheese - inserting 1000 documents. first: Shahr Mian-e Now and last: Hassanabad, Sheshdeh and Qarah Bulaq -[2018-02-13T00:40:04.357] [INFO] cheese - inserting 1000 documents. first: Florida State Road 55 and last: Template:1980s-drama-film-stub -[2018-02-13T00:40:04.390] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:40:04.409] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:40:04.486] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:40:04.688] [INFO] cheese - inserting 1000 documents. first: Anna Walker (television presenter) and last: COE -[2018-02-13T00:40:04.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bible translations into Ladakhi and last: Frutos Bernardo Patón de Ayala -[2018-02-13T00:40:04.728] [INFO] cheese - inserting 1000 documents. first: NH primary and last: Category:Media in Japan by city -[2018-02-13T00:40:04.751] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:04.768] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:40:04.819] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:04.867] [INFO] cheese - inserting 1000 documents. first: Segunda División 1985-86 and last: The Occidental and Vanguard -[2018-02-13T00:40:04.913] [INFO] cheese - inserting 1000 documents. first: File:Alf Twigg.jpg and last: The golden nymphs -[2018-02-13T00:40:04.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Horror Cinema/Grading and last: Winchester Reading Prize -[2018-02-13T00:40:04.939] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:40:04.969] [INFO] cheese - inserting 1000 documents. first: Steeler (German band) and last: People of Azerbaijan -[2018-02-13T00:40:04.973] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:40:05.005] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:40:05.080] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:40:05.198] [INFO] cheese - inserting 1000 documents. first: Volleyball at the Far Eastern Championship Games and last: Wikipedia:Featured article candidates/Turboliner/archive1 -[2018-02-13T00:40:05.236] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:40:05.332] [INFO] cheese - inserting 1000 documents. first: Mica Paris and last: Buster Rhymes -[2018-02-13T00:40:05.373] [INFO] cheese - inserting 1000 documents. first: 2009-10 CCHL season and last: KCRV (AM) -[2018-02-13T00:40:05.374] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Jieho Lee and last: Jowvakan -[2018-02-13T00:40:05.392] [INFO] cheese - inserting 1000 documents. first: Ajaylat Stadium and last: Wikipedia:WikiProject Spam/LinkReports/cjr.org -[2018-02-13T00:40:05.399] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:40:05.416] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:40:05.416] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:05.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/alitave.de and last: Chaluvanahalli -[2018-02-13T00:40:05.503] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:05.575] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:05.638] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Grace Vanderwaal and last: Category:21st-century Palestinian poets -[2018-02-13T00:40:05.724] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:05.882] [INFO] cheese - inserting 1000 documents. first: Rana Kirat Singh and last: Magdalena Borova -[2018-02-13T00:40:06.014] [INFO] cheese - inserting 1000 documents. first: Israeli state and last: Category:Hard bop organists -[2018-02-13T00:40:06.073] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T00:40:06.111] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:40:06.113] [INFO] cheese - inserting 1000 documents. first: Jowkan, Bavanat and last: The Art of the Trio Volume One -[2018-02-13T00:40:06.211] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:40:06.266] [INFO] cheese - inserting 1000 documents. first: The Servant (2010 film) and last: Samuel Verblunsky -[2018-02-13T00:40:06.270] [INFO] cheese - inserting 1000 documents. first: Leo Nielsen and last: LH Aviation -[2018-02-13T00:40:06.337] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:40:06.338] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:40:06.382] [INFO] cheese - inserting 1000 documents. first: Arnside railway station and last: Battle of Swold -[2018-02-13T00:40:06.437] [INFO] cheese - inserting 1000 documents. first: Variella Aprilsasi and last: Wikipedia:Articles for deletion/List of mergers and acquisitions by Amazon -[2018-02-13T00:40:06.486] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T00:40:06.503] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:40:06.696] [INFO] cheese - inserting 1000 documents. first: Cezannian and last: Template:Editnotices/Page/List of people from Maharashtra -[2018-02-13T00:40:06.791] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:40:06.879] [INFO] cheese - inserting 1000 documents. first: South Gare and Coatham Sands and last: Britain GAA -[2018-02-13T00:40:06.890] [INFO] cheese - inserting 1000 documents. first: Gmina Karlino and last: Float tube -[2018-02-13T00:40:06.900] [INFO] cheese - inserting 1000 documents. first: Lythrum portula and last: Elite One -[2018-02-13T00:40:06.951] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:40:06.951] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:40:06.984] [INFO] cheese - inserting 1000 documents. first: Sjöstorp Stone and last: Walnut Creek (Marais des Cygnes River) -[2018-02-13T00:40:07.056] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:40:07.089] [INFO] cheese - inserting 1000 documents. first: Robert Scott (Conservative politician) and last: Namakabroud -[2018-02-13T00:40:07.141] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:40:07.213] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T00:40:07.256] [INFO] cheese - inserting 1000 documents. first: Gouldian finch and last: 17th centuries -[2018-02-13T00:40:07.300] [INFO] cheese - inserting 1000 documents. first: Emersonian and last: Wikipedia:Articles for deletion/Sweep the Leg Johnny -[2018-02-13T00:40:07.352] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:40:07.362] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:40:07.594] [INFO] cheese - inserting 1000 documents. first: Swansea Central Library and last: Pompeo Marchesi -[2018-02-13T00:40:07.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2009 September 12 and last: Plecoptera lobelia -[2018-02-13T00:40:07.655] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:40:07.667] [INFO] cheese - inserting 1000 documents. first: Alexandar Stamboliiski and last: 2116 -[2018-02-13T00:40:07.701] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:40:07.715] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Anthony M. Villane and last: Deportes Colchagua -[2018-02-13T00:40:07.742] [INFO] cheese - inserting 1000 documents. first: Via Romana agli Dèi and last: Category:Ambassadors of Sri Lanka to Bulgaria -[2018-02-13T00:40:07.748] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:40:07.770] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:40:07.785] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:08.046] [INFO] cheese - inserting 1000 documents. first: Bevlyn Khoo and last: Center of the Tokyo Raids and War Damage -[2018-02-13T00:40:08.097] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:40:08.139] [INFO] cheese - inserting 1000 documents. first: Florida red-bellied cooter and last: 2-QAM -[2018-02-13T00:40:08.144] [INFO] cheese - inserting 1000 documents. first: Category:Israel Prize in Arabic literature recipients and last: Horn loading -[2018-02-13T00:40:08.211] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:40:08.246] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:40:08.268] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Sri Lanka to Brazil and last: Aktaş, Karaisalı -[2018-02-13T00:40:08.275] [INFO] cheese - inserting 1000 documents. first: Grenier AAF and last: Members of the 21st Seanad Éireann -[2018-02-13T00:40:08.289] [INFO] cheese - inserting 1000 documents. first: Justice Bliss and last: Anglican Bishop of Central Solomon Islands -[2018-02-13T00:40:08.313] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:40:08.354] [INFO] cheese - inserting 1000 documents. first: Per-Olov Ahrén and last: Back and Forth Series 6 -[2018-02-13T00:40:08.367] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:40:08.378] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:40:08.462] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:40:08.613] [INFO] cheese - inserting 1000 documents. first: Jean Didace Médard Moussodia and last: Allan Levene -[2018-02-13T00:40:08.660] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:08.681] [INFO] cheese - inserting 1000 documents. first: Eastern Suburbs season 1931 and last: File:Pianoplayers.jpg -[2018-02-13T00:40:08.735] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:40:08.780] [INFO] cheese - inserting 1000 documents. first: 2QAM and last: Juanponcedeleon -[2018-02-13T00:40:08.805] [INFO] cheese - inserting 1000 documents. first: Anglican Bishop of the Central Solomons and last: Category:Farms on the National Register of Historic Places in Texas -[2018-02-13T00:40:08.807] [INFO] cheese - inserting 1000 documents. first: Rony Gruber and last: Template:Ornithopod-stub -[2018-02-13T00:40:08.832] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:40:08.838] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:40:08.860] [INFO] cheese - inserting 1000 documents. first: Lake Dunn and last: Sint Michiel -[2018-02-13T00:40:08.872] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:40:08.932] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:40:08.966] [INFO] cheese - inserting 1000 documents. first: Cleveland Circle (MBTA station) and last: Category:Companies established in 1980 -[2018-02-13T00:40:09.034] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:09.053] [INFO] cheese - inserting 1000 documents. first: Begoña Sánchez and last: Umi Raho -[2018-02-13T00:40:09.097] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:40:09.200] [INFO] cheese - inserting 1000 documents. first: DaVonte Lambert and last: File:Chas Jankel.jpg -[2018-02-13T00:40:09.200] [INFO] cheese - inserting 1000 documents. first: Estero de San Antonio State Marine Recreational Management Area and last: Smart Move (FIRST) -[2018-02-13T00:40:09.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/George Woodward Warder and last: Category:Hindu temples in Mayurbhanj district -[2018-02-13T00:40:09.252] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:40:09.256] [INFO] cheese - inserting 1000 documents. first: Edward Tennyson Connolly and last: Charles Ponsonby -[2018-02-13T00:40:09.253] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:40:09.316] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:40:09.330] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:40:09.338] [INFO] cheese - inserting 1000 documents. first: Phineas Parkhurst Quimby and last: Glen Stewart-Bellevue Cove -[2018-02-13T00:40:09.400] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:40:09.449] [INFO] cheese - inserting 1000 documents. first: Timeline of events at Bakara Market and last: Category:1999 Pacific Games -[2018-02-13T00:40:09.524] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:09.661] [INFO] cheese - inserting 1000 documents. first: Tibetan Pony and last: Category:Human rights in Mongolia -[2018-02-13T00:40:09.677] [INFO] cheese - inserting 1000 documents. first: File:SteamPoweredSawmill.JPG and last: Florence Gertrude Horsburgh -[2018-02-13T00:40:09.791] [INFO] cheese - inserting 1000 documents. first: AAE (disambiguation) and last: Maggie May (disambiguation) -[2018-02-13T00:40:09.814] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:40:09.844] [INFO] cheese - inserting 1000 documents. first: Maximilian Montgelas and last: Template:2016 Summer Paralympics Sweden men's goalball team roster -[2018-02-13T00:40:09.844] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:40:09.894] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:40:09.905] [INFO] cheese - inserting 1000 documents. first: Southern Indiana Railroad Freighthouse and last: Category:People from Alexander County, North Carolina -[2018-02-13T00:40:09.985] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:10.005] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:40:10.056] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in British Overseas Territories and last: Donald Fairbairn -[2018-02-13T00:40:10.112] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:40:10.284] [INFO] cheese - inserting 1000 documents. first: Category:Human rights in Luxembourg and last: Steffen Jürgens -[2018-02-13T00:40:10.379] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:40:10.459] [INFO] cheese - inserting 1000 documents. first: Prince di Belmonte and last: File:Playboys bakerpepper.jpg -[2018-02-13T00:40:10.515] [INFO] cheese - inserting 1000 documents. first: Josepablo Monreal and last: Luke mccown -[2018-02-13T00:40:10.521] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:40:10.531] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Sphaerotheca and last: Category:1870 elections in Oceania -[2018-02-13T00:40:10.536] [INFO] cheese - inserting 1000 documents. first: Category:High Commissioners of Pakistan to Bangladesh and last: Kızılpınar, Besni -[2018-02-13T00:40:10.555] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:10.596] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:40:10.605] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:40:10.693] [INFO] cheese - inserting 1000 documents. first: Skin popping and last: I'm Not There (soundtrack) -[2018-02-13T00:40:10.697] [INFO] cheese - inserting 1000 documents. first: Souris-Elmira and last: T-34 Tank -[2018-02-13T00:40:10.775] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:40:10.784] [INFO] cheese - batch complete in: 1.384 secs -[2018-02-13T00:40:10.885] [INFO] cheese - inserting 1000 documents. first: Sutjeska (river) and last: Pi beta phi settlement school -[2018-02-13T00:40:10.934] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:40:11.117] [INFO] cheese - inserting 1000 documents. first: Mitch Feierstein and last: Category:People from Alentejo -[2018-02-13T00:40:11.130] [INFO] cheese - inserting 1000 documents. first: The Partners (1971) and last: Route 548 -[2018-02-13T00:40:11.142] [INFO] cheese - inserting 1000 documents. first: Geoffrey James Foot and last: Callahan Creek -[2018-02-13T00:40:11.166] [INFO] cheese - inserting 1000 documents. first: The Doberman Detective and last: William Franklyn (dean) -[2018-02-13T00:40:11.168] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:40:11.200] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:40:11.203] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:40:11.295] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:40:11.338] [INFO] cheese - inserting 1000 documents. first: Under the Radar Festival and last: Mirai Keisatsu Urashiman -[2018-02-13T00:40:11.510] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:40:11.571] [INFO] cheese - inserting 1000 documents. first: Arrowmont school and last: Fusion Energy -[2018-02-13T00:40:11.663] [INFO] cheese - inserting 1000 documents. first: Wigund-Jeronym Trubecki and last: Ḫepat -[2018-02-13T00:40:11.746] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:40:11.888] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T00:40:11.892] [INFO] cheese - inserting 1000 documents. first: Longstone (band) and last: ETS 300 072 -[2018-02-13T00:40:11.974] [INFO] cheese - inserting 1000 documents. first: Merel Blom and last: Category:People from Nardò -[2018-02-13T00:40:12.023] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:40:12.048] [INFO] cheese - inserting 1000 documents. first: Pinacopteryx and last: Days of Brilliant Sunlight -[2018-02-13T00:40:12.087] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:40:12.213] [INFO] cheese - inserting 1000 documents. first: Mark Nielsen (attorney) and last: Bernardo Sorj -[2018-02-13T00:40:12.219] [INFO] cheese - inserting 1000 documents. first: Rock'n Cop and last: Klevanjka Biela -[2018-02-13T00:40:12.218] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:40:12.288] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:40:12.301] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T00:40:12.434] [INFO] cheese - inserting 1000 documents. first: Baby Bonus (TV series) and last: Wikipedia:Articles for deletion/Medical Corps (Medical Organization) -[2018-02-13T00:40:12.484] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:40:12.546] [INFO] cheese - inserting 1000 documents. first: David Roualeyn Findlater Bain and last: Sølvi Olsen-Meinseth -[2018-02-13T00:40:12.547] [INFO] cheese - inserting 1000 documents. first: Reach Out and Touch (Somebody's Hand) and last: Academic Challenge (Ohio) -[2018-02-13T00:40:12.586] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:40:12.599] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:40:12.616] [INFO] cheese - inserting 1000 documents. first: Geoffrey Alan Burgon and last: Wikipedia:Articles for deletion/Heckford -[2018-02-13T00:40:12.691] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:40:12.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SLIPKNOT and last: 1777 in Wales -[2018-02-13T00:40:12.721] [INFO] cheese - inserting 1000 documents. first: Sigfried II von Westerberg and last: Fred Bluett -[2018-02-13T00:40:12.740] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:40:12.833] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:40:12.962] [INFO] cheese - inserting 1000 documents. first: Triple Play 2000 and last: Emirati Dirham -[2018-02-13T00:40:12.969] [INFO] cheese - inserting 1000 documents. first: Habitation extension module and last: Win7pe -[2018-02-13T00:40:13.009] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:40:13.024] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:40:13.081] [INFO] cheese - inserting 1000 documents. first: Pant-y-Goitre Bridge and last: Drumana -[2018-02-13T00:40:13.089] [INFO] cheese - inserting 1000 documents. first: Aitor Fernández and last: Irish wattle -[2018-02-13T00:40:13.131] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:40:13.140] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:40:13.144] [INFO] cheese - inserting 1000 documents. first: Altavista petroglyphs and last: File:Rocky dipietro field.jpg -[2018-02-13T00:40:13.188] [INFO] cheese - inserting 1000 documents. first: File:MadrasUniversitySenateHouse1905.jpg and last: Ilī-ippašra -[2018-02-13T00:40:13.196] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:40:13.222] [INFO] cheese - inserting 1000 documents. first: West Adams, CA and last: De Havilland Goblin -[2018-02-13T00:40:13.228] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:40:13.305] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:40:13.421] [INFO] cheese - inserting 1000 documents. first: Win7 PE and last: Kohinoor college -[2018-02-13T00:40:13.501] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:40:13.528] [INFO] cheese - inserting 1000 documents. first: Eunice Foote and last: 2016 IndyCar Grand Prix at The Glen -[2018-02-13T00:40:13.589] [INFO] cheese - inserting 1000 documents. first: QuintilesIMS and last: Super swamper -[2018-02-13T00:40:13.678] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:40:13.711] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:40:13.739] [INFO] cheese - inserting 1000 documents. first: (16504) 1990 TR5 and last: AJ McCarron -[2018-02-13T00:40:13.759] [INFO] cheese - inserting 1000 documents. first: Midlands Road and last: Balyan Rural District -[2018-02-13T00:40:13.791] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:40:13.809] [INFO] cheese - inserting 1000 documents. first: Lake Dunn, Queensland and last: Culture of Memphis, Tennessee -[2018-02-13T00:40:13.851] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:40:13.909] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:14.154] [INFO] cheese - inserting 1000 documents. first: Category:Education in Derbyshire and last: Channel Wagtail -[2018-02-13T00:40:14.164] [INFO] cheese - inserting 1000 documents. first: Quebec Liberal Party candidates, 2008 Quebec provincial election and last: C46H60FN3O13 -[2018-02-13T00:40:14.176] [INFO] cheese - inserting 1000 documents. first: Libido Blume and last: Sandra Knight -[2018-02-13T00:40:14.214] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:14.220] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:40:14.273] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:40:14.288] [INFO] cheese - inserting 1000 documents. first: Wenbi Temple in Changzhou and last: Limestone Lake (British Columbia) -[2018-02-13T00:40:14.291] [INFO] cheese - inserting 1000 documents. first: Čeněk of Wartenberg and last: Phrygia Pacatiana -[2018-02-13T00:40:14.392] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:40:14.394] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:40:14.443] [INFO] cheese - inserting 1000 documents. first: Category:Buyid officials and last: Hmong traditional religion -[2018-02-13T00:40:14.443] [INFO] cheese - inserting 1000 documents. first: Nigeria Port Authority F.C. and last: Roman Catholic Diocese of Piacenza-Bobbio -[2018-02-13T00:40:14.483] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:40:14.543] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:14.647] [INFO] cheese - inserting 1000 documents. first: Route 735 (Maryland) and last: Christopher Patterson (disambiguation) -[2018-02-13T00:40:14.689] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:40:14.709] [INFO] cheese - inserting 1000 documents. first: C27H42N2O5S and last: Template:Russia-footy-midfielder-1880s-stub -[2018-02-13T00:40:14.753] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:40:14.876] [INFO] cheese - inserting 1000 documents. first: Category:1917 in sports by country and last: Template:UnitedCounties-team-stub -[2018-02-13T00:40:14.879] [INFO] cheese - inserting 1000 documents. first: Mass surveillance in North Korea and last: Category:South Korean editors -[2018-02-13T00:40:14.918] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:40:14.925] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:14.946] [INFO] cheese - inserting 1000 documents. first: Gadhang and last: Template:Uw-hblock -[2018-02-13T00:40:14.953] [INFO] cheese - inserting 1000 documents. first: Davisville, R.I. and last: William Martin Conway, 1st Baron Conway of Allington -[2018-02-13T00:40:14.984] [INFO] cheese - inserting 1000 documents. first: Laura Gómez (disambiguation) and last: Wikipedia:WikiProject Alexandra Stan/Sidebar -[2018-02-13T00:40:14.990] [INFO] cheese - inserting 1000 documents. first: Philip Absolon and last: Sachsenhausen (Oranienburg) -[2018-02-13T00:40:14.993] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:40:15.010] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:40:15.033] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:40:15.092] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:40:15.111] [INFO] cheese - inserting 1000 documents. first: Gulfport Elementary and last: List of A-20 Havoc survivors -[2018-02-13T00:40:15.150] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:40:15.271] [INFO] cheese - inserting 1000 documents. first: BMW 316 and last: Shutdown Bangkok -[2018-02-13T00:40:15.361] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:40:15.397] [INFO] cheese - inserting 1000 documents. first: Category:Fictional United States cabinet members and last: Wikipedia:WikiProject Spam/LinkReports/escursionietna.com -[2018-02-13T00:40:15.463] [INFO] cheese - inserting 1000 documents. first: Yadegar Moxammat of Kazan and last: List of countries where Arabic is an official language -[2018-02-13T00:40:15.475] [INFO] cheese - inserting 1000 documents. first: Category:1673 in the Polish–Lithuanian Commonwealth and last: Hubbells -[2018-02-13T00:40:15.482] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:15.590] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:40:15.634] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:40:15.728] [INFO] cheese - inserting 1000 documents. first: Template:Edu-org-stub and last: Town Creek, Maryland -[2018-02-13T00:40:15.776] [INFO] cheese - inserting 1000 documents. first: USS Hiawatha and last: Ali Safa Sonboli -[2018-02-13T00:40:15.797] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:40:15.828] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:40:15.982] [INFO] cheese - inserting 1000 documents. first: Eupoecilia carneana and last: Qeshlaq Buzarjomehr -[2018-02-13T00:40:16.035] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:40:16.150] [INFO] cheese - inserting 1000 documents. first: File:Lady Gaga - Perfect Illusion.png and last: Category:Red Velvet (band) members -[2018-02-13T00:40:16.151] [INFO] cheese - inserting 1000 documents. first: Gabriel Tamaş and last: Philip Prowse -[2018-02-13T00:40:16.195] [INFO] cheese - inserting 1000 documents. first: Claire Coombs and last: Category:Prince George's County, Maryland Executives -[2018-02-13T00:40:16.208] [INFO] cheese - inserting 1000 documents. first: La nonne sanglante and last: Category:Andy Kim songs -[2018-02-13T00:40:16.226] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:40:16.234] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:40:16.276] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T00:40:16.301] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:40:16.395] [INFO] cheese - inserting 1000 documents. first: File:RatlleandHumWiki.jpg and last: Espíritu Libre -[2018-02-13T00:40:16.428] [INFO] cheese - inserting 1000 documents. first: 1978 Colgate-Palmolive Masters and last: John Edward Michael Moore, Baron Moore of Lower Marsh -[2018-02-13T00:40:16.457] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:40:16.473] [INFO] cheese - inserting 1000 documents. first: Category:Puerto Rican film people and last: Alex Gonzalez (pitcher) -[2018-02-13T00:40:16.480] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:40:16.540] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:40:16.597] [INFO] cheese - inserting 1000 documents. first: Category:Musicians by South Korean band and last: Category:Politicians from Hengyang -[2018-02-13T00:40:16.653] [INFO] cheese - inserting 1000 documents. first: Athens Ohio Halloween Block Party and last: Mbungu Ekofa -[2018-02-13T00:40:16.661] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:16.714] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:40:16.742] [INFO] cheese - inserting 1000 documents. first: L.P. Fisher Public Library and last: I Don't Have to Be Me ('til Monday) -[2018-02-13T00:40:16.763] [INFO] cheese - inserting 1000 documents. first: Don Box and last: Metropolitan Police Department of Washington D.C. -[2018-02-13T00:40:16.789] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:16.833] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:16.867] [INFO] cheese - inserting 1000 documents. first: USS Clarinda and last: Telangana University -[2018-02-13T00:40:16.906] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:40:16.966] [INFO] cheese - inserting 1000 documents. first: Gold Apollo and last: Ancient Unix -[2018-02-13T00:40:16.980] [INFO] cheese - inserting 1000 documents. first: Three Rock Scout County and last: File:Giant squid tentacle.png -[2018-02-13T00:40:17.006] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:40:17.018] [INFO] cheese - inserting 1000 documents. first: 1998 Air Force Falcons football team and last: Schistura subfusca -[2018-02-13T00:40:17.040] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:40:17.067] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:40:17.133] [INFO] cheese - inserting 1000 documents. first: Wiener process with drift and last: 11 Squadron SAAF -[2018-02-13T00:40:17.155] [INFO] cheese - inserting 1000 documents. first: Gravity Guidance System and last: The National Audubon Society -[2018-02-13T00:40:17.167] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:40:17.192] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:17.290] [INFO] cheese - inserting 1000 documents. first: Template:Big Brother endgame/color and last: Ethiopia-Qatar relations -[2018-02-13T00:40:17.437] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:17.459] [INFO] cheese - inserting 1000 documents. first: Labor-Management Relations Act and last: File:Morphing Rutan.jpg -[2018-02-13T00:40:17.507] [INFO] cheese - inserting 1000 documents. first: Richland Creek (Crows Fork Creek) and last: Template:2016 Summer Paralympics football 5-a-side game B6 -[2018-02-13T00:40:17.531] [INFO] cheese - inserting 1000 documents. first: Joe Cunningham (disambiguation) and last: File:Singin' the Blues ODJB Waterson 1920.jpg -[2018-02-13T00:40:17.568] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:40:17.572] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:40:17.584] [INFO] cheese - inserting 1000 documents. first: File:Logo bbsbec.png and last: Indian passport -[2018-02-13T00:40:17.590] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:40:17.680] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:40:17.710] [INFO] cheese - inserting 1000 documents. first: File:Gramme Ring Armature - Minimal Core Penetration.jpg and last: Charles Marquette -[2018-02-13T00:40:17.772] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:40:17.779] [INFO] cheese - inserting 1000 documents. first: Arıkonak, Sincik and last: Bac Le ambush -[2018-02-13T00:40:17.875] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:40:17.933] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canadian military history articles by quality/7 and last: Rhopalosyrphus -[2018-02-13T00:40:17.992] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:40:18.070] [INFO] cheese - inserting 1000 documents. first: Zephyr (Basement Jaxx EP) and last: Tell Salhab Nahiyah -[2018-02-13T00:40:18.077] [INFO] cheese - inserting 1000 documents. first: Liverpool F C in Europe and last: MC Mehta v. Kamal Nath -[2018-02-13T00:40:18.104] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:40:18.133] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:40:18.160] [INFO] cheese - inserting 1000 documents. first: Egypt at the 1906 Summer Olympics and last: Wikipedia:Reference desk/Archives/Science/2014 January 25 -[2018-02-13T00:40:18.191] [INFO] cheese - inserting 1000 documents. first: Tour de Georgia and last: Mary of Russia -[2018-02-13T00:40:18.199] [INFO] cheese - inserting 1000 documents. first: Puc-rj and last: 40 Commando, Royal Marines -[2018-02-13T00:40:18.207] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:40:18.255] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:40:18.264] [INFO] cheese - inserting 1000 documents. first: Kewin Orellana and last: Watterson, Berlin & Snyder, Inc. -[2018-02-13T00:40:18.264] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:40:18.324] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:40:18.359] [INFO] cheese - inserting 1000 documents. first: Madhya Gujarat Vij and last: List of 125cc/Moto3 Motorcycle World Champions -[2018-02-13T00:40:18.374] [INFO] cheese - inserting 1000 documents. first: MC Mini Masters and last: Michael JS Dewar -[2018-02-13T00:40:18.403] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:40:18.407] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:40:18.509] [INFO] cheese - inserting 1000 documents. first: Uqayribat Nahiyah and last: Anthony Standen -[2018-02-13T00:40:18.548] [INFO] cheese - inserting 1000 documents. first: St. Paul's Episcopal Church (Peoria, Illinois) and last: Template:Hamilton Municipal Election, 2014 Ward Thirteen -[2018-02-13T00:40:18.556] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:40:18.593] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:40:18.605] [INFO] cheese - inserting 1000 documents. first: 2011 in United Kingdom and last: Primagama Tutoring Institution -[2018-02-13T00:40:18.653] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:40:18.703] [INFO] cheese - inserting 1000 documents. first: File:Dusty... Definitely.jpg and last: David Chapman (cricketer) -[2018-02-13T00:40:18.704] [INFO] cheese - inserting 1000 documents. first: Michael M J Fischer and last: Nicol Dalgleish -[2018-02-13T00:40:18.739] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:40:18.760] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:40:18.783] [INFO] cheese - inserting 1000 documents. first: Fredric Rieders and last: Old Academy -[2018-02-13T00:40:18.832] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:40:18.949] [INFO] cheese - inserting 1000 documents. first: Sam ritchie and last: MasterChef (US season 5) -[2018-02-13T00:40:18.992] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:40:19.009] [INFO] cheese - inserting 1000 documents. first: 1906 Colorado Silver and Gold football team and last: Two-veined hickory -[2018-02-13T00:40:19.028] [INFO] cheese - inserting 1000 documents. first: Richmond (Nova Scotia federal electoral district) and last: Guitar amp -[2018-02-13T00:40:19.091] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:40:19.110] [INFO] cheese - inserting 1000 documents. first: Ed Fryatt and last: Hypnomys -[2018-02-13T00:40:19.206] [INFO] cheese - inserting 1000 documents. first: Как пропатчить KDE2 под FreeBSD? and last: Trochalopteron lineatum -[2018-02-13T00:40:19.232] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:40:19.290] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:40:19.393] [INFO] cheese - inserting 1000 documents. first: Saint Sanctain and last: Synchroton-radiation X-ray tomographic microscopy -[2018-02-13T00:40:19.426] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:40:19.515] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:19.565] [INFO] cheese - inserting 1000 documents. first: Sailing at the 1924 Summer Olympics - 6 metre class and last: Norm Thompson Outfitters -[2018-02-13T00:40:19.601] [INFO] cheese - inserting 1000 documents. first: Gas (fuel) and last: Wikipedia:Reference desk/Archives/Science/2014 January 26 -[2018-02-13T00:40:19.683] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:40:19.723] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:19.840] [INFO] cheese - inserting 1000 documents. first: Lycée d'enseignement professionnel Florian and last: Universidad Católica del Ecuador -[2018-02-13T00:40:19.920] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:40:20.018] [INFO] cheese - inserting 1000 documents. first: Stigma (ligature) and last: Ufc.mn -[2018-02-13T00:40:20.094] [INFO] cheese - inserting 1000 documents. first: Trochalopteron erythrocephalum and last: File:View of Kiev's banks.JPG -[2018-02-13T00:40:20.130] [INFO] cheese - inserting 1000 documents. first: Jesse mcartney and last: Category:Banks of Uganda -[2018-02-13T00:40:20.130] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T00:40:20.154] [INFO] cheese - inserting 1000 documents. first: 2002–03 QMJHL season and last: Partido Galeguista -[2018-02-13T00:40:20.167] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:40:20.170] [INFO] cheese - inserting 1000 documents. first: White drummer cicada and last: Johann Georg Leumann -[2018-02-13T00:40:20.237] [INFO] cheese - inserting 1000 documents. first: Harold Schindler and last: Shame of Gijón -[2018-02-13T00:40:20.250] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T00:40:20.259] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:20.263] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:40:20.335] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:40:20.397] [INFO] cheese - inserting 1000 documents. first: Club Deportivo Universidad Técnica de Cotopaxi and last: Petrachi -[2018-02-13T00:40:20.444] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:40:20.552] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese capitals and last: Environmental physiologies -[2018-02-13T00:40:20.619] [INFO] cheese - inserting 1000 documents. first: Template:Wikiversity-c and last: Plastic leather -[2018-02-13T00:40:20.619] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:20.623] [INFO] cheese - inserting 1000 documents. first: The Last Temptation and last: Folklore (journal) -[2018-02-13T00:40:20.625] [INFO] cheese - inserting 1000 documents. first: Brachopterella and last: Rising limb -[2018-02-13T00:40:20.663] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:20.672] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:40:20.676] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:40:20.700] [INFO] cheese - inserting 1000 documents. first: Jestice and last: Pz III -[2018-02-13T00:40:20.757] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:40:20.872] [INFO] cheese - inserting 1000 documents. first: Wootton or Wootton Bridge and last: William Hervy Lamb Wallace -[2018-02-13T00:40:20.882] [INFO] cheese - inserting 1000 documents. first: Draft:Jocelyne Meinert and last: Template:Did you know nominations/Astrodatabank -[2018-02-13T00:40:20.921] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:40:20.929] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:40:21.006] [INFO] cheese - inserting 1000 documents. first: Hendiadyoin and last: List of Historic buildings in Guangzhou -[2018-02-13T00:40:21.056] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:40:21.107] [INFO] cheese - inserting 1000 documents. first: United Congolese Party and last: Category:Unincorporated communities in Miner County, South Dakota -[2018-02-13T00:40:21.140] [INFO] cheese - inserting 1000 documents. first: Engineering Research Center for Collaborative Adaptive Sensing of the Atmosphere and last: Whitefish Range -[2018-02-13T00:40:21.167] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:40:21.186] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:40:21.214] [INFO] cheese - inserting 1000 documents. first: Sophie of Württemberg (1563-1590) and last: Category:1552 in military history -[2018-02-13T00:40:21.225] [INFO] cheese - inserting 1000 documents. first: Pz IV and last: Summersonic -[2018-02-13T00:40:21.237] [INFO] cheese - inserting 1000 documents. first: Santorini tomato and last: Olivine Creek (British Columbia) -[2018-02-13T00:40:21.262] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:40:21.291] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:40:21.297] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:40:21.410] [INFO] cheese - inserting 1000 documents. first: St Mary's, Tilston and last: Wikipedia:Articles for deletion/Dark Princess -[2018-02-13T00:40:21.446] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:40:21.535] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected copyright violations/2014-02-01 and last: SpVgg Deggendorf -[2018-02-13T00:40:21.629] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:40:21.747] [INFO] cheese - inserting 1000 documents. first: Taal (film) and last: The Kentucky Kernel -[2018-02-13T00:40:21.776] [INFO] cheese - inserting 1000 documents. first: Mark Mazetti and last: File:CSL timeline.PNG -[2018-02-13T00:40:21.790] [INFO] cheese - inserting 1000 documents. first: Category:1553 in military history and last: Template:Poland men volleyball team 2016 CEV U20 European Championship -[2018-02-13T00:40:21.831] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:40:21.834] [INFO] cheese - inserting 1000 documents. first: C20H19F5N2O and last: Wikipedia:WikiProject Spam/Local/files.ifnimidi.com -[2018-02-13T00:40:21.844] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:40:21.882] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:40:21.925] [INFO] cheese - inserting 1000 documents. first: Greatest Hits (The Human League album) and last: Aquacade -[2018-02-13T00:40:21.951] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:40:21.982] [INFO] cheese - inserting 1000 documents. first: NE-1000 and last: Crosby Cross-Roads -[2018-02-13T00:40:22.005] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:40:22.074] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:40:22.155] [INFO] cheese - inserting 1000 documents. first: Pembroke Manor and last: United States presidential election in Utah, 1976 -[2018-02-13T00:40:22.241] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:40:22.311] [INFO] cheese - inserting 1000 documents. first: Category:Finnish men's volleyball players and last: Wikipedia:Articles for deletion/Panthers-Seahawks rivalry -[2018-02-13T00:40:22.377] [INFO] cheese - inserting 1000 documents. first: ACACB and last: Lewis and Clark Law Review -[2018-02-13T00:40:22.381] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:40:22.455] [INFO] cheese - inserting 1000 documents. first: The Five Companions and last: Category:Populated places in St. Landry Parish, Louisiana -[2018-02-13T00:40:22.511] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:40:22.537] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:40:22.619] [INFO] cheese - inserting 1000 documents. first: Claris XTND and last: TV Scoreboard -[2018-02-13T00:40:22.627] [INFO] cheese - inserting 1000 documents. first: Highlander, Isle of Man and last: STRN -[2018-02-13T00:40:22.726] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:40:22.756] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:40:22.768] [INFO] cheese - inserting 1000 documents. first: List of postal codes in Serbia and last: Brazil at the 1992 Summer Olympics -[2018-02-13T00:40:22.832] [INFO] cheese - inserting 1000 documents. first: List of The Musketeers episodes and last: Colorado Christian Cougars baseball -[2018-02-13T00:40:22.861] [INFO] cheese - inserting 1000 documents. first: 2016 Morocco Tennis Tour - Meknes - Singles and last: U Lac -[2018-02-13T00:40:22.909] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T00:40:22.955] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:40:22.958] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:40:23.260] [INFO] cheese - inserting 1000 documents. first: Southern California Law Review and last: Template:2001-02 in Scottish football -[2018-02-13T00:40:23.282] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:InMooseWeTrust/Anthony Bologna and last: File:Killer-fish.jpg -[2018-02-13T00:40:23.324] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:40:23.341] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:40:23.362] [INFO] cheese - inserting 1000 documents. first: SketchCom and last: Cherry picking tax avoidance -[2018-02-13T00:40:23.365] [INFO] cheese - inserting 1000 documents. first: Prospero Productions and last: Brice Vivien Batchaya Ketchanke -[2018-02-13T00:40:23.393] [INFO] cheese - inserting 1000 documents. first: Top Duck and last: Cinema of Myanmar -[2018-02-13T00:40:23.408] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:40:23.439] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:40:23.460] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:40:23.544] [INFO] cheese - inserting 1000 documents. first: Colorado Christian Cougars men's basketball and last: Carlyle Township -[2018-02-13T00:40:23.683] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:40:23.796] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 in Scottish football and last: A Simple Noodle Story -[2018-02-13T00:40:23.841] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Adams County, Mississippi and last: Stephen Simmonds (swimmer) -[2018-02-13T00:40:23.847] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:40:23.889] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:40:23.899] [INFO] cheese - inserting 1000 documents. first: Richard Wyndham and last: Casas de Eufemia -[2018-02-13T00:40:23.943] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:40:23.947] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2008-01-14/2007 in review and last: PPST -[2018-02-13T00:40:23.981] [INFO] cheese - inserting 1000 documents. first: O'hare and last: Runaway Horses -[2018-02-13T00:40:23.997] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:40:24.032] [INFO] cheese - inserting 1000 documents. first: Vanya Stambolova and last: Phyllis Eisenstein -[2018-02-13T00:40:24.079] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T00:40:24.105] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:40:24.130] [INFO] cheese - inserting 1000 documents. first: Douglas School and last: Category:Geography of Phnom Penh -[2018-02-13T00:40:24.187] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:40:24.264] [INFO] cheese - inserting 1000 documents. first: Template:Infobox US metropolitan area/doc and last: Wikipedia:Articles for deletion/American-born Chinese -[2018-02-13T00:40:24.341] [INFO] cheese - inserting 1000 documents. first: Category:1338 in England and last: Athene Royal Serge Creuz -[2018-02-13T00:40:24.344] [INFO] cheese - inserting 1000 documents. first: Antoine-François Delandine and last: Radio G.R.E.M. -[2018-02-13T00:40:24.343] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:40:24.419] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:40:24.456] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:40:24.536] [INFO] cheese - inserting 1000 documents. first: /- and last: Harry Reese -[2018-02-13T00:40:24.609] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:40:24.694] [INFO] cheese - inserting 1000 documents. first: USS Athene (AKA-22) and last: Wikipedia:IBT -[2018-02-13T00:40:24.764] [INFO] cheese - inserting 1000 documents. first: Douglas C. Steltz and last: United States gubernatorial elections, 1965 -[2018-02-13T00:40:24.810] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:40:24.877] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:40:24.965] [INFO] cheese - inserting 1000 documents. first: Itzhak Ilan and last: Law and Corpus Linguistics -[2018-02-13T00:40:24.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/merchant-accounts.ca and last: Murder One (bookshop) -[2018-02-13T00:40:24.977] [INFO] cheese - inserting 1000 documents. first: Dark Night (song) and last: Sheldgoose -[2018-02-13T00:40:24.997] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:40:25.021] [INFO] cheese - inserting 1000 documents. first: I ragazzi della 3ª C and last: Magdagachinski Raion -[2018-02-13T00:40:25.024] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:40:25.054] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:40:25.076] [INFO] cheese - inserting 1000 documents. first: (9954) 1991 GX7 and last: Bergamasco (language) -[2018-02-13T00:40:25.075] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:40:25.154] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:40:25.242] [INFO] cheese - inserting 1000 documents. first: Macotasa dimorpha and last: Sigma epsilon phi -[2018-02-13T00:40:25.280] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:25.283] [INFO] cheese - inserting 1000 documents. first: Automatic teller safe and last: Sea View Community Primary School -[2018-02-13T00:40:25.326] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:40:25.368] [INFO] cheese - inserting 1000 documents. first: Clayton Moss(the cross guitarist) and last: Wikipedia:Deletion review/Log/2016 September 13 -[2018-02-13T00:40:25.412] [INFO] cheese - inserting 1000 documents. first: Magdagachinskii Raion and last: Mial -[2018-02-13T00:40:25.415] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:40:25.462] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:40:25.486] [INFO] cheese - inserting 1000 documents. first: Irish League 1934-35 and last: Multiple marriage -[2018-02-13T00:40:25.560] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:25.573] [INFO] cheese - inserting 1000 documents. first: Ramsey Plaza Station and last: Wikipedia:Picture peer review/Roman bireme -[2018-02-13T00:40:25.654] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:40:25.670] [INFO] cheese - inserting 1000 documents. first: Category:Country data templates of Georgia and last: Goleh Dari Mohammad Hoseyn Mohammadi -[2018-02-13T00:40:25.726] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:40:25.763] [INFO] cheese - inserting 1000 documents. first: Girolamo Crescentini and last: Liddo-kun's Big Adventure -[2018-02-13T00:40:25.816] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:40:25.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for discussion/2016 September 13 and last: U.S. Army history -[2018-02-13T00:40:25.838] [INFO] cheese - inserting 1000 documents. first: Daryl Wilcher and last: Wikipedia:Articles for deletion/Permanent Ability (2nd nomination) -[2018-02-13T00:40:25.859] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:25.908] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:40:25.947] [INFO] cheese - inserting 1000 documents. first: Gourcuff and last: De La Salle College, Waterford -[2018-02-13T00:40:25.958] [INFO] cheese - inserting 1000 documents. first: Irish League 1916-17 and last: Valediction (2009 film) -[2018-02-13T00:40:25.999] [INFO] cheese - inserting 1000 documents. first: Hasanabad-e Sanjarlu and last: Category:Buildings and structures in An Giang Province -[2018-02-13T00:40:26.016] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:40:26.085] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:40:26.081] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:26.144] [INFO] cheese - inserting 1000 documents. first: Antonio Géder and last: Haitang Wan -[2018-02-13T00:40:26.243] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:40:26.358] [INFO] cheese - inserting 1000 documents. first: List of Great Lives programmes and last: Template:RK Zamet 2003-04 squad -[2018-02-13T00:40:26.430] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:40:26.513] [INFO] cheese - inserting 1000 documents. first: List of Indian states by the etymology of their name and last: Wikipedia:Articles for deletion/Jeff Roland -[2018-02-13T00:40:26.571] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anarchocrapitalism and last: Tgag Broad -[2018-02-13T00:40:26.574] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:40:26.659] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:40:26.713] [INFO] cheese - inserting 1000 documents. first: National Kunming Normal College and last: Ruslan Fakhriyev -[2018-02-13T00:40:26.746] [INFO] cheese - inserting 1000 documents. first: Category:People from Boussu and last: Portal:Literature/Excerpts/18 -[2018-02-13T00:40:26.805] [INFO] cheese - inserting 1000 documents. first: Wafah Dufour (bin Ladin) and last: Ikhtiyar Al-Din Muhammad Bin Bakhtiyar Khalji -[2018-02-13T00:40:26.807] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:40:26.816] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:40:26.844] [INFO] cheese - inserting 1000 documents. first: Sony Minidisk and last: Sawridge -[2018-02-13T00:40:26.907] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:40:26.929] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:40:26.989] [INFO] cheese - inserting 1000 documents. first: Category:Churches in Guayaquil and last: Jackson, Harry -[2018-02-13T00:40:27.067] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:40:27.210] [INFO] cheese - inserting 1000 documents. first: William Bludworth and last: Thomas Lear -[2018-02-13T00:40:27.286] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:27.345] [INFO] cheese - inserting 1000 documents. first: Petrogypsies and last: Wikipedia:Peer review/Julia Butterfly Hill/archive1 -[2018-02-13T00:40:27.393] [INFO] cheese - inserting 1000 documents. first: Portal:Literature/Excerpts/19 and last: Template:Cite DANAS -[2018-02-13T00:40:27.393] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:40:27.411] [INFO] cheese - inserting 1000 documents. first: Dainn (lunia) and last: Battle of Lemo -[2018-02-13T00:40:27.441] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:27.509] [INFO] cheese - inserting 1000 documents. first: Transgressing the Boundaries: Towards a Transformative Hermeneutics of Quantum Gravity and last: WABE -[2018-02-13T00:40:27.518] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:40:27.522] [INFO] cheese - inserting 1000 documents. first: Gordon Juckes and last: Ranking Miss P -[2018-02-13T00:40:27.543] [INFO] cheese - inserting 1000 documents. first: Jacobs, Harry and last: Arctolamia fruhstorferi laosica -[2018-02-13T00:40:27.566] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:40:27.597] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:40:27.655] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:40:27.812] [INFO] cheese - inserting 1000 documents. first: Lear (surname) and last: ITU G.992.3 Annex J -[2018-02-13T00:40:27.838] [INFO] cheese - inserting 1000 documents. first: Martin W. Deyo and last: Portal:Paleozoic/Natural world articles/45 -[2018-02-13T00:40:27.854] [INFO] cheese - inserting 1000 documents. first: McAlister Drive and last: National Federation of Fish Friers -[2018-02-13T00:40:27.859] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:27.884] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:27.910] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:40:27.998] [INFO] cheese - inserting 1000 documents. first: WQUN and last: Nokia 8800 Arte -[2018-02-13T00:40:28.055] [INFO] cheese - inserting 1000 documents. first: Template:WKU Hilltoppers and Lady Toppers athletic director navbox and last: Alibaba and 40 Thieves (1954 film) -[2018-02-13T00:40:28.055] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:40:28.076] [INFO] cheese - inserting 1000 documents. first: Xavier Florencio Cabre and last: Template:MedalCountry -[2018-02-13T00:40:28.094] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:40:28.146] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:40:28.198] [INFO] cheese - inserting 1000 documents. first: ITU G.992.3 Annex L and last: Robin Johns -[2018-02-13T00:40:28.263] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:40:28.369] [INFO] cheese - inserting 1000 documents. first: 2014 Fed Cup Europe/Africa Zone Group III – Pool A and last: Location vacation -[2018-02-13T00:40:28.392] [INFO] cheese - inserting 1000 documents. first: File:ConzadellaCampania-Stemma.gif and last: BarclayCard -[2018-02-13T00:40:28.471] [INFO] cheese - inserting 1000 documents. first: Category:2012 in Swedish cinema and last: Wikipedia:WikiProject Spam/LinkReports/googleenterprise.blogspot.co.nz -[2018-02-13T00:40:28.484] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:40:28.496] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:40:28.592] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:40:28.694] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sumoton and last: Template:Kraki -[2018-02-13T00:40:28.783] [INFO] cheese - inserting 1000 documents. first: Santafair and last: Herb Brackenreg -[2018-02-13T00:40:28.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Houngan (comics) and last: Wilhelm Grunwald -[2018-02-13T00:40:28.807] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T00:40:28.833] [INFO] cheese - inserting 1000 documents. first: File:Ckyvideocovers.jpg and last: Kaingaroa, New Zealand -[2018-02-13T00:40:28.893] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:40:28.934] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:40:28.947] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:40:29.076] [INFO] cheese - inserting 1000 documents. first: Melese klagesi and last: Mysore Colony monorail station -[2018-02-13T00:40:29.086] [INFO] cheese - inserting 1000 documents. first: USS Aeolus (SP-186) and last: Eierdiebe -[2018-02-13T00:40:29.140] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:40:29.151] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:40:29.193] [INFO] cheese - inserting 1000 documents. first: Piata unirii and last: Baral, Pakistan -[2018-02-13T00:40:29.296] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:40:29.558] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day/03/12 and last: Roman Catholic Diocese of Nakuru -[2018-02-13T00:40:29.638] [INFO] cheese - inserting 1000 documents. first: The Mole Show Live at the Roxy and last: File:Johnny Bright Incident.jpg -[2018-02-13T00:40:29.677] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:40:29.721] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:40:29.769] [INFO] cheese - inserting 1000 documents. first: Fareast 18R and last: Scottish Waterways Trust -[2018-02-13T00:40:29.793] [INFO] cheese - inserting 1000 documents. first: Michele Merlo and last: Black-billed Woodhoopoe -[2018-02-13T00:40:29.861] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:40:29.905] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:40:30.046] [INFO] cheese - inserting 1000 documents. first: Hheuk yeomso tang and last: Scott Caudill -[2018-02-13T00:40:30.208] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:40:30.452] [INFO] cheese - inserting 1000 documents. first: Sabrevois, Quebec and last: Stephfon Green -[2018-02-13T00:40:30.454] [INFO] cheese - inserting 1000 documents. first: Nøstvet culture and last: Wikipedia:Articles for deletion/Affordable luxury -[2018-02-13T00:40:30.540] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:30.542] [INFO] cheese - inserting 1000 documents. first: Durag-e Madineh and last: Metamya intersecta -[2018-02-13T00:40:30.563] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:40:30.576] [INFO] cheese - inserting 1000 documents. first: Kayusid and last: Chosunilbo -[2018-02-13T00:40:30.619] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:40:30.663] [INFO] cheese - inserting 1000 documents. first: Lighters and last: LMS Class 4P 2-6-4T (1945) -[2018-02-13T00:40:30.689] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:40:30.777] [INFO] cheese - batch complete in: 1.97 secs -[2018-02-13T00:40:30.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Why Medical Schools Should Embrace Wikipedia and last: File:Logo-publiceye-mobile.png -[2018-02-13T00:40:30.866] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:40:31.024] [INFO] cheese - inserting 1000 documents. first: Gordon Smith (New Zealand footballer) and last: Animal Planet (Germany) -[2018-02-13T00:40:31.064] [INFO] cheese - inserting 1000 documents. first: Chief Pathkiller and last: Wikipedia:Requests for arbitration/Kingofmann/Workshop -[2018-02-13T00:40:31.074] [INFO] cheese - inserting 1000 documents. first: Eve Aline Plumb and last: Aldophosphamide -[2018-02-13T00:40:31.073] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:31.118] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:40:31.140] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:40:31.223] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Islamophobia (3rd nomination) and last: Antonio José Martínez Palacios -[2018-02-13T00:40:31.260] [INFO] cheese - inserting 1000 documents. first: Illinois State Beach and last: Elizabeth Shove -[2018-02-13T00:40:31.291] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:31.331] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:40:31.479] [INFO] cheese - inserting 1000 documents. first: Portal:Time/Portals and WikiProjects/box-header and last: Wikipedia:Articles for deletion/Human Top (Bruce Bravelle) -[2018-02-13T00:40:31.488] [INFO] cheese - inserting 1000 documents. first: Discovery Channel (France) and last: Ian Perrotte -[2018-02-13T00:40:31.507] [INFO] cheese - inserting 1000 documents. first: Picasa2 and last: Aisyt -[2018-02-13T00:40:31.522] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:40:31.528] [INFO] cheese - inserting 1000 documents. first: Template:S-line/Mumbai Suburban Railway right/Harbour and last: Paramya bricenoi -[2018-02-13T00:40:31.530] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:40:31.593] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:40:31.614] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:40:31.739] [INFO] cheese - inserting 1000 documents. first: Category:1991 in Brazilian television and last: Danger Has Two Faces -[2018-02-13T00:40:31.860] [INFO] cheese - inserting 1000 documents. first: Category:Cyclists at the 2002 Commonwealth Games and last: Rigi (software) -[2018-02-13T00:40:31.890] [INFO] cheese - inserting 1000 documents. first: Carter Creek (Current River) and last: Clerk of the Crown and Hanaper -[2018-02-13T00:40:31.900] [INFO] cheese - batch complete in: 3.007 secs -[2018-02-13T00:40:31.983] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:40:31.993] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:40:32.090] [INFO] cheese - inserting 1000 documents. first: Makarajyoti and last: Tun Mustapha -[2018-02-13T00:40:32.250] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:40:32.335] [INFO] cheese - inserting 1000 documents. first: Port Lihou and last: Anton Braith -[2018-02-13T00:40:32.468] [INFO] cheese - inserting 1000 documents. first: Domagoj Kapeć and last: Revolt of the Barretinas -[2018-02-13T00:40:32.491] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:40:32.536] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:40:32.650] [INFO] cheese - inserting 1000 documents. first: Pop Goes the Ed and last: Tom Gabriel Fischer -[2018-02-13T00:40:32.750] [INFO] cheese - inserting 1000 documents. first: Tudela and last: Clitheroe (UK Parliament constituency) -[2018-02-13T00:40:32.752] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T00:40:32.759] [INFO] cheese - inserting 1000 documents. first: Conscience Films and last: John Lillibridge -[2018-02-13T00:40:32.826] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:40:32.838] [INFO] cheese - inserting 1000 documents. first: Category:1915 disestablishments in the Philippines and last: Category:Equestrian statues in New Jersey -[2018-02-13T00:40:32.845] [INFO] cheese - inserting 1000 documents. first: Anthony Messner and last: Spatial Visualization Ability -[2018-02-13T00:40:32.850] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:40:32.919] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:40:33.014] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T00:40:33.072] [INFO] cheese - inserting 1000 documents. first: Daniel Merillon and last: Zone press -[2018-02-13T00:40:33.079] [INFO] cheese - inserting 1000 documents. first: N-I rocket and last: A.C. Milan records -[2018-02-13T00:40:33.133] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:40:33.132] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:40:33.409] [INFO] cheese - inserting 1000 documents. first: Jimmy Todd (Scottish footballer) and last: Funryu -[2018-02-13T00:40:33.469] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:40:33.487] [INFO] cheese - inserting 1000 documents. first: Lamine Ben Aziza and last: St. Thomas' Church, St. Annes-on-Sea -[2018-02-13T00:40:33.525] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured portal candidates/Featured log/August 2006 and last: U-can -[2018-02-13T00:40:33.573] [INFO] cheese - inserting 1000 documents. first: S fone and last: Aepyornis maximus -[2018-02-13T00:40:33.579] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:40:33.631] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:40:33.746] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:40:33.771] [INFO] cheese - inserting 1000 documents. first: Species Richness and last: Future Combat Systems Infantry Carrier Vehicle -[2018-02-13T00:40:33.802] [INFO] cheese - inserting 1000 documents. first: Category:Danish people of Vietnamese descent and last: File:NBA 2K2 Cover.jpg -[2018-02-13T00:40:33.867] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T00:40:33.875] [INFO] cheese - inserting 1000 documents. first: Template:Shiraz County and last: Wikipedia:Sockpuppet investigations/Hamelmelaga -[2018-02-13T00:40:33.881] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:40:33.968] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:40:33.975] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2011-10-04 and last: Wikipedia:WikiProject Spam/Local/5by5.tv -[2018-02-13T00:40:34.033] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:40:34.099] [INFO] cheese - inserting 1000 documents. first: Equestrian statue of Chulalongkorn and last: Category:1836 in the Grand Duchy of Tuscany -[2018-02-13T00:40:34.118] [INFO] cheese - inserting 1000 documents. first: Boarding School and last: Bzovík -[2018-02-13T00:40:34.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sterkebak.com and last: Kerstin Juergens -[2018-02-13T00:40:34.142] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:40:34.163] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:40:34.174] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:40:34.317] [INFO] cheese - inserting 1000 documents. first: Atsede Kidanu and last: Lights, Camera, Moo! -[2018-02-13T00:40:34.334] [INFO] cheese - inserting 1000 documents. first: Marital property and last: Mazra'eh-ye Pir Badam -[2018-02-13T00:40:34.336] [INFO] cheese - inserting 1000 documents. first: Category:Canadian military transport aircraft 1950–1959 and last: Guillem de Cabestaing -[2018-02-13T00:40:34.357] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:40:34.379] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:40:34.379] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:40:34.422] [INFO] cheese - inserting 1000 documents. first: Targeted repurchase and last: 1997 in British music -[2018-02-13T00:40:34.470] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:34.516] [INFO] cheese - inserting 1000 documents. first: Guru (2017 film) and last: Nether district Vítkovice -[2018-02-13T00:40:34.564] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:40:34.626] [INFO] cheese - inserting 1000 documents. first: Terme (disambiguation) and last: Roger Anthony Bull -[2018-02-13T00:40:34.646] [INFO] cheese - inserting 1000 documents. first: Voices of Animals and Men and last: Beresnevicius -[2018-02-13T00:40:34.673] [INFO] cheese - inserting 1000 documents. first: Tarbor-e Bala and last: Martin Foltyn -[2018-02-13T00:40:34.677] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:40:34.699] [INFO] cheese - inserting 1000 documents. first: Animal Farmers and last: Category:Cancelled Super Nintendo Entertainment System games -[2018-02-13T00:40:34.701] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:40:34.716] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:40:34.772] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:40:34.961] [INFO] cheese - inserting 1000 documents. first: File:Gamest 1986-05 Issue 001 cover.jpg and last: Portal:Early Modern Britain/Selected media/2 -[2018-02-13T00:40:35.012] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:40:35.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/October 2011 and last: Category:United States civil aircraft 1960–1969 -[2018-02-13T00:40:35.160] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:40:35.220] [INFO] cheese - inserting 1000 documents. first: Margaret “Peggy” Focarino and last: South Africa women's national softball team -[2018-02-13T00:40:35.237] [INFO] cheese - inserting 1000 documents. first: Category:User ccp-N and last: Template:AFB game box end/doc -[2018-02-13T00:40:35.271] [INFO] cheese - inserting 1000 documents. first: File:Scrotum.png and last: Bœrsch -[2018-02-13T00:40:35.285] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:40:35.301] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:40:35.349] [INFO] cheese - inserting 1000 documents. first: Low Germanic languages and last: File:Twilight-imperium-layout 12.jpg -[2018-02-13T00:40:35.358] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:40:35.471] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:35.572] [INFO] cheese - inserting 1000 documents. first: Portal:Early Modern Britain/Selected media/3 and last: Category:Somalia at the Paralympics -[2018-02-13T00:40:35.613] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pierre Clèment and last: Maximum Break -[2018-02-13T00:40:35.639] [INFO] cheese - inserting 1000 documents. first: Grande Saline, Haiti and last: Government Center, Miami, FL -[2018-02-13T00:40:35.646] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:35.672] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:40:35.678] [INFO] cheese - inserting 1000 documents. first: Category:United States civil aircraft 1970–1979 and last: Template:Latter Day Saint biography/William Clayton (Mormon) -[2018-02-13T00:40:35.701] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T00:40:35.711] [INFO] cheese - inserting 1000 documents. first: OPQ Letters and last: P.C. Cast -[2018-02-13T00:40:35.729] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:35.775] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:40:35.886] [INFO] cheese - inserting 1000 documents. first: Dmitriy Zarva and last: Vitali Pyanchenko -[2018-02-13T00:40:35.946] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:40:36.011] [INFO] cheese - inserting 1000 documents. first: Great Explorations, The Children's Museum in St. Petersburg, FL and last: Quot scheme -[2018-02-13T00:40:36.023] [INFO] cheese - inserting 1000 documents. first: Ezequias and last: List of Shadow Raiders planets -[2018-02-13T00:40:36.056] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:40:36.094] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:40:36.135] [INFO] cheese - inserting 1000 documents. first: Rallus indicus and last: Pirelli General FC -[2018-02-13T00:40:36.135] [INFO] cheese - inserting 1000 documents. first: Zübeyde Süpürgeci and last: Barcelona (Spanish Congress Electoral District) -[2018-02-13T00:40:36.175] [INFO] cheese - inserting 1000 documents. first: The Constance Perkins House and last: Category:Suicide bombings in Somalia -[2018-02-13T00:40:36.178] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:40:36.194] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:40:36.286] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:36.443] [INFO] cheese - inserting 1000 documents. first: Ukrainian Second League 1999-00 and last: The Billy Bush Show! -[2018-02-13T00:40:36.451] [INFO] cheese - inserting 1000 documents. first: Category:Division Films films and last: File:The Canadian Institute of Diversity and Inclusion.jpg -[2018-02-13T00:40:36.484] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:36.490] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:40:36.499] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in the Cook Islands and last: Category:Teen superhero television programs -[2018-02-13T00:40:36.542] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:40:36.544] [INFO] cheese - inserting 1000 documents. first: Otel Madimak and last: Forbes (band) -[2018-02-13T00:40:36.578] [INFO] cheese - inserting 1000 documents. first: Florida's 22nd congressional district and last: Earl Siebert -[2018-02-13T00:40:36.584] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:40:36.602] [INFO] cheese - inserting 1000 documents. first: Bergen Air Transport and last: This Place Hotel -[2018-02-13T00:40:36.662] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:40:36.733] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T00:40:36.783] [INFO] cheese - inserting 1000 documents. first: File:Laurapausini gira madrid.jpg and last: Category:Education in Union County, Mississippi -[2018-02-13T00:40:36.898] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:40:37.034] [INFO] cheese - inserting 1000 documents. first: Journey to Self and last: Busan–Gimhae Light Rail Transit Company -[2018-02-13T00:40:37.043] [INFO] cheese - inserting 1000 documents. first: Heather Mansfield and last: Category:LGBT Native Hawaiian culture -[2018-02-13T00:40:37.065] [INFO] cheese - inserting 1000 documents. first: List of governors of Kabul and last: Wikipedia:WikiProject Spam/LinkReports/bangboard.de -[2018-02-13T00:40:37.103] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:40:37.135] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:40:37.152] [INFO] cheese - inserting 1000 documents. first: Quarter-pinched sphere theorem and last: Flag of Chukotka -[2018-02-13T00:40:37.174] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:37.220] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:40:37.260] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk archive/Language/2006 August 13 and last: Portal:Humor/Weekly Colaboration/Next Week -[2018-02-13T00:40:37.319] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:40:37.388] [INFO] cheese - inserting 1000 documents. first: Category:Education in Montgomery County, Mississippi and last: Wikipedia:WikiProject Spam/Local/pingsite.org -[2018-02-13T00:40:37.441] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:40:37.568] [INFO] cheese - inserting 1000 documents. first: Mircea Baniciu and last: 5678's -[2018-02-13T00:40:37.602] [INFO] cheese - inserting 1000 documents. first: Juliusz Fortunat Kossak and last: Tahoe-LAFS -[2018-02-13T00:40:37.607] [INFO] cheese - inserting 1000 documents. first: Abdulamalek Al-Shammeri and last: Category:Wikipedia sockpuppets of Kanojiaakhbaar -[2018-02-13T00:40:37.620] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:40:37.642] [INFO] cheese - inserting 1000 documents. first: Thomson River Dam and last: Laura Ucros Tellez -[2018-02-13T00:40:37.653] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:40:37.693] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Cape Verde articles and last: Category:A-Class Uganda articles -[2018-02-13T00:40:37.707] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:40:37.713] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:40:37.740] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:40:37.816] [INFO] cheese - inserting 1000 documents. first: Lau Kong Yung v Director of Immigration and last: Yom kippur war -[2018-02-13T00:40:37.849] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:40:37.852] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lovemyseat and last: Roughton, Norfolk -[2018-02-13T00:40:37.909] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:40:38.022] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of XZillX and last: Shahid Ghoddoosi Metro Station -[2018-02-13T00:40:38.048] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:40:38.069] [INFO] cheese - inserting 1000 documents. first: Lake Kolima and last: Microaggressions -[2018-02-13T00:40:38.086] [INFO] cheese - inserting 1000 documents. first: Les Rallizes Denudes and last: Orestes H. Caldwell -[2018-02-13T00:40:38.105] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:40:38.126] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:40:38.135] [INFO] cheese - inserting 1000 documents. first: 1997 "M" Electronika Cup and last: Set logic -[2018-02-13T00:40:38.163] [INFO] cheese - inserting 1000 documents. first: Qaleh Ganj and last: Category:Chinese fighter aircraft 1940–1949 -[2018-02-13T00:40:38.197] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:40:38.195] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:40:38.307] [INFO] cheese - inserting 1000 documents. first: Earina autumnalis and last: Megas (album) -[2018-02-13T00:40:38.352] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:38.368] [INFO] cheese - inserting 1000 documents. first: 2016 russian parliamentary elections and last: Real Man (disambiguation) -[2018-02-13T00:40:38.404] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:40:38.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Systemic Bias and last: Phillip Ashton -[2018-02-13T00:40:38.465] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:40:38.477] [INFO] cheese - inserting 1000 documents. first: Category:Economic and Social Research Institute and last: Category:Law firms of Spain -[2018-02-13T00:40:38.519] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:40:38.554] [INFO] cheese - inserting 1000 documents. first: Category:Czech military trainer aircraft 2000–2009 and last: Wikipedia:WikiProject Spam/Local/solarmovie.eu -[2018-02-13T00:40:38.582] [INFO] cheese - inserting 1000 documents. first: Blue-Will and last: Red-eared-slider turtle -[2018-02-13T00:40:38.630] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:40:38.641] [INFO] cheese - inserting 1000 documents. first: 5-6-7-8s and last: Coup of the Voluntaries -[2018-02-13T00:40:38.649] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:40:38.702] [INFO] cheese - inserting 1000 documents. first: Jeff Trandahl and last: Category:Wikipedia requested maps in Kentucky -[2018-02-13T00:40:38.769] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T00:40:38.808] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:40:38.892] [INFO] cheese - inserting 1000 documents. first: Category:Fb competition templates 2015–16 and last: Beer Mixes -[2018-02-13T00:40:38.920] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:40:39.023] [INFO] cheese - inserting 1000 documents. first: Drakula halála and last: List of compositions by Otto Albert Tichy -[2018-02-13T00:40:39.030] [INFO] cheese - inserting 1000 documents. first: Young lovers and last: Category:Trams portal -[2018-02-13T00:40:39.072] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:40:39.075] [INFO] cheese - inserting 1000 documents. first: Orville Alfred Ralston and last: Mothers and Daughters: A Three-Generational Study of Health Attitudes and Behaviour -[2018-02-13T00:40:39.087] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:39.166] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:39.250] [INFO] cheese - inserting 1000 documents. first: Kwon Oh-son and last: (7792) 1995 WZ3 -[2018-02-13T00:40:39.293] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:40:39.342] [INFO] cheese - inserting 1000 documents. first: Category:Mexican fantasy and last: U.S. presidential elections in Minnesota -[2018-02-13T00:40:39.342] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested maps in California and last: File:Macpherson Emblem.gif -[2018-02-13T00:40:39.404] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:40:39.406] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:40:39.559] [INFO] cheese - inserting 1000 documents. first: Church of St. James, New Brighton and last: Tiz Post -[2018-02-13T00:40:39.637] [INFO] cheese - inserting 1000 documents. first: Ascendancy (game) and last: Agnes von Esterhazy -[2018-02-13T00:40:39.649] [INFO] cheese - inserting 1000 documents. first: Soviet submarine K-56 and last: Brendan Schaub -[2018-02-13T00:40:39.656] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:40:39.703] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:40:39.706] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:39.766] [INFO] cheese - inserting 1000 documents. first: Hittite Grammar and last: Wikipedia:WikiProject Spam/LinkReports/rioaventura.com.mx -[2018-02-13T00:40:39.796] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:40:39.913] [INFO] cheese - inserting 1000 documents. first: US presidential elections in Michigan and last: Sicilian Defence, Katalimov Variation -[2018-02-13T00:40:39.960] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:40:39.999] [INFO] cheese - inserting 1000 documents. first: Tiz and last: CAAWC -[2018-02-13T00:40:40.040] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:40:40.060] [INFO] cheese - inserting 1000 documents. first: Venetsianov and last: Wikipedia:Requests for mediation/Geostrategy -[2018-02-13T00:40:40.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Database reports/Indefinitely fully-protected talk pages/Configuration and last: William H. Taft High School (San Antonio) -[2018-02-13T00:40:40.107] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:40:40.138] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople by state in Germany and last: Wikipedia:WikiProject Spam/LinkReports/historiasdecardoso.blogspot.com -[2018-02-13T00:40:40.146] [INFO] cheese - inserting 1000 documents. first: Kunming City and last: Wikipedia:Version 1.0 Editorial Team/Sierra Leone articles by quality log -[2018-02-13T00:40:40.148] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:40.198] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:40:40.204] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:40:40.221] [INFO] cheese - inserting 1000 documents. first: Nigger toe and last: Embarkation Room -[2018-02-13T00:40:40.242] [INFO] cheese - inserting 1000 documents. first: Category:Road bridges on the National Register of Historic Places in Idaho and last: FLSA (disambiguation) -[2018-02-13T00:40:40.275] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:40:40.295] [INFO] cheese - batch complete in: 1.526 secs -[2018-02-13T00:40:40.433] [INFO] cheese - inserting 1000 documents. first: Maithri and last: 21 Demands (band) -[2018-02-13T00:40:40.459] [INFO] cheese - inserting 1000 documents. first: Verizon ringtones and last: Lillian Smith (author) -[2018-02-13T00:40:40.477] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:40:40.508] [INFO] cheese - inserting 1000 documents. first: EdlSA III and last: Southeastern Loloish -[2018-02-13T00:40:40.509] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:40:40.530] [INFO] cheese - inserting 1000 documents. first: Pepsi NFL Rookie of the Week and last: Triple-dot punctuation mark -[2018-02-13T00:40:40.561] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:40:40.594] [INFO] cheese - inserting 1000 documents. first: Ferdinand Lee Barnett (disambiguation) and last: Magda Bruggemann -[2018-02-13T00:40:40.595] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:40:40.633] [INFO] cheese - inserting 1000 documents. first: Merseyside East (European Parliament constituency) and last: 1933 Penya Rhin Grand Prix -[2018-02-13T00:40:40.649] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:40:40.703] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:40:40.828] [INFO] cheese - inserting 1000 documents. first: Submarine Squadron 15 and last: Category:Spanish military reconnaissance aircraft 2000–2009 -[2018-02-13T00:40:40.849] [INFO] cheese - inserting 1000 documents. first: American Ultra and last: Moroccan Royal Gendarmerie -[2018-02-13T00:40:40.855] [INFO] cheese - inserting 1000 documents. first: Yamada Line (Kintetsu) and last: Kraljeva Sutjeska Franciscan Monastery -[2018-02-13T00:40:40.865] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:40:40.909] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:40:40.920] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:40:40.958] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/asb-computer.com and last: C30H26O12 -[2018-02-13T00:40:41.019] [INFO] cheese - inserting 1000 documents. first: Abu al-Saqr Abd al-Aziz Ibn Uthman Ibn Ali al-Qabisi l-Mawsili and last: Portrait of Carrie Lucas -[2018-02-13T00:40:41.022] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:41.071] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:40:41.193] [INFO] cheese - inserting 1000 documents. first: Template:Three Village Central School District Schools and last: Portal:Mammals/Selected articles/Layout -[2018-02-13T00:40:41.259] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:40:41.276] [INFO] cheese - inserting 1000 documents. first: Boreham, Wiltshire and last: Kushu -[2018-02-13T00:40:41.283] [INFO] cheese - inserting 1000 documents. first: The Staple Swingers and last: Category:University departments in Canada -[2018-02-13T00:40:41.327] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:40:41.342] [INFO] cheese - inserting 1000 documents. first: Ganges Chasma and last: Roman Catholic Archdiocese of Munich and Freising -[2018-02-13T00:40:41.348] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:40:41.432] [INFO] cheese - inserting 1000 documents. first: The dakotas (Band) and last: Tyniste nad Orlici -[2018-02-13T00:40:41.437] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T00:40:41.472] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:40:41.524] [INFO] cheese - inserting 1000 documents. first: Category:AS Saint-Étienne (Ladies) and last: Regulatory chill -[2018-02-13T00:40:41.552] [INFO] cheese - inserting 1000 documents. first: Proanthocyanidin B2 and last: Wikipedia:Sockpuppet investigations/Uruuru/Archive -[2018-02-13T00:40:41.565] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:40:41.623] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:40:41.746] [INFO] cheese - inserting 1000 documents. first: Kuchow and last: Nanna montana -[2018-02-13T00:40:41.746] [INFO] cheese - inserting 1000 documents. first: Mobi-green car and last: 27th Battalion (City of Winnipeg), CEF -[2018-02-13T00:40:41.769] [INFO] cheese - inserting 1000 documents. first: Stokksundet (disambiguation) and last: Her Space Holiday (album) -[2018-02-13T00:40:41.781] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:40:41.792] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:40:41.827] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:40:41.931] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/TomTheHand and last: Wikipedia:Miscellany for deletion/User:Sportwoo -[2018-02-13T00:40:41.952] [INFO] cheese - inserting 1000 documents. first: Sunnydale Syndrome and last: Consensual violence -[2018-02-13T00:40:41.970] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:40:42.007] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:40:42.073] [INFO] cheese - inserting 1000 documents. first: Record Plant Black and last: Wrong Side of the Street -[2018-02-13T00:40:42.138] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:40:42.144] [INFO] cheese - inserting 1000 documents. first: Suedehead: The Best Of Morrissey and last: Template:Did you know nominations/An Anglo-American Alliance -[2018-02-13T00:40:42.172] [INFO] cheese - inserting 1000 documents. first: Timeline of the War in Afghanistan (May 2004) and last: KTNL (AM) -[2018-02-13T00:40:42.197] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:40:42.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Height and intelligence and last: Fe(3+) -[2018-02-13T00:40:42.219] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:42.259] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:40:42.263] [INFO] cheese - inserting 1000 documents. first: File:Electronic balance.svg and last: Category:Rail mountain passes of Mexico -[2018-02-13T00:40:42.314] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:40:42.360] [INFO] cheese - inserting 1000 documents. first: Arban (military unit) and last: Harvest Remixes -[2018-02-13T00:40:42.434] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:40:42.461] [INFO] cheese - inserting 1000 documents. first: Undivided expressway and last: File:France colonial Empire1.png -[2018-02-13T00:40:42.503] [INFO] cheese - inserting 1000 documents. first: WPSL (AM) and last: Real Madrid CF 2007-08 season -[2018-02-13T00:40:42.510] [INFO] cheese - inserting 1000 documents. first: Category:Defunct organisations based in Somalia and last: Albert Tullgren -[2018-02-13T00:40:42.519] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:40:42.539] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:40:42.560] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:40:42.592] [INFO] cheese - inserting 1000 documents. first: Michael Felix Lynch and last: Category:Protected areas of Polk County, Tennessee -[2018-02-13T00:40:42.620] [INFO] cheese - inserting 1000 documents. first: Ravi Prakash and last: Chah-e Dazu -[2018-02-13T00:40:42.635] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:40:42.674] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:40:42.795] [INFO] cheese - inserting 1000 documents. first: Template:User OS:Windows/doc and last: Byzantine–Bulgarian Treaty of 815 -[2018-02-13T00:40:42.832] [INFO] cheese - inserting 1000 documents. first: Waiting for a World War and last: USA soccer national team -[2018-02-13T00:40:42.883] [INFO] cheese - inserting 1000 documents. first: AHQ Western Desert and last: S A von Rottemburg -[2018-02-13T00:40:42.955] [INFO] cheese - inserting 1000 documents. first: Category:Euglenozoa and last: Woodcock Township, PA -[2018-02-13T00:40:42.965] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:42.975] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:40:43.046] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:43.070] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:40:43.095] [INFO] cheese - inserting 1000 documents. first: Sarah Thomas (badminton) and last: روزي اليازجي -[2018-02-13T00:40:43.096] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Polk County, Tennessee and last: Coolibah Tree -[2018-02-13T00:40:43.182] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:43.192] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:43.226] [INFO] cheese - inserting 1000 documents. first: Chah-e Jalal, Dalgan and last: Wikipedia:Reference desk/Archives/Miscellaneous/2014 February 7 -[2018-02-13T00:40:43.290] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:40:43.455] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/high-supplies.com and last: Wikipedia:WikiProject Spam/LinkReports/cinemaretro.com -[2018-02-13T00:40:43.542] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:40:43.547] [INFO] cheese - inserting 1000 documents. first: Ann Aldrich and last: Happy Valley Athletic Association -[2018-02-13T00:40:43.570] [INFO] cheese - inserting 1000 documents. first: File:JLTcover.gif and last: Reteni -[2018-02-13T00:40:43.613] [INFO] cheese - inserting 1000 documents. first: Category:1998 health disasters and last: File:One Fine Day (Katherine Jenkins album) coverart.jpg -[2018-02-13T00:40:43.623] [INFO] cheese - inserting 1000 documents. first: Saginaw Arts and Sciences Academy and last: KMYS -[2018-02-13T00:40:43.628] [INFO] cheese - inserting 1000 documents. first: Alma Gould Dale and last: TimedText:The Monster (Eminem featuring Rihanna) sample.ogg.en.srt -[2018-02-13T00:40:43.630] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:40:43.639] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:40:43.687] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:40:43.694] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:40:43.707] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:40:43.797] [INFO] cheese - inserting 1000 documents. first: File:Lambton Jaffas FC.png and last: File:Wmow 2014.png -[2018-02-13T00:40:43.908] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:40:44.137] [INFO] cheese - inserting 1000 documents. first: Hot-metal typography and last: Category:History of Belgrade -[2018-02-13T00:40:44.176] [INFO] cheese - inserting 1000 documents. first: Nerwa (Chopal), Shimla and last: Steve Martin (sportscaster) -[2018-02-13T00:40:44.176] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:44.203] [INFO] cheese - inserting 1000 documents. first: Category:Photography in Pakistan and last: Wikipedia:WikiProject Spam/Local/sh.horrycountyschools.net -[2018-02-13T00:40:44.231] [INFO] cheese - inserting 1000 documents. first: File:Kenny Chesney - Setting the World on Fire (single cover).jpg and last: Category:Recipients of the Padma Bhushan in other fields -[2018-02-13T00:40:44.233] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:40:44.247] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:40:44.249] [INFO] cheese - inserting 1000 documents. first: Jan des bouvrie and last: The Last Open Road -[2018-02-13T00:40:44.279] [INFO] cheese - inserting 1000 documents. first: File:UFC on FOX 11 event poster.jpg and last: Halim Alizehi -[2018-02-13T00:40:44.285] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:40:44.295] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:40:44.317] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:40:44.418] [INFO] cheese - inserting 1000 documents. first: CSU Hayward and last: Category:Demographics of Uganda -[2018-02-13T00:40:44.465] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:40:44.528] [INFO] cheese - inserting 1000 documents. first: File:KREX-TV Logo.png and last: Şerafettin Işık -[2018-02-13T00:40:44.534] [INFO] cheese - inserting 1000 documents. first: Vivendi Trophy and last: Jean-Robens Jerome -[2018-02-13T00:40:44.577] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:40:44.584] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:40:44.631] [INFO] cheese - inserting 1000 documents. first: A House: Live in Concert and last: Mid-Century Insurance Company -[2018-02-13T00:40:44.670] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:40:44.688] [INFO] cheese - inserting 1000 documents. first: El alma de los niños and last: Amata atricornis -[2018-02-13T00:40:44.694] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ahmad Behbahani and last: Louis Ginsberg (poet) -[2018-02-13T00:40:44.720] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:40:44.727] [INFO] cheese - inserting 1000 documents. first: Creation evolution debate and last: Cardiff and The Vale of Glamorgan Scout Area (The Scout Association) -[2018-02-13T00:40:44.729] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:44.773] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:40:44.959] [INFO] cheese - inserting 1000 documents. first: C. Linnaeus and last: Thatcher government -[2018-02-13T00:40:44.984] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Germany/Did you know/2 and last: Wikipedia:Articles for deletion/Pocahontas Middle School (2nd nomination) -[2018-02-13T00:40:44.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bradjonesmusic/Archive and last: California marble -[2018-02-13T00:40:45.011] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:40:45.014] [INFO] cheese - inserting 1000 documents. first: Bampur-e Sharqi Rural District and last: Sah Kahooran -[2018-02-13T00:40:45.026] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:40:45.056] [INFO] cheese - inserting 1000 documents. first: Mesta Castillana and last: Villa della Regina -[2018-02-13T00:40:45.067] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:40:45.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Place and last: H. Gordon Barrett -[2018-02-13T00:40:45.078] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:40:45.143] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:40:45.218] [INFO] cheese - inserting 1000 documents. first: Autopista AP-2 and last: Vess L. Ossman -[2018-02-13T00:40:45.251] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:40:45.306] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:40:45.526] [INFO] cheese - inserting 1000 documents. first: California Marble and last: Callistola elegans -[2018-02-13T00:40:45.552] [INFO] cheese - inserting 1000 documents. first: Sar Kuhuran and last: Guildhall (video gaming) -[2018-02-13T00:40:45.577] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:40:45.634] [INFO] cheese - inserting 1000 documents. first: Nanofountain Probe and last: Category:1999 establishments in the Bahamas -[2018-02-13T00:40:45.638] [INFO] cheese - inserting 1000 documents. first: Frank E. Sheeder III and last: Lefèbvre's Ringlet -[2018-02-13T00:40:45.637] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:40:45.680] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:40:45.700] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:40:45.791] [INFO] cheese - inserting 1000 documents. first: Ottawa—Carleton and last: Jegindoe -[2018-02-13T00:40:45.797] [INFO] cheese - inserting 1000 documents. first: Master Derby and last: Lindsay Ellingson -[2018-02-13T00:40:45.867] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:40:45.897] [INFO] cheese - inserting 1000 documents. first: The Yin & The Yang and last: Wikipedia:Deletion review/Log/2006 August 18 -[2018-02-13T00:40:45.907] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:40:46.028] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:40:46.110] [INFO] cheese - inserting 1000 documents. first: Kohei Yoshioka and last: Macau women's national under-16 basketball team -[2018-02-13T00:40:46.194] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:40:46.209] [INFO] cheese - inserting 1000 documents. first: Guild (video gaming) and last: Angie McAllister -[2018-02-13T00:40:46.285] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:40:46.367] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Hollyoaks/See also and last: 10050 Cielo Dr -[2018-02-13T00:40:46.408] [INFO] cheese - inserting 1000 documents. first: Lumped system and last: Kotreshi Kanasu -[2018-02-13T00:40:46.434] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:40:46.485] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:40:46.499] [INFO] cheese - inserting 1000 documents. first: Joseph-Arthur Barrette and last: Protestants in Japan -[2018-02-13T00:40:46.582] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:40:46.636] [INFO] cheese - inserting 1000 documents. first: Jason "Wee-Man" Acuña and last: Carl Hayman -[2018-02-13T00:40:46.639] [INFO] cheese - inserting 1000 documents. first: 2016 Open d'Orléans – Doubles and last: Fossil fuels in the United KIngdom -[2018-02-13T00:40:46.681] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:40:46.693] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:40:46.745] [INFO] cheese - inserting 1000 documents. first: @ShittingtonUK and last: Template:User Part Time Resident-Antrim -[2018-02-13T00:40:46.752] [INFO] cheese - inserting 1000 documents. first: Evan S. Connell, Jr. and last: Jay Hill -[2018-02-13T00:40:46.779] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:40:46.814] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:40:46.870] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Jay Pritzker Pavilion/archive1 and last: Parallelia crameri -[2018-02-13T00:40:46.912] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:40:46.917] [INFO] cheese - inserting 1000 documents. first: 10050 Cielo Dr. and last: Kursaal (amusement park) -[2018-02-13T00:40:46.964] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:47.031] [INFO] cheese - inserting 1000 documents. first: Protestants in Tuvalu and last: Category:Baroque printmakers -[2018-02-13T00:40:47.048] [INFO] cheese - inserting 1000 documents. first: Category:Scottish people of Yoruba descent and last: Gracilibacillus ureilyticus -[2018-02-13T00:40:47.056] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Godfrey (lyricist) and last: Portal:Donald Trump/Wikimedia -[2018-02-13T00:40:47.074] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:40:47.099] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:40:47.112] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:40:47.171] [INFO] cheese - inserting 1000 documents. first: Wigratzbad and last: Cute Overload -[2018-02-13T00:40:47.229] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:40:47.294] [INFO] cheese - inserting 1000 documents. first: Dysgonia achatina and last: Theodore, Philippa and companions -[2018-02-13T00:40:47.333] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:40:47.345] [INFO] cheese - inserting 1000 documents. first: Leżajski and last: The Song of Ceylon -[2018-02-13T00:40:47.375] [INFO] cheese - inserting 1000 documents. first: Dosequis and last: Unified Braille Code -[2018-02-13T00:40:47.382] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:40:47.403] [INFO] cheese - inserting 1000 documents. first: Category:People from Sniatyn and last: Template:WikiProject Hollyoaks/class -[2018-02-13T00:40:47.469] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:40:47.480] [INFO] cheese - inserting 1000 documents. first: Aspergillus rambellii and last: Alexander Glebov (alpine skier) -[2018-02-13T00:40:47.533] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:40:47.558] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:40:47.585] [INFO] cheese - inserting 1000 documents. first: File:Robert Hermon-Hodge.jpg and last: United States Senate election in West Virginia, 1889 -[2018-02-13T00:40:47.693] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:40:47.817] [INFO] cheese - inserting 1000 documents. first: Let It Will Be (Madonna Song) and last: Toro Nagashi -[2018-02-13T00:40:47.901] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:40:47.931] [INFO] cheese - inserting 1000 documents. first: MiG-29: Deadly Adversary of Falcon 3.0 and last: Gymnopilus noviholocirrhus -[2018-02-13T00:40:48.028] [INFO] cheese - inserting 1000 documents. first: Ultraman Agul and last: Pennsylvania's 45th Senatorial District -[2018-02-13T00:40:48.044] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:40:48.173] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:40:48.333] [INFO] cheese - inserting 1000 documents. first: George Wild and last: Philippine Women's University – School of Fine Arts and Design -[2018-02-13T00:40:48.352] [INFO] cheese - inserting 1000 documents. first: Zip code 73841 and last: KM94 -[2018-02-13T00:40:48.398] [INFO] cheese - inserting 1000 documents. first: Pensole and last: Valea Bolvașnița -[2018-02-13T00:40:48.410] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:40:48.415] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:40:48.498] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:40:48.559] [INFO] cheese - inserting 1000 documents. first: The Notorious Byrd Brothers and last: Sir Winston Churchill Secondary School (Vancouver) -[2018-02-13T00:40:48.588] [INFO] cheese - inserting 1000 documents. first: Gymnopilus novoguineensis and last: Danse Macabre Records -[2018-02-13T00:40:48.623] [INFO] cheese - inserting 1000 documents. first: Category:Logic conferences and last: Big Ten Football MVP -[2018-02-13T00:40:48.639] [INFO] cheese - batch complete in: 1.17 secs -[2018-02-13T00:40:48.638] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:40:48.704] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:40:48.707] [INFO] cheese - inserting 1000 documents. first: Pennsylvania's 44th Senatorial District and last: Bresil -[2018-02-13T00:40:48.815] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:40:48.871] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2014-02-19/Featured content and last: Pennsylvania Avenue Historic District (East St. Louis, Illinois) -[2018-02-13T00:40:48.908] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:40:48.971] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2011 October 9 and last: Tiruvannamalai Sambuvarayar district -[2018-02-13T00:40:48.981] [INFO] cheese - inserting 1000 documents. first: Category:Pro-life organisations in the United Kingdom and last: Natasha Carter -[2018-02-13T00:40:48.981] [INFO] cheese - inserting 1000 documents. first: 22nd Madras Native Infantry and last: The Pig Got Up And Slowly Walked Away -[2018-02-13T00:40:49.017] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:40:49.037] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:49.074] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:40:49.172] [INFO] cheese - inserting 1000 documents. first: Shabaton and last: Category:FA-Class Theatre articles -[2018-02-13T00:40:49.188] [INFO] cheese - inserting 1000 documents. first: Here With Me and last: File:Windows Longhorn logo.svg -[2018-02-13T00:40:49.220] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:40:49.229] [INFO] cheese - inserting 1000 documents. first: Category:2013 in Supersport racing and last: Steele's Aspasia -[2018-02-13T00:40:49.234] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:49.286] [INFO] cheese - inserting 1000 documents. first: Indian Remote Sensing and last: Unixtime -[2018-02-13T00:40:49.294] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:40:49.352] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:40:49.361] [INFO] cheese - inserting 1000 documents. first: Rajnagar (community development block) and last: Văn Yên District, Yen Bai -[2018-02-13T00:40:49.365] [INFO] cheese - inserting 1000 documents. first: Texas Air International and last: Fox-Pitt Kelton Cochran Caronia Waller -[2018-02-13T00:40:49.429] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:40:49.462] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:40:49.490] [INFO] cheese - inserting 1000 documents. first: File:Indian Institute of Technology (Indian School of Mines), Dhanbad Logo.jpg.png and last: Category:Show caves in Hungary -[2018-02-13T00:40:49.599] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:40:49.779] [INFO] cheese - inserting 1000 documents. first: Sheridan's Valley Campaign and last: Punjabi Chandu Halwai Karachiwala -[2018-02-13T00:40:49.848] [INFO] cheese - inserting 1000 documents. first: SETRPC and last: Nigerian Money Offers -[2018-02-13T00:40:49.896] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:40:50.082] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:40:50.171] [INFO] cheese - inserting 1000 documents. first: Flavon and last: Gesundbrunnen (Berlin U-Bahn) -[2018-02-13T00:40:50.248] [INFO] cheese - inserting 1000 documents. first: SZD-C Żuraw and last: Finnegan, Alberta -[2018-02-13T00:40:50.298] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T00:40:50.360] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T00:40:50.408] [INFO] cheese - inserting 1000 documents. first: András Gáspár, general and last: Borj Qalaouiyeh -[2018-02-13T00:40:50.426] [INFO] cheese - inserting 1000 documents. first: Category:Agricultural marketing organizations and last: Wikipedia:Articles for deletion/OtherWise -[2018-02-13T00:40:50.429] [INFO] cheese - inserting 1000 documents. first: Annie Douglas and last: Template:User 3D Warehouse -[2018-02-13T00:40:50.490] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:40:50.526] [INFO] cheese - inserting 1000 documents. first: Yusefabad, Gowhar Kuh and last: Fath Ali Akhund-zade -[2018-02-13T00:40:50.542] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T00:40:50.545] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T00:40:50.580] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:50.843] [INFO] cheese - inserting 1000 documents. first: Template:Quebec Metropolitan Community and last: 1985 QL -[2018-02-13T00:40:50.922] [INFO] cheese - inserting 1000 documents. first: OK, It's Alright With Me and last: Michael Healy -[2018-02-13T00:40:50.936] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:40:50.993] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:40:51.034] [INFO] cheese - inserting 1000 documents. first: Voltastraße (Berlin U-Bahn) and last: Helena Vondrackova -[2018-02-13T00:40:51.057] [INFO] cheese - inserting 1000 documents. first: Fath Ali Akhundzade and last: Euxanthis patriciana -[2018-02-13T00:40:51.064] [INFO] cheese - inserting 1000 documents. first: Borj Qalaouiye and last: Tomas Rousek -[2018-02-13T00:40:51.093] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:40:51.104] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:40:51.109] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:40:51.221] [INFO] cheese - inserting 1000 documents. first: Kato Sotiritsa and last: Cuneacolotis -[2018-02-13T00:40:51.276] [INFO] cheese - inserting 1000 documents. first: Club Hel (The Matrix) and last: R57 road -[2018-02-13T00:40:51.288] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:40:51.310] [INFO] cheese - inserting 1000 documents. first: Scottish Museum and last: German submarine UC-38 -[2018-02-13T00:40:51.359] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:40:51.363] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:40:51.374] [INFO] cheese - inserting 1000 documents. first: Bonfire Madigan and last: Joseph Robbie -[2018-02-13T00:40:51.457] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:40:51.791] [INFO] cheese - inserting 1000 documents. first: Saliceto, Piedmont and last: Jyuudai Yuuki -[2018-02-13T00:40:51.837] [INFO] cheese - inserting 1000 documents. first: Gideona and last: Rhapsody of Zephyr -[2018-02-13T00:40:51.856] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:40:51.860] [INFO] cheese - inserting 1000 documents. first: Texas Township, Dent County, Missouri and last: File:Scouts Wadi el Nil (Copts and Egyptian Catholic Christians) 1930s.png -[2018-02-13T00:40:51.885] [INFO] cheese - inserting 1000 documents. first: Shlomi Ben Hemo and last: Cisthene barnesii -[2018-02-13T00:40:51.923] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:40:51.928] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:40:52.023] [INFO] cheese - inserting 1000 documents. first: German submarine UC38 and last: ZIP Air -[2018-02-13T00:40:52.037] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:40:52.123] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:40:52.248] [INFO] cheese - inserting 1000 documents. first: Bottoms Up (Bottom episode) and last: R356 road (South Africa) -[2018-02-13T00:40:52.263] [INFO] cheese - inserting 1000 documents. first: Kanawha Airport/Yeager AIrport and last: The Bollweevils (band) -[2018-02-13T00:40:52.321] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:40:52.359] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:40:52.514] [INFO] cheese - inserting 1000 documents. first: Alexander I Balas and last: Category:Batočina -[2018-02-13T00:40:52.570] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:40:52.595] [INFO] cheese - inserting 1000 documents. first: K05EQ and last: Rover SD1 Vitesse -[2018-02-13T00:40:52.659] [INFO] cheese - inserting 1000 documents. first: Downtown Yonge Business Improvement Area and last: Wikipedia:Portal peer review/Archive/September 2009 -[2018-02-13T00:40:52.659] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:40:52.708] [INFO] cheese - inserting 1000 documents. first: Category:Asian Canoeing Championships and last: Wikipedia:Articles for deletion/Alex Biega (2nd nomination) -[2018-02-13T00:40:52.723] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:40:52.731] [INFO] cheese - inserting 1000 documents. first: Category:American Juniors songs and last: Rachel weiscz -[2018-02-13T00:40:52.813] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:40:52.834] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:40:52.974] [INFO] cheese - inserting 1000 documents. first: Kijevo (Batočina) and last: Wikipedia:WikiProject Spam/LinkReports/worldwholesalejerseys.com -[2018-02-13T00:40:52.984] [INFO] cheese - inserting 1000 documents. first: Comparative benefits and last: Japanese Fifty-Fourth Army -[2018-02-13T00:40:53.014] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:40:53.025] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:40:53.078] [INFO] cheese - inserting 1000 documents. first: Illice liberomacula and last: Zombie Night -[2018-02-13T00:40:53.082] [INFO] cheese - inserting 1000 documents. first: Moss pubis and last: United States Highway 34 -[2018-02-13T00:40:53.122] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:40:53.141] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:40:53.230] [INFO] cheese - inserting 1000 documents. first: Mike Edwards (basketball) and last: Little March -[2018-02-13T00:40:53.291] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:40:53.344] [INFO] cheese - inserting 1000 documents. first: Rachel Weiscz and last: Dee (song) -[2018-02-13T00:40:53.397] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:40:53.420] [INFO] cheese - inserting 1000 documents. first: Thomas Randle and last: Antonio Calbo -[2018-02-13T00:40:53.470] [INFO] cheese - inserting 1000 documents. first: Working Men and last: Na Koa Ikaika Maui -[2018-02-13T00:40:53.473] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:40:53.520] [INFO] cheese - inserting 1000 documents. first: Hary and last: No Tears For The Creatures -[2018-02-13T00:40:53.541] [INFO] cheese - inserting 1000 documents. first: File:Vergil gameplay DMC3.jpg and last: Franciscan Hospitaller Sisters of the Immaculate Conception -[2018-02-13T00:40:53.559] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:40:53.568] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:40:53.610] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:40:53.666] [INFO] cheese - inserting 1000 documents. first: Krueck and Sexton Architects and last: Frankfurt zoological society -[2018-02-13T00:40:53.721] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:40:53.724] [INFO] cheese - inserting 1000 documents. first: United States Highway 33 and last: Jan Krasiński -[2018-02-13T00:40:53.788] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:40:53.859] [INFO] cheese - inserting 1000 documents. first: Module:Location map/data/Switzerland and last: File:CETB Microbiology and Fermentation Laboratory.jpg -[2018-02-13T00:40:53.912] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:40:53.940] [INFO] cheese - inserting 1000 documents. first: Nordenveld, Norg and last: Scudder Klyce -[2018-02-13T00:40:54.019] [INFO] cheese - inserting 1000 documents. first: CRACKED.com and last: Aufi tower -[2018-02-13T00:40:54.111] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:40:54.154] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:40:54.216] [INFO] cheese - inserting 1000 documents. first: File:BS219 Digital Super Hi Res.jpeg and last: Chainat Hornbill -[2018-02-13T00:40:54.282] [INFO] cheese - inserting 1000 documents. first: Wojewodztwo opolskie and last: Rossini (surname) -[2018-02-13T00:40:54.282] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:40:54.390] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:40:54.451] [INFO] cheese - inserting 1000 documents. first: Miracle (Ilse DeLange song) and last: Pseudotulostoma -[2018-02-13T00:40:54.522] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:40:54.549] [INFO] cheese - inserting 1000 documents. first: The Trust That Has Burst and last: Leslie P. Arnold -[2018-02-13T00:40:54.637] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:40:54.644] [INFO] cheese - inserting 1000 documents. first: Bodily Functions (album) and last: Newport, Ohio (Washington County) -[2018-02-13T00:40:54.701] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:40:54.750] [INFO] cheese - inserting 1000 documents. first: Tony Cottee and last: BitTorrent tracker -[2018-02-13T00:40:54.752] [INFO] cheese - inserting 1000 documents. first: Monte Carlo Hotel and Casino and last: S. C. A. R. S. (military) -[2018-02-13T00:40:54.767] [INFO] cheese - inserting 1000 documents. first: File:Mischief makers 04.jpg and last: Stadion Střelecký ostrov -[2018-02-13T00:40:54.796] [INFO] cheese - inserting 1000 documents. first: Battle of the Hawkesbury and last: Controlled studies -[2018-02-13T00:40:54.797] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:40:54.811] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:40:54.821] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T00:40:54.868] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:40:54.946] [INFO] cheese - inserting 1000 documents. first: Shermansdale, Pennsylvania and last: Eldon Township, Ontario -[2018-02-13T00:40:54.996] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:40:55.044] [INFO] cheese - inserting 1000 documents. first: El Coloso del Parque and last: David Dale (New York politician) -[2018-02-13T00:40:55.093] [INFO] cheese - inserting 1000 documents. first: Charles Newell Fowler and last: Dixie Melody Boys -[2018-02-13T00:40:55.099] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:40:55.126] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:40:55.167] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Vellore and last: Indira Freitas Johnson -[2018-02-13T00:40:55.174] [INFO] cheese - inserting 1000 documents. first: Template:Tfm2 and last: Prawdzic Coat of Arms -[2018-02-13T00:40:55.209] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:40:55.234] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:40:55.274] [INFO] cheese - inserting 1000 documents. first: Renshaw and last: Christopher Ward (disambiguation) -[2018-02-13T00:40:55.326] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:40:55.345] [INFO] cheese - inserting 1000 documents. first: Category:Education in Burke County, Georgia and last: 2D PAGE -[2018-02-13T00:40:55.401] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:40:55.410] [INFO] cheese - inserting 1000 documents. first: File:Tspace spiral2 final.png and last: Template:Canadian federal election, 1993/qc-me -[2018-02-13T00:40:55.471] [INFO] cheese - inserting 1000 documents. first: 2020 Ryder Cup and last: Corymbia clarksoniana -[2018-02-13T00:40:55.498] [INFO] cheese - inserting 1000 documents. first: Gorova River (Tur) and last: .shop -[2018-02-13T00:40:55.505] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:40:55.538] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:40:55.632] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:40:55.703] [INFO] cheese - inserting 1000 documents. first: Home for Christmas (song) and last: Wellman (surname) -[2018-02-13T00:40:55.731] [INFO] cheese - inserting 1000 documents. first: American University of the Caribbean N.V. and last: Gymnastics Australia -[2018-02-13T00:40:55.770] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:40:55.787] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:40:55.891] [INFO] cheese - inserting 1000 documents. first: Category:Buddhist temples in Inner Mongolia and last: Template:Giant-star-stub -[2018-02-13T00:40:55.934] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:40:55.946] [INFO] cheese - inserting 1000 documents. first: Cornel Coman and last: Sophronitis perrinii -[2018-02-13T00:40:56.011] [INFO] cheese - inserting 1000 documents. first: Dorothy M. Emmet and last: Francis Milman -[2018-02-13T00:40:56.035] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:40:56.099] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:40:56.164] [INFO] cheese - inserting 1000 documents. first: History of Rock and last: Leffincourt -[2018-02-13T00:40:56.214] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:40:56.256] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz W460 and last: Bad faith (existentialism) -[2018-02-13T00:40:56.265] [INFO] cheese - inserting 1000 documents. first: Category:Laos–Thailand border crossings and last: Category:Bishops of Nassau -[2018-02-13T00:40:56.313] [INFO] cheese - inserting 1000 documents. first: Jacob, FL and last: Aliabad, Sangan -[2018-02-13T00:40:56.318] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:40:56.358] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:40:56.372] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:40:56.585] [INFO] cheese - inserting 1000 documents. first: South Texas Botanical Gardens & Nature Center and last: Turkified -[2018-02-13T00:40:56.690] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:40:56.749] [INFO] cheese - inserting 1000 documents. first: K. P. Kurup and last: Dennis RoadyVlogs -[2018-02-13T00:40:56.753] [INFO] cheese - inserting 1000 documents. first: Piso's conspiracy and last: Category:Former bishoprics in Ireland -[2018-02-13T00:40:56.800] [INFO] cheese - inserting 1000 documents. first: Willa Cather Foundation and last: Wikipedia:Did you know/Halloween 2009 -[2018-02-13T00:40:56.829] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:40:56.843] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:40:56.861] [INFO] cheese - inserting 1000 documents. first: Barney Miller (season 6) and last: Category:RFC Liège -[2018-02-13T00:40:56.864] [INFO] cheese - inserting 1000 documents. first: Lépron-les-Vallées and last: Sinsat -[2018-02-13T00:40:56.864] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:40:56.936] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:40:56.945] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:40:57.078] [INFO] cheese - inserting 1000 documents. first: Forty-seven ronin and last: Puerco pibil -[2018-02-13T00:40:57.088] [INFO] cheese - inserting 1000 documents. first: Agah Pasha and last: History of Bernie, Missouri -[2018-02-13T00:40:57.110] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:40:57.143] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:40:57.198] [INFO] cheese - inserting 1000 documents. first: D6 Star Wars and last: Prom Night IV: Deliver Us from Evil -[2018-02-13T00:40:57.276] [INFO] cheese - inserting 1000 documents. first: Category:RFC Liège managers and last: Hirgan (disambiguation) -[2018-02-13T00:40:57.287] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:40:57.305] [INFO] cheese - inserting 1000 documents. first: Category:Looney Tunes home video releases and last: Template:Did you know nominations/Catherine Sandoval -[2018-02-13T00:40:57.305] [INFO] cheese - inserting 1000 documents. first: History of Berry Hill, Tennessee and last: History of Clyde, Texas -[2018-02-13T00:40:57.306] [INFO] cheese - inserting 1000 documents. first: Madhouse: A Tragic Tale of Megalomania and Modern Medicine and last: Wikipedia:Version 1.0 Editorial Team/Rugby league (State of Origin) articles by quality/2 -[2018-02-13T00:40:57.331] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:40:57.356] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:40:57.368] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:40:57.404] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:40:57.546] [INFO] cheese - inserting 1000 documents. first: Sor, Ariège and last: Jacqui Frazier-Lyde -[2018-02-13T00:40:57.605] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:40:57.653] [INFO] cheese - inserting 1000 documents. first: History of Clyde Hill, Washington and last: Manny Villar -[2018-02-13T00:40:57.684] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:40:57.753] [INFO] cheese - inserting 1000 documents. first: Tapesovo and last: Category:Pakistani qawwali singers -[2018-02-13T00:40:57.772] [INFO] cheese - inserting 1000 documents. first: Love is Stronger Than Pride and last: Wikipedia:Sockpuppet investigations/DocOfSoc/Archive -[2018-02-13T00:40:57.793] [INFO] cheese - inserting 1000 documents. first: Template:List of civil parishes in England and last: Alaska Department of Commerce -[2018-02-13T00:40:57.801] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:40:57.805] [INFO] cheese - inserting 1000 documents. first: Windesheim University of Applied Sciences and last: James Collip -[2018-02-13T00:40:57.811] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:40:57.832] [INFO] cheese - inserting 1000 documents. first: Asset-based financing and last: History of Fürth -[2018-02-13T00:40:57.845] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:40:57.851] [INFO] cheese - inserting 1000 documents. first: Home health (disambiguation) and last: Knottin -[2018-02-13T00:40:57.863] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:40:57.882] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:40:57.903] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:40:57.984] [INFO] cheese - inserting 1000 documents. first: Corbières, Aude and last: St. Matthew's, Haslington -[2018-02-13T00:40:58.038] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:40:58.048] [INFO] cheese - inserting 1000 documents. first: History of Füzuli and last: Category:1694 establishments in the Holy Roman Empire -[2018-02-13T00:40:58.067] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:40:58.248] [INFO] cheese - inserting 1000 documents. first: H. A. Clark Memorial Field and last: Category:Schools in Oconee County, Georgia -[2018-02-13T00:40:58.256] [INFO] cheese - inserting 1000 documents. first: Western Tedi language and last: SaveThePsychoExWife.com -[2018-02-13T00:40:58.258] [INFO] cheese - inserting 1000 documents. first: History of Indian Hill, Ohio and last: History of Lockhart, Texas -[2018-02-13T00:40:58.273] [INFO] cheese - inserting 1000 documents. first: National Indian Youth Council and last: Pseudotropheus greshakei -[2018-02-13T00:40:58.274] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:40:58.299] [INFO] cheese - inserting 1000 documents. first: Peter Underwood (parapsychologist) and last: Wikipedia:PRESCOTTRUSSELL -[2018-02-13T00:40:58.300] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:40:58.300] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:40:58.330] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:40:58.378] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:40:58.532] [INFO] cheese - inserting 1000 documents. first: History of Lockwood, Missouri and last: History of Nashville, Kansas -[2018-02-13T00:40:58.537] [INFO] cheese - inserting 1000 documents. first: Portal:Anarchism/Anniversaries/January/January 13 and last: Template:Disney Characters -[2018-02-13T00:40:58.558] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:40:58.581] [INFO] cheese - inserting 1000 documents. first: Marco Follini and last: Promoter of the faith -[2018-02-13T00:40:58.596] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:40:58.729] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:40:58.851] [INFO] cheese - inserting 1000 documents. first: Kalvebod Brygge and last: Haydarpaşa-Gebze Commuter Line -[2018-02-13T00:40:58.920] [INFO] cheese - inserting 1000 documents. first: Antônio Campos and last: Template:2014 Thai Premier League table -[2018-02-13T00:40:58.940] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:40:58.972] [INFO] cheese - inserting 1000 documents. first: History of Nashville, North Carolina and last: History of Prescott, Kansas -[2018-02-13T00:40:59.000] [INFO] cheese - inserting 1000 documents. first: Joe Tarto and last: File:Harryosb.PNG -[2018-02-13T00:40:59.022] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:40:59.022] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:40:59.067] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:40:59.085] [INFO] cheese - inserting 1000 documents. first: Bennington Township, Morrow County, Ohio and last: Botanical Medicine -[2018-02-13T00:40:59.176] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:40:59.213] [INFO] cheese - inserting 1000 documents. first: Kutzenhausen, Bas-Rhin and last: Wikipedia:WikiProject Spam/LinkReports/takestan20.blogfa.comتاتهای -[2018-02-13T00:40:59.293] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:40:59.317] [INFO] cheese - inserting 1000 documents. first: History of Prescott, Oregon and last: History of Sisters, Oregon -[2018-02-13T00:40:59.327] [INFO] cheese - inserting 1000 documents. first: Pea protein and last: Merry Widow Waltz -[2018-02-13T00:40:59.361] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:40:59.371] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:40:59.437] [INFO] cheese - inserting 1000 documents. first: EU2 and last: Minamiawaji -[2018-02-13T00:40:59.489] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:40:59.497] [INFO] cheese - inserting 1000 documents. first: Edward Peck Curtis and last: Wikipedia:Valued picture candidates/7 lions -[2018-02-13T00:40:59.537] [INFO] cheese - inserting 1000 documents. first: History of Sistersville, West Virginia and last: History of Villa María -[2018-02-13T00:40:59.551] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:40:59.556] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:40:59.567] [INFO] cheese - inserting 1000 documents. first: Astro (Satellite TV) and last: File:Vampire Lestat Original.jpg -[2018-02-13T00:40:59.586] [INFO] cheese - inserting 1000 documents. first: File:Bliss n Eso - On Tour.jpg and last: File:Skolomowski film Le depart 1967 poster.jpg -[2018-02-13T00:40:59.606] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:40:59.653] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:40:59.714] [INFO] cheese - inserting 1000 documents. first: Little Bay East and last: The Complete Stories (O'Connor) -[2018-02-13T00:40:59.753] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:40:59.756] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2011 October 18 and last: Wikipedia:Wikipedia Signpost/Archives/2011-10-24 -[2018-02-13T00:40:59.809] [INFO] cheese - inserting 1000 documents. first: History of Villa Park, California and last: Club Deportivo San José -[2018-02-13T00:40:59.809] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:40:59.839] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:40:59.905] [INFO] cheese - inserting 1000 documents. first: Consumer Watchdog (USA) and last: File:Tales from the Crypt 24.jpg -[2018-02-13T00:40:59.918] [INFO] cheese - inserting 1000 documents. first: Deme (Biology) and last: GAM -[2018-02-13T00:40:59.942] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:40:59.961] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:41:00.070] [INFO] cheese - inserting 1000 documents. first: Raffaele Esposito and last: Windmill Lane Studios -[2018-02-13T00:41:00.109] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1984 Summer Olympics – Men's hammer throw and last: File:Insideininsideout.jpg -[2018-02-13T00:41:00.132] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:00.160] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:41:00.216] [INFO] cheese - inserting 1000 documents. first: Elisabeth Jacobsen and last: Team Rocket trio -[2018-02-13T00:41:00.250] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:41:00.307] [INFO] cheese - inserting 1000 documents. first: Abhipur and last: Eric Ellenbogen -[2018-02-13T00:41:00.313] [INFO] cheese - inserting 1000 documents. first: South Persian Rifles and last: Aceval, Miguel -[2018-02-13T00:41:00.324] [INFO] cheese - inserting 1000 documents. first: Warehouse district, Hamburg and last: Category:Monitors of the United States Navy -[2018-02-13T00:41:00.352] [INFO] cheese - inserting 1000 documents. first: Autumn In New York and last: Kuria people -[2018-02-13T00:41:00.358] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:41:00.368] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:41:00.454] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:41:00.527] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:41:00.804] [INFO] cheese - inserting 1000 documents. first: Fifth Panzer Army (Germany) and last: Gazan -[2018-02-13T00:41:00.875] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:41:00.878] [INFO] cheese - inserting 1000 documents. first: YRT Viva Pink and last: File:Channel digital image magenta.jpg -[2018-02-13T00:41:00.888] [INFO] cheese - inserting 1000 documents. first: John Marie Durst and last: Intermodal containers -[2018-02-13T00:41:00.894] [INFO] cheese - inserting 1000 documents. first: Lycée Camille Sée (Colmar) and last: History of Battens Crossroads, Alabama -[2018-02-13T00:41:00.921] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:41:00.931] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:41:00.933] [INFO] cheese - inserting 1000 documents. first: Acevedo, Abraham and last: Perry Hannah House -[2018-02-13T00:41:00.945] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:41:00.997] [INFO] cheese - inserting 1000 documents. first: The Lord Of The Rings: The Fellowship Of The Ring and last: Catherine Cavadini -[2018-02-13T00:41:01.008] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:01.054] [INFO] cheese - inserting 1000 documents. first: List of animal welfare and animal rights groups and last: Hair Restoration -[2018-02-13T00:41:01.057] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:41:01.109] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:41:01.134] [INFO] cheese - inserting 1000 documents. first: History of Battles Wharf, Alabama and last: History of Veto, Alabama -[2018-02-13T00:41:01.161] [INFO] cheese - batch complete in: 0.216 secs -[2018-02-13T00:41:01.220] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance British Antarctic Territory articles and last: Portal:Cricket/Anniversaries/February/February 20 -[2018-02-13T00:41:01.259] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:41:01.325] [INFO] cheese - inserting 1000 documents. first: Template:UEFA Euro 2016 qualifying Group F table and last: Canadian federal election 1917 -[2018-02-13T00:41:01.362] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:41:01.408] [INFO] cheese - inserting 1000 documents. first: Ciba-Geigy Drew Award for Biomedical Research and last: Andrew Krier -[2018-02-13T00:41:01.445] [INFO] cheese - inserting 1000 documents. first: Conductive atomic force microscopy and last: Cineworld Dublin -[2018-02-13T00:41:01.452] [INFO] cheese - inserting 1000 documents. first: Mme. de Montespan and last: English travellers -[2018-02-13T00:41:01.458] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:41:01.484] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:41:01.498] [INFO] cheese - inserting 1000 documents. first: Seth M R Jaipuria School, Lucknow and last: Ouvrage L'Agaisen -[2018-02-13T00:41:01.500] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:41:01.513] [INFO] cheese - inserting 1000 documents. first: History of Victoria, Alabama and last: Michel Batista -[2018-02-13T00:41:01.530] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:41:01.544] [INFO] cheese - inserting 1000 documents. first: Category:Free Jabber clients and last: Troy Lee Gentry -[2018-02-13T00:41:01.560] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:41:01.622] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:41:01.751] [INFO] cheese - inserting 1000 documents. first: Valery Brezdenyuk and last: Aryan Football Club -[2018-02-13T00:41:01.805] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:41:01.822] [INFO] cheese - inserting 1000 documents. first: Community Bank and last: Wikipedia:WikiProject Spam/LinkReports/canvasopedia.org -[2018-02-13T00:41:01.863] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:41:01.885] [INFO] cheese - inserting 1000 documents. first: Template:2007 New Zealand Schools squad and last: Hrabischitz -[2018-02-13T00:41:01.903] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/brightstorm.com and last: Category:Portland Trail Blazers owners -[2018-02-13T00:41:01.924] [INFO] cheese - inserting 1000 documents. first: President of Saint Christopher and last: National Redoubt -[2018-02-13T00:41:01.939] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:41:01.962] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:41:02.032] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:41:02.048] [INFO] cheese - inserting 1000 documents. first: Bougainvilla and last: Category:Battles of the Northwest Indian War -[2018-02-13T00:41:02.149] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:41:02.195] [INFO] cheese - inserting 1000 documents. first: 2006.02 and last: Category:Wikipedia sockpuppets of Cretanpride -[2018-02-13T00:41:02.315] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/canvasopedia.org and last: Muravlenko Urban Okrug -[2018-02-13T00:41:02.314] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:41:02.373] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:41:02.415] [INFO] cheese - inserting 1000 documents. first: Confessions of a Torpe and last: Cerro Muyu Orqo -[2018-02-13T00:41:02.495] [INFO] cheese - inserting 1000 documents. first: Alexandra Palace railway station (1873-1954) and last: File:Zero kara Hajimeru Mahō no Sho, volume 1.jpg -[2018-02-13T00:41:02.557] [INFO] cheese - inserting 1000 documents. first: Covurlui, Leova and last: 1946 William & Mary Tribe football team -[2018-02-13T00:41:02.563] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:41:02.568] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:02.665] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:41:02.701] [INFO] cheese - inserting 1000 documents. first: Arthur Moreira Lima (pianist) and last: Kapunda Football Club -[2018-02-13T00:41:02.816] [INFO] cheese - inserting 1000 documents. first: Novy Urengoy Urban Okrug and last: Category:French bomber aircraft 1920-1929 -[2018-02-13T00:41:02.833] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:41:02.906] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:02.943] [INFO] cheese - inserting 1000 documents. first: Lomas de Santa Anita, Baja California and last: History of Port Republic, New Jersey -[2018-02-13T00:41:02.992] [INFO] cheese - inserting 1000 documents. first: File:Srisailam dam India.jpg and last: Å, Lavangen -[2018-02-13T00:41:03.013] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:41:03.055] [INFO] cheese - inserting 1000 documents. first: Origins of the papal tiara and last: History of Mozilla Thunderbird -[2018-02-13T00:41:03.056] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:41:03.161] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T00:41:03.237] [INFO] cheese - inserting 1000 documents. first: 1947 William & Mary Tribe football team and last: Cargilfield Trinity School -[2018-02-13T00:41:03.254] [INFO] cheese - inserting 1000 documents. first: Template:China-newspaper-stub and last: Revenue stamps of Singapore -[2018-02-13T00:41:03.287] [INFO] cheese - inserting 1000 documents. first: Snowy-breasted Hummingbird and last: Middle East & Africa Region -[2018-02-13T00:41:03.298] [INFO] cheese - inserting 1000 documents. first: History of Port Washington, Wisconsin and last: Serampore Town railway station -[2018-02-13T00:41:03.309] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:41:03.329] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:41:03.359] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:41:03.367] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:41:03.372] [INFO] cheese - inserting 1000 documents. first: Piquancy and last: File:Alice nine - Zekkeishoku.jpg -[2018-02-13T00:41:03.441] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:41:03.630] [INFO] cheese - inserting 1000 documents. first: Å, Tranøy and last: Cres (island) -[2018-02-13T00:41:03.693] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:41:03.772] [INFO] cheese - inserting 1000 documents. first: Victor-Amédée III and last: Malign tissue -[2018-02-13T00:41:03.801] [INFO] cheese - inserting 1000 documents. first: Category:Sports museums in Japan and last: Template:Fb team Sokol-PZhD Saratov -[2018-02-13T00:41:03.837] [INFO] cheese - inserting 1000 documents. first: Category:Italian military aircraft 1930-1939 and last: Peter Kirk (Director) -[2018-02-13T00:41:03.844] [INFO] cheese - inserting 1000 documents. first: Swindlehurst and last: Category:Ireland–Soviet Union relations -[2018-02-13T00:41:03.845] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:41:03.847] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:41:03.894] [INFO] cheese - inserting 1000 documents. first: File:Jiyoshaansee.jpg and last: Kumkum Bhagya -[2018-02-13T00:41:03.895] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:41:03.918] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:41:03.978] [INFO] cheese - inserting 1000 documents. first: Beaulieu, Cantal and last: Nylink -[2018-02-13T00:41:03.981] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:04.031] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:41:04.127] [INFO] cheese - inserting 1000 documents. first: William Orlando Smith and last: Virginia Route 71 -[2018-02-13T00:41:04.191] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:41:04.297] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Saturn-1991 St. Petersburg and last: Afaa M. Weaver -[2018-02-13T00:41:04.307] [INFO] cheese - inserting 1000 documents. first: Saurabh Gadgil and last: Fran Moore -[2018-02-13T00:41:04.330] [INFO] cheese - inserting 1000 documents. first: Berom language and last: Charles Allen Du Val -[2018-02-13T00:41:04.341] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:41:04.345] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:41:04.403] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:41:04.410] [INFO] cheese - inserting 1000 documents. first: Athletic Insight: The Online Journal of Sport Psychology and last: Rive gauche -[2018-02-13T00:41:04.415] [INFO] cheese - inserting 1000 documents. first: 2014 TCU Horned Frogs baseball team and last: Enterovirus D -[2018-02-13T00:41:04.453] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:41:04.472] [INFO] cheese - inserting 1000 documents. first: Elu Thingol and last: Uzboi Vallis -[2018-02-13T00:41:04.480] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:41:04.555] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:41:04.692] [INFO] cheese - inserting 1000 documents. first: VA 71 and last: Krinkov -[2018-02-13T00:41:04.700] [INFO] cheese - inserting 1000 documents. first: Template:CompetitionRecordThird-Fourth and last: Buruscho -[2018-02-13T00:41:04.719] [INFO] cheese - inserting 1000 documents. first: Percy Evans Freke and last: Category:Swedish aircraft 1980-1989 -[2018-02-13T00:41:04.760] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:41:04.791] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:41:04.823] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:41:04.998] [INFO] cheese - inserting 1000 documents. first: Boychoir (film) and last: Template:NYCS Platform Layout CCS -[2018-02-13T00:41:05.002] [INFO] cheese - inserting 1000 documents. first: Prime Outlets - International and last: Category:NA-Class Indian music articles -[2018-02-13T00:41:05.064] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:41:05.065] [INFO] cheese - inserting 1000 documents. first: Ohr HaChayim and last: Template:Years in Video Gaming -[2018-02-13T00:41:05.078] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:41:05.134] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:41:05.169] [INFO] cheese - inserting 1000 documents. first: Quasi open map and last: Vragočanica -[2018-02-13T00:41:05.225] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:41:05.288] [INFO] cheese - inserting 1000 documents. first: Return to the Apocalyptic City and last: Portal:Trains/Featured article/Week 29, 2005 -[2018-02-13T00:41:05.302] [INFO] cheese - inserting 1000 documents. first: Category:Neighbourhoods in Japan and last: Template:COTWCurrentPicks -[2018-02-13T00:41:05.339] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:41:05.345] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:41:05.440] [INFO] cheese - inserting 1000 documents. first: Draft:Bryan Pearson and last: Ubian Banadan language -[2018-02-13T00:41:05.449] [INFO] cheese - inserting 1000 documents. first: Saltdal Commune, Rognan and last: Conservative Bible Project -[2018-02-13T00:41:05.480] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:05.536] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:41:05.546] [INFO] cheese - inserting 1000 documents. first: Beraud Stuart of Aubigny and last: Norbert Likulia Bolongo -[2018-02-13T00:41:05.579] [INFO] cheese - inserting 1000 documents. first: Campground Historic District and last: Portal:Uttar Pradesh/Anniversaries/February/February 6 -[2018-02-13T00:41:05.616] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:41:05.646] [INFO] cheese - inserting 1000 documents. first: Chairman of the Revolutionary Command Council of Libya and last: Category:1562 treaties -[2018-02-13T00:41:05.661] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:41:05.729] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:41:05.756] [INFO] cheese - inserting 1000 documents. first: File:Sumo4-vi.jpg and last: Gheorghe Tzitzeica -[2018-02-13T00:41:05.804] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:41:05.875] [INFO] cheese - inserting 1000 documents. first: Cythera (disambiguation) and last: Ackroyd, Christa -[2018-02-13T00:41:05.910] [INFO] cheese - inserting 1000 documents. first: Mainz-Finthen Airport and last: Targeted Israeli air strike -[2018-02-13T00:41:05.917] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:05.973] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:06.043] [INFO] cheese - inserting 1000 documents. first: Rehman Khalid and last: Annie (1982 movie) -[2018-02-13T00:41:06.135] [INFO] cheese - inserting 1000 documents. first: Portal:Trains/Featured article/Week 30, 2005 and last: Shinjiro Otani -[2018-02-13T00:41:06.141] [INFO] cheese - inserting 1000 documents. first: Verizon Wireless Amphitheatre Kansas City and last: Outwrests -[2018-02-13T00:41:06.150] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:41:06.197] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:06.215] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T00:41:06.268] [INFO] cheese - inserting 1000 documents. first: Itsuka Kitto... and last: Dismorphia lycosura -[2018-02-13T00:41:06.376] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:41:06.390] [INFO] cheese - inserting 1000 documents. first: File:Macbeth2006poster.jpg and last: Full Negative (or) Breaks -[2018-02-13T00:41:06.463] [INFO] cheese - inserting 1000 documents. first: Ackroyd, David and last: Pseudosphex consobrina -[2018-02-13T00:41:06.519] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:41:06.660] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:41:06.674] [INFO] cheese - inserting 1000 documents. first: Category:Law firms established in 1937 and last: Dunamis Lui -[2018-02-13T00:41:06.727] [INFO] cheese - inserting 1000 documents. first: File:Clannadthebest.jpg and last: History of the African Union -[2018-02-13T00:41:06.748] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:41:06.789] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:41:06.918] [INFO] cheese - inserting 1000 documents. first: Walk of Life (album) and last: Donum -[2018-02-13T00:41:06.921] [INFO] cheese - inserting 1000 documents. first: Gabe Marzano and last: Hong Kong-Thailand relations -[2018-02-13T00:41:06.996] [INFO] cheese - inserting 1000 documents. first: HMS Active (1758) and last: Wikipedia:WikiProject Spam/LinkReports/craies.crihan.fr -[2018-02-13T00:41:07.009] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:41:07.037] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:41:07.103] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:41:07.133] [INFO] cheese - inserting 1000 documents. first: Moritomo Saegusa and last: Poddębice County -[2018-02-13T00:41:07.183] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Dominica articles and last: Jean-Louis Prianon -[2018-02-13T00:41:07.186] [INFO] cheese - inserting 1000 documents. first: Template:Filmfare Award for Best Film and last: 1873 World Exhibition -[2018-02-13T00:41:07.200] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:41:07.224] [INFO] cheese - inserting 1000 documents. first: Built for the Kill and last: Singapore Open (men's tennis) -[2018-02-13T00:41:07.226] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:07.269] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:41:07.308] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:07.480] [INFO] cheese - inserting 1000 documents. first: Kamuku languages and last: Gary Owen (comedian) -[2018-02-13T00:41:07.531] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:41:07.850] [INFO] cheese - inserting 1000 documents. first: Advanced Level (United Kingdom) and last: Nazareth Motor Speedway -[2018-02-13T00:41:07.913] [INFO] cheese - inserting 1000 documents. first: ELJ Center and last: Twilight (2008 movie) -[2018-02-13T00:41:07.917] [INFO] cheese - inserting 1000 documents. first: Category:Unknown-importance Jamaica articles and last: Kashabowie -[2018-02-13T00:41:07.935] [INFO] cheese - inserting 1000 documents. first: Imaginary (sociology) and last: Wikipedia:Articles for deletion/Quartermilegame -[2018-02-13T00:41:07.955] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:07.966] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:41:07.980] [INFO] cheese - inserting 1000 documents. first: Powiat of Poddębice and last: Cargo Cult Science -[2018-02-13T00:41:08.006] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian canoeists and last: Wikipedia:WikiProject Spam/LinkReports/volgaboat.ru -[2018-02-13T00:41:08.036] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:41:08.116] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:41:08.180] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:41:08.224] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T00:41:08.358] [INFO] cheese - inserting 1000 documents. first: Astrée(Typeface) and last: Cocoon (Meg & Dia Album) -[2018-02-13T00:41:08.420] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:41:08.540] [INFO] cheese - inserting 1000 documents. first: Buzduganii de Jos and last: Jamie Smith (footballer, born 1981) -[2018-02-13T00:41:08.547] [INFO] cheese - inserting 1000 documents. first: Category:Telecommunications companies established in 1953 and last: Category:Defunct organisations based in Barbados -[2018-02-13T00:41:08.554] [INFO] cheese - inserting 1000 documents. first: ⁐ and last: Enrichment (record producer) -[2018-02-13T00:41:08.580] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:41:08.616] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:41:08.628] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:41:08.653] [INFO] cheese - inserting 1000 documents. first: Freeman V. Horner and last: HMNZS Santon -[2018-02-13T00:41:08.723] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:41:08.747] [INFO] cheese - inserting 1000 documents. first: Nova Canaa Paulista and last: Nangong -[2018-02-13T00:41:08.805] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:08.836] [INFO] cheese - inserting 1000 documents. first: Template:User Proud Indonesian and last: Elizabeth Jill Cowley -[2018-02-13T00:41:08.874] [INFO] cheese - inserting 1000 documents. first: File:Book-cover unintended consequences.jpg and last: Bareback (disambiguation) -[2018-02-13T00:41:08.908] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:08.949] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:41:09.076] [INFO] cheese - inserting 1000 documents. first: Template:Garden-book-stub and last: Pothavaram -[2018-02-13T00:41:09.081] [INFO] cheese - inserting 1000 documents. first: Category:Childhood in Pakistan and last: Eunidia spilotoides snizekiana -[2018-02-13T00:41:09.134] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:41:09.155] [INFO] cheese - inserting 1000 documents. first: Postal codes in Austria and last: Erythranthe breweri -[2018-02-13T00:41:09.150] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:41:09.199] [INFO] cheese - inserting 1000 documents. first: Wandering bishops and last: United States House of Representatives elections in California, 1876 -[2018-02-13T00:41:09.230] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:41:09.283] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:09.287] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 66 and last: Category:Wikipedian singers -[2018-02-13T00:41:09.295] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Cacopinae and last: Duan Siping -[2018-02-13T00:41:09.369] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:41:09.372] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:41:09.583] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia talk pages with the Wikia content template and last: Stanisław Stefański -[2018-02-13T00:41:09.655] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:41:09.666] [INFO] cheese - inserting 1000 documents. first: Eunidia spilotoides spilotoides and last: File:EvaBluRayBox.jpg -[2018-02-13T00:41:09.672] [INFO] cheese - inserting 1000 documents. first: Electoral Action of Poles in Lithuania and last: The St. Paul Travelers Companies, Inc. -[2018-02-13T00:41:09.724] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:41:09.779] [INFO] cheese - inserting 1000 documents. first: Sasa Branezac and last: Morris Engines -[2018-02-13T00:41:09.801] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:41:09.850] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:41:09.913] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Kaišiadorys and last: Angliers -[2018-02-13T00:41:09.923] [INFO] cheese - inserting 1000 documents. first: Cleveland Symphony and last: NZGSM 2002 (Afghanistan) -[2018-02-13T00:41:09.929] [INFO] cheese - inserting 1000 documents. first: University of Applied Sciences Wiener Neustadt and last: Crivitz (crater on Mars) -[2018-02-13T00:41:09.993] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:41:09.998] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:41:10.039] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:41:10.210] [INFO] cheese - inserting 1000 documents. first: University of Applied Sciences Worms and last: Adamo, Mark -[2018-02-13T00:41:10.321] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:10.331] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bruma Lake Flea Market, Gauteng and last: Nikolay Vasilyevich Fyodorov -[2018-02-13T00:41:10.357] [INFO] cheese - inserting 1000 documents. first: The St. Paul Companies Incorporated and last: LFF -[2018-02-13T00:41:10.396] [INFO] cheese - inserting 1000 documents. first: Overmatching and last: Utah State Route 113 (1931) -[2018-02-13T00:41:10.404] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:41:10.437] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:10.474] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:41:10.544] [INFO] cheese - inserting 1000 documents. first: File:Iris Murdoch.jpg and last: Virtual machine escape -[2018-02-13T00:41:10.602] [INFO] cheese - inserting 1000 documents. first: Cut-leaf banksia and last: Tower Plaza (Ann Arbor, Michigan) -[2018-02-13T00:41:10.649] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:10.667] [INFO] cheese - inserting 1000 documents. first: Angoulins and last: Armadillo (magazine) -[2018-02-13T00:41:10.683] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:41:10.756] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:41:10.879] [INFO] cheese - inserting 1000 documents. first: Nestorone and last: Category:1956 software -[2018-02-13T00:41:10.922] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:11.033] [INFO] cheese - inserting 1000 documents. first: Freedom to Operate Search and last: Wikipedia:WikiProject Spam/LinkReports/britesources.com -[2018-02-13T00:41:11.049] [INFO] cheese - inserting 1000 documents. first: Benedictine Abbey of St. Matthew and last: Syrian Arab Socialist Ba'ath Party -[2018-02-13T00:41:11.050] [INFO] cheese - inserting 1000 documents. first: Adamo, Nicola and last: Karate at the 2010 Asian Games – Women's kumite 61 kg -[2018-02-13T00:41:11.118] [INFO] cheese - inserting 1000 documents. first: Coriandrum sativum and last: Colby, Clark County, WI -[2018-02-13T00:41:11.107] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:41:11.162] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:41:11.166] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:41:11.276] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T00:41:11.292] [INFO] cheese - inserting 1000 documents. first: Mouzon, Charente and last: OneMine -[2018-02-13T00:41:11.342] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:11.352] [INFO] cheese - inserting 1000 documents. first: L’Oréal-UNESCO Awards for Women in Science and last: Benteng Stadium -[2018-02-13T00:41:11.403] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:41:11.518] [INFO] cheese - inserting 1000 documents. first: Syrian Arab Socialist Baath Party and last: Banei Kinen -[2018-02-13T00:41:11.525] [INFO] cheese - inserting 1000 documents. first: Medtech and last: 2013 IIHF World Women's U18 Championship – Division I -[2018-02-13T00:41:11.562] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:41:11.565] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:41:11.568] [INFO] cheese - inserting 1000 documents. first: Rural Municipality of Cambria No. 6 and last: Ohio House of Representatives membership, 128th General Assembly -[2018-02-13T00:41:11.602] [INFO] cheese - inserting 1000 documents. first: Category:Technology companies established in 1924 and last: Category:Dutch alternate history novels -[2018-02-13T00:41:11.624] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:41:11.650] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:41:11.783] [INFO] cheese - inserting 1000 documents. first: Natchitoches Airport and last: Đà Bắc District -[2018-02-13T00:41:11.834] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:11.859] [INFO] cheese - inserting 1000 documents. first: Colby, WI and last: Presidents of the Government of Spain -[2018-02-13T00:41:11.863] [INFO] cheese - inserting 1000 documents. first: Erric Pegram and last: Alexandre Lebziak -[2018-02-13T00:41:11.919] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:41:11.924] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:41:11.962] [INFO] cheese - inserting 1000 documents. first: Toongabbie, New South Wales and last: Template:Did you know nominations/Unity for Socialism -[2018-02-13T00:41:11.980] [INFO] cheese - inserting 1000 documents. first: With All of My Heart and last: Ukrainian First League 2005–06 -[2018-02-13T00:41:11.999] [INFO] cheese - inserting 1000 documents. first: Thomas Charveriat and last: Dungeon Ghyll Force -[2018-02-13T00:41:12.029] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:12.032] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:41:12.077] [INFO] cheese - inserting 1000 documents. first: Category:Economic history of El Salvador and last: Constructus Corporation -[2018-02-13T00:41:12.089] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:41:12.136] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:12.424] [INFO] cheese - inserting 1000 documents. first: Category:Romanian emigrants to Norway and last: File:Legion of the Damned (film).jpg -[2018-02-13T00:41:12.456] [INFO] cheese - inserting 1000 documents. first: Goodbye, Mr. Despair and last: Gloria (disambiguation) -[2018-02-13T00:41:12.477] [INFO] cheese - inserting 1000 documents. first: Viterbo Cathedral and last: Charleston, Oregon -[2018-02-13T00:41:12.483] [INFO] cheese - inserting 1000 documents. first: Douglas Munro (actor) and last: Coral belt -[2018-02-13T00:41:12.497] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/GW Patriot (2nd nomination) and last: Category:ANZAC -[2018-02-13T00:41:12.497] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:41:12.574] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:41:12.590] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:41:12.639] [INFO] cheese - inserting 1000 documents. first: Sterna forsteri and last: Culture of San Francisco, CA -[2018-02-13T00:41:12.573] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:12.668] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:12.676] [INFO] cheese - inserting 1000 documents. first: Puerto Viejo Talamanca and last: O'Neill, Martin -[2018-02-13T00:41:12.754] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:41:12.792] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:41:13.049] [INFO] cheese - inserting 1000 documents. first: Scottish Intercollegiate Guidelines Network and last: THE TEKE -[2018-02-13T00:41:13.094] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:41:13.124] [INFO] cheese - inserting 1000 documents. first: Brean and last: Jim Wright Field -[2018-02-13T00:41:13.184] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:41:13.193] [INFO] cheese - inserting 1000 documents. first: Oliver, Martin and last: Yangtze Jiang -[2018-02-13T00:41:13.220] [INFO] cheese - inserting 1000 documents. first: La legione dei dannati and last: Demographic of Ferizaj -[2018-02-13T00:41:13.249] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:13.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/October 11, 2009 and last: ATCvet code QG02 -[2018-02-13T00:41:13.292] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:41:13.330] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:41:13.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bi-permissive and last: Election Results, OH Governor (Democratic Primaries) -[2018-02-13T00:41:13.403] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:41:13.454] [INFO] cheese - inserting 1000 documents. first: Saryuparin Brahmins and last: The Collected Works of C.G. Jung -[2018-02-13T00:41:13.490] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:41:13.513] [INFO] cheese - inserting 1000 documents. first: Madame Pace and last: Michael Niall -[2018-02-13T00:41:13.588] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:41:13.606] [INFO] cheese - inserting 1000 documents. first: Bailey v. United States and last: Gunnbjorn Ulf-Krakuson -[2018-02-13T00:41:13.671] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T00:41:13.686] [INFO] cheese - inserting 1000 documents. first: E. D. van Oort and last: Category:Populated places on the National Register of Historic Places in New Mexico -[2018-02-13T00:41:13.688] [INFO] cheese - inserting 1000 documents. first: Would I Lie To You and last: Wikipedia:WikiProject Spam/Local/muslimsaustralia.com.au -[2018-02-13T00:41:13.730] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:41:13.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/LISA MVC and last: Alpine skiing at the 2010 Winter Olympics – Men's combined -[2018-02-13T00:41:13.749] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:41:13.786] [INFO] cheese - inserting 1000 documents. first: The Collected Works of CG Jung and last: Eugene Konovaletz -[2018-02-13T00:41:13.814] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:41:13.833] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:41:14.009] [INFO] cheese - inserting 1000 documents. first: Election Results, OH Lieutenant Governor (Democratic Primaries) and last: Aberdeenshire rowie -[2018-02-13T00:41:14.065] [INFO] cheese - inserting 1000 documents. first: Howard Breslin and last: Division 3 1971 -[2018-02-13T00:41:14.096] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:41:14.191] [INFO] cheese - inserting 1000 documents. first: Abejas de Guanajuato and last: Architecture in the Republic of Kosovo -[2018-02-13T00:41:14.195] [INFO] cheese - inserting 1000 documents. first: Neftalí Ricardo Reyes and last: International Taste and Quality Institute -[2018-02-13T00:41:14.196] [INFO] cheese - inserting 1000 documents. first: Budapest X. kerülete and last: File:JasonRobardsSr.gif -[2018-02-13T00:41:14.196] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:41:14.225] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/World War I women's recruitment poster and last: U S Air Force Test Pilot School -[2018-02-13T00:41:14.264] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:41:14.305] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:41:14.318] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:41:14.402] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:14.447] [INFO] cheese - inserting 1000 documents. first: Boeing XB-44 and last: Template:Cite press release/doc -[2018-02-13T00:41:14.503] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:41:14.703] [INFO] cheese - inserting 1000 documents. first: Croatian True Revival and last: Wikipedia:Wikipedia Signpost/2005-05-23/Proceedings of Wikitech-l -[2018-02-13T00:41:14.731] [INFO] cheese - inserting 1000 documents. first: 有天 and last: Category:Organizations based in Providence, Rhode Island -[2018-02-13T00:41:14.745] [INFO] cheese - inserting 1000 documents. first: Boardman/Polando Field and last: 1986 Wake Forest Demon Deacons football team -[2018-02-13T00:41:14.745] [INFO] cheese - inserting 1000 documents. first: 2014 FIFA World Cup qualification (CONCACAF) and last: Category:English legal scholars -[2018-02-13T00:41:14.763] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:41:14.784] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:41:14.788] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:41:14.798] [INFO] cheese - inserting 1000 documents. first: ITQi and last: Category:Kokugakuin University alumni -[2018-02-13T00:41:14.812] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:41:14.858] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:41:14.892] [INFO] cheese - inserting 1000 documents. first: Chang Kuo Chou and last: Wikipedia:WikiProject Articles for creation/March 2014 Backlog Elimination Drive/Anne Delong -[2018-02-13T00:41:14.950] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:41:15.023] [INFO] cheese - inserting 1000 documents. first: Boca FC and last: Baranzate -[2018-02-13T00:41:15.074] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:15.159] [INFO] cheese - inserting 1000 documents. first: C30H23BrO4 and last: MRI (Charlotte Gainsbourg album) -[2018-02-13T00:41:15.176] [INFO] cheese - inserting 1000 documents. first: 1987 Wake Forest Demon Deacons football team and last: Radiance of Shadows -[2018-02-13T00:41:15.205] [INFO] cheese - inserting 1000 documents. first: Amtrac (musician) and last: Noël Aubert de Versé -[2018-02-13T00:41:15.212] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:41:15.250] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:15.265] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:41:15.318] [INFO] cheese - inserting 1000 documents. first: Centre Marcel Dionne and last: Protestant Unionist -[2018-02-13T00:41:15.388] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:41:15.435] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/March 2014 Backlog Elimination Drive/Adjustment and last: Didunculinae -[2018-02-13T00:41:15.502] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:41:15.692] [INFO] cheese - inserting 1000 documents. first: CBCH-FM and last: Wikipedia:Articles for deletion/Save Stargate SG-1 -[2018-02-13T00:41:15.711] [INFO] cheese - inserting 1000 documents. first: Pyralis lividalis and last: File:Marcus alexander.jpg -[2018-02-13T00:41:15.754] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:41:15.760] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:15.773] [INFO] cheese - inserting 1000 documents. first: Category:Russian speculative fiction television series and last: Category:Buildings and structures in Krasnodar -[2018-02-13T00:41:15.792] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2000 May 5 and last: Wikipedia:Changing username/Usurpations/Completed/30 -[2018-02-13T00:41:15.857] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rae.es and last: Category:1979 in badminton -[2018-02-13T00:41:15.872] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T00:41:15.881] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:41:15.945] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:41:16.014] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/New York State Route 347 and last: Joseph and the Dreamer -[2018-02-13T00:41:16.081] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:16.224] [INFO] cheese - inserting 1000 documents. first: Who Dares Wins (TV series) and last: Bruce Seldon -[2018-02-13T00:41:16.267] [INFO] cheese - inserting 1000 documents. first: Edward Vance Flanagan and last: Nowell, Richard -[2018-02-13T00:41:16.272] [INFO] cheese - inserting 1000 documents. first: File:Yakusu hospital.png and last: Route survey -[2018-02-13T00:41:16.272] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Indoor Soccer League teams and last: Chaosistan -[2018-02-13T00:41:16.277] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:41:16.289] [INFO] cheese - inserting 1000 documents. first: Category:1908 in basketball and last: Krishnarjuna(2008 film) -[2018-02-13T00:41:16.310] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:16.315] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:41:16.332] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:41:16.343] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:41:16.393] [INFO] cheese - inserting 1000 documents. first: Tibor Gécsek and last: Villainy Inc. -[2018-02-13T00:41:16.436] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:41:16.525] [INFO] cheese - inserting 1000 documents. first: Oulaya and last: TradeCentre -[2018-02-13T00:41:16.588] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:41:16.624] [INFO] cheese - inserting 1000 documents. first: Lin Yu-hsien and last: Draft:Micromagic Systems Mantis -[2018-02-13T00:41:16.643] [INFO] cheese - inserting 1000 documents. first: U S Route 30 in New Jersey and last: Category:2000s in Pakistan -[2018-02-13T00:41:16.665] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:41:16.677] [INFO] cheese - inserting 1000 documents. first: Old Warren County Courthouse Complex and last: Dar Lyon -[2018-02-13T00:41:16.689] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:41:16.731] [INFO] cheese - inserting 1000 documents. first: Bisi Onabanjo and last: Template:Bharat Punarnirman Dal/meta/color -[2018-02-13T00:41:16.736] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:41:16.784] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:41:16.805] [INFO] cheese - inserting 1000 documents. first: Avid Free DV and last: Glottal R -[2018-02-13T00:41:16.859] [INFO] cheese - inserting 1000 documents. first: Roosevelt F. Dorn and last: Y2K Problem -[2018-02-13T00:41:16.868] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:41:16.892] [INFO] cheese - inserting 1000 documents. first: Template:Northwest Upstate Illini and last: Poecilosoma chrysis -[2018-02-13T00:41:16.922] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:16.945] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:41:17.060] [INFO] cheese - inserting 1000 documents. first: D. Sullivan and last: M-Sport World Rally Team -[2018-02-13T00:41:17.097] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Clay County, Kentucky and last: Occupy Providence -[2018-02-13T00:41:17.099] [INFO] cheese - inserting 1000 documents. first: Category:Military veterans' affairs in Canada and last: Category:Democratic Republic of the Congo environmentalists -[2018-02-13T00:41:17.105] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:17.144] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:41:17.166] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:41:17.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Serviciile secrete rusești and last: Socialist Workers' Party of Iran -[2018-02-13T00:41:17.352] [INFO] cheese - inserting 1000 documents. first: Kaiser-Bessel-derived and last: Theresa A. Singleton -[2018-02-13T00:41:17.380] [INFO] cheese - inserting 1000 documents. first: Chitpavan Konkanastha Brahmins and last: File:Gradgrindapprehendshischildren.jpg -[2018-02-13T00:41:17.425] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:41:17.433] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:41:17.496] [INFO] cheese - inserting 1000 documents. first: Kanagawa Prefectural Board of Education and last: Ngasanya Ilongo -[2018-02-13T00:41:17.556] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:41:17.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ultimatch.biz and last: Marcia M. Anderson -[2018-02-13T00:41:17.653] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:41:17.665] [INFO] cheese - inserting 1000 documents. first: Picture Perfect (album) and last: The Silver Swan -[2018-02-13T00:41:17.684] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:41:17.724] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:17.837] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day list/August 8 and last: H. J. Bhabha -[2018-02-13T00:41:17.932] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:41:18.007] [INFO] cheese - inserting 1000 documents. first: Tessa Prendergast and last: Category:Anti-Zionism in Europe -[2018-02-13T00:41:18.021] [INFO] cheese - inserting 1000 documents. first: Sacred Heart Church, St. Petersburg and last: Wikipedia:Sockpuppet investigations/Crowfurt -[2018-02-13T00:41:18.059] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:41:18.122] [INFO] cheese - inserting 1000 documents. first: QCELP and last: Khalil El Maaoui -[2018-02-13T00:41:18.132] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:41:18.171] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:18.193] [INFO] cheese - inserting 1000 documents. first: Sphinx Head Society and last: U. S. Route 50 in Missouri -[2018-02-13T00:41:18.201] [INFO] cheese - inserting 1000 documents. first: File:Pink floyd meddle echoes.ogg and last: Carbon dioxide-equivalent -[2018-02-13T00:41:18.224] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:41:18.226] [INFO] cheese - inserting 1000 documents. first: Humiliator and last: 2005–06 in Scottish football -[2018-02-13T00:41:18.266] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:41:18.281] [INFO] cheese - inserting 1000 documents. first: Vayeleh and last: European Under-21 Football Championship -[2018-02-13T00:41:18.326] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:41:18.355] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:41:18.448] [INFO] cheese - inserting 1000 documents. first: Template:Canadian politics/leadership election/British Columbia New Democratic Party and last: Wikipedia:Miscellany for deletion/Cleanup Taskforce notes -[2018-02-13T00:41:18.485] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:41:18.563] [INFO] cheese - inserting 1000 documents. first: Category:Manufacturing companies established in 1807 and last: Category:Grade I listed buildings in the London Borough of Bromley -[2018-02-13T00:41:18.594] [INFO] cheese - inserting 1000 documents. first: Cynthia Ann Humes and last: File:Lighting Research & Technology.jpg -[2018-02-13T00:41:18.609] [INFO] cheese - inserting 1000 documents. first: La Chapelle-des-Fougeretz and last: Cariboo Country (TV series) -[2018-02-13T00:41:18.618] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:18.668] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:41:18.672] [INFO] cheese - inserting 1000 documents. first: Gonospermum and last: Podgrad, Gornja Radgona -[2018-02-13T00:41:18.690] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:18.732] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:18.777] [INFO] cheese - inserting 1000 documents. first: Broad Rock, Virginia and last: Nu Microscopii -[2018-02-13T00:41:18.811] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:41:18.870] [INFO] cheese - inserting 1000 documents. first: 2006 UEFA U-21 Championship (squads) and last: Felino -[2018-02-13T00:41:18.897] [INFO] cheese - inserting 1000 documents. first: List of Chief Ministers of KwaNdebele and last: WQCD-FM -[2018-02-13T00:41:18.908] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:18.954] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:19.003] [INFO] cheese - inserting 1000 documents. first: Category:Listed buildings in the London Borough of Bromley and last: Claire Rose -[2018-02-13T00:41:19.087] [INFO] cheese - inserting 1000 documents. first: Template:Osage County, Missouri and last: Template:VSRV8 2008 -[2018-02-13T00:41:19.105] [INFO] cheese - inserting 1000 documents. first: Talcahuana, Chile and last: Piece of Britney -[2018-02-13T00:41:19.108] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:41:19.173] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:41:19.183] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:41:19.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Connecticut articles by quality/6 and last: Sphaeroclinium -[2018-02-13T00:41:19.273] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:41:19.297] [INFO] cheese - inserting 1000 documents. first: Super Mario Bros and last: Nina Gunke -[2018-02-13T00:41:19.360] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:41:19.543] [INFO] cheese - inserting 1000 documents. first: Fontevivo and last: Cylla Markham -[2018-02-13T00:41:19.557] [INFO] cheese - inserting 1000 documents. first: 1987 European Athletics Indoor Championships - Men's 400 metres and last: Template:Taxonomy/Hippohyus -[2018-02-13T00:41:19.604] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:41:19.606] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:41:19.638] [INFO] cheese - inserting 1000 documents. first: Single malt whiskies and last: The Saddle (poker) -[2018-02-13T00:41:19.723] [INFO] cheese - inserting 1000 documents. first: Athrips tetrapunctella and last: Schmala -[2018-02-13T00:41:19.725] [INFO] cheese - inserting 1000 documents. first: File:Charlie G Gibson.jpg and last: Zhao Jiuzhang -[2018-02-13T00:41:19.728] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:41:19.797] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:19.809] [INFO] cheese - inserting 1000 documents. first: Sphaeromeria and last: File:Geraldton-Greenough logo.png -[2018-02-13T00:41:19.809] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:19.824] [INFO] cheese - inserting 1000 documents. first: Maury, North Carolina and last: İstanbul–Ankara Main Line -[2018-02-13T00:41:19.876] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:41:19.928] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:41:20.117] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Protoryx and last: 2019 AFC Asian Cup qualification – Third Round -[2018-02-13T00:41:20.187] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:20.310] [INFO] cheese - inserting 1000 documents. first: Schmalenbach (Löhbach) and last: Cian -[2018-02-13T00:41:20.323] [INFO] cheese - inserting 1000 documents. first: Terrific (comics) and last: Conestoga (ship) -[2018-02-13T00:41:20.357] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:20.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2009 October 2 and last: Category:Ships of Fiji -[2018-02-13T00:41:20.369] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:41:20.374] [INFO] cheese - inserting 1000 documents. first: Template:WP Lingistics and last: Bruère-Allichamps -[2018-02-13T00:41:20.387] [INFO] cheese - inserting 1000 documents. first: Jules Hodgson and last: El viaje de Copperpot -[2018-02-13T00:41:20.391] [INFO] cheese - inserting 1000 documents. first: File:Robert Gould Shaw II.jpg and last: Chimney-jamb -[2018-02-13T00:41:20.422] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:41:20.446] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:41:20.575] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:20.580] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:20.754] [INFO] cheese - inserting 1000 documents. first: Moral Equivalent of War speech (Carter) and last: Draft:DIPLOMA IN MEDICAL LABORATORY TECHNOLOGY -[2018-02-13T00:41:20.823] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:41:20.954] [INFO] cheese - inserting 1000 documents. first: The Block 2BL and last: Wikipedia:Articles for deletion/Viorel Cute-Petric -[2018-02-13T00:41:20.973] [INFO] cheese - inserting 1000 documents. first: Kojnok and last: Jerry Herst -[2018-02-13T00:41:21.009] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:21.017] [INFO] cheese - inserting 1000 documents. first: List of WNBL awards and last: NSSC -[2018-02-13T00:41:21.043] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:21.074] [INFO] cheese - inserting 1000 documents. first: Titus (TV Series) and last: Ekolosko drustvo Zeleni Osijek -[2018-02-13T00:41:21.116] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:41:21.143] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:41:21.279] [INFO] cheese - inserting 1000 documents. first: Bué and last: Saint-Laurent-du-Cros -[2018-02-13T00:41:21.387] [INFO] cheese - inserting 1000 documents. first: CVV number and last: Ides of March (band) -[2018-02-13T00:41:21.441] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T00:41:21.514] [INFO] cheese - inserting 1000 documents. first: Category:1854 in the Caribbean and last: Red Dwarf 4 -[2018-02-13T00:41:21.545] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T00:41:21.670] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:21.693] [INFO] cheese - inserting 1000 documents. first: Mary (Molly) MacCarthy and last: Repeat expansion disorder -[2018-02-13T00:41:21.700] [INFO] cheese - inserting 1000 documents. first: Guiyang County and last: Nonstop to Nowhere -[2018-02-13T00:41:21.728] [INFO] cheese - inserting 1000 documents. first: Packera musiniensis and last: Vanessa Abruzzo -[2018-02-13T00:41:21.759] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:21.796] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:41:21.809] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:41:21.932] [INFO] cheese - inserting 1000 documents. first: Colombier, Côte-d'Or and last: Montmoyen -[2018-02-13T00:41:21.939] [INFO] cheese - inserting 1000 documents. first: Billy Spurdle and last: At Night I Pray -[2018-02-13T00:41:21.974] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:22.034] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:41:22.248] [INFO] cheese - inserting 1000 documents. first: The Calgary Sun and last: Double Platinum (film) -[2018-02-13T00:41:22.257] [INFO] cheese - inserting 1000 documents. first: Princeton orange and last: File:Up Poster.JPG -[2018-02-13T00:41:22.301] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:41:22.303] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright or Trademark and last: Pig's ears -[2018-02-13T00:41:22.310] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:41:22.324] [INFO] cheese - inserting 1000 documents. first: The Resurrection and last: Wikipedia:Articles for deletion/Kirill Formanchuk -[2018-02-13T00:41:22.371] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:22.395] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:22.478] [INFO] cheese - inserting 1000 documents. first: Ibsen Museum (Oslo) and last: US Route 29 in the District of Columbia -[2018-02-13T00:41:22.518] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:41:22.690] [INFO] cheese - inserting 1000 documents. first: Big Lake State Park and last: File:PhilOchsAToast.jpg -[2018-02-13T00:41:22.700] [INFO] cheese - inserting 1000 documents. first: Puerta de Europa and last: Drøbak Frogn IF -[2018-02-13T00:41:22.732] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:41:22.740] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T00:41:22.756] [INFO] cheese - inserting 1000 documents. first: Forage grasses and last: Gymnastics at the 2014 Summer Youth Olympics -[2018-02-13T00:41:22.798] [INFO] cheese - inserting 1000 documents. first: Microsoft Inc. and last: Underconstruction 1: Silence EP -[2018-02-13T00:41:22.803] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:41:22.863] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/hutchisoneffect.ca and last: Category:Murder in 1934 -[2018-02-13T00:41:22.868] [INFO] cheese - inserting 1000 documents. first: Jardine Strategic Holdings and last: Valentinianism -[2018-02-13T00:41:22.868] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:41:22.970] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:22.975] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:22.986] [INFO] cheese - inserting 1000 documents. first: File:N c vasanthakokilam in chandragupta chanakya.jpg and last: 2016 Coupe de la Martinique -[2018-02-13T00:41:23.072] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T00:41:23.108] [INFO] cheese - inserting 1000 documents. first: Monash University Art and Design Faculty and last: Future Clouds & Radar -[2018-02-13T00:41:23.139] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:41:23.192] [INFO] cheese - inserting 1000 documents. first: Paizay-le-Tort and last: W A Criswell -[2018-02-13T00:41:23.218] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:41:23.244] [INFO] cheese - inserting 1000 documents. first: Prague districts and last: Izvoarele -[2018-02-13T00:41:23.316] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:41:23.351] [INFO] cheese - inserting 1000 documents. first: Category:Writers about Scotland and last: Template:Fb team Impuls-2 -[2018-02-13T00:41:23.423] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:41:23.469] [INFO] cheese - inserting 1000 documents. first: Alvin H. Mackling and last: Slouching Towards Bethlehem -[2018-02-13T00:41:23.489] [INFO] cheese - inserting 1000 documents. first: Skande and last: File:Hollywood Seven (album) by Jon English.jpg -[2018-02-13T00:41:23.554] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:23.640] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:41:23.685] [INFO] cheese - inserting 1000 documents. first: W A Cunningham and last: 1935 Yankee hurricane -[2018-02-13T00:41:23.711] [INFO] cheese - inserting 1000 documents. first: Brazilian destroyer Para (1964) and last: Oystein -[2018-02-13T00:41:23.721] [INFO] cheese - inserting 1000 documents. first: Magic Engine and last: Wikipedia:Sockpuppet investigations/EdgarBacon -[2018-02-13T00:41:23.748] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:41:23.810] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T00:41:23.810] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:41:23.920] [INFO] cheese - inserting 1000 documents. first: Slowly but Surely and last: Alexander sphere -[2018-02-13T00:41:23.980] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:41:24.045] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Banants-2 and last: Category:People from Valdés, Asturias -[2018-02-13T00:41:24.109] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:24.168] [INFO] cheese - inserting 1000 documents. first: Diwan-i-Aam (Red Fort, Delhi) and last: File:Nerve 2016 poster.png -[2018-02-13T00:41:24.211] [INFO] cheese - inserting 1000 documents. first: Template:R from unnecessary disambiguation/sandbox and last: Metropolitan Michael of Austria -[2018-02-13T00:41:24.211] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:24.256] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:41:24.316] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Encyclopaedia Biblica topics/U and last: Syncephalum -[2018-02-13T00:41:24.329] [INFO] cheese - inserting 1000 documents. first: WF McCoy and last: Human-rated -[2018-02-13T00:41:24.352] [INFO] cheese - inserting 1000 documents. first: Statement of changes in equity and last: Wenham (MA) -[2018-02-13T00:41:24.372] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:41:24.400] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:24.460] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:41:24.486] [INFO] cheese - inserting 1000 documents. first: Greek pantheon and last: U.s. national football team -[2018-02-13T00:41:24.487] [INFO] cheese - inserting 1000 documents. first: Mount Pearl Jr. Blades and last: Template:Taxonomy/Maxakalisaurus -[2018-02-13T00:41:24.548] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:41:24.547] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:24.612] [INFO] cheese - inserting 1000 documents. first: Template:Independence Party - Þversum/meta/shortname and last: Category:Churches in Monroe County, Alabama -[2018-02-13T00:41:24.626] [INFO] cheese - inserting 1000 documents. first: File:Pierino colpisce ancora (1982 Film).jpg and last: 2016 Ningbo Challenger - Singles -[2018-02-13T00:41:24.656] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:41:24.659] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:41:24.807] [INFO] cheese - inserting 1000 documents. first: Syncretocarpus and last: Jéferson Rodrigues Gonçalves -[2018-02-13T00:41:24.888] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:41:24.896] [INFO] cheese - inserting 1000 documents. first: Peyronie's and last: Lacave, Lot -[2018-02-13T00:41:24.969] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:41:24.980] [INFO] cheese - inserting 1000 documents. first: Candlelight and last: Antiaging antioxidant -[2018-02-13T00:41:24.998] [INFO] cheese - inserting 1000 documents. first: Forgotten Landscapes Project and last: Château Sigognac -[2018-02-13T00:41:25.018] [INFO] cheese - inserting 1000 documents. first: Revere (MA) and last: Blade (Street Fighter) -[2018-02-13T00:41:25.035] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:25.038] [INFO] cheese - inserting 1000 documents. first: 2016 Brest Challenger - Singles and last: Wikipedia:TEXTES -[2018-02-13T00:41:25.075] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:25.083] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:25.117] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:41:25.157] [INFO] cheese - inserting 1000 documents. first: Environmental Literacy Plan and last: Pseudomya bartschi -[2018-02-13T00:41:25.252] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:41:25.267] [INFO] cheese - inserting 1000 documents. first: 366 geometry and last: Southeast louisiana university -[2018-02-13T00:41:25.310] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:41:25.359] [INFO] cheese - inserting 1000 documents. first: Rhopalocarpus undulatus and last: Becs (disambiguation) -[2018-02-13T00:41:25.395] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:41:25.431] [INFO] cheese - inserting 1000 documents. first: File:Usher building v3.png and last: List of Return to the Planet of the Apes episodes -[2018-02-13T00:41:25.476] [INFO] cheese - inserting 1000 documents. first: Château Dillon and last: Hakaona language -[2018-02-13T00:41:25.479] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:41:25.499] [INFO] cheese - inserting 1000 documents. first: Ab initio calculation and last: Wikipedia:Articles for deletion/Cost per contact -[2018-02-13T00:41:25.520] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:41:25.583] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:25.601] [INFO] cheese - inserting 1000 documents. first: Cillizza and last: Thus Always to Tyrants (album) -[2018-02-13T00:41:25.645] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:41:25.651] [INFO] cheese - inserting 1000 documents. first: File:Deyatakirula.jpg and last: "Golden Rule" Jones -[2018-02-13T00:41:25.652] [INFO] cheese - inserting 1000 documents. first: Oleksandr Matkobozhyk and last: History of Carson City, Nevada -[2018-02-13T00:41:25.686] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:41:25.714] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:41:25.790] [INFO] cheese - inserting 1000 documents. first: SMRT Buses and last: FDP (Deutschland) -[2018-02-13T00:41:25.811] [INFO] cheese - inserting 1000 documents. first: Thomas Vilhelm Pedersen and last: Roman Catholic Diocese of Solsona -[2018-02-13T00:41:25.836] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:41:25.838] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:41:25.909] [INFO] cheese - inserting 1000 documents. first: Category:Athletics in Mexico and last: Casandro (wrestler) -[2018-02-13T00:41:25.923] [INFO] cheese - inserting 1000 documents. first: History of Cartaxo and last: History of La Sarraz -[2018-02-13T00:41:25.943] [INFO] cheese - inserting 1000 documents. first: Sapp and last: Licenza -[2018-02-13T00:41:25.961] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:41:25.969] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:41:26.065] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:41:26.098] [INFO] cheese - inserting 1000 documents. first: Carousel Theater (disambiguation) and last: John Duggan -[2018-02-13T00:41:26.199] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:26.244] [INFO] cheese - inserting 1000 documents. first: West Hartlepool F. C. and last: York City F. C. records -[2018-02-13T00:41:26.299] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:41:26.334] [INFO] cheese - inserting 1000 documents. first: History of La Tour-de-Peilz and last: History of Suwa, Nagano -[2018-02-13T00:41:26.346] [INFO] cheese - inserting 1000 documents. first: Portal:New York City/Did you know/4 and last: Oxacme calcarea -[2018-02-13T00:41:26.402] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:41:26.425] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:41:26.535] [INFO] cheese - inserting 1000 documents. first: File:PeterTosh-MysticMan.jpg and last: Ibero-American -[2018-02-13T00:41:26.639] [INFO] cheese - inserting 1000 documents. first: Casandro and last: Archdeaconry of Isle of Man -[2018-02-13T00:41:26.671] [INFO] cheese - inserting 1000 documents. first: Pentameric and last: Hourglass (song) -[2018-02-13T00:41:26.670] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:41:26.695] [INFO] cheese - inserting 1000 documents. first: Category:U.S. Roads project articles needing maps and last: Empire of trebizond -[2018-02-13T00:41:26.700] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:41:26.713] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:41:26.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Samuil of Bulgaria/archive1 and last: Griselles -[2018-02-13T00:41:26.766] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:41:26.772] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:41:26.795] [INFO] cheese - inserting 1000 documents. first: History of Suwon and last: Category:1842 establishments in Washington, D.C. -[2018-02-13T00:41:26.850] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:41:27.034] [INFO] cheese - inserting 1000 documents. first: FZJK and last: Donald Norman McLeod -[2018-02-13T00:41:27.090] [INFO] cheese - inserting 1000 documents. first: List of Archdeacons of Isle of Man and last: File:A Good Lawyers Wife Poster.jpg -[2018-02-13T00:41:27.123] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:41:27.157] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:41:27.233] [INFO] cheese - inserting 1000 documents. first: Category:Start-Class medicine articles and last: 1993 RP -[2018-02-13T00:41:27.261] [INFO] cheese - inserting 1000 documents. first: Category:People from the Sakha Republic and last: Dmitriy Torlopov -[2018-02-13T00:41:27.279] [INFO] cheese - inserting 1000 documents. first: 1960 U S National Championships - Men's Singles and last: Category:Wikipedia requested maps of roads in Arkansas -[2018-02-13T00:41:27.287] [INFO] cheese - inserting 1000 documents. first: Sni Mills, Missouri and last: K-T.V. -[2018-02-13T00:41:27.299] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:41:27.311] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:41:27.364] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:41:27.364] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:41:27.560] [INFO] cheese - inserting 1000 documents. first: Cressy, Tasmania and last: CFEM-DT -[2018-02-13T00:41:27.639] [INFO] cheese - inserting 1000 documents. first: H.F.Copel. and last: Surfing Florida -[2018-02-13T00:41:27.653] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T00:41:27.693] [INFO] cheese - inserting 1000 documents. first: Hospital Provincial del Centenario (Rosario) and last: Natoya Goule -[2018-02-13T00:41:27.710] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:27.764] [INFO] cheese - inserting 1000 documents. first: Guarda, Portugal and last: SETA (contractor) -[2018-02-13T00:41:27.769] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:41:27.844] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:41:27.882] [INFO] cheese - inserting 1000 documents. first: Spotless (song) and last: Dryas (disambiguation) -[2018-02-13T00:41:27.925] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:27.927] [INFO] cheese - inserting 1000 documents. first: Diadem (series) and last: Category:Liverpool F.C. matches -[2018-02-13T00:41:27.955] [INFO] cheese - inserting 1000 documents. first: Fallacy of relevance and last: The Final Judgement -[2018-02-13T00:41:27.993] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:28.054] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:41:28.132] [INFO] cheese - inserting 1000 documents. first: Category:American psychological drama films and last: History of Knox County, Kentucky -[2018-02-13T00:41:28.171] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:41:28.218] [INFO] cheese - inserting 1000 documents. first: Alexandra Eldridge and last: Australian Catholic Bishops' Conference -[2018-02-13T00:41:28.256] [INFO] cheese - inserting 1000 documents. first: Spanish-language surname and last: Wikipedia:Articles for deletion/Candy/Molly's Lips -[2018-02-13T00:41:28.280] [INFO] cheese - inserting 1000 documents. first: Xintian and last: Prototi -[2018-02-13T00:41:28.288] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/newspapers.gov.im and last: Downfall (Trust Company song) -[2018-02-13T00:41:28.299] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:41:28.327] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:41:28.330] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:41:28.347] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:28.497] [INFO] cheese - inserting 1000 documents. first: History of Knox County, Tennessee and last: Draft:Odhran Ua hEolais -[2018-02-13T00:41:28.558] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:41:28.590] [INFO] cheese - inserting 1000 documents. first: Template:User do no harm and last: Touillon-et-Loutelet -[2018-02-13T00:41:28.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2006 August 30 and last: D.G. Kendall -[2018-02-13T00:41:28.673] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:41:28.799] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:41:28.886] [INFO] cheese - inserting 1000 documents. first: Category:College rowing coaches in the United States and last: CP-80633 -[2018-02-13T00:41:28.947] [INFO] cheese - inserting 1000 documents. first: 1975 Australian Rally Championship and last: File:Dmitry Moor 1941 What have you done to help the front.jpg -[2018-02-13T00:41:28.959] [INFO] cheese - inserting 1000 documents. first: Purple vs. violet and last: Anderssen Opening -[2018-02-13T00:41:28.978] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:41:28.989] [INFO] cheese - inserting 1000 documents. first: Palmer (B&A station) and last: Tour 2009 (Die Ärzte tour) -[2018-02-13T00:41:29.015] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:41:29.064] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:41:29.115] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:41:29.126] [INFO] cheese - inserting 1000 documents. first: Odhran Ua hEolais (10th Century Scribe) and last: The Society for the Promotion of Nature Conservation -[2018-02-13T00:41:29.199] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:41:29.308] [INFO] cheese - inserting 1000 documents. first: Grosvenor Place and last: Mar Thomas -[2018-02-13T00:41:29.339] [INFO] cheese - inserting 1000 documents. first: M.A.D. and last: Coogan -[2018-02-13T00:41:29.363] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:41:29.403] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:41:29.460] [INFO] cheese - inserting 1000 documents. first: DEL16P12.1P11.2 and last: Afiesimama, Ernest -[2018-02-13T00:41:29.548] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:41:29.564] [INFO] cheese - inserting 1000 documents. first: Marmaroxena autochalca and last: Wikipedia:United States Education Program/Poverty Justice and Human Capabilities (Diana Strassmann and Michael Emerson)/Proposed Topics -[2018-02-13T00:41:29.637] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:41:29.690] [INFO] cheese - inserting 1000 documents. first: Texas Workforce Commission and last: Wheatland Baptist Cemetery -[2018-02-13T00:41:29.695] [INFO] cheese - inserting 1000 documents. first: Agile tooling and last: Bruce Boppo Tiemann -[2018-02-13T00:41:29.735] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:41:29.743] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:41:29.858] [INFO] cheese - inserting 1000 documents. first: 1.a3 and last: John Wycliffe Lowes Forster -[2018-02-13T00:41:29.878] [INFO] cheese - inserting 1000 documents. first: Audnedal Station and last: Floodlit Cup (Northern Ireland) -[2018-02-13T00:41:29.887] [INFO] cheese - inserting 1000 documents. first: San Michele Mondovi and last: Year Of The Beast -[2018-02-13T00:41:29.938] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:29.933] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:41:29.964] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:41:30.058] [INFO] cheese - inserting 1000 documents. first: Rochelle feinstein and last: Crack Rock Steady (Song) -[2018-02-13T00:41:30.156] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:41:30.273] [INFO] cheese - inserting 1000 documents. first: Netherlands at the 2004 Summer Paralympics and last: Category:Geography of Rowan County, Kentucky -[2018-02-13T00:41:30.310] [INFO] cheese - inserting 1000 documents. first: Corporate limit and last: Books Etc -[2018-02-13T00:41:30.346] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:41:30.426] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:30.590] [INFO] cheese - inserting 1000 documents. first: Calleville and last: Záviš of Zápy -[2018-02-13T00:41:30.675] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:41:30.726] [INFO] cheese - inserting 1000 documents. first: Woodbridge High School (Irvine, California) and last: Dave Finlay -[2018-02-13T00:41:30.770] [INFO] cheese - inserting 1000 documents. first: Jinggang Shan (999) and last: Human digestive system -[2018-02-13T00:41:30.819] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:41:30.828] [INFO] cheese - inserting 1000 documents. first: Aleksandr Derevyagin and last: The Journal of African American History -[2018-02-13T00:41:30.828] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:41:30.833] [INFO] cheese - inserting 1000 documents. first: Template:Qingdao Clipper and last: Amangkurat IV of Mataram -[2018-02-13T00:41:30.926] [INFO] cheese - inserting 1000 documents. first: Template:Agricultural water management models and last: King Kleagle -[2018-02-13T00:41:30.946] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T00:41:30.952] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T00:41:30.980] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:31.063] [INFO] cheese - inserting 1000 documents. first: Jacqueline Moss and last: Tetanostola hexagona -[2018-02-13T00:41:31.121] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:41:31.247] [INFO] cheese - inserting 1000 documents. first: Union for Europe and last: List of schools in Africa -[2018-02-13T00:41:31.302] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:41:31.417] [INFO] cheese - inserting 1000 documents. first: File:Erasure-MoscowToMars.jpg and last: Ally Lundström -[2018-02-13T00:41:31.425] [INFO] cheese - inserting 1000 documents. first: List of discoveries by Leonhard Euler and last: Sunanda Kumariratana -[2018-02-13T00:41:31.431] [INFO] cheese - inserting 1000 documents. first: Paul J. Rainey and last: Sandy Cane -[2018-02-13T00:41:31.466] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:41:31.482] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:31.505] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:41:31.508] [INFO] cheese - inserting 1000 documents. first: List of city nicknames in Maine and last: Tom Jacobsen (disambiguation) -[2018-02-13T00:41:31.573] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:41:31.574] [INFO] cheese - inserting 1000 documents. first: Max von Braunmühl and last: ITGLWF -[2018-02-13T00:41:31.621] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/pwhl3.stats.pointstreak.com and last: Category:Secondary education in Italy -[2018-02-13T00:41:31.654] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:41:31.698] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:41:31.855] [INFO] cheese - inserting 1000 documents. first: Ozymandias (name) and last: The Treasure of Tartary -[2018-02-13T00:41:31.907] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:41:32.008] [INFO] cheese - inserting 1000 documents. first: Buena Vista ISD and last: State Route 111 (Virginia pre-1933) -[2018-02-13T00:41:32.012] [INFO] cheese - inserting 1000 documents. first: Template:United States postage stamps and last: Template:Did you know nominations/Rosy bee-eater -[2018-02-13T00:41:32.030] [INFO] cheese - inserting 1000 documents. first: File:Varese-Stemma.png and last: Chandeshwori -[2018-02-13T00:41:32.060] [INFO] cheese - inserting 1000 documents. first: Pete Wyshner and last: File:Spec Harkness.jpg -[2018-02-13T00:41:32.065] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:41:32.073] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:41:32.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/yamaha-motor.com.mx and last: Elior Sider -[2018-02-13T00:41:32.166] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:41:32.225] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:41:32.229] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:41:32.357] [INFO] cheese - inserting 1000 documents. first: Professional Graphics Controller and last: Batucada -[2018-02-13T00:41:32.502] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:32.639] [INFO] cheese - inserting 1000 documents. first: Post-merger integration and last: Benjamin D. Walsh -[2018-02-13T00:41:32.734] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:41:32.774] [INFO] cheese - inserting 1000 documents. first: Gushtaba and last: Stronger together -[2018-02-13T00:41:32.793] [INFO] cheese - inserting 1000 documents. first: Alexandru-Radu Timofte and last: File:Moby-mistake.JPG -[2018-02-13T00:41:32.835] [INFO] cheese - inserting 1000 documents. first: Jowangshin and last: Afroto, Mostafa -[2018-02-13T00:41:32.846] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:41:32.860] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:41:32.941] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:41:32.966] [INFO] cheese - inserting 1000 documents. first: SR 80 (VA) and last: Shadow Blasters -[2018-02-13T00:41:33.062] [INFO] cheese - inserting 1000 documents. first: Impression Formation and last: 8x107mm DS -[2018-02-13T00:41:33.075] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:41:33.190] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:41:33.367] [INFO] cheese - inserting 1000 documents. first: Template:Page numbers/doc and last: John Thomlinson -[2018-02-13T00:41:33.382] [INFO] cheese - inserting 1000 documents. first: List of United States Army installations in Saudi Arabia and last: File:College of Saint Rose seal.png -[2018-02-13T00:41:33.430] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:41:33.431] [INFO] cheese - inserting 1000 documents. first: Mongo Santamaria and last: Gol Maal -[2018-02-13T00:41:33.452] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:41:33.523] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:41:33.527] [INFO] cheese - inserting 1000 documents. first: Afroudakis, Christos and last: Glastonbury Divisional Board -[2018-02-13T00:41:33.592] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:33.627] [INFO] cheese - inserting 1000 documents. first: Green Economics Institute and last: The Paper Man (film) -[2018-02-13T00:41:33.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Absolute color space and last: File:Como Look Your Heart.jpg -[2018-02-13T00:41:33.672] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:41:33.698] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:41:33.824] [INFO] cheese - inserting 1000 documents. first: Case against the fed and last: Wikipedia:Articles for deletion/Kudai's third studio album -[2018-02-13T00:41:33.866] [INFO] cheese - inserting 1000 documents. first: The Behavioral and Brain Sciences and last: Wikipedia:Peer review/List of Olympic medalists in equestrian/archive1 -[2018-02-13T00:41:33.866] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:41:33.919] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:41:33.968] [INFO] cheese - inserting 1000 documents. first: Kantara Castle and last: Lost Channel, Parry Sound District, Ontario -[2018-02-13T00:41:33.981] [INFO] cheese - inserting 1000 documents. first: Why is the sky blue and last: Kpala language -[2018-02-13T00:41:34.000] [INFO] cheese - inserting 1000 documents. first: Davide Perre and last: Sergio Abreu -[2018-02-13T00:41:34.018] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:41:34.023] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:41:34.060] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:41:34.164] [INFO] cheese - inserting 1000 documents. first: Tindale and last: Portal:Current events/2006 September 2 -[2018-02-13T00:41:34.220] [INFO] cheese - inserting 1000 documents. first: Club Deportivo Universidad Católica (Ecuador) and last: Category:Works by source -[2018-02-13T00:41:34.228] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:41:34.288] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:41:34.292] [INFO] cheese - inserting 1000 documents. first: The Feeding of the 4000 and last: Stratum lucidum (disambiguation) -[2018-02-13T00:41:34.340] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:41:34.436] [INFO] cheese - inserting 1000 documents. first: Rainbow Six: Patriots and last: Vernacular Orientation -[2018-02-13T00:41:34.490] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:41:34.495] [INFO] cheese - inserting 1000 documents. first: Category:Taranto F.C. 1927 players and last: Rico Roman -[2018-02-13T00:41:34.507] [INFO] cheese - inserting 1000 documents. first: Category:Operas by Ermanno Wolf-Ferrari and last: Buffalo, WV -[2018-02-13T00:41:34.682] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:41:34.739] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:41:34.848] [INFO] cheese - inserting 1000 documents. first: Cutting speed and last: Portal:English football/Did you know/49 -[2018-02-13T00:41:34.850] [INFO] cheese - inserting 1000 documents. first: Po Leung Kuk No.1 W. H. Cheung College and last: The Halifax Academy -[2018-02-13T00:41:34.934] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:41:34.933] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:41:35.048] [INFO] cheese - inserting 1000 documents. first: Youre The Man Now Dog and last: Stuccos -[2018-02-13T00:41:35.156] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:41:35.237] [INFO] cheese - inserting 1000 documents. first: Musivisual Language and last: Puiggari -[2018-02-13T00:41:35.317] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:41:35.382] [INFO] cheese - inserting 1000 documents. first: 1997 Porsche Tennis Grand Prix and last: Troops for the Internal Defence of the Republic -[2018-02-13T00:41:35.419] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Women's 100 metres hurdles and last: Template:Dominican Summer League Royals roster -[2018-02-13T00:41:35.422] [INFO] cheese - inserting 1000 documents. first: Earl H. Potter and last: Guatemala Temple -[2018-02-13T00:41:35.425] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:35.487] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:35.492] [INFO] cheese - inserting 1000 documents. first: Category:Blind poets and last: Wikipedia:WikiProject Women in Red/Missing articles by occupation/University teachers -[2018-02-13T00:41:35.529] [INFO] cheese - inserting 1000 documents. first: Buffalo County, SD and last: George T. Stagg -[2018-02-13T00:41:35.532] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:41:35.625] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:41:35.681] [INFO] cheese - batch complete in: 2.833 secs -[2018-02-13T00:41:35.782] [INFO] cheese - inserting 1000 documents. first: Bronte ISD and last: Nuacht RTÉ -[2018-02-13T00:41:35.861] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:41:35.890] [INFO] cheese - inserting 1000 documents. first: Sedeh (disambiguation) and last: Category:Religious buildings completed in 1761 -[2018-02-13T00:41:35.924] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:41:35.970] [INFO] cheese - inserting 1000 documents. first: Copa del Rey 2002–03 and last: Battle of Lake Borgne -[2018-02-13T00:41:35.981] [INFO] cheese - inserting 1000 documents. first: Windows in church architecture and last: Roland Beaudry -[2018-02-13T00:41:36.019] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:41:36.062] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:41:36.116] [INFO] cheese - inserting 1000 documents. first: Template:2012 NCAA Division I men's ice hockey tournament navbox and last: Category:Televisió de Catalunya -[2018-02-13T00:41:36.187] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:41:36.233] [INFO] cheese - inserting 1000 documents. first: Honeybeemon and last: Sacromonte -[2018-02-13T00:41:36.292] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:41:36.330] [INFO] cheese - inserting 1000 documents. first: Category:Budućnost Podgorica and last: Poliocephalus poliocephalus -[2018-02-13T00:41:36.383] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:41:36.397] [INFO] cheese - inserting 1000 documents. first: Phillip Lindel Tsen and last: Nelson Cruz (outfielder) -[2018-02-13T00:41:36.487] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:41:36.551] [INFO] cheese - inserting 1000 documents. first: Category:German sports businesspeople and last: Southwest High School (Macon, Georgia) -[2018-02-13T00:41:36.572] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Naseba and last: Augusto de Oliveira da Silva -[2018-02-13T00:41:36.603] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:41:36.623] [INFO] cheese - inserting 1000 documents. first: 2004-2005 Japan Junior Figure Skating Championships and last: Wikipedia:WikiProject Spam/LinkReports/facultas.at -[2018-02-13T00:41:36.646] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:41:36.710] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:41:36.856] [INFO] cheese - inserting 1000 documents. first: Maxillofacial surgery and last: Wikipedia:Articles for deletion/.38 S&W -[2018-02-13T00:41:36.861] [INFO] cheese - inserting 1000 documents. first: Apicius (disambiguation) and last: North and east neighborhood -[2018-02-13T00:41:36.924] [INFO] cheese - inserting 1000 documents. first: Shreveport Classic and last: Bumi (disambiguation) -[2018-02-13T00:41:36.977] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:41:36.999] [INFO] cheese - inserting 1000 documents. first: MO25 and last: Purgatoire River -[2018-02-13T00:41:37.019] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:37.060] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T00:41:37.072] [INFO] cheese - inserting 1000 documents. first: Template:RCTS-LocosLNER-5 and last: Bishop Julius -[2018-02-13T00:41:37.123] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:41:37.133] [INFO] cheese - inserting 1000 documents. first: Template:Discussing/doc and last: Hyphopichia -[2018-02-13T00:41:37.148] [INFO] cheese - inserting 1000 documents. first: List of curling clubs in Sweden and last: Digital Creativity -[2018-02-13T00:41:37.161] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:41:37.204] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:41:37.207] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:41:37.536] [INFO] cheese - inserting 1000 documents. first: AIDES and last: Oldervik, Troms -[2018-02-13T00:41:37.556] [INFO] cheese - inserting 1000 documents. first: Charlestown, SC and last: Tumbes Province -[2018-02-13T00:41:37.569] [INFO] cheese - inserting 1000 documents. first: Central Vermont Railway Station (disambiguation) and last: Yang Po-Han -[2018-02-13T00:41:37.574] [INFO] cheese - inserting 1000 documents. first: Yankee Flats and last: File:LTC Jonathan M Stubbs, Commander, 2nd Battalion, 153rd Infantry Regiment.jpg -[2018-02-13T00:41:37.593] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:41:37.639] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:41:37.646] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:41:37.632] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:37.686] [INFO] cheese - inserting 1000 documents. first: Barbed Wire Kisses (album) and last: Ackley School District v. Hall -[2018-02-13T00:41:37.744] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:41:37.813] [INFO] cheese - inserting 1000 documents. first: File:Kaanchi... poster.jpg and last: Category:Transport in Pickering, Ontario -[2018-02-13T00:41:37.833] [INFO] cheese - inserting 1000 documents. first: Kodamaea and last: Windows 8 -[2018-02-13T00:41:37.884] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:37.946] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:38.060] [INFO] cheese - inserting 1000 documents. first: Charles Latham (physician) and last: (79376) 1997 FF -[2018-02-13T00:41:38.086] [INFO] cheese - inserting 1000 documents. first: Vandellòs and l'Hospitalet de l'Infant and last: Category:Regions of Venezuela -[2018-02-13T00:41:38.112] [INFO] cheese - inserting 1000 documents. first: Draft:Duble U and last: Ian Flannon Taylor -[2018-02-13T00:41:38.126] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:38.141] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:41:38.188] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:41:38.207] [INFO] cheese - inserting 1000 documents. first: Nassoi and last: Chevigny -[2018-02-13T00:41:38.283] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:41:38.350] [INFO] cheese - inserting 1000 documents. first: Martha Hunt and last: Wikipedia:Reference desk/Archives/Miscellaneous/2014 March 12 -[2018-02-13T00:41:38.423] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:41:38.499] [INFO] cheese - inserting 1000 documents. first: Tim Lambesis and last: Chicken or egg -[2018-02-13T00:41:38.576] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T00:41:38.639] [INFO] cheese - inserting 1000 documents. first: Mutu language and last: Luke Malicki -[2018-02-13T00:41:38.683] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:38.701] [INFO] cheese - inserting 1000 documents. first: St. Paul of Thebes and last: Simon Langton Grammar for Boys -[2018-02-13T00:41:38.728] [INFO] cheese - inserting 1000 documents. first: Category:Fictional British military personnel by branch and last: M Ross Perkins -[2018-02-13T00:41:38.738] [INFO] cheese - inserting 1000 documents. first: Det norske Theater (Bergen) and last: Category:Economic history of California -[2018-02-13T00:41:38.779] [INFO] cheese - inserting 1000 documents. first: IL-5 receptor and last: Arthur Alston -[2018-02-13T00:41:38.784] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:41:38.800] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:41:38.850] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:41:38.909] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:41:38.999] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:HurricaneSpin/List of User:IPhonehurricane95 Sockpuppets and last: File:Till Marriage Do Us Part.jpg -[2018-02-13T00:41:39.057] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:41:39.239] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Morphett and last: Henry J. Aaron -[2018-02-13T00:41:39.267] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Melvin House and last: Distributed database management system -[2018-02-13T00:41:39.301] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:41:39.328] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:41:39.364] [INFO] cheese - inserting 1000 documents. first: Category:People from Metković and last: Category:Plants described in 1789 -[2018-02-13T00:41:39.444] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:41:39.458] [INFO] cheese - inserting 1000 documents. first: Discriminant Book and last: Tiamat (public figure) -[2018-02-13T00:41:39.479] [INFO] cheese - inserting 1000 documents. first: The Moth Confesses and last: Vintage print -[2018-02-13T00:41:39.528] [INFO] cheese - inserting 1000 documents. first: Amelkites and last: La Chapelle-sur-Oreuse -[2018-02-13T00:41:39.539] [INFO] cheese - inserting 1000 documents. first: Ugoyan and last: Category:Coastal Carolina Chanticleers men's basketball navigational boxes -[2018-02-13T00:41:39.544] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:41:39.555] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:41:39.603] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:39.605] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:41:39.678] [INFO] cheese - inserting 1000 documents. first: Khorram Darreh and last: Khvajeh (disambiguation) -[2018-02-13T00:41:39.708] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:41:40.039] [INFO] cheese - inserting 1000 documents. first: Archaeology of Afghanistan and last: Category:1546 books -[2018-02-13T00:41:40.062] [INFO] cheese - inserting 1000 documents. first: Aprosexia and last: Paranotothenia magellanica -[2018-02-13T00:41:40.128] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:41:40.139] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:41:40.159] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mcgillismusic.com and last: Carla Chin -[2018-02-13T00:41:40.197] [INFO] cheese - inserting 1000 documents. first: Tang Eram and last: Bernard Wood -[2018-02-13T00:41:40.211] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Men's 3000 metres steeplechase and last: K35EJ-D -[2018-02-13T00:41:40.218] [INFO] cheese - inserting 1000 documents. first: Jerry Wunsch and last: Tsada -[2018-02-13T00:41:40.288] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:41:40.290] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:40.310] [INFO] cheese - inserting 1000 documents. first: Rodi Milici and last: Hijo de Africa -[2018-02-13T00:41:40.344] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:40.339] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:41:40.431] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:41:40.605] [INFO] cheese - inserting 1000 documents. first: Loxia pytyopsittacus and last: Limosa fedoa -[2018-02-13T00:41:40.696] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:41:40.755] [INFO] cheese - inserting 1000 documents. first: Fall of the inner German border and last: RTL RADIO -[2018-02-13T00:41:40.830] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:40.850] [INFO] cheese - inserting 1000 documents. first: Suzanne Gerrior and last: Charles Grob -[2018-02-13T00:41:40.864] [INFO] cheese - inserting 1000 documents. first: Anas ibn Maalik and last: Portal:Triassic/Natural world articles/2 -[2018-02-13T00:41:40.919] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:41:40.916] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:40.964] [INFO] cheese - inserting 1000 documents. first: The Brute (wrestler) and last: Judd Cup -[2018-02-13T00:41:41.064] [INFO] cheese - inserting 1000 documents. first: Hijo De Africa and last: Charles L. Kelly -[2018-02-13T00:41:41.071] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:41:41.105] [INFO] cheese - inserting 1000 documents. first: Portal:Minnesota/Topics and last: Wake boarding -[2018-02-13T00:41:41.186] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:41:41.210] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:41:41.329] [INFO] cheese - inserting 1000 documents. first: Judæo-Romance languages and last: Julie Mayer -[2018-02-13T00:41:41.360] [INFO] cheese - inserting 1000 documents. first: Phalaena Bombyx lubricipeda and last: Harsidhi -[2018-02-13T00:41:41.412] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:41:41.432] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:41:41.448] [INFO] cheese - inserting 1000 documents. first: Attack on US Marines in Faylaka Island and last: Category:Privatisation in South Africa -[2018-02-13T00:41:41.490] [INFO] cheese - inserting 1000 documents. first: Uzbek League 2005 and last: Richard J. Gruel -[2018-02-13T00:41:41.509] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:41.583] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:41:41.755] [INFO] cheese - inserting 1000 documents. first: Adli Yakan Pasha and last: File:Major General Emilian Vasilevich Kozik.jpg -[2018-02-13T00:41:41.773] [INFO] cheese - inserting 1000 documents. first: Doubles tennis and last: Template:Location map India Uttarakhand -[2018-02-13T00:41:41.818] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:41:41.828] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:41:41.916] [INFO] cheese - inserting 1000 documents. first: Portal:Ordovician/Natural world articles/20 and last: Category:2014 Commonwealth Games events -[2018-02-13T00:41:41.950] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:41.961] [INFO] cheese - inserting 1000 documents. first: Twenty Hours and last: Claus Larsen -[2018-02-13T00:41:41.983] [INFO] cheese - inserting 1000 documents. first: EGSM900 and last: Henry McAdoo -[2018-02-13T00:41:42.022] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:41:42.055] [INFO] cheese - inserting 1000 documents. first: Speedwriter and last: Tres tristes tigres -[2018-02-13T00:41:42.075] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:41:42.118] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:41:42.288] [INFO] cheese - inserting 1000 documents. first: Pohlig–Hellman algorithm and last: Ehmetjan Qasim -[2018-02-13T00:41:42.306] [INFO] cheese - inserting 1000 documents. first: 1080 Brickell and last: Hyalurga cinda -[2018-02-13T00:41:42.323] [INFO] cheese - inserting 1000 documents. first: John Anthony Flynn and last: File:KMJM ClassicCountry1360 logo.png -[2018-02-13T00:41:42.349] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:41:42.388] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:41:42.392] [INFO] cheese - inserting 1000 documents. first: Benin – People's Republic of China relations and last: File:Suliman Elfortia.jpg -[2018-02-13T00:41:42.393] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:41:42.416] [INFO] cheese - inserting 1000 documents. first: North Cachar Hills District and last: Calhoun Township, Cheyenne County, Kansas -[2018-02-13T00:41:42.558] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:41:42.602] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:41:42.614] [INFO] cheese - inserting 1000 documents. first: 2000 Chevrolet Cup - Singles and last: Category:Pixies (band) members -[2018-02-13T00:41:42.672] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:42.845] [INFO] cheese - inserting 1000 documents. first: Susan Vandom and last: Derick Thomson -[2018-02-13T00:41:42.903] [INFO] cheese - inserting 1000 documents. first: HU Velorum and last: Category:1670 establishments in Maryland -[2018-02-13T00:41:42.935] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:41:42.951] [INFO] cheese - inserting 1000 documents. first: Tiverighotto language and last: Brian Van't Hul -[2018-02-13T00:41:42.975] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:41:42.990] [INFO] cheese - inserting 1000 documents. first: Lesotho – South Africa relations and last: Communist Party of the Workers of Tunisia -[2018-02-13T00:41:43.035] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:41:43.057] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:41:43.088] [INFO] cheese - inserting 1000 documents. first: Wattson and last: SIGCSE -[2018-02-13T00:41:43.235] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:43.257] [INFO] cheese - inserting 1000 documents. first: Cleveland Run Township, Cheyenne County, Kansas and last: Lilia Yefremova -[2018-02-13T00:41:43.290] [INFO] cheese - inserting 1000 documents. first: Bienvenues-Bâtard-Montrachet AOC and last: Wikipedia:Articles for deletion/AdU Network -[2018-02-13T00:41:43.362] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:41:43.392] [INFO] cheese - inserting 1000 documents. first: The Best FIFA Football Awards and last: Category:Sudanese women's rights activists -[2018-02-13T00:41:43.425] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:41:43.439] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:41:43.674] [INFO] cheese - inserting 1000 documents. first: Gibraltar general election, 1953 and last: File:Clarke University logo.png -[2018-02-13T00:41:43.708] [INFO] cheese - inserting 1000 documents. first: Thomas Larkin (ice hockey) and last: Petworth Gardens -[2018-02-13T00:41:43.729] [INFO] cheese - inserting 1000 documents. first: Danville Leafs and last: Qa'edat Al-Jihad -[2018-02-13T00:41:43.734] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:41:43.765] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:41:43.798] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T00:41:43.857] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Ras al-Khaimah and last: Valentino Moisés Fiévet Mennesson -[2018-02-13T00:41:43.875] [INFO] cheese - inserting 1000 documents. first: Robert I of Parma and last: Abdul Muttalib (name) -[2018-02-13T00:41:43.911] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:41:43.923] [INFO] cheese - inserting 1000 documents. first: Fenioux and last: Heads of state of Krajina -[2018-02-13T00:41:43.955] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:41:43.976] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:41:44.033] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Lactose intolerance and last: File:E. Tautz Logo.jpg -[2018-02-13T00:41:44.075] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:44.148] [INFO] cheese - inserting 1000 documents. first: Dream Lady and last: WDTI-DT -[2018-02-13T00:41:44.167] [INFO] cheese - inserting 1000 documents. first: Diocese of Pueblo and last: I Want You to Know (disambiguation) -[2018-02-13T00:41:44.188] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:41:44.249] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:41:44.285] [INFO] cheese - inserting 1000 documents. first: Barry M. Goldwater Scholarship and last: Patriarch Artemius of Alexandria -[2018-02-13T00:41:44.297] [INFO] cheese - inserting 1000 documents. first: Don Wai Floating Market and last: Simon Elkyngton -[2018-02-13T00:41:44.322] [INFO] cheese - inserting 1000 documents. first: Zhōngbù Juéqǐ Jìhuà and last: Wikipedia:WikiProject Spam/LinkReports/asaakiraxxx.com -[2018-02-13T00:41:44.328] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:41:44.346] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:41:44.358] [INFO] cheese - inserting 1000 documents. first: Heads of state of Malawi and last: Waiilatpu Mission -[2018-02-13T00:41:44.367] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:41:44.408] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:41:44.503] [INFO] cheese - inserting 1000 documents. first: Hoe (food) and last: Bill Haselman -[2018-02-13T00:41:44.590] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:41:44.642] [INFO] cheese - inserting 1000 documents. first: Verschoten & zoon and last: Friends Central High School -[2018-02-13T00:41:44.706] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:41:44.888] [INFO] cheese - inserting 1000 documents. first: Iberg (disambiguation) and last: File:Big Top Whit Dickey Cover.jpeg -[2018-02-13T00:41:44.925] [INFO] cheese - inserting 1000 documents. first: Category:1945 in England and last: Women's Rugby League World Cup -[2018-02-13T00:41:44.944] [INFO] cheese - inserting 1000 documents. first: USCS Morris and last: Category:Ventura County, California articles missing geocoordinate data -[2018-02-13T00:41:44.992] [INFO] cheese - inserting 1000 documents. first: Pharmacognosist and last: Feuguerolles -[2018-02-13T00:41:44.995] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:41:44.998] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:41:45.049] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:41:45.091] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:41:45.326] [INFO] cheese - inserting 1000 documents. first: Demirören, Mersin and last: File:Shotinthefrontier 1sht.jpg -[2018-02-13T00:41:45.338] [INFO] cheese - inserting 1000 documents. first: Nasrids kings and last: Demetrius Gallitzin -[2018-02-13T00:41:45.390] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:41:45.414] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:41:45.434] [INFO] cheese - inserting 1000 documents. first: Category:Lists of bus routes in Taiwan and last: Category:Dams in Botswana -[2018-02-13T00:41:45.471] [INFO] cheese - inserting 1000 documents. first: Category:Santa Barbara County, California articles missing geocoordinate data and last: Great Love Themes -[2018-02-13T00:41:45.526] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:41:45.557] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:41:45.598] [INFO] cheese - inserting 1000 documents. first: Albert Morehead and last: Military history of Russia -[2018-02-13T00:41:45.676] [INFO] cheese - inserting 1000 documents. first: Le Fidelaire and last: Rulers of Leqa Qellam -[2018-02-13T00:41:45.679] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:41:45.728] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:41:45.834] [INFO] cheese - inserting 1000 documents. first: Obo Natural Park and last: Eijkman (disambiguation) -[2018-02-13T00:41:45.882] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:45.963] [INFO] cheese - inserting 1000 documents. first: Template:Iran-road-stub and last: Miguel Linares Cólera -[2018-02-13T00:41:46.011] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:41:46.058] [INFO] cheese - inserting 1000 documents. first: JDRF and last: Somnology -[2018-02-13T00:41:46.074] [INFO] cheese - inserting 1000 documents. first: Pseudoradiarctia tanzanica and last: Man from Interpol -[2018-02-13T00:41:46.091] [INFO] cheese - inserting 1000 documents. first: Rulers of Luba and last: Langey -[2018-02-13T00:41:46.158] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:41:46.162] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:41:46.162] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:41:46.264] [INFO] cheese - inserting 1000 documents. first: Monodelphis brevicaudata and last: Cherpuk -[2018-02-13T00:41:46.336] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:41:46.502] [INFO] cheese - inserting 1000 documents. first: Quadrula aurea and last: Urea nitrogen -[2018-02-13T00:41:46.547] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:46.558] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Mithila articles and last: History of British foreign policy -[2018-02-13T00:41:46.580] [INFO] cheese - inserting 1000 documents. first: Miguel Linares Colera and last: Talgo 250 -[2018-02-13T00:41:46.615] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:41:46.636] [INFO] cheese - batch complete in: 2.308 secs -[2018-02-13T00:41:46.672] [INFO] cheese - inserting 1000 documents. first: List of Victoria Cross recipients of the cavalry and last: Shcherbyntsi -[2018-02-13T00:41:46.712] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:41:46.762] [INFO] cheese - inserting 1000 documents. first: Lanneray and last: Under armour -[2018-02-13T00:41:46.807] [INFO] cheese - inserting 1000 documents. first: Hungarian Scout Association and last: Robert Underwood -[2018-02-13T00:41:46.831] [INFO] cheese - inserting 1000 documents. first: Rhadamistus and last: William George Mount -[2018-02-13T00:41:46.834] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:41:46.884] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:41:46.900] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:41:46.922] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Washington County, North Carolina and last: 1984 BRIT Awards -[2018-02-13T00:41:47.014] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:41:47.057] [INFO] cheese - inserting 1000 documents. first: Manuel Pavón and last: Al-Ashraf Tuman bay II -[2018-02-13T00:41:47.125] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:41:47.280] [INFO] cheese - inserting 1000 documents. first: Toporivtsi and last: Sydney Metropolitan Women's Rugby League -[2018-02-13T00:41:47.281] [INFO] cheese - inserting 1000 documents. first: Kimi wo Shiranai Machi he and last: Draft:Nixa Zizu -[2018-02-13T00:41:47.338] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:41:47.332] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:41:47.472] [INFO] cheese - inserting 1000 documents. first: Chrome Division and last: Peace of Rueil -[2018-02-13T00:41:47.530] [INFO] cheese - inserting 1000 documents. first: 1985 BRIT Awards and last: Category:The Wicked Years -[2018-02-13T00:41:47.560] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:41:47.584] [INFO] cheese - inserting 1000 documents. first: Box pews and last: File:VRansford.jpg -[2018-02-13T00:41:47.611] [INFO] cheese - inserting 1000 documents. first: Category:Railway locomotives introduced in 1959 and last: 2009-10 West Virginia Mountaineers men's basketball team -[2018-02-13T00:41:47.646] [INFO] cheese - inserting 1000 documents. first: Diggin' in the Crates Crew and last: Zayed Khan -[2018-02-13T00:41:47.664] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:41:47.730] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:41:47.747] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:47.776] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:47.865] [INFO] cheese - inserting 1000 documents. first: Red Light (Keke Wyatt song) and last: Template:AFC sponsors -[2018-02-13T00:41:47.920] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:41:47.931] [INFO] cheese - inserting 1000 documents. first: Manoogian (disambiguation) and last: Category:Cabinets disestablished in 1841 -[2018-02-13T00:41:47.993] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:41:48.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Trampoline platysmaplasty and last: Dennis E. Fitch -[2018-02-13T00:41:48.194] [INFO] cheese - inserting 1000 documents. first: United Kingdom budget 2007-8 and last: File:Dimal.jpg -[2018-02-13T00:41:48.195] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:41:48.227] [INFO] cheese - inserting 1000 documents. first: Francesc Joan Dominic Aragó and last: FZ-50 -[2018-02-13T00:41:48.274] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:41:48.291] [INFO] cheese - inserting 1000 documents. first: Anglican Roman Catholic International Commission and last: Category:Missile boats of the Croatian Navy -[2018-02-13T00:41:48.320] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:41:48.324] [INFO] cheese - inserting 1000 documents. first: Category:Liga Perdana (1994–97) and last: Category:Suspected Wikipedia sockpuppets of Deepakarorajma -[2018-02-13T00:41:48.356] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:41:48.371] [INFO] cheese - inserting 1000 documents. first: Valentin Konnonen and last: North American Mitchell Mk.III (TB-25J) -[2018-02-13T00:41:48.398] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:41:48.445] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:41:48.515] [INFO] cheese - inserting 1000 documents. first: Italian Flag and last: Western movie -[2018-02-13T00:41:48.596] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:41:48.730] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Scotland articles and last: Destruction of the Endless -[2018-02-13T00:41:48.799] [INFO] cheese - inserting 1000 documents. first: Queen Mary's Psalter and last: Wikipedia:Articles for deletion/Faux Pas (webcomic) -[2018-02-13T00:41:48.825] [INFO] cheese - inserting 1000 documents. first: Category:Active missile boats of Croatia and last: Portal:History of science/Selected anniversaries/November 14 -[2018-02-13T00:41:48.826] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:41:48.861] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:41:48.891] [INFO] cheese - inserting 1000 documents. first: 1995 Montréal Expos season and last: M/V Sealth -[2018-02-13T00:41:48.913] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:41:48.984] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:41:49.011] [INFO] cheese - inserting 1000 documents. first: Category:Heinrich von Kleist and last: Don't Let It Go to Your Head (disambiguation) -[2018-02-13T00:41:49.174] [INFO] cheese - inserting 1000 documents. first: Draft:Saad Z Hossain and last: Draft:Gas South -[2018-02-13T00:41:49.182] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:41:49.292] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:41:49.489] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Novels/Members and last: Category:1969 in England -[2018-02-13T00:41:49.510] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Scotland County, North Carolina and last: (187757) 1996 UH4 -[2018-02-13T00:41:49.536] [INFO] cheese - inserting 1000 documents. first: Portal:History of science/Selected anniversaries/November 15 and last: Category:Ships built in New Brunswick -[2018-02-13T00:41:49.557] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:41:49.561] [INFO] cheese - inserting 1000 documents. first: Poimandres and last: James M. Mead -[2018-02-13T00:41:49.580] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:41:49.604] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:49.651] [INFO] cheese - inserting 1000 documents. first: Category:Military units and formations established in the 1980s and last: Peter Wyche (diplomat) -[2018-02-13T00:41:49.680] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T00:41:49.699] [INFO] cheese - inserting 1000 documents. first: Category:Delaware Dynasty and last: Eastern Blue Sapphire -[2018-02-13T00:41:49.704] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:41:49.753] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:41:49.814] [INFO] cheese - inserting 1000 documents. first: K40GH-D and last: Dibidogs -[2018-02-13T00:41:49.861] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:49.961] [INFO] cheese - inserting 1000 documents. first: BRES and last: ACHIT -[2018-02-13T00:41:49.996] [INFO] cheese - inserting 1000 documents. first: Julie Paradise and last: Category:Judge Dredd storylines -[2018-02-13T00:41:49.996] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:41:50.028] [INFO] cheese - inserting 1000 documents. first: Category:French multi-instrumentalists and last: Template:Lesotho-boxing-bio-stub -[2018-02-13T00:41:50.044] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:41:50.071] [INFO] cheese - inserting 1000 documents. first: Roman Catholicism in the Republic of the Congo and last: Angels (Avenged Sevenfold song) -[2018-02-13T00:41:50.096] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:41:50.114] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:41:50.137] [INFO] cheese - inserting 1000 documents. first: BAFTA Film Awards 2007 and last: Livability ranking -[2018-02-13T00:41:50.185] [INFO] cheese - inserting 1000 documents. first: National Skin Centre (Singapore) and last: Stony Plain -[2018-02-13T00:41:50.205] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:41:50.290] [INFO] cheese - inserting 1000 documents. first: Gynnidomorpha fraterna and last: Christian Delpech -[2018-02-13T00:41:50.318] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:41:50.368] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:41:50.432] [INFO] cheese - inserting 1000 documents. first: Category:1970 debut albums and last: (257559) 1998 TL19 -[2018-02-13T00:41:50.498] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:41:50.512] [INFO] cheese - inserting 1000 documents. first: Simulation (Avenged Sevenfold song) and last: Category:Sleater-Kinney members -[2018-02-13T00:41:50.587] [INFO] cheese - inserting 1000 documents. first: Leaver and last: African Group -[2018-02-13T00:41:50.591] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:41:50.667] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:41:50.710] [INFO] cheese - inserting 1000 documents. first: George Antrobus and last: Wikipedia:Featured article candidates/John W. Johnston -[2018-02-13T00:41:50.779] [INFO] cheese - inserting 1000 documents. first: Johnstown, Townland and last: Kang Nung-su -[2018-02-13T00:41:50.783] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:41:50.857] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:41:51.016] [INFO] cheese - inserting 1000 documents. first: Template:David Mamet and last: Phthalo -[2018-02-13T00:41:51.073] [INFO] cheese - inserting 1000 documents. first: 1800 US Presidential election and last: Friedrich von Sohr -[2018-02-13T00:41:51.162] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:41:51.165] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:41:51.186] [INFO] cheese - inserting 1000 documents. first: Love and Other Crimes (EP) and last: Dream Coder (2017 TV series) -[2018-02-13T00:41:51.222] [INFO] cheese - inserting 1000 documents. first: Jenni Mikkonen and last: Douce violence (film) -[2018-02-13T00:41:51.234] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:51.324] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:41:51.433] [INFO] cheese - inserting 1000 documents. first: Mark Ward (footballer) and last: Kang Woo-suk productions -[2018-02-13T00:41:51.444] [INFO] cheese - inserting 1000 documents. first: Waikato rugby league team and last: Alan Goodall -[2018-02-13T00:41:51.457] [INFO] cheese - inserting 1000 documents. first: Category:Ming dynasty calligraphers and last: Category:Presidents of the Ladies' Alpine Club -[2018-02-13T00:41:51.515] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:41:51.513] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:41:51.590] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T00:41:51.712] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Ruthven (born 1783) and last: One Side of The Water -[2018-02-13T00:41:51.763] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:41:51.801] [INFO] cheese - inserting 1000 documents. first: Jaguar XJ (X300) and last: Albert Schagidullin -[2018-02-13T00:41:51.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Japanese Fascism:the bases to conduct at Japanese Nationalism and last: DYSEAC -[2018-02-13T00:41:51.853] [INFO] cheese - inserting 1000 documents. first: List of Chicago Bulls (AFL) players and last: Sengoku Raiden Championship -[2018-02-13T00:41:51.890] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T00:41:51.918] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:41:51.946] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:41:52.109] [INFO] cheese - inserting 1000 documents. first: Hesquiaht and last: U.S. Route 501A (Roxboro, North Carolina) -[2018-02-13T00:41:52.209] [INFO] cheese - inserting 1000 documents. first: Sam Khok District and last: 1927 Model A -[2018-02-13T00:41:52.215] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:41:52.308] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:41:52.338] [INFO] cheese - inserting 1000 documents. first: One Side Of the Water and last: DJ Pone -[2018-02-13T00:41:52.407] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:41:52.579] [INFO] cheese - inserting 1000 documents. first: CD4+ cells and last: Gemignani -[2018-02-13T00:41:52.613] [INFO] cheese - inserting 1000 documents. first: Eddie King (musician) and last: The Dimensions of Time -[2018-02-13T00:41:52.693] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T00:41:52.711] [INFO] cheese - inserting 1000 documents. first: William John Neeson, OBE and last: Yenisey Governorate -[2018-02-13T00:41:52.751] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:41:52.808] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:41:52.812] [INFO] cheese - inserting 1000 documents. first: Mola Di Bari and last: Electoral division of Daly -[2018-02-13T00:41:52.880] [INFO] cheese - inserting 1000 documents. first: Sue Boldra and last: Wikipedia:Reference desk/Archives/Language/2014 March 19 -[2018-02-13T00:41:52.905] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T00:41:52.946] [INFO] cheese - inserting 1000 documents. first: Hungarian national team and last: Beatrice Letters -[2018-02-13T00:41:52.958] [INFO] cheese - inserting 1000 documents. first: Perpetator-by-means and last: Category:Museums in Johor -[2018-02-13T00:41:52.974] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:41:53.063] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:41:53.074] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:41:53.370] [INFO] cheese - inserting 1000 documents. first: File:Containerartny.JPG and last: Markus Steinhöfer -[2018-02-13T00:41:53.371] [INFO] cheese - inserting 1000 documents. first: Marquard II von Berg and last: Germanic Myth -[2018-02-13T00:41:53.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Control (Janet Jackson album)/archive1 and last: Wikipedia:WikiProject Spam/LinkReports/nissanrogue.org -[2018-02-13T00:41:53.449] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:41:53.465] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:41:53.504] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Faith Leon (2nd nomination) and last: Category:Geography of Bragança District -[2018-02-13T00:41:53.551] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:41:53.569] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:41:53.642] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/72nd Street (Second Avenue Subway) and last: Sails of dawn -[2018-02-13T00:41:53.725] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:41:53.744] [INFO] cheese - inserting 1000 documents. first: My Sister Rose and last: Sandakphu -[2018-02-13T00:41:53.779] [INFO] cheese - inserting 1000 documents. first: P-6 Seamaster and last: Morrison's -[2018-02-13T00:41:53.829] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:41:53.896] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T00:41:53.996] [INFO] cheese - inserting 1000 documents. first: Daniel P. Hull (landscape architect) and last: Matt Garnaut -[2018-02-13T00:41:54.030] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/South Africa and last: Yemen Jews -[2018-02-13T00:41:54.075] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:41:54.091] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:41:54.168] [INFO] cheese - inserting 1000 documents. first: University Institute of Engineering and Technology, Calicut and last: File:Thicker Than Water OST.jpg -[2018-02-13T00:41:54.236] [INFO] cheese - inserting 1000 documents. first: Hoeflea and last: Avarenc -[2018-02-13T00:41:54.259] [INFO] cheese - inserting 1000 documents. first: Roman Catholic art and last: Keshin (film) -[2018-02-13T00:41:54.284] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:41:54.298] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:41:54.322] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:41:54.366] [INFO] cheese - inserting 1000 documents. first: Hail to old OSU and last: Michael Cherney -[2018-02-13T00:41:54.456] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:41:54.540] [INFO] cheese - inserting 1000 documents. first: Benjamin Perley Poore and last: May 29 (Orthodox Liturgics) -[2018-02-13T00:41:54.683] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:41:54.688] [INFO] cheese - inserting 1000 documents. first: Template:Infobox rebreather and last: Academy of Theatre in Warsaw -[2018-02-13T00:41:54.752] [INFO] cheese - inserting 1000 documents. first: Sergio Aguayo and last: File:Liberian Girl Guides Association.png -[2018-02-13T00:41:54.754] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:41:54.825] [INFO] cheese - inserting 1000 documents. first: File:Kicking Out Shoshana Poster.jpg and last: Star Wars sequel -[2018-02-13T00:41:54.828] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Spot the Diff and last: Ice hockey at the Asian Winter Games -[2018-02-13T00:41:54.836] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:41:54.880] [INFO] cheese - inserting 1000 documents. first: Avarene and last: Azoyu Me'phaa language -[2018-02-13T00:41:54.933] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:41:54.944] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:41:55.019] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:41:55.196] [INFO] cheese - inserting 1000 documents. first: Hitchcock, SD and last: Lake View Terrace, Los Angeles, CA -[2018-02-13T00:41:55.230] [INFO] cheese - inserting 1000 documents. first: Survival of the fittest (disambiguation) and last: File:ManasquanInlet.jpg -[2018-02-13T00:41:55.256] [INFO] cheese - inserting 1000 documents. first: Coal in Europe and last: Pfeffingen Castle -[2018-02-13T00:41:55.266] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:41:55.312] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:41:55.351] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:41:55.418] [INFO] cheese - inserting 1000 documents. first: Kryptops and last: Multiracial British -[2018-02-13T00:41:55.439] [INFO] cheese - inserting 1000 documents. first: Overberg skolly and last: Wikipedia:Articles for deletion/Jovan Radomir -[2018-02-13T00:41:55.482] [INFO] cheese - inserting 1000 documents. first: Asheninka Pajonal language and last: Template:Indian Television Academy Award Best Lead Actress -[2018-02-13T00:41:55.492] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition Qods League SM and last: EX SEKTOR GAZA -[2018-02-13T00:41:55.494] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:41:55.505] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:41:55.535] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:41:55.563] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:41:55.713] [INFO] cheese - inserting 1000 documents. first: Lake Waccamaw, NC and last: Parliamentary Party of Kosovo -[2018-02-13T00:41:55.760] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:41:55.772] [INFO] cheese - inserting 1000 documents. first: Bischofstein Castle (Switzerland) and last: Tennis at the 2011 Southeast Asian Games – Mixed Doubles -[2018-02-13T00:41:55.825] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:41:55.839] [INFO] cheese - inserting 1000 documents. first: London-Zürich Agreements and last: Pictures on My Wall -[2018-02-13T00:41:55.882] [INFO] cheese - inserting 1000 documents. first: Category:Wings of the Hellenic Air Force and last: The doon school film -[2018-02-13T00:41:55.888] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:55.914] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:41:55.963] [INFO] cheese - inserting 1000 documents. first: Book:Nitrogen group and last: Category:Transport companies disestablished in 1936 -[2018-02-13T00:41:55.974] [INFO] cheese - inserting 1000 documents. first: Template:SAP Open tournaments (Open Era) and last: File:WCDV logo.png -[2018-02-13T00:41:56.020] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:41:56.049] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:41:56.055] [INFO] cheese - inserting 1000 documents. first: PZL-Mielec Lim-5 and last: Maria Muchbukta -[2018-02-13T00:41:56.131] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:41:56.195] [INFO] cheese - inserting 1000 documents. first: People's Movement of Kosovo and last: Double-wide trailer -[2018-02-13T00:41:56.207] [INFO] cheese - inserting 1000 documents. first: Device Control Two and last: File:Anas al Kandari -- Faylaka Island ambusher.jpg -[2018-02-13T00:41:56.258] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:41:56.265] [INFO] cheese - inserting 1000 documents. first: Template:Maccabiah infobox and last: Lago Tipiccocha -[2018-02-13T00:41:56.273] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:41:56.317] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:41:56.338] [INFO] cheese - inserting 1000 documents. first: K. 133 and last: Sky Saw -[2018-02-13T00:41:56.398] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:41:56.437] [INFO] cheese - inserting 1000 documents. first: 2016 PGA EuroPro Tour and last: Template:Taxonomy/Sagmatias -[2018-02-13T00:41:56.481] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:41:56.484] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Marvin Gaye and last: File:DiskovolosV.png -[2018-02-13T00:41:56.557] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:41:56.825] [INFO] cheese - inserting 1000 documents. first: Minneapolis, Minnesota, US and last: Category:Naval ships of South Carolina -[2018-02-13T00:41:56.865] [INFO] cheese - inserting 1000 documents. first: SoSo Def Records and last: Closed syllable -[2018-02-13T00:41:56.895] [INFO] cheese - inserting 1000 documents. first: Tipiqocha and last: Nanostructured Materials -[2018-02-13T00:41:56.942] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:41:56.964] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:41:57.009] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:41:57.110] [INFO] cheese - inserting 1000 documents. first: Monique Pietri and last: Ernst Gottlob Orthmann -[2018-02-13T00:41:57.122] [INFO] cheese - inserting 1000 documents. first: Tranato and last: File:Jp49820030410bDSC 0037.jpg -[2018-02-13T00:41:57.198] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:41:57.214] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:41:57.338] [INFO] cheese - inserting 1000 documents. first: Florida State League rosters and last: Category:Companies based in Vernon Hills, Illinois -[2018-02-13T00:41:57.492] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:41:57.547] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NCVIET and last: Gregory John Crafter -[2018-02-13T00:41:57.549] [INFO] cheese - inserting 1000 documents. first: Category:Ships of South Carolina and last: Argyroploce sphaerocopa -[2018-02-13T00:41:57.576] [INFO] cheese - inserting 1000 documents. first: Archibald Frederick Campbell, Marquess of Lorne and last: Ogdensburg, NJ -[2018-02-13T00:41:57.602] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:41:57.620] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:41:57.639] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:41:57.685] [INFO] cheese - inserting 1000 documents. first: Kuraudo Sutoraifu and last: Koksilah ridge -[2018-02-13T00:41:57.774] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:41:57.818] [INFO] cheese - inserting 1000 documents. first: File:LeahLabelleLolitaCover.jpg and last: Dragon (spacecraft) -[2018-02-13T00:41:57.883] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:41:57.997] [INFO] cheese - inserting 1000 documents. first: Anatoly Polyanski and last: File:RevolutionX arcadeflyer.png -[2018-02-13T00:41:58.021] [INFO] cheese - inserting 1000 documents. first: Template:North Shore article poster and last: Category:Kalinga Prize recipients -[2018-02-13T00:41:58.028] [INFO] cheese - inserting 1000 documents. first: Frost & Sullivan and last: Category:American nonprofit executives -[2018-02-13T00:41:58.075] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:41:58.101] [INFO] cheese - inserting 1000 documents. first: Korea Ferrous Metals Export & Import and last: Wikipedia:Articles for deletion/Virtual University -[2018-02-13T00:41:58.102] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:41:58.118] [INFO] cheese - inserting 1000 documents. first: Gregory Crafter and last: Wikipedia:Articles for deletion/Independent Bosnia -[2018-02-13T00:41:58.115] [INFO] cheese - batch complete in: 1.984 secs -[2018-02-13T00:41:58.175] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:41:58.184] [INFO] cheese - inserting 1000 documents. first: Dealu Bisericii and last: San Ildefonso Peninsula -[2018-02-13T00:41:58.201] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:41:58.232] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:41:58.335] [INFO] cheese - inserting 1000 documents. first: Stade du Roudourou and last: GEC Core Operating System -[2018-02-13T00:41:58.372] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:41:58.556] [INFO] cheese - inserting 1000 documents. first: Micronyctemera and last: English Patent County Court -[2018-02-13T00:41:58.600] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:41:58.647] [INFO] cheese - inserting 1000 documents. first: Category:Horse races in Turkey and last: File:Anna Karenina FilmPoster.jpeg -[2018-02-13T00:41:58.668] [INFO] cheese - inserting 1000 documents. first: Cheong-Wa Dae and last: Wikipedia:Articles for deletion/Anil Dash -[2018-02-13T00:41:58.677] [INFO] cheese - inserting 1000 documents. first: Centennial Tower (Singapore) and last: Beaufort, Haute-Garonne -[2018-02-13T00:41:58.738] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:41:58.740] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:41:58.747] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:41:58.774] [INFO] cheese - inserting 1000 documents. first: Negro River (Argentina) and last: Uchturpan County -[2018-02-13T00:41:58.872] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:41:58.902] [INFO] cheese - inserting 1000 documents. first: Template:Lucky Stars franchise and last: Celebrity Bromance -[2018-02-13T00:41:58.963] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:41:59.064] [INFO] cheese - inserting 1000 documents. first: Palestinian exodus from Kuwait (Gulf War) and last: The Australian and New Zealand Association of Bellringers -[2018-02-13T00:41:59.106] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:41:59.123] [INFO] cheese - inserting 1000 documents. first: Special Operations Command and last: James W. Alexander, II -[2018-02-13T00:41:59.192] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:41:59.297] [INFO] cheese - inserting 1000 documents. first: Category:State labor commissioners in the United States and last: David Grellier -[2018-02-13T00:41:59.347] [INFO] cheese - inserting 1000 documents. first: Sart (album) and last: File:Lost Continent 1968.jpg -[2018-02-13T00:41:59.409] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:41:59.440] [INFO] cheese - inserting 1000 documents. first: Beauteville and last: KBRX (AM) -[2018-02-13T00:41:59.464] [INFO] cheese - batch complete in: 1.349 secs -[2018-02-13T00:41:59.483] [INFO] cheese - inserting 1000 documents. first: Treasure hunt (disambiguation) and last: Category:The Rascals albums -[2018-02-13T00:41:59.493] [INFO] cheese - inserting 1000 documents. first: Snowden Branch and last: Mae Martin -[2018-02-13T00:41:59.576] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:41:59.603] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:41:59.626] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:41:59.870] [INFO] cheese - inserting 1000 documents. first: South Park City, CO and last: Union Township, Hunterdon County, NJ -[2018-02-13T00:41:59.910] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:41:59.966] [INFO] cheese - inserting 1000 documents. first: File:Katharine Wright (1896).jpg and last: Wikipedia:Bots/Requests for approval/Helpful Pixie Bot 45 -[2018-02-13T00:41:59.997] [INFO] cheese - inserting 1000 documents. first: Boxing at the 2009 Asian Indoor Games and last: The Tip of the Iceberg -[2018-02-13T00:42:00.004] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/227 (TV series) and last: Antoine Boësset -[2018-02-13T00:42:00.005] [INFO] cheese - inserting 1000 documents. first: 2014 Critérium International and last: Mega Limited -[2018-02-13T00:42:00.032] [INFO] cheese - inserting 1000 documents. first: Orphnaeus brevilabiatus and last: Category:OS X web browsers -[2018-02-13T00:42:00.036] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:42:00.052] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:42:00.065] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:42:00.079] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:42:00.136] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T00:42:00.210] [INFO] cheese - inserting 1000 documents. first: List of communes of the Province of Matera and last: Azeb Mesfin -[2018-02-13T00:42:00.253] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:42:00.448] [INFO] cheese - inserting 1000 documents. first: Fernand Stiévenart and last: Category:Birds of Luzon -[2018-02-13T00:42:00.460] [INFO] cheese - inserting 1000 documents. first: Ellis Lloyd (MP) and last: Yeşilyurt, Taşova -[2018-02-13T00:42:00.465] [INFO] cheese - inserting 1000 documents. first: Plagne, Haute-Garonne and last: Kaheiheimaile -[2018-02-13T00:42:00.470] [INFO] cheese - inserting 1000 documents. first: Children's art and last: Wærns -[2018-02-13T00:42:00.482] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:42:00.488] [INFO] cheese - inserting 1000 documents. first: A World to Win/ (1935 Novel) and last: Where the Sidewalk Ends (song) -[2018-02-13T00:42:00.493] [INFO] cheese - inserting 1000 documents. first: Gonbad-e Qabus County and last: Category:Parishes of Boticas -[2018-02-13T00:42:00.503] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:42:00.522] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:42:00.503] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:42:00.554] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:42:00.612] [INFO] cheese - inserting 1000 documents. first: Crescentius Richard and last: File:View -1.jpg -[2018-02-13T00:42:00.624] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:00.668] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:42:00.793] [INFO] cheese - inserting 1000 documents. first: 2016–17 Nemzeti Bajnokság I/A (women's basketball) and last: IrAn-140 -[2018-02-13T00:42:00.842] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:42:00.908] [INFO] cheese - inserting 1000 documents. first: File:AOIICrest.gif and last: Robert Morris Morgenthau -[2018-02-13T00:42:00.930] [INFO] cheese - inserting 1000 documents. first: Allen Horn and last: Template:After/doc -[2018-02-13T00:42:00.953] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ecg.clan.su and last: Liévans -[2018-02-13T00:42:01.009] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:42:01.109] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:01.112] [INFO] cheese - inserting 1000 documents. first: Allium azutavicum and last: Ook Ook -[2018-02-13T00:42:01.122] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:42:01.201] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:42:01.340] [INFO] cheese - inserting 1000 documents. first: Cristopher Lee and last: Beyond the Beltway -[2018-02-13T00:42:01.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramdenee and last: Wetzel County, WV -[2018-02-13T00:42:01.464] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:42:01.573] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Kirengellidae and last: TOTU -[2018-02-13T00:42:01.573] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T00:42:01.663] [INFO] cheese - inserting 1000 documents. first: The Party (1958 play) and last: Katara (disambiguation) -[2018-02-13T00:42:01.688] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:42:01.693] [INFO] cheese - inserting 1000 documents. first: Linexert and last: Giuseppe Baldo -[2018-02-13T00:42:01.728] [INFO] cheese - inserting 1000 documents. first: Babu (film) and last: Mauro Galindo -[2018-02-13T00:42:01.734] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:42:01.751] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:42:01.754] [INFO] cheese - inserting 1000 documents. first: Ayia Triada and last: File:Songs For Justice cover.jpg -[2018-02-13T00:42:01.830] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:42:01.847] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:42:02.151] [INFO] cheese - inserting 1000 documents. first: Bihor (region) and last: Broadleaf Plantain -[2018-02-13T00:42:02.215] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:02.252] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/Peel Castle at night and last: Template:Political parties in the Central African Republic -[2018-02-13T00:42:02.256] [INFO] cheese - inserting 1000 documents. first: Golden Bull of Charles IV and last: Indie electronic -[2018-02-13T00:42:02.282] [INFO] cheese - inserting 1000 documents. first: M-99 and last: Colmier-le-Bas -[2018-02-13T00:42:02.297] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:42:02.302] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:42:02.306] [INFO] cheese - inserting 1000 documents. first: Kathputli Colony and last: Wikipedia:Articles for deletion/Ubisoft Chengdu -[2018-02-13T00:42:02.314] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:42:02.348] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Radiša and last: Quảng Bình Gifted High School -[2018-02-13T00:42:02.366] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:42:02.406] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:42:02.458] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Illinois, 1980 and last: 2011 Chilean telethon -[2018-02-13T00:42:02.518] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:42:02.700] [INFO] cheese - inserting 1000 documents. first: Colmier-le-Haut and last: Hms Victory -[2018-02-13T00:42:02.738] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:42:02.791] [INFO] cheese - inserting 1000 documents. first: Taufiq Qureshi and last: Lion of Belfort (Montreal) -[2018-02-13T00:42:02.797] [INFO] cheese - inserting 1000 documents. first: Fagetu and last: David Smith (footballer, born 1970) -[2018-02-13T00:42:02.858] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:42:02.862] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:42:02.876] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/requests/instructions2 and last: Piasecki XH-21 -[2018-02-13T00:42:02.938] [INFO] cheese - inserting 1000 documents. first: Humberto Alvarez-Machain and last: Boyle Family -[2018-02-13T00:42:02.940] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:42:02.949] [INFO] cheese - inserting 1000 documents. first: File:Everything Sad Is Coming Untrue.jpg and last: Wildebeest (ride) -[2018-02-13T00:42:03.013] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:42:03.015] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:42:03.163] [INFO] cheese - inserting 1000 documents. first: Up Close and Personal (Talk show) and last: Draft:Matwai Baranov -[2018-02-13T00:42:03.177] [INFO] cheese - inserting 1000 documents. first: Menthonnex-sous-Clermont and last: Monarch Broadcasting -[2018-02-13T00:42:03.236] [INFO] cheese - inserting 1000 documents. first: Category:Tennessee Volunteers football broadcasters and last: The Twig trilogy -[2018-02-13T00:42:03.240] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:42:03.309] [INFO] cheese - inserting 1000 documents. first: Piasecki YH-21 and last: Philippine-American relations -[2018-02-13T00:42:03.310] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:42:03.344] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:03.382] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:42:03.567] [INFO] cheese - inserting 1000 documents. first: Portal:Karnataka/Selected picture and last: Frank Reade and his Electric Man -[2018-02-13T00:42:03.664] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:42:03.707] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in McCormick County, South Carolina and last: Lazyboy (band) -[2018-02-13T00:42:03.802] [INFO] cheese - inserting 1000 documents. first: Saxon (disambiguation) and last: Diane Diamond -[2018-02-13T00:42:03.802] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:03.882] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:42:03.923] [INFO] cheese - inserting 1000 documents. first: Bush Mountain and last: Category:Buildings and structures in Manchester Parish -[2018-02-13T00:42:03.926] [INFO] cheese - inserting 1000 documents. first: Espèche and last: Braye-sur-Maulne -[2018-02-13T00:42:03.961] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:03.981] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:42:04.021] [INFO] cheese - inserting 1000 documents. first: Jade World and last: The Legend of Zelda (game watch) -[2018-02-13T00:42:04.079] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:42:04.096] [INFO] cheese - inserting 1000 documents. first: Template:BAP/doc and last: Sieges of Ceuta -[2018-02-13T00:42:04.210] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:42:04.235] [INFO] cheese - inserting 1000 documents. first: Lumbar veins and last: State Route 137 (Virginia pre-1933) -[2018-02-13T00:42:04.311] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:42:04.383] [INFO] cheese - inserting 1000 documents. first: Musee Aeronautique Presqu'ile Cote d'Amour and last: Little John's Farm -[2018-02-13T00:42:04.426] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:42:04.444] [INFO] cheese - inserting 1000 documents. first: Michael Hedges (sound engineer) and last: Gary A. Rizzo -[2018-02-13T00:42:04.506] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:04.522] [INFO] cheese - inserting 1000 documents. first: Paulet St John, 7th Baron St John of Bletso and last: United Kingdom Drought of 1955 -[2018-02-13T00:42:04.543] [INFO] cheese - inserting 1000 documents. first: Ministry of the Russian Federation for Civil Defense, Emergencies and the Elimination of the Consequences of Natural Disasters and last: Herb Magidson -[2018-02-13T00:42:04.569] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:42:04.587] [INFO] cheese - inserting 1000 documents. first: SHOX and last: Recologne-lès-Rioz -[2018-02-13T00:42:04.616] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:42:04.646] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:42:04.740] [INFO] cheese - inserting 1000 documents. first: Route 137 (Virginia pre-1933) and last: Boseong-gun -[2018-02-13T00:42:04.759] [INFO] cheese - inserting 1000 documents. first: Watsonidia pardea and last: Eighty Years' War (1566–1609) -[2018-02-13T00:42:04.787] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:42:04.797] [INFO] cheese - inserting 1000 documents. first: Butler Creek (Elk River) and last: Richard Walsh (English politician) -[2018-02-13T00:42:04.812] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:42:04.884] [INFO] cheese - inserting 1000 documents. first: Template:RCTS-LocosGWR-2/doc and last: Category:Beypazarı, Ankara -[2018-02-13T00:42:04.885] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:42:04.927] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:42:04.960] [INFO] cheese - inserting 1000 documents. first: SoaML and last: Wu Weichao -[2018-02-13T00:42:05.003] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:42:05.043] [INFO] cheese - inserting 1000 documents. first: Template:Vermonter and last: James T. "Joker" Davis -[2018-02-13T00:42:05.087] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:42:05.150] [INFO] cheese - inserting 1000 documents. first: Citicar/CommutaCar/Comuta-Van and last: Gdansk Shipyards -[2018-02-13T00:42:05.196] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:42:05.238] [INFO] cheese - inserting 1000 documents. first: Template:Poland men volleyball team 2006 FIVB World Championship and last: Allium thessalum -[2018-02-13T00:42:05.275] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:42:05.363] [INFO] cheese - inserting 1000 documents. first: File:Everyave.jpg and last: Wikipedia:WikiProject Spam/LinkReports/fsi-viewer.com -[2018-02-13T00:42:05.407] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:42:05.414] [INFO] cheese - inserting 1000 documents. first: Robert Knollys (politician died 1659) and last: Wikipedia:Reference desk/Archives/Humanities/2011 November 18 -[2018-02-13T00:42:05.424] [INFO] cheese - inserting 1000 documents. first: Arthur Michael Samuel, 1st Baron Mancroft and last: The Natural History of Selborne -[2018-02-13T00:42:05.475] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:42:05.530] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:42:05.549] [INFO] cheese - inserting 1000 documents. first: Cociovaliștea and last: Kostas Themistokleous -[2018-02-13T00:42:05.556] [INFO] cheese - inserting 1000 documents. first: Cellulosimicrobium cellulans and last: Zhu Tianxin -[2018-02-13T00:42:05.633] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:05.645] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:42:05.894] [INFO] cheese - inserting 1000 documents. first: Category:Bridges in Gloucestershire and last: Template:Republican Party (United States)/meta/shortname -[2018-02-13T00:42:05.948] [INFO] cheese - inserting 1000 documents. first: Porrum amethystinum and last: Kang Seong-Jung -[2018-02-13T00:42:05.980] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:42:06.026] [INFO] cheese - inserting 1000 documents. first: File:Biblical judges.png and last: Eric Staller -[2018-02-13T00:42:06.028] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:06.108] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:42:06.175] [INFO] cheese - inserting 1000 documents. first: Fondremand and last: Wikipedia:Peer review/History of Portugal (1578-1777) -[2018-02-13T00:42:06.248] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:42:06.265] [INFO] cheese - inserting 1000 documents. first: Wates Building Group and last: File:Vinegar Joe.jpg -[2018-02-13T00:42:06.316] [INFO] cheese - inserting 1000 documents. first: Bimm and last: Sk 60C -[2018-02-13T00:42:06.346] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:42:06.422] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:42:06.566] [INFO] cheese - inserting 1000 documents. first: Category:Contemporary Christian articles by quality and last: Oops! (Super Junior song) -[2018-02-13T00:42:06.640] [INFO] cheese - inserting 1000 documents. first: File:John Pybus.jpg and last: Cuddington Meadows -[2018-02-13T00:42:06.641] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T00:42:06.701] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:42:06.743] [INFO] cheese - inserting 1000 documents. first: V Vinod Kumar and last: Romanian Orthodox Archdiocese of America and Canada -[2018-02-13T00:42:06.770] [INFO] cheese - inserting 1000 documents. first: 1951 Prime Minister's Resignation Honours and last: Wikipedia:Peer review/Jang Yeong-sil -[2018-02-13T00:42:06.791] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:42:06.820] [INFO] cheese - inserting 1000 documents. first: Great Eastern (radio show) and last: Valerate -[2018-02-13T00:42:06.841] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:42:06.931] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:42:06.956] [INFO] cheese - inserting 1000 documents. first: ROCS Hsiang Yang (DD-1) and last: Parti (surname) -[2018-02-13T00:42:07.021] [INFO] cheese - inserting 1000 documents. first: Jul i Betlehem and last: Heartattack -[2018-02-13T00:42:07.034] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T00:42:07.119] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:42:07.217] [INFO] cheese - inserting 1000 documents. first: Template:Japanese Animation Creators Association and last: Category:Spy films by genre -[2018-02-13T00:42:07.266] [INFO] cheese - inserting 1000 documents. first: Lateral hiring and last: OPCS-4.6 -[2018-02-13T00:42:07.306] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:07.367] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:42:07.406] [INFO] cheese - inserting 1000 documents. first: Methylnandrolone and last: Category:1047 in Asia -[2018-02-13T00:42:07.423] [INFO] cheese - inserting 1000 documents. first: Noia (region) and last: Grant Township, Crawford County, Kansas -[2018-02-13T00:42:07.454] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:07.473] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:42:07.623] [INFO] cheese - inserting 1000 documents. first: Fuck The World (The Vines song) and last: Muhammad bin Naif -[2018-02-13T00:42:07.691] [INFO] cheese - inserting 1000 documents. first: Final Fantasy Legend III and last: Wikipedia:Articles for deletion/Full formal listing of sources on Stalin in the Civil War -[2018-02-13T00:42:07.754] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:42:07.777] [INFO] cheese - inserting 1000 documents. first: 1989 World Sportscar Championship and last: Ochrotomyini -[2018-02-13T00:42:07.806] [INFO] cheese - inserting 1000 documents. first: File:Gulf Coast Athletic Conference logo.png and last: Thomas Hale (agriculturist) -[2018-02-13T00:42:07.881] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T00:42:07.902] [INFO] cheese - inserting 1000 documents. first: Brain activity and meditation and last: Startkey -[2018-02-13T00:42:07.923] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:42:07.965] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:42:08.072] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:42:08.212] [INFO] cheese - inserting 1000 documents. first: File:Affiche.L-Esclave.7864.jpg and last: Biser (given name) -[2018-02-13T00:42:08.219] [INFO] cheese - inserting 1000 documents. first: Lincoln Township, Crawford County, Kansas and last: Box–Cox distribution -[2018-02-13T00:42:08.323] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:42:08.331] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:42:08.542] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox First Opium War and last: Thysanoplusia circumscripta -[2018-02-13T00:42:08.611] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:42:08.633] [INFO] cheese - inserting 1000 documents. first: Cerrig Man and last: Category:Songs written by Rob Hatch -[2018-02-13T00:42:08.707] [INFO] cheese - inserting 1000 documents. first: Dilith Jayaweera and last: IGN FI -[2018-02-13T00:42:08.711] [INFO] cheese - inserting 1000 documents. first: East Hebei Autonomous Council and last: David de la Fuente Rasilla -[2018-02-13T00:42:08.716] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:42:08.766] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:08.822] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:42:08.875] [INFO] cheese - inserting 1000 documents. first: Raif Dizdarević and last: Naruto (rank) -[2018-02-13T00:42:08.974] [INFO] cheese - inserting 1000 documents. first: WGTJ and last: Natalia Doussopoulos -[2018-02-13T00:42:08.987] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T00:42:09.020] [INFO] cheese - inserting 1000 documents. first: De Vere Group and last: Draft:Inhabit Media -[2018-02-13T00:42:09.032] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:42:09.119] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:42:09.240] [INFO] cheese - inserting 1000 documents. first: File:VIFF 2014 logo medium.png and last: Christ Presbyterian Church -[2018-02-13T00:42:09.297] [INFO] cheese - inserting 1000 documents. first: Plusia circumscripta and last: Province of Taourirt -[2018-02-13T00:42:09.338] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:42:09.366] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:42:09.419] [INFO] cheese - inserting 1000 documents. first: Hero Hitler In Love (2011) and last: BioMart -[2018-02-13T00:42:09.487] [INFO] cheese - inserting 1000 documents. first: Mahackemo and last: Chui River -[2018-02-13T00:42:09.488] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:42:09.611] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:09.658] [INFO] cheese - inserting 1000 documents. first: The Corn Is Green (1945 film) and last: Martihaz -[2018-02-13T00:42:09.712] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:42:09.730] [INFO] cheese - inserting 1000 documents. first: Category:Suck (band) albums and last: Category:1369 establishments in Europe -[2018-02-13T00:42:09.817] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:42:09.883] [INFO] cheese - inserting 1000 documents. first: Beenleigh Divisional Board and last: Fasnacloich -[2018-02-13T00:42:09.924] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:42:09.940] [INFO] cheese - inserting 1000 documents. first: Karel Hermanek and last: Abgarmak-e Sofla, Besharat -[2018-02-13T00:42:09.979] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:42:10.013] [INFO] cheese - inserting 1000 documents. first: Template:RFCUlist/doc and last: War of the Allies -[2018-02-13T00:42:10.062] [INFO] cheese - inserting 1000 documents. first: Category:Doctor Who Doctors and last: Lal-lo, Cagayan -[2018-02-13T00:42:10.078] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:42:10.142] [INFO] cheese - inserting 1000 documents. first: Category:1369 establishments by continent and last: Category:1022 establishments by country -[2018-02-13T00:42:10.166] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T00:42:10.185] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:42:10.227] [INFO] cheese - inserting 1000 documents. first: Nicolas (wine retailer) and last: San Diego County Transportation -[2018-02-13T00:42:10.263] [INFO] cheese - inserting 1000 documents. first: File:Elliot Goldenthal - Final Fantasy - The Phantom Plains.ogg and last: Cheviré-le-Rouge -[2018-02-13T00:42:10.297] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:42:10.320] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:42:10.407] [INFO] cheese - inserting 1000 documents. first: Karl Aegerter and last: Baghsar fort -[2018-02-13T00:42:10.465] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:10.499] [INFO] cheese - inserting 1000 documents. first: David Sayer and last: Martha Nilsson Edelheit -[2018-02-13T00:42:10.594] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:10.600] [INFO] cheese - inserting 1000 documents. first: Thalidomide scandal and last: Berliner-Joyce XP-13 Viper -[2018-02-13T00:42:10.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of first-class cricket matches played by Nepal and last: The Doug Anthony All Stars -[2018-02-13T00:42:10.684] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:42:10.709] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:42:10.755] [INFO] cheese - inserting 1000 documents. first: Chigné and last: Nathan Cross -[2018-02-13T00:42:10.811] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:42:10.901] [INFO] cheese - inserting 1000 documents. first: Pius Schwert and last: Eric Parker (American football) -[2018-02-13T00:42:10.937] [INFO] cheese - inserting 1000 documents. first: Lasam, Cagayan and last: Ruby Falls -[2018-02-13T00:42:10.979] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:42:10.987] [INFO] cheese - inserting 1000 documents. first: Super Typhoon Emma (Welming) and last: Júlio Cesar Paula Muniz Júnior -[2018-02-13T00:42:11.049] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:42:11.089] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:42:11.179] [INFO] cheese - inserting 1000 documents. first: Creole (linguistics) and last: Seymour Shifrin -[2018-02-13T00:42:11.255] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:42:11.273] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Marshtomp and last: French ship Sémillante -[2018-02-13T00:42:11.320] [INFO] cheese - inserting 1000 documents. first: Iolo Morganwg Manuscripts and last: Ram Charan Mehrotra -[2018-02-13T00:42:11.334] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:42:11.349] [INFO] cheese - inserting 1000 documents. first: Calliergis ramosa and last: Memorial Coliseum (Fort Wayne) -[2018-02-13T00:42:11.380] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:42:11.403] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:11.547] [INFO] cheese - inserting 1000 documents. first: Julio César Paula Muniz Júnior and last: Category:Linfield Wildcats baseball players -[2018-02-13T00:42:11.584] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:42:11.603] [INFO] cheese - inserting 1000 documents. first: Glider (EP) and last: Harzburg -[2018-02-13T00:42:11.656] [INFO] cheese - inserting 1000 documents. first: Pedestrian-actuated signal and last: Kilravock -[2018-02-13T00:42:11.658] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:42:11.667] [INFO] cheese - inserting 1000 documents. first: Portal:Virginia/Related portals and last: Wikipedia:Featured picture candidates/King's College Chapel West -[2018-02-13T00:42:11.704] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:42:11.739] [INFO] cheese - inserting 1000 documents. first: Banana Joe (film) and last: Houtteville -[2018-02-13T00:42:11.741] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:42:11.808] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:42:11.862] [INFO] cheese - inserting 1000 documents. first: Confectioner's resin and last: P (grammar) -[2018-02-13T00:42:11.934] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:42:11.942] [INFO] cheese - inserting 1000 documents. first: Ngima and last: Jonathan Bailey House (Milo, New York) -[2018-02-13T00:42:11.994] [INFO] cheese - inserting 1000 documents. first: Numer and last: Nord 1500 Griffon I -[2018-02-13T00:42:12.014] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:42:12.101] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:42:12.130] [INFO] cheese - inserting 1000 documents. first: List of Heat Guy J episodes and last: Category:Dams in French Guiana -[2018-02-13T00:42:12.182] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:42:12.217] [INFO] cheese - inserting 1000 documents. first: Schipol and last: Wikipedia:Articles for deletion/Elle milano -[2018-02-13T00:42:12.266] [INFO] cheese - inserting 1000 documents. first: Gourgue and last: Highway 322 -[2018-02-13T00:42:12.297] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:42:12.308] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:42:12.490] [INFO] cheese - inserting 1000 documents. first: File:Kalamazoo Wings (1974-2000) logo.svg and last: Eduard Müller (internist) -[2018-02-13T00:42:12.550] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:42:12.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Christ Literalist: Complete Quotes From The World's Most Renowned Revolutionary and last: K-League 1998 -[2018-02-13T00:42:12.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fuck in different languages and last: Norwegian Premier League 1987 -[2018-02-13T00:42:12.735] [INFO] cheese - inserting 1000 documents. first: Nord 1500 Griffon II and last: List of Astrological organizations -[2018-02-13T00:42:12.773] [INFO] cheese - inserting 1000 documents. first: Calcium Release Activated Channels and last: Hercílio Luz (disambiguation) -[2018-02-13T00:42:12.859] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:42:12.881] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T00:42:12.890] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:12.911] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:42:12.962] [INFO] cheese - inserting 1000 documents. first: Krešimir Ćosić Hall and last: David Levy (psychologist) -[2018-02-13T00:42:13.073] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:42:13.310] [INFO] cheese - inserting 1000 documents. first: Shapwick (Somerset) and last: Elements of Semiology -[2018-02-13T00:42:13.324] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Church and last: Category:Shropshire Wanderers F.C. players -[2018-02-13T00:42:13.378] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:42:13.390] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T00:42:13.457] [INFO] cheese - inserting 1000 documents. first: K-League 1999 and last: Arctonotus -[2018-02-13T00:42:13.481] [INFO] cheese - inserting 1000 documents. first: Blackwoods and last: Digital Content -[2018-02-13T00:42:13.503] [INFO] cheese - inserting 1000 documents. first: Robert Thew and last: SSZ-class blimp -[2018-02-13T00:42:13.529] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:13.566] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:42:13.579] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:42:13.611] [INFO] cheese - inserting 1000 documents. first: Rolfosteus (genus) and last: Cliche Guevara -[2018-02-13T00:42:13.617] [INFO] cheese - inserting 1000 documents. first: John Herbert Crawford (politician) and last: Estrid Svendsdatter -[2018-02-13T00:42:13.667] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:42:13.677] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:42:13.875] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/easycounter.com and last: File:CIBQ RealCountry105.7 logo.png -[2018-02-13T00:42:13.925] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:42:13.965] [INFO] cheese - inserting 1000 documents. first: Charles Sumner Benedict and last: Nektarios Terpos -[2018-02-13T00:42:13.974] [INFO] cheese - inserting 1000 documents. first: Quality-of-Data (QoD) and last: Expander cycle (rocket) -[2018-02-13T00:42:14.008] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/County of Calvelage and last: Wikipedia:Peer review/Simpson's paradox -[2018-02-13T00:42:14.046] [INFO] cheese - inserting 1000 documents. first: Falcon Down and last: Category:Singing competitions -[2018-02-13T00:42:14.065] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:42:14.065] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:42:14.064] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:42:14.222] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:42:14.339] [INFO] cheese - inserting 1000 documents. first: The High Society and last: Cinco de Septiembre Stadium -[2018-02-13T00:42:14.428] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:42:14.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eamusic.dartmouth.edu and last: File:WQIL logo.jpg -[2018-02-13T00:42:14.649] [INFO] cheese - inserting 1000 documents. first: Elida Almeida and last: 1943 Missouri Tigers football team -[2018-02-13T00:42:14.685] [INFO] cheese - inserting 1000 documents. first: The Spy (2012 film) and last: Category:Bryant Bulldogs men's basketball navigational boxes -[2018-02-13T00:42:14.705] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:42:14.716] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:42:14.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/untmedia.250x.com and last: Vienna Declaration and Programme of Action (VDPA) -[2018-02-13T00:42:14.755] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:42:14.830] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:42:15.039] [INFO] cheese - inserting 1000 documents. first: File:Methamphetamine.gif and last: Miles Tails Prowler -[2018-02-13T00:42:15.122] [INFO] cheese - inserting 1000 documents. first: Rück's Blue-flycatcher and last: Christopher Becker -[2018-02-13T00:42:15.130] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T00:42:15.147] [INFO] cheese - inserting 1000 documents. first: Valhalla: Before the War and last: Observers -[2018-02-13T00:42:15.208] [INFO] cheese - inserting 1000 documents. first: Fargues and last: Category:1974 in Europe -[2018-02-13T00:42:15.228] [INFO] cheese - inserting 1000 documents. first: Super Parental Guidance and last: Chamber of Deputies of Portugal -[2018-02-13T00:42:15.258] [INFO] cheese - batch complete in: 1.679 secs -[2018-02-13T00:42:15.289] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:15.305] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steven Oberman and last: File:20 20 Vision.jpg -[2018-02-13T00:42:15.305] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:42:15.351] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:15.407] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:42:15.494] [INFO] cheese - inserting 1000 documents. first: File:Ramiro Colon.JPG and last: F512M -[2018-02-13T00:42:15.581] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:15.766] [INFO] cheese - inserting 1000 documents. first: Po' Girl (album) and last: File:StephenReich.jpg -[2018-02-13T00:42:15.824] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:42:15.830] [INFO] cheese - inserting 1000 documents. first: File:Veer Surendra Sai University of Technology logo.jpg and last: The Leading Man (comic) -[2018-02-13T00:42:15.881] [INFO] cheese - inserting 1000 documents. first: Chahamanas and last: Point au Roche State Park -[2018-02-13T00:42:15.883] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:42:15.886] [INFO] cheese - inserting 1000 documents. first: Template:UK-hist-constituency-stub and last: Ocodelus -[2018-02-13T00:42:15.924] [INFO] cheese - inserting 1000 documents. first: Bill DeWitt and last: Hemp-palm -[2018-02-13T00:42:15.939] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:15.947] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:42:15.997] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:42:16.014] [INFO] cheese - inserting 1000 documents. first: Chamari Atapattu and last: Chang Woe-Ryong -[2018-02-13T00:42:16.028] [INFO] cheese - inserting 1000 documents. first: Template:PBB/83440 and last: Smith-Ely Mansion -[2018-02-13T00:42:16.096] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:42:16.099] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:42:16.273] [INFO] cheese - inserting 1000 documents. first: Category:1868 in Spain and last: Template:Ohio college football venues -[2018-02-13T00:42:16.278] [INFO] cheese - inserting 1000 documents. first: Safarabad and last: Chesnut-sided White-eye -[2018-02-13T00:42:16.307] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:42:16.312] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:16.369] [INFO] cheese - inserting 1000 documents. first: Ayala Hetzroni and last: File:Bangaru Babu (1973 film).jpg -[2018-02-13T00:42:16.379] [INFO] cheese - inserting 1000 documents. first: Category:Conservation in Lithuania and last: Journeyman Project: Revisioned -[2018-02-13T00:42:16.424] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:42:16.427] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:16.463] [INFO] cheese - inserting 1000 documents. first: Meyer and Daniel Guggenheim and last: Scouting staff -[2018-02-13T00:42:16.547] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:16.580] [INFO] cheese - inserting 1000 documents. first: Drepatelodes tanais and last: William Peters (Diplomat) -[2018-02-13T00:42:16.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Lorient and last: File:Anthony E. Sowell.jpg -[2018-02-13T00:42:16.645] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:16.665] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:42:16.749] [INFO] cheese - inserting 1000 documents. first: File:Maria Marten, or The Murder in the Red Barn FilmPoster.jpeg and last: Blackett-Sample-Hummert -[2018-02-13T00:42:16.771] [INFO] cheese - inserting 1000 documents. first: Part XVII of the Constitution of India and last: Wikipedia:Articles for deletion/YMT-05 Hildolfr -[2018-02-13T00:42:16.803] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:42:16.828] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:16.915] [INFO] cheese - inserting 1000 documents. first: Template:Guatemalan Liga Mayor and last: William Ailā -[2018-02-13T00:42:16.970] [INFO] cheese - inserting 1000 documents. first: Dodero and last: Central banks and currencies of Central America and South America -[2018-02-13T00:42:17.075] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:42:17.079] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:42:17.290] [INFO] cheese - inserting 1000 documents. first: First Talk With Tamara Bull and last: Blue Christmas (holiday) -[2018-02-13T00:42:17.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dan Freeman and last: Bramwell Booth -[2018-02-13T00:42:17.367] [INFO] cheese - inserting 1000 documents. first: Category:Cinema of Kuwait and last: 23rd Infantry Division (Germany) -[2018-02-13T00:42:17.378] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:42:17.457] [INFO] cheese - inserting 1000 documents. first: File:Tetraloop Receptor A2.png and last: File:Buxtonfc.png -[2018-02-13T00:42:17.457] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:42:17.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Virus and last: Sanoodi -[2018-02-13T00:42:17.469] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:42:17.535] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:42:17.582] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:42:17.619] [INFO] cheese - inserting 1000 documents. first: Starfucker and last: Abernethy No. 186 -[2018-02-13T00:42:17.699] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:17.805] [INFO] cheese - inserting 1000 documents. first: CASE (Disambiguation) and last: Alex Fox -[2018-02-13T00:42:17.864] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:17.899] [INFO] cheese - inserting 1000 documents. first: Melittid and last: Pârâul Roşu (disambiguation) -[2018-02-13T00:42:17.930] [INFO] cheese - inserting 1000 documents. first: Category:Pupils of Randall Thompson and last: Category:Male to female cross-dressers -[2018-02-13T00:42:17.944] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:42:17.998] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:18.061] [INFO] cheese - inserting 1000 documents. first: Antelope Park No. 322 and last: Template:Did you know nominations/Hannah Dadds -[2018-02-13T00:42:18.062] [INFO] cheese - inserting 1000 documents. first: Berzelia and last: Galinska -[2018-02-13T00:42:18.082] [INFO] cheese - inserting 1000 documents. first: Marigny, Manche and last: IEEE Power Engineering Review -[2018-02-13T00:42:18.098] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:18.128] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:42:18.156] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:42:18.210] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pilotstars and last: Mapita Cortés -[2018-02-13T00:42:18.297] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:42:18.415] [INFO] cheese - inserting 1000 documents. first: Die geschiedene Frau and last: Egle -[2018-02-13T00:42:18.416] [INFO] cheese - inserting 1000 documents. first: Template:S-line/IT-Eurostar left/ and last: Papyrus Oxyrhynchus 402 -[2018-02-13T00:42:18.458] [INFO] cheese - inserting 1000 documents. first: Galinskaya and last: MacRobertson Girls' High School -[2018-02-13T00:42:18.474] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Dougherty County, Georgia and last: Mohini 9886788888 -[2018-02-13T00:42:18.479] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:42:18.482] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:42:18.536] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:42:18.574] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:42:18.630] [INFO] cheese - inserting 1000 documents. first: Category:The Last Shadow Puppets albums and last: Girolamo graziani -[2018-02-13T00:42:18.697] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:42:18.745] [INFO] cheese - inserting 1000 documents. first: Chunhua, Hunan and last: Central mountain blue -[2018-02-13T00:42:18.822] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:42:19.000] [INFO] cheese - inserting 1000 documents. first: The Butcher's Wife and last: Wikipedia:Articles for deletion/Katatonic -[2018-02-13T00:42:19.008] [INFO] cheese - inserting 1000 documents. first: Portal:West Virginia/Did you know/4 and last: Category:1958 in Cyprus -[2018-02-13T00:42:19.044] [INFO] cheese - inserting 1000 documents. first: Godwin Samararatne and last: The Brain Suckers Cometh! -[2018-02-13T00:42:19.087] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:19.085] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:42:19.173] [INFO] cheese - inserting 1000 documents. first: Brown Currawong and last: Ernst ruska centre -[2018-02-13T00:42:19.181] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:42:19.200] [INFO] cheese - inserting 1000 documents. first: Laurie Ayton Jr and last: Il Piccio -[2018-02-13T00:42:19.255] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:42:19.292] [INFO] cheese - inserting 1000 documents. first: Portal:Textile Arts/Selected quote/4 and last: Category:Snooker video games -[2018-02-13T00:42:19.288] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:42:19.297] [INFO] cheese - inserting 1000 documents. first: Richard Bond and last: Karl W. Young -[2018-02-13T00:42:19.404] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:19.420] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:42:19.691] [INFO] cheese - inserting 1000 documents. first: Mrs Courtney Melmoth and last: Radikale -[2018-02-13T00:42:19.699] [INFO] cheese - inserting 1000 documents. first: Bugac, Gagauzia and last: File:MirandaLambertPlatinum.jpg -[2018-02-13T00:42:19.714] [INFO] cheese - inserting 1000 documents. first: Kingdom of Lunda and last: Is There Anybody Out There -[2018-02-13T00:42:19.723] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:19.758] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:42:19.790] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:42:19.792] [INFO] cheese - inserting 1000 documents. first: Xinu and last: Betty Ann Frazer -[2018-02-13T00:42:19.859] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:42:19.901] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/ur1.ca and last: Microscanning -[2018-02-13T00:42:19.946] [INFO] cheese - inserting 1000 documents. first: Same-sex marriage and procreation and last: National Democratic Party of Lithuania -[2018-02-13T00:42:19.954] [INFO] cheese - inserting 1000 documents. first: David I Stuart and last: Wikipedia:Articles for deletion/Michael McCavish -[2018-02-13T00:42:19.957] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:42:19.994] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:42:20.032] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:42:20.169] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/50 Cent discography/archive4 and last: Identity disc -[2018-02-13T00:42:20.245] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:42:20.369] [INFO] cheese - inserting 1000 documents. first: The Secret Ball and last: File:Babydon'tcry.jpg -[2018-02-13T00:42:20.425] [INFO] cheese - inserting 1000 documents. first: Hulkamania: Let the Battle Begin and last: Diemaco C8FTHB -[2018-02-13T00:42:20.443] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:42:20.489] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:42:20.522] [INFO] cheese - inserting 1000 documents. first: South Street (MBTA station) and last: Portal:Weather/On this day/04/02 -[2018-02-13T00:42:20.535] [INFO] cheese - inserting 1000 documents. first: Template:Pioneers of Printing Press and last: Project Grand Slam -[2018-02-13T00:42:20.553] [INFO] cheese - inserting 1000 documents. first: I sogni di Laura and last: Stone Lagoon -[2018-02-13T00:42:20.586] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:42:20.609] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:42:20.614] [INFO] cheese - inserting 1000 documents. first: Ministers and Secretaries Act 1924 and last: T-norm -[2018-02-13T00:42:20.661] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:20.726] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:42:20.911] [INFO] cheese - inserting 1000 documents. first: Template:David Bisbal and last: The Journal of Defense Modeling and Simulation -[2018-02-13T00:42:20.985] [INFO] cheese - inserting 1000 documents. first: Protivo-Vozdushnaya Oborona and last: Saarloos Wolfhound -[2018-02-13T00:42:20.985] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:42:21.022] [INFO] cheese - inserting 1000 documents. first: Caladenia calcicola and last: Sithric ‘Carrach-in-Cairn’ Mág Tighearnán -[2018-02-13T00:42:21.036] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:42:21.061] [INFO] cheese - inserting 1000 documents. first: Willis Blair and last: Category:Database-related software for Linux -[2018-02-13T00:42:21.067] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DByDx and last: Saint-Remy-sous-Broyes -[2018-02-13T00:42:21.066] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:42:21.120] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:42:21.174] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:42:21.186] [INFO] cheese - inserting 1000 documents. first: Ecuadorian Confederation of Free Trade Union Organizations and last: Lego Atlantis -[2018-02-13T00:42:21.250] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:42:21.421] [INFO] cheese - inserting 1000 documents. first: Arthur Seat and last: Tornado of Souls -[2018-02-13T00:42:21.520] [INFO] cheese - inserting 1000 documents. first: Transdanubian Mountains and last: Matrox Graphics eXpansion Modules -[2018-02-13T00:42:21.529] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:42:21.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/guidechem.com and last: Melonites -[2018-02-13T00:42:21.652] [INFO] cheese - inserting 1000 documents. first: U.S. Coast & Geodetic Survey and last: Herserange -[2018-02-13T00:42:21.660] [INFO] cheese - inserting 1000 documents. first: William Alexander (artist) and last: Anomaly (communications agency) -[2018-02-13T00:42:21.663] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:42:21.670] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:21.722] [INFO] cheese - inserting 1000 documents. first: Thelosia mayaca and last: 2010 ICC Women's World Twenty20 squads -[2018-02-13T00:42:21.722] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:42:21.724] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:21.782] [INFO] cheese - inserting 1000 documents. first: Viktor Paço and last: Mota, Ljutomer -[2018-02-13T00:42:21.814] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:21.864] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:42:22.111] [INFO] cheese - inserting 1000 documents. first: Bhadra Sukla Purnima and last: Bongo, Amba -[2018-02-13T00:42:22.134] [INFO] cheese - inserting 1000 documents. first: TNBM and last: Ardudar -[2018-02-13T00:42:22.152] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:42:22.172] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:42:22.174] [INFO] cheese - inserting 1000 documents. first: Tapalqué and last: Category:Chordate stubs -[2018-02-13T00:42:22.189] [INFO] cheese - inserting 1000 documents. first: Trilocha obliquisigna and last: Rajapaksha -[2018-02-13T00:42:22.215] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:42:22.280] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:42:22.330] [INFO] cheese - inserting 1000 documents. first: Charlie Colombo and last: Cher videography -[2018-02-13T00:42:22.340] [INFO] cheese - inserting 1000 documents. first: Flying Saucers and last: Peyrepertuse -[2018-02-13T00:42:22.376] [INFO] cheese - inserting 1000 documents. first: Knowesgate railway station and last: HMS Lacedaemonian -[2018-02-13T00:42:22.412] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:42:22.444] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:42:22.469] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:22.652] [INFO] cheese - inserting 1000 documents. first: Ordudar and last: Category:Ambassadors of the United States to East Timor -[2018-02-13T00:42:22.706] [INFO] cheese - inserting 1000 documents. first: Television in Wales and last: Crow robot -[2018-02-13T00:42:22.710] [INFO] cheese - inserting 1000 documents. first: Boni, Tanella and last: Paul Green & The Other Colours -[2018-02-13T00:42:22.731] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:42:22.766] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:42:22.768] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:42:22.790] [INFO] cheese - inserting 1000 documents. first: Exp ring and last: Oreopithecus bamboli -[2018-02-13T00:42:22.866] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:42:22.960] [INFO] cheese - inserting 1000 documents. first: Chernozemelsky District and last: File:Brighams Ice Cream logo.gif -[2018-02-13T00:42:23.080] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:42:23.130] [INFO] cheese - inserting 1000 documents. first: Template:SacramentoCountyCA-geo-stub and last: Franciscan Montessori Earth School & Saint Francis Academy -[2018-02-13T00:42:23.204] [INFO] cheese - inserting 1000 documents. first: Article III court and last: Narasimma -[2018-02-13T00:42:23.205] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:42:23.246] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of the United States to Ecuador and last: Nemecia Achacollo Tola -[2018-02-13T00:42:23.254] [INFO] cheese - inserting 1000 documents. first: Template:Bwf2 and last: Pygmy bluetongue -[2018-02-13T00:42:23.264] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:42:23.278] [INFO] cheese - inserting 1000 documents. first: Hambach, Moselle and last: M-44 (MI) -[2018-02-13T00:42:23.321] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:42:23.322] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:42:23.353] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:42:23.449] [INFO] cheese - inserting 1000 documents. first: Oreopithecinae and last: Chilean corvette Papudo -[2018-02-13T00:42:23.561] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:23.689] [INFO] cheese - inserting 1000 documents. first: File:Pennsylvania Department of Transportation Logo.svg and last: Wikipedia:WikiProject Spam/LinkReports/s4songs.com -[2018-02-13T00:42:23.742] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:42:23.798] [INFO] cheese - inserting 1000 documents. first: Nonte Phonte and last: Akeelah And The Bee -[2018-02-13T00:42:23.826] [INFO] cheese - inserting 1000 documents. first: Strange deaths and last: Ben Curry -[2018-02-13T00:42:23.868] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:23.880] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:42:23.921] [INFO] cheese - inserting 1000 documents. first: Iraniyan and last: T Boz -[2018-02-13T00:42:23.926] [INFO] cheese - inserting 1000 documents. first: Coorbital configuration and last: Category:Education in Butler County, Kentucky -[2018-02-13T00:42:23.943] [INFO] cheese - inserting 1000 documents. first: M-45 (MI) and last: Department of Defense Veterinary Pathology Residency (DODVPR) -[2018-02-13T00:42:23.979] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:42:23.988] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:42:23.990] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:42:24.070] [INFO] cheese - inserting 1000 documents. first: Category:Ernstia and last: Centrify -[2018-02-13T00:42:24.128] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:42:24.176] [INFO] cheese - inserting 1000 documents. first: Jamaican Art and last: 栗羊羹 -[2018-02-13T00:42:24.216] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:42:24.360] [INFO] cheese - inserting 1000 documents. first: Kataba Arrondissement and last: Velaiyilla Pattathari 2 -[2018-02-13T00:42:24.439] [INFO] cheese - inserting 1000 documents. first: List of ship commissionings in 2002 and last: Template:Colleges and universities in Virginia -[2018-02-13T00:42:24.463] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:42:24.513] [INFO] cheese - inserting 1000 documents. first: Harry (term) and last: Yo mater -[2018-02-13T00:42:24.547] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:42:24.588] [INFO] cheese - inserting 1000 documents. first: Category:Royal residences in Ethiopia and last: Procurator of the Kirk -[2018-02-13T00:42:24.611] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:42:24.642] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:24.716] [INFO] cheese - inserting 1000 documents. first: Porky's Revenge! and last: Night After Night with Allan Havey -[2018-02-13T00:42:24.755] [INFO] cheese - inserting 1000 documents. first: Take You Higher / Crunch and last: Emile Bouhours -[2018-02-13T00:42:24.793] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:42:24.805] [INFO] cheese - inserting 1000 documents. first: Mosquito Island (Senegal) and last: Sand spur -[2018-02-13T00:42:24.849] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:42:24.915] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:42:25.023] [INFO] cheese - inserting 1000 documents. first: Posttruth and last: Category:Marinid art -[2018-02-13T00:42:25.092] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:42:25.158] [INFO] cheese - inserting 1000 documents. first: Katie Dippold and last: Costabili collection -[2018-02-13T00:42:25.167] [INFO] cheese - inserting 1000 documents. first: Lee Myong-bak and last: Maing -[2018-02-13T00:42:25.216] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:42:25.226] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:25.252] [INFO] cheese - inserting 1000 documents. first: Jaisingrao Gaikwad Patil and last: Mertola -[2018-02-13T00:42:25.326] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:42:25.414] [INFO] cheese - inserting 1000 documents. first: File:Obs.jpg and last: Monarchist League of Canada -[2018-02-13T00:42:25.415] [INFO] cheese - inserting 1000 documents. first: Sandspur and last: Category:States and territories disestablished in 1996 -[2018-02-13T00:42:25.460] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Ladell Parks and last: Category:Unknown-importance Saskatchewan communities and neighbourhoods-related articles -[2018-02-13T00:42:25.483] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:25.494] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:25.498] [INFO] cheese - inserting 1000 documents. first: Soejoedi Wirjoatmodjo and last: Ibrahim Zaher -[2018-02-13T00:42:25.519] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:42:25.585] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:42:25.727] [INFO] cheese - inserting 1000 documents. first: Lecithocera pelomorpha and last: Gholhak Gardens -[2018-02-13T00:42:25.737] [INFO] cheese - inserting 1000 documents. first: Anything But Down and last: Beit Govrin -[2018-02-13T00:42:25.790] [INFO] cheese - inserting 1000 documents. first: Postal Square Building and last: Labour (UK) leadership election, 2007 -[2018-02-13T00:42:25.794] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:42:25.835] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:42:25.878] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:42:25.933] [INFO] cheese - inserting 1000 documents. first: Big League Records Greatest Hits and last: Théâtre National de l'Opéra-Comique -[2018-02-13T00:42:25.980] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:26.077] [INFO] cheese - inserting 1000 documents. first: Skool and last: Portal:India/categories -[2018-02-13T00:42:26.183] [INFO] cheese - inserting 1000 documents. first: Category:Disability in Finland and last: RS 2106 -[2018-02-13T00:42:26.236] [INFO] cheese - inserting 1000 documents. first: Levente (organization) and last: M-155 -[2018-02-13T00:42:26.238] [INFO] cheese - inserting 1000 documents. first: Altizer Roberts and last: File:The Quiet Ones 2014 theatrical poster.jpg -[2018-02-13T00:42:26.249] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:42:26.329] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:42:26.356] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:42:26.363] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:42:26.413] [INFO] cheese - inserting 1000 documents. first: Quickborn-Preis and last: Glatimer -[2018-02-13T00:42:26.497] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:42:26.606] [INFO] cheese - inserting 1000 documents. first: I-64 Bowl and last: Gates of Heaven (disambiguation) -[2018-02-13T00:42:26.612] [INFO] cheese - inserting 1000 documents. first: Katisha and last: File:Animal Aid logo.jpg -[2018-02-13T00:42:26.724] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:42:26.726] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:42:26.802] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2008 February 19 and last: Paul Otto -[2018-02-13T00:42:26.894] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:42:26.911] [INFO] cheese - inserting 1000 documents. first: Category:Municipalities in Manitoba and last: Lisica -[2018-02-13T00:42:26.984] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:42:27.029] [INFO] cheese - inserting 1000 documents. first: S-3760 and last: Cronin, Paul -[2018-02-13T00:42:27.068] [INFO] cheese - inserting 1000 documents. first: Froebel star and last: Mamelodi, Gauteng -[2018-02-13T00:42:27.088] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:42:27.115] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:42:27.204] [INFO] cheese - inserting 1000 documents. first: Anastasia Martyusheva and last: Category:Biographical museums in South Dakota -[2018-02-13T00:42:27.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Saint John, United States Virgin Islands/archive1 and last: New-Castle and Frenchtown Turnpike Company -[2018-02-13T00:42:27.267] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:42:27.291] [INFO] cheese - inserting 1000 documents. first: Elizabeth Gould (illustrator) and last: State Route 320 (Virginia pre-1933) -[2018-02-13T00:42:27.344] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T00:42:27.357] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:42:27.419] [INFO] cheese - inserting 1000 documents. first: Horsley, Essex and last: Le Blanc, Indre -[2018-02-13T00:42:27.441] [INFO] cheese - inserting 1000 documents. first: The Swinging Bridge and last: English-language Public District School Board No. 8 -[2018-02-13T00:42:27.457] [INFO] cheese - inserting 1000 documents. first: Cross, Paul and last: Bhandavapur Jain Tirth -[2018-02-13T00:42:27.489] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:42:27.491] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:42:27.502] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:42:27.644] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Jacqueline (given name) and last: Tropical Depression Bining (1977) -[2018-02-13T00:42:27.722] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:42:27.751] [INFO] cheese - inserting 1000 documents. first: Network Rail South West Main Line Route Utilisation Strategy and last: Gary Kinder (author) -[2018-02-13T00:42:27.830] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:42:27.928] [INFO] cheese - inserting 1000 documents. first: Luis aguilé and last: Iraya language -[2018-02-13T00:42:27.970] [INFO] cheese - inserting 1000 documents. first: Clay Holmes and last: Supernumerary sex -[2018-02-13T00:42:27.975] [INFO] cheese - inserting 1000 documents. first: Teotoros Lapçinciyan and last: Educating Eve: The 'Language Instinct' Debate -[2018-02-13T00:42:28.002] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:42:28.041] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:42:28.084] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:28.233] [INFO] cheese - inserting 1000 documents. first: New Castle and Frenchtown Turnpike Company and last: Baha'i apologetics -[2018-02-13T00:42:28.264] [INFO] cheese - inserting 1000 documents. first: 1977 French motorcycle Grand Prix and last: Conway's Law -[2018-02-13T00:42:28.330] [INFO] cheese - inserting 1000 documents. first: Fu On Station and last: Voivod Discography -[2018-02-13T00:42:28.354] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:42:28.367] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T00:42:28.479] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T00:42:28.513] [INFO] cheese - inserting 1000 documents. first: Stapenberg and last: Seneca River Crossing Canals Historic District -[2018-02-13T00:42:28.591] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:42:28.786] [INFO] cheese - inserting 1000 documents. first: 120191 Tombagg and last: Kamarul Ariffin bin Mohamad Yassin -[2018-02-13T00:42:28.795] [INFO] cheese - inserting 1000 documents. first: Father Ernetti's Chronovisor: The Creation and Disappearance of the World's First Time Machine and last: Aldus TIFF 2 -[2018-02-13T00:42:28.806] [INFO] cheese - inserting 1000 documents. first: Arabic dialect and last: Wikipedia:Mediation Cabal/Cases/2006-09-17 Park Hill South High School -[2018-02-13T00:42:28.851] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:42:28.888] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:42:28.909] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:42:29.194] [INFO] cheese - inserting 1000 documents. first: Villiers-Saint-Frédéric and last: Villette, Yvelines -[2018-02-13T00:42:29.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Latter Day Saint movement/The Church of Jesus Christ of Latter-day Saints work group/Categories and last: Lawa Cottica Airport -[2018-02-13T00:42:29.264] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:42:29.316] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:42:29.377] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Journal of Germanic Mythology and Folklore and last: 1975–76 Copa del Rey -[2018-02-13T00:42:29.418] [INFO] cheese - inserting 1000 documents. first: Reycom and Aijikawa and last: Ghyath-al-Din Jamshid Kashani -[2018-02-13T00:42:29.481] [INFO] cheese - inserting 1000 documents. first: FiftyThree and last: Pine Craft, FL -[2018-02-13T00:42:29.499] [INFO] cheese - inserting 1000 documents. first: 25 August 2003 Mumbai blasts and last: Bishop Consolidated Independent School District -[2018-02-13T00:42:29.502] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:42:29.526] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T00:42:29.605] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:42:29.617] [INFO] cheese - inserting 1000 documents. first: Milagres Church (Kallianpur) and last: Cry6Aa -[2018-02-13T00:42:29.652] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:42:29.722] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:42:29.990] [INFO] cheese - inserting 1000 documents. first: Survey panel and last: Social Mass Party -[2018-02-13T00:42:30.013] [INFO] cheese - inserting 1000 documents. first: Villepreux and last: Interstate 70 Business (Denver, Colorado) -[2018-02-13T00:42:30.072] [INFO] cheese - inserting 1000 documents. first: Massacres of Badr Khan and last: BookSurge LLC -[2018-02-13T00:42:30.109] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:42:30.115] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:42:30.123] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:42:30.244] [INFO] cheese - inserting 1000 documents. first: File:Port Moresby International School logo.png and last: 1999-2000 Busta Cup -[2018-02-13T00:42:30.291] [INFO] cheese - inserting 1000 documents. first: Cadet Colonel and last: Susurrus -[2018-02-13T00:42:30.291] [INFO] cheese - inserting 1000 documents. first: Category:2015 in Texas and last: Trivendra Singh -[2018-02-13T00:42:30.302] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:42:30.356] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:30.370] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:42:30.376] [INFO] cheese - inserting 1000 documents. first: Frobenius mapping and last: Thiago ribeiro -[2018-02-13T00:42:30.448] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:42:30.492] [INFO] cheese - inserting 1000 documents. first: Lyle Moraine and last: Ready for the Storm -[2018-02-13T00:42:30.494] [INFO] cheese - inserting 1000 documents. first: William Anderson (cricket umpire) and last: File:NatKingCole TopPops CD 300.jpg -[2018-02-13T00:42:30.534] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:42:30.548] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:42:30.604] [INFO] cheese - inserting 1000 documents. first: Ysgol Penweddig and last: Maroncourt -[2018-02-13T00:42:30.638] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:42:30.751] [INFO] cheese - inserting 1000 documents. first: 2000-01 Busta Cup and last: Jean Giono Prize -[2018-02-13T00:42:30.800] [INFO] cheese - inserting 1000 documents. first: The Youth Counseling League and last: Nikolai Milutin -[2018-02-13T00:42:30.805] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:42:30.818] [INFO] cheese - inserting 1000 documents. first: Freeway service patrol and last: Victor Babes -[2018-02-13T00:42:30.853] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:42:30.888] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:42:30.921] [INFO] cheese - inserting 1000 documents. first: Sedgwick Theater and last: Wikipedia:Featured picture candidates/The Clock Tower of the Palace of Westminster -[2018-02-13T00:42:30.948] [INFO] cheese - inserting 1000 documents. first: Wabash–Pittsburgh Terminal Railway and last: Charles Dance (disambiguation) -[2018-02-13T00:42:30.971] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:42:31.005] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:42:31.048] [INFO] cheese - inserting 1000 documents. first: Thiru. M. VAITHIANATHAN and last: Category:Protected areas of Laclede County, Missouri -[2018-02-13T00:42:31.077] [INFO] cheese - inserting 1000 documents. first: Davin Dennis and last: Name conflicts of solar system objects -[2018-02-13T00:42:31.174] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:42:31.213] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:42:31.331] [INFO] cheese - inserting 1000 documents. first: Jo O-ryeon and last: Ndoffane Arrondissement -[2018-02-13T00:42:31.377] [INFO] cheese - inserting 1000 documents. first: Eumenes of Pergamon and last: Tame silver fox -[2018-02-13T00:42:31.401] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:42:31.489] [INFO] cheese - inserting 1000 documents. first: Nandagopal and last: Cang Prefecture -[2018-02-13T00:42:31.503] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:42:31.626] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:42:31.793] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/S.P.A.M. Records and last: Bear Creek Township, Chatham County, North Carolina -[2018-02-13T00:42:31.813] [INFO] cheese - inserting 1000 documents. first: Amber Peterson and last: Category:Natural history museums in the Netherlands -[2018-02-13T00:42:31.892] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Laclede County, Missouri and last: Π Mensae b -[2018-02-13T00:42:31.927] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T00:42:31.972] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:42:31.977] [INFO] cheese - inserting 1000 documents. first: Holly Valance's Third album (Cancelled) and last: US Penny -[2018-02-13T00:42:32.018] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:42:32.049] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:42:32.208] [INFO] cheese - inserting 1000 documents. first: Umaro Sissoco Embaló and last: Héctor Campos (disambiguation) -[2018-02-13T00:42:32.290] [INFO] cheese - inserting 1000 documents. first: Linklater and last: Jorge Serrano Elias -[2018-02-13T00:42:32.311] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:42:32.368] [INFO] cheese - inserting 1000 documents. first: Sagittaria guayanensis and last: Category:Creutz family -[2018-02-13T00:42:32.405] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:42:32.476] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:42:32.484] [INFO] cheese - inserting 1000 documents. first: Klisura and last: Wikipedia:Articles for deletion/Krugman's Law -[2018-02-13T00:42:32.556] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:42:32.648] [INFO] cheese - inserting 1000 documents. first: Π Men b and last: Davara rufulella -[2018-02-13T00:42:32.664] [INFO] cheese - inserting 1000 documents. first: File:Elven00.jpg and last: Kelcie Banks -[2018-02-13T00:42:32.726] [INFO] cheese - inserting 1000 documents. first: Feings and last: File:N785480617 1901249 9701.jpg -[2018-02-13T00:42:32.732] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:42:32.747] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:42:32.757] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Ntoutoume Emane and last: Stefan Grabinski -[2018-02-13T00:42:32.795] [INFO] cheese - inserting 1000 documents. first: Mohammad Amin (disambiguation) and last: Cannabis in Sweden -[2018-02-13T00:42:32.838] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:42:32.849] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:42:32.857] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:33.105] [INFO] cheese - inserting 1000 documents. first: Category:Government Victoria College, Palakkad alumni and last: Category:Actors from Tasmania -[2018-02-13T00:42:33.130] [INFO] cheese - inserting 1000 documents. first: Diaspidiotus perniciosus and last: Lado Aleksi-Meskhishvili -[2018-02-13T00:42:33.188] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:42:33.245] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:42:33.286] [INFO] cheese - inserting 1000 documents. first: William Shippen and last: Wikipedia:Articles for deletion/Lost Children -[2018-02-13T00:42:33.294] [INFO] cheese - inserting 1000 documents. first: Dectocera and last: Arvinder Singh Bubber -[2018-02-13T00:42:33.320] [INFO] cheese - inserting 1000 documents. first: Belladonna of Sadness (album) and last: File:Layers Kungs.jpg -[2018-02-13T00:42:33.357] [INFO] cheese - inserting 1000 documents. first: Zemplínska Široká and last: Wikipedia:Articles for deletion/DGform Multimedia -[2018-02-13T00:42:33.365] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:42:33.365] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:33.402] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:33.504] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:42:33.585] [INFO] cheese - inserting 1000 documents. first: 1876 New York Mutuals season and last: Predictable surprise -[2018-02-13T00:42:33.690] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:42:33.756] [INFO] cheese - inserting 1000 documents. first: K43JY-D and last: Isabella, Oklahoma -[2018-02-13T00:42:33.815] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:42:33.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Collaborations of the Week/Nationalism in the United States and last: 8th National Congress of the Communist Party of China -[2018-02-13T00:42:34.023] [INFO] cheese - inserting 1000 documents. first: Joao Saldanha and last: The Boy in the Plastic Bubble -[2018-02-13T00:42:34.047] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:42:34.110] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:42:34.118] [INFO] cheese - inserting 1000 documents. first: Liberal Party of Newfoundland and Labrador leadership election, May 2011 and last: Unorthodox Australian Poet -[2018-02-13T00:42:34.233] [INFO] cheese - inserting 1000 documents. first: Steve Hackett discography and last: Category:1864 elections -[2018-02-13T00:42:34.254] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:42:34.262] [INFO] cheese - inserting 1000 documents. first: Philharmonisches Staatsorchester Hamburg and last: Pradler Ritterspiele -[2018-02-13T00:42:34.326] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:42:34.346] [INFO] cheese - inserting 1000 documents. first: Nakkna and last: Coalition of National Unity -[2018-02-13T00:42:34.386] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T00:42:34.467] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Scurry County, Texas and last: Alexela Group -[2018-02-13T00:42:34.470] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:42:34.605] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:42:34.796] [INFO] cheese - inserting 1000 documents. first: Ashley Rogers and last: Wikipedia:Articles for deletion/Josh McConnell -[2018-02-13T00:42:34.833] [INFO] cheese - inserting 1000 documents. first: Category:IIHF Men's World Ice Hockey Championships and last: Wikipedia:Deletion review/Log/2009 November 19 -[2018-02-13T00:42:34.856] [INFO] cheese - inserting 1000 documents. first: Umm Khultum binte Ali and last: Ciovo -[2018-02-13T00:42:34.863] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:42:34.878] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:42:34.983] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:42:35.040] [INFO] cheese - inserting 1000 documents. first: Simon Maginn and last: Template:NewYork-struct-stub -[2018-02-13T00:42:35.143] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:42:35.161] [INFO] cheese - inserting 1000 documents. first: File:Dave Mirra Freestyle BMX 2 Coverart.png and last: Mogyoród -[2018-02-13T00:42:35.276] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:42:35.307] [INFO] cheese - inserting 1000 documents. first: Keep on Dancing (album) and last: Kevin Nicolson -[2018-02-13T00:42:35.323] [INFO] cheese - inserting 1000 documents. first: Projekttheater Vorarlberg and last: File:ReliefPitcherBoxShotSNES.jpg -[2018-02-13T00:42:35.419] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:42:35.450] [INFO] cheese - inserting 1000 documents. first: Sharpless 64 and last: Pat Ryan (executive/philanthropist/civic leader) -[2018-02-13T00:42:35.452] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T00:42:35.533] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:35.554] [INFO] cheese - inserting 1000 documents. first: Surinamese Olympic Committee and last: Wikipedia:Articles for deletion/The good the bad and the small -[2018-02-13T00:42:35.586] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm von Bruecke and last: Dolega Coat of Arms -[2018-02-13T00:42:35.634] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:42:35.657] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:42:35.790] [INFO] cheese - inserting 1000 documents. first: Flushing (military tactic) and last: Le Lorey -[2018-02-13T00:42:35.800] [INFO] cheese - inserting 1000 documents. first: Xia Xue and last: Charles Roller -[2018-02-13T00:42:35.846] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:42:35.851] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:42:35.872] [INFO] cheese - inserting 1000 documents. first: Anomoeosis phanerostigma and last: The Oregon Historical Society -[2018-02-13T00:42:35.888] [INFO] cheese - inserting 1000 documents. first: Richard Stenhouse Jr. and last: Category:1857 in the French colonial empire -[2018-02-13T00:42:35.898] [INFO] cheese - inserting 1000 documents. first: CONFECH and last: Koivunen -[2018-02-13T00:42:35.935] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:42:35.945] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:42:35.967] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:42:36.146] [INFO] cheese - inserting 1000 documents. first: American invasion of Montreal and last: Template:IPA-all/sandbox -[2018-02-13T00:42:36.270] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:42:36.341] [INFO] cheese - inserting 1000 documents. first: Dzialosza Coat of Arms and last: Tomas de Jesus Mangual -[2018-02-13T00:42:36.377] [INFO] cheese - inserting 1000 documents. first: William C. Gloth and last: Portal:Gene Wiki/Project proposals -[2018-02-13T00:42:36.402] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:42:36.430] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:36.506] [INFO] cheese - inserting 1000 documents. first: Roscoe Dash and last: McCune-Albright Syndrome -[2018-02-13T00:42:36.521] [INFO] cheese - inserting 1000 documents. first: Rakefet Remigolski and last: Writers' Union of the Philippines -[2018-02-13T00:42:36.524] [INFO] cheese - inserting 1000 documents. first: Somnath dasgupta and last: Akchii -[2018-02-13T00:42:36.534] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Miles Consulting Corp and last: Josephat Kiprono -[2018-02-13T00:42:36.597] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:42:36.636] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:42:36.686] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:36.734] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:42:36.807] [INFO] cheese - inserting 1000 documents. first: 1968 Trampoline World Championships and last: Category:Pakistani male models -[2018-02-13T00:42:36.890] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:36.994] [INFO] cheese - inserting 1000 documents. first: La Chapelle-Bâton, Vienne and last: Kurt Dunder -[2018-02-13T00:42:37.055] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:42:37.106] [INFO] cheese - inserting 1000 documents. first: Notebook interface and last: The Ship, Hart Street -[2018-02-13T00:42:37.118] [INFO] cheese - inserting 1000 documents. first: Alexander de Jesus and last: Depilatory cream -[2018-02-13T00:42:37.125] [INFO] cheese - inserting 1000 documents. first: Jacob van Toor and last: Truth in music -[2018-02-13T00:42:37.157] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:42:37.205] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:42:37.210] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:42:37.214] [INFO] cheese - inserting 1000 documents. first: Darke's Peak and last: Felipe Mellizo -[2018-02-13T00:42:37.282] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:42:37.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Cooperatives articles by quality/3 and last: Brites de Portugal -[2018-02-13T00:42:37.334] [INFO] cheese - inserting 1000 documents. first: File:Zee Kannada.jpg and last: State Route 117 (Virginia 1933) -[2018-02-13T00:42:37.387] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:42:37.398] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:42:37.579] [INFO] cheese - inserting 1000 documents. first: Digi camo and last: File:Aveverythingiamsample.ogg -[2018-02-13T00:42:37.610] [INFO] cheese - inserting 1000 documents. first: Kayapó-Xikrin and last: Category:Education in Howard County, Missouri -[2018-02-13T00:42:37.639] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:42:37.652] [INFO] cheese - inserting 1000 documents. first: Anthropism and last: Giwa FC -[2018-02-13T00:42:37.666] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:42:37.714] [INFO] cheese - inserting 1000 documents. first: Simon Vukcevic and last: Category:Electoral districts of South Australia -[2018-02-13T00:42:37.716] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:42:37.720] [INFO] cheese - inserting 1000 documents. first: Half Moon, New York and last: South Carolina sports -[2018-02-13T00:42:37.768] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:42:37.792] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:37.852] [INFO] cheese - inserting 1000 documents. first: Sawyer House (Monroe, MI) and last: File:Ödipussi.jpg -[2018-02-13T00:42:37.927] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:42:38.041] [INFO] cheese - inserting 1000 documents. first: Mike, Lu, and Og and last: Musicblog -[2018-02-13T00:42:38.109] [INFO] cheese - inserting 1000 documents. first: Slush Helsinki and last: Holme Park (country house) -[2018-02-13T00:42:38.155] [INFO] cheese - inserting 1000 documents. first: Manteo (Native American leader) and last: Wikipedia:Version 1.0 Editorial Team/Football in the USA and Canada articles by quality/7 -[2018-02-13T00:42:38.195] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:42:38.258] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:42:38.299] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:42:38.366] [INFO] cheese - inserting 1000 documents. first: Unik BK and last: If This Isn't Nice, What Is?: Advice to the Young -[2018-02-13T00:42:38.491] [INFO] cheese - inserting 1000 documents. first: Francesco Piccolomini (bishop) and last: Jean Dubey -[2018-02-13T00:42:38.491] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:42:38.561] [INFO] cheese - inserting 1000 documents. first: Wakaw Lake, Saskatchewan and last: Rudolph Seiden -[2018-02-13T00:42:38.620] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:42:38.621] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:38.625] [INFO] cheese - inserting 1000 documents. first: .44 and last: Stunt race fx -[2018-02-13T00:42:38.761] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:42:38.869] [INFO] cheese - inserting 1000 documents. first: Category:History of Aichi Prefecture and last: Category:Wikipedia sockpuppets of JtV -[2018-02-13T00:42:38.933] [INFO] cheese - inserting 1000 documents. first: Questo amore and last: Bijur -[2018-02-13T00:42:38.957] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:42:38.975] [INFO] cheese - inserting 1000 documents. first: Hindu and fascism and last: Cascas -[2018-02-13T00:42:39.025] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T00:42:39.087] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:42:39.095] [INFO] cheese - inserting 1000 documents. first: Stone Canoe Advertising and last: Category:Codasur South American Rally Championship -[2018-02-13T00:42:39.145] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:42:39.235] [INFO] cheese - inserting 1000 documents. first: Category:Chemicals articles needing expert attention and last: Seth Flowerman -[2018-02-13T00:42:39.279] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:42:39.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Caitlin Morrall and last: Category:Companies established in 1883 by country -[2018-02-13T00:42:39.368] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:42:39.381] [INFO] cheese - inserting 1000 documents. first: On Beyond Zebra and last: Need for Speed: High Stakes -[2018-02-13T00:42:39.421] [INFO] cheese - inserting 1000 documents. first: Ra Ra Riot and last: Drummond Battery -[2018-02-13T00:42:39.439] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:42:39.457] [INFO] cheese - inserting 1000 documents. first: Template:SeaWorld San Antonio Roller Coasters and last: OpEPA -[2018-02-13T00:42:39.462] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:42:39.471] [INFO] cheese - inserting 1000 documents. first: James Williamson and last: Be Yourself (Michael Rose album) -[2018-02-13T00:42:39.516] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:42:39.528] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:42:39.544] [INFO] cheese - inserting 1000 documents. first: 2013 Codasur South American Rally Championship season and last: Category:Centuries in Iraqi Kurdistan -[2018-02-13T00:42:39.597] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:42:39.636] [INFO] cheese - inserting 1000 documents. first: Uromastyx Leptieni and last: Wikipedia:Reference desk/Archives/Computing/2009 November 17 -[2018-02-13T00:42:39.682] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:42:39.792] [INFO] cheese - inserting 1000 documents. first: Draft:Aaron and Jordan Kandell and last: Coolboys and the Frontman -[2018-02-13T00:42:39.837] [INFO] cheese - inserting 1000 documents. first: Meter in the Bible and last: List of Chip and Dale Rescue Rangers episodes -[2018-02-13T00:42:39.871] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:42:39.881] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:42:39.945] [INFO] cheese - inserting 1000 documents. first: Tomorrows Pioneers and last: Category:1479 books -[2018-02-13T00:42:39.977] [INFO] cheese - inserting 1000 documents. first: Need for Speed: Porsche Unleashed and last: Lygophobia -[2018-02-13T00:42:40.012] [INFO] cheese - inserting 1000 documents. first: Russian bride and last: Eulogy (disambiguation) -[2018-02-13T00:42:40.012] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:40.051] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/The Real Housewives of Atlanta (season 6)/archive1 and last: Etheostoma etnieri -[2018-02-13T00:42:40.068] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:42:40.095] [INFO] cheese - inserting 1000 documents. first: Category:Elections in Greater Manchester and last: Burnatonce -[2018-02-13T00:42:40.099] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:42:40.214] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:42:40.219] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:42:40.432] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Catholic cathedrals in Egypt and last: Blotched blue-tongued skink -[2018-02-13T00:42:40.548] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:42:40.600] [INFO] cheese - inserting 1000 documents. first: Category:Canals of Kern County, California and last: Category:Tanganyika (territory) -[2018-02-13T00:42:40.722] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:42:40.860] [INFO] cheese - inserting 1000 documents. first: Yaropolk Izyaslavich and last: Necrodaemon Terrorsathan -[2018-02-13T00:42:40.893] [INFO] cheese - inserting 1000 documents. first: Altru Health Systems and last: Stanislaw Pestka -[2018-02-13T00:42:40.921] [INFO] cheese - inserting 1000 documents. first: Peter principal and last: Haunted eBay painting -[2018-02-13T00:42:40.932] [INFO] cheese - inserting 1000 documents. first: Drasteria pallescens and last: Gorispolkom -[2018-02-13T00:42:40.950] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:42:40.960] [INFO] cheese - inserting 1000 documents. first: Cameroon at the 2014 Summer Youth Olympics and last: Arlene McQuade -[2018-02-13T00:42:41.014] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:42:41.034] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:42:41.044] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:42:41.110] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:42:41.282] [INFO] cheese - inserting 1000 documents. first: LA Law: The Computer Game and last: File:Porky&daffy.png -[2018-02-13T00:42:41.351] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:42:41.470] [INFO] cheese - inserting 1000 documents. first: Genevieve L. Hutchinson and last: Bilohiria Raion -[2018-02-13T00:42:41.537] [INFO] cheese - inserting 1000 documents. first: Papa Chan and last: Health in Japan -[2018-02-13T00:42:41.536] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:42:41.616] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:42:41.704] [INFO] cheese - inserting 1000 documents. first: File:Siku Ya Bibi.jpg and last: U.S. Senior PGA Championship -[2018-02-13T00:42:41.740] [INFO] cheese - inserting 1000 documents. first: State of Oklahoma and last: Cardiac Surgery -[2018-02-13T00:42:41.749] [INFO] cheese - inserting 1000 documents. first: Category:Mountains of the Carpathians and last: Abscess (band) -[2018-02-13T00:42:41.770] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:42:41.834] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T00:42:41.842] [INFO] cheese - inserting 1000 documents. first: Wikipedia:HOTHEAD and last: Khua District -[2018-02-13T00:42:41.879] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:42:41.927] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:42:41.997] [INFO] cheese - inserting 1000 documents. first: Raiispolkom and last: Puya humilis -[2018-02-13T00:42:42.063] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BREATHER and last: Category:Canadian insolvency case law -[2018-02-13T00:42:42.118] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T00:42:42.156] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:42:42.238] [INFO] cheese - inserting 1000 documents. first: St. James Church (Santee, South Carolina) and last: Environment of Thailand -[2018-02-13T00:42:42.306] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:42.374] [INFO] cheese - inserting 1000 documents. first: Flanders news and last: Flowers in the Attic (TV movie) -[2018-02-13T00:42:42.475] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:42.486] [INFO] cheese - inserting 1000 documents. first: LMBCS-2 and last: United States Senate election in New York, 2022 -[2018-02-13T00:42:42.492] [INFO] cheese - inserting 1000 documents. first: Salomé (film) and last: Category:Brechin City F.C. players -[2018-02-13T00:42:42.604] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:42:42.625] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:42:42.707] [INFO] cheese - inserting 1000 documents. first: Category:1999 health disasters and last: CCR5delta32 -[2018-02-13T00:42:42.760] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of second-generation human rights and last: Philadelphia Convention of 1787 -[2018-02-13T00:42:42.765] [INFO] cheese - inserting 1000 documents. first: Rich Clarkson and last: Category:Melrose Place (2009 TV series) characters -[2018-02-13T00:42:42.781] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:42:42.838] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T00:42:42.852] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:42:42.931] [INFO] cheese - inserting 1000 documents. first: Federal Route 345 and last: Template:Commercial air travel -[2018-02-13T00:42:43.056] [INFO] cheese - inserting 1000 documents. first: Kim Jong-Kyu and last: File:Geneforge 5 Logo.gif -[2018-02-13T00:42:43.063] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:42:43.141] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:42:43.149] [INFO] cheese - inserting 1000 documents. first: Limpet mines and last: The Staple -[2018-02-13T00:42:43.261] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:43.400] [INFO] cheese - inserting 1000 documents. first: Randy Bullock and last: File:Logo-CGIAR-Water,Land and Ecosystems.jpg -[2018-02-13T00:42:43.475] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:42:43.484] [INFO] cheese - inserting 1000 documents. first: United States Senate election in North Carolina, 2022 and last: Template:UEFA Euro 2016 qualification (3rd place) -[2018-02-13T00:42:43.485] [INFO] cheese - inserting 1000 documents. first: File:Dljcover.gif and last: Mihailovca -[2018-02-13T00:42:43.542] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:43.593] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:42:43.700] [INFO] cheese - inserting 1000 documents. first: Template:Caparica and last: St. Mary's site -[2018-02-13T00:42:43.760] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:42:43.789] [INFO] cheese - inserting 1000 documents. first: R'dam and last: Template:Music of Korea -[2018-02-13T00:42:43.858] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:42:43.861] [INFO] cheese - inserting 1000 documents. first: Canabis and last: List of Missouri Highways -[2018-02-13T00:42:43.867] [INFO] cheese - inserting 1000 documents. first: Safer Alternative for Enjoyable Recreation and last: Associação de Jovens da Fonte do Bastardo -[2018-02-13T00:42:43.950] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T00:42:43.957] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:42:43.989] [INFO] cheese - inserting 1000 documents. first: Everything Tastes Better with Bacon: 70 Fabulous Recipes for Every Meal of the Day and last: Cathedral Parkway–110th Street (IRT Broadway – Seventh Avenue Line) -[2018-02-13T00:42:44.007] [INFO] cheese - inserting 1000 documents. first: McCoy Park and last: Catholic youth associations of French Algeria -[2018-02-13T00:42:44.081] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:42:44.143] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:42:44.159] [INFO] cheese - inserting 1000 documents. first: Mahlo operation and last: Spase To Hrono -[2018-02-13T00:42:44.262] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:42:44.384] [INFO] cheese - inserting 1000 documents. first: Brittany Hargest Shum and last: Jessica Harrison -[2018-02-13T00:42:44.436] [INFO] cheese - inserting 1000 documents. first: Socialist Appeal (International Marxist Tendency journal) and last: Template:National Initiative for Administration and Change in Syria/meta/shortname -[2018-02-13T00:42:44.445] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:42:44.497] [INFO] cheese - inserting 1000 documents. first: Kandahar Bilingual Rock Inscription and last: Linz chronology -[2018-02-13T00:42:44.538] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:42:44.562] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:42:44.566] [INFO] cheese - inserting 1000 documents. first: Graphic driver and last: Mercury Music Prize -[2018-02-13T00:42:44.613] [INFO] cheese - inserting 1000 documents. first: Detian – Ban Gioc Falls and last: Wichitas -[2018-02-13T00:42:44.638] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:42:44.647] [INFO] cheese - inserting 1000 documents. first: Hermenegildo Capelo and last: Diseqc -[2018-02-13T00:42:44.675] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:42:44.780] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:42:44.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/One Media Player per Teacher and last: Victor Oreskovich -[2018-02-13T00:42:45.035] [INFO] cheese - inserting 1000 documents. first: Jimi language (Cameroon) and last: Category:1324 in Europe -[2018-02-13T00:42:45.068] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:42:45.091] [INFO] cheese - inserting 1000 documents. first: Best Bits (television) and last: Category:Recurring sporting events established in 1850 -[2018-02-13T00:42:45.120] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:42:45.302] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:42:45.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kevin J. Mello and last: Wikipedia:WikiProject Spam/LinkReports/wohnungsmarkt-nuernberg.de -[2018-02-13T00:42:45.428] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eagle-leipzig.de and last: Beeline Heliport -[2018-02-13T00:42:45.472] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:42:45.497] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:42:45.522] [INFO] cheese - inserting 1000 documents. first: List of extraterrestrial volcanoes and last: HIV-1 Rev -[2018-02-13T00:42:45.619] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:42:45.733] [INFO] cheese - inserting 1000 documents. first: Copenhagenisation and last: Tenants-in-common -[2018-02-13T00:42:45.749] [INFO] cheese - inserting 1000 documents. first: President Mugabe and last: Wikipedia:WikiProject Lebanon/Assessment/Assessment log -[2018-02-13T00:42:45.798] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:42:45.825] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:42:45.863] [INFO] cheese - inserting 1000 documents. first: Kings of Osraige and last: Seigneurial system -[2018-02-13T00:42:45.905] [INFO] cheese - inserting 1000 documents. first: Portal:Cretaceous/Natural world articles/76 and last: ⤋ -[2018-02-13T00:42:45.965] [INFO] cheese - batch complete in: 1.185 secs -[2018-02-13T00:42:45.972] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:46.026] [INFO] cheese - inserting 1000 documents. first: Gordon Dixon and last: Category:Schools in Hill County, Montana -[2018-02-13T00:42:46.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/prowrestlingreviews.wixsite.com and last: Veena Poovu (poem) -[2018-02-13T00:42:46.101] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:42:46.145] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:42:46.270] [INFO] cheese - inserting 1000 documents. first: Malcolm Jennings Rogers and last: Shinab -[2018-02-13T00:42:46.272] [INFO] cheese - inserting 1000 documents. first: Luossajärvi and last: Textiled -[2018-02-13T00:42:46.327] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:42:46.332] [INFO] cheese - inserting 1000 documents. first: National Route 356 and last: Square drill bit -[2018-02-13T00:42:46.334] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:46.404] [INFO] cheese - inserting 1000 documents. first: ⤊ and last: I'm Gonna Get You -[2018-02-13T00:42:46.426] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:42:46.442] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:42:46.472] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/NazariyKaminski and last: Category:Regular Show images -[2018-02-13T00:42:46.528] [INFO] cheese - inserting 1000 documents. first: Mead's milkweed and last: The Houston Progressive Voice -[2018-02-13T00:42:46.530] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:42:46.589] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:42:46.614] [INFO] cheese - inserting 1000 documents. first: Williston Lake and last: Uthagamandalam -[2018-02-13T00:42:46.694] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:42:46.781] [INFO] cheese - inserting 1000 documents. first: AIPF and last: Shuey Ping-ſin -[2018-02-13T00:42:46.799] [INFO] cheese - inserting 1000 documents. first: Yaguarón (Paraguay) and last: 1992 Men's Champions Trophy (field hockey) -[2018-02-13T00:42:46.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/delist/File:Passchendaele aerial view.jpg and last: MW (film) -[2018-02-13T00:42:46.823] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:42:46.867] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:42:46.883] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:42:46.885] [INFO] cheese - inserting 1000 documents. first: Calder Park Thunderdome and last: WWE Women's Championship Tournament -[2018-02-13T00:42:46.957] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:42:46.967] [INFO] cheese - inserting 1000 documents. first: 我是处女座 and last: Sankt Annæ Plads 1-3 -[2018-02-13T00:42:47.027] [INFO] cheese - inserting 1000 documents. first: Yellow Brick Road (Eminem song) and last: File:Botswana Teachers medals.gif -[2018-02-13T00:42:47.029] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:42:47.106] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:42:47.277] [INFO] cheese - inserting 1000 documents. first: Joan Baez: Classics and last: Abdolkarim Mousavi-Ardabili -[2018-02-13T00:42:47.292] [INFO] cheese - inserting 1000 documents. first: Would You Buy A Used War From This Man? and last: Category:1420s in the Mamluk Sultanate (Cairo) -[2018-02-13T00:42:47.311] [INFO] cheese - inserting 1000 documents. first: File:Doin' the Thing.jpg and last: Wikipedia:WikiProject Spam/LinkReports/wiki.greytip.in -[2018-02-13T00:42:47.364] [INFO] cheese - inserting 1000 documents. first: Category:South American Olympic medalist stubs and last: Wikipedia:Articles for deletion/Barbie and the Diamond Castle -[2018-02-13T00:42:47.385] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:42:47.396] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:42:47.435] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:42:47.463] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:42:47.529] [INFO] cheese - inserting 1000 documents. first: Devotion (novel) and last: Keithia leaf blight -[2018-02-13T00:42:47.557] [INFO] cheese - inserting 1000 documents. first: Krum (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/eroschevauxpassion.com -[2018-02-13T00:42:47.578] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:42:47.620] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:42:47.752] [INFO] cheese - inserting 1000 documents. first: Category:Foreign relations of Tanzania and last: Mayan Children -[2018-02-13T00:42:47.844] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:42:47.924] [INFO] cheese - inserting 1000 documents. first: File:Manqabat-e-Qari Muslehuddin.jpg and last: 2003–04 Stoke City F.C. season -[2018-02-13T00:42:47.976] [INFO] cheese - inserting 1000 documents. first: Category:1420 in the Mamluk Sultanate (Cairo) and last: Generali Ladies Linz -[2018-02-13T00:42:47.981] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:42:47.995] [INFO] cheese - inserting 1000 documents. first: Category:1739 in Austria and last: UFC 92 -[2018-02-13T00:42:48.000] [INFO] cheese - inserting 1000 documents. first: Category:People from Gran, Norway and last: 4th Infantry Regiment (Imperial Japanese Army) -[2018-02-13T00:42:48.080] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:42:48.095] [INFO] cheese - inserting 1000 documents. first: Ginsburg, Boris Naumovich and last: Heinrich von Kettenbach -[2018-02-13T00:42:48.098] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:48.133] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:42:48.155] [INFO] cheese - inserting 1000 documents. first: Ja'far ibn Abu Talib and last: Algesiras -[2018-02-13T00:42:48.214] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:48.301] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:42:48.631] [INFO] cheese - inserting 1000 documents. first: List of places in Idaho/K and last: Lemsford Road Halt railway station -[2018-02-13T00:42:48.634] [INFO] cheese - inserting 1000 documents. first: Andwells Brewery and last: R56 (KwaZulu-Natal) -[2018-02-13T00:42:48.657] [INFO] cheese - inserting 1000 documents. first: Coco's Lunch and last: Ancha (star) -[2018-02-13T00:42:48.773] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by My Chemical Romance and last: Category:Görele District -[2018-02-13T00:42:48.778] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:42:48.785] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:42:48.791] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T00:42:48.808] [INFO] cheese - inserting 1000 documents. first: Wilhelm Gause and last: File:One After 909.ogg -[2018-02-13T00:42:48.876] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:42:48.907] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:42:49.033] [INFO] cheese - inserting 1000 documents. first: Municipal seat and last: 1973 Buffalo Bills season -[2018-02-13T00:42:49.135] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:42:49.369] [INFO] cheese - inserting 1000 documents. first: White-Cheeked Sparrow Lark and last: Aleksandar Nikitović -[2018-02-13T00:42:49.414] [INFO] cheese - inserting 1000 documents. first: Kahuna Nui and last: Chateau Pedesclaux -[2018-02-13T00:42:49.432] [INFO] cheese - inserting 1000 documents. first: Whanau Ora and last: Harlan Daily Enterprise -[2018-02-13T00:42:49.439] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:42:49.516] [INFO] cheese - inserting 1000 documents. first: Jimmachi Station and last: Stalden -[2018-02-13T00:42:49.519] [INFO] cheese - inserting 1000 documents. first: Category:Ladybug Mecca albums and last: Category:Basketball in New York City -[2018-02-13T00:42:49.524] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T00:42:49.538] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:42:49.640] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:42:49.655] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:42:49.727] [INFO] cheese - inserting 1000 documents. first: Riccardo Berardino and last: João Santos -[2018-02-13T00:42:49.801] [INFO] cheese - inserting 1000 documents. first: File:ROBERT COHEN CLOSE UP.jpg and last: John Hawley Edwards -[2018-02-13T00:42:49.823] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:42:49.887] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:42:50.081] [INFO] cheese - inserting 1000 documents. first: Alphense Zwem Club and last: Westwood Inn Classic -[2018-02-13T00:42:50.135] [INFO] cheese - inserting 1000 documents. first: ClimateAudit.org and last: File:Faith, Fraud & Minimum Wage.jpg -[2018-02-13T00:42:50.146] [INFO] cheese - inserting 1000 documents. first: Kabalo Territory and last: Category:Racing drivers who committed suicide -[2018-02-13T00:42:50.154] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:50.190] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:42:50.256] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:42:50.268] [INFO] cheese - inserting 1000 documents. first: File:Squircle circle square.png and last: File:Lifterpullerlifterpuller.jpg -[2018-02-13T00:42:50.318] [INFO] cheese - inserting 1000 documents. first: Mughal painting and last: Nuevo Laredo International Airport -[2018-02-13T00:42:50.341] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:42:50.390] [INFO] cheese - inserting 1000 documents. first: File:BCCBlogo.jpg and last: File:Cello Again.jpg -[2018-02-13T00:42:50.394] [INFO] cheese - inserting 1000 documents. first: ACS Amman and last: Crazy Rain and Boredom -[2018-02-13T00:42:50.440] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:42:50.442] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:42:50.457] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:42:50.736] [INFO] cheese - inserting 1000 documents. first: Red-Backed Lark and last: Uranus Opal -[2018-02-13T00:42:50.740] [INFO] cheese - inserting 1000 documents. first: Category:Racing drivers killed while racing and last: Bartolus Saxoferratus -[2018-02-13T00:42:50.749] [INFO] cheese - inserting 1000 documents. first: Mumbadevi (Vidhan Sabha constituency) and last: File:Bright Eyes - There Is No Beginning to the Story.jpg -[2018-02-13T00:42:50.795] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:42:50.802] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:42:50.813] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:42:51.048] [INFO] cheese - inserting 1000 documents. first: File:Yellow Park.jpg and last: New York Mets/Managers and ownership -[2018-02-13T00:42:51.113] [INFO] cheese - inserting 1000 documents. first: Heathfield Community School and last: Fazekas Mihály -[2018-02-13T00:42:51.187] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:42:51.189] [INFO] cheese - inserting 1000 documents. first: Sadhna(1958 film) and last: Gino M. Santos -[2018-02-13T00:42:51.240] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:42:51.304] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:42:51.382] [INFO] cheese - inserting 1000 documents. first: Guilford Country Store and last: Reinland, Manitoba -[2018-02-13T00:42:51.421] [INFO] cheese - inserting 1000 documents. first: Shielded twisted pair and last: Safflower Princess -[2018-02-13T00:42:51.469] [INFO] cheese - inserting 1000 documents. first: Stan Williams (Australian footballer) and last: Johnny "Yard Dog" Jones -[2018-02-13T00:42:51.487] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:42:51.501] [INFO] cheese - inserting 1000 documents. first: Category:D-Block Records members and last: Hamhung naengmyeon -[2018-02-13T00:42:51.517] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:51.538] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T00:42:51.606] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:42:51.880] [INFO] cheese - inserting 1000 documents. first: Category:Amarillo Venom players and last: City Hall (Columbia, Missouri) -[2018-02-13T00:42:51.881] [INFO] cheese - inserting 1000 documents. first: Congressional district of Sulu and last: 3 for One -[2018-02-13T00:42:51.938] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:51.979] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:42:51.999] [INFO] cheese - inserting 1000 documents. first: 2017 Varsity Shield and last: Draft:James Turner (YouTube Personality) -[2018-02-13T00:42:52.020] [INFO] cheese - inserting 1000 documents. first: Conteville, Seine-Maritime and last: Gabino Rodíguuez Rodríguez -[2018-02-13T00:42:52.086] [INFO] cheese - inserting 1000 documents. first: Gene Huff and last: Category:Washington Senators -[2018-02-13T00:42:52.103] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:42:52.131] [INFO] cheese - inserting 1000 documents. first: Steve Gammon and last: Order of Danilo of Montenegro -[2018-02-13T00:42:52.120] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:42:52.222] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:42:52.242] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:42:52.349] [INFO] cheese - inserting 1000 documents. first: Viridius and last: Al-Tijaniyya -[2018-02-13T00:42:52.444] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:42:52.536] [INFO] cheese - inserting 1000 documents. first: Das and last: Christmas Island, Kiribati -[2018-02-13T00:42:52.575] [INFO] cheese - inserting 1000 documents. first: Daniel Vila and last: Nefelibata -[2018-02-13T00:42:52.606] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:42:52.641] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:42:52.703] [INFO] cheese - inserting 1000 documents. first: Robbie Martin (journalist) and last: Twisted sheaf -[2018-02-13T00:42:52.804] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:42:52.938] [INFO] cheese - inserting 1000 documents. first: Template:User Alpha Tau Omega and last: Drawing room play -[2018-02-13T00:42:52.956] [INFO] cheese - inserting 1000 documents. first: El Jinete sin cabeza and last: Symphony, GA 55 (Mozart) -[2018-02-13T00:42:52.995] [INFO] cheese - inserting 1000 documents. first: The Joy Girl and last: Mythimna olivata -[2018-02-13T00:42:53.060] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T00:42:53.103] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:42:53.109] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:42:53.315] [INFO] cheese - inserting 1000 documents. first: Plagiopholis and last: List of Telemundo Telenovelas -[2018-02-13T00:42:53.369] [INFO] cheese - inserting 1000 documents. first: The artwoods and last: Woundale -[2018-02-13T00:42:53.379] [INFO] cheese - inserting 1000 documents. first: File:Dainese logo.png and last: Division of Moore -[2018-02-13T00:42:53.380] [INFO] cheese - inserting 1000 documents. first: Subh (sultana) and last: Jubilee Book of Cricket -[2018-02-13T00:42:53.392] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:42:53.516] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:42:53.532] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:42:53.537] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T00:42:53.705] [INFO] cheese - inserting 1000 documents. first: Symphony, GA 56 (Mozart) and last: Rule of three (programming) -[2018-02-13T00:42:53.756] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:42:53.807] [INFO] cheese - inserting 1000 documents. first: Fargues-sur-Ourbise and last: Romney Township, Ontario -[2018-02-13T00:42:53.863] [INFO] cheese - inserting 1000 documents. first: Aelfgith the Younger and last: Category:1791 in economics -[2018-02-13T00:42:53.865] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:42:53.952] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:42:53.959] [INFO] cheese - inserting 1000 documents. first: Robotic space exploration and last: Corixid -[2018-02-13T00:42:54.091] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:42:54.132] [INFO] cheese - inserting 1000 documents. first: RAN Bicalutamide and last: Category:Home inspection -[2018-02-13T00:42:54.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Michael oneill and last: Himalayan bank -[2018-02-13T00:42:54.247] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:42:54.287] [INFO] cheese - inserting 1000 documents. first: Leroy Satchel Paige Legacy Award and last: Stealing the Language: The Emergence of Women's Poetry in America -[2018-02-13T00:42:54.306] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:42:54.389] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:42:54.409] [INFO] cheese - inserting 1000 documents. first: North Central Florida and last: Zhdanov (place) -[2018-02-13T00:42:54.482] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T00:42:54.525] [INFO] cheese - inserting 1000 documents. first: Tilbury East Township, Ontario and last: Molissa Fenley -[2018-02-13T00:42:54.577] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:42:54.602] [INFO] cheese - inserting 1000 documents. first: 3NOW and last: Unrestricted Warfare (book) -[2018-02-13T00:42:54.653] [INFO] cheese - inserting 1000 documents. first: Category:1790 in economics and last: Saint-Rosaire, Quebec -[2018-02-13T00:42:54.672] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:42:54.702] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:42:54.713] [INFO] cheese - inserting 1000 documents. first: Adna Ferrin Weber and last: Category:914 establishments in Europe -[2018-02-13T00:42:54.760] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:42:54.770] [INFO] cheese - inserting 1000 documents. first: Tetsuro Tanba and last: Catholic Channel -[2018-02-13T00:42:54.838] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:42:54.876] [INFO] cheese - inserting 1000 documents. first: Durfee symbol and last: Valley Point, Alberta -[2018-02-13T00:42:54.956] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:42:55.061] [INFO] cheese - inserting 1000 documents. first: File:Lwcks.jpg and last: National Trails Road -[2018-02-13T00:42:55.097] [INFO] cheese - inserting 1000 documents. first: John Cowan Hartford and last: 汉武帝 -[2018-02-13T00:42:55.123] [INFO] cheese - inserting 1000 documents. first: Supersecondary structure and last: Lord Anson -[2018-02-13T00:42:55.147] [INFO] cheese - inserting 1000 documents. first: Category:1661 establishments in Taiwan and last: Editing and Gender on Wikipedia -[2018-02-13T00:42:55.154] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:42:55.178] [INFO] cheese - inserting 1000 documents. first: Category:910 establishments in Europe and last: Draft:Skippa da Flippa -[2018-02-13T00:42:55.182] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:42:55.200] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:42:55.228] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:42:55.232] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:42:55.389] [INFO] cheese - inserting 1000 documents. first: Verden Place, Alberta and last: Wikipedia:WikiProject East Asia/Mongolia work group -[2018-02-13T00:42:55.390] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-09-25 and last: Frank Leslie Cross -[2018-02-13T00:42:55.462] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:42:55.508] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:42:55.697] [INFO] cheese - inserting 1000 documents. first: Category:Jan Oort and last: Kaya Alp -[2018-02-13T00:42:55.706] [INFO] cheese - inserting 1000 documents. first: Giany Joinville and last: Category:Images for cleanup without reasons -[2018-02-13T00:42:55.737] [INFO] cheese - inserting 1000 documents. first: United Kingdom Census 2021 and last: Florida Coast-to-Coast Trail -[2018-02-13T00:42:55.751] [INFO] cheese - inserting 1000 documents. first: Fairview Township, Holt County, Nebraska and last: Vontae Davis -[2018-02-13T00:42:55.762] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:42:55.777] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:42:55.812] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:42:55.864] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:42:56.043] [INFO] cheese - inserting 1000 documents. first: SV Grün-Weiß Lübben and last: Qart-Hadshat -[2018-02-13T00:42:56.070] [INFO] cheese - inserting 1000 documents. first: Corticotropin-like intermediate peptide and last: Category:Upcoming games -[2018-02-13T00:42:56.105] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:42:56.121] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:42:56.207] [INFO] cheese - inserting 1000 documents. first: Template:Southeastern Conference Football Player of the Year navbox and last: Category:1978 events by month -[2018-02-13T00:42:56.257] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:42:56.276] [INFO] cheese - inserting 1000 documents. first: Saint-Côme, Quebec and last: Star Wars Obi-Wan -[2018-02-13T00:42:56.278] [INFO] cheese - inserting 1000 documents. first: CUFOS and last: Laurence Rees -[2018-02-13T00:42:56.334] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:42:56.339] [INFO] cheese - inserting 1000 documents. first: Florida Coast-to-Coast Connector bicycle trail and last: Wikipedia:Main Page history/2014 May 1 -[2018-02-13T00:42:56.357] [INFO] cheese - inserting 1000 documents. first: Edwin R. Denney and last: Pieta Michelangelo -[2018-02-13T00:42:56.379] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T00:42:56.395] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:42:56.430] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:42:56.588] [INFO] cheese - inserting 1000 documents. first: SC Serbian White Eagles Toronto and last: File:A BluePrint of the world album cover (Wikipedia).jpg -[2018-02-13T00:42:56.641] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:42:56.645] [INFO] cheese - inserting 1000 documents. first: Bingham Canyon Mine and last: Portal:Slovakia/box-footer -[2018-02-13T00:42:56.695] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:42:56.706] [INFO] cheese - inserting 463 documents. first: Wikipedia:African Collaboration of the Fortnight and last: Gender reassignment -[2018-02-13T00:42:56.712] [INFO] cheese - inserting 1000 documents. first: The City of Failing Light and last: Wild Field (disambiguation) -[2018-02-13T00:42:56.731] [INFO] cheese - inserting 1000 documents. first: Dusky Sallow and last: Trench excavator -[2018-02-13T00:42:56.746] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:42:56.746] [INFO] cheese - worker pid:56521 is done. inserted 1178464 pages in 0 secs. -[2018-02-13T00:42:56.758] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:42:56.801] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:42:56.860] [INFO] cheese - inserting 1000 documents. first: Soulé and last: The South Goes North -[2018-02-13T00:42:56.865] [INFO] cheese - inserting 1000 documents. first: Fahim Hashimy and last: Comuni of the Province of Pescara -[2018-02-13T00:42:56.916] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:42:56.935] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:42:57.133] [INFO] cheese - inserting 1000 documents. first: File:A Good Year.jpg and last: Electoral results for the district of Currumbin -[2018-02-13T00:42:57.218] [INFO] cheese - inserting 1000 documents. first: Jim Carlen and last: Stop That Noise -[2018-02-13T00:42:57.240] [INFO] cheese - inserting 1000 documents. first: Category:961 establishments in Asia and last: Shole-zard -[2018-02-13T00:42:57.291] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:42:57.336] [INFO] cheese - inserting 1000 documents. first: Transition frequency and last: Hook mate -[2018-02-13T00:42:57.358] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:42:57.358] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:42:57.401] [INFO] cheese - inserting 1000 documents. first: Comuni of the Province of Piacenza and last: Ouran High School -[2018-02-13T00:42:57.457] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:42:57.495] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:57.592] [INFO] cheese - inserting 1000 documents. first: Hair stick and last: Wikipedia:WikiProject Military history/Logistics -[2018-02-13T00:42:57.668] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:42:57.743] [INFO] cheese - inserting 1000 documents. first: Sigurður Ólafsson (swimmer) and last: 100 Days of Slaughter -[2018-02-13T00:42:57.814] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:42:57.912] [INFO] cheese - inserting 1000 documents. first: Home Tutor Hitman REBORN! and last: File:Thomasstewartsinger.jpg -[2018-02-13T00:42:57.938] [INFO] cheese - inserting 1000 documents. first: Michael Booth and last: Antonio Socci -[2018-02-13T00:42:57.951] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:42:57.985] [INFO] cheese - inserting 1000 documents. first: Category:FC Steaua București templates and last: Living nativity -[2018-02-13T00:42:57.996] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:42:58.064] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:42:58.115] [INFO] cheese - inserting 1000 documents. first: Erskine, Walter and last: Jaysh al-Halab -[2018-02-13T00:42:58.119] [INFO] cheese - inserting 1000 documents. first: Template:Comic Yuri Hime and last: Tri Martolod -[2018-02-13T00:42:58.147] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:42:58.148] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Saga Prefecture and last: Stuttgart Exhibition Center -[2018-02-13T00:42:58.176] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:42:58.206] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:42:58.367] [INFO] cheese - inserting 1000 documents. first: Template:Kannada Nadu Party/meta/color and last: The Last Song -[2018-02-13T00:42:58.419] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:42:58.507] [INFO] cheese - inserting 1000 documents. first: იოსებ ბესარიონის ძე ჯუღაშვილი and last: Melita obtusata -[2018-02-13T00:42:58.552] [INFO] cheese - inserting 1000 documents. first: Stuttgart Messe and last: Bernard Wright -[2018-02-13T00:42:58.562] [INFO] cheese - inserting 1000 documents. first: Tunas Bangsa School and last: Itapeva State Park -[2018-02-13T00:42:58.576] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:42:58.588] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:42:58.611] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:42:58.677] [INFO] cheese - inserting 1000 documents. first: Ahmad ibn Farighun and last: Dexithea humeralis -[2018-02-13T00:42:58.721] [INFO] cheese - inserting 1000 documents. first: Quotient (group theory) and last: Wikipedia:WikiProject New York State -[2018-02-13T00:42:58.737] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:42:58.754] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:42:58.805] [INFO] cheese - inserting 1000 documents. first: Electoral results for the district of Lockyer and last: Museum of Polish Arms -[2018-02-13T00:42:59.003] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T00:42:59.049] [INFO] cheese - inserting 1000 documents. first: Rhaetian Railway Ge 6/6 I and last: Kiev in Miniature -[2018-02-13T00:42:59.130] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:42:59.185] [INFO] cheese - inserting 1000 documents. first: Aed Roin and last: Wikipedia:WikiProject Spam/LinkReports/aes.iupui.edu -[2018-02-13T00:42:59.292] [INFO] cheese - inserting 1000 documents. first: Category:1965–66 Middle Atlantic Conferences men's basketball season and last: Wikipedia:Articles for deletion/Eli Eli -[2018-02-13T00:42:59.307] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:42:59.380] [INFO] cheese - inserting 1000 documents. first: Dexithea klugii and last: Gilbert Collett (philatelist) -[2018-02-13T00:42:59.429] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:42:59.522] [INFO] cheese - inserting 1000 documents. first: Template:All India Majlis-E-Ittehadul Muslimeen/meta/color and last: Didier van Damme -[2018-02-13T00:42:59.545] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:42:59.670] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:42:59.763] [INFO] cheese - inserting 1000 documents. first: Klostergårdens IP and last: The Lone Wolf in Paris -[2018-02-13T00:42:59.810] [INFO] cheese - inserting 1000 documents. first: Park of miniatures and last: Template:Move-multi/doc -[2018-02-13T00:42:59.863] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:42:59.960] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:43:00.083] [INFO] cheese - inserting 1000 documents. first: Category:November 2013 events and last: New Zealand National Party leadership election, 1940 -[2018-02-13T00:43:00.095] [INFO] cheese - inserting 1000 documents. first: Thomas Foley (auditor of the imprests) and last: Walter (bishop) -[2018-02-13T00:43:00.179] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:43:00.220] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:43:00.409] [INFO] cheese - inserting 1000 documents. first: Roma Open and last: A. J. Reed -[2018-02-13T00:43:00.447] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:43:00.472] [INFO] cheese - inserting 1000 documents. first: Jolly Jack and last: Category:Anglo-Burmese wars -[2018-02-13T00:43:00.526] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:43:00.535] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand National Party leadership elections and last: File:First B Sc Graduate From Barbhitha Village Main Uddin.jpg -[2018-02-13T00:43:00.580] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:43:00.615] [INFO] cheese - inserting 1000 documents. first: Complete inner product space and last: Wikipedia:Today's featured article/January 12, 2010 -[2018-02-13T00:43:00.650] [INFO] cheese - inserting 1000 documents. first: ∀ Gundam I: Earth Light and last: Principality of Lübeck -[2018-02-13T00:43:00.665] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:43:00.699] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:00.702] [INFO] cheese - inserting 1000 documents. first: Template:St. Catharines municipal election, 2000/Position/Mayor and last: Wikipedia:Deletion log/January 2003 -[2018-02-13T00:43:00.803] [INFO] cheese - batch complete in: 1.133 secs -[2018-02-13T00:43:00.923] [INFO] cheese - inserting 1000 documents. first: Template:EM-DAT and last: A fire -[2018-02-13T00:43:00.951] [INFO] cheese - inserting 1000 documents. first: List of cities in Germany starting with K and last: Susanna (given name) -[2018-02-13T00:43:00.991] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:01.020] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:43:01.033] [INFO] cheese - inserting 1000 documents. first: Clyzomedus borneensis and last: Bauxite waste -[2018-02-13T00:43:01.087] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:43:01.095] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/JobsBroadway.com and last: State Road 395 -[2018-02-13T00:43:01.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/January 13, 2010 and last: Olga Moskalenko-Rocheva -[2018-02-13T00:43:01.158] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:43:01.160] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:43:01.367] [INFO] cheese - inserting 1000 documents. first: File:Kate Bush - Wow.png and last: Mesosa blairi -[2018-02-13T00:43:01.498] [INFO] cheese - inserting 1000 documents. first: Resmi Ahmed Efendi and last: Category:Wikipedia sockpuppets of PowerSane -[2018-02-13T00:43:01.535] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:43:01.560] [INFO] cheese - inserting 1000 documents. first: The hospital and last: Doctor Dolittle Meets a Londoner in Paris -[2018-02-13T00:43:01.643] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:43:01.647] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:43:01.744] [INFO] cheese - inserting 1000 documents. first: Wilhelm Wessel and last: File:Hana-Bi.JPG -[2018-02-13T00:43:01.771] [INFO] cheese - inserting 1000 documents. first: SR 395 and last: SF '58: The Year's Greatest Science Fiction and Fantasy -[2018-02-13T00:43:01.835] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:43:01.876] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:02.152] [INFO] cheese - inserting 1000 documents. first: Robert G. Flanders Jr. and last: Hunter Greene (disambiguation) -[2018-02-13T00:43:02.164] [INFO] cheese - inserting 1000 documents. first: Category:Masaryk University alumni and last: Wikipedia:Articles for deletion/How to Boil a Frog -[2018-02-13T00:43:02.179] [INFO] cheese - inserting 1000 documents. first: Karen Steurs and last: Category:1960 elections in New Zealand -[2018-02-13T00:43:02.198] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:43:02.209] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:43:02.247] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:43:02.263] [INFO] cheese - inserting 1000 documents. first: Surphanakha and last: New zealand maoris rugby league team -[2018-02-13T00:43:02.299] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:43:02.347] [INFO] cheese - inserting 1000 documents. first: Dretelj and last: Land Record -[2018-02-13T00:43:02.400] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:43:02.492] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion log/January 2004 and last: Stirling, Western Australia -[2018-02-13T00:43:02.562] [INFO] cheese - inserting 1000 documents. first: Ghati Subramanya and last: Meditation from Thaïs -[2018-02-13T00:43:02.612] [INFO] cheese - batch complete in: 1.809 secs -[2018-02-13T00:43:02.616] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:43:02.641] [INFO] cheese - inserting 1000 documents. first: Category:1963 elections in New Zealand and last: Antero Lumme -[2018-02-13T00:43:02.676] [INFO] cheese - inserting 1000 documents. first: Chang and Ang and last: History of submarine -[2018-02-13T00:43:02.708] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:43:02.765] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:43:02.914] [INFO] cheese - inserting 1000 documents. first: Bliss Wind Farm and last: SR 516 (WA) -[2018-02-13T00:43:03.011] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:43:03.046] [INFO] cheese - inserting 1000 documents. first: Zelota bryanti and last: File:Wilson Audio logo.png -[2018-02-13T00:43:03.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:SOPA initiative/Questions and last: Victor Amadeus of Sicily -[2018-02-13T00:43:03.106] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:43:03.240] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:43:03.349] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/athema.co.uk and last: 2014 Supercoppa Italiana -[2018-02-13T00:43:03.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/StephenPaternoster/Archive and last: 张国梁 -[2018-02-13T00:43:03.432] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:43:03.500] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:43:03.503] [INFO] cheese - inserting 1000 documents. first: SR 527 (WA) and last: Template:Miner County, South Dakota -[2018-02-13T00:43:03.584] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:43:03.690] [INFO] cheese - inserting 1000 documents. first: Category:Midlake albums and last: Wikipedia:Articles for deletion/Sheep Tag (second nomination) -[2018-02-13T00:43:03.745] [INFO] cheese - inserting 1000 documents. first: Peter Pan (novel and play) and last: Bhagvad Gita ban in Russia -[2018-02-13T00:43:03.759] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T00:43:03.848] [INFO] cheese - inserting 1000 documents. first: Microsoft Teams and last: 1 Armoured Cavalry Squadron -[2018-02-13T00:43:03.872] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:03.924] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:43:04.049] [INFO] cheese - inserting 1000 documents. first: Tuzun (amir al-umara) and last: Portal:Current events/2014 May 7 -[2018-02-13T00:43:04.058] [INFO] cheese - inserting 1000 documents. first: Love and Consequences: A Memoir of Hope and Survival and last: "Illyrian" type helmet -[2018-02-13T00:43:04.113] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:43:04.127] [INFO] cheese - inserting 1000 documents. first: Madras Presidency Legislative Council election, 1930 and last: Climate Research (journal) -[2018-02-13T00:43:04.140] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:43:04.273] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:43:04.331] [INFO] cheese - inserting 1000 documents. first: Andre Cailloux and last: Wikipedia:Introduction 3/Header -[2018-02-13T00:43:04.370] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/MikroKopter and last: Eugene Carroll -[2018-02-13T00:43:04.392] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:43:04.453] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:43:04.558] [INFO] cheese - inserting 1000 documents. first: Howard G. Swafford and last: Mahaboob Alam -[2018-02-13T00:43:04.576] [INFO] cheese - inserting 1000 documents. first: First Armoured Cavalry Squadron and last: Nyctimenius mamutensis -[2018-02-13T00:43:04.602] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:43:04.649] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:43:04.663] [INFO] cheese - inserting 1000 documents. first: Hello, Little Girl and last: Wikipedia:Articles for deletion/Jamie Anne Allman -[2018-02-13T00:43:04.728] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:43:04.928] [INFO] cheese - inserting 1000 documents. first: Kazma Sakamoto and last: File:TortolaPanoramaJost.JPG -[2018-02-13T00:43:04.935] [INFO] cheese - inserting 1000 documents. first: Ed Taubensee and last: File:Goshawk dove2.JPG -[2018-02-13T00:43:04.970] [INFO] cheese - inserting 1000 documents. first: Mount Pleasant, York Regional Municipality, Ontario and last: Wikipedia:Articles for deletion/4th and 2 -[2018-02-13T00:43:04.990] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:43:04.998] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:43:05.010] [INFO] cheese - inserting 1000 documents. first: Nyctimenius ochraceovittatus and last: Qinghai Tianyoude–BH Cycling Team -[2018-02-13T00:43:05.037] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:43:05.106] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:43:05.194] [INFO] cheese - inserting 1000 documents. first: File:Exploration rover nasa mars.jpg and last: File:Doe and fawns July 2006.jpg -[2018-02-13T00:43:05.245] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:43:05.277] [INFO] cheese - inserting 1000 documents. first: Mexican—Japanese Lyceum and last: Black-fronted Flowerpecker -[2018-02-13T00:43:05.355] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:43:05.508] [INFO] cheese - inserting 1000 documents. first: List of Albanian language poets and last: Category:Telecommunications in Lebanon -[2018-02-13T00:43:05.569] [INFO] cheese - inserting 1000 documents. first: Hindu Raj and last: Category:Collections of the Villa Giulia -[2018-02-13T00:43:05.583] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:43:05.630] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:43:05.675] [INFO] cheese - inserting 1000 documents. first: Autorité de contrôle prudentiel and last: Module:Sandbox/Yurik -[2018-02-13T00:43:05.724] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:43:05.775] [INFO] cheese - inserting 1000 documents. first: Wikipedia:HU and last: Category:Sports in Dallas -[2018-02-13T00:43:05.844] [INFO] cheese - inserting 1000 documents. first: Black-tailed Treecreeper and last: Eburia postica -[2018-02-13T00:43:05.844] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:43:05.909] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:43:06.008] [INFO] cheese - inserting 1000 documents. first: Ranunculus pensylvanicus and last: Yelli, Güdül -[2018-02-13T00:43:06.062] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:06.089] [INFO] cheese - inserting 1000 documents. first: Inniskilling Fusiliers and last: The Very Best of Cher DVD Edition -[2018-02-13T00:43:06.170] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:43:06.212] [INFO] cheese - inserting 1000 documents. first: Anaj Tegin and last: Draft:Dagmar Stelberg -[2018-02-13T00:43:06.325] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:43:06.352] [INFO] cheese - inserting 1000 documents. first: Category:Iraqi-Turkish relations and last: Wikipedia:Miscellany for deletion/User:Therese Dvir -[2018-02-13T00:43:06.418] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:43:06.476] [INFO] cheese - inserting 1000 documents. first: Eburia powelli and last: Tom Bailey (cricketer) -[2018-02-13T00:43:06.528] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:43:06.593] [INFO] cheese - inserting 1000 documents. first: Unsellables episode list and last: Emmalocera icasmopis -[2018-02-13T00:43:06.620] [INFO] cheese - inserting 1000 documents. first: Yolo, California and last: Altayskoe -[2018-02-13T00:43:06.653] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:43:06.714] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:06.872] [INFO] cheese - inserting 1000 documents. first: Ammoflight and last: Ildikó Tóth (actress) -[2018-02-13T00:43:06.939] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:43:07.023] [INFO] cheese - inserting 1000 documents. first: Diocese of Copiapó and last: Nhat Le River -[2018-02-13T00:43:07.110] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jarosław Leitgeber and last: Wikipedia:Sockpuppet investigations/Puntjuuu!.! -[2018-02-13T00:43:07.118] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Edwin S. Porter and last: Category:Parks in Simcoe County -[2018-02-13T00:43:07.137] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:43:07.176] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:43:07.182] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:43:07.326] [INFO] cheese - inserting 1000 documents. first: Altaiskoye and last: OUTNOW (ON magazine) -[2018-02-13T00:43:07.355] [INFO] cheese - inserting 1000 documents. first: Fabio Rovazzi and last: Lorenzo Moore (MP for Dungannon) -[2018-02-13T00:43:07.410] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:43:07.405] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:43:07.563] [INFO] cheese - inserting 1000 documents. first: Pale-eyed Thrush and last: Speak to Me Pretty -[2018-02-13T00:43:07.660] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:43:07.684] [INFO] cheese - inserting 1000 documents. first: Muscovite Civil War (1425-1453) and last: Yining (city) -[2018-02-13T00:43:07.685] [INFO] cheese - inserting 1000 documents. first: Honda just and last: Errol Hill -[2018-02-13T00:43:07.738] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:43:07.762] [INFO] cheese - inserting 1000 documents. first: Elton Vata and last: Category:314 establishments in Europe -[2018-02-13T00:43:07.764] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:43:07.889] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:07.976] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Oklahoma articles and last: Massachusetts route 43 -[2018-02-13T00:43:08.026] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:43:08.298] [INFO] cheese - inserting 1000 documents. first: El Alamein (film) and last: Category:Law enforcement in Metro Manila -[2018-02-13T00:43:08.305] [INFO] cheese - inserting 1000 documents. first: North Moor, Missouri and last: Category:Films based on Romanian novels -[2018-02-13T00:43:08.351] [INFO] cheese - inserting 1000 documents. first: Severe depression and last: Age and intelligence -[2018-02-13T00:43:08.370] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:43:08.380] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:43:08.429] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:43:08.492] [INFO] cheese - inserting 1000 documents. first: Category:Islands of the dependencies of Guadeloupe and last: Qabila Qarshe -[2018-02-13T00:43:08.564] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:43:08.602] [INFO] cheese - inserting 1000 documents. first: Alexander de Waal and last: Wikipedia:Articles for deletion/List of record producers -[2018-02-13T00:43:08.664] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:43:08.748] [INFO] cheese - inserting 1000 documents. first: Template:1989-90 NBA Central standings and last: Template:User Colorado College/doc -[2018-02-13T00:43:08.748] [INFO] cheese - inserting 1000 documents. first: Draft:Medical Problem List and last: William J. Simmons (disambiguation) -[2018-02-13T00:43:08.800] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:43:08.804] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:43:08.894] [INFO] cheese - inserting 1000 documents. first: Sergei Krasnikov and last: Template:WikiProject Human Rights -[2018-02-13T00:43:08.934] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:43:08.962] [INFO] cheese - inserting 1000 documents. first: This Is The Life and last: Massachusetts route 112 -[2018-02-13T00:43:08.980] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mary Mother of Peace Area Catholic School and last: Lajos Szűcs (disambiguation) -[2018-02-13T00:43:08.994] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:43:09.049] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:43:09.066] [INFO] cheese - inserting 1000 documents. first: Category:Hergé characters and last: Konidela production company -[2018-02-13T00:43:09.103] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:43:09.205] [INFO] cheese - inserting 1000 documents. first: Ohio State Route 75 and last: State Route 43 (Arkansas) -[2018-02-13T00:43:09.239] [INFO] cheese - inserting 1000 documents. first: Austrian State Prize for European Literature and last: Glen Cressman -[2018-02-13T00:43:09.246] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:43:09.259] [INFO] cheese - inserting 1000 documents. first: 2/1st Derbyshire Yeomanry and last: File:Maanikya audio cover.jpg -[2018-02-13T00:43:09.264] [INFO] cheese - inserting 1000 documents. first: Neuronal encoding of sound and last: Lester Shubin -[2018-02-13T00:43:09.271] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:43:09.322] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:43:09.406] [INFO] cheese - batch complete in: 4.369 secs -[2018-02-13T00:43:09.462] [INFO] cheese - inserting 1000 documents. first: Ashville-class gunboat (1917) and last: Category:Chichester City F.C. (1873) players -[2018-02-13T00:43:09.493] [INFO] cheese - inserting 1000 documents. first: Shaykhís and last: Missouri route 30 -[2018-02-13T00:43:09.512] [INFO] cheese - inserting 1000 documents. first: File:Circuitikz.png and last: File:DeduceYouSay Lobby Card.png -[2018-02-13T00:43:09.555] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:43:09.607] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:43:09.681] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:43:09.917] [INFO] cheese - inserting 1000 documents. first: The Taking of Pelham One Two Three and last: 1995 Japan Open Tennis Championships -[2018-02-13T00:43:09.994] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:43:10.040] [INFO] cheese - inserting 1000 documents. first: Fabien Noel and last: Sonora Horned Lark -[2018-02-13T00:43:10.043] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Thermostat Fallacy and last: OpenLinux Lite 1.0 -[2018-02-13T00:43:10.044] [INFO] cheese - inserting 1000 documents. first: Missouri highway 30 and last: State highway 84 (Missouri) -[2018-02-13T00:43:10.094] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:43:10.094] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:43:10.123] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:43:10.230] [INFO] cheese - inserting 1000 documents. first: 86 Wing (disambiguation) and last: Tea bowl (disambiguation) -[2018-02-13T00:43:10.292] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:43:10.504] [INFO] cheese - inserting 1000 documents. first: State Route 84 (Missouri) and last: Route 127 (Missouri) -[2018-02-13T00:43:10.535] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:43:10.653] [INFO] cheese - inserting 1000 documents. first: Muncy School District and last: Fer Falgae -[2018-02-13T00:43:10.688] [INFO] cheese - inserting 1000 documents. first: Ted Clayton and last: 2016 World Wrestling Championships - Women's freestyle 60 kg -[2018-02-13T00:43:10.745] [INFO] cheese - inserting 1000 documents. first: Temple of Monthu (disambiguation) and last: Башҡортостан -[2018-02-13T00:43:10.757] [INFO] cheese - inserting 1000 documents. first: Red Shirt Table and last: Category:1304 in Europe -[2018-02-13T00:43:10.762] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:43:10.772] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T00:43:10.846] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:43:10.871] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:43:10.893] [INFO] cheese - inserting 1000 documents. first: Blue John stone and last: Kathleen Fidler -[2018-02-13T00:43:11.005] [INFO] cheese - inserting 1000 documents. first: Highway 127 (Missouri) and last: State Highway 157 (Missouri) -[2018-02-13T00:43:11.006] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:43:11.108] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:43:11.281] [INFO] cheese - inserting 1000 documents. first: County Calendar and last: Red lentils -[2018-02-13T00:43:11.298] [INFO] cheese - inserting 1000 documents. first: 1903-04 Penn State Nittany Lions basketball team and last: Subramanya Temple, Munnar -[2018-02-13T00:43:11.329] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:43:11.340] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:43:11.342] [INFO] cheese - inserting 1000 documents. first: Saving Abel (2006 album) and last: Category:1312 in France -[2018-02-13T00:43:11.398] [INFO] cheese - inserting 1000 documents. first: State highway 157 (Missouri) and last: File:Louise Fitzhugh.jpg -[2018-02-13T00:43:11.425] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:43:11.433] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:43:11.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/alma.edu and last: Category:Mechanical reproductions of original works in need of additional detail -[2018-02-13T00:43:11.546] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:43:11.560] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Ettercamp and last: Template:1968 UCLA basketball -[2018-02-13T00:43:11.633] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T00:43:11.659] [INFO] cheese - inserting 1000 documents. first: P. J. Brophy and last: Bavarian Concordat (1817) -[2018-02-13T00:43:11.689] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:43:11.718] [INFO] cheese - inserting 1000 documents. first: Congressional District of Zamboanga City and last: Highway 371 (MO) -[2018-02-13T00:43:11.755] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:43:11.797] [INFO] cheese - inserting 1000 documents. first: MV Empire Fusilier and last: Svanevatn -[2018-02-13T00:43:11.863] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:43:11.899] [INFO] cheese - inserting 1000 documents. first: Per Klingenberg Hestetun and last: File:High speed railway map 3.jpg -[2018-02-13T00:43:11.966] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:43:12.009] [INFO] cheese - inserting 1000 documents. first: MCL Mapúa Institute of Technology at Laguna and last: Szoke Sakall -[2018-02-13T00:43:12.042] [INFO] cheese - inserting 1000 documents. first: George Robert Lewis and last: Géza Bereményi -[2018-02-13T00:43:12.070] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:43:12.089] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:43:12.107] [INFO] cheese - inserting 1000 documents. first: Route 371 (Missouri) and last: Labour Protection League -[2018-02-13T00:43:12.159] [INFO] cheese - inserting 1000 documents. first: The City of a Thousand Delights and last: Category:People from Los Altos Hills, California -[2018-02-13T00:43:12.200] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:43:12.214] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:43:12.619] [INFO] cheese - inserting 1000 documents. first: Rockford, Ontario and last: George Campbell Ross -[2018-02-13T00:43:12.631] [INFO] cheese - inserting 1000 documents. first: Kraut Line and last: Luxury Briefing -[2018-02-13T00:43:12.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Difulton and last: Wikipedia:Articles for deletion/Don Bryant (politician) -[2018-02-13T00:43:12.669] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:43:12.679] [INFO] cheese - inserting 1000 documents. first: Dicynodon jouberti and last: Category:People from Nome, Norway -[2018-02-13T00:43:12.716] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:43:12.781] [INFO] cheese - inserting 1000 documents. first: Algal cultures and last: Missouri route 65 (decommissioned) -[2018-02-13T00:43:12.779] [INFO] cheese - inserting 1000 documents. first: Category:Pages using infobox French communauté with unknown parameters and last: Robert Heath (engineer) -[2018-02-13T00:43:12.791] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:43:12.832] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:43:12.873] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:43:12.922] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:43:13.217] [INFO] cheese - inserting 1000 documents. first: Haathi Parbat and last: Lada-Energia Ulyanovsk -[2018-02-13T00:43:13.239] [INFO] cheese - inserting 1000 documents. first: Missouri highway 65 (decommissioned) and last: Ruslan Bodelan -[2018-02-13T00:43:13.271] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:43:13.295] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:43:13.393] [INFO] cheese - inserting 1000 documents. first: Reformed Church, Uileacu Șimleului and last: 1990 ABN World Tennis Tournament -[2018-02-13T00:43:13.429] [INFO] cheese - inserting 1000 documents. first: Category:Recurring sporting events disestablished in 1972 and last: Category:Sportspeople from Piedimonte Matese -[2018-02-13T00:43:13.430] [INFO] cheese - inserting 1000 documents. first: Randell Johnson and last: Great Lakes boreal wolf -[2018-02-13T00:43:13.446] [INFO] cheese - inserting 1000 documents. first: Great Thatch ruin and last: Sheung Shui Slaughter House -[2018-02-13T00:43:13.463] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:13.508] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:43:13.521] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:43:13.557] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:43:13.857] [INFO] cheese - inserting 1000 documents. first: Portal:Disaster and last: State Route 463 (Arkansas) -[2018-02-13T00:43:13.870] [INFO] cheese - inserting 1000 documents. first: FC Lada-Energiya-2 Dimitrovgrad and last: Portal:University of Oxford/Selected quotation/10 -[2018-02-13T00:43:13.921] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:13.945] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:14.017] [INFO] cheese - inserting 1000 documents. first: ActivityStreams and last: RMA color code -[2018-02-13T00:43:14.033] [INFO] cheese - inserting 1000 documents. first: Universal Soldier: A New Dimension (2012) and last: Template:VillanovaBasketballSeasons -[2018-02-13T00:43:14.046] [INFO] cheese - inserting 1000 documents. first: Yayasan Senang Hati and last: Miroslav Krleza Lexicographic Institute -[2018-02-13T00:43:14.109] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:43:14.126] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:43:14.143] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:43:14.191] [INFO] cheese - inserting 1000 documents. first: File:Tonaton-logo.svg and last: Category:Female wheelchair racers -[2018-02-13T00:43:14.261] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:43:14.399] [INFO] cheese - inserting 1000 documents. first: First United Methodist Church of Umatilla) and last: Pat denner -[2018-02-13T00:43:14.454] [INFO] cheese - inserting 1000 documents. first: Sonrais and last: Portal:Greater Los Angeles/Selected article -[2018-02-13T00:43:14.508] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:43:14.521] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:43:14.597] [INFO] cheese - inserting 1000 documents. first: RMA colour code and last: File:Sharda (1981 film).jpg -[2018-02-13T00:43:14.656] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:43:14.760] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Yellala Falls and last: PRR BB3 -[2018-02-13T00:43:14.775] [INFO] cheese - inserting 1000 documents. first: Sofia de Grecia y Hannover and last: Toguz-Bulak, Alay -[2018-02-13T00:43:14.818] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:43:14.833] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:43:14.913] [INFO] cheese - inserting 1000 documents. first: Limnoecia amblopa and last: Ithome pernigrella -[2018-02-13T00:43:14.999] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:43:15.055] [INFO] cheese - inserting 1000 documents. first: Solar eclipse of September 2, 2035 and last: George M. Kober medal -[2018-02-13T00:43:15.148] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:43:15.245] [INFO] cheese - inserting 1000 documents. first: State Route 119 (Alabama) and last: Harley-Davidson Twin Cam engine -[2018-02-13T00:43:15.271] [INFO] cheese - inserting 1000 documents. first: Category:Consulting firms established in 1956 and last: David Agnew (footballer) -[2018-02-13T00:43:15.373] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:43:15.376] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T00:43:15.444] [INFO] cheese - inserting 1000 documents. first: Category:Education in Nipissing District and last: 1987 Montana Grizzlies football team -[2018-02-13T00:43:15.510] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:43:15.573] [INFO] cheese - inserting 1000 documents. first: Algeria national rugby union team and last: Paul Duerden -[2018-02-13T00:43:15.746] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:43:15.791] [INFO] cheese - inserting 1000 documents. first: Portal:University of Oxford/Did you know/12 and last: Dirk I van Brederode -[2018-02-13T00:43:15.804] [INFO] cheese - inserting 1000 documents. first: Ithome pignerata and last: Wikipedia:Articles for deletion/Kevin Schaller -[2018-02-13T00:43:15.845] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:43:15.927] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T00:43:16.030] [INFO] cheese - inserting 1000 documents. first: Portuguese Open and last: List of Aeroflot accidents and incidents in the 1980s -[2018-02-13T00:43:16.095] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:43:16.204] [INFO] cheese - inserting 1000 documents. first: Portal:Indonesia/BOTW/40, 2006 and last: State Route 171 (Virginia pre-1928) -[2018-02-13T00:43:16.275] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:43:16.310] [INFO] cheese - inserting 1000 documents. first: War of the Heavenly Horses and last: 2012 Blossom Cup -[2018-02-13T00:43:16.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/faces.bravehost.com and last: Mitchell Recreation Area -[2018-02-13T00:43:16.331] [INFO] cheese - inserting 1000 documents. first: MCEM 3 Submachine gun and last: JASSS -[2018-02-13T00:43:16.390] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:43:16.394] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:43:16.399] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:43:16.414] [INFO] cheese - inserting 1000 documents. first: Category:October 1947 events and last: Template:Editnotices/Page/Matt Cecchin -[2018-02-13T00:43:16.495] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:43:16.536] [INFO] cheese - inserting 1000 documents. first: Mt. Pulaski, Illinois and last: St. Stephen's Cathedral (Owensboro, Kentucky) -[2018-02-13T00:43:16.596] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:43:16.692] [INFO] cheese - inserting 1000 documents. first: Brezova and last: Serie noire -[2018-02-13T00:43:16.715] [INFO] cheese - inserting 1000 documents. first: Diplazium pycnocarpon and last: Wikipedia:Articles for deletion/Noncommutative polynomial -[2018-02-13T00:43:16.738] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:43:16.740] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:43:16.784] [INFO] cheese - inserting 1000 documents. first: State Route 171 (Virginia 1923) and last: Serbian clan -[2018-02-13T00:43:16.810] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Matt Stevic and last: Category:Events in Sarajevo -[2018-02-13T00:43:16.827] [INFO] cheese - inserting 1000 documents. first: 1957 Montana Grizzlies football team and last: Ocean Butterflies International Pte Ltd -[2018-02-13T00:43:16.829] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:43:16.860] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:43:16.912] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:43:17.097] [INFO] cheese - inserting 1000 documents. first: Convergent boundaries and last: MV Viking Sky -[2018-02-13T00:43:17.135] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:43:17.168] [INFO] cheese - inserting 1000 documents. first: Category:Romanian Catholics and last: Powerising -[2018-02-13T00:43:17.178] [INFO] cheese - inserting 1000 documents. first: Church-governmental separation in America and last: New Orleans Medical College -[2018-02-13T00:43:17.219] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:43:17.223] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:43:17.333] [INFO] cheese - inserting 1000 documents. first: W23EM-D and last: Annette Robertson -[2018-02-13T00:43:17.345] [INFO] cheese - inserting 1000 documents. first: Ferrisburgh and last: Maurice McLoughlin (tennis) -[2018-02-13T00:43:17.361] [INFO] cheese - inserting 1000 documents. first: Greenwood Cemetery (Tallahassee, Florida) and last: UCI World Cyclo-cross Championships, Men -[2018-02-13T00:43:17.391] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:43:17.416] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:43:17.496] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:43:17.756] [INFO] cheese - inserting 1000 documents. first: Haweswater Aquaduct and last: Enaction -[2018-02-13T00:43:17.821] [INFO] cheese - inserting 1000 documents. first: نیزامی گه‌نجه‌وی and last: Arab thought foundation -[2018-02-13T00:43:17.855] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:43:17.914] [INFO] cheese - inserting 1000 documents. first: Powerbocker and last: Category:ABB Asea Brown Boveri -[2018-02-13T00:43:17.937] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:18.054] [INFO] cheese - inserting 1000 documents. first: Gravitational instability theory and last: List of World Transplant Games editions -[2018-02-13T00:43:18.072] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:43:18.190] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:43:18.312] [INFO] cheese - inserting 1000 documents. first: Il conformista and last: List of the Roman Catholic cathedrals of the United States -[2018-02-13T00:43:18.339] [INFO] cheese - inserting 1000 documents. first: File:Warszawa - Pałac Tyszkiewiczów 01.jpg and last: Fu Ping -[2018-02-13T00:43:18.450] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T00:43:18.487] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T00:43:18.555] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Aviation/Australian aviation task force and last: Soimu River (Crisul Negru) -[2018-02-13T00:43:18.602] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:43:18.675] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Indonesian communist exiles in Tirana and last: Wikipedia:WikiProject Spam/Local/hulkhoganhistory.weebly.com -[2018-02-13T00:43:18.728] [INFO] cheese - inserting 1000 documents. first: Greg Ritter and last: Alder Plains, Nova Scotia -[2018-02-13T00:43:18.745] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:43:18.803] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:43:18.827] [INFO] cheese - inserting 1000 documents. first: Hyundai Unicorns and last: Rene Mauge de Cely -[2018-02-13T00:43:18.847] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:43:18.911] [INFO] cheese - inserting 1000 documents. first: Spanish general election, 1920 and last: Hi de hi -[2018-02-13T00:43:18.913] [INFO] cheese - inserting 1000 documents. first: Huddersfield East (constituency) and last: Ogi, Oita -[2018-02-13T00:43:18.949] [INFO] cheese - inserting 1000 documents. first: Boschertown, Missouri and last: Wikipedia:WikiProject Spam/LinkReports/promotionxprt.com -[2018-02-13T00:43:18.949] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:43:18.967] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:43:19.014] [INFO] cheese - inserting 1000 documents. first: Remi Alvarez and last: Olle Ljungstrom -[2018-02-13T00:43:19.017] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:43:19.059] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:43:19.203] [INFO] cheese - inserting 1000 documents. first: File:Texas State Capitol Summer 2005.jpg and last: Category:Discoveries by Takeshi Urata -[2018-02-13T00:43:19.241] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:43:19.244] [INFO] cheese - inserting 1000 documents. first: Confederation Libre des Travailleurs du Tchad and last: Slovenske vzdusne zbrane -[2018-02-13T00:43:19.266] [INFO] cheese - inserting 1000 documents. first: Labdia caudata and last: Chang T'ang -[2018-02-13T00:43:19.270] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:43:19.295] [INFO] cheese - inserting 1000 documents. first: Rock the American Way and last: Jagers in de Sneeuw -[2018-02-13T00:43:19.333] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:43:19.334] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:43:19.399] [INFO] cheese - inserting 1000 documents. first: Naoiri District, Oita and last: Rikken Kokumintō -[2018-02-13T00:43:19.434] [INFO] cheese - inserting 1000 documents. first: Template:Socialist Party of the Valencian Country (1974)/meta/color and last: Category:March 1893 events -[2018-02-13T00:43:19.457] [INFO] cheese - inserting 1000 documents. first: Torsten Haegerstrand and last: Schoenenberg (Schwarzwald) -[2018-02-13T00:43:19.461] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:43:19.515] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:43:19.528] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:43:19.748] [INFO] cheese - inserting 1000 documents. first: Template:Eagles1984DraftPicks and last: Freedom From Fear: The American People in Depression and War, 1929-1945 -[2018-02-13T00:43:19.825] [INFO] cheese - inserting 1000 documents. first: Necula Raducan and last: Zee Cine Award Best Dialogue -[2018-02-13T00:43:19.827] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:43:19.855] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:43:19.896] [INFO] cheese - inserting 1000 documents. first: 2OCB and last: Alcón -[2018-02-13T00:43:19.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tiger Lily (Rupert) and last: Template:2006 Florida Gators football -[2018-02-13T00:43:19.935] [INFO] cheese - inserting 1000 documents. first: Circumorbital scales and last: Virginia Route 88 -[2018-02-13T00:43:19.971] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:43:20.017] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:43:20.063] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:20.117] [INFO] cheese - inserting 1000 documents. first: Thû and last: List of lesbian, gay, bisexual or transgender-related films of 2017 -[2018-02-13T00:43:20.168] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:43:20.319] [INFO] cheese - inserting 1000 documents. first: Biological Psychiatry (journal) and last: Raeni kuela -[2018-02-13T00:43:20.380] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:43:20.538] [INFO] cheese - inserting 1000 documents. first: D-54 and last: Pied Shield Bug -[2018-02-13T00:43:20.572] [INFO] cheese - inserting 1000 documents. first: Dev.D (2009 film) and last: Book:Motorsport in New Zealand -[2018-02-13T00:43:20.598] [INFO] cheese - inserting 1000 documents. first: Ivana Střondalová and last: Naughty Boy (disambiguation) -[2018-02-13T00:43:20.604] [INFO] cheese - inserting 1000 documents. first: Virginia Route 86 and last: Template:PKNA -[2018-02-13T00:43:20.608] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T00:43:20.632] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:43:20.701] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:43:20.713] [INFO] cheese - inserting 1000 documents. first: Pekka ja Patka and last: Tuskegee, AL mSA -[2018-02-13T00:43:20.718] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:43:20.771] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:43:20.958] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Pipe Bands articles and last: The Woman's Crusade -[2018-02-13T00:43:21.082] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T00:43:21.211] [INFO] cheese - inserting 1000 documents. first: Finger tapping (piano) and last: BloodClan -[2018-02-13T00:43:21.230] [INFO] cheese - inserting 1000 documents. first: Draft:List of former Maryland state highways (200–399) and last: Rhys Lewis (disambiguation) -[2018-02-13T00:43:21.233] [INFO] cheese - inserting 1000 documents. first: Hatamabad-e Gol Gol and last: Carl Cederström -[2018-02-13T00:43:21.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Magnificent Desolation and last: Portal:Spaceflight/On This Day/20 March -[2018-02-13T00:43:21.255] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:43:21.265] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:43:21.296] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:43:21.315] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:21.374] [INFO] cheese - inserting 1000 documents. first: Oxygen/Aux Send and last: 3-coloring -[2018-02-13T00:43:21.432] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:21.532] [INFO] cheese - inserting 1000 documents. first: Category:386 establishments by continent and last: Category:New Mexico elections, 1974 -[2018-02-13T00:43:21.584] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:43:21.697] [INFO] cheese - inserting 1000 documents. first: German military administration in occupied Belgium during World War II and last: Gregor Bajde -[2018-02-13T00:43:21.700] [INFO] cheese - inserting 1000 documents. first: Hedwig Von Trapp and last: Extrapolation based molecular systems biology -[2018-02-13T00:43:21.748] [INFO] cheese - inserting 1000 documents. first: Râbniţa sub-district, Transnistria and last: Manjack -[2018-02-13T00:43:21.751] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:43:21.744] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:43:21.801] [INFO] cheese - inserting 1000 documents. first: Arrondissement de Béziers and last: Coster walk -[2018-02-13T00:43:21.828] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:43:21.895] [INFO] cheese - inserting 1000 documents. first: Kananaskis Lakes and last: Baron Cadogan of Reading -[2018-02-13T00:43:21.901] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:43:21.984] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:43:22.014] [INFO] cheese - inserting 1000 documents. first: Category:Ridges of Europe and last: Jean-Paul LeBlanc (politician) -[2018-02-13T00:43:22.053] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:43:22.221] [INFO] cheese - inserting 1000 documents. first: Anelaphus hirtus and last: Portal:India/India Quiz/14 -[2018-02-13T00:43:22.278] [INFO] cheese - inserting 1000 documents. first: Manjack (plant) and last: 中元 -[2018-02-13T00:43:22.347] [INFO] cheese - inserting 1000 documents. first: File:Mimana psp boxart.jpg and last: Template:FMS Scale small -[2018-02-13T00:43:22.359] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:43:22.498] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:43:22.505] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:43:22.547] [INFO] cheese - inserting 1000 documents. first: Pimp walk and last: Ja'farkhan -[2018-02-13T00:43:22.628] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:22.708] [INFO] cheese - inserting 1000 documents. first: Baron Parker of Macclesfield and last: 2006 united states elections -[2018-02-13T00:43:22.710] [INFO] cheese - inserting 1000 documents. first: Category:Firefighting in Denmark and last: Geklimon -[2018-02-13T00:43:22.774] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:43:22.774] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:43:23.013] [INFO] cheese - inserting 1000 documents. first: Category:Malta-related lists and last: Sweelinck Conservatorium -[2018-02-13T00:43:23.062] [INFO] cheese - inserting 1000 documents. first: Lithodes galapagensis and last: Herbert Brees -[2018-02-13T00:43:23.080] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:43:23.142] [INFO] cheese - inserting 1000 documents. first: Category:People from the County of Vermilion River and last: Edward Dowell -[2018-02-13T00:43:23.143] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Holne Chase Primary School and last: David M. Camp -[2018-02-13T00:43:23.147] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:43:23.202] [INFO] cheese - inserting 1000 documents. first: Category:Brazilian Naval Aviation and last: Sharin no Kuni -[2018-02-13T00:43:23.207] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:43:23.246] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T00:43:23.279] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:43:23.444] [INFO] cheese - inserting 1000 documents. first: Texas State Highway 348 and last: Action francaise -[2018-02-13T00:43:23.496] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:43:23.513] [INFO] cheese - inserting 1000 documents. first: United states elections 2006 and last: List of tallest structures in Norway -[2018-02-13T00:43:23.625] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:43:23.809] [INFO] cheese - inserting 1000 documents. first: Category:September 1929 events and last: Category:April 1939 events -[2018-02-13T00:43:23.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fengshui.fi and last: Saulnieres -[2018-02-13T00:43:23.896] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:43:23.907] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2011 December 30 and last: Revd Henry Joy Fynes-Clinton -[2018-02-13T00:43:23.913] [INFO] cheese - inserting 1000 documents. first: Species (comics) and last: Wikipedia:Articles for deletion/United Construction Company Inc. -[2018-02-13T00:43:23.940] [INFO] cheese - inserting 1000 documents. first: Georgia State Route 20 Spur (Cartersville) and last: Template:Festival de Gramado Best Director Award -[2018-02-13T00:43:23.950] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:43:24.057] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:43:24.222] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:43:24.262] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T00:43:24.493] [INFO] cheese - inserting 1000 documents. first: Marquise du Plessis-Belliere and last: Birds nest -[2018-02-13T00:43:24.528] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:43:24.620] [INFO] cheese - inserting 1000 documents. first: Ntebogang Secondary School and last: Category:Maratha princely states -[2018-02-13T00:43:24.688] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:43:24.740] [INFO] cheese - inserting 1000 documents. first: Prescription charges and last: Cynthia Kimberlin -[2018-02-13T00:43:24.880] [INFO] cheese - inserting 1000 documents. first: File:Grey Cup 05.svg and last: Category:Preserved steam locomotives of Switzerland -[2018-02-13T00:43:24.945] [INFO] cheese - batch complete in: 1.32 secs -[2018-02-13T00:43:24.987] [INFO] cheese - inserting 1000 documents. first: Hazirim (Candan Ercetin album) and last: Jinmaku Kyugoro -[2018-02-13T00:43:25.003] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T00:43:25.011] [INFO] cheese - inserting 1000 documents. first: File:In the Conservatory - edited.jpg and last: File:Front Cover of Turrican Game Box, May 2014.jpg -[2018-02-13T00:43:25.029] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:43:25.102] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T00:43:25.359] [INFO] cheese - inserting 1000 documents. first: Template:PBB/10939 and last: Category:Southwest Conference football templates -[2018-02-13T00:43:25.411] [INFO] cheese - inserting 1000 documents. first: Gyergyoremete and last: Tauell -[2018-02-13T00:43:25.420] [INFO] cheese - inserting 1000 documents. first: H:FONTS and last: Mizar (Sabotaggio in mare) -[2018-02-13T00:43:25.472] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:43:25.540] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:43:25.632] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T00:43:25.651] [INFO] cheese - inserting 1000 documents. first: Passive solar gain and last: Wikipedia:Bots/Requests for approval/TawkerbotTorA -[2018-02-13T00:43:25.730] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:43:25.811] [INFO] cheese - inserting 1000 documents. first: Libby Museum and last: Mulla Morad ibn Ali Khan Tafreshi -[2018-02-13T00:43:25.819] [INFO] cheese - inserting 1000 documents. first: 洋務運動 and last: Director General Environment -[2018-02-13T00:43:26.029] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:43:26.030] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T00:43:26.114] [INFO] cheese - inserting 1000 documents. first: Boxer indemnity grant and last: Gilia brecciarum -[2018-02-13T00:43:26.152] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:43:26.251] [INFO] cheese - inserting 1000 documents. first: Catherine Pelham and last: Erebiina -[2018-02-13T00:43:26.391] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:43:26.429] [INFO] cheese - inserting 1000 documents. first: BAT (disambiguation) and last: Category:Architecture databases -[2018-02-13T00:43:26.600] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:43:26.907] [INFO] cheese - inserting 1000 documents. first: Liukung Island and last: Vytautas` the Great Church -[2018-02-13T00:43:26.947] [INFO] cheese - inserting 1000 documents. first: File:Vienna Octet 1962 touring Southern Afrtica.jpg and last: John H. Hays -[2018-02-13T00:43:26.996] [INFO] cheese - inserting 1000 documents. first: Director-General Health and last: Kevin McCabe (Sheffield United) -[2018-02-13T00:43:27.004] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T00:43:27.031] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T00:43:27.113] [INFO] cheese - inserting 1000 documents. first: List of United States armed forces unit mottoes and last: Category:2017 WNBA season -[2018-02-13T00:43:27.183] [INFO] cheese - inserting 1000 documents. first: Dragan Brnovic and last: Florida Ornithological Society -[2018-02-13T00:43:27.198] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T00:43:27.349] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T00:43:27.384] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T00:43:27.560] [INFO] cheese - inserting 1000 documents. first: Category:House of Leuchtenberg and last: Template:Canadian election result -[2018-02-13T00:43:27.774] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T00:43:27.944] [INFO] cheese - inserting 1000 documents. first: Category:2014 in Northern Cyprus and last: B-FAST -[2018-02-13T00:43:28.017] [INFO] cheese - inserting 1000 documents. first: Mount Heng (Shanxi) and last: List of Hail Mary's in American football -[2018-02-13T00:43:28.079] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T00:43:28.185] [INFO] cheese - inserting 1000 documents. first: Universal Express and last: File:Computeractive issue 263 RGB 150px.jpg -[2018-02-13T00:43:28.185] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T00:43:28.249] [INFO] cheese - inserting 1000 documents. first: Category:Borders of Idaho and last: MA 51 -[2018-02-13T00:43:28.265] [INFO] cheese - inserting 1000 documents. first: Category:Psophodidae and last: File:Tazewell and Peoria Railroad logo.png -[2018-02-13T00:43:28.350] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:43:28.409] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T00:43:28.415] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T00:43:28.555] [INFO] cheese - inserting 1000 documents. first: Template:Subatomic particle/symbol/triple top omega and last: Holy Resurrection Church (Kodiak, Alaska) -[2018-02-13T00:43:28.656] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:43:28.676] [INFO] cheese - inserting 1000 documents. first: Category:Islamic organisations based in Finland and last: Haj eilkhani -[2018-02-13T00:43:28.799] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:43:28.964] [INFO] cheese - inserting 1000 documents. first: Kate (Lost) and last: Victoriano Santos Iriarte -[2018-02-13T00:43:28.972] [INFO] cheese - inserting 1000 documents. first: List of San Francisco topics and last: Lo Hecho Esta Hecho (Shakira song) -[2018-02-13T00:43:28.979] [INFO] cheese - inserting 1000 documents. first: File:Texas Northeastern Railroad logo.png and last: Siege of Saint-Suzanne (1083–1086) -[2018-02-13T00:43:28.991] [INFO] cheese - inserting 1000 documents. first: Alcherus, monk of Clairvaux and last: 1925 Major League Baseball season -[2018-02-13T00:43:29.056] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:43:29.068] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:43:29.080] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T00:43:29.083] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:43:29.302] [INFO] cheese - inserting 1000 documents. first: Hoax Slayer and last: List of awards named after governors general of Canada -[2018-02-13T00:43:29.433] [INFO] cheese - inserting 1000 documents. first: End Of America 2011 (marketing) and last: Juan Madariaga -[2018-02-13T00:43:29.513] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:29.690] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T00:43:29.742] [INFO] cheese - inserting 1000 documents. first: File:Antique konya turkish 30911.jpg and last: European Short Course Swimming Championships 1998 - Men's 50m Breaststroke -[2018-02-13T00:43:29.874] [INFO] cheese - inserting 1000 documents. first: KFMM and last: Vladimír Palko -[2018-02-13T00:43:29.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Domenic Di Rosa (actor) and last: Category:1226 establishments in Japan -[2018-02-13T00:43:29.950] [INFO] cheese - inserting 1000 documents. first: Ferrari 126C and last: Template (vehicle racing) -[2018-02-13T00:43:30.000] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T00:43:30.001] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T00:43:30.037] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:43:30.107] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T00:43:30.536] [INFO] cheese - inserting 1000 documents. first: File:2Cellos In2ition.jpg and last: Belt maker -[2018-02-13T00:43:30.635] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T00:43:30.717] [INFO] cheese - inserting 1000 documents. first: Category:The Axis of Awesome albums and last: Category:Wikipedia articles in need of updating from January 2012 -[2018-02-13T00:43:30.726] [INFO] cheese - inserting 1000 documents. first: Category:1999 in the Turks and Caicos Islands and last: New Hanover County School District -[2018-02-13T00:43:30.778] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:43:30.801] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:43:30.857] [INFO] cheese - inserting 1000 documents. first: European Short Course Swimming Championships 1998 - Men's 50m Backstroke and last: Wikipedia:Sockpuppet investigations/Canto2009 -[2018-02-13T00:43:30.868] [INFO] cheese - inserting 1000 documents. first: If I Ran The Circus and last: MBFC -[2018-02-13T00:43:30.961] [INFO] cheese - inserting 1000 documents. first: KABI (AM) and last: File:Changes in US money supply 1960-2007.gif -[2018-02-13T00:43:30.969] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:43:30.989] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:43:31.039] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:43:31.144] [INFO] cheese - inserting 1000 documents. first: Belt-maker and last: File:Chopper Read - Interview with a Madman.jpg -[2018-02-13T00:43:31.195] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:43:31.455] [INFO] cheese - inserting 1000 documents. first: Template:Lang-tam and last: Xyelodontophis -[2018-02-13T00:43:31.537] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles needing clarification from January 2012 and last: Bellarine Wetlands Important Bird Area -[2018-02-13T00:43:31.545] [INFO] cheese - inserting 1000 documents. first: Psychic Friends and last: Prairie City, California -[2018-02-13T00:43:31.550] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:43:31.618] [INFO] cheese - inserting 1000 documents. first: Louis Coppersmith and last: Pisote -[2018-02-13T00:43:31.645] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:43:31.651] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:43:31.733] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:43:31.835] [INFO] cheese - inserting 1000 documents. first: Category:Alacalufan languages and last: Portal:Louisville/On this day.../April 11 -[2018-02-13T00:43:31.973] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:43:32.097] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mathematics Collaboration of the Month and last: Template:POTD protected/2014-05-21 -[2018-02-13T00:43:32.190] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T00:43:32.289] [INFO] cheese - inserting 1000 documents. first: 2016 TaxSlayer Bowl (disambiguation) and last: The Music Hole -[2018-02-13T00:43:32.334] [INFO] cheese - inserting 1000 documents. first: Lancaster by-election, 1928 and last: Harold Bull -[2018-02-13T00:43:32.391] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:43:32.451] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:32.461] [INFO] cheese - inserting 1000 documents. first: Iron vest and last: 1961 in Irish television -[2018-02-13T00:43:32.528] [INFO] cheese - inserting 1000 documents. first: Sawback angelshark and last: Seacoast Waldorf School -[2018-02-13T00:43:32.556] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:43:32.600] [INFO] cheese - inserting 1000 documents. first: Alenka Godec and last: Wikipedia:WikiProject U.S. Roads/Washington/Directional signage -[2018-02-13T00:43:32.600] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:43:32.671] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:43:32.717] [INFO] cheese - inserting 1000 documents. first: Malton Airfield and last: Engenius -[2018-02-13T00:43:32.765] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:43:32.830] [INFO] cheese - inserting 1000 documents. first: Category:Paraguayan male fencers and last: File:DYS F.C. Logo.png -[2018-02-13T00:43:32.909] [INFO] cheese - inserting 1000 documents. first: Heartbreaker (disambiguation) and last: File:Setsugekka (Dears).jpg -[2018-02-13T00:43:32.915] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:43:32.971] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:43:33.368] [INFO] cheese - inserting 1000 documents. first: Pierre Maguelon and last: Wikipedia:United States Education Program/Courses/Adolescent Literature Spring 2012 (Adrianne Wadewitz)/Grading -[2018-02-13T00:43:33.403] [INFO] cheese - inserting 1000 documents. first: State Route 838 (Virginia pre-1933) and last: Aeshna isosceles -[2018-02-13T00:43:33.511] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:43:33.635] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:43:33.791] [INFO] cheese - inserting 1000 documents. first: Manila, Arizona and last: File:Bitbucket UI.png -[2018-02-13T00:43:33.801] [INFO] cheese - inserting 1000 documents. first: Iftimia River and last: Template:User html-1 -[2018-02-13T00:43:33.802] [INFO] cheese - inserting 1000 documents. first: List of Southern California transit agencies and last: Treaty Of Portsmouth -[2018-02-13T00:43:33.875] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:43:33.899] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:43:33.946] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T00:43:34.010] [INFO] cheese - inserting 1000 documents. first: Presaddfed and last: Palakol (Assembly constituency) -[2018-02-13T00:43:34.107] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T00:43:34.244] [INFO] cheese - inserting 1000 documents. first: Aeolosaurus rionegrinus and last: Category:A.C. Monopoli -[2018-02-13T00:43:34.274] [INFO] cheese - inserting 1000 documents. first: File:Tithonus x files.jpg and last: East Glacier Park, MT -[2018-02-13T00:43:34.296] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:43:34.339] [INFO] cheese - inserting 1000 documents. first: Template:Carlton AFL Women's current squad and last: Peachy Harrison -[2018-02-13T00:43:34.372] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:43:34.388] [INFO] cheese - inserting 1000 documents. first: Treaty Of San Francisco and last: Iki-Burul'skiy Raion -[2018-02-13T00:43:34.447] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:43:34.483] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:43:34.783] [INFO] cheese - inserting 1000 documents. first: Template:Without Fear Movement/meta/color and last: New Castle, Ohio -[2018-02-13T00:43:34.843] [INFO] cheese - inserting 1000 documents. first: East African Campaign (WWI) and last: John R. Chambliss, Jr. -[2018-02-13T00:43:34.845] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:43:34.849] [INFO] cheese - inserting 1000 documents. first: File:KNUV logo.jpg and last: KyXy -[2018-02-13T00:43:34.882] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:43:34.912] [INFO] cheese - inserting 1000 documents. first: 2017 UCI Cyclo-cross World Championships and last: Bovina Center, New York -[2018-02-13T00:43:34.922] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:43:34.948] [INFO] cheese - inserting 1000 documents. first: D-finite function and last: Battle of the Fields of Cato -[2018-02-13T00:43:34.976] [INFO] cheese - inserting 1000 documents. first: Iki-Burul'ski Raion and last: Princes of Monaco family tree -[2018-02-13T00:43:35.007] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:43:35.074] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:43:35.085] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:35.245] [INFO] cheese - inserting 1000 documents. first: Leon Tomșa and last: Category:2014 Toulon Tournament -[2018-02-13T00:43:35.279] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:43:35.391] [INFO] cheese - inserting 1000 documents. first: Template:Infobox dim/sandbox and last: La Sexta -[2018-02-13T00:43:35.406] [INFO] cheese - inserting 1000 documents. first: Amplitude-comparison monopulse and last: Flashcube -[2018-02-13T00:43:35.437] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:43:35.486] [INFO] cheese - inserting 1000 documents. first: Nakatsuru and last: Asheville Redefines Transit -[2018-02-13T00:43:35.503] [INFO] cheese - inserting 1000 documents. first: 2001 IIHF Asian Oceanic U18 Championship and last: Melamkurkurra -[2018-02-13T00:43:35.507] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:43:35.519] [INFO] cheese - inserting 1000 documents. first: NSB El 1 and last: Winnicummet -[2018-02-13T00:43:35.547] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:43:35.575] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:43:35.599] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:43:35.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sglearntodrive.com and last: Siberian Cypress -[2018-02-13T00:43:35.691] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:43:35.771] [INFO] cheese - inserting 1000 documents. first: Charles A. Robinson Jr. and last: Israeli Ambassador to China -[2018-02-13T00:43:35.806] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:43:35.933] [INFO] cheese - inserting 1000 documents. first: Magicube and last: Willesden West (constituency) -[2018-02-13T00:43:35.995] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:43:36.111] [INFO] cheese - inserting 1000 documents. first: Winicumet and last: Wikipedia:Suspected sock puppets/RaderZer0 -[2018-02-13T00:43:36.143] [INFO] cheese - inserting 1000 documents. first: Trofeo Linea and last: Sergey Ivanov (disambiguation) -[2018-02-13T00:43:36.200] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:43:36.223] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:43:36.262] [INFO] cheese - inserting 1000 documents. first: Only just begun and last: Women in the First World War -[2018-02-13T00:43:36.265] [INFO] cheese - inserting 1000 documents. first: Emanuel Mensdorff-Pouilly and last: Laganski -[2018-02-13T00:43:36.297] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches in Adelaide and last: Sir Oswald Mosley, 2nd Baronet, of Rolleston -[2018-02-13T00:43:36.335] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:43:36.338] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:43:36.396] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:43:36.657] [INFO] cheese - inserting 1000 documents. first: The Use of Ashes and last: Wikipedia:Articles for deletion/Uncle Jimbo -[2018-02-13T00:43:36.751] [INFO] cheese - inserting 1000 documents. first: Pleșa River (Geoagiu) and last: Marco Antonio (footballer) -[2018-02-13T00:43:36.750] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:43:36.824] [INFO] cheese - inserting 1000 documents. first: Category:Hieronymite Order and last: Edgars Erins -[2018-02-13T00:43:36.835] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:43:36.916] [INFO] cheese - inserting 1000 documents. first: Bienvenido “Bones” Banez, Jr. and last: File:Ninotitlecard.jpg -[2018-02-13T00:43:36.919] [INFO] cheese - inserting 1000 documents. first: Laganskii and last: For the Good Times (song) -[2018-02-13T00:43:36.926] [INFO] cheese - inserting 1000 documents. first: Dosunmu and last: Wikipedia:Articles for deletion/Andrew Almanza(Socialite) -[2018-02-13T00:43:36.994] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:43:37.052] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:43:37.033] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:43:37.122] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:43:37.262] [INFO] cheese - inserting 1000 documents. first: Havadan Kuelliyesi and last: File:Qsst.jpg -[2018-02-13T00:43:37.303] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:43:37.518] [INFO] cheese - inserting 1000 documents. first: Georgia State Highway 323 and last: Virginia Route 895 -[2018-02-13T00:43:37.561] [INFO] cheese - inserting 1000 documents. first: Erins and last: John Geree -[2018-02-13T00:43:37.564] [INFO] cheese - inserting 1000 documents. first: Brora Rangers and last: Godfrey Stephens -[2018-02-13T00:43:37.577] [INFO] cheese - inserting 1000 documents. first: Category:Swiss male handball players and last: CPD-lyase -[2018-02-13T00:43:37.578] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:43:37.623] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:43:37.637] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:43:37.669] [INFO] cheese - inserting 1000 documents. first: Zhongguo Dalu and last: Sumru Cortoglu -[2018-02-13T00:43:37.635] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:37.710] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:43:37.771] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of folk punk bands and last: Men's hockey Canada 2010 olympic team -[2018-02-13T00:43:37.820] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:43:37.971] [INFO] cheese - inserting 1000 documents. first: Fabrizio Angileri and last: Category:October 1975 sports events -[2018-02-13T00:43:37.989] [INFO] cheese - inserting 1000 documents. first: Tapalque Partido and last: Corporacion Nacional del Cobre -[2018-02-13T00:43:38.005] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:43:38.027] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:43:38.055] [INFO] cheese - inserting 1000 documents. first: MBR to VBR interface and last: Barry O'Keefe -[2018-02-13T00:43:38.076] [INFO] cheese - inserting 1000 documents. first: Category:Roller derby in Ireland and last: Cyclone Terry-Danae -[2018-02-13T00:43:38.153] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:43:38.186] [INFO] cheese - inserting 1000 documents. first: VA-895 and last: Lesser housefly -[2018-02-13T00:43:38.237] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:43:38.292] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:43:38.391] [INFO] cheese - inserting 1000 documents. first: Plesna (Cheb District) and last: Ivan Babic -[2018-02-13T00:43:38.397] [INFO] cheese - inserting 1000 documents. first: Category:1975 sports events by month and last: Zhukov, Yuri -[2018-02-13T00:43:38.442] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:43:38.444] [INFO] cheese - inserting 1000 documents. first: The Drumhead (Star Trek: The Next Generation) and last: Template:Northampton Town F.C. -[2018-02-13T00:43:38.452] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:43:38.632] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:43:38.768] [INFO] cheese - inserting 1000 documents. first: Eugeniya Shelgunova and last: Lim Jong-Chun -[2018-02-13T00:43:38.829] [INFO] cheese - inserting 1000 documents. first: Baena, Cordoba and last: Moenchrot Abbey -[2018-02-13T00:43:38.843] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:43:38.853] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:43:38.951] [INFO] cheese - inserting 1000 documents. first: Portal:American Civil War/American Civil War news/41 and last: Wikipedia:Miscellany for deletion/User:HurricaneCraze32/Hurricane Dolly (1996) -[2018-02-13T00:43:38.968] [INFO] cheese - inserting 1000 documents. first: Charles Bouillaud and last: Pangdatshang Rapga -[2018-02-13T00:43:39.026] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:43:39.044] [INFO] cheese - inserting 1000 documents. first: Portal:Grand Canyon/box-footer and last: Stephanie Alnaber -[2018-02-13T00:43:39.062] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:43:39.153] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:43:39.498] [INFO] cheese - inserting 1000 documents. first: Lue (language) and last: O făclie de Paște -[2018-02-13T00:43:39.550] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:43:39.676] [INFO] cheese - inserting 1000 documents. first: H. bakeri and last: Wanderer Puppchen -[2018-02-13T00:43:39.786] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T00:43:39.838] [INFO] cheese - inserting 1000 documents. first: Vispavarma and last: United States under William McKinley -[2018-02-13T00:43:39.871] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:39.876] [INFO] cheese - inserting 1000 documents. first: Rapga Pandatsang and last: Nijneilimskii District -[2018-02-13T00:43:39.945] [INFO] cheese - inserting 1000 documents. first: Smoothback angelshark and last: Stuart Zagnit -[2018-02-13T00:43:39.943] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T00:43:40.035] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:43:40.136] [INFO] cheese - inserting 1000 documents. first: Lim Kye-Sook and last: Wikipedia:Articles for deletion/Netguide (disambiguation) -[2018-02-13T00:43:40.168] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Falconina and last: Category:FC Stumbras managers -[2018-02-13T00:43:40.197] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:43:40.198] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T00:43:40.209] [INFO] cheese - inserting 1000 documents. first: DDG-68 and last: Thorold baronets -[2018-02-13T00:43:40.286] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:43:40.415] [INFO] cheese - inserting 1000 documents. first: File:Idhaya Thamarai DVD cover.jpg and last: Wentworth, Durban, KwaZulu-Natal -[2018-02-13T00:43:40.418] [INFO] cheese - inserting 1000 documents. first: Shyla Fox and last: Happily Ever After (2004 film) -[2018-02-13T00:43:40.471] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:43:40.473] [INFO] cheese - inserting 1000 documents. first: Lloyd Smith (chemist) and last: Category:Films set in Saga Prefecture -[2018-02-13T00:43:40.480] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:43:40.483] [INFO] cheese - inserting 1000 documents. first: 1994 VS of Chicago - Singles and last: Baby It's Cold Outside/Baby Please Come Home -[2018-02-13T00:43:40.513] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:43:40.559] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:43:40.605] [INFO] cheese - inserting 1000 documents. first: List of Saga characters and last: Squilla empusa -[2018-02-13T00:43:40.681] [INFO] cheese - inserting 1000 documents. first: Marie Moore and last: Castellanos, Juan de -[2018-02-13T00:43:40.712] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:43:40.829] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:43:40.992] [INFO] cheese - inserting 1000 documents. first: Template:Quail-2-2016 and last: Bedford-Northampton line -[2018-02-13T00:43:41.034] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:43:41.048] [INFO] cheese - inserting 1000 documents. first: Category:Chile–United Kingdom relations and last: File:Acdetroittc.jpg -[2018-02-13T00:43:41.088] [INFO] cheese - inserting 1000 documents. first: File:Layla riff.PNG and last: Boris Elkis -[2018-02-13T00:43:41.130] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Archdiocese of Thanh-Pho Ho Chi Minh and last: Aindreas -[2018-02-13T00:43:41.166] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:43:41.188] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:43:41.194] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:43:41.312] [INFO] cheese - inserting 1000 documents. first: Yemişçi Hasan Pasha and last: A Dictionary of Christian Biography, Literature, Sects and Doctrines -[2018-02-13T00:43:41.425] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:43:41.623] [INFO] cheese - inserting 1000 documents. first: Vittangi and last: Koklax -[2018-02-13T00:43:41.649] [INFO] cheese - inserting 1000 documents. first: Limnognathiidae and last: Arena Maipú -[2018-02-13T00:43:41.659] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:43:41.704] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:43:41.755] [INFO] cheese - inserting 1000 documents. first: Template:Energy production/doc and last: Aviation Electronics -[2018-02-13T00:43:41.779] [INFO] cheese - inserting 1000 documents. first: Frau Stahlbaum and last: Wikipedia:WikiProject Spam/Local/marexspectron.com -[2018-02-13T00:43:41.819] [INFO] cheese - inserting 1000 documents. first: File:WestSide ToshikoMarianoQuartet.jpg and last: Norden Farm Centre for the Arts -[2018-02-13T00:43:41.825] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:43:41.830] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T00:43:41.892] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:43:41.893] [INFO] cheese - inserting 1000 documents. first: Tipula nubeculosa and last: There Must Be More to Love Than This -[2018-02-13T00:43:41.970] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:43:41.981] [INFO] cheese - inserting 1000 documents. first: Huntsville massacre and last: Mount Wai`ale`ale -[2018-02-13T00:43:42.031] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:43:42.226] [INFO] cheese - inserting 1000 documents. first: Fox–Wright function and last: Category:Equestrian at the 2000 Summer Olympics -[2018-02-13T00:43:42.231] [INFO] cheese - inserting 1000 documents. first: Category:Episcopal churches in the United Kingdom and last: Category:1871 establishments in South Africa -[2018-02-13T00:43:42.266] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:43:42.277] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:43:42.315] [INFO] cheese - inserting 1000 documents. first: Gursu and last: Splugen -[2018-02-13T00:43:42.343] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:43:42.377] [INFO] cheese - inserting 1000 documents. first: Vanuatu scrubfowl and last: Jungle Bush Quail -[2018-02-13T00:43:42.393] [INFO] cheese - inserting 1000 documents. first: Wearily and last: Ed Nicholson -[2018-02-13T00:43:42.437] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:43:42.450] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:43:42.469] [INFO] cheese - inserting 1000 documents. first: Bare Island and last: Pokémon Collectible Card Game -[2018-02-13T00:43:42.542] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:43:42.561] [INFO] cheese - inserting 1000 documents. first: J. P. Farrell and last: Lapta Turk Birligi S.K. -[2018-02-13T00:43:42.581] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:43:42.609] [INFO] cheese - inserting 1000 documents. first: Holy Trinity Church (Washington, D.C.) and last: Cubs-Mets rivalry -[2018-02-13T00:43:42.694] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:43:42.855] [INFO] cheese - inserting 1000 documents. first: List of copy protection schemes and last: Wikipedia:Articles for deletion/Elizabethtown Christian Academy -[2018-02-13T00:43:42.910] [INFO] cheese - inserting 1000 documents. first: Harvinder "Harry" Anand and last: Gistain, Huesca -[2018-02-13T00:43:42.943] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:43:42.963] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:43:43.059] [INFO] cheese - inserting 1000 documents. first: Harrisburg-York-Lebanon, PA Combined Statistical Area and last: Lee Su-Hwan (footballer) -[2018-02-13T00:43:43.064] [INFO] cheese - inserting 1000 documents. first: Custody (Law & Order) and last: Wikipedia:WikiProject Spam/LinkReports/lasinfoniedorphee.com -[2018-02-13T00:43:43.251] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:43:43.254] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:43:43.276] [INFO] cheese - inserting 1000 documents. first: Category:Earth observation satellites of Japan and last: Cytestrol acetate -[2018-02-13T00:43:43.353] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:43:43.356] [INFO] cheese - inserting 1000 documents. first: Winton Turnbull and last: Yuzaki Station -[2018-02-13T00:43:43.393] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:43:43.556] [INFO] cheese - inserting 1000 documents. first: Ockrilla and last: Charles Beigbeder -[2018-02-13T00:43:43.587] [INFO] cheese - inserting 1000 documents. first: File:Austere cover.jpg and last: SRVUSD -[2018-02-13T00:43:43.664] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:43:43.683] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T00:43:43.783] [INFO] cheese - inserting 1000 documents. first: Andre Obami-Itou and last: Category:Economy of El Paso, Texas -[2018-02-13T00:43:43.822] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:43:43.828] [INFO] cheese - inserting 1000 documents. first: Onyaanya Constituency and last: Frank Verpillat -[2018-02-13T00:43:43.887] [INFO] cheese - inserting 1000 documents. first: Word Is Out (Kylie Minogue song) and last: Category:March 1855 events -[2018-02-13T00:43:43.955] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:43:44.021] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:43:44.094] [INFO] cheese - inserting 1000 documents. first: Charlotte Moore (disambiguation) and last: Francavilla Fontana railway station -[2018-02-13T00:43:44.164] [INFO] cheese - inserting 1000 documents. first: Karadordevic and last: Military District of Odenburg -[2018-02-13T00:43:44.170] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T00:43:44.213] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:43:44.367] [INFO] cheese - inserting 1000 documents. first: Beris vallata and last: NRG (rock band) -[2018-02-13T00:43:44.435] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:43:44.471] [INFO] cheese - inserting 1000 documents. first: Category:March 1854 events and last: Jan Van Dyke -[2018-02-13T00:43:44.511] [INFO] cheese - inserting 1000 documents. first: Alexander De Croo and last: Clairton-Glassport Bridge -[2018-02-13T00:43:44.519] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:43:44.556] [INFO] cheese - inserting 1000 documents. first: Imperfecta-Imperfect and last: Ship Black Warrior -[2018-02-13T00:43:44.565] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:43:44.607] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T00:43:44.718] [INFO] cheese - inserting 1000 documents. first: Natarajan Pandiyan and last: Poonam Mahajan Rao -[2018-02-13T00:43:44.741] [INFO] cheese - inserting 1000 documents. first: El Puerto de Santa Maria, Spain and last: Civil unions in England -[2018-02-13T00:43:44.794] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:43:44.813] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:43:44.917] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Everton and last: Minut (angle) -[2018-02-13T00:43:44.971] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:43:44.980] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2016 December 22 and last: Category:2002 in Tuvaluan football -[2018-02-13T00:43:45.015] [INFO] cheese - inserting 1000 documents. first: Aleksei Trinitatsky and last: File:Frank Mazzei picture.png -[2018-02-13T00:43:45.058] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:43:45.094] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:43:45.104] [INFO] cheese - inserting 1000 documents. first: Diego de Almágro and last: Kid Flash (Bart Allen) -[2018-02-13T00:43:45.125] [INFO] cheese - inserting 1000 documents. first: Swimming at the 1980 Summer Olympics – Women's 100 metre backstroke and last: File:Bulletin of the center for childrens books.gif -[2018-02-13T00:43:45.169] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:43:45.169] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:43:45.232] [INFO] cheese - inserting 1000 documents. first: Silver Bear (disambiguation) and last: File:Dicossato.jpg -[2018-02-13T00:43:45.281] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:43:45.378] [INFO] cheese - inserting 1000 documents. first: Late Gravettian and last: Royal Bengal Rahashya (disambiguation) -[2018-02-13T00:43:45.491] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:43:45.519] [INFO] cheese - inserting 1000 documents. first: Gunsche and last: Smilovice (Frydek-Mistek District) -[2018-02-13T00:43:45.554] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:43:45.690] [INFO] cheese - inserting 1000 documents. first: File:Charles Rood Keeran.png and last: Vladislav Kadyrov -[2018-02-13T00:43:45.932] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:43:46.032] [INFO] cheese - inserting 1000 documents. first: Robert Barnard and last: Metzengerstein -[2018-02-13T00:43:46.180] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:43:46.217] [INFO] cheese - inserting 1000 documents. first: Argyrotaenia rufina and last: I. K. Gujral Ministry -[2018-02-13T00:43:46.347] [INFO] cheese - inserting 1000 documents. first: Royal Bodyguard (disambiguation) and last: US Ambassador to Malaysia -[2018-02-13T00:43:46.354] [INFO] cheese - inserting 1000 documents. first: Komancza and last: Chiscas, Boyaca -[2018-02-13T00:43:46.370] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T00:43:46.413] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:43:46.452] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T00:43:46.690] [INFO] cheese - inserting 1000 documents. first: Vladislav Qədirov and last: Bullneck Road -[2018-02-13T00:43:46.760] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:43:46.803] [INFO] cheese - inserting 1000 documents. first: Testosterone dipropanoate and last: Sexlessness -[2018-02-13T00:43:46.839] [INFO] cheese - inserting 1000 documents. first: Wartsila-Sulzer 14RTFLEX96-C and last: David Luckwell -[2018-02-13T00:43:46.883] [INFO] cheese - batch complete in: 1.825 secs -[2018-02-13T00:43:46.902] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:43:46.944] [INFO] cheese - inserting 1000 documents. first: Break the Spell Tour and last: Category:Window manufacturers -[2018-02-13T00:43:46.997] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:43:46.999] [INFO] cheese - inserting 1000 documents. first: Second Atal Bihari Vajpayee Ministry and last: Chrysoprasis para -[2018-02-13T00:43:47.070] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:43:47.192] [INFO] cheese - inserting 1000 documents. first: USS Cape Johnson and last: Eid Al-Adha -[2018-02-13T00:43:47.239] [INFO] cheese - inserting 1000 documents. first: Chris Morley and last: Template:Hayden -[2018-02-13T00:43:47.262] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T00:43:47.284] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:43:47.318] [INFO] cheese - inserting 1000 documents. first: Saskatoon Police Department and last: Template:Japan-artistic-gymnastics-bio-stub -[2018-02-13T00:43:47.410] [INFO] cheese - inserting 1000 documents. first: Simon and Martina Stawski and last: Human rights reports on 2011-2012 Bahriani uprising -[2018-02-13T00:43:47.408] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:43:47.526] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:43:47.771] [INFO] cheese - inserting 1000 documents. first: Chrysoprasis tendira and last: Template:Workers' Party of Belgium/meta/color -[2018-02-13T00:43:47.775] [INFO] cheese - inserting 1000 documents. first: Inverted vee antenna and last: Pavel Reznicek -[2018-02-13T00:43:47.819] [INFO] cheese - inserting 1000 documents. first: Alison Lapper Pregnant and last: Lamelekh seal -[2018-02-13T00:43:47.825] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:43:47.883] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:43:47.945] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:43:48.153] [INFO] cheese - inserting 1000 documents. first: File:Tokyo Nodosan.jpg and last: Сергеи Уасыл-иҧа Багаҧшь -[2018-02-13T00:43:48.242] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:43:48.269] [INFO] cheese - inserting 1000 documents. first: File:Jury at California State Fair.jpeg and last: Birectified Dodecahedron -[2018-02-13T00:43:48.282] [INFO] cheese - inserting 1000 documents. first: 1998 Goodwill Games and last: New River lagoon -[2018-02-13T00:43:48.327] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:43:48.377] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T00:43:48.584] [INFO] cheese - inserting 1000 documents. first: Colegio Aleman Cuauhtemoc Hank and last: Sir John Evelyn, 1st Baronet, of Godstone -[2018-02-13T00:43:48.587] [INFO] cheese - inserting 1000 documents. first: Tommy Banks (footballer) and last: File:CaltechNeuroChip.jpg -[2018-02-13T00:43:48.659] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:43:48.663] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:43:48.858] [INFO] cheese - inserting 1000 documents. first: Alan Šulc and last: Wikipedia:Articles for deletion/Task Squid -[2018-02-13T00:43:48.914] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:43:48.914] [INFO] cheese - inserting 1000 documents. first: Bassoon concerto in F major op. 75 J.127 (1811 / revised 1822) and last: Joseph boardman -[2018-02-13T00:43:49.010] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:43:49.022] [INFO] cheese - inserting 1000 documents. first: Vaughan-Williams and Tavener and last: University of California, Davis Library -[2018-02-13T00:43:49.117] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:43:49.235] [INFO] cheese - inserting 1000 documents. first: Jay Nady and last: File:GT Choicedive.jpg -[2018-02-13T00:43:49.237] [INFO] cheese - inserting 1000 documents. first: Alan Marshall (author) and last: Ryan Callus -[2018-02-13T00:43:49.356] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:43:49.423] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:43:49.606] [INFO] cheese - inserting 1000 documents. first: Koruluk Dam and last: The Scholar Gypsy -[2018-02-13T00:43:49.697] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:43:49.770] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/vbulletin.comhttp and last: NEAR FM 101.6FM -[2018-02-13T00:43:49.841] [INFO] cheese - inserting 1000 documents. first: Wayne State University Libraries and last: SUD scale -[2018-02-13T00:43:49.845] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T00:43:49.932] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:43:49.939] [INFO] cheese - inserting 1000 documents. first: Ricardo Passano and last: EUFOR RCA -[2018-02-13T00:43:50.016] [INFO] cheese - inserting 1000 documents. first: Saxifrage family and last: Patent of toleration -[2018-02-13T00:43:50.016] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:43:50.083] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:50.215] [INFO] cheese - inserting 1000 documents. first: File:Virginia House Drawing Room.jpg and last: Tökszölö -[2018-02-13T00:43:50.222] [INFO] cheese - inserting 1000 documents. first: Silver Recruiter Badge and last: County Route 689 Spur (Middlesex County, New Jersey) -[2018-02-13T00:43:50.270] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:43:50.281] [INFO] cheese - inserting 1000 documents. first: Myelois ampliatella and last: Category:Finland women's national football team navigational boxes -[2018-02-13T00:43:50.296] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:43:50.354] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:43:50.546] [INFO] cheese - inserting 1000 documents. first: They Said That Hell's Not Hot and last: Guenther Victor, Prince of Schwarzburg -[2018-02-13T00:43:50.578] [INFO] cheese - inserting 1000 documents. first: Route 168 (New Jersey) and last: HMS Orwell (G98) -[2018-02-13T00:43:50.585] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:43:50.660] [INFO] cheese - inserting 1000 documents. first: Denise Lee Richards and last: Humphrey Lloyd (by 1498-1562 or later) -[2018-02-13T00:43:50.675] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:43:50.735] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:43:50.741] [INFO] cheese - inserting 1000 documents. first: Category:France national football team navigational boxes and last: William Hervey (disambiguation) -[2018-02-13T00:43:50.792] [INFO] cheese - inserting 1000 documents. first: Hummelfjell and last: Taxandria inundata -[2018-02-13T00:43:50.808] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:43:50.817] [INFO] cheese - inserting 1000 documents. first: Tokszolo and last: Template:Julio Medem -[2018-02-13T00:43:50.836] [INFO] cheese - inserting 1000 documents. first: Spencer-Smith baronets and last: Tension (band) -[2018-02-13T00:43:50.909] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:43:51.002] [INFO] cheese - batch complete in: 4.118 secs -[2018-02-13T00:43:51.016] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:43:51.359] [INFO] cheese - inserting 1000 documents. first: Silver Berry (Edmonton) and last: Nue Propriete -[2018-02-13T00:43:51.409] [INFO] cheese - inserting 1000 documents. first: Hashmatabad and last: Telmário de Araújo Sacramento -[2018-02-13T00:43:51.411] [INFO] cheese - inserting 1000 documents. first: Fritz plaumann entomological museum and last: Template:User mai-2 -[2018-02-13T00:43:51.420] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:43:51.445] [INFO] cheese - inserting 1000 documents. first: Walter Long (MP 1701–1702) and last: Northern Barred Woodcreeper -[2018-02-13T00:43:51.516] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:43:51.528] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:43:51.527] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:43:51.778] [INFO] cheese - inserting 1000 documents. first: Kelenfoeld and last: Rasca Mare River -[2018-02-13T00:43:51.834] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:43:52.032] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Dvina Vitebsk and last: Maravilha, Santa Catarina -[2018-02-13T00:43:52.058] [INFO] cheese - inserting 1000 documents. first: Hoffmanns's Woodcreeper and last: Yukiko Okamoto (athlete) -[2018-02-13T00:43:52.159] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:52.179] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T00:43:52.230] [INFO] cheese - inserting 1000 documents. first: Guilsborough School and Technology College and last: Cathal O Murchadha -[2018-02-13T00:43:52.300] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:43:52.353] [INFO] cheese - inserting 1000 documents. first: Aquidaba (disambiguation) and last: Korntal station -[2018-02-13T00:43:52.429] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T00:43:52.438] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flightsim.com and last: Eleanor Perry -[2018-02-13T00:43:52.510] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T00:43:52.567] [INFO] cheese - inserting 1000 documents. first: Southern Antpipit and last: Sula Cicadabird -[2018-02-13T00:43:52.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Agapiméno Mou Gardoúmpi and last: T.S. Nayar -[2018-02-13T00:43:52.604] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:43:52.670] [INFO] cheese - batch complete in: 1.668 secs -[2018-02-13T00:43:52.774] [INFO] cheese - inserting 1000 documents. first: Nova Erechim and last: Aechmea 'Foster's Freckles' -[2018-02-13T00:43:52.793] [INFO] cheese - inserting 1000 documents. first: Associacao de Futebol do Porto and last: File:Monochrome Tokyopop.jpg -[2018-02-13T00:43:52.821] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:43:52.866] [INFO] cheese - inserting 1000 documents. first: Thymopides grobovi and last: List of NYCB 2010 Nutcracker performances -[2018-02-13T00:43:52.910] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:43:52.950] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:43:52.989] [INFO] cheese - inserting 1000 documents. first: Cosmo Con and last: King Simeon -[2018-02-13T00:43:53.112] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:53.205] [INFO] cheese - inserting 1000 documents. first: Stout-billed Cuckooshrike and last: Category:Alpine skiers at the 1990 Asian Winter Games -[2018-02-13T00:43:53.254] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:53.369] [INFO] cheese - inserting 1000 documents. first: Latitude 17 degrees N and last: Generalized valence bond methods -[2018-02-13T00:43:53.427] [INFO] cheese - inserting 1000 documents. first: File:Spot The Video Game Cover.jpg and last: Solocisquama -[2018-02-13T00:43:53.439] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:43:53.516] [INFO] cheese - inserting 1000 documents. first: NYCB 2010 Nutcracker performances and last: Template:Did you know nominations/Tiang language -[2018-02-13T00:43:53.554] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Molotra and last: Rio Raj -[2018-02-13T00:43:53.557] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:43:53.642] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:43:53.670] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:43:53.893] [INFO] cheese - inserting 1000 documents. first: Troitskiy District and last: Wyoming Transportation Museum -[2018-02-13T00:43:53.898] [INFO] cheese - inserting 1000 documents. first: Category:Competitors at the 1990 Asian Winter Games and last: CapMan -[2018-02-13T00:43:53.981] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:53.982] [INFO] cheese - inserting 1000 documents. first: Category:Information technology companies of Russia and last: Emilio Gutierrez Caba -[2018-02-13T00:43:53.984] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:43:54.111] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:43:54.292] [INFO] cheese - inserting 1000 documents. first: Solar eclipse of June 22, 2066 and last: Listed buildings in Barrow-in-Furness -[2018-02-13T00:43:54.302] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Shubhamshevade and last: File:SacHrtLeon.png -[2018-02-13T00:43:54.319] [INFO] cheese - inserting 1000 documents. first: Vinícius Silva Soares and last: Isaac Jaquelot -[2018-02-13T00:43:54.333] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:43:54.348] [INFO] cheese - inserting 1000 documents. first: Century Secondary School and last: Budavari Siklo -[2018-02-13T00:43:54.357] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:43:54.381] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:43:54.396] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:43:54.429] [INFO] cheese - inserting 1000 documents. first: File:Dristor 2 Station.jpg and last: Carlos Hoo Ramirez -[2018-02-13T00:43:54.458] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:43:54.574] [INFO] cheese - inserting 1000 documents. first: Muammar Khaddafi and last: File:Mod devolution original.jpg -[2018-02-13T00:43:54.610] [INFO] cheese - inserting 1000 documents. first: Indios de Mayagueez and last: Federico Trillo-Figueroa Martinez-Conde -[2018-02-13T00:43:54.619] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:43:54.634] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:43:54.681] [INFO] cheese - inserting 1000 documents. first: Category:Czech sportspeople by sport and last: McKenzie, Doug -[2018-02-13T00:43:54.734] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:43:54.764] [INFO] cheese - inserting 1000 documents. first: Blockbuster Entertainment Group and last: Dysthesia -[2018-02-13T00:43:54.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Deavan Ebersole and last: Template:Sioux City, Iowa weatherbox -[2018-02-13T00:43:54.820] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:43:54.823] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:43:54.842] [INFO] cheese - inserting 1000 documents. first: Alcidodes exornatus and last: Was bleibt -[2018-02-13T00:43:54.894] [INFO] cheese - inserting 1000 documents. first: Uberherrn and last: Wikipedia:Articles for deletion/Bodie and Brock Thoene -[2018-02-13T00:43:54.919] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:43:54.926] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:43:55.110] [INFO] cheese - inserting 1000 documents. first: List of sovereign states in 1951 and last: Wikipedia:WikiProject Trains/nav -[2018-02-13T00:43:55.167] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:43:55.254] [INFO] cheese - inserting 1000 documents. first: McKenzie, Reggie and last: Category:Rowing in Israel -[2018-02-13T00:43:55.267] [INFO] cheese - inserting 1000 documents. first: Los Angeles College of Music (LACM) and last: Dusky-green Oropendola -[2018-02-13T00:43:55.305] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:43:55.308] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:43:55.360] [INFO] cheese - inserting 1000 documents. first: File:Tibet 800ad sm.jpg and last: Brevisima relacion de la destruccion de las Indias -[2018-02-13T00:43:55.360] [INFO] cheese - inserting 1000 documents. first: Mason Charles and last: Rae Armantraut -[2018-02-13T00:43:55.395] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:43:55.451] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:43:55.498] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Devizes School and last: File:Kamenskalamity.jpg -[2018-02-13T00:43:55.548] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:43:55.661] [INFO] cheese - inserting 1000 documents. first: Lausavisa and last: Flothe -[2018-02-13T00:43:55.683] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:43:55.735] [INFO] cheese - inserting 1000 documents. first: Green Oropendola and last: Sunda Bush Warbler -[2018-02-13T00:43:55.754] [INFO] cheese - inserting 1000 documents. first: Category:Armenia religion-related lists and last: Wikipedia:Sockpuppet investigations/Johny5000 -[2018-02-13T00:43:55.796] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:43:55.805] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:43:56.012] [INFO] cheese - inserting 1000 documents. first: Who I Am Tour and last: Abdulrahman Gimba -[2018-02-13T00:43:56.043] [INFO] cheese - inserting 1000 documents. first: Communes of the Lozere departement and last: Cantoria, Almeria -[2018-02-13T00:43:56.060] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:43:56.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 January 16 and last: Category:Businesspeople by industry and nationality -[2018-02-13T00:43:56.080] [INFO] cheese - inserting 1000 documents. first: Ryan Braun (baseball pitcher) and last: RAF Atcham -[2018-02-13T00:43:56.122] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:43:56.142] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:43:56.203] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T00:43:56.215] [INFO] cheese - inserting 1000 documents. first: Mountain Tailorbird and last: IBM 4680 Operating System 4.1 -[2018-02-13T00:43:56.257] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:43:56.300] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of YouTubers and last: Scorched (short story) -[2018-02-13T00:43:56.349] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:43:56.403] [INFO] cheese - inserting 1000 documents. first: Heinrich Heine University of Dusseldorf and last: Floyd Matthews -[2018-02-13T00:43:56.446] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:43:56.601] [INFO] cheese - inserting 1000 documents. first: 4680 Operating System 4.1 and last: This Fire (song) -[2018-02-13T00:43:56.608] [INFO] cheese - inserting 1000 documents. first: Spatial Cultural-Historical Units of Great Importance and last: Wikipedia:WikiProject Spam/LinkReports/computerbiblegames.com -[2018-02-13T00:43:56.641] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:43:56.673] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia files reviewed on Wikimedia Commons by Ebe123 and last: File:3DO-Daedalus-Encounter.jpg -[2018-02-13T00:43:56.725] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:43:56.736] [INFO] cheese - inserting 1000 documents. first: La Pelicula del Rey and last: Pres De Ma Riviere -[2018-02-13T00:43:56.762] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:43:56.813] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:43:56.875] [INFO] cheese - inserting 1000 documents. first: Collins–Valentine line and last: Tetrahedron Computer Methodology -[2018-02-13T00:43:56.905] [INFO] cheese - inserting 1000 documents. first: Scottish Renewables Obligation and last: Dinosaurs in South America -[2018-02-13T00:43:56.910] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:43:56.982] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:43:57.001] [INFO] cheese - inserting 1000 documents. first: Category:Space units of the United States Air Force and last: San Munoz, Salamanca -[2018-02-13T00:43:57.106] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:43:57.315] [INFO] cheese - inserting 1000 documents. first: Connor Smith (footballer, born 1996) and last: Category:Gymnastics at the Youth Olympics -[2018-02-13T00:43:57.371] [INFO] cheese - inserting 1000 documents. first: Guenther's Toadlet and last: Rene Desfontaines -[2018-02-13T00:43:57.407] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T00:43:57.433] [INFO] cheese - inserting 1000 documents. first: Category:International basketball competitions hosted by Spain and last: Tyler Polak -[2018-02-13T00:43:57.431] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:43:57.650] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:43:57.708] [INFO] cheese - inserting 1000 documents. first: File:Bluemagic3.jpg and last: HNLMS De Ruyter (1944) -[2018-02-13T00:43:57.882] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T00:43:58.085] [INFO] cheese - inserting 1000 documents. first: Benjamin Wahlgren Ingrosso and last: Category:Finnish politicians by century -[2018-02-13T00:43:58.099] [INFO] cheese - inserting 1000 documents. first: Reenpaa and last: Institut national des sciences appliquees -[2018-02-13T00:43:58.158] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:43:58.274] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T00:43:58.449] [INFO] cheese - inserting 1000 documents. first: Template:Navbox track gauge/sandbox and last: Pirate Party Croatia -[2018-02-13T00:43:58.508] [INFO] cheese - inserting 1000 documents. first: Juergen May and last: Chapel of Sao Frutuoso de Montelios -[2018-02-13T00:43:58.567] [INFO] cheese - inserting 1000 documents. first: File:ZAMTEL LOGO.gif and last: Template:Soccer in Australia -[2018-02-13T00:43:58.568] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:43:58.589] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T00:43:58.601] [INFO] cheese - inserting 1000 documents. first: Category:Radford Highlanders baseball players and last: Psecadia tripolitanella -[2018-02-13T00:43:58.678] [INFO] cheese - batch complete in: 1.696 secs -[2018-02-13T00:43:58.690] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T00:43:58.833] [INFO] cheese - inserting 1000 documents. first: Gewuertztraminer and last: Urla (District), Izmir -[2018-02-13T00:43:58.880] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:43:58.964] [INFO] cheese - inserting 1000 documents. first: Ernest Jansan and last: Wikipedia:Sockpuppet investigations/Iloveartrock/Archive -[2018-02-13T00:43:59.023] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:43:59.137] [INFO] cheese - inserting 1000 documents. first: Rhytidhysteron and last: Vanilla raabii -[2018-02-13T00:43:59.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hypography and last: Munoveros, Spain -[2018-02-13T00:43:59.159] [INFO] cheese - inserting 1000 documents. first: File:Deco lamp.jpg and last: Peshtpa -[2018-02-13T00:43:59.187] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:43:59.191] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:43:59.305] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T00:43:59.404] [INFO] cheese - inserting 1000 documents. first: Psecadia radiatella and last: Syfy Universal (Portugal) -[2018-02-13T00:43:59.408] [INFO] cheese - inserting 1000 documents. first: PNC (rapper) and last: Baronio -[2018-02-13T00:43:59.439] [INFO] cheese - inserting 1000 documents. first: Anundsjoe Parish and last: Hakon Hakonarson -[2018-02-13T00:43:59.487] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:43:59.524] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:43:59.499] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:43:59.604] [INFO] cheese - inserting 1000 documents. first: Our Lady of the Spasm and last: Category:Sports competitions in Illinois -[2018-02-13T00:43:59.673] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:43:59.778] [INFO] cheese - inserting 1000 documents. first: 2014 Venice Challenge Save Cup and last: Richard Earl Thompson -[2018-02-13T00:43:59.830] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:43:59.954] [INFO] cheese - inserting 1000 documents. first: Template:Nevada-NRHP-stub and last: Lehigh university engineering highlights -[2018-02-13T00:44:00.104] [INFO] cheese - inserting 1000 documents. first: May 19th Coalition and last: File:Alfonso Ugarte de Chiclín.gif -[2018-02-13T00:44:00.139] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:44:00.279] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:44:00.385] [INFO] cheese - inserting 1000 documents. first: Booty Pop and last: Delmar Roos -[2018-02-13T00:44:00.434] [INFO] cheese - inserting 1000 documents. first: Tin-Plate and last: File:PreEmptivelogo.png -[2018-02-13T00:44:00.473] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:44:00.488] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T00:44:00.572] [INFO] cheese - inserting 1000 documents. first: Castaibert IV and last: Cuban Parakeet -[2018-02-13T00:44:00.584] [INFO] cheese - inserting 1000 documents. first: Oviraptor philoceratops and last: Wikipedia:Articles for deletion/Webopedia -[2018-02-13T00:44:00.613] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:44:00.616] [INFO] cheese - inserting 1000 documents. first: Ulmus minor 'Punctata' and last: Work standard -[2018-02-13T00:44:00.702] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T00:44:00.717] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T00:44:00.896] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Moldova and last: Flamsbanen -[2018-02-13T00:44:00.957] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:00.973] [INFO] cheese - inserting 1000 documents. first: 1983 UK Snooker Championship and last: Jung Il-woo -[2018-02-13T00:44:01.027] [INFO] cheese - inserting 1000 documents. first: Table of books of Judeo-Christian scripture and last: Category:1922 establishments in Yugoslavia -[2018-02-13T00:44:01.035] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:44:01.132] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:44:01.209] [INFO] cheese - inserting 1000 documents. first: Bald Parrot and last: Rüppell's bustard -[2018-02-13T00:44:01.371] [INFO] cheese - inserting 1000 documents. first: File:Navy olive Capt(N).png and last: John Pattitucci -[2018-02-13T00:44:01.387] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:44:01.428] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:44:01.554] [INFO] cheese - inserting 1000 documents. first: File:Box 2 of Inazuma Eleven Contains 10 dvds (48 episodes)-Season 2.jpg and last: Wikipedia:Articles for deletion/Log/2017 January 7 -[2018-02-13T00:44:01.577] [INFO] cheese - inserting 1000 documents. first: Northern smooth shore crab and last: Strømm -[2018-02-13T00:44:01.661] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:44:01.747] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T00:44:01.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Aar Maanta and last: Pranas Domšaitis -[2018-02-13T00:44:01.834] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Canberra Primary School and last: Jane Stocks Greig -[2018-02-13T00:44:01.836] [INFO] cheese - inserting 1000 documents. first: Le Poisson Dore (Saint-Leon/Minkus) and last: Meritorious Unit Citations -[2018-02-13T00:44:01.845] [INFO] cheese - inserting 1000 documents. first: Category:1973 establishments in Yugoslavia and last: Odostomia woodhridgei -[2018-02-13T00:44:01.849] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:44:01.855] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:44:01.865] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:44:01.920] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:44:02.196] [INFO] cheese - inserting 1000 documents. first: Category:Fossil fuels in Oceania and last: Peristenus -[2018-02-13T00:44:02.197] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AMA Requests for Assistance/Requests/October 2006/francesannesolomon1 and last: Yoake Mae yori Ruriiro na -[2018-02-13T00:44:02.259] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:44:02.268] [INFO] cheese - inserting 1000 documents. first: Nigerian Civil Service and last: Template:Media Release/doc -[2018-02-13T00:44:02.284] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:44:02.340] [INFO] cheese - inserting 1000 documents. first: Category:Islands of Shandong and last: Wikipedia:Articles for deletion/List of airports in the United States by passengers boarded -[2018-02-13T00:44:02.344] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:44:02.380] [INFO] cheese - inserting 1000 documents. first: Fairfield Athletic and last: Home of Truth, Utah -[2018-02-13T00:44:02.418] [INFO] cheese - inserting 1000 documents. first: Friedrich IX of Brandenburg-Bayreuth and last: Opătești -[2018-02-13T00:44:02.437] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:44:02.439] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:44:02.512] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:44:02.662] [INFO] cheese - inserting 1000 documents. first: West Indies cricket team in Pakistan in 2016–17 and last: Kurmanathaswamy temple, Srikurmam -[2018-02-13T00:44:02.704] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:44:02.721] [INFO] cheese - inserting 1000 documents. first: Battle of Val-es-Dunes and last: Brynjar Bjoern Gunnarsson -[2018-02-13T00:44:02.748] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:44:02.791] [INFO] cheese - inserting 1000 documents. first: Sean Hoppe and last: The Blinding E.P. -[2018-02-13T00:44:02.808] [INFO] cheese - inserting 1000 documents. first: Time To Win, Vol. 1 and last: SC 63 -[2018-02-13T00:44:02.889] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:44:02.894] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:44:03.016] [INFO] cheese - inserting 1000 documents. first: Category:KLM Cityhopper and last: Category:Songs written by Robin Thicke -[2018-02-13T00:44:03.077] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:44:03.173] [INFO] cheese - inserting 1000 documents. first: Neuhausgen and last: Wikipedia:Articles for deletion/SimonT Hockey Simulator -[2018-02-13T00:44:03.188] [INFO] cheese - inserting 1000 documents. first: Nazrul Tirtha and last: Building jacking -[2018-02-13T00:44:03.207] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:44:03.282] [INFO] cheese - inserting 1000 documents. first: 2015 Canadian Open of Curling and last: Salen Kotch -[2018-02-13T00:44:03.285] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:44:03.376] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:44:03.521] [INFO] cheese - inserting 1000 documents. first: Inglewood United FC and last: Norderhoug -[2018-02-13T00:44:03.531] [INFO] cheese - inserting 1000 documents. first: Route 63 (South Carolina) and last: File:GrandPrixManagerscreen.gif -[2018-02-13T00:44:03.555] [INFO] cheese - inserting 1000 documents. first: Ponta Garca and last: Grandes y San Martin, Spain -[2018-02-13T00:44:03.556] [INFO] cheese - inserting 1000 documents. first: Albert "Ginger" Baker and last: Susisuchus anatoceps -[2018-02-13T00:44:03.586] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:44:03.587] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:44:03.596] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:44:03.622] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:44:03.820] [INFO] cheese - inserting 1000 documents. first: Category:163 in Asia and last: PC flash-synchronization connection -[2018-02-13T00:44:03.839] [INFO] cheese - inserting 1000 documents. first: List of creeks in North Carolina and last: Apex Pride -[2018-02-13T00:44:03.885] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:44:03.887] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:44:03.914] [INFO] cheese - inserting 1000 documents. first: Mevluet Erdinc and last: Courtemaiche (Jura) -[2018-02-13T00:44:03.963] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:44:04.049] [INFO] cheese - inserting 1000 documents. first: Mylius My-102 Tornado and last: West Vienna United Methodist Church -[2018-02-13T00:44:04.069] [INFO] cheese - inserting 1000 documents. first: Dhanmondi Govt Boys' High School and last: Life of Richard Savage -[2018-02-13T00:44:04.098] [INFO] cheese - inserting 1000 documents. first: UFSv2 and last: Nagato no kuni -[2018-02-13T00:44:04.120] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:44:04.158] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:44:04.203] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:44:04.262] [INFO] cheese - inserting 1000 documents. first: Skalka nad Vahom and last: Al compas de tu mentira -[2018-02-13T00:44:04.282] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:44:04.356] [INFO] cheese - inserting 1000 documents. first: PC flash synchronisation connection and last: Draft:Sikin Panjang -[2018-02-13T00:44:04.375] [INFO] cheese - inserting 1000 documents. first: Governor Shumlin and last: Category:People from Småland by occupation -[2018-02-13T00:44:04.407] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:44:04.429] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:44:04.560] [INFO] cheese - inserting 1000 documents. first: Gyula Fenyi and last: Fraemling (song) -[2018-02-13T00:44:04.609] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:44:04.770] [INFO] cheese - inserting 1000 documents. first: 2011 Paraguayan Segunda División season and last: Euzopherades -[2018-02-13T00:44:04.791] [INFO] cheese - inserting 1000 documents. first: Thomas Mapilton and last: Secondary ion mass spectrometer -[2018-02-13T00:44:04.818] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/MartinBotII 2 and last: Volta River Dam -[2018-02-13T00:44:04.837] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:44:04.905] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:44:04.916] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:44:04.940] [INFO] cheese - inserting 1000 documents. first: Roscommon (Dail Eireann constituency) and last: SMS Koenig Wilhelm (1868) -[2018-02-13T00:44:04.978] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:44:05.036] [INFO] cheese - inserting 1000 documents. first: File:Ratnakumar 1949.jpg and last: Category:Roman Catholic ecclesiastical provinces in Italy -[2018-02-13T00:44:05.105] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:44:05.111] [INFO] cheese - inserting 1000 documents. first: Category:Cycling at the Southeast Asian Games and last: Brazil men's national 3x3 team -[2018-02-13T00:44:05.169] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:44:05.261] [INFO] cheese - inserting 1000 documents. first: Leao (disambiguation) and last: Goetheberg, Sweden -[2018-02-13T00:44:05.282] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:44:05.408] [INFO] cheese - inserting 1000 documents. first: Infinita and last: Category:History of Yugoslavia by topic -[2018-02-13T00:44:05.447] [INFO] cheese - inserting 1000 documents. first: Sp vol and last: File:Nittanyfurnace.PNG -[2018-02-13T00:44:05.465] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:44:05.476] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:44:05.514] [INFO] cheese - inserting 1000 documents. first: List of Prosecutor Generals of Russia and the Soviet Union and last: Mount Geikie -[2018-02-13T00:44:05.515] [INFO] cheese - inserting 1000 documents. first: Winfried Muthesius and last: All Points Bulletin (2010 video game) -[2018-02-13T00:44:05.569] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:44:05.575] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:44:05.593] [INFO] cheese - inserting 1000 documents. first: Raettvik Court District and last: 8319 Antiphanes -[2018-02-13T00:44:05.640] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:44:05.647] [INFO] cheese - inserting 1000 documents. first: Khok Sa-Met Choon and last: File:Viduthalai (1986 film).jpg -[2018-02-13T00:44:05.694] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:44:05.818] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Société Ramond and last: Template:LSJ/doc -[2018-02-13T00:44:05.844] [INFO] cheese - inserting 1000 documents. first: Raghuleela Mall and last: 8 second basketball rule -[2018-02-13T00:44:05.853] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:44:05.883] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:44:05.915] [INFO] cheese - inserting 1000 documents. first: Nagyhodos and last: Bagdat Caddesi -[2018-02-13T00:44:05.934] [INFO] cheese - inserting 1000 documents. first: Category:1842 establishments in British India and last: Template:2003 South Africa incoming tours squad -[2018-02-13T00:44:05.947] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:44:05.993] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:44:06.026] [INFO] cheese - inserting 1000 documents. first: Omar Esparza and last: East Germany at the 1976 Winter Olympics -[2018-02-13T00:44:06.061] [INFO] cheese - inserting 1000 documents. first: Jiang Duanyi and last: Gabriel Isis -[2018-02-13T00:44:06.104] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:44:06.122] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:44:06.197] [INFO] cheese - inserting 1000 documents. first: Giani Stelian Kirita and last: Jakob, der Lugner -[2018-02-13T00:44:06.223] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:44:06.303] [INFO] cheese - inserting 1000 documents. first: Bugolobi and last: Jaiee -[2018-02-13T00:44:06.349] [INFO] cheese - inserting 1000 documents. first: Deh Zahid and last: The Future of the Body -[2018-02-13T00:44:06.367] [INFO] cheese - inserting 1000 documents. first: Sitosterolaemia and last: List of executive search firms -[2018-02-13T00:44:06.374] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:44:06.427] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:44:06.508] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:44:06.568] [INFO] cheese - inserting 1000 documents. first: Johann Boettger and last: 4373 Crespo -[2018-02-13T00:44:06.652] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:44:06.714] [INFO] cheese - inserting 1000 documents. first: Speckled Wood (butterfly) and last: Template:Leftist Socialist Party of Japan/meta/shortname -[2018-02-13T00:44:06.789] [INFO] cheese - inserting 1000 documents. first: Million Dollar Heiress and last: Template:Rugby squad start -[2018-02-13T00:44:06.846] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:44:06.910] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:07.037] [INFO] cheese - inserting 1000 documents. first: File:EarlyCannonDeNobilitatibusSapientiiEtPrudentiisRegumManuscriptWalterdeMilemete1326.jpg and last: Könkämäeno -[2018-02-13T00:44:07.131] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Coxel and last: Wikipedia:WikiProject Spam/LinkReports/resiinalehti.fi -[2018-02-13T00:44:07.164] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:44:07.293] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:44:07.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/reggae-hiphop-radio.we.bs and last: Template:1970–71 NHL West Division standings -[2018-02-13T00:44:07.424] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:44:07.517] [INFO] cheese - inserting 1000 documents. first: Abdallah Said Sarouma and last: The Wehrmacht: History, Myth, Reality -[2018-02-13T00:44:07.689] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T00:44:07.699] [INFO] cheese - inserting 1000 documents. first: FM 29 and last: Kingi Tuheitia -[2018-02-13T00:44:07.778] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:44:07.901] [INFO] cheese - inserting 1000 documents. first: Edwin Hallowell and last: Petite Savanne -[2018-02-13T00:44:07.919] [INFO] cheese - inserting 1000 documents. first: Halo naevus and last: Smidge -[2018-02-13T00:44:07.981] [INFO] cheese - inserting 1000 documents. first: Daamo and last: 1929 elections -[2018-02-13T00:44:08.003] [INFO] cheese - inserting 1000 documents. first: 3032 Evans and last: Manastur, Cluj-Napoca -[2018-02-13T00:44:08.007] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T00:44:08.040] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:44:08.069] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:44:08.127] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:44:08.175] [INFO] cheese - inserting 1000 documents. first: Architectural conservation in Thailand and last: Eugen Viktor Paul Seiterich -[2018-02-13T00:44:08.226] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:44:08.355] [INFO] cheese - inserting 1000 documents. first: Dysoxylum havilandii and last: County of Stolberg-Stolberg -[2018-02-13T00:44:08.405] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:44:08.436] [INFO] cheese - inserting 1000 documents. first: Grădinile Mănăştur, Cluj-Napoca and last: Furstin von Belmonte -[2018-02-13T00:44:08.514] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:44:08.535] [INFO] cheese - inserting 1000 documents. first: List of elected officials who support the Stop Online Piracy Act and last: Latvijas Civilās aviācijas administrācija -[2018-02-13T00:44:08.589] [INFO] cheese - inserting 1000 documents. first: File:TowsonEnrollmentServices.jpg and last: Valentin Paniagua -[2018-02-13T00:44:08.637] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:44:08.714] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Like a Rolling Stone/archive2 and last: Jean Baptiste Louvet de Couvray -[2018-02-13T00:44:08.738] [INFO] cheese - inserting 1000 documents. first: Category:Monasteries in Denmark and last: Bob B. Soxx & The Blue Jeans -[2018-02-13T00:44:08.717] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:44:08.817] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:44:08.825] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:44:08.876] [INFO] cheese - inserting 1000 documents. first: Inch2 and last: Libertador Municipality, Carabobo -[2018-02-13T00:44:09.126] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:44:09.355] [INFO] cheese - inserting 1000 documents. first: County of Stolberg-Rossla and last: Random write -[2018-02-13T00:44:09.438] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T00:44:09.454] [INFO] cheese - inserting 1000 documents. first: Latvijas Civilas aviacijas administracija and last: Léon Maquenne -[2018-02-13T00:44:09.470] [INFO] cheese - inserting 1000 documents. first: Jose Rondeau Pereyra and last: NS Railinfratrust -[2018-02-13T00:44:09.500] [INFO] cheese - inserting 1000 documents. first: Valery Sigalevitch and last: Category:Ships of Belize -[2018-02-13T00:44:09.516] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:44:09.528] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T00:44:09.557] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:44:09.619] [INFO] cheese - inserting 1000 documents. first: Valentin paniagua and last: Damot Weyde -[2018-02-13T00:44:09.664] [INFO] cheese - inserting 1000 documents. first: Central Oklahoma Bronchos women's basketball and last: Invasion of Åland -[2018-02-13T00:44:09.698] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T00:44:09.719] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:44:09.768] [INFO] cheese - inserting 1000 documents. first: Sverre Kornelius Eilertsen Stostad and last: A-adrenergic receptor -[2018-02-13T00:44:09.799] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:44:09.823] [INFO] cheese - inserting 1000 documents. first: Category:Franklin County, New York geography stubs and last: File:Step Up All In poster.jpg -[2018-02-13T00:44:09.861] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:44:09.873] [INFO] cheese - inserting 1000 documents. first: Category:Province of Valencia and last: Wikipedia:Articles for deletion/Log/2012 January 23 -[2018-02-13T00:44:09.925] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:44:10.137] [INFO] cheese - inserting 1000 documents. first: 11997 Fassel and last: 1382 Gerti -[2018-02-13T00:44:10.143] [INFO] cheese - inserting 1000 documents. first: Army School Mumbai and last: Roumboui -[2018-02-13T00:44:10.177] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:44:10.225] [INFO] cheese - inserting 1000 documents. first: Cathedral of Dijon and last: National Museum of San Marco -[2018-02-13T00:44:10.238] [INFO] cheese - inserting 1000 documents. first: Vagonka and last: Regensburg declaration of 1541 -[2018-02-13T00:44:10.286] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:44:10.301] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:44:10.356] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:44:10.524] [INFO] cheese - inserting 1000 documents. first: Template:2012 in Japanese football and last: Dareshkaft -[2018-02-13T00:44:10.602] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:44:10.608] [INFO] cheese - inserting 1000 documents. first: Gabriel lame and last: Storfurstendomet Finland -[2018-02-13T00:44:10.636] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:44:10.647] [INFO] cheese - inserting 1000 documents. first: File:Dishaster gameplay.png and last: Wakka Wakka Productions -[2018-02-13T00:44:10.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elwood (Finnish musician) (2nd nomination) and last: Eternal General Secretary of the Workers' Party of Korea -[2018-02-13T00:44:10.743] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:44:10.792] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:44:10.914] [INFO] cheese - inserting 1000 documents. first: Sabon-Guida and last: No Internal Message -[2018-02-13T00:44:10.922] [INFO] cheese - inserting 1000 documents. first: Category:Danish darts players and last: FIU–Miami football brawl -[2018-02-13T00:44:10.983] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:44:11.012] [INFO] cheese - inserting 1000 documents. first: 1308 Halleria and last: 9144 Hollisjohnson -[2018-02-13T00:44:10.986] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:44:11.074] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:44:11.371] [INFO] cheese - inserting 1000 documents. first: 2010 in Armenian football and last: Zeppelin LZ84 -[2018-02-13T00:44:11.469] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:44:11.515] [INFO] cheese - inserting 1000 documents. first: Vijayawada Railway Division and last: Beijing Haidian Foreign Language School -[2018-02-13T00:44:11.633] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:44:11.661] [INFO] cheese - inserting 1000 documents. first: Armand-Francois-Marie de Charbonnel and last: Orebro SK Bandy -[2018-02-13T00:44:11.774] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:44:11.782] [INFO] cheese - inserting 1000 documents. first: Category:20th-century Turkish short story writers and last: Template:Liga Semi-Pro Divisyen 2 -[2018-02-13T00:44:11.786] [INFO] cheese - inserting 1000 documents. first: 1st American Regiment (1783-1784) and last: Balsa Nova -[2018-02-13T00:44:11.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AMA Requests for Assistance/Requests/October 2006/Hammbeen and last: All That Remains (novel) -[2018-02-13T00:44:11.836] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:44:11.893] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T00:44:11.927] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T00:44:12.074] [INFO] cheese - inserting 1000 documents. first: Tonfoen and last: List of number-one hits of 1961 (Germany) -[2018-02-13T00:44:12.111] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:44:12.134] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Hawaii hotspot/archive2 and last: Ethmia septempunctata -[2018-02-13T00:44:12.160] [INFO] cheese - inserting 1000 documents. first: 102d Fighter-Interceptor Squadron and last: Francisco Alcácer -[2018-02-13T00:44:12.187] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:44:12.205] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:44:12.351] [INFO] cheese - inserting 1000 documents. first: Faruk Guersoy and last: Romangordo, Caceres -[2018-02-13T00:44:12.372] [INFO] cheese - inserting 1000 documents. first: Bocaiúva do Sul and last: Category:Ke$ha songs -[2018-02-13T00:44:12.375] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:44:12.421] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:44:12.427] [INFO] cheese - inserting 1000 documents. first: Secrets (Ian Thornley album) and last: Northamptonshire county cricket teams -[2018-02-13T00:44:12.474] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:44:12.501] [INFO] cheese - inserting 1000 documents. first: Category:Football clubs in Kenya and last: Johnson Creek (New York) -[2018-02-13T00:44:12.537] [INFO] cheese - inserting 1000 documents. first: Miert kell, hogy elmenj? and last: Somesul Cald River -[2018-02-13T00:44:12.539] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:44:12.554] [INFO] cheese - inserting 1000 documents. first: Template:Motorcycle article and last: File:Bssm0.png -[2018-02-13T00:44:12.566] [INFO] cheese - inserting 1000 documents. first: Hull Council election, 2006 and last: Galeandra barbata -[2018-02-13T00:44:12.572] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:44:12.632] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:44:12.658] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:44:12.868] [INFO] cheese - inserting 1000 documents. first: File:Captain Moses Collyer House.jpg and last: Sertanópolis -[2018-02-13T00:44:12.914] [INFO] cheese - inserting 1000 documents. first: Jose Cuervo Tequila and last: 20376 Joyhines -[2018-02-13T00:44:12.919] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:44:12.921] [INFO] cheese - inserting 1000 documents. first: Buckinghamshire county cricket teams and last: 1987–88 FC Basel season -[2018-02-13T00:44:12.975] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:44:12.979] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:44:13.282] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Chaetopteridae and last: Template:Haverfordwest VHF 405-line Transmitter Group -[2018-02-13T00:44:13.406] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:44:13.544] [INFO] cheese - inserting 1000 documents. first: Template:UC Davis Aggies baseball coach navbox and last: Warm Springs Road -[2018-02-13T00:44:13.577] [INFO] cheese - inserting 1000 documents. first: Tibor Martinek and last: La Jamais Contente -[2018-02-13T00:44:13.646] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T00:44:13.702] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T00:44:14.047] [INFO] cheese - inserting 1000 documents. first: Category:Hydroelectric power stations in Taiwan and last: Julius J. Martens Company Building -[2018-02-13T00:44:14.086] [INFO] cheese - inserting 1000 documents. first: 78577 JPL and last: Josef Peters (auto racing) -[2018-02-13T00:44:14.098] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:44:14.104] [INFO] cheese - inserting 1000 documents. first: Huang Tzu-ch’eng and last: K255CX -[2018-02-13T00:44:14.160] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T00:44:14.168] [INFO] cheese - inserting 1000 documents. first: Category:Ridges on Mars and last: Julio César Valdivia -[2018-02-13T00:44:14.176] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T00:44:14.216] [INFO] cheese - inserting 1000 documents. first: Tonopah-Austin Road and last: Category:Hinduism stubs -[2018-02-13T00:44:14.256] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T00:44:14.293] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:44:14.374] [INFO] cheese - inserting 1000 documents. first: Kongo class destroyer and last: Delirium Cafe -[2018-02-13T00:44:14.412] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:44:14.541] [INFO] cheese - inserting 1000 documents. first: Currant clearwing moth and last: Schloss Herrenhausen -[2018-02-13T00:44:14.584] [INFO] cheese - inserting 1000 documents. first: Somalia–United Arab Emirates relations and last: Wikipedia:Articles for deletion/Picnicface -[2018-02-13T00:44:14.593] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:44:14.635] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:44:14.709] [INFO] cheese - inserting 1000 documents. first: Night-flowering Catchfly and last: OCP Art Studio -[2018-02-13T00:44:14.723] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/news.jagrutgrahak.com and last: You (Japanese magazine) -[2018-02-13T00:44:14.760] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:44:14.785] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:44:14.900] [INFO] cheese - inserting 1000 documents. first: Georgia Highway 5 and last: Poecile atricapillus -[2018-02-13T00:44:14.954] [INFO] cheese - inserting 1000 documents. first: 1965–66 Football League and last: File:Mummysghost.jpg -[2018-02-13T00:44:14.954] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:44:15.053] [INFO] cheese - inserting 1000 documents. first: Lordville, Minnesota and last: Frida Rubiner -[2018-02-13T00:44:15.177] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T00:44:15.273] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:44:15.297] [INFO] cheese - inserting 1000 documents. first: Compensated phoria and last: Template:Editnotices/Page/January 14 -[2018-02-13T00:44:15.399] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:44:15.402] [INFO] cheese - inserting 1000 documents. first: Draft:A Woman is a Weathercock and last: Patan (Vidhan Sabha constituency) -[2018-02-13T00:44:15.490] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:44:15.654] [INFO] cheese - inserting 1000 documents. first: Kosmos 262 and last: Arthur Francis George Kerr -[2018-02-13T00:44:15.722] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T00:44:15.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Khaled Ukash and last: Category:People from Lynn, Massachusetts -[2018-02-13T00:44:15.816] [INFO] cheese - inserting 1000 documents. first: File:AmmanvarTemple-4.jpg and last: Aided Oenfhir Aife -[2018-02-13T00:44:15.869] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:44:15.872] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:44:15.897] [INFO] cheese - inserting 1000 documents. first: Crytek Kiev and last: UPI AFC Player of the Year -[2018-02-13T00:44:15.952] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:44:15.979] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/January 15 and last: Category:Antisemitism in England -[2018-02-13T00:44:16.055] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:44:16.077] [INFO] cheese - inserting 1000 documents. first: Neocompsa ruatana and last: Regina apostolorum academy -[2018-02-13T00:44:16.094] [INFO] cheese - inserting 1000 documents. first: Biblioteca Nacional de Mexico and last: Powiat of Wielun -[2018-02-13T00:44:16.141] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:44:16.144] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:44:16.225] [INFO] cheese - inserting 1000 documents. first: Template:Miami weatherbox and last: The Dancing Town -[2018-02-13T00:44:16.275] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:44:16.369] [INFO] cheese - inserting 1000 documents. first: Zettel and last: Morris Inquiry -[2018-02-13T00:44:16.378] [INFO] cheese - inserting 1000 documents. first: Freie Universitaet Berlin and last: Pustkow, Lower Silesian Voivodeship -[2018-02-13T00:44:16.399] [INFO] cheese - inserting 1000 documents. first: Milton State Park and last: Hueyapan -[2018-02-13T00:44:16.404] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:44:16.403] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:44:16.445] [INFO] cheese - inserting 1000 documents. first: Yu Liu (or Eric Liu) and last: German submarine U-4 (S183) -[2018-02-13T00:44:16.472] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:44:16.513] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:44:16.649] [INFO] cheese - inserting 1000 documents. first: Andorsjoen and last: 8347 Lallaward -[2018-02-13T00:44:16.684] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:44:16.738] [INFO] cheese - inserting 1000 documents. first: H. de C. Hastings and last: Energy FC -[2018-02-13T00:44:16.758] [INFO] cheese - inserting 1000 documents. first: Ovsyanki and last: Wikipedia:WikiProject Spam/Local/aragornblog.wordpress.com -[2018-02-13T00:44:16.776] [INFO] cheese - inserting 1000 documents. first: Template:RCW and last: Template:Bălți-geo-stub -[2018-02-13T00:44:16.815] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:44:16.816] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:44:16.845] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:44:16.951] [INFO] cheese - inserting 1000 documents. first: German submarine U-5 (S184) and last: Swimming at the 2001 World Aquatics Championships - Women's 4 × 200 metre freestyle relay -[2018-02-13T00:44:17.109] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:44:17.162] [INFO] cheese - inserting 1000 documents. first: Skarpt laege and last: Championship of Zuerich 2006 -[2018-02-13T00:44:17.166] [INFO] cheese - inserting 1000 documents. first: Worldways Canada and last: Wroclaw Palace -[2018-02-13T00:44:17.228] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:44:17.317] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:44:17.580] [INFO] cheese - inserting 1000 documents. first: Template:BenderMD-geo-stub and last: Gesta (skipper) -[2018-02-13T00:44:17.610] [INFO] cheese - inserting 1000 documents. first: Template:LI bus link and last: Aaj (1987 film) -[2018-02-13T00:44:17.646] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:44:17.671] [INFO] cheese - inserting 1000 documents. first: 1755 Lorbach and last: Ruthe B. Cowl -[2018-02-13T00:44:17.741] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:44:17.739] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T00:44:17.858] [INFO] cheese - inserting 1000 documents. first: File:2007-08 Illinois Fighting Illini men's basketball team.jpg and last: Concerto transcriptions for harpsichord and organ (Bach) -[2018-02-13T00:44:17.945] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:44:18.131] [INFO] cheese - inserting 1000 documents. first: Schwaendi GL and last: 5760 Mittlefehldt -[2018-02-13T00:44:18.158] [INFO] cheese - inserting 1000 documents. first: File:OSR.jpg and last: Old Kyo -[2018-02-13T00:44:18.177] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:44:18.238] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T00:44:18.368] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Angel and the Rain and last: Welbore Ellis (bishop) -[2018-02-13T00:44:18.391] [INFO] cheese - inserting 1000 documents. first: File:Windstar-Cruises-logo-2014.png and last: Template:Did you know nominations/Labour Spokesman -[2018-02-13T00:44:18.452] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:18.518] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T00:44:18.521] [INFO] cheese - inserting 1000 documents. first: Mofo gasy and last: Wikipedia:WikiProject Spam/LinkReports/anon.to -[2018-02-13T00:44:18.556] [INFO] cheese - inserting 1000 documents. first: Wladyslaw Stepien and last: Papaya (dance) -[2018-02-13T00:44:18.604] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:44:18.613] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:44:19.005] [INFO] cheese - inserting 1000 documents. first: Rantauprapat and last: 武广客运专线 -[2018-02-13T00:44:19.153] [INFO] cheese - inserting 1000 documents. first: Pasarea Colibri and last: South Weymouth Naval Air Station -[2018-02-13T00:44:19.195] [INFO] cheese - inserting 1000 documents. first: Miroku's Past Mistake and last: Barnsley East and Mexborough -[2018-02-13T00:44:19.206] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:44:19.226] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:44:19.230] [INFO] cheese - inserting 1000 documents. first: Jamil Jivani and last: Herbert J. Spiro -[2018-02-13T00:44:19.300] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T00:44:19.324] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:19.417] [INFO] cheese - inserting 1000 documents. first: Category:Cars introduced in 2017 and last: Draft:1984 Long Beach State 49ers football team -[2018-02-13T00:44:19.455] [INFO] cheese - inserting 1000 documents. first: Francis Brandling and last: Wikipedia:WikProject U.S. Roads/Washington/1937 laws -[2018-02-13T00:44:19.533] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T00:44:19.625] [INFO] cheese - batch complete in: 2.808 secs -[2018-02-13T00:44:19.673] [INFO] cheese - inserting 1000 documents. first: Book:1995 Atlantic hurricane season and last: The Space City -[2018-02-13T00:44:19.710] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:19.806] [INFO] cheese - inserting 1000 documents. first: Hilton hotel and last: 5303 Parijskij -[2018-02-13T00:44:19.829] [INFO] cheese - inserting 1000 documents. first: Angels (2014 film) and last: File:TVBmomentsofendearment.jpg -[2018-02-13T00:44:19.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Birthday Committee/Calendar/November/22 and last: 0.999.. -[2018-02-13T00:44:19.889] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:44:19.893] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:44:19.984] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:44:20.103] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikProject U.S. Roads/Washington/1939 laws and last: Tāmihana Te Rauparaha -[2018-02-13T00:44:20.126] [INFO] cheese - inserting 1000 documents. first: This is a Hospital and last: Apex location -[2018-02-13T00:44:20.163] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:44:20.187] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:44:20.189] [INFO] cheese - inserting 1000 documents. first: South Pas and last: Pearson correlation -[2018-02-13T00:44:20.291] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:44:20.347] [INFO] cheese - inserting 1000 documents. first: 3317 Paris and last: 2285 Ron Helin -[2018-02-13T00:44:20.407] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:44:20.474] [INFO] cheese - inserting 1000 documents. first: Blacklane and last: Cypraea maculata -[2018-02-13T00:44:20.513] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:44:20.598] [INFO] cheese - inserting 1000 documents. first: MPI MPxpress and last: Wikipedia:Articles for deletion/Spinach with Chocolate Sauce -[2018-02-13T00:44:20.641] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:44:20.662] [INFO] cheese - inserting 1000 documents. first: Prosthetic Head (single) and last: Wikipedia:Articles for deletion/Grip (software) -[2018-02-13T00:44:20.678] [INFO] cheese - inserting 1000 documents. first: 11724 Ronaldhsu and last: Lubesse -[2018-02-13T00:44:20.704] [INFO] cheese - inserting 1000 documents. first: Ikaheka snake and last: Strange Sensation (band) -[2018-02-13T00:44:20.738] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:44:20.765] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:44:20.786] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Main Page history/2017 January 12 and last: Category:1964 in youth association football -[2018-02-13T00:44:20.827] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:44:20.928] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:44:21.057] [INFO] cheese - inserting 1000 documents. first: Category:Bossier Parish Cavaliers baseball coaches and last: Category:United Kingdom retail company stubs -[2018-02-13T00:44:21.101] [INFO] cheese - inserting 1000 documents. first: Balgstaedt and last: Nuestros Pequenos Hermanos -[2018-02-13T00:44:21.143] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:44:21.235] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:44:21.455] [INFO] cheese - inserting 1000 documents. first: Category:Closed railway lines in London and last: Wikipedia:Books/Hadronic Matter -[2018-02-13T00:44:21.467] [INFO] cheese - inserting 1000 documents. first: SG Rommerz and last: The Safe-Keeper's Secret -[2018-02-13T00:44:21.550] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:44:21.603] [INFO] cheese - inserting 1000 documents. first: Category:Maritime history of Norway and last: Canton of Amiens-2 -[2018-02-13T00:44:21.622] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:44:21.627] [INFO] cheese - inserting 1000 documents. first: Romborg Hotel and last: St Mary Magdalene's Church, Richmond -[2018-02-13T00:44:21.663] [INFO] cheese - inserting 1000 documents. first: Lord Blundell and last: Zalea -[2018-02-13T00:44:21.652] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T00:44:21.728] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:44:21.849] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T00:44:22.013] [INFO] cheese - inserting 1000 documents. first: Category:Ontario stubs and last: Template:Latest stable software release/KHTML -[2018-02-13T00:44:22.064] [INFO] cheese - inserting 1000 documents. first: Commandement des Operations Speciales and last: Emile Edouard Charles Antoine. Zola -[2018-02-13T00:44:22.091] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:44:22.113] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:44:22.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Books/Half-Life 2 titles and last: Locus 7 Site -[2018-02-13T00:44:22.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wiki Ed/University of British Columbia, Okanagan/Tectonics and Orogenesis (W2) and last: Wikipedia:Articles for deletion/San Escobar -[2018-02-13T00:44:22.306] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:44:22.327] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:44:22.367] [INFO] cheese - inserting 1000 documents. first: File:Worcester Telegram & Gazette front page.jpg and last: Fulk Bertrand of Provence -[2018-02-13T00:44:22.396] [INFO] cheese - inserting 1000 documents. first: College Louise Wegman (CLW) and last: High Synagogue (Krakow) -[2018-02-13T00:44:22.425] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:44:22.463] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:44:22.540] [INFO] cheese - inserting 1000 documents. first: List of rivers of Saudi Arabia and last: EFY Group -[2018-02-13T00:44:22.604] [INFO] cheese - inserting 1000 documents. first: Hectaphelia tortuosa and last: Category:History of the Gisborne District -[2018-02-13T00:44:22.620] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:44:22.671] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:44:22.686] [INFO] cheese - inserting 1000 documents. first: Abduelhak Hamid and last: Playground for Life -[2018-02-13T00:44:22.723] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:44:22.799] [INFO] cheese - inserting 1000 documents. first: Category:Ordinariates for Eastern Catholic faithful and last: Migrants and Refugee Section -[2018-02-13T00:44:22.818] [INFO] cheese - inserting 1000 documents. first: Nagasena Mahathera and last: Wikipedia:Books/U-5 class submarines -[2018-02-13T00:44:22.853] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:44:22.897] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:44:23.077] [INFO] cheese - inserting 1000 documents. first: Zvončari and last: Francesco sartori -[2018-02-13T00:44:23.100] [INFO] cheese - inserting 1000 documents. first: Category:Gisborne District geography stubs and last: File:Siti Nurhaliza - An Iconic Exhibition.png -[2018-02-13T00:44:23.125] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:44:23.149] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:44:23.189] [INFO] cheese - inserting 1000 documents. first: 2012 AFC Championship game and last: Lulua Province -[2018-02-13T00:44:23.283] [INFO] cheese - inserting 1000 documents. first: Wouldn't Change a Thing (song) and last: Tom Atter -[2018-02-13T00:44:23.299] [INFO] cheese - inserting 1000 documents. first: Furcifer oustaleti and last: Category:French pop songs -[2018-02-13T00:44:23.303] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:44:23.313] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Books/U.S. Presidential Elections and last: White Mascarene Starling -[2018-02-13T00:44:23.353] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:44:23.398] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:44:23.405] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:44:23.712] [INFO] cheese - inserting 1000 documents. first: Blood cell cancer and last: 2013-14 Algerian Cup -[2018-02-13T00:44:23.727] [INFO] cheese - inserting 1000 documents. first: Canon EF 75–300mm lens and last: Fernando Lopes Graca -[2018-02-13T00:44:23.774] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:44:23.795] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:44:23.879] [INFO] cheese - inserting 1000 documents. first: St. John the Baptist's Church, Flookburgh and last: Wikipedia:WikiProject Spam/LinkReports/rlcresearch.com -[2018-02-13T00:44:23.931] [INFO] cheese - inserting 1000 documents. first: Pogonocherus anatolicus and last: Helfgott, Harald -[2018-02-13T00:44:23.953] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:44:23.998] [INFO] cheese - inserting 1000 documents. first: Muninga and last: Asia Jaya LRT station -[2018-02-13T00:44:24.018] [INFO] cheese - inserting 1000 documents. first: The Curse of King Tut's Tomb (1980 film) and last: Category:Queen Anne architecture in Oregon -[2018-02-13T00:44:24.026] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:44:24.107] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:44:24.142] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T00:44:24.157] [INFO] cheese - inserting 1000 documents. first: CD Cobena and last: Gyorgy Cziffra, Jr. -[2018-02-13T00:44:24.250] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:44:24.339] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Community Network Projects and last: Psychogena -[2018-02-13T00:44:24.401] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:44:24.522] [INFO] cheese - inserting 1000 documents. first: Glogov Brod and last: Vũ Thư -[2018-02-13T00:44:24.554] [INFO] cheese - inserting 1000 documents. first: Alternatives economiques and last: Apurimac Brush-finch -[2018-02-13T00:44:24.560] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:44:24.566] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rlcresearch.com and last: Amfikleia–Elateia -[2018-02-13T00:44:24.627] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:44:24.633] [INFO] cheese - inserting 1000 documents. first: If You Ever Leave Me (Barbra Streisand song) and last: Category:Media companies established in the 17th century -[2018-02-13T00:44:24.642] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:44:24.752] [INFO] cheese - inserting 1000 documents. first: Counter-spy and last: Alvah Meyer -[2018-02-13T00:44:24.794] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T00:44:24.924] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:44:24.991] [INFO] cheese - inserting 1000 documents. first: The Wraith (1957 TV play) and last: K.C. Abraham -[2018-02-13T00:44:25.011] [INFO] cheese - inserting 1000 documents. first: Episode 1 (Coronation Street) and last: Romkerhall Waterfall -[2018-02-13T00:44:25.060] [INFO] cheese - inserting 1000 documents. first: Harrah, Ras al-Khaimah and last: Hernandez, Rafael -[2018-02-13T00:44:25.060] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:44:25.064] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:44:25.098] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:44:25.533] [INFO] cheese - inserting 1000 documents. first: Category:Media companies established in the 16th century and last: Category:Macedonian female skiers -[2018-02-13T00:44:25.591] [INFO] cheese - inserting 1000 documents. first: File:S-Mart (Mexican grocery) (logo).jpg and last: Wikipedia:Version 1.0 Editorial Team/Ireland articles by quality/33 -[2018-02-13T00:44:25.597] [INFO] cheese - inserting 1000 documents. first: Dirfys–Messapia and last: Sussex Ornithological Society -[2018-02-13T00:44:25.619] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:44:25.665] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:44:25.758] [INFO] cheese - inserting 1000 documents. first: Freemium and last: Afriland First Bank -[2018-02-13T00:44:25.793] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T00:44:25.933] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T00:44:25.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiCup/History/2010/Submissions/MisterWiki and last: Wish You Were Here? -[2018-02-13T00:44:25.965] [INFO] cheese - inserting 1000 documents. first: Shoot-down and last: Huquan Station -[2018-02-13T00:44:25.994] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:44:26.058] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:44:26.079] [INFO] cheese - inserting 1000 documents. first: Lakota, Cote d'Ivoire and last: Hermann Weingaertner -[2018-02-13T00:44:26.101] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:44:26.258] [INFO] cheese - inserting 1000 documents. first: Maculabatis astra and last: Phillips, Allan Robert -[2018-02-13T00:44:26.307] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Road with Cypress and Star and last: Lypiya River -[2018-02-13T00:44:26.390] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:44:26.411] [INFO] cheese - inserting 1000 documents. first: Hyderabad, India (disambiguation) and last: Ucchannanchan no Honoo no Challenge: Denryu IraIra Bo -[2018-02-13T00:44:26.424] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:44:26.442] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:44:26.456] [INFO] cheese - inserting 1000 documents. first: Category:Eastern European World War II resistance movements and last: Coello, Augusto -[2018-02-13T00:44:26.544] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:44:26.747] [INFO] cheese - inserting 1000 documents. first: Henry Gale (disambiguation) and last: Albanian muhajirs -[2018-02-13T00:44:26.783] [INFO] cheese - inserting 1000 documents. first: Template:Cite podcast/sandbox2 and last: Category:China University of Geosciences -[2018-02-13T00:44:26.808] [INFO] cheese - inserting 1000 documents. first: Mutter Kusters Fahrt zum Himmel and last: Second Fussball-Bundesliga 1989-90 -[2018-02-13T00:44:26.838] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T00:44:26.838] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:44:26.891] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:44:27.012] [INFO] cheese - inserting 1000 documents. first: Delta-6-desaturase and last: 2013 Thai Division 2 League Bangkok & field Region -[2018-02-13T00:44:27.071] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:44:27.167] [INFO] cheese - inserting 1000 documents. first: Monkey Island 2: LeChuck's Revenge Special Edition and last: Haddie Gill -[2018-02-13T00:44:27.277] [INFO] cheese - inserting 1000 documents. first: Charles Whish and last: 1994 U.S. Men's Clay Court Championships - Singles -[2018-02-13T00:44:27.281] [INFO] cheese - inserting 1000 documents. first: Bird's-nest orchid and last: Padina lui Danisor River -[2018-02-13T00:44:27.284] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T00:44:27.326] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:44:27.363] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:44:27.439] [INFO] cheese - inserting 1000 documents. first: Mígreni and last: Burrard Dry Dock -[2018-02-13T00:44:27.613] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T00:44:27.751] [INFO] cheese - inserting 1000 documents. first: Rogow (Silesian Voivodeship) and last: PBA on KBS 2 -[2018-02-13T00:44:27.771] [INFO] cheese - inserting 1000 documents. first: 1994 UCI Road World Championships - Women's Time Trial and last: 2005 Australian Open - Men's Doubles -[2018-02-13T00:44:27.785] [INFO] cheese - inserting 1000 documents. first: Category:China University of Geosciences faculty and last: Football at the 1971 Mediterranean Games -[2018-02-13T00:44:27.790] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:44:27.816] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:44:27.823] [INFO] cheese - inserting 1000 documents. first: 1978 Prize of Moscow News and last: Listed buildings in Kalundborg Municipality -[2018-02-13T00:44:27.883] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T00:44:27.913] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:44:28.026] [INFO] cheese - inserting 1000 documents. first: Template:User Finland/doc1 and last: Galasodes nervosella -[2018-02-13T00:44:28.124] [INFO] cheese - inserting 1000 documents. first: List of asteroids/39601-39700 and last: Yngvars saga vidforla -[2018-02-13T00:44:28.143] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:44:28.161] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:44:28.295] [INFO] cheese - inserting 1000 documents. first: 2005 Australian Open - Men's Singles and last: Wikipedia:Articles for deletion/Ashley Pangborn -[2018-02-13T00:44:28.311] [INFO] cheese - inserting 1000 documents. first: Punat and last: Category:Hong Kong jazz musicians -[2018-02-13T00:44:28.336] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:44:28.370] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:44:28.382] [INFO] cheese - inserting 1000 documents. first: 1995–96 Iowa Hawkeyes men's basketball team and last: The Neighbours -[2018-02-13T00:44:28.436] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:44:28.474] [INFO] cheese - inserting 1000 documents. first: Baha'i Months and last: Josip Skoric -[2018-02-13T00:44:28.501] [INFO] cheese - inserting 1000 documents. first: Giacinto Diana and last: Fly Manufacturing Company Building -[2018-02-13T00:44:28.513] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:44:28.567] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:44:28.653] [INFO] cheese - inserting 1000 documents. first: Chlorippe vacuna f. albofasciata and last: Pronkstilleven -[2018-02-13T00:44:28.801] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:44:28.922] [INFO] cheese - inserting 1000 documents. first: Beit (surname) and last: 2008 Mercedes Cup - Singles -[2018-02-13T00:44:28.959] [INFO] cheese - inserting 1000 documents. first: Chama (Zambia) and last: Angyalfold -[2018-02-13T00:44:29.003] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:44:29.041] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:44:29.047] [INFO] cheese - inserting 1000 documents. first: Stephenson, James and last: Bethell, Hugh -[2018-02-13T00:44:29.149] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:44:29.172] [INFO] cheese - inserting 1000 documents. first: File:4sahEP.jpg and last: Ros henderson -[2018-02-13T00:44:29.301] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:44:29.392] [INFO] cheese - inserting 1000 documents. first: 2008 Monte Carlo Masters - Doubles and last: The King (comics) -[2018-02-13T00:44:29.408] [INFO] cheese - inserting 1000 documents. first: Shili Alaa and last: LGV Mediterranee -[2018-02-13T00:44:29.416] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:44:29.454] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:44:29.529] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/muscle.ca and last: Yves Behar -[2018-02-13T00:44:29.551] [INFO] cheese - inserting 1000 documents. first: Ken Melman and last: Category:Tourist attractions in Zamboanga City -[2018-02-13T00:44:29.634] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:44:29.677] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T00:44:29.719] [INFO] cheese - inserting 1000 documents. first: File:Durham Bulls Athletic Park (logo).png and last: Maharlika Village, Taguig -[2018-02-13T00:44:29.735] [INFO] cheese - inserting 1000 documents. first: Secaruia River and last: Bonar, Leon -[2018-02-13T00:44:29.753] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1980 Summer Olympics - Women's javelin throw and last: Codename: Kids Next Door - Operation: V.I.D.E.O.G.A.M.E. -[2018-02-13T00:44:29.812] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:44:29.811] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:44:29.834] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:44:29.973] [INFO] cheese - inserting 1000 documents. first: Phoenix street railway and last: Mökkurkálfi -[2018-02-13T00:44:30.097] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:44:30.165] [INFO] cheese - inserting 1000 documents. first: Coenzyme Q - cytochrome c reductase and last: Portal:Volcanoes/Volcanoes topics -[2018-02-13T00:44:30.200] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:44:30.210] [INFO] cheese - inserting 1000 documents. first: File:McLean's Scene.jpg and last: Malik (Bihar) -[2018-02-13T00:44:30.307] [INFO] cheese - inserting 1000 documents. first: Santa Rosa de Goias and last: Dhigemaahuttaa -[2018-02-13T00:44:30.340] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:44:30.375] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:44:30.555] [INFO] cheese - inserting 1000 documents. first: Alla mia età Tour 2009-2010 and last: Category:Road transport in Malta -[2018-02-13T00:44:30.600] [INFO] cheese - inserting 1000 documents. first: I'm a Juvenile Delinquent - Jail Me! and last: Powerlifting at the 2008 Summer Paralympics - Women's 82.5 kg -[2018-02-13T00:44:30.618] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:44:30.658] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:44:30.686] [INFO] cheese - inserting 1000 documents. first: Soimah Pancawati and last: Richard Bowyer (priest) -[2018-02-13T00:44:30.726] [INFO] cheese - inserting 1000 documents. first: Aldi Sud and last: Silistea River (Sitna) -[2018-02-13T00:44:30.780] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:44:30.779] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T00:44:30.933] [INFO] cheese - inserting 1000 documents. first: Ryan McFadyen and last: Highway 7 Alternate (Georgia) -[2018-02-13T00:44:30.963] [INFO] cheese - inserting 1000 documents. first: Malik (Kashmiri tribe) and last: Delayed release (linguistics) -[2018-02-13T00:44:31.000] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:44:31.002] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:44:31.025] [INFO] cheese - inserting 1000 documents. first: Draft:ClearBlade and last: Krishna Chandra Punetha -[2018-02-13T00:44:31.082] [INFO] cheese - inserting 1000 documents. first: La Casa de Madame Lulu and last: Pierre francois keraudren -[2018-02-13T00:44:31.097] [INFO] cheese - inserting 1000 documents. first: PRADO - Public Register of Travel and Identity Documents Online and last: Swimming at the 2005 Maccabiah Games - Women's 400 metre freestyle -[2018-02-13T00:44:31.102] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:31.106] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:44:31.155] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:44:31.217] [INFO] cheese - inserting 1000 documents. first: Iowa Highway 15 (south) and last: Paombong High School -[2018-02-13T00:44:31.252] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:44:31.339] [INFO] cheese - inserting 1000 documents. first: Fussball-Bundesliga 1992-93 and last: Ostrow Wlkp. -[2018-02-13T00:44:31.372] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:44:31.485] [INFO] cheese - inserting 1000 documents. first: Zhang Yiyi and last: Wikipedia:Articles for deletion/Sting (musical phrase) -[2018-02-13T00:44:31.498] [INFO] cheese - inserting 1000 documents. first: Georgia 7 Alternate and last: Portal:Military of Australia/Units/October 31 -[2018-02-13T00:44:31.565] [INFO] cheese - inserting 1000 documents. first: Khojki (script) and last: Category:Languages of Guimaras -[2018-02-13T00:44:31.565] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:44:31.572] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:44:31.624] [INFO] cheese - inserting 1000 documents. first: Saba Farmanfarmayan and last: Renewable energy subsidies -[2018-02-13T00:44:31.670] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:44:31.779] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:44:31.849] [INFO] cheese - inserting 1000 documents. first: Celestine Marie and last: Dragon Ball Z: Cho Saiya Densetsu -[2018-02-13T00:44:31.928] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:44:31.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Correo and last: Bonanza Air Lines Inc -[2018-02-13T00:44:32.055] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:44:32.420] [INFO] cheese - inserting 1000 documents. first: Rhemes-Saint-Georges and last: !Alarma! magazine -[2018-02-13T00:44:32.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/en.qantara.de and last: S. M. Hammond -[2018-02-13T00:44:32.464] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Crossopteryx and last: Presleyesque -[2018-02-13T00:44:32.472] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:44:32.533] [INFO] cheese - inserting 1000 documents. first: Paulo Cesar Vinha State Park and last: Category:Roman Catholic cathedrals in Colorado -[2018-02-13T00:44:32.554] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:44:32.592] [INFO] cheese - inserting 1000 documents. first: Elvis Pres;ey and last: MS Argentina (1929) -[2018-02-13T00:44:32.617] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T00:44:32.653] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:44:32.738] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T00:44:32.842] [INFO] cheese - inserting 1000 documents. first: Bertrada of Prum and last: Wikipedia:WikiProject Spam/LinkSearch/brandsoftheworld.com -[2018-02-13T00:44:32.859] [INFO] cheese - inserting 1000 documents. first: Wrestling at the 2000 Summer Olympics - Men's freestyle 76 kg and last: Dragon Ball: World's Greatest Adventure -[2018-02-13T00:44:32.916] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:44:32.990] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T00:44:33.324] [INFO] cheese - inserting 1000 documents. first: Grey-headed swamphen and last: Miaowei Dam -[2018-02-13T00:44:33.425] [INFO] cheese - inserting 1000 documents. first: Micah Townshend and last: Wikipedia:Articles for deletion/Royal Rangers (2nd nomination) -[2018-02-13T00:44:33.436] [INFO] cheese - inserting 1000 documents. first: Lurøya, Nordland and last: Charter Ninety-Seven -[2018-02-13T00:44:33.481] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T00:44:33.593] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T00:44:33.617] [INFO] cheese - inserting 1000 documents. first: An der schoenen Blauen Donau and last: Ein Lied kann eine Bruecke sein -[2018-02-13T00:44:33.623] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T00:44:33.727] [INFO] cheese - inserting 1000 documents. first: 1968 NFL Championship Game and last: Transport Phenomenon -[2018-02-13T00:44:33.725] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T00:44:33.841] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T00:44:34.057] [INFO] cheese - inserting 1000 documents. first: Kentucky Route 2830 and last: Portal:Byzantine Empire/Selected picture/1 -[2018-02-13T00:44:34.089] [INFO] cheese - inserting 1000 documents. first: HMS Cuckoo (1806) and last: Battle of Hamra Al Asad -[2018-02-13T00:44:34.092] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:44:34.219] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T00:44:34.262] [INFO] cheese - inserting 1000 documents. first: Territorial Prelature of Acre e Purus and last: Akram Zuway -[2018-02-13T00:44:34.342] [INFO] cheese - inserting 1000 documents. first: Epimelitta postimelina and last: Template:Find sources multi/gnewspapers -[2018-02-13T00:44:34.409] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T00:44:34.459] [INFO] cheese - inserting 1000 documents. first: Brunatre and last: Stanislaw Pieta -[2018-02-13T00:44:34.467] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T00:44:34.478] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:44:34.694] [INFO] cheese - inserting 1000 documents. first: Keith Biles and last: Tinajo (place) -[2018-02-13T00:44:34.716] [INFO] cheese - inserting 1000 documents. first: Aragvi and last: Jaroslav Kristek -[2018-02-13T00:44:34.816] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T00:44:34.828] [INFO] cheese - inserting 1000 documents. first: Juan Jose Castelli and last: Moscardon, Teruel -[2018-02-13T00:44:34.813] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:44:34.874] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:44:35.011] [INFO] cheese - inserting 1000 documents. first: Draft:Hello God (song) and last: The Forest Seasons -[2018-02-13T00:44:35.128] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:44:35.175] [INFO] cheese - inserting 1000 documents. first: Juan Jose Amezaga and last: Xelil Duhoki -[2018-02-13T00:44:35.185] [INFO] cheese - inserting 1000 documents. first: Chizinau and last: File:Ryanair logo 2013(1).svg -[2018-02-13T00:44:35.226] [INFO] cheese - inserting 1000 documents. first: Princess Nicholas of Greece and Denmark and last: Multinational Force – Iraq -[2018-02-13T00:44:35.240] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:44:35.260] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:44:35.347] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T00:44:35.533] [INFO] cheese - inserting 1000 documents. first: Ieremia Movila and last: Torvizcon, Granada -[2018-02-13T00:44:35.563] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:44:35.702] [INFO] cheese - inserting 1000 documents. first: Category:1979 in New Zealand and last: Perennating organ -[2018-02-13T00:44:35.782] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T00:44:35.804] [INFO] cheese - inserting 1000 documents. first: Neopalpa donaldtrumpi and last: Category:Women's organizations in Norway -[2018-02-13T00:44:35.859] [INFO] cheese - inserting 1000 documents. first: Why Bother? (essay) and last: Wikipedia:Articles for deletion/Marc Edelman -[2018-02-13T00:44:35.875] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T00:44:35.917] [INFO] cheese - inserting 1000 documents. first: Portelandia and last: Vaesby Centrum -[2018-02-13T00:44:35.958] [INFO] cheese - inserting 1000 documents. first: FGREP and last: Spanish submarine Tramontana (S-74) -[2018-02-13T00:44:36.004] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:44:36.051] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T00:44:36.151] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T00:44:36.403] [INFO] cheese - inserting 1000 documents. first: Big Muff p and last: Trongisvagsfjordur -[2018-02-13T00:44:36.474] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:44:36.560] [INFO] cheese - inserting 1000 documents. first: Category:Women's organizations in Scotland and last: Bham airport -[2018-02-13T00:44:36.625] [INFO] cheese - inserting 1000 documents. first: Charlie Ginsburg and last: Bègles-Bordeaux -[2018-02-13T00:44:36.654] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:44:36.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GS/CC and last: Kenkabō Inoue -[2018-02-13T00:44:36.769] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T00:44:36.847] [INFO] cheese - inserting 1000 documents. first: Magnus Minneskold and last: Grenville--Dundas -[2018-02-13T00:44:36.856] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/sexdolls-sexdolls.com and last: Behavioral urbanism -[2018-02-13T00:44:36.874] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:44:36.883] [INFO] cheese - batch complete in: 1.536 secs -[2018-02-13T00:44:36.984] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T00:44:37.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/108.170.85.234/Archive and last: Pavlo Klimkin -[2018-02-13T00:44:37.217] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T00:44:37.233] [INFO] cheese - inserting 1000 documents. first: Rua Vinte Cinco de Marco and last: Runovici -[2018-02-13T00:44:37.249] [INFO] cheese - inserting 1000 documents. first: Giant grasshopper and last: Karpiński (surname) -[2018-02-13T00:44:37.257] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:44:37.310] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:44:37.409] [INFO] cheese - inserting 1000 documents. first: Inoue Koichi and last: 1965 in jazz -[2018-02-13T00:44:37.421] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Anniversaries/June/June 3 and last: Template:IranPRS -[2018-02-13T00:44:37.443] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:44:37.480] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:44:37.566] [INFO] cheese - inserting 1000 documents. first: Tsao Zhen and last: Maria de Huerva, Spain -[2018-02-13T00:44:37.599] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:44:37.620] [INFO] cheese - inserting 1000 documents. first: Madiun Regency and last: Template:NOCin1948WinterOlympics -[2018-02-13T00:44:37.707] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:44:37.725] [INFO] cheese - inserting 1000 documents. first: Category:Colgate Raiders women's basketball navigational boxes and last: Castle of Pembroke -[2018-02-13T00:44:37.783] [INFO] cheese - inserting 1000 documents. first: Category:Spanish musical films and last: San Diego City Council elections, 2006 -[2018-02-13T00:44:37.792] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:44:37.850] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:44:37.933] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Selected Biography/11 and last: Al Naslah -[2018-02-13T00:44:37.962] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:44:37.993] [INFO] cheese - inserting 1000 documents. first: The Betrayal Knows My Name and last: George Mannings -[2018-02-13T00:44:38.039] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Colditz Castle/archive1 and last: File:Ugly Betty s01e03.png -[2018-02-13T00:44:38.068] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:44:38.125] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:44:38.258] [INFO] cheese - inserting 1000 documents. first: Better With You Tour and last: File:Prozakhiphop.jpg -[2018-02-13T00:44:38.271] [INFO] cheese - inserting 1000 documents. first: P.S. Kroyer and last: Fastos. Ostrailian fo bia. -[2018-02-13T00:44:38.374] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:44:38.425] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:44:38.436] [INFO] cheese - inserting 1000 documents. first: San Diego City Council elections, 2008 and last: 2014 Pro Kabaddi League season -[2018-02-13T00:44:38.475] [INFO] cheese - inserting 1000 documents. first: Castle of Bridgnorth and last: Category:Renaissance sculptures by artist -[2018-02-13T00:44:38.542] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:44:38.615] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:44:38.765] [INFO] cheese - inserting 1000 documents. first: Cobanlar and last: Bundesministerium fuer Familie, Senioren, Frauen und Jugend -[2018-02-13T00:44:38.828] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:44:38.831] [INFO] cheese - inserting 1000 documents. first: Ghiduţ Creek and last: File:Eddie Rabbitt - Step by Step.jpg -[2018-02-13T00:44:38.917] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:44:38.972] [INFO] cheese - inserting 1000 documents. first: Looking For Jake and last: Place of the Way -[2018-02-13T00:44:39.053] [INFO] cheese - inserting 1000 documents. first: Mahammadpur and last: Category:FC Ceahlăul Piatra Neamț -[2018-02-13T00:44:39.088] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T00:44:39.091] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:44:39.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gov.ph and last: Romanità -[2018-02-13T00:44:39.165] [INFO] cheese - inserting 1000 documents. first: Chung hua min kuo and last: Vincent Tee -[2018-02-13T00:44:39.200] [INFO] cheese - inserting 1000 documents. first: Assemblee parlementaire de la Francophonie and last: Felix Houphouet-Boigny Cup (Africa) -[2018-02-13T00:44:39.218] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:44:39.253] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:44:39.261] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:44:39.608] [INFO] cheese - inserting 1000 documents. first: Waiwera Infinity Thermal Spa Resort and last: Wikipedia:WikiProject Spam/LinkReports/websahar.com -[2018-02-13T00:44:39.670] [INFO] cheese - inserting 1000 documents. first: Erie--Lincoln and last: Koecher -[2018-02-13T00:44:39.693] [INFO] cheese - inserting 1000 documents. first: Category:FC Ceahlăul Piatra Neamț players and last: List of Republic of Ireland national futsal team matches -[2018-02-13T00:44:39.694] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T00:44:39.719] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:44:39.759] [INFO] cheese - inserting 1000 documents. first: FernandoSucre and last: Gocoo -[2018-02-13T00:44:39.818] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:44:39.862] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:44:39.930] [INFO] cheese - inserting 1000 documents. first: Hanoi International School and last: Category:Quaker articles by importance -[2018-02-13T00:44:40.035] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:44:40.114] [INFO] cheese - inserting 1000 documents. first: Category:Serbian football clubs 2009–10 season and last: Category:Schools in Cheshire East -[2018-02-13T00:44:40.148] [INFO] cheese - inserting 1000 documents. first: Hosjoe Church and last: Clatterbridge -[2018-02-13T00:44:40.246] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:44:40.228] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T00:44:40.533] [INFO] cheese - inserting 1000 documents. first: Penis gag and last: Flying Disk -[2018-02-13T00:44:40.559] [INFO] cheese - inserting 1000 documents. first: Hans-Juergen Pohmann and last: Wikipedia:Requests for checkuser/Case/JSane -[2018-02-13T00:44:40.572] [INFO] cheese - inserting 1000 documents. first: Herzegovina Uprising (1852-62) and last: Streltzoviella insularis -[2018-02-13T00:44:40.577] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:44:40.593] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:44:40.601] [INFO] cheese - inserting 1000 documents. first: If You Ever Change Your Mind and last: State Route 178 (New York) -[2018-02-13T00:44:40.654] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:44:40.699] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T00:44:40.788] [INFO] cheese - inserting 1000 documents. first: File:Undocumented2010Poster.jpg and last: Template:Fb competition 2012 Torneo de Honor -[2018-02-13T00:44:40.850] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:44:40.970] [INFO] cheese - inserting 1000 documents. first: Category:Law firms established in 1826 and last: Category:Niagara River Lions coaches -[2018-02-13T00:44:40.970] [INFO] cheese - inserting 1000 documents. first: Urmila Aryal and last: Henkka Seppaelae -[2018-02-13T00:44:40.992] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:44:41.165] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T00:44:41.232] [INFO] cheese - inserting 1000 documents. first: Nigeria Defence Academy and last: John Neschling -[2018-02-13T00:44:41.292] [INFO] cheese - inserting 1000 documents. first: Herbert B. Maw and last: Template:Events at the 2003 Pan American Games -[2018-02-13T00:44:41.303] [INFO] cheese - inserting 1000 documents. first: Jagdfliegerfuehrer Rumaenien and last: Tuscherz Alfermee -[2018-02-13T00:44:41.307] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:44:41.335] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:44:41.360] [INFO] cheese - inserting 1000 documents. first: Category:MEPs for Hungary 2014–19 and last: Markham Stouffville Hospital Terminal -[2018-02-13T00:44:41.361] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:44:41.458] [INFO] cheese - inserting 1000 documents. first: Natalya Kubrina and last: Gregormpista -[2018-02-13T00:44:41.465] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T00:44:41.562] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:44:41.583] [INFO] cheese - inserting 1000 documents. first: Category:US curling champions and last: Lohnbuchhalter Kremke -[2018-02-13T00:44:41.634] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:44:41.662] [INFO] cheese - inserting 1000 documents. first: Furstenstein and last: Iskembe Corbas -[2018-02-13T00:44:41.694] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:44:42.011] [INFO] cheese - inserting 1000 documents. first: Organized crime in Bosnia and Herzegovina and last: Mohamed Nagy -[2018-02-13T00:44:42.037] [INFO] cheese - inserting 1000 documents. first: Harold Sidney Harmsworth, 1st Viscount Rothermere and last: File:Wall of Serpents.jpg -[2018-02-13T00:44:42.077] [INFO] cheese - inserting 1000 documents. first: File:Capitol Pride Salem Logo.jpg.png and last: Category:Étoile Lusitana players -[2018-02-13T00:44:42.094] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:44:42.101] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:44:42.114] [INFO] cheese - inserting 1000 documents. first: Nephopteryx validella and last: Multicoloria berlandella -[2018-02-13T00:44:42.116] [INFO] cheese - inserting 1000 documents. first: Premysl, the Ploughman and last: Louis Louis-Dreyfus -[2018-02-13T00:44:42.163] [INFO] cheese - inserting 1000 documents. first: Ruth Platt and last: Monarcha melanonotus -[2018-02-13T00:44:42.165] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:44:42.178] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:44:42.208] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:44:42.253] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:44:42.652] [INFO] cheese - inserting 1000 documents. first: A Stitch in Time (Continuum) and last: Category:Lists of tallest buildings in New Jersey -[2018-02-13T00:44:42.659] [INFO] cheese - inserting 1000 documents. first: Template:Yugoslavia squad 1967 Mediterranean Games (men's handball) and last: Template:The Fabulous Kangaroos -[2018-02-13T00:44:42.668] [INFO] cheese - inserting 1000 documents. first: Template:User jewell and last: 1942–43 Blackpool F.C. season -[2018-02-13T00:44:42.684] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Magazines/Animage/2003/06 and last: HMS Ambassador -[2018-02-13T00:44:42.732] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:44:42.742] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:44:42.791] [INFO] cheese - inserting 1000 documents. first: Titanic, mille e una storia and last: Category:Jurassic plants -[2018-02-13T00:44:42.797] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:44:42.811] [INFO] cheese - inserting 1000 documents. first: The Broken heart and last: Wikipedia:Articles for deletion/Hate Song -[2018-02-13T00:44:42.852] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:44:42.904] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:44:42.909] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:44:43.311] [INFO] cheese - inserting 1000 documents. first: 2017 Delaware Fightin' Blue Hens football team and last: Category:United States regulations -[2018-02-13T00:44:43.345] [INFO] cheese - inserting 1000 documents. first: Simon Husbands and last: Mount Meeker -[2018-02-13T00:44:43.378] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:44:43.433] [INFO] cheese - inserting 1000 documents. first: Carlos Isaac and last: Barbara Kuriger -[2018-02-13T00:44:43.404] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:44:43.546] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:44:43.599] [INFO] cheese - inserting 1000 documents. first: Tom Cudahy and last: Category:Worth Dying For albums -[2018-02-13T00:44:43.668] [INFO] cheese - inserting 1000 documents. first: Penn National Race Course and last: Italian profanity -[2018-02-13T00:44:43.719] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:44:43.751] [INFO] cheese - inserting 1000 documents. first: Texas Women and last: File:Az catt 1953.jpg -[2018-02-13T00:44:43.876] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T00:44:43.879] [INFO] cheese - inserting 1000 documents. first: Macadam Avenue and last: Southwark Playhouse -[2018-02-13T00:44:43.969] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:44:44.096] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T00:44:44.170] [INFO] cheese - inserting 1000 documents. first: Category:Works set in the 4th century and last: David Cutler (disambiguation) -[2018-02-13T00:44:44.248] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:44:44.284] [INFO] cheese - inserting 1000 documents. first: Argyrodines pulchella and last: La bande à Renaud -[2018-02-13T00:44:44.314] [INFO] cheese - inserting 1000 documents. first: Arab Briton and last: Infanta Ana de Jesus Maria, Duchess of Loule -[2018-02-13T00:44:44.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Silver Knight Awards and last: Category:Funiculinidae -[2018-02-13T00:44:44.344] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:44:44.379] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:44:44.459] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:44:44.536] [INFO] cheese - inserting 1000 documents. first: 1977 in heavy metal music and last: Hezbollah military activities -[2018-02-13T00:44:44.593] [INFO] cheese - inserting 1000 documents. first: Zoquitlán and last: Paranginskiy -[2018-02-13T00:44:44.626] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:44:44.653] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:44:44.678] [INFO] cheese - inserting 1000 documents. first: Be My Lover Now and last: Mauricio dos Santos Nascimento -[2018-02-13T00:44:44.709] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T00:44:44.711] [INFO] cheese - inserting 1000 documents. first: Camaquã State Park and last: Template:Gastropods.com -[2018-02-13T00:44:44.765] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:44:44.888] [INFO] cheese - inserting 1000 documents. first: La Bande a Renaud and last: Wikipedia:Today's featured article/July 8, 2014 -[2018-02-13T00:44:44.926] [INFO] cheese - inserting 1000 documents. first: Whiston, Staffordshire and last: Here's Your Mule -[2018-02-13T00:44:44.929] [INFO] cheese - inserting 1000 documents. first: Donna Theodore and last: La Melodia de la Calle -[2018-02-13T00:44:44.944] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:44:44.970] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:44:44.980] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:44:45.021] [INFO] cheese - inserting 1000 documents. first: Paranginski and last: File:Now the Animals Have a Voice.jpg -[2018-02-13T00:44:45.073] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:44:45.151] [INFO] cheese - inserting 1000 documents. first: Saint Nicholas Serbian Orthodox Church, Szeged and last: Wikipedia:Articles for deletion/Casanova Frankenstein -[2018-02-13T00:44:45.162] [INFO] cheese - inserting 1000 documents. first: Panelist and last: Xak III: The Eternal Recurrence -[2018-02-13T00:44:45.200] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:44:45.228] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:44:45.246] [INFO] cheese - inserting 1000 documents. first: Stara Lubovna District and last: Sanindo -[2018-02-13T00:44:45.267] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2014-07-08 and last: Berdmore's narrow mouthed frogs -[2018-02-13T00:44:45.287] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:44:45.316] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:44:45.395] [INFO] cheese - inserting 1000 documents. first: List of RPM number-one country singles chart of 1996 (Canada) and last: File:Aranjman 2011.jpeg -[2018-02-13T00:44:45.441] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:44:45.447] [INFO] cheese - inserting 1000 documents. first: Pitcairnia heterophylla and last: Go Away Stowaway -[2018-02-13T00:44:45.501] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:44:45.518] [INFO] cheese - inserting 1000 documents. first: Nymphaea zenkeri 'Red' and last: Saint Antoine Street -[2018-02-13T00:44:45.556] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:44:45.579] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nhadephanoi.net and last: NBER Working Paper -[2018-02-13T00:44:45.638] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:44:45.689] [INFO] cheese - inserting 1000 documents. first: Category:Hurricane (band) albums and last: McGregor Formation -[2018-02-13T00:44:45.779] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:44:45.868] [INFO] cheese - inserting 1000 documents. first: KTTD and last: Picton Express -[2018-02-13T00:44:45.962] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:44:46.043] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2012 AFC Cup and last: Small Smiles Centers -[2018-02-13T00:44:46.057] [INFO] cheese - inserting 1000 documents. first: Category:War and politics and last: Narsimha (film) -[2018-02-13T00:44:46.102] [INFO] cheese - inserting 1000 documents. first: Physiological reviews and last: Wikipedia:Articles for deletion/Australian Wildlife Secrets Magazine -[2018-02-13T00:44:46.126] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:44:46.190] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:44:46.193] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:44:46.242] [INFO] cheese - inserting 1000 documents. first: Prosser Limestone and last: Wikipedia:Articles for deletion/Dave Wilson (Ontario politician) -[2018-02-13T00:44:46.263] [INFO] cheese - inserting 1000 documents. first: Skipton Girls High and last: 11th Regiment of Militia -[2018-02-13T00:44:46.322] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:44:46.330] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T00:44:46.679] [INFO] cheese - inserting 1000 documents. first: Always & For Real and last: Pixies (band) -[2018-02-13T00:44:46.736] [INFO] cheese - inserting 1000 documents. first: Category:Big Ten Conference men's soccer standings templates and last: Category:Passenger rail transport in Iran -[2018-02-13T00:44:46.748] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:44:46.766] [INFO] cheese - inserting 1000 documents. first: Christmas bomber and last: Category:1990 conferences -[2018-02-13T00:44:46.790] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:44:46.819] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:44:46.907] [INFO] cheese - inserting 1000 documents. first: Acropora humilis and last: Xiangxiang City -[2018-02-13T00:44:46.955] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:44:47.063] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2012 Summer Olympics and last: Özal ailesi -[2018-02-13T00:44:47.065] [INFO] cheese - inserting 1000 documents. first: Mandunyane and last: In the Stone -[2018-02-13T00:44:47.123] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T00:44:47.136] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:44:47.188] [INFO] cheese - inserting 1000 documents. first: Images (Kenny Barron album) and last: South African general election, 2019 -[2018-02-13T00:44:47.204] [INFO] cheese - inserting 1000 documents. first: Prost AP01 and last: Cathay Pacific Cargo -[2018-02-13T00:44:47.232] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:44:47.257] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:44:47.315] [INFO] cheese - inserting 1000 documents. first: Template:Poland-wintersport-bio-stub and last: Timeline of the 2009–10 South Pacific cyclone season -[2018-02-13T00:44:47.376] [INFO] cheese - inserting 1000 documents. first: Özal aile and last: Hovsgol aymag -[2018-02-13T00:44:47.365] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:44:47.401] [INFO] cheese - inserting 1000 documents. first: Flock-1 18 and last: Teaching Mathematics and Its Applications -[2018-02-13T00:44:47.433] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:44:47.480] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:44:47.563] [INFO] cheese - inserting 1000 documents. first: Smile Away and last: Wicked Woman (album) -[2018-02-13T00:44:47.623] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:44:47.685] [INFO] cheese - inserting 1000 documents. first: Volume One and last: Andree Clair -[2018-02-13T00:44:47.711] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:44:47.716] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Jayne wind up and last: Imma hemixanthella -[2018-02-13T00:44:47.767] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected article/44, 2006 and last: Wikipedia:WikiProject Jewish Culture -[2018-02-13T00:44:47.832] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:44:47.898] [INFO] cheese - inserting 1000 documents. first: Portal:Metro Manila/Intro2 and last: Caesar (I Blame Coco song) -[2018-02-13T00:44:47.936] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:44:48.049] [INFO] cheese - inserting 1000 documents. first: Alastair Ross Goobey and last: Intercontinental Cup winning managers -[2018-02-13T00:44:48.083] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:44:48.119] [INFO] cheese - inserting 1000 documents. first: Jim Dutton and last: Franco manzi -[2018-02-13T00:44:48.258] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:44:48.287] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:44:48.407] [INFO] cheese - inserting 1000 documents. first: Limigantes (Iazyges serfs) and last: Underground: The Tokyo Gas Attack and the Japanese Psyche (Haruki Murakami book) -[2018-02-13T00:44:48.555] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T00:44:48.584] [INFO] cheese - inserting 1000 documents. first: Tutasa, Boyaca and last: Kiritimati sandpiper -[2018-02-13T00:44:48.653] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:44:48.750] [INFO] cheese - inserting 1000 documents. first: 2012 FINA World Swimming Championships (25m) and last: List of newspapers published in Kentucky -[2018-02-13T00:44:48.807] [INFO] cheese - inserting 1000 documents. first: 2012 UConn Huskies football and last: Category:Wikipedia sockpuppets of Laksh talreja -[2018-02-13T00:44:48.813] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:44:48.870] [INFO] cheese - inserting 1000 documents. first: Doin' It (LL Cool J song) and last: 38th Wisconsin Volunteer Infantry Regiment -[2018-02-13T00:44:48.978] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T00:44:49.017] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T00:44:49.108] [INFO] cheese - inserting 1000 documents. first: Jose Romeo and last: Yildiz class -[2018-02-13T00:44:49.165] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:44:49.165] [INFO] cheese - inserting 1000 documents. first: Ashley Madison and last: Earldom of Radnor -[2018-02-13T00:44:49.251] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T00:44:49.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elitefoot.com and last: Yves Bitséki Moto -[2018-02-13T00:44:49.417] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T00:44:49.426] [INFO] cheese - inserting 1000 documents. first: Karl Friedrich von Weizsacker and last: La Boheme (Leoncavallo) -[2018-02-13T00:44:49.429] [INFO] cheese - inserting 1000 documents. first: List of newspapers published in Louisiana and last: Go Youn-ha -[2018-02-13T00:44:49.442] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Orubel and last: Venetian–Genoese Wars -[2018-02-13T00:44:49.467] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:44:49.473] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:44:49.511] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:44:49.623] [INFO] cheese - inserting 1000 documents. first: List of hospitals in Minnesota and last: Sliven, Bulgaria -[2018-02-13T00:44:49.632] [INFO] cheese - inserting 1000 documents. first: Washington Redskin and last: AEG Electrolux -[2018-02-13T00:44:49.659] [INFO] cheese - inserting 1000 documents. first: Stephen Schlesinger and last: Michael Kostka -[2018-02-13T00:44:49.659] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:44:49.667] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:44:49.699] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:44:49.811] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations in the canton of Aargau and last: Paul Ernst (Avenger writer) -[2018-02-13T00:44:49.860] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:44:49.918] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sangita Phogat and last: Template:Buriram United F.C. matches -[2018-02-13T00:44:49.924] [INFO] cheese - inserting 1000 documents. first: Yu-bin and last: Batei Nissan Bak -[2018-02-13T00:44:49.971] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:44:49.970] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:44:49.984] [INFO] cheese - inserting 1000 documents. first: Jan Bjoerklund and last: Dundgovi Aymag -[2018-02-13T00:44:50.028] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:44:50.030] [INFO] cheese - inserting 1000 documents. first: Category:Historic constituencies in County Offaly and last: Category:Western Equatoria -[2018-02-13T00:44:50.088] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:44:50.103] [INFO] cheese - inserting 1000 documents. first: Shumen, Bulgaria and last: Katun -[2018-02-13T00:44:50.178] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:44:50.224] [INFO] cheese - inserting 1000 documents. first: Arainn Mhor and last: Bojan Nikolic -[2018-02-13T00:44:50.246] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:44:50.346] [INFO] cheese - inserting 1000 documents. first: Lockheed F-94C-1-LO Starfire and last: Joseph M. Fletcher -[2018-02-13T00:44:50.381] [INFO] cheese - inserting 1000 documents. first: Mascarene Grass Frog and last: Hyeonmi -[2018-02-13T00:44:50.397] [INFO] cheese - inserting 1000 documents. first: Category:2017 in men's volleyball and last: South Lindsey Township, Benton County, Missouri -[2018-02-13T00:44:50.438] [INFO] cheese - inserting 1000 documents. first: Orland Main Airfield and last: Mada'in -[2018-02-13T00:44:50.453] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:44:50.540] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:44:50.582] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:44:50.595] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:44:50.726] [INFO] cheese - inserting 1000 documents. first: Saint Stanislaus Roman Catholic Church Complex and last: Peterborough Greyhound Stadium -[2018-02-13T00:44:50.775] [INFO] cheese - inserting 1000 documents. first: Lucius Cornelius Merula (consul 87 BC) and last: Jason Bell (American football) -[2018-02-13T00:44:50.806] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:44:50.902] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:44:51.054] [INFO] cheese - inserting 1000 documents. first: Le peril jeune and last: Jozin z bazin -[2018-02-13T00:44:51.169] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:44:51.255] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian WikiJanitors and last: Zoom (TV series) -[2018-02-13T00:44:51.258] [INFO] cheese - inserting 1000 documents. first: Ukrainian Catholic Metropolitan Archdiocese of Ivano-Frankivsk and last: Template:1994–95 NHL Western Conference standings/doc -[2018-02-13T00:44:51.290] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Top 25 Report/December 2009 and last: Draft:Leopold and His Fiction -[2018-02-13T00:44:51.321] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:44:51.356] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T00:44:51.413] [INFO] cheese - inserting 1000 documents. first: Pethia manipurensis and last: State Route 345 (New York) -[2018-02-13T00:44:51.413] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:44:51.541] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:44:51.661] [INFO] cheese - inserting 1000 documents. first: KXTS-LD and last: North Carolina Highway 10 (mid-1930s) -[2018-02-13T00:44:51.765] [INFO] cheese - inserting 1000 documents. first: 11th Regiment of Militia (Continental Army) and last: Homosexual Offences (Northern Ireland) Order 1982 -[2018-02-13T00:44:51.771] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:44:51.810] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:44:51.970] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CUP/S/JC and last: New York Route 376 -[2018-02-13T00:44:51.982] [INFO] cheese - inserting 1000 documents. first: Template:RWS/doc and last: NBA 2K15 (videogame) -[2018-02-13T00:44:52.006] [INFO] cheese - inserting 1000 documents. first: Chōgosonshiji Temple and last: Makidai -[2018-02-13T00:44:52.022] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:44:52.023] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:44:52.104] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:44:52.125] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Xinye Village and last: Crossley tender -[2018-02-13T00:44:52.263] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:44:52.425] [INFO] cheese - inserting 1000 documents. first: Ivan Lukačić and last: Portal:Denmark/Selected article/6 -[2018-02-13T00:44:52.477] [INFO] cheese - inserting 1000 documents. first: North Carolina Highway 10 (pre-mid-1930s) and last: Category:University of North Carolina at Chapel Hill faculty -[2018-02-13T00:44:52.552] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:44:52.674] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:44:52.709] [INFO] cheese - inserting 1000 documents. first: Polytechnic University of Madrid and last: NY Route 598 -[2018-02-13T00:44:52.775] [INFO] cheese - inserting 1000 documents. first: 1971 in Estonian television and last: Category:Wikipedia infoboxes -[2018-02-13T00:44:52.801] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:44:52.832] [INFO] cheese - inserting 1000 documents. first: File:SV Hubentut Fortuna.svg and last: Sir Charles Hudson, 1st Baronet -[2018-02-13T00:44:52.858] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:44:52.946] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T00:44:53.000] [INFO] cheese - inserting 1000 documents. first: Category:Syrian expatriates in Jordan and last: Raouf Bernaoui -[2018-02-13T00:44:53.122] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:44:53.282] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable release/Yahoo! Music Jukebox and last: Dokis First Nation -[2018-02-13T00:44:53.328] [INFO] cheese - inserting 1000 documents. first: Route 598 (New York) and last: Goopy and Bagha -[2018-02-13T00:44:53.347] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:44:53.372] [INFO] cheese - inserting 1000 documents. first: Chief Hunter Jack and last: Syntax (typeface) -[2018-02-13T00:44:53.375] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:44:53.405] [INFO] cheese - inserting 1000 documents. first: Template:Fb cl2 header and last: List of longest cross-country trails -[2018-02-13T00:44:53.420] [INFO] cheese - inserting 1000 documents. first: Category:1985 in Estonian television and last: Mızıkçam -[2018-02-13T00:44:53.463] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:44:53.463] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:44:53.561] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:44:53.714] [INFO] cheese - inserting 1000 documents. first: Category:Defensor Sporting Club managers and last: Christkindelsmaerik -[2018-02-13T00:44:53.751] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:44:53.856] [INFO] cheese - inserting 1000 documents. first: Category:Novels about the Holocaust and last: Irish Language in Britain -[2018-02-13T00:44:53.918] [INFO] cheese - inserting 1000 documents. first: Category:1808 establishments in Georgia (U.S. state) and last: Llansantffraed, Ceredigion -[2018-02-13T00:44:53.922] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:44:53.926] [INFO] cheese - inserting 1000 documents. first: Papyrus Graecus Holmiensis and last: Jennifer Metcalfe -[2018-02-13T00:44:53.932] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2010 Serie A and last: Category:Neoclassical architecture in the United States by state -[2018-02-13T00:44:53.949] [INFO] cheese - inserting 1000 documents. first: Malmo Hogskola and last: 1494 Savo -[2018-02-13T00:44:53.974] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:44:53.986] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:44:54.023] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:44:54.030] [INFO] cheese - inserting 1000 documents. first: Guobo and last: Category:Curaçao tennis players -[2018-02-13T00:44:54.011] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:44:54.214] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:44:54.549] [INFO] cheese - inserting 1000 documents. first: Gornik Wieliczka and last: 41488 Sindbad -[2018-02-13T00:44:54.634] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:44:54.740] [INFO] cheese - inserting 1000 documents. first: Rugby Championship of Czechoslovakia and last: Rigid system -[2018-02-13T00:44:54.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Salomone and last: Wikipedia:Peer review/Paulins Kill/archive1 -[2018-02-13T00:44:54.785] [INFO] cheese - inserting 1000 documents. first: Students Against Destructive Decisions and last: Category:Archaeological cultures of South Asia -[2018-02-13T00:44:54.787] [INFO] cheese - inserting 1000 documents. first: Category:Curaçao men's volleyball players and last: Category:Mediterranean Games bronze medalists for Croatia -[2018-02-13T00:44:54.788] [INFO] cheese - inserting 1000 documents. first: Les Jeux de l'amour and last: Wikipedia:Categories for discussion/Log/2014 July 16 -[2018-02-13T00:44:54.817] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:44:54.819] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T00:44:54.836] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:44:54.881] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T00:44:54.893] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:44:55.036] [INFO] cheese - inserting 1000 documents. first: Lo Que Paso Paso and last: 13982 Thunberg -[2018-02-13T00:44:55.067] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:44:55.238] [INFO] cheese - inserting 1000 documents. first: File:Kellermensch Goliath Album Cover.jpg and last: Prosoplus fuscosignatus -[2018-02-13T00:44:55.279] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:44:55.296] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2014 July 17 and last: Holyland affair -[2018-02-13T00:44:55.309] [INFO] cheese - inserting 1000 documents. first: St. Denys' Priory and last: The New Daisy Theatre -[2018-02-13T00:44:55.328] [INFO] cheese - inserting 1000 documents. first: Soren Hansen and last: Wikipedia:Articles for deletion/Cow goes moo -[2018-02-13T00:44:55.343] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:44:55.371] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:44:55.380] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:44:55.537] [INFO] cheese - inserting 1000 documents. first: 42191 Thurmann and last: Andy McCombie -[2018-02-13T00:44:55.589] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:44:55.627] [INFO] cheese - inserting 1000 documents. first: Category:FIBA Asia Under-18 Championship and last: Template:POTD/2014-07-17 -[2018-02-13T00:44:55.670] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:44:55.695] [INFO] cheese - inserting 1000 documents. first: Viswaksena and last: 1922-23 Ligue Magnus season -[2018-02-13T00:44:55.771] [INFO] cheese - inserting 1000 documents. first: Prosoplus fuscosticticus and last: National Basketball Coaches Association -[2018-02-13T00:44:55.789] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:44:55.841] [INFO] cheese - inserting 1000 documents. first: 2006 US midterm elections and last: Borgenhaugen -[2018-02-13T00:44:55.881] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:44:55.913] [INFO] cheese - inserting 1000 documents. first: Cephalandra and last: Category:European seas -[2018-02-13T00:44:55.993] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:44:56.059] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:44:56.110] [INFO] cheese - inserting 1000 documents. first: UWA Publishing and last: North Bend Airport -[2018-02-13T00:44:56.225] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:44:56.323] [INFO] cheese - inserting 1000 documents. first: Tsubasa Baseball Club and last: Football Association of Odisha -[2018-02-13T00:44:56.330] [INFO] cheese - inserting 1000 documents. first: File:TopGearWinter.jpg and last: Babes in the Wood murders (Wild Park) -[2018-02-13T00:44:56.398] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:44:56.430] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:44:56.583] [INFO] cheese - inserting 1000 documents. first: Carlson Curve and last: Percy Jackson (footballer born 1907) -[2018-02-13T00:44:56.699] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:44:56.741] [INFO] cheese - inserting 1000 documents. first: List of Members of the United States House of Representatives in the 106th Congress by seniority and last: Epinay-sous-Senart -[2018-02-13T00:44:56.747] [INFO] cheese - inserting 1000 documents. first: Murry Taylor and last: File:The Newly Fenced Catholic Church.jpg -[2018-02-13T00:44:56.814] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:44:56.840] [INFO] cheese - inserting 1000 documents. first: Brian Nelson (screenwriter) and last: Category:Mexican classical violinists -[2018-02-13T00:44:56.841] [INFO] cheese - inserting 1000 documents. first: 1959-60 Polska Liga Hokejowa season and last: Wikipedia:WikiProject Spam/LinkReports/auto-media.info -[2018-02-13T00:44:56.844] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T00:44:56.925] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:44:56.986] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T00:44:57.171] [INFO] cheese - inserting 1000 documents. first: USS LST-230 and last: David Webb (activist) -[2018-02-13T00:44:57.198] [INFO] cheese - inserting 1000 documents. first: Draft:Battle of Cape Burnas (1942) and last: Shou'an County -[2018-02-13T00:44:57.212] [INFO] cheese - inserting 1000 documents. first: File:Tom Swift and His Electric Runabout (book cover).jpg and last: File:8Ball & MJG - In Our Lifetime, Vol. 1.jpg -[2018-02-13T00:44:57.246] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:44:57.254] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:44:57.305] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:44:57.425] [INFO] cheese - inserting 1000 documents. first: 1981-82 Norwegian 1. Divisjon season and last: 1997-98 Belgian Hockey League season -[2018-02-13T00:44:57.477] [INFO] cheese - inserting 1000 documents. first: Category:Vice-Chancellors of the University of Delhi and last: Template:Karzai second cabinet nominees -[2018-02-13T00:44:57.484] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:44:57.549] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:44:57.643] [INFO] cheese - inserting 1000 documents. first: Serviciul Independent pentru Interventii si Actiuni Speciale and last: Horacio Pena (Argentine actor) -[2018-02-13T00:44:57.681] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:44:57.763] [INFO] cheese - inserting 1000 documents. first: Marie Harf and last: Angraecum subulatum -[2018-02-13T00:44:57.804] [INFO] cheese - inserting 1000 documents. first: File:On The Radio LP.jpg and last: Farseer -[2018-02-13T00:44:57.905] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T00:44:57.918] [INFO] cheese - inserting 1000 documents. first: Shouan County and last: All Saints Church, Acton -[2018-02-13T00:44:57.872] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:44:57.920] [INFO] cheese - inserting 1000 documents. first: 1997-98 Bulgarian Hockey League season and last: 2006-07 HKFA Chairman's Cup -[2018-02-13T00:44:57.962] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:44:58.034] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:44:58.163] [INFO] cheese - inserting 1000 documents. first: Owada Anchorage and last: Gammarus chevreuxi -[2018-02-13T00:44:58.220] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:44:58.288] [INFO] cheese - inserting 1000 documents. first: Animal Crossing (3DS) and last: 2011 Save Cup - Singles -[2018-02-13T00:44:58.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/UC4 and last: Cromarty railway station -[2018-02-13T00:44:58.356] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:44:58.445] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T00:44:58.564] [INFO] cheese - inserting 1000 documents. first: Foul Play (The Adventures of Black Beauty) and last: Pterolophia major -[2018-02-13T00:44:58.611] [INFO] cheese - inserting 1000 documents. first: Portal:San Francisco Bay Area/Selected historical image/22 and last: Protorthodes curtica -[2018-02-13T00:44:58.626] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:44:58.644] [INFO] cheese - inserting 1000 documents. first: 2011 Seguros Bolívar Open Cali - Doubles and last: 2012 Moorilla Hobart International - Singles -[2018-02-13T00:44:58.662] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian violinists and last: 1951 movies -[2018-02-13T00:44:58.702] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:44:58.722] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:44:58.748] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T00:44:58.850] [INFO] cheese - inserting 1000 documents. first: Template:User Army E-9 SMA and last: Luis Miguel Ramis -[2018-02-13T00:44:58.945] [INFO] cheese - inserting 1000 documents. first: 2012 Prime Cup Aberto de São Paulo - Doubles and last: East Germany-Israel relations -[2018-02-13T00:44:58.962] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:44:59.039] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:44:59.096] [INFO] cheese - inserting 1000 documents. first: John Brackenridge (clergyman) and last: Category:Prehistoric crustaceans -[2018-02-13T00:44:59.152] [INFO] cheese - inserting 1000 documents. first: Pterolophia virgulata and last: Wikipedia:Abuse reports/128.163.214.120 -[2018-02-13T00:44:59.171] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:44:59.192] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:44:59.307] [INFO] cheese - inserting 1000 documents. first: Phil Nyokai James and last: Wikipedia:Version 1.0 Editorial Team/Former country articles by quality statistics -[2018-02-13T00:44:59.328] [INFO] cheese - inserting 1000 documents. first: East Germany-Soviet Union relations and last: Mauritius national football team results (1980-1989) -[2018-02-13T00:44:59.352] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:44:59.355] [INFO] cheese - inserting 1000 documents. first: List of oil and gas field of the Barents Sea and last: Large tree-frogs -[2018-02-13T00:44:59.368] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:44:59.439] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:44:59.693] [INFO] cheese - inserting 1000 documents. first: William T. Sedgwick and last: Ciobruciu -[2018-02-13T00:44:59.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Abuse reports/128.178.41.8 and last: Doukas, Andronikos -[2018-02-13T00:44:59.755] [INFO] cheese - inserting 1000 documents. first: Mauritius national football team results (2010-2019) and last: Tennis at the 2011 Summer Universiade - Men's Singles -[2018-02-13T00:44:59.773] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:44:59.807] [INFO] cheese - inserting 1000 documents. first: Francisco Zumaque and last: Dubyonsky District, Republic of Mordovia -[2018-02-13T00:44:59.812] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T00:44:59.830] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:44:59.894] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:45:00.138] [INFO] cheese - inserting 1000 documents. first: Large tree frog and last: Richard Ian Colin Sampson -[2018-02-13T00:45:00.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Former country articles by quality and last: Neil MacFarquhar -[2018-02-13T00:45:00.209] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:45:00.231] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:45:00.317] [INFO] cheese - inserting 1000 documents. first: Tennis at the 2011 Summer Universiade - Mixed Doubles and last: Newens Sanitary Dairy Historic District -[2018-02-13T00:45:00.379] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:45:00.435] [INFO] cheese - inserting 1000 documents. first: Pterolophia subnigrosparsa and last: Cæsariana -[2018-02-13T00:45:00.571] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:45:00.592] [INFO] cheese - inserting 1000 documents. first: Portal:Chess/Selected article/Introduction/Chess opening and last: George A. Killenberg -[2018-02-13T00:45:00.639] [INFO] cheese - inserting 1000 documents. first: Category:Bungalow architecture in Virginia and last: Portal:Smooth jazz/Related portals -[2018-02-13T00:45:00.727] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:45:00.742] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T00:45:00.969] [INFO] cheese - inserting 1000 documents. first: Royal British Society of Sculptors and last: Queen Cecilia Blanka -[2018-02-13T00:45:01.038] [INFO] cheese - inserting 1000 documents. first: Richard Sampson (author) and last: Who are the Mind Benders? -[2018-02-13T00:45:01.100] [INFO] cheese - inserting 1000 documents. first: Sarah Wilhelmy and last: Herschel Krustovski -[2018-02-13T00:45:01.089] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:45:01.180] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T00:45:01.256] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:45:01.330] [INFO] cheese - inserting 1000 documents. first: Manchester Borough Council election, 1947 and last: Novosieversia -[2018-02-13T00:45:01.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/botswana-holidays.com and last: The Albert Hall -[2018-02-13T00:45:01.375] [INFO] cheese - inserting 1000 documents. first: Supernetto and last: Category:448 BC deaths -[2018-02-13T00:45:01.414] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:45:01.457] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:45:01.461] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T00:45:01.826] [INFO] cheese - inserting 1000 documents. first: Hitcheniopsis alismatifolia and last: Metarbela stivafer -[2018-02-13T00:45:01.893] [INFO] cheese - inserting 1000 documents. first: Aiken High School and last: Wikipedia:Help desk/Archives/2006 October 30 -[2018-02-13T00:45:01.904] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:01.938] [INFO] cheese - inserting 1000 documents. first: Imperial Throne (micronation) and last: Category:Articles with obsolete information from February 2017 -[2018-02-13T00:45:01.979] [INFO] cheese - inserting 1000 documents. first: Herschel Shmoikel Pinchas Yerucham Krustovski and last: National Iranian Gas Export Company -[2018-02-13T00:45:02.004] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:45:02.012] [INFO] cheese - inserting 1000 documents. first: Compagnie Francaise D’assurance Pour Le Commerce Exterieur and last: Category:People murdered in Angola -[2018-02-13T00:45:02.049] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:45:02.087] [INFO] cheese - inserting 1000 documents. first: Aleksanteri Saarvala and last: Dedekind-MacNeille completion -[2018-02-13T00:45:02.097] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T00:45:02.119] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:45:02.171] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:45:02.395] [INFO] cheese - inserting 1000 documents. first: Saturation dive and last: Arbelodes guttata -[2018-02-13T00:45:02.440] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:02.464] [INFO] cheese - inserting 1000 documents. first: Category:Articles needing cleanup from February 2017 and last: ROAD FC 033 -[2018-02-13T00:45:02.520] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:45:02.546] [INFO] cheese - inserting 1000 documents. first: ASCII 7 and last: Category:1977 in British motorsport -[2018-02-13T00:45:02.568] [INFO] cheese - inserting 1000 documents. first: Fibre supplement and last: Guzmania undulatobracteata -[2018-02-13T00:45:02.590] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:45:02.616] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:45:02.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Agriculture/Beekeeping task force/Assessment and last: Long Black -[2018-02-13T00:45:02.704] [INFO] cheese - inserting 1000 documents. first: Sextuple and last: Kenjiro Haitani -[2018-02-13T00:45:02.715] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:45:02.799] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:45:02.907] [INFO] cheese - inserting 1000 documents. first: Arbelodes semifasciata and last: Alex Smith (footballer born 1939) -[2018-02-13T00:45:03.012] [INFO] cheese - inserting 1000 documents. first: File:InLoveAndWar2011Poster.jpg and last: Phālguṇa -[2018-02-13T00:45:03.048] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:03.122] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:45:03.183] [INFO] cheese - inserting 1000 documents. first: Murlocs and last: Russian War -[2018-02-13T00:45:03.264] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:45:03.288] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Budua and last: File:Ndèye Coumba Mbengue Diakhaté died 2001.png -[2018-02-13T00:45:03.347] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T00:45:03.433] [INFO] cheese - inserting 1000 documents. first: Wasted Youth (British Band) and last: Gulabrao patil -[2018-02-13T00:45:03.507] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:45:03.600] [INFO] cheese - inserting 1000 documents. first: Church Buildings and last: Digital Cafe -[2018-02-13T00:45:03.618] [INFO] cheese - inserting 1000 documents. first: Park View School (Birmingham) and last: 7th Earl of Galloway -[2018-02-13T00:45:03.680] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:45:03.700] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:45:03.719] [INFO] cheese - inserting 1000 documents. first: Petroleum fuels and last: Combe Inc. -[2018-02-13T00:45:03.814] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:45:03.889] [INFO] cheese - inserting 1000 documents. first: New Bridge Street railway station and last: British Army during the American War of Independence -[2018-02-13T00:45:03.946] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:45:03.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Obama administration health care proposal (2nd nomination) and last: Route 263 (Maryland) -[2018-02-13T00:45:03.998] [INFO] cheese - inserting 1000 documents. first: Gym Teacher: The Movie and last: Richard Jacobs Group -[2018-02-13T00:45:04.055] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:45:04.074] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:45:04.244] [INFO] cheese - inserting 1000 documents. first: Yumen Pass and last: Catalan regional elections, 2006 -[2018-02-13T00:45:04.260] [INFO] cheese - inserting 1000 documents. first: Idaho panhandle and last: Category:Canadian draughts players -[2018-02-13T00:45:04.280] [INFO] cheese - inserting 1000 documents. first: Malév Magyar Légiközlekedési Zrt. and last: Weight-of-conflict conjecture -[2018-02-13T00:45:04.317] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:45:04.328] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:45:04.338] [INFO] cheese - inserting 1000 documents. first: Category:Loyola Greyhounds basketball and last: Draft:Niranjan Pati -[2018-02-13T00:45:04.358] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:45:04.395] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:45:04.654] [INFO] cheese - inserting 1000 documents. first: Ober-Logone and last: Thierry Paterlini -[2018-02-13T00:45:04.671] [INFO] cheese - inserting 1000 documents. first: American Duties Act and last: Olympia orchestra -[2018-02-13T00:45:04.748] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:45:04.747] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:45:04.796] [INFO] cheese - inserting 1000 documents. first: Category:1722 in Massachusetts and last: Novo-Mikhaylovka -[2018-02-13T00:45:04.817] [INFO] cheese - inserting 1000 documents. first: Statute Law (Repeals) Act 1975 and last: File:Houdini FTP.JPG -[2018-02-13T00:45:04.832] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:45:04.871] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:45:04.872] [INFO] cheese - inserting 1000 documents. first: File:RC Rig sideview.jpg and last: Patterson State Park -[2018-02-13T00:45:04.942] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:45:05.136] [INFO] cheese - inserting 1000 documents. first: Somaiya sion and last: Independent Corrupt Practices and Other Related Offences Commission -[2018-02-13T00:45:05.186] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:45:05.208] [INFO] cheese - inserting 1000 documents. first: Category:Railway depots in Scotland and last: Dur-Dur -[2018-02-13T00:45:05.254] [INFO] cheese - inserting 1000 documents. first: Hold On! I'm a Comin' and last: 2008 Pacific Curling Championships -[2018-02-13T00:45:05.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/American Football League articles by quality statistics and last: Peter Pearson (British Army officer) -[2018-02-13T00:45:05.292] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T00:45:05.387] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:45:05.422] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:05.517] [INFO] cheese - inserting 1000 documents. first: Category:425 establishments and last: Category:Saint Leo Lions basketball -[2018-02-13T00:45:05.528] [INFO] cheese - inserting 1000 documents. first: Dreams (The Whitest Boy Alive album) and last: Skyhawk (2006) -[2018-02-13T00:45:05.607] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:45:05.635] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:45:05.774] [INFO] cheese - inserting 1000 documents. first: 1917–18 Mexican Primera Division season and last: 2007–08 Argentine Primera Division season -[2018-02-13T00:45:05.849] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:45:05.863] [INFO] cheese - inserting 1000 documents. first: Tinsley Green, West Sussex and last: Wikipedia:Version 1.0 Editorial Team/Pennsylvania articles by quality/70 -[2018-02-13T00:45:05.920] [INFO] cheese - inserting 1000 documents. first: Category:Christian missionaries in Sudan and last: Inga pithecolobioides -[2018-02-13T00:45:05.951] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Ingham County, Michigan and last: Category:Deaf templates -[2018-02-13T00:45:05.991] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:45:06.002] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:06.068] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:45:06.224] [INFO] cheese - inserting 1000 documents. first: Category:Diplomatic documents and last: File:TheGreatGatsby2012Poster.jpg -[2018-02-13T00:45:06.301] [INFO] cheese - inserting 1000 documents. first: 2007–08 Atletico Madrid season and last: Dimitri and Erica -[2018-02-13T00:45:06.308] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:06.312] [INFO] cheese - inserting 1000 documents. first: Rutanya Alda and last: File:Priopcea.jpg -[2018-02-13T00:45:06.337] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:45:06.448] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:45:06.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2010 January 9 and last: Wikipedia:Featured list candidates/Austin Aztex all-time roster/archive1 -[2018-02-13T00:45:06.673] [INFO] cheese - inserting 1000 documents. first: Pithecellobium reductum and last: File:Stormwater maintenance.jpg -[2018-02-13T00:45:06.708] [INFO] cheese - inserting 1000 documents. first: File:HeroFactoryTitleCard.jpg and last: 1990–91 Ohio Bobcats men's basketball team -[2018-02-13T00:45:06.708] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:45:06.738] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T00:45:06.744] [INFO] cheese - inserting 1000 documents. first: Erica and Dimitri and last: Ali Kucik -[2018-02-13T00:45:06.776] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:45:06.791] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:06.818] [INFO] cheese - inserting 1000 documents. first: Draft:Choppafield and last: John II of Cottereau, Baron of Jauche -[2018-02-13T00:45:06.877] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:45:06.988] [INFO] cheese - inserting 1000 documents. first: Miracle at Troas and last: Hestina hadeni -[2018-02-13T00:45:07.025] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:45:07.032] [INFO] cheese - inserting 1000 documents. first: S Club 7 in L.A. and last: Rodney Come Home -[2018-02-13T00:45:07.097] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:45:07.119] [INFO] cheese - inserting 1000 documents. first: Eurogroup for Animals and last: Tess Oliveira -[2018-02-13T00:45:07.125] [INFO] cheese - inserting 1000 documents. first: Újireg and last: Tarek Abu Khdeir -[2018-02-13T00:45:07.187] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:45:07.191] [INFO] cheese - inserting 1000 documents. first: Category:135 mm artillery and last: Category:Litigation by party -[2018-02-13T00:45:07.197] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:45:07.265] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:07.296] [INFO] cheese - inserting 1000 documents. first: Phaya Thai (disambiguation) and last: Wikipedia:Articles for deletion/Russian help for Serbia during world war I -[2018-02-13T00:45:07.336] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:45:07.420] [INFO] cheese - inserting 1000 documents. first: Ardiconu, Tasova and last: Cross cover test -[2018-02-13T00:45:07.464] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:45:07.602] [INFO] cheese - inserting 1000 documents. first: A. A. Townsend and last: Wikipedia:WikiProject Architecture/Historic houses task force/Scope -[2018-02-13T00:45:07.617] [INFO] cheese - inserting 1000 documents. first: Confédération Syndicale Internationale and last: Kōji Yusa -[2018-02-13T00:45:07.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ocean Drive (album) and last: Tiny Meat -[2018-02-13T00:45:07.658] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:45:07.770] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:45:07.792] [INFO] cheese - inserting 1000 documents. first: Category:Calgary Oval X-Treme players and last: Wikipedia:Templates for discussion/Log/2010 January 14 -[2018-02-13T00:45:07.799] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:07.848] [INFO] cheese - inserting 1000 documents. first: File:2015 IIHF World U18 Championship Division II.png and last: Bowling Green massacre -[2018-02-13T00:45:07.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia Blackout and last: Banja, Arandelovac -[2018-02-13T00:45:07.944] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:45:07.959] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:45:07.958] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:45:08.308] [INFO] cheese - inserting 1000 documents. first: Category:Moths described in 2007 and last: File:Insomniac Folklore Sleep Cassette.jpg -[2018-02-13T00:45:08.359] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:45:08.570] [INFO] cheese - inserting 1000 documents. first: 2007-08 NHL transactions and last: Wikipedia:Articles for deletion/Terry George (entrepreneur) -[2018-02-13T00:45:08.682] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:45:08.697] [INFO] cheese - inserting 1000 documents. first: Banjalucka Pivara and last: Hypsopygia decetialis -[2018-02-13T00:45:08.715] [INFO] cheese - inserting 1000 documents. first: Grover Cleveland presidencies and last: Category:1985 in women's sport by country -[2018-02-13T00:45:08.811] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:45:08.815] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:45:08.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2010 January 14 and last: Science fiction/Soft science fiction -[2018-02-13T00:45:08.969] [INFO] cheese - inserting 1000 documents. first: 1747 English cricket season and last: Kaiser Shipbuilding Corporation -[2018-02-13T00:45:08.969] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T00:45:09.034] [INFO] cheese - inserting 1000 documents. first: Ulster Valley and last: Evripides Demosthenous -[2018-02-13T00:45:09.103] [INFO] cheese - batch complete in: 1.332 secs -[2018-02-13T00:45:09.114] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:45:09.368] [INFO] cheese - inserting 1000 documents. first: Category:1984 in women's sport by country and last: Template:2017 Mid-American Conference men's soccer standings -[2018-02-13T00:45:09.370] [INFO] cheese - inserting 1000 documents. first: Microchâteau and last: 2005 A Lyga -[2018-02-13T00:45:09.458] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:45:09.488] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:45:09.498] [INFO] cheese - inserting 1000 documents. first: 4th Alberta Senate nominee election and last: Beth Cuje -[2018-02-13T00:45:09.597] [INFO] cheese - inserting 1000 documents. first: Schizothorax huegelii and last: Asota concolora -[2018-02-13T00:45:09.595] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:45:09.700] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:45:09.840] [INFO] cheese - inserting 1000 documents. first: Getting to yes and last: Topsportcentrum Rotterdam -[2018-02-13T00:45:09.842] [INFO] cheese - inserting 1000 documents. first: Evripedes Demosthenous and last: Category:Trade unions established in 1939 -[2018-02-13T00:45:09.924] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:45:09.935] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T00:45:09.960] [INFO] cheese - inserting 1000 documents. first: Bethlen, son of Lorinc and last: Cape Kamui -[2018-02-13T00:45:10.009] [INFO] cheese - inserting 1000 documents. first: Category:Lutheranism in China and last: Category:Rowing in Vanuatu -[2018-02-13T00:45:10.011] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:45:10.064] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:45:10.129] [INFO] cheese - inserting 1000 documents. first: Culture of Mangalore and last: Bettina Shaw-Lawrence -[2018-02-13T00:45:10.173] [INFO] cheese - inserting 1000 documents. first: Tianhe Sports Center South Station and last: Wikipedia:Articles for deletion/Dragón Negro -[2018-02-13T00:45:10.179] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:45:10.243] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:45:10.266] [INFO] cheese - inserting 1000 documents. first: Bucje (Priboj) and last: F. Nevanlinna -[2018-02-13T00:45:10.303] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:45:10.326] [INFO] cheese - inserting 1000 documents. first: Afroartelida teunisseni and last: Gray-breasted flycatcher -[2018-02-13T00:45:10.385] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:45:10.410] [INFO] cheese - inserting 1000 documents. first: Category:Canadian docufiction films and last: Diocese of Arges and Muscel -[2018-02-13T00:45:10.479] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:45:10.518] [INFO] cheese - inserting 1000 documents. first: File:Rt3 screenshot.png and last: John Schwartz -[2018-02-13T00:45:10.579] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:45:10.676] [INFO] cheese - inserting 1000 documents. first: File:Salys statue of Frederik V 2.jpg and last: Cape Gyobumi -[2018-02-13T00:45:10.688] [INFO] cheese - inserting 1000 documents. first: Template:1983-84 NHL season by team and last: 1988-89 Chicago Blackhawks season -[2018-02-13T00:45:10.710] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:10.748] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:45:10.765] [INFO] cheese - inserting 1000 documents. first: 118th meridian and last: Joseph Nane -[2018-02-13T00:45:10.790] [INFO] cheese - inserting 1000 documents. first: Category:Human overpopulation think tank and last: Nicholas Ball (Alderman) -[2018-02-13T00:45:10.822] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:10.850] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:45:10.857] [INFO] cheese - inserting 1000 documents. first: Qatar-Sweden relations and last: Category:1996–97 in British basketball leagues -[2018-02-13T00:45:10.904] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:45:10.982] [INFO] cheese - inserting 1000 documents. first: Cape Inubo and last: Four Leaf Studios -[2018-02-13T00:45:11.080] [INFO] cheese - inserting 1000 documents. first: Template:Timeline of El Greco's life and last: Yellowman (candy) -[2018-02-13T00:45:11.094] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:45:11.251] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:45:11.442] [INFO] cheese - inserting 1000 documents. first: Template:Frati aircraft and last: Rotatory canter -[2018-02-13T00:45:11.446] [INFO] cheese - inserting 1000 documents. first: List of Asian Games medalists in softball and last: FSM flag -[2018-02-13T00:45:11.551] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:11.539] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:45:11.643] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eric Schmidt (DJ) and last: Wikipedia:Arbitration Committee/Discretionary sanctions -[2018-02-13T00:45:11.675] [INFO] cheese - inserting 1000 documents. first: Category:Organisations based in Estonia and last: 2017 Ecuador Open Quito - Doubles -[2018-02-13T00:45:11.710] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:45:11.718] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T00:45:11.796] [INFO] cheese - inserting 1000 documents. first: Chateau de Durfort and last: Idaho newspapers -[2018-02-13T00:45:11.842] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:45:12.044] [INFO] cheese - inserting 1000 documents. first: File:Stuart hogg.jpg and last: Bellows Free Academy, Fairfax -[2018-02-13T00:45:12.123] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:45:12.255] [INFO] cheese - inserting 1000 documents. first: Kopje warbler and last: Template:Wexford Under-21 Hurling Team 1970 -[2018-02-13T00:45:12.267] [INFO] cheese - inserting 1000 documents. first: Category:Belarusian nuns and last: Monte di Pietà -[2018-02-13T00:45:12.303] [INFO] cheese - inserting 1000 documents. first: Portal:National Football League/Selected picture and last: Cuno Pumpin -[2018-02-13T00:45:12.321] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:45:12.329] [INFO] cheese - inserting 1000 documents. first: Category:Identity documents by country and last: Template:User Rebol-1 -[2018-02-13T00:45:12.333] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:12.347] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:45:12.438] [INFO] cheese - inserting 1000 documents. first: Culture of Brisbane and last: Carolina Police Department -[2018-02-13T00:45:12.441] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:12.552] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:45:12.872] [INFO] cheese - inserting 1000 documents. first: Cunegonde (disambiguation) and last: Army-proof -[2018-02-13T00:45:12.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Indian Wikipedians' notice board/It's new and last: Zakerana nepalensis -[2018-02-13T00:45:12.945] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:45:13.002] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:45:13.019] [INFO] cheese - inserting 1000 documents. first: File:Panoply logo.png and last: Category:Lists of football clubs in the United Kingdom -[2018-02-13T00:45:13.076] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions established in 1931 and last: Cheesquatalawny -[2018-02-13T00:45:13.153] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T00:45:13.194] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:45:13.238] [INFO] cheese - inserting 1000 documents. first: Category:Austrian Catholics and last: K-58 (Kansas highway) -[2018-02-13T00:45:13.309] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:45:13.316] [INFO] cheese - inserting 1000 documents. first: Category:Spanish sprinters and last: It's Lonely at the Bottom/Unstuck in Time -[2018-02-13T00:45:13.408] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T00:45:13.625] [INFO] cheese - inserting 1000 documents. first: Australian troops and last: Template:Taxonomy/Callichthyidae -[2018-02-13T00:45:13.638] [INFO] cheese - inserting 1000 documents. first: Bar screen and last: Wikipedia:Articles for deletion/2011 MLS Reserve Division -[2018-02-13T00:45:13.689] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:13.700] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:45:13.747] [INFO] cheese - inserting 1000 documents. first: State Highway 41 (Texas) and last: Murray Chotiner -[2018-02-13T00:45:13.749] [INFO] cheese - inserting 1000 documents. first: Robert Campbell (Northern Ireland politician) and last: Enzo Andía -[2018-02-13T00:45:13.808] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:45:13.813] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:45:13.884] [INFO] cheese - inserting 1000 documents. first: Great Indian Rhinoceros and last: Category:Romanian heavy metal musical groups -[2018-02-13T00:45:13.959] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:45:14.054] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 1035-1 and last: K. Chandrashekhar Rao -[2018-02-13T00:45:14.085] [INFO] cheese - inserting 1000 documents. first: Deutsches Geodatisches Forschungsinstitut and last: Dragojlovice -[2018-02-13T00:45:14.118] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:45:14.183] [INFO] cheese - inserting 1000 documents. first: Felicite (2017 film) and last: File:Belton House 2006.jpg -[2018-02-13T00:45:14.209] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:45:14.243] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:45:14.331] [INFO] cheese - inserting 1000 documents. first: Argo (2012 movie) and last: Beattie Limestone -[2018-02-13T00:45:14.396] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:45:14.490] [INFO] cheese - inserting 1000 documents. first: Yekaterina Bikert and last: Charles Burnett (RAF officer) -[2018-02-13T00:45:14.550] [INFO] cheese - inserting 1000 documents. first: 1991-92 AHL season and last: Wikipedia:Stub types for deletion/Log/2008/April/3 -[2018-02-13T00:45:14.572] [INFO] cheese - inserting 1000 documents. first: Dragoljub Duricic and last: Wikipedia:Reference desk/Archives/Humanities/2012 February 9 -[2018-02-13T00:45:14.569] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:45:14.628] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:45:14.659] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:45:14.661] [INFO] cheese - inserting 1000 documents. first: File:Bezbozhnik u stanka 22-1929.jpg and last: Hittite Sun Course Monument -[2018-02-13T00:45:14.678] [INFO] cheese - inserting 1000 documents. first: Ofla of Mercia and last: Explosive-driven ferromagnetic generator -[2018-02-13T00:45:14.709] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:45:14.746] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:45:14.919] [INFO] cheese - inserting 1000 documents. first: Johnson Formation and last: 2001 1000 Guineas -[2018-02-13T00:45:14.953] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:14.960] [INFO] cheese - inserting 1000 documents. first: El amor despues del amor and last: Encyclopaedia Britannica Second Edition -[2018-02-13T00:45:14.968] [INFO] cheese - inserting 1000 documents. first: Venogram (medical) and last: Lauren Phillips -[2018-02-13T00:45:14.997] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:45:15.009] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:45:15.022] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Actuality (Hegel) and last: Category:English social commentators -[2018-02-13T00:45:15.067] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:45:15.099] [INFO] cheese - inserting 1000 documents. first: Isaías Marques Soares and last: ITK-Snap -[2018-02-13T00:45:15.122] [INFO] cheese - inserting 1000 documents. first: Category:Larry Carlton albums and last: Wikipedia:WikiProject North Carolina State Highways/Renumberings -[2018-02-13T00:45:15.198] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:45:15.199] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:45:15.226] [INFO] cheese - inserting 1000 documents. first: Out of the Ashes (2010 film) and last: Fenerbahce Ulker Euroleague 2009–10 -[2018-02-13T00:45:15.262] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:45:15.371] [INFO] cheese - inserting 1000 documents. first: I Don't Dance (album) and last: Tererro Formation -[2018-02-13T00:45:15.420] [INFO] cheese - inserting 1000 documents. first: Draft:Hao Qi Chang Liu and last: Louisiana Highway 897-3 -[2018-02-13T00:45:15.421] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:45:15.466] [INFO] cheese - inserting 1000 documents. first: 1864 English cricket season and last: The McKenzie Break -[2018-02-13T00:45:15.487] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:45:15.491] [INFO] cheese - inserting 1000 documents. first: Fenerbahce Ulker Euroleague 2010–11 and last: Kartvelian Language -[2018-02-13T00:45:15.529] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:45:15.535] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:45:15.583] [INFO] cheese - inserting 1000 documents. first: File:Ornstein-Suicide Airplane.ogg and last: Victor Hugo Andrada -[2018-02-13T00:45:15.632] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:45:15.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/2009 Duel in the Pool/archive1 and last: List of United States Presidents by judicial appointments -[2018-02-13T00:45:15.903] [INFO] cheese - inserting 1000 documents. first: Frederic Cermeno and last: Alfred Fleischer -[2018-02-13T00:45:15.944] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:45:15.976] [INFO] cheese - inserting 1000 documents. first: Alamitos Formation and last: Egogepa crassata -[2018-02-13T00:45:15.988] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:45:16.027] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 897-4 and last: Artistic Skating World Championship -[2018-02-13T00:45:16.061] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:45:16.135] [INFO] cheese - inserting 1000 documents. first: Category:Passenger rail transport in Alberta and last: Category:Zoé albums -[2018-02-13T00:45:16.146] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:45:16.185] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:45:16.308] [INFO] cheese - inserting 1000 documents. first: Timeline of Ancient Mesopotamia and last: Category:1904 racehorse deaths -[2018-02-13T00:45:16.414] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T00:45:16.460] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Eugène Ionesco and last: Girls, Girls, Girls (Motley Crue song) -[2018-02-13T00:45:16.500] [INFO] cheese - inserting 1000 documents. first: Category:High-speed trains of Russia and last: File:Regain poster.jpg -[2018-02-13T00:45:16.510] [INFO] cheese - inserting 1000 documents. first: Category:Coal-fired power stations in Saskatchewan and last: MG 11 -[2018-02-13T00:45:16.506] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:16.568] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:45:16.565] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:45:16.597] [INFO] cheese - inserting 1000 documents. first: Shrigley (disambiguation) and last: Lo Chih-An -[2018-02-13T00:45:16.657] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:45:16.735] [INFO] cheese - inserting 1000 documents. first: Giro-Live Ballers Osnabruck and last: Gallivare Malmbergets FF -[2018-02-13T00:45:16.742] [INFO] cheese - inserting 1000 documents. first: Template:Aragonese Bloc/meta/color and last: Vict -[2018-02-13T00:45:16.755] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:45:16.800] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:45:16.874] [INFO] cheese - inserting 1000 documents. first: Tri sestry and last: Cylindrical Bessel functions of the second kind -[2018-02-13T00:45:16.933] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:45:16.948] [INFO] cheese - inserting 1000 documents. first: Category:Courthouses on the National Register of Historic Places in Louisiana and last: Herrgarden -[2018-02-13T00:45:16.951] [INFO] cheese - inserting 1000 documents. first: 2014–15 PBC CSKA Moscow season and last: People's Climate March -[2018-02-13T00:45:16.967] [INFO] cheese - inserting 1000 documents. first: File:A cheerful gang turns the earth.jpg and last: Template:User Wikipedian for/sandbox -[2018-02-13T00:45:16.968] [INFO] cheese - batch complete in: 0.213 secs -[2018-02-13T00:45:17.018] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:45:17.022] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:45:17.033] [INFO] cheese - inserting 1000 documents. first: Blanc and last: File:Stc-colour-logo-copy2.jpg -[2018-02-13T00:45:17.082] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:45:17.154] [INFO] cheese - inserting 1000 documents. first: Food of ancient israel and last: Ij Io̧kwe Lo̧k Aelon̄ Eo Ao -[2018-02-13T00:45:17.183] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:45:17.214] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches in Amazonas (Brazilian state) and last: File:The Word Exchange (novel) first edition 2014.png -[2018-02-13T00:45:17.254] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:45:17.334] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/March 31, 2008 and last: Wikipedia:Tip of the day/October 24, 2008 -[2018-02-13T00:45:17.370] [INFO] cheese - inserting 1000 documents. first: Iker Martinez de Lizarduy and last: Hondo High School (Texas) -[2018-02-13T00:45:17.387] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:17.401] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:45:17.447] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mike Gastonguay and last: Harold Gore -[2018-02-13T00:45:17.465] [INFO] cheese - inserting 1000 documents. first: Azaspiracids and last: Category:Western Pennsylvania Registered Historic Place stubs -[2018-02-13T00:45:17.492] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:45:17.500] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:45:17.599] [INFO] cheese - inserting 1000 documents. first: Old Beth Israel Synagogue (Greenville, South Carolina) and last: Inigo Pascual -[2018-02-13T00:45:17.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Ilecity and last: Sanitas -[2018-02-13T00:45:17.651] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:45:17.679] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:45:17.888] [INFO] cheese - inserting 1000 documents. first: Jean-Marie Keletigui and last: Mikey Devlin -[2018-02-13T00:45:17.944] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/October 25, 2008 and last: Learjet 29 -[2018-02-13T00:45:17.949] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:45:18.085] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:45:18.145] [INFO] cheese - inserting 1000 documents. first: Juan Pablo Gil and last: List of North Carolina Civil War Confederate units -[2018-02-13T00:45:18.218] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:45:18.265] [INFO] cheese - inserting 1000 documents. first: Gornal, West Midlands and last: Portal:NWT -[2018-02-13T00:45:18.279] [INFO] cheese - inserting 1000 documents. first: Sarah Huckabee and last: Category:1730s archaeological discoveries -[2018-02-13T00:45:18.339] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T00:45:18.350] [INFO] cheese - inserting 1000 documents. first: Richebourg L'Avoue and last: Theosophia -[2018-02-13T00:45:18.357] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T00:45:18.462] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T00:45:18.489] [INFO] cheese - inserting 1000 documents. first: R-29RMU2 Liner and last: Wikipedia:Articles for deletion/Space Tourism Society -[2018-02-13T00:45:18.551] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:18.639] [INFO] cheese - inserting 1000 documents. first: MCBA and last: 1987 FA Cup Final -[2018-02-13T00:45:18.707] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:18.811] [INFO] cheese - inserting 1000 documents. first: H.W. Blair and last: Alex Balcoba -[2018-02-13T00:45:18.845] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:45:18.849] [INFO] cheese - inserting 1000 documents. first: Category:The Outfield and last: Template:The Redirect Barnstar/sandbox -[2018-02-13T00:45:18.880] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Knowsley and last: Lymire lactealis -[2018-02-13T00:45:18.886] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:45:18.890] [INFO] cheese - inserting 1000 documents. first: Gidgee Gold Mine and last: Wikipedia:WikiProject Spam/LinkReports/weather-and-climate.com -[2018-02-13T00:45:18.905] [INFO] cheese - inserting 1000 documents. first: The Sophia and last: Archie Hallam -[2018-02-13T00:45:18.912] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:45:18.951] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:45:18.967] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:45:19.151] [INFO] cheese - inserting 1000 documents. first: Courtney Simon and last: Category:Early steam locomotives -[2018-02-13T00:45:19.197] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:45:19.251] [INFO] cheese - inserting 1000 documents. first: Budalić and last: 1991 Hammer Throw Year Ranking -[2018-02-13T00:45:19.254] [INFO] cheese - inserting 1000 documents. first: Titania (oxide) and last: Biram Singh Rathore of Marwar -[2018-02-13T00:45:19.300] [INFO] cheese - inserting 1000 documents. first: Hypsotropha heterocerella and last: Furtum -[2018-02-13T00:45:19.313] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:45:19.334] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:45:19.357] [INFO] cheese - inserting 1000 documents. first: Chris Walsh and last: Continentality (wine) -[2018-02-13T00:45:19.364] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:45:19.430] [INFO] cheese - inserting 1000 documents. first: Charles Umpherston Aitchinson and last: Javier Olaizola -[2018-02-13T00:45:19.435] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:45:19.478] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:45:19.670] [INFO] cheese - inserting 1000 documents. first: File:Pg-ballorder.jpg and last: Bothrops xanthogramma -[2018-02-13T00:45:19.724] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:19.748] [INFO] cheese - inserting 1000 documents. first: 1995 Hammer Throw Year Ranking and last: Juan Felipe Alves Ribeiro -[2018-02-13T00:45:19.805] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Okan Derici (2nd nomination) and last: List of Compulsory Process Clause cases -[2018-02-13T00:45:19.804] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:19.891] [INFO] cheese - inserting 1000 documents. first: File:Korn Project4.png and last: Template:Canadian federal election, 2006/Beauport—Limoilou -[2018-02-13T00:45:19.906] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:45:19.938] [INFO] cheese - inserting 1000 documents. first: Ganga Rathore of Marwar and last: Schnabl -[2018-02-13T00:45:20.038] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:20.065] [INFO] cheese - inserting 1000 documents. first: Trauma Hawk and last: Behoust -[2018-02-13T00:45:20.077] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T00:45:20.210] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:45:20.387] [INFO] cheese - inserting 1000 documents. first: Chapacura–Wanham languages and last: Ceylon at the 1960 Summer Olympics -[2018-02-13T00:45:20.468] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:45:20.555] [INFO] cheese - inserting 1000 documents. first: Suruj and last: File:An Phoblacht June 2014 post-election.jpg -[2018-02-13T00:45:20.604] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:45:20.610] [INFO] cheese - inserting 1000 documents. first: List of Wipeout video games and last: Swimming at the 2007 World Aquatics Championships – Men's 100m backstroke -[2018-02-13T00:45:20.628] [INFO] cheese - inserting 1000 documents. first: Yuval Ron Ensemble and last: Andrés Bello Municipality, Miranda -[2018-02-13T00:45:20.717] [INFO] cheese - inserting 1000 documents. first: Τ Arietis and last: 2017 ABN AMRO World Tennis Tournament – Singles -[2018-02-13T00:45:20.719] [INFO] cheese - inserting 1000 documents. first: Arnouville-les-Mantes and last: Oregon State Fairgrounds -[2018-02-13T00:45:20.724] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:45:20.783] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T00:45:20.800] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:45:20.839] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:45:21.228] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom locations: Ce-Ck and last: Kautz graph -[2018-02-13T00:45:21.277] [INFO] cheese - inserting 1000 documents. first: Gern hab' ich die Frau'n geküßt' and last: Ch'iyar Jaqhi (Peru) -[2018-02-13T00:45:21.315] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T00:45:21.321] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:45:21.327] [INFO] cheese - inserting 1000 documents. first: Template:Checked-sock-nb and last: Miranda Municipality, Mérida -[2018-02-13T00:45:21.330] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2007 World Aquatics Championships – Men's 200m backstroke and last: Lung-Plague Pleuro-Pneumonia -[2018-02-13T00:45:21.374] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:45:21.389] [INFO] cheese - inserting 1000 documents. first: Iohannes Amos Comenius and last: HD 330075 b -[2018-02-13T00:45:21.451] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:45:21.470] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T00:45:21.567] [INFO] cheese - inserting 1000 documents. first: Draft:Spencer James Porter and last: Filipino New Wave -[2018-02-13T00:45:21.660] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:45:21.756] [INFO] cheese - inserting 1000 documents. first: Goulburn–Murray Water and last: Vetri Padigal -[2018-02-13T00:45:21.805] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:45:21.833] [INFO] cheese - inserting 1000 documents. first: Louis Segatore and last: File:TinManWasADreamer cover.jpg -[2018-02-13T00:45:21.932] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:45:21.991] [INFO] cheese - inserting 1000 documents. first: Estádio Nossa Senhora do Monte and last: List of Presidents of the Philippines by education -[2018-02-13T00:45:22.112] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:45:22.190] [INFO] cheese - inserting 1000 documents. first: Template:Fb competition 2009 Tippeligaen and last: David Prottas -[2018-02-13T00:45:22.208] [INFO] cheese - inserting 1000 documents. first: Category:Glossata stubs and last: Wikipedia:Articles for deletion/Portugal Golden Visa -[2018-02-13T00:45:22.276] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:22.273] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:45:22.283] [INFO] cheese - inserting 1000 documents. first: Theresa Fairbanks Harris and last: Wikipedia:Sockpuppet investigations/Sweet mi/Archive -[2018-02-13T00:45:22.382] [INFO] cheese - inserting 1000 documents. first: Dylan Burns and last: Template:Ethnic Vienna sidebar -[2018-02-13T00:45:22.409] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T00:45:22.460] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:45:22.643] [INFO] cheese - inserting 1000 documents. first: Portal:Georgia (U.S. state)/Selected biography/9 and last: Tsegay -[2018-02-13T00:45:22.738] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T00:45:22.832] [INFO] cheese - inserting 1000 documents. first: Beaches FC (United States) and last: Category:Suspected Wikipedia sockpuppets of Chilifrenzy -[2018-02-13T00:45:22.851] [INFO] cheese - inserting 1000 documents. first: Brittany Pollack and last: Category:Incorporated places in Abitibi-Témiscamingue -[2018-02-13T00:45:22.903] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:45:22.949] [INFO] cheese - inserting 1000 documents. first: Maverick missile and last: Microatoll -[2018-02-13T00:45:22.957] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Greene County, Ohio and last: Buarahuarani -[2018-02-13T00:45:22.957] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:45:23.050] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:45:23.063] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T00:45:23.176] [INFO] cheese - inserting 1000 documents. first: Pressure flow theory and last: Cloantha evicta -[2018-02-13T00:45:23.275] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T00:45:23.315] [INFO] cheese - inserting 1000 documents. first: Burmese general election, 1922 and last: Rudolf Werlieh -[2018-02-13T00:45:23.394] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:45:23.451] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Augenblink and last: Category:Suspected Wikipedia sockpuppets of Asifquamar -[2018-02-13T00:45:23.566] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:45:23.692] [INFO] cheese - inserting 1000 documents. first: Neuroterus and last: Tahmilah -[2018-02-13T00:45:23.745] [INFO] cheese - inserting 1000 documents. first: File:Parenthood Season 5.jpg and last: Portal:Hellenism/Selected picture/9 -[2018-02-13T00:45:23.760] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:45:23.789] [INFO] cheese - inserting 1000 documents. first: Mineral Extraction and last: Horcón Tract -[2018-02-13T00:45:23.826] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:45:23.828] [INFO] cheese - inserting 1000 documents. first: Cloantha vomerina and last: Zemmouri -[2018-02-13T00:45:23.880] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T00:45:23.893] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:45:23.989] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 82satish and last: Balkrishna "Raosaheb" Gogte -[2018-02-13T00:45:23.994] [INFO] cheese - inserting 1000 documents. first: 'Til I Can Make it On My Own and last: Taumaka -[2018-02-13T00:45:24.042] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:45:24.147] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:45:24.236] [INFO] cheese - inserting 1000 documents. first: Si.mobil - Vodafone and last: Red Frangipani -[2018-02-13T00:45:24.302] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:45:24.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/CaitlinQuinn1 and last: 1914-15 National Association Foot Ball League season -[2018-02-13T00:45:24.414] [INFO] cheese - inserting 1000 documents. first: Category:1736 in theatre and last: Wikipedia:Miscellany for deletion/User:Chrisishawtt/Don Kivowitz -[2018-02-13T00:45:24.439] [INFO] cheese - inserting 1000 documents. first: Nelson-Blenheim notional railway and last: Dixa nubilipennis -[2018-02-13T00:45:24.445] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:24.474] [INFO] cheese - inserting 1000 documents. first: Extra Gentleman Usher and last: Aida Cuevas -[2018-02-13T00:45:24.476] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:45:24.507] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:45:24.604] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:45:24.682] [INFO] cheese - inserting 1000 documents. first: Popotai and last: Duje Bajrušovic -[2018-02-13T00:45:24.779] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:45:24.890] [INFO] cheese - inserting 1000 documents. first: Category:Entertainment venues in Romania and last: The Century Foundation, Inc. -[2018-02-13T00:45:24.940] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:45:24.987] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Classicleague15/Grant Lindsey and last: Wikipedia:Articles for deletion/The Kneeling Christian -[2018-02-13T00:45:25.001] [INFO] cheese - inserting 1000 documents. first: Template:Alan Rudolph and last: Anne Henderson -[2018-02-13T00:45:25.008] [INFO] cheese - inserting 1000 documents. first: Disproved and last: File:ISSafterSTS96.jpg -[2018-02-13T00:45:25.046] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:45:25.085] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:45:25.099] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:45:25.142] [INFO] cheese - inserting 1000 documents. first: Antidiuretic and last: ボボボーボ ボーボボ -[2018-02-13T00:45:25.143] [INFO] cheese - inserting 1000 documents. first: 1921 Big Ten Conference football season and last: Category:Wikipedia sockpuppets of Btarik77 -[2018-02-13T00:45:25.160] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:45:25.202] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:45:25.242] [INFO] cheese - inserting 1000 documents. first: Template:REH bibliography and last: Capivariano Futebol Clube -[2018-02-13T00:45:25.285] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:45:25.382] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Zawaydh and last: Wikipedia:WikiProject Women in Red/Outreach/International list -[2018-02-13T00:45:25.406] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:45:25.523] [INFO] cheese - inserting 1000 documents. first: Arvid Nyberg and last: Suk Min-hee -[2018-02-13T00:45:25.574] [INFO] cheese - inserting 1000 documents. first: Philip Louis I, Count of Hanau-Münzenberg and last: Sextant Formation -[2018-02-13T00:45:25.583] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:45:25.590] [INFO] cheese - inserting 1000 documents. first: Albertoppelia and last: Aemona peali -[2018-02-13T00:45:25.611] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:45:25.651] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:45:25.692] [INFO] cheese - inserting 1000 documents. first: Madhavan (actor) and last: William Henry Kurtz -[2018-02-13T00:45:25.752] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:25.788] [INFO] cheese - inserting 1000 documents. first: Dej. and last: Category:Bilateral military relations of Azerbaijan -[2018-02-13T00:45:25.817] [INFO] cheese - inserting 1000 documents. first: Nikolay Dimitrov and last: Giambelli-Thom-Porteous formula -[2018-02-13T00:45:25.832] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:45:25.870] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:45:26.023] [INFO] cheese - inserting 1000 documents. first: Global Day for Darfur and last: Nicrophorus hispaniola -[2018-02-13T00:45:26.037] [INFO] cheese - inserting 1000 documents. first: Category:Liuzhou and last: Category:Virginia counties on the Potomac River -[2018-02-13T00:45:26.116] [INFO] cheese - inserting 1000 documents. first: Diva montelaba and last: Deccan White carp -[2018-02-13T00:45:26.125] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:45:26.123] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:45:26.232] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:45:26.309] [INFO] cheese - inserting 1000 documents. first: Category:2008–09 in Belarusian basketball and last: Category:Dashboard.wikiedu.org courses, The University of Mississippi -[2018-02-13T00:45:26.309] [INFO] cheese - inserting 1000 documents. first: Great day in harlem and last: Victorinus of Ptuj -[2018-02-13T00:45:26.314] [INFO] cheese - inserting 1000 documents. first: 1994 Federation Cup Americas Zone – Knockout Stage and last: Jose Amalfitani -[2018-02-13T00:45:26.353] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:45:26.357] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:45:26.378] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:45:26.506] [INFO] cheese - inserting 1000 documents. first: Fungiidae and last: Taipei Public Library Beitou Branch -[2018-02-13T00:45:26.588] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:45:26.604] [INFO] cheese - inserting 1000 documents. first: Yosefa and last: Justoy -[2018-02-13T00:45:26.631] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:45:26.717] [INFO] cheese - inserting 1000 documents. first: Blount, WV and last: Cadillac Hotel (Florida) -[2018-02-13T00:45:26.724] [INFO] cheese - inserting 1000 documents. first: William Blessington and last: C-162 -[2018-02-13T00:45:26.754] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:45:26.768] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:26.790] [INFO] cheese - inserting 1000 documents. first: 4th City of London Regiment (Royal Fusiliers) and last: Category:Residential buildings in Bolivia -[2018-02-13T00:45:26.826] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:45:26.836] [INFO] cheese - inserting 1000 documents. first: Rico tan and last: Newtown Flicks Short Film Festival -[2018-02-13T00:45:26.900] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:45:26.956] [INFO] cheese - inserting 1000 documents. first: Mark Tacher Feingold and last: Kemalettin Sami Gokcen -[2018-02-13T00:45:26.987] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:45:27.016] [INFO] cheese - inserting 1000 documents. first: Mebibits and last: Museum of Anthropology, University of Athens -[2018-02-13T00:45:27.069] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:45:27.197] [INFO] cheese - inserting 1000 documents. first: File:EarthSky radio program logo.jpg and last: Category:1861 establishments in Colorado -[2018-02-13T00:45:27.249] [INFO] cheese - inserting 1000 documents. first: Kemalpasa (disambiguation) and last: Zawtar El Charkiyeh -[2018-02-13T00:45:27.269] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:45:27.271] [INFO] cheese - inserting 1000 documents. first: List of Kings of Thailand and last: Category:FC Barcelona Futsal players -[2018-02-13T00:45:27.294] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:45:27.346] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:45:27.405] [INFO] cheese - inserting 1000 documents. first: Circling the Drain and last: List of constituencies of Manipur Legislative Assembly -[2018-02-13T00:45:27.460] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:45:27.503] [INFO] cheese - inserting 1000 documents. first: Davidsbündler and last: Mattisse -[2018-02-13T00:45:27.531] [INFO] cheese - inserting 1000 documents. first: Category:1993 labor disputes and strikes and last: House of Bylandt-Halt-Spaldorf -[2018-02-13T00:45:27.576] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:45:27.585] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:45:27.596] [INFO] cheese - inserting 1000 documents. first: Kucane and last: Landesliga Luneburg -[2018-02-13T00:45:27.669] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:45:27.699] [INFO] cheese - inserting 1000 documents. first: Category:1868 establishments in Colorado and last: National Register of Historic Places in Pike County, Alabama -[2018-02-13T00:45:27.757] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:45:27.847] [INFO] cheese - inserting 1000 documents. first: Category:FC Barcelona Futsal and last: File:BridgeHead Software logo.gif -[2018-02-13T00:45:27.901] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:45:27.941] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Randolph County, Alabama and last: National Register of Historic Places in Stanton County, Kansas -[2018-02-13T00:45:27.942] [INFO] cheese - inserting 1000 documents. first: Category:Sports in insular areas of the United States by sport and last: Kashani Rios -[2018-02-13T00:45:27.967] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:45:27.989] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:45:28.011] [INFO] cheese - inserting 1000 documents. first: Landestheater Tubingen and last: Thomas Anderson (Medal of Honor) -[2018-02-13T00:45:28.078] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:28.105] [INFO] cheese - inserting 1000 documents. first: AG-3F2 and last: Category:Massachusetts General Court elections -[2018-02-13T00:45:28.129] [INFO] cheese - inserting 1000 documents. first: Mattise and last: Kanazuka Station -[2018-02-13T00:45:28.137] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Stevens County, Kansas and last: National Register of Historic Places in Smithtown (town), New York -[2018-02-13T00:45:28.154] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:45:28.173] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:45:28.213] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:45:28.317] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Southampton (town), New York and last: National Register of Historic Places in Cumberland County, Virginia -[2018-02-13T00:45:28.333] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:45:28.375] [INFO] cheese - inserting 1000 documents. first: Amplitude-frequency response and last: Hora razorbelly Minnow -[2018-02-13T00:45:28.403] [INFO] cheese - inserting 1000 documents. first: Category:Germany–Norway military relations and last: Pola Nowakowska -[2018-02-13T00:45:28.425] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:45:28.453] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:28.519] [INFO] cheese - inserting 1000 documents. first: Ulrich Kortz and last: List of Sinn Fein elected representatives -[2018-02-13T00:45:28.560] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:45:28.620] [INFO] cheese - inserting 1000 documents. first: Charles Starr and last: Help Me (Alkaline Trio song) -[2018-02-13T00:45:28.692] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places in Dickenson County, Virginia and last: Geogepa zeuxidia -[2018-02-13T00:45:28.699] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:45:28.739] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:45:28.757] [INFO] cheese - inserting 1000 documents. first: Portal:Military of Australia/Units/November 11 and last: Wikipedia:Articles for deletion/Liza Wright -[2018-02-13T00:45:28.809] [INFO] cheese - inserting 1000 documents. first: List of Super Lig top scorers and last: Leon Bence -[2018-02-13T00:45:28.820] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:45:28.825] [INFO] cheese - inserting 1000 documents. first: Gober (disambiguation) and last: Murder in the Cathedral (1962 film) -[2018-02-13T00:45:28.837] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:45:28.896] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Eureka 7 V.1: New Wave and last: File:Again Cover.jpg -[2018-02-13T00:45:28.908] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:45:28.943] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:29.087] [INFO] cheese - inserting 1000 documents. first: Leon Bertin and last: Bat Guano -[2018-02-13T00:45:29.137] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:45:29.176] [INFO] cheese - inserting 1000 documents. first: Draft:AmiChart and last: Category:Suspected Wikipedia sockpuppets of Father Stuart -[2018-02-13T00:45:29.204] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:45:29.206] [INFO] cheese - inserting 1000 documents. first: Fort Chafee and last: José de la Cruz Porfirio Díaz Mori -[2018-02-13T00:45:29.213] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Illinois, 2016 and last: Wikipedia:Articles for deletion/Compassvale Primary School -[2018-02-13T00:45:29.256] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:45:29.269] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:45:29.362] [INFO] cheese - inserting 1000 documents. first: Komsomolsk, Ivanovo Oblast and last: Lam Thap -[2018-02-13T00:45:29.371] [INFO] cheese - inserting 1000 documents. first: Martin Cupr and last: Wikipedia:Miscellany for deletion/User:Vignesv -[2018-02-13T00:45:29.428] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:29.435] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:45:29.506] [INFO] cheese - inserting 1000 documents. first: List of McDonnell Douglas MD-80 operators and last: Vega (album) -[2018-02-13T00:45:29.540] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Colin todd and last: Southampton to Fareham Line -[2018-02-13T00:45:29.585] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:45:29.611] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:29.758] [INFO] cheese - inserting 1000 documents. first: Mai lányok and last: Category:Churches in the Roman Catholic Diocese of Madison -[2018-02-13T00:45:29.765] [INFO] cheese - inserting 1000 documents. first: Milan Vasic and last: Ferdinand Holtkamp -[2018-02-13T00:45:29.767] [INFO] cheese - inserting 1000 documents. first: Template:WWK and last: Government of Nevada -[2018-02-13T00:45:29.802] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:45:29.805] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:45:29.830] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:45:29.869] [INFO] cheese - inserting 1000 documents. first: Yeovil to Taunton Line and last: Category:Suspected Wikipedia sockpuppets of Zanditra -[2018-02-13T00:45:29.923] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:45:30.048] [INFO] cheese - inserting 1000 documents. first: Loas and last: Arkady Andreasyan -[2018-02-13T00:45:30.094] [INFO] cheese - inserting 1000 documents. first: Alec Hill and last: Bad Tölz-Wolfratshausen district -[2018-02-13T00:45:30.139] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:45:30.150] [INFO] cheese - inserting 1000 documents. first: May Tao Mountains and last: Nikola Celebic -[2018-02-13T00:45:30.158] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:45:30.183] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:45:30.209] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Theted99 and last: Jammu East (Vidhan Sabha constituency) -[2018-02-13T00:45:30.254] [INFO] cheese - inserting 1000 documents. first: Government of New Mexico and last: Waqt Batayega Kaun Apna Kaun Paraya -[2018-02-13T00:45:30.278] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:45:30.309] [INFO] cheese - inserting 1000 documents. first: Grass River (Manitoba) and last: Virginia State Route 63 (1940) -[2018-02-13T00:45:30.330] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:45:30.356] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:45:30.723] [INFO] cheese - inserting 1000 documents. first: Old Stan in the Mountain and last: Category:AFL-CIO people -[2018-02-13T00:45:30.780] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:45:30.795] [INFO] cheese - inserting 1000 documents. first: Ocean Hai and last: Mucizonia -[2018-02-13T00:45:30.833] [INFO] cheese - inserting 1000 documents. first: Virginia State Route 64 (1940) and last: Template:S-line/OASA Rail left/P3 -[2018-02-13T00:45:30.859] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:30.944] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:45:30.945] [INFO] cheese - inserting 1000 documents. first: Category:Indian politicians convicted of corruption and last: Category:Sudanese awards -[2018-02-13T00:45:30.946] [INFO] cheese - inserting 1000 documents. first: Joel Jones and last: Crossroads Motel (Album) -[2018-02-13T00:45:30.996] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T00:45:31.067] [INFO] cheese - inserting 1000 documents. first: Nya Folkviljan and last: Dance Dance Revolution 2ndReMix Append Club Version Vol.1 -[2018-02-13T00:45:31.068] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:45:31.145] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T00:45:31.264] [INFO] cheese - inserting 1000 documents. first: File:Jimmy Lennon Sr.jpg and last: Ole Svendsen Iglerod -[2018-02-13T00:45:31.321] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:45:31.465] [INFO] cheese - inserting 1000 documents. first: DKids (TV Channel) and last: Ørjar Øyen -[2018-02-13T00:45:31.470] [INFO] cheese - inserting 1000 documents. first: Cryogenic (Band) and last: Hearts and minds (Iraq) -[2018-02-13T00:45:31.497] [INFO] cheese - inserting 1000 documents. first: File:Angels and airwaves live.JPG and last: Darwin School -[2018-02-13T00:45:31.574] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:45:31.588] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:45:31.610] [INFO] cheese - inserting 1000 documents. first: Hy-Kinsellagh and last: Twerk It Like Miley -[2018-02-13T00:45:31.642] [INFO] cheese - inserting 1000 documents. first: Dance Dance Revolution 2ndReMix Append Club Version Vol.2 and last: Football at the 1992 Summer Olympics – Men's team squads -[2018-02-13T00:45:31.683] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T00:45:31.690] [INFO] cheese - inserting 1000 documents. first: Portal:Cartoon/Did you know/2 and last: Ecclesiastical faculty -[2018-02-13T00:45:31.713] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:45:31.724] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:31.725] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:45:32.020] [INFO] cheese - inserting 1000 documents. first: File:Varsity Nottingham.jpg and last: Pozeg -[2018-02-13T00:45:32.025] [INFO] cheese - inserting 1000 documents. first: Cp 1101 and last: Code page 1392 -[2018-02-13T00:45:32.052] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:45:32.084] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:45:32.132] [INFO] cheese - inserting 1000 documents. first: Java Content Repository and last: Jawi (script) -[2018-02-13T00:45:32.154] [INFO] cheese - inserting 1000 documents. first: Democratic Party (Republic of Korea, 2008) and last: Portal:New York/Selected quotes/Archives -[2018-02-13T00:45:32.166] [INFO] cheese - inserting 1000 documents. first: Eurysternum and last: Small inverted retrosnub icosicosidodecahedron -[2018-02-13T00:45:32.196] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:32.210] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:45:32.258] [INFO] cheese - inserting 1000 documents. first: Hansel DeBartolo and last: Alpha3beta2 nACh receptor -[2018-02-13T00:45:32.282] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:45:32.359] [INFO] cheese - inserting 1000 documents. first: Pozega (Novi Pazar) and last: Ramon Ramirez (footballer) -[2018-02-13T00:45:32.359] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:45:32.409] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:45:32.640] [INFO] cheese - inserting 1000 documents. first: File:Sherwood Metros Official Logo.jpg and last: Eric Vivier -[2018-02-13T00:45:32.666] [INFO] cheese - inserting 1000 documents. first: Ramon Ramirez (pitcher, born 1977) and last: 2809 BC -[2018-02-13T00:45:32.689] [INFO] cheese - inserting 1000 documents. first: École La Croisée de Robertville and last: Kelling Heath Park railway station -[2018-02-13T00:45:32.692] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:32.695] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:45:32.697] [INFO] cheese - inserting 1000 documents. first: Template:Bergen County, New Jersey School Districts and last: Van der Grinten -[2018-02-13T00:45:32.740] [INFO] cheese - inserting 1000 documents. first: Korea Baseball League and last: Wikipedia:Articles for deletion/Drake (fairy) -[2018-02-13T00:45:32.757] [INFO] cheese - inserting 1000 documents. first: Sirsid and last: Takht Jamshid Cup 1973-74 -[2018-02-13T00:45:32.785] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:45:32.785] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:45:32.819] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:45:32.838] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:45:33.020] [INFO] cheese - inserting 1000 documents. first: Template:Karachay–Cherkessia and last: Rudolfuv kamen -[2018-02-13T00:45:33.070] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:45:33.088] [INFO] cheese - inserting 1000 documents. first: Myiolestes megarhynchus and last: Sindhoori -[2018-02-13T00:45:33.164] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:45:33.223] [INFO] cheese - inserting 1000 documents. first: Template:2015 in American soccer and last: File:BAP Japan Tour Warrior Begins.jpg -[2018-02-13T00:45:33.284] [INFO] cheese - inserting 1000 documents. first: A’Quonesia Franklin and last: ACSS2 -[2018-02-13T00:45:33.285] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:45:33.317] [INFO] cheese - inserting 1000 documents. first: Takht Jamshid Cup 1974-75 and last: Portal:United States Marine Corps/article/2010July -[2018-02-13T00:45:33.353] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:45:33.357] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:33.365] [INFO] cheese - inserting 1000 documents. first: Dits from the Commuter Belt and last: Children's Bureau -[2018-02-13T00:45:33.380] [INFO] cheese - inserting 1000 documents. first: Category:2010s establishments in Latvia and last: 3059 BC -[2018-02-13T00:45:33.451] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:45:33.514] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:45:33.629] [INFO] cheese - inserting 1000 documents. first: Johann Heinrich von Carmer and last: 2017 Morelos Open - Singles -[2018-02-13T00:45:33.687] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:45:33.860] [INFO] cheese - inserting 1000 documents. first: Category:Works based on The Three Little Pigs and last: Raghuvar Das -[2018-02-13T00:45:33.945] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:45:33.959] [INFO] cheese - inserting 1000 documents. first: 3060 BC and last: Category:Geography of Haliburton County -[2018-02-13T00:45:33.974] [INFO] cheese - inserting 1000 documents. first: Hugh P. Mullin and last: For Darwen -[2018-02-13T00:45:33.998] [INFO] cheese - inserting 1000 documents. first: Butlins Barryisland and last: Stephen McBride (footballer, born 1983) -[2018-02-13T00:45:34.027] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:45:34.062] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:45:34.076] [INFO] cheese - inserting 1000 documents. first: Blocker Gundan IV Machine Blaster and last: Longphorts -[2018-02-13T00:45:34.143] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T00:45:34.204] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:45:34.279] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1995 Pan American Games - Women's 100 metres and last: File:American Fable.jpg -[2018-02-13T00:45:34.326] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:45:34.510] [INFO] cheese - inserting 1000 documents. first: Rang Stong and last: Template:Howard University presidents -[2018-02-13T00:45:34.560] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:34.618] [INFO] cheese - inserting 1000 documents. first: Category:Bus stations in Kerala and last: Template:ConvertAbbrev/ISO 3166-2/EG -[2018-02-13T00:45:34.633] [INFO] cheese - inserting 1000 documents. first: File:Johncenainring.jpg and last: Thérèse Tanguay Dion -[2018-02-13T00:45:34.652] [INFO] cheese - inserting 1000 documents. first: August kusche and last: Category:Wikipedia sockpuppets of Megameeting -[2018-02-13T00:45:34.677] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:45:34.694] [INFO] cheese - inserting 1000 documents. first: Totonacan language and last: Minami-Makigahara Station -[2018-02-13T00:45:34.697] [INFO] cheese - inserting 1000 documents. first: Obarenes Mountains and last: Revolutionary Internationalist Organisation -[2018-02-13T00:45:34.702] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:45:34.714] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:45:34.776] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:45:34.791] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:45:34.881] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Fakir005 and last: Category:Suspected Wikipedia sockpuppets of Angelb88 -[2018-02-13T00:45:34.899] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:45:35.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Council/Proposals/Cricket Stadiums and last: Tomáš Hanák -[2018-02-13T00:45:35.062] [INFO] cheese - inserting 1000 documents. first: Quiché Airport and last: Sarigol, Haymana -[2018-02-13T00:45:35.064] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:45:35.133] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:45:35.176] [INFO] cheese - inserting 1000 documents. first: Günter Mielke and last: File:Centriq Logo72.jpg -[2018-02-13T00:45:35.230] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:35.245] [INFO] cheese - inserting 1000 documents. first: Category:Basketball coaches in Greece by club and last: Category:GA-Class American Samoa road transport articles -[2018-02-13T00:45:35.274] [INFO] cheese - inserting 1000 documents. first: Dorothy Nelkin and last: List of SVD schools -[2018-02-13T00:45:35.307] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:45:35.326] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:45:35.344] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 217.140.193.123 and last: Draft:Cocoweb -[2018-02-13T00:45:35.378] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:45:35.395] [INFO] cheese - inserting 1000 documents. first: The Houston 620 and last: Simao Jatene -[2018-02-13T00:45:35.418] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:45:35.445] [INFO] cheese - inserting 1000 documents. first: Inertia Recordings and last: File:Bradford City 1906-07.jpg -[2018-02-13T00:45:35.482] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:45:35.572] [INFO] cheese - inserting 1000 documents. first: Simon Bolivar (1942 film) and last: Station Buttiniere (Tram de Bordeaux) -[2018-02-13T00:45:35.598] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:45:35.625] [INFO] cheese - inserting 1000 documents. first: List of Frank Zappa musicians and last: Exploding foil initiator -[2018-02-13T00:45:35.649] [INFO] cheese - inserting 1000 documents. first: Category:A-Class American Samoa road transport articles and last: MV SeaFrance Molière -[2018-02-13T00:45:35.684] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:35.697] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:45:35.717] [INFO] cheese - inserting 1000 documents. first: Category:Commercial buildings in Kazakhstan and last: Kazakhstan men's national under-17 basketball team -[2018-02-13T00:45:35.765] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:45:35.808] [INFO] cheese - inserting 1000 documents. first: Boulogne Bowl and last: Type A Fujian flu -[2018-02-13T00:45:35.835] [INFO] cheese - inserting 1000 documents. first: The Bloodless Revolution: Radical Vegetarians and the Discovery of India and last: 32nd Aviation Division -[2018-02-13T00:45:35.843] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:45:35.870] [INFO] cheese - inserting 1000 documents. first: Hillsbourgh (ship) and last: Takeoff (disambiguation) -[2018-02-13T00:45:35.877] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:45:35.903] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:45:36.127] [INFO] cheese - inserting 1000 documents. first: SiS 300 and last: Russet Batomys -[2018-02-13T00:45:36.242] [INFO] cheese - inserting 1000 documents. first: El Cajon Police Department and last: Sormarka Arena -[2018-02-13T00:45:36.248] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:45:36.260] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/WASEEM SPORTS (SPORTS WEAR MANUFACTURER) and last: Draft:BBC MIDLAND RADIO ORCHESTRA -[2018-02-13T00:45:36.284] [INFO] cheese - inserting 1000 documents. first: Zaragon and last: Marbles -[2018-02-13T00:45:36.327] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:45:36.331] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:45:36.353] [INFO] cheese - inserting 1000 documents. first: 4th Aviation Bomber Division and last: Fan Qibli -[2018-02-13T00:45:36.378] [INFO] cheese - inserting 1000 documents. first: Edgardo M. Chatto and last: Panzerchrist -[2018-02-13T00:45:36.370] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:45:36.552] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:45:36.564] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:45:36.792] [INFO] cheese - inserting 1000 documents. first: 2012 Regions Morgan Keegan Championships and the Cellular South Cup and last: Theodore Dezamy -[2018-02-13T00:45:36.828] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:45:36.865] [INFO] cheese - inserting 1000 documents. first: Vermont Route 122 Alternate and last: Roy Kline (footballer) -[2018-02-13T00:45:36.938] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:45:37.047] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Liber HVHI and last: Barnsley Academy -[2018-02-13T00:45:37.052] [INFO] cheese - inserting 1000 documents. first: File:Boy Meets Curl.jpg and last: The B-52’s -[2018-02-13T00:45:37.120] [INFO] cheese - inserting 1000 documents. first: Al-Ghawi and last: Hydrocampa pulchralis -[2018-02-13T00:45:37.124] [INFO] cheese - inserting 1000 documents. first: Jeeva (actor) and last: Jiang Fengzhi -[2018-02-13T00:45:37.136] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:45:37.142] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:45:37.160] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:45:37.229] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:45:37.277] [INFO] cheese - inserting 1000 documents. first: The Kalahari Typing School for Men and last: Šarišské Dravce -[2018-02-13T00:45:37.354] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:45:37.415] [INFO] cheese - inserting 1000 documents. first: Evektor SportStar RTC and last: Senior League World Series (Southwest Region) -[2018-02-13T00:45:37.502] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:45:37.657] [INFO] cheese - inserting 1000 documents. first: Sultan valide and last: British 46th Infantry Brigade -[2018-02-13T00:45:37.693] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:37.708] [INFO] cheese - inserting 1000 documents. first: Museum of the War of Chinese People's Resistance Against Japanese Aggression and last: Taby IS FK -[2018-02-13T00:45:37.733] [INFO] cheese - inserting 1000 documents. first: Triplophysa daqiaoensis and last: Romodanovskiy Raion -[2018-02-13T00:45:37.756] [INFO] cheese - inserting 1000 documents. first: File:Faulu Microfinance Bank Limited Logo.jpg and last: Peach-fronted conure -[2018-02-13T00:45:37.764] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:45:37.834] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:45:37.837] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:45:37.986] [INFO] cheese - inserting 1000 documents. first: Sauce boat and last: Wisconsin State Colleges -[2018-02-13T00:45:38.058] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:45:38.086] [INFO] cheese - inserting 1000 documents. first: Georges-Olivier Châteaureynaud and last: Category:1794 disestablishments in the Habsburg Monarchy -[2018-02-13T00:45:38.154] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:45:38.271] [INFO] cheese - inserting 1000 documents. first: Taby church and last: Wikipedia:Articles for deletion/Weighted Million Operations Per Second -[2018-02-13T00:45:38.330] [INFO] cheese - inserting 1000 documents. first: File:CNLiewColourSculpture.jpg and last: Integrál-DAC -[2018-02-13T00:45:38.344] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:45:38.431] [INFO] cheese - inserting 1000 documents. first: Tarraby and last: File:Godiva Chocolatier Logo.svg -[2018-02-13T00:45:38.442] [INFO] cheese - inserting 1000 documents. first: Template:Men's European Volleyball Championship winners and last: Urgleptes celtis -[2018-02-13T00:45:38.447] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T00:45:38.496] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:45:38.554] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:45:38.609] [INFO] cheese - inserting 1000 documents. first: Turbulence 1 and last: Dr. Naseem uz Zafar Baquiri -[2018-02-13T00:45:38.706] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:38.726] [INFO] cheese - inserting 1000 documents. first: Dystimia and last: Wikipedia:Articles for deletion/GPSBabel -[2018-02-13T00:45:38.813] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hacı Karay and last: Category:Odd Fellows buildings in Wyoming -[2018-02-13T00:45:38.830] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:45:38.895] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:45:38.958] [INFO] cheese - inserting 1000 documents. first: Category:Gijón and last: UN/LOCODE:CHNYO -[2018-02-13T00:45:39.014] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:45:39.033] [INFO] cheese - inserting 1000 documents. first: Todd Reynolds and last: Category:Video games based on films directed by Frank Marshall -[2018-02-13T00:45:39.116] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:45:39.128] [INFO] cheese - inserting 1000 documents. first: Asian white-lips and last: Category:FIFA World Cup posters -[2018-02-13T00:45:39.223] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:45:39.244] [INFO] cheese - inserting 1000 documents. first: Thatchernomics and last: File:Bergen County Cooperative Library System logo.jpg -[2018-02-13T00:45:39.328] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:39.372] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Italy and last: Doubly-fed generator -[2018-02-13T00:45:39.403] [INFO] cheese - inserting 1000 documents. first: Coxen baronets and last: 3501 BC -[2018-02-13T00:45:39.467] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:45:39.485] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:45:39.493] [INFO] cheese - inserting 1000 documents. first: Farm Road 528 and last: Shkorpilovtsi -[2018-02-13T00:45:39.593] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:39.711] [INFO] cheese - inserting 1000 documents. first: St. Lawrence, Essex and last: Operating temperature range -[2018-02-13T00:45:39.726] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Taphrinomycetes and last: Category:Suspected Wikipedia sockpuppets of Middle East Editor -[2018-02-13T00:45:39.754] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2014 Commonwealth Games - Men's Keirin and last: Category:Călărași -[2018-02-13T00:45:39.793] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:45:39.801] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:45:39.845] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:45:39.988] [INFO] cheese - inserting 1000 documents. first: Maiden grass and last: Wikipedia:Articles for deletion/List of soap opera popular couples -[2018-02-13T00:45:39.990] [INFO] cheese - inserting 1000 documents. first: SPEED (Kpop) and last: Visoce, Sentjur -[2018-02-13T00:45:40.029] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of J robson1 and last: Category:Women's basketball competitions in Greece -[2018-02-13T00:45:40.048] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:45:40.075] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:45:40.078] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:45:40.325] [INFO] cheese - inserting 1000 documents. first: Toyama Thunderbirds and last: Template:User wikipedia/Rollback -[2018-02-13T00:45:40.325] [INFO] cheese - inserting 1000 documents. first: Visocka and last: Deh-e Hasanali, Lorestan -[2018-02-13T00:45:40.352] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:45:40.419] [INFO] cheese - inserting 1000 documents. first: Category:Media in Călărași and last: New Granada cross-banded treefrog -[2018-02-13T00:45:40.423] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T00:45:40.536] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:45:40.616] [INFO] cheese - inserting 1000 documents. first: Andrej Sakharov and last: Johns, Geoff -[2018-02-13T00:45:40.707] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T00:45:40.718] [INFO] cheese - inserting 1000 documents. first: BAND (application) and last: Wikipedia:WikiProject Spam/Local/theholyseedchurch.org -[2018-02-13T00:45:40.748] [INFO] cheese - inserting 1000 documents. first: Wittnau, Baden-Wurttemberg and last: Wikipedia:Articles for deletion/Cross generation ship -[2018-02-13T00:45:40.765] [INFO] cheese - inserting 1000 documents. first: Socle (architecture) and last: Donald's Hill -[2018-02-13T00:45:40.779] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T00:45:40.813] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:45:40.837] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:45:40.956] [INFO] cheese - inserting 1000 documents. first: File:Bombayrockers.jpg and last: Template:Fb round2 2007-08 UCL GS -[2018-02-13T00:45:40.974] [INFO] cheese - inserting 1000 documents. first: 3720 BC and last: Category:Candidates for President of India -[2018-02-13T00:45:40.998] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:45:41.004] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:45:41.110] [INFO] cheese - inserting 1000 documents. first: Clausotrypa elegans and last: Category:Novels by Max Kidruk -[2018-02-13T00:45:41.138] [INFO] cheese - inserting 1000 documents. first: Scepticism in Law and last: EX 34 -[2018-02-13T00:45:41.148] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:45:41.154] [INFO] cheese - inserting 1000 documents. first: New Granada cross-banded treefrogs and last: Body In A Hole EP -[2018-02-13T00:45:41.195] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:45:41.241] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:45:41.263] [INFO] cheese - inserting 1000 documents. first: Hooligans Holiday and last: Midichloria -[2018-02-13T00:45:41.286] [INFO] cheese - inserting 1000 documents. first: AEthelberht, king of the Hwicce and last: Eric Vigner -[2018-02-13T00:45:41.307] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:45:41.321] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:45:41.384] [INFO] cheese - inserting 1000 documents. first: French number-one hits of 2004 and last: Adam Hieronim Sieniawski (1623-1650) -[2018-02-13T00:45:41.421] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:41.588] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed Telangana articles and last: Colt 600 convertible -[2018-02-13T00:45:41.625] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:45:41.633] [INFO] cheese - inserting 1000 documents. first: Category:Bridges in Henry County, Iowa and last: File:Screen Shot Target Nevada.png -[2018-02-13T00:45:41.650] [INFO] cheese - inserting 1000 documents. first: Esera and last: Pujol i Bausis factory -[2018-02-13T00:45:41.693] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:45:41.694] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:45:41.745] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada articles by quality statistics and last: Alison baronets -[2018-02-13T00:45:41.790] [INFO] cheese - inserting 1000 documents. first: File:Donnaworkhardforthemoney.jpg and last: Water-Fueled Car -[2018-02-13T00:45:41.798] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:41.921] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:45:41.967] [INFO] cheese - inserting 1000 documents. first: Template:BSrow and last: Ulles gas field -[2018-02-13T00:45:42.009] [INFO] cheese - inserting 1000 documents. first: File:MX vs. ATV Box Art from Amazon.jpg and last: Cricketfrog -[2018-02-13T00:45:42.040] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:45:42.088] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:42.148] [INFO] cheese - inserting 1000 documents. first: Flame structure and last: Panzer Lehr Division (Germany) -[2018-02-13T00:45:42.235] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T00:45:42.425] [INFO] cheese - inserting 1000 documents. first: ג'ק וולש and last: Filipino-Australian -[2018-02-13T00:45:42.438] [INFO] cheese - inserting 1000 documents. first: Category:Personal property law of the United States and last: Category:1810 in Scotland -[2018-02-13T00:45:42.458] [INFO] cheese - inserting 1000 documents. first: Category:Interior ministers of Guinea-Bissau and last: Newtork Three -[2018-02-13T00:45:42.481] [INFO] cheese - inserting 1000 documents. first: Cricketfrogs and last: Mont Formation -[2018-02-13T00:45:42.494] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:45:42.529] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:45:42.544] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:45:42.546] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:45:42.780] [INFO] cheese - inserting 1000 documents. first: 273rd Reserve Panzer Division (Germany) and last: List of open air and living history museums in the United States -[2018-02-13T00:45:42.849] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:45:42.911] [INFO] cheese - inserting 1000 documents. first: Laziska Power Station and last: Fathe Edward Petre -[2018-02-13T00:45:42.945] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:45:42.953] [INFO] cheese - inserting 1000 documents. first: Keith Anthony Morrison and last: File:InZealBomb by RoTto.jpg -[2018-02-13T00:45:43.009] [INFO] cheese - inserting 1000 documents. first: List of Tale Spin characters and last: Heike Hartwig -[2018-02-13T00:45:43.012] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:43.048] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:43.087] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors of Germany to Singapore and last: Wikipedia:WikiProject Women in Red/Missing articles by education/Russia - Moscow Conservatory -[2018-02-13T00:45:43.162] [INFO] cheese - inserting 1000 documents. first: Oolite Blanche and last: List of songs recorded by Usher -[2018-02-13T00:45:43.185] [INFO] cheese - batch complete in: 1.49 secs -[2018-02-13T00:45:43.268] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:43.357] [INFO] cheese - inserting 1000 documents. first: GSM SIM and last: Go (Jón Þór Birgisson album) -[2018-02-13T00:45:43.402] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:45:43.409] [INFO] cheese - inserting 1000 documents. first: Sight and sound and last: Stitch in Time (episode) -[2018-02-13T00:45:43.450] [INFO] cheese - inserting 1000 documents. first: Steven levitt and last: Bubble sheet -[2018-02-13T00:45:43.468] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:45:43.523] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:45:43.543] [INFO] cheese - inserting 1000 documents. first: Category:Ardabil County geography stubs and last: Leonard Henry Caleb Tippett -[2018-02-13T00:45:43.616] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:45:43.631] [INFO] cheese - inserting 1000 documents. first: Draft:Shahid Saleem and last: Don't Knock Twice (film) -[2018-02-13T00:45:43.702] [INFO] cheese - inserting 1000 documents. first: Polyove, Shakhtarsk Raion and last: Category:1967–68 Southern Conference men's basketball season -[2018-02-13T00:45:43.703] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:45:43.749] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:45:43.857] [INFO] cheese - inserting 1000 documents. first: West Cuban anole and last: Portal:India/Header -[2018-02-13T00:45:43.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/James Wesley Rawles and last: Template:Mozart horn concertos -[2018-02-13T00:45:43.929] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:45:43.939] [INFO] cheese - inserting 1000 documents. first: I Hear You Calling (episode) and last: Broadcasting (networks) -[2018-02-13T00:45:43.957] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:45:44.040] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:45:44.087] [INFO] cheese - inserting 1000 documents. first: Constituency PP-116 and last: Category:Academies in Coventry -[2018-02-13T00:45:44.136] [INFO] cheese - inserting 1000 documents. first: Cabildo Mayor del pueblo Muisca and last: Takiah -[2018-02-13T00:45:44.149] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:45:44.192] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:45:44.325] [INFO] cheese - inserting 1000 documents. first: 1997 Salford Reds season and last: Category:Sportspeople from Vernon, British Columbia -[2018-02-13T00:45:44.368] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:45:44.445] [INFO] cheese - inserting 1000 documents. first: Joe Thomas (communist) and last: Dwarf anole -[2018-02-13T00:45:44.459] [INFO] cheese - inserting 1000 documents. first: Category:National Lacrosse League season templates and last: Callicarpa cathayana -[2018-02-13T00:45:44.464] [INFO] cheese - inserting 1000 documents. first: Nature's Garden and last: Ležiachov -[2018-02-13T00:45:44.481] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:44.506] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:45:44.510] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:45:44.567] [INFO] cheese - inserting 1000 documents. first: Portal:Freedom of speech/Selected quote/41 and last: Template:Archdeacon of the Isle of Man -[2018-02-13T00:45:44.586] [INFO] cheese - inserting 1000 documents. first: Category:1785 by city and last: Draft:William Finch -[2018-02-13T00:45:44.616] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:45:44.638] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:45:44.809] [INFO] cheese - inserting 1000 documents. first: Student quiz show and last: Covers (Young Statues EP) -[2018-02-13T00:45:44.835] [INFO] cheese - inserting 1000 documents. first: Anolis occultus and last: Template:Sa-journeyman-ubx -[2018-02-13T00:45:44.858] [INFO] cheese - inserting 1000 documents. first: Tubba-Bubba's Now Hubba-Hubba and last: Harry Mangurian -[2018-02-13T00:45:44.859] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:45:44.877] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:45:44.911] [INFO] cheese - inserting 1000 documents. first: Valča and last: Sweyn Estridsen -[2018-02-13T00:45:44.912] [INFO] cheese - inserting 1000 documents. first: File:The Pepper-Knepper Quintet.jpg and last: Shapes (band) -[2018-02-13T00:45:44.927] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:44.958] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:45:44.960] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:45:44.997] [INFO] cheese - inserting 1000 documents. first: Hiram Rhoads Revels and last: Category:Autonomous provinces of Serbia -[2018-02-13T00:45:45.065] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:45:45.208] [INFO] cheese - inserting 1000 documents. first: Template:Sa-grognard-ubx and last: Wikipedia:Articles for deletion/Kinuyo Yamashita -[2018-02-13T00:45:45.241] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:45:45.277] [INFO] cheese - inserting 1000 documents. first: Age Isn't Ours and last: File:Pride Prejudice 1995 VHS PAL Rated U Double Pack.jpg -[2018-02-13T00:45:45.301] [INFO] cheese - inserting 1000 documents. first: Days of Future Past (Part 2) and last: Student / Teacher Ratio -[2018-02-13T00:45:45.316] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:45:45.323] [INFO] cheese - inserting 1000 documents. first: Xiang Huaqiang and last: AFCS -[2018-02-13T00:45:45.332] [INFO] cheese - inserting 1000 documents. first: Nicolas d'Ailleboust de Manthet and last: List of Riverdale episodes -[2018-02-13T00:45:45.346] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:45:45.360] [INFO] cheese - inserting 1000 documents. first: File:The Assassination of Trotsky.jpg and last: Wikipedia:WikiProject Spam/LinkReports/ruradio.me -[2018-02-13T00:45:45.402] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:45:45.411] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:45:45.483] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:45:45.774] [INFO] cheese - inserting 1000 documents. first: African Dream Root and last: Reginald Gray -[2018-02-13T00:45:45.792] [INFO] cheese - inserting 1000 documents. first: 1999 NCAA Rifle Championships and last: Rhaphiptera boliviana -[2018-02-13T00:45:45.821] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:45:45.837] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:45:45.940] [INFO] cheese - inserting 1000 documents. first: File:Magic Square Canvas.png and last: Category:Film scores by Mano Murthy -[2018-02-13T00:45:45.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oildex and last: Termite pre-treatment -[2018-02-13T00:45:45.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:AIRPORTS/AN and last: Category:Books by Hunter S. Thompson -[2018-02-13T00:45:45.991] [INFO] cheese - inserting 1000 documents. first: George Phillips Odom, Jr and last: Notochthamalus -[2018-02-13T00:45:46.002] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:45:46.045] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:45:46.061] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:45:46.081] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:45:46.267] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand male taekwondo practitioners and last: Coptosia tauricola -[2018-02-13T00:45:46.292] [INFO] cheese - inserting 1000 documents. first: Guus ter Horst and last: Category:Canada subdivision navigational boxes -[2018-02-13T00:45:46.331] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:45:46.351] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:45:46.478] [INFO] cheese - inserting 1000 documents. first: Damien Quinn (hurler) and last: Expeed3 -[2018-02-13T00:45:46.525] [INFO] cheese - inserting 1000 documents. first: Dennis Heath and last: Category:Yuchi -[2018-02-13T00:45:46.539] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:45:46.600] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:45:46.631] [INFO] cheese - inserting 1000 documents. first: Coptosia cinerascens and last: Category:Suspected Wikipedia sockpuppets of Vichay Phommachan -[2018-02-13T00:45:46.676] [INFO] cheese - inserting 1000 documents. first: File:Santaposterbigla3.jpg and last: Mount Bowen (Queensland) -[2018-02-13T00:45:46.699] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:45:46.748] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:45:46.802] [INFO] cheese - inserting 1000 documents. first: Thomas Prickett and last: File:Enfield District Scout Band.png -[2018-02-13T00:45:46.849] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:45:46.914] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of QZDRE3 and last: Β Serpentis -[2018-02-13T00:45:46.928] [INFO] cheese - inserting 1000 documents. first: Citizens Industrial Alliance and last: Dille–Koppanyi reagent -[2018-02-13T00:45:46.936] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:45:46.946] [INFO] cheese - inserting 1000 documents. first: File:Wmya 2008.png and last: Category:MI5 personnel -[2018-02-13T00:45:46.978] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:45:47.018] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T00:45:47.192] [INFO] cheese - inserting 1000 documents. first: Maamul Goboleedka Jubbaland ee Soomaaliya and last: Template:Camus -[2018-02-13T00:45:47.239] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Sisak-Moslavina County and last: One hundred eighty-nine -[2018-02-13T00:45:47.252] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:45:47.307] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:45:47.373] [INFO] cheese - inserting 1000 documents. first: Big Electric Cat and last: Category:WikiProject Paintball templates -[2018-02-13T00:45:47.399] [INFO] cheese - inserting 1000 documents. first: Larmer Bay ruin and last: National Treasures of Japan (statistics) -[2018-02-13T00:45:47.406] [INFO] cheese - inserting 1000 documents. first: Template:Alliance for the Republic - Yaakaar/meta/shortname and last: File:Parts & Labor in Brooklyn, 2009.jpg -[2018-02-13T00:45:47.423] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:45:47.479] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:45:47.474] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:45:47.555] [INFO] cheese - inserting 1000 documents. first: Kotoba no Puzzle Mojipittan and last: Shichinin no Nana -[2018-02-13T00:45:47.645] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:45:47.674] [INFO] cheese - inserting 1000 documents. first: One hundred eighty-three and last: Capital Plaza -[2018-02-13T00:45:47.770] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:47.868] [INFO] cheese - inserting 1000 documents. first: Jake Cave and last: Naby Deco Keita -[2018-02-13T00:45:47.951] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:45:47.964] [INFO] cheese - inserting 1000 documents. first: Deutscher Kaiser and last: Category:Wheelchair curling -[2018-02-13T00:45:48.055] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:45:48.103] [INFO] cheese - inserting 1000 documents. first: Template:Olympics infobox and last: Wikipedia:Articles for deletion/YaBB -[2018-02-13T00:45:48.108] [INFO] cheese - inserting 1000 documents. first: Faster than the speed of light (disambiguation) and last: Sterkfontein caves -[2018-02-13T00:45:48.138] [INFO] cheese - inserting 1000 documents. first: San Pedro District, Lucanas and last: Georgia Highway 338 -[2018-02-13T00:45:48.196] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:45:48.203] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:45:48.212] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:45:48.231] [INFO] cheese - inserting 1000 documents. first: Norwegian County Road 913 and last: Category:Political office-holders in Arunachal Pradesh -[2018-02-13T00:45:48.297] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:48.536] [INFO] cheese - inserting 1000 documents. first: Template:Infobox silver/sandbox and last: Memories Are Made of This (Deana Martin album) -[2018-02-13T00:45:48.580] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:45:48.598] [INFO] cheese - inserting 1000 documents. first: Iva Landeka and last: Bariša Čolak -[2018-02-13T00:45:48.668] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:45:48.678] [INFO] cheese - inserting 1000 documents. first: Highway 338 (Georgia) and last: Sue Merz -[2018-02-13T00:45:48.698] [INFO] cheese - inserting 1000 documents. first: Directive 66/683 and last: Template:AFLGameHeader/doc -[2018-02-13T00:45:48.712] [INFO] cheese - inserting 1000 documents. first: Category:Political office-holders in Assam and last: Wikipedia:Featured list candidates/Alfred Hitchcock filmography/archive1 -[2018-02-13T00:45:48.729] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:45:48.746] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:48.796] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:45:48.919] [INFO] cheese - inserting 1000 documents. first: Properties window and last: West Linn High School -[2018-02-13T00:45:48.983] [INFO] cheese - inserting 1000 documents. first: Myelois multiflorella and last: Template:Deans of St George's Chapel at Windsor Castle -[2018-02-13T00:45:48.994] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:45:49.055] [INFO] cheese - inserting 1000 documents. first: Template:Db-u1/testcases and last: Little Anita's -[2018-02-13T00:45:49.085] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:49.116] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:45:49.160] [INFO] cheese - inserting 1000 documents. first: 1917–18 FC Barcelona season and last: Interventricular foramen of monro -[2018-02-13T00:45:49.209] [INFO] cheese - inserting 1000 documents. first: Clifton, North Carolina and last: Olusẹgun Mathew Okikiọla Arẹmu Ọbasanjọ -[2018-02-13T00:45:49.229] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:45:49.297] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:45:49.567] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Animation/Warner Bros. Animation work group/Importance scale and last: Template:Attached KML/Sheridan County, North Dakota -[2018-02-13T00:45:49.592] [INFO] cheese - inserting 1000 documents. first: File:ThePoolMedfieldDennisMillerBunker1889.jpg and last: Category:Scottish pool players -[2018-02-13T00:45:49.622] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:45:49.674] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:45:49.683] [INFO] cheese - inserting 1000 documents. first: Marie-Caroline Du Fresnay and last: File:Aquinas College Nashville logo.svg -[2018-02-13T00:45:49.744] [INFO] cheese - inserting 1000 documents. first: The Whistler (Chana song) and last: Wikipedia:Articles for deletion/Aarti Rana -[2018-02-13T00:45:49.750] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:45:49.793] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:45:49.834] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Ratatouille and last: Keyla Ohs -[2018-02-13T00:45:49.929] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T00:45:49.975] [INFO] cheese - inserting 1000 documents. first: Marconi-Osram Valve and last: Parliament of the Federation of Bosnia and Herzegovina -[2018-02-13T00:45:50.000] [INFO] cheese - inserting 1000 documents. first: Longlin and last: File:IJandSpearofDestiny.jpg -[2018-02-13T00:45:50.017] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:45:50.068] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T00:45:50.195] [INFO] cheese - inserting 1000 documents. first: Skales and last: Biryukovo -[2018-02-13T00:45:50.254] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:45:50.293] [INFO] cheese - inserting 1000 documents. first: File:Pancho group 1 500.jpg and last: NKMK -[2018-02-13T00:45:50.350] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:45:50.402] [INFO] cheese - inserting 1000 documents. first: Glossary of chemistry and last: White Heat (TV series) -[2018-02-13T00:45:50.463] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:45:50.490] [INFO] cheese - inserting 1000 documents. first: William Pile Shipbuilder and last: State (law) -[2018-02-13T00:45:50.492] [INFO] cheese - inserting 1000 documents. first: Razorcake fanzine and last: Charles W. Ray -[2018-02-13T00:45:50.567] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:45:50.574] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:45:50.582] [INFO] cheese - inserting 1000 documents. first: Draft:San Fransisco World Game and last: Oaxaca PE-1 Pegasus -[2018-02-13T00:45:50.664] [INFO] cheese - inserting 1000 documents. first: Category:1989 in women's association football and last: Category:Landforms of Grant County, Kansas -[2018-02-13T00:45:50.695] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T00:45:50.717] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:45:50.749] [INFO] cheese - inserting 1000 documents. first: Dépeçage and last: File:Hitoriyorifutari.jpg -[2018-02-13T00:45:50.825] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:45:51.003] [INFO] cheese - inserting 1000 documents. first: Inspector George Gently (TV series) and last: Wikipedia:Reference desk/Archives/Humanities/2012 February 27 -[2018-02-13T00:45:51.043] [INFO] cheese - inserting 1000 documents. first: 2008 Acura Classic and last: Inger Brattstrom -[2018-02-13T00:45:51.047] [INFO] cheese - inserting 1000 documents. first: Confederation Life Building, Toronto and last: Category:The Young Gods songs -[2018-02-13T00:45:51.047] [INFO] cheese - inserting 1000 documents. first: Category:United States at the Olympic Men's Basketball Tournament and last: Matías Sborowitz -[2018-02-13T00:45:51.059] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:45:51.085] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:45:51.089] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:45:51.104] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Meade County, Kansas and last: Michael Gotthelf -[2018-02-13T00:45:51.112] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:45:51.185] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:45:51.269] [INFO] cheese - inserting 1000 documents. first: Abstract Factory and last: Lady Tweedsmuir -[2018-02-13T00:45:51.337] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:45:51.390] [INFO] cheese - inserting 1000 documents. first: Good-Hartle Farm and last: Richville, Arizona -[2018-02-13T00:45:51.417] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:45:51.504] [INFO] cheese - inserting 1000 documents. first: William Powers (politics) and last: Bonneville Dam Historic District -[2018-02-13T00:45:51.546] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:45:51.562] [INFO] cheese - inserting 1000 documents. first: Morro da Mineira and last: VNG -[2018-02-13T00:45:51.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2012 February 26 and last: File:Anna of Brooklyn.jpg -[2018-02-13T00:45:51.619] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:45:51.663] [INFO] cheese - inserting 1000 documents. first: Herman Nickel and last: Assignment polytope -[2018-02-13T00:45:51.671] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:45:51.714] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:51.773] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adam Wylde and last: Category:Wikipedia sockpuppets of Factsldn15 -[2018-02-13T00:45:51.807] [INFO] cheese - inserting 1000 documents. first: File:Chelsea01.jpg and last: Portal:Psychology/Selected psychologist/8 -[2018-02-13T00:45:51.822] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:45:51.848] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:45:51.972] [INFO] cheese - inserting 1000 documents. first: Two Weeks (FKA Twigs song) and last: Wrestling at the 2014 Commonwealth Games – Women's freestyle 69 kg -[2018-02-13T00:45:52.025] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:45:52.032] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Mr. Unknown and last: Psychikou B.C. -[2018-02-13T00:45:52.059] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:45:52.164] [INFO] cheese - inserting 1000 documents. first: Portal:Psychology/Selected psychologist/9 and last: A Hobo's Christmas (Film) -[2018-02-13T00:45:52.204] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:45:52.224] [INFO] cheese - inserting 1000 documents. first: Category:ATP Tashkent Open and last: List of trails in Fremont County, Wyoming -[2018-02-13T00:45:52.230] [INFO] cheese - inserting 1000 documents. first: Placabis and last: Barkhamsted Forks -[2018-02-13T00:45:52.297] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:45:52.342] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:45:52.364] [INFO] cheese - inserting 1000 documents. first: Izuna: The Legend of the Unemployed Ninja and last: Template:German Verbandsligas and Landesligas (football) -[2018-02-13T00:45:52.423] [INFO] cheese - inserting 1000 documents. first: Paddington tube station (Circle and Hammersmith & City lines) and last: Giulio Masi -[2018-02-13T00:45:52.440] [INFO] cheese - inserting 1000 documents. first: List of Collaborators with Communist Security Agency and last: Category:2014–15 ISU Speed Skating World Cup templates -[2018-02-13T00:45:52.475] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:45:52.488] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T00:45:52.525] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:45:52.705] [INFO] cheese - inserting 1000 documents. first: File:MSU South Campus skyline.jpg and last: Charles Schumer -[2018-02-13T00:45:52.753] [INFO] cheese - inserting 1000 documents. first: Palora Canton and last: Wikipedia:Featured article candidates/Court of Chancery/archive1 -[2018-02-13T00:45:52.761] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:52.824] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:52.830] [INFO] cheese - inserting 1000 documents. first: Live and Louder and last: Safe Sex Designer Drugs & the Death of Rock 'N' Roll -[2018-02-13T00:45:52.882] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:45:52.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/watkinsbooks.com and last: Will You Marry Me -[2018-02-13T00:45:52.960] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:45:53.017] [INFO] cheese - inserting 1000 documents. first: I Get Along (Libertines song) and last: Hari Shankar Parsai -[2018-02-13T00:45:53.087] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:45:53.234] [INFO] cheese - inserting 1000 documents. first: Infrared Atmospheric Sounding Interferometer and last: Category:Colorado Independents -[2018-02-13T00:45:53.329] [INFO] cheese - inserting 1000 documents. first: Barton Line and last: A. T. M. Shamsul Huda -[2018-02-13T00:45:53.332] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:45:53.340] [INFO] cheese - inserting 1000 documents. first: Bolehall Swifts and last: Template:10 costliest US tornadoes -[2018-02-13T00:45:53.373] [INFO] cheese - inserting 1000 documents. first: Gymnastics at the 1960 Summer Olympics – Men's artistic team all-around and last: Stephen Edgar Paul Karamagi -[2018-02-13T00:45:53.449] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:45:53.450] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:45:53.514] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T00:45:53.554] [INFO] cheese - inserting 1000 documents. first: List of twin towns and sister cities in New Zealand and last: MD 81 -[2018-02-13T00:45:53.605] [INFO] cheese - inserting 1000 documents. first: Template:Order of Lenin and last: 113th Infantry Regiment (United States) -[2018-02-13T00:45:53.680] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:45:53.700] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:45:53.875] [INFO] cheese - inserting 1000 documents. first: Sidney Greidanus and last: University College London Partners -[2018-02-13T00:45:53.910] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/A Man with a Quilted Sleeve and last: Anna Sibylla Sergell -[2018-02-13T00:45:53.936] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:45:53.980] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:45:54.081] [INFO] cheese - inserting 1000 documents. first: Reece Power Station, Tasmania and last: Kashmiri Shaivism -[2018-02-13T00:45:54.091] [INFO] cheese - inserting 1000 documents. first: Nepenthes globamphora and last: WFRH -[2018-02-13T00:45:54.137] [INFO] cheese - inserting 1000 documents. first: Infrared vision and last: Blackadder 1 -[2018-02-13T00:45:54.150] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:45:54.158] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:45:54.202] [INFO] cheese - inserting 1000 documents. first: SESAT 1 and last: Category:City of Tshwane Metropolitan Municipality -[2018-02-13T00:45:54.206] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:45:54.279] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:45:54.338] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Sanitary Board of Hong Kong and last: Addison Roswell Thompson -[2018-02-13T00:45:54.362] [INFO] cheese - inserting 1000 documents. first: Mubarka Al-Naemi and last: 1990 Duke Blue Devils football team -[2018-02-13T00:45:54.377] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:45:54.398] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:45:54.550] [INFO] cheese - inserting 1000 documents. first: Anatoli Radenko and last: Middle Weser Valley -[2018-02-13T00:45:54.569] [INFO] cheese - inserting 1000 documents. first: Moon-Face and last: Katy IFL -[2018-02-13T00:45:54.590] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:45:54.621] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:45:54.688] [INFO] cheese - inserting 1000 documents. first: File:SacramentoSolons caplogo.svg and last: The Blue Trees -[2018-02-13T00:45:54.705] [INFO] cheese - inserting 1000 documents. first: Category:Venezuelan psychologists and last: Category:User Tang -[2018-02-13T00:45:54.716] [INFO] cheese - inserting 1000 documents. first: List of Fred: The Show episodes and last: OAPI patent -[2018-02-13T00:45:54.732] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:45:54.744] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:45:54.775] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:45:54.861] [INFO] cheese - inserting 1000 documents. first: Khun Tan Railway Station and last: Gaurotes atricornis -[2018-02-13T00:45:54.909] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:45:55.006] [INFO] cheese - inserting 1000 documents. first: Conservative Anglican Church of North America and last: Wikipedia:Suspected copyright violations/2010-02-04 -[2018-02-13T00:45:55.033] [INFO] cheese - inserting 1000 documents. first: Autovía A-49 and last: Ian Fleming's Goldfinger -[2018-02-13T00:45:55.069] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T00:45:55.116] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:45:55.151] [INFO] cheese - inserting 1000 documents. first: Category:People from Johnsburg, Illinois and last: Diocese of Laohekou -[2018-02-13T00:45:55.270] [INFO] cheese - inserting 1000 documents. first: Norberg-hodge and last: Portal:James Bond/Selected picture/22 -[2018-02-13T00:45:55.296] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:45:55.372] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:45:55.394] [INFO] cheese - inserting 1000 documents. first: 2012 Copa de España de Futsal and last: William Wickham (1831–1897) -[2018-02-13T00:45:55.467] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:45:55.474] [INFO] cheese - inserting 1000 documents. first: Gaurotes atripennis and last: SUN 'n FUN -[2018-02-13T00:45:55.591] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:45:55.717] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of George Town, Penang and last: Four Four South Village -[2018-02-13T00:45:55.769] [INFO] cheese - inserting 1000 documents. first: File:Red phone.jpg and last: Margaritifer sinus -[2018-02-13T00:45:55.778] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:45:55.841] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:45:55.970] [INFO] cheese - inserting 1000 documents. first: Wiradech Kothny and last: Template:Did you know nominations/Movement for Oneness and Jihad in West Africa -[2018-02-13T00:45:55.979] [INFO] cheese - inserting 1000 documents. first: Shelaylee and last: Muay at the 2009 Southeast Asian Games -[2018-02-13T00:45:56.030] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:45:56.058] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T00:45:56.068] [INFO] cheese - inserting 1000 documents. first: Xbox Game Pass and last: Briana Stewart -[2018-02-13T00:45:56.101] [INFO] cheese - inserting 1000 documents. first: Payena griffithii and last: New York Apples -[2018-02-13T00:45:56.118] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:45:56.161] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:45:56.271] [INFO] cheese - inserting 1000 documents. first: Portal:James Bond/Selected picture/23 and last: Intrinsic redshift -[2018-02-13T00:45:56.286] [INFO] cheese - inserting 1000 documents. first: File:Thee Phantom's Hero Complex (album cover).jpg and last: Johann Steyn, Baron Steyn -[2018-02-13T00:45:56.320] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T00:45:56.331] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:45:56.450] [INFO] cheese - inserting 1000 documents. first: Category:Queen Anne architecture in Kansas and last: Burututu -[2018-02-13T00:45:56.451] [INFO] cheese - inserting 1000 documents. first: 1959 Boston Red Sox and last: Category:Malayalam film scores by G. K. Venkatesh -[2018-02-13T00:45:56.492] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:45:56.501] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:45:56.531] [INFO] cheese - inserting 1000 documents. first: Typhoon Juan and last: Polytechnic movie -[2018-02-13T00:45:56.557] [INFO] cheese - inserting 1000 documents. first: Waterstonellidea and last: File:AshMarkHamilton.jpg -[2018-02-13T00:45:56.574] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:45:56.606] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:45:56.671] [INFO] cheese - inserting 1000 documents. first: Kukovoyt and last: Áno Alissós, Greece -[2018-02-13T00:45:56.704] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:45:56.721] [INFO] cheese - inserting 1000 documents. first: Daman Village, Nepal and last: Miles Automotive Group -[2018-02-13T00:45:56.765] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:45:56.780] [INFO] cheese - inserting 1000 documents. first: Rdeysky Nature Reserve and last: Varahamoorthi -[2018-02-13T00:45:56.810] [INFO] cheese - inserting 1000 documents. first: The Caxton Private Lending Library & Book Depository and last: Oriental Black-Headed Oriole -[2018-02-13T00:45:56.827] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:45:56.853] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:45:57.039] [INFO] cheese - inserting 1000 documents. first: Free India Centre and last: Category:Louisville metropolitan area-related lists -[2018-02-13T00:45:57.042] [INFO] cheese - inserting 1000 documents. first: Áno Alissós and last: Mentawai macaque -[2018-02-13T00:45:57.098] [INFO] cheese - inserting 1000 documents. first: Poretskoye and last: Oum El Bouaghi District -[2018-02-13T00:45:57.108] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:45:57.111] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:45:57.163] [INFO] cheese - inserting 1000 documents. first: Lavi (D.Gray Man) and last: Wikipedia:Reference desk/Archives/Computing/2008 April 15 -[2018-02-13T00:45:57.205] [INFO] cheese - inserting 1000 documents. first: National Library of São Tomé e Príncipe and last: Category:Disestablishments in South-West Africa by decade -[2018-02-13T00:45:57.212] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:45:57.255] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:45:57.266] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:45:57.364] [INFO] cheese - inserting 1000 documents. first: Institute for Community Studies and last: Alive Magazine -[2018-02-13T00:45:57.411] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:45:57.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ANMU and last: Category:Chinese Sanskrit scholars -[2018-02-13T00:45:57.537] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T00:45:57.650] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian expatriates in Belarus and last: Leptura plagifera -[2018-02-13T00:45:57.714] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:45:57.790] [INFO] cheese - inserting 1000 documents. first: Category:Expatriates in Jamaica and last: Griffing Park, Port Arthur, Texas -[2018-02-13T00:45:57.853] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:45:57.872] [INFO] cheese - inserting 1000 documents. first: East Stroudsburg station (Pennsylvania) and last: Category:Association football in County Londonderry -[2018-02-13T00:45:57.911] [INFO] cheese - inserting 1000 documents. first: Natural satellites in fiction and last: File:Bus (electronics).svg -[2018-02-13T00:45:57.913] [INFO] cheese - inserting 1000 documents. first: CJFO-FM and last: Gulumbu Yunupingu -[2018-02-13T00:45:57.913] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:45:57.942] [INFO] cheese - inserting 1000 documents. first: Portal:Kilkenny/Selected biography/15 and last: Lee Valley Regional Park -[2018-02-13T00:45:57.968] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T00:45:58.007] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T00:45:58.013] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:45:58.248] [INFO] cheese - inserting 1000 documents. first: Draft:James Pearson and last: Category:1938 in Australian women's sport -[2018-02-13T00:45:58.255] [INFO] cheese - inserting 1000 documents. first: Long Island (New York) and last: Frank Cecil Eve -[2018-02-13T00:45:58.282] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:45:58.331] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:45:58.341] [INFO] cheese - inserting 1000 documents. first: Griffing Park, Texas and last: Marsha Milan Londoh -[2018-02-13T00:45:58.379] [INFO] cheese - inserting 1000 documents. first: Lille Stesichorus and last: National Clinical Guideline Centre -[2018-02-13T00:45:58.403] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:45:58.407] [INFO] cheese - inserting 1000 documents. first: KVCE and last: Category:Banks of Ghana -[2018-02-13T00:45:58.453] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:45:58.463] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:45:58.466] [INFO] cheese - inserting 1000 documents. first: Template:User nci-5 and last: File:Smallville-Brent Stait as Doctor Fate.jpg -[2018-02-13T00:45:58.520] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:45:58.626] [INFO] cheese - inserting 1000 documents. first: Anglican Bishop of the Western Region of Sydney and last: Wikipedia:KCL -[2018-02-13T00:45:58.665] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:45:58.775] [INFO] cheese - inserting 1000 documents. first: Galliano Masini and last: Allen Township, Jewell County, Kansas -[2018-02-13T00:45:58.796] [INFO] cheese - inserting 1000 documents. first: Category:Plays set in Texas and last: 96th Division (disambiguation) -[2018-02-13T00:45:58.818] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:45:58.858] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:45:58.877] [INFO] cheese - inserting 1000 documents. first: Heat Latin Music Awards and last: Template:Taxonomy/Harttia -[2018-02-13T00:45:58.894] [INFO] cheese - inserting 1000 documents. first: Category:Banks of Guinea and last: Fundus of uterus -[2018-02-13T00:45:58.909] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:45:58.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured list/April 9, 2012 and last: Kawase (surname) -[2018-02-13T00:45:58.982] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:45:59.025] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:45:59.210] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Harttiella and last: Dryburgh (Dundee district) -[2018-02-13T00:45:59.256] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:45:59.372] [INFO] cheese - inserting 1000 documents. first: Notable cemeteries and last: Category:People by educational institution in Greece -[2018-02-13T00:45:59.409] [INFO] cheese - inserting 1000 documents. first: Little Bay Island and last: Category:Canadian expatriates in Paraguay -[2018-02-13T00:45:59.434] [INFO] cheese - inserting 1000 documents. first: Il Consigliori and last: U.S. Route 220 Alternate (Biscoe, North Carolina) -[2018-02-13T00:45:59.491] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:45:59.491] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:45:59.494] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T00:45:59.495] [INFO] cheese - inserting 1000 documents. first: Margaret Sutherland and last: Bill vicenzino -[2018-02-13T00:45:59.539] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:45:59.578] [INFO] cheese - inserting 1000 documents. first: File:Bad Boys Blue (album).jpg and last: Niethammeriodes diremptella -[2018-02-13T00:45:59.619] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:45:59.644] [INFO] cheese - inserting 1000 documents. first: Category:Conference USA women's soccer seasons and last: Template:ISO 639 name crk-Cans -[2018-02-13T00:45:59.692] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:45:59.840] [INFO] cheese - inserting 1000 documents. first: Hoop crown and last: S. uliginosa -[2018-02-13T00:45:59.881] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:45:59.895] [INFO] cheese - inserting 1000 documents. first: Fenton, Mich. and last: Gorgeous Barb -[2018-02-13T00:45:59.906] [INFO] cheese - inserting 1000 documents. first: Troilus and criseyde and last: Lámpeia, Greece -[2018-02-13T00:45:59.943] [INFO] cheese - inserting 1000 documents. first: Category:Expatriates in Paraguay and last: Category:2009 in Belize -[2018-02-13T00:45:59.945] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:45:59.949] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:46:00.026] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:46:00.054] [INFO] cheese - inserting 1000 documents. first: Ancylosis diremptella and last: MLS All-Star 2010 -[2018-02-13T00:46:00.098] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:46:00.145] [INFO] cheese - inserting 1000 documents. first: Template:WP Cambodia and last: Arthur Woodward (footballer) -[2018-02-13T00:46:00.224] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:46:00.306] [INFO] cheese - inserting 1000 documents. first: List of nautiloid genera and last: Fine Guidance Sensor (HST) -[2018-02-13T00:46:00.310] [INFO] cheese - inserting 1000 documents. first: Nilgiris Barb and last: NGC 6560 -[2018-02-13T00:46:00.348] [INFO] cheese - inserting 1000 documents. first: Lámpeia and last: File:MelbLGA-MorningtonPeninsula.gif -[2018-02-13T00:46:00.357] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:46:00.360] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:00.392] [INFO] cheese - inserting 1000 documents. first: William II of Nevers and last: Grill Me -[2018-02-13T00:46:00.409] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:00.451] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:46:00.599] [INFO] cheese - inserting 1000 documents. first: Miniyeh and last: Turbonilla dakoi -[2018-02-13T00:46:00.695] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:46:00.713] [INFO] cheese - inserting 1000 documents. first: Neoregelia 'Zeus' and last: Fibrous fracture -[2018-02-13T00:46:00.783] [INFO] cheese - inserting 1000 documents. first: Kalem railway station and last: Category:February 2015 events in Africa -[2018-02-13T00:46:00.828] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:46:00.840] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:46:00.964] [INFO] cheese - inserting 1000 documents. first: File:1950Nobel.JPG and last: Shōko Kikuchi -[2018-02-13T00:46:00.969] [INFO] cheese - inserting 1000 documents. first: St. Louis Trotters and last: Calamotropha argyrostola -[2018-02-13T00:46:01.004] [INFO] cheese - inserting 1000 documents. first: File:MelbLGA-Nillumbik.gif and last: FC Krymteplytsia Molodizhne -[2018-02-13T00:46:01.016] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:46:01.032] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:46:01.055] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:46:01.210] [INFO] cheese - inserting 1000 documents. first: Turbonilla dalli and last: Smoky Honeyeater (disambiguation) -[2018-02-13T00:46:01.263] [INFO] cheese - inserting 1000 documents. first: Final boiling point and last: ZPHS Dongala Dharmaram -[2018-02-13T00:46:01.286] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:46:01.290] [INFO] cheese - inserting 1000 documents. first: Category:2003 in women's curling and last: Category:Vincent van Gogh scholars -[2018-02-13T00:46:01.345] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:46:01.410] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:46:01.581] [INFO] cheese - inserting 1000 documents. first: Crambus argyrostola and last: Easley, Iowa -[2018-02-13T00:46:01.585] [INFO] cheese - inserting 1000 documents. first: Banjo-Kazooie360 and last: Template:1911 Essendon premiership players -[2018-02-13T00:46:01.621] [INFO] cheese - inserting 1000 documents. first: Ashino-Koen Station and last: David Goodway -[2018-02-13T00:46:01.631] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:46:01.665] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:46:01.744] [INFO] cheese - inserting 1000 documents. first: Claudio Corti (disambiguation) and last: Hosn Banu Ghazanfar -[2018-02-13T00:46:01.753] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:46:01.828] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:46:01.872] [INFO] cheese - inserting 1000 documents. first: Doodle 4 Google and last: Sarao -[2018-02-13T00:46:01.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2017 February 23 and last: Template:Sí Se Puede Llucmajor/meta/color -[2018-02-13T00:46:01.951] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:46:01.973] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:46:02.212] [INFO] cheese - inserting 1000 documents. first: Tessaiga and last: Dead Kennedeys -[2018-02-13T00:46:02.272] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:46:02.288] [INFO] cheese - inserting 1000 documents. first: LGBT history in Michigan and last: HMAS St Giles -[2018-02-13T00:46:02.332] [INFO] cheese - inserting 1000 documents. first: 1987 Mediterranean Games and last: Day of remembrance -[2018-02-13T00:46:02.349] [INFO] cheese - inserting 1000 documents. first: Vriesea sanctae-crucis and last: Template:Attached KML/Virginia State Route 259 -[2018-02-13T00:46:02.359] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:46:02.366] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Matt Sorum and last: Template:Goseiger -[2018-02-13T00:46:02.398] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:46:02.454] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:46:02.469] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:46:02.498] [INFO] cheese - inserting 1000 documents. first: Camelot/3000 and last: Westbury (Salop) railway station -[2018-02-13T00:46:02.558] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:46:02.789] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tim Ahern and last: Russ Ochsenhirt -[2018-02-13T00:46:02.808] [INFO] cheese - inserting 1000 documents. first: Syrian Red Crescent and last: Wilsie, West Virginia -[2018-02-13T00:46:02.833] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:02.882] [INFO] cheese - inserting 1000 documents. first: Irvin S. Yeaworth and last: F.U. -[2018-02-13T00:46:02.900] [INFO] cheese - inserting 1000 documents. first: Flavocrambus striatellus and last: Category:1976 establishments in the Kazakh Soviet Socialist Republic -[2018-02-13T00:46:02.899] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:46:02.934] [INFO] cheese - inserting 1000 documents. first: Alto Rio Negro Indigenous Territory and last: Susan Narduli -[2018-02-13T00:46:02.949] [INFO] cheese - inserting 1000 documents. first: Snowboarding at the 2002 Winter Olympics – Women's halfpipe and last: ENEV -[2018-02-13T00:46:02.995] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:46:03.003] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:46:03.021] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:46:03.079] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:46:03.416] [INFO] cheese - inserting 1000 documents. first: Central offfice code and last: Santo Pecora -[2018-02-13T00:46:03.443] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/dilovely.com and last: 2si 460F-45 -[2018-02-13T00:46:03.500] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:46:03.555] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:46:03.602] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/U.S. Route 136 in Illinois and last: Wikipedia:Articles for deletion/Flying Horse -[2018-02-13T00:46:03.602] [INFO] cheese - inserting 1000 documents. first: List of select Jewish baseball players and last: 2016 World Outdoor Bowls Championship - Women's Pairs -[2018-02-13T00:46:03.611] [INFO] cheese - inserting 1000 documents. first: ENHK and last: Category:Political movements in Indonesia -[2018-02-13T00:46:03.643] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:03.700] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:03.706] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:46:03.709] [INFO] cheese - inserting 1000 documents. first: FabricLive.29 and last: Andrej Šali -[2018-02-13T00:46:03.784] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T00:46:04.079] [INFO] cheese - inserting 1000 documents. first: 2016 World Outdoor Bowls Championship - Men's Fours and last: Wikipedia:WikiProject Spam/LinkReports/njgladiatorsoccer.com -[2018-02-13T00:46:04.108] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:46:04.147] [INFO] cheese - inserting 1000 documents. first: Category:Publications disestablished in 1929 and last: Fântâneaua Rece River -[2018-02-13T00:46:04.197] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Iran and last: C14H21N3O3 -[2018-02-13T00:46:04.199] [INFO] cheese - inserting 1000 documents. first: Kamaleswarar Temple and last: Transvaal presidential election, 1888 -[2018-02-13T00:46:04.213] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:46:04.244] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:04.289] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:46:04.304] [INFO] cheese - inserting 1000 documents. first: Don Camillo's Last Round and last: Let Yourself be Loved -[2018-02-13T00:46:04.354] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:46:04.393] [INFO] cheese - inserting 1000 documents. first: Category:1481 events and last: Category:Lists of Bangladesh cricket records and statistics -[2018-02-13T00:46:04.401] [INFO] cheese - inserting 1000 documents. first: Elaine Murphy and last: George Bridgeman -[2018-02-13T00:46:04.415] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:46:04.460] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:04.589] [INFO] cheese - inserting 1000 documents. first: Charles Molyneux, 5th Earl of Sefton and last: Vegetarianism in Hinduism -[2018-02-13T00:46:04.634] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:46:04.639] [INFO] cheese - inserting 1000 documents. first: Category:1888 elections in Africa and last: File:The Miracle (1991 film).jpg -[2018-02-13T00:46:04.666] [INFO] cheese - inserting 1000 documents. first: 82nd Airbourne Division (United States) and last: Wikipedia:Expert review/coordinators/access -[2018-02-13T00:46:04.679] [INFO] cheese - inserting 1000 documents. first: Bettina von Zwehl and last: Parc del Fòrum -[2018-02-13T00:46:04.701] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:46:04.722] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T00:46:04.742] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:46:04.788] [INFO] cheese - inserting 1000 documents. first: Zaïre virus strain Mayinga and last: Czar tank -[2018-02-13T00:46:04.846] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:46:04.974] [INFO] cheese - inserting 1000 documents. first: Fransson and last: Spodnja Idrija, Slovenia -[2018-02-13T00:46:05.012] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:46:05.047] [INFO] cheese - inserting 1000 documents. first: Valongo Municipality and last: Golgen -[2018-02-13T00:46:05.072] [INFO] cheese - inserting 1000 documents. first: Lori and Reba Schappell and last: Lights Out Puzzle -[2018-02-13T00:46:05.086] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:46:05.122] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:46:05.193] [INFO] cheese - inserting 1000 documents. first: File:Seongnam-Hanam Map.png and last: William Frederick Wyndham -[2018-02-13T00:46:05.196] [INFO] cheese - inserting 1000 documents. first: Czar Tank and last: Individual (disambiguation) -[2018-02-13T00:46:05.231] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:46:05.254] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:46:05.557] [INFO] cheese - inserting 1000 documents. first: Spodnje Hoče, Slovenia and last: Template:Did you know nominations/Teacher I Need You -[2018-02-13T00:46:05.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Braveheart5050 and last: Wikipedia:WikiProject Spam/LinkReports/udr-music.com -[2018-02-13T00:46:05.669] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:46:05.698] [INFO] cheese - inserting 1000 documents. first: Tomislav Dujmović and last: Category:1982 in judo -[2018-02-13T00:46:05.728] [INFO] cheese - inserting 1000 documents. first: Portal:The Legend of Zelda/Zelda topics and last: Wikipedia:Articles for deletion/Daheshism -[2018-02-13T00:46:05.760] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:46:05.773] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:46:05.793] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:46:05.857] [INFO] cheese - inserting 1000 documents. first: Europe asia land bridge and last: File:Double vision Strindberg.jpg -[2018-02-13T00:46:05.896] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:46:06.232] [INFO] cheese - inserting 1000 documents. first: I. B. Rai Dharmawijaya Mantra and last: Tropical Storm Winona (1985) -[2018-02-13T00:46:06.254] [INFO] cheese - inserting 1000 documents. first: Roger Dodger (disambiguation) and last: Inez (singer) -[2018-02-13T00:46:06.271] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:46:06.287] [INFO] cheese - inserting 1000 documents. first: María Rosa Leggol and last: Category:French women scientists -[2018-02-13T00:46:06.315] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:46:06.334] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:46:06.397] [INFO] cheese - inserting 1000 documents. first: Viva Festival and last: Abdul Jalil Shah I -[2018-02-13T00:46:06.410] [INFO] cheese - inserting 1000 documents. first: WD Velociraptor and last: Category:Kannada grammar -[2018-02-13T00:46:06.433] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:46:06.468] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:46:06.716] [INFO] cheese - inserting 1000 documents. first: Typhoon Winona (1990) and last: Mary Travis Arny -[2018-02-13T00:46:06.718] [INFO] cheese - inserting 1000 documents. first: Jaime Gomez (golfer) and last: Category:Bada games -[2018-02-13T00:46:06.761] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:46:06.762] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:46:06.791] [INFO] cheese - inserting 1000 documents. first: Livatica and last: Yoko Shibui -[2018-02-13T00:46:06.810] [INFO] cheese - inserting 1000 documents. first: Adam Michael Richard Sopp and last: Golden Mouse (rodent) -[2018-02-13T00:46:06.838] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:06.848] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:06.967] [INFO] cheese - inserting 1000 documents. first: KTED and last: Meltdown (film) -[2018-02-13T00:46:07.012] [INFO] cheese - inserting 1000 documents. first: File:Naan Kanda Sorgam.jpg and last: Northern California Athletic Conference football champion seasons -[2018-02-13T00:46:07.029] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:07.129] [INFO] cheese - batch complete in: 2.713 secs -[2018-02-13T00:46:07.159] [INFO] cheese - inserting 1000 documents. first: Category:1959 in the Republic of Dahomey and last: Template:Clist fiduciary loyalty -[2018-02-13T00:46:07.196] [INFO] cheese - inserting 1000 documents. first: File:ShriekDoppel.jpg and last: Category:European Formula 5000 Championship -[2018-02-13T00:46:07.205] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:46:07.230] [INFO] cheese - inserting 1000 documents. first: Ghafoor Ahmed and last: Louis of France (1751–1761) -[2018-02-13T00:46:07.243] [INFO] cheese - inserting 1000 documents. first: Template:Ryazan Oblast and last: FCE USA -[2018-02-13T00:46:07.341] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:46:07.372] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:46:07.400] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:46:07.612] [INFO] cheese - inserting 1000 documents. first: Ballplayers House, Central Park and last: Category:Chinese investors -[2018-02-13T00:46:07.719] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:46:07.726] [INFO] cheese - inserting 1000 documents. first: Category:Luxembourgers of French descent and last: Hallstatt D -[2018-02-13T00:46:07.807] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T00:46:07.900] [INFO] cheese - inserting 1000 documents. first: Francisco Portillo (footballer, born 1990) and last: Category:Jahangirnagar University faculty -[2018-02-13T00:46:07.900] [INFO] cheese - inserting 1000 documents. first: Maiwa language and last: List of castles in Lower Saxony -[2018-02-13T00:46:07.928] [INFO] cheese - inserting 1000 documents. first: Prentragk Stogiakovits and last: CA (state) -[2018-02-13T00:46:07.941] [INFO] cheese - inserting 1000 documents. first: Galante (pedigree) and last: Wikipedia:Articles for deletion/The Game Of Drink -[2018-02-13T00:46:07.969] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T00:46:07.969] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:46:08.018] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:46:08.025] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T00:46:08.318] [INFO] cheese - inserting 1000 documents. first: Taiwan travel document and last: File:Dance Dance Revolution SuperNova 2 North American PlayStation 2 cover art.png -[2018-02-13T00:46:08.323] [INFO] cheese - inserting 1000 documents. first: Richard Saucedo and last: Template:Singular and plural/doc -[2018-02-13T00:46:08.417] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:08.429] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:08.488] [INFO] cheese - inserting 1000 documents. first: Tripartite Program and last: Fenner A. Chace Jr. -[2018-02-13T00:46:08.542] [INFO] cheese - inserting 1000 documents. first: Attila Menyhard and last: Werner Scholz (footballer born 1944) -[2018-02-13T00:46:08.563] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:46:08.568] [INFO] cheese - inserting 1000 documents. first: Hyangsan County and last: File:Ponte do Açude, Coimbra, Portugal.jpg -[2018-02-13T00:46:08.623] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:46:08.662] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:46:08.771] [INFO] cheese - inserting 1000 documents. first: Vegetative zone and last: The Iceman Cometh (1960 TV production) -[2018-02-13T00:46:08.834] [INFO] cheese - inserting 1000 documents. first: Category:Military installations established in the 21st century and last: Category:1942 establishments in Idaho -[2018-02-13T00:46:08.864] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T00:46:08.879] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:46:09.070] [INFO] cheese - inserting 1000 documents. first: Tom Schuman and last: Wikipedia:OI -[2018-02-13T00:46:09.084] [INFO] cheese - inserting 1000 documents. first: Oita Heatdevils and last: Template:Grand Alliance for National Unity/meta/color -[2018-02-13T00:46:09.101] [INFO] cheese - inserting 1000 documents. first: Good as Gold! and last: Invasion of Hanover (1757) -[2018-02-13T00:46:09.121] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:46:09.130] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:46:09.140] [INFO] cheese - inserting 1000 documents. first: Ultraman monsters and last: Boundary layer theory -[2018-02-13T00:46:09.149] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:46:09.197] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:46:09.293] [INFO] cheese - inserting 1000 documents. first: Hong Kong Film Award for Best Asian Film and last: Nieuport-Delage NiD 942 -[2018-02-13T00:46:09.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oleg Stepanov (polymath) and last: Futurology (Song) -[2018-02-13T00:46:09.340] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:46:09.387] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:09.505] [INFO] cheese - inserting 1000 documents. first: Joseph Graves Olney alias "Joe Hill" and last: Phigalia revocata -[2018-02-13T00:46:09.550] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:46:09.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/epiccrafts.co.uk and last: Francisco Azorín Izquierdo -[2018-02-13T00:46:09.644] [INFO] cheese - inserting 1000 documents. first: KJIT-LP and last: Category:Mayors of Hillsboro, Oregon -[2018-02-13T00:46:09.664] [INFO] cheese - inserting 1000 documents. first: Basilica of Our Lady of the Martyrs, Lisboa and last: Draft:Lorna McDonald (Australian historian) -[2018-02-13T00:46:09.697] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:46:09.712] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:46:09.723] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:46:09.742] [INFO] cheese - inserting 1000 documents. first: Nasseridine Kraouche and last: File:Rocket from the Crypt - Group Sounds cover.jpg -[2018-02-13T00:46:09.820] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:46:09.857] [INFO] cheese - inserting 1000 documents. first: Tenali (disambiguation) and last: Marineamt -[2018-02-13T00:46:09.894] [INFO] cheese - inserting 1000 documents. first: Seller's Wood and last: Portal:Liberalism/Categories -[2018-02-13T00:46:09.918] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:46:09.947] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:46:10.143] [INFO] cheese - inserting 1000 documents. first: Hongling Middle School and last: Beverly Davenport -[2018-02-13T00:46:10.185] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:46:10.247] [INFO] cheese - inserting 1000 documents. first: Wilhelm Kinsky and last: Beloholunickiy -[2018-02-13T00:46:10.327] [INFO] cheese - inserting 1000 documents. first: Dio Padre misericordioso and last: Philip Leverhulme Equine Hospital -[2018-02-13T00:46:10.344] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:46:10.379] [INFO] cheese - inserting 1000 documents. first: Template:CIAPrisons and last: United Kingdom agency worker law -[2018-02-13T00:46:10.416] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:46:10.481] [INFO] cheese - inserting 1000 documents. first: La godiva and last: Wikipedia:Articles for deletion/Kevin Clarke (politician) -[2018-02-13T00:46:10.490] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:46:10.552] [INFO] cheese - inserting 1000 documents. first: Federal Intermediate Credit Bank and last: Tiwi, Kenya -[2018-02-13T00:46:10.569] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:46:10.650] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:46:10.808] [INFO] cheese - inserting 1000 documents. first: Wee Dot and last: Santo Antão Island League (North) -[2018-02-13T00:46:10.871] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:46:10.904] [INFO] cheese - inserting 1000 documents. first: Category:JMT Records albums and last: Highway 133 (Wisconsin) -[2018-02-13T00:46:10.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/circlecityalarm.com and last: Whatcom Chief -[2018-02-13T00:46:10.959] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:10.965] [INFO] cheese - inserting 1000 documents. first: V.I.P. Road and last: History of language -[2018-02-13T00:46:10.982] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:46:11.054] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:11.059] [INFO] cheese - inserting 1000 documents. first: Polar Tower II and last: File:TheSearch2014.jpg -[2018-02-13T00:46:11.122] [INFO] cheese - inserting 1000 documents. first: Xu Mengtao and last: File:ThomasAHendricks.png -[2018-02-13T00:46:11.135] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:46:11.234] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:46:11.380] [INFO] cheese - inserting 1000 documents. first: Santo Antao North Premier Division and last: Dusen's nymph -[2018-02-13T00:46:11.419] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:46:11.500] [INFO] cheese - inserting 1000 documents. first: Category:People from Whakatane and last: Jorge Luis Clavelo -[2018-02-13T00:46:11.509] [INFO] cheese - inserting 1000 documents. first: AA Command and last: Indonesian Ulemas Council -[2018-02-13T00:46:11.519] [INFO] cheese - inserting 1000 documents. first: Highway 134 (Wisconsin) and last: Wikipedia:AIRLINE -[2018-02-13T00:46:11.545] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:46:11.559] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:46:11.603] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:46:11.613] [INFO] cheese - inserting 1000 documents. first: Crambus peralbellus and last: A&P Catholic -[2018-02-13T00:46:11.652] [INFO] cheese - inserting 1000 documents. first: Surgical device and last: United Nations Security Council Resolution 684 -[2018-02-13T00:46:11.660] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:46:11.710] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:46:11.799] [INFO] cheese - inserting 1000 documents. first: Final Cut (band) and last: Category:Suspected Wikipedia sockpuppets of OhioLeda -[2018-02-13T00:46:11.839] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:46:11.920] [INFO] cheese - inserting 1000 documents. first: Episode in the Early Life of Privy Councillor D. and last: Lawrence Memorial Library -[2018-02-13T00:46:11.961] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:11.982] [INFO] cheese - inserting 1000 documents. first: The Lightning Process and last: Face paints -[2018-02-13T00:46:12.031] [INFO] cheese - inserting 1000 documents. first: Wiregrass Ranch High School and last: Leatherer -[2018-02-13T00:46:12.031] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:46:12.118] [INFO] cheese - inserting 1000 documents. first: List of mayors of Huntington, West Virginia and last: Hugo Oberstein -[2018-02-13T00:46:12.124] [INFO] cheese - inserting 1000 documents. first: PACE Catholic and last: Wikipedia:Articles for deletion/Janet Emerson Bashen -[2018-02-13T00:46:12.135] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:46:12.146] [INFO] cheese - inserting 1000 documents. first: Plebeius orbitulus and last: Wikipedia:WikiProject Spam/LinkReports/harboroughfm.webs.com -[2018-02-13T00:46:12.171] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:46:12.193] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:12.202] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:46:12.317] [INFO] cheese - inserting 1000 documents. first: Face painted and last: File:BrandySnaps.jpg -[2018-02-13T00:46:12.349] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:46:12.522] [INFO] cheese - inserting 1000 documents. first: Cafunfo Airport and last: Template:2008 Summer Olympics Australia women's field hockey team roster -[2018-02-13T00:46:12.557] [INFO] cheese - inserting 1000 documents. first: Arachnorchis procera and last: Phoenix Forgotten -[2018-02-13T00:46:12.640] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:46:12.683] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T00:46:12.686] [INFO] cheese - inserting 1000 documents. first: 2010 in athletics (track and field) and last: Kurt Heissmeyer -[2018-02-13T00:46:12.694] [INFO] cheese - inserting 1000 documents. first: Category:Flora of Querétaro and last: Self discipline -[2018-02-13T00:46:12.700] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Jeff Davis County, Georgia and last: Lesional demyelinations of the CNS -[2018-02-13T00:46:12.746] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:12.758] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:12.740] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:46:12.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2008-04-25 Attachment theory and last: BU Castle -[2018-02-13T00:46:12.983] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T00:46:13.211] [INFO] cheese - inserting 1000 documents. first: File:Delia Weber.jpg and last: Category:1997–98 Midwestern Collegiate Conference men's basketball season -[2018-02-13T00:46:13.231] [INFO] cheese - inserting 1000 documents. first: Dawsons fingers and last: Holochlamys ornata -[2018-02-13T00:46:13.253] [INFO] cheese - inserting 1000 documents. first: House of Deréon and last: Trench map -[2018-02-13T00:46:13.250] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:46:13.266] [INFO] cheese - inserting 1000 documents. first: Georg Klaus and last: Ravenswood School, Keston, Bromley -[2018-02-13T00:46:13.273] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:46:13.299] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:46:13.315] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:46:13.330] [INFO] cheese - inserting 1000 documents. first: Template:Infobox language/family-color/sandbox and last: Category:Politics of Southern Rhodesia before 1923 -[2018-02-13T00:46:13.403] [INFO] cheese - inserting 1000 documents. first: Chelonodon and last: Elliott's blueberry -[2018-02-13T00:46:13.417] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:46:13.449] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:46:13.682] [INFO] cheese - inserting 1000 documents. first: B roads in Zimbabwe and last: Psychoanalysis and religion -[2018-02-13T00:46:13.693] [INFO] cheese - inserting 1000 documents. first: Category:1999–2000 Midwestern Collegiate Conference men's basketball season and last: Academician of the Academy of the Social Science -[2018-02-13T00:46:13.742] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:46:13.783] [INFO] cheese - inserting 1000 documents. first: International Radon Project and last: Morning Bugle -[2018-02-13T00:46:13.795] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:13.884] [INFO] cheese - inserting 1000 documents. first: Fuka Angel and last: Rulers of Travancore -[2018-02-13T00:46:13.885] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:46:13.898] [INFO] cheese - inserting 1000 documents. first: Department of State Services and last: Joonas Korpisalo -[2018-02-13T00:46:13.947] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:46:13.949] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:14.003] [INFO] cheese - inserting 1000 documents. first: Aqua Kids (TV series) and last: O’Connell Consolidated High School -[2018-02-13T00:46:14.065] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:46:14.071] [INFO] cheese - inserting 1000 documents. first: Category:Lebanese Basketball League and last: Ζ Leonis -[2018-02-13T00:46:14.114] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:46:14.153] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space Dreams and last: Family tree of Vietnamese monarchs -[2018-02-13T00:46:14.189] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:46:14.252] [INFO] cheese - inserting 1000 documents. first: Brinkhaven, Ohio and last: Francois-Auguste Parseval-Grandmaison -[2018-02-13T00:46:14.353] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:46:14.520] [INFO] cheese - inserting 1000 documents. first: Museum Leverianum and last: Karaurus sharovi -[2018-02-13T00:46:14.595] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Sumatro and last: Crop (hair) -[2018-02-13T00:46:14.595] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:46:14.636] [INFO] cheese - inserting 1000 documents. first: Ζ Leo and last: HCoV-OC43 -[2018-02-13T00:46:14.675] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:46:14.691] [INFO] cheese - inserting 1000 documents. first: Category:Version 1.0 articles by importance and last: Live in Gdańsk -[2018-02-13T00:46:14.704] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:46:14.756] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:46:14.903] [INFO] cheese - inserting 1000 documents. first: Felix Arvers and last: Maudheim medal -[2018-02-13T00:46:14.904] [INFO] cheese - inserting 1000 documents. first: Coppa Italia (Futsal) and last: Muntadhar al-Zaidi shoe incident -[2018-02-13T00:46:14.953] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:46:14.982] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T00:46:15.059] [INFO] cheese - inserting 1000 documents. first: Weymer's glider and last: Draft:Johannes Susen -[2018-02-13T00:46:15.066] [INFO] cheese - inserting 1000 documents. first: Anna Pratt Romney and last: Muir Mackenzie -[2018-02-13T00:46:15.117] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:46:15.160] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:46:15.192] [INFO] cheese - inserting 1000 documents. first: Cropped hair and last: Hasamdia massacre -[2018-02-13T00:46:15.198] [INFO] cheese - inserting 1000 documents. first: Moravia-Silesia football league and last: Drops Out -[2018-02-13T00:46:15.249] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:46:15.253] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:15.359] [INFO] cheese - inserting 1000 documents. first: Category:Olympic biathletes of China and last: Wikipedia:The final word -[2018-02-13T00:46:15.396] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:46:15.407] [INFO] cheese - inserting 1000 documents. first: Soshi-kaimei and last: PerkinElmer, Inc. -[2018-02-13T00:46:15.492] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:46:15.511] [INFO] cheese - inserting 1000 documents. first: Stefanija Statkuviené and last: Rainham War Memorial -[2018-02-13T00:46:15.531] [INFO] cheese - inserting 1000 documents. first: Ángel Scull and last: Vinay Jha -[2018-02-13T00:46:15.607] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:46:15.609] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:46:15.683] [INFO] cheese - inserting 1000 documents. first: Crowdfunded satellites and last: Klaus von Dambrowski -[2018-02-13T00:46:15.735] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:46:15.764] [INFO] cheese - inserting 1000 documents. first: Template:Love County, Oklahoma and last: Jurriaen Aernoutsz -[2018-02-13T00:46:15.828] [INFO] cheese - inserting 1000 documents. first: Nevena Ignjatović and last: Template:NRHP in Montgomery County, Alabama -[2018-02-13T00:46:15.837] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:46:15.893] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:46:15.900] [INFO] cheese - inserting 1000 documents. first: Hexamethyldisilathiane and last: File:Lgworkshop1.jpg -[2018-02-13T00:46:15.956] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:46:16.074] [INFO] cheese - inserting 1000 documents. first: List of converts to Hinduism from Buddhism and last: Wikipedia:Peer review/Algoman orogeny/archive1 -[2018-02-13T00:46:16.099] [INFO] cheese - inserting 1000 documents. first: Sanda lighthouse and last: Category:Automotive companies of Russia -[2018-02-13T00:46:16.132] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:16.140] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:16.235] [INFO] cheese - inserting 1000 documents. first: Tony Ferguson (skateboarder) and last: Math symbol parentheses -[2018-02-13T00:46:16.330] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:46:16.377] [INFO] cheese - inserting 1000 documents. first: Tungting and last: Armand-Emmanuel du Plessis, Duc de Richelieu -[2018-02-13T00:46:16.417] [INFO] cheese - inserting 1000 documents. first: Staff Benda Bilili and last: 103d Fighter Squadron -[2018-02-13T00:46:16.439] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:46:16.505] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:46:16.515] [INFO] cheese - inserting 1000 documents. first: Dobričevo and last: Robert Alfred McCall -[2018-02-13T00:46:16.603] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:46:16.699] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Warren County, Ohio and last: Winfred Jacobs -[2018-02-13T00:46:16.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2017-06-09/Technology report and last: File:Screenshot of Main window f4analyse 2.0.png -[2018-02-13T00:46:16.722] [INFO] cheese - inserting 1000 documents. first: Cyber Trance presents ELT Trance and last: Encyclopædia Britannica website -[2018-02-13T00:46:16.745] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:16.800] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T00:46:16.822] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:46:17.017] [INFO] cheese - inserting 1000 documents. first: Hurricane Madeline (1998) and last: Union Nacional de Ciudadanos Eticos -[2018-02-13T00:46:17.027] [INFO] cheese - inserting 1000 documents. first: File:LabourListCrop.png and last: Stark Raving Mad (1983 film) -[2018-02-13T00:46:17.108] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:46:17.116] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:17.133] [INFO] cheese - inserting 1000 documents. first: Adam Rachel and last: Vera Glass -[2018-02-13T00:46:17.233] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:17.312] [INFO] cheese - inserting 1000 documents. first: Khan Doun Penh and last: Downton Creek (Chilcotin Plateau) -[2018-02-13T00:46:17.337] [INFO] cheese - inserting 1000 documents. first: Encyclopædia Britannica web site and last: Crambus tolli -[2018-02-13T00:46:17.368] [INFO] cheese - inserting 1000 documents. first: Chinese Ambassadors to Latvia and last: Tino Schwierzina -[2018-02-13T00:46:17.371] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:46:17.399] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:46:17.483] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:46:17.680] [INFO] cheese - inserting 1000 documents. first: 91st Strategic Reconnaissance Group and last: Alfredo G. Duran -[2018-02-13T00:46:17.686] [INFO] cheese - inserting 1000 documents. first: Springerichthys and last: Deane (Bolton) -[2018-02-13T00:46:17.715] [INFO] cheese - inserting 1000 documents. first: Movimiento Patria Querida and last: Vilavila District -[2018-02-13T00:46:17.728] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:17.729] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:46:17.771] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:46:17.810] [INFO] cheese - inserting 1000 documents. first: Timothy Bozon and last: Youa -[2018-02-13T00:46:17.859] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:17.866] [INFO] cheese - inserting 1000 documents. first: Ampeg SVT-Pro and last: Template:Did you know nominations/George W. Hooker -[2018-02-13T00:46:17.880] [INFO] cheese - inserting 1000 documents. first: Jock Henderson (footballer born 1871) and last: Esther Timberlake -[2018-02-13T00:46:17.927] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:46:17.936] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:46:18.113] [INFO] cheese - inserting 1000 documents. first: File:Chief Red Eagle grave site.JPG and last: Faellanden -[2018-02-13T00:46:18.143] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:46:18.168] [INFO] cheese - inserting 1000 documents. first: Inhlawulo and last: File:Kiuasnewcd.jpg -[2018-02-13T00:46:18.212] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:46:18.241] [INFO] cheese - inserting 1000 documents. first: Tom Mason (Falling Skies) and last: File:Hola, ¿estas sola? (Hi, are you Alone?.jpg -[2018-02-13T00:46:18.247] [INFO] cheese - inserting 1000 documents. first: Ring (computer game) and last: Denardo Coleman -[2018-02-13T00:46:18.266] [INFO] cheese - inserting 1000 documents. first: Aujan Group and last: Sweetiopsis -[2018-02-13T00:46:18.273] [INFO] cheese - inserting 1000 documents. first: Lee Sun-Bai and last: Carmine bee-eater (disambiguation) -[2018-02-13T00:46:18.300] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:46:18.306] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T00:46:18.321] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:46:18.332] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:46:18.532] [INFO] cheese - inserting 1000 documents. first: Andy Meisner and last: Jackie Smyth -[2018-02-13T00:46:18.568] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:46:18.601] [INFO] cheese - inserting 1000 documents. first: Bowling Green-Perrysburg Road and last: Category:Andy LaVerne albums -[2018-02-13T00:46:18.640] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:46:18.651] [INFO] cheese - inserting 1000 documents. first: Speedy González and last: Sukanta Mahavidyalaya -[2018-02-13T00:46:18.687] [INFO] cheese - inserting 1000 documents. first: Ralph Ehrenbrink and last: Payena lancifolia -[2018-02-13T00:46:18.717] [INFO] cheese - inserting 1000 documents. first: Mary Walter Elementary and last: National Route 526 -[2018-02-13T00:46:18.722] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:46:18.788] [INFO] cheese - inserting 1000 documents. first: When My Baby Smiles at Me (film) and last: Members of the New South Wales Legislative Assembly, 1895–1898 -[2018-02-13T00:46:18.790] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:46:18.818] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:46:18.898] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:46:18.947] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Lofty Chiltern and last: Category:Ontario general election, 1937 results by riding -[2018-02-13T00:46:18.975] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:46:19.112] [INFO] cheese - inserting 1000 documents. first: Forsskaolea tenacissima and last: SR 824 -[2018-02-13T00:46:19.153] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:46:19.171] [INFO] cheese - inserting 1000 documents. first: Template:Gaelic games venues and last: Federal Research Division -[2018-02-13T00:46:19.234] [INFO] cheese - inserting 1000 documents. first: Bignonia umbellulata and last: Calamotropha aureliella -[2018-02-13T00:46:19.272] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:46:19.321] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:46:19.370] [INFO] cheese - inserting 1000 documents. first: Ecologist Alternative of Catalonia and last: Hartford Area Roller Derby -[2018-02-13T00:46:19.435] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:19.464] [INFO] cheese - inserting 1000 documents. first: The Throne Verse and last: Category:1972 NCAA University Division baseball standings templates -[2018-02-13T00:46:19.466] [INFO] cheese - inserting 1000 documents. first: Victorian Railways V class and last: Helen, West Virginia -[2018-02-13T00:46:19.524] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:46:19.592] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:46:19.685] [INFO] cheese - inserting 1000 documents. first: Category:Japanese expatriates in Brazil and last: Huangjin Airport -[2018-02-13T00:46:19.762] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:46:19.873] [INFO] cheese - inserting 1000 documents. first: Taiwanese identity and last: Wikipedia:HOC -[2018-02-13T00:46:19.962] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:46:19.985] [INFO] cheese - inserting 1000 documents. first: Category:Muğla Central District and last: Glacial Squid -[2018-02-13T00:46:20.039] [INFO] cheese - inserting 1000 documents. first: Spanish Agency for Quality Assessment and University Accreditation and last: Template:Taxonomy/Mioxena -[2018-02-13T00:46:20.075] [INFO] cheese - inserting 1000 documents. first: Category:1972 Pacific-8 Conference baseball season and last: XOXO Exo -[2018-02-13T00:46:20.083] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T00:46:20.117] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:46:20.191] [INFO] cheese - inserting 1000 documents. first: File:Thehubscreenshot.jpg and last: Wikipedia:DERM:A -[2018-02-13T00:46:20.195] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:46:20.249] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:46:20.372] [INFO] cheese - inserting 1000 documents. first: TG-11A and last: Merle Johnson -[2018-02-13T00:46:20.423] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:46:20.535] [INFO] cheese - inserting 1000 documents. first: Coastal Prairie and last: Jesus Chávez -[2018-02-13T00:46:20.583] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2017 March 6 and last: Wikipedia:WikiProject Spam/LinkReports/thelordscovenantchurch.org -[2018-02-13T00:46:20.590] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:46:20.641] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:46:20.651] [INFO] cheese - inserting 1000 documents. first: File:Flores de otro mundo film poster.jpg and last: San E -[2018-02-13T00:46:20.657] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Caldwell County, Texas and last: Template:Tlw -[2018-02-13T00:46:20.694] [INFO] cheese - inserting 1000 documents. first: Suhua Highway and last: 1904 Utah Utes football team -[2018-02-13T00:46:20.710] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:46:20.717] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:46:20.787] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:46:21.001] [INFO] cheese - inserting 1000 documents. first: Deer Hunter (computer game) and last: Jason L. Honigman -[2018-02-13T00:46:21.073] [INFO] cheese - inserting 1000 documents. first: Category:Indiana in the American Civil War and last: Portal:El Salvador/El Salvador topics -[2018-02-13T00:46:21.135] [INFO] cheese - inserting 1000 documents. first: Draft:Kitale Museum and last: State Route 73 (Virginia 1958) -[2018-02-13T00:46:21.138] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:46:21.197] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:46:21.202] [INFO] cheese - inserting 1000 documents. first: Category:History of Kosovo during Ottoman administration and last: Renzo Meynet -[2018-02-13T00:46:21.212] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:21.227] [INFO] cheese - inserting 1000 documents. first: Template:Test-mode notice/doc and last: Pazuzu (comics) -[2018-02-13T00:46:21.263] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:46:21.278] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thelordscovenantchurch.org and last: Flixthorpe -[2018-02-13T00:46:21.347] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:46:21.374] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:46:21.702] [INFO] cheese - inserting 1000 documents. first: SANAKO and last: Portal:El Salvador/News -[2018-02-13T00:46:21.759] [INFO] cheese - inserting 1000 documents. first: File:Marjorie Hillis 1937.jpg and last: Joe Pondelik -[2018-02-13T00:46:21.768] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:21.782] [INFO] cheese - inserting 1000 documents. first: Robert Flixthorpe and last: Critical Masses: Opposition to Nuclear Power in California, 1958-1978 -[2018-02-13T00:46:21.785] [INFO] cheese - inserting 1000 documents. first: Meynet and last: Muhammad Mahdi Salih -[2018-02-13T00:46:21.824] [INFO] cheese - inserting 1000 documents. first: Allusiveness and last: CITF Memorandum -[2018-02-13T00:46:21.850] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:46:21.854] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:46:21.865] [INFO] cheese - inserting 1000 documents. first: Annas Farmhouse and last: Nemzeti Bajnokság I 1931-32 -[2018-02-13T00:46:21.893] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:21.930] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T00:46:21.975] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:46:22.313] [INFO] cheese - inserting 1000 documents. first: Chrysoteuchia deltella and last: Sea mussels -[2018-02-13T00:46:22.347] [INFO] cheese - inserting 1000 documents. first: William Ruane (actor) and last: George Robinson (cricketer, born 1908) -[2018-02-13T00:46:22.377] [INFO] cheese - inserting 1000 documents. first: File:Parmaarms.gif and last: Christian Ernst II, Duke of Saxe-Coburg-Saalfeld -[2018-02-13T00:46:22.381] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:22.409] [INFO] cheese - inserting 1000 documents. first: Frank Lewis (wrestler) and last: Violent Machine -[2018-02-13T00:46:22.414] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:22.430] [INFO] cheese - inserting 1000 documents. first: Tal (singer) and last: Asus Transformer Infinity -[2018-02-13T00:46:22.484] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:46:22.495] [INFO] cheese - inserting 1000 documents. first: Bartlesville Examiner-Enterprise and last: François Xavier Préfontaine -[2018-02-13T00:46:22.503] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:46:22.527] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:46:22.592] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:46:22.932] [INFO] cheese - inserting 1000 documents. first: Elizabeth Ansbach and last: Battle of Berea -[2018-02-13T00:46:22.966] [INFO] cheese - inserting 1000 documents. first: Marine mussel and last: Category:Kookmin University -[2018-02-13T00:46:22.977] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:46:22.999] [INFO] cheese - inserting 1000 documents. first: Software development engineer and last: Patrick, 4th Earl of Dunbar -[2018-02-13T00:46:23.008] [INFO] cheese - inserting 1000 documents. first: Category:Surinamese socialists and last: Harry O. Downey -[2018-02-13T00:46:23.036] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:23.099] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:46:23.104] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:46:23.142] [INFO] cheese - inserting 1000 documents. first: ASUS Eee Pad Transformer infinity and last: Les Feuillants Abbey -[2018-02-13T00:46:23.179] [INFO] cheese - inserting 1000 documents. first: We Are The Physics and last: Veenendaal-Veenendaal -[2018-02-13T00:46:23.231] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:46:23.262] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:46:23.376] [INFO] cheese - inserting 1000 documents. first: Tavşan Island and last: Zerstörer Shrugged -[2018-02-13T00:46:23.426] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:46:23.628] [INFO] cheese - inserting 1000 documents. first: Computer sentience and last: Noah Buschel -[2018-02-13T00:46:23.669] [INFO] cheese - inserting 1000 documents. first: Jon Sandsmark and last: Adetus catemaco -[2018-02-13T00:46:23.719] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:46:23.729] [INFO] cheese - inserting 1000 documents. first: File:Lauryn Hill-Everything Is Everything.jpg and last: Forswears -[2018-02-13T00:46:23.732] [INFO] cheese - inserting 1000 documents. first: Melanoma Research and last: Alister Campbell (rugby union) -[2018-02-13T00:46:23.732] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:46:23.791] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:46:23.795] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:23.813] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian art historians and last: Western Australian Black head triplefin -[2018-02-13T00:46:23.883] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:46:23.961] [INFO] cheese - inserting 1000 documents. first: Increase (given name) and last: Summer nicks -[2018-02-13T00:46:24.020] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:46:24.306] [INFO] cheese - inserting 1000 documents. first: Adetus cecamirim and last: 2014 Hiroshima landslides -[2018-02-13T00:46:24.332] [INFO] cheese - inserting 1000 documents. first: Fokker F28-4000 and last: Hockey at the Olympics -[2018-02-13T00:46:24.332] [INFO] cheese - inserting 1000 documents. first: Demographic history of Novi Sad and last: Mezhdurechensky Raion -[2018-02-13T00:46:24.354] [INFO] cheese - inserting 1000 documents. first: Orce Nikolov and last: Ten Zen Men Project -[2018-02-13T00:46:24.357] [INFO] cheese - inserting 1000 documents. first: Western Australian black Head Triplefin and last: Bishoha -[2018-02-13T00:46:24.364] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:46:24.382] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:46:24.420] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:46:24.423] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T00:46:24.439] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:46:24.616] [INFO] cheese - inserting 1000 documents. first: Tyre of the Maronites and last: Category:Kindersley -[2018-02-13T00:46:24.664] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:46:24.783] [INFO] cheese - inserting 1000 documents. first: Kathleen Brinson and last: Hopf line bundle -[2018-02-13T00:46:24.811] [INFO] cheese - inserting 1000 documents. first: Ayşe Hatun (wife of Selim I) and last: Smt easwaramma english medium school -[2018-02-13T00:46:24.832] [INFO] cheese - inserting 1000 documents. first: Category:American legal drama films and last: Gem of Tanzania -[2018-02-13T00:46:24.835] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:24.859] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:46:24.877] [INFO] cheese - inserting 1000 documents. first: A Class Act and last: Lovey Dovey Stuff -[2018-02-13T00:46:24.903] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:46:24.932] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:46:24.971] [INFO] cheese - inserting 1000 documents. first: Catbox and last: File:Tree trunks by Great Sacandaga Lake (2008).jpg -[2018-02-13T00:46:25.031] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:46:25.070] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Andhra Pradesh articles of Top-importance and last: Category:Slovak emigrants to the Czech Republic -[2018-02-13T00:46:25.114] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:46:25.176] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Avilés and last: Alaguilac language -[2018-02-13T00:46:25.220] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:46:25.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/requests/2011 Lamar Hunt U.S. Open Cup Final and last: Tehelka Daily -[2018-02-13T00:46:25.285] [INFO] cheese - inserting 1000 documents. first: Constitution of Senegal and last: Matheson (compressed gas & equipment) -[2018-02-13T00:46:25.295] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:46:25.300] [INFO] cheese - inserting 1000 documents. first: Vigilanza and last: Dongnipgun -[2018-02-13T00:46:25.343] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:46:25.350] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:46:25.385] [INFO] cheese - inserting 1000 documents. first: Draft:PEN Oakland and last: Category:Security divisions of Germany during World War II -[2018-02-13T00:46:25.414] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:46:25.534] [INFO] cheese - inserting 1000 documents. first: The Experts (1989 film) and last: 2005 United States motorcycle Grand Prix -[2018-02-13T00:46:25.576] [INFO] cheese - inserting 1000 documents. first: 1994 Segunda División B play-offs and last: Chief of the Land Staff -[2018-02-13T00:46:25.607] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:46:25.651] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:46:25.714] [INFO] cheese - inserting 1000 documents. first: Delta Ship 41 and last: Georgia State Route 52 (1921-1937) -[2018-02-13T00:46:25.767] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:46:25.769] [INFO] cheese - inserting 1000 documents. first: Ollin Yoliztli Prize and last: The Sentry (painting) -[2018-02-13T00:46:25.842] [INFO] cheese - inserting 1000 documents. first: Mercuric (album) and last: Portuguese Electronic Passport -[2018-02-13T00:46:25.850] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:46:25.917] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:46:25.988] [INFO] cheese - inserting 1000 documents. first: Magdalena Pajala and last: File:Historical population of Wake island.png -[2018-02-13T00:46:26.051] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:46:26.147] [INFO] cheese - inserting 1000 documents. first: List of universities in the China and last: Pijanskiy District -[2018-02-13T00:46:26.336] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:46:26.345] [INFO] cheese - inserting 1000 documents. first: Y (Jaejoong EP) and last: EO 13780 -[2018-02-13T00:46:26.349] [INFO] cheese - inserting 1000 documents. first: Benzamil and last: Cygnet Rowing Club -[2018-02-13T00:46:26.426] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:46:26.443] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T00:46:26.626] [INFO] cheese - inserting 1000 documents. first: Team O'Grady and last: Ogden High School (disambiguation) -[2018-02-13T00:46:26.633] [INFO] cheese - inserting 1000 documents. first: Category:Wheelchair fencers at the 1988 Summer Paralympics and last: The Mentalist (TV series) -[2018-02-13T00:46:26.806] [INFO] cheese - inserting 1000 documents. first: Pijanski District and last: Die Roten -[2018-02-13T00:46:26.806] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T00:46:26.832] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:46:26.884] [INFO] cheese - inserting 1000 documents. first: Angel Camouflaged and last: Guide to style -[2018-02-13T00:46:26.996] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T00:46:27.012] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:46:27.366] [INFO] cheese - inserting 1000 documents. first: Clan Tweedy and last: Wikipedia:Articles for deletion/Yodasnews.com -[2018-02-13T00:46:27.380] [INFO] cheese - inserting 1000 documents. first: Chittatukara and last: Openness to experience -[2018-02-13T00:46:27.403] [INFO] cheese - inserting 1000 documents. first: Category:Games Workshop articles that need to differentiate between fact and fiction and last: John Day (cricketer, born 1881) -[2018-02-13T00:46:27.415] [INFO] cheese - inserting 1000 documents. first: Bethel Church (Redding California) and last: Template:S-line/RandstadRail right/4 -[2018-02-13T00:46:27.463] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T00:46:27.472] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:46:27.488] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T00:46:27.490] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:46:27.534] [INFO] cheese - inserting 1000 documents. first: Mark Pennington and last: Ulam, Adam -[2018-02-13T00:46:27.587] [INFO] cheese - inserting 1000 documents. first: Alice Tissot and last: Didier Dubois -[2018-02-13T00:46:27.608] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:46:27.673] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:46:27.937] [INFO] cheese - inserting 1000 documents. first: 2010 Asian Indoor Championships in Athletics and last: Tuskegee syphilis experiments -[2018-02-13T00:46:27.985] [INFO] cheese - inserting 1000 documents. first: File:LIBlogoRightsmr.jpg and last: Phillipa Finch -[2018-02-13T00:46:28.014] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:28.060] [INFO] cheese - inserting 1000 documents. first: Leon Stover and last: Schlatt b. Winterthur -[2018-02-13T00:46:28.099] [INFO] cheese - inserting 1000 documents. first: File:Triggermen.jpg and last: Iamgold Corp. -[2018-02-13T00:46:28.102] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:46:28.111] [INFO] cheese - inserting 1000 documents. first: Ross Clow and last: East of Ireland -[2018-02-13T00:46:28.139] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:46:28.250] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:46:28.613] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T00:46:29.149] [INFO] cheese - inserting 1000 documents. first: USS Caprice and last: The Devil and Sherlock Holmes: Tales of Murder, Madness, and Obsession -[2018-02-13T00:46:29.242] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T00:46:29.277] [INFO] cheese - inserting 1000 documents. first: Route nationale 1 and last: Chris Kuper -[2018-02-13T00:46:29.374] [INFO] cheese - inserting 1000 documents. first: File:CreRecombActiveSite.png and last: Assumption College, Bangkok -[2018-02-13T00:46:29.397] [INFO] cheese - inserting 1000 documents. first: Ellen Halpenny and last: Vermilion Lake (Sudbury) -[2018-02-13T00:46:29.405] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T00:46:29.483] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T00:46:29.489] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T00:46:29.727] [INFO] cheese - inserting 1000 documents. first: Crambus inconspicuellus and last: Template:WPBannerDoc/doc -[2018-02-13T00:46:29.808] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T00:46:29.850] [INFO] cheese - inserting 1000 documents. first: Sled hockey at the 2010 Winter Paralympics and last: Derek 'Deek' Henderson -[2018-02-13T00:46:29.861] [INFO] cheese - inserting 1000 documents. first: Independent candidates, 1985 Ontario provincial election and last: Scouting Slovakia -[2018-02-13T00:46:29.933] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:46:29.942] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:46:30.000] [INFO] cheese - inserting 1000 documents. first: Conductor ideal and last: Ziaran Meat Packing Company -[2018-02-13T00:46:30.036] [INFO] cheese - inserting 1000 documents. first: Adventures in the DC Universe and last: Category:Districts of the Julcán Province -[2018-02-13T00:46:30.078] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:46:30.111] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:46:30.270] [INFO] cheese - inserting 1000 documents. first: Energy to matter conversion and last: Randomness merger -[2018-02-13T00:46:30.326] [INFO] cheese - inserting 1000 documents. first: Category:Serbian alpine skiers and last: Almost Heathen -[2018-02-13T00:46:30.327] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:46:30.366] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:46:30.509] [INFO] cheese - inserting 1000 documents. first: The Swedish Guide and Scout Council and last: File:Linda Bengtzing - Ingenting att Förlora album cover.jpg -[2018-02-13T00:46:30.541] [INFO] cheese - inserting 1000 documents. first: Calamarca District and last: Bargny-Gouddau -[2018-02-13T00:46:30.579] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:46:30.636] [INFO] cheese - inserting 1000 documents. first: Portal:Jazz/Selected picture/Archive and last: Template:HS number/211.232.2 -[2018-02-13T00:46:30.635] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:46:30.697] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:46:30.768] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Anniversaries/August/August 29 and last: Marcos Alonso Mendoza -[2018-02-13T00:46:30.823] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:46:30.925] [INFO] cheese - inserting 1000 documents. first: Firas Al-Lateef and last: County Route 23 (Genesee County, New York) -[2018-02-13T00:46:31.028] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T00:46:31.229] [INFO] cheese - inserting 1000 documents. first: Template:HS number/211.242.2 and last: Wikipedia:WikiProject Spam/LinkReports/exclusivevent.ro -[2018-02-13T00:46:31.293] [INFO] cheese - inserting 1000 documents. first: Oghul Ghaymish and last: Svetlana Alexievich -[2018-02-13T00:46:31.298] [INFO] cheese - inserting 1000 documents. first: Marías District and last: File:IHCCLogo.jpg -[2018-02-13T00:46:31.305] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:46:31.387] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T00:46:31.432] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T00:46:31.700] [INFO] cheese - inserting 1000 documents. first: Portal:Malawi/Featured article/3 and last: Two Americas (comics) -[2018-02-13T00:46:31.778] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T00:46:31.923] [INFO] cheese - inserting 1000 documents. first: Roy Dexter and last: Inter de Grand-Goâve -[2018-02-13T00:46:31.960] [INFO] cheese - inserting 1000 documents. first: County Route 9 (Genesee County, New York) and last: Category:Redirect-Class FC Bayern Munich articles -[2018-02-13T00:46:31.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:BLOWUP and last: Wikipedia:Miscellany for deletion/User:1archie99/Artvoice -[2018-02-13T00:46:32.022] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:46:32.027] [INFO] cheese - batch complete in: 4.539 secs -[2018-02-13T00:46:32.027] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:46:32.073] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Scouting/Userboxes/Order of the Arrow and last: Ab. -[2018-02-13T00:46:32.151] [INFO] cheese - inserting 1000 documents. first: List of Sailor Moon chapters and last: Derrick De Marney -[2018-02-13T00:46:32.155] [INFO] cheese - inserting 1000 documents. first: File:Hell-to-pay-roberto gomez martin.jpg and last: NKR2B4 -[2018-02-13T00:46:32.195] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:46:32.191] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:46:32.219] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T00:46:32.395] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Kalaua and last: Fluctuat, nec mergitur -[2018-02-13T00:46:32.395] [INFO] cheese - inserting 1000 documents. first: Tal Block and last: John Currie (footballer born 1939) -[2018-02-13T00:46:32.441] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:46:32.462] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:46:32.571] [INFO] cheese - inserting 1000 documents. first: 2010 Kor Royal Cup unrest and last: Template:Country data Catalunya -[2018-02-13T00:46:32.588] [INFO] cheese - inserting 1000 documents. first: Otloh and last: Safi (given name) -[2018-02-13T00:46:32.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Merchant of Venice (computer program) and last: Liao Tartars -[2018-02-13T00:46:32.610] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:46:32.642] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:32.668] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:46:32.862] [INFO] cheese - inserting 1000 documents. first: Taiko Risshiden and last: Belmont Lions Club -[2018-02-13T00:46:32.901] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:46:32.911] [INFO] cheese - inserting 1000 documents. first: St Laurenz Basilica, Kempten and last: Pilot (Allen Gregory) -[2018-02-13T00:46:32.966] [INFO] cheese - inserting 1000 documents. first: WLOM-FM and last: And lo...a pilot shall come! -[2018-02-13T00:46:32.986] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:33.014] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:46:33.165] [INFO] cheese - inserting 1000 documents. first: 14th Samoan Parliament and last: Template:Bengali-film-stub -[2018-02-13T00:46:33.168] [INFO] cheese - inserting 1000 documents. first: Average Frustrated Chump and last: The Game (wrestler) -[2018-02-13T00:46:33.204] [INFO] cheese - inserting 1000 documents. first: A Centaur's Life and last: Communion of the Apostles (Barocci) -[2018-02-13T00:46:33.206] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:46:33.220] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:46:33.293] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:46:33.371] [INFO] cheese - inserting 1000 documents. first: Template:Cultures of Slavs and last: Category:1977 establishments in the Soviet Union -[2018-02-13T00:46:33.406] [INFO] cheese - inserting 1000 documents. first: File:Ultimatemiracles.jpg and last: Category:People from Vrlika -[2018-02-13T00:46:33.462] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:46:33.478] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:46:33.554] [INFO] cheese - inserting 1000 documents. first: Samsung Galaxy J7 Prime and last: Wikipedia:WikiProject Royalty and Nobility/Popular pages -[2018-02-13T00:46:33.638] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T00:46:33.675] [INFO] cheese - inserting 1000 documents. first: Yugoslav partisan and last: AqME -[2018-02-13T00:46:33.688] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Wes Scantlin and last: Ng Hong-mun -[2018-02-13T00:46:33.747] [INFO] cheese - inserting 1000 documents. first: Useless Trinkets and last: Serkan celikoz -[2018-02-13T00:46:33.747] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:46:33.788] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T00:46:33.857] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:46:33.973] [INFO] cheese - inserting 1000 documents. first: Portal:Miami/Selected Photo/4 and last: Category:Houses in the London Borough of Enfield -[2018-02-13T00:46:34.028] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:46:34.108] [INFO] cheese - inserting 1000 documents. first: Will Clarke (disambiguation) and last: 1998–99 EuroLeague Women -[2018-02-13T00:46:34.233] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T00:46:34.361] [INFO] cheese - inserting 1000 documents. first: Gufo and last: File:En cuerpo ajeno poster.jpg -[2018-02-13T00:46:34.390] [INFO] cheese - inserting 1000 documents. first: Banner page and last: Wikipedia:Version 1.0 Editorial Team/College basketball articles by quality statistics -[2018-02-13T00:46:34.432] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:46:34.452] [INFO] cheese - inserting 1000 documents. first: German submarine U-46 (1938) and last: File:Stripesposter.jpg -[2018-02-13T00:46:34.471] [INFO] cheese - inserting 1000 documents. first: Melanchthonweg RandstadRail station and last: Bruce Larkin -[2018-02-13T00:46:34.496] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:46:34.538] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:46:34.613] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:46:34.857] [INFO] cheese - inserting 1000 documents. first: Auti Angel and last: A. verticillata (disambiguation) -[2018-02-13T00:46:34.938] [INFO] cheese - inserting 1000 documents. first: Chitra Pournami (film) and last: Category:Actresses from Durango -[2018-02-13T00:46:34.959] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:46:35.025] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:46:35.132] [INFO] cheese - inserting 1000 documents. first: Ferdinand Pelez and last: File:Mix1063.jpg -[2018-02-13T00:46:35.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Pnelnik and last: Portal:Current events/2010 February 23 -[2018-02-13T00:46:35.193] [INFO] cheese - inserting 1000 documents. first: Cookie time and last: TOC (Debate) -[2018-02-13T00:46:35.199] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:46:35.304] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:46:35.298] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:46:35.560] [INFO] cheese - inserting 1000 documents. first: Crossing Creek and last: Kazuhiko Aomoto -[2018-02-13T00:46:35.589] [INFO] cheese - inserting 1000 documents. first: China Railways HXD3D and last: Archbishop Blanch School -[2018-02-13T00:46:35.637] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:46:35.758] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:46:35.988] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Geekbrief and last: Tartarus (spider) -[2018-02-13T00:46:36.025] [INFO] cheese - inserting 1000 documents. first: May devotions to the Blessed Virgin Mary and last: Kolanda -[2018-02-13T00:46:36.072] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T00:46:36.180] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T00:46:36.226] [INFO] cheese - inserting 1000 documents. first: File:Spider-Woman 1 (2009).jpg and last: Dečina -[2018-02-13T00:46:36.275] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:46:36.283] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Biography/Science and academia/Popular pages and last: Zomaron Merchant Services -[2018-02-13T00:46:36.373] [INFO] cheese - inserting 1000 documents. first: National symbols of Indonesia and last: L'Ange-Gardien, Les Collines-de-l'Outaouais, Quebec -[2018-02-13T00:46:36.379] [INFO] cheese - batch complete in: 2.741 secs -[2018-02-13T00:46:36.414] [INFO] cheese - inserting 1000 documents. first: Category:18th century in Birmingham, West Midlands and last: Kaiser Darrin 161 -[2018-02-13T00:46:36.478] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:46:36.499] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:46:36.723] [INFO] cheese - inserting 1000 documents. first: Cardiff skyline and last: Anti-Japanese Army For The Salvation Of The Country -[2018-02-13T00:46:36.815] [INFO] cheese - inserting 1000 documents. first: Felix de Andreis and last: Amilkar Ariza -[2018-02-13T00:46:36.830] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:46:36.871] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T00:46:36.974] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Layali El Bidh and last: Cornelia Schleime -[2018-02-13T00:46:37.003] [INFO] cheese - inserting 1000 documents. first: John Marston and last: Category:WikiProject Ice Hockey/Vancouver Canucks task force members -[2018-02-13T00:46:37.020] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:46:37.073] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T00:46:37.086] [INFO] cheese - inserting 1000 documents. first: Sir Peter Petrie, 5th Baronet and last: Disturbance term -[2018-02-13T00:46:37.192] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:46:37.324] [INFO] cheese - inserting 1000 documents. first: Tom Mix filmography and last: Template:User Triathlon -[2018-02-13T00:46:37.336] [INFO] cheese - inserting 1000 documents. first: Category:Historic house museums in Bristol and last: Typisms -[2018-02-13T00:46:37.408] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T00:46:37.408] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:46:37.443] [INFO] cheese - inserting 1000 documents. first: Category:Oceanitinae and last: Phomopsis leaf -[2018-02-13T00:46:37.500] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:46:37.537] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/monorobot and last: Vaggelis Kryos -[2018-02-13T00:46:37.596] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T00:46:37.636] [INFO] cheese - inserting 1000 documents. first: Category:Defunct clubs and societies of the United States and last: Garland E. Pierce -[2018-02-13T00:46:37.691] [INFO] cheese - inserting 1000 documents. first: James Warlick and last: Save the Children Canada -[2018-02-13T00:46:37.697] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:46:37.747] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T00:46:37.850] [INFO] cheese - inserting 1000 documents. first: Armin Bauer and last: Doug Gabbard, II -[2018-02-13T00:46:37.929] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:46:37.964] [INFO] cheese - inserting 1000 documents. first: File:Muir logo.gif and last: Picton Reading Room -[2018-02-13T00:46:38.018] [INFO] cheese - inserting 1000 documents. first: Somchai Chantarasamrit and last: Template:Representative/current/New York assembly/doc -[2018-02-13T00:46:38.019] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:38.065] [INFO] cheese - inserting 1000 documents. first: Category:IEEPA sanctions fair use images and last: Plastic Surgeon -[2018-02-13T00:46:38.103] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:46:38.149] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:46:38.207] [INFO] cheese - inserting 1000 documents. first: Miquihuana and last: Cainogenion -[2018-02-13T00:46:38.242] [INFO] cheese - inserting 1000 documents. first: Handbook On Japanes Military Forces and last: Ἀρτέμιδος -[2018-02-13T00:46:38.257] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:46:38.288] [INFO] cheese - inserting 1000 documents. first: Long-tailed Chinchilla and last: Nepenthes acid proteinase -[2018-02-13T00:46:38.305] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:46:38.344] [INFO] cheese - inserting 1000 documents. first: File:Islamic Iran Solidarity Party.jpg and last: Bartholomaeus Olivieri -[2018-02-13T00:46:38.347] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:38.419] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:46:38.539] [INFO] cheese - inserting 1000 documents. first: Portal:Philosophy of science/Wikimedia and last: Template:PD-India-old -[2018-02-13T00:46:38.588] [INFO] cheese - inserting 1000 documents. first: South Bourke and Mornington Journal and last: Category:Actresses from Guerrero -[2018-02-13T00:46:38.599] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:46:38.663] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:46:38.747] [INFO] cheese - inserting 1000 documents. first: Triple lutz and last: Elabuzhski District -[2018-02-13T00:46:38.752] [INFO] cheese - inserting 1000 documents. first: Category:798 by country and last: Qaleh, Avaj -[2018-02-13T00:46:38.774] [INFO] cheese - inserting 1000 documents. first: Seigneur de Joinville and last: Oberea kanarensis -[2018-02-13T00:46:38.805] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:46:38.819] [INFO] cheese - inserting 1000 documents. first: Category:Government agencies established in 1912 and last: File:Annabelle-Resilience.jpg -[2018-02-13T00:46:38.821] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:46:38.864] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:46:38.901] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:46:39.174] [INFO] cheese - inserting 1000 documents. first: File:AllTheRageBackHome.jpg and last: Thaumatosaurus oolithicus -[2018-02-13T00:46:39.240] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:46:39.375] [INFO] cheese - inserting 1000 documents. first: Oberea luluensis and last: Balapokuna Raja Maha Vihara -[2018-02-13T00:46:39.378] [INFO] cheese - inserting 1000 documents. first: Portal:New Zealand/Selected picture/Week 51, 2006 and last: Khooni Darwaza -[2018-02-13T00:46:39.411] [INFO] cheese - inserting 1000 documents. first: Elabuzhskii District and last: MTV Movie Award for Best Song From a Movie -[2018-02-13T00:46:39.410] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:46:39.431] [INFO] cheese - inserting 1000 documents. first: Qaleh-ye Didar and last: Category:1576 in art -[2018-02-13T00:46:39.433] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T00:46:39.479] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:46:39.528] [INFO] cheese - inserting 1000 documents. first: Mogliamante and last: Cospan District -[2018-02-13T00:46:39.541] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:46:39.652] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:46:39.890] [INFO] cheese - inserting 1000 documents. first: Los Exóticos and last: 2005–06 Liga de Fútbol Profesional Boliviano -[2018-02-13T00:46:39.896] [INFO] cheese - inserting 1000 documents. first: Il mercante di Venezia and last: Matilda and the Ramsay Bunch (Series 1) -[2018-02-13T00:46:39.934] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:39.957] [INFO] cheese - inserting 1000 documents. first: Category:1579 in art and last: Yaranskiy District -[2018-02-13T00:46:39.980] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:46:40.016] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:46:40.086] [INFO] cheese - inserting 1000 documents. first: Law of chemical combinations and last: Ian Bolton -[2018-02-13T00:46:40.109] [INFO] cheese - inserting 1000 documents. first: Live from the Relapse Contamination Festival and last: File:Pokhi screenshot.jpg -[2018-02-13T00:46:40.129] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T00:46:40.208] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T00:46:40.247] [INFO] cheese - inserting 1000 documents. first: What They Had and last: Category:Universities and colleges in Bidar district -[2018-02-13T00:46:40.255] [INFO] cheese - inserting 1000 documents. first: Portal:Florida/Selected panorama/9 and last: Memorial Hall (Richmond, Illinois) -[2018-02-13T00:46:40.289] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:46:40.346] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:46:40.443] [INFO] cheese - inserting 1000 documents. first: Neoeromene felix and last: Category:Tropidion -[2018-02-13T00:46:40.491] [INFO] cheese - inserting 1000 documents. first: Yaranski District and last: Category:Books by John Hay -[2018-02-13T00:46:40.501] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:46:40.604] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:46:40.652] [INFO] cheese - inserting 1000 documents. first: Kerrville Bus and last: Urauna -[2018-02-13T00:46:40.748] [INFO] cheese - inserting 1000 documents. first: Santa Vera Cruz and last: Template:User visited Indiana/doc -[2018-02-13T00:46:40.748] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:46:40.816] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:40.832] [INFO] cheese - inserting 1000 documents. first: Lists of Finnish films and last: Dendroid (math) -[2018-02-13T00:46:40.986] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T00:46:41.084] [INFO] cheese - inserting 1000 documents. first: Franciszek Kaminski and last: Verbal fluency test -[2018-02-13T00:46:41.271] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T00:46:41.289] [INFO] cheese - inserting 1000 documents. first: Lunella moniliformis and last: Element 162 -[2018-02-13T00:46:41.361] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Seycellesa and last: Wikipedia:WikiProject National Basketball League of Canada/Article alerts/Archive -[2018-02-13T00:46:41.384] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T00:46:41.404] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:46:41.437] [INFO] cheese - inserting 1000 documents. first: Another Minute (Sahaj album) and last: Tom Madden -[2018-02-13T00:46:41.571] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:46:41.657] [INFO] cheese - inserting 1000 documents. first: Lisa Anderson and last: Izod lacoste -[2018-02-13T00:46:41.756] [INFO] cheese - inserting 1000 documents. first: Category:Naval trawlers of the United Kingdom and last: Carrarese -[2018-02-13T00:46:41.786] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T00:46:41.833] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T00:46:41.916] [INFO] cheese - inserting 1000 documents. first: Reefer (ship) and last: Category:Templates for redirects based on synonymy -[2018-02-13T00:46:41.939] [INFO] cheese - inserting 1000 documents. first: The Graun and last: Pulau Indah Industrial Park -[2018-02-13T00:46:41.940] [INFO] cheese - inserting 1000 documents. first: Element 163 and last: Eoreuma loftini -[2018-02-13T00:46:41.976] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:46:41.981] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:46:41.997] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:46:42.094] [INFO] cheese - inserting 1000 documents. first: Zhao Dezhao and last: Rank-revealing QR factorization -[2018-02-13T00:46:42.160] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:46:42.427] [INFO] cheese - inserting 1000 documents. first: Eoreuma morbidellus and last: Ptychopseustis fuscivenalis -[2018-02-13T00:46:42.440] [INFO] cheese - inserting 1000 documents. first: Speed skating at the 2014 Winter Olympics – Women's 5000 metres and last: Drifter (1981 song) -[2018-02-13T00:46:42.492] [INFO] cheese - inserting 1000 documents. first: Conspiracy? and last: Adrian Dingli -[2018-02-13T00:46:42.603] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:46:42.605] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T00:46:42.610] [INFO] cheese - inserting 1000 documents. first: Category:Turkish crime drama television series and last: Draft:Chico Air Museum -[2018-02-13T00:46:42.658] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T00:46:42.699] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T00:46:42.713] [INFO] cheese - inserting 1000 documents. first: Seyfang Laboratories and last: Facilities Protection Service -[2018-02-13T00:46:42.789] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:46:42.798] [INFO] cheese - inserting 1000 documents. first: Conscious Evolution and last: Sheyd Esfahan -[2018-02-13T00:46:42.869] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:46:43.124] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Corythangela and last: Category:Boxers from Washington, D. C. -[2018-02-13T00:46:43.133] [INFO] cheese - inserting 1000 documents. first: Ptychopseustis ictericalis and last: Tarski's theorem on choice -[2018-02-13T00:46:43.159] [INFO] cheese - inserting 1000 documents. first: Spirit filled and last: Henri Coëffier Ruzé d'Effiat -[2018-02-13T00:46:43.171] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:46:43.180] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:46:43.187] [INFO] cheese - inserting 1000 documents. first: Bahraini Premier League 1981–82 and last: Matoush Aerodrome -[2018-02-13T00:46:43.189] [INFO] cheese - inserting 1000 documents. first: Template:Val/Print and last: ORVM -[2018-02-13T00:46:43.201] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:43.250] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:46:43.254] [INFO] cheese - inserting 1000 documents. first: Tamara Griesser Pečar and last: Computer human chess -[2018-02-13T00:46:43.302] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:43.304] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:46:43.493] [INFO] cheese - inserting 1000 documents. first: Category:Tom McCall Waterfront Park and last: SECI (disambiguation) -[2018-02-13T00:46:43.526] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:46:43.622] [INFO] cheese - inserting 1000 documents. first: CRS7 and last: Category:People from Phra Nakhon Si Ayutthaya Province -[2018-02-13T00:46:43.640] [INFO] cheese - inserting 1000 documents. first: Category:Vangueria and last: Category:Paracanoeists of Brazil -[2018-02-13T00:46:43.661] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:46:43.682] [INFO] cheese - inserting 1000 documents. first: Mathias Morris and last: Category:Top-importance European Union articles -[2018-02-13T00:46:43.691] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:46:43.728] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:43.786] [INFO] cheese - inserting 1000 documents. first: Human computer chess and last: Pattukkottai Prabakar -[2018-02-13T00:46:43.828] [INFO] cheese - inserting 1000 documents. first: Wing-mirror and last: Charles Russell House (disambiguation) -[2018-02-13T00:46:43.848] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:46:43.871] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:46:43.928] [INFO] cheese - inserting 1000 documents. first: Vasisht (disambiguation) and last: Category:Articles with Ilocano-language external links -[2018-02-13T00:46:43.962] [INFO] cheese - inserting 1000 documents. first: Category:Ballet companies in Chile and last: Sokos Hotel Torni -[2018-02-13T00:46:43.979] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:46:44.012] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:46:44.088] [INFO] cheese - inserting 1000 documents. first: Niccolo dell'Abati and last: Template:Infobox tornado/sandbox -[2018-02-13T00:46:44.133] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:46:44.355] [INFO] cheese - inserting 1000 documents. first: Category:Ukraine subdivision templates and last: Grupo 2002 Murcia -[2018-02-13T00:46:44.362] [INFO] cheese - inserting 1000 documents. first: Category:Wooden churches in Moldova and last: Category:1927 in Latvian sport -[2018-02-13T00:46:44.402] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:44.409] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:44.479] [INFO] cheese - inserting 1000 documents. first: Safadin and last: Portal:Speculative fiction/Anniversaries/November/November 7 -[2018-02-13T00:46:44.498] [INFO] cheese - inserting 1000 documents. first: File:Reformationposttlc.jpg and last: Genetically modified food controversies -[2018-02-13T00:46:44.515] [INFO] cheese - inserting 1000 documents. first: Philip of Exon and last: Kawasaki Superbikes -[2018-02-13T00:46:44.539] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:46:44.587] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T00:46:44.601] [INFO] cheese - inserting 1000 documents. first: Portal:Sexuality/Random picture/21 and last: Argyria leucomeralis -[2018-02-13T00:46:44.602] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T00:46:44.666] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:46:44.849] [INFO] cheese - inserting 1000 documents. first: Bily Clocks Museum and last: Template:Did you know nominations/The Old Axolotl -[2018-02-13T00:46:44.886] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:46:44.958] [INFO] cheese - inserting 1000 documents. first: Donald Watson, artist and last: Central High School (Columbus, Ohio) -[2018-02-13T00:46:44.967] [INFO] cheese - inserting 1000 documents. first: Sertv and last: Eastern Egyptian Bedawi Spoken Arabic language -[2018-02-13T00:46:45.062] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:46:45.089] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:46:45.106] [INFO] cheese - inserting 1000 documents. first: Of Reuss and last: Odette Lapierre -[2018-02-13T00:46:45.175] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Anniversaries/July/July 7 and last: K34HO -[2018-02-13T00:46:45.195] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/globaldatabase.co.uk and last: Largest Wikipedia -[2018-02-13T00:46:45.200] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:46:45.236] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:45.296] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:46:45.349] [INFO] cheese - inserting 1000 documents. first: Japan baseball team and last: Thea Landa -[2018-02-13T00:46:45.488] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:46:45.618] [INFO] cheese - inserting 1000 documents. first: 28 July 2003 Mumbai bus bombing and last: Philagathus -[2018-02-13T00:46:45.689] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:46:45.716] [INFO] cheese - inserting 1000 documents. first: 4th (Quetta) Division and last: Infant Jesus Academy of Silang -[2018-02-13T00:46:45.819] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:46:45.828] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Pennsylvania Route 154 and last: Template:Towns in Zhuhai -[2018-02-13T00:46:45.895] [INFO] cheese - inserting 1000 documents. first: File:Great Big Western Howdy.jpg and last: Central Mashonaland -[2018-02-13T00:46:45.912] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:46:45.961] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:46:46.059] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ski articles by quality/2 and last: Pindorama Biological Reserve -[2018-02-13T00:46:46.071] [INFO] cheese - inserting 1000 documents. first: Sentro ng Alternatibong Lingap Panligan and last: Donald Trump wiretapping claim -[2018-02-13T00:46:46.181] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:46:46.236] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T00:46:46.308] [INFO] cheese - inserting 1000 documents. first: Incurvaria splendidella and last: William Fulford -[2018-02-13T00:46:46.358] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:46:46.463] [INFO] cheese - inserting 1000 documents. first: Realmente bella Señorita Panama and last: List of windmills in Kent -[2018-02-13T00:46:46.501] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:46:46.557] [INFO] cheese - inserting 1000 documents. first: 1921 in China and last: Module:Location map/data/USA Indiana Wells County -[2018-02-13T00:46:46.607] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:46:46.716] [INFO] cheese - inserting 1000 documents. first: Agadir air disaster and last: Histia -[2018-02-13T00:46:46.720] [INFO] cheese - inserting 1000 documents. first: Category:People from Hornsey and last: Wikipedia:Suspected sock puppets/Daniel575 (2nd) -[2018-02-13T00:46:46.752] [INFO] cheese - inserting 1000 documents. first: Condescension (religion) and last: Aster linariifolius -[2018-02-13T00:46:46.760] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:46:46.771] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T00:46:46.808] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:46:46.951] [INFO] cheese - inserting 1000 documents. first: Category:2013–14 in Hong Kong basketball and last: Wilcox County Courthouse (Camden, Alabama) -[2018-02-13T00:46:46.965] [INFO] cheese - inserting 1000 documents. first: Salah Abdul Rasool Al Bloushi and last: The garbage heap of history -[2018-02-13T00:46:46.995] [INFO] cheese - inserting 1000 documents. first: Echinocereus coccineus and last: Maiden Trail -[2018-02-13T00:46:47.012] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T00:46:47.021] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:46:47.043] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:46:47.134] [INFO] cheese - inserting 1000 documents. first: Barra Velodrome and last: Template:Lang-nod -[2018-02-13T00:46:47.161] [INFO] cheese - inserting 1000 documents. first: Maktab al-Khadamat and last: Sèvres - Lecourbe (Paris Metro) -[2018-02-13T00:46:47.173] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:46:47.210] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:46:47.246] [INFO] cheese - inserting 1000 documents. first: United States Navy Argus Units and last: S. haenkeana -[2018-02-13T00:46:47.318] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:46:47.412] [INFO] cheese - inserting 1000 documents. first: File:Trill Entertainment Presents - Survival of the Fittest.jpg and last: Labyrinth of the World and Paradise of the Heart -[2018-02-13T00:46:47.455] [INFO] cheese - inserting 1000 documents. first: File:Got a Hold on Me.jpg and last: File:Who Shot Patakango?.jpg -[2018-02-13T00:46:47.472] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:46:47.483] [INFO] cheese - inserting 1000 documents. first: Zhu Yuchen (born 1961) and last: Mansour (TV series) -[2018-02-13T00:46:47.490] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:46:47.526] [INFO] cheese - inserting 1000 documents. first: Alphabetical list of comuni of Italy: A and last: Coniesta rufifusalis -[2018-02-13T00:46:47.543] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:46:47.569] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:46:47.587] [INFO] cheese - inserting 1000 documents. first: Guaranís and last: Angel Maria Garibay Kintana -[2018-02-13T00:46:47.633] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T00:46:47.691] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2012 April 4 and last: John Hals -[2018-02-13T00:46:47.746] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:46:47.798] [INFO] cheese - inserting 1000 documents. first: Humanitarian response to the 2010 Chile earthquake and last: Melampyrum sylvaticum -[2018-02-13T00:46:47.932] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:46:48.103] [INFO] cheese - inserting 1000 documents. first: Baern (Smallville) and last: Notre-Dame-de-Lorette (Paris Metro) -[2018-02-13T00:46:48.104] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Jesus work group articles and last: Category:Chrysler people -[2018-02-13T00:46:48.117] [INFO] cheese - inserting 1000 documents. first: Scythris turiensis and last: Template:Editnotices/Page/Marka refugee camp -[2018-02-13T00:46:48.152] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:46:48.191] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:46:48.286] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T00:46:48.550] [INFO] cheese - inserting 1000 documents. first: Chithariyavar and last: Metadata edit -[2018-02-13T00:46:48.599] [INFO] cheese - inserting 1000 documents. first: File:Generation-Goldman-Volume2.jpg and last: File:Univ puebla seal.png -[2018-02-13T00:46:48.638] [INFO] cheese - inserting 1000 documents. first: Spend a penny and last: Category:1950s in Europe -[2018-02-13T00:46:48.689] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T00:46:48.718] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:46:48.737] [INFO] cheese - inserting 1000 documents. first: Maksim Aleksandrovich Belyayev and last: UN Enemy State Clause -[2018-02-13T00:46:48.740] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T00:46:48.773] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:48.982] [INFO] cheese - inserting 1000 documents. first: Marx Dormoy (Paris Metro) and last: Aggio -[2018-02-13T00:46:49.030] [INFO] cheese - inserting 1000 documents. first: Brian Sherratt (educator) and last: Byrana Nagappa Suresh -[2018-02-13T00:46:49.033] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T00:46:49.111] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:46:49.145] [INFO] cheese - inserting 1000 documents. first: Carrai afoveolata and last: Plymouth settlement -[2018-02-13T00:46:49.237] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:46:49.242] [INFO] cheese - inserting 1000 documents. first: Vittorio Croizat and last: Wikipedia:Articles for deletion/ANC Today -[2018-02-13T00:46:49.322] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:46:49.347] [INFO] cheese - inserting 1000 documents. first: Collegeinsider.com and last: Wikipedia:Sockpuppet investigations/Baboon43/Archive -[2018-02-13T00:46:49.464] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:46:49.477] [INFO] cheese - inserting 1000 documents. first: Book:Bohrium and last: Category:Political organizations in the United States -[2018-02-13T00:46:49.564] [INFO] cheese - inserting 1000 documents. first: Harley-Davidson Museum and last: Demski -[2018-02-13T00:46:49.600] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T00:46:49.662] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:46:49.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Conservatism/References and last: Category:People from Mount Morris, New York -[2018-02-13T00:46:49.777] [INFO] cheese - inserting 1000 documents. first: Poona Mounted Infantry and last: Zitenga Department -[2018-02-13T00:46:49.837] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saswat saubhagya rout and last: Template:User visited Rhode Island -[2018-02-13T00:46:49.849] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:49.886] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T00:46:49.961] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:46:50.240] [INFO] cheese - inserting 1000 documents. first: Barbara Ringer and last: Category:Software companies of Wales -[2018-02-13T00:46:50.335] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hamlet and last: Template:Did you know nominations/Hotel Janzen -[2018-02-13T00:46:50.366] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T00:46:50.387] [INFO] cheese - inserting 1000 documents. first: West 25th-Ohio City (RTA RedCtc Line Rapid Transit station) and last: Snipperclips: Cut It Out, Together! -[2018-02-13T00:46:50.397] [INFO] cheese - inserting 1000 documents. first: Category:People associated with the University of Hertfordshire and last: Winfield Scott, Jr. -[2018-02-13T00:46:50.417] [INFO] cheese - inserting 1000 documents. first: Treblinka II and last: Chițoveni -[2018-02-13T00:46:50.424] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T00:46:50.432] [INFO] cheese - inserting 1000 documents. first: West Sussex County Council and last: 3630 Lubomír -[2018-02-13T00:46:50.443] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:46:50.470] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:50.471] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:46:50.555] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:46:50.891] [INFO] cheese - inserting 1000 documents. first: Lathrocordulia metallica and last: Valeriy Vdovin -[2018-02-13T00:46:51.004] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:46:51.035] [INFO] cheese - inserting 1000 documents. first: Uno (surname) and last: HV71 Jonkoping -[2018-02-13T00:46:51.079] [INFO] cheese - inserting 1000 documents. first: Eric Carlson (musician) and last: Standard Russian -[2018-02-13T00:46:51.082] [INFO] cheese - inserting 1000 documents. first: Bădiuți and last: Wikipedia:Articles for deletion/East Side (Phoenix) -[2018-02-13T00:46:51.125] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T00:46:51.144] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:46:51.224] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:46:51.239] [INFO] cheese - inserting 1000 documents. first: Takayuki Okada and last: Chronic disease in Northern Ontario -[2018-02-13T00:46:51.262] [INFO] cheese - inserting 1000 documents. first: Danzig Rebellion and last: Portal:Military of Australia/Selected anniversaries/October/October 24 -[2018-02-13T00:46:51.340] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:46:51.361] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T00:46:51.534] [INFO] cheese - inserting 1000 documents. first: Gillermo Faerber and last: File:San Francisco Bicycle Coalition Logo.png -[2018-02-13T00:46:51.621] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:46:51.763] [INFO] cheese - inserting 1000 documents. first: Lauri Lahesalu and last: Route 43 (MTA Maryland) -[2018-02-13T00:46:51.789] [INFO] cheese - inserting 1000 documents. first: List of U.S. Army, Navy and volunteer units in the Mexican–American War and last: Theodore Samuel Adams -[2018-02-13T00:46:51.838] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:46:51.858] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:46:51.883] [INFO] cheese - inserting 1000 documents. first: SBMP and last: Ezra Lee -[2018-02-13T00:46:51.922] [INFO] cheese - inserting 1000 documents. first: Graphium weiskei and last: Edith Wilson (singer) -[2018-02-13T00:46:52.005] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:46:52.059] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:46:52.197] [INFO] cheese - inserting 1000 documents. first: File:Artist Rosemary Mayer.jpg and last: Template:Did you know nominations/Pendleton Dudley -[2018-02-13T00:46:52.252] [INFO] cheese - inserting 1000 documents. first: Taub–NUT metric and last: Robert le diable (opera) -[2018-02-13T00:46:52.264] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:46:52.346] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T00:46:52.413] [INFO] cheese - inserting 1000 documents. first: Mei Fanggu and last: Noctua simulatrix -[2018-02-13T00:46:52.484] [INFO] cheese - inserting 1000 documents. first: Jach'a Q'awa and last: Zonilia argentifera -[2018-02-13T00:46:52.499] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:46:52.516] [INFO] cheese - inserting 1000 documents. first: Category:Stradivari violins and last: Rub It Better -[2018-02-13T00:46:52.551] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:46:52.621] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:46:52.623] [INFO] cheese - inserting 1000 documents. first: Third Age Foundation (UK) and last: G-type -[2018-02-13T00:46:52.677] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:46:52.809] [INFO] cheese - inserting 1000 documents. first: Joan Schmidt (cricketer) and last: Rabb Da Radio -[2018-02-13T00:46:52.874] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:46:52.887] [INFO] cheese - inserting 1000 documents. first: Khuman and last: File:Trevor Hall (album).jpg -[2018-02-13T00:46:52.959] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:46:52.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/moviedl.net and last: AMICE -[2018-02-13T00:46:53.068] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:46:53.225] [INFO] cheese - inserting 1000 documents. first: Yadava College and last: Template:USSenDemLead -[2018-02-13T00:46:53.279] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:46:53.295] [INFO] cheese - inserting 1000 documents. first: Category:Amphibians of Australia and last: Mazda 717 -[2018-02-13T00:46:53.351] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:46:53.370] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Travis Smith (musician) and last: Wikipedia:WikiProject Spam/Local/inadds.com -[2018-02-13T00:46:53.399] [INFO] cheese - inserting 1000 documents. first: Liv (Skins series 6) and last: Wikipedia:WikiProject Spam/LinkReports/lifeline.org.au -[2018-02-13T00:46:53.434] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T00:46:53.462] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:46:53.531] [INFO] cheese - inserting 1000 documents. first: Εργατικό Επαναστατικό Κόμμα and last: Greek Idol (season 1) -[2018-02-13T00:46:53.579] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:46:53.717] [INFO] cheese - inserting 1000 documents. first: Oleksiy Boryslavskiy and last: Category:Norwegian horse trainers -[2018-02-13T00:46:53.749] [INFO] cheese - inserting 1000 documents. first: Kameyama castle and last: Joseph Smith House -[2018-02-13T00:46:53.749] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:46:53.801] [INFO] cheese - inserting 1000 documents. first: Mark of Gideon and last: Shangaj -[2018-02-13T00:46:53.807] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:46:53.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/lifeline.org.au and last: Museum Villas -[2018-02-13T00:46:53.864] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:46:53.868] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:46:53.870] [INFO] cheese - inserting 1000 documents. first: Protected from Reality and last: NForce 900 -[2018-02-13T00:46:53.915] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:46:54.160] [INFO] cheese - inserting 1000 documents. first: Libre Cultural Work and last: Shenin -[2018-02-13T00:46:54.190] [INFO] cheese - inserting 1000 documents. first: Template:Ligue Nationale de Basketball A teams 2011-12 and last: Results of the Queensland state election, 1947 (A-K) -[2018-02-13T00:46:54.197] [INFO] cheese - inserting 1000 documents. first: 10 CMi and last: Zeppos, Nicholas -[2018-02-13T00:46:54.201] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:46:54.202] [INFO] cheese - inserting 1000 documents. first: MAGfest and last: Template:Fooian children -[2018-02-13T00:46:54.239] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:46:54.263] [INFO] cheese - inserting 1000 documents. first: Jewish Russians and last: Giuseppe Patroni Griffi -[2018-02-13T00:46:54.286] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:46:54.285] [INFO] cheese - batch complete in: 1.725 secs -[2018-02-13T00:46:54.361] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:46:54.486] [INFO] cheese - inserting 1000 documents. first: H.H. Baselios Mar Thoma Didymos I and last: Wango -[2018-02-13T00:46:54.630] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:46:54.802] [INFO] cheese - inserting 1000 documents. first: Zeppos, Nicholas S. and last: Wikipedia:Sockpuppet investigations/Yash Pal Rao -[2018-02-13T00:46:54.877] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:46:54.966] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject International law/to do and last: Krannónas, Greece -[2018-02-13T00:46:55.013] [INFO] cheese - inserting 1000 documents. first: Shiniyin and last: Category:Wikipedia categories named after American people -[2018-02-13T00:46:55.014] [INFO] cheese - inserting 1000 documents. first: Leif Dietrichson and last: Draft:Generation Yes -[2018-02-13T00:46:55.043] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T00:46:55.088] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T00:46:55.105] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T00:46:55.144] [INFO] cheese - inserting 1000 documents. first: Molten Corporation and last: Binkley -[2018-02-13T00:46:55.220] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T00:46:55.432] [INFO] cheese - inserting 1000 documents. first: Ambohimana and last: Mike O'Berry -[2018-02-13T00:46:55.461] [INFO] cheese - inserting 1000 documents. first: St John the Baptist Church, Winchester and last: St Giles's and St George's Bloomsbury Volunteers -[2018-02-13T00:46:55.497] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T00:46:55.505] [INFO] cheese - inserting 1000 documents. first: Murder of Walsh and Pitman and last: Basketball at the 1972 Summer Olympics – Final -[2018-02-13T00:46:55.520] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:46:55.546] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:46:55.570] [INFO] cheese - inserting 1000 documents. first: Aon Corporation and last: Confederate Memorial Carving -[2018-02-13T00:46:55.570] [INFO] cheese - inserting 1000 documents. first: Kranón and last: Indiatimes portal -[2018-02-13T00:46:55.599] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stephen Jackson & The Juggernauts and last: Aral Kara Kum -[2018-02-13T00:46:55.625] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:46:55.631] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:46:55.649] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:46:55.866] [INFO] cheese - inserting 1000 documents. first: Draft:َAzim Shor (عظیم شور فارسی) and last: Template:Taxonomy/Khorassania -[2018-02-13T00:46:55.903] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:46:55.904] [INFO] cheese - inserting 1000 documents. first: Khasan Akhriev and last: Category:Waukesha County Technical College alumni -[2018-02-13T00:46:55.908] [INFO] cheese - inserting 1000 documents. first: Category:Art galleries disestablished in 1971 and last: Parfen'yevskii District -[2018-02-13T00:46:55.947] [INFO] cheese - inserting 1000 documents. first: List of broadcasting licenses held by Asian Television Network International Limited and last: Lisa hopp -[2018-02-13T00:46:55.971] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:46:55.975] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:46:56.054] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:46:56.096] [INFO] cheese - inserting 1000 documents. first: Mayfair, Washington, D.C. and last: Kano Eitoku -[2018-02-13T00:46:56.151] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:46:56.208] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Heather Tallchief and last: Judiciary of Italy -[2018-02-13T00:46:56.253] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:46:56.301] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/TheLangmasGroupInc and last: TNA X Division Championship -[2018-02-13T00:46:56.335] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:46:56.347] [INFO] cheese - inserting 1000 documents. first: Nandini Layout and last: 2012/2013 snooker season -[2018-02-13T00:46:56.350] [INFO] cheese - inserting 1000 documents. first: Parfenyyevsky District and last: List of county routes in Ulster County, New York -[2018-02-13T00:46:56.396] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:46:56.442] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:46:56.495] [INFO] cheese - inserting 1000 documents. first: File:Armourtransportlogo.PNG and last: Category:Indian singers by genre -[2018-02-13T00:46:56.559] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:46:56.598] [INFO] cheese - inserting 1000 documents. first: William E. Peterson and last: Fadel Brahami -[2018-02-13T00:46:56.691] [INFO] cheese - inserting 1000 documents. first: Bangladeshi Intelligence Community and last: Tönet, ihr Pauken! Erschallet, Trompeten! -[2018-02-13T00:46:56.694] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:56.749] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:46:56.816] [INFO] cheese - inserting 1000 documents. first: Brandan Wilkinson and last: Template:Infobox caesium isotopes -[2018-02-13T00:46:56.856] [INFO] cheese - inserting 1000 documents. first: Category:Papua New Guinean ornithologists and last: Category:Marshallese literature -[2018-02-13T00:46:56.860] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:46:56.866] [INFO] cheese - inserting 1000 documents. first: Category:Paintings by Georges Seurat and last: Christopher J. R. Garrett -[2018-02-13T00:46:56.909] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:46:56.919] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:46:57.088] [INFO] cheese - inserting 1000 documents. first: Garfield 2: A Tale of Two Kitties and last: Research Octane Number -[2018-02-13T00:46:57.120] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:46:57.148] [INFO] cheese - inserting 1000 documents. first: Ke'ara and last: List of Saudi Arabian billionaires by net worth -[2018-02-13T00:46:57.215] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T00:46:57.231] [INFO] cheese - inserting 1000 documents. first: New populist and last: 1991 430km of Silverstone -[2018-02-13T00:46:57.253] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Anonaepestis and last: Category:1959–60 in Austrian ice hockey -[2018-02-13T00:46:57.275] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:46:57.297] [INFO] cheese - inserting 1000 documents. first: File:NationalTrustScotland.svg and last: Template:Fb team Box Hill United -[2018-02-13T00:46:57.303] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:46:57.324] [INFO] cheese - inserting 1000 documents. first: Tilge, Höchster, meine Sünden and last: File:SpoolWhippetsBanner.jpg -[2018-02-13T00:46:57.357] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:46:57.395] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:46:57.519] [INFO] cheese - inserting 1000 documents. first: Winfried Zillig and last: Wikipedia:Bots/Requests for approval/STBotD -[2018-02-13T00:46:57.575] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:46:57.680] [INFO] cheese - inserting 1000 documents. first: Category:1958–59 in Austrian ice hockey and last: File:Walt Dickerson 1976.jpg -[2018-02-13T00:46:57.698] [INFO] cheese - inserting 1000 documents. first: Here There Be Monsters (audio drama) and last: Loch Awe station -[2018-02-13T00:46:57.711] [INFO] cheese - inserting 1000 documents. first: Hong Kong legislative election, 1988 and last: Bubble net -[2018-02-13T00:46:57.727] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:46:57.742] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:46:57.764] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:46:57.789] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of fictional television shows (3rd nomination) and last: Porrectaria triatomea -[2018-02-13T00:46:57.820] [INFO] cheese - inserting 1000 documents. first: List of municipalities of Serbia and last: Stephen Goodin -[2018-02-13T00:46:57.825] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:46:57.830] [INFO] cheese - inserting 1000 documents. first: X-wave and last: Fahy JU -[2018-02-13T00:46:57.864] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:46:57.867] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:46:58.060] [INFO] cheese - inserting 1000 documents. first: Cottonworld and last: Template:Infobox einsteinium isotopes -[2018-02-13T00:46:58.079] [INFO] cheese - inserting 1000 documents. first: Bunker Hill (film) and last: NRN (disambiguation) -[2018-02-13T00:46:58.084] [INFO] cheese - inserting 1000 documents. first: Little Bones and last: Baulmes VD -[2018-02-13T00:46:58.100] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:46:58.118] [INFO] cheese - inserting 1000 documents. first: Opekiska, West Virginia and last: Indianapolis Freeman -[2018-02-13T00:46:58.131] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:46:58.164] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:46:58.182] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:58.189] [INFO] cheese - inserting 1000 documents. first: Clifford Scott (psychoanalyst) and last: DOS 5.50 -[2018-02-13T00:46:58.208] [INFO] cheese - inserting 1000 documents. first: Elachista triatomella and last: Ann-Marie Gyllenspetz -[2018-02-13T00:46:58.234] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:46:58.244] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:58.344] [INFO] cheese - inserting 1000 documents. first: Alexandria Ariana and last: Oberried am Brienzersee BE -[2018-02-13T00:46:58.363] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:46:58.379] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Elliot Scheiner and last: Apple I Computer -[2018-02-13T00:46:58.425] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:46:58.471] [INFO] cheese - inserting 1000 documents. first: Category:Sport in Kingston, Ontario and last: ElDorado (the movie) -[2018-02-13T00:46:58.512] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:46:58.516] [INFO] cheese - inserting 1000 documents. first: Glidersport LightHawk and last: Acrolepiopsis infundibulosa -[2018-02-13T00:46:58.553] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:46:58.628] [INFO] cheese - inserting 1000 documents. first: Hampton on sea and last: Category:Belarusian Soviet cosmonauts -[2018-02-13T00:46:58.662] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:46:58.667] [INFO] cheese - inserting 1000 documents. first: Black Wattle and last: Revolting Children -[2018-02-13T00:46:58.751] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:46:58.822] [INFO] cheese - inserting 1000 documents. first: Obersteckholz BE and last: Bellmore, NY -[2018-02-13T00:46:58.847] [INFO] cheese - inserting 1000 documents. first: Category:Millennia in Zimbabwe and last: Columbia Journal of Tax Law -[2018-02-13T00:46:58.872] [INFO] cheese - inserting 1000 documents. first: Category:2015 FIBA Americas Championship and last: Faunus anglewing -[2018-02-13T00:46:58.887] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:46:58.906] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:46:58.954] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:46:58.979] [INFO] cheese - inserting 1000 documents. first: Answer to life, universe and everything and last: Arsenal Underground station -[2018-02-13T00:46:59.020] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:46:59.043] [INFO] cheese - inserting 1000 documents. first: 2 P.M. and last: New Zealand DL class locomotive -[2018-02-13T00:46:59.133] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:46:59.168] [INFO] cheese - inserting 1000 documents. first: Ceratophyllus coahuilensis and last: Gray-hooded bush-tanager -[2018-02-13T00:46:59.253] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:46:59.326] [INFO] cheese - inserting 1000 documents. first: Babylon, NY and last: Bovernier, Switzerland -[2018-02-13T00:46:59.364] [INFO] cheese - inserting 1000 documents. first: Category:Sailboat type designs by Juan Kouyoumdjian and last: Francis Barnard (English cricketer) -[2018-02-13T00:46:59.397] [INFO] cheese - inserting 1000 documents. first: Pyshchugsky and last: Wikipedia:Articles for deletion/2011-12 Colwyn Bay F.C. season -[2018-02-13T00:46:59.400] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:46:59.420] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:46:59.454] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jochen Heisenberg and last: ⊇ -[2018-02-13T00:46:59.481] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:46:59.511] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:46:59.621] [INFO] cheese - inserting 1000 documents. first: NZR DK class and last: George Parker Scarburgh -[2018-02-13T00:46:59.696] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:46:59.734] [INFO] cheese - inserting 1000 documents. first: Bowil, Switzerland and last: Isenthal, Switzerland -[2018-02-13T00:46:59.782] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:46:59.884] [INFO] cheese - inserting 1000 documents. first: Template:Progressive Labor Party (Bermuda)/meta/color and last: Phosphorus virescens -[2018-02-13T00:46:59.942] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:46:59.985] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Rcardiffcity27 and last: Jim Hogan (disambiguation) -[2018-02-13T00:47:00.013] [INFO] cheese - inserting 1000 documents. first: Globules of fat and last: Floss pick -[2018-02-13T00:47:00.017] [INFO] cheese - inserting 1000 documents. first: Isérables, Switzerland and last: Siselen, Switzerland -[2018-02-13T00:47:00.043] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:47:00.047] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:47:00.063] [INFO] cheese - inserting 1000 documents. first: 2014–15 United States network television schedule (late night) and last: 2012–13 Austin Peay State Governors basketball team -[2018-02-13T00:47:00.065] [INFO] cheese - inserting 1000 documents. first: Partido del Sol and last: Timoteo Kamalehua Haʻalilio -[2018-02-13T00:47:00.087] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:00.139] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T00:47:00.142] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:47:00.296] [INFO] cheese - inserting 1000 documents. first: British-Dutch Wars and last: 1939-40 Football League Third Division South -[2018-02-13T00:47:00.334] [INFO] cheese - inserting 1000 documents. first: Jakaltek (disambiguation) and last: Anglo-Saxon Genealogies -[2018-02-13T00:47:00.339] [INFO] cheese - inserting 1000 documents. first: Sisikon, Switzerland and last: File:GrantHS(OR)Seal.png -[2018-02-13T00:47:00.339] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:47:00.367] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:47:00.376] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:47:00.508] [INFO] cheese - inserting 1000 documents. first: Fulham Broadway station and last: John F. Adams House -[2018-02-13T00:47:00.554] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:47:00.658] [INFO] cheese - inserting 1000 documents. first: Polish prisoners and internees in the Soviet Union and Lithuania (1919–21) and last: 9 Eridani -[2018-02-13T00:47:00.711] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:47:00.720] [INFO] cheese - inserting 1000 documents. first: Cambyreta and last: All Saints Day Flood -[2018-02-13T00:47:00.724] [INFO] cheese - inserting 1000 documents. first: County Route 77 (Cattaraugus County, New York) and last: Category:LGBT figure skaters -[2018-02-13T00:47:00.726] [INFO] cheese - inserting 1000 documents. first: File:Itm2a CCDS report.png and last: D. discoides -[2018-02-13T00:47:00.742] [INFO] cheese - inserting 1000 documents. first: Tilichiki Airport and last: Category:Johnstown Chiefs players -[2018-02-13T00:47:00.763] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:00.783] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:47:00.796] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:47:00.868] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:47:01.030] [INFO] cheese - inserting 1000 documents. first: Thirteen cards and last: Draft:Jero (musician) -[2018-02-13T00:47:01.087] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:01.130] [INFO] cheese - inserting 1000 documents. first: The Black Swan (Bert Jansch album) and last: Guillaume Moreau -[2018-02-13T00:47:01.205] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:47:01.232] [INFO] cheese - inserting 1000 documents. first: Christopher lee (singaporean actor) and last: Latin Tropical/Salsa Airplay -[2018-02-13T00:47:01.290] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:01.297] [INFO] cheese - inserting 1000 documents. first: Ruan Dreyer and last: County Route 113 (Sullivan County, New York) -[2018-02-13T00:47:01.297] [INFO] cheese - inserting 1000 documents. first: IWatch and last: Tikoma (ship) -[2018-02-13T00:47:01.370] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:47:01.371] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:47:01.421] [INFO] cheese - inserting 1000 documents. first: 2009 AL Central tie-breaker game and last: Exaggerate -[2018-02-13T00:47:01.487] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:47:01.499] [INFO] cheese - inserting 1000 documents. first: Corsi (ice hockey) and last: File:Queanbeyan City FC colours icon.png -[2018-02-13T00:47:01.557] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:47:01.602] [INFO] cheese - inserting 1000 documents. first: Felix Bryk and last: Category:Mythic aquatic creatures -[2018-02-13T00:47:01.647] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:47:01.788] [INFO] cheese - inserting 1000 documents. first: Thunder in the Morning Calm (novel) and last: Draft:Bluff Europe -[2018-02-13T00:47:01.837] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:47:01.906] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Broken Down Dam and last: File:Take Off (2017 film).jpg -[2018-02-13T00:47:01.915] [INFO] cheese - inserting 1000 documents. first: Trisadekaphobia and last: Wikipedia:Articles for deletion/2012 Twenty20 World Championship -[2018-02-13T00:47:01.922] [INFO] cheese - inserting 1000 documents. first: Barbara Hannigan and last: File:Radisson Hotel Logo.svg -[2018-02-13T00:47:01.940] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:47:01.948] [INFO] cheese - inserting 1000 documents. first: Template:2006 PBA Philippine Cup Playoffs bracket and last: File:Trlawards2012.jpg -[2018-02-13T00:47:01.966] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:47:01.978] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:01.996] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T00:47:02.047] [INFO] cheese - inserting 1000 documents. first: Category:Light Rapid Transit depots and last: John St George -[2018-02-13T00:47:02.079] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:02.213] [INFO] cheese - inserting 1000 documents. first: Cross Road (Mr. Children song) and last: Milking the Stars: A Reimagining Of Last Patrol -[2018-02-13T00:47:02.253] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:02.290] [INFO] cheese - inserting 1000 documents. first: Template:Tokyu Line Symbol and last: Category:Paleozoic Chile -[2018-02-13T00:47:02.320] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Nantucket County, Massachusetts and last: Selena Gomez & the Scene Discography -[2018-02-13T00:47:02.324] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:47:02.371] [INFO] cheese - inserting 1000 documents. first: Geology of the Rocky Mountains and last: Category:1952 Summer Olympics stubs -[2018-02-13T00:47:02.371] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:47:02.387] [INFO] cheese - inserting 1000 documents. first: Skibbereen Eagle and last: Clinton Duffy -[2018-02-13T00:47:02.428] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:47:02.430] [INFO] cheese - inserting 1000 documents. first: Pinstriping brush and last: Nutana SDA, Saskatoon, Saskatchewan -[2018-02-13T00:47:02.448] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:47:02.479] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:47:02.637] [INFO] cheese - inserting 1000 documents. first: Hoag, Nicholas and last: Serdang Raya North MRT Station -[2018-02-13T00:47:02.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramnagar,Alapur and last: Operation Redoubt -[2018-02-13T00:47:02.665] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:47:02.696] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:47:02.705] [INFO] cheese - inserting 1000 documents. first: Category:People educated by school in New Zealand and last: Wikipedia:Featured picture candidates/John Biddle -[2018-02-13T00:47:02.741] [INFO] cheese - batch complete in: 0.293 secs -[2018-02-13T00:47:02.764] [INFO] cheese - inserting 1000 documents. first: Capatcha and last: Wikipedia:Articles for deletion/Milivoje Božić -[2018-02-13T00:47:02.770] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/NWA Pro Wrestling Roster and last: Desk jockey -[2018-02-13T00:47:02.807] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:47:02.816] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:47:02.914] [INFO] cheese - inserting 1000 documents. first: Category:Persian rebels and last: 1972-73 Rheinlandliga -[2018-02-13T00:47:02.918] [INFO] cheese - inserting 1000 documents. first: University Heights SDA, Saskatoon, Saskatchewan and last: Agnostic Atheist -[2018-02-13T00:47:02.952] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:47:03.024] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:47:03.151] [INFO] cheese - inserting 1000 documents. first: Peter the Cossack and last: Template:Aaron Neville -[2018-02-13T00:47:03.217] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:03.220] [INFO] cheese - inserting 1000 documents. first: 924th Fighter Wing and last: File:Firoze Noon and Khaled Zia.jpg -[2018-02-13T00:47:03.229] [INFO] cheese - inserting 1000 documents. first: Hard Bop and last: Tito Guízar -[2018-02-13T00:47:03.294] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:47:03.314] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:03.386] [INFO] cheese - inserting 1000 documents. first: Help:Gadget-ImageAnnotator and last: Tour of Sardinia -[2018-02-13T00:47:03.404] [INFO] cheese - inserting 1000 documents. first: Heinz ketchup and last: Category:Event venues in Tennessee -[2018-02-13T00:47:03.455] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:47:03.477] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:47:03.652] [INFO] cheese - inserting 1000 documents. first: Rēzeknes District and last: Adam Cohan -[2018-02-13T00:47:03.717] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:47:03.753] [INFO] cheese - inserting 1000 documents. first: When Ladies Meet (film) and last: Kiga, Iran -[2018-02-13T00:47:03.819] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:47:03.912] [INFO] cheese - inserting 1000 documents. first: North Eastern and last: Oasys -[2018-02-13T00:47:03.923] [INFO] cheese - inserting 1000 documents. first: 1974 European Athletics Championships – Men's shot put and last: File:Braid-NoCoast-cover.jpg -[2018-02-13T00:47:03.982] [INFO] cheese - inserting 1000 documents. first: Filmfare Award for Best Music Director – Malayalam and last: Sarbo District -[2018-02-13T00:47:03.989] [INFO] cheese - inserting 1000 documents. first: Draft:DataToCapital Consulting and last: Wikipedia:Articles for deletion/Independent Talent Group Ltd. -[2018-02-13T00:47:03.986] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:47:03.993] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:47:04.062] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:47:04.087] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:47:04.267] [INFO] cheese - inserting 1000 documents. first: Fellgate station and last: Category:People from Chicago -[2018-02-13T00:47:04.336] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:47:04.439] [INFO] cheese - inserting 1000 documents. first: Charles Burney (priest) and last: Wikipedia:WikiProject Spam/Local/pakun.org -[2018-02-13T00:47:04.472] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 2015/Coquitlam—Port Coquitlam and last: Category:2010 sports in California -[2018-02-13T00:47:04.513] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:47:04.514] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:47:04.590] [INFO] cheese - inserting 1000 documents. first: Monastery Immaculate Conception and last: Ana Tapardel -[2018-02-13T00:47:04.638] [INFO] cheese - inserting 1000 documents. first: File:SeeTheDaySample.ogg and last: Wikipedia:Articles for deletion/Bat For Lashes -[2018-02-13T00:47:04.659] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:47:04.670] [INFO] cheese - inserting 1000 documents. first: Thomas Means and last: Minka bird -[2018-02-13T00:47:04.728] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:47:04.757] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:47:04.845] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Bigotilia and last: Category:Politics of Havering -[2018-02-13T00:47:04.855] [INFO] cheese - inserting 1000 documents. first: Egyptian-Russian relations and last: Template:Insignia/doc -[2018-02-13T00:47:04.883] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:47:04.923] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:47:05.062] [INFO] cheese - inserting 1000 documents. first: Hudson - Oka Icebridge and last: Niq Mhlongo -[2018-02-13T00:47:05.146] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:47:05.187] [INFO] cheese - inserting 1000 documents. first: File:Red Chillies Poster.jpg and last: Category:2006 in netball -[2018-02-13T00:47:05.190] [INFO] cheese - inserting 1000 documents. first: The Best Bang and last: File:Logo eFront.jpg -[2018-02-13T00:47:05.248] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:47:05.299] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:47:05.324] [INFO] cheese - inserting 1000 documents. first: Cosmophyllum (insect genus) and last: 1982 European Athletics Indoor Championships – Women's 1500 metres -[2018-02-13T00:47:05.349] [INFO] cheese - inserting 1000 documents. first: List of states in the Holy Roman Empire (S) and last: Kamichetty Venugopala Rao Naidou -[2018-02-13T00:47:05.367] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:47:05.469] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:47:05.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Deletion sorting/Museums and libraries and last: Wikipedia:Version 1.0 Editorial Team/DC comics articles by quality/2 -[2018-02-13T00:47:05.797] [INFO] cheese - inserting 1000 documents. first: Nicholas Mhlongo and last: Godwin Ababaka -[2018-02-13T00:47:05.801] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T00:47:05.890] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:47:05.923] [INFO] cheese - inserting 1000 documents. first: Consumers Federation of Australia and last: Macy-Colby House -[2018-02-13T00:47:05.962] [INFO] cheese - inserting 1000 documents. first: Kizilsky Kozhuun and last: Anna Wilson (disambiguation) -[2018-02-13T00:47:05.987] [INFO] cheese - inserting 1000 documents. first: X.Org Developer's Conference and last: Lyzohub government -[2018-02-13T00:47:06.015] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:47:06.074] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T00:47:06.096] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T00:47:06.132] [INFO] cheese - inserting 1000 documents. first: Gustav Mahler Jugendorchester and last: High Street, Victoria, Australia -[2018-02-13T00:47:06.189] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:47:06.398] [INFO] cheese - inserting 1000 documents. first: Nanhui County and last: Template:Ross County F.C. -[2018-02-13T00:47:06.475] [INFO] cheese - inserting 1000 documents. first: 2005 D1 Grand Prix season and last: MasterChef (U.S. season 8) -[2018-02-13T00:47:06.480] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:47:06.513] [INFO] cheese - inserting 1000 documents. first: Mușata and last: Portal:Jazz/Selected picture/89 -[2018-02-13T00:47:06.556] [INFO] cheese - inserting 1000 documents. first: Alloway Township School District and last: Modereko -[2018-02-13T00:47:06.564] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:47:06.614] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:06.638] [INFO] cheese - inserting 1000 documents. first: Earlscourt, Toronto and last: Feis Maitiu Corcaigh -[2018-02-13T00:47:06.651] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T00:47:06.700] [INFO] cheese - inserting 1000 documents. first: Ted milton and last: Louisa Ann Swain -[2018-02-13T00:47:06.715] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:47:06.774] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:47:06.991] [INFO] cheese - inserting 1000 documents. first: Category:2013–14 in Latvian ice hockey and last: 40 Librae -[2018-02-13T00:47:07.040] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:07.116] [INFO] cheese - inserting 1000 documents. first: Virgin Broadband (UK) and last: Force (Superfly album) -[2018-02-13T00:47:07.125] [INFO] cheese - inserting 1000 documents. first: W. D. Mohammed High School and last: Falcon 9 Flight 8 upper stage -[2018-02-13T00:47:07.174] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:47:07.238] [INFO] cheese - inserting 1000 documents. first: Category:Lo Fidelity Allstars albums and last: Sokol'skii Raion -[2018-02-13T00:47:07.241] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:47:07.286] [INFO] cheese - inserting 1000 documents. first: File:Pitteurs.jpg and last: 2008 Lebanon Conflict -[2018-02-13T00:47:07.294] [INFO] cheese - inserting 1000 documents. first: NV 319 and last: Wikipedia:Articles for deletion/Lil Fate -[2018-02-13T00:47:07.305] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:07.383] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:47:07.391] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:47:07.507] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dilipa and last: Category:2004–05 in Bulgarian ice hockey -[2018-02-13T00:47:07.568] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T00:47:07.710] [INFO] cheese - inserting 1000 documents. first: Krähenberg, Bremen and last: Disney Infinity Marvel Super Heroes -[2018-02-13T00:47:07.769] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:47:07.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mgallop and last: Buffalo River (Groot River) -[2018-02-13T00:47:07.928] [INFO] cheese - inserting 1000 documents. first: Category:Keyboardists from Northern Ireland and last: Piy-Khemsky -[2018-02-13T00:47:07.965] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:47:08.004] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:08.077] [INFO] cheese - inserting 1000 documents. first: Category:7th Jatiyo Sangshad members and last: Stop-n-Go -[2018-02-13T00:47:08.085] [INFO] cheese - inserting 1000 documents. first: File:Rebelwithoutbookcover.jpg and last: Jupiter Science Academy -[2018-02-13T00:47:08.087] [INFO] cheese - inserting 1000 documents. first: EMT-I/85 and last: Academia das Ciências de Lisboa -[2018-02-13T00:47:08.133] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:47:08.146] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:47:08.169] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:47:08.242] [INFO] cheese - inserting 1000 documents. first: Altamura railway station and last: Dinosaurology -[2018-02-13T00:47:08.277] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T00:47:08.446] [INFO] cheese - inserting 1000 documents. first: Thomas Heurtel and last: Template:Did you know nominations/Mitsubishi Motors Corp. v. Soler Chrysler-Plymouth, Inc. -[2018-02-13T00:47:08.488] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:08.495] [INFO] cheese - inserting 1000 documents. first: Piy-Khemskiy and last: Template:Swiss populations/testcases -[2018-02-13T00:47:08.535] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:08.562] [INFO] cheese - inserting 1000 documents. first: Pan-tsu and last: Draft:OKICA -[2018-02-13T00:47:08.567] [INFO] cheese - inserting 1000 documents. first: Kamen Rider Black (manga) and last: File:Enlarged Silhouette.jpg -[2018-02-13T00:47:08.610] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:47:08.620] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:47:08.627] [INFO] cheese - inserting 1000 documents. first: Online Newspaper and last: Morrisville–Stowe State Airport -[2018-02-13T00:47:08.692] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:08.770] [INFO] cheese - inserting 1000 documents. first: Category:1977 in Vatican City and last: Category:People from Sol Plaatje Local Municipality -[2018-02-13T00:47:08.811] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:47:08.851] [INFO] cheese - inserting 1000 documents. first: Category:People of Monegasque descent and last: TOKYO GIRLS' STYLE -[2018-02-13T00:47:08.897] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wikinfo (6th nomination) and last: Category:Tunnels in Nevada -[2018-02-13T00:47:08.902] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:47:08.963] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:47:08.986] [INFO] cheese - inserting 1000 documents. first: Juan Diego Gutiérrez and last: Sequoyah state park -[2018-02-13T00:47:08.997] [INFO] cheese - inserting 1000 documents. first: File:Prime Minister P. V. Narasimha Rao with Subramanian Swamy 1991.jpg and last: Deareating feed tank -[2018-02-13T00:47:09.039] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:47:09.039] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:47:09.055] [INFO] cheese - inserting 1000 documents. first: MVL and last: Wikipedia:Articles for deletion/Run your boy -[2018-02-13T00:47:09.107] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:47:09.205] [INFO] cheese - inserting 1000 documents. first: Robert J Healey and last: Kent Crusaders -[2018-02-13T00:47:09.253] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T00:47:09.285] [INFO] cheese - inserting 1000 documents. first: File:Bukovyna 2009.png and last: X-51 (Machine Man) -[2018-02-13T00:47:09.331] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:47:09.509] [INFO] cheese - inserting 1000 documents. first: Half-bond and last: Y B Normal? -[2018-02-13T00:47:09.510] [INFO] cheese - inserting 1000 documents. first: Italians in Cuba and last: Kim Tairoa -[2018-02-13T00:47:09.523] [INFO] cheese - inserting 1000 documents. first: Backwater (film) and last: Category:Malaysian non-fiction literature -[2018-02-13T00:47:09.591] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:47:09.617] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:47:09.660] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:47:09.711] [INFO] cheese - inserting 1000 documents. first: Novelty (train) and last: Savoir Faire -[2018-02-13T00:47:09.766] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:47:09.840] [INFO] cheese - inserting 1000 documents. first: Techlink and last: Carbaca prognealis -[2018-02-13T00:47:09.923] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:47:10.022] [INFO] cheese - inserting 1000 documents. first: Pi (Kate Bush song) and last: Carlos André Jesus -[2018-02-13T00:47:10.054] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:47:10.123] [INFO] cheese - inserting 1000 documents. first: Seaway Trail Discovery Center and last: Creeping water bug -[2018-02-13T00:47:10.164] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:47:10.165] [INFO] cheese - inserting 1000 documents. first: Crown Lands Act 1623 and last: Habeshli -[2018-02-13T00:47:10.212] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:47:10.247] [INFO] cheese - inserting 1000 documents. first: Category:PowerPC Macintosh computers and last: Wikipedia:WikiProject Judaism/featured -[2018-02-13T00:47:10.295] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:47:10.347] [INFO] cheese - inserting 1000 documents. first: Satellite Award for Best DVD Extras and last: Category:Songs written by Rasmus Seebach -[2018-02-13T00:47:10.372] [INFO] cheese - inserting 1000 documents. first: Hafler circuit and last: The LEGO Movie Videogame -[2018-02-13T00:47:10.390] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:47:10.421] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:47:10.521] [INFO] cheese - inserting 1000 documents. first: Habishi and last: Template:Editnotices/Page/Rush (band) -[2018-02-13T00:47:10.539] [INFO] cheese - inserting 1000 documents. first: Latitude 49 degrees N and last: 3017 Petrovič -[2018-02-13T00:47:10.555] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:47:10.586] [INFO] cheese - inserting 1000 documents. first: File:Black N Blue Black N Blue.jpg and last: Canal des Vosges -[2018-02-13T00:47:10.589] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:47:10.653] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T00:47:10.705] [INFO] cheese - inserting 1000 documents. first: Medscape General Medicine and last: Template:Taxonomy/Nuphar sect. Nuphar -[2018-02-13T00:47:10.720] [INFO] cheese - inserting 1000 documents. first: File:Je crois toi promo.jpg and last: CA Rentistas -[2018-02-13T00:47:10.778] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:47:10.792] [INFO] cheese - inserting 1000 documents. first: Construction dumpster and last: Dave McComas -[2018-02-13T00:47:10.797] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:47:10.845] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:47:10.890] [INFO] cheese - inserting 1000 documents. first: Filomeno Mata Totonac and last: Category:1138 in art -[2018-02-13T00:47:10.931] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:10.985] [INFO] cheese - inserting 1000 documents. first: Template:Jackson County, Tennessee and last: The Minotaur (opera) -[2018-02-13T00:47:11.036] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:47:11.078] [INFO] cheese - inserting 1000 documents. first: Hélène Perret and last: VEXNEWS -[2018-02-13T00:47:11.136] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:47:11.163] [INFO] cheese - inserting 1000 documents. first: Abdoulaye Soumah and last: Buile Suibne -[2018-02-13T00:47:11.283] [INFO] cheese - inserting 1000 documents. first: Edson Cardoso and last: List of senators from Newfoundland and Labrador -[2018-02-13T00:47:11.295] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:47:11.331] [INFO] cheese - inserting 1000 documents. first: Squirrel River (Wisconsin) and last: Laxmanpur-a village of Vaishali -[2018-02-13T00:47:11.387] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:11.384] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:47:11.472] [INFO] cheese - inserting 1000 documents. first: Busenbach–Ittersbach railway and last: Golden Girls (disambiguation) -[2018-02-13T00:47:11.538] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T00:47:11.700] [INFO] cheese - inserting 1000 documents. first: File:Sitting king logo.png and last: Je serai (ta meilleure amie) -[2018-02-13T00:47:11.752] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:47:11.794] [INFO] cheese - inserting 1000 documents. first: Category:American multimedia artists and last: Marie-Louise Bévis -[2018-02-13T00:47:11.855] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:47:11.895] [INFO] cheese - inserting 1000 documents. first: Sir Arthur Cotton and last: Spirit Mountain (ski area) -[2018-02-13T00:47:11.930] [INFO] cheese - inserting 1000 documents. first: List of senators from Nova Scotia and last: Mark Kachanov -[2018-02-13T00:47:11.978] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:47:11.985] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:47:11.997] [INFO] cheese - inserting 1000 documents. first: Adelpherupa terreus and last: Aude (writer) -[2018-02-13T00:47:12.027] [INFO] cheese - inserting 1000 documents. first: Category:Boston Cannons players and last: Empresa Interbancária de Serviços -[2018-02-13T00:47:12.073] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:47:12.133] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:47:12.230] [INFO] cheese - inserting 1000 documents. first: Øyeflaten Station and last: Category:1867 in Asia -[2018-02-13T00:47:12.314] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:47:12.442] [INFO] cheese - inserting 1000 documents. first: Marie Louise Bevis and last: Rodney Alcala -[2018-02-13T00:47:12.490] [INFO] cheese - inserting 1000 documents. first: Piran Bishop and last: Yunker -[2018-02-13T00:47:12.493] [INFO] cheese - inserting 1000 documents. first: Alexa & Katie and last: Category:BWF ID different from Wikidata -[2018-02-13T00:47:12.507] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:47:12.521] [INFO] cheese - inserting 1000 documents. first: Operating structure and last: Shashank R. Joshi -[2018-02-13T00:47:12.565] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:12.570] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:47:12.590] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:12.704] [INFO] cheese - inserting 1000 documents. first: Category:2006 FIFA World Cup qualification (CAF) and last: Glam Slam West -[2018-02-13T00:47:12.805] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:47:12.859] [INFO] cheese - inserting 1000 documents. first: 13816 Stülpner and last: Ken Jones (disambiguation) -[2018-02-13T00:47:12.912] [INFO] cheese - inserting 1000 documents. first: Austrosticta fieldi and last: Fshati turistik DARDHË -[2018-02-13T00:47:12.930] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:47:12.952] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:47:13.033] [INFO] cheese - inserting 1000 documents. first: Dovercourt Village and last: List of films based on war books — peace -[2018-02-13T00:47:13.113] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T00:47:13.131] [INFO] cheese - inserting 1000 documents. first: Farmingdale Observer and last: Mother-in-law's Cushion -[2018-02-13T00:47:13.196] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Battle of Crazy Woman's Fork and last: Wikipedia:Articles for deletion/Skywind -[2018-02-13T00:47:13.208] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:47:13.270] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:47:13.341] [INFO] cheese - inserting 1000 documents. first: Lê Trung Tông (Early Lê) and last: Category:2002–03 in American college basketball -[2018-02-13T00:47:13.370] [INFO] cheese - inserting 1000 documents. first: Template:Planetmath instructions and last: Aubanel Wind Project -[2018-02-13T00:47:13.380] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T00:47:13.429] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:47:13.537] [INFO] cheese - inserting 1000 documents. first: Salim bin Thuwaini and last: Illinois River Valley -[2018-02-13T00:47:13.605] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T00:47:13.679] [INFO] cheese - inserting 1000 documents. first: File:Billy Joe Shaver - Long in the Tooth.jpg and last: Portal:San Diego County/Selected pictures/16 -[2018-02-13T00:47:13.718] [INFO] cheese - inserting 1000 documents. first: Popess Joan and last: Category:WikiProject Cuba members -[2018-02-13T00:47:13.735] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lookatmyfire.com and last: Category:Seychellois diaspora -[2018-02-13T00:47:13.738] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:47:13.781] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:47:13.805] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T00:47:13.896] [INFO] cheese - inserting 1000 documents. first: 1928 Pacific Tigers football team and last: Category:People from Barguna district -[2018-02-13T00:47:13.957] [INFO] cheese - inserting 1000 documents. first: Triga (chariot) and last: Uintah Meridian -[2018-02-13T00:47:13.959] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:47:14.012] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:47:14.039] [INFO] cheese - inserting 1000 documents. first: Minnesota River Valley and last: Barazin -[2018-02-13T00:47:14.108] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T00:47:14.142] [INFO] cheese - inserting 1000 documents. first: Portal:San Diego County/Selected pictures/17 and last: 1948 Orszagos Bajnoksag I (men's water polo) -[2018-02-13T00:47:14.205] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:47:14.218] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions in East Timor and last: Wikipedia:Articles for deletion/When Brummies Met Sindhis -[2018-02-13T00:47:14.284] [INFO] cheese - inserting 1000 documents. first: Christopher Wilcock and last: Alex Flinn -[2018-02-13T00:47:14.294] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:47:14.339] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:47:14.404] [INFO] cheese - inserting 1000 documents. first: 1948 Taca de Portugal Final and last: 2012 Internazionali Tennis Val Gardena Sudtirol – Singles -[2018-02-13T00:47:14.418] [INFO] cheese - inserting 1000 documents. first: Ryobi Holdings and last: FC Vermoim -[2018-02-13T00:47:14.428] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:47:14.460] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:47:14.463] [INFO] cheese - inserting 1000 documents. first: Template:Largest cities of Somalia and last: Category:Pentathlon navigational boxes -[2018-02-13T00:47:14.488] [INFO] cheese - inserting 1000 documents. first: Sequential exit numbering and last: County Route J132 (Tuolumne County, California) -[2018-02-13T00:47:14.512] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:47:14.542] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:47:14.663] [INFO] cheese - inserting 1000 documents. first: 2012 Kosice Open and last: File:SocialMarketFoundationLogoOfficial.jpg -[2018-02-13T00:47:14.719] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:47:14.802] [INFO] cheese - inserting 1000 documents. first: Template:Central Pulse and last: Category:People from Zubří -[2018-02-13T00:47:14.858] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:47:15.015] [INFO] cheese - inserting 1000 documents. first: Draft:Michael Reisch and last: Category:Lists of road transport incidents -[2018-02-13T00:47:15.024] [INFO] cheese - inserting 1000 documents. first: 5 (Alizee album) and last: Alberto Perez (musician) -[2018-02-13T00:47:15.042] [INFO] cheese - inserting 1000 documents. first: Pietro Vitalini and last: Ivan Parke -[2018-02-13T00:47:15.092] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:47:15.102] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:47:15.119] [INFO] cheese - inserting 1000 documents. first: County Route J132 (Mariposa County, California) and last: 2 P -[2018-02-13T00:47:15.142] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:47:15.195] [INFO] cheese - inserting 1000 documents. first: Naviamente and last: 1899 Georgia Bulldogs football team -[2018-02-13T00:47:15.234] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:47:15.337] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:47:15.359] [INFO] cheese - inserting 1000 documents. first: Draft:Jusufi and last: Andre Zimmermann -[2018-02-13T00:47:15.427] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:47:15.520] [INFO] cheese - inserting 1000 documents. first: Sidi Slimane Airport and last: Qin Shi Huang's wars of unification -[2018-02-13T00:47:15.608] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T00:47:15.720] [INFO] cheese - inserting 1000 documents. first: Andre baronets and last: Virginia State Route 4A (1935-1937) -[2018-02-13T00:47:15.755] [INFO] cheese - inserting 1000 documents. first: Adrien Duvillard (alpine skier born 1969) and last: Walt (Hollyoaks) -[2018-02-13T00:47:15.762] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:47:15.787] [INFO] cheese - inserting 1000 documents. first: Paul tergat and last: Apostolic Prefecture of Calabar -[2018-02-13T00:47:15.818] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:47:15.834] [INFO] cheese - inserting 1000 documents. first: File:Map of Horsham Township, Montgomery County, Pennsylvania Highlighted.gif and last: Alison Bishop -[2018-02-13T00:47:15.838] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:47:15.904] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:47:15.963] [INFO] cheese - inserting 1000 documents. first: Atalar, Savsat and last: Category:2000 disestablishments in Massachusetts -[2018-02-13T00:47:15.988] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:47:15.992] [INFO] cheese - inserting 1000 documents. first: Manchester Exchange and last: Cadaver Trial -[2018-02-13T00:47:16.055] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:47:16.091] [INFO] cheese - inserting 1000 documents. first: Leland v. Oregon and last: Category:Tourism in the Western Cape -[2018-02-13T00:47:16.134] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:47:16.147] [INFO] cheese - inserting 1000 documents. first: Category:V8 Supercar and last: 2017 in Kenyan football -[2018-02-13T00:47:16.183] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:47:16.208] [INFO] cheese - inserting 1000 documents. first: Alison Lurie (Bishop) and last: Ensiform cartilage -[2018-02-13T00:47:16.239] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:47:16.303] [INFO] cheese - inserting 1000 documents. first: Battle of Parkumaki and last: Andrew Cole (musician) -[2018-02-13T00:47:16.330] [INFO] cheese - inserting 1000 documents. first: Auditory moving-window and last: Green Chri$tma$ -[2018-02-13T00:47:16.340] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:47:16.393] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:16.481] [INFO] cheese - inserting 1000 documents. first: Pratt's Falls Park and last: Draft:James Bautista -[2018-02-13T00:47:16.495] [INFO] cheese - inserting 1000 documents. first: Chortodes elymi and last: Wikipedia:Puffery -[2018-02-13T00:47:16.502] [INFO] cheese - inserting 1000 documents. first: Wild West shows and last: Wikipedia:Articles for deletion/Scott Sherman -[2018-02-13T00:47:16.519] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:47:16.552] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:47:16.556] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:47:16.602] [INFO] cheese - inserting 1000 documents. first: BCS Professional Examinations and last: Wikipedia:Articles for deletion/Scot24news -[2018-02-13T00:47:16.633] [INFO] cheese - inserting 1000 documents. first: Torre River, Portugal and last: Burhanettin Bigali -[2018-02-13T00:47:16.650] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:47:16.666] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:47:16.726] [INFO] cheese - inserting 1000 documents. first: Uyghur New script and last: Hat Trick -[2018-02-13T00:47:16.775] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:47:16.814] [INFO] cheese - inserting 1000 documents. first: Estadio Municipal de Santo Domingo (Alcorcón) and last: Mira, Lawrence -[2018-02-13T00:47:16.853] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T00:47:16.892] [INFO] cheese - inserting 1000 documents. first: Shivaji Engineering College, Akola and last: Goyü -[2018-02-13T00:47:16.951] [INFO] cheese - inserting 1000 documents. first: Burhaniye, Vezirkopru and last: Cecilio Dominguez -[2018-02-13T00:47:16.965] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:47:16.988] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:47:17.019] [INFO] cheese - inserting 1000 documents. first: Elza Gazuyeva and last: Wikipedia:Version 1.0 Editorial Team/Philosophers articles by quality -[2018-02-13T00:47:17.090] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:47:17.160] [INFO] cheese - inserting 1000 documents. first: Haroriya and last: Miss USA 1984 -[2018-02-13T00:47:17.214] [INFO] cheese - inserting 1000 documents. first: Template:User Pune Warriors India 1 and last: Frédéric Covili -[2018-02-13T00:47:17.227] [INFO] cheese - inserting 1000 documents. first: Cecilio Guzman de Rojas and last: Wikipedia:Meetup/UK/Sheffield 1 -[2018-02-13T00:47:17.267] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:47:17.285] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:47:17.289] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:47:17.342] [INFO] cheese - inserting 1000 documents. first: Lagenochitina dalbyensis and last: File:WWNT ACTIVA1380 logo.png -[2018-02-13T00:47:17.383] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:47:17.567] [INFO] cheese - inserting 1000 documents. first: Andres Chitiva and last: Market Street Tunnel (San Francisco) -[2018-02-13T00:47:17.569] [INFO] cheese - inserting 1000 documents. first: College Louise-Michel in Paris and last: Box wagon -[2018-02-13T00:47:17.626] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:47:17.656] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:47:17.716] [INFO] cheese - inserting 1000 documents. first: Phoenix Star and last: Hiroshi Fukushima -[2018-02-13T00:47:17.757] [INFO] cheese - inserting 1000 documents. first: Tatsuguchi and last: Galeopsis speciosa -[2018-02-13T00:47:17.768] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:47:17.842] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T00:47:17.846] [INFO] cheese - inserting 1000 documents. first: James Hutchison Cockburn and last: Munster pilchard fishery 1570-1750 -[2018-02-13T00:47:17.905] [INFO] cheese - inserting 1000 documents. first: Heliophanus proszynskii and last: Marc Barta -[2018-02-13T00:47:17.906] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:47:17.909] [INFO] cheese - inserting 1000 documents. first: Danisment, Yenipazar and last: Erik De Boer -[2018-02-13T00:47:17.970] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:47:17.985] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:47:18.202] [INFO] cheese - inserting 1000 documents. first: Donato Alvarez and last: Electrodomesticos -[2018-02-13T00:47:18.216] [INFO] cheese - inserting 1000 documents. first: Maryland State Highway 611 and last: Guanella Pass Scenic Byway -[2018-02-13T00:47:18.222] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:47:18.232] [INFO] cheese - inserting 1000 documents. first: File:Cavalryatbalaklava2.jpg and last: W209AG -[2018-02-13T00:47:18.265] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:47:18.284] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:47:18.298] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/silverspringpenguin.com and last: Portal:American football/Selected picture/2008 21 -[2018-02-13T00:47:18.335] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:47:18.336] [INFO] cheese - inserting 1000 documents. first: Albert Anae and last: Queen Street bus station, Brisbane -[2018-02-13T00:47:18.357] [INFO] cheese - inserting 1000 documents. first: Category:Macedonian people of Finnish descent and last: Society of the Four Arts Gardens -[2018-02-13T00:47:18.378] [INFO] cheese - inserting 1000 documents. first: Electronic Cafe International and last: Fabian Bosch -[2018-02-13T00:47:18.384] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:47:18.398] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:47:18.402] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:47:18.563] [INFO] cheese - inserting 1000 documents. first: April 1st Vidudala and last: Frantisek Adam Mica -[2018-02-13T00:47:18.585] [INFO] cheese - batch complete in: 0.183 secs -[2018-02-13T00:47:18.621] [INFO] cheese - inserting 1000 documents. first: W230BD and last: Badulla Electoral District -[2018-02-13T00:47:18.661] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:18.669] [INFO] cheese - inserting 1000 documents. first: US Park Police and last: Wikipedia:Articles for deletion/Crack cocaine and hip hop -[2018-02-13T00:47:18.672] [INFO] cheese - inserting 1000 documents. first: Smiths Creek, Kentucky and last: Category:Arabic drinks -[2018-02-13T00:47:18.695] [INFO] cheese - inserting 1000 documents. first: Prachi Mishra and last: Ulinzi Stars F.C. -[2018-02-13T00:47:18.709] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:47:18.731] [INFO] cheese - inserting 1000 documents. first: Firebug and last: 55th (West Lancashire) Infantry Division (United Kingdom) -[2018-02-13T00:47:18.736] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:47:18.738] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:47:18.788] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:18.812] [INFO] cheese - inserting 1000 documents. first: Yellow-throated wood-warbler and last: Tahina Palm -[2018-02-13T00:47:18.843] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:47:18.965] [INFO] cheese - inserting 1000 documents. first: George Khevenhuller and last: Gerard Rudolf -[2018-02-13T00:47:18.983] [INFO] cheese - batch complete in: 0.14 secs -[2018-02-13T00:47:19.019] [INFO] cheese - inserting 1000 documents. first: 71st Infantry Division (Russian Empire) and last: Category:Holy Roman Empire–Portugal relations -[2018-02-13T00:47:19.058] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:47:19.070] [INFO] cheese - inserting 1000 documents. first: The Loved One (song) and last: Category:Renaissance Papacy -[2018-02-13T00:47:19.083] [INFO] cheese - inserting 1000 documents. first: Front projector and last: Münchringen (Berne) -[2018-02-13T00:47:19.117] [INFO] cheese - inserting 1000 documents. first: 48th (South Midland) Infantry Division (United Kingdom) and last: William G. Congdon -[2018-02-13T00:47:19.123] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:47:19.128] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:47:19.150] [INFO] cheese - inserting 1000 documents. first: Gerard Theberge and last: Henrik Jorgen Huitfeldt-Kaas -[2018-02-13T00:47:19.154] [INFO] cheese - inserting 1000 documents. first: Ulinzi Stars FC and last: COOL Award Winners -[2018-02-13T00:47:19.164] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:19.187] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:47:19.281] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T00:47:19.389] [INFO] cheese - inserting 1000 documents. first: Münsingen (Berne) and last: Vuadens (Fribourg) -[2018-02-13T00:47:19.453] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:47:19.500] [INFO] cheese - inserting 1000 documents. first: Henrik Jorgen Schibsted Huitfeldt and last: Category:Women's volleyball teams -[2018-02-13T00:47:19.524] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T00:47:19.666] [INFO] cheese - inserting 1000 documents. first: 2002 Catalunyan motorcycle Grand Prix and last: International Society of Limnology -[2018-02-13T00:47:19.675] [INFO] cheese - inserting 1000 documents. first: Rosebudd's Revenge and last: Zambezi Yellow-bellied Greenbul -[2018-02-13T00:47:19.677] [INFO] cheese - inserting 1000 documents. first: Vuarmarens (Fribourg) and last: Marthalen (Zurich) -[2018-02-13T00:47:19.680] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Comanche County, Kansas and last: Wikipedia:Sockpuppet investigations/Hfiiz deshi MC -[2018-02-13T00:47:19.697] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:47:19.731] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:47:19.736] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:47:19.737] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:47:19.792] [INFO] cheese - inserting 1000 documents. first: Mount Saint Joseph and last: List of military diving units -[2018-02-13T00:47:19.877] [INFO] cheese - inserting 1000 documents. first: Category:Women's volleyball teams in Serbia and last: A l'ami qui ne m'a pas sauve la vie -[2018-02-13T00:47:19.894] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:47:19.898] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:47:20.013] [INFO] cheese - inserting 1000 documents. first: Maschwanden (Zurich) and last: Liestal (Basel-Land) -[2018-02-13T00:47:20.044] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:47:20.268] [INFO] cheese - inserting 1000 documents. first: A l'ombre and last: Ciflik, Demir Kapija -[2018-02-13T00:47:20.287] [INFO] cheese - inserting 1000 documents. first: Small leaf beaufortia and last: I've Got a Feeling (New Order song) -[2018-02-13T00:47:20.288] [INFO] cheese - inserting 1000 documents. first: The Fire in Your Eyes and last: WRES -[2018-02-13T00:47:20.301] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:47:20.344] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:47:20.353] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:20.365] [INFO] cheese - inserting 1000 documents. first: Alexander Kotzebue and last: Christian Howes (musician) -[2018-02-13T00:47:20.362] [INFO] cheese - inserting 1000 documents. first: Category:Art museums established in 1831 and last: Lebiazhyevskii Raion -[2018-02-13T00:47:20.435] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:47:20.453] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:47:20.616] [INFO] cheese - inserting 1000 documents. first: Lupsingen (Basel-Land) and last: Lynn Road -[2018-02-13T00:47:20.622] [INFO] cheese - inserting 1000 documents. first: Lawrence M. Rulison and last: New Britain kingfisher -[2018-02-13T00:47:20.649] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:47:20.661] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:20.790] [INFO] cheese - inserting 1000 documents. first: List of wealthiest people in Kenya and last: International Breweries Plc -[2018-02-13T00:47:20.797] [INFO] cheese - inserting 1000 documents. first: Band of the Irish Guards and last: C. Randy Taylor -[2018-02-13T00:47:20.803] [INFO] cheese - inserting 1000 documents. first: Lebiazh'yevsky Raion and last: Owlia -[2018-02-13T00:47:20.822] [INFO] cheese - inserting 1000 documents. first: Janos Jeszenak and last: John Narvaez -[2018-02-13T00:47:20.830] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:20.841] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:47:20.845] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:47:20.876] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:47:20.899] [INFO] cheese - inserting 1000 documents. first: Public sector debt and last: Grimes House -[2018-02-13T00:47:20.946] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:47:21.082] [INFO] cheese - inserting 1000 documents. first: Complainte pour Ste. Cathérine and last: Jose Torres Laboy -[2018-02-13T00:47:21.105] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:47:21.107] [INFO] cheese - inserting 1000 documents. first: Loss-DiVincenzo and last: Jay Bakker -[2018-02-13T00:47:21.145] [INFO] cheese - inserting 1000 documents. first: Ψ Pegasi and last: Template:POTD/2017-04-26 -[2018-02-13T00:47:21.178] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:21.200] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:47:21.292] [INFO] cheese - inserting 1000 documents. first: Serafino Cavalli and last: 2012 CIS football season -[2018-02-13T00:47:21.314] [INFO] cheese - inserting 1000 documents. first: George E. Edwards and last: Shoe-shining -[2018-02-13T00:47:21.393] [INFO] cheese - inserting 1000 documents. first: Jose Torres Ramirez and last: Kan man alska na'n pa avstand -[2018-02-13T00:47:21.416] [INFO] cheese - inserting 1000 documents. first: Opokuma and last: Agrostis tenuis var. pumila -[2018-02-13T00:47:21.419] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:47:21.403] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:47:21.503] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:47:21.546] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:47:21.868] [INFO] cheese - inserting 1000 documents. first: List of Major League Baseball career putouts as a right fielder leaders and last: Griseargiolestes intermedius -[2018-02-13T00:47:21.921] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Edgar Quinet-class cruiser and last: Klaus Kaergard -[2018-02-13T00:47:21.973] [INFO] cheese - inserting 1000 documents. first: Racial quotas and last: 52872 Okyrhoe -[2018-02-13T00:47:21.998] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:47:21.997] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:47:22.140] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:47:22.363] [INFO] cheese - inserting 1000 documents. first: File:Lightsleeperfilm.jpg and last: 2009–10 UEFA Europa League knockout stage -[2018-02-13T00:47:22.408] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese-language operas and last: Category:Sudanese prisoners and detainees -[2018-02-13T00:47:22.416] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T00:47:22.469] [INFO] cheese - inserting 1000 documents. first: Klaus Zahringer and last: Laby Church -[2018-02-13T00:47:22.518] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:47:22.594] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T00:47:22.633] [INFO] cheese - inserting 1000 documents. first: Template:2012 OUA football standings and last: Phemeranthus rugospermus -[2018-02-13T00:47:22.740] [INFO] cheese - inserting 1000 documents. first: 14 Days to Life and last: Wikipedia:Featured picture candidates/Train on the Bernina line, Switzerland -[2018-02-13T00:47:22.785] [INFO] cheese - batch complete in: 1.382 secs -[2018-02-13T00:47:22.794] [INFO] cheese - inserting 1000 documents. first: Vincent Gigs and last: International Institute for Environment and Development -[2018-02-13T00:47:22.813] [INFO] cheese - inserting 1000 documents. first: Labyrinth (Miro, Joan) and last: Wikipedia:Today's articles for improvement/2014/42 -[2018-02-13T00:47:22.833] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:47:22.862] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T00:47:22.903] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T00:47:23.033] [INFO] cheese - inserting 1000 documents. first: List of Lulea HF seasons and last: Lyden na -[2018-02-13T00:47:23.073] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:47:23.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/betheboss.ca and last: Template:Cite German law/core -[2018-02-13T00:47:23.157] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:47:23.168] [INFO] cheese - inserting 1000 documents. first: Jenny Robinson and last: Template:Fb team Bidco United -[2018-02-13T00:47:23.176] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2008 May 18 and last: Raffaele Fitto -[2018-02-13T00:47:23.222] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:47:23.258] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:47:23.269] [INFO] cheese - inserting 1000 documents. first: 2017–18 Tampa Bay Lightning season and last: File:Long-Strange-Trip-soundtrack-album.jpg -[2018-02-13T00:47:23.288] [INFO] cheese - inserting 1000 documents. first: Lydia Ludic Burundi Academic FC and last: Mario Bonic -[2018-02-13T00:47:23.319] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:47:23.332] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:47:23.357] [INFO] cheese - inserting 1000 documents. first: Tom stephens and last: Karl Fredrich Bonhoeffer -[2018-02-13T00:47:23.409] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:47:23.537] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Anniversaries/April/April 1 and last: Bobber (fishing) -[2018-02-13T00:47:23.583] [INFO] cheese - inserting 1000 documents. first: Mario Brandao da Silveira and last: Category:People from Hauppauge, New York -[2018-02-13T00:47:23.589] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:23.637] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:47:23.681] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Coast United and last: Ahmadabad-e Kashani -[2018-02-13T00:47:23.708] [INFO] cheese - inserting 1000 documents. first: Ceza of Swaziland and last: Edgar Magnin -[2018-02-13T00:47:23.736] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:47:23.747] [INFO] cheese - inserting 1000 documents. first: 2007 Ukrainian Super Cup and last: A Tribute To Mario Lanza -[2018-02-13T00:47:23.767] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:47:23.789] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:47:23.857] [INFO] cheese - inserting 1000 documents. first: Professor Mark Cleary and last: Portal:World War I/Selected biography/4 -[2018-02-13T00:47:23.872] [INFO] cheese - inserting 1000 documents. first: Mieczyslaw Gocul and last: Sri Lankan provincial council election, September 2014 -[2018-02-13T00:47:23.901] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:47:23.917] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:24.102] [INFO] cheese - inserting 1000 documents. first: Rumonge and last: File:Scarsmirrodin expsym.svg -[2018-02-13T00:47:24.129] [INFO] cheese - inserting 1000 documents. first: File:Durdle Door Overview.jpg and last: FV4201 Chieftain -[2018-02-13T00:47:24.141] [INFO] cheese - inserting 1000 documents. first: George Frederic Stewart Bowles and last: Mary Towne Burt -[2018-02-13T00:47:24.179] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:47:24.187] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:24.220] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:47:24.234] [INFO] cheese - inserting 1000 documents. first: Nunapitchuk Airport and last: Category:1970s ballads -[2018-02-13T00:47:24.244] [INFO] cheese - inserting 1000 documents. first: Municipality of Sezana and last: Nikola Sakic -[2018-02-13T00:47:24.264] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:47:24.279] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:47:24.414] [INFO] cheese - inserting 1000 documents. first: Nikola Saric (footballer) and last: File:BBC Four HD Logo.svg -[2018-02-13T00:47:24.425] [INFO] cheese - inserting 1000 documents. first: File:Botanikuri.JPG and last: We've Always Been At War With Eurasia -[2018-02-13T00:47:24.432] [INFO] cheese - batch complete in: 0.168 secs -[2018-02-13T00:47:24.477] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:47:24.504] [INFO] cheese - inserting 1000 documents. first: Sharon Springs Historic District and last: Wikipedia:Articles for deletion/Mesame Dasi -[2018-02-13T00:47:24.510] [INFO] cheese - inserting 1000 documents. first: Debabarrena-Kirolgi and last: Fulvestrant-3-boronoate -[2018-02-13T00:47:24.519] [INFO] cheese - inserting 1000 documents. first: Chaos Code and last: Saint-François-Ouest -[2018-02-13T00:47:24.540] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T00:47:24.545] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:47:24.551] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:47:24.591] [INFO] cheese - inserting 1000 documents. first: Oriol de Bolos and last: Pedro Cintron Rodriguez -[2018-02-13T00:47:24.607] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:47:24.646] [INFO] cheese - inserting 1000 documents. first: Trois nouvelles études and last: E-SIGN Act -[2018-02-13T00:47:24.694] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:47:24.734] [INFO] cheese - inserting 1000 documents. first: Pedro Colon Osorio and last: Promec Television -[2018-02-13T00:47:24.752] [INFO] cheese - batch complete in: 0.145 secs -[2018-02-13T00:47:24.781] [INFO] cheese - inserting 1000 documents. first: Kim Voss and last: André Leon Talley -[2018-02-13T00:47:24.792] [INFO] cheese - inserting 1000 documents. first: Fulvestrant-3 boronoate and last: Lachnia parallela -[2018-02-13T00:47:24.824] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:47:24.824] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:47:24.856] [INFO] cheese - inserting 1000 documents. first: Jacques Dupre House and last: Category:Ivorian expatriates in Greece -[2018-02-13T00:47:24.863] [INFO] cheese - inserting 1000 documents. first: Ontario Highway 95 and last: Wikipedia:Peer review/Jessica Mauboy discography/archive1 -[2018-02-13T00:47:24.899] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:47:24.903] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T00:47:24.967] [INFO] cheese - inserting 1000 documents. first: Pronto... c'e una certa Giuliana per te and last: Repoyane -[2018-02-13T00:47:25.013] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:47:25.115] [INFO] cheese - inserting 1000 documents. first: Washington Beltrán Barbat and last: Amikam -[2018-02-13T00:47:25.123] [INFO] cheese - inserting 1000 documents. first: Lamia aedificator and last: Sotalia borneensis -[2018-02-13T00:47:25.208] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T00:47:25.218] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:47:25.310] [INFO] cheese - inserting 1000 documents. first: Wall-column and last: 2010–11 NBL season -[2018-02-13T00:47:25.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Butterfly Body Liners and last: Rusmin Dedic -[2018-02-13T00:47:25.330] [INFO] cheese - inserting 1000 documents. first: File:What if it Works.jpg and last: State Route 56 Spur (Georgia) -[2018-02-13T00:47:25.373] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:47:25.406] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T00:47:25.446] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:47:25.486] [INFO] cheese - inserting 1000 documents. first: Maguire, Samuel and last: Louisa Mary Bacon -[2018-02-13T00:47:25.566] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:47:25.650] [INFO] cheese - inserting 1000 documents. first: Sotalia chinensis and last: Template:Roman Catholic Diocese of Ponce -[2018-02-13T00:47:25.694] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:47:25.710] [INFO] cheese - inserting 1000 documents. first: Pro Wrestling Alliance Australia and last: Savo Kovacevic -[2018-02-13T00:47:25.763] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:47:25.768] [INFO] cheese - inserting 1000 documents. first: Estonian car number plates and last: Rudolf Raimann -[2018-02-13T00:47:25.815] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:25.974] [INFO] cheese - inserting 1000 documents. first: Drinks can and last: Alexandra the Great -[2018-02-13T00:47:25.991] [INFO] cheese - inserting 1000 documents. first: Savo Zlatic and last: Skarbovik Church -[2018-02-13T00:47:26.012] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:47:26.018] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:47:26.041] [INFO] cheese - inserting 1000 documents. first: Georgia Highway 56 Spur and last: File:Phalacrocorax auritusZZ.jpg -[2018-02-13T00:47:26.096] [INFO] cheese - inserting 1000 documents. first: Norwich Festival and last: Andrei Shreiner -[2018-02-13T00:47:26.109] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:47:26.161] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T00:47:26.178] [INFO] cheese - inserting 1000 documents. first: Rose City Riveters and last: Draft:Blackshot player since 2006. -[2018-02-13T00:47:26.225] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:26.256] [INFO] cheese - inserting 1000 documents. first: Skarbovik IF and last: Stig Ostling -[2018-02-13T00:47:26.267] [INFO] cheese - inserting 1000 documents. first: HMS Mary Galley and last: Airbase -[2018-02-13T00:47:26.274] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:47:26.339] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T00:47:26.439] [INFO] cheese - inserting 1000 documents. first: Autumn Frost and last: Shadow Tower Abyss -[2018-02-13T00:47:26.481] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:47:26.524] [INFO] cheese - inserting 1000 documents. first: Hydrocampa randalis and last: Teatro Joao Caetano -[2018-02-13T00:47:26.557] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:47:26.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/VillegasD2002/Archive and last: Naehyuck Chang -[2018-02-13T00:47:26.621] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:26.641] [INFO] cheese - inserting 1000 documents. first: Gasanda and last: HUNTRESS (band) -[2018-02-13T00:47:26.701] [INFO] cheese - inserting 1000 documents. first: Kubanychbek Jumaliev and last: Steven Carroll -[2018-02-13T00:47:26.710] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:47:26.762] [INFO] cheese - inserting 1000 documents. first: Teatro Pavon and last: Alisa Kozhikina -[2018-02-13T00:47:26.772] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T00:47:26.784] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:47:26.884] [INFO] cheese - inserting 1000 documents. first: Gospel Harmony and last: Toni Gilhooley -[2018-02-13T00:47:26.958] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:47:27.027] [INFO] cheese - inserting 1000 documents. first: Thearubigins and last: Birthday Card Stakes -[2018-02-13T00:47:27.039] [INFO] cheese - inserting 1000 documents. first: 2013-14 FA Trophy and last: Vange Church, Uppland -[2018-02-13T00:47:27.055] [INFO] cheese - inserting 1000 documents. first: Category:Street of the Prophets, Jerusalem and last: Wikipedia:Articles for deletion/Talk:Kiran Dabhi -[2018-02-13T00:47:27.071] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:47:27.119] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T00:47:27.120] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:47:27.246] [INFO] cheese - inserting 1000 documents. first: Tirfi Tsegaye and last: Template:S-line/Nizhny Novgorod Metro left/Avtozavodskaya line -[2018-02-13T00:47:27.314] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:47:27.368] [INFO] cheese - inserting 1000 documents. first: Vanina Sanchez and last: Wakatenryu Yuzo -[2018-02-13T00:47:27.402] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:47:27.432] [INFO] cheese - inserting 1000 documents. first: Zhigulevsk and last: František Ladislav Čelakovský -[2018-02-13T00:47:27.504] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T00:47:27.604] [INFO] cheese - inserting 1000 documents. first: Numbered Account and last: Category:Lithuania at the European Championships in Athletics -[2018-02-13T00:47:27.656] [INFO] cheese - inserting 1000 documents. first: Draft:List of churches on the Isle of Man and last: Minimum Interval Takeoff -[2018-02-13T00:47:27.662] [INFO] cheese - inserting 1000 documents. first: Waldbuhne (disambiguation) and last: Yucatan moist forests -[2018-02-13T00:47:27.678] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:47:27.682] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:47:27.697] [INFO] cheese - inserting 1000 documents. first: Simon The Sorcerer's Puzzle Pack and last: 1975–76 Cypriot First Division -[2018-02-13T00:47:27.766] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:27.879] [INFO] cheese - inserting 1000 documents. first: Gustav Oehrli and last: Edward James Milford -[2018-02-13T00:47:27.889] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T00:47:27.927] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:28.090] [INFO] cheese - inserting 1000 documents. first: Category:Conakry and last: Peter Weir (footballer) -[2018-02-13T00:47:28.142] [INFO] cheese - inserting 1000 documents. first: Yucatan mushroomtongue salamander and last: Template:2008 NSW Cup Team of the Year -[2018-02-13T00:47:28.157] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T00:47:28.184] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T00:47:28.253] [INFO] cheese - inserting 1000 documents. first: CATMAN and last: File:Lancashirewolverineslogo.jpg -[2018-02-13T00:47:28.308] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T00:47:28.328] [INFO] cheese - inserting 1000 documents. first: St Pancras (disambiguation) and last: List of Test cricket centuries at The WACA Ground -[2018-02-13T00:47:28.381] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:47:28.394] [INFO] cheese - inserting 1000 documents. first: Category:Black English comedians and last: SS Fort Athabaska -[2018-02-13T00:47:28.464] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:47:28.556] [INFO] cheese - inserting 1000 documents. first: Template:2009 NYC Team of the Year and last: Perbromobenzene -[2018-02-13T00:47:28.603] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:47:28.643] [INFO] cheese - inserting 1000 documents. first: Forgotten Memories and last: Danny Murphy (second baseman) -[2018-02-13T00:47:28.689] [INFO] cheese - inserting 1000 documents. first: Category:Politicians from Enid, Oklahoma and last: IU Natatorium -[2018-02-13T00:47:28.693] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:47:28.740] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:28.775] [INFO] cheese - inserting 1000 documents. first: 1976–77 Cypriot First Division and last: Streptomyces venezuelae -[2018-02-13T00:47:28.851] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T00:47:28.879] [INFO] cheese - inserting 1000 documents. first: Futurenow and last: Dickenson County Healthcare System -[2018-02-13T00:47:28.932] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:47:28.952] [INFO] cheese - inserting 1000 documents. first: Margaret Alford and last: Category:2015 in New Zealand motorsport -[2018-02-13T00:47:28.975] [INFO] cheese - inserting 1000 documents. first: Tempus clausum and last: Live at Roadburn 2008 (Year of No Light album) -[2018-02-13T00:47:28.995] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:47:29.060] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:47:29.151] [INFO] cheese - inserting 1000 documents. first: Huzam Nabaah and last: Theodore B. Werner -[2018-02-13T00:47:29.169] [INFO] cheese - inserting 1000 documents. first: F. E. Kuhn and last: D. 882 -[2018-02-13T00:47:29.270] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:29.320] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:29.422] [INFO] cheese - inserting 1000 documents. first: Slavery and the Bible and last: File:Haunting of Thomas Brewster.jpg -[2018-02-13T00:47:29.447] [INFO] cheese - inserting 1000 documents. first: Prestwood (disambiguation) and last: Wikipedia:WikiProject Spam/LinkReports/ingush-studio.com -[2018-02-13T00:47:29.459] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:47:29.497] [INFO] cheese - inserting 1000 documents. first: Undulambia fovecosta and last: Category:Archdeacons of St Vincent -[2018-02-13T00:47:29.499] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:47:29.581] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:47:29.697] [INFO] cheese - inserting 1000 documents. first: Draft:Paul Bentley and last: Category:Wikipedia sockpuppets of Solomon joe -[2018-02-13T00:47:29.728] [INFO] cheese - inserting 1000 documents. first: Auvergne (région) and last: Elmers Verden -[2018-02-13T00:47:29.735] [INFO] cheese - inserting 1000 documents. first: Pur River (India) and last: The Clique: Queen Teen -[2018-02-13T00:47:29.749] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:47:29.780] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:29.790] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:47:29.871] [INFO] cheese - inserting 1000 documents. first: Linda Lopez and last: Al Hubbard (baseball) -[2018-02-13T00:47:29.912] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:30.084] [INFO] cheese - inserting 1000 documents. first: Avant-Garde music and last: Vince Coutie -[2018-02-13T00:47:30.096] [INFO] cheese - inserting 1000 documents. first: Aleksander Janicki (artist) and last: BRCPS -[2018-02-13T00:47:30.128] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:47:30.148] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:47:30.239] [INFO] cheese - inserting 1000 documents. first: File:Randfan's Sand Castle.jpg and last: 2004 Haiti rebellion -[2018-02-13T00:47:30.287] [INFO] cheese - inserting 1000 documents. first: Hands in the Air (Miley Cyrus) and last: Segundo Navarrete -[2018-02-13T00:47:30.302] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:47:30.312] [INFO] cheese - inserting 1000 documents. first: File:Colrisuni.gif and last: St Michael's Prep School, Otford -[2018-02-13T00:47:30.359] [INFO] cheese - inserting 1000 documents. first: Yacimientos Carboniferos Fiscales and last: Lichtenhain Bergbahn -[2018-02-13T00:47:30.380] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:47:30.393] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:47:30.468] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T00:47:30.634] [INFO] cheese - inserting 1000 documents. first: Raymond James Inc and last: Category:Tengnoupal district -[2018-02-13T00:47:30.673] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:47:30.689] [INFO] cheese - inserting 1000 documents. first: Burn recovery bed and last: Wikipedia:Version 1.0 Editorial Team/University of California articles by quality/1 -[2018-02-13T00:47:30.790] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:47:30.862] [INFO] cheese - inserting 1000 documents. first: Category:Luxembourgian people of Cape Verde descent and last: Ebenau's leaf chameleon -[2018-02-13T00:47:30.864] [INFO] cheese - inserting 1000 documents. first: Top Four Cup and last: Molecular crystal -[2018-02-13T00:47:30.930] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T00:47:30.945] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:47:30.972] [INFO] cheese - inserting 1000 documents. first: New Frontier (Matt Finish CD) and last: Category:Civilian Conservation Corps in Mississippi -[2018-02-13T00:47:31.084] [INFO] cheese - inserting 1000 documents. first: Metropolitan Iziaslav (Brutskiy) and last: Wikipedia:Articles for deletion/UK professors of complementary medicine -[2018-02-13T00:47:31.106] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:47:31.154] [INFO] cheese - inserting 1000 documents. first: Asian Productivity Organization and last: Elder Beck -[2018-02-13T00:47:31.219] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:47:31.238] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T00:47:31.421] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/University of California articles by quality/2 and last: Kalonymides -[2018-02-13T00:47:31.444] [INFO] cheese - inserting 1000 documents. first: Template:WPSOUTHPARK and last: OECD Report -[2018-02-13T00:47:31.480] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:47:31.543] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:31.550] [INFO] cheese - inserting 1000 documents. first: File:Symbiosis (album).jpg and last: Noveko -[2018-02-13T00:47:31.595] [INFO] cheese - inserting 1000 documents. first: Do U Lie? and last: John Camp (English politician) -[2018-02-13T00:47:31.647] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:47:31.656] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:47:31.801] [INFO] cheese - inserting 1000 documents. first: Skew-commutative associative algebra and last: Otto II van Lippe -[2018-02-13T00:47:31.808] [INFO] cheese - inserting 1000 documents. first: Category:Miami Seahawks coaches and last: Category:Redirect-Class film articles -[2018-02-13T00:47:31.897] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:47:31.910] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T00:47:32.051] [INFO] cheese - inserting 1000 documents. first: Mark Goffeney and last: New York Atlantics -[2018-02-13T00:47:32.144] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T00:47:32.208] [INFO] cheese - inserting 1000 documents. first: Sauzier's teal and last: File:This Burning Effigy - After Thought.ogg -[2018-02-13T00:47:32.209] [INFO] cheese - inserting 1000 documents. first: Piotr Kuczera and last: K299BT -[2018-02-13T00:47:32.259] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T00:47:32.273] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:32.345] [INFO] cheese - inserting 1000 documents. first: File:Muriel Bevis.jpg and last: Timothy M. Lohman -[2018-02-13T00:47:32.421] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:47:32.529] [INFO] cheese - inserting 1000 documents. first: Category:1982 in cricket and last: Haitian legislative elections, 1990/91 -[2018-02-13T00:47:32.562] [INFO] cheese - inserting 1000 documents. first: Barcelona managers and last: Infrared spectroscopy of metal carbonyls -[2018-02-13T00:47:32.607] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T00:47:32.631] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T00:47:32.670] [INFO] cheese - inserting 1000 documents. first: Phyz and last: Brotherhood of St Lawrence -[2018-02-13T00:47:32.695] [INFO] cheese - inserting 1000 documents. first: Hilario Ulloa and last: File:Freur Doot Doot test pressing with stamped and handwritten logo.jpg -[2018-02-13T00:47:32.711] [INFO] cheese - inserting 1000 documents. first: Red kidney beans and last: Zec de la Rivière-Bonaventure -[2018-02-13T00:47:32.715] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T00:47:32.727] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:47:32.753] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:47:32.856] [INFO] cheese - inserting 1000 documents. first: Category:People from Levoča and last: Cadet gray -[2018-02-13T00:47:32.906] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T00:47:32.970] [INFO] cheese - inserting 1000 documents. first: List of minor planets/145701–145800 and last: Saskatchewan Highway 929 -[2018-02-13T00:47:32.972] [INFO] cheese - inserting 1000 documents. first: Middle Cornish and last: Medland -[2018-02-13T00:47:32.972] [INFO] cheese - inserting 1000 documents. first: Ravipadu (disambiguation) and last: Back to the Factory -[2018-02-13T00:47:33.009] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:47:33.022] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:47:33.027] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:33.057] [INFO] cheese - inserting 1000 documents. first: SR 217 (AZ) and last: File:ShaanatImprint.jpg -[2018-02-13T00:47:33.095] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:47:33.110] [INFO] cheese - inserting 1000 documents. first: File:LED Eco Lights Company Logo.jpg and last: Harry Langford -[2018-02-13T00:47:33.157] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:47:33.236] [INFO] cheese - inserting 1000 documents. first: Ikosi and last: Wikipedia:Wikipedia Loves Art/Brooklyn Museum rules -[2018-02-13T00:47:33.276] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T00:47:33.284] [INFO] cheese - inserting 1000 documents. first: Raphael Vieira De Oliveira and last: File:It's That Man Again (1943 film).jpg -[2018-02-13T00:47:33.326] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:47:33.399] [INFO] cheese - inserting 1000 documents. first: Kuramatengu and last: Wikipedia:Articles for deletion/Taran Rampersad (2nd nomination) -[2018-02-13T00:47:33.407] [INFO] cheese - inserting 1000 documents. first: Category:1981 establishments in Chile and last: County Route 16 (Oneida County, New York) -[2018-02-13T00:47:33.448] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:33.453] [INFO] cheese - inserting 1000 documents. first: Pierre ii de luxembourg and last: Paria, Utah -[2018-02-13T00:47:33.459] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T00:47:33.525] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:47:33.549] [INFO] cheese - inserting 1000 documents. first: Template:Latest preview software release/Viber and last: Mission Trail Athletic League -[2018-02-13T00:47:33.608] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T00:47:33.668] [INFO] cheese - inserting 1000 documents. first: Usta Mourad Mosque and last: File:ShoestringDVD.jpg -[2018-02-13T00:47:33.751] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:47:33.982] [INFO] cheese - inserting 1000 documents. first: Lagaan: Once Upon a Time in India (2001 film) and last: Category:Montana State Bobcats football coaches -[2018-02-13T00:47:33.998] [INFO] cheese - inserting 1000 documents. first: County Route 17 (Oneida County, New York) and last: Troyzan -[2018-02-13T00:47:34.045] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:34.058] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:47:34.062] [INFO] cheese - inserting 1000 documents. first: Chris Watson (disambiguation) and last: Wikipedia:Articles for deletion/List of castes from the Alien expanded universe -[2018-02-13T00:47:34.128] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Loves Art/Carnegie Museum of Art rules and last: Saint-Georges Saint-Émilion -[2018-02-13T00:47:34.147] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:47:34.343] [INFO] cheese - inserting 1000 documents. first: File:Esti jerusalem.JPG and last: Zec de la Rivière-Petit-Saguenay -[2018-02-13T00:47:34.348] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T00:47:34.419] [INFO] cheese - inserting 1000 documents. first: Watzke and last: List of Hampshire County Cricket Club first-class players (1895-1914) -[2018-02-13T00:47:34.433] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T00:47:34.492] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T00:47:34.691] [INFO] cheese - inserting 1000 documents. first: Homonomous hemianopsia and last: Žarkovac (Ruma) -[2018-02-13T00:47:34.760] [INFO] cheese - inserting 1000 documents. first: Okhli and last: Aberffraw (cantref) -[2018-02-13T00:47:34.765] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T00:47:34.801] [INFO] cheese - inserting 1000 documents. first: Cuckoo Farm and last: Vojvodina Academy of Sciences and Arts -[2018-02-13T00:47:34.840] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T00:47:34.876] [INFO] cheese - inserting 1000 documents. first: Category:Species endangered by slash-and-burn and last: World Fuel Services Corp -[2018-02-13T00:47:34.908] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T00:47:34.912] [INFO] cheese - inserting 1000 documents. first: INS Tarshish and last: Wayne Fraser -[2018-02-13T00:47:34.919] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:34.991] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:47:35.233] [INFO] cheese - inserting 1000 documents. first: Fonte Avellana and last: Lateral nasal process -[2018-02-13T00:47:35.280] [INFO] cheese - inserting 1000 documents. first: Category:541 BC deaths and last: Mallosia graeca -[2018-02-13T00:47:35.298] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T00:47:35.317] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:47:35.350] [INFO] cheese - inserting 1000 documents. first: File:Tearringsaga boxart.PNG and last: 630s in Ireland -[2018-02-13T00:47:35.351] [INFO] cheese - inserting 1000 documents. first: The Ghost Map: The Story of London's Most Terrifying Epidemic – and How it Changed Science, Cities and the Modern World and last: Ship of Condemned Women -[2018-02-13T00:47:35.365] [INFO] cheese - inserting 1000 documents. first: Module:Uses Wikidata/sandbox and last: Geography of Ōta, Tokyo -[2018-02-13T00:47:35.388] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:47:35.397] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:47:35.430] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:47:35.598] [INFO] cheese - inserting 1000 documents. first: Izman and last: Category:Samphanthawong District -[2018-02-13T00:47:35.633] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:47:35.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Amanda Carpenter (second nomination) and last: Portal:United States Navy/Selected picture/2 -[2018-02-13T00:47:35.675] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T00:47:35.688] [INFO] cheese - inserting 1000 documents. first: Víctor Moreira and last: John Crutcher -[2018-02-13T00:47:35.705] [INFO] cheese - inserting 1000 documents. first: Category:Egyptian sport shooters and last: Arabia Steamboat -[2018-02-13T00:47:35.729] [INFO] cheese - inserting 1000 documents. first: East Troy, Maine and last: Dark Souls 3: The Fire Fades -[2018-02-13T00:47:35.738] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:47:35.772] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:47:35.774] [INFO] cheese - batch complete in: 1.426 secs -[2018-02-13T00:47:35.807] [INFO] cheese - inserting 1000 documents. first: Category:Canadian chess writers and last: General of the artillery -[2018-02-13T00:47:35.869] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:47:36.077] [INFO] cheese - inserting 1000 documents. first: Malabar grouper and last: Escape to Hell -[2018-02-13T00:47:36.095] [INFO] cheese - inserting 1000 documents. first: Gaya Railway Station and last: Sir Stephen de Vere, 4th Baronet -[2018-02-13T00:47:36.115] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:47:36.132] [INFO] cheese - inserting 1000 documents. first: List of Questlove Supreme Episodes and last: Ceratichthys labrosus -[2018-02-13T00:47:36.159] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:47:36.195] [INFO] cheese - inserting 1000 documents. first: Heart On My Sleeve (Mary Lambert album) and last: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2014 September 23 -[2018-02-13T00:47:36.198] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:36.286] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:47:36.295] [INFO] cheese - inserting 1000 documents. first: Relief Hose Company No. 2 Engine House and last: Roscommon Castle -[2018-02-13T00:47:36.405] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:47:36.411] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Waste Management (album) and last: Processability theory -[2018-02-13T00:47:36.443] [INFO] cheese - inserting 1000 documents. first: Moneta Sleet Jr. and last: African-American Film Critics Association Awards 2003 -[2018-02-13T00:47:36.489] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:47:36.523] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:47:36.663] [INFO] cheese - inserting 1000 documents. first: File:Doctor Laennec.jpg and last: Draft:Louis Horne (musician) -[2018-02-13T00:47:36.712] [INFO] cheese - inserting 1000 documents. first: Place, New Hampshire and last: Władysław Sławny -[2018-02-13T00:47:36.733] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:47:36.777] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:36.850] [INFO] cheese - inserting 1000 documents. first: Minye Thihathu II of Toungoo and last: Ornithomimus tenuis -[2018-02-13T00:47:36.876] [INFO] cheese - inserting 1000 documents. first: 11'09"01 and last: Template:Cardiff Bus 21/23 RDT -[2018-02-13T00:47:36.899] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:36.915] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:37.038] [INFO] cheese - inserting 1000 documents. first: François N'Doumbé and last: Indie Queen -[2018-02-13T00:47:37.103] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:37.120] [INFO] cheese - inserting 1000 documents. first: Clawed feather-flower and last: Porlammi encirclement -[2018-02-13T00:47:37.152] [INFO] cheese - inserting 1000 documents. first: Rock garden (disambiguation) and last: List of parasites of humans -[2018-02-13T00:47:37.176] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:47:37.226] [INFO] cheese - inserting 1000 documents. first: Neodyschirius and last: Now Deh Bam -[2018-02-13T00:47:37.275] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T00:47:37.310] [INFO] cheese - inserting 1000 documents. first: Ornithomimus altus and last: Günther Ruprecht -[2018-02-13T00:47:37.324] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T00:47:37.377] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:47:37.507] [INFO] cheese - inserting 1000 documents. first: Category:Atlanta Blackhawks players and last: File:A Promise To Burn.jpg -[2018-02-13T00:47:37.610] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T00:47:37.801] [INFO] cheese - inserting 1000 documents. first: Tungjoy and last: DJ E-Feezy -[2018-02-13T00:47:37.859] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:47:37.939] [INFO] cheese - inserting 1000 documents. first: KTDZ and last: Mashpee and Wakeby Ponds -[2018-02-13T00:47:38.000] [INFO] cheese - inserting 1000 documents. first: Category:1976–77 in Canadian ice hockey by league and last: The Movie Star -[2018-02-13T00:47:38.019] [INFO] cheese - inserting 1000 documents. first: Magruder Plots and last: Nemanja Ćorović -[2018-02-13T00:47:38.021] [INFO] cheese - inserting 1000 documents. first: Carlos Gabriel Rodríguez and last: Cascadia fault zone -[2018-02-13T00:47:38.022] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T00:47:38.090] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:47:38.146] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T00:47:38.163] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:47:38.195] [INFO] cheese - inserting 1000 documents. first: Swahili blonde and last: Zunun Kadir -[2018-02-13T00:47:38.256] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:38.361] [INFO] cheese - inserting 1000 documents. first: Lavina Keough and last: Bridaltree -[2018-02-13T00:47:38.412] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:47:38.474] [INFO] cheese - inserting 1000 documents. first: File:Keith LeBlanc - Time Traveller.jpg and last: Megachile albicaudella -[2018-02-13T00:47:38.506] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:38.514] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/taxi-service.me and last: Andrea Lussardi -[2018-02-13T00:47:38.563] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:47:38.624] [INFO] cheese - inserting 1000 documents. first: Korean titles and last: Schoolboy -[2018-02-13T00:47:38.626] [INFO] cheese - inserting 1000 documents. first: Porterella and last: Keep On Movin' (Alexia) -[2018-02-13T00:47:38.663] [INFO] cheese - inserting 1000 documents. first: Cascadia fault Zone and last: Polyclonal response/GA2 -[2018-02-13T00:47:38.678] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T00:47:38.688] [INFO] cheese - inserting 1000 documents. first: Epepeotes meridianus and last: António José Pereira de Carvalho -[2018-02-13T00:47:38.688] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T00:47:38.740] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:38.751] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:47:38.831] [INFO] cheese - inserting 1000 documents. first: Route 311 (Virginia-West Virginia) and last: Wikipedia:Articles for deletion/Bahman Gholipouri -[2018-02-13T00:47:38.872] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:47:38.974] [INFO] cheese - inserting 1000 documents. first: Template:Sports governing bodies in Poland and last: Pottangi Ollar Gadaba language -[2018-02-13T00:47:39.010] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:47:39.034] [INFO] cheese - inserting 1000 documents. first: File:TheSwingleSingers BachsGreatestHits.jpg and last: File:Drowningpool250.jpg -[2018-02-13T00:47:39.072] [INFO] cheese - inserting 1000 documents. first: NNS Andoni and last: Engineers Without Borders Australia -[2018-02-13T00:47:39.082] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:47:39.112] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:47:39.115] [INFO] cheese - inserting 1000 documents. first: Patrick Arthur Devlin, Lord Devlin and last: Eye Castle -[2018-02-13T00:47:39.180] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:47:39.235] [INFO] cheese - inserting 1000 documents. first: Teacher (music) and last: Bill Brogan -[2018-02-13T00:47:39.263] [INFO] cheese - inserting 1000 documents. first: Selvanagar and last: Aerobic Granulation -[2018-02-13T00:47:39.291] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:47:39.339] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:47:39.401] [INFO] cheese - inserting 1000 documents. first: Zbigniew Herman and last: Curtiss P-40F -[2018-02-13T00:47:39.463] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:39.559] [INFO] cheese - inserting 1000 documents. first: Eastern purple-glossed snake and last: Draft:Ernst Weigang -[2018-02-13T00:47:39.583] [INFO] cheese - inserting 1000 documents. first: Ropeadope and last: Kahraman Dogan -[2018-02-13T00:47:39.599] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T00:47:39.659] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:39.754] [INFO] cheese - inserting 1000 documents. first: Category:Talleres de Córdoba managers and last: Template:RussiaBasicLawRef/vla -[2018-02-13T00:47:39.775] [INFO] cheese - inserting 1000 documents. first: File:AcousticliveatWOW.jpg and last: Mariah a. taylor -[2018-02-13T00:47:39.779] [INFO] cheese - inserting 1000 documents. first: Bandoeng Inlandsche Voetball Bond and last: Bow-string arch bridge -[2018-02-13T00:47:39.807] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T00:47:39.840] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:47:39.844] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:47:39.895] [INFO] cheese - inserting 1000 documents. first: Curtiss Kittyhawk Mk II and last: Coal shovel -[2018-02-13T00:47:39.954] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:40.016] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/gtamoneyonline.com and last: Agents of Shield (season 4) -[2018-02-13T00:47:40.023] [INFO] cheese - inserting 1000 documents. first: Nantenbach Curve and last: Nebiogastes -[2018-02-13T00:47:40.051] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T00:47:40.071] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:47:40.296] [INFO] cheese - inserting 1000 documents. first: Southwestern Proving Ground Officers Quarters Historic District and last: Battle On Broadway -[2018-02-13T00:47:40.339] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:40.352] [INFO] cheese - inserting 1000 documents. first: S.W. Harris and last: Agricultural Training Institute (Philippines) -[2018-02-13T00:47:40.362] [INFO] cheese - inserting 1000 documents. first: Donald Kerst and last: Category:Western Macedonia geography stubs -[2018-02-13T00:47:40.409] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T00:47:40.429] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Icahn School of Medicine at Mount Sinai/Outcomes of teaching students 2017 and last: Category:Former roller coasters in North Carolina -[2018-02-13T00:47:40.449] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:47:40.460] [INFO] cheese - inserting 1000 documents. first: Alipiri and last: Vercengitorix -[2018-02-13T00:47:40.527] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:47:40.526] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:47:40.566] [INFO] cheese - inserting 1000 documents. first: Category:Ottoman scientists and last: Ski 2 Sea -[2018-02-13T00:47:40.642] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:47:40.856] [INFO] cheese - inserting 1000 documents. first: August 2021 and last: Category:Biographical films about Ma Barker -[2018-02-13T00:47:40.873] [INFO] cheese - inserting 1000 documents. first: Deák Ferenc tér (Budapest Metro M3) and last: Ashburn Village -[2018-02-13T00:47:40.912] [INFO] cheese - inserting 1000 documents. first: Category:Filipino Indologists and last: Bairagarh Airport -[2018-02-13T00:47:40.914] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:40.927] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:47:40.947] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Choke (Glee) and last: May Collins -[2018-02-13T00:47:40.989] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:41.007] [INFO] cheese - inserting 1000 documents. first: Papyrus Oxyrhynchus 1008 and last: Lamborghini Aventador S -[2018-02-13T00:47:40.998] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:47:41.072] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T00:47:41.219] [INFO] cheese - inserting 1000 documents. first: County Route 75 (Erie County, New York) and last: YOTBR -[2018-02-13T00:47:41.299] [INFO] cheese - inserting 1000 documents. first: Sedberry-Holmes House and last: Category:Polish animated short films -[2018-02-13T00:47:41.303] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:47:41.333] [INFO] cheese - inserting 1000 documents. first: Chikkalthana Airport and last: Catholic Extension -[2018-02-13T00:47:41.340] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T00:47:41.355] [INFO] cheese - inserting 1000 documents. first: Saŋyojana and last: Raymond J. Johnson Jr. -[2018-02-13T00:47:41.388] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T00:47:41.450] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:47:41.489] [INFO] cheese - inserting 1000 documents. first: File:In My Father's Garden.jpg and last: Rudnickis -[2018-02-13T00:47:41.595] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:41.702] [INFO] cheese - inserting 1000 documents. first: Botle Castle and last: Sat-IP -[2018-02-13T00:47:41.792] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:47:41.817] [INFO] cheese - inserting 1000 documents. first: Dunsmuir station (British Columbia) and last: Logical fallacy/Gamblers fallacy -[2018-02-13T00:47:41.894] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T00:47:41.968] [INFO] cheese - inserting 1000 documents. first: Belhar and last: Bourassa State Forest -[2018-02-13T00:47:41.984] [INFO] cheese - inserting 1000 documents. first: Israel Yishayahu and last: Category:Pajama Party (group) albums -[2018-02-13T00:47:42.030] [INFO] cheese - inserting 1000 documents. first: Template:Schools in Ipoh and last: Hartland Four Corners, Vermont -[2018-02-13T00:47:42.046] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:47:42.063] [INFO] cheese - inserting 1000 documents. first: Raeder and last: Mydeton -[2018-02-13T00:47:42.093] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:47:42.170] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:47:42.192] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:47:42.284] [INFO] cheese - inserting 1000 documents. first: File:Mrs. Whitney in the winners circle.jpg and last: HP PhotoSmart R727 (V01.00) -[2018-02-13T00:47:42.363] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T00:47:42.378] [INFO] cheese - inserting 1000 documents. first: Richard Ellena and last: Revelation Zero (Part 2) -[2018-02-13T00:47:42.415] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:47:42.573] [INFO] cheese - inserting 1000 documents. first: Federal judiciary of Switzerland and last: Granulation (solar physics) -[2018-02-13T00:47:42.592] [INFO] cheese - inserting 1000 documents. first: The Well (1951 film) and last: Gurbuz -[2018-02-13T00:47:42.634] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:47:42.638] [INFO] cheese - inserting 1000 documents. first: Category:Ministers of the Brandenburg State Government and last: Hooper's rule -[2018-02-13T00:47:42.641] [INFO] cheese - inserting 1000 documents. first: Category:Paint It Black (band) albums and last: Anton Gág -[2018-02-13T00:47:42.655] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:47:42.747] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:47:42.768] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T00:47:42.833] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Kingswood House School and last: Wikipedia:Articles for deletion/Bhimjee Parikh -[2018-02-13T00:47:42.912] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:47:43.018] [INFO] cheese - inserting 1000 documents. first: Conus darkini and last: Paris-Dakar (Newspaper) -[2018-02-13T00:47:43.062] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:47:43.128] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/May 2 and last: Rye whisky -[2018-02-13T00:47:43.140] [INFO] cheese - inserting 1000 documents. first: Acanthophis praelongus and last: Draft:R.S. Field -[2018-02-13T00:47:43.178] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:43.186] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:43.194] [INFO] cheese - inserting 1000 documents. first: File:Perry Jewelry.jpg and last: Coat of Arms bridge -[2018-02-13T00:47:43.197] [INFO] cheese - inserting 1000 documents. first: File:Jennifer Hudson - Spotlight.jpeg and last: Wikipedia:Articles for deletion/Genuine Warranty -[2018-02-13T00:47:43.262] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:47:43.316] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:47:43.421] [INFO] cheese - inserting 1000 documents. first: Timeline of the 2011–2012 Syrian uprising (from January 2012) and last: Lecithocera pseudocathra -[2018-02-13T00:47:43.508] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:47:43.572] [INFO] cheese - inserting 1000 documents. first: List of parasites of the marsh rice rat and last: Brand Fourie -[2018-02-13T00:47:43.647] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:47:43.692] [INFO] cheese - inserting 1000 documents. first: Draft:Spider-Man (animated film) and last: Amin al-Din (disambiguation) -[2018-02-13T00:47:43.717] [INFO] cheese - inserting 1000 documents. first: David Price (Football) and last: Tristan White -[2018-02-13T00:47:43.763] [INFO] cheese - inserting 1000 documents. first: Category:The Jayhawks albums and last: Benjamin Woods Labaree -[2018-02-13T00:47:43.778] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:47:43.803] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:47:43.865] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:47:43.882] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Julian Alps and last: Portal:Time/Selected Article/Suggest/criteria -[2018-02-13T00:47:43.940] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T00:47:44.062] [INFO] cheese - inserting 1000 documents. first: Template:NCAA Division I FBS football rankings/sandbox and last: Cierva C.6C -[2018-02-13T00:47:44.125] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:47:44.174] [INFO] cheese - inserting 1000 documents. first: Eisenstadt-Umgebung and last: Holt Hotel -[2018-02-13T00:47:44.214] [INFO] cheese - inserting 1000 documents. first: Category:German musicals and last: Flo McClintock -[2018-02-13T00:47:44.227] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:47:44.244] [INFO] cheese - inserting 1000 documents. first: Lighting effects and last: File:Love U Crazy Girl (Film) Poster.jpg -[2018-02-13T00:47:44.269] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:44.293] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:47:44.365] [INFO] cheese - inserting 1000 documents. first: Kanuka and last: Shibar District -[2018-02-13T00:47:44.406] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:47:44.511] [INFO] cheese - inserting 1000 documents. first: People vs. Money Tour and last: Maria Willoughby -[2018-02-13T00:47:44.560] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T00:47:44.564] [INFO] cheese - inserting 1000 documents. first: The Merry Month of May and last: Eutrichillus -[2018-02-13T00:47:44.630] [INFO] cheese - inserting 1000 documents. first: Protestant church of Aldtsjerk and last: Suzanne Bonnard -[2018-02-13T00:47:44.640] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:47:44.642] [INFO] cheese - inserting 1000 documents. first: Valur Ingimundarson and last: Category:Freedom of religion in Malaysia -[2018-02-13T00:47:44.673] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:47:44.713] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:47:44.770] [INFO] cheese - inserting 1000 documents. first: Getting Free and last: Hauptbahnhof (Berlin U-Bahn) -[2018-02-13T00:47:44.810] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:44.817] [INFO] cheese - inserting 1000 documents. first: Battle of Long Run and last: The Sideways Door -[2018-02-13T00:47:44.880] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T00:47:45.024] [INFO] cheese - inserting 1000 documents. first: Cryptocephalus pusillus and last: Category:Use Jamaican English from May 2017 -[2018-02-13T00:47:45.060] [INFO] cheese - inserting 1000 documents. first: ES Thaon and last: Category:French people of Vietnamese descent -[2018-02-13T00:47:45.060] [INFO] cheese - inserting 1000 documents. first: Aminolevulinic acid dehydratase deficiency porphyria and last: Category:GET-ligaen -[2018-02-13T00:47:45.060] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:47:45.077] [INFO] cheese - inserting 1000 documents. first: Grey-backed Sparrow-lark and last: KGBV Scheme -[2018-02-13T00:47:45.125] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:47:45.147] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:47:45.157] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T00:47:45.270] [INFO] cheese - inserting 1000 documents. first: 2014–15 American Eagles men's basketball team and last: Ron Foos -[2018-02-13T00:47:45.324] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:47:45.344] [INFO] cheese - inserting 1000 documents. first: Mount Kunyit and last: Portal:Religion/On this day/June 25 -[2018-02-13T00:47:45.409] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:47:45.431] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia articles needing a junction list from May 2017 and last: Template:Taxonomy/Ubirodynerus -[2018-02-13T00:47:45.495] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T00:47:45.602] [INFO] cheese - inserting 1000 documents. first: Odd Fellows lodge and last: Ovingham, Northumberland -[2018-02-13T00:47:45.638] [INFO] cheese - inserting 1000 documents. first: Petit de la Saussaye and last: Javorje, Velike Lašče -[2018-02-13T00:47:45.651] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:47:45.692] [INFO] cheese - inserting 1000 documents. first: Aybek Orozaliyev and last: Truth and Purpose (Album) -[2018-02-13T00:47:45.699] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:47:45.778] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:47:45.788] [INFO] cheese - inserting 1000 documents. first: Danny Krause and last: File:MMB, Logo.gif -[2018-02-13T00:47:45.857] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:45.898] [INFO] cheese - inserting 1000 documents. first: Portal:Religion/On this day/June 26 and last: Shaligram Shilas -[2018-02-13T00:47:46.022] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:46.089] [INFO] cheese - inserting 1000 documents. first: Pink dryandra and last: Chhota Singh -[2018-02-13T00:47:46.172] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:47:46.176] [INFO] cheese - inserting 1000 documents. first: Template:Queensland Rail rail lines and last: Category:Birmingham Maroons players -[2018-02-13T00:47:46.257] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:47:46.347] [INFO] cheese - inserting 1000 documents. first: Template:PrinceWilliamCountyVA-NRHP-stub and last: Antonio Colinas Lobato -[2018-02-13T00:47:46.388] [INFO] cheese - inserting 1000 documents. first: List of number-one singles in 1998 (NZ) and last: FCS Star -[2018-02-13T00:47:46.420] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:47:46.496] [INFO] cheese - inserting 1000 documents. first: Battlihorn and last: Category:George Wein albums -[2018-02-13T00:47:46.543] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T00:47:46.590] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:47:46.679] [INFO] cheese - inserting 1000 documents. first: Emmton Magan and last: Wikipedia:Articles for deletion/Forss Fagerström -[2018-02-13T00:47:46.749] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T00:47:46.821] [INFO] cheese - inserting 1000 documents. first: The Melancholy Fantastic and last: John Tasker Henderson -[2018-02-13T00:47:46.860] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T00:47:46.920] [INFO] cheese - inserting 1000 documents. first: Soviet Russia (exhibition, 1975) and last: Çamlıköy Kıbrıs -[2018-02-13T00:47:46.957] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:47:47.003] [INFO] cheese - inserting 1000 documents. first: Charles Leavitt and last: Given, West Virginia -[2018-02-13T00:47:47.050] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:47:47.053] [INFO] cheese - inserting 1000 documents. first: Tax loophole and last: Template:1994–95 football in Portugal -[2018-02-13T00:47:47.093] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samir Palnitkar and last: File:Peter Kay's Car Share titles.jpg -[2018-02-13T00:47:47.095] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:47:47.140] [INFO] cheese - inserting 1000 documents. first: Panzer X and last: United Nations Security Council Resolution 14 -[2018-02-13T00:47:47.166] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T00:47:47.182] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:47:47.290] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Network as a service and last: Goat Islands -[2018-02-13T00:47:47.309] [INFO] cheese - inserting 1000 documents. first: Richard Nyarko and last: List of Strawberry 100% manga chapters -[2018-02-13T00:47:47.332] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:47:47.341] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:47:47.412] [INFO] cheese - inserting 1000 documents. first: Tony Branson and last: US Geography Challenge -[2018-02-13T00:47:47.433] [INFO] cheese - inserting 1000 documents. first: Category:History of Cumberland, MD-WV MSA and last: Mikkel Thorup -[2018-02-13T00:47:47.449] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:47:47.451] [INFO] cheese - inserting 1000 documents. first: Kvitashvili, Alexander and last: File:Utah Flash.png -[2018-02-13T00:47:47.475] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:47:47.508] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:47:47.602] [INFO] cheese - inserting 1000 documents. first: Teleost fish and last: Postprocessing -[2018-02-13T00:47:47.646] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:47:47.690] [INFO] cheese - inserting 1000 documents. first: Porokeratotic eccrine ostial and dermal duct nevus and last: Wikipedia:Wikipedia essays showcase/Featured essay/4 -[2018-02-13T00:47:47.748] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:47:47.772] [INFO] cheese - inserting 1000 documents. first: Draft:Cuchara and last: Emmanuel Garib -[2018-02-13T00:47:47.799] [INFO] cheese - inserting 1000 documents. first: Celianella montana and last: MiG Monument -[2018-02-13T00:47:47.805] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:47:47.815] [INFO] cheese - inserting 1000 documents. first: Michael O'Connor (footballer) and last: Joe Bonham -[2018-02-13T00:47:47.852] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:47:47.854] [INFO] cheese - inserting 1000 documents. first: Esfidan, Maneh and Samalqan and last: Howmeh Rural District (Shirvan County) -[2018-02-13T00:47:47.930] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T00:47:48.009] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:47:48.098] [INFO] cheese - inserting 1000 documents. first: XSL stylesheet and last: List of asteroids (31001-32000) -[2018-02-13T00:47:48.164] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:47:48.337] [INFO] cheese - inserting 1000 documents. first: Winston Chapman and last: Nelle Hayes -[2018-02-13T00:47:48.372] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Book:Hindu Proud and last: Power Core Combiners -[2018-02-13T00:47:48.373] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T00:47:48.436] [INFO] cheese - inserting 1000 documents. first: Portal:Mexico/Selected picture/41 and last: Ethiralikal -[2018-02-13T00:47:48.451] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:47:48.464] [INFO] cheese - inserting 1000 documents. first: List of college football rivalries and last: Category:New Zealand Māori broadcasters -[2018-02-13T00:47:48.487] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:47:48.534] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:47:48.578] [INFO] cheese - inserting 1000 documents. first: The Circle (file system) and last: Kb (disambiguation) -[2018-02-13T00:47:48.635] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:47:48.686] [INFO] cheese - inserting 1000 documents. first: File:FeelTheSpirit.jpg and last: Cocodrilos Sports Park -[2018-02-13T00:47:48.741] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:48.839] [INFO] cheese - inserting 1000 documents. first: Draft:North American Board of Certified Energy Practitioners and last: Fred Gilman -[2018-02-13T00:47:48.872] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T00:47:48.908] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 3001–3500 and last: Category:Cenozoic geologic formations -[2018-02-13T00:47:48.910] [INFO] cheese - inserting 1000 documents. first: Jaruwat Cheawaram and last: Nissiopi -[2018-02-13T00:47:48.911] [INFO] cheese - inserting 1000 documents. first: Kentucky Route 171 and last: File:The Rosie Project.jpg -[2018-02-13T00:47:48.958] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T00:47:48.960] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:47:48.965] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:47:49.049] [INFO] cheese - inserting 1000 documents. first: Leopard of the Central Provinces and last: Association of Black Psychologists -[2018-02-13T00:47:49.093] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T00:47:49.145] [INFO] cheese - inserting 1000 documents. first: Marie McCormick and last: 28/4 -[2018-02-13T00:47:49.181] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T00:47:49.205] [INFO] cheese - inserting 1000 documents. first: Molecular marker (disambiguation) and last: Ryohei Yamamoto -[2018-02-13T00:47:49.354] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T00:47:49.519] [INFO] cheese - inserting 1000 documents. first: Category:1965 in Japanese television and last: Pharmaceutical products -[2018-02-13T00:47:49.652] [INFO] cheese - inserting 1000 documents. first: Mayor Bill Harrison and last: Vimochanasamaram (film) -[2018-02-13T00:47:49.654] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:47:49.670] [INFO] cheese - inserting 1000 documents. first: Kenodactylus and last: Kukeli, Iran -[2018-02-13T00:47:49.734] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T00:47:49.746] [INFO] cheese - inserting 1000 documents. first: Gruenspan and last: Al Mac's Diner-Restaurant -[2018-02-13T00:47:49.763] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T00:47:49.829] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:47:49.896] [INFO] cheese - inserting 1000 documents. first: 29/4 and last: Wenig -[2018-02-13T00:47:49.936] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:47:50.081] [INFO] cheese - inserting 1000 documents. first: Off-Leash Area and last: Rufous Night-heron -[2018-02-13T00:47:50.166] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T00:47:50.166] [INFO] cheese - inserting 1000 documents. first: Patricia Darcy Jones and last: Category:Articles lacking sources from April 2010 -[2018-02-13T00:47:50.196] [INFO] cheese - inserting 1000 documents. first: Category:1970 in Dutch television and last: Anjali (1977 film) -[2018-02-13T00:47:50.257] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T00:47:50.279] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:47:50.294] [INFO] cheese - inserting 1000 documents. first: Warranting Theory and last: Monastery of Santa María (Cañas) -[2018-02-13T00:47:50.364] [INFO] cheese - inserting 1000 documents. first: Toné and last: Gmina Swieciechowa -[2018-02-13T00:47:50.376] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:47:50.427] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:47:50.631] [INFO] cheese - inserting 1000 documents. first: John Toepp and last: Pashkov, Alexander -[2018-02-13T00:47:50.743] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T00:47:50.811] [INFO] cheese - inserting 1000 documents. first: Javan Pond-heron and last: Bob Lambert (cricketer) -[2018-02-13T00:47:50.875] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T00:47:50.964] [INFO] cheese - inserting 1000 documents. first: Template:Anime-music-stub and last: TMK OAO -[2018-02-13T00:47:50.984] [INFO] cheese - inserting 1000 documents. first: Betty Hill (disambiguation) and last: Professor Em. Dr. Wim A. G. Blonk -[2018-02-13T00:47:50.990] [INFO] cheese - inserting 1000 documents. first: Signeta flammeata and last: John Vincent (lawyer) -[2018-02-13T00:47:51.019] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:47:51.079] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:47:51.164] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T00:47:51.354] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Plasticity Forum and last: Twenty-fourth United Kingdom general election -[2018-02-13T00:47:51.431] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:47:51.568] [INFO] cheese - inserting 1000 documents. first: File:Anglo Chinese College.jpg and last: File:ACDC Itsalongway.ogg -[2018-02-13T00:47:51.609] [INFO] cheese - inserting 1000 documents. first: File:Filmworks 1986-1990 Nonesuch.jpg and last: File:Shabazz-pohc.jpg -[2018-02-13T00:47:51.629] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T00:47:51.654] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T00:47:51.693] [INFO] cheese - inserting 1000 documents. first: Discoceps fasciatus and last: Template:1960s-thriller-film-stub -[2018-02-13T00:47:51.736] [INFO] cheese - inserting 1000 documents. first: Lotherton cum Aberford and last: Category:Albums produced by Rico Love -[2018-02-13T00:47:51.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/Napoleon and Tabitha D'umo/1 and last: Aforia indomaris -[2018-02-13T00:47:51.751] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T00:47:51.803] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T00:47:51.882] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:47:52.031] [INFO] cheese - inserting 1000 documents. first: Twenty-fifth United Kingdom general election and last: Nélson António Soares da Gama -[2018-02-13T00:47:52.042] [INFO] cheese - inserting 1000 documents. first: Lorenzo Ma'afu and last: Stix -[2018-02-13T00:47:52.118] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T00:47:52.148] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:47:52.264] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Samix and last: The Ritz (play) -[2018-02-13T00:47:52.366] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T00:47:52.430] [INFO] cheese - inserting 1000 documents. first: Italians in Montreal and last: Phloeus -[2018-02-13T00:47:52.542] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T00:47:52.658] [INFO] cheese - inserting 1000 documents. first: Category:Horse breeds originating in Hungary and last: Aziz Sydykov -[2018-02-13T00:47:52.693] [INFO] cheese - inserting 1000 documents. first: Brian Bement and last: Shaler, Alexander -[2018-02-13T00:47:52.765] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:52.767] [INFO] cheese - inserting 1000 documents. first: Aforia inoperculata and last: File:Map complex1.jpg -[2018-02-13T00:47:52.774] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Untitled Ashley Tisdale album and last: Jordanus catalani de Severac -[2018-02-13T00:47:52.778] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T00:47:52.850] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:47:52.851] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T00:47:53.052] [INFO] cheese - inserting 1000 documents. first: Cennino (d'Andrea) Cennini and last: Communes of the Cantal département -[2018-02-13T00:47:53.086] [INFO] cheese - inserting 1000 documents. first: Bruno Vides and last: Mitsubishi Navy Type 1 Attack Bomber Model 22 -[2018-02-13T00:47:53.125] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T00:47:53.138] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:47:53.285] [INFO] cheese - inserting 1000 documents. first: Shand, Alexander and last: Win.Trojan.DNSChanger -[2018-02-13T00:47:53.332] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:47:53.352] [INFO] cheese - inserting 1000 documents. first: My Family (TVB) and last: January 2005 Iraqi elections -[2018-02-13T00:47:53.367] [INFO] cheese - inserting 1000 documents. first: Rowy, Pomeranian Voivodeship and last: Simpson Strait -[2018-02-13T00:47:53.406] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T00:47:53.414] [INFO] cheese - inserting 1000 documents. first: Daryl Dixon (disambiguation) and last: Category:International lacrosse competitions hosted by Canada -[2018-02-13T00:47:53.429] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:47:53.509] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:47:53.556] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jesse Samek and last: High Plains Blizzards of December 2006 -[2018-02-13T00:47:53.606] [INFO] cheese - inserting 1000 documents. first: Mitsubishi Navy Type 1 Attack Bomber Model 22 Ko and last: Megachile electrum -[2018-02-13T00:47:53.657] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:47:53.710] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T00:47:53.944] [INFO] cheese - inserting 1000 documents. first: Syd Moore and last: File:Pronunciation of the name of the letter (u) in European languages.png -[2018-02-13T00:47:54.011] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T00:47:54.193] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/swissmail.org and last: Category:Pakistani documentary films -[2018-02-13T00:47:54.259] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T00:47:54.352] [INFO] cheese - inserting 1000 documents. first: Levon II the Magnificent and last: Twisted Tales (book series) -[2018-02-13T00:47:54.384] [INFO] cheese - inserting 1000 documents. first: Megachile elizabethae and last: W43BO -[2018-02-13T00:47:54.394] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Tag & Assess 2008/132 and last: Kinki Evangelical Lutheran Church -[2018-02-13T00:47:54.395] [INFO] cheese - inserting 1000 documents. first: Anaphora of Deir Balyzeh and last: File:Coldplay X&Y Latin tour editon.svg -[2018-02-13T00:47:54.425] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:47:54.426] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T00:47:54.440] [INFO] cheese - inserting 1000 documents. first: File:Anonymous Street Artist WRDSMTH in front of one of his works in DTLA.jpg and last: Uganda icterine bulbul -[2018-02-13T00:47:54.494] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:47:54.494] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T00:47:54.504] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T00:47:54.667] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Template talk:Did you know and last: Stygge Krumpen -[2018-02-13T00:47:54.709] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:47:54.869] [INFO] cheese - inserting 1000 documents. first: W43BP and last: Odell Murray -[2018-02-13T00:47:54.909] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:47:54.929] [INFO] cheese - inserting 1000 documents. first: Erasmus D. Barlow and last: Template:S-line/MBTA left/Plymouth -[2018-02-13T00:47:54.938] [INFO] cheese - inserting 1000 documents. first: Tejana and last: Pierre Vidal (disambiguation) -[2018-02-13T00:47:54.949] [INFO] cheese - inserting 1000 documents. first: Vasilevsky, Alexander and last: Apostolic Vicariate of Manado -[2018-02-13T00:47:54.961] [INFO] cheese - inserting 1000 documents. first: Bannang Sata (town) and last: Darkglass Mountain -[2018-02-13T00:47:54.969] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:47:54.982] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:47:54.985] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:47:55.026] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:47:55.090] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Selected works/29 and last: Colombian Grass Mouse -[2018-02-13T00:47:55.152] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:47:55.225] [INFO] cheese - inserting 1000 documents. first: Category:Brighton and Hove City Council and last: Synchronus flowering -[2018-02-13T00:47:55.260] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:47:55.282] [INFO] cheese - inserting 1000 documents. first: File:Stony Road.jpg and last: Kheredine Idessane -[2018-02-13T00:47:55.316] [INFO] cheese - inserting 1000 documents. first: Draft:Terry Duffy and last: Alnoor International School -[2018-02-13T00:47:55.331] [INFO] cheese - inserting 1000 documents. first: File:The Shadowcatchers book cover.jpg and last: Pic de Rochebrune -[2018-02-13T00:47:55.343] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:47:55.383] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:47:55.406] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:47:55.476] [INFO] cheese - inserting 1000 documents. first: Follow You Down and last: Category:Films directed by René Clair -[2018-02-13T00:47:55.539] [INFO] cheese - inserting 1000 documents. first: Cordillera Occidental Akodont and last: Neelysia nemoricola -[2018-02-13T00:47:55.539] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:47:55.616] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:47:55.763] [INFO] cheese - inserting 1000 documents. first: Category:Baroque architecture in Veneto and last: Nyota Uhura -[2018-02-13T00:47:55.827] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T00:47:55.869] [INFO] cheese - inserting 1000 documents. first: Quirpa de Tres Mujeres and last: Template:Taxonomy/Xiphydrioidea -[2018-02-13T00:47:55.936] [INFO] cheese - inserting 1000 documents. first: De la Hoya versus Mayweather and last: Category:Wars involving Estonia -[2018-02-13T00:47:56.096] [INFO] cheese - inserting 1000 documents. first: Category:Destroyed spacecraft and last: Dollard-des-Ormeaux–Roxboro -[2018-02-13T00:47:56.052] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T00:47:56.181] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T00:47:56.189] [INFO] cheese - inserting 1000 documents. first: Landscapes in the Mist and last: L. terrestris -[2018-02-13T00:47:56.272] [INFO] cheese - inserting 1000 documents. first: Psalm 11 and last: Portal:Mauritius/Selected panorama/6 -[2018-02-13T00:47:56.293] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T00:47:56.297] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T00:47:56.347] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T00:47:56.486] [INFO] cheese - inserting 1000 documents. first: Template:Temporal illusions and last: Megachile montezuma -[2018-02-13T00:47:56.518] [INFO] cheese - inserting 1000 documents. first: Sexpionage and last: Category:1896–97 collegiate men's basketball independents season in the United States -[2018-02-13T00:47:56.544] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:47:56.589] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:47:56.703] [INFO] cheese - inserting 1000 documents. first: Les Enfants du siècle and last: File:The Stones of Nomuru.jpg -[2018-02-13T00:47:56.749] [INFO] cheese - inserting 1000 documents. first: Tecnu and last: Everybody Out! (album) -[2018-02-13T00:47:56.759] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:47:56.808] [INFO] cheese - inserting 1000 documents. first: T .N. Manoharan and last: Category:Russian people of Romanian descent -[2018-02-13T00:47:56.822] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T00:47:56.929] [INFO] cheese - inserting 1000 documents. first: Geyuk, Iran and last: Chloë Moretz -[2018-02-13T00:47:56.930] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:47:56.975] [INFO] cheese - inserting 1000 documents. first: Mendel University Brno and last: Wikipedia:WikiProject Spam/Local/128casinos.com -[2018-02-13T00:47:57.000] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T00:47:57.058] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:47:57.146] [INFO] cheese - inserting 1000 documents. first: Megachile montibia and last: St. John Climacus's Orthodox Church, Warsaw -[2018-02-13T00:47:57.224] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:47:57.262] [INFO] cheese - inserting 1000 documents. first: Still Waiting (disambiguation) and last: Karnail Singh Stadium -[2018-02-13T00:47:57.293] [INFO] cheese - inserting 1000 documents. first: The Emperor's Pearl and last: File:SoledadMiria.jpg -[2018-02-13T00:47:57.337] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:47:57.360] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:47:57.432] [INFO] cheese - inserting 1000 documents. first: Draft:Mácsár Gábor and last: Category:Railway accidents in West Bengal -[2018-02-13T00:47:57.471] [INFO] cheese - inserting 1000 documents. first: Category:People from Beşiktaş and last: Shamanism in Eskimo culture -[2018-02-13T00:47:57.470] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:47:57.478] [INFO] cheese - inserting 1000 documents. first: Template:Dutch governors of Ceylon and last: China SCE Property Holdings Limited -[2018-02-13T00:47:57.513] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:47:57.542] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:47:57.557] [INFO] cheese - inserting 1000 documents. first: Category:College football articles needing expert attention and last: Jean Coleman -[2018-02-13T00:47:57.600] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:47:57.667] [INFO] cheese - inserting 1000 documents. first: Category:Aviation in Chad and last: 15th Infantry Regiment (South Korea) -[2018-02-13T00:47:57.708] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:47:57.797] [INFO] cheese - inserting 1000 documents. first: Israel-uae relations and last: Phenom X6 -[2018-02-13T00:47:57.803] [INFO] cheese - inserting 1000 documents. first: Glory to the Heroes and last: Drewes' worm snake -[2018-02-13T00:47:57.810] [INFO] cheese - inserting 1000 documents. first: Gerardo Rubén Morales and last: Jože Brejc -[2018-02-13T00:47:57.827] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:47:57.847] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:57.865] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:47:57.906] [INFO] cheese - inserting 1000 documents. first: Template:PBB/23240 and last: Trideceth -[2018-02-13T00:47:57.947] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:47:58.030] [INFO] cheese - inserting 1000 documents. first: Navajo flag and last: José Anastasio Torrens -[2018-02-13T00:47:58.075] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:47:58.083] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 2006/York South—Weston and last: Emanuel Wynne -[2018-02-13T00:47:58.086] [INFO] cheese - inserting 1000 documents. first: Marcelo De Alvear and last: Peltiphyllum -[2018-02-13T00:47:58.122] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:47:58.161] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:47:58.181] [INFO] cheese - inserting 1000 documents. first: Teodor Kufel and last: Terence Robbins -[2018-02-13T00:47:58.222] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:47:58.316] [INFO] cheese - inserting 1000 documents. first: Henry Crosby Emery and last: Heinz (surname) -[2018-02-13T00:47:58.334] [INFO] cheese - inserting 1000 documents. first: Sudan blind snake and last: 2017–18 Vitesse season -[2018-02-13T00:47:58.425] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:47:58.443] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:47:58.522] [INFO] cheese - inserting 1000 documents. first: William Haslam and last: Template:Birmingham Thunderbolts roster -[2018-02-13T00:47:58.614] [INFO] cheese - inserting 1000 documents. first: You Ain't Got Nuthin' and last: WALL • E -[2018-02-13T00:47:58.656] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T00:47:58.715] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:47:58.826] [INFO] cheese - inserting 1000 documents. first: Otto Danieli and last: File:SWALEC Cup.gif -[2018-02-13T00:47:58.842] [INFO] cheese - inserting 1000 documents. first: Perfect (Courage the Cowardly Dog) and last: Like a Boy -[2018-02-13T00:47:58.896] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:47:58.921] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T00:47:59.016] [INFO] cheese - inserting 1000 documents. first: Denly and last: File:Hazyville cover.jpg -[2018-02-13T00:47:59.053] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:47:59.082] [INFO] cheese - inserting 1000 documents. first: Franco Faría and last: George Sorensen -[2018-02-13T00:47:59.099] [INFO] cheese - inserting 1000 documents. first: File:The Bachelor's Daughters poster.jpg and last: James Roger Otteson -[2018-02-13T00:47:59.140] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T00:47:59.153] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T00:47:59.228] [INFO] cheese - inserting 1000 documents. first: Hourou Musuko and last: Captaincy general -[2018-02-13T00:47:59.298] [INFO] cheese - inserting 1000 documents. first: P. teres and last: File:Mayimague.jpg -[2018-02-13T00:47:59.303] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:47:59.382] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T00:47:59.409] [INFO] cheese - inserting 1000 documents. first: North American Society for Oceanic History and last: PlayTone Records -[2018-02-13T00:47:59.460] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:47:59.526] [INFO] cheese - inserting 1000 documents. first: Sil-gochu and last: Wikipedia:Articles for deletion/Lorca Cohen -[2018-02-13T00:47:59.560] [INFO] cheese - batch complete in: 0.407 secs -[2018-02-13T00:47:59.583] [INFO] cheese - inserting 1000 documents. first: German cities and last: Potęgowo Commune -[2018-02-13T00:47:59.610] [INFO] cheese - inserting 1000 documents. first: Category:Salvadoran guerrillas and last: Keith Davies -[2018-02-13T00:47:59.623] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:47:59.627] [INFO] cheese - inserting 1000 documents. first: Category:Elsewhere (band) albums and last: Template:BledsoeCountyTN-geo-stub -[2018-02-13T00:47:59.677] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:47:59.680] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:47:59.833] [INFO] cheese - inserting 1000 documents. first: Asociación Paraguaya de Futbol and last: Miscanthus floridulus -[2018-02-13T00:47:59.892] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:47:59.922] [INFO] cheese - inserting 1000 documents. first: Cwmderi and last: Portal:Business and economics/Did you know/January 2007 -[2018-02-13T00:47:59.972] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:47:59.985] [INFO] cheese - inserting 1000 documents. first: Potegowo Commune and last: Abdelhamid Bouchouk -[2018-02-13T00:48:00.053] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:48:00.089] [INFO] cheese - inserting 1000 documents. first: Latching End Effector and last: HMS Jalouse (1797) -[2018-02-13T00:48:00.168] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:48:00.277] [INFO] cheese - inserting 1000 documents. first: Five-needle telegraph and last: Joseph Aloysius Sheehy -[2018-02-13T00:48:00.287] [INFO] cheese - inserting 1000 documents. first: File:Maximum (film) poster.jpg and last: Graphium polistratus -[2018-02-13T00:48:00.326] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:48:00.406] [INFO] cheese - inserting 1000 documents. first: Trivial Pursuit Turbo and last: Tomellana hupferi -[2018-02-13T00:48:00.410] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:48:00.472] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:48:00.509] [INFO] cheese - inserting 1000 documents. first: Foster rhode island and last: High Bridge Township, New Jersey -[2018-02-13T00:48:00.520] [INFO] cheese - inserting 1000 documents. first: Mary brown bullock and last: File:Clint Black, Greatest Hits.jpg -[2018-02-13T00:48:00.566] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:48:00.587] [INFO] cheese - inserting 1000 documents. first: Khirbat el Mansura and last: Sardar Muhammad Yaqoob Khan -[2018-02-13T00:48:00.615] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:48:00.661] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:48:00.756] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:List of banned users/Banned by the Arbitration Committee and last: Category:John Mann (musician) albums -[2018-02-13T00:48:00.806] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:48:00.854] [INFO] cheese - inserting 1000 documents. first: Park Jung-Hye and last: Baltinglass Rebellion -[2018-02-13T00:48:00.911] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:48:00.942] [INFO] cheese - inserting 1000 documents. first: Tomellana leschkei and last: Fox Kids Play -[2018-02-13T00:48:01.008] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T00:48:01.050] [INFO] cheese - inserting 1000 documents. first: Red Randall Series and last: Chris Christenson -[2018-02-13T00:48:01.070] [INFO] cheese - inserting 1000 documents. first: 1960 NCAA College Division football rankings and last: Keri Maletto -[2018-02-13T00:48:01.098] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:48:01.130] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:48:01.180] [INFO] cheese - inserting 1000 documents. first: John Welwood and last: Wikipedia:WikiProject Military history/Peer review/USS Texas (BB-35) -[2018-02-13T00:48:01.217] [INFO] cheese - inserting 1000 documents. first: Category:Mann (rapper) albums and last: Category:1945–46 in American ice hockey by team -[2018-02-13T00:48:01.234] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:48:01.254] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T00:48:01.354] [INFO] cheese - inserting 1000 documents. first: Category:Dakota Wesleyan Tigers baseball coaches and last: Speed2 -[2018-02-13T00:48:01.382] [INFO] cheese - inserting 1000 documents. first: The Story of Martha and last: Sam Huihahau -[2018-02-13T00:48:01.401] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:48:01.426] [INFO] cheese - inserting 1000 documents. first: Chimo (greeting) and last: Detroit Titans football -[2018-02-13T00:48:01.427] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:48:01.474] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T00:48:01.535] [INFO] cheese - inserting 1000 documents. first: Operation GIRAFFE 3 and last: Mario Balbuena González -[2018-02-13T00:48:01.587] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:01.648] [INFO] cheese - inserting 1000 documents. first: Check Post and last: Category:Albums by Tunisian artists by genre -[2018-02-13T00:48:01.678] [INFO] cheese - inserting 1000 documents. first: Diving at the 1956 Summer Olympics – Women's 3 metre springboard and last: Exposure with response prevention -[2018-02-13T00:48:01.683] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:01.740] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:01.797] [INFO] cheese - inserting 1000 documents. first: Hyposmocoma domicolens and last: Isaac Smith (sailor) -[2018-02-13T00:48:01.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Wooster Scot Center and last: Category:Professional certification in engineering -[2018-02-13T00:48:01.835] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:01.854] [INFO] cheese - inserting 1000 documents. first: Rosztoczy Andras and last: Oxylamia basilewskyi -[2018-02-13T00:48:01.878] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwean cricket tours of Pakistan and last: The real eeepc -[2018-02-13T00:48:01.885] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:48:01.897] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:01.918] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:48:02.173] [INFO] cheese - inserting 1000 documents. first: Category:Rock albums by Tunisian artists and last: File:Kerala State Cashew Corporation Logo.jpg -[2018-02-13T00:48:02.282] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:48:02.317] [INFO] cheese - inserting 1000 documents. first: Not Like Us and last: Wikipedia:WikiProject Spam/Local/indieex.com -[2018-02-13T00:48:02.406] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:48:02.429] [INFO] cheese - inserting 1000 documents. first: Cochrane Database Syst. Rev. and last: Raphitoma purpurea -[2018-02-13T00:48:02.431] [INFO] cheese - inserting 1000 documents. first: Mesa Redonda International and last: Model-driven testing -[2018-02-13T00:48:02.496] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T00:48:02.535] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T00:48:02.553] [INFO] cheese - inserting 1000 documents. first: The Tyne Songster by W & T Fordyce - 1840 and last: Portal:Hisar/box-header -[2018-02-13T00:48:02.566] [INFO] cheese - inserting 1000 documents. first: Category:1983 in Greece and last: Holger Bertrand Flöttmann -[2018-02-13T00:48:02.615] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T00:48:02.648] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T00:48:03.102] [INFO] cheese - inserting 1000 documents. first: Bill Ralston (footballer) and last: Draft:Johannes de Cuba -[2018-02-13T00:48:03.118] [INFO] cheese - inserting 1000 documents. first: Cassiopeia (wife of Phoenix) and last: Executive Order 13797 -[2018-02-13T00:48:03.201] [INFO] cheese - inserting 1000 documents. first: Franconian International School and last: Coppa Italia 2000–01 -[2018-02-13T00:48:03.234] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T00:48:03.309] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T00:48:03.407] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T00:48:03.448] [INFO] cheese - inserting 1000 documents. first: Aberdovey Harbour railway station and last: Template:Fb team Sturm Graz -[2018-02-13T00:48:03.449] [INFO] cheese - inserting 1000 documents. first: Governor's Troop and last: Presidente Médici, Rondônia -[2018-02-13T00:48:03.530] [INFO] cheese - inserting 1000 documents. first: Portal:Hisar/box-footer and last: Metetherial world -[2018-02-13T00:48:03.586] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T00:48:03.599] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T00:48:03.663] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T00:48:04.067] [INFO] cheese - inserting 1000 documents. first: Category:Battles involving Chechnya and last: Executive Order 11111 -[2018-02-13T00:48:04.118] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1936 Summer Olympics – Men's 100 metres and last: Serbian League West 2007-08 -[2018-02-13T00:48:04.165] [INFO] cheese - inserting 1000 documents. first: Charlie Nicklas and last: Wikipedia:Articles for deletion/Andy Carnegie -[2018-02-13T00:48:04.172] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T00:48:04.209] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T00:48:04.226] [INFO] cheese - inserting 1000 documents. first: Phillips Middle School and last: Colls v. Home & Colonial Stores Ltd -[2018-02-13T00:48:04.231] [INFO] cheese - inserting 1000 documents. first: André Bollier and last: Kim Seong-Yong -[2018-02-13T00:48:04.300] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T00:48:04.335] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:48:04.341] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:48:04.378] [INFO] cheese - inserting 1000 documents. first: Salome (cartoon pig) and last: Wikipedia:Esperanza/Calendar/February/29 -[2018-02-13T00:48:04.445] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T00:48:04.702] [INFO] cheese - inserting 1000 documents. first: Bat wing development and last: Bauntovskiy Evenkiyskiy Raion -[2018-02-13T00:48:04.764] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:48:04.812] [INFO] cheese - inserting 1000 documents. first: Luigi Annoni and last: Denise Frigo -[2018-02-13T00:48:04.831] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/San Francisco and last: List of Syrian Air Force bases -[2018-02-13T00:48:04.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Darren Carnegie and last: Category:Paleontological protected areas in the United States -[2018-02-13T00:48:04.866] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T00:48:04.890] [INFO] cheese - inserting 1000 documents. first: Holtzhey and last: Category:Academies by country -[2018-02-13T00:48:04.888] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T00:48:04.893] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:04.970] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:48:04.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Esperanza/Calendar/February/26 and last: Cityscape of Ashland, Kentucky -[2018-02-13T00:48:05.048] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:48:05.272] [INFO] cheese - inserting 1000 documents. first: MDXLIV and last: Paris Peasant -[2018-02-13T00:48:05.305] [INFO] cheese - inserting 1000 documents. first: Bauntovskiy Evenkiyski Raion and last: Pine Hill (disambiguation) -[2018-02-13T00:48:05.326] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:48:05.360] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Pah Wongso and last: Deputy Secretary of the Department of Energy -[2018-02-13T00:48:05.381] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:48:05.463] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T00:48:05.515] [INFO] cheese - inserting 1000 documents. first: Diving at the 1960 Summer Olympics – Men's 10 metre platform and last: Oh rly? -[2018-02-13T00:48:05.533] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Zadanya garcia and last: Niceville High -[2018-02-13T00:48:05.549] [INFO] cheese - inserting 1000 documents. first: Dian hong tea and last: Triphoturus -[2018-02-13T00:48:05.574] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T00:48:05.624] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:48:05.660] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T00:48:05.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Jazz/Categories and last: Fairbanks Museum -[2018-02-13T00:48:05.956] [INFO] cheese - inserting 1000 documents. first: Boone County Airlines and last: Rino Benedettii -[2018-02-13T00:48:06.014] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:48:06.039] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:48:06.090] [INFO] cheese - inserting 1000 documents. first: Coronation Street: Episode 1 and last: Nacra Infusion -[2018-02-13T00:48:06.128] [INFO] cheese - inserting 1000 documents. first: Draft:Cocteaufest and last: Template:Internationalize -[2018-02-13T00:48:06.160] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T00:48:06.210] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T00:48:06.263] [INFO] cheese - inserting 1000 documents. first: Heather Kessler and last: Lamine Diack -[2018-02-13T00:48:06.301] [INFO] cheese - inserting 1000 documents. first: Louisa So and last: Ali Tajvidi -[2018-02-13T00:48:06.309] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T00:48:06.382] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T00:48:06.545] [INFO] cheese - inserting 1000 documents. first: Barbus pobeguini and last: Brazelton, William -[2018-02-13T00:48:06.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Emilydickinsonmason7534 and last: MV Toko Maru -[2018-02-13T00:48:06.589] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:48:06.661] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T00:48:06.689] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Jack Lawrence (musician) and last: Megachile peculifera -[2018-02-13T00:48:06.694] [INFO] cheese - inserting 1000 documents. first: 2012 Kurume Best Amenity International Women's Tennis – Doubles and last: Portal:Scotland/Selected article/Week 23, 2012 -[2018-02-13T00:48:06.739] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:48:06.761] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T00:48:06.797] [INFO] cheese - inserting 1000 documents. first: Category:Characters in mystery novel series by century and last: Poornathrayeesa Temple -[2018-02-13T00:48:06.859] [INFO] cheese - inserting 1000 documents. first: James Findlay (congressman) and last: Wikipedia:Esperanza/Calendar/January/29 -[2018-02-13T00:48:06.860] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:48:06.945] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T00:48:06.990] [INFO] cheese - inserting 1000 documents. first: Brazier, William and last: Vladimir Ivanovich Stepanov -[2018-02-13T00:48:07.033] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:48:07.062] [INFO] cheese - inserting 1000 documents. first: Toko Maru and last: Bolsheuluysky District -[2018-02-13T00:48:07.118] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:07.321] [INFO] cheese - inserting 1000 documents. first: John Oglander and last: Template:Youvegotmail -[2018-02-13T00:48:07.381] [INFO] cheese - inserting 1000 documents. first: 2008–09 Nemzeti Bajnokság I and last: Category:Characters in British novels of the 21st century -[2018-02-13T00:48:07.386] [INFO] cheese - inserting 1000 documents. first: Category:2015 in sambo and last: Marcos Salas Contreras -[2018-02-13T00:48:07.407] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:48:07.465] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T00:48:07.465] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T00:48:07.513] [INFO] cheese - inserting 1000 documents. first: Draft:Iván Morales Bravo and last: Matthew Boulton (epidemiologist) -[2018-02-13T00:48:07.540] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Esperanza/Calendar/January/31 and last: Comtessa de Dia -[2018-02-13T00:48:07.553] [INFO] cheese - inserting 1000 documents. first: Catocala ixion and last: Ameen Rihani bibliography -[2018-02-13T00:48:07.570] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T00:48:07.581] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:48:07.629] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T00:48:07.970] [INFO] cheese - inserting 1000 documents. first: North Schleswig and last: Media Agua -[2018-02-13T00:48:07.998] [INFO] cheese - inserting 1000 documents. first: Category:Jordin Sparks and last: Boom (album) -[2018-02-13T00:48:08.005] [INFO] cheese - inserting 1000 documents. first: Category:Corruption in Slovenia and last: Wikipedia:Miscellany for deletion/User:Hartsellml -[2018-02-13T00:48:08.015] [INFO] cheese - inserting 1000 documents. first: USS Tensaw (YT-418) and last: Carnforth station -[2018-02-13T00:48:08.014] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:48:08.022] [INFO] cheese - inserting 1000 documents. first: Libby Mettam and last: Megachile pusilla -[2018-02-13T00:48:08.042] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:48:08.059] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:08.059] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T00:48:08.082] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:48:08.215] [INFO] cheese - inserting 1000 documents. first: Neumont University and last: What's That Shadow? -[2018-02-13T00:48:08.264] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T00:48:08.312] [INFO] cheese - inserting 1000 documents. first: Great Falls Expo Park and last: Masini Situ Kumbanga -[2018-02-13T00:48:08.347] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:48:08.356] [INFO] cheese - inserting 1000 documents. first: Euterebra fernandesi and last: Keep It Movin' (album) -[2018-02-13T00:48:08.386] [INFO] cheese - inserting 1000 documents. first: Coat of arms of Zürich and last: Mid Northamptonshire by-election, 1892 -[2018-02-13T00:48:08.396] [INFO] cheese - inserting 1000 documents. first: 154th Tactical Reconnaissance Squadron and last: Return of the Crimson Guard -[2018-02-13T00:48:08.399] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:08.432] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:48:08.469] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:48:08.480] [INFO] cheese - inserting 1000 documents. first: John. Gibson (songwriter) and last: Kareem Valentine -[2018-02-13T00:48:08.517] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:08.624] [INFO] cheese - inserting 1000 documents. first: Martin Stern and last: J. B. Gunn -[2018-02-13T00:48:08.691] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T00:48:08.716] [INFO] cheese - inserting 1000 documents. first: Lake Mâțelor and last: Template:Dominican Summer League Diamondbacks 2 roster -[2018-02-13T00:48:08.737] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/auburnfansite.com and last: The Great Heroes -[2018-02-13T00:48:08.781] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T00:48:08.803] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:48:08.824] [INFO] cheese - inserting 1000 documents. first: Kennedy Farm and last: Łazy Commune -[2018-02-13T00:48:08.854] [INFO] cheese - inserting 1000 documents. first: Akiodoris and last: American Experience (season 6) -[2018-02-13T00:48:08.902] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:48:08.953] [INFO] cheese - inserting 1000 documents. first: Category:Lists of National Football League retired numbers and last: File:Tunnel War Cover Picture.jpg -[2018-02-13T00:48:08.981] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T00:48:09.114] [INFO] cheese - inserting 1000 documents. first: Gmina Lazy and last: Siemiatkowo Commune -[2018-02-13T00:48:09.150] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:48:09.158] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T00:48:09.316] [INFO] cheese - inserting 1000 documents. first: Choraut and last: File:Maria the Maid.jpg -[2018-02-13T00:48:09.364] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:48:09.389] [INFO] cheese - inserting 1000 documents. first: File:Magnets (The Vapors album) coverart.jpg and last: The Oriely Factor -[2018-02-13T00:48:09.406] [INFO] cheese - inserting 1000 documents. first: Category:Sports competitions in Cyprus and last: Navy-Wright XF3W-1 Apache -[2018-02-13T00:48:09.447] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:48:09.494] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T00:48:09.598] [INFO] cheese - inserting 1000 documents. first: Category:Industry by city and last: Peaky Blinders (series 2) -[2018-02-13T00:48:09.629] [INFO] cheese - inserting 1000 documents. first: Siennica Commune and last: Arno Suislep -[2018-02-13T00:48:09.663] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T00:48:09.689] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T00:48:09.804] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Part One of the Constitution of India and last: Template:Footer CAC Champions 100m Freestyle Men -[2018-02-13T00:48:09.850] [INFO] cheese - inserting 1000 documents. first: Fetislam and last: Taeniotes albiplagiatus -[2018-02-13T00:48:09.876] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T00:48:09.908] [INFO] cheese - inserting 1000 documents. first: Category:Converts to Judaism from Anglicanism and last: List of United States Navy ships: N-O -[2018-02-13T00:48:09.916] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:09.943] [INFO] cheese - inserting 1000 documents. first: List of U.S. military vessels named after Presidents and last: File:Open water.JPG -[2018-02-13T00:48:09.987] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:48:10.033] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:48:10.098] [INFO] cheese - inserting 1000 documents. first: Category:1927–28 in Canadian ice hockey by team and last: Bas-Sassandra District -[2018-02-13T00:48:10.164] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:48:10.282] [INFO] cheese - inserting 1000 documents. first: Lasse Svan Hansen and last: HR 63 -[2018-02-13T00:48:10.348] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T00:48:10.415] [INFO] cheese - inserting 1000 documents. first: Maple-leafed plane and last: Draft:Max Eliscu (businessman) -[2018-02-13T00:48:10.421] [INFO] cheese - inserting 1000 documents. first: Juodis and last: Open Source Routing Machine -[2018-02-13T00:48:10.468] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T00:48:10.493] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T00:48:10.556] [INFO] cheese - inserting 1000 documents. first: Category:UN and last: Kate Major -[2018-02-13T00:48:10.659] [INFO] cheese - inserting 1000 documents. first: Category:Airships of the United States and last: Bi-parental care -[2018-02-13T00:48:10.661] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:48:10.758] [INFO] cheese - inserting 1000 documents. first: Template:1983 Atlantic Coast Conference baseball standings and last: Smithbooks -[2018-02-13T00:48:10.773] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T00:48:10.846] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T00:48:10.927] [INFO] cheese - inserting 1000 documents. first: Henry De Saussure and last: Herb Wakabayashi -[2018-02-13T00:48:10.979] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:48:10.995] [INFO] cheese - inserting 1000 documents. first: Western goblin and last: Personal assets tax -[2018-02-13T00:48:11.042] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T00:48:11.088] [INFO] cheese - inserting 1000 documents. first: Neyg and last: Category:Latter Day Saint movement in South Carolina -[2018-02-13T00:48:11.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jeudebelote.org and last: Protexarnis balanitis -[2018-02-13T00:48:11.129] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T00:48:11.175] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T00:48:11.179] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Disco79 and last: 25th Division (Japan) -[2018-02-13T00:48:11.240] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T00:48:11.293] [INFO] cheese - inserting 1000 documents. first: Who I Am (Lena Katina song) and last: Wikipedia:Sockpuppet investigations/Mediaent123 -[2018-02-13T00:48:11.337] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T00:48:11.410] [INFO] cheese - inserting 1000 documents. first: Draft:Indiana Forest Alliance and last: Cuckold Formation -[2018-02-13T00:48:11.453] [INFO] cheese - inserting 1000 documents. first: London Silly Nannies and last: Porte de Hal -[2018-02-13T00:48:11.461] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T00:48:11.469] [INFO] cheese - inserting 1000 documents. first: File:Garuda-di-dadaku.jpg and last: Salmson 9Za -[2018-02-13T00:48:11.521] [INFO] cheese - inserting 1000 documents. first: Battle of al-Auja and last: Tom Van Meter -[2018-02-13T00:48:11.527] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:48:11.535] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:48:11.563] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:11.625] [INFO] cheese - inserting 1000 documents. first: Melkite Greek Catholic Eparchy of Saint Michael Archangel in Sydney and last: Castles in Scotland -[2018-02-13T00:48:11.665] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T00:48:11.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meade Kincke and last: State Route 729 (Culpeper County, Virginia) -[2018-02-13T00:48:11.746] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:48:11.774] [INFO] cheese - inserting 1000 documents. first: Weaves (band) and last: Wikipedia:Miscellany for deletion/User:CmdrDan/Subpage Usage Examples -[2018-02-13T00:48:11.809] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:48:11.889] [INFO] cheese - inserting 1000 documents. first: Éric Battista and last: CPC Loop -[2018-02-13T00:48:11.915] [INFO] cheese - inserting 1000 documents. first: Kalahandi Balangir Koraput Region and last: Welch bounds -[2018-02-13T00:48:11.944] [INFO] cheese - inserting 1000 documents. first: Sergei Leonov and last: Robert Roloson Houses -[2018-02-13T00:48:11.943] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:48:11.960] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:48:12.042] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:48:12.148] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:RocketMaster/My Gallery and last: Takuya Murata -[2018-02-13T00:48:12.190] [INFO] cheese - inserting 1000 documents. first: Blue Sky Bones and last: Carol S. Aneshensel -[2018-02-13T00:48:12.209] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:48:12.281] [INFO] cheese - inserting 1000 documents. first: Template:British Columbia provincial election, 2013/Vancouver-Kensington and last: Parazelota mima -[2018-02-13T00:48:12.299] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:48:12.331] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T00:48:12.506] [INFO] cheese - inserting 1000 documents. first: File:MadMazAus.jpg and last: Michael Flynn (disambiguation) -[2018-02-13T00:48:12.544] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T00:48:12.549] [INFO] cheese - inserting 1000 documents. first: Local cluster and last: Anagasta kuchinella -[2018-02-13T00:48:12.565] [INFO] cheese - inserting 1000 documents. first: Fahda bint Saud Al Saud and last: Cand. real. -[2018-02-13T00:48:12.602] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T00:48:12.682] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T00:48:12.918] [INFO] cheese - inserting 1000 documents. first: Toowoomba Permanent Building Society and last: United States Senate election in Virginia, 1871 -[2018-02-13T00:48:12.925] [INFO] cheese - inserting 1000 documents. first: Jin'an Open and last: Royal Bank of Canada Building, Havana -[2018-02-13T00:48:12.929] [INFO] cheese - inserting 1000 documents. first: Association of Zoos & Aquariums and last: Runcinia acuminata -[2018-02-13T00:48:12.996] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T00:48:13.007] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T00:48:13.037] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T00:48:13.236] [INFO] cheese - inserting 1000 documents. first: File:Res pantages grillworkers.jpg and last: Wikipedia:Articles for deletion/Log/2008 June 11 -[2018-02-13T00:48:13.362] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:48:13.430] [INFO] cheese - inserting 1000 documents. first: Yehuda Bacon and last: Arsaber -[2018-02-13T00:48:13.481] [INFO] cheese - inserting 1000 documents. first: Nonsensical song and last: William Bate Hardy Prize -[2018-02-13T00:48:13.537] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T00:48:13.576] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T00:48:13.630] [INFO] cheese - inserting 1000 documents. first: AMD RX Vega series and last: Ter-Mkrtychyan -[2018-02-13T00:48:13.687] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:48:13.693] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Virginia, 1877 and last: Wikipedia:Articles for deletion/Esmat Yahia -[2018-02-13T00:48:13.751] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:48:13.810] [INFO] cheese - inserting 1000 documents. first: File:Ciis main building.jpg and last: Narendra chanchal -[2018-02-13T00:48:13.949] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T00:48:14.141] [INFO] cheese - inserting 1000 documents. first: Cedar Lake Speedway and last: Bandini 750 sport internazionale -[2018-02-13T00:48:14.202] [INFO] cheese - inserting 1000 documents. first: Capillary haemangioma and last: Karratha Senior High School -[2018-02-13T00:48:14.207] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T00:48:14.260] [INFO] cheese - inserting 1000 documents. first: House of Odd and last: Broads National Park -[2018-02-13T00:48:14.288] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T00:48:14.360] [INFO] cheese - inserting 1000 documents. first: MOS:TITLECASE and last: Wikipedia:Featured list candidates/List of accolades received by Madras (film)/archive1 -[2018-02-13T00:48:14.350] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T00:48:14.426] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T00:48:14.439] [INFO] cheese - inserting 1000 documents. first: På vårt sätt (Scotts album) and last: Category:Concert tours of Canada -[2018-02-13T00:48:14.453] [INFO] cheese - inserting 1000 documents. first: Ayw and last: Tropic Sun Theatre -[2018-02-13T00:48:14.506] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T00:48:14.514] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T00:48:14.659] [INFO] cheese - inserting 1000 documents. first: Guy Butler (disambiguation) and last: 1999–2000 United States network television schedule (weekday) -[2018-02-13T00:48:14.739] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:48:14.841] [INFO] cheese - inserting 1000 documents. first: File:The Age of Kali.jpg and last: List of UK Rock & Metal Albums Chart number ones of 2005 -[2018-02-13T00:48:14.877] [INFO] cheese - inserting 1000 documents. first: Wojciech Seweryn and last: Sixtus IV Appointing Platina as Prefect of the Vatican Library -[2018-02-13T00:48:14.878] [INFO] cheese - inserting 1000 documents. first: Bernardino de Mendoza y Pacheco (Captain General) and last: Leiopus nebulosus -[2018-02-13T00:48:14.916] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T00:48:14.941] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:48:14.949] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T00:48:15.049] [INFO] cheese - inserting 1000 documents. first: Category:Central Michigan Chippewas football coaches and last: Perap -[2018-02-13T00:48:15.077] [INFO] cheese - inserting 1000 documents. first: Dongsha Marine National Park and last: Círculo de Escritores Cinematográficos -[2018-02-13T00:48:15.146] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:48:15.149] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T00:48:15.474] [INFO] cheese - inserting 1000 documents. first: Dundee United F.C. in the 1970s and last: Moara, Burkina Faso -[2018-02-13T00:48:15.527] [INFO] cheese - inserting 1000 documents. first: California Numb and last: Everhart, William -[2018-02-13T00:48:15.559] [INFO] cheese - inserting 1000 documents. first: Seyyedadan and last: File:GaryBarlow&TCB.jpg -[2018-02-13T00:48:15.560] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T00:48:15.611] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T00:48:15.664] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T00:48:15.801] [INFO] cheese - inserting 1000 documents. first: Trọng Nguyễn and last: Draft:Ford Transit Courier -[2018-02-13T00:48:15.808] [INFO] cheese - inserting 1000 documents. first: Violeta Urmanavičiūtė and last: NEAT 8 -[2018-02-13T00:48:15.811] [INFO] cheese - inserting 1000 documents. first: Bir Foda and last: K-1 MAX Final 16 -[2018-02-13T00:48:15.847] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:48:15.851] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T00:48:15.885] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T00:48:15.995] [INFO] cheese - inserting 1000 documents. first: Template:Namibia-rugbyunion-bio-stub and last: 1934 National Challenge Cup -[2018-02-13T00:48:16.038] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T00:48:16.087] [INFO] cheese - inserting 1000 documents. first: Everingham, William and last: Feetham, William -[2018-02-13T00:48:16.096] [INFO] cheese - inserting 1000 documents. first: Category:National Football League franchise relocations and last: Pixley Airport -[2018-02-13T00:48:16.132] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T00:48:16.143] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T00:48:16.185] [INFO] cheese - inserting 1000 documents. first: James Ford Bell Museum of Natural History and last: Cone of answers -[2018-02-13T00:48:16.218] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:16.302] [INFO] cheese - inserting 1000 documents. first: Adrien-Nicolas Piédefer, marquis de La Salle and last: Vera Gibson-Amado -[2018-02-13T00:48:16.304] [INFO] cheese - inserting 1000 documents. first: Progeria syndrome and last: File:Should Have Seen It Coming.jpg -[2018-02-13T00:48:16.340] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T00:48:16.342] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T00:48:16.399] [INFO] cheese - inserting 1000 documents. first: Uzbekistan women's national rugby union team and last: Kenneth Doraty -[2018-02-13T00:48:16.434] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:48:16.514] [INFO] cheese - inserting 1000 documents. first: Ono.es and last: Wikipedia:Articles for deletion/The Babies -[2018-02-13T00:48:16.586] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:48:16.592] [INFO] cheese - inserting 1000 documents. first: Eurycreon leucostictalis and last: Black Mirror episodes -[2018-02-13T00:48:16.638] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:48:16.727] [INFO] cheese - inserting 1000 documents. first: Fehlandt, William and last: File:RSSM State Prize.png -[2018-02-13T00:48:16.780] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T00:48:16.788] [INFO] cheese - inserting 1000 documents. first: Category:Anglican schools in India and last: Argiphila inquinatella -[2018-02-13T00:48:16.839] [INFO] cheese - inserting 1000 documents. first: Boyz N Da Hood (album) and last: Percy Girouard -[2018-02-13T00:48:16.894] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T00:48:16.920] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T00:48:17.053] [INFO] cheese - inserting 1000 documents. first: Riddim Driven: Engine and last: Wikipedia:Featured list candidates/List of Cincinnati Bengals head coaches -[2018-02-13T00:48:17.159] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T00:48:17.163] [INFO] cheese - inserting 1000 documents. first: Kalimullah Khan and last: Mordellistena flavospinosa -[2018-02-13T00:48:17.183] [INFO] cheese - inserting 1000 documents. first: Category:Classical albums by Japanese artists and last: Wikipedia:Reference desk/Archives/Language/2014 October 18 -[2018-02-13T00:48:17.226] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T00:48:17.265] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T00:48:17.385] [INFO] cheese - inserting 1000 documents. first: Pediasia inquinatalis and last: Burton Berry -[2018-02-13T00:48:17.398] [INFO] cheese - inserting 1000 documents. first: Somewhere (Soundgarden song) and last: Frontier Scout -[2018-02-13T00:48:17.442] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T00:48:17.513] [INFO] cheese - inserting 1000 documents. first: Día da Patria Galega and last: Template:Fb competition 2004 Second League of Serbia and Montenegro playoffs -[2018-02-13T00:48:17.525] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T00:48:17.579] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:48:17.644] [INFO] cheese - inserting 1000 documents. first: Drunk Horse and last: Impact, Mueang Thong Thani -[2018-02-13T00:48:17.763] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T00:48:17.907] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2014 October 18 and last: Wilfried Trott -[2018-02-13T00:48:17.910] [INFO] cheese - inserting 1000 documents. first: CP-39,332 and last: Ashlyne Huff -[2018-02-13T00:48:17.948] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:17.988] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T00:48:18.141] [INFO] cheese - inserting 1000 documents. first: Dyera and last: Torodo -[2018-02-13T00:48:18.191] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:48:18.209] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures completed in 1107 and last: Portal:Bible/Featured chapter/Proverbs 9 -[2018-02-13T00:48:18.264] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T00:48:18.278] [INFO] cheese - inserting 1000 documents. first: Trebbi and last: File:Limo driver.ogg -[2018-02-13T00:48:18.344] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T00:48:18.364] [INFO] cheese - inserting 1000 documents. first: 2009 Aberto Santa Catarina De Tenis and last: Highway 546 (Ontario) -[2018-02-13T00:48:18.389] [INFO] cheese - inserting 1000 documents. first: German Society for Hygiene and Microbiology and last: Category:Sexual violence -[2018-02-13T00:48:18.402] [INFO] cheese - inserting 1000 documents. first: File:Mahakaliyantra.jpg and last: Category:Michigan high school sports conferences -[2018-02-13T00:48:18.408] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:48:18.445] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:48:18.462] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T00:48:18.631] [INFO] cheese - inserting 1000 documents. first: CoEur - In the heart of European paths and last: File:Day-O (1992) Film Poster.jpg -[2018-02-13T00:48:18.666] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:48:18.669] [INFO] cheese - inserting 1000 documents. first: Ásgeir Hallgrimsson and last: 2008 HomeSense Skate Canada International -[2018-02-13T00:48:18.723] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T00:48:18.778] [INFO] cheese - inserting 1000 documents. first: Highway 547 (Ontario) and last: Miles M.27 -[2018-02-13T00:48:18.851] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T00:48:18.928] [INFO] cheese - inserting 1000 documents. first: Dalek War: Chapter Two and last: Phantom Limb (song) -[2018-02-13T00:48:18.938] [INFO] cheese - inserting 1000 documents. first: Category:Christian music albums by English artists and last: Louis Joseph Hill -[2018-02-13T00:48:18.993] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T00:48:18.997] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:19.019] [INFO] cheese - inserting 1000 documents. first: Siri (MacOS) and last: Category:Defunct sports competitions in Singapore -[2018-02-13T00:48:19.058] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T00:48:19.261] [INFO] cheese - inserting 1000 documents. first: 2008 Homesense Skate Canada International and last: Category:Vocational education in the Philippines -[2018-02-13T00:48:19.328] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T00:48:19.367] [INFO] cheese - inserting 1000 documents. first: Portal:Heraldry/DYK/1/26 and last: Hs-100 -[2018-02-13T00:48:19.461] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:48:19.578] [INFO] cheese - inserting 1000 documents. first: Category:Defunct sports competitions in South Africa and last: Category:Puttalam District society -[2018-02-13T00:48:19.666] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T00:48:19.728] [INFO] cheese - inserting 1000 documents. first: Justice Palace and last: Miss Utah -[2018-02-13T00:48:19.788] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T00:48:19.836] [INFO] cheese - inserting 1000 documents. first: Beach athletics at the 2014 Asian Beach Games and last: Uist & Barra Amateur Football Association -[2018-02-13T00:48:19.904] [INFO] cheese - inserting 1000 documents. first: Category:Portuguese sociologists and last: Cillian Boyd -[2018-02-13T00:48:19.912] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T00:48:19.937] [INFO] cheese - inserting 1000 documents. first: Henrik Arnold Thaulow Wergeland and last: Ogi-ohashi Station -[2018-02-13T00:48:19.983] [INFO] cheese - inserting 1000 documents. first: Hs-200 and last: Category:Buildings and structures in the Republic of Ireland by city -[2018-02-13T00:48:20.006] [INFO] cheese - batch complete in: 1.742 secs -[2018-02-13T00:48:20.021] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T00:48:20.046] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T00:48:20.081] [INFO] cheese - inserting 1000 documents. first: Lü Zhong and last: Draft:Jeffrey Thomas -[2018-02-13T00:48:20.130] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T00:48:20.351] [INFO] cheese - inserting 1000 documents. first: Allen Mendler and last: 1099 Figneria -[2018-02-13T00:48:20.405] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T00:48:20.468] [INFO] cheese - inserting 1000 documents. first: MobileSafari and last: Gaongo -[2018-02-13T00:48:20.472] [INFO] cheese - inserting 1000 documents. first: Styles Brook and last: Diocese of Virginia -[2018-02-13T00:48:20.478] [INFO] cheese - inserting 1000 documents. first: Template:Henri Verneuil and last: Ivan Pecel -[2018-02-13T00:48:20.534] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T00:48:20.547] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:20.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Specifically Feminine-Feminist Narrative and last: Pyridinylpiperazine -[2018-02-13T00:48:20.589] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T00:48:20.667] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T00:48:20.810] [INFO] cheese - inserting 1000 documents. first: Royal consorts of Sweden and last: Siksashtaka -[2018-02-13T00:48:20.854] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T00:48:21.013] [INFO] cheese - inserting 1000 documents. first: West Hills Hospital and last: Meshullam (son of Besodeiah) -[2018-02-13T00:48:21.060] [INFO] cheese - inserting 1000 documents. first: Tony O'Gorman and last: Category:Mexican ophthalmologists -[2018-02-13T00:48:21.068] [INFO] cheese - inserting 1000 documents. first: Gero Camilo and last: Sata Lota Pan Sagla Khota -[2018-02-13T00:48:21.092] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:48:21.118] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:48:21.127] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T00:48:21.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pyaarkabandhan.com and last: File:Pussboots.jpg -[2018-02-13T00:48:21.243] [INFO] cheese - inserting 1000 documents. first: Philippine Basques and last: Tachornis phoenicobia -[2018-02-13T00:48:21.295] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:48:21.308] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T00:48:21.504] [INFO] cheese - inserting 1000 documents. first: Head of Government of Egypt and last: Navraj -[2018-02-13T00:48:21.547] [INFO] cheese - inserting 1000 documents. first: Giuseppe Benedetto Dusmet and last: John Tréllez -[2018-02-13T00:48:21.574] [INFO] cheese - inserting 1000 documents. first: Abigail Watson and last: Category:Renova Group -[2018-02-13T00:48:21.583] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:48:21.628] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:48:21.647] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T00:48:21.913] [INFO] cheese - inserting 1000 documents. first: Krasnogorsky District, Altai Krai and last: Category:Villages in Rudraprayag district -[2018-02-13T00:48:21.919] [INFO] cheese - inserting 1000 documents. first: Template:John Singleton and last: Carlos Averhoff "Sax" -[2018-02-13T00:48:21.981] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T00:48:21.985] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:22.193] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Myscelia and last: University of California Extension -[2018-02-13T00:48:22.228] [INFO] cheese - inserting 1000 documents. first: Padaleeputhram and last: Category:AfC submissions by date/06 November 2014 -[2018-02-13T00:48:22.254] [INFO] cheese - inserting 1000 documents. first: List of listed buildings in Kingoldrum, Angus and last: Lithium-ion battery recalls -[2018-02-13T00:48:22.276] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T00:48:22.283] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T00:48:22.395] [INFO] cheese - batch complete in: 2.389 secs -[2018-02-13T00:48:22.418] [INFO] cheese - inserting 1000 documents. first: The Israel Project and last: Wikipedia:Articles for deletion/Out Here Grindin' -[2018-02-13T00:48:22.488] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T00:48:22.494] [INFO] cheese - inserting 1000 documents. first: Wyrley and Cheslyn Hay railway station and last: Category:Books by Tony Hillerman -[2018-02-13T00:48:22.562] [INFO] cheese - inserting 1000 documents. first: A. australis and last: AC-2 (cable system) -[2018-02-13T00:48:22.571] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:22.593] [INFO] cheese - inserting 1000 documents. first: 2014 midterm elections and last: File:Phoenix Stadium.jpg -[2018-02-13T00:48:22.651] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:48:22.652] [INFO] cheese - inserting 1000 documents. first: Symphony for Solo Piano (Alkan) and last: Balasinor (Vidhan Sabha constituency) -[2018-02-13T00:48:22.655] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T00:48:22.720] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:48:22.972] [INFO] cheese - inserting 1000 documents. first: Ma Yongfeng and last: Economy of Medieval England -[2018-02-13T00:48:22.974] [INFO] cheese - inserting 1000 documents. first: Canton of Cluses and last: Category:Japanese disability organizations -[2018-02-13T00:48:22.979] [INFO] cheese - inserting 1000 documents. first: Megamalai Wildlife Sanctuary and last: Mubungere -[2018-02-13T00:48:22.979] [INFO] cheese - inserting 1000 documents. first: Red-and-black colobus and last: Project Megiddo -[2018-02-13T00:48:23.018] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:23.046] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T00:48:23.049] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T00:48:23.047] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:48:23.140] [INFO] cheese - inserting 1000 documents. first: UK-414495 and last: Template:MAAC Men's Basketball Player of the Year -[2018-02-13T00:48:23.140] [INFO] cheese - inserting 1000 documents. first: File:The Vanishings (Left Behind Book).jpg and last: Brian Bigger -[2018-02-13T00:48:23.197] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:48:23.233] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:48:23.581] [INFO] cheese - inserting 1000 documents. first: Category:2005 FIFA Confederations Cup and last: Flanagan, Thomas Canon -[2018-02-13T00:48:23.587] [INFO] cheese - inserting 1000 documents. first: Grampians by-election, 1917 and last: Wikipedia:Articles for deletion/UTasker -[2018-02-13T00:48:23.679] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T00:48:23.689] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T00:48:23.702] [INFO] cheese - inserting 1000 documents. first: Frankism and last: Nevel'ski Raion -[2018-02-13T00:48:23.759] [INFO] cheese - inserting 1000 documents. first: Roxane Dawson and last: Bee eaters -[2018-02-13T00:48:23.782] [INFO] cheese - inserting 1000 documents. first: Thoracic injuries and last: File:PFM Jetlag.jpg -[2018-02-13T00:48:23.790] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:48:23.807] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T00:48:23.868] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T00:48:23.956] [INFO] cheese - inserting 1000 documents. first: Category:Jordanian disability organisations and last: Ernakulam–Kayamkulam coastal railway line -[2018-02-13T00:48:24.049] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T00:48:24.212] [INFO] cheese - inserting 1000 documents. first: MEGAL pipeline and last: Portal:Arizona/Selected picture/9 -[2018-02-13T00:48:24.216] [INFO] cheese - inserting 1000 documents. first: Category:Books by Richard A. Muller and last: Vagra (Vidhan Sabha constituency) -[2018-02-13T00:48:24.304] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T00:48:24.317] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T00:48:24.334] [INFO] cheese - inserting 1000 documents. first: Edward Mordrake and last: Čop Street, Ljubljana -[2018-02-13T00:48:24.421] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T00:48:24.425] [INFO] cheese - inserting 1000 documents. first: Matthias Habich and last: Andrew J. Thayer -[2018-02-13T00:48:24.437] [INFO] cheese - inserting 1000 documents. first: Family dysfunctions and last: Dil Ki Baat -[2018-02-13T00:48:24.515] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T00:48:24.537] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:48:24.573] [INFO] cheese - inserting 1000 documents. first: Big Time Wrestling (Stu Hart promotion) and last: Wikipedia:Articles for deletion/Sporting Patna FC -[2018-02-13T00:48:24.659] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:48:24.844] [INFO] cheese - inserting 1000 documents. first: Portal:U.S. Roads/Selected picture/December 2014 and last: Medrylamine -[2018-02-13T00:48:24.883] [INFO] cheese - inserting 1000 documents. first: Lincoln City, Delaware and last: Gil of Santarem, Blessed -[2018-02-13T00:48:24.889] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:48:24.930] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T00:48:24.933] [INFO] cheese - inserting 1000 documents. first: Max Puig and last: Brassy minnow -[2018-02-13T00:48:24.967] [INFO] cheese - inserting 1000 documents. first: Category:The Simpsons (season 17) episodes and last: Fljótshlíð -[2018-02-13T00:48:25.007] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:25.041] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:48:25.090] [INFO] cheese - inserting 1000 documents. first: Quran Oath Controversy of the 110th United States Congress and last: 107th Fighter Squadron -[2018-02-13T00:48:25.150] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T00:48:25.216] [INFO] cheese - inserting 1000 documents. first: File:TumbleweedTheaterIntro.jpg and last: Joshaviah -[2018-02-13T00:48:25.271] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T00:48:25.368] [INFO] cheese - inserting 1000 documents. first: Ffestiniog transmitting station and last: Pseudotomoxia quadrinotata -[2018-02-13T00:48:25.405] [INFO] cheese - inserting 1000 documents. first: Liver dysfunction and last: Embury -[2018-02-13T00:48:25.408] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:48:25.413] [INFO] cheese - inserting 1000 documents. first: 2012–13 Mersin İdmanyurdu season and last: Rhizoplaca chrysoleuca -[2018-02-13T00:48:25.453] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T00:48:25.507] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T00:48:25.559] [INFO] cheese - inserting 1000 documents. first: File:Male chicken (Gallus gallus domesticus) with prominent plumage.jpg and last: Farakka dam -[2018-02-13T00:48:25.602] [INFO] cheese - inserting 1000 documents. first: Category:Angolan female middle-distance runners and last: Melkite Greek Catholic Archeparchy of Sidon and Deir el-Kamar -[2018-02-13T00:48:25.612] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:48:25.637] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:48:25.732] [INFO] cheese - inserting 1000 documents. first: Glosses, Scriptural and last: Bungo Township, Minnesota -[2018-02-13T00:48:25.749] [INFO] cheese - inserting 1000 documents. first: File:Pont Flavien, Bouches-du-Rhône, France. Pic 02.jpg and last: C14H15N5O -[2018-02-13T00:48:25.786] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:48:25.830] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T00:48:25.877] [INFO] cheese - inserting 1000 documents. first: File:Dar Chashm Bad .jpg and last: Portal:Capital District/Selected panorama/8 -[2018-02-13T00:48:25.925] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:48:26.048] [INFO] cheese - inserting 1000 documents. first: File:Life Is Toff titlecard.jpg and last: Robertsia -[2018-02-13T00:48:26.107] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:48:26.224] [INFO] cheese - inserting 1000 documents. first: Category:1895 in the Caribbean and last: List of Chief Justices of the United States -[2018-02-13T00:48:26.237] [INFO] cheese - inserting 1000 documents. first: Oldpark Avenue and last: Hendelove, William -[2018-02-13T00:48:26.265] [INFO] cheese - inserting 1000 documents. first: Yavana rani and last: Radio America (band) -[2018-02-13T00:48:26.280] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:48:26.305] [INFO] cheese - inserting 1000 documents. first: Crooked Lake Township, Minnesota and last: File:Nunavut coat of arms.jpg -[2018-02-13T00:48:26.309] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T00:48:26.333] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T00:48:26.403] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:48:26.422] [INFO] cheese - inserting 1000 documents. first: Hypsibema missouriensis and last: Ahistorical -[2018-02-13T00:48:26.477] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:26.585] [INFO] cheese - inserting 1000 documents. first: Sclerocladus and last: Capsule Inn Osaka -[2018-02-13T00:48:26.654] [INFO] cheese - inserting 1000 documents. first: Hendley, William and last: Category:Geology of Liaoning -[2018-02-13T00:48:26.659] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T00:48:26.694] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:48:26.700] [INFO] cheese - inserting 1000 documents. first: Arthur March and last: Ilse Lehiste -[2018-02-13T00:48:26.776] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:26.925] [INFO] cheese - inserting 1000 documents. first: Redlands Boulevard and last: File:Tylosema esculenta pod.PNG -[2018-02-13T00:48:26.982] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T00:48:26.990] [INFO] cheese - inserting 1000 documents. first: Norris-Whitney Communications Inc. and last: Fly, Robin, Fly -[2018-02-13T00:48:26.998] [INFO] cheese - inserting 1000 documents. first: Category:St. Louis Soccer League teams and last: Category:Basketball teams established in 1948 -[2018-02-13T00:48:27.057] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T00:48:27.077] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T00:48:27.236] [INFO] cheese - inserting 1000 documents. first: Category:Lists of historical drama films and last: Category:Articles needing sections from November 2014 -[2018-02-13T00:48:27.260] [INFO] cheese - inserting 1000 documents. first: Nephusim and last: Category:People from Franklin, Michigan -[2018-02-13T00:48:27.316] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:48:27.385] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T00:48:27.445] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Austria by millennium and last: Rákóczi Avenue -[2018-02-13T00:48:27.496] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T00:48:27.572] [INFO] cheese - inserting 1000 documents. first: NOKR and last: Southern Carnarvon Basin -[2018-02-13T00:48:27.640] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T00:48:27.699] [INFO] cheese - inserting 1000 documents. first: Template:Location map Saint Martin and last: Bamum script -[2018-02-13T00:48:27.737] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T00:48:27.768] [INFO] cheese - inserting 1000 documents. first: Lesbisk Bevægelse and last: Kidston, William -[2018-02-13T00:48:27.811] [INFO] cheese - inserting 1000 documents. first: Cathar castle and last: Sand and Pebbles -[2018-02-13T00:48:27.810] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T00:48:27.866] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T00:48:27.894] [INFO] cheese - inserting 1000 documents. first: Category:Articles needing cleanup from November 2014 and last: Campilostachis -[2018-02-13T00:48:27.911] [INFO] cheese - inserting 1000 documents. first: Ambrym Island and last: Crystal Lagoons -[2018-02-13T00:48:27.951] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T00:48:27.948] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T00:48:28.115] [INFO] cheese - inserting 1000 documents. first: Narsinhrao Divetia and last: Cotonopsis phuketensis -[2018-02-13T00:48:28.125] [INFO] cheese - inserting 1000 documents. first: Kiernan, William and last: Rakkath -[2018-02-13T00:48:28.145] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:48:28.151] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:48:28.234] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Airports/New articles/Archive 2008 and last: Werewolf Sonic -[2018-02-13T00:48:28.235] [INFO] cheese - inserting 1000 documents. first: Year Zero (album) and last: Category:Roman Catholic Ecclesiastical Province of Nouméa -[2018-02-13T00:48:28.265] [INFO] cheese - inserting 1000 documents. first: Kandewe Heritage Centre and last: Giacomo Bazzan -[2018-02-13T00:48:28.274] [INFO] cheese - inserting 1000 documents. first: Ampol Tangnoppakul and last: Implicit Runge–Kutta method -[2018-02-13T00:48:28.277] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T00:48:28.288] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T00:48:28.310] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:28.354] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:48:28.510] [INFO] cheese - inserting 1000 documents. first: Category:1553 establishments in the Ottoman Empire and last: Category:Danish still life painters -[2018-02-13T00:48:28.576] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:48:28.715] [INFO] cheese - inserting 1000 documents. first: Euplica brunnidentata and last: Ardenode -[2018-02-13T00:48:28.803] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T00:48:28.815] [INFO] cheese - inserting 1000 documents. first: Elkem ASA and last: All Quiet on the Western Front (song) -[2018-02-13T00:48:28.871] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T00:48:28.890] [INFO] cheese - inserting 1000 documents. first: Ingebrigt Belle and last: Hugo Maiocco -[2018-02-13T00:48:28.892] [INFO] cheese - inserting 1000 documents. first: Nezela and last: File:Suhozanet.jpg -[2018-02-13T00:48:28.986] [INFO] cheese - inserting 1000 documents. first: 2017–18 Orlando Magic season and last: Opae -[2018-02-13T00:48:29.069] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T00:48:29.166] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T00:48:29.184] [INFO] cheese - inserting 1000 documents. first: Portal:Library and last: New Bedford Standard-Times -[2018-02-13T00:48:29.221] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T00:48:29.421] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T00:48:29.699] [INFO] cheese - inserting 1000 documents. first: Harold Raynor and last: Chryseofusus subangulatus -[2018-02-13T00:48:29.704] [INFO] cheese - inserting 1000 documents. first: Mapping of Airline Traffic over Internet Protocol and last: Abdul Haleem -[2018-02-13T00:48:29.801] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T00:48:29.818] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T00:48:29.846] [INFO] cheese - inserting 1000 documents. first: Chyorny (inhabited locality) and last: Vladimír Rusnák -[2018-02-13T00:48:29.894] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T00:48:29.915] [INFO] cheese - inserting 1000 documents. first: Millie Simmonds and last: Template:Taxonomy/Dodonaea -[2018-02-13T00:48:29.957] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T00:48:30.068] [INFO] cheese - inserting 1000 documents. first: New Bedford Standard Times and last: Category:International ice hockey competitions hosted by Latvia -[2018-02-13T00:48:30.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Allegations of state terrorism by United States of America (3rd nomination) and last: Tenth Letter (Plato) -[2018-02-13T00:48:30.107] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:30.143] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T00:48:30.246] [INFO] cheese - inserting 1000 documents. first: Fair Park Medical Careers Magnet High School and last: File:Harold (2008 film character).jpg -[2018-02-13T00:48:30.287] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T00:48:30.308] [INFO] cheese - inserting 1000 documents. first: Fusinus suturalis and last: Travis d'Arnaud -[2018-02-13T00:48:30.340] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:48:30.379] [INFO] cheese - inserting 1000 documents. first: Category:West Virginia elections, 1898 and last: Wikipedia:Copyright problems/preload -[2018-02-13T00:48:30.390] [INFO] cheese - inserting 1000 documents. first: Chahar Farsakh and last: Boeing SLV -[2018-02-13T00:48:30.416] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:48:30.433] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T00:48:30.449] [INFO] cheese - inserting 1000 documents. first: Category:American explorers of the Pacific and last: File:Portion of ((tag)) testcases page.jpg -[2018-02-13T00:48:30.490] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T00:48:30.532] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Martin Luther King, Jr./archive1 and last: Teziutlán, Puebla -[2018-02-13T00:48:30.564] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:48:30.569] [INFO] cheese - inserting 1000 documents. first: No ni Saku Hana no Yō ni and last: Keroppi -[2018-02-13T00:48:30.615] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:48:30.668] [INFO] cheese - inserting 1000 documents. first: Shulamit Cohen-Kishik and last: KDEF -[2018-02-13T00:48:30.696] [INFO] cheese - inserting 1000 documents. first: Rossmoor, California and last: Yasuj Chain dam -[2018-02-13T00:48:30.706] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:48:30.713] [INFO] cheese - inserting 1000 documents. first: 1950 Wilkes 200 and last: Template:2012 Summer Olympics women's field hockey game B1 -[2018-02-13T00:48:30.738] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:48:30.755] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:48:30.868] [INFO] cheese - inserting 1000 documents. first: Nagaragawa Onsen and last: Trichambaram -[2018-02-13T00:48:30.908] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T00:48:30.937] [INFO] cheese - inserting 1000 documents. first: Yi Meng Wei Ma and last: Wikipedia:WikiProject Spam/LinkReports/concertconfessions.com -[2018-02-13T00:48:30.989] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T00:48:31.001] [INFO] cheese - inserting 1000 documents. first: Category:User ku-5 and last: Category:Defunct organisations of the Turks and Caicos Islands -[2018-02-13T00:48:31.042] [INFO] cheese - inserting 1000 documents. first: Category:Clubs and societies in Sweden and last: Telecommunications company -[2018-02-13T00:48:31.045] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T00:48:31.048] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Amanpreet S Sokhi and last: Rovny -[2018-02-13T00:48:31.078] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:48:31.097] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:48:31.131] [INFO] cheese - inserting 1000 documents. first: Template:Basketball-videogame-stub and last: Category:1994–95 domestic association football leagues -[2018-02-13T00:48:31.189] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T00:48:31.400] [INFO] cheese - inserting 1000 documents. first: Category:Defunct organisations of Uganda and last: File:The pond at Swaylands.jpg -[2018-02-13T00:48:31.433] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/concertconfessions.com and last: ASTRID (reactor) -[2018-02-13T00:48:31.436] [INFO] cheese - inserting 1000 documents. first: Divili and last: The Tai Chi Master -[2018-02-13T00:48:31.467] [INFO] cheese - inserting 1000 documents. first: Kapaneus and last: Abshir -[2018-02-13T00:48:31.489] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T00:48:31.543] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:48:31.552] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T00:48:31.592] [INFO] cheese - inserting 1000 documents. first: Rovny (disambiguation) and last: AEXS -[2018-02-13T00:48:31.588] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T00:48:31.670] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T00:48:31.719] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject China/Peer review/2007 and last: Stefan Korboński -[2018-02-13T00:48:31.783] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T00:48:31.879] [INFO] cheese - inserting 1000 documents. first: Visa requirements for Djibouti citizens and last: Endarasha -[2018-02-13T00:48:31.904] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:32.018] [INFO] cheese - inserting 1000 documents. first: Qeshlaq Khas and last: HD 221776 -[2018-02-13T00:48:32.023] [INFO] cheese - inserting 1000 documents. first: Category:1983 North Indian Ocean cyclone season and last: Category:Religion in Matara, Sri Lanka -[2018-02-13T00:48:32.075] [INFO] cheese - inserting 1000 documents. first: Zeynabad Sharqi and last: Fowlerichthys -[2018-02-13T00:48:32.076] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T00:48:32.085] [INFO] cheese - inserting 1000 documents. first: Falck USA and last: Alison Wonderland -[2018-02-13T00:48:32.115] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T00:48:32.146] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T00:48:32.170] [INFO] cheese - inserting 1000 documents. first: Bibee and last: Danzl -[2018-02-13T00:48:32.172] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:48:32.224] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:32.322] [INFO] cheese - inserting 1000 documents. first: Rocket Dive and last: Iuzhno-Kurilskiy District -[2018-02-13T00:48:32.383] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T00:48:32.555] [INFO] cheese - inserting 1000 documents. first: Gachichi and last: Flagsymphony -[2018-02-13T00:48:32.580] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Columbia County, Oregon and last: Category:Rivers of Ada County, Idaho -[2018-02-13T00:48:32.585] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:32.605] [INFO] cheese - inserting 1000 documents. first: Template:Arw and last: Template:2012 Summer Olympics men's field hockey game A15 -[2018-02-13T00:48:32.661] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T00:48:32.685] [INFO] cheese - inserting 1000 documents. first: 2003 Denver Broncos season and last: Museum of Indian Culture -[2018-02-13T00:48:32.687] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:48:32.784] [INFO] cheese - inserting 1000 documents. first: Jakab Marastoni and last: Shlomo Ben-Haim -[2018-02-13T00:48:32.784] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:48:32.922] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T00:48:32.944] [INFO] cheese - inserting 1000 documents. first: Iuzhno-Kurilski District and last: Cross Your T's and Gouge Your I's -[2018-02-13T00:48:33.036] [INFO] cheese - inserting 1000 documents. first: Flammario and last: John F. Kennedy Middle School (Northampton, Massachusetts) -[2018-02-13T00:48:33.045] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T00:48:33.081] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:33.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:School and university projects/Psyc3330 w12/Group13 and last: Mark Wentges -[2018-02-13T00:48:33.197] [INFO] cheese - inserting 1000 documents. first: Na Fianna GAA and last: SysVinit -[2018-02-13T00:48:33.206] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T00:48:33.277] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T00:48:33.318] [INFO] cheese - inserting 1000 documents. first: Category:Canadian people murdered abroad and last: Template:User USAFw2 -[2018-02-13T00:48:33.372] [INFO] cheese - inserting 1000 documents. first: Clarrie Shields and last: Kana Kacha railway station -[2018-02-13T00:48:33.380] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T00:48:33.449] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T00:48:33.465] [INFO] cheese - inserting 1000 documents. first: Kabieni and last: Jessenius -[2018-02-13T00:48:33.547] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T00:48:33.612] [INFO] cheese - inserting 1000 documents. first: Steve Jaffe and last: E. A. Smythies -[2018-02-13T00:48:33.702] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T00:48:33.747] [INFO] cheese - inserting 1000 documents. first: Template:2010-11 in Kenyan football - CAN Qualifiers matches and last: Gordon Wallace (Scottish footballer) -[2018-02-13T00:48:33.828] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T00:48:33.859] [INFO] cheese - inserting 1000 documents. first: Kholokhongo and last: Väinö Leskinen -[2018-02-13T00:48:33.896] [INFO] cheese - inserting 1000 documents. first: You Have to be Beautiful and last: Category:Buddhist temples in Monaragala District -[2018-02-13T00:48:33.936] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T00:48:33.967] [INFO] cheese - inserting 1000 documents. first: XEOQ-AM and last: James Knowles -[2018-02-13T00:48:33.990] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T00:48:33.995] [INFO] cheese - inserting 1000 documents. first: Over Stratton, Somerset and last: Roy Ferguson (rugby league) -[2018-02-13T00:48:34.056] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T00:48:34.068] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T00:48:34.259] [INFO] cheese - inserting 1000 documents. first: List of Grendizer characters and last: Template:Senior British Open Championship champions -[2018-02-13T00:48:34.265] [INFO] cheese - inserting 1000 documents. first: Choneteuthis and last: Anthony Claude Leach, Jr. -[2018-02-13T00:48:34.291] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:48:34.308] [INFO] cheese - inserting 1000 documents. first: Anthony Francis Nugent, 9th Earl of Westmeath and last: Olena Baltacha -[2018-02-13T00:48:34.317] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T00:48:34.395] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T00:48:34.447] [INFO] cheese - inserting 1000 documents. first: File:Ox the Fox.png and last: Two Weeks -[2018-02-13T00:48:34.524] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T00:48:34.602] [INFO] cheese - inserting 1000 documents. first: Mattgenge and last: Pajka -[2018-02-13T00:48:34.638] [INFO] cheese - inserting 1000 documents. first: File:Benjamin West - Joshua passing the River Jordan with the Ark of the Covenant - Google Art Project.jpg and last: Pionea xanthographa -[2018-02-13T00:48:34.641] [INFO] cheese - inserting 616 documents. first: Rose (2011 film) and last: Pethup Gompa -[2018-02-13T00:48:34.641] [INFO] cheese - batch complete in: 0.35 secs -[2018-02-13T00:48:34.648] [INFO] cheese - inserting 1000 documents. first: Redpath Township, Minnesota and last: List of countries by irrigated land area -[2018-02-13T00:48:34.677] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:48:34.677] [INFO] cheese - worker pid:56525 is done. inserted 2763617 pages in 0 secs. -[2018-02-13T00:48:34.699] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T00:48:34.706] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T00:48:34.820] [INFO] cheese - inserting 1000 documents. first: Mohammad Baqer Baqeri and last: Soviet fleet -[2018-02-13T00:48:34.880] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T00:48:34.922] [INFO] cheese - inserting 1000 documents. first: Draft:Robert E. Bourdeau and last: Module:Country extract/BE -[2018-02-13T00:48:34.940] [INFO] cheese - inserting 1000 documents. first: Template:Bismuth compounds and last: Preussentum und Sozialismus -[2018-02-13T00:48:34.988] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T00:48:34.993] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:48:35.199] [INFO] cheese - inserting 1000 documents. first: Draft:BBC Lab UK and last: Klaw and Erlanger -[2018-02-13T00:48:35.240] [INFO] cheese - inserting 1000 documents. first: List of components of oil drilling rigs and last: List of Neo Angelique Abyss episodes -[2018-02-13T00:48:35.285] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:35.328] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T00:48:35.469] [INFO] cheese - inserting 1000 documents. first: List of Original Signers of the 1849 California Constitution and last: Pudsey & Otley -[2018-02-13T00:48:35.477] [INFO] cheese - inserting 1000 documents. first: Saddlemyer and last: File:JeepJamboreeGameBoyPic.jpg -[2018-02-13T00:48:35.540] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian female middle-distance runners and last: Electrical capacitance volume tomography -[2018-02-13T00:48:35.541] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T00:48:35.591] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T00:48:35.673] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:35.828] [INFO] cheese - inserting 1000 documents. first: Tabei and last: Yeshuhua -[2018-02-13T00:48:35.845] [INFO] cheese - inserting 1000 documents. first: Portal:Anarchism/Anniversaries/June/June 30 and last: Allosaurus tendagurensis -[2018-02-13T00:48:35.853] [INFO] cheese - inserting 1000 documents. first: Kundian Junction railway station and last: Wikipedia:Today's featured article/requests/Kenneth Walker -[2018-02-13T00:48:35.859] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:48:35.874] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T00:48:35.888] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:48:35.997] [INFO] cheese - inserting 1000 documents. first: Sword of François I and last: 2017-18 Duke Blue Devils men's basketball team -[2018-02-13T00:48:36.009] [INFO] cheese - inserting 1000 documents. first: Édouard Brissaud and last: Essex North -[2018-02-13T00:48:36.061] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:36.084] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:48:36.195] [INFO] cheese - inserting 1000 documents. first: Yeungchuchiu and last: Matolani -[2018-02-13T00:48:36.214] [INFO] cheese - inserting 1000 documents. first: HMS Gift (G45) and last: Priyam Priyamkaram -[2018-02-13T00:48:36.228] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:48:36.234] [INFO] cheese - inserting 1000 documents. first: Pizza-ghetti and last: Council Members -[2018-02-13T00:48:36.251] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:48:36.279] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T00:48:36.385] [INFO] cheese - inserting 1000 documents. first: Lady Jessie Street and last: Henry Chandler Bowen -[2018-02-13T00:48:36.432] [INFO] cheese - inserting 1000 documents. first: Frank Buckley (businessman) and last: If This Is Hell, Then I'm Lucky -[2018-02-13T00:48:36.432] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:36.482] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:48:36.550] [INFO] cheese - inserting 1000 documents. first: Matondoni and last: File:Shearersfoods.png -[2018-02-13T00:48:36.586] [INFO] cheese - batch complete in: 0.358 secs -[2018-02-13T00:48:36.587] [INFO] cheese - inserting 1000 documents. first: GCUWF and last: James Addison Bushnell -[2018-02-13T00:48:36.610] [INFO] cheese - inserting 1000 documents. first: Lee Paterson and last: Cécile Nowak -[2018-02-13T00:48:36.627] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:36.645] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:36.692] [INFO] cheese - inserting 1000 documents. first: File:Juli-Insel.jpg and last: Ahmed Mohammad Kathrada -[2018-02-13T00:48:36.728] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:48:36.923] [INFO] cheese - inserting 1000 documents. first: James Lowther (1753–1837) and last: Kiambiu -[2018-02-13T00:48:36.984] [INFO] cheese - inserting 1000 documents. first: George Huntingford and last: Mira Khel -[2018-02-13T00:48:36.988] [INFO] cheese - inserting 1000 documents. first: Front Lot (Walt Disney Studios Park) and last: Category:The NHL Network (1975–79) affiliates -[2018-02-13T00:48:37.000] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:48:37.011] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:37.032] [INFO] cheese - inserting 38 documents. first: File:Deadmalls dot com screenshot.jpg and last: Franz Winterhalter -[2018-02-13T00:48:37.034] [INFO] cheese - batch complete in: 0.034 secs -[2018-02-13T00:48:37.034] [INFO] cheese - worker pid:56522 is done. inserted 2307039 pages in 0 secs. -[2018-02-13T00:48:37.040] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T00:48:37.075] [INFO] cheese - inserting 1000 documents. first: Category:Corporate warfare in fiction and last: File:The Lilac Serenade.jpeg -[2018-02-13T00:48:37.121] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:48:37.126] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Putnis and last: File:B.B. Studio logo.svg -[2018-02-13T00:48:37.164] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T00:48:37.335] [INFO] cheese - inserting 1000 documents. first: Theatre actress and last: Wikipedia:Articles for deletion/The Return of the G.O.A.T. -[2018-02-13T00:48:37.382] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:37.408] [INFO] cheese - inserting 1000 documents. first: Tutu Plantation House and last: Scouting and Guiding in the Republic of China -[2018-02-13T00:48:37.409] [INFO] cheese - inserting 1000 documents. first: Category:Villages in the canton of Zug and last: Enteroenteric circulation -[2018-02-13T00:48:37.433] [INFO] cheese - inserting 1000 documents. first: Ralte Lalthuammawia and last: Category:Singaporean high jumpers -[2018-02-13T00:48:37.449] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:48:37.478] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:48:37.484] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T00:48:37.685] [INFO] cheese - inserting 1000 documents. first: Jewish National Fund Tree of Life Award and last: Chris Okemo -[2018-02-13T00:48:37.705] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T00:48:37.707] [INFO] cheese - inserting 1000 documents. first: Sweet Apple Berry and last: Category:Bodies of water of Davison County, South Dakota -[2018-02-13T00:48:37.729] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T00:48:37.757] [INFO] cheese - inserting 1000 documents. first: Eliza Wheeler and last: Template:1966 Missouri Valley Conference football standings -[2018-02-13T00:48:37.782] [INFO] cheese - inserting 1000 documents. first: Category:1985 elections in North America and last: Mohibullah Samim -[2018-02-13T00:48:37.784] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T00:48:37.804] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:48:37.965] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Haters (La, La, La) and last: StickK -[2018-02-13T00:48:37.971] [INFO] cheese - inserting 1000 documents. first: Posthumous wedding and last: File:Genesys Logo 2017.svg -[2018-02-13T00:48:38.001] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:48:38.003] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:48:38.025] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whelen WPS 4000 Series and last: List of battles and wars involving the Islamic State of Iraq and the Levant -[2018-02-13T00:48:38.075] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:48:38.181] [INFO] cheese - inserting 1000 documents. first: Modal shift and last: Wikipedia:Articles for deletion/Amsterdam's Garden -[2018-02-13T00:48:38.233] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:38.240] [INFO] cheese - inserting 1000 documents. first: Armenians in Slovenia and last: Category:RSD Alcalá managers -[2018-02-13T00:48:38.263] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:48:38.277] [INFO] cheese - inserting 1000 documents. first: Central Ranges Taipan and last: Iowa University -[2018-02-13T00:48:38.317] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:48:38.379] [INFO] cheese - inserting 1000 documents. first: Nisa Azeezi and last: File:1980 Kannada film Minchina Ota VCD cover.jpg -[2018-02-13T00:48:38.396] [INFO] cheese - inserting 1000 documents. first: That Was Then, This Is Now (album) and last: Wikipedia:Votes for deletion/Boprah -[2018-02-13T00:48:38.420] [INFO] cheese - batch complete in: 0.186 secs -[2018-02-13T00:48:38.423] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T00:48:38.577] [INFO] cheese - inserting 1000 documents. first: Azerbaijan State Theatre "Yuğ" and last: Nauplius smithii -[2018-02-13T00:48:38.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Boris Bertrand and last: Wikipedia:Votes for deletion/Denis Howe -[2018-02-13T00:48:38.607] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:48:38.625] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:48:38.778] [INFO] cheese - inserting 1000 documents. first: National University of Chilecito and last: A Boy Called Hate -[2018-02-13T00:48:38.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Denise Davis and last: Wikipedia:Votes for deletion/Gods & Heroes -[2018-02-13T00:48:38.797] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:48:38.801] [INFO] cheese - inserting 1000 documents. first: Template:Country data MALAYSIA and last: Trapania toddi -[2018-02-13T00:48:38.809] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T00:48:38.840] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:38.919] [INFO] cheese - inserting 1000 documents. first: Dutch people in Namibia and last: Category:Rivers of Beadle County, South Dakota -[2018-02-13T00:48:38.940] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gods of greec and last: Ion Sîrbu -[2018-02-13T00:48:38.955] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:48:38.963] [INFO] cheese - batch complete in: 0.166 secs -[2018-02-13T00:48:39.128] [INFO] cheese - inserting 1000 documents. first: File:View of Nuremberg, Pennsylvania from the south.JPG and last: Liberal Party (Republic of Macedonia) -[2018-02-13T00:48:39.158] [INFO] cheese - inserting 1000 documents. first: Category:Association football in County Cork and last: Wikipedia:Votes for deletion/Maggie Haskins -[2018-02-13T00:48:39.172] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:48:39.204] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:48:39.262] [INFO] cheese - inserting 1000 documents. first: Template:Keikyu Station Numbering and last: J. W. Boateng -[2018-02-13T00:48:39.288] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:48:39.308] [INFO] cheese - inserting 1000 documents. first: Honda HA-420 and last: Wikipedia:Votes for deletion/Peanut butter jelly time -[2018-02-13T00:48:39.328] [INFO] cheese - batch complete in: 0.124 secs -[2018-02-13T00:48:39.343] [INFO] cheese - inserting 1000 documents. first: Giovanni Maria Lancisi and last: Wikipedia:WikiProject Geelong/Cleanup listing -[2018-02-13T00:48:39.391] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T00:48:39.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Pearl 'n' Mearl and last: Wikipedia:Votes for deletion/Sleep sex -[2018-02-13T00:48:39.485] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:48:39.523] [INFO] cheese - inserting 1000 documents. first: Shobhanam and last: Sex Is Law -[2018-02-13T00:48:39.543] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Northwestern Mexico and last: Fat and Thin -[2018-02-13T00:48:39.560] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:39.573] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:48:39.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Sleepy's Law and last: Wikipedia:Votes for deletion/Ubergeek -[2018-02-13T00:48:39.656] [INFO] cheese - batch complete in: 0.171 secs -[2018-02-13T00:48:39.788] [INFO] cheese - inserting 1000 documents. first: Kathleen Friedrich and last: File:Central Bank of Russia.jpg -[2018-02-13T00:48:39.810] [INFO] cheese - inserting 1000 documents. first: Marie-Eugenie of Jesus and last: Memories Off 3.5 -[2018-02-13T00:48:39.812] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:48:39.826] [INFO] cheese - inserting 1000 documents. first: Episode 9 (Twin Peaks) and last: Juan Cayetano Fernández de Agüero -[2018-02-13T00:48:39.877] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Ubitsa and last: Admiralty Research Establishment -[2018-02-13T00:48:39.887] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:39.893] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:39.935] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:48:40.186] [INFO] cheese - inserting 1000 documents. first: File:Girls Le Disko.jpg and last: Vlora wind farm -[2018-02-13T00:48:40.204] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:40.208] [INFO] cheese - inserting 1000 documents. first: Yi Tso-lin and last: File:Greatest Hits (Album Cover).jpg -[2018-02-13T00:48:40.216] [INFO] cheese - inserting 1000 documents. first: Category:1930 establishments in Alberta and last: AEON Stores -[2018-02-13T00:48:40.216] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Improve2009 and last: Category:Australian booksellers -[2018-02-13T00:48:40.236] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:48:40.249] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:40.257] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:48:40.472] [INFO] cheese - inserting 1000 documents. first: Portal:Professional wrestling/Topics/11 and last: Category:Spain football templates -[2018-02-13T00:48:40.487] [INFO] cheese - inserting 1000 documents. first: Template:2011 UFL (Philippines) Division 2 table and last: Čajle -[2018-02-13T00:48:40.496] [INFO] cheese - inserting 1000 documents. first: File:Elisabeth Dhanens.jpg and last: Jadwiga Cieszyńska -[2018-02-13T00:48:40.502] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:48:40.517] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:48:40.526] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:40.529] [INFO] cheese - inserting 1000 documents. first: Media of the Soviet Union and last: Anticlerical art -[2018-02-13T00:48:40.568] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:48:40.764] [INFO] cheese - inserting 1000 documents. first: Banco del Pichincha and last: Draft:Janey-E Jones -[2018-02-13T00:48:40.766] [INFO] cheese - inserting 1000 documents. first: Category:Swiss biographical films and last: Wikipedia:Articles for deletion/Intaction -[2018-02-13T00:48:40.769] [INFO] cheese - inserting 1000 documents. first: Point St. Charles and last: Menegazzia albida -[2018-02-13T00:48:40.795] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:40.803] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T00:48:40.804] [INFO] cheese - batch complete in: 0.302 secs -[2018-02-13T00:48:40.883] [INFO] cheese - inserting 1000 documents. first: Yutaka and last: Wilbur Mitcham -[2018-02-13T00:48:40.928] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:48:41.007] [INFO] cheese - inserting 1000 documents. first: East Side Story (Will & Grace) and last: My Mother's Eyes (disambiguation) -[2018-02-13T00:48:41.040] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:48:41.069] [INFO] cheese - inserting 1000 documents. first: Calliostoma peregrinum and last: Acalyptris maritima -[2018-02-13T00:48:41.112] [INFO] cheese - inserting 1000 documents. first: Bill Neely (American football) and last: The Doreen Valiente Foundation -[2018-02-13T00:48:41.111] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:48:41.162] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:48:41.328] [INFO] cheese - inserting 1000 documents. first: Osteen (disambiguation) and last: Imperial Tutor Pang -[2018-02-13T00:48:41.383] [INFO] cheese - inserting 1000 documents. first: Later with Jules Holland and last: File:Persepolisfc classic .jpg -[2018-02-13T00:48:41.397] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T00:48:41.506] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T00:48:41.518] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rv1865.com and last: Heloecius -[2018-02-13T00:48:41.570] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:48:41.771] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Puebla and last: 2007 European Athletics U23 Championships – Men's 1500 metres -[2018-02-13T00:48:41.831] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T00:48:41.893] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/2017 Riverside Cessna 310 crash and last: Gurjaradesh -[2018-02-13T00:48:41.956] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T00:48:42.006] [INFO] cheese - inserting 1000 documents. first: Kunnuvarankottai Kasi Visalakshi-Viswanathar Temple and last: RLIF Awards 2008 -[2018-02-13T00:48:42.036] [INFO] cheese - inserting 1000 documents. first: Jean-Baptiste-Henri Lacordaire and last: Francois Bruneri -[2018-02-13T00:48:42.071] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T00:48:42.197] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T00:48:42.226] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Top 25 Report/October 26 to November 1, 2014 and last: Yn Cheshaght Ghailckagh -[2018-02-13T00:48:42.272] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:48:42.302] [INFO] cheese - inserting 1000 documents. first: File:La Piloto official poster.jpg and last: Waltensburg/Vuorz railway station -[2018-02-13T00:48:42.353] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T00:48:42.400] [INFO] cheese - inserting 1000 documents. first: The Wall Live (2010/2011 Tour) and last: Japanese Association of Management Accounting -[2018-02-13T00:48:42.447] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:48:42.551] [INFO] cheese - inserting 1000 documents. first: Free Methodist Bible Quiz and last: Template:Air Supply -[2018-02-13T00:48:42.557] [INFO] cheese - inserting 1000 documents. first: Jerónimo de Garro and last: Nesla -[2018-02-13T00:48:42.584] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:48:42.586] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:48:42.617] [INFO] cheese - inserting 1000 documents. first: ENG display and last: Johann von Mayr -[2018-02-13T00:48:42.647] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:48:42.825] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/systemsinthecity.co.uk and last: Vexillum turriger -[2018-02-13T00:48:42.852] [INFO] cheese - inserting 1000 documents. first: Novo Bardo and last: Aster major -[2018-02-13T00:48:42.859] [INFO] cheese - inserting 1000 documents. first: Percival Goodman and last: List of Ambassadors from the United Kingdom to the Ottoman Empire -[2018-02-13T00:48:42.865] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:48:42.883] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T00:48:42.904] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:42.937] [INFO] cheese - inserting 1000 documents. first: Category:Retailing in Peru and last: BioCurious -[2018-02-13T00:48:42.987] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:43.328] [INFO] cheese - inserting 1000 documents. first: John Mark Colquhoun and last: Hendricks Township, Minnesota -[2018-02-13T00:48:43.333] [INFO] cheese - inserting 1000 documents. first: Category:Head and neck cancer and last: Wholesale District, Los Angeles, California -[2018-02-13T00:48:43.374] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T00:48:43.377] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T00:48:43.412] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Klag-Lied and last: Al Despertar (Mercedes Sosa song) -[2018-02-13T00:48:43.456] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T00:48:43.547] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of places in Ilocos Sur and last: Menezes, William -[2018-02-13T00:48:43.591] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T00:48:43.688] [INFO] cheese - inserting 1000 documents. first: Hope Township, Minnesota and last: Category:FL-Class Indian politics articles of High-importance -[2018-02-13T00:48:43.736] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T00:48:43.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gaëlle Comparat and last: Anthony G. Petti -[2018-02-13T00:48:43.839] [INFO] cheese - inserting 1000 documents. first: Howie Montgomery and last: Hrdinný kapitán Korkorán -[2018-02-13T00:48:43.871] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T00:48:43.874] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:43.924] [INFO] cheese - inserting 1000 documents. first: Meninger, William and last: Af Urur -[2018-02-13T00:48:43.957] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:44.068] [INFO] cheese - inserting 1000 documents. first: Topical outline of calculus and last: Yanachaga–Chemillen National Park -[2018-02-13T00:48:44.113] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:44.212] [INFO] cheese - inserting 1000 documents. first: Category:1976 in karate and last: Transition modeling -[2018-02-13T00:48:44.245] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T00:48:44.321] [INFO] cheese - inserting 1000 documents. first: Ada Major and last: Izō Iburi -[2018-02-13T00:48:44.364] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T00:48:44.379] [INFO] cheese - inserting 1000 documents. first: Ġnien il-Kmand and last: Mancic -[2018-02-13T00:48:44.384] [INFO] cheese - inserting 1000 documents. first: The Church of Jesus Christ of Latter-day Saints in Oklahoma and last: The Brick City -[2018-02-13T00:48:44.414] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:48:44.417] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T00:48:44.649] [INFO] cheese - inserting 1000 documents. first: Östgötaderbyt and last: List of Tennessee Volunteers starting quarterbacks -[2018-02-13T00:48:44.695] [INFO] cheese - inserting 1000 documents. first: Aleksandar Stanojević and last: Maculotriton digitalis -[2018-02-13T00:48:44.697] [INFO] cheese - inserting 1000 documents. first: Chariesthes aureovitticollis and last: Ngeleja, William -[2018-02-13T00:48:44.699] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T00:48:44.721] [INFO] cheese - inserting 1000 documents. first: Linguistic discrimination and last: Vampyrodes -[2018-02-13T00:48:44.723] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:48:44.729] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:48:44.759] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:48:44.947] [INFO] cheese - inserting 1000 documents. first: Taira Shige and last: PGL 2001 -[2018-02-13T00:48:44.972] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T00:48:44.996] [INFO] cheese - inserting 1000 documents. first: Maculotriton serriale and last: Vaughtia squamata -[2018-02-13T00:48:45.002] [INFO] cheese - inserting 1000 documents. first: File:Mesrobianmilitary.jpg and last: Klaus Henkes -[2018-02-13T00:48:45.014] [INFO] cheese - inserting 1000 documents. first: Spechhorn and last: Elize Hele -[2018-02-13T00:48:45.022] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:48:45.046] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T00:48:45.055] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:48:45.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2017 June 9 and last: Template:Did you know nominations/Anthonio Hurdt -[2018-02-13T00:48:45.255] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:48:45.310] [INFO] cheese - inserting 1000 documents. first: Nepal at the 2014 Asian Beach Games and last: Estevao Silva -[2018-02-13T00:48:45.350] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:48:45.360] [INFO] cheese - inserting 1000 documents. first: Vaughtia transkeiensis and last: 66th Strategic Reconnaissance Group -[2018-02-13T00:48:45.398] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:45.422] [INFO] cheese - inserting 1000 documents. first: Treaty of Fontainebleau of 1762 and last: Category:C-Class Genetics articles -[2018-02-13T00:48:45.470] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T00:48:45.565] [INFO] cheese - inserting 1000 documents. first: Koinange wa Mbiyu and last: Category:February 2003 events by continent -[2018-02-13T00:48:45.616] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:45.682] [INFO] cheese - inserting 1000 documents. first: Template:Nebraska-geography-stub and last: National Highway 2 (India) -[2018-02-13T00:48:45.718] [INFO] cheese - inserting 1000 documents. first: Category:25th United States Congress and last: Category:Houses in New Haven County, Connecticut -[2018-02-13T00:48:45.737] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:48:45.757] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:48:45.773] [INFO] cheese - inserting 1000 documents. first: Killing Me Softly (Ferrante & Teicher album) and last: Joey Leung Wing-Chung -[2018-02-13T00:48:45.812] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:48:45.923] [INFO] cheese - inserting 1000 documents. first: Pamidimarru Gramam and last: Template:United Kingdom party elections, 2017 -[2018-02-13T00:48:45.961] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:48:46.093] [INFO] cheese - inserting 1000 documents. first: National Highway 2A (India) and last: Caius Norbanus Sorex -[2018-02-13T00:48:46.128] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:48:46.169] [INFO] cheese - inserting 1000 documents. first: Education in Tunisia and last: Michmoret -[2018-02-13T00:48:46.207] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T00:48:46.225] [INFO] cheese - inserting 1000 documents. first: Lyons, France and last: File:Ovenden-Emily.jpg -[2018-02-13T00:48:46.240] [INFO] cheese - inserting 1000 documents. first: Jordan Reginald Howard and last: Ron Nirenberg -[2018-02-13T00:48:46.274] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:48:46.277] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:48:46.583] [INFO] cheese - inserting 1000 documents. first: Category:Isuzu-class destroyer escorts and last: Thousand day war -[2018-02-13T00:48:46.584] [INFO] cheese - inserting 1000 documents. first: Category:Middlebury Panthers men's basketball and last: Category:Image captions for cleanup/With examples/With inadequate context -[2018-02-13T00:48:46.607] [INFO] cheese - inserting 1000 documents. first: List of Playboy Playmates of 1987 and last: Ceratodon dimorphus -[2018-02-13T00:48:46.615] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:48:46.635] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:46.671] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:48:46.719] [INFO] cheese - inserting 1000 documents. first: Akbarpur (Lok Sabha constituency) and last: Grande Lui -[2018-02-13T00:48:46.771] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T00:48:46.863] [INFO] cheese - inserting 1000 documents. first: Category:Image captions for cleanup/Without examples/With inadequate context and last: Siberian Express (disambiguation) -[2018-02-13T00:48:46.890] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:48:47.002] [INFO] cheese - inserting 1000 documents. first: The Foundling and last: Category:Viral infections of the central nervous system -[2018-02-13T00:48:47.044] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T00:48:47.060] [INFO] cheese - inserting 1000 documents. first: Koganejōshi Station and last: SCR-193 -[2018-02-13T00:48:47.082] [INFO] cheese - inserting 1000 documents. first: Yanjing County and last: Clot (disambiguation) -[2018-02-13T00:48:47.112] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T00:48:47.120] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:48:47.304] [INFO] cheese - inserting 1000 documents. first: Thiyyattunni and last: Pontus, William -[2018-02-13T00:48:47.349] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T00:48:47.452] [INFO] cheese - inserting 1000 documents. first: List of settlements in the Federation of Bosnia and Herzegovina/G and last: Kachin red-backed vole -[2018-02-13T00:48:47.473] [INFO] cheese - inserting 1000 documents. first: File:William Stainton Moses.jpg and last: Portal:Music of Canada/Did you know?/4 -[2018-02-13T00:48:47.496] [INFO] cheese - inserting 1000 documents. first: Category:1996 Czech television series debuts and last: Lakeshore, Louisiana -[2018-02-13T00:48:47.499] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T00:48:47.548] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T00:48:47.552] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T00:48:47.806] [INFO] cheese - inserting 1000 documents. first: Pulgram, William and last: Wikipedia:Articles for deletion/Miss Jozi -[2018-02-13T00:48:47.856] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:47.988] [INFO] cheese - inserting 1000 documents. first: Henry Ferdinand Mudge and last: Luella Creighton -[2018-02-13T00:48:48.016] [INFO] cheese - inserting 1000 documents. first: 24198 Xiaomengzeng and last: St. Paul-Minneapolis metropolitan area -[2018-02-13T00:48:48.048] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T00:48:48.086] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T00:48:48.294] [INFO] cheese - inserting 1000 documents. first: Wapta Glacier and last: Katherine Carl -[2018-02-13T00:48:48.376] [INFO] cheese - inserting 1000 documents. first: Category:May 1976 events in Europe and last: Rowlands, William -[2018-02-13T00:48:48.381] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T00:48:48.451] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T00:48:48.601] [INFO] cheese - inserting 1000 documents. first: Department of East Asian Studies, University of Delhi and last: Category:Characters in Azerbaijani novels of the 21st century -[2018-02-13T00:48:48.673] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T00:48:48.707] [INFO] cheese - inserting 1000 documents. first: Kawasaki Kisen Kaisha, Ltd. and last: UCMSA Universalis -[2018-02-13T00:48:48.784] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T00:48:48.837] [INFO] cheese - inserting 1000 documents. first: Ryle, William and last: Mutua (surname) -[2018-02-13T00:48:48.859] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:48:49.017] [INFO] cheese - inserting 1000 documents. first: Avra (Kozani), Greece and last: Choedrak Monastery -[2018-02-13T00:48:49.050] [INFO] cheese - inserting 1000 documents. first: Category:Indicator (genus) and last: D. 49 -[2018-02-13T00:48:49.066] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T00:48:49.094] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T00:48:49.196] [INFO] cheese - inserting 1000 documents. first: File:Innisfil logo.png and last: Category:All image captions for cleanup -[2018-02-13T00:48:49.247] [INFO] cheese - inserting 1000 documents. first: Hockerill Educational Foundation and last: 2003-04 Los Angeles Lakers season -[2018-02-13T00:48:49.247] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:49.290] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T00:48:49.484] [INFO] cheese - inserting 1000 documents. first: Motion to raise a question of privilege and last: Gusztáv Kálniczky -[2018-02-13T00:48:49.546] [INFO] cheese - inserting 1000 documents. first: Owensboro Daviess County Regional Airport and last: Josef Salvat -[2018-02-13T00:48:49.547] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T00:48:49.582] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T00:48:49.590] [INFO] cheese - inserting 1000 documents. first: Paride and last: Wikipedia:WikiProject Spam/LinkReports/goombaybash.com -[2018-02-13T00:48:49.611] [INFO] cheese - inserting 1000 documents. first: File:Prison Memoirs.jpg and last: White angelfish -[2018-02-13T00:48:49.636] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:49.656] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:49.848] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2014-11-18 and last: Root apps -[2018-02-13T00:48:49.892] [INFO] cheese - inserting 1000 documents. first: Gusztav Kalniczky and last: Erdős discrepancy problem -[2018-02-13T00:48:49.894] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:48:49.961] [INFO] cheese - inserting 1000 documents. first: Draft:Kunal Saraff and last: Wikipedia:Miscellany for deletion/User:Ap Motion Pictures/sandbox -[2018-02-13T00:48:49.963] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:48:49.971] [INFO] cheese - inserting 1000 documents. first: Aelius Lampridius Cervinus and last: 1928–29 Maltese Premier League -[2018-02-13T00:48:50.002] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:50.021] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T00:48:50.301] [INFO] cheese - inserting 1000 documents. first: Yu pengnian and last: Category:Ptychatractidae -[2018-02-13T00:48:50.320] [INFO] cheese - inserting 1000 documents. first: Draft:Honda SS125A and last: Wikipedia:Articles for deletion/Erica Farrell -[2018-02-13T00:48:50.349] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dacnonypha and last: File:PDSshield-small.jpg -[2018-02-13T00:48:50.350] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T00:48:50.357] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T00:48:50.403] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:48:50.433] [INFO] cheese - inserting 1000 documents. first: 1929–30 Maltese Premier League and last: Zalesie, Bydgoszcz County -[2018-02-13T00:48:50.502] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T00:48:50.595] [INFO] cheese - inserting 1000 documents. first: Category:Football people in Martinique and last: Yarmolenko -[2018-02-13T00:48:50.624] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:48:50.673] [INFO] cheese - inserting 1000 documents. first: Instruction (Jax Jones song) and last: Bjorn Nilsen (athlete) -[2018-02-13T00:48:50.709] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:48:50.734] [INFO] cheese - inserting 1000 documents. first: Un homme qui crie and last: File:Oldsportsdayweb.jpg -[2018-02-13T00:48:50.783] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T00:48:50.871] [INFO] cheese - inserting 1000 documents. first: Zła Wieś and last: Agrochola lota -[2018-02-13T00:48:50.909] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:48:50.952] [INFO] cheese - inserting 1000 documents. first: José Antonio Díaz García and last: Open-bill stork -[2018-02-13T00:48:50.991] [INFO] cheese - inserting 1000 documents. first: Robert David Mariani and last: Sit-in movement -[2018-02-13T00:48:50.999] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T00:48:51.027] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T00:48:51.148] [INFO] cheese - inserting 1000 documents. first: Bulgarian Hound and last: Amalda angustata -[2018-02-13T00:48:51.191] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T00:48:51.250] [INFO] cheese - inserting 1000 documents. first: UEFA Euro 1996 Group C and last: File:Nick Gallegos.jpg -[2018-02-13T00:48:51.292] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T00:48:51.396] [INFO] cheese - inserting 1000 documents. first: Roydon Island Conservation Area and last: Secretary General of FIBA -[2018-02-13T00:48:51.437] [INFO] cheese - inserting 1000 documents. first: Chancelade man and last: File:The spiral model.jpg -[2018-02-13T00:48:51.437] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T00:48:51.481] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T00:48:51.558] [INFO] cheese - inserting 1000 documents. first: Amalda aureocallosa and last: M. A. Muthiah Chettiar -[2018-02-13T00:48:51.581] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Hiwhispees and last: Tempest (disambiguation) -[2018-02-13T00:48:51.612] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T00:48:51.613] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:48:51.686] [INFO] cheese - inserting 1000 documents. first: Teste de Turke and last: Steeves, William -[2018-02-13T00:48:51.716] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:48:51.852] [INFO] cheese - inserting 1000 documents. first: Pamela Abbott and last: Jake Perry -[2018-02-13T00:48:51.899] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:48:51.947] [INFO] cheese - inserting 1000 documents. first: Harvey Girls and last: Reem Al Numery -[2018-02-13T00:48:51.970] [INFO] cheese - inserting 1000 documents. first: Steffe, William and last: Help:IPA for Azeri -[2018-02-13T00:48:51.979] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T00:48:51.998] [INFO] cheese - inserting 1000 documents. first: Performed and last: Bob Murphy (broadcaster) -[2018-02-13T00:48:51.999] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:48:52.051] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T00:48:52.205] [INFO] cheese - inserting 1000 documents. first: Gąsawa Massacre and last: Chionanthus elaeocarpus -[2018-02-13T00:48:52.245] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T00:48:52.306] [INFO] cheese - inserting 1000 documents. first: Ornamental initial and last: Wikipedia:Peer review/Laterite/archive1 -[2018-02-13T00:48:52.329] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Gresham, Oregon and last: Trueheart, William -[2018-02-13T00:48:52.338] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T00:48:52.353] [INFO] cheese - inserting 1000 documents. first: Utah State Route 319 and last: Wikipedia:Articles for deletion/Yorusora ni YOUKISS! -[2018-02-13T00:48:52.365] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:48:52.392] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T00:48:52.624] [INFO] cheese - inserting 1000 documents. first: Chionanthus insignis and last: Ratnagiri-Sindhudurg (Lok Sabha constituency) -[2018-02-13T00:48:52.646] [INFO] cheese - inserting 1000 documents. first: Truelove, William and last: Corinne Olympios -[2018-02-13T00:48:52.678] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T00:48:52.684] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T00:48:52.689] [INFO] cheese - inserting 1000 documents. first: List of Ministers of the Universal Life Church and last: Moviliţa, Constanţa -[2018-02-13T00:48:52.741] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:48:52.781] [INFO] cheese - inserting 1000 documents. first: Daddy Longlegs (2009 film) and last: Earth juice -[2018-02-13T00:48:52.843] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T00:48:52.923] [INFO] cheese - inserting 1000 documents. first: Category:1877 disestablishments in Missouri and last: Template:2017–18 Welsh Premier League table -[2018-02-13T00:48:52.954] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:48:53.022] [INFO] cheese - inserting 1000 documents. first: File:Robert Nelson - Broken Bulb Studios.jpg and last: File:QormiFC.png -[2018-02-13T00:48:53.053] [INFO] cheese - inserting 1000 documents. first: Category:Kazakhstan sports templates and last: Template:Fb team Slaven Belupo -[2018-02-13T00:48:53.069] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:48:53.092] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:48:53.181] [INFO] cheese - inserting 1000 documents. first: Template:USAF Weapons and last: A.S. Lucchese Libertas -[2018-02-13T00:48:53.221] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T00:48:53.302] [INFO] cheese - inserting 1000 documents. first: Draft:Vicente Barros and last: Category:Companies based in Chelyabinsk Oblast -[2018-02-13T00:48:53.340] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T00:48:53.442] [INFO] cheese - inserting 1000 documents. first: List of stations on the Bakerloo line and last: Majed Baryan -[2018-02-13T00:48:53.453] [INFO] cheese - inserting 1000 documents. first: Brendan Healy (comic) and last: Maura Dynasty -[2018-02-13T00:48:53.473] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:48:53.486] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T00:48:53.515] [INFO] cheese - inserting 1000 documents. first: Devudu Chesina Manushulu and last: Deathcore music -[2018-02-13T00:48:53.549] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:48:53.667] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Omsk Oblast and last: Category:Pride parades in India -[2018-02-13T00:48:53.701] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:48:53.853] [INFO] cheese - inserting 1000 documents. first: TVA Shawnee and last: Template:Did you know nominations/Phyllis Richman -[2018-02-13T00:48:53.878] [INFO] cheese - inserting 1000 documents. first: John Parrish (baseball player) and last: Category:Clayton locomotives -[2018-02-13T00:48:53.886] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:48:53.905] [INFO] cheese - inserting 1000 documents. first: The Second Coming of Jesus Christ and last: Category:Bodies of water of Sanilac County, Michigan -[2018-02-13T00:48:53.920] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T00:48:53.936] [INFO] cheese - batch complete in: 0.235 secs -[2018-02-13T00:48:54.023] [INFO] cheese - inserting 1000 documents. first: Commemorative coins of Poland: 2010 and last: Portal:Speculative fiction/Anniversaries/June/June 15 -[2018-02-13T00:48:54.089] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T00:48:54.138] [INFO] cheese - inserting 1000 documents. first: Aspy Bay and last: Draft:Georges Balagny -[2018-02-13T00:48:54.187] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:48:54.237] [INFO] cheese - inserting 1000 documents. first: Eesti Orienteerumisliit and last: Template:Los Angeles Lakers 1979-80 NBA champions -[2018-02-13T00:48:54.275] [INFO] cheese - inserting 1000 documents. first: Mooyah and last: File:KQBL 101.9TheBull logo.png -[2018-02-13T00:48:54.285] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T00:48:54.341] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T00:48:54.536] [INFO] cheese - inserting 1000 documents. first: Slender-billed cuckoo-shrike and last: Tyssilio -[2018-02-13T00:48:54.547] [INFO] cheese - inserting 1000 documents. first: Honda Touru and last: 2006 UCI Track Cycling World Championships – Men's 1 km Time Trial -[2018-02-13T00:48:54.588] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:48:54.599] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T00:48:54.703] [INFO] cheese - inserting 1000 documents. first: Template:Los Angeles Lakers 1981-82 NBA champions and last: Chiba Institute of Technology -[2018-02-13T00:48:54.733] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pomarj and last: Category:Earls of Dorset -[2018-02-13T00:48:54.746] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T00:48:54.772] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:48:54.876] [INFO] cheese - inserting 1000 documents. first: Noorda molybdis and last: ASC-2 -[2018-02-13T00:48:54.903] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:48:54.943] [INFO] cheese - inserting 1000 documents. first: 2007 UCI Track Cycling World Championships – Men's 1 km Time Trial and last: Portal:Ontario/Selected biography -[2018-02-13T00:48:54.987] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T00:48:55.049] [INFO] cheese - inserting 1000 documents. first: Template:NCAA conference full membership table and last: Draft:Asif Ghauri -[2018-02-13T00:48:55.078] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:48:55.109] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anthony Nigro and last: Wikipedia:Bots/Requests for approval/naudefjbot -[2018-02-13T00:48:55.155] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T00:48:55.164] [INFO] cheese - inserting 1000 documents. first: 5 (Peanuts) and last: Category:Nicaragua Copa Centroamericana squad navigational boxes -[2018-02-13T00:48:55.215] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:48:55.339] [INFO] cheese - inserting 1000 documents. first: Grade II listed buildings in Liverpool-L17 and last: Catoctin, Arizona -[2018-02-13T00:48:55.348] [INFO] cheese - inserting 1000 documents. first: Muhtarophis and last: I325 -[2018-02-13T00:48:55.377] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:48:55.384] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:48:55.437] [INFO] cheese - inserting 1000 documents. first: Template:Simply Red and last: Propagation parameters -[2018-02-13T00:48:55.467] [INFO] cheese - inserting 1000 documents. first: Category:1883 establishments in Manitoba and last: Category:Electronic albums by Portuguese artists -[2018-02-13T00:48:55.469] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:48:55.505] [INFO] cheese - batch complete in: 0.29 secs -[2018-02-13T00:48:55.643] [INFO] cheese - inserting 1000 documents. first: Portal:Nova Scotia/Selected article/2 and last: Gibbula adriatica -[2018-02-13T00:48:55.662] [INFO] cheese - inserting 1000 documents. first: 2017 Finsbury Park Mosque attack and last: Category:Companies based in the London Borough of Hammersmith and Fulham -[2018-02-13T00:48:55.681] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:48:55.695] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T00:48:55.735] [INFO] cheese - inserting 1000 documents. first: File:Way of the Samurai Coverart.png and last: Journey of Souls -[2018-02-13T00:48:55.784] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:48:55.832] [INFO] cheese - inserting 1000 documents. first: File:Kannada film Ramachaari poster.jpg and last: Mousehole, Cornwall -[2018-02-13T00:48:55.875] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:48:55.959] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code United States Pennsylvania and last: Lewes Presbyterian Church -[2018-02-13T00:48:56.002] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T00:48:56.042] [INFO] cheese - inserting 1000 documents. first: Op 47 and last: Herr Jesu Christ, du höchstes Gut -[2018-02-13T00:48:56.085] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T00:48:56.201] [INFO] cheese - inserting 1000 documents. first: Andukondan and last: Template:ISO 3166 code Cambodia Kampot -[2018-02-13T00:48:56.219] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:48:56.231] [INFO] cheese - inserting 1000 documents. first: Category:Ice hockey competitions in Asia by country and last: Category:1920 establishments in Saskatchewan -[2018-02-13T00:48:56.243] [INFO] cheese - inserting 1000 documents. first: Earnings Quality and last: Achleitner -[2018-02-13T00:48:56.266] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T00:48:56.304] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T00:48:56.363] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Cambodia Kâmpôt and last: Template:ISO 3166 code Honduras Copán -[2018-02-13T00:48:56.386] [INFO] cheese - batch complete in: 0.167 secs -[2018-02-13T00:48:56.496] [INFO] cheese - inserting 1000 documents. first: Renad Zhdanov and last: File:Rob Buckley Jr of Towanda Pa and Ang his wife of 20 yrs.jpg -[2018-02-13T00:48:56.523] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Honduras Cortés and last: Template:ISO 3166 code Liechtenstein Eschen -[2018-02-13T00:48:56.526] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T00:48:56.544] [INFO] cheese - batch complete in: 0.158 secs -[2018-02-13T00:48:56.568] [INFO] cheese - inserting 1000 documents. first: File:Life Begins with Love.jpg and last: Category:1990s Romanian television series debuts -[2018-02-13T00:48:56.606] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:56.627] [INFO] cheese - inserting 1000 documents. first: The Diplomat (novel) and last: Bacolod City-class logistics support vessel -[2018-02-13T00:48:56.673] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T00:48:56.674] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Liechtenstein Gamprin and last: Template:ISO 3166 code Poland Podlaskie -[2018-02-13T00:48:56.694] [INFO] cheese - batch complete in: 0.15 secs -[2018-02-13T00:48:56.843] [INFO] cheese - inserting 1000 documents. first: Template:Chile Vamos/meta/shortname and last: Nspr -[2018-02-13T00:48:56.848] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Poland Pomorskie and last: Template:ISO 3166 code Sudan Garb-al-Istiwaiyyah -[2018-02-13T00:48:56.861] [INFO] cheese - batch complete in: 0.167 secs -[2018-02-13T00:48:56.868] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T00:48:56.948] [INFO] cheese - inserting 1000 documents. first: Category:1996 Romanian television series debuts and last: SR 211 (OH) -[2018-02-13T00:48:56.970] [INFO] cheese - inserting 1000 documents. first: Portal:Chicago/Selected list/7 and last: Złotniczki -[2018-02-13T00:48:56.982] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T00:48:56.994] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Sudan Gharb al Istiwaiyya and last: Template:Armenian Culture -[2018-02-13T00:48:57.009] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T00:48:57.012] [INFO] cheese - batch complete in: 0.151 secs -[2018-02-13T00:48:57.167] [INFO] cheese - inserting 1000 documents. first: File:Clay Greenfield Motorsports.png and last: Wikipedia:Articles for deletion/Lee Dae-hwi -[2018-02-13T00:48:57.213] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T00:48:57.304] [INFO] cheese - inserting 1000 documents. first: Złotniczki, Kuyavian-Pomeranian Voivodeship and last: Portal:Scotland/Selected quote/Week 39, 2008 -[2018-02-13T00:48:57.305] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Uganda Oyam and last: Pakistanis in Bangladesh -[2018-02-13T00:48:57.342] [INFO] cheese - inserting 1000 documents. first: SR 212 (OH) and last: French playing cards -[2018-02-13T00:48:57.344] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T00:48:57.349] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T00:48:57.388] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:48:57.458] [INFO] cheese - inserting 1000 documents. first: Category:Wall anchors and last: Scabricola fissurata -[2018-02-13T00:48:57.491] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:48:57.753] [INFO] cheese - inserting 1000 documents. first: File:REC 4 soundtrack.jpg and last: Wedelia rubra -[2018-02-13T00:48:57.811] [INFO] cheese - inserting 1000 documents. first: Fernand Jourdant and last: File:65 redroses.jpg -[2018-02-13T00:48:57.833] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T00:48:57.849] [INFO] cheese - inserting 1000 documents. first: Kevin Oghenetega Tamaraebi Bakumo-Abraham and last: Wen Chang Temple -[2018-02-13T00:48:57.853] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:48:57.920] [INFO] cheese - inserting 1000 documents. first: Portal:Scotland/Selected quote/Week 40, 2008 and last: Category:C-Class Holy Roman Empire articles -[2018-02-13T00:48:57.921] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T00:48:58.049] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T00:48:58.107] [INFO] cheese - inserting 476 documents. first: Racial bias and last: David Green (NASCAR) -[2018-02-13T00:48:58.180] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:48:58.180] [INFO] cheese - worker pid:56524 is done. inserted 2743477 pages in 0 secs. -[2018-02-13T00:48:58.286] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chevy Chase Elementary School and last: Chirinda Forest Botanical Reserve -[2018-02-13T00:48:58.326] [INFO] cheese - inserting 1000 documents. first: Surčin railway station and last: Sidi-Amara -[2018-02-13T00:48:58.343] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T00:48:58.378] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T00:48:58.493] [INFO] cheese - inserting 1000 documents. first: Foksal Foundation and last: File:KBSE33.jpg -[2018-02-13T00:48:58.532] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T00:48:58.617] [INFO] cheese - inserting 1000 documents. first: Guillaume Kasbarian and last: Draft:Tap & Go -[2018-02-13T00:48:58.619] [INFO] cheese - inserting 1000 documents. first: Khushal Khan Khattak University Karak and last: Category:Nichols and May albums -[2018-02-13T00:48:58.645] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:48:58.647] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:48:58.879] [INFO] cheese - inserting 1000 documents. first: Duets 2001 and last: Pseudonoorda brunneifusalis -[2018-02-13T00:48:58.906] [INFO] cheese - inserting 1000 documents. first: File:Clary 2008.JPG and last: High Rock Canyon Hills -[2018-02-13T00:48:58.907] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:48:58.934] [INFO] cheese - inserting 1000 documents. first: File:Young Eisner Scholars (logo).jpg and last: Category:1958 documents -[2018-02-13T00:48:58.948] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:48:58.973] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:48:59.125] [INFO] cheese - inserting 1000 documents. first: Pseudonoorda distigmalis and last: Category:1962 Hungarian television series debuts -[2018-02-13T00:48:59.154] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:48:59.171] [INFO] cheese - inserting 1000 documents. first: Poteau School Gymnasium-Auditorium and last: Draft:JavaParser -[2018-02-13T00:48:59.196] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:48:59.239] [INFO] cheese - inserting 1000 documents. first: BD-60 and last: Belce -[2018-02-13T00:48:59.278] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:48:59.373] [INFO] cheese - inserting 1000 documents. first: Nathaniel Davies and last: Category:Young Fathers albums -[2018-02-13T00:48:59.401] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:48:59.428] [INFO] cheese - inserting 1000 documents. first: Vikentije I, Archbishop of Peć and last: Third Asquith ministry -[2018-02-13T00:48:59.453] [INFO] cheese - batch complete in: 0.257 secs -[2018-02-13T00:48:59.517] [INFO] cheese - inserting 1000 documents. first: NG-EK and last: Wikipedia:Articles for deletion/Racebannon -[2018-02-13T00:48:59.551] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:48:59.671] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Laxmi Narayan Chaudhary and last: Category:1953 in literature -[2018-02-13T00:48:59.709] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:48:59.746] [INFO] cheese - inserting 1000 documents. first: Christine Barber and last: Malaysia-China Friendship Year -[2018-02-13T00:48:59.797] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T00:48:59.829] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The union of Iranian library and information science student associations (ADKA) and last: Category:C-Class Dravidian people articles -[2018-02-13T00:48:59.870] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:48:59.984] [INFO] cheese - inserting 1000 documents. first: Category:1954 in literature and last: Like the Roman: The Life of Enoch Powell -[2018-02-13T00:49:00.012] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:49:00.045] [INFO] cheese - inserting 1000 documents. first: 2 factor authentication and last: Renata von Tscharner -[2018-02-13T00:49:00.073] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:00.158] [INFO] cheese - inserting 1000 documents. first: Paul Kirk Manhunter and last: Challa Kota -[2018-02-13T00:49:00.198] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T00:49:00.247] [INFO] cheese - inserting 1000 documents. first: Tyias and last: Template:Ckb -[2018-02-13T00:49:00.267] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:00.370] [INFO] cheese - inserting 1000 documents. first: William Christensen and last: MD 107 -[2018-02-13T00:49:00.402] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T00:49:00.456] [INFO] cheese - inserting 1000 documents. first: File:Kshan Amrutache cover.jpg.jpg and last: Constituency PP-125 (Sialkot-VI) -[2018-02-13T00:49:00.485] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:49:00.490] [INFO] cheese - inserting 1000 documents. first: Template:Clw and last: Category:People from Collinsville, Mississippi -[2018-02-13T00:49:00.522] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:00.630] [INFO] cheese - inserting 1000 documents. first: Route 107 (Maryland) and last: Category:Bilateral relations of San Marino -[2018-02-13T00:49:00.662] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:49:00.705] [INFO] cheese - inserting 1000 documents. first: Constituency PP-158 (Lahore-XXII) and last: Lund (Kristiansand) -[2018-02-13T00:49:00.726] [INFO] cheese - inserting 1000 documents. first: Riyanka chanda and last: One Legged Inverted Staff Pose - Eka Pada Viparita Dandasana -[2018-02-13T00:49:00.733] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:49:00.751] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:49:00.916] [INFO] cheese - inserting 1000 documents. first: Category:Bilateral relations of Ukraine and last: File:Kimi Tsunagi Five M Cover.jpg -[2018-02-13T00:49:00.950] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:49:00.960] [INFO] cheese - inserting 1000 documents. first: Yaël Braun-Pivet and last: Eakin, Michael -[2018-02-13T00:49:00.995] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:01.090] [INFO] cheese - inserting 1000 documents. first: James Harold Thompson and last: Category:Film schools in New Mexico -[2018-02-13T00:49:01.131] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T00:49:01.160] [INFO] cheese - inserting 1000 documents. first: Thomas J. Fogarty and last: Dré Moore -[2018-02-13T00:49:01.191] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T00:49:01.217] [INFO] cheese - inserting 1000 documents. first: Ealy, Michael and last: Category:Bodies of water of Alabama by county -[2018-02-13T00:49:01.243] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:49:01.509] [INFO] cheese - inserting 1000 documents. first: Category:1980s Thai television series debuts and last: Category:1986 NCAA Division III football season -[2018-02-13T00:49:01.513] [INFO] cheese - inserting 1000 documents. first: I'm Willing (Marker Starling album) and last: Category:Railway stations in North Western Province -[2018-02-13T00:49:01.548] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T00:49:01.551] [INFO] cheese - inserting 1000 documents. first: William Snell and last: Room For Love -[2018-02-13T00:49:01.561] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T00:49:01.605] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T00:49:01.828] [INFO] cheese - inserting 1000 documents. first: Vaccine denial and last: Justice Durham (disambiguation) -[2018-02-13T00:49:01.853] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T00:49:01.935] [INFO] cheese - inserting 1000 documents. first: Category:1987 NCAA Division III football season and last: Sandra Webster -[2018-02-13T00:49:01.967] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T00:49:01.990] [INFO] cheese - inserting 1000 documents. first: Getap, Aragatsotn and last: Kyushu Ohtani Junior College -[2018-02-13T00:49:02.042] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T00:49:02.051] [INFO] cheese - inserting 1000 documents. first: Mission scanner and last: Vancouver Group of Medical Editors -[2018-02-13T00:49:02.074] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T00:49:02.206] [INFO] cheese - inserting 1000 documents. first: Westmoreland County Coal Strike of 1910–11 and last: Category:Centuries in Phnom Penh -[2018-02-13T00:49:02.233] [INFO] cheese - batch complete in: 0.266 secs -[2018-02-13T00:49:02.294] [INFO] cheese - inserting 1000 documents. first: Wellington Hospital (United Kingdom) and last: Category:Copa América stadiums -[2018-02-13T00:49:02.321] [INFO] cheese - batch complete in: 0.278 secs -[2018-02-13T00:49:02.378] [INFO] cheese - inserting 1000 documents. first: Gudinski, Michael and last: I Just Feel So "Sweet" -[2018-02-13T00:49:02.409] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T00:49:02.468] [INFO] cheese - inserting 1000 documents. first: Category:History of Phnom Penh and last: Hersham Boys -[2018-02-13T00:49:02.495] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:02.572] [INFO] cheese - inserting 1000 documents. first: WHCR-LP and last: Johnny Walsh (hurler) -[2018-02-13T00:49:02.601] [INFO] cheese - inserting 1000 documents. first: Elorde and last: Category:Church of England archdeacons -[2018-02-13T00:49:02.605] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T00:49:02.628] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:49:02.693] [INFO] cheese - inserting 1000 documents. first: André Brunot and last: Blepharomastix mononalis -[2018-02-13T00:49:02.710] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T00:49:02.847] [INFO] cheese - inserting 1000 documents. first: File:Fos Psila Cover.jpg and last: Category:Anglican archdeacons in Canada -[2018-02-13T00:49:02.870] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:49:02.926] [INFO] cheese - inserting 1000 documents. first: Template:1949 BAA Draft and last: Roundtop Antiques Fair -[2018-02-13T00:49:02.965] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T00:49:02.999] [INFO] cheese - inserting 1000 documents. first: Blepharomastix hyperochalis and last: 2014–15 FK Dukla Prague season -[2018-02-13T00:49:03.041] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:49:03.069] [INFO] cheese - inserting 1000 documents. first: Hymenochilus confertus and last: Egilof von Hohenheim -[2018-02-13T00:49:03.101] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:49:03.230] [INFO] cheese - inserting 1000 documents. first: Martin Sherson and last: Ford Motor Company Assembly Plant (Atlanta) -[2018-02-13T00:49:03.261] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T00:49:03.295] [INFO] cheese - inserting 1000 documents. first: Karmika Kallanalla and last: Category:2009 CAF Confederation Cup -[2018-02-13T00:49:03.335] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T00:49:03.381] [INFO] cheese - inserting 1000 documents. first: Jay Z and last: Peter S. Kalikow -[2018-02-13T00:49:03.427] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T00:49:03.609] [INFO] cheese - inserting 1000 documents. first: Mantang narrow mouthed frog and last: Wikipedia:Possibly unfree files/2014 November 30 -[2018-02-13T00:49:03.653] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:49:03.695] [INFO] cheese - inserting 1000 documents. first: Python (painter) and last: Category:Currency introduced in 1948 -[2018-02-13T00:49:03.719] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T00:49:03.764] [INFO] cheese - inserting 1000 documents. first: 1923 Grand Prix season and last: Category:1927 in Lebanon -[2018-02-13T00:49:03.805] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T00:49:03.882] [INFO] cheese - inserting 1000 documents. first: K47KU-D and last: Dennis L. Algiere -[2018-02-13T00:49:03.912] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:03.972] [INFO] cheese - inserting 1000 documents. first: Quartilla and last: McCormack, Michael -[2018-02-13T00:49:04.029] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:04.144] [INFO] cheese - inserting 1000 documents. first: Kolkata-Gorakhpur Poorvanchal Express and last: K22IT -[2018-02-13T00:49:04.175] [INFO] cheese - inserting 1000 documents. first: Antonio Caponigro and last: Ananda Marg -[2018-02-13T00:49:04.174] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:04.219] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T00:49:04.301] [INFO] cheese - inserting 1000 documents. first: McCoy, Michael and last: File:WRJD Poder1410am logo.jpg -[2018-02-13T00:49:04.341] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:49:04.404] [INFO] cheese - inserting 1000 documents. first: K23BP and last: Hunedoara-Timisana -[2018-02-13T00:49:04.433] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:04.562] [INFO] cheese - inserting 1000 documents. first: Hitler's Pawn and last: List of Dallas Stars draft picks -[2018-02-13T00:49:04.563] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Djparagbiswas and last: Niavarani, Michael -[2018-02-13T00:49:04.606] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:49:04.606] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T00:49:04.821] [INFO] cheese - inserting 1000 documents. first: Chestnuts long barrow and last: List of radio stations in Nelson -[2018-02-13T00:49:04.865] [INFO] cheese - inserting 1000 documents. first: Nicholas, Michael and last: Argentinian army -[2018-02-13T00:49:04.865] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:49:04.905] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:49:05.022] [INFO] cheese - inserting 1000 documents. first: Cedarmere-Clayton Estates and last: File:Sparklers on the Fourth of July in Lewiston Maine.JPG -[2018-02-13T00:49:05.078] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T00:49:05.243] [INFO] cheese - inserting 1000 documents. first: Fort-221 and last: Stenocorus irroratus -[2018-02-13T00:49:05.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2017 June 30 and last: Military Vicariate of Paraguay -[2018-02-13T00:49:05.296] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T00:49:05.323] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T00:49:05.544] [INFO] cheese - inserting 1000 documents. first: Super-numerary teeth and last: Aguda -[2018-02-13T00:49:05.607] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T00:49:05.723] [INFO] cheese - inserting 1000 documents. first: Stenocorus spinicornis and last: Lennox Alves -[2018-02-13T00:49:05.769] [INFO] cheese - inserting 1000 documents. first: IMO 8635162 and last: Mohammad Usman (politician) -[2018-02-13T00:49:05.811] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T00:49:05.831] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T00:49:06.088] [INFO] cheese - inserting 1000 documents. first: Hindustantimes and last: Scânteia, Ialomița -[2018-02-13T00:49:06.100] [INFO] cheese - inserting 1000 documents. first: Category:2011 in Prince Edward Island and last: Bocchoris trivitralis -[2018-02-13T00:49:06.125] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T00:49:06.128] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T00:49:06.153] [INFO] cheese - inserting 1000 documents. first: Mir Humayun Aziz Kurd and last: Nadia Kassem -[2018-02-13T00:49:06.186] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:49:06.412] [INFO] cheese - inserting 1000 documents. first: Don Wilson (Canadian football) and last: Category:1991 Icelandic television series debuts -[2018-02-13T00:49:06.446] [INFO] cheese - inserting 1000 documents. first: NGC 7035A and last: Fay Foster -[2018-02-13T00:49:06.450] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:49:06.478] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:49:06.487] [INFO] cheese - inserting 1000 documents. first: Săveni, Ialomița and last: American games -[2018-02-13T00:49:06.526] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T00:49:06.730] [INFO] cheese - inserting 1000 documents. first: Category:1992 Icelandic television series debuts and last: Wolf in White Van -[2018-02-13T00:49:06.757] [INFO] cheese - inserting 1000 documents. first: Category:Archaeological protected monuments in Kegalle District and last: Colour-Staff method -[2018-02-13T00:49:06.757] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:49:06.802] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:49:06.862] [INFO] cheese - inserting 1000 documents. first: Residenz, Munich and last: Category:People executed by the Weimar Republic -[2018-02-13T00:49:06.900] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T00:49:06.970] [INFO] cheese - inserting 1000 documents. first: Part lace and last: Category:Cities in Kansas City metropolitan area -[2018-02-13T00:49:06.990] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:49:07.072] [INFO] cheese - inserting 1000 documents. first: Colour-Staff and last: Luna Nørgaard Gewitz -[2018-02-13T00:49:07.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Strings (Unix) and last: Stellarium -[2018-02-13T00:49:07.121] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:49:07.136] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:49:07.227] [INFO] cheese - inserting 1000 documents. first: Bobby Whitehead and last: List of churches in Frederikssund Municipality -[2018-02-13T00:49:07.266] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T00:49:07.399] [INFO] cheese - inserting 1000 documents. first: IEEE Transactions on NanoBioscience and last: Butterfly (Deen album) -[2018-02-13T00:49:07.424] [INFO] cheese - batch complete in: 0.303 secs -[2018-02-13T00:49:07.445] [INFO] cheese - inserting 1000 documents. first: The Real Ronaldo and last: USS Florence -[2018-02-13T00:49:07.459] [INFO] cheese - inserting 1000 documents. first: Bogle-Chandler case and last: Category:Albums produced by John Hill (record producer) -[2018-02-13T00:49:07.465] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:49:07.484] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:49:07.647] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Glory of Heracles and last: File:Washington Redskins logo.svg -[2018-02-13T00:49:07.664] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:07.675] [INFO] cheese - inserting 1000 documents. first: 1970 World Championship of Drivers and last: George Klein (disc jockey) -[2018-02-13T00:49:07.682] [INFO] cheese - inserting 1000 documents. first: Category:Track cycling at the 1900 Summer Olympics and last: Gettler Boys -[2018-02-13T00:49:07.705] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T00:49:07.707] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:49:07.881] [INFO] cheese - inserting 1000 documents. first: Karghilik and last: Eduardo e cristina -[2018-02-13T00:49:07.900] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Mexican cinema articles and last: Caitlin Reilly and Jamieson Wilson v Secretary of State for Work and Pensions -[2018-02-13T00:49:07.909] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:49:07.927] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T00:49:07.931] [INFO] cheese - inserting 1000 documents. first: San Carlos Handicap and last: Record, Michael -[2018-02-13T00:49:07.965] [INFO] cheese - batch complete in: 0.258 secs -[2018-02-13T00:49:08.144] [INFO] cheese - inserting 1000 documents. first: Template:TFA title/December 10, 2014 and last: Template:Did you know nominations/Ovi (poetry) -[2018-02-13T00:49:08.185] [INFO] cheese - inserting 1000 documents. first: Music of the SaGa series and last: Przepałkowo -[2018-02-13T00:49:08.188] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:49:08.203] [INFO] cheese - inserting 1000 documents. first: Rector, Michael and last: Philippe Etienne (athlete) -[2018-02-13T00:49:08.221] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:49:08.233] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:49:08.488] [INFO] cheese - inserting 1000 documents. first: Rimau-rimau and last: Arao Station (Kumamoto) -[2018-02-13T00:49:08.495] [INFO] cheese - inserting 1000 documents. first: List of Statutes of New Zealand (1840–90) and last: Labor election -[2018-02-13T00:49:08.502] [INFO] cheese - inserting 1000 documents. first: Psilocybe pseudozapotecorum and last: Category:Albania transport templates -[2018-02-13T00:49:08.529] [INFO] cheese - batch complete in: 0.307 secs -[2018-02-13T00:49:08.556] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T00:49:08.568] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:49:08.798] [INFO] cheese - inserting 644 documents. first: Minami-Arao Station and last: HD 206067 -[2018-02-13T00:49:08.828] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:49:08.828] [INFO] cheese - worker pid:56523 is done. inserted 2756645 pages in 0 secs. -[2018-02-13T00:49:08.859] [INFO] cheese - inserting 1000 documents. first: Labor leadership election and last: Template:2017–18 Armenian Premier League table -[2018-02-13T00:49:08.862] [INFO] cheese - inserting 1000 documents. first: Made in Texas and last: Template:Big Ten Conference Women's Basketball Tournament navbox -[2018-02-13T00:49:08.887] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:49:08.893] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T00:49:09.045] [INFO] cheese - inserting 1000 documents. first: Category:Judicial Committee of the Privy Council cases on appeal from Brunei and last: N-65 National Highway -[2018-02-13T00:49:09.059] [INFO] cheese - batch complete in: 0.166 secs -[2018-02-13T00:49:09.092] [INFO] cheese - inserting 1000 documents. first: Category:Ceramics manufacturers of Portugal and last: High Life (film) -[2018-02-13T00:49:09.110] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:09.246] [INFO] cheese - inserting 1000 documents. first: Category:Banks disestablished in 2012 and last: Category:Film schools in Bulgaria -[2018-02-13T00:49:09.261] [INFO] cheese - inserting 1000 documents. first: Aṣṭachāp and last: Category:FIA Formula 2 Championship teams -[2018-02-13T00:49:09.268] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:09.278] [INFO] cheese - batch complete in: 0.168 secs -[2018-02-13T00:49:09.440] [INFO] cheese - inserting 1000 documents. first: Corynothrix and last: European Youth Orienteering Championships -[2018-02-13T00:49:09.456] [INFO] cheese - batch complete in: 0.178 secs -[2018-02-13T00:49:09.469] [INFO] cheese - inserting 1000 documents. first: Smart (Hey! Say! JUMP album) and last: Lúcio Flávio, o Passageiro da Agonia -[2018-02-13T00:49:09.493] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:49:09.597] [INFO] cheese - inserting 1000 documents. first: Minecraft: Console Edition and last: English Electric KDP10 -[2018-02-13T00:49:09.615] [INFO] cheese - batch complete in: 0.159 secs -[2018-02-13T00:49:09.660] [INFO] cheese - inserting 1000 documents. first: Template:User USAF SAC and last: Signé Arsène Lupin -[2018-02-13T00:49:09.678] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:49:09.774] [INFO] cheese - inserting 1000 documents. first: Category:1890s establishments in Georgia (country) and last: Holywell Park Conference Centre -[2018-02-13T00:49:09.790] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:49:09.841] [INFO] cheese - inserting 1000 documents. first: George Jones (musician) and last: Category:National Register of Historic Places in Putnam County, Ohio -[2018-02-13T00:49:09.867] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:49:09.984] [INFO] cheese - inserting 1000 documents. first: Jean-Yves Mallat and last: Wikipedia:Database reports/Top new page reviewers -[2018-02-13T00:49:10.008] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:49:10.115] [INFO] cheese - inserting 1000 documents. first: Daira Dinpanah railway station and last: Sara Keane -[2018-02-13T00:49:10.148] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T00:49:10.224] [INFO] cheese - inserting 1000 documents. first: File:Yearbook photo of Elaine Anthony.jpg and last: Immersive Commerce (i-Commerce) -[2018-02-13T00:49:10.252] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:10.423] [INFO] cheese - inserting 1000 documents. first: Frédéric Bitsamou and last: Roberts Elementary -[2018-02-13T00:49:10.439] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:49:10.464] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of AdamTayl and last: Spanish forts of Texas -[2018-02-13T00:49:10.499] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:49:10.595] [INFO] cheese - inserting 1000 documents. first: O.M. Roberts Elementary and last: File:Kamen Rider 555, Paradise Lost, Blu-ray Cover.jpg -[2018-02-13T00:49:10.610] [INFO] cheese - batch complete in: 0.17 secs -[2018-02-13T00:49:10.727] [INFO] cheese - inserting 1000 documents. first: Cross-serial dependency and last: Category:2004 establishments in Laos -[2018-02-13T00:49:10.764] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:49:10.806] [INFO] cheese - inserting 1000 documents. first: Jailto Bonfim and last: Canton of Saint-Céré -[2018-02-13T00:49:10.833] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:11.017] [INFO] cheese - inserting 1000 documents. first: Category:1964 telenovelas and last: Daniel Graham (apothecary) -[2018-02-13T00:49:11.028] [INFO] cheese - inserting 1000 documents. first: Saint Ninian's Chapel and last: Military Division of the Potomac -[2018-02-13T00:49:11.043] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:11.061] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:11.226] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Plucheeae and last: Elvira Cabbarova -[2018-02-13T00:49:11.240] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:11.249] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Articles for creation/Help desk/Archives/2014 December 2 and last: Category:SD Leioa footballers -[2018-02-13T00:49:11.268] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T00:49:11.398] [INFO] cheese - inserting 1000 documents. first: Wandmacher, Michael and last: Countess of Harcourt (1812 ship) -[2018-02-13T00:49:11.420] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:11.430] [INFO] cheese - inserting 1000 documents. first: John Peace Jr. House and last: Texas State Highway 76 (pre-1939) -[2018-02-13T00:49:11.457] [INFO] cheese - batch complete in: 0.189 secs -[2018-02-13T00:49:11.618] [INFO] cheese - inserting 1000 documents. first: Grassland Research Institute and last: File:Betty1.jpg -[2018-02-13T00:49:11.640] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:49:11.686] [INFO] cheese - inserting 1000 documents. first: Texas State Highway 77 (pre-1939) and last: Cruz Family -[2018-02-13T00:49:11.710] [INFO] cheese - batch complete in: 0.253 secs -[2018-02-13T00:49:11.814] [INFO] cheese - inserting 1000 documents. first: Florrum and last: Dharmapuri, Telangana -[2018-02-13T00:49:11.840] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:11.900] [INFO] cheese - inserting 1000 documents. first: Diacme mopsalis and last: Turfan (volcano) -[2018-02-13T00:49:11.920] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:12.002] [INFO] cheese - inserting 1000 documents. first: Zavolzhye engine plant and last: Category:Bodies of water of Talladega County, Alabama -[2018-02-13T00:49:12.021] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:49:12.143] [INFO] cheese - inserting 1000 documents. first: Category:Mexican telenovelas stubs and last: MakovskyIntegratedCommunications -[2018-02-13T00:49:12.180] [INFO] cheese - inserting 1000 documents. first: New Zealand Top 50 singles of 2005 and last: Charles Homan -[2018-02-13T00:49:12.182] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:12.201] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:12.366] [INFO] cheese - inserting 1000 documents. first: Linda Gross Theater and last: Wikipedia:Articles for deletion/Andrew Sesinyi -[2018-02-13T00:49:12.388] [INFO] cheese - inserting 1000 documents. first: Gentile converts to Judaism and last: Emmett Dougherty -[2018-02-13T00:49:12.391] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:12.412] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:49:12.587] [INFO] cheese - inserting 1000 documents. first: Thudiyalur railway station and last: File:Matlock Rose.jpeg -[2018-02-13T00:49:12.591] [INFO] cheese - inserting 1000 documents. first: Havat Ma'on and last: Tătăreşti, Străşeni -[2018-02-13T00:49:12.604] [INFO] cheese - batch complete in: 0.192 secs -[2018-02-13T00:49:12.610] [INFO] cheese - batch complete in: 0.219 secs -[2018-02-13T00:49:12.762] [INFO] cheese - inserting 1000 documents. first: Draft:Ceosonson and last: Category:Bodies of water of Lee County, Iowa -[2018-02-13T00:49:12.790] [INFO] cheese - batch complete in: 0.186 secs -[2018-02-13T00:49:12.855] [INFO] cheese - inserting 1000 documents. first: Hendl and last: 1985 Women's World Open Squash Championship -[2018-02-13T00:49:12.889] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:13.003] [INFO] cheese - inserting 1000 documents. first: 1907 Syracuse Orangemen football team and last: Wikipedia:WikiProject Spam/Local/glaucoomfonds.nl -[2018-02-13T00:49:13.026] [INFO] cheese - batch complete in: 0.236 secs -[2018-02-13T00:49:13.143] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Metro FC and last: Şandor Gal -[2018-02-13T00:49:13.171] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:49:13.201] [INFO] cheese - inserting 1000 documents. first: Christian Green Wood Senior Secondary School and last: Cino, Maria -[2018-02-13T00:49:13.223] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:13.294] [INFO] cheese - inserting 1000 documents. first: Template:Infobox PBA team/doc and last: Akita Publishing Co., Ltd. -[2018-02-13T00:49:13.307] [INFO] cheese - batch complete in: 0.136 secs -[2018-02-13T00:49:13.391] [INFO] cheese - inserting 1000 documents. first: Ciobanu, Maria and last: Damla Colbay -[2018-02-13T00:49:13.414] [INFO] cheese - batch complete in: 0.191 secs -[2018-02-13T00:49:13.486] [INFO] cheese - inserting 1000 documents. first: Ştefania Vătafu and last: Category:Ragusan scholars -[2018-02-13T00:49:13.508] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:13.584] [INFO] cheese - inserting 1000 documents. first: Sri Konda Laxman Telangana State Horticultural University and last: Exeter vs Andover -[2018-02-13T00:49:13.602] [INFO] cheese - batch complete in: 0.188 secs -[2018-02-13T00:49:13.689] [INFO] cheese - inserting 1000 documents. first: Module:Location map/data/Vatican City/doc and last: Ken Wookey (footballer born 1922) -[2018-02-13T00:49:13.707] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:13.730] [INFO] cheese - inserting 1000 documents. first: Category:Bodies of water of Jefferson County, Mississippi and last: Category:Burials at Beaufort National Cemetery (South Carolina) -[2018-02-13T00:49:13.750] [INFO] cheese - batch complete in: 0.148 secs -[2018-02-13T00:49:13.930] [INFO] cheese - inserting 1000 documents. first: Uday Express and last: File:Cook County Illinois Incorporated and Unincorporated areas Sauk Village Highlighted.svg -[2018-02-13T00:49:13.931] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saint Ignatius Church, Baltimore and last: File:GloryDaysSpringsteen.jpg -[2018-02-13T00:49:13.949] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:13.958] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T00:49:14.069] [INFO] cheese - inserting 1000 documents. first: File:Clair County Illinois Incorporated and Unincorporated areas Sauget Highlighted.svg and last: Wikipedia:WikiProject Spam/LinkReports/aurcade.com -[2018-02-13T00:49:14.081] [INFO] cheese - batch complete in: 0.132 secs -[2018-02-13T00:49:14.146] [INFO] cheese - inserting 1000 documents. first: Bau-Bataillon 121 and last: 1986 Intercontinental Final -[2018-02-13T00:49:14.175] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:49:14.339] [INFO] cheese - inserting 1000 documents. first: 24 Commando Regiment (United Kingdom) and last: Incertae sedis (Arctiinae) -[2018-02-13T00:49:14.396] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:49:14.489] [INFO] cheese - inserting 1000 documents. first: Taketomi Tokitoshi and last: CSA Scientific Research on the International Space Station -[2018-02-13T00:49:14.537] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T00:49:14.767] [INFO] cheese - inserting 1000 documents. first: Reputation (Lewis episode) and last: Cloeon fluviatile -[2018-02-13T00:49:14.799] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T00:49:14.840] [INFO] cheese - inserting 1000 documents. first: File:Crossroads marker.jpg and last: Category:Belizean television series endings by year -[2018-02-13T00:49:14.891] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T00:49:14.993] [INFO] cheese - inserting 1000 documents. first: Cloeon languidum and last: Dimeragrion -[2018-02-13T00:49:15.009] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:15.248] [INFO] cheese - inserting 1000 documents. first: Gillis Peeters and last: Kumar Sanu discography and filmography -[2018-02-13T00:49:15.268] [INFO] cheese - inserting 1000 documents. first: Calilestes and last: Kun, Maria -[2018-02-13T00:49:15.285] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T00:49:15.319] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:15.610] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Canada Amateur Hockey Association seasons and last: Draft:Pretail -[2018-02-13T00:49:15.640] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T00:49:15.644] [INFO] cheese - inserting 1000 documents. first: Kuncewiczowa, Maria and last: William Kelly (Australian cricketer) -[2018-02-13T00:49:15.721] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T00:49:16.173] [INFO] cheese - inserting 1000 documents. first: File:The Old Forester House.jpg and last: Wikipedia:Articles for deletion/Furler -[2018-02-13T00:49:16.185] [INFO] cheese - inserting 1000 documents. first: Captain America: Civil War (film) and last: Category:Songs written by Greg Camp -[2018-02-13T00:49:16.211] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T00:49:16.238] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T00:49:16.392] [INFO] cheese - inserting 1000 documents. first: Godson (surname) and last: File:Adams County Pennsylvania Incorporated and Unincorporated areas Arendtsville Highlighted.svg -[2018-02-13T00:49:16.412] [INFO] cheese - batch complete in: 0.201 secs -[2018-02-13T00:49:16.513] [INFO] cheese - inserting 1000 documents. first: Montecore: en unik tiger and last: The Breakwater -[2018-02-13T00:49:16.552] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T00:49:16.707] [INFO] cheese - inserting 1000 documents. first: File:Lackawanna County Pennsylvania Incorporated and Unincorporated areas Archbald Highlighted.svg and last: Phetchabun F.C. -[2018-02-13T00:49:16.741] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T00:49:16.780] [INFO] cheese - inserting 1000 documents. first: Category:1236 establishments in Italy and last: Bronius Laurinavicius -[2018-02-13T00:49:16.801] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T00:49:16.976] [INFO] cheese - inserting 1000 documents. first: Category:Presidents of the Senate (Cambodia) and last: Brăteni (disambiguation) -[2018-02-13T00:49:16.993] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Dichromanthus and last: Black-and-white laughingthrush -[2018-02-13T00:49:16.998] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:17.027] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T00:49:17.281] [INFO] cheese - inserting 1000 documents. first: File:Go for It, Baby.jpg and last: File:Dane County Wisconsin Incorporated and Unincorporated areas Marshall Highlighted.svg -[2018-02-13T00:49:17.301] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T00:49:17.342] [INFO] cheese - inserting 1000 documents. first: Brătești (disambiguation) and last: W-X Freeway -[2018-02-13T00:49:17.370] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T00:49:17.446] [INFO] cheese - inserting 1000 documents. first: Ahmed Younis and last: File:Simon1Gameplay.png -[2018-02-13T00:49:17.462] [INFO] cheese - batch complete in: 0.161 secs -[2018-02-13T00:49:17.590] [INFO] cheese - inserting 1000 documents. first: Flint, Michigan railway station and last: Allendea -[2018-02-13T00:49:17.624] [INFO] cheese - inserting 1000 documents. first: Anomisma and last: File:Marion County West Virginia Incorporated and Unincorporated areas Barrackville Highlighted.svg -[2018-02-13T00:49:17.625] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:17.642] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:17.807] [INFO] cheese - inserting 1000 documents. first: File:Cabell County West Virginia Incorporated and Unincorporated areas Barboursville Highlighted.svg and last: Category:New Zealand youth international footballers -[2018-02-13T00:49:17.827] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:49:17.865] [INFO] cheese - inserting 1000 documents. first: Starkea and last: 1967–68 Yugoslav First Basketball League -[2018-02-13T00:49:17.892] [INFO] cheese - batch complete in: 0.267 secs -[2018-02-13T00:49:18.043] [INFO] cheese - inserting 1000 documents. first: 1964 All-Ireland Under-21 Football Championship and last: BBC2 Wales -[2018-02-13T00:49:18.075] [INFO] cheese - batch complete in: 0.248 secs -[2018-02-13T00:49:18.141] [INFO] cheese - inserting 1000 documents. first: Second Programme (NERIT) and last: Peerless -[2018-02-13T00:49:18.180] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:49:18.238] [INFO] cheese - inserting 1000 documents. first: Category:American lawyers admitted to the bar by reading law and last: Susan P. Holmes -[2018-02-13T00:49:18.256] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:18.436] [INFO] cheese - inserting 1000 documents. first: Walid Khazen and last: Category:2005 in English rugby league -[2018-02-13T00:49:18.440] [INFO] cheese - inserting 1000 documents. first: File:KairosDB Architecture Diagram.png and last: IMO 9155559 -[2018-02-13T00:49:18.465] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:18.479] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T00:49:18.700] [INFO] cheese - inserting 1000 documents. first: IMO 9155561 and last: Dipodarctus -[2018-02-13T00:49:18.724] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:18.737] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/edifice.cc and last: Râul Cheii (disambiguation) -[2018-02-13T00:49:18.772] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T00:49:18.887] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Jenna Joseph and last: FX Latin America -[2018-02-13T00:49:18.905] [INFO] cheese - batch complete in: 0.181 secs -[2018-02-13T00:49:18.982] [INFO] cheese - inserting 1000 documents. first: Bani Yas International Tournament and last: Category:National Assembly (Venezuela) -[2018-02-13T00:49:19.010] [INFO] cheese - batch complete in: 0.237 secs -[2018-02-13T00:49:19.045] [INFO] cheese - inserting 1000 documents. first: Category:Burials in Alameda County, California and last: File:Cullman County and Marshall County Alabama Incorporated and Unincorporated areas Arab Highlighted 0102116.svg -[2018-02-13T00:49:19.062] [INFO] cheese - batch complete in: 0.157 secs -[2018-02-13T00:49:19.194] [INFO] cheese - inserting 1000 documents. first: Category:Members of the National Assembly (Venezuela) and last: Template:Infobox Eurovision/1968 -[2018-02-13T00:49:19.219] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T00:49:19.247] [INFO] cheese - inserting 1000 documents. first: File:Lauderdale County Alabama Incorporated and Unincorporated areas Anderson Highlighted 0101756.svg and last: Wikipedia:Articles for deletion/Qrator -[2018-02-13T00:49:19.269] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:49:19.456] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/heropt.net and last: JS Hiuchi (AMS-4301) -[2018-02-13T00:49:19.462] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Eurovision/1969 and last: Tarma, Kentucky -[2018-02-13T00:49:19.483] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:49:19.498] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:19.773] [INFO] cheese - inserting 1000 documents. first: Strnovac and last: List of archaeological sites beyond national boundaries -[2018-02-13T00:49:19.818] [INFO] cheese - batch complete in: 0.32 secs -[2018-02-13T00:49:19.979] [INFO] cheese - inserting 1000 documents. first: Canton of Castres-2 and last: File:Pinal County Arizona Incorporated and Unincorporated areas Wet Camp Village Highlighted 0482060.svg -[2018-02-13T00:49:20.024] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T00:49:20.093] [INFO] cheese - inserting 1000 documents. first: Biblia Paulistów and last: Category:1945 radio programme debuts -[2018-02-13T00:49:20.124] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:49:20.238] [INFO] cheese - inserting 1000 documents. first: File:La Paz County Arizona Incorporated and Unincorporated areas Wenden Highlighted 0481550.svg and last: Template:2017–18 First Professional Football League (Bulgaria) Relegation Round Group B table -[2018-02-13T00:49:20.257] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:49:20.451] [INFO] cheese - inserting 1000 documents. first: Isabella de Coucy and last: Always (band) -[2018-02-13T00:49:20.456] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ROBLOX Studio and last: Template:Justcurious/doc -[2018-02-13T00:49:20.483] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:49:20.504] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T00:49:20.706] [INFO] cheese - inserting 1000 documents. first: Northern celadon and last: 🏴󠁣󠁡󠁳󠁫󠁿 -[2018-02-13T00:49:20.735] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:20.795] [INFO] cheese - inserting 1000 documents. first: Osage, Texas and last: Melanis cinaron -[2018-02-13T00:49:20.828] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T00:49:20.947] [INFO] cheese - inserting 1000 documents. first: Medard Makanga and last: Syncoelidium -[2018-02-13T00:49:20.969] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:49:21.080] [INFO] cheese - inserting 1000 documents. first: John Marion Galloway House and last: Carlos Samuel Moreno Terán -[2018-02-13T00:49:21.111] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T00:49:21.153] [INFO] cheese - inserting 1000 documents. first: Bdelloura and last: Book:Psychiatry -[2018-02-13T00:49:21.183] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:49:21.367] [INFO] cheese - inserting 1000 documents. first: Lakhdar Ben Cherif and last: File:Los Angeles County California Incorporated and Unincorporated areas Manhattan Beach Highlighted 0645400.svg -[2018-02-13T00:49:21.391] [INFO] cheese - batch complete in: 0.208 secs -[2018-02-13T00:49:21.401] [INFO] cheese - inserting 1000 documents. first: File:The Cup of Life cover.png and last: Blendtron -[2018-02-13T00:49:21.444] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T00:49:21.563] [INFO] cheese - inserting 1000 documents. first: File:Mendocino County California Incorporated and Unincorporated areas Manchester Highlighted 0645386.svg and last: Draft:Frederick J. Stoever -[2018-02-13T00:49:21.591] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:21.759] [INFO] cheese - inserting 1000 documents. first: Wanqani Apachita and last: File:Santa Ignacia Tarlac.png -[2018-02-13T00:49:21.811] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T00:49:21.874] [INFO] cheese - inserting 1000 documents. first: The Americans Season 2 Episode 6 : Behind the Red Door and last: P. K. Thakur -[2018-02-13T00:49:21.910] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:49:22.110] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Abbey Vale and last: American Journal of Pathology -[2018-02-13T00:49:22.154] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:49:22.163] [INFO] cheese - inserting 1000 documents. first: File:Last Man Club.jpg and last: Liers -[2018-02-13T00:49:22.220] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:22.474] [INFO] cheese - inserting 1000 documents. first: Elizabeth duck and last: File:Tori Amos Past the Mission UK US cover.jpg -[2018-02-13T00:49:22.494] [INFO] cheese - inserting 1000 documents. first: Nikolay Vasilyevich Belov and last: Baku–Tbilisi–Akhalkalaki–Kars railway -[2018-02-13T00:49:22.510] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T00:49:22.538] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T00:49:22.825] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Igor Aleksovski and last: Caesalpinia nhatrangense -[2018-02-13T00:49:22.838] [INFO] cheese - inserting 1000 documents. first: Tseax and last: William Brill -[2018-02-13T00:49:22.865] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T00:49:22.927] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T00:49:23.142] [INFO] cheese - inserting 1000 documents. first: Andy Maloney and last: Canton El Tablon -[2018-02-13T00:49:23.175] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T00:49:23.202] [INFO] cheese - inserting 1000 documents. first: Jammu and Kashmir Legislative Assembly election, 1987 and last: Desnianskyi District -[2018-02-13T00:49:23.228] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T00:49:23.352] [INFO] cheese - inserting 1000 documents. first: Ahmed Warsama and last: Basic RV Repair and Palmistry -[2018-02-13T00:49:23.355] [INFO] cheese - inserting 1000 documents. first: SS Van Heemskerk (1909) and last: Robert J. Munson -[2018-02-13T00:49:23.373] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:49:23.377] [INFO] cheese - batch complete in: 0.148 secs -[2018-02-13T00:49:23.605] [INFO] cheese - inserting 1000 documents. first: Sri Lanka women's national under-19 basketball team and last: Template:Europe of the Peoples (2004)/meta/shortname -[2018-02-13T00:49:23.637] [INFO] cheese - batch complete in: 0.264 secs -[2018-02-13T00:49:23.667] [INFO] cheese - inserting 1000 documents. first: 北斗 and last: Baía das Pontas -[2018-02-13T00:49:23.708] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T00:49:23.846] [INFO] cheese - inserting 1000 documents. first: Category:1912 Swedish novels and last: Wikipedia:Articles for deletion/Happy Birthday, Robot! -[2018-02-13T00:49:23.864] [INFO] cheese - batch complete in: 0.227 secs -[2018-02-13T00:49:23.993] [INFO] cheese - inserting 1000 documents. first: TCL Communication and last: Template:England-cricket-bio-1710s-stub -[2018-02-13T00:49:24.027] [INFO] cheese - batch complete in: 0.319 secs -[2018-02-13T00:49:24.078] [INFO] cheese - inserting 1000 documents. first: William Meigh Goodman and last: Cratera pseudovaginuloides -[2018-02-13T00:49:24.110] [INFO] cheese - batch complete in: 0.246 secs -[2018-02-13T00:49:24.340] [INFO] cheese - inserting 1000 documents. first: Category:1856 in the Caribbean and last: File:Something i need cover.png -[2018-02-13T00:49:24.363] [INFO] cheese - inserting 1000 documents. first: Cratera anamariae and last: Saratov Electrical Components Production Association -[2018-02-13T00:49:24.376] [INFO] cheese - batch complete in: 0.349 secs -[2018-02-13T00:49:24.390] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T00:49:24.587] [INFO] cheese - inserting 1000 documents. first: Template:Works of Henri Bergson and last: Minyak coinage during the Western Xia -[2018-02-13T00:49:24.604] [INFO] cheese - batch complete in: 0.214 secs -[2018-02-13T00:49:24.617] [INFO] cheese - inserting 1000 documents. first: Category:1924 in Central America and last: Paige Smith -[2018-02-13T00:49:24.641] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T00:49:24.739] [INFO] cheese - inserting 1000 documents. first: Minyak coinage in the Western Xia and last: Imler, Pennsylvania -[2018-02-13T00:49:24.757] [INFO] cheese - batch complete in: 0.153 secs -[2018-02-13T00:49:24.888] [INFO] cheese - inserting 1000 documents. first: Techniques of genetic engineering and last: Dryobates -[2018-02-13T00:49:24.947] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:49:24.959] [INFO] cheese - inserting 1000 documents. first: Draft:Ytram and last: Halorhabdus utahensis -[2018-02-13T00:49:24.986] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:25.163] [INFO] cheese - inserting 1000 documents. first: Halorhabdus tiamatea and last: Global Business School Barcelona -[2018-02-13T00:49:25.184] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:25.194] [INFO] cheese - inserting 1000 documents. first: Ghzan-stong and last: Five-bar swordtail -[2018-02-13T00:49:25.225] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:49:25.379] [INFO] cheese - inserting 1000 documents. first: You Can't Turn Me Off and last: Bangladesh Railway Class 2900 -[2018-02-13T00:49:25.412] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:25.536] [INFO] cheese - inserting 1000 documents. first: Common mime and last: Category:1887 in Central America -[2018-02-13T00:49:25.576] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T00:49:25.618] [INFO] cheese - inserting 1000 documents. first: Ledderhose and last: Acidianus manzaensis -[2018-02-13T00:49:25.638] [INFO] cheese - batch complete in: 0.226 secs -[2018-02-13T00:49:25.800] [INFO] cheese - inserting 1000 documents. first: Acidianus pozzuoliensis and last: Ela I Si Vzemi -[2018-02-13T00:49:25.818] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:25.837] [INFO] cheese - inserting 1000 documents. first: Anantaboga and last: Living in the Moment (EP) -[2018-02-13T00:49:25.864] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T00:49:25.993] [INFO] cheese - inserting 1000 documents. first: Stylianos Stratakos and last: File:R.E.M. 7IN—83-88 Box Set.jpg -[2018-02-13T00:49:26.011] [INFO] cheese - batch complete in: 0.193 secs -[2018-02-13T00:49:26.047] [INFO] cheese - inserting 1000 documents. first: Living in the Moment and last: Bhale Bullodu -[2018-02-13T00:49:26.069] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:49:26.168] [INFO] cheese - inserting 1000 documents. first: Category:Moorish Revival architecture in New York City and last: Goodman, Victor -[2018-02-13T00:49:26.191] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:26.277] [INFO] cheese - inserting 1000 documents. first: Digital Communications Associates and last: Category:Sportswomen from Northern Ireland -[2018-02-13T00:49:26.301] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:49:26.347] [INFO] cheese - inserting 1000 documents. first: File:Madera County California Incorporated and Unincorporated areas Ahwahnee Highlighted 0600478.svg and last: Optare OmniDekka -[2018-02-13T00:49:26.362] [INFO] cheese - batch complete in: 0.171 secs -[2018-02-13T00:49:26.484] [INFO] cheese - inserting 1000 documents. first: Reona Aoki and last: Bo Lynn's Grocery -[2018-02-13T00:49:26.498] [INFO] cheese - batch complete in: 0.136 secs -[2018-02-13T00:49:26.513] [INFO] cheese - inserting 1000 documents. first: Steve Mallan and last: Category:Terrorism in Southeast Asia -[2018-02-13T00:49:26.539] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T00:49:26.727] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Älmhult Municipality and last: Pulaski County Courthouse (Pulaski, Virginia) -[2018-02-13T00:49:26.754] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:49:26.760] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2015 January 1 and last: Walden's Path -[2018-02-13T00:49:26.807] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T00:49:26.969] [INFO] cheese - inserting 1000 documents. first: Pulaski County Courthouse (Waynesville, Missouri) and last: Karate in Japan -[2018-02-13T00:49:26.994] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:49:27.051] [INFO] cheese - inserting 1000 documents. first: European route E25 in Belgium and last: Global position system -[2018-02-13T00:49:27.079] [INFO] cheese - batch complete in: 0.272 secs -[2018-02-13T00:49:27.151] [INFO] cheese - inserting 1000 documents. first: Bloc identitaire and last: File:Cook County Georgia Incorporated and Unincorporated areas Sparks Highlighted 1372556.svg -[2018-02-13T00:49:27.174] [INFO] cheese - batch complete in: 0.18 secs -[2018-02-13T00:49:27.293] [INFO] cheese - inserting 1000 documents. first: Postmates and last: New Haven Profs -[2018-02-13T00:49:27.310] [INFO] cheese - inserting 1000 documents. first: File:Treutlen County Georgia Incorporated and Unincorporated areas Soperton Highlighted 1371772.svg and last: File:Samrat Yadav Dakshin dare 2017 Winner.jpg -[2018-02-13T00:49:27.330] [INFO] cheese - batch complete in: 0.156 secs -[2018-02-13T00:49:27.335] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T00:49:27.502] [INFO] cheese - inserting 1000 documents. first: File:Kootenai County Idaho Incorporated and Unincorporated areas Hayden Highlighted 1636370.svg and last: Category:Education in Munger district -[2018-02-13T00:49:27.525] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:49:27.542] [INFO] cheese - inserting 1000 documents. first: Category:Turkish girl groups and last: Category:Companies that filed for Chapter 11 bankruptcy in 2006 -[2018-02-13T00:49:27.568] [INFO] cheese - batch complete in: 0.233 secs -[2018-02-13T00:49:27.700] [INFO] cheese - inserting 1000 documents. first: Arizona (US band) and last: United States presidential election in New Hampshire, 1789 -[2018-02-13T00:49:27.719] [INFO] cheese - batch complete in: 0.194 secs -[2018-02-13T00:49:27.791] [INFO] cheese - inserting 1000 documents. first: Rectus capitus (disambiguation) and last: Ṭihrán -[2018-02-13T00:49:27.813] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:27.953] [INFO] cheese - inserting 1000 documents. first: Andrew Parkinson (artist) and last: File:Pasco County Florida Incorporated and Unincorporated areas Heritage Pines Highlighted 1229385.svg -[2018-02-13T00:49:27.983] [INFO] cheese - batch complete in: 0.263 secs -[2018-02-13T00:49:28.034] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Israel coins and medals and last: Wikipedia:WikiProject Spam/LinkReports/points.speechanddebate.org -[2018-02-13T00:49:28.075] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T00:49:28.193] [INFO] cheese - inserting 1000 documents. first: File:Pasco County Florida Incorporated and Unincorporated areas Holiday Highlighted 1231075.svg and last: Christie Mountain (ski area) -[2018-02-13T00:49:28.230] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T00:49:28.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/points.speechanddebate.org and last: Daben -[2018-02-13T00:49:28.418] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T00:49:28.476] [INFO] cheese - inserting 1000 documents. first: England Lost and last: Category:People from Shelby, Montana -[2018-02-13T00:49:28.506] [INFO] cheese - batch complete in: 0.275 secs -[2018-02-13T00:49:28.636] [INFO] cheese - inserting 1000 documents. first: Dermantsi and last: The Slave Market (film) -[2018-02-13T00:49:28.661] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T00:49:28.678] [INFO] cheese - inserting 1000 documents. first: Category:2003 in Libyan sport and last: List of governors of Saga Prefecture -[2018-02-13T00:49:28.704] [INFO] cheese - batch complete in: 0.198 secs -[2018-02-13T00:49:28.874] [INFO] cheese - inserting 1000 documents. first: 2005 Army Black Knights football team and last: MBC Entertainment Award -[2018-02-13T00:49:28.901] [INFO] cheese - inserting 1000 documents. first: File:Gulliver Bookplate.jpg and last: 3β-Androstenol -[2018-02-13T00:49:28.901] [INFO] cheese - batch complete in: 0.24 secs -[2018-02-13T00:49:28.927] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:29.096] [INFO] cheese - inserting 1000 documents. first: Brian J. Morris and last: Filip Krovinović -[2018-02-13T00:49:29.130] [INFO] cheese - batch complete in: 0.229 secs -[2018-02-13T00:49:29.151] [INFO] cheese - inserting 1000 documents. first: Draft:Educational Passages and last: TEDxWellington -[2018-02-13T00:49:29.187] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T00:49:29.371] [INFO] cheese - inserting 1000 documents. first: Deanna Church and last: Category:Military units and formations in Suffolk -[2018-02-13T00:49:29.412] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T00:49:29.509] [INFO] cheese - inserting 1000 documents. first: File:Datuk-aziz-sattar.jpg and last: Zinchuk, Victor -[2018-02-13T00:49:29.568] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T00:49:29.660] [INFO] cheese - inserting 1000 documents. first: Underworld series and last: Category:16th-century establishments in Venezuela -[2018-02-13T00:49:29.701] [INFO] cheese - batch complete in: 0.289 secs -[2018-02-13T00:49:29.854] [INFO] cheese - inserting 1000 documents. first: Zonana, Victor and last: Calymene blumenbachi -[2018-02-13T00:49:29.881] [INFO] cheese - batch complete in: 0.312 secs -[2018-02-13T00:49:29.968] [INFO] cheese - inserting 755 documents. first: Category:Reservoirs in Kerala and last: Passara Electoral District -[2018-02-13T00:49:30.017] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T00:49:30.017] [INFO] cheese - worker pid:56526 is done. inserted 2932756 pages in 0 secs. -[2018-02-13T00:49:30.104] [INFO] cheese - inserting 1000 documents. first: Chad Johnson (TV personality) and last: Book:Justifiable Genocide: Volume 4 -[2018-02-13T00:49:30.141] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:49:30.378] [INFO] cheese - inserting 1000 documents. first: Category:Energy companies established in 2017 and last: Punchi Apith Baya Na Dan -[2018-02-13T00:49:30.414] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T00:49:30.616] [INFO] cheese - inserting 1000 documents. first: Southern Italian (disambiguation) and last: Kichi Jargylchak -[2018-02-13T00:49:30.638] [INFO] cheese - batch complete in: 0.223 secs -[2018-02-13T00:49:30.805] [INFO] cheese - inserting 1000 documents. first: 2017 Holden Cup and last: BWV 1089 -[2018-02-13T00:49:30.834] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:49:31.053] [INFO] cheese - inserting 1000 documents. first: Nuru, Sara and last: Storer, Sara -[2018-02-13T00:49:31.079] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:49:31.330] [INFO] cheese - inserting 1000 documents. first: Category:Defunct soccer clubs in South Carolina and last: Tailteann Games (Irish Free State) -[2018-02-13T00:49:31.356] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T00:49:31.593] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Austroglanis and last: File:Wildrose Party logo 2017.png -[2018-02-13T00:49:31.616] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T00:49:31.812] [INFO] cheese - inserting 1000 documents. first: List of Adult Contemporary top 10 singles in 1996 (U.S.) and last: 88th Regiment of Foot (1779) -[2018-02-13T00:49:31.844] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T00:49:32.025] [INFO] cheese - inserting 1000 documents. first: Biotechnol. Bioprocess Eng. and last: Draft:Dembel -[2018-02-13T00:49:32.051] [INFO] cheese - batch complete in: 0.207 secs -[2018-02-13T00:49:32.253] [INFO] cheese - inserting 1000 documents. first: Tebyan Cultural and Information Institute and last: Wikipedia:Articles for deletion/Autocrat, LLC -[2018-02-13T00:49:32.281] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:49:32.458] [INFO] cheese - inserting 1000 documents. first: Arhopala annulata and last: Reeves, Richard -[2018-02-13T00:49:32.480] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:32.661] [INFO] cheese - inserting 1000 documents. first: Michael Nathanson (actor) and last: Ocean Robbins -[2018-02-13T00:49:32.690] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:32.879] [INFO] cheese - inserting 1000 documents. first: Show Album No.1 and last: Wikipedia:Wiki Loves Pride 2015/Rome -[2018-02-13T00:49:32.908] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T00:49:33.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wiki Loves Pride 2015/San Francisco and last: Ivory Coast at the 2017 World Championships in Athletics -[2018-02-13T00:49:33.153] [INFO] cheese - batch complete in: 0.244 secs -[2018-02-13T00:49:33.406] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Women's National Wheelchair Basketball League and last: 🏴󠁰󠁨󠁳󠁬󠁥󠁿 -[2018-02-13T00:49:33.451] [INFO] cheese - batch complete in: 0.298 secs -[2018-02-13T00:49:33.682] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hot Topics in... and last: Wikipedia:Abuse reports/203.97.42.131 -[2018-02-13T00:49:33.706] [INFO] cheese - batch complete in: 0.255 secs -[2018-02-13T00:49:33.879] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Abuse reports/204.10.221.253 and last: Rhapsodies in Black -[2018-02-13T00:49:33.909] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:34.136] [INFO] cheese - inserting 1000 documents. first: Liaoningvenator and last: Maguire, Sarah -[2018-02-13T00:49:34.159] [INFO] cheese - batch complete in: 0.25 secs -[2018-02-13T00:49:34.339] [INFO] cheese - inserting 1000 documents. first: Main, Sarah and last: Steigviliai -[2018-02-13T00:49:34.359] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:34.624] [INFO] cheese - inserting 1000 documents. first: Schenirer, Sarah and last: The Legend of Mata Nui -[2018-02-13T00:49:34.646] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:49:34.871] [INFO] cheese - inserting 1000 documents. first: Category:Swarnavahini television series and last: Kleinmann-Low nebula -[2018-02-13T00:49:34.898] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:35.106] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Klase gonzales and last: Barnett, Christopher -[2018-02-13T00:49:35.129] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T00:49:35.347] [INFO] cheese - inserting 1000 documents. first: File:2017 Honda Ridgeline Frame Drawing.png and last: Knowles Creek -[2018-02-13T00:49:35.381] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:35.531] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dixon Park & Ride and last: List of @midnight episodes (2013) -[2018-02-13T00:49:35.546] [INFO] cheese - batch complete in: 0.165 secs -[2018-02-13T00:49:35.768] [INFO] cheese - inserting 1000 documents. first: Milwaukee/North Line and last: Pär Öberg -[2018-02-13T00:49:35.798] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T00:49:35.963] [INFO] cheese - inserting 1000 documents. first: File:Elisabeth of Austria (film).jpg and last: Draft:Raja Feather Kelly -[2018-02-13T00:49:35.981] [INFO] cheese - batch complete in: 0.183 secs -[2018-02-13T00:49:36.175] [INFO] cheese - inserting 1000 documents. first: Category:AfC submissions by date/10 August 2017 and last: Archivio Storico del Ministero degli Affari Esteri -[2018-02-13T00:49:36.192] [INFO] cheese - batch complete in: 0.211 secs -[2018-02-13T00:49:36.368] [INFO] cheese - inserting 1000 documents. first: File:University of Washington Seal.svg and last: Hjort, Christopher -[2018-02-13T00:49:36.389] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:36.664] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jamil Ahmed Nizamani and last: Golden Powers (disambiguation) -[2018-02-13T00:49:36.695] [INFO] cheese - batch complete in: 0.306 secs -[2018-02-13T00:49:36.873] [INFO] cheese - inserting 1000 documents. first: Harper and McIntire Company Warehouse and last: Hesperia pann -[2018-02-13T00:49:36.907] [INFO] cheese - batch complete in: 0.212 secs -[2018-02-13T00:49:37.097] [INFO] cheese - inserting 1000 documents. first: Template:Ranks and Insignia of Non NATO Armies/OF/Tajikistan and last: Championnat LNA -[2018-02-13T00:49:37.128] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T00:49:37.269] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Colección Patricia Phelps de Cisneros/Workshops/2017-08-09 and last: Pil Tor -[2018-02-13T00:49:37.287] [INFO] cheese - batch complete in: 0.159 secs -[2018-02-13T00:49:37.446] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Panda and last: Larry McCormack -[2018-02-13T00:49:37.483] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:49:37.669] [INFO] cheese - inserting 1000 documents. first: Draft:Palmer Simplified Layout and last: The Wild Horses -[2018-02-13T00:49:37.686] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:37.848] [INFO] cheese - inserting 1000 documents. first: File:EverWing official.jpg and last: Cape Bernouilli -[2018-02-13T00:49:37.865] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:38.020] [INFO] cheese - inserting 1000 documents. first: New Haven (Martian crater) and last: Template:Taxonomy/Gazellospira -[2018-02-13T00:49:38.042] [INFO] cheese - batch complete in: 0.176 secs -[2018-02-13T00:49:38.252] [INFO] cheese - inserting 1000 documents. first: Mr Citizen and last: Dibenz(b,f)oxepines -[2018-02-13T00:49:38.272] [INFO] cheese - batch complete in: 0.23 secs -[2018-02-13T00:49:38.448] [INFO] cheese - inserting 1000 documents. first: Dibenz(b,f)oxepins and last: You Get My Love (Pink song) -[2018-02-13T00:49:38.471] [INFO] cheese - batch complete in: 0.199 secs -[2018-02-13T00:49:38.660] [INFO] cheese - inserting 1000 documents. first: File:Plymouth PA Old Stone House.jpg and last: Category:Sudanese rappers -[2018-02-13T00:49:38.681] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:38.832] [INFO] cheese - inserting 1000 documents. first: Killeen Cowpark and last: Law of New York -[2018-02-13T00:49:38.846] [INFO] cheese - batch complete in: 0.165 secs -[2018-02-13T00:49:39.034] [INFO] cheese - inserting 1000 documents. first: Archeparchy of Mosul (disambiguation) and last: 2017 UCI Road World Championships – Men's road race -[2018-02-13T00:49:39.056] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T00:49:39.206] [INFO] cheese - inserting 1000 documents. first: Draft:2017-18 United States network television schedule daytime and last: 1979 Copa América Finals -[2018-02-13T00:49:39.231] [INFO] cheese - batch complete in: 0.175 secs -[2018-02-13T00:49:39.384] [INFO] cheese - inserting 1000 documents. first: 1983 Copa América Finals and last: Arizona Territory -[2018-02-13T00:49:39.405] [INFO] cheese - batch complete in: 0.174 secs -[2018-02-13T00:49:39.583] [INFO] cheese - inserting 1000 documents. first: Qutlugh Qocha and last: Byfield, Richard -[2018-02-13T00:49:39.605] [INFO] cheese - batch complete in: 0.2 secs -[2018-02-13T00:49:39.755] [INFO] cheese - inserting 1000 documents. first: Byrnes, Richard and last: Inverse trigonometric secant -[2018-02-13T00:49:39.777] [INFO] cheese - batch complete in: 0.172 secs -[2018-02-13T00:49:39.953] [INFO] cheese - inserting 1000 documents. first: Inverse trigonometric cosecant and last: Category:Michigan State Spartans men's tennis -[2018-02-13T00:49:39.974] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T00:49:40.235] [INFO] cheese - inserting 1000 documents. first: Valeria Brinton Young and last: Galefele Moroko -[2018-02-13T00:49:40.261] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T00:49:40.479] [INFO] cheese - inserting 1000 documents. first: Antony (given name) and last: Montenegrin independent championship (1992-1999) -[2018-02-13T00:49:40.506] [INFO] cheese - batch complete in: 0.245 secs -[2018-02-13T00:49:40.694] [INFO] cheese - inserting 1000 documents. first: Montenegrin Republic Cup (1947-2006) and last: Category:Dari dialects of Afghanistan -[2018-02-13T00:49:40.723] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T00:49:40.916] [INFO] cheese - inserting 1000 documents. first: Derrynaflan Church and last: The Killing Machine (2010 film) -[2018-02-13T00:49:40.955] [INFO] cheese - batch complete in: 0.232 secs -[2018-02-13T00:49:41.143] [INFO] cheese - inserting 1000 documents. first: Sheetla Mata Mandir Gurgaon and last: Cross slabs -[2018-02-13T00:49:41.160] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T00:49:41.323] [INFO] cheese - inserting 1000 documents. first: Wheel crosses and last: Wikipedia:Reference desk/Archives/Science/2017 August 10 -[2018-02-13T00:49:41.357] [INFO] cheese - batch complete in: 0.196 secs -[2018-02-13T00:49:41.527] [INFO] cheese - inserting 1000 documents. first: Pierpont, John and last: Wikipedia:AOCD -[2018-02-13T00:49:41.544] [INFO] cheese - batch complete in: 0.187 secs -[2018-02-13T00:49:41.719] [INFO] cheese - inserting 1000 documents. first: A. N. Rajan Babu and last: King of Dál nAraidi -[2018-02-13T00:49:41.747] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:41.937] [INFO] cheese - inserting 1000 documents. first: Category:Fauna of the Western Ghats and last: 2016 Deauville American Film Festival -[2018-02-13T00:49:41.951] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:49:42.088] [INFO] cheese - inserting 1000 documents. first: Charlie Ware (hurler, born 1900) and last: Denys Hawthorne -[2018-02-13T00:49:42.106] [INFO] cheese - batch complete in: 0.155 secs -[2018-02-13T00:49:42.308] [INFO] cheese - inserting 1000 documents. first: Draft:Dytto and last: Template:User WP Earthquakes -[2018-02-13T00:49:42.326] [INFO] cheese - batch complete in: 0.22 secs -[2018-02-13T00:49:42.529] [INFO] cheese - inserting 1000 documents. first: Mean Streak and last: 'ahdnâme -[2018-02-13T00:49:42.560] [INFO] cheese - batch complete in: 0.234 secs -[2018-02-13T00:49:42.726] [INFO] cheese - inserting 1000 documents. first: Wa1a and last: Randa Ayoubi -[2018-02-13T00:49:42.745] [INFO] cheese - batch complete in: 0.185 secs -[2018-02-13T00:49:42.925] [INFO] cheese - inserting 1000 documents. first: Communist Revolutionary Centre and last: Wikipedia:WikiProject Spam/LinkReports/andoportugal.org -[2018-02-13T00:49:42.949] [INFO] cheese - batch complete in: 0.204 secs -[2018-02-13T00:49:43.195] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Two Ton Baker and last: File:Princess1986.jpg -[2018-02-13T00:49:43.218] [INFO] cheese - batch complete in: 0.269 secs -[2018-02-13T00:49:43.388] [INFO] cheese - inserting 1000 documents. first: Kim Dong-min and last: Miliukaitė -[2018-02-13T00:49:43.413] [INFO] cheese - batch complete in: 0.195 secs -[2018-02-13T00:49:43.568] [INFO] cheese - inserting 1000 documents. first: Doctor's Wife and last: Template:Taxonomy/Heterobathmia -[2018-02-13T00:49:43.586] [INFO] cheese - batch complete in: 0.173 secs -[2018-02-13T00:49:43.747] [INFO] cheese - inserting 1000 documents. first: Kingdom of Larantuka and last: The Brookfield Library -[2018-02-13T00:49:43.765] [INFO] cheese - batch complete in: 0.179 secs -[2018-02-13T00:49:43.951] [INFO] cheese - inserting 1000 documents. first: The Brookfield Public Library and last: Cavalaris -[2018-02-13T00:49:43.968] [INFO] cheese - batch complete in: 0.203 secs -[2018-02-13T00:49:44.136] [INFO] cheese - inserting 1000 documents. first: Casalinuovo and last: Zamorano Pan American Agricultural School -[2018-02-13T00:49:44.158] [INFO] cheese - batch complete in: 0.19 secs -[2018-02-13T00:49:44.388] [INFO] cheese - inserting 1000 documents. first: Priory Street and last: Laszlo Baksay -[2018-02-13T00:49:44.419] [INFO] cheese - batch complete in: 0.261 secs -[2018-02-13T00:49:44.623] [INFO] cheese - inserting 1000 documents. first: Untitled Obi Wan Kenobi film and last: HolidayMe -[2018-02-13T00:49:44.658] [INFO] cheese - batch complete in: 0.239 secs -[2018-02-13T00:49:44.806] [INFO] cheese - inserting 677 documents. first: Villani, Pat J. and last: SV Marken -[2018-02-13T00:49:44.818] [INFO] cheese - batch complete in: 0.16 secs -[2018-02-13T00:49:44.818] [INFO] cheese - worker pid:56527 is done. inserted 3096677 pages in 0 secs. -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71711 is now alive. startByte: 0 endByte: 7918988581 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71713 is now alive. startByte: 15830977162 endByte: 23749965743 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71714 is now alive. startByte: 23746965743 endByte: 31665954324 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71716 is now alive. startByte: 39578942905 endByte: 47497931486 -[2018-02-13T08:18:59.233] [INFO] cheese - worker pid:71717 is now alive. startByte: 47494931486 endByte: 55413920067 -[2018-02-13T08:18:59.234] [INFO] cheese - worker pid:71718 is now alive. startByte: 55410920067 endByte: 63329908648 -[2018-02-13T08:18:59.881] [INFO] cheese - inserting 1000 documents. first: Pyroxene grouplet and last: NWA American Heavyweight Championship -[2018-02-13T08:18:59.991] [INFO] cheese - inserting 1000 documents. first: Karl-Liebknecht-Stadion and last: Harold Greene (journalist) -[2018-02-13T08:19:00.032] [INFO] cheese - inserting 1000 documents. first: War epic films and last: Cistercian order -[2018-02-13T08:19:00.045] [INFO] cheese - inserting 1000 documents. first: Thomas Leighton Decker and last: Alexei Romanov (disambiguation) -[2018-02-13T08:19:00.081] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:00.131] [INFO] cheese - inserting 1000 documents. first: Yuki Yamanouchi and last: Rondo in B minor for violin and piano (Schubert) -[2018-02-13T08:19:00.176] [INFO] cheese - inserting 1000 documents. first: Comunidad Democrática Cristiana and last: North Kurdistan insurgency -[2018-02-13T08:19:00.181] [INFO] cheese - inserting 1000 documents. first: St Roch's F.C. and last: Sydenhams Chorea -[2018-02-13T08:19:00.238] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:19:00.239] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:00.292] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:19:00.423] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:19:00.503] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:19:00.586] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:19:01.152] [INFO] cheese - inserting 1000 documents. first: National Council against Health Fraud and last: Wikipedia:Featured topic removal candidates/Iowa class battleships/archive1 -[2018-02-13T08:19:01.475] [INFO] cheese - inserting 1000 documents. first: Fachhochschule Braunschweig and last: Someone Else Will -[2018-02-13T08:19:01.482] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:19:01.486] [INFO] cheese - inserting 1000 documents. first: Texas Valley and last: Template:2014–15 Premier League PFA Team of the Year -[2018-02-13T08:19:01.493] [INFO] cheese - inserting 1000 documents. first: Bloody Week and last: Tuberous sclerosis 1 -[2018-02-13T08:19:01.581] [INFO] cheese - inserting 1000 documents. first: King's Academy and last: New York Philharmonic Symphony Orchesra -[2018-02-13T08:19:01.699] [INFO] cheese - batch complete in: 1.406 secs -[2018-02-13T08:19:01.732] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:19:01.838] [INFO] cheese - batch complete in: 1.6 secs -[2018-02-13T08:19:01.860] [INFO] cheese - batch complete in: 1.621 secs -[2018-02-13T08:19:02.098] [INFO] cheese - inserting 1000 documents. first: Category:Toulouse and last: Kenneth Lavery Rider -[2018-02-13T08:19:02.214] [INFO] cheese - inserting 1000 documents. first: Bury Me Dead and last: Battle of St. Kitts -[2018-02-13T08:19:02.573] [INFO] cheese - batch complete in: 2.069 secs -[2018-02-13T08:19:02.687] [INFO] cheese - batch complete in: 2.101 secs -[2018-02-13T08:19:02.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Iowa class battleship/archive2 and last: TWIP steel -[2018-02-13T08:19:03.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Anarchism articles by quality log and last: 1973 European Cup Winners' Cup Final -[2018-02-13T08:19:03.157] [INFO] cheese - batch complete in: 1.675 secs -[2018-02-13T08:19:03.263] [INFO] cheese - inserting 1000 documents. first: Glenforsa and last: Category:Mountain ranges of Midi-Pyrénées -[2018-02-13T08:19:03.280] [INFO] cheese - inserting 1000 documents. first: Category:Great Basin National Park and last: Legality of cannabis in ghana -[2018-02-13T08:19:03.309] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T08:19:03.417] [INFO] cheese - batch complete in: 1.684 secs -[2018-02-13T08:19:03.502] [INFO] cheese - batch complete in: 1.802 secs -[2018-02-13T08:19:03.521] [INFO] cheese - inserting 1000 documents. first: Mouse racing and last: Mythimna -[2018-02-13T08:19:03.655] [INFO] cheese - batch complete in: 1.816 secs -[2018-02-13T08:19:03.804] [INFO] cheese - inserting 1000 documents. first: AccessibleComputing and last: Airline -[2018-02-13T08:19:03.939] [INFO] cheese - inserting 1000 documents. first: 2013 Czech Presidential election and last: Template:Editnotices/Page/Hao Zhao -[2018-02-13T08:19:04.042] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:19:04.051] [INFO] cheese - inserting 1000 documents. first: Tropical Cyclone Arthur (2007) and last: Category:Media in Maricopa County, Arizona -[2018-02-13T08:19:04.052] [INFO] cheese - inserting 1000 documents. first: Watanabe Yoshio and last: NIT Tiruchirappalli -[2018-02-13T08:19:04.106] [INFO] cheese - inserting 1000 documents. first: The Android and last: Self propelled howitzer -[2018-02-13T08:19:04.129] [INFO] cheese - inserting 1000 documents. first: Vaugondry and last: Man year -[2018-02-13T08:19:04.122] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:19:04.178] [INFO] cheese - batch complete in: 1.491 secs -[2018-02-13T08:19:04.207] [INFO] cheese - batch complete in: 4.929 secs -[2018-02-13T08:19:04.247] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:19:04.254] [INFO] cheese - inserting 1000 documents. first: Denise Herzing and last: Dave Greszczyszyn -[2018-02-13T08:19:04.401] [INFO] cheese - batch complete in: 1.827 secs -[2018-02-13T08:19:04.533] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:19:04.640] [INFO] cheese - inserting 1000 documents. first: Dog notice and last: Csit -[2018-02-13T08:19:04.767] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T08:19:04.831] [INFO] cheese - inserting 1000 documents. first: Matthysse and last: En pointe -[2018-02-13T08:19:04.990] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:19:05.174] [INFO] cheese - inserting 1000 documents. first: Do You Know What It Means to Miss New Orleans and last: Category:Road incident deaths in Norway -[2018-02-13T08:19:05.194] [INFO] cheese - inserting 1000 documents. first: Albanians in Germany and last: Fred Jurgen Schnepel -[2018-02-13T08:19:05.225] [INFO] cheese - inserting 1000 documents. first: Malayalam films of 1968 and last: Category:United States Senate elections, 1898 -[2018-02-13T08:19:05.232] [INFO] cheese - inserting 1000 documents. first: File:Justin Green (1972) Binky Brown Meets the Holy Virgin Mary splash page.jpg and last: Wikipedia:Miscellany for deletion/User:Motionride -[2018-02-13T08:19:05.327] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:19:05.348] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:19:05.370] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:19:05.488] [INFO] cheese - batch complete in: 1.31 secs -[2018-02-13T08:19:05.715] [INFO] cheese - inserting 1000 documents. first: Victory Grill and last: Deiseal -[2018-02-13T08:19:05.724] [INFO] cheese - inserting 1000 documents. first: Ayina River and last: Category:Alejandra Guzmán video albums -[2018-02-13T08:19:05.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/OurColony and last: Mark IX tank -[2018-02-13T08:19:05.818] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:19:05.824] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:19:05.860] [INFO] cheese - batch complete in: 1.458 secs -[2018-02-13T08:19:06.157] [INFO] cheese - inserting 1000 documents. first: Category:1982–83 in African football by country and last: Jon Stankovič -[2018-02-13T08:19:06.237] [INFO] cheese - inserting 1000 documents. first: Cuando pase el temblor and last: Template:Lang-ain -[2018-02-13T08:19:06.267] [INFO] cheese - inserting 1000 documents. first: Precalentines Day and last: Camana Province -[2018-02-13T08:19:06.264] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:19:06.271] [INFO] cheese - inserting 1000 documents. first: Jon & Kate and last: File:Sfwd-lissy-trullie-self-taught-learner-ep-cover.png -[2018-02-13T08:19:06.342] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:19:06.488] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:19:06.520] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:19:06.584] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in the Gambia and last: Siderus tephraeus -[2018-02-13T08:19:06.704] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:19:06.895] [INFO] cheese - inserting 1000 documents. first: Radcliffe Award and last: MPG: Motion Picture Genocide -[2018-02-13T08:19:06.913] [INFO] cheese - inserting 1000 documents. first: Barano d'Ischia and last: José de Jesús Corona Rodriguez -[2018-02-13T08:19:07.040] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:19:07.052] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:19:07.055] [INFO] cheese - inserting 1000 documents. first: The Jester (film) and last: Calluga -[2018-02-13T08:19:07.148] [INFO] cheese - inserting 1000 documents. first: Category:Ordovician geology of Texas and last: Croatian Society of Medical Biochemistry and Laboratory Medicine -[2018-02-13T08:19:07.167] [INFO] cheese - inserting 1000 documents. first: TS Patriot State and last: Carmen Ortiz -[2018-02-13T08:19:07.172] [INFO] cheese - inserting 1000 documents. first: The Legend of Heroes VI: Sora no Kiseki and last: Category:Novels set in Vietnam -[2018-02-13T08:19:07.181] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:19:07.292] [INFO] cheese - inserting 1000 documents. first: Category:Preston North End F.C. templates and last: Wikipedia:Version 1.0 Editorial Team/Aviation articles by quality/47 -[2018-02-13T08:19:07.313] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:19:07.320] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:19:07.342] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:19:07.523] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:19:07.729] [INFO] cheese - inserting 1000 documents. first: Histone modification and last: Juan Francisco Torres Belén -[2018-02-13T08:19:07.738] [INFO] cheese - inserting 1000 documents. first: Callurapteryx and last: Victoria Theater (Wheeling, West Virginia) -[2018-02-13T08:19:07.796] [INFO] cheese - inserting 1000 documents. first: Elaine Black Yoneda and last: Kunio Shimizu -[2018-02-13T08:19:07.809] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:07.819] [INFO] cheese - inserting 1000 documents. first: File:Bachelor's Double at 1911 Jubilee.jpg and last: Category:1969–70 in European football by country -[2018-02-13T08:19:07.820] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:19:07.913] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:19:07.920] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:19:07.980] [INFO] cheese - inserting 1000 documents. first: Australian Democrats and last: Big Dipper (disambiguation) -[2018-02-13T08:19:08.019] [INFO] cheese - inserting 1000 documents. first: Kevin Owen Foley and last: Category:Czech Republic articles by quality -[2018-02-13T08:19:08.049] [INFO] cheese - inserting 1000 documents. first: Harry Kimberlin and last: Carter Sans -[2018-02-13T08:19:08.053] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2005-04-11/Privacy policy and last: Halifax, England -[2018-02-13T08:19:08.094] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:19:08.132] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:19:08.142] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:19:08.160] [INFO] cheese - batch complete in: 3.953 secs -[2018-02-13T08:19:08.309] [INFO] cheese - inserting 1000 documents. first: Echineulima mittrei and last: Wikipedia:Articles for deletion/Orly Shani -[2018-02-13T08:19:08.310] [INFO] cheese - inserting 1000 documents. first: Les Herbes folles and last: Merchiston railway station -[2018-02-13T08:19:08.362] [INFO] cheese - inserting 1000 documents. first: Lavochne and last: Category:Kyrgyzstan Futsal League -[2018-02-13T08:19:08.384] [INFO] cheese - inserting 1000 documents. first: Miller Group (marketing agency) and last: Walter Adolf Georg Gropius -[2018-02-13T08:19:08.424] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:19:08.427] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:19:08.537] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:19:08.619] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:19:08.783] [INFO] cheese - inserting 1000 documents. first: Huelsemann, Johannes and last: Mologino, Tver Oblast -[2018-02-13T08:19:08.783] [INFO] cheese - inserting 1000 documents. first: New York State Bicycle Route 17 and last: Color Robot Battle -[2018-02-13T08:19:08.831] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:19:08.840] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:19:09.053] [INFO] cheese - inserting 1000 documents. first: SA – Harlem 2 and last: HR Branson -[2018-02-13T08:19:09.125] [INFO] cheese - inserting 1000 documents. first: Oscar by the Sea and last: Saulius Mikalajūnas -[2018-02-13T08:19:09.139] [INFO] cheese - inserting 1000 documents. first: Woolwich Building Society and last: Isokon -[2018-02-13T08:19:09.144] [INFO] cheese - inserting 1000 documents. first: Spunk (album) and last: XP 819 -[2018-02-13T08:19:09.192] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:19:09.248] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:19:09.259] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:19:09.372] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:19:09.473] [INFO] cheese - inserting 1000 documents. first: Jeanne Marie Bouvier de La Motte Guyon and last: Emil Kemeneş -[2018-02-13T08:19:09.588] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:19:09.642] [INFO] cheese - inserting 1000 documents. first: Uleyki and last: Wikipedia:WikiProject Spam/LinkReports/facebook.sohbetlive.com -[2018-02-13T08:19:09.737] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:19:09.842] [INFO] cheese - inserting 1000 documents. first: Category:1629 establishments by country and last: Cărbunaru River -[2018-02-13T08:19:09.857] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/UniversityJunction.com and last: Badrashin railway accident -[2018-02-13T08:19:09.927] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:19:09.933] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:19:09.939] [INFO] cheese - inserting 1000 documents. first: Saulius Mikalajunas and last: File:Alberta Highway 40 (Bighorn).svg -[2018-02-13T08:19:09.951] [INFO] cheese - inserting 1000 documents. first: Lita Cabellut and last: Linda Singh -[2018-02-13T08:19:10.014] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:19:10.057] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:19:10.104] [INFO] cheese - inserting 1000 documents. first: ScrollKeeper and last: Karl Ploetz -[2018-02-13T08:19:10.210] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:19:10.242] [INFO] cheese - inserting 1000 documents. first: Christ the King (Almada) and last: KTBN (shortwave) -[2018-02-13T08:19:10.332] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:19:10.389] [INFO] cheese - inserting 1000 documents. first: File:The King of Milu Deer poster.jpg and last: 713 series -[2018-02-13T08:19:10.410] [INFO] cheese - inserting 1000 documents. first: 2010-11 Etisalat Emirates Cup and last: Rydaholms GoIF -[2018-02-13T08:19:10.464] [INFO] cheese - inserting 1000 documents. first: Cyrano de Berger's Back and last: Amergin Gluingel -[2018-02-13T08:19:10.473] [INFO] cheese - inserting 1000 documents. first: Carolina buckthorn and last: Wikipedia:Articles for deletion/The Culinary Institute of America (Korean translation) -[2018-02-13T08:19:10.474] [INFO] cheese - inserting 1000 documents. first: Masti (Kannada) and last: Italy-occupied France -[2018-02-13T08:19:10.477] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:19:10.478] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:19:10.558] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:19:10.617] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:19:10.637] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:19:10.915] [INFO] cheese - inserting 1000 documents. first: Barry McKenzie and last: Amerer Air -[2018-02-13T08:19:10.926] [INFO] cheese - inserting 1000 documents. first: Category:British Roman Catholic bishop stubs and last: Category:Middle schools in South Korea -[2018-02-13T08:19:10.928] [INFO] cheese - inserting 1000 documents. first: Scopula sjostedti and last: Amurrhyparia leopardinula -[2018-02-13T08:19:10.988] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:19:11.014] [INFO] cheese - inserting 1000 documents. first: South Germantown, Wisconsin and last: 2014–15 Angola Basketball Cup -[2018-02-13T08:19:11.011] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:19:11.050] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:19:11.112] [INFO] cheese - inserting 1000 documents. first: Lamb meat and last: Battle of Droop Mountain -[2018-02-13T08:19:11.126] [INFO] cheese - inserting 1000 documents. first: Amorgen Glúingel and last: 1971 European Championships in Athletics -[2018-02-13T08:19:11.188] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:19:11.260] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:19:11.291] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:19:11.306] [INFO] cheese - inserting 1000 documents. first: Tom Burns (publisher) and last: Province of brabant -[2018-02-13T08:19:11.488] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:19:11.602] [INFO] cheese - inserting 1000 documents. first: Bursa and last: Bill Bryson -[2018-02-13T08:19:11.607] [INFO] cheese - inserting 1000 documents. first: Welcome (Doyle Bramhall II album) and last: Gurnard scorpionfish -[2018-02-13T08:19:11.673] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:19:11.683] [INFO] cheese - inserting 1000 documents. first: Filter (air) and last: Norah Stoner -[2018-02-13T08:19:11.684] [INFO] cheese - inserting 1000 documents. first: Non-residential Indians and last: Diamond (typography) -[2018-02-13T08:19:11.685] [INFO] cheese - inserting 1000 documents. first: Province of brandenburg and last: The beginning was the end -[2018-02-13T08:19:11.708] [INFO] cheese - inserting 1000 documents. first: Michal Pavlu and last: Boudreauville, Nova Scotia -[2018-02-13T08:19:11.737] [INFO] cheese - batch complete in: 0.249 secs -[2018-02-13T08:19:11.793] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:19:11.820] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:19:11.832] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:19:11.858] [INFO] cheese - batch complete in: 3.698 secs -[2018-02-13T08:19:11.907] [INFO] cheese - inserting 1000 documents. first: Category:Sammarinese expatriate footballers and last: Echoes: The Einaudi Collection -[2018-02-13T08:19:12.045] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:19:12.166] [INFO] cheese - inserting 1000 documents. first: Category:Christian statements of faith and last: Category:Marya Roxx albums -[2018-02-13T08:19:12.208] [INFO] cheese - inserting 1000 documents. first: Strawberry Sound and last: Project 985 -[2018-02-13T08:19:12.245] [INFO] cheese - inserting 1000 documents. first: The beginning of all things to end and last: Wikipedia:WikiProject Spam/LinkReports/plantesminiatures.com -[2018-02-13T08:19:12.283] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:19:12.345] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:19:12.403] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:19:12.434] [INFO] cheese - inserting 1000 documents. first: Template:Vitrinidae-stub and last: Gladswood House, Double Bay, New South Wales -[2018-02-13T08:19:12.533] [INFO] cheese - inserting 1000 documents. first: Brilliant (typography) and last: Townwood -[2018-02-13T08:19:12.589] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:19:12.600] [INFO] cheese - inserting 1000 documents. first: Garagum District and last: Mandyam Tamil -[2018-02-13T08:19:12.621] [INFO] cheese - inserting 1000 documents. first: Jiang Yuegui and last: Thomastown Township, MN -[2018-02-13T08:19:12.659] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:19:12.672] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:12.751] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:19:12.913] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Main Page history/2013 January 16 and last: Nate Wolters -[2018-02-13T08:19:13.024] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:19:13.134] [INFO] cheese - inserting 1000 documents. first: Mr. Monk and the 12th Man and last: State Route 32B (New York) -[2018-02-13T08:19:13.286] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:19:13.290] [INFO] cheese - inserting 1000 documents. first: Category:Project 985 and last: Laws of Duplicate Bridge -[2018-02-13T08:19:13.426] [INFO] cheese - inserting 1000 documents. first: LWOH and last: Sid Helliwell -[2018-02-13T08:19:13.482] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:19:13.570] [INFO] cheese - inserting 1000 documents. first: 1947 BOAC Douglas C-47 crash and last: Sticky rice cake -[2018-02-13T08:19:13.640] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:19:13.643] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Millau Viaduct/archive1 and last: Dichlorodifluoromethane -[2018-02-13T08:19:13.662] [INFO] cheese - inserting 1000 documents. first: Parchim class corvette and last: Category:Folk albums by Bahamian artists -[2018-02-13T08:19:13.676] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Ambassis jacksoniensis and last: Finance Act 2014 -[2018-02-13T08:19:13.707] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:19:13.732] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:19:13.775] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:19:13.812] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:19:14.068] [INFO] cheese - inserting 1000 documents. first: Category:Diana King albums and last: Wikipedia:WikiProject Comics/Notice board/Proposed merges and splits/2008 -[2018-02-13T08:19:14.152] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:19:14.190] [INFO] cheese - inserting 1000 documents. first: Sexy no Jutsu and last: Gabe Khouth -[2018-02-13T08:19:14.207] [INFO] cheese - inserting 1000 documents. first: R12 and last: Vasa Township, MN -[2018-02-13T08:19:14.229] [INFO] cheese - inserting 1000 documents. first: Template:Ifparadef/doc and last: Rue Mercière -[2018-02-13T08:19:14.252] [INFO] cheese - inserting 1000 documents. first: Category:People from Pechenihy Raion and last: Small world (TV miniseries) -[2018-02-13T08:19:14.274] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:19:14.275] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:19:14.332] [INFO] cheese - inserting 1000 documents. first: File:Florida Gateway College (emblem).png and last: Wikipedia:WikiProject Pharmacology/Log/2011-02-05 -[2018-02-13T08:19:14.343] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:19:14.411] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:19:14.426] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:19:14.486] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2015 May 9 and last: 2014–15 Championship -[2018-02-13T08:19:14.627] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:19:14.840] [INFO] cheese - inserting 1000 documents. first: Black Noddies and last: CSF1R -[2018-02-13T08:19:14.889] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:19:14.900] [INFO] cheese - inserting 1000 documents. first: Ensoulment and last: Wikipedia:Articles for deletion/Mahabon -[2018-02-13T08:19:14.975] [INFO] cheese - inserting 1000 documents. first: Tel Aviv Arlozorov Terminal and last: Wikipedia:Articles for deletion/Japan-Oceania relations -[2018-02-13T08:19:14.984] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Dexter episodes/archive2 and last: Category:Dallas-Fort Worth Rangers players -[2018-02-13T08:19:14.989] [INFO] cheese - inserting 1000 documents. first: Huang Hui-Wen and last: Category:1825 establishments in the United Kingdom -[2018-02-13T08:19:15.002] [INFO] cheese - inserting 1000 documents. first: George Washington (TV miniseries) and last: Template:Israel-journalist-stub -[2018-02-13T08:19:15.029] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:19:15.057] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:15.059] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:19:15.121] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:19:15.148] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:19:15.222] [INFO] cheese - inserting 1000 documents. first: File:Beyond the Mask 2015.jpg and last: Dabney T. Smith -[2018-02-13T08:19:15.290] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:19:15.417] [INFO] cheese - inserting 1000 documents. first: Big Audio Dynamite and last: Conditional proof -[2018-02-13T08:19:15.550] [INFO] cheese - inserting 1000 documents. first: Blackbeard Island National Wildlife Refuge and last: Ichc -[2018-02-13T08:19:15.561] [INFO] cheese - inserting 1000 documents. first: South Georgia Council and last: Wikipedia:Featured list removal candidates/List of numbered highways in Amenia (CDP), New York/archive1 -[2018-02-13T08:19:15.661] [INFO] cheese - batch complete in: 3.803 secs -[2018-02-13T08:19:15.670] [INFO] cheese - inserting 1000 documents. first: Category:1825 establishments in England and last: Pribumi (Native Indonesians) -[2018-02-13T08:19:15.741] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:19:15.751] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:19:15.827] [INFO] cheese - inserting 1000 documents. first: File:Edward Grigg.jpg and last: Wikipedia:WikiProject Spam/Local/floyd-flora.info -[2018-02-13T08:19:15.854] [INFO] cheese - inserting 1000 documents. first: Bühl-Stollhofen and last: Category:Bird family (Antigua and Barbuda) -[2018-02-13T08:19:15.857] [INFO] cheese - inserting 1000 documents. first: Stryker MGS and last: Chitrabhanu (mathematician) -[2018-02-13T08:19:15.873] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:19:15.954] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:19:15.959] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:19:16.007] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:19:16.028] [INFO] cheese - inserting 1000 documents. first: Conference of Badasht and last: California State Highway 38 -[2018-02-13T08:19:16.151] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:19:16.394] [INFO] cheese - inserting 1000 documents. first: Mount Titiroa and last: Antaphylatic shock -[2018-02-13T08:19:16.413] [INFO] cheese - inserting 1000 documents. first: Wolfsberg, Austria and last: Lanmeur -[2018-02-13T08:19:16.473] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:19:16.476] [INFO] cheese - inserting 1000 documents. first: Gas to liquid and last: Mayor of Esch-sur-Alzette -[2018-02-13T08:19:16.486] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:19:16.498] [INFO] cheese - inserting 1000 documents. first: Convolution algorithm and last: Rhamnopyranose -[2018-02-13T08:19:16.514] [INFO] cheese - inserting 1000 documents. first: Holeček and last: Denham Golf Club -[2018-02-13T08:19:16.560] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:19:16.587] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:19:16.612] [INFO] cheese - inserting 1000 documents. first: File:Reno Rumble Title Card.png and last: PFA Young Women's Player of the Year -[2018-02-13T08:19:16.661] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:19:16.723] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:19:16.907] [INFO] cheese - inserting 1000 documents. first: California State Highway 37 and last: Parve -[2018-02-13T08:19:17.069] [INFO] cheese - inserting 1000 documents. first: Category:Top-importance Palau articles and last: Apparent distance -[2018-02-13T08:19:17.103] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:17.131] [INFO] cheese - inserting 1000 documents. first: Hōkoku jinja and last: Bara Pind Lohtian -[2018-02-13T08:19:17.172] [INFO] cheese - inserting 1000 documents. first: Lenin Stadium (disambiguation) and last: File:Ruthwell Cross, Front.jpg -[2018-02-13T08:19:17.182] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:19:17.250] [INFO] cheese - inserting 1000 documents. first: Fatih mosque and last: Category:1949 American television series debuts -[2018-02-13T08:19:17.252] [INFO] cheese - inserting 1000 documents. first: American archaeology and last: Eggbeater kick -[2018-02-13T08:19:17.273] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:17.326] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:19:17.353] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:19:17.398] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:17.493] [INFO] cheese - inserting 1000 documents. first: William Samuel Lilly and last: Peter Masten Dunne -[2018-02-13T08:19:17.593] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:19:17.812] [INFO] cheese - inserting 1000 documents. first: Robert Seddon and last: Template:2002 bowl game navbox -[2018-02-13T08:19:17.845] [INFO] cheese - inserting 1000 documents. first: American Highway Flower and last: Mava, Razavi Khorasan -[2018-02-13T08:19:17.848] [INFO] cheese - inserting 1000 documents. first: Acid2 and last: Kel-Morian Combine -[2018-02-13T08:19:17.904] [INFO] cheese - inserting 1000 documents. first: Nobuyuki Hosaka and last: Dařbuján a Pandrhola -[2018-02-13T08:19:17.902] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:19:17.913] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:19:17.949] [INFO] cheese - inserting 1000 documents. first: Encap and last: CEACAM6 -[2018-02-13T08:19:17.984] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:19:18.026] [INFO] cheese - inserting 1000 documents. first: Venecuela and last: Riverdale High School (Muscoda, Wisconsin) -[2018-02-13T08:19:18.067] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:19:18.139] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:19:18.154] [INFO] cheese - inserting 1000 documents. first: Robert Power (cricketer) and last: C.J. Uzomah -[2018-02-13T08:19:18.215] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:19:18.294] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:19:18.481] [INFO] cheese - inserting 1000 documents. first: Largest dams and last: Category:Food and drink companies of Wales -[2018-02-13T08:19:18.587] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:19:18.733] [INFO] cheese - inserting 1000 documents. first: Like You and last: Simon Wilson -[2018-02-13T08:19:18.728] [INFO] cheese - inserting 1000 documents. first: Hochwald (Zittau Mountains) and last: Leucopodella -[2018-02-13T08:19:18.758] [INFO] cheese - inserting 1000 documents. first: Conjunction introduction and last: Donald Knuth -[2018-02-13T08:19:18.871] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:19:18.882] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:19:18.928] [INFO] cheese - inserting 1000 documents. first: Shoreline Unified School District and last: Yuriy Zakharkiv -[2018-02-13T08:19:18.967] [INFO] cheese - inserting 1000 documents. first: Atkinson Principles and last: Chasseguet-Smirguel -[2018-02-13T08:19:19.018] [INFO] cheese - batch complete in: 3.357 secs -[2018-02-13T08:19:19.056] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:19:19.112] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:19:19.207] [INFO] cheese - inserting 1000 documents. first: Kanjūrō Arashi and last: Richard Haynes (musician) -[2018-02-13T08:19:19.215] [INFO] cheese - inserting 1000 documents. first: Hybrid fibre coax and last: Warrenton, GA -[2018-02-13T08:19:19.360] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:19:19.363] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:19:19.456] [INFO] cheese - inserting 1000 documents. first: List of members of the European Parliament for Greece, 1989–94 and last: Ramilton do Rosario -[2018-02-13T08:19:19.556] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:19:19.562] [INFO] cheese - inserting 1000 documents. first: City (Texas) and last: Stanislav Kunitskii -[2018-02-13T08:19:19.685] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:19:19.960] [INFO] cheese - inserting 1000 documents. first: Category:Record collectors and last: Portal:Current events/May 2015/Calendar -[2018-02-13T08:19:20.050] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:19:20.053] [INFO] cheese - inserting 1000 documents. first: 1998 COSAFA Cup and last: File:ShriSwamiSamarth.jpg -[2018-02-13T08:19:20.111] [INFO] cheese - inserting 1000 documents. first: Non-associativity and last: Tom Blinkhorn -[2018-02-13T08:19:20.124] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:19:20.171] [INFO] cheese - inserting 1000 documents. first: Rambé do Rosario and last: MS Nana Maru -[2018-02-13T08:19:20.174] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:19:20.177] [INFO] cheese - inserting 1000 documents. first: Warrenton, MO and last: KochelamSee -[2018-02-13T08:19:20.276] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:19:20.279] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:19:20.336] [INFO] cheese - inserting 1000 documents. first: Timo Koskela and last: Sfakia Province -[2018-02-13T08:19:20.405] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:19:20.529] [INFO] cheese - inserting 1000 documents. first: Jog (Raga) and last: 1965 in films -[2018-02-13T08:19:20.557] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T08:19:20.566] [INFO] cheese - inserting 1000 documents. first: Mail (application) and last: Duets (disambiguation) -[2018-02-13T08:19:20.642] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:19:20.715] [INFO] cheese - inserting 1000 documents. first: Debout Sur Le Zinc and last: William Slade (disambiguation) -[2018-02-13T08:19:20.771] [INFO] cheese - inserting 1000 documents. first: Xylophanes undata and last: Topaze-class cruiser -[2018-02-13T08:19:20.797] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:19:20.851] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:19:20.859] [INFO] cheese - inserting 1000 documents. first: Ochilview Park and last: Sgùrr a' Mhàim -[2018-02-13T08:19:20.917] [INFO] cheese - inserting 1000 documents. first: 1965 in the cinema and last: Anole (Somalia) -[2018-02-13T08:19:20.941] [INFO] cheese - inserting 1000 documents. first: Rorschach (Switzerland) and last: Château of Chillon -[2018-02-13T08:19:20.967] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:19:21.003] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:19:21.067] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:19:21.208] [INFO] cheese - inserting 1000 documents. first: Mosque No. 7 and last: Portal:Trains/Selected picture/Week 19, 2015/link -[2018-02-13T08:19:21.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/calyon.sk and last: Kyle Justin (disambiguation) -[2018-02-13T08:19:21.286] [INFO] cheese - inserting 1000 documents. first: Mark Brandenburg (politician) and last: Overdetermination -[2018-02-13T08:19:21.294] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:19:21.329] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:19:21.358] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:19:21.578] [INFO] cheese - inserting 1000 documents. first: Category:Folland aircraft and last: International Race of Champions V -[2018-02-13T08:19:21.655] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:19:21.673] [INFO] cheese - inserting 1000 documents. first: Käthe Kollwitz Museum (disambiguation) and last: New Amsterdam (song) -[2018-02-13T08:19:21.683] [INFO] cheese - inserting 1000 documents. first: Category:Winona State University faculty and last: Aaj Samaj -[2018-02-13T08:19:21.720] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:19:21.734] [INFO] cheese - inserting 1000 documents. first: Edwin A. Anderson, Jr. and last: Makapu'u -[2018-02-13T08:19:21.747] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:19:21.824] [INFO] cheese - inserting 1000 documents. first: Decimoputzu and last: OFK Grbalj -[2018-02-13T08:19:21.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/IP-VPN Lite and last: Category:Ghanaian people of Grenadian descent -[2018-02-13T08:19:21.900] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:19:21.941] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:19:22.003] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:22.081] [INFO] cheese - inserting 1000 documents. first: Donald E. Knuth and last: Eigenstate -[2018-02-13T08:19:22.123] [INFO] cheese - inserting 1000 documents. first: Template:User WPAnimation Coordinator and last: Strategies Against Architecture (disambiguation) -[2018-02-13T08:19:22.152] [INFO] cheese - inserting 1000 documents. first: Mwankoko and last: Karatsu Ware -[2018-02-13T08:19:22.176] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:19:22.229] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:19:22.284] [INFO] cheese - batch complete in: 3.266 secs -[2018-02-13T08:19:22.397] [INFO] cheese - inserting 1000 documents. first: Robertson Daniel and last: Pollution of the Chesapeake Bay -[2018-02-13T08:19:22.469] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:19:22.479] [INFO] cheese - inserting 1000 documents. first: File:Birmingham UK Boundary.png and last: Category:Bermudian beauty pageant winners -[2018-02-13T08:19:22.559] [INFO] cheese - inserting 1000 documents. first: Army Materiel Command (Denmark) and last: Filial imprinting -[2018-02-13T08:19:22.572] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:19:22.644] [INFO] cheese - inserting 1000 documents. first: Parameshi Prema Prasanga and last: Positive Women -[2018-02-13T08:19:22.650] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:19:22.695] [INFO] cheese - inserting 1000 documents. first: File:Culabula flag.jpg and last: Wikipedia:Mediation Cabal/Cases/2006-09-03 Falun Gong -[2018-02-13T08:19:22.715] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:19:22.827] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:19:22.832] [INFO] cheese - inserting 1000 documents. first: Karatsu-yaki and last: Wikipedia:Articles for deletion/Mark Draycott -[2018-02-13T08:19:22.902] [INFO] cheese - inserting 1000 documents. first: The Eraserheads discography and last: Template:BBC Radio 3 -[2018-02-13T08:19:22.932] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:19:23.015] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:19:23.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Mythology of Carnivàle/archive1 and last: THPO -[2018-02-13T08:19:23.108] [INFO] cheese - inserting 1000 documents. first: Sweetscented bedstraw and last: British Journal of Canadian Studies -[2018-02-13T08:19:23.190] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:19:23.264] [INFO] cheese - inserting 1000 documents. first: Jefferson Park (CTA station) and last: Order of Yaroslav the Wise -[2018-02-13T08:19:23.319] [INFO] cheese - batch complete in: 5.18 secs -[2018-02-13T08:19:23.360] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:23.450] [INFO] cheese - inserting 1000 documents. first: Brazilian slender opossum and last: I Am Not Afraid Of You And I Will Beat Your Ass -[2018-02-13T08:19:23.450] [INFO] cheese - inserting 1000 documents. first: LLEZ and last: Orion, California -[2018-02-13T08:19:23.519] [INFO] cheese - inserting 1000 documents. first: Bob Kelley and last: FK GGS Arma Ústí nad Labem -[2018-02-13T08:19:23.574] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:19:23.589] [INFO] cheese - inserting 1000 documents. first: L'Ami du peuple and last: Madison Area Technical College -[2018-02-13T08:19:23.590] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:19:23.625] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:19:23.672] [INFO] cheese - inserting 1000 documents. first: Liberation Day (Denmark) and last: Wikipedia:WikiProject Invader Zim -[2018-02-13T08:19:23.698] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:19:23.752] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:19:23.944] [INFO] cheese - inserting 1000 documents. first: Category:Protected areas of Colfax County, New Mexico and last: Category:Populated places in Hidalgo County, New Mexico -[2018-02-13T08:19:24.007] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:19:24.122] [INFO] cheese - inserting 1000 documents. first: Zero (game engine) and last: Daniersburg -[2018-02-13T08:19:24.147] [INFO] cheese - inserting 1000 documents. first: 2012–2013 UCI Track Cycling World Cup Classic in Glasgow – Men's keirin and last: Wikipedia:Articles for deletion/How the West was Won: A Pioneer Pageant -[2018-02-13T08:19:24.161] [INFO] cheese - inserting 1000 documents. first: Pioneer DVJ1000 and last: File:1999 - Unplugged.jpg -[2018-02-13T08:19:24.172] [INFO] cheese - inserting 1000 documents. first: Wes Roach and last: Tyrone Brooks -[2018-02-13T08:19:24.186] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:19:24.188] [INFO] cheese - inserting 1000 documents. first: Fourteen Mile Creek and last: List of Members of the Pan-African Parliament -[2018-02-13T08:19:24.194] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:19:24.245] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:19:24.268] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:19:24.330] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:19:24.411] [INFO] cheese - inserting 1000 documents. first: Gnaeus and last: Ouzoud Falls -[2018-02-13T08:19:24.502] [INFO] cheese - inserting 1000 documents. first: Category:Greek hairdressers and last: Wikipedia:WikiProject Spam/LinkReports/adsettspartnership.co.uk -[2018-02-13T08:19:24.509] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:19:24.606] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:19:24.708] [INFO] cheese - inserting 1000 documents. first: RTN3 and last: La riba de escalote -[2018-02-13T08:19:24.716] [INFO] cheese - inserting 1000 documents. first: Ralph Klein Park and last: File:AnsulLogo.gif -[2018-02-13T08:19:24.727] [INFO] cheese - inserting 1000 documents. first: Japanese National Championship and last: Template:French schools in Indian Ocean -[2018-02-13T08:19:24.746] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Scott Kurland and last: WDVY -[2018-02-13T08:19:24.771] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:19:24.789] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:19:24.835] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:19:24.848] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:19:24.924] [INFO] cheese - inserting 1000 documents. first: List of African Union Institutions and last: Christmas In The Stars -[2018-02-13T08:19:25.016] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:19:25.035] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/adsettspartnership.co.uk and last: Cyberpipe -[2018-02-13T08:19:25.112] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:19:25.136] [INFO] cheese - inserting 1000 documents. first: Elizabeth Barrett Browning and last: Fatah -[2018-02-13T08:19:25.186] [INFO] cheese - inserting 1000 documents. first: La rinconada de la sierra and last: Ammari District -[2018-02-13T08:19:25.226] [INFO] cheese - inserting 1000 documents. first: Jiranakorn Stadium and last: R. J. Rosales, Jr. -[2018-02-13T08:19:25.236] [INFO] cheese - inserting 1000 documents. first: SHBG and last: Atlanta Black Crackers -[2018-02-13T08:19:25.269] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:19:25.290] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:19:25.338] [INFO] cheese - inserting 1000 documents. first: Lucy Walker steamboat disaster and last: Palaio -[2018-02-13T08:19:25.357] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/New Jersey Route 160 and last: File:Hallgrímskirkja at night.jpg -[2018-02-13T08:19:25.377] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:19:25.462] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:19:25.504] [INFO] cheese - batch complete in: 3.219 secs -[2018-02-13T08:19:25.612] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:25.815] [INFO] cheese - inserting 1000 documents. first: Category:Amphibious vehicles of World War II and last: FTSE4GOOD index -[2018-02-13T08:19:25.838] [INFO] cheese - inserting 1000 documents. first: Firmin Dugas and last: Route 44 (Virginia 1933) -[2018-02-13T08:19:25.897] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:19:25.991] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:19:26.166] [INFO] cheese - inserting 1000 documents. first: R. J. Rosales and last: Category:2003–04 in Syrian football -[2018-02-13T08:19:26.171] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Greece politics articles and last: Heidi Johansen -[2018-02-13T08:19:26.187] [INFO] cheese - inserting 1000 documents. first: 1905 County Championship and last: Wikipedia:Reference desk/Archives/Entertainment/2013 January 19 -[2018-02-13T08:19:26.296] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:19:26.310] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:19:26.342] [INFO] cheese - inserting 1000 documents. first: Mohamed Messaoud and last: Wikipedia:WikiProject Spam/LinkReports/gomerch.com -[2018-02-13T08:19:26.347] [INFO] cheese - inserting 1000 documents. first: Cerebrosides and last: Wikipedia:Articles for deletion/Possible successors to Pope John Paul II -[2018-02-13T08:19:26.363] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:19:26.451] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:19:26.485] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:19:26.686] [INFO] cheese - inserting 1000 documents. first: Gare de Buzy and last: Category:Gold Coast Football Club seasons -[2018-02-13T08:19:26.770] [INFO] cheese - inserting 1000 documents. first: Dacca University and last: Markku Pusenius -[2018-02-13T08:19:26.791] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:19:26.927] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:19:26.943] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 January 19 and last: Henry Christopher -[2018-02-13T08:19:26.962] [INFO] cheese - inserting 1000 documents. first: Borgs and last: Sparterá, Greece -[2018-02-13T08:19:27.042] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:19:27.042] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:19:27.134] [INFO] cheese - inserting 1000 documents. first: Category:Badminton tournaments in Scotland and last: File:Trans Media Watch logo.png -[2018-02-13T08:19:27.143] [INFO] cheese - inserting 1000 documents. first: Category:The Jungle Book (Disney) video games and last: Baba (2008 film) -[2018-02-13T08:19:27.176] [INFO] cheese - inserting 1000 documents. first: Pope Benedictus XVI and last: Pasqualina Napoletano -[2018-02-13T08:19:27.216] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:19:27.249] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:27.385] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:19:27.472] [INFO] cheese - inserting 1000 documents. first: Arlindo Gomes Semedo and last: George Deloy -[2018-02-13T08:19:27.743] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:19:27.781] [INFO] cheese - inserting 1000 documents. first: Grob Vigilant and last: M-212 (Michigan highway) -[2018-02-13T08:19:27.791] [INFO] cheese - inserting 1000 documents. first: Powellia guadarramensis and last: Template:RussiaAdmMunRef/smo/munlist/shumyachsky -[2018-02-13T08:19:27.808] [INFO] cheese - inserting 1000 documents. first: Spartera, Greece and last: Barbara Fields -[2018-02-13T08:19:27.954] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:19:27.988] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:19:28.008] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:19:28.062] [INFO] cheese - inserting 1000 documents. first: Amazing journey and last: Al Hussein (missile) -[2018-02-13T08:19:28.092] [INFO] cheese - inserting 1000 documents. first: Ucrupata and last: Category:International schools in North Rhine–Westphalia -[2018-02-13T08:19:28.176] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:19:28.220] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:19:28.540] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators' noticeboard/IncidentArchive671 and last: Bad Elster Bademuseum -[2018-02-13T08:19:28.690] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:19:28.709] [INFO] cheese - inserting 1000 documents. first: Pedro Camacho and last: Category:Aeronautes -[2018-02-13T08:19:28.710] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for checkuser/Case/Anoshirawan and last: YMS-1 Class Auxiliary Motor Minesweeper -[2018-02-13T08:19:28.752] [INFO] cheese - inserting 1000 documents. first: Na-Ri and last: Portal:Anime and manga/Selected picture/11 -[2018-02-13T08:19:28.807] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:19:28.824] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:28.883] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/List of awards and nominations received by Rage Against the Machine/archive1 and last: File:Infinity War 1.jpg -[2018-02-13T08:19:28.903] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:19:29.018] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:19:29.143] [INFO] cheese - inserting 1000 documents. first: Rockford University and last: Wikipedia:Peer review/Polish Constitution of May 3, 1791/archive1 -[2018-02-13T08:19:29.160] [INFO] cheese - inserting 1000 documents. first: File:Everything Put Together.jpg and last: EDCA -[2018-02-13T08:19:29.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Bombing of Hamburg.ogg and last: FC Vitebsk-2 -[2018-02-13T08:19:29.243] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:19:29.283] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:19:29.309] [INFO] cheese - batch complete in: 1.924 secs -[2018-02-13T08:19:29.414] [INFO] cheese - inserting 1000 documents. first: Forteana and last: Eurogame -[2018-02-13T08:19:29.417] [INFO] cheese - inserting 1000 documents. first: Smile of a Child and last: Clara Sorensen -[2018-02-13T08:19:29.485] [INFO] cheese - inserting 1000 documents. first: Saybagh District and last: Cytherea (erotic actress) -[2018-02-13T08:19:29.500] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:19:29.535] [INFO] cheese - inserting 1000 documents. first: National association of theatre owners and last: National lesbian and gay journalists association -[2018-02-13T08:19:29.536] [INFO] cheese - inserting 1000 documents. first: Billy Moores and last: Vera Thomas-Dace -[2018-02-13T08:19:29.580] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:19:29.625] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:19:29.689] [INFO] cheese - batch complete in: 4.185 secs -[2018-02-13T08:19:29.687] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:19:29.738] [INFO] cheese - inserting 1000 documents. first: Nikola Ivanov and last: Wikipedia:WikiProject Spam/LinkReports/january-girl.net -[2018-02-13T08:19:29.843] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:19:30.051] [INFO] cheese - inserting 1000 documents. first: Williams-Yulee v. Florida Bar and last: Template:BotTask/doc -[2018-02-13T08:19:30.137] [INFO] cheese - inserting 1000 documents. first: Acta Mathematicae Applicatae Sinica and last: Sphinx japix -[2018-02-13T08:19:30.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/maxstegi.f2d.de and last: Draihoek -[2018-02-13T08:19:30.256] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:19:30.227] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:19:30.274] [INFO] cheese - inserting 1000 documents. first: Cerro Huachamakari and last: Carl Alexandre -[2018-02-13T08:19:30.274] [INFO] cheese - inserting 1000 documents. first: Muslem and last: Tara brooch -[2018-02-13T08:19:30.349] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:19:30.497] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:19:30.522] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:19:30.540] [INFO] cheese - inserting 1000 documents. first: File:Domino - premier issue.jpg and last: Iwan (disambiguation) -[2018-02-13T08:19:30.629] [INFO] cheese - inserting 1000 documents. first: Darren Toney and last: 1653 in poetry -[2018-02-13T08:19:30.697] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:19:30.724] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:19:31.000] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Laurel McGoff and last: Gadfield Elm Chapel -[2018-02-13T08:19:31.001] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/smo/munlist/velizhsky and last: Category:Saint Kitts and Nevis judges on the courts of Anguilla -[2018-02-13T08:19:31.051] [INFO] cheese - inserting 1000 documents. first: Helen Hayes (politician) and last: Hairyfruit chewstick -[2018-02-13T08:19:31.056] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:19:31.064] [INFO] cheese - inserting 1000 documents. first: Cornipalpus succinctus and last: List of World Cup Ski jumping Team events medalists -[2018-02-13T08:19:31.074] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:19:31.138] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:19:31.157] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:19:31.257] [INFO] cheese - inserting 1000 documents. first: Today's Top 10 Award and last: Meterpreter -[2018-02-13T08:19:31.269] [INFO] cheese - inserting 1000 documents. first: Browsehappy and last: Wellsville, OH -[2018-02-13T08:19:31.341] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:19:31.353] [INFO] cheese - inserting 1000 documents. first: Qasimabad, Punjab and last: Wikipedia:Categories for discussion/Log/2009 June 24 -[2018-02-13T08:19:31.338] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:19:31.457] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:19:31.588] [INFO] cheese - inserting 1000 documents. first: Template:US R&B Chart and last: Catch Me If You Can (The Vampire Diaries) -[2018-02-13T08:19:31.678] [INFO] cheese - inserting 1000 documents. first: Uzzy and last: Judas (Lady Gaga) -[2018-02-13T08:19:31.757] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:19:31.786] [INFO] cheese - inserting 1000 documents. first: Nissakio, Greece and last: Cassia senna -[2018-02-13T08:19:31.845] [INFO] cheese - inserting 1000 documents. first: 1/1st Cheshire Yeomanry and last: Gekijōban Meiji Tokyo Renka: Yumihari no Serenade -[2018-02-13T08:19:31.816] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:19:31.990] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:19:32.008] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:19:32.125] [INFO] cheese - inserting 1000 documents. first: Polar shift and last: Oleshky -[2018-02-13T08:19:32.234] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:19:32.254] [INFO] cheese - inserting 1000 documents. first: Wellsville, PA and last: Buxton, Derbyshire -[2018-02-13T08:19:32.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mimika Air Flight 514 and last: File:All Is Wel cover.jpg -[2018-02-13T08:19:32.351] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:19:32.400] [INFO] cheese - inserting 1000 documents. first: House of Gold & Bones and last: Roan, Iran -[2018-02-13T08:19:32.420] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:19:32.469] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:19:32.505] [INFO] cheese - inserting 1000 documents. first: The Journal of Social, Political, and Economic Studies and last: Roman polanski -[2018-02-13T08:19:32.565] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Arifhasan23 and last: Ciliated fringewort -[2018-02-13T08:19:32.590] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:19:32.634] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:19:32.678] [INFO] cheese - inserting 1000 documents. first: Senna angustifolia and last: Tropomodulin 1 -[2018-02-13T08:19:32.784] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:19:32.802] [INFO] cheese - inserting 1000 documents. first: File:Building 429 - space.jpg and last: Kalarippayattu films -[2018-02-13T08:19:32.823] [INFO] cheese - inserting 1000 documents. first: Thrack, Splack and Sizzle and last: File:ADLINK-logo.png -[2018-02-13T08:19:32.861] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:32.897] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:19:32.970] [INFO] cheese - inserting 1000 documents. first: Peter W. Hutchins and last: Category:NA-importance Italian historical states articles -[2018-02-13T08:19:32.999] [INFO] cheese - inserting 1000 documents. first: Grand Unified Theory and last: History of Africa -[2018-02-13T08:19:33.023] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:19:33.045] [INFO] cheese - inserting 1000 documents. first: San Isidro (Lima, Peru) and last: File:Bubbi Morthens (Nóttin Langa).jpg -[2018-02-13T08:19:33.077] [INFO] cheese - inserting 1000 documents. first: Portal:Horses/Selected breed/28 and last: Naval Surface Warfare Center Port Hueneme Division, Virginia Beach Detachment -[2018-02-13T08:19:33.114] [INFO] cheese - inserting 1000 documents. first: Brian G. Sparkes and last: Pearcey integral -[2018-02-13T08:19:33.141] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:19:33.189] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:19:33.225] [INFO] cheese - batch complete in: 3.536 secs -[2018-02-13T08:19:33.241] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:19:33.270] [INFO] cheese - inserting 1000 documents. first: Dorset Coast and last: Office of laboratory animal welfare -[2018-02-13T08:19:33.369] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:19:33.443] [INFO] cheese - inserting 1000 documents. first: Nazmi Mehmeti and last: Wikipedia:Articles for deletion/DSmeet -[2018-02-13T08:19:33.477] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2013 January 21 and last: Zakabannaya Mosque -[2018-02-13T08:19:33.484] [INFO] cheese - inserting 1000 documents. first: Life Is like a Mountain Railroad and last: How the Grinch Stole Christmas! -[2018-02-13T08:19:33.547] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:19:33.555] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:19:33.598] [INFO] cheese - inserting 1000 documents. first: Elizabeth Armitstead and last: Domenico del Barbiere -[2018-02-13T08:19:33.575] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:19:33.686] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:19:33.774] [INFO] cheese - inserting 1000 documents. first: La Trappe Quadrupel and last: Category:Art in Washington (state) -[2018-02-13T08:19:33.844] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:19:33.865] [INFO] cheese - inserting 1000 documents. first: Dosch and last: Boeing 707-3D3C -[2018-02-13T08:19:33.987] [INFO] cheese - inserting 1000 documents. first: Neumarkt in der oberpfalz and last: New york city mayoralty elections -[2018-02-13T08:19:33.993] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:19:34.010] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:19:34.182] [INFO] cheese - inserting 1000 documents. first: Obvious and last: CSIX (disambiguation) -[2018-02-13T08:19:34.203] [INFO] cheese - inserting 1000 documents. first: Bukit Indah Highway and last: Monterey Sports Car Championships -[2018-02-13T08:19:34.221] [INFO] cheese - inserting 1000 documents. first: Michael Phelan (hurler) and last: Template:Metropolitans of British Columbia -[2018-02-13T08:19:34.223] [INFO] cheese - inserting 1000 documents. first: C.Ss.R. and last: Carboxylic group -[2018-02-13T08:19:34.239] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:19:34.281] [INFO] cheese - inserting 1000 documents. first: Charles Edward Curzon and last: TM-62 Landmine -[2018-02-13T08:19:34.281] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:19:34.299] [INFO] cheese - inserting 1000 documents. first: One night in paris and last: Nick cave i przyjaciele -[2018-02-13T08:19:34.315] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:19:34.370] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:19:34.371] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:19:34.378] [INFO] cheese - batch complete in: 0.368 secs -[2018-02-13T08:19:34.551] [INFO] cheese - inserting 1000 documents. first: Ilyushin II-62M and last: Venelin Khubenov -[2018-02-13T08:19:34.654] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:19:34.819] [INFO] cheese - inserting 1000 documents. first: Nick drake discography and last: Phonating -[2018-02-13T08:19:34.904] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:19:34.962] [INFO] cheese - inserting 1000 documents. first: Ben Ohau and last: PHILM 1 -[2018-02-13T08:19:34.973] [INFO] cheese - inserting 1000 documents. first: First League of the Republika Srpska 2001–02 and last: Auto de fe (disambiguation) -[2018-02-13T08:19:35.040] [INFO] cheese - inserting 1000 documents. first: Elfin forest, San Diego County and last: Route 480 (Maryland) -[2018-02-13T08:19:35.048] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:19:35.073] [INFO] cheese - inserting 1000 documents. first: Northeast Grand Prix and last: Wikipedia:Wikipedia Signpost/2013-01-28/Recent research -[2018-02-13T08:19:35.074] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:19:35.151] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:35.203] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:19:35.300] [INFO] cheese - inserting 1000 documents. first: Category:Pages using infobox tennis biography with tennishofid and last: Lǐ Líng-wèi -[2018-02-13T08:19:35.358] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:19:35.529] [INFO] cheese - inserting 1000 documents. first: Opus Dei: Prominent Members and last: Wikipedia:Articles for deletion/Christopher A. Reh -[2018-02-13T08:19:35.529] [INFO] cheese - inserting 1000 documents. first: John R. G. Hassard and last: 高円寺百景 -[2018-02-13T08:19:35.539] [INFO] cheese - inserting 1000 documents. first: Ed Hovlik and last: 300 Metres Dash -[2018-02-13T08:19:35.613] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:19:35.645] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:19:35.686] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:19:35.739] [INFO] cheese - inserting 1000 documents. first: Holy Cross Catholic Academy and last: John Madsen (American football) -[2018-02-13T08:19:35.855] [INFO] cheese - inserting 1000 documents. first: Lǐ Líng-Wèi and last: 179th Tunnelling Company -[2018-02-13T08:19:35.856] [INFO] cheese - inserting 1000 documents. first: Atlanta Heights and last: Annenberg (surname) -[2018-02-13T08:19:35.875] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:35.973] [INFO] cheese - inserting 1000 documents. first: Michael Jackson's Moonwalker Sega Genesis and last: Wikipedia:Valued picture candidates/Hudson River -[2018-02-13T08:19:35.977] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:19:36.094] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:19:36.173] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:19:36.299] [INFO] cheese - inserting 1000 documents. first: Little Morton Hall and last: Template:Berner Oberland Bahn lines -[2018-02-13T08:19:36.351] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Biography/Peer review/Evanescence and last: Category:Trees of the Plains-Midwest (United States) -[2018-02-13T08:19:36.359] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:19:36.448] [INFO] cheese - inserting 1000 documents. first: Poul Nielson and last: Arcic -[2018-02-13T08:19:36.462] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:19:36.469] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Akhil.s.vijayan and last: Berner's Heath -[2018-02-13T08:19:36.498] [INFO] cheese - inserting 1000 documents. first: History of Oceania and last: JohnnyUnitas -[2018-02-13T08:19:36.558] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:19:36.564] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:19:36.567] [INFO] cheese - inserting 1000 documents. first: Michigan Algorithm Decoder and last: Category:Wikipedia sockpuppets of Outoftuneviolin -[2018-02-13T08:19:36.662] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:19:36.717] [INFO] cheese - inserting 1000 documents. first: File:MBRRACE-UK logo transparent.png and last: Category:Wind power in Maine -[2018-02-13T08:19:36.726] [INFO] cheese - batch complete in: 3.5 secs -[2018-02-13T08:19:36.822] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:19:36.870] [INFO] cheese - inserting 1000 documents. first: Chocolate Cliffs and last: The intimates -[2018-02-13T08:19:36.947] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:19:36.994] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elevator Sweep and last: Syndactyly type 2 -[2018-02-13T08:19:37.063] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:19:37.173] [INFO] cheese - inserting 1000 documents. first: Doping cases in athletics and last: USS Slate (IX-152) -[2018-02-13T08:19:37.180] [INFO] cheese - inserting 1000 documents. first: KLC2 and last: Japanese aircraft carrier Chitōse -[2018-02-13T08:19:37.252] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:19:37.300] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:19:37.462] [INFO] cheese - inserting 1000 documents. first: Adolphe von Menzel and last: The Ape of Naples -[2018-02-13T08:19:37.528] [INFO] cheese - inserting 1000 documents. first: Cubic wisdom and last: ZTE -[2018-02-13T08:19:37.546] [INFO] cheese - inserting 1000 documents. first: Polymedicine and last: File:Hippie 97.5.jpg -[2018-02-13T08:19:37.648] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:19:37.741] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:19:37.802] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T08:19:37.898] [INFO] cheese - inserting 1000 documents. first: Category:Category-Class History of Canada articles and last: Fiestas de Quito -[2018-02-13T08:19:37.968] [INFO] cheese - inserting 1000 documents. first: Beach 67th Street – Arverne By The Sea (IND Rockaway Line) and last: Orrius -[2018-02-13T08:19:38.014] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:19:38.056] [INFO] cheese - inserting 1000 documents. first: Ciresanu and last: Río Anon -[2018-02-13T08:19:38.103] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:19:38.229] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:19:38.263] [INFO] cheese - inserting 1000 documents. first: File:Terazije Theatre logo.jpg and last: Category:Vehicles introduced in 1997 -[2018-02-13T08:19:38.353] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:19:38.460] [INFO] cheese - inserting 1000 documents. first: Sandro Montefusco and last: Category:1189 disestablishments by country -[2018-02-13T08:19:38.513] [INFO] cheese - inserting 1000 documents. first: José Sá and last: Betel-chewing -[2018-02-13T08:19:38.527] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:19:38.549] [INFO] cheese - inserting 1000 documents. first: Worship with Don Moen and last: Category:Aquaria in Portugal -[2018-02-13T08:19:38.594] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:19:38.629] [INFO] cheese - inserting 1000 documents. first: North carolina commissioner of agriculture and last: Nuances of a theme by williams -[2018-02-13T08:19:38.651] [INFO] cheese - inserting 1000 documents. first: Simon Diamond and last: Big and Ugly Rendering Project -[2018-02-13T08:19:38.658] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T08:19:38.657] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:19:38.718] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 7 and last: New Mexico Open -[2018-02-13T08:19:38.750] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:19:38.793] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:19:38.929] [INFO] cheese - inserting 1000 documents. first: James Mackay Langtry and last: Shipping bandages -[2018-02-13T08:19:39.015] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:19:39.047] [INFO] cheese - inserting 1000 documents. first: Category:1189 in India and last: Prehistory of Germany -[2018-02-13T08:19:39.100] [INFO] cheese - inserting 1000 documents. first: Nuaym ibn masud and last: West Ham United F.C. 1980-1981 -[2018-02-13T08:19:39.122] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:19:39.130] [INFO] cheese - inserting 1000 documents. first: Gastón Soffritti and last: Chris Suharlim -[2018-02-13T08:19:39.141] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:19:39.203] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:19:39.243] [INFO] cheese - inserting 1000 documents. first: The Good Thing and last: Wikipedia:Miscellany for deletion/Wikipedia:Deleted articles with freaky titles -[2018-02-13T08:19:39.253] [INFO] cheese - inserting 1000 documents. first: Jackie Blue (album) and last: 546th Fighter Squadron -[2018-02-13T08:19:39.375] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:19:39.398] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:19:39.715] [INFO] cheese - inserting 1000 documents. first: United States House Financial Services Subcommittee on International Monetary Policy and Trade and last: Chiayi Air Base -[2018-02-13T08:19:39.724] [INFO] cheese - inserting 1000 documents. first: West Ham United F.C. 1979-1980 and last: File:L'Amour n'est rien... (video).jpg -[2018-02-13T08:19:39.741] [INFO] cheese - inserting 1000 documents. first: Hellas-Sat and last: Audi RS2 -[2018-02-13T08:19:39.784] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:19:39.821] [INFO] cheese - inserting 1000 documents. first: Govinda IV and last: Caparaó hocicudo -[2018-02-13T08:19:39.853] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:19:39.887] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:19:39.904] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:19:39.999] [INFO] cheese - inserting 1000 documents. first: Yumbe District and last: Pedro Rubiano -[2018-02-13T08:19:40.001] [INFO] cheese - inserting 1000 documents. first: Advance Auto 150 and last: Wikipedia:WikiProject Spam/LinkReports/skmrf.ru -[2018-02-13T08:19:40.090] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:19:40.142] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:19:40.356] [INFO] cheese - inserting 1000 documents. first: David Oelhoffen and last: Ye Olde Trip To Jerusalem -[2018-02-13T08:19:40.425] [INFO] cheese - inserting 1000 documents. first: Denis Selimovič and last: Benjamin Burge -[2018-02-13T08:19:40.507] [INFO] cheese - inserting 1000 documents. first: Template:Nintendo.com and last: Esophageal motility disorders -[2018-02-13T08:19:40.550] [INFO] cheese - inserting 1000 documents. first: Pxt and last: GSP algorithm -[2018-02-13T08:19:40.555] [INFO] cheese - batch complete in: 1.433 secs -[2018-02-13T08:19:40.559] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:19:40.673] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:19:40.740] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:19:40.799] [INFO] cheese - inserting 1000 documents. first: Max Rosenmann and last: Fabric Live 35 -[2018-02-13T08:19:40.825] [INFO] cheese - inserting 1000 documents. first: Johnny Unitas and last: Kesgrave -[2018-02-13T08:19:40.889] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:19:40.982] [INFO] cheese - inserting 1000 documents. first: Márton Joób and last: Jacobi polynomials -[2018-02-13T08:19:41.053] [INFO] cheese - batch complete in: 4.326 secs -[2018-02-13T08:19:41.083] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:19:41.103] [INFO] cheese - inserting 1000 documents. first: China Town and last: John Martin-Harvey -[2018-02-13T08:19:41.154] [INFO] cheese - inserting 1000 documents. first: Category:1999 animal births and last: Tamagawa University -[2018-02-13T08:19:41.155] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Maryland Route 478 and last: Isolation Transformer (Dry) -[2018-02-13T08:19:41.247] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:19:41.262] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:19:41.265] [INFO] cheese - inserting 1000 documents. first: Category:1470 in Guatemala and last: Victory Day (August 14) -[2018-02-13T08:19:41.290] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:19:41.355] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:19:41.422] [INFO] cheese - inserting 1000 documents. first: Bienhua and last: Siege of Shigisan -[2018-02-13T08:19:41.484] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:19:41.605] [INFO] cheese - inserting 1000 documents. first: FabricLive 35 and last: File:Incomplete haida pole.jpg -[2018-02-13T08:19:41.728] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:19:41.806] [INFO] cheese - inserting 1000 documents. first: Futami District, Hokkaidō and last: File:Amharic Braille chart.jpg -[2018-02-13T08:19:41.947] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:19:42.019] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2007 December 18 and last: Mikolaj Abramowicz -[2018-02-13T08:19:42.175] [INFO] cheese - inserting 1000 documents. first: Victory Day (August 14th) and last: Isiah Lord Thomas the Third -[2018-02-13T08:19:42.274] [INFO] cheese - inserting 1000 documents. first: NetAcquire and last: Wellesley Hospital -[2018-02-13T08:19:42.273] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:19:42.395] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:19:42.480] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:19:42.487] [INFO] cheese - inserting 1000 documents. first: 30 Foot Fall and last: Trife Diesel -[2018-02-13T08:19:42.599] [INFO] cheese - inserting 1000 documents. first: When You Dish Upon a Star and last: Great Britain at the 1988 Summer Olympics -[2018-02-13T08:19:42.638] [INFO] cheese - batch complete in: 1.553 secs -[2018-02-13T08:19:42.755] [INFO] cheese - batch complete in: 1.493 secs -[2018-02-13T08:19:42.785] [INFO] cheese - inserting 1000 documents. first: Friedrich Nicolaus Brauns and last: Bulu-Bene language -[2018-02-13T08:19:42.892] [INFO] cheese - inserting 1000 documents. first: Gmina Świerzawa and last: San lorenzo in damaso -[2018-02-13T08:19:42.893] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:19:42.949] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:19:43.090] [INFO] cheese - inserting 1000 documents. first: Template:Articles with dead external links progress and last: Korakohorion, Greece -[2018-02-13T08:19:43.132] [INFO] cheese - inserting 1000 documents. first: 2015 Sprint All-Star Race and last: (Norman) John Balfour Blakiston -[2018-02-13T08:19:43.209] [INFO] cheese - batch complete in: 1.478 secs -[2018-02-13T08:19:43.218] [INFO] cheese - inserting 1000 documents. first: Category:Time in the United Kingdom and last: Road speed limit enforcement in Australia -[2018-02-13T08:19:43.224] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:19:43.327] [INFO] cheese - inserting 1000 documents. first: San lorenzo in lucina and last: Jim Rogan -[2018-02-13T08:19:43.332] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:19:43.343] [INFO] cheese - inserting 1000 documents. first: 1911 U.S. National Championships – Men's Singles and last: Kharand -[2018-02-13T08:19:43.375] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:19:43.470] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:19:43.670] [INFO] cheese - inserting 1000 documents. first: Minty Peterson and last: File:LeagueLogo80pc.jpg -[2018-02-13T08:19:43.771] [INFO] cheese - batch complete in: 1.133 secs -[2018-02-13T08:19:43.873] [INFO] cheese - inserting 1000 documents. first: Category:Portsmouth Truckers players and last: Template:1982 Hurling All Stars -[2018-02-13T08:19:43.884] [INFO] cheese - inserting 1000 documents. first: Sainte-Marie-Madeleine, Quebec and last: 1988 in art -[2018-02-13T08:19:43.926] [INFO] cheese - inserting 1000 documents. first: La Troienne and last: Wikipedia:Articles for deletion/My Gothic Heart -[2018-02-13T08:19:43.990] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:19:44.008] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:19:44.073] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:19:44.144] [INFO] cheese - inserting 1000 documents. first: St Ives Roosters and last: The Gannett Company -[2018-02-13T08:19:44.147] [INFO] cheese - inserting 1000 documents. first: Aparamán Tepui and last: Category:Articles sourced only by IMDb from February 2013 -[2018-02-13T08:19:44.222] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:19:44.214] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:19:44.405] [INFO] cheese - inserting 1000 documents. first: WestJet Destinations and last: Cuisine of Belize -[2018-02-13T08:19:44.412] [INFO] cheese - inserting 1000 documents. first: Kurt Waldheim and last: Laurence of Canterbury -[2018-02-13T08:19:44.472] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:19:44.507] [INFO] cheese - inserting 1000 documents. first: File:Final Fantasy XIII battle.png and last: Marat Galimov -[2018-02-13T08:19:44.563] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:19:44.608] [INFO] cheese - batch complete in: 3.555 secs -[2018-02-13T08:19:44.708] [INFO] cheese - inserting 1000 documents. first: Template:Italy-company-stub and last: Blood Arm -[2018-02-13T08:19:44.709] [INFO] cheese - inserting 1000 documents. first: Gannett Co., Inc. and last: Papa John's.com Bowl -[2018-02-13T08:19:44.802] [INFO] cheese - inserting 1000 documents. first: Category:People extradited from Yugoslavia and last: Scopula vicina (Gaede, 1917) -[2018-02-13T08:19:44.959] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:19:44.982] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:19:45.012] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:19:45.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Faqmagazine and last: Elvis -[2018-02-13T08:19:45.307] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:19:45.450] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Aliceelisabethmay/JBA Consulting and last: WFMT (FM) -[2018-02-13T08:19:45.469] [INFO] cheese - inserting 1000 documents. first: Icelandic independence movement and last: Outline of Washington territorial evolution -[2018-02-13T08:19:45.625] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:19:45.638] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:19:45.789] [INFO] cheese - inserting 1000 documents. first: Siege of Montreal and last: Seaboard Coastline Railroad Passenger Station/version 2 -[2018-02-13T08:19:45.855] [INFO] cheese - inserting 1000 documents. first: Xiaqiong Town and last: Antillean cave rail -[2018-02-13T08:19:45.873] [INFO] cheese - inserting 1000 documents. first: Mammolshain and last: Erkes-e Pa'in -[2018-02-13T08:19:45.910] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:19:45.978] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:19:46.014] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:19:46.234] [INFO] cheese - inserting 1000 documents. first: Macroevolutionary Theory and last: Eyebrow modification -[2018-02-13T08:19:46.412] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:19:46.522] [INFO] cheese - inserting 1000 documents. first: Category:1996 disestablishments in the Comoros and last: Wikipedia:WikiProject Spam/LinkReports/web2.utc.edu -[2018-02-13T08:19:46.647] [INFO] cheese - batch complete in: 3.423 secs -[2018-02-13T08:19:46.676] [INFO] cheese - inserting 1000 documents. first: General Motors Agila and last: Classical guitar repertoire -[2018-02-13T08:19:46.742] [INFO] cheese - inserting 1000 documents. first: Cape longclaw and last: Retaruke River -[2018-02-13T08:19:46.779] [INFO] cheese - inserting 1000 documents. first: House Committee on Financial Services and last: Sarbesti -[2018-02-13T08:19:46.781] [INFO] cheese - inserting 1000 documents. first: Arges, Iran (disambiguation) and last: Tryptophan N-hydroxylase -[2018-02-13T08:19:46.789] [INFO] cheese - inserting 1000 documents. first: George Kojac and last: Template:Atago class destroyer -[2018-02-13T08:19:46.839] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:19:46.922] [INFO] cheese - batch complete in: 1.615 secs -[2018-02-13T08:19:46.959] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:19:46.896] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:19:46.973] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:19:47.119] [INFO] cheese - inserting 1000 documents. first: Archstone-Smith Trust and last: Wikipedia:Articles for deletion/Middleverse -[2018-02-13T08:19:47.207] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:19:47.389] [INFO] cheese - inserting 1000 documents. first: Kalaja and last: Manyflower Geranium -[2018-02-13T08:19:47.586] [INFO] cheese - inserting 1000 documents. first: Trần Vũ and last: Kola class frigate -[2018-02-13T08:19:47.661] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:19:47.742] [INFO] cheese - inserting 1000 documents. first: Criticism of NASCAR and last: Canoga parque X3 -[2018-02-13T08:19:47.787] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:19:47.982] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:19:48.047] [INFO] cheese - inserting 1000 documents. first: Template:R from disambiguation and last: The Witness (1969 film) -[2018-02-13T08:19:48.171] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:19:48.263] [INFO] cheese - inserting 1000 documents. first: Sylvan Lake (Alberta) and last: Robb Sapp -[2018-02-13T08:19:48.330] [INFO] cheese - inserting 1000 documents. first: Hillury Duff and last: DPDT -[2018-02-13T08:19:48.350] [INFO] cheese - inserting 1000 documents. first: Luis Santos (disambiguation) and last: Gansky -[2018-02-13T08:19:48.369] [INFO] cheese - inserting 1000 documents. first: Haleakalā Geranium and last: Atchison County Raceway -[2018-02-13T08:19:48.442] [INFO] cheese - batch complete in: 1.546 secs -[2018-02-13T08:19:48.460] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:19:48.496] [INFO] cheese - batch complete in: 1.574 secs -[2018-02-13T08:19:48.523] [INFO] cheese - inserting 1000 documents. first: Bruce Coulter and last: Jack Off Jill -[2018-02-13T08:19:48.537] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:19:48.701] [INFO] cheese - batch complete in: 1.862 secs -[2018-02-13T08:19:48.812] [INFO] cheese - inserting 1000 documents. first: Little Big Inch and last: Portal:Gibraltar/Quotes/7 -[2018-02-13T08:19:48.932] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:19:49.062] [INFO] cheese - inserting 1000 documents. first: Britt Township, Hancock County, Iowa and last: Pierluigi Da Palestrina -[2018-02-13T08:19:49.105] [INFO] cheese - inserting 1000 documents. first: Pak Super League and last: Fucket -[2018-02-13T08:19:49.219] [INFO] cheese - inserting 1000 documents. first: Vrhobreznica Chronicle and last: Wikipedia:Articles for deletion/Prakriti Shrestha -[2018-02-13T08:19:49.220] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:19:49.304] [INFO] cheese - inserting 1000 documents. first: La Banda Sinaloense and last: Mehmed III -[2018-02-13T08:19:49.307] [INFO] cheese - inserting 1000 documents. first: Maybach Taniguchi and last: Template:Knott's Berry Farm -[2018-02-13T08:19:49.314] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:19:49.364] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:19:49.438] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:19:49.679] [INFO] cheese - batch complete in: 5.071 secs -[2018-02-13T08:19:49.700] [INFO] cheese - inserting 1000 documents. first: File:Preston Reed - Pointing Up.jpg and last: Portal:Current events/2007 December 24 -[2018-02-13T08:19:49.772] [INFO] cheese - inserting 1000 documents. first: PL-4 and last: You Forgot It In People -[2018-02-13T08:19:49.816] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:19:49.944] [INFO] cheese - batch complete in: 1.448 secs -[2018-02-13T08:19:49.963] [INFO] cheese - inserting 1000 documents. first: Page County Courthouse (Clarinda, Iowa) and last: Hungarian name days -[2018-02-13T08:19:49.966] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Chaetostoma microps and last: Category:Chinese female badminton players -[2018-02-13T08:19:50.031] [INFO] cheese - inserting 1000 documents. first: Suicides (short story) and last: Category:Seals of Philippine provinces -[2018-02-13T08:19:50.076] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:19:50.093] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:19:50.135] [INFO] cheese - inserting 1000 documents. first: Jorge Sapag and last: Scenes from an italian restaurant -[2018-02-13T08:19:50.136] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:19:50.179] [INFO] cheese - inserting 1000 documents. first: Poly(A) polymerase and last: Route 134 (Virginia pre-1933) -[2018-02-13T08:19:50.180] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T08:19:50.306] [INFO] cheese - inserting 1000 documents. first: Crunch (candy) and last: Skewer (chess) -[2018-02-13T08:19:50.419] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:19:50.449] [INFO] cheese - batch complete in: 1.748 secs -[2018-02-13T08:19:50.743] [INFO] cheese - inserting 1000 documents. first: Tale of the mummy and last: Taxonomy of the cactaceae -[2018-02-13T08:19:50.825] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:19:50.926] [INFO] cheese - inserting 1000 documents. first: Bahá'í Faith in Europe and last: Category:2000 in Odisha -[2018-02-13T08:19:50.938] [INFO] cheese - inserting 1000 documents. first: West Virginia Highway 36 and last: Category:Songs written by Pharrell Williams -[2018-02-13T08:19:50.969] [INFO] cheese - inserting 1000 documents. first: Obultronius sabinus and last: Jump (Kylie Minogue song) -[2018-02-13T08:19:50.989] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:19:51.024] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:19:51.137] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:19:51.158] [INFO] cheese - inserting 1000 documents. first: Scouting in greater manchester west and last: Seat of the coptic orthodox pope of alexandria -[2018-02-13T08:19:51.208] [INFO] cheese - inserting 1000 documents. first: Love Among the Ruins (album) and last: Lyndon Hooper -[2018-02-13T08:19:51.190] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:19:51.354] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T08:19:51.441] [INFO] cheese - inserting 1000 documents. first: Temple of amenhotep iv and last: Sejm of the republic of poland -[2018-02-13T08:19:51.444] [INFO] cheese - inserting 1000 documents. first: State Route 74 (Virginia 1940) and last: Bishop of Konstanz -[2018-02-13T08:19:51.475] [INFO] cheese - batch complete in: 0.284 secs -[2018-02-13T08:19:51.565] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:19:51.736] [INFO] cheese - inserting 1000 documents. first: Category:2001 in Odisha and last: 𝄵 -[2018-02-13T08:19:51.756] [INFO] cheese - inserting 1000 documents. first: Skewer (Chess) and last: Category:People from Woodburn, Kentucky -[2018-02-13T08:19:51.891] [INFO] cheese - inserting 1000 documents. first: Category:Sporting goods manufacturers of Austria and last: Xonacatlán -[2018-02-13T08:19:51.891] [INFO] cheese - batch complete in: 1.44 secs -[2018-02-13T08:19:51.942] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:19:52.021] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:19:52.105] [INFO] cheese - inserting 1000 documents. first: Temple Buell College and last: Brickelia desertorum -[2018-02-13T08:19:52.123] [INFO] cheese - inserting 1000 documents. first: Texas tech university health sciences center school of pharmacy abilene campus and last: Dedham, Mass -[2018-02-13T08:19:52.190] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:19:52.238] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:19:52.455] [INFO] cheese - inserting 1000 documents. first: Solihull Metropolitan Borough Council election, 1995 and last: Category:Songs written by Lisa Greene -[2018-02-13T08:19:52.468] [INFO] cheese - inserting 1000 documents. first: Toni Söderholm and last: List of newspapers in Sudan -[2018-02-13T08:19:52.472] [INFO] cheese - inserting 1000 documents. first: Tobias Vincent "Tobey" Maguire and last: Jon DaCosta -[2018-02-13T08:19:52.503] [INFO] cheese - inserting 1000 documents. first: Longster trail and last: Frog Museum (Münchenstein) -[2018-02-13T08:19:52.540] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:19:52.537] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:19:52.574] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:19:52.580] [INFO] cheese - inserting 1000 documents. first: Motion Picture Alliance for the Preservation of American Ideals and last: Apple Backup -[2018-02-13T08:19:52.585] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:19:52.642] [INFO] cheese - inserting 1000 documents. first: Agoseris hirsuta and last: Franseria cuneifolia -[2018-02-13T08:19:52.675] [INFO] cheese - inserting 1000 documents. first: Deerfield, Ma and last: Nantucket, Mass -[2018-02-13T08:19:52.701] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:19:52.708] [INFO] cheese - batch complete in: 1.353 secs -[2018-02-13T08:19:52.818] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:19:53.073] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Claude Le Péron and last: Wikipedia:Miscellany for deletion/User:Ferry Lane Estate Wildlife/sandbox -[2018-02-13T08:19:53.075] [INFO] cheese - inserting 1000 documents. first: Edge list and last: Speed Kelly -[2018-02-13T08:19:53.097] [INFO] cheese - inserting 1000 documents. first: Vladicaris and last: Category:Michigan City White Caps players -[2018-02-13T08:19:53.122] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:19:53.120] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:19:53.199] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:19:53.242] [INFO] cheese - inserting 1000 documents. first: San Felipe (shipwreck) and last: Orny Adams -[2018-02-13T08:19:53.311] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:19:53.370] [INFO] cheese - inserting 1000 documents. first: 1965 Men's British Open Squash Championship and last: Category:Imperial Russian schoolteachers -[2018-02-13T08:19:53.507] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:19:53.542] [INFO] cheese - inserting 1000 documents. first: Natick, Ma and last: DPP7 -[2018-02-13T08:19:53.546] [INFO] cheese - inserting 1000 documents. first: Mustafa I and last: List of national anthems -[2018-02-13T08:19:53.604] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Neopaganism/Prospectus and last: Category:Slovak people of Bosnia and Herzegovina descent -[2018-02-13T08:19:53.696] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:19:53.705] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:19:53.809] [INFO] cheese - inserting 1000 documents. first: Parker High School (Illinois) and last: File:Tamil Nadu Civil Supplies Corporation (emblem).gif -[2018-02-13T08:19:53.830] [INFO] cheese - batch complete in: 4.151 secs -[2018-02-13T08:19:53.859] [INFO] cheese - inserting 1000 documents. first: File:Spartina alterniflora.jpg and last: Primera Divisió 2007-08 -[2018-02-13T08:19:53.966] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:54.006] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:19:54.123] [INFO] cheese - inserting 1000 documents. first: Baseball telecasts technology and last: File:Strandstrip.jpg -[2018-02-13T08:19:54.187] [INFO] cheese - inserting 1000 documents. first: Deerfield Beach Arboretum and last: Michael Morbius -[2018-02-13T08:19:54.228] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:19:54.319] [INFO] cheese - inserting 1000 documents. first: AaronCarter and last: Lovers Are Never Losers -[2018-02-13T08:19:54.425] [INFO] cheese - batch complete in: 1.704 secs -[2018-02-13T08:19:54.462] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:19:54.583] [INFO] cheese - inserting 1000 documents. first: File:Caseyology.jpg and last: File:L'Excelsior, Au Salon d'Automne, Les Indépendants, October 1912, Metzinger, Gleizes, Kupka reproduced.jpg -[2018-02-13T08:19:54.632] [INFO] cheese - inserting 1000 documents. first: Template:STV Election box begin2 and last: Buckingham-Pi theorem -[2018-02-13T08:19:54.704] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:19:54.731] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:54.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Textile Arts/References and last: PPP1R10 -[2018-02-13T08:19:54.791] [INFO] cheese - inserting 1000 documents. first: Category:South Korean idols and last: Category:Hertfordshire subdivision navigational boxes -[2018-02-13T08:19:54.885] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:19:54.935] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:19:55.091] [INFO] cheese - inserting 1000 documents. first: NACAC U23 Championships and last: The Vast Spoils of America (From the Badlands through the Ocean) -[2018-02-13T08:19:55.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adetola Faminu and last: Bishop of Hereford -[2018-02-13T08:19:55.135] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:19:55.156] [INFO] cheese - inserting 1000 documents. first: Afzal Ahmed Khan and last: Highlands long-finned eel -[2018-02-13T08:19:55.203] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:19:55.237] [INFO] cheese - inserting 1000 documents. first: Category:Peoples of Anglo-Saxon England and last: Frédéric Joly -[2018-02-13T08:19:55.243] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:19:55.302] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:19:55.372] [INFO] cheese - inserting 1000 documents. first: The Mighty Rio Grande and last: Albert Hawkins -[2018-02-13T08:19:55.516] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:19:55.608] [INFO] cheese - inserting 1000 documents. first: PRCC (gene) and last: Wellesley, Ma -[2018-02-13T08:19:55.691] [INFO] cheese - inserting 1000 documents. first: Anguilla interioris and last: List of supermarket chains in the Republic of the Congo -[2018-02-13T08:19:55.699] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:19:55.716] [INFO] cheese - inserting 1000 documents. first: The Last Lie I Told and last: Warwick War Memorial -[2018-02-13T08:19:55.797] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:19:55.919] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:19:55.965] [INFO] cheese - inserting 1000 documents. first: Category:Government responses to UFOs and last: Tatiana Guderzo -[2018-02-13T08:19:56.043] [INFO] cheese - inserting 1000 documents. first: Carbondale Historical Society & Museum and last: Template:User in Guinea -[2018-02-13T08:19:56.055] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:19:56.082] [INFO] cheese - inserting 1000 documents. first: Category:Anglican congregations established in the 17th century and last: Template:R from character -[2018-02-13T08:19:56.122] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:19:56.197] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:19:56.205] [INFO] cheese - inserting 1000 documents. first: Armaan (1966 film) and last: Mike Newdow -[2018-02-13T08:19:56.287] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from New Jersey and last: Mordellina gracilis -[2018-02-13T08:19:56.289] [INFO] cheese - batch complete in: 1.864 secs -[2018-02-13T08:19:56.339] [INFO] cheese - inserting 1000 documents. first: WWI truce and last: Dos Palos, Ca -[2018-02-13T08:19:56.374] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:19:56.451] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:19:56.480] [INFO] cheese - inserting 1000 documents. first: Saturns Pattern - Single and last: Grove Park, Charlestown -[2018-02-13T08:19:56.610] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:19:56.654] [INFO] cheese - inserting 1000 documents. first: Aronia arbutifolia and last: Template:Retailing-subscription -[2018-02-13T08:19:56.760] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:19:56.786] [INFO] cheese - inserting 1000 documents. first: Maji Desu ka Ska! and last: Aetheliparis rossi -[2018-02-13T08:19:56.940] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:19:56.956] [INFO] cheese - inserting 1000 documents. first: Zythos modesta and last: Category:My Bloody Valentine (band) EPs -[2018-02-13T08:19:57.029] [INFO] cheese - inserting 1000 documents. first: File:Logo stm.jpg and last: File:Logo-rw-blue.jpg -[2018-02-13T08:19:57.097] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:19:57.207] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:19:57.242] [INFO] cheese - inserting 1000 documents. first: Flammable ice and last: Portal:Film/Selected article/59 -[2018-02-13T08:19:57.350] [INFO] cheese - inserting 1000 documents. first: Nikola Tesla and last: Postmaster General -[2018-02-13T08:19:57.324] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:19:57.501] [INFO] cheese - inserting 1000 documents. first: Grove Park (Charlestown) and last: 2008 in Shark Fights -[2018-02-13T08:19:57.555] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:19:57.618] [INFO] cheese - inserting 1000 documents. first: A28 motorway (Portugal) and last: Route 40 -[2018-02-13T08:19:57.662] [INFO] cheese - inserting 1000 documents. first: May Parker and last: Symphony of Psalms -[2018-02-13T08:19:57.678] [INFO] cheese - batch complete in: 3.848 secs -[2018-02-13T08:19:57.718] [INFO] cheese - inserting 1000 documents. first: Never Say Die (play) and last: Nuclear threat -[2018-02-13T08:19:57.751] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:19:57.797] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:19:57.891] [INFO] cheese - batch complete in: 1.602 secs -[2018-02-13T08:19:57.942] [INFO] cheese - inserting 1000 documents. first: Category:People from Alleghany County, North Carolina and last: Steyning Methodist Church -[2018-02-13T08:19:57.970] [INFO] cheese - inserting 1000 documents. first: Sciences, The and last: Oleksandr Pryzetko -[2018-02-13T08:19:58.067] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:19:58.072] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:19:58.306] [INFO] cheese - inserting 1000 documents. first: Portal:Film/Selected article/5 and last: Canadian football field -[2018-02-13T08:19:58.322] [INFO] cheese - inserting 1000 documents. first: Bert Nienhuis and last: File:Dragon Mountain (boxed set).jpg -[2018-02-13T08:19:58.359] [INFO] cheese - inserting 1000 documents. first: Glipa isolata and last: Evangelical Lutheran Church in Romania -[2018-02-13T08:19:58.393] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:19:58.451] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:19:58.509] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:19:58.675] [INFO] cheese - inserting 1000 documents. first: Palauans and last: Malayan Colleges -[2018-02-13T08:19:58.689] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian engineers and last: Maxatawny Township, Pennsylvania -[2018-02-13T08:19:58.758] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T08:19:58.759] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:19:58.801] [INFO] cheese - inserting 1000 documents. first: Mayin and last: Finalizer -[2018-02-13T08:19:58.872] [INFO] cheese - inserting 1000 documents. first: List of universities in Fiji and last: Category:History books about Ukraine -[2018-02-13T08:19:58.878] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:19:58.990] [INFO] cheese - inserting 1000 documents. first: Index of physics articles: Z and last: Spergularia bocconi -[2018-02-13T08:19:59.009] [INFO] cheese - inserting 1000 documents. first: Battle of Delft and last: Compound of twelve pentagonal antiprisms with rotational freedom -[2018-02-13T08:19:59.017] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:19:59.112] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:19:59.187] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:19:59.274] [INFO] cheese - inserting 1000 documents. first: Slicker hat and last: Chotyně -[2018-02-13T08:19:59.360] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:19:59.403] [INFO] cheese - inserting 1000 documents. first: Muhlenberg Township, Pennsylvania and last: Radio Windy -[2018-02-13T08:19:59.540] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:19:59.631] [INFO] cheese - inserting 1000 documents. first: Q'umir Qucha (Bolivia) and last: EC 2.1.1.4 -[2018-02-13T08:19:59.679] [INFO] cheese - inserting 1000 documents. first: Lan Yin Mandarin and last: Portal:United States/Selected article/25 -[2018-02-13T08:19:59.699] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:19:59.810] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:19:59.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tarek El Moussa and last: Reduced-Price Lunch Program -[2018-02-13T08:19:59.984] [INFO] cheese - inserting 1000 documents. first: Template:Washington County, Kentucky and last: Wikipedia:Image copyright help desk/Archive 2 -[2018-02-13T08:20:00.049] [INFO] cheese - inserting 1000 documents. first: Dime Box, Texas and last: Hallam Sinfonia -[2018-02-13T08:20:00.055] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:20:00.091] [INFO] cheese - inserting 1000 documents. first: Millgram experiment and last: USS Bell (DD-587) -[2018-02-13T08:20:00.091] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:00.193] [INFO] cheese - batch complete in: 1.435 secs -[2018-02-13T08:20:00.251] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:20:00.281] [INFO] cheese - inserting 1000 documents. first: Miami, California and last: Zactane -[2018-02-13T08:20:00.411] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:20:00.539] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected article/26 and last: Portal:United States/Selected culture biography/24 -[2018-02-13T08:20:00.624] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:20:00.638] [INFO] cheese - inserting 1000 documents. first: File:DC3 nut traces.jpg and last: Hansa - The Movie -[2018-02-13T08:20:00.700] [INFO] cheese - inserting 1000 documents. first: Roy Firebrace and last: File:Tonight at 830 promo.jpg -[2018-02-13T08:20:00.782] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:20:00.789] [INFO] cheese - inserting 1000 documents. first: Free Lunch Program and last: Justin Jose -[2018-02-13T08:20:00.845] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:20:00.901] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:20:00.951] [INFO] cheese - inserting 1000 documents. first: Schawartzenegger and last: The Jaffna Kingdom -[2018-02-13T08:20:00.977] [INFO] cheese - inserting 1000 documents. first: 2009 Ordina Open – Men's Singles and last: Antonio Sánchez de la Calle -[2018-02-13T08:20:01.070] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:20:01.087] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:20:01.174] [INFO] cheese - inserting 1000 documents. first: Paul Cohen and last: Pope Valentine -[2018-02-13T08:20:01.202] [INFO] cheese - inserting 1000 documents. first: Sebesteny Cube and last: North Antrim (constituency) -[2018-02-13T08:20:01.230] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected culture biography/25 and last: Wikipedia:Requests for feedback/2011 February 19 -[2018-02-13T08:20:01.322] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:20:01.346] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:20:01.480] [INFO] cheese - inserting 1000 documents. first: Bukhan sanseong and last: M.N. Reddi -[2018-02-13T08:20:01.502] [INFO] cheese - batch complete in: 3.824 secs -[2018-02-13T08:20:01.527] [INFO] cheese - inserting 1000 documents. first: Isabel Gemio and last: A J A Symons -[2018-02-13T08:20:01.723] [INFO] cheese - inserting 1000 documents. first: Baton Rouge General Medical Center - Bluebonnet Campus and last: Haggui -[2018-02-13T08:20:01.722] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:20:01.757] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:20:01.969] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:20:02.167] [INFO] cheese - inserting 1000 documents. first: Category:Lodi Padres players and last: William VI of Angoulême -[2018-02-13T08:20:02.255] [INFO] cheese - inserting 1000 documents. first: Slender weasel shark and last: Jérémy Morel -[2018-02-13T08:20:02.276] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:20:02.391] [INFO] cheese - batch complete in: 1.321 secs -[2018-02-13T08:20:02.406] [INFO] cheese - inserting 1000 documents. first: A J Allmendinger and last: A. S. Roma statistics and records -[2018-02-13T08:20:02.415] [INFO] cheese - inserting 1000 documents. first: Portal:United States/Selected biography/33 and last: Cernusco -[2018-02-13T08:20:02.456] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:20:02.569] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:20:02.791] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Ewald Gerhard Seeliger and last: File:CartesianLinguistics.jpg -[2018-02-13T08:20:02.806] [INFO] cheese - inserting 1000 documents. first: Mark Kolterman and last: File:Headwaters Incorporated logo.png -[2018-02-13T08:20:02.985] [INFO] cheese - inserting 1000 documents. first: Included by reference and last: UD Aretxabaleta -[2018-02-13T08:20:03.015] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:20:03.141] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:20:03.170] [INFO] cheese - inserting 1000 documents. first: A. S. Sestese Calcio and last: AS Hitchcock -[2018-02-13T08:20:03.260] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:20:03.304] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:20:03.551] [INFO] cheese - inserting 1000 documents. first: Rotgut the Zombie and last: Belchalwell -[2018-02-13T08:20:03.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:PROMOSINGLE and last: Salman Gambarov -[2018-02-13T08:20:03.614] [INFO] cheese - inserting 1000 documents. first: Category:Bishops of Sheffield and last: UFN 3 -[2018-02-13T08:20:03.724] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:20:03.772] [INFO] cheese - batch complete in: 2.426 secs -[2018-02-13T08:20:03.843] [INFO] cheese - batch complete in: 1.452 secs -[2018-02-13T08:20:03.858] [INFO] cheese - inserting 1000 documents. first: Mondo Mini Shows and last: Category:Chief Justices of Tonga -[2018-02-13T08:20:03.944] [INFO] cheese - inserting 1000 documents. first: Sega Sound Team Band and last: Annie MG Schmidt -[2018-02-13T08:20:04.126] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:20:04.126] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T08:20:04.182] [INFO] cheese - inserting 1000 documents. first: Subcostales muscle and last: Sopot, Lovech Province -[2018-02-13T08:20:04.237] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2015-05-27/In the media and last: Henderson v. United States (disambiguation) -[2018-02-13T08:20:04.331] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:20:04.346] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:20:04.611] [INFO] cheese - inserting 1000 documents. first: TXNDC13 and last: Barrackpore II -[2018-02-13T08:20:04.617] [INFO] cheese - inserting 1000 documents. first: Alfred Gottschalk (biochemist) and last: Ruefrex -[2018-02-13T08:20:04.626] [INFO] cheese - inserting 1000 documents. first: File:Portableatheistcover.jpg and last: Marini, Luigi Gaetano -[2018-02-13T08:20:04.733] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:20:04.762] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:20:04.764] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:20:04.801] [INFO] cheese - inserting 1000 documents. first: Early February 2013 North American blizzard and last: Samuel Way Building -[2018-02-13T08:20:04.836] [INFO] cheese - inserting 1000 documents. first: Hill 60 (disambiguation) and last: The Adventures of Esplandián -[2018-02-13T08:20:04.858] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:20:04.898] [INFO] cheese - inserting 1000 documents. first: Kenule "Ken" Beeson Saro-Wiwa and last: Campoa -[2018-02-13T08:20:04.940] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:20:05.071] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:20:05.155] [INFO] cheese - inserting 1000 documents. first: B. C. 's Quest for Tires and last: Vulliens, Switzerland -[2018-02-13T08:20:05.216] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:20:05.364] [INFO] cheese - inserting 1000 documents. first: William Courtney and last: St. James Court Art Show -[2018-02-13T08:20:05.386] [INFO] cheese - inserting 1000 documents. first: Seddik Berradja and last: Source of the Amazon river -[2018-02-13T08:20:05.412] [INFO] cheese - inserting 1000 documents. first: Conker live and reloaded and last: James Glaser -[2018-02-13T08:20:05.508] [INFO] cheese - inserting 1000 documents. first: Sarubobo (wrestler) and last: S-adenosyl-L-methionine:5-hydroxyfuranocoumarin 5-O-methyltransferase -[2018-02-13T08:20:05.543] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:20:05.561] [INFO] cheese - batch complete in: 1.789 secs -[2018-02-13T08:20:05.576] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:20:05.669] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:20:05.694] [INFO] cheese - inserting 1000 documents. first: Aulacostroma and last: Viktor Haus -[2018-02-13T08:20:05.769] [INFO] cheese - inserting 1000 documents. first: Assassination of Gaidar Gadzhiyev and last: The Rise and Fall of the City of Mahagonny -[2018-02-13T08:20:05.784] [INFO] cheese - inserting 1000 documents. first: Constant Camber 3M and last: Wikipedia:WikiProject Spam/Local/kifoth.de -[2018-02-13T08:20:05.798] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:05.900] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:20:05.971] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:20:06.060] [INFO] cheese - inserting 1000 documents. first: Pope Victor I and last: Range voting -[2018-02-13T08:20:06.199] [INFO] cheese - inserting 1000 documents. first: Front Row Motorsports with Yates Racing and last: Ragnvald the Wise -[2018-02-13T08:20:06.294] [INFO] cheese - inserting 1000 documents. first: Halloween haunt and last: Kitja language -[2018-02-13T08:20:06.308] [INFO] cheese - batch complete in: 4.806 secs -[2018-02-13T08:20:06.312] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:20:06.369] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:20:06.421] [INFO] cheese - inserting 1000 documents. first: José Saúl Wermus and last: William H. Smith (Alamo defender) -[2018-02-13T08:20:06.436] [INFO] cheese - inserting 1000 documents. first: GNSS positioning and last: File:Karhu.png -[2018-02-13T08:20:06.531] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:20:06.571] [INFO] cheese - inserting 1000 documents. first: Bola de Nieve and last: Langi Kal Kal -[2018-02-13T08:20:06.583] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:20:06.605] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Jason Bonham and last: Bishop F D Washington -[2018-02-13T08:20:06.640] [INFO] cheese - inserting 1000 documents. first: Hedong Township, Jinchuan County and last: Kitaoka Akiyoshi -[2018-02-13T08:20:06.679] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:20:06.689] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:20:06.796] [INFO] cheese - batch complete in: 1.127 secs -[2018-02-13T08:20:06.991] [INFO] cheese - inserting 1000 documents. first: Shawnee Territory and last: Racism in Uganda -[2018-02-13T08:20:07.053] [INFO] cheese - inserting 1000 documents. first: Meganoton joachimi and last: Book:Slayer discography -[2018-02-13T08:20:07.082] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:20:07.226] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:20:07.299] [INFO] cheese - inserting 1000 documents. first: Richard Starr (Alamo defender) and last: Kehar -[2018-02-13T08:20:07.303] [INFO] cheese - inserting 1000 documents. first: Kidja language and last: Galena High School (Nevada) -[2018-02-13T08:20:07.412] [INFO] cheese - inserting 1000 documents. first: Bishop FD Washington and last: Gmina Piszczac -[2018-02-13T08:20:07.447] [INFO] cheese - inserting 1000 documents. first: Gustavs (name) and last: Category:Films directed by Max W. Kimmich -[2018-02-13T08:20:07.458] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:20:07.519] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:20:07.590] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:20:07.621] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:07.860] [INFO] cheese - inserting 1000 documents. first: File:Wenceslao Roces Suárez.jpg and last: Eupterote petola -[2018-02-13T08:20:07.955] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:20:08.071] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/BabbaQ/Archive and last: Nadunissi Naaygal -[2018-02-13T08:20:08.178] [INFO] cheese - inserting 1000 documents. first: Consolidated Rail and last: Mayandi Kudumbathar -[2018-02-13T08:20:08.198] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:20:08.210] [INFO] cheese - inserting 1000 documents. first: Naomi C. Earp and last: The Urban Academy (England) -[2018-02-13T08:20:08.267] [INFO] cheese - inserting 1000 documents. first: New Jersey Hall of Fame and last: Reusens, Edmond -[2018-02-13T08:20:08.269] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:08.338] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:20:08.387] [INFO] cheese - inserting 1000 documents. first: VC La Pomme Marseille and last: Apogon parvulus -[2018-02-13T08:20:08.400] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:20:08.479] [INFO] cheese - inserting 1000 documents. first: Category:616 births and last: Rimac (disambiguation) -[2018-02-13T08:20:08.496] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:20:08.642] [INFO] cheese - batch complete in: 1.963 secs -[2018-02-13T08:20:08.678] [INFO] cheese - inserting 1000 documents. first: Category:17th-century establishments in South America and last: Category:Chilean male ballet dancers -[2018-02-13T08:20:08.696] [INFO] cheese - inserting 1000 documents. first: Radin Mas Primary School and last: Category:WikiProject American Old West templates -[2018-02-13T08:20:08.842] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:20:08.900] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:20:08.924] [INFO] cheese - inserting 1000 documents. first: Ballade Op. 38 (Chopin) and last: L.U.C -[2018-02-13T08:20:09.038] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:20:09.199] [INFO] cheese - inserting 1000 documents. first: Pilea and last: Category:Bishops of Woolwich -[2018-02-13T08:20:09.246] [INFO] cheese - inserting 1000 documents. first: Gmina Fajsławice and last: Gmina Łaszczów -[2018-02-13T08:20:09.290] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Málaga and last: Government Accountability and Transparency Board -[2018-02-13T08:20:09.331] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:20:09.387] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:20:09.417] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:20:09.679] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Aircrash and last: Wikipedia:WikiProject Spam/LinkReports/theimpactandexitevent.com -[2018-02-13T08:20:09.728] [INFO] cheese - inserting 1000 documents. first: Wan Wu Sheng Zhang and last: Template:Did you know nominations/Roland Rudd -[2018-02-13T08:20:09.796] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:20:09.902] [INFO] cheese - inserting 1000 documents. first: Develop (magazine) and last: Lineatin -[2018-02-13T08:20:09.909] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:20:10.060] [INFO] cheese - inserting 1000 documents. first: Miles Hendon and last: Fractional factorial design -[2018-02-13T08:20:10.103] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:20:10.171] [INFO] cheese - inserting 1000 documents. first: A2020 road and last: File:VH1Storytellers Cash&Nelson.jpg -[2018-02-13T08:20:10.255] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:20:10.307] [INFO] cheese - inserting 1000 documents. first: Army Military Intelligence and last: A vörös grófnö -[2018-02-13T08:20:10.344] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:20:10.362] [INFO] cheese - inserting 1000 documents. first: Robert A Heinlein and last: Economy of South Africa -[2018-02-13T08:20:10.468] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:20:10.680] [INFO] cheese - inserting 1000 documents. first: Used, Zaragoza and last: Halianthella -[2018-02-13T08:20:10.808] [INFO] cheese - inserting 1000 documents. first: Oppenheimer (play) and last: The Quill of the Porcupine -[2018-02-13T08:20:10.784] [INFO] cheese - batch complete in: 4.475 secs -[2018-02-13T08:20:10.911] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:20:10.975] [INFO] cheese - inserting 1000 documents. first: Heróico Colegio Militar and last: Chastity Sun Bono -[2018-02-13T08:20:11.077] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T08:20:11.153] [INFO] cheese - inserting 1000 documents. first: Treasure: In Search of the Golden Horse and last: Sir Lamorak -[2018-02-13T08:20:11.183] [INFO] cheese - inserting 1000 documents. first: Category:Iboga and last: Lewesite -[2018-02-13T08:20:11.204] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:20:11.293] [INFO] cheese - inserting 1000 documents. first: A voros grofno and last: Wikipedia:WikiProject Taoism/Prospectus -[2018-02-13T08:20:11.330] [INFO] cheese - inserting 1000 documents. first: The Harrowed and last: Template:Goleniów County -[2018-02-13T08:20:11.381] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:20:11.431] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:20:11.475] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:20:11.475] [INFO] cheese - batch complete in: 2.833 secs -[2018-02-13T08:20:11.729] [INFO] cheese - inserting 1000 documents. first: Shake Sherry and last: Sphingidites weidneri -[2018-02-13T08:20:11.820] [INFO] cheese - inserting 1000 documents. first: Joe Barton (soccer) and last: 2009 swine flu outbreak in Spain -[2018-02-13T08:20:11.913] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:20:11.924] [INFO] cheese - inserting 1000 documents. first: Republic of Azawad and last: List of Asia's Next Top Model contestants -[2018-02-13T08:20:11.979] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:20:12.018] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:20:12.038] [INFO] cheese - inserting 1000 documents. first: American Society of Microbiology and last: Artemisia brittonii -[2018-02-13T08:20:12.115] [INFO] cheese - inserting 1000 documents. first: The Moment of Truth (disambiguation) and last: Nováčany -[2018-02-13T08:20:12.120] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:20:12.213] [INFO] cheese - inserting 1000 documents. first: Portal:Television/Selected picture/8 and last: 9984 Gregbryant -[2018-02-13T08:20:12.255] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:20:12.363] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:20:12.628] [INFO] cheese - inserting 1000 documents. first: Huyện and last: Kimball (piano) -[2018-02-13T08:20:12.628] [INFO] cheese - inserting 1000 documents. first: Cathal Cregg and last: Adenoid cyctic carcinoma -[2018-02-13T08:20:12.722] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:20:12.789] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:20:12.842] [INFO] cheese - inserting 1000 documents. first: 1027 in poetry and last: File:Jack's Heroes.jpg -[2018-02-13T08:20:12.946] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:20:13.114] [INFO] cheese - inserting 1000 documents. first: Brazier hieroglyph and last: Wikipedia:Articles for deletion/BC logging road etiquette -[2018-02-13T08:20:13.181] [INFO] cheese - inserting 1000 documents. first: The Last Resort (Australian TV series) and last: Isaac ben Asher ha-Levi -[2018-02-13T08:20:13.191] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:20:13.324] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:20:13.451] [INFO] cheese - inserting 1000 documents. first: Panama at the Olympics and last: Category:Health in Paraguay -[2018-02-13T08:20:13.476] [INFO] cheese - inserting 1000 documents. first: Template:Japan-church-stub and last: Bus conductors -[2018-02-13T08:20:13.600] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:20:13.657] [INFO] cheese - inserting 1000 documents. first: Sm2bat and last: Prudential Regulatory Authority (disambiguation) -[2018-02-13T08:20:13.660] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:20:13.741] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:20:13.755] [INFO] cheese - inserting 1000 documents. first: Pano Koutrafas and last: New Great Game -[2018-02-13T08:20:13.860] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:20:13.974] [INFO] cheese - inserting 1000 documents. first: Robert Burnham and last: National Trade Union Congress of Belize -[2018-02-13T08:20:14.248] [INFO] cheese - batch complete in: 2.772 secs -[2018-02-13T08:20:14.335] [INFO] cheese - inserting 1000 documents. first: Template:Cork Hurling Team 2005 and last: Electronic Classroom -[2018-02-13T08:20:14.467] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:20:14.524] [INFO] cheese - inserting 1000 documents. first: Dog Days (anime) and last: Category:States and territories disestablished in 1547 -[2018-02-13T08:20:14.635] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:20:14.826] [INFO] cheese - inserting 1000 documents. first: Amo non amo and last: Swimmer (film) -[2018-02-13T08:20:14.839] [INFO] cheese - inserting 1000 documents. first: Bifrenaria vitellina and last: Jan Wladyslaw Dawid -[2018-02-13T08:20:14.857] [INFO] cheese - inserting 1000 documents. first: Category:Numic languages and last: San Bernardino Air Material Area -[2018-02-13T08:20:14.875] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T08:20:14.890] [INFO] cheese - inserting 1000 documents. first: File:Dreams (High and Mighty Color single - cover art).jpg and last: Category:Olympic Nordic combined skiers of the Czech Republic -[2018-02-13T08:20:14.958] [INFO] cheese - batch complete in: 1.766 secs -[2018-02-13T08:20:15.029] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:20:15.037] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:20:15.269] [INFO] cheese - inserting 1000 documents. first: Victor Vito (disambiguation) and last: Billy Ollis -[2018-02-13T08:20:15.284] [INFO] cheese - inserting 1000 documents. first: Category:Indo-European deities and last: Izuhara domain -[2018-02-13T08:20:15.330] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:20:15.433] [INFO] cheese - inserting 1000 documents. first: Modern expressionism and last: File:Rockwell.jpg -[2018-02-13T08:20:15.440] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:20:15.452] [INFO] cheese - inserting 1000 documents. first: Rain (Joe Jackson album) and last: Akademie der bildenden Künste, München -[2018-02-13T08:20:15.541] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:20:15.544] [INFO] cheese - inserting 1000 documents. first: Telecommunications in South Africa and last: Silesian Voivodeship -[2018-02-13T08:20:15.539] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:20:15.657] [INFO] cheese - inserting 1000 documents. first: The Museum of Modern Art, Gunma and last: Brandon Eric Guyer -[2018-02-13T08:20:15.708] [INFO] cheese - inserting 1000 documents. first: Anind Dey and last: Bridport F C -[2018-02-13T08:20:15.769] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:20:15.791] [INFO] cheese - inserting 1000 documents. first: Stubomycin and last: San Juan Colorado -[2018-02-13T08:20:15.886] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:20:15.937] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:20:16.017] [INFO] cheese - batch complete in: 5.233 secs -[2018-02-13T08:20:16.019] [INFO] cheese - inserting 1000 documents. first: Tête de l'Enchastraye and last: Category:People from Boyne City, Michigan -[2018-02-13T08:20:16.105] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:20:16.147] [INFO] cheese - inserting 1000 documents. first: ર and last: Anaxandridas I -[2018-02-13T08:20:16.218] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:20:16.252] [INFO] cheese - inserting 1000 documents. first: Fatih Tekke and last: Lord Lewis of Newnham -[2018-02-13T08:20:16.295] [INFO] cheese - inserting 1000 documents. first: Harbutowice, Silesian Voivodeship and last: Category:2008 in Cuba -[2018-02-13T08:20:16.341] [INFO] cheese - inserting 1000 documents. first: Neuroendocrine cells and last: Joe Lydon (boxer) -[2018-02-13T08:20:16.374] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:20:16.407] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:20:16.446] [INFO] cheese - inserting 1000 documents. first: Kevin James Kiermaier and last: Floyd County John Doe -[2018-02-13T08:20:16.480] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:20:16.579] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:20:16.667] [INFO] cheese - inserting 1000 documents. first: American Treasures and last: List of political parties in Ukraine -[2018-02-13T08:20:16.751] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:20:16.770] [INFO] cheese - inserting 1000 documents. first: San Juan Comaltepec and last: Sergio Ferrer -[2018-02-13T08:20:16.886] [INFO] cheese - inserting 1000 documents. first: Category:Canadian anatomists and last: Abdullahpur Underpass -[2018-02-13T08:20:16.905] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:20:17.008] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:20:17.102] [INFO] cheese - inserting 1000 documents. first: File:Dvd seemabaddha sat.jpg and last: Deadman Bay -[2018-02-13T08:20:17.169] [INFO] cheese - inserting 1000 documents. first: Felix, Edler von Munzberg Weingartner and last: Wood County, WI -[2018-02-13T08:20:17.179] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:20:17.243] [INFO] cheese - inserting 1000 documents. first: Simon Cooper (disambiguation) and last: Rakhi Kapoor Tandon -[2018-02-13T08:20:17.271] [INFO] cheese - inserting 1000 documents. first: Messiano and last: Ladies' Gaelic Football Association -[2018-02-13T08:20:17.283] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:20:17.329] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:17.404] [INFO] cheese - inserting 1000 documents. first: Lord Tonga Tu'i'afitu and last: 2011–12 Minnesota Wild season -[2018-02-13T08:20:17.400] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:20:17.464] [INFO] cheese - inserting 1000 documents. first: History of gujarat and last: File:WisCongMap1983.jpg -[2018-02-13T08:20:17.502] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T08:20:17.501] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:17.690] [INFO] cheese - inserting 1000 documents. first: Banana Joe V Tani Kazari and last: Category:1991 in Dutch sport -[2018-02-13T08:20:17.700] [INFO] cheese - inserting 1000 documents. first: War Angel (album) and last: Santiago Amoltepec -[2018-02-13T08:20:17.786] [INFO] cheese - inserting 1000 documents. first: History of the jews during world war ii and last: Homosexual readings of jesus and john -[2018-02-13T08:20:17.787] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:20:17.808] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:20:17.836] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 19th century in Niue and last: Murlida fraterna -[2018-02-13T08:20:17.855] [INFO] cheese - batch complete in: 0.353 secs -[2018-02-13T08:20:17.956] [INFO] cheese - inserting 1000 documents. first: Wood Dale, IL and last: File:Catjudging.jpg -[2018-02-13T08:20:18.003] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:20:18.054] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:20:18.222] [INFO] cheese - inserting 1000 documents. first: Robin Kovař and last: Alpineum -[2018-02-13T08:20:18.258] [INFO] cheese - inserting 1000 documents. first: Al-Baqara 256 and last: Emmanuel Christopher Loblack (E.C. Loblack) -[2018-02-13T08:20:18.329] [INFO] cheese - inserting 1000 documents. first: Homosexuality and anglicanism and last: House of sponheim -[2018-02-13T08:20:18.340] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:20:18.358] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:20:18.399] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:20:18.465] [INFO] cheese - inserting 1000 documents. first: Katarki, Bilagi and last: Hadiya Pendelton -[2018-02-13T08:20:18.541] [INFO] cheese - inserting 1000 documents. first: Sigma Draconis IV and last: Apaganum-like Epidendrum -[2018-02-13T08:20:18.563] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:20:18.659] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:20:18.677] [INFO] cheese - inserting 1000 documents. first: Regiment Oos Rand and last: Jean-François Yvon -[2018-02-13T08:20:18.748] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:20:18.825] [INFO] cheese - inserting 1000 documents. first: House of stairs and last: Hymns and psalms -[2018-02-13T08:20:18.856] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:20:18.949] [INFO] cheese - inserting 1000 documents. first: Category:Costa Rican Roman Catholic bishops and last: Făgeţel River (Bistriţa) -[2018-02-13T08:20:19.013] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:20:19.123] [INFO] cheese - inserting 1000 documents. first: FMES/SFA and last: Powell Panthers football -[2018-02-13T08:20:19.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Maps of Korea/Old and last: Nils Johanson -[2018-02-13T08:20:19.175] [INFO] cheese - inserting 1000 documents. first: Members of the Lok Sabha and last: Category:17th-century establishments in France -[2018-02-13T08:20:19.179] [INFO] cheese - inserting 1000 documents. first: File:Naomi Kelly90210.jpg and last: Haruo Inoue -[2018-02-13T08:20:19.236] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:20:19.226] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:20:19.287] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:20:19.306] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:20:19.378] [INFO] cheese - inserting 1000 documents. first: Category:Actresses from Boston and last: Doina Şnep-Bălan -[2018-02-13T08:20:19.419] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:20:19.441] [INFO] cheese - inserting 1000 documents. first: Hymns and spiritual songs and last: Ceric sulfate -[2018-02-13T08:20:19.548] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:20:19.566] [INFO] cheese - inserting 1000 documents. first: SECD machine and last: 2001 Tour de France -[2018-02-13T08:20:19.661] [INFO] cheese - inserting 1000 documents. first: Vyckie Garrison and last: Morbakka -[2018-02-13T08:20:19.700] [INFO] cheese - inserting 1000 documents. first: Cornel Nemţoc and last: Topliţa River (Caraş) -[2018-02-13T08:20:19.745] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:20:19.771] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T08:20:19.802] [INFO] cheese - batch complete in: 3.785 secs -[2018-02-13T08:20:19.906] [INFO] cheese - inserting 1000 documents. first: Category:Freeform (TV channel) and last: Wikipedia:MORIBUND -[2018-02-13T08:20:19.911] [INFO] cheese - inserting 1000 documents. first: USS Seagrape (YN-90) and last: Category:Science museums in New Jersey -[2018-02-13T08:20:19.914] [INFO] cheese - inserting 1000 documents. first: Fuel And Sensor Tactical packs and last: Jantzen & Thormählen -[2018-02-13T08:20:20.007] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:20:20.022] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:20:20.022] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:20:20.071] [INFO] cheese - inserting 1000 documents. first: Brahminism and last: SS Naronic -[2018-02-13T08:20:20.223] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:20:20.236] [INFO] cheese - inserting 1000 documents. first: Refusés and last: Иatural (Orange Range album) -[2018-02-13T08:20:20.237] [INFO] cheese - inserting 1000 documents. first: Topliţa River (Timiş) and last: Ionuţ Dan Ion -[2018-02-13T08:20:20.289] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:20.309] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:20:20.354] [INFO] cheese - inserting 1000 documents. first: Category:International volleyball competitions hosted by Austria and last: South Eastern main line diagram -[2018-02-13T08:20:20.417] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:20:20.626] [INFO] cheese - inserting 1000 documents. first: Kandou and last: Category:1843 in the United States -[2018-02-13T08:20:20.687] [INFO] cheese - inserting 1000 documents. first: 1859 in philosophy and last: Mario and Luigi Dream Team -[2018-02-13T08:20:20.699] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:20:20.759] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:20:20.787] [INFO] cheese - inserting 1000 documents. first: Patrick the Great and last: Kirche 2011: Ein notwendiger Aufbruch -[2018-02-13T08:20:20.842] [INFO] cheese - inserting 1000 documents. first: Heinz Strobl and last: Verizon Wireless Amphitheater Charlotte -[2018-02-13T08:20:20.977] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:20:20.990] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:20:21.168] [INFO] cheese - inserting 1000 documents. first: Yonatan Revivo and last: CK Thakker -[2018-02-13T08:20:21.208] [INFO] cheese - inserting 1000 documents. first: Ferdinand Bilali and last: Floored division -[2018-02-13T08:20:21.275] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:20:21.319] [INFO] cheese - inserting 1000 documents. first: Sălcioara, Dâmboviţa and last: Şovarna -[2018-02-13T08:20:21.322] [INFO] cheese - inserting 1000 documents. first: Hemorroids and last: Newport railway station -[2018-02-13T08:20:21.339] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:20:21.404] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:20:21.537] [INFO] cheese - inserting 1000 documents. first: Fimbristylis vahlii and last: Robert Martin (basketball player) -[2018-02-13T08:20:21.599] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:20:21.701] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:20:21.795] [INFO] cheese - inserting 1000 documents. first: CL Barnhouse Company and last: Clipstone Welfare F C -[2018-02-13T08:20:21.853] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:20:21.892] [INFO] cheese - inserting 1000 documents. first: Jugaloe and last: Cool "Gator" -[2018-02-13T08:20:21.912] [INFO] cheese - inserting 1000 documents. first: University of Paris 6 and last: Template:User WP Macedonia/doc -[2018-02-13T08:20:21.916] [INFO] cheese - inserting 1000 documents. first: Sky Jockey and last: Drahnov -[2018-02-13T08:20:21.963] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:20:22.036] [INFO] cheese - inserting 1000 documents. first: File:Land and Shade poster.jpg and last: Category:Populated places in the Regional Municipality of Halton -[2018-02-13T08:20:22.038] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:20:22.048] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:20:22.163] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:22.280] [INFO] cheese - inserting 1000 documents. first: Book:Algebraic Mathematics and Logics and last: Philip Henry Christopher Jackson -[2018-02-13T08:20:22.346] [INFO] cheese - inserting 1000 documents. first: Clipstone Welfare F. C. and last: Hyperpolarization-activated cyclic nucleotide-gated potassium channel -[2018-02-13T08:20:22.434] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:20:22.444] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:20:22.550] [INFO] cheese - inserting 1000 documents. first: Rhythmic Airplay Chart and last: Fuscapex talismani -[2018-02-13T08:20:22.609] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:20:22.803] [INFO] cheese - inserting 1000 documents. first: Thjorsa and last: Type 93 surface-to-air missile -[2018-02-13T08:20:22.807] [INFO] cheese - inserting 1000 documents. first: D H Asson and last: Not of This World (film) -[2018-02-13T08:20:22.833] [INFO] cheese - inserting 1000 documents. first: Malcolm Root and last: Dragan Kresoja -[2018-02-13T08:20:22.855] [INFO] cheese - inserting 1000 documents. first: The Blake Project: Spring and last: Agutaynen -[2018-02-13T08:20:22.894] [INFO] cheese - inserting 1000 documents. first: 2014 independence referendum and last: Valea Şindrilelor River -[2018-02-13T08:20:22.922] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:20:22.954] [INFO] cheese - batch complete in: 0.345 secs -[2018-02-13T08:20:22.958] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:20:22.959] [INFO] cheese - inserting 1000 documents. first: Art valuation and last: Category:Sanskrit scholars -[2018-02-13T08:20:22.971] [INFO] cheese - inserting 1000 documents. first: Template:Adminstats/Chrislk02 and last: Wikipedia:WikiProject Directory/Description/WikiProject Beauty Pageants -[2018-02-13T08:20:22.972] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:20:22.981] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:20:23.089] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:20:23.157] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:20:23.259] [INFO] cheese - inserting 1000 documents. first: Bodovlje Mass Grave and last: Finiş River -[2018-02-13T08:20:23.300] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T08:20:23.387] [INFO] cheese - inserting 1000 documents. first: Daniel I J Thornton and last: Portal:Journalism/Selected quote/5 -[2018-02-13T08:20:23.510] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:20:23.645] [INFO] cheese - inserting 1000 documents. first: Alhambra and last: Ulster -[2018-02-13T08:20:23.680] [INFO] cheese - inserting 1000 documents. first: Henry D'Avigdor-Goldsmid and last: Hafnia (bacteria) -[2018-02-13T08:20:23.715] [INFO] cheese - inserting 1000 documents. first: Gianni and the Ogre and last: Parinibbāna -[2018-02-13T08:20:23.730] [INFO] cheese - inserting 1000 documents. first: South Africa national futsal team and last: Diarthropus -[2018-02-13T08:20:23.759] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:20:23.801] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Directory/Description/WikiProject Bedfordshire and last: Wikipedia:Related WikiProjects/GLAM/Balboa Park -[2018-02-13T08:20:23.805] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:23.819] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:20:23.908] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:20:23.943] [INFO] cheese - inserting 1000 documents. first: Bek David Campbell and last: Triatominae -[2018-02-13T08:20:23.976] [INFO] cheese - batch complete in: 4.174 secs -[2018-02-13T08:20:24.083] [INFO] cheese - inserting 1000 documents. first: Finişel River and last: Kregar Ravine 3 Mass Grave -[2018-02-13T08:20:24.093] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:20:24.225] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:20:24.400] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject Animation/Machinima work group and last: Wikipedia:Related WikiProjects/WikiProject Meteorology -[2018-02-13T08:20:24.408] [INFO] cheese - inserting 1000 documents. first: File:DalmacijaSrbi.JPG and last: Browning Road Park, Banbury -[2018-02-13T08:20:24.424] [INFO] cheese - inserting 1000 documents. first: DN-galan and last: Phyllorkis inaequalis -[2018-02-13T08:20:24.444] [INFO] cheese - inserting 1000 documents. first: Daphinia and last: Margaret I, Countess of Hainaut -[2018-02-13T08:20:24.471] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:20:24.579] [INFO] cheese - inserting 1000 documents. first: File:Benson-logo.PNG and last: Stacy Wilson -[2018-02-13T08:20:24.559] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:20:24.599] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:20:24.635] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:20:24.803] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:20:24.978] [INFO] cheese - inserting 1000 documents. first: Template:Borough of Ribble Valley and last: Portal:Bollywood/Selected article/17 -[2018-02-13T08:20:25.073] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:20:25.237] [INFO] cheese - inserting 1000 documents. first: Harshi Mad and last: Allescheria boydii -[2018-02-13T08:20:25.376] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:20:25.406] [INFO] cheese - inserting 1000 documents. first: Duroplast and last: Ralph Lawler -[2018-02-13T08:20:25.557] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:20:25.637] [INFO] cheese - inserting 1000 documents. first: Smith Building and last: F.C. Internazionale Milano season 2009-10 -[2018-02-13T08:20:25.660] [INFO] cheese - inserting 1000 documents. first: Portal:Australian cars/Selected biography/1 and last: Steve Hunt -[2018-02-13T08:20:25.724] [INFO] cheese - inserting 1000 documents. first: Johannes Ronge and last: State Route 143 (Virginia 1923-1928) -[2018-02-13T08:20:25.730] [INFO] cheese - inserting 1000 documents. first: Ster van Zwolle and last: Prognostic chart -[2018-02-13T08:20:25.735] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:20:25.790] [INFO] cheese - inserting 1000 documents. first: File:Badger Cub Feeding.jpg and last: Gabriele Basilico -[2018-02-13T08:20:25.809] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:20:25.875] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T08:20:25.994] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:20:26.089] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:20:26.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Related WikiProjects/WikiProject U.S. Roads/Ohio and last: Samguk Yusa -[2018-02-13T08:20:26.336] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:20:26.607] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikiproject Outline of Knowlege and last: Template:User bo-0 -[2018-02-13T08:20:26.651] [INFO] cheese - inserting 1000 documents. first: Category:Hydroelectricity in Malawi and last: Category:Fletcher-class destroyers of the Peruvian Navy -[2018-02-13T08:20:26.703] [INFO] cheese - inserting 1000 documents. first: Portal:Argentina/Selected picture/Month 01, 2008 and last: Portal:Tropical cyclones/Featured article/Tropical Storm Ana (2003) -[2018-02-13T08:20:26.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Peneda-Gerês National Park/archive1 and last: Polet Airlines -[2018-02-13T08:20:26.715] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:20:26.736] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:20:26.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Adjectives in your votes and last: Serbian Orthodox Diocese of Eastern America -[2018-02-13T08:20:26.884] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:20:26.922] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:20:26.921] [INFO] cheese - inserting 1000 documents. first: State Route 392 (Virginia 1923-1928) and last: Yinhe Li -[2018-02-13T08:20:26.947] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:20:27.074] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:20:27.175] [INFO] cheese - inserting 1000 documents. first: Anthony stewart head and last: Wikipedia:Articles for deletion/OWSLA -[2018-02-13T08:20:27.311] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:20:27.438] [INFO] cheese - inserting 1000 documents. first: Template:Chief Ministers of Indian States and last: Lrytas.lt -[2018-02-13T08:20:27.596] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:20:27.631] [INFO] cheese - inserting 1000 documents. first: Jean Berthoin and last: Category:Chinese art critics -[2018-02-13T08:20:27.720] [INFO] cheese - inserting 1000 documents. first: Rosoxacin and last: West Covina, Ca -[2018-02-13T08:20:27.722] [INFO] cheese - inserting 1000 documents. first: PP-90M1 and last: 2011 Challenger DCNS de Cherbourg – Doubles -[2018-02-13T08:20:27.749] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:20:27.826] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:20:27.840] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:20:27.992] [INFO] cheese - inserting 1000 documents. first: Category:Male dancers from Northern Ireland and last: Epijana cinerea -[2018-02-13T08:20:27.999] [INFO] cheese - inserting 1000 documents. first: The Lovehammers and last: IntCodec -[2018-02-13T08:20:28.056] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:20:28.117] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:20:28.142] [INFO] cheese - inserting 1000 documents. first: Radical politics and last: Creole English -[2018-02-13T08:20:28.273] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:20:28.335] [INFO] cheese - inserting 1000 documents. first: United States Internal Revenue Service and last: William the Conqueror -[2018-02-13T08:20:28.355] [INFO] cheese - inserting 1000 documents. first: Ymir Vigfusson and last: Micromax A116 Canvas HD -[2018-02-13T08:20:28.460] [INFO] cheese - inserting 1000 documents. first: Catasetum saccatum var. eusaccatum and last: File:Jpba-logov.png -[2018-02-13T08:20:28.467] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:20:28.567] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:20:28.608] [INFO] cheese - inserting 1000 documents. first: WRDW (AM) and last: Ovacue -[2018-02-13T08:20:28.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Florida/Userbox and last: William Osborne (umpire) -[2018-02-13T08:20:28.618] [INFO] cheese - inserting 1000 documents. first: Alpine laurel and last: Edwin Maxwell (attorney general) -[2018-02-13T08:20:28.629] [INFO] cheese - batch complete in: 4.652 secs -[2018-02-13T08:20:28.696] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:20:28.708] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:20:28.753] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:20:28.906] [INFO] cheese - inserting 1000 documents. first: Paradise Independent School District and last: Phazotron -[2018-02-13T08:20:29.004] [INFO] cheese - inserting 1000 documents. first: Category:Habsburg-class battleships and last: File:Crash Time 2 Cover.jpg -[2018-02-13T08:20:29.021] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:29.129] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:20:29.304] [INFO] cheese - inserting 1000 documents. first: Monestary and last: Station Casinos -[2018-02-13T08:20:29.393] [INFO] cheese - inserting 1000 documents. first: Churches in Omaha and last: Chatom, Al -[2018-02-13T08:20:29.483] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:20:29.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lepseut.blogspot.com and last: Andreevo -[2018-02-13T08:20:29.664] [INFO] cheese - inserting 1000 documents. first: Corinthia (peripheral unit) and last: Olav Skjevesland -[2018-02-13T08:20:29.728] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:20:29.783] [INFO] cheese - inserting 1000 documents. first: Cattleya warneri var. semialba and last: BMW R80G/S Paris-Dakar -[2018-02-13T08:20:29.828] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:20:29.902] [INFO] cheese - batch complete in: 1.206 secs -[2018-02-13T08:20:29.974] [INFO] cheese - inserting 1000 documents. first: Category:Burials in County Cork and last: Killer (role-playing game) -[2018-02-13T08:20:30.022] [INFO] cheese - batch complete in: 1.455 secs -[2018-02-13T08:20:30.119] [INFO] cheese - inserting 1000 documents. first: 1996 in Luxembourg and last: Breast prostheses -[2018-02-13T08:20:30.109] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:20:30.347] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:20:30.568] [INFO] cheese - inserting 1000 documents. first: Leslie-Alford-Mims House and last: File:Two-Face (DC Animated Universe).png -[2018-02-13T08:20:30.663] [INFO] cheese - inserting 1000 documents. first: Chelsea, Al and last: John Hyde (Australian federal politician) -[2018-02-13T08:20:30.729] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:20:30.846] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:20:30.900] [INFO] cheese - inserting 1000 documents. first: Bazna pig and last: Alqadhafi -[2018-02-13T08:20:31.017] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:20:31.021] [INFO] cheese - inserting 1000 documents. first: Gang Banged with a Headache, and Live and last: Perkins Street (MBTA station) -[2018-02-13T08:20:31.081] [INFO] cheese - inserting 1000 documents. first: Palazzo della Cancelleria and last: Northern Chorus -[2018-02-13T08:20:31.105] [INFO] cheese - inserting 1000 documents. first: Yelizaveta Andreyevna Lawrowska and last: Diodora -[2018-02-13T08:20:31.186] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:20:31.246] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:20:31.269] [INFO] cheese - inserting 1000 documents. first: Phil Gartside and last: David Davis National Historic Landmark -[2018-02-13T08:20:31.336] [INFO] cheese - batch complete in: 1.853 secs -[2018-02-13T08:20:31.448] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:20:31.539] [INFO] cheese - inserting 1000 documents. first: Hecate et ses chiens and last: 9990s -[2018-02-13T08:20:31.595] [INFO] cheese - inserting 1000 documents. first: File:Badge of Wah Yan College, Hong Kong.svg and last: File:Very best of.jpg -[2018-02-13T08:20:31.672] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:20:31.750] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:20:31.776] [INFO] cheese - inserting 1000 documents. first: Flirting with Twilight and last: Template:User Papua New Guinea -[2018-02-13T08:20:31.893] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:20:32.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dermot Gascoyne and last: Rapid transit in China -[2018-02-13T08:20:32.105] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:20:32.125] [INFO] cheese - inserting 1000 documents. first: Ray Trowbridge and last: The Beast (2009 TV series) -[2018-02-13T08:20:32.263] [INFO] cheese - inserting 1000 documents. first: EH Crump and last: F S Bell -[2018-02-13T08:20:32.271] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:20:32.346] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:20:32.525] [INFO] cheese - inserting 1000 documents. first: Rose madder and last: Lasara Independent School District -[2018-02-13T08:20:32.640] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz M103 and last: Orochon -[2018-02-13T08:20:32.659] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:20:32.707] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic ecclesiastical provinces in Algeria and last: Bill Jordan (trade unionist) -[2018-02-13T08:20:32.710] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Côte-Nord and last: Wikipedia:WikiProject Directory/Description/WikiProject Equine -[2018-02-13T08:20:32.757] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T08:20:32.811] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:20:32.915] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:20:32.963] [INFO] cheese - inserting 1000 documents. first: SAP-VN and last: Fort D A Russell -[2018-02-13T08:20:33.041] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:20:33.141] [INFO] cheese - inserting 1000 documents. first: Chelonanthera miniata and last: Wikipedia:NK -[2018-02-13T08:20:33.169] [INFO] cheese - inserting 1000 documents. first: Category:United States Senate elections, 1810 and last: Ride on the Edge -[2018-02-13T08:20:33.189] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:20:33.261] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:20:33.457] [INFO] cheese - inserting 1000 documents. first: Muhajir Urdu and last: GFJ Dart -[2018-02-13T08:20:33.496] [INFO] cheese - inserting 1000 documents. first: WD postcode area and last: Blond Kouros's Head of the Acropolis -[2018-02-13T08:20:33.509] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:20:33.604] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:20:33.687] [INFO] cheese - inserting 1000 documents. first: United Nations Security Council Resolution 1618 and last: Category:Landforms of Sherman County, Oregon -[2018-02-13T08:20:33.706] [INFO] cheese - inserting 1000 documents. first: The Association of Congenital Diaphragmatic Hernia Research, Awareness and Support and last: Debub-Keih-Bahri Region -[2018-02-13T08:20:33.748] [INFO] cheese - inserting 1000 documents. first: Blue and white pottery and last: Tuscan Archipelago -[2018-02-13T08:20:33.798] [INFO] cheese - inserting 1000 documents. first: William II of England and last: AD 23 -[2018-02-13T08:20:33.831] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:20:33.911] [INFO] cheese - inserting 1000 documents. first: Category:Youth organisations based in Uruguay and last: Mt mary college -[2018-02-13T08:20:33.955] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:20:34.020] [INFO] cheese - inserting 1000 documents. first: Yuaytacondorsenja and last: Wikipedia:WikiProject Directory/Description/WikiProject Micronesia -[2018-02-13T08:20:34.035] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:20:34.110] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T08:20:34.224] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:20:34.252] [INFO] cheese - batch complete in: 5.623 secs -[2018-02-13T08:20:34.277] [INFO] cheese - inserting 1000 documents. first: GG Coulton and last: Pike Road, Al -[2018-02-13T08:20:34.373] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:20:34.574] [INFO] cheese - inserting 1000 documents. first: The Doug Wright Awards and last: Miracle Mile District -[2018-02-13T08:20:34.689] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:20:34.700] [INFO] cheese - inserting 1000 documents. first: Semenawi Keyih Bahri Region and last: 2009 Wimbledon Championships – Women's Doubles -[2018-02-13T08:20:34.846] [INFO] cheese - inserting 1000 documents. first: Mt mary and last: Hoel I, Duke of Brittany -[2018-02-13T08:20:34.879] [INFO] cheese - inserting 1000 documents. first: File:Filthy (Egyptian Lover album - cover art).jpg and last: Harvey Grammar School -[2018-02-13T08:20:34.892] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:20:35.007] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:20:35.036] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:20:35.185] [INFO] cheese - inserting 1000 documents. first: Greystones Town Council and last: Acleris tungurahuae -[2018-02-13T08:20:35.358] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:20:35.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Central America articles by quality/13 and last: Xenia, Oh -[2018-02-13T08:20:35.565] [INFO] cheese - inserting 1000 documents. first: Coordination failure (political science) and last: R378 road (South Africa) -[2018-02-13T08:20:35.631] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:20:35.656] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T08:20:35.689] [INFO] cheese - inserting 1000 documents. first: File:Kainos logo.jpg and last: Wikipedia:Contributor copyright investigations/Snigdhasinghsweet -[2018-02-13T08:20:35.724] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/laco.org and last: James Garfield Stewart -[2018-02-13T08:20:35.766] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pi.vu and last: Wikipedia:WikiProject Directory/Description/WikiProject Secret Societies -[2018-02-13T08:20:35.785] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:20:35.823] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:20:35.950] [INFO] cheese - inserting 1000 documents. first: 1933 Virginia state highway renumbering and last: Shane (B&B) -[2018-02-13T08:20:35.974] [INFO] cheese - batch complete in: 1.749 secs -[2018-02-13T08:20:36.108] [INFO] cheese - inserting 1000 documents. first: AD 24 and last: 1117 -[2018-02-13T08:20:36.109] [INFO] cheese - batch complete in: 1.42 secs -[2018-02-13T08:20:36.160] [INFO] cheese - inserting 1000 documents. first: Category:Tortricini and last: Spey River (Tasman) -[2018-02-13T08:20:36.174] [INFO] cheese - inserting 1000 documents. first: Gymnasium F C and last: Football (soccer) in Western Australia -[2018-02-13T08:20:36.243] [INFO] cheese - batch complete in: 1.991 secs -[2018-02-13T08:20:36.254] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:20:36.305] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:20:36.450] [INFO] cheese - inserting 1000 documents. first: Bunny Style! and last: Raymond Siday -[2018-02-13T08:20:36.514] [INFO] cheese - inserting 1000 documents. first: Vladimir Kobzev and last: Wells Fargo Securities -[2018-02-13T08:20:36.566] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:20:36.628] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:20:36.685] [INFO] cheese - inserting 1000 documents. first: Category:Green Line (MBTA) and last: Talking Voice vs. Singing Voice -[2018-02-13T08:20:36.744] [INFO] cheese - inserting 1000 documents. first: John Alnander and last: Wikipedia:Version 1.0 Editorial Team/Biography (politics and government) articles by quality/46 -[2018-02-13T08:20:36.828] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:20:36.853] [INFO] cheese - inserting 1000 documents. first: File:NovoBrdoWall2.jpg and last: File:The Creeps dvd cover.jpg -[2018-02-13T08:20:36.859] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:20:36.952] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:20:36.960] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Hernando de Soto Bridge Memphis.jpg and last: Wikipedia:Articles for deletion/Bloodhound Gang's fifth studio album -[2018-02-13T08:20:36.965] [INFO] cheese - inserting 1000 documents. first: Reading United AC and last: Wikipedia:WikiProject Spam/LinkReports/skynet.lk -[2018-02-13T08:20:37.036] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:20:37.090] [INFO] cheese - inserting 1000 documents. first: Siday and last: File:Distribution of professional opinion on anthropogenic climate change - by Tobis and Ban.jpg -[2018-02-13T08:20:37.094] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:20:37.180] [INFO] cheese - inserting 1000 documents. first: IPinkVisualpass.com and last: Death of Autotune -[2018-02-13T08:20:37.182] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:20:37.310] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:20:37.445] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography (politics and government) articles by quality/47 and last: Wikipedia:Articles for deletion/DEVFS -[2018-02-13T08:20:37.531] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:20:37.542] [INFO] cheese - inserting 1000 documents. first: History of the Italians in Baltimore and last: Frend, William -[2018-02-13T08:20:37.642] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:20:37.707] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz W116 and last: Category:Indian weightlifters -[2018-02-13T08:20:37.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/skynet.lk and last: Lucas Cornelisz. -[2018-02-13T08:20:37.781] [INFO] cheese - inserting 1000 documents. first: Rock Island (Nunavut) and last: Ee Parakkum Thalika -[2018-02-13T08:20:37.800] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:20:37.804] [INFO] cheese - inserting 1000 documents. first: Anheuser and last: Stellorkis -[2018-02-13T08:20:37.818] [INFO] cheese - inserting 1000 documents. first: Category:Cuisine of Provence and last: José Miguel Pérez (disambiguation) -[2018-02-13T08:20:37.857] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:20:37.903] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:20:37.928] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:20:38.015] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:20:38.252] [INFO] cheese - inserting 1000 documents. first: Parvez Musharraf and last: Doggejávri -[2018-02-13T08:20:38.369] [INFO] cheese - inserting 1000 documents. first: Wiseman, William and last: Category:Residential buildings completed in the 10th century -[2018-02-13T08:20:38.409] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:20:38.433] [INFO] cheese - inserting 1000 documents. first: KAMB (disambiguation) and last: ௐ -[2018-02-13T08:20:38.510] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:20:38.563] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:20:38.586] [INFO] cheese - inserting 1000 documents. first: 1118 and last: Fallopia japonica -[2018-02-13T08:20:38.626] [INFO] cheese - inserting 1000 documents. first: LiteFoot ATV and last: Weak in the Presence of Beauty (album) -[2018-02-13T08:20:38.703] [INFO] cheese - inserting 1000 documents. first: Category:People from Haveri and last: NRHP in Wasco County -[2018-02-13T08:20:38.704] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:38.740] [INFO] cheese - inserting 1000 documents. first: Orach Hayyim and last: (aq) -[2018-02-13T08:20:38.795] [INFO] cheese - batch complete in: 2.549 secs -[2018-02-13T08:20:38.839] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:20:38.855] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:20:38.931] [INFO] cheese - inserting 1000 documents. first: Wilhelm Fliess and last: Category:Catholic Church in North America -[2018-02-13T08:20:39.130] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:20:39.302] [INFO] cheese - inserting 1000 documents. first: Category:Residential buildings completed in the 11th century and last: When contact changes minds: An experiment on transmission of support for gay equality -[2018-02-13T08:20:39.304] [INFO] cheese - inserting 1000 documents. first: Ports of Öland and last: J. W. Alexander (musician) -[2018-02-13T08:20:39.320] [INFO] cheese - inserting 1000 documents. first: Party-led mediation and last: Maconaquah High School -[2018-02-13T08:20:39.440] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:20:39.448] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:20:39.534] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:20:39.737] [INFO] cheese - inserting 1000 documents. first: Template:Honduras squad 2009 CONCACAF Gold Cup and last: 1920 American Cup -[2018-02-13T08:20:39.866] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:20:40.041] [INFO] cheese - inserting 1000 documents. first: Jakub Krupa and last: Amanieu II -[2018-02-13T08:20:40.204] [INFO] cheese - inserting 1000 documents. first: Ana María Simo and last: Template:Magoffin County, Kentucky -[2018-02-13T08:20:40.221] [INFO] cheese - batch complete in: 1.517 secs -[2018-02-13T08:20:40.310] [INFO] cheese - inserting 1000 documents. first: File:"This Man Is News" (1938).jpg and last: File:Diego Velázquez - The Three Musicians - Google Art Project.jpg -[2018-02-13T08:20:40.401] [INFO] cheese - inserting 1000 documents. first: Sexual abuse in Haiti and last: Category:LGBT mayors of places in Canada -[2018-02-13T08:20:40.435] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:20:40.492] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:20:40.517] [INFO] cheese - batch complete in: 1.677 secs -[2018-02-13T08:20:40.540] [INFO] cheese - inserting 1000 documents. first: Coarse woody habitat and last: Caps lock button -[2018-02-13T08:20:40.587] [INFO] cheese - inserting 1000 documents. first: Category:Grand Prix teams and last: Junctional complexes -[2018-02-13T08:20:40.806] [INFO] cheese - batch complete in: 1.667 secs -[2018-02-13T08:20:40.816] [INFO] cheese - inserting 1000 documents. first: Marial, Oregon and last: Gadolinium-153 -[2018-02-13T08:20:40.822] [INFO] cheese - batch complete in: 1.288 secs -[2018-02-13T08:20:40.957] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:20:41.420] [INFO] cheese - inserting 1000 documents. first: Tehran Mehrabad Airport and last: Transportes Urbanos de Vitoria -[2018-02-13T08:20:41.505] [INFO] cheese - inserting 1000 documents. first: Category:Education in Grant County, Wisconsin and last: Category:Buildings and structures in Lafayette County, Wisconsin -[2018-02-13T08:20:41.508] [INFO] cheese - inserting 1000 documents. first: Meliorator Chimkent and last: Draft:Stephanie Bond-Author -[2018-02-13T08:20:41.531] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:20:41.626] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:20:41.668] [INFO] cheese - batch complete in: 1.447 secs -[2018-02-13T08:20:41.686] [INFO] cheese - inserting 1000 documents. first: Dawn (ballet) and last: Punto y Hora -[2018-02-13T08:20:41.801] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:20:41.870] [INFO] cheese - inserting 1000 documents. first: G. A. Kolkhorst and last: 300 BC in Ireland -[2018-02-13T08:20:41.899] [INFO] cheese - inserting 1000 documents. first: Bill Easley and last: File:Irina Reaching.jpg -[2018-02-13T08:20:41.991] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:20:42.026] [INFO] cheese - batch complete in: 1.508 secs -[2018-02-13T08:20:42.149] [INFO] cheese - inserting 1000 documents. first: Meurig ap Hywel and last: Category:2013 in Uganda -[2018-02-13T08:20:42.233] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:20:42.258] [INFO] cheese - inserting 1000 documents. first: Soccer AM's AllSports Show and last: Template:Switzerland-election-stub -[2018-02-13T08:20:42.268] [INFO] cheese - inserting 1000 documents. first: Jack Soble and last: List of Malcolm in the Middle episodes -[2018-02-13T08:20:42.329] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:20:42.361] [INFO] cheese - inserting 1000 documents. first: Richar, Duke of Lower Lotharingia and last: Category:1925 in labour relations -[2018-02-13T08:20:42.378] [INFO] cheese - inserting 1000 documents. first: Rubidium-83 and last: Wikipedia:Arbitration Committee/Agenda/Calendar/10 August 2009 -[2018-02-13T08:20:42.401] [INFO] cheese - batch complete in: 1.595 secs -[2018-02-13T08:20:42.522] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:20:42.541] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:20:42.554] [INFO] cheese - inserting 1000 documents. first: English mythology and last: Telugu language -[2018-02-13T08:20:42.602] [INFO] cheese - inserting 1000 documents. first: Precision guidance and last: Ernest Hemingway House -[2018-02-13T08:20:42.673] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Noahcs/Userboxes/Vince Foster and last: Wikipedia:WikiProject Spam/LinkReports/runtrackdir.com -[2018-02-13T08:20:42.687] [INFO] cheese - inserting 1000 documents. first: Provisional Siberian Government (Vologodskii) and last: Portal:Atlantic Coast Conference/Selected biography/Layout -[2018-02-13T08:20:42.702] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:20:42.816] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:20:42.840] [INFO] cheese - batch complete in: 4.043 secs -[2018-02-13T08:20:42.866] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:20:42.959] [INFO] cheese - inserting 1000 documents. first: Tellurium-110 and last: Antimony-111 -[2018-02-13T08:20:43.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject on open proxies/Archives/Unblock/2011/March and last: File:TalkinBoutMen.jpg -[2018-02-13T08:20:43.059] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:43.129] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:20:43.250] [INFO] cheese - inserting 1000 documents. first: Tenant McLanahan and last: Domestic Terrorism -[2018-02-13T08:20:43.277] [INFO] cheese - inserting 1000 documents. first: Category:1926 in labour relations and last: The Cheerful Cherub -[2018-02-13T08:20:43.287] [INFO] cheese - inserting 1000 documents. first: SS Henry R. Schoolcraft and last: Niimi Station -[2018-02-13T08:20:43.359] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:20:43.391] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:20:43.410] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:20:43.530] [INFO] cheese - inserting 1000 documents. first: Thomas A. Greene Memorial Museum and last: Algenib in Perseus -[2018-02-13T08:20:43.542] [INFO] cheese - inserting 1000 documents. first: Antimony-112 and last: Kaduvettividuthy -[2018-02-13T08:20:43.546] [INFO] cheese - inserting 1000 documents. first: File:2013 WAC Basketball Tournament Logo.jpg and last: Troubador Press -[2018-02-13T08:20:43.608] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:20:43.648] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:20:43.699] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:20:43.898] [INFO] cheese - inserting 1000 documents. first: Troels Jørgensen and last: Thore Boye -[2018-02-13T08:20:44.010] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:20:44.172] [INFO] cheese - inserting 1000 documents. first: Spinal v nucleus and last: Gmina Trzebielino -[2018-02-13T08:20:44.227] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:20:44.330] [INFO] cheese - inserting 1000 documents. first: Like a River Runs and last: Durgakund Temple -[2018-02-13T08:20:44.359] [INFO] cheese - inserting 1000 documents. first: Timothy R. Parsons and last: Wikipedia:Articles for deletion/Dalian Plant -[2018-02-13T08:20:44.374] [INFO] cheese - inserting 1000 documents. first: Lovers (song) and last: CO3 -[2018-02-13T08:20:44.385] [INFO] cheese - inserting 1000 documents. first: ¿Dónde Están Mis Amigos? and last: ISO 639:bjm -[2018-02-13T08:20:44.422] [INFO] cheese - inserting 1000 documents. first: Tenryukyo Station and last: Institute of Statistical Research and Training -[2018-02-13T08:20:44.461] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:20:44.503] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:20:44.520] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:20:44.570] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:20:44.643] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:20:44.778] [INFO] cheese - inserting 1000 documents. first: Halesowen Town FC and last: L-Valine -[2018-02-13T08:20:44.819] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:20:44.916] [INFO] cheese - inserting 1000 documents. first: Al hindawiyah and last: Category:Parr family -[2018-02-13T08:20:44.964] [INFO] cheese - inserting 1000 documents. first: Udgaon gram panchayat and last: ISO 639:dhl -[2018-02-13T08:20:44.979] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:20:45.027] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:20:45.179] [INFO] cheese - inserting 1000 documents. first: Surval Montreux and last: Category:Frazioni of the Province of Pistoia -[2018-02-13T08:20:45.187] [INFO] cheese - inserting 1000 documents. first: Historical US Census Totals for Belknap County, New Hampshire and last: ILY ~Yokubou~ -[2018-02-13T08:20:45.224] [INFO] cheese - inserting 1000 documents. first: The weather in Oxford and last: Email Service Provider -[2018-02-13T08:20:45.226] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:20:45.258] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:20:45.273] [INFO] cheese - inserting 1000 documents. first: Miss World 1983 and last: List of castles and fortresses in Switzerland -[2018-02-13T08:20:45.306] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:20:45.392] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:20:45.436] [INFO] cheese - inserting 1000 documents. first: Gödel code and last: Grand Mesa -[2018-02-13T08:20:45.462] [INFO] cheese - inserting 1000 documents. first: ISO 639:dhm and last: ISO 639:ino -[2018-02-13T08:20:45.525] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:20:45.576] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:20:45.580] [INFO] cheese - inserting 1000 documents. first: Romana Tabaková and last: Wide Hive Records -[2018-02-13T08:20:45.653] [INFO] cheese - inserting 1000 documents. first: IM Dharmadasa and last: Mobile Suit Gundam: Federation vs. Zeon -[2018-02-13T08:20:45.669] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:20:45.732] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:20:45.771] [INFO] cheese - inserting 1000 documents. first: Battle of Bennington and last: USS Merrimack -[2018-02-13T08:20:45.821] [INFO] cheese - inserting 1000 documents. first: NoxiK and last: ISO 639:lke -[2018-02-13T08:20:45.848] [INFO] cheese - inserting 1000 documents. first: Ulupamir and last: Cobalt-53m -[2018-02-13T08:20:45.855] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T08:20:46.034] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:46.034] [INFO] cheese - batch complete in: 3.194 secs -[2018-02-13T08:20:46.194] [INFO] cheese - inserting 1000 documents. first: Category:Malayalam encyclopedias and last: Kisou (鬼葬) -[2018-02-13T08:20:46.201] [INFO] cheese - inserting 1000 documents. first: J J Dossen and last: La Paz, In -[2018-02-13T08:20:46.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sarai Sierra and last: Mudflat quillplant -[2018-02-13T08:20:46.261] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:20:46.318] [INFO] cheese - inserting 1000 documents. first: ISO 639:lkh and last: Incruit -[2018-02-13T08:20:46.340] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:20:46.374] [INFO] cheese - inserting 1000 documents. first: Bethenny Getting Married and last: James Frew jr -[2018-02-13T08:20:46.441] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:20:46.450] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:20:46.577] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:20:46.702] [INFO] cheese - inserting 1000 documents. first: Suffolk Downs and last: Startrek -[2018-02-13T08:20:46.714] [INFO] cheese - inserting 1000 documents. first: Cobalt-54m and last: Toroidal inductor -[2018-02-13T08:20:46.825] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:20:46.875] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:20:46.975] [INFO] cheese - inserting 1000 documents. first: Category:Pan American Games medalists for Canada and last: Category:WikiProject Prehistoric Mammals -[2018-02-13T08:20:46.989] [INFO] cheese - inserting 1000 documents. first: J.G. Robinson and last: Folsom Man -[2018-02-13T08:20:47.069] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:20:47.073] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:20:47.275] [INFO] cheese - inserting 1000 documents. first: Category:Power stations in North Korea and last: Digital Tape Format -[2018-02-13T08:20:47.383] [INFO] cheese - inserting 1000 documents. first: Kurzwellen and last: Connor Ripley -[2018-02-13T08:20:47.470] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:20:47.479] [INFO] cheese - inserting 1000 documents. first: ISO 639:qxi and last: Andrzej krauze -[2018-02-13T08:20:47.501] [INFO] cheese - inserting 1000 documents. first: Accidental (music) and last: Stop signal -[2018-02-13T08:20:47.526] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:20:47.558] [INFO] cheese - inserting 1000 documents. first: A Season in Hell (1964 film) and last: Osama Nujaifi -[2018-02-13T08:20:47.572] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:20:47.787] [INFO] cheese - batch complete in: 1.753 secs -[2018-02-13T08:20:47.846] [INFO] cheese - batch complete in: 1.396 secs -[2018-02-13T08:20:47.911] [INFO] cheese - inserting 1000 documents. first: File:Sears tower orthogonal.jpg and last: Sagala Ratnayaka -[2018-02-13T08:20:48.038] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:20:48.191] [INFO] cheese - inserting 1000 documents. first: Sørvágur and last: Motorized artillery -[2018-02-13T08:20:48.377] [INFO] cheese - inserting 1000 documents. first: Palea (botany) and last: JB Munro -[2018-02-13T08:20:48.384] [INFO] cheese - inserting 1000 documents. first: Category:Croatian football friendly trophies and last: Posen Robbins School District -[2018-02-13T08:20:48.408] [INFO] cheese - batch complete in: 1.582 secs -[2018-02-13T08:20:48.429] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:20:48.540] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Herzegovina and last: List of Hero System books -[2018-02-13T08:20:48.600] [INFO] cheese - inserting 1000 documents. first: Portal:Trinidad and Tobago/On this day/July 24 and last: Edinburgh Ladies' Emancipation Society -[2018-02-13T08:20:48.646] [INFO] cheese - batch complete in: 1.577 secs -[2018-02-13T08:20:48.670] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:20:48.765] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:20:48.873] [INFO] cheese - inserting 1000 documents. first: File:Brooke230Album.jpg and last: Zaō Station -[2018-02-13T08:20:48.963] [INFO] cheese - inserting 1000 documents. first: Separating mixtures and last: Cours-de-Monsegur -[2018-02-13T08:20:49.040] [INFO] cheese - inserting 1000 documents. first: ISO 639:wja and last: Sotiria Aliberti -[2018-02-13T08:20:49.053] [INFO] cheese - batch complete in: 1.583 secs -[2018-02-13T08:20:49.077] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:20:49.087] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:20:49.215] [INFO] cheese - inserting 1000 documents. first: JB Patnaik and last: John MC Smith -[2018-02-13T08:20:49.312] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:20:49.617] [INFO] cheese - inserting 1000 documents. first: Louis the Sixteenth and last: Sleeman Centre (Guelph) -[2018-02-13T08:20:49.621] [INFO] cheese - inserting 1000 documents. first: Category:Adaptations of works by Raymond Chandler and last: Maya Kidowaki -[2018-02-13T08:20:49.672] [INFO] cheese - inserting 1000 documents. first: Radivojević and last: Wikipedia:Articles for deletion/Yahya Arodaki -[2018-02-13T08:20:49.713] [INFO] cheese - inserting 1000 documents. first: Cañon City Record and last: The Apology of Sokrates -[2018-02-13T08:20:49.734] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:20:49.752] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:20:49.828] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:20:49.844] [INFO] cheese - inserting 1000 documents. first: File:Morris Seal.jpg and last: 1972 Torneo Descentralizado -[2018-02-13T08:20:49.849] [INFO] cheese - inserting 1000 documents. first: File:Lineage on Gv6.gif and last: KT Oslin -[2018-02-13T08:20:49.968] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:20:49.953] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:20:50.037] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:20:50.145] [INFO] cheese - inserting 1000 documents. first: Presidents of the U.S.A. and last: Hawkins Island -[2018-02-13T08:20:50.226] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:20:50.309] [INFO] cheese - inserting 1000 documents. first: Store-and-forward switching center and last: Nemertea -[2018-02-13T08:20:50.440] [INFO] cheese - inserting 1000 documents. first: Paris peace conference 1919 and last: Category:Frauen DFB-Pokal seasons -[2018-02-13T08:20:50.484] [INFO] cheese - inserting 1000 documents. first: Kemeny Castle (Brancovenesti) and last: Teresa Miller -[2018-02-13T08:20:50.499] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:20:50.503] [INFO] cheese - inserting 1000 documents. first: ZFHX3 and last: Street Mobster -[2018-02-13T08:20:50.528] [INFO] cheese - batch complete in: 2.741 secs -[2018-02-13T08:20:50.558] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:20:50.597] [INFO] cheese - inserting 1000 documents. first: Euthyphron and last: Hypognathous -[2018-02-13T08:20:50.696] [INFO] cheese - inserting 1000 documents. first: LTU International Airlines and last: It Had to Be You (TV series) -[2018-02-13T08:20:50.708] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:20:50.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2005-05-16/Image uploading and last: Category:Forgotten Realms stubs -[2018-02-13T08:20:50.873] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:20:50.906] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:20:51.100] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T08:20:51.297] [INFO] cheese - inserting 1000 documents. first: Category:Furman University and last: East Berkshire -[2018-02-13T08:20:51.404] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T08:20:51.565] [INFO] cheese - inserting 1000 documents. first: Stray dogs in Bangkok and last: Lucknow Charbagh Railway Station -[2018-02-13T08:20:51.657] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:20:51.698] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/GreenEarth Cleaning/Archive and last: Anders Göran Kulläng -[2018-02-13T08:20:51.771] [INFO] cheese - inserting 1000 documents. first: Nate Davis and last: Pretty Polly (film) -[2018-02-13T08:20:51.776] [INFO] cheese - inserting 1000 documents. first: Charles Glover (disambiguation) and last: Centre National d'Art et de Culture Georges -[2018-02-13T08:20:51.814] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/OCEF and last: Category:Norton Records artists -[2018-02-13T08:20:51.825] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:20:51.917] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T08:20:51.926] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:20:52.075] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:20:52.339] [INFO] cheese - inserting 1000 documents. first: Akrom Yo‘ldoshev and last: First Baptist Church of Ottawa -[2018-02-13T08:20:52.348] [INFO] cheese - inserting 1000 documents. first: Population of Pudong and last: The Sower (Grohar) -[2018-02-13T08:20:52.449] [INFO] cheese - inserting 1000 documents. first: Berkshire East and last: Spanish Coquina Quarries -[2018-02-13T08:20:52.449] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:20:52.509] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:20:52.545] [INFO] cheese - inserting 1000 documents. first: Homorthodes lindseyi and last: Ace of swords -[2018-02-13T08:20:52.554] [INFO] cheese - inserting 1000 documents. first: Category:Beninese people of American descent and last: Hinigaran, Negros Occidental -[2018-02-13T08:20:52.593] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:20:52.650] [INFO] cheese - inserting 1000 documents. first: St. Bride of Kildare and last: SYNPR -[2018-02-13T08:20:52.631] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:20:52.710] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:20:52.728] [INFO] cheese - inserting 1000 documents. first: Max eastley and last: Wikipedia:WikiProject Spam/LinkReports/uzbek-film.ru -[2018-02-13T08:20:52.791] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:20:52.896] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:20:53.095] [INFO] cheese - inserting 1000 documents. first: Ace of wands and last: List of Microscopy Visualization Systems -[2018-02-13T08:20:53.124] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T08:20:53.170] [INFO] cheese - inserting 1000 documents. first: Canoeing at the 2015 Southeast Asian Games – Men's K-2 1000 metres and last: Johan Persson (disambiguation) -[2018-02-13T08:20:53.174] [INFO] cheese - inserting 1000 documents. first: Cheonma and last: Papyrus Oxyrhynchus 267 -[2018-02-13T08:20:53.244] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:20:53.270] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:20:53.356] [INFO] cheese - inserting 1000 documents. first: Category:Musicians from Georgia (country) by instrument and last: Al-Adiliyah Mosque -[2018-02-13T08:20:53.425] [INFO] cheese - inserting 1000 documents. first: Perry, Fl and last: KIYK -[2018-02-13T08:20:53.432] [INFO] cheese - inserting 1000 documents. first: List of Brazilian television channels and last: SECA -[2018-02-13T08:20:53.432] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:20:53.454] [INFO] cheese - inserting 1000 documents. first: Adorcelino wesley gomes da silva and last: Agriculture in cuba -[2018-02-13T08:20:53.486] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:20:53.540] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:20:53.601] [INFO] cheese - inserting 1000 documents. first: Norton and Nancy Dodge Collection of Soviet Nonconformist Art and last: Joseph Rene Bellot -[2018-02-13T08:20:53.611] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:20:53.728] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:20:53.796] [INFO] cheese - inserting 1000 documents. first: Reunite (disambiguation) and last: Xoylu (Shamakhi) -[2018-02-13T08:20:53.883] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:20:53.898] [INFO] cheese - inserting 1000 documents. first: Baby Lloyd and last: Zeyti-ye Do -[2018-02-13T08:20:53.928] [INFO] cheese - inserting 1000 documents. first: Agriculture in cyprus and last: Inalta Curte de Casatie si Justitie -[2018-02-13T08:20:53.992] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:20:54.021] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:20:54.035] [INFO] cheese - inserting 1000 documents. first: Studio Theatre in Łódź and last: Template:Slovenia-poli-stub -[2018-02-13T08:20:54.065] [INFO] cheese - inserting 1000 documents. first: Platyhelmintha and last: Printing -[2018-02-13T08:20:54.120] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:20:54.208] [INFO] cheese - inserting 1000 documents. first: Drain, Or and last: Rhy -[2018-02-13T08:20:54.242] [INFO] cheese - inserting 1000 documents. first: File:IPod Zune Comparison.jpg and last: Kedzie station (CTA Green Line) -[2018-02-13T08:20:54.276] [INFO] cheese - batch complete in: 3.748 secs -[2018-02-13T08:20:54.305] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:20:54.347] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:20:54.366] [INFO] cheese - inserting 1000 documents. first: 1997 RFL Division Two and last: Toney Penna (Tri-Rail) -[2018-02-13T08:20:54.448] [INFO] cheese - inserting 1000 documents. first: Malaxis crenulata and last: EDG7 -[2018-02-13T08:20:54.472] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:20:54.539] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:54.601] [INFO] cheese - inserting 1000 documents. first: David Paul Weber and last: Wikipedia:Articles for deletion/Palestinian Peruvian -[2018-02-13T08:20:54.685] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:20:54.691] [INFO] cheese - inserting 1000 documents. first: Template:BosniaHerzegovina-poli-stub and last: Category:People from St. Joseph, Michigan -[2018-02-13T08:20:54.774] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:20:54.818] [INFO] cheese - inserting 1000 documents. first: PocketZip and last: Povel -[2018-02-13T08:20:54.990] [INFO] cheese - inserting 1000 documents. first: American society of appraisers and last: Apollodorus of pergamon -[2018-02-13T08:20:55.015] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:20:55.030] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:20:55.160] [INFO] cheese - inserting 1000 documents. first: Blodgett, Oregon and last: Cass Township, Indiana -[2018-02-13T08:20:55.161] [INFO] cheese - inserting 1000 documents. first: Malcom and Melvin and last: Gérald Mossé -[2018-02-13T08:20:55.251] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:20:55.282] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:20:55.305] [INFO] cheese - inserting 1000 documents. first: Anishinaabe Center and last: Category:1933 establishments in Asia -[2018-02-13T08:20:55.306] [INFO] cheese - inserting 1000 documents. first: G.j. and last: Transport in Somaliland -[2018-02-13T08:20:55.364] [INFO] cheese - inserting 1000 documents. first: Apollodorus of seleucia and last: Ashdod port attack -[2018-02-13T08:20:55.376] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:20:55.396] [INFO] cheese - batch complete in: 0.38 secs -[2018-02-13T08:20:55.401] [INFO] cheese - inserting 1000 documents. first: Massilia cf. timonae and last: ප -[2018-02-13T08:20:55.428] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:20:55.527] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:20:55.697] [INFO] cheese - inserting 1000 documents. first: Ashdon halt railway station and last: Baby boy da prince -[2018-02-13T08:20:55.707] [INFO] cheese - inserting 1000 documents. first: Cedar Creek Township, Indiana and last: Ririe, Id -[2018-02-13T08:20:55.722] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T08:20:55.784] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:20:55.830] [INFO] cheese - inserting 1000 documents. first: Ramel Povel and last: NATO expansion -[2018-02-13T08:20:55.957] [INFO] cheese - inserting 1000 documents. first: Directive 93/98/EEC and last: Eppan -[2018-02-13T08:20:55.958] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:20:56.017] [INFO] cheese - inserting 1000 documents. first: Extreme points of Kazakhstan and last: Čtvrtlík -[2018-02-13T08:20:56.036] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:20:56.060] [INFO] cheese - inserting 1000 documents. first: Category:18th-century establishments in the French colonial empire and last: Franjo Dijak -[2018-02-13T08:20:56.077] [INFO] cheese - inserting 1000 documents. first: Baby come on over and last: Bangladesh university of engineering and technology -[2018-02-13T08:20:56.112] [INFO] cheese - inserting 1000 documents. first: ඵ and last: Illinois Route 42 -[2018-02-13T08:20:56.122] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T08:20:56.137] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:20:56.165] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:20:56.254] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:56.314] [INFO] cheese - inserting 1000 documents. first: Chen Di (linguist) and last: Royerton, Indiana -[2018-02-13T08:20:56.392] [INFO] cheese - inserting 1000 documents. first: Bangladesh university of professionals and last: Bart van der leck -[2018-02-13T08:20:56.402] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:20:56.457] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T08:20:56.846] [INFO] cheese - inserting 1000 documents. first: Draft:Shellyph/my sandbox and last: White Congolese -[2018-02-13T08:20:56.848] [INFO] cheese - inserting 1000 documents. first: Ambrose Ussher and last: Template:User Samoa -[2018-02-13T08:20:56.886] [INFO] cheese - inserting 1000 documents. first: Barthold douma van burmania and last: Battle of caesarea -[2018-02-13T08:20:56.892] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:20:56.907] [INFO] cheese - inserting 1000 documents. first: List of Fijian Heads of State and last: Mario Vazquez (album) -[2018-02-13T08:20:57.050] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:20:57.062] [INFO] cheese - inserting 1000 documents. first: Route 42 (Illinois) and last: Charlie Yeung -[2018-02-13T08:20:57.111] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:20:57.166] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:20:57.175] [INFO] cheese - inserting 1000 documents. first: Yugoslavian civil war and last: Manele -[2018-02-13T08:20:57.254] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:20:57.360] [INFO] cheese - batch complete in: 1.402 secs -[2018-02-13T08:20:57.589] [INFO] cheese - inserting 1000 documents. first: Battle of cagayan de misamis and last: Category:FC Dynamo Stavropol managers -[2018-02-13T08:20:57.599] [INFO] cheese - inserting 1000 documents. first: Smithfield, Indiana and last: B. Russell Murphy (football coach) -[2018-02-13T08:20:57.667] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:20:57.673] [INFO] cheese - inserting 1000 documents. first: Cavalcade (play) and last: March 28, 2002 -[2018-02-13T08:20:57.676] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:20:57.867] [INFO] cheese - inserting 1000 documents. first: Template:Pentagonal tiling table and last: Megaloprepia formosa -[2018-02-13T08:20:57.967] [INFO] cheese - batch complete in: 3.691 secs -[2018-02-13T08:20:57.982] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:20:58.049] [INFO] cheese - inserting 1000 documents. first: Palm Desert, Calif. and last: Thracian tomb Shushmanets -[2018-02-13T08:20:58.133] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Devizes Town and last: Mohammad Mokhtari (protester) -[2018-02-13T08:20:58.163] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:20:58.167] [INFO] cheese - inserting 1000 documents. first: Kalgin Island and last: Marano (river) -[2018-02-13T08:20:58.171] [INFO] cheese - inserting 1000 documents. first: Battle of jalula and last: Battle of philiphaugh -[2018-02-13T08:20:58.212] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:20:58.283] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:20:58.324] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:20:58.427] [INFO] cheese - inserting 1000 documents. first: Joseph Lightner (football coach) and last: Nicolas Girod -[2018-02-13T08:20:58.556] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:20:58.560] [INFO] cheese - inserting 1000 documents. first: Battle of philippeville and last: Oxycodone/naloxone -[2018-02-13T08:20:58.621] [INFO] cheese - inserting 1000 documents. first: Raw Food Diet and last: Bank of nova scotia -[2018-02-13T08:20:58.635] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:20:58.788] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:20:58.870] [INFO] cheese - inserting 1000 documents. first: Bruce Hobbs (scientist) and last: Peruvian Democratic Constituent Congress election, 1992 -[2018-02-13T08:20:58.923] [INFO] cheese - inserting 1000 documents. first: Julie Lopes Curval and last: United States Senate election in Idaho, 1962 -[2018-02-13T08:20:58.999] [INFO] cheese - inserting 1000 documents. first: Battle of worringen and last: Beer in ireland -[2018-02-13T08:20:59.046] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:20:59.082] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:20:59.106] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:20:59.156] [INFO] cheese - inserting 1000 documents. first: Typhinae and last: Wikipedia:Articles for deletion/Provanhall -[2018-02-13T08:20:59.237] [INFO] cheese - inserting 1000 documents. first: Cormac Mac Art and last: File:NITJ Admin Block.jpg -[2018-02-13T08:20:59.297] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:20:59.407] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:20:59.565] [INFO] cheese - inserting 1000 documents. first: 2008 Democratic Presidential Primaries (Results) and last: Category:Arkansas road transport articles by importance -[2018-02-13T08:20:59.576] [INFO] cheese - inserting 1000 documents. first: Minuscule 460 and last: Bertrand de jouvenel -[2018-02-13T08:20:59.626] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:20:59.667] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:20:59.893] [INFO] cheese - inserting 1000 documents. first: United States Senate election in Idaho, 1966 and last: El Espinal, Los Santos -[2018-02-13T08:20:59.903] [INFO] cheese - inserting 1000 documents. first: Ligo Feast and last: Category:Fire stations completed in 1937 -[2018-02-13T08:20:59.945] [INFO] cheese - inserting 1000 documents. first: Bertrand de molleville and last: Birbhum institute of technology -[2018-02-13T08:20:59.935] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:20:59.983] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:21:00.005] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:21:00.144] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for arbitration/Wareware/Evidence and last: Panoramagram -[2018-02-13T08:21:00.154] [INFO] cheese - inserting 1000 documents. first: Category:Electric railways in Mexico and last: Pöschl -[2018-02-13T08:21:00.155] [INFO] cheese - inserting 1000 documents. first: Landoger Trow and last: Charles William Jones House -[2018-02-13T08:21:00.222] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:21:00.218] [INFO] cheese - batch complete in: 1.43 secs -[2018-02-13T08:21:00.283] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:21:00.340] [INFO] cheese - inserting 1000 documents. first: Birch mountains kimberlite field and last: Bloodchild and other stories -[2018-02-13T08:21:00.442] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:21:00.496] [INFO] cheese - inserting 1000 documents. first: Category:Colorado road transport articles by quality and last: Portal:Louisville/Sunnyside/8 -[2018-02-13T08:21:00.611] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:21:00.679] [INFO] cheese - inserting 1000 documents. first: Category:Sri Lankan American and last: Wikipedia:CULTIVAR -[2018-02-13T08:21:00.688] [INFO] cheese - inserting 1000 documents. first: Blooded on arachne and last: Category:Turkish company stubs -[2018-02-13T08:21:00.727] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T08:21:00.818] [INFO] cheese - inserting 1000 documents. first: Category:Comiskey family and last: Albert Schreiner -[2018-02-13T08:21:00.839] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:21:00.904] [INFO] cheese - inserting 1000 documents. first: Phyre2 and last: Airflow mechanism -[2018-02-13T08:21:00.934] [INFO] cheese - inserting 1000 documents. first: Jack McDevitt and last: Battle of Naissus -[2018-02-13T08:21:00.952] [INFO] cheese - inserting 1000 documents. first: K2r riddim and last: All the Negatives Have Been Destroyed -[2018-02-13T08:21:00.987] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:21:00.987] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:21:01.053] [INFO] cheese - inserting 1000 documents. first: Augusto B. Leguía y Salcedo and last: Dimocarpus longan -[2018-02-13T08:21:01.050] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:21:01.123] [INFO] cheese - inserting 1000 documents. first: Boot stamping on a human face forever and last: Breathing for a living -[2018-02-13T08:21:01.153] [INFO] cheese - batch complete in: 3.186 secs -[2018-02-13T08:21:01.143] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:21:01.163] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:21:01.428] [INFO] cheese - inserting 1000 documents. first: Caprellida and last: It Happens All the Time -[2018-02-13T08:21:01.517] [INFO] cheese - inserting 1000 documents. first: Breathing the water and last: Broken stone in uji bridge -[2018-02-13T08:21:01.517] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:21:01.578] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:21:01.587] [INFO] cheese - inserting 1000 documents. first: Strikeforce Challengers: Riggs vs. Taylor and last: Category:Psychiatric instruments: mania -[2018-02-13T08:21:01.646] [INFO] cheese - inserting 1000 documents. first: Category:1530s establishments in New France and last: Category:1751 establishments in Europe -[2018-02-13T08:21:01.667] [INFO] cheese - inserting 1000 documents. first: Organizational Dissent and last: St John Fisher Catholic High School, Peterborough -[2018-02-13T08:21:01.672] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:21:01.797] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:01.857] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:21:01.871] [INFO] cheese - inserting 1000 documents. first: Bob Ralston and last: Route 111 (Virginia) -[2018-02-13T08:21:01.904] [INFO] cheese - inserting 1000 documents. first: Broken in pieces and last: Pro rata cancellation -[2018-02-13T08:21:01.973] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:21:01.978] [INFO] cheese - inserting 1000 documents. first: Category:St. Cloud, Minnesota and last: Arthur Newbery park -[2018-02-13T08:21:02.054] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:21:02.135] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:21:02.314] [INFO] cheese - inserting 1000 documents. first: Bureau of military history and last: Trudy (American comic strip) -[2018-02-13T08:21:02.316] [INFO] cheese - inserting 1000 documents. first: Suriname national under-20 football team and last: Tick Bonesteel -[2018-02-13T08:21:02.375] [INFO] cheese - inserting 1000 documents. first: Category:2012 establishments in Slovenia and last: Template:Factual accuracy -[2018-02-13T08:21:02.386] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:21:02.414] [INFO] cheese - inserting 1000 documents. first: Surgical knot and last: Dublin City Gallery The Hugh Lane -[2018-02-13T08:21:02.432] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:21:02.562] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:21:02.651] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:21:02.802] [INFO] cheese - inserting 1000 documents. first: Virginia Route 111 and last: French ship Bretagne -[2018-02-13T08:21:02.804] [INFO] cheese - inserting 1000 documents. first: U.S. Route 223 in Ohio and last: Clay Township, Andrew County, Missouri -[2018-02-13T08:21:02.871] [INFO] cheese - inserting 1000 documents. first: Vielka Veronica Valenzuela Lama and last: Canadian lesbian and gay archives -[2018-02-13T08:21:03.006] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:21:03.011] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:21:03.075] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:21:03.328] [INFO] cheese - inserting 1000 documents. first: Elizabeth Steiner Hayward and last: XIA 1st World Tour Concert (2012) -[2018-02-13T08:21:03.348] [INFO] cheese - inserting 1000 documents. first: Daniel Lee and last: Pericallis x hybrida -[2018-02-13T08:21:03.358] [INFO] cheese - inserting 1000 documents. first: Canadian letters and images project and last: Capital punishment in hong kong -[2018-02-13T08:21:03.397] [INFO] cheese - inserting 1000 documents. first: Sister Susie's Sewing Shirts for Soldiers and last: Coomi kapoor -[2018-02-13T08:21:03.407] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:21:03.425] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T08:21:03.480] [INFO] cheese - inserting 1000 documents. first: George Fenwick (disambiguation) and last: Wikipedia:WikiProject Spam/Local/capitalpower.com -[2018-02-13T08:21:03.530] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:21:03.554] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:21:03.661] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:21:03.742] [INFO] cheese - inserting 1000 documents. first: Capital punishment in hungary and last: Wikipedia:Articles for deletion/The Fallouts -[2018-02-13T08:21:03.793] [INFO] cheese - inserting 1000 documents. first: Nevada State Route 878 and last: Chkhalta -[2018-02-13T08:21:03.803] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:21:03.902] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:21:03.913] [INFO] cheese - inserting 1000 documents. first: 3rd Legions Infantry Division and last: Disco dance floor -[2018-02-13T08:21:03.971] [INFO] cheese - inserting 1000 documents. first: Eamonn Keane and last: Category:French foresters -[2018-02-13T08:21:04.013] [INFO] cheese - inserting 1000 documents. first: Strange loop and last: Link awareness -[2018-02-13T08:21:04.021] [INFO] cheese - inserting 1000 documents. first: Fleet Flag Officer 2nd rank and last: Muhammad Hargianto -[2018-02-13T08:21:04.034] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:21:04.067] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:21:04.106] [INFO] cheese - inserting 1000 documents. first: Cassa di risparmio della repubblica di san marino and last: Celia kitzinger and sue wilkinson -[2018-02-13T08:21:04.179] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T08:21:04.205] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:21:04.323] [INFO] cheese - inserting 1000 documents. first: Waldron-Haslam and last: Jm. -[2018-02-13T08:21:04.323] [INFO] cheese - batch complete in: 3.17 secs -[2018-02-13T08:21:04.425] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:21:04.461] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fictional Frontiers with Sohaib and last: Centre of communist revolutionaries of india -[2018-02-13T08:21:04.462] [INFO] cheese - inserting 1000 documents. first: Bos gruniens and last: Keihin Tohoku Line -[2018-02-13T08:21:04.490] [INFO] cheese - batch complete in: 0.31 secs -[2018-02-13T08:21:04.603] [INFO] cheese - inserting 1000 documents. first: Marieke and last: Kim Hyaun-chang -[2018-02-13T08:21:04.765] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:21:04.776] [INFO] cheese - inserting 1000 documents. first: Category:Journalists killed in East Timor and last: Land and sea breeze -[2018-02-13T08:21:04.804] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:21:04.860] [INFO] cheese - inserting 1000 documents. first: Joan Hall (UK politician) and last: List of mountain peaks of Martinique -[2018-02-13T08:21:04.901] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:21:04.909] [INFO] cheese - inserting 1000 documents. first: Centre of contemporary art and last: Charles de marillac -[2018-02-13T08:21:04.946] [INFO] cheese - inserting 1000 documents. first: Gmina Miłki and last: Chassidic philosophy -[2018-02-13T08:21:04.976] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:21:05.014] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:21:05.122] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:21:05.252] [INFO] cheese - inserting 1000 documents. first: Lo. and last: Church of All Saints, Haugham -[2018-02-13T08:21:05.340] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:21:05.360] [INFO] cheese - inserting 1000 documents. first: Charles de mazade and last: China central radio and tv university -[2018-02-13T08:21:05.406] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T08:21:05.562] [INFO] cheese - inserting 1000 documents. first: Gim Hyaun-chang and last: Category:Sports clubs established in 1886 -[2018-02-13T08:21:05.660] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:21:05.731] [INFO] cheese - inserting 1000 documents. first: List of mountain peaks of Saint Vincent and the Grenadines and last: あひるの空 -[2018-02-13T08:21:05.794] [INFO] cheese - inserting 1000 documents. first: Moroccan architecture and last: Category:New Orleans Saints players -[2018-02-13T08:21:05.846] [INFO] cheese - inserting 1000 documents. first: China central television headquarters building and last: Chrysler k platform -[2018-02-13T08:21:05.863] [INFO] cheese - inserting 1000 documents. first: 1980–1981 United States network television schedule (late night) and last: Category:1785 in Connecticut -[2018-02-13T08:21:05.930] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:21:05.975] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:21:05.985] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:21:06.100] [INFO] cheese - inserting 1000 documents. first: Cardigans Best of and last: Mary V. Wade -[2018-02-13T08:21:06.126] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:21:06.233] [INFO] cheese - inserting 1000 documents. first: Category:Bolivian long-distance runners and last: Lankadahanam -[2018-02-13T08:21:06.258] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:21:06.366] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:21:06.516] [INFO] cheese - inserting 1000 documents. first: Chrysler la engine and last: City of adelaide pipe band -[2018-02-13T08:21:06.599] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:21:06.701] [INFO] cheese - inserting 1000 documents. first: Elvis & JV and last: Owston -[2018-02-13T08:21:06.766] [INFO] cheese - inserting 1000 documents. first: Nanyang Film Company and last: Hoboken High School -[2018-02-13T08:21:06.796] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:21:06.830] [INFO] cheese - inserting 1000 documents. first: Itt a szabadság! and last: Category:1989–90 in German football -[2018-02-13T08:21:06.862] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:21:06.935] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:06.994] [INFO] cheese - inserting 1000 documents. first: City of alachua downtown historic district and last: Clerk of the green cloth -[2018-02-13T08:21:07.032] [INFO] cheese - batch complete in: 0.433 secs -[2018-02-13T08:21:07.123] [INFO] cheese - inserting 1000 documents. first: Mg. and last: Warchild (album) -[2018-02-13T08:21:07.183] [INFO] cheese - inserting 1000 documents. first: Tufted Puffins and last: Brima Acha Kamara -[2018-02-13T08:21:07.228] [INFO] cheese - inserting 1000 documents. first: Communist Party of the Portuguese Workers and last: Battle of Podul Înalt -[2018-02-13T08:21:07.240] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:21:07.360] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:21:07.434] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:21:07.458] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dealwithus.co.in and last: Augustus Cornelius Johnson, Jr. -[2018-02-13T08:21:07.514] [INFO] cheese - inserting 1000 documents. first: Clerk of the house of commons and last: Coat of arms of syria -[2018-02-13T08:21:07.539] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:21:07.588] [INFO] cheese - inserting 1000 documents. first: Category:1990–91 in German football and last: 1991–1992 United States network television schedule (Saturday morning) -[2018-02-13T08:21:07.592] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:21:07.734] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:21:07.897] [INFO] cheese - inserting 1000 documents. first: Stanley Baldwin and last: Single-occupancy vehicle -[2018-02-13T08:21:07.912] [INFO] cheese - inserting 1000 documents. first: Broken Melody and last: Colonial militia in canada -[2018-02-13T08:21:07.959] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T08:21:08.088] [INFO] cheese - inserting 1000 documents. first: Category:1688 establishments by continent and last: Encephalo-myelitis periaxialis scleroticans -[2018-02-13T08:21:08.112] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pilgrim Gardens Shopping Center and last: Earthquake hypocenter -[2018-02-13T08:21:08.179] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:21:08.197] [INFO] cheese - batch complete in: 3.873 secs -[2018-02-13T08:21:08.275] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:21:08.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Translation/Rublevka and last: Wikipedia:Articles for deletion/List of Grand Theft Auto: San Andreas Missions -[2018-02-13T08:21:08.331] [INFO] cheese - inserting 1000 documents. first: 1992–1993 United States network television schedule (Saturday morning) and last: Val Meets... The VIPS -[2018-02-13T08:21:08.443] [INFO] cheese - inserting 1000 documents. first: Colonial navies of australia and last: Communes of the martinique department -[2018-02-13T08:21:08.472] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:21:08.523] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:21:08.548] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:21:08.640] [INFO] cheese - inserting 1000 documents. first: CZilla and last: Cochimi-Yuman -[2018-02-13T08:21:08.816] [INFO] cheese - batch complete in: 1.382 secs -[2018-02-13T08:21:09.004] [INFO] cheese - inserting 1000 documents. first: Harold Mutobola and last: Selinum anisum -[2018-02-13T08:21:09.092] [INFO] cheese - inserting 1000 documents. first: Communes of the mayenne department and last: AtomRedMetZoloto -[2018-02-13T08:21:09.138] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:21:09.160] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:21:09.303] [INFO] cheese - inserting 1000 documents. first: Terpna pratti and last: Supreme Council of the Lithuanian Republic -[2018-02-13T08:21:09.345] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in North Holland and last: ♭VII-I -[2018-02-13T08:21:09.422] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:21:09.529] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/clubgalactik.com and last: Constitution of burkina faso -[2018-02-13T08:21:09.571] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:21:09.614] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:21:09.619] [INFO] cheese - inserting 1000 documents. first: 2000 Webby Awards and last: Template:UK Breakfast TV -[2018-02-13T08:21:09.849] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:21:09.927] [INFO] cheese - inserting 1000 documents. first: Seseli gilliesii and last: Nyfco.net -[2018-02-13T08:21:10.151] [INFO] cheese - inserting 1000 documents. first: Category:Images of Greece and last: Wikipedia:Reference desk/Archives/Science/2013 March 2 -[2018-02-13T08:21:10.201] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:21:10.249] [INFO] cheese - inserting 1000 documents. first: Constitution of burma and last: Cornelis van tienhoven -[2018-02-13T08:21:10.248] [INFO] cheese - inserting 1000 documents. first: Shalersville Township, Portage County, Ohio and last: Afrikaans (Eastern Cape dialect) -[2018-02-13T08:21:10.360] [INFO] cheese - inserting 1000 documents. first: Route 136 (Virginia) and last: Human Trafficking -[2018-02-13T08:21:10.431] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:21:10.445] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:21:10.604] [INFO] cheese - batch complete in: 1.787 secs -[2018-02-13T08:21:10.847] [INFO] cheese - inserting 1000 documents. first: BVII-I and last: Omen Engine -[2018-02-13T08:21:10.970] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Resource Exchange/Resource Request and last: File:JodiNumberOne.jpg -[2018-02-13T08:21:11.081] [INFO] cheese - inserting 1000 documents. first: Cornelis van vollenhoven and last: James Bernard Fay -[2018-02-13T08:21:11.149] [INFO] cheese - batch complete in: 1.577 secs -[2018-02-13T08:21:11.158] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:21:11.178] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T08:21:11.317] [INFO] cheese - batch complete in: 4.52 secs -[2018-02-13T08:21:11.400] [INFO] cheese - inserting 1000 documents. first: Kiernan's Corner and last: Category:Visby-class corvettes -[2018-02-13T08:21:11.459] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:21:11.521] [INFO] cheese - inserting 1000 documents. first: Ofcs.org and last: Category:2005 establishments in Africa -[2018-02-13T08:21:11.787] [INFO] cheese - inserting 1000 documents. first: Country of particular concern and last: Arnshtam -[2018-02-13T08:21:11.824] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:21:11.960] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:21:12.099] [INFO] cheese - inserting 1000 documents. first: DOS32 and last: Philip Courtenay (died 1406) -[2018-02-13T08:21:12.135] [INFO] cheese - inserting 1000 documents. first: Tafilalt and last: GOELRO plan -[2018-02-13T08:21:12.155] [INFO] cheese - inserting 1000 documents. first: Category:Stockholm-class corvettes and last: Category:1967 NCAA University Division independents football season -[2018-02-13T08:21:12.239] [INFO] cheese - inserting 1000 documents. first: Quercus kelloggii and last: Van de Graaff generator -[2018-02-13T08:21:12.264] [INFO] cheese - inserting 1000 documents. first: Andel, Côtes-d'Armor and last: Canelas (Arouca) -[2018-02-13T08:21:12.269] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:21:12.281] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:21:12.385] [INFO] cheese - batch complete in: 1.781 secs -[2018-02-13T08:21:12.493] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:21:12.571] [INFO] cheese - inserting 1000 documents. first: Category:2006 establishments in Africa and last: Lawrence Hazard -[2018-02-13T08:21:12.645] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:21:12.956] [INFO] cheese - inserting 1000 documents. first: Bunty Bailey and last: Wikipedia:WikiProject Spam/LinkReports/conceptualfiction.com -[2018-02-13T08:21:13.074] [INFO] cheese - batch complete in: 4.877 secs -[2018-02-13T08:21:13.163] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T08:21:13.166] [INFO] cheese - inserting 1000 documents. first: H.V. Conolly and last: David Phillipson -[2018-02-13T08:21:13.256] [INFO] cheese - inserting 1000 documents. first: Portal:Australia/Featured picture/Week 3, 2008 and last: March 29, 2006 Capitol Hill Police Incident -[2018-02-13T08:21:13.294] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:21:13.301] [INFO] cheese - inserting 1000 documents. first: Category:Truman family residences and last: Category:Mountains and hills of Rhondda Cynon Taf -[2018-02-13T08:21:13.302] [INFO] cheese - inserting 1000 documents. first: Max Cassidy and last: George Gulliver -[2018-02-13T08:21:13.351] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:21:13.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Byeard Maggott and last: Cheboksarski Raion -[2018-02-13T08:21:13.433] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:21:13.498] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:21:13.582] [INFO] cheese - batch complete in: 2.265 secs -[2018-02-13T08:21:13.881] [INFO] cheese - inserting 1000 documents. first: Hydroelectric power plant and last: Mikolaj z Bogoryi i Skotnik -[2018-02-13T08:21:13.911] [INFO] cheese - inserting 1000 documents. first: Supplementary oxygen and last: Pissutsit -[2018-02-13T08:21:14.012] [INFO] cheese - batch complete in: 1.627 secs -[2018-02-13T08:21:14.016] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:21:14.077] [INFO] cheese - inserting 1000 documents. first: Hettstädt and last: Wikipedia:WikiProject Spam/LinkReports/eonon.com -[2018-02-13T08:21:14.092] [INFO] cheese - inserting 1000 documents. first: Krim Belkacem Airport and last: H. R. Piyasiri -[2018-02-13T08:21:14.244] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:21:14.259] [INFO] cheese - inserting 1000 documents. first: Category:Cricket grounds in Hertfordshire and last: Amphoe Ban Ta Khun -[2018-02-13T08:21:14.264] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:21:14.326] [INFO] cheese - inserting 1000 documents. first: Only Right and last: Baie Georgienne -[2018-02-13T08:21:14.341] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians who convert reference tags and last: Rich Animation Studios -[2018-02-13T08:21:14.348] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:21:14.435] [INFO] cheese - inserting 1000 documents. first: Category:Argentine literary magazines and last: Category:Admiralty M-class destroyers -[2018-02-13T08:21:14.491] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:21:14.523] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:21:14.550] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:21:14.822] [INFO] cheese - inserting 1000 documents. first: Amphoe Phanom and last: Antilepsin -[2018-02-13T08:21:14.883] [INFO] cheese - inserting 1000 documents. first: LST 3035 and last: David Walsh (disambiguation) -[2018-02-13T08:21:14.887] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:21:14.962] [INFO] cheese - inserting 1000 documents. first: Stanislawa z Bogoryi i Skotnik and last: Jeep Jeepster Commando -[2018-02-13T08:21:14.988] [INFO] cheese - inserting 1000 documents. first: Santhosh Thundiyil and last: Bushmanland (disambiguation) -[2018-02-13T08:21:14.990] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:21:14.993] [INFO] cheese - inserting 1000 documents. first: WBFG (FM) and last: Vomit fruit -[2018-02-13T08:21:15.068] [INFO] cheese - inserting 1000 documents. first: Koi plaa and last: Klein-Flugzeugträger -[2018-02-13T08:21:15.107] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:21:15.190] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:21:15.195] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:21:15.212] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:21:15.318] [INFO] cheese - inserting 1000 documents. first: File:Triptychdeluxeedition.jpg and last: File:Phantom1922DVD.jpg -[2018-02-13T08:21:15.441] [INFO] cheese - inserting 1000 documents. first: Cloazepam and last: Peter Barnes (lighting designer) -[2018-02-13T08:21:15.443] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:21:15.503] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:15.635] [INFO] cheese - inserting 1000 documents. first: Werewolf of Bedburg and last: Wikipedia:Articles for deletion/Barbie as Rapunzel -[2018-02-13T08:21:15.641] [INFO] cheese - inserting 1000 documents. first: Flin Aerodrome and last: Wikipedia:Miscellany for deletion/Talk:Abyssinian (cat -[2018-02-13T08:21:15.670] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:21:15.688] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:21:15.709] [INFO] cheese - inserting 1000 documents. first: Category:2014 AFC Women's Asian Cup and last: Category:2010 disestablishments by continent -[2018-02-13T08:21:15.800] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:21:15.893] [INFO] cheese - inserting 1000 documents. first: Josefsdorf and last: Stupinii Prejmerului -[2018-02-13T08:21:15.961] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:21:15.976] [INFO] cheese - inserting 1000 documents. first: The ARC group and last: Luk tung sa on 6 -[2018-02-13T08:21:16.017] [INFO] cheese - inserting 1000 documents. first: Van de Graff generator and last: Vitamin P -[2018-02-13T08:21:16.024] [INFO] cheese - inserting 1000 documents. first: Province of North Gyeongsang and last: Batch file programming -[2018-02-13T08:21:16.078] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:21:16.084] [INFO] cheese - inserting 1000 documents. first: Corlm and last: The Institute of Peace and Conflict Studies -[2018-02-13T08:21:16.114] [INFO] cheese - inserting 1000 documents. first: 2012 ICC European T20 Championship Division Three and last: Pa-ye Godar -[2018-02-13T08:21:16.137] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:21:16.207] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:21:16.211] [INFO] cheese - inserting 1000 documents. first: Category:2011 disestablishments by continent and last: Category:Landforms of East Lothian -[2018-02-13T08:21:16.240] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:21:16.328] [INFO] cheese - batch complete in: 3.254 secs -[2018-02-13T08:21:16.345] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:21:16.508] [INFO] cheese - inserting 1000 documents. first: 1779 in Wales and last: Bikers for christ -[2018-02-13T08:21:16.608] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:21:16.738] [INFO] cheese - inserting 1000 documents. first: Portal:Logic/Selected article/12 and last: Product Liability -[2018-02-13T08:21:16.743] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of East Renfrewshire and last: Category:2000s disestablishments in Europe -[2018-02-13T08:21:16.748] [INFO] cheese - inserting 1000 documents. first: Khet Bangna and last: File:Sprague Electric Logo.jpg -[2018-02-13T08:21:16.772] [INFO] cheese - inserting 1000 documents. first: Perimeter/diameter and last: Amphoe Khao Chakan -[2018-02-13T08:21:16.788] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:21:16.816] [INFO] cheese - inserting 1000 documents. first: Guy Morel and last: File:BonoboDaysToCome.jpg -[2018-02-13T08:21:16.908] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:21:16.918] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:21:16.896] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:21:17.012] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:21:17.056] [INFO] cheese - inserting 1000 documents. first: Insight Magazine and last: Albert Schickedanz -[2018-02-13T08:21:17.189] [INFO] cheese - batch complete in: 1.111 secs -[2018-02-13T08:21:17.292] [INFO] cheese - inserting 1000 documents. first: Cinculeasa River and last: Peter Nyman -[2018-02-13T08:21:17.365] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:21:17.473] [INFO] cheese - inserting 1000 documents. first: Category:1990s disestablishments in Europe and last: Vracejte konve na místo (album) -[2018-02-13T08:21:17.479] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron 26 and last: Fluoxetine Hydrochloride -[2018-02-13T08:21:17.510] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:21:17.514] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:21:17.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Triumphant Institute of Management Education and last: Wikipedia:WikiProject Spam/LinkReports/kuzbass85.ru -[2018-02-13T08:21:17.579] [INFO] cheese - inserting 1000 documents. first: File:Originalremoteviewer.jpg and last: Louis Léonard de Loménie -[2018-02-13T08:21:17.632] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:21:17.680] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:21:17.844] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:No one really cares and last: Mohamed B. Daramy -[2018-02-13T08:21:17.912] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:21:17.926] [INFO] cheese - inserting 1000 documents. first: Scourie and last: File:Flags - crossed - do not swim.jpg -[2018-02-13T08:21:17.997] [INFO] cheese - inserting 1000 documents. first: Mannlicher 1893 and last: Carduus cynara -[2018-02-13T08:21:18.031] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:21:18.078] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:21:18.139] [INFO] cheese - inserting 1000 documents. first: Category:1966 NCAA University Division independents football season and last: Fathabad Rural District -[2018-02-13T08:21:18.209] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:21:18.255] [INFO] cheese - inserting 1000 documents. first: File:Wildhearts Fishing.jpg and last: Wikipedia:WikiProject Spam/LinkReports/philippinebeat.com -[2018-02-13T08:21:18.255] [INFO] cheese - inserting 1000 documents. first: Theodore Wirth and last: Wikipedia:WikiProject Louisville/Members -[2018-02-13T08:21:18.325] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:21:18.361] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:21:18.492] [INFO] cheese - inserting 1000 documents. first: Rulander Weiss and last: Halictus malachurus -[2018-02-13T08:21:18.492] [INFO] cheese - inserting 1000 documents. first: When I Stop Leavin' (I'll Be Gone) and last: Sauerbrunn -[2018-02-13T08:21:18.616] [INFO] cheese - inserting 1000 documents. first: Carduus scolymus and last: Friedrich August Karl Ferdinand Julius von Holstein -[2018-02-13T08:21:18.619] [INFO] cheese - inserting 1000 documents. first: Pantothenic acid and last: 970s BC -[2018-02-13T08:21:18.622] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:21:18.736] [INFO] cheese - batch complete in: 1.84 secs -[2018-02-13T08:21:18.753] [INFO] cheese - inserting 1000 documents. first: Template:Canadian federal election, 1911/Ottawa (City of) and last: Category:Robert D. Conrad-class oceanographic research ships of the Royal New Zealand Navy -[2018-02-13T08:21:18.789] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:21:18.802] [INFO] cheese - batch complete in: 2.474 secs -[2018-02-13T08:21:18.887] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:21:18.895] [INFO] cheese - inserting 1000 documents. first: Gerstmann Sträussler Scheinker syndrome and last: Music for a Stranger World -[2018-02-13T08:21:19.200] [INFO] cheese - inserting 1000 documents. first: Browne House, Stamford and last: Taku Mayumura -[2018-02-13T08:21:19.203] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:21:19.252] [INFO] cheese - inserting 1000 documents. first: Government worker and last: Baroness Miller of Hendon -[2018-02-13T08:21:19.303] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:21:19.330] [INFO] cheese - inserting 1000 documents. first: Dominator (The Time Frequency album) and last: El Patrón de la Vereda -[2018-02-13T08:21:19.335] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:21:19.481] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:21:19.581] [INFO] cheese - inserting 1000 documents. first: Category:Ukrainian school stubs and last: Dipterygonotus -[2018-02-13T08:21:19.589] [INFO] cheese - inserting 1000 documents. first: Akademisk Arkitektforening and last: Lobster malai curry -[2018-02-13T08:21:19.695] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:21:19.726] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:21:19.802] [INFO] cheese - inserting 1000 documents. first: John McDonald (pitcher) and last: Paramount Leader Hu Jintao -[2018-02-13T08:21:19.859] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T08:21:20.163] [INFO] cheese - inserting 1000 documents. first: Word of Thoth and last: Grosses Haff -[2018-02-13T08:21:20.244] [INFO] cheese - inserting 1000 documents. first: Category:Zimbabwean revolutionaries and last: Portal:Extinct and endangered species/Did you know -[2018-02-13T08:21:20.251] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:21:20.389] [INFO] cheese - inserting 1000 documents. first: Wilmer Allison, Jr. and last: Nenad Petrović (writer) -[2018-02-13T08:21:20.416] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:21:20.441] [INFO] cheese - inserting 1000 documents. first: Knowles (Middlesex cricketer) and last: Kurtz, Indiana -[2018-02-13T08:21:20.572] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:21:20.607] [INFO] cheese - inserting 1000 documents. first: Template:Europe of Nations and Freedom/meta/color and last: Château de Wahlenbourg -[2018-02-13T08:21:20.608] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:21:20.663] [INFO] cheese - inserting 1000 documents. first: Krata Ta Matia Sou Kleista and last: Nunn vs Georgia -[2018-02-13T08:21:20.694] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:21:20.774] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:21:20.866] [INFO] cheese - inserting 1000 documents. first: Busanjin-gu, Busan and last: Template:2010–11 in Israeli football -[2018-02-13T08:21:20.957] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:21:20.977] [INFO] cheese - inserting 1000 documents. first: Wielki Zalew and last: John Rawlinson -[2018-02-13T08:21:21.057] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:21:21.113] [INFO] cheese - inserting 1000 documents. first: West Germany national handball team and last: Abhijat Joshi -[2018-02-13T08:21:21.212] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:21:21.227] [INFO] cheese - inserting 1000 documents. first: Mark Zinger and last: Selwyn Sese Aala -[2018-02-13T08:21:21.239] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Italian War of 1542–46 and last: Lateral retinaculum -[2018-02-13T08:21:21.283] [INFO] cheese - inserting 1000 documents. first: Eutriana curtipendula and last: Category:1989 disestablishments in North America -[2018-02-13T08:21:21.330] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:21:21.348] [INFO] cheese - inserting 1000 documents. first: 980s BC and last: Lake Baikal -[2018-02-13T08:21:21.360] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:21:21.368] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:21:21.395] [INFO] cheese - inserting 1000 documents. first: Choko and last: Beta HCG -[2018-02-13T08:21:21.488] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:21:21.498] [INFO] cheese - batch complete in: 2.696 secs -[2018-02-13T08:21:21.655] [INFO] cheese - inserting 1000 documents. first: KUVE-TV and last: Spider-Man Origins -[2018-02-13T08:21:21.690] [INFO] cheese - inserting 1000 documents. first: Woods Hole fixed point theorem and last: Lee School (Leesburg, Florida) -[2018-02-13T08:21:21.722] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:21:21.756] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:21:21.894] [INFO] cheese - inserting 1000 documents. first: Category:1988 disestablishments in North America and last: Category:Transport in Uşak Province -[2018-02-13T08:21:21.974] [INFO] cheese - inserting 1000 documents. first: Category:Taekwondo in Armenia and last: Category:Tudor Revival architecture in Nebraska -[2018-02-13T08:21:21.987] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:21:22.016] [INFO] cheese - inserting 1000 documents. first: Blaze (song) and last: Template:Location map Paraguay -[2018-02-13T08:21:22.072] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:21:22.085] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:21:22.164] [INFO] cheese - inserting 1000 documents. first: Richard Baylie and last: Rebecca Lowe -[2018-02-13T08:21:22.225] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:21:22.241] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Danw12/User:Danw12/DCS and last: Kerr, Minnesota -[2018-02-13T08:21:22.337] [INFO] cheese - inserting 1000 documents. first: History of Suffolk, VA and last: A rape in cyberspace -[2018-02-13T08:21:22.420] [INFO] cheese - batch complete in: 1.463 secs -[2018-02-13T08:21:22.454] [INFO] cheese - inserting 1000 documents. first: Benvindo António Moreira and last: Occupation-induced contact dermatitis -[2018-02-13T08:21:22.465] [INFO] cheese - inserting 1000 documents. first: Heroes of Might and Magic VII and last: Anabel Thomas -[2018-02-13T08:21:22.491] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:21:22.507] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:21:22.561] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:21:22.584] [INFO] cheese - inserting 1000 documents. first: Missouri State Highway 11 and last: Missouri highway 64B -[2018-02-13T08:21:22.712] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:21:22.759] [INFO] cheese - inserting 1000 documents. first: Temaraia and last: LILRA2 -[2018-02-13T08:21:22.786] [INFO] cheese - inserting 1000 documents. first: Maram Piti and last: Fondicola -[2018-02-13T08:21:22.881] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:21:22.898] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:21:23.018] [INFO] cheese - inserting 1000 documents. first: Fake History (Re-release) - Epitaph Records (2011) and last: Mamas Don't Let Your Babies Grow Up To Be Cowboys (artwork) -[2018-02-13T08:21:23.108] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:21:23.119] [INFO] cheese - inserting 1000 documents. first: Route 64B (MO) and last: Geta Bera -[2018-02-13T08:21:23.173] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:21:23.167] [INFO] cheese - inserting 1000 documents. first: Sharda Ramlogan and last: Claudio Coldebella -[2018-02-13T08:21:23.182] [INFO] cheese - inserting 1000 documents. first: Occupation induced contact dermatitis and last: Myspaceim -[2018-02-13T08:21:23.247] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:21:23.305] [INFO] cheese - inserting 1000 documents. first: Bydo and last: Wikipedia:Articles for deletion/Are You Sure -[2018-02-13T08:21:23.316] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:21:23.351] [INFO] cheese - inserting 1000 documents. first: PIM2 (gene) and last: LAYLAH Antirecords -[2018-02-13T08:21:23.439] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:21:23.469] [INFO] cheese - inserting 1000 documents. first: Missouri State Route 107 and last: State Highway 151 (MO) -[2018-02-13T08:21:23.475] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:21:23.509] [INFO] cheese - inserting 1000 documents. first: Yank (Automobile) and last: UDP-glucose:protein 4-alpha-glucosyltransferase -[2018-02-13T08:21:23.540] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T08:21:23.662] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:21:23.685] [INFO] cheese - inserting 1000 documents. first: File:Witchfinder general resurrected.jpg and last: Category:1802 establishments in Ireland -[2018-02-13T08:21:23.775] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:21:23.823] [INFO] cheese - inserting 1000 documents. first: Valerie (Mark Ronson song) and last: Desdemona Mazza -[2018-02-13T08:21:23.858] [INFO] cheese - inserting 1000 documents. first: Oskars Cibuļskis and last: Category:Racehorses trained in Barbados -[2018-02-13T08:21:23.911] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:21:23.931] [INFO] cheese - inserting 1000 documents. first: Andorran Federation of Ice Sports and last: Route 213 (Missouri) -[2018-02-13T08:21:23.931] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:24.006] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:21:24.034] [INFO] cheese - inserting 1000 documents. first: Yam and last: Cocoa programming -[2018-02-13T08:21:24.074] [INFO] cheese - inserting 1000 documents. first: File:Holyoke Houses.jpg and last: Jim Thompson House -[2018-02-13T08:21:24.171] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Drbkmurali and last: Module:Infobox road/meta/mask/subtype1 -[2018-02-13T08:21:24.183] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:21:24.231] [INFO] cheese - batch complete in: 2.733 secs -[2018-02-13T08:21:24.245] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:21:24.290] [INFO] cheese - inserting 1000 documents. first: Category:1801 establishments in Russia and last: Goran Vinčetić -[2018-02-13T08:21:24.432] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:21:24.485] [INFO] cheese - inserting 1000 documents. first: Tasneem Shah and last: Category:1845 establishments in Oceania -[2018-02-13T08:21:24.525] [INFO] cheese - inserting 1000 documents. first: Template:List of drugs J and last: Open de España -[2018-02-13T08:21:24.543] [INFO] cheese - inserting 1000 documents. first: Highway 213 (Missouri) and last: The Legend of Swordsman and Fairy -[2018-02-13T08:21:24.567] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:21:24.614] [INFO] cheese - inserting 1000 documents. first: West Allerton and last: File:Juarez (1939).jpg -[2018-02-13T08:21:24.656] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:21:24.656] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T08:21:24.820] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:21:24.889] [INFO] cheese - inserting 1000 documents. first: Cindy Mangsen and last: Promapp -[2018-02-13T08:21:24.939] [INFO] cheese - inserting 1000 documents. first: Siege of Kumamoto Castle and last: Template:PsychologyTopicTOC -[2018-02-13T08:21:25.085] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:21:25.097] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:21:25.099] [INFO] cheese - inserting 1000 documents. first: List of Characters in Banjo-Tooie and last: Peninsula Shield -[2018-02-13T08:21:25.202] [INFO] cheese - inserting 1000 documents. first: House of Poitiers and last: Hiroe Suga -[2018-02-13T08:21:25.220] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:21:25.305] [INFO] cheese - inserting 1000 documents. first: Category:1846 establishments in Oceania and last: Michaël Abiteboul -[2018-02-13T08:21:25.305] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:21:25.403] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:21:25.526] [INFO] cheese - inserting 1000 documents. first: Category:1428 by country and last: 1996 Vuelta a España -[2018-02-13T08:21:25.568] [INFO] cheese - inserting 1000 documents. first: Anscarid dynasty and last: Esther Applunius (Singer) -[2018-02-13T08:21:25.569] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:21:25.634] [INFO] cheese - inserting 1000 documents. first: St Paul's Church, Grangetown and last: In Time R.E.M. -[2018-02-13T08:21:25.645] [INFO] cheese - inserting 1000 documents. first: Jazztel Open de España en Andalucía and last: Gorilliaz -[2018-02-13T08:21:25.656] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:21:25.711] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:21:25.778] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:21:25.838] [INFO] cheese - inserting 1000 documents. first: John Halifax and last: Portal:Human body/Musculoskeletal System/Selected Picture -[2018-02-13T08:21:25.864] [INFO] cheese - inserting 1000 documents. first: Seven Stones Reef and last: File:SOE Station VIIb Today 1.jpg -[2018-02-13T08:21:26.004] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:21:26.061] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:21:26.092] [INFO] cheese - inserting 1000 documents. first: Llanfair United F. C. and last: Kirklees Way -[2018-02-13T08:21:26.193] [INFO] cheese - inserting 1000 documents. first: Richard Francis Pacquette and last: Pierre Nicolas Rolland -[2018-02-13T08:21:26.209] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:21:26.290] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:21:26.458] [INFO] cheese - inserting 1000 documents. first: In Time REM and last: Template:Country data Labuan/doc -[2018-02-13T08:21:26.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tamala.ru and last: Andrey Misyuk -[2018-02-13T08:21:26.570] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:21:26.575] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:21:26.639] [INFO] cheese - inserting 1000 documents. first: Charles Spencer (journalist) and last: State Highway 180 (AR) -[2018-02-13T08:21:26.662] [INFO] cheese - inserting 1000 documents. first: Category:Tajikistani people of Ukrainian descent and last: EISA Title 14: Virginia Graeme Baker Pool and Spa Safety Act -[2018-02-13T08:21:26.723] [INFO] cheese - inserting 1000 documents. first: MJ Gopalan and last: Middlesbrough F. C. season 2000-01 -[2018-02-13T08:21:26.740] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:21:26.804] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:21:26.893] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:21:27.003] [INFO] cheese - inserting 1000 documents. first: Second Arab-Israeli War and last: Scabbers -[2018-02-13T08:21:27.009] [INFO] cheese - inserting 1000 documents. first: Land elevation and last: Bayash -[2018-02-13T08:21:27.138] [INFO] cheese - inserting 1000 documents. first: Dichomeris brachyptila and last: Echinops tenuifolius -[2018-02-13T08:21:27.135] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:21:27.199] [INFO] cheese - batch complete in: 2.967 secs -[2018-02-13T08:21:27.212] [INFO] cheese - inserting 1000 documents. first: Manchester School of Design and last: Logroño Airport -[2018-02-13T08:21:27.226] [INFO] cheese - inserting 1000 documents. first: Andrei Misyuk and last: Aleksei Belousov -[2018-02-13T08:21:27.204] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:21:27.341] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:21:27.366] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:21:27.442] [INFO] cheese - inserting 1000 documents. first: Applied Arts Academy of Vienna and last: Royal House Order of Hohenzollern -[2018-02-13T08:21:27.463] [INFO] cheese - inserting 1000 documents. first: 2000 Vuelta a Espana and last: St Chad's, Wybunbury -[2018-02-13T08:21:27.491] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:21:27.566] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:21:27.720] [INFO] cheese - inserting 1000 documents. first: Category:Indigenous Mexican artists and last: Wikipedia:Wikipedia is not a webhost -[2018-02-13T08:21:27.825] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:21:27.887] [INFO] cheese - inserting 1000 documents. first: Echinops meyeri and last: Oliver Ian Banks -[2018-02-13T08:21:27.893] [INFO] cheese - inserting 1000 documents. first: Evalyn Bates and last: Kushk-e Pain, Kerman -[2018-02-13T08:21:27.987] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:21:28.037] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:21:28.120] [INFO] cheese - inserting 1000 documents. first: File:Asteroids ico.png and last: State Route 113 (Washington) -[2018-02-13T08:21:28.191] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:21:28.234] [INFO] cheese - inserting 1000 documents. first: National debt by U S presidential terms and last: DVD Play -[2018-02-13T08:21:28.255] [INFO] cheese - inserting 1000 documents. first: Phoenix Inferno and last: Páesan -[2018-02-13T08:21:28.308] [INFO] cheese - inserting 1000 documents. first: Nam Koo Terrace and last: Portal:Weather/Featured content/GA/86 -[2018-02-13T08:21:28.310] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:21:28.361] [INFO] cheese - inserting 1000 documents. first: Category:Filipino expatriate sportspeople and last: File:Magnitude of Externalities.jpg -[2018-02-13T08:21:28.382] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:21:28.422] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:21:28.424] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:21:28.505] [INFO] cheese - inserting 1000 documents. first: Psychiatric Institute of Washington and last: File:Schnetztor in Konstanz.jpg -[2018-02-13T08:21:28.640] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:21:28.662] [INFO] cheese - inserting 1000 documents. first: Allure (film) and last: Category:1659 establishments by continent -[2018-02-13T08:21:28.720] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:21:28.936] [INFO] cheese - inserting 1000 documents. first: File:PenguinsChicagoAquarium.jpg and last: Kaewsan Atibodhi -[2018-02-13T08:21:28.976] [INFO] cheese - inserting 1000 documents. first: Rachkovski and last: Fusiles -[2018-02-13T08:21:29.021] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:21:29.039] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:21:29.098] [INFO] cheese - inserting 1000 documents. first: The Passionate Plumber and last: Wikipedia:Peer review/Russian Business Network/archive1 -[2018-02-13T08:21:29.198] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:21:29.286] [INFO] cheese - inserting 1000 documents. first: Category:1660 establishments by continent and last: Kolkata Knight Riders in 2012 -[2018-02-13T08:21:29.304] [INFO] cheese - inserting 1000 documents. first: Template:Liberal Oppositionist/meta/shortname and last: Hawaiian Sunset -[2018-02-13T08:21:29.350] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:21:29.402] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:21:29.576] [INFO] cheese - inserting 1000 documents. first: Páesan languages and last: 2004 French Open -[2018-02-13T08:21:29.596] [INFO] cheese - inserting 1000 documents. first: Vodafone Japan and last: Category:Banbury -[2018-02-13T08:21:29.620] [INFO] cheese - inserting 1000 documents. first: Long-legged marsh glider and last: Aruküla (Harjumaa) -[2018-02-13T08:21:29.702] [INFO] cheese - inserting 1000 documents. first: Lake Zurich and last: Ptolemy III Euergetes -[2018-02-13T08:21:29.701] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:21:29.725] [INFO] cheese - batch complete in: 1.34 secs -[2018-02-13T08:21:29.738] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:21:29.751] [INFO] cheese - inserting 1000 documents. first: Independence of Quebec and last: Turrbal -[2018-02-13T08:21:29.844] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:21:29.920] [INFO] cheese - batch complete in: 2.721 secs -[2018-02-13T08:21:29.977] [INFO] cheese - inserting 1000 documents. first: Template:France-sport-team-stub and last: Sean Eddy -[2018-02-13T08:21:30.053] [INFO] cheese - inserting 1000 documents. first: FC Sloboda and last: Tell Ruman -[2018-02-13T08:21:30.099] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:21:30.171] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:21:30.481] [INFO] cheese - inserting 1000 documents. first: Wallis Hihifo Airport and last: File:Anthony Jeselnik Caligula.jpg -[2018-02-13T08:21:30.485] [INFO] cheese - inserting 1000 documents. first: M17 gas mask and last: Soyuz 9K -[2018-02-13T08:21:30.603] [INFO] cheese - inserting 1000 documents. first: Latest common ancestor and last: Chris Stockton -[2018-02-13T08:21:30.606] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:21:30.615] [INFO] cheese - inserting 1000 documents. first: Portal:Literature/Quotes/Week 51 and last: List of Maya Sites -[2018-02-13T08:21:30.707] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:21:30.725] [INFO] cheese - batch complete in: 2.3 secs -[2018-02-13T08:21:30.822] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:21:30.844] [INFO] cheese - inserting 1000 documents. first: Sam Massell and last: Bedminster Township, NJ -[2018-02-13T08:21:30.846] [INFO] cheese - inserting 1000 documents. first: Salisbury District, North Carolina and last: Banny de Brum -[2018-02-13T08:21:30.958] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:21:30.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Partha Pratim Sarkar and last: Frances Caroline Wedderburn Webster -[2018-02-13T08:21:31.056] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T08:21:31.192] [INFO] cheese - inserting 1000 documents. first: File:Salinas City Oldtown Farmer's Market, 2008.jpg and last: Eupithecia secura -[2018-02-13T08:21:31.234] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:21:31.309] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:21:31.631] [INFO] cheese - inserting 1000 documents. first: Sutemos and last: H:IW -[2018-02-13T08:21:31.640] [INFO] cheese - inserting 1000 documents. first: St. Mary's and St. Michael's Church, Burleydam and last: Category:People from Rockwall County, Texas -[2018-02-13T08:21:31.754] [INFO] cheese - inserting 1000 documents. first: Black maidenhair fern and last: Zero Zero -[2018-02-13T08:21:31.748] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:21:31.764] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:21:31.888] [INFO] cheese - inserting 1000 documents. first: Eric's Hot Cousin (That '70s Show episode) and last: Cavour (Piedmont) -[2018-02-13T08:21:31.944] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:21:32.022] [INFO] cheese - inserting 1000 documents. first: 1991 Men's South American Volleyball Championship and last: Wikipedia:Articles for deletion/Richie Garnet -[2018-02-13T08:21:32.063] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:21:32.108] [INFO] cheese - inserting 1000 documents. first: Paris Métro Line 14 (1937–76) and last: Bourbon (whiskey) -[2018-02-13T08:21:32.133] [INFO] cheese - batch complete in: 1.406 secs -[2018-02-13T08:21:32.158] [INFO] cheese - inserting 1000 documents. first: Beech Bottom, WV and last: Joseph Kimhi -[2018-02-13T08:21:32.265] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:21:32.285] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:21:32.488] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/datei.sektenausstieg.net and last: Bañado de Ovanta -[2018-02-13T08:21:32.598] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:21:32.625] [INFO] cheese - inserting 1000 documents. first: Narrative techniques pertaining to plot and last: Pratar med min müsli -[2018-02-13T08:21:32.721] [INFO] cheese - inserting 1000 documents. first: Qiu Le and last: Agent Mahone -[2018-02-13T08:21:32.735] [INFO] cheese - inserting 1000 documents. first: Ernest Burdett and last: Valchedram Municipality -[2018-02-13T08:21:32.737] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:21:32.844] [INFO] cheese - inserting 1000 documents. first: File:Basil-hood-1917.tif and last: Category:Railway stations in Erode district -[2018-02-13T08:21:32.906] [INFO] cheese - inserting 1000 documents. first: Category:American Civil War museums in Delaware and last: Wikipedia:WikiProject Spam/LinkReports/crimea-land.info -[2018-02-13T08:21:32.923] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:21:32.990] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:21:33.160] [INFO] cheese - batch complete in: 1.412 secs -[2018-02-13T08:21:33.174] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:21:33.280] [INFO] cheese - inserting 1000 documents. first: Pistacia lentiscus and last: Graptolithina -[2018-02-13T08:21:33.574] [INFO] cheese - inserting 1000 documents. first: Changi East Airbase and last: Jerry (Totally Spies) -[2018-02-13T08:21:33.581] [INFO] cheese - batch complete in: 3.661 secs -[2018-02-13T08:21:33.639] [INFO] cheese - inserting 1000 documents. first: Zambia/Transportation and last: Wikipedia:Articles for deletion/Brokencyde -[2018-02-13T08:21:33.657] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Australian cinema articles and last: File:F16 Armt Museum.JPG -[2018-02-13T08:21:33.658] [INFO] cheese - inserting 1000 documents. first: Alex Marshall and last: File:Squire Beryl.jpg -[2018-02-13T08:21:33.696] [INFO] cheese - inserting 1000 documents. first: Giren's greed and last: Legislative district of Zamboanga del Norte -[2018-02-13T08:21:33.698] [INFO] cheese - inserting 1000 documents. first: Mahmoud Hassan "Trezeguet" and last: Reformed Christian Church in Croatia -[2018-02-13T08:21:33.720] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:21:33.709] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:21:33.805] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:21:33.814] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:21:33.822] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:21:33.819] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:21:34.156] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Texas State Highway 172 and last: South American spongeplant -[2018-02-13T08:21:34.176] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 1974-75 CWC FR and last: Glycerol-3-phosphate-glucose phosphotransferase -[2018-02-13T08:21:34.273] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:21:34.295] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:21:34.364] [INFO] cheese - inserting 1000 documents. first: File:William John House VC.jpg and last: Five Spot -[2018-02-13T08:21:34.466] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:21:34.481] [INFO] cheese - inserting 1000 documents. first: Pargu and last: 福爾摩沙三角 -[2018-02-13T08:21:34.529] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Selected picture/2006 and last: Legislative districts of Lanao del Sur -[2018-02-13T08:21:34.545] [INFO] cheese - inserting 1000 documents. first: 1,3,7-trimethyl-1H-purine-2,6(3H,7H)-dione and last: ILTK -[2018-02-13T08:21:34.577] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:21:34.682] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:21:34.720] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:21:34.782] [INFO] cheese - inserting 1000 documents. first: Alex Pires De Souza and last: 2010–2011 Middle East and Maghreb protests -[2018-02-13T08:21:34.806] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/King Deco and last: Lady Sarah-Armstrong Jones -[2018-02-13T08:21:34.836] [INFO] cheese - inserting 1000 documents. first: Laurentius Andreae and last: Pale november moth -[2018-02-13T08:21:34.842] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:21:34.850] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:21:34.871] [INFO] cheese - inserting 1000 documents. first: Robert of Cricklade and last: Molodizhne, Simferopol Raion -[2018-02-13T08:21:34.960] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:21:35.056] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T08:21:35.306] [INFO] cheese - inserting 1000 documents. first: File:BradburyNortonRobinsonJr.jpg and last: CurtCo -[2018-02-13T08:21:35.492] [INFO] cheese - inserting 1000 documents. first: Portal:Belgium/Anniversaries/February/February 4 and last: Marcia Moore -[2018-02-13T08:21:35.501] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/djsiqueira.com and last: Botnia banan -[2018-02-13T08:21:35.508] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:21:35.585] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:21:35.605] [INFO] cheese - inserting 1000 documents. first: Category:1938 in New Jersey and last: MARD (campaign) -[2018-02-13T08:21:35.645] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:21:35.667] [INFO] cheese - inserting 1000 documents. first: First stamp of the Russian Empire and last: Acholeplasma phage L2 -[2018-02-13T08:21:35.735] [INFO] cheese - inserting 1000 documents. first: Christian Thomas (ice hockey) and last: Bridge and Tunnel Productions -[2018-02-13T08:21:35.737] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:21:35.842] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:21:35.919] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:21:36.176] [INFO] cheese - inserting 1000 documents. first: Weeb Eubank and last: Buffet froid -[2018-02-13T08:21:36.221] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:21:36.265] [INFO] cheese - inserting 1000 documents. first: Earnings guidance and last: Guy bannister -[2018-02-13T08:21:36.431] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:21:36.432] [INFO] cheese - inserting 1000 documents. first: Connecticut's 145th assembly district and last: Dijon Museum -[2018-02-13T08:21:36.440] [INFO] cheese - inserting 1000 documents. first: Hippocrates: Diary of a French Doctor and last: Merionethshire by-election (1899) -[2018-02-13T08:21:36.464] [INFO] cheese - inserting 1000 documents. first: Yurigaoka and last: Wikipedia:WikiProject Spam/LinkReports/telangana.aginfoway.com -[2018-02-13T08:21:36.489] [INFO] cheese - inserting 1000 documents. first: Catholic University of Utrecht and last: File:Serena Hotel Attack 2.PNG -[2018-02-13T08:21:36.504] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:21:36.563] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:21:36.589] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:21:36.598] [INFO] cheese - inserting 1000 documents. first: Alice in Wonderland (1933 film) and last: Draconic month -[2018-02-13T08:21:36.612] [INFO] cheese - inserting 1000 documents. first: File:Tiyd.png and last: Template:User citizen Mexico -[2018-02-13T08:21:36.649] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:21:36.704] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:21:36.805] [INFO] cheese - batch complete in: 3.224 secs -[2018-02-13T08:21:36.967] [INFO] cheese - inserting 1000 documents. first: 2d Pursuit Group and last: Dive-under -[2018-02-13T08:21:37.013] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Gaming Control Board and last: File:Barbara Acklin.jpg -[2018-02-13T08:21:37.035] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:21:37.047] [INFO] cheese - inserting 1000 documents. first: Category:1110 establishments by continent and last: Dennis Yates Wheatley -[2018-02-13T08:21:37.087] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:21:37.154] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:21:37.199] [INFO] cheese - inserting 1000 documents. first: Kevin Dunion and last: Grayson, Saskatchewan -[2018-02-13T08:21:37.212] [INFO] cheese - inserting 1000 documents. first: Banzai Bill and last: File:Kompeito.jpg -[2018-02-13T08:21:37.268] [INFO] cheese - inserting 1000 documents. first: List of University of Massachusetts Amherst faculty and last: MarSTU -[2018-02-13T08:21:37.271] [INFO] cheese - inserting 1000 documents. first: Regional Development Agency for Greater London and last: Gulf of Chiriquí National Marine Park -[2018-02-13T08:21:37.294] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:21:37.386] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:21:37.387] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:21:37.408] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:21:37.541] [INFO] cheese - inserting 1000 documents. first: Lila Santean and last: Wikipedia:Articles for deletion/Lulwa Khas, India -[2018-02-13T08:21:37.658] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:21:37.838] [INFO] cheese - inserting 1000 documents. first: 2000 Tottori earthquake and last: National Amateur League -[2018-02-13T08:21:38.007] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:21:38.071] [INFO] cheese - inserting 1000 documents. first: Stunner Shades and last: Macroburst (The Incredibles) -[2018-02-13T08:21:38.105] [INFO] cheese - inserting 1000 documents. first: Cartography of the United States and last: Wikipedia:WikiProject Spam/LinkReports/alexpettyfersource.com -[2018-02-13T08:21:38.155] [INFO] cheese - inserting 1000 documents. first: Cîrnățeni and last: Aripuanã River -[2018-02-13T08:21:38.167] [INFO] cheese - inserting 1000 documents. first: Love in the Afternoon (disambiguation) and last: Operation TKO -[2018-02-13T08:21:38.177] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:21:38.295] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T08:21:38.372] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:21:38.450] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:21:38.582] [INFO] cheese - inserting 1000 documents. first: Auxiliary force and last: Wenedyk language -[2018-02-13T08:21:38.649] [INFO] cheese - inserting 1000 documents. first: Apollo (comics) and last: Cheadle by-election -[2018-02-13T08:21:38.648] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:21:38.660] [INFO] cheese - inserting 1000 documents. first: Dichomeris sevectella and last: File:LloydAustin0609-03.jpg -[2018-02-13T08:21:38.760] [INFO] cheese - inserting 1000 documents. first: Oakland Hills manzanita and last: Treasure galaxy -[2018-02-13T08:21:38.733] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:21:38.756] [INFO] cheese - batch complete in: 1.37 secs -[2018-02-13T08:21:38.806] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:21:38.971] [INFO] cheese - inserting 1000 documents. first: Anomalistic month and last: BCP -[2018-02-13T08:21:38.978] [INFO] cheese - inserting 1000 documents. first: Heritage Square (LACMTA station) and last: Open Education -[2018-02-13T08:21:38.994] [INFO] cheese - inserting 1000 documents. first: 10.5 and last: Pass Out Of Existence -[2018-02-13T08:21:39.020] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:21:39.050] [INFO] cheese - inserting 1000 documents. first: Leonīds Ostrovskis and last: Pontifical Commission of Sacred Archæology -[2018-02-13T08:21:39.072] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:21:39.101] [INFO] cheese - batch complete in: 2.296 secs -[2018-02-13T08:21:39.179] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:21:39.314] [INFO] cheese - inserting 1000 documents. first: 1996-97 Plymouth Argyle F.C. season and last: Wikipedia:WikiProject Spam/LinkReports/biologia.ucv.cl -[2018-02-13T08:21:39.325] [INFO] cheese - inserting 1000 documents. first: Kohat Enclave (Delhi Metro) and last: William Knoedelseder -[2018-02-13T08:21:39.346] [INFO] cheese - inserting 1000 documents. first: Jim Tilley and last: Hoei Corporation -[2018-02-13T08:21:39.433] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:21:39.451] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:21:39.534] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:21:39.660] [INFO] cheese - inserting 1000 documents. first: Category:Operas by Béla Bartók and last: Attleborough/Stoughton Line -[2018-02-13T08:21:39.683] [INFO] cheese - inserting 1000 documents. first: Category:Yvonne Elliman songs and last: The Halo Effect (business book) -[2018-02-13T08:21:39.717] [INFO] cheese - inserting 1000 documents. first: File:Miami Olympic Pool.jpg and last: Formamidiumium -[2018-02-13T08:21:39.722] [INFO] cheese - inserting 1000 documents. first: Al Khartoum SC and last: Lonely Days, Lonely Nights -[2018-02-13T08:21:39.801] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:21:39.809] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:21:39.829] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:21:39.890] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:21:39.962] [INFO] cheese - inserting 1000 documents. first: Terrorist attacks in New Jersey and last: Chiautempan (municipality) -[2018-02-13T08:21:40.069] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:21:40.077] [INFO] cheese - inserting 1000 documents. first: Category:Regencies of North Kalimantan and last: TSB Bank (United Kingdom) -[2018-02-13T08:21:40.157] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:21:40.168] [INFO] cheese - inserting 1000 documents. first: Category:History books about the Czech Republic and last: Obatoclax mesylate -[2018-02-13T08:21:40.253] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:21:40.460] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Adventures of Pleakley and last: Wikipedia:Tip of the day/February 1 -[2018-02-13T08:21:40.471] [INFO] cheese - inserting 1000 documents. first: Tachileik and last: File:Livanov-cab-park-2.jpg -[2018-02-13T08:21:40.543] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:21:40.579] [INFO] cheese - inserting 1000 documents. first: Category:New York (state) elections, 1903 and last: Category:Infrastructure completed in 1728 -[2018-02-13T08:21:40.566] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:21:40.615] [INFO] cheese - inserting 1000 documents. first: Category:Active submarines of Russia and last: Nebojsa Radmanovic -[2018-02-13T08:21:40.638] [INFO] cheese - inserting 1000 documents. first: Alpine bird's-foot trefoil and last: Category:2015 disestablishments in Germany -[2018-02-13T08:21:40.644] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:21:40.653] [INFO] cheese - inserting 1000 documents. first: Stoughton Branch and last: Charge Conjugation -[2018-02-13T08:21:40.733] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:21:40.737] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:21:40.784] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:21:40.905] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list removal candidates/List of YuYu Hakusho episodes (season 4)/archive1 and last: Ghardabiya Airbase -[2018-02-13T08:21:41.003] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:21:41.088] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Tip of the day/February 2 and last: List of cast members from Baldwin Hills -[2018-02-13T08:21:41.151] [INFO] cheese - inserting 1000 documents. first: Mary Jane Marcasiano and last: H.C.Bold -[2018-02-13T08:21:41.161] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:21:41.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mohammed bin Osama bin Laden and last: Wikipedia:Recent additions 195 -[2018-02-13T08:21:41.264] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:21:41.303] [INFO] cheese - inserting 1000 documents. first: Szczecińskie Przedsiębiorstwo Autobusowe "Klonowica" and last: Marsea canadensis -[2018-02-13T08:21:41.324] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:21:41.384] [INFO] cheese - inserting 1000 documents. first: Robert O. Lowery and last: Patten Report -[2018-02-13T08:21:41.433] [INFO] cheese - inserting 1000 documents. first: Video Electronics Standards Association and last: Stanley Cup -[2018-02-13T08:21:41.445] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:21:41.493] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:21:41.611] [INFO] cheese - inserting 1000 documents. first: Sez O'Reilly to McNab and last: Wikipedia:WikiProject Spam/LinkReports/vapir.com -[2018-02-13T08:21:41.679] [INFO] cheese - batch complete in: 2.578 secs -[2018-02-13T08:21:41.683] [INFO] cheese - inserting 1000 documents. first: Tastebud and last: Template:NiloSaharan-lang-stub -[2018-02-13T08:21:41.769] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:21:41.776] [INFO] cheese - inserting 1000 documents. first: Yelena Golovina and last: Unleashed (tour) -[2018-02-13T08:21:41.819] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:21:41.859] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:21:41.985] [INFO] cheese - inserting 1000 documents. first: Sakuragi Yukiya and last: Find A Grave -[2018-02-13T08:21:42.041] [INFO] cheese - inserting 1000 documents. first: Senecio ciliatus and last: Template:Infobox Eurovision Song Contest National Year/Year -[2018-02-13T08:21:42.098] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:21:42.122] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:21:42.277] [INFO] cheese - inserting 1000 documents. first: File:I-form offset strong green.PNG and last: Hindustani Classical Music -[2018-02-13T08:21:42.306] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/vapir.com and last: Chloroclystis inductata -[2018-02-13T08:21:42.343] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:21:42.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ethics/User:Wjhonson and last: Sustainable economy -[2018-02-13T08:21:42.420] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:21:42.492] [INFO] cheese - inserting 1000 documents. first: Sandhawalias and last: 27th pope -[2018-02-13T08:21:42.523] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:21:42.538] [INFO] cheese - inserting 1000 documents. first: List of members of the Seimas, 2012–2016 and last: Category:1197 establishments by continent -[2018-02-13T08:21:42.553] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:21:42.575] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:21:42.692] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gypsy Dave and last: Wikipedia:Articles for deletion/National "Say 'Hi' to Joe" Day -[2018-02-13T08:21:42.759] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:21:42.822] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kilaueatours.com and last: Georgian Post -[2018-02-13T08:21:42.863] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Glades County, Florida and last: Wikipedia:WikiProject Spam/LinkReports/sangimignano1300.com -[2018-02-13T08:21:42.882] [INFO] cheese - inserting 1000 documents. first: Ashe baronets and last: Category:Austrian volleyball clubs -[2018-02-13T08:21:42.914] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:21:42.924] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:21:42.942] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:21:43.046] [INFO] cheese - inserting 1000 documents. first: Category:1199 establishments by continent and last: Labour law in Bulgaria -[2018-02-13T08:21:43.090] [INFO] cheese - inserting 1000 documents. first: Algal fuel and last: Wikipedia:WikiProject Spam/LinkReports/selvis.alnet.com.ua -[2018-02-13T08:21:43.105] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:21:43.126] [INFO] cheese - inserting 1000 documents. first: 28th pope and last: Elle india cover models -[2018-02-13T08:21:43.173] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:21:43.207] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:21:43.373] [INFO] cheese - inserting 1000 documents. first: Category:Me First and the Gimme Gimmes album covers and last: Hsien-ming Meng -[2018-02-13T08:21:43.407] [INFO] cheese - inserting 1000 documents. first: File:Across-the-Dark.png and last: Conradi-Hünermann syndrome -[2018-02-13T08:21:43.449] [INFO] cheese - inserting 1000 documents. first: Template:Backlog and last: Highland Park High School -[2018-02-13T08:21:43.450] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:21:43.529] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:43.546] [INFO] cheese - inserting 1000 documents. first: 1957 Mongolia earthquake and last: 2007–08 A PFG -[2018-02-13T08:21:43.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Radio Free Satan and last: Barice, Plandište -[2018-02-13T08:21:43.626] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:21:43.634] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:21:43.680] [INFO] cheese - inserting 1000 documents. first: Category:Railway stations in Jhang District and last: Category:Women's sports teams in Iceland -[2018-02-13T08:21:43.799] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:21:43.867] [INFO] cheese - inserting 1000 documents. first: Ofra Haza and last: Ocean thermal energy conversion -[2018-02-13T08:21:43.888] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:21:44.076] [INFO] cheese - inserting 1000 documents. first: Template:Tort footer and last: ISO 14644-3 -[2018-02-13T08:21:44.182] [INFO] cheese - batch complete in: 2.503 secs -[2018-02-13T08:21:44.198] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:21:44.377] [INFO] cheese - inserting 1000 documents. first: Robles Del Rio, California and last: Skate Chucks -[2018-02-13T08:21:44.392] [INFO] cheese - inserting 1000 documents. first: ALP-46A and last: East Kanpur -[2018-02-13T08:21:44.494] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:21:44.510] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:21:44.615] [INFO] cheese - inserting 1000 documents. first: 2008–09 A PFG and last: Rhinolophus affinis -[2018-02-13T08:21:44.742] [INFO] cheese - inserting 1000 documents. first: Category:Women's sport in Iceland and last: "Unbelievable Mysteries Solved" Lost and Found (TV series) -[2018-02-13T08:21:44.828] [INFO] cheese - inserting 1000 documents. first: Egregore and last: Category:Hotels in India -[2018-02-13T08:21:44.853] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:21:44.859] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:21:44.965] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:21:44.968] [INFO] cheese - inserting 1000 documents. first: The Big Tease and last: Tragedy of the Siskwit -[2018-02-13T08:21:45.103] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:21:45.202] [INFO] cheese - inserting 1000 documents. first: Category:1957 in Brazil and last: File:3rd Bass.jpg -[2018-02-13T08:21:45.307] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:21:45.441] [INFO] cheese - inserting 1000 documents. first: Paulus van de Perre and last: Portal:Mining/Selected picture/9 -[2018-02-13T08:21:45.461] [INFO] cheese - inserting 1000 documents. first: Skatechucks and last: .xn--p1ai -[2018-02-13T08:21:45.548] [INFO] cheese - inserting 1000 documents. first: Category:Chōfu, Tokyo and last: Coded mask -[2018-02-13T08:21:45.576] [INFO] cheese - inserting 1000 documents. first: Template:1924-winter-Olympic-stub and last: Gustave Tridon -[2018-02-13T08:21:45.572] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:21:45.635] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:21:45.663] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:45.724] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:21:45.857] [INFO] cheese - inserting 1000 documents. first: Category:International Criminal Tribunal for Rwanda prosecutors and last: Debre Selam -[2018-02-13T08:21:45.927] [INFO] cheese - inserting 1000 documents. first: KSLI and last: Virginia State Highway 221 -[2018-02-13T08:21:45.969] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:21:46.027] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:21:46.102] [INFO] cheese - inserting 1000 documents. first: Wartislaw II of Szczecin and last: Category:Musical groups from Vranje -[2018-02-13T08:21:46.139] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kathy Coleman and last: Karlslunds IF -[2018-02-13T08:21:46.144] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:21:46.308] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Matveev and last: Wikipedia:WikiProject Greater Boston Public Transit/Assessment -[2018-02-13T08:21:46.339] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:21:46.417] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:21:46.426] [INFO] cheese - inserting 1000 documents. first: File:Innis House Interior in Fredericksburg and Spotsylvania National Military Park.jpg and last: Tomás Balduino -[2018-02-13T08:21:46.499] [INFO] cheese - inserting 1000 documents. first: Charlotte Helene and last: Christian Vision -[2018-02-13T08:21:46.501] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:21:46.651] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/contrapontoeditora.com.br and last: Augustana Divinity School (Neuendettelsau) -[2018-02-13T08:21:46.659] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:21:46.677] [INFO] cheese - inserting 1000 documents. first: Mount Dale (Western Australia) and last: Ice House at Captiva Rocks -[2018-02-13T08:21:46.747] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:21:46.765] [INFO] cheese - inserting 1000 documents. first: Category:Colorado elections, 1964 and last: Category:1961–62 Missouri Valley Conference men's basketball season -[2018-02-13T08:21:46.764] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:21:46.835] [INFO] cheese - inserting 1000 documents. first: Brain aneurysm and last: Vanguard-class submarine -[2018-02-13T08:21:46.856] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:21:46.970] [INFO] cheese - inserting 1000 documents. first: Aspidoglossa korschefskyi and last: Category:Cartoonists by city -[2018-02-13T08:21:46.991] [INFO] cheese - batch complete in: 2.808 secs -[2018-02-13T08:21:47.085] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:21:47.180] [INFO] cheese - inserting 1000 documents. first: Comedie lyrique and last: List of country subdivisions by GDP (nominal) -[2018-02-13T08:21:47.211] [INFO] cheese - inserting 1000 documents. first: Hindolvestone railway station (England) and last: I-35 in Minnesota -[2018-02-13T08:21:47.219] [INFO] cheese - inserting 1000 documents. first: Cosmas of Maiuma and last: Chateau de Lavaux Sainte Anne -[2018-02-13T08:21:47.258] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:21:47.304] [INFO] cheese - inserting 1000 documents. first: Robert Frost Farm (Ripton, Vermont) and last: Gazon Maudit -[2018-02-13T08:21:47.322] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:21:47.320] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:21:47.412] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:21:47.420] [INFO] cheese - inserting 1000 documents. first: George Chaldakov and last: Ethnic groups in Thailand -[2018-02-13T08:21:47.436] [INFO] cheese - inserting 1000 documents. first: Rzhevskii District and last: Universal point set -[2018-02-13T08:21:47.487] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:21:47.494] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:21:47.673] [INFO] cheese - inserting 1000 documents. first: Category:Rivers of Northern Ireland by county and last: DS2 -[2018-02-13T08:21:47.717] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:21:47.857] [INFO] cheese - inserting 1000 documents. first: I-94 in Minnesota and last: Skin itch -[2018-02-13T08:21:47.928] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/monclerjacketsnews.com and last: Men's Soft Styles at WAKO World Championships 2007 Coimbra -[2018-02-13T08:21:47.935] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:21:47.979] [INFO] cheese - inserting 1000 documents. first: Esmond, ND and last: Sundacarpus amarus -[2018-02-13T08:21:47.997] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2013 March 17 and last: Eupithecia minorata -[2018-02-13T08:21:48.003] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:21:48.092] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:21:48.107] [INFO] cheese - inserting 1000 documents. first: Template:Fb team ground Brussels and last: Template:Syracuse Chiefs roster -[2018-02-13T08:21:48.130] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:21:48.151] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected sock puppets/MarkStreet and last: Template:1954 Philippine National Basketball Team -[2018-02-13T08:21:48.234] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:21:48.284] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:21:48.429] [INFO] cheese - inserting 1000 documents. first: Hell (novel) and last: Category:1996–97 in French women's football -[2018-02-13T08:21:48.494] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:21:48.553] [INFO] cheese - inserting 1000 documents. first: File:Jandek - One Foot in the North.jpg and last: Hugh Willoughby (sea captain) -[2018-02-13T08:21:48.575] [INFO] cheese - inserting 1000 documents. first: Eupithecia insignificata and last: Composers' Publishing Company -[2018-02-13T08:21:48.663] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:21:48.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Suisei (mythology) and last: Corvus jamaicensis -[2018-02-13T08:21:48.668] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:21:48.722] [INFO] cheese - inserting 1000 documents. first: Category:Capnophiles and last: Category:Airports in Aleutians East Borough, Alaska -[2018-02-13T08:21:48.741] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:21:48.822] [INFO] cheese - inserting 1000 documents. first: Quessoy and last: Nicki (singer) -[2018-02-13T08:21:48.841] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:21:48.891] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:21:49.014] [INFO] cheese - inserting 1000 documents. first: Winder Henry and last: Università per Stranieri di Perugia -[2018-02-13T08:21:49.092] [INFO] cheese - inserting 1000 documents. first: The Clash of Ignorance and last: List of bisexuality-related organizations and conferences -[2018-02-13T08:21:49.099] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:21:49.153] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:21:49.200] [INFO] cheese - inserting 1000 documents. first: Template:Gretna 2008 F.C. and last: Wikipedia:WikiProject Spam/LinkReports/quora.com -[2018-02-13T08:21:49.236] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julie Frith and last: Phalaenopsis lueddemanniana var. ochrata -[2018-02-13T08:21:49.351] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:21:49.357] [INFO] cheese - inserting 1000 documents. first: Isaac D'Israeli and last: Collier County, Florida -[2018-02-13T08:21:49.371] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:21:49.502] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Iraq and last: Keith Courage in Alpha Zones -[2018-02-13T08:21:49.585] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Psycho Dad and last: Obermorschwihr -[2018-02-13T08:21:49.587] [INFO] cheese - batch complete in: 2.596 secs -[2018-02-13T08:21:49.617] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:21:49.638] [INFO] cheese - inserting 1000 documents. first: Kenny Daglish Soccer Manager and last: Supplementary ∠s -[2018-02-13T08:21:49.718] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:21:49.828] [INFO] cheese - inserting 1000 documents. first: Walkaway Wind Farm and last: Anthony James Clarke, Baron Clarke of Hampstead -[2018-02-13T08:21:49.836] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:21:49.897] [INFO] cheese - inserting 1000 documents. first: Strandgade and last: Nossa Senhora Medianeira -[2018-02-13T08:21:49.917] [INFO] cheese - inserting 1000 documents. first: Peter village enclosure and last: Portal:Carboniferous/DYK/2 -[2018-02-13T08:21:49.959] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:21:49.978] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:21:49.956] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:21:50.155] [INFO] cheese - inserting 1000 documents. first: Rugby union in Lebanon and last: J. W. Sandstrom -[2018-02-13T08:21:50.284] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:21:50.382] [INFO] cheese - inserting 1000 documents. first: File:Tamiya TT-01D Chassis.jpg and last: Old Bradwell United F C -[2018-02-13T08:21:50.445] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:21:50.466] [INFO] cheese - inserting 1000 documents. first: Italy at the 2012 Summer Olympics and last: 2007 European Athletics Indoor Championships – Men's heptathlon -[2018-02-13T08:21:50.531] [INFO] cheese - inserting 1000 documents. first: Category:1820s in Mississippi and last: Jordan Canning -[2018-02-13T08:21:50.597] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:21:50.598] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:21:50.603] [INFO] cheese - inserting 1000 documents. first: Saint Mary's Battery (Marsalforn) and last: Australia at the 2015 Pacific Games -[2018-02-13T08:21:50.685] [INFO] cheese - inserting 1000 documents. first: Anthony James Clarke, Baron Clarke and last: Portal:Biography/Selected anniversaries/October 10 -[2018-02-13T08:21:50.689] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:21:50.787] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:21:50.844] [INFO] cheese - inserting 1000 documents. first: Template:Finnish mobile phone companies and last: Seth Macfarlane -[2018-02-13T08:21:50.857] [INFO] cheese - inserting 1000 documents. first: Old Bradwell United F. C. and last: P.L. Gairola -[2018-02-13T08:21:50.861] [INFO] cheese - inserting 1000 documents. first: Admiral Sir Hugh Tweedie and last: Perry Rosemond -[2018-02-13T08:21:50.893] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:21:50.966] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:21:50.978] [INFO] cheese - batch complete in: 1.361 secs -[2018-02-13T08:21:51.107] [INFO] cheese - inserting 1000 documents. first: Miami-Fort Lauderdale-West Palm Beach, FL Metropolitan Statistical Area and last: News Vendor Model -[2018-02-13T08:21:51.150] [INFO] cheese - inserting 1000 documents. first: Pakistani fashion and last: File:Phyllis McGinley.jpg -[2018-02-13T08:21:51.172] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:21:51.213] [INFO] cheese - inserting 1000 documents. first: Jiří Hrneček and last: Fact-checking websites -[2018-02-13T08:21:51.245] [INFO] cheese - inserting 1000 documents. first: Saint-Juvat and last: Wikipedia:WikiProject Spam/LinkReports/gkmap.moy.su -[2018-02-13T08:21:51.250] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:21:51.282] [INFO] cheese - inserting 1000 documents. first: John Beckett QC and last: Modern Jazz Classics -[2018-02-13T08:21:51.320] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:21:51.333] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:21:51.405] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:21:51.557] [INFO] cheese - inserting 1000 documents. first: Life Left to Go and last: Dovedale Baptist Church -[2018-02-13T08:21:51.620] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:21:51.650] [INFO] cheese - inserting 1000 documents. first: Category:Football in Sikkim and last: File:Yansheui Township.png -[2018-02-13T08:21:51.680] [INFO] cheese - inserting 1000 documents. first: Seth Mcfarlane and last: UP Diliman Department of Computer Science -[2018-02-13T08:21:51.698] [INFO] cheese - inserting 1000 documents. first: The Beach (novel) and last: Ferdinand V of Spain -[2018-02-13T08:21:51.723] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:21:51.837] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:21:51.875] [INFO] cheese - inserting 1000 documents. first: Plymouth Argyle FC statistics and last: Wikipedia:Articles for deletion/TimeLETSystems -[2018-02-13T08:21:51.877] [INFO] cheese - inserting 1000 documents. first: Category:Baseball in Colombia and last: Ashley Green (footballer) -[2018-02-13T08:21:51.908] [INFO] cheese - batch complete in: 2.32 secs -[2018-02-13T08:21:51.946] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:21:51.989] [INFO] cheese - inserting 1000 documents. first: Category:Valleys of Northumberland and last: Untomia horista -[2018-02-13T08:21:52.033] [INFO] cheese - inserting 1000 documents. first: Template:NCSLC and last: SR 310 (VA) -[2018-02-13T08:21:52.065] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:21:52.121] [INFO] cheese - inserting 1000 documents. first: 2013 V-Varen Nagasaki season and last: Valentin Bianki -[2018-02-13T08:21:52.129] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:52.180] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:21:52.212] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:21:52.249] [INFO] cheese - inserting 1000 documents. first: List of Rhode Island counties and last: Loire Mk -[2018-02-13T08:21:52.355] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:21:52.554] [INFO] cheese - inserting 1000 documents. first: No Way Out (Porridge) and last: Category:WikiProject Malawi -[2018-02-13T08:21:52.637] [INFO] cheese - inserting 1000 documents. first: Vereinigung der gegenseitigen Bauernhilfe and last: St. Rita of Cascia -[2018-02-13T08:21:52.637] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:21:52.641] [INFO] cheese - inserting 1000 documents. first: Blazer (surname) and last: Category:Infrastructure in Tanzania -[2018-02-13T08:21:52.650] [INFO] cheese - inserting 1000 documents. first: Rainbow Flag and last: Doctor Light (comics) -[2018-02-13T08:21:52.675] [INFO] cheese - inserting 1000 documents. first: Kıznaz Türkeli and last: Wash It All Away -[2018-02-13T08:21:52.693] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:21:52.707] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:21:52.788] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:21:52.808] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:21:52.842] [INFO] cheese - inserting 1000 documents. first: VA-310 and last: Afonso, Prince of Beira -[2018-02-13T08:21:52.959] [INFO] cheese - inserting 1000 documents. first: Australian Rules Football in Scotland and last: Hassan Parhat -[2018-02-13T08:21:53.061] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:21:53.164] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:21:53.353] [INFO] cheese - inserting 1000 documents. first: Algebraic Reconstruction Technique and last: Ricardo Mejia Hernandez -[2018-02-13T08:21:53.389] [INFO] cheese - inserting 1000 documents. first: Charles Winters (journalist) and last: Trevor Findlay -[2018-02-13T08:21:53.443] [INFO] cheese - inserting 1000 documents. first: Sehnsucht (1921 film) and last: Category:Actresses from Fujian -[2018-02-13T08:21:53.453] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:21:53.521] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:21:53.541] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:21:53.580] [INFO] cheese - inserting 1000 documents. first: Walter Bingham (journalist) and last: Collinsium -[2018-02-13T08:21:53.709] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:21:53.820] [INFO] cheese - inserting 1000 documents. first: Gaming keyboard and last: Platanthera chlorantha var. grandiflora -[2018-02-13T08:21:53.838] [INFO] cheese - inserting 1000 documents. first: Category:Titles of Mary and last: Wikipedia:Articles for deletion/Bob program -[2018-02-13T08:21:53.858] [INFO] cheese - inserting 1000 documents. first: Electromagnetic modeling and last: Textil Mandiyú -[2018-02-13T08:21:53.888] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:21:53.984] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T08:21:53.994] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:21:54.008] [INFO] cheese - inserting 1000 documents. first: Category:Template-Class Zambia articles and last: Megumi Oji -[2018-02-13T08:21:54.160] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:21:54.217] [INFO] cheese - inserting 1000 documents. first: Folk metal and last: Biot–Savart law -[2018-02-13T08:21:54.275] [INFO] cheese - inserting 1000 documents. first: Collinsium ciliosum and last: Dwaram Mallikarjun Reddy -[2018-02-13T08:21:54.367] [INFO] cheese - inserting 1000 documents. first: Needlecraft and last: File:TXE1 Common Control 1.JPG -[2018-02-13T08:21:54.403] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:21:54.481] [INFO] cheese - inserting 1000 documents. first: Category:Huracán Valencia CF managers and last: File:Six Finger Satellite - The Pigeon Is the Most Popular Bird.jpg -[2018-02-13T08:21:54.483] [INFO] cheese - batch complete in: 2.575 secs -[2018-02-13T08:21:54.569] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:21:54.692] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T08:21:54.922] [INFO] cheese - inserting 1000 documents. first: PGP disk and last: Category:Capdown albums -[2018-02-13T08:21:55.057] [INFO] cheese - inserting 1000 documents. first: Ōji Megumi and last: R P Keigwin -[2018-02-13T08:21:55.056] [INFO] cheese - inserting 1000 documents. first: Boydville and last: Brzonkala v. Polytechnic Institute and State University -[2018-02-13T08:21:55.114] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:21:55.196] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:21:55.205] [INFO] cheese - inserting 1000 documents. first: Category:Oregon Country and last: Letchery -[2018-02-13T08:21:55.323] [INFO] cheese - inserting 1000 documents. first: Meyer Dwass and last: Sotiris Delis -[2018-02-13T08:21:55.352] [INFO] cheese - inserting 1000 documents. first: 2012-13 Central African Republic conflict and last: Kota Maidanam -[2018-02-13T08:21:55.357] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T08:21:55.448] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:21:55.624] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:21:55.646] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:21:55.734] [INFO] cheese - inserting 1000 documents. first: National Soccer League 1998–99 and last: Blackbrow bleak -[2018-02-13T08:21:55.805] [INFO] cheese - inserting 1000 documents. first: Vehicle registration plates of European Union and last: Haversin Castle -[2018-02-13T08:21:55.809] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:21:55.961] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:21:56.066] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedian Preston North End F.C. fans and last: Beyond Boundaries -[2018-02-13T08:21:56.101] [INFO] cheese - inserting 1000 documents. first: R P Patnaik and last: Category:Mid-importance Lesotho articles -[2018-02-13T08:21:56.215] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:21:56.256] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:21:56.371] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/July 15, 2015 and last: Wikipedia:WikiProject Spam/Local/homewetbar.com -[2018-02-13T08:21:56.395] [INFO] cheese - inserting 1000 documents. first: American College of Greece (Deere College) and last: Branched-chain oxo acid dehydrogenase kinase (phosphorylating) -[2018-02-13T08:21:56.503] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:21:56.578] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:21:56.658] [INFO] cheese - inserting 1000 documents. first: Louis Silas and last: Spencer Joshua Alwyne Compton, 2nd Marquess of Northampton -[2018-02-13T08:21:56.719] [INFO] cheese - inserting 1000 documents. first: File:Page Two – Sings a Collection of Her Most Famous Songs cover.jpg and last: Category:Categories by locality in Japan -[2018-02-13T08:21:56.820] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:21:56.830] [INFO] cheese - inserting 1000 documents. first: Havré Castle and last: ByNet -[2018-02-13T08:21:56.831] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:21:56.903] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:21:56.960] [INFO] cheese - inserting 1000 documents. first: FL-13 and last: Disney Channel Original Movies (DCOMs) -[2018-02-13T08:21:57.073] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:21:57.097] [INFO] cheese - inserting 1000 documents. first: YFT and last: Glyptoscorpius -[2018-02-13T08:21:57.119] [INFO] cheese - inserting 1000 documents. first: List of FIFA Club World Championship and Club World Cup finals and last: Template:1995 Big Ten Conference baseball standings -[2018-02-13T08:21:57.129] [INFO] cheese - inserting 1000 documents. first: Template:User in US-MN and last: Category:1944 establishments in the French colonial empire -[2018-02-13T08:21:57.172] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:21:57.214] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:21:57.309] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:21:57.492] [INFO] cheese - inserting 1000 documents. first: Taylor County, Florida and last: SOM -[2018-02-13T08:21:57.591] [INFO] cheese - inserting 1000 documents. first: Book:Platonism, Aristotelianism, and Thomism and last: Category:Islands of Ceredigion -[2018-02-13T08:21:57.622] [INFO] cheese - inserting 1000 documents. first: Amy Gibson and last: File:The Mercenaries 3D.jpg -[2018-02-13T08:21:57.659] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:21:57.712] [INFO] cheese - inserting 1000 documents. first: Sharon Freeman and last: King's Domain, Melbourne -[2018-02-13T08:21:57.745] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Zakofal and last: Disco Infiltrator -[2018-02-13T08:21:57.763] [INFO] cheese - batch complete in: 3.28 secs -[2018-02-13T08:21:57.783] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:21:57.791] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:21:57.943] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:21:57.952] [INFO] cheese - inserting 1000 documents. first: Portal:Feminism/box-footer and last: Coventry and North Warwickshire (European Parliament constituency) -[2018-02-13T08:21:58.008] [INFO] cheese - inserting 1000 documents. first: File:Visions 1993.jpg and last: Alain de Greef -[2018-02-13T08:21:58.078] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:21:58.090] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:21:58.225] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian practitioners of Brazilian jiu-jitsu and last: Molyneux Nepean, 2nd Baronet -[2018-02-13T08:21:58.342] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:21:58.635] [INFO] cheese - inserting 1000 documents. first: Jordanita budensis and last: Donald Pellmann -[2018-02-13T08:21:58.699] [INFO] cheese - inserting 1000 documents. first: Andre Beauneveu and last: EMD GP40-2L(W) -[2018-02-13T08:21:58.711] [INFO] cheese - inserting 1000 documents. first: Erisort and last: Sergey Lapin (police officer) -[2018-02-13T08:21:58.839] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:21:58.864] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:21:58.937] [INFO] cheese - batch complete in: 2.034 secs -[2018-02-13T08:21:58.973] [INFO] cheese - inserting 1000 documents. first: Lieutenant Governor of Grenada and last: Route 74 (New York) -[2018-02-13T08:21:59.104] [INFO] cheese - inserting 1000 documents. first: Father of the Constitution and last: Category:Suzuki engines -[2018-02-13T08:21:59.116] [INFO] cheese - inserting 1000 documents. first: Template:Paris Metro/Station/doc and last: ᵟ -[2018-02-13T08:21:59.161] [INFO] cheese - inserting 1000 documents. first: Years in Malta and last: Portal:Paleontology/On this day/February 12 -[2018-02-13T08:21:59.178] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:21:59.289] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:21:59.300] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:21:59.309] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:21:59.537] [INFO] cheese - inserting 1000 documents. first: Prince Bovoradej and last: Albert Elijah Dunning -[2018-02-13T08:21:59.575] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:21:59.637] [INFO] cheese - inserting 1000 documents. first: Daily Record and last: O26 -[2018-02-13T08:21:59.672] [INFO] cheese - inserting 1000 documents. first: Category:1995–96 Midwestern Collegiate Conference men's basketball season and last: MTR KTT (Kowloon Through Train) -[2018-02-13T08:21:59.704] [INFO] cheese - inserting 1000 documents. first: Kokmuiža Manor and last: Inline four engine -[2018-02-13T08:21:59.778] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:21:59.800] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:21:59.863] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:21:59.950] [INFO] cheese - inserting 1000 documents. first: Portal:Paleontology/On this day/February 13 and last: List of years in Denmark -[2018-02-13T08:21:59.961] [INFO] cheese - inserting 1000 documents. first: Valea Orății River (Teleajen) and last: Wikipedia:Articles for deletion/Richard Muhammad -[2018-02-13T08:22:00.059] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:22:00.087] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:22:00.149] [INFO] cheese - inserting 1000 documents. first: Self-organizing map and last: Elliptical orbit -[2018-02-13T08:22:00.268] [INFO] cheese - inserting 1000 documents. first: Joe benitez and last: Lympstone -[2018-02-13T08:22:00.358] [INFO] cheese - inserting 1000 documents. first: Rayleigh-Bénard convection and last: Requiem: The Grim Harvest -[2018-02-13T08:22:00.389] [INFO] cheese - batch complete in: 2.626 secs -[2018-02-13T08:22:00.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2013 March 25 and last: Ngulu language (Mozambique) -[2018-02-13T08:22:00.428] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:22:00.479] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:22:00.568] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:22:00.649] [INFO] cheese - inserting 1000 documents. first: Kamon Tatsuo and last: Lincoln Highway in California -[2018-02-13T08:22:00.737] [INFO] cheese - inserting 1000 documents. first: Kings Never Die and last: Religions of Brazil -[2018-02-13T08:22:00.766] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:22:00.819] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:22:00.899] [INFO] cheese - inserting 1000 documents. first: Portal:Mammals/Selected pictures/1 and last: File:Terry Duckworth.jpg -[2018-02-13T08:22:00.973] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:22:01.110] [INFO] cheese - inserting 1000 documents. first: House at 3609 Via de la Reina and last: Skull Creek -[2018-02-13T08:22:01.139] [INFO] cheese - inserting 1000 documents. first: St. Louis Saints and last: File:Humphry'slogoStokePark.jpg -[2018-02-13T08:22:01.193] [INFO] cheese - inserting 1000 documents. first: Joseph T. Goodman and last: Category:Research and development in the United Kingdom -[2018-02-13T08:22:01.244] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:22:01.250] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T08:22:01.320] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:22:01.473] [INFO] cheese - inserting 1000 documents. first: List of Loveline episodes (2003) and last: Category:Torpedoes of Russia -[2018-02-13T08:22:01.510] [INFO] cheese - inserting 1000 documents. first: Mudanjiang and last: National Special Security Events -[2018-02-13T08:22:01.561] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:22:01.634] [INFO] cheese - inserting 1000 documents. first: File:Saio genji.jpg and last: Wikipedia:Version 1.0 Editorial Team/Biography (arts and entertainment) articles by quality/133 -[2018-02-13T08:22:01.696] [INFO] cheese - batch complete in: 1.268 secs -[2018-02-13T08:22:01.721] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:22:01.903] [INFO] cheese - inserting 1000 documents. first: Black Hills Ambush and last: Wikipedia:WikiProject Television/TUGS task force/Article alerts/Archive -[2018-02-13T08:22:01.917] [INFO] cheese - inserting 1000 documents. first: Dan McDonnell and last: Nefteiuganski Raion -[2018-02-13T08:22:01.989] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:22:02.068] [INFO] cheese - inserting 1000 documents. first: Delbert Tibbs and last: Category:Sports venues in Livingston County, New York -[2018-02-13T08:22:02.103] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:22:02.202] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:22:02.449] [INFO] cheese - inserting 1000 documents. first: De Branges space and last: Heung-Gil Yun -[2018-02-13T08:22:02.571] [INFO] cheese - inserting 1000 documents. first: Cat poo and last: Reid and Sigrist RS 1 -[2018-02-13T08:22:02.593] [INFO] cheese - batch complete in: 1.343 secs -[2018-02-13T08:22:02.661] [INFO] cheese - inserting 1000 documents. first: Jon McLaughlan and last: Crixás River -[2018-02-13T08:22:02.659] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:22:02.821] [INFO] cheese - inserting 1000 documents. first: Bolton council election 1980 and last: Gujarati (Unicode block) -[2018-02-13T08:22:02.854] [INFO] cheese - inserting 1000 documents. first: File:TlnHD.png and last: Wikipedia:Articles for deletion/Credit Union Deposit Insurance Corporation (Prince Edward Island) -[2018-02-13T08:22:02.874] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:22:02.920] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:22:03.024] [INFO] cheese - inserting 1000 documents. first: Alcyone and last: Furies -[2018-02-13T08:22:03.035] [INFO] cheese - inserting 1000 documents. first: Lisa's Sax and last: São Tomé Province -[2018-02-13T08:22:03.074] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:22:03.214] [INFO] cheese - batch complete in: 1.518 secs -[2018-02-13T08:22:03.304] [INFO] cheese - inserting 1000 documents. first: Battle of Camulodunum and last: S D Somasundaram -[2018-02-13T08:22:03.355] [INFO] cheese - batch complete in: 2.966 secs -[2018-02-13T08:22:03.476] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:22:03.518] [INFO] cheese - inserting 1000 documents. first: Heung-gil Yun and last: Burke Baker Planetarium -[2018-02-13T08:22:03.605] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:22:03.622] [INFO] cheese - inserting 1000 documents. first: North Carolina gubernatorial election, 1992 and last: Karri Narayana Rao -[2018-02-13T08:22:03.657] [INFO] cheese - inserting 1000 documents. first: Category:Aeroprogress aircraft and last: Category:1970s establishments in Dominica -[2018-02-13T08:22:03.735] [INFO] cheese - inserting 1000 documents. first: Masdevallia swertiifolia and last: Wikipedia:WikiProject Trains/ICC valuations/Oshkosh Transportation Company -[2018-02-13T08:22:03.756] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:22:03.804] [INFO] cheese - batch complete in: 1.602 secs -[2018-02-13T08:22:03.867] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:22:04.167] [INFO] cheese - inserting 1000 documents. first: John Halligan and last: Erigeron cervinus -[2018-02-13T08:22:04.188] [INFO] cheese - inserting 1000 documents. first: Elahieh and last: Datin -[2018-02-13T08:22:04.223] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Gard and last: Category:Geography of Flintshire -[2018-02-13T08:22:04.228] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:22:04.319] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:22:04.308] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:22:04.378] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Birthdays/December 19 and last: Agdistis nigra -[2018-02-13T08:22:04.386] [INFO] cheese - inserting 1000 documents. first: Florence Roberts and last: Category:Wikipedians interested in Ornithology -[2018-02-13T08:22:04.504] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:22:04.521] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:22:04.620] [INFO] cheese - inserting 1000 documents. first: File:UWCLOGO.png and last: CBS Cincinnati -[2018-02-13T08:22:04.689] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:22:04.894] [INFO] cheese - inserting 1000 documents. first: The Cleveland YMCA School of Technology and last: Category:1328 establishments by country -[2018-02-13T08:22:04.931] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:22:04.976] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vanessa Hudgens Second Studio Album and last: Sydney George Smith -[2018-02-13T08:22:05.090] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:22:05.097] [INFO] cheese - inserting 1000 documents. first: Tim & Sid and last: Category:577 disestablishments in Asia -[2018-02-13T08:22:05.110] [INFO] cheese - inserting 1000 documents. first: Friend of Bill W. and last: Wikipedia:Articles for deletion/Log/2005 June 11 -[2018-02-13T08:22:05.172] [INFO] cheese - inserting 1000 documents. first: Alazopeptin and last: Category:Wikipedians by alma mater: West Virginia -[2018-02-13T08:22:05.255] [INFO] cheese - batch complete in: 2.181 secs -[2018-02-13T08:22:05.342] [INFO] cheese - inserting 1000 documents. first: Mantou's riflebird and last: Río Nigua -[2018-02-13T08:22:05.346] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:22:05.362] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:22:05.445] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:22:05.534] [INFO] cheese - inserting 1000 documents. first: The New Swiss Family Robinson and last: Pahino -[2018-02-13T08:22:05.558] [INFO] cheese - inserting 1000 documents. first: Portal:Mining/Did you know/17 and last: Category:Cliffs of Powys -[2018-02-13T08:22:05.569] [INFO] cheese - inserting 1000 documents. first: Hipponax and last: Dom Pedro II -[2018-02-13T08:22:05.606] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:22:05.630] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:22:05.685] [INFO] cheese - inserting 1000 documents. first: Qatar national handball team and last: Powers Music School -[2018-02-13T08:22:05.735] [INFO] cheese - batch complete in: 2.38 secs -[2018-02-13T08:22:05.764] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:22:05.993] [INFO] cheese - inserting 1000 documents. first: Category:577 disestablishments by continent and last: Kooletah -[2018-02-13T08:22:06.017] [INFO] cheese - inserting 1000 documents. first: File:Smileage - Tabidachi no Haru ga Kita (Regular Edition, HKCN-50587) cover.jpg and last: Eupithecia pauliani -[2018-02-13T08:22:06.098] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:22:06.103] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:22:06.106] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians by alma mater: New Mexico and last: Wikipedia:Articles for deletion/Jayeeta Ghosh -[2018-02-13T08:22:06.138] [INFO] cheese - inserting 1000 documents. first: Beatrix Cenci and last: Hod Stuart -[2018-02-13T08:22:06.184] [INFO] cheese - inserting 1000 documents. first: Nigua River (Arroyo, Puerto Rico) and last: Wunnummin Lake -[2018-02-13T08:22:06.236] [INFO] cheese - inserting 1000 documents. first: Glounthaune railway station and last: Performance Application Programming Interface -[2018-02-13T08:22:06.264] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:22:06.324] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:22:06.342] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:22:06.417] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:22:06.463] [INFO] cheese - inserting 1000 documents. first: Bromfenac and last: Erigeron lassenianus -[2018-02-13T08:22:06.566] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:22:06.731] [INFO] cheese - inserting 1000 documents. first: Chesnut and last: ቹ -[2018-02-13T08:22:06.749] [INFO] cheese - inserting 1000 documents. first: File:The Three Friends and Jerry.jpeg and last: Wikipedia:Articles for deletion/Amin Khoury -[2018-02-13T08:22:06.770] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:22:06.817] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:22:06.931] [INFO] cheese - inserting 1000 documents. first: Noel White (rugby league) and last: Wikipedia:Articles for deletion/Jack Cuozzo -[2018-02-13T08:22:07.062] [INFO] cheese - inserting 1000 documents. first: Kentucky State Highway 1 and last: Churchills -[2018-02-13T08:22:07.097] [INFO] cheese - inserting 1000 documents. first: José Ernesto Ochoa and last: FusionReactor -[2018-02-13T08:22:07.164] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:22:07.246] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:22:07.278] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:22:07.311] [INFO] cheese - inserting 1000 documents. first: Cases (wine) and last: Fort Ransom State Park -[2018-02-13T08:22:07.430] [INFO] cheese - inserting 1000 documents. first: Royal Hungarian Opera House and last: David Buckner -[2018-02-13T08:22:07.474] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:22:07.476] [INFO] cheese - inserting 1000 documents. first: ቺ and last: Music Concierge -[2018-02-13T08:22:07.572] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:22:07.601] [INFO] cheese - inserting 1000 documents. first: Leo Davies and last: Daang Hari LRT Station -[2018-02-13T08:22:07.599] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:22:07.672] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:22:07.892] [INFO] cheese - inserting 1000 documents. first: File:Ragtime film.jpg and last: Laelia lobata var. alba -[2018-02-13T08:22:07.982] [INFO] cheese - inserting 1000 documents. first: Manor Primary School and last: Eugenie Besserer -[2018-02-13T08:22:07.999] [INFO] cheese - inserting 1000 documents. first: Saint Kitts and Nevis/Geography and last: Music notation -[2018-02-13T08:22:07.980] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:22:08.030] [INFO] cheese - inserting 1000 documents. first: Goguette and last: Election board -[2018-02-13T08:22:08.068] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:22:08.118] [INFO] cheese - inserting 1000 documents. first: Esmailabad, Bardsir and last: File:ErbilAirport logo.jpg -[2018-02-13T08:22:08.117] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:22:08.127] [INFO] cheese - inserting 1000 documents. first: John Johnstone (baseball) and last: Wikipedia:WikiProject Spam/LinkReports/support.us.dell.com -[2018-02-13T08:22:08.166] [INFO] cheese - inserting 1000 documents. first: Category:320s by continent and last: Voigtlander Bessa R2M -[2018-02-13T08:22:08.232] [INFO] cheese - batch complete in: 2.496 secs -[2018-02-13T08:22:08.281] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:08.285] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:22:08.302] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:22:08.437] [INFO] cheese - inserting 1000 documents. first: Lajos Csordák and last: Hillsview, SD -[2018-02-13T08:22:08.512] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:22:08.584] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/How to dominate at ludo and last: Spathoglottis augustorum -[2018-02-13T08:22:08.627] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:22:08.748] [INFO] cheese - inserting 1000 documents. first: City Learning Centre and last: Two Family House -[2018-02-13T08:22:08.789] [INFO] cheese - inserting 1000 documents. first: Cosina Voigtländer Bessa R2M and last: Randy Bean -[2018-02-13T08:22:08.807] [INFO] cheese - inserting 1000 documents. first: Ben Hanowski and last: Katie: My Beautiful Face -[2018-02-13T08:22:08.841] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/William Chilufya and last: The Social Animal (Brooks book) -[2018-02-13T08:22:08.847] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:22:08.861] [INFO] cheese - inserting 1000 documents. first: Maine Republican caucuses, 2008 and last: Steinberg-Dorfl -[2018-02-13T08:22:08.893] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:22:08.916] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:22:08.976] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:22:08.992] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:09.142] [INFO] cheese - inserting 1000 documents. first: March 31 (Orthodox Liturgics) and last: Vienna Sezession -[2018-02-13T08:22:09.185] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:22:09.303] [INFO] cheese - inserting 1000 documents. first: Spathoglottis rosea and last: Red Bopple Nut -[2018-02-13T08:22:09.467] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:22:09.486] [INFO] cheese - inserting 1000 documents. first: Powiat ropczycko-sedziszowski and last: Powiat gostynski -[2018-02-13T08:22:09.544] [INFO] cheese - inserting 1000 documents. first: File:Listen to the Man.jpg and last: Reproduction system -[2018-02-13T08:22:09.547] [INFO] cheese - inserting 1000 documents. first: St. Matthias and last: Wikipedia:Templates for deletion/Log/2006 October 12 -[2018-02-13T08:22:09.559] [INFO] cheese - inserting 1000 documents. first: Raja Shivaji Vidyalaya and last: Csák (surname) -[2018-02-13T08:22:09.563] [INFO] cheese - inserting 1000 documents. first: 2010-11 Bosnia and Herzegovina Hockey League season and last: Trump Organization -[2018-02-13T08:22:09.564] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:22:09.620] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:22:09.639] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:22:09.694] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:22:09.703] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:22:09.809] [INFO] cheese - inserting 1000 documents. first: A Real Dead One and last: Geocarpa groundnut -[2018-02-13T08:22:09.856] [INFO] cheese - inserting 1000 documents. first: Sniglet and last: Antiochus I Soter -[2018-02-13T08:22:09.884] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:22:09.966] [INFO] cheese - batch complete in: 1.733 secs -[2018-02-13T08:22:10.092] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/i17.photobucket.com and last: Daniel's Frog -[2018-02-13T08:22:10.110] [INFO] cheese - inserting 1000 documents. first: Dia Kensetsu and last: Wikipedia:Articles for deletion/Crimson & Catharsis -[2018-02-13T08:22:10.181] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:22:10.191] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:22:10.253] [INFO] cheese - inserting 1000 documents. first: Kaleef Wyatt and last: Old Kalevala -[2018-02-13T08:22:10.295] [INFO] cheese - inserting 1000 documents. first: St Bartholomew's Church, Goodnestone and last: Two Lines Oblique Down, Variation III (Indianapolis) -[2018-02-13T08:22:10.307] [INFO] cheese - inserting 1000 documents. first: D. C. Armory and last: File:Riverstage Lblock.jpg -[2018-02-13T08:22:10.347] [INFO] cheese - inserting 1000 documents. first: File:YesterdayOnceMoreAlbum.jpg and last: Tsuri-daiko -[2018-02-13T08:22:10.371] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:22:10.406] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:22:10.440] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:22:10.596] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:22:10.708] [INFO] cheese - inserting 1000 documents. first: Japhethite and last: Arthur Shaw (athlete) -[2018-02-13T08:22:10.846] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:22:10.924] [INFO] cheese - inserting 1000 documents. first: Category:People executed by Turkey by hanging and last: Siva I of Anuradhapura -[2018-02-13T08:22:10.980] [INFO] cheese - inserting 1000 documents. first: File:Dave Matthews Band - Grey Street.ogg and last: MQST -[2018-02-13T08:22:10.980] [INFO] cheese - inserting 1000 documents. first: Pistruieni and last: Chotýšany -[2018-02-13T08:22:11.018] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:22:11.095] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:22:11.101] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:22:11.222] [INFO] cheese - inserting 1000 documents. first: Out Goin' Cattin' (song) and last: Category:Honourable citizens of Khanty-Mansi Autonomous Okrug -[2018-02-13T08:22:11.288] [INFO] cheese - inserting 1000 documents. first: Constanze Backes and last: Harold Charles International Airport -[2018-02-13T08:22:11.368] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:22:11.436] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:22:11.487] [INFO] cheese - inserting 1000 documents. first: Glyptothorax and last: Wesley Butters -[2018-02-13T08:22:11.563] [INFO] cheese - inserting 1000 documents. first: Tsuen Wan Government Secondary School and last: Portal:Trains/Featured picture candidates/8FSTMARTINS23.5.66RNC.JPG -[2018-02-13T08:22:11.586] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:22:11.642] [INFO] cheese - inserting 1000 documents. first: Famous gay lesbian and bisexual people and last: Ethal -[2018-02-13T08:22:11.710] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:22:11.713] [INFO] cheese - inserting 1000 documents. first: Fraudulent misrepresentation and last: Procris algirica -[2018-02-13T08:22:11.771] [INFO] cheese - inserting 1000 documents. first: Wheat silos in Western Australia and last: Category:Prefects of Loire-Atlantique -[2018-02-13T08:22:11.773] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:22:11.800] [INFO] cheese - batch complete in: 1.834 secs -[2018-02-13T08:22:11.889] [INFO] cheese - inserting 1000 documents. first: Mud - TV series and last: Category:Biosphere reserves of China -[2018-02-13T08:22:11.902] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:22:11.996] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:22:12.046] [INFO] cheese - inserting 1000 documents. first: Category:1520 disestablishments in the Aztec civilization and last: Joseph Penzer -[2018-02-13T08:22:12.161] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:22:12.176] [INFO] cheese - inserting 1000 documents. first: Frederick Flintstone and last: Wikipedia:WikiProject Military history/Academy/Writing an effective article introduction -[2018-02-13T08:22:12.287] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:22:12.323] [INFO] cheese - inserting 1000 documents. first: Nordic keyed fiddle and last: Phoebe Gilman -[2018-02-13T08:22:12.349] [INFO] cheese - inserting 1000 documents. first: Mist, OR and last: Oasis, IA -[2018-02-13T08:22:12.356] [INFO] cheese - inserting 1000 documents. first: Vigabatrinum and last: Benjamin F. Hake -[2018-02-13T08:22:12.402] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:22:12.436] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:22:12.450] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:22:12.615] [INFO] cheese - inserting 1000 documents. first: Joseph Penzer (Australian politician) and last: Typhoon Mamie (disambiguation) -[2018-02-13T08:22:12.730] [INFO] cheese - inserting 1000 documents. first: Pushin' Against a Stone and last: Wikipedia:Articles for deletion/Dbfree -[2018-02-13T08:22:12.745] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:22:12.819] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:22:12.831] [INFO] cheese - inserting 1000 documents. first: Lady Cassandra and last: Egyptian Cottonworm -[2018-02-13T08:22:12.967] [INFO] cheese - inserting 1000 documents. first: Gymnammodytes cicerelus and last: Muskeeg-Seepee Settlement, Alberta -[2018-02-13T08:22:12.967] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:22:13.075] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:22:13.237] [INFO] cheese - inserting 1000 documents. first: Jungle Boy (song) and last: Di vaio -[2018-02-13T08:22:13.259] [INFO] cheese - inserting 1000 documents. first: Oatman, AZ and last: Theoretical astronomy -[2018-02-13T08:22:13.280] [INFO] cheese - inserting 1000 documents. first: Anubal and last: Susana Giménez -[2018-02-13T08:22:13.363] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed Bedfordshire articles and last: Lucretia Edwards -[2018-02-13T08:22:13.378] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:22:13.348] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:22:13.477] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:22:13.495] [INFO] cheese - batch complete in: 1.695 secs -[2018-02-13T08:22:13.628] [INFO] cheese - inserting 1000 documents. first: University of Kampen (disambiguation) and last: Desmiphora circumspecta -[2018-02-13T08:22:13.645] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/Uirauna and last: Roxosul Tablets -[2018-02-13T08:22:13.673] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:13.814] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:22:13.927] [INFO] cheese - inserting 1000 documents. first: Ridgeback Resources and last: Committee to Promote Virtue and Prevent Vice -[2018-02-13T08:22:14.022] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:22:14.026] [INFO] cheese - inserting 1000 documents. first: Roxoxol and last: 1946–47 Texas Tech Red Raiders men's basketball team -[2018-02-13T08:22:14.085] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T08:22:14.140] [INFO] cheese - inserting 1000 documents. first: Caldecott Hill and last: MTA new york -[2018-02-13T08:22:14.190] [INFO] cheese - inserting 1000 documents. first: Powell River, VA and last: Piper PA-48 Enforcer -[2018-02-13T08:22:14.239] [INFO] cheese - inserting 1000 documents. first: File:Average Temperature for Millington.jpg and last: Category:Wendt aircraft -[2018-02-13T08:22:14.265] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:22:14.324] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:22:14.394] [INFO] cheese - batch complete in: 1.573 secs -[2018-02-13T08:22:14.416] [INFO] cheese - inserting 1000 documents. first: United People's Party (Poland) and last: Ivankovo, Croatia -[2018-02-13T08:22:14.455] [INFO] cheese - inserting 1000 documents. first: Aldazine and last: Haldol La -[2018-02-13T08:22:14.458] [INFO] cheese - inserting 1000 documents. first: Template:British Columbia provincial election, 1983/Vancouver Centre and last: Category:Unidentified murder victims in Maryland -[2018-02-13T08:22:14.534] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:22:14.541] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:22:14.580] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:22:14.812] [INFO] cheese - inserting 1000 documents. first: The Want (band) and last: Middle Miocene Disruption -[2018-02-13T08:22:14.816] [INFO] cheese - inserting 1000 documents. first: Beyblade Trading Card Game and last: Japanese Philosophy -[2018-02-13T08:22:14.898] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:22:14.903] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:22:14.912] [INFO] cheese - inserting 1000 documents. first: Haldol Solutab and last: Rubacina -[2018-02-13T08:22:14.915] [INFO] cheese - inserting 1000 documents. first: Thig and last: John II of Nassau -[2018-02-13T08:22:14.967] [INFO] cheese - inserting 1000 documents. first: Chloe piene and last: Luštěnice -[2018-02-13T08:22:15.016] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:22:14.984] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:22:15.137] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:22:15.153] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/BAE AUDIO and last: Candidates of the New South Wales colonial election, 1887 -[2018-02-13T08:22:15.205] [INFO] cheese - inserting 1000 documents. first: Template:Toronto municipal election, 2003/Position/Councillor, Ward Eight and last: Electronic Poeme -[2018-02-13T08:22:15.315] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:22:15.250] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:22:15.436] [INFO] cheese - inserting 1000 documents. first: Sedanium-R and last: Reloaded (The Demolition Crew Voodoo Remix Collection) (Alexz Johnson album) -[2018-02-13T08:22:15.474] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:22:15.506] [INFO] cheese - inserting 1000 documents. first: History of music and last: Powell Doctrine -[2018-02-13T08:22:15.583] [INFO] cheese - inserting 1000 documents. first: Resident Evil Code: Veronica X and last: Boyle Travers Finniss -[2018-02-13T08:22:15.619] [INFO] cheese - inserting 1000 documents. first: File:Sweethearts and Wives 1930 Poster.jpg and last: Category:Motorcycling people -[2018-02-13T08:22:15.686] [INFO] cheese - batch complete in: 2.189 secs -[2018-02-13T08:22:15.714] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:22:15.718] [INFO] cheese - inserting 1000 documents. first: Blue Water Studios and last: Piazza Vittorio Emanuele II (Rome) -[2018-02-13T08:22:15.723] [INFO] cheese - inserting 1000 documents. first: Tolumnia guianensis and last: Americas Paralympic Committee -[2018-02-13T08:22:15.726] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:15.815] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:22:15.840] [INFO] cheese - inserting 1000 documents. first: Coat of Arms of the Orange Free State and last: Reudo -[2018-02-13T08:22:15.855] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:22:15.879] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:22:15.946] [INFO] cheese - inserting 1000 documents. first: Goriyoshi and last: 2015–16 Olympique de Marseille season -[2018-02-13T08:22:16.079] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:22:16.266] [INFO] cheese - inserting 1000 documents. first: Running Out of Time (Ozzy Osbourne song) and last: Wikipedia:Fact laundering -[2018-02-13T08:22:16.306] [INFO] cheese - inserting 1000 documents. first: Reudox and last: Template:Euxoa-stub -[2018-02-13T08:22:16.339] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:22:16.366] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:22:16.451] [INFO] cheese - inserting 1000 documents. first: Hsu ching cheng and last: US $50 -[2018-02-13T08:22:16.526] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:22:16.603] [INFO] cheese - inserting 1000 documents. first: WRC: World Rally Championship and last: Logny-lès-Aubenton -[2018-02-13T08:22:16.641] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alex Yuan and last: Little Lottery River -[2018-02-13T08:22:16.652] [INFO] cheese - inserting 1000 documents. first: Sawamin and last: Dani Jacobs -[2018-02-13T08:22:16.670] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:22:16.690] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T08:22:16.747] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:22:16.814] [INFO] cheese - inserting 1000 documents. first: Pkg-config and last: Masta Ace -[2018-02-13T08:22:16.868] [INFO] cheese - inserting 1000 documents. first: Al Reem Biosphere Reserve and last: Portal:Cretaceous/DYK/14 -[2018-02-13T08:22:16.905] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:22:16.977] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:22:16.997] [INFO] cheese - inserting 1000 documents. first: List of colleges & universities in Massachusetts and last: Polycycline -[2018-02-13T08:22:17.075] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T08:22:17.107] [INFO] cheese - inserting 1000 documents. first: Ricardo Morán (director) and last: Face2 Face (Babyface album) -[2018-02-13T08:22:17.179] [INFO] cheese - inserting 1000 documents. first: Clan Gayre and last: Canadian Institute of Health Information -[2018-02-13T08:22:17.182] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:22:17.283] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:22:17.390] [INFO] cheese - inserting 1000 documents. first: Alvin Plantinga and last: Xilonen -[2018-02-13T08:22:17.395] [INFO] cheese - inserting 1000 documents. first: Polyotic and last: Secorbate -[2018-02-13T08:22:17.403] [INFO] cheese - inserting 1000 documents. first: Tipsport arena and last: Attack of the Graveyard Ghouls -[2018-02-13T08:22:17.415] [INFO] cheese - inserting 1000 documents. first: Little Onahau River and last: SFU Peak -[2018-02-13T08:22:17.466] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:22:17.520] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:22:17.537] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:22:17.649] [INFO] cheese - batch complete in: 1.962 secs -[2018-02-13T08:22:17.757] [INFO] cheese - inserting 1000 documents. first: Portal:Cretaceous/DYK/15 and last: Category:Leiosaurids -[2018-02-13T08:22:17.874] [INFO] cheese - inserting 1000 documents. first: Tag League the Best and last: 1913-14 Galatasaray S.K. season -[2018-02-13T08:22:17.876] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:22:17.955] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:22:17.989] [INFO] cheese - inserting 1000 documents. first: Zapadnyy and last: Malamar 50 -[2018-02-13T08:22:18.015] [INFO] cheese - inserting 1000 documents. first: Cuna de lobos and last: Patagium -[2018-02-13T08:22:18.043] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:22:18.182] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:22:18.349] [INFO] cheese - inserting 1000 documents. first: 280 mm mortar M1939 (Br-5) and last: Jevany -[2018-02-13T08:22:18.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2015 July 3 and last: Category:High-importance Graffiti articles -[2018-02-13T08:22:18.385] [INFO] cheese - inserting 1000 documents. first: File:Rockslide.jpg and last: Thomas Croft -[2018-02-13T08:22:18.424] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/ros/munlist/konstantinovsky and last: Ranitidin Dyna -[2018-02-13T08:22:18.423] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:22:18.457] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:22:18.472] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:22:18.498] [INFO] cheese - inserting 1000 documents. first: Hercules and Xena – The Animated Movie: The Battle for Mount Olympus and last: Lyres (band) -[2018-02-13T08:22:18.512] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:22:18.560] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:22:18.572] [INFO] cheese - inserting 1000 documents. first: Melvin Fleur and last: Adelaide Eliza Ironside -[2018-02-13T08:22:18.727] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:22:18.757] [INFO] cheese - inserting 1000 documents. first: West Swanzey, NH and last: Embellishments (music) -[2018-02-13T08:22:18.869] [INFO] cheese - inserting 1000 documents. first: Ranitidin Helvepharm and last: Acetonyl -[2018-02-13T08:22:18.872] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:18.927] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:22:18.954] [INFO] cheese - inserting 1000 documents. first: Professional network service and last: S. H. E -[2018-02-13T08:22:18.990] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Graffiti articles and last: David M. Buck House -[2018-02-13T08:22:19.003] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:22:19.049] [INFO] cheese - inserting 1000 documents. first: Rooney River and last: North Fork Red River -[2018-02-13T08:22:19.062] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:22:19.131] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:22:19.140] [INFO] cheese - inserting 1000 documents. first: Curse of Blackmoor Manor and last: ឱ -[2018-02-13T08:22:19.214] [INFO] cheese - inserting 1000 documents. first: Acetophen and last: Pen-Vee K -[2018-02-13T08:22:19.249] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T08:22:19.274] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:22:19.385] [INFO] cheese - inserting 1000 documents. first: S. H. I. E. L. D. (Amalgam Comics) and last: Eights -[2018-02-13T08:22:19.405] [INFO] cheese - inserting 1000 documents. first: Keith Lander Best and last: Category:Wikipedian iaidoka -[2018-02-13T08:22:19.472] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:22:19.488] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:22:19.490] [INFO] cheese - inserting 1000 documents. first: Penapar-Vk and last: Boysen Dam -[2018-02-13T08:22:19.534] [INFO] cheese - batch complete in: 0.285 secs -[2018-02-13T08:22:19.748] [INFO] cheese - inserting 1000 documents. first: North Pease River and last: 2008–2009 hadrosaur chewing study -[2018-02-13T08:22:19.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Whie Malreaux and last: Xiong Shili -[2018-02-13T08:22:19.789] [INFO] cheese - inserting 1000 documents. first: Peripherine and last: China International Consumer Goods Fair -[2018-02-13T08:22:19.808] [INFO] cheese - batch complete in: 0.274 secs -[2018-02-13T08:22:19.831] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:22:19.873] [INFO] cheese - inserting 1000 documents. first: Category:1950s crime film stubs and last: Parig -[2018-02-13T08:22:19.908] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:22:19.965] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:20.035] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Gadget-sidebar-ca-modern.js and last: Atlas CAVA -[2018-02-13T08:22:20.068] [INFO] cheese - inserting 1000 documents. first: Dar'a Governorate and last: Dorfl -[2018-02-13T08:22:20.098] [INFO] cheese - inserting 1000 documents. first: Belmazol and last: Lucorteum Sol -[2018-02-13T08:22:20.111] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:22:20.138] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:22:20.141] [INFO] cheese - inserting 1000 documents. first: Solidago pruinosa and last: Female-female competition -[2018-02-13T08:22:20.159] [INFO] cheese - batch complete in: 0.351 secs -[2018-02-13T08:22:20.259] [INFO] cheese - inserting 1000 documents. first: Chicomecoatl and last: Polk County, Texas -[2018-02-13T08:22:20.274] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:22:20.392] [INFO] cheese - inserting 1000 documents. first: Category:Devonian arthropods and last: Sohran-e Vasat -[2018-02-13T08:22:20.394] [INFO] cheese - inserting 1000 documents. first: Trichosalpinx orbicularis and last: Acreage base -[2018-02-13T08:22:20.451] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:22:20.447] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:22:20.491] [INFO] cheese - batch complete in: 2.841 secs -[2018-02-13T08:22:20.685] [INFO] cheese - inserting 1000 documents. first: First contact (science fiction) and last: Wikipedia:WikiProject Orphanage/Orphaned Articles/T -[2018-02-13T08:22:20.755] [INFO] cheese - inserting 1000 documents. first: Luteal Hormone and last: Thieves by Law -[2018-02-13T08:22:20.811] [INFO] cheese - inserting 1000 documents. first: Category:Radio stations established in 1934 and last: Noirval -[2018-02-13T08:22:20.890] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:22:20.929] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:22:21.048] [INFO] cheese - inserting 1000 documents. first: Mulberry River Bridge (disambiguation) and last: Santi Biagio e Carlo ai Catinari -[2018-02-13T08:22:21.045] [INFO] cheese - inserting 1000 documents. first: Legislative district of Surigao del Norte and last: Number in Chinese culture -[2018-02-13T08:22:21.065] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:22:21.136] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:22:21.280] [INFO] cheese - inserting 1000 documents. first: Category:Air and Space Manufacturing aircraft and last: Eupithecia ridiculata -[2018-02-13T08:22:21.292] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:22:21.474] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:22:21.542] [INFO] cheese - inserting 1000 documents. first: Category:Documentary films about surfing and last: Velká Buková -[2018-02-13T08:22:21.689] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:22:21.883] [INFO] cheese - inserting 1000 documents. first: Qaqortoq Museum and last: Lift strut -[2018-02-13T08:22:22.016] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:22:22.080] [INFO] cheese - inserting 1000 documents. first: Red vines and last: File:Maxwell relax spectra.PNG -[2018-02-13T08:22:22.082] [INFO] cheese - inserting 1000 documents. first: Nouart and last: Portal:Anarchism/Anniversaries/January/January 29 -[2018-02-13T08:22:22.162] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:22:22.226] [INFO] cheese - inserting 1000 documents. first: A Christmas Sing with Bing Around the World and last: Category:Articles written from a fan's POV -[2018-02-13T08:22:22.299] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T08:22:22.300] [INFO] cheese - inserting 1000 documents. first: Gardiner Historic District (Gardiner, Oregon) and last: Ortet -[2018-02-13T08:22:22.366] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:22:22.428] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:22:22.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2006-10-30/Interwiki report and last: Orignolles -[2018-02-13T08:22:22.562] [INFO] cheese - inserting 1000 documents. first: Category:Plays by Seamus Heaney and last: File:Riceboy.jpg -[2018-02-13T08:22:22.705] [INFO] cheese - batch complete in: 1.413 secs -[2018-02-13T08:22:22.752] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T08:22:23.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Mrtvshow/Archive and last: Template:Manitoba provincial election, 2011/Dauphin -[2018-02-13T08:22:23.037] [INFO] cheese - inserting 1000 documents. first: Category:Articles written like resumes and last: Category:18th-century disestablishments in the Old Swiss Confederacy -[2018-02-13T08:22:23.066] [INFO] cheese - inserting 1000 documents. first: Bechara Choucair and last: Viburnum farreri -[2018-02-13T08:22:23.075] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:23.119] [INFO] cheese - inserting 1000 documents. first: Bagneux-la-Fosse and last: Salinas Airport -[2018-02-13T08:22:23.137] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:22:23.151] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:22:23.192] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:22:23.274] [INFO] cheese - inserting 1000 documents. first: Pantodon buchholzi and last: E941 -[2018-02-13T08:22:23.325] [INFO] cheese - inserting 1000 documents. first: Internet Locator Server and last: The free software movement -[2018-02-13T08:22:23.413] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:22:23.420] [INFO] cheese - inserting 1000 documents. first: Wilderness house literary review and last: Utah State Route 83 -[2018-02-13T08:22:23.438] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:22:23.529] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:22:23.623] [INFO] cheese - inserting 1000 documents. first: Superlinear convergence and last: Template:Olympic venues weightlifting -[2018-02-13T08:22:23.677] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:22:23.684] [INFO] cheese - inserting 1000 documents. first: Category:1940 in Asian sport and last: Less-than symbol -[2018-02-13T08:22:23.715] [INFO] cheese - inserting 1000 documents. first: File:1972 All-Ireland Senior Hurling Championship Final.jpg and last: Frank Eric Lloyd -[2018-02-13T08:22:23.797] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:22:23.842] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:22:23.927] [INFO] cheese - inserting 1000 documents. first: Fontcouverte, Aude and last: Frozen (House) -[2018-02-13T08:22:23.988] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:22:24.173] [INFO] cheese - inserting 1000 documents. first: E942 and last: Plymouth Blitz -[2018-02-13T08:22:24.220] [INFO] cheese - inserting 1000 documents. first: Baptist Youth and last: File:FK Palilulac.png -[2018-02-13T08:22:24.238] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:22:24.273] [INFO] cheese - inserting 1000 documents. first: Leonora Knatchbull and last: Bharia people -[2018-02-13T08:22:24.333] [INFO] cheese - inserting 1000 documents. first: Dormition Cathedral (disambiguation) and last: Critically Endangered species -[2018-02-13T08:22:24.335] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:22:24.347] [INFO] cheese - inserting 1000 documents. first: File:Logo of Royal Central College - Polonnaruwa.png and last: File:Supersoft.svg -[2018-02-13T08:22:24.353] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:22:24.419] [INFO] cheese - inserting 1000 documents. first: Less than bracket and last: Hoanib River -[2018-02-13T08:22:24.459] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:22:24.499] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:22:24.543] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:22:24.628] [INFO] cheese - inserting 1000 documents. first: Miyamoto-san and last: Neubois -[2018-02-13T08:22:24.671] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:22:24.701] [INFO] cheese - inserting 1000 documents. first: Pecos County, Texas and last: Port Laoise -[2018-02-13T08:22:24.803] [INFO] cheese - inserting 1000 documents. first: Rusko Selo and last: Pardes Hanna-Karkur Railway Station -[2018-02-13T08:22:24.884] [INFO] cheese - batch complete in: 4.393 secs -[2018-02-13T08:22:24.909] [INFO] cheese - inserting 1000 documents. first: Kazakhstan national beach soccer team and last: Charles Person -[2018-02-13T08:22:24.911] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:22:24.939] [INFO] cheese - inserting 1000 documents. first: File:Candon Civic Center.jpg and last: Zoo Botanical Park Dois Irmãos -[2018-02-13T08:22:24.990] [INFO] cheese - inserting 1000 documents. first: Alternating diagram and last: Sar Asiab, Jiroft -[2018-02-13T08:22:24.991] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:22:25.105] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:22:25.109] [INFO] cheese - inserting 1000 documents. first: Category:People from Selston and last: List of The Best Show with Tom Scharpling episodes -[2018-02-13T08:22:25.161] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:22:25.246] [INFO] cheese - inserting 1000 documents. first: Urago and last: Vin -[2018-02-13T08:22:25.265] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:22:25.548] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T08:22:25.601] [INFO] cheese - inserting 1000 documents. first: Neugartheim-Ittlenheim and last: Point au Gaul -[2018-02-13T08:22:25.699] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:22:25.797] [INFO] cheese - inserting 1000 documents. first: 19th Cavalry Regiment (United States) and last: Sawbwa Barb -[2018-02-13T08:22:25.817] [INFO] cheese - inserting 1000 documents. first: Paasiku and last: Linerider -[2018-02-13T08:22:25.836] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:22:25.856] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:22:25.896] [INFO] cheese - inserting 1000 documents. first: RPP (disambiguation) and last: Кипелов (band) -[2018-02-13T08:22:26.007] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:22:26.059] [INFO] cheese - inserting 1000 documents. first: WhoaVerse and last: Category:Cenozoic geochronology -[2018-02-13T08:22:26.195] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:22:26.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Bible/Watchlist and last: Taliesin III -[2018-02-13T08:22:26.323] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:22:26.464] [INFO] cheese - inserting 1000 documents. first: Point Lance and last: Category:FA-Class Robotics articles -[2018-02-13T08:22:26.468] [INFO] cheese - inserting 1000 documents. first: Count of Cavour and last: Category:Belgian expatriate rugby union players -[2018-02-13T08:22:26.548] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:22:26.547] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:22:26.553] [INFO] cheese - inserting 1000 documents. first: Big Brother (Suomi) and last: Table of planets and dwarf planets in the solar system -[2018-02-13T08:22:26.625] [INFO] cheese - inserting 1000 documents. first: Wikipedia:NUKE and last: ESAKE A1 Ethniki 2008–09 -[2018-02-13T08:22:26.664] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:22:26.669] [INFO] cheese - inserting 1000 documents. first: Bacacay, Albay and last: Wikipedia:Articles for deletion/We Are the Eighties -[2018-02-13T08:22:26.717] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:22:26.791] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:22:26.829] [INFO] cheese - inserting 1000 documents. first: 1st arrondissement of Marseille and last: Performace Operational analysis -[2018-02-13T08:22:26.853] [INFO] cheese - inserting 1000 documents. first: Lamellicornia and last: Template:Australia Squad Ashes 1886-87 -[2018-02-13T08:22:26.905] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:22:26.973] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:22:27.027] [INFO] cheese - inserting 1000 documents. first: John Tucker (merchant trader) and last: William Frances Schey -[2018-02-13T08:22:27.081] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:22:27.139] [INFO] cheese - inserting 1000 documents. first: Sugeng Wayudi and last: Saadat Hasan Manto (TV series) -[2018-02-13T08:22:27.173] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:22:27.303] [INFO] cheese - inserting 1000 documents. first: Melanie Papalia and last: Wikipedia:Files for deletion/2011 April 9 -[2018-02-13T08:22:27.346] [INFO] cheese - inserting 1000 documents. first: Calgary Cardinals and last: Prentiss Oakley -[2018-02-13T08:22:27.362] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:22:27.388] [INFO] cheese - inserting 1000 documents. first: Template:England Squad Ashes 1886-87 and last: La Course à l'échalote -[2018-02-13T08:22:27.506] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:22:27.513] [INFO] cheese - inserting 1000 documents. first: Gold-front and last: List of American recessions -[2018-02-13T08:22:27.523] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:22:27.607] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:22:27.715] [INFO] cheese - inserting 1000 documents. first: St. Severin, Keitum and last: Category:2008 in Hungarian sport -[2018-02-13T08:22:27.730] [INFO] cheese - inserting 1000 documents. first: Equador and last: Campbell Brown -[2018-02-13T08:22:27.813] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:22:27.829] [INFO] cheese - inserting 1000 documents. first: Template:Independent Ecological Movement/meta/color and last: Caroline Halle -[2018-02-13T08:22:27.870] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:22:27.948] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:22:28.124] [INFO] cheese - inserting 1000 documents. first: Powerade Zero and last: Integrist Party -[2018-02-13T08:22:28.138] [INFO] cheese - inserting 1000 documents. first: Drouillard and last: Muhammad Abdul Qayyum Khan -[2018-02-13T08:22:28.194] [INFO] cheese - inserting 1000 documents. first: Chac Uayab Xoc and last: Crofton Park, London, England -[2018-02-13T08:22:28.197] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:22:28.215] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:22:28.342] [INFO] cheese - inserting 1000 documents. first: Category:1961 establishments in Alaska and last: Hedgesville, Virginia -[2018-02-13T08:22:28.343] [INFO] cheese - inserting 1000 documents. first: Jerry Maygarden and last: Karjakin -[2018-02-13T08:22:28.399] [INFO] cheese - batch complete in: 3.515 secs -[2018-02-13T08:22:28.404] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:22:28.588] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:22:28.688] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class British Antarctic Territory articles and last: Sharks F. C. -[2018-02-13T08:22:28.720] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of 2toy mora and last: What's the Time? -[2018-02-13T08:22:28.743] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:22:29.012] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:22:29.298] [INFO] cheese - inserting 1000 documents. first: St. Albans Diocese and last: Moi, Aust-Agder -[2018-02-13T08:22:29.316] [INFO] cheese - inserting 1000 documents. first: Tiffanie Ward and last: Sébastien Migné -[2018-02-13T08:22:29.375] [INFO] cheese - inserting 1000 documents. first: Category:Architects from Friuli-Venezia Giulia and last: 53-K -[2018-02-13T08:22:29.450] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:22:29.455] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:22:29.513] [INFO] cheese - inserting 1000 documents. first: Sharks FC and last: File:Iced Earth Overture of the Wicked.jpg -[2018-02-13T08:22:29.525] [INFO] cheese - batch complete in: 1.31 secs -[2018-02-13T08:22:29.600] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:22:29.656] [INFO] cheese - inserting 1000 documents. first: Otto IV of Wittelsbach and last: Nightstar (train) -[2018-02-13T08:22:29.686] [INFO] cheese - inserting 1000 documents. first: .xls and last: Boundary Stelae of Akhenaten -[2018-02-13T08:22:29.806] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:22:29.856] [INFO] cheese - batch complete in: 1.986 secs -[2018-02-13T08:22:29.971] [INFO] cheese - inserting 1000 documents. first: IEC 5009 and last: USAT Thomas F. Farrel, Jr. -[2018-02-13T08:22:30.134] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:22:30.238] [INFO] cheese - inserting 1000 documents. first: Mollestad and last: Dirac's theorem on cycles in k-connected graphs -[2018-02-13T08:22:30.271] [INFO] cheese - inserting 1000 documents. first: Roja Kootam (TV series) and last: Amrinder Singh Raja Warring -[2018-02-13T08:22:30.303] [INFO] cheese - inserting 1000 documents. first: Pat Bradley (boxer) and last: Ould Nouroudine -[2018-02-13T08:22:30.316] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:22:30.392] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:22:30.429] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:22:30.465] [INFO] cheese - inserting 1000 documents. first: Talleyville, Delaware and last: Category:Districts of Dong Nai Province -[2018-02-13T08:22:30.557] [INFO] cheese - inserting 1000 documents. first: County cup and last: Pithecia monhachus -[2018-02-13T08:22:30.592] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:22:30.690] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:22:30.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Coverage of Mathworld topics/N and last: The End (A Series of Unfortunate Events) -[2018-02-13T08:22:30.892] [INFO] cheese - inserting 1000 documents. first: Archbishop's Palace, Armagh and last: Category:Landforms of Loir-et-Cher -[2018-02-13T08:22:30.904] [INFO] cheese - inserting 1000 documents. first: Parallel Reduced Instruction Set Machine and last: Adipose Tissue -[2018-02-13T08:22:30.915] [INFO] cheese - inserting 1000 documents. first: Category:Former Mid-America Intercollegiate Athletics Association schools and last: Pseudepigraph -[2018-02-13T08:22:30.927] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:22:30.957] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:22:30.990] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:30.993] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:22:31.047] [INFO] cheese - inserting 1000 documents. first: Sucker punch (film) and last: List of World Heritage Sites by year of inscription -[2018-02-13T08:22:31.070] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/kayky sthefany.zip.net and last: Solanum paniculatum -[2018-02-13T08:22:31.123] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:22:31.195] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:22:31.271] [INFO] cheese - inserting 1000 documents. first: Category:Latino templates and last: Quilmes de Mar del Plata -[2018-02-13T08:22:31.358] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:22:31.414] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 14 Business (Abbeville) and last: Fujinon XF 56mm F1.2 R -[2018-02-13T08:22:31.490] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:22:31.504] [INFO] cheese - inserting 1000 documents. first: Raymond Hill (musician) and last: National Register of Historic Places listings in Kenedy County, Texas -[2018-02-13T08:22:31.569] [INFO] cheese - inserting 1000 documents. first: Qatar Foundation and last: Australia in England in 2005 -[2018-02-13T08:22:31.575] [INFO] cheese - inserting 1000 documents. first: PSU South/Southwest College Street and PSU South/Southwest Jackson Street (MAX stations) and last: Hemipyrrha -[2018-02-13T08:22:31.589] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:31.651] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:22:31.722] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:22:31.771] [INFO] cheese - inserting 1000 documents. first: Malicious executables and last: Giou-de-Mamou -[2018-02-13T08:22:31.867] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Duisburg and last: Book:Deborah Cox -[2018-02-13T08:22:31.901] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:22:31.984] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:22:32.130] [INFO] cheese - inserting 1000 documents. first: National Register of Historic Places listings in Kinney County, Texas and last: Class 53 (disambiguation) -[2018-02-13T08:22:32.156] [INFO] cheese - inserting 1000 documents. first: Gateshead West (UK Parliament constituency) and last: File:Wmdata.png -[2018-02-13T08:22:32.172] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of artists who have resided in Brooklyn and last: Carl Rathjens -[2018-02-13T08:22:32.182] [INFO] cheese - inserting 1000 documents. first: Element 93 and last: Khazaran, Khazaria -[2018-02-13T08:22:32.202] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:22:32.208] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:22:32.254] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:22:32.263] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/thehealthtime.com and last: Neodesmodes -[2018-02-13T08:22:32.329] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:22:32.434] [INFO] cheese - batch complete in: 4.035 secs -[2018-02-13T08:22:32.530] [INFO] cheese - inserting 1000 documents. first: Western super Mare and last: Friedrich Amerling -[2018-02-13T08:22:32.568] [INFO] cheese - inserting 1000 documents. first: Girgols and last: Category:Stub-Class Paraguay articles -[2018-02-13T08:22:32.602] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:22:32.607] [INFO] cheese - inserting 1000 documents. first: Cleveland Elementary School shooting (disambiguation) and last: Croton japonicus -[2018-02-13T08:22:32.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Scotland national football team hat-tricks/archive1 and last: Tadeu Terra -[2018-02-13T08:22:32.646] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:22:32.673] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:22:32.715] [INFO] cheese - inserting 1000 documents. first: Madre de Dios (mine) and last: Helenium apterum -[2018-02-13T08:22:32.744] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:22:32.790] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:22:32.895] [INFO] cheese - inserting 1000 documents. first: Spaeth and last: Record Separator -[2018-02-13T08:22:32.983] [INFO] cheese - inserting 1000 documents. first: Neodontopera and last: 2010 U.S. Women's Open Golf Championship -[2018-02-13T08:22:32.991] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:22:33.047] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:22:33.146] [INFO] cheese - inserting 1000 documents. first: Deanthony Thomas and last: MEPs for Denmark 1984–1989 -[2018-02-13T08:22:33.161] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kenophobia and last: Aisne's 3rd constituency -[2018-02-13T08:22:33.205] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:22:33.208] [INFO] cheese - inserting 1000 documents. first: Category:1291 in the Holy Roman Empire and last: Nevado Sacsa Ananta -[2018-02-13T08:22:33.226] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:22:33.299] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:22:33.308] [INFO] cheese - inserting 1000 documents. first: Robe à l'Anglaise and last: Melittia chalconota -[2018-02-13T08:22:33.361] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:22:33.422] [INFO] cheese - inserting 1000 documents. first: Joe Varner and last: Archermos -[2018-02-13T08:22:33.501] [INFO] cheese - inserting 1000 documents. first: Zealand River and last: Eritrean Telecommunications Corporation -[2018-02-13T08:22:33.519] [INFO] cheese - inserting 1000 documents. first: Canada, Western and last: Mostaganem Airport -[2018-02-13T08:22:33.521] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:22:33.545] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:22:33.579] [INFO] cheese - inserting 1000 documents. first: MEPs for France 1984–1989 and last: Wilcox County Schools (Alabama) -[2018-02-13T08:22:33.640] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:22:33.672] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:22:33.851] [INFO] cheese - inserting 1000 documents. first: Nambooripad's natural partial order and last: Pterynotus fulgens -[2018-02-13T08:22:33.861] [INFO] cheese - inserting 1000 documents. first: H-62 and last: Formula Off Road -[2018-02-13T08:22:33.904] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:22:33.940] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:22:33.954] [INFO] cheese - inserting 1000 documents. first: Category:Hatakeyama clan and last: Santucho -[2018-02-13T08:22:34.064] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:22:34.103] [INFO] cheese - inserting 1000 documents. first: Wamberal Lagoon and last: Category:International speed skating competitions -[2018-02-13T08:22:34.217] [INFO] cheese - inserting 1000 documents. first: Category:Indoor arenas in Malaysia and last: File:Wild Lavander.JPG -[2018-02-13T08:22:34.251] [INFO] cheese - inserting 1000 documents. first: Tepexpan man and last: Blacklist (band) -[2018-02-13T08:22:34.262] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:22:34.292] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:22:34.379] [INFO] cheese - inserting 1000 documents. first: History of the Arabic alphabet / from French and last: Bombing of Hiroshima -[2018-02-13T08:22:34.421] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:22:34.500] [INFO] cheese - inserting 1000 documents. first: Template:User citizen Falkland Islands and last: 1976–77 Colchester United F.C. season -[2018-02-13T08:22:34.523] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:22:34.627] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:22:34.707] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2008 January 25 and last: Carl Marotte -[2018-02-13T08:22:34.818] [INFO] cheese - inserting 1000 documents. first: Mirna funk and last: Patriarch Alexander I of Alexandria -[2018-02-13T08:22:34.816] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:22:34.833] [INFO] cheese - inserting 1000 documents. first: Kirkwall airport and last: Osteocephalus pearsoni -[2018-02-13T08:22:34.886] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:22:34.900] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:22:35.099] [INFO] cheese - inserting 1000 documents. first: Ken Booth (academic) and last: Albert Cunha -[2018-02-13T08:22:35.118] [INFO] cheese - inserting 1000 documents. first: Victoria Dunlap and last: Smoky the Cow Horse -[2018-02-13T08:22:35.197] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:22:35.198] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:22:35.226] [INFO] cheese - inserting 1000 documents. first: Atomic authorization and last: Teaching for King Merikare -[2018-02-13T08:22:35.287] [INFO] cheese - inserting 1000 documents. first: Geology of Yorkshire and last: Willoughby-Eastlake City School District -[2018-02-13T08:22:35.317] [INFO] cheese - inserting 1000 documents. first: Muraviev-Amurskiy and last: JPI -[2018-02-13T08:22:35.332] [INFO] cheese - inserting 1000 documents. first: Parole camp and last: Wikipedia:Phishing e-mails -[2018-02-13T08:22:35.341] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:22:35.335] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:22:35.473] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:22:35.475] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:22:35.600] [INFO] cheese - inserting 1000 documents. first: Balanjar, Khazaria and last: Realencyclopädie der classischen Altertumswissenschaft -[2018-02-13T08:22:35.689] [INFO] cheese - inserting 1000 documents. first: 2004 Cape Verdean Football Championships and last: Phogat, Bhiwani -[2018-02-13T08:22:35.756] [INFO] cheese - batch complete in: 3.322 secs -[2018-02-13T08:22:35.778] [INFO] cheese - inserting 1000 documents. first: Heathrow (disambiguation) and last: Sinagoga mare -[2018-02-13T08:22:35.825] [INFO] cheese - inserting 1000 documents. first: Minnesota Zoological Garden and last: St Austell & Newquay -[2018-02-13T08:22:35.849] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:22:35.883] [INFO] cheese - inserting 1000 documents. first: Stefani Carter and last: Category:Drive Like Jehu -[2018-02-13T08:22:35.941] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:22:35.949] [INFO] cheese - inserting 1000 documents. first: Berthelet and last: The Tale of Neferkare and Sasenet -[2018-02-13T08:22:36.038] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:22:36.098] [INFO] cheese - inserting 1000 documents. first: 52 Motorised Division Torino and last: Eupithecia derogata -[2018-02-13T08:22:36.138] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:22:36.169] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:22:36.204] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:22:36.492] [INFO] cheese - inserting 1000 documents. first: T J Reid and last: Wikipedia:Articles for deletion/Alphacell -[2018-02-13T08:22:36.496] [INFO] cheese - inserting 1000 documents. first: Showstopper bug and last: Wikipedia:Articles for deletion/TAO (software) -[2018-02-13T08:22:36.594] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:22:36.664] [INFO] cheese - inserting 1000 documents. first: Super Hits (Peabo Bryson album) and last: Category:1966 in the Spanish Empire -[2018-02-13T08:22:36.664] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:22:36.768] [INFO] cheese - inserting 1000 documents. first: Choir of St George's Chapel, Windsor Castle and last: U.S. Highway 25E (Virginia) -[2018-02-13T08:22:36.779] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:22:36.865] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Phrygia and last: File:FStourposter.jpeg -[2018-02-13T08:22:36.881] [INFO] cheese - inserting 1000 documents. first: Makram N. Kaiser and last: Template:Fb team FIU men -[2018-02-13T08:22:36.935] [INFO] cheese - inserting 1000 documents. first: Eri Tanaka and last: Template:Frozenbyte -[2018-02-13T08:22:36.964] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:22:37.024] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:22:37.090] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:22:37.094] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:22:37.317] [INFO] cheese - inserting 1000 documents. first: Template:1972 Baseball HOF and last: File:Every Day's a Holiday 1937.jpg -[2018-02-13T08:22:37.409] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:22:37.489] [INFO] cheese - inserting 1000 documents. first: ChoroQ and last: Death and state funeral of JFK -[2018-02-13T08:22:37.547] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:22:37.605] [INFO] cheese - inserting 1000 documents. first: Palaui Island and last: Naturwaldreservat Wettersteinwald -[2018-02-13T08:22:37.636] [INFO] cheese - inserting 1000 documents. first: David Painter (disambiguation) and last: Category:Suspected Wikipedia sockpuppets of Lupe-340 -[2018-02-13T08:22:37.738] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:22:37.743] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:22:37.776] [INFO] cheese - inserting 1000 documents. first: U.S. Highway 25E in Virginia and last: Intimate Portrait -[2018-02-13T08:22:37.791] [INFO] cheese - inserting 1000 documents. first: 3rd Canadian Battalion (Toronto Regiment), CEF and last: NVLR -[2018-02-13T08:22:37.886] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:22:37.905] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:22:37.956] [INFO] cheese - inserting 1000 documents. first: John F. R. Kerr and last: Cook Shire Hall -[2018-02-13T08:22:38.077] [INFO] cheese - inserting 1000 documents. first: Khwarezmiyya and last: Papers -[2018-02-13T08:22:38.097] [INFO] cheese - batch complete in: 1.318 secs -[2018-02-13T08:22:38.166] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:22:38.335] [INFO] cheese - inserting 1000 documents. first: Category:Kishwaukee College and last: Enid, Oklahoma micropolitan area -[2018-02-13T08:22:38.454] [INFO] cheese - inserting 1000 documents. first: Funbag Animation Studios and last: Louise Bourgeois Boursier -[2018-02-13T08:22:38.455] [INFO] cheese - inserting 1000 documents. first: Once on This Island and last: Wikipedia:Articles for deletion/Twat -[2018-02-13T08:22:38.455] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:22:38.530] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:22:38.549] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:22:38.575] [INFO] cheese - inserting 1000 documents. first: Converting and last: Pressure volume work -[2018-02-13T08:22:38.664] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:22:38.734] [INFO] cheese - inserting 1000 documents. first: I Was Totally Destroying It and last: Pierre Nothomb -[2018-02-13T08:22:38.751] [INFO] cheese - inserting 1000 documents. first: Expectation hypothesis and last: Category:Track cycling at the 2015 Pan American Games -[2018-02-13T08:22:38.762] [INFO] cheese - inserting 1000 documents. first: 2008 Pattaya Women's Open – Doubles and last: Norman Uprichard -[2018-02-13T08:22:38.793] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:22:38.802] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:22:38.871] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:22:38.893] [INFO] cheese - inserting 1000 documents. first: Template:Iraq Squad 2000 AFC Asian Cup and last: Eupithecia kostjuki -[2018-02-13T08:22:39.009] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:22:39.045] [INFO] cheese - inserting 1000 documents. first: Fíjate bien and last: Wikipedia:WikiProject Spam/LinkReports/zo-osijek.hr -[2018-02-13T08:22:39.054] [INFO] cheese - inserting 1000 documents. first: Cornerstone Festival and last: The Plimsouls -[2018-02-13T08:22:39.116] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:22:39.178] [INFO] cheese - inserting 1000 documents. first: Patriarch Constantine III and last: Nycteras -[2018-02-13T08:22:39.223] [INFO] cheese - batch complete in: 3.467 secs -[2018-02-13T08:22:39.247] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T08:22:39.250] [INFO] cheese - inserting 1000 documents. first: Anthem (We Are the Fire) and last: Wikipedia:Articles for deletion/Fancies -[2018-02-13T08:22:39.350] [INFO] cheese - inserting 1000 documents. first: Psilosetia and last: 2009 Mercedes Cup -[2018-02-13T08:22:39.367] [INFO] cheese - inserting 1000 documents. first: Full figured model and last: Wikipedia:Articles for deletion/Vincent Hermany -[2018-02-13T08:22:39.369] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:22:39.439] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:22:39.519] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:22:39.532] [INFO] cheese - inserting 1000 documents. first: File:PREMIER COLLEGE.jpg and last: William FitzAlan, Lord of Oswestry -[2018-02-13T08:22:39.586] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:22:39.768] [INFO] cheese - inserting 1000 documents. first: Vice magazine and last: Champagne, Charente-Maritime -[2018-02-13T08:22:39.828] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:22:39.850] [INFO] cheese - inserting 1000 documents. first: Wyscig Dookola Mazowsza and last: Pothaipalle -[2018-02-13T08:22:39.935] [INFO] cheese - inserting 1000 documents. first: Érik Morales vs. Marco Antonio Barrera II and last: Category:1969 in the Netherlands Antilles -[2018-02-13T08:22:39.957] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:22:40.031] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:22:40.139] [INFO] cheese - inserting 1000 documents. first: Minor oilseeds and last: Pamiat Merkuria -[2018-02-13T08:22:40.141] [INFO] cheese - inserting 1000 documents. first: Day-for-a-year principle and last: Little Miss Shy -[2018-02-13T08:22:40.188] [INFO] cheese - inserting 1000 documents. first: Pseudobagrus wittenburgi and last: Category:Demolished buildings and structures in Dortmund -[2018-02-13T08:22:40.205] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:22:40.261] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:22:40.250] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:22:40.468] [INFO] cheese - inserting 1000 documents. first: File:Yeondong college logo.jpg and last: Wikipedia:Collaboration of the week/Midtown (Manhattan) -[2018-02-13T08:22:40.551] [INFO] cheese - inserting 1000 documents. first: 1884 Cleveland Blues season and last: Lord Barrymore -[2018-02-13T08:22:40.561] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:22:40.572] [INFO] cheese - inserting 1000 documents. first: Elavamkodu Desam and last: Generalized Multi-Protocol Label Switching -[2018-02-13T08:22:40.623] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:22:40.673] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:22:40.758] [INFO] cheese - inserting 1000 documents. first: The 100: A ranking of the most influential persons in history and last: Devon (England) -[2018-02-13T08:22:40.807] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:22:40.826] [INFO] cheese - inserting 1000 documents. first: Marvelman and last: Nagas -[2018-02-13T08:22:40.877] [INFO] cheese - inserting 1000 documents. first: Characters of Smash and last: Anton Rodgers (footballer) -[2018-02-13T08:22:40.970] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:22:40.973] [INFO] cheese - batch complete in: 1.75 secs -[2018-02-13T08:22:41.055] [INFO] cheese - inserting 1000 documents. first: Benjamin Stevens (cricketer) and last: Paris of China -[2018-02-13T08:22:41.106] [INFO] cheese - inserting 1000 documents. first: Little Miss Somersault and last: Cork (Parliament of Ireland constituency) -[2018-02-13T08:22:41.107] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:22:41.132] [INFO] cheese - inserting 1000 documents. first: Category:People from Siberia and last: Wikipedia:WikiProject Film/Review/FAR/Instructions -[2018-02-13T08:22:41.137] [INFO] cheese - inserting 1000 documents. first: O'Higgins family and last: Sagaga-Le-Falefa -[2018-02-13T08:22:41.206] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:22:41.218] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:22:41.256] [INFO] cheese - inserting 1000 documents. first: WrestleMania: All Grown Up and last: Category:Formula Two series -[2018-02-13T08:22:41.250] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:22:41.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/TamarNavrotzky and last: Bill Ritter (journalist) -[2018-02-13T08:22:41.355] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:22:41.415] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:22:41.477] [INFO] cheese - inserting 1000 documents. first: Category:Art by topic and last: Plank unit -[2018-02-13T08:22:41.543] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:22:41.863] [INFO] cheese - inserting 1000 documents. first: Romolo Valentino Benedetto Nati and last: Blockbuster Video Entertainment -[2018-02-13T08:22:41.917] [INFO] cheese - inserting 1000 documents. first: Tilgarsley and last: File:John Kerr.JPG -[2018-02-13T08:22:41.976] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:22:42.002] [INFO] cheese - inserting 1000 documents. first: Sound 360 and last: Wikipedia:Articles for deletion/Colonic Felon -[2018-02-13T08:22:42.034] [INFO] cheese - inserting 1000 documents. first: Vaimauga West and last: GBRT -[2018-02-13T08:22:42.107] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/Review/FC/Instructions and last: File:JasonJollinsPachaBsAs.jpg -[2018-02-13T08:22:42.150] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:22:42.197] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:22:42.231] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:22:42.293] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:22:42.390] [INFO] cheese - inserting 1000 documents. first: Steve Marriner and last: Trechus thomasbarri -[2018-02-13T08:22:42.470] [INFO] cheese - inserting 1000 documents. first: Dispatch News Service and last: West Preston -[2018-02-13T08:22:42.543] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:22:42.605] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:22:42.826] [INFO] cheese - inserting 1000 documents. first: Serpulorbis inopertus and last: Category:Ancient Hinduism -[2018-02-13T08:22:42.870] [INFO] cheese - inserting 1000 documents. first: Mclaren Mercedes SLR and last: Jane Moffet -[2018-02-13T08:22:42.874] [INFO] cheese - inserting 1000 documents. first: Ananta and last: Richmond Range National Park -[2018-02-13T08:22:42.886] [INFO] cheese - inserting 1000 documents. first: Touch typeing and last: Melbourne Girls' College -[2018-02-13T08:22:42.902] [INFO] cheese - inserting 1000 documents. first: Assize (England) and last: Cinygma -[2018-02-13T08:22:42.903] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:22:42.906] [INFO] cheese - inserting 1000 documents. first: Trechus thunderheadensis and last: Category:American emigrants to Honduras -[2018-02-13T08:22:42.961] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T08:22:43.029] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:22:43.036] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:22:43.088] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:22:43.151] [INFO] cheese - batch complete in: 2.178 secs -[2018-02-13T08:22:43.200] [INFO] cheese - inserting 1000 documents. first: An Minh District and last: Inherent bias -[2018-02-13T08:22:43.296] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:22:43.626] [INFO] cheese - inserting 1000 documents. first: Category:United States Department of Health and Human Services and last: Thomson's gazelle -[2018-02-13T08:22:43.667] [INFO] cheese - inserting 1000 documents. first: Gunars Saliņš and last: File:Redshirts Cover.jpg -[2018-02-13T08:22:43.705] [INFO] cheese - inserting 1000 documents. first: PBA Sportsmanship Award and last: File:Marco Polo sheep manuscript.jpg -[2018-02-13T08:22:43.707] [INFO] cheese - inserting 1000 documents. first: Randy Paul Gage and last: Bagrat of Tao -[2018-02-13T08:22:43.755] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:22:43.772] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:22:43.855] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:22:43.902] [INFO] cheese - inserting 1000 documents. first: Canadian federal election 2011 and last: Plain-trick game -[2018-02-13T08:22:43.910] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:22:43.931] [INFO] cheese - inserting 1000 documents. first: Harold Goodwin and last: TI Presents the P$C: 25 to Life -[2018-02-13T08:22:43.939] [INFO] cheese - inserting 1000 documents. first: Malsquando and last: Mel Martin -[2018-02-13T08:22:44.016] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:22:44.044] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:22:44.093] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:22:44.308] [INFO] cheese - inserting 1000 documents. first: CVS Pharmacies and last: Lake Spivey -[2018-02-13T08:22:44.392] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:22:44.456] [INFO] cheese - inserting 1000 documents. first: Nullapon B acid and last: Eccellenza Piedmont-Aosta Valley -[2018-02-13T08:22:44.484] [INFO] cheese - inserting 1000 documents. first: Bagrat of Tao (disambiguation) and last: The Understanding of Self and Identity -[2018-02-13T08:22:44.542] [INFO] cheese - inserting 1000 documents. first: Template:WWIISovAerosani and last: Love's a Loaded Gun -[2018-02-13T08:22:44.559] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:22:44.564] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:22:44.580] [INFO] cheese - inserting 1000 documents. first: 1930 Central American and Caribbean Games and last: DTOC -[2018-02-13T08:22:44.621] [INFO] cheese - inserting 1000 documents. first: The plantation complex in the Southeastern United States and last: Template:Thessaloniki Bus Route Map (No. 78N) -[2018-02-13T08:22:44.638] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:22:44.673] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:22:44.706] [INFO] cheese - inserting 1000 documents. first: 0-0 and last: Black Rob -[2018-02-13T08:22:44.728] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:22:44.846] [INFO] cheese - inserting 1000 documents. first: Non-ideal resistor and last: File:Falck logo.jpg -[2018-02-13T08:22:44.869] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:22:44.975] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:22:45.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Abu Dhabi articles by quality statistics and last: Emanuele Paterno -[2018-02-13T08:22:45.103] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:22:45.111] [INFO] cheese - inserting 1000 documents. first: Royal National Park and last: Jack Parsons (rocket engineer) -[2018-02-13T08:22:45.143] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Pembroke Athleta and last: Tommy Hunter CM O.Ont -[2018-02-13T08:22:45.281] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:22:45.307] [INFO] cheese - batch complete in: 2.155 secs -[2018-02-13T08:22:45.393] [INFO] cheese - inserting 1000 documents. first: Harris Teachers College and last: Category:Top-importance Inheritance Cycle articles -[2018-02-13T08:22:45.435] [INFO] cheese - inserting 1000 documents. first: Rented from local authorities and last: File:UniversalJuveniles.jpg -[2018-02-13T08:22:45.442] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 April 8 and last: Category:1961 in Indian sports -[2018-02-13T08:22:45.456] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:22:45.467] [INFO] cheese - inserting 1000 documents. first: Willink and last: File:Samba in Your Casa Album.jpeg -[2018-02-13T08:22:45.551] [INFO] cheese - inserting 1000 documents. first: Thorne Colliery FC and last: Jack Gilligan -[2018-02-13T08:22:45.556] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:22:45.561] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:22:45.638] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:22:45.655] [INFO] cheese - inserting 1000 documents. first: Thomas Hunter CM O.Ont and last: Davies, Thomas -[2018-02-13T08:22:45.660] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:22:45.730] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:22:45.753] [INFO] cheese - inserting 1000 documents. first: Federal tribunals in the United States and last: Matthias Ziegler -[2018-02-13T08:22:45.876] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:22:46.218] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Inheritance Cycle articles and last: Economic compass -[2018-02-13T08:22:46.234] [INFO] cheese - inserting 1000 documents. first: Oaxacania and last: List of birds of italy -[2018-02-13T08:22:46.267] [INFO] cheese - inserting 1000 documents. first: Category:1962 in Indian sports and last: Dinara, Bihar -[2018-02-13T08:22:46.335] [INFO] cheese - inserting 1000 documents. first: Dawson, Thomas and last: Unn (Bhiwani) -[2018-02-13T08:22:46.345] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:22:46.417] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:22:46.426] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:22:46.449] [INFO] cheese - inserting 1000 documents. first: Haute-Sangha and last: Varaždinske Toplice -[2018-02-13T08:22:46.449] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/snowathome.com and last: Hudson's Bay Company Archives -[2018-02-13T08:22:46.474] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:22:46.599] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:22:46.598] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:22:46.717] [INFO] cheese - inserting 1000 documents. first: Maneans and last: Iu-mein -[2018-02-13T08:22:46.850] [INFO] cheese - inserting 1000 documents. first: File:Ann Rinaldi - An Acquaintance with Darkness.jpeg and last: 209th pope -[2018-02-13T08:22:46.853] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:22:46.950] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:22:46.969] [INFO] cheese - inserting 1000 documents. first: Holy Week (album) and last: Arisa Sato (model) -[2018-02-13T08:22:47.006] [INFO] cheese - inserting 1000 documents. first: W.A.S.T.E. (Band) and last: Twelve romanesque churches of Cologne -[2018-02-13T08:22:47.042] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:22:47.112] [INFO] cheese - inserting 1000 documents. first: Semiaugmented seventh and last: Rapid City Area School District (South Dakota) -[2018-02-13T08:22:47.182] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:22:47.265] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:22:47.361] [INFO] cheese - inserting 1000 documents. first: Johnny Lozada and last: Shorter, Alabama -[2018-02-13T08:22:47.425] [INFO] cheese - inserting 1000 documents. first: Hoste da Reggio and last: The British Aerosol Manufacturers' Association -[2018-02-13T08:22:47.449] [INFO] cheese - inserting 1000 documents. first: 210th pope and last: Strictosidine b-glucosidase -[2018-02-13T08:22:47.469] [INFO] cheese - inserting 1000 documents. first: Khabees and last: White-eared hummingbird -[2018-02-13T08:22:47.538] [INFO] cheese - batch complete in: 2.231 secs -[2018-02-13T08:22:47.552] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:22:47.597] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:22:47.746] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:22:47.931] [INFO] cheese - inserting 1000 documents. first: 1940s in games and last: Princess Alexia of Greece and Denmark -[2018-02-13T08:22:47.968] [INFO] cheese - inserting 1000 documents. first: Masoud Roghani Zanjani and last: Category:Dutch real estate brokers -[2018-02-13T08:22:48.165] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T08:22:48.209] [INFO] cheese - inserting 1000 documents. first: Reunification of Vietnam and last: FC Dynamo-D Stavropol -[2018-02-13T08:22:48.226] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:22:48.339] [INFO] cheese - inserting 1000 documents. first: Furan (disambiguation) and last: Template:Year in various calendars/sandbox -[2018-02-13T08:22:48.457] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:22:48.504] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:22:48.650] [INFO] cheese - inserting 1000 documents. first: EC 3.2.1.105 and last: Teesdale District Council elections -[2018-02-13T08:22:48.764] [INFO] cheese - inserting 1000 documents. first: Don't Walk Away and last: Stefan Filipović (singer) -[2018-02-13T08:22:48.788] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:22:48.867] [INFO] cheese - inserting 1000 documents. first: Birkir Bjarnason and last: Harlan K. Ullman -[2018-02-13T08:22:48.914] [INFO] cheese - inserting 1000 documents. first: Category:Major League Baseball Record vs. opponents templates and last: Ekjp -[2018-02-13T08:22:48.912] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:22:49.016] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T08:22:49.058] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:22:49.246] [INFO] cheese - inserting 1000 documents. first: Thomas Underwood and last: Work Haven -[2018-02-13T08:22:49.287] [INFO] cheese - inserting 1000 documents. first: File:LogoUPACIFICO.gif and last: Wikipedia:Version 1.0 Editorial Team/Metalworking articles by quality/2 -[2018-02-13T08:22:49.324] [INFO] cheese - inserting 1000 documents. first: Pleinfeld station and last: Category:1940 in North Dakota -[2018-02-13T08:22:49.315] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:22:49.363] [INFO] cheese - inserting 1000 documents. first: Willibald Kreß and last: Euroleague 2007–08 Top 16 Group F -[2018-02-13T08:22:49.384] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:22:49.401] [INFO] cheese - inserting 1000 documents. first: Lincoln Perera and last: Figuralchor der Gedächtniskirche Stuttgart -[2018-02-13T08:22:49.417] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:22:49.430] [INFO] cheese - inserting 1000 documents. first: Artland (landscape) and last: Dromoland Castle Golf and Country Club -[2018-02-13T08:22:49.469] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:22:49.540] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:22:49.542] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:22:49.551] [INFO] cheese - inserting 1000 documents. first: Sacalinu Mic Island and last: Category:Hungarian musicians by instrument -[2018-02-13T08:22:49.649] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:22:49.942] [INFO] cheese - inserting 1000 documents. first: Category:1942 in North Dakota and last: Category:NA-Class Australia road transport articles -[2018-02-13T08:22:50.036] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battlefield 2 and last: WECC (FM) -[2018-02-13T08:22:50.038] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:22:50.049] [INFO] cheese - inserting 1000 documents. first: Portal:A Nightmare on Elm Street/Selected actor/4 and last: Category:Wikipedia oversighters -[2018-02-13T08:22:50.114] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:22:50.141] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:22:50.144] [INFO] cheese - inserting 1000 documents. first: Presentation at the Temple and last: Old Skool -[2018-02-13T08:22:50.203] [INFO] cheese - inserting 1000 documents. first: Category:History books about the Zulu Kingdom and last: File:Iss logo.gif -[2018-02-13T08:22:50.237] [INFO] cheese - inserting 1000 documents. first: Double Dragon II (disambiguation) and last: File:Rte2fmlogo.png -[2018-02-13T08:22:50.236] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:22:50.276] [INFO] cheese - inserting 1000 documents. first: Tuskegee, Alabama and last: Aqueous solution -[2018-02-13T08:22:50.331] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:22:50.339] [INFO] cheese - inserting 1000 documents. first: Antwone Quenton Fisher and last: People Who Use People -[2018-02-13T08:22:50.358] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:22:50.472] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:22:50.491] [INFO] cheese - inserting 1000 documents. first: Harbans Bhalla and last: Lauricocha Lake -[2018-02-13T08:22:50.491] [INFO] cheese - batch complete in: 2.952 secs -[2018-02-13T08:22:50.615] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:22:50.766] [INFO] cheese - inserting 1000 documents. first: Fort a la Corne and last: Portal:Current events/Bangladesh/Selected Article/Current -[2018-02-13T08:22:50.774] [INFO] cheese - inserting 1000 documents. first: Tukuma Apriņķis and last: Art. 519 codice penale -[2018-02-13T08:22:50.824] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:22:50.927] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:22:51.145] [INFO] cheese - inserting 1000 documents. first: Russian winters and last: Siw Karlström -[2018-02-13T08:22:51.171] [INFO] cheese - inserting 1000 documents. first: Texas Spur 729 and last: Bedl-i askeri -[2018-02-13T08:22:51.189] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:22:51.199] [INFO] cheese - inserting 1000 documents. first: Independent Macedonia sport hall and last: Kjartansson constant Q model -[2018-02-13T08:22:51.250] [INFO] cheese - inserting 1000 documents. first: Hot Tub lung and last: Georgi Lomaia -[2018-02-13T08:22:51.251] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:22:51.310] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:22:51.377] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:22:51.417] [INFO] cheese - inserting 1000 documents. first: Dark Indigo and last: Environmental Justice -[2018-02-13T08:22:51.515] [INFO] cheese - inserting 1000 documents. first: Keith Getty discography and last: Willem den Toom -[2018-02-13T08:22:51.544] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:22:51.578] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:22:51.583] [INFO] cheese - inserting 1000 documents. first: Siv Karlström and last: Template:Userbox Dead-end pages -[2018-02-13T08:22:51.675] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:22:51.729] [INFO] cheese - inserting 1000 documents. first: Vietnam tea and last: Viișoara, Mureș -[2018-02-13T08:22:51.787] [INFO] cheese - inserting 1000 documents. first: Spanish Conquistadors and last: Sanjiang, Qiandongnan -[2018-02-13T08:22:51.819] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:22:51.831] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:22:51.961] [INFO] cheese - inserting 1000 documents. first: Bukhara State Architectural Art Museum-Preserve and last: Shitenntu014d-ji pagoda -[2018-02-13T08:22:51.963] [INFO] cheese - inserting 1000 documents. first: Amendment 26 and last: Companhia União Fabril -[2018-02-13T08:22:52.040] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:22:52.057] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:22:52.123] [INFO] cheese - inserting 1000 documents. first: Edzo Toxopeus and last: Wikipedia:Featured picture candidates/USMC War Memorial Night -[2018-02-13T08:22:52.165] [INFO] cheese - inserting 1000 documents. first: Cow Oil and last: Stanley Gullan -[2018-02-13T08:22:52.191] [INFO] cheese - inserting 1000 documents. first: W227AW and last: U. S. Route 61 Business (Muscatine, Iowa) -[2018-02-13T08:22:52.223] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:22:52.332] [INFO] cheese - inserting 1000 documents. first: Dartmoor (disambiguation) and last: Wikipedia:Articles on suicides/FAQs -[2018-02-13T08:22:52.356] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:22:52.357] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:22:52.472] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:22:52.543] [INFO] cheese - inserting 1000 documents. first: Thomas Griffiths Wainewright and last: Turgay Seren -[2018-02-13T08:22:52.559] [INFO] cheese - inserting 1000 documents. first: Distilled water and last: Angels Camp, California -[2018-02-13T08:22:52.650] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:22:52.661] [INFO] cheese - inserting 1000 documents. first: Teresa Carpenter and last: Boulevard de l'Outaouais -[2018-02-13T08:22:52.715] [INFO] cheese - batch complete in: 2.223 secs -[2018-02-13T08:22:52.807] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:22:52.854] [INFO] cheese - inserting 1000 documents. first: Template:Campaignbox Atlantic 1914–1918 and last: File:Konk flares.jpg -[2018-02-13T08:22:52.918] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:22:52.967] [INFO] cheese - inserting 1000 documents. first: Chionodes scotodes and last: Federation Academic Classical style -[2018-02-13T08:22:52.969] [INFO] cheese - inserting 1000 documents. first: U. S. Route 61 and last: File:Official heights map.jpg -[2018-02-13T08:22:53.027] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:22:53.037] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:22:53.149] [INFO] cheese - inserting 1000 documents. first: Edward Henry Pedris and last: Template:Taxonomy/Sinosaurus -[2018-02-13T08:22:53.240] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:22:53.356] [INFO] cheese - inserting 1000 documents. first: Eranos, Greece and last: File:StatenIslandTech logo.png -[2018-02-13T08:22:53.438] [INFO] cheese - inserting 1000 documents. first: File:The Evolution of Calpurnia Tate.jpeg and last: Category:Dublin University Football Club -[2018-02-13T08:22:53.506] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:22:53.586] [INFO] cheese - inserting 1000 documents. first: Template:Paul Di'Anno and last: Cain, John -[2018-02-13T08:22:53.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Canadian football/Player pages format and last: Beto Carrero -[2018-02-13T08:22:53.595] [INFO] cheese - batch complete in: 1.537 secs -[2018-02-13T08:22:53.675] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:22:53.691] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:22:53.737] [INFO] cheese - inserting 1000 documents. first: Mermaid Man and Barnacle Boy (SpongeBob SquarePants) and last: Francis Walker (entomologist) -[2018-02-13T08:22:53.795] [INFO] cheese - inserting 1000 documents. first: Yevgeni Blokhin and last: Mowtowr-e Kal Mohammad Qanbari -[2018-02-13T08:22:53.810] [INFO] cheese - inserting 1000 documents. first: 33rd Primetime Emmy Awards and last: Incident (film) -[2018-02-13T08:22:53.840] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:22:53.910] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:22:53.984] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:22:54.238] [INFO] cheese - inserting 1000 documents. first: Cairns, John and last: Wikipedia:WikiProject Rutgers/Article alerts -[2018-02-13T08:22:54.305] [INFO] cheese - inserting 1000 documents. first: Category:Bicheiros and last: File:Debbs Potts.jpg -[2018-02-13T08:22:54.306] [INFO] cheese - inserting 1000 documents. first: Electrochemicals and last: West Virginia Route 1 -[2018-02-13T08:22:54.343] [INFO] cheese - inserting 1000 documents. first: Mowtowr-e Ali Ahmad Khalqpur and last: 24/Seven (Big Time Rush album) -[2018-02-13T08:22:54.386] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:22:54.432] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:22:54.449] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:22:54.485] [INFO] cheese - inserting 1000 documents. first: Pandoras Tower and last: Hereditary cystatin C amyloid angiopathy -[2018-02-13T08:22:54.486] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:22:54.627] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:22:54.648] [INFO] cheese - inserting 1000 documents. first: Fulton Street (IRT Broadway – Seventh Avenue Line) and last: Sura Penza -[2018-02-13T08:22:54.692] [INFO] cheese - inserting 1000 documents. first: Water (data page) and last: List of governors of the Straits Settlements -[2018-02-13T08:22:54.771] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:22:54.811] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:22:54.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Seton Hall University/Article alerts and last: Diplogon falcatum -[2018-02-13T08:22:54.963] [INFO] cheese - inserting 1000 documents. first: Qasemabad, Rudbar-e Jonubi and last: Category:Media in Sassari -[2018-02-13T08:22:54.985] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:22:55.008] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:22:55.105] [INFO] cheese - inserting 1000 documents. first: File:Mrs. America 1957.JPG and last: Lugny-Bourbonnais -[2018-02-13T08:22:55.152] [INFO] cheese - inserting 1000 documents. first: West Virginia Route 3 (1920s) and last: Quito Square -[2018-02-13T08:22:55.240] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:22:55.246] [INFO] cheese - inserting 1000 documents. first: Chrysargyron and last: Category:1833 establishments in Australia -[2018-02-13T08:22:55.248] [INFO] cheese - inserting 1000 documents. first: Paris Francesco Alghisi and last: Heinz Donhauser -[2018-02-13T08:22:55.262] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:22:55.319] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:22:55.349] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:22:55.443] [INFO] cheese - inserting 1000 documents. first: Diplogon villosum and last: John G. S. Buchanan -[2018-02-13T08:22:55.473] [INFO] cheese - inserting 1000 documents. first: George, South Africa and last: History of Timisoara -[2018-02-13T08:22:55.492] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:22:55.593] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:22:55.615] [INFO] cheese - inserting 1000 documents. first: Pariva Pranati and last: United States House of Representatives election in Wyoming, 1996 -[2018-02-13T08:22:55.693] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:22:55.750] [INFO] cheese - inserting 1000 documents. first: Arnold, California and last: Cherry Hills Village, Colorado -[2018-02-13T08:22:55.789] [INFO] cheese - inserting 1000 documents. first: C18H18Cl18 and last: Expanded Memory Manager -[2018-02-13T08:22:55.870] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:22:55.938] [INFO] cheese - inserting 1000 documents. first: United States Box Office Records and last: 17th Duke of York's Royal Canadian Hussars -[2018-02-13T08:22:55.962] [INFO] cheese - batch complete in: 3.246 secs -[2018-02-13T08:22:55.991] [INFO] cheese - inserting 1000 documents. first: Zatch Bell season 1 and last: Mullah Adahdad -[2018-02-13T08:22:56.004] [INFO] cheese - inserting 1000 documents. first: File:Transaero logo (2015).svg and last: MacKay, John -[2018-02-13T08:22:56.052] [INFO] cheese - inserting 1000 documents. first: Sofiya Gubaydulina and last: Slaveholder -[2018-02-13T08:22:56.055] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:22:56.055] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:22:56.094] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:22:56.095] [INFO] cheese - inserting 1000 documents. first: Lugny-Champagne and last: Yakov Eshpai -[2018-02-13T08:22:56.166] [INFO] cheese - inserting 1000 documents. first: Template:Bobsleigh at the 1994 Winter Olympics and last: Mo' Rock -[2018-02-13T08:22:56.189] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:22:56.202] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:22:56.307] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:22:56.434] [INFO] cheese - inserting 1000 documents. first: HA IL AZIZ AHMED AL MAYTHALI and last: Ap'khazet'is Avtonomiuri Respublika -[2018-02-13T08:22:56.498] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:22:56.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kobort Koffa and last: Robogals North America -[2018-02-13T08:22:56.676] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:22:56.768] [INFO] cheese - inserting 1000 documents. first: Keppels Column and last: Norrisian professor -[2018-02-13T08:22:56.870] [INFO] cheese - inserting 1000 documents. first: Said S. Samatar and last: File:Walla Walla locator-MJC.png -[2018-02-13T08:22:56.885] [INFO] cheese - inserting 1000 documents. first: Cussy-le-Châtel and last: Cavalese cable car disaster (1976) -[2018-02-13T08:22:56.943] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:22:56.948] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Suspected copyright violations/2013-04-17 and last: Bosara errabunda -[2018-02-13T08:22:56.967] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:22:56.973] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:22:57.064] [INFO] cheese - inserting 1000 documents. first: Contus and last: Pierre Etienne Louis Dumont -[2018-02-13T08:22:57.066] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:22:57.109] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of AndreaMimi and last: Wikipedia:Version 1.0 Editorial Team/Festivals articles by quality log -[2018-02-13T08:22:57.173] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:22:57.193] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:22:57.309] [INFO] cheese - inserting 1000 documents. first: Dhanana and last: Arizona RedHawks -[2018-02-13T08:22:57.362] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:22:57.457] [INFO] cheese - inserting 1000 documents. first: Pontailler-sur-Saône and last: US Route 33 -[2018-02-13T08:22:57.486] [INFO] cheese - inserting 1000 documents. first: Jurrasic and last: Symon Archer -[2018-02-13T08:22:57.505] [INFO] cheese - inserting 1000 documents. first: Józef Aleksander Jablonowski and last: Slawomir Mrozek -[2018-02-13T08:22:57.506] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:22:57.538] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:22:57.586] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:22:57.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/loyaltyfacts.com and last: Elisabeh rohm -[2018-02-13T08:22:57.606] [INFO] cheese - inserting 1000 documents. first: Hypothalamic pituitary adrenal axis and last: Category:Churches in Chicot County, Arkansas -[2018-02-13T08:22:57.631] [INFO] cheese - inserting 1000 documents. first: Timothy McAuliffe and last: File:Le Moulin de Daudet Klaus Schulze Album.jpg -[2018-02-13T08:22:57.690] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:22:57.700] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:22:57.727] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:22:57.858] [INFO] cheese - inserting 1000 documents. first: Man of Straw (novel) and last: Wikipedia:WikiProject Spam/LinkReports/univistainsurance.com -[2018-02-13T08:22:57.903] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:22:57.921] [INFO] cheese - inserting 1000 documents. first: Skoda Superb and last: Gaddget -[2018-02-13T08:22:57.965] [INFO] cheese - inserting 1000 documents. first: Template:1972 Football HOF and last: Sainte-Verge -[2018-02-13T08:22:58.018] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:22:58.120] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:22:58.271] [INFO] cheese - inserting 1000 documents. first: File:Lbss chorus photo.jpg and last: Wikipedia:Version 1.0 Editorial Team/National Register of Historic Places articles by quality/2 -[2018-02-13T08:22:58.273] [INFO] cheese - inserting 1000 documents. first: Mainz Institute of Microtechnology and last: Wikipedia:Articles for deletion/Margaux with an x -[2018-02-13T08:22:58.300] [INFO] cheese - inserting 1000 documents. first: Category:Churches in Tanzania and last: James Wreford Watson -[2018-02-13T08:22:58.336] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:22:58.380] [INFO] cheese - inserting 1000 documents. first: File:Soundanddramacover.jpg and last: Wikipedia:Articles for deletion/Tim Coons -[2018-02-13T08:22:58.380] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:22:58.386] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:22:58.468] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:22:58.605] [INFO] cheese - inserting 1000 documents. first: Sean Ryan and last: Fritz and Chesster -[2018-02-13T08:22:58.632] [INFO] cheese - inserting 1000 documents. first: University College Dublin A. F. C. and last: Language class -[2018-02-13T08:22:58.645] [INFO] cheese - inserting 1000 documents. first: Joe Coleman (1970s pitcher) and last: McShane, John -[2018-02-13T08:22:58.651] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:22:58.694] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:22:58.751] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:22:58.839] [INFO] cheese - inserting 1000 documents. first: Columbine, Colorado and last: West Samoset, Florida -[2018-02-13T08:22:58.895] [INFO] cheese - inserting 1000 documents. first: Paskenta Band of Nomlaki Indians of California and last: 1933 Chesapeake Potomac hurricane -[2018-02-13T08:22:58.969] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:22:58.991] [INFO] cheese - inserting 1000 documents. first: Hezb-E-Islami Gulbuddin and last: Hrabovec nad Laborcom -[2018-02-13T08:22:59.052] [INFO] cheese - batch complete in: 3.09 secs -[2018-02-13T08:22:59.101] [INFO] cheese - inserting 1000 documents. first: Template:Super Cup of the Netherlands and last: 2013 Badminton Asia Championships -[2018-02-13T08:22:59.105] [INFO] cheese - inserting 1000 documents. first: Kane Miller Books and last: Imad Abdel Ghani Sabouni -[2018-02-13T08:22:59.122] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:22:59.205] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:22:59.239] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:22:59.281] [INFO] cheese - inserting 1000 documents. first: W D Caroe and last: Windermere Way -[2018-02-13T08:22:59.355] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:22:59.430] [INFO] cheese - inserting 1000 documents. first: McTaggart, John and last: Opinion polling for the Scottish Parliament election, 2016 -[2018-02-13T08:22:59.478] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:22:59.490] [INFO] cheese - inserting 1000 documents. first: File:MartinaMcBrideGreatestHits.jpg and last: Patrick Hayes -[2018-02-13T08:22:59.582] [INFO] cheese - inserting 1000 documents. first: Football League Cup 1960–61 and last: Lani McIntire -[2018-02-13T08:22:59.590] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:22:59.625] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:22:59.660] [INFO] cheese - inserting 1000 documents. first: Arthur Gaskin (squash player) and last: Sylvan Farms Vineyard -[2018-02-13T08:22:59.721] [INFO] cheese - inserting 1000 documents. first: Aghios Antonios and last: Jose de Jesus Corona -[2018-02-13T08:22:59.750] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:22:59.800] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:22:59.810] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Did you know?/12 and last: Godfrey Walusimbi -[2018-02-13T08:22:59.904] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:22:59.990] [INFO] cheese - inserting 1000 documents. first: File:Shafter.jpg and last: Fallacy of questionable analogy -[2018-02-13T08:23:00.020] [INFO] cheese - inserting 1000 documents. first: Draft:Alice Rebecca Appenzeller and last: 2018 FIFA World Cup broadcasting rights -[2018-02-13T08:23:00.051] [INFO] cheese - inserting 1000 documents. first: List of keyboardists and last: Koprivnica-Krizevci County -[2018-02-13T08:23:00.074] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:23:00.085] [INFO] cheese - inserting 1000 documents. first: Template:Mosques in Brunei and last: The Jonzun Crew -[2018-02-13T08:23:00.085] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:23:00.160] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:23:00.161] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:23:00.323] [INFO] cheese - inserting 1000 documents. first: Das sündige Dorf (disambiguation) and last: Category:Iranian football clubs 2011–12 season -[2018-02-13T08:23:00.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Inakube and last: Craft International -[2018-02-13T08:23:00.366] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:23:00.372] [INFO] cheese - inserting 1000 documents. first: Quiero Ser Como Tu and last: 1944 NFL Championship Game -[2018-02-13T08:23:00.386] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:23:00.474] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:23:00.611] [INFO] cheese - inserting 1000 documents. first: Jacob Hodges and last: Category:Landforms of West Attica -[2018-02-13T08:23:00.679] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:23:00.708] [INFO] cheese - inserting 1000 documents. first: Bor County and last: File:Thriller25.jpg -[2018-02-13T08:23:00.802] [INFO] cheese - inserting 1000 documents. first: Template:UNI deletion and last: File:Asturias president.jpg -[2018-02-13T08:23:00.814] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:00.896] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:23:00.986] [INFO] cheese - inserting 1000 documents. first: Inverness-Shire and last: Jamgon mipham rinpoche -[2018-02-13T08:23:00.987] [INFO] cheese - inserting 1000 documents. first: Category:1638 compositions and last: The grill -[2018-02-13T08:23:01.049] [INFO] cheese - inserting 1000 documents. first: Williams v Walker-Thomas Furniture Co and last: File:Burt Shotton.jpg -[2018-02-13T08:23:01.082] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:01.080] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:23:01.133] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:23:01.191] [INFO] cheese - inserting 1000 documents. first: Pour Que Tu M'aimes Encore and last: CA-12 -[2018-02-13T08:23:01.277] [INFO] cheese - inserting 1000 documents. first: File:Asubha Body Contemplation 1.png and last: Wikipedia:Articles for deletion/Vadasar -[2018-02-13T08:23:01.313] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:23:01.361] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:23:01.556] [INFO] cheese - inserting 1000 documents. first: Bad Malente-Gremsmühlen and last: McDonald & Co. -[2018-02-13T08:23:01.588] [INFO] cheese - inserting 1000 documents. first: Floirac, Lot and last: Anti-technology -[2018-02-13T08:23:01.632] [INFO] cheese - inserting 1000 documents. first: Vida!... and last: East Gate, British Columbia -[2018-02-13T08:23:01.641] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:23:01.655] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:23:01.683] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Sumbiar ítróttarfelag and last: Development of children -[2018-02-13T08:23:01.715] [INFO] cheese - inserting 1000 documents. first: Whitfield, Manatee County, Florida and last: Rossville, Georgia -[2018-02-13T08:23:01.715] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:23:01.795] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:23:01.829] [INFO] cheese - inserting 1000 documents. first: In the City (The Jam album) and last: Sebkha de Ndrhamcha -[2018-02-13T08:23:01.870] [INFO] cheese - batch complete in: 2.818 secs -[2018-02-13T08:23:01.900] [INFO] cheese - inserting 1000 documents. first: France at the 2015 World Aquatics Championships and last: File:Mildred Fahrni.jpg -[2018-02-13T08:23:01.921] [INFO] cheese - inserting 1000 documents. first: Henri Corbin and last: Minister of housing, spatial planning, and the environment -[2018-02-13T08:23:01.940] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:23:01.967] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:23:02.073] [INFO] cheese - inserting 1000 documents. first: Bite & Chew (Demo) and last: 1970 NCAA football season -[2018-02-13T08:23:02.073] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:23:02.095] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:23:02.192] [INFO] cheese - inserting 1000 documents. first: Selinsgrove, PA Micropolitan Statistical Area and last: Brooke Forrester (Brooke Logan) -[2018-02-13T08:23:02.220] [INFO] cheese - inserting 1000 documents. first: On The First Beat (TVB) and last: File:First Afro-Asian Games Logo and Mascot.PNG -[2018-02-13T08:23:02.257] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:23:02.301] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:23:02.375] [INFO] cheese - inserting 1000 documents. first: Category:Redirect-Class Universal Parks & Resorts articles and last: Template:POTD/2011-04-24 -[2018-02-13T08:23:02.445] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:23:02.453] [INFO] cheese - inserting 1000 documents. first: Whatever Happened to PJ Soles? and last: Orchard Wyndham -[2018-02-13T08:23:02.469] [INFO] cheese - inserting 1000 documents. first: Yang Huizhen and last: Category:1991 mass shootings in the United States -[2018-02-13T08:23:02.532] [INFO] cheese - inserting 1000 documents. first: Technical University of Crete and last: Cook Neilson -[2018-02-13T08:23:02.576] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:23:02.634] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:23:02.701] [INFO] cheese - inserting 1000 documents. first: Pavle Ivic and last: A.net -[2018-02-13T08:23:02.740] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:23:02.829] [INFO] cheese - inserting 1000 documents. first: Gainesville, TX Micropolitan Statistical Area and last: Category:1954 in Turkish sport -[2018-02-13T08:23:02.834] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:23:02.896] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:23:02.924] [INFO] cheese - inserting 1000 documents. first: Birther conspiracy and last: Bob Osborn -[2018-02-13T08:23:03.020] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:23:03.112] [INFO] cheese - inserting 1000 documents. first: Z Z Hill and last: 1967 US National Championships - Men's Singles -[2018-02-13T08:23:03.149] [INFO] cheese - inserting 1000 documents. first: Barbara Anderson (The Young And The Restless) and last: Template:Editnotices/Page/User talk:Chzz/Archive 31 -[2018-02-13T08:23:03.167] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:23:03.210] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:23:03.310] [INFO] cheese - inserting 1000 documents. first: Fray (comic) and last: Marcos Nicolás Delía -[2018-02-13T08:23:03.344] [INFO] cheese - inserting 1000 documents. first: Producer (film) and last: File:PlannedParenthood.JPG -[2018-02-13T08:23:03.372] [INFO] cheese - inserting 1000 documents. first: Category:1953 in Turkish sport and last: Leopold Ružicka -[2018-02-13T08:23:03.388] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:03.432] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:23:03.448] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:23:03.540] [INFO] cheese - inserting 1000 documents. first: Secret societies in Singapore and last: Iset River -[2018-02-13T08:23:03.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Milosppf/Serbian rock and last: Artillery Battalion -[2018-02-13T08:23:03.587] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:23:03.628] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:23:03.684] [INFO] cheese - inserting 1000 documents. first: Kellogg Airport and last: Category:Wikipedia requested maps of roads in New Mexico -[2018-02-13T08:23:03.764] [INFO] cheese - inserting 1000 documents. first: Galápagos four-Eyed blenny and last: Mongolian legislative election, 1981 -[2018-02-13T08:23:03.802] [INFO] cheese - inserting 1000 documents. first: Ibn Kurr and last: Shrubby daisybush -[2018-02-13T08:23:03.818] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:23:03.873] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:23:03.912] [INFO] cheese - inserting 1000 documents. first: Category:20th-century executions by Lithuania and last: El Guettar (Tunisia) -[2018-02-13T08:23:03.939] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:23:03.989] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:23:04.141] [INFO] cheese - inserting 1000 documents. first: P. W. Bridgman and last: 118401 Linear -[2018-02-13T08:23:04.202] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:23:04.221] [INFO] cheese - inserting 1000 documents. first: Electoral results for the Division of Gippsland and last: 1989 Virginia Slims of Indian Wells – Doubles -[2018-02-13T08:23:04.299] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:23:04.335] [INFO] cheese - inserting 1000 documents. first: National Natural Landmark and last: Fernand Pelloutier -[2018-02-13T08:23:04.402] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested maps of roads in North Dakota and last: Wikipedia:Articles for deletion/Techorate design -[2018-02-13T08:23:04.406] [INFO] cheese - inserting 1000 documents. first: Category:1917 establishments in Japan and last: Andrzejewska -[2018-02-13T08:23:04.417] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:23:04.444] [INFO] cheese - inserting 1000 documents. first: Trailing African daisy and last: Together (Christine Fan album) -[2018-02-13T08:23:04.446] [INFO] cheese - inserting 1000 documents. first: File:Manchester oxford road and palace theatre 01.jpg and last: Constituency NA-262 -[2018-02-13T08:23:04.454] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:23:04.478] [INFO] cheese - inserting 1000 documents. first: Between, Georgia and last: Victoria, Illinois -[2018-02-13T08:23:04.507] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:23:04.552] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:23:04.564] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:23:04.655] [INFO] cheese - batch complete in: 2.784 secs -[2018-02-13T08:23:04.715] [INFO] cheese - inserting 1000 documents. first: Asdfjkl; and last: Fidelity Fiduciary Bank -[2018-02-13T08:23:04.742] [INFO] cheese - inserting 1000 documents. first: Bull Smith and last: Nacional (Serbia) -[2018-02-13T08:23:04.840] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:23:04.867] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:23:05.139] [INFO] cheese - inserting 1000 documents. first: Battle of Radda and last: SC 11 (disambiguation) -[2018-02-13T08:23:05.172] [INFO] cheese - inserting 1000 documents. first: Francis Mallett and last: Vernois-lès-Belvoir -[2018-02-13T08:23:05.173] [INFO] cheese - inserting 1000 documents. first: Marina Loheit and last: Wikipedia:Reference desk/Archives/Miscellaneous/2011 April 22 -[2018-02-13T08:23:05.185] [INFO] cheese - inserting 1000 documents. first: Litton Das and last: Category:1523 in New Spain -[2018-02-13T08:23:05.227] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:23:05.257] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:23:05.271] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Ford.circles.gif and last: John Corabi -[2018-02-13T08:23:05.286] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:23:05.342] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:23:05.448] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:23:05.646] [INFO] cheese - inserting 1000 documents. first: Bonville, New South Wales and last: Category:Telecommunications companies of Denmark -[2018-02-13T08:23:05.704] [INFO] cheese - inserting 1000 documents. first: File:Family Album DVD cover.jpg and last: Molinos de Viento -[2018-02-13T08:23:05.722] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:23:05.741] [INFO] cheese - inserting 1000 documents. first: Sean Reynolds (disambiguation) and last: 𐎢 -[2018-02-13T08:23:05.829] [INFO] cheese - inserting 1000 documents. first: Le Vernoy and last: Portland–Montreal Pipe Line -[2018-02-13T08:23:05.837] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:23:05.854] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:23:05.873] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2011 April 22 and last: Ahmed Mukhtar Pasha -[2018-02-13T08:23:05.903] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:23:05.915] [INFO] cheese - inserting 1000 documents. first: Sant'Agostino, Lucca and last: Hemis Shukpachan -[2018-02-13T08:23:05.949] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:23:06.033] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:23:06.050] [INFO] cheese - inserting 1000 documents. first: Rivalry and last: Svatopluk Cech -[2018-02-13T08:23:06.112] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:23:06.298] [INFO] cheese - inserting 1000 documents. first: 𐎣 and last: France Angola relations -[2018-02-13T08:23:06.326] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:23:06.351] [INFO] cheese - inserting 1000 documents. first: Category:Telecommunications companies of Sweden and last: Little Black Heart -[2018-02-13T08:23:06.417] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:06.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Miss United Continent 2013 (2nd nomination) and last: Wikipedia:Sockpuppet investigations/220.240.44.143 -[2018-02-13T08:23:06.553] [INFO] cheese - inserting 1000 documents. first: File:WGI Dinner.jpg and last: Colgate, West Sussex -[2018-02-13T08:23:06.633] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:23:06.645] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:23:06.708] [INFO] cheese - inserting 1000 documents. first: بازئی and last: Daneu -[2018-02-13T08:23:06.755] [INFO] cheese - inserting 1000 documents. first: France – Angola relations and last: Template:TFA title/April 26, 2013 -[2018-02-13T08:23:06.809] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:23:06.887] [INFO] cheese - inserting 1000 documents. first: Babak and last: Work-flow -[2018-02-13T08:23:06.891] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:23:06.965] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/bobanddan.com and last: Wikipedia:Articles for deletion/Shane O'Connor (soccer) -[2018-02-13T08:23:07.061] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:23:07.137] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:23:07.326] [INFO] cheese - inserting 1000 documents. first: North Herefordshire and last: Wikipedia:Articles for deletion/Siġġiewi (streets) -[2018-02-13T08:23:07.397] [INFO] cheese - inserting 1000 documents. first: Roman-Sabine wars and last: Nara Shumsher JBR -[2018-02-13T08:23:07.465] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jonathan Davis (audiobook narrator) and last: Wikipedia:WikiProject Spam/LinkReports/petit-train.info -[2018-02-13T08:23:07.467] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:07.493] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:23:07.566] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:23:07.607] [INFO] cheese - inserting 1000 documents. first: Category:Governors of North Jeolla Province and last: Category:Men's national sports teams of Scotland -[2018-02-13T08:23:07.616] [INFO] cheese - inserting 1000 documents. first: Wataga, Illinois and last: Michiana Shores, Indiana -[2018-02-13T08:23:07.651] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:23:07.691] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Sandusky County, Ohio and last: Figurines (album) -[2018-02-13T08:23:07.758] [INFO] cheese - batch complete in: 3.103 secs -[2018-02-13T08:23:07.793] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:23:07.858] [INFO] cheese - inserting 1000 documents. first: Music Choice/Dance Channel and last: Wikipedia:Articles for deletion/Stephanie Snodgrass -[2018-02-13T08:23:07.939] [INFO] cheese - inserting 1000 documents. first: Template:Languages of Ukraine and last: 2015–16 Middle Tennessee Blue Raiders men's basketball team -[2018-02-13T08:23:07.959] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:23:07.990] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:23:08.008] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sister Cities of Quincy, Illinois and last: Stefan Heidemann -[2018-02-13T08:23:08.026] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Saskatchewan and last: Leeds college of art and design -[2018-02-13T08:23:08.096] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:23:08.110] [INFO] cheese - inserting 1000 documents. first: Route Verte and last: Myvideo -[2018-02-13T08:23:08.150] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:23:08.178] [INFO] cheese - inserting 1000 documents. first: Category:Hotels in Pyongyang and last: Hoseynabad-e Do, Rayen -[2018-02-13T08:23:08.183] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:23:08.257] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:23:08.351] [INFO] cheese - inserting 1000 documents. first: Category:Saudi Arabian bloggers and last: Personalised television -[2018-02-13T08:23:08.362] [INFO] cheese - inserting 1000 documents. first: Benito Juárez Municipality, Zacatecas and last: Harrower, Elizabeth -[2018-02-13T08:23:08.403] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T08:23:08.492] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:23:08.748] [INFO] cheese - inserting 1000 documents. first: Guerrero Negro Jr and last: Bazhanova coal mine -[2018-02-13T08:23:08.781] [INFO] cheese - inserting 1000 documents. first: Cello tape and last: 2003 term United States Supreme Court opinions of Anthony Kennedy -[2018-02-13T08:23:08.807] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Trains/ICC valuations/Burlington, Muscatine and Northwestern Railway and last: Tico Zamora -[2018-02-13T08:23:08.807] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:23:08.834] [INFO] cheese - inserting 1000 documents. first: Myvideo.de and last: Wikipedia:Featured article candidates/Ross Sea party -[2018-02-13T08:23:08.844] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:23:08.900] [INFO] cheese - inserting 1000 documents. first: Lumix TZ3 and last: Evergreen huckleberry -[2018-02-13T08:23:08.909] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:23:08.929] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:23:08.940] [INFO] cheese - inserting 1000 documents. first: Frank C. McCord and last: Hambleton (disambiguation) -[2018-02-13T08:23:09.003] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:23:09.108] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:23:09.116] [INFO] cheese - inserting 1000 documents. first: Category:Railway locomotives introduced in 1865 and last: Template:Hugo Award for Best Dramatic Presentation, Long Form -[2018-02-13T08:23:09.196] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:23:09.304] [INFO] cheese - inserting 1000 documents. first: Michael Williamson (swimmer) and last: File:Katy Garbi - Apo Kardias 2013 (Commercial Release).jpg -[2018-02-13T08:23:09.378] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:23:09.414] [INFO] cheese - inserting 1000 documents. first: Matthew Paige "Matt" Damon and last: Template:PDB Gallery/6347 -[2018-02-13T08:23:09.444] [INFO] cheese - inserting 1000 documents. first: Rairakhol State and last: Affairs Today -[2018-02-13T08:23:09.446] [INFO] cheese - inserting 1000 documents. first: News4Kids and last: Highest Waterfall -[2018-02-13T08:23:09.455] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:23:09.545] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:23:09.556] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:23:09.611] [INFO] cheese - inserting 1000 documents. first: Hamzat Gelayev and last: R31 -[2018-02-13T08:23:09.679] [INFO] cheese - inserting 1000 documents. first: Michigan City, Indiana and last: Fine Gael Party -[2018-02-13T08:23:09.731] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:23:09.803] [INFO] cheese - inserting 1000 documents. first: Adams & Prentice and last: Blackbar blenny -[2018-02-13T08:23:09.869] [INFO] cheese - inserting 1000 documents. first: Category:James Pond and last: Aceh Rat -[2018-02-13T08:23:09.985] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:23:09.990] [INFO] cheese - batch complete in: 2.232 secs -[2018-02-13T08:23:10.001] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:23:10.087] [INFO] cheese - inserting 1000 documents. first: Eduard Friedrich Eversmann and last: Live 8 concert, Cornwall -[2018-02-13T08:23:10.138] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:23:10.175] [INFO] cheese - inserting 1000 documents. first: Davis–Kahan theorem and last: Wikipedia:GIJOE -[2018-02-13T08:23:10.235] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:23:10.333] [INFO] cheese - inserting 1000 documents. first: Template:R from E2 symmetry/doc and last: Azoyú Municipality -[2018-02-13T08:23:10.373] [INFO] cheese - inserting 1000 documents. first: File:Twotracking.jpg and last: Mario Cotelo -[2018-02-13T08:23:10.379] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:10.402] [INFO] cheese - inserting 1000 documents. first: Helle, Sogn og Fjordane and last: Jason Sebastian Russo -[2018-02-13T08:23:10.448] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:23:10.474] [INFO] cheese - inserting 1000 documents. first: Blackbar Blenny and last: Bulgaria – Denmark relations -[2018-02-13T08:23:10.500] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Idaho/tasks/Under review/FAC and last: Dave's Picks Volume 6 -[2018-02-13T08:23:10.521] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:23:10.627] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:23:10.629] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:23:10.771] [INFO] cheese - inserting 1000 documents. first: The Californian (1880s magazine) and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/1569 -[2018-02-13T08:23:10.824] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sebastian Noack and last: Maraş lion -[2018-02-13T08:23:10.888] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:10.941] [INFO] cheese - inserting 1000 documents. first: Czech Republic France relations and last: Category:LGBT culture in Riga -[2018-02-13T08:23:10.971] [INFO] cheese - batch complete in: 0.342 secs -[2018-02-13T08:23:10.993] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:11.080] [INFO] cheese - inserting 1000 documents. first: Political parties in Western Sahara and last: Jackson 5 Christmas Album -[2018-02-13T08:23:11.123] [INFO] cheese - inserting 1000 documents. first: Mike Potekhen and last: Learndirect -[2018-02-13T08:23:11.141] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:23:11.180] [INFO] cheese - inserting 1000 documents. first: Chris Terry and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Rational Skepticism -[2018-02-13T08:23:11.202] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:23:11.235] [INFO] cheese - inserting 1000 documents. first: Denmark – Romania relations and last: Wikipedia:Articles for deletion/Dj Ashley Power -[2018-02-13T08:23:11.253] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:23:11.303] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:11.395] [INFO] cheese - inserting 1000 documents. first: Category:Papua (province) geography stubs and last: Wikipedia:Articles for deletion/ME-Mydoc -[2018-02-13T08:23:11.411] [INFO] cheese - inserting 1000 documents. first: Number One (DVD) and last: Crayons to classrooms -[2018-02-13T08:23:11.443] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:23:11.488] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:23:11.607] [INFO] cheese - inserting 1000 documents. first: List of ethnobotanists and last: Cheshmeh-ye Gazuiyeh -[2018-02-13T08:23:11.685] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:23:11.700] [INFO] cheese - inserting 1000 documents. first: Dury, Somme and last: Delmar, Vina -[2018-02-13T08:23:11.764] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:23:11.849] [INFO] cheese - inserting 1000 documents. first: Tecophilaea and last: Wikipedia:Articles for deletion/Kimber West -[2018-02-13T08:23:11.855] [INFO] cheese - inserting 1000 documents. first: ACWW and last: Card Mondor -[2018-02-13T08:23:11.953] [INFO] cheese - inserting 1000 documents. first: Hesarooie Motor-e Nazar Narooyi Ahmad and last: Stephen Keech -[2018-02-13T08:23:11.956] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:23:11.957] [INFO] cheese - inserting 1000 documents. first: The War in the Air and last: Chatrapati -[2018-02-13T08:23:11.957] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:23:11.980] [INFO] cheese - inserting 1000 documents. first: Geothermal power in Iceland and last: Winona, Kansas -[2018-02-13T08:23:12.025] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:23:12.068] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Gazu'iyeh and last: File:Pattern sheet, MS 32a 17A for Essex class.jpg -[2018-02-13T08:23:12.113] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:23:12.191] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Trains/ICC valuations/Central Railway of Arkansas and last: J.A. Douglas McCurdy -[2018-02-13T08:23:12.235] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:23:12.244] [INFO] cheese - batch complete in: 2.254 secs -[2018-02-13T08:23:12.337] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:23:12.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/maxxx.ucoz.ru and last: Template:User Standard Grade student -[2018-02-13T08:23:12.521] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:23:12.702] [INFO] cheese - inserting 1000 documents. first: P marker and last: File:Boise State San Diego State 2014.png -[2018-02-13T08:23:12.718] [INFO] cheese - inserting 1000 documents. first: File:ShootMeDown.jpg and last: State Road 30 (Florida) -[2018-02-13T08:23:12.763] [INFO] cheese - inserting 1000 documents. first: Template:2011 WFA Northwest Division standings and last: League of Communists of Vojvodina -[2018-02-13T08:23:12.784] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:23:12.809] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:23:12.834] [INFO] cheese - inserting 1000 documents. first: Pesticide use in the United States and last: Template:PDB Gallery/22992 -[2018-02-13T08:23:12.858] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:23:12.875] [INFO] cheese - inserting 1000 documents. first: Lucien Adam and last: Karl Riedl -[2018-02-13T08:23:12.921] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:23:12.987] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:12.990] [INFO] cheese - inserting 1000 documents. first: Danny Baldwin and last: The Radiators from Space -[2018-02-13T08:23:13.034] [INFO] cheese - inserting 1000 documents. first: Joe mondragon and last: Mastoid fontanelle -[2018-02-13T08:23:13.093] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:23:13.145] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:23:13.303] [INFO] cheese - inserting 1000 documents. first: BVC Amsterdam and last: Chusan City -[2018-02-13T08:23:13.319] [INFO] cheese - inserting 1000 documents. first: Beecher Bay Indian Ban and last: Chess/FamousPlayers -[2018-02-13T08:23:13.350] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:23:13.372] [INFO] cheese - inserting 1000 documents. first: MNC-Kalonji and last: Euan Dale -[2018-02-13T08:23:13.377] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:23:13.463] [INFO] cheese - inserting 1000 documents. first: Fragmentality and last: Khurcha -[2018-02-13T08:23:13.463] [INFO] cheese - inserting 1000 documents. first: Decorative Art Museum and last: File:Winter In Manhattan2.jpg -[2018-02-13T08:23:13.477] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:23:13.535] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:23:13.536] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:23:13.685] [INFO] cheese - inserting 1000 documents. first: Sphenoidal fontanelle and last: Haryana Board of School Education -[2018-02-13T08:23:13.752] [INFO] cheese - inserting 1000 documents. first: File:Alberto Lysy.jpg and last: Bryan Stanley -[2018-02-13T08:23:13.755] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:23:13.838] [INFO] cheese - inserting 1000 documents. first: Category:1805 establishments in Sweden and last: Walter Vaz -[2018-02-13T08:23:13.840] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:23:13.932] [INFO] cheese - inserting 1000 documents. first: PZL.23 Karas and last: Joe Banister -[2018-02-13T08:23:13.934] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:23:14.005] [INFO] cheese - inserting 1000 documents. first: Bert Longstaff and last: Hans-Joachim Recknitz -[2018-02-13T08:23:14.005] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:23:14.050] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:23:14.106] [INFO] cheese - inserting 1000 documents. first: US 401 (NC) and last: Single slit diffraction -[2018-02-13T08:23:14.113] [INFO] cheese - inserting 1000 documents. first: Cavalhada and last: Jericho (J-Twizzle) -[2018-02-13T08:23:14.150] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/5831 and last: William Greig -[2018-02-13T08:23:14.210] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:14.224] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T08:23:14.228] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:23:14.382] [INFO] cheese - inserting 1000 documents. first: High Density Lipoprotein and last: Chiliss -[2018-02-13T08:23:14.403] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2013 April 26 and last: Safety-valve organization -[2018-02-13T08:23:14.418] [INFO] cheese - inserting 1000 documents. first: William M. Blackburn and last: A.J. Brooks -[2018-02-13T08:23:14.440] [INFO] cheese - inserting 1000 documents. first: Admire, Kansas and last: Rayville, Louisiana -[2018-02-13T08:23:14.425] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:23:14.487] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:23:14.509] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:23:14.618] [INFO] cheese - batch complete in: 2.373 secs -[2018-02-13T08:23:14.677] [INFO] cheese - inserting 1000 documents. first: Template:PDB Gallery/7090 and last: List of villages in Agra district -[2018-02-13T08:23:14.716] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:23:14.789] [INFO] cheese - inserting 1000 documents. first: Prove your love and last: 1889 English cricket season -[2018-02-13T08:23:14.884] [INFO] cheese - inserting 1000 documents. first: Diaspora terrorism and last: Treasury Wine Estates -[2018-02-13T08:23:14.888] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:23:14.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gifford Observatory and last: Bellevue High School, Bellevue, Washington -[2018-02-13T08:23:15.029] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:23:15.058] [INFO] cheese - inserting 1000 documents. first: Safety-valve organisation and last: Category:Presidents of the Cook County Board of Commissioners -[2018-02-13T08:23:15.072] [INFO] cheese - inserting 1000 documents. first: .CZ and last: Martin Township, Allegan County, Michigan -[2018-02-13T08:23:15.077] [INFO] cheese - inserting 1000 documents. first: Live in London (Helen Reddy album) and last: Category:1601 in the Spanish East Indies -[2018-02-13T08:23:15.094] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:23:15.143] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:23:15.198] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:23:15.291] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:23:15.436] [INFO] cheese - inserting 1000 documents. first: National defence policy and last: File:Plant ID 004 (Medium).jpg -[2018-02-13T08:23:15.503] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:23:15.552] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Import classic 2 and last: In-air refueling -[2018-02-13T08:23:15.562] [INFO] cheese - inserting 1000 documents. first: Category:1603 in the Spanish East Indies and last: Sin Escape Con Correas -[2018-02-13T08:23:15.600] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:23:15.618] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:23:15.713] [INFO] cheese - inserting 1000 documents. first: File:BedlamXForce.jpg and last: Sofia Winters -[2018-02-13T08:23:15.737] [INFO] cheese - inserting 1000 documents. first: Mossoul and last: Lower Yangtze Mandarin Chinese -[2018-02-13T08:23:15.787] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:23:15.803] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:23:15.824] [INFO] cheese - inserting 1000 documents. first: Keke Mortson and last: Category:Sportspeople of Indian descent -[2018-02-13T08:23:15.905] [INFO] cheese - inserting 1000 documents. first: Olli Wisdom and last: Irish Party -[2018-02-13T08:23:15.921] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:23:16.041] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:23:16.122] [INFO] cheese - inserting 1000 documents. first: Category:Bostrichidae and last: Brooks-Simms -[2018-02-13T08:23:16.142] [INFO] cheese - inserting 1000 documents. first: Overcharge and last: The Pursuit of Garlic -[2018-02-13T08:23:16.173] [INFO] cheese - inserting 1000 documents. first: Wila Kunka (Cusco) and last: Robert E. Campbell -[2018-02-13T08:23:16.206] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:23:16.224] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:23:16.280] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:23:16.385] [INFO] cheese - inserting 1000 documents. first: MPW Boulton and last: Category:Songs written by Géraldine Delacoux -[2018-02-13T08:23:16.388] [INFO] cheese - inserting 1000 documents. first: Poirieria hemmenorum and last: Chris Culliver -[2018-02-13T08:23:16.456] [INFO] cheese - inserting 1000 documents. first: 1994 Swiss Indoors and last: Category:Media in Northumberland -[2018-02-13T08:23:16.484] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:23:16.640] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:23:16.652] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:23:16.899] [INFO] cheese - inserting 1000 documents. first: Three Bridges depot and last: Musi Rawas -[2018-02-13T08:23:16.907] [INFO] cheese - inserting 1000 documents. first: Hettinger Municipal Airport and last: FCK Handball -[2018-02-13T08:23:16.924] [INFO] cheese - inserting 1000 documents. first: Converse, Louisiana and last: Smith Mills, Massachusetts -[2018-02-13T08:23:16.955] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:17.016] [INFO] cheese - inserting 1000 documents. first: Cross-presentation and last: Datu Saudi-Ampatuan, Maguindanao -[2018-02-13T08:23:17.019] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:23:17.080] [INFO] cheese - inserting 1000 documents. first: State Road 363 (Florida) and last: Category:Israeli classical violinists -[2018-02-13T08:23:17.136] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:23:17.189] [INFO] cheese - inserting 1000 documents. first: File:What Technology Wants, Book Cover Art.jpg and last: Morris Murdock Travel, LLC -[2018-02-13T08:23:17.193] [INFO] cheese - batch complete in: 2.575 secs -[2018-02-13T08:23:17.149] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:23:17.284] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:23:17.335] [INFO] cheese - inserting 1000 documents. first: File:Caughtupinyou.jpg and last: Julián Sotelo Madrazo -[2018-02-13T08:23:17.336] [INFO] cheese - inserting 1000 documents. first: IL18R1 and last: Igor Stojaković -[2018-02-13T08:23:17.421] [INFO] cheese - inserting 1000 documents. first: FujiFilm FinePix M603 and last: Calothamnus phellosus -[2018-02-13T08:23:17.404] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:17.450] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:23:17.528] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:23:17.538] [INFO] cheese - inserting 1000 documents. first: Category:Australian horse racing lists and last: Sydney F. Foster -[2018-02-13T08:23:17.588] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:23:17.740] [INFO] cheese - inserting 1000 documents. first: Latitude Learning LLC and last: Raplun -[2018-02-13T08:23:17.793] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:23:17.806] [INFO] cheese - inserting 1000 documents. first: The Secret Snake Club vs. P.E. / King Tooten Pooten and last: Hannah Greenwood -[2018-02-13T08:23:17.901] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:23:17.941] [INFO] cheese - inserting 1000 documents. first: Lactucopsis and last: Pugh Ford Bridge -[2018-02-13T08:23:17.974] [INFO] cheese - inserting 1000 documents. first: KWQ and last: File:Room to Live.jpg -[2018-02-13T08:23:17.983] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:23:18.015] [INFO] cheese - inserting 1000 documents. first: Walnut Township, Brown County, Kansas and last: Marchais-Beton -[2018-02-13T08:23:18.062] [INFO] cheese - inserting 1000 documents. first: Template:Ibdb title and last: Āsavas -[2018-02-13T08:23:18.086] [INFO] cheese - inserting 1000 documents. first: Love & Rage and last: Farm Town, Leicestershire -[2018-02-13T08:23:18.089] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:23:18.106] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:23:18.163] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:23:18.225] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:23:18.240] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Leonard Marbury and last: Walk and Talk short film -[2018-02-13T08:23:18.329] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:23:18.405] [INFO] cheese - inserting 1000 documents. first: List of niger-related topics and last: Aspidosperma olivaceum -[2018-02-13T08:23:18.407] [INFO] cheese - inserting 1000 documents. first: Lullaby and... THE CEASLESS ROAR and last: Notre Dame Academy, Park Hills, Kentucky -[2018-02-13T08:23:18.464] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T08:23:18.532] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:23:18.679] [INFO] cheese - inserting 1000 documents. first: Coed Confidential and last: Ding Xian -[2018-02-13T08:23:18.704] [INFO] cheese - inserting 1000 documents. first: Stanley primary school and last: Mozambique – Canada relations -[2018-02-13T08:23:18.734] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:23:18.790] [INFO] cheese - inserting 1000 documents. first: Shining Darkness (novel) and last: William Jordan Graves -[2018-02-13T08:23:18.868] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:23:18.958] [INFO] cheese - inserting 1000 documents. first: Category:Northern Mariana Islands football (soccer) clubs and last: Category:Shudra castes -[2018-02-13T08:23:18.966] [INFO] cheese - inserting 1000 documents. first: Wolf Frankenstein and last: Wikipedia:Articles for deletion/Thebrokenoperation -[2018-02-13T08:23:18.997] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:23:19.069] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:23:19.120] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:23:19.175] [INFO] cheese - inserting 1000 documents. first: Category:People from Pochayiv and last: Dave Ewing (footballer, born 1881) -[2018-02-13T08:23:19.288] [INFO] cheese - inserting 1000 documents. first: Erich von Hornbostel and last: Coe Township, Michigan -[2018-02-13T08:23:19.286] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:23:19.371] [INFO] cheese - inserting 1000 documents. first: Category:Companies established in 1842 and last: Eustace II Grenier -[2018-02-13T08:23:19.405] [INFO] cheese - batch complete in: 2.209 secs -[2018-02-13T08:23:19.475] [INFO] cheese - inserting 1000 documents. first: Mozambique Canada relations and last: Category:1880s in Montana -[2018-02-13T08:23:19.517] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:23:19.526] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:23:19.541] [INFO] cheese - inserting 1000 documents. first: List of number-one country albums of 1996 (Canada) and last: Wikipedia:Version 1.0 Editorial Team/Motorcycling articles by quality/4 -[2018-02-13T08:23:19.657] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:23:19.757] [INFO] cheese - inserting 1000 documents. first: Ed Morgan (baseball) and last: Cham Wings Airlines -[2018-02-13T08:23:19.799] [INFO] cheese - inserting 1000 documents. first: Steritruncated 5-cube and last: Template:Canadian federal election, 2011/ab-e -[2018-02-13T08:23:19.833] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:23:19.866] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:23:19.981] [INFO] cheese - inserting 1000 documents. first: Autofinger and last: Al Ewing -[2018-02-13T08:23:20.007] [INFO] cheese - inserting 1000 documents. first: File:Picture of Gravestone Marker.jpg and last: Atassi mosque -[2018-02-13T08:23:20.008] [INFO] cheese - inserting 1000 documents. first: Ernst Mahler (painter) and last: Balochistan University of Engineering and Technology Khuzdar -[2018-02-13T08:23:20.072] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:23:20.079] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:23:20.124] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:23:20.235] [INFO] cheese - inserting 1000 documents. first: Category:Rebel Highway series and last: Ury House -[2018-02-13T08:23:20.256] [INFO] cheese - inserting 1000 documents. first: Richard Matheson's Hell House and last: Category:People from Taliaferro County, Georgia -[2018-02-13T08:23:20.291] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:23:20.338] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:23:20.490] [INFO] cheese - inserting 1000 documents. first: A360 Lena Highway and last: Windham and Brooklyn Turnpike -[2018-02-13T08:23:20.539] [INFO] cheese - inserting 1000 documents. first: Bernard (Bishop of Gaeta) and last: Ponor cave -[2018-02-13T08:23:20.566] [INFO] cheese - inserting 1000 documents. first: File:Mullah Omar reveals the Prophet's cloak.jpg and last: Courthouse Historic District (Logansport, Indiana) -[2018-02-13T08:23:20.569] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:23:20.604] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:23:20.646] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:23:20.715] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Bermuda and last: Category:Protected areas of Vanderburgh County, Indiana -[2018-02-13T08:23:20.813] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:23:20.881] [INFO] cheese - inserting 1000 documents. first: Bulgaria at the 1924 Summer Olympics and last: File:Naeim Giladi.jpg -[2018-02-13T08:23:20.907] [INFO] cheese - inserting 1000 documents. first: Luca Delia Robbia and last: Adrian Ward (American football) -[2018-02-13T08:23:20.982] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:23:21.002] [INFO] cheese - inserting 1000 documents. first: Template:MecklenburgischeSeenplatte-geo-stub and last: Wikipedia:Templates for deletion/Log/2009 August 1 -[2018-02-13T08:23:21.092] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:23:21.129] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:23:21.274] [INFO] cheese - inserting 1000 documents. first: Coldwater Township, Isabella County, Michigan and last: Interior Township, Michigan -[2018-02-13T08:23:21.292] [INFO] cheese - inserting 1000 documents. first: Preeti Malhotra and last: Gymnoscelis tibialis -[2018-02-13T08:23:21.315] [INFO] cheese - inserting 1000 documents. first: River Leven (Dunbartonshire) and last: Trichymenia wrightii -[2018-02-13T08:23:21.377] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:23:21.403] [INFO] cheese - batch complete in: 1.997 secs -[2018-02-13T08:23:21.459] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:23:21.506] [INFO] cheese - inserting 1000 documents. first: Adrian Sager and last: Le Villey -[2018-02-13T08:23:21.643] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:23:21.684] [INFO] cheese - inserting 1000 documents. first: TeenNick "The 90's Are All That!" and last: Camayura -[2018-02-13T08:23:21.793] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:23:21.803] [INFO] cheese - inserting 1000 documents. first: SITD and last: Daniel Gélin -[2018-02-13T08:23:21.879] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:23:21.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2009 August 1 and last: Cavallone Cave -[2018-02-13T08:23:22.024] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:23:22.040] [INFO] cheese - inserting 1000 documents. first: VF-92 (1952–75) and last: Category:Aradan County geography stubs -[2018-02-13T08:23:22.104] [INFO] cheese - inserting 1000 documents. first: Category:Novels about art and creativity and last: Eklöf -[2018-02-13T08:23:22.104] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:23:22.151] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:23:22.287] [INFO] cheese - inserting 1000 documents. first: Bay State Raceway and last: Bufallo Bills -[2018-02-13T08:23:22.309] [INFO] cheese - inserting 1000 documents. first: West Australian Newspapers Holdings Limited and last: Bella Woolf Southorn -[2018-02-13T08:23:22.342] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:23:22.346] [INFO] cheese - inserting 1000 documents. first: Canticle for Leibowitz and last: Missouri Route 175 -[2018-02-13T08:23:22.377] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:23:22.387] [INFO] cheese - inserting 1000 documents. first: Shin'ichirō Nakamura and last: Alejandro Melchor -[2018-02-13T08:23:22.437] [INFO] cheese - inserting 1000 documents. first: Ulysses (movie) and last: Camp Douglas (disambiguation) -[2018-02-13T08:23:22.478] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:23:22.513] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:23:22.530] [INFO] cheese - batch complete in: 1.438 secs -[2018-02-13T08:23:22.626] [INFO] cheese - inserting 1000 documents. first: Template:Columbus Crew squad and last: Terengganu State Football Association -[2018-02-13T08:23:22.627] [INFO] cheese - inserting 1000 documents. first: Category:Aradan County and last: Template:Location map United Kingdom Gibraltar -[2018-02-13T08:23:22.667] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:23:22.683] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:23:22.863] [INFO] cheese - inserting 1000 documents. first: HK Vitebsk and last: Borza -[2018-02-13T08:23:22.884] [INFO] cheese - inserting 1000 documents. first: Longeville-lès-Saint-Avold and last: Wikipedia:MESO/CITEA -[2018-02-13T08:23:22.905] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:23:22.906] [INFO] cheese - inserting 1000 documents. first: Matchwood Township, Michigan and last: Jenkins Township, Crow Wing County, Minnesota -[2018-02-13T08:23:22.954] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:23:22.974] [INFO] cheese - inserting 1000 documents. first: Portal:Government of India/Selected anniversaries/November 7 and last: Ion Sancho -[2018-02-13T08:23:22.996] [INFO] cheese - inserting 1000 documents. first: File:Rev cover.jpg and last: 1999 World Championships in Athletics - Women's 4 x 100 metres relay -[2018-02-13T08:23:23.033] [INFO] cheese - batch complete in: 1.63 secs -[2018-02-13T08:23:23.073] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:23:23.115] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:23:23.119] [INFO] cheese - inserting 1000 documents. first: Botswana-Bangladesh relations and last: Category:Andorran expatriates in Spain -[2018-02-13T08:23:23.128] [INFO] cheese - inserting 1000 documents. first: Category:Caribbean people of Indian descent and last: Radischevskiy Raion -[2018-02-13T08:23:23.206] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:23:23.215] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:23:23.219] [INFO] cheese - inserting 1000 documents. first: Secondary boycotts and last: Kanarese language -[2018-02-13T08:23:23.326] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:23:23.397] [INFO] cheese - inserting 1000 documents. first: Fodorkút and last: Category:Listed buildings in Merthyr Tydfil County Borough -[2018-02-13T08:23:23.465] [INFO] cheese - inserting 1000 documents. first: Monica Sandve and last: Opoutere, New Zealand -[2018-02-13T08:23:23.494] [INFO] cheese - inserting 1000 documents. first: Bombardier Wells and last: Intertoto Cup 1962–63 -[2018-02-13T08:23:23.523] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:23:23.575] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:23:23.578] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:23:23.637] [INFO] cheese - inserting 1000 documents. first: Portal:Snakes/Selected picture and last: G.B Soria -[2018-02-13T08:23:23.673] [INFO] cheese - inserting 1000 documents. first: Radischevski Raion and last: Macroplanar -[2018-02-13T08:23:23.685] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:23:23.729] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:23:23.854] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Uruguay/Article Classification and last: Domaša -[2018-02-13T08:23:23.909] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:23:24.064] [INFO] cheese - inserting 1000 documents. first: Games People Play! (The Raccoons) and last: SS Supporting Members' Organisation -[2018-02-13T08:23:24.072] [INFO] cheese - inserting 1000 documents. first: Intertoto Cup 1963–64 and last: Days between stations (novel) -[2018-02-13T08:23:24.088] [INFO] cheese - inserting 1000 documents. first: File:SomethingRightCD1.jpg and last: La Guéroulde -[2018-02-13T08:23:24.127] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:23:24.145] [INFO] cheese - inserting 1000 documents. first: Category:2022 in Asian football and last: European field-pansy -[2018-02-13T08:23:24.161] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:23:24.163] [INFO] cheese - inserting 1000 documents. first: Zeiss Macroplanar and last: Category:1894 establishments in Portugal -[2018-02-13T08:23:24.191] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:23:24.224] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:23:24.250] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:23:24.304] [INFO] cheese - inserting 1000 documents. first: Disposable Teens and last: Bennedetto Croce -[2018-02-13T08:23:24.329] [INFO] cheese - inserting 1000 documents. first: Lake Edward Township, Crow Wing County, Minnesota and last: Randall, Minnesota -[2018-02-13T08:23:24.411] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:23:24.443] [INFO] cheese - batch complete in: 1.41 secs -[2018-02-13T08:23:24.523] [INFO] cheese - inserting 1000 documents. first: The Whartons and last: Bourgoin -[2018-02-13T08:23:24.659] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:24.700] [INFO] cheese - inserting 1000 documents. first: Category:Nuclear Assault video albums and last: Versus (manga) -[2018-02-13T08:23:24.764] [INFO] cheese - inserting 1000 documents. first: Sungnye and last: Bloomington Symphony Orchestra -[2018-02-13T08:23:24.784] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:23:24.820] [INFO] cheese - inserting 1000 documents. first: SS Supporting Members' Organization and last: Jesse Schell -[2018-02-13T08:23:24.864] [INFO] cheese - inserting 1000 documents. first: Template:Mansas of Mali Empire and last: Template:Taxonomy/Prionomyrmecini -[2018-02-13T08:23:24.883] [INFO] cheese - inserting 1000 documents. first: Category:1894 in Portuguese Timor and last: Jorge Salgado-Reyes -[2018-02-13T08:23:24.886] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:24.973] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:23:24.991] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:23:25.029] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:23:25.284] [INFO] cheese - inserting 1000 documents. first: 1997 South East Asia haze and last: Zhukovski -[2018-02-13T08:23:25.309] [INFO] cheese - inserting 1000 documents. first: Alfred Sarant and last: Elphinstone College -[2018-02-13T08:23:25.311] [INFO] cheese - inserting 1000 documents. first: Vs. (manga) and last: Wikipedia:Articles for deletion/Eva Fontaine -[2018-02-13T08:23:25.334] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:23:25.383] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:23:25.424] [INFO] cheese - inserting 1000 documents. first: 1997 Coppa Italia Final and last: Category:South Africa FIFA World Cup squad navigational boxes -[2018-02-13T08:23:25.430] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Tarachodes maurus and last: Category:Filipino contemporary artists -[2018-02-13T08:23:25.439] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:23:25.506] [INFO] cheese - inserting 1000 documents. first: Pairc Chronain and last: Emil Bührle -[2018-02-13T08:23:25.610] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:23:25.656] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:23:25.726] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:23:25.874] [INFO] cheese - inserting 1000 documents. first: High Sheriff of Wexford and last: Template:Taxonomy/Pimoidae -[2018-02-13T08:23:25.992] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:23:26.074] [INFO] cheese - inserting 1000 documents. first: Richardson Township, Morrison County, Minnesota and last: Donnelly, Minnesota -[2018-02-13T08:23:26.087] [INFO] cheese - inserting 1000 documents. first: Red (Character) and last: BCCI Corporate Trophy -[2018-02-13T08:23:26.090] [INFO] cheese - inserting 1000 documents. first: R69S and last: 2007 World Series of Poker -[2018-02-13T08:23:26.157] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:23:26.161] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:23:26.214] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for upload/August 2015 and last: Barong Landung -[2018-02-13T08:23:26.214] [INFO] cheese - batch complete in: 1.77 secs -[2018-02-13T08:23:26.256] [INFO] cheese - inserting 1000 documents. first: Huruiyeh and last: Escherichia coli proteinase La -[2018-02-13T08:23:26.340] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:23:26.353] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:23:26.441] [INFO] cheese - inserting 1000 documents. first: Frontline (AUS) and last: George Adams (football player) -[2018-02-13T08:23:26.531] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Avoiding POV funnels and last: Live writer -[2018-02-13T08:23:26.548] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:23:26.590] [INFO] cheese - inserting 1000 documents. first: Trichinella and last: Lichwort -[2018-02-13T08:23:26.607] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:26.642] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jake Sully (Avatar) and last: Betel-Nut -[2018-02-13T08:23:26.689] [INFO] cheese - batch complete in: 1.25 secs -[2018-02-13T08:23:26.815] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:26.893] [INFO] cheese - inserting 1000 documents. first: Cheonji and last: Lion of fallujah -[2018-02-13T08:23:26.922] [INFO] cheese - inserting 1000 documents. first: Bop Redux and last: Derna Campaign (2014–15) -[2018-02-13T08:23:27.000] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:23:27.035] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:27.045] [INFO] cheese - inserting 1000 documents. first: Kitamaat 2, British Columbia and last: Wikipedia:WikiProject Christianity/Outreach/August 2014 -[2018-02-13T08:23:27.134] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:23:27.191] [INFO] cheese - inserting 1000 documents. first: Bálványosváralja and last: Thangal Kunju Musaliar Institute of Technology -[2018-02-13T08:23:27.238] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:23:27.260] [INFO] cheese - inserting 1000 documents. first: Zhutian and last: Template:Aesop Rock -[2018-02-13T08:23:27.271] [INFO] cheese - inserting 1000 documents. first: Hot needle perforation and last: Wikipedia:Reference desk/Archives/Humanities/2008 February 8 -[2018-02-13T08:23:27.319] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:23:27.350] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:23:27.409] [INFO] cheese - inserting 1000 documents. first: Fermat’s principle and last: Pavlos Kountouriotis -[2018-02-13T08:23:27.410] [INFO] cheese - inserting 1000 documents. first: Exoteleia succinctella and last: Wikipedia:Sockpuppet investigations/Damionscott/Archive -[2018-02-13T08:23:27.452] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:23:27.485] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:23:27.497] [INFO] cheese - inserting 1000 documents. first: Tom Brady (film director) and last: Australian English sexual, body-part and toilet slang -[2018-02-13T08:23:27.556] [INFO] cheese - inserting 1000 documents. first: John Leasure and last: How Many More Years? -[2018-02-13T08:23:27.603] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:23:27.697] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:23:27.766] [INFO] cheese - inserting 1000 documents. first: Category:String orchestra pieces and last: H K -[2018-02-13T08:23:27.834] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:23:27.846] [INFO] cheese - inserting 1000 documents. first: Donnelly Township, Stevens County, Minnesota and last: Ethel, Missouri -[2018-02-13T08:23:27.977] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2008 February 8 and last: Category:Non-free Canadian stamp images -[2018-02-13T08:23:28.074] [INFO] cheese - inserting 1000 documents. first: Arichanna melanaria and last: Template:F1 driver results legend -[2018-02-13T08:23:28.132] [INFO] cheese - batch complete in: 1.917 secs -[2018-02-13T08:23:28.150] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:23:28.155] [INFO] cheese - inserting 1000 documents. first: Mohammed Al Habtoor and last: Victor H. Perrin -[2018-02-13T08:23:28.254] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:23:28.307] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:23:28.405] [INFO] cheese - inserting 1000 documents. first: Fizz Factor and last: File:Thjalfi and Hrungnir.png -[2018-02-13T08:23:28.458] [INFO] cheese - inserting 1000 documents. first: Route 190 and last: Val Ramos, international Flamenco guitarist -[2018-02-13T08:23:28.541] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:23:28.560] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:23:28.571] [INFO] cheese - inserting 1000 documents. first: H L and last: Myctophum asperum -[2018-02-13T08:23:28.588] [INFO] cheese - inserting 1000 documents. first: Fall of Edessa and last: File:Deutschland sucht den Superstar 2013 logo.png -[2018-02-13T08:23:28.639] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:23:28.666] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:23:28.728] [INFO] cheese - inserting 1000 documents. first: Di Pietro motor and last: Wikipedia:Featured article review/Golden plates/archive1 -[2018-02-13T08:23:28.745] [INFO] cheese - inserting 1000 documents. first: Virgil C. Smith and last: Category:Academics from Northern Ireland -[2018-02-13T08:23:28.804] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:23:28.820] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:23:28.914] [INFO] cheese - inserting 1000 documents. first: Olfa Youssef and last: Wikipedia:Don't feed the divas -[2018-02-13T08:23:29.037] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:23:29.148] [INFO] cheese - inserting 1000 documents. first: Category:2001 ITF Women's Circuit and last: Category:2013 Metro Atlantic Athletic Conference baseball season -[2018-02-13T08:23:29.232] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:23:29.277] [INFO] cheese - inserting 1000 documents. first: Deutsche Tanz-und-Unterhaltungsorchester and last: Jacareí Atlético Clube -[2018-02-13T08:23:29.291] [INFO] cheese - inserting 1000 documents. first: Category:CD Leganés players and last: Ecuador at the 1968 Summer Olympics -[2018-02-13T08:23:29.330] [INFO] cheese - inserting 1000 documents. first: Internet chess server and last: Wikipedia:Articles for deletion/Dave Parsons -[2018-02-13T08:23:29.435] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:23:29.439] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:23:29.471] [INFO] cheese - inserting 1000 documents. first: M/V Kalama and last: Mette Davidsen -[2018-02-13T08:23:29.495] [INFO] cheese - inserting 1000 documents. first: Columbia River and Oregon Central Railroad and last: IEEE 200-1975 -[2018-02-13T08:23:29.508] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:23:29.617] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:23:29.634] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:23:29.790] [INFO] cheese - inserting 1000 documents. first: Linosyris wrightii and last: Power Hawk -[2018-02-13T08:23:29.859] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:23:30.013] [INFO] cheese - inserting 1000 documents. first: Puntius anchisporus and last: European Bermudians -[2018-02-13T08:23:30.117] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:23:30.247] [INFO] cheese - inserting 1000 documents. first: Template:Stephen Woodworth and last: CIA Triad -[2018-02-13T08:23:30.282] [INFO] cheese - inserting 1000 documents. first: Nenad Veselji and last: Wikipedia:WikiProject Spam/LinkReports/malatya.us -[2018-02-13T08:23:30.323] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:23:30.340] [INFO] cheese - inserting 1000 documents. first: Category:Nature centers in New Hampshire and last: Alk phos -[2018-02-13T08:23:30.343] [INFO] cheese - inserting 1000 documents. first: Federação Tocantinense de Futebol and last: Abdominal decompression -[2018-02-13T08:23:30.358] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:23:30.512] [INFO] cheese - inserting 1000 documents. first: La Plata, Missouri and last: Hampton, Nebraska -[2018-02-13T08:23:30.519] [INFO] cheese - inserting 1000 documents. first: Coniogyra dilucescens and last: Wilson L. Flores -[2018-02-13T08:23:30.583] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:23:30.605] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:23:30.575] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:23:30.729] [INFO] cheese - inserting 1000 documents. first: Transmitter Chillerton Down and last: James Sanders (American football) -[2018-02-13T08:23:30.761] [INFO] cheese - batch complete in: 2.629 secs -[2018-02-13T08:23:30.825] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T08:23:30.915] [INFO] cheese - inserting 1000 documents. first: European Bermudian and last: 14th National Film Awards -[2018-02-13T08:23:31.096] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:23:31.154] [INFO] cheese - inserting 1000 documents. first: St Joseph's Co-Cathedral and last: PaleVioletRed -[2018-02-13T08:23:31.192] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:31.299] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/User talk:Jamietw/May 2011 and last: Cutpoint method -[2018-02-13T08:23:31.348] [INFO] cheese - inserting 1000 documents. first: Draft:Charles A. Munn and last: Category:1803 in sports by country -[2018-02-13T08:23:31.413] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:23:31.427] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:23:31.624] [INFO] cheese - inserting 1000 documents. first: Girth (album) and last: Another Weeping Woman -[2018-02-13T08:23:31.745] [INFO] cheese - inserting 1000 documents. first: Kokichi Akune and last: Igor Alexeev -[2018-02-13T08:23:31.746] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:23:31.790] [INFO] cheese - inserting 1000 documents. first: Leonard Aloysius Scott Stokes and last: Template:Country data Kingdom of Albania -[2018-02-13T08:23:31.821] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:23:31.893] [INFO] cheese - inserting 1000 documents. first: Boglestone, Port Glasgow and last: LITS -[2018-02-13T08:23:31.928] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:23:32.002] [INFO] cheese - inserting 1000 documents. first: RV Coriolis II and last: Marolles-les-Buis -[2018-02-13T08:23:32.053] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:23:32.149] [INFO] cheese - inserting 1000 documents. first: Periclimenes magnificus and last: Nikki ashton -[2018-02-13T08:23:32.150] [INFO] cheese - inserting 1000 documents. first: White fiddlewood and last: File:Stealth Inc logo.png -[2018-02-13T08:23:32.209] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:23:32.237] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:23:32.316] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T08:23:32.440] [INFO] cheese - inserting 1000 documents. first: Template:Bobby Brown and last: Peter myers (basketball) -[2018-02-13T08:23:32.628] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:23:32.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ageiola and last: Mid-Western Regional Council, New South Wales -[2018-02-13T08:23:32.812] [INFO] cheese - inserting 1000 documents. first: Kjell Landsverk and last: ⦾ -[2018-02-13T08:23:32.875] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:23:32.969] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:23:33.051] [INFO] cheese - inserting 1000 documents. first: Template:Belarus in the Eurovision Young Dancers and last: Mary M Morrissey -[2018-02-13T08:23:33.072] [INFO] cheese - inserting 1000 documents. first: Category:1920s establishments in Uruguay and last: Banglalion Wimax -[2018-02-13T08:23:33.102] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:23:33.170] [INFO] cheese - inserting 1000 documents. first: Zero page (CP/M) and last: Physical Fatness -[2018-02-13T08:23:33.211] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:23:33.331] [INFO] cheese - batch complete in: 1.278 secs -[2018-02-13T08:23:33.394] [INFO] cheese - inserting 1000 documents. first: File:CMF Logo.jpg and last: Charles Denton (television and film producer) -[2018-02-13T08:23:33.476] [INFO] cheese - inserting 1000 documents. first: Hordville, Nebraska and last: Shamong Township, New Jersey -[2018-02-13T08:23:33.482] [INFO] cheese - inserting 1000 documents. first: Fog desert and last: Postcard from Morocco -[2018-02-13T08:23:33.529] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:23:33.618] [INFO] cheese - inserting 1000 documents. first: Shen mue and last: Monte Carlo Country Club -[2018-02-13T08:23:33.616] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:23:33.679] [INFO] cheese - inserting 1000 documents. first: White Guy Talk Show and last: Template:Districts of Ulan Bator -[2018-02-13T08:23:33.744] [INFO] cheese - batch complete in: 2.982 secs -[2018-02-13T08:23:33.775] [INFO] cheese - inserting 1000 documents. first: ⦿ and last: Jelena Balsic -[2018-02-13T08:23:33.783] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:23:33.799] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:23:33.897] [INFO] cheese - inserting 1000 documents. first: George Renwick, 1st Baronet and last: Pectis linifolia -[2018-02-13T08:23:33.930] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T08:23:34.027] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:23:34.307] [INFO] cheese - inserting 1000 documents. first: Derby Castle Depôt and last: Andkhoy City, Afghanistan -[2018-02-13T08:23:34.414] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:23:34.448] [INFO] cheese - inserting 1000 documents. first: Palazzo Bernardini, Lucca and last: Myanmar women's national under-20 football team -[2018-02-13T08:23:34.485] [INFO] cheese - inserting 1000 documents. first: Davao International Airport and last: Damle -[2018-02-13T08:23:34.494] [INFO] cheese - inserting 1000 documents. first: Baigneaux, Eure-et-Loir and last: Category:1431 in Portugal -[2018-02-13T08:23:34.536] [INFO] cheese - inserting 1000 documents. first: Mirai Ball and last: Template:Bangladesh Jamaat-e-Islami/meta/color -[2018-02-13T08:23:34.539] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:23:34.546] [INFO] cheese - inserting 1000 documents. first: List of rowing blades – Club oars and last: Mary Ann Cotton -[2018-02-13T08:23:34.654] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:23:34.706] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:23:34.749] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:23:34.765] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:23:34.849] [INFO] cheese - inserting 1000 documents. first: Pectis longipes and last: Category:1922 establishments in Greece -[2018-02-13T08:23:34.890] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:23:35.026] [INFO] cheese - inserting 1000 documents. first: Biological marker and last: Wikipedia:WikiProject Intertranswiki/Lithuanian/Culture -[2018-02-13T08:23:35.170] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:23:35.255] [INFO] cheese - inserting 1000 documents. first: Pak Tho Railway Station and last: Elckerlijc (film) -[2018-02-13T08:23:35.335] [INFO] cheese - inserting 1000 documents. first: File:Super Sabado Sensacional (2012).png and last: Empress Dowager Du -[2018-02-13T08:23:35.423] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:23:35.444] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 928 and last: File:Lens2a.svg -[2018-02-13T08:23:35.460] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:23:35.506] [INFO] cheese - inserting 1000 documents. first: Invaders From Mars and last: PopCultured -[2018-02-13T08:23:35.549] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:23:35.622] [INFO] cheese - inserting 1000 documents. first: Rubber bungs and last: Porto Grande -[2018-02-13T08:23:35.659] [INFO] cheese - inserting 1000 documents. first: Moncreiffe (disambiguation) and last: Hebron Christian Academy -[2018-02-13T08:23:35.690] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:23:35.765] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:23:35.821] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:23:36.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Intertranswiki/Lithuanian/History and last: Template:1997 NCAA Men's Basketball Consensus All-Americans -[2018-02-13T08:23:36.017] [INFO] cheese - inserting 1000 documents. first: Livingston Parliament constituency and last: Portal:Traditional African religion/Selected biography/4 -[2018-02-13T08:23:36.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/On a conjecture concerning the petersen graph and last: Category:Transportation in Grant County, South Dakota -[2018-02-13T08:23:36.145] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:23:36.168] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:23:36.248] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:23:36.375] [INFO] cheese - inserting 1000 documents. first: Germanicopolis (Isauria) and last: Wikipedia:WikiProject Spam/LinkReports/sbthp.org -[2018-02-13T08:23:36.463] [INFO] cheese - inserting 1000 documents. first: Free settler and last: Drigo -[2018-02-13T08:23:36.512] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:23:36.569] [INFO] cheese - inserting 1000 documents. first: Red Service and last: Scottish pure Gaelic -[2018-02-13T08:23:36.578] [INFO] cheese - inserting 1000 documents. first: International Union of Psychological Science and last: Pugh–Schiff precession -[2018-02-13T08:23:36.638] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:23:36.687] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:23:36.739] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:23:36.955] [INFO] cheese - inserting 1000 documents. first: Category:Lists of 1969 films by country or language and last: 1961 Cameroonian Premier League -[2018-02-13T08:23:36.959] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Walworth County, South Dakota and last: Wiman Andrus -[2018-02-13T08:23:37.022] [INFO] cheese - inserting 1000 documents. first: Industrial autoclave and last: Reginald Dos Remedios -[2018-02-13T08:23:37.044] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:23:37.111] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:23:37.189] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:23:37.231] [INFO] cheese - inserting 1000 documents. first: Sitronics and last: Croy, Highland -[2018-02-13T08:23:37.233] [INFO] cheese - inserting 1000 documents. first: Southampton Township, New Jersey and last: East Otto, New York -[2018-02-13T08:23:37.311] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:23:37.422] [INFO] cheese - inserting 1000 documents. first: GB 20600-2006 and last: Barony of Närpiö -[2018-02-13T08:23:37.448] [INFO] cheese - inserting 1000 documents. first: Cers Cup and last: La Jolla Reservation -[2018-02-13T08:23:37.556] [INFO] cheese - batch complete in: 3.812 secs -[2018-02-13T08:23:37.611] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:23:37.617] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:23:37.684] [INFO] cheese - inserting 1000 documents. first: Burning of the Jew and last: Sibley's Cove, Newfoundland and Labrador -[2018-02-13T08:23:37.696] [INFO] cheese - inserting 1000 documents. first: Population and Development Review and last: Amisos Treasure -[2018-02-13T08:23:37.762] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:23:37.777] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:23:37.782] [INFO] cheese - inserting 1000 documents. first: Native Hackberry and last: Diceratucha xenopis -[2018-02-13T08:23:37.843] [INFO] cheese - inserting 1000 documents. first: Reginald dos Remedios and last: Category:Speed skating at the 2007 Asian Winter Games -[2018-02-13T08:23:37.894] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:23:37.935] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:23:38.048] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Nirvana FC and last: Conrad B. Harrison -[2018-02-13T08:23:38.181] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:23:38.283] [INFO] cheese - inserting 1000 documents. first: Barons of Närpiö and last: 1997 Survivor Series -[2018-02-13T08:23:38.283] [INFO] cheese - inserting 1000 documents. first: Portal:Women's sport/Birthdays/January 15 and last: Category:Referendums in Liechtenstein -[2018-02-13T08:23:38.421] [INFO] cheese - inserting 1000 documents. first: Summer Rain (ATB song) and last: Great Equarry of France -[2018-02-13T08:23:38.478] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:23:38.523] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:23:38.545] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:23:38.637] [INFO] cheese - inserting 1000 documents. first: Nycteropa and last: Wikipedia:WikiProject Spam/LinkReports/cwfwrestlingfed.webs.com -[2018-02-13T08:23:38.681] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:23:38.700] [INFO] cheese - inserting 1000 documents. first: Portal:Latter-day Saints/Selected Quotes/2 and last: Category:Landforms of Phu Yen Province -[2018-02-13T08:23:38.756] [INFO] cheese - inserting 1000 documents. first: Thouless energy and last: Richard Décarie -[2018-02-13T08:23:38.816] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:23:38.915] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:23:38.956] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/LOT, Bristol and last: Category:Sanyo mobile phones -[2018-02-13T08:23:39.037] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:23:39.080] [INFO] cheese - inserting 1000 documents. first: Lyon King-of-Arms and last: Mazar Dam -[2018-02-13T08:23:39.111] [INFO] cheese - inserting 1000 documents. first: Kdka and last: Philip J. Fry I -[2018-02-13T08:23:39.127] [INFO] cheese - inserting 1000 documents. first: Oystein Jarlsbo and last: Darshen -[2018-02-13T08:23:39.142] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/LGBT/2 and last: Ramgea annulispora -[2018-02-13T08:23:39.148] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:23:39.222] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:23:39.228] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:39.235] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:23:39.236] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of Soc Trang Province and last: Wikipedia:Articles for deletion/Ram Khilawan Mishra -[2018-02-13T08:23:39.328] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:23:39.668] [INFO] cheese - inserting 1000 documents. first: Camp Seminole and last: Category:Baseball teams in Nebraska -[2018-02-13T08:23:39.790] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:23:39.828] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Milton S. Eisenhower Foundation and last: Southern Star (observation wheel) -[2018-02-13T08:23:39.888] [INFO] cheese - inserting 1000 documents. first: Sao José and last: Wikipedia:Articles for deletion/Colm Kearney -[2018-02-13T08:23:39.992] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:23:40.061] [INFO] cheese - inserting 1000 documents. first: File:Arx Fatalis cover.png and last: Life is Good Company -[2018-02-13T08:23:40.079] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T08:23:40.082] [INFO] cheese - inserting 1000 documents. first: Chan King Ming and last: 1987–88 UAE Football League -[2018-02-13T08:23:40.109] [INFO] cheese - inserting 1000 documents. first: Borveny and last: Short Read Archive -[2018-02-13T08:23:40.148] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:23:40.203] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:23:40.268] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:23:40.344] [INFO] cheese - inserting 1000 documents. first: MS Aramis and last: File:GJ b&w protest.jpg -[2018-02-13T08:23:40.730] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T08:23:40.762] [INFO] cheese - inserting 1000 documents. first: East Randolph, New York and last: Pitcairn, New York -[2018-02-13T08:23:40.858] [INFO] cheese - inserting 1000 documents. first: Lie algebra action and last: Category:Iranian railway station stubs -[2018-02-13T08:23:40.913] [INFO] cheese - inserting 1000 documents. first: Gary Barnes and last: AsCl5 -[2018-02-13T08:23:40.932] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:23:41.190] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T08:23:41.223] [INFO] cheese - inserting 1000 documents. first: Acura Classic and last: Sport For Jove Theatre Company -[2018-02-13T08:23:41.267] [INFO] cheese - batch complete in: 3.71 secs -[2018-02-13T08:23:41.344] [INFO] cheese - inserting 1000 documents. first: Conrad Festival and last: Category:Pandelis Karayorgis albums -[2018-02-13T08:23:41.403] [INFO] cheese - inserting 1000 documents. first: Jörg Kuebart and last: Wikipedia:WikiProject Spam/LinkReports/rendaxdespesas.wordpress.com) -[2018-02-13T08:23:41.454] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:23:41.519] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T08:23:41.566] [INFO] cheese - batch complete in: 1.418 secs -[2018-02-13T08:23:41.658] [INFO] cheese - inserting 1000 documents. first: Atholl brose and last: Joseph W. Tkach -[2018-02-13T08:23:41.802] [INFO] cheese - inserting 1000 documents. first: Craig McMurtry and last: Throckmorton (disambiguation) -[2018-02-13T08:23:41.847] [INFO] cheese - batch complete in: 1.768 secs -[2018-02-13T08:23:41.926] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:23:42.024] [INFO] cheese - inserting 1000 documents. first: Fraser v Children's Court, Pretoria North and Others and last: NC Clean Water Management Trust Fund -[2018-02-13T08:23:42.131] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:23:42.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Image-Heliconius ismenius 2 Richard Bartz.jpg and last: Cierp-Gaud -[2018-02-13T08:23:42.296] [INFO] cheese - inserting 1000 documents. first: Template:Romania-university-stub and last: 1983 UCLA Bruins football team -[2018-02-13T08:23:42.311] [INFO] cheese - inserting 1000 documents. first: Aurore Dupin and last: Dougherty, James -[2018-02-13T08:23:42.334] [INFO] cheese - inserting 1000 documents. first: 2003 ICC Cricket World Cup Final and last: William Baird (physician) -[2018-02-13T08:23:42.453] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:23:42.498] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:23:42.505] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:23:42.624] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:23:42.815] [INFO] cheese - inserting 1000 documents. first: Larry Myricks and last: Dip belt -[2018-02-13T08:23:42.887] [INFO] cheese - inserting 1000 documents. first: File:Characters Uchuusen Sagittarius.jpg and last: Alert (gum) -[2018-02-13T08:23:42.909] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:23:42.967] [INFO] cheese - inserting 1000 documents. first: Cadaver (video game) and last: Soap and Detergent -[2018-02-13T08:23:43.010] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:23:43.111] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:23:43.167] [INFO] cheese - inserting 1000 documents. first: Douglass, James and last: 140journos -[2018-02-13T08:23:43.241] [INFO] cheese - inserting 1000 documents. first: Harap Alb and last: C9H21N -[2018-02-13T08:23:43.243] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:23:43.305] [INFO] cheese - inserting 1000 documents. first: Coleophora dianthi and last: Mysterious Power -[2018-02-13T08:23:43.308] [INFO] cheese - inserting 1000 documents. first: Fishermen's Village and last: Template:Wikipediapools -[2018-02-13T08:23:43.341] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:23:43.431] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:23:43.444] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:23:43.597] [INFO] cheese - inserting 1000 documents. first: Town of Northam and last: Cater -[2018-02-13T08:23:43.697] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:23:43.735] [INFO] cheese - inserting 1000 documents. first: Larry Tieu and last: Hong Kong Ice Hockey Championship -[2018-02-13T08:23:43.769] [INFO] cheese - inserting 1000 documents. first: John Ryder (boxer) and last: Template:User in BWA -[2018-02-13T08:23:43.822] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:23:43.843] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:43.923] [INFO] cheese - inserting 1000 documents. first: Ralph Perretta and last: Maddur, Ranga Reddy district -[2018-02-13T08:23:43.936] [INFO] cheese - inserting 1000 documents. first: WSSC and last: Șcheiu River (Râul Șes) -[2018-02-13T08:23:43.949] [INFO] cheese - inserting 1000 documents. first: Benmore Gardens and last: Takao Omori -[2018-02-13T08:23:44.008] [INFO] cheese - inserting 1000 documents. first: Darren Smith (Australian rules footballer) and last: Template:Fb team Jomo Cosmos -[2018-02-13T08:23:44.007] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:23:44.019] [INFO] cheese - inserting 1000 documents. first: Rensselaer Falls, New York and last: Brevard, North Carolina -[2018-02-13T08:23:44.019] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:23:44.091] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:23:44.138] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:23:44.239] [INFO] cheese - batch complete in: 2.972 secs -[2018-02-13T08:23:44.349] [INFO] cheese - inserting 1000 documents. first: Tis better to have loved and lost and last: The Stolen Body and Other Tales of the Unexpected -[2018-02-13T08:23:44.353] [INFO] cheese - inserting 1000 documents. first: Nevada State Route 537 and last: Portal:Nontheism/Quotes/September -[2018-02-13T08:23:44.430] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:23:44.456] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:23:44.547] [INFO] cheese - inserting 1000 documents. first: Euler top and last: Rock Drill (Ezra Pound) -[2018-02-13T08:23:44.548] [INFO] cheese - inserting 1000 documents. first: Lenny Barker and last: Marburg Branch Railway -[2018-02-13T08:23:44.594] [INFO] cheese - inserting 1000 documents. first: Saint-Laurent, Haute-Garonne and last: Colorado Women's College -[2018-02-13T08:23:44.593] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:23:44.634] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:23:44.677] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:23:44.779] [INFO] cheese - inserting 1000 documents. first: The Favorite Short Stories of H. G. Wells and last: XHFCT-FM -[2018-02-13T08:23:44.821] [INFO] cheese - inserting 1000 documents. first: Protolith and last: Category:Canadian orchestras -[2018-02-13T08:23:44.814] [INFO] cheese - batch complete in: 0.384 secs -[2018-02-13T08:23:44.839] [INFO] cheese - inserting 1000 documents. first: Template:S-line/NSW Country lines left/Unanderra-Moss Vale and last: Gbowr -[2018-02-13T08:23:44.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:FILMPR and last: Valenticarbo praetermissus -[2018-02-13T08:23:44.923] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:23:44.923] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:23:45.009] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:23:45.147] [INFO] cheese - inserting 1000 documents. first: 1999 Louis Vuitton Cup and last: Tom Pratt (footballer) -[2018-02-13T08:23:45.153] [INFO] cheese - inserting 1000 documents. first: Coleophora pilion and last: Mozhaiskiy -[2018-02-13T08:23:45.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/i69.photobucket.com and last: Wikipedia:Peer review/Australia-Indonesia Prisoner Exchange Agreement -[2018-02-13T08:23:45.207] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:45.234] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:23:45.309] [INFO] cheese - inserting 1000 documents. first: Category:Chess woman players and last: Graves, James -[2018-02-13T08:23:45.312] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:23:45.384] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:23:45.571] [INFO] cheese - inserting 1000 documents. first: Old Addenbrooke's Site and last: File:CEPJSW2.jpg -[2018-02-13T08:23:45.639] [INFO] cheese - inserting 1000 documents. first: Shire of Busselton, Western Australia and last: Category:UD Almería players -[2018-02-13T08:23:45.652] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:23:45.745] [INFO] cheese - inserting 1000 documents. first: George Ward Cole and last: Category:Midwestern State University faculty -[2018-02-13T08:23:45.751] [INFO] cheese - inserting 1000 documents. first: San Juan Bautista, Paraguay and last: Come Taste the Band -[2018-02-13T08:23:45.761] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:45.832] [INFO] cheese - inserting 1000 documents. first: Green, James and last: Rubus huttonii -[2018-02-13T08:23:45.842] [INFO] cheese - inserting 1000 documents. first: East Germany women's national volleyball team and last: Wavelength (soundtrack) -[2018-02-13T08:23:45.868] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:23:45.873] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:23:45.940] [INFO] cheese - inserting 1000 documents. first: Mozhaiski and last: Madharam -[2018-02-13T08:23:45.990] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:23:46.013] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:23:46.105] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:23:46.269] [INFO] cheese - inserting 1000 documents. first: Rosman, North Carolina and last: Mariemont, Ohio -[2018-02-13T08:23:46.376] [INFO] cheese - inserting 1000 documents. first: Uclms and last: Dmytro -[2018-02-13T08:23:46.391] [INFO] cheese - batch complete in: 2.152 secs -[2018-02-13T08:23:46.413] [INFO] cheese - inserting 1000 documents. first: Suntory Sunbirds and last: Natalie Allyn Wakeley -[2018-02-13T08:23:46.427] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hamshakal's and last: Category:1902 in Oregon -[2018-02-13T08:23:46.446] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:23:46.476] [INFO] cheese - inserting 1000 documents. first: Pope Kyrillos VI and last: Portal:Socialism/Selected article/2 -[2018-02-13T08:23:46.471] [INFO] cheese - inserting 1000 documents. first: Biol. Pharm. Bull. and last: Kum-song -[2018-02-13T08:23:46.487] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:46.496] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:23:46.548] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:23:46.548] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:23:46.650] [INFO] cheese - inserting 1000 documents. first: USNS Rappahannock (T-AO-204) and last: Authority figures in comedy -[2018-02-13T08:23:46.707] [INFO] cheese - inserting 1000 documents. first: Mittakodur and last: NAPTOSA Union -[2018-02-13T08:23:46.740] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:23:46.946] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:23:47.155] [INFO] cheese - inserting 1000 documents. first: The Roland Kirk Quartet Meets the Benny Golson Orchestra and last: Thesis of Pulacayo -[2018-02-13T08:23:47.290] [INFO] cheese - inserting 1000 documents. first: Environmental effects of oil shale industry and last: Scientrier -[2018-02-13T08:23:47.290] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:23:47.315] [INFO] cheese - inserting 1000 documents. first: Category:1904 in Oregon and last: ADAM 17 endopeptidase -[2018-02-13T08:23:47.349] [INFO] cheese - inserting 1000 documents. first: Geum-seong and last: Patriarch Theodosios -[2018-02-13T08:23:47.382] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:47.477] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:23:47.484] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:23:47.504] [INFO] cheese - inserting 1000 documents. first: Bothrops atrox colombiensis and last: Collecting Team -[2018-02-13T08:23:47.631] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:23:47.640] [INFO] cheese - inserting 1000 documents. first: Template:Bahrain squad 2004 AFC Asian Cup and last: Kisszántó -[2018-02-13T08:23:47.758] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:23:47.904] [INFO] cheese - inserting 1000 documents. first: Past & Present (journal) and last: Battle of Coamo -[2018-02-13T08:23:47.919] [INFO] cheese - inserting 1000 documents. first: Priya Sisters - Shanmukhapriya & Haripriya and last: Category:Nils Gaelic footballers -[2018-02-13T08:23:48.023] [INFO] cheese - inserting 1000 documents. first: Poulos and last: Vein (botany) -[2018-02-13T08:23:48.023] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:23:48.039] [INFO] cheese - inserting 1000 documents. first: The Women of Genesis series and last: List of heads of state of Burma -[2018-02-13T08:23:48.046] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:23:48.105] [INFO] cheese - inserting 1000 documents. first: Essert-Romand and last: Carlos López (baseball) -[2018-02-13T08:23:48.117] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:23:48.162] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:23:48.186] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:23:48.334] [INFO] cheese - inserting 1000 documents. first: Vicosoprano and last: Jörg van Nieuwenhuijzen -[2018-02-13T08:23:48.433] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:23:48.440] [INFO] cheese - inserting 1000 documents. first: Nagyszántó and last: File:OpenBSD49-boot.png -[2018-02-13T08:23:48.537] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:23:48.685] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2009-08-08/John Dillinger and last: Wikipedia:WikiProject Spam/LinkReports/electricvelocipede.com -[2018-02-13T08:23:48.749] [INFO] cheese - inserting 1000 documents. first: Monfort Heights East, Ohio and last: Goldsby, Oklahoma -[2018-02-13T08:23:48.755] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:23:48.855] [INFO] cheese - inserting 1000 documents. first: Category:Foreign relations of Singapore and last: Category:1960s fashion -[2018-02-13T08:23:48.887] [INFO] cheese - inserting 1000 documents. first: Vilmos Patay and last: Category:Rhodesian Bush War -[2018-02-13T08:23:48.904] [INFO] cheese - inserting 1000 documents. first: Kenwood, New York and last: La Chapelle-Blanche-Saint-Martin -[2018-02-13T08:23:48.936] [INFO] cheese - batch complete in: 2.545 secs -[2018-02-13T08:23:48.982] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:23:49.015] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:23:49.024] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:23:49.237] [INFO] cheese - inserting 1000 documents. first: Bishop of Mortlach-Aberdeen and last: Tour of Chongming Island Time Trial -[2018-02-13T08:23:49.323] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:23:49.423] [INFO] cheese - inserting 1000 documents. first: Mt Pelée and last: Frank Duckworth -[2018-02-13T08:23:49.537] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:23:49.604] [INFO] cheese - inserting 1000 documents. first: How to Explain Pictures to a Dead Hare and last: Bani humi -[2018-02-13T08:23:49.700] [INFO] cheese - inserting 1000 documents. first: Category:18th-century disestablishments in Scotland and last: Shawn Saunders -[2018-02-13T08:23:49.755] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:23:49.777] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Empires: Dawn of the Modern World and last: Category:Ireland in the Eurovision Song Contest -[2018-02-13T08:23:49.852] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:23:49.940] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:23:49.953] [INFO] cheese - inserting 1000 documents. first: Ann Calvello and last: Yaşargil -[2018-02-13T08:23:50.116] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:23:50.126] [INFO] cheese - inserting 1000 documents. first: Barnyard (Video Game) and last: Wikipedia:Good article reassessment/St La Salle Hall/1 -[2018-02-13T08:23:50.192] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:23:50.454] [INFO] cheese - inserting 1000 documents. first: Alice Baldwin and last: EC 3.5.4.26 -[2018-02-13T08:23:50.503] [INFO] cheese - inserting 1000 documents. first: Distributive law between monads and last: Panchacharyas -[2018-02-13T08:23:50.539] [INFO] cheese - inserting 1000 documents. first: Bani jawbah and last: Template:Turacos -[2018-02-13T08:23:50.607] [INFO] cheese - inserting 1000 documents. first: Manipulation of atoms by optical field and last: File:ClaypigeonLobby.jpg -[2018-02-13T08:23:50.628] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:23:50.670] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:23:50.694] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:23:50.802] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:23:50.949] [INFO] cheese - inserting 1000 documents. first: TimedText:Kelly Clarkson - Nostalgic.ogg.en.srt and last: O'Leary, James -[2018-02-13T08:23:50.975] [INFO] cheese - inserting 1000 documents. first: Liri Blues Festival and last: Victoria Square, Toronto -[2018-02-13T08:23:51.007] [INFO] cheese - inserting 1000 documents. first: Category:History of Italy by region and last: Gulbargah -[2018-02-13T08:23:51.087] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:23:51.119] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:23:51.113] [INFO] cheese - batch complete in: 2.951 secs -[2018-02-13T08:23:51.238] [INFO] cheese - inserting 1000 documents. first: Category:Suicides by jumping in Canada and last: Vengeful Spirit -[2018-02-13T08:23:51.297] [INFO] cheese - inserting 1000 documents. first: Amietophrynus pardalis and last: Saint-Jean-d'Étreux -[2018-02-13T08:23:51.328] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:23:51.388] [INFO] cheese - inserting 1000 documents. first: Salisbury hall and last: Findory.com -[2018-02-13T08:23:51.408] [INFO] cheese - inserting 1000 documents. first: Ladainian tomlinson and last: Lochee Harp -[2018-02-13T08:23:51.437] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:23:51.466] [INFO] cheese - inserting 1000 documents. first: Newcastle, Oklahoma and last: Strausstown, Pennsylvania -[2018-02-13T08:23:51.506] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:23:51.540] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:23:51.669] [INFO] cheese - batch complete in: 2.733 secs -[2018-02-13T08:23:51.682] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elections.gov.sg and last: DFS Schulgleiter SG.38 -[2018-02-13T08:23:51.774] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:23:51.857] [INFO] cheese - inserting 1000 documents. first: Onboard safety videos and last: James Wilson (Dean of Tuam) -[2018-02-13T08:23:51.925] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:23:52.009] [INFO] cheese - inserting 1000 documents. first: Means-testing and last: Sweeney -[2018-02-13T08:23:52.011] [INFO] cheese - inserting 1000 documents. first: Ceratophyllus borealis and last: Cheshmehsefid -[2018-02-13T08:23:52.057] [INFO] cheese - inserting 1000 documents. first: L'entraînement du champion avant la course and last: Chidambaranatha Nadar -[2018-02-13T08:23:52.070] [INFO] cheese - inserting 1000 documents. first: Saint-Julien, Jura and last: Wikipedia:Peer review/Holden VE Commodore -[2018-02-13T08:23:52.079] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:23:52.090] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:23:52.126] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:23:52.110] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:23:52.197] [INFO] cheese - inserting 1000 documents. first: File:No such thing.jpg and last: Shen Kuei -[2018-02-13T08:23:52.303] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:23:52.363] [INFO] cheese - inserting 1000 documents. first: Category:Kickboxing in Austria and last: Wikipedia:WikiProject Spam/LinkReports/dundalkfc.com -[2018-02-13T08:23:52.481] [INFO] cheese - inserting 1000 documents. first: Sadduguntepalya and last: Rio Corcovado -[2018-02-13T08:23:52.512] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:23:52.594] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:23:52.622] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Sefid and last: Shoftim (parsha) -[2018-02-13T08:23:52.640] [INFO] cheese - inserting 1000 documents. first: File:Fast Food Tycoon 2 Coverart.png and last: 2007-08 Indian cricket season -[2018-02-13T08:23:52.689] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:23:52.737] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:23:52.854] [INFO] cheese - inserting 1000 documents. first: C3La2O9 and last: El Faraon -[2018-02-13T08:23:52.931] [INFO] cheese - inserting 1000 documents. first: Mystical Ninja Starring Goemon (Game Boy) and last: Wikipedia:Translation/Serapeum -[2018-02-13T08:23:52.942] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:23:52.957] [INFO] cheese - inserting 1000 documents. first: Juan José Medina and last: Queen Tawosret -[2018-02-13T08:23:53.053] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:23:53.104] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:23:53.138] [INFO] cheese - inserting 1000 documents. first: Rubus nocivus and last: 2004 Oceania Handball Championship -[2018-02-13T08:23:53.154] [INFO] cheese - inserting 1000 documents. first: G200 (disambiguation) and last: Sheja -[2018-02-13T08:23:53.208] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:23:53.264] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:53.318] [INFO] cheese - inserting 1000 documents. first: Politico's History of British Political Parties and last: Musa ibn Faris al-Mutawakkil -[2018-02-13T08:23:53.354] [INFO] cheese - inserting 1000 documents. first: File:WGAA logo.png and last: Pélussin -[2018-02-13T08:23:53.417] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:23:53.441] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:23:53.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Council/Proposals/NDH and last: Ruislip gardens primary school -[2018-02-13T08:23:53.655] [INFO] cheese - inserting 1000 documents. first: List of songs written by Shane McAnally and last: Category:Louisiana elections, 1855 -[2018-02-13T08:23:53.738] [INFO] cheese - inserting 1000 documents. first: Tilden Township, Berks County, Pennsylvania and last: Lima, Pennsylvania -[2018-02-13T08:23:53.729] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:23:53.775] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:23:53.892] [INFO] cheese - inserting 1000 documents. first: Finnish torpedo boat S2 and last: George Fuller (congressman) -[2018-02-13T08:23:53.994] [INFO] cheese - inserting 1000 documents. first: Chapel royal and last: Second sack -[2018-02-13T08:23:54.048] [INFO] cheese - batch complete in: 2.379 secs -[2018-02-13T08:23:54.051] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:23:54.070] [INFO] cheese - inserting 1000 documents. first: Template:Brussels-Capital Region Parliament election, 2009 and last: Foundation for Child Development -[2018-02-13T08:23:54.101] [INFO] cheese - inserting 1000 documents. first: Rick Outman and last: Wikipedia:WikiProject Spam/LinkReports/pabloaimarweb.blogspot.com -[2018-02-13T08:23:54.163] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:23:54.185] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:23:54.282] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:23:54.360] [INFO] cheese - inserting 1000 documents. first: Dancé, Loire and last: Thou, Loiret -[2018-02-13T08:23:54.548] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:23:54.621] [INFO] cheese - inserting 1000 documents. first: Category:Louisiana elections, 1859 and last: Guyana at the 2015 World Championships in Athletics -[2018-02-13T08:23:54.705] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:23:54.766] [INFO] cheese - inserting 1000 documents. first: List of forest regions and districts of British Columbia and last: 2006 Supercopa de España -[2018-02-13T08:23:54.849] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:23:54.886] [INFO] cheese - inserting 1000 documents. first: Buchwaldoboletus lignicola and last: HD 113538 c -[2018-02-13T08:23:54.937] [INFO] cheese - inserting 1000 documents. first: The Daily Journal (Venezuela) and last: Oxford East -[2018-02-13T08:23:55.026] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:23:55.118] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:23:55.246] [INFO] cheese - inserting 1000 documents. first: Otto I of Pomerania and last: Call It Spring -[2018-02-13T08:23:55.250] [INFO] cheese - inserting 1000 documents. first: Tretyakovskaya Gallery and last: Cowdray Park -[2018-02-13T08:23:55.266] [INFO] cheese - inserting 1000 documents. first: Jean-Francois Berube and last: File:Anpgrh canal gharsana.jpg -[2018-02-13T08:23:55.351] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:23:55.465] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:23:55.504] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:23:55.775] [INFO] cheese - inserting 1000 documents. first: Hans Wimmer and last: Life on Enceladus -[2018-02-13T08:23:55.890] [INFO] cheese - inserting 1000 documents. first: List of Quebec railways and last: Ron Cash -[2018-02-13T08:23:55.907] [INFO] cheese - inserting 1000 documents. first: Ängelholm–Helsingborg and last: Harland (name) -[2018-02-13T08:23:55.920] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:23:56.007] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:23:56.033] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:23:56.077] [INFO] cheese - inserting 1000 documents. first: Sittingbourne and Sheppey and last: Coracite -[2018-02-13T08:23:56.197] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:23:56.207] [INFO] cheese - inserting 1000 documents. first: Australia 2020 and last: File:Do17z 20mm.jpg -[2018-02-13T08:23:56.258] [INFO] cheese - inserting 1000 documents. first: File:André Pieyre de Mandiargues.jpg and last: En la ardiente oscuridad -[2018-02-13T08:23:56.374] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:23:56.384] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:23:56.414] [INFO] cheese - inserting 1000 documents. first: Category:Education in Cyprus and last: Medium Wave -[2018-02-13T08:23:56.596] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Goings-on/August 16, 2015 and last: Ulhasnagar taluka -[2018-02-13T08:23:56.606] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:23:56.669] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:23:56.860] [INFO] cheese - inserting 1000 documents. first: Sunrise (Uriah Heep's song) and last: Robert Corteen Carswell -[2018-02-13T08:23:56.961] [INFO] cheese - inserting 1000 documents. first: Progress 7K-TG and last: Alexis Creek -[2018-02-13T08:23:57.105] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:23:57.194] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:23:57.194] [INFO] cheese - inserting 1000 documents. first: Pittinite and last: Category:Books by V. S. Naipaul -[2018-02-13T08:23:57.195] [INFO] cheese - inserting 1000 documents. first: Linwood, Pennsylvania and last: North Catasauqua, Pennsylvania -[2018-02-13T08:23:57.318] [INFO] cheese - inserting 1000 documents. first: Joint method of agreement and difference and last: Grez-Neuville -[2018-02-13T08:23:57.325] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:23:57.453] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dwu.org and last: Category:Australian assassins -[2018-02-13T08:23:57.506] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:23:57.614] [INFO] cheese - batch complete in: 3.566 secs -[2018-02-13T08:23:57.669] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:23:57.867] [INFO] cheese - inserting 1000 documents. first: Hussain Al-Rumaihi and last: Ryosuke Nomura -[2018-02-13T08:23:58.037] [INFO] cheese - inserting 1000 documents. first: Adam Nichols and last: Amy's Baking Company -[2018-02-13T08:23:58.027] [INFO] cheese - inserting 1000 documents. first: Law of comparative judgment and last: Father Paul -[2018-02-13T08:23:58.091] [INFO] cheese - batch complete in: 1.42 secs -[2018-02-13T08:23:58.224] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:23:58.230] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:23:58.286] [INFO] cheese - inserting 1000 documents. first: Grugé-l'Hôpital and last: Wikipedia:Peer review/Maulana Abul Kalam Azad -[2018-02-13T08:23:58.417] [INFO] cheese - inserting 1000 documents. first: Mesabolone and last: Europe Tour -[2018-02-13T08:23:58.439] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:23:58.657] [INFO] cheese - inserting 1000 documents. first: List of colonial governors of florida and last: St. Helena Rail -[2018-02-13T08:23:58.691] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:23:58.725] [INFO] cheese - inserting 1000 documents. first: Botti Biabi and last: Wishenpoof! -[2018-02-13T08:23:58.761] [INFO] cheese - batch complete in: 1.435 secs -[2018-02-13T08:23:58.787] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:23:59.002] [INFO] cheese - inserting 1000 documents. first: Arthur "Dooley" Wilson and last: Category:Electric power in Vietnam -[2018-02-13T08:23:59.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Mauna Loa and last: Wikipedia:Peer review/Nicktropolis -[2018-02-13T08:23:59.166] [INFO] cheese - inserting 1000 documents. first: Category:Swiss writers in German and last: Mother Natures Kitchen -[2018-02-13T08:23:59.220] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:23:59.426] [INFO] cheese - batch complete in: 1.202 secs -[2018-02-13T08:23:59.595] [INFO] cheese - batch complete in: 1.925 secs -[2018-02-13T08:23:59.606] [INFO] cheese - inserting 1000 documents. first: Category:Brazilian reality television series and last: Heather Craney -[2018-02-13T08:23:59.728] [INFO] cheese - inserting 1000 documents. first: 1965 in Singapore and last: Benoni -[2018-02-13T08:23:59.736] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alive and Hostile E.P. and last: Template:2015 AFC U-14 Regional Festival of Football Group A -[2018-02-13T08:23:59.769] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:23:59.870] [INFO] cheese - batch complete in: 1.639 secs -[2018-02-13T08:23:59.891] [INFO] cheese - inserting 1000 documents. first: Fictional Jimmy Wales and last: Brokedown Palace: Music from the Original Motion Picture Soundtrack -[2018-02-13T08:23:59.946] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:24:00.048] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:24:00.204] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Indian Christianity work group articles and last: Saint-Jean-le-Thomas -[2018-02-13T08:24:00.264] [INFO] cheese - inserting 1000 documents. first: File:You Don't Love Me (No, No, No) single cover.jpg and last: Moreau's opera house -[2018-02-13T08:24:00.306] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:24:00.479] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:24:00.601] [INFO] cheese - inserting 1000 documents. first: Template:Bodoland People's Front/meta/shortname and last: Provinces of Australia -[2018-02-13T08:24:00.605] [INFO] cheese - inserting 1000 documents. first: Naukšēni Municipality and last: Chaque feu... -[2018-02-13T08:24:00.669] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by James Franco and last: Wikipedia:Articles for deletion/Edward W. Gosselin -[2018-02-13T08:24:00.691] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:24:00.690] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:24:00.819] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:24:00.849] [INFO] cheese - inserting 1000 documents. first: Northampton, Pennsylvania and last: Bradley, South Carolina -[2018-02-13T08:24:00.857] [INFO] cheese - inserting 1000 documents. first: Symbol of Christianity and last: Category:Birds of Argentina -[2018-02-13T08:24:00.973] [INFO] cheese - inserting 1000 documents. first: Saint-Laurent-de-Cuves and last: Edmund Sheffield, 1st Baron Sheffield -[2018-02-13T08:24:00.995] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:24:01.005] [INFO] cheese - inserting 1000 documents. first: Tumbling Tumbleweed and last: CYFS -[2018-02-13T08:24:01.047] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:24:01.115] [INFO] cheese - batch complete in: 3.501 secs -[2018-02-13T08:24:01.165] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:24:01.395] [INFO] cheese - inserting 1000 documents. first: Joshua Peters and last: Ryazan Plant for Manufacturing and Processing Non-Ferrous Metals -[2018-02-13T08:24:01.514] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:24:01.613] [INFO] cheese - inserting 1000 documents. first: Abdurahmanov's pugolovka and last: Csoklovina -[2018-02-13T08:24:01.658] [INFO] cheese - inserting 1000 documents. first: Rocky Pass and last: Just an American Boy (album) -[2018-02-13T08:24:01.683] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Michael Douglas on stage and screen and last: One Last Kiss (Full House) -[2018-02-13T08:24:01.788] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:24:01.816] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:24:01.838] [INFO] cheese - inserting 1000 documents. first: Synergetic and last: 1918–19 Northern Rugby Football Union season -[2018-02-13T08:24:01.847] [INFO] cheese - inserting 1000 documents. first: Alameda County (California) and last: NWA United National Championship -[2018-02-13T08:24:01.891] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:24:01.935] [INFO] cheese - inserting 1000 documents. first: Child, youth and family services and last: GranDracmon -[2018-02-13T08:24:02.005] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:24:02.075] [INFO] cheese - batch complete in: 1.384 secs -[2018-02-13T08:24:02.158] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:24:02.356] [INFO] cheese - inserting 1000 documents. first: Category:2004 establishments in New Mexico and last: Hjortsberg -[2018-02-13T08:24:02.411] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:24:02.489] [INFO] cheese - inserting 1000 documents. first: Nova Chemicals Corporation and last: Zero Township, Adams County, Nebraska -[2018-02-13T08:24:02.527] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:24:02.556] [INFO] cheese - inserting 1000 documents. first: Gyeongju Seokbinggo and last: File:George Washington Memorial Parkway, Alexandria, VA.jpg -[2018-02-13T08:24:02.583] [INFO] cheese - inserting 1000 documents. first: Against The Grain (Acoustic Alchemy album) and last: Aaq26 -[2018-02-13T08:24:02.601] [INFO] cheese - inserting 1000 documents. first: Bobaja and last: Pama–Maran languages -[2018-02-13T08:24:02.644] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:24:02.680] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:24:02.731] [INFO] cheese - inserting 1000 documents. first: City of Bradford Metropolitan District Council election, 1999 and last: The Journal of Physical Chemistry B -[2018-02-13T08:24:02.776] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:24:02.901] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:24:02.958] [INFO] cheese - inserting 1000 documents. first: Stanley Theater (Jersey City) and last: Wherton -[2018-02-13T08:24:02.958] [INFO] cheese - inserting 1000 documents. first: Optical pulsar and last: Wikipedia:Peer review/Slipknot (band) -[2018-02-13T08:24:02.976] [INFO] cheese - inserting 1000 documents. first: Brasiliorchis schunkeana and last: Category:Treaties of the Empire of Brazil -[2018-02-13T08:24:02.998] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:24:03.074] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:24:03.103] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:24:03.229] [INFO] cheese - inserting 1000 documents. first: AN-AAQ-26 and last: Michaël Borremans -[2018-02-13T08:24:03.280] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:24:03.313] [INFO] cheese - inserting 1000 documents. first: Cokesbury, South Carolina and last: Nash, Texas -[2018-02-13T08:24:03.441] [INFO] cheese - inserting 1000 documents. first: Stronger woman and last: Portal:United States/On this day/April 18 -[2018-02-13T08:24:03.444] [INFO] cheese - batch complete in: 2.323 secs -[2018-02-13T08:24:03.457] [INFO] cheese - inserting 1000 documents. first: Sonkatch, Bhopal and last: Category:Naval ships of Burma -[2018-02-13T08:24:03.484] [INFO] cheese - inserting 1000 documents. first: Paramacrobiotus craterlaki and last: Tohu and Tikkun -[2018-02-13T08:24:03.505] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:24:03.590] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Army Song and last: Yevgeniy Khudobko -[2018-02-13T08:24:03.596] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:24:03.604] [INFO] cheese - inserting 1000 documents. first: Endless Love (2015 film) and last: Thirteen Moons (novel) -[2018-02-13T08:24:03.688] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:24:03.824] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:24:03.831] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:24:04.161] [INFO] cheese - inserting 1000 documents. first: Liebster Gott, wenn werd ich sterben? BWV 8 and last: Category:222 BC -[2018-02-13T08:24:04.202] [INFO] cheese - inserting 1000 documents. first: Persistent data structure with confluence and last: William Henry Emerson -[2018-02-13T08:24:04.214] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of ParanormalResources and last: File:Bob and Tom Radio Show- The Comedy Tour Volume1.jpg -[2018-02-13T08:24:04.235] [INFO] cheese - inserting 1000 documents. first: Frederick B. Rowe and last: Timeline of Saratoga Springs, New York -[2018-02-13T08:24:04.277] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:24:04.311] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:24:04.320] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:24:04.374] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:24:04.609] [INFO] cheese - inserting 1000 documents. first: Reg Graycar and last: Wikipedia:Reference desk/Archives/Entertainment/2013 May 15 -[2018-02-13T08:24:04.655] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:24:04.709] [INFO] cheese - inserting 1000 documents. first: Gunnar Ólason and last: Runcicantitruncated 6-orthoplex -[2018-02-13T08:24:04.766] [INFO] cheese - inserting 1000 documents. first: Yevgeny Khudobko and last: Sexy M.F. -[2018-02-13T08:24:04.804] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:24:04.825] [INFO] cheese - inserting 1000 documents. first: Biak language and last: Reid Paley -[2018-02-13T08:24:04.862] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:24:04.989] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:24:05.068] [INFO] cheese - inserting 1000 documents. first: Category:223 BC and last: Yushin constitution -[2018-02-13T08:24:05.069] [INFO] cheese - inserting 1000 documents. first: Brittany Force and last: Wikipedia:Featured picture candidates/Condom Cathedral -[2018-02-13T08:24:05.073] [INFO] cheese - inserting 1000 documents. first: Dobie Center and last: Saint Thomas, North Dakota -[2018-02-13T08:24:05.195] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:24:05.197] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:24:05.290] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:24:05.687] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Miscellaneous/2013 May 16 and last: Category:2004 establishments in Nebraska -[2018-02-13T08:24:05.688] [INFO] cheese - inserting 1000 documents. first: Collateral management software and last: Template:Botswana National Front/meta/shortname -[2018-02-13T08:24:05.790] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:24:05.806] [INFO] cheese - inserting 1000 documents. first: USS Emily B. (ID-3731) and last: Template:Frisco RoughRiders roster -[2018-02-13T08:24:05.831] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T08:24:05.923] [INFO] cheese - inserting 1000 documents. first: DCAS Testing and last: Coleophora thymiphaga -[2018-02-13T08:24:05.927] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:24:05.948] [INFO] cheese - inserting 1000 documents. first: KYRS and last: 25 equal temperament -[2018-02-13T08:24:06.035] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:24:06.037] [INFO] cheese - inserting 1000 documents. first: Overseas Community Affairs Council and last: Nikare -[2018-02-13T08:24:06.102] [INFO] cheese - batch complete in: 1.297 secs -[2018-02-13T08:24:06.130] [INFO] cheese - inserting 1000 documents. first: New Boston, Texas and last: Henderson, Texas -[2018-02-13T08:24:06.136] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:24:06.199] [INFO] cheese - inserting 1000 documents. first: Queen Anne's Bounty and last: Air defence -[2018-02-13T08:24:06.320] [INFO] cheese - batch complete in: 2.875 secs -[2018-02-13T08:24:06.346] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:24:06.514] [INFO] cheese - inserting 1000 documents. first: Sonny rollins and last: Wlodzimierz Kotonski -[2018-02-13T08:24:06.547] [INFO] cheese - inserting 1000 documents. first: Category:Low usage railway stations in the United Kingdom and last: WUPC-LP -[2018-02-13T08:24:06.631] [INFO] cheese - inserting 1000 documents. first: 26 equal temperament and last: Leuk. Res. -[2018-02-13T08:24:06.635] [INFO] cheese - inserting 1000 documents. first: Mad Catz Interactive, Inc and last: Ladenburg Thalmann Financial Services Inc -[2018-02-13T08:24:06.770] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:24:06.776] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:24:06.893] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:24:06.892] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:24:06.990] [INFO] cheese - inserting 1000 documents. first: Colleen Powell and last: Category:Diodontidae -[2018-02-13T08:24:07.088] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:24:07.355] [INFO] cheese - inserting 1000 documents. first: Orthographis thymiella and last: Athletics at the 2012 Summer Olympics – Men's pole vault -[2018-02-13T08:24:07.372] [INFO] cheese - inserting 1000 documents. first: Johann Poggendorff and last: Lumba-Bayabao -[2018-02-13T08:24:07.571] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:24:07.646] [INFO] cheese - batch complete in: 1.544 secs -[2018-02-13T08:24:07.727] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Water supply and sanitation in Colombia and last: Category:Heritage railroads in Rhode Island -[2018-02-13T08:24:07.735] [INFO] cheese - inserting 1000 documents. first: Cornelius Becker and last: Ultima Online Pacific Shard -[2018-02-13T08:24:07.845] [INFO] cheese - inserting 1000 documents. first: Mad Catz Interactive Inc and last: Chinese language romanization in Hong Kong -[2018-02-13T08:24:07.868] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:24:07.968] [INFO] cheese - inserting 1000 documents. first: Leuk Res and last: Alonzo Cooper Rand -[2018-02-13T08:24:07.994] [INFO] cheese - inserting 1000 documents. first: Artur Svensson and last: Category:University of Santa Clara alumni -[2018-02-13T08:24:08.029] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:24:08.068] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:24:08.183] [INFO] cheese - batch complete in: 1.29 secs -[2018-02-13T08:24:08.272] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T08:24:08.759] [INFO] cheese - inserting 1000 documents. first: Négreville and last: October 1998 Central Texas floods -[2018-02-13T08:24:08.803] [INFO] cheese - inserting 1000 documents. first: Sclerograptis oxytypa and last: Wiehle–Reston East station (Washington Metro) -[2018-02-13T08:24:08.813] [INFO] cheese - inserting 1000 documents. first: 1986 European Championships in Athletics - Men's Triple Jump and last: GOES 3 -[2018-02-13T08:24:08.867] [INFO] cheese - inserting 1000 documents. first: Lumbatan and last: Tigervespamon -[2018-02-13T08:24:08.880] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2012 Summer Olympics – Women's 5000 metres and last: File:The Information Gleick 2011.jpg -[2018-02-13T08:24:08.887] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:24:08.907] [INFO] cheese - inserting 1000 documents. first: Northern Kashmir and last: File:Logo of the 2008 European Road Championships.jpg -[2018-02-13T08:24:08.938] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:24:08.941] [INFO] cheese - inserting 1000 documents. first: German occupation of the Netherlands and last: Category:Sierra Leonean Methodists -[2018-02-13T08:24:09.099] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:24:09.164] [INFO] cheese - batch complete in: 1.593 secs -[2018-02-13T08:24:09.282] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:24:09.297] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:24:09.322] [INFO] cheese - batch complete in: 1.676 secs -[2018-02-13T08:24:09.865] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Interfaith articles by quality/3 and last: Dnace Dance -[2018-02-13T08:24:09.924] [INFO] cheese - inserting 1000 documents. first: Dulles International Airport station (Washington Metro) and last: Alessandro Montagnoli -[2018-02-13T08:24:09.931] [INFO] cheese - inserting 1000 documents. first: Mount Enterprise, Texas and last: Lincolnia, Virginia -[2018-02-13T08:24:10.040] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:24:10.090] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:24:10.181] [INFO] cheese - inserting 1000 documents. first: Maksim Kiselyov (footballer, born 1991) and last: Kosmos 307 -[2018-02-13T08:24:10.229] [INFO] cheese - inserting 1000 documents. first: Eric Spoto and last: Hanjarak-e Bala -[2018-02-13T08:24:10.360] [INFO] cheese - inserting 1000 documents. first: Serbian ultranationalist and last: The Girl (2000 film) -[2018-02-13T08:24:10.399] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:24:10.447] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:24:10.476] [INFO] cheese - inserting 1000 documents. first: Marondera and last: Harry Potter and the Halfblood Prince -[2018-02-13T08:24:10.592] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/rlc.org and last: St james's cake -[2018-02-13T08:24:10.600] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:24:10.706] [INFO] cheese - batch complete in: 4.386 secs -[2018-02-13T08:24:10.785] [INFO] cheese - batch complete in: 1.619 secs -[2018-02-13T08:24:10.837] [INFO] cheese - batch complete in: 1.515 secs -[2018-02-13T08:24:11.087] [INFO] cheese - inserting 1000 documents. first: Template:Infobox pepper/sandbox and last: Ylang-ylang vine -[2018-02-13T08:24:11.267] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:24:11.348] [INFO] cheese - inserting 1000 documents. first: Giant snakehead fish and last: File:Palmystery.jpg -[2018-02-13T08:24:11.455] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:24:11.527] [INFO] cheese - inserting 1000 documents. first: Hanjarak and last: Wikipedia:Articles for deletion/Wiscasset Carla Pierce Day -[2018-02-13T08:24:11.574] [INFO] cheese - inserting 1000 documents. first: R. Amirtharaj and last: 2009 World Championships in Athletics – Men's 1500 metres -[2018-02-13T08:24:11.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/March 7, 2007 and last: Mesopotamian Campaign -[2018-02-13T08:24:11.693] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:24:11.797] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:24:11.885] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:24:11.952] [INFO] cheese - inserting 1000 documents. first: Category:Defunct railway stations in Paris and last: File:Norman Foster1.jpg -[2018-02-13T08:24:12.092] [INFO] cheese - inserting 1000 documents. first: Angry Red Planet and last: Scott mclellan -[2018-02-13T08:24:12.146] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:24:12.237] [INFO] cheese - inserting 1000 documents. first: Dai Suli and last: History of Andalusia -[2018-02-13T08:24:12.281] [INFO] cheese - batch complete in: 1.495 secs -[2018-02-13T08:24:12.330] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:24:12.377] [INFO] cheese - inserting 1000 documents. first: Colour of Spring and last: Eugene Venzke -[2018-02-13T08:24:12.483] [INFO] cheese - inserting 1000 documents. first: Aznar Galíndez and last: Günz -[2018-02-13T08:24:12.588] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:24:12.633] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T08:24:12.879] [INFO] cheese - inserting 1000 documents. first: Category:People from Wiveliscombe and last: Wikipedia:Version 1.0 Editorial Team/Glacier articles by quality/2 -[2018-02-13T08:24:12.897] [INFO] cheese - inserting 1000 documents. first: 秀水街 and last: Ulič -[2018-02-13T08:24:12.968] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:24:13.096] [INFO] cheese - batch complete in: 1.299 secs -[2018-02-13T08:24:13.099] [INFO] cheese - inserting 1000 documents. first: Heavy Weather (Michael Sembello song) and last: Grand Cross of Aeronautical Merit -[2018-02-13T08:24:13.222] [INFO] cheese - inserting 1000 documents. first: File:Nilkamal Plastics logo.svg and last: Jakob III von Eltz -[2018-02-13T08:24:13.224] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:24:13.273] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Turquoise Parrot and last: KL Gangster -[2018-02-13T08:24:13.306] [INFO] cheese - inserting 1000 documents. first: Le Brassus and last: Portal:Weather/On this day list/October 2 -[2018-02-13T08:24:13.346] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:24:13.388] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:24:13.498] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stuycom.net and last: File:LangelyGreenJug.jpg -[2018-02-13T08:24:13.518] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:24:13.723] [INFO] cheese - batch complete in: 1.442 secs -[2018-02-13T08:24:14.075] [INFO] cheese - inserting 1000 documents. first: VPN (disambiguation) and last: Pažiť -[2018-02-13T08:24:14.077] [INFO] cheese - inserting 1000 documents. first: Lorton, Virginia and last: Parsons, West Virginia -[2018-02-13T08:24:14.230] [INFO] cheese - inserting 1000 documents. first: Gelechia sematica and last: Architecture of Bogor -[2018-02-13T08:24:14.302] [INFO] cheese - batch complete in: 1.334 secs -[2018-02-13T08:24:14.357] [INFO] cheese - inserting 1000 documents. first: Jakob von Eltz and last: Liverpool (Tithebarn Street) railway station -[2018-02-13T08:24:14.427] [INFO] cheese - inserting 1000 documents. first: Behnu'iyeh and last: Category:LSU Tigers women's soccer venues -[2018-02-13T08:24:14.441] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:24:14.646] [INFO] cheese - batch complete in: 1.3 secs -[2018-02-13T08:24:14.689] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day list/October 3 and last: Treslon -[2018-02-13T08:24:14.777] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:24:14.857] [INFO] cheese - batch complete in: 4.15 secs -[2018-02-13T08:24:14.905] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:24:15.138] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/Assessment/Tag & Assess 2009-2010/086 and last: Wikipedia:WikiProject Spam/LinkReports/russianhockey.de -[2018-02-13T08:24:15.265] [INFO] cheese - inserting 1000 documents. first: Fiordo Baker and last: Population Reference Bureau -[2018-02-13T08:24:15.316] [INFO] cheese - inserting 1000 documents. first: Wladyslaw Kozakiewicz and last: United States v. American Trucking Ass'ns -[2018-02-13T08:24:15.381] [INFO] cheese - batch complete in: 2.285 secs -[2018-02-13T08:24:15.406] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:24:15.485] [INFO] cheese - batch complete in: 1.762 secs -[2018-02-13T08:24:15.689] [INFO] cheese - inserting 1000 documents. first: Vilayet of Manastır and last: Decretalists -[2018-02-13T08:24:15.692] [INFO] cheese - inserting 1000 documents. first: Alain Turicchia and last: NCEI -[2018-02-13T08:24:15.768] [INFO] cheese - inserting 1000 documents. first: Trigny and last: Troost Elementary -[2018-02-13T08:24:15.811] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:24:15.871] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:24:15.888] [INFO] cheese - batch complete in: 1.447 secs -[2018-02-13T08:24:16.029] [INFO] cheese - inserting 1000 documents. first: Yuan Tze-yu and last: Arundel Cricket Club -[2018-02-13T08:24:16.121] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:24:16.387] [INFO] cheese - inserting 1000 documents. first: European Centre for Antiziganism Research and last: Heciyê Cindî -[2018-02-13T08:24:16.423] [INFO] cheese - inserting 1000 documents. first: Kosmos 388 and last: File:Ram Narayan - Lalit excerpt.ogg -[2018-02-13T08:24:16.432] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:24:16.448] [INFO] cheese - inserting 1000 documents. first: Koffi Olie and last: Category:Years of the 21st century in Burma -[2018-02-13T08:24:16.488] [INFO] cheese - inserting 1000 documents. first: Decretalist and last: Display technologies -[2018-02-13T08:24:16.543] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:24:16.566] [INFO] cheese - inserting 1000 documents. first: Ponto dos Volantes and last: SubPop -[2018-02-13T08:24:16.617] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:24:16.713] [INFO] cheese - inserting 1000 documents. first: Futar and last: Najibullah Ahmadzai -[2018-02-13T08:24:16.759] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:24:16.759] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:24:16.932] [INFO] cheese - inserting 1000 documents. first: Battle of al-Qusayr (2013) and last: MS-DOS 8.0 -[2018-02-13T08:24:16.917] [INFO] cheese - batch complete in: 1.432 secs -[2018-02-13T08:24:17.098] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:24:17.108] [INFO] cheese - inserting 1000 documents. first: File:Salitre 20061111 61.JPG and last: Arunkumar Vaidya -[2018-02-13T08:24:17.326] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:24:17.361] [INFO] cheese - inserting 1000 documents. first: Thomas, West Virginia and last: Richland Center, Wisconsin -[2018-02-13T08:24:17.392] [INFO] cheese - inserting 1000 documents. first: File:Eugene England.jpg and last: Rosalinda -[2018-02-13T08:24:17.474] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:24:17.629] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/sandisk.com and last: Kuntzig -[2018-02-13T08:24:17.681] [INFO] cheese - batch complete in: 2.824 secs -[2018-02-13T08:24:17.695] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2011-05-22 and last: Jamie Raeburn -[2018-02-13T08:24:17.701] [INFO] cheese - inserting 1000 documents. first: Category:Alumni by university or college in Burma and last: Template:1920 NL Record vs. opponents/doc -[2018-02-13T08:24:17.721] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:24:17.852] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:24:17.863] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:24:17.907] [INFO] cheese - inserting 1000 documents. first: Albertskroon and last: Baby Face (film) -[2018-02-13T08:24:17.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Scripts/Script for X-chat and last: Les Jardins Christophe -[2018-02-13T08:24:18.111] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T08:24:18.127] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:24:18.165] [INFO] cheese - inserting 1000 documents. first: Wolverhampton City Council and last: Gunnar Strang -[2018-02-13T08:24:18.257] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum emarginatum and last: Nancy Mygatt -[2018-02-13T08:24:18.312] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:24:18.318] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:24:18.448] [INFO] cheese - inserting 1000 documents. first: Lagarde, Moselle and last: Tax me if you can -[2018-02-13T08:24:18.491] [INFO] cheese - inserting 1000 documents. first: Gibeşti and last: See How They Fall -[2018-02-13T08:24:18.498] [INFO] cheese - inserting 1000 documents. first: Nederlandsch Indische Spoorweg Maatschappij and last: Ranjana Baghel -[2018-02-13T08:24:18.632] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:24:18.635] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:24:18.641] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:24:19.015] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of the Duchy of Nassau and last: Anisodes rapistriaria -[2018-02-13T08:24:19.148] [INFO] cheese - inserting 1000 documents. first: Conway's law and last: Margaret Hilda Roberts Thatcher -[2018-02-13T08:24:19.200] [INFO] cheese - inserting 1000 documents. first: St Helen's Church, Wheathampstead and last: Snake plantain -[2018-02-13T08:24:19.276] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:24:19.312] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:24:19.349] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:24:19.370] [INFO] cheese - inserting 1000 documents. first: Dangerous (Cascada song) and last: Bulbophyllum physocoryphum -[2018-02-13T08:24:19.433] [INFO] cheese - inserting 1000 documents. first: WJHH and last: Maja Mihalinec -[2018-02-13T08:24:19.481] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:24:19.555] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:24:19.612] [INFO] cheese - inserting 1000 documents. first: Controlled Drinking Area and last: Category:Redirect-Class Bulgaria articles -[2018-02-13T08:24:19.689] [INFO] cheese - inserting 1000 documents. first: Vendar and last: The Veteran (book) -[2018-02-13T08:24:19.753] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:24:19.760] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:24:19.950] [INFO] cheese - inserting 1000 documents. first: Uuno Pelander and last: Wikipedia:Articles for deletion/Greg W. Locke -[2018-02-13T08:24:19.997] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ernest Oppenheimer Hall and last: Implied multiplication -[2018-02-13T08:24:20.029] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:24:20.076] [INFO] cheese - inserting 1000 documents. first: Richwood, Wisconsin and last: History of Baden-Württemberg -[2018-02-13T08:24:20.081] [INFO] cheese - inserting 1000 documents. first: 2008 FINA World Open Water Swimming Championships – Women's 5K and last: Bulbophyllum tumoriferum -[2018-02-13T08:24:20.150] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:24:20.171] [INFO] cheese - inserting 1000 documents. first: Recreation Ground (Aldershot) and last: Category:Bathylutichthyidae -[2018-02-13T08:24:20.206] [INFO] cheese - inserting 1000 documents. first: Real Unión and last: Lake of Ägeri -[2018-02-13T08:24:20.317] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:24:20.426] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:24:20.496] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Bulgaria articles and last: Părăuşani -[2018-02-13T08:24:20.499] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:24:20.520] [INFO] cheese - batch complete in: 2.839 secs -[2018-02-13T08:24:20.585] [INFO] cheese - inserting 1000 documents. first: Jim Coleman (actor) and last: Category:1879 in Europe -[2018-02-13T08:24:20.716] [INFO] cheese - inserting 1000 documents. first: 2008 Omloop der Kempen and last: Martha Canary -[2018-02-13T08:24:20.770] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:24:20.786] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:24:20.914] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:24:21.028] [INFO] cheese - inserting 1000 documents. first: Eat 17 and last: File:Herbie Mann Returns to the Village Gate.jpg -[2018-02-13T08:24:21.190] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:24:21.273] [INFO] cheese - inserting 1000 documents. first: Bulbophyllum turgidum and last: Category:Hegemonic Leagues -[2018-02-13T08:24:21.368] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:24:21.463] [INFO] cheese - inserting 1000 documents. first: Bevis Marks Congregation and last: Tim Vanhamel -[2018-02-13T08:24:21.613] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:24:21.707] [INFO] cheese - inserting 1000 documents. first: Qur'an 3:7 and last: Swedish International Development Agency -[2018-02-13T08:24:21.735] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/ETAG and last: Edmonton Grads -[2018-02-13T08:24:21.788] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:24:21.811] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/Smithsonian Institution/tasks and last: Kenta Furube -[2018-02-13T08:24:21.843] [INFO] cheese - inserting 1000 documents. first: Category:19th-century New Zealand painters and last: Gelechia machinata -[2018-02-13T08:24:21.869] [INFO] cheese - inserting 1000 documents. first: Parausani and last: Adrien Delorme -[2018-02-13T08:24:21.915] [INFO] cheese - batch complete in: 1.415 secs -[2018-02-13T08:24:21.952] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:24:22.004] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:24:22.063] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:24:22.147] [INFO] cheese - inserting 1000 documents. first: Awk programming language and last: Trifluoperazine -[2018-02-13T08:24:22.277] [INFO] cheese - inserting 1000 documents. first: Shelter Dogs and last: Category:Sofia Metro -[2018-02-13T08:24:22.279] [INFO] cheese - batch complete in: 1.758 secs -[2018-02-13T08:24:22.399] [INFO] cheese - inserting 1000 documents. first: Greatest Hits - Volume One and last: Ámfissa, Greece -[2018-02-13T08:24:22.441] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:24:22.589] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:24:22.758] [INFO] cheese - inserting 1000 documents. first: Halfway River First Nations and last: A.B.C. Whipple -[2018-02-13T08:24:22.785] [INFO] cheese - inserting 1000 documents. first: Telphusa machinata and last: Domonique Swain -[2018-02-13T08:24:22.826] [INFO] cheese - inserting 1000 documents. first: Worsley Hall and last: Church of Saints Eusebius and Polion, Vinkovci -[2018-02-13T08:24:22.964] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:24:23.030] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:24:23.054] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:24:23.199] [INFO] cheese - inserting 1000 documents. first: Vahelna and last: Template:S-Bahn Nürnberg -[2018-02-13T08:24:23.384] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Richard Harris (writer) and last: Quentin Bell -[2018-02-13T08:24:23.688] [INFO] cheese - batch complete in: 1.625 secs -[2018-02-13T08:24:23.711] [INFO] cheese - batch complete in: 1.795 secs -[2018-02-13T08:24:23.811] [INFO] cheese - inserting 1000 documents. first: Rail bank and last: Order of the dracula -[2018-02-13T08:24:23.815] [INFO] cheese - inserting 1000 documents. first: List of California Ranchos and last: Free Officers and Civilians Movement -[2018-02-13T08:24:23.961] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:24:24.049] [INFO] cheese - inserting 1000 documents. first: Weyl-Schouten tensor and last: Battle of Hanging Rock -[2018-02-13T08:24:24.155] [INFO] cheese - batch complete in: 1.713 secs -[2018-02-13T08:24:24.258] [INFO] cheese - inserting 1000 documents. first: Keur Simbara and last: JNV Pfukhro Mao -[2018-02-13T08:24:24.272] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:24:24.376] [INFO] cheese - inserting 1000 documents. first: Template:Saraperos de Saltillo roster and last: Radke -[2018-02-13T08:24:24.450] [INFO] cheese - batch complete in: 1.486 secs -[2018-02-13T08:24:24.665] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T08:24:25.054] [INFO] cheese - inserting 1000 documents. first: 1906 SF Earthquake and last: Wikipedia:Articles for deletion/Everholt -[2018-02-13T08:24:25.057] [INFO] cheese - inserting 1000 documents. first: How Much Is That Liam In The Window (90210 (TV Series)) and last: Category:Houses in Porter County, Indiana -[2018-02-13T08:24:25.272] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:24:25.290] [INFO] cheese - inserting 1000 documents. first: Peter Wherrett and last: Wikipedia:Article series boxes policy (proposed) -[2018-02-13T08:24:25.499] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Desertificationableism and last: Wikipedia:ARSN/Header -[2018-02-13T08:24:25.506] [INFO] cheese - inserting 1000 documents. first: Contrat Social and last: Long Scale -[2018-02-13T08:24:25.529] [INFO] cheese - batch complete in: 1.841 secs -[2018-02-13T08:24:25.518] [INFO] cheese - batch complete in: 1.557 secs -[2018-02-13T08:24:25.815] [INFO] cheese - inserting 1000 documents. first: File:Woman's Head - 2012.jpg and last: Eliza (1811 ship) -[2018-02-13T08:24:26.024] [INFO] cheese - batch complete in: 1.869 secs -[2018-02-13T08:24:26.160] [INFO] cheese - batch complete in: 2.448 secs -[2018-02-13T08:24:26.184] [INFO] cheese - batch complete in: 1.734 secs -[2018-02-13T08:24:26.334] [INFO] cheese - inserting 1000 documents. first: Pitt Street, Manhattan and last: List of Iraq national football team managers -[2018-02-13T08:24:26.417] [INFO] cheese - inserting 1000 documents. first: Bass horn and last: Lake District -[2018-02-13T08:24:26.620] [INFO] cheese - batch complete in: 1.955 secs -[2018-02-13T08:24:26.684] [INFO] cheese - inserting 1000 documents. first: La Puglia and last: Bhikku Bodhi -[2018-02-13T08:24:26.950] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:24:27.025] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Administrators/Administrator Accountability Policy and last: Cherniahovski District -[2018-02-13T08:24:27.200] [INFO] cheese - batch complete in: 4.921 secs -[2018-02-13T08:24:27.317] [INFO] cheese - inserting 1000 documents. first: Template:Airports in Bulgaria and last: 2011 Sligo Rovers F.C. season -[2018-02-13T08:24:27.410] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ARSN/Header/doc and last: Slovo -[2018-02-13T08:24:27.411] [INFO] cheese - batch complete in: 1.89 secs -[2018-02-13T08:24:27.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Life on Mercury and last: Sikorsky MH-53M Pave Low -[2018-02-13T08:24:27.514] [INFO] cheese - batch complete in: 1.985 secs -[2018-02-13T08:24:27.779] [INFO] cheese - batch complete in: 1.755 secs -[2018-02-13T08:24:27.861] [INFO] cheese - batch complete in: 1.676 secs -[2018-02-13T08:24:28.203] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9912 and last: Ellei Johndro -[2018-02-13T08:24:28.214] [INFO] cheese - inserting 1000 documents. first: Short Scale and last: Stevie Wright -[2018-02-13T08:24:28.387] [INFO] cheese - batch complete in: 1.767 secs -[2018-02-13T08:24:28.473] [INFO] cheese - inserting 1000 documents. first: Cherniahovskii District and last: Capital Department, Catamarca -[2018-02-13T08:24:28.510] [INFO] cheese - batch complete in: 2.35 secs -[2018-02-13T08:24:28.742] [INFO] cheese - inserting 1000 documents. first: Category:Medieval Arab astrologers and last: King Midas In Reverse -[2018-02-13T08:24:28.768] [INFO] cheese - inserting 1000 documents. first: Acronicta hasta and last: The Parliament (magazine) -[2018-02-13T08:24:28.771] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:24:28.784] [INFO] cheese - inserting 1000 documents. first: Römpp's Chemistry Lexicon and last: Environmental impact of natural gas -[2018-02-13T08:24:28.943] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:24:28.951] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:24:28.963] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T08:24:29.041] [INFO] cheese - inserting 1000 documents. first: Bosjean and last: Saint-Quentin-des-Prés -[2018-02-13T08:24:29.452] [INFO] cheese - inserting 1000 documents. first: Tagore Government College of Education and last: Whiptail Conger -[2018-02-13T08:24:29.456] [INFO] cheese - batch complete in: 2.506 secs -[2018-02-13T08:24:29.510] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:24:29.618] [INFO] cheese - inserting 1000 documents. first: Category:German newspaper publishing families and last: Prunella Margaret Rumney Illingworth -[2018-02-13T08:24:29.626] [INFO] cheese - inserting 1000 documents. first: Pravdinskii Raion and last: Newton ring -[2018-02-13T08:24:29.700] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:24:29.753] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:24:30.026] [INFO] cheese - inserting 1000 documents. first: Theoretical production ecology and last: Zäta höglund -[2018-02-13T08:24:30.053] [INFO] cheese - inserting 1000 documents. first: Lynn Hamilton (disambiguation) and last: Pionea limbalis -[2018-02-13T08:24:30.076] [INFO] cheese - inserting 1000 documents. first: Desná (Svitavy District) and last: Il mio canto libero -[2018-02-13T08:24:30.091] [INFO] cheese - inserting 1000 documents. first: Bangladeshi wedding and last: Denver Air Defense Sector -[2018-02-13T08:24:30.112] [INFO] cheese - batch complete in: 1.602 secs -[2018-02-13T08:24:30.151] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:24:30.332] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:24:30.434] [INFO] cheese - batch complete in: 1.491 secs -[2018-02-13T08:24:30.482] [INFO] cheese - inserting 1000 documents. first: Saint-Remy-en-l'Eau and last: Mauricio Gómez -[2018-02-13T08:24:30.565] [INFO] cheese - inserting 1000 documents. first: 1929 All-Big Six Conference football team and last: Elizabeth (1825 New Brunswick barque) -[2018-02-13T08:24:30.586] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:24:30.608] [INFO] cheese - inserting 1000 documents. first: Landing ship support, large and last: File:East vs. west in el sob.JPG -[2018-02-13T08:24:30.623] [INFO] cheese - inserting 1000 documents. first: Gidea Park, London, England and last: Gaston (comics) -[2018-02-13T08:24:30.678] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:24:30.798] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:24:31.007] [INFO] cheese - batch complete in: 3.807 secs -[2018-02-13T08:24:31.069] [INFO] cheese - inserting 1000 documents. first: Pseudotropheus macrophthalmus and last: Template:Little Shop of Horrors -[2018-02-13T08:24:31.085] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Vanderburgh County, Indiana and last: Guy Dupuis -[2018-02-13T08:24:31.129] [INFO] cheese - inserting 1000 documents. first: Dmitri Rybakin and last: C10H14ClNO2 -[2018-02-13T08:24:31.219] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:24:31.227] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:24:31.262] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:24:31.346] [INFO] cheese - inserting 1000 documents. first: Category:1825 establishments in Pennsylvania and last: Murder of Alison Parker and Adam Ward -[2018-02-13T08:24:31.384] [INFO] cheese - inserting 1000 documents. first: Category:Youth organizations based in Bulgaria and last: Wikipedia:Goings-on/February 24, 2008 -[2018-02-13T08:24:31.451] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:24:31.463] [INFO] cheese - inserting 1000 documents. first: Naryn River and last: Asepsis -[2018-02-13T08:24:31.464] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:24:31.700] [INFO] cheese - batch complete in: 1.588 secs -[2018-02-13T08:24:31.747] [INFO] cheese - inserting 1000 documents. first: M-130 (Michigan highway) and last: Oscar Minambres -[2018-02-13T08:24:31.865] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:24:31.933] [INFO] cheese - inserting 1000 documents. first: Template:Delfines del Carmen roster and last: The Last Witch Hunter (film) -[2018-02-13T08:24:32.014] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:24:32.154] [INFO] cheese - inserting 1000 documents. first: Million Dollar Bill (song) and last: Rikki-Tikki Tavi -[2018-02-13T08:24:32.256] [INFO] cheese - inserting 1000 documents. first: Kein Platz für Liebe and last: Portal:Physics/Selected article/July 2011 -[2018-02-13T08:24:32.259] [INFO] cheese - inserting 1000 documents. first: The Basket and last: Russian Rat Snake -[2018-02-13T08:24:32.259] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:24:32.334] [INFO] cheese - inserting 1000 documents. first: Template:Imagemap of counties in Alabama and last: Echo (steam tug) -[2018-02-13T08:24:32.422] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:24:32.451] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:24:32.525] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:24:32.793] [INFO] cheese - inserting 1000 documents. first: The Last Witch Hunter (2014 film) and last: Kim You-jeong -[2018-02-13T08:24:32.803] [INFO] cheese - inserting 1000 documents. first: Ildirans in The Saga of Seven Suns and last: Ronney Householder -[2018-02-13T08:24:32.801] [INFO] cheese - inserting 1000 documents. first: Diagnosan and last: John Fitzgibbon, 1st Earl of Clare -[2018-02-13T08:24:32.898] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:24:33.034] [INFO] cheese - batch complete in: 1.333 secs -[2018-02-13T08:24:33.049] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:24:33.177] [INFO] cheese - inserting 1000 documents. first: Pokharan, Dahanu and last: Hispano-Suiza 12Hb -[2018-02-13T08:24:33.193] [INFO] cheese - inserting 1000 documents. first: James K. Hugessen and last: Gazelle class light cruiser -[2018-02-13T08:24:33.293] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:24:33.313] [INFO] cheese - inserting 1000 documents. first: 8 Days of Christmas (song) and last: Schuch -[2018-02-13T08:24:33.319] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:24:33.378] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 May 22 and last: Shirin M. Rai -[2018-02-13T08:24:33.429] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:24:33.484] [INFO] cheese - inserting 1000 documents. first: Theory of General Relativity and last: Orthodox Church in America -[2018-02-13T08:24:33.528] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:24:33.778] [INFO] cheese - batch complete in: 2.771 secs -[2018-02-13T08:24:33.856] [INFO] cheese - inserting 1000 documents. first: Königsberg class light cruiser (1905) and last: Kucinich Amendment -[2018-02-13T08:24:33.873] [INFO] cheese - inserting 1000 documents. first: 2010 GB174 and last: C. greggii -[2018-02-13T08:24:33.918] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:24:33.931] [INFO] cheese - inserting 1000 documents. first: John Fitzgibbon, 2nd Earl of Clare and last: Contra Apion -[2018-02-13T08:24:33.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cha Dao Tea Company and last: Draft:Francis W. Sullivan -[2018-02-13T08:24:34.019] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:24:34.055] [INFO] cheese - inserting 1000 documents. first: Schulich School of Music and last: Banksia spinulosa var. cunninghamii 'Lemon Glow' -[2018-02-13T08:24:34.080] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:24:34.093] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:24:34.202] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:24:34.222] [INFO] cheese - inserting 1000 documents. first: Noosa River Ferry and last: Betty Faire -[2018-02-13T08:24:34.229] [INFO] cheese - inserting 1000 documents. first: Jacques Chevallier and last: File:Anetamerkourial.jpg -[2018-02-13T08:24:34.318] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:24:34.349] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:24:34.439] [INFO] cheese - inserting 1000 documents. first: Hospital warehouse and last: Harvey (2013 film) -[2018-02-13T08:24:34.522] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:24:34.538] [INFO] cheese - inserting 1000 documents. first: All I Want Is U and last: Philippus Fruytiers -[2018-02-13T08:24:34.586] [INFO] cheese - inserting 1000 documents. first: Draft:Frank A. Tirrell, Jr. and last: TeRina Keenan -[2018-02-13T08:24:34.595] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:24:34.662] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:24:34.894] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Agentsoo (archive) and last: Innenstadt (Frankfurt am Main) -[2018-02-13T08:24:34.904] [INFO] cheese - inserting 1000 documents. first: Index cards and last: Robert gall -[2018-02-13T08:24:35.037] [INFO] cheese - inserting 1000 documents. first: History of the United Kingdom (1945–2000) and last: Amoron'i Mania Region -[2018-02-13T08:24:35.038] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:24:35.058] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:24:35.147] [INFO] cheese - inserting 1000 documents. first: White Elephant (song) and last: Virtual CD-ROM Control Panel -[2018-02-13T08:24:35.172] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:24:35.209] [INFO] cheese - inserting 1000 documents. first: Leidesia procumbens and last: Wolf Street (Ljubljana) -[2018-02-13T08:24:35.356] [INFO] cheese - inserting 1000 documents. first: If It Kills Me and last: Star Hotel riot -[2018-02-13T08:24:35.363] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:24:35.402] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:24:35.480] [INFO] cheese - inserting 1000 documents. first: List of Hawaii Five-0 (2010 TV series) characters and last: Draft:John S. McDonald -[2018-02-13T08:24:35.545] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:24:35.604] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:24:35.941] [INFO] cheese - inserting 1000 documents. first: Joseph Cummings and last: Lipnur LT-200 -[2018-02-13T08:24:35.983] [INFO] cheese - inserting 1000 documents. first: Bristol Jupiter and last: Choiseul -[2018-02-13T08:24:35.989] [INFO] cheese - inserting 1000 documents. first: File:Photonics Spectra Logo.gif and last: Harlingtox Angel Divine -[2018-02-13T08:24:35.995] [INFO] cheese - inserting 1000 documents. first: Draft:Nelson Sharpe and last: Category:19th-century Italian dancers -[2018-02-13T08:24:35.995] [INFO] cheese - inserting 1000 documents. first: Centro de Estudos e Pesquisas Ambientais and last: Senegalese Solidarity Party -[2018-02-13T08:24:36.026] [INFO] cheese - inserting 1000 documents. first: Rosina Bonavota and last: Microglanis leptostriatus -[2018-02-13T08:24:36.039] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:24:36.061] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:24:36.160] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:24:36.201] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:24:36.277] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Palestine-related articles by quality/13 and last: File:Timothy-Taylor-Logo.jpg -[2018-02-13T08:24:36.287] [INFO] cheese - inserting 1000 documents. first: Mario Griguol and last: Category:Albania–Italy relations -[2018-02-13T08:24:36.290] [INFO] cheese - batch complete in: 2.511 secs -[2018-02-13T08:24:36.292] [INFO] cheese - batch complete in: 1.254 secs -[2018-02-13T08:24:36.436] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:24:36.448] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:24:36.802] [INFO] cheese - inserting 1000 documents. first: File:Banksia burdettii.jpg and last: FC Metallurg Olmaliq -[2018-02-13T08:24:36.826] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected picture/9, 2008 and last: Strâmba River (Cibin) -[2018-02-13T08:24:36.852] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:24:36.855] [INFO] cheese - inserting 1000 documents. first: EC 4.3.1.3 and last: Josef Kramolín -[2018-02-13T08:24:36.929] [INFO] cheese - inserting 1000 documents. first: Raymundus Martini and last: Brent Hawkins -[2018-02-13T08:24:36.940] [INFO] cheese - inserting 1000 documents. first: Žichlínek and last: I. Periasamy -[2018-02-13T08:24:36.961] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:24:36.965] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:24:36.987] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:24:37.070] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:24:37.113] [INFO] cheese - inserting 1000 documents. first: Category:Education in Ethiopia and last: Safety standards -[2018-02-13T08:24:37.207] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:24:37.262] [INFO] cheese - inserting 1000 documents. first: Zoltan Mechlovits and last: Wikipedia:WikiProject Spam/LinkReports/musiquemachine.com -[2018-02-13T08:24:37.305] [INFO] cheese - inserting 1000 documents. first: Acmariu River and last: Sayeed Khokon -[2018-02-13T08:24:37.330] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:24:37.422] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:24:37.493] [INFO] cheese - inserting 1000 documents. first: Portal:Indianapolis/On this day/August 12 and last: Taiko master -[2018-02-13T08:24:37.523] [INFO] cheese - inserting 1000 documents. first: Drunk Last Night and last: Acidalia carmenta -[2018-02-13T08:24:37.535] [INFO] cheese - inserting 1000 documents. first: Ulmus glabra 'Gittisham' and last: If I Had Words -[2018-02-13T08:24:37.591] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:24:37.623] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:24:37.635] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:24:37.698] [INFO] cheese - inserting 1000 documents. first: Cheslea fc and last: Hollyoaks: The Morning After The Night Before -[2018-02-13T08:24:37.816] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:24:38.066] [INFO] cheese - inserting 1000 documents. first: Antoine Joseph Wiertz and last: DMR -[2018-02-13T08:24:38.078] [INFO] cheese - inserting 1000 documents. first: Penn's Woods and last: Category:Books by publisher country -[2018-02-13T08:24:38.132] [INFO] cheese - inserting 1000 documents. first: Hessian soldiers and last: Mammal Club -[2018-02-13T08:24:38.178] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:24:38.217] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:24:38.275] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:24:38.372] [INFO] cheese - inserting 1000 documents. first: File:Agony Coverart.jpg and last: Cal McCombs -[2018-02-13T08:24:38.473] [INFO] cheese - inserting 1000 documents. first: Category:Turkish-language television programming and last: Madan-e Gol Gohar -[2018-02-13T08:24:38.494] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:24:38.515] [INFO] cheese - inserting 1000 documents. first: It's Only A Theory and last: Panchayati Raj -[2018-02-13T08:24:38.533] [INFO] cheese - inserting 1000 documents. first: Lucky Luciano and last: Rievaulx Abbey -[2018-02-13T08:24:38.549] [INFO] cheese - inserting 1000 documents. first: Functional movement and last: Sainte Anne de Bellevue -[2018-02-13T08:24:38.641] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:24:38.689] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:24:38.787] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:24:38.800] [INFO] cheese - batch complete in: 2.51 secs -[2018-02-13T08:24:38.981] [INFO] cheese - inserting 1000 documents. first: Aslam Khan (cricketer, born 1935) and last: Quercus afghanistanensis -[2018-02-13T08:24:39.007] [INFO] cheese - inserting 1000 documents. first: File:ConfessionsofaCompulsiveEntrepreneur.png and last: Antonov Standard-1 -[2018-02-13T08:24:39.075] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:24:39.108] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:24:39.260] [INFO] cheese - inserting 1000 documents. first: Dengaku and last: Taroona -[2018-02-13T08:24:39.263] [INFO] cheese - inserting 1000 documents. first: Category:Best Drama Actor Golden Globe (television) winners and last: Portal:Textile arts/Selected biography/4 -[2018-02-13T08:24:39.335] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:24:39.398] [INFO] cheese - inserting 1000 documents. first: Best of Geri and last: Ymitós, Greece -[2018-02-13T08:24:39.400] [INFO] cheese - inserting 1000 documents. first: Namwater and last: DWBG-TV -[2018-02-13T08:24:39.469] [INFO] cheese - batch complete in: 1.29 secs -[2018-02-13T08:24:39.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rizzosports.com and last: Skrīveri Municipality -[2018-02-13T08:24:39.555] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:24:39.575] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:24:39.721] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:24:39.920] [INFO] cheese - inserting 1000 documents. first: File:BARFC Club Crest.jpg and last: Jeon Yeongeun -[2018-02-13T08:24:39.951] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:24:39.955] [INFO] cheese - inserting 1000 documents. first: Antonov Standard-2 and last: Last Chance To See -[2018-02-13T08:24:40.118] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:24:40.236] [INFO] cheese - inserting 1000 documents. first: Hardaway Site and last: Linn-Kristin Riegelhuth Koren -[2018-02-13T08:24:40.291] [INFO] cheese - inserting 1000 documents. first: Ymittós, Greece and last: Joseph Calleja -[2018-02-13T08:24:40.303] [INFO] cheese - inserting 1000 documents. first: Juha Toivonen and last: Bloody, but Unbowed (disambiguation) -[2018-02-13T08:24:40.335] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:24:40.412] [INFO] cheese - inserting 1000 documents. first: Kolinec and last: Texas Reds Festival -[2018-02-13T08:24:40.447] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:24:40.417] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:24:40.654] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:24:40.761] [INFO] cheese - inserting 1000 documents. first: Cecil Walter Hardy Beaton and last: Green Lantern (Six Flags Great Adventure) -[2018-02-13T08:24:40.873] [INFO] cheese - inserting 1000 documents. first: BS II and last: Wikipedia:Teahouse/Questions/Archive 380 -[2018-02-13T08:24:40.894] [INFO] cheese - batch complete in: 1.424 secs -[2018-02-13T08:24:40.973] [INFO] cheese - inserting 1000 documents. first: Mon-Fayette Expressway and last: File:2011 FIL Women's U-19 World Lacrosse Championship Logo.png -[2018-02-13T08:24:41.046] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:24:41.196] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:24:41.299] [INFO] cheese - inserting 1000 documents. first: Self-harmer and last: Category:People from West Drayton -[2018-02-13T08:24:41.317] [INFO] cheese - inserting 1000 documents. first: Portal:Ohio/Featured picture and last: Tabula cebetis -[2018-02-13T08:24:41.332] [INFO] cheese - inserting 1000 documents. first: Imperial Forest Research Institute and College and last: Wherever You Are Tonight -[2018-02-13T08:24:41.350] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:24:41.427] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:24:41.493] [INFO] cheese - batch complete in: 1.158 secs -[2018-02-13T08:24:41.503] [INFO] cheese - inserting 1000 documents. first: Dutch-Jewish and last: Ratikant Kanungo -[2018-02-13T08:24:41.610] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:24:41.710] [INFO] cheese - inserting 1000 documents. first: Rhazes and last: Reklaw, Texas -[2018-02-13T08:24:41.711] [INFO] cheese - inserting 1000 documents. first: Wikipedia:CITOID and last: Squib case -[2018-02-13T08:24:41.815] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:24:41.909] [INFO] cheese - inserting 1000 documents. first: Karl I Ludwig, Elector Palatine and last: Operation Little Switch -[2018-02-13T08:24:41.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/whaleofatime.org and last: Kelyn Rowe -[2018-02-13T08:24:41.917] [INFO] cheese - batch complete in: 3.117 secs -[2018-02-13T08:24:42.037] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:24:42.047] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:24:42.089] [INFO] cheese - inserting 1000 documents. first: Goffin's Corella and last: দুর্গা পূজা -[2018-02-13T08:24:42.153] [INFO] cheese - inserting 1000 documents. first: File:Where in world is osama.jpg and last: WTTM -[2018-02-13T08:24:42.234] [INFO] cheese - inserting 1000 documents. first: Humanitarian Overseas Service Medal and last: Leo Nobile -[2018-02-13T08:24:42.329] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:24:42.384] [INFO] cheese - inserting 1000 documents. first: Category:Mississippian geologic formations and last: Genadish -[2018-02-13T08:24:42.406] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:24:42.510] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:24:42.602] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:24:42.955] [INFO] cheese - inserting 1000 documents. first: Squib Case and last: Alan Jones (cricketer) -[2018-02-13T08:24:43.093] [INFO] cheese - inserting 1000 documents. first: KDI School of Public Policy and Management and last: Mi Ricordo Anna Frank -[2018-02-13T08:24:43.151] [INFO] cheese - inserting 1000 documents. first: Ganarish and last: MOS:REDIR -[2018-02-13T08:24:43.188] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:24:43.256] [INFO] cheese - inserting 1000 documents. first: Mieczysława Ćwiklińska and last: August Zaba -[2018-02-13T08:24:43.268] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T08:24:43.286] [INFO] cheese - inserting 1000 documents. first: Tied arch bridge and last: Wikipedia:WikiProject Spam/LinkReports/georadary.pl -[2018-02-13T08:24:43.292] [INFO] cheese - inserting 1000 documents. first: Minneapolis/duluth corridor and last: Ross McFarlane (footballer) -[2018-02-13T08:24:43.304] [INFO] cheese - inserting 1000 documents. first: The Last Revelation and last: List of mayors of Penticton -[2018-02-13T08:24:43.329] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:24:43.410] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:24:43.422] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:24:43.434] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:24:43.463] [INFO] cheese - batch complete in: 1.416 secs -[2018-02-13T08:24:43.739] [INFO] cheese - inserting 1000 documents. first: Island Climate Update tropical cyclone outlook and last: New Jersey gubernatorial election, 1943 -[2018-02-13T08:24:43.838] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:24:43.961] [INFO] cheese - inserting 1000 documents. first: La Trobe Secondary College and last: Groff (surname) -[2018-02-13T08:24:44.010] [INFO] cheese - inserting 1000 documents. first: Kurt van Raefelghem and last: Wikipedia:Possibly unfree files/2011 May 29 -[2018-02-13T08:24:44.013] [INFO] cheese - inserting 1000 documents. first: Existentially quantified and last: Triceps skin fold -[2018-02-13T08:24:44.029] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:24:44.215] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:24:44.282] [INFO] cheese - inserting 1000 documents. first: Your Move (album) and last: Roy Clark (UK) -[2018-02-13T08:24:44.289] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:24:44.303] [INFO] cheese - inserting 1000 documents. first: W. J. Holland and last: Quonset Naval Air Station -[2018-02-13T08:24:44.406] [INFO] cheese - inserting 1000 documents. first: Yan Qing and last: M.k.s. system -[2018-02-13T08:24:44.452] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:24:44.457] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:24:44.553] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:24:44.694] [INFO] cheese - inserting 1000 documents. first: Sheliak in fiction and last: Exposed.su -[2018-02-13T08:24:44.801] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:24:44.804] [INFO] cheese - inserting 1000 documents. first: EC 5.2.1.1 and last: Category:2004 Mid-American Conference baseball season -[2018-02-13T08:24:44.933] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:24:44.956] [INFO] cheese - inserting 1000 documents. first: Upper arm circumference and last: Combination underwear -[2018-02-13T08:24:44.964] [INFO] cheese - inserting 1000 documents. first: Troup, Texas and last: Electrical connector -[2018-02-13T08:24:45.065] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:24:45.151] [INFO] cheese - inserting 1000 documents. first: If I Could (Wiley song) and last: Robert Auld (British Army officer) -[2018-02-13T08:24:45.165] [INFO] cheese - inserting 1000 documents. first: Yerong Creek and last: Andante Cantabile e Presto Agitato in B (Mendelssohn) -[2018-02-13T08:24:45.169] [INFO] cheese - batch complete in: 3.252 secs -[2018-02-13T08:24:45.179] [INFO] cheese - inserting 1000 documents. first: Karolyn Kirby and last: Office de Radiodiffusion Television du Mali -[2018-02-13T08:24:45.284] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:24:45.307] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:24:45.352] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:24:45.440] [INFO] cheese - inserting 1000 documents. first: John A. Wickham Jr. and last: Template:Indiana Pacers roster -[2018-02-13T08:24:45.556] [INFO] cheese - inserting 1000 documents. first: Journal of Crohn's and Colitis and last: Category:Cambrian portal FA-class Natural world articles -[2018-02-13T08:24:45.569] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:24:45.699] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:24:45.761] [INFO] cheese - inserting 1000 documents. first: 190th (2nd Durham Light Infantry) Brigade and last: Nonuple -[2018-02-13T08:24:45.940] [INFO] cheese - inserting 1000 documents. first: I'm from Arkansas and last: Sir William McMahon, GCMG, CH -[2018-02-13T08:24:45.952] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:24:46.073] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:24:46.237] [INFO] cheese - inserting 1000 documents. first: Mary Isobel Catherine Bernadette O'Brien and last: Michael Saward (British Army officer) -[2018-02-13T08:24:46.243] [INFO] cheese - inserting 1000 documents. first: Downtown Camden, New Jersey and last: Cayman Islands–United States relations -[2018-02-13T08:24:46.394] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:24:46.452] [INFO] cheese - inserting 1000 documents. first: Backstretch and last: Palais Strousberg -[2018-02-13T08:24:46.462] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:24:46.678] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:24:46.705] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kachin Church and last: 4th earl of clarendon -[2018-02-13T08:24:46.762] [INFO] cheese - inserting 1000 documents. first: Damien Borel and last: Felipe Francisco Macedo -[2018-02-13T08:24:46.932] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:24:46.957] [INFO] cheese - inserting 1000 documents. first: Decuple and last: Christine Brehmer -[2018-02-13T08:24:47.047] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:24:47.108] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:24:47.227] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Christos Kotsakis and last: Rabbi Zamir Cohen -[2018-02-13T08:24:47.295] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:24:47.335] [INFO] cheese - inserting 1000 documents. first: Lungs and last: Salvador Artigas -[2018-02-13T08:24:47.440] [INFO] cheese - inserting 1000 documents. first: File:Ren Höek.jpg and last: Georges Gueril -[2018-02-13T08:24:47.507] [INFO] cheese - inserting 1000 documents. first: Connector (mathematics) and last: Paraconsistent logics -[2018-02-13T08:24:47.548] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:24:47.565] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:24:47.660] [INFO] cheese - inserting 1000 documents. first: Komádi and last: Wikipedia:Requests for comment/Seabhcan -[2018-02-13T08:24:47.754] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:24:47.806] [INFO] cheese - batch complete in: 2.637 secs -[2018-02-13T08:24:48.043] [INFO] cheese - inserting 1000 documents. first: File:Cover of the novel Aurora by Kim Stanley Robinson.jpg and last: History of Burroughs Corporation -[2018-02-13T08:24:48.053] [INFO] cheese - inserting 1000 documents. first: Stara Pazova and last: Piperacillin sodium -[2018-02-13T08:24:48.184] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T08:24:48.221] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T08:24:48.253] [INFO] cheese - inserting 1000 documents. first: ARTES and last: Lamkani -[2018-02-13T08:24:48.292] [INFO] cheese - inserting 1000 documents. first: Bennet High School and last: Pternistis clappertoni -[2018-02-13T08:24:48.362] [INFO] cheese - inserting 1000 documents. first: Jacobson semisimple ring and last: Category:Buenos Aires Province geography stubs -[2018-02-13T08:24:48.425] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:24:48.489] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:24:48.518] [INFO] cheese - inserting 1000 documents. first: Lama (surname) and last: Electronic Café International (ECI) -[2018-02-13T08:24:48.603] [INFO] cheese - inserting 1000 documents. first: Gruffudd ab yr Ynad Coch and last: Superior vertebral notch -[2018-02-13T08:24:48.627] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:24:48.704] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:24:48.786] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:24:49.280] [INFO] cheese - inserting 1000 documents. first: Isabel of Portugal and last: Dymitriads -[2018-02-13T08:24:49.287] [INFO] cheese - inserting 1000 documents. first: Gelechia aerobatis and last: Oliver Sacks Foundation -[2018-02-13T08:24:49.398] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:24:49.449] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:24:49.532] [INFO] cheese - inserting 1000 documents. first: Pternistis erckelii and last: Wikipedia:Categories for discussion/Log/2011 July 3 -[2018-02-13T08:24:49.556] [INFO] cheese - inserting 1000 documents. first: File:LotarSiewerdt.jpg and last: St. Brieuc Airport -[2018-02-13T08:24:49.582] [INFO] cheese - inserting 1000 documents. first: Highway 346 and last: 2007–08 CE Lleida Bàsquet season -[2018-02-13T08:24:49.804] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:24:49.808] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T08:24:49.826] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:24:50.056] [INFO] cheese - inserting 1000 documents. first: 2013-14 New York Islanders season and last: Monika Meyer (athlete) -[2018-02-13T08:24:50.168] [INFO] cheese - inserting 1000 documents. first: Portal:Utah/Selected article/1 and last: Portal:China/Archive -[2018-02-13T08:24:50.202] [INFO] cheese - inserting 1000 documents. first: Quercus brevipedunculata and last: Charlie Grainger -[2018-02-13T08:24:50.209] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:24:50.330] [INFO] cheese - batch complete in: 1.626 secs -[2018-02-13T08:24:50.334] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:24:50.506] [INFO] cheese - inserting 1000 documents. first: Bronto Bright Pebbles and last: Sony Ericsson C510 -[2018-02-13T08:24:50.539] [INFO] cheese - inserting 1000 documents. first: Fansub and last: Heinrich Schutz -[2018-02-13T08:24:50.738] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:24:50.754] [INFO] cheese - inserting 1000 documents. first: File:The Beverly Hillbillies.jpg and last: I'm as mad as hell, and I'm not going to take this anymore -[2018-02-13T08:24:50.765] [INFO] cheese - batch complete in: 2.956 secs -[2018-02-13T08:24:50.801] [INFO] cheese - inserting 1000 documents. first: The Dukes of Hazzard (movie) and last: Minting error -[2018-02-13T08:24:50.951] [INFO] cheese - inserting 1000 documents. first: The Diary of Anne Frank (1987 miniseries) and last: File:New Year Baby Poster.jpeg -[2018-02-13T08:24:50.968] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:24:50.986] [INFO] cheese - batch complete in: 1.536 secs -[2018-02-13T08:24:51.154] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:24:51.211] [INFO] cheese - inserting 1000 documents. first: Dimydarian oyster and last: Lucas Campana -[2018-02-13T08:24:51.275] [INFO] cheese - inserting 1000 documents. first: Mustoe House and last: Samuel Daskam -[2018-02-13T08:24:51.360] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:24:51.427] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:24:51.489] [INFO] cheese - inserting 1000 documents. first: Gerry Blaauw and last: Olivia Barber Winters -[2018-02-13T08:24:51.634] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:24:51.669] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DJ Panic and last: File:Pussbootpretend.jpg -[2018-02-13T08:24:51.767] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:24:51.847] [INFO] cheese - inserting 1000 documents. first: Silvia Solar and last: El Morro or Port San Juan Light -[2018-02-13T08:24:51.914] [INFO] cheese - inserting 1000 documents. first: Walter John Raymond and last: Xu Feng-xiong -[2018-02-13T08:24:51.920] [INFO] cheese - inserting 1000 documents. first: Oxi and last: Category:Years in Brazilian association football navigational boxes -[2018-02-13T08:24:51.937] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2015-09-04 and last: Annemarie Davidson -[2018-02-13T08:24:51.955] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:24:52.011] [INFO] cheese - inserting 1000 documents. first: Birger Sjoberg and last: Mara Region -[2018-02-13T08:24:52.020] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:24:52.057] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:24:52.076] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:24:52.216] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:24:52.351] [INFO] cheese - inserting 1000 documents. first: Set This Circus Down and last: UCAS points -[2018-02-13T08:24:52.393] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:24:52.462] [INFO] cheese - inserting 1000 documents. first: Quercetin-3-rhamnoside and last: Cascade waterfalls -[2018-02-13T08:24:52.564] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:24:52.595] [INFO] cheese - inserting 1000 documents. first: Category:1205 in Europe and last: Wikipedia:Articles for deletion/To Know That You're Alive -[2018-02-13T08:24:52.677] [INFO] cheese - inserting 1000 documents. first: Family Circle Cup and last: Category:Houses in Waller County, Texas -[2018-02-13T08:24:52.696] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dewayne jackson and last: Night Convoy -[2018-02-13T08:24:52.748] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:24:52.806] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:24:52.861] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:24:52.882] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Latinam-Zine and last: Intentional forgetting -[2018-02-13T08:24:52.957] [INFO] cheese - inserting 1000 documents. first: Antiphonitis and last: Battle of Dresden -[2018-02-13T08:24:53.067] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:24:53.126] [INFO] cheese - inserting 1000 documents. first: Pwani Region and last: Bahamani -[2018-02-13T08:24:53.193] [INFO] cheese - batch complete in: 2.428 secs -[2018-02-13T08:24:53.231] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian anti-abortion activists and last: Invasion of Serbian Krajina -[2018-02-13T08:24:53.332] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:24:53.363] [INFO] cheese - inserting 1000 documents. first: Cascade waterfall and last: Jersey Surf -[2018-02-13T08:24:53.396] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:24:53.523] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:24:53.560] [INFO] cheese - inserting 1000 documents. first: Category:1397 in Europe and last: Agriculture in Chad -[2018-02-13T08:24:53.646] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/richcelebs.com and last: Category:Wikipedia requested photographs in Tate County, Mississippi -[2018-02-13T08:24:53.669] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:24:53.687] [INFO] cheese - inserting 1000 documents. first: Lawless (surname) and last: Template:Serbian White Eagles managers -[2018-02-13T08:24:53.710] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:24:53.877] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:24:53.924] [INFO] cheese - inserting 1000 documents. first: Lexico-grammar and last: File:Maize Craze Logo.jpg -[2018-02-13T08:24:54.048] [INFO] cheese - inserting 1000 documents. first: Daggy Dearest / Dag's List and last: Shaken and Stirred: The David Arnold James Bond Project -[2018-02-13T08:24:54.056] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:24:54.087] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:24:54.257] [INFO] cheese - inserting 1000 documents. first: Gentry Center and last: Category:Peterborough, Ontario -[2018-02-13T08:24:54.286] [INFO] cheese - inserting 1000 documents. first: Why Not Sneeze, Rrose Sélavy? and last: 3,5,7-trihydroxy-2-(4-hydroxy-3-methoxyphenyl)chromen-4-one -[2018-02-13T08:24:54.315] [INFO] cheese - inserting 1000 documents. first: File:Jaathre Audio Cover.jpg and last: Bagdi Raja -[2018-02-13T08:24:54.331] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:24:54.364] [INFO] cheese - inserting 1000 documents. first: Karol Chodkiewicz and last: Category:Ricochet (band) albums -[2018-02-13T08:24:54.374] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:24:54.397] [INFO] cheese - inserting 1000 documents. first: Aliaksandr Hukau and last: Ewing Galloway -[2018-02-13T08:24:54.404] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:24:54.479] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:24:54.486] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:24:54.621] [INFO] cheese - inserting 1000 documents. first: Dosh and last: Luxury Lounge (The Sopranos episode) -[2018-02-13T08:24:54.673] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:24:54.820] [INFO] cheese - inserting 1000 documents. first: Riley Milne and last: File:Union Street Fire, Borough.jpg -[2018-02-13T08:24:54.855] [INFO] cheese - inserting 1000 documents. first: Scrobipalpa bahai and last: That We Can Play -[2018-02-13T08:24:54.862] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:24:54.888] [INFO] cheese - inserting 1000 documents. first: File:KEmodel.jpg and last: Telmo Zarraonaindía -[2018-02-13T08:24:54.933] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:24:54.943] [INFO] cheese - inserting 1000 documents. first: Battle of Eckmühl and last: Bill Cosby -[2018-02-13T08:24:54.972] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:24:55.320] [INFO] cheese - inserting 1000 documents. first: Strobe register and last: NAVAIR -[2018-02-13T08:24:55.318] [INFO] cheese - batch complete in: 2.125 secs -[2018-02-13T08:24:55.415] [INFO] cheese - inserting 1000 documents. first: Johnny Cakes (The Sopranos episode) and last: Richardus Armachanus -[2018-02-13T08:24:55.529] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:24:55.618] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:24:55.801] [INFO] cheese - inserting 1000 documents. first: Category:1963 establishments in Arkansas and last: Category:Eurovision Song Contest 1984 -[2018-02-13T08:24:55.918] [INFO] cheese - inserting 1000 documents. first: Antoni Bazaniak and last: Tenax II -[2018-02-13T08:24:55.963] [INFO] cheese - batch complete in: 1.484 secs -[2018-02-13T08:24:56.004] [INFO] cheese - inserting 1000 documents. first: Matthew Ferchius and last: Wikipedia:Articles for deletion/DVD releases for 2008 -[2018-02-13T08:24:56.055] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:24:56.118] [INFO] cheese - inserting 1000 documents. first: K215AF and last: Wikipedia:WikiProject Spam/LinkReports/nalandapharmacy.ac.in -[2018-02-13T08:24:56.160] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:24:56.239] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:24:56.554] [INFO] cheese - inserting 1000 documents. first: Moravka and last: Enjoy Yourself (It's Later Than You Think) -[2018-02-13T08:24:56.598] [INFO] cheese - inserting 1000 documents. first: Flipnote Memo and last: Category:FL-Class maritime warfare articles -[2018-02-13T08:24:56.636] [INFO] cheese - inserting 1000 documents. first: Face-to-face discourse and last: A/b testing -[2018-02-13T08:24:56.734] [INFO] cheese - inserting 1000 documents. first: Naval Air Systems Command and last: Somophyllin-crt -[2018-02-13T08:24:56.775] [INFO] cheese - batch complete in: 2.719 secs -[2018-02-13T08:24:56.794] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:24:56.840] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:24:56.859] [INFO] cheese - inserting 1000 documents. first: Cow-Cow Boogie and last: Waiau, New Zealand -[2018-02-13T08:24:56.922] [INFO] cheese - batch complete in: 1.393 secs -[2018-02-13T08:24:56.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/nalandapharmacy.ac.in and last: European Christian Book Store Journal -[2018-02-13T08:24:57.002] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:24:57.165] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:24:57.204] [INFO] cheese - inserting 1000 documents. first: Daisy Miller (film) and last: Glacier forelands -[2018-02-13T08:24:57.309] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:24:57.691] [INFO] cheese - inserting 1000 documents. first: Enter the Guardsman and last: Wikipedia:Sockpuppet investigations/Hunghim/Archive -[2018-02-13T08:24:57.714] [INFO] cheese - inserting 1000 documents. first: The Heads of the Proposals and last: Read Now With Power Up! -[2018-02-13T08:24:57.869] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Medieval warfare articles and last: 3D Systems Corp. -[2018-02-13T08:24:57.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Blackthorn Asylum and last: 2009 European GP2 Race -[2018-02-13T08:24:57.904] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:24:57.927] [INFO] cheese - inserting 1000 documents. first: PLOS and last: Foreign relations of Macedonia -[2018-02-13T08:24:57.927] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:24:58.031] [INFO] cheese - inserting 1000 documents. first: ECBJ and last: Frederick William Matthiessen -[2018-02-13T08:24:58.032] [INFO] cheese - inserting 1000 documents. first: Alex G. Spanos Center and last: Ana María Martínez -[2018-02-13T08:24:58.047] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T08:24:58.057] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:24:58.141] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:24:58.171] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:24:58.335] [INFO] cheese - batch complete in: 3.017 secs -[2018-02-13T08:24:58.483] [INFO] cheese - inserting 1000 documents. first: Kay Burdekin and last: File:CTConventionCenter.jpg -[2018-02-13T08:24:58.631] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:24:58.739] [INFO] cheese - inserting 1000 documents. first: Russia national beach handball team and last: British Non-Ferrous Metals Research Association -[2018-02-13T08:24:58.882] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:24:58.912] [INFO] cheese - inserting 1000 documents. first: Dmitriyevsky (rural locality) and last: James John Van Alen -[2018-02-13T08:24:58.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Proghazalsrinivas/Archive and last: File:Rocca Massima-Stemma.png -[2018-02-13T08:24:58.951] [INFO] cheese - inserting 1000 documents. first: 2009 German GP2 Race and last: Wikipedia:Articles for deletion/D.A.D.O. -[2018-02-13T08:24:58.960] [INFO] cheese - inserting 1000 documents. first: Category:1913 establishments in Kenya and last: In the Shadow of Fear -[2018-02-13T08:24:59.054] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:24:59.100] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:24:59.163] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:24:59.193] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:24:59.315] [INFO] cheese - inserting 1000 documents. first: Category:Cynical Wikipedians and last: Field Marshal (Pakistan) -[2018-02-13T08:24:59.432] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T08:24:59.494] [INFO] cheese - inserting 1000 documents. first: 1st seimas and last: Kartellverband -[2018-02-13T08:24:59.667] [INFO] cheese - batch complete in: 1.036 secs -[2018-02-13T08:24:59.787] [INFO] cheese - inserting 1000 documents. first: University of Nevada-Reno and last: Wikipedia:Articles for deletion/Deal or No Deal, Series 1 (UK) -[2018-02-13T08:24:59.814] [INFO] cheese - inserting 1000 documents. first: Robail and last: Light Up the World (song) -[2018-02-13T08:24:59.887] [INFO] cheese - inserting 1000 documents. first: Jim White (basketball) and last: Category:Marine steam propulsion -[2018-02-13T08:24:59.908] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:25:00.063] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:25:00.070] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:25:00.082] [INFO] cheese - inserting 1000 documents. first: Mirnel Sadović and last: File:Equivalent incident wave and load.svg -[2018-02-13T08:25:00.197] [INFO] cheese - inserting 1000 documents. first: Mamadee and last: Should've Known Better (disambiguation) -[2018-02-13T08:25:00.240] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:25:00.530] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T08:25:00.608] [INFO] cheese - inserting 1000 documents. first: Sharon, Middlesex County, Ontario and last: Ius civile -[2018-02-13T08:25:00.704] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:25:00.750] [INFO] cheese - inserting 1000 documents. first: Chapelle Sainte-Agathe and last: Friedrich-Wilhelm Wichmann -[2018-02-13T08:25:00.799] [INFO] cheese - inserting 1000 documents. first: Freeze frame and last: Dr ken -[2018-02-13T08:25:00.821] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:25:00.873] [INFO] cheese - inserting 1000 documents. first: Office of Legal Policy and last: Wikipedia:Reference desk/Archives/Humanities/2006 November 19 -[2018-02-13T08:25:00.906] [INFO] cheese - batch complete in: 1.474 secs -[2018-02-13T08:25:00.991] [INFO] cheese - inserting 1000 documents. first: EV9D9 and last: Redmarbled lizardfish -[2018-02-13T08:25:01.045] [INFO] cheese - inserting 1000 documents. first: Veinticinco de Mayo, Uruguay and last: Chacras de Dolores -[2018-02-13T08:25:01.054] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:25:01.058] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:25:01.180] [INFO] cheese - inserting 1000 documents. first: Mori no Tonto Tachi and last: Wikipedia:Today's articles for improvement/2013/30 -[2018-02-13T08:25:01.282] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:25:01.386] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:25:01.424] [INFO] cheese - inserting 1000 documents. first: Ius gentium and last: Rise of Darkrai -[2018-02-13T08:25:01.530] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:25:01.584] [INFO] cheese - inserting 1000 documents. first: The Jabberwock (club) and last: Party Time (album by The Heptones) -[2018-02-13T08:25:01.740] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:25:01.936] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (Arabic)/Articles needing Arabic Script and last: File:Bloody Knife.jpg -[2018-02-13T08:25:02.080] [INFO] cheese - inserting 1000 documents. first: Alberta Highway 795 and last: Heredity and environment -[2018-02-13T08:25:02.106] [INFO] cheese - inserting 1000 documents. first: The light on the hill and last: Sir George Bullough -[2018-02-13T08:25:02.140] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:25:02.286] [INFO] cheese - inserting 1000 documents. first: Melian and last: Love and Rockets -[2018-02-13T08:25:02.362] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:25:02.375] [INFO] cheese - inserting 1000 documents. first: Minor Ignacio López and last: Tim Osswald -[2018-02-13T08:25:02.387] [INFO] cheese - batch complete in: 1.333 secs -[2018-02-13T08:25:02.422] [INFO] cheese - inserting 1000 documents. first: Strict determinism and last: Wikipedia:Sockpuppet investigations/Judenwatch -[2018-02-13T08:25:02.604] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:25:02.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Sciencegeck123/how to create a website and last: K220GR -[2018-02-13T08:25:02.656] [INFO] cheese - batch complete in: 1.374 secs -[2018-02-13T08:25:02.737] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:25:02.746] [INFO] cheese - batch complete in: 4.411 secs -[2018-02-13T08:25:02.751] [INFO] cheese - inserting 1000 documents. first: Sainte Pazanne and last: Escos -[2018-02-13T08:25:02.902] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:25:03.015] [INFO] cheese - inserting 1000 documents. first: National Romantic Style and last: The Century Company -[2018-02-13T08:25:03.202] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:25:03.219] [INFO] cheese - inserting 1000 documents. first: Rebešovice and last: Spanish destroyer Alcala Galiano (D24) -[2018-02-13T08:25:03.261] [INFO] cheese - inserting 1000 documents. first: Compendium of postage stamp issuers (Aa–Al) and last: Bermuda ern -[2018-02-13T08:25:03.351] [INFO] cheese - inserting 1000 documents. first: Category:Jeonbuk Hyundai Motors players and last: Mammillaria goodridgei -[2018-02-13T08:25:03.355] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:25:03.388] [INFO] cheese - inserting 1000 documents. first: Category:People from the Northern Governorate and last: Jatindra Nath Dowerah -[2018-02-13T08:25:03.485] [INFO] cheese - inserting 1000 documents. first: Factions in the Libertarian Party (United States) and last: Wikipedia:WikiProject Spam/LinkReports/de.oocities.com -[2018-02-13T08:25:03.493] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:25:03.548] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:25:03.583] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:25:03.707] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:25:03.885] [INFO] cheese - inserting 1000 documents. first: File:Rotaru-2004-teche voda.gif and last: National Art Gallery of New Zealand -[2018-02-13T08:25:04.082] [INFO] cheese - inserting 1000 documents. first: Bel Amica and last: Des Hackett -[2018-02-13T08:25:04.101] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:25:04.154] [INFO] cheese - inserting 1000 documents. first: File:Colby College old mule logo.png and last: Philadelphia Phoenix (AUDL) -[2018-02-13T08:25:04.201] [INFO] cheese - inserting 1000 documents. first: Spanish destroyer Alcalá Galiano and last: Template:User wikipedia/CVU-Vandal Fighter -[2018-02-13T08:25:04.278] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:25:04.306] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:25:04.409] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:25:04.555] [INFO] cheese - inserting 1000 documents. first: Draft:Blue growth and last: Category:Tourist attractions in Isabella County, Michigan -[2018-02-13T08:25:04.596] [INFO] cheese - inserting 1000 documents. first: Feet Don't Fail Me Now (song) and last: Robur Siena S.S.D. -[2018-02-13T08:25:04.630] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:25:04.690] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:25:04.715] [INFO] cheese - inserting 1000 documents. first: 71000 Hughdowns and last: USS Gleaves (DD-423) -[2018-02-13T08:25:04.826] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dawn Valley Bible Methodist Church and last: Category:Houston articles by importance -[2018-02-13T08:25:04.839] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:25:04.872] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:25:04.920] [INFO] cheese - inserting 1000 documents. first: Mongaillard and last: Silent Majority Group -[2018-02-13T08:25:04.988] [INFO] cheese - inserting 1000 documents. first: Yakub (Elijah Muhammad) and last: Choi Seolri -[2018-02-13T08:25:04.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2013 June 4 and last: Category:Houses in Botetourt County, Virginia -[2018-02-13T08:25:05.095] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:25:05.117] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:25:05.124] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:25:05.385] [INFO] cheese - inserting 1000 documents. first: A-Trane and last: Doha,Qatar -[2018-02-13T08:25:05.537] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:25:05.552] [INFO] cheese - inserting 1000 documents. first: Template:Podemos Region of Murcia/meta/shortname and last: Tirukkollampudur Vilvaranyeswarar Temple -[2018-02-13T08:25:05.636] [INFO] cheese - inserting 1000 documents. first: Keloid and last: The (Young) Rascals -[2018-02-13T08:25:05.704] [INFO] cheese - inserting 1000 documents. first: Kahle v. Gonzales and last: Joe Kennedy (disambiguation) -[2018-02-13T08:25:05.734] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:25:05.840] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:25:05.952] [INFO] cheese - batch complete in: 3.206 secs -[2018-02-13T08:25:05.960] [INFO] cheese - inserting 1000 documents. first: Richard Basciano and last: Category:1985 establishments in Malaysia -[2018-02-13T08:25:05.971] [INFO] cheese - inserting 1000 documents. first: Peräaukko Sivistyksessä and last: Libotenice -[2018-02-13T08:25:05.983] [INFO] cheese - inserting 1000 documents. first: Montigny-sur-l'Hallue and last: David Willis (producer) -[2018-02-13T08:25:06.033] [INFO] cheese - inserting 1000 documents. first: Maathodaa (Gaafu Dhaalu Atoll) and last: Wada Pav -[2018-02-13T08:25:06.084] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:25:06.122] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:25:06.189] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:25:06.225] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:25:06.393] [INFO] cheese - inserting 1000 documents. first: Penicillium stolkiae and last: Wikipedia:WikiProject Spam/LinkReports/mackenna-and-janssen.net -[2018-02-13T08:25:06.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/abergavennyboroughband.org.uk and last: Shibainu -[2018-02-13T08:25:06.546] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:25:06.795] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T08:25:06.967] [INFO] cheese - inserting 1000 documents. first: Frederick Nettlefold and last: Crookesmoor road -[2018-02-13T08:25:07.086] [INFO] cheese - inserting 1000 documents. first: Herbert Henderson and last: Mae (surname) -[2018-02-13T08:25:07.179] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Hind Hassan and last: Newt fencing -[2018-02-13T08:25:07.185] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:25:07.321] [INFO] cheese - inserting 1000 documents. first: Lkáň and last: Budeč (Žďár nad Sázavou District) -[2018-02-13T08:25:07.348] [INFO] cheese - inserting 1000 documents. first: Saudi Ministry of Defense and Aviation and last: Velidhoo (Noonu Atoll) -[2018-02-13T08:25:07.362] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:25:07.396] [INFO] cheese - batch complete in: 1.274 secs -[2018-02-13T08:25:07.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mackenna-and-janssen.net and last: File:The Calm before the Storm by Colton Dixon.jpg -[2018-02-13T08:25:07.504] [INFO] cheese - batch complete in: 1.279 secs -[2018-02-13T08:25:07.641] [INFO] cheese - batch complete in: 1.557 secs -[2018-02-13T08:25:07.678] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:25:08.075] [INFO] cheese - inserting 1000 documents. first: Ballard, Queensland and last: Steve Shirreffs -[2018-02-13T08:25:08.276] [INFO] cheese - inserting 1000 documents. first: File:Gorka Old Futures Gone.jpg and last: Rashid Aushev Central Stadium -[2018-02-13T08:25:08.278] [INFO] cheese - batch complete in: 1.483 secs -[2018-02-13T08:25:08.497] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:25:08.518] [INFO] cheese - inserting 1000 documents. first: Remak bundles and last: Category:People from Karakalpakstan -[2018-02-13T08:25:08.535] [INFO] cheese - inserting 1000 documents. first: Bukov (Žďár nad Sázavou District) and last: Wikings-NSK -[2018-02-13T08:25:08.552] [INFO] cheese - inserting 1000 documents. first: List of International cricket centuries by Sachin Tendulkar and last: File:Si te dicen que caí.jpg -[2018-02-13T08:25:08.595] [INFO] cheese - inserting 1000 documents. first: Nicolai Frederick Severin Grundtvig and last: Very Best Of Thomas and Friends -[2018-02-13T08:25:08.676] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T08:25:08.686] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:25:08.780] [INFO] cheese - inserting 1000 documents. first: Category:Visitor attractions in the United Kingdom and last: United Nations statistical divisions for the Americas -[2018-02-13T08:25:08.787] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T08:25:08.791] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:25:08.955] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:25:09.222] [INFO] cheese - inserting 1000 documents. first: 1907 VMI Keydets football team and last: Leaksville, North Carolina -[2018-02-13T08:25:09.273] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:25:09.426] [INFO] cheese - inserting 1000 documents. first: Novye Khimki Stadium and last: List of Webcomics -[2018-02-13T08:25:09.448] [INFO] cheese - inserting 1000 documents. first: Greenwich University and last: Fakenham College -[2018-02-13T08:25:09.457] [INFO] cheese - inserting 1000 documents. first: Aksel Magdahl and last: Template:User WikiProject Flagged Revisions -[2018-02-13T08:25:09.460] [INFO] cheese - inserting 1000 documents. first: Boy Meets World (Disney) and last: Incheon International Airport -[2018-02-13T08:25:09.473] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:25:09.500] [INFO] cheese - inserting 1000 documents. first: Le Mesge and last: Wikipedia:Featured article candidates/Blackface -[2018-02-13T08:25:09.522] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:25:09.535] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:25:09.623] [INFO] cheese - inserting 1000 documents. first: Amritanandamayi and last: Schürzenjäger -[2018-02-13T08:25:09.614] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:25:09.642] [INFO] cheese - inserting 1000 documents. first: United Nations statistical divisions for Asia and last: Wikipedia:WikiProject Spam/LinkReports/salud.uma.es -[2018-02-13T08:25:09.795] [INFO] cheese - batch complete in: 3.843 secs -[2018-02-13T08:25:09.808] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:25:09.826] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:25:10.096] [INFO] cheese - inserting 1000 documents. first: Sir graham bower and last: Personae -[2018-02-13T08:25:10.107] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Ostodolepidae and last: Alcohol Tobacco Firearms -[2018-02-13T08:25:10.130] [INFO] cheese - inserting 1000 documents. first: Çözüm Süreci and last: Afro-Antiguan and Barbudan -[2018-02-13T08:25:10.165] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:10.198] [INFO] cheese - inserting 1000 documents. first: Lonjé Molen, Bolsward and last: Fencing at the 1924 Summer Olympics – Men's team foil -[2018-02-13T08:25:10.235] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:25:10.319] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:25:10.376] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Youth Olympics and last: Historic Buildings in Stirling, Alberta -[2018-02-13T08:25:10.438] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:25:10.536] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:25:10.635] [INFO] cheese - inserting 1000 documents. first: Hans Willem van Aylva and last: Harry Prout -[2018-02-13T08:25:10.780] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:25:10.829] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bommannan and last: Andy Ross -[2018-02-13T08:25:10.987] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:25:11.033] [INFO] cheese - inserting 1000 documents. first: Professional Ski Simulator and last: George Harris (footballer, born 1877) -[2018-02-13T08:25:11.084] [INFO] cheese - inserting 1000 documents. first: Joe Nealon and last: Goscombe John -[2018-02-13T08:25:11.092] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:25:11.173] [INFO] cheese - inserting 1000 documents. first: Grand Ballroom and last: Tullahoma Municipal Airport -[2018-02-13T08:25:11.176] [INFO] cheese - inserting 1000 documents. first: Shabbethai Sheftel Horowitz and last: Hulliche -[2018-02-13T08:25:11.186] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:25:11.310] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:25:11.317] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:25:11.326] [INFO] cheese - inserting 1000 documents. first: Jaroslav Bouček and last: File:NoCompromise29.jpg -[2018-02-13T08:25:11.450] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:25:11.513] [INFO] cheese - inserting 1000 documents. first: To the Heart of the Storm and last: Gelechia culminicolella -[2018-02-13T08:25:11.583] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:25:11.609] [INFO] cheese - inserting 1000 documents. first: Yap Ah Shak and last: Éva Marion -[2018-02-13T08:25:11.672] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:25:11.735] [INFO] cheese - inserting 1000 documents. first: Brent Gretzky and last: Nicholas Eden, 2nd Earl of Avon -[2018-02-13T08:25:11.780] [INFO] cheese - inserting 1000 documents. first: Jeanne d'Arc (1900 film) and last: Quinnia laetifica -[2018-02-13T08:25:11.792] [INFO] cheese - inserting 1000 documents. first: Andreas Wolf and last: Flight test instrumentation -[2018-02-13T08:25:11.800] [INFO] cheese - inserting 1000 documents. first: Arthur Elmore Bostwick and last: Jazz Journalists' Awards -[2018-02-13T08:25:11.840] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:25:11.858] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:25:11.867] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:25:11.927] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:25:12.020] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Republic of Kosovo and last: File:Pirateswalkplank.jpg -[2018-02-13T08:25:12.123] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:25:12.127] [INFO] cheese - inserting 1000 documents. first: Musakhel Bazar and last: Sow-bugs -[2018-02-13T08:25:12.157] [INFO] cheese - inserting 1000 documents. first: Einstein-Podolsky-Rosen paradox and last: Bolshevism -[2018-02-13T08:25:12.194] [INFO] cheese - inserting 1000 documents. first: Template:Connected contributor (paid)/doc and last: Pottsville (SEPTA station) -[2018-02-13T08:25:12.199] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:25:12.282] [INFO] cheese - batch complete in: 2.487 secs -[2018-02-13T08:25:12.298] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:25:12.444] [INFO] cheese - inserting 1000 documents. first: Family Guy Pilot and last: Guillermo Mordillo -[2018-02-13T08:25:12.642] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:25:12.688] [INFO] cheese - inserting 1000 documents. first: Quinnia limatula and last: Princess Kunegunda -[2018-02-13T08:25:12.728] [INFO] cheese - inserting 1000 documents. first: Category:1993 graphic novels and last: Mr. Bigg's -[2018-02-13T08:25:12.807] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:25:12.830] [INFO] cheese - inserting 1000 documents. first: Walk the Plank (Pirates of the Mississippi album) and last: Sumrai–Miltu languages -[2018-02-13T08:25:12.923] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:25:12.947] [INFO] cheese - inserting 1000 documents. first: Solomon Drowne and last: Squids: Obsession and Devotion -[2018-02-13T08:25:12.997] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Puerto Princesa and last: Template:Did you know nominations/Demands of the Slovak Nation -[2018-02-13T08:25:13.023] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:25:13.053] [INFO] cheese - inserting 1000 documents. first: Single winner electoral systems and last: Wikipedia:Sockpuppet investigations/TheFix63/Archive -[2018-02-13T08:25:13.128] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:25:13.150] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:25:13.174] [INFO] cheese - batch complete in: 1.334 secs -[2018-02-13T08:25:13.415] [INFO] cheese - inserting 1000 documents. first: Slight of hand and last: Wikipedia:Articles for deletion/web directories -[2018-02-13T08:25:13.511] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:25:13.555] [INFO] cheese - inserting 1000 documents. first: Category:Insurance companies based in Florida and last: Rapses -[2018-02-13T08:25:13.616] [INFO] cheese - inserting 1000 documents. first: Edna Worthley Underwood and last: Category:Coal mines in Mozambique -[2018-02-13T08:25:13.732] [INFO] cheese - inserting 1000 documents. first: Mt. Kŏmdan-san and last: Wikipedia:Articles for deletion/Nathan Norman -[2018-02-13T08:25:13.656] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:25:13.791] [INFO] cheese - inserting 1000 documents. first: August Thalheimer and last: Downingtown Middle School -[2018-02-13T08:25:13.792] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:25:13.811] [INFO] cheese - inserting 1000 documents. first: European University (disambiguation) and last: Killacycle -[2018-02-13T08:25:13.880] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:25:13.949] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:25:13.964] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:25:14.099] [INFO] cheese - inserting 1000 documents. first: Josiah Plumb and last: Silver Stream (New Zealand) -[2018-02-13T08:25:14.223] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:25:14.232] [INFO] cheese - inserting 1000 documents. first: Woodbridge new jersey and last: The Adventures of Mark and Brian -[2018-02-13T08:25:14.287] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:25:14.361] [INFO] cheese - inserting 1000 documents. first: Francis Edward Henry Farquharson and last: USS Kirwin (APD-90) -[2018-02-13T08:25:14.430] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:25:14.447] [INFO] cheese - inserting 1000 documents. first: Category:Mines in Mozambique and last: Saiyidha Dawetahwand -[2018-02-13T08:25:14.476] [INFO] cheese - inserting 1000 documents. first: Rehabilitative growth and last: Jo Daveiss -[2018-02-13T08:25:14.522] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:25:14.572] [INFO] cheese - inserting 1000 documents. first: Lionville Middle School and last: Xian heng tavern -[2018-02-13T08:25:14.582] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:25:14.715] [INFO] cheese - inserting 1000 documents. first: File:PONG+GAN+FC.png and last: Mel Meeks -[2018-02-13T08:25:14.733] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:25:14.805] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:25:14.856] [INFO] cheese - inserting 1000 documents. first: Jim Meddick and last: Act of Navigation -[2018-02-13T08:25:14.877] [INFO] cheese - inserting 1000 documents. first: George Smyth Baden-Powell and last: Maris Wrixon -[2018-02-13T08:25:14.976] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:25:14.986] [INFO] cheese - batch complete in: 2.703 secs -[2018-02-13T08:25:15.006] [INFO] cheese - inserting 1000 documents. first: Banu Güven and last: Category:1939 establishments in Chile -[2018-02-13T08:25:15.038] [INFO] cheese - inserting 1000 documents. first: Queen Gerbera of France and last: James Couper Brash -[2018-02-13T08:25:15.043] [INFO] cheese - inserting 1000 documents. first: Taxicabs of Chicago and last: Wikipedia:Articles for deletion/Cass V. Cibelli -[2018-02-13T08:25:15.071] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:25:15.088] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:25:15.164] [INFO] cheese - inserting 1000 documents. first: Category:Murder in 1940 and last: Tambelin railway station, Adelaide -[2018-02-13T08:25:15.166] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:25:15.266] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:25:15.304] [INFO] cheese - inserting 1000 documents. first: City of Springvale and last: File:Lemon-jelly-rolled.gif -[2018-02-13T08:25:15.400] [INFO] cheese - inserting 1000 documents. first: Erin Burke and last: Draft:Asia Regional Organic Standards -[2018-02-13T08:25:15.400] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:25:15.500] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:25:15.561] [INFO] cheese - inserting 1000 documents. first: MediaWeek and last: Shared Variables -[2018-02-13T08:25:15.625] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:25:15.629] [INFO] cheese - inserting 1000 documents. first: Tishman Speyer Properties, Inc. and last: 1990 British Formula Three Championship -[2018-02-13T08:25:15.675] [INFO] cheese - inserting 1000 documents. first: Okay Bill and last: File:Intelligent Systems logo.png -[2018-02-13T08:25:15.713] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:25:15.758] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:25:15.796] [INFO] cheese - inserting 1000 documents. first: Turakhan beg and last: Lars Dietrich (Musician) -[2018-02-13T08:25:15.856] [INFO] cheese - inserting 1000 documents. first: European Steel Technology Platform and last: Wang Lei (chess) -[2018-02-13T08:25:15.890] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:25:15.937] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:25:16.022] [INFO] cheese - inserting 1000 documents. first: Neha Bam and last: Burtons Corner -[2018-02-13T08:25:16.065] [INFO] cheese - inserting 1000 documents. first: Alexander-Conway polynomial and last: Horace Cameron -[2018-02-13T08:25:16.121] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:25:16.212] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:25:16.290] [INFO] cheese - inserting 1000 documents. first: Portal:Tropical cyclones/Anniversaries/January 19 and last: Venae stellatae -[2018-02-13T08:25:16.369] [INFO] cheese - inserting 1000 documents. first: Pollick and last: Konstantin Priahin -[2018-02-13T08:25:16.393] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:25:16.397] [INFO] cheese - inserting 1000 documents. first: Grand Canyon: The Hidden Secrets and last: Wikipedia:WikiProject Spam/LinkReports/res.es -[2018-02-13T08:25:16.502] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:25:16.550] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:25:16.660] [INFO] cheese - inserting 1000 documents. first: Template:Highland League map and last: Category:British sinologists -[2018-02-13T08:25:16.698] [INFO] cheese - inserting 1000 documents. first: File:London Thames Sunset panorama - Feb 2008.jpg and last: Ken Solheim -[2018-02-13T08:25:16.738] [INFO] cheese - inserting 1000 documents. first: Category:1869 establishments in Mississippi and last: Template:1909 AL Record vs. opponents -[2018-02-13T08:25:16.778] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:25:16.816] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:25:16.904] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:25:17.106] [INFO] cheese - inserting 1000 documents. first: Kongo ivory and last: Emam Qoli -[2018-02-13T08:25:17.107] [INFO] cheese - inserting 1000 documents. first: Page view and last: Fuji Syusuke -[2018-02-13T08:25:17.168] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Draconity and last: Salamumu -[2018-02-13T08:25:17.189] [INFO] cheese - inserting 1000 documents. first: Navigation Acts and last: Jeremy Gelbwaks -[2018-02-13T08:25:17.274] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T08:25:17.296] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:25:17.300] [INFO] cheese - inserting 1000 documents. first: Archibald Thomas Peachey and last: Kinetics Internet Protocol -[2018-02-13T08:25:17.402] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:25:17.482] [INFO] cheese - inserting 1000 documents. first: Annabessacook Lake and last: Top Run Motorsport -[2018-02-13T08:25:17.494] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:25:17.556] [INFO] cheese - batch complete in: 2.57 secs -[2018-02-13T08:25:17.630] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:25:17.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cedarsurfboards.com and last: File:2007 Austria 25 Euro Austrian Aviation back.jpg -[2018-02-13T08:25:17.727] [INFO] cheese - inserting 1000 documents. first: Dave Mitchell (disambiguation) and last: History of horse domestication theories -[2018-02-13T08:25:17.820] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:25:17.902] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:25:17.981] [INFO] cheese - inserting 1000 documents. first: Emamqoli Direh and last: Template:Country data Federal Dependencies of Venezuela -[2018-02-13T08:25:18.086] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:25:18.140] [INFO] cheese - inserting 1000 documents. first: Faleseela and last: Richy Müller -[2018-02-13T08:25:18.153] [INFO] cheese - inserting 1000 documents. first: Secretary Hawkins and last: Khoisa panaula -[2018-02-13T08:25:18.162] [INFO] cheese - inserting 1000 documents. first: Droungos and last: RM 1832 -[2018-02-13T08:25:18.183] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:25:18.220] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:25:18.253] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:18.394] [INFO] cheese - inserting 1000 documents. first: Judaica Press and last: Disney's Fort Wilderness Resort & Campground -[2018-02-13T08:25:18.584] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:25:18.606] [INFO] cheese - inserting 1000 documents. first: William Bradshaw (Puritan) and last: SR 906 (WA) -[2018-02-13T08:25:18.753] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:25:18.767] [INFO] cheese - inserting 1000 documents. first: Arthur Frank Burns and last: Liga de Fútbol Profesional Boliviano 2002 -[2018-02-13T08:25:18.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Checkmarx (company) and last: Super League (Pakistan) -[2018-02-13T08:25:18.914] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:25:18.925] [INFO] cheese - inserting 1000 documents. first: Khoisa triloba and last: Holidays Bulgaria -[2018-02-13T08:25:18.967] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:25:19.044] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:25:19.062] [INFO] cheese - inserting 1000 documents. first: Doulting and last: Dane Court Grammar School -[2018-02-13T08:25:19.203] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:25:19.261] [INFO] cheese - inserting 1000 documents. first: Rolling Thunder World Championships and last: Jinan Taishan Jiangjun -[2018-02-13T08:25:19.389] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:25:19.477] [INFO] cheese - inserting 1000 documents. first: SR 908 (WA) and last: Wikipedia:WikiProject Spam/LinkReports/ashlandalliance.com -[2018-02-13T08:25:19.579] [INFO] cheese - inserting 1000 documents. first: Targu Mures Airport and last: File:Dick Poole 1954.jpeg -[2018-02-13T08:25:19.591] [INFO] cheese - inserting 1000 documents. first: List of United States terrestrial television networks and last: Goostrey -[2018-02-13T08:25:19.608] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:25:19.650] [INFO] cheese - inserting 1000 documents. first: McMeechan v SS for Employment and last: Humanist Party (Peru) -[2018-02-13T08:25:19.670] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:25:19.706] [INFO] cheese - inserting 1000 documents. first: Rhodophyceæ and last: Category:1985 in West Virginia -[2018-02-13T08:25:19.735] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:25:19.747] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:25:19.779] [INFO] cheese - inserting 1000 documents. first: Mumble and last: Category:Arts in London -[2018-02-13T08:25:19.780] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:25:19.892] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:25:19.941] [INFO] cheese - inserting 1000 documents. first: Shenzhen Feiyada and last: C9H6O4 -[2018-02-13T08:25:20.029] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:25:20.063] [INFO] cheese - inserting 1000 documents. first: Borje Fredriksson and last: National Route 381 -[2018-02-13T08:25:20.127] [INFO] cheese - inserting 1000 documents. first: Oleg Kokushkin and last: Category:Supercopa Centroamericana -[2018-02-13T08:25:20.118] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:25:20.198] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:25:20.301] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance biography (musicians) articles and last: Sahhas -[2018-02-13T08:25:20.334] [INFO] cheese - inserting 1000 documents. first: Qualitative economics and last: East Cobb -[2018-02-13T08:25:20.371] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:25:20.421] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:25:20.427] [INFO] cheese - inserting 1000 documents. first: Jason West (game designer) and last: Wikipedia:WikiProject Spam/LinkReports/sleipnir.fo -[2018-02-13T08:25:20.455] [INFO] cheese - inserting 1000 documents. first: At Home with Their Greatest Hits and last: Nigel Edward Buxton -[2018-02-13T08:25:20.482] [INFO] cheese - inserting 1000 documents. first: Flygvapenmuseum and last: Desembocadura de la Cruz de Río Grande -[2018-02-13T08:25:20.579] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:25:20.614] [INFO] cheese - inserting 1000 documents. first: Graeme Swan and last: Greek destroyer Vasilissa Olga (D 15) -[2018-02-13T08:25:20.703] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:25:20.754] [INFO] cheese - inserting 1000 documents. first: Neil C. Roberts and last: Template:Unicode chart Balinese -[2018-02-13T08:25:20.814] [INFO] cheese - batch complete in: 3.258 secs -[2018-02-13T08:25:20.928] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:25:20.965] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:25:21.178] [INFO] cheese - inserting 1000 documents. first: Big Red (sculpture) and last: Ecole Française de Riyad -[2018-02-13T08:25:21.253] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:25:21.378] [INFO] cheese - inserting 1000 documents. first: Category:Georgia Tech Yellow Jackets women's basketball seasons and last: Category:Theatres in Northampton -[2018-02-13T08:25:21.423] [INFO] cheese - inserting 1000 documents. first: Nena feat. Nena and last: Category:Filmfare Awards South (Telugu) -[2018-02-13T08:25:21.494] [INFO] cheese - inserting 1000 documents. first: Maganlal Dresswala and last: Erft-Bahn -[2018-02-13T08:25:21.527] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:25:21.595] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:25:21.695] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:25:21.855] [INFO] cheese - inserting 1000 documents. first: 1981 birth and last: Pioneer Place/Southwest 5th (MAX station) -[2018-02-13T08:25:21.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/rays and last: Wikipedia:WikiProject Military history/Peer review/Benjamin Brice -[2018-02-13T08:25:21.952] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:25:21.983] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:25:22.038] [INFO] cheese - inserting 1000 documents. first: Ecole Francaise de Riyad and last: Wikipedia:Articles for deletion/Kharkiv -[2018-02-13T08:25:22.075] [INFO] cheese - inserting 1000 documents. first: El Ayote and last: Velde, Henry Clemens van de -[2018-02-13T08:25:22.173] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:25:22.211] [INFO] cheese - batch complete in: 1.508 secs -[2018-02-13T08:25:22.229] [INFO] cheese - inserting 1000 documents. first: Prince Nashimoto and last: St. Peter (Graubünden) -[2018-02-13T08:25:22.308] [INFO] cheese - inserting 1000 documents. first: Oath of Pontida and last: Branchiobdellida -[2018-02-13T08:25:22.324] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:25:22.475] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:25:22.626] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Northampton and last: Auchnagatt Primary School -[2018-02-13T08:25:22.765] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:25:22.781] [INFO] cheese - inserting 1000 documents. first: Cognoscere and last: Dudu (footballer) -[2018-02-13T08:25:22.868] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:25:22.986] [INFO] cheese - inserting 1000 documents. first: Stampa (Graubünden) and last: Chesopelloz -[2018-02-13T08:25:23.002] [INFO] cheese - inserting 1000 documents. first: Musée d’Art moderne et contemporain, Saint-Étienne Metropole and last: Category:Enhanced quote templates -[2018-02-13T08:25:23.024] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:25:23.093] [INFO] cheese - inserting 1000 documents. first: File:Qingdao University new logo.svg and last: Emin Guliyev (swimmer) -[2018-02-13T08:25:23.093] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:25:23.106] [INFO] cheese - inserting 1000 documents. first: File:Willow movie.jpg and last: Robert Stone (rugby league) -[2018-02-13T08:25:23.169] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:25:23.213] [INFO] cheese - inserting 1000 documents. first: Auchterellon Primary School and last: National Register of Historic Places listings in Acadia National Park -[2018-02-13T08:25:23.218] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:25:23.312] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:25:23.428] [INFO] cheese - inserting 1000 documents. first: Corinne Griffith and last: Jesus in Islam -[2018-02-13T08:25:23.435] [INFO] cheese - inserting 1000 documents. first: Chezard-Saint-Martin and last: Rudolph A. Weinert -[2018-02-13T08:25:23.468] [INFO] cheese - inserting 1000 documents. first: Plus! for Kids and last: Wikipedia:WikiProject U.S. Roads/Washington/1907 laws -[2018-02-13T08:25:23.469] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:25:23.585] [INFO] cheese - batch complete in: 2.771 secs -[2018-02-13T08:25:23.589] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:25:23.629] [INFO] cheese - inserting 1000 documents. first: Sanarudravaram and last: Portal:Ravidassia/Selected picture/1 -[2018-02-13T08:25:23.697] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:25:23.748] [INFO] cheese - inserting 1000 documents. first: Frank B. Haviland and last: Ekspress AM8 -[2018-02-13T08:25:23.812] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:25:23.815] [INFO] cheese - inserting 1000 documents. first: Wittman D-12 Bonzo and last: Category:Fungi described in 1886 -[2018-02-13T08:25:23.898] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:23.900] [INFO] cheese - inserting 1000 documents. first: Joe Willie Namath and last: Nabucodonosor -[2018-02-13T08:25:23.997] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:25:24.092] [INFO] cheese - inserting 1000 documents. first: Tolentino and Macerata and last: Fred breinersdorfer -[2018-02-13T08:25:24.098] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Dwight Yoakam and last: Second Battle of Picardy -[2018-02-13T08:25:24.135] [INFO] cheese - inserting 1000 documents. first: Coventry University Students' Union and last: Yavan, Iran -[2018-02-13T08:25:24.144] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:25:24.194] [INFO] cheese - inserting 1000 documents. first: Konemetsä and last: Alex French -[2018-02-13T08:25:24.204] [INFO] cheese - batch complete in: 2.252 secs -[2018-02-13T08:25:24.204] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:25:24.241] [INFO] cheese - inserting 1000 documents. first: Malik ibn Kaydar and last: Trachylepis aurata -[2018-02-13T08:25:24.308] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:25:24.371] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:25:24.528] [INFO] cheese - inserting 1000 documents. first: Kimball Hotel and last: Noise and Resistance -[2018-02-13T08:25:24.591] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:25:24.630] [INFO] cheese - inserting 1000 documents. first: Liquaemin sodium and last: Wikipedia:Articles for deletion/Millburn School, Wadsworth, Illinois -[2018-02-13T08:25:24.754] [INFO] cheese - inserting 1000 documents. first: In-Shik Hwang and last: Age dependency -[2018-02-13T08:25:24.791] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:25:24.803] [INFO] cheese - inserting 1000 documents. first: Hymno da Carta and last: Category:Festivals in Oceania -[2018-02-13T08:25:24.832] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:25:24.918] [INFO] cheese - inserting 1000 documents. first: Mayer, Texas and last: File:BridgeofDragons1999.poster.jpg -[2018-02-13T08:25:25.037] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:25:25.130] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:25:25.171] [INFO] cheese - inserting 1000 documents. first: Monet (comics) and last: Hooves and Harlots (Xena episode) -[2018-02-13T08:25:25.193] [INFO] cheese - inserting 1000 documents. first: Golomt bank and last: Bellevue Investments -[2018-02-13T08:25:25.229] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:25:25.234] [INFO] cheese - inserting 1000 documents. first: Diarrhoea and last: SQL programming language -[2018-02-13T08:25:25.292] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:25:25.382] [INFO] cheese - batch complete in: 1.797 secs -[2018-02-13T08:25:25.570] [INFO] cheese - inserting 1000 documents. first: Abba (Talmud) and last: Slice of cake -[2018-02-13T08:25:25.650] [INFO] cheese - inserting 1000 documents. first: Phase Shift and last: E.N.T. -[2018-02-13T08:25:25.668] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:25:25.689] [INFO] cheese - inserting 1000 documents. first: List of Hunter × Hunter (1999) episodes and last: Portal:Indonesia/ST List/SP Subak -[2018-02-13T08:25:25.712] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:25:25.802] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:25:25.810] [INFO] cheese - inserting 1000 documents. first: Government House (Antigua & Barbuda) and last: Shovel Ready -[2018-02-13T08:25:25.854] [INFO] cheese - inserting 1000 documents. first: Sim Templeman and last: Category:Test cricket captains -[2018-02-13T08:25:25.862] [INFO] cheese - inserting 1000 documents. first: Gaultheria ovatifolia and last: Djoue -[2018-02-13T08:25:25.884] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/css.edu.hk and last: Category:Animal breeds originating in Lithuania -[2018-02-13T08:25:25.903] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:25:25.909] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:25:25.937] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:25:26.012] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:25:26.231] [INFO] cheese - inserting 1000 documents. first: Category:Banks established in 1834 and last: History of Tokyo Game Show -[2018-02-13T08:25:26.338] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:25:26.406] [INFO] cheese - inserting 1000 documents. first: Wikipedia:MediaWiki Edition Toolbar and last: Angie Tsang -[2018-02-13T08:25:26.541] [INFO] cheese - inserting 1000 documents. first: Isafe and last: Tropical chinchweed -[2018-02-13T08:25:26.543] [INFO] cheese - inserting 1000 documents. first: Kdebase and last: Asioot -[2018-02-13T08:25:26.548] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:25:26.589] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:25:26.607] [INFO] cheese - inserting 1000 documents. first: Andrei Dikan and last: Harry Jones -[2018-02-13T08:25:26.612] [INFO] cheese - inserting 1000 documents. first: Custódio Muchate and last: 1977–78 Rangers F.C. season -[2018-02-13T08:25:26.635] [INFO] cheese - inserting 1000 documents. first: El Daein Airport and last: Cambridge University Museum -[2018-02-13T08:25:26.636] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:25:26.708] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:25:26.742] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:25:26.768] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:25:26.877] [INFO] cheese - inserting 1000 documents. first: Quévy and last: European Capital of Culture -[2018-02-13T08:25:26.951] [INFO] cheese - inserting 1000 documents. first: M.I (Nigerian Rapper) and last: Category:Kampala Central Division -[2018-02-13T08:25:26.988] [INFO] cheese - batch complete in: 1.605 secs -[2018-02-13T08:25:27.005] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:25:27.136] [INFO] cheese - inserting 1000 documents. first: Wax Wood and last: Magister Chirurgiae -[2018-02-13T08:25:27.175] [INFO] cheese - inserting 1000 documents. first: Vinci (automobile) and last: Omega Roberts -[2018-02-13T08:25:27.187] [INFO] cheese - inserting 1000 documents. first: Blondie in the Dough and last: Duran Sartor de Paernas -[2018-02-13T08:25:27.205] [INFO] cheese - inserting 1000 documents. first: Tropical cinchweed and last: Jugend (journal) -[2018-02-13T08:25:27.228] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:25:27.251] [INFO] cheese - inserting 1000 documents. first: RMS Empress of England and last: Japan Democratic Party -[2018-02-13T08:25:27.269] [INFO] cheese - inserting 1000 documents. first: Alexander, Harold Rupert Leofric George, 1st Earl Alexander of Tunis and last: Dove, Arthur Garfield -[2018-02-13T08:25:27.270] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:25:27.283] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:25:27.286] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:25:27.397] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:25:27.391] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:25:27.600] [INFO] cheese - inserting 1000 documents. first: Tangible User Interface and last: Guatemala at the 1955 Pan American Games -[2018-02-13T08:25:27.626] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:25:27.701] [INFO] cheese - inserting 1000 documents. first: Nturei karta and last: File:Terpischore -Unidentified -circa 1900.JPG -[2018-02-13T08:25:27.711] [INFO] cheese - inserting 1000 documents. first: Eugeni Redkin and last: Capital of Benin -[2018-02-13T08:25:27.763] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:25:27.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/October 2, 2015 and last: Christian Monsod -[2018-02-13T08:25:27.815] [INFO] cheese - inserting 1000 documents. first: Felix Resurrección Hidalgo and last: Category:Dams on the Peace River -[2018-02-13T08:25:27.820] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:25:27.843] [INFO] cheese - inserting 1000 documents. first: EWwy Award and last: Single source published -[2018-02-13T08:25:27.877] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:25:27.899] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:25:27.914] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Morno and last: James Kocsis -[2018-02-13T08:25:27.919] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:25:28.022] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:25:28.073] [INFO] cheese - inserting 1000 documents. first: Guatemala at the 1959 Pan American Games and last: Wenzhou–Fuzhou Railway -[2018-02-13T08:25:28.133] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:25:28.326] [INFO] cheese - inserting 1000 documents. first: Fitness to plead and last: Wikipedia:Articles for deletion/Microcasting -[2018-02-13T08:25:28.351] [INFO] cheese - inserting 1000 documents. first: HMS Whitehall (1919) and last: Template:Did you know nominations/Secret Ponchos -[2018-02-13T08:25:28.355] [INFO] cheese - inserting 1000 documents. first: Capital of Botswana and last: Berta Gardner -[2018-02-13T08:25:28.362] [INFO] cheese - inserting 1000 documents. first: 2016 State of Origin series and last: John Bale (MP) -[2018-02-13T08:25:28.387] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:25:28.401] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:25:28.440] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:25:28.501] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:25:28.539] [INFO] cheese - inserting 1000 documents. first: PNS Tippu Sultan (1941) and last: Anita O'Day Collates (Anita O'Day Album) -[2018-02-13T08:25:28.613] [INFO] cheese - inserting 1000 documents. first: Ancyromonas and last: Albulario -[2018-02-13T08:25:28.614] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:25:28.668] [INFO] cheese - inserting 1000 documents. first: Dario Fo and last: John MacBride -[2018-02-13T08:25:28.737] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:25:28.738] [INFO] cheese - inserting 1000 documents. first: Apple Mountain Lake and last: Template:Rivals.com coach/doc -[2018-02-13T08:25:28.807] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:25:28.807] [INFO] cheese - batch complete in: 1.819 secs -[2018-02-13T08:25:28.952] [INFO] cheese - inserting 1000 documents. first: Policies and guidelines of Wikipedia and last: Junior Fernandes da Silva -[2018-02-13T08:25:28.979] [INFO] cheese - inserting 1000 documents. first: Category:Record labels established in 1975 and last: Banaras Gharana -[2018-02-13T08:25:28.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject U.S. Roads/Washington/1931 laws and last: Wikipedia:Featured picture candidates/William-Adolphe Bouguereau (1825-1905) - Sewing (1898) -[2018-02-13T08:25:29.007] [INFO] cheese - inserting 1000 documents. first: Russia - New Zealand relations and last: Phalonia conversana -[2018-02-13T08:25:29.030] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:29.037] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:25:29.086] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:25:29.174] [INFO] cheese - inserting 1000 documents. first: Category:People from Kraśnik County and last: Congregation of the Damned -[2018-02-13T08:25:29.180] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:25:29.289] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:25:29.410] [INFO] cheese - inserting 1000 documents. first: Editorial Académica Española and last: Daqing First High School -[2018-02-13T08:25:29.412] [INFO] cheese - inserting 1000 documents. first: Pennine Chain and last: Rinehart, Mary Roberts -[2018-02-13T08:25:29.484] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:25:29.496] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:29.655] [INFO] cheese - inserting 1000 documents. first: File:LCK Terminal.jpg and last: Scientia Pharmaceutica -[2018-02-13T08:25:29.706] [INFO] cheese - inserting 1000 documents. first: Category:Prehistoric vertebrates of Asia and last: Charles Hepburn Scott -[2018-02-13T08:25:29.720] [INFO] cheese - inserting 1000 documents. first: Musgrave railway station and last: Monkey business -[2018-02-13T08:25:29.776] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:25:29.803] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:25:29.817] [INFO] cheese - inserting 1000 documents. first: Roads in New Brunswick and last: Category:Ancient Alexandria -[2018-02-13T08:25:29.817] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:25:29.862] [INFO] cheese - inserting 1000 documents. first: Wildlife farming and last: List of Elitserien seasons -[2018-02-13T08:25:29.895] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:25:29.970] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:25:30.075] [INFO] cheese - inserting 1000 documents. first: Jack Jones (pitcher) and last: Portal:Horror/This day in horror archive/June/8 -[2018-02-13T08:25:30.108] [INFO] cheese - inserting 1000 documents. first: Glukhov and last: The Prague Post -[2018-02-13T08:25:30.156] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:25:30.181] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:25:30.337] [INFO] cheese - inserting 1000 documents. first: Category:French cricketers and last: Joseph Gaylord -[2018-02-13T08:25:30.343] [INFO] cheese - inserting 1000 documents. first: 2010 FIVB Volleyball World League qualification and last: K. Rosaiah -[2018-02-13T08:25:30.368] [INFO] cheese - inserting 1000 documents. first: Nasi campur and last: Open Heaven / River Wild -[2018-02-13T08:25:30.380] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:25:30.390] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Lebanon articles and last: Jeanine Micheau -[2018-02-13T08:25:30.398] [INFO] cheese - inserting 1000 documents. first: Category:Restaurants in Lima and last: Garage band (TV series) -[2018-02-13T08:25:30.398] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:25:30.467] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:25:30.480] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:25:30.502] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:25:30.578] [INFO] cheese - inserting 1000 documents. first: William Ward (Texas) and last: New York's At-large congressional district -[2018-02-13T08:25:30.626] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:25:30.638] [INFO] cheese - inserting 1000 documents. first: Liam Gallagher and last: Loyalist feud -[2018-02-13T08:25:30.753] [INFO] cheese - batch complete in: 1.941 secs -[2018-02-13T08:25:30.838] [INFO] cheese - inserting 1000 documents. first: Peter Richards and last: Ultrabasic -[2018-02-13T08:25:30.904] [INFO] cheese - inserting 1000 documents. first: Category:1911 in French Equatorial Africa and last: Mark Hendrickson (American football coach) -[2018-02-13T08:25:30.934] [INFO] cheese - inserting 1000 documents. first: File:When Zachary Beaver Came To Town.jpg and last: Maximilian Gowran Townley -[2018-02-13T08:25:30.970] [INFO] cheese - inserting 1000 documents. first: Enemies of Children and last: Jane's All the World's Aircraft 1919 -[2018-02-13T08:25:31.019] [INFO] cheese - inserting 1000 documents. first: File:Douarnenez-port-rhu.jpg and last: The Glory of their times -[2018-02-13T08:25:31.034] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:25:31.037] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:25:31.038] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:25:31.135] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:25:31.135] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:25:31.186] [INFO] cheese - inserting 1000 documents. first: Chalkuyruk and last: Daylight saving time in the United States -[2018-02-13T08:25:31.285] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:25:31.531] [INFO] cheese - inserting 1000 documents. first: Renault Clio Ragnotti and last: Samuel Bogart -[2018-02-13T08:25:31.606] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:25:31.662] [INFO] cheese - inserting 1000 documents. first: Category:Karnali Zone and last: Category:1676 in France -[2018-02-13T08:25:31.680] [INFO] cheese - inserting 1000 documents. first: Mount Vernon, Baltimore, Maryland and last: File:Tsar Kandavl or Le Roi Candaule -Lev Ivanov -1899.jpg -[2018-02-13T08:25:31.681] [INFO] cheese - inserting 1000 documents. first: Andrey Meshchaninov and last: 3 chak -[2018-02-13T08:25:31.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Nathan1234591/Archive and last: Draft:Tony Moore (Olympic Athlete) -[2018-02-13T08:25:31.697] [INFO] cheese - inserting 1000 documents. first: Talan Teidit and last: File:Junip Straight Lines cover.jpg -[2018-02-13T08:25:31.727] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:25:31.772] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:25:31.781] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:25:31.798] [INFO] cheese - inserting 1000 documents. first: List of North American Deserts and last: William Cavendish-Bentinck, 6th Duke of Portland -[2018-02-13T08:25:31.804] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:25:31.798] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:25:31.945] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:25:32.141] [INFO] cheese - inserting 1000 documents. first: File:Mighty-Gabby-2007.jpg and last: Wikipedia:Articles for deletion/Tim Mudde -[2018-02-13T08:25:32.191] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:32.196] [INFO] cheese - inserting 1000 documents. first: Category:File-Class South African politics articles and last: Jiangning County -[2018-02-13T08:25:32.224] [INFO] cheese - inserting 1000 documents. first: Template:Chital macher muitha and last: Talento Dorado -[2018-02-13T08:25:32.253] [INFO] cheese - inserting 1000 documents. first: Rouville, Seine-Maritime and last: Pogonomyrmex maricopa -[2018-02-13T08:25:32.261] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:25:32.270] [INFO] cheese - inserting 1000 documents. first: Iecava (river) and last: 5th cranial nerve -[2018-02-13T08:25:32.284] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:25:32.312] [INFO] cheese - inserting 1000 documents. first: Category:Karnataka articles by importance and last: Category:Museums by type -[2018-02-13T08:25:32.340] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:25:32.346] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:25:32.393] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:25:32.526] [INFO] cheese - inserting 1000 documents. first: Coat of arms of New York and last: Yitschak Rabin -[2018-02-13T08:25:32.562] [INFO] cheese - inserting 1000 documents. first: Rising Sun (yacht) and last: Chichester, Sir Francis Charles -[2018-02-13T08:25:32.602] [INFO] cheese - inserting 1000 documents. first: George DeBenedicty and last: Category:British television articles by quality -[2018-02-13T08:25:32.609] [INFO] cheese - batch complete in: 1.856 secs -[2018-02-13T08:25:32.625] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:25:32.681] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:25:32.791] [INFO] cheese - inserting 1000 documents. first: Largest bones and last: Paula Lanz -[2018-02-13T08:25:32.804] [INFO] cheese - inserting 1000 documents. first: Carposina anopta and last: Linda Griffiths (playwright) -[2018-02-13T08:25:32.857] [INFO] cheese - inserting 1000 documents. first: Kesek and last: Category:Swing bridges in the United Kingdom -[2018-02-13T08:25:32.871] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:25:32.876] [INFO] cheese - inserting 1000 documents. first: D-trisomy syndrome and last: National Tang Soo Do Congress -[2018-02-13T08:25:32.886] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:25:32.894] [INFO] cheese - inserting 1000 documents. first: Gerald MacIntosh Johnston and last: Phospho Silicate Glass -[2018-02-13T08:25:32.986] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:25:33.041] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:25:33.045] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:25:33.311] [INFO] cheese - inserting 1000 documents. first: Shuvescha and last: Category:Populated places in Branch County, Michigan -[2018-02-13T08:25:33.324] [INFO] cheese - inserting 1000 documents. first: Fateless (film) and last: Even in Blackouts -[2018-02-13T08:25:33.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Battle of Ismailia/archive1 and last: Category:10th-century establishments in Germany -[2018-02-13T08:25:33.414] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:25:33.422] [INFO] cheese - inserting 1000 documents. first: L'Aldosa and last: Bossuet, Jacques Benigne -[2018-02-13T08:25:33.481] [INFO] cheese - inserting 1000 documents. first: Paula Blazquez and last: Category:Counties of South Shore (Massachusetts) -[2018-02-13T08:25:33.494] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:25:33.497] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:25:33.527] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:25:33.645] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:33.657] [INFO] cheese - inserting 1000 documents. first: Velcro dogs and last: Jean Pierre de Caussade -[2018-02-13T08:25:33.808] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:25:33.940] [INFO] cheese - inserting 1000 documents. first: Paros Airport and last: Joshua Mauga -[2018-02-13T08:25:33.980] [INFO] cheese - inserting 1000 documents. first: Nils Otto Gustaf Nordenskjoeld and last: Hastings--Frontenac--Lennox & Addington -[2018-02-13T08:25:34.002] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:25:34.015] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:25:34.117] [INFO] cheese - inserting 1000 documents. first: Category:990s in Germany and last: Valeska Stock -[2018-02-13T08:25:34.191] [INFO] cheese - inserting 1000 documents. first: Bučka and last: Balta Tocila -[2018-02-13T08:25:34.223] [INFO] cheese - inserting 1000 documents. first: John S. Ridley and last: Albert Gore Jr. -[2018-02-13T08:25:34.297] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:25:34.309] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:25:34.398] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:25:34.471] [INFO] cheese - inserting 1000 documents. first: Portal:Dogs/Selected breed/57 and last: Frankenia salina -[2018-02-13T08:25:34.482] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/146.115.179.22/Archive and last: Rèpertoire Bibliographique de la Philosophie -[2018-02-13T08:25:34.560] [INFO] cheese - inserting 1000 documents. first: Ahmed Shukairy and last: Mathematicians -[2018-02-13T08:25:34.603] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:25:34.615] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:25:34.693] [INFO] cheese - inserting 1000 documents. first: Volveras and last: Levitation (film) -[2018-02-13T08:25:34.722] [INFO] cheese - inserting 1000 documents. first: Auckland Supercity and last: Achupallas Parish -[2018-02-13T08:25:34.844] [INFO] cheese - inserting 1000 documents. first: 1969–70 AL-Bank Ligaen season and last: Wikipedia:GLAM/JoburgpediA/No1 Challenge -[2018-02-13T08:25:34.917] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:25:34.937] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:25:34.996] [INFO] cheese - batch complete in: 2.386 secs -[2018-02-13T08:25:35.065] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:25:35.208] [INFO] cheese - inserting 1000 documents. first: Golu Grabicina and last: St. Elmo (1923 British film) -[2018-02-13T08:25:35.318] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:25:35.415] [INFO] cheese - inserting 1000 documents. first: Big Brothers/Big Sisters of America and last: U.S. Patents Law -[2018-02-13T08:25:35.430] [INFO] cheese - inserting 1000 documents. first: Template:UC Santa Barbara Gauchos athletic director navbox and last: Sarann Knight Preddy -[2018-02-13T08:25:35.454] [INFO] cheese - inserting 1000 documents. first: Frank McEwen and last: File:Year of the dragon poster.jpg -[2018-02-13T08:25:35.512] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:25:35.514] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:25:35.551] [INFO] cheese - inserting 1000 documents. first: Category:Utah elections, 2004 and last: Wenatchee metropolitan statistical area -[2018-02-13T08:25:35.587] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:25:35.654] [INFO] cheese - inserting 1000 documents. first: Dating Agency Cyrano and last: Frans Sales Lega Airport -[2018-02-13T08:25:35.734] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:25:35.775] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:25:35.924] [INFO] cheese - inserting 1000 documents. first: Elisabeth Wiener and last: Dagmar Rubsam-Neubauer -[2018-02-13T08:25:36.020] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:25:36.049] [INFO] cheese - inserting 1000 documents. first: Hermits of the Most Blessed Virgin Mary of Mount Carmel and last: Category:231 establishments -[2018-02-13T08:25:36.113] [INFO] cheese - inserting 1000 documents. first: Louis L 'Amour and last: Boltana, Spain -[2018-02-13T08:25:36.164] [INFO] cheese - inserting 1000 documents. first: Romona, Indiana and last: Hugh Montgomery (mathematician) -[2018-02-13T08:25:36.220] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:25:36.236] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:25:36.246] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jungjangbi Plaza and last: The X File -[2018-02-13T08:25:36.302] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:25:36.421] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:25:36.467] [INFO] cheese - inserting 1000 documents. first: Ruteng Airport and last: File:City of Hazard Seal.gif -[2018-02-13T08:25:36.512] [INFO] cheese - inserting 1000 documents. first: Category:1909 in military history and last: Carrion de Calatrava -[2018-02-13T08:25:36.574] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T08:25:36.573] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:25:36.740] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Say Hey and last: Amazon weasel -[2018-02-13T08:25:36.742] [INFO] cheese - inserting 1000 documents. first: Dagmar Rübsam-Neubauer and last: Category:Trinidad and Tobago beach volleyball players -[2018-02-13T08:25:36.782] [INFO] cheese - inserting 1000 documents. first: John Randolph Grymes and last: Syncopacma linella -[2018-02-13T08:25:36.827] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:25:36.821] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:25:36.864] [INFO] cheese - inserting 1000 documents. first: Home Construction Limited and last: La Hoya de Bunol -[2018-02-13T08:25:36.866] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:25:36.949] [INFO] cheese - inserting 1000 documents. first: Description Logic and last: Safari -[2018-02-13T08:25:36.952] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:25:36.956] [INFO] cheese - inserting 1000 documents. first: Jostein Løfsgaard and last: Allen Penner -[2018-02-13T08:25:37.068] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:25:37.078] [INFO] cheese - batch complete in: 2.082 secs -[2018-02-13T08:25:37.199] [INFO] cheese - inserting 1000 documents. first: Alton station (Illinois) and last: Debra Ann Livingston -[2018-02-13T08:25:37.245] [INFO] cheese - inserting 1000 documents. first: Sally (TV series) and last: Hajji Alian -[2018-02-13T08:25:37.291] [INFO] cheese - inserting 1000 documents. first: CaSO4*2H2O and last: Nijo Yasumichi -[2018-02-13T08:25:37.294] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:25:37.360] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T08:25:37.420] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:25:37.599] [INFO] cheese - inserting 1000 documents. first: Vonani Bila and last: Wynton Rufer -[2018-02-13T08:25:37.602] [INFO] cheese - inserting 1000 documents. first: Marny Eng and last: Category:Baker City, Oregon -[2018-02-13T08:25:37.624] [INFO] cheese - inserting 1000 documents. first: G. A. L. Burgeon and last: Category:GA-Class Pakistan Super League articles -[2018-02-13T08:25:37.686] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:25:37.725] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:25:37.759] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:25:37.829] [INFO] cheese - inserting 1000 documents. first: Nuestra Senora de Loreto and last: Garcia de Loaysa -[2018-02-13T08:25:37.882] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:25:38.019] [INFO] cheese - inserting 1000 documents. first: Category:People from Schkeuditz and last: Papineau, Quebec -[2018-02-13T08:25:38.055] [INFO] cheese - inserting 1000 documents. first: Kabudeh-ye Olya and last: 150th Indiana Infantry Regiment -[2018-02-13T08:25:38.105] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:25:38.145] [INFO] cheese - inserting 1000 documents. first: History of tax protesters and last: IHP-100 -[2018-02-13T08:25:38.156] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:25:38.317] [INFO] cheese - inserting 1000 documents. first: Schoenwald, Brandenburg and last: Guarneri del Gesu -[2018-02-13T08:25:38.418] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:25:38.425] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:25:38.570] [INFO] cheese - inserting 1000 documents. first: File:Dandenong Thunder SC Logo.jpg and last: 2011 UEFA European Under-21 Championship qualification play-offs -[2018-02-13T08:25:38.605] [INFO] cheese - inserting 1000 documents. first: Hiver (software) and last: Wikipedia:WikiProject Spam/LinkReports/tendonpain.org -[2018-02-13T08:25:38.704] [INFO] cheese - inserting 1000 documents. first: Lake Hayq and last: Platen, August, Graf von Platen-Hallermund -[2018-02-13T08:25:38.754] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:25:38.786] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:25:38.895] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:25:39.011] [INFO] cheese - inserting 1000 documents. first: Raise a question of privilege and last: Mogol-Korgon -[2018-02-13T08:25:39.076] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Naming conventions (anglicization) and last: Primitive root modulo n -[2018-02-13T08:25:39.090] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:25:39.147] [INFO] cheese - inserting 1000 documents. first: 2007 All-Ireland Minor Hurling Championship and last: TJ Sokol Živanice -[2018-02-13T08:25:39.223] [INFO] cheese - inserting 1000 documents. first: A262 road and last: Mary of Magdelene -[2018-02-13T08:25:39.284] [INFO] cheese - inserting 1000 documents. first: Category:1993 establishments in Malawi and last: Bébé et fillettes -[2018-02-13T08:25:39.305] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:25:39.307] [INFO] cheese - batch complete in: 2.229 secs -[2018-02-13T08:25:39.338] [INFO] cheese - inserting 1000 documents. first: Dublin Film Critics Circle Awards of 2011 and last: Hallo, Fräulein! -[2018-02-13T08:25:39.434] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:25:39.482] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:25:39.502] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:25:39.597] [INFO] cheese - inserting 1000 documents. first: Norra Vasterbotten and last: Francois Daunou -[2018-02-13T08:25:39.643] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:25:39.651] [INFO] cheese - inserting 1000 documents. first: Sergey Darkin (politician) and last: B1 road (Croatia) -[2018-02-13T08:25:39.752] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:25:39.761] [INFO] cheese - inserting 1000 documents. first: Money Don't Matter 2 Night and last: Round-robin networks -[2018-02-13T08:25:39.859] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:25:39.999] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Latin America/sandbox and last: Portal:Supreme Court of the United States/Selected anniversaries -[2018-02-13T08:25:40.048] [INFO] cheese - inserting 1000 documents. first: Citroën D Special and last: Handball at the 2015 African Games – Men's tournament -[2018-02-13T08:25:40.057] [INFO] cheese - inserting 1000 documents. first: Category:People from Circleville, Ohio and last: Haplopappus foliosus -[2018-02-13T08:25:40.063] [INFO] cheese - inserting 1000 documents. first: Piedra Plat and last: Five Forks, North Carolina -[2018-02-13T08:25:40.064] [INFO] cheese - inserting 1000 documents. first: Universal Indicator Red and last: A1023 road -[2018-02-13T08:25:40.067] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:25:40.132] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:25:40.142] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:25:40.154] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:25:40.211] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:25:40.351] [INFO] cheese - inserting 1000 documents. first: Mutnedjmet (21st dynasty) and last: Category:Museums in Washington County, Nebraska -[2018-02-13T08:25:40.446] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:25:40.502] [INFO] cheese - inserting 1000 documents. first: Huntley and Palmer and last: Branimir Bajić -[2018-02-13T08:25:40.635] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:25:40.651] [INFO] cheese - inserting 1000 documents. first: Peach production in China and last: Impress service -[2018-02-13T08:25:40.702] [INFO] cheese - inserting 1000 documents. first: Category:20th-century deaths from tuberculosis and last: Wikipedia:WikiProject Spam/LinkReports/googletv.blogspot.de -[2018-02-13T08:25:40.720] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:25:40.741] [INFO] cheese - inserting 1000 documents. first: A1011 road and last: Morgenthau Lectures -[2018-02-13T08:25:40.744] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Good articles/Recruitment Centre/Recruiter Central/Archives/Domesticenginerd and last: Mathias Schamp -[2018-02-13T08:25:40.755] [INFO] cheese - inserting 1000 documents. first: Djelida and last: Alien vs. Predator series -[2018-02-13T08:25:40.783] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:25:40.818] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:25:40.909] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:25:40.913] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:25:41.047] [INFO] cheese - inserting 1000 documents. first: Liebe Ist Fur Alle Da and last: Coniston Railway -[2018-02-13T08:25:41.105] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:25:41.141] [INFO] cheese - inserting 1000 documents. first: Category:Works based on religious texts and last: Ucte vaikom -[2018-02-13T08:25:41.150] [INFO] cheese - inserting 1000 documents. first: Press and last: Gusto (album) -[2018-02-13T08:25:41.247] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:25:41.294] [INFO] cheese - inserting 1000 documents. first: Portal:Amphibians/Things you can do and last: Staret -[2018-02-13T08:25:41.305] [INFO] cheese - batch complete in: 1.998 secs -[2018-02-13T08:25:41.333] [INFO] cheese - inserting 1000 documents. first: JFK assassination Timeline and last: Labour Party League of Youth -[2018-02-13T08:25:41.350] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:41.360] [INFO] cheese - inserting 1000 documents. first: Székelys of Bukovina and last: Wikipedia:Miscellany for deletion/Wikipedia:Infobox standardisation -[2018-02-13T08:25:41.366] [INFO] cheese - inserting 1000 documents. first: A4232 road and last: Nicholas Mukomberanwa -[2018-02-13T08:25:41.424] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/lakesidetrader.com and last: Pygora bourgoini -[2018-02-13T08:25:41.441] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:25:41.448] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:25:41.541] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:25:41.621] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:25:41.734] [INFO] cheese - inserting 1000 documents. first: Proragrotis longidens and last: Deepcar, South Yorkshire -[2018-02-13T08:25:41.781] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:25:41.901] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Mawza Exile and last: Gavan Moran -[2018-02-13T08:25:41.937] [INFO] cheese - inserting 1000 documents. first: James Cook Boys Technology High School and last: Dilatory motions and tactics -[2018-02-13T08:25:41.945] [INFO] cheese - inserting 1000 documents. first: Template:AFR lines and last: Martin Volke -[2018-02-13T08:25:42.004] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:25:42.040] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:25:42.075] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:25:42.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Latter Day Saint movement/Temples and last: Memorial Lake State Park -[2018-02-13T08:25:42.256] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:25:42.460] [INFO] cheese - inserting 1000 documents. first: Shoulder pad sign and last: Focke-Wulf Rochen -[2018-02-13T08:25:42.470] [INFO] cheese - inserting 1000 documents. first: Trade show display and last: Portal:History/Featured picture/March, 2008 -[2018-02-13T08:25:42.472] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/roboticsdesign.qc.ca and last: Brief Crossing -[2018-02-13T08:25:42.516] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:25:42.546] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:25:42.565] [INFO] cheese - inserting 1000 documents. first: File:FK Ala-Too Naryn Logo.png and last: Aleksey Grechkin -[2018-02-13T08:25:42.564] [INFO] cheese - inserting 1000 documents. first: Chercher la femme and last: Jim Hamilton (footballer, born 1976) -[2018-02-13T08:25:42.591] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:25:42.639] [INFO] cheese - inserting 1000 documents. first: HKU Students' Union and last: Golden Bamboo -[2018-02-13T08:25:42.664] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:25:42.922] [INFO] cheese - batch complete in: 1.377 secs -[2018-02-13T08:25:42.880] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:25:43.013] [INFO] cheese - inserting 1000 documents. first: Therain and last: Ruhen -[2018-02-13T08:25:43.103] [INFO] cheese - inserting 1000 documents. first: Boulogne Forest and last: Rudby -[2018-02-13T08:25:43.097] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:25:43.225] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:25:43.239] [INFO] cheese - inserting 1000 documents. first: L'Hopital's rule and last: 1921 in literature -[2018-02-13T08:25:43.330] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Johanstr and last: List of asteroids/173601–173700 -[2018-02-13T08:25:43.357] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:25:43.370] [INFO] cheese - batch complete in: 2.065 secs -[2018-02-13T08:25:43.416] [INFO] cheese - inserting 1000 documents. first: At the Beautiful Blue Danube and last: Yujiulu Anluochen -[2018-02-13T08:25:43.459] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T08:25:43.466] [INFO] cheese - inserting 1000 documents. first: Drill music and last: Category:1998–99 in Croatian football -[2018-02-13T08:25:43.648] [INFO] cheese - inserting 1000 documents. first: Shillingstone Station Project and last: Chinese Flora -[2018-02-13T08:25:43.661] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Iron County, Michigan and last: National Settlement Depository -[2018-02-13T08:25:43.759] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:25:43.772] [INFO] cheese - inserting 1000 documents. first: List of asteroids/173701–173800 and last: List of asteroids/95401–95500 -[2018-02-13T08:25:43.856] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:25:43.943] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:25:43.999] [INFO] cheese - batch complete in: 1.408 secs -[2018-02-13T08:25:44.123] [INFO] cheese - inserting 1000 documents. first: Karpos Opstina, Republic of Macedonia and last: Woodruff cutter -[2018-02-13T08:25:44.226] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:25:44.243] [INFO] cheese - inserting 1000 documents. first: Loo brush and last: Ruthin School -[2018-02-13T08:25:44.265] [INFO] cheese - inserting 1000 documents. first: File:Joni Ladies.jpg and last: Agamedes and Trophonius -[2018-02-13T08:25:44.301] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:25:44.338] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:25:44.533] [INFO] cheese - inserting 1000 documents. first: Toyota New Global Architecture and last: LA 607 -[2018-02-13T08:25:44.540] [INFO] cheese - inserting 1000 documents. first: An tAthair Padraig O Duinnin and last: Va Dire A L'Amour -[2018-02-13T08:25:44.560] [INFO] cheese - inserting 1000 documents. first: Algernon de Courcy Lyons and last: Onctylus punctiger -[2018-02-13T08:25:44.560] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:25:44.589] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:25:44.620] [INFO] cheese - inserting 1000 documents. first: Barton Holiday and last: Notre Dame Univerisity -[2018-02-13T08:25:44.622] [INFO] cheese - inserting 1000 documents. first: Liis Lemsalu and last: Template:Hugo Award Best Novel 1961-1980 -[2018-02-13T08:25:44.665] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:25:44.687] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:25:44.748] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:25:44.898] [INFO] cheese - inserting 1000 documents. first: Ramsar Convention wetland and last: Perotin the Great -[2018-02-13T08:25:44.927] [INFO] cheese - inserting 1000 documents. first: Groove FM and last: Louis Baruch -[2018-02-13T08:25:44.949] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T08:25:45.040] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:25:45.159] [INFO] cheese - inserting 1000 documents. first: Sacco Societies Regulatory Authority and last: Category:Suspected Wikipedia sockpuppets of 2.98.218.197 -[2018-02-13T08:25:45.186] [INFO] cheese - inserting 1000 documents. first: LA 611-10 and last: Jiangzhou (historical prefecture in Jiangxi) -[2018-02-13T08:25:45.252] [INFO] cheese - inserting 1000 documents. first: Template:Scottish railway lines and last: Jean Charles -[2018-02-13T08:25:45.275] [INFO] cheese - inserting 1000 documents. first: 1900 in literature and last: Welly Wanging -[2018-02-13T08:25:45.279] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:25:45.272] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:25:45.348] [INFO] cheese - inserting 1000 documents. first: Template:Hugo Award Best Novel 1946-1960 and last: Macapaar -[2018-02-13T08:25:45.389] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:25:45.413] [INFO] cheese - batch complete in: 2.042 secs -[2018-02-13T08:25:45.491] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:25:45.554] [INFO] cheese - inserting 1000 documents. first: Soviet submarine V-1 and last: Commencement at Central Connecticut State University -[2018-02-13T08:25:45.678] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:25:45.789] [INFO] cheese - inserting 1000 documents. first: Lancaster, SC mSA and last: Utah State Route 21 -[2018-02-13T08:25:45.873] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:25:45.916] [INFO] cheese - inserting 1000 documents. first: Qianzhou (in modern Jiangxi) and last: File:KDNA studios, Granger WA, September 2015.jpg -[2018-02-13T08:25:45.944] [INFO] cheese - inserting 1000 documents. first: Thomas Coleman Andrews and last: File:Rangoon1969SEAG.PNG -[2018-02-13T08:25:45.988] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Jimkio12 and last: Venus Palermo -[2018-02-13T08:25:46.077] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:25:46.084] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:25:46.099] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:25:46.343] [INFO] cheese - inserting 1000 documents. first: File:Australian 2c Coin.png and last: Ecumenical Patriarch Dionysius II of Constantinople -[2018-02-13T08:25:46.462] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:25:46.513] [INFO] cheese - inserting 1000 documents. first: Template:Hierodula-stub and last: Drosera bifida -[2018-02-13T08:25:46.584] [INFO] cheese - inserting 1000 documents. first: Turones and last: Basilica ta' Pinu -[2018-02-13T08:25:46.589] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:25:46.747] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:25:46.763] [INFO] cheese - inserting 1000 documents. first: Master Dinanath and last: Category:Youth organizations based in Arizona -[2018-02-13T08:25:46.889] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:25:46.956] [INFO] cheese - inserting 1000 documents. first: Category:1901 in Washington (state) and last: Centre-left politics -[2018-02-13T08:25:46.965] [INFO] cheese - inserting 1000 documents. first: Category:1743 in Africa and last: UAAP Season 33 men's basketball tournament -[2018-02-13T08:25:47.004] [INFO] cheese - inserting 1000 documents. first: Portal:Philosophy of science/Selected article/16 and last: File:Forgednote.jpg -[2018-02-13T08:25:47.047] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:25:47.056] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:25:47.109] [INFO] cheese - inserting 1000 documents. first: The Cosmopolitan of Las Vegas and last: Alaska's congressional district -[2018-02-13T08:25:47.135] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:25:47.271] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:25:47.311] [INFO] cheese - inserting 1000 documents. first: List of Portuguese and last: National Drug Code -[2018-02-13T08:25:47.352] [INFO] cheese - inserting 1000 documents. first: Extra-ocular muscles and last: Wellingsbüttel -[2018-02-13T08:25:47.450] [INFO] cheese - inserting 1000 documents. first: Exocrine pancreas cell and last: Chalonvillars -[2018-02-13T08:25:47.474] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:25:47.500] [INFO] cheese - batch complete in: 2.059 secs -[2018-02-13T08:25:47.532] [INFO] cheese - inserting 1000 documents. first: Elijah Mizrachi and last: River Beck -[2018-02-13T08:25:47.587] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:25:47.722] [INFO] cheese - inserting 1000 documents. first: Julie Rowe and last: Rung (Transformers) -[2018-02-13T08:25:47.767] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:25:47.888] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:25:47.979] [INFO] cheese - inserting 1000 documents. first: FR. LOURDINO BARRETO and last: British Overseas Airways Corporation Flight 777-A -[2018-02-13T08:25:47.981] [INFO] cheese - inserting 1000 documents. first: Category:Washington articles with to-do lists and last: Template:User Part Time Resident-SF -[2018-02-13T08:25:48.040] [INFO] cheese - inserting 1000 documents. first: Pullet's Offspring and last: Category:Schools in Chisago County, Minnesota -[2018-02-13T08:25:48.119] [INFO] cheese - inserting 1000 documents. first: Cheirophanes ligaminosa and last: Valérie Tétreault -[2018-02-13T08:25:48.112] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:25:48.164] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:25:48.186] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:25:48.316] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:25:48.421] [INFO] cheese - inserting 1000 documents. first: Goldeneye platform and last: Skechup -[2018-02-13T08:25:48.487] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:25:48.574] [INFO] cheese - inserting 1000 documents. first: Pieve di Santo Stefano, Pesaro and last: Anton Profes -[2018-02-13T08:25:48.642] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:25:48.767] [INFO] cheese - inserting 1000 documents. first: Dakis Joannou and last: LIRF -[2018-02-13T08:25:48.814] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Clay County, Minnesota and last: Elizabeth Templetown -[2018-02-13T08:25:48.829] [INFO] cheese - inserting 1000 documents. first: Kansas History (journal) and last: File:Borgo San Dalmazzo-Stemma.png -[2018-02-13T08:25:48.847] [INFO] cheese - inserting 1000 documents. first: Sticky barley and last: ITunes 9 -[2018-02-13T08:25:48.848] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:25:48.938] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:25:48.965] [INFO] cheese - inserting 1000 documents. first: Template:North America in topic and last: Abbey of the Park -[2018-02-13T08:25:48.948] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:25:49.041] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:25:49.092] [INFO] cheese - inserting 1000 documents. first: 2015 Open d'Orléans – Singles and last: Bemis Inc -[2018-02-13T08:25:49.130] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:25:49.159] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:25:49.183] [INFO] cheese - inserting 1000 documents. first: Portal:Books/Selected biography/10 and last: Gilia minor -[2018-02-13T08:25:49.297] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:25:49.430] [INFO] cheese - inserting 1000 documents. first: Young Marble Giants and last: Notable Irish buildings -[2018-02-13T08:25:49.453] [INFO] cheese - inserting 1000 documents. first: Martin Mesik and last: Wikipedia:Sockpuppet investigations/SquirtsDream -[2018-02-13T08:25:49.516] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:25:49.520] [INFO] cheese - inserting 1000 documents. first: GEICO commercials and last: Studio International -[2018-02-13T08:25:49.534] [INFO] cheese - batch complete in: 2.033 secs -[2018-02-13T08:25:49.580] [INFO] cheese - inserting 1000 documents. first: Super Bad (Lil Boosie Album) and last: Mario Bros. (video game) -[2018-02-13T08:25:49.602] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:25:49.725] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:25:49.735] [INFO] cheese - inserting 1000 documents. first: Barbara De Fina and last: Template:Wrestler-stub -[2018-02-13T08:25:49.745] [INFO] cheese - inserting 1000 documents. first: Category:Malaysian martial arts films and last: Max Hetherington -[2018-02-13T08:25:49.838] [INFO] cheese - inserting 1000 documents. first: Wilfredo Santa-Gómez and last: Lists of Jews associated with literature and journalism -[2018-02-13T08:25:49.854] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:25:49.860] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:25:49.887] [INFO] cheese - inserting 1000 documents. first: Dubai Gold Souk and last: Batken District -[2018-02-13T08:25:49.989] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:49.995] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:25:50.164] [INFO] cheese - inserting 1000 documents. first: 1766 in Denmark and last: New Horizons (The Sylvers Album) -[2018-02-13T08:25:50.184] [INFO] cheese - inserting 1000 documents. first: Template:Age in years, months, weeks, days and hours/doc and last: Jabo na kena? Jabo -[2018-02-13T08:25:50.238] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:25:50.301] [INFO] cheese - inserting 1000 documents. first: Matchday II and last: Presidents of Montenegro -[2018-02-13T08:25:50.312] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:25:50.354] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:25:50.482] [INFO] cheese - inserting 1000 documents. first: Macho (nickname) and last: Athletics at the 2015 African Games – Women's shot put -[2018-02-13T08:25:50.552] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:50.579] [INFO] cheese - inserting 1000 documents. first: Usuki (Neopets) and last: Georgia Route 38 Business -[2018-02-13T08:25:50.603] [INFO] cheese - inserting 1000 documents. first: Karman limit and last: Birdy Sweeney -[2018-02-13T08:25:50.679] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:25:50.695] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:25:50.829] [INFO] cheese - inserting 1000 documents. first: Category:Chemehuevi and last: Ch'ienmen -[2018-02-13T08:25:50.834] [INFO] cheese - inserting 1000 documents. first: Sa'did dynasty and last: Dumpas -[2018-02-13T08:25:50.901] [INFO] cheese - inserting 1000 documents. first: Pittsburgh mayoral election 1993 and last: Jones v. United States -[2018-02-13T08:25:50.899] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:25:50.933] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:25:50.985] [INFO] cheese - inserting 1000 documents. first: Category:Sports in Metro Detroit and last: Bealings -[2018-02-13T08:25:50.994] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:25:51.107] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:25:51.182] [INFO] cheese - inserting 1000 documents. first: Arandas (baseball club) and last: Stomopteryx cirrhocoma -[2018-02-13T08:25:51.254] [INFO] cheese - inserting 1000 documents. first: Byelorussian Soviet Socialist Republic and last: Honor Lost: Love and Death in Modern-Day Jordan -[2018-02-13T08:25:51.261] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:25:51.310] [INFO] cheese - inserting 1000 documents. first: Georgia State Highway 38 Business and last: Wikipedia:Articles for deletion/Soul-Crusher (song) -[2018-02-13T08:25:51.388] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:25:51.388] [INFO] cheese - batch complete in: 1.854 secs -[2018-02-13T08:25:51.491] [INFO] cheese - inserting 1000 documents. first: Chienmen and last: Gladstone Peak -[2018-02-13T08:25:51.577] [INFO] cheese - inserting 1000 documents. first: John Somers Dines and last: Southern Pacific 1293 -[2018-02-13T08:25:51.579] [INFO] cheese - inserting 1000 documents. first: Category:Breton masculine given names and last: Wikipedia:Reference desk/Archives/Language/2011 June 17 -[2018-02-13T08:25:51.597] [INFO] cheese - inserting 1000 documents. first: Escape From Cluster Prime and last: Wikipedia:Articles for deletion/Mechanical Fingerprint -[2018-02-13T08:25:51.625] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:25:51.640] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:25:51.696] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:25:51.724] [INFO] cheese - inserting 1000 documents. first: Category:American religion academics and last: Wikipedia:Articles for deletion/Last Name -[2018-02-13T08:25:51.767] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:25:51.929] [INFO] cheese - inserting 1000 documents. first: Stomopteryx credula and last: Edge of Paradise (disambiguation) -[2018-02-13T08:25:51.954] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:25:52.083] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:25:52.204] [INFO] cheese - inserting 1000 documents. first: George Knight and last: Wikipedia:Articles for deletion/Mike pinto -[2018-02-13T08:25:52.310] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:25:52.451] [INFO] cheese - inserting 1000 documents. first: Robert Mosley Master and last: Category:Little Ferry, New Jersey -[2018-02-13T08:25:52.508] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:25:52.521] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Elinor McKenzie Shield and last: Gillmeria irakella -[2018-02-13T08:25:52.618] [INFO] cheese - inserting 1000 documents. first: Lawyer bird and last: Sergey Plakhtiy -[2018-02-13T08:25:52.633] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:25:52.721] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:25:52.727] [INFO] cheese - inserting 1000 documents. first: File:Bontnewyddstationsept2015.jpg and last: File:University seal.png -[2018-02-13T08:25:52.774] [INFO] cheese - inserting 1000 documents. first: Wentzel-Kramers-Brillouin approximation and last: Wawayanda Railroad -[2018-02-13T08:25:52.798] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:25:52.834] [INFO] cheese - inserting 1000 documents. first: Outline of Lebanon and last: Route 4 (Nagoya Expressway) -[2018-02-13T08:25:52.876] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:25:52.956] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:25:53.014] [INFO] cheese - inserting 1000 documents. first: Technomancer and last: Santa Catalina la Tinta -[2018-02-13T08:25:53.069] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:25:53.167] [INFO] cheese - inserting 1000 documents. first: New York Leader and last: The Man With Icy Eyes -[2018-02-13T08:25:53.194] [INFO] cheese - inserting 1000 documents. first: Pavel Vyskočil and last: Abdulbari Gadzhiev -[2018-02-13T08:25:53.205] [INFO] cheese - inserting 1000 documents. first: ActiveRisk and last: Dibang Valley Wildlife Sanctuary -[2018-02-13T08:25:53.238] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:25:53.280] [INFO] cheese - inserting 1000 documents. first: Carl Bengts and last: Ohio State Route 387 -[2018-02-13T08:25:53.285] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:25:53.297] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:25:53.330] [INFO] cheese - inserting 1000 documents. first: List of tunnels in the Netherlands and last: Einstein shift -[2018-02-13T08:25:53.334] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:25:53.492] [INFO] cheese - inserting 1000 documents. first: Orange County Railroad and last: Xamesike -[2018-02-13T08:25:53.526] [INFO] cheese - batch complete in: 2.138 secs -[2018-02-13T08:25:53.712] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:25:53.832] [INFO] cheese - inserting 1000 documents. first: St. Furseus and last: File:Redriders replica cover.jpg -[2018-02-13T08:25:53.839] [INFO] cheese - inserting 1000 documents. first: File:PleasantonRidge12.jpg and last: Template:Infobox National Paralympic Committee/doc -[2018-02-13T08:25:53.888] [INFO] cheese - inserting 1000 documents. first: Oscar S. Heiser and last: African Basketball Championship -[2018-02-13T08:25:53.902] [INFO] cheese - inserting 1000 documents. first: Category:Hellenistic Pontus and last: Rope and Skin -[2018-02-13T08:25:53.915] [INFO] cheese - inserting 1000 documents. first: International Motorcycle and Scooter Show and last: Sleagh Maith -[2018-02-13T08:25:53.931] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:25:53.967] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:25:53.995] [INFO] cheese - inserting 1000 documents. first: Category:Books by James Ellroy and last: Trysfjorden -[2018-02-13T08:25:54.064] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:25:54.068] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:25:54.128] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:25:54.172] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:25:54.446] [INFO] cheese - inserting 1000 documents. first: Severomoravský and last: Takutea -[2018-02-13T08:25:54.556] [INFO] cheese - inserting 1000 documents. first: Robert Peralta and last: Category:Houses in Brighton and Hove -[2018-02-13T08:25:54.557] [INFO] cheese - inserting 1000 documents. first: Template:1967 Richmond premiership players and last: Wikipedia:WikiProject Spam/LinkReports/ywamonestory.org -[2018-02-13T08:25:54.522] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:25:54.589] [INFO] cheese - inserting 1000 documents. first: Dan Oniroku nawa to hada and last: Fate: The Traitor Soul -[2018-02-13T08:25:54.606] [INFO] cheese - inserting 1000 documents. first: Category:2003 establishments in Qatar and last: W. Jeffrey Bolster -[2018-02-13T08:25:54.626] [INFO] cheese - inserting 1000 documents. first: Behavioral Biology and last: Wikipedia:Articles for deletion/Say the Time (2nd nomination) -[2018-02-13T08:25:54.635] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:54.678] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:25:54.683] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:25:54.689] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:25:54.708] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:25:54.858] [INFO] cheese - inserting 1000 documents. first: HARRY HOPKINSON (HARRY TORRANI) and last: The Haitian (Heroes) -[2018-02-13T08:25:54.936] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:25:55.110] [INFO] cheese - inserting 1000 documents. first: File:Champion 33.jpg and last: Johan Olof Nystroem -[2018-02-13T08:25:55.114] [INFO] cheese - inserting 1000 documents. first: American Journal of Medical Quality and last: Fruit pectin -[2018-02-13T08:25:55.142] [INFO] cheese - batch complete in: 0.434 secs -[2018-02-13T08:25:55.155] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:25:55.178] [INFO] cheese - inserting 1000 documents. first: Leman International School and last: FMLS -[2018-02-13T08:25:55.207] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bodybalance and last: Bose-Einstein Statistics -[2018-02-13T08:25:55.222] [INFO] cheese - inserting 1000 documents. first: Clyde Tolson and last: Neanderthals Bandits and Farmers -[2018-02-13T08:25:55.231] [INFO] cheese - inserting 1000 documents. first: Kondana Caves and last: Pepita; or, the Girl with the Glass Eyes -[2018-02-13T08:25:55.232] [INFO] cheese - inserting 1000 documents. first: YWCA, Phyllis Weatley Branch and last: Mícheál Mac Suibhne -[2018-02-13T08:25:55.256] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:55.283] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:25:55.324] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:25:55.333] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:25:55.389] [INFO] cheese - batch complete in: 1.863 secs -[2018-02-13T08:25:55.465] [INFO] cheese - inserting 1000 documents. first: Elzbieta Pierzchala and last: Schonhausen (Mecklenburg) -[2018-02-13T08:25:55.522] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:25:55.563] [INFO] cheese - inserting 1000 documents. first: Paris-Beauvais-Tille Airport and last: Jimmy Dixon -[2018-02-13T08:25:55.653] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:25:55.769] [INFO] cheese - inserting 1000 documents. first: Forest Springs, California (disambiguation) and last: File:JuliavonAnstetten.jpg -[2018-02-13T08:25:55.808] [INFO] cheese - inserting 1000 documents. first: Category:Football at the All-Africa Games and last: The BBC Sessions (Ocean Colour Scene) -[2018-02-13T08:25:55.811] [INFO] cheese - inserting 1000 documents. first: Evin-Malmaison and last: Gonnersdorf (Eifel) -[2018-02-13T08:25:55.820] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:25:55.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Rhodotus/archive1 and last: Theodora of Alexandria -[2018-02-13T08:25:55.851] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:25:55.872] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:25:56.036] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:25:56.046] [INFO] cheese - inserting 1000 documents. first: Michael Barbiero and last: Advanced Data Guarding -[2018-02-13T08:25:56.178] [INFO] cheese - inserting 1000 documents. first: Category:1867 establishments in Bavaria and last: Manimaran -[2018-02-13T08:25:56.189] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:25:56.283] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:25:56.357] [INFO] cheese - inserting 1000 documents. first: MetroTen and last: Koos Ras -[2018-02-13T08:25:56.388] [INFO] cheese - inserting 1000 documents. first: D.I.E. and last: File:Teenage Animator Patrick Beardmore.jpg -[2018-02-13T08:25:56.470] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:25:56.540] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:25:56.583] [INFO] cheese - inserting 1000 documents. first: Template:WP Penn and last: Vyacheslav Vsevolodovich Ivanov -[2018-02-13T08:25:56.628] [INFO] cheese - inserting 1000 documents. first: Category:Companies based in Spring Valley, Nevada and last: Darenth Country Park -[2018-02-13T08:25:56.668] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:25:56.702] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:25:56.721] [INFO] cheese - inserting 1000 documents. first: David Frederick Cunningham and last: File:NotSinceCarrie.jpg -[2018-02-13T08:25:56.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/PHP Mirrors and last: File:JGBallard.jpg -[2018-02-13T08:25:56.812] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:25:56.858] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:25:56.948] [INFO] cheese - inserting 1000 documents. first: Frederick William Lillywhite and last: Distance (SS501 song) -[2018-02-13T08:25:56.952] [INFO] cheese - inserting 1000 documents. first: WBO and last: File:BostonBoston.jpg -[2018-02-13T08:25:56.998] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:25:57.003] [INFO] cheese - inserting 1000 documents. first: Borgo Press and last: File:EnglandCambridgeshireTrad.png -[2018-02-13T08:25:57.040] [INFO] cheese - batch complete in: 1.65 secs -[2018-02-13T08:25:57.074] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:25:57.119] [INFO] cheese - inserting 1000 documents. first: Adao Nunes Dornelles and last: Anales de Fisica -[2018-02-13T08:25:57.168] [INFO] cheese - inserting 1000 documents. first: Knickerbocker Holiday (film) and last: Template:WP Airport -[2018-02-13T08:25:57.176] [INFO] cheese - batch complete in: 0.318 secs -[2018-02-13T08:25:57.217] [INFO] cheese - inserting 1000 documents. first: Get Stoned and last: Wikipedia:AVATARMAIN -[2018-02-13T08:25:57.259] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:25:57.283] [INFO] cheese - inserting 1000 documents. first: Category:840s BC births and last: Template:Country data Baroda State -[2018-02-13T08:25:57.284] [INFO] cheese - inserting 1000 documents. first: File:Le Livre du cœur d'amour épris1 edited.jpg and last: Arkansas Highway 308 Business -[2018-02-13T08:25:57.356] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:25:57.367] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:25:57.438] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:25:57.554] [INFO] cheese - inserting 1000 documents. first: Ilheus Jorge Amado Airport and last: 2008 V8 Supercars Manufacturers Challenge -[2018-02-13T08:25:57.572] [INFO] cheese - inserting 1000 documents. first: Category:NIFL Championship and last: File:Rylan-Zamprogna Dante-Lulu2013.jpg -[2018-02-13T08:25:57.605] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:25:57.661] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:25:57.771] [INFO] cheese - inserting 1000 documents. first: Dial (display) and last: Persephone (goddess) -[2018-02-13T08:25:57.918] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:25:57.941] [INFO] cheese - inserting 1000 documents. first: Category:People from Scornicești and last: 2005 Hyderabad Open -[2018-02-13T08:25:57.955] [INFO] cheese - inserting 1000 documents. first: Waterloo Road tram stop and last: Clown shoe -[2018-02-13T08:25:57.968] [INFO] cheese - inserting 1000 documents. first: Template:Wrathchild America and last: Ray Cat -[2018-02-13T08:25:58.043] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:25:58.070] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:25:58.113] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:25:58.160] [INFO] cheese - inserting 1000 documents. first: Order and Chaos Online and last: Mahindra Reva Electric Vehicles Private Limited -[2018-02-13T08:25:58.231] [INFO] cheese - inserting 1000 documents. first: Columbia Recording Studio and last: Interchanges '54 -[2018-02-13T08:25:58.266] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:25:58.272] [INFO] cheese - inserting 1000 documents. first: Day of the Barricades and last: Corte de’ Cortesi con Cignone -[2018-02-13T08:25:58.334] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:25:58.411] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:25:58.437] [INFO] cheese - inserting 1000 documents. first: Boston (album) and last: Celine Dion -[2018-02-13T08:25:58.539] [INFO] cheese - inserting 1000 documents. first: Safe Conducts Act 1414 and last: Abdel Hamid Badawi -[2018-02-13T08:25:58.553] [INFO] cheese - batch complete in: 1.513 secs -[2018-02-13T08:25:58.610] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:25:58.629] [INFO] cheese - inserting 1000 documents. first: Field dressing (bandage) and last: Wikipedia:Featured picture candidates/Autofellatio -[2018-02-13T08:25:58.664] [INFO] cheese - inserting 1000 documents. first: Yvon Côté and last: Carpentarian Pseudantechinus -[2018-02-13T08:25:58.712] [INFO] cheese - inserting 1000 documents. first: Ray cat and last: Amtrak America -[2018-02-13T08:25:58.734] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:25:58.739] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:25:58.788] [INFO] cheese - inserting 1000 documents. first: Halifax Explosion Memorial Sculpture and last: Carmelo Juan Giaquinta -[2018-02-13T08:25:58.847] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:25:58.874] [INFO] cheese - inserting 1000 documents. first: Category:1891–92 in Canadian ice hockey and last: Leptopelis uluguruensis -[2018-02-13T08:25:58.916] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Leigh Jason and last: Alojzy Gonzaga Zolkowski -[2018-02-13T08:25:58.989] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:25:59.107] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:25:59.084] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:25:59.309] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ashida Kim (7th nomination) and last: Jose Vicente -[2018-02-13T08:25:59.355] [INFO] cheese - inserting 1000 documents. first: San Juan Bautista, Suchitepequez and last: Suederdeich -[2018-02-13T08:25:59.372] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:25:59.388] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T08:25:59.431] [INFO] cheese - inserting 1000 documents. first: The War Nerd and last: Aldege "Baz" Bastien Memorial Award -[2018-02-13T08:25:59.438] [INFO] cheese - inserting 1000 documents. first: Template:United States vice presidential candidate selection and last: File:Ranviir the Marshal Poster.jpg -[2018-02-13T08:25:59.463] [INFO] cheese - inserting 1000 documents. first: Le Sacre du Sauvage and last: Category:Articles with empty sections from July 2013 -[2018-02-13T08:25:59.489] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:25:59.554] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:25:59.577] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:25:59.610] [INFO] cheese - inserting 1000 documents. first: The ship of state and last: Category:Rugby union fullbacks -[2018-02-13T08:25:59.614] [INFO] cheese - inserting 1000 documents. first: Vagli di Sotto and last: Category:Local museums in Hertfordshire -[2018-02-13T08:25:59.682] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:25:59.715] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:25:59.753] [INFO] cheese - inserting 1000 documents. first: Category:Economy of Salt Lake City and last: Rengsjobilen -[2018-02-13T08:25:59.826] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T08:25:59.911] [INFO] cheese - inserting 1000 documents. first: P = BPP problem and last: Lady GaGa The Fame:Monster -[2018-02-13T08:26:00.049] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:26:00.057] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lake Alice Hospital and last: Cronian -[2018-02-13T08:26:00.126] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia introduction cleanup from July 2013 and last: Artur Kopytin -[2018-02-13T08:26:00.142] [INFO] cheese - inserting 1000 documents. first: Wahlstroem & Widstrand and last: Teo, A Coruna -[2018-02-13T08:26:00.145] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:26:00.225] [INFO] cheese - inserting 1000 documents. first: Robert E. Connick and last: Emperor Akihito of Japan -[2018-02-13T08:26:00.265] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T08:26:00.283] [INFO] cheese - inserting 1000 documents. first: Ikka Singh and last: Template:Sports icon 2 -[2018-02-13T08:26:00.299] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:26:00.328] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Ysgol y Strade and last: Medical grafting -[2018-02-13T08:26:00.429] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:26:00.445] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:26:00.463] [INFO] cheese - batch complete in: 1.91 secs -[2018-02-13T08:26:00.561] [INFO] cheese - inserting 1000 documents. first: Silent call and last: Category:Law enforcement in Kenya -[2018-02-13T08:26:00.590] [INFO] cheese - inserting 1000 documents. first: Szoelloesy and last: 洛陽 -[2018-02-13T08:26:00.603] [INFO] cheese - inserting 1000 documents. first: Paraibinha River and last: Notre Dame Fighting Irish football (1950-1959) -[2018-02-13T08:26:00.632] [INFO] cheese - batch complete in: 0.367 secs -[2018-02-13T08:26:00.646] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:26:00.667] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:26:00.903] [INFO] cheese - inserting 1000 documents. first: Śēkh Mujibur Rahmān and last: Zsa Zsa Zaturnnah -[2018-02-13T08:26:00.909] [INFO] cheese - inserting 1000 documents. first: Stilon Gorzów and last: Victor Tiedjens -[2018-02-13T08:26:00.918] [INFO] cheese - inserting 1000 documents. first: Frere Jacques in popular culture and last: Crossle Car Company -[2018-02-13T08:26:00.939] [INFO] cheese - inserting 1000 documents. first: Eagle-Picher Industries and last: All Souls' Church Sutton Green -[2018-02-13T08:26:00.961] [INFO] cheese - inserting 1000 documents. first: Media of Libya and last: Ebonite International -[2018-02-13T08:26:00.993] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:26:01.005] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T08:26:01.038] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:26:01.076] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:26:01.144] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:26:01.291] [INFO] cheese - inserting 1000 documents. first: Private Parriage and last: Category:Venezuelan people of Argentine descent -[2018-02-13T08:26:01.531] [INFO] cheese - inserting 1000 documents. first: Spring overshoot and last: Category:512 deaths -[2018-02-13T08:26:01.556] [INFO] cheese - inserting 1000 documents. first: Zaoldyeck Family and last: Truemmerliteratur -[2018-02-13T08:26:01.555] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:26:01.628] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:26:01.649] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:26:01.731] [INFO] cheese - inserting 1000 documents. first: 1927-28 Netherlands Football League Championship and last: 1977 IBF World Championships - Mixed Doubles -[2018-02-13T08:26:01.790] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:26:01.913] [INFO] cheese - inserting 1000 documents. first: Tatyarao Lahane and last: Offrejoie -[2018-02-13T08:26:01.978] [INFO] cheese - inserting 1000 documents. first: Dumlupinar (District), Kutahya and last: Category:Economy of New Orleans -[2018-02-13T08:26:02.035] [INFO] cheese - inserting 1000 documents. first: Infinite Vulcan and last: Jungle Operations Training Center -[2018-02-13T08:26:02.055] [INFO] cheese - inserting 1000 documents. first: Robert Mackenzie Beverley and last: Salt (sodium chloride) -[2018-02-13T08:26:02.054] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:26:02.067] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T08:26:02.171] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:26:02.214] [INFO] cheese - inserting 1000 documents. first: 1977 IBF World Championships - Women's Doubles and last: 1995 World Championships in Athletics - Women's 1500 metres -[2018-02-13T08:26:02.237] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:26:02.333] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:26:02.405] [INFO] cheese - inserting 1000 documents. first: Quanta Plus and last: Caricature -[2018-02-13T08:26:02.445] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Tilaran and last: Bach Ho -[2018-02-13T08:26:02.482] [INFO] cheese - batch complete in: 0.414 secs -[2018-02-13T08:26:02.492] [INFO] cheese - inserting 1000 documents. first: Suzhou Sports Center and last: File:The graph y = x√2.png -[2018-02-13T08:26:02.521] [INFO] cheese - inserting 1000 documents. first: Shaggy Man and last: Cypriot flag -[2018-02-13T08:26:02.539] [INFO] cheese - batch complete in: 2.076 secs -[2018-02-13T08:26:02.659] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:26:02.756] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:26:02.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mylanviewer.com and last: 2002 European Athletics Indoor Championships - Men's 60 metres -[2018-02-13T08:26:02.832] [INFO] cheese - inserting 1000 documents. first: File:Logotype of Offrejoie.jpg and last: Bojan Mijailović (footballer, born 1995) -[2018-02-13T08:26:02.837] [INFO] cheese - inserting 1000 documents. first: Ostgoeta nation (Uppsala) and last: FK Zlatibor Cajetina -[2018-02-13T08:26:02.859] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T08:26:02.872] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:26:02.898] [INFO] cheese - inserting 1000 documents. first: Leslie H. Saunders and last: Eberswalde (Martian crater) -[2018-02-13T08:26:02.913] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:26:02.997] [INFO] cheese - inserting 1000 documents. first: Category:Soft rock and last: JetBrains -[2018-02-13T08:26:02.991] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:03.201] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:26:03.253] [INFO] cheese - inserting 1000 documents. first: Category:Egyptian emigrants to Canada and last: 2007-08 TFF First League -[2018-02-13T08:26:03.355] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:26:03.362] [INFO] cheese - inserting 1000 documents. first: Twentysix-spotted potato ladybird and last: Kingdom of the East Angles -[2018-02-13T08:26:03.571] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:26:03.741] [INFO] cheese - inserting 1000 documents. first: V-Powerdeg and last: Val Schier (Cairns Mayor) -[2018-02-13T08:26:03.764] [INFO] cheese - inserting 1000 documents. first: Batman smells and last: Philippine-related topics -[2018-02-13T08:26:03.785] [INFO] cheese - inserting 1000 documents. first: Augustin Tschinkel and last: Soil density -[2018-02-13T08:26:03.805] [INFO] cheese - inserting 1000 documents. first: 2007-08 Torquay United F.C. season and last: Forest Springs, Nevada County, California -[2018-02-13T08:26:03.854] [INFO] cheese - inserting 1000 documents. first: Sir John Lauder, 1st Baronet and last: Neon-22 -[2018-02-13T08:26:03.859] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:26:03.942] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:26:03.955] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:26:03.973] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:26:04.035] [INFO] cheese - inserting 1000 documents. first: File:American Girl Bonnie McKee.jpg and last: Gcloud -[2018-02-13T08:26:04.050] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:26:04.304] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:26:04.379] [INFO] cheese - inserting 1000 documents. first: Kevin Byrne (Cairns Mayor) and last: Linderud Videregaende Skole -[2018-02-13T08:26:04.468] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:26:04.561] [INFO] cheese - inserting 1000 documents. first: 2010 World Weightlifting Championships - Men's 94 kg and last: Category:Mexican emigrants to Uruguay -[2018-02-13T08:26:04.631] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RoomSaver and last: Index of Windows games (Y) -[2018-02-13T08:26:04.664] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:26:04.735] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T08:26:04.768] [INFO] cheese - inserting 1000 documents. first: Stephano and last: Zeppelin bend -[2018-02-13T08:26:04.809] [INFO] cheese - inserting 1000 documents. first: Joseph-Elie Thibaudeau and last: Munster, Bavaria -[2018-02-13T08:26:04.850] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T08:26:04.878] [INFO] cheese - inserting 1000 documents. first: Tidal Wave (1943) and last: Susumanskii -[2018-02-13T08:26:04.896] [INFO] cheese - inserting 1000 documents. first: Did You Ever Have a Family and last: Chowilla floodplain -[2018-02-13T08:26:04.955] [INFO] cheese - batch complete in: 2.416 secs -[2018-02-13T08:26:04.980] [INFO] cheese - inserting 1000 documents. first: Chromium(III) oxide and last: 1930 in American television -[2018-02-13T08:26:05.003] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:26:05.019] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:26:05.086] [INFO] cheese - inserting 1000 documents. first: GCloud and last: Wikipedia:WikiProject Spam/Local/sculpturesbythesea.com.au -[2018-02-13T08:26:05.093] [INFO] cheese - inserting 1000 documents. first: Category:Apostle Islands National Lakeshore and last: Athletics at the 1924 Summer Olympics - Men's 3000 metres team race -[2018-02-13T08:26:05.101] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:26:05.175] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:26:05.204] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:26:05.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Anglicanism articles by quality/14 and last: IPA Extensions unicode block -[2018-02-13T08:26:05.469] [INFO] cheese - inserting 1000 documents. first: Lonsoeraefi and last: Petin -[2018-02-13T08:26:05.507] [INFO] cheese - inserting 1000 documents. first: Category:Sierra Leonean emigrants to the United States and last: Cycling at the 2010 Summer Youth Olympics - Girls' cross country -[2018-02-13T08:26:05.529] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:26:05.555] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:05.588] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:26:05.680] [INFO] cheese - inserting 1000 documents. first: Karuppu Panam (1964 film) and last: James Hesketh Biggs -[2018-02-13T08:26:05.839] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:26:05.854] [INFO] cheese - inserting 1000 documents. first: Ray Campbell (ice hockey) and last: Wikipedia:Articles for deletion/Géza von Neményi -[2018-02-13T08:26:05.966] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:26:06.010] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2010 Summer Youth Olympics - Girls' time trial and last: List of Scotland international footballers (1 - 4 caps) -[2018-02-13T08:26:06.082] [INFO] cheese - inserting 1000 documents. first: Grażyna Osmańska and last: File:SkudinaEkaterina5.jpg -[2018-02-13T08:26:06.082] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T08:26:06.092] [INFO] cheese - inserting 1000 documents. first: パラセクト and last: Confessions, part 2 -[2018-02-13T08:26:06.154] [INFO] cheese - inserting 1000 documents. first: Second Battle of Zuerich and last: V337 Car -[2018-02-13T08:26:06.213] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:26:06.263] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:26:06.275] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:26:06.455] [INFO] cheese - inserting 1000 documents. first: Latin Extended-B unicode block and last: Category:Permanent Secretaries of the Ministry of Technology -[2018-02-13T08:26:06.604] [INFO] cheese - inserting 1000 documents. first: List of Scotland international footballers (5 - 19 caps) and last: List of minor planets/166801-166900 -[2018-02-13T08:26:06.639] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:26:06.670] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:26:06.817] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2015/44/picture/caption and last: Jerry Dixon (actor) -[2018-02-13T08:26:06.818] [INFO] cheese - inserting 1000 documents. first: Water vapor feedback and last: Lordship of Chios -[2018-02-13T08:26:06.850] [INFO] cheese - inserting 1000 documents. first: Operation Decisive and last: Jean-Bertrand-Leon Foucault -[2018-02-13T08:26:06.984] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:26:06.994] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:26:07.019] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:26:07.137] [INFO] cheese - inserting 1000 documents. first: Double bowline and last: Thoughtpolice -[2018-02-13T08:26:07.183] [INFO] cheese - inserting 1000 documents. first: Patsy Kinsey and last: SMT 4 -[2018-02-13T08:26:07.288] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:26:07.330] [INFO] cheese - batch complete in: 2.375 secs -[2018-02-13T08:26:07.354] [INFO] cheese - inserting 1000 documents. first: Confessions Part 2 and last: File:Electric City of Music Instructor.jpg -[2018-02-13T08:26:07.384] [INFO] cheese - inserting 1000 documents. first: List of minor planets/166901-167000 and last: Template:TonyAward BestAuthor -[2018-02-13T08:26:07.459] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:26:07.487] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:26:07.546] [INFO] cheese - inserting 1000 documents. first: Villa de Sonador and last: Al Jenkins (EastEnders) -[2018-02-13T08:26:07.557] [INFO] cheese - inserting 1000 documents. first: Ocotlan Zapotec language and last: Froetuna -[2018-02-13T08:26:07.630] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:26:07.669] [INFO] cheese - inserting 1000 documents. first: Maya Station and last: Food stamp (disambiguation) -[2018-02-13T08:26:07.696] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:26:07.774] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:26:07.804] [INFO] cheese - inserting 1000 documents. first: Moses Najara I and last: State Route 528 (Ohio) -[2018-02-13T08:26:07.891] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/theusfl.com and last: Gerdkani-ye Olya -[2018-02-13T08:26:07.939] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:26:08.014] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:26:08.071] [INFO] cheese - inserting 1000 documents. first: Church of Our Lady in front of Tyn and last: IrisVision -[2018-02-13T08:26:08.130] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:26:08.163] [INFO] cheese - inserting 1000 documents. first: Jaswinder Singh and last: Georgetown, New Jersey -[2018-02-13T08:26:08.268] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:08.326] [INFO] cheese - inserting 1000 documents. first: Emperor Ichijo of Japan and last: Elliot Goldenthal -[2018-02-13T08:26:08.476] [INFO] cheese - inserting 1000 documents. first: Shearson Loeb Rhoades and last: Rosstown Railway Heritage Trail -[2018-02-13T08:26:08.480] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:26:08.485] [INFO] cheese - inserting 1000 documents. first: Frederic Jones (cricketer) and last: Phyllodesmium lizardense -[2018-02-13T08:26:08.547] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:26:08.602] [INFO] cheese - inserting 1000 documents. first: AquaMan and last: Rocket sauce -[2018-02-13T08:26:08.605] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:26:08.677] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:26:08.910] [INFO] cheese - inserting 1000 documents. first: List of minor planets/82701-82800 and last: HanAhReum -[2018-02-13T08:26:09.024] [INFO] cheese - inserting 1000 documents. first: Girdehkani Bala and last: Munson (surname) -[2018-02-13T08:26:09.056] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:26:09.093] [INFO] cheese - inserting 1000 documents. first: Viscardi and last: Hermis Moutardier -[2018-02-13T08:26:09.215] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T08:26:09.335] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:26:09.441] [INFO] cheese - inserting 1000 documents. first: Theocrastus Bombastus von Hohenheim and last: Colouring algorithm -[2018-02-13T08:26:09.481] [INFO] cheese - inserting 1000 documents. first: John McLean (US Associate Justice) and last: Forest school (education) -[2018-02-13T08:26:09.589] [INFO] cheese - inserting 1000 documents. first: Sirius satellite radio at the glen and last: Mario Frick (politician) -[2018-02-13T08:26:09.591] [INFO] cheese - inserting 1000 documents. first: Ben Loft and last: Cyprus turpentine -[2018-02-13T08:26:09.605] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:26:09.670] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:26:09.735] [INFO] cheese - inserting 1000 documents. first: 1759 in United States history and last: Portal:Maryland/On this day/August 24 -[2018-02-13T08:26:09.758] [INFO] cheese - batch complete in: 1.278 secs -[2018-02-13T08:26:09.780] [INFO] cheese - batch complete in: 2.449 secs -[2018-02-13T08:26:09.784] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:26:09.857] [INFO] cheese - inserting 1000 documents. first: Christopher Milo and last: Kostroga (PKP station) -[2018-02-13T08:26:09.966] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:26:10.103] [INFO] cheese - inserting 1000 documents. first: Universal Dictionary and last: Kuitun, Xinjiang -[2018-02-13T08:26:10.189] [INFO] cheese - inserting 1000 documents. first: Dorze language and last: Template:POTD protected/2008-03-19 -[2018-02-13T08:26:10.233] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:26:10.288] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:26:10.446] [INFO] cheese - inserting 1000 documents. first: Total Divas (season 5) and last: Wikipedia:WikiProject Spam/LinkReports/deordevandenacht.nl -[2018-02-13T08:26:10.476] [INFO] cheese - inserting 1000 documents. first: Crank It Up (Ashley Tisdale song) and last: C8H5Cl3O3 -[2018-02-13T08:26:10.486] [INFO] cheese - inserting 1000 documents. first: Shirawaka Tennō and last: The Crimson White -[2018-02-13T08:26:10.593] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:26:10.601] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:26:10.630] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:26:10.698] [INFO] cheese - inserting 1000 documents. first: 1st century in poetry and last: Category:2005 short stories -[2018-02-13T08:26:10.792] [INFO] cheese - inserting 1000 documents. first: Navigation Primary School and last: Eckeroe Linjen -[2018-02-13T08:26:10.838] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:26:10.952] [INFO] cheese - inserting 1000 documents. first: Bhavana (actor) and last: File:Traves-Stemma.png -[2018-02-13T08:26:10.956] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:26:11.042] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:26:11.327] [INFO] cheese - inserting 1000 documents. first: Cypriot Young Scientists ISCHYS (ISKhUS) and last: Felicien Chapuis -[2018-02-13T08:26:11.328] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/inventingelliot.googlepages.com and last: Dooryard plantain -[2018-02-13T08:26:11.335] [INFO] cheese - inserting 1000 documents. first: Alexander Alexandrovich Volkov (footballer) and last: Le Bon (disambiguation) -[2018-02-13T08:26:11.372] [INFO] cheese - inserting 1000 documents. first: Shaman King: Master of Spirits 2 and last: Matar Marka Al Dawli -[2018-02-13T08:26:11.379] [INFO] cheese - inserting 1000 documents. first: Template:Infobox rugby biography/sandbox3 and last: Portal:Iranian Azerbaijan/Selected picture/1 -[2018-02-13T08:26:11.437] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:26:11.466] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:26:11.500] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:26:11.535] [INFO] cheese - inserting 1000 documents. first: Qalat Shmemis and last: Weeverfish -[2018-02-13T08:26:11.497] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:26:11.612] [INFO] cheese - batch complete in: 1.379 secs -[2018-02-13T08:26:11.668] [INFO] cheese - inserting 1000 documents. first: Wire-and-string puzzle and last: Plateau (disambiguation) -[2018-02-13T08:26:11.721] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:26:11.858] [INFO] cheese - inserting 1000 documents. first: Im Schatten der Arzte and last: (SAT, e-UNSAT) -[2018-02-13T08:26:11.883] [INFO] cheese - batch complete in: 2.102 secs -[2018-02-13T08:26:11.962] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:26:12.103] [INFO] cheese - inserting 1000 documents. first: Category:Townships in Kittson County, Minnesota and last: Spectrum Saloon Car (SSC) -[2018-02-13T08:26:12.283] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:26:12.407] [INFO] cheese - inserting 1000 documents. first: Lamb's foot and last: Alias Pink Puzz -[2018-02-13T08:26:12.423] [INFO] cheese - inserting 1000 documents. first: Wing of Wor and last: Pan de Azucar National Park -[2018-02-13T08:26:12.460] [INFO] cheese - inserting 1000 documents. first: Bon Accord (disambiguation) and last: Wikipedia:Articles for deletion/British Non-Regional Pronunciation -[2018-02-13T08:26:12.477] [INFO] cheese - inserting 1000 documents. first: Jason Farradane award and last: Trzycież -[2018-02-13T08:26:12.547] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:26:12.552] [INFO] cheese - inserting 1000 documents. first: Warriors (Super editions) and last: Category:Orders, decorations, and medals of Lippe -[2018-02-13T08:26:12.594] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:26:12.685] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:26:12.686] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:26:12.828] [INFO] cheese - batch complete in: 1.215 secs -[2018-02-13T08:26:13.034] [INFO] cheese - inserting 1000 documents. first: Varttikakara and last: Template:MassEffect -[2018-02-13T08:26:13.143] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:26:13.255] [INFO] cheese - inserting 1000 documents. first: Prague Bandurist Capella and last: Le Pâquier FR -[2018-02-13T08:26:13.325] [INFO] cheese - inserting 1000 documents. first: FAR 23 and last: Dubai Debates -[2018-02-13T08:26:13.338] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:26:13.354] [INFO] cheese - inserting 1000 documents. first: Roman miles and last: Peter Gould (professor) -[2018-02-13T08:26:13.500] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:26:13.519] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:26:13.616] [INFO] cheese - inserting 1000 documents. first: Jose Maria Morelos Pavon and last: Powell Carter -[2018-02-13T08:26:13.634] [INFO] cheese - inserting 1000 documents. first: Nadiya Hussain and last: Wikipedia:WikiProject Spam/LinkReports/iris-solutions.ca -[2018-02-13T08:26:13.683] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:26:13.799] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:26:13.830] [INFO] cheese - inserting 1000 documents. first: Trachinidae and last: José Gaspar -[2018-02-13T08:26:13.838] [INFO] cheese - inserting 1000 documents. first: Petaurus australis and last: Subingen SO -[2018-02-13T08:26:13.862] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2008 Summer Paralympics – Men's team sprint (LC1–4 CP3/4) and last: Farnworth Grammar School -[2018-02-13T08:26:13.956] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:26:14.014] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:26:14.048] [INFO] cheese - batch complete in: 2.326 secs -[2018-02-13T08:26:14.248] [INFO] cheese - inserting 1000 documents. first: John of Lancaster, 1st Duke of Bedford and last: Abducens nerve -[2018-02-13T08:26:14.258] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Little League articles by quality and last: Tamalitos -[2018-02-13T08:26:14.267] [INFO] cheese - inserting 1000 documents. first: Pope Pius XII (Cardinal Cushing) and last: Category:Kim clans -[2018-02-13T08:26:14.268] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2008 March 18 and last: G N R lies -[2018-02-13T08:26:14.287] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T08:26:14.297] [INFO] cheese - inserting 1000 documents. first: Roger Simon (journalist) and last: Spain in the Junior Eurovision Song Contest 2003 -[2018-02-13T08:26:14.341] [INFO] cheese - batch complete in: 2.458 secs -[2018-02-13T08:26:14.341] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:26:14.359] [INFO] cheese - inserting 1000 documents. first: Michael Smith (Irish Journalist and Environmentalist) and last: USS Brontes -[2018-02-13T08:26:14.359] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:26:14.463] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:26:14.503] [INFO] cheese - inserting 1000 documents. first: Flagrant délit and last: St. John Health System Detroit Hospitals -[2018-02-13T08:26:14.506] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:26:14.615] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:26:14.637] [INFO] cheese - inserting 1000 documents. first: Hebrew Calander and last: Portal:Trains/Did you know/September 2005 -[2018-02-13T08:26:14.680] [INFO] cheese - inserting 1000 documents. first: Truttikon ZH and last: Fulleda -[2018-02-13T08:26:14.716] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:26:14.736] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:26:14.866] [INFO] cheese - inserting 1000 documents. first: Template:Updateme and last: Japanese Twenty-First Army -[2018-02-13T08:26:14.869] [INFO] cheese - inserting 1000 documents. first: 1992 Rugby League State of Origin series and last: Objects in Mirror Are Closer Than They Appear -[2018-02-13T08:26:14.918] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:26:14.948] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:26:14.974] [INFO] cheese - inserting 1000 documents. first: Category:People from Vilkaviškis and last: File:Evolution (Nektar album).jpg -[2018-02-13T08:26:15.036] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:26:15.201] [INFO] cheese - inserting 1000 documents. first: Delplace and last: Department of Ayurveda, Yoga and Naturopathy, Unani, Siddha and Homoeopathy -[2018-02-13T08:26:15.296] [INFO] cheese - inserting 1000 documents. first: Blasphemy (album) and last: General-feldwachtmeister -[2018-02-13T08:26:15.329] [INFO] cheese - inserting 1000 documents. first: Shuten-dōji (disambiguation) and last: Ameca -[2018-02-13T08:26:15.339] [INFO] cheese - inserting 1000 documents. first: Ibrahim Mousawi and last: Commercial kitchens -[2018-02-13T08:26:15.339] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:26:15.386] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:26:15.438] [INFO] cheese - inserting 1000 documents. first: Trans-Australian Railway and last: Template:Infobox Philippine region -[2018-02-13T08:26:15.455] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:26:15.459] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:26:15.518] [INFO] cheese - inserting 1000 documents. first: WYRC-FM and last: Portal:Trinidad and Tobago/Selected panorama/2 -[2018-02-13T08:26:15.599] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:26:15.660] [INFO] cheese - inserting 1000 documents. first: Valkjaervi and last: Boldon James -[2018-02-13T08:26:15.685] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:26:15.741] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:26:15.772] [INFO] cheese - inserting 1000 documents. first: Royal Botanical Expedition of the Nuevo Reyno de Granada and last: R.M. White -[2018-02-13T08:26:15.806] [INFO] cheese - inserting 1000 documents. first: Victory in Europe Day and last: The Institute of Technology at Linköping University -[2018-02-13T08:26:15.881] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:26:15.966] [INFO] cheese - batch complete in: 1.625 secs -[2018-02-13T08:26:16.069] [INFO] cheese - inserting 1000 documents. first: Yamagata han and last: Aicard -[2018-02-13T08:26:16.107] [INFO] cheese - inserting 1000 documents. first: Category:Fishery protection vessels and last: Ordinariaat voor buitenlandse studenten in belgië -[2018-02-13T08:26:16.147] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:26:16.184] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:26:16.190] [INFO] cheese - inserting 1000 documents. first: Lindstroem theorem and last: San Jose de Mayo -[2018-02-13T08:26:16.240] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:26:16.361] [INFO] cheese - inserting 1000 documents. first: Rogue Legacy and last: File:KTP-Basket logo.png -[2018-02-13T08:26:16.411] [INFO] cheese - inserting 1000 documents. first: Wilder Cemetery and last: Template:Infobox province -[2018-02-13T08:26:16.477] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:26:16.524] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:26:16.571] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Space Vector Inducer and last: List of British fascist parties -[2018-02-13T08:26:16.604] [INFO] cheese - inserting 1000 documents. first: Emmetten, Switzerland and last: Niederstocken, Switzerland -[2018-02-13T08:26:16.643] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:26:16.686] [INFO] cheese - inserting 1000 documents. first: Shay Kelly and last: Kids 4 Afghan Kids -[2018-02-13T08:26:16.735] [INFO] cheese - inserting 1000 documents. first: Category:Dukes of Schleswig-Holstein-Sonderburg-Plon-Rethwisch and last: Nirmala Convent School -[2018-02-13T08:26:16.737] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:26:16.758] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:26:16.865] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:26:16.999] [INFO] cheese - inserting 1000 documents. first: Vladimir Veryovkin and last: Balcerzak -[2018-02-13T08:26:17.083] [INFO] cheese - inserting 1000 documents. first: Niederurnen, Switzerland and last: Collombey Muraz -[2018-02-13T08:26:17.111] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:26:17.125] [INFO] cheese - inserting 1000 documents. first: Sankt Veit im Muhlkreis and last: Kaelvesta air disaster -[2018-02-13T08:26:17.179] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:26:17.184] [INFO] cheese - inserting 1000 documents. first: Eduardo Mezzacapo and last: File:Mystery Diners logo.jpg -[2018-02-13T08:26:17.236] [INFO] cheese - inserting 1000 documents. first: Cocteleria and last: Portuguese Liga 1935–36 -[2018-02-13T08:26:17.243] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:26:17.286] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:17.333] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:17.549] [INFO] cheese - inserting 1000 documents. first: Naviauxella and last: City'US Târgu Mures -[2018-02-13T08:26:17.557] [INFO] cheese - inserting 1000 documents. first: Moku o Lo`e Island and last: Eric Meyer (Professor) -[2018-02-13T08:26:17.597] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T08:26:17.648] [INFO] cheese - inserting 1000 documents. first: Sogut and last: American Law Institute -[2018-02-13T08:26:17.652] [INFO] cheese - inserting 1000 documents. first: Pierre Jeanneret and last: Applecross -[2018-02-13T08:26:17.662] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:26:17.747] [INFO] cheese - inserting 1000 documents. first: Collonge Bellerive and last: St-Moritz -[2018-02-13T08:26:17.760] [INFO] cheese - inserting 1000 documents. first: Danny pudi and last: MediaTek Camera Application -[2018-02-13T08:26:17.793] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:26:17.835] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:26:17.837] [INFO] cheese - batch complete in: 1.871 secs -[2018-02-13T08:26:17.840] [INFO] cheese - inserting 1000 documents. first: Hero of Tomorrow and last: Template:Location map Japan Tokyo -[2018-02-13T08:26:17.893] [INFO] cheese - inserting 1000 documents. first: Teatro metropolitan and last: Alpha High School -[2018-02-13T08:26:17.889] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:26:17.968] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:26:18.026] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:26:18.049] [INFO] cheese - inserting 1000 documents. first: SDKU-DS and last: Deluge (novel) -[2018-02-13T08:26:18.113] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:26:18.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Armorik and last: Nothoapiole -[2018-02-13T08:26:18.535] [INFO] cheese - inserting 1000 documents. first: Twee Redfin and last: HPA-1a -[2018-02-13T08:26:18.573] [INFO] cheese - inserting 1000 documents. first: St-Peter, Switzerland and last: Parliamentary Secretaries of the 18th Dáil -[2018-02-13T08:26:18.602] [INFO] cheese - inserting 1000 documents. first: Prince Kalman and last: Jean Baptiste Edouard Bornet -[2018-02-13T08:26:18.612] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:26:18.618] [INFO] cheese - inserting 1000 documents. first: List of schools in Sunshine Coast, Queensland and last: Santa Fe Catholic High School (Lakeland, Florida) -[2018-02-13T08:26:18.655] [INFO] cheese - inserting 1000 documents. first: HW Gourlay and last: American Made (album) -[2018-02-13T08:26:18.661] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:26:18.726] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:26:18.789] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:18.841] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T08:26:18.905] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:26:18.961] [INFO] cheese - inserting 1000 documents. first: Dutch ship Eendracht and last: Tantalus Theatre Group -[2018-02-13T08:26:19.143] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:26:19.328] [INFO] cheese - inserting 1000 documents. first: 17 a-hydroxylase and last: College Jean-Eudes -[2018-02-13T08:26:19.388] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:26:19.583] [INFO] cheese - inserting 1000 documents. first: Maria Victoria Casares y Perez and last: 2015 China Open Superseries Premier -[2018-02-13T08:26:19.635] [INFO] cheese - inserting 1000 documents. first: Svenska Seriefraemjandet and last: Template:TSN AL Comeback Players of the Year -[2018-02-13T08:26:19.639] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bioregional decolonization and last: Jung Woo -[2018-02-13T08:26:19.641] [INFO] cheese - inserting 1000 documents. first: Ikadotoi and last: Kypsela -[2018-02-13T08:26:19.653] [INFO] cheese - inserting 1000 documents. first: List of surviving drafts and copies of the United States Declaration of Independence and last: Polistichus -[2018-02-13T08:26:19.681] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T08:26:19.685] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:26:19.741] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:26:19.808] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:26:19.831] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:26:19.840] [INFO] cheese - inserting 1000 documents. first: Edward L. Wright and last: Ibrahim Meite -[2018-02-13T08:26:19.941] [INFO] cheese - inserting 1000 documents. first: Corpus Juris Secundum and last: Christopher North (composer) -[2018-02-13T08:26:20.077] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:26:20.142] [INFO] cheese - batch complete in: 2.305 secs -[2018-02-13T08:26:20.182] [INFO] cheese - inserting 1000 documents. first: Washington State Route 205 and last: Magnus I (of Norway and Denmark) -[2018-02-13T08:26:20.213] [INFO] cheese - inserting 1000 documents. first: List of asteroids/52601-52700 and last: Aluar nunez cabeca de vaca -[2018-02-13T08:26:20.300] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:26:20.415] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T08:26:20.627] [INFO] cheese - inserting 1000 documents. first: Commissioners of Sind and last: Cradle to the Grave (album) -[2018-02-13T08:26:20.635] [INFO] cheese - inserting 1000 documents. first: Anisolabis pacifica and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/1610 -[2018-02-13T08:26:20.651] [INFO] cheese - inserting 1000 documents. first: The Amsterdams and last: Category:Art museums and galleries in Berkshire -[2018-02-13T08:26:20.665] [INFO] cheese - inserting 1000 documents. first: Chérif Abdeslam and last: Koduvila -[2018-02-13T08:26:20.701] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:26:20.740] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:26:20.768] [INFO] cheese - inserting 1000 documents. first: Etykinskoye mine and last: SMBBMC -[2018-02-13T08:26:20.737] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T08:26:20.860] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:26:20.948] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:26:21.096] [INFO] cheese - inserting 1000 documents. first: Theodwyn and last: Magnus Jonsson (disambiguation) -[2018-02-13T08:26:21.148] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:26:21.245] [INFO] cheese - inserting 1000 documents. first: Chandrasekhar Limit and last: Wikipedia:Featured article candidates/Appointment to the Order of Canada/archive1 -[2018-02-13T08:26:21.302] [INFO] cheese - inserting 1000 documents. first: File:Diastemabefore.JPG and last: List of Star Trek planets (R–S) -[2018-02-13T08:26:21.411] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:26:21.469] [INFO] cheese - batch complete in: 1.392 secs -[2018-02-13T08:26:21.605] [INFO] cheese - inserting 1000 documents. first: Magnus, Duke of Ostergoetland and last: Magnus Ver -[2018-02-13T08:26:21.654] [INFO] cheese - inserting 1000 documents. first: Al Moore (American football) and last: Mighty Favog -[2018-02-13T08:26:21.656] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/David horta and last: Morar (disambiguation) -[2018-02-13T08:26:21.704] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:26:21.799] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:26:21.784] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:26:21.928] [INFO] cheese - inserting 1000 documents. first: St. Joseph's Higher Secondary School (Cuddalore) and last: Venom gt -[2018-02-13T08:26:22.093] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:26:22.111] [INFO] cheese - inserting 1000 documents. first: Vicuna family and last: Los Melodicos -[2018-02-13T08:26:22.142] [INFO] cheese - batch complete in: 0.438 secs -[2018-02-13T08:26:22.265] [INFO] cheese - inserting 1000 documents. first: File:AS Baylinson.jpg and last: Wikipedia:Miscellany for deletion/Wikipedia:WikiProject Animation/Cartoon Network work group/Watchlist -[2018-02-13T08:26:22.306] [INFO] cheese - inserting 1000 documents. first: Faith freedom and last: Beecher Creek -[2018-02-13T08:26:22.390] [INFO] cheese - inserting 1000 documents. first: Economic Calculation Debate and last: Black Mask (radical group) -[2018-02-13T08:26:22.409] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:26:22.419] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:26:22.531] [INFO] cheese - inserting 1000 documents. first: Kosorin and last: Template:Texas-NRHP-stub -[2018-02-13T08:26:22.550] [INFO] cheese - inserting 1000 documents. first: Favog and last: 6-Chloro-MDMA -[2018-02-13T08:26:22.565] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:26:22.622] [INFO] cheese - inserting 1000 documents. first: Est Playing the Game and last: Wikipedia:Articles for deletion/Videotape (video) -[2018-02-13T08:26:22.648] [INFO] cheese - batch complete in: 2.506 secs -[2018-02-13T08:26:22.664] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:26:22.782] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:26:22.899] [INFO] cheese - inserting 1000 documents. first: Grodersby and last: Mo DeHui -[2018-02-13T08:26:22.921] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:26:23.104] [INFO] cheese - inserting 1000 documents. first: Tanguito and last: Hanna-Maria Seppala -[2018-02-13T08:26:23.129] [INFO] cheese - inserting 1000 documents. first: File:Shams el-Ghinnieh album cover art.jpg and last: Template:COBISS -[2018-02-13T08:26:23.132] [INFO] cheese - inserting 1000 documents. first: RDW CV and last: Wikipedia:WikiProject Spam/Local/instarich.net -[2018-02-13T08:26:23.238] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:26:23.250] [INFO] cheese - inserting 1000 documents. first: Cacem (Sintra) and last: Cesky sen -[2018-02-13T08:26:23.266] [INFO] cheese - inserting 1000 documents. first: AGi32 and last: Johann Jakob Hess -[2018-02-13T08:26:23.267] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:26:23.341] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:26:23.346] [INFO] cheese - inserting 1000 documents. first: Purna (disambiguation) and last: F. B. Squire -[2018-02-13T08:26:23.352] [INFO] cheese - batch complete in: 1.941 secs -[2018-02-13T08:26:23.446] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:26:23.453] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:26:23.613] [INFO] cheese - inserting 1000 documents. first: Das Herz der Konigin and last: List of districts in south east England by population -[2018-02-13T08:26:23.777] [INFO] cheese - inserting 1000 documents. first: Schuettor and last: Harry Potter and the Half Blood Prince (film) -[2018-02-13T08:26:23.807] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:26:23.883] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:26:24.018] [INFO] cheese - inserting 1000 documents. first: Every Eye and last: Siege of Syracuse (877-878) -[2018-02-13T08:26:24.056] [INFO] cheese - inserting 1000 documents. first: Category:Greek Revival churches in Arizona and last: State Route 32A (Nevada) -[2018-02-13T08:26:24.083] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:26:24.119] [INFO] cheese - inserting 1000 documents. first: Valea Oratii River and last: Regierungsbezirk Dusseldorf -[2018-02-13T08:26:24.127] [INFO] cheese - inserting 1000 documents. first: Leonard Limosin and last: Dinner lady -[2018-02-13T08:26:24.129] [INFO] cheese - inserting 1000 documents. first: Watery sign and last: Wikipedia:Articles for deletion/Hector trevino -[2018-02-13T08:26:24.160] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:26:24.171] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T08:26:24.298] [INFO] cheese - inserting 1000 documents. first: Loucks and last: Paul Wright (Archdeacon of Bromley & Bexley) -[2018-02-13T08:26:24.333] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:26:24.333] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:26:24.445] [INFO] cheese - inserting 1000 documents. first: Walking with Monsters - Life Before the Dinosaurs and last: Category:Ethnic groups in the Maldives -[2018-02-13T08:26:24.465] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:26:24.488] [INFO] cheese - inserting 1000 documents. first: Western Digital and last: Absolute Humidity -[2018-02-13T08:26:24.571] [INFO] cheese - inserting 1000 documents. first: Zolta szlafmyca and last: Sabinian and Potentian -[2018-02-13T08:26:24.595] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:26:24.668] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:26:24.694] [INFO] cheese - batch complete in: 2.046 secs -[2018-02-13T08:26:24.778] [INFO] cheese - inserting 1000 documents. first: Siege of Tyana (707-708) and last: Yevgeni Maskinskov -[2018-02-13T08:26:24.784] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Siccness Network and last: File:Oola GAA crest.png -[2018-02-13T08:26:24.903] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:26:24.985] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:26:25.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Onedotzero and last: István Bocskay -[2018-02-13T08:26:25.250] [INFO] cheese - inserting 1000 documents. first: Occidental Tigers baseball and last: Garma Shah -[2018-02-13T08:26:25.357] [INFO] cheese - inserting 1000 documents. first: Hy Eisman and last: Congenital lacrimal duct obstruction -[2018-02-13T08:26:25.366] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:26:25.443] [INFO] cheese - inserting 1000 documents. first: Category:Football venues in the Maldives and last: Thyas coronata -[2018-02-13T08:26:25.458] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:26:25.584] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:26:25.586] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:26:25.683] [INFO] cheese - inserting 1000 documents. first: Wikipedia:New contributors' help page/Archive/New archive 4 and last: Wusta -[2018-02-13T08:26:25.743] [INFO] cheese - inserting 1000 documents. first: Manchester Hospital for Diseases of Children and last: Alexis Remizov -[2018-02-13T08:26:25.791] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:26:25.895] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:26:25.905] [INFO] cheese - inserting 1000 documents. first: Template:Split2/sandbox and last: Yuli Railway -[2018-02-13T08:26:26.110] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:26:26.117] [INFO] cheese - inserting 1000 documents. first: F. Max-Mueller and last: Carly Corinthos and Sonny Corinthos -[2018-02-13T08:26:26.221] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:26:26.288] [INFO] cheese - inserting 1000 documents. first: Garmasha and last: Wikipedia:WikiProject Spam/LinkReports/latinum.org.uk -[2018-02-13T08:26:26.339] [INFO] cheese - inserting 1000 documents. first: Municipalities of Hungary and last: Wikipedia:WikiProject Spam/LinkReports/uggsmvp.com -[2018-02-13T08:26:26.420] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:26:26.498] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:26:26.519] [INFO] cheese - inserting 1000 documents. first: Popkart and last: Jaden Smith -[2018-02-13T08:26:26.654] [INFO] cheese - batch complete in: 1.194 secs -[2018-02-13T08:26:26.691] [INFO] cheese - inserting 1000 documents. first: Kaertnertortheater and last: Martin Kahler -[2018-02-13T08:26:26.722] [INFO] cheese - inserting 1000 documents. first: TrSS St Patrick (1906) and last: Wikipedia:FILM/MOS -[2018-02-13T08:26:26.831] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:26:26.836] [INFO] cheese - inserting 1000 documents. first: Sir Oliver Napier and last: Ngong -[2018-02-13T08:26:26.891] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:26:26.964] [INFO] cheese - inserting 1000 documents. first: Category:1899 establishments in New Zealand and last: Peter Daniel (footballer, born 1946) -[2018-02-13T08:26:27.059] [INFO] cheese - batch complete in: 1.475 secs -[2018-02-13T08:26:27.078] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:26:27.286] [INFO] cheese - inserting 1000 documents. first: Eliska krasnohorska and last: Rontgen (crater) -[2018-02-13T08:26:27.337] [INFO] cheese - inserting 1000 documents. first: London Metal Exchange and last: Mam'zelle Champagne -[2018-02-13T08:26:27.350] [INFO] cheese - inserting 1000 documents. first: Category:Ordination of women and last: Template:Infobox Weather/colp -[2018-02-13T08:26:27.349] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:26:27.447] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:26:27.479] [INFO] cheese - inserting 1000 documents. first: Category:1922 in the Dutch East Indies and last: Category:Musicians from Long Beach, California -[2018-02-13T08:26:27.505] [INFO] cheese - inserting 1000 documents. first: File:Red 2007 gtcs front.jpg and last: Rigo 95 -[2018-02-13T08:26:27.647] [INFO] cheese - batch complete in: 2.952 secs -[2018-02-13T08:26:27.663] [INFO] cheese - inserting 1000 documents. first: Schwarzenbach (surname) and last: Finch (car) -[2018-02-13T08:26:27.676] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:26:27.714] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:26:27.773] [INFO] cheese - inserting 1000 documents. first: Perrault’s Colonnade and last: Tieling station -[2018-02-13T08:26:27.864] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:26:28.016] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:26:28.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/Marginated Tortoise and last: Da Luan Dou sumatusiyu burazazu X -[2018-02-13T08:26:28.059] [INFO] cheese - inserting 1000 documents. first: Sensory processing and last: Sullan Proscriptions -[2018-02-13T08:26:28.154] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:26:28.249] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:26:28.517] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Primates/Project banner and last: Oziljak -[2018-02-13T08:26:28.550] [INFO] cheese - inserting 1000 documents. first: Category:Yugoslav diaspora by country and last: Fairbanks High School, Milford Center -[2018-02-13T08:26:28.556] [INFO] cheese - inserting 1000 documents. first: Portal:NASCAR/Did you know/34 and last: Bidak-e Olya -[2018-02-13T08:26:28.594] [INFO] cheese - inserting 1000 documents. first: Thutmoid Dynasty and last: File:Mihail 1997.jpg -[2018-02-13T08:26:28.595] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:26:28.601] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Weather/colpastel and last: 2009 German Formula Three Championship -[2018-02-13T08:26:28.667] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:26:28.686] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:26:28.713] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:26:28.716] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:26:28.747] [INFO] cheese - inserting 1000 documents. first: File:Captain Philippines and Boy Pinoy poster.jpg and last: Total known mass -[2018-02-13T08:26:28.889] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:26:28.916] [INFO] cheese - inserting 1000 documents. first: Segundas partes tambien son buenas and last: Arthur Kostler -[2018-02-13T08:26:28.943] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T08:26:29.072] [INFO] cheese - inserting 1000 documents. first: File:Margot Frank,May 1942.JPG and last: Retrovision -[2018-02-13T08:26:29.120] [INFO] cheese - inserting 1000 documents. first: Karl von Naegeli and last: Uspantan -[2018-02-13T08:26:29.122] [INFO] cheese - inserting 1000 documents. first: Category:Singaporean expatriate actors and last: Phillies 2016 -[2018-02-13T08:26:29.136] [INFO] cheese - inserting 1000 documents. first: Hightower falls and last: Yuga Purusha -[2018-02-13T08:26:29.148] [INFO] cheese - inserting 1000 documents. first: Empty Room / Nutshell and last: Category:Mobile software stubs -[2018-02-13T08:26:29.148] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T08:26:29.149] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:26:29.227] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:26:29.238] [INFO] cheese - inserting 1000 documents. first: VWAG and last: Silver Streak (1934 film) -[2018-02-13T08:26:29.244] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:26:29.332] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:26:29.395] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:26:29.449] [INFO] cheese - inserting 1000 documents. first: Justin Kleiner and last: KH Kastrioti -[2018-02-13T08:26:29.512] [INFO] cheese - inserting 1000 documents. first: Institut fuer Sozialforschung and last: Ilha de Sao Sebastiao -[2018-02-13T08:26:29.527] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:26:29.573] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:26:29.737] [INFO] cheese - inserting 1000 documents. first: Florodora and last: Col Needham -[2018-02-13T08:26:29.739] [INFO] cheese - inserting 1000 documents. first: North Carolina Aquarium on Roanoke Island and last: Holy Spirit Catholic School California -[2018-02-13T08:26:29.785] [INFO] cheese - inserting 1000 documents. first: Dly. Princetonian and last: Category:Malaysian diaspora in China -[2018-02-13T08:26:29.789] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:26:29.834] [INFO] cheese - batch complete in: 2.187 secs -[2018-02-13T08:26:29.858] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:26:29.898] [INFO] cheese - inserting 1000 documents. first: Thomas Phifer and last: Template:Attached KML/Ohio State Route 186 -[2018-02-13T08:26:29.939] [INFO] cheese - inserting 1000 documents. first: Sluzhylyye lyudi and last: Spice Route -[2018-02-13T08:26:29.946] [INFO] cheese - inserting 1000 documents. first: Pindur and last: Rus Kozmonatlari -[2018-02-13T08:26:29.947] [INFO] cheese - inserting 1000 documents. first: Borskiy District and last: Anastasios Kyriakos -[2018-02-13T08:26:29.962] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:26:30.003] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:26:30.032] [INFO] cheese - inserting 1000 documents. first: Danish National Football Tournament 1919–20 and last: F.M. Scherer -[2018-02-13T08:26:30.043] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:26:30.190] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:26:30.298] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:26:30.503] [INFO] cheese - inserting 1000 documents. first: 15144 Araas and last: 21505 Bernert -[2018-02-13T08:26:30.572] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:26:30.625] [INFO] cheese - inserting 1000 documents. first: Chaldean Catholic Archdiocese of Kirkuk and last: Daniel Hartvig -[2018-02-13T08:26:30.658] [INFO] cheese - inserting 1000 documents. first: Konstantin Podkorytov and last: Portal:Agropedia/Intro -[2018-02-13T08:26:30.703] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:26:30.713] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:26:30.842] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Wolverton Town and last: Khalafabad, Gachsaran -[2018-02-13T08:26:30.863] [INFO] cheese - inserting 1000 documents. first: Karol - papież, który pozostał człowiekiem and last: Nolde Forest Environmental Educational Center -[2018-02-13T08:26:30.962] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:26:31.002] [INFO] cheese - inserting 1000 documents. first: Andrew Rawnsley and last: Wikipedia:Votes for deletion/Unbiennium -[2018-02-13T08:26:30.957] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:26:31.030] [INFO] cheese - inserting 1000 documents. first: Block-Nested-Loop and last: File:Metro 14 logo.svg -[2018-02-13T08:26:31.038] [INFO] cheese - inserting 1000 documents. first: Stade Agoe-Nyive and last: Nyirgyulaj -[2018-02-13T08:26:31.074] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:26:31.125] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:26:31.160] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:26:31.282] [INFO] cheese - inserting 1000 documents. first: Category:Members of gentlemen's clubs and last: Smithsonidrilus involutus -[2018-02-13T08:26:31.312] [INFO] cheese - inserting 1000 documents. first: File:Panty raid zh.jpg and last: File:Wikiproject LEBANON Silver Medal.png -[2018-02-13T08:26:31.412] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:26:31.501] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:26:31.553] [INFO] cheese - inserting 1000 documents. first: Hausen am Albis (Zuerich) and last: Washington Park (disambiguation) -[2018-02-13T08:26:31.601] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:26:31.654] [INFO] cheese - inserting 1000 documents. first: Golden West College and last: Enzkreis -[2018-02-13T08:26:31.671] [INFO] cheese - inserting 1000 documents. first: File:Lego Znap (logo).png and last: The Leela Palaces, Hotels and Resorts -[2018-02-13T08:26:31.673] [INFO] cheese - inserting 1000 documents. first: Constantine Corniaktos and last: File:Sticks the movie.jpg -[2018-02-13T08:26:31.802] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:26:31.809] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:26:31.823] [INFO] cheese - inserting 1000 documents. first: Summify and last: Evgeny Ostaschenko -[2018-02-13T08:26:31.839] [INFO] cheese - batch complete in: 2.005 secs -[2018-02-13T08:26:31.969] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:26:31.972] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Untriunium and last: Ole Edvart Rölvaag -[2018-02-13T08:26:31.972] [INFO] cheese - inserting 1000 documents. first: Fellini 712 and last: Annerys Victoria Vargas Valdez -[2018-02-13T08:26:32.058] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:26:32.113] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:26:32.132] [INFO] cheese - inserting 1000 documents. first: File:Wikiproject LEBANON Bronze Medal.png and last: File:Newmdpdinterceptor.JPG -[2018-02-13T08:26:32.254] [INFO] cheese - inserting 1000 documents. first: 6945 Dahlgren and last: Myrskyntuoja -[2018-02-13T08:26:32.277] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:26:32.305] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:26:32.530] [INFO] cheese - inserting 1000 documents. first: Japanese Lighthouse (Poluwat, Federated States of Micronesia) and last: Venus Barbata -[2018-02-13T08:26:32.621] [INFO] cheese - inserting 1000 documents. first: Tibicen canicularis and last: Race of champions -[2018-02-13T08:26:32.639] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:26:32.720] [INFO] cheese - inserting 1000 documents. first: Category:1964 radio dramas and last: File:Dom Reardon.png -[2018-02-13T08:26:32.748] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:26:32.810] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:26:32.860] [INFO] cheese - inserting 1000 documents. first: Time (album) and last: International Hotel (San Francisco) -[2018-02-13T08:26:32.863] [INFO] cheese - inserting 1000 documents. first: Evelyn Carrera Pichardo and last: Rupsha Bridge -[2018-02-13T08:26:32.882] [INFO] cheese - inserting 1000 documents. first: Adioryx diadema and last: GEDitCOM -[2018-02-13T08:26:32.887] [INFO] cheese - inserting 1000 documents. first: Scottish Catholic Hierarchy and last: Schuetz -[2018-02-13T08:26:32.947] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:26:33.086] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:26:33.091] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:26:33.114] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:33.235] [INFO] cheese - inserting 1000 documents. first: Croatian Disabled Homeland War Veterans Association and last: Fujiwara no Yoshitsune -[2018-02-13T08:26:33.292] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:26:33.390] [INFO] cheese - inserting 1000 documents. first: Lukas of Bulgaria and last: Decretales Clementis Papae VIII -[2018-02-13T08:26:33.423] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T08:26:33.438] [INFO] cheese - inserting 1000 documents. first: The Long Road Home – In Concert and last: Amtrak Downeaster -[2018-02-13T08:26:33.445] [INFO] cheese - inserting 1000 documents. first: Anciente and Secret Order of Quiet Birdmen and last: List of signers of the United States Declaration of Independence -[2018-02-13T08:26:33.523] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:26:33.551] [INFO] cheese - inserting 1000 documents. first: Herrick Corporation and last: Florence ward stiles -[2018-02-13T08:26:33.573] [INFO] cheese - inserting 1000 documents. first: Alexander Mackenzie (explorer) and last: First trimester -[2018-02-13T08:26:33.595] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:26:33.739] [INFO] cheese - inserting 1000 documents. first: File:Eric Christmas.jpg and last: Trk-A -[2018-02-13T08:26:33.755] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:26:33.803] [INFO] cheese - batch complete in: 1.964 secs -[2018-02-13T08:26:33.826] [INFO] cheese - inserting 1000 documents. first: Religion and drugs and last: Haldane, John Burdon Sanderson -[2018-02-13T08:26:33.827] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:26:33.890] [INFO] cheese - inserting 1000 documents. first: Oscar Raymundo Benavides Larrea and last: El Boqueron (El Salvador) -[2018-02-13T08:26:33.937] [INFO] cheese - inserting 1000 documents. first: Eddie Wolf and last: Ab Gol, Kohgiluyeh and Boyer-Ahmad -[2018-02-13T08:26:33.938] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:26:33.996] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:26:34.051] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:26:34.384] [INFO] cheese - inserting 1000 documents. first: Jesus "Chucho" Sanoja and last: Gabbro Hills -[2018-02-13T08:26:34.386] [INFO] cheese - inserting 1000 documents. first: Kensington Football Club and last: File:The Vision Fcatory oficial logo.png -[2018-02-13T08:26:34.414] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:26:34.456] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:26:34.493] [INFO] cheese - inserting 1000 documents. first: Category:Films based on The Tempest and last: Penthus tenebrioides -[2018-02-13T08:26:34.598] [INFO] cheese - inserting 1000 documents. first: Zenwalk Linux and last: Forever In A Day -[2018-02-13T08:26:34.602] [INFO] cheese - inserting 1000 documents. first: Shlomo Helbrans and last: Boys in the Band/Hex Games -[2018-02-13T08:26:34.665] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:26:34.703] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:26:34.770] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T08:26:34.888] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bill Ainashe and last: Wah Cantonment -[2018-02-13T08:26:34.897] [INFO] cheese - inserting 1000 documents. first: V. n. Volosinov and last: Steinbrueckenhoehle -[2018-02-13T08:26:34.900] [INFO] cheese - inserting 1000 documents. first: Spenger's Fresh Fish Grotto and last: Building at 826 North Main Street -[2018-02-13T08:26:34.938] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:26:35.018] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:26:35.032] [INFO] cheese - batch complete in: 1.036 secs -[2018-02-13T08:26:35.189] [INFO] cheese - inserting 1000 documents. first: Category:Keystone species and last: Reduced Level -[2018-02-13T08:26:35.222] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:26:35.360] [INFO] cheese - inserting 1000 documents. first: 1996 Philippine Basketball League season and last: Hiletinae -[2018-02-13T08:26:35.398] [INFO] cheese - inserting 1000 documents. first: Sleuth hound and last: Nikolaus zu Dohna-Schlodien -[2018-02-13T08:26:35.405] [INFO] cheese - inserting 1000 documents. first: 20305 Feliciayen and last: 7728 Giblin -[2018-02-13T08:26:35.430] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:26:35.435] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:26:35.454] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:26:35.503] [INFO] cheese - inserting 1000 documents. first: Alex Cox (musician) and last: Samantha Stephens -[2018-02-13T08:26:35.539] [INFO] cheese - inserting 1000 documents. first: Third trimester and last: Joseph Autran -[2018-02-13T08:26:35.543] [INFO] cheese - inserting 1000 documents. first: Baree, Queensland and last: Category:1836 disestablishments in Nova Scotia -[2018-02-13T08:26:35.563] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:26:35.635] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:26:35.673] [INFO] cheese - batch complete in: 1.869 secs -[2018-02-13T08:26:35.725] [INFO] cheese - inserting 1000 documents. first: James Sherwin and last: Jack Laviollette -[2018-02-13T08:26:35.731] [INFO] cheese - inserting 1000 documents. first: Serguei Grankine and last: Wenceslao Diaz -[2018-02-13T08:26:35.752] [INFO] cheese - inserting 1000 documents. first: Jamyang Khyentse Choekyi Lodroe and last: Kunten (Aargau) -[2018-02-13T08:26:35.850] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:26:35.868] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:26:35.900] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:26:36.027] [INFO] cheese - inserting 1000 documents. first: Category:Education in Hamilton County, Iowa and last: Category:Pan American Games competitors for Paraguay -[2018-02-13T08:26:36.090] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:26:36.131] [INFO] cheese - inserting 1000 documents. first: Ab Chenaru (disambiguation) and last: GOSH! Magazine -[2018-02-13T08:26:36.185] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:26:36.262] [INFO] cheese - inserting 1000 documents. first: Vivara and last: Aarnivalkea -[2018-02-13T08:26:36.305] [INFO] cheese - inserting 1000 documents. first: X-Posed and last: 2015 dengue outbreak in Taiwan -[2018-02-13T08:26:36.456] [INFO] cheese - inserting 1000 documents. first: 4582 Hank and last: File:Johnson Hall of Science Building (front).jpg -[2018-02-13T08:26:36.476] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:26:36.491] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:26:36.481] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:26:36.501] [INFO] cheese - inserting 1000 documents. first: Cannonball arezzo clarinets and last: Wikipedia:WikiProject Academic Journals/Danish journal list/57 -[2018-02-13T08:26:36.680] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:26:36.716] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Pilot Episode and last: Lo kui -[2018-02-13T08:26:36.786] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:26:36.884] [INFO] cheese - inserting 1000 documents. first: Category:Equestrian at the 1920 Summer Olympics and last: Category:Disciples of Gautama Buddha -[2018-02-13T08:26:36.952] [INFO] cheese - inserting 1000 documents. first: Nossa Senhora dos Remedios and last: Hanina ben Teradyon -[2018-02-13T08:26:36.956] [INFO] cheese - inserting 1000 documents. first: Template:R from father and last: Category:1810s establishments in New Brunswick -[2018-02-13T08:26:36.975] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:26:37.017] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:26:37.084] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:26:37.127] [INFO] cheese - inserting 1000 documents. first: Nadia riots and last: Obergefell vs. Hodges -[2018-02-13T08:26:37.138] [INFO] cheese - inserting 1000 documents. first: Inco term and last: Category:Egyptian ethnologists -[2018-02-13T08:26:37.192] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:26:37.195] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:26:37.271] [INFO] cheese - inserting 1000 documents. first: File:Faris odeh03a.jpg and last: Coates College for Women -[2018-02-13T08:26:37.278] [INFO] cheese - inserting 1000 documents. first: Funk & Wagnalls and last: Tree warbler -[2018-02-13T08:26:37.298] [INFO] cheese - batch complete in: 0.28 secs -[2018-02-13T08:26:37.381] [INFO] cheese - inserting 1000 documents. first: Cragin station and last: Servetta -[2018-02-13T08:26:37.417] [INFO] cheese - batch complete in: 1.743 secs -[2018-02-13T08:26:37.568] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:26:37.674] [INFO] cheese - inserting 1000 documents. first: Clamp Champ and last: File:Superman in Red Son.png -[2018-02-13T08:26:37.683] [INFO] cheese - inserting 1000 documents. first: Dealer Team Vauxhall and last: Valea Lungă-Ogrea -[2018-02-13T08:26:37.751] [INFO] cheese - inserting 1000 documents. first: Category:1817 in New Brunswick and last: Category:2000–01 Southern Conference men's basketball season -[2018-02-13T08:26:37.754] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:26:37.769] [INFO] cheese - inserting 1000 documents. first: Araguita and last: Urliesu River -[2018-02-13T08:26:37.754] [INFO] cheese - inserting 1000 documents. first: Scuola Italiana di Tehran and last: Juan Carlos López Martínez -[2018-02-13T08:26:37.809] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:26:37.805] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:26:37.947] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:26:37.968] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:26:38.029] [INFO] cheese - inserting 1000 documents. first: Template:Infobox martial art and last: John Brush -[2018-02-13T08:26:38.086] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:26:38.154] [INFO] cheese - inserting 1000 documents. first: Finspang Castle and last: Fort Beasejour -[2018-02-13T08:26:38.217] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T08:26:38.447] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Liv Ullmann and last: Avid Champion -[2018-02-13T08:26:38.531] [INFO] cheese - inserting 1000 documents. first: The Adam Carolla Show (terrestrial radio) and last: File:Children's Museum of Winston-Salem logo.GIF -[2018-02-13T08:26:38.557] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:26:38.576] [INFO] cheese - inserting 1000 documents. first: File:Loc-Agra.png and last: Lajedo, Brazil -[2018-02-13T08:26:38.583] [INFO] cheese - inserting 1000 documents. first: McDonalds, North Carolina and last: 4703 Kagoshima -[2018-02-13T08:26:38.639] [INFO] cheese - inserting 1000 documents. first: Jorge Echavarría and last: Carter's buttercup -[2018-02-13T08:26:38.689] [INFO] cheese - inserting 1000 documents. first: Template:2000–01 Southern Conference men's basketball standings and last: Category:2008–09 in Luxembourgian football -[2018-02-13T08:26:38.695] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:26:38.741] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:26:38.781] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:26:38.876] [INFO] cheese - inserting 1000 documents. first: Debt negotiation and last: S^ -[2018-02-13T08:26:38.891] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:26:38.894] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:26:38.998] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:26:39.260] [INFO] cheese - inserting 1000 documents. first: Stellar association and last: Hessians -[2018-02-13T08:26:39.311] [INFO] cheese - inserting 1000 documents. first: Charya and last: File:HeflinOKdiary03.jpg -[2018-02-13T08:26:39.423] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:26:39.430] [INFO] cheese - batch complete in: 2.012 secs -[2018-02-13T08:26:39.450] [INFO] cheese - inserting 1000 documents. first: Argentina National Congress Building and last: Wikipedia:Meetup/Mumbai/Mumbai26 -[2018-02-13T08:26:39.545] [INFO] cheese - inserting 1000 documents. first: Shadiman Baratashvili and last: TATA STEEL -[2018-02-13T08:26:39.558] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:26:39.570] [INFO] cheese - inserting 1000 documents. first: Athletic Association of the Greater Public Schools of New South Wales and last: Apagón -[2018-02-13T08:26:39.597] [INFO] cheese - inserting 1000 documents. first: Fourth constituency for French residents overseas and last: W.H. Morgan House -[2018-02-13T08:26:39.662] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:26:39.693] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:26:39.779] [INFO] cheese - inserting 1000 documents. first: Devonte Hynes and last: Bristol Type 407 -[2018-02-13T08:26:39.799] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:26:39.908] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:26:40.078] [INFO] cheese - inserting 1000 documents. first: File:Calotropisgigantea.jpg and last: File:Politiciansdinner.jpg -[2018-02-13T08:26:40.136] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:26:40.226] [INFO] cheese - inserting 1000 documents. first: 7991 Kaguyahime and last: US Jeanne d'Arc Carquefou -[2018-02-13T08:26:40.238] [INFO] cheese - inserting 1000 documents. first: Bergen National Academy of the Arts and last: Ecole Suedoise de Paris -[2018-02-13T08:26:40.345] [INFO] cheese - inserting 1000 documents. first: File:Tougen no Fue.jpg and last: Yogventures! -[2018-02-13T08:26:40.351] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:26:40.420] [INFO] cheese - batch complete in: 1.677 secs -[2018-02-13T08:26:40.528] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:26:40.601] [INFO] cheese - inserting 1000 documents. first: Gorno altai assr and last: Philorhizus -[2018-02-13T08:26:40.601] [INFO] cheese - inserting 1000 documents. first: File:RedShoulderedHawk.jpg and last: Universal rule -[2018-02-13T08:26:40.731] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:26:40.831] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:26:41.072] [INFO] cheese - inserting 1000 documents. first: Mana Tatsumiya and last: Template:Amerie -[2018-02-13T08:26:41.169] [INFO] cheese - inserting 1000 documents. first: Woodward Island (California) and last: Wikipedia:WikiProject Spam/LinkReports/uzeit.ru -[2018-02-13T08:26:41.313] [INFO] cheese - inserting 1000 documents. first: Category:Ethnic Azerbaijani screenwriters and last: Darren Fisher -[2018-02-13T08:26:41.317] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:26:41.429] [INFO] cheese - inserting 1000 documents. first: Oleksandr Kratov and last: Template:Bolivia-diplomat-stub -[2018-02-13T08:26:41.481] [INFO] cheese - batch complete in: 1.345 secs -[2018-02-13T08:26:41.587] [INFO] cheese - inserting 1000 documents. first: Democracy: An American Novel and last: FBI Ten Most Wanted Fugitives -[2018-02-13T08:26:41.616] [INFO] cheese - inserting 1000 documents. first: Civita castelana and last: Michael wycoff -[2018-02-13T08:26:41.610] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:26:41.675] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:26:41.749] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T08:26:41.813] [INFO] cheese - inserting 1000 documents. first: ECSA (disambiguation) and last: Molla Hadi Sabzevari -[2018-02-13T08:26:41.891] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:26:41.878] [INFO] cheese - batch complete in: 2.448 secs -[2018-02-13T08:26:42.063] [INFO] cheese - inserting 1000 documents. first: Turf moor and last: Unionist Party (South Africa) -[2018-02-13T08:26:42.188] [INFO] cheese - batch complete in: 1.457 secs -[2018-02-13T08:26:42.242] [INFO] cheese - inserting 1000 documents. first: The Witman Boys and last: Salem Witches(NEL) -[2018-02-13T08:26:42.259] [INFO] cheese - inserting 1000 documents. first: Philosophy of Architecture and last: Parachaetolopha ornatipennis -[2018-02-13T08:26:42.327] [INFO] cheese - inserting 1000 documents. first: Jim Brown (politician) and last: File:Cg sanga balende.gif -[2018-02-13T08:26:42.331] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:26:42.334] [INFO] cheese - inserting 1000 documents. first: Sail sign of the elbow and last: Princess Luisa Maria, Archduchess of Austria-Este -[2018-02-13T08:26:42.353] [INFO] cheese - inserting 1000 documents. first: Čevljarski Bridge and last: Les Rhinoceros -[2018-02-13T08:26:42.390] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:26:42.466] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:26:42.489] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:26:42.500] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:26:42.630] [INFO] cheese - inserting 1000 documents. first: School of Saint Anthony and last: Billy Garland (Ex Black Panther) -[2018-02-13T08:26:42.824] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:26:42.928] [INFO] cheese - inserting 1000 documents. first: Category:1977 in military history and last: Urosevac District -[2018-02-13T08:26:43.029] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:26:43.172] [INFO] cheese - inserting 1000 documents. first: 2012 Indonesian Movie Awards and last: Category:13 BC deaths -[2018-02-13T08:26:43.209] [INFO] cheese - inserting 1000 documents. first: La Ville dont le prince est un enfant and last: Wikipedia:Reference desk/Archives/Mathematics/2009 September 24 -[2018-02-13T08:26:43.324] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:26:43.364] [INFO] cheese - inserting 1000 documents. first: Category:Women's national rugby league teams and last: Category:1876 in the British Empire -[2018-02-13T08:26:43.418] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:26:43.451] [INFO] cheese - inserting 1000 documents. first: File:Coveralbumbig.jpg and last: Template:Lang-Urdu1 -[2018-02-13T08:26:43.460] [INFO] cheese - inserting 1000 documents. first: Dies Bildnis ist bezaubernd schoen and last: Jupitergigantensaule -[2018-02-13T08:26:43.527] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:26:43.580] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:26:43.591] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:26:43.753] [INFO] cheese - inserting 1000 documents. first: Category:Junior-heavyweight boxers and last: Indians in Finland -[2018-02-13T08:26:43.782] [INFO] cheese - inserting 1000 documents. first: Six Pack (Record) and last: Anton Rogan -[2018-02-13T08:26:43.855] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:26:43.867] [INFO] cheese - batch complete in: 1.679 secs -[2018-02-13T08:26:43.898] [INFO] cheese - inserting 1000 documents. first: Mendonca, Sao Paulo and last: 1819 Laputa -[2018-02-13T08:26:43.933] [INFO] cheese - inserting 1000 documents. first: Deformable bodies and last: Pandava -[2018-02-13T08:26:44.000] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:26:44.065] [INFO] cheese - batch complete in: 2.187 secs -[2018-02-13T08:26:44.137] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Phil Prince and last: Wikipedia:Templates for discussion/Log/2015 October 21 -[2018-02-13T08:26:44.164] [INFO] cheese - inserting 1000 documents. first: Vicente Zarzo Pitarch and last: Wikipedia:Miscellany for deletion/User:Khalidmahmood390 -[2018-02-13T08:26:44.216] [INFO] cheese - inserting 1000 documents. first: Pathanistan and last: October (Singer) -[2018-02-13T08:26:44.259] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:26:44.307] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:26:44.378] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:26:44.489] [INFO] cheese - inserting 1000 documents. first: Category:Korean military personnel and last: Exaliter -[2018-02-13T08:26:44.661] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:26:44.725] [INFO] cheese - inserting 1000 documents. first: Pisarzowice, Bielsko-Biala County and last: 3589 Loyola -[2018-02-13T08:26:44.732] [INFO] cheese - inserting 1000 documents. first: Čmeliak and last: Mike Tatum -[2018-02-13T08:26:44.791] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:26:44.845] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:26:44.941] [INFO] cheese - inserting 1000 documents. first: Countermine System and last: Hartebeestfontein Mine -[2018-02-13T08:26:45.002] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anna Carter and last: 2006 Fed Cup -[2018-02-13T08:26:45.130] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:26:45.191] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T08:26:45.229] [INFO] cheese - inserting 1000 documents. first: Template:Biskra-geo-stub and last: County Route 690 (Burlington County, New Jersey) -[2018-02-13T08:26:45.259] [INFO] cheese - inserting 1000 documents. first: Valeri Kazaishvili and last: Academy of Fine Arts, Istanbul -[2018-02-13T08:26:45.338] [INFO] cheese - inserting 1000 documents. first: 17358 Lozino-Lozinskij and last: 17354 Matrosov -[2018-02-13T08:26:45.350] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:26:45.393] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:26:45.403] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:26:45.488] [INFO] cheese - inserting 1000 documents. first: Zettaliter and last: Vitebsk Air Base -[2018-02-13T08:26:45.543] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:26:45.560] [INFO] cheese - inserting 1000 documents. first: Category:North American Lacrosse League and last: File:Questionmarkcover.jpg -[2018-02-13T08:26:45.688] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:26:45.764] [INFO] cheese - inserting 1000 documents. first: Dawlat Isra'il and last: Nghe An Province, Vietnam -[2018-02-13T08:26:45.846] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:26:45.872] [INFO] cheese - inserting 1000 documents. first: Abdurrahman Sulaeman and last: John Michell (cricketer) -[2018-02-13T08:26:45.948] [INFO] cheese - inserting 1000 documents. first: J. Cell. Biochem. and last: Vladislavs Agurjanovs -[2018-02-13T08:26:45.949] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:26:46.018] [INFO] cheese - inserting 1000 documents. first: The One (Deuce Song) and last: Category:Rapid transit stations in the United States by operator -[2018-02-13T08:26:46.050] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:26:46.087] [INFO] cheese - inserting 1000 documents. first: Gateaux derivative and last: WEZB-FM -[2018-02-13T08:26:46.172] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:26:46.245] [INFO] cheese - inserting 1000 documents. first: Annette Huber-Klawitter and last: Template:User from Arkansas/doc -[2018-02-13T08:26:46.254] [INFO] cheese - inserting 1000 documents. first: 21089 Mochizuki and last: 5507 Niijima -[2018-02-13T08:26:46.270] [INFO] cheese - inserting 1000 documents. first: The Girl Was Young and last: Avie Tevanian -[2018-02-13T08:26:46.281] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:26:46.298] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:26:46.330] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:26:46.351] [INFO] cheese - inserting 1000 documents. first: Giedo van der Garde and last: Providence & Worcester Railroad -[2018-02-13T08:26:46.449] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:26:46.507] [INFO] cheese - batch complete in: 2.442 secs -[2018-02-13T08:26:46.667] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Freddy Powers and last: Template:Did you know nominations/Ecco Ripley -[2018-02-13T08:26:46.705] [INFO] cheese - inserting 1000 documents. first: Economy of People's Republic of China and last: Radwansky -[2018-02-13T08:26:46.734] [INFO] cheese - inserting 1000 documents. first: 2972 Niilo and last: Naval Air Station Niagara Falls -[2018-02-13T08:26:46.764] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:26:46.789] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:26:46.819] [INFO] cheese - inserting 1000 documents. first: Nilalang and last: File:League of Legends Champions Korea logo.jpg -[2018-02-13T08:26:46.839] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:26:46.937] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:26:47.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/burberrybluelabelstore.com and last: File:Travel Sentry Mark.jpg -[2018-02-13T08:26:47.078] [INFO] cheese - inserting 1000 documents. first: File:Total Eclipse.jpg and last: Gândul -[2018-02-13T08:26:47.079] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:26:47.116] [INFO] cheese - inserting 1000 documents. first: Category:Women's cricket in Australia and last: Shatalovo (air base) -[2018-02-13T08:26:47.178] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:26:47.184] [INFO] cheese - inserting 1000 documents. first: 冯友兰 and last: Philippines–European Union relations -[2018-02-13T08:26:47.195] [INFO] cheese - inserting 1000 documents. first: Category:Cockroach stubs and last: Less Than Jake (Band) -[2018-02-13T08:26:47.212] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:26:47.290] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:26:47.304] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:26:47.411] [INFO] cheese - inserting 1000 documents. first: Yourka Reserve and last: 21471 Pavelchvykov -[2018-02-13T08:26:47.453] [INFO] cheese - inserting 1000 documents. first: Monique Di Mattina and last: Chinese actresses -[2018-02-13T08:26:47.487] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:26:47.561] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:26:47.619] [INFO] cheese - inserting 1000 documents. first: The Orbis School and last: Member of the State Council -[2018-02-13T08:26:47.699] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:26:47.799] [INFO] cheese - inserting 1000 documents. first: File:Johnchristie.jpg and last: Skirtingboards -[2018-02-13T08:26:47.883] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:26:47.906] [INFO] cheese - inserting 1000 documents. first: Category:Geréb family and last: Category:PFC Chernomorets Burgas Sofia players -[2018-02-13T08:26:47.922] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of indexes to tables of contents and last: RSD -[2018-02-13T08:26:47.929] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Food metaphors for race and last: Leopold, Count of Daun -[2018-02-13T08:26:47.987] [INFO] cheese - inserting 1000 documents. first: 16274 Pavlica and last: 2457 Rublyov -[2018-02-13T08:26:48.000] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:26:48.011] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:26:48.078] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:26:48.090] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:26:48.124] [INFO] cheese - inserting 1000 documents. first: National Anthem of the Republic of China and last: Li Tieh Kuai -[2018-02-13T08:26:48.245] [INFO] cheese - inserting 1000 documents. first: Gillian Lester and last: Władysław Wankie -[2018-02-13T08:26:48.276] [INFO] cheese - batch complete in: 1.769 secs -[2018-02-13T08:26:48.348] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:26:48.353] [INFO] cheese - inserting 1000 documents. first: 1963–64 Czechoslovak Extraliga season and last: File:Thing a Week Three.jpg -[2018-02-13T08:26:48.398] [INFO] cheese - inserting 1000 documents. first: 4286 Rubtsov and last: Glos Pana -[2018-02-13T08:26:48.473] [INFO] cheese - inserting 1000 documents. first: Belvidere (structure) and last: Thalheim (Aargau) -[2018-02-13T08:26:48.482] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T08:26:48.508] [INFO] cheese - inserting 1000 documents. first: Gary Weight and last: Plica palpebronasalis -[2018-02-13T08:26:48.522] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:26:48.537] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:26:48.629] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:26:48.694] [INFO] cheese - inserting 1000 documents. first: Category:Years of the 20th century in Northern Rhodesia and last: Wikipedia:WikiProject Spam/LinkReports/skyrecordsent.com -[2018-02-13T08:26:48.785] [INFO] cheese - inserting 1000 documents. first: EmsAuenWeg and last: File:Islands-arcadefire-mixing-at-jamies.jpg -[2018-02-13T08:26:48.785] [INFO] cheese - inserting 1000 documents. first: Portal:Thailand/Selected article/29 and last: Vandœuvre -[2018-02-13T08:26:48.800] [INFO] cheese - inserting 1000 documents. first: Battle of Rawdat Muhanna and last: Distrito de Viseu -[2018-02-13T08:26:48.818] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T08:26:48.846] [INFO] cheese - batch complete in: 0.364 secs -[2018-02-13T08:26:48.874] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:26:48.963] [INFO] cheese - inserting 1000 documents. first: 2010 Oklahoma earthquake and last: Jonathan Agnew (cricketer) -[2018-02-13T08:26:49.054] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:26:49.122] [INFO] cheese - inserting 1000 documents. first: File:Belluswi.jpg and last: Sturmgeschutz III Ausf. G -[2018-02-13T08:26:49.130] [INFO] cheese - inserting 1000 documents. first: Rüttenen (Solothurn) and last: Pieterlen (Bern) -[2018-02-13T08:26:49.162] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T08:26:49.171] [INFO] cheese - inserting 1000 documents. first: Embassy of the United States, Juba and last: Sigma coordinate system -[2018-02-13T08:26:49.199] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:26:49.236] [INFO] cheese - inserting 1000 documents. first: List of Murder, She Wrote characters and last: EVA Airways Corp -[2018-02-13T08:26:49.318] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:26:49.386] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:26:49.418] [INFO] cheese - inserting 1000 documents. first: Josephine Bakhita and last: Ruffushi -[2018-02-13T08:26:49.450] [INFO] cheese - inserting 1000 documents. first: Euroleague 1994-95 and last: Wunderkind (fashion) -[2018-02-13T08:26:49.462] [INFO] cheese - inserting 1000 documents. first: Banici and last: Konrad IV -[2018-02-13T08:26:49.501] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:26:49.566] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:26:49.636] [INFO] cheese - inserting 1000 documents. first: Plagne (Bern) and last: Emmanuel Santos -[2018-02-13T08:26:49.641] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:26:49.733] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:26:49.816] [INFO] cheese - inserting 1000 documents. first: Deux Fois and last: Ali Reza Razm Hosseini -[2018-02-13T08:26:49.875] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:26:49.903] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/soloaja.com and last: Category:Converts to Judaism from Protestantism -[2018-02-13T08:26:49.907] [INFO] cheese - inserting 1000 documents. first: Operation Weserubung order of battle and last: Ni Freud, Ni Tu Mama -[2018-02-13T08:26:49.971] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:26:49.980] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:26:50.020] [INFO] cheese - inserting 1000 documents. first: Category:1986 in Arizona and last: Christianity in Qinghai -[2018-02-13T08:26:50.022] [INFO] cheese - inserting 1000 documents. first: Slovenian music and last: Chicago Sun-Times -[2018-02-13T08:26:50.113] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:26:50.168] [INFO] cheese - batch complete in: 1.891 secs -[2018-02-13T08:26:50.187] [INFO] cheese - inserting 1000 documents. first: Baila Conmigo (Adelén song) and last: Vijaya Bhaskara Reddy -[2018-02-13T08:26:50.208] [INFO] cheese - inserting 1000 documents. first: Vaikaramuraidhoo and last: Shark (moth) -[2018-02-13T08:26:50.286] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:26:50.298] [INFO] cheese - inserting 1000 documents. first: Lietuvos teises universitetas and last: Religious minorities in Greece -[2018-02-13T08:26:50.307] [INFO] cheese - inserting 1000 documents. first: Martin Stone (wrestler) and last: George de La Poer Beresford, 1st Marquess of Waterford -[2018-02-13T08:26:50.310] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:26:50.350] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:26:50.349] [INFO] cheese - inserting 1000 documents. first: Palazzo Papadopoli and last: Gulfstream Pictures -[2018-02-13T08:26:50.412] [INFO] cheese - inserting 1000 documents. first: Marx tér (Budapest Metro) and last: Kim Mi-ja -[2018-02-13T08:26:50.421] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:26:50.444] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:26:50.520] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:26:50.732] [INFO] cheese - inserting 1000 documents. first: Alan Pyatt and last: 2008–09 NLA season -[2018-02-13T08:26:50.855] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:26:50.933] [INFO] cheese - inserting 1000 documents. first: Secunderabad-Cantonment constituency and last: Zhegalkin normal form -[2018-02-13T08:26:50.956] [INFO] cheese - inserting 1000 documents. first: Holy Week in Taxco and last: Wet-printing -[2018-02-13T08:26:50.986] [INFO] cheese - inserting 1000 documents. first: Machine Gun Funk and last: Domenico Leoni -[2018-02-13T08:26:50.996] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:26:51.017] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:26:51.097] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:26:51.183] [INFO] cheese - inserting 1000 documents. first: Dragon Valor and last: Michael Yon -[2018-02-13T08:26:51.193] [INFO] cheese - inserting 1000 documents. first: SSN-716 and last: Michael Bell-Smith -[2018-02-13T08:26:51.244] [INFO] cheese - inserting 1000 documents. first: Sweet Solera Stakes and last: Adrian Branch -[2018-02-13T08:26:51.263] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:26:51.275] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T08:26:51.355] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:26:51.382] [INFO] cheese - inserting 1000 documents. first: Kyushu Kogyo Daigaku and last: James Troisi -[2018-02-13T08:26:51.392] [INFO] cheese - inserting 1000 documents. first: Category:Educational organisations in Ukraine and last: Pilate and Others -[2018-02-13T08:26:51.428] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:26:51.459] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:26:51.509] [INFO] cheese - inserting 1000 documents. first: Wolf herring and last: Take Me Out To The Ball Game -[2018-02-13T08:26:51.554] [INFO] cheese - inserting 1000 documents. first: Pioneers FC and last: Spithamn -[2018-02-13T08:26:51.626] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:26:51.632] [INFO] cheese - batch complete in: 1.463 secs -[2018-02-13T08:26:51.687] [INFO] cheese - inserting 1000 documents. first: Cyclophora dyschroa and last: Pataveh, Boyer-Ahmad (disambiguation) -[2018-02-13T08:26:51.725] [INFO] cheese - inserting 1000 documents. first: Dorothea Roschmann and last: BibTeKh -[2018-02-13T08:26:51.774] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:26:51.789] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:26:51.811] [INFO] cheese - inserting 1000 documents. first: Guigues VIII de La Tour du Pin, Dauphin de Viennois and last: Wakusei daikaijû Negadon -[2018-02-13T08:26:51.932] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:26:51.995] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/mbtsshoessale.com and last: Koron (music) -[2018-02-13T08:26:52.054] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:26:52.107] [INFO] cheese - inserting 1000 documents. first: Mann-whitney u test and last: Portal:Oz/Categories -[2018-02-13T08:26:52.226] [INFO] cheese - inserting 1000 documents. first: Sutlep and last: Barlow, North Dakota -[2018-02-13T08:26:52.250] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:26:52.255] [INFO] cheese - inserting 1000 documents. first: 淡路島 and last: List of minor planets/178301–178400 -[2018-02-13T08:26:52.335] [INFO] cheese - inserting 1000 documents. first: Category:Novels by Thomas M. Disch and last: Wikipedia:WikiProject Aviation/Contest/Submissions/Marcusmax -[2018-02-13T08:26:52.354] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:26:52.378] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:26:52.491] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:26:52.605] [INFO] cheese - inserting 1000 documents. first: Template:Arona–Novara railway diagram and last: Wikipedia:WikiProject Spam/LinkReports/amazing-fiji-vacations.com -[2018-02-13T08:26:52.669] [INFO] cheese - inserting 1000 documents. first: Jul i Toyengata and last: Jewell Williams -[2018-02-13T08:26:52.692] [INFO] cheese - inserting 1000 documents. first: Kishan Singh Rathore and last: Portal:Aviation/Selected picture/33 -[2018-02-13T08:26:52.696] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:26:52.754] [INFO] cheese - inserting 1000 documents. first: Hamdy Abowgliel and last: Joanna Janét -[2018-02-13T08:26:52.771] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:26:52.792] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:26:52.840] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:26:52.999] [INFO] cheese - inserting 1000 documents. first: Mascara (musician) and last: Maria Gómez -[2018-02-13T08:26:53.013] [INFO] cheese - inserting 1000 documents. first: College Sadiki and last: Oswaldo Paya Sardinas -[2018-02-13T08:26:53.018] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Aviation/Contest/Submissions/MoHasanie and last: Swing (music group) -[2018-02-13T08:26:53.032] [INFO] cheese - batch complete in: 0.26 secs -[2018-02-13T08:26:53.038] [INFO] cheese - inserting 1000 documents. first: David Goloschekin and last: File:Dandelion clock.jpg -[2018-02-13T08:26:53.041] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:26:53.082] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:26:53.198] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:26:53.314] [INFO] cheese - inserting 1000 documents. first: William E. Morris and last: Aravind Eye Care Hospital -[2018-02-13T08:26:53.343] [INFO] cheese - inserting 1000 documents. first: Ryunosuke Uryu and last: Canamero -[2018-02-13T08:26:53.356] [INFO] cheese - inserting 1000 documents. first: Saljut I and last: Music terminology -[2018-02-13T08:26:53.368] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T08:26:53.391] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject United States Public Policy/Courses/Spring 2011/Media and Telecommunication Policy (Obar) and last: Category:1998 in Indiana -[2018-02-13T08:26:53.395] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:26:53.416] [INFO] cheese - inserting 1000 documents. first: Category:Fictional depictions of Abraham Lincoln in film and last: 2013 Campeonato Acreano -[2018-02-13T08:26:53.471] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:26:53.512] [INFO] cheese - batch complete in: 1.879 secs -[2018-02-13T08:26:53.561] [INFO] cheese - inserting 1000 documents. first: Constantin Alexandru Rosetti and last: Otto Bernhardt -[2018-02-13T08:26:53.562] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:26:53.646] [INFO] cheese - inserting 1000 documents. first: R City and last: Members of the New South Wales Legislative Council, 1891–1894 -[2018-02-13T08:26:53.664] [INFO] cheese - inserting 1000 documents. first: Saint-Andre-d'Hebertot and last: Hoei Nojiri -[2018-02-13T08:26:53.670] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:26:53.704] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T08:26:53.721] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:26:53.999] [INFO] cheese - inserting 1000 documents. first: File:Somefantasticplace.jpg and last: 2000 Copa Interclubes UNCAF -[2018-02-13T08:26:54.013] [INFO] cheese - inserting 1000 documents. first: Egyptair Flight 648 and last: Strange Celebrity -[2018-02-13T08:26:54.055] [INFO] cheese - inserting 1000 documents. first: Vrsac fortress and last: Clement Jannequin -[2018-02-13T08:26:54.083] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:26:54.111] [INFO] cheese - inserting 1000 documents. first: Vinītaruci and last: Bougainville Copper Ltd -[2018-02-13T08:26:54.116] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:26:54.119] [INFO] cheese - inserting 1000 documents. first: Able v. United States and last: Ait Melloul -[2018-02-13T08:26:54.140] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:26:54.288] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:26:54.332] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:26:54.342] [INFO] cheese - inserting 1000 documents. first: Christoph Bergner and last: Template:Pallacanestro Varese 1975-76 Euroleague champions -[2018-02-13T08:26:54.445] [INFO] cheese - inserting 1000 documents. first: Héliodore Cote and last: Category:Wikipedians contributing under Creative Commons 2.0 -[2018-02-13T08:26:54.445] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:26:54.524] [INFO] cheese - inserting 1000 documents. first: Oton Zupancic and last: Elisabeth von Schonau -[2018-02-13T08:26:54.525] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:26:54.599] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:26:54.774] [INFO] cheese - inserting 1000 documents. first: Portal:Scouting/Did you know.../January and last: Coathanger Antennae -[2018-02-13T08:26:54.786] [INFO] cheese - inserting 1000 documents. first: The Wall (2012 documentary film) and last: Module:Sidebar/doc -[2018-02-13T08:26:54.793] [INFO] cheese - inserting 1000 documents. first: Savo Martinovic and last: Richard Rostel -[2018-02-13T08:26:54.808] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T08:26:54.822] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:26:54.877] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:26:54.901] [INFO] cheese - inserting 1000 documents. first: Amr-Ibn-El-Ass and last: Category:Internments -[2018-02-13T08:26:54.954] [INFO] cheese - inserting 1000 documents. first: Ibitoke banana and last: Category:1990 in Arkansas -[2018-02-13T08:26:55.026] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:26:55.036] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:26:55.084] [INFO] cheese - inserting 1000 documents. first: Beli andeo and last: Dede Andersson -[2018-02-13T08:26:55.109] [INFO] cheese - inserting 1000 documents. first: Template:Pallacanestro Virtus Roma 1983-84 Euroleague champions and last: Ariola Japan -[2018-02-13T08:26:55.122] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T08:26:55.193] [INFO] cheese - inserting 1000 documents. first: Baillie and last: Anthony Gilbert (MP) -[2018-02-13T08:26:55.214] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:26:55.324] [INFO] cheese - inserting 1000 documents. first: Carcassonne (board game) and last: Jacqueline Lichtenberg -[2018-02-13T08:26:55.357] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:26:55.509] [INFO] cheese - inserting 1000 documents. first: Septariyanto and last: Estonia Australia relations -[2018-02-13T08:26:55.517] [INFO] cheese - batch complete in: 2.005 secs -[2018-02-13T08:26:55.544] [INFO] cheese - inserting 1000 documents. first: Lan Yue and last: File:Wind Riders-the crew 011.jpg -[2018-02-13T08:26:55.586] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:26:55.600] [INFO] cheese - inserting 1000 documents. first: Defense of Marriage Coalition and last: Untxillalitz -[2018-02-13T08:26:55.642] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:26:55.691] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:26:55.966] [INFO] cheese - inserting 1000 documents. first: Category:Haryana-related lists and last: Commas -[2018-02-13T08:26:55.968] [INFO] cheese - inserting 1000 documents. first: Tietz and last: Antonio Luna -[2018-02-13T08:26:55.970] [INFO] cheese - inserting 1000 documents. first: Category:1992 in Arkansas and last: Wikipedia:Sockpuppet investigations/ChahtaGal -[2018-02-13T08:26:56.038] [INFO] cheese - inserting 1000 documents. first: Saint-Onen and last: Old City Hall (Guelph) -[2018-02-13T08:26:56.060] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:26:56.097] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:26:56.132] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:26:56.138] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:26:56.183] [INFO] cheese - inserting 1000 documents. first: Nancy, Benton County and last: Laughing Irish Eyes -[2018-02-13T08:26:56.302] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:26:56.355] [INFO] cheese - inserting 1000 documents. first: Australia - Estonia relations and last: Sir William Borlase's Grammar Scool -[2018-02-13T08:26:56.388] [INFO] cheese - inserting 1000 documents. first: File:Mary05.jpg and last: Sharneyford -[2018-02-13T08:26:56.433] [INFO] cheese - inserting 1000 documents. first: Radio y Television Interamericana and last: Portal:Doctor Who/Selected story/33 -[2018-02-13T08:26:56.460] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:26:56.487] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:26:56.491] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T08:26:56.771] [INFO] cheese - inserting 1000 documents. first: Kerr-McGee Chemical Corporation and last: Al Nasr SC (Egypt) -[2018-02-13T08:26:56.834] [INFO] cheese - inserting 1000 documents. first: Al Wusta Wilayah, Sudan and last: Jose Agripino Barnet -[2018-02-13T08:26:56.838] [INFO] cheese - inserting 1000 documents. first: Beyond Foo and last: List of Yu-Gi-Oh! Duel Monsters episodes (season 4) -[2018-02-13T08:26:56.902] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:26:56.939] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:26:57.003] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:26:57.060] [INFO] cheese - inserting 1000 documents. first: File:ComodoDragon-Logo.png and last: David T. Griggs -[2018-02-13T08:26:57.066] [INFO] cheese - inserting 1000 documents. first: Lada Taiga and last: List of US senators from South Carolina -[2018-02-13T08:26:57.120] [INFO] cheese - inserting 1000 documents. first: Four Eyes and Six Guns and last: Senguerr River -[2018-02-13T08:26:57.195] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:26:57.255] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:26:57.312] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:26:57.347] [INFO] cheese - inserting 1000 documents. first: Sell Out (Pist.On album) and last: Spartaeinae -[2018-02-13T08:26:57.455] [INFO] cheese - inserting 1000 documents. first: Confederation Democratique des Travailleurs du Niger and last: Jean-Francois Hubert -[2018-02-13T08:26:57.476] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:26:57.522] [INFO] cheese - inserting 1000 documents. first: Methuen Treaty and last: Harve Bennett -[2018-02-13T08:26:57.547] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:26:57.644] [INFO] cheese - batch complete in: 2.127 secs -[2018-02-13T08:26:57.659] [INFO] cheese - inserting 1000 documents. first: Maurice Crum Jr. and last: AFL Western Conference -[2018-02-13T08:26:57.785] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:26:57.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Securxx and last: Draft:David J. Sugarbaker -[2018-02-13T08:26:57.855] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Crusades task force/Resources and last: The Bed-Sit Girl -[2018-02-13T08:26:57.886] [INFO] cheese - inserting 1000 documents. first: International Society for Soil Mechanics and Geotechnical Engineering and last: Category:Pico-Union, Los Angeles -[2018-02-13T08:26:57.912] [INFO] cheese - inserting 1000 documents. first: List of Yu-Gi-Oh! Duel Monsters episodes (season 3) and last: Category:2004 in Delaware -[2018-02-13T08:26:57.942] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:26:57.948] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:26:58.045] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:26:58.070] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:26:58.227] [INFO] cheese - inserting 1000 documents. first: Special Emergency Response Team and last: Phantom access -[2018-02-13T08:26:58.349] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:26:58.367] [INFO] cheese - inserting 1000 documents. first: Category:Bell Labs Unices and last: Joan V. Hartley -[2018-02-13T08:26:58.407] [INFO] cheese - inserting 1000 documents. first: AFL East and last: Treaty of Salisbury -[2018-02-13T08:26:58.436] [INFO] cheese - inserting 1000 documents. first: Jason Rae (musician) and last: Kochel catalogue -[2018-02-13T08:26:58.469] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:26:58.536] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:26:58.548] [INFO] cheese - inserting 1000 documents. first: File:The Lucky Star (film).jpg and last: Jeff Littlejohn -[2018-02-13T08:26:58.548] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:26:58.653] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:26:58.751] [INFO] cheese - inserting 1000 documents. first: Regimen Sanitatis Salerni and last: Bonari (disambiguation) -[2018-02-13T08:26:58.814] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:26:58.853] [INFO] cheese - inserting 1000 documents. first: Antoine de Pas de Feuquieres and last: Thomas, N. G. -[2018-02-13T08:26:58.867] [INFO] cheese - inserting 1000 documents. first: IFAF World Cup and last: Goody's -[2018-02-13T08:26:58.911] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:26:58.983] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:26:59.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fender bender and last: John A. Scali -[2018-02-13T08:26:59.194] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australian military history articles by quality/8 and last: Wikipedia:WikiProject Military history/World War I task force/Centenary drive -[2018-02-13T08:26:59.266] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:26:59.280] [INFO] cheese - inserting 1000 documents. first: Hassan Rajab Khatib and last: Hekate (disambiguation) -[2018-02-13T08:26:59.289] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:26:59.317] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dpiworx/BeGoodtoYourPlanet.com and last: Wikipedia:Articles for deletion/TechSandBox -[2018-02-13T08:26:59.389] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:26:59.428] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:26:59.452] [INFO] cheese - inserting 1000 documents. first: Vivir con alegria and last: Paraul lui Toader -[2018-02-13T08:26:59.492] [INFO] cheese - inserting 1000 documents. first: Category:1880 in Texas and last: Greece – Austria relations -[2018-02-13T08:26:59.549] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:26:59.636] [INFO] cheese - inserting 1000 documents. first: Category:Natural disasters in South Sudan and last: Erin Silver (character) -[2018-02-13T08:26:59.645] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:26:59.702] [INFO] cheese - inserting 1000 documents. first: Paul Émile Lecoq de Boisbaudran and last: Regent's Park -[2018-02-13T08:26:59.737] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:26:59.851] [INFO] cheese - inserting 1000 documents. first: Mueller's maneuver and last: Timothy Koogle -[2018-02-13T08:26:59.864] [INFO] cheese - batch complete in: 2.22 secs -[2018-02-13T08:26:59.886] [INFO] cheese - inserting 1000 documents. first: Alexandrovca and last: Wikipedia:WikiProject Outline of knowledge/Drafts/Outline of databases -[2018-02-13T08:26:59.893] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T08:26:59.985] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:27:00.015] [INFO] cheese - inserting 1000 documents. first: Category:Art Nouveau architecture in Strasbourg and last: Idris Lewis -[2018-02-13T08:27:00.016] [INFO] cheese - inserting 1000 documents. first: Church grim and last: Wikipedia:Votes for deletion/Log/2005 February 7 -[2018-02-13T08:27:00.142] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:27:00.155] [INFO] cheese - inserting 1000 documents. first: List of NSW TrainLink train routes and last: Very Warm for May -[2018-02-13T08:27:00.201] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:27:00.246] [INFO] cheese - inserting 1000 documents. first: Greece Austria relations and last: Shay Tards -[2018-02-13T08:27:00.284] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:27:00.354] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:27:00.387] [INFO] cheese - inserting 1000 documents. first: Corazon Iluminado and last: Uruemci -[2018-02-13T08:27:00.476] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:27:00.520] [INFO] cheese - inserting 1000 documents. first: Fluff (fiction) and last: Acupunct Med. -[2018-02-13T08:27:00.668] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:27:00.882] [INFO] cheese - inserting 1000 documents. first: Caenurgia togataria and last: C. Allin Cornell -[2018-02-13T08:27:01.037] [INFO] cheese - inserting 1000 documents. first: Francois de Bourbon, Count of Enghien and last: Aanekoski bus disaster -[2018-02-13T08:27:01.045] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:27:01.144] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:27:01.166] [INFO] cheese - inserting 1000 documents. first: Atherton Line and last: Tang-e Sar Asiab -[2018-02-13T08:27:01.189] [INFO] cheese - inserting 1000 documents. first: Sinișa Dragin and last: Pi1 Columbae -[2018-02-13T08:27:01.203] [INFO] cheese - inserting 1000 documents. first: Intrastate airline and last: Zenithar -[2018-02-13T08:27:01.270] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:27:01.333] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:27:01.368] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:27:01.402] [INFO] cheese - inserting 1000 documents. first: Portal:Netherlands/Featured article and last: Hypophosphorous acid -[2018-02-13T08:27:01.492] [INFO] cheese - inserting 1000 documents. first: Schumann resonance and last: Rolando Reategui -[2018-02-13T08:27:01.503] [INFO] cheese - batch complete in: 1.361 secs -[2018-02-13T08:27:01.550] [INFO] cheese - batch complete in: 0.405 secs -[2018-02-13T08:27:01.635] [INFO] cheese - inserting 1000 documents. first: Category:Israeli football club seasons and last: Donald Attig -[2018-02-13T08:27:01.638] [INFO] cheese - inserting 1000 documents. first: Diary of a Wimpy Kid 3 and last: Wikipedia:Articles for deletion/Paris 2005 -[2018-02-13T08:27:01.693] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:27:01.752] [INFO] cheese - inserting 1000 documents. first: David Croft (TV producer) and last: Mad Max -[2018-02-13T08:27:01.777] [INFO] cheese - inserting 1000 documents. first: Eusebius Fermendzin and last: Union Europeenne de Radio-Television -[2018-02-13T08:27:01.785] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:27:01.837] [INFO] cheese - batch complete in: 0.287 secs -[2018-02-13T08:27:01.847] [INFO] cheese - inserting 1000 documents. first: Tang Asiab-e Ajam and last: Qaleh Chenan Rural District -[2018-02-13T08:27:01.872] [INFO] cheese - inserting 1000 documents. first: Kara Pryor and last: File:CAN-S1930c-Bank of Prince Edward Island-2 Dollars (1877).jpg -[2018-02-13T08:27:01.906] [INFO] cheese - inserting 1000 documents. first: Portal:European Union/Selected article/10 and last: Javerlhac -[2018-02-13T08:27:01.910] [INFO] cheese - batch complete in: 2.046 secs -[2018-02-13T08:27:01.963] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:27:01.970] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:27:02.038] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:27:02.254] [INFO] cheese - inserting 1000 documents. first: Barons of Narpio and last: A'mak-i Hayal -[2018-02-13T08:27:02.326] [INFO] cheese - inserting 1000 documents. first: Timeline of the 2004 Pacific typhoon season and last: Samuel Taylor Marshall -[2018-02-13T08:27:02.347] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:27:02.510] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:27:02.516] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tupac-shakur-life.skyblog.com and last: File:Civilization Poster cropped.jpg -[2018-02-13T08:27:02.651] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:27:02.673] [INFO] cheese - inserting 1000 documents. first: Estación Central railway station and last: Bishop of Galway and Kilmacduagh -[2018-02-13T08:27:02.776] [INFO] cheese - inserting 1000 documents. first: Swieta Katarzyna, Lower Silesian Voivodeship and last: Wikipedia:Articles for deletion/List of World War II veterans -[2018-02-13T08:27:02.786] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:27:02.796] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:27:02.858] [INFO] cheese - inserting 1000 documents. first: File:CAN-S1931c-Bank of Prince Edward Island-5 Dollars (1877).jpg and last: Wikipedia:WikiProject Spam/Local/visakhapatnamairport.com -[2018-02-13T08:27:02.941] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/brinno.com and last: Phước Thành province -[2018-02-13T08:27:02.969] [INFO] cheese - inserting 1000 documents. first: Javerlhac, France and last: Ziaur Rahman (kabaddi) -[2018-02-13T08:27:02.996] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:27:03.035] [INFO] cheese - inserting 1000 documents. first: Lupsa River (Olt) and last: Jianliang "Jenrya" Lee -[2018-02-13T08:27:03.075] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:27:03.084] [INFO] cheese - batch complete in: 0.288 secs -[2018-02-13T08:27:03.105] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:27:03.304] [INFO] cheese - inserting 1000 documents. first: Template:User English descent and last: Národní -[2018-02-13T08:27:03.389] [INFO] cheese - inserting 1000 documents. first: Hjoervard Ylfing and last: Francois-Andre Isambert -[2018-02-13T08:27:03.435] [INFO] cheese - inserting 1000 documents. first: David Linton and last: Home (Procol Harum album) -[2018-02-13T08:27:03.436] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:27:03.454] [INFO] cheese - inserting 1000 documents. first: CIT, Rajnandgoan and last: File:Finnthehalfgreat.jpg -[2018-02-13T08:27:03.488] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T08:27:03.668] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:27:03.747] [INFO] cheese - batch complete in: 1.237 secs -[2018-02-13T08:27:03.781] [INFO] cheese - inserting 1000 documents. first: Herodias and last: Lisle (town), Broome County, New York -[2018-02-13T08:27:03.823] [INFO] cheese - inserting 1000 documents. first: Neath FC and last: Postal Museum (Taiwan) -[2018-02-13T08:27:04.179] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Wikipedia:Featured topics and last: Borredà -[2018-02-13T08:27:04.192] [INFO] cheese - batch complete in: 2.282 secs -[2018-02-13T08:27:04.221] [INFO] cheese - inserting 1000 documents. first: Children's Museum of Taipei and last: Health care in singapore -[2018-02-13T08:27:04.221] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:27:04.303] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:27:04.496] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:27:04.661] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Persib Bandung and last: ATCvet code QA16 -[2018-02-13T08:27:04.742] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:27:04.753] [INFO] cheese - inserting 1000 documents. first: File:Mama Runs Wild poster.jpg and last: Cassa di Risparmio di Fabriano e Cupramontana -[2018-02-13T08:27:04.757] [INFO] cheese - inserting 1000 documents. first: Parc des Sports Rene Froger and last: Template:Wally-nav -[2018-02-13T08:27:04.814] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:27:04.876] [INFO] cheese - inserting 1000 documents. first: Windsor (village), Broome County, New York and last: Jackson (town), Washington County, Wisconsin -[2018-02-13T08:27:04.932] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:27:04.934] [INFO] cheese - batch complete in: 1.938 secs -[2018-02-13T08:27:05.016] [INFO] cheese - inserting 1000 documents. first: 2001–02 Liga Nacional de Hockey Hielo season and last: Category:2008–09 in English football -[2018-02-13T08:27:05.129] [INFO] cheese - batch complete in: 1.461 secs -[2018-02-13T08:27:05.139] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-08-10 and last: Category:2004 in Finnish football -[2018-02-13T08:27:05.228] [INFO] cheese - inserting 1000 documents. first: Poivet and last: Kadra Bezpieczenstwa -[2018-02-13T08:27:05.241] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:27:05.243] [INFO] cheese - inserting 1000 documents. first: Yazgulyami language and last: Jessie Harlan -[2018-02-13T08:27:05.304] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:27:05.454] [INFO] cheese - batch complete in: 1.707 secs -[2018-02-13T08:27:05.594] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/moigorod-a.ucoz.ru and last: Gracias A Tí -[2018-02-13T08:27:05.658] [INFO] cheese - inserting 1000 documents. first: Sleeping with Ghosts (song) and last: Template:Cricketyearcat -[2018-02-13T08:27:05.673] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:27:05.740] [INFO] cheese - inserting 1000 documents. first: Adult educator and last: Sao Vicente Ferreira -[2018-02-13T08:27:05.757] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T08:27:05.780] [INFO] cheese - inserting 1000 documents. first: Saijiki and last: Chlaenius superbus -[2018-02-13T08:27:05.800] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:27:05.829] [INFO] cheese - inserting 1000 documents. first: Drumkeeragh Forest and last: John Costas (Greek revolutionary) -[2018-02-13T08:27:05.887] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:27:05.911] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:27:06.028] [INFO] cheese - inserting 1000 documents. first: Abbas Ali Khalatbari and last: Saint Pius Heights, Kentucky -[2018-02-13T08:27:06.154] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:27:06.171] [INFO] cheese - inserting 1000 documents. first: San Juan y Martinez, Cuba and last: Grunewald, Germany -[2018-02-13T08:27:06.265] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:27:06.306] [INFO] cheese - inserting 1000 documents. first: Rossel and last: Trakai District Municipality -[2018-02-13T08:27:06.384] [INFO] cheese - inserting 1000 documents. first: Sergey Afanasyev (racing driver) and last: Adhaim Dam -[2018-02-13T08:27:06.436] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:27:06.437] [INFO] cheese - inserting 1000 documents. first: Ryūkyū Trench and last: Predrag Filipović (footballer) -[2018-02-13T08:27:06.460] [INFO] cheese - inserting 1000 documents. first: Chlaenius superstes and last: Portal:Capital District/Selected article/Layout -[2018-02-13T08:27:06.470] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:27:06.559] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:27:06.643] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:27:06.673] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/ゼーロ/Archive and last: Template:Attached KML/Alabama State Route 237 -[2018-02-13T08:27:06.691] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Jwvoiland and last: Communes of the Gard departement -[2018-02-13T08:27:06.734] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:27:06.770] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:27:06.846] [INFO] cheese - inserting 1000 documents. first: St. Pius Heights, Kentucky and last: Ossetic language -[2018-02-13T08:27:06.878] [INFO] cheese - inserting 1000 documents. first: Jackson (village), Washington County, Wisconsin and last: Milford, New York -[2018-02-13T08:27:06.995] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:27:07.248] [INFO] cheese - batch complete in: 2.316 secs -[2018-02-13T08:27:07.275] [INFO] cheese - inserting 1000 documents. first: Jose Maria O'Neill and last: Breathing Space (album) -[2018-02-13T08:27:07.354] [INFO] cheese - inserting 1000 documents. first: Germán Ospina and last: File:Husslin.jpg -[2018-02-13T08:27:07.404] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:27:07.511] [INFO] cheese - inserting 1000 documents. first: Francois de Belleforest and last: George Clarke (handyman) -[2018-02-13T08:27:07.620] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:27:07.664] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:27:07.781] [INFO] cheese - inserting 1000 documents. first: Mehl-Mülhens-Rennen and last: Dahlerus -[2018-02-13T08:27:07.814] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Summit County, Utah and last: Tim Evans (British Army officer) -[2018-02-13T08:27:07.901] [INFO] cheese - inserting 1000 documents. first: Ram - Balaram and last: Category:1915 establishments in Vietnam -[2018-02-13T08:27:07.902] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:27:07.907] [INFO] cheese - inserting 1000 documents. first: File:Agathiyar 1972 .jpg and last: Wikipedia:WikiProject Spam/LinkReports/tocan.de -[2018-02-13T08:27:07.915] [INFO] cheese - inserting 1000 documents. first: List of Legendary Pokemon and last: Israel Kamakawiwo`ole -[2018-02-13T08:27:07.944] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:27:07.952] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:27:08.039] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:27:08.087] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:27:08.348] [INFO] cheese - inserting 1000 documents. first: Victor Jara (album) and last: File:Chet Atkins Almost Alone.jpg -[2018-02-13T08:27:08.365] [INFO] cheese - inserting 1000 documents. first: True Love (Clubstar's True Club Mix) and last: Okayasu Kiley -[2018-02-13T08:27:08.445] [INFO] cheese - inserting 1000 documents. first: Nishovaj and last: SC Lyon -[2018-02-13T08:27:08.455] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:27:08.471] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:27:08.562] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:27:08.600] [INFO] cheese - inserting 1000 documents. first: Penn State–Fogelsville Nittany Lions and last: Category:African-American museums in Florida -[2018-02-13T08:27:08.653] [INFO] cheese - inserting 1000 documents. first: Demitrios Tsafendas and last: David Yip -[2018-02-13T08:27:08.674] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:27:08.739] [INFO] cheese - inserting 1000 documents. first: Alfred Stephens and last: Willits Municipal Airport -[2018-02-13T08:27:08.767] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:27:08.794] [INFO] cheese - inserting 1000 documents. first: I Shall Rise and last: File:Radioclassique.png -[2018-02-13T08:27:08.830] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Keimoes-Upington and last: Cheryl L. Clarke -[2018-02-13T08:27:08.866] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:27:08.886] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:27:08.888] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:27:09.073] [INFO] cheese - inserting 1000 documents. first: Momo Adachi and last: James Thomson Callender -[2018-02-13T08:27:09.112] [INFO] cheese - inserting 1000 documents. first: Two stage theory and last: Last shuttle mission -[2018-02-13T08:27:09.126] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:27:09.132] [INFO] cheese - inserting 1000 documents. first: Category:African-American museums in California and last: Muskegon (disambiguation) -[2018-02-13T08:27:09.188] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:27:09.191] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:27:09.238] [INFO] cheese - inserting 1000 documents. first: Luliang Campaign and last: Michelangelo's Pieta (Florence) -[2018-02-13T08:27:09.331] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:27:09.415] [INFO] cheese - inserting 1000 documents. first: Morris (village), New York and last: Yue cuisine -[2018-02-13T08:27:09.499] [INFO] cheese - inserting 1000 documents. first: Saunderstown and last: Timeline of Brunswick -[2018-02-13T08:27:09.534] [INFO] cheese - inserting 1000 documents. first: Parramatta ferry wharf and last: Bergen Storsenter -[2018-02-13T08:27:09.672] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:27:09.685] [INFO] cheese - batch complete in: 2.437 secs -[2018-02-13T08:27:09.687] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:27:09.764] [INFO] cheese - inserting 1000 documents. first: Auberon E. W. M. Herbert and last: Metrobús -[2018-02-13T08:27:09.838] [INFO] cheese - inserting 1000 documents. first: Jackson Township, Geary County, Kansas and last: Paersi -[2018-02-13T08:27:09.910] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:27:09.920] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:27:09.923] [INFO] cheese - inserting 1000 documents. first: Final shuttle mission and last: Agelaioides oreopsar -[2018-02-13T08:27:09.954] [INFO] cheese - inserting 1000 documents. first: Frances Greenhow and last: Skytürk 360 -[2018-02-13T08:27:09.963] [INFO] cheese - inserting 1000 documents. first: Portal:College football/Selected article/30 and last: Hans Detterman Cronman -[2018-02-13T08:27:10.037] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:10.040] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:10.053] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:27:10.166] [INFO] cheese - inserting 1000 documents. first: 2008 World Polo Championship and last: Ass, Gas, or Cash (No One Rides for Free) -[2018-02-13T08:27:10.187] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T08:27:10.317] [INFO] cheese - inserting 1000 documents. first: East Ridge High School and last: Category:2006 in Nigeria -[2018-02-13T08:27:10.338] [INFO] cheese - inserting 1000 documents. first: Thumbay clinic and last: Usama al-Nujayfi -[2018-02-13T08:27:10.359] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:27:10.433] [INFO] cheese - inserting 1000 documents. first: Kuetahya dumlupinar ueniversitesi and last: President's House (Princeton University) -[2018-02-13T08:27:10.441] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:27:10.448] [INFO] cheese - inserting 1000 documents. first: File:Adam Helms, "Untitled (48 Portraits, 2010)," 2010, charcoal on paper (installation view).jpg and last: Category:1915 establishments in Washington (state) -[2018-02-13T08:27:10.466] [INFO] cheese - batch complete in: 0.279 secs -[2018-02-13T08:27:10.511] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:27:10.568] [INFO] cheese - inserting 1000 documents. first: E-cash and last: Sports Unlimited -[2018-02-13T08:27:10.572] [INFO] cheese - inserting 1000 documents. first: Leonardo Bittencourt and last: (7283) 1989 TX15 -[2018-02-13T08:27:10.641] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:27:10.671] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:27:10.689] [INFO] cheese - inserting 1000 documents. first: Spring Branch Memorial High School and last: V. Ramakrishnan -[2018-02-13T08:27:10.802] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:27:10.914] [INFO] cheese - inserting 1000 documents. first: Szilvia Peter Szabo and last: Israel BaAliya -[2018-02-13T08:27:10.986] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:27:11.024] [INFO] cheese - inserting 1000 documents. first: Category:Torture in Cambodia and last: Saskatchewan Highway 943 -[2018-02-13T08:27:11.068] [INFO] cheese - inserting 1000 documents. first: File:Brian Kesinger21.jpg and last: Tawfiq-e-Elahi Chowdhury -[2018-02-13T08:27:11.098] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:27:11.119] [INFO] cheese - inserting 1000 documents. first: Petrie Hosken and last: 1997 French Open – Women's Doubles -[2018-02-13T08:27:11.127] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:27:11.242] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:27:11.248] [INFO] cheese - inserting 1000 documents. first: Template:Estonian Socialist Workers' Party/meta/shortname and last: Siniša Dobrasinović -[2018-02-13T08:27:11.308] [INFO] cheese - inserting 1000 documents. first: Canton cuisine and last: Self bondage -[2018-02-13T08:27:11.319] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:27:11.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fr.bioshock.wikia.com and last: File:Clientele-bonfires-on-heath.jpg -[2018-02-13T08:27:11.513] [INFO] cheese - batch complete in: 1.828 secs -[2018-02-13T08:27:11.566] [INFO] cheese - inserting 1000 documents. first: Knygnesiai and last: Fredegonda -[2018-02-13T08:27:11.570] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:27:11.689] [INFO] cheese - inserting 1000 documents. first: Mayor of Cagayan de Oro and last: Richard Hawkyns -[2018-02-13T08:27:11.760] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:27:11.832] [INFO] cheese - inserting 1000 documents. first: Herpes neonatorum and last: House of Mehrān -[2018-02-13T08:27:11.881] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:27:11.896] [INFO] cheese - inserting 1000 documents. first: Charles-Étienne Chaussegros de Léry and last: Israel Williams -[2018-02-13T08:27:11.985] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:27:12.039] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:27:12.115] [INFO] cheese - inserting 1000 documents. first: Hazel Schmoll and last: Lions (song) -[2018-02-13T08:27:12.174] [INFO] cheese - inserting 1000 documents. first: Mezősomlyó and last: Biel running days -[2018-02-13T08:27:12.191] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:27:12.282] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:27:12.307] [INFO] cheese - inserting 1000 documents. first: Emnambithi-Ladysmith Municipality and last: House of Ergadia -[2018-02-13T08:27:12.427] [INFO] cheese - inserting 1000 documents. first: National Festival of the Dividivi and last: Eugene Huetz -[2018-02-13T08:27:12.467] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:27:12.489] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:27:12.551] [INFO] cheese - inserting 1000 documents. first: Sensitive but unclassified and last: Wikipedia:Naming conventions (computer and video games) -[2018-02-13T08:27:12.635] [INFO] cheese - inserting 1000 documents. first: Self-certifying Filesystem and last: Life and Labour of the People in London -[2018-02-13T08:27:12.659] [INFO] cheese - inserting 1000 documents. first: File:Partido Socialista Democratico Espanol symbol, used at time of 1977 election.png and last: Category:1979 establishments in Curaçao -[2018-02-13T08:27:12.703] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:27:12.787] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:27:12.880] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:27:12.975] [INFO] cheese - inserting 1000 documents. first: Lions (Ben Haenow song) and last: Islamo-Leftism -[2018-02-13T08:27:13.023] [INFO] cheese - inserting 1000 documents. first: Red dwarf (star) and last: Bataguacu -[2018-02-13T08:27:13.052] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:27:13.060] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:27:13.112] [INFO] cheese - inserting 1000 documents. first: Gary Wackett and last: Wikipedia:WikiProject Spam/LinkReports/rtl-longueuil.qc.ca -[2018-02-13T08:27:13.125] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ORDINAL and last: Feurstein -[2018-02-13T08:27:13.189] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:27:13.206] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:27:13.363] [INFO] cheese - inserting 1000 documents. first: Chen Yun and last: Fritjov Capra -[2018-02-13T08:27:13.365] [INFO] cheese - inserting 1000 documents. first: Desire Cardinal Mercier and last: Goteborgs hogre latinlaroverk -[2018-02-13T08:27:13.422] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:27:13.520] [INFO] cheese - batch complete in: 2.006 secs -[2018-02-13T08:27:13.522] [INFO] cheese - inserting 1000 documents. first: Ryan Drese and last: Address Unknown -[2018-02-13T08:27:13.553] [INFO] cheese - inserting 1000 documents. first: Flight Commander (disambiguation) and last: The Squad (1981 film) -[2018-02-13T08:27:13.553] [INFO] cheese - inserting 1000 documents. first: Olympique de Béjà and last: Line of succession to the Greek Throne -[2018-02-13T08:27:13.631] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:27:13.649] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:27:13.721] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:27:13.780] [INFO] cheese - inserting 1000 documents. first: James Cope Christie and last: Giulio Cesare Tassoni -[2018-02-13T08:27:13.796] [INFO] cheese - inserting 1000 documents. first: Longest rivers of Missouri and last: Northeast Alabama Community College -[2018-02-13T08:27:13.797] [INFO] cheese - inserting 1000 documents. first: Ramon Pichot Girones and last: Dezso Szentgyorgyi -[2018-02-13T08:27:13.800] [INFO] cheese - inserting 1000 documents. first: RAMBAM and last: 508th Missile Squadron -[2018-02-13T08:27:13.836] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:27:13.852] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:27:13.918] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:27:13.937] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:27:14.162] [INFO] cheese - inserting 1000 documents. first: List of asteroids/158001-158100 and last: Villafranca di Forli -[2018-02-13T08:27:14.208] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T08:27:14.297] [INFO] cheese - inserting 1000 documents. first: Prača and last: Psyren chapters -[2018-02-13T08:27:14.342] [INFO] cheese - inserting 1000 documents. first: Category:Sikhism articles by importance and last: Category:A-Class Zoroastrianism articles -[2018-02-13T08:27:14.355] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:27:14.421] [INFO] cheese - inserting 1000 documents. first: File:Gremlins2poster.jpg and last: Pierre Courayer -[2018-02-13T08:27:14.439] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:27:14.442] [INFO] cheese - inserting 1000 documents. first: Bonington Halls and last: Eighth and I -[2018-02-13T08:27:14.476] [INFO] cheese - inserting 1000 documents. first: PICMG 1.3 and last: Hellaween: Pure Horror -[2018-02-13T08:27:14.503] [INFO] cheese - inserting 1000 documents. first: Pablo Roberto Munhoz Rodriguez and last: Francisco penalosa -[2018-02-13T08:27:14.528] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:27:14.552] [INFO] cheese - batch complete in: 0.344 secs -[2018-02-13T08:27:14.593] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:27:14.588] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:27:15.020] [INFO] cheese - inserting 1000 documents. first: Sangeris River and last: St Helena Heliotrope -[2018-02-13T08:27:15.026] [INFO] cheese - inserting 1000 documents. first: Homer A. Stone and last: Category:Moroccan human rights activists -[2018-02-13T08:27:15.027] [INFO] cheese - inserting 1000 documents. first: Category:Redirects from Italian-language terms and last: Mohammad Al-Emlah -[2018-02-13T08:27:15.079] [INFO] cheese - inserting 1000 documents. first: Category:Yukon civil servants and last: Blue-grey Robin -[2018-02-13T08:27:15.085] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:27:15.093] [INFO] cheese - inserting 1000 documents. first: Tracked vehicle and last: Neoconservatives -[2018-02-13T08:27:15.143] [INFO] cheese - inserting 1000 documents. first: Ewing Oil and last: File:Palisadespark45.jpg -[2018-02-13T08:27:15.176] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:27:15.159] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:27:15.263] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:27:15.273] [INFO] cheese - inserting 1000 documents. first: BR Class 395 and last: Category:Spanish-American War monitors -[2018-02-13T08:27:15.314] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:27:15.389] [INFO] cheese - batch complete in: 1.85 secs -[2018-02-13T08:27:15.404] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:27:15.505] [INFO] cheese - inserting 1000 documents. first: Skylark (publisher) and last: Hokuriku ginkou -[2018-02-13T08:27:15.636] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:27:15.865] [INFO] cheese - inserting 1000 documents. first: Category:Greenlandic politicians and last: The Digger Farm -[2018-02-13T08:27:15.903] [INFO] cheese - inserting 1000 documents. first: Sulphur-bellied Tyrant-manakin and last: Wilhelm Schubert van Ehrenberg -[2018-02-13T08:27:15.934] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:15.938] [INFO] cheese - inserting 1000 documents. first: Shrishailam and last: Deux Cents Milles sous les mers ou le Cauchemar du pêcheur -[2018-02-13T08:27:15.972] [INFO] cheese - inserting 1000 documents. first: Category:1999 in the Republic of the Congo and last: Category:Crimean War naval ships of the Ottoman Empire -[2018-02-13T08:27:15.983] [INFO] cheese - inserting 1000 documents. first: Morrell Park, Baltimore and last: Wikipedia:Articles for deletion/Irmtraut Sell -[2018-02-13T08:27:15.988] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:27:16.033] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:27:16.042] [INFO] cheese - inserting 1000 documents. first: Xystophora scutatella and last: Mut'im ibn Adi -[2018-02-13T08:27:16.064] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:27:16.136] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:27:16.197] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:27:16.496] [INFO] cheese - inserting 1000 documents. first: Hokuriku ginko and last: Pokémon World (Single) -[2018-02-13T08:27:16.590] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:27:16.645] [INFO] cheese - inserting 1000 documents. first: Agreed Framework (1994) and last: Varcsaro -[2018-02-13T08:27:16.688] [INFO] cheese - inserting 1000 documents. first: TONY! and last: Category:Morecambe F.C. matches -[2018-02-13T08:27:16.708] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:27:16.737] [INFO] cheese - inserting 1000 documents. first: File:Pi Magazine, October 2012.jpg and last: Andamion Murataj -[2018-02-13T08:27:16.742] [INFO] cheese - inserting 1000 documents. first: West Bačka and last: Transfer stations -[2018-02-13T08:27:16.767] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:27:16.844] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:27:16.854] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:27:16.885] [INFO] cheese - inserting 1000 documents. first: Benedetto Pistrucci and last: Wikipedia:References -[2018-02-13T08:27:16.929] [INFO] cheese - inserting 1000 documents. first: Mangal Ram Premi and last: Huang Fuyuan -[2018-02-13T08:27:17.024] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fanny Eleonore Baur and last: List of people on stamps of Boyaca -[2018-02-13T08:27:17.046] [INFO] cheese - batch complete in: 1.655 secs -[2018-02-13T08:27:17.056] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:27:17.126] [INFO] cheese - inserting 1000 documents. first: Jose Veiga (footballer) and last: Burglen UR -[2018-02-13T08:27:17.172] [INFO] cheese - inserting 1000 documents. first: Prilipec and last: Category:Politics of Vaughan -[2018-02-13T08:27:17.212] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:27:17.235] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:27:17.275] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:27:17.298] [INFO] cheese - inserting 1000 documents. first: Video RAM (dual-ported DRAM) and last: Army ranks and insignia of the Russian Federation -[2018-02-13T08:27:17.447] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:27:17.451] [INFO] cheese - inserting 1000 documents. first: Category:Redirects from Cherokee-language terms and last: Komlenović -[2018-02-13T08:27:17.587] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:27:17.621] [INFO] cheese - inserting 1000 documents. first: Category:Malla rulers and last: Rotozaza -[2018-02-13T08:27:17.697] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:17.704] [INFO] cheese - inserting 1000 documents. first: Valea Lunga River (Turcu) and last: Wikipedia:Articles for deletion/Navicat -[2018-02-13T08:27:17.738] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:27:17.936] [INFO] cheese - inserting 1000 documents. first: La Vieille Dame et les pigeons and last: Wikipedia:Articles for deletion/Son Jeong-Ryun -[2018-02-13T08:27:17.975] [INFO] cheese - inserting 1000 documents. first: List of people on stamps of Cundinamarca and last: Jews of Provence -[2018-02-13T08:27:18.033] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:27:18.048] [INFO] cheese - inserting 1000 documents. first: Jaskinia Raj and last: Wikipedia:WikiProject Spam/LinkReports/ahkstudio.blogspot.com -[2018-02-13T08:27:18.060] [INFO] cheese - inserting 1000 documents. first: Eschbach (Markgraeflerland) and last: Grobner Bases -[2018-02-13T08:27:18.070] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:27:18.095] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T08:27:18.151] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:27:18.265] [INFO] cheese - inserting 1000 documents. first: Komlenovic and last: Qiam -[2018-02-13T08:27:18.287] [INFO] cheese - inserting 1000 documents. first: File:My Girls Animal Collective.jpeg and last: Wikipedia:WikiProject Spam/LinkReports/amerieonline.am.funpic.de -[2018-02-13T08:27:18.339] [INFO] cheese - inserting 1000 documents. first: Derek Anderson (footballl player) and last: HSR Layout -[2018-02-13T08:27:18.367] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:27:18.368] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:27:18.421] [INFO] cheese - inserting 1000 documents. first: Colorado State Highway 159 and last: Ugrin Csak (archbishop) -[2018-02-13T08:27:18.466] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T08:27:18.500] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:27:18.567] [INFO] cheese - inserting 1000 documents. first: Bunmi Koko and last: Epi Map -[2018-02-13T08:27:18.736] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:27:18.811] [INFO] cheese - inserting 1000 documents. first: File:Fast Break game.png and last: File:ShanghaiFilmGroup.jpg -[2018-02-13T08:27:18.880] [INFO] cheese - inserting 1000 documents. first: Ukrainian nationality law and last: USAT David C. Shanks -[2018-02-13T08:27:18.898] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:27:18.915] [INFO] cheese - inserting 1000 documents. first: Gaia and last: Terence O'Neill -[2018-02-13T08:27:18.927] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:27:18.983] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2009-10-12/Bing search and last: Born of osiris -[2018-02-13T08:27:18.998] [INFO] cheese - inserting 1000 documents. first: Aseptis ferruginea and last: Quantum configuration space -[2018-02-13T08:27:19.001] [INFO] cheese - inserting 1000 documents. first: Kal Shur and last: File:Static DVD cover.jpg -[2018-02-13T08:27:19.020] [INFO] cheese - batch complete in: 1.974 secs -[2018-02-13T08:27:19.041] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:27:19.124] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:27:19.139] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:27:19.248] [INFO] cheese - inserting 1000 documents. first: St Oswald's Church, Thornton in Lonsdale and last: Category:Rhode Island Rams baseball -[2018-02-13T08:27:19.257] [INFO] cheese - inserting 1000 documents. first: Centre democrate humaniste and last: La Legion d'Orient -[2018-02-13T08:27:19.297] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T08:27:19.329] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:27:19.372] [INFO] cheese - inserting 1000 documents. first: Nippon Flour Mills and last: Gonzalo Hernandez y Aguilar -[2018-02-13T08:27:19.514] [INFO] cheese - inserting 1000 documents. first: Gheorghe Ursu and last: Mt. Cook National Park -[2018-02-13T08:27:19.558] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:27:19.577] [INFO] cheese - inserting 1000 documents. first: Juergen Vollmer and last: List of asteroids/80801-80900 -[2018-02-13T08:27:19.613] [INFO] cheese - batch complete in: 0.314 secs -[2018-02-13T08:27:19.635] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:19.668] [INFO] cheese - inserting 1000 documents. first: Venus 2000 and last: Nephelochloa -[2018-02-13T08:27:19.763] [INFO] cheese - inserting 1000 documents. first: Cole swindell and last: Template:Brazil Squad 2003 Women's World Cup -[2018-02-13T08:27:19.782] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:27:19.867] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:27:20.006] [INFO] cheese - inserting 1000 documents. first: James B. French and last: Flávio Dino -[2018-02-13T08:27:20.069] [INFO] cheese - inserting 1000 documents. first: Sassi's Greenbul and last: Institute Of Dental Sciences Bareilly -[2018-02-13T08:27:20.088] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:27:20.109] [INFO] cheese - inserting 1000 documents. first: J'ai vole la vie and last: Valea Alba River (Aries) -[2018-02-13T08:27:20.145] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:27:20.210] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:27:20.257] [INFO] cheese - inserting 1000 documents. first: File:Amado Carrillo Fuentes.jpg and last: Waiting (SpongeBob SquarePants) -[2018-02-13T08:27:20.339] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:27:20.384] [INFO] cheese - inserting 1000 documents. first: Duchenne-Erb paralysis. and last: Economy of São Paulo -[2018-02-13T08:27:20.435] [INFO] cheese - inserting 1000 documents. first: Template:Canada Squad 2003 Women's World Cup and last: Tan Bien District -[2018-02-13T08:27:20.435] [INFO] cheese - inserting 1000 documents. first: Munana, Avila and last: Ecoivres -[2018-02-13T08:27:20.448] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:27:20.466] [INFO] cheese - inserting 1000 documents. first: It (1927 film) and last: Leonard Peikoff -[2018-02-13T08:27:20.474] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:27:20.522] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:27:20.606] [INFO] cheese - batch complete in: 1.586 secs -[2018-02-13T08:27:20.647] [INFO] cheese - inserting 1000 documents. first: Category:Ourém Municipality and last: I3-6300T -[2018-02-13T08:27:20.733] [INFO] cheese - inserting 1000 documents. first: Ecole Secondaire catholique Theriault and last: Si On Avait Besoin D'une Cinquieme Saison -[2018-02-13T08:27:20.769] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:27:20.801] [INFO] cheese - batch complete in: 0.325 secs -[2018-02-13T08:27:20.818] [INFO] cheese - inserting 1000 documents. first: Gonzalvo di Cordova and last: Referral -[2018-02-13T08:27:20.873] [INFO] cheese - inserting 1000 documents. first: Chester and West Cheshire Junction Railway and last: Category:Paksi SE seasons -[2018-02-13T08:27:20.953] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:27:20.955] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:27:21.068] [INFO] cheese - inserting 1000 documents. first: Tony the Wonder Horse and last: Doggie Style -[2018-02-13T08:27:21.125] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:27:21.155] [INFO] cheese - inserting 1000 documents. first: Hord, Illinois and last: Template:LCR style -[2018-02-13T08:27:21.205] [INFO] cheese - inserting 1000 documents. first: File:Edmonton Cracker Cats.png and last: Learning Commons -[2018-02-13T08:27:21.279] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:27:21.295] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:27:21.303] [INFO] cheese - inserting 1000 documents. first: Kardla meteorite crater and last: Wikipedia:BeBold -[2018-02-13T08:27:21.307] [INFO] cheese - inserting 1000 documents. first: I3-6100TE and last: Myrtus javanica -[2018-02-13T08:27:21.393] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:27:21.403] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:27:21.631] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Gibraltar and last: Mangaia Island Airport -[2018-02-13T08:27:21.648] [INFO] cheese - inserting 1000 documents. first: Say Yes (Elliott Smith song) and last: Chilul Hashem -[2018-02-13T08:27:21.697] [INFO] cheese - inserting 1000 documents. first: Canon EOS 350D DIGITAL and last: Wikipedia:Reference desk archive/Computing/Early/cleanup/double redirects/20050713/15 -[2018-02-13T08:27:21.705] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:27:21.732] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:27:21.783] [INFO] cheese - inserting 1000 documents. first: Janamashtmi and last: Scottish handball season 2010/11 -[2018-02-13T08:27:21.837] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:27:21.861] [INFO] cheese - inserting 1000 documents. first: Bhavik Gandhi and last: Свадьба -[2018-02-13T08:27:22.008] [INFO] cheese - inserting 1000 documents. first: Wooly rhino and last: Darach Ó Catháin -[2018-02-13T08:27:22.015] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:27:22.066] [INFO] cheese - inserting 1000 documents. first: Jambosa samarangensis and last: Jesse James, Jr. (film) -[2018-02-13T08:27:22.084] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:27:22.164] [INFO] cheese - inserting 1000 documents. first: Faces (film) and last: Canada lynx -[2018-02-13T08:27:22.193] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:27:22.192] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:27:22.389] [INFO] cheese - batch complete in: 1.783 secs -[2018-02-13T08:27:22.406] [INFO] cheese - inserting 1000 documents. first: Jawed nasir and last: USS BATR-20 -[2018-02-13T08:27:22.416] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/AvicBot 5 and last: Transcosmos Stadium Nagasaki -[2018-02-13T08:27:22.494] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:27:22.501] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:27:22.631] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Goh Lay Kuan and last: West Buffalo (disambiguation) -[2018-02-13T08:27:22.677] [INFO] cheese - inserting 1000 documents. first: Scottish Handball Season 2011/12 and last: Dak R'Lap District -[2018-02-13T08:27:22.687] [INFO] cheese - inserting 1000 documents. first: Svadba and last: USCGC Point Brown (WPB-82362) -[2018-02-13T08:27:22.687] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:27:22.696] [INFO] cheese - inserting 1000 documents. first: Police Contingent SWAT Unit (UTC, Malaysia) and last: File:WHR Studio Computer.jpg -[2018-02-13T08:27:22.734] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:27:22.747] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:27:22.795] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:27:22.861] [INFO] cheese - inserting 1000 documents. first: Template:Tls and last: Leo Clijsters -[2018-02-13T08:27:22.962] [INFO] cheese - inserting 1000 documents. first: Allied Victory Medal (Italy) and last: Sound radical -[2018-02-13T08:27:22.951] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:27:23.032] [INFO] cheese - inserting 1000 documents. first: Barbara Cox (writer) and last: William L. DeAndrea -[2018-02-13T08:27:23.057] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:27:23.136] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:27:23.144] [INFO] cheese - inserting 1000 documents. first: Woolbrook (disambiguation) and last: Epiphthora poliopasta -[2018-02-13T08:27:23.225] [INFO] cheese - inserting 1000 documents. first: Clean Cities award and last: File:California 1946 poster small.jpg -[2018-02-13T08:27:23.222] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:27:23.299] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:27:23.305] [INFO] cheese - inserting 1000 documents. first: Guido Forti and last: Kolsch (dialect) -[2018-02-13T08:27:23.318] [INFO] cheese - inserting 1000 documents. first: Archangelo Palmentieri and last: Xixiu District -[2018-02-13T08:27:23.393] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:27:23.397] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:27:23.555] [INFO] cheese - inserting 1000 documents. first: Hanriot HD-3 and last: Recopa Sudamericana (disambiguation) -[2018-02-13T08:27:23.632] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:27:23.642] [INFO] cheese - inserting 1000 documents. first: Socialist Labour Party of Croatia and last: Tsander (crater) -[2018-02-13T08:27:23.669] [INFO] cheese - inserting 1000 documents. first: Canadian lynx and last: Black Sabbath (album) -[2018-02-13T08:27:23.675] [INFO] cheese - inserting 1000 documents. first: Waldbuettelbrunn and last: Jacques-Andre Istel -[2018-02-13T08:27:23.686] [INFO] cheese - inserting 1000 documents. first: Category:Czech ice hockey coaches and last: File:Focoth3b.jpg -[2018-02-13T08:27:23.725] [INFO] cheese - batch complete in: 0.328 secs -[2018-02-13T08:27:23.742] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:27:23.782] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:27:23.855] [INFO] cheese - batch complete in: 1.466 secs -[2018-02-13T08:27:23.880] [INFO] cheese - inserting 1000 documents. first: Kepler-25b and last: Shinee World 2012 (arena tour) -[2018-02-13T08:27:23.925] [INFO] cheese - inserting 1000 documents. first: File:LUX (soap) logo.png and last: Breath of Fire 6 -[2018-02-13T08:27:23.980] [INFO] cheese - inserting 1000 documents. first: List of Thai royal consorts and last: Only Men Aloud! (album) -[2018-02-13T08:27:24.015] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:27:24.117] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:27:24.150] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:27:24.196] [INFO] cheese - inserting 1000 documents. first: Karel Hartmann and last: 2308 Schilt -[2018-02-13T08:27:24.236] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:27:24.329] [INFO] cheese - inserting 1000 documents. first: Template:Kolkata Metro color and last: 2011–12 Gimnàstic de Tarragona season -[2018-02-13T08:27:24.490] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:24.639] [INFO] cheese - inserting 1000 documents. first: Power play (disambiguation) and last: International Baseball League of Australia -[2018-02-13T08:27:24.746] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:27:24.750] [INFO] cheese - inserting 1000 documents. first: Lotta Hedstrom and last: Herraengs Gruf AB -[2018-02-13T08:27:24.792] [INFO] cheese - inserting 1000 documents. first: Zakarpattia region and last: Chemotype -[2018-02-13T08:27:24.794] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:27:24.874] [INFO] cheese - inserting 1000 documents. first: Category:Lists of ambassadors of Pakistan and last: Broidy -[2018-02-13T08:27:24.936] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:27:24.938] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:27:24.942] [INFO] cheese - inserting 1000 documents. first: Lincoln-Douglas debates of 1858 and last: Diplazoptilon -[2018-02-13T08:27:25.094] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:27:25.187] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Ohio State Route 412 and last: Category:Polish people of the American Civil War -[2018-02-13T08:27:25.238] [INFO] cheese - inserting 1000 documents. first: 1950 Titleholders Championship and last: Category:Breast cancer organizations -[2018-02-13T08:27:25.253] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:27:25.333] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:27:25.346] [INFO] cheese - inserting 1000 documents. first: 1854 Skvortsov and last: 7947 Toland -[2018-02-13T08:27:25.486] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:27:25.519] [INFO] cheese - inserting 1000 documents. first: Vishwamitra and last: Special Collection Service -[2018-02-13T08:27:25.575] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:27:25.614] [INFO] cheese - inserting 1000 documents. first: Alfred Page (priest) and last: Template:User pno-3 -[2018-02-13T08:27:25.741] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:27:25.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alexander Belikov and last: Thapar University -[2018-02-13T08:27:25.907] [INFO] cheese - inserting 1000 documents. first: Dimorphocoma and last: Ville Oksanen -[2018-02-13T08:27:26.026] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:27:26.058] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:27:26.070] [INFO] cheese - inserting 1000 documents. first: Peso (song) and last: Jin invasion of Song -[2018-02-13T08:27:26.114] [INFO] cheese - inserting 1000 documents. first: Wadsworth and last: Stacks -[2018-02-13T08:27:26.124] [INFO] cheese - inserting 1000 documents. first: Nguyễn The Loc and last: Aszubeszterce -[2018-02-13T08:27:26.209] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:27:26.217] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:27:26.290] [INFO] cheese - batch complete in: 2.435 secs -[2018-02-13T08:27:26.308] [INFO] cheese - inserting 1000 documents. first: Portal:Religion/On this day/April 6 and last: Teardrops (elena paparizou song) -[2018-02-13T08:27:26.322] [INFO] cheese - inserting 1000 documents. first: List of Australian rugby league grand final records and last: Shōzō Sakurai -[2018-02-13T08:27:26.349] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:27:26.426] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:27:26.497] [INFO] cheese - inserting 1000 documents. first: Brookline-Newfane Bridge and last: Bracted nutrush -[2018-02-13T08:27:26.500] [INFO] cheese - inserting 1000 documents. first: Jason D. Brown and last: Clay Triple-lines -[2018-02-13T08:27:26.538] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:27:26.587] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:27:26.704] [INFO] cheese - inserting 1000 documents. first: Jin conquest of China and last: Category:Unincorporated communities in Wisconsin by county -[2018-02-13T08:27:26.724] [INFO] cheese - inserting 1000 documents. first: Jamieson City and last: Kari MacLean -[2018-02-13T08:27:26.771] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:27:26.823] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:27:27.040] [INFO] cheese - inserting 1000 documents. first: Sports in England and last: Sher-e-Kashmir University of Agricultural Sciences & Technology of Jammu -[2018-02-13T08:27:27.089] [INFO] cheese - inserting 1000 documents. first: Vector Slime and last: Category:United Kingdom Acts of Parliament 1832 -[2018-02-13T08:27:27.124] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:27:27.186] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:27:27.263] [INFO] cheese - inserting 1000 documents. first: File:Andy Grammer - Honey, I'm Good.png and last: Of Course, the Motorists -[2018-02-13T08:27:27.273] [INFO] cheese - inserting 1000 documents. first: Sorcerer's Apprentice Syndrome and last: Brian Peterson (footballer) -[2018-02-13T08:27:27.324] [INFO] cheese - inserting 1000 documents. first: Rule of consensus and last: Alejandro Urtasun -[2018-02-13T08:27:27.382] [INFO] cheese - inserting 1000 documents. first: Duke MacIsaac and last: Faulhaber -[2018-02-13T08:27:27.455] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:27:27.438] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:27:27.508] [INFO] cheese - batch complete in: 1.482 secs -[2018-02-13T08:27:27.548] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:27:27.572] [INFO] cheese - inserting 1000 documents. first: Never Could Toe the Mark (song) and last: Singapore at the 2002 Asian Games -[2018-02-13T08:27:27.733] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:27:27.758] [INFO] cheese - inserting 1000 documents. first: Beech Fork Lake Wildlife Management Area and last: Wikipedia:Articles for deletion/Menara-e-Noor -[2018-02-13T08:27:27.843] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:27:27.903] [INFO] cheese - inserting 1000 documents. first: Félicien Rops and last: Motor Torpedo Boat PT-109 -[2018-02-13T08:27:28.036] [INFO] cheese - inserting 1000 documents. first: José Iturbi International Music Competition and last: Fodhil Hadjadj -[2018-02-13T08:27:28.101] [INFO] cheese - batch complete in: 1.811 secs -[2018-02-13T08:27:28.133] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:27:28.183] [INFO] cheese - inserting 1000 documents. first: Campeonato Brasileiro Série D 2009 and last: File:Majors Pro.jpg -[2018-02-13T08:27:28.236] [INFO] cheese - inserting 1000 documents. first: Michael Esper and last: 2003–04 Bosnia and Herzegovina Football Cup -[2018-02-13T08:27:28.258] [INFO] cheese - inserting 1000 documents. first: Le Plessis-Pate and last: Magha (nakshatra) -[2018-02-13T08:27:28.341] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:27:28.343] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:27:28.358] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:27:28.415] [INFO] cheese - inserting 1000 documents. first: Fronteira, Minas Gerais and last: Hannover CL III -[2018-02-13T08:27:28.417] [INFO] cheese - inserting 1000 documents. first: NFL GameDay Highlights and last: Cecil White (footballer) -[2018-02-13T08:27:28.462] [INFO] cheese - inserting 1000 documents. first: Usman Tariq (cricketer) and last: File:Hamburg-Altona (1989).jpg -[2018-02-13T08:27:28.486] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:27:28.565] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:27:28.611] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:27:28.770] [INFO] cheese - inserting 1000 documents. first: File:MiniFlex1973.jpg and last: Duwag -[2018-02-13T08:27:28.803] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:27:28.827] [INFO] cheese - inserting 1000 documents. first: Oblique view map and last: 12+1 -[2018-02-13T08:27:28.911] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adithya Srinivasan and last: Shulkesh Zangava -[2018-02-13T08:27:28.946] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:27:28.978] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Science/2009 October 10 and last: Associação Internacional dos Trabalhadores – Secção Portuguesa -[2018-02-13T08:27:29.014] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:27:29.043] [INFO] cheese - inserting 1000 documents. first: Category:Festivals in Wyoming and last: Cyrillomethodian -[2018-02-13T08:27:29.150] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:27:29.302] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:27:29.352] [INFO] cheese - inserting 1000 documents. first: Jarmund Øyen and last: For We Are -[2018-02-13T08:27:29.404] [INFO] cheese - inserting 1000 documents. first: John Brack and last: Category:User mt-N -[2018-02-13T08:27:29.428] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:27:29.563] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:27:29.637] [INFO] cheese - inserting 1000 documents. first: CN electric multiple unit and last: Template:Fs team Luch Yekaterinburg -[2018-02-13T08:27:29.763] [INFO] cheese - inserting 1000 documents. first: Bibesco, Elizabeth and last: VW Corrado -[2018-02-13T08:27:29.767] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:27:29.811] [INFO] cheese - inserting 1000 documents. first: Phuleli and last: 8700 BC -[2018-02-13T08:27:29.846] [INFO] cheese - inserting 1000 documents. first: Stuart Reid (English journalist) and last: Shin-Keisei N800 series -[2018-02-13T08:27:29.876] [INFO] cheese - inserting 1000 documents. first: Suicide (novel) and last: Category:Anglo-Egyptian Sudan -[2018-02-13T08:27:29.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/diamant.net and last: 19" -[2018-02-13T08:27:29.911] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:27:29.956] [INFO] cheese - batch complete in: 1.854 secs -[2018-02-13T08:27:29.971] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:27:30.008] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:27:30.036] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:30.252] [INFO] cheese - inserting 1000 documents. first: File:Stand By Your Man LL.jpg and last: A Mandate for Change -[2018-02-13T08:27:30.381] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:27:30.494] [INFO] cheese - inserting 1000 documents. first: Sony Pictures Studios and last: Kinky Boots (film) -[2018-02-13T08:27:30.541] [INFO] cheese - inserting 1000 documents. first: Gingko nut and last: List of minor planets/29501–29600 -[2018-02-13T08:27:30.576] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:27:30.664] [INFO] cheese - inserting 1000 documents. first: Mike Keller and last: TBLG -[2018-02-13T08:27:30.678] [INFO] cheese - inserting 1000 documents. first: Template:Fs team Metallurg Serov and last: Wikipedia:Articles for deletion/Dwaitham -[2018-02-13T08:27:30.737] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:27:30.744] [INFO] cheese - inserting 1000 documents. first: José Assis and last: Sándor Szabó (disambiguation) -[2018-02-13T08:27:30.817] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:27:30.838] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:27:30.909] [INFO] cheese - inserting 1000 documents. first: Shuangluan District and last: Wikipedia:WikiProject Spam/LinkReports/techsuperb.com -[2018-02-13T08:27:30.906] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:27:31.043] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:27:31.082] [INFO] cheese - inserting 1000 documents. first: Beige box and last: 12th September -[2018-02-13T08:27:31.244] [INFO] cheese - inserting 1000 documents. first: Eastgippsland and last: Ferrey -[2018-02-13T08:27:31.254] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:27:31.350] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:27:31.501] [INFO] cheese - inserting 1000 documents. first: Chebuloyl and last: Mortal Kombat: Mythologies -[2018-02-13T08:27:31.505] [INFO] cheese - inserting 1000 documents. first: Tabaré (disambiguation) and last: Barnstable Hundred -[2018-02-13T08:27:31.569] [INFO] cheese - inserting 1000 documents. first: Spermophilus mohavensis and last: Peace Prize of the German Book Trade -[2018-02-13T08:27:31.586] [INFO] cheese - inserting 1000 documents. first: USRC James C. Dobbin (1853) and last: Admiralty Lake -[2018-02-13T08:27:31.636] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:27:31.645] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:27:31.758] [INFO] cheese - inserting 1000 documents. first: Joes, Colorado and last: International Federation of Rock Art Organizations -[2018-02-13T08:27:31.849] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:27:31.863] [INFO] cheese - batch complete in: 1.287 secs -[2018-02-13T08:27:32.002] [INFO] cheese - inserting 1000 documents. first: Category:1927 establishments in Bosnia and Herzegovina and last: Template:Country data Velsen -[2018-02-13T08:27:32.019] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:27:32.381] [INFO] cheese - batch complete in: 1.543 secs -[2018-02-13T08:27:32.558] [INFO] cheese - inserting 1000 documents. first: Öhlund and last: Earth Defense Force -[2018-02-13T08:27:32.595] [INFO] cheese - inserting 1000 documents. first: Roloff Township, North Dakota and last: Template:Latest preview release/Netscape Navigator -[2018-02-13T08:27:32.650] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:27:32.657] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for creation/Rogue Valley Terminal Railroad Corporation and last: Chargar -[2018-02-13T08:27:32.736] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:27:32.887] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:27:32.900] [INFO] cheese - inserting 1000 documents. first: September 12th and last: The Magic School Bus Gets Ants In It's Pants -[2018-02-13T08:27:32.933] [INFO] cheese - inserting 1000 documents. first: George Seurat and last: List of surnames in Russian Federation -[2018-02-13T08:27:33.036] [INFO] cheese - inserting 1000 documents. first: Tina Romanus and last: File:Sophia and jayne.jpg -[2018-02-13T08:27:33.059] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T08:27:33.135] [INFO] cheese - batch complete in: 1.881 secs -[2018-02-13T08:27:33.146] [INFO] cheese - inserting 1000 documents. first: Kent, Kansas and last: Template:Country data Oryol -[2018-02-13T08:27:33.210] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:27:33.333] [INFO] cheese - inserting 1000 documents. first: 6teen and last: Neubidschow -[2018-02-13T08:27:33.345] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:27:33.467] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:27:33.518] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Parmer County, Texas and last: Svendsen -[2018-02-13T08:27:33.621] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:33.631] [INFO] cheese - inserting 1000 documents. first: La Barra and last: Maltese Premier League 1918–19 -[2018-02-13T08:27:33.701] [INFO] cheese - inserting 1000 documents. first: Charkar and last: Đồng Phúc, Bac Giang -[2018-02-13T08:27:33.738] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:27:33.840] [INFO] cheese - inserting 1000 documents. first: Aleksandr Popov (canoeist) and last: Carey Cash -[2018-02-13T08:27:33.847] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:27:33.863] [INFO] cheese - inserting 1000 documents. first: John T. McNaughton Bridge and last: Template:Country data Terrassa -[2018-02-13T08:27:33.933] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:27:33.954] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:27:34.055] [INFO] cheese - inserting 1000 documents. first: Mac Evangelist and last: Satyendra Prasanno Sinha, 1st Baron Sinha of Raipur -[2018-02-13T08:27:34.185] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:27:34.365] [INFO] cheese - inserting 1000 documents. first: Mora Ferenc and last: Drahomír Kadlec -[2018-02-13T08:27:34.373] [INFO] cheese - inserting 1000 documents. first: Trinity Hospital (Augusta, Georgia) and last: Wikipedia:Articles for deletion/Joshua Plague -[2018-02-13T08:27:34.501] [INFO] cheese - inserting 1000 documents. first: Maltese Premier League 1919–20 and last: Category:Mississippi elections, 2004 -[2018-02-13T08:27:34.502] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:27:34.513] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:27:34.596] [INFO] cheese - inserting 1000 documents. first: Davenport Center and last: Template:Country data Kutaisi -[2018-02-13T08:27:34.626] [INFO] cheese - inserting 1000 documents. first: Đồng Sơn, Bac Giang and last: Jumbor -[2018-02-13T08:27:34.645] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:27:34.704] [INFO] cheese - inserting 1000 documents. first: Altyn Mosque and last: Marcelle Bergerol -[2018-02-13T08:27:34.718] [INFO] cheese - inserting 1000 documents. first: Music of Venezuela and last: Unitary representation -[2018-02-13T08:27:34.719] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:27:34.740] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:27:34.847] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:27:34.852] [INFO] cheese - inserting 1000 documents. first: Janet mead and last: Ginataan -[2018-02-13T08:27:34.941] [INFO] cheese - batch complete in: 1.805 secs -[2018-02-13T08:27:34.998] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:27:35.243] [INFO] cheese - inserting 1000 documents. first: West Kwa languages and last: HOAC H36 -[2018-02-13T08:27:35.288] [INFO] cheese - inserting 1000 documents. first: BWV 1061a and last: Template:NYARC -[2018-02-13T08:27:35.304] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:27:35.328] [INFO] cheese - inserting 1000 documents. first: Autonomous District of Kosovo and Metohija and last: Thach An District -[2018-02-13T08:27:35.331] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bert Tatham and last: Greater Kansas City -[2018-02-13T08:27:35.332] [INFO] cheese - inserting 1000 documents. first: Afro-juju and last: Daphne (Greek mythology) -[2018-02-13T08:27:35.380] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:27:35.424] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:27:35.425] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:27:35.450] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:27:35.468] [INFO] cheese - inserting 1000 documents. first: Vicky Hall and last: John Lund (politician) -[2018-02-13T08:27:35.555] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:27:35.822] [INFO] cheese - inserting 1000 documents. first: Mahjong Hourouki Classic and last: 1st Independent Battery Wisconsin Light Artillery -[2018-02-13T08:27:35.909] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:27:35.920] [INFO] cheese - inserting 1000 documents. first: Category:Publishing companies established in 1951 and last: Daegu Hyehwa Girls' High School -[2018-02-13T08:27:36.003] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:27:36.089] [INFO] cheese - inserting 1000 documents. first: Category:People from Ilinden Municipality and last: Category:Castles in Flanders -[2018-02-13T08:27:36.113] [INFO] cheese - inserting 1000 documents. first: Template:2014 Winter Olympics men's ice hockey game A1 and last: Loire-Nieuport LN.30 -[2018-02-13T08:27:36.119] [INFO] cheese - inserting 1000 documents. first: 2009 Masters of Formula 3 and last: Category:Rodent articles by quality -[2018-02-13T08:27:36.122] [INFO] cheese - inserting 1000 documents. first: K. Wah International Holdings Ltd. and last: Wikipedia:CAES -[2018-02-13T08:27:36.174] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:27:36.188] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:27:36.202] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:27:36.241] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:27:36.280] [INFO] cheese - inserting 1000 documents. first: Kazuo Aoki and last: James Fletcher (entomologist) -[2018-02-13T08:27:36.397] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:27:36.641] [INFO] cheese - inserting 1000 documents. first: Simulated anealing and last: List of minor planets/25001–25100 -[2018-02-13T08:27:36.733] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:27:36.749] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedians interested in Western Australia and last: Maupertus-sur-Mer Airfield -[2018-02-13T08:27:36.756] [INFO] cheese - inserting 1000 documents. first: Easily recognizable code and last: Peter–Weyl theorem -[2018-02-13T08:27:36.836] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:27:36.867] [INFO] cheese - inserting 1000 documents. first: List of multilingual regions and last: Pithecellobium triflorum -[2018-02-13T08:27:36.918] [INFO] cheese - inserting 1000 documents. first: Martin Scorcese and last: The Oliver Pocher Show -[2018-02-13T08:27:36.986] [INFO] cheese - inserting 1000 documents. first: Template:Country data Kramatorsk and last: Wikipedia:WikiProject Professional wrestling/Roster watchlist -[2018-02-13T08:27:37.018] [INFO] cheese - batch complete in: 2.077 secs -[2018-02-13T08:27:37.095] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:27:37.099] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:27:37.102] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:27:37.258] [INFO] cheese - inserting 1000 documents. first: Marek Saganowski and last: Parker v South Eastern Rly Co -[2018-02-13T08:27:37.365] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:27:37.389] [INFO] cheese - inserting 1000 documents. first: Category:Copper Age Europe and last: Buffalo exchange -[2018-02-13T08:27:37.443] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:27:37.555] [INFO] cheese - inserting 1000 documents. first: Mohamed Thakurufaanu and last: Category:Schools in Caribou County, Idaho -[2018-02-13T08:27:37.667] [INFO] cheese - inserting 1000 documents. first: Category:Mark Knopfler and last: Hill River (disambiguation) -[2018-02-13T08:27:37.668] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:27:37.732] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:27:37.775] [INFO] cheese - inserting 1000 documents. first: Snapshot (video game) and last: Rob Lloyd (Comedian) -[2018-02-13T08:27:37.855] [INFO] cheese - inserting 1000 documents. first: Samanea guajacifolia and last: Anthony Waldman House -[2018-02-13T08:27:37.898] [INFO] cheese - inserting 1000 documents. first: Makau Musyoki and last: Esteban Alvarado -[2018-02-13T08:27:37.921] [INFO] cheese - batch complete in: 1.733 secs -[2018-02-13T08:27:37.973] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:27:38.043] [INFO] cheese - inserting 1000 documents. first: Franco Rivera and last: Riex VD -[2018-02-13T08:27:38.101] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:27:38.209] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:27:38.267] [INFO] cheese - inserting 1000 documents. first: Scheherazade (Rimsky-Korsakov) and last: Category:Wikipedians by alma mater: University of Kansas -[2018-02-13T08:27:38.375] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:27:38.423] [INFO] cheese - inserting 1000 documents. first: Category:Education in Caribou County, Idaho and last: Joseph Welsh -[2018-02-13T08:27:38.441] [INFO] cheese - inserting 1000 documents. first: Kerala Gauthameeyam and last: Vernon R. Boeckmann -[2018-02-13T08:27:38.517] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:27:38.590] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:27:38.694] [INFO] cheese - inserting 1000 documents. first: Expelled the movie and last: The Last Pin -[2018-02-13T08:27:38.702] [INFO] cheese - inserting 1000 documents. first: W207BG and last: Wikipedia:WikiProject Spam/LinkReports/pennparanormal.thestreetgods.com -[2018-02-13T08:27:38.714] [INFO] cheese - inserting 1000 documents. first: Tuan Giao District and last: Zarrik -[2018-02-13T08:27:38.716] [INFO] cheese - inserting 1000 documents. first: Anthony Van Dyck and last: Mike Levey -[2018-02-13T08:27:38.741] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:27:38.766] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:27:38.828] [INFO] cheese - inserting 1000 documents. first: 1999-2000 Zimbabwean cricket season and last: Category:Salford City F.C. players -[2018-02-13T08:27:38.833] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:27:38.905] [INFO] cheese - batch complete in: 1.886 secs -[2018-02-13T08:27:38.940] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:27:39.100] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/12stedentocht.tk and last: Mediterranean Interregional Committee -[2018-02-13T08:27:39.144] [INFO] cheese - inserting 1000 documents. first: Aesthetic Dentistry and last: Vålerenga IF -[2018-02-13T08:27:39.190] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:27:39.229] [INFO] cheese - inserting 1000 documents. first: Bartini T-117 and last: Category:Rosoman Municipality -[2018-02-13T08:27:39.330] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:27:39.383] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:27:39.435] [INFO] cheese - inserting 1000 documents. first: Category:Boxers from Maryland and last: Wikipedia:Articles for deletion/Democratic Labour Party (UK) -[2018-02-13T08:27:39.464] [INFO] cheese - inserting 1000 documents. first: Zarik, Iran and last: Category:Wikipedian Toronto Blue Jays fans -[2018-02-13T08:27:39.517] [INFO] cheese - inserting 1000 documents. first: Carol Migden and last: Ra-4 -[2018-02-13T08:27:39.600] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:27:39.613] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:27:39.619] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:27:39.688] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Archive debates/2006 November index and last: Harper's and Queen -[2018-02-13T08:27:39.766] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:27:39.899] [INFO] cheese - inserting 1000 documents. first: Botswanan records in athletics and last: Clément Cailleau -[2018-02-13T08:27:39.924] [INFO] cheese - inserting 1000 documents. first: Template:Country data Llanes and last: Template:Country data Aracaju -[2018-02-13T08:27:40.023] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:27:40.030] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:27:40.151] [INFO] cheese - inserting 1000 documents. first: Template:TMbegin/doc and last: Edward H. Griffith -[2018-02-13T08:27:40.190] [INFO] cheese - inserting 1000 documents. first: Serenity film and last: Category:Geography of Indianapolis -[2018-02-13T08:27:40.202] [INFO] cheese - inserting 1000 documents. first: Ptolemy III of Egypt and last: Duffs device -[2018-02-13T08:27:40.224] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:27:40.297] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:27:40.371] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:27:40.483] [INFO] cheese - inserting 1000 documents. first: Raphael Semmes and last: Marc Rich -[2018-02-13T08:27:40.491] [INFO] cheese - inserting 1000 documents. first: Fitzralph, Richard and last: Horrors (GARO) -[2018-02-13T08:27:40.626] [INFO] cheese - inserting 1000 documents. first: Template:User from Cape Verde/doc and last: Richard Battley -[2018-02-13T08:27:40.669] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:27:40.673] [INFO] cheese - batch complete in: 1.768 secs -[2018-02-13T08:27:40.701] [INFO] cheese - inserting 1000 documents. first: Master Players Concert Series and last: 1901 Maryland Aggies football team -[2018-02-13T08:27:40.716] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:27:40.829] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:27:40.842] [INFO] cheese - inserting 1000 documents. first: Onorede Ehwareme and last: Mariana Roriz -[2018-02-13T08:27:40.933] [INFO] cheese - inserting 1000 documents. first: Turkmenneft and last: Kings Creek (Mississippi River Ontario) -[2018-02-13T08:27:40.958] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:27:41.005] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:27:41.184] [INFO] cheese - inserting 1000 documents. first: Category:Women in finance and last: Category:Hawaii Rainbow Warriors baseball players -[2018-02-13T08:27:41.196] [INFO] cheese - inserting 1000 documents. first: Minister of Agriculture, Forestry and Fisheries and last: Dave McCanles -[2018-02-13T08:27:41.250] [INFO] cheese - inserting 1000 documents. first: File:Killafornia.jpg and last: NZR DXR class -[2018-02-13T08:27:41.257] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:27:41.263] [INFO] cheese - inserting 1000 documents. first: The Herd (1979 film) and last: Madeline Island, Wis. -[2018-02-13T08:27:41.287] [INFO] cheese - batch complete in: 1.668 secs -[2018-02-13T08:27:41.362] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:27:41.369] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:27:41.494] [INFO] cheese - inserting 1000 documents. first: Billiebob Ultralight Flightpark and last: Wikipedia:WikiProject Spam/LinkReports/ridof-acne.com -[2018-02-13T08:27:41.571] [INFO] cheese - inserting 1000 documents. first: Single Carrier FDMA (SC-FDMA) and last: Template:A Region D -[2018-02-13T08:27:41.606] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:27:41.645] [INFO] cheese - inserting 1000 documents. first: Williams Lake First Nation and last: Postmodern vertigo -[2018-02-13T08:27:41.696] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:41.831] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:27:41.996] [INFO] cheese - inserting 1000 documents. first: Emperor Houzhu of Northern Qi and last: Switchin' Kitten -[2018-02-13T08:27:42.084] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:27:42.129] [INFO] cheese - inserting 1000 documents. first: The League of the Militant Atheist and last: Bathyuroconger -[2018-02-13T08:27:42.222] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:42.234] [INFO] cheese - inserting 1000 documents. first: File:Secretorigins manhunters.jpg and last: Sergei Pavlovich Baltacha -[2018-02-13T08:27:42.292] [INFO] cheese - inserting 1000 documents. first: Category:Transportation buildings and structures in West Virginia and last: Template:Taxonomy/Breda -[2018-02-13T08:27:42.295] [INFO] cheese - inserting 1000 documents. first: Daniel Ziegler and last: Captain Cook -[2018-02-13T08:27:42.301] [INFO] cheese - inserting 1000 documents. first: Guinness Publishing and last: Fiori di polvere -[2018-02-13T08:27:42.334] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:27:42.389] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:27:42.461] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:27:42.466] [INFO] cheese - inserting 1000 documents. first: Ben E. King's Greatest Hits and last: Independent Citizens' Association -[2018-02-13T08:27:42.539] [INFO] cheese - batch complete in: 1.866 secs -[2018-02-13T08:27:42.664] [INFO] cheese - inserting 1000 documents. first: Permian investment partners and last: File:Erasure single VOL.jpg -[2018-02-13T08:27:42.671] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:27:42.780] [INFO] cheese - inserting 1000 documents. first: Drabske svetnicky and last: IV&V -[2018-02-13T08:27:42.787] [INFO] cheese - batch complete in: 1.499 secs -[2018-02-13T08:27:42.890] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:27:42.920] [INFO] cheese - inserting 1000 documents. first: Hégen and last: Bahama warbler -[2018-02-13T08:27:43.003] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:27:43.093] [INFO] cheese - inserting 1000 documents. first: Jaane Kya Hoga Rama Re and last: Ahmed Raza (cricketer, born 1983) -[2018-02-13T08:27:43.120] [INFO] cheese - inserting 1000 documents. first: File:Max Terhune.gif and last: Gum Comics Plus -[2018-02-13T08:27:43.179] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:27:43.192] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tortoise Vs. Hare and last: Koban (coin) -[2018-02-13T08:27:43.250] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:27:43.308] [INFO] cheese - inserting 1000 documents. first: File:EHSS OriginalSchoolDrawing.jpg and last: Putney Town Rowing Club -[2018-02-13T08:27:43.329] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:27:43.393] [INFO] cheese - inserting 1000 documents. first: Surmalinsky Uyezd and last: The Slow Mo Guys -[2018-02-13T08:27:43.439] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:27:43.524] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:43.546] [INFO] cheese - inserting 1000 documents. first: Girard (MFL station) and last: Pietro Faccini -[2018-02-13T08:27:43.570] [INFO] cheese - inserting 1000 documents. first: ITunes Festival: London 2011 (Adele EP) and last: Category:Bank buildings in New York City -[2018-02-13T08:27:43.654] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:27:43.683] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:27:43.778] [INFO] cheese - inserting 1000 documents. first: Star Parivaar Award for Favourite Sasur and last: Wikipedia:Meetup/NYC/AfroCrowd/12-2015-Film-BPL -[2018-02-13T08:27:43.808] [INFO] cheese - inserting 1000 documents. first: Violin Sonata (Shostakovich) and last: The Roman Catholic Church in Tanzania -[2018-02-13T08:27:43.846] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:27:43.881] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:27:43.941] [INFO] cheese - inserting 1000 documents. first: Psychological projection and last: Bai Chongxi -[2018-02-13T08:27:44.049] [INFO] cheese - inserting 1000 documents. first: Children of Men (film) and last: Spiritwood, North Dakota -[2018-02-13T08:27:44.072] [INFO] cheese - batch complete in: 1.533 secs -[2018-02-13T08:27:44.137] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:27:44.168] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates with red links/133 and last: Italian films of 1943 -[2018-02-13T08:27:44.198] [INFO] cheese - inserting 1000 documents. first: Belesis and last: Martin Hudec (rally driver) -[2018-02-13T08:27:44.259] [INFO] cheese - inserting 1000 documents. first: Vaughan (disambiguation) and last: WTTH -[2018-02-13T08:27:44.267] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:27:44.304] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:27:44.339] [INFO] cheese - inserting 1000 documents. first: Mu Ursae Majoris and last: Wikipedia:Votes for deletion/FilePile (second nomination) -[2018-02-13T08:27:44.377] [INFO] cheese - inserting 1000 documents. first: White bully and last: File:Metro bazar silchar.jpg -[2018-02-13T08:27:44.408] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:27:44.464] [INFO] cheese - inserting 1000 documents. first: David Kennerly and last: Guatemalan presidential election, August 1920 -[2018-02-13T08:27:44.486] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:27:44.524] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T08:27:44.617] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:27:44.839] [INFO] cheese - inserting 1000 documents. first: Ken Zisa and last: Adamsville, Rhode Island -[2018-02-13T08:27:44.927] [INFO] cheese - inserting 1000 documents. first: Category:Campeonato Goiano seasons and last: Great Hanging at Gainesville -[2018-02-13T08:27:44.937] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:27:44.985] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/portable-usb.com and last: Ágotakövesd -[2018-02-13T08:27:44.985] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:27:45.138] [INFO] cheese - inserting 1000 documents. first: Timeline of Islamic history 14th Century and last: Wikipedia:Votes for deletion/Dom The Bomb -[2018-02-13T08:27:45.197] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:27:45.266] [INFO] cheese - inserting 1000 documents. first: Coventry Lake and last: Filipe Ferreira -[2018-02-13T08:27:45.279] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Santa's Village East Dundee, Illinois and last: Biogeographic provinces -[2018-02-13T08:27:45.317] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:27:45.371] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:45.408] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:27:45.459] [INFO] cheese - inserting 1000 documents. first: Beizhen and last: Fall for Dance 2004 -[2018-02-13T08:27:45.564] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:27:45.702] [INFO] cheese - inserting 1000 documents. first: Carolina, Rhode Island and last: Wikipedia:Articles for deletion/Nina Nevelson -[2018-02-13T08:27:45.708] [INFO] cheese - inserting 1000 documents. first: Puerto Rico Airport and last: Only Royale -[2018-02-13T08:27:45.785] [INFO] cheese - inserting 1000 documents. first: Union Carbide and last: Floris V, Count of Holland -[2018-02-13T08:27:45.805] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:27:45.814] [INFO] cheese - inserting 1000 documents. first: Rozsonda and last: Orbitofrontal artery -[2018-02-13T08:27:45.790] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:27:45.879] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:27:45.933] [INFO] cheese - inserting 1000 documents. first: Rose Marie Pangborn and last: Orv Madden -[2018-02-13T08:27:45.936] [INFO] cheese - batch complete in: 1.863 secs -[2018-02-13T08:27:46.005] [INFO] cheese - inserting 1000 documents. first: Category:Rail transport in Chile and last: John Litchfield (politician) -[2018-02-13T08:27:46.006] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:27:46.046] [INFO] cheese - inserting 1000 documents. first: Template:National Action (Italy)/meta/color and last: Keep Up (KSI song) -[2018-02-13T08:27:46.156] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:27:46.216] [INFO] cheese - inserting 1000 documents. first: Around the World in 80 days and last: Sangre De Mi Sangre -[2018-02-13T08:27:46.267] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:27:46.376] [INFO] cheese - inserting 1000 documents. first: The Great British Bake Off (series 4) and last: National parks in Venezuela -[2018-02-13T08:27:46.506] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:27:46.570] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Spiritual density/archive1 and last: Wikipedia:Votes for deletion/Nutrient premix -[2018-02-13T08:27:46.594] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:27:46.642] [INFO] cheese - inserting 1000 documents. first: Kirmiyan and last: Cheung Kin Fung -[2018-02-13T08:27:46.639] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:27:46.779] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:27:46.864] [INFO] cheese - inserting 1000 documents. first: Henry Edward Fox-Strangways, 5th Earl of Ilchester and last: Cecil (Passions) -[2018-02-13T08:27:46.886] [INFO] cheese - inserting 1000 documents. first: Strojnik S-2A and last: Timoci Matanavou -[2018-02-13T08:27:46.981] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:27:47.155] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:27:47.187] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Levels of organization (ecology) and last: Healthcare in Madagascar -[2018-02-13T08:27:47.251] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Nick Naysmyth and last: Wikipedia:Votes for deletion/Buzz beer -[2018-02-13T08:27:47.264] [INFO] cheese - inserting 1000 documents. first: Michael Kinzer House and last: SUPREME BEING -[2018-02-13T08:27:47.292] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/File:Biological cell.svg and last: File:Abacus 1997 DavidFosterWallace GirlwithCuriousHair FrontCover.jpg -[2018-02-13T08:27:47.319] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:27:47.331] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:27:47.325] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:27:47.437] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:27:47.702] [INFO] cheese - inserting 1000 documents. first: Template:16TeamBracket-2legs-except final/doc and last: 389th Bombardment Group (Heavy) -[2018-02-13T08:27:47.816] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:27:47.870] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/David Boothroyd and last: File:Flash And The Pan - Lights In The Night CD album cover.jpg -[2018-02-13T08:27:47.954] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:27:47.986] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2011-08-01 and last: Dara Khosrowshahi -[2018-02-13T08:27:47.999] [INFO] cheese - inserting 1000 documents. first: Pistols Akimbo and last: File:Gay Blades poster.jpg -[2018-02-13T08:27:48.037] [INFO] cheese - inserting 1000 documents. first: Serumavilangai and last: City of Las Vegas, Las Vegas Boulevard State Scenic Byway -[2018-02-13T08:27:48.053] [INFO] cheese - inserting 1000 documents. first: Neon lamp and last: New Jersey Route 179 -[2018-02-13T08:27:48.076] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:27:48.078] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:27:48.131] [INFO] cheese - inserting 1000 documents. first: Alexandru Cornea and last: CH3CH2CH2COOCH2CH2CH2CH3 -[2018-02-13T08:27:48.175] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Christian Metal and last: Template:LDS Temple/Dallas Texas Temple -[2018-02-13T08:27:48.190] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:27:48.271] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:27:48.318] [INFO] cheese - batch complete in: 2.382 secs -[2018-02-13T08:27:48.435] [INFO] cheese - batch complete in: 1.28 secs -[2018-02-13T08:27:48.522] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Frontpage turd and last: Wikipedia:Votes for deletion/Mike wilder -[2018-02-13T08:27:48.555] [INFO] cheese - inserting 1000 documents. first: Merrill Lynch's Application and last: Mark Blake -[2018-02-13T08:27:48.671] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:27:48.757] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:27:48.961] [INFO] cheese - inserting 1000 documents. first: Eugene Haynes and last: Bloor-Yonge (TTC) -[2018-02-13T08:27:49.065] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:27:49.092] [INFO] cheese - inserting 1000 documents. first: Leslie L. R. Hausburg and last: Semyon Alesker -[2018-02-13T08:27:49.100] [INFO] cheese - inserting 1000 documents. first: J. League Cup 2009 and last: Referendum 71 -[2018-02-13T08:27:49.153] [INFO] cheese - inserting 1000 documents. first: Dai Hoa and last: Christopaganism -[2018-02-13T08:27:49.260] [INFO] cheese - inserting 1000 documents. first: Furness Vale railway station and last: Wikipedia:Votes for deletion/English travellers -[2018-02-13T08:27:49.265] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:27:49.266] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:27:49.333] [INFO] cheese - inserting 1000 documents. first: Hacketon and last: Wikipedia:Suspected sock puppets/Creepy Crawler -[2018-02-13T08:27:49.342] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:27:49.354] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:27:49.523] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:27:49.659] [INFO] cheese - inserting 1000 documents. first: Christina baily and last: South Texas Community College -[2018-02-13T08:27:49.709] [INFO] cheese - inserting 1000 documents. first: Template:Country data Biervliet and last: Template:Sound & Color track listing -[2018-02-13T08:27:49.758] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:27:49.838] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:27:49.847] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/EFFL and last: Wikipedia:Votes for deletion/Dandenong Valley Highway -[2018-02-13T08:27:49.937] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:27:49.949] [INFO] cheese - inserting 1000 documents. first: Louise Xenia Rose Mountbatten and last: San Clemente loggerhead shrike -[2018-02-13T08:27:50.046] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:27:50.164] [INFO] cheese - inserting 1000 documents. first: St. Paul's Church, Diu and last: Panayapatti -[2018-02-13T08:27:50.254] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:27:50.296] [INFO] cheese - inserting 1000 documents. first: County Route 583 (New Jersey) and last: Ebla -[2018-02-13T08:27:50.415] [INFO] cheese - inserting 1000 documents. first: File:Florida Education Association (logo).png and last: Bismarck-Monument (Hamburg) -[2018-02-13T08:27:50.460] [INFO] cheese - inserting 1000 documents. first: Category:Populated places in Hanson County, South Dakota and last: File:MillisMA-seal.png -[2018-02-13T08:27:50.459] [INFO] cheese - batch complete in: 2.14 secs -[2018-02-13T08:27:50.546] [INFO] cheese - inserting 1000 documents. first: Strung Up (Nashville String Band album) and last: Cookeville, Tennessee micropolitan area -[2018-02-13T08:27:50.579] [INFO] cheese - inserting 1000 documents. first: Rock Dancer and last: Caesar Film -[2018-02-13T08:27:50.627] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:27:50.676] [INFO] cheese - batch complete in: 1.41 secs -[2018-02-13T08:27:50.807] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:27:50.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/The old men and last: Studies in Swing -[2018-02-13T08:27:50.887] [INFO] cheese - inserting 1000 documents. first: Category:Treaties extended to the Coral Sea Islands and last: Wikipedia:Articles for deletion/Kenneth A. Bollen -[2018-02-13T08:27:50.917] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:27:50.981] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:27:51.000] [INFO] cheese - inserting 1000 documents. first: File:Neo Pornographia vol. 1 Cover.jpg and last: Certified Tissue Bank Specialist (CTBS) -[2018-02-13T08:27:51.045] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:27:51.142] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:27:51.514] [INFO] cheese - inserting 1000 documents. first: John Derek Page, Baron Whaddon and last: Patrick Houstoun, 1st Baronet -[2018-02-13T08:27:51.635] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:27:51.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Bloxwich United A.F.C. and last: Haufe HA-G-1 Buggie -[2018-02-13T08:27:51.758] [INFO] cheese - inserting 1000 documents. first: Heritage Field at Stater Bros. Stadium and last: Category:Ambassadors of the Soviet Union to North Korea -[2018-02-13T08:27:51.789] [INFO] cheese - inserting 1000 documents. first: Głowiński monoplane and last: Ballets Russes and descendants -[2018-02-13T08:27:51.797] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:27:51.906] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:27:51.934] [INFO] cheese - inserting 1000 documents. first: Donna Sheldon and last: Template:Membership/Data/São Tomé and Príncipe -[2018-02-13T08:27:51.983] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:27:52.077] [INFO] cheese - inserting 1000 documents. first: File:Pei plan galleria.jpg and last: Saginaw, Michigan (song) -[2018-02-13T08:27:52.180] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Roxie King and last: Jean Pariseau -[2018-02-13T08:27:52.180] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:27:52.221] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:27:52.386] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:27:52.442] [INFO] cheese - inserting 1000 documents. first: PHI-base and last: Oberland canal -[2018-02-13T08:27:52.586] [INFO] cheese - inserting 1000 documents. first: Decimal digit and last: William J. Janklow -[2018-02-13T08:27:52.590] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:27:52.651] [INFO] cheese - inserting 1000 documents. first: File:CJCD-FM 2015.png and last: 02nd Vidhan Sabha of Uttar Pradesh -[2018-02-13T08:27:52.694] [INFO] cheese - inserting 1000 documents. first: Urs Vercoli and last: Real me (Ayumi Hamasaki song) -[2018-02-13T08:27:52.789] [INFO] cheese - inserting 1000 documents. first: Hammer (Home and Away) and last: FC Ural -[2018-02-13T08:27:52.834] [INFO] cheese - inserting 1000 documents. first: Template:Membership/Data/Swaziland and last: Agta (mythical creature) -[2018-02-13T08:27:52.887] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:27:52.873] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:27:52.824] [INFO] cheese - batch complete in: 2.365 secs -[2018-02-13T08:27:52.985] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:27:52.995] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:27:53.270] [INFO] cheese - inserting 1000 documents. first: Denis Odoi and last: 11th Century CE -[2018-02-13T08:27:53.396] [INFO] cheese - batch complete in: 1.175 secs -[2018-02-13T08:27:53.494] [INFO] cheese - inserting 1000 documents. first: Saskatchewan Highway 755 and last: Sharon Runner -[2018-02-13T08:27:53.523] [INFO] cheese - inserting 1000 documents. first: Senator Ralph Owen Brewster and last: Realtime Games -[2018-02-13T08:27:53.525] [INFO] cheese - inserting 1000 documents. first: Portal:American Civil War/Selected event/09 and last: Svenska Cupen (disambiguation) -[2018-02-13T08:27:53.633] [INFO] cheese - inserting 1000 documents. first: Category:Romanesque architecture in the United Kingdom and last: File:CKAN Logo full color.png -[2018-02-13T08:27:53.641] [INFO] cheese - inserting 1000 documents. first: Category:Youth athletics and last: Aero Mirage TC-2 -[2018-02-13T08:27:53.666] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:27:53.710] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:27:53.727] [INFO] cheese - batch complete in: 1.341 secs -[2018-02-13T08:27:53.746] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:27:53.779] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:27:53.865] [INFO] cheese - inserting 1000 documents. first: 2nd Vidhan Sabha of Uttar Pradesh and last: Ron Southwick -[2018-02-13T08:27:53.955] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:27:54.003] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Roger Mills County, Oklahoma and last: Category:Kyrgyzstani law -[2018-02-13T08:27:54.060] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:27:54.319] [INFO] cheese - inserting 1000 documents. first: Pain and nociception and last: Mozcom Communications -[2018-02-13T08:27:54.452] [INFO] cheese - inserting 1000 documents. first: Category:Bengali encyclopedias and last: Dorsal rami -[2018-02-13T08:27:54.600] [INFO] cheese - inserting 1000 documents. first: Education in romania and last: Legal Practice Course -[2018-02-13T08:27:54.618] [INFO] cheese - inserting 1000 documents. first: File:Corrected sami map III.PNG and last: Vstrechnaya -[2018-02-13T08:27:54.708] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:27:54.714] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:27:54.730] [INFO] cheese - inserting 1000 documents. first: Pantacordis scotinellum and last: Do Tappeh Pa'in -[2018-02-13T08:27:54.785] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:27:54.849] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:27:54.970] [INFO] cheese - inserting 1000 documents. first: File:Disability Now logo.png and last: Category:Tibetan diaspora in Europe -[2018-02-13T08:27:54.986] [INFO] cheese - inserting 1000 documents. first: Code name and last: Hugh McCalmont Cairns, 1st Earl of Cairns -[2018-02-13T08:27:55.001] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:27:55.037] [INFO] cheese - inserting 1000 documents. first: Category:Angel Moroni and last: Kasra Anghaee -[2018-02-13T08:27:55.116] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:27:55.225] [INFO] cheese - batch complete in: 1.479 secs -[2018-02-13T08:27:55.364] [INFO] cheese - batch complete in: 2.54 secs -[2018-02-13T08:27:55.535] [INFO] cheese - inserting 1000 documents. first: Prescote and last: Workforce sciences -[2018-02-13T08:27:55.590] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:27:55.681] [INFO] cheese - inserting 1000 documents. first: File:Ths logo prev.jpg and last: The Rajon Music Group -[2018-02-13T08:27:55.886] [INFO] cheese - inserting 1000 documents. first: Do Tappeh Pain and last: SMUG -[2018-02-13T08:27:55.924] [INFO] cheese - inserting 1000 documents. first: Wanderlust (Gavin Rossdale album) and last: Henry de Beaumont, 4th Earl of Buchan -[2018-02-13T08:27:55.930] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:27:55.956] [INFO] cheese - inserting 1000 documents. first: Template:Ukraine squad UEFA Euro 2016 and last: Category:Namur geography stubs -[2018-02-13T08:27:55.988] [INFO] cheese - inserting 1000 documents. first: Common Poppy and last: Category:Former world's tallest buildings -[2018-02-13T08:27:56.069] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gloria Brame and last: Wikipedia:Featured picture candidates/Phantasmal poison frog -[2018-02-13T08:27:56.091] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:27:56.147] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:27:56.170] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:27:56.282] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:27:56.297] [INFO] cheese - batch complete in: 1.511 secs -[2018-02-13T08:27:56.648] [INFO] cheese - inserting 1000 documents. first: Anti-war activist and last: Avalon Gardens, Los Angeles, California -[2018-02-13T08:27:56.729] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:27:56.838] [INFO] cheese - inserting 1000 documents. first: 1933–34 FC Barcelona season and last: Wikipedia:U&MSPACE -[2018-02-13T08:27:56.854] [INFO] cheese - inserting 1000 documents. first: Kim Dong Moon and last: Conseil constitutionnel -[2018-02-13T08:27:56.933] [INFO] cheese - inserting 1000 documents. first: File:XYZ Show Logo.png and last: Omct.org -[2018-02-13T08:27:56.971] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:27:56.973] [INFO] cheese - inserting 1000 documents. first: Koji Harunayan and last: Category:Pipile -[2018-02-13T08:27:56.962] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:27:57.034] [INFO] cheese - inserting 1000 documents. first: Forest red gum and last: USS Quicksilver (SP-281) -[2018-02-13T08:27:57.064] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:27:57.060] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:27:57.129] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:27:57.178] [INFO] cheese - inserting 1000 documents. first: Lord Cairns and last: Ellesmere Port -[2018-02-13T08:27:57.180] [INFO] cheese - inserting 1000 documents. first: Hardwicke, Gloucestershire and last: Wikipedia:ESP/S -[2018-02-13T08:27:57.319] [INFO] cheese - batch complete in: 1.022 secs -[2018-02-13T08:27:57.398] [INFO] cheese - batch complete in: 2.034 secs -[2018-02-13T08:27:57.627] [INFO] cheese - inserting 1000 documents. first: High School Musical 4: East Meets West and last: Meadowhead School -[2018-02-13T08:27:57.630] [INFO] cheese - inserting 1000 documents. first: Jessica Garretson Finch and last: 1964 Cupa României Final -[2018-02-13T08:27:57.637] [INFO] cheese - inserting 1000 documents. first: Krishna Paksha and last: Template:2013–14 Summit League men's basketball standings -[2018-02-13T08:27:57.730] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:27:57.791] [INFO] cheese - inserting 1000 documents. first: Erkembode and last: Rowing at the 2008 Summer Olympics -[2018-02-13T08:27:57.833] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:27:57.834] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:27:57.886] [INFO] cheese - inserting 1000 documents. first: Demographics of North Dakota and last: Veshist -[2018-02-13T08:27:57.920] [INFO] cheese - inserting 1000 documents. first: Burren Way and last: Colorado bug -[2018-02-13T08:27:57.968] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:27:58.020] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:27:58.139] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:27:58.379] [INFO] cheese - inserting 1000 documents. first: Capitoline Grounds and last: Miroslav Škoro i Ravnica -[2018-02-13T08:27:58.536] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:27:58.549] [INFO] cheese - inserting 1000 documents. first: Trade to GDP ratio and last: Louisiana Highway 1171 -[2018-02-13T08:27:58.564] [INFO] cheese - inserting 1000 documents. first: Kambarskoye Urban Settlement and last: HP Converged Cloud -[2018-02-13T08:27:58.666] [INFO] cheese - inserting 1000 documents. first: South American Championship 1945 and last: Association of Guineans in France -[2018-02-13T08:27:58.726] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:27:58.733] [INFO] cheese - inserting 1000 documents. first: Alamanii and last: Noble amateur -[2018-02-13T08:27:58.748] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:27:58.882] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:27:58.924] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:27:58.967] [INFO] cheese - inserting 1000 documents. first: Implementation (computer science) and last: 1988–89 Bulgarian Hockey League season -[2018-02-13T08:27:59.037] [INFO] cheese - inserting 1000 documents. first: Martin Garrick and last: Perpendicular plate of the ethmoid bone -[2018-02-13T08:27:59.135] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:27:59.181] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:27:59.287] [INFO] cheese - inserting 1000 documents. first: Nisqually and last: Daito Bunka University -[2018-02-13T08:27:59.414] [INFO] cheese - batch complete in: 2.015 secs -[2018-02-13T08:27:59.572] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ADMINGUIDE/R and last: Category:University of Seychelles -[2018-02-13T08:27:59.625] [INFO] cheese - inserting 1000 documents. first: Category:Short stories by Arkady Gaidar and last: David Eifion Evans -[2018-02-13T08:27:59.630] [INFO] cheese - inserting 1000 documents. first: Mechanical traveler and last: The Girona -[2018-02-13T08:27:59.651] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:27:59.675] [INFO] cheese - inserting 1000 documents. first: Gordon Henderson (band director) and last: El Embrujo Airport -[2018-02-13T08:27:59.730] [INFO] cheese - inserting 1000 documents. first: The Two Pound Tram and last: Ethical Oil -[2018-02-13T08:27:59.756] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:27:59.761] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:27:59.810] [INFO] cheese - inserting 1000 documents. first: When Cicadas Cry Bonds and last: 1956 in the United States -[2018-02-13T08:27:59.809] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:27:59.910] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:27:59.914] [INFO] cheese - inserting 1000 documents. first: Colour Out of Space and last: Akatarawa -[2018-02-13T08:28:00.055] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:28:00.063] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:28:00.224] [INFO] cheese - inserting 1000 documents. first: Category:Animation studios navigational boxes and last: Xinping Liang -[2018-02-13T08:28:00.366] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:28:00.593] [INFO] cheese - inserting 1000 documents. first: Sharp, Philip Allen and last: Ron Villone -[2018-02-13T08:28:00.640] [INFO] cheese - inserting 1000 documents. first: College sa and last: File:IrremeDIABLE cover.jpg -[2018-02-13T08:28:00.655] [INFO] cheese - inserting 1000 documents. first: Breathe (Don't Stop) and last: Coffee poop -[2018-02-13T08:28:00.706] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:28:00.785] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:28:00.811] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:28:00.899] [INFO] cheese - inserting 1000 documents. first: Category:1864 in Kansas and last: Parau Gruiului -[2018-02-13T08:28:00.965] [INFO] cheese - inserting 1000 documents. first: Emile Mbamba and last: Category:University museums in Canada -[2018-02-13T08:28:00.969] [INFO] cheese - inserting 1000 documents. first: Category:Wars involving Guinea-Bissau and last: Air Prods & Chems -[2018-02-13T08:28:01.027] [INFO] cheese - inserting 1000 documents. first: Ministero degli Affari Esteri della Repubblica Italiana and last: Category:1501 establishments in Japan -[2018-02-13T08:28:01.030] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:28:01.101] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:28:01.102] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:28:01.157] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:28:01.169] [INFO] cheese - inserting 1000 documents. first: SAME (protocol) and last: Martin Short -[2018-02-13T08:28:01.346] [INFO] cheese - batch complete in: 1.932 secs -[2018-02-13T08:28:01.420] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jo Green and last: Wikipedia:Votes for deletion/Michael E. Brooks -[2018-02-13T08:28:01.473] [INFO] cheese - inserting 1000 documents. first: Lists of secularists and last: Hangar Radio Z -[2018-02-13T08:28:01.524] [INFO] cheese - inserting 1000 documents. first: James Forrest (footballer born 1991) and last: Wikipedia:Articles for deletion/Mashregh News -[2018-02-13T08:28:01.548] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:28:01.588] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:28:01.674] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:28:01.830] [INFO] cheese - inserting 1000 documents. first: Ludwig Worman and last: Brad Zavisha -[2018-02-13T08:28:01.883] [INFO] cheese - inserting 1000 documents. first: SsangYong Tivolan and last: Category:Political symbols by ideology -[2018-02-13T08:28:01.892] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:28:01.898] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/xoxo-gossipgirl.tv-soap.com and last: MacIntosh Fort -[2018-02-13T08:28:01.906] [INFO] cheese - inserting 1000 documents. first: Patrangeni and last: Ov3640 -[2018-02-13T08:28:01.997] [INFO] cheese - inserting 1000 documents. first: Dainohara Station, Sendai and last: Wikipedia:Votes for deletion/Hamster Language -[2018-02-13T08:28:02.017] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:28:02.018] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:28:02.089] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:28:02.101] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:28:02.295] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Logical abacus and last: Category:19th-century establishments in German East Africa -[2018-02-13T08:28:02.406] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:28:02.410] [INFO] cheese - inserting 1000 documents. first: Mayor Buenaventura Vivas Airport and last: Have I Got a Story for You (Batman: Gotham Knight) -[2018-02-13T08:28:02.538] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:28:02.587] [INFO] cheese - inserting 1000 documents. first: André Sogliuzzo and last: Saskatchewan Highway 752 -[2018-02-13T08:28:02.592] [INFO] cheese - inserting 1000 documents. first: Action of 12 October 1798 and last: Wikipedia:Votes for deletion/Alfredo naim -[2018-02-13T08:28:02.639] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:28:02.671] [INFO] cheese - inserting 1000 documents. first: Santissima Annunziata, Barga and last: File:L.A. Noire motion capture.jpg -[2018-02-13T08:28:02.708] [INFO] cheese - inserting 1000 documents. first: Zhang Xi (volleyball) and last: Taylor Ridge, Illinois -[2018-02-13T08:28:02.740] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:28:02.822] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:28:02.844] [INFO] cheese - inserting 1000 documents. first: Ngota Ifeny and last: 11th Wisconsin Regiment -[2018-02-13T08:28:02.870] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:28:02.996] [INFO] cheese - inserting 1000 documents. first: Cristofano Malvezzi and last: Noether -[2018-02-13T08:28:02.933] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:28:03.163] [INFO] cheese - inserting 1000 documents. first: Ivy Lea, Ontario and last: Gallichan, Quebec -[2018-02-13T08:28:03.173] [INFO] cheese - batch complete in: 1.827 secs -[2018-02-13T08:28:03.234] [INFO] cheese - inserting 1000 documents. first: Frederick Elmes and last: Snake River (Nebraska) -[2018-02-13T08:28:03.237] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:28:03.357] [INFO] cheese - inserting 1000 documents. first: Gorimaya Tamang and last: Korolev, Nikolai Fyodorovich -[2018-02-13T08:28:03.366] [INFO] cheese - inserting 1000 documents. first: Parallel 36° north and last: Karlton Rosholt -[2018-02-13T08:28:03.431] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:28:03.473] [INFO] cheese - inserting 1000 documents. first: Category:Political history of Samoa and last: Template:Baseball primary link/doc -[2018-02-13T08:28:03.499] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:28:03.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tracilordsmovieclub.org and last: Jillian Vegan -[2018-02-13T08:28:03.689] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:28:03.703] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:28:03.756] [INFO] cheese - inserting 1000 documents. first: Template:Burt Reynolds and last: Mink Mile -[2018-02-13T08:28:03.808] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:28:04.082] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:28:04.212] [INFO] cheese - inserting 1000 documents. first: Soviet-Polish War and last: Mitiga International Airport -[2018-02-13T08:28:04.288] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:28:04.438] [INFO] cheese - inserting 1000 documents. first: Squash at the 2013 Asian Youth Games and last: Riptide (Vance Joy song) -[2018-02-13T08:28:04.488] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:28:04.513] [INFO] cheese - inserting 1000 documents. first: Universidad de Antofagasta and last: Val de Fontenay (Paris RER) -[2018-02-13T08:28:04.628] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:28:04.634] [INFO] cheese - inserting 1000 documents. first: Drinking in Finland and last: Kwamtim One language -[2018-02-13T08:28:04.700] [INFO] cheese - inserting 1000 documents. first: George Britton Halford and last: Nick Warren (cricketer) -[2018-02-13T08:28:04.733] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/American Society for the Defense of Tradition, Family and Property and last: Clairvaux MacKillop College -[2018-02-13T08:28:04.764] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:28:04.816] [INFO] cheese - inserting 1000 documents. first: Template:Baseball secondary link/doc and last: There's Irish in Our Eyes -[2018-02-13T08:28:04.836] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:28:04.840] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:28:04.933] [INFO] cheese - inserting 1000 documents. first: Craig Thomson (disambiguation) and last: Entrapment neuropathy -[2018-02-13T08:28:04.957] [INFO] cheese - batch complete in: 1.254 secs -[2018-02-13T08:28:05.056] [INFO] cheese - inserting 1000 documents. first: Neoconger perlongus and last: File:The Story of My Life Cover.jpg -[2018-02-13T08:28:05.069] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:28:05.174] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:28:05.246] [INFO] cheese - inserting 1000 documents. first: Whitney Clayton and last: Cronan Naofa BNS -[2018-02-13T08:28:05.284] [INFO] cheese - inserting 1000 documents. first: Federal Charter of 1291 and last: Guy Steele, Jr. -[2018-02-13T08:28:05.364] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:28:05.399] [INFO] cheese - inserting 1000 documents. first: Peach-tree and last: Wikipedia:Votes for deletion/Sunder -[2018-02-13T08:28:05.434] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:28:05.490] [INFO] cheese - inserting 1000 documents. first: Welling (disambiguation) and last: Template:A Coruña (province) -[2018-02-13T08:28:05.539] [INFO] cheese - batch complete in: 2.365 secs -[2018-02-13T08:28:05.590] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:28:05.615] [INFO] cheese - inserting 1000 documents. first: Category:Circuits of the Song dynasty and last: McCallum Medal -[2018-02-13T08:28:05.621] [INFO] cheese - inserting 1000 documents. first: Kabore One language and last: Allgemeiner Deutscher Gewerkschaftsbund -[2018-02-13T08:28:05.737] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:28:05.825] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:28:05.831] [INFO] cheese - inserting 1000 documents. first: Namua and last: 1998 Gold Coast Classic -[2018-02-13T08:28:05.945] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Scamper and last: Acoustic feedback -[2018-02-13T08:28:06.017] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:28:06.019] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:28:06.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/MyDailyLeaks and last: 380SEL -[2018-02-13T08:28:06.229] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:28:06.417] [INFO] cheese - inserting 1000 documents. first: Category:Airlines established in 1981 and last: Category:Iron and steel mills -[2018-02-13T08:28:06.435] [INFO] cheese - inserting 1000 documents. first: Société française pour l'arbitrage entre les Nations and last: Vaggeryds kommun -[2018-02-13T08:28:06.470] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Musaeus College and last: Category:1919 in Nebraska -[2018-02-13T08:28:06.533] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:28:06.557] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Homosexual Cakewalk and last: Wikipedia:Votes for deletion/GameTalk -[2018-02-13T08:28:06.623] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:28:06.640] [INFO] cheese - inserting 1000 documents. first: Draft:Bill Asher (guitar maker) and last: Category:Bengali-speaking people by occupation -[2018-02-13T08:28:06.656] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:28:06.662] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:28:06.854] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:28:06.980] [INFO] cheese - inserting 1000 documents. first: Eskandar and last: File:Moody Foundation Logo.png -[2018-02-13T08:28:07.023] [INFO] cheese - inserting 1000 documents. first: Light Up the World (album) and last: Guanqiao, Liuyang -[2018-02-13T08:28:07.251] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:28:07.252] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:28:07.388] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Port Arthur massacre theories and last: Wikipedia:Votes for deletion/Jewish Renegades -[2018-02-13T08:28:07.562] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:28:07.948] [INFO] cheese - inserting 1000 documents. first: List of énarques and last: London Cheerleaders Zoo Riot -[2018-02-13T08:28:07.968] [INFO] cheese - inserting 1000 documents. first: Blood's Voice and last: Dniester Hydro-Accumulating Power Station -[2018-02-13T08:28:07.983] [INFO] cheese - inserting 1000 documents. first: File:Pamela1982112706GMS2IR.jpg and last: Bloody Crescent -[2018-02-13T08:28:08.020] [INFO] cheese - inserting 1000 documents. first: International date line and last: Wildcard DNS entry -[2018-02-13T08:28:08.036] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:28:08.043] [INFO] cheese - inserting 1000 documents. first: Pontiac 200 (Nazareth) and last: File:Conviction of the Heart by Kenny Loggins.jpg -[2018-02-13T08:28:08.061] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:28:08.078] [INFO] cheese - batch complete in: 1.545 secs -[2018-02-13T08:28:08.080] [INFO] cheese - inserting 1000 documents. first: Russian Dalian and last: Category:Internet companies of France -[2018-02-13T08:28:08.082] [INFO] cheese - inserting 1000 documents. first: File:22 Squadron RAF crest.jpg and last: Wikipedia:Votes for deletion/CreateWindow -[2018-02-13T08:28:08.095] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:28:08.187] [INFO] cheese - inserting 1000 documents. first: Kinda kommun and last: Religion in Liberia -[2018-02-13T08:28:08.287] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:28:08.387] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:28:08.339] [INFO] cheese - batch complete in: 1.715 secs -[2018-02-13T08:28:08.402] [INFO] cheese - batch complete in: 2.863 secs -[2018-02-13T08:28:08.869] [INFO] cheese - inserting 1000 documents. first: Mark Greaney (author) and last: Poriyya-Kefar Avoda -[2018-02-13T08:28:08.893] [INFO] cheese - inserting 1000 documents. first: File:Theo3reflection.png and last: Category:Stub-Class Medieval warfare articles -[2018-02-13T08:28:08.931] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:28:08.954] [INFO] cheese - inserting 1000 documents. first: BAH and last: David Anderson (Australian governor) -[2018-02-13T08:28:08.959] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:28:09.007] [INFO] cheese - inserting 1000 documents. first: Category:Internet companies of Germany and last: Кузьмин -[2018-02-13T08:28:09.023] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:28:09.026] [INFO] cheese - inserting 1000 documents. first: Prince Yun and last: Pizhansky District -[2018-02-13T08:28:09.071] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:28:09.120] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:28:09.155] [INFO] cheese - inserting 1000 documents. first: Cabinet İnönü VIII and last: NB&M Railways -[2018-02-13T08:28:09.156] [INFO] cheese - inserting 1000 documents. first: Paxton's Tower and last: Nicrophorus sausai -[2018-02-13T08:28:09.344] [INFO] cheese - batch complete in: 1.248 secs -[2018-02-13T08:28:09.360] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:28:09.667] [INFO] cheese - inserting 1000 documents. first: Category:Military aviation articles by quality and last: Pygmy chimp -[2018-02-13T08:28:09.669] [INFO] cheese - inserting 1000 documents. first: Poriyya-Newe Oved and last: Wikipedia:Sockpuppet investigations/Aamir.aka.mraka -[2018-02-13T08:28:09.687] [INFO] cheese - inserting 1000 documents. first: Giron, Ain and last: Wikipedia:Votes for deletion/Fletcher International Abattoir -[2018-02-13T08:28:09.752] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:28:09.770] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:28:09.785] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:28:10.038] [INFO] cheese - inserting 1000 documents. first: File:Colorado esporte clube logo.gif and last: The Lizard King -[2018-02-13T08:28:10.041] [INFO] cheese - inserting 1000 documents. first: The National Center on Time & Learning and last: Wikipedia:Possibly unfree files/2013 August 20 -[2018-02-13T08:28:10.100] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:28:10.133] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Lithuania/Watchlist and last: Rebel Drones -[2018-02-13T08:28:10.179] [INFO] cheese - inserting 1000 documents. first: Podosinovsky District and last: Primera División de Fútbol Profesional - Clausura 2011 -[2018-02-13T08:28:10.297] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T08:28:10.356] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:28:10.359] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T08:28:10.610] [INFO] cheese - inserting 1000 documents. first: TINLA and last: List of Aromanians -[2018-02-13T08:28:10.620] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Islamic fascism and last: Tommy Victor -[2018-02-13T08:28:10.731] [INFO] cheese - inserting 1000 documents. first: Houston's whitebeam and last: Yaguaraparo -[2018-02-13T08:28:10.780] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:28:10.915] [INFO] cheese - batch complete in: 2.513 secs -[2018-02-13T08:28:10.954] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:28:11.036] [INFO] cheese - inserting 1000 documents. first: 1985-86 Pakistani cricket season and last: File:REX021 036.jpg -[2018-02-13T08:28:11.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2013 August 20 and last: Category:Underwater diving templates -[2018-02-13T08:28:11.114] [INFO] cheese - batch complete in: 1.329 secs -[2018-02-13T08:28:11.212] [INFO] cheese - inserting 1000 documents. first: Template:User wikipedia/WikiPrincess and last: Tu Vuo Fa L'Americano -[2018-02-13T08:28:11.238] [INFO] cheese - inserting 1000 documents. first: Receiver function and last: Scheitholt -[2018-02-13T08:28:11.266] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:28:11.345] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Constance E. Cumbey and last: Wikipedia:Votes for deletion/Andrew Krystal -[2018-02-13T08:28:11.414] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:28:11.443] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:28:11.450] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:28:11.631] [INFO] cheese - inserting 1000 documents. first: Professor Griff - Disturb N Tha Peace (Freedom Is Just A Mind Revolution Away) and last: Half-cocked (film) -[2018-02-13T08:28:11.927] [INFO] cheese - batch complete in: 1.568 secs -[2018-02-13T08:28:12.033] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Fifteen (restaurant) and last: Richardson's Law -[2018-02-13T08:28:12.195] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:28:12.242] [INFO] cheese - inserting 1000 documents. first: Löwenthal's method and last: Category:Climate of Vatican City -[2018-02-13T08:28:12.270] [INFO] cheese - inserting 1000 documents. first: Template:Proriv (Transnistria)/meta/color and last: Jay Sanders -[2018-02-13T08:28:12.287] [INFO] cheese - inserting 1000 documents. first: List of national historic trails in Colorado and last: Sun Daly -[2018-02-13T08:28:12.315] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:28:12.354] [INFO] cheese - batch complete in: 1.4 secs -[2018-02-13T08:28:12.394] [INFO] cheese - inserting 1000 documents. first: Northern Court (Japan) and last: Template:User cu-3 -[2018-02-13T08:28:12.455] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:28:12.555] [INFO] cheese - inserting 1000 documents. first: Hadambu and last: SS Empire Beaver -[2018-02-13T08:28:12.554] [INFO] cheese - batch complete in: 1.439 secs -[2018-02-13T08:28:12.682] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T08:28:12.787] [INFO] cheese - inserting 1000 documents. first: Kameshkovsky District and last: J. Cole production discography -[2018-02-13T08:28:12.905] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:28:13.165] [INFO] cheese - inserting 1000 documents. first: Le Hien Tong (disambiguation) and last: La vila Joiosa -[2018-02-13T08:28:13.251] [INFO] cheese - inserting 1000 documents. first: Freddie Foxxx Is Here and last: M1942 Bayonet -[2018-02-13T08:28:13.297] [INFO] cheese - inserting 1000 documents. first: Paul van Buitenen and last: Treaty of London (1839) -[2018-02-13T08:28:13.373] [INFO] cheese - inserting 1000 documents. first: Ferdowsi Gas Field and last: File:Drive You Home Again.jpg -[2018-02-13T08:28:13.408] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:28:13.451] [INFO] cheese - inserting 1000 documents. first: Lmpat Monastery and last: Category:Olympiacos F.C. players -[2018-02-13T08:28:13.464] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Trevico and last: File:Edin Atic 2015.jpg -[2018-02-13T08:28:13.477] [INFO] cheese - inserting 1000 documents. first: Robbie Shakespeare and last: Heliconid -[2018-02-13T08:28:13.524] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:28:13.607] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:28:13.627] [INFO] cheese - batch complete in: 1.273 secs -[2018-02-13T08:28:13.688] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:28:13.805] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T08:28:13.921] [INFO] cheese - batch complete in: 3.006 secs -[2018-02-13T08:28:14.055] [INFO] cheese - inserting 1000 documents. first: Category:Sheffield United F.C. articles by quality and last: Pagothenia -[2018-02-13T08:28:14.223] [INFO] cheese - batch complete in: 1.318 secs -[2018-02-13T08:28:14.226] [INFO] cheese - inserting 1000 documents. first: Category:1869 in British Columbia and last: Category:TAAR1 agonists -[2018-02-13T08:28:14.323] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:28:14.416] [INFO] cheese - inserting 1000 documents. first: Lloyd Tombleson and last: Flint-Goodridge Hospital -[2018-02-13T08:28:14.571] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:28:14.651] [INFO] cheese - inserting 1000 documents. first: XHY-TDT and last: Sanctuary Cove -[2018-02-13T08:28:14.703] [INFO] cheese - inserting 1000 documents. first: Category:Performing arts centers in New York (state) and last: L'Indien -[2018-02-13T08:28:14.716] [INFO] cheese - inserting 1000 documents. first: W. R. Grace Building and last: Stix Baer & Fuller -[2018-02-13T08:28:14.778] [INFO] cheese - inserting 1000 documents. first: Artificial Voice Box and last: Entoloma -[2018-02-13T08:28:14.795] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:28:14.802] [INFO] cheese - inserting 1000 documents. first: K-1 Beast 2004 in Shizuoka and last: Vergiss Es -[2018-02-13T08:28:14.850] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:28:14.940] [INFO] cheese - inserting 1000 documents. first: Edgars Bergs and last: Modi group -[2018-02-13T08:28:14.964] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:28:15.082] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:28:15.134] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:28:15.166] [INFO] cheese - batch complete in: 1.641 secs -[2018-02-13T08:28:15.377] [INFO] cheese - inserting 1000 documents. first: Category:2016 American television series endings and last: Template:Parent monthly clean-up category progress/doc -[2018-02-13T08:28:15.466] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:28:15.685] [INFO] cheese - inserting 1000 documents. first: 1961 Cotton Bowl and last: Mopa-Muro -[2018-02-13T08:28:15.704] [INFO] cheese - inserting 1000 documents. first: 2013–14 Georgian Cup and last: Template:Did you know nominations/Michael Edgson -[2018-02-13T08:28:15.707] [INFO] cheese - inserting 1000 documents. first: Edward Craig (disambiguation) and last: Category:1993 in Brazilian football -[2018-02-13T08:28:15.737] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:28:15.767] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:28:15.771] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:28:15.865] [INFO] cheese - inserting 1000 documents. first: File:Eg3.png and last: Clarence Jones -[2018-02-13T08:28:15.932] [INFO] cheese - inserting 1000 documents. first: Drug education and last: Volcán Santamaria -[2018-02-13T08:28:15.932] [INFO] cheese - inserting 1000 documents. first: Antoine Louis Camille Lemonnier and last: Myrsini -[2018-02-13T08:28:15.946] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:28:15.951] [INFO] cheese - inserting 1000 documents. first: Hespererato columbella and last: Dalip Frashëri -[2018-02-13T08:28:16.021] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:28:16.079] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:28:16.124] [INFO] cheese - inserting 1000 documents. first: Alejandro Abellan and last: The Benzino Project -[2018-02-13T08:28:16.137] [INFO] cheese - batch complete in: 2.216 secs -[2018-02-13T08:28:16.227] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:28:16.261] [INFO] cheese - inserting 1000 documents. first: Joe Doakes and last: Healy, KS -[2018-02-13T08:28:16.353] [INFO] cheese - inserting 1000 documents. first: Love Me Forever and last: Alevtina Aparina -[2018-02-13T08:28:16.391] [INFO] cheese - inserting 1000 documents. first: Category:LGBT military personnel and last: John Cooper (tennis) -[2018-02-13T08:28:16.394] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:28:16.435] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:28:16.462] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:28:16.484] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oliver Fritz and last: Soldiers of Freedom -[2018-02-13T08:28:16.539] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Enrique Sanchez and last: Wikipedia:Votes for deletion/Leighann Starkey -[2018-02-13T08:28:16.622] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:28:16.678] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:28:17.042] [INFO] cheese - inserting 1000 documents. first: Category:People from Grand Junction, Tennessee and last: Template:Expressway code (Sri Lanka) -[2018-02-13T08:28:17.077] [INFO] cheese - inserting 1000 documents. first: Shoreland, Ohio and last: Marie-Josée Laloy -[2018-02-13T08:28:17.110] [INFO] cheese - inserting 1000 documents. first: Timeline of human prehistory and last: Category:Canadian expatriates in Austria -[2018-02-13T08:28:17.113] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:28:17.138] [INFO] cheese - inserting 1000 documents. first: Micky Dore and last: Stage Rallying -[2018-02-13T08:28:17.160] [INFO] cheese - inserting 1000 documents. first: D. J. Shockley and last: Wikipedia:Votes for deletion/Ziotaki language -[2018-02-13T08:28:17.186] [INFO] cheese - inserting 1000 documents. first: String Quartet No. 17 and last: Ray Ratkowski -[2018-02-13T08:28:17.251] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:28:17.300] [INFO] cheese - inserting 1000 documents. first: File:Cencoroll DVD cover.jpg and last: A. Judson Clark -[2018-02-13T08:28:17.326] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:28:17.326] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:28:17.387] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:28:17.430] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:28:17.462] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:28:17.594] [INFO] cheese - inserting 1000 documents. first: Caribe Hilton Hotel and last: Prometheus Bound -[2018-02-13T08:28:17.741] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:28:17.858] [INFO] cheese - inserting 1000 documents. first: The Rev and last: Wikipedia:Votes for deletion/The Daffodil Song -[2018-02-13T08:28:17.918] [INFO] cheese - inserting 1000 documents. first: Patalpani waterfalls and last: Mammoth Museum -[2018-02-13T08:28:17.928] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:28:17.932] [INFO] cheese - inserting 1000 documents. first: Providence Day and last: Wikipedia:WikiProject Deletion/to do -[2018-02-13T08:28:17.935] [INFO] cheese - inserting 1000 documents. first: Donald A. Gillies and last: Roberto Santamaria Ciprian -[2018-02-13T08:28:17.970] [INFO] cheese - inserting 1000 documents. first: File:ConLuTo.jpg and last: Mauser pistol -[2018-02-13T08:28:17.981] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:28:17.984] [INFO] cheese - inserting 1000 documents. first: Battle of Aberdeen and last: John Lake (MP) -[2018-02-13T08:28:18.048] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:28:18.092] [INFO] cheese - inserting 1000 documents. first: Category:High-importance Album articles and last: Robert C. Zampano -[2018-02-13T08:28:18.099] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:28:18.150] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:28:18.221] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:28:18.280] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:28:18.700] [INFO] cheese - inserting 1000 documents. first: Tambor, Costa Rica and last: Michigan Ave. -[2018-02-13T08:28:18.739] [INFO] cheese - inserting 1000 documents. first: File:Asahi no Ataru Hashi.jpg and last: Los Tuxtlas Biosphere Reserve -[2018-02-13T08:28:18.806] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:28:18.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality and last: Kcom -[2018-02-13T08:28:18.926] [INFO] cheese - inserting 1000 documents. first: Category:Military of Tunisia and last: Kaiser, Henry J. -[2018-02-13T08:28:19.003] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:28:19.010] [INFO] cheese - inserting 1000 documents. first: United States Senate election in New York, 1863 and last: Mean Dependence -[2018-02-13T08:28:19.020] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:28:19.057] [INFO] cheese - inserting 1000 documents. first: Die, All Right and last: Mackenzie Porter -[2018-02-13T08:28:19.067] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:28:19.104] [INFO] cheese - inserting 1000 documents. first: Category:Aquaculture and last: Saracens RFC -[2018-02-13T08:28:19.202] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:28:19.296] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:28:19.314] [INFO] cheese - batch complete in: 1.164 secs -[2018-02-13T08:28:19.524] [INFO] cheese - inserting 1000 documents. first: Category:Draft-Class Men's Issues articles and last: File:Eremite Records logo.jpeg -[2018-02-13T08:28:19.580] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:28:19.778] [INFO] cheese - inserting 1000 documents. first: Claudio Francisci and last: Agera -[2018-02-13T08:28:19.834] [INFO] cheese - inserting 1000 documents. first: Ray Senkowski and last: Fatal Vision (disambiguation) -[2018-02-13T08:28:19.892] [INFO] cheese - inserting 1000 documents. first: King Xiang of Zhou and last: Dwarf throw -[2018-02-13T08:28:19.900] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:28:19.911] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:28:19.973] [INFO] cheese - inserting 1000 documents. first: Category:Counts of Frisia and last: Euro gold and silver commemorative coins (Ireland) -[2018-02-13T08:28:20.020] [INFO] cheese - inserting 1000 documents. first: The Bailey-Matthews Shell Museum and last: Vaughan Brothers -[2018-02-13T08:28:20.149] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:28:20.157] [INFO] cheese - inserting 1000 documents. first: Globcal and last: SM U-92 -[2018-02-13T08:28:20.166] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:28:20.157] [INFO] cheese - batch complete in: 2.416 secs -[2018-02-13T08:28:20.289] [INFO] cheese - inserting 1000 documents. first: Lost (2004 television series) and last: Wikipedia:Articles for deletion/Ekrōnja -[2018-02-13T08:28:20.317] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:28:20.345] [INFO] cheese - inserting 1000 documents. first: Cylindera brevis and last: Extreme points of Iceland -[2018-02-13T08:28:20.480] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:28:20.515] [INFO] cheese - batch complete in: 1.51 secs -[2018-02-13T08:28:20.865] [INFO] cheese - inserting 1000 documents. first: Friedrich Beck and last: Category:People from Salland -[2018-02-13T08:28:20.933] [INFO] cheese - inserting 1000 documents. first: Anna quel particolare piacere and last: The Sleeping Voice -[2018-02-13T08:28:21.002] [INFO] cheese - inserting 1000 documents. first: Vidhansabha and last: NOB1 -[2018-02-13T08:28:21.033] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:28:21.054] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:28:21.076] [INFO] cheese - inserting 1000 documents. first: Aguardente and last: Shalom (film) -[2018-02-13T08:28:21.102] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:28:21.187] [INFO] cheese - inserting 1000 documents. first: Category:Frigates of the Russian Navy and last: File:WilliamStewart.jpg -[2018-02-13T08:28:21.226] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:28:21.302] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:28:21.304] [INFO] cheese - inserting 1000 documents. first: Alois Confais and last: Fortín de San Gerónimo de Boquerón -[2018-02-13T08:28:21.410] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:21.705] [INFO] cheese - inserting 1000 documents. first: Planet cuisines and last: Communications-based train control -[2018-02-13T08:28:21.782] [INFO] cheese - inserting 1000 documents. first: Term-document matrix and last: Nigerien Party for Democracy and Socialism -[2018-02-13T08:28:21.792] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:28:21.795] [INFO] cheese - inserting 1000 documents. first: List of Presidents of Lazio and last: Template:POTD/2013-09-07 -[2018-02-13T08:28:21.885] [INFO] cheese - inserting 1000 documents. first: Eric N. Vitaliano and last: Gwinner Airport -[2018-02-13T08:28:21.926] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:28:21.933] [INFO] cheese - inserting 1000 documents. first: Category:Social Democratic Federation and last: New Brunswick School District 14 -[2018-02-13T08:28:21.979] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:28:22.051] [INFO] cheese - inserting 1000 documents. first: Kurdish Unified Alphabet and last: HMS Caicos (K505) -[2018-02-13T08:28:22.065] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:28:22.071] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:28:22.167] [INFO] cheese - inserting 1000 documents. first: J. Quin Monson and last: Encarnación de Rosas -[2018-02-13T08:28:22.236] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:22.315] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:28:22.402] [INFO] cheese - inserting 1000 documents. first: Aleksandr Kuprin and last: Lamar Hunt -[2018-02-13T08:28:22.529] [INFO] cheese - batch complete in: 2.372 secs -[2018-02-13T08:28:22.548] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/European Magpie and last: Borzia -[2018-02-13T08:28:22.666] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:28:22.780] [INFO] cheese - inserting 1000 documents. first: English Triple Crown race winners and last: Echinopsis lageniformis -[2018-02-13T08:28:22.837] [INFO] cheese - inserting 1000 documents. first: Rugrats (film series) and last: Zhaneta Ilieva -[2018-02-13T08:28:22.900] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:28:22.967] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:28:23.033] [INFO] cheese - inserting 1000 documents. first: PCDHA3 and last: Category:Slovak sex workers -[2018-02-13T08:28:23.037] [INFO] cheese - inserting 1000 documents. first: Adam Seybert and last: Demon King of Confusion -[2018-02-13T08:28:23.085] [INFO] cheese - inserting 1000 documents. first: File:Manuel Azcárate - Europa Press.jpg and last: Aven Nelson -[2018-02-13T08:28:23.100] [INFO] cheese - inserting 1000 documents. first: Nathalie Pâque and last: Let It Be Me (1955 song) -[2018-02-13T08:28:23.144] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:28:23.274] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T08:28:23.369] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:28:23.404] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:28:23.560] [INFO] cheese - inserting 1000 documents. first: Mech flood and last: Wikipedia:Votes for deletion/Wario the Quario -[2018-02-13T08:28:23.601] [INFO] cheese - inserting 1000 documents. first: Iod and last: Category:VAP (company) games -[2018-02-13T08:28:23.621] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:28:23.781] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:28:23.919] [INFO] cheese - inserting 1000 documents. first: Alexander Hill (academic) and last: Unfamiliar (song) -[2018-02-13T08:28:24.051] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:28:24.081] [INFO] cheese - inserting 1000 documents. first: Category:Olsen family and last: (8252) 1981 EY14 -[2018-02-13T08:28:24.168] [INFO] cheese - inserting 1000 documents. first: Surface web and last: VPI -[2018-02-13T08:28:24.187] [INFO] cheese - inserting 1000 documents. first: Joel Langellott and last: Origin of Species (episode) -[2018-02-13T08:28:24.208] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:28:24.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Anti-cnn and last: My Horse & Me -[2018-02-13T08:28:24.273] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:28:24.339] [INFO] cheese - inserting 1000 documents. first: French tanker Durance (A629) and last: Henry Champion House -[2018-02-13T08:28:24.505] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T08:28:24.656] [INFO] cheese - batch complete in: 1.512 secs -[2018-02-13T08:28:24.820] [INFO] cheese - batch complete in: 1.451 secs -[2018-02-13T08:28:24.937] [INFO] cheese - inserting 1000 documents. first: Malkaram, Ranga Reddy district and last: Template:MathWelcome -[2018-02-13T08:28:24.967] [INFO] cheese - inserting 1000 documents. first: Travel visa and last: Isabel J. Cox -[2018-02-13T08:28:25.033] [INFO] cheese - batch complete in: 1.252 secs -[2018-02-13T08:28:25.094] [INFO] cheese - inserting 1000 documents. first: Sennen (song) and last: W.S. Percy -[2018-02-13T08:28:25.217] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:28:25.256] [INFO] cheese - batch complete in: 2.727 secs -[2018-02-13T08:28:25.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Farmer with shotgun and last: The Gary Grill -[2018-02-13T08:28:25.461] [INFO] cheese - batch complete in: 1.252 secs -[2018-02-13T08:28:25.493] [INFO] cheese - inserting 1000 documents. first: Unionport, Indiana and last: The Wedding March (1929 film) -[2018-02-13T08:28:25.521] [INFO] cheese - inserting 1000 documents. first: Never Stop (Planetshakers album) and last: International Commission on Peace and Food -[2018-02-13T08:28:25.617] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:28:25.696] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:28:25.709] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/forumcarvicais.com and last: 2009–10 MAC men's basketball season -[2018-02-13T08:28:25.742] [INFO] cheese - inserting 1000 documents. first: Québec (territory equivalent to a regional county municipality) and last: John Cox (disambiguation) -[2018-02-13T08:28:25.837] [INFO] cheese - batch complete in: 1.331 secs -[2018-02-13T08:28:25.858] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:28:26.155] [INFO] cheese - inserting 1000 documents. first: Times Square Station and last: FMA IA X 59 Dronner -[2018-02-13T08:28:26.324] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:28:26.412] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Maltepespor and last: Max Elbaum -[2018-02-13T08:28:26.463] [INFO] cheese - inserting 1000 documents. first: Union des étudiants juifs de France and last: Muchawiec River -[2018-02-13T08:28:26.517] [INFO] cheese - inserting 1000 documents. first: La marche nuptiale and last: Template:2015 Esiliiga table -[2018-02-13T08:28:26.616] [INFO] cheese - batch complete in: 1.583 secs -[2018-02-13T08:28:26.667] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:28:26.687] [INFO] cheese - inserting 1000 documents. first: Adrie Koster and last: Panchmarhi -[2018-02-13T08:28:26.688] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:28:26.732] [INFO] cheese - inserting 1000 documents. first: Systems engineers and last: Template:User Highland -[2018-02-13T08:28:26.835] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:28:26.921] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:28:26.960] [INFO] cheese - inserting 1000 documents. first: Natalie Hundt and last: Category:Army Black Knights football seasons -[2018-02-13T08:28:27.180] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:28:27.245] [INFO] cheese - inserting 1000 documents. first: Tobias Haitz and last: Abdullah Awad Al Juhany -[2018-02-13T08:28:27.365] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:28:27.428] [INFO] cheese - inserting 1000 documents. first: Frederick Church and last: 2000 Summer Paralympics -[2018-02-13T08:28:27.483] [INFO] cheese - inserting 1000 documents. first: Thomas A. Furness III and last: Category:Wikipedia categories named after football clubs in Bermuda -[2018-02-13T08:28:27.605] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:28:27.670] [INFO] cheese - batch complete in: 2.414 secs -[2018-02-13T08:28:27.755] [INFO] cheese - inserting 1000 documents. first: Tours-Val de Loire and last: 1962 ACC Men's Basketball -[2018-02-13T08:28:27.835] [INFO] cheese - inserting 1000 documents. first: Palace of Linares and last: Template:Db-f11 -[2018-02-13T08:28:27.836] [INFO] cheese - inserting 1000 documents. first: Sri Lankan Tamil cinema and last: California Game Wardens -[2018-02-13T08:28:27.894] [INFO] cheese - inserting 1000 documents. first: Barney (dog) and last: Wikipedia:Featured article candidates/Belarusian Republican Youth Union/Attempt 3 -[2018-02-13T08:28:27.897] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spaceflight/Userbox and last: Lake Wawasee history -[2018-02-13T08:28:27.997] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:28:28.050] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:28:28.114] [INFO] cheese - batch complete in: 1.498 secs -[2018-02-13T08:28:28.133] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:28:28.155] [INFO] cheese - batch complete in: 1.467 secs -[2018-02-13T08:28:28.493] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Taylor County, Wisconsin and last: File:Bournemouth Airport logo.svg -[2018-02-13T08:28:28.526] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after organisations based in Bermuda and last: Wikipedia:Sockpuppet investigations/Sheriwndprakash/Archive -[2018-02-13T08:28:28.628] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:28:28.618] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:28:28.767] [INFO] cheese - inserting 1000 documents. first: Richard Brook and last: Solent Sky -[2018-02-13T08:28:28.847] [INFO] cheese - inserting 1000 documents. first: 1959 ACC Men's Basketball and last: Wikipedia:WikiProject Spam/LinkReports/tcblades.com -[2018-02-13T08:28:28.875] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:28:28.902] [INFO] cheese - inserting 1000 documents. first: KUMY-LD and last: Barking At Ariplanes (Kim Carnes album) -[2018-02-13T08:28:29.062] [INFO] cheese - inserting 1000 documents. first: Template:Silom Line route and last: Obârşa -[2018-02-13T08:28:29.069] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:28:29.068] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:28:29.218] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meatspin and last: Party for Defence of Workers Rights -[2018-02-13T08:28:29.274] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:28:29.379] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:28:29.457] [INFO] cheese - inserting 1000 documents. first: Pesnya vsegda s nami and last: Søren Løvtrup -[2018-02-13T08:28:29.510] [INFO] cheese - inserting 1000 documents. first: CyberCrime (TV series) and last: File:Logo Universidad Centroamericana Managua.svg -[2018-02-13T08:28:29.607] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:28:29.668] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:28:29.864] [INFO] cheese - inserting 1000 documents. first: Sale, Trafford, Greater Manchester and last: Washington County Airport -[2018-02-13T08:28:29.960] [INFO] cheese - inserting 1000 documents. first: List of content management systems and last: Goldman Sachs -[2018-02-13T08:28:30.001] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:28:30.011] [INFO] cheese - inserting 1000 documents. first: Fontana del Nettuno, Piazza del Popolo) and last: Satanic cult abuse -[2018-02-13T08:28:30.038] [INFO] cheese - inserting 1000 documents. first: Binky Gets Cancelled and last: Hethel old thorn -[2018-02-13T08:28:30.061] [INFO] cheese - inserting 1000 documents. first: Leauţ and last: Template:Football League Select XIs -[2018-02-13T08:28:30.111] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:28:30.186] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:28:30.267] [INFO] cheese - batch complete in: 2.597 secs -[2018-02-13T08:28:30.307] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:28:30.321] [INFO] cheese - inserting 1000 documents. first: Lakki Marwat and last: Category:Communications in Zimbabwe -[2018-02-13T08:28:30.403] [INFO] cheese - inserting 1000 documents. first: File:The Crown Of Ptolemy cover.jpg and last: Denny Denson -[2018-02-13T08:28:30.440] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:28:30.479] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:28:30.599] [INFO] cheese - inserting 1000 documents. first: Hofmeister House and last: Mike Brown (ice hockey b. 1979) -[2018-02-13T08:28:30.694] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:28:30.771] [INFO] cheese - inserting 1000 documents. first: Template:Platonic Idealism and last: File:Sinnbild Autobahnkreuz-grau.svg -[2018-02-13T08:28:30.837] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:28:31.137] [INFO] cheese - inserting 1000 documents. first: California State Route 27 and last: Agona Swedru -[2018-02-13T08:28:31.199] [INFO] cheese - inserting 1000 documents. first: Millennium Communities initiative and last: Dixie Browning -[2018-02-13T08:28:31.214] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:28:31.242] [INFO] cheese - inserting 1000 documents. first: Lycee francais La Perouse and last: Allahabad, Zahedan -[2018-02-13T08:28:31.264] [INFO] cheese - inserting 1000 documents. first: Fuller flatiron and last: Josipina Urbančič -[2018-02-13T08:28:31.312] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:28:31.351] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:28:31.410] [INFO] cheese - inserting 1000 documents. first: C.D. De los Altos and last: Sheshtomad District -[2018-02-13T08:28:31.434] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:28:31.451] [INFO] cheese - inserting 1000 documents. first: Category:Cultural depictions of W. C. Fields and last: Wikipedia:Peer review/Effects of genocide on youth/archive1 -[2018-02-13T08:28:31.552] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T08:28:31.629] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:28:31.863] [INFO] cheese - inserting 1000 documents. first: Highland Park distillery and last: Haimirich -[2018-02-13T08:28:31.947] [INFO] cheese - inserting 1000 documents. first: Maryland School for the Deaf and last: PJ Thum -[2018-02-13T08:28:31.978] [INFO] cheese - batch complete in: 1.711 secs -[2018-02-13T08:28:32.005] [INFO] cheese - inserting 1000 documents. first: Allahabad Baku and last: Nagraur, Bahraich -[2018-02-13T08:28:32.129] [INFO] cheese - inserting 1000 documents. first: UN/LOCODE:FRMTG and last: Jim Fix -[2018-02-13T08:28:32.169] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:28:32.232] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:28:32.242] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:28:32.374] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia categories named after organizations based in Bulgaria and last: Category:Wikipedia requested photographs of people of Arizona -[2018-02-13T08:28:32.529] [INFO] cheese - inserting 1000 documents. first: Chris Shaffer and last: Resident Evil 4: Afterlife -[2018-02-13T08:28:32.572] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:28:32.715] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:28:32.734] [INFO] cheese - inserting 1000 documents. first: Lakeshore Alternative Elementary School and last: Ascalenia albitergis -[2018-02-13T08:28:33.033] [INFO] cheese - batch complete in: 1.48 secs -[2018-02-13T08:28:33.196] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs of people of Virginia and last: Seltenbach (Eisbach) -[2018-02-13T08:28:33.293] [INFO] cheese - inserting 1000 documents. first: Ritan and last: 409 in Your Coffeemaker -[2018-02-13T08:28:33.299] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:28:33.317] [INFO] cheese - inserting 1000 documents. first: UN refugee convention and last: X-Men Archives -[2018-02-13T08:28:33.374] [INFO] cheese - inserting 1000 documents. first: Les mille et une nuits and last: Hyposwiss Private Bank Ltd. -[2018-02-13T08:28:33.568] [INFO] cheese - batch complete in: 1.326 secs -[2018-02-13T08:28:33.619] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:28:33.644] [INFO] cheese - batch complete in: 1.475 secs -[2018-02-13T08:28:33.754] [INFO] cheese - inserting 1000 documents. first: Haldeman-Julius Co. and last: Burundi–China relations -[2018-02-13T08:28:33.970] [INFO] cheese - inserting 1000 documents. first: 1992 Australian motorcycle Grand Prix and last: A Lesson In Crime -[2018-02-13T08:28:33.986] [INFO] cheese - inserting 1000 documents. first: Hoxun Court and last: Hispano-Suiza 8Aa -[2018-02-13T08:28:34.122] [INFO] cheese - batch complete in: 1.405 secs -[2018-02-13T08:28:34.132] [INFO] cheese - inserting 1000 documents. first: California Proposition 54 (2003) and last: Bedřich Hrozný -[2018-02-13T08:28:34.155] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:28:34.251] [INFO] cheese - batch complete in: 4.14 secs -[2018-02-13T08:28:34.365] [INFO] cheese - inserting 1000 documents. first: Hard Problems and last: WEEV-LD -[2018-02-13T08:28:34.498] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:28:34.504] [INFO] cheese - batch complete in: 2.526 secs -[2018-02-13T08:28:34.693] [INFO] cheese - inserting 1000 documents. first: Anarchism in us and last: Antonio Corraro -[2018-02-13T08:28:34.787] [INFO] cheese - inserting 1000 documents. first: DASA S.A. and last: Catholic Workers’ College -[2018-02-13T08:28:34.835] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:28:34.885] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T08:28:34.983] [INFO] cheese - inserting 1000 documents. first: Hispano-Suiza 8Ba and last: Wikipedia:Sockpuppet investigations/Idealisis -[2018-02-13T08:28:35.028] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:28:35.037] [INFO] cheese - inserting 1000 documents. first: Category:Tokyo Police Club albums and last: File:UNCQuake.jpg -[2018-02-13T08:28:35.052] [INFO] cheese - inserting 1000 documents. first: Sir Nicholas Mander, 4th Baronet and last: Cypriot Australian -[2018-02-13T08:28:35.062] [INFO] cheese - inserting 1000 documents. first: File:Arab Liberation Front (logo).png and last: BarlowGirl (album) -[2018-02-13T08:28:35.138] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:28:35.159] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:28:35.234] [INFO] cheese - batch complete in: 1.59 secs -[2018-02-13T08:28:35.262] [INFO] cheese - inserting 1000 documents. first: Photovoltaic film and last: W3 Consortium -[2018-02-13T08:28:35.366] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:28:35.394] [INFO] cheese - inserting 1000 documents. first: A Secret History of the IRA and last: Portal:Medicine/Did you know/12 -[2018-02-13T08:28:35.482] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:28:35.579] [INFO] cheese - inserting 1000 documents. first: File:LocaPeople.jpg and last: Hayley sings Japanese Songs 2 -[2018-02-13T08:28:35.602] [INFO] cheese - inserting 1000 documents. first: Template:Pannaxiakos sections and last: Kapala (genus) -[2018-02-13T08:28:35.649] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:28:35.684] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:28:35.772] [INFO] cheese - inserting 1000 documents. first: Amblyglyphidodon curacao and last: Groß Bösitz -[2018-02-13T08:28:35.791] [INFO] cheese - inserting 1000 documents. first: Naval aircrewman and last: Category:United Kingdom Parliamentary constituencies established in 1992 -[2018-02-13T08:28:35.846] [INFO] cheese - inserting 1000 documents. first: Belgrade, Serbia and last: Sir Richard Squires -[2018-02-13T08:28:35.859] [INFO] cheese - inserting 1000 documents. first: Pierre Alexis Ponson du Terrail and last: Mount San Antonio College -[2018-02-13T08:28:35.919] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:28:35.996] [INFO] cheese - inserting 1000 documents. first: Cloward–Piven Strategy and last: Edward Everett Cox -[2018-02-13T08:28:36.010] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:28:36.161] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:28:36.167] [INFO] cheese - inserting 1000 documents. first: Kapooloku Poomaikelani and last: Catholic Community of St. Finbar -[2018-02-13T08:28:36.211] [INFO] cheese - batch complete in: 1.707 secs -[2018-02-13T08:28:36.304] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:28:36.386] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:28:36.596] [INFO] cheese - inserting 1000 documents. first: File:Youtopia.jpg and last: Wikipedia:Articles for deletion/Georg Essl -[2018-02-13T08:28:36.688] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:28:36.781] [INFO] cheese - inserting 1000 documents. first: Category:United Kingdom Parliamentary constituencies established in 1997 and last: Interlude (EP) -[2018-02-13T08:28:36.852] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:28:36.870] [INFO] cheese - inserting 1000 documents. first: File:Cullen Bloodstone Avengers Arena 6.jpg and last: Lumberton, New Mexico -[2018-02-13T08:28:36.926] [INFO] cheese - inserting 1000 documents. first: Mount Read (Tasmania) and last: Wikipedia:Votes for deletion/Nuremberg Diary -[2018-02-13T08:28:36.984] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:28:37.000] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:28:37.030] [INFO] cheese - inserting 1000 documents. first: Dallas Dhu (distillery) and last: Template:CA2064-Taplejung-1 -[2018-02-13T08:28:37.100] [INFO] cheese - inserting 1000 documents. first: Prophecy of the Shadow and last: Template:Aftershock -[2018-02-13T08:28:37.164] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:28:37.234] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:28:37.310] [INFO] cheese - inserting 1000 documents. first: Tiru parameswara vinnagaram and last: Sărsig -[2018-02-13T08:28:37.432] [INFO] cheese - inserting 1000 documents. first: Rolladen-Schneider LS-6 and last: Wikipedia:Votes for deletion/Cherry Creek News -[2018-02-13T08:28:37.468] [INFO] cheese - inserting 1000 documents. first: UWW TV and last: Molenberg (Zwalm) -[2018-02-13T08:28:37.480] [INFO] cheese - batch complete in: 1.831 secs -[2018-02-13T08:28:37.504] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:28:37.530] [INFO] cheese - inserting 1000 documents. first: Hyacinthe Francois Joseph Despinoy and last: Brandon Peterson (footballer) -[2018-02-13T08:28:37.587] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:28:37.640] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:28:37.660] [INFO] cheese - inserting 1000 documents. first: Three Jewels Temples and last: Cellulase -[2018-02-13T08:28:37.668] [INFO] cheese - inserting 1000 documents. first: Bernard Desjean, Baron de Pointis and last: Don mcsween -[2018-02-13T08:28:37.797] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:28:37.803] [INFO] cheese - inserting 1000 documents. first: Category:Fictional Democrats (United States) and last: Battle of Mount Haemus -[2018-02-13T08:28:37.803] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T08:28:37.935] [INFO] cheese - inserting 1000 documents. first: File:Red kangaroo resting.JPG and last: Template:Marshals of Italy -[2018-02-13T08:28:37.945] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:28:38.090] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:28:38.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Gawronska and last: Summer Services -[2018-02-13T08:28:38.251] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:28:38.400] [INFO] cheese - inserting 1000 documents. first: All to Myself and last: File:Magyar Cserkészszövetség 2010.svg -[2018-02-13T08:28:38.507] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:28:38.658] [INFO] cheese - inserting 1000 documents. first: Guti.Haz and last: Inigo Perez -[2018-02-13T08:28:38.676] [INFO] cheese - inserting 1000 documents. first: New Era for Democracy and last: List of terrorist incidents, July–December 2015 -[2018-02-13T08:28:38.712] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:28:38.779] [INFO] cheese - inserting 1000 documents. first: File:Thekillerslogoband.JPG and last: VP-94 -[2018-02-13T08:28:38.838] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:28:38.910] [INFO] cheese - inserting 1000 documents. first: Portal:Medicine/Selected Article/71 and last: Duuh -[2018-02-13T08:28:38.937] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:28:39.079] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:28:39.124] [INFO] cheese - inserting 1000 documents. first: Kobo Aura and last: Disk floret -[2018-02-13T08:28:39.184] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:28:39.206] [INFO] cheese - inserting 1000 documents. first: Sanlazar and last: Wikipedia:Village pump (miscellaneous)/Archive O -[2018-02-13T08:28:39.283] [INFO] cheese - inserting 1000 documents. first: Template:Createaccount and last: File:Head of State film.jpg -[2018-02-13T08:28:39.360] [INFO] cheese - batch complete in: 1.879 secs -[2018-02-13T08:28:39.419] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T08:28:39.496] [INFO] cheese - inserting 1000 documents. first: Professional education and last: Template:Pre-American Revolution documents -[2018-02-13T08:28:39.645] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:28:39.659] [INFO] cheese - inserting 1000 documents. first: Al Van Camp and last: File:OZ Sword of Etheria.jpg -[2018-02-13T08:28:39.672] [INFO] cheese - inserting 1000 documents. first: Lennard jones potential and last: Samuel Segal, Baron Segal -[2018-02-13T08:28:39.680] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Non-free content review/Archive 28 and last: Category:Romanian drama films -[2018-02-13T08:28:39.701] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:28:39.737] [INFO] cheese - inserting 1000 documents. first: Habib Diallo and last: Brooksfield (Maxi yacht) -[2018-02-13T08:28:39.718] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:28:39.772] [INFO] cheese - inserting 1000 documents. first: Linear space and last: Mint-made errors -[2018-02-13T08:28:39.815] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:28:39.893] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:28:40.000] [INFO] cheese - batch complete in: 2.197 secs -[2018-02-13T08:28:40.215] [INFO] cheese - inserting 1000 documents. first: Grant Munro (footballer) and last: HNN extension -[2018-02-13T08:28:40.298] [INFO] cheese - inserting 1000 documents. first: Psychological and sociological effects of spaceflight and last: File:MedioLogo 2013.png -[2018-02-13T08:28:40.311] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:28:40.358] [INFO] cheese - inserting 1000 documents. first: File:Boogie la pelicula.jpg and last: Greek Gods and Goddesses of Greek mythology -[2018-02-13T08:28:40.386] [INFO] cheese - inserting 1000 documents. first: Sir John Eardley-Wilmot, 2nd Baronet and last: File:Amajorguitar213.png -[2018-02-13T08:28:40.410] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:28:40.489] [INFO] cheese - inserting 1000 documents. first: Cumings and last: Wikipedia:Translation/Yellow Cathedral -[2018-02-13T08:28:40.514] [INFO] cheese - inserting 1000 documents. first: Category:1907–08 Athletic League of New England State Colleges men's basketball season and last: Melika Foroutan -[2018-02-13T08:28:40.538] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:28:40.547] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:28:40.564] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Village pump (miscellaneous)/Archive P and last: File:No Deposit, No Return FilmPoster.jpeg -[2018-02-13T08:28:40.717] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:28:40.767] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:28:40.816] [INFO] cheese - batch complete in: 1.456 secs -[2018-02-13T08:28:41.271] [INFO] cheese - inserting 1000 documents. first: Biathlon at the Asian Winter Games and last: Sometimes Things Just Disappear -[2018-02-13T08:28:41.358] [INFO] cheese - inserting 1000 documents. first: Ahmadabad, Kowsar and last: John William Gamaliel Ross -[2018-02-13T08:28:41.445] [INFO] cheese - inserting 1000 documents. first: 8 Hilarious Gods and last: Stewart House and Howard–Stewart Family Cemetery -[2018-02-13T08:28:41.502] [INFO] cheese - inserting 1000 documents. first: Template:Sports at the Olympics and last: Narcissa Black Malfoy -[2018-02-13T08:28:41.537] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:28:41.571] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:28:41.621] [INFO] cheese - batch complete in: 1.083 secs -[2018-02-13T08:28:41.629] [INFO] cheese - inserting 1000 documents. first: Anita Zucker and last: Ramat Yishay -[2018-02-13T08:28:41.631] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:28:41.762] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:28:41.833] [INFO] cheese - inserting 1000 documents. first: File:Stardust FilmPoster.jpeg and last: Homeopathic Institute and Hospital of San José -[2018-02-13T08:28:41.855] [INFO] cheese - inserting 1000 documents. first: Tholian and last: Externsteine -[2018-02-13T08:28:41.933] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:28:42.095] [INFO] cheese - batch complete in: 2.094 secs -[2018-02-13T08:28:42.166] [INFO] cheese - inserting 1000 documents. first: Category:Eritrea geography stubs and last: Igors Stepanovs -[2018-02-13T08:28:42.294] [INFO] cheese - inserting 1000 documents. first: Protuotrov and last: The Sins of the Father -[2018-02-13T08:28:42.309] [INFO] cheese - inserting 1000 documents. first: B. V. Nimbkar and last: Category:Wikipedia requested photographs of basketball people -[2018-02-13T08:28:42.322] [INFO] cheese - batch complete in: 2.011 secs -[2018-02-13T08:28:42.390] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:28:42.490] [INFO] cheese - inserting 1000 documents. first: Bellatrix Black Lestrange and last: 2006 European Seniors Tour -[2018-02-13T08:28:42.531] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:28:42.586] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Charters Towers Miners and last: File:Francesblackeire.jpg -[2018-02-13T08:28:42.725] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:28:42.757] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:28:42.784] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia references cleanup from September 2013 and last: Module:Japanese calendar/data/doc -[2018-02-13T08:28:42.857] [INFO] cheese - inserting 1000 documents. first: Instituto Homeopático y Hospital de San José and last: File:Kajaani University of Applied Sciences.svg -[2018-02-13T08:28:42.911] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:28:42.986] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:28:43.099] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs of boxing people and last: Justin's House -[2018-02-13T08:28:43.184] [INFO] cheese - inserting 1000 documents. first: Akbayan Citizens’ Action Party and last: The Education, Audiovisual and Culture Executive Agency -[2018-02-13T08:28:43.194] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:28:43.276] [INFO] cheese - inserting 1000 documents. first: Glassy water and last: Category:Foreign relations of Vietnam -[2018-02-13T08:28:43.288] [INFO] cheese - inserting 1000 documents. first: David Vickers and last: Route 286 (Massachusetts/New Hampshire) -[2018-02-13T08:28:43.328] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:28:43.366] [INFO] cheese - inserting 1000 documents. first: File:WesleyCrest.jpg and last: Ramón María Narváez y Campos -[2018-02-13T08:28:43.369] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:28:43.434] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:28:43.598] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:28:43.805] [INFO] cheese - inserting 1000 documents. first: Kajaani University of Applied Sciences and last: Category:Geography of Maries County, Missouri -[2018-02-13T08:28:43.917] [INFO] cheese - inserting 1000 documents. first: Kawauchi Station and last: Danielson (band) -[2018-02-13T08:28:43.968] [INFO] cheese - inserting 1000 documents. first: Understanding Comics and last: V. R. Krishna Iyer -[2018-02-13T08:28:44.034] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:28:44.036] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:28:44.184] [INFO] cheese - batch complete in: 2.089 secs -[2018-02-13T08:28:44.218] [INFO] cheese - inserting 1000 documents. first: Magnus Carlson and last: Curling at the Winter Universiade -[2018-02-13T08:28:44.305] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:28:44.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Canada-related articles by quality/3 and last: Shakespearean authorship -[2018-02-13T08:28:44.421] [INFO] cheese - inserting 1000 documents. first: Yupiltepegue language and last: ¿Quién Manda? -[2018-02-13T08:28:44.435] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:28:44.531] [INFO] cheese - batch complete in: 1.62 secs -[2018-02-13T08:28:44.582] [INFO] cheese - inserting 1000 documents. first: Food Labelling and the Law and last: File:M1w1Layout.jpg -[2018-02-13T08:28:44.601] [INFO] cheese - inserting 1000 documents. first: Tarpon River and last: Saldula saltatoria -[2018-02-13T08:28:44.723] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T08:28:44.718] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:28:44.739] [INFO] cheese - inserting 1000 documents. first: Mortmar, California and last: "Esa Pekka Salonen" -[2018-02-13T08:28:44.865] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:28:45.045] [INFO] cheese - inserting 1000 documents. first: Evolution of the hippocampus and last: Pressure transmitter -[2018-02-13T08:28:45.071] [INFO] cheese - inserting 1000 documents. first: Umegaoka Station and last: Sergey Vyshedkevich -[2018-02-13T08:28:45.086] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:28:45.104] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/David Owen Dodd/archive1 and last: Little Basses Reef Lighthouse -[2018-02-13T08:28:45.227] [INFO] cheese - inserting 1000 documents. first: ¿Quien Manda? and last: Template:Westar Rules Ladder/1999 -[2018-02-13T08:28:45.255] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:28:45.328] [INFO] cheese - batch complete in: 1.729 secs -[2018-02-13T08:28:45.435] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:28:45.443] [INFO] cheese - inserting 1000 documents. first: Category:1933 in squash and last: Simple Songs (Jim O'Rourke album) -[2018-02-13T08:28:45.504] [INFO] cheese - inserting 1000 documents. first: Nora Aunor and last: Wikipedia:Ancientpages -[2018-02-13T08:28:45.524] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:28:45.556] [INFO] cheese - inserting 1000 documents. first: Taxco and last: Lake City -[2018-02-13T08:28:45.613] [INFO] cheese - inserting 1000 documents. first: Shōriki and last: Battle of Jabal Shammar (1929) -[2018-02-13T08:28:45.672] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:28:45.699] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:28:45.704] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:28:45.862] [INFO] cheese - inserting 1000 documents. first: Meridian High School (Illinois) and last: Template:Golden State Warriors 1974–75 NBA champions -[2018-02-13T08:28:45.951] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:28:45.986] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Grant County, Minnesota and last: Penonemeño language -[2018-02-13T08:28:45.991] [INFO] cheese - inserting 1000 documents. first: Template:Rushden & Diamonds F.C. and last: Sho'rva -[2018-02-13T08:28:46.003] [INFO] cheese - inserting 1000 documents. first: Lessay Airfield and last: Akushinsky District -[2018-02-13T08:28:46.043] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Ara Canal/archive1 and last: Category:1500 in Africa -[2018-02-13T08:28:46.093] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:28:46.110] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:28:46.125] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:28:46.121] [INFO] cheese - inserting 1000 documents. first: Borownica, Subcarpathian Voivodeship and last: Category:People from Wooster, Ohio -[2018-02-13T08:28:46.176] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:28:46.241] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:28:46.362] [INFO] cheese - inserting 1000 documents. first: Wikipedia:LCM and last: Martin David Kahane -[2018-02-13T08:28:46.484] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:28:46.648] [INFO] cheese - inserting 1000 documents. first: Edge House and last: Portal:Military of the United States/Units and Awards/13 -[2018-02-13T08:28:46.737] [INFO] cheese - inserting 1000 documents. first: Kendra Slewenski and last: Kagando Hospital -[2018-02-13T08:28:46.776] [INFO] cheese - inserting 1000 documents. first: Village Vets Australia and last: Wikipedia:WikiProject Spam/Local/concussionfoundation.org -[2018-02-13T08:28:46.778] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:28:46.787] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:28:46.908] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:28:46.934] [INFO] cheese - inserting 1000 documents. first: 450SL and last: Victoria Rodriguez -[2018-02-13T08:28:46.982] [INFO] cheese - inserting 1000 documents. first: Kenneth Dubuque Memorial State Forest and last: Template:Masta Killa -[2018-02-13T08:28:47.029] [INFO] cheese - inserting 1000 documents. first: Danka Kovinic and last: Sunstrum, Ontario -[2018-02-13T08:28:47.042] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:47.072] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:28:47.146] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:28:47.337] [INFO] cheese - inserting 1000 documents. first: Milemarker and last: File:MarkRae RaeRoad albumcover.jpgMarkRae RaeRoad albumcover.jpg -[2018-02-13T08:28:47.357] [INFO] cheese - inserting 1000 documents. first: Email advertising and last: SoCal -[2018-02-13T08:28:47.395] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:28:47.403] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Peaknik (2nd nomination) and last: Donald B. Smith -[2018-02-13T08:28:47.436] [INFO] cheese - inserting 1000 documents. first: Ss decontrol and last: Luigi Turci -[2018-02-13T08:28:47.491] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:28:47.502] [INFO] cheese - batch complete in: 1.798 secs -[2018-02-13T08:28:47.547] [INFO] cheese - inserting 1000 documents. first: Pauline Croft and last: Lulingu Tshionka Airport -[2018-02-13T08:28:47.545] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:28:47.671] [INFO] cheese - inserting 1000 documents. first: Emil Larsen (wrestler) and last: A Night at Boomers, Vol. 2 -[2018-02-13T08:28:47.677] [INFO] cheese - inserting 1000 documents. first: Ray Tellier and last: Logarska Dolina -[2018-02-13T08:28:47.678] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:28:47.758] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2011 August 16 and last: Category:National political office-holders in South Africa -[2018-02-13T08:28:47.801] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:28:47.850] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:28:47.879] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:28:48.082] [INFO] cheese - inserting 1000 documents. first: Japan Super League and last: William Levett (Rector of Buxted) -[2018-02-13T08:28:48.127] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:28:48.147] [INFO] cheese - inserting 1000 documents. first: File:MarkRae IntoTheDepths albumcover.jpg and last: Bracken's World -[2018-02-13T08:28:48.154] [INFO] cheese - inserting 1000 documents. first: Hot spot volcanoes and last: Track day -[2018-02-13T08:28:48.214] [INFO] cheese - inserting 1000 documents. first: File:Ester Valerie Noronha.jpg and last: Jeffery Stork -[2018-02-13T08:28:48.238] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:28:48.257] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:28:48.315] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Randolph County, Indiana and last: Category:Royal House of Perak -[2018-02-13T08:28:48.320] [INFO] cheese - inserting 1000 documents. first: Guckenheimer Warehouse and last: Category:Brewton Millers players -[2018-02-13T08:28:48.360] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:28:48.421] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:28:48.424] [INFO] cheese - inserting 1000 documents. first: James Orrock and last: File:James White 01.png -[2018-02-13T08:28:48.480] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:28:48.635] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:28:49.141] [INFO] cheese - inserting 1000 documents. first: Demidov (town) and last: Gulf of Eastern Corea -[2018-02-13T08:28:49.299] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:28:49.307] [INFO] cheese - inserting 1000 documents. first: Category:Austrian speculative fiction films and last: 1/2nd Wessex Field Company, Royal Engineers -[2018-02-13T08:28:49.319] [INFO] cheese - inserting 1000 documents. first: Andrés García and last: Musée de Cluny -- Musée national du Moyen Âge -[2018-02-13T08:28:49.453] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:28:49.465] [INFO] cheese - inserting 1000 documents. first: Mitsuo Nakamura and last: John Porter (horseman) -[2018-02-13T08:28:49.490] [INFO] cheese - inserting 1000 documents. first: September 11, 2001 War Games and last: Bio-nano generator -[2018-02-13T08:28:49.566] [INFO] cheese - batch complete in: 2.064 secs -[2018-02-13T08:28:49.707] [INFO] cheese - inserting 1000 documents. first: Category:Irish expatriates in Croatia and last: Wikipedia:WikiProject Biography/Peer review/Tenacious D -[2018-02-13T08:28:49.716] [INFO] cheese - batch complete in: 1.478 secs -[2018-02-13T08:28:49.749] [INFO] cheese - inserting 1000 documents. first: Elkeson de Oliveira Cardozo and last: Faringdon, Oxfordshire -[2018-02-13T08:28:49.773] [INFO] cheese - batch complete in: 1.516 secs -[2018-02-13T08:28:49.776] [INFO] cheese - inserting 1000 documents. first: Norman Gerry Jones and last: File:ShadowKiss Novel.jpg -[2018-02-13T08:28:49.822] [INFO] cheese - batch complete in: 1.695 secs -[2018-02-13T08:28:49.915] [INFO] cheese - batch complete in: 1.434 secs -[2018-02-13T08:28:49.997] [INFO] cheese - batch complete in: 1.362 secs -[2018-02-13T08:28:50.128] [INFO] cheese - inserting 1000 documents. first: Template:NC Dinos roster and last: Shanell aka SnL -[2018-02-13T08:28:50.264] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T08:28:50.458] [INFO] cheese - inserting 1000 documents. first: Xcode Tools and last: Adolf Šimperský -[2018-02-13T08:28:50.459] [INFO] cheese - inserting 1000 documents. first: Cnemaspis ranwellai and last: Category:Lists of people from Georgia (U.S. state) -[2018-02-13T08:28:50.500] [INFO] cheese - inserting 1000 documents. first: Artificial foreskin and last: Category:Association football in Northern Ireland -[2018-02-13T08:28:50.526] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:28:50.542] [INFO] cheese - inserting 1000 documents. first: Khambhoj and last: Discover magazine -[2018-02-13T08:28:50.548] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:28:50.584] [INFO] cheese - inserting 1000 documents. first: 1/3rd Wessex Field Company, Royal Engineers and last: ǁKhara Hais Local Municipality -[2018-02-13T08:28:50.638] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:28:50.713] [INFO] cheese - inserting 1000 documents. first: Nikopol's'kyi Zavod Ferosplaviv and last: Mastocytosis, systemic -[2018-02-13T08:28:50.712] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:28:50.738] [INFO] cheese - batch complete in: 1.285 secs -[2018-02-13T08:28:50.887] [INFO] cheese - inserting 1000 documents. first: Petridul de Mijloc and last: Hôtel d'Angoulême Lamoignon -[2018-02-13T08:28:50.889] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:28:50.982] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:28:51.140] [INFO] cheese - inserting 1000 documents. first: Flinders Ranges Worm-lizard and last: Loving WR-1 Love -[2018-02-13T08:28:51.182] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:28:51.206] [INFO] cheese - inserting 1000 documents. first: The Lady with the Unicorn and last: Big Cat -[2018-02-13T08:28:51.282] [INFO] cheese - inserting 1000 documents. first: Oregon Labor Market Information System and last: History of toilet -[2018-02-13T08:28:51.286] [INFO] cheese - inserting 1000 documents. first: File:Robert Carter -Halo.jpg and last: Haspra -[2018-02-13T08:28:51.331] [INFO] cheese - inserting 1000 documents. first: Mark Zuckerberg and last: Teja (character) -[2018-02-13T08:28:51.354] [INFO] cheese - batch complete in: 1.788 secs -[2018-02-13T08:28:51.398] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:28:51.416] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:28:51.435] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:28:51.559] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Green Bay, Wisconsin and last: NO-DO -[2018-02-13T08:28:51.602] [INFO] cheese - inserting 1000 documents. first: Category:Women's basketball by country and last: Rayavaram (Tamil Nadu) -[2018-02-13T08:28:51.646] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:28:51.689] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:28:51.805] [INFO] cheese - inserting 1000 documents. first: Ooms and last: List of Category A listed buildings in Na h-Eileanan Siar -[2018-02-13T08:28:51.864] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:28:51.899] [INFO] cheese - inserting 1000 documents. first: Fear (Dota 2 player) and last: Frank Hawkins (rugby player) -[2018-02-13T08:28:52.007] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:28:52.046] [INFO] cheese - inserting 1000 documents. first: Schroon lake and last: Kalyana Varadharaja Perumal Temple -[2018-02-13T08:28:52.083] [INFO] cheese - inserting 1000 documents. first: Yolo City and last: The G Spot and Other Recent Discoveries About Human Sexuality -[2018-02-13T08:28:52.110] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:28:52.183] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:28:52.215] [INFO] cheese - inserting 1000 documents. first: Mancha Alta Albaceteña and last: 1955 Cincinnati Reds -[2018-02-13T08:28:52.217] [INFO] cheese - inserting 1000 documents. first: Panopoulo, Greece and last: Oppositional defiant disorder -[2018-02-13T08:28:52.255] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pharmamedics.com and last: ARM Alvarez -[2018-02-13T08:28:52.286] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:28:52.400] [INFO] cheese - inserting 1000 documents. first: Category:Royal Navy in World War I and last: Marquisate of Monferrato -[2018-02-13T08:28:52.421] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:28:52.436] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:28:52.543] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:28:52.779] [INFO] cheese - inserting 1000 documents. first: Category:1915 disestablishments in China and last: Vorotan Hydropower Plant -[2018-02-13T08:28:52.830] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:28:52.875] [INFO] cheese - inserting 1000 documents. first: Template:Covenantor Rebellion of 1770's and last: General Montcalm -[2018-02-13T08:28:52.887] [INFO] cheese - inserting 1000 documents. first: Xbalanque and last: Washington Allston -[2018-02-13T08:28:52.976] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:28:53.015] [INFO] cheese - batch complete in: 1.661 secs -[2018-02-13T08:28:53.045] [INFO] cheese - inserting 1000 documents. first: 1956 Cincinnati Reds and last: Samuel Wale -[2018-02-13T08:28:53.148] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:28:53.203] [INFO] cheese - inserting 1000 documents. first: Richard Hay (disambiguation) and last: File:Zolarxtimelesscvr.jpg -[2018-02-13T08:28:53.232] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sam Kelley and last: Wangxian, Liling -[2018-02-13T08:28:53.347] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:28:53.370] [INFO] cheese - inserting 1000 documents. first: John R. Carter and last: Oka River (Siberia) -[2018-02-13T08:28:53.403] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:28:53.457] [INFO] cheese - inserting 1000 documents. first: David Evyn Canter and last: 奇瑞汽车 -[2018-02-13T08:28:53.468] [INFO] cheese - inserting 1000 documents. first: Better By You, Better Than Me and last: Una S. Ryan -[2018-02-13T08:28:53.542] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:28:53.551] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:28:53.636] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:28:53.646] [INFO] cheese - inserting 1000 documents. first: Mamadou Seck (footballer) and last: Category:Mid-importance science fiction articles -[2018-02-13T08:28:53.742] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:28:53.894] [INFO] cheese - inserting 1000 documents. first: Cholamandalam coast and last: Heishuihe Township -[2018-02-13T08:28:53.898] [INFO] cheese - inserting 1000 documents. first: Bengali-American and last: Tumar Darrehsi-ye Bala -[2018-02-13T08:28:53.905] [INFO] cheese - inserting 1000 documents. first: Cook levin theorem and last: Wikipedia:Articles for deletion/Ruatoki -[2018-02-13T08:28:53.951] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:28:53.970] [INFO] cheese - inserting 1000 documents. first: Category:Hanlim Multi Art School alumni and last: April 2003 -[2018-02-13T08:28:53.980] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:28:54.022] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:28:54.048] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:28:54.160] [INFO] cheese - inserting 1000 documents. first: Bristle-spined rat and last: C F Booth -[2018-02-13T08:28:54.217] [INFO] cheese - inserting 1000 documents. first: Gerald Mcboingboing and last: 5280 magazine -[2018-02-13T08:28:54.235] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:28:54.299] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:28:54.342] [INFO] cheese - inserting 1000 documents. first: Maurus Servius Honoratius and last: File:KIS cover.jpg -[2018-02-13T08:28:54.366] [INFO] cheese - inserting 1000 documents. first: Julianna Margulies and last: Compound noun -[2018-02-13T08:28:54.502] [INFO] cheese - batch complete in: 1.487 secs -[2018-02-13T08:28:54.504] [INFO] cheese - inserting 1000 documents. first: West Bank settlement and last: Ophisurus versicolor -[2018-02-13T08:28:54.514] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:28:54.597] [INFO] cheese - inserting 1000 documents. first: Huaiyang, Hebei and last: Category:1873 in London -[2018-02-13T08:28:54.604] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:28:54.698] [INFO] cheese - inserting 1000 documents. first: Category:1987 in Macau and last: Western People's Front -[2018-02-13T08:28:54.701] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:28:54.763] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:28:54.793] [INFO] cheese - inserting 1000 documents. first: Neo wheels and last: File:UnwillingEmigrants.jpg -[2018-02-13T08:28:54.886] [INFO] cheese - inserting 1000 documents. first: Muscles of the hand and last: Maryland State Route 95 -[2018-02-13T08:28:54.919] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:28:54.966] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:28:55.214] [INFO] cheese - inserting 1000 documents. first: Bladder diseases and last: Inuit group -[2018-02-13T08:28:55.214] [INFO] cheese - inserting 1000 documents. first: Timbisha people and last: Category:People from Cherven Bryag -[2018-02-13T08:28:55.269] [INFO] cheese - inserting 1000 documents. first: Dexter National Fish Hatchery and last: Patrick Bowes-Lyon (tennis player) -[2018-02-13T08:28:55.297] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:28:55.314] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:28:55.471] [INFO] cheese - inserting 1000 documents. first: File:Age of Empire Online cover.jpg and last: Category:Townships in Rush County, Indiana -[2018-02-13T08:28:55.475] [INFO] cheese - batch complete in: 0.961 secs -[2018-02-13T08:28:55.570] [INFO] cheese - inserting 1000 documents. first: SwapMagic and last: Steatocranus gibbiceps -[2018-02-13T08:28:55.617] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:28:55.663] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:28:55.722] [INFO] cheese - inserting 1000 documents. first: Symphony No. 2 (Borodin) and last: Barbatesti, Gorj -[2018-02-13T08:28:55.743] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:FFX Tools and last: ARA Independencia (1891) -[2018-02-13T08:28:55.833] [INFO] cheese - inserting 1000 documents. first: Compound adjective and last: Unary -[2018-02-13T08:28:55.840] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:28:55.858] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:28:56.004] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T08:28:56.174] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Oak Hill Middle School and last: Dust and mist collection -[2018-02-13T08:28:56.212] [INFO] cheese - inserting 1000 documents. first: José Barrionuevo and last: Anita Belle Colton -[2018-02-13T08:28:56.254] [INFO] cheese - inserting 1000 documents. first: Alan Marshall (disambiguation) and last: 2011–12 Celtic league -[2018-02-13T08:28:56.258] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:28:56.282] [INFO] cheese - inserting 1000 documents. first: Gallic group and last: Doucet-Boudreau v. Nova Scotia -[2018-02-13T08:28:56.311] [INFO] cheese - inserting 1000 documents. first: Emmett Vogan and last: Ruslan Sirota -[2018-02-13T08:28:56.316] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:28:56.402] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:28:56.426] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:28:56.553] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:28:56.748] [INFO] cheese - inserting 1000 documents. first: Draft:Audacieux and last: File:Headlong.jpg -[2018-02-13T08:28:56.826] [INFO] cheese - inserting 1000 documents. first: Bengesti and last: Pine Tree Flag -[2018-02-13T08:28:56.934] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:28:57.003] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:28:57.157] [INFO] cheese - inserting 1000 documents. first: CUED and last: Futaleufú Airport -[2018-02-13T08:28:57.229] [INFO] cheese - inserting 1000 documents. first: Category:Minato, Tokyo and last: File:BravoGiovanni.jpg -[2018-02-13T08:28:57.246] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:28:57.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/jessica-jarrell-daily.skyrock.com. and last: Category:North East England articles by quality -[2018-02-13T08:28:57.337] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:28:57.340] [INFO] cheese - inserting 1000 documents. first: Namida wo Misenaide (Boys Don't Cry) and last: Deep Space Nine (fictional space station) -[2018-02-13T08:28:57.375] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:28:57.483] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:28:57.567] [INFO] cheese - inserting 1000 documents. first: Southwark Bridge and last: Socialist Worker's Party -[2018-02-13T08:28:57.655] [INFO] cheese - inserting 1000 documents. first: (252) Clementina and last: Scottish Executive agencies -[2018-02-13T08:28:57.737] [INFO] cheese - batch complete in: 1.733 secs -[2018-02-13T08:28:57.903] [INFO] cheese - inserting 1000 documents. first: Giovanni Manzuoli and last: Template:Grande Prairie Radio -[2018-02-13T08:28:57.929] [INFO] cheese - batch complete in: 1.503 secs -[2018-02-13T08:28:58.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Latif Halmat and last: File:Mustard-seed-international-logo-white-footer.png -[2018-02-13T08:28:58.113] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:28:58.144] [INFO] cheese - inserting 1000 documents. first: Fernando Cuéllar Reyes and last: File:Metro FM Logo2.gif -[2018-02-13T08:28:58.154] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:28:58.243] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:28:58.436] [INFO] cheese - inserting 1000 documents. first: South African birds and last: Otradny, Samara Oblast -[2018-02-13T08:28:58.452] [INFO] cheese - inserting 1000 documents. first: Charles Gilbert Heathcote and last: Wikipedia:Articles for deletion/David Eager -[2018-02-13T08:28:58.533] [INFO] cheese - inserting 1000 documents. first: Indonesian Basketball League and last: Obomkpa -[2018-02-13T08:28:58.557] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:28:58.566] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:28:58.669] [INFO] cheese - batch complete in: 1.185 secs -[2018-02-13T08:28:58.869] [INFO] cheese - inserting 1000 documents. first: Thriplow and last: Liselotte Herrmann -[2018-02-13T08:28:58.870] [INFO] cheese - inserting 1000 documents. first: Stanley Community College and last: José María Larios -[2018-02-13T08:28:58.938] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Dictionary of National Biography/Artists/wikidata and last: Hôtel Dieu in Paris -[2018-02-13T08:28:58.975] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:28:58.991] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:28:59.082] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:28:59.265] [INFO] cheese - inserting 1000 documents. first: Railway electric traction and last: La bandera Argentina -[2018-02-13T08:28:59.280] [INFO] cheese - inserting 1000 documents. first: Diego de la Vega and last: Joe Tex -[2018-02-13T08:28:59.398] [INFO] cheese - inserting 1000 documents. first: Cistanthe tweedyi and last: Asemnantha pubescens -[2018-02-13T08:28:59.410] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:28:59.513] [INFO] cheese - batch complete in: 1.776 secs -[2018-02-13T08:28:59.522] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:28:59.607] [INFO] cheese - inserting 1000 documents. first: Pullankuzhal and last: Wikipedia:Articles for deletion/Pokémon Movie 13 -[2018-02-13T08:28:59.705] [INFO] cheese - inserting 1000 documents. first: Morgan Aero8 and last: Assistant commissioner -[2018-02-13T08:28:59.767] [INFO] cheese - inserting 1000 documents. first: Harran, Idlib and last: Boutheïna Amiche -[2018-02-13T08:28:59.781] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:28:59.786] [INFO] cheese - inserting 1000 documents. first: 2013–14 Saint Mary's Gaels women's basketball team and last: Template:Attached KML/Kentucky Route 842 -[2018-02-13T08:28:59.865] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:28:59.939] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:28:59.970] [INFO] cheese - batch complete in: 1.857 secs -[2018-02-13T08:29:00.019] [INFO] cheese - inserting 1000 documents. first: HVDC Wolgograd-Donbass and last: Slanesville Pike -[2018-02-13T08:29:00.108] [INFO] cheese - inserting 1000 documents. first: Astiella delicatula and last: Category:Greenville Groove -[2018-02-13T08:29:00.180] [INFO] cheese - inserting 1000 documents. first: Hamilton P. Bee and last: Portal:Heavy Metal -[2018-02-13T08:29:00.188] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:29:00.190] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:29:00.353] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:29:00.553] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Entertainment/2009 November 5 and last: CANTOR Georg -[2018-02-13T08:29:00.658] [INFO] cheese - inserting 1000 documents. first: Hall, Joseph and last: Batavia Coast -[2018-02-13T08:29:00.692] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:29:00.773] [INFO] cheese - inserting 1000 documents. first: Lolol Palo Alto Airport and last: Dukenet communications -[2018-02-13T08:29:00.811] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:29:00.851] [INFO] cheese - inserting 1000 documents. first: John Rogan and last: Uoit -[2018-02-13T08:29:01.013] [INFO] cheese - inserting 1000 documents. first: Carl Faulkner and last: Wikipedia:Files for deletion/2011 August 21 -[2018-02-13T08:29:01.016] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:29:01.028] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:29:01.142] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:29:01.166] [INFO] cheese - inserting 1000 documents. first: Springfield Pike and last: Springbok (disambiguation) -[2018-02-13T08:29:01.269] [INFO] cheese - inserting 1000 documents. first: Common Slavic and last: BSNL Mobile -[2018-02-13T08:29:01.287] [INFO] cheese - inserting 1000 documents. first: Richard Lewontin and last: Ferenc Mádl -[2018-02-13T08:29:01.293] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:29:01.311] [INFO] cheese - inserting 1000 documents. first: Joce of York and last: Harbourvest Partners -[2018-02-13T08:29:01.444] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:29:01.444] [INFO] cheese - batch complete in: 1.931 secs -[2018-02-13T08:29:01.452] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:29:01.520] [INFO] cheese - inserting 1000 documents. first: Bandolero (band) and last: Abu Dali, Idlib -[2018-02-13T08:29:01.597] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:29:01.601] [INFO] cheese - inserting 1000 documents. first: File:Marillion cover-my-eyes.jpg and last: Transport in Hyderabad, India -[2018-02-13T08:29:01.690] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:29:01.708] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/USS Comfort (AH-3) and last: Jackson County Courthouse (Medford, Oregon) -[2018-02-13T08:29:01.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2011 August 21 and last: Template:Nfl predraft/doc -[2018-02-13T08:29:01.785] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:29:01.833] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:29:02.053] [INFO] cheese - inserting 1000 documents. first: RAE Hurricane and last: Grote Street, Adelaide -[2018-02-13T08:29:02.110] [INFO] cheese - inserting 1000 documents. first: Tsuyoshi Hasegawa and last: Dinah the Dining Car -[2018-02-13T08:29:02.115] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:29:02.130] [INFO] cheese - inserting 1000 documents. first: Center School (Connecticut) and last: Kirkby, Geoffrey John, Captain, Royal Navy, CBE, DSC ** -[2018-02-13T08:29:02.175] [INFO] cheese - inserting 1000 documents. first: Bartaman Bharat and last: 2013 Morocco Tennis Tour – Meknes -[2018-02-13T08:29:02.206] [INFO] cheese - inserting 1000 documents. first: Abu Omar, Idlib and last: Wikipedia:Articles for deletion/Madagascar Oil -[2018-02-13T08:29:02.189] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:02.234] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:29:02.247] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:29:02.332] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:29:02.436] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Why is plastic surgery bad and last: File:LiveAtTheVillageVanguard a ThadJonesMelLewis.jpg -[2018-02-13T08:29:02.491] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:29:02.621] [INFO] cheese - inserting 1000 documents. first: Understudy and last: Patrick Leahy -[2018-02-13T08:29:02.649] [INFO] cheese - inserting 1000 documents. first: Coroá language and last: Shandaar (1990 film) -[2018-02-13T08:29:02.676] [INFO] cheese - inserting 1000 documents. first: Sputnik music and last: Jan Willem Eduard Buijs -[2018-02-13T08:29:02.686] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:29:02.687] [INFO] cheese - inserting 1000 documents. first: Graham Rees and last: Pornthip Nakhirunkanok -[2018-02-13T08:29:02.726] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:29:02.783] [INFO] cheese - inserting 1000 documents. first: Template:UK decimalisation and last: Boldface hierarchy -[2018-02-13T08:29:02.832] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:29:02.834] [INFO] cheese - inserting 1000 documents. first: Argentino hasta la muerte and last: Category:Samoan society -[2018-02-13T08:29:02.890] [INFO] cheese - inserting 1000 documents. first: Heacham and last: Fantastic Factory -[2018-02-13T08:29:02.956] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:29:02.980] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:29:03.033] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:29:03.205] [INFO] cheese - inserting 1000 documents. first: GEMS Royal Dubai School and last: Shannon peters -[2018-02-13T08:29:03.234] [INFO] cheese - inserting 1000 documents. first: Sibford and last: Category:Cities in Morgan County, Illinois -[2018-02-13T08:29:03.319] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:29:03.337] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:29:03.593] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Ron Elliott (musician) and last: Wikipedia:WikiProject Spam/LinkReports/motorolafans.info -[2018-02-13T08:29:03.754] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:29:03.783] [INFO] cheese - inserting 1000 documents. first: Ophthalmitis viridior and last: Antaeotricha tectoria -[2018-02-13T08:29:03.917] [INFO] cheese - inserting 1000 documents. first: The Daily Citizen and last: Wikipedia:MMOG/OR/NEWS -[2018-02-13T08:29:03.971] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:29:04.041] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:29:04.085] [INFO] cheese - inserting 1000 documents. first: Levada and last: Charter trustee -[2018-02-13T08:29:04.113] [INFO] cheese - inserting 1000 documents. first: Category:Hazara politicians and last: Category:Houses completed in 1906 -[2018-02-13T08:29:04.119] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Moultrie County, Illinois and last: Category:1811 in Thailand -[2018-02-13T08:29:04.138] [INFO] cheese - inserting 1000 documents. first: Category:2008 Monte Carlo Masters and last: Nirtza -[2018-02-13T08:29:04.191] [INFO] cheese - inserting 1000 documents. first: Lisa Murkowski and last: Fushengji shi -[2018-02-13T08:29:04.205] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:29:04.213] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:29:04.218] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:29:04.327] [INFO] cheese - batch complete in: 1.493 secs -[2018-02-13T08:29:04.568] [INFO] cheese - batch complete in: 1.882 secs -[2018-02-13T08:29:04.629] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Techno bass and last: T. indicus -[2018-02-13T08:29:04.763] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:29:04.837] [INFO] cheese - inserting 1000 documents. first: The Birth of a Baby and last: Category:Films directed by Urban Gad -[2018-02-13T08:29:04.867] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:29:04.969] [INFO] cheese - inserting 1000 documents. first: Thomas Hope, Lord Kerse and last: Wikipedia:WikiProject Spam/Local/bhesan-com.webnode.in -[2018-02-13T08:29:04.971] [INFO] cheese - inserting 1000 documents. first: American Flyers and last: Category:Mohawk Valley Prowlers players -[2018-02-13T08:29:05.048] [INFO] cheese - inserting 1000 documents. first: Parlican and last: Zakk Irius -[2018-02-13T08:29:05.047] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:29:05.062] [INFO] cheese - inserting 1000 documents. first: Category:Houses completed in 1907 and last: Buddleja speciosissima -[2018-02-13T08:29:05.070] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:29:05.124] [INFO] cheese - inserting 1000 documents. first: Neostriatum and last: Epsilon2 Arae -[2018-02-13T08:29:05.140] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:29:05.143] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:29:05.251] [INFO] cheese - inserting 1000 documents. first: You Were Right, Joe and last: Category:Administrators of The Royal Ballet -[2018-02-13T08:29:05.257] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:29:05.344] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:29:05.352] [INFO] cheese - inserting 1000 documents. first: 20th Saturn Awards and last: File:Gators cross country logo.jpeg -[2018-02-13T08:29:05.450] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:29:05.609] [INFO] cheese - inserting 1000 documents. first: Theodore Wright and last: First Sale Doctrine -[2018-02-13T08:29:05.653] [INFO] cheese - inserting 1000 documents. first: Category:New Haven Knights players and last: Dirichlet algebra -[2018-02-13T08:29:05.654] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/stampcollecting.wikia.com and last: Template:Cite California statute/title 1999 724 -[2018-02-13T08:29:05.683] [INFO] cheese - inserting 1000 documents. first: Pelcoya Canton and last: Battle of Kuala Lumpur -[2018-02-13T08:29:05.731] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:29:05.736] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T08:29:05.763] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:29:05.771] [INFO] cheese - inserting 1000 documents. first: Al Meem and last: File:O costa do castelo.jpg -[2018-02-13T08:29:05.833] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:29:05.985] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:29:06.114] [INFO] cheese - inserting 1000 documents. first: Epsilon-1 Arae and last: Romance of the Grail -[2018-02-13T08:29:06.174] [INFO] cheese - inserting 1000 documents. first: Category:People of medieval Bulgaria and last: Human centipede -[2018-02-13T08:29:06.226] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:29:06.266] [INFO] cheese - inserting 1000 documents. first: Self‑oscillation and last: Al-Arien -[2018-02-13T08:29:06.294] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:29:06.352] [INFO] cheese - inserting 1000 documents. first: Hiroshima Port Station and last: Rejected cartoons -[2018-02-13T08:29:06.390] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:29:06.412] [INFO] cheese - inserting 1000 documents. first: Category:Works by region of setting and last: Mr. Slate -[2018-02-13T08:29:06.457] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:29:06.468] [INFO] cheese - inserting 1000 documents. first: George Arthur Harwin Branson and last: File:AUS Alphanumeric Route C707.svg -[2018-02-13T08:29:06.536] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:29:06.572] [INFO] cheese - inserting 1000 documents. first: File:Ghostship.jpg and last: Portal:Tropical cyclones/Selected picture/Hurricane Dean -[2018-02-13T08:29:06.581] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:29:06.659] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:29:06.900] [INFO] cheese - inserting 1000 documents. first: United Mexican States (1824-1835) and last: Townshend, Paul -[2018-02-13T08:29:06.993] [INFO] cheese - inserting 1000 documents. first: 韻圖 and last: Category:People from Zwettl -[2018-02-13T08:29:07.093] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:29:07.128] [INFO] cheese - inserting 1000 documents. first: John Cox (sound engineer) and last: Template:Taxonomy/Lomariopsidaceae -[2018-02-13T08:29:07.153] [INFO] cheese - inserting 1000 documents. first: Pear Tree House and last: Sørumsand -[2018-02-13T08:29:07.189] [INFO] cheese - inserting 1000 documents. first: 802.11u and last: Gun Alley Murder -[2018-02-13T08:29:07.198] [INFO] cheese - inserting 1000 documents. first: Rubber Soul (manga) and last: William Kingsbury -[2018-02-13T08:29:07.211] [INFO] cheese - inserting 1000 documents. first: File:AUS Alphanumeric Route C708.svg and last: File:Hermann Greiner.jpg -[2018-02-13T08:29:07.273] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:29:07.277] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:29:07.330] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:29:07.336] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:29:07.403] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:29:07.475] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Spider and fly April 2008-6.jpg and last: Wikipedia:Notability (geographic features) -[2018-02-13T08:29:07.502] [INFO] cheese - batch complete in: 1.766 secs -[2018-02-13T08:29:07.530] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:29:07.743] [INFO] cheese - inserting 1000 documents. first: Tucker, Paul and last: Book:Billy Paul -[2018-02-13T08:29:07.795] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:29:07.899] [INFO] cheese - inserting 1000 documents. first: Zeitz (surname) and last: Category:Bus incidents in Guatemala -[2018-02-13T08:29:07.909] [INFO] cheese - inserting 1000 documents. first: Prikubansky District, Karachay-Cherkess Republic and last: Marriage in Judaism -[2018-02-13T08:29:07.951] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:29:07.980] [INFO] cheese - inserting 1000 documents. first: List of volcanoes in Borneo and last: Fahad Khamees Mubarak -[2018-02-13T08:29:07.989] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:29:08.092] [INFO] cheese - inserting 1000 documents. first: Théâtre de la Gaîté (disambiguation) and last: Portal:Animation/Anniversaries/September/September 8 -[2018-02-13T08:29:08.106] [INFO] cheese - inserting 1000 documents. first: Grind (2003 film) and last: Effect of Hurricane Katrina on Florida -[2018-02-13T08:29:08.185] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:29:08.217] [INFO] cheese - inserting 1000 documents. first: Be-Knighted and last: The Diceman (TV Series) -[2018-02-13T08:29:08.231] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:29:08.268] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:29:08.366] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:29:08.506] [INFO] cheese - inserting 1000 documents. first: MARG Limited (India) and last: Cheshmeh Vazan -[2018-02-13T08:29:08.536] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:29:08.621] [INFO] cheese - inserting 1000 documents. first: Suresh Perera (Old Cambrians cricketer) and last: Kilia Kiel -[2018-02-13T08:29:08.700] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:29:08.754] [INFO] cheese - inserting 1000 documents. first: List of Finance Ministers of France and last: Emergency Vets -[2018-02-13T08:29:08.795] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2009 November 9 and last: Category:People from Sousse Governorate -[2018-02-13T08:29:08.818] [INFO] cheese - inserting 1000 documents. first: File:Kecksies.jpg and last: Wikipedia:Articles for deletion/Machosexual (2nd nomination) -[2018-02-13T08:29:08.880] [INFO] cheese - batch complete in: 1.378 secs -[2018-02-13T08:29:08.875] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:29:08.917] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:29:08.931] [INFO] cheese - inserting 1000 documents. first: Template:Country data Libyan Arab Jamahiriya and last: American Chamber of Commerce in Sri Lanka -[2018-02-13T08:29:08.986] [INFO] cheese - inserting 1000 documents. first: Egyptian Current Party and last: S.C. Trestina A.S.D. -[2018-02-13T08:29:09.041] [INFO] cheese - inserting 1000 documents. first: Strong ontology and last: Category:Museums in North Dakota -[2018-02-13T08:29:09.042] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:29:09.044] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:29:09.095] [INFO] cheese - inserting 1000 documents. first: Daylar and last: Cycling at the 2016 Summer Olympics – Women's Keirin -[2018-02-13T08:29:09.151] [INFO] cheese - inserting 1000 documents. first: Milonoff and last: Transparent identifiers -[2018-02-13T08:29:09.150] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:29:09.170] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:29:09.238] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:29:09.326] [INFO] cheese - inserting 1000 documents. first: Miun and last: 2009-10 Detroit Pistons season -[2018-02-13T08:29:09.376] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:29:09.473] [INFO] cheese - inserting 1000 documents. first: Category:Project-Class Mexican-American articles and last: Category:2002 in South Dakota -[2018-02-13T08:29:09.510] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:29:09.513] [INFO] cheese - inserting 1000 documents. first: Template:Cleanup-spam/doc and last: MCAS Eagle Mountain Lake -[2018-02-13T08:29:09.580] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:29:09.583] [INFO] cheese - inserting 1000 documents. first: Carnosinase deficiency and last: Official Nationality -[2018-02-13T08:29:09.628] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2016 Summer Olympics – Women's Omnium and last: Lukas Schubert -[2018-02-13T08:29:09.646] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:29:09.704] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:29:09.800] [INFO] cheese - inserting 1000 documents. first: Sutura lambdoidea and last: Jiu Hua Shan -[2018-02-13T08:29:09.825] [INFO] cheese - inserting 1000 documents. first: Zuid-Willemsvaart and last: Category:2016 in Canadian music -[2018-02-13T08:29:09.873] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:29:09.919] [INFO] cheese - inserting 1000 documents. first: Template:Lang-ace and last: Flippin-Lodge -[2018-02-13T08:29:09.936] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:29:10.057] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:29:10.176] [INFO] cheese - inserting 1000 documents. first: Tree homomorphism and last: Col d'Andrion -[2018-02-13T08:29:10.181] [INFO] cheese - inserting 1000 documents. first: Category:2004 in South Dakota and last: Wikipedia:Articles for deletion/Secret Key Generation Via Wireless Channel Characterization -[2018-02-13T08:29:10.194] [INFO] cheese - inserting 1000 documents. first: Energies of God and last: Return To Castle Wolfenstein -[2018-02-13T08:29:10.225] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:29:10.263] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:29:10.281] [INFO] cheese - inserting 1000 documents. first: File:Soy el mismo royce.jpg and last: Brooklyn Library, Multnomah County -[2018-02-13T08:29:10.294] [INFO] cheese - inserting 1000 documents. first: Form genera and last: Kiichi! -[2018-02-13T08:29:10.337] [INFO] cheese - batch complete in: 1.456 secs -[2018-02-13T08:29:10.389] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:29:10.457] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:29:10.618] [INFO] cheese - inserting 1000 documents. first: KaloBios Pharmaceuticals and last: The Sultan of Johore -[2018-02-13T08:29:10.630] [INFO] cheese - inserting 1000 documents. first: Flippin Lodge and last: Tedi Sarafian -[2018-02-13T08:29:10.687] [INFO] cheese - inserting 1000 documents. first: The Little White Cloud That Cried and last: Army ranks of the Japanese Empire during World War II -[2018-02-13T08:29:10.695] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:29:10.708] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:29:10.780] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:29:10.791] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 1983–84 FA Cup 2R and last: Goldenspotted snake eel -[2018-02-13T08:29:10.851] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T08:29:10.926] [INFO] cheese - inserting 1000 documents. first: Mary Alcock and last: Freotfe4pda -[2018-02-13T08:29:10.935] [INFO] cheese - inserting 1000 documents. first: Zion Crossroads, Virginia and last: Prima Esposizione Internazionale d'Arte Decorativa Moderna -[2018-02-13T08:29:11.042] [INFO] cheese - inserting 1000 documents. first: 2011 World Judo Championships – Women's 63 kg and last: Hotot -[2018-02-13T08:29:11.049] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:29:11.073] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:29:11.183] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:29:11.244] [INFO] cheese - inserting 1000 documents. first: John Allum and last: Malpaso Company -[2018-02-13T08:29:11.315] [INFO] cheese - inserting 1000 documents. first: Der Sultan von Johore and last: Category:Members of fraternal orders -[2018-02-13T08:29:11.332] [INFO] cheese - inserting 1000 documents. first: MD 707 and last: Shire of Walloon -[2018-02-13T08:29:11.353] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:29:11.433] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:29:11.535] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:29:11.738] [INFO] cheese - inserting 1000 documents. first: List of minor planets/10701–10800 and last: New Era Academy -[2018-02-13T08:29:11.738] [INFO] cheese - inserting 1000 documents. first: RTCW and last: Phocoena -[2018-02-13T08:29:11.775] [INFO] cheese - inserting 1000 documents. first: Category:Education in Tanzania and last: Jonathan Lee Iverson -[2018-02-13T08:29:11.844] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:29:11.864] [INFO] cheese - inserting 1000 documents. first: Wikipedia:COATRACKING and last: Apollonia Museum (Libya) -[2018-02-13T08:29:11.869] [INFO] cheese - batch complete in: 1.531 secs -[2018-02-13T08:29:11.923] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Magic Wands and last: Warren, Oregon -[2018-02-13T08:29:11.923] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:29:12.006] [INFO] cheese - inserting 1000 documents. first: Kevin M. Beaver and last: File:Mohun Bagan A.C. Logo.png -[2018-02-13T08:29:12.109] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:29:12.194] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:29:12.199] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:29:12.239] [INFO] cheese - inserting 1000 documents. first: Savez za bolju budućnost BiH and last: Meja Road -[2018-02-13T08:29:12.287] [INFO] cheese - inserting 1000 documents. first: Walloon Division and last: File:Tossy Spivakovsky, Violinist.jpg -[2018-02-13T08:29:12.321] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:29:12.400] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:29:12.824] [INFO] cheese - inserting 1000 documents. first: Ilya Ganaba and last: First French empire -[2018-02-13T08:29:12.842] [INFO] cheese - inserting 1000 documents. first: Hurricane Dora (1999) and last: Kawaihae (band) -[2018-02-13T08:29:12.859] [INFO] cheese - inserting 1000 documents. first: Category:Reservoirs in St. Lawrence County, New York and last: Category:1900 disestablishments in the Netherlands -[2018-02-13T08:29:12.900] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:29:12.913] [INFO] cheese - inserting 1000 documents. first: Ungathered (Mormonism) and last: Category:Cities in Cobb County, Georgia -[2018-02-13T08:29:12.960] [INFO] cheese - inserting 1000 documents. first: Peter Mahon (judge) and last: Matt Peccini -[2018-02-13T08:29:12.981] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:29:12.990] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:29:13.017] [INFO] cheese - inserting 1000 documents. first: Replacement migration and last: Gozdni Joža -[2018-02-13T08:29:13.021] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:29:13.054] [INFO] cheese - inserting 1000 documents. first: Telemusik and last: Paco Clos -[2018-02-13T08:29:13.216] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:29:13.218] [INFO] cheese - batch complete in: 1.294 secs -[2018-02-13T08:29:13.212] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:29:13.537] [INFO] cheese - inserting 1000 documents. first: File:Clutter Nutters.png and last: Hitler's murder paradox -[2018-02-13T08:29:13.590] [INFO] cheese - inserting 1000 documents. first: Julia Maesa and last: Victoria Ka'iulani -[2018-02-13T08:29:13.601] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:29:13.626] [INFO] cheese - inserting 1000 documents. first: File:Brother to brother.jpg and last: Timebomb Records -[2018-02-13T08:29:13.648] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nyds-discographies.com and last: Free and Easy (1930 film) -[2018-02-13T08:29:13.689] [INFO] cheese - inserting 1000 documents. first: Category:1944 disestablishments in the Netherlands and last: The Buddenbrooks (film) -[2018-02-13T08:29:13.692] [INFO] cheese - inserting 1000 documents. first: King Kong (musician) and last: Mt. Data Shrew Rat -[2018-02-13T08:29:13.730] [INFO] cheese - batch complete in: 1.861 secs -[2018-02-13T08:29:13.746] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:29:13.765] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:29:13.777] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:29:13.794] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:29:13.839] [INFO] cheese - inserting 1000 documents. first: Fransisco Javier Clos Orozco and last: Marilyn Jean Buck -[2018-02-13T08:29:14.007] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:29:14.015] [INFO] cheese - inserting 1000 documents. first: David Follett and last: Wikipedia:Articles for deletion/Farrell Curry -[2018-02-13T08:29:14.137] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:29:14.271] [INFO] cheese - inserting 1000 documents. first: Category:Prime (New Zealand) programmes and last: QR Pedia -[2018-02-13T08:29:14.430] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:29:14.455] [INFO] cheese - inserting 1000 documents. first: Ernst Tognetti and last: Wikipedia:Miscellany for deletion/User:Splendidamente/sandbox -[2018-02-13T08:29:14.583] [INFO] cheese - inserting 1000 documents. first: International Buddhist Progress Society and last: Robert Black (auditor) -[2018-02-13T08:29:14.588] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:29:14.595] [INFO] cheese - inserting 1000 documents. first: Freddy Mullins and last: Category:UCLA Bruins athletic directors -[2018-02-13T08:29:14.669] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:29:14.698] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:29:14.788] [INFO] cheese - inserting 1000 documents. first: Dan Keplinger and last: Blue Agave -[2018-02-13T08:29:14.810] [INFO] cheese - inserting 1000 documents. first: Brown thomas and last: Mary Star of the Sea Catholic Church, San Pedro, California -[2018-02-13T08:29:14.873] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:29:14.928] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:29:15.002] [INFO] cheese - inserting 1000 documents. first: Category:Canadian freeskiers and last: Rory Read -[2018-02-13T08:29:15.096] [INFO] cheese - inserting 1000 documents. first: File:EllaSwingsBrightlywithNelson.jpg and last: Netherlands national basketball team -[2018-02-13T08:29:15.165] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:29:15.195] [INFO] cheese - inserting 1000 documents. first: Early modern demography and last: One Banded Snake eel -[2018-02-13T08:29:15.233] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:29:15.304] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:29:15.338] [INFO] cheese - inserting 1000 documents. first: 2000 in science and last: Walrein -[2018-02-13T08:29:15.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Stephen Barchan and last: Template:Equipe Matra Sports -[2018-02-13T08:29:15.415] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Apollo 17 (Eugene Cernan) and last: Kyeon Mi Ri -[2018-02-13T08:29:15.434] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:29:15.483] [INFO] cheese - batch complete in: 1.753 secs -[2018-02-13T08:29:15.547] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:29:15.617] [INFO] cheese - inserting 1000 documents. first: Treasure HD (Canada) and last: 2004 Taboo Tuesday -[2018-02-13T08:29:15.653] [INFO] cheese - inserting 1000 documents. first: Klash-n-krors and last: Template:Steely Dan -[2018-02-13T08:29:15.682] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:29:15.831] [INFO] cheese - inserting 1000 documents. first: Jean Tragodara and last: Category:Colorado Mammoth seasons -[2018-02-13T08:29:15.844] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:29:15.889] [INFO] cheese - inserting 1000 documents. first: One Banded snake Eel and last: MultiPar -[2018-02-13T08:29:15.986] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:29:16.005] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:29:16.042] [INFO] cheese - inserting 1000 documents. first: Highway 401-403-410 Bottleneck and last: Marisol Maldonado -[2018-02-13T08:29:16.085] [INFO] cheese - inserting 1000 documents. first: Jack Diamond (Casualty) and last: Category:Spinoza scholars -[2018-02-13T08:29:16.132] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:29:16.179] [INFO] cheese - inserting 1000 documents. first: Luke Tonkin and last: Portal:Solar System/Did you know/15 -[2018-02-13T08:29:16.354] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:29:16.450] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:29:16.514] [INFO] cheese - inserting 1000 documents. first: Margaret Blackwell and last: Buffalo and Lake Erie Traction Company -[2018-02-13T08:29:16.596] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:29:16.641] [INFO] cheese - inserting 1000 documents. first: Ian Richards (Judge) and last: List of Scheduled prehistoric Monuments in Carmarthenshire -[2018-02-13T08:29:16.684] [INFO] cheese - inserting 1000 documents. first: Category:Edmonton Rush seasons and last: Kurodasho Station -[2018-02-13T08:29:16.712] [INFO] cheese - inserting 1000 documents. first: Queen of Night and last: Kattappana -[2018-02-13T08:29:16.724] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:29:16.803] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:29:16.820] [INFO] cheese - inserting 1000 documents. first: Rosedale, Defiance County, Ohio and last: Ery Bos -[2018-02-13T08:29:16.860] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:29:16.919] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:29:16.986] [INFO] cheese - inserting 1000 documents. first: Mt Selinda High School and last: MacKenzie College -[2018-02-13T08:29:16.989] [INFO] cheese - inserting 1000 documents. first: Kecleon and last: Moleskin -[2018-02-13T08:29:17.004] [INFO] cheese - inserting 1000 documents. first: C. Delores Tucker and last: Jan Wlodarkiewicz -[2018-02-13T08:29:17.040] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:29:17.079] [INFO] cheese - batch complete in: 1.596 secs -[2018-02-13T08:29:17.109] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:29:17.150] [INFO] cheese - inserting 1000 documents. first: Category:NewYork–Presbyterian Hospital and last: Wikipedia:Styletips/19 -[2018-02-13T08:29:17.300] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:29:17.342] [INFO] cheese - inserting 1000 documents. first: File:Shorter University Athletics Logo.jpg and last: Waverley Bus Depot -[2018-02-13T08:29:17.412] [INFO] cheese - inserting 1000 documents. first: Sino-Tibetan relations during the Ming Dynasty and last: Smrkovsky -[2018-02-13T08:29:17.435] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:29:17.450] [INFO] cheese - inserting 1000 documents. first: Kwikwasut'inux First Nation and last: Lee–Fendall House -[2018-02-13T08:29:17.530] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:29:17.593] [INFO] cheese - inserting 1000 documents. first: Club Puebla Premier and last: Fountain Park, Ohio -[2018-02-13T08:29:17.601] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:29:17.664] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:17.685] [INFO] cheese - inserting 1000 documents. first: Stranger in Possum Meadows (The Twilight Zone) and last: Hau Hau -[2018-02-13T08:29:17.753] [INFO] cheese - inserting 1000 documents. first: RSJ and last: Queen Elizabeth Hospital (Hong Kong) -[2018-02-13T08:29:17.797] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:29:17.832] [INFO] cheese - inserting 1000 documents. first: Verkhnetoemskiy District and last: Wikipedia:Articles for deletion/Kulshreshtha -[2018-02-13T08:29:17.865] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:29:17.912] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:29:17.994] [INFO] cheese - inserting 1000 documents. first: Template:Jesuits in the Netherlands and last: Jordan Omley -[2018-02-13T08:29:18.083] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:29:18.095] [INFO] cheese - inserting 1000 documents. first: Ciara Sotto and last: Wikipedia:Categories for discussion/Log/2006 July 14 -[2018-02-13T08:29:18.105] [INFO] cheese - inserting 1000 documents. first: Łużyce, Otwock County and last: Goddess of Yesterday -[2018-02-13T08:29:18.148] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:29:18.186] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cunnilingus tongue and last: File:Kattu Roja Film .jpg -[2018-02-13T08:29:18.216] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:29:18.236] [INFO] cheese - inserting 1000 documents. first: John Stagliano and last: Bayside -[2018-02-13T08:29:18.310] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:29:18.414] [INFO] cheese - inserting 1000 documents. first: The Eurasia Foundation and last: Template:Extra chronology/doc -[2018-02-13T08:29:18.418] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:29:18.489] [INFO] cheese - inserting 1000 documents. first: Yaśovarman I and last: Template:WAFL EF -[2018-02-13T08:29:18.502] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:29:18.586] [INFO] cheese - inserting 1000 documents. first: Mike Mani and last: Template:YLeague MH -[2018-02-13T08:29:18.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2006 July 15 and last: Wikipedia:Categories for discussion/Log/2006 February 25 -[2018-02-13T08:29:18.648] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:29:18.712] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:29:18.780] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:29:18.813] [INFO] cheese - inserting 1000 documents. first: Houston merritt and last: Roman Catholic Diocese of Dubrovnik -[2018-02-13T08:29:18.931] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:29:19.024] [INFO] cheese - inserting 1000 documents. first: LA 30 and last: White Cloud (disambiguation) -[2018-02-13T08:29:19.063] [INFO] cheese - inserting 1000 documents. first: Category:Business in Egypt and last: Etmopterus benchleyi -[2018-02-13T08:29:19.123] [INFO] cheese - batch complete in: 0.907 secs -[2018-02-13T08:29:19.137] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:29:19.233] [INFO] cheese - inserting 1000 documents. first: Template:YLeague WSW and last: File:Mikael Gabriel - Mun maailma.jpg -[2018-02-13T08:29:19.234] [INFO] cheese - inserting 1000 documents. first: Vanguardia Popular Socialista and last: Harold Davies (disambiguation) -[2018-02-13T08:29:19.245] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2006 February 26 and last: Wikipedia:Peer review/Rensselaer Polytechnic Institute/archive1 -[2018-02-13T08:29:19.255] [INFO] cheese - inserting 1000 documents. first: Template:WAFL EP and last: Category:Coalfields of India -[2018-02-13T08:29:19.302] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:29:19.304] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:29:19.305] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:29:19.360] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:29:19.615] [INFO] cheese - inserting 1000 documents. first: File:BeatlesTwistanShoutSingle.jpg and last: Diplomonads -[2018-02-13T08:29:19.670] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:29:19.705] [INFO] cheese - inserting 1000 documents. first: Healthcare in Kuwait and last: Wikipedia:Administrators' noticeboard/3RRArchive303 -[2018-02-13T08:29:19.748] [INFO] cheese - inserting 1000 documents. first: Eskimo Limon and last: Qaleh Juq-e Pain -[2018-02-13T08:29:19.775] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:29:19.814] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:29:19.920] [INFO] cheese - inserting 1000 documents. first: Thanskgiving Day and last: Thomas Nuttall -[2018-02-13T08:29:19.933] [INFO] cheese - inserting 1000 documents. first: Bruguiera exaristata and last: Portal:Ecology/Selected biographies/23 -[2018-02-13T08:29:20.024] [INFO] cheese - inserting 1000 documents. first: Bemidji State Beavers men's ice hockey and last: Brewcaria brocchinioides -[2018-02-13T08:29:20.042] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:29:20.054] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Film/List of films without article/List of missing Chinese language Films and last: Hawk-dove game -[2018-02-13T08:29:20.059] [INFO] cheese - inserting 1000 documents. first: File:Swingstatesx.png and last: File:Dow jones.png -[2018-02-13T08:29:20.077] [INFO] cheese - batch complete in: 1.659 secs -[2018-02-13T08:29:20.122] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:29:20.134] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:29:20.179] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:29:20.302] [INFO] cheese - inserting 1000 documents. first: Benchmark (bourbon) and last: Turkey at the 2016 Summer Paralympics -[2018-02-13T08:29:20.342] [INFO] cheese - inserting 1000 documents. first: Magda Tagliafero and last: Death Banded Snake Eel -[2018-02-13T08:29:20.402] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:29:20.432] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:29:20.555] [INFO] cheese - inserting 1000 documents. first: Baileya (plant) and last: 79 Cancri -[2018-02-13T08:29:20.590] [INFO] cheese - inserting 1000 documents. first: Portal:Ecology/Selected biographies/24 and last: John Sinklo -[2018-02-13T08:29:20.625] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:29:20.646] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:29:20.688] [INFO] cheese - inserting 1000 documents. first: Tenniscoats and last: DVE -[2018-02-13T08:29:20.741] [INFO] cheese - inserting 1000 documents. first: École polytechnique fédérale de Lausanne and last: Category:Zonguldak Province -[2018-02-13T08:29:20.806] [INFO] cheese - inserting 1000 documents. first: Death Banded Snake eel and last: Portal:Aviation/Historical anniversaries/February in aviation/February 11 -[2018-02-13T08:29:20.806] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:29:20.862] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:29:20.904] [INFO] cheese - inserting 1000 documents. first: Brewcaria duidensis and last: Black Army Cutworm -[2018-02-13T08:29:20.954] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:29:21.087] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:29:21.122] [INFO] cheese - inserting 1000 documents. first: Michael Punke and last: Arnold Mærsk Møller -[2018-02-13T08:29:21.268] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:29:21.343] [INFO] cheese - inserting 1000 documents. first: Category:Baseball in Catalonia and last: File:Barnes and noble.jpg -[2018-02-13T08:29:21.406] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:29:21.497] [INFO] cheese - inserting 1000 documents. first: Category:Aksaray Province and last: Becky Bell -[2018-02-13T08:29:21.507] [INFO] cheese - inserting 1000 documents. first: 80 Cancri and last: Slogen -[2018-02-13T08:29:21.576] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Sioni Bolnisi and last: Graves AOC -[2018-02-13T08:29:21.588] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:29:21.607] [INFO] cheese - inserting 1000 documents. first: Arthur Helps and last: MediaWiki:Linktrail -[2018-02-13T08:29:21.657] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:29:21.683] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:29:21.717] [INFO] cheese - inserting 1000 documents. first: Portal:Aviation/Historical anniversaries/February in aviation/February 10 and last: Wikipedia:WikiProject Spam/Local/ishraqi.com -[2018-02-13T08:29:21.760] [INFO] cheese - inserting 1000 documents. first: Category:1793 in Oceania and last: Category:Battles and operations of the Vietnam War in 1968 -[2018-02-13T08:29:21.844] [INFO] cheese - inserting 1000 documents. first: Arnold Mærsk and last: Ed Schwager -[2018-02-13T08:29:21.872] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:29:21.886] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:29:21.899] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:29:21.915] [INFO] cheese - inserting 1000 documents. first: Category:College baseball venues by team in the United States and last: P. V. Rao -[2018-02-13T08:29:21.952] [INFO] cheese - batch complete in: 1.875 secs -[2018-02-13T08:29:22.071] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:29:22.455] [INFO] cheese - inserting 1000 documents. first: John Marlay and last: Category:Castles in Nottinghamshire -[2018-02-13T08:29:22.476] [INFO] cheese - inserting 1000 documents. first: Institute of History and Archaeology of the Baltic Region and last: 29 Squadron -[2018-02-13T08:29:22.485] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Belgian sculptors and last: Pyrmont, Albany -[2018-02-13T08:29:22.486] [INFO] cheese - inserting 1000 documents. first: Michael J. Lindell and last: Edgar Denis -[2018-02-13T08:29:22.519] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:29:22.550] [INFO] cheese - inserting 1000 documents. first: Peter Bruff and last: Bielaja Vieža -[2018-02-13T08:29:22.582] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:29:22.584] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:29:22.569] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:29:22.733] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:29:22.808] [INFO] cheese - inserting 1000 documents. first: Priozyorny District and last: The Wedding Camels -[2018-02-13T08:29:22.887] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:29:23.095] [INFO] cheese - inserting 1000 documents. first: 29th Squadron and last: Wikipedia:Articles for deletion/William Lauder (contractor) -[2018-02-13T08:29:23.113] [INFO] cheese - inserting 1000 documents. first: Category:Vallone family and last: Component reuse -[2018-02-13T08:29:23.156] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Wikititlesuffix and last: Brittas Empire -[2018-02-13T08:29:23.164] [INFO] cheese - inserting 1000 documents. first: Droplets (disambiguation) and last: 251st Battalion (Good Fellows), CEF -[2018-02-13T08:29:23.167] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:29:23.198] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:29:23.210] [INFO] cheese - inserting 1000 documents. first: Natukhai Adyghe dialect and last: Template:Canadian federal election, 2000/Saint-Maurice (electoral district) -[2018-02-13T08:29:23.253] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:29:23.289] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:29:23.345] [INFO] cheese - batch complete in: 1.392 secs -[2018-02-13T08:29:23.436] [INFO] cheese - inserting 1000 documents. first: Category:Vyškov District and last: Grianan of Aileach -[2018-02-13T08:29:23.458] [INFO] cheese - inserting 1000 documents. first: Krizhanich and last: APAV40 -[2018-02-13T08:29:23.621] [INFO] cheese - inserting 1000 documents. first: Template:State est decade cat/doc and last: Song of the Water -[2018-02-13T08:29:23.652] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:29:23.675] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:29:23.849] [INFO] cheese - batch complete in: 1.778 secs -[2018-02-13T08:29:23.964] [INFO] cheese - inserting 1000 documents. first: Utulei Youth and last: Maigret (2016 TV series) -[2018-02-13T08:29:24.027] [INFO] cheese - inserting 1000 documents. first: Elevated privilege and last: Category:Swiss media scholars -[2018-02-13T08:29:24.046] [INFO] cheese - inserting 1000 documents. first: Impereal and last: Paw Paw Township, Van Buren County, Michigan -[2018-02-13T08:29:24.067] [INFO] cheese - inserting 1000 documents. first: Template:Country data South Sudan and last: Beige People -[2018-02-13T08:29:24.068] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:29:24.091] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:29:24.195] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:29:24.222] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:29:24.254] [INFO] cheese - inserting 1000 documents. first: Content writing and last: List of guitarists considered the greatest -[2018-02-13T08:29:24.302] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:29:24.453] [INFO] cheese - inserting 1000 documents. first: Ressurection from the Dead and last: Shillappadikaram -[2018-02-13T08:29:24.624] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:29:24.651] [INFO] cheese - inserting 1000 documents. first: Template:User Roxbury Community College and last: Mountain of Despair -[2018-02-13T08:29:24.717] [INFO] cheese - inserting 1000 documents. first: Ministry of Finance (Tanzania) and last: Wikipedia:WikiProject Spam/LinkReports/ostratorphandelsplats.se -[2018-02-13T08:29:24.727] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:29:24.789] [INFO] cheese - inserting 1000 documents. first: Vladislaus II of Moravia and last: Temple Israel Center -[2018-02-13T08:29:24.794] [INFO] cheese - inserting 1000 documents. first: Pontypool United RFC and last: Political Quarterly -[2018-02-13T08:29:24.830] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:29:25.086] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:29:25.138] [INFO] cheese - inserting 1000 documents. first: Qasr al-Hayr al-Gharbî and last: Lindmania tillandsioides -[2018-02-13T08:29:25.029] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:29:25.212] [INFO] cheese - inserting 1000 documents. first: H. Wessely and last: Stéphane Zubar -[2018-02-13T08:29:25.218] [INFO] cheese - inserting 1000 documents. first: Saint Vincent de Paul and last: John Agyekum Kufuor -[2018-02-13T08:29:25.261] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:29:25.343] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:29:25.403] [INFO] cheese - batch complete in: 2.058 secs -[2018-02-13T08:29:25.566] [INFO] cheese - inserting 1000 documents. first: Factory acts and last: Square root of a matrix -[2018-02-13T08:29:25.613] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Trionychinae and last: Duisburg-Meiderich Süd station -[2018-02-13T08:29:25.645] [INFO] cheese - inserting 1000 documents. first: Dolgoma striata and last: Aqajan Kandi -[2018-02-13T08:29:25.664] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:29:25.693] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:29:25.710] [INFO] cheese - inserting 1000 documents. first: Category:Ridges of Arkansas and last: Miquelets de Catalunya -[2018-02-13T08:29:25.753] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:29:25.826] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:29:25.901] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 346 and last: Angela Baraquio Gray -[2018-02-13T08:29:25.903] [INFO] cheese - inserting 1000 documents. first: Brdo, Nova Gorica and last: GGSS -[2018-02-13T08:29:25.975] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/Selected article archive and last: Ajina-higashi Station -[2018-02-13T08:29:26.000] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:29:26.006] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:26.069] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:29:26.133] [INFO] cheese - inserting 1000 documents. first: Duisburg-Meiderich Ost station and last: Template:Taxonomy/Arrhinoceratops -[2018-02-13T08:29:26.189] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:29:26.282] [INFO] cheese - inserting 1000 documents. first: Baba Gar Gar, East Azerbaijan and last: Southfield, Staten Island -[2018-02-13T08:29:26.334] [INFO] cheese - inserting 1000 documents. first: Category:19th-century Spanish physicians and last: Category:Redirect-Class military historiography articles -[2018-02-13T08:29:26.423] [INFO] cheese - inserting 1000 documents. first: USS Atlantis (SP-40) and last: Wikipedia:Articles for deletion/Kyle Mina -[2018-02-13T08:29:26.432] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:29:26.518] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:29:26.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Ambulance/archive2 and last: Khivskiy District -[2018-02-13T08:29:26.630] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:29:26.695] [INFO] cheese - inserting 1000 documents. first: The Beast (comic books) and last: James I of Cyprus -[2018-02-13T08:29:26.700] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:29:26.706] [INFO] cheese - inserting 1000 documents. first: Johns Hopkins Applied Physics Laboratory and last: Icknield High School Arts College -[2018-02-13T08:29:26.779] [INFO] cheese - inserting 1000 documents. first: The Silent World: A Story of Undersea Discovery and Adventure and last: File:Vmail-Envelope.jpg -[2018-02-13T08:29:26.779] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:29:26.842] [INFO] cheese - batch complete in: 1.439 secs -[2018-02-13T08:29:26.857] [INFO] cheese - inserting 1000 documents. first: Tell Khardane and last: Category:Behabad County -[2018-02-13T08:29:26.880] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:29:27.022] [INFO] cheese - inserting 1000 documents. first: Calodesma itaitubae and last: Minister of Health, Labour and Welfare (Japan) -[2018-02-13T08:29:27.071] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:29:27.093] [INFO] cheese - inserting 1000 documents. first: Category:SIA-Class military historiography articles and last: Kerr, Robert -[2018-02-13T08:29:27.118] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:29:27.179] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:29:27.352] [INFO] cheese - inserting 1000 documents. first: USS Pawtucket (YTM-7) and last: Bolo (self-aware tank) -[2018-02-13T08:29:27.405] [INFO] cheese - inserting 1000 documents. first: Khivski District and last: Curly-hairs -[2018-02-13T08:29:27.430] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:29:27.490] [INFO] cheese - inserting 1000 documents. first: Andy Johnson (disambiguation) and last: Plymouth Charter Township, Wayne County, Michigan -[2018-02-13T08:29:27.586] [INFO] cheese - inserting 1000 documents. first: Canadian Council of Churches v Canada (Minister of Employment and Immigration) and last: Moedling -[2018-02-13T08:29:27.635] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:29:27.680] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:29:27.805] [INFO] cheese - inserting 1000 documents. first: 9x29mm and last: Pokemon Black + White -[2018-02-13T08:29:27.815] [INFO] cheese - inserting 1000 documents. first: Book:Wikipedia Signpost/2013-09-18 and last: Wikipedia:Articles for deletion/Gatestone Institute -[2018-02-13T08:29:27.814] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:29:27.911] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:29:27.936] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:29:28.085] [INFO] cheese - inserting 1000 documents. first: Key, Robert and last: Nuts of the uk -[2018-02-13T08:29:28.269] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:29:28.377] [INFO] cheese - inserting 1000 documents. first: Soeharto and last: Resona -[2018-02-13T08:29:28.411] [INFO] cheese - inserting 1000 documents. first: Route 40 (MTA Maryland) and last: Uno Per Tutte -[2018-02-13T08:29:28.473] [INFO] cheese - batch complete in: 1.631 secs -[2018-02-13T08:29:28.532] [INFO] cheese - inserting 1000 documents. first: Curlyhairs and last: Nolina interrata -[2018-02-13T08:29:28.545] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:29:28.625] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:29:28.684] [INFO] cheese - inserting 1000 documents. first: Moadamiyah and last: File:SuperClassGGundam.jpg -[2018-02-13T08:29:28.738] [INFO] cheese - inserting 1000 documents. first: Martin Dies Jr. State Park and last: Dendle's Wood SSSI -[2018-02-13T08:29:28.787] [INFO] cheese - inserting 1000 documents. first: Ishikawajima and last: Björn Nordqvist -[2018-02-13T08:29:28.794] [INFO] cheese - inserting 1000 documents. first: Neil Swarbrick and last: Rutherford Aris -[2018-02-13T08:29:28.797] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:29:28.831] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:29:28.910] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:29:28.940] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:29:29.016] [INFO] cheese - inserting 1000 documents. first: Regions of britain and last: 1926 Harvard Crimson football team -[2018-02-13T08:29:29.117] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:29:29.299] [INFO] cheese - inserting 1000 documents. first: Category:1978 in France and last: List of airports in Mauritius -[2018-02-13T08:29:29.390] [INFO] cheese - inserting 1000 documents. first: Claymore (G.I. Joe) and last: St. Louis hip hop -[2018-02-13T08:29:29.404] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/100 Sexiest Women in Comics and last: Xymmer -[2018-02-13T08:29:29.471] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:29:29.479] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:29:29.542] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:29:29.595] [INFO] cheese - inserting 1000 documents. first: Elachista levipes and last: Nuteni -[2018-02-13T08:29:29.675] [INFO] cheese - inserting 1000 documents. first: Quarterly Review of Wines and last: Wikipedia:Featured list candidates/List of Pittsburgh Steelers head coaches/archive1 -[2018-02-13T08:29:29.675] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:29:29.752] [INFO] cheese - inserting 1000 documents. first: Clinical Lycanthropy and last: Wikipedia:Articles for deletion/...Baby One More Time Tour -[2018-02-13T08:29:29.753] [INFO] cheese - inserting 1000 documents. first: Susan Fischer and last: Manithan Maravillai -[2018-02-13T08:29:29.769] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:29:29.840] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:29:29.845] [INFO] cheese - inserting 1000 documents. first: Onychomyrmex and last: Category:Professional wrestlers from Pennsylvania -[2018-02-13T08:29:29.863] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:29:29.907] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T08:29:29.962] [INFO] cheese - inserting 1000 documents. first: Resona impact and last: Allied Control Authority (ACA) -[2018-02-13T08:29:29.997] [INFO] cheese - inserting 1000 documents. first: Zumwalt-class destroyer (DDG-1000) and last: Atlantic Sun Men's Basketball Tournament venues -[2018-02-13T08:29:30.062] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:29:30.092] [INFO] cheese - batch complete in: 1.619 secs -[2018-02-13T08:29:30.103] [INFO] cheese - inserting 1000 documents. first: Laguna Merin and last: Polare -[2018-02-13T08:29:30.199] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:29:30.313] [INFO] cheese - inserting 1000 documents. first: V Raetorum and last: Pangaia -[2018-02-13T08:29:30.397] [INFO] cheese - inserting 1000 documents. first: Caquena Canton and last: Category:Disambig-Class Montana articles -[2018-02-13T08:29:30.399] [INFO] cheese - inserting 1000 documents. first: Cooper, Ohio and last: Men going their own way -[2018-02-13T08:29:30.401] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:29:30.480] [INFO] cheese - inserting 1000 documents. first: Iri-ye Sofla and last: Öffa bills -[2018-02-13T08:29:30.511] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:29:30.581] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:29:30.595] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:29:30.607] [INFO] cheese - inserting 1000 documents. first: Jacob H. Smith and last: Île aux Coudres Airport -[2018-02-13T08:29:30.711] [INFO] cheese - inserting 1000 documents. first: Template:Country data LIB and last: Koshehabl'sky Raion -[2018-02-13T08:29:30.720] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:29:30.762] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:29:31.066] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/projektmanagementhandbuch.de and last: Category:2010 in Uruguay -[2018-02-13T08:29:31.185] [INFO] cheese - inserting 1000 documents. first: William Mitchinson Hicks and last: Copani District -[2018-02-13T08:29:31.197] [INFO] cheese - inserting 1000 documents. first: Willard Erastus Christianson and last: Jesus in art -[2018-02-13T08:29:31.208] [INFO] cheese - batch complete in: 1.145 secs -[2018-02-13T08:29:31.285] [INFO] cheese - inserting 1000 documents. first: Koshehabl'skiy Raion and last: Template:Virginia-newspaper-stub -[2018-02-13T08:29:31.349] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:29:31.368] [INFO] cheese - inserting 1000 documents. first: Barrasso and last: NWA Television Championship (Tennessee) -[2018-02-13T08:29:31.421] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:29:31.496] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:29:31.509] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:29:31.667] [INFO] cheese - inserting 1000 documents. first: Akkrum and last: Wikipedia:Village pump/December 2003 archive 2 -[2018-02-13T08:29:31.761] [INFO] cheese - inserting 1000 documents. first: Category:Tasman rugby league team coaches and last: 1950–56 Pacific typhoon seasons -[2018-02-13T08:29:31.794] [INFO] cheese - inserting 1000 documents. first: Isle-aux-Grues Airport and last: Wikipedia:Articles for deletion/J.R. Hunter -[2018-02-13T08:29:31.896] [INFO] cheese - batch complete in: 1.804 secs -[2018-02-13T08:29:31.896] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:29:31.936] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:29:31.981] [INFO] cheese - inserting 1000 documents. first: Category:Galicia and last: Iona – Skeleton Coast Transfrontier Conservation Area -[2018-02-13T08:29:32.081] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:29:32.140] [INFO] cheese - inserting 1000 documents. first: Tyvon Branch and last: I Delmatarum -[2018-02-13T08:29:32.206] [INFO] cheese - inserting 1000 documents. first: Nikita Melnikov and last: Rostam Kandi -[2018-02-13T08:29:32.209] [INFO] cheese - inserting 1000 documents. first: Head tax (Canada) and last: Core (group) -[2018-02-13T08:29:32.236] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:29:32.303] [INFO] cheese - inserting 1000 documents. first: A1 Ring and last: RPI Observatory -[2018-02-13T08:29:32.315] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:29:32.332] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:29:32.417] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:29:32.586] [INFO] cheese - inserting 1000 documents. first: Sandara Park and last: De Troyes Chrétien -[2018-02-13T08:29:32.604] [INFO] cheese - inserting 1000 documents. first: Portal:Balochistan, Pakistan/WikiProjects and last: Colentina Bucureşti -[2018-02-13T08:29:32.632] [INFO] cheese - inserting 1000 documents. first: McArthur Glen Designer Outlet and last: State Route 537 -[2018-02-13T08:29:32.652] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:29:32.654] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:29:32.686] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:29:32.735] [INFO] cheese - inserting 1000 documents. first: Brethren World Assembly and last: Category:Wikipedia sockpuppets of Deathlibrarian -[2018-02-13T08:29:32.863] [INFO] cheese - inserting 1000 documents. first: Results of the Queensland state election, 1929 (L-Z) and last: Margaret Harkness -[2018-02-13T08:29:32.884] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:29:32.991] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Redirects for discussion/Log/2013 September 26 and last: Category:Squash tournaments in Thailand -[2018-02-13T08:29:33.000] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:29:33.002] [INFO] cheese - inserting 1000 documents. first: Cläven and last: Wood County Courthouse (West Virginia) -[2018-02-13T08:29:33.062] [INFO] cheese - inserting 1000 documents. first: State Highway 537 and last: SR878 -[2018-02-13T08:29:33.085] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:29:33.078] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:29:33.147] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:29:33.226] [INFO] cheese - inserting 1000 documents. first: Empress Entertainment Centre and last: Yanticaw -[2018-02-13T08:29:33.245] [INFO] cheese - inserting 1000 documents. first: Abolhassan Banisadr and last: Once & Again -[2018-02-13T08:29:33.329] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:29:33.356] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:29:33.368] [INFO] cheese - inserting 1000 documents. first: Sternothyroideus and last: Sir Paul Haddocks -[2018-02-13T08:29:33.465] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:29:33.523] [INFO] cheese - inserting 1000 documents. first: Crowdfind and last: Lockendes Gift -[2018-02-13T08:29:33.598] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sally Freud and last: Gravity (TV series) -[2018-02-13T08:29:33.628] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:29:33.678] [INFO] cheese - inserting 1000 documents. first: Cocks Biddulph and last: Qeshlaq-e Sowmeeh -[2018-02-13T08:29:33.719] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:29:33.752] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:29:33.764] [INFO] cheese - inserting 1000 documents. first: The Gas and the Clutch and last: List of Argentine films of the 2000s -[2018-02-13T08:29:33.809] [INFO] cheese - inserting 1000 documents. first: SH878 and last: Aircraft Braking Systems -[2018-02-13T08:29:33.879] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:29:33.919] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:29:33.945] [INFO] cheese - inserting 1000 documents. first: File:Miss u book cover.jpg and last: Category:Shahrud County -[2018-02-13T08:29:33.996] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:29:34.259] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Tala'ea El Geish and last: Ministry of Education, Ceylon -[2018-02-13T08:29:34.322] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:29:34.357] [INFO] cheese - inserting 1000 documents. first: Qush Qayahsi, Kaleybar and last: Sarijalu, East Azerbaijan -[2018-02-13T08:29:34.367] [INFO] cheese - inserting 1000 documents. first: Chris Luder and last: University of Maryland Law School -[2018-02-13T08:29:34.451] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:29:34.545] [INFO] cheese - inserting 1000 documents. first: Alcohol dependence syndrome and last: Wikipedia:WikiProject Spam/LinkReports/cuscotouristinformation.com -[2018-02-13T08:29:34.546] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:29:34.610] [INFO] cheese - inserting 1000 documents. first: Alternate reality (disambiguation) and last: St. Eustorgio -[2018-02-13T08:29:34.623] [INFO] cheese - inserting 1000 documents. first: Thierry of Freburg and last: Lee Jong-wook (baseball) -[2018-02-13T08:29:34.653] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:29:34.688] [INFO] cheese - inserting 1000 documents. first: Category:School districts in Cochran County, Texas and last: Template:Canadian federal election, 1984/Bourassa -[2018-02-13T08:29:34.703] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:29:34.749] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:29:34.836] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:29:34.933] [INFO] cheese - inserting 1000 documents. first: Honours of the Principality of Wales and last: Charolais cattle -[2018-02-13T08:29:34.943] [INFO] cheese - inserting 1000 documents. first: Yuraqmayu (Lima) and last: Herbert, Alan -[2018-02-13T08:29:34.971] [INFO] cheese - inserting 1000 documents. first: Sari Jallu and last: Pacific Snake eel -[2018-02-13T08:29:35.013] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:29:35.058] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:29:35.065] [INFO] cheese - batch complete in: 1.709 secs -[2018-02-13T08:29:35.246] [INFO] cheese - inserting 1000 documents. first: Diego Hurtado de Mendoza, 2nd Marquis of Cañete and last: Pseudoconversational transaction -[2018-02-13T08:29:35.251] [INFO] cheese - inserting 1000 documents. first: Crosby stills nash young and last: Jackson 5 Record Sales -[2018-02-13T08:29:35.309] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:29:35.337] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:29:35.350] [INFO] cheese - inserting 1000 documents. first: List of parks in Delhi and last: Roger de Mowbray, 1st Baron Mowbray -[2018-02-13T08:29:35.452] [INFO] cheese - inserting 1000 documents. first: Non-covalent interaction and last: Category:American college sports infobox templates -[2018-02-13T08:29:35.453] [INFO] cheese - inserting 1000 documents. first: Hoffman, Alan and last: Anatomical terms of neuroanatomy -[2018-02-13T08:29:35.462] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:29:35.482] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:29:35.539] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:29:35.645] [INFO] cheese - inserting 1000 documents. first: Centennial F.C. and last: Template:HD/c -[2018-02-13T08:29:35.701] [INFO] cheese - inserting 1000 documents. first: Pacific snake Eel and last: Embalse de Puente Nuevo -[2018-02-13T08:29:35.749] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:29:35.867] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:29:36.019] [INFO] cheese - inserting 1000 documents. first: Erectile impotence and last: Masaaki Kozu -[2018-02-13T08:29:36.060] [INFO] cheese - inserting 1000 documents. first: Category:NCAA Division I wrestling by conference navigational boxes and last: きんさんぎんさん -[2018-02-13T08:29:36.072] [INFO] cheese - inserting 1000 documents. first: J. C. MacKenzie and last: Adam's needle -[2018-02-13T08:29:36.153] [INFO] cheese - inserting 1000 documents. first: Category:1975 murals and last: Fowler, George -[2018-02-13T08:29:36.170] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:29:36.197] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:29:36.214] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:29:36.233] [INFO] cheese - inserting 1000 documents. first: Sci-fi (tv channel) and last: National Unity (Peru) -[2018-02-13T08:29:36.314] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:29:36.368] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:29:36.505] [INFO] cheese - inserting 1000 documents. first: Isador Cortez and last: Hacıhalil -[2018-02-13T08:29:36.547] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:29:36.565] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Cities articles needing infoboxes and last: UC-35B -[2018-02-13T08:29:36.589] [INFO] cheese - inserting 1000 documents. first: Conservations and last: Admirals Men -[2018-02-13T08:29:36.666] [INFO] cheese - batch complete in: 1.203 secs -[2018-02-13T08:29:36.676] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:29:36.746] [INFO] cheese - inserting 1000 documents. first: US Initial Post-Surrender Policy for Japan and last: Old Man on His Back Prairie and Heritage Conservation Area -[2018-02-13T08:29:36.790] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:29:36.847] [INFO] cheese - inserting 1000 documents. first: Phil Hinkle and last: Category:Lausitzer Füchse players -[2018-02-13T08:29:36.900] [INFO] cheese - inserting 1000 documents. first: À Tout le Monde and last: Template:RNLI lifeboat classes -[2018-02-13T08:29:36.905] [INFO] cheese - inserting 1000 documents. first: Fraser, George and last: Mohra Gujarn -[2018-02-13T08:29:36.979] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:29:37.033] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:29:37.041] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:29:37.064] [INFO] cheese - inserting 1000 documents. first: Franco-Spanish War (1595–98) and last: Black spotted snake Eel -[2018-02-13T08:29:37.120] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:29:37.404] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Treaty between the Netherlands and Ahanta 1656/archive1 and last: St. Theobald -[2018-02-13T08:29:37.453] [INFO] cheese - inserting 1000 documents. first: Next Montenegrin parliamentary election and last: 1111 (year) -[2018-02-13T08:29:37.478] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:29:37.501] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:29:37.504] [INFO] cheese - inserting 1000 documents. first: Fizis and last: Junikowo -[2018-02-13T08:29:37.586] [INFO] cheese - inserting 1000 documents. first: Pseudodrephalys hypargos and last: Mix 1011 -[2018-02-13T08:29:37.593] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:29:37.704] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:29:37.729] [INFO] cheese - inserting 1000 documents. first: 1110 (year) and last: 142 (year) -[2018-02-13T08:29:37.749] [INFO] cheese - batch complete in: 0.271 secs -[2018-02-13T08:29:37.753] [INFO] cheese - inserting 1000 documents. first: Black Spotted snake eel and last: File:Genesis Prize logo.png -[2018-02-13T08:29:37.785] [INFO] cheese - inserting 1000 documents. first: Unidad Nacional and last: Cherokee Indian Normal School of Robeson County -[2018-02-13T08:29:37.859] [INFO] cheese - inserting 1000 documents. first: File:Brechin City FC logo.svg and last: Hawker Siddeley Trident 3B -[2018-02-13T08:29:37.944] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:29:37.955] [INFO] cheese - batch complete in: 1.586 secs -[2018-02-13T08:29:37.977] [INFO] cheese - inserting 1000 documents. first: Cda and last: R.G. Willis -[2018-02-13T08:29:37.984] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:29:38.099] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:29:38.212] [INFO] cheese - inserting 1000 documents. first: 141 (year) and last: Year 1444 -[2018-02-13T08:29:38.216] [INFO] cheese - inserting 1000 documents. first: Town drunks and last: Wikipedia:Good article reassessment/Thomas Cranmer/1 -[2018-02-13T08:29:38.243] [INFO] cheese - inserting 1000 documents. first: Calophasidia radiata and last: Beachwood (disambiguation) -[2018-02-13T08:29:38.254] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T08:29:38.304] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:29:38.315] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:29:38.465] [INFO] cheese - inserting 1000 documents. first: Thirumalai Nayakkar Mahal and last: Bushwick Leaders High School for Academic Excellence -[2018-02-13T08:29:38.474] [INFO] cheese - inserting 1000 documents. first: Year 1443 and last: Year 462 -[2018-02-13T08:29:38.502] [INFO] cheese - inserting 1000 documents. first: G/M/1 queue and last: Wikipedia:Articles for deletion/Anthony Tat -[2018-02-13T08:29:38.518] [INFO] cheese - batch complete in: 0.262 secs -[2018-02-13T08:29:38.543] [INFO] cheese - inserting 1000 documents. first: Boeing 777-236ER and last: Frankfurt (Main) Hbf station -[2018-02-13T08:29:38.553] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:29:38.601] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:29:38.654] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:29:38.886] [INFO] cheese - inserting 1000 documents. first: Year 461 and last: Nicol Stephen, Baron Stephen -[2018-02-13T08:29:38.913] [INFO] cheese - inserting 1000 documents. first: KTEQ-FM and last: Moondog Spot -[2018-02-13T08:29:38.923] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T08:29:38.984] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by Bernie Marsden and last: Thomas Adamson (master gunner) -[2018-02-13T08:29:38.987] [INFO] cheese - inserting 1000 documents. first: Bshift and last: Thixomolding -[2018-02-13T08:29:39.059] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:29:39.117] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:29:39.198] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:29:39.238] [INFO] cheese - inserting 1000 documents. first: Portal:University of Pittsburgh/On this day/September 28 and last: Category:Moveable holidays (Christmas date based) -[2018-02-13T08:29:39.261] [INFO] cheese - inserting 1000 documents. first: Bootable disc and last: Hilary Barte -[2018-02-13T08:29:39.270] [INFO] cheese - inserting 1000 documents. first: Sakaigawa Namiemon and last: Playmo -[2018-02-13T08:29:39.307] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:29:39.334] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:29:39.452] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:29:39.666] [INFO] cheese - inserting 1000 documents. first: Pembroke State College for Indians and last: Cambyses I -[2018-02-13T08:29:39.751] [INFO] cheese - inserting 1000 documents. first: Stoke, England and last: List of UK Dance Chart number-one singles of 2008 -[2018-02-13T08:29:39.790] [INFO] cheese - inserting 1000 documents. first: International Border and last: Service-learning in engineering education -[2018-02-13T08:29:39.774] [INFO] cheese - batch complete in: 1.819 secs -[2018-02-13T08:29:39.911] [INFO] cheese - inserting 1000 documents. first: Sue Weinlein Cook and last: Cuckoo (song) -[2018-02-13T08:29:39.979] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:29:40.082] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:29:40.091] [INFO] cheese - inserting 1000 documents. first: Daniel Lieberman and last: Daniel Rocha -[2018-02-13T08:29:40.202] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:29:40.220] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:29:40.281] [INFO] cheese - inserting 1000 documents. first: RPL35 and last: Joanna Cotten -[2018-02-13T08:29:40.287] [INFO] cheese - inserting 1000 documents. first: John T. Schuessler and last: Experimental Radio Station Eberswalde -[2018-02-13T08:29:40.379] [INFO] cheese - inserting 1000 documents. first: Belthorn and last: Wikipedia:Articles for deletion/Stuffed article -[2018-02-13T08:29:40.433] [INFO] cheese - batch complete in: 1.315 secs -[2018-02-13T08:29:40.458] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:29:40.491] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:29:40.813] [INFO] cheese - inserting 1000 documents. first: File:Charles A. Sprague Oregon Governor.jpg and last: Template:WikiProject University of Oxford/class -[2018-02-13T08:29:40.842] [INFO] cheese - inserting 1000 documents. first: File:Barbra Streisand & Kim Carnes - Make No Mistake, He's Mine.jpg and last: File:Scuderia Toro Rosso Powered by Cosworth.png -[2018-02-13T08:29:40.870] [INFO] cheese - inserting 1000 documents. first: Cohen's horseshoe bat and last: A.S.D. Città di Marino Calcio -[2018-02-13T08:29:40.932] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:29:40.941] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Animation/Hanna-Barbera work group/Participants and last: Shotwell Hall, West Liberty State College -[2018-02-13T08:29:40.953] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:29:40.963] [INFO] cheese - inserting 1000 documents. first: Nell Hodgson Woodruff School of Nursing and last: University city loop -[2018-02-13T08:29:40.981] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:29:41.049] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:29:41.101] [INFO] cheese - inserting 1000 documents. first: Template:Scotland-stub and last: Z-Saber -[2018-02-13T08:29:41.163] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:29:41.282] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:29:41.452] [INFO] cheese - inserting 1000 documents. first: Yengejeh-ye Yaranmish and last: Arnoldius -[2018-02-13T08:29:41.487] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:29:41.503] [INFO] cheese - inserting 1000 documents. first: Teneliximab and last: Wikipedia:Articles for deletion/Academic Citizenship -[2018-02-13T08:29:41.567] [INFO] cheese - inserting 1000 documents. first: Yuki Tanaka (historian) and last: Pigeon Hill, New Brunswick -[2018-02-13T08:29:41.647] [INFO] cheese - inserting 1000 documents. first: Réunion ibis and last: Worker-communist Party of Iraq -[2018-02-13T08:29:41.681] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:29:41.708] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:29:41.764] [INFO] cheese - inserting 1000 documents. first: Hans Frangenheim and last: Davit Usupashvili -[2018-02-13T08:29:41.785] [INFO] cheese - inserting 1000 documents. first: Template:Unendorsed Labour candidates, 1931/meta/color and last: Axmed Gaab -[2018-02-13T08:29:41.922] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:29:41.925] [INFO] cheese - inserting 1000 documents. first: First period of World War II and last: List of Italian films of 1912 -[2018-02-13T08:29:41.942] [INFO] cheese - batch complete in: 2.168 secs -[2018-02-13T08:29:41.984] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:29:42.116] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:29:42.290] [INFO] cheese - inserting 1000 documents. first: Junge Freiheit and last: CBC Museum -[2018-02-13T08:29:42.458] [INFO] cheese - inserting 1000 documents. first: Timothy A. Kinnan and last: Michael McCarthy (politician) -[2018-02-13T08:29:42.464] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:29:42.479] [INFO] cheese - inserting 1000 documents. first: Category:Czech-American culture in Washington, D.C. and last: File:PebbleBeachnoHotouJPBoxShot.jpg -[2018-02-13T08:29:42.482] [INFO] cheese - inserting 1000 documents. first: 1984 British Touring Car Championship season and last: Darlington, Prince Edward Island -[2018-02-13T08:29:42.575] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:29:42.602] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:29:42.614] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:29:42.674] [INFO] cheese - inserting 1000 documents. first: Category:American music-related lists and last: Wikipedia:Articles for deletion/2015 Gothenburg pub shooting (2nd nomination) -[2018-02-13T08:29:42.715] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mo-germans.com and last: Stephen Halpin -[2018-02-13T08:29:42.816] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:29:42.855] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:29:43.068] [INFO] cheese - inserting 1000 documents. first: Pramac and last: Echarate District -[2018-02-13T08:29:43.214] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:29:43.448] [INFO] cheese - inserting 1000 documents. first: Aaahh! Real Monsters and last: 150 Mile House -[2018-02-13T08:29:43.457] [INFO] cheese - inserting 1000 documents. first: Pornography and Violence in the Communications Media and last: Shivyar, Meyaneh -[2018-02-13T08:29:43.488] [INFO] cheese - inserting 1000 documents. first: Silicious and last: Rudolf Heinze -[2018-02-13T08:29:43.537] [INFO] cheese - inserting 1000 documents. first: Sunbeam Products, Inc. and last: Zeitschrift für englische Philologie -[2018-02-13T08:29:43.551] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:29:43.652] [INFO] cheese - batch complete in: 1.188 secs -[2018-02-13T08:29:43.653] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:29:43.739] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:29:43.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Correllian Nativist Tradition and last: Category:2016 in aviation -[2018-02-13T08:29:43.973] [INFO] cheese - inserting 1000 documents. first: Richard Beatniffe and last: File:Bethesda Hospital.jpg -[2018-02-13T08:29:44.005] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:29:44.172] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:29:44.202] [INFO] cheese - inserting 1000 documents. first: Candida dubliniensis and last: Michelle Thomas -[2018-02-13T08:29:44.350] [INFO] cheese - batch complete in: 2.408 secs -[2018-02-13T08:29:44.535] [INFO] cheese - inserting 1000 documents. first: Calorie per hour and last: The Man Who Was Dead -[2018-02-13T08:29:44.610] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:29:44.641] [INFO] cheese - inserting 1000 documents. first: Category:Free jazz trombonists and last: Eric Genden -[2018-02-13T08:29:44.737] [INFO] cheese - inserting 1000 documents. first: Zoraxe and last: Category:Maccabi Herzliya F.C. players -[2018-02-13T08:29:44.921] [INFO] cheese - batch complete in: 1.707 secs -[2018-02-13T08:29:45.030] [INFO] cheese - batch complete in: 1.479 secs -[2018-02-13T08:29:45.079] [INFO] cheese - inserting 1000 documents. first: Something Something Something Dark Side and last: Denis McBride (rugby footballer) -[2018-02-13T08:29:45.081] [INFO] cheese - inserting 1000 documents. first: Keith, Bill and last: NJCC -[2018-02-13T08:29:45.092] [INFO] cheese - inserting 1000 documents. first: Connellan Airport and last: The Politicians -[2018-02-13T08:29:45.203] [INFO] cheese - inserting 1000 documents. first: HanDover (album) and last: Magnolia Award -[2018-02-13T08:29:45.202] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:29:45.214] [INFO] cheese - batch complete in: 1.474 secs -[2018-02-13T08:29:45.296] [INFO] cheese - batch complete in: 1.644 secs -[2018-02-13T08:29:45.384] [INFO] cheese - inserting 1000 documents. first: List of Dipper's Guide to the Unexplained episodes and last: Category:2011 disestablishments in Croatia -[2018-02-13T08:29:45.402] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:29:45.512] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:29:45.778] [INFO] cheese - inserting 1000 documents. first: 205 Signal Squadron and last: Indigen -[2018-02-13T08:29:45.907] [INFO] cheese - inserting 1000 documents. first: Lamp Black and last: Sorède -[2018-02-13T08:29:45.937] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:29:46.061] [INFO] cheese - inserting 1000 documents. first: Government spin-off and last: Deanne Lundin -[2018-02-13T08:29:46.101] [INFO] cheese - inserting 1000 documents. first: Views (album) and last: Egypt, Belmont County, Ohio -[2018-02-13T08:29:46.119] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:29:46.279] [INFO] cheese - inserting 1000 documents. first: Antoan Richardson and last: Jeff Wayne's Video Game Version of The War of the Worlds -[2018-02-13T08:29:46.317] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:29:46.328] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:29:46.453] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:29:46.480] [INFO] cheese - inserting 1000 documents. first: Category:Cabinets disestablished in 2011 and last: Lowry Auxiliary Landing Field -[2018-02-13T08:29:46.499] [INFO] cheese - inserting 1000 documents. first: Goldfrapp Discography and last: Naruto Ninja Council -[2018-02-13T08:29:46.600] [INFO] cheese - inserting 1000 documents. first: Janata Dal (United) and last: Islamic Republic of Iran Air Force -[2018-02-13T08:29:46.714] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T08:29:46.739] [INFO] cheese - batch complete in: 1.442 secs -[2018-02-13T08:29:46.972] [INFO] cheese - batch complete in: 2.622 secs -[2018-02-13T08:29:47.098] [INFO] cheese - inserting 1000 documents. first: Frank Bourne and last: Template:Localities in Svenljunga Municipality -[2018-02-13T08:29:47.193] [INFO] cheese - inserting 1000 documents. first: Managed mobility services and last: Dirk Balster -[2018-02-13T08:29:47.240] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:29:47.344] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:29:47.482] [INFO] cheese - inserting 1000 documents. first: File:Car & Boat Storage.jpg and last: List of airports in the United Arab Emirates -[2018-02-13T08:29:47.548] [INFO] cheese - inserting 1000 documents. first: Vino Novello and last: File:Patanjali yogpeeth residendialbldg.jpg -[2018-02-13T08:29:47.688] [INFO] cheese - inserting 1000 documents. first: Sree Narayana Poly (S.N.Poly) Technic College (S.N.P.T.C) and last: File:DINA S.A. logo.png -[2018-02-13T08:29:47.703] [INFO] cheese - inserting 1000 documents. first: Governor of Gaza and last: Boxing at the 1998 Asian Games – Men's +91 kg -[2018-02-13T08:29:47.701] [INFO] cheese - batch complete in: 1.581 secs -[2018-02-13T08:29:47.790] [INFO] cheese - batch complete in: 1.473 secs -[2018-02-13T08:29:47.906] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:29:47.960] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:29:48.239] [INFO] cheese - inserting 1000 documents. first: James Wilson Henderson and last: Best of Friends -[2018-02-13T08:29:48.547] [INFO] cheese - batch complete in: 1.808 secs -[2018-02-13T08:29:48.565] [INFO] cheese - inserting 1000 documents. first: Huacracocha and last: Portal:New York Roads/Selected article/January 2016 -[2018-02-13T08:29:48.723] [INFO] cheese - inserting 1000 documents. first: Anne Bourchier, Baroness Dacre and last: Reyhan Arabacioglu -[2018-02-13T08:29:48.762] [INFO] cheese - inserting 1000 documents. first: Template:Localities in Säffle Municipality and last: Allowance for bad debts -[2018-02-13T08:29:48.883] [INFO] cheese - batch complete in: 1.539 secs -[2018-02-13T08:29:48.920] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:29:49.069] [INFO] cheese - batch complete in: 1.828 secs -[2018-02-13T08:29:49.068] [INFO] cheese - inserting 1000 documents. first: Katnappe (Xiaolin Showdown) and last: Kausambi -[2018-02-13T08:29:49.268] [INFO] cheese - inserting 1000 documents. first: FYFT G-series unmanned blimp and last: Thayet War Cemetery -[2018-02-13T08:29:49.406] [INFO] cheese - batch complete in: 1.705 secs -[2018-02-13T08:29:49.424] [INFO] cheese - inserting 1000 documents. first: Air Forces and last: Autonomous prefecture -[2018-02-13T08:29:49.582] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Bots/Requests for approval/IABot and last: Yeşilçiftlik, Sultandağı -[2018-02-13T08:29:49.596] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T08:29:49.742] [INFO] cheese - batch complete in: 2.77 secs -[2018-02-13T08:29:49.825] [INFO] cheese - batch complete in: 1.918 secs -[2018-02-13T08:29:49.831] [INFO] cheese - inserting 1000 documents. first: Gorsafawddachaidraigodanheddogleddollonpenrhynareurdraethceredigion and last: VW Touareg -[2018-02-13T08:29:50.025] [INFO] cheese - inserting 1000 documents. first: Template:Socialist Left Party (Norway)/meta/color and last: Gara Gara Go! -[2018-02-13T08:29:50.064] [INFO] cheese - batch complete in: 1.517 secs -[2018-02-13T08:29:50.073] [INFO] cheese - inserting 1000 documents. first: Category:Former states and territories by country and last: Kangson Station -[2018-02-13T08:29:50.164] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:29:50.227] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:29:50.477] [INFO] cheese - inserting 1000 documents. first: John C. Reed and last: Category:National Historic Sites in North Carolina -[2018-02-13T08:29:50.599] [INFO] cheese - inserting 1000 documents. first: James E Strates Midways and last: Lim Gi-han -[2018-02-13T08:29:50.717] [INFO] cheese - batch complete in: 1.648 secs -[2018-02-13T08:29:50.718] [INFO] cheese - inserting 1000 documents. first: Template:Miss World Continental Queen of Beauty titleholders 2013 and last: 1935 International Cross Country Championships -[2018-02-13T08:29:50.851] [INFO] cheese - batch complete in: 1.441 secs -[2018-02-13T08:29:50.969] [INFO] cheese - inserting 1000 documents. first: Çamözü, Sultandağı and last: My Little Funhouse -[2018-02-13T08:29:51.037] [INFO] cheese - batch complete in: 1.441 secs -[2018-02-13T08:29:51.194] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:29:51.210] [INFO] cheese - inserting 1000 documents. first: File:The Byrds - Eight Miles High Why.jpg and last: Seventh Commandment -[2018-02-13T08:29:51.393] [INFO] cheese - inserting 1000 documents. first: Tarek Kamel and last: Tom zbikowski -[2018-02-13T08:29:51.399] [INFO] cheese - inserting 1000 documents. first: Franz Joseph Toussaint and last: Category:Korean Broadcasting System people -[2018-02-13T08:29:51.478] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:29:51.591] [INFO] cheese - batch complete in: 1.527 secs -[2018-02-13T08:29:51.653] [INFO] cheese - batch complete in: 1.489 secs -[2018-02-13T08:29:51.915] [INFO] cheese - inserting 1000 documents. first: Turo's Hevi Gee and last: A5M Claude -[2018-02-13T08:29:51.970] [INFO] cheese - inserting 1000 documents. first: Sira' Fi al-Wady and last: Artificial neural membrane -[2018-02-13T08:29:52.053] [INFO] cheese - batch complete in: 1.335 secs -[2018-02-13T08:29:52.120] [INFO] cheese - inserting 1000 documents. first: Lewis Leonard Forman and last: Wikipedia:Today's featured article/October 11, 2013 -[2018-02-13T08:29:52.149] [INFO] cheese - batch complete in: 1.297 secs -[2018-02-13T08:29:52.291] [INFO] cheese - inserting 1000 documents. first: Ed Boyd and last: Category:Census-designated places in Washington County, Pennsylvania -[2018-02-13T08:29:52.339] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:29:52.354] [INFO] cheese - inserting 1000 documents. first: Bagram Airbase and last: Cynog Dafis -[2018-02-13T08:29:52.452] [INFO] cheese - inserting 1000 documents. first: Grey Flesh Fly and last: Joe Togher -[2018-02-13T08:29:52.486] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Freefall 3050 A.D. and last: Molecular similarity -[2018-02-13T08:29:52.503] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:29:52.630] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:29:52.651] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:29:52.850] [INFO] cheese - batch complete in: 3.108 secs -[2018-02-13T08:29:53.078] [INFO] cheese - inserting 1000 documents. first: R. v. Morgentaler (1988) and last: Agnes Water -[2018-02-13T08:29:53.250] [INFO] cheese - batch complete in: 1.659 secs -[2018-02-13T08:29:53.478] [INFO] cheese - inserting 1000 documents. first: Women in Arab societies and last: KSTO -[2018-02-13T08:29:53.491] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Disambiguation pages with links/October 2013 and last: 1936 International Cross Country Championships -[2018-02-13T08:29:53.824] [INFO] cheese - batch complete in: 1.485 secs -[2018-02-13T08:29:53.827] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:29:53.939] [INFO] cheese - inserting 1000 documents. first: Embassy of the United States in Manila and last: Maxim Yeliseev -[2018-02-13T08:29:53.953] [INFO] cheese - inserting 1000 documents. first: Behavioral trap and last: Jake Jarmel -[2018-02-13T08:29:54.012] [INFO] cheese - inserting 1000 documents. first: Jerome Erceau and last: File:International Journal Of Biochemistry And Cell Biology Cover.gif -[2018-02-13T08:29:54.180] [INFO] cheese - batch complete in: 1.677 secs -[2018-02-13T08:29:54.184] [INFO] cheese - inserting 1000 documents. first: Bus Bustami and last: Appolstory -[2018-02-13T08:29:54.236] [INFO] cheese - batch complete in: 1.585 secs -[2018-02-13T08:29:54.425] [INFO] cheese - batch complete in: 2.372 secs -[2018-02-13T08:29:54.433] [INFO] cheese - batch complete in: 1.802 secs -[2018-02-13T08:29:54.759] [INFO] cheese - inserting 1000 documents. first: Template:Expert review and last: Golujeh-ye Eslam -[2018-02-13T08:29:54.853] [INFO] cheese - inserting 1000 documents. first: John III, Count of Holstein-Plön and last: FCIC -[2018-02-13T08:29:54.888] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:29:55.093] [INFO] cheese - batch complete in: 1.839 secs -[2018-02-13T08:29:55.108] [INFO] cheese - inserting 1000 documents. first: Perryville Battlefield State Historic Site and last: FC Saarbrucken -[2018-02-13T08:29:55.203] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:29:55.272] [INFO] cheese - inserting 1000 documents. first: Upholstory and last: AD 1708 -[2018-02-13T08:29:55.393] [INFO] cheese - inserting 1000 documents. first: (11902) 1991 PZ12 and last: ProFe Duo Banjo -[2018-02-13T08:29:55.402] [INFO] cheese - inserting 1000 documents. first: List of Futari wa Pretty Cure Splash Star episodes and last: Théatre du Chatelet -[2018-02-13T08:29:55.504] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:29:55.565] [INFO] cheese - inserting 1000 documents. first: Heinrich IX and last: Batang Hari Regency -[2018-02-13T08:29:55.633] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:29:55.700] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:29:55.802] [INFO] cheese - batch complete in: 1.377 secs -[2018-02-13T08:29:55.806] [INFO] cheese - inserting 1000 documents. first: AD 1707 and last: AD 721 -[2018-02-13T08:29:55.952] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:29:56.209] [INFO] cheese - inserting 1000 documents. first: Blackburnian warbler and last: ZFV -[2018-02-13T08:29:56.288] [INFO] cheese - inserting 1000 documents. first: Gavanlu, East Azerbaijan and last: Juliper League -[2018-02-13T08:29:56.341] [INFO] cheese - inserting 1000 documents. first: After Burner: Black Falcon and last: Geronimo de Ghinucci -[2018-02-13T08:29:56.342] [INFO] cheese - inserting 1000 documents. first: AD 720 and last: AD 151 -[2018-02-13T08:29:56.374] [INFO] cheese - inserting 1000 documents. first: JoJo White and last: Altocumulus -[2018-02-13T08:29:56.378] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T08:29:56.551] [INFO] cheese - inserting 1000 documents. first: ProFe BanjoMH and last: Aly Ibrahim -[2018-02-13T08:29:56.657] [INFO] cheese - batch complete in: 1.769 secs -[2018-02-13T08:29:56.659] [INFO] cheese - batch complete in: 1.566 secs -[2018-02-13T08:29:56.782] [INFO] cheese - batch complete in: 1.578 secs -[2018-02-13T08:29:56.794] [INFO] cheese - batch complete in: 3.935 secs -[2018-02-13T08:29:56.890] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:29:57.076] [INFO] cheese - inserting 1000 documents. first: Giorgio van Straten and last: San Francisco de Cayrán District -[2018-02-13T08:29:57.106] [INFO] cheese - inserting 1000 documents. first: Captain Falcon (video game character) and last: Wikipedia:WikiProject Spam/LinkReports/ccitoamasina.org -[2018-02-13T08:29:57.301] [INFO] cheese - batch complete in: 1.499 secs -[2018-02-13T08:29:57.319] [INFO] cheese - batch complete in: 1.618 secs -[2018-02-13T08:29:57.621] [INFO] cheese - inserting 1000 documents. first: AD 152 and last: File:Lotto-Soudal logo.png -[2018-02-13T08:29:57.769] [INFO] cheese - batch complete in: 1.391 secs -[2018-02-13T08:29:57.884] [INFO] cheese - inserting 1000 documents. first: Template:PBB/25836 and last: File:Coventry City FC logo.svg -[2018-02-13T08:29:57.993] [INFO] cheese - inserting 1000 documents. first: Muswell Hill railway station and last: Template:US-airport2 -[2018-02-13T08:29:58.008] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:29:58.133] [INFO] cheese - inserting 1000 documents. first: Ishikawadai Station and last: File:Ayyamna-al-Helwa.jpg -[2018-02-13T08:29:58.241] [INFO] cheese - batch complete in: 1.582 secs -[2018-02-13T08:29:58.302] [INFO] cheese - inserting 1000 documents. first: List of cultural property of national significance in Switzerland: Aargau and last: Fugue in G minor -[2018-02-13T08:29:58.342] [INFO] cheese - batch complete in: 1.56 secs -[2018-02-13T08:29:58.463] [INFO] cheese - inserting 1000 documents. first: San Pedro de Chaulán District and last: Choice on Termination of Pregnancy Amendment Act -[2018-02-13T08:29:58.530] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:29:58.671] [INFO] cheese - inserting 1000 documents. first: 1999 Mongolia Premier League and last: Bishop of Central America -[2018-02-13T08:29:58.715] [INFO] cheese - batch complete in: 1.414 secs -[2018-02-13T08:29:58.864] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:29:59.094] [INFO] cheese - inserting 1000 documents. first: Tanks of World War II and last: 2011 Tashkent Open – Singles -[2018-02-13T08:29:59.363] [INFO] cheese - inserting 1000 documents. first: ZDJ and last: Preston Bissett -[2018-02-13T08:29:59.365] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T08:29:59.530] [INFO] cheese - inserting 1000 documents. first: File:Thai Kuti Illustration.jpg and last: Kaagse zeilmarathon -[2018-02-13T08:29:59.528] [INFO] cheese - inserting 1000 documents. first: Between 10th and 11th and last: Epic Trance -[2018-02-13T08:29:59.582] [INFO] cheese - inserting 1000 documents. first: Angola national basketball team roster and last: Koi Aanay Wala Hai (song) -[2018-02-13T08:29:59.834] [INFO] cheese - batch complete in: 1.593 secs -[2018-02-13T08:29:59.839] [INFO] cheese - batch complete in: 1.496 secs -[2018-02-13T08:29:59.904] [INFO] cheese - batch complete in: 3.107 secs -[2018-02-13T08:29:59.945] [INFO] cheese - batch complete in: 1.413 secs -[2018-02-13T08:30:00.028] [INFO] cheese - inserting 1000 documents. first: Episcopal Diocese of Central America and last: Mubarak Dahi Waleed -[2018-02-13T08:30:00.354] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Obozedalteima and last: Cecile Gotaas Johnsen -[2018-02-13T08:30:00.358] [INFO] cheese - inserting 1000 documents. first: File:Bahamove.jpg and last: Category:Ceylonese military personnel -[2018-02-13T08:30:00.475] [INFO] cheese - batch complete in: 1.611 secs -[2018-02-13T08:30:00.659] [INFO] cheese - inserting 1000 documents. first: Gryfici and last: Henry Worsley (disambiguation) -[2018-02-13T08:30:00.686] [INFO] cheese - batch complete in: 1.97 secs -[2018-02-13T08:30:01.013] [INFO] cheese - batch complete in: 1.648 secs -[2018-02-13T08:30:01.127] [INFO] cheese - batch complete in: 4.47 secs -[2018-02-13T08:30:01.489] [INFO] cheese - inserting 1000 documents. first: File:Seneca.JPG and last: Let Me Be the One (Carpenters song) -[2018-02-13T08:30:01.544] [INFO] cheese - inserting 1000 documents. first: C-Day and last: Sophie-Charlotte-Platz (Berlin U-Bahn) -[2018-02-13T08:30:01.580] [INFO] cheese - inserting 1000 documents. first: File:Virginia Henry Curtiss Heckscher (1932).png and last: Template:VIA Station -[2018-02-13T08:30:01.681] [INFO] cheese - inserting 1000 documents. first: Centrist politics and last: Timyra palathodes -[2018-02-13T08:30:01.727] [INFO] cheese - batch complete in: 1.887 secs -[2018-02-13T08:30:01.919] [INFO] cheese - batch complete in: 2.083 secs -[2018-02-13T08:30:01.955] [INFO] cheese - batch complete in: 2.01 secs -[2018-02-13T08:30:01.958] [INFO] cheese - batch complete in: 1.481 secs -[2018-02-13T08:30:02.318] [INFO] cheese - inserting 1000 documents. first: Henry Peckham (disambiguation) and last: Volchansky -[2018-02-13T08:30:02.320] [INFO] cheese - inserting 1000 documents. first: Hardin City Center, Montana and last: File:InCoS v2.png -[2018-02-13T08:30:02.427] [INFO] cheese - batch complete in: 1.741 secs -[2018-02-13T08:30:02.536] [INFO] cheese - batch complete in: 1.523 secs -[2018-02-13T08:30:02.594] [INFO] cheese - inserting 1000 documents. first: Arbeiderungdommen (1923–1927) and last: Médaille commémorative française -[2018-02-13T08:30:02.799] [INFO] cheese - batch complete in: 1.672 secs -[2018-02-13T08:30:02.928] [INFO] cheese - inserting 1000 documents. first: Sir James Caird, 1st Baronet and last: Xigatse -[2018-02-13T08:30:02.998] [INFO] cheese - inserting 1000 documents. first: William Marvin Watson and last: Category:Argentine biochemists -[2018-02-13T08:30:03.113] [INFO] cheese - inserting 1000 documents. first: Template:VIA color and last: Nuto Revelli -[2018-02-13T08:30:03.122] [INFO] cheese - batch complete in: 1.395 secs -[2018-02-13T08:30:03.146] [INFO] cheese - inserting 1000 documents. first: Vacat page and last: S.V. Arsenal -[2018-02-13T08:30:03.348] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:30:03.366] [INFO] cheese - batch complete in: 1.408 secs -[2018-02-13T08:30:03.484] [INFO] cheese - batch complete in: 1.529 secs -[2018-02-13T08:30:03.613] [INFO] cheese - inserting 1000 documents. first: Volchanskaya and last: Archmere Academy Mastersingers -[2018-02-13T08:30:03.657] [INFO] cheese - inserting 1000 documents. first: Screen magnifier and last: Odalist -[2018-02-13T08:30:03.715] [INFO] cheese - inserting 1000 documents. first: Bolton Metropolitan Borough Council election, 2007 and last: Ryan Pierce (The West Wing) -[2018-02-13T08:30:03.764] [INFO] cheese - batch complete in: 1.228 secs -[2018-02-13T08:30:03.825] [INFO] cheese - inserting 1000 documents. first: Symphonia Chronicles and last: Tal Keinan -[2018-02-13T08:30:03.872] [INFO] cheese - batch complete in: 1.444 secs -[2018-02-13T08:30:03.876] [INFO] cheese - batch complete in: 3.971 secs -[2018-02-13T08:30:03.918] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:30:04.130] [INFO] cheese - inserting 1000 documents. first: Geronimo Mendieta and last: Krembanan -[2018-02-13T08:30:04.220] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:30:04.231] [INFO] cheese - inserting 1000 documents. first: Clara Conway and last: Dungeons and Dragons Player's Strategy Guide -[2018-02-13T08:30:04.243] [INFO] cheese - inserting 1000 documents. first: Rhine-Main and last: List of traditional Chinese musical instruments -[2018-02-13T08:30:04.267] [INFO] cheese - inserting 1000 documents. first: Isabella Ochichi and last: Category:Films about chess -[2018-02-13T08:30:04.286] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:30:04.341] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:30:04.401] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:30:04.446] [INFO] cheese - inserting 1000 documents. first: Category:History of New Brunswick by location and last: ROKS Su Yong (LST-813) -[2018-02-13T08:30:04.488] [INFO] cheese - inserting 1000 documents. first: Van Auken (disambiguation) and last: File:Feminism & Psychology journal front cover.gif -[2018-02-13T08:30:04.569] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:30:04.592] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:30:04.602] [INFO] cheese - inserting 1000 documents. first: Watalangue and last: Orto Botanico del Monte Baldo -[2018-02-13T08:30:04.746] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:30:04.823] [INFO] cheese - inserting 1000 documents. first: Live at the Westbeth Theater and last: Charlotte Walker, actress -[2018-02-13T08:30:04.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Turkspasha/Archive and last: Suji-gu Office Station -[2018-02-13T08:30:04.891] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:30:04.908] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:30:04.951] [INFO] cheese - inserting 1000 documents. first: Category:UEFA competitions for women's national teams and last: File:Bungalow Heaven.jpg -[2018-02-13T08:30:05.061] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:30:05.246] [INFO] cheese - inserting 1000 documents. first: Low-fiber/low-residue diet and last: Suzanne Marie James -[2018-02-13T08:30:05.262] [INFO] cheese - inserting 1000 documents. first: Viceroyalties of New Spain and last: Sacred fire of Vesta -[2018-02-13T08:30:05.285] [INFO] cheese - inserting 1000 documents. first: Gerald G. May and last: Roncancio -[2018-02-13T08:30:05.399] [INFO] cheese - inserting 1000 documents. first: Zaroşad and last: Chernishevskii District -[2018-02-13T08:30:05.399] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:30:05.404] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:30:05.454] [INFO] cheese - batch complete in: 1.576 secs -[2018-02-13T08:30:05.532] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:30:05.616] [INFO] cheese - inserting 1000 documents. first: Template:Ayeyarwady-geo-stub and last: Wikipedia:WikiProject St. Louis/Politics -[2018-02-13T08:30:05.763] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:30:05.803] [INFO] cheese - inserting 1000 documents. first: Bugueño Pinnacle and last: Homaloxestis tenuipalpella -[2018-02-13T08:30:05.881] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Music of the United Kingdom articles and last: Ogongo Constituency -[2018-02-13T08:30:05.904] [INFO] cheese - inserting 1000 documents. first: Ichor (The Black League album) and last: Pueai Noi District -[2018-02-13T08:30:05.948] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:30:06.035] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:30:06.124] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:30:06.284] [INFO] cheese - inserting 1000 documents. first: Unitedworld Institute of Design and last: Wikipedia:Miscellany for deletion/User:Vennira Iravuggal -[2018-02-13T08:30:06.312] [INFO] cheese - inserting 1000 documents. first: Chernyshevsky Raion and last: Category:Willa Cather -[2018-02-13T08:30:06.375] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:30:06.395] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:30:06.436] [INFO] cheese - inserting 1000 documents. first: Ted Price and last: Wikipedia:Articles for deletion/Bolter -[2018-02-13T08:30:06.549] [INFO] cheese - batch complete in: 1.15 secs -[2018-02-13T08:30:06.604] [INFO] cheese - inserting 1000 documents. first: Category:Danish expatriates in India and last: Wikipedia:Categories for discussion/Log/2009 December 8 -[2018-02-13T08:30:06.637] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Canadian Fraternal Organization - L'Association Fraternelle Canadienne and last: Portal:Mali/Related portals -[2018-02-13T08:30:06.662] [INFO] cheese - inserting 1000 documents. first: Lecithocera tenuipalpella and last: Martin Werhand -[2018-02-13T08:30:06.744] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:30:06.744] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:30:06.770] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:30:06.875] [INFO] cheese - inserting 1000 documents. first: Category:Washington DC and last: New World Tower -[2018-02-13T08:30:06.946] [INFO] cheese - inserting 1000 documents. first: Category:Defunct newspapers of Iceland and last: 1990–91 IHF Women's Cup Winners' Cup -[2018-02-13T08:30:07.005] [INFO] cheese - inserting 1000 documents. first: William Vander Zalm and last: Interval class -[2018-02-13T08:30:07.037] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:30:07.104] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:30:07.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/September 18, 2011 and last: Centro Nazionale delle Ricerche -[2018-02-13T08:30:07.251] [INFO] cheese - batch complete in: 1.797 secs -[2018-02-13T08:30:07.389] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:30:07.397] [INFO] cheese - inserting 1000 documents. first: Gotha Go 244 and last: Olga Kapeliuk -[2018-02-13T08:30:07.544] [INFO] cheese - inserting 1000 documents. first: File:GPA Screenshot 2015.png and last: File:Sivakavi .jpg -[2018-02-13T08:30:07.653] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:30:07.750] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:30:07.907] [INFO] cheese - inserting 1000 documents. first: Nordik beat and last: Addiscombe (ward) -[2018-02-13T08:30:07.969] [INFO] cheese - inserting 1000 documents. first: Plasmamembrane calmodulin-dependent calcium ATPase and last: Purple grenadier -[2018-02-13T08:30:07.989] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for discussion/Log/2009 December 9 and last: Template:GongolaStateGovernors -[2018-02-13T08:30:07.994] [INFO] cheese - inserting 1000 documents. first: Golujeh, Tabriz and last: List of AEW&C aircraft -[2018-02-13T08:30:08.055] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:30:08.087] [INFO] cheese - batch complete in: 1.343 secs -[2018-02-13T08:30:08.106] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:30:08.167] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:30:08.395] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/grammarbank.com and last: Fathallah -[2018-02-13T08:30:08.430] [INFO] cheese - inserting 1000 documents. first: Serow, West Azerbaijan and last: Joel tabora -[2018-02-13T08:30:08.499] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:30:08.526] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:30:08.757] [INFO] cheese - inserting 1000 documents. first: Aristotle's ethics and last: Pete Marshal -[2018-02-13T08:30:08.779] [INFO] cheese - inserting 1000 documents. first: Template:Wpkentucky and last: WNEG (disambiguation) -[2018-02-13T08:30:08.888] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:30:08.896] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:08.933] [INFO] cheese - inserting 1000 documents. first: The Show Must Go On (musical by Walsh and Whiting) and last: Challenge Show -[2018-02-13T08:30:09.020] [INFO] cheese - inserting 1000 documents. first: 1st Philippine Legislature and last: Michael E. Bratman -[2018-02-13T08:30:09.024] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:30:09.049] [INFO] cheese - inserting 1000 documents. first: Hikitsuke-kata and last: Awa province (Tokushima) -[2018-02-13T08:30:09.135] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:30:09.180] [INFO] cheese - batch complete in: 1.928 secs -[2018-02-13T08:30:09.189] [INFO] cheese - inserting 1000 documents. first: Oklahoma State University homecoming parade car ramming and last: Category:Leonardo da Vinci in fiction -[2018-02-13T08:30:09.222] [INFO] cheese - inserting 1000 documents. first: Rastafarian vocabulary and last: File:Man in the moonlight.jpg -[2018-02-13T08:30:09.258] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:09.283] [INFO] cheese - inserting 1000 documents. first: Mulk, Iran and last: PDQ (computer) -[2018-02-13T08:30:09.293] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:30:09.397] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:30:09.599] [INFO] cheese - inserting 1000 documents. first: Qalb and last: Wasp Star (Apple Venus Volume 2) -[2018-02-13T08:30:09.636] [INFO] cheese - inserting 1000 documents. first: Daniel Sheffer and last: São Cristóvão (Rio de Janeiro neighbourhood) -[2018-02-13T08:30:09.647] [INFO] cheese - inserting 1000 documents. first: File:Palm Beach Drive bridge, Patterson Lakes.jpg and last: Maheriraty -[2018-02-13T08:30:09.668] [INFO] cheese - inserting 1000 documents. first: Bangalore Elevated Tollway and last: SER-Ninos II -[2018-02-13T08:30:09.677] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:09.706] [INFO] cheese - inserting 1000 documents. first: PDQ (laptop) and last: Category:1931 disestablishments in Turkey -[2018-02-13T08:30:09.732] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:30:09.783] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:30:09.832] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:30:09.834] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:30:09.885] [INFO] cheese - inserting 1000 documents. first: Category:Fountains in Bangladesh and last: Hydrocortamate hydrochloride -[2018-02-13T08:30:10.008] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:30:10.308] [INFO] cheese - inserting 1000 documents. first: Sanuki province and last: Gardiner -[2018-02-13T08:30:10.357] [INFO] cheese - inserting 1000 documents. first: List of animals of Long Island Sound and last: J. Am. Ceram. Soc. -[2018-02-13T08:30:10.372] [INFO] cheese - inserting 1000 documents. first: Interdigital transducers and last: Salahuddin Governorate -[2018-02-13T08:30:10.390] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:30:10.421] [INFO] cheese - inserting 1000 documents. first: Ligia Curvaria and last: Category:Canadian military personnel from Quebec -[2018-02-13T08:30:10.425] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:30:10.461] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:30:10.536] [INFO] cheese - inserting 1000 documents. first: E. O. Lyte and last: Bulgarians in Serbia and Montenegro -[2018-02-13T08:30:10.535] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:30:10.548] [INFO] cheese - inserting 1000 documents. first: Shirin Bakhtiar and last: Gray Council -[2018-02-13T08:30:10.587] [INFO] cheese - inserting 1000 documents. first: (14423) 1991 SM2 and last: Akaflieg Stuttgart FS-26 Moseppl -[2018-02-13T08:30:10.645] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:30:10.710] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:30:10.774] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:30:11.022] [INFO] cheese - inserting 1000 documents. first: Januzaj and last: Nikolett Krausz -[2018-02-13T08:30:11.064] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:30:11.113] [INFO] cheese - inserting 1000 documents. first: Sujin Naknayom and last: Loughrea, Co. Galway -[2018-02-13T08:30:11.244] [INFO] cheese - inserting 1000 documents. first: Bust a nut and last: File:SCUBA diving flag icon.gif -[2018-02-13T08:30:11.295] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:30:11.372] [INFO] cheese - inserting 1000 documents. first: Mom's Dead Upset and last: Glenn Greenberg -[2018-02-13T08:30:11.415] [INFO] cheese - inserting 1000 documents. first: Veera Chozhan river and last: 雒龍君 -[2018-02-13T08:30:11.425] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:30:11.527] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:30:11.606] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:30:11.634] [INFO] cheese - inserting 1000 documents. first: Shinobi X and last: Harry Potter Wands -[2018-02-13T08:30:11.819] [INFO] cheese - inserting 1000 documents. first: Yangsan Province (film) and last: Alıç (disambiguation) -[2018-02-13T08:30:11.831] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:30:11.978] [INFO] cheese - inserting 1000 documents. first: Leslie and last: 53rd Division (British) -[2018-02-13T08:30:12.002] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:30:12.130] [INFO] cheese - inserting 1000 documents. first: Women representations in Municipal elections in Israel and last: Buckler-mustard -[2018-02-13T08:30:12.194] [INFO] cheese - batch complete in: 1.804 secs -[2018-02-13T08:30:12.291] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:30:12.402] [INFO] cheese - inserting 1000 documents. first: File:Tamagotchi2.jpeg and last: Wikipedia:Articles for deletion/Mushroom Jack -[2018-02-13T08:30:12.540] [INFO] cheese - inserting 1000 documents. first: Template:Gene-17-stub and last: Schleswig-Holstein-Glücksburg -[2018-02-13T08:30:12.598] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:30:12.659] [INFO] cheese - inserting 1000 documents. first: Schwarza (Black Forest) and last: Category:Multi-purpose stadiums in Switzerland -[2018-02-13T08:30:12.659] [INFO] cheese - inserting 1000 documents. first: Andrei Volobuyev (disambiguation) and last: Talbert, California -[2018-02-13T08:30:12.708] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:30:12.711] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:30:12.969] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:30:13.025] [INFO] cheese - inserting 1000 documents. first: Mickey Mania: The Timeless Adventures of Mickey Mouse and last: 546 Herodias -[2018-02-13T08:30:13.297] [INFO] cheese - batch complete in: 1.465 secs -[2018-02-13T08:30:13.316] [INFO] cheese - inserting 1000 documents. first: Sanadamaru and last: Mount Pleasant railway station, South Australia -[2018-02-13T08:30:13.549] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:30:13.646] [INFO] cheese - inserting 1000 documents. first: Levkowitz and last: Poetry of Scotland -[2018-02-13T08:30:13.703] [INFO] cheese - inserting 1000 documents. first: Through the Flames and last: Category:American expatriates in New Zealand -[2018-02-13T08:30:13.723] [INFO] cheese - inserting 1000 documents. first: 27P/Crommelin and last: Category:Video game cheating -[2018-02-13T08:30:13.765] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:30:13.833] [INFO] cheese - batch complete in: 1.124 secs -[2018-02-13T08:30:13.907] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:30:14.147] [INFO] cheese - inserting 1000 documents. first: Lamin Samateh and last: Itolizumab -[2018-02-13T08:30:14.211] [INFO] cheese - inserting 1000 documents. first: VK Ceske Budejovice and last: Tayeb Korbosli -[2018-02-13T08:30:14.239] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T08:30:14.267] [INFO] cheese - inserting 1000 documents. first: Poltergasm and last: File:Breaking the News (1912 film) - still.jpg -[2018-02-13T08:30:14.331] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:14.370] [INFO] cheese - inserting 1000 documents. first: Operation Headstrong and last: Herzog & de Meuron -[2018-02-13T08:30:14.389] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:30:14.414] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Highway 100 and last: Category:Middle schools in Minnesota -[2018-02-13T08:30:14.513] [INFO] cheese - inserting 1000 documents. first: Mitbanchan and last: Category:Deputy Lieutenants of Ross-shire -[2018-02-13T08:30:14.639] [INFO] cheese - inserting 1000 documents. first: Chromatic aberrations and last: ATHF Marketing Scandal -[2018-02-13T08:30:14.719] [INFO] cheese - inserting 1000 documents. first: Cleveland (TV series) and last: Category:New Zealand politics stubs -[2018-02-13T08:30:14.897] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:30:14.966] [INFO] cheese - batch complete in: 2.772 secs -[2018-02-13T08:30:15.024] [INFO] cheese - batch complete in: 1.727 secs -[2018-02-13T08:30:15.102] [INFO] cheese - batch complete in: 1.195 secs -[2018-02-13T08:30:15.275] [INFO] cheese - inserting 1000 documents. first: Olokizumab and last: (23492) 1991 RA20 -[2018-02-13T08:30:15.407] [INFO] cheese - inserting 1000 documents. first: Portal:California Roads/Selected article/18 and last: Narrow-leaved Bitter-cress -[2018-02-13T08:30:15.485] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T08:30:15.580] [INFO] cheese - inserting 1000 documents. first: Category:Gothic Revival architecture in Herefordshire and last: Andy Little (footballer) -[2018-02-13T08:30:15.729] [INFO] cheese - batch complete in: 1.398 secs -[2018-02-13T08:30:15.771] [INFO] cheese - batch complete in: 1.381 secs -[2018-02-13T08:30:15.822] [INFO] cheese - batch complete in: 7.654 secs -[2018-02-13T08:30:16.212] [INFO] cheese - inserting 1000 documents. first: 1956 U.S. Open (golf) and last: Wikipedia:Articles for deletion/Brian Sherwin -[2018-02-13T08:30:16.298] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:30:16.433] [INFO] cheese - inserting 1000 documents. first: File:Moja domovina.jpg and last: Keyword advertising -[2018-02-13T08:30:16.477] [INFO] cheese - inserting 1000 documents. first: FK Sibiryak Bratsk and last: "Armavia" Air Company -[2018-02-13T08:30:16.489] [INFO] cheese - inserting 1000 documents. first: Aleph nought and last: 834 Burnhamia -[2018-02-13T08:30:16.524] [INFO] cheese - inserting 1000 documents. first: Four greats of Chilean poetry and last: Margaret Wilson (judge) -[2018-02-13T08:30:16.663] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:30:16.685] [INFO] cheese - inserting 1000 documents. first: Red Light district and last: Category:Paintings in California -[2018-02-13T08:30:16.726] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:30:16.765] [INFO] cheese - batch complete in: 1.741 secs -[2018-02-13T08:30:16.768] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T08:30:16.955] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T08:30:17.242] [INFO] cheese - inserting 1000 documents. first: Arne Naess and last: Vernix -[2018-02-13T08:30:17.406] [INFO] cheese - inserting 1000 documents. first: Steele (supercomputer) and last: Hilarion-Pit -[2018-02-13T08:30:17.423] [INFO] cheese - batch complete in: 2.456 secs -[2018-02-13T08:30:17.689] [INFO] cheese - inserting 1000 documents. first: Songo Songo Airstrip and last: Alpha (Magic: The Gathering) -[2018-02-13T08:30:17.757] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:30:17.959] [INFO] cheese - inserting 1000 documents. first: CMRN and last: File:Stel forawhile.jpg -[2018-02-13T08:30:18.070] [INFO] cheese - inserting 1000 documents. first: Lecithocera lasioides and last: Ämmuste -[2018-02-13T08:30:18.085] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T08:30:18.129] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Cass County, Missouri and last: Andrei Kovalenco -[2018-02-13T08:30:18.260] [INFO] cheese - batch complete in: 1.533 secs -[2018-02-13T08:30:18.292] [INFO] cheese - inserting 1000 documents. first: 832 Karin and last: File:Gaffney.jpg -[2018-02-13T08:30:18.308] [INFO] cheese - batch complete in: 1.353 secs -[2018-02-13T08:30:18.477] [INFO] cheese - batch complete in: 1.712 secs -[2018-02-13T08:30:18.591] [INFO] cheese - inserting 1000 documents. first: Wicki-Hayden note layout and last: File:20091123 Newsweek Palin Cover.png -[2018-02-13T08:30:18.589] [INFO] cheese - batch complete in: 1.821 secs -[2018-02-13T08:30:18.769] [INFO] cheese - batch complete in: 2.947 secs -[2018-02-13T08:30:18.904] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Devonshire Collection of Period Costume and last: Atta-faire language -[2018-02-13T08:30:19.014] [INFO] cheese - inserting 1000 documents. first: The Semonski Sisters and last: New media artist -[2018-02-13T08:30:19.048] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:30:19.184] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:30:19.322] [INFO] cheese - inserting 1000 documents. first: File:CoASigismundKingofHungary.png and last: Geiselbach (Kahl) -[2018-02-13T08:30:19.381] [INFO] cheese - inserting 1000 documents. first: Category:Festivals in Turkey by city and last: Category:Paintings in Youngstown, Ohio -[2018-02-13T08:30:19.404] [INFO] cheese - inserting 1000 documents. first: Eadmer of Canterbury and last: Big Malcolm -[2018-02-13T08:30:19.565] [INFO] cheese - inserting 1000 documents. first: Hollywood – My Way and last: Kaleval'skii -[2018-02-13T08:30:19.579] [INFO] cheese - batch complete in: 1.271 secs -[2018-02-13T08:30:19.581] [INFO] cheese - batch complete in: 1.319 secs -[2018-02-13T08:30:19.661] [INFO] cheese - inserting 1000 documents. first: Robert C. Byrd placenames and last: Fayetteville Area System of Transit -[2018-02-13T08:30:19.698] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:30:19.809] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:30:19.899] [INFO] cheese - inserting 1000 documents. first: Category:Chinese former Muslims and last: Yu Daimonzi -[2018-02-13T08:30:20.085] [INFO] cheese - batch complete in: 1.606 secs -[2018-02-13T08:30:20.089] [INFO] cheese - inserting 1000 documents. first: Ictineo and last: Wallon -[2018-02-13T08:30:20.246] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:30:20.297] [INFO] cheese - inserting 1000 documents. first: Template:Attached KML/Wyoming Highway 132 and last: Typhochlaena costae -[2018-02-13T08:30:20.495] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:30:20.678] [INFO] cheese - inserting 1000 documents. first: List of Japan-related topics (numbers and symbols) and last: CC Lockwood -[2018-02-13T08:30:20.719] [INFO] cheese - batch complete in: 3.296 secs -[2018-02-13T08:30:20.905] [INFO] cheese - batch complete in: 1.721 secs -[2018-02-13T08:30:20.968] [INFO] cheese - inserting 1000 documents. first: Sukkok and last: Richmond-Petersburg -[2018-02-13T08:30:21.082] [INFO] cheese - inserting 1000 documents. first: Mupwi and last: Christian Brothers High School (Memphis, Tennessee) -[2018-02-13T08:30:21.096] [INFO] cheese - inserting 1000 documents. first: Halve Maen (ship) and last: Frank St. John Sidway -[2018-02-13T08:30:21.100] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:30:21.118] [INFO] cheese - inserting 1000 documents. first: Edward Hannes and last: 62nd General Assembly of Nova Scotia -[2018-02-13T08:30:21.243] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:30:21.272] [INFO] cheese - batch complete in: 1.574 secs -[2018-02-13T08:30:21.297] [INFO] cheese - batch complete in: 1.714 secs -[2018-02-13T08:30:21.332] [INFO] cheese - inserting 1000 documents. first: Animation Magazine and last: Wikipedia:Articles for deletion/Samuel Morris Penthouse -[2018-02-13T08:30:21.624] [INFO] cheese - inserting 1000 documents. first: John Coghlan (footballer) and last: Alexander Liziukov -[2018-02-13T08:30:21.664] [INFO] cheese - batch complete in: 1.579 secs -[2018-02-13T08:30:21.791] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:30:22.040] [INFO] cheese - inserting 1000 documents. first: Guantanamo captive 090 and last: Arp 226 -[2018-02-13T08:30:22.126] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:30:22.161] [INFO] cheese - inserting 1000 documents. first: Pompey Center, New York and last: Charles Laplace -[2018-02-13T08:30:22.172] [INFO] cheese - inserting 1000 documents. first: United States presidential election in New York, 1884 and last: Cosmosoma festiva -[2018-02-13T08:30:22.231] [INFO] cheese - inserting 1000 documents. first: Assault with intent to commit felony and last: Siah Jamegan Aboumoslem Khorasan F.C. -[2018-02-13T08:30:22.237] [INFO] cheese - inserting 1000 documents. first: Nicolau Eymerich and last: Wikipedia:WikiProject Military history/Peer review/Battle of Shanghai -[2018-02-13T08:30:22.268] [INFO] cheese - batch complete in: 1.167 secs -[2018-02-13T08:30:22.332] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:30:22.350] [INFO] cheese - batch complete in: 1.052 secs -[2018-02-13T08:30:22.356] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:30:22.501] [INFO] cheese - inserting 1000 documents. first: Doug Selby and last: Success factors -[2018-02-13T08:30:22.537] [INFO] cheese - inserting 1000 documents. first: Bahai Faith in China and last: National Union of Shop Assistants -[2018-02-13T08:30:22.554] [INFO] cheese - inserting 1000 documents. first: House wren and last: Pinus taeda -[2018-02-13T08:30:22.614] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:30:22.655] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:30:22.848] [INFO] cheese - batch complete in: 2.128 secs -[2018-02-13T08:30:22.878] [INFO] cheese - inserting 1000 documents. first: Cosmosoma aleus and last: Firuraq Rural District -[2018-02-13T08:30:22.908] [INFO] cheese - inserting 1000 documents. first: Dwight Yates and last: Template:Spider Loc -[2018-02-13T08:30:22.960] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:30:22.972] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:30:23.047] [INFO] cheese - inserting 1000 documents. first: Abdolhossein Zarinkoob and last: 4th U.S. Colored Infantry Regiment -[2018-02-13T08:30:23.103] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Hunter2hunter and last: The 12 Steps -[2018-02-13T08:30:23.124] [INFO] cheese - inserting 1000 documents. first: Category:Minnesota Golden Gophers men's basketball seasons and last: David Murray Cowie -[2018-02-13T08:30:23.169] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:30:23.251] [INFO] cheese - inserting 1000 documents. first: National Amalgamated Union of Shop Assistants and last: Derby Road (disambiguation) -[2018-02-13T08:30:23.254] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:30:23.266] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:30:23.346] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:23.382] [INFO] cheese - inserting 1000 documents. first: Panchachuli and last: List of Pacific hurricanes before 1900 -[2018-02-13T08:30:23.474] [INFO] cheese - inserting 1000 documents. first: Gowharan Rural District (West Azerbaijan Province) and last: Karla MacFarlane -[2018-02-13T08:30:23.484] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:30:23.535] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:30:23.603] [INFO] cheese - inserting 1000 documents. first: List of places in the Heraklion prefecture and last: Yaʿăqōḇ -[2018-02-13T08:30:23.708] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:30:23.736] [INFO] cheese - inserting 1000 documents. first: Sonderborg Airport and last: Category:New Zealand judges -[2018-02-13T08:30:23.790] [INFO] cheese - inserting 1000 documents. first: Noctua carnea and last: Template:Tohoku Rakuten Golden Eagles roster -[2018-02-13T08:30:23.796] [INFO] cheese - inserting 1000 documents. first: The Army and Navy Journal and last: Murder on the High Seas (book) -[2018-02-13T08:30:23.899] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:30:23.919] [INFO] cheese - inserting 1000 documents. first: Battles of Batočina and Jagodina and last: Murray State Racers men's golf -[2018-02-13T08:30:23.893] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:30:24.029] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:30:24.099] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:30:24.211] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Whendjlizawasdjlisa and last: Glenwood Memorial Gardens -[2018-02-13T08:30:24.283] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:30:24.412] [INFO] cheese - inserting 1000 documents. first: File:Rasinari Church.png and last: Battle of zaoyang yichang -[2018-02-13T08:30:24.415] [INFO] cheese - inserting 1000 documents. first: David Hookes and last: Hate group -[2018-02-13T08:30:24.551] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:30:24.583] [INFO] cheese - batch complete in: 1.734 secs -[2018-02-13T08:30:24.691] [INFO] cheese - inserting 1000 documents. first: Chapter 9 bankruptcy and last: Arnfield -[2018-02-13T08:30:24.736] [INFO] cheese - inserting 1000 documents. first: The Family Jewels (Marina and the Diamonds album) and last: Rusty: A Dog's Tale -[2018-02-13T08:30:24.765] [INFO] cheese - inserting 1000 documents. first: Gose Elbe and last: Tapinurus -[2018-02-13T08:30:24.783] [INFO] cheese - inserting 1000 documents. first: Cal State Northridge Matadors men's golf and last: Mall cop 2 -[2018-02-13T08:30:24.787] [INFO] cheese - inserting 1000 documents. first: Wal-Mart Supercentre and last: Binley, Coventry -[2018-02-13T08:30:24.788] [INFO] cheese - inserting 1000 documents. first: Titanium diselenide and last: António Baltasar Marcelino -[2018-02-13T08:30:24.802] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:30:24.850] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:30:24.914] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:30:24.967] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:30:24.966] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:30:24.985] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:30:25.323] [INFO] cheese - inserting 1000 documents. first: Enséñame a Olvidar (Aventura song) and last: SLC5A7 -[2018-02-13T08:30:25.364] [INFO] cheese - inserting 1000 documents. first: Zamora (municipality) and last: Cloudland -[2018-02-13T08:30:25.379] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:30:25.400] [INFO] cheese - inserting 1000 documents. first: File:Holly Happy Days.jpeg and last: Maji Desu ka Ska -[2018-02-13T08:30:25.457] [INFO] cheese - inserting 1000 documents. first: IEC 61960 and last: 2010 Football NSW season -[2018-02-13T08:30:25.483] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:30:25.514] [INFO] cheese - inserting 1000 documents. first: List of countries by uranium reserves and last: Category:1997 in Indonesia -[2018-02-13T08:30:25.512] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:30:25.553] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:30:25.632] [INFO] cheese - inserting 1000 documents. first: Gurukula Kangri Vishwavidyalaya and last: Portal:India/Quiz/Archive49 -[2018-02-13T08:30:25.642] [INFO] cheese - inserting 1000 documents. first: Burning Up Years and last: Green Township, Harrison County, Ohio -[2018-02-13T08:30:25.649] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:30:25.727] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:30:25.740] [INFO] cheese - inserting 1000 documents. first: Nuristanis and last: Shmoo Group -[2018-02-13T08:30:25.753] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:30:25.953] [INFO] cheese - batch complete in: 1.368 secs -[2018-02-13T08:30:26.088] [INFO] cheese - inserting 1000 documents. first: Bobot and last: Pryazhinskii District -[2018-02-13T08:30:26.135] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/htb.co.jp and last: Bob Curnow -[2018-02-13T08:30:26.132] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:30:26.152] [INFO] cheese - inserting 1000 documents. first: Paul W. Draper and last: Kent station (Washington) -[2018-02-13T08:30:26.251] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:30:26.257] [INFO] cheese - inserting 1000 documents. first: Giant bikes and last: Lasdon Park and Arboretum -[2018-02-13T08:30:26.288] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:30:26.394] [INFO] cheese - inserting 1000 documents. first: Christ School and last: Tourism in Gary, Indiana -[2018-02-13T08:30:26.396] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:30:26.410] [INFO] cheese - inserting 1000 documents. first: Welfare in Brazil and last: Geographic center of Belarus -[2018-02-13T08:30:26.518] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:30:26.547] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:30:26.641] [INFO] cheese - inserting 1000 documents. first: Monroe Township, Harrison County, Ohio and last: Lee Township, Athens County, Ohio -[2018-02-13T08:30:26.698] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:30:26.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Delaware/Article alerts and last: Category:Municipal parks in North Carolina -[2018-02-13T08:30:26.758] [INFO] cheese - inserting 1000 documents. first: Pryajinsky District and last: Wikipedia:Templates for discussion/Log/2009 March 29 -[2018-02-13T08:30:26.882] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:30:26.892] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:30:26.986] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Julianna Pollifrone and last: Lijuan Geng -[2018-02-13T08:30:27.102] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:30:27.356] [INFO] cheese - inserting 1000 documents. first: Sevskoye Urban Settlement and last: Romel Quiñónez -[2018-02-13T08:30:27.445] [INFO] cheese - inserting 1000 documents. first: Utricularia macrocheilos and last: Levon "Bo" Jones -[2018-02-13T08:30:27.465] [INFO] cheese - inserting 1000 documents. first: Donald Wandrei and last: Wikipedia:Articles for deletion/Mystii -[2018-02-13T08:30:27.467] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:30:27.494] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2009 March 30 and last: Wikipedia:Templates for discussion/Log/2008 August 31 -[2018-02-13T08:30:27.567] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:30:27.583] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:30:27.683] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:27.722] [INFO] cheese - inserting 1000 documents. first: Trimble Township, Athens County, Ohio and last: ATN cricket plus -[2018-02-13T08:30:27.838] [INFO] cheese - inserting 1000 documents. first: Wikipedia:ALBUMS/REVSIT and last: Theoria (social and political journal) -[2018-02-13T08:30:27.850] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T08:30:27.861] [INFO] cheese - inserting 1000 documents. first: Category:Dance festivals in Thailand and last: 狄漢臣 -[2018-02-13T08:30:27.864] [INFO] cheese - inserting 1000 documents. first: Marquess of Ailesbury and last: Youth sexuality -[2018-02-13T08:30:27.906] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:30:27.980] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:30:28.040] [INFO] cheese - batch complete in: 2.087 secs -[2018-02-13T08:30:28.101] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for discussion/Log/2008 September 1 and last: File:Sunset view at Fagatele Bay.jpg -[2018-02-13T08:30:28.114] [INFO] cheese - inserting 1000 documents. first: The New Girl (Haven) and last: Rintaro Norizuki -[2018-02-13T08:30:28.179] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:30:28.190] [INFO] cheese - inserting 1000 documents. first: Leaf-carrying ant and last: Christian Law of Adoption in India -[2018-02-13T08:30:28.218] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:28.284] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:30:28.388] [INFO] cheese - inserting 1000 documents. first: Michael Bolotin and last: Category:Soviet diplomats -[2018-02-13T08:30:28.594] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:30:28.618] [INFO] cheese - inserting 1000 documents. first: ATN cricketplus and last: Polyrectangle -[2018-02-13T08:30:28.619] [INFO] cheese - inserting 1000 documents. first: Οὔγγροι and last: Doug Carter -[2018-02-13T08:30:28.735] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:30:28.793] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:30:28.981] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Video games/Reference library/The One and last: Template:Attached KML/Interstate 580 (Nevada) -[2018-02-13T08:30:28.987] [INFO] cheese - inserting 1000 documents. first: Adel Bencherif and last: New Zealand National -[2018-02-13T08:30:29.003] [INFO] cheese - inserting 1000 documents. first: Category:Environmental Microbiology and last: Milford Junction -[2018-02-13T08:30:29.009] [INFO] cheese - inserting 1000 documents. first: Category:20th-century establishments in the Cape Colony and last: File:UT Press logo.PNG -[2018-02-13T08:30:29.049] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:30:29.111] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:30:29.131] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:30:29.132] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:30:29.467] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/GeeseUK and last: Frank Schleck -[2018-02-13T08:30:29.570] [INFO] cheese - inserting 1000 documents. first: Reddish brown and last: Frank Velásquez -[2018-02-13T08:30:29.602] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:30:29.688] [INFO] cheese - inserting 1000 documents. first: File:Monstersquadposter.jpg and last: Ōsaki-Hirokōji Station -[2018-02-13T08:30:29.713] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:30:29.763] [INFO] cheese - inserting 1000 documents. first: 2009–10 Biathlon World Cup – Individual Men and last: Manuel Monge -[2018-02-13T08:30:29.818] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:30:29.872] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:30:30.030] [INFO] cheese - inserting 1000 documents. first: Category:Trinity Bantams and last: Beside Still Waters (film) -[2018-02-13T08:30:30.080] [INFO] cheese - inserting 1000 documents. first: Category:Religious texts articles needing infoboxes and last: The Frye Apartments Guy -[2018-02-13T08:30:30.085] [INFO] cheese - inserting 1000 documents. first: Toyota Celica (T230) and last: Japan Gasoline Co. -[2018-02-13T08:30:30.111] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:30:30.130] [INFO] cheese - inserting 1000 documents. first: Muhammad Ayub Khan and last: Mario Party -[2018-02-13T08:30:30.145] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:30:30.179] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:30:30.296] [INFO] cheese - batch complete in: 2.256 secs -[2018-02-13T08:30:30.395] [INFO] cheese - inserting 1000 documents. first: Sins of a Solar Empire: Rebellion and last: Template:Cities and towns in Požega-Slavonia -[2018-02-13T08:30:30.405] [INFO] cheese - inserting 1000 documents. first: List of American jazz musicians of Sicilian origin and last: Old-man's-beard -[2018-02-13T08:30:30.481] [INFO] cheese - inserting 1000 documents. first: Master Eraqus and last: Adyge-Khablskoye -[2018-02-13T08:30:30.484] [INFO] cheese - inserting 1000 documents. first: Nicșeni and last: Stephen P. Clark Center -[2018-02-13T08:30:30.500] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:30:30.519] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:30:30.614] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:30:30.617] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:30:30.783] [INFO] cheese - inserting 1000 documents. first: 1958–59 Liverpool F.C. season and last: Template:Cycling data MCG -[2018-02-13T08:30:30.822] [INFO] cheese - inserting 1000 documents. first: Chainstore makeover and last: El Mundo del Siglo Veintiuno -[2018-02-13T08:30:30.833] [INFO] cheese - inserting 1000 documents. first: Category:1990s in the environment and last: La Grange Road station (Metra) -[2018-02-13T08:30:30.933] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:30:30.986] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:30:31.103] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:30:31.349] [INFO] cheese - inserting 1000 documents. first: Doctor Who (series 24) and last: De Meritens -[2018-02-13T08:30:31.355] [INFO] cheese - inserting 1000 documents. first: Medial dorsal nucleus and last: Niwa Nagakuni -[2018-02-13T08:30:31.368] [INFO] cheese - inserting 1000 documents. first: Wonderer and last: Category:Discoveries by Yoshisada Shimizu -[2018-02-13T08:30:31.435] [INFO] cheese - inserting 1000 documents. first: Curse of the bambino and last: International Union of Guides and Scouts of Europe -[2018-02-13T08:30:31.442] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:30:31.466] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:30:31.608] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:30:31.745] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T08:30:31.935] [INFO] cheese - inserting 1000 documents. first: List of natural regions in Saxony and last: Category:486 in Europe -[2018-02-13T08:30:32.007] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:30:32.065] [INFO] cheese - inserting 1000 documents. first: HMS Serapis (1779) and last: The Dears -[2018-02-13T08:30:32.104] [INFO] cheese - inserting 1000 documents. first: La Grange Road station (Illinois) and last: Retort gas -[2018-02-13T08:30:32.209] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:30:32.281] [INFO] cheese - batch complete in: 1.984 secs -[2018-02-13T08:30:32.286] [INFO] cheese - inserting 1000 documents. first: Battle of Hyrba and last: File:Full Circle (Doctor Who).jpg -[2018-02-13T08:30:32.341] [INFO] cheese - inserting 1000 documents. first: Eight street middle school and last: Category:B-Class Computer Security articles of High-importance -[2018-02-13T08:30:32.401] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:30:32.406] [INFO] cheese - inserting 1000 documents. first: Category:Lynchburg (minor league baseball) players and last: Reno Air Races Crash -[2018-02-13T08:30:32.409] [INFO] cheese - inserting 1000 documents. first: Grafeneck Euthanasia Centre and last: Martin Windrow -[2018-02-13T08:30:32.463] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:30:32.511] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:30:32.555] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:30:32.700] [INFO] cheese - inserting 1000 documents. first: Category:489 in Europe and last: Eumelea genuina -[2018-02-13T08:30:32.746] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:30:32.803] [INFO] cheese - inserting 1000 documents. first: Category:Paintings in Düsseldorf and last: Shane Julien -[2018-02-13T08:30:32.810] [INFO] cheese - inserting 1000 documents. first: List of minor planets/115001–115100 and last: Essential thrombocythemia -[2018-02-13T08:30:32.864] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:30:32.909] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:30:33.097] [INFO] cheese - inserting 1000 documents. first: Template:UEFA Europa League winners and last: Temples in Jerusalem -[2018-02-13T08:30:33.123] [INFO] cheese - inserting 1000 documents. first: Fashion capital and last: Five-coloured munia -[2018-02-13T08:30:33.129] [INFO] cheese - inserting 1000 documents. first: Category:B-Class Computer Security articles of Mid-importance and last: Category:2009–10 Atlantic Coast Conference men's basketball season -[2018-02-13T08:30:33.154] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:30:33.253] [INFO] cheese - inserting 1000 documents. first: Indian Health Transfer Policy (Canada) and last: Template:Forth and Clyde Canal map -[2018-02-13T08:30:33.266] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:30:33.349] [INFO] cheese - inserting 1000 documents. first: Dave Considine and last: NASL Final 70 -[2018-02-13T08:30:33.474] [INFO] cheese - batch complete in: 1.011 secs -[2018-02-13T08:30:33.483] [INFO] cheese - batch complete in: 1.082 secs -[2018-02-13T08:30:33.518] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:30:33.672] [INFO] cheese - inserting 1000 documents. first: Category:Grenadian expatriates in Barbados and last: Franco Cotana -[2018-02-13T08:30:33.837] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:30:33.931] [INFO] cheese - inserting 1000 documents. first: Music of Extremadura and last: Richard Burdon Haldane -[2018-02-13T08:30:33.939] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in the Netherlands and last: File:Tengwar tanwi.png -[2018-02-13T08:30:33.993] [INFO] cheese - inserting 1000 documents. first: Lieutenant General (UK) and last: Triathlon at the 2011 Pan American Games – Men's -[2018-02-13T08:30:34.102] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:30:34.118] [INFO] cheese - batch complete in: 1.836 secs -[2018-02-13T08:30:34.122] [INFO] cheese - inserting 1000 documents. first: File:The Whispering of the Gods DVD Cover.jpg and last: Newtonian theory -[2018-02-13T08:30:34.152] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:30:34.246] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:30:34.260] [INFO] cheese - inserting 1000 documents. first: John Acton (canon lawyer) and last: Template:Yasuharu Hasebe -[2018-02-13T08:30:34.331] [INFO] cheese - inserting 1000 documents. first: File:Centrelink-brand.png and last: File:HU-emblem.jpg -[2018-02-13T08:30:34.415] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:30:34.474] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:30:34.547] [INFO] cheese - inserting 1000 documents. first: 7999 Nesvorný and last: Secondary State Highway 3F -[2018-02-13T08:30:34.671] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:30:34.799] [INFO] cheese - inserting 1000 documents. first: Triathlon at the 2011 Pan American Games – Women's and last: Higher education in New Zealand -[2018-02-13T08:30:34.826] [INFO] cheese - inserting 1000 documents. first: Arimasa Osawa and last: Equinox Day -[2018-02-13T08:30:34.898] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:30:34.901] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:30:35.058] [INFO] cheese - inserting 1000 documents. first: Hatanga Airport and last: Sir Charles Clow Tennant, 1st Baronet -[2018-02-13T08:30:35.122] [INFO] cheese - inserting 1000 documents. first: McGregor station (British Columbia) and last: StarCraft (comics) -[2018-02-13T08:30:35.122] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:30:35.148] [INFO] cheese - inserting 1000 documents. first: Category:Museums in Sabaragamuwa Province and last: Category:Professional associations based in Vietnam -[2018-02-13T08:30:35.264] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:30:35.329] [INFO] cheese - batch complete in: 1.492 secs -[2018-02-13T08:30:35.374] [INFO] cheese - inserting 1000 documents. first: Ecumenical Theological Seminary and last: Rodrigo Avila -[2018-02-13T08:30:35.410] [INFO] cheese - inserting 1000 documents. first: University of Maryland, College Park Terrapins and last: December (song) -[2018-02-13T08:30:35.471] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:30:35.510] [INFO] cheese - inserting 1000 documents. first: Category:Merited Master of Sports of the USSR and last: Ebodina simplex -[2018-02-13T08:30:35.540] [INFO] cheese - inserting 1000 documents. first: Category:Religious buildings completed in 1222 and last: Category:Steyr-Puch vehicles -[2018-02-13T08:30:35.539] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:30:35.612] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:30:35.664] [INFO] cheese - inserting 1000 documents. first: Watford Gap and last: Closed list -[2018-02-13T08:30:35.689] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:30:35.822] [INFO] cheese - inserting 1000 documents. first: Lech Kolakowski and last: Template:User Vietnam -[2018-02-13T08:30:35.833] [INFO] cheese - batch complete in: 1.714 secs -[2018-02-13T08:30:35.912] [INFO] cheese - inserting 1000 documents. first: Saleh Al-Arfej and last: Mount Vernon Clippers -[2018-02-13T08:30:35.930] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota State University people and last: Gabe Cash -[2018-02-13T08:30:35.931] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:30:36.015] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:30:36.020] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:30:36.312] [INFO] cheese - inserting 1000 documents. first: Arsallah Jamal and last: Bayan Chowli -[2018-02-13T08:30:36.382] [INFO] cheese - inserting 1000 documents. first: Category:Cars of Austria and last: Club Atlético Madrid (handball) -[2018-02-13T08:30:36.395] [INFO] cheese - inserting 1000 documents. first: Cuihu Gongyuan and last: File:I sometimew wish i was famous.jpg -[2018-02-13T08:30:36.403] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:30:36.457] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:30:36.508] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:30:36.587] [INFO] cheese - inserting 1000 documents. first: Collaborationist and last: Igor Svyatoslavych -[2018-02-13T08:30:36.662] [INFO] cheese - batch complete in: 1.123 secs -[2018-02-13T08:30:36.751] [INFO] cheese - inserting 1000 documents. first: Da Costa v. Jones and last: Widduyim -[2018-02-13T08:30:36.822] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:30:36.927] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sammie Rhodes and last: Richard Ronald John Copeland Esq -[2018-02-13T08:30:36.939] [INFO] cheese - inserting 1000 documents. first: Bayancholi-ye Pain and last: Kim Ji-woon -[2018-02-13T08:30:36.986] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:30:37.078] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:30:37.095] [INFO] cheese - inserting 1000 documents. first: Terrorist incidents in Pakistan in 2004 and last: Category:Unincorporated communities in Mississippi County, Missouri -[2018-02-13T08:30:37.208] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:37.220] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Kocaeli and last: File:DirkWearsWhiteSoxOriginalCover.gif -[2018-02-13T08:30:37.300] [INFO] cheese - inserting 1000 documents. first: Shandilya Upanishad and last: Template:Team Pune Roster -[2018-02-13T08:30:37.356] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:30:37.478] [INFO] cheese - inserting 1000 documents. first: Yanomama and last: Wolf Hirth -[2018-02-13T08:30:37.517] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:30:37.554] [INFO] cheese - inserting 1000 documents. first: Grands Établissements and last: Larry Manetti -[2018-02-13T08:30:37.599] [INFO] cheese - batch complete in: 1.765 secs -[2018-02-13T08:30:37.621] [INFO] cheese - inserting 1000 documents. first: Algonquin wit and last: Mini-dvi -[2018-02-13T08:30:37.720] [INFO] cheese - batch complete in: 1.057 secs -[2018-02-13T08:30:37.730] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:30:37.800] [INFO] cheese - inserting 1000 documents. first: Loran Township, Stephenson County, Illinois and last: Phantom reference -[2018-02-13T08:30:37.817] [INFO] cheese - inserting 1000 documents. first: Methylliberine and last: 16-O-methylcafestol -[2018-02-13T08:30:37.899] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:30:37.906] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:30:37.920] [INFO] cheese - inserting 1000 documents. first: Category:Air divisions of the Wehrmacht Luftwaffe and last: Category:Old Town, Maine -[2018-02-13T08:30:38.020] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:30:38.083] [INFO] cheese - inserting 1000 documents. first: Airyhall Primary School and last: ދިވެހިބަސ -[2018-02-13T08:30:38.133] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:30:38.240] [INFO] cheese - inserting 1000 documents. first: Template:Rising Pune Supergiant and last: EuroVision - Museums Exhibiting Europe -[2018-02-13T08:30:38.265] [INFO] cheese - inserting 1000 documents. first: File:Marsh Harvester 1860.jpg and last: United Football League (disambiguation) -[2018-02-13T08:30:38.298] [INFO] cheese - inserting 1000 documents. first: Thomas Midgeley and last: ACL reconstruction -[2018-02-13T08:30:38.300] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:30:38.354] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:30:38.465] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:30:38.549] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/T-34 and last: Akkad Bakkad Bambey Bo -[2018-02-13T08:30:38.589] [INFO] cheese - inserting 1000 documents. first: Earthed neutral and last: Timothy J. Yeatman -[2018-02-13T08:30:38.628] [INFO] cheese - batch complete in: 0.721 secs -[2018-02-13T08:30:38.691] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:30:38.701] [INFO] cheese - inserting 1000 documents. first: 1981 South American Rugby Championship and last: OP ruft Dr. Bruckner -[2018-02-13T08:30:38.721] [INFO] cheese - inserting 1000 documents. first: Yakima Training Center and last: *Gebô -[2018-02-13T08:30:38.782] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:30:38.788] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:30:38.866] [INFO] cheese - inserting 1000 documents. first: BePink–La Classica and last: Koreatown NYC -[2018-02-13T08:30:38.958] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:30:39.007] [INFO] cheese - inserting 1000 documents. first: Tipulodina and last: List of 2009 box office number-one films in Brazil -[2018-02-13T08:30:39.058] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:30:39.142] [INFO] cheese - inserting 1000 documents. first: Teresa Teng and last: Ifrit -[2018-02-13T08:30:39.228] [INFO] cheese - inserting 1000 documents. first: Piranshahr Industrial Estate and last: Category:Towns in Perquimans County, North Carolina -[2018-02-13T08:30:39.269] [INFO] cheese - batch complete in: 1.665 secs -[2018-02-13T08:30:39.279] [INFO] cheese - inserting 1000 documents. first: St. Theresita's Academy and last: 6 U.S.C. -[2018-02-13T08:30:39.282] [INFO] cheese - inserting 1000 documents. first: Category:1456 paintings and last: K. Engel -[2018-02-13T08:30:39.298] [INFO] cheese - inserting 1000 documents. first: Jim McFadden and last: I ♡ Natural -[2018-02-13T08:30:39.326] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:30:39.386] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:30:39.400] [INFO] cheese - inserting 1000 documents. first: Dima Halam Daoga and last: Michael Bacon (musician) -[2018-02-13T08:30:39.406] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:30:39.413] [INFO] cheese - inserting 1000 documents. first: Peter Chaus and last: File:Bill Hudson SOE.JPG -[2018-02-13T08:30:39.402] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:30:39.500] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:30:39.593] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:30:39.599] [INFO] cheese - inserting 1000 documents. first: R.J. Reynods and last: Jean-Bernard Ndongo Essomba -[2018-02-13T08:30:39.723] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:30:39.905] [INFO] cheese - inserting 1000 documents. first: Friedrich Paul Cilliers and last: File:Stan Walker - Take It Easy.jpg -[2018-02-13T08:30:40.055] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:30:40.152] [INFO] cheese - inserting 1000 documents. first: 2012 NAIA football rankings and last: Thomas Godwin (dean) -[2018-02-13T08:30:40.168] [INFO] cheese - inserting 1000 documents. first: Charles Salatka and last: Mentor Township, Lake County, Ohio -[2018-02-13T08:30:40.208] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:30:40.235] [INFO] cheese - inserting 1000 documents. first: Dor Deah and last: David Zabel -[2018-02-13T08:30:40.257] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:30:40.318] [INFO] cheese - inserting 1000 documents. first: Category:Videotape and last: Category:Armenia city templates -[2018-02-13T08:30:40.360] [INFO] cheese - inserting 1000 documents. first: Frank M. Angellotti and last: O-minimal -[2018-02-13T08:30:40.405] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:30:40.417] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:30:40.510] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:30:40.619] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Royalty Check and last: Phlogiston (Theory) -[2018-02-13T08:30:40.659] [INFO] cheese - inserting 1000 documents. first: Charles Baker (actor) and last: Habashi, West Azerbaijan -[2018-02-13T08:30:40.739] [INFO] cheese - inserting 1000 documents. first: Michael P. Decker and last: Heterobasidiomycetes -[2018-02-13T08:30:40.754] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:30:40.758] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:30:40.836] [INFO] cheese - inserting 1000 documents. first: Pansy Methodist Church School and last: Category:Southwestern Athletic Conference templates -[2018-02-13T08:30:40.903] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T08:30:40.956] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:30:41.138] [INFO] cheese - inserting 1000 documents. first: Hajo Hecht and last: Template:Trademark/doc -[2018-02-13T08:30:41.152] [INFO] cheese - inserting 1000 documents. first: Saughall and last: Château de Montrésor -[2018-02-13T08:30:41.220] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:30:41.354] [INFO] cheese - inserting 1000 documents. first: Service Ferry Training Squadron and last: Titanic Republic -[2018-02-13T08:30:41.362] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:30:41.458] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:30:41.464] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/John Osborne (writer) and last: St. Stephen's Episcopal School, Bradenton Fl. -[2018-02-13T08:30:41.471] [INFO] cheese - inserting 1000 documents. first: Hamzeh Kandi and last: Shirani, Sardasht -[2018-02-13T08:30:41.536] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:41.553] [INFO] cheese - inserting 1000 documents. first: Viscount Loftus and last: White Lake Middle School -[2018-02-13T08:30:41.551] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:30:41.667] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:30:41.747] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Panditejashri/Archive and last: Template:Missouri Valley Football Conference coach navbox -[2018-02-13T08:30:41.800] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:30:41.924] [INFO] cheese - inserting 1000 documents. first: BMC ADO 17 and last: 2008 PRC earthquake -[2018-02-13T08:30:41.928] [INFO] cheese - inserting 1000 documents. first: Rugby Channel and last: George Vail -[2018-02-13T08:30:41.975] [INFO] cheese - inserting 1000 documents. first: Sam Albarado and last: Cité internationale (Lyon) -[2018-02-13T08:30:41.985] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:30:41.988] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:30:42.013] [INFO] cheese - inserting 1000 documents. first: Tillandsia organensis and last: Wikipedia:Peer review/Bizenghast/archive1 -[2018-02-13T08:30:42.042] [INFO] cheese - inserting 1000 documents. first: Sanjuh and last: Sound Devices -[2018-02-13T08:30:42.048] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:30:42.099] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:30:42.126] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:30:42.276] [INFO] cheese - inserting 1000 documents. first: Margin call and last: No! -[2018-02-13T08:30:42.287] [INFO] cheese - inserting 1000 documents. first: Le Jour Ou La Pluie Viendra and last: Double Trouble (Thomas and Friends) -[2018-02-13T08:30:42.296] [INFO] cheese - inserting 1000 documents. first: Baton Rouge Observatory and last: Azimov -[2018-02-13T08:30:42.330] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:30:42.380] [INFO] cheese - batch complete in: 1.477 secs -[2018-02-13T08:30:42.401] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:30:42.565] [INFO] cheese - inserting 1000 documents. first: Arrested development (psychology) and last: Portal:Strategy games -[2018-02-13T08:30:42.630] [INFO] cheese - inserting 1000 documents. first: Cité Internationale (Lyon) and last: Category:Catholic church buildings in India -[2018-02-13T08:30:42.664] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:30:42.699] [INFO] cheese - inserting 1000 documents. first: Bayer Leverkusen II and last: Template:Texas (band) -[2018-02-13T08:30:42.702] [INFO] cheese - inserting 1000 documents. first: Category:1881 elections in the United States and last: Beth Ostrosky-Stern -[2018-02-13T08:30:42.710] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:30:42.753] [INFO] cheese - inserting 1000 documents. first: Shig Fukuyama and last: Portuguese national debt -[2018-02-13T08:30:42.783] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:30:42.791] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:30:42.852] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:30:42.964] [INFO] cheese - inserting 1000 documents. first: Christian - Serbian Orthodox and last: Wikipedia:WikiProject Spam/Local/paulzarzyski.com -[2018-02-13T08:30:43.039] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:30:43.118] [INFO] cheese - inserting 1000 documents. first: Enéas and last: Harold Josiah Finch -[2018-02-13T08:30:43.122] [INFO] cheese - inserting 1000 documents. first: Isaac azimov and last: Friedrich von Esmarch -[2018-02-13T08:30:43.148] [INFO] cheese - inserting 1000 documents. first: NV 50 and last: Forts in Wyoming -[2018-02-13T08:30:43.154] [INFO] cheese - inserting 1000 documents. first: Monte Ceneri (disambiguation) and last: Discus (website) -[2018-02-13T08:30:43.170] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:30:43.202] [INFO] cheese - inserting 1000 documents. first: Skinhead Rob Aston and last: Dharam Vir Magla -[2018-02-13T08:30:43.198] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:30:43.206] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:30:43.206] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:30:43.274] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:30:43.277] [INFO] cheese - inserting 1000 documents. first: Shantanu Kumar Acharya and last: Domestic violence in China -[2018-02-13T08:30:43.369] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:30:43.503] [INFO] cheese - inserting 1000 documents. first: Interstate 895 (Rhode Island-Massachusetts) and last: Klaipedos Nafta -[2018-02-13T08:30:43.537] [INFO] cheese - inserting 1000 documents. first: History of the Scots language and last: Rhön-Grabfeld -[2018-02-13T08:30:43.565] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:30:43.575] [INFO] cheese - inserting 1000 documents. first: List of parliaments by country and last: Mahon, Peter -[2018-02-13T08:30:43.623] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:30:43.639] [INFO] cheese - inserting 1000 documents. first: Gay Hills and last: Moray and Nairn byelection 1922 -[2018-02-13T08:30:43.673] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:30:43.789] [INFO] cheese - inserting 1000 documents. first: Schinia jaegeri and last: Felsenegg-Girstel TV-tower -[2018-02-13T08:30:43.803] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Robert O'Connor and last: Dolphin cove (SeaWorld) -[2018-02-13T08:30:43.839] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:30:43.886] [INFO] cheese - inserting 1000 documents. first: Eugenio Coseriu and last: Conny Wessmann -[2018-02-13T08:30:43.901] [INFO] cheese - inserting 1000 documents. first: Dagur Eggertsson and last: Template:Djursholmsbanan -[2018-02-13T08:30:43.905] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:30:43.912] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:30:44.003] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:30:44.015] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:30:44.179] [INFO] cheese - inserting 1000 documents. first: 1931–32 Galatasaray S.K. season and last: Central District (Saravan County) -[2018-02-13T08:30:44.259] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:30:44.285] [INFO] cheese - inserting 1000 documents. first: Marsh, Peter and last: Shipton Hall -[2018-02-13T08:30:44.377] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:30:44.412] [INFO] cheese - inserting 1000 documents. first: Windows 4 and last: Anson Class -[2018-02-13T08:30:44.443] [INFO] cheese - inserting 1000 documents. first: Ketao and last: Category:Suspected Wikipedia sockpuppets of Mudaliar -[2018-02-13T08:30:44.448] [INFO] cheese - inserting 1000 documents. first: Template:Uk-bio-stub and last: Intel Clear Video HD -[2018-02-13T08:30:44.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Saša Milivojev and last: Category:UMKC Kangaroos -[2018-02-13T08:30:44.477] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:30:44.529] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:30:44.531] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:30:44.555] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:30:44.711] [INFO] cheese - inserting 1000 documents. first: Archimedes' number and last: Camp Beauregard -[2018-02-13T08:30:44.808] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:30:44.858] [INFO] cheese - inserting 1000 documents. first: Template:National Ringette League teams (2015-16) and last: Category:1892 disasters in the United States -[2018-02-13T08:30:44.923] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:30:44.926] [INFO] cheese - inserting 1000 documents. first: Plopart and last: Skaggs, Ricky -[2018-02-13T08:30:44.999] [INFO] cheese - inserting 1000 documents. first: Hand gestures and last: Fukuyama, Kagoshima -[2018-02-13T08:30:45.030] [INFO] cheese - inserting 1000 documents. first: NYU Poly Fighting Jays and last: Template:Did you know nominations/Mercurana -[2018-02-13T08:30:45.036] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:30:45.089] [INFO] cheese - inserting 1000 documents. first: Vinegar Hill Township, Jo Daviess County, Illinois and last: Credit quality -[2018-02-13T08:30:45.126] [INFO] cheese - inserting 1000 documents. first: WTF? (song) and last: Leading-edge slots -[2018-02-13T08:30:45.134] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:30:45.181] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:30:45.314] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:30:45.326] [INFO] cheese - inserting 1000 documents. first: World Hum and last: Maitree Wickremasinghe -[2018-02-13T08:30:45.328] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:30:45.441] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:30:45.557] [INFO] cheese - inserting 1000 documents. first: Germanic place names in Australia, changed in 1917 and last: Wikipedia:Articles for deletion/England Women v Australia Women 2 September 2005 -[2018-02-13T08:30:45.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gourock Park Bowling Club and last: Category:Rugby union at the World Games -[2018-02-13T08:30:45.628] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:30:45.702] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:30:45.784] [INFO] cheese - inserting 1000 documents. first: Osor (disambiguation) and last: Paul Zarzyski -[2018-02-13T08:30:45.837] [INFO] cheese - inserting 1000 documents. first: Crazy Love (TV series) and last: Classical music in Scotland -[2018-02-13T08:30:45.874] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:30:45.934] [INFO] cheese - inserting 1000 documents. first: FIFA 03 and last: Vivek Rajkumar -[2018-02-13T08:30:45.933] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:30:45.947] [INFO] cheese - inserting 1000 documents. first: Quiksilver Big Wave Invitational and last: Indos -[2018-02-13T08:30:45.992] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:30:46.060] [INFO] cheese - inserting 1000 documents. first: Nether kellet and last: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality/10 -[2018-02-13T08:30:46.092] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:30:46.127] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:30:46.216] [INFO] cheese - inserting 1000 documents. first: Category:Philately-related lists and last: File:Nesthaekchen und ihre enkel.jpg -[2018-02-13T08:30:46.231] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/England Women v Australia Women 24-27 August 2005 and last: Summit Inn -[2018-02-13T08:30:46.299] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/go4customer.com and last: Dokuztekne, Ceyhan -[2018-02-13T08:30:46.286] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:30:46.290] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:30:46.449] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:30:46.548] [INFO] cheese - inserting 1000 documents. first: Aira District, Kagoshima and last: File:NikolaiBukharin.jpg -[2018-02-13T08:30:46.651] [INFO] cheese - inserting 1000 documents. first: Shrek the First and last: Wikipedia:Today's articles for improvement/2013/44/3 -[2018-02-13T08:30:46.700] [INFO] cheese - inserting 1000 documents. first: Cheddar Valley and Yatton Railway and last: Regulatory feedback network -[2018-02-13T08:30:46.703] [INFO] cheese - batch complete in: 1.522 secs -[2018-02-13T08:30:46.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality/11 and last: Russo-Turkish relations -[2018-02-13T08:30:46.759] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:30:46.776] [INFO] cheese - inserting 1000 documents. first: File:David Gray- Live (US cover).jpg and last: British Ambassador to Jordan -[2018-02-13T08:30:46.847] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:30:46.938] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:30:46.944] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:30:47.036] [INFO] cheese - inserting 1000 documents. first: Category:Disestablishments in Sweden and last: Jonathan G. Callahan -[2018-02-13T08:30:47.109] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:30:47.273] [INFO] cheese - inserting 1000 documents. first: Dumlu, Ceyhan and last: Lajar Terkembang -[2018-02-13T08:30:47.308] [INFO] cheese - inserting 1000 documents. first: Belarusian Premier League and last: Birdshot -[2018-02-13T08:30:47.342] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:30:47.437] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:30:47.497] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's articles for improvement/2013/44/4 and last: DMCH (disambiguation) -[2018-02-13T08:30:47.600] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:47.616] [INFO] cheese - inserting 1000 documents. first: The Devil Wears Prada (disambiguation) and last: Coleophora bothnicella -[2018-02-13T08:30:47.623] [INFO] cheese - inserting 1000 documents. first: Dark lager and last: Pebble-dashed -[2018-02-13T08:30:47.625] [INFO] cheese - inserting 1000 documents. first: British Ambassadors to Jordan and last: The :20 Minute Workout -[2018-02-13T08:30:47.710] [INFO] cheese - inserting 1000 documents. first: 48492 Utewielen and last: Category:Educational institutions in Auvergne-Rhône-Alpes -[2018-02-13T08:30:47.731] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:30:47.732] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:47.843] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:30:47.878] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:30:48.016] [INFO] cheese - inserting 1000 documents. first: Akpınar, Yüreğir and last: Kolb (disambiguation) -[2018-02-13T08:30:48.125] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:48.154] [INFO] cheese - inserting 1000 documents. first: HaKochav Lod F.C. and last: Category:Protected areas in Uva Province -[2018-02-13T08:30:48.168] [INFO] cheese - inserting 1000 documents. first: 1918 in Mexico and last: Wikipedia:Teahouse/Questions/Archive 150 -[2018-02-13T08:30:48.202] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T08:30:48.228] [INFO] cheese - inserting 1000 documents. first: Mega Tokoyo and last: District School Board of Niagara -[2018-02-13T08:30:48.267] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:30:48.269] [INFO] cheese - inserting 1000 documents. first: Ram Jam and last: Chinese Wall -[2018-02-13T08:30:48.412] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:30:48.463] [INFO] cheese - inserting 1000 documents. first: 1204 CE and last: 216 CE -[2018-02-13T08:30:48.477] [INFO] cheese - batch complete in: 1.773 secs -[2018-02-13T08:30:48.539] [INFO] cheese - inserting 1000 documents. first: Happy Lion and last: List of minor planets/149901–150000 -[2018-02-13T08:30:48.558] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T08:30:48.616] [INFO] cheese - inserting 1000 documents. first: Eco-costs value ratio and last: Chomkarmorn -[2018-02-13T08:30:48.725] [INFO] cheese - inserting 1000 documents. first: Iván Rocha and last: A Girl in Every Port (1928 film) -[2018-02-13T08:30:48.729] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:30:48.760] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:30:48.812] [INFO] cheese - inserting 1000 documents. first: File:Cover of Illusion and Realtity 1937.jpg and last: William C. Anderson (disambiguation) -[2018-02-13T08:30:48.871] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:30:48.986] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:30:48.993] [INFO] cheese - inserting 1000 documents. first: 215 CE and last: Template:Festivals by year pre1000 cat/doc -[2018-02-13T08:30:49.041] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Teahouse/Questions/Archive 151 and last: Ross, Jeanne W. -[2018-02-13T08:30:49.101] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:30:49.177] [INFO] cheese - inserting 1000 documents. first: Saturday Night Live TV show sketches and last: Slask Swietochlowice -[2018-02-13T08:30:49.193] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:30:49.225] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:30:49.508] [INFO] cheese - inserting 1000 documents. first: Category:Justiciars of Ireland and last: Polarsun Motor -[2018-02-13T08:30:49.527] [INFO] cheese - inserting 1000 documents. first: Lewis Wesley Cutrer and last: Malyavat Mountains -[2018-02-13T08:30:49.621] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:30:49.645] [INFO] cheese - inserting 1000 documents. first: IT Performance Management and last: Kaşköy, Adıyaman -[2018-02-13T08:30:49.683] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:30:49.707] [INFO] cheese - inserting 1000 documents. first: Template:Serbia men's water polo squad 2012 Summer Olympics and last: Brosh (disambiguation) -[2018-02-13T08:30:49.751] [INFO] cheese - inserting 1000 documents. first: I Run This and last: St Lizier d'Ustou -[2018-02-13T08:30:49.799] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:30:49.904] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:30:49.957] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:30:50.079] [INFO] cheese - inserting 1000 documents. first: List of Polish Uprisings and last: Kostroma (river) -[2018-02-13T08:30:50.094] [INFO] cheese - inserting 1000 documents. first: Livestock in the Basque Country and last: Day One: Garry's Incident -[2018-02-13T08:30:50.186] [INFO] cheese - inserting 1000 documents. first: Beta Columbae and last: AFDX -[2018-02-13T08:30:50.190] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:30:50.234] [INFO] cheese - batch complete in: 1.757 secs -[2018-02-13T08:30:50.365] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:30:50.488] [INFO] cheese - inserting 1000 documents. first: Performance based building design and last: Wine in Australia -[2018-02-13T08:30:50.531] [INFO] cheese - inserting 1000 documents. first: Waterlow baronets and last: Cape Feare (The Simpsons) -[2018-02-13T08:30:50.618] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:30:50.682] [INFO] cheese - inserting 1000 documents. first: Kemerkaya, Adıyaman and last: John William McIntosh -[2018-02-13T08:30:50.684] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:30:50.769] [INFO] cheese - inserting 1000 documents. first: Category:Film people from Northern Ireland and last: Norton House Historic District -[2018-02-13T08:30:50.773] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:30:50.898] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:30:50.909] [INFO] cheese - inserting 1000 documents. first: PSEI and last: Flag of Krasnodar Krai -[2018-02-13T08:30:50.917] [INFO] cheese - inserting 1000 documents. first: Portal:Geography of Kenya/Categories and last: Veenaa-Murali -[2018-02-13T08:30:50.994] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:30:51.009] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:30:51.206] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Varel and last: Wikipedia:Articles for deletion/Gary Gilbert Daffins -[2018-02-13T08:30:51.312] [INFO] cheese - inserting 1000 documents. first: Www.ucc.ie and last: Kevin Mannoia -[2018-02-13T08:30:51.367] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:30:51.395] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:30:51.501] [INFO] cheese - inserting 1000 documents. first: Esmee Denters and last: Perry Township, Pickaway County, Ohio -[2018-02-13T08:30:51.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Medicine/Translation task force/RTT/Simple Athlete's foot and last: Jiri Rezac -[2018-02-13T08:30:51.528] [INFO] cheese - inserting 1000 documents. first: Esma'ilaqa Qal'ehsi and last: 1987 IAAF World Cross Country Championships – Senior women's race -[2018-02-13T08:30:51.531] [INFO] cheese - inserting 1000 documents. first: Mologa (town) and last: Earl of Iddesleigh -[2018-02-13T08:30:51.563] [INFO] cheese - inserting 1000 documents. first: Bednye Rodstvenniki and last: Brian Jamieson (director) -[2018-02-13T08:30:51.587] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:30:51.603] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:30:51.643] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:30:51.637] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:30:51.760] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:30:51.812] [INFO] cheese - inserting 1000 documents. first: Trams of Putilov plant and last: Appleton, Nathan, Residence -[2018-02-13T08:30:51.939] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:30:52.251] [INFO] cheese - inserting 1000 documents. first: File:Santicover.jpg and last: Cconio -[2018-02-13T08:30:52.302] [INFO] cheese - inserting 1000 documents. first: Asplenium parvum and last: Mayor of Pitcairn -[2018-02-13T08:30:52.350] [INFO] cheese - inserting 1000 documents. first: Edele Lynch and last: The Pursuit of Illusion -[2018-02-13T08:30:52.359] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:30:52.362] [INFO] cheese - inserting 1000 documents. first: Mihajlo Anđelović and last: Wikipedia:WikiProject Military history/Assessment/Melbourne Castle -[2018-02-13T08:30:52.421] [INFO] cheese - inserting 1000 documents. first: TNN Motor Sports Hardcore 4x4 and last: Peter Barrett (cricketer) -[2018-02-13T08:30:52.430] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:30:52.530] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:30:52.614] [INFO] cheese - inserting 1000 documents. first: 2011 Lexus of Las Vegas Open and last: Category:History of Vatican City -[2018-02-13T08:30:52.614] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:30:52.652] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:30:52.745] [INFO] cheese - inserting 1000 documents. first: Joe Odegbami and last: Fantasia (singer) -[2018-02-13T08:30:52.816] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:30:52.853] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:30:53.211] [INFO] cheese - inserting 1000 documents. first: Kyle Sweeney and last: Cex -[2018-02-13T08:30:53.244] [INFO] cheese - inserting 1000 documents. first: File:Jack Truelove (on loan) Brackley Town 2015-2016.jpg and last: Infra (video game) -[2018-02-13T08:30:53.329] [INFO] cheese - inserting 1000 documents. first: Alexander J. Kaleri and last: Generalized special orthogonal group -[2018-02-13T08:30:53.351] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:30:53.353] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:30:53.460] [INFO] cheese - inserting 1000 documents. first: Pory Island and last: Tupuzabad, Urmia -[2018-02-13T08:30:53.475] [INFO] cheese - inserting 1000 documents. first: File:KayKayAlbumCover.jpg and last: The Battle of Piccadilly -[2018-02-13T08:30:53.460] [INFO] cheese - batch complete in: 1.823 secs -[2018-02-13T08:30:53.483] [INFO] cheese - inserting 1000 documents. first: Tharu and last: Jez diamond -[2018-02-13T08:30:53.546] [INFO] cheese - inserting 1000 documents. first: Arachnoid cyst and last: Cotton Mouth (disambiguation) -[2018-02-13T08:30:53.563] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:30:53.602] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:30:53.594] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:30:53.654] [INFO] cheese - inserting 1000 documents. first: Sampson Mordan and last: Wikipedia:WikiProject Spam/LinkReports/cacclw.ahf.nmci.navy.mil -[2018-02-13T08:30:53.744] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:30:53.861] [INFO] cheese - batch complete in: 1.208 secs -[2018-02-13T08:30:54.036] [INFO] cheese - inserting 1000 documents. first: Anton Holenkov and last: 李春城 -[2018-02-13T08:30:54.060] [INFO] cheese - inserting 1000 documents. first: Metea Valley High School and last: Richmond Upon Thames College -[2018-02-13T08:30:54.127] [INFO] cheese - inserting 1000 documents. first: Borhanlu and last: Severance, Idaho -[2018-02-13T08:30:54.157] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:30:54.192] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:54.261] [INFO] cheese - inserting 1000 documents. first: Cochran's test and last: File:Dickson multiplier with 2nd transistor.svg -[2018-02-13T08:30:54.296] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:54.383] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:30:54.434] [INFO] cheese - inserting 1000 documents. first: Andris Nauduzas and last: Wikipedia:Articles for deletion/Cast of Characters vs. The League of Extraordinary Gentlemen lawsuit -[2018-02-13T08:30:54.613] [INFO] cheese - inserting 1000 documents. first: John Mathews (lawyer) and last: Amicale des Originaires de l'A.E.F. -[2018-02-13T08:30:54.612] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:30:54.681] [INFO] cheese - inserting 1000 documents. first: Chancery Standard and last: Sam Hoger -[2018-02-13T08:30:54.759] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:30:54.857] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:30:54.886] [INFO] cheese - inserting 1000 documents. first: 金道铭 and last: Đuričić (disambiguation) -[2018-02-13T08:30:54.901] [INFO] cheese - inserting 1000 documents. first: Little Red Lighthouse and last: LPR -[2018-02-13T08:30:54.988] [INFO] cheese - inserting 1000 documents. first: Aden International Airport and last: Theory-theory -[2018-02-13T08:30:55.079] [INFO] cheese - inserting 1000 documents. first: Chaldoran-e Jonubi and last: Best play -[2018-02-13T08:30:55.103] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:30:55.112] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:30:55.143] [INFO] cheese - batch complete in: 1.683 secs -[2018-02-13T08:30:55.169] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 1231 and last: Shake it up -[2018-02-13T08:30:55.254] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:30:55.349] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:30:55.525] [INFO] cheese - inserting 1000 documents. first: Red McGregor and last: Texas Spur 77 -[2018-02-13T08:30:55.530] [INFO] cheese - inserting 1000 documents. first: Prva Petoletka and last: File:Ottawa jail.jpg -[2018-02-13T08:30:55.587] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:30:55.600] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:30:55.761] [INFO] cheese - inserting 1000 documents. first: File:LÉtrangeDéfaite.gif and last: Template:Get URL from WikiData/doc -[2018-02-13T08:30:55.814] [INFO] cheese - inserting 1000 documents. first: Steve Brooks (singer) and last: Magdalene Boat Club -[2018-02-13T08:30:55.854] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:55.892] [INFO] cheese - inserting 1000 documents. first: Erik Tammer and last: Category:Maine Supreme Judicial Court -[2018-02-13T08:30:55.899] [INFO] cheese - inserting 1000 documents. first: Heroes (season 4) and last: Susan Earner -[2018-02-13T08:30:55.949] [INFO] cheese - inserting 1000 documents. first: Pericopis modesta and last: Template:Stony Brook Seawolves men's basketball -[2018-02-13T08:30:55.969] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:30:56.038] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:30:56.060] [INFO] cheese - inserting 1000 documents. first: Hansenocaris and last: Regional School Unit 57 -[2018-02-13T08:30:56.081] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:30:56.093] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:30:56.180] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:30:56.226] [INFO] cheese - inserting 1000 documents. first: File:KKBS logo.jpg and last: Wikipedia:Articles for deletion/Boeing 797 (2nd nomination) -[2018-02-13T08:30:56.278] [INFO] cheese - inserting 1000 documents. first: QuikAir and last: CD Radio -[2018-02-13T08:30:56.351] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:30:56.497] [INFO] cheese - inserting 1000 documents. first: Rollins, Jack and last: Schottky junction solar cell -[2018-02-13T08:30:56.485] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T08:30:56.611] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:30:56.680] [INFO] cheese - inserting 1000 documents. first: Benjamin Kipkoech Limo and last: Sheykh Mahalleh, Amol -[2018-02-13T08:30:56.742] [INFO] cheese - inserting 1000 documents. first: The 45 king and last: Yordim -[2018-02-13T08:30:56.753] [INFO] cheese - inserting 1000 documents. first: Category:University of Guyana and last: Frank Fertitta III -[2018-02-13T08:30:56.768] [INFO] cheese - inserting 1000 documents. first: Bobby Herrera and last: Category:Education in West Baton Rouge Parish, Louisiana -[2018-02-13T08:30:56.772] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:30:56.821] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:30:56.877] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:30:56.919] [INFO] cheese - inserting 1000 documents. first: Category:Wisconsin Badgers women's ice hockey players and last: Matki (earthen pot) -[2018-02-13T08:30:56.926] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:30:57.044] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:30:57.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Hilary of Chichester/archive1 and last: Tuó -[2018-02-13T08:30:57.236] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:30:57.331] [INFO] cheese - inserting 1000 documents. first: 31487 Parthchopra and last: Draft:Dr. Robert M. Shuter -[2018-02-13T08:30:57.399] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:30:57.419] [INFO] cheese - inserting 1000 documents. first: Tiran, Mazandaran and last: Dutch Americans in Michigan -[2018-02-13T08:30:57.487] [INFO] cheese - inserting 1000 documents. first: Marius Lăcătuş and last: United States House of Representatives elections in Tennessee, 1928 -[2018-02-13T08:30:57.500] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:30:57.525] [INFO] cheese - inserting 1000 documents. first: Moon Six and last: Duhem–Quine thesis -[2018-02-13T08:30:57.531] [INFO] cheese - inserting 1000 documents. first: Ding Dong mine and last: City of Sherbrooke -[2018-02-13T08:30:57.585] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:30:57.606] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:30:57.735] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:30:57.856] [INFO] cheese - inserting 1000 documents. first: 1962–63 Austrian football championship and last: Nag Hammâdi -[2018-02-13T08:30:57.867] [INFO] cheese - inserting 1000 documents. first: Élton José Xavier Gomes and last: William Irvine (Scotland) -[2018-02-13T08:30:57.869] [INFO] cheese - inserting 1000 documents. first: USWA and last: A Small Killing -[2018-02-13T08:30:57.903] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:30:57.983] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:30:58.013] [INFO] cheese - batch complete in: 1.528 secs -[2018-02-13T08:30:58.075] [INFO] cheese - inserting 1000 documents. first: Dr. Robert M. Shuter and last: Regina Russell -[2018-02-13T08:30:58.240] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:30:58.290] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Tennessee, 1934 and last: Ercole Calvi -[2018-02-13T08:30:58.322] [INFO] cheese - inserting 1000 documents. first: File:Signal it left.gif and last: Ralph Wycherley -[2018-02-13T08:30:58.388] [INFO] cheese - inserting 1000 documents. first: Golden Eye: Rogue Agent and last: UEC European Champion jersey -[2018-02-13T08:30:58.482] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:30:58.499] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:30:58.613] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:30:58.804] [INFO] cheese - inserting 1000 documents. first: Tasar and last: Category:Municipalities of Compostela Valley -[2018-02-13T08:30:58.853] [INFO] cheese - inserting 1000 documents. first: Gaja(2008 film) and last: Obruchevichthys -[2018-02-13T08:30:58.895] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:30:58.925] [INFO] cheese - inserting 1000 documents. first: Smoke Jaguar and last: Category:Politics of Chhattisgarh -[2018-02-13T08:30:58.973] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:30:59.111] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:30:59.174] [INFO] cheese - inserting 1000 documents. first: Foolproof plant and last: Category:1975 establishments in Sri Lanka -[2018-02-13T08:30:59.311] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:30:59.404] [INFO] cheese - inserting 1000 documents. first: Now Deh-e Harazpey and last: Category:Chinese women philosophers -[2018-02-13T08:30:59.465] [INFO] cheese - inserting 1000 documents. first: Minuscule 511 and last: Charlie Palmer (chef) -[2018-02-13T08:30:59.488] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:30:59.537] [INFO] cheese - inserting 1000 documents. first: Marcelino Vargas and last: E. M. B. Ingram -[2018-02-13T08:30:59.615] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:30:59.667] [INFO] cheese - inserting 1000 documents. first: Andre Leysen and last: Frank Schatzing -[2018-02-13T08:30:59.687] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:30:59.736] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:30:59.861] [INFO] cheese - inserting 1000 documents. first: 13775 Thébault and last: Category:Tamil Nadu state legislation -[2018-02-13T08:30:59.878] [INFO] cheese - inserting 1000 documents. first: Alfriston and last: Carl Swartz -[2018-02-13T08:30:59.942] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:31:00.023] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:31:00.074] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/beatnjuice.cz and last: Robert Wiblin -[2018-02-13T08:31:00.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion requests and last: White separatism -[2018-02-13T08:31:00.116] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Rankin County, Mississippi and last: Anupama chandrasekhar -[2018-02-13T08:31:00.196] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:31:00.228] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:31:00.264] [INFO] cheese - inserting 1000 documents. first: Celtic Woman: Songs From The Heart and last: Dyckia saxatilis -[2018-02-13T08:31:00.281] [INFO] cheese - batch complete in: 2.268 secs -[2018-02-13T08:31:00.379] [INFO] cheese - inserting 1000 documents. first: Frank Worndl and last: Category:New Zealand field hockey biography stubs -[2018-02-13T08:31:00.431] [INFO] cheese - inserting 1000 documents. first: Gökçe, Kahta and last: File:It Ain't Me Babe Johnny Cash June Carter.ogg -[2018-02-13T08:31:00.437] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:31:00.468] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:31:00.617] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:31:00.847] [INFO] cheese - inserting 1000 documents. first: John II, Count of Blois and last: Seccession -[2018-02-13T08:31:00.872] [INFO] cheese - inserting 1000 documents. first: 2916 Voronveliya and last: Template:Bulgaria in World War I -[2018-02-13T08:31:00.973] [INFO] cheese - inserting 1000 documents. first: Alexander Harper (priest) and last: Green Man Fest -[2018-02-13T08:31:00.993] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:31:00.995] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:31:01.103] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ciro Ayala and last: File:Pronto Airways Logo.gif -[2018-02-13T08:31:01.163] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:31:01.222] [INFO] cheese - inserting 1000 documents. first: Rust-eze and last: Wikipedia:Worldwide view -[2018-02-13T08:31:01.276] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:31:01.349] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:31:01.431] [INFO] cheese - inserting 1000 documents. first: Nadeem (actor) and last: Wikipedia:WikiProject Spam/LinkReports/astrovashikaran.com -[2018-02-13T08:31:01.585] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:31:01.690] [INFO] cheese - inserting 1000 documents. first: Captured Live at Carnegie Hall and last: Longford, Gloucester -[2018-02-13T08:31:01.819] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:31:01.918] [INFO] cheese - inserting 1000 documents. first: WCRS and last: Talbut -[2018-02-13T08:31:01.953] [INFO] cheese - inserting 1000 documents. first: Gunther Bechem and last: Wikipedia:Reference desk/Archives/Computing/2007 January 29 -[2018-02-13T08:31:02.050] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:31:02.138] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:31:02.146] [INFO] cheese - inserting 1000 documents. first: Lorton (VA) and last: The Crusades (film) -[2018-02-13T08:31:02.156] [INFO] cheese - inserting 1000 documents. first: Over the Rainbow and last: Wikipedia:Historical archive/Imported pictures/Pictures from southwarkphotolibrary.co.uk details -[2018-02-13T08:31:02.185] [INFO] cheese - inserting 1000 documents. first: Mora (fish) and last: Atherton Church House -[2018-02-13T08:31:02.295] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:31:02.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/astrovashikaran.com and last: Category:Austro-Hungarian fighter aircraft 1910–1919 -[2018-02-13T08:31:02.346] [INFO] cheese - inserting 1000 documents. first: Speedway Casino and last: HeSung -[2018-02-13T08:31:02.361] [INFO] cheese - inserting 1000 documents. first: Torodora characteris and last: 30061 Vishnushankar -[2018-02-13T08:31:02.382] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:31:02.451] [INFO] cheese - batch complete in: 2.169 secs -[2018-02-13T08:31:02.539] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:31:02.616] [INFO] cheese - batch complete in: 1.34 secs -[2018-02-13T08:31:02.697] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:31:02.849] [INFO] cheese - inserting 1000 documents. first: Geometric isomerase and last: Category:Operating system criticisms -[2018-02-13T08:31:03.010] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:31:03.135] [INFO] cheese - inserting 1000 documents. first: Johannes Jonsson and last: University of Pittsburgh Graduate School of Public & International Affairs (GSPIA) -[2018-02-13T08:31:03.222] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:31:03.272] [INFO] cheese - inserting 1000 documents. first: Program in Placebo Studies and last: Ciaran Gribbin -[2018-02-13T08:31:03.328] [INFO] cheese - inserting 1000 documents. first: Tuoba Liwei and last: 1784 in art -[2018-02-13T08:31:03.353] [INFO] cheese - inserting 1000 documents. first: Sipenit and last: Category:Start-Class Karachi articles -[2018-02-13T08:31:03.409] [INFO] cheese - inserting 1000 documents. first: Microsoft Corp. v Commission of the European Communities and last: Farmingdale, South Dakota -[2018-02-13T08:31:03.486] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:31:03.502] [INFO] cheese - batch complete in: 1.206 secs -[2018-02-13T08:31:03.508] [INFO] cheese - inserting 1000 documents. first: File:Jonny Logan.jpg and last: Thomas Elliot (disambiguation) -[2018-02-13T08:31:03.510] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:31:03.632] [INFO] cheese - batch complete in: 0.935 secs -[2018-02-13T08:31:03.686] [INFO] cheese - inserting 1000 documents. first: Āsoār and last: Template:POTD protected/2008-05-20 -[2018-02-13T08:31:03.669] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:31:03.847] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:31:04.076] [INFO] cheese - inserting 1000 documents. first: Template:Kalmar County and last: Hilltop Youth -[2018-02-13T08:31:04.126] [INFO] cheese - inserting 1000 documents. first: Atatürk Kültür Merkezi and last: Template:Dutch municipality Coevorden -[2018-02-13T08:31:04.197] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:31:04.207] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Karachi articles and last: Wikipedia:Articles for deletion/If You Feel My Love (album) -[2018-02-13T08:31:04.209] [INFO] cheese - batch complete in: 1.758 secs -[2018-02-13T08:31:04.227] [INFO] cheese - inserting 1000 documents. first: Sevel HaYerushah and last: Christiana Louizu -[2018-02-13T08:31:04.239] [INFO] cheese - inserting 1000 documents. first: Poincaré–Einstein synchronization and last: Category:United States House of Representatives elections, 1908 -[2018-02-13T08:31:04.284] [INFO] cheese - inserting 1000 documents. first: Sunday Mail and last: Josiah Quincy (disambiguation) -[2018-02-13T08:31:04.304] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:31:04.302] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:31:04.318] [INFO] cheese - inserting 1000 documents. first: United States federal government shutdowns of 1995–96 and last: A Coney Island Princess -[2018-02-13T08:31:04.346] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:31:04.420] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:31:04.495] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:31:04.565] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2008-05-21 and last: Bowling Green, KY Metropolitan Area -[2018-02-13T08:31:04.719] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:31:04.897] [INFO] cheese - inserting 1000 documents. first: Bediagal and last: Mg road bangalore -[2018-02-13T08:31:04.927] [INFO] cheese - inserting 1000 documents. first: File:GPL front gate added by Saurabhsulabh Singh.jpeg and last: List of television programs: E -[2018-02-13T08:31:04.997] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:31:05.090] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:31:05.230] [INFO] cheese - inserting 1000 documents. first: Manu Guix and last: Billy Best -[2018-02-13T08:31:05.269] [INFO] cheese - inserting 1000 documents. first: Springfield High School (Akron, Ohio) and last: United States House of Representatives elections in Minnesota, 1940 -[2018-02-13T08:31:05.315] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:31:05.379] [INFO] cheese - inserting 1000 documents. first: Category:Villages in Montgomery County, Ohio and last: Stephen Jackson (canoer) -[2018-02-13T08:31:05.384] [INFO] cheese - inserting 1000 documents. first: Bowling Green, KY metropolitan area and last: Katie Sierra -[2018-02-13T08:31:05.415] [INFO] cheese - inserting 1000 documents. first: Chocolate Starfish And The Hot Dog Flavored Water and last: Category:Danish archers -[2018-02-13T08:31:05.416] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:31:05.498] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:31:05.494] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:31:05.513] [INFO] cheese - inserting 1000 documents. first: Belgorod and last: Empetrum -[2018-02-13T08:31:05.561] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:31:05.722] [INFO] cheese - batch complete in: 1.512 secs -[2018-02-13T08:31:05.731] [INFO] cheese - inserting 1000 documents. first: Ali Nassirian and last: Teleki Pál -[2018-02-13T08:31:05.747] [INFO] cheese - inserting 1000 documents. first: Lymphatic systems and last: Papilla duodeni -[2018-02-13T08:31:05.854] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:31:05.873] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:31:06.032] [INFO] cheese - inserting 1000 documents. first: Transformers: The War for Cybertron and last: Template:Humanist Party (Chile)/meta/color -[2018-02-13T08:31:06.066] [INFO] cheese - inserting 1000 documents. first: Template:Video game awards and last: Lamarun -[2018-02-13T08:31:06.087] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:31:06.142] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:31:06.171] [INFO] cheese - inserting 1000 documents. first: Sheep Pool and last: 5031 Švejcar -[2018-02-13T08:31:06.244] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:31:06.403] [INFO] cheese - inserting 1000 documents. first: Jonas Svensson (bandy) and last: Cesar Chavez State Park -[2018-02-13T08:31:06.449] [INFO] cheese - inserting 1000 documents. first: Sergey Miroshnichenko (ice hockey) and last: Trudl Dubsky -[2018-02-13T08:31:06.459] [INFO] cheese - inserting 1000 documents. first: Category:Danish table tennis players and last: File:CBDTSVsth.jpg -[2018-02-13T08:31:06.499] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:31:06.612] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:31:06.615] [INFO] cheese - inserting 1000 documents. first: United States House of Representatives elections in Minnesota, 1942 and last: Template:Latter Day Saint biography/Spencer W. Kimball -[2018-02-13T08:31:06.656] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:31:06.697] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:31:06.858] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Image Tag Team and last: Indiana University – Purdue University Indianapolis -[2018-02-13T08:31:06.869] [INFO] cheese - inserting 1000 documents. first: Template:Independent Democratic Union/meta/color and last: Serrolândia -[2018-02-13T08:31:06.916] [INFO] cheese - inserting 1000 documents. first: File:Chiquititas-2013-logo-2013.jpg and last: Pija Kola -[2018-02-13T08:31:06.950] [INFO] cheese - inserting 1000 documents. first: Karl Max, Fürst von Lichnowsky and last: Rieko Matsuura -[2018-02-13T08:31:06.962] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:31:06.981] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:31:07.057] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:31:07.134] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:31:07.138] [INFO] cheese - inserting 1000 documents. first: MTech and last: 1734 in poetry -[2018-02-13T08:31:07.252] [INFO] cheese - inserting 1000 documents. first: RXNO and last: Sara Annie Burstall -[2018-02-13T08:31:07.267] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:31:07.368] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:31:07.609] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/HMS Duke of Edinburgh and last: Stittsville station -[2018-02-13T08:31:07.714] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:31:07.828] [INFO] cheese - inserting 1000 documents. first: Qadi Kola, Babol and last: Eilema erythropleura -[2018-02-13T08:31:07.857] [INFO] cheese - inserting 1000 documents. first: Cadaley and last: (100044) 1991 TX -[2018-02-13T08:31:08.016] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:31:08.061] [INFO] cheese - inserting 1000 documents. first: C. harold smith and last: File:The new lot 160.jpg -[2018-02-13T08:31:08.127] [INFO] cheese - batch complete in: 1.43 secs -[2018-02-13T08:31:08.234] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:31:08.480] [INFO] cheese - inserting 1000 documents. first: Várzea do Poço and last: Sensitisers -[2018-02-13T08:31:08.495] [INFO] cheese - inserting 1000 documents. first: Windham High School (Ohio) and last: File:Citycreek.jpg -[2018-02-13T08:31:08.553] [INFO] cheese - batch complete in: 1.591 secs -[2018-02-13T08:31:08.593] [INFO] cheese - inserting 1000 documents. first: Saproscincus galli and last: PE teacher -[2018-02-13T08:31:08.674] [INFO] cheese - inserting 1000 documents. first: Casa Cosmana Navarra and last: The Journey Home (book) -[2018-02-13T08:31:08.717] [INFO] cheese - batch complete in: 1.449 secs -[2018-02-13T08:31:08.741] [INFO] cheese - inserting 1000 documents. first: Indiana University Purdue University at Indianapolis and last: Thousand islands dressing -[2018-02-13T08:31:08.799] [INFO] cheese - batch complete in: 1.431 secs -[2018-02-13T08:31:08.823] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:31:09.031] [INFO] cheese - batch complete in: 2.05 secs -[2018-02-13T08:31:09.199] [INFO] cheese - inserting 1000 documents. first: File:Our Gracie.jpeg and last: KDE Contour -[2018-02-13T08:31:09.341] [INFO] cheese - inserting 1000 documents. first: Donald James Randall and last: EV Lacertae -[2018-02-13T08:31:09.359] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T08:31:09.413] [INFO] cheese - inserting 1000 documents. first: Neko Case and her Boyfriends and last: Hapag -[2018-02-13T08:31:09.476] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:31:09.726] [INFO] cheese - inserting 1000 documents. first: Giorgi Kilasonia and last: Wikipedia:Articles for deletion/Virtual Dispatch -[2018-02-13T08:31:09.763] [INFO] cheese - inserting 1000 documents. first: Candy Lachance and last: Jeremy Erhart -[2018-02-13T08:31:09.780] [INFO] cheese - inserting 1000 documents. first: Aliénor D'aquitaine and last: Al Kaleh -[2018-02-13T08:31:09.805] [INFO] cheese - batch complete in: 2.091 secs -[2018-02-13T08:31:09.831] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:31:09.903] [INFO] cheese - inserting 1000 documents. first: Category:2 star officers of the Bundeswehr and last: Maecky Ngombo -[2018-02-13T08:31:09.966] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:31:09.998] [INFO] cheese - batch complete in: 1.445 secs -[2018-02-13T08:31:10.162] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:31:10.385] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Self-portrait with a friend and last: Trial of Doctor Conrad Murray -[2018-02-13T08:31:10.479] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:31:10.558] [INFO] cheese - inserting 1000 documents. first: Raymond Murray (speed skater) and last: Hypatius of Gangra -[2018-02-13T08:31:10.655] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:31:10.807] [INFO] cheese - inserting 1000 documents. first: Category:Former communes of Haut-Rhin and last: File:The Death of Bessie Smith by Rose Piper, 1947.jpg -[2018-02-13T08:31:10.850] [INFO] cheese - inserting 1000 documents. first: HAPAG and last: GE Dash 8-32BWH -[2018-02-13T08:31:10.967] [INFO] cheese - inserting 1000 documents. first: Manchester Township, Boone County, Illinois and last: Photo 51 -[2018-02-13T08:31:10.989] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:31:11.012] [INFO] cheese - inserting 1000 documents. first: Category:Hospitals in Rwanda and last: Water Management Areas -[2018-02-13T08:31:11.051] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:31:11.126] [INFO] cheese - inserting 1000 documents. first: Dizeh Posht and last: Faac -[2018-02-13T08:31:11.130] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:31:11.144] [INFO] cheese - batch complete in: 1.313 secs -[2018-02-13T08:31:11.248] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:31:11.301] [INFO] cheese - inserting 1000 documents. first: Anton Ens and last: File:LiverpoolNSWmap.jpg -[2018-02-13T08:31:11.363] [INFO] cheese - inserting 1000 documents. first: Random oracle model and last: Battle of Savo Island -[2018-02-13T08:31:11.396] [INFO] cheese - inserting 1000 documents. first: Kweku Adoboli and last: File:Cyborg JLA.jpg -[2018-02-13T08:31:11.465] [INFO] cheese - inserting 1000 documents. first: Association des Oulémas Musulmans Algériens and last: Flattened Meadow-grass -[2018-02-13T08:31:11.472] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:31:11.475] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:31:11.580] [INFO] cheese - batch complete in: 2.549 secs -[2018-02-13T08:31:11.599] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:31:11.775] [INFO] cheese - inserting 1000 documents. first: Plasq and last: Primera Divison Argentina -[2018-02-13T08:31:11.777] [INFO] cheese - inserting 1000 documents. first: 1988 Singapore Open – Doubles (women's tennis) and last: Wikipedia:Articles for deletion/Netty Leek -[2018-02-13T08:31:11.849] [INFO] cheese - inserting 1000 documents. first: Dirty Pop Fantasy and last: Category:1981–82 Sun Belt Conference men's basketball season -[2018-02-13T08:31:11.866] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:31:11.879] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:31:11.949] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:31:11.956] [INFO] cheese - inserting 1000 documents. first: Moelln (Schleswig-Holstein) and last: CDGVAL -[2018-02-13T08:31:11.958] [INFO] cheese - inserting 1000 documents. first: Gomponsom Department and last: Choshuenco -[2018-02-13T08:31:12.024] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Panola County, Mississippi and last: 1971 VFA Grand Final -[2018-02-13T08:31:12.024] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:31:12.069] [INFO] cheese - inserting 1000 documents. first: Category:400s BC by continent and last: File:Ohel - interior.jpg -[2018-02-13T08:31:12.073] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:31:12.118] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:31:12.137] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:31:12.315] [INFO] cheese - inserting 1000 documents. first: David Aldus and last: Churchill UK -[2018-02-13T08:31:12.352] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:31:12.358] [INFO] cheese - inserting 1000 documents. first: Category:1982–83 Sun Belt Conference men's basketball season and last: Photobombed -[2018-02-13T08:31:12.380] [INFO] cheese - inserting 1000 documents. first: Twin Valley South High School and last: File:Las americas sunset.JPG -[2018-02-13T08:31:12.419] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:31:12.454] [INFO] cheese - inserting 1000 documents. first: Template:Annotated image/doc and last: Utah State Route 69 (pre-1977) -[2018-02-13T08:31:12.454] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:31:12.516] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:31:12.537] [INFO] cheese - inserting 1000 documents. first: Category:Embry–Riddle Aeronautical University and last: Mirte Kraaijkamp -[2018-02-13T08:31:12.558] [INFO] cheese - inserting 1000 documents. first: USS Conner (DD-582) and last: Wikipedia:Articles for deletion/Eurotophobia -[2018-02-13T08:31:12.589] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:31:12.619] [INFO] cheese - inserting 1000 documents. first: O. Y. Schmidt and last: Vespiri Siciliani -[2018-02-13T08:31:12.627] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:31:12.673] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:31:12.763] [INFO] cheese - inserting 1000 documents. first: Lockheed TR-1 and last: Orange box -[2018-02-13T08:31:12.775] [INFO] cheese - inserting 1000 documents. first: Template:S-line/VGF left/U3 and last: Pu'apu'a -[2018-02-13T08:31:12.826] [INFO] cheese - inserting 1000 documents. first: Photobomber and last: Category:Cities and towns in Ramabai Nagar district -[2018-02-13T08:31:12.868] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:31:12.873] [INFO] cheese - batch complete in: 1.292 secs -[2018-02-13T08:31:12.914] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:31:12.925] [INFO] cheese - inserting 1000 documents. first: Utah State Route 69 (1977) and last: Jarrod O'Donnell -[2018-02-13T08:31:12.967] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/fashion.about.com and last: King, Andrew -[2018-02-13T08:31:13.050] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Yaacov Deyo and last: Maouloud Baby v. State -[2018-02-13T08:31:13.050] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:31:13.056] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:31:13.206] [INFO] cheese - inserting 1000 documents. first: Bela dama Devinska and last: 1999 World Indoor Championships in Athletics – Men's 60 metres -[2018-02-13T08:31:13.232] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:31:13.247] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:31:13.383] [INFO] cheese - inserting 1000 documents. first: Mayor of Munich and last: Gunnamatta Bay -[2018-02-13T08:31:13.437] [INFO] cheese - inserting 1000 documents. first: 1980 TANFL season and last: Picoazà -[2018-02-13T08:31:13.460] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:31:13.483] [INFO] cheese - inserting 1000 documents. first: King, Ben and last: Doppels -[2018-02-13T08:31:13.494] [INFO] cheese - inserting 1000 documents. first: LP (Insomniac Folklore album) and last: Accelerando (novel) -[2018-02-13T08:31:13.535] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:31:13.607] [INFO] cheese - inserting 1000 documents. first: File:Dr. Who Cushing.jpg and last: Wikipedia:Editor review/Bob the Wikipedian -[2018-02-13T08:31:13.617] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:31:13.637] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:31:13.695] [INFO] cheese - inserting 1000 documents. first: 1999 IAAF World Indoor Championships in Athletics – Men's 60 metres and last: File:Logo Twibbon.png -[2018-02-13T08:31:13.738] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:31:13.815] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:31:14.066] [INFO] cheese - inserting 1000 documents. first: Group 12 element and last: Albert Woolson -[2018-02-13T08:31:14.142] [INFO] cheese - inserting 1000 documents. first: Angela Salvagno and last: Category:Phi Kappa Tau -[2018-02-13T08:31:14.179] [INFO] cheese - inserting 1000 documents. first: Sir Bors de Ganis and last: Category:Lakes of Pennsylvania -[2018-02-13T08:31:14.185] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Rahul Thakkar and last: File:Gonzo the Great.jpg -[2018-02-13T08:31:14.199] [INFO] cheese - inserting 1000 documents. first: Scenic Cruiser and last: Flammulaster erinaceellus -[2018-02-13T08:31:14.218] [INFO] cheese - batch complete in: 1.344 secs -[2018-02-13T08:31:14.251] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:31:14.317] [INFO] cheese - inserting 1000 documents. first: × Ortholarium 'Hades' and last: Muscat rouge à petits grains -[2018-02-13T08:31:14.325] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:31:14.374] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:31:14.386] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:31:14.475] [INFO] cheese - inserting 1000 documents. first: Template:WikiProject Montreal and last: File:Maj Gen K Zorawar Singh.jpg -[2018-02-13T08:31:14.490] [INFO] cheese - inserting 1000 documents. first: Luqiao Airport and last: Antrostomus arizonae -[2018-02-13T08:31:14.492] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:31:14.563] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:31:14.581] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:31:14.721] [INFO] cheese - inserting 1000 documents. first: School Mates and last: Wikipedia:Alternative term -[2018-02-13T08:31:14.764] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:31:14.899] [INFO] cheese - inserting 1000 documents. first: Half-Wit and last: Mobilome -[2018-02-13T08:31:14.971] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:31:14.996] [INFO] cheese - inserting 1000 documents. first: Diabetic angiopathy and last: Wikipedia:Articles for deletion/Revelation 4:11 -[2018-02-13T08:31:15.029] [INFO] cheese - inserting 1000 documents. first: International Association of Financial Executives Institutes and last: KOI-94 -[2018-02-13T08:31:15.071] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:31:15.087] [INFO] cheese - inserting 1000 documents. first: Coleophora ochripennella: and last: Ayloffe (surname) -[2018-02-13T08:31:15.110] [INFO] cheese - inserting 1000 documents. first: Guy Giorno and last: Boeing 707-300 -[2018-02-13T08:31:15.122] [INFO] cheese - inserting 1000 documents. first: Larisa Krivtsova and last: Price, Walter -[2018-02-13T08:31:15.124] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:31:15.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/DenyHosts and last: Milhã -[2018-02-13T08:31:15.176] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:31:15.261] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:31:15.299] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:31:15.377] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:31:15.616] [INFO] cheese - inserting 1000 documents. first: Skew form and last: Michaël Isabey -[2018-02-13T08:31:15.632] [INFO] cheese - inserting 1000 documents. first: Chitterlings and last: Platanista Gangetica -[2018-02-13T08:31:15.703] [INFO] cheese - inserting 1000 documents. first: Rea, Walter and last: Dehar Hydroelectric Project -[2018-02-13T08:31:15.730] [INFO] cheese - inserting 1000 documents. first: Taiwan Sugar Museum (Kaohsiung) and last: Crush (Haven) -[2018-02-13T08:31:15.744] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:31:15.763] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:31:15.805] [INFO] cheese - batch complete in: 1.587 secs -[2018-02-13T08:31:15.861] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:31:15.904] [INFO] cheese - inserting 1000 documents. first: Gaston casas and last: Qasr el-sir -[2018-02-13T08:31:15.928] [INFO] cheese - inserting 1000 documents. first: Valters and Kazha and last: R.D.Winters -[2018-02-13T08:31:15.993] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:31:15.999] [INFO] cheese - inserting 1000 documents. first: Ventricular septum and last: Southern Pacific class GS-4 -[2018-02-13T08:31:16.089] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:31:16.101] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:31:16.262] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Industrial design/Header and last: Aichi S1A -[2018-02-13T08:31:16.331] [INFO] cheese - inserting 1000 documents. first: File:Live223.jpg and last: Vitebskaya -[2018-02-13T08:31:16.333] [INFO] cheese - inserting 1000 documents. first: Yanping Yuan and last: Thomas Busby (disambiguation) -[2018-02-13T08:31:16.340] [INFO] cheese - inserting 1000 documents. first: Last Shot (Gregg Hurwitz novel) and last: Chatelain, Jeremy -[2018-02-13T08:31:16.415] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:31:16.523] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:31:16.603] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:31:16.610] [INFO] cheese - inserting 1000 documents. first: Tva and last: Category:Establishments in Turkmenistan by decade -[2018-02-13T08:31:16.629] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:31:16.657] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Joinville and last: Wikipedia:WikiProject Cricket/Peer review/The Ashes -[2018-02-13T08:31:16.765] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:31:16.798] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:31:16.996] [INFO] cheese - inserting 1000 documents. first: Technion University and last: Bendezium -[2018-02-13T08:31:17.101] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:31:17.114] [INFO] cheese - inserting 1000 documents. first: Jack Nelson (disambiguation) and last: Ben L. Parker -[2018-02-13T08:31:17.187] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:31:17.196] [INFO] cheese - inserting 1000 documents. first: Enrique Amorim and last: Wikipedia:Selected anniversaries/July 3 -[2018-02-13T08:31:17.206] [INFO] cheese - inserting 1000 documents. first: Hayes, Jeremy and last: Bartlett, Jason -[2018-02-13T08:31:17.230] [INFO] cheese - inserting 1000 documents. first: Électre (opera) and last: Argyros family -[2018-02-13T08:31:17.280] [INFO] cheese - inserting 1000 documents. first: Portal:Napoleonic Wars/GA/85 and last: James & Oliver Phelps -[2018-02-13T08:31:17.326] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:31:17.331] [INFO] cheese - batch complete in: 1.525 secs -[2018-02-13T08:31:17.359] [INFO] cheese - inserting 1000 documents. first: Wohlk brothers and last: Category:People from Willenhall -[2018-02-13T08:31:17.363] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:31:17.405] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:31:17.423] [INFO] cheese - inserting 1000 documents. first: BeRTOS and last: Agias -[2018-02-13T08:31:17.486] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:31:17.552] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:31:17.787] [INFO] cheese - inserting 1000 documents. first: Donald M. Davis and last: File:Feelingb-grunundblaubig.jpg -[2018-02-13T08:31:17.844] [INFO] cheese - inserting 1000 documents. first: Template:POTD/2013-11-20 and last: List of Polish artists nominated for MTV Europe Music Awards -[2018-02-13T08:31:17.848] [INFO] cheese - inserting 1000 documents. first: Blair, Jason and last: Barrowammo -[2018-02-13T08:31:17.849] [INFO] cheese - inserting 1000 documents. first: Supergate and last: Sakaki (disambiguation) -[2018-02-13T08:31:17.850] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:31:17.944] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:31:17.953] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:31:17.999] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:31:18.166] [INFO] cheese - inserting 1000 documents. first: File:Cockroaches.ogg and last: File:Malolos Santor.jpg -[2018-02-13T08:31:18.285] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:31:18.396] [INFO] cheese - inserting 1000 documents. first: Janet Perry and last: Mohanpur Upazila -[2018-02-13T08:31:18.519] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:31:18.548] [INFO] cheese - inserting 1000 documents. first: Category:1830s in the Papal States and last: Template:Schools managed by GEMS Education -[2018-02-13T08:31:18.595] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:31:18.618] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Selected anniversaries/July 4 and last: Italo-Ethiopian War -[2018-02-13T08:31:18.642] [INFO] cheese - inserting 1000 documents. first: Joshua Silva and last: Gimeracil/tegafur/oteracil -[2018-02-13T08:31:18.695] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:31:18.706] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:31:18.762] [INFO] cheese - inserting 1000 documents. first: Sympetrum internum and last: Itupiranga -[2018-02-13T08:31:18.878] [INFO] cheese - inserting 1000 documents. first: Frances Margaret Taylor and last: Cedric Wallace -[2018-02-13T08:31:18.899] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:31:18.940] [INFO] cheese - inserting 1000 documents. first: Marie Collier and last: Iris Taylor -[2018-02-13T08:31:18.996] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:31:19.065] [INFO] cheese - inserting 1000 documents. first: Laal Rang and last: Category:Years of the 13th century in the Republic of Florence -[2018-02-13T08:31:19.098] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:31:19.149] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:31:19.326] [INFO] cheese - inserting 1000 documents. first: Gimeracil/oteracil/tegafur and last: Ayasli Ismail Pasa -[2018-02-13T08:31:19.333] [INFO] cheese - inserting 1000 documents. first: File:Maglev Propulsion.png and last: Chill (casting) -[2018-02-13T08:31:19.438] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:31:19.457] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:31:19.579] [INFO] cheese - inserting 1000 documents. first: Jacundá and last: Wikipedia:WikiProject Spam/LinkReports/navadurga.wordpress.com -[2018-02-13T08:31:19.679] [INFO] cheese - inserting 1000 documents. first: Cyberjustice and last: 1989–90 Connecticut Huskies men's basketball team -[2018-02-13T08:31:19.664] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:31:19.757] [INFO] cheese - inserting 1000 documents. first: Conn smythe trophy and last: File:Ruda-Stemma.jpg -[2018-02-13T08:31:19.806] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:31:19.942] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:31:19.994] [INFO] cheese - inserting 1000 documents. first: File:Luteplayer,Caravaggio,detail.jpg and last: Colby Mitchell Chester -[2018-02-13T08:31:20.096] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:31:20.261] [INFO] cheese - inserting 1000 documents. first: Nişancı İsmail Kemalettin Pasha and last: Jaddy Simai Jaddy -[2018-02-13T08:31:20.271] [INFO] cheese - inserting 1000 documents. first: Hinduism in Greece and last: Template:GAReview -[2018-02-13T08:31:20.344] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:31:20.351] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:31:20.483] [INFO] cheese - inserting 1000 documents. first: Mosimanegape Ramoshibidu and last: Barulaganye Bolofete -[2018-02-13T08:31:20.485] [INFO] cheese - inserting 1000 documents. first: South American Plate and last: Historical Jesus -[2018-02-13T08:31:20.535] [INFO] cheese - inserting 1000 documents. first: Modest Aronstam and last: UK citizen -[2018-02-13T08:31:20.621] [INFO] cheese - batch complete in: 0.957 secs -[2018-02-13T08:31:20.641] [INFO] cheese - batch complete in: 1.935 secs -[2018-02-13T08:31:20.683] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:31:21.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OLD and last: Blue Sky Green Field Wind Energy Center -[2018-02-13T08:31:21.029] [INFO] cheese - inserting 1000 documents. first: Kate and Kacey Coppola and last: Farm Road 769 -[2018-02-13T08:31:21.039] [INFO] cheese - inserting 1000 documents. first: Negotiable Order of Withdrawal and last: Neal Potter -[2018-02-13T08:31:21.045] [INFO] cheese - inserting 1000 documents. first: Coelostathma contigua and last: File:Chinnor rfc logo.png -[2018-02-13T08:31:21.084] [INFO] cheese - inserting 1000 documents. first: Portal:South East England/On This Day/June 3 and last: Timothy D. Bellavia -[2018-02-13T08:31:21.091] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:31:21.119] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:31:21.179] [INFO] cheese - inserting 1000 documents. first: 180th Motor Rifle Division and last: E. Otis Kendall -[2018-02-13T08:31:21.131] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:31:21.188] [INFO] cheese - batch complete in: 3.783 secs -[2018-02-13T08:31:21.207] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:31:21.236] [INFO] cheese - inserting 1000 documents. first: List of United Nations Security Council Resolutions 1901 to 2000 and last: File:In The Key Of Night album cover.jpg -[2018-02-13T08:31:21.336] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:31:21.418] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:21.752] [INFO] cheese - inserting 1000 documents. first: Niala, Iran and last: Wikipedia:Copyright problems/2013 November 5 -[2018-02-13T08:31:21.823] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chris Cafero and last: County Road 51 (Anoka County, Minnesota) -[2018-02-13T08:31:21.824] [INFO] cheese - inserting 1000 documents. first: Breezeway and last: Brush-tailed Marsupial Rat -[2018-02-13T08:31:21.845] [INFO] cheese - inserting 1000 documents. first: Saint-Constant station and last: 2005 Guangzhou International Women's Open – Singles -[2018-02-13T08:31:21.918] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:31:21.923] [INFO] cheese - inserting 1000 documents. first: Muhammad Khantumani and last: Category:Pizza chains -[2018-02-13T08:31:21.958] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:31:21.989] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:31:22.026] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:31:22.110] [INFO] cheese - inserting 1000 documents. first: Category:Category-Class Rufus Wainwright articles and last: Benhar, New Zealand -[2018-02-13T08:31:22.116] [INFO] cheese - inserting 1000 documents. first: List of villains and ghosts in Danny Phantom and last: Steppingstone assumption -[2018-02-13T08:31:22.171] [INFO] cheese - inserting 1000 documents. first: Rod Smart and last: Two Knights defence -[2018-02-13T08:31:22.168] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:31:22.276] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:31:22.308] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:31:22.389] [INFO] cheese - batch complete in: 1.747 secs -[2018-02-13T08:31:22.676] [INFO] cheese - inserting 1000 documents. first: Gentile Zanardi and last: DIBP (disambiguation) -[2018-02-13T08:31:22.721] [INFO] cheese - inserting 1000 documents. first: Talam and last: Paul Nowak -[2018-02-13T08:31:22.747] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:31:22.804] [INFO] cheese - inserting 1000 documents. first: Iraq Institute for Strategic Studies and last: Glycoside hydrolase family 77 -[2018-02-13T08:31:22.867] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:31:22.880] [INFO] cheese - inserting 1000 documents. first: Crest-Tailed Marsupial Rat and last: FK Cukaricki Stankom -[2018-02-13T08:31:22.897] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:31:22.928] [INFO] cheese - inserting 1000 documents. first: Communications in Contemporary Mathematics and last: Wikipedia:Articles for deletion/Exun -[2018-02-13T08:31:22.988] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:31:23.081] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:31:23.108] [INFO] cheese - inserting 1000 documents. first: Jamie-San and last: Herman Finkers -[2018-02-13T08:31:23.201] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:31:23.404] [INFO] cheese - inserting 1000 documents. first: List of number-one singles of 1960 (France) and last: 2004 BNP Paribas Masters -[2018-02-13T08:31:23.419] [INFO] cheese - inserting 1000 documents. first: Oregon Masonic Lodge (Wisconsin) and last: Khowrshidabad -[2018-02-13T08:31:23.426] [INFO] cheese - inserting 1000 documents. first: Prefiguration (disambiguation) and last: Category:Establishments in Libya -[2018-02-13T08:31:23.436] [INFO] cheese - inserting 1000 documents. first: EC Pfaffenhofen and last: Kladas, Greece -[2018-02-13T08:31:23.477] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:31:23.482] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:31:23.484] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:31:23.519] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:31:23.582] [INFO] cheese - inserting 1000 documents. first: Two Knights Defence and last: Irenism -[2018-02-13T08:31:23.610] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Amy rubio and last: 2006 PDL season -[2018-02-13T08:31:23.619] [INFO] cheese - inserting 1000 documents. first: Disney Cinemagic +1 and last: Template:W-FAQ/Helpme -[2018-02-13T08:31:23.687] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:31:23.703] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:31:23.741] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T08:31:23.963] [INFO] cheese - inserting 1000 documents. first: Johann Friedrich Eschscholtz and last: List of classes of the Bundesmarine and Deutsche Marine -[2018-02-13T08:31:23.978] [INFO] cheese - inserting 1000 documents. first: Category:Songs written by B.o.B and last: My Lucky Day (Scrubs) -[2018-02-13T08:31:24.022] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:31:24.025] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:31:24.047] [INFO] cheese - inserting 1000 documents. first: Elinda Rademeyer and last: Elm River (South Dakota) -[2018-02-13T08:31:24.092] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sophie Louise Bay and last: Tennessee State Route 351 -[2018-02-13T08:31:24.196] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:31:24.201] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:31:24.237] [INFO] cheese - inserting 1000 documents. first: Category:Politburo of the Central Committee of the Communist Party of the Soviet Union members and last: Dr. Mario Soares -[2018-02-13T08:31:24.348] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:31:24.373] [INFO] cheese - inserting 1000 documents. first: Tochihara Station and last: Robert Ortiz (gridiron football) -[2018-02-13T08:31:24.389] [INFO] cheese - inserting 1000 documents. first: Africanus, Sextus Julius and last: Jarosite -[2018-02-13T08:31:24.436] [INFO] cheese - inserting 1000 documents. first: Mercy Njoroge and last: Wikipedia:Articles for deletion/Jim Lynch (Survivor) -[2018-02-13T08:31:24.456] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:31:24.506] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:31:24.558] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:24.766] [INFO] cheese - inserting 1000 documents. first: Desert gum and last: 9415 Yujiokimura -[2018-02-13T08:31:24.781] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Danny Howard and last: Re Ng Extradition -[2018-02-13T08:31:24.875] [INFO] cheese - inserting 1000 documents. first: Pima indian and last: Bill DeSteph -[2018-02-13T08:31:24.953] [INFO] cheese - inserting 1000 documents. first: Category:German patrol aircraft 1940–1949 and last: Claire McLean -[2018-02-13T08:31:24.955] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:31:24.987] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:31:25.032] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:31:25.063] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:31:25.138] [INFO] cheese - inserting 1000 documents. first: Template:Lebanon-singer-stub and last: Wikipedia:Articles for deletion/Daryl Youngblood -[2018-02-13T08:31:25.266] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:31:25.343] [INFO] cheese - inserting 1000 documents. first: Giovanni Balbi and last: Template:MOTD Barnstar -[2018-02-13T08:31:25.418] [INFO] cheese - inserting 1000 documents. first: Federalna Televizija and last: 2 Tone (genre) -[2018-02-13T08:31:25.426] [INFO] cheese - inserting 1000 documents. first: Category:Albums produced by Chico Bennett and last: College Radio WUMD -[2018-02-13T08:31:25.455] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:31:25.465] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:31:25.523] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:31:25.642] [INFO] cheese - inserting 1000 documents. first: The File on H. (novel) and last: Tirak Deh-e Sofla -[2018-02-13T08:31:25.643] [INFO] cheese - inserting 1000 documents. first: Martin Chávez and last: John Taylor, Baron Taylor of Warwick -[2018-02-13T08:31:25.669] [INFO] cheese - inserting 1000 documents. first: Category:Swiss civil utility aircraft 1960–1969 and last: Jack K. Clarke -[2018-02-13T08:31:25.700] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:31:25.781] [INFO] cheese - batch complete in: 1.272 secs -[2018-02-13T08:31:25.785] [INFO] cheese - inserting 1000 documents. first: Re Manitoba Language Rights and last: Horace de Gunzburg -[2018-02-13T08:31:25.806] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:31:25.881] [INFO] cheese - inserting 1000 documents. first: One Light Year at Snail Speed and last: File:Cone sisters with Gertrude Stein.jpg -[2018-02-13T08:31:25.885] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:31:25.935] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:31:26.021] [INFO] cheese - inserting 1000 documents. first: Reggae punk and last: 1939–40 Czechoslovak First League -[2018-02-13T08:31:26.080] [INFO] cheese - inserting 1000 documents. first: Mahuta Tawhiao and last: Category:Tahltan -[2018-02-13T08:31:26.100] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:31:26.190] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:31:26.230] [INFO] cheese - inserting 1000 documents. first: Template:WP Phillies Invite and last: Laurent Mohellebi -[2018-02-13T08:31:26.308] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:31:26.402] [INFO] cheese - inserting 1000 documents. first: Vazak and last: Tem Braille -[2018-02-13T08:31:26.433] [INFO] cheese - inserting 1000 documents. first: Lady Davis Postdoctoral Fellowship and last: WOW Hits 2012 -[2018-02-13T08:31:26.473] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:31:26.506] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:31:26.535] [INFO] cheese - inserting 1000 documents. first: Wyndham Street and last: Avon Dassett -[2018-02-13T08:31:26.556] [INFO] cheese - inserting 1000 documents. first: 1940–41 Czechoslovak First League and last: Kalmyk Bible -[2018-02-13T08:31:26.584] [INFO] cheese - inserting 1000 documents. first: Aeropuerto Internacional Del Cibao and last: Chinquapin Parkway -[2018-02-13T08:31:26.598] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:31:26.598] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:31:26.676] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:26.754] [INFO] cheese - inserting 1000 documents. first: Aleksandr Khinstein and last: The Brain of My Existence -[2018-02-13T08:31:26.817] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:31:26.867] [INFO] cheese - inserting 1000 documents. first: Armando Doda and last: Demerera sugar -[2018-02-13T08:31:26.952] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:31:27.035] [INFO] cheese - inserting 1000 documents. first: Nik Vucevic and last: Tropical Cyclone Carina (2006) -[2018-02-13T08:31:27.057] [INFO] cheese - inserting 1000 documents. first: Protypanthes hybristis and last: Barf Kola -[2018-02-13T08:31:27.076] [INFO] cheese - inserting 1000 documents. first: Throughput Accounting and last: File:Ohio capital conference logo.jpg -[2018-02-13T08:31:27.077] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:31:27.143] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:31:27.158] [INFO] cheese - inserting 1000 documents. first: Stela of Ankh-ef-en-Khonsu and last: History of the Catholic Church in Brazil -[2018-02-13T08:31:27.155] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:31:27.198] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Compton Scool and last: Skooma -[2018-02-13T08:31:27.210] [INFO] cheese - inserting 1000 documents. first: Rome (Paris Métro) and last: Server-side include -[2018-02-13T08:31:27.253] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:31:27.302] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:31:27.315] [INFO] cheese - batch complete in: 1.534 secs -[2018-02-13T08:31:27.404] [INFO] cheese - inserting 1000 documents. first: Monarch High School (Florida) and last: Glasgow, United Kingdom -[2018-02-13T08:31:27.481] [INFO] cheese - inserting 1000 documents. first: Nieuport-Delage NiD 590 and last: Wikipedia:Articles for deletion/Tuleap (project management) -[2018-02-13T08:31:27.599] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:31:27.607] [INFO] cheese - inserting 1000 documents. first: Miguel Ángel López Jaén and last: Bits of Life -[2018-02-13T08:31:27.611] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:31:27.692] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:31:27.790] [INFO] cheese - inserting 1000 documents. first: Wuzhou Airport and last: Ali Kılıç -[2018-02-13T08:31:27.818] [INFO] cheese - inserting 1000 documents. first: Bibi Kola and last: Talesh Mahalleh-ye Fatuk -[2018-02-13T08:31:27.913] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:31:27.936] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:31:28.044] [INFO] cheese - inserting 1000 documents. first: Lignification and last: Mari-Tureksky District -[2018-02-13T08:31:28.109] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:28.168] [INFO] cheese - inserting 1000 documents. first: Christmas store and last: Category:Palestinian actors by medium -[2018-02-13T08:31:28.282] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:31:28.291] [INFO] cheese - inserting 1000 documents. first: Donald "Ducky" Mallard and last: Exchange Quay tram stop -[2018-02-13T08:31:28.382] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:31:28.384] [INFO] cheese - inserting 1000 documents. first: Radio Bremen and last: Tashelhit -[2018-02-13T08:31:28.390] [INFO] cheese - inserting 1000 documents. first: Index of South Carolina-related articles and last: Mike Krusee -[2018-02-13T08:31:28.470] [INFO] cheese - inserting 1000 documents. first: José Perelló Torrens and last: Category:Canadian ultralight aircraft 1990–1999 -[2018-02-13T08:31:28.473] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:31:28.476] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:31:28.556] [INFO] cheese - inserting 1000 documents. first: Tazeh Patak and last: Mike Watson (American football) -[2018-02-13T08:31:28.560] [INFO] cheese - inserting 1000 documents. first: Arncliffe, North Yorkshire and last: Kay Kendall -[2018-02-13T08:31:28.562] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:31:28.635] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:31:28.664] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:31:28.784] [INFO] cheese - inserting 1000 documents. first: Young's Bluecrest and last: Vanessa Arauz -[2018-02-13T08:31:28.803] [INFO] cheese - inserting 1000 documents. first: Hong Kong representative football team and last: Category:Technology trade associations -[2018-02-13T08:31:28.819] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:31:28.863] [INFO] cheese - inserting 1000 documents. first: Curtiss-Wright CW-3 Duckling and last: Konstyantyn Hryshchenko -[2018-02-13T08:31:28.880] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:31:28.944] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:31:28.958] [INFO] cheese - inserting 1000 documents. first: Serishevski and last: Mohammadabad Gonbaki -[2018-02-13T08:31:28.987] [INFO] cheese - inserting 1000 documents. first: File:Earthlastavengers8.jpg and last: Alexander Corina -[2018-02-13T08:31:29.053] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:31:29.089] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:31:29.104] [INFO] cheese - inserting 1000 documents. first: Category:People from Korba district and last: Planetary object -[2018-02-13T08:31:29.171] [INFO] cheese - inserting 1000 documents. first: Amagat and last: Ronee Blakely -[2018-02-13T08:31:29.184] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:31:29.275] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:31:29.396] [INFO] cheese - inserting 1000 documents. first: Love Put a Song in My Heart (song) and last: Marc-René de Voyer de Paulmy d'Argenson (1623-1700) -[2018-02-13T08:31:29.443] [INFO] cheese - inserting 1000 documents. first: File:Medan Prijaji (volume 4 issue 3).pdf and last: Template:Bad Aibling rail accident RDT -[2018-02-13T08:31:29.527] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:31:29.538] [INFO] cheese - inserting 1000 documents. first: Articaine hydrochloride and last: Benny Chong -[2018-02-13T08:31:29.570] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:31:29.640] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:31:29.679] [INFO] cheese - inserting 1000 documents. first: Major League Baseball Delivery Man of the Year Award and last: Vector map -[2018-02-13T08:31:29.711] [INFO] cheese - inserting 1000 documents. first: Concord Records and last: List of Billboard Hot 100 number-one singles of 1995 -[2018-02-13T08:31:29.794] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:29.835] [INFO] cheese - inserting 1000 documents. first: Khugiani (village) and last: Sveva da Montefeltro -[2018-02-13T08:31:29.853] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:31:29.968] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:31:30.053] [INFO] cheese - inserting 1000 documents. first: Veluyeh-ye Olya and last: Category:Directors of Disney -[2018-02-13T08:31:30.064] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Rafa Figueiredo/Archive and last: Amazonía -[2018-02-13T08:31:30.114] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:31:30.149] [INFO] cheese - inserting 1000 documents. first: Marc-René de Voyer de Paulmy d'Argenson (1652-1721) and last: File:Uliaga.jpg -[2018-02-13T08:31:30.160] [INFO] cheese - inserting 1000 documents. first: Bulghur and last: Daimler Benz Aerospace -[2018-02-13T08:31:30.124] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:31:30.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Alexander Duvall and last: Hip Hop Soul -[2018-02-13T08:31:30.227] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:31:30.281] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:31:30.332] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:31:30.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/elmallorca.com and last: Pittsburgh Science of Learning Center -[2018-02-13T08:31:30.549] [INFO] cheese - inserting 1000 documents. first: Anne Maddocks and last: 33rd State -[2018-02-13T08:31:30.590] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:31:30.706] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:31:30.798] [INFO] cheese - inserting 1000 documents. first: Techonology and last: Triangular trapezohedron -[2018-02-13T08:31:30.799] [INFO] cheese - inserting 1000 documents. first: Newark Broad Street station (New Jersey) and last: Apocalypse in view of Shia -[2018-02-13T08:31:30.819] [INFO] cheese - inserting 1000 documents. first: Pedigree Schmedigree and last: Category:People of Asian descent -[2018-02-13T08:31:30.848] [INFO] cheese - inserting 1000 documents. first: Barboursville Seminary of the Southern Methodist Church and last: File:GodInvitingChristDetail.jpg -[2018-02-13T08:31:30.862] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:31:30.878] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:31:30.882] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:31:30.895] [INFO] cheese - inserting 1000 documents. first: Pinus serotina and last: Bobby Flay England -[2018-02-13T08:31:30.945] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:31:31.018] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:31:31.082] [INFO] cheese - inserting 1000 documents. first: Juan Francisco Guerra and last: Bowman (surname) -[2018-02-13T08:31:31.139] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:31:31.160] [INFO] cheese - inserting 1000 documents. first: Bache, Cheshire and last: SchoolNet Namibia -[2018-02-13T08:31:31.232] [INFO] cheese - inserting 1000 documents. first: Pseudominla castaneceps and last: 1 E+0 m -[2018-02-13T08:31:31.246] [INFO] cheese - batch complete in: 0.965 secs -[2018-02-13T08:31:31.320] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:31:31.322] [INFO] cheese - inserting 1000 documents. first: Category:Equatoguinean film people and last: Hydrophilus (insect) -[2018-02-13T08:31:31.357] [INFO] cheese - inserting 1000 documents. first: List of people removed from the Privy Council of the United Kingdom and last: Mangotsfield Rural -[2018-02-13T08:31:31.364] [INFO] cheese - inserting 1000 documents. first: Resistance Inside the Army and last: Na/Cl cotransporter -[2018-02-13T08:31:31.387] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:31:31.479] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:31:31.485] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:31:31.620] [INFO] cheese - inserting 1000 documents. first: John Dunbar, 4th Earl of Moray and last: Battle of the Ch'ongch'on River -[2018-02-13T08:31:31.627] [INFO] cheese - inserting 1000 documents. first: Template:1949 College Football Consensus All-Americans and last: Audi Type B -[2018-02-13T08:31:31.716] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:31:31.783] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:31:31.958] [INFO] cheese - inserting 1000 documents. first: SF-88 and last: Muzi Bon -[2018-02-13T08:31:31.996] [INFO] cheese - inserting 1000 documents. first: Rimush (Akkad) and last: Sándor Terplán -[2018-02-13T08:31:32.023] [INFO] cheese - inserting 1000 documents. first: File:The Fray - How to Save a Life.jpg and last: Portal:Trains/Selected article/Week 47, 2006 -[2018-02-13T08:31:32.028] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:31:32.061] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:32.085] [INFO] cheese - inserting 1000 documents. first: Bobby England and last: Baron Balfour of Inchrye -[2018-02-13T08:31:32.081] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Tatineni Rama Rao and last: Barron, Chuck -[2018-02-13T08:31:32.130] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:31:32.163] [INFO] cheese - inserting 1000 documents. first: Shmidt Bridge and last: Category:Food infobox templates -[2018-02-13T08:31:32.225] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:31:32.258] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:31:32.298] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:31:32.392] [INFO] cheese - inserting 1000 documents. first: Category:Centralia, Missouri and last: Michael Coteau -[2018-02-13T08:31:32.481] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:31:32.610] [INFO] cheese - inserting 1000 documents. first: Panbeh Zar Koti and last: ROCS Chu Hwa (AGS-564) -[2018-02-13T08:31:32.633] [INFO] cheese - inserting 1000 documents. first: Milton Brandão and last: Takeshi Nakazato -[2018-02-13T08:31:32.678] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:31:32.714] [INFO] cheese - inserting 1000 documents. first: Courtney, Chuck and last: Huang An (singer) -[2018-02-13T08:31:32.740] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:31:32.760] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:31:32.763] [INFO] cheese - inserting 1000 documents. first: Armand Mondakan and last: Sebastien de Chaunac -[2018-02-13T08:31:32.901] [INFO] cheese - inserting 1000 documents. first: Nasty Girl and last: By the way -[2018-02-13T08:31:32.905] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:31:32.981] [INFO] cheese - inserting 1000 documents. first: HR 7578 and last: Category:Tourist attractions in Chambers County, Alabama -[2018-02-13T08:31:32.983] [INFO] cheese - inserting 1000 documents. first: Federation Slovene de Cyclisme and last: NACAI -[2018-02-13T08:31:32.997] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:31:33.062] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:31:33.135] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:31:33.303] [INFO] cheese - inserting 1000 documents. first: La Tante DC10 Restaurant and last: Template:Infobox summit meeting/sandbox -[2018-02-13T08:31:33.335] [INFO] cheese - inserting 1000 documents. first: Vinyl Records and last: Handley-Page 0/400 -[2018-02-13T08:31:33.361] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:31:33.365] [INFO] cheese - inserting 1000 documents. first: Professional Rugby Organization and last: Gradient Domain Image Processing -[2018-02-13T08:31:33.479] [INFO] cheese - inserting 1000 documents. first: Jaicós and last: Trouvelot Crater -[2018-02-13T08:31:33.480] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:31:33.483] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:31:33.509] [INFO] cheese - inserting 1000 documents. first: The Roads We Choose – A Retrospective and last: Timeline of the history of Indonesia -[2018-02-13T08:31:33.559] [INFO] cheese - inserting 1000 documents. first: Professional Baseball Spirits and last: 3Player -[2018-02-13T08:31:33.579] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:31:33.589] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:31:33.644] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:31:33.661] [INFO] cheese - inserting 1000 documents. first: David Greenaway and last: Technical singularity -[2018-02-13T08:31:33.816] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:31:33.901] [INFO] cheese - inserting 1000 documents. first: Héctor Suarez Gomiz and last: Thomas Michael Kettle -[2018-02-13T08:31:34.022] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:31:34.196] [INFO] cheese - inserting 1000 documents. first: Template:LPF 2013-14 teamlist and last: Runaway (1964 film) -[2018-02-13T08:31:34.244] [INFO] cheese - inserting 1000 documents. first: Taylor's Eye Witness Works and last: Jinx (TV series) -[2018-02-13T08:31:34.245] [INFO] cheese - inserting 1000 documents. first: Saturn's Children (disambiguation) and last: Tx college of osteopathic -[2018-02-13T08:31:34.270] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:31:34.369] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:31:34.394] [INFO] cheese - inserting 1000 documents. first: Livestock‑branding and last: Niculae I. Herescu -[2018-02-13T08:31:34.412] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:31:34.495] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:31:34.538] [INFO] cheese - inserting 1000 documents. first: The Demon Haunted World: Science as a Candle in the Dark and last: Seshatu -[2018-02-13T08:31:34.605] [INFO] cheese - inserting 1000 documents. first: Nigel Stafford-Clark and last: E3 m -[2018-02-13T08:31:34.733] [INFO] cheese - inserting 1000 documents. first: Mister Mxyzptlk and last: Wisconsin State Assembly -[2018-02-13T08:31:34.751] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:31:34.770] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:31:34.906] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:31:35.033] [INFO] cheese - inserting 1000 documents. first: Bardsey cum Rigton and last: Manitouwadge -[2018-02-13T08:31:35.085] [INFO] cheese - inserting 1000 documents. first: List of Governors-General of Saint Kitts and Nevis and last: Keseleyan -[2018-02-13T08:31:35.123] [INFO] cheese - inserting 1000 documents. first: AFL reserves affiliations and last: Category:Geography of Crisp County, Georgia -[2018-02-13T08:31:35.141] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:31:35.159] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:31:35.210] [INFO] cheese - inserting 1000 documents. first: Niculae Herescu and last: Johan Sundkvist -[2018-02-13T08:31:35.219] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:31:35.251] [INFO] cheese - inserting 1000 documents. first: History of Norfolk County, Massachusetts and last: Category:Transportation in Belknap County, New Hampshire -[2018-02-13T08:31:35.280] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:31:35.390] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:31:35.510] [INFO] cheese - inserting 1000 documents. first: Louise Marie Thérèse of France and last: UN/LOCODE:INCAM -[2018-02-13T08:31:35.520] [INFO] cheese - inserting 1000 documents. first: James Parsons Burkitt and last: Wikipedia:Irish Wikipedians' notice board/Stubs -[2018-02-13T08:31:35.603] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:31:35.640] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:31:35.697] [INFO] cheese - inserting 1000 documents. first: San Diego State University Georgia Campus and last: File:National Unity Party.svg -[2018-02-13T08:31:35.719] [INFO] cheese - inserting 1000 documents. first: Kaseliyan and last: Category:Kashmir (band) albums -[2018-02-13T08:31:35.802] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:31:35.825] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:31:35.850] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Crisp County, Georgia and last: Category:Geography of Franklin County, Georgia -[2018-02-13T08:31:35.936] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:31:36.001] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Ecclesiastical Province of Mobile and last: Indigent -[2018-02-13T08:31:36.124] [INFO] cheese - inserting 1000 documents. first: Ben Romans and last: Category:Iijoki basin -[2018-02-13T08:31:36.207] [INFO] cheese - batch complete in: 1.062 secs -[2018-02-13T08:31:36.259] [INFO] cheese - inserting 1000 documents. first: SC Bose and last: Edystone -[2018-02-13T08:31:36.296] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:31:36.502] [INFO] cheese - inserting 1000 documents. first: Switched mesh and last: Penn dot -[2018-02-13T08:31:36.609] [INFO] cheese - batch complete in: 1.703 secs -[2018-02-13T08:31:36.631] [INFO] cheese - inserting 1000 documents. first: 28184 Vaishnavirao and last: Kompass-Karten GmbH -[2018-02-13T08:31:36.650] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:31:36.669] [INFO] cheese - inserting 1000 documents. first: Category:Kashmir (band) video albums and last: Constantin Pigla -[2018-02-13T08:31:36.713] [INFO] cheese - inserting 1000 documents. first: Christopher Gaudet and last: Super Fly -[2018-02-13T08:31:36.731] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:31:36.777] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:31:36.807] [INFO] cheese - inserting 1000 documents. first: 2005-06 Olympique de Marseille season and last: Alexander JR Ferrer -[2018-02-13T08:31:36.851] [INFO] cheese - batch complete in: 1.248 secs -[2018-02-13T08:31:36.958] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:31:37.126] [INFO] cheese - inserting 1000 documents. first: Borbo borbonica and last: Henry Howard, 19th Earl of Suffolk -[2018-02-13T08:31:37.140] [INFO] cheese - inserting 1000 documents. first: Serpil Çapar and last: Category:Lists of documentary television series episodes -[2018-02-13T08:31:37.195] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:31:37.233] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:31:37.274] [INFO] cheese - inserting 1000 documents. first: Snow lepard and last: University of Vicenza -[2018-02-13T08:31:37.401] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:31:37.455] [INFO] cheese - inserting 1000 documents. first: Robert Millikan and last: N-322 (Road) -[2018-02-13T08:31:37.485] [INFO] cheese - inserting 1000 documents. first: Frank Irwin and last: Kachan, Iran -[2018-02-13T08:31:37.512] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Anime and manga/Reference Library/Mechademia and last: Category:Geography of Lee County, Georgia -[2018-02-13T08:31:37.631] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:31:37.643] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:31:37.662] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:31:37.680] [INFO] cheese - inserting 1000 documents. first: Xrinh and last: Carl Liscombe -[2018-02-13T08:31:37.793] [INFO] cheese - inserting 1000 documents. first: Yvan Pierrot and last: Mimi Barthélemy -[2018-02-13T08:31:37.841] [INFO] cheese - inserting 1000 documents. first: Selvanagar(MoonRoad) and last: Park Corner Heath -[2018-02-13T08:31:37.852] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:31:37.953] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:31:37.956] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:31:38.051] [INFO] cheese - inserting 1000 documents. first: Meir Hai and last: Précoce -[2018-02-13T08:31:38.195] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:31:38.276] [INFO] cheese - inserting 1000 documents. first: Clarkeulia spectanda and last: Lash, Gilan -[2018-02-13T08:31:38.353] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:31:38.391] [INFO] cheese - inserting 1000 documents. first: Transcription activators and last: Consumer Tenancy and Trader Tribunal of New South Wales -[2018-02-13T08:31:38.397] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Lee County, Georgia and last: Runnin' Wild (song) -[2018-02-13T08:31:38.420] [INFO] cheese - inserting 1000 documents. first: Judith Rodin and last: Category:Roman Catholic Ecclesiastical Province of Philadelphia -[2018-02-13T08:31:38.552] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:31:38.626] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:31:38.640] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:31:38.725] [INFO] cheese - inserting 1000 documents. first: U.S. Federal Building and Courthouse (Anchorage, Alaska) and last: La Historia Continúa... Parte II -[2018-02-13T08:31:38.767] [INFO] cheese - inserting 1000 documents. first: Jack Dailey Creek and last: Christian Lasson -[2018-02-13T08:31:38.805] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:31:38.848] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:31:38.850] [INFO] cheese - inserting 1000 documents. first: Khalid Kelly and last: Wikipedia:Suspected sock puppets/Tellus archivist -[2018-02-13T08:31:38.933] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:31:39.187] [INFO] cheese - inserting 1000 documents. first: 2013–14 Wisconsin Badgers women's basketball team and last: Hard-easy effect -[2018-02-13T08:31:39.308] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:31:39.320] [INFO] cheese - inserting 1000 documents. first: Alien Contamination and last: Hôtel de Bourbon-Condé -[2018-02-13T08:31:39.337] [INFO] cheese - inserting 1000 documents. first: Time Was Endless and last: Who Do You Do? -[2018-02-13T08:31:39.346] [INFO] cheese - inserting 1000 documents. first: Paillette and last: View-source URI scheme -[2018-02-13T08:31:39.373] [INFO] cheese - inserting 1000 documents. first: Gove County and last: Turner Fenton High School -[2018-02-13T08:31:39.386] [INFO] cheese - inserting 1000 documents. first: Khoibu Naga language and last: File:Written in the Stars (Elton John and LeAnn Rimes song).jpg -[2018-02-13T08:31:39.407] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:39.405] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:31:39.445] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:31:39.530] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:31:39.537] [INFO] cheese - batch complete in: 1.685 secs -[2018-02-13T08:31:39.614] [INFO] cheese - inserting 1000 documents. first: Richard Bedford and last: John Michael Jacks -[2018-02-13T08:31:39.691] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:31:39.821] [INFO] cheese - inserting 1000 documents. first: File:The Magic School Bus title credit.jpg and last: Helgi Kolvidsson -[2018-02-13T08:31:39.886] [INFO] cheese - inserting 1000 documents. first: The Orange Monkey (PJ Harvey song) and last: Lycee francais A. Malraux -[2018-02-13T08:31:39.886] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:31:39.895] [INFO] cheese - inserting 1000 documents. first: Innocent Blood and last: Emergency vehicle equipment -[2018-02-13T08:31:39.919] [INFO] cheese - inserting 1000 documents. first: File:Deutsche Tourenwagen Masters (logo).png and last: Wikipedia:Version 1.0 Editorial Team/Israel-related articles by quality/21 -[2018-02-13T08:31:39.955] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:31:39.983] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:31:40.037] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:31:40.145] [INFO] cheese - inserting 1000 documents. first: MTV Europe Music Award for Biggest Fans and last: Motoakasaka, Minato, Tokyo -[2018-02-13T08:31:40.243] [INFO] cheese - inserting 1000 documents. first: Raion Orekhovo-Borisovo Iuzhnoye and last: Category:Tourist attractions in Oregon -[2018-02-13T08:31:40.393] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:31:40.399] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:31:40.643] [INFO] cheese - inserting 1000 documents. first: Lycee Francais A. Malraux and last: Expo / Bundy station -[2018-02-13T08:31:40.663] [INFO] cheese - inserting 1000 documents. first: Akuma (character) and last: Template:Fb round2 2006 Intertoto Cup R1 -[2018-02-13T08:31:40.766] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:31:40.809] [INFO] cheese - inserting 1000 documents. first: List of current governors of Afghanistan and last: Template:Chessington World of Adventures -[2018-02-13T08:31:40.821] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:31:40.967] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:31:40.996] [INFO] cheese - inserting 1000 documents. first: Template:Historical provinces of Finland and last: Penal laws -[2018-02-13T08:31:41.045] [INFO] cheese - inserting 1000 documents. first: Lucas Mansion and last: Category:Karlskoga Municipality -[2018-02-13T08:31:41.188] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:31:41.281] [INFO] cheese - batch complete in: 1.743 secs -[2018-02-13T08:31:41.285] [INFO] cheese - inserting 1000 documents. first: Listen to the Band (song) and last: File:Ross perot net favorability 1992-1996.svg -[2018-02-13T08:31:41.415] [INFO] cheese - inserting 1000 documents. first: Blaine Calkins and last: Miles M.39B Libellula -[2018-02-13T08:31:41.478] [INFO] cheese - batch complete in: 1.441 secs -[2018-02-13T08:31:41.482] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:31:41.552] [INFO] cheese - inserting 1000 documents. first: Canadian red ensign and last: Marsh Giddings -[2018-02-13T08:31:41.565] [INFO] cheese - inserting 1000 documents. first: Bundy station and last: Siege of Rhodes (305 BC) -[2018-02-13T08:31:41.697] [INFO] cheese - inserting 1000 documents. first: One (German TV channel) and last: Jonathan ben Uziel -[2018-02-13T08:31:41.696] [INFO] cheese - batch complete in: 0.93 secs -[2018-02-13T08:31:41.706] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:31:41.777] [INFO] cheese - inserting 1000 documents. first: East Jaffrey Historic District and last: La MICA Biological Station -[2018-02-13T08:31:41.784] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:31:41.820] [INFO] cheese - inserting 1000 documents. first: Nine Stones, Winterbourne Abbas and last: Exact functor theorem -[2018-02-13T08:31:41.908] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:31:42.154] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:31:42.265] [INFO] cheese - inserting 1000 documents. first: My Story (Julia Gillard) and last: File:MIT Global Startup Workshop.jpg -[2018-02-13T08:31:42.413] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:31:42.502] [INFO] cheese - inserting 1000 documents. first: File:HardingUniversity logo.svg and last: Dionysus in 69 -[2018-02-13T08:31:42.628] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:31:42.709] [INFO] cheese - inserting 1000 documents. first: The Philosophy of Poverty and last: File:Walk Live Material Cover.jpg -[2018-02-13T08:31:42.710] [INFO] cheese - inserting 1000 documents. first: Blessed Robert Johnson and last: Guyana Air Force -[2018-02-13T08:31:42.803] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:31:42.811] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:31:42.889] [INFO] cheese - inserting 1000 documents. first: Robin Handique and last: Vadaveekam -[2018-02-13T08:31:42.903] [INFO] cheese - inserting 1000 documents. first: Parkhouse Hill and last: John M. Stone -[2018-02-13T08:31:42.966] [INFO] cheese - inserting 1000 documents. first: Category:1919 elections in Abkhazia and last: Burger, Joseph -[2018-02-13T08:31:43.032] [INFO] cheese - inserting 1000 documents. first: Category:Bathymophila and last: Sheshtanrud -[2018-02-13T08:31:42.997] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:31:43.045] [INFO] cheese - batch complete in: 1.567 secs -[2018-02-13T08:31:43.051] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:31:43.056] [INFO] cheese - inserting 1000 documents. first: Lisbon Strategy and last: Isuzu Motors -[2018-02-13T08:31:43.156] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:31:43.262] [INFO] cheese - batch complete in: 1.981 secs -[2018-02-13T08:31:43.319] [INFO] cheese - inserting 1000 documents. first: Ray Vanderby and last: Barasat I (Community development block) -[2018-02-13T08:31:43.432] [INFO] cheese - inserting 1000 documents. first: A. G. Mathews and last: Alexander de Kininmund (died 1380) -[2018-02-13T08:31:43.434] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:31:43.482] [INFO] cheese - inserting 1000 documents. first: VictorRamdin and last: Template:Takhar-geo-stub -[2018-02-13T08:31:43.575] [INFO] cheese - inserting 1000 documents. first: ShowStopper (song) and last: Category:FL-Class Tampa Bay Buccaneers articles -[2018-02-13T08:31:43.589] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:31:43.605] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:31:43.792] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:31:43.795] [INFO] cheese - inserting 1000 documents. first: Sheshtanrud-e Pa'in and last: Chokam -[2018-02-13T08:31:43.848] [INFO] cheese - inserting 1000 documents. first: Burnett, Joseph and last: Lycée français de Gavà -[2018-02-13T08:31:43.986] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:31:44.032] [INFO] cheese - inserting 1000 documents. first: Aurelia Cotta and last: Iranian movies -[2018-02-13T08:31:44.070] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:31:44.259] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:31:44.453] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dycode.net and last: Business Intelligence software -[2018-02-13T08:31:44.651] [INFO] cheese - inserting 1000 documents. first: Template:Wardak-geo-stub and last: JC De Vera -[2018-02-13T08:31:44.654] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:31:44.667] [INFO] cheese - inserting 1000 documents. first: Havana Club (Bacardi) and last: Artificial limbs -[2018-02-13T08:31:44.670] [INFO] cheese - inserting 1000 documents. first: Best-selling Christmas/Holiday albums in the United States and last: Str8 Out Da Slums -[2018-02-13T08:31:44.811] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:31:44.831] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:31:44.861] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:31:44.926] [INFO] cheese - inserting 1000 documents. first: Chowkam and last: Minah (disambiguation) -[2018-02-13T08:31:44.991] [INFO] cheese - inserting 1000 documents. first: Template:Swiftsure class submarine and last: Voiceless labialized velar approximant -[2018-02-13T08:31:45.006] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:31:45.053] [INFO] cheese - inserting 1000 documents. first: Lycée Français de Gavà and last: 待阳村 -[2018-02-13T08:31:45.169] [INFO] cheese - batch complete in: 1.907 secs -[2018-02-13T08:31:45.203] [INFO] cheese - inserting 1000 documents. first: Project Chapleau and last: Black chinned sparrow -[2018-02-13T08:31:45.165] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:31:45.309] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:31:45.409] [INFO] cheese - inserting 1000 documents. first: Pig (2010 film) and last: Edgar Everaldo Valencia -[2018-02-13T08:31:45.423] [INFO] cheese - inserting 1000 documents. first: Norman Parker (author) and last: FC Smarhon -[2018-02-13T08:31:45.452] [INFO] cheese - inserting 1000 documents. first: Serena Township, LaSalle County, Illinois and last: Template:Naked Brothers Band -[2018-02-13T08:31:45.471] [INFO] cheese - inserting 1000 documents. first: Cleo Pineau and last: Though I know the river is dry -[2018-02-13T08:31:45.475] [INFO] cheese - inserting 1000 documents. first: Dawson Bros and last: Mayo (disambiguation) -[2018-02-13T08:31:45.480] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:31:45.483] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:31:45.522] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:31:45.532] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:31:45.536] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:31:45.669] [INFO] cheese - inserting 1000 documents. first: File:Nacional Deva Boys logo.png and last: Wikipedia:Sockpuppet investigations/Mypassis1234/Archive -[2018-02-13T08:31:45.743] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:31:45.866] [INFO] cheese - inserting 1000 documents. first: Template:NAC Breda and last: Selina Parvin -[2018-02-13T08:31:45.995] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:31:46.060] [INFO] cheese - inserting 1000 documents. first: Babylon Rogues and last: Category:Costa Rican triathletes -[2018-02-13T08:31:46.076] [INFO] cheese - inserting 1000 documents. first: Homotopy limits and last: Category:Census-designated places in Pierce County, Wisconsin -[2018-02-13T08:31:46.171] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:31:46.199] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:31:46.305] [INFO] cheese - inserting 1000 documents. first: Centre for Rural and Northern Health Research and last: Rosa Lewis -[2018-02-13T08:31:46.322] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Bengali fish/Archive and last: Jay Cross -[2018-02-13T08:31:46.337] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/St Eugrad's Church, Llaneugrad and last: Phulbani district -[2018-02-13T08:31:46.379] [INFO] cheese - inserting 1000 documents. first: Al Brady and last: Bernard Benstock -[2018-02-13T08:31:46.387] [INFO] cheese - inserting 1000 documents. first: Voiceless labiodental fricative and last: Spiritual Five -[2018-02-13T08:31:46.408] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:31:46.431] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:31:46.508] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:31:46.511] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rainy Davis and last: 1983 Alpine Skiing World Cup - Men's Combined -[2018-02-13T08:31:46.568] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:31:46.627] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:31:46.681] [INFO] cheese - batch complete in: 1.51 secs -[2018-02-13T08:31:46.932] [INFO] cheese - inserting 1000 documents. first: Template:Illinois road map and last: Morqaye -[2018-02-13T08:31:46.952] [INFO] cheese - inserting 1000 documents. first: Smit, Jan and last: Smith, Willard -[2018-02-13T08:31:46.998] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:31:47.000] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:31:47.061] [INFO] cheese - inserting 1000 documents. first: Leptalis albania and last: Leningradka St. Petersburg -[2018-02-13T08:31:47.073] [INFO] cheese - inserting 1000 documents. first: Category:Chilean triathletes and last: Wikipedia:Articles for deletion/List of Jewish American political figures (2nd nomination) -[2018-02-13T08:31:47.155] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:31:47.318] [INFO] cheese - inserting 1000 documents. first: Vertical Disease Transmission and last: Kirkpatrick & Lockhart Nicholson Graham -[2018-02-13T08:31:47.339] [INFO] cheese - inserting 1000 documents. first: Portal:Biography/Selected article/June 16 and last: Saskatchewan Highway 680 -[2018-02-13T08:31:47.358] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:31:47.451] [INFO] cheese - inserting 1000 documents. first: 1983 Alpine Skiing World Cup - Men's Downhill and last: 2010 Aircel Chennai Open – Doubles -[2018-02-13T08:31:47.494] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:31:47.600] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:31:47.620] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:31:47.763] [INFO] cheese - inserting 1000 documents. first: Mahji dialect and last: John Ingleby (painter) -[2018-02-13T08:31:47.825] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:31:47.950] [INFO] cheese - inserting 1000 documents. first: Eisenstadt (surname) and last: Idomeno Re Di Creta -[2018-02-13T08:31:48.031] [INFO] cheese - inserting 1000 documents. first: Lake Manicouagan and last: The Integral Trees -[2018-02-13T08:31:48.107] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:31:48.152] [INFO] cheese - inserting 1000 documents. first: Kindaichi Kōsuke and last: Category:Cellular telephony -[2018-02-13T08:31:48.275] [INFO] cheese - batch complete in: 1.593 secs -[2018-02-13T08:31:48.360] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:31:48.364] [INFO] cheese - inserting 1000 documents. first: File:Mubarakal-Kabir computer rendition.jpg and last: Davis High School (Washington) -[2018-02-13T08:31:48.384] [INFO] cheese - inserting 1000 documents. first: Fireman Save My Child (film) and last: United States House of Representatives elections in Kentucky, 1952 -[2018-02-13T08:31:48.453] [INFO] cheese - inserting 1000 documents. first: Steam tunnel incident and last: 1988 Nutri-Metics Open - Doubles -[2018-02-13T08:31:48.455] [INFO] cheese - inserting 1000 documents. first: Abercrombie's syndrome and last: Cottens, Vaud -[2018-02-13T08:31:48.518] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:31:48.528] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:31:48.648] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:31:48.666] [INFO] cheese - inserting 1000 documents. first: Left Shark (Viral Phenomenon) and last: Posterior cardinal veins -[2018-02-13T08:31:48.709] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:31:48.777] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:31:48.933] [INFO] cheese - inserting 1000 documents. first: Yang Cheng-wei and last: Mitchell Hallahan -[2018-02-13T08:31:49.107] [INFO] cheese - inserting 1000 documents. first: 1988 Nutri-Metics Open - Singles and last: 1997 Faber Grand Prix - Singles -[2018-02-13T08:31:49.110] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:31:49.152] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:31:49.186] [INFO] cheese - inserting 1000 documents. first: Piezoelectric Speakers and last: Anne C. Lynch Botta -[2018-02-13T08:31:49.268] [INFO] cheese - inserting 1000 documents. first: Apne Apne (1987 film) and last: Public domain mark -[2018-02-13T08:31:49.287] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:31:49.391] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:31:49.551] [INFO] cheese - inserting 1000 documents. first: Susan L. Adams and last: Category:Species described in the 1860s -[2018-02-13T08:31:49.591] [INFO] cheese - inserting 1000 documents. first: German 1st Panzer Group and last: List of birds of Brazil -[2018-02-13T08:31:49.593] [INFO] cheese - inserting 1000 documents. first: 1997 Family Circle Cup - Doubles and last: 2007 Pilot Pen Tennis - Men's Doubles -[2018-02-13T08:31:49.664] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:31:49.637] [INFO] cheese - inserting 1000 documents. first: Jean-Charles Lapierre and last: Vaughn Monroe -[2018-02-13T08:31:49.773] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:31:49.801] [INFO] cheese - batch complete in: 1.283 secs -[2018-02-13T08:31:49.958] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Atlanta Braves articles and last: 1998 ARFU Asian Rugby Championship -[2018-02-13T08:31:50.031] [INFO] cheese - batch complete in: 1.756 secs -[2018-02-13T08:31:50.133] [INFO] cheese - inserting 1000 documents. first: Category:Sam Cooke tribute albums and last: John Baker White -[2018-02-13T08:31:50.233] [INFO] cheese - batch complete in: 1.705 secs -[2018-02-13T08:31:50.330] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:31:50.444] [INFO] cheese - inserting 1000 documents. first: Braithwaite, George and last: Shades Of Death Road -[2018-02-13T08:31:50.550] [INFO] cheese - inserting 1000 documents. first: 2007 Pilot Pen Tennis - Men's Singles and last: Medvedevsky -[2018-02-13T08:31:50.534] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:31:50.645] [INFO] cheese - inserting 1000 documents. first: Maria Campbell and last: Love is All -[2018-02-13T08:31:50.662] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:31:50.734] [INFO] cheese - inserting 1000 documents. first: 217th (Qu'Appelle) Battalion, CEF and last: Lord of the rings music -[2018-02-13T08:31:50.747] [INFO] cheese - batch complete in: 1.459 secs -[2018-02-13T08:31:50.776] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Actual Condition and last: Make Me Over (Lifehouse song) -[2018-02-13T08:31:50.847] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T08:31:50.879] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:31:51.015] [INFO] cheese - inserting 1000 documents. first: Arterial insufficiency and last: David G. Hooker -[2018-02-13T08:31:51.030] [INFO] cheese - inserting 1000 documents. first: Khanpur, Sindh and last: GeNMR -[2018-02-13T08:31:51.099] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:31:51.151] [INFO] cheese - inserting 1000 documents. first: Issam Abdel-Tawab and last: 2009 LA Tennis Open - Doubles -[2018-02-13T08:31:51.155] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:31:51.173] [INFO] cheese - inserting 1000 documents. first: Category:1997 establishments in Ivory Coast and last: Brown, Randy -[2018-02-13T08:31:51.240] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:31:51.286] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:31:51.354] [INFO] cheese - inserting 1000 documents. first: Wallis and futana and last: Readlyn -[2018-02-13T08:31:51.483] [INFO] cheese - inserting 1000 documents. first: Little King's Story and last: Adam Goldworm -[2018-02-13T08:31:51.495] [INFO] cheese - inserting 1000 documents. first: Don coldsmith and last: Molly Day Thatcher -[2018-02-13T08:31:51.540] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:31:51.574] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:31:51.603] [INFO] cheese - inserting 1000 documents. first: 2009 LA Tennis Open - Singles and last: Paano Na Kaya -[2018-02-13T08:31:51.681] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:31:51.736] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:31:51.832] [INFO] cheese - inserting 1000 documents. first: List of air-filtering plants and last: Bournemouth Borough Council elections -[2018-02-13T08:31:51.893] [INFO] cheese - inserting 1000 documents. first: Derby City Council elections 2014-2016 and last: Pakistani foreign relations -[2018-02-13T08:31:51.938] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:31:51.963] [INFO] cheese - inserting 1000 documents. first: Brown, Robin and last: Lucky Jo -[2018-02-13T08:31:52.009] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:31:52.105] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:31:52.111] [INFO] cheese - inserting 1000 documents. first: Babesch - Bulletin Antieke Beschaving and last: Diving at the 1976 Summer Olympics - Women's 3 metre springboard -[2018-02-13T08:31:52.192] [INFO] cheese - inserting 1000 documents. first: Category:Florida Gators basketball venues and last: 1914 Columbus Panhandles season -[2018-02-13T08:31:52.220] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:31:52.289] [INFO] cheese - inserting 1000 documents. first: Francis Oscar Lindquist and last: Trash compactor -[2018-02-13T08:31:52.319] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:31:52.358] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:31:52.530] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dave Breen and last: Wikipedia:BRD violations -[2018-02-13T08:31:52.532] [INFO] cheese - inserting 1000 documents. first: University of California, Pomona and last: Lethal Weapon - The Ride -[2018-02-13T08:31:52.602] [INFO] cheese - inserting 1000 documents. first: Soviet occupation of Northeast China and last: File:Lobo bravo logo.png -[2018-02-13T08:31:52.611] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:31:52.702] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:31:52.719] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:31:52.825] [INFO] cheese - inserting 1000 documents. first: Aridaman jit singh and last: Echols, John -[2018-02-13T08:31:52.834] [INFO] cheese - inserting 1000 documents. first: Old Jersey and last: St. David's Parish, Prince Edward Island -[2018-02-13T08:31:52.903] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:53.012] [INFO] cheese - inserting 1000 documents. first: Letzte Tage - Letzte Nächte and last: Shameful shitting -[2018-02-13T08:31:53.066] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:31:53.069] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:31:53.118] [INFO] cheese - inserting 1000 documents. first: Post-tensioned concrete and last: Plon -[2018-02-13T08:31:53.148] [INFO] cheese - inserting 1000 documents. first: Ruger M77 Mark II and last: A Mother's Confession -[2018-02-13T08:31:53.181] [INFO] cheese - inserting 1000 documents. first: In Flanders Field and last: St. Margaret's Church -[2018-02-13T08:31:53.223] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:31:53.245] [INFO] cheese - batch complete in: 1.705 secs -[2018-02-13T08:31:53.255] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:31:53.394] [INFO] cheese - inserting 1000 documents. first: Fondation Vincent van Gogh Arles and last: Category:Blues Magoos albums -[2018-02-13T08:31:53.528] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:31:53.612] [INFO] cheese - inserting 1000 documents. first: Shooting at the 2000 Summer Olympics - Men's trap and last: Time line of the British Army 1800 - 1899 -[2018-02-13T08:31:53.628] [INFO] cheese - inserting 1000 documents. first: International Museum and Library of the Conjuring Arts and last: 1964 Nemzeti Bajnokság I -[2018-02-13T08:31:53.645] [INFO] cheese - inserting 1000 documents. first: British-Ukrainian Symposium (BUS) and last: Manjari (singer) -[2018-02-13T08:31:53.685] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:31:53.725] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:31:53.786] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:31:53.807] [INFO] cheese - inserting 1000 documents. first: File:Map of Prince Edward Island highlighting St. David's Parish.png and last: Lady Friday -[2018-02-13T08:31:53.914] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:31:53.917] [INFO] cheese - inserting 1000 documents. first: Terias sodalis and last: Thomas Clifton -[2018-02-13T08:31:54.022] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:31:54.114] [INFO] cheese - inserting 1000 documents. first: Category:Blue Lagoon (band) songs and last: Sendes -[2018-02-13T08:31:54.170] [INFO] cheese - inserting 1000 documents. first: Martin Luther School and last: Rocham Phoeung -[2018-02-13T08:31:54.203] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:31:54.303] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:31:54.441] [INFO] cheese - inserting 1000 documents. first: 26422 Marekbuchman and last: Jain iconography -[2018-02-13T08:31:54.522] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:54.529] [INFO] cheese - inserting 1000 documents. first: Kato Yasuaki and last: Samurai Evolution: Oukoku Geist -[2018-02-13T08:31:54.643] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:31:54.708] [INFO] cheese - inserting 1000 documents. first: Time line of the British Army 1900 - 1999 and last: List of characters in the Amelia Peabody series -[2018-02-13T08:31:54.716] [INFO] cheese - inserting 1000 documents. first: Retroactive interference and last: Transylvania County -[2018-02-13T08:31:54.785] [INFO] cheese - inserting 1000 documents. first: Category:Secondary schools in West Yorkshire and last: Wikipedia:Sockpuppet investigations/John Torn/Archive -[2018-02-13T08:31:54.791] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:31:54.858] [INFO] cheese - batch complete in: 1.613 secs -[2018-02-13T08:31:54.871] [INFO] cheese - inserting 1000 documents. first: Sandas, Iran and last: Lizard orchid -[2018-02-13T08:31:54.915] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Spiderio and last: Captain Birdseye -[2018-02-13T08:31:54.902] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:31:55.000] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:31:55.062] [INFO] cheese - inserting 1000 documents. first: Christopher Helm Publishers and last: Antelope (passenger train) -[2018-02-13T08:31:55.076] [INFO] cheese - batch complete in: 1.162 secs -[2018-02-13T08:31:55.246] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:31:55.324] [INFO] cheese - inserting 1000 documents. first: Emily Kate Johnston and last: Easistore Self Storage -[2018-02-13T08:31:55.359] [INFO] cheese - inserting 1000 documents. first: MaildeQuest and last: Hamilton High School Fine Arts Program -[2018-02-13T08:31:55.481] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:31:55.536] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:31:55.739] [INFO] cheese - inserting 1000 documents. first: List of characters in Angels & Demons and last: Breathe & Stop -[2018-02-13T08:31:55.751] [INFO] cheese - inserting 1000 documents. first: Centro Galleria and last: Baldeh Sara -[2018-02-13T08:31:55.787] [INFO] cheese - inserting 1000 documents. first: Ölkofra tale and last: Category:Education in Richmond County, Georgia -[2018-02-13T08:31:55.855] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:31:55.916] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:31:55.937] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:31:56.036] [INFO] cheese - inserting 1000 documents. first: Governors of Vancouver Island and last: Queen Saleha -[2018-02-13T08:31:56.057] [INFO] cheese - inserting 1000 documents. first: List of asteroids (117001-118000) and last: Joseph Octave Arsenault -[2018-02-13T08:31:56.123] [INFO] cheese - inserting 1000 documents. first: 413th Strategic Fighter Wing and last: Revista ERES -[2018-02-13T08:31:56.159] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:31:56.188] [INFO] cheese - inserting 1000 documents. first: 1962–63 Segunda División and last: Wildlife of Ratanakiri -[2018-02-13T08:31:56.235] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:31:56.251] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:31:56.265] [INFO] cheese - inserting 1000 documents. first: Bulkington and last: Local Authority Accommodation -[2018-02-13T08:31:56.405] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:31:56.542] [INFO] cheese - batch complete in: 1.684 secs -[2018-02-13T08:31:56.680] [INFO] cheese - inserting 1000 documents. first: Bandbon-e Beneksar and last: Category:Faroe Islands under-21 international footballers -[2018-02-13T08:31:56.749] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Burke County, Georgia and last: Čeřenice -[2018-02-13T08:31:56.803] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:31:56.868] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:31:57.030] [INFO] cheese - inserting 1000 documents. first: Juventud Guerrera and Psicosis and last: Sergio Torres Guardeño -[2018-02-13T08:31:57.084] [INFO] cheese - inserting 1000 documents. first: Shi Zhou Pian and last: 28816 Kimneville -[2018-02-13T08:31:57.129] [INFO] cheese - batch complete in: 1.213 secs -[2018-02-13T08:31:57.249] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:31:57.316] [INFO] cheese - inserting 1000 documents. first: Knock in and last: Oxford Council election, 2006 -[2018-02-13T08:31:57.380] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Al Gore criticisms and misconceptions and last: Welsh Canadian -[2018-02-13T08:31:57.382] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:31:57.535] [INFO] cheese - inserting 1000 documents. first: Austrian National Bank and last: Pieing -[2018-02-13T08:31:57.584] [INFO] cheese - inserting 1000 documents. first: File:AIUB-Oratory-Club.jpg and last: The Sackless Games -[2018-02-13T08:31:57.646] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Arbitration Committee Elections December 2013/Candidates/LFaraone and last: Joshua Vanlandingham -[2018-02-13T08:31:57.682] [INFO] cheese - batch complete in: 1.522 secs -[2018-02-13T08:31:57.715] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:31:57.728] [INFO] cheese - batch complete in: 1.493 secs -[2018-02-13T08:31:57.818] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:31:57.916] [INFO] cheese - inserting 1000 documents. first: Ooshima Naoto and last: HMS Intrepid -[2018-02-13T08:31:58.047] [INFO] cheese - inserting 1000 documents. first: 28817 Simoneflood and last: Joe Borg (screenwriter) -[2018-02-13T08:31:58.066] [INFO] cheese - batch complete in: 1.524 secs -[2018-02-13T08:31:58.101] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:31:58.419] [INFO] cheese - inserting 1000 documents. first: Czerwieńsk Commune and last: Template:Top German World War II Aces -[2018-02-13T08:31:58.532] [INFO] cheese - inserting 1000 documents. first: Joseph Ronald Quiñahan and last: Inas El Degheidi -[2018-02-13T08:31:58.586] [INFO] cheese - inserting 1000 documents. first: Mneumonic device and last: The Rolling Stones European Tour 1970 -[2018-02-13T08:31:58.653] [INFO] cheese - batch complete in: 1.271 secs -[2018-02-13T08:31:58.727] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:31:58.897] [INFO] cheese - inserting 1000 documents. first: Royal College of Music of Stockholm and last: Guichenot -[2018-02-13T08:31:58.902] [INFO] cheese - batch complete in: 1.22 secs -[2018-02-13T08:31:59.014] [INFO] cheese - inserting 1000 documents. first: Society of Muslim Brotherhood and last: Oklahoma State Highway 110 -[2018-02-13T08:31:59.109] [INFO] cheese - batch complete in: 1.98 secs -[2018-02-13T08:31:59.307] [INFO] cheese - batch complete in: 1.579 secs -[2018-02-13T08:31:59.398] [INFO] cheese - inserting 1000 documents. first: Category:Artists from Leiden and last: Reasons to Be Miserable (Part 10) -[2018-02-13T08:31:59.488] [INFO] cheese - inserting 1000 documents. first: 1981 World Weightlifting Championships and last: 2011 Samsung Securities Cup – Womens' Doubles -[2018-02-13T08:31:59.579] [INFO] cheese - batch complete in: 1.477 secs -[2018-02-13T08:31:59.722] [INFO] cheese - batch complete in: 1.904 secs -[2018-02-13T08:31:59.860] [INFO] cheese - inserting 1000 documents. first: Philautus hainanus and last: Jir Mahalleh, Shaft -[2018-02-13T08:31:59.930] [INFO] cheese - inserting 1000 documents. first: File:Bijou Bleu Bartholemew1.jpg and last: File:One Time Bells.jpg -[2018-02-13T08:31:59.947] [INFO] cheese - inserting 1000 documents. first: Helen St. John and last: FKF President's Cup -[2018-02-13T08:32:00.064] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T08:32:00.137] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:32:00.156] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T08:32:00.349] [INFO] cheese - inserting 1000 documents. first: Ticker tape and last: North Carolina Agriculture and Technology University -[2018-02-13T08:32:00.414] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adrian ferguson and last: Warday -[2018-02-13T08:32:00.424] [INFO] cheese - inserting 1000 documents. first: Jules Muck and last: 27417 Jessjohnson -[2018-02-13T08:32:00.675] [INFO] cheese - batch complete in: 1.095 secs -[2018-02-13T08:32:00.681] [INFO] cheese - batch complete in: 2.615 secs -[2018-02-13T08:32:00.695] [INFO] cheese - batch complete in: 1.388 secs -[2018-02-13T08:32:01.015] [INFO] cheese - inserting 1000 documents. first: Template:UNIFFAC football and last: Elmin Kurbegovic -[2018-02-13T08:32:01.175] [INFO] cheese - inserting 1000 documents. first: Liudolfings and last: Blue Max Droid -[2018-02-13T08:32:01.178] [INFO] cheese - inserting 1000 documents. first: English rugby premiership and last: Protochondrostoma -[2018-02-13T08:32:01.188] [INFO] cheese - inserting 1000 documents. first: Dundee Engine Plant and last: Peñamayor -[2018-02-13T08:32:01.274] [INFO] cheese - batch complete in: 2.165 secs -[2018-02-13T08:32:01.387] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T08:32:01.425] [INFO] cheese - batch complete in: 1.288 secs -[2018-02-13T08:32:01.485] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Dorothy Arzner and last: St Peter's School (Cambridge) -[2018-02-13T08:32:01.647] [INFO] cheese - batch complete in: 1.925 secs -[2018-02-13T08:32:01.778] [INFO] cheese - batch complete in: 1.622 secs -[2018-02-13T08:32:01.867] [INFO] cheese - inserting 1000 documents. first: 27421 Nathanhan and last: Category:Carnivals in Saint Vincent and the Grenadines -[2018-02-13T08:32:02.007] [INFO] cheese - inserting 1000 documents. first: Coney Island Yards and last: Electronically-controlled Continuously Variable Transmission -[2018-02-13T08:32:02.097] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:32:02.260] [INFO] cheese - batch complete in: 1.564 secs -[2018-02-13T08:32:02.421] [INFO] cheese - inserting 1000 documents. first: PLCγ and last: Sērā Mākyurī -[2018-02-13T08:32:02.470] [INFO] cheese - inserting 1000 documents. first: Bobo doll experiment and last: Bubble -[2018-02-13T08:32:02.532] [INFO] cheese - inserting 1000 documents. first: Category:Appalachian State Mountaineers and last: Osburga -[2018-02-13T08:32:02.568] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:32:02.574] [INFO] cheese - inserting 1000 documents. first: Katherin Yelick and last: Template:NFLAltPrimaryColor/doc -[2018-02-13T08:32:02.691] [INFO] cheese - inserting 1000 documents. first: Jamaican giant swallowtail and last: Huang (state) -[2018-02-13T08:32:02.681] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:32:02.765] [INFO] cheese - batch complete in: 2.084 secs -[2018-02-13T08:32:02.798] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:32:02.902] [INFO] cheese - batch complete in: 1.255 secs -[2018-02-13T08:32:02.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject India/Assessment/Tag & Assess 2008/018 and last: Nimbb-diliman -[2018-02-13T08:32:03.074] [INFO] cheese - inserting 1000 documents. first: Category:Parades in Saint Vincent and the Grenadines and last: 𑃤 -[2018-02-13T08:32:03.253] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:32:03.281] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T08:32:03.494] [INFO] cheese - inserting 1000 documents. first: Col. Flagg and last: Tornadoes by Year -[2018-02-13T08:32:03.655] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:32:03.667] [INFO] cheese - inserting 1000 documents. first: Châteaubernard and last: 1800 in art -[2018-02-13T08:32:03.693] [INFO] cheese - inserting 1000 documents. first: Wikipedia:GLAM/NHMandSM/8th Month Report and last: Akademiska damkören lyran -[2018-02-13T08:32:03.838] [INFO] cheese - batch complete in: 1.577 secs -[2018-02-13T08:32:03.850] [INFO] cheese - inserting 1000 documents. first: Childless and last: Baitala deula -[2018-02-13T08:32:03.937] [INFO] cheese - inserting 1000 documents. first: 𑃥 and last: Wikipedia:LTA/Jermboy27 -[2018-02-13T08:32:03.950] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:32:04.047] [INFO] cheese - inserting 1000 documents. first: Category:Shropshire Yeomanry officers and last: Latitude 1 degree S -[2018-02-13T08:32:04.104] [INFO] cheese - batch complete in: 1.202 secs -[2018-02-13T08:32:04.115] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:32:04.132] [INFO] cheese - inserting 1000 documents. first: Marginal Utility and last: Beaches (film) -[2018-02-13T08:32:04.223] [INFO] cheese - batch complete in: 1.542 secs -[2018-02-13T08:32:04.429] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T08:32:04.568] [INFO] cheese - inserting 1000 documents. first: Shoplifts and last: Wikipedia:Articles for deletion/Maxwell's House -[2018-02-13T08:32:04.598] [INFO] cheese - inserting 1000 documents. first: 3 (The Black Heart Procession album) and last: 46th Rocket Division -[2018-02-13T08:32:04.623] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:32:04.816] [INFO] cheese - batch complete in: 1.535 secs -[2018-02-13T08:32:04.990] [INFO] cheese - inserting 1000 documents. first: Fish-louse and last: Siege of Ganjaku -[2018-02-13T08:32:05.185] [INFO] cheese - inserting 1000 documents. first: Vishkheseh Mahalleh and last: Ron Burton (Dallas Cowboys) -[2018-02-13T08:32:05.228] [INFO] cheese - batch complete in: 1.573 secs -[2018-02-13T08:32:05.235] [INFO] cheese - inserting 1000 documents. first: Mini compact disc and last: Battle of Baçente -[2018-02-13T08:32:05.309] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:32:05.385] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Clarke County, Georgia and last: Elisabeth-Louise Vigée Le Brun -[2018-02-13T08:32:05.495] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:32:05.501] [INFO] cheese - inserting 1000 documents. first: Malovishersky Municipal District and last: Erez border crossing -[2018-02-13T08:32:05.512] [INFO] cheese - batch complete in: 1.674 secs -[2018-02-13T08:32:05.556] [INFO] cheese - inserting 1000 documents. first: Latitude 2 degrees S and last: Music For Boys -[2018-02-13T08:32:05.672] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:32:05.732] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:32:06.012] [INFO] cheese - inserting 1000 documents. first: Les Infideles and last: Staatsexamen -[2018-02-13T08:32:06.113] [INFO] cheese - batch complete in: 1.297 secs -[2018-02-13T08:32:06.351] [INFO] cheese - inserting 1000 documents. first: 6th World Science Fiction Convention and last: Paul, Weiss, Rifkind, Wharton and Garrison -[2018-02-13T08:32:06.516] [INFO] cheese - inserting 1000 documents. first: Sansara Naga 1x2 and last: Yūko Kurita -[2018-02-13T08:32:06.522] [INFO] cheese - batch complete in: 1.294 secs -[2018-02-13T08:32:06.616] [INFO] cheese - inserting 1000 documents. first: The Fall of the House of Usher and last: Kingdom of Spain -[2018-02-13T08:32:06.669] [INFO] cheese - inserting 1000 documents. first: Lullubi and last: Wikipedia:Articles for deletion/Faith Harrington -[2018-02-13T08:32:06.712] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T08:32:06.733] [INFO] cheese - inserting 1000 documents. first: Thomas Kuczynski and last: End-run -[2018-02-13T08:32:06.905] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T08:32:06.930] [INFO] cheese - batch complete in: 1.417 secs -[2018-02-13T08:32:06.934] [INFO] cheese - batch complete in: 2.505 secs -[2018-02-13T08:32:07.288] [INFO] cheese - inserting 1000 documents. first: Portal:American football/Anniversaries/June 23 and last: O. C. Barber Colt Barn -[2018-02-13T08:32:07.430] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:32:07.508] [INFO] cheese - inserting 1000 documents. first: File:WDDD station logo.png and last: Republic of Jamtland -[2018-02-13T08:32:07.543] [INFO] cheese - inserting 1000 documents. first: Granite Wash and last: Legislative district of Lapu-Lapu -[2018-02-13T08:32:07.605] [INFO] cheese - inserting 1000 documents. first: Bane Harbour and last: Type-checked -[2018-02-13T08:32:07.918] [INFO] cheese - batch complete in: 1.395 secs -[2018-02-13T08:32:07.951] [INFO] cheese - batch complete in: 2.642 secs -[2018-02-13T08:32:07.969] [INFO] cheese - batch complete in: 2.237 secs -[2018-02-13T08:32:08.028] [INFO] cheese - inserting 1000 documents. first: Kurita Yūko and last: Hulstia undulatella -[2018-02-13T08:32:08.246] [INFO] cheese - batch complete in: 1.534 secs -[2018-02-13T08:32:08.492] [INFO] cheese - inserting 1000 documents. first: Coralie Simmons and last: Cadillac Model S -[2018-02-13T08:32:08.590] [INFO] cheese - inserting 1000 documents. first: File:Cypress Point Creamery.jpg and last: Steinar Karlsen -[2018-02-13T08:32:08.595] [INFO] cheese - inserting 1000 documents. first: Abby Cunningham Ewing Sumner and last: Kamakura's proposed World Heritage sites -[2018-02-13T08:32:08.682] [INFO] cheese - batch complete in: 1.751 secs -[2018-02-13T08:32:08.851] [INFO] cheese - batch complete in: 1.421 secs -[2018-02-13T08:32:08.907] [INFO] cheese - batch complete in: 2.002 secs -[2018-02-13T08:32:09.045] [INFO] cheese - inserting 1000 documents. first: Ayana (name) and last: Quinn Sharp -[2018-02-13T08:32:09.124] [INFO] cheese - inserting 1000 documents. first: Consciousness expansion and last: Wikipedia:Sockpuppet investigations/AngelaVidal/Archive -[2018-02-13T08:32:09.229] [INFO] cheese - batch complete in: 1.277 secs -[2018-02-13T08:32:09.319] [INFO] cheese - inserting 1000 documents. first: Tegnsprak and last: Edward Rowlands -[2018-02-13T08:32:09.376] [INFO] cheese - inserting 1000 documents. first: Retroauricular lymph nodes and last: 1968 European Formula Two Championship -[2018-02-13T08:32:09.399] [INFO] cheese - batch complete in: 1.43 secs -[2018-02-13T08:32:09.476] [INFO] cheese - inserting 1000 documents. first: File:Goodbye (Bobo Stenson album).jpg and last: (9120) 1998 DR8 -[2018-02-13T08:32:09.636] [INFO] cheese - batch complete in: 1.718 secs -[2018-02-13T08:32:09.710] [INFO] cheese - batch complete in: 1.464 secs -[2018-02-13T08:32:09.769] [INFO] cheese - batch complete in: 2.834 secs -[2018-02-13T08:32:09.966] [INFO] cheese - inserting 1000 documents. first: Born to Be Bad (1950 film) and last: Murray Brown -[2018-02-13T08:32:10.147] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:32:10.259] [INFO] cheese - inserting 1000 documents. first: David Dorfman (choreographer) and last: Category:New Zealand national rugby union team coaches -[2018-02-13T08:32:10.321] [INFO] cheese - inserting 1000 documents. first: Cadillac Model T and last: Metamagnetism -[2018-02-13T08:32:10.350] [INFO] cheese - inserting 1000 documents. first: List of cities by country that have Stolpersteine and last: 2010 Speedway Premier League KOC -[2018-02-13T08:32:10.457] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:32:10.522] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T08:32:10.549] [INFO] cheese - batch complete in: 1.866 secs -[2018-02-13T08:32:10.588] [INFO] cheese - inserting 1000 documents. first: Charles Critchett and last: ImaGemInc -[2018-02-13T08:32:10.697] [INFO] cheese - inserting 1000 documents. first: La Victoria Arduino and last: A Chrysanthemum Bursts in Cincoesquinas -[2018-02-13T08:32:10.740] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:32:10.914] [INFO] cheese - inserting 1000 documents. first: Category:2008 podcast debuts and last: February 2016 Pulwama militant siege -[2018-02-13T08:32:10.932] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:32:11.113] [INFO] cheese - batch complete in: 2.206 secs -[2018-02-13T08:32:11.191] [INFO] cheese - inserting 1000 documents. first: SAP Research and last: Slobodan Janković (disambiguation) -[2018-02-13T08:32:11.249] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:32:11.596] [INFO] cheese - inserting 1000 documents. first: Template:2014 Cascadia Cup and last: François Fages -[2018-02-13T08:32:11.653] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:32:11.673] [INFO] cheese - inserting 1000 documents. first: CH3NO2 and last: Obverse (logic) -[2018-02-13T08:32:11.786] [INFO] cheese - inserting 1000 documents. first: 2010 Cincinnati Bengals season and last: Wikipedia:Valued picture candidates/Bigelow Bridge -[2018-02-13T08:32:11.842] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T08:32:11.881] [INFO] cheese - batch complete in: 1.423 secs -[2018-02-13T08:32:11.894] [INFO] cheese - inserting 1000 documents. first: Kineshma Urban Okrug and last: Category:1733 in Denmark -[2018-02-13T08:32:11.914] [INFO] cheese - inserting 1000 documents. first: Dynamic memory allocation and last: Zionist conspiracy theories regarding the September 11, 2001 Attacks -[2018-02-13T08:32:11.997] [INFO] cheese - inserting 1000 documents. first: Merchantville Country Club and last: Ecumenical Patriarch Photius II of Constantinople -[2018-02-13T08:32:12.047] [INFO] cheese - inserting 1000 documents. first: TNMD and last: Template:Taxonomy/Holmesina -[2018-02-13T08:32:12.054] [INFO] cheese - inserting 1000 documents. first: C. crispa and last: Klaw (comics) -[2018-02-13T08:32:12.126] [INFO] cheese - batch complete in: 1.386 secs -[2018-02-13T08:32:12.164] [INFO] cheese - batch complete in: 2.395 secs -[2018-02-13T08:32:12.200] [INFO] cheese - batch complete in: 1.268 secs -[2018-02-13T08:32:12.209] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:32:12.250] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:32:12.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Training/tour/be bold14 and last: Mount Whitecap -[2018-02-13T08:32:12.607] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:32:12.815] [INFO] cheese - inserting 1000 documents. first: University Park (Indianapolis, Indiana) and last: Bernard Fitzalan-Howard -[2018-02-13T08:32:12.906] [INFO] cheese - inserting 1000 documents. first: Category:Trade unions by former country and last: Wikipedia:Sockpuppet investigations/90.217.191.31/Archive -[2018-02-13T08:32:12.914] [INFO] cheese - inserting 1000 documents. first: Compact Oxford Dictionary and last: Berberyan -[2018-02-13T08:32:12.932] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:32:12.962] [INFO] cheese - inserting 1000 documents. first: Independent Primary School Heads of Australia and last: Jennifer L. Knox -[2018-02-13T08:32:12.995] [INFO] cheese - inserting 1000 documents. first: Hsiahou Tun and last: Submarine telecommunications cable -[2018-02-13T08:32:12.998] [INFO] cheese - inserting 1000 documents. first: Kofi (comics) and last: Wikipedia:Articles for deletion/Today I Caught the Plague -[2018-02-13T08:32:13.028] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:32:13.066] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:32:13.154] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:32:13.204] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:32:13.185] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:32:13.384] [INFO] cheese - inserting 1000 documents. first: Kani Seyf and last: José María Dueso -[2018-02-13T08:32:13.493] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:32:13.715] [INFO] cheese - inserting 1000 documents. first: Chico Carrasquel and last: Foreign terrorist organizations -[2018-02-13T08:32:13.854] [INFO] cheese - inserting 1000 documents. first: Svenska Cupen 1943 and last: Category:Bomber aircraft 1910-1919 -[2018-02-13T08:32:14.015] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:32:14.097] [INFO] cheese - batch complete in: 1.932 secs -[2018-02-13T08:32:14.285] [INFO] cheese - inserting 1000 documents. first: Samuel H. Hoge and last: Wikipedia:Articles for deletion/Fake Chapter Records -[2018-02-13T08:32:14.308] [INFO] cheese - inserting 1000 documents. first: Caithness Glass and last: I Megaliteres Epitihies (Mando album) -[2018-02-13T08:32:14.418] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:32:14.422] [INFO] cheese - inserting 1000 documents. first: Mpaglamas and last: European Parliament election, 1979 -[2018-02-13T08:32:14.444] [INFO] cheese - inserting 1000 documents. first: Category:Shipping in Scotland and last: Country codes: R -[2018-02-13T08:32:14.447] [INFO] cheese - inserting 1000 documents. first: Snow Speedwell and last: Bácum Municipality -[2018-02-13T08:32:14.471] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:32:14.559] [INFO] cheese - batch complete in: 1.355 secs -[2018-02-13T08:32:14.664] [INFO] cheese - inserting 1000 documents. first: Archaic-Early Basketmaker Era and last: Actinoplanes -[2018-02-13T08:32:14.665] [INFO] cheese - inserting 1000 documents. first: File:Sport Ancash Old.gif and last: Stereoelectronic effect -[2018-02-13T08:32:14.719] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:32:14.722] [INFO] cheese - batch complete in: 1.528 secs -[2018-02-13T08:32:14.742] [INFO] cheese - batch complete in: 1.809 secs -[2018-02-13T08:32:14.900] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:32:15.246] [INFO] cheese - inserting 1000 documents. first: MagillOn and last: Byron Smith (rugby league) -[2018-02-13T08:32:15.282] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:32:15.412] [INFO] cheese - inserting 1000 documents. first: Blue Movie (film) and last: 1998 World Rally Championship season -[2018-02-13T08:32:15.450] [INFO] cheese - inserting 1000 documents. first: Category:Fighter aircraft 1920-1929 and last: Izbičanj -[2018-02-13T08:32:15.507] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:32:15.511] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:32:15.535] [INFO] cheese - inserting 1000 documents. first: Banámichi Municipality and last: Chlorodius bidentatus -[2018-02-13T08:32:15.710] [INFO] cheese - inserting 1000 documents. first: Mowbray herald extraordinary and last: Category:National Basketball Association players from Lithuania -[2018-02-13T08:32:15.716] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:32:15.721] [INFO] cheese - inserting 1000 documents. first: Moskow and last: Barnstable County -[2018-02-13T08:32:15.762] [INFO] cheese - inserting 1000 documents. first: Melkizedek and last: McAlmond House -[2018-02-13T08:32:15.799] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:32:15.834] [INFO] cheese - inserting 1000 documents. first: ANSI character set and last: Quadraplegia -[2018-02-13T08:32:15.882] [INFO] cheese - inserting 1000 documents. first: Czechowice-Dziedzice Commune and last: HR 603 -[2018-02-13T08:32:15.936] [INFO] cheese - batch complete in: 1.377 secs -[2018-02-13T08:32:16.033] [INFO] cheese - batch complete in: 1.936 secs -[2018-02-13T08:32:16.069] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:32:16.119] [INFO] cheese - batch complete in: 1.396 secs -[2018-02-13T08:32:16.345] [INFO] cheese - inserting 1000 documents. first: Category:Israeli military aircraft 1980-1989 and last: Wikipedia:WikiProject Spam/LinkReports/jcbrasil.webnode.com -[2018-02-13T08:32:16.419] [INFO] cheese - inserting 1000 documents. first: Li Shan (volleybal) and last: Jan Tarło (XV-1550) -[2018-02-13T08:32:16.496] [INFO] cheese - inserting 1000 documents. first: Confucius Lives Next Door: What living in the East teaches us about living in the west and last: Richard Greeff -[2018-02-13T08:32:16.506] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:32:16.628] [INFO] cheese - batch complete in: 1.116 secs -[2018-02-13T08:32:16.744] [INFO] cheese - inserting 1000 documents. first: Chlorodiella bidentata and last: KLICK syndrome -[2018-02-13T08:32:16.755] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:32:16.858] [INFO] cheese - inserting 1000 documents. first: Pentecostalists and last: Andrica Conjecture -[2018-02-13T08:32:16.888] [INFO] cheese - inserting 1000 documents. first: Template:Foreign relations of Moldova and last: Diocese of Boulogne-sur-Mer -[2018-02-13T08:32:16.909] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:32:17.039] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:32:17.069] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:32:17.300] [INFO] cheese - inserting 1000 documents. first: Mikołaj Firlej (?-1588) and last: The Blockbuster Buster -[2018-02-13T08:32:17.316] [INFO] cheese - inserting 1000 documents. first: Gemmae and last: Borough Fen -[2018-02-13T08:32:17.380] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:32:17.485] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:32:17.559] [INFO] cheese - inserting 1000 documents. first: Carlos Motta Taracena and last: Baby Aston -[2018-02-13T08:32:17.606] [INFO] cheese - inserting 1000 documents. first: Q+/Papias hypothesis and last: Argyllshire by-election, 1940 -[2018-02-13T08:32:17.613] [INFO] cheese - inserting 1000 documents. first: Barnes County and last: STS-83 -[2018-02-13T08:32:17.720] [INFO] cheese - batch complete in: 1.214 secs -[2018-02-13T08:32:17.866] [INFO] cheese - inserting 1000 documents. first: Andrzej Bialynicki-Birula and last: Manitoba Junior Hockey League 2007 -[2018-02-13T08:32:17.885] [INFO] cheese - inserting 1000 documents. first: Krumlov (disambiguation) and last: The Methods of Ethics -[2018-02-13T08:32:17.893] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T08:32:17.931] [INFO] cheese - batch complete in: 1.898 secs -[2018-02-13T08:32:17.987] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:32:18.031] [INFO] cheese - inserting 1000 documents. first: Alfred Barton Rendle and last: Wikipedia:Peer review/List of elements by nuclear stability/archive1 -[2018-02-13T08:32:18.051] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:32:18.219] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:32:18.325] [INFO] cheese - inserting 1000 documents. first: Nationwide League (Kenya Rugby Union) and last: Archdiocese of St Andrews (Episcopal) -[2018-02-13T08:32:18.452] [INFO] cheese - inserting 1000 documents. first: Matthew Crabb and last: Category:Soviet sport aircraft 1980-1989 -[2018-02-13T08:32:18.487] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:32:18.530] [INFO] cheese - batch complete in: 1.149 secs -[2018-02-13T08:32:18.640] [INFO] cheese - inserting 1000 documents. first: Podcast Pickle and last: Statute of Uses Act 1535 -[2018-02-13T08:32:18.851] [INFO] cheese - inserting 1000 documents. first: Invictus (Means) Unconquered and last: Sigismunda mourning over the Heart of Guiscardo -[2018-02-13T08:32:18.935] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T08:32:18.955] [INFO] cheese - inserting 1000 documents. first: Na-Meo language and last: Paul Clauson -[2018-02-13T08:32:19.013] [INFO] cheese - inserting 1000 documents. first: Multipurpose Laboratory Module and last: Bilton Junior School -[2018-02-13T08:32:18.887] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:32:19.063] [INFO] cheese - inserting 1000 documents. first: Alfred Neumann (writer) and last: Small red damselfly -[2018-02-13T08:32:19.214] [INFO] cheese - batch complete in: 1.321 secs -[2018-02-13T08:32:19.232] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:32:19.430] [INFO] cheese - batch complete in: 1.443 secs -[2018-02-13T08:32:19.455] [INFO] cheese - inserting 1000 documents. first: Archdiocese of Saint Andrew's (Episcopal) and last: Rabdion grovesi -[2018-02-13T08:32:19.468] [INFO] cheese - inserting 1000 documents. first: Goločelo (Stanovo) and last: Nur az-Zaman -[2018-02-13T08:32:19.664] [INFO] cheese - inserting 1000 documents. first: Furmint and last: Mūlamadhyamakakārikā -[2018-02-13T08:32:19.677] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:32:19.670] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:32:19.938] [INFO] cheese - batch complete in: 2.006 secs -[2018-02-13T08:32:20.227] [INFO] cheese - inserting 1000 documents. first: File:Girl Guides South Africa.png and last: Della Pia Glacier -[2018-02-13T08:32:20.259] [INFO] cheese - inserting 1000 documents. first: ISO 8601:1988 and last: Armand Louis de Gontaut-Biron -[2018-02-13T08:32:20.293] [INFO] cheese - inserting 1000 documents. first: Craigmore, Zimbabwe and last: Busy wait -[2018-02-13T08:32:20.382] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T08:32:20.410] [INFO] cheese - batch complete in: 1.523 secs -[2018-02-13T08:32:20.437] [INFO] cheese - inserting 1000 documents. first: Tillandsia eizii and last: 2010 Copa Rommel Fernández -[2018-02-13T08:32:20.482] [INFO] cheese - inserting 1000 documents. first: Jessica Denay and last: Roman Catholic Diocese of St. Andrew's -[2018-02-13T08:32:20.549] [INFO] cheese - batch complete in: 1.614 secs -[2018-02-13T08:32:20.649] [INFO] cheese - batch complete in: 1.417 secs -[2018-02-13T08:32:20.664] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:32:20.758] [INFO] cheese - inserting 1000 documents. first: File:OtisSkinner.jpg and last: Konzo -[2018-02-13T08:32:20.785] [INFO] cheese - inserting 1000 documents. first: Fitzhugh Mounds and last: File:Zbirka - Doktor Sen.jpeg -[2018-02-13T08:32:20.884] [INFO] cheese - batch complete in: 1.453 secs -[2018-02-13T08:32:20.946] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:32:21.135] [INFO] cheese - inserting 1000 documents. first: California Grand Casino and last: Ty Cullen -[2018-02-13T08:32:21.233] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:32:21.257] [INFO] cheese - inserting 1000 documents. first: Template:Maryland-basketball-team-stub and last: Wish chip -[2018-02-13T08:32:21.298] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of St Andrew's and last: 935th Military Airlift Group -[2018-02-13T08:32:21.358] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:32:21.384] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:32:21.501] [INFO] cheese - inserting 1000 documents. first: Copa Rommel Fernandez 2010 and last: File:Rough 'n' Tumble.jpg -[2018-02-13T08:32:21.590] [INFO] cheese - inserting 1000 documents. first: Anglican Church of Australia and last: Compass variation -[2018-02-13T08:32:21.607] [INFO] cheese - inserting 1000 documents. first: Philosophies of time and last: Cover Girl (New Kids on the Block song) -[2018-02-13T08:32:21.607] [INFO] cheese - inserting 1000 documents. first: Category:Columbia University Graduate School of Journalism faculty and last: File:ThermiteReaction Crop.jpg -[2018-02-13T08:32:21.651] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:32:21.718] [INFO] cheese - inserting 1000 documents. first: Crazy Little Thing Called Love (D:TNG episode) and last: Wikipedia:Articles for deletion/Thomas & Friends: A Day at the Races -[2018-02-13T08:32:21.785] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:32:21.780] [INFO] cheese - batch complete in: 1.841 secs -[2018-02-13T08:32:21.809] [INFO] cheese - batch complete in: 1.26 secs -[2018-02-13T08:32:21.938] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:32:22.130] [INFO] cheese - inserting 1000 documents. first: Category:Law enforcement agencies of Northern Ireland and last: 2000 North American Championship -[2018-02-13T08:32:22.144] [INFO] cheese - inserting 1000 documents. first: Category:Writers from São Vicente, Cape Verde and last: Portal:Rock music/OnThisDay/February 10 -[2018-02-13T08:32:22.172] [INFO] cheese - inserting 1000 documents. first: Chatham-Kent—Leamington and last: File:FreedomOf'76.jpeg -[2018-02-13T08:32:22.173] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:32:22.218] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:32:22.305] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:32:22.506] [INFO] cheese - inserting 1000 documents. first: Problem fiction and last: Kabaka Ronald -[2018-02-13T08:32:22.696] [INFO] cheese - inserting 1000 documents. first: St Bernard's Catholic School, Buckinghamshire and last: Dave Reid (ice hockey) -[2018-02-13T08:32:22.711] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:32:22.752] [INFO] cheese - inserting 1000 documents. first: Edgar Dykstra and last: Adagur H. Vishwanath -[2018-02-13T08:32:22.903] [INFO] cheese - batch complete in: 1.117 secs -[2018-02-13T08:32:23.043] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:32:23.229] [INFO] cheese - inserting 1000 documents. first: Rafflesia consueloae and last: Casco Histórico de Vicálvaro -[2018-02-13T08:32:23.239] [INFO] cheese - inserting 1000 documents. first: Awareness days and last: Poznań Society of Friends of Arts and Sciences -[2018-02-13T08:32:23.298] [INFO] cheese - inserting 1000 documents. first: MN-111 mine and last: Kotapalle -[2018-02-13T08:32:23.389] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:32:23.427] [INFO] cheese - batch complete in: 1.209 secs -[2018-02-13T08:32:23.527] [INFO] cheese - batch complete in: 1.589 secs -[2018-02-13T08:32:23.600] [INFO] cheese - inserting 1000 documents. first: 21 Lutetia and last: Sing Lung -[2018-02-13T08:32:23.730] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/dubrovnik-online.net and last: Up All Night – Deric Ruttan Live -[2018-02-13T08:32:23.769] [INFO] cheese - batch complete in: 1.987 secs -[2018-02-13T08:32:23.847] [INFO] cheese - inserting 1000 documents. first: Lonely Nights (song) and last: Template:User Baltic states -[2018-02-13T08:32:23.864] [INFO] cheese - inserting 1000 documents. first: Lilu shi and last: List of mayors of Merton -[2018-02-13T08:32:23.865] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:32:24.007] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:32:24.043] [INFO] cheese - batch complete in: 1.738 secs -[2018-02-13T08:32:24.256] [INFO] cheese - inserting 1000 documents. first: Nature Coast, Florida and last: University admissions -[2018-02-13T08:32:24.271] [INFO] cheese - inserting 1000 documents. first: Category:Vicálvaro and last: Category:1507 establishments in India -[2018-02-13T08:32:24.332] [INFO] cheese - inserting 1000 documents. first: Dmitry I Starshiy and last: Birou -[2018-02-13T08:32:24.391] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:32:24.396] [INFO] cheese - batch complete in: 0.969 secs -[2018-02-13T08:32:24.533] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:32:24.599] [INFO] cheese - inserting 1000 documents. first: Kouthala and last: The Duchess of Kent -[2018-02-13T08:32:24.806] [INFO] cheese - inserting 1000 documents. first: Hundred of Taunton Deane and last: Cetancodonta -[2018-02-13T08:32:24.808] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:32:24.899] [INFO] cheese - inserting 1000 documents. first: Richard Williams (cricketer, born 1957) and last: 2013-14 Oregon State Beavers women's basketball team -[2018-02-13T08:32:24.916] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:32:24.923] [INFO] cheese - inserting 1000 documents. first: NYS Route 291 and last: Speechmakers -[2018-02-13T08:32:25.006] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:32:25.154] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:32:25.257] [INFO] cheese - inserting 1000 documents. first: Category:Rodent taxonomy and last: Ride of Your Life -[2018-02-13T08:32:25.355] [INFO] cheese - inserting 1000 documents. first: Chéng Lóng and last: Doc Daneeka -[2018-02-13T08:32:25.384] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:32:25.651] [INFO] cheese - batch complete in: 1.882 secs -[2018-02-13T08:32:25.714] [INFO] cheese - inserting 1000 documents. first: Skullstep and last: Danny Lamb -[2018-02-13T08:32:25.755] [INFO] cheese - inserting 1000 documents. first: MBM (filename) and last: Tom Ferrick -[2018-02-13T08:32:25.767] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Trollaxor (2nd nomination) and last: Bloubergstrand -[2018-02-13T08:32:25.810] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:32:25.948] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:32:26.029] [INFO] cheese - batch complete in: 1.638 secs -[2018-02-13T08:32:26.043] [INFO] cheese - inserting 1000 documents. first: Borah and last: S. lanceolata -[2018-02-13T08:32:26.169] [INFO] cheese - inserting 1000 documents. first: Wallace Smith (illustrator) and last: Penthina thapsiana -[2018-02-13T08:32:26.170] [INFO] cheese - batch complete in: 1.254 secs -[2018-02-13T08:32:26.206] [INFO] cheese - inserting 1000 documents. first: Speech-makers and last: Wikipedia:LSDL -[2018-02-13T08:32:26.282] [INFO] cheese - inserting 1000 documents. first: Night of the Auk and last: Category:National Register of Historic Places in Kings County, California -[2018-02-13T08:32:26.353] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:32:26.372] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T08:32:26.448] [INFO] cheese - batch complete in: 1.063 secs -[2018-02-13T08:32:26.834] [INFO] cheese - inserting 1000 documents. first: Leo Kasper and last: Betta pellets -[2018-02-13T08:32:26.837] [INFO] cheese - inserting 1000 documents. first: Transient acantholytic dermatosis and last: R684 road (Ireland) -[2018-02-13T08:32:26.877] [INFO] cheese - inserting 1000 documents. first: Lanceolata and last: Fanshawe (surname) -[2018-02-13T08:32:26.919] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:32:26.940] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:32:27.008] [INFO] cheese - inserting 1000 documents. first: Category:1965 in the Solomon Islands and last: Sophronica bituberculata -[2018-02-13T08:32:26.992] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:32:27.146] [INFO] cheese - inserting 1000 documents. first: Ayşe Hatun (wife of Bayezid II) and last: Category:People from Tengushevsky District -[2018-02-13T08:32:27.151] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:32:27.162] [INFO] cheese - inserting 1000 documents. first: LET SLEEPING DOGS LIE and last: Miroslav Bednařík -[2018-02-13T08:32:27.218] [INFO] cheese - inserting 1000 documents. first: Arrondissement of Nanterre and last: File:Nolan10.jpg -[2018-02-13T08:32:27.249] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:32:27.238] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:32:27.335] [INFO] cheese - inserting 1000 documents. first: Glyfada and last: Lancashire and Yorkshire Railway -[2018-02-13T08:32:27.396] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:32:27.607] [INFO] cheese - batch complete in: 1.956 secs -[2018-02-13T08:32:27.904] [INFO] cheese - inserting 1000 documents. first: Template:Biology-journal-stub and last: Ferenc Sánta -[2018-02-13T08:32:27.911] [INFO] cheese - inserting 1000 documents. first: Category:Transport in the City of Sunderland and last: Portal:Numismatics/Banknotes/5 -[2018-02-13T08:32:28.002] [INFO] cheese - inserting 1000 documents. first: Craig Shapiro and last: Template:Montana Grizzlies football navbox -[2018-02-13T08:32:28.019] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:32:28.032] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:32:28.039] [INFO] cheese - inserting 1000 documents. first: Administrative division of the Grand Duchy of Lithuania (1569–1795) and last: Silent Comedy -[2018-02-13T08:32:28.099] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Demo '93 and last: Move act -[2018-02-13T08:32:28.178] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:32:28.210] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:32:28.296] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:32:28.644] [INFO] cheese - inserting 1000 documents. first: Sir Nikolaus Pevsner and last: Primrose Gardner -[2018-02-13T08:32:28.786] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:32:28.822] [INFO] cheese - inserting 1000 documents. first: Category:Tourism in Jharkhand and last: International Federation for Information and Documentation -[2018-02-13T08:32:28.860] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Michael Jackson/Barnstar Workshop and last: Jascinda barrett -[2018-02-13T08:32:28.906] [INFO] cheese - inserting 1000 documents. first: Sophronica bituberosa and last: Sternoptyx diaphana -[2018-02-13T08:32:29.002] [INFO] cheese - inserting 1000 documents. first: National Board for Safeguarding Children in the Catholic Church and last: Eunice W. Johnson -[2018-02-13T08:32:29.014] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:32:29.034] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:32:29.047] [INFO] cheese - inserting 1000 documents. first: Cigno and last: July Revolution of 1968 -[2018-02-13T08:32:29.105] [INFO] cheese - batch complete in: 1.954 secs -[2018-02-13T08:32:29.109] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:32:29.111] [INFO] cheese - inserting 1000 documents. first: Oxymora and last: Scooter (band) -[2018-02-13T08:32:29.233] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:32:29.335] [INFO] cheese - batch complete in: 1.727 secs -[2018-02-13T08:32:29.535] [INFO] cheese - inserting 1000 documents. first: This Night (song) and last: Category:Heaven Below albums -[2018-02-13T08:32:29.668] [INFO] cheese - inserting 1000 documents. first: Pitelis and last: Category:Roman Catholic churches in West Virginia -[2018-02-13T08:32:29.669] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:32:29.781] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:32:29.794] [INFO] cheese - inserting 1000 documents. first: Second Italian-Abyssian War and last: Mikhail Iampolski -[2018-02-13T08:32:29.888] [INFO] cheese - inserting 1000 documents. first: July 1968 revolution and last: Projekat Rastko -[2018-02-13T08:32:29.886] [INFO] cheese - inserting 1000 documents. first: Marinestation Nordsee and last: Thomas Buchmayer -[2018-02-13T08:32:29.925] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:32:29.955] [INFO] cheese - inserting 1000 documents. first: Primo Victoria and last: Charles Barnard (castaway) -[2018-02-13T08:32:29.964] [INFO] cheese - inserting 1000 documents. first: USS Observation Island (AGM-23) and last: Mark Wardell -[2018-02-13T08:32:30.039] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:32:30.048] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:32:30.063] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:32:30.215] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:32:30.466] [INFO] cheese - inserting 1000 documents. first: Leximetrics and last: Category:Articles needing cleanup from December 2013 -[2018-02-13T08:32:30.645] [INFO] cheese - inserting 1000 documents. first: State Route 441 (New York) and last: David Neal -[2018-02-13T08:32:30.664] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:32:30.896] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:32:30.955] [INFO] cheese - inserting 1000 documents. first: Jianqiao Airport and last: File:Woodrow Wilson High School (Washington, D.C.) logo.jpg -[2018-02-13T08:32:31.023] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1560s BC and last: Terri Nickels -[2018-02-13T08:32:31.069] [INFO] cheese - inserting 1000 documents. first: Category:United States Virgin Islands-related lists and last: Wikipedia:Version 1.0 Editorial Team/India articles by quality/97 -[2018-02-13T08:32:31.131] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:32:31.166] [INFO] cheese - inserting 1000 documents. first: Yohlmo language and last: To Love-Ru episodes -[2018-02-13T08:32:31.201] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T08:32:31.284] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:32:31.372] [INFO] cheese - inserting 1000 documents. first: Billy(Billy and Mandy) and last: Unesco masterpieces -[2018-02-13T08:32:31.396] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:32:31.518] [INFO] cheese - inserting 1000 documents. first: John Forrest (Victorian politician) and last: David Auburn -[2018-02-13T08:32:31.527] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:32:31.738] [INFO] cheese - inserting 1000 documents. first: Category:Use New Zealand English from December 2013 and last: Bread and Roses (1993 film) -[2018-02-13T08:32:31.746] [INFO] cheese - batch complete in: 2.41 secs -[2018-02-13T08:32:31.843] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:32:31.933] [INFO] cheese - inserting 1000 documents. first: Music schools in Germany and last: Dunakisfalud -[2018-02-13T08:32:31.935] [INFO] cheese - inserting 1000 documents. first: Borinqueña and last: Janet Alexander -[2018-02-13T08:32:31.995] [INFO] cheese - inserting 1000 documents. first: I Wanna Go Backwards and last: Ślemień Commune -[2018-02-13T08:32:32.103] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:32:32.118] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Isla Riordan/Archive and last: File:Grateful Edyta Gorniak.jpeg -[2018-02-13T08:32:32.111] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:32:32.173] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:32:32.242] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:32:32.282] [INFO] cheese - inserting 1000 documents. first: The First Cathedral and last: Florence Reville Gibbs -[2018-02-13T08:32:32.383] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:32:32.533] [INFO] cheese - inserting 1000 documents. first: Gmina Slemien and last: Wasewo Commune -[2018-02-13T08:32:32.561] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:32:32.613] [INFO] cheese - inserting 1000 documents. first: Ostkaka and last: The Highlight Reel -[2018-02-13T08:32:32.671] [INFO] cheese - inserting 1000 documents. first: Category:Hermitages in Croatia and last: Mantispoidea -[2018-02-13T08:32:32.814] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:32:32.878] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:32:32.957] [INFO] cheese - inserting 1000 documents. first: Trait Leadership and last: Badminton at the 2003 All-Africa Games -[2018-02-13T08:32:33.034] [INFO] cheese - inserting 1000 documents. first: Michel Le Denmat and last: Category:Captains General of the Church -[2018-02-13T08:32:33.117] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:32:33.179] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:32:33.234] [INFO] cheese - inserting 1000 documents. first: Category:Victorian architecture in Rhode Island and last: Choiskiy Raion -[2018-02-13T08:32:33.385] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:32:33.627] [INFO] cheese - inserting 1000 documents. first: Honda Ishiro and last: Infield fly rule -[2018-02-13T08:32:33.635] [INFO] cheese - inserting 1000 documents. first: Category:Mumbai templates and last: Nikolaj Koch-Hansen -[2018-02-13T08:32:33.650] [INFO] cheese - inserting 1000 documents. first: David Kelley (disambiguation) and last: Fresno, CA MSA -[2018-02-13T08:32:33.748] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:32:33.932] [INFO] cheese - inserting 1000 documents. first: Category:Mantispoidea and last: Category:Census-designated places in Tompkins County, New York -[2018-02-13T08:32:33.945] [INFO] cheese - batch complete in: 2.199 secs -[2018-02-13T08:32:34.045] [INFO] cheese - batch complete in: 1.662 secs -[2018-02-13T08:32:34.107] [INFO] cheese - inserting 1000 documents. first: Liane Cartman and last: Rolls-Royce Hawk -[2018-02-13T08:32:34.128] [INFO] cheese - inserting 1000 documents. first: Brett Breitkreuz and last: Wikipedia:Today's featured article/October 28, 2011 -[2018-02-13T08:32:34.171] [INFO] cheese - inserting 1000 documents. first: 1961 New Mexico State Aggies football team and last: Stephensoniella (genus) -[2018-02-13T08:32:34.217] [INFO] cheese - batch complete in: 1.403 secs -[2018-02-13T08:32:34.313] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:32:34.432] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:32:34.495] [INFO] cheese - batch complete in: 1.617 secs -[2018-02-13T08:32:34.875] [INFO] cheese - inserting 1000 documents. first: Choiski Raion and last: Zorbees -[2018-02-13T08:32:34.988] [INFO] cheese - batch complete in: 1.603 secs -[2018-02-13T08:32:35.129] [INFO] cheese - inserting 1000 documents. first: Augustus Stephenson and last: Henley byelection -[2018-02-13T08:32:35.164] [INFO] cheese - inserting 1000 documents. first: Fresno-Madera, CA CSA and last: File:P-K Language Method fig6.png -[2018-02-13T08:32:35.196] [INFO] cheese - batch complete in: 1.448 secs -[2018-02-13T08:32:35.250] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Ulster County, New York and last: Alabama crimson -[2018-02-13T08:32:35.289] [INFO] cheese - batch complete in: 1.244 secs -[2018-02-13T08:32:35.373] [INFO] cheese - inserting 1000 documents. first: Outer Mongolia (modern) and last: Koguryo people -[2018-02-13T08:32:35.435] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:32:35.440] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:32:35.482] [INFO] cheese - inserting 1000 documents. first: Zhestky and last: Alliance des Mouvements pour l'Emergence du Niger -[2018-02-13T08:32:35.493] [INFO] cheese - inserting 1000 documents. first: Duffing differential equation and last: Philosophy in the Tragic Age of the Greeks -[2018-02-13T08:32:35.618] [INFO] cheese - batch complete in: 1.305 secs -[2018-02-13T08:32:35.667] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:32:35.788] [INFO] cheese - inserting 1000 documents. first: File:Pijibeofestival.jpg and last: Einar Bragi Sigurðsson -[2018-02-13T08:32:35.846] [INFO] cheese - inserting 1000 documents. first: Labour Zionism and last: The Crusades -[2018-02-13T08:32:35.925] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:32:36.038] [INFO] cheese - inserting 1000 documents. first: Xwáýxway and last: Schiller–Duval body -[2018-02-13T08:32:36.043] [INFO] cheese - batch complete in: 2.098 secs -[2018-02-13T08:32:36.151] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:32:36.184] [INFO] cheese - inserting 1000 documents. first: Category:Norwegian pop musicians and last: Pedro Nuno Colon de Portugal -[2018-02-13T08:32:36.227] [INFO] cheese - inserting 1000 documents. first: Category:Infocomm in Singapore and last: Paul Kitchen (musician) -[2018-02-13T08:32:36.348] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:32:36.412] [INFO] cheese - inserting 1000 documents. first: Zipit Wireless Messenger (Z2) and last: Celius Dougherty -[2018-02-13T08:32:36.429] [INFO] cheese - batch complete in: 0.994 secs -[2018-02-13T08:32:36.518] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:32:36.593] [INFO] cheese - inserting 1000 documents. first: Baxterley, Warwickshire and last: Clark Mountain Range -[2018-02-13T08:32:36.683] [INFO] cheese - inserting 1000 documents. first: Category:Fictional Special Air Service personnel and last: Friend and Lover -[2018-02-13T08:32:36.743] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:32:36.787] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:32:36.823] [INFO] cheese - inserting 1000 documents. first: Ornithoctonus gadgili and last: World War II Memorial (disambiguation) -[2018-02-13T08:32:37.032] [INFO] cheese - batch complete in: 1.414 secs -[2018-02-13T08:32:37.124] [INFO] cheese - inserting 1000 documents. first: Madison central high school and last: Peak Dale, Derbyshire -[2018-02-13T08:32:37.169] [INFO] cheese - inserting 1000 documents. first: Big fan and last: Paulist Press -[2018-02-13T08:32:37.314] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:32:37.413] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:32:37.422] [INFO] cheese - inserting 1000 documents. first: File:The Bird is Free Album Cover.jpg and last: Sipahsalar -[2018-02-13T08:32:37.425] [INFO] cheese - inserting 1000 documents. first: Cluster chord and last: Dennis Waterman -[2018-02-13T08:32:37.544] [INFO] cheese - batch complete in: 1.115 secs -[2018-02-13T08:32:37.546] [INFO] cheese - inserting 1000 documents. first: တင်အောင်မြင့်ဦး and last: Jimmy Dunn (Scottish footballer born 1923) -[2018-02-13T08:32:37.601] [INFO] cheese - batch complete in: 1.558 secs -[2018-02-13T08:32:37.776] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T08:32:37.812] [INFO] cheese - inserting 1000 documents. first: Tender Comrade and last: File:Favouritehives.jpg -[2018-02-13T08:32:37.836] [INFO] cheese - inserting 1000 documents. first: Army Aviation Corps (Germany) and last: Wikipedia:Articles for deletion/Pipestone, Alberta -[2018-02-13T08:32:37.964] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:32:37.986] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:32:38.030] [INFO] cheese - inserting 1000 documents. first: Chavdartsi (disambiguation) and last: Yaletown–Roundhouse Station -[2018-02-13T08:32:38.119] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:32:38.165] [INFO] cheese - inserting 1000 documents. first: TN Permit and last: Portal:West Bengal/Did you know/37 -[2018-02-13T08:32:38.291] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mysterious Universe and last: Roman Catholic Diocese of Formosa, Brazil -[2018-02-13T08:32:38.354] [INFO] cheese - batch complete in: 1.04 secs -[2018-02-13T08:32:38.434] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:32:38.466] [INFO] cheese - inserting 1000 documents. first: LUTA Sportswear and last: Bishop McGuinness Catholic High School -[2018-02-13T08:32:38.670] [INFO] cheese - batch complete in: 1.126 secs -[2018-02-13T08:32:38.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/African Icons and last: Island castle -[2018-02-13T08:32:39.032] [INFO] cheese - inserting 1000 documents. first: Manius Aquillius (consul 129 BC) and last: Moon Landing Hoax -[2018-02-13T08:32:39.051] [INFO] cheese - inserting 1000 documents. first: 1920 Tulsa Orange and Black football team and last: Category:Controversies in Brazil -[2018-02-13T08:32:39.164] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pocahontas, Alberta and last: File:Sakartvelos Skauturi Modzraobis Organizatsia 1992.svg -[2018-02-13T08:32:39.233] [INFO] cheese - batch complete in: 1.457 secs -[2018-02-13T08:32:39.326] [INFO] cheese - batch complete in: 1.207 secs -[2018-02-13T08:32:39.434] [INFO] cheese - batch complete in: 1.47 secs -[2018-02-13T08:32:39.446] [INFO] cheese - inserting 1000 documents. first: Annoyed grunt and last: St Louis Browns -[2018-02-13T08:32:39.578] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T08:32:39.927] [INFO] cheese - inserting 1000 documents. first: Moue and last: We Did It -[2018-02-13T08:32:40.096] [INFO] cheese - inserting 1000 documents. first: Ruri no shima and last: File:Lords of Madness book cover.jpg -[2018-02-13T08:32:40.118] [INFO] cheese - batch complete in: 2.516 secs -[2018-02-13T08:32:40.238] [INFO] cheese - inserting 1000 documents. first: Bishop McGuinness High School and last: Nau Garan -[2018-02-13T08:32:40.232] [INFO] cheese - batch complete in: 1.79 secs -[2018-02-13T08:32:40.468] [INFO] cheese - batch complete in: 2.113 secs -[2018-02-13T08:32:40.713] [INFO] cheese - batch complete in: 2.043 secs -[2018-02-13T08:32:41.188] [INFO] cheese - inserting 1000 documents. first: Disparagement of goods and last: Burlos -[2018-02-13T08:32:41.271] [INFO] cheese - inserting 1000 documents. first: George Pruteanu and last: CYD -[2018-02-13T08:32:41.283] [INFO] cheese - inserting 1000 documents. first: Tab Two (Tab Two Album) and last: Kanbi -[2018-02-13T08:32:41.348] [INFO] cheese - inserting 1000 documents. first: Master of the Lübeck Bible and last: Western patch-nosed snake -[2018-02-13T08:32:41.447] [INFO] cheese - inserting 1000 documents. first: James Coombs and last: Patrick Liljestrand -[2018-02-13T08:32:41.451] [INFO] cheese - batch complete in: 2.125 secs -[2018-02-13T08:32:41.610] [INFO] cheese - inserting 1000 documents. first: Buddhist Novitiate and last: The New Party -[2018-02-13T08:32:41.622] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:32:41.628] [INFO] cheese - batch complete in: 2.194 secs -[2018-02-13T08:32:41.663] [INFO] cheese - batch complete in: 2.43 secs -[2018-02-13T08:32:41.812] [INFO] cheese - batch complete in: 2.232 secs -[2018-02-13T08:32:41.914] [INFO] cheese - inserting 1000 documents. first: Navgaran and last: Grandi magazzini -[2018-02-13T08:32:41.978] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:32:42.261] [INFO] cheese - batch complete in: 1.548 secs -[2018-02-13T08:32:42.625] [INFO] cheese - inserting 1000 documents. first: American Society for Tropical Medicine and Hygiene and last: Draft:Betsy Wolfston -[2018-02-13T08:32:42.870] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:32:42.955] [INFO] cheese - inserting 1000 documents. first: St Louis County and last: SatireWire -[2018-02-13T08:32:42.971] [INFO] cheese - inserting 1000 documents. first: Jérémy Hélan and last: Wikipedia:SW/MOS -[2018-02-13T08:32:43.070] [INFO] cheese - inserting 1000 documents. first: Acheilognathus tabira erythropterus and last: Burma Worker's Party -[2018-02-13T08:32:43.146] [INFO] cheese - inserting 1000 documents. first: Vegard Samdahl and last: Agua Fria (disambiguation) -[2018-02-13T08:32:43.151] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:32:43.173] [INFO] cheese - inserting 1000 documents. first: Template:Cathead age of sail ships of the and last: Hermann Neuling -[2018-02-13T08:32:43.268] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:32:43.354] [INFO] cheese - batch complete in: 3.235 secs -[2018-02-13T08:32:43.442] [INFO] cheese - inserting 1000 documents. first: SEMESRA and last: 3"/50 caliber gun -[2018-02-13T08:32:43.554] [INFO] cheese - inserting 1000 documents. first: Japanese dictionaries and last: 1938 German Grand Prix -[2018-02-13T08:32:43.615] [INFO] cheese - batch complete in: 1.987 secs -[2018-02-13T08:32:43.714] [INFO] cheese - batch complete in: 2.091 secs -[2018-02-13T08:32:43.815] [INFO] cheese - batch complete in: 1.553 secs -[2018-02-13T08:32:43.967] [INFO] cheese - batch complete in: 1.988 secs -[2018-02-13T08:32:44.478] [INFO] cheese - inserting 1000 documents. first: Yourba and last: Category:World's fairs in Texas -[2018-02-13T08:32:44.653] [INFO] cheese - batch complete in: 1.783 secs -[2018-02-13T08:32:44.668] [INFO] cheese - inserting 1000 documents. first: Wikipedia:STARW/MOS and last: Category:Wikipedia sockpuppets of Marburg72 -[2018-02-13T08:32:44.699] [INFO] cheese - inserting 1000 documents. first: Template:Finance Ministers of Germany and last: Alexis Alexiou -[2018-02-13T08:32:44.809] [INFO] cheese - inserting 1000 documents. first: Pleasant Valley Grange Hall and last: Roads to You -[2018-02-13T08:32:44.879] [INFO] cheese - inserting 1000 documents. first: Department of Federal Revenue of Brazil and last: Computer access control -[2018-02-13T08:32:44.914] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:32:44.923] [INFO] cheese - batch complete in: 1.655 secs -[2018-02-13T08:32:44.982] [INFO] cheese - batch complete in: 1.831 secs -[2018-02-13T08:32:45.187] [INFO] cheese - batch complete in: 1.372 secs -[2018-02-13T08:32:45.300] [INFO] cheese - inserting 1000 documents. first: Photosensitivity in animals and last: Bhor -[2018-02-13T08:32:45.485] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Help desk/Archives/2007 February 26 and last: Young and restless (disambiguation) -[2018-02-13T08:32:45.583] [INFO] cheese - inserting 1000 documents. first: File:Teasin you cover.jpeg and last: Superior ligaments of the malleus bone -[2018-02-13T08:32:45.592] [INFO] cheese - batch complete in: 1.977 secs -[2018-02-13T08:32:45.809] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:32:45.817] [INFO] cheese - batch complete in: 1.85 secs -[2018-02-13T08:32:45.867] [INFO] cheese - inserting 1000 documents. first: Neoregelia 'Grey Nurse' and last: FC Střížkov Praha -[2018-02-13T08:32:45.920] [INFO] cheese - inserting 1000 documents. first: Yamaguti prefecture and last: Sharpstown scandal -[2018-02-13T08:32:46.039] [INFO] cheese - inserting 1000 documents. first: Broadway Bro Down and last: Category:Tourist attractions in Campbell County, Tennessee -[2018-02-13T08:32:46.148] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:32:46.166] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:32:46.296] [INFO] cheese - batch complete in: 2.942 secs -[2018-02-13T08:32:46.447] [INFO] cheese - inserting 1000 documents. first: Repeating circle and last: Neocaesarea (episcopal see) -[2018-02-13T08:32:46.551] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To the Unknown Land and last: Chinese General Chamber of Commerce -[2018-02-13T08:32:46.679] [INFO] cheese - batch complete in: 1.765 secs -[2018-02-13T08:32:46.824] [INFO] cheese - batch complete in: 1.637 secs -[2018-02-13T08:32:46.869] [INFO] cheese - inserting 1000 documents. first: Superior ligaments of malleus bone and last: Template:Japan PR list end -[2018-02-13T08:32:46.890] [INFO] cheese - inserting 1000 documents. first: Austin Ant and last: Turkic alphabets -[2018-02-13T08:32:47.158] [INFO] cheese - batch complete in: 1.348 secs -[2018-02-13T08:32:47.167] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:32:47.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/blackboard.bangor.ac.uk and last: Wikipedia:WikiProject Spam/LinkReports/metaldelirium.net -[2018-02-13T08:32:47.376] [INFO] cheese - inserting 1000 documents. first: Stapleford, Zimbabwe and last: Automatas -[2018-02-13T08:32:47.405] [INFO] cheese - inserting 1000 documents. first: Canyon Overlook Trail and last: Template:Muang Thong United F.C. squad -[2018-02-13T08:32:47.411] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:32:47.627] [INFO] cheese - inserting 1000 documents. first: List of English words of Old Irish origin and last: Imloth Melui -[2018-02-13T08:32:47.667] [INFO] cheese - batch complete in: 1.501 secs -[2018-02-13T08:32:47.744] [INFO] cheese - batch complete in: 2.151 secs -[2018-02-13T08:32:48.003] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T08:32:48.104] [INFO] cheese - inserting 1000 documents. first: Lau Chu-pak and last: Idyl Ibrahim -[2018-02-13T08:32:48.141] [INFO] cheese - inserting 1000 documents. first: Tati Talvar and last: Draft:Whittle likelihood -[2018-02-13T08:32:48.223] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T08:32:48.300] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:32:48.447] [INFO] cheese - inserting 1000 documents. first: Kluskus Indian Band and last: Sir George Bowyer, 7th Baronet -[2018-02-13T08:32:48.502] [INFO] cheese - inserting 1000 documents. first: At the Dream's Edge and last: Norman Bowell -[2018-02-13T08:32:48.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/metaldelirium.net and last: Sorkhrud-e Gharbi -[2018-02-13T08:32:48.629] [INFO] cheese - batch complete in: 1.462 secs -[2018-02-13T08:32:48.647] [INFO] cheese - inserting 1000 documents. first: Sharpstown affair and last: A Shropshire Lad -[2018-02-13T08:32:48.705] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:32:48.858] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:32:48.885] [INFO] cheese - inserting 1000 documents. first: Nédogo-Peulh and last: Wikipedia:Copyright problems/2008 June 12/Images -[2018-02-13T08:32:48.903] [INFO] cheese - batch complete in: 2.606 secs -[2018-02-13T08:32:48.944] [INFO] cheese - inserting 1000 documents. first: Delayed orgasm and last: Aethelric of Bernicia -[2018-02-13T08:32:49.020] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:32:49.235] [INFO] cheese - batch complete in: 1.491 secs -[2018-02-13T08:32:49.337] [INFO] cheese - inserting 1000 documents. first: File:Paleface Jack head and shoulders shillouuette.tif and last: Category:Freestyle skiing in Italy -[2018-02-13T08:32:49.401] [INFO] cheese - inserting 1000 documents. first: File:Industrie und Melodie album cover.jpg and last: Tohoshinki Live Tour 2013: Time -[2018-02-13T08:32:49.655] [INFO] cheese - batch complete in: 1.354 secs -[2018-02-13T08:32:49.668] [INFO] cheese - batch complete in: 1.445 secs -[2018-02-13T08:32:49.811] [INFO] cheese - inserting 1000 documents. first: Prt Sc and last: Category:Zoos in North Carolina -[2018-02-13T08:32:49.976] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T08:32:50.265] [INFO] cheese - inserting 1000 documents. first: Audio video disco and last: Durchmarsch -[2018-02-13T08:32:50.324] [INFO] cheese - inserting 1000 documents. first: Pozhiyoor and last: An Anglo-Saxon Dictionary -[2018-02-13T08:32:50.333] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Copyright problems/2008 June 12 and last: File:L'Innomable - 1st Edition Cover.jpg -[2018-02-13T08:32:50.515] [INFO] cheese - inserting 1000 documents. first: STAG3 (gene) and last: Portal:Australian roads/Selected picture/6 -[2018-02-13T08:32:50.526] [INFO] cheese - batch complete in: 1.506 secs -[2018-02-13T08:32:50.585] [INFO] cheese - inserting 1000 documents. first: Howling III: The Marsupials and last: Category:Endemism -[2018-02-13T08:32:50.668] [INFO] cheese - batch complete in: 1.962 secs -[2018-02-13T08:32:50.787] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:32:50.814] [INFO] cheese - batch complete in: 1.956 secs -[2018-02-13T08:32:50.913] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:32:51.007] [INFO] cheese - inserting 1000 documents. first: Category:Freestyle skiing in Norway and last: Meitei Guun -[2018-02-13T08:32:51.054] [INFO] cheese - inserting 1000 documents. first: List of play techniques (bridge) and last: Oxydative phosphorylation -[2018-02-13T08:32:51.103] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:32:51.152] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:32:51.333] [INFO] cheese - inserting 1000 documents. first: Trowel and last: VGA connector -[2018-02-13T08:32:51.344] [INFO] cheese - inserting 1000 documents. first: Dorota Świeniewicz and last: Osuiu -[2018-02-13T08:32:51.496] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:32:51.682] [INFO] cheese - batch complete in: 2.779 secs -[2018-02-13T08:32:51.716] [INFO] cheese - inserting 1000 documents. first: Category:Local authorities in Gloucestershire and last: Rabolina weiss -[2018-02-13T08:32:51.720] [INFO] cheese - inserting 1000 documents. first: File:The Fitzpatricks.jpg and last: Lu Xiaoman -[2018-02-13T08:32:51.913] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:32:51.919] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:32:52.032] [INFO] cheese - inserting 1000 documents. first: Draft:Ricardo Karam and last: Category:Compositions by Zakaria Paliashvili -[2018-02-13T08:32:52.117] [INFO] cheese - inserting 1000 documents. first: Perion and last: Black British -[2018-02-13T08:32:52.197] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:32:52.206] [INFO] cheese - inserting 1000 documents. first: Google image search and last: The Homes of Football -[2018-02-13T08:32:52.245] [INFO] cheese - inserting 1000 documents. first: Boario Terme and last: Esperanza, Ucayali -[2018-02-13T08:32:52.308] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:32:52.465] [INFO] cheese - batch complete in: 1.651 secs -[2018-02-13T08:32:52.493] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:32:52.882] [INFO] cheese - inserting 1000 documents. first: Welsh Oak (pub) and last: Maveyan -[2018-02-13T08:32:52.958] [INFO] cheese - inserting 1000 documents. first: Category:Hindu iconography and last: Odeborn -[2018-02-13T08:32:52.986] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Image:Trees and sunshine.JPG and last: Dangle (espionage) -[2018-02-13T08:32:53.027] [INFO] cheese - batch complete in: 1.114 secs -[2018-02-13T08:32:53.096] [INFO] cheese - inserting 1000 documents. first: St. Richard of Chichester Church, Slindon and last: Category:Sledding competitions -[2018-02-13T08:32:53.192] [INFO] cheese - batch complete in: 1.273 secs -[2018-02-13T08:32:53.238] [INFO] cheese - batch complete in: 1.742 secs -[2018-02-13T08:32:53.300] [INFO] cheese - batch complete in: 1.102 secs -[2018-02-13T08:32:53.576] [INFO] cheese - inserting 1000 documents. first: Heckler & Koch P8 and last: State Highway Route 84 (New Jersey) -[2018-02-13T08:32:53.599] [INFO] cheese - inserting 1000 documents. first: Wayen Rapadama and last: Darreh-ye Bum -[2018-02-13T08:32:53.690] [INFO] cheese - inserting 1000 documents. first: Stojanski Vrh and last: Robert Alexander Shafto Adair -[2018-02-13T08:32:53.730] [INFO] cheese - inserting 1000 documents. first: Ernst Wilhelm Tempel and last: Tickhill -[2018-02-13T08:32:53.812] [INFO] cheese - batch complete in: 1.504 secs -[2018-02-13T08:32:53.835] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T08:32:53.894] [INFO] cheese - inserting 1000 documents. first: Mir Assar and last: 2014 NWSL College Draft -[2018-02-13T08:32:53.894] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:32:54.083] [INFO] cheese - batch complete in: 2.401 secs -[2018-02-13T08:32:54.231] [INFO] cheese - inserting 1000 documents. first: Puerto Rico Highway 34 and last: Fear of a Black Hat (1993) -[2018-02-13T08:32:54.284] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:32:54.384] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Plagiosaurus and last: Charlie Brown's Wind Up -[2018-02-13T08:32:54.393] [INFO] cheese - inserting 1000 documents. first: Template:US-screen-actor-1910s-stub and last: 2007 New Zealand rugby league season -[2018-02-13T08:32:54.541] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:32:54.565] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:32:54.584] [INFO] cheese - batch complete in: 1.346 secs -[2018-02-13T08:32:54.770] [INFO] cheese - inserting 1000 documents. first: Sir Robert Alexander Shafto Adair, 2nd Baronet and last: Pitcairnia hitchcockiana -[2018-02-13T08:32:54.810] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:32:54.938] [INFO] cheese - inserting 1000 documents. first: Thomas Deruda and last: Outdoor clothes -[2018-02-13T08:32:54.992] [INFO] cheese - inserting 1000 documents. first: Grass eating men and last: Edward Brennan (disambiguation) -[2018-02-13T08:32:55.066] [INFO] cheese - inserting 1000 documents. first: New Jersey State Highway Route 84 and last: Category:Nebraska Cornhuskers football -[2018-02-13T08:32:55.071] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:32:55.139] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:32:55.201] [INFO] cheese - batch complete in: 1.389 secs -[2018-02-13T08:32:55.568] [INFO] cheese - inserting 1000 documents. first: Stripling and last: Vipera russelli limitis -[2018-02-13T08:32:55.666] [INFO] cheese - inserting 1000 documents. first: Mirza (lemur) and last: Illegal Music 3: The Finale -[2018-02-13T08:32:55.714] [INFO] cheese - inserting 1000 documents. first: Mulinan and last: Valezhir -[2018-02-13T08:32:55.766] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:32:55.868] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:32:55.900] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:32:56.010] [INFO] cheese - inserting 1000 documents. first: 2009–10 AFC Ajax season and last: Template:2008 Summer Olympics women's volleyball game B14 -[2018-02-13T08:32:56.237] [INFO] cheese - inserting 1000 documents. first: Dantrolene Sodium and last: António Araújo -[2018-02-13T08:32:56.242] [INFO] cheese - batch complete in: 1.676 secs -[2018-02-13T08:32:56.369] [INFO] cheese - inserting 1000 documents. first: Category:WikiProject Swimming Members and last: Isabel Le Brun de Pinochet -[2018-02-13T08:32:56.433] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:32:56.617] [INFO] cheese - batch complete in: 1.546 secs -[2018-02-13T08:32:56.638] [INFO] cheese - inserting 1000 documents. first: Nogeoldae and last: Boleslaus V, Duke of Poland -[2018-02-13T08:32:56.701] [INFO] cheese - inserting 1000 documents. first: Category:Heartland Collegiate Athletic Conference and last: Long Serpent -[2018-02-13T08:32:56.869] [INFO] cheese - batch complete in: 1.668 secs -[2018-02-13T08:32:56.900] [INFO] cheese - batch complete in: 2.817 secs -[2018-02-13T08:32:56.935] [INFO] cheese - inserting 1000 documents. first: Just Another Girl (disambiguation) and last: Obed Arizona -[2018-02-13T08:32:57.031] [INFO] cheese - inserting 1000 documents. first: Xiao xian rou and last: Stenidea insignis -[2018-02-13T08:32:57.124] [INFO] cheese - inserting 1000 documents. first: Kim Gyusik and last: Route nationale 22 -[2018-02-13T08:32:57.177] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:32:57.201] [INFO] cheese - batch complete in: 1.301 secs -[2018-02-13T08:32:57.212] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Grey2K USA and last: Third coalition -[2018-02-13T08:32:57.383] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:32:57.383] [INFO] cheese - batch complete in: 1.514 secs -[2018-02-13T08:32:57.407] [INFO] cheese - inserting 1000 documents. first: Khalifa Bin Jassim and last: Euplocia moderata -[2018-02-13T08:32:57.668] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:32:57.672] [INFO] cheese - inserting 1000 documents. first: The Phantom Zone and last: File:Cornteapackage.jpg -[2018-02-13T08:32:57.883] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T08:32:57.984] [INFO] cheese - inserting 1000 documents. first: Structure, Sign, and Play in the Discourse of the Human Sciences and last: Deal (NJ) -[2018-02-13T08:32:58.127] [INFO] cheese - batch complete in: 1.258 secs -[2018-02-13T08:32:58.295] [INFO] cheese - inserting 1000 documents. first: Tazehabad-e Saravaryeh and last: Category:Indian Internet celebrities -[2018-02-13T08:32:58.500] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:32:58.546] [INFO] cheese - inserting 1000 documents. first: University Of Nebraska and last: Octopuses -[2018-02-13T08:32:58.579] [INFO] cheese - inserting 1000 documents. first: Schrote and last: Empress Wang (Huizong) -[2018-02-13T08:32:58.737] [INFO] cheese - inserting 1000 documents. first: Edward Evans (murder victim) and last: South Ferry (ferry) -[2018-02-13T08:32:58.738] [INFO] cheese - inserting 1000 documents. first: File:Now 93 UK Cover.jpg and last: Lehigh Line (June 11, 1855–September 11, 1855) -[2018-02-13T08:32:58.765] [INFO] cheese - batch complete in: 1.865 secs -[2018-02-13T08:32:58.772] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:32:58.795] [INFO] cheese - inserting 1000 documents. first: Euplocia inconspicua and last: Ingersleben -[2018-02-13T08:32:58.931] [INFO] cheese - inserting 1000 documents. first: Eileen Whelan and last: Category:Novels by Aphra Behn -[2018-02-13T08:32:58.948] [INFO] cheese - batch complete in: 1.565 secs -[2018-02-13T08:32:58.994] [INFO] cheese - batch complete in: 1.793 secs -[2018-02-13T08:32:59.096] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:32:59.234] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:32:59.527] [INFO] cheese - inserting 1000 documents. first: Category:German Internet celebrities and last: Kabud Khani-ye Pa'in -[2018-02-13T08:32:59.689] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:32:59.887] [INFO] cheese - inserting 1000 documents. first: Luis Alcazar and last: Koh Seh -[2018-02-13T08:32:59.786] [INFO] cheese - inserting 1000 documents. first: West Long Branch (NJ) and last: Potti Sri Ramulu -[2018-02-13T08:33:00.113] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:33:00.138] [INFO] cheese - batch complete in: 2.01 secs -[2018-02-13T08:33:00.171] [INFO] cheese - inserting 1000 documents. first: InsideOUT Writers and last: Trikala, Corinthia -[2018-02-13T08:33:00.291] [INFO] cheese - inserting 1000 documents. first: Soil Natural Capital and last: St Antholin Watling Street -[2018-02-13T08:33:00.294] [INFO] cheese - inserting 1000 documents. first: Catholic Educational Association and last: David Kennedy (Australian politician) -[2018-02-13T08:33:00.299] [INFO] cheese - batch complete in: 1.305 secs -[2018-02-13T08:33:00.375] [INFO] cheese - inserting 1000 documents. first: Category:1994 in Chad and last: Category:Julian Marley albums -[2018-02-13T08:33:00.442] [INFO] cheese - inserting 1000 documents. first: Tyubu and last: Taygete (moon) -[2018-02-13T08:33:00.467] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T08:33:00.487] [INFO] cheese - batch complete in: 1.714 secs -[2018-02-13T08:33:00.617] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:33:00.698] [INFO] cheese - batch complete in: 1.933 secs -[2018-02-13T08:33:00.828] [INFO] cheese - inserting 1000 documents. first: Kabud Khani-ye Pain and last: Rude Removal System -[2018-02-13T08:33:00.988] [INFO] cheese - batch complete in: 1.299 secs -[2018-02-13T08:33:01.103] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Captchadefiner and last: The Parkers: Kim's 21st Birthday -[2018-02-13T08:33:01.181] [INFO] cheese - inserting 1000 documents. first: WTWS-FM and last: Punch marked coins of india -[2018-02-13T08:33:01.302] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:33:01.337] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:33:01.444] [INFO] cheese - inserting 1000 documents. first: Clipping (audio) and last: Rally Point (novel) -[2018-02-13T08:33:01.546] [INFO] cheese - inserting 1000 documents. first: Allhallows the Great, Thames Street and last: CLs method (particle physics) -[2018-02-13T08:33:01.558] [INFO] cheese - batch complete in: 1.42 secs -[2018-02-13T08:33:01.678] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Dr John Pridgeon and last: Hypsa ghara -[2018-02-13T08:33:01.722] [INFO] cheese - batch complete in: 1.233 secs -[2018-02-13T08:33:01.813] [INFO] cheese - inserting 1000 documents. first: File:It Aint 4 Play.jpg and last: Alfred Gaertner -[2018-02-13T08:33:01.887] [INFO] cheese - batch complete in: 1.27 secs -[2018-02-13T08:33:02.267] [INFO] cheese - batch complete in: 1.8 secs -[2018-02-13T08:33:02.330] [INFO] cheese - inserting 1000 documents. first: Category:Hungarian actors by century and last: Scaruffi -[2018-02-13T08:33:02.409] [INFO] cheese - inserting 1000 documents. first: Chronicle of Anna Magdalena Bach and last: Steve McQwark -[2018-02-13T08:33:02.430] [INFO] cheese - inserting 1000 documents. first: Robinson soll nicht sterben and last: Suzanne Jackson -[2018-02-13T08:33:02.537] [INFO] cheese - batch complete in: 1.548 secs -[2018-02-13T08:33:02.605] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:33:02.665] [INFO] cheese - inserting 1000 documents. first: Lazy eye and last: Malcolm Bradbury -[2018-02-13T08:33:02.705] [INFO] cheese - batch complete in: 1.367 secs -[2018-02-13T08:33:02.955] [INFO] cheese - batch complete in: 2.257 secs -[2018-02-13T08:33:03.016] [INFO] cheese - inserting 1000 documents. first: The Yellow Princess (John Fahey album) and last: Cassau -[2018-02-13T08:33:03.089] [INFO] cheese - inserting 1000 documents. first: Ugly (Single) and last: File:WHB Logo.png -[2018-02-13T08:33:03.123] [INFO] cheese - inserting 1000 documents. first: Phalaena heliconia and last: A. elliptica -[2018-02-13T08:33:03.200] [INFO] cheese - batch complete in: 1.478 secs -[2018-02-13T08:33:03.310] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:33:03.357] [INFO] cheese - batch complete in: 1.799 secs -[2018-02-13T08:33:03.545] [INFO] cheese - inserting 1000 documents. first: The Muffin King and last: Donald W. Riegle, Jr -[2018-02-13T08:33:03.657] [INFO] cheese - inserting 1000 documents. first: Neelam Shirke and last: Nashua nh -[2018-02-13T08:33:03.617] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:33:03.735] [INFO] cheese - inserting 1000 documents. first: Template:Bollywood hungama and last: Category:People from Saale-Holzland-Kreis -[2018-02-13T08:33:03.818] [INFO] cheese - batch complete in: 1.549 secs -[2018-02-13T08:33:03.931] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:33:04.152] [INFO] cheese - inserting 1000 documents. first: Jim Nesich and last: Merle Jeeter -[2018-02-13T08:33:04.355] [INFO] cheese - inserting 1000 documents. first: Category:Dunhill hurlers and last: Alvin F. Sortwell -[2018-02-13T08:33:04.376] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Scottrade and last: WMAZ-TV -[2018-02-13T08:33:04.415] [INFO] cheese - batch complete in: 1.215 secs -[2018-02-13T08:33:04.445] [INFO] cheese - inserting 1000 documents. first: Template:Element color/Metals and last: Salome Kammer -[2018-02-13T08:33:04.577] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:33:04.612] [INFO] cheese - inserting 1000 documents. first: Girolamo dal Pane and last: Joe McGrogan -[2018-02-13T08:33:04.662] [INFO] cheese - batch complete in: 1.304 secs -[2018-02-13T08:33:04.869] [INFO] cheese - batch complete in: 2.164 secs -[2018-02-13T08:33:04.919] [INFO] cheese - inserting 1000 documents. first: Husaibah Al Sharqiah and last: Sleeping With The Past -[2018-02-13T08:33:04.924] [INFO] cheese - batch complete in: 1.307 secs -[2018-02-13T08:33:05.192] [INFO] cheese - inserting 1000 documents. first: Polandish Passage and last: Andrew Crommelin -[2018-02-13T08:33:05.240] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:33:05.424] [INFO] cheese - inserting 1000 documents. first: Academy Color Encoding System and last: "Central New York Regional Market" -[2018-02-13T08:33:05.505] [INFO] cheese - batch complete in: 2.55 secs -[2018-02-13T08:33:05.705] [INFO] cheese - batch complete in: 1.774 secs -[2018-02-13T08:33:05.737] [INFO] cheese - inserting 1000 documents. first: Brandon Miller (driver) and last: Campus of the University of Tokyo -[2018-02-13T08:33:05.888] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/UNC and last: Republic Airways Holdings, Inc. -[2018-02-13T08:33:05.959] [INFO] cheese - batch complete in: 1.543 secs -[2018-02-13T08:33:06.067] [INFO] cheese - batch complete in: 1.143 secs -[2018-02-13T08:33:06.194] [INFO] cheese - inserting 1000 documents. first: Vladimir Utkin and last: Solar eclipse 15th january -[2018-02-13T08:33:06.375] [INFO] cheese - batch complete in: 1.797 secs -[2018-02-13T08:33:06.421] [INFO] cheese - inserting 1000 documents. first: Template:Tlrowtop and last: Template:Inv3 -[2018-02-13T08:33:06.472] [INFO] cheese - inserting 1000 documents. first: Chain of lakes middle school and last: Theodore Vahlen -[2018-02-13T08:33:06.625] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:33:06.664] [INFO] cheese - inserting 1000 documents. first: Sompal Kami and last: Wikipedia:Articles for deletion/Hold Tight (Justin Bieber song) -[2018-02-13T08:33:06.719] [INFO] cheese - batch complete in: 1.85 secs -[2018-02-13T08:33:06.879] [INFO] cheese - inserting 1000 documents. first: Ruf 3400S and last: Rodoanel Mário Covas -[2018-02-13T08:33:06.941] [INFO] cheese - inserting 1000 documents. first: Template:Slovenia-transport-stub and last: Lilla skogssjön -[2018-02-13T08:33:07.063] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:33:07.113] [INFO] cheese - batch complete in: 2.45 secs -[2018-02-13T08:33:07.136] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:33:07.328] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Santa Lucia in Septisolio and last: List of Farm to Market Roads in Texas (3000–3099) -[2018-02-13T08:33:07.687] [INFO] cheese - inserting 1000 documents. first: Category:Skin names and last: High Holidays (disambiguation) -[2018-02-13T08:33:07.695] [INFO] cheese - batch complete in: 1.628 secs -[2018-02-13T08:33:07.941] [INFO] cheese - batch complete in: 1.566 secs -[2018-02-13T08:33:07.952] [INFO] cheese - inserting 1000 documents. first: Portal:Arizona/Selected Article/10 and last: Cong Fu Cheng -[2018-02-13T08:33:08.046] [INFO] cheese - inserting 1000 documents. first: List of mountain types and last: Samuel Byck -[2018-02-13T08:33:08.159] [INFO] cheese - inserting 1000 documents. first: Diego De Paz Pazo and last: Sheykh Vajam -[2018-02-13T08:33:08.163] [INFO] cheese - inserting 1000 documents. first: Torus tammer and last: File:Bunker Jacket JustinDiPierro.jpg -[2018-02-13T08:33:08.208] [INFO] cheese - batch complete in: 1.582 secs -[2018-02-13T08:33:08.351] [INFO] cheese - batch complete in: 2.846 secs -[2018-02-13T08:33:08.410] [INFO] cheese - batch complete in: 1.347 secs -[2018-02-13T08:33:08.501] [INFO] cheese - inserting 1000 documents. first: Dream-Star Button Nose and last: 1922-23 Dumbarton F.C. season -[2018-02-13T08:33:08.505] [INFO] cheese - batch complete in: 1.786 secs -[2018-02-13T08:33:08.618] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:33:08.683] [INFO] cheese - inserting 1000 documents. first: Lissmasjön and last: Torre Europa (L'Hospitalet de Llobregat) -[2018-02-13T08:33:08.742] [INFO] cheese - inserting 1000 documents. first: Thug Walkin' and last: Doris Downes -[2018-02-13T08:33:08.787] [INFO] cheese - batch complete in: 1.651 secs -[2018-02-13T08:33:08.858] [INFO] cheese - batch complete in: 1.744 secs -[2018-02-13T08:33:08.959] [INFO] cheese - inserting 1000 documents. first: Portal:Google/Tools/Tools and last: College of Radiology, Academy of Medicine Malaysia -[2018-02-13T08:33:09.014] [INFO] cheese - inserting 1000 documents. first: Idaho State Highway 29 (1930s) and last: Tianzhu Road Station -[2018-02-13T08:33:09.027] [INFO] cheese - inserting 1000 documents. first: 1840-50 Atlantic hurricane seasons and last: 1938 European Athletics Championships - Men's 50 kilometres walk -[2018-02-13T08:33:09.051] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:33:09.165] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:33:09.177] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:33:09.395] [INFO] cheese - inserting 1000 documents. first: Dhauli and last: Category:User ase -[2018-02-13T08:33:09.497] [INFO] cheese - inserting 1000 documents. first: 1939-40 Taça de Portugal and last: Okinawa At-large district (House of Councillors) -[2018-02-13T08:33:09.531] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:33:09.639] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:33:09.699] [INFO] cheese - inserting 1000 documents. first: Ngbinda language and last: Category:Computer science institutes in China -[2018-02-13T08:33:09.825] [INFO] cheese - inserting 1000 documents. first: Naduparambil Pappachan Pradeep and last: Dorchester, IA. -[2018-02-13T08:33:09.827] [INFO] cheese - inserting 1000 documents. first: Once Upon a Time in New York City and last: Bratislava bridgehead -[2018-02-13T08:33:09.829] [INFO] cheese - inserting 1000 documents. first: Dutch process chocolate and last: Anti-disestablishmentarianism -[2018-02-13T08:33:09.850] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Christian theologian and last: Lucien James "Luc" Longley -[2018-02-13T08:33:09.861] [INFO] cheese - inserting 1000 documents. first: Omar Bin Alkahttab and last: The Great Pig War -[2018-02-13T08:33:09.861] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:33:09.967] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:33:10.089] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:33:10.132] [INFO] cheese - batch complete in: 1.924 secs -[2018-02-13T08:33:10.146] [INFO] cheese - batch complete in: 1.794 secs -[2018-02-13T08:33:10.180] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:33:10.225] [INFO] cheese - inserting 1000 documents. first: Alfred S. Barnett and last: 1952-53 Rochester Royals season -[2018-02-13T08:33:10.389] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:33:10.499] [INFO] cheese - inserting 1000 documents. first: Panitya, Victoria and last: Ankkarock -[2018-02-13T08:33:10.564] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:33:10.733] [INFO] cheese - inserting 1000 documents. first: Harry Alexander (rugby footballer) and last: Sun Pharma -[2018-02-13T08:33:10.821] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:33:10.835] [INFO] cheese - inserting 1000 documents. first: Category:Films shot in Cambridgeshire and last: We Walk The Line: A Celebration of the Music of Johnny Cash -[2018-02-13T08:33:10.880] [INFO] cheese - inserting 1000 documents. first: 1957-58 Israel State Cup and last: Category:Suspected Wikipedia sockpuppets of AJ Mclean 1978 -[2018-02-13T08:33:10.924] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:33:10.933] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:33:10.943] [INFO] cheese - inserting 1000 documents. first: Bessarabia (disambiguation) and last: Wikipedia:Articles for deletion/Sahaba's first blood -[2018-02-13T08:33:11.174] [INFO] cheese - inserting 1000 documents. first: Category:Films directed by Harry L. Fraser and last: John Hudson (football player) -[2018-02-13T08:33:11.246] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:33:11.266] [INFO] cheese - inserting 1000 documents. first: Meridian circle and last: Florida Botanical Gardens -[2018-02-13T08:33:11.421] [INFO] cheese - batch complete in: 1.289 secs -[2018-02-13T08:33:11.533] [INFO] cheese - batch complete in: 1.444 secs -[2018-02-13T08:33:11.562] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Alan Fillings and last: 1967-68 Division 1 -[2018-02-13T08:33:11.698] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:33:11.699] [INFO] cheese - inserting 1000 documents. first: Category:Compositions by Daron Hagen and last: Sarah Noble Intermediate School -[2018-02-13T08:33:11.836] [INFO] cheese - batch complete in: 1.015 secs -[2018-02-13T08:33:11.869] [INFO] cheese - inserting 1000 documents. first: Category:Deathlands book covers and last: Sadigjan -[2018-02-13T08:33:11.901] [INFO] cheese - inserting 1000 documents. first: Exeter Times-Advocate and last: Holika Bonfire -[2018-02-13T08:33:11.971] [INFO] cheese - batch complete in: 1.407 secs -[2018-02-13T08:33:12.001] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:33:12.060] [INFO] cheese - inserting 1000 documents. first: The Green Bus and last: Opium of the People -[2018-02-13T08:33:12.133] [INFO] cheese - inserting 1000 documents. first: Ernst Toch and last: Cigarette lighters -[2018-02-13T08:33:12.137] [INFO] cheese - inserting 1000 documents. first: 1966-67 Yugoslav Cup and last: 1972-73 Fußball-Regionalliga -[2018-02-13T08:33:12.171] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:33:12.199] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:33:12.205] [INFO] cheese - inserting 1000 documents. first: William John Plessington and last: The Immortal Legions -[2018-02-13T08:33:12.286] [INFO] cheese - batch complete in: 2.14 secs -[2018-02-13T08:33:12.332] [INFO] cheese - inserting 1000 documents. first: Category:Metropolitan boroughs and last: List of State Highway Routes in New Jersey -[2018-02-13T08:33:12.335] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:33:12.458] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:33:12.465] [INFO] cheese - inserting 1000 documents. first: Category:Articles that may contain original research from November 2011 and last: Department of African American Studies – Syracuse University -[2018-02-13T08:33:12.481] [INFO] cheese - inserting 1000 documents. first: Category:Special elections to the 105th United States Congress and last: 1973-74 Ranji Trophy -[2018-02-13T08:33:12.532] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:33:12.566] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:33:12.633] [INFO] cheese - inserting 1000 documents. first: County Route 83 (Rockland County, New York) and last: Charleston station (West Virginia) -[2018-02-13T08:33:12.645] [INFO] cheese - inserting 1000 documents. first: Category:Carpenter Gothic houses in the United States and last: Atlantic Coast Line Railroad Commercial and Industrial Historic District -[2018-02-13T08:33:12.669] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:33:12.738] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:33:12.771] [INFO] cheese - inserting 1000 documents. first: Berryz工房 スッペシャル ベスト Vol.2 and last: 1980 IAAF World Cross Country Championships - Junior men's race -[2018-02-13T08:33:12.805] [INFO] cheese - batch complete in: 0.273 secs -[2018-02-13T08:33:12.840] [INFO] cheese - inserting 1000 documents. first: Orloff chicken and last: Saints Herald -[2018-02-13T08:33:12.932] [INFO] cheese - inserting 1000 documents. first: Poupée Girl and last: Blue ridge quartet -[2018-02-13T08:33:12.990] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:33:13.094] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:33:13.207] [INFO] cheese - inserting 1000 documents. first: Johanna and last: Columbia-Revelstoke -[2018-02-13T08:33:13.283] [INFO] cheese - inserting 1000 documents. first: 1981-82 National Football League (Ireland) and last: 1984-85 Dallas Mavericks season -[2018-02-13T08:33:13.334] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:33:13.349] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:33:13.358] [INFO] cheese - inserting 1000 documents. first: Dhaiso language and last: Wikipedia:Categories for discussion/Log/2011 December 5 -[2018-02-13T08:33:13.536] [INFO] cheese - inserting 1000 documents. first: Methodist circuit rider and last: Obatu -[2018-02-13T08:33:13.557] [INFO] cheese - inserting 1000 documents. first: Thromboxane synthase and last: Sharon bush -[2018-02-13T08:33:13.572] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:33:13.696] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:33:13.823] [INFO] cheese - inserting 1000 documents. first: Corning Community College and last: Écublens, Vaud -[2018-02-13T08:33:13.825] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:33:13.901] [INFO] cheese - inserting 1000 documents. first: 1985-86 FIBA Women's European Champions Cup and last: 1984 Virginia Slims Championships - Singles -[2018-02-13T08:33:13.977] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:33:14.096] [INFO] cheese - batch complete in: 1.81 secs -[2018-02-13T08:33:14.316] [INFO] cheese - inserting 1000 documents. first: Snake River Plain (ecoregion) and last: Sergei Andronov -[2018-02-13T08:33:14.362] [INFO] cheese - inserting 1000 documents. first: Jeanette McCurdy and last: File:Big Mello.jpg -[2018-02-13T08:33:14.454] [INFO] cheese - inserting 1000 documents. first: 1985-86 FC Dinamo București season and last: Category:Chinese special-purpose aircraft -[2018-02-13T08:33:14.544] [INFO] cheese - batch complete in: 1.45 secs -[2018-02-13T08:33:14.571] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:33:14.544] [INFO] cheese - batch complete in: 1.553 secs -[2018-02-13T08:33:14.826] [INFO] cheese - inserting 1000 documents. first: Booker–Open Russia Literary Prize and last: Category:Cement companies of Portugal -[2018-02-13T08:33:14.848] [INFO] cheese - inserting 1000 documents. first: Category:FA-Class electronic articles and last: Barmston and Fraisthorpe -[2018-02-13T08:33:14.889] [INFO] cheese - inserting 1000 documents. first: Csikszék and last: Boston Theological Institute -[2018-02-13T08:33:14.951] [INFO] cheese - batch complete in: 1.379 secs -[2018-02-13T08:33:14.962] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T08:33:15.050] [INFO] cheese - batch complete in: 1.701 secs -[2018-02-13T08:33:15.163] [INFO] cheese - inserting 1000 documents. first: Panjeh Ali and last: Portal:Current events/2013 December 13 -[2018-02-13T08:33:15.163] [INFO] cheese - inserting 1000 documents. first: 1990 World Junior Championships in Athletics - Women's shot put and last: Arctic Lily (My Little Pony) -[2018-02-13T08:33:15.251] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:33:15.354] [INFO] cheese - batch complete in: 1.658 secs -[2018-02-13T08:33:15.515] [INFO] cheese - inserting 1000 documents. first: Copa do Brasil 1994 and last: Wikipedia:Valued picture candidates/Columbus Zoo Front Gate -[2018-02-13T08:33:15.536] [INFO] cheese - inserting 1000 documents. first: Translucence/Drift Music and last: Slab (phone) -[2018-02-13T08:33:15.624] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:33:15.675] [INFO] cheese - inserting 1000 documents. first: Ardent (My Little Pony) and last: Category:Wikipedia sockpuppets of Smilesnew55 -[2018-02-13T08:33:15.684] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:33:15.799] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:33:15.858] [INFO] cheese - inserting 1000 documents. first: Plead and last: Hurrian language -[2018-02-13T08:33:16.000] [INFO] cheese - inserting 1000 documents. first: File:Thegoblintree.jpg and last: Category:Wikipedians by alma mater: New Jersey Institute of Technology -[2018-02-13T08:33:16.100] [INFO] cheese - batch complete in: 2.004 secs -[2018-02-13T08:33:16.204] [INFO] cheese - inserting 1000 documents. first: Category:Chocobo games and last: First Capital Connect -[2018-02-13T08:33:16.210] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:33:16.246] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia sockpuppets of Sonashaskew and last: Category:2020 elections in the United States by state -[2018-02-13T08:33:16.294] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Poverty Justice and Human Capabilities (Diana Strassmann and Michael Emerson)/Create Account & User Page and last: Linc Blakely -[2018-02-13T08:33:16.333] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:33:16.476] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T08:33:16.496] [INFO] cheese - inserting 1000 documents. first: Brice Meuleman and last: Syrian civil war spillover in Lebanon -[2018-02-13T08:33:16.500] [INFO] cheese - batch complete in: 1.549 secs -[2018-02-13T08:33:16.658] [INFO] cheese - inserting 1000 documents. first: 1988 World's Strongest Man and last: Siloam daylilies -[2018-02-13T08:33:16.685] [INFO] cheese - inserting 1000 documents. first: Cytochrome P450 system and last: Category:Mitsubishi Motors engines -[2018-02-13T08:33:16.723] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:33:16.907] [INFO] cheese - inserting 1000 documents. first: Azad Kashmir Regular Forces and last: Alegrians in Italy -[2018-02-13T08:33:16.920] [INFO] cheese - batch complete in: 1.236 secs -[2018-02-13T08:33:16.946] [INFO] cheese - batch complete in: 1.322 secs -[2018-02-13T08:33:17.051] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:33:17.319] [INFO] cheese - inserting 1000 documents. first: NCEL Premier Division and last: File:Wattie-creek-handover.jpg -[2018-02-13T08:33:17.428] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:33:17.473] [INFO] cheese - inserting 1000 documents. first: 1996-97 Országos Bajnokság I (men's water polo) and last: 1998 Fed Cup Europe/Africa Zone Group II - Pool B -[2018-02-13T08:33:17.559] [INFO] cheese - inserting 1000 documents. first: Campbell Burnap and last: Audi "S4 25quattro" -[2018-02-13T08:33:17.566] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Aciliu Viaduct and last: Template:Campaignbox Syrian civil war spillover in Lebanon -[2018-02-13T08:33:17.579] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:33:17.651] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:33:17.662] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:33:17.699] [INFO] cheese - inserting 1000 documents. first: List of city nicknames in Kansas and last: Wikipedia:WikiProject Spam/LinkReports/raisedbythestars.com -[2018-02-13T08:33:17.788] [INFO] cheese - inserting 1000 documents. first: Edgardo Codesal and last: Maria van der Hoeven -[2018-02-13T08:33:17.859] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:33:18.002] [INFO] cheese - inserting 1000 documents. first: Thomas Dashwood and last: Brimstone (Parker novel) -[2018-02-13T08:33:18.035] [INFO] cheese - inserting 1000 documents. first: Green liberalism and last: Child safety lock -[2018-02-13T08:33:18.056] [INFO] cheese - batch complete in: 1.58 secs -[2018-02-13T08:33:18.202] [INFO] cheese - inserting 1000 documents. first: James Drysdale Brown and last: 2000 Asian Athletics Championships - Men's triple jump -[2018-02-13T08:33:18.233] [INFO] cheese - batch complete in: 2.133 secs -[2018-02-13T08:33:18.408] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/18027 Gokcay and last: Aliabad-e Chah-e Bolagh -[2018-02-13T08:33:18.423] [INFO] cheese - batch complete in: 1.477 secs -[2018-02-13T08:33:18.436] [INFO] cheese - inserting 1000 documents. first: Ceslaus, Saint and last: The Very Best of Antique -[2018-02-13T08:33:18.444] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:33:18.490] [INFO] cheese - inserting 1000 documents. first: Poems 1912-13 and last: List of radio stations in Tamaulipas -[2018-02-13T08:33:18.647] [INFO] cheese - batch complete in: 1.219 secs -[2018-02-13T08:33:18.695] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:33:18.703] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/raisedbythestars.com and last: Altare della patria -[2018-02-13T08:33:18.799] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:33:18.926] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:33:19.192] [INFO] cheese - inserting 1000 documents. first: 2000 Estoril Open - Men's Singles and last: 2002 Challenge Bell - Doubles -[2018-02-13T08:33:19.308] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:33:19.428] [INFO] cheese - inserting 1000 documents. first: Template:Family tree and last: Template:User falcons -[2018-02-13T08:33:19.686] [INFO] cheese - batch complete in: 1.63 secs -[2018-02-13T08:33:19.793] [INFO] cheese - inserting 1000 documents. first: Imbros (horse) and last: Template:2007 in Thai football -[2018-02-13T08:33:19.849] [INFO] cheese - inserting 1000 documents. first: 2002 European Athletics Championships - Men's 4 × 400 metres relay and last: 2002 Asian Athletics Championships - Women's 400 metres hurdles -[2018-02-13T08:33:19.859] [INFO] cheese - inserting 1000 documents. first: Pham Buu Loc and last: Category:Pathanamthitta district -[2018-02-13T08:33:19.893] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:33:19.946] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Gastropods/Related Wikiprojects and last: Template:JULIANDAY.HOUR/doc -[2018-02-13T08:33:19.959] [INFO] cheese - inserting 1000 documents. first: Mazraeh-ye Khalil Rowshan va Amir Khamushi and last: Golisano Children’s Museum of Naples -[2018-02-13T08:33:20.057] [INFO] cheese - batch complete in: 1.634 secs -[2018-02-13T08:33:20.157] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:33:20.204] [INFO] cheese - batch complete in: 1.555 secs -[2018-02-13T08:33:20.215] [INFO] cheese - inserting 1000 documents. first: Kensington Oval, Dunedin and last: Template:Uw-spam1-short -[2018-02-13T08:33:20.320] [INFO] cheese - batch complete in: 1.623 secs -[2018-02-13T08:33:20.397] [INFO] cheese - inserting 1000 documents. first: Henri I de Montmorency and last: Caine, Hall, Sir -[2018-02-13T08:33:20.446] [INFO] cheese - batch complete in: 1.52 secs -[2018-02-13T08:33:20.708] [INFO] cheese - inserting 1000 documents. first: 2002-03 FC Dinamo București season and last: 2003-04 Barnsley F.C. season -[2018-02-13T08:33:20.838] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:33:20.835] [INFO] cheese - batch complete in: 2.598 secs -[2018-02-13T08:33:21.086] [INFO] cheese - inserting 1000 documents. first: National Folk Festival (Australia) and last: CHYR -[2018-02-13T08:33:21.117] [INFO] cheese - inserting 1000 documents. first: Terell davis and last: File:Fine Young Cannibals - I'm Not the Man I Used to Be.jpg -[2018-02-13T08:33:21.234] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T08:33:21.239] [INFO] cheese - inserting 1000 documents. first: Krum dynasty and last: Category:Governors of Qom Province -[2018-02-13T08:33:21.240] [INFO] cheese - inserting 1000 documents. first: Backhand (disambiguation) and last: The words -[2018-02-13T08:33:21.311] [INFO] cheese - batch complete in: 1.625 secs -[2018-02-13T08:33:21.346] [INFO] cheese - inserting 1000 documents. first: Template:JULIANDAY.MINUTE/doc and last: Wikipedia:WikiProject Deletion sorting/Palestine -[2018-02-13T08:33:21.357] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:33:21.422] [INFO] cheese - inserting 1000 documents. first: Karen Senties and last: Creative Commons jurisdiction ports -[2018-02-13T08:33:21.448] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:33:21.495] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:33:21.629] [INFO] cheese - batch complete in: 1.472 secs -[2018-02-13T08:33:21.647] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Lawrence County, Tennessee and last: Template:Epinay-Le Treport railway diagram -[2018-02-13T08:33:21.892] [INFO] cheese - batch complete in: 1.446 secs -[2018-02-13T08:33:21.973] [INFO] cheese - inserting 1000 documents. first: 2006-07 Galatasaray S.K. season and last: 2007-11 Belgian political crisis -[2018-02-13T08:33:22.018] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:33:22.064] [INFO] cheese - inserting 1000 documents. first: Justin Davis and last: File:Oneworld 10 Years Anniversary.svg -[2018-02-13T08:33:22.260] [INFO] cheese - inserting 1000 documents. first: Paicĩ and last: Kainji Dam -[2018-02-13T08:33:22.280] [INFO] cheese - inserting 1000 documents. first: Azog the defiler and last: Category:Boxing in Wyoming -[2018-02-13T08:33:22.302] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:33:22.466] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:33:22.528] [INFO] cheese - batch complete in: 1.08 secs -[2018-02-13T08:33:22.609] [INFO] cheese - inserting 1000 documents. first: German Green party and last: Wikipedia:Articles for deletion/Diamond (rapper) -[2018-02-13T08:33:22.657] [INFO] cheese - inserting 1000 documents. first: 2008 African Championships in Athletics - Men's 1500 metres and last: 2008 Australian Open - women's singles -[2018-02-13T08:33:22.722] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:33:22.725] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:33:22.804] [INFO] cheese - inserting 1000 documents. first: Le Duy Loan and last: Federal Executive Council (Nigeria) -[2018-02-13T08:33:22.885] [INFO] cheese - inserting 1000 documents. first: Michael Maurice Micklewhite and last: Disputed territories -[2018-02-13T08:33:22.940] [INFO] cheese - inserting 1000 documents. first: Audio plug-in and last: Be My Baby (Wonder Girls song) -[2018-02-13T08:33:22.987] [INFO] cheese - batch complete in: 1.492 secs -[2018-02-13T08:33:23.085] [INFO] cheese - batch complete in: 1.193 secs -[2018-02-13T08:33:23.267] [INFO] cheese - inserting 1000 documents. first: Museo de Bellas Artes (Málaga) and last: Template:Linkaudit/doc -[2018-02-13T08:33:23.305] [INFO] cheese - batch complete in: 2.47 secs -[2018-02-13T08:33:23.412] [INFO] cheese - inserting 1000 documents. first: 2008 World Junior Championships in Athletics - Men's hammer throw and last: Kurian kachapally -[2018-02-13T08:33:23.459] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:33:23.618] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:33:23.733] [INFO] cheese - inserting 1000 documents. first: Template:SwimmingAt2013SoutheastAsianGames and last: MSA 1988 -[2018-02-13T08:33:23.866] [INFO] cheese - inserting 1000 documents. first: Infernal and last: Zooper car -[2018-02-13T08:33:23.891] [INFO] cheese - batch complete in: 1.363 secs -[2018-02-13T08:33:23.897] [INFO] cheese - inserting 1000 documents. first: Gorstan and last: Mykola Arkas -[2018-02-13T08:33:23.965] [INFO] cheese - inserting 1000 documents. first: Ras/Raf/MAP kinase and last: Wikipedia:WikiProject Spam/Local/thetalleys.com -[2018-02-13T08:33:23.977] [INFO] cheese - batch complete in: 1.252 secs -[2018-02-13T08:33:23.987] [INFO] cheese - inserting 1000 documents. first: Wise Foods and last: Tboung Khmum District -[2018-02-13T08:33:24.059] [INFO] cheese - batch complete in: 1.585 secs -[2018-02-13T08:33:24.146] [INFO] cheese - inserting 1000 documents. first: River End and last: 2010 UCI Mountain Bike & Trials World Championships - Women's cross-country -[2018-02-13T08:33:24.204] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:33:24.293] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:33:24.303] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:33:24.482] [INFO] cheese - inserting 1000 documents. first: Spomenka Hribar and last: UNSCR 1904 -[2018-02-13T08:33:24.597] [INFO] cheese - batch complete in: 1.138 secs -[2018-02-13T08:33:24.642] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class Hampshire County, West Virginia articles and last: 2011 EmblemHealth Bronx Open - Singles -[2018-02-13T08:33:24.682] [INFO] cheese - inserting 1000 documents. first: Factortame litigation and last: Category:People from Cheorwon County -[2018-02-13T08:33:24.765] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:33:24.791] [INFO] cheese - inserting 1000 documents. first: File:Cornwall Transit Logo.png and last: XHEOLA-FM -[2018-02-13T08:33:24.804] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:33:25.004] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:33:25.160] [INFO] cheese - inserting 1000 documents. first: Marguerite de Launay, baronne de Staal and last: Filosofy -[2018-02-13T08:33:25.311] [INFO] cheese - inserting 1000 documents. first: Template:Prefectures of the Central African Republic Image Map and last: Vox Angeli Children's Choir -[2018-02-13T08:33:25.433] [INFO] cheese - batch complete in: 2.128 secs -[2018-02-13T08:33:25.454] [INFO] cheese - inserting 1000 documents. first: Wedding receptions and last: Scottish Barony -[2018-02-13T08:33:25.485] [INFO] cheese - inserting 1000 documents. first: 2011 Grand Prix Hassan II - Qualifying and last: Category:Draft-Class Latter Day Saint movement articles -[2018-02-13T08:33:25.569] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T08:33:25.606] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:33:25.666] [INFO] cheese - inserting 1000 documents. first: 1947-48 NBA season and last: 2005 South American Under-17 Football Championship -[2018-02-13T08:33:25.790] [INFO] cheese - batch complete in: 1.497 secs -[2018-02-13T08:33:25.805] [INFO] cheese - batch complete in: 1.745 secs -[2018-02-13T08:33:25.895] [INFO] cheese - inserting 1000 documents. first: Yelniki and last: Template:Moscow - Fryazino/Fryazevo -[2018-02-13T08:33:26.105] [INFO] cheese - batch complete in: 1.507 secs -[2018-02-13T08:33:26.202] [INFO] cheese - inserting 1000 documents. first: David Peter John Ross and last: Subaru Group -[2018-02-13T08:33:26.342] [INFO] cheese - inserting 1000 documents. first: 2011-12 Budapest Honved FC II season and last: 2010 Chang-Sat Bangkok 2 Open - Doubles -[2018-02-13T08:33:26.404] [INFO] cheese - inserting 1000 documents. first: Two People Fell in Love and last: Labute -[2018-02-13T08:33:26.431] [INFO] cheese - batch complete in: 1.627 secs -[2018-02-13T08:33:26.431] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:33:26.555] [INFO] cheese - batch complete in: 1.549 secs -[2018-02-13T08:33:26.682] [INFO] cheese - inserting 1000 documents. first: Category:Compositions by Aarre Merikanto and last: Russian Roulette (1992 film) -[2018-02-13T08:33:26.716] [INFO] cheese - inserting 1000 documents. first: Brachypelma vagans and last: Category:Purdue Boilermakers football players -[2018-02-13T08:33:26.767] [INFO] cheese - inserting 1000 documents. first: Category:Agricultural buildings and structures in Iowa and last: 2011-12 Illinois State Redbirds men's basketball team -[2018-02-13T08:33:26.790] [INFO] cheese - batch complete in: 1.221 secs -[2018-02-13T08:33:26.868] [INFO] cheese - inserting 1000 documents. first: The Last Live Video and last: Mate Records -[2018-02-13T08:33:26.902] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:33:26.934] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:33:27.082] [INFO] cheese - batch complete in: 1.292 secs -[2018-02-13T08:33:27.161] [INFO] cheese - inserting 1000 documents. first: Category:Diesel multiple units of the United States and last: Brandon Coleman -[2018-02-13T08:33:27.227] [INFO] cheese - inserting 1000 documents. first: Shanti Devi and last: In Japan during the 1990s -[2018-02-13T08:33:27.267] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:33:27.330] [INFO] cheese - inserting 1000 documents. first: Phylosophy and last: Loop splitting -[2018-02-13T08:33:27.435] [INFO] cheese - inserting 1000 documents. first: Micro 17, Satu Mare and last: 2012 Abierto Mexicano Telcel - Men's Singles -[2018-02-13T08:33:27.447] [INFO] cheese - batch complete in: 1.342 secs -[2018-02-13T08:33:27.574] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:33:27.644] [INFO] cheese - batch complete in: 2.211 secs -[2018-02-13T08:33:27.785] [INFO] cheese - inserting 1000 documents. first: Mirnes Mesic and last: Ralph Peterson -[2018-02-13T08:33:27.831] [INFO] cheese - inserting 1000 documents. first: National Institutes of Standards and Technology and last: (59486) 1999 JV -[2018-02-13T08:33:27.951] [INFO] cheese - batch complete in: 1.16 secs -[2018-02-13T08:33:28.018] [INFO] cheese - batch complete in: 1.463 secs -[2018-02-13T08:33:28.071] [INFO] cheese - inserting 1000 documents. first: 2012 Australian Open - Boys' Singles and last: 2012-13 ISU Speed Skating World Cup - Men's 1500 metres -[2018-02-13T08:33:28.094] [INFO] cheese - inserting 1000 documents. first: Amasa Mason Lyman and last: William Irwin (Unionist politician) -[2018-02-13T08:33:28.132] [INFO] cheese - inserting 1000 documents. first: CJPN and last: Ariel Motor Company -[2018-02-13T08:33:28.142] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:33:28.269] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:33:28.333] [INFO] cheese - batch complete in: 1.398 secs -[2018-02-13T08:33:28.578] [INFO] cheese - inserting 1000 documents. first: Central Park, Wallasey and last: Category:Cinema of Madagascar -[2018-02-13T08:33:28.649] [INFO] cheese - inserting 1000 documents. first: File:Tasgetius coin.jpg and last: Patricia Strachota -[2018-02-13T08:33:28.665] [INFO] cheese - inserting 1000 documents. first: 2012-13 Leeds United F.C. season and last: Kovan, Hougang -[2018-02-13T08:33:28.704] [INFO] cheese - batch complete in: 1.437 secs -[2018-02-13T08:33:28.785] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:33:28.939] [INFO] cheese - batch complete in: 1.492 secs -[2018-02-13T08:33:28.954] [INFO] cheese - inserting 1000 documents. first: Portal:Military of ancient Rome/Selected article/6 and last: Apostrophized -[2018-02-13T08:33:29.097] [INFO] cheese - inserting 1000 documents. first: Category:Libraries in Antigua and Barbuda and last: Singam II -[2018-02-13T08:33:29.119] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:33:29.233] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:33:29.258] [INFO] cheese - inserting 1000 documents. first: Category:People from the Province of Trapani and last: Keong mas -[2018-02-13T08:33:29.314] [INFO] cheese - inserting 1000 documents. first: 2012-13 IRB Women's Sevens World Series and last: 2013 Seguros Bolivar Open Barranquilla - Singles -[2018-02-13T08:33:29.357] [INFO] cheese - inserting 1000 documents. first: I2i and last: WHEC -[2018-02-13T08:33:29.380] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:33:29.459] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:33:29.563] [INFO] cheese - batch complete in: 1.23 secs -[2018-02-13T08:33:29.595] [INFO] cheese - inserting 1000 documents. first: Apocalyptic Raids and last: List of state leaders in 1761 -[2018-02-13T08:33:29.704] [INFO] cheese - inserting 1000 documents. first: واہگہ and last: Thessalian barbel -[2018-02-13T08:33:29.807] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:33:29.819] [INFO] cheese - batch complete in: 2.174 secs -[2018-02-13T08:33:29.854] [INFO] cheese - inserting 1000 documents. first: Marlag and last: Icelandic-Canadian -[2018-02-13T08:33:29.989] [INFO] cheese - inserting 1000 documents. first: 2013 European Athletics U23 Championships - Women's 4 × 400 metres relay and last: Roman Catholic Diocese of Paphos -[2018-02-13T08:33:30.091] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:33:30.108] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:33:30.258] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Monroe County, Alabama and last: Category:Spacecraft launched in 1995 -[2018-02-13T08:33:30.407] [INFO] cheese - inserting 1000 documents. first: Doe Ching and last: Odostomia angularis -[2018-02-13T08:33:30.436] [INFO] cheese - batch complete in: 1.732 secs -[2018-02-13T08:33:30.445] [INFO] cheese - inserting 1000 documents. first: PopMart: Live From Mexico City and last: Wikipedia:Reference desk/Archives/Entertainment/2007 March 9 -[2018-02-13T08:33:30.554] [INFO] cheese - batch complete in: 1.321 secs -[2018-02-13T08:33:30.568] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:33:30.621] [INFO] cheese - inserting 1000 documents. first: 2013 Napa Valley Challenger - Doubles and last: 2013-14 Martyr's Memorial A-Division League -[2018-02-13T08:33:30.640] [INFO] cheese - inserting 1000 documents. first: Category:Fictional ants and last: Yupiks -[2018-02-13T08:33:30.757] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:33:30.811] [INFO] cheese - inserting 1000 documents. first: Hussein Mustahil and last: Tribalism (album) -[2018-02-13T08:33:30.921] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:33:30.972] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:33:31.038] [INFO] cheese - inserting 1000 documents. first: Morosaurus lentus and last: Daniel Lam Wai-keung -[2018-02-13T08:33:31.192] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:33:31.255] [INFO] cheese - inserting 1000 documents. first: Rosa Lee Ingram and last: Tom Chandler (The Last Ship) -[2018-02-13T08:33:31.297] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:33:31.368] [INFO] cheese - inserting 1000 documents. first: Vox Humana (album) and last: Way Out -[2018-02-13T08:33:31.444] [INFO] cheese - inserting 1000 documents. first: Category:Spacecraft launched in 1997 and last: Aliabad, Aqda -[2018-02-13T08:33:31.473] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:33:31.549] [INFO] cheese - inserting 1000 documents. first: Killing of David Wilkie and last: Tionesta Creek -[2018-02-13T08:33:31.632] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:33:31.717] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:33:31.833] [INFO] cheese - inserting 1000 documents. first: 2014 Aegon Championships - Singles and last: 2014 Fed Cup Americas Zone Group I - Pool A -[2018-02-13T08:33:31.870] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1762 and last: Yousef Alavi -[2018-02-13T08:33:31.900] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:33:31.953] [INFO] cheese - inserting 1000 documents. first: 温家宝 and last: Category:Gardens in Bangladesh -[2018-02-13T08:33:32.010] [INFO] cheese - inserting 1000 documents. first: Ultrawave and last: Camp Hero State Park -[2018-02-13T08:33:32.055] [INFO] cheese - inserting 1000 documents. first: Daniel Lam Wai Keung and last: Scarborough, North Yorkshire (borough and district) -[2018-02-13T08:33:32.082] [INFO] cheese - batch complete in: 2.262 secs -[2018-02-13T08:33:32.120] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:33:32.185] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:33:32.238] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:33:32.442] [INFO] cheese - inserting 1000 documents. first: Le Cap d'Agde and last: Ramon "Bong" Revilla Jr -[2018-02-13T08:33:32.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Lina Scott Gatty and last: 2014 World Junior Championships in Athletics - Men's 10,000 metres -[2018-02-13T08:33:32.556] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:33:32.613] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:33:32.720] [INFO] cheese - inserting 1000 documents. first: Anarestan, Yazd and last: Norton Grinding Company -[2018-02-13T08:33:32.866] [INFO] cheese - batch complete in: 1.234 secs -[2018-02-13T08:33:32.877] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/May/13/Selected article and last: Gerotor pump -[2018-02-13T08:33:33.015] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:33:33.058] [INFO] cheese - inserting 1000 documents. first: 5th Space Operations Squadron (United States) and last: Wikipedia:Requests for checkuser/Case/Xted -[2018-02-13T08:33:33.169] [INFO] cheese - inserting 1000 documents. first: 2014 World Wrestling Championships - Men's freestyle 97 kg and last: 2014-15 Lafayette Leopards men's basketball team -[2018-02-13T08:33:33.228] [INFO] cheese - batch complete in: 1.043 secs -[2018-02-13T08:33:33.293] [INFO] cheese - inserting 1000 documents. first: Clavigesta and last: File:HobartDouble-DeckerTram.JPG -[2018-02-13T08:33:33.298] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:33:33.389] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:33:33.445] [INFO] cheese - inserting 1000 documents. first: Eric Mackenzie and last: Simultaneous orthogonal rotations angle -[2018-02-13T08:33:33.514] [INFO] cheese - inserting 1000 documents. first: Steve Sakoman and last: ALCO DL-110 -[2018-02-13T08:33:33.540] [INFO] cheese - batch complete in: 0.927 secs -[2018-02-13T08:33:33.619] [INFO] cheese - batch complete in: 1.38 secs -[2018-02-13T08:33:33.645] [INFO] cheese - inserting 1000 documents. first: 2014-15 Idaho Vandals men's basketball team and last: 2014-15 Syrian Premier League -[2018-02-13T08:33:33.688] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:33:33.805] [INFO] cheese - inserting 1000 documents. first: Decanter (Magazine) and last: Georgiadis -[2018-02-13T08:33:33.825] [INFO] cheese - inserting 1000 documents. first: File:Pastorale (album).jpg and last: Scoparia animosa -[2018-02-13T08:33:33.832] [INFO] cheese - inserting 1000 documents. first: Category:Unassessed-Class Haryana articles of Unknown-importance and last: The Airing of Grievances -[2018-02-13T08:33:33.851] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:33:33.931] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:33:33.938] [INFO] cheese - inserting 1000 documents. first: List of mammals and last: Greatest Hits III -[2018-02-13T08:33:33.956] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:33:34.080] [INFO] cheese - inserting 1000 documents. first: 2014-15 Segunda Liga and last: 2014-15 Turkish Cup -[2018-02-13T08:33:34.100] [INFO] cheese - inserting 1000 documents. first: Dumaguete Airport and last: Izakaya Choji -[2018-02-13T08:33:34.097] [INFO] cheese - batch complete in: 2.015 secs -[2018-02-13T08:33:34.118] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:33:34.278] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:33:34.365] [INFO] cheese - inserting 1000 documents. first: Category:Schools in Davidson County, Tennessee and last: Darzazin -[2018-02-13T08:33:34.659] [INFO] cheese - inserting 1000 documents. first: Radek Novotný and last: Category:FL-Class Tamil Nadu articles of Unknown-importance -[2018-02-13T08:33:34.677] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:33:34.717] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tungstem and last: Langres cheese -[2018-02-13T08:33:34.751] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:33:34.885] [INFO] cheese - inserting 1000 documents. first: 2015 Canberra Tennis International - Singles and last: 2015 Lale Cup - Singles -[2018-02-13T08:33:35.065] [INFO] cheese - batch complete in: 1.446 secs -[2018-02-13T08:33:35.080] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:33:35.119] [INFO] cheese - inserting 1000 documents. first: HAPM and last: Sandy Creek (Allegheny River) -[2018-02-13T08:33:35.204] [INFO] cheese - inserting 1000 documents. first: Center Cemetery (Southampton, Massachusetts) and last: Bermudian general election, 1983 -[2018-02-13T08:33:35.332] [INFO] cheese - inserting 1000 documents. first: Ambedkar Institute of Technology and last: John Eyles (disambiguation) -[2018-02-13T08:33:35.343] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:33:35.348] [INFO] cheese - batch complete in: 1.496 secs -[2018-02-13T08:33:35.369] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Summary motion regarding biographies of living people deletions and last: Promise (margarine) -[2018-02-13T08:33:35.492] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:33:35.615] [INFO] cheese - batch complete in: 1.336 secs -[2018-02-13T08:33:35.651] [INFO] cheese - inserting 1000 documents. first: 2015 Wimbledon Championships - Wheelchair Men's Doubles and last: 2015-16 Galatasaray S.K. season -[2018-02-13T08:33:35.687] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:33:35.828] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Tamil Nadu articles of Top-importance and last: Utah State Route 151 (1933) -[2018-02-13T08:33:35.950] [INFO] cheese - batch complete in: 1.198 secs -[2018-02-13T08:33:36.010] [INFO] cheese - inserting 1000 documents. first: Rotenberg (disambiguation) and last: Jesús María Serrano -[2018-02-13T08:33:36.106] [INFO] cheese - inserting 1000 documents. first: File:Everything at Once (Front Cover).png and last: 2015-16 Esbjerg fB season -[2018-02-13T08:33:36.121] [INFO] cheese - inserting 1000 documents. first: Bahurim and last: Churchill, Ontario -[2018-02-13T08:33:36.128] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:33:36.251] [INFO] cheese - inserting 1000 documents. first: The Tufts Observer and last: Bernard "Bernie" McLaughlin -[2018-02-13T08:33:36.245] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:33:36.296] [INFO] cheese - inserting 1000 documents. first: Aber station and last: Robert Baden-Powell, 3rd Baron Baden-Powell -[2018-02-13T08:33:36.306] [INFO] cheese - inserting 1000 documents. first: Soviet rule in Armenia and last: Worst-case scenario -[2018-02-13T08:33:36.351] [INFO] cheese - batch complete in: 2.254 secs -[2018-02-13T08:33:36.382] [INFO] cheese - inserting 1000 documents. first: Category:Silesian politicians and last: Niasoma -[2018-02-13T08:33:36.449] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:33:36.465] [INFO] cheese - batch complete in: 1.4 secs -[2018-02-13T08:33:36.479] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:33:36.566] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:33:36.635] [INFO] cheese - inserting 1000 documents. first: Miriam Ginestier and last: 2016 Australian Open - Women Legends' Doubles -[2018-02-13T08:33:36.802] [INFO] cheese - inserting 1000 documents. first: Utah State Route 151 (pre-1977) and last: Category:CFU Club Championship -[2018-02-13T08:33:36.815] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:33:36.912] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:33:37.165] [INFO] cheese - inserting 1000 documents. first: Van der Waal force and last: Stem ginger -[2018-02-13T08:33:37.274] [INFO] cheese - inserting 1000 documents. first: 2016 Brisbane International - Women's Singles and last: Air Base 942 Lyon - Mont Verdun -[2018-02-13T08:33:37.322] [INFO] cheese - batch complete in: 1.171 secs -[2018-02-13T08:33:37.323] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:33:37.425] [INFO] cheese - inserting 1000 documents. first: Niphothixa and last: Imaduddin School -[2018-02-13T08:33:37.533] [INFO] cheese - inserting 1000 documents. first: Lightweight programming language and last: Category:Isan geography stubs -[2018-02-13T08:33:37.561] [INFO] cheese - inserting 1000 documents. first: File:Prince LetsWork.jpg and last: List of University of Sydney people -[2018-02-13T08:33:37.590] [INFO] cheese - inserting 1000 documents. first: Bootleg Recordings 1963 and last: 2013–14 San Diego Sockers season -[2018-02-13T08:33:37.667] [INFO] cheese - batch complete in: 1.218 secs -[2018-02-13T08:33:37.709] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:33:37.791] [INFO] cheese - inserting 1000 documents. first: Afrikaanse Woordelys en Spelreëls - Introductory paragraph, English and last: Aristides de Sousa Mendes - O Consul de Bordeus -[2018-02-13T08:33:37.794] [INFO] cheese - batch complete in: 1.329 secs -[2018-02-13T08:33:37.806] [INFO] cheese - batch complete in: 1.327 secs -[2018-02-13T08:33:38.122] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:33:38.190] [INFO] cheese - inserting 1000 documents. first: Cheshmeh-ye Shir and last: Category:High-importance Daman and Diu articles -[2018-02-13T08:33:38.368] [INFO] cheese - batch complete in: 1.456 secs -[2018-02-13T08:33:38.477] [INFO] cheese - inserting 1000 documents. first: Corythornis leucogaster and last: Marines, France -[2018-02-13T08:33:38.592] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 1992 Winter Olympics - Women's super-G and last: Athletics at the 2002 Asian Games - Women's 100 metres hurdles -[2018-02-13T08:33:38.596] [INFO] cheese - inserting 1000 documents. first: Churchville, Ontario and last: Intercal -[2018-02-13T08:33:38.603] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:33:38.680] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:33:38.732] [INFO] cheese - inserting 1000 documents. first: Collingwood (New Zealand electorate) and last: 1991-92 Cuban National Series -[2018-02-13T08:33:38.747] [INFO] cheese - inserting 1000 documents. first: Margarita (song) and last: List of tallest structures in Kosovo -[2018-02-13T08:33:38.788] [INFO] cheese - inserting 1000 documents. first: Cheung Siu Wai and last: Wild Search -[2018-02-13T08:33:38.865] [INFO] cheese - batch complete in: 1.156 secs -[2018-02-13T08:33:38.934] [INFO] cheese - batch complete in: 2.583 secs -[2018-02-13T08:33:39.062] [INFO] cheese - batch complete in: 1.256 secs -[2018-02-13T08:33:39.118] [INFO] cheese - batch complete in: 1.451 secs -[2018-02-13T08:33:39.183] [INFO] cheese - inserting 1000 documents. first: Dehradun district and last: The Spirit of Christmas Past -[2018-02-13T08:33:39.232] [INFO] cheese - inserting 1000 documents. first: 1951-52 Magyar Kupa and last: Quatar at the 2014 Asian Beach Games -[2018-02-13T08:33:39.332] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:33:39.418] [INFO] cheese - inserting 1000 documents. first: 保定軍校 and last: Czech Republic – Germany border -[2018-02-13T08:33:39.423] [INFO] cheese - batch complete in: 1.629 secs -[2018-02-13T08:33:39.536] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:33:39.714] [INFO] cheese - inserting 1000 documents. first: Labour City, Quatar and last: Aomori 1st district (1947-1993) -[2018-02-13T08:33:39.841] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:33:39.874] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Henry Clay Senate and last: Malibu's Most Wanted (soundtrack) -[2018-02-13T08:33:39.925] [INFO] cheese - inserting 1000 documents. first: Football-Mundial and last: Portal:Nautical/July/19/Selected picture -[2018-02-13T08:33:39.953] [INFO] cheese - inserting 1000 documents. first: Category:Lists of roads in Virginia and last: Wikipedia:Articles for deletion/Ahmed Ennaji -[2018-02-13T08:33:40.019] [INFO] cheese - batch complete in: 1.153 secs -[2018-02-13T08:33:40.061] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:33:40.130] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:33:40.217] [INFO] cheese - inserting 1000 documents. first: Polish-Czech Friendship Trail and last: Tandia language -[2018-02-13T08:33:40.245] [INFO] cheese - inserting 1000 documents. first: Archery at the 2014 Asian Games - Women's team compound and last: Athletics at the 2015 African Games - Men's 100 metres -[2018-02-13T08:33:40.301] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:33:40.373] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:33:40.419] [INFO] cheese - inserting 1000 documents. first: The Spirit of Christmas Present and last: TBTA -[2018-02-13T08:33:40.542] [INFO] cheese - inserting 1000 documents. first: Category:Mid-importance Daman and Diu articles and last: Sweet & Sour Tears -[2018-02-13T08:33:40.542] [INFO] cheese - batch complete in: 1.118 secs -[2018-02-13T08:33:40.727] [INFO] cheese - batch complete in: 2.359 secs -[2018-02-13T08:33:40.761] [INFO] cheese - inserting 1000 documents. first: Portal:Nautical/July/20/Selected picture and last: Derby h:o racing club -[2018-02-13T08:33:40.783] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2015 Southeast Asian Games - Men's 10,000 metres and last: Bahnstrecke Nürnberg-Crailsheim -[2018-02-13T08:33:40.812] [INFO] cheese - inserting 1000 documents. first: International emergency medicine and last: The Moss -[2018-02-13T08:33:40.818] [INFO] cheese - inserting 1000 documents. first: Traditional boat race at the 2013 Southeast Asian Games and last: Category:Government agencies established in 1826 -[2018-02-13T08:33:40.823] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:33:40.901] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:33:40.979] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:33:41.043] [INFO] cheese - inserting 1000 documents. first: Andrea Briotti and last: Robert Widdowfield -[2018-02-13T08:33:41.071] [INFO] cheese - inserting 1000 documents. first: Horace Arthur Rose and last: Mitchell Callaway -[2018-02-13T08:33:41.142] [INFO] cheese - batch complete in: 2.207 secs -[2018-02-13T08:33:41.232] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:33:41.344] [INFO] cheese - batch complete in: 1.325 secs -[2018-02-13T08:33:41.555] [INFO] cheese - inserting 1000 documents. first: Athletics at the 2015 Pan American Games - Women's discus throw and last: Battle of Baiji (October-December 2014) -[2018-02-13T08:33:41.623] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:33:41.731] [INFO] cheese - inserting 1000 documents. first: List of Black Books episode and last: Vintgar Gorge -[2018-02-13T08:33:41.771] [INFO] cheese - inserting 1000 documents. first: File:Evpic.jpg and last: Hexanchus -[2018-02-13T08:33:41.823] [INFO] cheese - inserting 1000 documents. first: Joe Huxley and last: Wikipedia:Articles for deletion/Rob Edmond -[2018-02-13T08:33:41.843] [INFO] cheese - inserting 1000 documents. first: The Phantom Rider (Universal serial) and last: Natalie Bodanya -[2018-02-13T08:33:41.856] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:33:41.888] [INFO] cheese - inserting 1000 documents. first: Biathlon at the 1999 Asian Winter Games - Women's individual and last: DRESS syndrome -[2018-02-13T08:33:41.919] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:33:41.958] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:33:42.012] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:33:42.014] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:33:42.043] [INFO] cheese - inserting 1000 documents. first: Hassel Auxiliary Dam and last: Eastern cape Redfin -[2018-02-13T08:33:42.120] [INFO] cheese - inserting 1000 documents. first: Andrew Wishart and last: Category:Organizations based in Winston-Salem, North Carolina -[2018-02-13T08:33:42.140] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:33:42.223] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:33:42.401] [INFO] cheese - inserting 1000 documents. first: Bulgarian National Union - New Democracy and last: China-Kazakhstan relations -[2018-02-13T08:33:42.443] [INFO] cheese - inserting 1000 documents. first: Arthur L. Benton and last: Wikipedia:WikiProject Topical outlines/Draft/List of basic Cuba topics -[2018-02-13T08:33:42.461] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:33:42.499] [INFO] cheese - inserting 1000 documents. first: Chennai-Bangalore line and last: The Ancient Allan -[2018-02-13T08:33:42.528] [INFO] cheese - inserting 1000 documents. first: Ulrich von Brockdorff-Rantzau and last: The Legend Of Zelda: Oracle of Ages -[2018-02-13T08:33:42.562] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:33:42.629] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:33:42.668] [INFO] cheese - batch complete in: 1.526 secs -[2018-02-13T08:33:42.679] [INFO] cheese - inserting 1000 documents. first: The Sicilian Vespers and last: Esterhazy (town of) -[2018-02-13T08:33:42.770] [INFO] cheese - inserting 1000 documents. first: Hampshire Garden Apartment Buildings and last: Category:Roller coasters introduced in 2000 -[2018-02-13T08:33:42.796] [INFO] cheese - inserting 1000 documents. first: Saint Valerius and last: No. 10 in F minor, "Allegro Agitato", or "Appassionata" -[2018-02-13T08:33:42.819] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:33:42.834] [INFO] cheese - inserting 1000 documents. first: Chapter 2. Why So Serious? - The Misconceptions of Me and last: Croatian-Serbian -[2018-02-13T08:33:42.841] [INFO] cheese - inserting 1000 documents. first: Anwaruddin Choudhury and last: Piaggio P.111 -[2018-02-13T08:33:42.953] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:33:42.969] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:33:42.993] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:33:43.084] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:33:43.308] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Topical outlines/Draft/List of basic Cyprus topics and last: Mylargadda -[2018-02-13T08:33:43.379] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:33:43.476] [INFO] cheese - inserting 1000 documents. first: Costa Rica-Iceland relations and last: Delaware-William & Mary football rivalry -[2018-02-13T08:33:43.571] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:33:43.576] [INFO] cheese - inserting 1000 documents. first: Flint maize and last: Category:1968–69 Scottish Football League -[2018-02-13T08:33:43.703] [INFO] cheese - inserting 1000 documents. first: Category:Trinidad and Tobago and the Commonwealth of Nations and last: List of tallest twin buildings in the Philippines -[2018-02-13T08:33:43.717] [INFO] cheese - inserting 1000 documents. first: No. 2 in A minor, "Molto Vivace", or "Fusées" (Rockets) and last: Chengdu Metro -[2018-02-13T08:33:43.735] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:33:43.815] [INFO] cheese - inserting 1000 documents. first: Saarländischer Rundfunk and last: Willard Van Quine -[2018-02-13T08:33:43.830] [INFO] cheese - inserting 1000 documents. first: Point of Entry (Doctor Who audio) and last: Template:CTB minutes/06-1932-01 -[2018-02-13T08:33:43.873] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:33:43.881] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:33:43.913] [INFO] cheese - batch complete in: 1.094 secs -[2018-02-13T08:33:43.949] [INFO] cheese - inserting 1000 documents. first: Dancesport at the 2010 Asian Games - Five standard dances and last: Daniel Esterhazy (1585-1654) -[2018-02-13T08:33:43.980] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:33:44.038] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:33:44.213] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2008 June 21 and last: Wilbur mitcham -[2018-02-13T08:33:44.239] [INFO] cheese - inserting 1000 documents. first: Last House on the Left and last: Voronoi diagrams -[2018-02-13T08:33:44.318] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:33:44.336] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Cumberland County, Kentucky and last: Cham, Iran (disambiguation) -[2018-02-13T08:33:44.406] [INFO] cheese - inserting 1000 documents. first: Directors Guild of America Award for Outstanding Directing - Documentaries and last: Template:Country data Phitsanulok -[2018-02-13T08:33:44.408] [INFO] cheese - batch complete in: 1.74 secs -[2018-02-13T08:33:44.450] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:33:44.589] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:33:44.649] [INFO] cheese - inserting 1000 documents. first: Lemuel Wells and last: Sonoma Valley Regional Park -[2018-02-13T08:33:44.692] [INFO] cheese - inserting 1000 documents. first: St. Andrew's Cathedral, Singapore and last: Kemeko -[2018-02-13T08:33:44.746] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:33:44.872] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Database reports/User template redirects and last: Category:Ivorian expatriates in Romania -[2018-02-13T08:33:44.877] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:33:44.994] [INFO] cheese - inserting 1000 documents. first: Malabo Airport and last: Zeus-Ammon -[2018-02-13T08:33:45.050] [INFO] cheese - batch complete in: 1.07 secs -[2018-02-13T08:33:45.146] [INFO] cheese - inserting 1000 documents. first: Template:Country data Phitsanulok/doc and last: Downtown West - Kerby -[2018-02-13T08:33:45.150] [INFO] cheese - batch complete in: 1.237 secs -[2018-02-13T08:33:45.219] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Midnight Escape (band) and last: Capes of the Kimberley coastline of Western Australia -[2018-02-13T08:33:45.219] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:33:45.304] [INFO] cheese - inserting 1000 documents. first: Coins of the Venezuelan venezolano and last: George Marple -[2018-02-13T08:33:45.303] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:33:45.396] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:33:45.465] [INFO] cheese - inserting 1000 documents. first: File:KennetOceanographyCentre.jpg and last: Papadimos -[2018-02-13T08:33:45.528] [INFO] cheese - inserting 1000 documents. first: Embry-Riddle-Prescott Eagles and last: Făgăraș-Sibiu Motorway -[2018-02-13T08:33:45.554] [INFO] cheese - inserting 1000 documents. first: Andrey Pervozvanny class battleship and last: Alosa volgensis -[2018-02-13T08:33:45.558] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:33:45.579] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T08:33:45.637] [INFO] cheese - inserting 1000 documents. first: Template:North Omaha and last: River Plate F.C. -[2018-02-13T08:33:45.655] [INFO] cheese - inserting 1000 documents. first: Treaty of San Ildefonse and last: Broadcasting, Entertainment, Cinematograph and Theatre Union -[2018-02-13T08:33:45.666] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:33:45.685] [INFO] cheese - inserting 1000 documents. first: U+28B2 and last: Template:Did you know nominations/Black bun -[2018-02-13T08:33:45.723] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:33:45.733] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:33:45.798] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:33:45.841] [INFO] cheese - inserting 1000 documents. first: Batallion wars and last: North Plainfield (NJ) -[2018-02-13T08:33:45.925] [INFO] cheese - inserting 1000 documents. first: Little Sebakwe River and last: Gregers Gram (1846-1929) -[2018-02-13T08:33:45.934] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:33:45.974] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:33:46.049] [INFO] cheese - inserting 1000 documents. first: Filigranes and last: Paul Lambert (disambiguation) -[2018-02-13T08:33:46.149] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:33:46.251] [INFO] cheese - inserting 1000 documents. first: Idol (Swedish TV series) 2013 and last: Taekwondo at the 2010 Asian Games – Women's 73 kg -[2018-02-13T08:33:46.283] [INFO] cheese - inserting 1000 documents. first: (118294) 1998 SQ75 and last: The Monstruous Regiment of Women -[2018-02-13T08:33:46.307] [INFO] cheese - inserting 1000 documents. first: Danny Morrison (Carolina Panthers) and last: Pusa hispida saimensis -[2018-02-13T08:33:46.427] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:33:46.450] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:33:46.457] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:33:46.534] [INFO] cheese - inserting 1000 documents. first: Georgia and Florida Railway (1906-26) and last: Hanover-Würzburg high-speed railway -[2018-02-13T08:33:46.577] [INFO] cheese - inserting 1000 documents. first: Monticello Hotel (Longview) and last: American Japanese -[2018-02-13T08:33:46.634] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:33:46.761] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:33:46.891] [INFO] cheese - inserting 1000 documents. first: Frenchtown (NJ) and last: Ashland Stakes -[2018-02-13T08:33:47.021] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:33:47.108] [INFO] cheese - inserting 1000 documents. first: Swimcaps and last: Juntendo University -[2018-02-13T08:33:47.111] [INFO] cheese - inserting 1000 documents. first: MBS-TV and last: Draft:MassRoots -[2018-02-13T08:33:47.180] [INFO] cheese - inserting 1000 documents. first: Porvenir Municipality and last: Wikipedia:Articles for deletion/Easycore -[2018-02-13T08:33:47.190] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:33:47.208] [INFO] cheese - inserting 1000 documents. first: File:Somewhere Slow.jpg and last: Category:Finley Football Club players -[2018-02-13T08:33:47.208] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:33:47.217] [INFO] cheese - inserting 1000 documents. first: Hardman Philips House and last: Category:Geography of Randolph County, North Carolina -[2018-02-13T08:33:47.358] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:33:47.375] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:33:47.441] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:33:47.621] [INFO] cheese - inserting 1000 documents. first: Beretta 9000S Type F40 and last: Mohammed Neguib -[2018-02-13T08:33:47.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/3GPP Long Term Evolution and last: Indonesia-Tunisia relations -[2018-02-13T08:33:47.697] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:33:47.702] [INFO] cheese - batch complete in: 1.904 secs -[2018-02-13T08:33:47.838] [INFO] cheese - inserting 1000 documents. first: Isarn (bishop of Grenoble) and last: File:KYMC-FM logo.png -[2018-02-13T08:33:47.845] [INFO] cheese - inserting 1000 documents. first: Durbach and last: Wikipedia:WikiProject Spam/LinkSearch/Proboards49.com -[2018-02-13T08:33:47.884] [INFO] cheese - inserting 1000 documents. first: (404) Arsinoë and last: Malmö Airport -[2018-02-13T08:33:47.896] [INFO] cheese - inserting 1000 documents. first: Category:Murray Football League players and last: Chiesa di Santa Maria Maddalena dei Pazzi -[2018-02-13T08:33:47.993] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:33:48.008] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:33:48.017] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:33:48.067] [INFO] cheese - batch complete in: 1.305 secs -[2018-02-13T08:33:48.111] [INFO] cheese - inserting 1000 documents. first: Noble Virgins of Jesus and last: Nate Willems -[2018-02-13T08:33:48.132] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Heriberto Gil Martínez and last: Coastal rowing -[2018-02-13T08:33:48.218] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:33:48.308] [INFO] cheese - inserting 1000 documents. first: Category:Women in Mizoram politics and last: Illinois-Indiana men's basketball rivalry -[2018-02-13T08:33:48.343] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:33:48.378] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:33:48.584] [INFO] cheese - inserting 1000 documents. first: Category:Anglican suffragan bishops in the Diocese of Chelmsford and last: Murray International Trust -[2018-02-13T08:33:48.623] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:33:48.813] [INFO] cheese - inserting 1000 documents. first: Ameer Muawiyah and last: Fencing at the 1972 Summer Olympics - Men's epee -[2018-02-13T08:33:48.815] [INFO] cheese - inserting 1000 documents. first: Manny's Music and last: Category:Alaska education-related lists -[2018-02-13T08:33:48.854] [INFO] cheese - inserting 1000 documents. first: Ouvrage Reservoir and last: Category:Wikipedia sockpuppets of Bosnipedian -[2018-02-13T08:33:48.864] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:33:48.867] [INFO] cheese - inserting 1000 documents. first: Antonio Farré and last: Category:Plantar flexors -[2018-02-13T08:33:48.878] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:33:48.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkSearch/Proboards50.com and last: Strainer cycle -[2018-02-13T08:33:48.893] [INFO] cheese - inserting 1000 documents. first: Melusina, Countess of Walsingham and last: Battle of Southern Shansi -[2018-02-13T08:33:48.917] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:33:48.931] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:33:49.030] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:33:49.061] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:33:49.211] [INFO] cheese - inserting 1000 documents. first: Papineau Avenue and last: Adam Jones (football cornerback) -[2018-02-13T08:33:49.221] [INFO] cheese - inserting 1000 documents. first: Index of physics articles: A-G and last: List of Alderson-Broaddus Battlers head football coaches -[2018-02-13T08:33:49.254] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:33:49.267] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:33:49.321] [INFO] cheese - inserting 1000 documents. first: Kornel Ujejski and last: The Merv Griffin Show -[2018-02-13T08:33:49.385] [INFO] cheese - inserting 1000 documents. first: Far North Queensland Bulls FC and last: Template:Did you know nominations/Hellcow -[2018-02-13T08:33:49.415] [INFO] cheese - batch complete in: 1.713 secs -[2018-02-13T08:33:49.433] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:33:49.500] [INFO] cheese - inserting 1000 documents. first: Medical grade silicone and last: Wikipedia:Articles for deletion/Tux, of Math Command -[2018-02-13T08:33:49.520] [INFO] cheese - inserting 1000 documents. first: Dwitiya and last: Category:Plants described in 1779 -[2018-02-13T08:33:49.580] [INFO] cheese - inserting 1000 documents. first: Template:Iowa Democratic primary polls, 2016 and last: List of Japanese football transfers winter 2015-16 -[2018-02-13T08:33:49.581] [INFO] cheese - inserting 1000 documents. first: Devi and Vrkis and last: Mary Ballou -[2018-02-13T08:33:49.595] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:33:49.612] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:33:49.638] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:33:49.711] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:33:49.837] [INFO] cheese - inserting 1000 documents. first: Topical outline of crafts and last: Donald Horowitz (New Jersey lawyer) -[2018-02-13T08:33:49.915] [INFO] cheese - inserting 1000 documents. first: CF União de Coimbra and last: Home, WA -[2018-02-13T08:33:49.973] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:33:50.176] [INFO] cheese - inserting 1000 documents. first: Alexander Macleod and last: Collinia beringensis -[2018-02-13T08:33:50.208] [INFO] cheese - batch complete in: 1.147 secs -[2018-02-13T08:33:50.222] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Transpositional modulation and last: List of members of the European Parliament for Greece, 1994-99 -[2018-02-13T08:33:50.326] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:33:50.532] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:33:50.803] [INFO] cheese - inserting 1000 documents. first: File:Blood Sweat And Tears The Owl And the Pussy Cat.jpg and last: Cecil B. Brown Jr. -[2018-02-13T08:33:51.024] [INFO] cheese - batch complete in: 1.386 secs -[2018-02-13T08:33:51.049] [INFO] cheese - inserting 1000 documents. first: Gessertshausen and last: Person-fit analysis -[2018-02-13T08:33:51.237] [INFO] cheese - inserting 1000 documents. first: Judo at the 2014 Commonwealth Games - Women's 70 kg and last: Lloyd Wood (director) -[2018-02-13T08:33:51.279] [INFO] cheese - inserting 1000 documents. first: Category:Thought experiments in physics and last: Theodor Quandt -[2018-02-13T08:33:51.297] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:33:51.445] [INFO] cheese - batch complete in: 1.734 secs -[2018-02-13T08:33:51.573] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Indian literature articles of Low-importance and last: Causal set bibliography -[2018-02-13T08:33:51.613] [INFO] cheese - batch complete in: 2.018 secs -[2018-02-13T08:33:51.665] [INFO] cheese - inserting 1000 documents. first: International political economy and last: Youth work -[2018-02-13T08:33:51.726] [INFO] cheese - batch complete in: 1.753 secs -[2018-02-13T08:33:51.933] [INFO] cheese - inserting 1000 documents. first: Hoodsport, WA and last: Jaap Eden baan -[2018-02-13T08:33:51.973] [INFO] cheese - inserting 1000 documents. first: List of members of the Italian Senate, 2008-13 and last: List of minor planets: 419001-420000 -[2018-02-13T08:33:52.028] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:33:52.042] [INFO] cheese - batch complete in: 2.626 secs -[2018-02-13T08:33:52.091] [INFO] cheese - batch complete in: 1.883 secs -[2018-02-13T08:33:52.230] [INFO] cheese - inserting 1000 documents. first: Orson Welles and People and last: Category:1910 in British sport -[2018-02-13T08:33:52.259] [INFO] cheese - inserting 1000 documents. first: File:FK Skopje Logo.png and last: Garudinistis variegata -[2018-02-13T08:33:52.332] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:33:52.408] [INFO] cheese - inserting 1000 documents. first: Kane & Abel (miniseries) and last: Sproing awards -[2018-02-13T08:33:52.410] [INFO] cheese - batch complete in: 1.875 secs -[2018-02-13T08:33:52.579] [INFO] cheese - inserting 1000 documents. first: Cryptolechia glischrodes and last: Manchester united season 2011-12 -[2018-02-13T08:33:52.611] [INFO] cheese - inserting 1000 documents. first: Hugh Montgomery and last: Ofenhorn -[2018-02-13T08:33:52.691] [INFO] cheese - batch complete in: 1.245 secs -[2018-02-13T08:33:52.794] [INFO] cheese - inserting 1000 documents. first: Category:Plutonic rocks and last: File:K-os the trill a journey so far album cover.jpg -[2018-02-13T08:33:52.810] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:33:52.700] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:33:53.040] [INFO] cheese - batch complete in: 1.425 secs -[2018-02-13T08:33:53.211] [INFO] cheese - inserting 1000 documents. first: Mausoleum Meisdorf and last: Category:2008 in Maltese sport -[2018-02-13T08:33:53.324] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:33:53.347] [INFO] cheese - inserting 1000 documents. first: International Rutabaga Curling Championship and last: List of episodes of Arrested Development -[2018-02-13T08:33:53.360] [INFO] cheese - inserting 1000 documents. first: Meanings of minor planet names: 260001-261000 and last: Moroccan Arabic-African Federation Treaty referendum, 1984 -[2018-02-13T08:33:53.411] [INFO] cheese - inserting 1000 documents. first: Community West Bancshares and last: Harpers ferry raid -[2018-02-13T08:33:53.425] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:33:53.459] [INFO] cheese - inserting 1000 documents. first: Route 34A (New York) and last: Parker Canyon Lake -[2018-02-13T08:33:53.460] [INFO] cheese - batch complete in: 1.369 secs -[2018-02-13T08:33:53.538] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:33:53.541] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:33:53.632] [INFO] cheese - inserting 1000 documents. first: Sand Olive and last: Do You Remember the First Time? -[2018-02-13T08:33:53.662] [INFO] cheese - inserting 1000 documents. first: Denominación de origen calificada and last: 2010 in sumo -[2018-02-13T08:33:53.676] [INFO] cheese - inserting 1000 documents. first: Filinota gratiosa and last: DS Valdivia -[2018-02-13T08:33:53.722] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T08:33:53.759] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:33:53.783] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:33:53.796] [INFO] cheese - inserting 1000 documents. first: Ella Grasso and last: Adorno family -[2018-02-13T08:33:53.833] [INFO] cheese - inserting 1000 documents. first: Detroit-Dearborn Motor Car Company and last: Bust of Francesco I d'Este -[2018-02-13T08:33:53.952] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:33:53.980] [INFO] cheese - batch complete in: 1.936 secs -[2018-02-13T08:33:54.005] [INFO] cheese - inserting 1000 documents. first: File:FK Sateska Logo.jpg and last: Wikipedia:Articles for deletion/Scott Manville -[2018-02-13T08:33:54.162] [INFO] cheese - inserting 1000 documents. first: New York State Route 15 (1924-1938) and last: PENTA - Pena Táxi Aéreo -[2018-02-13T08:33:54.193] [INFO] cheese - inserting 1000 documents. first: The Virgins (album) and last: Philip Gilbert Hammerton -[2018-02-13T08:33:54.230] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:33:54.233] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:33:54.266] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:33:54.428] [INFO] cheese - inserting 1000 documents. first: Brazilian snapper and last: Category:Villages in Prakasam district -[2018-02-13T08:33:54.434] [INFO] cheese - inserting 1000 documents. first: Civic guild of old mercers and last: 2004 UEFA European Under-17 Championship -[2018-02-13T08:33:54.490] [INFO] cheese - inserting 1000 documents. first: Michael Oscislawski and last: Wikipedia:WikiProject Category sorting/userbox -[2018-02-13T08:33:54.551] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:33:54.559] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:33:54.611] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:33:54.651] [INFO] cheese - inserting 1000 documents. first: Pa vag, 1982-86 and last: Phillippines Campaign (1944-45) -[2018-02-13T08:33:54.707] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:33:54.775] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Meenush and last: Paraguay–India relations -[2018-02-13T08:33:54.904] [INFO] cheese - inserting 1000 documents. first: File:Cover me 96.jpg and last: Category:British travel books -[2018-02-13T08:33:54.994] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:33:55.064] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Anatolia Region and last: Category:Operas by Vicente Martín y Soler -[2018-02-13T08:33:55.092] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:33:55.221] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:33:55.245] [INFO] cheese - inserting 1000 documents. first: Pittsburgh-Penn State football rivalry and last: Our Neighbors - The Carters -[2018-02-13T08:33:55.285] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:33:55.369] [INFO] cheese - inserting 1000 documents. first: Mike Howlett and last: Fall of France -[2018-02-13T08:33:55.373] [INFO] cheese - inserting 1000 documents. first: Valdurmon and last: Kera railway station -[2018-02-13T08:33:55.417] [INFO] cheese - inserting 1000 documents. first: Towsontown Boulevard and last: Laureta -[2018-02-13T08:33:55.427] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:33:55.440] [INFO] cheese - inserting 1000 documents. first: Portal:Languages and last: Uranous -[2018-02-13T08:33:55.511] [INFO] cheese - batch complete in: 1.531 secs -[2018-02-13T08:33:55.539] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:33:55.573] [INFO] cheese - batch complete in: 1.014 secs -[2018-02-13T08:33:55.575] [INFO] cheese - inserting 1000 documents. first: Paraguay - India relations and last: Playboy mansion -[2018-02-13T08:33:55.645] [INFO] cheese - inserting 1000 documents. first: Polska Liga Hokejowa season (1997-98) and last: Alpelisib -[2018-02-13T08:33:55.659] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:33:55.684] [INFO] cheese - inserting 1000 documents. first: Story Quarterly and last: Tremont Row -[2018-02-13T08:33:55.684] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T08:33:55.739] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:33:55.975] [INFO] cheese - inserting 1000 documents. first: Deutsche Schule — Dörpfeld-Gymnasium — and last: Route 114A (Massachusetts - Rhode Island) -[2018-02-13T08:33:55.999] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:33:56.017] [INFO] cheese - inserting 1000 documents. first: Rudzani Ramudzuli and last: Wikipedia:Articles for deletion/City of Caterpillar -[2018-02-13T08:33:56.060] [INFO] cheese - inserting 1000 documents. first: Peak Hill, Western Australia and last: Barabanki (Lok Sabha constituency) -[2018-02-13T08:33:56.094] [INFO] cheese - inserting 1000 documents. first: Sa'ad ad-Din and last: Bernard Raymond Fink -[2018-02-13T08:33:56.114] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:33:56.171] [INFO] cheese - batch complete in: 0.95 secs -[2018-02-13T08:33:56.201] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:33:56.307] [INFO] cheese - inserting 1000 documents. first: Central Oklahoma Bronchos men's basketball and last: 27 rue de Fleurus -[2018-02-13T08:33:56.323] [INFO] cheese - inserting 1000 documents. first: CIGI Campus and last: The Paterson Press -[2018-02-13T08:33:56.341] [INFO] cheese - inserting 1000 documents. first: List of Tool-lending libraries and last: William of Jülich-Cleves-Berg -[2018-02-13T08:33:56.402] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:33:56.450] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:33:56.523] [INFO] cheese - inserting 1000 documents. first: Sailing at the 2015 Pan American Games - Hobie 16 and last: Covet (song) -[2018-02-13T08:33:56.544] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:33:56.599] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:33:56.738] [INFO] cheese - inserting 1000 documents. first: Two-seam fastball and last: Cael Sanderson -[2018-02-13T08:33:56.836] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/1999 September 28 and last: Our Lady of Sheshan -[2018-02-13T08:33:56.846] [INFO] cheese - batch complete in: 1.334 secs -[2018-02-13T08:33:56.922] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:33:56.926] [INFO] cheese - inserting 1000 documents. first: Spoiled (Basement song) and last: Siege of Antwerp (1584-85) -[2018-02-13T08:33:56.941] [INFO] cheese - inserting 1000 documents. first: Gansett and last: Independent Lubricant Manufacturer Association -[2018-02-13T08:33:56.962] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T08:33:57.048] [INFO] cheese - inserting 1000 documents. first: Monad University and last: Dnipro Ukraine -[2018-02-13T08:33:57.072] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:33:57.099] [INFO] cheese - inserting 1000 documents. first: National Lampoon Gentleman's Bathroom Companion II and last: Category:Boxers from West Virginia -[2018-02-13T08:33:57.142] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:33:57.224] [INFO] cheese - inserting 1000 documents. first: Harittu and last: Lamaseries -[2018-02-13T08:33:57.254] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:33:57.257] [INFO] cheese - inserting 1000 documents. first: Visa requirements for Bahraini citizens and last: Battle of Elaia–Kalamas -[2018-02-13T08:33:57.354] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:33:57.362] [INFO] cheese - inserting 1000 documents. first: Ski jumping at the 2015 Winter Universiade - Women's team normal hill and last: Speed skating at the 2014 Winter Olympics - Men's team pursuit -[2018-02-13T08:33:57.367] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:33:57.433] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:33:57.505] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ships articles by quality/43 and last: Aldershot North railway station -[2018-02-13T08:33:57.622] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:33:57.735] [INFO] cheese - inserting 1000 documents. first: WTKV and last: Category:University Athletic Association of the Philippines seasons -[2018-02-13T08:33:57.737] [INFO] cheese - inserting 1000 documents. first: Sri Lankan women's cricket team in New Zealand in 2015-16 and last: Peritornenta stigmatias -[2018-02-13T08:33:57.748] [INFO] cheese - inserting 1000 documents. first: Phi4 Ceti and last: Category:359 in Europe -[2018-02-13T08:33:57.764] [INFO] cheese - batch complete in: 0.331 secs -[2018-02-13T08:33:57.788] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:33:57.829] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:33:57.863] [INFO] cheese - inserting 1000 documents. first: Borkhar and last: The 30th Annual John Lennon Tribute: Live from the Beacon Theatre, NYC -[2018-02-13T08:33:57.958] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:33:58.010] [INFO] cheese - inserting 1000 documents. first: Zuph and last: Sacix -[2018-02-13T08:33:58.044] [INFO] cheese - inserting 1000 documents. first: Battle of Elaia-Kalamas and last: Crotaphytus grismeri -[2018-02-13T08:33:58.098] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2004 Summer Paralympics - Women's 50 metre freestyle S13 and last: Swimming at the 2013 Southeast Asian Games - Women's 4 × 200 metre freestyle relay -[2018-02-13T08:33:58.112] [INFO] cheese - batch complete in: 1.266 secs -[2018-02-13T08:33:58.126] [INFO] cheese - batch complete in: 0.362 secs -[2018-02-13T08:33:58.132] [INFO] cheese - inserting 1000 documents. first: Born for this and last: Lyn Lemaire -[2018-02-13T08:33:58.136] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:33:58.281] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:33:58.288] [INFO] cheese - inserting 1000 documents. first: Louie Kelcher and last: Category:TCU Horned Frogs football -[2018-02-13T08:33:58.347] [INFO] cheese - inserting 1000 documents. first: Orchids of Ireland and last: Template:Pitchfork (website) -[2018-02-13T08:33:58.374] [INFO] cheese - batch complete in: 1.019 secs -[2018-02-13T08:33:58.420] [INFO] cheese - inserting 1000 documents. first: Edgar Bowers and last: The X-Files Mythology, Volume 4 – Super Soldiers -[2018-02-13T08:33:58.439] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:33:58.467] [INFO] cheese - inserting 1000 documents. first: Pârse and last: Nataliya Meshcheryakova -[2018-02-13T08:33:58.480] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2008 Summer Paralympics - Men's 100 metre backstroke S9 and last: Riga-Lugazi Railway -[2018-02-13T08:33:58.503] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:33:58.522] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:33:58.569] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:33:58.841] [INFO] cheese - inserting 1000 documents. first: Perry Stokes Airport and last: Wikipedia:Miscellany for deletion/User:Alantauber -[2018-02-13T08:33:58.941] [INFO] cheese - inserting 1000 documents. first: Penn State-Berks Nittany Lions and last: Technological University of the Philippines - Visayas -[2018-02-13T08:33:58.979] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:33:58.995] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:33:59.165] [INFO] cheese - inserting 1000 documents. first: Callionymus reticulatus and last: Mar Thomite -[2018-02-13T08:33:59.177] [INFO] cheese - inserting 1000 documents. first: Ground pepper and last: London Portal -[2018-02-13T08:33:59.237] [INFO] cheese - inserting 1000 documents. first: Russell Rickford and last: Category:ECM Records live albums -[2018-02-13T08:33:59.289] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:33:59.328] [INFO] cheese - batch complete in: 1.192 secs -[2018-02-13T08:33:59.388] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:33:59.400] [INFO] cheese - inserting 1000 documents. first: Taiwan-South Korea relations and last: Say No To The Devil -[2018-02-13T08:33:59.474] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:33:59.491] [INFO] cheese - inserting 1000 documents. first: Bic code and last: The art of computer programming -[2018-02-13T08:33:59.520] [INFO] cheese - inserting 1000 documents. first: BB&T Ballpark at Historic Bowman Field and last: GNB -[2018-02-13T08:33:59.569] [INFO] cheese - inserting 1000 documents. first: 312th Fighter-Bomber Squadron and last: Bradevelt, NJ -[2018-02-13T08:33:59.572] [INFO] cheese - batch complete in: 1.069 secs -[2018-02-13T08:33:59.621] [INFO] cheese - batch complete in: 1.509 secs -[2018-02-13T08:33:59.644] [INFO] cheese - inserting 1000 documents. first: Blake School (Lake City, Florida) and last: Shoshanat HaAmakim -[2018-02-13T08:33:59.688] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:33:59.714] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:33:59.756] [INFO] cheese - inserting 1000 documents. first: U.S. Route 5 Alternate (New Haven, Connecticut 1941-1966) and last: The Souther-Hillman-Furay Band -[2018-02-13T08:33:59.791] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:33:59.832] [INFO] cheese - inserting 1000 documents. first: Michelle Maulkin and last: File:1972 awardwinning.jpg -[2018-02-13T08:33:59.846] [INFO] cheese - inserting 1000 documents. first: Law of Nigeria and last: Rub and tug -[2018-02-13T08:33:59.909] [INFO] cheese - inserting 1000 documents. first: Jonathan Harker and last: Thought Adjuster -[2018-02-13T08:33:59.912] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:33:59.915] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:33:59.991] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:34:00.215] [INFO] cheese - inserting 1000 documents. first: Without You (Oh Wonder song) and last: Wheelchair fencing at the 2004 Summer Paralympics - Men's foil A -[2018-02-13T08:34:00.257] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:34:00.268] [INFO] cheese - inserting 1000 documents. first: Template:Israeli top flight seasons and last: Patrick McNamee -[2018-02-13T08:34:00.400] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:34:00.417] [INFO] cheese - inserting 1000 documents. first: Troclosene and last: Template:Fb competition 2009-10 Challenge League -[2018-02-13T08:34:00.454] [INFO] cheese - inserting 1000 documents. first: Bradevelt and last: Tamil blogosphere -[2018-02-13T08:34:00.457] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:34:00.563] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:34:00.593] [INFO] cheese - inserting 1000 documents. first: Category:Dune series adaptations and last: Wushu at the 2010 Asian Games - Men's sanda 60 kg -[2018-02-13T08:34:00.598] [INFO] cheese - inserting 1000 documents. first: Hayatullah (disambiguation) and last: Presidential elections in Moldova -[2018-02-13T08:34:00.607] [INFO] cheese - inserting 1000 documents. first: Rub 'n tug and last: Dorsets -[2018-02-13T08:34:00.647] [INFO] cheese - inserting 1000 documents. first: Lolth and last: Western front -[2018-02-13T08:34:00.654] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:34:00.690] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:34:00.734] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:34:00.797] [INFO] cheese - batch complete in: 1.176 secs -[2018-02-13T08:34:00.856] [INFO] cheese - inserting 1000 documents. first: Ann Baskett and last: Ultra lounge -[2018-02-13T08:34:00.997] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:34:01.025] [INFO] cheese - inserting 1000 documents. first: USDA National Nutrient Database and last: Charlottesville Fashion Square -[2018-02-13T08:34:01.088] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:34:01.098] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2007 March 17 and last: Tinker vs. Des Moines -[2018-02-13T08:34:01.118] [INFO] cheese - inserting 1000 documents. first: Category:Irish country singers templates and last: Uprising of May 2-3, 1808 -[2018-02-13T08:34:01.178] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:34:01.178] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:34:01.182] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Robert Pearsall (architect) and last: Anne Perkin -[2018-02-13T08:34:01.261] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:34:01.379] [INFO] cheese - inserting 1000 documents. first: Category:World Airways accidents and incidents and last: Wikipedia:Articles for deletion/Pacific Square -[2018-02-13T08:34:01.514] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:34:01.569] [INFO] cheese - inserting 1000 documents. first: H.T. Burleigh and last: Wikipedia:Articles for deletion/Larry Sanders (politician) -[2018-02-13T08:34:01.630] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:34:01.701] [INFO] cheese - inserting 1000 documents. first: Fernando Fernandes and last: 1978–79 Maltese Premier League -[2018-02-13T08:34:01.734] [INFO] cheese - inserting 1000 documents. first: Guadalupe Contreras Ramos and last: University of denver -[2018-02-13T08:34:01.746] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:34:01.790] [INFO] cheese - inserting 1000 documents. first: UCI Mountain Bike & Trials World Championships - Men's cross-country eliminator and last: File:APeacocksTale.jpg -[2018-02-13T08:34:01.817] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:34:01.839] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:34:01.887] [INFO] cheese - inserting 1000 documents. first: Category:Marvel Comics Atlanteans and last: Corbett and Courtney Before the Kinetograph -[2018-02-13T08:34:01.925] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:34:01.933] [INFO] cheese - inserting 1000 documents. first: Annie Perkin and last: 2014 Grand Prix of Bahrain -[2018-02-13T08:34:01.957] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The real students of telecom and last: Further Continuing Appropriations, 2010 -[2018-02-13T08:34:02.030] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:34:02.059] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:34:02.066] [INFO] cheese - inserting 1000 documents. first: Imperial pint and last: The Buzz -[2018-02-13T08:34:02.155] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:34:02.159] [INFO] cheese - inserting 1000 documents. first: John McDougall (disambiguation) and last: Category:Futsal in Slovakia -[2018-02-13T08:34:02.226] [INFO] cheese - inserting 1000 documents. first: 1979–80 Maltese Premier League and last: Ryazanskiy Prospekt -[2018-02-13T08:34:02.246] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:34:02.310] [INFO] cheese - inserting 1000 documents. first: Transverse mesocolons and last: Category:North Vietnamese military personnel of the Vietnam War -[2018-02-13T08:34:02.321] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:34:02.387] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:34:02.412] [INFO] cheese - inserting 1000 documents. first: Joseph Wanton Morrison and last: Adventures in slumberland (film) -[2018-02-13T08:34:02.464] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:34:02.523] [INFO] cheese - inserting 1000 documents. first: 2014 Grand Prix of Spain and last: Category:Rugby union at the 2002 Asian Games -[2018-02-13T08:34:02.537] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/William Olin and last: File:Himg logo.jpg -[2018-02-13T08:34:02.592] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:34:02.732] [INFO] cheese - inserting 1000 documents. first: 1959–60 Danish Ice Hockey Championship season and last: James Franklin (quarterback) -[2018-02-13T08:34:02.759] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:34:02.812] [INFO] cheese - inserting 1000 documents. first: Longmans, Green and co. and last: Howard-Payne Junior College -[2018-02-13T08:34:02.832] [INFO] cheese - inserting 1000 documents. first: Minister of Foreign Affairs (Mongolia) and last: January 2006 deaths -[2018-02-13T08:34:02.832] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:34:02.866] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:34:02.955] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:34:03.228] [INFO] cheese - inserting 1000 documents. first: Acronicta cuspis and last: Wikipedia:WikiProject Spam/LinkReports/powerplaymanager.com -[2018-02-13T08:34:03.287] [INFO] cheese - inserting 1000 documents. first: Lombardi Trophy and last: Felipe Massa -[2018-02-13T08:34:03.295] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:34:03.348] [INFO] cheese - inserting 1000 documents. first: Ghost Dance shirt and last: Category:Boxing in Colombia -[2018-02-13T08:34:03.431] [INFO] cheese - inserting 1000 documents. first: File:Haigh's Mrs Kimble.jpg and last: Wikipedia:Articles for deletion/Mootstormfront -[2018-02-13T08:34:03.464] [INFO] cheese - batch complete in: 1.309 secs -[2018-02-13T08:34:03.485] [INFO] cheese - inserting 1000 documents. first: Ken Halverson and last: Let's Talk About It (single) -[2018-02-13T08:34:03.492] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:34:03.508] [INFO] cheese - inserting 1000 documents. first: December 2005 deaths and last: Category:Suicide by city -[2018-02-13T08:34:03.529] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:34:03.580] [INFO] cheese - inserting 1000 documents. first: Category:1984 Summer Olympics stubs and last: Maasniel -[2018-02-13T08:34:03.597] [INFO] cheese - inserting 1000 documents. first: Category:People from Bejucal and last: Tom Jones (lyricist) -[2018-02-13T08:34:03.656] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:34:03.720] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:34:03.748] [INFO] cheese - batch complete in: 0.916 secs -[2018-02-13T08:34:03.787] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:34:04.072] [INFO] cheese - inserting 1000 documents. first: Nello Di Costanzo and last: Samuel Tuitupou -[2018-02-13T08:34:04.125] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:34:04.136] [INFO] cheese - inserting 1000 documents. first: Grossglockner Automobile and Motorcycle Races and last: Pepelu Vidal -[2018-02-13T08:34:04.237] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:34:04.297] [INFO] cheese - inserting 1000 documents. first: Life in a Day (single) and last: Template:Arrondissements of Haiti -[2018-02-13T08:34:04.311] [INFO] cheese - inserting 1000 documents. first: Category:Discoveries by Filip Fratev and last: Apollonius (ambassador) -[2018-02-13T08:34:04.322] [INFO] cheese - inserting 1000 documents. first: 1958 New York Film Critics Circle Awards and last: Wikipedia:Version 1.0 Editorial Team/AFL articles by quality log -[2018-02-13T08:34:04.401] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ours (song) and last: Republic of China (1949–present) -[2018-02-13T08:34:04.409] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:34:04.411] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:34:04.427] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:34:04.515] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:34:04.526] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of Netflix distribution centers and last: File:Slaverweapon.jpg -[2018-02-13T08:34:04.605] [INFO] cheese - inserting 1000 documents. first: British Open (tennis) and last: DC vs. Heller -[2018-02-13T08:34:04.614] [INFO] cheese - batch complete in: 1.085 secs -[2018-02-13T08:34:04.712] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:34:04.720] [INFO] cheese - inserting 1000 documents. first: Möbius mu function and last: Interstate 696 -[2018-02-13T08:34:04.845] [INFO] cheese - inserting 1000 documents. first: Freweyni and last: Template:Location map Indonesia Maluku-Western New Guinea -[2018-02-13T08:34:04.850] [INFO] cheese - batch complete in: 1.385 secs -[2018-02-13T08:34:04.925] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:34:04.968] [INFO] cheese - inserting 1000 documents. first: File:More-Bad-News-Record-Store-250.jpg and last: Montreal Science Centre -[2018-02-13T08:34:05.021] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:34:05.029] [INFO] cheese - inserting 1000 documents. first: Causal dynamic triangulation and last: Alaska Newspapers, Inc. -[2018-02-13T08:34:05.040] [INFO] cheese - inserting 1000 documents. first: Mbayar and last: Robert J.S. Ross -[2018-02-13T08:34:05.110] [INFO] cheese - inserting 1000 documents. first: Offenbach-Ost station and last: Nimrod Shapria Bar-Or -[2018-02-13T08:34:05.205] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:34:05.209] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:34:05.334] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:05.417] [INFO] cheese - inserting 1000 documents. first: Pete Mathews Coliseum and last: Tendayi Jembere -[2018-02-13T08:34:05.507] [INFO] cheese - inserting 1000 documents. first: Marcus Williams (basketball, born 1986) and last: Jonas Karlsson (ice hockey) -[2018-02-13T08:34:05.552] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:34:05.594] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:34:05.636] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/In God We Trust: But Which One? and last: Bbf3 -[2018-02-13T08:34:05.790] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Texas Tech University/WP and last: Osborn Anderson -[2018-02-13T08:34:05.805] [INFO] cheese - batch complete in: 1.093 secs -[2018-02-13T08:34:05.950] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:34:05.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Cummer Valley Middle School and last: 278197 Touvron -[2018-02-13T08:34:05.976] [INFO] cheese - inserting 1000 documents. first: File:IntentionalTalklogo.jpg and last: Geothlypis formosa -[2018-02-13T08:34:05.989] [INFO] cheese - inserting 1000 documents. first: List of Moomin characters and last: Amt-ertl -[2018-02-13T08:34:06.048] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:34:06.066] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:34:06.068] [INFO] cheese - inserting 1000 documents. first: Saint Petersburg Conservatory and last: Hawk (aircraft) -[2018-02-13T08:34:06.094] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:34:06.161] [INFO] cheese - inserting 1000 documents. first: Hymenocallis duvalensis and last: John Antwi -[2018-02-13T08:34:06.252] [INFO] cheese - batch complete in: 1.402 secs -[2018-02-13T08:34:06.299] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:34:06.410] [INFO] cheese - inserting 1000 documents. first: Mandy Ashford and last: Sichuan treecreeper -[2018-02-13T08:34:06.580] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:34:06.596] [INFO] cheese - inserting 1000 documents. first: BBF3 and last: Filmweb -[2018-02-13T08:34:06.703] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:34:06.719] [INFO] cheese - inserting 1000 documents. first: Varanus nebulosus and last: The O's -[2018-02-13T08:34:06.776] [INFO] cheese - inserting 1000 documents. first: Seventh Democratic Party presidential debate, March 2016 in Flint, Michigan and last: Category:Mountain passes of Bhutan -[2018-02-13T08:34:06.789] [INFO] cheese - inserting 1000 documents. first: General Philip Rey and last: Roger Malina -[2018-02-13T08:34:06.800] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:34:06.815] [INFO] cheese - inserting 1000 documents. first: Athletics at the 1954 Central American and Caribbean Games and last: Category:Energy in Zimbabwe -[2018-02-13T08:34:06.857] [INFO] cheese - inserting 1000 documents. first: Civil Aviation Authority (Vietnam) and last: Gândul Mâței -[2018-02-13T08:34:06.857] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:06.902] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:34:06.931] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:34:06.969] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:34:07.161] [INFO] cheese - inserting 1000 documents. first: Dijkgraaf, Gelderland and last: File:David Brewer.jpg -[2018-02-13T08:34:07.219] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:34:07.226] [INFO] cheese - inserting 1000 documents. first: Yevgeniy Misyulya and last: Pochayevsko-Uspenskaya Lavra -[2018-02-13T08:34:07.361] [INFO] cheese - inserting 1000 documents. first: Norman Nicholson and last: Papilio rutulus -[2018-02-13T08:34:07.372] [INFO] cheese - inserting 1000 documents. first: Brier Creek and last: William S. Thomas -[2018-02-13T08:34:07.401] [INFO] cheese - inserting 1000 documents. first: Portuguese Basketball Premier League and last: Wikipedia:Articles for deletion/Franciscan Missionaries of Divine Compassion -[2018-02-13T08:34:07.421] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:34:07.443] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:34:07.557] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:34:07.577] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:34:07.581] [INFO] cheese - inserting 1000 documents. first: Austro-Hungarian crown and last: Multidimensional Transform -[2018-02-13T08:34:07.622] [INFO] cheese - inserting 1000 documents. first: Category:Sanz (Hasidic dynasty) and last: The Hunt (1963 film) -[2018-02-13T08:34:07.698] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:34:07.703] [INFO] cheese - inserting 1000 documents. first: Melinda's World and last: Template:HornedFrogsBBCoach -[2018-02-13T08:34:07.827] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:34:07.989] [INFO] cheese - inserting 1000 documents. first: Category:1982 in golf and last: Emilio Aldama -[2018-02-13T08:34:08.213] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:34:08.309] [INFO] cheese - batch complete in: 1.09 secs -[2018-02-13T08:34:08.502] [INFO] cheese - inserting 1000 documents. first: File:Vadim Yemelyanov.jpg and last: VSI (disambiguation) -[2018-02-13T08:34:08.560] [INFO] cheese - inserting 1000 documents. first: Pinnacle Valley and last: Template:Lebanese parliamentary election, 2005 -[2018-02-13T08:34:08.680] [INFO] cheese - batch complete in: 1.259 secs -[2018-02-13T08:34:08.686] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:34:08.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/hkcolordigital.com and last: Popular music in Latvia -[2018-02-13T08:34:08.801] [INFO] cheese - inserting 1000 documents. first: Sejong-City and last: Fred Hilton -[2018-02-13T08:34:08.822] [INFO] cheese - inserting 1000 documents. first: St. James' Way and last: Winfs Opath -[2018-02-13T08:34:08.880] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:34:08.905] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:34:08.907] [INFO] cheese - batch complete in: 1.079 secs -[2018-02-13T08:34:08.983] [INFO] cheese - inserting 1000 documents. first: White Wilderness and last: Portal:Philadelphia/Philadelphia news/July 2008 -[2018-02-13T08:34:09.044] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:34:09.117] [INFO] cheese - inserting 1000 documents. first: Breithorn and last: Wikipedia:Incomplete lists -[2018-02-13T08:34:09.126] [INFO] cheese - inserting 1000 documents. first: 332706 Karlheidlas and last: Pugachev Airport -[2018-02-13T08:34:09.185] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:34:09.199] [INFO] cheese - inserting 1000 documents. first: Harold W. Wells and last: File:Richardson Heritage Room.png -[2018-02-13T08:34:09.244] [INFO] cheese - batch complete in: 1.687 secs -[2018-02-13T08:34:09.338] [INFO] cheese - batch complete in: 1.761 secs -[2018-02-13T08:34:09.350] [INFO] cheese - inserting 1000 documents. first: The Foreign Exchange and last: Take down -[2018-02-13T08:34:09.422] [INFO] cheese - inserting 1000 documents. first: KITG and last: Lee Ju-hwan -[2018-02-13T08:34:09.477] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:34:09.521] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:34:09.604] [INFO] cheese - inserting 1000 documents. first: Derived stem and last: Micronisation -[2018-02-13T08:34:09.625] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Archdiocese of Mendoza and last: Wikipedia:Miscellany for deletion/User:Kid Hurricane -[2018-02-13T08:34:09.640] [INFO] cheese - inserting 1000 documents. first: Province No. 1 and last: 2016 IIHF World U18 Championship Division I -[2018-02-13T08:34:09.673] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:34:09.683] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:34:09.828] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:34:09.973] [INFO] cheese - inserting 1000 documents. first: Category:Singapore transport templates and last: Hauerseter-Gardermobanen -[2018-02-13T08:34:10.077] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:34:10.115] [INFO] cheese - inserting 1000 documents. first: So Much 2 Say (Take 6 album) and last: The 2009–10 PBA Season -[2018-02-13T08:34:10.172] [INFO] cheese - inserting 1000 documents. first: Takedowns and last: Nba finals -[2018-02-13T08:34:10.233] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:34:10.277] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:34:10.329] [INFO] cheese - inserting 1000 documents. first: Skagenfondene and last: File:Page from Codex, the Damascus Pentateuch.jpg -[2018-02-13T08:34:10.379] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:34:10.381] [INFO] cheese - inserting 1000 documents. first: Aimerikos and last: Hailey (given name) -[2018-02-13T08:34:10.444] [INFO] cheese - inserting 1000 documents. first: Salviati (glassmakers) and last: Wikipedia:Articles for deletion/Man glue -[2018-02-13T08:34:10.485] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:34:10.543] [INFO] cheese - inserting 1000 documents. first: Template:National sports teams of Switzerland and last: Premium e-mail -[2018-02-13T08:34:10.591] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:10.691] [INFO] cheese - batch complete in: 1.169 secs -[2018-02-13T08:34:10.699] [INFO] cheese - inserting 1000 documents. first: Eureka Flag and last: The Surgeon's Mate (novel) -[2018-02-13T08:34:10.782] [INFO] cheese - inserting 1000 documents. first: Doc Elliott and last: Template:Philadelphia 76ers 1982-83 NBA champions -[2018-02-13T08:34:10.843] [INFO] cheese - batch complete in: 1.598 secs -[2018-02-13T08:34:10.883] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:34:11.053] [INFO] cheese - inserting 1000 documents. first: Château de Pornic and last: Dihydroxynaphthoquinone -[2018-02-13T08:34:11.102] [INFO] cheese - inserting 1000 documents. first: Enharmonic note and last: Collaboration (Shorty Rogers and André Previn album) -[2018-02-13T08:34:11.166] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:34:11.242] [INFO] cheese - inserting 1000 documents. first: Neureichenau and last: Category:1919 in film -[2018-02-13T08:34:11.304] [INFO] cheese - inserting 1000 documents. first: File:The-music-of-christmas.scc.jpg and last: CPF6 -[2018-02-13T08:34:11.311] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:34:11.377] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:34:11.429] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:34:11.510] [INFO] cheese - inserting 1000 documents. first: José Fuentes Mares National Prize for Literature and last: Evci, Ayaş -[2018-02-13T08:34:11.585] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:34:11.677] [INFO] cheese - inserting 1000 documents. first: Rueter-Hess Reservoir (project) and last: Template:All India Rashtriya Janata Party/meta/shortname -[2018-02-13T08:34:11.744] [INFO] cheese - inserting 1000 documents. first: Template:Philadelphia Warriors 1946-47 BAA champions and last: Michigan Grrrowl -[2018-02-13T08:34:11.761] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:34:11.827] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:34:11.885] [INFO] cheese - inserting 1000 documents. first: Ashéninga language and last: Nakhtmin (charioteer) -[2018-02-13T08:34:11.946] [INFO] cheese - inserting 1000 documents. first: File:Toyah dreamchild.jpg and last: Han Yin -[2018-02-13T08:34:11.965] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:34:12.021] [INFO] cheese - inserting 1000 documents. first: The Nutmeg of Consolation (novel) and last: Ain't Misbehaving -[2018-02-13T08:34:12.041] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:34:12.082] [INFO] cheese - inserting 1000 documents. first: Simple Certificate Enrollment Protocol and last: File:Spidertrike.jpg -[2018-02-13T08:34:12.121] [INFO] cheese - inserting 1000 documents. first: Feruz, Ayaş and last: Category:Schools in Wakefield District -[2018-02-13T08:34:12.155] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T08:34:12.218] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:34:12.232] [INFO] cheese - inserting 1000 documents. first: Stoney Point (Le Cunff) Airport and last: Wikipedia:Featured article candidates/never proposal -[2018-02-13T08:34:12.196] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:12.346] [INFO] cheese - inserting 1000 documents. first: File:Kennedy Center Ribbon.svg and last: Robert Kemeys Thomas -[2018-02-13T08:34:12.416] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:34:12.489] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:34:12.710] [INFO] cheese - inserting 1000 documents. first: Devil guts and last: Draft:Presidential Preference Election -[2018-02-13T08:34:12.750] [INFO] cheese - inserting 1000 documents. first: Domination (Domino album) and last: Template:Cambrian substrate revolution/doc -[2018-02-13T08:34:12.778] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:12.817] [INFO] cheese - inserting 1000 documents. first: Liang Gang and last: Rolandylis -[2018-02-13T08:34:12.904] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:34:12.931] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:34:12.992] [INFO] cheese - inserting 1000 documents. first: TEPCO and last: Template:Cr icon -[2018-02-13T08:34:13.051] [INFO] cheese - inserting 1000 documents. first: Lake Karachay and last: Category:Norwegian biologists -[2018-02-13T08:34:13.077] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:34:13.095] [INFO] cheese - inserting 1000 documents. first: Seticosta chlorothicta and last: Brighton by-election, 1914 -[2018-02-13T08:34:13.128] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:34:13.153] [INFO] cheese - inserting 1000 documents. first: Hail To The Chief and last: Vodyanoi -[2018-02-13T08:34:13.210] [INFO] cheese - inserting 1000 documents. first: Vaginal microbicide and last: Icelandic Modern Media Initiative -[2018-02-13T08:34:13.209] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:34:13.283] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:34:13.320] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:34:13.333] [INFO] cheese - inserting 1000 documents. first: File:2003 Carolina Dodge Dealers 400 finish.jpg and last: Oţelul Galaţi -[2018-02-13T08:34:13.349] [INFO] cheese - inserting 1000 documents. first: File:Afro-Cuban Influence.jpg and last: Streptomyces prunicolor -[2018-02-13T08:34:13.402] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:34:13.471] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:34:13.501] [INFO] cheese - inserting 1000 documents. first: Jarque-Bera and last: Movable Cellular Automata -[2018-02-13T08:34:13.566] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:34:13.770] [INFO] cheese - inserting 1000 documents. first: Elements Of Life (album) and last: Montgomery County High School -[2018-02-13T08:34:13.855] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:34:13.892] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/adondeirhoy.com and last: Khirkiqocha -[2018-02-13T08:34:13.913] [INFO] cheese - inserting 1000 documents. first: Template:User OS:Solaris and last: Niagara Parks Commission -[2018-02-13T08:34:14.045] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:34:14.078] [INFO] cheese - inserting 1000 documents. first: South Korean films of 1976 and last: Gaith Abdul-Ghani -[2018-02-13T08:34:14.095] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:34:14.150] [INFO] cheese - inserting 1000 documents. first: Lodekka (Music) and last: Category:Sexism in Canada -[2018-02-13T08:34:14.218] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:34:14.285] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:14.336] [INFO] cheese - inserting 1000 documents. first: Joseph Thunder and last: Category:Frisia articles needing attention -[2018-02-13T08:34:14.451] [INFO] cheese - inserting 1000 documents. first: Template:Los Angeles Buccaneers coach navbox and last: Cognitive Neuroscience of Disgust -[2018-02-13T08:34:14.479] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:34:14.575] [INFO] cheese - batch complete in: 1.009 secs -[2018-02-13T08:34:14.653] [INFO] cheese - inserting 1000 documents. first: Regnitzlosau and last: Edward Algernon FitzRoy -[2018-02-13T08:34:14.683] [INFO] cheese - inserting 1000 documents. first: Orville Faubus and last: Clifford Jarvis -[2018-02-13T08:34:14.742] [INFO] cheese - inserting 1000 documents. first: Category:Mixed martial arts in Oceania and last: Wikipedia:WikiProject Spam/Local/25cineframes.com -[2018-02-13T08:34:14.747] [INFO] cheese - inserting 1000 documents. first: Category:Scientists from Meghalaya and last: Lupercalia ignita -[2018-02-13T08:34:14.752] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:34:14.783] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:34:14.803] [INFO] cheese - batch complete in: 1.519 secs -[2018-02-13T08:34:14.893] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:34:14.952] [INFO] cheese - inserting 1000 documents. first: Lotf 'Ali Khan and last: Category:En Vogue albums -[2018-02-13T08:34:15.071] [INFO] cheese - inserting 1000 documents. first: Clay Office and Conference Center and last: KCVL -[2018-02-13T08:34:15.071] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:34:15.136] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dashes.js and last: Typhoon Yancy (Gading) -[2018-02-13T08:34:15.164] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:34:15.200] [INFO] cheese - inserting 1000 documents. first: Honored Artist and last: John Bollard (politician) -[2018-02-13T08:34:15.213] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:15.275] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:34:15.421] [INFO] cheese - inserting 1000 documents. first: File:Active voltage-to-current 1000.jpg and last: Category:Unknown-importance Israel-related articles -[2018-02-13T08:34:15.445] [INFO] cheese - inserting 1000 documents. first: German submarine U-1104 and last: Wikipedia:Miscellany for deletion/Draft:Collage -[2018-02-13T08:34:15.521] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:34:15.576] [INFO] cheese - inserting 1000 documents. first: Category:Tropidomarga and last: MV Stena Shipper -[2018-02-13T08:34:15.605] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:34:15.629] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:34:15.839] [INFO] cheese - inserting 1000 documents. first: Differential dynamic programming and last: Lysichiton camtschatcensis -[2018-02-13T08:34:15.847] [INFO] cheese - inserting 1000 documents. first: File:Les Bijoux v1.jpg and last: AbcFamily -[2018-02-13T08:34:15.976] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:15.977] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:16.043] [INFO] cheese - inserting 1000 documents. first: Kemijärvi and last: Arcadia (disambiguation) -[2018-02-13T08:34:16.192] [INFO] cheese - inserting 1000 documents. first: Sportcity Metrolink station and last: File:NBprovincialElectoralDistricts.PNG -[2018-02-13T08:34:16.294] [INFO] cheese - inserting 1000 documents. first: Aquaspirillum fasciculus and last: Category:Roman Catholic churches completed in 1711 -[2018-02-13T08:34:16.312] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:34:16.375] [INFO] cheese - inserting 1000 documents. first: Cardenolides and last: Wikipedia:Articles for deletion/Pawel Plaszczak -[2018-02-13T08:34:16.377] [INFO] cheese - batch complete in: 1.574 secs -[2018-02-13T08:34:16.568] [INFO] cheese - batch complete in: 1.047 secs -[2018-02-13T08:34:16.485] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:34:16.662] [INFO] cheese - inserting 1000 documents. first: Democratic Socialist Coalition and last: Wikipedia:WikiProject Spam/LinkReports/chosimsodep.com -[2018-02-13T08:34:16.695] [INFO] cheese - inserting 1000 documents. first: Sprawl position and last: National Register of Historic Places listings in Vermont -[2018-02-13T08:34:16.764] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:34:16.826] [INFO] cheese - batch complete in: 1.755 secs -[2018-02-13T08:34:16.869] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nomad-mytravel.blogspot.com and last: Celeste West -[2018-02-13T08:34:16.930] [INFO] cheese - inserting 1000 documents. first: Measurement of a Circle and last: Chalin, Kuyavian-Pomeranian Voivodeship -[2018-02-13T08:34:16.959] [INFO] cheese - batch complete in: 0.983 secs -[2018-02-13T08:34:17.007] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:34:17.086] [INFO] cheese - inserting 1000 documents. first: Category:Vietnamese officials and last: Category:Rolando -[2018-02-13T08:34:17.119] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marcin Chumiecki and last: Peter Nedved -[2018-02-13T08:34:17.132] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:34:17.166] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic churches completed in 1710 and last: Wikipedia:Articles for deletion/Fingon -[2018-02-13T08:34:17.177] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:34:17.236] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:34:17.263] [INFO] cheese - inserting 1000 documents. first: Alpine skiing at the 1960 Winter Olympics – Men's giant slalom and last: Red Pencil protest -[2018-02-13T08:34:17.332] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:34:17.396] [INFO] cheese - inserting 1000 documents. first: Bas-Uele and last: Robert Casey (disambiguation) -[2018-02-13T08:34:17.435] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:34:17.460] [INFO] cheese - inserting 1000 documents. first: Yaroslav III of Kiev and last: Forced-vortex -[2018-02-13T08:34:17.467] [INFO] cheese - inserting 1000 documents. first: Phyllis George and last: Hsü Shih-Ch'ang -[2018-02-13T08:34:17.496] [INFO] cheese - inserting 1000 documents. first: Chalin-Kolonia and last: Ruprecht Gerngroß -[2018-02-13T08:34:17.542] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:34:17.583] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:34:17.613] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:34:17.682] [INFO] cheese - inserting 1000 documents. first: Category:People from Sribne Raion and last: Destiny: World Domination from Stone Age to Space Age -[2018-02-13T08:34:17.766] [INFO] cheese - inserting 1000 documents. first: London Taxi: Rushour and last: Mulbarton, Norfolk -[2018-02-13T08:34:17.794] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:34:17.846] [INFO] cheese - inserting 1000 documents. first: Oberes Wesertal and last: Yokota Shōkai -[2018-02-13T08:34:17.870] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:34:17.927] [INFO] cheese - inserting 1000 documents. first: Paul O'Grady's Animal Orphans and last: House of Mgeladze -[2018-02-13T08:34:17.931] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:34:18.010] [INFO] cheese - inserting 1000 documents. first: Rodriguan (disambiguation) and last: Wikipedia:WikiProject Dispute Resolution/Proposals/Content Committee -[2018-02-13T08:34:18.015] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:34:18.061] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:34:18.180] [INFO] cheese - inserting 1000 documents. first: Ray Brown (offensive lineman) and last: Category:Memphis Tigers football -[2018-02-13T08:34:18.217] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:34:18.221] [INFO] cheese - inserting 1000 documents. first: Aban (urban-type settlement) and last: Category:July 2008 peer reviews -[2018-02-13T08:34:18.273] [INFO] cheese - inserting 1000 documents. first: Moon Studios and last: MUOS-1 -[2018-02-13T08:34:18.328] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:34:18.363] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:34:18.459] [INFO] cheese - inserting 1000 documents. first: Fuchstal and last: 383 in Ireland -[2018-02-13T08:34:18.462] [INFO] cheese - inserting 1000 documents. first: Category:Spanish publishers (people) and last: Chesmenskii Raion -[2018-02-13T08:34:18.535] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:34:18.552] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:34:18.570] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia requested photographs in Baldwin County, Alabama and last: Wikipedia:Goings-on/January 5, 2014 -[2018-02-13T08:34:18.644] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:34:18.689] [INFO] cheese - inserting 1000 documents. first: Hsü Shihch'ang and last: Pu Chou Mountain -[2018-02-13T08:34:18.727] [INFO] cheese - inserting 1000 documents. first: Aleksandra Wasowicz and last: Laspeyresia ibeeliana -[2018-02-13T08:34:18.884] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:34:18.921] [INFO] cheese - inserting 1000 documents. first: Piz Tasna and last: Élégie (ballet) -[2018-02-13T08:34:18.934] [INFO] cheese - batch complete in: 1.32 secs -[2018-02-13T08:34:18.983] [INFO] cheese - inserting 1000 documents. first: Category:Churches completed in 1580 and last: Reti Film -[2018-02-13T08:34:18.985] [INFO] cheese - inserting 1000 documents. first: Portal:Law/Picture/Week 19 2006 and last: Hills (store) -[2018-02-13T08:34:19.096] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:34:19.128] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:34:19.146] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:34:19.234] [INFO] cheese - inserting 1000 documents. first: Bassano (photographers) and last: Anonimo veneziano -[2018-02-13T08:34:19.242] [INFO] cheese - inserting 1000 documents. first: Category:Here! original productions and last: Category:A-Class Melanesia articles -[2018-02-13T08:34:19.281] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:34:19.319] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:34:19.369] [INFO] cheese - inserting 1000 documents. first: File:Jewish Bakers Voice cover.jpg and last: Weather Machine (sculpture) -[2018-02-13T08:34:19.459] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:34:19.607] [INFO] cheese - inserting 1000 documents. first: Lopho and last: Tri-Cities Prep Highschool (Pasco, Washington) -[2018-02-13T08:34:19.656] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:34:19.691] [INFO] cheese - inserting 1000 documents. first: Ambovombe and last: Pat Broderick -[2018-02-13T08:34:19.716] [INFO] cheese - inserting 1000 documents. first: Dambyn Tömörtsog and last: Draft:YouTheology -[2018-02-13T08:34:19.780] [INFO] cheese - inserting 1000 documents. first: Party Unity My Ass and last: Wikipedia:WikiProject U.S. Roads/Utah/Mines -[2018-02-13T08:34:19.782] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:34:19.788] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/purplecirclesband.co.uk and last: Valley of Decision (disambiguation) -[2018-02-13T08:34:19.791] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Metros of the former Soviet Union articles and last: Fort Hunt Park -[2018-02-13T08:34:19.792] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:34:19.885] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:34:19.895] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:34:19.903] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:34:19.943] [INFO] cheese - inserting 1000 documents. first: List of geological features on Rhea and last: Telcordia LERG Routing Guide -[2018-02-13T08:34:20.035] [INFO] cheese - inserting 1000 documents. first: Category:Sri Lankan Chetty people by occupation and last: Wikipedia:Articles for deletion/5 Wits -[2018-02-13T08:34:20.183] [INFO] cheese - batch complete in: 1.249 secs -[2018-02-13T08:34:20.202] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:34:20.377] [INFO] cheese - inserting 1000 documents. first: Category:Chinese Taipei at the World Aquatics Championships and last: Pierre Affre -[2018-02-13T08:34:20.487] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Debian Free Software Guidelines and last: Large Print Books -[2018-02-13T08:34:20.475] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:20.541] [INFO] cheese - inserting 1000 documents. first: File:In Vanda's Room FilmPoster.jpeg and last: Svetozar Šapurić -[2018-02-13T08:34:20.584] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:34:20.622] [INFO] cheese - inserting 1000 documents. first: Joe Frank (american football) and last: Tafersit -[2018-02-13T08:34:20.629] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:20.702] [INFO] cheese - inserting 1000 documents. first: Corporation of Dun Laoghaire and last: Francois Labbé -[2018-02-13T08:34:20.731] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:34:20.764] [INFO] cheese - inserting 1000 documents. first: Template:User Legitimate Regime in Iran and last: Milla, Burkina Faso -[2018-02-13T08:34:20.831] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:34:20.843] [INFO] cheese - inserting 1000 documents. first: Leslie Cornfeld and last: Category:Former State Roads in Hernando County, Florida -[2018-02-13T08:34:20.871] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:34:20.949] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:34:21.070] [INFO] cheese - inserting 1000 documents. first: Okhla railway station and last: Wikipedia:Articles for deletion/Sex scandals in local schools (Hong Kong) -[2018-02-13T08:34:21.095] [INFO] cheese - inserting 1000 documents. first: Salicylic acid (plant hormone) and last: List of Perth suburbs -[2018-02-13T08:34:21.145] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:34:21.198] [INFO] cheese - inserting 1000 documents. first: 0.999999999999999999999 and last: Jack Russell (character) -[2018-02-13T08:34:21.248] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:34:21.264] [INFO] cheese - inserting 1000 documents. first: Ascenção E Queda de um Paquera and last: Testify, Parts 1 and 2 -[2018-02-13T08:34:21.339] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:34:21.479] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:34:21.538] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Check Wikipedia/Error 019 whitelist and last: Visa policy of the British Overseas Territories -[2018-02-13T08:34:21.634] [INFO] cheese - inserting 1000 documents. first: Hans Androschin and last: Category:Financial services companies of Peru -[2018-02-13T08:34:21.657] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:34:21.667] [INFO] cheese - inserting 1000 documents. first: Andrew jarvis and last: Hou (currency) -[2018-02-13T08:34:21.685] [INFO] cheese - inserting 1000 documents. first: Cyclostyle (copier) and last: Gombak River -[2018-02-13T08:34:21.704] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:34:21.792] [INFO] cheese - batch complete in: 1.061 secs -[2018-02-13T08:34:21.879] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:34:22.011] [INFO] cheese - inserting 1000 documents. first: Illinois Central Passenger Depot-Storm Lake and last: Template:Did you know nominations/Something Beautiful (Jordan Smith album) -[2018-02-13T08:34:22.132] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:34:22.203] [INFO] cheese - inserting 1000 documents. first: Idalus simplex and last: Estonia national football team results -[2018-02-13T08:34:22.301] [INFO] cheese - inserting 1000 documents. first: 1079 in art and last: Category:C-Class Tibet articles -[2018-02-13T08:34:22.317] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:34:22.321] [INFO] cheese - inserting 1000 documents. first: Deining and last: Rahovart -[2018-02-13T08:34:22.399] [INFO] cheese - inserting 1000 documents. first: Mobile BayBears and last: GNFS -[2018-02-13T08:34:22.389] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:34:22.458] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:34:22.572] [INFO] cheese - inserting 1000 documents. first: Sweet verbena-tree and last: EC 1.1.1.17 -[2018-02-13T08:34:22.585] [INFO] cheese - batch complete in: 1.337 secs -[2018-02-13T08:34:22.659] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:34:22.676] [INFO] cheese - inserting 1000 documents. first: Automobilclub von Deutschland and last: Template:US-electronic-band-stub -[2018-02-13T08:34:22.748] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:34:22.779] [INFO] cheese - inserting 1000 documents. first: Little Things (Oak Ridge Boys song) and last: Santa Fina -[2018-02-13T08:34:22.816] [INFO] cheese - inserting 1000 documents. first: Macau Baptist Convention and last: Ödön Tersztyánszky -[2018-02-13T08:34:22.865] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T08:34:22.898] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:34:23.016] [INFO] cheese - inserting 1000 documents. first: Glidecam and last: Mazra'eh-ye Khodabandehlu -[2018-02-13T08:34:23.043] [INFO] cheese - inserting 1000 documents. first: Benedict Nicolson and last: Miller Reese Hutchison -[2018-02-13T08:34:23.061] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:34:23.079] [INFO] cheese - inserting 1000 documents. first: EC 1.3.1.63 and last: Otrokovice railway station -[2018-02-13T08:34:23.134] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:34:23.162] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:34:23.304] [INFO] cheese - inserting 1000 documents. first: Theory of rent and last: OVS language -[2018-02-13T08:34:23.414] [INFO] cheese - batch complete in: 1.934 secs -[2018-02-13T08:34:23.418] [INFO] cheese - inserting 1000 documents. first: Behelit and last: Adelanto, CA -[2018-02-13T08:34:23.531] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:34:23.544] [INFO] cheese - inserting 1000 documents. first: Doo rag and last: 3 count -[2018-02-13T08:34:23.547] [INFO] cheese - inserting 1000 documents. first: Democracy 250 and last: MacAdams -[2018-02-13T08:34:23.577] [INFO] cheese - inserting 1000 documents. first: Holophaea eurytorna and last: Category:River islands of Washington (state) -[2018-02-13T08:34:23.604] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:34:23.657] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:34:23.724] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:34:23.836] [INFO] cheese - inserting 1000 documents. first: Australasian College of Health Informatics and last: Philadelphia Phillie -[2018-02-13T08:34:23.886] [INFO] cheese - inserting 1000 documents. first: Gridapp and last: File:Liberator250.jpg -[2018-02-13T08:34:23.949] [INFO] cheese - batch complete in: 1.05 secs -[2018-02-13T08:34:24.022] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:34:24.070] [INFO] cheese - inserting 1000 documents. first: Bibliotheca scriptorium graecorum et romanorum teubneriana and last: Category:2005 establishments in North Dakota -[2018-02-13T08:34:24.108] [INFO] cheese - inserting 1000 documents. first: Weekend Breakfast and last: Friedrich-Märker-Preis -[2018-02-13T08:34:24.150] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:34:24.220] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:34:24.278] [INFO] cheese - inserting 1000 documents. first: Template:Current Senate crossbench and last: Alexander Mackenzie of Kintail -[2018-02-13T08:34:24.378] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:24.520] [INFO] cheese - inserting 1000 documents. first: Emily Pauline Johnson and last: Allensville, KY -[2018-02-13T08:34:24.544] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/fcmb.com and last: Yanıkhan -[2018-02-13T08:34:24.627] [INFO] cheese - batch complete in: 0.903 secs -[2018-02-13T08:34:24.662] [INFO] cheese - batch complete in: 1.131 secs -[2018-02-13T08:34:24.707] [INFO] cheese - inserting 1000 documents. first: Phalaena astrea and last: Mechanics Hall, Worcester -[2018-02-13T08:34:24.714] [INFO] cheese - inserting 1000 documents. first: Tarascosaurus and last: IHCOYC XPICTOC -[2018-02-13T08:34:24.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mister Iraq and last: File:SIGIR logo.jpg -[2018-02-13T08:34:24.785] [INFO] cheese - inserting 1000 documents. first: Category:User yue-hk-3 and last: Category:Abbots of Czerwińsk -[2018-02-13T08:34:24.794] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:34:24.857] [INFO] cheese - inserting 1000 documents. first: File:Maavichiguru.jpg and last: Eastern correa -[2018-02-13T08:34:24.861] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:34:24.873] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:34:24.919] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:34:24.968] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:34:25.164] [INFO] cheese - inserting 1000 documents. first: List of Fossil Parks and last: ÖT -[2018-02-13T08:34:25.224] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:34:25.277] [INFO] cheese - inserting 1000 documents. first: Lena Smedsaas and last: Sophia Batchelor -[2018-02-13T08:34:25.351] [INFO] cheese - inserting 1000 documents. first: Skybuilt Power and last: U.S. Route 641 in Tennessee -[2018-02-13T08:34:25.368] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:34:25.404] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:34:25.426] [INFO] cheese - inserting 1000 documents. first: Allenton, MI and last: Damgalnunna -[2018-02-13T08:34:25.504] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:34:25.584] [INFO] cheese - inserting 1000 documents. first: Harold Cox and last: Wikipedia:Version 1.0 Editorial Team/Brazil articles by quality log -[2018-02-13T08:34:25.608] [INFO] cheese - inserting 1000 documents. first: Roundleaf correa and last: List of Braniff International Airways destinations -[2018-02-13T08:34:25.681] [INFO] cheese - inserting 1000 documents. first: File:Alderbrook Winery.jpg and last: List of Churchill Brothers S.C. managers -[2018-02-13T08:34:25.739] [INFO] cheese - inserting 1000 documents. first: Palm Atlantis and last: Myint Swe (general) -[2018-02-13T08:34:25.747] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:34:25.755] [INFO] cheese - inserting 1000 documents. first: 1965–66 NBA season and last: Cabot Tower -[2018-02-13T08:34:25.763] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:34:25.801] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:34:25.883] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:34:25.882] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:34:26.150] [INFO] cheese - inserting 1000 documents. first: Lo Nuestro Award for Salsa Artist of the Year and last: File:Sungai Ara FC.png -[2018-02-13T08:34:26.161] [INFO] cheese - inserting 1000 documents. first: Mayonaisse and last: Xiāoshān Qū -[2018-02-13T08:34:26.198] [INFO] cheese - inserting 1000 documents. first: List of Brit Air destinations and last: Carlsson, Daniel -[2018-02-13T08:34:26.207] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:34:26.261] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:34:26.304] [INFO] cheese - inserting 1000 documents. first: Evelyn nesbit thaw and last: Makrihorion, Greece -[2018-02-13T08:34:26.328] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:34:26.394] [INFO] cheese - inserting 1000 documents. first: Episodes of the big bang theory and last: List of FIS Nordic World Ski Championships medalists in nordic combined -[2018-02-13T08:34:26.434] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:34:26.458] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:34:26.539] [INFO] cheese - inserting 1000 documents. first: Unplugged (Alice in Chains album) and last: List of academic statistical associations -[2018-02-13T08:34:26.619] [INFO] cheese - inserting 1000 documents. first: Eugene-Springfield and last: Familialism -[2018-02-13T08:34:26.657] [INFO] cheese - inserting 1000 documents. first: Westinghouse Electric Corporation of 1886 and last: Maria Jelinek -[2018-02-13T08:34:26.693] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:34:26.733] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:34:26.767] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:34:26.866] [INFO] cheese - inserting 1000 documents. first: Tutti i colori del silenzio and last: File:Back soon on NT.jpg -[2018-02-13T08:34:26.894] [INFO] cheese - inserting 1000 documents. first: Carlsson, Johan and last: Ruth Margery Addoms -[2018-02-13T08:34:26.957] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:34:26.994] [INFO] cheese - inserting 1000 documents. first: Duncan Potts and last: File:Assyriska goteborg.svg -[2018-02-13T08:34:27.000] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:34:27.051] [INFO] cheese - inserting 1000 documents. first: Makrihorio, Greece and last: Category:Members of the École de Nancy -[2018-02-13T08:34:27.062] [INFO] cheese - inserting 1000 documents. first: Category:Dakota and last: Kunwarjibhai Bavaliya -[2018-02-13T08:34:27.097] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:34:27.225] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:34:27.233] [INFO] cheese - batch complete in: 0.799 secs -[2018-02-13T08:34:27.484] [INFO] cheese - inserting 1000 documents. first: Category:RNK Split players and last: Category:Lists of universities and colleges in Africa -[2018-02-13T08:34:27.503] [INFO] cheese - inserting 1000 documents. first: FK Senta and last: R.A.Chandrasena -[2018-02-13T08:34:27.526] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:34:27.579] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:34:27.605] [INFO] cheese - inserting 1000 documents. first: JHQ Rheindahlen bombing 1987 and last: File:Goodwins logo.jpg -[2018-02-13T08:34:27.605] [INFO] cheese - inserting 1000 documents. first: Tanzania at the 2000 Summer Olympics and last: Joachim van den Hove -[2018-02-13T08:34:27.611] [INFO] cheese - inserting 1000 documents. first: Nerea Pérez Machado and last: Island Verditer-flycatcher -[2018-02-13T08:34:27.651] [INFO] cheese - inserting 1000 documents. first: Dinosaur mummy and last: Wikipedia:Version 1.0 Editorial Team/Kurdistan articles by quality -[2018-02-13T08:34:27.663] [INFO] cheese - inserting 1000 documents. first: Florida State Road 270 (pre-1945) and last: Christopher Cumingham -[2018-02-13T08:34:27.671] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:34:27.675] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:34:27.709] [INFO] cheese - batch complete in: 0.941 secs -[2018-02-13T08:34:27.734] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:34:27.775] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:34:27.848] [INFO] cheese - inserting 1000 documents. first: Maeterlinck and last: Langnau -[2018-02-13T08:34:27.950] [INFO] cheese - batch complete in: 1.217 secs -[2018-02-13T08:34:28.098] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Australia and last: Tsuchitaru Station -[2018-02-13T08:34:28.143] [INFO] cheese - inserting 1000 documents. first: Category:People from Selkirk, Scottish Borders and last: Suzugamine Women's College -[2018-02-13T08:34:28.144] [INFO] cheese - inserting 1000 documents. first: Dull Verditer-flycatcher and last: Category:Bora–Witoto languages -[2018-02-13T08:34:28.164] [INFO] cheese - inserting 1000 documents. first: File:Rydale Clothing Logo.jpeg and last: Category:San Pablo Bay -[2018-02-13T08:34:28.164] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:34:28.208] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:34:28.350] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:34:28.440] [INFO] cheese - inserting 1000 documents. first: Finger stool and last: Ludwig von Siegen -[2018-02-13T08:34:28.458] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:34:28.496] [INFO] cheese - inserting 1000 documents. first: Category:People from Venlo and last: Macular pucker -[2018-02-13T08:34:28.501] [INFO] cheese - inserting 1000 documents. first: Category:Eastern Catholic cathedrals in the United States and last: SnowyHydro SouthCare -[2018-02-13T08:34:28.582] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:34:28.604] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:34:28.614] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:34:28.909] [INFO] cheese - inserting 1000 documents. first: List of number-one rhythm and blues hits (UK) and last: Ahmed and Salim -[2018-02-13T08:34:28.964] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:34:29.020] [INFO] cheese - inserting 1000 documents. first: Boltus and last: Holy Cross Abbey, Thurles -[2018-02-13T08:34:29.064] [INFO] cheese - inserting 1000 documents. first: Category:Ghana–Togo Mountain languages and last: Prince of Wales International Centre for Research into Schizophrenia and Depression -[2018-02-13T08:34:29.081] [INFO] cheese - inserting 1000 documents. first: Victor Keyru and last: Nereus (nuclear reactor) -[2018-02-13T08:34:29.115] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:34:29.145] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:34:29.215] [INFO] cheese - batch complete in: 1.007 secs -[2018-02-13T08:34:29.237] [INFO] cheese - inserting 1000 documents. first: Southampton brass band and last: CONMEBOL Jubilee Awards -[2018-02-13T08:34:29.268] [INFO] cheese - inserting 1000 documents. first: East Fairfield and last: William Ormand Mitchell -[2018-02-13T08:34:29.288] [INFO] cheese - inserting 1000 documents. first: Sun Certified Business Component Developer and last: Template:Trinidad and Tobago legislative election, 2007 -[2018-02-13T08:34:29.322] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:34:29.377] [INFO] cheese - batch complete in: 1.426 secs -[2018-02-13T08:34:29.386] [INFO] cheese - inserting 1000 documents. first: Lake June in Winter and last: Widnes War Memorial -[2018-02-13T08:34:29.395] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:29.533] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:34:29.683] [INFO] cheese - inserting 1000 documents. first: Adaži and last: Michael Buckley (professor) -[2018-02-13T08:34:29.747] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:34:29.902] [INFO] cheese - inserting 1000 documents. first: Sqeezer and last: File:DaddyDearest2016TVB.jpg -[2018-02-13T08:34:29.918] [INFO] cheese - inserting 1000 documents. first: Isøyane Bird Sanctuary and last: Category:Girls Next Door songs -[2018-02-13T08:34:29.976] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:34:29.985] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:34:30.151] [INFO] cheese - inserting 1000 documents. first: Don´t repeat yourself and last: Plast -[2018-02-13T08:34:30.164] [INFO] cheese - inserting 1000 documents. first: The People's Quiz and last: Superbowl I -[2018-02-13T08:34:30.180] [INFO] cheese - inserting 1000 documents. first: Mountains (EP) and last: Nagasako Takashi -[2018-02-13T08:34:30.197] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:34:30.261] [INFO] cheese - inserting 1000 documents. first: Gravity feed and last: Everything Will Be Fine -[2018-02-13T08:34:30.260] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:34:30.273] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:34:30.330] [INFO] cheese - inserting 1000 documents. first: The Talking Machine News and last: Maria Falcione -[2018-02-13T08:34:30.363] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:34:30.435] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:34:30.477] [INFO] cheese - inserting 1000 documents. first: William Ormond Mitchell and last: Fender Musical Instruments Corporation -[2018-02-13T08:34:30.589] [INFO] cheese - inserting 1000 documents. first: Özge Özel and last: Alan Bourne -[2018-02-13T08:34:30.602] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:34:30.620] [INFO] cheese - inserting 1000 documents. first: William O'Byrne and last: United Nations Security Council Resolution 1806 -[2018-02-13T08:34:30.640] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:34:30.712] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:34:30.851] [INFO] cheese - inserting 1000 documents. first: 46th parallel south and last: Penn Station (Baltimore Light Rail station) -[2018-02-13T08:34:30.947] [INFO] cheese - inserting 1000 documents. first: Category:Bosniaks of Serbia and last: File:RobinDVD.png -[2018-02-13T08:34:30.967] [INFO] cheese - inserting 1000 documents. first: Jullunder and last: Tapanui Branch -[2018-02-13T08:34:30.967] [INFO] cheese - inserting 1000 documents. first: Order of Battle of the Battle of Lanfeng and last: Gudbrandur Torlaksson -[2018-02-13T08:34:30.992] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:34:31.029] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:34:31.030] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:34:31.095] [INFO] cheese - inserting 1000 documents. first: Kobus Vandenberg and last: Harold Y. McSween -[2018-02-13T08:34:31.126] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:31.170] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:31.336] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Black Lunch Table/April 2016 New Orleans and last: Category:Footballers from Baden-Württemberg -[2018-02-13T08:34:31.363] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:34:31.403] [INFO] cheese - inserting 1000 documents. first: Template:Ben Aaronovitch and last: Cozumel Island raccoon -[2018-02-13T08:34:31.516] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:34:31.636] [INFO] cheese - inserting 1000 documents. first: M'um and last: Wikipedia:Articles for deletion/Undercut Productions -[2018-02-13T08:34:31.652] [INFO] cheese - inserting 1000 documents. first: Gyula Valyi and last: The Biggest Loser Australia 2006 -[2018-02-13T08:34:31.720] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:34:31.813] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:34:31.821] [INFO] cheese - inserting 1000 documents. first: Category:FL-Class filmmaking articles and last: C 52 -[2018-02-13T08:34:31.900] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/2014 January 11 and last: Template:2004DutchOlympicSailingTeam -[2018-02-13T08:34:31.900] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Groundswell (book) and last: Medija Thermal Spa -[2018-02-13T08:34:31.954] [INFO] cheese - inserting 1000 documents. first: Chambered nautilus and last: Tillamook Cheese Factory -[2018-02-13T08:34:31.985] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:34:32.028] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:34:32.058] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:34:32.141] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Greene County, Indiana and last: Smilus -[2018-02-13T08:34:32.154] [INFO] cheese - batch complete in: 1.552 secs -[2018-02-13T08:34:32.251] [INFO] cheese - inserting 1000 documents. first: Test of Written English and last: Galehband -[2018-02-13T08:34:32.250] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:34:32.359] [INFO] cheese - batch complete in: 0.843 secs -[2018-02-13T08:34:32.517] [INFO] cheese - inserting 1000 documents. first: Template:Age in months/doc and last: MBRL -[2018-02-13T08:34:32.614] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:34:32.674] [INFO] cheese - inserting 1000 documents. first: File:Hotel-school-in-switzerland.jpg and last: Ivan Farmakovsky -[2018-02-13T08:34:32.694] [INFO] cheese - inserting 1000 documents. first: Norman Taber and last: Wikipedia:Articles for deletion/DiggFans -[2018-02-13T08:34:32.762] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:34:32.810] [INFO] cheese - inserting 1000 documents. first: Talmei Yaffe and last: Yuca fries -[2018-02-13T08:34:32.814] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:34:32.908] [INFO] cheese - inserting 1000 documents. first: Galleh Band and last: File:Huabiao Award.gif -[2018-02-13T08:34:32.911] [INFO] cheese - inserting 1000 documents. first: Category:2014 Pacific typhoon season and last: Sack of Salona -[2018-02-13T08:34:32.918] [INFO] cheese - inserting 1000 documents. first: Category:Electoral reform in Wales and last: Jeekel -[2018-02-13T08:34:32.919] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:34:32.991] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:34:33.018] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:34:33.025] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:33.156] [INFO] cheese - inserting 1000 documents. first: Dolby Digital EX and last: Category:Chubu region -[2018-02-13T08:34:33.260] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:34:33.309] [INFO] cheese - inserting 1000 documents. first: Burton Drayer and last: History of Sullivan County, New York -[2018-02-13T08:34:33.364] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:34:33.490] [INFO] cheese - inserting 1000 documents. first: Bookmark image and last: List of Bartimaeus characters -[2018-02-13T08:34:33.525] [INFO] cheese - inserting 1000 documents. first: First Baptist Church of Tarrytown (Tarrytown, New York) and last: Category:Tourist attractions in Franklin County, Kentucky -[2018-02-13T08:34:33.530] [INFO] cheese - inserting 1000 documents. first: History of Vietnamese Americans in Boston and last: File:Encore 1996.jpg -[2018-02-13T08:34:33.535] [INFO] cheese - inserting 1000 documents. first: Places named for Pope John Paul II and last: GTYJ -[2018-02-13T08:34:33.575] [INFO] cheese - inserting 1000 documents. first: Love Me No More (film) and last: Wikipedia:WikiProject Academic Journals/Journals cited by Wikipedia/P38 -[2018-02-13T08:34:33.588] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:33.631] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:34:33.646] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:34:33.650] [INFO] cheese - inserting 1000 documents. first: Slip-stick phenomenon and last: Template:Kings Of The Lombards -[2018-02-13T08:34:33.660] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:34:33.726] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:34:33.739] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:34:33.958] [INFO] cheese - inserting 1000 documents. first: History of Tompkins County, New York and last: This DJ -[2018-02-13T08:34:34.032] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:34:34.075] [INFO] cheese - inserting 1000 documents. first: Category:Kanto region and last: Paul Dodge -[2018-02-13T08:34:34.149] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Kenton County, Kentucky and last: File:JikkyouPowerProWrestling96MaxVoltageScreenshotSNES.png -[2018-02-13T08:34:34.179] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:34:34.244] [INFO] cheese - inserting 1000 documents. first: Gospel Oak (ward) and last: 1981 Heineken Open – Singles -[2018-02-13T08:34:34.281] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:34:34.333] [INFO] cheese - inserting 1000 documents. first: File:Gennady Komnatov.jpg and last: Category:Basketball players from Kerala -[2018-02-13T08:34:34.358] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:34:34.375] [INFO] cheese - inserting 1000 documents. first: Gregory Camp and last: Charles Frederick Ferguson -[2018-02-13T08:34:34.381] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Mediation Cabal/Cases/2006-01-01 source inclusion in Jayendra Saraswathi and last: Kathleen P. King -[2018-02-13T08:34:34.432] [INFO] cheese - inserting 1000 documents. first: Andre Ngongang Ouandji and last: Keith L. Brown -[2018-02-13T08:34:34.471] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:34:34.525] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:34:34.656] [INFO] cheese - inserting 1000 documents. first: Category:Political movements in Madagascar and last: The royal college curepipe -[2018-02-13T08:34:34.736] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:34:34.760] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:34:34.897] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:34:35.067] [INFO] cheese - inserting 1000 documents. first: Paper Wrapped Cake and last: Template:Vermont Catamounts men's basketball coach navbox -[2018-02-13T08:34:35.123] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/wizardradio.co.uk and last: Forum baths -[2018-02-13T08:34:35.192] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:34:35.305] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:34:35.393] [INFO] cheese - inserting 1000 documents. first: Category:Transportation in Ontonagon County, Michigan and last: File:GregoryGerrer.jpg -[2018-02-13T08:34:35.404] [INFO] cheese - inserting 1000 documents. first: File:David Jenkins Welsh composer.jpg and last: Category:Wikipedia sockpuppets of Rinku125 -[2018-02-13T08:34:35.547] [INFO] cheese - inserting 1000 documents. first: Goodrich, Herfordshire and last: Joshua Jebb -[2018-02-13T08:34:35.549] [INFO] cheese - batch complete in: 1.268 secs -[2018-02-13T08:34:35.560] [INFO] cheese - batch complete in: 1.089 secs -[2018-02-13T08:34:35.650] [INFO] cheese - inserting 1000 documents. first: Succinctly representable game and last: Active directory objects -[2018-02-13T08:34:35.692] [INFO] cheese - batch complete in: 1.513 secs -[2018-02-13T08:34:35.710] [INFO] cheese - inserting 1000 documents. first: Sheffield & Hallamshire Football Association and last: Cyclodextrine -[2018-02-13T08:34:35.750] [INFO] cheese - inserting 1000 documents. first: Mihai Bravu, Giurgiu and last: List of call centre companies -[2018-02-13T08:34:35.758] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:34:35.902] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:34:35.902] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:34:36.000] [INFO] cheese - inserting 1000 documents. first: Manhattan Parade and last: R & W Hawthorn -[2018-02-13T08:34:36.093] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:34:36.142] [INFO] cheese - inserting 1000 documents. first: Category:1911 in Washington, D.C. and last: Seal of Karnataka -[2018-02-13T08:34:36.250] [INFO] cheese - inserting 1000 documents. first: File:Notable Welshmen 1700 1900.pdf and last: Wikipedia:Articles for deletion/Christian Dvorak -[2018-02-13T08:34:36.257] [INFO] cheese - batch complete in: 0.952 secs -[2018-02-13T08:34:36.287] [INFO] cheese - inserting 1000 documents. first: Trisikad and last: Che Det -[2018-02-13T08:34:36.362] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:36.379] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:34:36.492] [INFO] cheese - inserting 1000 documents. first: European Commissioner for Institutional Relations and Communication Strategy and last: Instituto Nacional de Sismología, Vulcanología, Metereología e Hidrología -[2018-02-13T08:34:36.585] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:34:36.699] [INFO] cheese - inserting 1000 documents. first: Gulbenkian Professor of Armenian and last: Ususau, Arad -[2018-02-13T08:34:36.736] [INFO] cheese - inserting 1000 documents. first: Universal (Orlando) and last: Missouri Route 23 (decommissioned) -[2018-02-13T08:34:36.815] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:34:36.916] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject University of North Texas/Article alerts/Archive and last: Category:Former Liberty Media subsidiaries -[2018-02-13T08:34:36.940] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:34:37.061] [INFO] cheese - inserting 1000 documents. first: Kenneth Brown (author) and last: Quentin Bryce -[2018-02-13T08:34:37.055] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:34:37.147] [INFO] cheese - inserting 1000 documents. first: Balkan Black Box and last: WILD LAW -[2018-02-13T08:34:37.246] [INFO] cheese - inserting 1000 documents. first: Paul Haywood and last: Jef Chandler -[2018-02-13T08:34:37.250] [INFO] cheese - batch complete in: 1.157 secs -[2018-02-13T08:34:37.254] [INFO] cheese - inserting 1000 documents. first: Guns and Roses (disambiguation) and last: Clemens-Brentano-Preis -[2018-02-13T08:34:37.314] [INFO] cheese - batch complete in: 1.622 secs -[2018-02-13T08:34:37.467] [INFO] cheese - batch complete in: 1.103 secs -[2018-02-13T08:34:37.480] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:34:37.483] [INFO] cheese - inserting 1000 documents. first: Nivaria and last: Roots (Everly Brothers album) -[2018-02-13T08:34:37.698] [INFO] cheese - batch complete in: 1.113 secs -[2018-02-13T08:34:37.842] [INFO] cheese - inserting 1000 documents. first: Tarnova, Arad and last: James Murray (hurler) -[2018-02-13T08:34:37.930] [INFO] cheese - inserting 1000 documents. first: Chechen Island and last: 18th Street (Philadelphia) -[2018-02-13T08:34:37.933] [INFO] cheese - inserting 1000 documents. first: Cross harp and last: Stone and Sun -[2018-02-13T08:34:37.992] [INFO] cheese - batch complete in: 1.177 secs -[2018-02-13T08:34:38.183] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:34:38.210] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:34:38.310] [INFO] cheese - inserting 1000 documents. first: Windymen and last: Jennifer Convertibles -[2018-02-13T08:34:38.390] [INFO] cheese - inserting 1000 documents. first: East Foxley and last: File:In Angel City.jpg -[2018-02-13T08:34:38.481] [INFO] cheese - inserting 1000 documents. first: Simplex (French automobile manufacturer) and last: Box (Mill Lane) Halt railway station -[2018-02-13T08:34:38.497] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:34:38.633] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/HMS Lion (1910)/archive1 and last: Chris Talbot -[2018-02-13T08:34:38.647] [INFO] cheese - batch complete in: 1.18 secs -[2018-02-13T08:34:38.652] [INFO] cheese - batch complete in: 1.172 secs -[2018-02-13T08:34:38.780] [INFO] cheese - batch complete in: 1.081 secs -[2018-02-13T08:34:38.972] [INFO] cheese - inserting 1000 documents. first: Category:ISSF shooting events and last: Category:Atlanta Thrashers players -[2018-02-13T08:34:39.080] [INFO] cheese - inserting 1000 documents. first: Home Alone 5: The Holiday Heist and last: US Senate members -[2018-02-13T08:34:39.102] [INFO] cheese - inserting 1000 documents. first: Portuguese America and last: Austin canons -[2018-02-13T08:34:39.209] [INFO] cheese - inserting 1000 documents. first: File:Mnquma CoA.png and last: Alan Woods (public servant) -[2018-02-13T08:34:39.122] [INFO] cheese - batch complete in: 1.808 secs -[2018-02-13T08:34:39.216] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:34:39.255] [INFO] cheese - inserting 1000 documents. first: Narendra Nayak and last: File:Herfølge BK.png -[2018-02-13T08:34:39.279] [INFO] cheese - inserting 1000 documents. first: Mt Misery and last: Wikipedia:Articles for deletion/George Cavanaugh -[2018-02-13T08:34:39.303] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T08:34:39.333] [INFO] cheese - inserting 1000 documents. first: Barras (people) and last: Bay View High School -[2018-02-13T08:34:39.408] [INFO] cheese - inserting 1000 documents. first: Cliffs of Dover (song) and last: Museum of National Resistance -[2018-02-13T08:34:39.427] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:34:39.456] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:34:39.464] [INFO] cheese - batch complete in: 1.281 secs -[2018-02-13T08:34:39.514] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:34:39.586] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:34:39.770] [INFO] cheese - inserting 1000 documents. first: Miho Takenaka and last: Hypericum bupleuroides -[2018-02-13T08:34:39.827] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:34:39.856] [INFO] cheese - inserting 1000 documents. first: Wind powered generator and last: File:Thebestsofar.jpg -[2018-02-13T08:34:39.914] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:34:40.024] [INFO] cheese - inserting 1000 documents. first: Category:10th-century Danish people and last: Coat of arms of Kent -[2018-02-13T08:34:40.069] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:34:40.080] [INFO] cheese - inserting 1000 documents. first: Van Benschoten House and Guest House and last: Tae Hyeon-sil -[2018-02-13T08:34:40.084] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Dundswk/Archive and last: Carlisle City Council election, 2007 -[2018-02-13T08:34:40.114] [INFO] cheese - inserting 1000 documents. first: Tom Keating (American Football) and last: Cote Chalonnaise -[2018-02-13T08:34:40.165] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:34:40.159] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:34:40.220] [INFO] cheese - inserting 1000 documents. first: Category:Chicago Blackhawks players and last: Kalapana (band) -[2018-02-13T08:34:40.267] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:34:40.199] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/If I Had Changed My Mind and last: SFGate.com -[2018-02-13T08:34:40.512] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:34:40.523] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:34:40.695] [INFO] cheese - inserting 1000 documents. first: Actual/365 and last: List of people from Caracas -[2018-02-13T08:34:40.833] [INFO] cheese - inserting 1000 documents. first: Wikipedia:2008 main page redesign proposal/Nat/Beta and last: East State Street -[2018-02-13T08:34:40.853] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:34:40.911] [INFO] cheese - inserting 1000 documents. first: Template:First and Second Cabinets of Louis Napoleon and last: Wikipedia:WikiProject Spam/Local/publications.maxwellinstitute.byu.edu -[2018-02-13T08:34:40.910] [INFO] cheese - batch complete in: 0.996 secs -[2018-02-13T08:34:40.966] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:34:41.054] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Billie (1964) and last: Television 4 -[2018-02-13T08:34:41.082] [INFO] cheese - inserting 1000 documents. first: Hyun-shil Tae and last: Template:Somerset CCC -[2018-02-13T08:34:41.083] [INFO] cheese - inserting 1000 documents. first: Holtsås and last: Pattress box -[2018-02-13T08:34:41.137] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:34:41.151] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:34:41.256] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:34:41.446] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/St. Catharines Wine Tasting of 2005 and last: Fungivore -[2018-02-13T08:34:41.465] [INFO] cheese - inserting 1000 documents. first: Ocean Beach Railway and last: Vice presidents of Taiwan -[2018-02-13T08:34:41.526] [INFO] cheese - inserting 1000 documents. first: Vuelta a Argentina and last: 2016 FINA Diving World Cup - Men's 10 metre platform -[2018-02-13T08:34:41.527] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:34:41.541] [INFO] cheese - inserting 1000 documents. first: Noël Lefebvre-Duruflé and last: File:Nongoma CoA.png -[2018-02-13T08:34:41.580] [INFO] cheese - batch complete in: 1.056 secs -[2018-02-13T08:34:41.653] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:34:41.656] [INFO] cheese - inserting 1000 documents. first: Kaimu and last: Macho Man -[2018-02-13T08:34:41.658] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:34:41.774] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:34:41.798] [INFO] cheese - inserting 1000 documents. first: Nao Kodaira and last: Bugul'minskii Raion -[2018-02-13T08:34:41.839] [INFO] cheese - inserting 1000 documents. first: Internal economies of scale and last: Carlito Cool -[2018-02-13T08:34:41.847] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:34:41.936] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:34:42.054] [INFO] cheese - inserting 1000 documents. first: Category:2018 in West Indian cricket and last: 20 SOS -[2018-02-13T08:34:42.062] [INFO] cheese - inserting 1000 documents. first: File:GW summer2.jpg and last: Trim Road (Ottawa) -[2018-02-13T08:34:42.374] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:34:42.458] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:34:42.576] [INFO] cheese - inserting 1000 documents. first: File:2011 ISAF Sailing World Championships logo.jpg and last: Category:La Massana -[2018-02-13T08:34:43.054] [INFO] cheese - inserting 1000 documents. first: Taiwanese vice presidents and last: Rob McVicar -[2018-02-13T08:34:43.185] [INFO] cheese - inserting 1000 documents. first: Herochroma baibarana and last: Defines -[2018-02-13T08:34:43.282] [INFO] cheese - batch complete in: 2.145 secs -[2018-02-13T08:34:43.392] [INFO] cheese - inserting 1000 documents. first: Category:Census-designated places in Glasscock County, Texas and last: Ají panca -[2018-02-13T08:34:43.323] [INFO] cheese - batch complete in: 1.743 secs -[2018-02-13T08:34:43.439] [INFO] cheese - batch complete in: 1.592 secs -[2018-02-13T08:34:43.434] [INFO] cheese - inserting 1000 documents. first: Council High School (Virginia) and last: The Human Giant -[2018-02-13T08:34:43.876] [INFO] cheese - batch complete in: 2.218 secs -[2018-02-13T08:34:44.071] [INFO] cheese - batch complete in: 2.135 secs -[2018-02-13T08:34:44.230] [INFO] cheese - inserting 1000 documents. first: Large ant-blue and last: Guardian Media Ltd. -[2018-02-13T08:34:44.322] [INFO] cheese - batch complete in: 1.839 secs -[2018-02-13T08:34:44.387] [INFO] cheese - inserting 1000 documents. first: Franklin Strait and last: Górna Grupa -[2018-02-13T08:34:44.387] [INFO] cheese - inserting 1000 documents. first: Category:Titans and last: Ethnism -[2018-02-13T08:34:44.606] [INFO] cheese - batch complete in: 2.21 secs -[2018-02-13T08:34:44.656] [INFO] cheese - batch complete in: 2.881 secs -[2018-02-13T08:34:44.811] [INFO] cheese - inserting 1000 documents. first: Azhikkal and last: Tschadsa -[2018-02-13T08:34:44.853] [INFO] cheese - inserting 1000 documents. first: Category:Ordino and last: Tropical Storm Astride -[2018-02-13T08:34:44.922] [INFO] cheese - inserting 1000 documents. first: Trent Dabbs and last: Kenseth -[2018-02-13T08:34:44.951] [INFO] cheese - batch complete in: 1.663 secs -[2018-02-13T08:34:44.995] [INFO] cheese - batch complete in: 1.664 secs -[2018-02-13T08:34:45.043] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:34:45.204] [INFO] cheese - inserting 1000 documents. first: Daydream (1981 film) and last: Thomas Stephens (Jesuit) -[2018-02-13T08:34:45.208] [INFO] cheese - inserting 1000 documents. first: Student debt in the United States and last: Template:Taxonomy/Hesperapis -[2018-02-13T08:34:45.259] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:34:45.271] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:34:45.276] [INFO] cheese - inserting 1000 documents. first: Transalpine Redemptorist and last: Société Wallonne de Financement et de Garantie des Petites et Moyennes Entreprises -[2018-02-13T08:34:45.344] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Surveillance awareness day and last: Book:Leonardo DiCaprio -[2018-02-13T08:34:45.447] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:34:45.490] [INFO] cheese - batch complete in: 1.605 secs -[2018-02-13T08:34:45.606] [INFO] cheese - inserting 1000 documents. first: Barmedghe and last: File:A Time for Us (album).jpeg -[2018-02-13T08:34:45.723] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:34:45.737] [INFO] cheese - inserting 1000 documents. first: Kali Bannerjee and last: 2010 Regions Morgan Keegan Championships -[2018-02-13T08:34:45.793] [INFO] cheese - inserting 1000 documents. first: Broom-Hilda and last: Cayuni River -[2018-02-13T08:34:45.850] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:34:45.874] [INFO] cheese - inserting 1000 documents. first: Nguyễn Văn Toàn (disambiguation) and last: South Negros BioPower -[2018-02-13T08:34:45.878] [INFO] cheese - inserting 1000 documents. first: Sample (music) and last: Category:Madison County, Ohio -[2018-02-13T08:34:45.887] [INFO] cheese - inserting 1000 documents. first: David Gerstein and last: Amber Asylum -[2018-02-13T08:34:45.924] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:34:45.973] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:34:45.988] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:34:46.023] [INFO] cheese - inserting 1000 documents. first: Template:1916–17 Western Conference men's basketball standings and last: El secretario -[2018-02-13T08:34:46.008] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:34:46.092] [INFO] cheese - inserting 1000 documents. first: Digital Life (magazine) and last: 1st Battalion, 6th Marine Regiment -[2018-02-13T08:34:46.147] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:34:46.227] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:34:46.422] [INFO] cheese - inserting 1000 documents. first: Template:Metropolitan municipalities in Turkey and last: File:Tiptree United FC logo.png -[2018-02-13T08:34:46.485] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:34:46.551] [INFO] cheese - inserting 1000 documents. first: Silver Fame and last: Category:2018 in winter sports -[2018-02-13T08:34:46.604] [INFO] cheese - inserting 1000 documents. first: Love Bite and last: 2010 Nelonen – Finnish League Division 4 -[2018-02-13T08:34:46.713] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:34:46.725] [INFO] cheese - inserting 1000 documents. first: Gertrude of Hohenberg and last: Are You Listening? (Dolores O'Riordan album) -[2018-02-13T08:34:46.764] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:34:46.783] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/The Day We Fight Back and last: Setoclavine -[2018-02-13T08:34:46.795] [INFO] cheese - inserting 1000 documents. first: Maurice Twomey and last: File:Seeing Double + Don't Stop Movin' album cover.jpg -[2018-02-13T08:34:46.858] [INFO] cheese - batch complete in: 0.869 secs -[2018-02-13T08:34:46.969] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ranch Road 1 and last: Shitlington Crag -[2018-02-13T08:34:46.989] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:34:47.023] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:34:47.152] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:34:47.229] [INFO] cheese - inserting 1000 documents. first: File:Centralwashington.PNG and last: Linear temporal logic -[2018-02-13T08:34:47.304] [INFO] cheese - inserting 1000 documents. first: List of country names in various languages (A-C) and last: Ute Indians -[2018-02-13T08:34:47.311] [INFO] cheese - inserting 1000 documents. first: Category:2002 in winter sports and last: Alykel (airport) -[2018-02-13T08:34:47.373] [INFO] cheese - batch complete in: 1.365 secs -[2018-02-13T08:34:47.389] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:34:47.424] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:34:47.488] [INFO] cheese - inserting 1000 documents. first: Potosa and last: Saint Gothian Sands Local Nature Reserve -[2018-02-13T08:34:47.509] [INFO] cheese - inserting 1000 documents. first: Instrumentenkunde and last: Khafar -[2018-02-13T08:34:47.595] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:34:47.616] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:34:47.669] [INFO] cheese - inserting 1000 documents. first: Am Timan (airport) and last: Moralny codex -[2018-02-13T08:34:47.689] [INFO] cheese - batch complete in: 0.3 secs -[2018-02-13T08:34:47.807] [INFO] cheese - inserting 1000 documents. first: Electoral district of Ashfield-Croydon and last: 2-Bromo-4,5-methylenedioxyamphetamine -[2018-02-13T08:34:47.808] [INFO] cheese - inserting 1000 documents. first: Vetyver and last: Template:PBB/2623 -[2018-02-13T08:34:47.839] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Digison and last: Prince-primate -[2018-02-13T08:34:47.885] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:34:47.913] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:34:47.947] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:34:48.090] [INFO] cheese - inserting 1000 documents. first: Hillcrest Country Club (disambiguation) and last: Heino Hansen -[2018-02-13T08:34:48.096] [INFO] cheese - inserting 1000 documents. first: Kifteh Giv Sin and last: Neo orthodoxy -[2018-02-13T08:34:48.162] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:34:48.187] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:48.190] [INFO] cheese - inserting 1000 documents. first: St. Gothian Sands Local Nature Reserve and last: Dallas International School Mission Laïque Française -[2018-02-13T08:34:48.239] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Anatolidion and last: Draft:Allen M. Burdett Jr. -[2018-02-13T08:34:48.266] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:34:48.325] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:34:48.360] [INFO] cheese - inserting 1000 documents. first: Holy cow and last: Banana Republicans -[2018-02-13T08:34:48.482] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:34:48.535] [INFO] cheese - inserting 1000 documents. first: Template:PBB/5764 and last: List of Welsh musicians -[2018-02-13T08:34:48.645] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:34:48.711] [INFO] cheese - inserting 1000 documents. first: 1963 Berlin International Film Festival and last: 2005 Kurdistan governorate elections -[2018-02-13T08:34:48.749] [INFO] cheese - inserting 1000 documents. first: Pallisers and last: Preferred roaming list -[2018-02-13T08:34:48.782] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:34:48.839] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/The Unwinding and last: Suzy Stride -[2018-02-13T08:34:48.868] [INFO] cheese - inserting 1000 documents. first: Wigwag (disambiguation) and last: Ellinitsa -[2018-02-13T08:34:48.869] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:34:48.902] [INFO] cheese - inserting 1000 documents. first: Ðà Nẵng F.C. and last: Association of Independent Colleges and Universities in Massachusetts -[2018-02-13T08:34:48.914] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:34:48.957] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:34:48.992] [INFO] cheese - inserting 1000 documents. first: Liverpool City Council election, 2016 and last: Programme note -[2018-02-13T08:34:49.015] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:34:49.132] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:34:49.279] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1311 and last: Pranab Kumar Mukherjee -[2018-02-13T08:34:49.294] [INFO] cheese - inserting 1000 documents. first: List of Baccano episodes and last: Satellite drag -[2018-02-13T08:34:49.390] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:34:49.399] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:34:49.442] [INFO] cheese - inserting 1000 documents. first: Kaskade (Project Pitchfork album) and last: List of populated places in Hungary (Sz) -[2018-02-13T08:34:49.452] [INFO] cheese - inserting 1000 documents. first: Terminal illness and last: André Courrèges -[2018-02-13T08:34:49.513] [INFO] cheese - inserting 1000 documents. first: Tetralopha cyrilla and last: Classical tradition -[2018-02-13T08:34:49.582] [INFO] cheese - batch complete in: 1.1 secs -[2018-02-13T08:34:49.609] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:34:49.653] [INFO] cheese - inserting 1000 documents. first: Programme notes and last: Rizzato -[2018-02-13T08:34:49.665] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:34:49.736] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:34:49.802] [INFO] cheese - inserting 1000 documents. first: Synthetic ruby and last: Portal:Language/Language topic/January 2006 -[2018-02-13T08:34:49.857] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Computer science articles and last: Liu Heita -[2018-02-13T08:34:49.904] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:34:49.993] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:34:50.136] [INFO] cheese - inserting 1000 documents. first: Richard Finan and last: Japanese general election, 1960 -[2018-02-13T08:34:50.222] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:34:50.348] [INFO] cheese - inserting 1000 documents. first: Qal'eh-ye Taqiabad and last: Wikipedia:WikiProject Spam/LinkReports/russianschool.com -[2018-02-13T08:34:50.363] [INFO] cheese - inserting 1000 documents. first: Template:PBB/1618 and last: Template:PBB/222487 -[2018-02-13T08:34:50.374] [INFO] cheese - inserting 1000 documents. first: TBM 930 and last: File:Biffy Clyro - Ellipsis Cover.jpg -[2018-02-13T08:34:50.430] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:34:50.471] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:34:50.473] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:34:50.611] [INFO] cheese - inserting 1000 documents. first: File:Climactichnites - Todd Gass 2.JPG and last: David battley -[2018-02-13T08:34:50.617] [INFO] cheese - inserting 1000 documents. first: Greyabbey and last: Wikipedia:Articles for deletion/Desperados -[2018-02-13T08:34:50.620] [INFO] cheese - inserting 1000 documents. first: Modri e and last: Category:Education in Randolph County, Missouri -[2018-02-13T08:34:50.683] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:34:50.719] [INFO] cheese - inserting 1000 documents. first: Jim McKay and last: Peter Steele -[2018-02-13T08:34:50.759] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:34:50.766] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:34:50.859] [INFO] cheese - batch complete in: 1.276 secs -[2018-02-13T08:34:50.898] [INFO] cheese - inserting 1000 documents. first: Rhythm and Blues (album) and last: Peerumedu -[2018-02-13T08:34:50.987] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:34:50.992] [INFO] cheese - inserting 1000 documents. first: Cladodont and last: Caucasian dog -[2018-02-13T08:34:51.058] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:34:51.065] [INFO] cheese - inserting 1000 documents. first: Category:Canadian ceremonial units and last: K truck -[2018-02-13T08:34:51.130] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:34:51.230] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/russianschool.com and last: Space Quest IV: Roger Wilco and The Time Rippers -[2018-02-13T08:34:51.293] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:34:51.430] [INFO] cheese - inserting 1000 documents. first: Pike-characin and last: Template:Saint Lucian general election, 2011 -[2018-02-13T08:34:51.431] [INFO] cheese - inserting 1000 documents. first: Template:OldAfdMulti and last: Turnaround jump shot -[2018-02-13T08:34:51.471] [INFO] cheese - inserting 1000 documents. first: Mount Olivet, West Virginia and last: Bella Bella/Shearwater Water Aerodrome -[2018-02-13T08:34:51.486] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:34:51.533] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:34:51.610] [INFO] cheese - inserting 1000 documents. first: Vladimir Antonovich Zorich and last: Draft:The Wolf Man (film) -[2018-02-13T08:34:51.612] [INFO] cheese - inserting 1000 documents. first: Category:Architects from New York City and last: WFKX -[2018-02-13T08:34:51.620] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:34:51.657] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:34:51.729] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9058 and last: File:Hindley Station.JPG -[2018-02-13T08:34:51.731] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:34:51.748] [INFO] cheese - inserting 1000 documents. first: File:Kaohsiung County location.jpg and last: 2099 (comics) -[2018-02-13T08:34:51.816] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:34:51.866] [INFO] cheese - inserting 1000 documents. first: Space Quest V: The Next Mutation and last: 1920–21 Georgetown Hoyas men's basketball team -[2018-02-13T08:34:51.862] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:34:51.965] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:34:52.072] [INFO] cheese - inserting 1000 documents. first: Hossein Vafaei and last: List of political parties of the Turks and Caicos Islands -[2018-02-13T08:34:52.132] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:34:52.148] [INFO] cheese - inserting 1000 documents. first: Anil Mathur and last: Art repatriation -[2018-02-13T08:34:52.152] [INFO] cheese - inserting 1000 documents. first: Category:Towns in Newfoundland and Labrador and last: Ayyoubid -[2018-02-13T08:34:52.197] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:34:52.226] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:34:52.252] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Bureaucrat Unchecking and last: Wikipedia:Sockpuppet investigations/Gfdssfdg -[2018-02-13T08:34:52.300] [INFO] cheese - inserting 1000 documents. first: Assault gliders and last: Pereira accounting -[2018-02-13T08:34:52.301] [INFO] cheese - inserting 1000 documents. first: CAW8 and last: Monty Naicker -[2018-02-13T08:34:52.326] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:34:52.346] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:34:52.367] [INFO] cheese - inserting 1000 documents. first: Finding Fela and last: The Best of Jay Sean -[2018-02-13T08:34:52.391] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:34:52.478] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:34:52.645] [INFO] cheese - inserting 1000 documents. first: Acacia auronitens and last: Category:1887 establishments in Zanzibar -[2018-02-13T08:34:52.696] [INFO] cheese - inserting 1000 documents. first: Category:Food additives and last: MIT Press -[2018-02-13T08:34:52.696] [INFO] cheese - inserting 1000 documents. first: Federal Ministry for Economics and Technologies (Germany) and last: Category:Latvian airbases -[2018-02-13T08:34:52.721] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:34:52.803] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:34:52.852] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:34:52.922] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject League of Copyeditors/Requests/Oil shale geology and last: Dogrose -[2018-02-13T08:34:52.937] [INFO] cheese - inserting 1000 documents. first: Charlotte Marie of Saxe-Jena and last: Aggressive (disambiguation) -[2018-02-13T08:34:52.978] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:34:53.017] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:34:53.048] [INFO] cheese - inserting 1000 documents. first: Lucian Bute vs. Jean Pascal and last: Queensland colonial election, 1896 -[2018-02-13T08:34:53.053] [INFO] cheese - inserting 1000 documents. first: ConnectU and last: Stephen Booth (cricketer) -[2018-02-13T08:34:53.115] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:34:53.136] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:34:53.163] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vondruke and last: Space Hulk: Vengeance of the Blood Angels -[2018-02-13T08:34:53.240] [INFO] cheese - inserting 1000 documents. first: Jan Peter van Baurscheit the Elder and last: Jan de Boer -[2018-02-13T08:34:53.248] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:34:53.252] [INFO] cheese - inserting 1000 documents. first: Template:Sul Ross State Lobos football coach navbox and last: Portal:Animation/Anniversaries/May/May 17 -[2018-02-13T08:34:53.286] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:34:53.318] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:34:53.410] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9148 and last: No. 10 Group RAAF -[2018-02-13T08:34:53.446] [INFO] cheese - inserting 1000 documents. first: VNN and last: Viable but nonculturable -[2018-02-13T08:34:53.448] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:34:53.516] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:34:53.543] [INFO] cheese - inserting 1000 documents. first: Erbin (protein) and last: Arrowfield 3YO Sprint -[2018-02-13T08:34:53.550] [INFO] cheese - inserting 1000 documents. first: José Luis García Muñoz and last: Boisé du Tremblay -[2018-02-13T08:34:53.590] [INFO] cheese - inserting 1000 documents. first: Greed and fear and last: St. Joseph River (Maumee River) -[2018-02-13T08:34:53.601] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:34:53.641] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:34:53.728] [INFO] cheese - inserting 1000 documents. first: Template:Sockpuppet category/error and last: Category:Exoplanet navigational boxes -[2018-02-13T08:34:53.738] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:34:53.766] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:34:53.779] [INFO] cheese - inserting 1000 documents. first: Category:Michigan Wolverines football coaches and last: Frustration Plantation -[2018-02-13T08:34:53.799] [INFO] cheese - inserting 1000 documents. first: Category:Indonesian sports businesspeople and last: Wikipedia:Files for discussion/2016 April 11 -[2018-02-13T08:34:53.862] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:34:53.960] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:34:54.041] [INFO] cheese - inserting 1000 documents. first: House at 313 North Main Street and last: Deanna Pappas -[2018-02-13T08:34:54.061] [INFO] cheese - inserting 1000 documents. first: Template:PBB/23142 and last: Template:PBB/10307 -[2018-02-13T08:34:54.127] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:34:54.176] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:34:54.234] [INFO] cheese - inserting 1000 documents. first: Saline Creek and last: America's Secret War: Inside the Hidden Worldwide Struggle Between America and Its Enemies -[2018-02-13T08:34:54.251] [INFO] cheese - inserting 1000 documents. first: Feature-oriented scanning probe microscopy and last: Lilium pardalinum subsp. pitkinense -[2018-02-13T08:34:54.318] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:34:54.364] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:34:54.371] [INFO] cheese - inserting 1000 documents. first: Lean on Me (Kirk Franklin song) and last: 5-pyridoxate,NADPH:oxygen oxidoreductase (decyclizing) -[2018-02-13T08:34:54.398] [INFO] cheese - inserting 1000 documents. first: Category:Military installations of Cyprus and last: Broadway (band) -[2018-02-13T08:34:54.432] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:34:54.501] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:34:54.662] [INFO] cheese - inserting 1000 documents. first: Florida State Road 377 and last: Bolondo -[2018-02-13T08:34:54.688] [INFO] cheese - inserting 1000 documents. first: Template:PBB/10308 and last: Template:PBB/9063 -[2018-02-13T08:34:54.721] [INFO] cheese - inserting 1000 documents. first: Phthalate,NADH:oxygen oxidoreductase (4,5-hydroxylating) and last: S-adenozil-L-metionin:16S rRNA (cytidine1409-2'-O)-methyltransferase -[2018-02-13T08:34:54.740] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:34:54.779] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:34:54.805] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:34:54.820] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Seb Lester and last: Wasp 58 -[2018-02-13T08:34:54.843] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Birdy and last: Kelly Thiebaud -[2018-02-13T08:34:54.951] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:34:54.953] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:34:55.034] [INFO] cheese - inserting 1000 documents. first: Pont Nedd Fechan and last: Best Recording for Children -[2018-02-13T08:34:55.100] [INFO] cheese - inserting 1000 documents. first: S-adenozil-L-metionin:tRNA (guanine37-N1)-methyltransferase and last: ATP:ethanolamine O-phosphotransferase -[2018-02-13T08:34:55.116] [INFO] cheese - batch complete in: 0.337 secs -[2018-02-13T08:34:55.132] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:34:55.281] [INFO] cheese - inserting 1000 documents. first: Jane (1916 film) and last: Template:TamilNadu-stub -[2018-02-13T08:34:55.380] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:34:55.418] [INFO] cheese - inserting 1000 documents. first: ATP:pseudouridine 5'-phosphotransferase and last: A-League transfers for 2016–17 season -[2018-02-13T08:34:55.450] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:34:55.471] [INFO] cheese - inserting 1000 documents. first: Hikari Rail Star (Shinkansen) and last: Richard Corbett -[2018-02-13T08:34:55.500] [INFO] cheese - inserting 1000 documents. first: Template:PBB/9131 and last: Template:PBB/3735 -[2018-02-13T08:34:55.504] [INFO] cheese - inserting 1000 documents. first: Toolchains and last: Alawiyyin -[2018-02-13T08:34:55.551] [INFO] cheese - inserting 1000 documents. first: CCC Chuen Yuen College and last: Miklagård -[2018-02-13T08:34:55.580] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:34:55.599] [INFO] cheese - batch complete in: 1.861 secs -[2018-02-13T08:34:55.606] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:34:55.667] [INFO] cheese - inserting 1000 documents. first: Zermelo–Fraenkel axiomatization and last: Category:Universities in Malawi -[2018-02-13T08:34:55.679] [INFO] cheese - batch complete in: 0.938 secs -[2018-02-13T08:34:55.792] [INFO] cheese - inserting 1000 documents. first: Campagnola, Domenico and last: Tymor yr Heliwr -[2018-02-13T08:34:55.814] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:34:55.908] [INFO] cheese - inserting 1000 documents. first: Soccerstar (EP album) and last: Neil Lynch (disambiguation) -[2018-02-13T08:34:55.917] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:34:55.989] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:34:56.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/5150 (involuntary psychiatric hold) and last: Magpie, Victoria -[2018-02-13T08:34:56.155] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:34:56.320] [INFO] cheese - inserting 1000 documents. first: Template:PBB/3895 and last: Template:PBB/3347 -[2018-02-13T08:34:56.333] [INFO] cheese - inserting 1000 documents. first: PTVS and last: NWT Spruce Coupe -[2018-02-13T08:34:56.367] [INFO] cheese - inserting 1000 documents. first: Southern Beltway (Pittsburgh) and last: U.S. Route 9 Business (Jersey City, New Jersey) -[2018-02-13T08:34:56.387] [INFO] cheese - inserting 1000 documents. first: Morfe Forest and last: Monstersauria -[2018-02-13T08:34:56.387] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:34:56.405] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:34:56.474] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:34:56.510] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:34:56.552] [INFO] cheese - inserting 1000 documents. first: Derbyshire County Cricket Club in 1965 and last: Template:Ball State Cardinals football navbox -[2018-02-13T08:34:56.629] [INFO] cheese - inserting 1000 documents. first: Makuti-Kariba Highway and last: SubTile -[2018-02-13T08:34:56.676] [INFO] cheese - inserting 1000 documents. first: Dark desire and last: Theatre District, New York City -[2018-02-13T08:34:56.680] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:34:56.731] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:34:56.791] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:34:56.884] [INFO] cheese - inserting 1000 documents. first: 1995 Atlantic Hurricane season and last: Wikipedia:Articles for deletion/Median number -[2018-02-13T08:34:57.030] [INFO] cheese - inserting 1000 documents. first: Spruce Coupe and last: Do Sakhli -[2018-02-13T08:34:57.051] [INFO] cheese - batch complete in: 1.452 secs -[2018-02-13T08:34:57.073] [INFO] cheese - inserting 1000 documents. first: ATP phosphohydrolase (nucleosome-assembling) and last: Template:Did you know nominations/United States Senate election in Florida, 1950 -[2018-02-13T08:34:57.122] [INFO] cheese - inserting 1000 documents. first: Template:PBB/3595 and last: Independent Force -[2018-02-13T08:34:57.116] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:34:57.130] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T08:34:57.222] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:34:57.248] [INFO] cheese - inserting 1000 documents. first: Gillman v. Holmes County School District and last: Central Park, Utah -[2018-02-13T08:34:57.299] [INFO] cheese - inserting 1000 documents. first: U.S. Route 1 Business (Jersey City, New Jersey) and last: High Level/Footner Lake Water Aerodrome -[2018-02-13T08:34:57.349] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:34:57.374] [INFO] cheese - inserting 1000 documents. first: George R. Reeves and last: Sharath Gayakwad -[2018-02-13T08:34:57.416] [INFO] cheese - batch complete in: 0.942 secs -[2018-02-13T08:34:57.493] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:34:57.636] [INFO] cheese - inserting 1000 documents. first: L’Atalante and last: Category:British prisoners and detainees -[2018-02-13T08:34:57.664] [INFO] cheese - inserting 1000 documents. first: Do Salkhi and last: The Symbolic Life -[2018-02-13T08:34:57.669] [INFO] cheese - inserting 1000 documents. first: Moulders of Men and last: Hypercallia halobapta -[2018-02-13T08:34:57.705] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:34:57.723] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:34:57.729] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:34:57.745] [INFO] cheese - inserting 1000 documents. first: Template:PBB/2041 and last: Template:PBB/23085 -[2018-02-13T08:34:57.818] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:34:57.840] [INFO] cheese - inserting 1000 documents. first: Jet Star 2 - Coaster and last: Battle of Mingtiao -[2018-02-13T08:34:57.898] [INFO] cheese - inserting 1000 documents. first: File:Six Pack (Cover art) Front.jpg and last: List of Princesses Episodes -[2018-02-13T08:34:57.900] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:34:57.955] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:34:57.974] [INFO] cheese - inserting 1000 documents. first: CEK7 and last: Sir John Riddell, 13th Baronet -[2018-02-13T08:34:58.029] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:34:58.156] [INFO] cheese - inserting 1000 documents. first: Neeyane and last: Sunnistan -[2018-02-13T08:34:58.199] [INFO] cheese - inserting 1000 documents. first: Dkctf and last: Ghost Riders in the Sky (Slim Whitman album) -[2018-02-13T08:34:58.203] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:34:58.244] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article candidates/Ram Narayan/archive2 and last: Wikipedia:WikiProject Spam/LinkReports/rhythmfmgoa881.yolasite.com -[2018-02-13T08:34:58.248] [INFO] cheese - inserting 1000 documents. first: 10 Hygiea and last: Jan, Count Zizka -[2018-02-13T08:34:58.267] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:34:58.273] [INFO] cheese - inserting 1000 documents. first: Campbell Funeral Church and last: Template:PBB/4722 -[2018-02-13T08:34:58.274] [INFO] cheese - inserting 1000 documents. first: Thomas Carroll (disambiguation) and last: Sassoon General Hospital -[2018-02-13T08:34:58.298] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T08:34:58.314] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class MonmouthpediA-related articles and last: Dioryctria okui -[2018-02-13T08:34:58.320] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:34:58.342] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:34:58.365] [INFO] cheese - batch complete in: 1.314 secs -[2018-02-13T08:34:58.380] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:34:58.532] [INFO] cheese - inserting 1000 documents. first: Colegio Mexico Bachillerato, A.C. and last: Nileshwar Railway Station -[2018-02-13T08:34:58.580] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T08:34:58.612] [INFO] cheese - inserting 1000 documents. first: File:Andrew Stevovich oil painting, Bus Stop, 2001, 24" x 24" .jpg and last: Category:1740 establishments in Prussia -[2018-02-13T08:34:58.632] [INFO] cheese - inserting 1000 documents. first: Attock District and last: Magnus Johansson -[2018-02-13T08:34:58.649] [INFO] cheese - batch complete in: 0.382 secs -[2018-02-13T08:34:58.666] [INFO] cheese - inserting 1000 documents. first: Archbishop Sebouh Chouldjian and last: 1985 TANFL Season -[2018-02-13T08:34:58.727] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:34:58.736] [INFO] cheese - inserting 1000 documents. first: Category:Sevastopol and last: Burger vans -[2018-02-13T08:34:58.758] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:34:58.787] [INFO] cheese - inserting 1000 documents. first: Jaanimae and last: Template:PBB/11345 -[2018-02-13T08:34:58.791] [INFO] cheese - inserting 1000 documents. first: Rathcoole (Belfast) and last: Brazilian Remote Sensing Satellite -[2018-02-13T08:34:58.800] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:34:58.842] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:34:58.887] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:34:59.043] [INFO] cheese - inserting 1000 documents. first: Category:Bolivian people of Chilean descent and last: Template:Trinity Evangelical Divinity School -[2018-02-13T08:34:59.045] [INFO] cheese - inserting 1000 documents. first: AS Farcha and last: Adonim ha-Levi -[2018-02-13T08:34:59.089] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:34:59.132] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:34:59.243] [INFO] cheese - inserting 1000 documents. first: 1986 TFL Statewide League Season and last: Mattias Nilsson Jr. -[2018-02-13T08:34:59.270] [INFO] cheese - inserting 1000 documents. first: Taco trucks and last: Polynose -[2018-02-13T08:34:59.312] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:34:59.333] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:34:59.352] [INFO] cheese - inserting 1000 documents. first: Capitrol and last: Rogozarski AZR -[2018-02-13T08:34:59.382] [INFO] cheese - inserting 1000 documents. first: File:Federal Thunderbolt 1000.jpg and last: Paris by Night (song) -[2018-02-13T08:34:59.418] [INFO] cheese - inserting 1000 documents. first: Volutions Magazine and last: Moose Jaw Municipal Airport -[2018-02-13T08:34:59.448] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:34:59.459] [INFO] cheese - inserting 1000 documents. first: List of monastic houses on the Isle of Man and last: Wikipedia:Multilingual ranking April 2002 -[2018-02-13T08:34:59.520] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:34:59.539] [INFO] cheese - inserting 1000 documents. first: Chah Shuli and last: Mazra'eh-ye Tang Firuzi -[2018-02-13T08:34:59.559] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:34:59.661] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:34:59.681] [INFO] cheese - batch complete in: 1.316 secs -[2018-02-13T08:34:59.688] [INFO] cheese - inserting 1000 documents. first: Posoquerieae and last: Wikipedia:WikiProject Directory/Description/WikiProject Holidays/Christmas task force -[2018-02-13T08:34:59.873] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:35:00.005] [INFO] cheese - inserting 1000 documents. first: File:Vaptzarov-ship.jpg and last: Daisy-wheel typewriter -[2018-02-13T08:35:00.009] [INFO] cheese - inserting 1000 documents. first: File:Northmayfairbungalow.jpg and last: Arnold Lodge School -[2018-02-13T08:35:00.088] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:35:00.094] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:00.217] [INFO] cheese - inserting 1000 documents. first: Slovenian 2011 YouTube Affair and last: Fernanda de Freitas -[2018-02-13T08:35:00.240] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Tulayi and last: Slavery in Denmark -[2018-02-13T08:35:00.246] [INFO] cheese - inserting 1000 documents. first: Bourne Park (football ground) and last: Template:PBB/1175 -[2018-02-13T08:35:00.287] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:35:00.296] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:35:00.305] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:00.454] [INFO] cheese - inserting 1000 documents. first: Portal:German Empire/Selected article/8 and last: Women's rights in the Philippines -[2018-02-13T08:35:00.500] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:00.545] [INFO] cheese - inserting 1000 documents. first: CJS4 and last: TechCentralStation.com -[2018-02-13T08:35:00.568] [INFO] cheese - inserting 1000 documents. first: The Drop (Brian Eno album) and last: Anorthosis FC -[2018-02-13T08:35:00.600] [INFO] cheese - inserting 1000 documents. first: 16 Wishes and last: IPoDWDM -[2018-02-13T08:35:00.624] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:35:00.626] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:35:00.663] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Multilingual ranking March 2002 and last: Kolomenskoe -[2018-02-13T08:35:00.680] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:35:00.689] [INFO] cheese - inserting 1000 documents. first: Lina Carstens and last: 3-Hydroxytetrahydrofuran -[2018-02-13T08:35:00.697] [INFO] cheese - inserting 1000 documents. first: Phillip Jones of Fonmon and last: Mazra'eh-ye Darishak -[2018-02-13T08:35:00.741] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:35:00.744] [INFO] cheese - batch complete in: 0.439 secs -[2018-02-13T08:35:00.751] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:35:00.814] [INFO] cheese - inserting 1000 documents. first: Second Reformed Dutch Church of Kingston and last: Obiecanowo, Kuyavian-Pomeranian Voivodeship -[2018-02-13T08:35:00.864] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:00.961] [INFO] cheese - inserting 1000 documents. first: Category:Politicians of African descent and last: Elpistostege watsoni -[2018-02-13T08:35:01.020] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:35:01.134] [INFO] cheese - inserting 1000 documents. first: Welawa-Bydgoszcz Treaty and last: File:Spinalthing.jpg -[2018-02-13T08:35:01.183] [INFO] cheese - inserting 1000 documents. first: Battersea power station in popular culture and last: Template:Taxonomy/Acer sect. Parviflora -[2018-02-13T08:35:01.191] [INFO] cheese - inserting 1000 documents. first: Mazra'eh-ye Dozdakuiyeh and last: Stenodes bipunctata -[2018-02-13T08:35:01.209] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:35:01.292] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:35:01.379] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:01.391] [INFO] cheese - inserting 1000 documents. first: Guy Bingham and last: Andrea Commodi -[2018-02-13T08:35:01.423] [INFO] cheese - inserting 1000 documents. first: Kiev City Council and last: Mobsters and Mormons -[2018-02-13T08:35:01.478] [INFO] cheese - inserting 1000 documents. first: Ośno, Żnin County and last: Template:PBB/56648 -[2018-02-13T08:35:01.511] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:35:01.520] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:35:01.570] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:35:01.623] [INFO] cheese - inserting 1000 documents. first: British Rail Class 717 and last: Preparatoria La Salle Simón Bolívar -[2018-02-13T08:35:01.675] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:35:01.741] [INFO] cheese - inserting 1000 documents. first: Aysén Region and last: Women's Basketball Hall of Fame -[2018-02-13T08:35:01.834] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:35:01.873] [INFO] cheese - inserting 1000 documents. first: Sergei Valentinovich Novikov and last: Alfredo Travia -[2018-02-13T08:35:01.891] [INFO] cheese - inserting 1000 documents. first: Glasgow slum clearance and last: Evergreen, Alberta -[2018-02-13T08:35:01.916] [INFO] cheese - inserting 1000 documents. first: Maljukgeori janhoksa and last: Phalonia corsicana -[2018-02-13T08:35:01.952] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:35:01.982] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:35:01.990] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:35:02.041] [INFO] cheese - inserting 1000 documents. first: Bachelor (disambiguation) and last: Phillip Furtwangler -[2018-02-13T08:35:02.167] [INFO] cheese - inserting 1000 documents. first: Ḵaasda Héen and last: Neil Tobin -[2018-02-13T08:35:02.189] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:35:02.260] [INFO] cheese - inserting 1000 documents. first: Category:Châteaux in Oise and last: Class AB amplifiers -[2018-02-13T08:35:02.260] [INFO] cheese - inserting 1000 documents. first: Preparatoria La Salle Simon Bolivar and last: Bischoff, Douglas G. -[2018-02-13T08:35:02.293] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:35:02.346] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:35:02.352] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:35:02.464] [INFO] cheese - inserting 1000 documents. first: Conchylis austrinana and last: Amir Salar-e Sar Tang -[2018-02-13T08:35:02.482] [INFO] cheese - inserting 1000 documents. first: James Lyons (admiral) and last: Carl Anschutz -[2018-02-13T08:35:02.510] [INFO] cheese - inserting 1000 documents. first: Garth, Alberta and last: Greek legislative election, 1895 -[2018-02-13T08:35:02.608] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:35:02.648] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:02.708] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:35:02.752] [INFO] cheese - inserting 1000 documents. first: Picard existence theorem and last: Category:Reformed Presbyterian Church (denomination) -[2018-02-13T08:35:02.807] [INFO] cheese - inserting 1000 documents. first: Madam Rosmerta and last: Unia Wolnosci -[2018-02-13T08:35:02.849] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:35:02.971] [INFO] cheese - inserting 1000 documents. first: A Presentation of Progressive Jazz and last: Banco Serfín -[2018-02-13T08:35:02.980] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:35:03.037] [INFO] cheese - inserting 1000 documents. first: Muhacir and last: Tunbridge Wells Girls Grammar School -[2018-02-13T08:35:03.050] [INFO] cheese - inserting 1000 documents. first: Category:Altensteig and last: Bodley (library) -[2018-02-13T08:35:03.107] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:35:03.186] [INFO] cheese - batch complete in: 0.893 secs -[2018-02-13T08:35:03.194] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:35:03.310] [INFO] cheese - inserting 1000 documents. first: Chant Noël: Chants For The Holiday Season and last: Category:Diving Universiade champions navigational boxes -[2018-02-13T08:35:03.312] [INFO] cheese - inserting 1000 documents. first: Kushk-i-Sartang and last: Animals in Thai folklore -[2018-02-13T08:35:03.360] [INFO] cheese - inserting 1000 documents. first: Milo Rimbaldi and last: Srbski -[2018-02-13T08:35:03.384] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:35:03.390] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:35:03.468] [INFO] cheese - inserting 1000 documents. first: Bhai kahn Singh Nabha and last: Category:Fictional shapeshifters -[2018-02-13T08:35:03.511] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:35:03.519] [INFO] cheese - inserting 1000 documents. first: Granman and last: Bangor (airport) -[2018-02-13T08:35:03.555] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:03.598] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:35:03.878] [INFO] cheese - inserting 1000 documents. first: Bangui M'Poko (airport) and last: The Nor'-westers -[2018-02-13T08:35:03.881] [INFO] cheese - inserting 1000 documents. first: Category:Swimming Universiade champions navigational boxes and last: Divisional Secretariats of Uva Province -[2018-02-13T08:35:03.965] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T08:35:03.984] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:35:03.996] [INFO] cheese - inserting 1000 documents. first: File:7 Sinz.jpg and last: Robert Fechner -[2018-02-13T08:35:04.045] [INFO] cheese - inserting 1000 documents. first: File:ThomasMansfield Logo.jpg and last: Category:1985 in New Mexico -[2018-02-13T08:35:04.056] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:35:04.083] [INFO] cheese - inserting 1000 documents. first: Category:Social issues and last: Wikipedia:Arbitration Committee Elections January 2006 Vote/Vote Tznkai -[2018-02-13T08:35:04.097] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:35:04.123] [INFO] cheese - inserting 1000 documents. first: Eunomia family and last: Multiplicity (film) -[2018-02-13T08:35:04.204] [INFO] cheese - batch complete in: 1.017 secs -[2018-02-13T08:35:04.242] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of The Fairly OddParents DVD and VHS and last: Radiological fallout -[2018-02-13T08:35:04.265] [INFO] cheese - inserting 1000 documents. first: Pete Wentz (musician) and last: Julius Butty -[2018-02-13T08:35:04.264] [INFO] cheese - batch complete in: 1.284 secs -[2018-02-13T08:35:04.353] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:35:04.386] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:35:04.546] [INFO] cheese - inserting 1000 documents. first: Nattapon Malapun and last: Category:Buddhism in Karnataka -[2018-02-13T08:35:04.630] [INFO] cheese - inserting 1000 documents. first: Zarat, Iran and last: File:Showbiz Police 2014 Titlecard.jpg -[2018-02-13T08:35:04.633] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:35:04.634] [INFO] cheese - inserting 1000 documents. first: Divisional Secretariats of Sabaragamuwa Province and last: Glossary of New Thought terms -[2018-02-13T08:35:04.640] [INFO] cheese - inserting 1000 documents. first: List of Sega Genesis & Sega Mega Drive Games and last: Love Italian Style (film) -[2018-02-13T08:35:04.736] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:35:04.736] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:35:04.744] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:35:04.921] [INFO] cheese - inserting 1000 documents. first: File:Torchy the Battery Boy titlescreen.jpg and last: Total hemolytic complement -[2018-02-13T08:35:04.976] [INFO] cheese - inserting 1000 documents. first: Cool World soundtrack and last: Gave d'Ossau -[2018-02-13T08:35:04.986] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:35:05.053] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:05.095] [INFO] cheese - inserting 1000 documents. first: St Mary's Church, Llanfairpwll and last: Sister Luisa Capomazza -[2018-02-13T08:35:05.145] [INFO] cheese - inserting 1000 documents. first: Cacl2 and last: ∇ -[2018-02-13T08:35:05.150] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:05.252] [INFO] cheese - inserting 1000 documents. first: Portal:Nick and last: Template:2012 CIFL Standings -[2018-02-13T08:35:05.255] [INFO] cheese - inserting 1000 documents. first: Sonoma State Seawolves baseball and last: Category:1671 in New Spain -[2018-02-13T08:35:05.279] [INFO] cheese - inserting 1000 documents. first: 17th Earl of Oxford, Lord Bulbeck and last: Kármán line -[2018-02-13T08:35:05.282] [INFO] cheese - inserting 1000 documents. first: 1st Man in Space and last: Corporate Dealmaker -[2018-02-13T08:35:05.290] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:35:05.319] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:05.344] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:05.396] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:35:05.408] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:05.502] [INFO] cheese - inserting 1000 documents. first: File:Xtro2.jpg and last: Category:Gibraltarian diaspora -[2018-02-13T08:35:05.612] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:35:05.669] [INFO] cheese - inserting 1000 documents. first: Impallomeni and last: Thomas Pearson Moody -[2018-02-13T08:35:05.676] [INFO] cheese - inserting 1000 documents. first: Mandolin Concerto and last: David Kennedy (advertising) -[2018-02-13T08:35:05.751] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:35:05.792] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:35:05.863] [INFO] cheese - inserting 1000 documents. first: Category:1671 in Spain and last: Weird Loners -[2018-02-13T08:35:05.888] [INFO] cheese - inserting 1000 documents. first: Loveless (comic book) and last: Arapi -[2018-02-13T08:35:05.952] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:35:05.993] [INFO] cheese - inserting 1000 documents. first: Gent Go-Go Rollergirls and last: Category:Pacific Games -[2018-02-13T08:35:06.013] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:35:06.055] [INFO] cheese - inserting 1000 documents. first: Archer season 7 and last: Awards and nominations received by Rita Ora -[2018-02-13T08:35:06.087] [INFO] cheese - batch complete in: 0.335 secs -[2018-02-13T08:35:06.106] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:06.244] [INFO] cheese - inserting 1000 documents. first: Porn in the Philippines and last: HVDC Mechanicville-Schenectady -[2018-02-13T08:35:06.250] [INFO] cheese - inserting 1000 documents. first: Prince William of Hesse-Kassel and last: File:Live in Concert (Najwa Karam album).jpg -[2018-02-13T08:35:06.337] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:35:06.349] [INFO] cheese - inserting 1000 documents. first: Charles Onyango Obbo and last: Link edit -[2018-02-13T08:35:06.367] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:35:06.373] [INFO] cheese - inserting 1000 documents. first: St Neots Priory and last: Vladimir Propp -[2018-02-13T08:35:06.399] [INFO] cheese - inserting 1000 documents. first: Laddivadi railway station and last: Get You Back (Mayer Hawthorne song) -[2018-02-13T08:35:06.400] [INFO] cheese - inserting 1000 documents. first: Category:Flora of Shandong and last: Leucanopsis obvia -[2018-02-13T08:35:06.424] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T08:35:06.453] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:35:06.462] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:06.488] [INFO] cheese - batch complete in: 1.091 secs -[2018-02-13T08:35:06.579] [INFO] cheese - inserting 1000 documents. first: File:Primer 55 - Family for Life.jpg and last: Category:National Youth Competition seasons -[2018-02-13T08:35:06.588] [INFO] cheese - inserting 1000 documents. first: William Passmore (boxer) and last: Frankie Odell -[2018-02-13T08:35:06.675] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:35:06.674] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:06.919] [INFO] cheese - inserting 1000 documents. first: Out of Pocket (song) and last: Sindh Rangers -[2018-02-13T08:35:06.924] [INFO] cheese - inserting 1000 documents. first: George Consider Hale and last: Template:Attached KML/New York State Route 189 -[2018-02-13T08:35:06.969] [INFO] cheese - inserting 1000 documents. first: Template:Infobox road/link/GBR and last: Cow shit -[2018-02-13T08:35:07.001] [INFO] cheese - inserting 1000 documents. first: File:SSI-0.PNG and last: Lan (given name) -[2018-02-13T08:35:07.043] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:07.048] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:35:07.050] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:35:07.093] [INFO] cheese - inserting 1000 documents. first: Robert F. Fairlie and last: James McCoy (politician) -[2018-02-13T08:35:07.088] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:07.211] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:35:07.228] [INFO] cheese - inserting 1000 documents. first: China–Pakistan Free Trade Agreement and last: Primacy of the Roman pontiff -[2018-02-13T08:35:07.307] [INFO] cheese - inserting 1000 documents. first: Scott Bradley (politician) and last: Kabuli kikar -[2018-02-13T08:35:07.310] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:35:07.325] [INFO] cheese - inserting 1000 documents. first: USS California (SP-647) and last: Bibliography of Prem Rawat -[2018-02-13T08:35:07.326] [INFO] cheese - batch complete in: 0.283 secs -[2018-02-13T08:35:07.419] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:35:07.490] [INFO] cheese - inserting 1000 documents. first: William E. Colby and last: A Tale of Two Cities (1935) -[2018-02-13T08:35:07.589] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:35:07.627] [INFO] cheese - inserting 1000 documents. first: Liberal Democrat Members of Parliament in London and last: Rik Makarem -[2018-02-13T08:35:07.733] [INFO] cheese - inserting 1000 documents. first: Ralph Bernard and last: Wikipedia:Articles for deletion/List of fashion photographers -[2018-02-13T08:35:07.733] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:35:07.784] [INFO] cheese - inserting 1000 documents. first: Medieval Catalan and last: Emily Arnesen -[2018-02-13T08:35:07.819] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:07.835] [INFO] cheese - inserting 1000 documents. first: An Old Man and His Grandson and last: Zenith CH640 -[2018-02-13T08:35:07.933] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:35:07.955] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:35:08.014] [INFO] cheese - inserting 1000 documents. first: 3rd Golden Globe Awards and last: Wikipedia:Articles for deletion/Qincheng Prison -[2018-02-13T08:35:08.048] [INFO] cheese - inserting 1000 documents. first: Vilayati babul and last: Category:Paintings by Hendrick Avercamp -[2018-02-13T08:35:08.093] [INFO] cheese - inserting 1000 documents. first: Töpfer and last: Sun girl -[2018-02-13T08:35:08.133] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:35:08.137] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:35:08.167] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:35:08.345] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Fatwhales and last: Jacob`s Ladder -[2018-02-13T08:35:08.348] [INFO] cheese - inserting 1000 documents. first: Category:Icebreakers of Germany and last: (231665) 7602 P-L -[2018-02-13T08:35:08.405] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:08.424] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:35:08.499] [INFO] cheese - inserting 1000 documents. first: Hoosier North Athletic Conference and last: Masters M85 100 metres world record progression -[2018-02-13T08:35:08.607] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:08.644] [INFO] cheese - inserting 1000 documents. first: Software Automatic Mouth and last: Garden centre -[2018-02-13T08:35:08.659] [INFO] cheese - inserting 1000 documents. first: Cyclone Carmen (1971) and last: Wikipedia:WikiProject Spam/LinkReports/dichvuseo.n.nu -[2018-02-13T08:35:08.757] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:35:08.762] [INFO] cheese - inserting 1000 documents. first: Lapshina and last: 32nd Antiaircraft Artillery Brigade -[2018-02-13T08:35:08.769] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of best-selling albums in the United States and last: Lovelock -[2018-02-13T08:35:08.775] [INFO] cheese - inserting 1000 documents. first: Timok Mouth and last: The Long Goodbye (Stargate Atlantis) -[2018-02-13T08:35:08.821] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:35:08.915] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:35:08.883] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:35:08.956] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:35:09.029] [INFO] cheese - inserting 1000 documents. first: Category:Education in Kingston upon Hull and last: Fushengzhuang Railway Station -[2018-02-13T08:35:09.089] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:35:09.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Joe Prissel and last: Throat microphone -[2018-02-13T08:35:09.180] [INFO] cheese - inserting 1000 documents. first: Ecomonic and last: Halisidota lacteogrisea -[2018-02-13T08:35:09.182] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:35:09.262] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:35:09.332] [INFO] cheese - inserting 1000 documents. first: Papilio soratensis and last: Méndez Núñez -[2018-02-13T08:35:09.365] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:09.433] [INFO] cheese - inserting 1000 documents. first: А. П. Прудников and last: Niels Winther Poulsen -[2018-02-13T08:35:09.456] [INFO] cheese - inserting 1000 documents. first: WKDO (AM) and last: Category:Start-Class Tropical cyclone season articles -[2018-02-13T08:35:09.476] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:35:09.481] [INFO] cheese - inserting 1000 documents. first: Personal Aides de Camp to The Queen and last: Checkmate (DC Comics) -[2018-02-13T08:35:09.481] [INFO] cheese - inserting 1000 documents. first: Anju Railway Station and last: Junior e Leonardo -[2018-02-13T08:35:09.498] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:35:09.524] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:35:09.562] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:35:09.646] [INFO] cheese - inserting 1000 documents. first: SpaceShipOne flight 13P and last: Edhom -[2018-02-13T08:35:09.684] [INFO] cheese - inserting 1000 documents. first: Sabir Ali (politician) and last: Sakhteman-e Hajj Parviz -[2018-02-13T08:35:09.703] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:35:09.714] [INFO] cheese - inserting 1000 documents. first: File:Psilocybe.tampanensis.two.jpg and last: Kostas Giannidis -[2018-02-13T08:35:09.750] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T08:35:09.756] [INFO] cheese - batch complete in: 0.391 secs -[2018-02-13T08:35:09.892] [INFO] cheese - inserting 1000 documents. first: File:KateRyanUR My Love.jpeg and last: Der Weibsteufel (1966 film) -[2018-02-13T08:35:09.901] [INFO] cheese - inserting 1000 documents. first: List of mosques in Senegal and last: SSAU (disambiguation) -[2018-02-13T08:35:09.903] [INFO] cheese - inserting 1000 documents. first: Category:Stub-Class Tropical cyclone season articles and last: 1-random real -[2018-02-13T08:35:09.933] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T08:35:09.946] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:09.978] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:35:10.023] [INFO] cheese - inserting 1000 documents. first: Briggs Program and last: Road manager -[2018-02-13T08:35:10.131] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:10.184] [INFO] cheese - inserting 1000 documents. first: Sehtolan, Kazerun and last: Category:American film people -[2018-02-13T08:35:10.206] [INFO] cheese - inserting 1000 documents. first: Lisa Yee and last: LaDell Andersen -[2018-02-13T08:35:10.258] [INFO] cheese - inserting 1000 documents. first: WRKZ and last: Andreja Gomboc -[2018-02-13T08:35:10.265] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:35:10.289] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/electroniccigarettenow.net and last: Pearson College (United Kingdom) -[2018-02-13T08:35:10.336] [INFO] cheese - batch complete in: 1.154 secs -[2018-02-13T08:35:10.373] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:35:10.439] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:35:10.563] [INFO] cheese - inserting 1000 documents. first: Foulfellow and Gideon and last: Template:Afd footer (multiple)/doc -[2018-02-13T08:35:10.615] [INFO] cheese - inserting 1000 documents. first: Kwak Yoon-gy and last: John Howell Collier -[2018-02-13T08:35:10.655] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/2008 UAW-Dodge 400 and last: League for Political Education -[2018-02-13T08:35:10.669] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:35:10.673] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:35:10.730] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:35:10.778] [INFO] cheese - inserting 1000 documents. first: Flynn and last: Wikipedia:Categories for deletion/Log/2006 January 11 -[2018-02-13T08:35:10.785] [INFO] cheese - inserting 1000 documents. first: Gemini Cain and last: Thalesa parva -[2018-02-13T08:35:10.833] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:10.849] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:35:10.880] [INFO] cheese - inserting 1000 documents. first: Croftland, Alberta and last: Emilia Turei -[2018-02-13T08:35:10.885] [INFO] cheese - inserting 1000 documents. first: Pal chaudhury high school and last: Peñacerrada -[2018-02-13T08:35:10.922] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:35:10.941] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:35:11.094] [INFO] cheese - inserting 1000 documents. first: Brandau (surname) and last: Category:Actors from Kyoto Prefecture -[2018-02-13T08:35:11.096] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Chicago Engineering Design Team and last: Shakespeare & Company (Massachusetts) -[2018-02-13T08:35:11.099] [INFO] cheese - inserting 1000 documents. first: Super Deformed and last: Franklin MacVeagh -[2018-02-13T08:35:11.121] [INFO] cheese - inserting 1000 documents. first: Papular eruption of blacks and last: Category:Treaties entered into force in 1955 -[2018-02-13T08:35:11.140] [INFO] cheese - batch complete in: 0.409 secs -[2018-02-13T08:35:11.152] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:11.165] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:35:11.190] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:35:11.205] [INFO] cheese - inserting 1000 documents. first: Halisidota albipuncta and last: Japanese destroyer Yamayuki (DD-129) -[2018-02-13T08:35:11.263] [INFO] cheese - batch complete in: 0.43 secs -[2018-02-13T08:35:11.334] [INFO] cheese - inserting 1000 documents. first: Category:Lists of Indian people by community and last: Wilbert (bishop) -[2018-02-13T08:35:11.347] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gunged and last: Indiana-Purdue University Fort Wayne -[2018-02-13T08:35:11.357] [INFO] cheese - inserting 1000 documents. first: Bundesministerium für Familie, Senioren, Frauen und Jugend and last: Vilho Luolajan Mikkola -[2018-02-13T08:35:11.393] [INFO] cheese - inserting 1000 documents. first: Category:Ugly Leaders albums and last: Roman Catholic dioceses in Haiti -[2018-02-13T08:35:11.391] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:35:11.412] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:35:11.415] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:35:11.464] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T08:35:11.535] [INFO] cheese - inserting 1000 documents. first: Foreign aid to Syria and last: Patterson House (Larned, Kansas) -[2018-02-13T08:35:11.569] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:35:11.636] [INFO] cheese - inserting 1000 documents. first: I Do (Jewel song) and last: Harry Graham -[2018-02-13T08:35:11.650] [INFO] cheese - inserting 1000 documents. first: Mordekhay and last: Emaanuel de Witte -[2018-02-13T08:35:11.670] [INFO] cheese - inserting 1000 documents. first: NRK P13 and last: Laurenţiu Streza -[2018-02-13T08:35:11.729] [INFO] cheese - inserting 1000 documents. first: Roman Catholic dioceses in Honduras and last: Hamtaro (series) -[2018-02-13T08:35:11.737] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:35:11.739] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:35:11.740] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:11.853] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T08:35:11.922] [INFO] cheese - inserting 1000 documents. first: File:Tamil Virtual University.jpg and last: Sir Olivers Song -[2018-02-13T08:35:11.931] [INFO] cheese - inserting 1000 documents. first: Oculinidae and last: Warpes -[2018-02-13T08:35:11.986] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:35:11.996] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:12.083] [INFO] cheese - inserting 1000 documents. first: Template:User browser:Any other browser than Microsoft Internet Explorer and last: Main sequence star -[2018-02-13T08:35:12.101] [INFO] cheese - inserting 1000 documents. first: Chateau de Beggen and last: Sava Mutkurov -[2018-02-13T08:35:12.131] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:35:12.166] [INFO] cheese - inserting 1000 documents. first: TasRail TR class and last: Chengdu Tianfu International Airport -[2018-02-13T08:35:12.171] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:35:12.213] [INFO] cheese - inserting 1000 documents. first: Stemness and last: Wikipedia:Village pump (policy)/Archive 127 -[2018-02-13T08:35:12.227] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:35:12.259] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Editor review/KC Panchal and last: The Decision (song) -[2018-02-13T08:35:12.269] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:35:12.320] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:12.352] [INFO] cheese - inserting 1000 documents. first: Tehues and last: Tamara Bull -[2018-02-13T08:35:12.399] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:35:12.425] [INFO] cheese - inserting 1000 documents. first: Arboleas and last: The Tale of Kieu -[2018-02-13T08:35:12.512] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:35:12.525] [INFO] cheese - inserting 1000 documents. first: Wilbert Jones and last: South Saddle Mountain -[2018-02-13T08:35:12.596] [INFO] cheese - inserting 1000 documents. first: * (disambiguation) and last: Sedes (band) -[2018-02-13T08:35:12.606] [INFO] cheese - inserting 1000 documents. first: Louisiana gubernatorial election, 1963-64 and last: Pickens County Airport (Georgia) -[2018-02-13T08:35:12.624] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:35:12.633] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:35:12.653] [INFO] cheese - inserting 1000 documents. first: Number Seven (Will Hoge album) and last: Wikipedia:Sockpuppet investigations/Trfc06/Archive -[2018-02-13T08:35:12.679] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:12.723] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:35:12.728] [INFO] cheese - inserting 1000 documents. first: Pioneer Oil Company Filling Station and last: Category:Albums produced by Rémi Gallego -[2018-02-13T08:35:12.786] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:12.838] [INFO] cheese - inserting 1000 documents. first: Template:Gmina Sępólno Krajeńskie and last: Amujan -[2018-02-13T08:35:12.888] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:13.015] [INFO] cheese - inserting 1000 documents. first: Pennsylvania House of Representatives, District 4 and last: Duranavir -[2018-02-13T08:35:13.087] [INFO] cheese - inserting 1000 documents. first: Abdrabuh Mansur Hadi and last: Marcus lewis -[2018-02-13T08:35:13.094] [INFO] cheese - inserting 1000 documents. first: State Highway 9 (Kerala) and last: Category:Romanesque Revival architecture in Texas -[2018-02-13T08:35:13.122] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:35:13.146] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:35:13.158] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Sslib/Archive and last: ACB Player of the Month Award -[2018-02-13T08:35:13.195] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:35:13.247] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:35:13.299] [INFO] cheese - inserting 1000 documents. first: USS Plunger (SS-2) and last: Majority Leader of the House of Representatives -[2018-02-13T08:35:13.356] [INFO] cheese - inserting 1000 documents. first: Freiburg Minster and last: Computer-generated-imagery -[2018-02-13T08:35:13.367] [INFO] cheese - inserting 1000 documents. first: Template:PVésubie and last: Wikipedia:Articles for deletion/2007-08 Lancashire FA Challenge Trophy -[2018-02-13T08:35:13.378] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:35:13.389] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/FlyDubai and last: List of European Union member states by population -[2018-02-13T08:35:13.421] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:35:13.430] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:13.463] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:13.612] [INFO] cheese - inserting 1000 documents. first: Category:Romanesque Revival architecture in Virginia and last: Farage -[2018-02-13T08:35:13.642] [INFO] cheese - inserting 1000 documents. first: Baneservice and last: Khudadad -[2018-02-13T08:35:13.665] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:35:13.710] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:35:13.764] [INFO] cheese - inserting 1000 documents. first: Emad Deh Rural District and last: Template:Database Population Aramits -[2018-02-13T08:35:13.777] [INFO] cheese - inserting 1000 documents. first: Theodore Joyce and last: Wikipedia:Articles for deletion/List of asteroids/120901-121000 -[2018-02-13T08:35:13.819] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:35:13.830] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:35:13.926] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Harvestmen Macro and last: Category:Members of the Frankfurt Parliament -[2018-02-13T08:35:13.946] [INFO] cheese - inserting 1000 documents. first: Alexander Nisbet and last: Kishi Asako -[2018-02-13T08:35:13.973] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:14.021] [INFO] cheese - inserting 1000 documents. first: Yoojimboo (movie) and last: Parthenon marbles -[2018-02-13T08:35:14.032] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:35:14.089] [INFO] cheese - inserting 1000 documents. first: Proto-Austroasiatic language and last: Wikipedia:Articles for deletion/Moldova-South Korea relations -[2018-02-13T08:35:14.118] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:35:14.122] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T08:35:14.162] [INFO] cheese - inserting 1000 documents. first: Chanchamayo FC and last: Wikipedia:Administrators' noticeboard/IncidentArchive599 -[2018-02-13T08:35:14.273] [INFO] cheese - inserting 1000 documents. first: File:BirminghamCorpHydrant.jpg and last: Altinkum -[2018-02-13T08:35:14.294] [INFO] cheese - inserting 1000 documents. first: Category:Intellectual property adjudication bodies and last: Template:WikiProject Latin America/testcases -[2018-02-13T08:35:14.300] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:14.365] [INFO] cheese - inserting 1000 documents. first: Daniela Escobar and last: Gudarzi -[2018-02-13T08:35:14.367] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:35:14.435] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:35:14.512] [INFO] cheese - batch complete in: 1.317 secs -[2018-02-13T08:35:14.600] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Good article reassessment/Byzantine-Arab Wars (780-1180)/1 and last: Aragami (video game) -[2018-02-13T08:35:14.641] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:35:14.700] [INFO] cheese - inserting 1000 documents. first: Alexander Vorobyov and last: File:Manhattan 1 20 025.jpg -[2018-02-13T08:35:14.714] [INFO] cheese - inserting 1000 documents. first: Chukotian languages and last: College of fine arts -[2018-02-13T08:35:14.753] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:35:14.755] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:35:14.840] [INFO] cheese - inserting 1000 documents. first: CVB 42 and last: Edmonton Beverly-Clareview -[2018-02-13T08:35:14.855] [INFO] cheese - inserting 1000 documents. first: File:George Formby with friends - April 1915.JPG and last: File:The Stranglers and Friends - Live in Concert.jpg -[2018-02-13T08:35:14.855] [INFO] cheese - inserting 1000 documents. first: Rick Waugh (Canadian) and last: Qal'eh Gach Giran -[2018-02-13T08:35:14.874] [INFO] cheese - inserting 1000 documents. first: Gstreamer and last: Samuel C. Hyde -[2018-02-13T08:35:14.880] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T08:35:14.881] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:14.901] [INFO] cheese - inserting 1000 documents. first: File:Adam Hills in Gordon Street Tonight logo.jpg and last: Dernier domicile connu -[2018-02-13T08:35:14.907] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:35:14.929] [INFO] cheese - inserting 1000 documents. first: Robert Smith (baseball) and last: Air tide -[2018-02-13T08:35:14.947] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:35:14.971] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:35:15.014] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:35:15.131] [INFO] cheese - inserting 1000 documents. first: File:Djevara band 2008.jpg and last: Kenny Baysmore -[2018-02-13T08:35:15.164] [INFO] cheese - inserting 1000 documents. first: File:UW-Superior logo.png and last: Template:1939-40 in European Football (UEFA) -[2018-02-13T08:35:15.165] [INFO] cheese - batch complete in: 0.412 secs -[2018-02-13T08:35:15.176] [INFO] cheese - inserting 1000 documents. first: William Mattice and last: Staedterdorf -[2018-02-13T08:35:15.203] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:35:15.228] [INFO] cheese - inserting 1000 documents. first: Qal'eh-ye Kajgiran and last: Ab Naru, Mamasani -[2018-02-13T08:35:15.247] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:35:15.299] [INFO] cheese - batch complete in: 0.392 secs -[2018-02-13T08:35:15.317] [INFO] cheese - inserting 1000 documents. first: Category:Croatian Ice Hockey League seasons and last: Mikolaj Marek Dowgielewicz -[2018-02-13T08:35:15.360] [INFO] cheese - batch complete in: 0.389 secs -[2018-02-13T08:35:15.449] [INFO] cheese - inserting 1000 documents. first: Fast Romantics and last: Category:Princesses of Carignan -[2018-02-13T08:35:15.461] [INFO] cheese - inserting 1000 documents. first: Atmospheric oscillation and last: Argeos -[2018-02-13T08:35:15.522] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:15.535] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:35:15.580] [INFO] cheese - inserting 1000 documents. first: Esteé Lauder and last: China (Vangelis album) -[2018-02-13T08:35:15.621] [INFO] cheese - inserting 1000 documents. first: Captain Cook's Pine and last: File:HappyEndingsPoster.jpg -[2018-02-13T08:35:15.670] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:35:15.685] [INFO] cheese - inserting 1000 documents. first: Template:1933-34 Big Ten Conference men's basketball standings and last: Template:1963-64 NHL season by team -[2018-02-13T08:35:15.690] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:35:15.846] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:15.862] [INFO] cheese - inserting 1000 documents. first: Abgasht-e Madui and last: Category:Lists of women Twenty20 International cricketers -[2018-02-13T08:35:15.934] [INFO] cheese - inserting 1000 documents. first: Pangi Territory and last: 2012 Copa Inca -[2018-02-13T08:35:15.933] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:35:16.001] [INFO] cheese - inserting 1000 documents. first: Category:Basketball in Ecuador and last: File:RogerWithFriends.jpg -[2018-02-13T08:35:16.042] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:35:16.117] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:35:16.259] [INFO] cheese - inserting 1000 documents. first: The Price of Fame:Tv Series and last: Valverde (province) -[2018-02-13T08:35:16.314] [INFO] cheese - inserting 1000 documents. first: Romano Galvani and last: The Lenox Hotel -[2018-02-13T08:35:16.339] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:35:16.343] [INFO] cheese - inserting 1000 documents. first: Jimmy Whitehouse and last: Woking Muslim Mission -[2018-02-13T08:35:16.363] [INFO] cheese - inserting 1000 documents. first: Frank Freda and last: Template:1962-63 in Spanish football -[2018-02-13T08:35:16.388] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:35:16.423] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:35:16.468] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:35:16.488] [INFO] cheese - inserting 1000 documents. first: Yanaimalai hills and last: 1925 Iowa Hawkeyes football team -[2018-02-13T08:35:16.582] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:35:16.663] [INFO] cheese - inserting 1000 documents. first: Template:Infobox Clan/doc and last: Same-sex civil unions in the united states -[2018-02-13T08:35:16.753] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:35:16.806] [INFO] cheese - inserting 1000 documents. first: Template:1964-69 Sports Illustrated Swimsuit and last: Malovic -[2018-02-13T08:35:16.807] [INFO] cheese - inserting 1000 documents. first: Pieter van der Hurk and last: Palmayra Atoll -[2018-02-13T08:35:16.843] [INFO] cheese - batch complete in: 0.408 secs -[2018-02-13T08:35:16.874] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:35:16.960] [INFO] cheese - inserting 1000 documents. first: Ice cream headache and last: R. Pacheco -[2018-02-13T08:35:16.966] [INFO] cheese - inserting 1000 documents. first: Trusham and last: City and Borough of Sitka, Alaska -[2018-02-13T08:35:17.005] [INFO] cheese - inserting 1000 documents. first: Fano's lemma and last: Archdiocese of Potenza-Muro Lucano-Marsico Nuovo -[2018-02-13T08:35:17.016] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:35:17.044] [INFO] cheese - inserting 1000 documents. first: Climate change delusion and last: Clifford Constitution -[2018-02-13T08:35:17.087] [INFO] cheese - inserting 1000 documents. first: Badamak, Fars and last: File:The Movies original lineup.jpg -[2018-02-13T08:35:17.097] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:35:17.114] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:35:17.140] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:35:17.174] [INFO] cheese - inserting 1000 documents. first: List of AAA World Cruiserweight Champions and last: Provelosaurus -[2018-02-13T08:35:17.183] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:35:17.215] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:35:17.285] [INFO] cheese - inserting 1000 documents. first: File:Kinetic by Joel Vaughn.jpg and last: Template:2010-11 Division I independents standings (men)/doc -[2018-02-13T08:35:17.326] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:17.425] [INFO] cheese - inserting 1000 documents. first: Orwell (disambiguation) and last: Macintosh User Groups in the UK -[2018-02-13T08:35:17.488] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:35:17.512] [INFO] cheese - inserting 1000 documents. first: Samten Migdron and last: Pale Pinion -[2018-02-13T08:35:17.524] [INFO] cheese - inserting 1000 documents. first: Template:2010-11 CCHA standings (men) and last: 1114 AD -[2018-02-13T08:35:17.530] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Joplin Demize and last: Zofia Filip -[2018-02-13T08:35:17.542] [INFO] cheese - inserting 1000 documents. first: Philip Sargant Florence and last: Filthy Rich (TV series) -[2018-02-13T08:35:17.543] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T08:35:17.589] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:35:17.592] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:35:17.609] [INFO] cheese - inserting 1000 documents. first: John Thomas Seton and last: Housing Project (album) -[2018-02-13T08:35:17.611] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:35:17.694] [INFO] cheese - inserting 1000 documents. first: Euro Taillights and last: Portal:Food/Selected person/12 -[2018-02-13T08:35:17.712] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:17.772] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:35:17.845] [INFO] cheese - inserting 1000 documents. first: 1115 AD and last: Template:2011-12 NCAA Division I FBS football conferences -[2018-02-13T08:35:17.860] [INFO] cheese - inserting 1000 documents. first: Bush administration (2000) and last: Category:Satirical television programmes -[2018-02-13T08:35:17.877] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:35:18.064] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:35:18.247] [INFO] cheese - inserting 1000 documents. first: Template:2011-12 Mountain West Conference men's basketball standings and last: Template:2013-14 Big West men's basketball standings -[2018-02-13T08:35:18.268] [INFO] cheese - inserting 1000 documents. first: Darreh Chapi, Lorestan and last: File:AT&T logo.svg -[2018-02-13T08:35:18.273] [INFO] cheese - inserting 1000 documents. first: We are fed up and last: Saltarelli -[2018-02-13T08:35:18.273] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:35:18.289] [INFO] cheese - inserting 1000 documents. first: Notocrypta feisthamelii and last: Ruby Ross Wood -[2018-02-13T08:35:18.318] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Writing your first article and last: FELDA -[2018-02-13T08:35:18.321] [INFO] cheese - inserting 1000 documents. first: That Same Old Feeling and last: Beacom College -[2018-02-13T08:35:18.324] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:35:18.330] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:35:18.355] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:35:18.404] [INFO] cheese - inserting 1000 documents. first: Exeter Township School District and last: Brownstone musical -[2018-02-13T08:35:18.407] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:18.417] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:35:18.505] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:35:18.604] [INFO] cheese - inserting 1000 documents. first: Template:2013-14 FA WSL PFA Team of the Year and last: Template:2014-15 Premier League table/testcases -[2018-02-13T08:35:18.649] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T08:35:18.693] [INFO] cheese - inserting 1000 documents. first: Category:C-Class Nickelodeon articles of High-importance and last: BANGLADESH -[2018-02-13T08:35:18.726] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:35:18.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Feng Sushi and last: To India - My Native Land -[2018-02-13T08:35:18.797] [INFO] cheese - inserting 1000 documents. first: Right In The Night (Whigfield Song) and last: W Wells (Middlesex cricketer) -[2018-02-13T08:35:18.816] [INFO] cheese - inserting 1000 documents. first: U.G. Krishnamurti and last: The Witness (1969 French film) -[2018-02-13T08:35:18.843] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:35:18.886] [INFO] cheese - inserting 1000 documents. first: Umbilicus (disambiguation) and last: Risu Akizuki -[2018-02-13T08:35:18.871] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:35:18.924] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:35:18.970] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:35:18.989] [INFO] cheese - inserting 1000 documents. first: Specialist registrar and last: Nazdrat -[2018-02-13T08:35:19.020] [INFO] cheese - inserting 1000 documents. first: Closing ceremony at the olympic games and last: Index of philosophy of language articles -[2018-02-13T08:35:19.053] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:35:19.059] [INFO] cheese - inserting 1000 documents. first: Sleepwalker (Shtirski) and last: Template:2015-16 UEFA Champions League Group H table/doc -[2018-02-13T08:35:19.089] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:19.102] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:35:19.136] [INFO] cheese - inserting 1000 documents. first: IRAQ and last: Core Based Statistical Areas -[2018-02-13T08:35:19.173] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:35:19.231] [INFO] cheese - inserting 1000 documents. first: Inka Tampu, Huayopata and last: Haymaking (disambiguation) -[2018-02-13T08:35:19.352] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:35:19.440] [INFO] cheese - inserting 1000 documents. first: N69 and last: Archdiocese of Fianarantsoa -[2018-02-13T08:35:19.460] [INFO] cheese - inserting 1000 documents. first: Lewis Williams (disambiguation) and last: Template:Campaignbox Lithuanian Civil War of 1431-1435 -[2018-02-13T08:35:19.466] [INFO] cheese - inserting 1000 documents. first: Category:A-Class Kurdistan articles and last: Portal:Nautical/Featured Knot/20 -[2018-02-13T08:35:19.484] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:35:19.522] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:35:19.553] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:35:19.601] [INFO] cheese - inserting 1000 documents. first: Couch Park and last: Air Rally -[2018-02-13T08:35:19.601] [INFO] cheese - inserting 1000 documents. first: Kenneth J. Spreitzer and last: Ecoteaux (Vaud) -[2018-02-13T08:35:19.646] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:35:19.657] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:35:19.669] [INFO] cheese - inserting 1000 documents. first: Virginia-class cruiser and last: Transdermal patch -[2018-02-13T08:35:19.699] [INFO] cheese - inserting 1000 documents. first: Geelkuriban and last: Category:1902 in China -[2018-02-13T08:35:19.735] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:35:19.768] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:35:19.825] [INFO] cheese - inserting 1000 documents. first: Deepavali (film) and last: Cheesy Bean & Rice Burrito -[2018-02-13T08:35:19.828] [INFO] cheese - inserting 1000 documents. first: Jiwan Luitel and last: File:TheMosquitoCoastNovel.jpg -[2018-02-13T08:35:19.854] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:35:19.873] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:35:19.889] [INFO] cheese - inserting 1000 documents. first: Template:Sbw-big and last: Henry Nicholas (disambiguation) -[2018-02-13T08:35:19.913] [INFO] cheese - inserting 1000 documents. first: Pregnin and last: Shermann Audio -[2018-02-13T08:35:19.932] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:19.963] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T08:35:20.037] [INFO] cheese - inserting 1000 documents. first: Joel Henry Hildebrand and last: Kin Platt -[2018-02-13T08:35:20.072] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T08:35:20.186] [INFO] cheese - inserting 1000 documents. first: File:Samson head on.jpg and last: Shield-Wizard Comics -[2018-02-13T08:35:20.187] [INFO] cheese - inserting 1000 documents. first: Ipan, Guam and last: Mountbatten, Devon -[2018-02-13T08:35:20.225] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:35:20.242] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:35:20.291] [INFO] cheese - inserting 1000 documents. first: Eddie Roebuck and last: Baragharia -[2018-02-13T08:35:20.305] [INFO] cheese - inserting 1000 documents. first: Sweet Seasons and last: Shayātīn -[2018-02-13T08:35:20.317] [INFO] cheese - inserting 1000 documents. first: Cheesy Roll Up and last: Category:Finnish major generals -[2018-02-13T08:35:20.320] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:35:20.357] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T08:35:20.366] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:35:20.423] [INFO] cheese - inserting 1000 documents. first: USS Roosevelt (DDG-80) and last: Repeat --- The Best of Jethro Tull --- Vol II -[2018-02-13T08:35:20.439] [INFO] cheese - inserting 1000 documents. first: Andy Russo and last: Unleashed (Toby Keith album) -[2018-02-13T08:35:20.543] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:35:20.591] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:20.696] [INFO] cheese - inserting 1000 documents. first: John Tredinnick Crocker and last: File:Charles W Chesnutt Library.jpg -[2018-02-13T08:35:20.705] [INFO] cheese - inserting 1000 documents. first: Category:Lists of prisons in China and last: Fighting Fools -[2018-02-13T08:35:20.764] [INFO] cheese - inserting 1000 documents. first: Template:Sfrac/sandbox and last: Unsellables (UK TV series) -[2018-02-13T08:35:20.812] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:35:20.811] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:35:20.866] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:35:20.916] [INFO] cheese - inserting 1000 documents. first: Vladimir Lurasov and last: Category:Visitor attractions in Tartu County -[2018-02-13T08:35:20.947] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:35:21.010] [INFO] cheese - inserting 1000 documents. first: Obsza and last: The Who Collection, Volume Two -[2018-02-13T08:35:21.020] [INFO] cheese - inserting 1000 documents. first: State University of New York at Brockport and last: Category:Fal catchment -[2018-02-13T08:35:21.080] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:35:21.091] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:35:21.253] [INFO] cheese - inserting 1000 documents. first: File:PointersOperaHouse.jpg and last: Etrépilly -[2018-02-13T08:35:21.328] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:35:21.375] [INFO] cheese - inserting 1000 documents. first: Category:Defunct townships in Adams County, North Dakota and last: Bruno Bianchi (cartoonist) -[2018-02-13T08:35:21.378] [INFO] cheese - inserting 1000 documents. first: Sentence symbol and last: Category:Christian clergy in Canada -[2018-02-13T08:35:21.394] [INFO] cheese - inserting 1000 documents. first: Joseph (Bible) and last: Dicen que Soy un Mujeriego -[2018-02-13T08:35:21.423] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:35:21.427] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:21.468] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:35:21.484] [INFO] cheese - inserting 1000 documents. first: The Salamander (film) and last: Template:Waitemata by-election, 1941 -[2018-02-13T08:35:21.523] [INFO] cheese - inserting 1000 documents. first: 28 June 2004 and last: File:UD 5 Lily.jpg -[2018-02-13T08:35:21.547] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:35:21.581] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Don't Tell Me Promo Tour and last: Chartier's Creek, Pennsylvania -[2018-02-13T08:35:21.618] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:35:21.627] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:35:21.661] [INFO] cheese - inserting 1000 documents. first: Liar's Poker and last: Charles M. Price -[2018-02-13T08:35:21.759] [INFO] cheese - inserting 1000 documents. first: Stanisław Antoni Poniatowski and last: CD64 -[2018-02-13T08:35:21.769] [INFO] cheese - batch complete in: 1.226 secs -[2018-02-13T08:35:21.860] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:35:21.917] [INFO] cheese - inserting 1000 documents. first: Felis onca and last: American Guns -[2018-02-13T08:35:21.996] [INFO] cheese - inserting 1000 documents. first: Les Créoles and last: 2011-12 UEFA Champions League -[2018-02-13T08:35:21.998] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2016 April 18 and last: Template:NandiAwardBestActor 2000-2019 -[2018-02-13T08:35:22.018] [INFO] cheese - inserting 1000 documents. first: The Bastards and the Knives and last: Eslamabad, Neyriz -[2018-02-13T08:35:22.055] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:22.055] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:22.067] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:35:22.109] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:35:22.234] [INFO] cheese - inserting 1000 documents. first: Berdkunk’ and last: Francis Maneoru -[2018-02-13T08:35:22.275] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:35:22.277] [INFO] cheese - inserting 1000 documents. first: Template:IRT Broadway - Seventh Avenue Line and last: Template:Unicode chart CJK Unified Ideographs (8D00-9FFF) -[2018-02-13T08:35:22.306] [INFO] cheese - batch complete in: 0.251 secs -[2018-02-13T08:35:22.337] [INFO] cheese - inserting 1000 documents. first: Category:Animal Liberation Front and last: New Brighton A.F.C., New Zealand -[2018-02-13T08:35:22.405] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:35:22.418] [INFO] cheese - inserting 1000 documents. first: Sieves and last: David Pierre Eto'o Fils -[2018-02-13T08:35:22.485] [INFO] cheese - inserting 1000 documents. first: File:Cirsium muticum.jpg and last: Crocidura negligens -[2018-02-13T08:35:22.492] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:22.513] [INFO] cheese - inserting 1000 documents. first: Westminster (district board) and last: Anthony Boam -[2018-02-13T08:35:22.560] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T08:35:22.569] [INFO] cheese - inserting 1000 documents. first: Charles Melvin Price and last: USAir Arena -[2018-02-13T08:35:22.577] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:35:22.591] [INFO] cheese - inserting 1000 documents. first: Badamuyi and last: Sharman's rock-wallaby -[2018-02-13T08:35:22.625] [INFO] cheese - inserting 1000 documents. first: Template:Skøyen-Filipstadlinjen and last: Fathima Reddy -[2018-02-13T08:35:22.661] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:35:22.662] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:35:22.717] [INFO] cheese - batch complete in: 0.948 secs -[2018-02-13T08:35:22.741] [INFO] cheese - inserting 1000 documents. first: Monterotondo (RM) and last: Gonatista -[2018-02-13T08:35:22.792] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:22.991] [INFO] cheese - inserting 1000 documents. first: USS Repose and last: Guy Hemmings -[2018-02-13T08:35:23.013] [INFO] cheese - inserting 1000 documents. first: ZENworks Desktop Management and last: Musedit -[2018-02-13T08:35:23.019] [INFO] cheese - inserting 1000 documents. first: Stole Beer from a Golfer and last: List of religious leaders in 1914 -[2018-02-13T08:35:23.038] [INFO] cheese - inserting 1000 documents. first: Brookfield Renewable Power and last: Rio Grande (company) -[2018-02-13T08:35:23.076] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:35:23.083] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:23.133] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:35:23.151] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:23.157] [INFO] cheese - inserting 1000 documents. first: Template:Wisconsin-Whitewater Warhawks football coach navbox and last: Clyde Rocks -[2018-02-13T08:35:23.193] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/collectedpapers.com.ua and last: Student Apex Body HNB Garhwal Central University -[2018-02-13T08:35:23.260] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:35:23.300] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:35:23.472] [INFO] cheese - inserting 1000 documents. first: Samadarvish and last: Carillon (Elgar) -[2018-02-13T08:35:23.537] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:23.588] [INFO] cheese - inserting 1000 documents. first: Slovak People's Party and last: Gaunts ghosts -[2018-02-13T08:35:23.652] [INFO] cheese - inserting 1000 documents. first: Category:Parks in Lambton County and last: Guam Regional Transit Authority -[2018-02-13T08:35:23.674] [INFO] cheese - inserting 1000 documents. first: John mcain and last: Wikipedia:WikiProject Ukrainian subdivisions -[2018-02-13T08:35:23.707] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:35:23.723] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:35:23.742] [INFO] cheese - inserting 1000 documents. first: Shungu Wembadio Pene Kikumba and last: Frank Torley -[2018-02-13T08:35:23.755] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:23.789] [INFO] cheese - inserting 1000 documents. first: George Snow Hill and last: Mazra'eh-ye Pahn -[2018-02-13T08:35:23.807] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:23.833] [INFO] cheese - inserting 1000 documents. first: B. A. Botkin and last: Bolivian sol -[2018-02-13T08:35:23.859] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:35:23.898] [INFO] cheese - inserting 1000 documents. first: Wilson-Bonifils Airield and last: Waitpinga -[2018-02-13T08:35:23.923] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:35:23.989] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:35:24.077] [INFO] cheese - inserting 1000 documents. first: Vladimir Astapovsky and last: Sorin Bușu -[2018-02-13T08:35:24.137] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:35:24.146] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Humanities/2011 December 19 and last: Simon Nielsen (disambiguation) -[2018-02-13T08:35:24.228] [INFO] cheese - inserting 1000 documents. first: Template:MICEX and last: Working envelope -[2018-02-13T08:35:24.233] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:24.274] [INFO] cheese - inserting 1000 documents. first: Category:Television plays and last: Iran - Georgia relations -[2018-02-13T08:35:24.282] [INFO] cheese - inserting 1000 documents. first: Jake Edward Ryan and last: Category:1988 disestablishments in Louisiana -[2018-02-13T08:35:24.295] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:35:24.314] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:35:24.355] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:35:24.420] [INFO] cheese - inserting 1000 documents. first: Cornelius O. Jansen and last: T. Gehrels -[2018-02-13T08:35:24.467] [INFO] cheese - inserting 1000 documents. first: Gedalia Alon and last: Jaap van der Poll -[2018-02-13T08:35:24.503] [INFO] cheese - inserting 1000 documents. first: VRR (disambiguation) and last: Wikipedia:Articles for deletion/Wizard's Convention -[2018-02-13T08:35:24.511] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:35:24.535] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:24.571] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:35:24.639] [INFO] cheese - inserting 1000 documents. first: Thomas Bryan (courtier) and last: Wikipedia:Articles for deletion/Christopher Twitchen -[2018-02-13T08:35:24.687] [INFO] cheese - inserting 1000 documents. first: Traffic classification and last: Lee Cox (disambiguation) -[2018-02-13T08:35:24.690] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:35:24.699] [INFO] cheese - inserting 1000 documents. first: Eugène de Planard and last: Category:1900-01 in Italian football -[2018-02-13T08:35:24.757] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:35:24.795] [INFO] cheese - inserting 1000 documents. first: File:Makemepure.JPG and last: File:Itk GNF1H.png -[2018-02-13T08:35:24.876] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:24.968] [INFO] cheese - inserting 1000 documents. first: Category:Rabbinic Judaism and last: Henry Edmund Donnelly -[2018-02-13T08:35:24.983] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:35:25.057] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:35:25.167] [INFO] cheese - inserting 1000 documents. first: Black and Gold (Will Coleman song) and last: Attleboro station -[2018-02-13T08:35:25.183] [INFO] cheese - inserting 1000 documents. first: Annetta and last: Bartlett, TN -[2018-02-13T08:35:25.224] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:35:25.225] [INFO] cheese - inserting 1000 documents. first: Category:2009 Big East Conference football season and last: Gad loch -[2018-02-13T08:35:25.252] [INFO] cheese - inserting 1000 documents. first: Brick Presbyterian Church Complex and last: WSVL-LP -[2018-02-13T08:35:25.258] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:35:25.309] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:35:25.361] [INFO] cheese - inserting 1000 documents. first: San Pedro Southwestern Railroad and last: Wikipedia:Featured picture candidates/Musa x paradisiaca flower -[2018-02-13T08:35:25.365] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:35:25.400] [INFO] cheese - inserting 1000 documents. first: Category:Sports venues in Prince Edward Island and last: Roger Jones (mathematician) -[2018-02-13T08:35:25.430] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:35:25.521] [INFO] cheese - inserting 1000 documents. first: Baithu Rahma and last: Haroon Moghul -[2018-02-13T08:35:25.531] [INFO] cheese - batch complete in: 0.96 secs -[2018-02-13T08:35:25.580] [INFO] cheese - inserting 1000 documents. first: Category:1907-08 in Italian football and last: Category:1936-37 in French football -[2018-02-13T08:35:25.617] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:35:25.630] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:35:25.690] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Syracuse to Washington, DC flights and last: Bertsch-Oceanview, CA -[2018-02-13T08:35:25.690] [INFO] cheese - inserting 1000 documents. first: Fernando de Toro and last: Wikipedia:Articles for deletion/Itchycoo Park -[2018-02-13T08:35:25.742] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:25.765] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:35:25.889] [INFO] cheese - inserting 1000 documents. first: Heel strike (gait) and last: Duchess consort of Anjou -[2018-02-13T08:35:26.000] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:26.026] [INFO] cheese - inserting 1000 documents. first: The Knower (song) and last: Category:1940-41 in German football leagues -[2018-02-13T08:35:26.040] [INFO] cheese - inserting 1000 documents. first: Jesús (wrestler) and last: Sterling SAR 87 -[2018-02-13T08:35:26.047] [INFO] cheese - inserting 1000 documents. first: Martín Travieso Nieva and last: Shimon Ratner -[2018-02-13T08:35:26.083] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:35:26.119] [INFO] cheese - inserting 1000 documents. first: Wattenmeer and last: Boyd County, KY -[2018-02-13T08:35:26.136] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:35:26.166] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T08:35:26.207] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:35:26.220] [INFO] cheese - inserting 1000 documents. first: Category:Books by Fredric Jameson and last: The Strange Awakening -[2018-02-13T08:35:26.267] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:35:26.323] [INFO] cheese - inserting 1000 documents. first: Jack White VC and last: J. I. Wedgwood -[2018-02-13T08:35:26.399] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:35:26.547] [INFO] cheese - inserting 1000 documents. first: Abitibi–Témiscamingue and last: List of highways numbered 452 -[2018-02-13T08:35:26.550] [INFO] cheese - inserting 1000 documents. first: Category:1941-42 in European ice hockey and last: Category:1953-54 in Italian football leagues -[2018-02-13T08:35:26.557] [INFO] cheese - inserting 1000 documents. first: Créoles and last: The George C. Marshall Space Flight Center -[2018-02-13T08:35:26.618] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:35:26.625] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:35:26.640] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:35:26.667] [INFO] cheese - inserting 1000 documents. first: Dinosaur Bones and last: Robert Leroux -[2018-02-13T08:35:26.686] [INFO] cheese - inserting 1000 documents. first: Godspeed on the Devil's Thunder and last: Burkes Tavern, Virginia -[2018-02-13T08:35:26.723] [INFO] cheese - inserting 1000 documents. first: Boyd County, NE and last: Wikipedia:Articles for deletion/List of every mayor in the World -[2018-02-13T08:35:26.766] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:35:26.805] [INFO] cheese - inserting 1000 documents. first: Jane Hedges Todd and last: Lahure (disambiguation) -[2018-02-13T08:35:26.821] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:35:26.849] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:35:26.949] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:35:27.016] [INFO] cheese - inserting 1000 documents. first: Category:1956-57 in American soccer and last: Stupinsky Municipal District -[2018-02-13T08:35:27.077] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:35:27.194] [INFO] cheese - inserting 1000 documents. first: The story of a mother and last: Pine moth -[2018-02-13T08:35:27.255] [INFO] cheese - inserting 1000 documents. first: Template:Laughlin-Needles-Lake Havasu City Radio and last: Acacia turgida -[2018-02-13T08:35:27.264] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:35:27.284] [INFO] cheese - inserting 1000 documents. first: Antitype armena and last: File:AngieBolen.jpg -[2018-02-13T08:35:27.355] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:35:27.380] [INFO] cheese - inserting 1000 documents. first: Concerti grossi, Op.6 (Handel) and last: Oqulak -[2018-02-13T08:35:27.399] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:35:27.444] [INFO] cheese - inserting 1000 documents. first: Category:1959-60 in Spanish basketball and last: Category:1972-73 in Asian association football leagues -[2018-02-13T08:35:27.457] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:35:27.470] [INFO] cheese - inserting 1000 documents. first: Category:Busan Metro lines and last: File:Mieleton elokuu.jpg -[2018-02-13T08:35:27.498] [INFO] cheese - inserting 1000 documents. first: Abdul 2 Ghani and last: Category:Top-importance emergency medicine and EMS articles -[2018-02-13T08:35:27.507] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:35:27.556] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:35:27.594] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:35:27.634] [INFO] cheese - inserting 1000 documents. first: AS-105 (spacecraft) and last: Brooksville, MS -[2018-02-13T08:35:27.726] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:35:27.767] [INFO] cheese - inserting 1000 documents. first: Category:1972-73 in Spanish football leagues and last: Category:1979-80 in Welsh football -[2018-02-13T08:35:27.788] [INFO] cheese - batch complete in: 0.281 secs -[2018-02-13T08:35:27.822] [INFO] cheese - inserting 1000 documents. first: Tapps-Gervis-Meyrick baronets and last: BHSF -[2018-02-13T08:35:27.874] [INFO] cheese - inserting 1000 documents. first: El Dorado and Western Railway and last: Canine gait -[2018-02-13T08:35:27.926] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:35:27.932] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:35:27.969] [INFO] cheese - inserting 1000 documents. first: Gillmeria tetradactyla and last: Banksia rufa ssp. tutanningensis -[2018-02-13T08:35:27.972] [INFO] cheese - inserting 1000 documents. first: Owl Molla and last: Technogypsie -[2018-02-13T08:35:28.083] [INFO] cheese - inserting 1000 documents. first: Bemidji State Beavers softball and last: Wikipedia:WikiProject Spam/LinkReports/eautoship.com -[2018-02-13T08:35:28.084] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:28.086] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:35:28.106] [INFO] cheese - inserting 1000 documents. first: Kiga Station and last: Super Sapiens -[2018-02-13T08:35:28.164] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:28.170] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:35:28.233] [INFO] cheese - inserting 1000 documents. first: Brooksville, OK and last: Lyon Playfair -[2018-02-13T08:35:28.319] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:35:28.325] [INFO] cheese - inserting 1000 documents. first: Category:1978-79 Scottish Football League and last: Template:1966 Japan Soccer League Team of the Year -[2018-02-13T08:35:28.419] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:35:28.472] [INFO] cheese - inserting 1000 documents. first: Debora Kinski and last: Interfaith officiants -[2018-02-13T08:35:28.474] [INFO] cheese - inserting 1000 documents. first: Amtorg Trading Association and last: Cedar Creek Grist Mill -[2018-02-13T08:35:28.526] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:35:28.531] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:35:28.566] [INFO] cheese - inserting 1000 documents. first: Category:Las Vegas Locomotives and last: Wikipedia:WikiProject Spam/LinkReports/sante-club.com -[2018-02-13T08:35:28.569] [INFO] cheese - inserting 1000 documents. first: Speak My Mind and last: John Sidney “Sid” Dinsdale -[2018-02-13T08:35:28.630] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:35:28.628] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:35:28.670] [INFO] cheese - inserting 1000 documents. first: File:Bgd.png and last: Baloncesto Galicia Ferrol -[2018-02-13T08:35:28.700] [INFO] cheese - inserting 1000 documents. first: Mary Sue Terry and last: Matákoan -[2018-02-13T08:35:28.739] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:35:28.831] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:35:28.853] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/medicalnewstoday.com and last: River Maine (Kerry) -[2018-02-13T08:35:28.879] [INFO] cheese - inserting 1000 documents. first: Kuusjoki and last: Carlinville, IL -[2018-02-13T08:35:28.924] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:35:28.961] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:28.973] [INFO] cheese - inserting 1000 documents. first: Peter Struwwel and last: Wikipedia:Requests for checkuser/Case/Unicorn144 -[2018-02-13T08:35:29.050] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:35:29.095] [INFO] cheese - inserting 1000 documents. first: I Never Knew (What That Song Meant Before) (song) and last: Category:Park Ave. members -[2018-02-13T08:35:29.139] [INFO] cheese - inserting 1000 documents. first: Juan Manuel Sánchez, Duke of Almodóvar del Río and last: Integrated computer-aided manufacturing -[2018-02-13T08:35:29.191] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:35:29.251] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:29.286] [INFO] cheese - inserting 1000 documents. first: Bahara, India and last: Turoctocog -[2018-02-13T08:35:29.371] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:35:29.397] [INFO] cheese - inserting 1000 documents. first: Conventional truck and last: Mărgineni, Bacău -[2018-02-13T08:35:29.446] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:35:29.473] [INFO] cheese - inserting 1000 documents. first: Carlisle, AR and last: Cherokee, IA -[2018-02-13T08:35:29.506] [INFO] cheese - inserting 1000 documents. first: Infraspecific and last: Doneva -[2018-02-13T08:35:29.524] [INFO] cheese - inserting 1000 documents. first: Matakoan and last: Heidi Zeigler -[2018-02-13T08:35:29.600] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:35:29.620] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:29.643] [INFO] cheese - inserting 1000 documents. first: Saijanjoki and last: NightOwl Convenience Stores -[2018-02-13T08:35:29.654] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:35:29.741] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:35:29.756] [INFO] cheese - inserting 1000 documents. first: File:1991 NHL Draft.png and last: 1854 AHS -[2018-02-13T08:35:29.879] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:35:29.920] [INFO] cheese - inserting 1000 documents. first: M G George Muthoot and last: The Hub (Programme) -[2018-02-13T08:35:29.965] [INFO] cheese - inserting 1000 documents. first: Template:Nothanks/doc and last: Wikipedia:Articles for deletion/Owain Phyfe -[2018-02-13T08:35:30.074] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:35:30.119] [INFO] cheese - inserting 1000 documents. first: Cherokee, KS and last: Clinton County, IL -[2018-02-13T08:35:30.119] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:35:30.166] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:35:30.196] [INFO] cheese - inserting 1000 documents. first: Rai Sport and last: Genevieve Dieudonné -[2018-02-13T08:35:30.265] [INFO] cheese - batch complete in: 0.819 secs -[2018-02-13T08:35:30.277] [INFO] cheese - inserting 1000 documents. first: Template:Tinashe singles and last: Hunt Club (disambiguation) -[2018-02-13T08:35:30.351] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:30.446] [INFO] cheese - inserting 1000 documents. first: Harbor–UCLA Medical Center and last: John George "Jack" Phillips -[2018-02-13T08:35:30.477] [INFO] cheese - inserting 1000 documents. first: Clinton County, IN and last: Couderay (village), Sawyer County, WI -[2018-02-13T08:35:30.507] [INFO] cheese - inserting 1000 documents. first: Zeyn'ali and last: File:Lil Wayne - Mirror (single cover).jpg -[2018-02-13T08:35:30.508] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:35:30.517] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:35:30.528] [INFO] cheese - inserting 1000 documents. first: Khankhamis-e Olya and last: 41st Annual Primetime Emmy Awards -[2018-02-13T08:35:30.596] [INFO] cheese - inserting 1000 documents. first: Joseph-Nicolas-Pancrace Royer and last: Circuit training -[2018-02-13T08:35:30.598] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:35:30.641] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:35:30.726] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:35:30.820] [INFO] cheese - inserting 1000 documents. first: Soviet Top League 1957 and last: Średni Łan -[2018-02-13T08:35:30.887] [INFO] cheese - inserting 1000 documents. first: Joe Susan and last: Euxoa epicremna -[2018-02-13T08:35:30.899] [INFO] cheese - inserting 1000 documents. first: Category:Churches completed in 1445 and last: Victor Sosnora -[2018-02-13T08:35:30.901] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:35:30.967] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:35:31.014] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:35:31.047] [INFO] cheese - inserting 1000 documents. first: 1989 Primetime Emmy Awards and last: Old Myakka, FL -[2018-02-13T08:35:31.113] [INFO] cheese - inserting 1000 documents. first: Couderay (village), WI and last: Lakewood Freeway -[2018-02-13T08:35:31.118] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:35:31.137] [INFO] cheese - inserting 1000 documents. first: Template:1960 College Football Consensus All-Americans and last: 1967–68 Tranmere Rovers F.C. season -[2018-02-13T08:35:31.147] [INFO] cheese - inserting 1000 documents. first: File:Matt Will Don't Let It Go To Waste Single.JPG and last: Ust-Ianskii Ulus -[2018-02-13T08:35:31.205] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:35:31.225] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:35:31.246] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:35:31.364] [INFO] cheese - inserting 1000 documents. first: Gostinnyi Dvor and last: American girl dolls -[2018-02-13T08:35:31.440] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:35:31.441] [INFO] cheese - inserting 1000 documents. first: Old Town, FL and last: Howey-In-The-Hills, FL -[2018-02-13T08:35:31.448] [INFO] cheese - inserting 1000 documents. first: Tomaszówka and last: Daijiworld Media -[2018-02-13T08:35:31.483] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:35:31.510] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:31.575] [INFO] cheese - inserting 1000 documents. first: Category:Australian actresses who committed suicide and last: Róger Guedes -[2018-02-13T08:35:31.615] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:35:31.667] [INFO] cheese - inserting 1000 documents. first: Cumberland County, KY and last: 1960–61 United States network television schedule -[2018-02-13T08:35:31.671] [INFO] cheese - inserting 1000 documents. first: LA Tennis Open USTA Men's Challenger (I) and last: Template:POTD/2010-03-05 -[2018-02-13T08:35:31.699] [INFO] cheese - batch complete in: 0.493 secs -[2018-02-13T08:35:31.726] [INFO] cheese - inserting 1000 documents. first: Category:Flathead National Forest and last: Wartaqooqan -[2018-02-13T08:35:31.725] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:35:31.771] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:31.837] [INFO] cheese - inserting 1000 documents. first: Frederick Rossini and last: Dynamic-Tension -[2018-02-13T08:35:31.862] [INFO] cheese - inserting 1000 documents. first: Howey in the Hills, FL and last: Tarleton State Texans men's basketball -[2018-02-13T08:35:31.927] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:35:31.942] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:35:32.032] [INFO] cheese - inserting 1000 documents. first: Ancient map and last: Meriwan -[2018-02-13T08:35:32.040] [INFO] cheese - inserting 1000 documents. first: Delaware County, IN and last: Paul Rebhan -[2018-02-13T08:35:32.060] [INFO] cheese - inserting 1000 documents. first: Yu Station and last: Acetonedicarboxylic acid -[2018-02-13T08:35:32.065] [INFO] cheese - inserting 1000 documents. first: Radyo5 NewsFM Davao and last: Category:Road accident deaths in Albania -[2018-02-13T08:35:32.078] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:35:32.116] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:35:32.111] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:35:32.133] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:35:32.242] [INFO] cheese - inserting 1000 documents. first: Web management team and last: Lawry's Restaurants Inc. -[2018-02-13T08:35:32.287] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:35:32.298] [INFO] cheese - inserting 1000 documents. first: Tarleton State TexAnns women's basketball and last: Aalto, Marja-Sisko -[2018-02-13T08:35:32.308] [INFO] cheese - inserting 1000 documents. first: Asadabad Sanjabi-ye Bala and last: Category:Spanish military personnel of the Spanish Civil War (National faction) -[2018-02-13T08:35:32.337] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Gregory Arlt and last: Kingdom Hearts X -[2018-02-13T08:35:32.364] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:35:32.390] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:32.421] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:35:32.477] [INFO] cheese - inserting 1000 documents. first: Dunwoody, GA and last: Elderton, PA -[2018-02-13T08:35:32.518] [INFO] cheese - inserting 1000 documents. first: Category:Polish actors who committed suicide and last: File:Senate of Poland Composition.svg -[2018-02-13T08:35:32.554] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:35:32.579] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:35:32.659] [INFO] cheese - inserting 1000 documents. first: Don't Go To Sleep! and last: Aidan Zammit -[2018-02-13T08:35:32.729] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:35:32.765] [INFO] cheese - inserting 1000 documents. first: Rin Kono and last: Steve Gainey -[2018-02-13T08:35:32.827] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:35:32.890] [INFO] cheese - inserting 1000 documents. first: Over-investment and last: Kingston Hawthorn Cricket Club -[2018-02-13T08:35:32.892] [INFO] cheese - inserting 1000 documents. first: Due marines e un generale and last: Piazza Armenia -[2018-02-13T08:35:32.895] [INFO] cheese - inserting 1000 documents. first: Aalto, Pauliina and last: SR 833 (FL) -[2018-02-13T08:35:32.908] [INFO] cheese - inserting 1000 documents. first: Eldon, IA and last: Natural deduction logic -[2018-02-13T08:35:32.935] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:35:32.938] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:35:32.948] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:35:32.955] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T08:35:33.013] [INFO] cheese - inserting 1000 documents. first: William Laws Calley Jr. and last: Penkov -[2018-02-13T08:35:33.064] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T08:35:33.078] [INFO] cheese - inserting 1000 documents. first: Planned cesarean section and last: 1907 Australasian Championships -[2018-02-13T08:35:33.110] [INFO] cheese - inserting 1000 documents. first: Richard Curran and last: DSC-H3 -[2018-02-13T08:35:33.146] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:35:33.156] [INFO] cheese - batch complete in: 0.427 secs -[2018-02-13T08:35:33.297] [INFO] cheese - inserting 1000 documents. first: File:Lockheed-logo Winnie-Mae.png and last: Wikipedia:Articles for deletion/Hurst v. Newman -[2018-02-13T08:35:33.314] [INFO] cheese - inserting 1000 documents. first: SR 840 (FL) and last: Wikipedia:Sockpuppet investigations/50.121.48.234 -[2018-02-13T08:35:33.318] [INFO] cheese - inserting 1000 documents. first: Template:Ukrainian Women's Volleyball Super League and last: Erkna Lighthouse -[2018-02-13T08:35:33.321] [INFO] cheese - inserting 1000 documents. first: Balfour House and last: Chaa-Kholskiy -[2018-02-13T08:35:33.344] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:35:33.352] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:35:33.361] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:35:33.370] [INFO] cheese - batch complete in: 0.435 secs -[2018-02-13T08:35:33.422] [INFO] cheese - inserting 1000 documents. first: Mohawk Airlines and last: Yushan (mountain) -[2018-02-13T08:35:33.470] [INFO] cheese - inserting 1000 documents. first: Penkova and last: Category:Bicol Region geography stubs -[2018-02-13T08:35:33.493] [INFO] cheese - batch complete in: 0.538 secs -[2018-02-13T08:35:33.536] [INFO] cheese - inserting 1000 documents. first: Template:Chembox HenryConstant and last: Chimalpahin Quauhtlehuanitzin -[2018-02-13T08:35:33.563] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:35:33.645] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:35:33.662] [INFO] cheese - inserting 1000 documents. first: File:Tonkin Zouave officer.png and last: File:Dr. Jekyll and Sister Hyde.jpg -[2018-02-13T08:35:33.714] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:35:33.791] [INFO] cheese - inserting 1000 documents. first: R. ehrenbergii and last: 100,000 Homes Campaign -[2018-02-13T08:35:33.935] [INFO] cheese - inserting 1000 documents. first: Stephen Askin and last: Category:1593 crimes -[2018-02-13T08:35:33.951] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:35:33.992] [INFO] cheese - inserting 1000 documents. first: File:Image page sandbox.png and last: Nickelodean -[2018-02-13T08:35:34.094] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:35:34.109] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:35:34.140] [INFO] cheese - inserting 1000 documents. first: Traveler's Aid Association and last: 1965–66 West Ham United F.C. season -[2018-02-13T08:35:34.198] [INFO] cheese - inserting 1000 documents. first: Simon François Daumont de Saint-Lusson and last: Gwladys Yvonne McKeon -[2018-02-13T08:35:34.216] [INFO] cheese - inserting 1000 documents. first: Mathmetics and last: Dextrorotation -[2018-02-13T08:35:34.250] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:35:34.278] [INFO] cheese - inserting 1000 documents. first: Aiming station and last: Principal series representation -[2018-02-13T08:35:34.306] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:35:34.302] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:35:34.329] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:35:34.431] [INFO] cheese - inserting 1000 documents. first: Miyagi Gakuin Women's College and last: Hidden Camera -[2018-02-13T08:35:34.475] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:34.495] [INFO] cheese - inserting 1000 documents. first: Estação arqueológica do Cabeço do Vouga and last: Wikipedia:Wikipedia Signpost/2014-02-12/Technology report -[2018-02-13T08:35:34.563] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:35:34.653] [INFO] cheese - inserting 1000 documents. first: File:Tecmo Super NBA Basketball.jpg and last: Category:Government-owned companies of Singapore -[2018-02-13T08:35:34.698] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:35:34.707] [INFO] cheese - inserting 1000 documents. first: Kieler Schloss and last: John Bellasis, 1st Baron Bellasis -[2018-02-13T08:35:34.761] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:34.793] [INFO] cheese - inserting 1000 documents. first: James Turner, 1st Baron Netherthorpe and last: File:Esc-logo-klein.jpg -[2018-02-13T08:35:34.830] [INFO] cheese - inserting 1000 documents. first: John Dring and last: Arthur Lytlleton -[2018-02-13T08:35:34.847] [INFO] cheese - inserting 1000 documents. first: BitTorrent Party and last: National Association of Boat Owners -[2018-02-13T08:35:34.851] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:34.882] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:35:34.890] [INFO] cheese - inserting 1000 documents. first: Broadcast Advertising Clearance Centre and last: Franklin County, TX -[2018-02-13T08:35:34.924] [INFO] cheese - inserting 1000 documents. first: Bathysquillidae and last: Șuștiu -[2018-02-13T08:35:34.923] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:35:34.956] [INFO] cheese - inserting 1000 documents. first: Tetritsq'aro and last: Honors of Wales -[2018-02-13T08:35:34.974] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:35:34.977] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:35:35.044] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:35.056] [INFO] cheese - inserting 1000 documents. first: Kum (mountain) and last: Working (disambiguation) -[2018-02-13T08:35:35.091] [INFO] cheese - batch complete in: 0.393 secs -[2018-02-13T08:35:35.151] [INFO] cheese - inserting 1000 documents. first: Colour Fred and last: Portal:University of Oxford/Selected article/15 -[2018-02-13T08:35:35.207] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:35:35.273] [INFO] cheese - inserting 1000 documents. first: Edgar Kendall Taylor and last: Balurmachchi -[2018-02-13T08:35:35.274] [INFO] cheese - inserting 1000 documents. first: Four Hours to Kill and last: Galidzor -[2018-02-13T08:35:35.308] [INFO] cheese - inserting 1000 documents. first: File:Yaroslav Golovanov.jpg and last: File:Love-triffids.jpg -[2018-02-13T08:35:35.314] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T08:35:35.324] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:35:35.339] [INFO] cheese - inserting 1000 documents. first: Skid Row (disambiguation) and last: SN-42 -[2018-02-13T08:35:35.364] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:35:35.365] [INFO] cheese - inserting 1000 documents. first: J. L. Boerdam and last: Tommy Lee (American football) -[2018-02-13T08:35:35.394] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:35:35.436] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:35:35.469] [INFO] cheese - inserting 1000 documents. first: Abruzzi, Luigi Amedeo Giuseppe Maria Ferdinando Francesco, Duke of the and last: Wikipedia:Votes for deletion/Freetown Elementary School -[2018-02-13T08:35:35.567] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:35:35.616] [INFO] cheese - inserting 1000 documents. first: Yonit Levi and last: W269CJ -[2018-02-13T08:35:35.618] [INFO] cheese - inserting 1000 documents. first: Baka to Test to Shōkanjū: Matsuri and last: Michael von Grünau -[2018-02-13T08:35:35.662] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:35:35.674] [INFO] cheese - inserting 1000 documents. first: Category:Fb team templates Mexico and last: Wikipedia:Articles for deletion/Andino Clarinets -[2018-02-13T08:35:35.735] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:35:35.755] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:35:35.806] [INFO] cheese - inserting 1000 documents. first: William F. O'Hare and last: Template:Colorado-transport-stub -[2018-02-13T08:35:35.893] [INFO] cheese - inserting 1000 documents. first: Tony Simmons (American football) and last: Danskøya -[2018-02-13T08:35:35.911] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:35:35.950] [INFO] cheese - inserting 1000 documents. first: Perfect Liberty and last: Category:Museums in Pinellas County, Florida -[2018-02-13T08:35:35.969] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:35:36.004] [INFO] cheese - inserting 1000 documents. first: Daphane Hatzilakos and last: Wikipedia:Featured article candidates/Gross domestic product/archive1 -[2018-02-13T08:35:36.024] [INFO] cheese - inserting 1000 documents. first: Gallipolis, OH and last: Gosnold, MA -[2018-02-13T08:35:36.044] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:35:36.083] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:36.123] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:35:36.188] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Picture peer review/ Space Shuttle and last: My Man (Tammy Wynette song) -[2018-02-13T08:35:36.229] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:36.243] [INFO] cheese - inserting 1000 documents. first: File:Ashanti- good-good music video.PNG and last: Category:Executed Spanish people -[2018-02-13T08:35:36.289] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:35:36.298] [INFO] cheese - inserting 1000 documents. first: Category:Sweden football manager history navigational boxes and last: Portal:Asia/Featured picture/25 -[2018-02-13T08:35:36.345] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:35:36.418] [INFO] cheese - inserting 1000 documents. first: Kalaka (state constituency) and last: Grave Creek -[2018-02-13T08:35:36.435] [INFO] cheese - inserting 1000 documents. first: Miltochrista eccentropis and last: Khelil -[2018-02-13T08:35:36.446] [INFO] cheese - inserting 1000 documents. first: Renfro Valley, Kentucky and last: File:ParallelStance.gif -[2018-02-13T08:35:36.457] [INFO] cheese - inserting 1000 documents. first: Gosper County, NE and last: Michael Stone (federal government administrator) -[2018-02-13T08:35:36.461] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:35:36.512] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:35:36.508] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:35:36.566] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:36.627] [INFO] cheese - inserting 1000 documents. first: Wehrkunde and last: Pocatello Senior High School -[2018-02-13T08:35:36.667] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Video games/Peer review/Race Driver: Create and Race and last: King Airfield Hangar -[2018-02-13T08:35:36.669] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:36.704] [INFO] cheese - inserting 1000 documents. first: Category:Conglomerate companies of Denmark and last: Category:Irvine Meadow XI F.C. -[2018-02-13T08:35:36.710] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T08:35:36.746] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:35:36.781] [INFO] cheese - inserting 1000 documents. first: History of the Shakespeare authorship question and last: Hendrik Ernst -[2018-02-13T08:35:36.837] [INFO] cheese - inserting 1000 documents. first: Canada sochi 2014 and last: Sand-e Mirshaban -[2018-02-13T08:35:36.875] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:35:36.890] [INFO] cheese - batch complete in: 0.377 secs -[2018-02-13T08:35:36.979] [INFO] cheese - inserting 1000 documents. first: Bhuddist and last: Willow (PAT station) -[2018-02-13T08:35:37.037] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:35:37.115] [INFO] cheese - inserting 1000 documents. first: File:Tom Williams - Welsh rugby player born 1887.jpg and last: Category:Indian women choreographers -[2018-02-13T08:35:37.223] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:35:37.216] [INFO] cheese - inserting 1000 documents. first: Category:People from Rennebu and last: The Bass Player and the Blonde -[2018-02-13T08:35:37.255] [INFO] cheese - inserting 1000 documents. first: Colonial Dames of America and last: Slack space -[2018-02-13T08:35:37.291] [INFO] cheese - inserting 1000 documents. first: Fumehood and last: Gulf Breeze, FL -[2018-02-13T08:35:37.297] [INFO] cheese - inserting 1000 documents. first: Absinthe Rose and last: Mulayit Taung -[2018-02-13T08:35:37.332] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Soldier and the State and last: Category:Films directed by Ray Nazarro -[2018-02-13T08:35:37.329] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:35:37.354] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:35:37.397] [INFO] cheese - inserting 1000 documents. first: High Representative of the European Union and last: File:Nothing Worth Having Comes Easy.jpg -[2018-02-13T08:35:37.407] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:37.411] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:35:37.423] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:35:37.509] [INFO] cheese - batch complete in: 0.634 secs -[2018-02-13T08:35:37.742] [INFO] cheese - inserting 1000 documents. first: Cape Pembroke lighthouse and last: Michael John Myers -[2018-02-13T08:35:37.769] [INFO] cheese - inserting 1000 documents. first: Category:National Register of Historic Places in Box Elder County, Utah and last: File:Game-of-Thrones-S06-E02-Home.jpg -[2018-02-13T08:35:37.806] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:35:37.826] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:35:37.841] [INFO] cheese - inserting 1000 documents. first: Hajiabdollah and last: Roberto Menichelli -[2018-02-13T08:35:37.869] [INFO] cheese - inserting 1000 documents. first: Gulf City, FL and last: Alaric, King of the Visigoths -[2018-02-13T08:35:37.875] [INFO] cheese - inserting 1000 documents. first: Georgia and Florida RailNet and last: Commonweal (disambiguation) -[2018-02-13T08:35:37.892] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:35:37.917] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:35:37.930] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:37.956] [INFO] cheese - inserting 1000 documents. first: William Middleton (disambiguation) and last: Wikipedia:Requests for adminship/Llywrch -[2018-02-13T08:35:37.999] [INFO] cheese - inserting 1000 documents. first: Aven Armand and last: Wells City F.C. -[2018-02-13T08:35:38.031] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:38.063] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:35:38.066] [INFO] cheese - inserting 1000 documents. first: Pool Party (The Office) and last: Category:Basketball teams in Colombia -[2018-02-13T08:35:38.142] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:38.285] [INFO] cheese - inserting 1000 documents. first: Sayid Ali Asghar Kurdistani and last: Category:1503 establishments in Lithuania -[2018-02-13T08:35:38.298] [INFO] cheese - inserting 1000 documents. first: Marco Fidel Suarez and last: Helotes, TX -[2018-02-13T08:35:38.318] [INFO] cheese - inserting 1000 documents. first: Cho Byeong-ok and last: File:Stefan Pierer’s ownership of KTM, Husqvarna and Husaberg.png -[2018-02-13T08:35:38.327] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:35:38.335] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:35:38.369] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:35:38.416] [INFO] cheese - inserting 1000 documents. first: Action of 8 January 1780 and last: 1999–00 FA Cup -[2018-02-13T08:35:38.446] [INFO] cheese - inserting 1000 documents. first: Toronto sports and last: Central Makran range -[2018-02-13T08:35:38.455] [INFO] cheese - inserting 1000 documents. first: Clayton & Black and last: Dr. Walter E. Williams -[2018-02-13T08:35:38.456] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:35:38.513] [INFO] cheese - inserting 1000 documents. first: Category:Lakes of the Caribbean and last: South Milwaukee High School -[2018-02-13T08:35:38.516] [INFO] cheese - batch complete in: 0.374 secs -[2018-02-13T08:35:38.522] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:35:38.585] [INFO] cheese - inserting 1000 documents. first: KAMEN feat.Tatsuya Ishii and last: Massbus -[2018-02-13T08:35:38.597] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:35:38.635] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:35:38.645] [INFO] cheese - inserting 1000 documents. first: Shropshire Wildlife Trust and last: Honaker, VA -[2018-02-13T08:35:38.706] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T08:35:38.741] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Kenosplit/Archive and last: Evans Timothy Fosu Fosu-Mensah -[2018-02-13T08:35:38.810] [INFO] cheese - inserting 1000 documents. first: File:NIT Kurukshetra RR.png and last: Kalpasi -[2018-02-13T08:35:38.896] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:38.906] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:35:39.100] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Anniversaries/December/December 22 and last: Elachista canapennella -[2018-02-13T08:35:39.176] [INFO] cheese - inserting 1000 documents. first: Honalo, HI and last: Itasca Township, MN -[2018-02-13T08:35:39.185] [INFO] cheese - inserting 1000 documents. first: Category:Rapid transit in Hong Kong and last: Balsa (software) -[2018-02-13T08:35:39.197] [INFO] cheese - inserting 1000 documents. first: Daneți and last: Tosan tank -[2018-02-13T08:35:39.208] [INFO] cheese - inserting 1000 documents. first: File:WWWH-FM Paradise radio logo.jpg and last: Template:Subatomic particle/symbol/bottom xi -[2018-02-13T08:35:39.220] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:35:39.242] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:35:39.251] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:35:39.283] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:35:39.321] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:35:39.343] [INFO] cheese - inserting 1000 documents. first: Tracy Dawson and last: Hechi Airport -[2018-02-13T08:35:39.380] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic Diocese of Port Harcourt and last: File:FastCat logo.png -[2018-02-13T08:35:39.441] [INFO] cheese - inserting 1000 documents. first: Web Mining and last: Divine Right of Kings (disambiguation) -[2018-02-13T08:35:39.448] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:35:39.451] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:35:39.526] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:35:39.676] [INFO] cheese - inserting 1000 documents. first: Itawamba County, MS and last: Jordan Township, Northumberland County, PA -[2018-02-13T08:35:39.697] [INFO] cheese - inserting 1000 documents. first: Category:Softball media and last: Japan National Route 392 -[2018-02-13T08:35:39.723] [INFO] cheese - inserting 1000 documents. first: Chevrolet Cup and last: Metallica - Kill 'Em All -[2018-02-13T08:35:39.730] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:39.751] [INFO] cheese - inserting 1000 documents. first: Template:Subatomic particle/symbol/bottom xi0 and last: Category:Caves of Jeju Province -[2018-02-13T08:35:39.752] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:35:39.804] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:35:39.824] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:35:39.838] [INFO] cheese - inserting 1000 documents. first: Cioabă and last: Newton R. Casey -[2018-02-13T08:35:39.875] [INFO] cheese - inserting 1000 documents. first: King Norris and last: Category:Protected areas of Chile -[2018-02-13T08:35:39.903] [INFO] cheese - inserting 1000 documents. first: Edmond Burat de Gurgy and last: Pukarani (Potosí) -[2018-02-13T08:35:39.906] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:35:39.954] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:35:39.974] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:35:40.089] [INFO] cheese - inserting 1000 documents. first: Shahidul Alam and last: Cuisine of Castile-León -[2018-02-13T08:35:40.130] [INFO] cheese - inserting 1000 documents. first: Jordan Township, PA and last: Knox Township, Clarion County, PA -[2018-02-13T08:35:40.160] [INFO] cheese - inserting 1000 documents. first: Japan National Route 393 and last: Ali Azari Karki -[2018-02-13T08:35:40.167] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:35:40.259] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:35:40.299] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:35:40.329] [INFO] cheese - inserting 1000 documents. first: Administrative aide and last: Jéfferson Pérez -[2018-02-13T08:35:40.417] [INFO] cheese - inserting 1000 documents. first: Objects of labour and last: Jacky Chamoun -[2018-02-13T08:35:40.429] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:35:40.471] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:35:40.503] [INFO] cheese - inserting 1000 documents. first: Helpless and last: Mystic (singer) -[2018-02-13T08:35:40.533] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Jeju Province and last: Sgurr an Utha and Fraoch-bheinn -[2018-02-13T08:35:40.553] [INFO] cheese - inserting 1000 documents. first: Attribute certificate and last: Fagot -[2018-02-13T08:35:40.586] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:40.594] [INFO] cheese - inserting 1000 documents. first: Feeder (livestock equipment) and last: Nathan Orf -[2018-02-13T08:35:40.600] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:35:40.616] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:35:40.684] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:35:40.785] [INFO] cheese - inserting 1000 documents. first: 7RM and last: Oxyophthalmellus somalicus -[2018-02-13T08:35:40.840] [INFO] cheese - inserting 1000 documents. first: Dobříš and last: Emomali Sharipani Ramona -[2018-02-13T08:35:40.856] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:35:40.892] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Abusefilter-ANIbugnotice and last: Cyana obscura -[2018-02-13T08:35:40.893] [INFO] cheese - inserting 1000 documents. first: Lauderdale County, AL and last: Little Wolf, WI -[2018-02-13T08:35:40.916] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T08:35:40.964] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:35:40.971] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:35:41.000] [INFO] cheese - inserting 1000 documents. first: SRAS and last: File:Kuttiyattu paradevada temple1.jpg -[2018-02-13T08:35:41.069] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:35:41.102] [INFO] cheese - inserting 1000 documents. first: Baron Wilson of High Wray and last: 6th Corps -[2018-02-13T08:35:41.112] [INFO] cheese - inserting 1000 documents. first: Fatigue jacket and last: Ann Rutledge (Amtrak) -[2018-02-13T08:35:41.153] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:41.207] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:41.216] [INFO] cheese - inserting 1000 documents. first: Little York, IL and last: Character entity reference -[2018-02-13T08:35:41.272] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:35:41.293] [INFO] cheese - inserting 1000 documents. first: Lužani (Derventa) and last: Sixty-third subharmonic -[2018-02-13T08:35:41.398] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:35:41.417] [INFO] cheese - inserting 1000 documents. first: Yard number and last: Kim A-Lang -[2018-02-13T08:35:41.457] [INFO] cheese - inserting 1000 documents. first: Oxyophthalmellus rehni and last: Edmond Paea -[2018-02-13T08:35:41.496] [INFO] cheese - inserting 1000 documents. first: Euxoa rossica and last: Rafael Pereira da Silva (Manchester United) -[2018-02-13T08:35:41.515] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:35:41.561] [INFO] cheese - inserting 1000 documents. first: The National Organisation for Scouts and Guides and last: High & Mighty -[2018-02-13T08:35:41.595] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:35:41.597] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:35:41.716] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:35:41.730] [INFO] cheese - inserting 1000 documents. first: L.H.O.O.Q. and last: Tert-Butylamine -[2018-02-13T08:35:41.819] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:41.887] [INFO] cheese - inserting 1000 documents. first: Harry Connick, Jr. and last: List of people with last name Englefield -[2018-02-13T08:35:41.888] [INFO] cheese - inserting 1000 documents. first: Ganiklis and last: Schism fanzine -[2018-02-13T08:35:41.895] [INFO] cheese - inserting 1000 documents. first: CUNA Credit Union and last: Raï'n'B -[2018-02-13T08:35:41.934] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:35:41.991] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:35:42.009] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:35:42.070] [INFO] cheese - inserting 1000 documents. first: CHERUB: Black Friday and last: Bufkan -[2018-02-13T08:35:42.125] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:35:42.130] [INFO] cheese - inserting 1000 documents. first: List of people with last name Entwistle and last: List of people with the last name Dunn -[2018-02-13T08:35:42.151] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T08:35:42.228] [INFO] cheese - inserting 1000 documents. first: Peter Kelder (soap character) and last: 15053 Bochnicek -[2018-02-13T08:35:42.297] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:35:42.318] [INFO] cheese - inserting 1000 documents. first: Marquette (town), Green Lake County, WI and last: Menomonie, WI -[2018-02-13T08:35:42.359] [INFO] cheese - inserting 1000 documents. first: Template:MeSH number and last: Gallowglass -[2018-02-13T08:35:42.374] [INFO] cheese - inserting 1000 documents. first: List of people with the last name Durston and last: People with last name Cruise -[2018-02-13T08:35:42.377] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T08:35:42.387] [INFO] cheese - inserting 1000 documents. first: They (pronoun) and last: The Red Jumpsuit Apparatus (demo) -[2018-02-13T08:35:42.419] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T08:35:42.438] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:35:42.467] [INFO] cheese - inserting 1000 documents. first: Edward Paea and last: Vincenzo Puccitta -[2018-02-13T08:35:42.499] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:35:42.580] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:35:42.584] [INFO] cheese - inserting 1000 documents. first: Rai'n'B and last: Conrad Kilian -[2018-02-13T08:35:42.604] [INFO] cheese - inserting 1000 documents. first: Template:Canvey Island Independent Party/meta/shortname and last: Category:Hydroelectric power stations in Belize -[2018-02-13T08:35:42.611] [INFO] cheese - inserting 1000 documents. first: People with last name Cruse and last: People with the last name Clark -[2018-02-13T08:35:42.630] [INFO] cheese - batch complete in: 0.21 secs -[2018-02-13T08:35:42.656] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:35:42.658] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:35:42.735] [INFO] cheese - inserting 1000 documents. first: Menomonie (city), Dunn County, WI and last: Fra Mauro -[2018-02-13T08:35:42.764] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:35:42.843] [INFO] cheese - inserting 1000 documents. first: 15034 Decines and last: File:Hood & Pen - Daikaiju! Giant Monster Tales Coverart.png -[2018-02-13T08:35:42.846] [INFO] cheese - inserting 1000 documents. first: Katrin Velkova and last: Burdon (last name) -[2018-02-13T08:35:42.858] [INFO] cheese - batch complete in: 0.228 secs -[2018-02-13T08:35:42.885] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:35:42.951] [INFO] cheese - inserting 1000 documents. first: Hinukh people and last: File:Journler Icon.png -[2018-02-13T08:35:42.981] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:35:43.035] [INFO] cheese - inserting 1000 documents. first: Monroeville, PA and last: Crash (Dave Matthews Band album) -[2018-02-13T08:35:43.046] [INFO] cheese - inserting 1000 documents. first: Cesare Mariani and last: Delphic of Gamma Sigma Tau -[2018-02-13T08:35:43.048] [INFO] cheese - inserting 1000 documents. first: Molecular tagging velocimetry and last: Émile Georget -[2018-02-13T08:35:43.070] [INFO] cheese - batch complete in: 0.305 secs -[2018-02-13T08:35:43.106] [INFO] cheese - inserting 1000 documents. first: Burgess (last name) and last: Mityana Hospital -[2018-02-13T08:35:43.118] [INFO] cheese - inserting 1000 documents. first: List of theatres and concert halls in Madrid and last: Terrorism in Poland -[2018-02-13T08:35:43.118] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:35:43.127] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T08:35:43.156] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:35:43.203] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:35:43.266] [INFO] cheese - inserting 1000 documents. first: MediaWiki:Group-autoreviewer/simple and last: Category:Davis & Elkins College faculty -[2018-02-13T08:35:43.514] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/1bonus1.com and last: Chitralekha(deity) -[2018-02-13T08:35:43.515] [INFO] cheese - inserting 1000 documents. first: Ariel (novel series) and last: Template:Administrative levels of Romania (sidebar) -[2018-02-13T08:35:43.538] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:35:43.609] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:35:43.763] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:35:43.816] [INFO] cheese - inserting 1000 documents. first: Yves Bélanger (ice hockey) and last: Category:Sport in Worcester -[2018-02-13T08:35:43.816] [INFO] cheese - inserting 1000 documents. first: Nazlini, AZ and last: Nordick Township, MN -[2018-02-13T08:35:43.863] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:35:43.897] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:35:44.002] [INFO] cheese - inserting 1000 documents. first: File:Improv performing at banglore.jpg and last: Igor Dima -[2018-02-13T08:35:44.006] [INFO] cheese - inserting 1000 documents. first: Martina Müller-Skibbe and last: Category:2016 elections in Turkey -[2018-02-13T08:35:44.050] [INFO] cheese - inserting 1000 documents. first: You Wanna? and last: Thomas' Christmas Wonderland & Other Thomas Adventures -[2018-02-13T08:35:44.067] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:35:44.080] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:35:44.163] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:35:44.309] [INFO] cheese - inserting 1000 documents. first: Deramciclane and last: Thompson Twins - Greatest Hits -[2018-02-13T08:35:44.309] [INFO] cheese - inserting 1000 documents. first: Nordland Township, Aitkin County, MN and last: Okmulgee, OK -[2018-02-13T08:35:44.340] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:35:44.411] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:35:44.437] [INFO] cheese - inserting 1000 documents. first: The Chosen (Ricardo Pinto) and last: Portal:Rwanda/Selected panorama -[2018-02-13T08:35:44.531] [INFO] cheese - inserting 1000 documents. first: Masonic Temple (Burlington, Vermont) and last: Lala de Cizique -[2018-02-13T08:35:44.549] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:35:44.637] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:35:44.666] [INFO] cheese - inserting 1000 documents. first: Sterling Institute of Relationship and last: File:Concavemirror raydiagram F.gif -[2018-02-13T08:35:44.760] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:35:44.783] [INFO] cheese - inserting 1000 documents. first: Coolie (Malayalam film) and last: Glen Ellyn (Metra) -[2018-02-13T08:35:44.803] [INFO] cheese - inserting 1000 documents. first: Category:2012 elections in Turkey and last: Hey Ma -[2018-02-13T08:35:44.883] [INFO] cheese - inserting 1000 documents. first: Okmulgee County, OK and last: Panama, IL -[2018-02-13T08:35:44.904] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:35:44.910] [INFO] cheese - batch complete in: 0.569 secs -[2018-02-13T08:35:44.960] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:35:45.049] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jim Gary and last: Groep T -[2018-02-13T08:35:45.114] [INFO] cheese - inserting 1000 documents. first: Category:Ranma ½ element redirects to lists and last: Indian logics -[2018-02-13T08:35:45.137] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:35:45.202] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:35:45.218] [INFO] cheese - inserting 1000 documents. first: Alexander's Bush Squirrel and last: Betty Tylden -[2018-02-13T08:35:45.264] [INFO] cheese - inserting 1000 documents. first: Category:Fictional survivalists and last: Haywood (family name) -[2018-02-13T08:35:45.285] [INFO] cheese - batch complete in: 0.324 secs -[2018-02-13T08:35:45.291] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:35:45.400] [INFO] cheese - inserting 1000 documents. first: Hogwarts subjects and last: Great Influenza Pandemic -[2018-02-13T08:35:45.438] [INFO] cheese - inserting 1000 documents. first: Sam Marata and last: Amata stenoptera -[2018-02-13T08:35:45.461] [INFO] cheese - inserting 1000 documents. first: Acid strength and last: Ifuraces -[2018-02-13T08:35:45.467] [INFO] cheese - inserting 1000 documents. first: Wittgenstein rod and last: Delta-system lemma -[2018-02-13T08:35:45.483] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:35:45.528] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:35:45.536] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:35:45.533] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:35:45.594] [INFO] cheese - inserting 1000 documents. first: Hazell (family name) and last: Thomas Austin (cricketer) -[2018-02-13T08:35:45.680] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:35:45.757] [INFO] cheese - inserting 1000 documents. first: Christopher Simonsen Fougner and last: RMIT Vietnam -[2018-02-13T08:35:45.789] [INFO] cheese - inserting 1000 documents. first: File:Peaches-Talk-to-Me.jpg and last: James Walter Reeves -[2018-02-13T08:35:45.844] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:45.890] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:35:45.940] [INFO] cheese - inserting 1000 documents. first: Mixi and last: Avanti! (Italian newspaper) -[2018-02-13T08:35:46.041] [INFO] cheese - inserting 1000 documents. first: Amata stictoptera and last: Elka discography -[2018-02-13T08:35:46.047] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:35:46.098] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:35:46.144] [INFO] cheese - inserting 1000 documents. first: Mrs. Loring's Secret and last: Template:Mycologist/doc -[2018-02-13T08:35:46.208] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:35:46.232] [INFO] cheese - inserting 1000 documents. first: Food safety in China and last: List of athletes from Alaska -[2018-02-13T08:35:46.324] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:35:46.339] [INFO] cheese - inserting 1000 documents. first: Laid Low (EP) and last: Template:Bluebook website/testcases -[2018-02-13T08:35:46.341] [INFO] cheese - inserting 1000 documents. first: Cathal mac Domhnall Ua Conchobair and last: Seavey House -[2018-02-13T08:35:46.347] [INFO] cheese - inserting 1000 documents. first: UMkhuze Game Reserve and last: Peridot, AZ -[2018-02-13T08:35:46.407] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:35:46.407] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:35:46.510] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:35:46.595] [INFO] cheese - inserting 1000 documents. first: Chotur and last: Wikipedia:Mediation Cabal/Cases/2008-07-27 Articles for deletion/Characters and groups in Bionicle -[2018-02-13T08:35:46.671] [INFO] cheese - inserting 1000 documents. first: Nick (Pakistan) and last: Deh-e Ra'is -[2018-02-13T08:35:46.744] [INFO] cheese - batch complete in: 0.9 secs -[2018-02-13T08:35:46.747] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:35:46.899] [INFO] cheese - inserting 1000 documents. first: E.M.W. Tillyard and last: Sonority Sequencing Principle -[2018-02-13T08:35:46.955] [INFO] cheese - inserting 1000 documents. first: Perkasie, PA and last: Port Wing, WI -[2018-02-13T08:35:46.999] [INFO] cheese - inserting 1000 documents. first: Cardiff, United Kingdom and last: 47 Brand -[2018-02-13T08:35:47.016] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:35:47.050] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:35:47.089] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:35:47.099] [INFO] cheese - inserting 1000 documents. first: 2000 Speed World Challenge season and last: File:All-Time Greatest Hits (Ray Stevens album).jpeg -[2018-02-13T08:35:47.189] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:35:47.197] [INFO] cheese - inserting 1000 documents. first: Mannington Mine disaster and last: Reason (program) -[2018-02-13T08:35:47.276] [INFO] cheese - inserting 1000 documents. first: Deh-e Ra'is-e Garuk and last: Abramov, Vitaliy -[2018-02-13T08:35:47.317] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:35:47.374] [INFO] cheese - inserting 1000 documents. first: Portage, IN and last: Reno, Parker County, TX -[2018-02-13T08:35:47.389] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:47.438] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T08:35:47.586] [INFO] cheese - inserting 1000 documents. first: 1960 San Francisco 49ers season and last: La Schelle Tarver -[2018-02-13T08:35:47.620] [INFO] cheese - inserting 1000 documents. first: Template:SA Rugby Results/doc and last: Category:Belgian Pro League players -[2018-02-13T08:35:47.641] [INFO] cheese - inserting 1000 documents. first: Hall of fame racing and last: See the Bombers Fly Up -[2018-02-13T08:35:47.658] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:35:47.698] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:47.705] [INFO] cheese - inserting 1000 documents. first: Tim Dudfield and last: Ross Township, MI -[2018-02-13T08:35:47.737] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:35:47.781] [INFO] cheese - inserting 1000 documents. first: Abramov, Yevda and last: PPcoin -[2018-02-13T08:35:47.786] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T08:35:47.815] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tiffany Taylor (pornographic actress) and last: Richard Silcock -[2018-02-13T08:35:47.843] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T08:35:47.898] [INFO] cheese - inserting 1000 documents. first: Keep on Walking (CD) and last: Tert-butylamine -[2018-02-13T08:35:47.902] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:35:47.979] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:35:48.099] [INFO] cheese - inserting 1000 documents. first: Ross Township, MN and last: Santa Claus, GA -[2018-02-13T08:35:48.133] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:35:48.188] [INFO] cheese - inserting 1000 documents. first: Category:Belgian Second Division players and last: Category:Albania entertainment templates -[2018-02-13T08:35:48.244] [INFO] cheese - inserting 1000 documents. first: Tanjung Ipoh and last: Joachim Fernández -[2018-02-13T08:35:48.233] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:35:48.265] [INFO] cheese - inserting 1000 documents. first: Praepositus sacri palatii and last: Osvaldo Félix Souza -[2018-02-13T08:35:48.380] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:35:48.406] [INFO] cheese - batch complete in: 1.999 secs -[2018-02-13T08:35:48.410] [INFO] cheese - inserting 1000 documents. first: Occupy ucd and last: IdeaPlane -[2018-02-13T08:35:48.441] [INFO] cheese - inserting 1000 documents. first: Template:User CRS and last: Wikipedia:Articles for deletion/List of English words of Romanian origin -[2018-02-13T08:35:48.514] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:48.517] [INFO] cheese - inserting 1000 documents. first: Mangalore Express and last: Hungary women's national goalball team -[2018-02-13T08:35:48.582] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:35:48.641] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:35:48.663] [INFO] cheese - inserting 1000 documents. first: Muhilankudieruppu and last: File:EvoTerra.jpg -[2018-02-13T08:35:48.759] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:35:48.804] [INFO] cheese - inserting 1000 documents. first: Eagle Lake (Fish River) and last: Pink Ocean (EP) -[2018-02-13T08:35:48.825] [INFO] cheese - inserting 1000 documents. first: Category:Aitkin County, Minnesota and last: Sharpsburg, PA -[2018-02-13T08:35:48.919] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:35:48.992] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:35:49.085] [INFO] cheese - inserting 1000 documents. first: Exercise Summer Pulse and last: EllisDon -[2018-02-13T08:35:49.106] [INFO] cheese - inserting 1000 documents. first: Numantianus and last: Wikipedia:Articles for deletion/Live in Montecarlo -[2018-02-13T08:35:49.166] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:49.170] [INFO] cheese - batch complete in: 0.79 secs -[2018-02-13T08:35:49.216] [INFO] cheese - inserting 1000 documents. first: Riverdale (Metra) and last: Wikipedia:Reference desk/Archives/Language/2014 February 8 -[2018-02-13T08:35:49.247] [INFO] cheese - inserting 1000 documents. first: Somma-Vesuvio and last: Pam Ann -[2018-02-13T08:35:49.255] [INFO] cheese - inserting 1000 documents. first: Design Assist and last: File:JetsNow&Then.jpg -[2018-02-13T08:35:49.270] [INFO] cheese - inserting 1000 documents. first: Lamrim and last: South Pymatuning Township, PA -[2018-02-13T08:35:49.323] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:35:49.326] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:35:49.356] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:35:49.379] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:35:49.610] [INFO] cheese - inserting 1000 documents. first: NGC 7252 and last: Maria Sergeeva -[2018-02-13T08:35:49.632] [INFO] cheese - inserting 1000 documents. first: South Range, MI and last: Stoddard, WI -[2018-02-13T08:35:49.633] [INFO] cheese - inserting 1000 documents. first: John de Gruchy and last: Ubisoft Ukraine -[2018-02-13T08:35:49.666] [INFO] cheese - batch complete in: 0.343 secs -[2018-02-13T08:35:49.668] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:35:49.700] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:35:49.813] [INFO] cheese - inserting 1000 documents. first: Sahara Force India and last: Category:Mac OS graphics software -[2018-02-13T08:35:49.856] [INFO] cheese - inserting 1000 documents. first: Suarăș and last: 1937 Eastern Suburbs DRLFC season -[2018-02-13T08:35:49.921] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:35:49.935] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/Barrett M82 and last: Konrad Wysocki -[2018-02-13T08:35:49.935] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:35:49.952] [INFO] cheese - inserting 1000 documents. first: Carissa Putri and last: K.P. Ummer -[2018-02-13T08:35:50.020] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:35:50.027] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:35:50.108] [INFO] cheese - inserting 1000 documents. first: Stoddard County, MO and last: Estelle Leonard -[2018-02-13T08:35:50.178] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:35:50.280] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Delhi and last: Shahi-Kot Valley -[2018-02-13T08:35:50.287] [INFO] cheese - inserting 1000 documents. first: 1605 in art and last: Kurt Enoch Stenberg -[2018-02-13T08:35:50.308] [INFO] cheese - inserting 1000 documents. first: Cassida affinis and last: Category:Banks disestablished in 1845 -[2018-02-13T08:35:50.355] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:35:50.391] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:35:50.399] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:50.510] [INFO] cheese - inserting 1000 documents. first: Eupoecilia anebrica and last: Feel Like Fame -[2018-02-13T08:35:50.567] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:35:50.613] [INFO] cheese - inserting 1000 documents. first: Ur-du-kuga and last: Maurice Noguès -[2018-02-13T08:35:50.683] [INFO] cheese - batch complete in: 0.762 secs -[2018-02-13T08:35:50.698] [INFO] cheese - inserting 1000 documents. first: Bertone and last: File:Folk-sandstone.classification.png -[2018-02-13T08:35:50.767] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:35:50.785] [INFO] cheese - inserting 1000 documents. first: Portal:Transport/Selected anniversaries/August 3 and last: Template:Lubartów-geo-stub -[2018-02-13T08:35:50.861] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:35:50.907] [INFO] cheese - inserting 1000 documents. first: Sungai Besi (federal constituency) and last: Donald Anderson McGavran -[2018-02-13T08:35:50.955] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:35:50.963] [INFO] cheese - inserting 1000 documents. first: Template:Greek myth (earth) and last: Brace for impact -[2018-02-13T08:35:50.990] [INFO] cheese - inserting 1000 documents. first: It Was a Business Doing Pleasure and last: Ivan Ilich -[2018-02-13T08:35:51.008] [INFO] cheese - inserting 1000 documents. first: File:AajKaArjun.jpg and last: Category:Tourism in Mauritania -[2018-02-13T08:35:51.041] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:35:51.077] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:35:51.131] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:35:51.172] [INFO] cheese - inserting 1000 documents. first: KFKF-FM and last: Heroes of the East -[2018-02-13T08:35:51.261] [INFO] cheese - inserting 1000 documents. first: Order of Friendship (Vietnam) and last: File:Rush x files.jpg -[2018-02-13T08:35:51.276] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:35:51.384] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:35:51.461] [INFO] cheese - inserting 1000 documents. first: Battle of Tsushima strait and last: Fellowship of the ring soundtrack -[2018-02-13T08:35:51.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The GOAT Store and last: Wólka Rozwadowska -[2018-02-13T08:35:51.548] [INFO] cheese - inserting 1000 documents. first: File:James Yoxall.jpg and last: All the King's Horses (Grover Washington, Jr. album) -[2018-02-13T08:35:51.554] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:35:51.592] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:35:51.665] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:35:51.739] [INFO] cheese - inserting 1000 documents. first: Daniel Muzito and last: Abreu, Átila -[2018-02-13T08:35:51.789] [INFO] cheese - inserting 1000 documents. first: Sunday morning cartoon and last: Fairchild Industries FH-1100 -[2018-02-13T08:35:51.910] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:35:52.028] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:35:52.058] [INFO] cheese - inserting 1000 documents. first: Brace procedure and last: USS Tortuga -[2018-02-13T08:35:52.084] [INFO] cheese - inserting 1000 documents. first: ISRG and last: Father John Dear -[2018-02-13T08:35:52.197] [INFO] cheese - inserting 1000 documents. first: I I Chundrigar and last: Template:Catawba Indians football coach navbox -[2018-02-13T08:35:52.255] [INFO] cheese - batch complete in: 1.178 secs -[2018-02-13T08:35:52.262] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:35:52.368] [INFO] cheese - batch complete in: 0.984 secs -[2018-02-13T08:35:52.411] [INFO] cheese - inserting 1000 documents. first: Symphony No. 1 (Schubert) and last: Portal:Schools/Selected picture/9 -[2018-02-13T08:35:52.441] [INFO] cheese - inserting 1000 documents. first: Seascraper and last: John Charlton (disambiguation) -[2018-02-13T08:35:52.462] [INFO] cheese - inserting 1000 documents. first: Abreu, Cláudia and last: Experimental range -[2018-02-13T08:35:52.535] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:35:52.541] [INFO] cheese - inserting 1000 documents. first: File:A Moon Shaped Pool.jpg and last: Common nettle-tap -[2018-02-13T08:35:52.540] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:35:52.623] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:35:52.677] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:35:52.904] [INFO] cheese - inserting 1000 documents. first: Church of Peace (Potsdam) and last: Námata -[2018-02-13T08:35:52.942] [INFO] cheese - inserting 1000 documents. first: D. Gale Johnson and last: Adam-Pierre de La Grené -[2018-02-13T08:35:53.000] [INFO] cheese - inserting 1000 documents. first: Chopin's heart and last: File:BugMafiaPanaCandMoarteaNeVaDesparti.ogg -[2018-02-13T08:35:52.993] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:35:53.030] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:35:53.059] [INFO] cheese - inserting 1000 documents. first: Industrial plasticine and last: Template:Libertarianz/meta/color -[2018-02-13T08:35:53.112] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:35:53.116] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Steve Corcoran and last: Category:LA Galaxy players -[2018-02-13T08:35:53.163] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:35:53.173] [INFO] cheese - inserting 1000 documents. first: Justice Ingram (disambiguation) and last: Category:Zhengzhou University -[2018-02-13T08:35:53.179] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:35:53.188] [INFO] cheese - inserting 1000 documents. first: ACCENT Speakers Bureau and last: Kopczany -[2018-02-13T08:35:53.259] [INFO] cheese - inserting 1000 documents. first: File:St Mary Cathedral Calgary front statue.jpg and last: Roderick at Random -[2018-02-13T08:35:53.278] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:35:53.305] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:35:53.345] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:35:53.537] [INFO] cheese - inserting 1000 documents. first: Monkey Magic (arcade game) and last: Educational Service Districts in Washington -[2018-02-13T08:35:53.592] [INFO] cheese - inserting 1000 documents. first: Costica Canacheu and last: CRDA CANT Z.506 -[2018-02-13T08:35:53.605] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:35:53.686] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:35:53.717] [INFO] cheese - inserting 1000 documents. first: Functional Capacity Evaluation and last: Ladislao Michele Zaleski -[2018-02-13T08:35:53.736] [INFO] cheese - inserting 1000 documents. first: Category:Television series produced in Toronto and last: Universidad del Valle de Atemajac -[2018-02-13T08:35:53.792] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:35:53.821] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:35:53.899] [INFO] cheese - inserting 1000 documents. first: DataMeet and last: Homshetsi dialect language -[2018-02-13T08:35:53.928] [INFO] cheese - inserting 1000 documents. first: DFW Toros and last: Henrykowo, Podlaskie Voivodeship -[2018-02-13T08:35:53.934] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jacobo Ríos and last: Siam Empire -[2018-02-13T08:35:53.950] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:35:54.013] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:35:54.060] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:35:54.180] [INFO] cheese - inserting 1000 documents. first: Kuzan-e Olya and last: Category:People from Pisco, Peru -[2018-02-13T08:35:54.247] [INFO] cheese - inserting 1000 documents. first: Dent (fell) and last: Louis MacNeice -[2018-02-13T08:35:54.271] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:54.312] [INFO] cheese - inserting 1000 documents. first: Jane loop and last: Jon Hepworth -[2018-02-13T08:35:54.328] [INFO] cheese - inserting 1000 documents. first: Miracle of Dunkirk and last: Blue Mountains Grammar School -[2018-02-13T08:35:54.349] [INFO] cheese - batch complete in: 1.004 secs -[2018-02-13T08:35:54.366] [INFO] cheese - inserting 1000 documents. first: Too Cool To Be Forgotten and last: John Beswick (politician) -[2018-02-13T08:35:54.383] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:54.431] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:54.477] [INFO] cheese - inserting 1000 documents. first: Monica Kalondo and last: Peirre Omidyar -[2018-02-13T08:35:54.522] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:35:54.558] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:35:54.661] [INFO] cheese - inserting 1000 documents. first: Izoby and last: SWEAT (hypothesis) -[2018-02-13T08:35:54.718] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:35:54.743] [INFO] cheese - inserting 1000 documents. first: Category:World Fantasy Award winners and last: Hupogrammos Disciple's -[2018-02-13T08:35:54.779] [INFO] cheese - inserting 1000 documents. first: Category:People from San Ignacio, Paraguay and last: J. H. Delorey -[2018-02-13T08:35:54.806] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:35:54.860] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:35:54.914] [INFO] cheese - inserting 1000 documents. first: Boesio and last: Halbturn -[2018-02-13T08:35:54.923] [INFO] cheese - inserting 1000 documents. first: Thinicola and last: Wikipedia:Articles for deletion/Ben Briley -[2018-02-13T08:35:54.985] [INFO] cheese - inserting 1000 documents. first: Ragged Lake (Maine) and last: File:Kouvot logo 2016.png -[2018-02-13T08:35:54.978] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:35:55.028] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:35:55.152] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:35:55.182] [INFO] cheese - inserting 1000 documents. first: Richard John Beswick and last: NY 2 (1927–1939) -[2018-02-13T08:35:55.185] [INFO] cheese - inserting 1000 documents. first: Agasta Christie and last: Dreadnought! -[2018-02-13T08:35:55.257] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:35:55.271] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:35:55.375] [INFO] cheese - inserting 1000 documents. first: Bernadette Porter and last: Stefan Dötzler -[2018-02-13T08:35:55.398] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T08:35:55.407] [INFO] cheese - inserting 1000 documents. first: Traumatologists and last: Tonight (1957 TV series) -[2018-02-13T08:35:55.428] [INFO] cheese - inserting 1000 documents. first: Unterstraße and last: Giuseppe Ferrandino -[2018-02-13T08:35:55.448] [INFO] cheese - inserting 1000 documents. first: Frederick Louis MacNeice and last: Langbaurgh -[2018-02-13T08:35:55.466] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:35:55.481] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:35:55.634] [INFO] cheese - batch complete in: 1.285 secs -[2018-02-13T08:35:55.649] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/411 and last: Wikipedia:Pokémon Collaborative Project/List of articles -[2018-02-13T08:35:55.749] [INFO] cheese - inserting 1000 documents. first: File:Kempston-micro-electronics-logo.png and last: South West 2 East -[2018-02-13T08:35:55.752] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:35:55.768] [INFO] cheese - inserting 1000 documents. first: Cardiff Waterbus and last: Subtle -[2018-02-13T08:35:55.829] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:35:55.848] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:35:55.860] [INFO] cheese - inserting 1000 documents. first: Apache Apex and last: Marusya Bociurkiw -[2018-02-13T08:35:55.931] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:35:55.994] [INFO] cheese - inserting 1000 documents. first: Template:Unity (Hungary)/meta/shortname and last: Purtow -[2018-02-13T08:35:56.009] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Trickietrickie/Archive and last: 2007–08 A.F.C. Bournemouth season -[2018-02-13T08:35:56.050] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:35:56.064] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:35:56.131] [INFO] cheese - inserting 1000 documents. first: File:WKO logo.PNG and last: The Exiles (Space: 1999) -[2018-02-13T08:35:56.182] [INFO] cheese - inserting 1000 documents. first: ANBO 41 and last: File:Jefferson Blvd South.jpg -[2018-02-13T08:35:56.198] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:35:56.235] [INFO] cheese - inserting 1000 documents. first: Category:People from Florence County, Wisconsin and last: CCAMLR Ecosystem Monitoring Programme -[2018-02-13T08:35:56.254] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/woodtreks.com and last: Rajsk -[2018-02-13T08:35:56.256] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:35:56.290] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:35:56.307] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:35:56.397] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Computing/2012 January 4 and last: Madhupur, India (disambiguation) -[2018-02-13T08:35:56.426] [INFO] cheese - inserting 1000 documents. first: Morris Hudson and last: Martha Euphemia Lofton Haynes -[2018-02-13T08:35:56.429] [INFO] cheese - inserting 1000 documents. first: Battle of Stepney and last: H. G. Van de Sande Bakhuyzen -[2018-02-13T08:35:56.439] [INFO] cheese - batch complete in: 0.375 secs -[2018-02-13T08:35:56.477] [INFO] cheese - inserting 1000 documents. first: File:Chien-Ying Chang02.jpg and last: El Rey (Tito Puente album) -[2018-02-13T08:35:56.482] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:35:56.514] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:35:56.533] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:35:56.682] [INFO] cheese - inserting 1000 documents. first: Ishamael ax and last: Aashirwaad -[2018-02-13T08:35:56.718] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:35:56.730] [INFO] cheese - inserting 1000 documents. first: Csávoly and last: File:Marlon PE.jpg -[2018-02-13T08:35:56.733] [INFO] cheese - inserting 1000 documents. first: CCAMLR Ecosystem Monitoring Program and last: Breže, Ribnica -[2018-02-13T08:35:56.746] [INFO] cheese - inserting 1000 documents. first: Rzepniewo and last: Gnilec -[2018-02-13T08:35:56.769] [INFO] cheese - inserting 1000 documents. first: Madonna del Prato (disambiguation) and last: File:AAIC.gif -[2018-02-13T08:35:56.779] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:35:56.798] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:35:56.798] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:35:56.829] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:35:56.869] [INFO] cheese - inserting 1000 documents. first: Hussain as Waris-e-Anbia and last: Aragonese nationalism -[2018-02-13T08:35:56.930] [INFO] cheese - inserting 1000 documents. first: Tropeiro seedeater and last: Kandy Hospital -[2018-02-13T08:35:56.951] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:35:57.083] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:35:57.223] [INFO] cheese - inserting 1000 documents. first: SMS Greif and last: Zero Divide: The Final Conflict -[2018-02-13T08:35:57.239] [INFO] cheese - inserting 1000 documents. first: (5) Astraea and last: United Democrats -[2018-02-13T08:35:57.265] [INFO] cheese - inserting 1000 documents. first: 1964 Brinks Hotel bombing and last: Wikipedia:Version 1.0 Editorial Team/Good Charlotte articles by quality log -[2018-02-13T08:35:57.273] [INFO] cheese - inserting 1000 documents. first: Grenvillites and last: List of early-modern journals -[2018-02-13T08:35:57.277] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:35:57.322] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:35:57.330] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:35:57.336] [INFO] cheese - inserting 1000 documents. first: Periyakulam (Lok Sabha constituency) and last: File:Edgewater Plant.jpg -[2018-02-13T08:35:57.341] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:35:57.427] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:35:57.475] [INFO] cheese - inserting 1000 documents. first: List of Scottish football transfers summer 2016 and last: Syracuse Orange women's tennis -[2018-02-13T08:35:57.496] [INFO] cheese - inserting 1000 documents. first: Royal Spanish Football Federation and last: Dave Clark (soul musician) -[2018-02-13T08:35:57.584] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:35:57.593] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:35:57.667] [INFO] cheese - inserting 1000 documents. first: Template:Albany Great Danes men's basketball template and last: Lifestyle advice -[2018-02-13T08:35:57.731] [INFO] cheese - inserting 1000 documents. first: Joe Roman and last: Polonskyi Raion -[2018-02-13T08:35:57.742] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:35:57.813] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics German Type UB I submarines good content and last: Annette Dasch -[2018-02-13T08:35:57.785] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:35:57.873] [INFO] cheese - inserting 1000 documents. first: Motorola Motofone and last: Danny bonaduce -[2018-02-13T08:35:57.940] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:35:57.960] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:35:58.043] [INFO] cheese - inserting 1000 documents. first: Build Service and last: E93 -[2018-02-13T08:35:58.117] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:35:58.123] [INFO] cheese - inserting 1000 documents. first: Madras College and last: GNLU -[2018-02-13T08:35:58.210] [INFO] cheese - inserting 1000 documents. first: Georgia State Panthers women's tennis and last: Category:Populated places in Luzon -[2018-02-13T08:35:58.248] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:35:58.339] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:35:58.349] [INFO] cheese - inserting 1000 documents. first: Star-Spangled Kid and last: Social policy -[2018-02-13T08:35:58.450] [INFO] cheese - inserting 1000 documents. first: McKinley Township (disambiguation) and last: Spandau Type 3 20mm cannon -[2018-02-13T08:35:58.493] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:35:58.550] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:35:58.658] [INFO] cheese - inserting 1000 documents. first: Bonne of Artois and last: Jaguaré, Espírito Santo -[2018-02-13T08:35:58.659] [INFO] cheese - inserting 1000 documents. first: Martha McLean - Anza Narrows Park and last: Burlington Northern Depot -[2018-02-13T08:35:58.665] [INFO] cheese - inserting 1000 documents. first: Scantling draft and last: Wolf Boy -[2018-02-13T08:35:58.674] [INFO] cheese - inserting 1000 documents. first: Mandarthi and last: Felix Houphouet Boigny -[2018-02-13T08:35:58.721] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:35:58.726] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:35:58.752] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:35:58.754] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:35:58.867] [INFO] cheese - inserting 1000 documents. first: Star Wars: The Empire Strikes Back (1992 video game) and last: Category:Currencies of the United States -[2018-02-13T08:35:58.877] [INFO] cheese - inserting 1000 documents. first: Roll over protection structure and last: Lowestoft and East Suffolk Maritime Museum -[2018-02-13T08:35:58.954] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:35:58.969] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:35:59.061] [INFO] cheese - inserting 1000 documents. first: Tinea tetricella and last: File:Luke Banned 1990 Original.jpg -[2018-02-13T08:35:59.131] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:35:59.174] [INFO] cheese - inserting 1000 documents. first: Bradford Council and last: Canadian federal election 1968 -[2018-02-13T08:35:59.218] [INFO] cheese - inserting 1000 documents. first: Jean Graton and last: AMC Amitron -[2018-02-13T08:35:59.223] [INFO] cheese - inserting 1000 documents. first: File:James Augustus Grant.jpg and last: Coffee Shop Murder Case -[2018-02-13T08:35:59.225] [INFO] cheese - inserting 1000 documents. first: Template:King George's Fields and last: Embassy of Russia in Yaoundé -[2018-02-13T08:35:59.232] [INFO] cheese - inserting 1000 documents. first: Félix Houphouët Boigny and last: Andrew McNair -[2018-02-13T08:35:59.232] [INFO] cheese - batch complete in: 0.48 secs -[2018-02-13T08:35:59.288] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:35:59.290] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:35:59.311] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:35:59.307] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:35:59.407] [INFO] cheese - inserting 1000 documents. first: 47P/Ashbrook–Jackson and last: File:JimmyCC.JPG -[2018-02-13T08:35:59.461] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/Draft:Chicago Justice (TV series) and last: Acacia arrecta -[2018-02-13T08:35:59.524] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:35:59.550] [INFO] cheese - inserting 1000 documents. first: Amir Suljić and last: Facial mocap -[2018-02-13T08:35:59.539] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:35:59.653] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:35:59.747] [INFO] cheese - inserting 1000 documents. first: Scar Top and last: Albert, Prince of Wales -[2018-02-13T08:35:59.867] [INFO] cheese - inserting 1000 documents. first: Oratorio Society of Chicago and last: Category:Early computers articles by quality and importance -[2018-02-13T08:35:59.898] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:35:59.918] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:35:59.969] [INFO] cheese - inserting 1000 documents. first: Category:Livetronica music groups and last: Wikipedia:WikiProject Spam/LinkReports/tienlen.net -[2018-02-13T08:36:00.053] [INFO] cheese - inserting 1000 documents. first: Detective Boys Survival Case and last: Template:Persian Gulf -[2018-02-13T08:36:00.061] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:36:00.130] [INFO] cheese - inserting 1000 documents. first: Edward Streeter and last: South African Students' Association -[2018-02-13T08:36:00.148] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:36:00.265] [INFO] cheese - inserting 1000 documents. first: Edward William Barankin and last: Olly Schoberova -[2018-02-13T08:36:00.266] [INFO] cheese - inserting 1000 documents. first: Mariyampil and last: Libya economy -[2018-02-13T08:36:00.269] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:36:00.317] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:36:00.337] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:36:00.463] [INFO] cheese - inserting 1000 documents. first: Vrbas (river) and last: Psammoperca waigiensis -[2018-02-13T08:36:00.464] [INFO] cheese - inserting 1000 documents. first: File:Reserve Forest PGR1.jpg and last: Majdan Policki -[2018-02-13T08:36:00.467] [INFO] cheese - inserting 1000 documents. first: Fourth Grade (South Park) and last: Ocnogyna valantini -[2018-02-13T08:36:00.535] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:36:00.554] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:36:00.570] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:36:00.623] [INFO] cheese - inserting 1000 documents. first: 2010 Canadian Senior Curling Championships and last: 293 A.2d 747 -[2018-02-13T08:36:00.685] [INFO] cheese - inserting 1000 documents. first: Category:Members of the Australian House of Representatives for Diamond Valley and last: File:VotB I Think I Love You.jpg -[2018-02-13T08:36:00.692] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:36:00.726] [INFO] cheese - inserting 1000 documents. first: Tanzania economy and last: The Strawberry Roan -[2018-02-13T08:36:00.742] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:36:00.770] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:36:00.869] [INFO] cheese - inserting 1000 documents. first: MDash and last: Category:Serbian magazines -[2018-02-13T08:36:00.957] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:36:01.019] [INFO] cheese - inserting 1000 documents. first: Cramer interpretation and last: Lloyds and Bolsa International Bank -[2018-02-13T08:36:01.060] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Assessment/Heinz-Wolfgang Schnaufer and last: Kapeenkoski -[2018-02-13T08:36:01.078] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:36:01.157] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:36:01.241] [INFO] cheese - inserting 1000 documents. first: K257AA and last: Anti-RANKL antibody -[2018-02-13T08:36:01.243] [INFO] cheese - inserting 1000 documents. first: Crisp Gascoyne and last: Livermore Optical Transient Imaging System -[2018-02-13T08:36:01.304] [INFO] cheese - inserting 1000 documents. first: Weymouth Wildcats and last: Category:B-Class Fishing articles -[2018-02-13T08:36:01.306] [INFO] cheese - inserting 1000 documents. first: Galtieri and last: Manitoba Labour Party -[2018-02-13T08:36:01.305] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:36:01.323] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:36:01.381] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:36:01.388] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:36:01.465] [INFO] cheese - inserting 1000 documents. first: Nowiny Żukowskie and last: Judo at the 2008 Summer Olympics – Men's 100 kg -[2018-02-13T08:36:01.600] [INFO] cheese - inserting 1000 documents. first: Lloyds & Bolsa International Bank and last: Anglia Hastings & Thanet Building Society -[2018-02-13T08:36:01.609] [INFO] cheese - inserting 1000 documents. first: File:Blake, On the Balcony.jpg and last: Koloniale Tentoonstelling (1914) -[2018-02-13T08:36:01.612] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:36:01.705] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:01.709] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:36:01.809] [INFO] cheese - inserting 1000 documents. first: Workers' Power (UK) and last: American Beauty (Bruce Springsteen EP) -[2018-02-13T08:36:01.900] [INFO] cheese - inserting 1000 documents. first: KrohnAir and last: James Kelley House (disambiguation) -[2018-02-13T08:36:01.933] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:36:01.965] [INFO] cheese - inserting 1000 documents. first: Kulabad, Lorestan and last: Cleora repetita -[2018-02-13T08:36:01.983] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:36:02.058] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:36:02.107] [INFO] cheese - inserting 1000 documents. first: Robert Boyd Russell and last: Shadows (Wagon Christ single) -[2018-02-13T08:36:02.175] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:36:02.281] [INFO] cheese - inserting 1000 documents. first: Judo at the 2008 Summer Olympics – Men's +100 kg and last: 98th Hellenic National Guard Higher Command -[2018-02-13T08:36:02.283] [INFO] cheese - inserting 1000 documents. first: Lake Zumbra and last: List of BSA local councils and districts in Maryland -[2018-02-13T08:36:02.325] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:36:02.338] [INFO] cheese - inserting 1000 documents. first: The Firstborn Is Dead and last: André Lwoff -[2018-02-13T08:36:02.345] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:36:02.385] [INFO] cheese - inserting 1000 documents. first: Portal:Current events/1997 September 5 and last: Nataliia Godunko -[2018-02-13T08:36:02.425] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:36:02.438] [INFO] cheese - inserting 1000 documents. first: Category:Actors from Szczecin and last: Adrian Shooter -[2018-02-13T08:36:02.455] [INFO] cheese - inserting 1000 documents. first: Bostall Heath and Woods and last: Category:People from Jos -[2018-02-13T08:36:02.456] [INFO] cheese - inserting 1000 documents. first: Boarmia repetita and last: Der Polizeipräsident in Berlin -[2018-02-13T08:36:02.457] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:36:02.498] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:36:02.516] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:02.527] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:36:02.687] [INFO] cheese - inserting 1000 documents. first: Quesnel (sternwheeler) and last: US 29 in Maryland -[2018-02-13T08:36:02.713] [INFO] cheese - inserting 1000 documents. first: Youth exclusion and last: Mackovic -[2018-02-13T08:36:02.766] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:36:02.768] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:36:02.801] [INFO] cheese - inserting 1000 documents. first: Caminhos da Colônia and last: Marie Equi -[2018-02-13T08:36:02.875] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:36:02.882] [INFO] cheese - inserting 1000 documents. first: Karl-Heinz Ertel and last: Wikipedia:Articles for deletion/Midtown footbridge -[2018-02-13T08:36:02.906] [INFO] cheese - inserting 1000 documents. first: Historical process of beatification and canonization and last: Chilean battleship Capitán Prat -[2018-02-13T08:36:02.942] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rizwan Library and last: Jose Atienza, Jr. -[2018-02-13T08:36:02.965] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:36:03.003] [INFO] cheese - inserting 1000 documents. first: Pagara fuscipes and last: Noturus elegans -[2018-02-13T08:36:03.022] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:36:03.059] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:36:03.125] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:03.233] [INFO] cheese - inserting 1000 documents. first: Mikhael Gromov and last: Contra terrene -[2018-02-13T08:36:03.308] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:36:03.352] [INFO] cheese - inserting 1000 documents. first: National Symphony Orchestra of Cuba and last: Sylvain Deplace -[2018-02-13T08:36:03.378] [INFO] cheese - inserting 1000 documents. first: Słupie, Gmina Bakałarzewo and last: Nowe Rzepki -[2018-02-13T08:36:03.431] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:36:03.455] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:36:03.469] [INFO] cheese - inserting 1000 documents. first: Hunt, Texas and last: Commanding what is just -[2018-02-13T08:36:03.547] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Oregonia and last: Stonehaven (Media, Pennsylvania) -[2018-02-13T08:36:03.557] [INFO] cheese - inserting 1000 documents. first: Percina squamata and last: Extended System Description Table -[2018-02-13T08:36:03.574] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:03.606] [INFO] cheese - inserting 1000 documents. first: Ford 400 and last: W288CV -[2018-02-13T08:36:03.616] [INFO] cheese - inserting 1000 documents. first: Category:Headlands of Syria and last: Dyurtiulinsky Raion -[2018-02-13T08:36:03.627] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:03.638] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:36:03.668] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:36:03.699] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:36:03.886] [INFO] cheese - inserting 1000 documents. first: Nowe Żochy and last: Central American jumping pitviper -[2018-02-13T08:36:03.932] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:36:03.960] [INFO] cheese - inserting 1000 documents. first: Fencehouses and last: Attack of the fifty foot woman -[2018-02-13T08:36:04.020] [INFO] cheese - inserting 1000 documents. first: ESDT and last: She-balsam -[2018-02-13T08:36:04.026] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:36:04.052] [INFO] cheese - inserting 1000 documents. first: Iraqi Premier League 2001-02 and last: Bailey Junior High -[2018-02-13T08:36:04.076] [INFO] cheese - inserting 1000 documents. first: Ciro Gomes and last: Light middlewight -[2018-02-13T08:36:04.088] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:04.110] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T08:36:04.130] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:36:04.146] [INFO] cheese - inserting 1000 documents. first: Pietro Ercole Fava and last: Category:1983 establishments in Pakistan -[2018-02-13T08:36:04.171] [INFO] cheese - inserting 1000 documents. first: Shiozawa, Niigata and last: Smolyan -[2018-02-13T08:36:04.205] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:04.249] [INFO] cheese - inserting 1000 documents. first: Category:Baroque Revival architecture in Spain and last: Isthmura -[2018-02-13T08:36:04.281] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:36:04.318] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:36:04.407] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jordan sydow and last: Wikipedia:WikiProject Spam/COIReports/2008, Aug 1 -[2018-02-13T08:36:04.446] [INFO] cheese - inserting 1000 documents. first: Paweł Klisz and last: 2002 Leeward Islands Junior Championships in Athletics -[2018-02-13T08:36:04.465] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:04.539] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T08:36:04.597] [INFO] cheese - inserting 1000 documents. first: Steve Jensen and last: Category:Miss World 1991 delegates -[2018-02-13T08:36:04.607] [INFO] cheese - inserting 1000 documents. first: Patricia Vizitiu and last: Wikipedia:Suspected copyright violations/2010-03-19 -[2018-02-13T08:36:04.647] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:36:04.685] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:36:04.733] [INFO] cheese - inserting 1000 documents. first: Category:1986 establishments in Iran and last: Fahaheel (football club) -[2018-02-13T08:36:04.793] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:36:04.801] [INFO] cheese - inserting 1000 documents. first: City of Ekurhuleni Metropolitan Municipality and last: Category:East Carolina Pirates football coaches -[2018-02-13T08:36:04.821] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Isthmura and last: Cristóforo Chrisostome Carletti -[2018-02-13T08:36:04.879] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:36:04.924] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:36:05.085] [INFO] cheese - inserting 1000 documents. first: Susan Smith Blackburn Award and last: 1997 Davis Cup Europe/Africa Zone -[2018-02-13T08:36:05.097] [INFO] cheese - inserting 1000 documents. first: Arboreal decomposition and last: Wikipedia:Articles for deletion/Richard Swann -[2018-02-13T08:36:05.122] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:36:05.139] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:36:05.157] [INFO] cheese - inserting 1000 documents. first: Mahmood Mosque and last: Category:Railway lines opened in 1876 -[2018-02-13T08:36:05.274] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:36:05.285] [INFO] cheese - inserting 1000 documents. first: Expressive language disorder and last: HMS Caesar -[2018-02-13T08:36:05.312] [INFO] cheese - inserting 1000 documents. first: Roy noble and last: Black hayate -[2018-02-13T08:36:05.326] [INFO] cheese - inserting 1000 documents. first: Delaware County National Bank and last: Tinea (Eucarphia) resectella -[2018-02-13T08:36:05.369] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:36:05.372] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:36:05.386] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:36:05.482] [INFO] cheese - inserting 1000 documents. first: Rhinegrave of Salm and last: Amsterdam Exhibition -[2018-02-13T08:36:05.543] [INFO] cheese - inserting 1000 documents. first: Template:Humornotsuggested and last: Palmov Victor -[2018-02-13T08:36:05.556] [INFO] cheese - inserting 1000 documents. first: Ignorance is Bliss (album) and last: Euterpe leucodrosime -[2018-02-13T08:36:05.559] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:05.603] [INFO] cheese - inserting 1000 documents. first: Rock The Nation and last: Maud Shackle -[2018-02-13T08:36:05.620] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:36:05.636] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:36:05.668] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:36:05.711] [INFO] cheese - inserting 1000 documents. first: Category:Railway lines opened in 1897 and last: File:Keane-Call Me What You Like.jpg -[2018-02-13T08:36:05.761] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:36:05.827] [INFO] cheese - inserting 1000 documents. first: 1982–83 Watford F.C. season and last: File:CanYouGiveIt.jpg -[2018-02-13T08:36:05.852] [INFO] cheese - inserting 1000 documents. first: Earth Omen and last: Demographics of the Republic of China -[2018-02-13T08:36:05.864] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:36:05.920] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:36:05.995] [INFO] cheese - inserting 1000 documents. first: Rangitikei by-election, 1909 and last: Thermal power station Regina Margherita -[2018-02-13T08:36:06.049] [INFO] cheese - inserting 1000 documents. first: I'm Here (film) and last: JUMPstart RNA motif -[2018-02-13T08:36:06.051] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:36:06.068] [INFO] cheese - inserting 1000 documents. first: Kenan and kel and last: Behrends -[2018-02-13T08:36:06.077] [INFO] cheese - inserting 1000 documents. first: Terminology Coordination Unit of the European Parliament and last: Portal:Tiruchirappalli -[2018-02-13T08:36:06.087] [INFO] cheese - inserting 1000 documents. first: Kevin rose and last: Tony Geary -[2018-02-13T08:36:06.113] [INFO] cheese - batch complete in: 0.477 secs -[2018-02-13T08:36:06.128] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:36:06.147] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:36:06.157] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:36:06.231] [INFO] cheese - inserting 1000 documents. first: Capt. Oliver Bearse House and last: Category:List-Class Alternate History articles -[2018-02-13T08:36:06.305] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:36:06.313] [INFO] cheese - inserting 1000 documents. first: Baroness Louise Lehzen and last: Falcine -[2018-02-13T08:36:06.377] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:36:06.457] [INFO] cheese - inserting 1000 documents. first: John Lindsay, 20th Earl of Crawford and last: Wikipedia:WikiProject Video games/Peer review/Breed (video game) -[2018-02-13T08:36:06.620] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:06.654] [INFO] cheese - inserting 1000 documents. first: Sheffield Municipal election, 1960 and last: Same-sex marriage in Kentucky -[2018-02-13T08:36:06.752] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:36:06.767] [INFO] cheese - inserting 1000 documents. first: Cheyenne Westphal and last: Template:2016-17 Iran Pro League table -[2018-02-13T08:36:06.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/RedandNater.com (2nd nomination) and last: St. John's Evangelical Lutheran Church (Springfield, Ohio) -[2018-02-13T08:36:06.846] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:36:06.875] [INFO] cheese - inserting 1000 documents. first: Shadow (Final Fantasy) and last: Paul Westerburg -[2018-02-13T08:36:06.884] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:36:06.962] [INFO] cheese - inserting 1000 documents. first: Behrens and last: Soviet coat of arms -[2018-02-13T08:36:07.031] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:36:07.050] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:36:07.083] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Ambassadors/Courses/Psychology Capstone64APSWI999/Timeline and last: European White-front -[2018-02-13T08:36:07.141] [INFO] cheese - inserting 1000 documents. first: WTO (disambiguation) and last: B-58 -[2018-02-13T08:36:07.150] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:36:07.259] [INFO] cheese - inserting 1000 documents. first: Charles K. McNeil and last: United Nations Observer Group in Central America -[2018-02-13T08:36:07.278] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:36:07.335] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:36:07.345] [INFO] cheese - inserting 1000 documents. first: Nestor von Henko and last: Carl A. Kemme -[2018-02-13T08:36:07.410] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:36:07.453] [INFO] cheese - inserting 1000 documents. first: Template:2016-17 National League 1 Table and last: File:Crying - Don McLean.jpg -[2018-02-13T08:36:07.461] [INFO] cheese - inserting 1000 documents. first: Ramshackled and last: Peotr Kapitsa -[2018-02-13T08:36:07.512] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:36:07.515] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:36:07.552] [INFO] cheese - inserting 1000 documents. first: Superman:Speeding Bullet and last: File:Ciesa2.JPG -[2018-02-13T08:36:07.597] [INFO] cheese - inserting 1000 documents. first: Due Diligence and last: Lyse Doucet -[2018-02-13T08:36:07.604] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:36:07.647] [INFO] cheese - inserting 1000 documents. first: Greenland White-front and last: William Grieve (disambiguation) -[2018-02-13T08:36:07.673] [INFO] cheese - inserting 1000 documents. first: File:Munnar tea field.jpg and last: Mask of satan -[2018-02-13T08:36:07.675] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:36:07.706] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:07.711] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T08:36:07.794] [INFO] cheese - inserting 1000 documents. first: Template:Vermont Catamounts men's basketball navbox and last: Template:TFA title/March 7, 2014 -[2018-02-13T08:36:07.830] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:36:07.922] [INFO] cheese - inserting 1000 documents. first: Category:Honor societies and last: List of Australian divisions in WWI -[2018-02-13T08:36:07.978] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/J.A.T.D.Nishantha and last: WCPH -[2018-02-13T08:36:07.986] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:07.988] [INFO] cheese - inserting 1000 documents. first: Iolas blue and last: History of Berkeley, California -[2018-02-13T08:36:07.992] [INFO] cheese - inserting 1000 documents. first: Category:Cities in Kaunas County and last: John Williams Jr -[2018-02-13T08:36:08.039] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:36:08.047] [INFO] cheese - inserting 1000 documents. first: Dospat Peak and last: Wikipedia:Articles for deletion/Water empire -[2018-02-13T08:36:08.057] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:36:08.072] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:36:08.080] [INFO] cheese - inserting 1000 documents. first: McJones and last: Calixto García de Luna e Izquierdo -[2018-02-13T08:36:08.116] [INFO] cheese - inserting 1000 documents. first: The mask of satan and last: Category:Egyptian chefs -[2018-02-13T08:36:08.121] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:36:08.182] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:36:08.234] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:08.244] [INFO] cheese - inserting 1000 documents. first: Category:SYN Media shows and last: Henry Garland Bennett -[2018-02-13T08:36:08.356] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:36:08.602] [INFO] cheese - inserting 1000 documents. first: Bergsma and last: Southern Illinois Normal College -[2018-02-13T08:36:08.653] [INFO] cheese - inserting 1000 documents. first: Arctic Air (TV series) and last: Lockheed XV-4B Hummingbird -[2018-02-13T08:36:08.658] [INFO] cheese - inserting 1000 documents. first: Power of Siberia and last: Strathcona Transit -[2018-02-13T08:36:08.680] [INFO] cheese - batch complete in: 0.641 secs -[2018-02-13T08:36:08.703] [INFO] cheese - inserting 1000 documents. first: File:CBCfront.jpg and last: Toronto Electric Light Company -[2018-02-13T08:36:08.716] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:36:08.764] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:36:08.776] [INFO] cheese - inserting 1000 documents. first: Euro 2016 squads and last: Template:Taxonomy/Toxotidae -[2018-02-13T08:36:08.792] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:08.828] [INFO] cheese - inserting 1000 documents. first: Nigel King and last: Donough O'Brien (cricketer) -[2018-02-13T08:36:08.883] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:36:08.941] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:09.024] [INFO] cheese - inserting 1000 documents. first: José Miguel Fernández and last: Eddings Point Community Praise House -[2018-02-13T08:36:09.081] [INFO] cheese - inserting 1000 documents. first: Obdurodon dicksoni and last: Binky (Harry Potter) -[2018-02-13T08:36:09.093] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:36:09.253] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:36:09.361] [INFO] cheese - inserting 1000 documents. first: Nikolai Rimsky-Korsakoff and last: Atsuhiko Ejiri -[2018-02-13T08:36:09.395] [INFO] cheese - inserting 1000 documents. first: Black-eye Goby and last: Cottonwood Creek(Kern County) -[2018-02-13T08:36:09.419] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:09.448] [INFO] cheese - inserting 1000 documents. first: Honey Bottom and last: File:Posterreunionusx.jpg -[2018-02-13T08:36:09.462] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:36:09.501] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Toxotes and last: Category:Governors of Samsun -[2018-02-13T08:36:09.527] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:36:09.549] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:09.566] [INFO] cheese - inserting 1000 documents. first: Paulsgrove F.C. and last: Wikipedia:ESP/PROG -[2018-02-13T08:36:09.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/freakmuseum.blogspot.com and last: Betsinga language -[2018-02-13T08:36:09.621] [INFO] cheese - inserting 1000 documents. first: Frederick Phillips and last: Category:Nations at the Asian Games -[2018-02-13T08:36:09.642] [INFO] cheese - batch complete in: 0.85 secs -[2018-02-13T08:36:09.636] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:36:09.708] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:36:09.847] [INFO] cheese - inserting 1000 documents. first: NWCDEX and last: History of Muslim Egypt -[2018-02-13T08:36:09.865] [INFO] cheese - inserting 1000 documents. first: Mundair Kalan and last: Masa'aki Mochizuki -[2018-02-13T08:36:09.881] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T08:36:09.924] [INFO] cheese - batch complete in: 0.505 secs -[2018-02-13T08:36:09.975] [INFO] cheese - inserting 1000 documents. first: Walt Disney World Inside Out and last: Category:17th-century Indian literature -[2018-02-13T08:36:09.979] [INFO] cheese - inserting 1000 documents. first: Whistler tip and last: Laona Township, Minnesota -[2018-02-13T08:36:09.996] [INFO] cheese - inserting 1000 documents. first: Super-Dude and last: Jon Lane Kent -[2018-02-13T08:36:10.021] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:36:10.025] [INFO] cheese - inserting 1000 documents. first: Fado (character) and last: Tree sitter -[2018-02-13T08:36:10.071] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:36:10.098] [INFO] cheese - inserting 1000 documents. first: Major (Canada) and last: Port Glasgow Athletic -[2018-02-13T08:36:10.122] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:36:10.155] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:36:10.206] [INFO] cheese - inserting 1000 documents. first: Cricket (1914 automobile) and last: Inter.funda.stifle -[2018-02-13T08:36:10.211] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:36:10.285] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:36:10.392] [INFO] cheese - inserting 1000 documents. first: Special routes of U.S. Route 221 and last: Porgi l'altra guancia -[2018-02-13T08:36:10.401] [INFO] cheese - inserting 1000 documents. first: File:Intango.jpg and last: Weyman Bennett -[2018-02-13T08:36:10.473] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:36:10.477] [INFO] cheese - batch complete in: 0.553 secs -[2018-02-13T08:36:10.579] [INFO] cheese - inserting 1000 documents. first: Category:Epsom and last: Ministry of Environment (Cambodia) -[2018-02-13T08:36:10.602] [INFO] cheese - inserting 1000 documents. first: Fruit stickers and last: Julio Canani -[2018-02-13T08:36:10.674] [INFO] cheese - inserting 1000 documents. first: Tang Jun (politician) and last: EgyptAir MS804 -[2018-02-13T08:36:10.725] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:36:10.734] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:36:10.837] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:36:10.922] [INFO] cheese - inserting 1000 documents. first: Risk (Terminaator album) and last: SMJP -[2018-02-13T08:36:10.952] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Templates for deletion/Log/2006 February 1 and last: Astoria (OR) -[2018-02-13T08:36:11.023] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:11.103] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:36:11.116] [INFO] cheese - inserting 1000 documents. first: Adamangalampudur and last: Philip Vallance -[2018-02-13T08:36:11.168] [INFO] cheese - inserting 1000 documents. first: Immunities and last: Liberalism and radicalism in Bulgaria -[2018-02-13T08:36:11.207] [INFO] cheese - inserting 1000 documents. first: WGND-FM and last: Kazuya Maeda (footballer, born 1984) -[2018-02-13T08:36:11.219] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:36:11.283] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:36:11.300] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:36:11.463] [INFO] cheese - inserting 1000 documents. first: Monastery of Nonantola and last: Kassanda -[2018-02-13T08:36:11.481] [INFO] cheese - inserting 1000 documents. first: COPS (tv show) and last: Kevin Sullivan (communications professional) -[2018-02-13T08:36:11.497] [INFO] cheese - inserting 1000 documents. first: Kirschst. and last: Template:Leinster Hurling Team 2014 -[2018-02-13T08:36:11.517] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:11.523] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:36:11.543] [INFO] cheese - inserting 1000 documents. first: Stanley "Stan" Marsh and last: Take Me Out (disambiguation) -[2018-02-13T08:36:11.569] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:36:11.617] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:36:11.657] [INFO] cheese - inserting 1000 documents. first: Soldier Mountains and last: Category:Secularism in Canada -[2018-02-13T08:36:11.669] [INFO] cheese - inserting 1000 documents. first: Frente Amplio Popular and last: The Second Album (The Spencer Davis Group album) -[2018-02-13T08:36:11.704] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:36:11.711] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:36:11.743] [INFO] cheese - inserting 1000 documents. first: Forest Grove (OR) and last: Wikipedia:Articles for deletion/Roman verone -[2018-02-13T08:36:11.811] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:36:11.931] [INFO] cheese - inserting 1000 documents. first: 2016 Sri Lanka floods and last: Frank Held -[2018-02-13T08:36:11.946] [INFO] cheese - inserting 1000 documents. first: Lloyd McIntyre and last: Template:Asteras Tripolis squad -[2018-02-13T08:36:11.963] [INFO] cheese - batch complete in: 0.446 secs -[2018-02-13T08:36:11.983] [INFO] cheese - inserting 1000 documents. first: Sorry Seems to be the Hardest Word and last: Asteroid dust -[2018-02-13T08:36:11.991] [INFO] cheese - inserting 1000 documents. first: Gingerbread man and last: Omotegō, Fukushima -[2018-02-13T08:36:12.001] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:36:12.026] [INFO] cheese - inserting 1000 documents. first: Philippine Senate elections, 1931 and last: Wikipedia:WikiProject Video games/Command & Conquer -[2018-02-13T08:36:12.041] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:36:12.075] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:36:12.081] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:36:12.125] [INFO] cheese - inserting 1000 documents. first: First Congregational Church (Vermontville, Michigan) and last: FIBA's 50 Greatest Players -[2018-02-13T08:36:12.176] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:36:12.228] [INFO] cheese - inserting 1000 documents. first: Rajeev Kanakala and last: Category:Stone circles in Ireland -[2018-02-13T08:36:12.301] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:36:12.309] [INFO] cheese - inserting 1000 documents. first: Elmer McCurdy and last: Asian small-clawed otters -[2018-02-13T08:36:12.367] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:12.408] [INFO] cheese - inserting 1000 documents. first: List of tallest buildings in Mississippi and last: File:Absolutedeceptionposter.jpg -[2018-02-13T08:36:12.521] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:36:12.589] [INFO] cheese - inserting 1000 documents. first: Category:Memphis Tigers athletic directors and last: Rail transport in China -[2018-02-13T08:36:12.651] [INFO] cheese - inserting 1000 documents. first: Epidermal growth factor family and last: Template:Disneymania -[2018-02-13T08:36:12.691] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:36:12.741] [INFO] cheese - inserting 1000 documents. first: Illerup inscriptions and last: 163rd (Norfolk & Suffolk) Brigade -[2018-02-13T08:36:12.782] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:12.846] [INFO] cheese - inserting 1000 documents. first: Asteroidal dust and last: The Honourable the Commons of the United Kingdom of Great Britain and Northern Ireland in Parliament assembled -[2018-02-13T08:36:12.893] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:36:13.023] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:36:13.060] [INFO] cheese - inserting 1000 documents. first: Cycling at the 2010 South American Games – Men's Madison and last: St Bridget's, Brigham -[2018-02-13T08:36:13.129] [INFO] cheese - inserting 1000 documents. first: Kaub and last: Category:Lebanese films -[2018-02-13T08:36:13.158] [INFO] cheese - inserting 1000 documents. first: Shacal-2 and last: Aleksandr Sergeyevich Pushkin -[2018-02-13T08:36:13.163] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:36:13.252] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:36:13.322] [INFO] cheese - batch complete in: 1.241 secs -[2018-02-13T08:36:13.361] [INFO] cheese - inserting 1000 documents. first: Adilabad mandal and last: Natsuto Wada -[2018-02-13T08:36:13.441] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:36:13.481] [INFO] cheese - inserting 1000 documents. first: Melba Manners and last: Esrefpasa -[2018-02-13T08:36:13.504] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Computer Guy 2/Archive and last: Wikipedia:Articles for deletion/Spandex fetishism -[2018-02-13T08:36:13.509] [INFO] cheese - inserting 1000 documents. first: USS Manayunk (AN-81) and last: R 9 -[2018-02-13T08:36:13.555] [INFO] cheese - inserting 1000 documents. first: The Singles Collection (Silversun Pickups album) and last: File:Prephenate dehydrogenase to arogenate.png -[2018-02-13T08:36:13.556] [INFO] cheese - batch complete in: 0.774 secs -[2018-02-13T08:36:13.572] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:36:13.607] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:36:13.642] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:36:13.671] [INFO] cheese - inserting 1000 documents. first: St. Bridget's, Brigham and last: Transfers of Undertakings Directive 2001 -[2018-02-13T08:36:13.727] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:36:13.829] [INFO] cheese - inserting 1000 documents. first: Strange Bedfellows (DS9 episode) and last: Asian ball-jointed doll -[2018-02-13T08:36:13.897] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:36:13.960] [INFO] cheese - inserting 1000 documents. first: HxC and last: Wikipedia:Articles for deletion/The Story of Tohoshi -[2018-02-13T08:36:13.987] [INFO] cheese - inserting 1000 documents. first: Francisco de Sá Carneiro and last: Aperture synthesis -[2018-02-13T08:36:14.009] [INFO] cheese - inserting 1000 documents. first: Conus chytreus and last: Category:Loyola Ramblers women's basketball -[2018-02-13T08:36:14.008] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:36:14.032] [INFO] cheese - inserting 1000 documents. first: Ebersberg district and last: Erin Nicole Peterson -[2018-02-13T08:36:14.052] [INFO] cheese - inserting 1000 documents. first: File:Histidinol Phosphate Trans.jpg and last: Maryland State Highway 105 -[2018-02-13T08:36:14.060] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:14.070] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:36:14.099] [INFO] cheese - inserting 1000 documents. first: Category:Peruvian speculative fiction artists and last: Category:Fireworks in Canada -[2018-02-13T08:36:14.109] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:36:14.130] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:36:14.239] [INFO] cheese - batch complete in: 0.798 secs -[2018-02-13T08:36:14.569] [INFO] cheese - inserting 1000 documents. first: File:Billiongravy.jpg and last: Savery, Wyoming -[2018-02-13T08:36:14.574] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/k-popexpress.com and last: Distratto -[2018-02-13T08:36:14.583] [INFO] cheese - inserting 1000 documents. first: Roseville Area Schools and last: Scouting in Finland -[2018-02-13T08:36:14.596] [INFO] cheese - inserting 1000 documents. first: Maryland State Route 105 and last: Runyonia -[2018-02-13T08:36:14.628] [INFO] cheese - inserting 1000 documents. first: Australian Liberal Students Federation and last: Ecclesiastical Commissioners -[2018-02-13T08:36:14.648] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:36:14.659] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:36:14.674] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:14.714] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:14.748] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:36:14.805] [INFO] cheese - inserting 1000 documents. first: 1946 Pittsburgh Panthers football team and last: Sucedió en Sevilla -[2018-02-13T08:36:14.905] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:15.033] [INFO] cheese - inserting 1000 documents. first: Nintendo Entertainment System hardware clone and last: RJD2 -[2018-02-13T08:36:15.134] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:36:15.155] [INFO] cheese - inserting 1000 documents. first: Category:1962 in chess and last: Template:Microsoft Expression -[2018-02-13T08:36:15.162] [INFO] cheese - inserting 1000 documents. first: Ir herbowo and last: National Midget Hockey Championship -[2018-02-13T08:36:15.162] [INFO] cheese - inserting 1000 documents. first: Henniker Town Hall and last: Template:Country data Liguria/doc -[2018-02-13T08:36:15.205] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:36:15.211] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:36:15.261] [INFO] cheese - inserting 1000 documents. first: Ren Chengyuan and last: Polycarpos Yiorkadjis -[2018-02-13T08:36:15.285] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:36:15.356] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:36:15.371] [INFO] cheese - inserting 1000 documents. first: Louis Cahuzac and last: File:World-travel.jpg -[2018-02-13T08:36:15.403] [INFO] cheese - inserting 1000 documents. first: Rowing at the 1936 Summer Olympics - Men's eight and last: Draft:Mark Singer -[2018-02-13T08:36:15.444] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:36:15.455] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:36:15.558] [INFO] cheese - inserting 1000 documents. first: ARD 2001 and last: Portal:Gabon/Featured picture -[2018-02-13T08:36:15.696] [INFO] cheese - batch complete in: 1.969 secs -[2018-02-13T08:36:15.748] [INFO] cheese - inserting 1000 documents. first: Dowlatabad, Khorramabad and last: AAIIB -[2018-02-13T08:36:15.763] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/rachelmacnair.com and last: Cambaroides koshewnikowi -[2018-02-13T08:36:15.830] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:36:15.875] [INFO] cheese - inserting 1000 documents. first: Analysis of flows and last: Matsuyama, Yamagata -[2018-02-13T08:36:15.889] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:15.906] [INFO] cheese - inserting 1000 documents. first: File:Eurozine screenshot.png and last: Grammatotria -[2018-02-13T08:36:16.016] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:16.084] [INFO] cheese - inserting 1000 documents. first: Stine Andresen and last: Bernard Lafayette -[2018-02-13T08:36:16.090] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:36:16.223] [INFO] cheese - inserting 1000 documents. first: State Energy Commission of Western Australia and last: Star Wars: Episode V -[2018-02-13T08:36:16.270] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:36:16.284] [INFO] cheese - inserting 1000 documents. first: Kawah Ijen Volcano and last: Justice Lacy -[2018-02-13T08:36:16.338] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:36:16.350] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:36:16.406] [INFO] cheese - inserting 1000 documents. first: The Sixth extinction Elizabeth kolbert and last: Anglo Australian Observatory -[2018-02-13T08:36:16.484] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:36:16.538] [INFO] cheese - inserting 1000 documents. first: Novell "Vladivar" and last: Chalcolepidius porcatus -[2018-02-13T08:36:16.611] [INFO] cheese - inserting 1000 documents. first: Oxyrhynchite and last: Louis Trudel -[2018-02-13T08:36:16.619] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:36:16.716] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:16.722] [INFO] cheese - inserting 1000 documents. first: Portal:Gabon/Selected panorama/1 and last: Trenail -[2018-02-13T08:36:16.808] [INFO] cheese - inserting 1000 documents. first: Hirata, Yamagata and last: Canon EOS 10D -[2018-02-13T08:36:16.836] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:36:16.902] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:16.929] [INFO] cheese - inserting 1000 documents. first: File:My Life singlecover.jpg and last: Wingman (seduction) -[2018-02-13T08:36:16.946] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the Province of Ancona and last: Saturday Night Live (season 42) -[2018-02-13T08:36:16.985] [INFO] cheese - inserting 1000 documents. first: Canibalism and last: Portsmouth Island, North Carolina -[2018-02-13T08:36:17.045] [INFO] cheese - inserting 1000 documents. first: 2014 Malaysian Open and last: Template:Did you know nominations/The Flask, Highgate -[2018-02-13T08:36:17.050] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:17.078] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:36:17.131] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:36:17.151] [INFO] cheese - inserting 1000 documents. first: Oktophonie and last: Robert Thorogood -[2018-02-13T08:36:17.174] [INFO] cheese - batch complete in: 0.689 secs -[2018-02-13T08:36:17.245] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:36:17.401] [INFO] cheese - inserting 1000 documents. first: Den fynske landsby and last: Chloditan -[2018-02-13T08:36:17.493] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:36:17.564] [INFO] cheese - inserting 1000 documents. first: Manuel F. Ayau and last: Oswald Mitchell -[2018-02-13T08:36:17.602] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Template:Tron and last: Abd Al-Salam Al-Hilah -[2018-02-13T08:36:17.664] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:36:17.675] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:36:17.723] [INFO] cheese - inserting 1000 documents. first: Boarding passes and last: SG Bad Breisig -[2018-02-13T08:36:17.813] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:36:17.910] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mitry - Claye (SNCF) and last: File:Selftitledautumnscover.jpg -[2018-02-13T08:36:17.914] [INFO] cheese - inserting 1000 documents. first: Ethmia eupostica and last: Template:2005–06 Big Ten Conference men's basketball standings -[2018-02-13T08:36:17.993] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:36:17.999] [INFO] cheese - inserting 1000 documents. first: Category:1898 and last: Jason Becker -[2018-02-13T08:36:18.031] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:36:18.092] [INFO] cheese - inserting 1000 documents. first: Katy Deepwell and last: James Griffin and the Subterraneans -[2018-02-13T08:36:18.093] [INFO] cheese - inserting 1000 documents. first: Record of fallen vampire and last: Liberty Plains Parish, Cumberland -[2018-02-13T08:36:18.141] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T08:36:18.164] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:36:18.173] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:18.181] [INFO] cheese - inserting 1000 documents. first: File:D'Artagnan and Three Musketeers.jpg and last: Emertonella taczanowskii -[2018-02-13T08:36:18.263] [INFO] cheese - inserting 1000 documents. first: Triethyl orthoacetate and last: Saints Peter and Paul Roman Catholic Church (Clear Creek) -[2018-02-13T08:36:18.305] [INFO] cheese - batch complete in: 1.255 secs -[2018-02-13T08:36:18.350] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:36:18.406] [INFO] cheese - inserting 1000 documents. first: Zhou Peng (canoeist) and last: Template:SriLankaNationalTeams -[2018-02-13T08:36:18.452] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:36:18.545] [INFO] cheese - inserting 1000 documents. first: Postal Service of Russia and last: Ken Welsh -[2018-02-13T08:36:18.562] [INFO] cheese - inserting 1000 documents. first: Carl V. Weygandt and last: Hajj Khadijeh -[2018-02-13T08:36:18.597] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:18.624] [INFO] cheese - inserting 1000 documents. first: Connecticut Hurricanes Drum and Bugle Corps and last: File:Harvard Rugby, 1995.png.jpg -[2018-02-13T08:36:18.628] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:36:18.687] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:18.782] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ramsgate Neighborhood and last: File:Audioslave your time has come.png -[2018-02-13T08:36:18.832] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:18.835] [INFO] cheese - inserting 1000 documents. first: Étienne-Augustin De Wailly and last: Wikipedia:Reference desk/Archives/Humanities/2016 May 14 -[2018-02-13T08:36:18.905] [INFO] cheese - inserting 1000 documents. first: Capitonym and last: Donald "Buzz" Lukens -[2018-02-13T08:36:18.908] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:18.916] [INFO] cheese - inserting 1000 documents. first: Portal:Oxfordshire/Selected picture/5 and last: 2000 Chevrolet Cup -[2018-02-13T08:36:18.932] [INFO] cheese - inserting 1000 documents. first: João N'tyamba and last: State Intellectual Property Office -[2018-02-13T08:36:18.984] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:36:19.024] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:36:19.024] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:36:19.093] [INFO] cheese - inserting 1000 documents. first: Hajj Ali-ye Gerehbid and last: Trichocirca decaryanum -[2018-02-13T08:36:19.105] [INFO] cheese - inserting 1000 documents. first: Petalocrinidae and last: Wikipedia:Articles for deletion/Belle Knox -[2018-02-13T08:36:19.119] [INFO] cheese - inserting 1000 documents. first: Robert H. Nelson and last: Cesvaine -[2018-02-13T08:36:19.164] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:36:19.169] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:19.175] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:19.249] [INFO] cheese - inserting 1000 documents. first: Soiku and last: Federation of Fly Fishers -[2018-02-13T08:36:19.282] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:19.339] [INFO] cheese - inserting 1000 documents. first: Neighborhoods in Key West and last: Nemet Qasimli -[2018-02-13T08:36:19.433] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:19.496] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Mammals/Article templates/stats/Ctenomyidae nav and last: Kendallville, IN µSA -[2018-02-13T08:36:19.603] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:36:19.638] [INFO] cheese - inserting 1000 documents. first: Charles Berkeley, 3rd Baron FitzHardinge and last: Babayevski -[2018-02-13T08:36:19.673] [INFO] cheese - inserting 1000 documents. first: Papilio encelades and last: Nerd jeans -[2018-02-13T08:36:19.695] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:36:19.748] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Wookieepedia (3rd nomination) and last: Diet RC Cola -[2018-02-13T08:36:19.777] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:36:19.817] [INFO] cheese - inserting 1000 documents. first: North Alantic Sea Movement and last: Wikipedia:Articles for deletion/Roaming Janitors International -[2018-02-13T08:36:19.833] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:36:19.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/tengashop.com.au and last: Yara Shahidi -[2018-02-13T08:36:19.863] [INFO] cheese - inserting 1000 documents. first: Conrad I, Duke of Bohemia and last: Postage stamps and postal history of Bolivar Department -[2018-02-13T08:36:19.901] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:36:19.905] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:36:19.965] [INFO] cheese - inserting 1000 documents. first: Derby Wharf Light Station and last: Steerleaders -[2018-02-13T08:36:19.973] [INFO] cheese - batch complete in: 0.949 secs -[2018-02-13T08:36:20.019] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:36:20.049] [INFO] cheese - inserting 1000 documents. first: Suh Jung and last: I-5 Publishing -[2018-02-13T08:36:20.100] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:36:20.122] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/nome.unak.is and last: Wikipedia:WikiProject user warnings/Testing/ImageTaggingBot -[2018-02-13T08:36:20.131] [INFO] cheese - inserting 1000 documents. first: Anhydrophryne hewitti and last: Paul Ellwood, Jr. -[2018-02-13T08:36:20.177] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:20.190] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:36:20.270] [INFO] cheese - inserting 1000 documents. first: 5 Characters in Search of an Exit and last: Our Lady of the Roses -[2018-02-13T08:36:20.308] [INFO] cheese - inserting 1000 documents. first: Take a Good Look (TV series) and last: Ithaca Falls -[2018-02-13T08:36:20.312] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:36:20.349] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:36:20.377] [INFO] cheese - inserting 1000 documents. first: Deadliest Atlantic hurricane and last: Eurovision winners -[2018-02-13T08:36:20.403] [INFO] cheese - inserting 1000 documents. first: Just Friends (Amy Winehouse song) and last: Animo Locke Tech Charter High School -[2018-02-13T08:36:20.443] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:36:20.470] [INFO] cheese - batch complete in: 0.451 secs -[2018-02-13T08:36:20.474] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject user warnings/Testing/SDPatrolBot and last: 2014 Division 1 Kvalserien -[2018-02-13T08:36:20.520] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T08:36:20.550] [INFO] cheese - inserting 1000 documents. first: The Life of Verdi (docudrama) and last: Scottish delict -[2018-02-13T08:36:20.626] [INFO] cheese - inserting 1000 documents. first: M. Sarada Menon and last: Category:Geography of Kottayam district -[2018-02-13T08:36:20.643] [INFO] cheese - inserting 1000 documents. first: Postage stamps and postal history of the North German Confederation and last: List of bridges in Cambridge -[2018-02-13T08:36:20.668] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:36:20.680] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:36:20.786] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:36:20.880] [INFO] cheese - inserting 1000 documents. first: Ishoyahb IV and last: Opera-ballets -[2018-02-13T08:36:20.923] [INFO] cheese - batch complete in: 0.574 secs -[2018-02-13T08:36:21.014] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/workingdogvids.com and last: Hedwig Eleonora of Schleswig-Holstein-Gottorp -[2018-02-13T08:36:21.031] [INFO] cheese - inserting 1000 documents. first: Philaster and last: List of evolutionary psychologists -[2018-02-13T08:36:21.041] [INFO] cheese - inserting 1000 documents. first: Crimea transfer and last: Ass2mouth -[2018-02-13T08:36:21.075] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:21.098] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:21.101] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:36:21.138] [INFO] cheese - inserting 1000 documents. first: Category:Bacteria described in the 1960s and last: Nataliconus -[2018-02-13T08:36:21.147] [INFO] cheese - inserting 1000 documents. first: Simmon's citrate agar and last: Times-up! -[2018-02-13T08:36:21.182] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Ahmadiyya articles by quality log and last: Category:Mumbai culture -[2018-02-13T08:36:21.208] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:36:21.227] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:36:21.243] [INFO] cheese - inserting 1000 documents. first: Operas-ballets and last: Terrine -[2018-02-13T08:36:21.248] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:36:21.301] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:36:21.417] [INFO] cheese - inserting 1000 documents. first: Slip Stich and Pass and last: Ford F-Series -[2018-02-13T08:36:21.486] [INFO] cheese - inserting 1000 documents. first: Rey, Anthony and last: Wikipedia:WikiProject User scripts/Scripts/TimeTraveller.js -[2018-02-13T08:36:21.494] [INFO] cheese - inserting 1000 documents. first: Operation Lava Jato and last: Template:Uruguay squad 1949 South American Championship -[2018-02-13T08:36:21.502] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:36:21.525] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T08:36:21.557] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:21.638] [INFO] cheese - inserting 1000 documents. first: Chartered Companies and last: Wikipedia:Articles for deletion/Swansea Bowls -[2018-02-13T08:36:21.682] [INFO] cheese - inserting 1000 documents. first: Postal Address Verification and last: Abernant Colliery -[2018-02-13T08:36:21.705] [INFO] cheese - inserting 1000 documents. first: File:Saya de Malha2b.PNG and last: File:Hzlg.jpg -[2018-02-13T08:36:21.762] [INFO] cheese - batch complete in: 0.661 secs -[2018-02-13T08:36:21.788] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:36:21.875] [INFO] cheese - inserting 1000 documents. first: Sähkönsinistä sinfoniaa (album) and last: LRQ -[2018-02-13T08:36:21.905] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:36:22.048] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:36:22.072] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Guputa1111 and last: Shortage (economics) -[2018-02-13T08:36:22.114] [INFO] cheese - inserting 1000 documents. first: Untied States House of Representatives elections in Virginia, 1988 and last: Bandžovo Brdo Sports Center -[2018-02-13T08:36:22.149] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:36:22.162] [INFO] cheese - inserting 1000 documents. first: Republic of Zangaro and last: Shepard Block -[2018-02-13T08:36:22.171] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:36:22.215] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:36:22.356] [INFO] cheese - inserting 1000 documents. first: Ford F-150 (F-Series truck) and last: Pneumonoultramicroscopicsilicovolcanokoniosis -[2018-02-13T08:36:22.400] [INFO] cheese - inserting 1000 documents. first: Shooting at the 1974 Asian Games and last: Saud Al Nasser Al Sabah -[2018-02-13T08:36:22.411] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Paul Guffey and last: Red Clay School District -[2018-02-13T08:36:22.420] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:36:22.474] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:36:22.481] [INFO] cheese - inserting 1000 documents. first: LTW and last: 802.11 b/g -[2018-02-13T08:36:22.502] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:22.541] [INFO] cheese - inserting 1000 documents. first: Adoro, Marcus and last: Pineville Historic District -[2018-02-13T08:36:22.552] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:36:22.599] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:22.606] [INFO] cheese - inserting 1000 documents. first: File:Stolen Earth.jpg and last: Wikipedia:Articles for deletion/G-Boy Status -[2018-02-13T08:36:22.626] [INFO] cheese - inserting 1000 documents. first: Robert Smith (cricketer, born 1946) and last: Polaris (composition) -[2018-02-13T08:36:22.665] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:36:22.684] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:36:22.755] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Creating Change 2012 and last: Dongen (plaats) -[2018-02-13T08:36:22.791] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:36:22.894] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:Swapnil mali/MITSOT and last: Aerts, Peter -[2018-02-13T08:36:22.928] [INFO] cheese - inserting 1000 documents. first: 1st Afro-Asian Games and last: Sebhat Guebre-Egziabher -[2018-02-13T08:36:22.928] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:36:23.025] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:36:23.045] [INFO] cheese - inserting 1000 documents. first: Kalasin Province Stadium and last: Category:U.S. Sassuolo Calcio seasons -[2018-02-13T08:36:23.076] [INFO] cheese - inserting 1000 documents. first: José Luis de Quintanar Soto y Ruiz and last: Category:Maddy Prior albums -[2018-02-13T08:36:23.078] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:36:23.097] [INFO] cheese - inserting 1000 documents. first: Category:Ambassadors to Fiji and last: Template:Hawaii-royal-stub -[2018-02-13T08:36:23.112] [INFO] cheese - inserting 1000 documents. first: Afak and last: Pananmal Punjabi -[2018-02-13T08:36:23.135] [INFO] cheese - inserting 1000 documents. first: Eersel (plaats) and last: Perceptual Robotics -[2018-02-13T08:36:23.147] [INFO] cheese - batch complete in: 1.242 secs -[2018-02-13T08:36:23.155] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:36:23.162] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:36:23.196] [INFO] cheese - inserting 1000 documents. first: K-Y jelly and last: Anne Cox Chambers -[2018-02-13T08:36:23.274] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:36:23.363] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:36:23.466] [INFO] cheese - inserting 1000 documents. first: Aerts, Philippe and last: K24GE-D -[2018-02-13T08:36:23.531] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:23.628] [INFO] cheese - inserting 1000 documents. first: Teddy girl and last: Bickerstaff encephalitis -[2018-02-13T08:36:23.673] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:23.703] [INFO] cheese - inserting 1000 documents. first: Jasmine Gill and last: James B. McCoy -[2018-02-13T08:36:23.736] [INFO] cheese - inserting 1000 documents. first: 461 U.S. 574 and last: Acleris variegana -[2018-02-13T08:36:23.758] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:36:23.799] [INFO] cheese - inserting 1000 documents. first: UI Chrome and last: Super Commando Dhruva -[2018-02-13T08:36:23.809] [INFO] cheese - batch complete in: 0.654 secs -[2018-02-13T08:36:23.859] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:36:23.897] [INFO] cheese - inserting 1000 documents. first: David Houle (biologist) and last: Category:English editors -[2018-02-13T08:36:23.970] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:36:24.061] [INFO] cheese - inserting 1000 documents. first: BZ Crucis and last: 2012 World Junior Championships in Athletics – Men's 10000 metres -[2018-02-13T08:36:24.121] [INFO] cheese - inserting 1000 documents. first: P3X-888 and last: Wikipedia:Help desk/Archive 5 -[2018-02-13T08:36:24.135] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:24.146] [INFO] cheese - inserting 1000 documents. first: Conus mucronatus and last: Wikipedia:WikiProject Spam/LinkReports/alerjik.net -[2018-02-13T08:36:24.174] [INFO] cheese - inserting 1000 documents. first: Template:FC Homburg squad and last: Paddy Knob -[2018-02-13T08:36:24.206] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:24.212] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:36:24.243] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:36:24.287] [INFO] cheese - inserting 1000 documents. first: 1962 Detroit Lions season and last: Długołęka, Łódź Voivodeship -[2018-02-13T08:36:24.318] [INFO] cheese - inserting 1000 documents. first: Octatonic and last: 20th Century Masters – The Millennium Collection: The Best of George Strait -[2018-02-13T08:36:24.332] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:24.383] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:36:24.391] [INFO] cheese - inserting 1000 documents. first: Template:HNK Hajduk Split squad and last: Familiar 48 -[2018-02-13T08:36:24.452] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:24.578] [INFO] cheese - inserting 1000 documents. first: File:1059balitafm.jpg and last: Joanne Pricilla Loutoy -[2018-02-13T08:36:24.605] [INFO] cheese - inserting 1000 documents. first: Main Battle Tank and last: Joseph Patrick Walsh -[2018-02-13T08:36:24.653] [INFO] cheese - inserting 1000 documents. first: Albert Monnier and last: 2016 SEABA Cup squads -[2018-02-13T08:36:24.668] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:24.723] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:36:24.730] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:36:24.833] [INFO] cheese - inserting 1000 documents. first: Glinice and last: Węglewice -[2018-02-13T08:36:24.931] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:36:25.063] [INFO] cheese - inserting 1000 documents. first: Rubik the amazing cube and last: Windowpane (song) -[2018-02-13T08:36:25.071] [INFO] cheese - inserting 1000 documents. first: File:Altbeastplay.png and last: Jusepe de Ribera -[2018-02-13T08:36:25.123] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:25.149] [INFO] cheese - inserting 1000 documents. first: File:Coach Tom Scott.jpg and last: Category:Apartment buildings in Kentucky -[2018-02-13T08:36:25.187] [INFO] cheese - inserting 1000 documents. first: Jayy Mannon and last: Dendrocopos noguchii -[2018-02-13T08:36:25.196] [INFO] cheese - batch complete in: 0.981 secs -[2018-02-13T08:36:25.253] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:36:25.276] [INFO] cheese - batch complete in: 2.001 secs -[2018-02-13T08:36:25.311] [INFO] cheese - inserting 1000 documents. first: Portal:Speculative fiction/Selected works/12 and last: DINFIA IA 46 Ranquel -[2018-02-13T08:36:25.333] [INFO] cheese - inserting 1000 documents. first: Joanne Loutoy and last: Wikipedia:Articles for deletion/Krokodilpoort -[2018-02-13T08:36:25.368] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:36:25.384] [INFO] cheese - inserting 1000 documents. first: A Scholar's Feast and last: Kumt'ap-sa temple -[2018-02-13T08:36:25.410] [INFO] cheese - inserting 1000 documents. first: Węglewice, Łęczyca County and last: Beunans Meriasek -[2018-02-13T08:36:25.406] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:36:25.435] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:25.472] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:36:25.601] [INFO] cheese - inserting 1000 documents. first: Brooke Knight and last: Category:French beatified people -[2018-02-13T08:36:25.601] [INFO] cheese - inserting 1000 documents. first: File:Bobbycapo.jpg and last: Dirge of Cerberus: Final Fantasy VII Original Soundtrack -[2018-02-13T08:36:25.636] [INFO] cheese - batch complete in: 0.36 secs -[2018-02-13T08:36:25.636] [INFO] cheese - batch complete in: 0.513 secs -[2018-02-13T08:36:25.701] [INFO] cheese - inserting 1000 documents. first: Destructo Trucks and last: Category:Argentine female singers -[2018-02-13T08:36:25.741] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T08:36:25.754] [INFO] cheese - inserting 1000 documents. first: DINFIA IA 50 Guarani II and last: Catherine Booth-Clibborn -[2018-02-13T08:36:25.808] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:36:25.847] [INFO] cheese - inserting 1000 documents. first: Kumt'ap-sa Temple and last: Sekai kara Neko ga Kieta nara -[2018-02-13T08:36:25.864] [INFO] cheese - inserting 1000 documents. first: Cantellated order-4 hexagonal tiling honeycomb and last: President of the Liberal Party (UK) -[2018-02-13T08:36:25.884] [INFO] cheese - inserting 1000 documents. first: LeRoy Sprankle and last: Red white and blue -[2018-02-13T08:36:25.893] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:36:25.931] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:25.945] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:36:25.961] [INFO] cheese - inserting 1000 documents. first: Guzelyurt and last: Freestyle Skiing -[2018-02-13T08:36:26.041] [INFO] cheese - inserting 1000 documents. first: ITyphoon and last: Wikipedia:In-Universe -[2018-02-13T08:36:26.067] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:36:26.161] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:26.226] [INFO] cheese - inserting 1000 documents. first: Kostandin and Doruntine and last: US intervention in Latin America -[2018-02-13T08:36:26.249] [INFO] cheese - inserting 1000 documents. first: U.S. Route 99E and last: Yojinbo (film) -[2018-02-13T08:36:26.288] [INFO] cheese - inserting 1000 documents. first: List of MLB Managers 2006 and last: Poo-Shi -[2018-02-13T08:36:26.333] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:36:26.345] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:36:26.387] [INFO] cheese - inserting 1000 documents. first: Foley Hoag and last: Gil Álvarez de Albornoz -[2018-02-13T08:36:26.407] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:26.465] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:36:26.481] [INFO] cheese - inserting 1000 documents. first: List of nearest exoplanets and last: HackerOne -[2018-02-13T08:36:26.508] [INFO] cheese - inserting 1000 documents. first: Template:Nitric oxide modulators and last: File:Sarah Brightman Steve Harley The Phantom of the Opera 1986 Single.jpg -[2018-02-13T08:36:26.535] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:26.572] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:36:26.661] [INFO] cheese - inserting 1000 documents. first: Petru Stirbate and last: Q'Viva!: The Chosen -[2018-02-13T08:36:26.731] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:36:26.790] [INFO] cheese - inserting 1000 documents. first: Vsesportový Areal and last: Achilles hold -[2018-02-13T08:36:26.803] [INFO] cheese - inserting 1000 documents. first: Anterior cutaneous branch and last: Wikipedia:Articles for deletion/Rafiulla Mian Rrahi -[2018-02-13T08:36:26.846] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:36:26.873] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:36:26.876] [INFO] cheese - inserting 1000 documents. first: Tricia Marwick and last: Category:Marquette County, Michigan -[2018-02-13T08:36:26.890] [INFO] cheese - inserting 1000 documents. first: Category:Amiens SC and last: Aaron Sears -[2018-02-13T08:36:26.902] [INFO] cheese - inserting 1000 documents. first: Category:American politicians with physical disabilities and last: Aiteta acutipennis -[2018-02-13T08:36:26.924] [INFO] cheese - inserting 1000 documents. first: Héctor Thomas and last: Category:Egyptian cyclists -[2018-02-13T08:36:26.961] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:36:26.984] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:36:26.985] [INFO] cheese - batch complete in: 0.45 secs -[2018-02-13T08:36:27.023] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:36:27.052] [INFO] cheese - inserting 1000 documents. first: 2016–17 Missouri Tigers women's basketball team and last: Sacred Heart High School of Itogon, Inc. -[2018-02-13T08:36:27.120] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:36:27.250] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jannareddy and last: Pakistani Highflyer -[2018-02-13T08:36:27.279] [INFO] cheese - inserting 1000 documents. first: File:Blood Car poster.jpg and last: File:Letschangetheworldwithmusic.jpg -[2018-02-13T08:36:27.320] [INFO] cheese - batch complete in: 0.589 secs -[2018-02-13T08:36:27.331] [INFO] cheese - batch complete in: 0.458 secs -[2018-02-13T08:36:27.444] [INFO] cheese - inserting 1000 documents. first: Batna (province) and last: Chickenwing -[2018-02-13T08:36:27.474] [INFO] cheese - inserting 1000 documents. first: Paul Robert Cohen, Appellant v. State of California and last: Abbess Martin -[2018-02-13T08:36:27.537] [INFO] cheese - inserting 1000 documents. first: Hal Lashwood and last: Category:Media in Abha -[2018-02-13T08:36:27.543] [INFO] cheese - inserting 1000 documents. first: France–Iceland relations and last: Chiefs of Joint Staff of the Armed Forces of Bosnia and Herzegovina -[2018-02-13T08:36:27.544] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:36:27.551] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:36:27.595] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:36:27.606] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:36:27.753] [INFO] cheese - inserting 1000 documents. first: Rower and last: Western Wireless Corporation -[2018-02-13T08:36:27.809] [INFO] cheese - inserting 1000 documents. first: Kevin Bauder and last: List of Unicode characters/CJK Unified Ideographs, part 1 (4E00-62FF) -[2018-02-13T08:36:27.833] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:36:27.900] [INFO] cheese - batch complete in: 0.58 secs -[2018-02-13T08:36:27.928] [INFO] cheese - inserting 1000 documents. first: Kiltsi Airfield and last: Wikipedia:WikiProject Toronto Blue Jays -[2018-02-13T08:36:27.973] [INFO] cheese - inserting 1000 documents. first: Simon Lazenby and last: History of Petersburg, Virginia -[2018-02-13T08:36:27.982] [INFO] cheese - inserting 1000 documents. first: List of initiatives of Punjab Government (2008-13) and last: Yawhen Kalinin -[2018-02-13T08:36:28.004] [INFO] cheese - batch complete in: 0.673 secs -[2018-02-13T08:36:28.032] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:36:28.034] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:36:28.127] [INFO] cheese - inserting 1000 documents. first: Arado SD.III and last: Tiwi Islands Shire -[2018-02-13T08:36:28.139] [INFO] cheese - inserting 1000 documents. first: File:Defrancis.jpg and last: Evil I -[2018-02-13T08:36:28.200] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:36:28.211] [INFO] cheese - inserting 1000 documents. first: Coca cola black cherry vanilla and last: Kjell Borgen -[2018-02-13T08:36:28.218] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:36:28.264] [INFO] cheese - inserting 1000 documents. first: List of Unicode characters/CJK Unified Ideographs, part 2 (6300-77FF) and last: Non-Intrusive Stress Measurement System -[2018-02-13T08:36:28.328] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:36:28.341] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:36:28.391] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Pentagon (Bangladeshi band) and last: Widnet il-baħar -[2018-02-13T08:36:28.428] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:36:28.437] [INFO] cheese - inserting 1000 documents. first: Vilayet of Van and last: Kurtziella newcombei -[2018-02-13T08:36:28.502] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:36:28.526] [INFO] cheese - inserting 1000 documents. first: Category:UNIDROIT and last: 1943–44 Wisconsin Badgers men's basketball team -[2018-02-13T08:36:28.677] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:36:28.721] [INFO] cheese - inserting 1000 documents. first: Albert S. Marks and last: Parang -[2018-02-13T08:36:28.822] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:36:28.869] [INFO] cheese - inserting 1000 documents. first: Widnet il-bahar and last: Wikipedia:WikiProject Spam/LinkReports/cms.puranastudy.webnode.com -[2018-02-13T08:36:28.901] [INFO] cheese - inserting 1000 documents. first: Kid Herman and last: Wikipedia:Reference desk/Archives/Miscellaneous/2008 August 4 -[2018-02-13T08:36:28.962] [INFO] cheese - inserting 1000 documents. first: Esporte Clube Iranduba da Amazônia and last: Cecilia Liu -[2018-02-13T08:36:28.973] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:36:29.017] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:36:29.110] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:36:29.157] [INFO] cheese - inserting 1000 documents. first: Rock City (Royce Da 5'9" album) and last: Kitāb al-jabr wa’l-muqābalah -[2018-02-13T08:36:29.211] [INFO] cheese - inserting 1000 documents. first: H-1B Visas and last: Asida (beetle) -[2018-02-13T08:36:29.253] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:36:29.355] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:36:29.406] [INFO] cheese - inserting 1000 documents. first: Rhipha olafi and last: 天野 正道 -[2018-02-13T08:36:29.471] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:36:29.505] [INFO] cheese - inserting 1000 documents. first: File:CaddyMaxiLife2.JPG and last: A 113 -[2018-02-13T08:36:29.508] [INFO] cheese - inserting 1000 documents. first: Pulseniagara.com and last: AMD Carrizo -[2018-02-13T08:36:29.576] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:29.578] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:36:29.644] [INFO] cheese - inserting 1000 documents. first: Template:Moyoco Anno and last: Bridge Information Systems -[2018-02-13T08:36:29.660] [INFO] cheese - inserting 1000 documents. first: Ostad Nur Ali Elahi and last: File:UniversalMen.JPG -[2018-02-13T08:36:29.688] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:36:29.744] [INFO] cheese - inserting 1000 documents. first: Kevin Williamson (screenwriter) and last: Wikipedia:Articles for deletion/Psychic Pokémon -[2018-02-13T08:36:29.749] [INFO] cheese - inserting 1000 documents. first: Rasa (aesthetics) and last: Wikipedia:Articles for deletion/Log/2006 February 7 -[2018-02-13T08:36:29.750] [INFO] cheese - batch complete in: 1.532 secs -[2018-02-13T08:36:29.773] [INFO] cheese - inserting 1000 documents. first: Category:English oceanographers and last: Portal:Algeria/Topics -[2018-02-13T08:36:29.816] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:36:29.832] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:36:29.841] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:36:30.033] [INFO] cheese - inserting 1000 documents. first: Category:City and town clerks and last: Wikipedia:WikiProject Deletion sorting in The Signpost -[2018-02-13T08:36:30.040] [INFO] cheese - inserting 1000 documents. first: Venus and Adonis (painting) and last: Cromwell, Henry -[2018-02-13T08:36:30.100] [INFO] cheese - inserting 1000 documents. first: File:Shepshed Dynamo FC logo.png and last: Idol series -[2018-02-13T08:36:30.103] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:36:30.107] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:36:30.137] [INFO] cheese - inserting 1000 documents. first: Praxi Simeon and last: Bill of Rights of 1689 -[2018-02-13T08:36:30.156] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:36:30.214] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:36:30.255] [INFO] cheese - inserting 1000 documents. first: File:Arke Stadion.jpg and last: V70 -[2018-02-13T08:36:30.294] [INFO] cheese - inserting 1000 documents. first: File:PotC-RNA.svg and last: Senmon gakko -[2018-02-13T08:36:30.329] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:36:30.347] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Categories for deletion/Log/2006 February 7 and last: Nisg̱a’a language -[2018-02-13T08:36:30.349] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:36:30.481] [INFO] cheese - inserting 1000 documents. first: Gallurese-Sassarese Sardinian language and last: Category:Hungarian herpetologists -[2018-02-13T08:36:30.482] [INFO] cheese - inserting 1000 documents. first: Cross, Henry and last: List of Britain's Got Talent finalists (series 10) -[2018-02-13T08:36:30.439] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:36:30.630] [INFO] cheese - batch complete in: 0.527 secs -[2018-02-13T08:36:30.683] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:36:30.753] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Flying Pokémon and last: Eleazar Wheelock -[2018-02-13T08:36:30.756] [INFO] cheese - inserting 1000 documents. first: Battle of Fayetteville and last: File:4,5 & 6PRLP.jpeg -[2018-02-13T08:36:30.937] [INFO] cheese - batch complete in: 1.105 secs -[2018-02-13T08:36:30.938] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:36:30.983] [INFO] cheese - inserting 1000 documents. first: Célio de Castro and last: Politics of Adygea -[2018-02-13T08:36:31.011] [INFO] cheese - inserting 1000 documents. first: Kaunaoa Bay and last: Asian Medical Institute,Kyrgyzstan -[2018-02-13T08:36:31.048] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:36:31.138] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:36:31.235] [INFO] cheese - inserting 1000 documents. first: Skycity Triple Crown and last: Wikipedia:Articles for deletion/Nickel (band) -[2018-02-13T08:36:31.283] [INFO] cheese - batch complete in: 0.6 secs -[2018-02-13T08:36:31.287] [INFO] cheese - inserting 1000 documents. first: Joint Expedition Against Franklin and last: Piel CP.604 Diamant -[2018-02-13T08:36:31.368] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:31.403] [INFO] cheese - inserting 1000 documents. first: Mania Metropolitan Area and last: John Stephen Hirsch -[2018-02-13T08:36:31.511] [INFO] cheese - batch complete in: 1.072 secs -[2018-02-13T08:36:31.590] [INFO] cheese - inserting 1000 documents. first: File:CIS Wilfrid Laurier Jersey.png and last: Lamae -[2018-02-13T08:36:31.614] [INFO] cheese - inserting 1000 documents. first: Joseph H. Cook and last: Candyman (album) -[2018-02-13T08:36:31.615] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Rotary Club of Pensacola Suburban West and last: Scarface the world is yours -[2018-02-13T08:36:31.646] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:36:31.653] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:36:31.655] [INFO] cheese - inserting 1000 documents. first: Onchidella pachyderma and last: Template:Infobox VG series/doc -[2018-02-13T08:36:31.698] [INFO] cheese - batch complete in: 1.368 secs -[2018-02-13T08:36:31.749] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:31.851] [INFO] cheese - inserting 1000 documents. first: Lycoming O-235-C2A and last: Scaptius sanguistrigata -[2018-02-13T08:36:31.929] [INFO] cheese - batch complete in: 0.561 secs -[2018-02-13T08:36:31.971] [INFO] cheese - inserting 1000 documents. first: BMT 60th Street Tunnel Connector and last: A. aeolicus -[2018-02-13T08:36:32.024] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:36:32.035] [INFO] cheese - inserting 1000 documents. first: Galasa dilirialis and last: Mississippi Medal of Efficiency -[2018-02-13T08:36:32.075] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:36:32.106] [INFO] cheese - inserting 1000 documents. first: Bettijane Sills and last: Portal:Speculative fiction/Selected biography/16 -[2018-02-13T08:36:32.120] [INFO] cheese - inserting 1000 documents. first: Wayside Inn (Arlington, Massachusetts) and last: HD 152786 -[2018-02-13T08:36:32.131] [INFO] cheese - inserting 1000 documents. first: Pseudo-homosexuality and last: Clarinet Concerto (Mozart) -[2018-02-13T08:36:32.167] [INFO] cheese - batch complete in: 0.418 secs -[2018-02-13T08:36:32.183] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:36:32.229] [INFO] cheese - batch complete in: 1.292 secs -[2018-02-13T08:36:32.297] [INFO] cheese - inserting 1000 documents. first: Romulo Davide and last: Hemisyntrachelus cortesii -[2018-02-13T08:36:32.353] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T08:36:32.470] [INFO] cheese - inserting 1000 documents. first: Man on the Prowl and last: Awesome Wave -[2018-02-13T08:36:32.480] [INFO] cheese - inserting 1000 documents. first: A. pyrophilus and last: Flue-gas emissions from fossil-fuel combustion -[2018-02-13T08:36:32.503] [INFO] cheese - inserting 1000 documents. first: File:Mtmg.jpg and last: File:AFMS plane monument.jpg -[2018-02-13T08:36:32.534] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:36:32.585] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:36:32.621] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:36:32.742] [INFO] cheese - inserting 1000 documents. first: Pet Food Express and last: The Whiskey Rebellion -[2018-02-13T08:36:32.753] [INFO] cheese - inserting 1000 documents. first: Colin Russell and last: 17th Space Surveillance Squadron -[2018-02-13T08:36:32.825] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:36:32.829] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:36:32.986] [INFO] cheese - inserting 1000 documents. first: Hemisyntrachelus pisanus and last: Bobby Smith (footballer, born 1900s) -[2018-02-13T08:36:33.010] [INFO] cheese - inserting 1000 documents. first: File:Pandamonium.jpg and last: Al-Khayyam -[2018-02-13T08:36:33.043] [INFO] cheese - inserting 1000 documents. first: English words of polish origin and last: Piper (2016 film) -[2018-02-13T08:36:33.053] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:33.054] [INFO] cheese - inserting 1000 documents. first: Ravin and last: Alejandro Rodriguez (pioneer child psychiatrist) -[2018-02-13T08:36:33.100] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:36:33.104] [INFO] cheese - batch complete in: 0.519 secs -[2018-02-13T08:36:33.120] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:36:33.180] [INFO] cheese - inserting 1000 documents. first: Judo at the 2008 Summer Olympics - Women's +78 kg and last: Kumakōgen -[2018-02-13T08:36:33.206] [INFO] cheese - inserting 1000 documents. first: The Mountain School and last: Agua Dulce, California -[2018-02-13T08:36:33.218] [INFO] cheese - inserting 1000 documents. first: Category:New England Blizzard players and last: Category:Macedonian law -[2018-02-13T08:36:33.223] [INFO] cheese - batch complete in: 0.394 secs -[2018-02-13T08:36:33.326] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:36:33.445] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:36:33.535] [INFO] cheese - inserting 1000 documents. first: 1952 Southern 500 and last: Poznań Old Town -[2018-02-13T08:36:33.603] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:36:33.625] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Thebes (Boeotia) and last: P-26A Peashooter -[2018-02-13T08:36:33.687] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:36:33.698] [INFO] cheese - inserting 1000 documents. first: Joe Butler (footballer) and last: Category:Former counties of the United Kingdom -[2018-02-13T08:36:33.720] [INFO] cheese - inserting 1000 documents. first: Diankongou and last: Wikipedia:SALAT -[2018-02-13T08:36:33.763] [INFO] cheese - inserting 1000 documents. first: Category:Environment of Paraíba and last: Reyno de Navarra Arena -[2018-02-13T08:36:33.790] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:33.798] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:36:33.871] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:36:34.000] [INFO] cheese - inserting 1000 documents. first: Ingold I of Sweden and last: Subnational entities of Belgium -[2018-02-13T08:36:34.007] [INFO] cheese - inserting 1000 documents. first: Kadra Noor and last: Bombardier Q400 -[2018-02-13T08:36:34.043] [INFO] cheese - inserting 1000 documents. first: File:Milladonovan.jpg and last: Extraction (military) -[2018-02-13T08:36:34.070] [INFO] cheese - inserting 1000 documents. first: John Stezaker and last: Tahnun bin Zayed Al Nahyan -[2018-02-13T08:36:34.146] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:36:34.172] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:36:34.179] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:36:34.214] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:36:34.397] [INFO] cheese - inserting 1000 documents. first: J. E. Ferneley and last: Dar Baluteh Sofla -[2018-02-13T08:36:34.442] [INFO] cheese - inserting 1000 documents. first: Red Booles and last: History of the Roman military -[2018-02-13T08:36:34.466] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:36:34.471] [INFO] cheese - inserting 1000 documents. first: Stanmore Hawks and last: Wikipedia:Articles for deletion/Kaleidoscope (design agency) -[2018-02-13T08:36:34.484] [INFO] cheese - inserting 1000 documents. first: Category:Duterte Administration personnel and last: Recombinant human erythropoietin -[2018-02-13T08:36:34.543] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:36:34.572] [INFO] cheese - batch complete in: 0.701 secs -[2018-02-13T08:36:34.624] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:36:34.772] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured topic candidates/Atlantic campaign of May 1794/addition1 and last: File:2002 UCI Track Cycling World Championships logo.jpg -[2018-02-13T08:36:34.821] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:36:34.937] [INFO] cheese - inserting 1000 documents. first: The king is dead. long live the king and last: Any Team will Do -[2018-02-13T08:36:34.993] [INFO] cheese - inserting 1000 documents. first: Lord Llandaff and last: Category:Pangolins -[2018-02-13T08:36:35.009] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:36:35.014] [INFO] cheese - inserting 1000 documents. first: Mary Murillo and last: The Best Disney Album in the World... Ever! -[2018-02-13T08:36:35.061] [INFO] cheese - inserting 1000 documents. first: Teicha and last: Jornal Nippak -[2018-02-13T08:36:35.066] [INFO] cheese - inserting 1000 documents. first: Roberto Navarro Gonzalez and last: File:MeldrickLewis.jpg -[2018-02-13T08:36:35.072] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:36:35.092] [INFO] cheese - inserting 1000 documents. first: Category:Weightlifting in Estonia and last: Category:Base tunnels -[2018-02-13T08:36:35.103] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:36:35.106] [INFO] cheese - inserting 1000 documents. first: Dar Balut-e Pain and last: Hamburger Kammerspiele -[2018-02-13T08:36:35.128] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:36:35.150] [INFO] cheese - batch complete in: 0.607 secs -[2018-02-13T08:36:35.228] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:36:35.261] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:36:35.357] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/Peer review/22nd Regiment Massachusetts Volunteer Infantry and last: Montpier -[2018-02-13T08:36:35.424] [INFO] cheese - batch complete in: 0.603 secs -[2018-02-13T08:36:35.653] [INFO] cheese - inserting 1000 documents. first: Butler's Dunnart and last: Diane of Orléans -[2018-02-13T08:36:35.696] [INFO] cheese - inserting 1000 documents. first: Jinggangshan college and last: BICEP1 -[2018-02-13T08:36:35.702] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:36:35.717] [INFO] cheese - inserting 1000 documents. first: File:ID4TIME.jpg and last: Wikipedia:Articles for deletion/Rogers Orchards -[2018-02-13T08:36:35.722] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Richard Dewdney and last: Chemikal underground -[2018-02-13T08:36:35.748] [INFO] cheese - batch complete in: 0.62 secs -[2018-02-13T08:36:35.755] [INFO] cheese - inserting 1000 documents. first: IRLR and last: Allison Flemming (The Grudge Character) -[2018-02-13T08:36:35.773] [INFO] cheese - batch complete in: 0.623 secs -[2018-02-13T08:36:35.805] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:36:35.836] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/To Love Somebody (2014 British film) and last: Category:Exiles of the Iranian Revolution in Mexico -[2018-02-13T08:36:35.839] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:35.884] [INFO] cheese - inserting 1000 documents. first: Albert Ramos-Vinolas and last: Grayson Boucher -[2018-02-13T08:36:35.947] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:36:35.988] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:36:36.059] [INFO] cheese - inserting 1000 documents. first: Trevor Dunn and last: The Whiffenpoof Song -[2018-02-13T08:36:36.133] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:36:36.236] [INFO] cheese - inserting 1000 documents. first: List of birds of Vanuatu and last: Muhammad Shukri (author) -[2018-02-13T08:36:36.278] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:36:36.302] [INFO] cheese - inserting 1000 documents. first: BICEP3 and last: Ary L. Goldberger -[2018-02-13T08:36:36.321] [INFO] cheese - inserting 1000 documents. first: Draft:Trickster (anime) and last: Bader S. Dweik -[2018-02-13T08:36:36.327] [INFO] cheese - inserting 1000 documents. first: Template:Ffestiniog RDT and last: Ger McDonnell -[2018-02-13T08:36:36.331] [INFO] cheese - inserting 1000 documents. first: Category:1993 floods and last: Gabriel Roman -[2018-02-13T08:36:36.357] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:36:36.365] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:36:36.383] [INFO] cheese - inserting 1000 documents. first: Weiss WM-21 Sólyom and last: Stephen Thompson (fighter) -[2018-02-13T08:36:36.383] [INFO] cheese - batch complete in: 0.395 secs -[2018-02-13T08:36:36.394] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:36:36.467] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:36.597] [INFO] cheese - inserting 1000 documents. first: Diómedes Diaz and last: The New Left Review -[2018-02-13T08:36:36.652] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:36:36.727] [INFO] cheese - inserting 1000 documents. first: University of Arizona Art Museum, Tucson and last: Events in 1801 -[2018-02-13T08:36:36.762] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:36:36.766] [INFO] cheese - inserting 1000 documents. first: Short Type 830 and last: Sir Patrick Dun's Hospital -[2018-02-13T08:36:36.770] [INFO] cheese - inserting 1000 documents. first: Ravin Caldwell and last: Rooker-Feldman -[2018-02-13T08:36:36.834] [INFO] cheese - inserting 1000 documents. first: Baibai-Fas languages and last: Category:Episcopal bishops of Washington (state) -[2018-02-13T08:36:36.920] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:36:36.930] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:36:36.963] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:36:36.996] [INFO] cheese - inserting 1000 documents. first: TACHS test and last: Category:Sheriffs' departments of Illinois -[2018-02-13T08:36:37.058] [INFO] cheese - inserting 1000 documents. first: Gabon at the 2004 Summer Olympics and last: Marlene Ahrens -[2018-02-13T08:36:37.060] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:36:37.179] [INFO] cheese - batch complete in: 1.046 secs -[2018-02-13T08:36:37.268] [INFO] cheese - inserting 1000 documents. first: Events in 1800 and last: St. Mark's Chapel, Vancouver -[2018-02-13T08:36:37.281] [INFO] cheese - inserting 1000 documents. first: File:Smokie - Midnight Cafe.jpg and last: Destiny? -[2018-02-13T08:36:37.317] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:36:37.362] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:36:37.446] [INFO] cheese - inserting 1000 documents. first: Nord 1220 Norélan and last: Smith, Jefferson -[2018-02-13T08:36:37.504] [INFO] cheese - inserting 1000 documents. first: Purdue University College of Technology at South Bend Elkhart and last: File:Classroom and administration block, St Mary's School, (Yala Township, Nyanza Province, Kenya)..jpg -[2018-02-13T08:36:37.542] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:36:37.610] [INFO] cheese - inserting 1000 documents. first: Luis Andrés Vargas Gómez and last: R68 (KwaZulu-Natal) -[2018-02-13T08:36:37.629] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:36:37.690] [INFO] cheese - inserting 1000 documents. first: 2007 Election and last: Austin Parsons -[2018-02-13T08:36:37.693] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sugar (Shortland Street) and last: File:SWE-OR6.png -[2018-02-13T08:36:37.713] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:36:37.764] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:36:37.803] [INFO] cheese - batch complete in: 0.873 secs -[2018-02-13T08:36:37.951] [INFO] cheese - inserting 1000 documents. first: HSC Natchan World and last: Template:Did you know nominations/Vétra -[2018-02-13T08:36:37.992] [INFO] cheese - inserting 1000 documents. first: 1982 Astro-Bluebonnet Bowl and last: George N Moloney -[2018-02-13T08:36:38.022] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:36:38.110] [INFO] cheese - inserting 1000 documents. first: Smith, Jennifer and last: Template:User x-1/doc -[2018-02-13T08:36:38.128] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:38.194] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:36:38.198] [INFO] cheese - inserting 1000 documents. first: Akaka Falls State Park and last: Elections in Latvia -[2018-02-13T08:36:38.319] [INFO] cheese - inserting 1000 documents. first: R69 (KwaZulu-Natal) and last: Rumba clave -[2018-02-13T08:36:38.319] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:36:38.367] [INFO] cheese - inserting 1000 documents. first: Berja and last: Nintendogs: Dachshund and Friends -[2018-02-13T08:36:38.379] [INFO] cheese - inserting 1000 documents. first: Portal:Weather/On this day/10/09 and last: Əmirli -[2018-02-13T08:36:38.414] [INFO] cheese - inserting 1000 documents. first: Mau-mauing and last: Lower Madawaska River Provincial Park -[2018-02-13T08:36:38.429] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:36:38.441] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:36:38.449] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:36:38.473] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:36:38.741] [INFO] cheese - inserting 1000 documents. first: Vito Leonetti and last: Northcote Manor -[2018-02-13T08:36:38.838] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:36:38.845] [INFO] cheese - inserting 1000 documents. first: The Heart Desires and last: Groenkloof Nature Reserve -[2018-02-13T08:36:38.896] [INFO] cheese - inserting 1000 documents. first: Liber Papiensis and last: Cherdonna Shinatra -[2018-02-13T08:36:39.042] [INFO] cheese - inserting 1000 documents. first: Walsh Island and last: Forest Lawn, Calgary -[2018-02-13T08:36:39.048] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:36:39.051] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:36:39.065] [INFO] cheese - inserting 1000 documents. first: Category:Grand Funk Railroad live albums and last: Ahmed Al-Fateh -[2018-02-13T08:36:39.118] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:36:39.170] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:39.218] [INFO] cheese - inserting 1000 documents. first: Instruction path length and last: João de Lencastre, 1st Duke of Aveiro -[2018-02-13T08:36:39.298] [INFO] cheese - inserting 1000 documents. first: Iberá and last: NIBBLE -[2018-02-13T08:36:39.348] [INFO] cheese - inserting 1000 documents. first: Cholen and last: Till Midnight -[2018-02-13T08:36:39.357] [INFO] cheese - batch complete in: 0.876 secs -[2018-02-13T08:36:39.369] [INFO] cheese - inserting 1000 documents. first: Turner Classic Movies and last: Olympic Tennis Centre (Athens) -[2018-02-13T08:36:39.415] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:36:39.419] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:36:39.516] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T08:36:39.678] [INFO] cheese - inserting 1000 documents. first: File:Covenant-Voices-during-a-rehearsal.jpg and last: Richard Bennett (New Zealand cricketer) -[2018-02-13T08:36:39.688] [INFO] cheese - inserting 1000 documents. first: Queen of North and last: Category:Music festivals in Fredericton -[2018-02-13T08:36:39.715] [INFO] cheese - inserting 1000 documents. first: 1997 Ford World Women's Curling Championship and last: Paint Creek (Johnson County, Kentucky) -[2018-02-13T08:36:39.758] [INFO] cheese - inserting 1000 documents. first: Highland Lawn and last: Johnny Evilguy -[2018-02-13T08:36:39.759] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:36:39.765] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:36:39.802] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:36:39.838] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:36:39.981] [INFO] cheese - inserting 1000 documents. first: Dionychopus rubidus and last: Oronsay (disambiguation) -[2018-02-13T08:36:40.000] [INFO] cheese - inserting 1000 documents. first: Riek Schagen and last: Ireland (name) -[2018-02-13T08:36:40.041] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:36:40.064] [INFO] cheese - inserting 1000 documents. first: Serua Province, Fiji and last: The Adventure -[2018-02-13T08:36:40.092] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:36:40.201] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:36:40.318] [INFO] cheese - inserting 1000 documents. first: List of military equipment manufactured in Pakistan and last: Flag of Antigua -[2018-02-13T08:36:40.339] [INFO] cheese - inserting 1000 documents. first: Siena Baseball Field and last: Fifth generation (disambiguation) -[2018-02-13T08:36:40.372] [INFO] cheese - inserting 1000 documents. first: Nikos Kaklamanakis and last: Wikipedia:Articles for deletion/Bingle -[2018-02-13T08:36:40.391] [INFO] cheese - inserting 1000 documents. first: PUPPP syndrome and last: Eliomys occidentalis -[2018-02-13T08:36:40.391] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:36:40.415] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:36:40.476] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:36:40.566] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Mohammed Hameeduddin and last: Occa kuronumai -[2018-02-13T08:36:40.543] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:36:40.643] [INFO] cheese - inserting 1000 documents. first: Category:1993 in rugby league and last: Reformed Churches in the Netherlands (Liberated) -[2018-02-13T08:36:40.649] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:36:40.725] [INFO] cheese - batch complete in: 0.886 secs -[2018-02-13T08:36:40.832] [INFO] cheese - inserting 1000 documents. first: Xuan Liu and last: Puckstering -[2018-02-13T08:36:40.931] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:36:41.032] [INFO] cheese - inserting 1000 documents. first: James Taylor (lawyer) and last: Siler semiglaucus -[2018-02-13T08:36:41.055] [INFO] cheese - inserting 1000 documents. first: Guven and last: 1995 Baku Metro fire -[2018-02-13T08:36:41.097] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:36:41.130] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/retete-culese.blogspot.com and last: RWD-24 -[2018-02-13T08:36:41.176] [INFO] cheese - batch complete in: 0.7 secs -[2018-02-13T08:36:41.221] [INFO] cheese - inserting 1000 documents. first: St Pius X Church and last: Automolis duplicata -[2018-02-13T08:36:41.233] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom locations: S and last: East Maitland -[2018-02-13T08:36:41.244] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:36:41.304] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:36:41.362] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:36:41.546] [INFO] cheese - inserting 1000 documents. first: Rocky and bullwinkle and last: Seattle seawall -[2018-02-13T08:36:41.551] [INFO] cheese - inserting 1000 documents. first: Holy Crown of Thorns and last: File:Redemption large.jpg -[2018-02-13T08:36:41.574] [INFO] cheese - inserting 1000 documents. first: Value Change Dump and last: 249th EN -[2018-02-13T08:36:41.625] [INFO] cheese - inserting 1000 documents. first: Black September in Jordan and last: Pembe Marmara -[2018-02-13T08:36:41.636] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:41.671] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:36:41.675] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:36:41.709] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:41.790] [INFO] cheese - inserting 1000 documents. first: Walter Thomas Mills and last: Quantization of the electromagnetic field -[2018-02-13T08:36:41.855] [INFO] cheese - inserting 1000 documents. first: Category:1943 record charts and last: Category:Olympic handball players of Kazakhstan -[2018-02-13T08:36:41.859] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:36:41.883] [INFO] cheese - inserting 1000 documents. first: Automolis fassli and last: Tyler Evans -[2018-02-13T08:36:41.975] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:42.059] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:36:42.061] [INFO] cheese - inserting 1000 documents. first: Commonwealth of Israel and last: Toby gad -[2018-02-13T08:36:42.114] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:36:42.223] [INFO] cheese - inserting 1000 documents. first: File:MDNighthawks.PNG and last: Criticism of Michael Moore -[2018-02-13T08:36:42.254] [INFO] cheese - inserting 1000 documents. first: Broadcast media industry and last: Wikipedia:Articles for deletion/Hans Sandrock -[2018-02-13T08:36:42.260] [INFO] cheese - inserting 1000 documents. first: File:Final Quad Poster (smallest).jpg and last: MATRI Perlis -[2018-02-13T08:36:42.276] [INFO] cheese - inserting 1000 documents. first: JUST Me and last: Methphendrazine -[2018-02-13T08:36:42.283] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:36:42.305] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:36:42.311] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:36:42.322] [INFO] cheese - inserting 1000 documents. first: 2000 Asian Athletics Championships – Women's triple jump and last: Nathanial Neale -[2018-02-13T08:36:42.324] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:36:42.396] [INFO] cheese - batch complete in: 0.421 secs -[2018-02-13T08:36:42.409] [INFO] cheese - inserting 1000 documents. first: Irina Borechko and last: Masan Group -[2018-02-13T08:36:42.458] [INFO] cheese - batch complete in: 0.399 secs -[2018-02-13T08:36:42.482] [INFO] cheese - inserting 1000 documents. first: Siai-Marchetti Warrior and last: Wikipedia:Articles for deletion/Maitrayaniya Upanishad -[2018-02-13T08:36:42.541] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:36:42.584] [INFO] cheese - inserting 1000 documents. first: Transportation in Palau and last: Aquae Flaviae -[2018-02-13T08:36:42.650] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:36:42.701] [INFO] cheese - inserting 1000 documents. first: Grooved helmet-orchid and last: Hank the Cowdog season 1 -[2018-02-13T08:36:42.745] [INFO] cheese - inserting 1000 documents. first: Sergey Khorokhordin and last: Petplan USA pet insurance -[2018-02-13T08:36:42.765] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:36:42.797] [INFO] cheese - inserting 1000 documents. first: W278AI and last: List of Equatorial Guinean records in athletics -[2018-02-13T08:36:42.823] [INFO] cheese - inserting 1000 documents. first: Nat Neale and last: Category:Sport in Tainan -[2018-02-13T08:36:42.892] [INFO] cheese - inserting 1000 documents. first: Saluc and last: Category:1906 elections in the United States -[2018-02-13T08:36:42.911] [INFO] cheese - inserting 1000 documents. first: Swamp Wallaby and last: Casignetella directella -[2018-02-13T08:36:42.912] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:36:42.928] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:36:42.997] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:36:43.072] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:36:43.079] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:36:43.309] [INFO] cheese - inserting 1000 documents. first: Thailand at the 2006 Winter Olympics and last: George colby chase -[2018-02-13T08:36:43.321] [INFO] cheese - inserting 1000 documents. first: Category:Critics and last: Teletext Limited -[2018-02-13T08:36:43.365] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:36:43.401] [INFO] cheese - inserting 1000 documents. first: IBasis and last: Double Diamond Dude Ranch Dining Hall -[2018-02-13T08:36:43.411] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:36:43.424] [INFO] cheese - inserting 1000 documents. first: Category:Buildings and structures in Allerød Municipality and last: 2016 Sparta Prague Open - Doubles -[2018-02-13T08:36:43.425] [INFO] cheese - inserting 1000 documents. first: Slovenian PrvaLiga 2008–09 and last: William II of Brunswick-Calenberg-Göttingen -[2018-02-13T08:36:43.448] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:36:43.476] [INFO] cheese - inserting 1000 documents. first: Casignetella diplodon and last: Conditional fallacy -[2018-02-13T08:36:43.484] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:43.514] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:36:43.535] [INFO] cheese - inserting 1000 documents. first: ISO 639:ptq and last: Bell and Hammer -[2018-02-13T08:36:43.573] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:36:43.607] [INFO] cheese - batch complete in: 0.61 secs -[2018-02-13T08:36:43.662] [INFO] cheese - inserting 1000 documents. first: Otome game and last: Ontario Highway 49 -[2018-02-13T08:36:43.727] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:36:43.853] [INFO] cheese - inserting 1000 documents. first: Category:Olympic boxers of Papua New Guinea and last: Dragiša Pejović -[2018-02-13T08:36:43.860] [INFO] cheese - inserting 1000 documents. first: Tobias Mattay and last: Henry Hiles -[2018-02-13T08:36:43.891] [INFO] cheese - inserting 1000 documents. first: John Hyacinth de Magellan and last: Scuola italiana di Mosca -[2018-02-13T08:36:43.897] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:36:43.914] [INFO] cheese - inserting 1000 documents. first: 1976 U.S. Clay Court Championships - Women's Doubles and last: Chulahoma (disambiguation) -[2018-02-13T08:36:43.936] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:36:43.939] [INFO] cheese - batch complete in: 0.329 secs -[2018-02-13T08:36:43.968] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/eqt.com and last: Chionodraco kathleenae -[2018-02-13T08:36:43.987] [INFO] cheese - batch complete in: 0.473 secs -[2018-02-13T08:36:44.001] [INFO] cheese - inserting 1000 documents. first: George chase and last: C.L. Jackson -[2018-02-13T08:36:44.041] [INFO] cheese - inserting 1000 documents. first: Tarantella, Incorporated and last: Wicked Witch of the East -[2018-02-13T08:36:44.054] [INFO] cheese - batch complete in: 0.481 secs -[2018-02-13T08:36:44.070] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:44.138] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:36:44.206] [INFO] cheese - inserting 1000 documents. first: Kohan and last: SKGLB Museum -[2018-02-13T08:36:44.274] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:36:44.423] [INFO] cheese - inserting 1000 documents. first: French Lake, California and last: Aftershock (Law & Order) -[2018-02-13T08:36:44.485] [INFO] cheese - inserting 1000 documents. first: Category:Vice Chancellors of the University of South Australia and last: File:President Wanted Poster.jpg -[2018-02-13T08:36:44.489] [INFO] cheese - inserting 1000 documents. first: 2010 NPSL season and last: Ibn Bajja (crater) -[2018-02-13T08:36:44.493] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:36:44.543] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:36:44.570] [INFO] cheese - inserting 1000 documents. first: Al–Li and last: Category:Serj Tankian live albums -[2018-02-13T08:36:44.588] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:36:44.680] [INFO] cheese - inserting 1000 documents. first: Chaenichthys rhinoceratus hamatus and last: Film1 Family -[2018-02-13T08:36:44.681] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:36:44.794] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:36:44.889] [INFO] cheese - inserting 1000 documents. first: Lady Yuhwa and last: Template:BE-REG-FLE -[2018-02-13T08:36:44.917] [INFO] cheese - inserting 1000 documents. first: Kostelec u Heřmanova Městce and last: Nonnberg Abbey -[2018-02-13T08:36:44.954] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:36:45.033] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:36:45.116] [INFO] cheese - inserting 1000 documents. first: Ihar Razhkow and last: Category:Public transport in Alberta -[2018-02-13T08:36:45.123] [INFO] cheese - inserting 1000 documents. first: B.H. Roberts and last: Category:1936 in sports -[2018-02-13T08:36:45.147] [INFO] cheese - inserting 1000 documents. first: File:Bonobo Kanzi Panbanisha Sue 2054.jpg and last: Category:Sports venues in Nord-Pas-de-Calais -[2018-02-13T08:36:45.151] [INFO] cheese - inserting 1000 documents. first: Channing Gibson and last: Drillia detecta -[2018-02-13T08:36:45.207] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:36:45.216] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:36:45.267] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:36:45.277] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:36:45.325] [INFO] cheese - inserting 1000 documents. first: 1947 Yorkshire Cup and last: House of Commons, Parliament of the United Kingdom of Great Britain and Northern Ireland -[2018-02-13T08:36:45.434] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:36:45.442] [INFO] cheese - inserting 1000 documents. first: Template:Cite DGRBM/testcases and last: Amar-e Mianrud -[2018-02-13T08:36:45.561] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:36:45.691] [INFO] cheese - inserting 1000 documents. first: Lamourby and last: It's About Time (song) -[2018-02-13T08:36:45.739] [INFO] cheese - inserting 1000 documents. first: Category:Universities in Nord-Pas-de-Calais and last: Events in 1082 -[2018-02-13T08:36:45.758] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:36:45.763] [INFO] cheese - inserting 1000 documents. first: Drillia diasi and last: Wikipedia:Articles for deletion/Jim Thornton -[2018-02-13T08:36:45.792] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:36:45.841] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:36:45.892] [INFO] cheese - inserting 1000 documents. first: NAPA Auto Parts 300 and last: Mappila Paattu -[2018-02-13T08:36:45.897] [INFO] cheese - inserting 1000 documents. first: 2008 Toronto explosion and last: Proof (alcohol) -[2018-02-13T08:36:45.960] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:36:45.965] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:36:46.008] [INFO] cheese - inserting 1000 documents. first: House of Lords, Parliament of the United Kingdom of Great Britain and Northern Ireland and last: Beatty Anchorage, British Columbia -[2018-02-13T08:36:46.023] [INFO] cheese - inserting 1000 documents. first: Jiangsu Suning Appliance Group Co., Ltd. and last: Events in 256 -[2018-02-13T08:36:46.025] [INFO] cheese - inserting 1000 documents. first: Davaoeño dialect and last: Shahrak Sarab-e Humian -[2018-02-13T08:36:46.060] [INFO] cheese - batch complete in: 0.268 secs -[2018-02-13T08:36:46.101] [INFO] cheese - inserting 1000 documents. first: Third Reich and Roll and last: Timeline of liberal and democratic parties in New Zealand -[2018-02-13T08:36:46.171] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:46.177] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:36:46.267] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:36:46.339] [INFO] cheese - inserting 1000 documents. first: Category:Suspected Wikipedia sockpuppets of Patchouli and last: ビ -[2018-02-13T08:36:46.350] [INFO] cheese - inserting 1000 documents. first: Events in 255 and last: Births in 1441 -[2018-02-13T08:36:46.382] [INFO] cheese - inserting 1000 documents. first: HMS Hecate (1839) and last: Category:WikiProject Essays articles -[2018-02-13T08:36:46.390] [INFO] cheese - batch complete in: 0.33 secs -[2018-02-13T08:36:46.423] [INFO] cheese - inserting 1000 documents. first: Template:Country Radio Stations in Wyoming and last: Category:1918 in rail transport -[2018-02-13T08:36:46.429] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:46.483] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:36:46.490] [INFO] cheese - inserting 1000 documents. first: Francisco Rodríguez Jr. and last: Template:Diff3/sandbox -[2018-02-13T08:36:46.499] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:36:46.540] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T08:36:46.598] [INFO] cheese - inserting 1000 documents. first: Mappilapaattu and last: Cadena Salsoul -[2018-02-13T08:36:46.643] [INFO] cheese - inserting 1000 documents. first: Lost in Smoke 2 and last: McDavid (restaurant) -[2018-02-13T08:36:46.676] [INFO] cheese - batch complete in: 0.286 secs -[2018-02-13T08:36:46.702] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:46.707] [INFO] cheese - inserting 1000 documents. first: Category:DOS games and last: Category:757 -[2018-02-13T08:36:46.783] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2012-02-02 and last: Category:Norwegian football clubs 2010 season -[2018-02-13T08:36:46.789] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:36:46.913] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:36:46.990] [INFO] cheese - inserting 1000 documents. first: File:Joe Satriani - 1992 - Friends.jpg and last: Tourism in Crimea -[2018-02-13T08:36:47.009] [INFO] cheese - inserting 1000 documents. first: Category:1919 in rail transport and last: Zarat, Siazan -[2018-02-13T08:36:47.011] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2007 May 6 and last: Wikipedia:WikiProject Regional and national music/Outreach -[2018-02-13T08:36:47.037] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:36:47.045] [INFO] cheese - inserting 1000 documents. first: Wǔdāngquán and last: Sporting CP in European football -[2018-02-13T08:36:47.063] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:36:47.071] [INFO] cheese - inserting 1000 documents. first: Births in 644 and last: Pravetz-16E -[2018-02-13T08:36:47.095] [INFO] cheese - inserting 1000 documents. first: Template:Footer Olympic Champions 3000 m Steeplechase Men and last: Category:1614 -[2018-02-13T08:36:47.096] [INFO] cheese - batch complete in: 0.667 secs -[2018-02-13T08:36:47.119] [INFO] cheese - batch complete in: 0.443 secs -[2018-02-13T08:36:47.125] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:36:47.137] [INFO] cheese - batch complete in: 0.348 secs -[2018-02-13T08:36:47.327] [INFO] cheese - inserting 1000 documents. first: Thomas Macdonough and last: Marilena Carpathia -[2018-02-13T08:36:47.380] [INFO] cheese - batch complete in: 0.678 secs -[2018-02-13T08:36:47.424] [INFO] cheese - inserting 1000 documents. first: Yanıq Ələz and last: Bill Lancton -[2018-02-13T08:36:47.488] [INFO] cheese - batch complete in: 0.424 secs -[2018-02-13T08:36:47.572] [INFO] cheese - inserting 1000 documents. first: Nikonha and last: Category:Moby remix albums -[2018-02-13T08:36:47.572] [INFO] cheese - inserting 1000 documents. first: Swapnil Patil and last: Hanby Hall -[2018-02-13T08:36:47.578] [INFO] cheese - inserting 1000 documents. first: Pravetz-16ES and last: Category:Serbian Orthodox Church in Canada -[2018-02-13T08:36:47.599] [INFO] cheese - inserting 1000 documents. first: Bartolomeo della Porta and last: Kyongwon Ahn -[2018-02-13T08:36:47.648] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:36:47.669] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:36:47.708] [INFO] cheese - inserting 1000 documents. first: Miroslav Lehký and last: File:Hexagonal Coordinates ZigZag Columns.svg -[2018-02-13T08:36:47.722] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:36:47.731] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:36:47.858] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:36:47.935] [INFO] cheese - inserting 1000 documents. first: Category:1615 and last: Wikipedia:Votes for deletion/Ba'thist regime -[2018-02-13T08:36:47.961] [INFO] cheese - inserting 1000 documents. first: Samurai Shodown (series) and last: Category:1986 in British cinema -[2018-02-13T08:36:47.994] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T08:36:48.004] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:36:48.112] [INFO] cheese - inserting 1000 documents. first: Long Island (Boston) and last: Jack Thompson and the Jacob Robida murders -[2018-02-13T08:36:48.120] [INFO] cheese - inserting 1000 documents. first: List of RHPs in Nassau and last: Clore leadership programme -[2018-02-13T08:36:48.219] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:36:48.292] [INFO] cheese - inserting 1000 documents. first: File:Misiaremix1999.jpg and last: Cancellaria parva -[2018-02-13T08:36:48.300] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:36:48.364] [INFO] cheese - inserting 1000 documents. first: List of Iowa Civil War units and last: Jennifer McMahon -[2018-02-13T08:36:48.389] [INFO] cheese - inserting 1000 documents. first: Deaths in 1567 and last: Deaths in 741 -[2018-02-13T08:36:48.420] [INFO] cheese - inserting 1000 documents. first: Western Sahara question and last: Dormition Cathedral, Kiev -[2018-02-13T08:36:48.427] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:48.435] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:36:48.456] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:36:48.496] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:36:48.501] [INFO] cheese - inserting 1000 documents. first: Angami-Pochuri and last: Wikipedia:WikiProject Spam/LinkReports/nycsubway.org -[2018-02-13T08:36:48.563] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:48.767] [INFO] cheese - inserting 1000 documents. first: Deaths in 740 and last: Category:Retail companies of South America -[2018-02-13T08:36:48.782] [INFO] cheese - batch complete in: 0.346 secs -[2018-02-13T08:36:48.954] [INFO] cheese - inserting 1000 documents. first: Microsveltia patricia and last: Pina (disambiguation) -[2018-02-13T08:36:48.965] [INFO] cheese - inserting 1000 documents. first: ECPP and last: Ara Coeli Church -[2018-02-13T08:36:48.969] [INFO] cheese - inserting 1000 documents. first: Yulia Makhalina and last: Category:Song dynasty eunuchs -[2018-02-13T08:36:48.995] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:36:49.029] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:49.063] [INFO] cheese - inserting 1000 documents. first: Allium praecox and last: A.III -[2018-02-13T08:36:49.080] [INFO] cheese - inserting 1000 documents. first: Rude's Hill and last: Central Mashan Miao language -[2018-02-13T08:36:49.084] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:36:49.136] [INFO] cheese - inserting 1000 documents. first: Mankato airport and last: Patrick Forbes of Corse -[2018-02-13T08:36:49.136] [INFO] cheese - inserting 1000 documents. first: Zagreb University and last: Boston Harbor Islands National Recreation Area -[2018-02-13T08:36:49.193] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:36:49.200] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:36:49.227] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:36:49.231] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:36:49.554] [INFO] cheese - inserting 1000 documents. first: Category:Song dynasty generals and last: Victor Zangiyev -[2018-02-13T08:36:49.588] [INFO] cheese - inserting 1000 documents. first: Henlow Camp station and last: Wikipedia:Articles for deletion/Kuch Gunjoan Ki Shaan Mein -[2018-02-13T08:36:49.624] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:36:49.675] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:36:49.769] [INFO] cheese - inserting 1000 documents. first: Barbecue flavour and last: Uganda national under-19 cricket team -[2018-02-13T08:36:49.791] [INFO] cheese - inserting 1000 documents. first: Greg Broderick and last: Roger W. Riehl -[2018-02-13T08:36:49.824] [INFO] cheese - inserting 1000 documents. first: Adolfo Lazzarini and last: La 1/2 Docena -[2018-02-13T08:36:49.840] [INFO] cheese - inserting 1000 documents. first: José Mariano da Conceição Vellozo and last: File:Birralee logo.JPG -[2018-02-13T08:36:49.869] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:36:49.883] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:36:49.892] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:36:49.932] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:36:50.012] [INFO] cheese - inserting 1000 documents. first: List of women architects and last: Clonca Church & Cross -[2018-02-13T08:36:50.066] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:36:50.136] [INFO] cheese - inserting 1000 documents. first: Constantine and Athanasios Zografi and last: Terebra hancocki -[2018-02-13T08:36:50.176] [INFO] cheese - batch complete in: 0.501 secs -[2018-02-13T08:36:50.188] [INFO] cheese - inserting 1000 documents. first: Category:Unincorporated communities in Edgar County, Illinois and last: Platphalonidia dubia -[2018-02-13T08:36:50.258] [INFO] cheese - inserting 1000 documents. first: Wautoma and last: 57-cell -[2018-02-13T08:36:50.273] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:36:50.359] [INFO] cheese - batch complete in: 1.128 secs -[2018-02-13T08:36:50.401] [INFO] cheese - inserting 1000 documents. first: Category:Railway companies established in 1998 and last: Froths -[2018-02-13T08:36:50.434] [INFO] cheese - inserting 1000 documents. first: Persian Armenia and last: St. Patrick's Catholic Church, Yungaburra -[2018-02-13T08:36:50.438] [INFO] cheese - inserting 1000 documents. first: File:Bolinao beacon.JPG and last: CPDLC -[2018-02-13T08:36:50.481] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:36:50.525] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:36:50.546] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:36:50.565] [INFO] cheese - inserting 1000 documents. first: Huhne and last: Composers' Guild of Great Britain -[2018-02-13T08:36:50.644] [INFO] cheese - inserting 1000 documents. first: Bantam (military) and last: Al Masihiya -[2018-02-13T08:36:50.690] [INFO] cheese - inserting 1000 documents. first: Terebra helichrysum and last: De Huinsermolen, Húns -[2018-02-13T08:36:50.693] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:36:50.758] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:36:50.796] [INFO] cheese - inserting 1000 documents. first: Latvian names and last: Category:Community schools in the Royal Borough of Kensington and Chelsea -[2018-02-13T08:36:50.829] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:36:50.946] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:36:51.082] [INFO] cheese - inserting 1000 documents. first: Nightmare (Soul Calibur) and last: Dervishalikyshlak -[2018-02-13T08:36:51.174] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:36:51.298] [INFO] cheese - inserting 1000 documents. first: Mineral resource and last: Mwene-Ditu (commune) -[2018-02-13T08:36:51.302] [INFO] cheese - inserting 1000 documents. first: 2003–04 AFC Ajax season and last: Irn-Bru Cup -[2018-02-13T08:36:51.329] [INFO] cheese - inserting 1000 documents. first: David Brewer (broker) and last: First pair part -[2018-02-13T08:36:51.334] [INFO] cheese - inserting 1000 documents. first: Erromanga (ship) and last: Yorkie Terriers -[2018-02-13T08:36:51.362] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:36:51.365] [INFO] cheese - inserting 1000 documents. first: Projective special linear group and last: Bessacarr -[2018-02-13T08:36:51.373] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:36:51.421] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:36:51.434] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:36:51.476] [INFO] cheese - batch complete in: 0.951 secs -[2018-02-13T08:36:51.557] [INFO] cheese - inserting 1000 documents. first: Sami Jo Small and last: The Outlets -[2018-02-13T08:36:51.618] [INFO] cheese - inserting 1000 documents. first: Early Family Historic District and last: Christie Carpino -[2018-02-13T08:36:51.636] [INFO] cheese - inserting 1000 documents. first: Ərəb, Khachmaz and last: Portal:Early modern Britain/Selected biography/4 -[2018-02-13T08:36:51.636] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:36:51.675] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:36:51.691] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:36:51.826] [INFO] cheese - inserting 1000 documents. first: Sarangapani temple and last: Revue Canadienne de Psychiatrie -[2018-02-13T08:36:51.862] [INFO] cheese - inserting 1000 documents. first: Little Flatrock River and last: File:The Last Desperate Hours.jpg -[2018-02-13T08:36:51.883] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:36:51.929] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:36:51.958] [INFO] cheese - inserting 1000 documents. first: Listowel mutiny and last: Category:Theatres in Croatia -[2018-02-13T08:36:51.958] [INFO] cheese - inserting 1000 documents. first: Feet in the Clouds and last: List of infrared articles -[2018-02-13T08:36:52.019] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:36:52.038] [INFO] cheese - inserting 1000 documents. first: 김해국제공항 and last: Category:Metro Conference soccer -[2018-02-13T08:36:52.053] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:36:52.095] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:36:52.122] [INFO] cheese - inserting 1000 documents. first: Shamballah and last: CIGI -[2018-02-13T08:36:52.150] [INFO] cheese - inserting 1000 documents. first: King of the Children and last: St. Paul\'s United Methodist Church (Nyack, New York) -[2018-02-13T08:36:52.183] [INFO] cheese - inserting 1000 documents. first: X-Win64 and last: Portal:Rugby league/Did you know -[2018-02-13T08:36:52.257] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:36:52.273] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:36:52.358] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:36:52.479] [INFO] cheese - inserting 1000 documents. first: L'Intrépide and last: Paralepetopsis ferrugivora -[2018-02-13T08:36:52.568] [INFO] cheese - inserting 1000 documents. first: 501e Régiment de chars de combat and last: Puck (comics character) -[2018-02-13T08:36:52.567] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:36:52.656] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:36:52.716] [INFO] cheese - inserting 1000 documents. first: Wikipedia:RESTRICTED and last: Peter Brady (The Invisible Man) -[2018-02-13T08:36:52.748] [INFO] cheese - inserting 1000 documents. first: McFarlane Lake, Ontario and last: Edward Francis Boyd -[2018-02-13T08:36:52.770] [INFO] cheese - inserting 1000 documents. first: CB Coruña and last: Tiroler Graukäse -[2018-02-13T08:36:52.790] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:36:52.811] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:36:52.817] [INFO] cheese - inserting 1000 documents. first: Category:Lincoln Saltdogs players and last: Template:News/Talk Radio Stations in Maine -[2018-02-13T08:36:52.825] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:36:52.895] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:36:52.934] [INFO] cheese - inserting 1000 documents. first: Boeing LRV and last: Wikipedia:Use of userboxes -[2018-02-13T08:36:52.995] [INFO] cheese - batch complete in: 0.635 secs -[2018-02-13T08:36:53.037] [INFO] cheese - inserting 1000 documents. first: Horslips and last: Vibrating structure gyroscope -[2018-02-13T08:36:53.060] [INFO] cheese - inserting 1000 documents. first: Paralepetopsis floridensis and last: Frank "Deacon" Waite -[2018-02-13T08:36:53.084] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change for the Children Foundation and last: Category:Energy companies established in 1956 -[2018-02-13T08:36:53.114] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:36:53.163] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:36:53.179] [INFO] cheese - batch complete in: 0.523 secs -[2018-02-13T08:36:53.188] [INFO] cheese - inserting 1000 documents. first: National Palace (Guatemala) and last: Aura (Revelation Space) -[2018-02-13T08:36:53.211] [INFO] cheese - inserting 1000 documents. first: Belfer Center and last: J Psychohist -[2018-02-13T08:36:53.237] [INFO] cheese - inserting 1000 documents. first: Leslie Pine and last: Wikipedia:Articles for deletion/Virtual Print Fee -[2018-02-13T08:36:53.247] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:36:53.251] [INFO] cheese - batch complete in: 0.426 secs -[2018-02-13T08:36:53.301] [INFO] cheese - inserting 1000 documents. first: Roscommon Township and last: Category:Executed Iraqi women -[2018-02-13T08:36:53.326] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:36:53.357] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:36:53.457] [INFO] cheese - inserting 1000 documents. first: The 1960 Winter Olympics and last: The Emancipation Of Mimi Billboard 200 trajectory -[2018-02-13T08:36:53.515] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:36:53.516] [INFO] cheese - inserting 1000 documents. first: File:Gummibears.jpg and last: List of Beyblade: Metal Fusion episodes (season 1 part 1) -[2018-02-13T08:36:53.580] [INFO] cheese - inserting 1000 documents. first: File:WhatsLeftOfSpiderJohn.jpg and last: Funk Bible -[2018-02-13T08:36:53.586] [INFO] cheese - batch complete in: 0.423 secs -[2018-02-13T08:36:53.619] [INFO] cheese - batch complete in: 0.44 secs -[2018-02-13T08:36:53.630] [INFO] cheese - inserting 1000 documents. first: Comarchis staurocola and last: Opharus brasiliensis -[2018-02-13T08:36:53.670] [INFO] cheese - batch complete in: 0.419 secs -[2018-02-13T08:36:53.728] [INFO] cheese - inserting 1000 documents. first: Tarbey and last: SE-tan -[2018-02-13T08:36:53.737] [INFO] cheese - inserting 1000 documents. first: Category:Bus transportation in Mississippi and last: Meanwhile Studios -[2018-02-13T08:36:53.780] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:36:53.891] [INFO] cheese - inserting 1000 documents. first: List of Olympic medalists in swimming (men) and last: Irregular Galaxy M82 -[2018-02-13T08:36:54.005] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:54.048] [INFO] cheese - inserting 1000 documents. first: Under the Mersey Wall and last: Wikipedia:Articles for deletion/Ground Control (film) -[2018-02-13T08:36:54.057] [INFO] cheese - batch complete in: 0.943 secs -[2018-02-13T08:36:54.234] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:36:54.239] [INFO] cheese - inserting 1000 documents. first: 2010 National Cricket League Twenty20 and last: Wikipedia:Files for deletion/2010 April 10 -[2018-02-13T08:36:54.244] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/City of God – 10 Years Later and last: American Indian Pidgin English language -[2018-02-13T08:36:54.297] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:36:54.298] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:36:54.300] [INFO] cheese - inserting 1000 documents. first: File:Donovan-The Great Donovan.jpg and last: Journal of the Atmospheric Sciences -[2018-02-13T08:36:54.383] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of G:link stations/archive1 and last: Palace of Maffei Marescotti -[2018-02-13T08:36:54.394] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:36:54.469] [INFO] cheese - inserting 1000 documents. first: Template:Settlements on the Isle of Wight and last: Songs of the underground railroad -[2018-02-13T08:36:54.507] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:36:54.568] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:36:54.574] [INFO] cheese - inserting 1000 documents. first: Monastery of Chevetogne and last: Hol Horse (manga) -[2018-02-13T08:36:54.675] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:36:54.840] [INFO] cheese - inserting 1000 documents. first: Queensland Kanaka English language and last: Lotta Falkenback -[2018-02-13T08:36:54.875] [INFO] cheese - inserting 1000 documents. first: Jane Elizabeth Harris and last: Category:Les Discrets albums -[2018-02-13T08:36:54.881] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Possibly unfree files/2010 April 10 and last: Aureliano Sanchez Arango -[2018-02-13T08:36:54.913] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:36:54.919] [INFO] cheese - inserting 1000 documents. first: Messier Object 82 and last: Lord's Day Act -[2018-02-13T08:36:54.946] [INFO] cheese - inserting 1000 documents. first: A178 road (Great Britain) and last: Mehdibəyli -[2018-02-13T08:36:54.968] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:36:54.989] [INFO] cheese - inserting 1000 documents. first: File:Petticoat library.jpg and last: Birkat Kohanim -[2018-02-13T08:36:55.012] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:36:55.027] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:36:55.048] [INFO] cheese - inserting 1000 documents. first: Cishomonormativity and last: Fellows, John -[2018-02-13T08:36:55.050] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:55.178] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:36:55.215] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:36:55.448] [INFO] cheese - inserting 1000 documents. first: Tinguirica fauna and last: Houngan (Clayfighter) -[2018-02-13T08:36:55.467] [INFO] cheese - inserting 1000 documents. first: Ajmer Chandigarh Garib Rath Express and last: Claude Weston -[2018-02-13T08:36:55.562] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:55.621] [INFO] cheese - inserting 1000 documents. first: Kansas National Forest and last: Alıbəyli, Zangilan -[2018-02-13T08:36:55.631] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:36:55.635] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Wikipedia Signpost/2010-04-12/Arbitration report and last: Krumbiegel -[2018-02-13T08:36:55.711] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:55.801] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:36:55.844] [INFO] cheese - inserting 1000 documents. first: 17-Dihydroequilin sodium sulfate and last: Rocky Bluff Battery and Township -[2018-02-13T08:36:55.935] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:36:55.950] [INFO] cheese - inserting 1000 documents. first: HM Prison Acklington and last: Babotie -[2018-02-13T08:36:56.094] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:36:56.189] [INFO] cheese - inserting 1000 documents. first: Wrinkle ridge and last: Pauline Parker -[2018-02-13T08:36:56.215] [INFO] cheese - inserting 1000 documents. first: Template:R to alternative disambiguation and last: Peter Tossol -[2018-02-13T08:36:56.259] [INFO] cheese - inserting 1000 documents. first: Housetrucker and last: Portal:Aerosmith/box-footer -[2018-02-13T08:36:56.289] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:36:56.293] [INFO] cheese - inserting 1000 documents. first: Three Blind Dates and last: A467 road (Great Britain) -[2018-02-13T08:36:56.305] [INFO] cheese - inserting 1000 documents. first: Doctors to Be: 20 Years On and last: MUC8 -[2018-02-13T08:36:56.306] [INFO] cheese - batch complete in: 1.279 secs -[2018-02-13T08:36:56.345] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:36:56.355] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:36:56.426] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:36:56.455] [INFO] cheese - inserting 1000 documents. first: File:Cover Nergens Zonder Jou.jpg and last: 1912-13 Scottish Football League -[2018-02-13T08:36:56.504] [INFO] cheese - inserting 1000 documents. first: Template:S-line/SZM left/Airport and last: Category:Documents of Slovenia -[2018-02-13T08:36:56.536] [INFO] cheese - batch complete in: 1.567 secs -[2018-02-13T08:36:56.583] [INFO] cheese - batch complete in: 0.648 secs -[2018-02-13T08:36:56.624] [INFO] cheese - inserting 1000 documents. first: U.S. presidential election, 1796 and last: MFPA -[2018-02-13T08:36:56.705] [INFO] cheese - batch complete in: 0.611 secs -[2018-02-13T08:36:56.820] [INFO] cheese - inserting 1000 documents. first: Maren Derlien and last: Portal:Brazil/Selected quote/Archives -[2018-02-13T08:36:56.834] [INFO] cheese - inserting 1000 documents. first: Batman: Battle For The Cowl and last: Fujiwara no Kiyonari -[2018-02-13T08:36:56.854] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:36:56.892] [INFO] cheese - inserting 1000 documents. first: Nemuroglanis and last: Barbey D`Aurevilly -[2018-02-13T08:36:56.910] [INFO] cheese - inserting 1000 documents. first: Olav Bjornstad and last: Vishveshwarayya -[2018-02-13T08:36:56.922] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:36:56.967] [INFO] cheese - batch complete in: 0.431 secs -[2018-02-13T08:36:56.985] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:36:57.054] [INFO] cheese - inserting 1000 documents. first: Cindy Burger and last: Bajemelia -[2018-02-13T08:36:57.067] [INFO] cheese - inserting 1000 documents. first: Patricia Aldyen Austin Taylor "Pat" Buckley and last: Long Footed Potoroo -[2018-02-13T08:36:57.093] [INFO] cheese - inserting 1000 documents. first: List of National Titles and last: Hroðulf -[2018-02-13T08:36:57.114] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:36:57.126] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:36:57.215] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:36:57.322] [INFO] cheese - inserting 1000 documents. first: 1955-56 Hong Kong First Division League and last: 1978-79 OB I bajnoksag season -[2018-02-13T08:36:57.334] [INFO] cheese - inserting 1000 documents. first: Holddown (disambiguation) and last: PUC-Rio -[2018-02-13T08:36:57.409] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:36:57.485] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:36:57.524] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Walnut Street Historic District and last: File:Squilstand.jpg -[2018-02-13T08:36:57.531] [INFO] cheese - inserting 1000 documents. first: Peter F. (Peter Ferdinand) Drucker and last: Category:Barbados at the Central American and Caribbean Games -[2018-02-13T08:36:57.566] [INFO] cheese - inserting 1000 documents. first: Phtheochroa duponchelana and last: 2011 UEFA European Under-21 Football Championship qualification Group 7 -[2018-02-13T08:36:57.608] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:36:57.632] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:36:57.683] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:36:57.706] [INFO] cheese - inserting 1000 documents. first: Marguerite Viby and last: Tita (footballer) -[2018-02-13T08:36:57.767] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:36:57.925] [INFO] cheese - inserting 1000 documents. first: 1978-79 Polska Liga Hokejowa season and last: Maguta -[2018-02-13T08:36:57.957] [INFO] cheese - inserting 1000 documents. first: K205CY and last: Wajir North Constituency -[2018-02-13T08:36:57.964] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:36:58.016] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:36:58.223] [INFO] cheese - inserting 1000 documents. first: Mohammed Al-Balushi and last: Kikonai -[2018-02-13T08:36:58.241] [INFO] cheese - inserting 1000 documents. first: File:Star Fox Adventures GCN Screenshot.jpg and last: Lake Isabella -[2018-02-13T08:36:58.247] [INFO] cheese - inserting 1000 documents. first: Empty category (category theory) and last: 1965 Rutgers Scarlet Knights football team -[2018-02-13T08:36:58.293] [INFO] cheese - inserting 1000 documents. first: Template:Copper Basin Railway and last: Norris Stephen Falla -[2018-02-13T08:36:58.293] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:36:58.301] [INFO] cheese - inserting 1000 documents. first: Dorin Goian and last: Progressive Canadian Party candidates, 2006 Canadian federal election -[2018-02-13T08:36:58.322] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:36:58.354] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:36:58.356] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:36:58.383] [INFO] cheese - inserting 1000 documents. first: He Whom God Would Make Manifest and last: Wikipedia:GIANTDICK -[2018-02-13T08:36:58.476] [INFO] cheese - inserting 1000 documents. first: 2011 UEFA European Under-21 Football Championship qualification Group 8 and last: Pipariya -[2018-02-13T08:36:58.493] [INFO] cheese - batch complete in: 1.008 secs -[2018-02-13T08:36:58.551] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:36:58.655] [INFO] cheese - batch complete in: 0.972 secs -[2018-02-13T08:36:58.798] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Greavesville and last: 2011 Kremlin Cup - Women's Singles Qualifying -[2018-02-13T08:36:58.836] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:36:58.878] [INFO] cheese - inserting 1000 documents. first: Gord Reay and last: File:YuccaTheatreMidland.jpg -[2018-02-13T08:36:58.957] [INFO] cheese - inserting 1000 documents. first: A340 road (Great Britain) and last: Sandstone Township -[2018-02-13T08:36:58.979] [INFO] cheese - inserting 1000 documents. first: List of plants used in South Asian cuisine and last: Gerald Michael Browne -[2018-02-13T08:36:59.054] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:36:59.062] [INFO] cheese - batch complete in: 0.769 secs -[2018-02-13T08:36:59.087] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:36:59.149] [INFO] cheese - inserting 1000 documents. first: 2011 Kōfu International Open - Doubles and last: The Mormons (documentary) -[2018-02-13T08:36:59.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/Teniii and last: The Islamic Bank of Asia -[2018-02-13T08:36:59.268] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:36:59.292] [INFO] cheese - inserting 1000 documents. first: Gary Graham (musician) and last: Erxian -[2018-02-13T08:36:59.305] [INFO] cheese - inserting 1000 documents. first: District courts of Japan and last: Arnold Payne (athlete) -[2018-02-13T08:36:59.338] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:36:59.354] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:36:59.442] [INFO] cheese - batch complete in: 0.787 secs -[2018-02-13T08:36:59.536] [INFO] cheese - inserting 1000 documents. first: Ebauche and last: Ong Bak -[2018-02-13T08:36:59.608] [INFO] cheese - inserting 1000 documents. first: 2011-12 Scottish Junior Cup and last: Communist purges in Serbia in 1944-1945 -[2018-02-13T08:36:59.640] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T08:36:59.680] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T08:36:59.690] [INFO] cheese - inserting 1000 documents. first: Secularism in the Arab World and last: The Streamy Awards -[2018-02-13T08:36:59.728] [INFO] cheese - inserting 1000 documents. first: Category:Film artists from Karnataka and last: Category:Beernem -[2018-02-13T08:36:59.784] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:36:59.800] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:36:59.840] [INFO] cheese - inserting 1000 documents. first: Student protests and last: It's Roger Rabbit -[2018-02-13T08:36:59.941] [INFO] cheese - inserting 1000 documents. first: Saint Vincent and the Grenadines at the Commonwealth Games and last: Pederly -[2018-02-13T08:36:59.975] [INFO] cheese - batch complete in: 0.637 secs -[2018-02-13T08:36:59.980] [INFO] cheese - inserting 1000 documents. first: Broginin and last: Template:Steve Martino -[2018-02-13T08:37:00.041] [INFO] cheese - inserting 1000 documents. first: Communities in the Minneapolis-Saint Paul Metro area and last: List of MPs of Colchester, 1885-1983 -[2018-02-13T08:37:00.073] [INFO] cheese - inserting 1000 documents. first: Juno Award for Classical Album of the Year – Large Ensemble or Soloist(s) with Large Ensemble Accompaniment and last: Madhu Purnima -[2018-02-13T08:37:00.098] [INFO] cheese - batch complete in: 0.656 secs -[2018-02-13T08:37:00.110] [INFO] cheese - batch complete in: 1.048 secs -[2018-02-13T08:37:00.177] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:37:00.191] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:37:00.329] [INFO] cheese - inserting 1000 documents. first: Guatemala at the 1984 Summer Paralympics and last: Category:Works by David Storey -[2018-02-13T08:37:00.368] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:37:00.497] [INFO] cheese - inserting 1000 documents. first: Architecture of Moscow and last: Swimming at the 2011 World Aquatics Championships - Women's 200 metre butterfly -[2018-02-13T08:37:00.560] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T08:37:00.578] [INFO] cheese - inserting 1000 documents. first: Lutz-Splendore-de Almeida disease and last: Wikipedia:Changing username/Archive4 -[2018-02-13T08:37:00.603] [INFO] cheese - inserting 1000 documents. first: Slit Throats Case and last: William W. Thayer -[2018-02-13T08:37:00.651] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:37:00.718] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:37:00.792] [INFO] cheese - inserting 1000 documents. first: Madison Park High School and last: Dyffryn-bern -[2018-02-13T08:37:00.879] [INFO] cheese - inserting 1000 documents. first: Kelanly and last: 1981 All-Ireland Senior Hurling Championship -[2018-02-13T08:37:00.894] [INFO] cheese - inserting 1000 documents. first: Barbell Nebula and last: Rice car -[2018-02-13T08:37:00.912] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:37:00.992] [INFO] cheese - inserting 1000 documents. first: Swimming at the 2011 World Aquatics Championships - Women's 200 metre freestyle and last: Hardington, Somerset -[2018-02-13T08:37:01.009] [INFO] cheese - inserting 1000 documents. first: Category:Socialist parties in China and last: Les as du turf -[2018-02-13T08:37:01.022] [INFO] cheese - inserting 1000 documents. first: File:8 track sound system.jpg and last: IFLB -[2018-02-13T08:37:01.031] [INFO] cheese - batch complete in: 0.921 secs -[2018-02-13T08:37:01.061] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:37:01.062] [INFO] cheese - batch complete in: 1.382 secs -[2018-02-13T08:37:01.148] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Changing username/Archive40 and last: Longgang Mosque -[2018-02-13T08:37:01.153] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:37:01.204] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:37:01.267] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:01.391] [INFO] cheese - inserting 1000 documents. first: List of tall buildings and last: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/634 -[2018-02-13T08:37:01.429] [INFO] cheese - inserting 1000 documents. first: Cyril Aphrem Karim and last: Chabad Lubavitch News -[2018-02-13T08:37:01.499] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:37:01.514] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:37:01.723] [INFO] cheese - inserting 1000 documents. first: Christopher Wood (English painter) and last: Category:Protégé (TV series) -[2018-02-13T08:37:01.753] [INFO] cheese - inserting 1000 documents. first: Big Babies and last: Cyril Dunne -[2018-02-13T08:37:01.781] [INFO] cheese - inserting 1000 documents. first: Robert Scott Duncanson and last: Hypotia bleusei -[2018-02-13T08:37:01.818] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:37:01.828] [INFO] cheese - inserting 1000 documents. first: Call to power II and last: Iranistan -[2018-02-13T08:37:01.927] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:37:01.936] [INFO] cheese - batch complete in: 0.783 secs -[2018-02-13T08:37:01.977] [INFO] cheese - batch complete in: 0.946 secs -[2018-02-13T08:37:02.053] [INFO] cheese - inserting 1000 documents. first: Sam Gash and last: Grand Moff Governor Wilhuff Tarkin -[2018-02-13T08:37:02.072] [INFO] cheese - inserting 1000 documents. first: Category:Edwards County, Kansas and last: Student council -[2018-02-13T08:37:02.084] [INFO] cheese - inserting 1000 documents. first: Category:Cleveland City Schools and last: Template:Did you know nominations/Sonia Destri Lie -[2018-02-13T08:37:02.136] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:37:02.173] [INFO] cheese - batch complete in: 0.674 secs -[2018-02-13T08:37:02.202] [INFO] cheese - batch complete in: 1.14 secs -[2018-02-13T08:37:02.259] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Biography articles by quality/635 and last: Edward Belfour -[2018-02-13T08:37:02.352] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:37:02.381] [INFO] cheese - inserting 1000 documents. first: Template:Lists of South African cricketers and last: Category:Taxa named by Alfred Nehring -[2018-02-13T08:37:02.450] [INFO] cheese - inserting 1000 documents. first: File:Anvil - Speed of Sound.jpg and last: File:Love is Gone 2.png -[2018-02-13T08:37:02.534] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:37:02.566] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:37:02.649] [INFO] cheese - inserting 1000 documents. first: Broad Town White Horse and last: Wikipedia:Motto of the day/February 22, 2012 -[2018-02-13T08:37:02.651] [INFO] cheese - inserting 1000 documents. first: Brandy for the Parson and last: Archevan’ -[2018-02-13T08:37:02.766] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:37:02.773] [INFO] cheese - inserting 1000 documents. first: File:Interior of Mirror Lake Library 1915 building.jpg and last: Hanover Town Library -[2018-02-13T08:37:02.800] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:37:02.976] [INFO] cheese - inserting 1000 documents. first: UV/VIS spectroscopy and last: Varsity Show (movie) -[2018-02-13T08:37:03.015] [INFO] cheese - batch complete in: 0.834 secs -[2018-02-13T08:37:03.149] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:37:03.199] [INFO] cheese - inserting 1000 documents. first: The Philanthropist and last: Samantha Jones (character) -[2018-02-13T08:37:03.252] [INFO] cheese - inserting 1000 documents. first: KXET and last: Land of legends (Sagnlandet Lejre) -[2018-02-13T08:37:03.277] [INFO] cheese - inserting 1000 documents. first: Template:March 1943 shipwrecks and last: Quinton Joseph Flynn -[2018-02-13T08:37:03.324] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:03.363] [INFO] cheese - inserting 1000 documents. first: Marilyn Brick and last: Maxwell-Boltzmann velocity distribution -[2018-02-13T08:37:03.373] [INFO] cheese - inserting 1000 documents. first: Shiraz Regional Library of Science and Technology and last: The Putney Vale Cemetery and Crematorium -[2018-02-13T08:37:03.388] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:37:03.391] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:37:03.493] [INFO] cheese - inserting 1000 documents. first: Category:Olympic wrestlers of Guinea-Bissau and last: Harringay Green Lanes -[2018-02-13T08:37:03.537] [INFO] cheese - batch complete in: 1.335 secs -[2018-02-13T08:37:03.536] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:37:03.581] [INFO] cheese - inserting 1000 documents. first: Category:Geography of San José de Ocoa Province and last: Graduate Institute of Geneva -[2018-02-13T08:37:03.584] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:37:03.656] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:37:03.847] [INFO] cheese - inserting 1000 documents. first: Vieques Airport and last: Gönen -[2018-02-13T08:37:03.856] [INFO] cheese - inserting 1000 documents. first: Constitution of russia and last: Web harvesting -[2018-02-13T08:37:03.861] [INFO] cheese - inserting 1000 documents. first: Category:People from East Khasi Hills district and last: Homosexuality: A New Christian Ethic -[2018-02-13T08:37:03.894] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:37:03.903] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:03.906] [INFO] cheese - inserting 1000 documents. first: Template:POTD protected/2016-06-18 and last: Koomn Woastn -[2018-02-13T08:37:03.919] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:37:03.973] [INFO] cheese - inserting 1000 documents. first: Amendments to the Constitution of Pakistan and last: The Rosetta Foundation -[2018-02-13T08:37:03.990] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:37:04.020] [INFO] cheese - inserting 1000 documents. first: Graduate Institute in Geneva and last: Pudhu Pudhu Ragangal -[2018-02-13T08:37:04.023] [INFO] cheese - batch complete in: 0.486 secs -[2018-02-13T08:37:04.060] [INFO] cheese - batch complete in: 0.403 secs -[2018-02-13T08:37:04.119] [INFO] cheese - inserting 1000 documents. first: François Condelmerio and last: Hello Taiwan -[2018-02-13T08:37:04.183] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:04.196] [INFO] cheese - inserting 1000 documents. first: Leon Bibel and last: Ådne Søndrål -[2018-02-13T08:37:04.203] [INFO] cheese - inserting 1000 documents. first: Grozden Peak and last: 2015 Puskas Cup -[2018-02-13T08:37:04.232] [INFO] cheese - batch complete in: 0.241 secs -[2018-02-13T08:37:04.264] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:37:04.338] [INFO] cheese - inserting 1000 documents. first: Sarab-e Abdali and last: I.A.R. 9K Mistral -[2018-02-13T08:37:04.355] [INFO] cheese - inserting 1000 documents. first: Miosgán Médhbh and last: Norwegian National Association for Lesbian and Gay Liberation -[2018-02-13T08:37:04.373] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:37:04.390] [INFO] cheese - inserting 1000 documents. first: Bank Holiday Monday (song) and last: Wikipedia:Requests for checkuser/Case/Derex -[2018-02-13T08:37:04.382] [INFO] cheese - batch complete in: 0.322 secs -[2018-02-13T08:37:04.413] [INFO] cheese - inserting 1000 documents. first: Count Jacob Sievers and last: Category:People from Hylte Municipality -[2018-02-13T08:37:04.446] [INFO] cheese - inserting 1000 documents. first: 2015 Rally Liepaja and last: Ana Petra Perez Florido -[2018-02-13T08:37:04.450] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:37:04.479] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T08:37:04.484] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:37:04.509] [INFO] cheese - inserting 1000 documents. first: Easton Bavents and last: Dominique Maltais -[2018-02-13T08:37:04.561] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:37:04.648] [INFO] cheese - inserting 1000 documents. first: Ana Radovic (basketball, born 1990) and last: Wikipedia:Miscellany for deletion/User:MetaphoricalIdiot/Tau (2π) -[2018-02-13T08:37:04.670] [INFO] cheese - batch complete in: 0.191 secs -[2018-02-13T08:37:04.747] [INFO] cheese - inserting 1000 documents. first: Tyler Moore and last: Gukchae Park -[2018-02-13T08:37:04.758] [INFO] cheese - inserting 1000 documents. first: Template:Pretty Ricky and last: Category:Ferry terminals in California -[2018-02-13T08:37:04.775] [INFO] cheese - inserting 1000 documents. first: Hana no Gosho and last: Subbotin oil field -[2018-02-13T08:37:04.810] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:37:04.886] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:37:04.931] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:37:05.038] [INFO] cheese - inserting 1000 documents. first: Bahia de Cata and last: 2015-16 Gazelec Ajaccio season -[2018-02-13T08:37:05.058] [INFO] cheese - inserting 1000 documents. first: Sunny Deol and last: File:FinalFantasyTacticsAdvanceGBACoverArtUS.jpg -[2018-02-13T08:37:05.068] [INFO] cheese - inserting 1000 documents. first: Category:Sports competitions in Indonesia and last: Dysstroma mulleolata -[2018-02-13T08:37:05.072] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:37:05.077] [INFO] cheese - inserting 1000 documents. first: Templum Iovis and last: Sarmouni Brotherhood -[2018-02-13T08:37:05.152] [INFO] cheese - batch complete in: 0.887 secs -[2018-02-13T08:37:05.167] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:37:05.175] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:37:05.324] [INFO] cheese - inserting 1000 documents. first: Convergence (novel) and last: Attendorn -[2018-02-13T08:37:05.342] [INFO] cheese - inserting 1000 documents. first: Borivoj Lazic and last: Cative -[2018-02-13T08:37:05.363] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T08:37:05.390] [INFO] cheese - inserting 1000 documents. first: 2011 FIA WTCC Race of China and last: Category:United States House of Representatives elections, 2003 -[2018-02-13T08:37:05.460] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:37:05.462] [INFO] cheese - inserting 1000 documents. first: Template:IETF RFC 1st april and last: Cha Jong-Bok -[2018-02-13T08:37:05.541] [INFO] cheese - batch complete in: 0.73 secs -[2018-02-13T08:37:05.640] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:37:05.642] [INFO] cheese - inserting 1000 documents. first: The Shops at Iverson and last: Salgira -[2018-02-13T08:37:05.757] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:37:05.812] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/MrsDietz19 and last: Criona Ni Dhalaigh -[2018-02-13T08:37:05.866] [INFO] cheese - inserting 1000 documents. first: Masahiro Wada and last: Chongqing University of Technology -[2018-02-13T08:37:05.893] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:05.933] [INFO] cheese - inserting 1000 documents. first: Youth (Conrad short story) and last: Wikipedia:Articles for deletion/Peter buchanan -[2018-02-13T08:37:06.000] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:37:06.013] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:37:06.132] [INFO] cheese - inserting 1000 documents. first: Catherine Curtin and last: Duena y senora (telenovela) -[2018-02-13T08:37:06.204] [INFO] cheese - inserting 1000 documents. first: Taichang Emperor of China and last: Texas Regulars -[2018-02-13T08:37:06.204] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T08:37:06.234] [INFO] cheese - inserting 1000 documents. first: Shin A-Lam and last: FW Ogilvie -[2018-02-13T08:37:06.272] [INFO] cheese - inserting 1000 documents. first: Template:Office holders in the Diocese of Limerick, Killaloe & Ardfert and last: Graat -[2018-02-13T08:37:06.288] [INFO] cheese - batch complete in: 1.136 secs -[2018-02-13T08:37:06.319] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:37:06.333] [INFO] cheese - inserting 1000 documents. first: Belleisle Creek, New Brunswick and last: Population Research Institute -[2018-02-13T08:37:06.342] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:37:06.442] [INFO] cheese - inserting 1000 documents. first: Category:1643 establishments in Japan and last: Capital of Sardinia -[2018-02-13T08:37:06.450] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:37:06.456] [INFO] cheese - inserting 1000 documents. first: Honda Civic (sixth generation) and last: Sparta Township, Kent County, Michigan -[2018-02-13T08:37:06.481] [INFO] cheese - batch complete in: 0.277 secs -[2018-02-13T08:37:06.560] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:37:06.578] [INFO] cheese - inserting 1000 documents. first: Csabdi and last: Raphaël Poulain -[2018-02-13T08:37:06.649] [INFO] cheese - batch complete in: 0.636 secs -[2018-02-13T08:37:06.662] [INFO] cheese - inserting 1000 documents. first: Category:Culture articles needing translation from Chinese Wikipedia and last: Frank Hickling -[2018-02-13T08:37:06.662] [INFO] cheese - inserting 1000 documents. first: Hobbys Yard, New South Wales and last: 2001 Copa America Final -[2018-02-13T08:37:06.718] [INFO] cheese - batch complete in: 0.376 secs -[2018-02-13T08:37:06.755] [INFO] cheese - inserting 1000 documents. first: Eydvor Klakstein and last: Federation Francaise des Societes Feministes -[2018-02-13T08:37:06.768] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:37:06.780] [INFO] cheese - batch complete in: 0.299 secs -[2018-02-13T08:37:06.825] [INFO] cheese - inserting 1000 documents. first: Category:Ittihad FC matches and last: Publique Sportive Mouara -[2018-02-13T08:37:06.879] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:06.930] [INFO] cheese - inserting 1000 documents. first: Mithranism and last: Kite Hill, Laguna Niguel, California -[2018-02-13T08:37:06.994] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:07.025] [INFO] cheese - inserting 1000 documents. first: Federation Haitienne de Basket-Ball and last: Gerard DuBois -[2018-02-13T08:37:07.065] [INFO] cheese - inserting 1000 documents. first: US Immigration and Naturalization Service and last: Tom Ballard -[2018-02-13T08:37:07.072] [INFO] cheese - batch complete in: 0.292 secs -[2018-02-13T08:37:07.074] [INFO] cheese - inserting 1000 documents. first: 2001 Copa Peru and last: File:Jerry Douglas Y&R.jpg -[2018-02-13T08:37:07.116] [INFO] cheese - batch complete in: 0.398 secs -[2018-02-13T08:37:07.122] [INFO] cheese - batch complete in: 0.562 secs -[2018-02-13T08:37:07.202] [INFO] cheese - inserting 1000 documents. first: Soudan Mine and last: Väisälä crater -[2018-02-13T08:37:07.244] [INFO] cheese - inserting 1000 documents. first: Patrick F. Taylor and last: Boulevard Rene-Levesque -[2018-02-13T08:37:07.313] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:37:07.316] [INFO] cheese - inserting 1000 documents. first: Littleton Adventist Hospital and last: Wikipedia:Articles for deletion/Topsite (www) -[2018-02-13T08:37:07.363] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:37:07.367] [INFO] cheese - inserting 1000 documents. first: Karibib Air Base and last: Halleforsnas IF -[2018-02-13T08:37:07.433] [INFO] cheese - inserting 1000 documents. first: Sporting Moura and last: Wikipedia:Sockpuppet investigations/Dinesh Meena92/Archive -[2018-02-13T08:37:07.434] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:37:07.442] [INFO] cheese - batch complete in: 0.37 secs -[2018-02-13T08:37:07.538] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:07.618] [INFO] cheese - inserting 1000 documents. first: The Works (TV series) and last: Alejandro Prospero Reverend -[2018-02-13T08:37:07.629] [INFO] cheese - inserting 1000 documents. first: Wabash Avenue (Baltimore) and last: Lovesong of the Buzzard -[2018-02-13T08:37:07.676] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:07.688] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:37:07.743] [INFO] cheese - inserting 1000 documents. first: Hallestad Church and last: James Davis Boriko -[2018-02-13T08:37:07.808] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T08:37:07.815] [INFO] cheese - inserting 1000 documents. first: Baron Boyle of Broghill and last: Naftex -[2018-02-13T08:37:07.941] [INFO] cheese - batch complete in: 0.947 secs -[2018-02-13T08:37:07.949] [INFO] cheese - inserting 1000 documents. first: Talhaearn and last: Bullshitters -[2018-02-13T08:37:07.971] [INFO] cheese - inserting 1000 documents. first: Aenetus crameri and last: Category:Colbie Caillat -[2018-02-13T08:37:08.008] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:37:08.076] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:37:08.078] [INFO] cheese - inserting 1000 documents. first: Crestview, Okaloosa County, FL and last: Mildred Z Solomon -[2018-02-13T08:37:08.138] [INFO] cheese - inserting 1000 documents. first: Richard Almgill Harrison and last: Canadians of Greek ancestry -[2018-02-13T08:37:08.148] [INFO] cheese - inserting 1000 documents. first: Jamyangiin Monkhbat and last: Somerset station (Market–Frankford Line) -[2018-02-13T08:37:08.154] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:08.191] [INFO] cheese - inserting 1000 documents. first: List of Valencian monarchs and last: Eagle-Vail -[2018-02-13T08:37:08.196] [INFO] cheese - inserting 1000 documents. first: Wielka Wola, Opoczno County and last: Wola Wydrzyna -[2018-02-13T08:37:08.209] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:37:08.259] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:37:08.276] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:37:08.333] [INFO] cheese - batch complete in: 1.02 secs -[2018-02-13T08:37:08.530] [INFO] cheese - inserting 1000 documents. first: Jose Guardiola (actor) and last: Jorg Schellmann -[2018-02-13T08:37:08.549] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T08:37:08.556] [INFO] cheese - inserting 1000 documents. first: Antun Palic and last: Wikipedia:Articles for deletion/The California Penal League of Fantasy Baseball -[2018-02-13T08:37:08.586] [INFO] cheese - inserting 1000 documents. first: Banach-Mazur game and last: Japanese Ministry of Education, Culture, Sports, Science and Technology -[2018-02-13T08:37:08.603] [INFO] cheese - batch complete in: 0.595 secs -[2018-02-13T08:37:08.694] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:37:08.703] [INFO] cheese - inserting 1000 documents. first: A.H. Clough and last: Migraine of the eye -[2018-02-13T08:37:08.707] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Atlanta Way (film) and last: Art Museum at SUNY Potsdam -[2018-02-13T08:37:08.798] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:37:08.804] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:37:08.820] [INFO] cheese - inserting 1000 documents. first: Jorg Schneider and last: Foxtrott -[2018-02-13T08:37:08.847] [INFO] cheese - inserting 1000 documents. first: Złotniki, Pajęczno County and last: Konopnica, Poddębice County -[2018-02-13T08:37:08.909] [INFO] cheese - batch complete in: 0.359 secs -[2018-02-13T08:37:08.957] [INFO] cheese - inserting 1000 documents. first: WTGV-FM and last: Tenno Heika Banzai -[2018-02-13T08:37:08.959] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:37:09.008] [INFO] cheese - inserting 1000 documents. first: Michael Omidi and last: Bahceli, Nigde -[2018-02-13T08:37:09.082] [INFO] cheese - batch complete in: 0.478 secs -[2018-02-13T08:37:09.082] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:37:09.201] [INFO] cheese - inserting 1000 documents. first: 17α-Ethynyl-5(10)-estren-17β-ol and last: List of Djurgardens IF Fotboll managers -[2018-02-13T08:37:09.217] [INFO] cheese - batch complete in: 0.308 secs -[2018-02-13T08:37:09.226] [INFO] cheese - inserting 1000 documents. first: Sanghamitta and last: FILE ID.DIZ -[2018-02-13T08:37:09.295] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:37:09.311] [INFO] cheese - inserting 1000 documents. first: Driving licence in Canada and last: Wikipedia:Articles for deletion/Only Man -[2018-02-13T08:37:09.383] [INFO] cheese - inserting 1000 documents. first: Archeological sites and last: File:Thegladiatordaredevil.jpg -[2018-02-13T08:37:09.382] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:09.402] [INFO] cheese - inserting 1000 documents. first: Eye migraine and last: CGAS Brooklyn -[2018-02-13T08:37:09.414] [INFO] cheese - inserting 1000 documents. first: Case No. 05-cv-1189 and last: The GrooveGrass Boyz -[2018-02-13T08:37:09.425] [INFO] cheese - inserting 1000 documents. first: List of Djurgardens IF Fotboll players (25–99 appearances) and last: Makombe River -[2018-02-13T08:37:09.464] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T08:37:09.466] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:37:09.509] [INFO] cheese - batch complete in: 0.711 secs -[2018-02-13T08:37:09.524] [INFO] cheese - inserting 1000 documents. first: Bahcesehir Koleji and last: Quantitative sciences -[2018-02-13T08:37:09.537] [INFO] cheese - inserting 1000 documents. first: Ray Griff and last: Wikipedia:Version 1.0 Editorial Team/Geology articles by quality/1 -[2018-02-13T08:37:09.591] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:37:09.592] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:09.670] [INFO] cheese - inserting 1000 documents. first: Makoto Sato (actor) and last: ISO 3166-2:LU-RD -[2018-02-13T08:37:09.686] [INFO] cheese - batch complete in: 0.222 secs -[2018-02-13T08:37:09.764] [INFO] cheese - inserting 1000 documents. first: Template:Taxonomy/Rubia and last: Riverside Secondary -[2018-02-13T08:37:09.830] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:37:09.871] [INFO] cheese - inserting 1000 documents. first: File:Vellum The Book of All Hours by Hal Duncan.jpeg and last: Template:RussiaAdmMunRef/kya/munlist/nizhneingashsky -[2018-02-13T08:37:09.875] [INFO] cheese - inserting 1000 documents. first: Steph rice and last: File:Various artists-star in a million.jpg -[2018-02-13T08:37:09.914] [INFO] cheese - inserting 1000 documents. first: Mellosa Church and last: Category:Laser ranging satellites -[2018-02-13T08:37:09.924] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:37:09.933] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:37:09.956] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T08:37:10.037] [INFO] cheese - inserting 1000 documents. first: Gavin Whittaker and last: Siberian Yup'ik -[2018-02-13T08:37:10.046] [INFO] cheese - inserting 1000 documents. first: Quantitative science and last: Belotic (Vladimirci) -[2018-02-13T08:37:10.062] [INFO] cheese - inserting 1000 documents. first: Chloe Lane and last: Bone Thugs-N-Harmony discography -[2018-02-13T08:37:10.085] [INFO] cheese - inserting 1000 documents. first: PVCO and last: Category:Belgian jazz pianists -[2018-02-13T08:37:10.087] [INFO] cheese - batch complete in: 0.494 secs -[2018-02-13T08:37:10.092] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:37:10.112] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:37:10.150] [INFO] cheese - inserting 1000 documents. first: Mas negro que la noche (2014 film) and last: O Mundo E Bao, Sebastiao! -[2018-02-13T08:37:10.160] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:37:10.208] [INFO] cheese - batch complete in: 0.252 secs -[2018-02-13T08:37:10.361] [INFO] cheese - inserting 1000 documents. first: Lillien Martin and last: Judith Kelley -[2018-02-13T08:37:10.387] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/COIReports/2008, Aug 22 and last: Category:Olympic beach volleyball players of Angola -[2018-02-13T08:37:10.396] [INFO] cheese - inserting 1000 documents. first: Louisa Alice Baker and last: Brod, Radom County -[2018-02-13T08:37:10.399] [INFO] cheese - inserting 1000 documents. first: Sheikh Ahmed Abdullah and last: Veta La Palma -[2018-02-13T08:37:10.414] [INFO] cheese - batch complete in: 0.584 secs -[2018-02-13T08:37:10.421] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T08:37:10.429] [INFO] cheese - inserting 1000 documents. first: Merida Province (1622-1676) and last: Pierre Antoine Francois Huber -[2018-02-13T08:37:10.450] [INFO] cheese - batch complete in: 0.242 secs -[2018-02-13T08:37:10.468] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:10.492] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:37:10.588] [INFO] cheese - inserting 1000 documents. first: Zoltán Béres and last: Ian Shaw (archaeologist) -[2018-02-13T08:37:10.638] [INFO] cheese - batch complete in: 0.526 secs -[2018-02-13T08:37:10.659] [INFO] cheese - inserting 1000 documents. first: Category:Tokyo International University faculty and last: Category:2010s in California by city -[2018-02-13T08:37:10.679] [INFO] cheese - inserting 1000 documents. first: Brohn and last: Trinity Academy -[2018-02-13T08:37:10.688] [INFO] cheese - batch complete in: 0.238 secs -[2018-02-13T08:37:10.703] [INFO] cheese - inserting 1000 documents. first: Wayne Handley and last: Robert Frederick Foster -[2018-02-13T08:37:10.715] [INFO] cheese - batch complete in: 0.294 secs -[2018-02-13T08:37:10.757] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:10.773] [INFO] cheese - inserting 1000 documents. first: Shirai Ryu and last: Nancy Evans (disambiguation) -[2018-02-13T08:37:10.820] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:10.833] [INFO] cheese - inserting 1000 documents. first: Pittsburgh Pipers and last: Mutating engine -[2018-02-13T08:37:10.891] [INFO] cheese - inserting 1000 documents. first: Regnbagslandet and last: Samuel Herrera Chavez -[2018-02-13T08:37:10.904] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:37:10.913] [INFO] cheese - inserting 1000 documents. first: Marquis of Bute and last: File:Goldfootbikinimachine.jpg -[2018-02-13T08:37:10.914] [INFO] cheese - batch complete in: 0.225 secs -[2018-02-13T08:37:10.935] [INFO] cheese - inserting 1000 documents. first: Superrigidity theorem and last: Antiroll tanks -[2018-02-13T08:37:10.966] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:37:11.014] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Sienna Biotec and last: Shuangjing Subdistrict, Beijing -[2018-02-13T08:37:11.016] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:37:11.072] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T08:37:11.125] [INFO] cheese - inserting 1000 documents. first: Samuel Lim Nunez and last: TMSanime -[2018-02-13T08:37:11.148] [INFO] cheese - inserting 1000 documents. first: Elisabeth Cain and last: Red Haw State Park -[2018-02-13T08:37:11.157] [INFO] cheese - batch complete in: 0.243 secs -[2018-02-13T08:37:11.161] [INFO] cheese - inserting 1000 documents. first: North Road (disambiguation) and last: 2011–13 Saudi Arabian protests -[2018-02-13T08:37:11.162] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Buffy/Episodes/to do and last: Archives Restaurant (Washington, D.C.) -[2018-02-13T08:37:11.192] [INFO] cheese - batch complete in: 0.372 secs -[2018-02-13T08:37:11.218] [INFO] cheese - batch complete in: 0.461 secs -[2018-02-13T08:37:11.222] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:37:11.340] [INFO] cheese - inserting 1000 documents. first: Cafe Tacvba (album) and last: Church of Santa Teresa y San Jose (Madrid) -[2018-02-13T08:37:11.341] [INFO] cheese - inserting 1000 documents. first: Sladan Scepovic and last: Conlay station -[2018-02-13T08:37:11.359] [INFO] cheese - batch complete in: 0.202 secs -[2018-02-13T08:37:11.363] [INFO] cheese - inserting 1000 documents. first: Aghkilisa (disambiguation) and last: Nawathana -[2018-02-13T08:37:11.405] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:37:11.459] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Teabagger and last: Enigmaticolus auzendei -[2018-02-13T08:37:11.482] [INFO] cheese - batch complete in: 0.516 secs -[2018-02-13T08:37:11.591] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:11.697] [INFO] cheese - inserting 1000 documents. first: Soren Nielsen May and last: Turkey in the Bala Turkvizyon Song Contest -[2018-02-13T08:37:11.698] [INFO] cheese - inserting 1000 documents. first: John Caulfield (footballer) and last: Wikipedia:Help desk/Archives/2014 April 3 -[2018-02-13T08:37:11.704] [INFO] cheese - inserting 1000 documents. first: Music of Saint Lucia and last: Wilno, Ontario -[2018-02-13T08:37:11.715] [INFO] cheese - batch complete in: 0.356 secs -[2018-02-13T08:37:11.749] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:37:11.754] [INFO] cheese - inserting 1000 documents. first: Astrodynamics and last: Indian general election, 1980 -[2018-02-13T08:37:11.799] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:37:11.808] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:37:11.816] [INFO] cheese - inserting 1000 documents. first: Korban Ha-Edah and last: 1964 in the environment -[2018-02-13T08:37:11.824] [INFO] cheese - inserting 1000 documents. first: Anthony Merry and last: Folke K. Skoog -[2018-02-13T08:37:11.867] [INFO] cheese - batch complete in: 0.462 secs -[2018-02-13T08:37:11.930] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:11.984] [INFO] cheese - inserting 1000 documents. first: APAH and last: Football of Ukraine -[2018-02-13T08:37:12.020] [INFO] cheese - inserting 1000 documents. first: Turkish government – Gulen Movement conflict and last: Euro 2016 statistics -[2018-02-13T08:37:12.025] [INFO] cheese - inserting 1000 documents. first: Manaria canetae and last: Klistervatnet/Bjørnevatnet -[2018-02-13T08:37:12.040] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:12.047] [INFO] cheese - batch complete in: 0.332 secs -[2018-02-13T08:37:12.074] [INFO] cheese - batch complete in: 0.483 secs -[2018-02-13T08:37:12.114] [INFO] cheese - inserting 1000 documents. first: Jacob Lincoln Freund and last: Child soldiers in Africa -[2018-02-13T08:37:12.155] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:12.161] [INFO] cheese - inserting 1000 documents. first: Idgah (place) and last: Cristian Fernandez Conchuela -[2018-02-13T08:37:12.209] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:37:12.239] [INFO] cheese - inserting 1000 documents. first: Vrion, Sarande and last: Agua de Pau Massif -[2018-02-13T08:37:12.240] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Kenneth Arbuthnot and last: A Worn Path -[2018-02-13T08:37:12.256] [INFO] cheese - batch complete in: 0.209 secs -[2018-02-13T08:37:12.299] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:12.424] [INFO] cheese - inserting 1000 documents. first: Railroad watch and last: Henry II of Silesia -[2018-02-13T08:37:12.424] [INFO] cheese - inserting 1000 documents. first: Aguas Boas e Forles and last: Module:Key people/sandbox -[2018-02-13T08:37:12.442] [INFO] cheese - inserting 1000 documents. first: 2007 All-Ireland Senior Camogie Championship and last: Frag-fest -[2018-02-13T08:37:12.450] [INFO] cheese - batch complete in: 0.194 secs -[2018-02-13T08:37:12.460] [INFO] cheese - inserting 1000 documents. first: Public Health Service Achievement Medal and last: File:Hbar 338A87E.png -[2018-02-13T08:37:12.462] [INFO] cheese - inserting 1000 documents. first: Claudio Foscarini and last: Category:Book-Class chess articles -[2018-02-13T08:37:12.465] [INFO] cheese - batch complete in: 0.256 secs -[2018-02-13T08:37:12.488] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:12.507] [INFO] cheese - inserting 1000 documents. first: Cipriano Cassamá and last: Australian-Zimbabwean relations -[2018-02-13T08:37:12.523] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:37:12.538] [INFO] cheese - inserting 1000 documents. first: Toki wo Koe Sora wo Koe / Password is 0 and last: Wikipedia:Articles for deletion/Homeworkgate -[2018-02-13T08:37:12.542] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:37:12.587] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:37:12.603] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:37:12.815] [INFO] cheese - inserting 1000 documents. first: Nikita Nikiforovs and last: Hollocher -[2018-02-13T08:37:12.941] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:13.055] [INFO] cheese - inserting 1000 documents. first: Selekuer and last: Joe Hernandez (American football) -[2018-02-13T08:37:13.076] [INFO] cheese - inserting 1000 documents. first: Studio Bellerive and last: Der Jager von Fall (1974 film) -[2018-02-13T08:37:13.076] [INFO] cheese - inserting 1000 documents. first: Khety I (nomarch) and last: Category:One Way (American band) songs -[2018-02-13T08:37:13.079] [INFO] cheese - inserting 1000 documents. first: Vorosto and last: File:Pawlu Camilleri il-Bibi Armonika Awi2001.jpg -[2018-02-13T08:37:13.091] [INFO] cheese - inserting 1000 documents. first: Kisbér and last: Braunau in Rohr Abbey -[2018-02-13T08:37:13.106] [INFO] cheese - inserting 1000 documents. first: Australian-Ukrainian relations and last: Sport Mastermind -[2018-02-13T08:37:13.121] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:13.128] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:13.136] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:37:13.147] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:13.179] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:37:13.184] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:13.355] [INFO] cheese - inserting 1000 documents. first: Musierowicz and last: Category:1989 politics in New York (state) -[2018-02-13T08:37:13.389] [INFO] cheese - inserting 1000 documents. first: Final Fight Guy and last: Friedrich Wilhelm Hemprich -[2018-02-13T08:37:13.400] [INFO] cheese - batch complete in: 0.459 secs -[2018-02-13T08:37:13.422] [INFO] cheese - inserting 1000 documents. first: Syrnola hera and last: Wikipedia:Articles for deletion/Siterra -[2018-02-13T08:37:13.459] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:37:13.471] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:37:13.490] [INFO] cheese - inserting 1000 documents. first: Daredevil (TV series) and last: Category:2005–06 NCAA Division I women's basketball season -[2018-02-13T08:37:13.549] [INFO] cheese - batch complete in: 0.42 secs -[2018-02-13T08:37:13.606] [INFO] cheese - inserting 1000 documents. first: Schaffle and last: Pentecostal Holiness Churches -[2018-02-13T08:37:13.657] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Wedding (Power Rangers) and last: Believe (Brooks & Dunn song) -[2018-02-13T08:37:13.679] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:13.708] [INFO] cheese - inserting 1000 documents. first: Kovzha River and last: John D. Harvey -[2018-02-13T08:37:13.738] [INFO] cheese - inserting 1000 documents. first: Stay (Tooji song) and last: Alexander Libermann -[2018-02-13T08:37:13.741] [INFO] cheese - batch complete in: 0.557 secs -[2018-02-13T08:37:13.752] [INFO] cheese - inserting 1000 documents. first: WBSI and last: Oudheusden -[2018-02-13T08:37:13.772] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:37:13.792] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T08:37:13.814] [INFO] cheese - inserting 1000 documents. first: Category:Estonian women judges and last: Pinhook, Lawrence County -[2018-02-13T08:37:13.842] [INFO] cheese - batch complete in: 0.663 secs -[2018-02-13T08:37:13.852] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:13.983] [INFO] cheese - inserting 1000 documents. first: File:Grosvenor Park Theatre Logo.png and last: File:ACS Ksar (logo).png -[2018-02-13T08:37:14.088] [INFO] cheese - batch complete in: 0.539 secs -[2018-02-13T08:37:14.154] [INFO] cheese - inserting 1000 documents. first: Manna (gymnastics) and last: Granulifusus staminatus -[2018-02-13T08:37:14.224] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:37:14.272] [INFO] cheese - inserting 1000 documents. first: Egana and last: Category:Belarusian words and phrases -[2018-02-13T08:37:14.314] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:37:14.342] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Deletion review/Log/2016 June 20 and last: AMD A10 5745M -[2018-02-13T08:37:14.360] [INFO] cheese - inserting 1000 documents. first: Andrew Tan (businessman) and last: Krzemienica -[2018-02-13T08:37:14.394] [INFO] cheese - inserting 1000 documents. first: File:Pahoeoe fountain original.jpg and last: Category:American novelty song performers -[2018-02-13T08:37:14.396] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:14.418] [INFO] cheese - batch complete in: 0.677 secs -[2018-02-13T08:37:14.435] [INFO] cheese - inserting 1000 documents. first: Bács-Kiskun County and last: Epsilon Proteobacteria -[2018-02-13T08:37:14.459] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:37:14.465] [INFO] cheese - inserting 1000 documents. first: Reithrodontomys megalotis and last: Marc Singer (documentarian) -[2018-02-13T08:37:14.516] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:37:14.539] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:37:14.569] [INFO] cheese - inserting 1000 documents. first: Tropical Storm Vera (Openg) and last: Battle on the Kozara -[2018-02-13T08:37:14.600] [INFO] cheese - inserting 1000 documents. first: Export of cryptography in the United States and last: Copper-copper(II) sulfate electrode -[2018-02-13T08:37:14.609] [INFO] cheese - batch complete in: 0.295 secs -[2018-02-13T08:37:14.678] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:37:14.718] [INFO] cheese - inserting 1000 documents. first: Latirus stenomphalus and last: Tritia goreensis -[2018-02-13T08:37:14.741] [INFO] cheese - inserting 1000 documents. first: A4-5150M and last: Template:Bishop of the Lindisfaras -[2018-02-13T08:37:14.770] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:37:14.774] [INFO] cheese - batch complete in: 0.378 secs -[2018-02-13T08:37:14.846] [INFO] cheese - inserting 1000 documents. first: Krzemienica, Łódź Voivodeship and last: Łobudzice, Zduńska Wola County -[2018-02-13T08:37:14.871] [INFO] cheese - inserting 1000 documents. first: Farol da Ponta de Sao Lourenco and last: Frederic and Cecilia Cutescu-Storck Art Museum -[2018-02-13T08:37:14.900] [INFO] cheese - inserting 1000 documents. first: The Plan (Six Feet Under Episode) and last: Bad Day For Trains -[2018-02-13T08:37:14.903] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:37:14.907] [INFO] cheese - batch complete in: 0.297 secs -[2018-02-13T08:37:14.984] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:15.118] [INFO] cheese - inserting 1000 documents. first: File:Half Note (album).jpg and last: Category:20th-century Lebanese actresses -[2018-02-13T08:37:15.124] [INFO] cheese - inserting 1000 documents. first: Template:Bishops of the Lindisfaras and last: Ces Renwick -[2018-02-13T08:37:15.135] [INFO] cheese - inserting 1000 documents. first: File:Mikko alanne.jpg and last: Displacement ventilation -[2018-02-13T08:37:15.161] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:37:15.165] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:37:15.167] [INFO] cheese - inserting 1000 documents. first: Template:Prisons in Yorkshire and the Humber and last: Calliotropis francocacii -[2018-02-13T08:37:15.198] [INFO] cheese - inserting 1000 documents. first: Nepenthes sp. Anipahan and last: Algroup -[2018-02-13T08:37:15.208] [INFO] cheese - inserting 1000 documents. first: Star Wars: Droids and last: Avaré, São Paulo -[2018-02-13T08:37:15.205] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:37:15.227] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:37:15.240] [INFO] cheese - batch complete in: 0.333 secs -[2018-02-13T08:37:15.327] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:37:15.431] [INFO] cheese - inserting 1000 documents. first: Nowy Kromolin and last: 2007 BCR Open Romania – Doubles -[2018-02-13T08:37:15.521] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:37:15.562] [INFO] cheese - inserting 1000 documents. first: File:Adolf Dickfeld.jpg and last: Funeral Dirge For The Rotting Sun -[2018-02-13T08:37:15.654] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:37:15.689] [INFO] cheese - inserting 1000 documents. first: Queen's first e.p. and last: Pune District -[2018-02-13T08:37:15.708] [INFO] cheese - inserting 1000 documents. first: King Gaplus and last: Minimum Viable Product (Silicon Valley) -[2018-02-13T08:37:15.737] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:37:15.770] [INFO] cheese - inserting 1000 documents. first: Calliotropis galea and last: 1960 SN -[2018-02-13T08:37:15.792] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:37:15.800] [INFO] cheese - inserting 1000 documents. first: Cecil Renwick and last: Lying Cat -[2018-02-13T08:37:15.839] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:37:15.888] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:37:15.892] [INFO] cheese - inserting 1000 documents. first: Box crab and last: Template:Electoral districts of Western Australia -[2018-02-13T08:37:15.966] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:37:16.007] [INFO] cheese - inserting 1000 documents. first: Gergo Ivancsik and last: Shelford's law of tolerance -[2018-02-13T08:37:16.038] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T08:37:16.082] [INFO] cheese - inserting 1000 documents. first: 1966 CF and last: Henllan, Ceredigion -[2018-02-13T08:37:16.085] [INFO] cheese - inserting 1000 documents. first: File:Golf Bloom.jpg and last: File:Grb FK Mladi Radnik.png -[2018-02-13T08:37:16.115] [INFO] cheese - batch complete in: 0.276 secs -[2018-02-13T08:37:16.138] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:37:16.154] [INFO] cheese - inserting 1000 documents. first: Standard gravitational parameter and last: William George Horner -[2018-02-13T08:37:16.218] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:37:16.240] [INFO] cheese - inserting 1000 documents. first: Gustav Adolph, Count of Nassau-Saarbrucken and last: Hellas ohne Gotter -[2018-02-13T08:37:16.249] [INFO] cheese - inserting 1000 documents. first: Bando Jonez and last: Wikipedia:Sockpuppet investigations/DataDrivenOne/Archive -[2018-02-13T08:37:16.269] [INFO] cheese - batch complete in: 0.231 secs -[2018-02-13T08:37:16.297] [INFO] cheese - inserting 1000 documents. first: Draft:Amy Leventer and last: Kentucky Route 420 -[2018-02-13T08:37:16.320] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:37:16.351] [INFO] cheese - batch complete in: 0.463 secs -[2018-02-13T08:37:16.374] [INFO] cheese - inserting 1000 documents. first: Template:WikiProjectbasename/doc and last: Category:People from Lysekil Municipality -[2018-02-13T08:37:16.386] [INFO] cheese - inserting 1000 documents. first: Funeral For a Feeling and last: Template:AFL-bio-1940s-stub -[2018-02-13T08:37:16.407] [INFO] cheese - batch complete in: 0.291 secs -[2018-02-13T08:37:16.461] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:37:16.516] [INFO] cheese - inserting 1000 documents. first: Pierre Rigolout and last: Washington Preparatory High School -[2018-02-13T08:37:16.531] [INFO] cheese - inserting 1000 documents. first: Helle (Spuligbach) and last: Ibirapuera (Sao Paulo Metro) -[2018-02-13T08:37:16.570] [INFO] cheese - batch complete in: 0.301 secs -[2018-02-13T08:37:16.577] [INFO] cheese - inserting 1000 documents. first: Adobe Photoshop Lightroom 2 and last: Computer game AI -[2018-02-13T08:37:16.593] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:37:16.642] [INFO] cheese - batch complete in: 0.504 secs -[2018-02-13T08:37:16.710] [INFO] cheese - inserting 1000 documents. first: Butov and last: Hewani -[2018-02-13T08:37:16.735] [INFO] cheese - inserting 1000 documents. first: Ibn Baya Ensemble and last: Javier Gonzalez Fraga -[2018-02-13T08:37:16.748] [INFO] cheese - batch complete in: 0.34 secs -[2018-02-13T08:37:16.767] [INFO] cheese - batch complete in: 0.197 secs -[2018-02-13T08:37:16.787] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/BetterThanSuchAsYou/Archive and last: Centennial Broadcasting -[2018-02-13T08:37:16.942] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:37:17.037] [INFO] cheese - inserting 1000 documents. first: X-57 Maxwell and last: Template:Attached KML/Newtown Square Branch -[2018-02-13T08:37:17.049] [INFO] cheese - inserting 1000 documents. first: Elizabeth Thomas (poet) and last: Qubani ka meetha -[2018-02-13T08:37:17.101] [INFO] cheese - inserting 1000 documents. first: Dezső and last: Kiiasovskiy -[2018-02-13T08:37:17.106] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:37:17.119] [INFO] cheese - inserting 1000 documents. first: File:Johnny English movie.jpg and last: Category:Art museums and galleries in Russia -[2018-02-13T08:37:17.125] [INFO] cheese - batch complete in: 0.664 secs -[2018-02-13T08:37:17.136] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:37:17.194] [INFO] cheese - inserting 1000 documents. first: Eike and last: Ćiribiribela -[2018-02-13T08:37:17.230] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:37:17.232] [INFO] cheese - inserting 1000 documents. first: Javier Gomez Cifuentes and last: Quigley poll -[2018-02-13T08:37:17.247] [INFO] cheese - inserting 1000 documents. first: File:Pabst100.jpg and last: Smoke and Ashes -[2018-02-13T08:37:17.275] [INFO] cheese - batch complete in: 0.682 secs -[2018-02-13T08:37:17.298] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:17.335] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:37:17.376] [INFO] cheese - inserting 1000 documents. first: Grote Kerk and last: Great Negotiations: Agreements that Changed the Modern World -[2018-02-13T08:37:17.417] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:37:17.506] [INFO] cheese - inserting 1000 documents. first: Germantitov and last: Idelsonia -[2018-02-13T08:37:17.552] [INFO] cheese - batch complete in: 0.416 secs -[2018-02-13T08:37:17.606] [INFO] cheese - inserting 1000 documents. first: Template:Unicode chart Osage and last: Hayes County Sheriff's Office -[2018-02-13T08:37:17.622] [INFO] cheese - inserting 1000 documents. first: Msn money and last: Yuri Lyapkin -[2018-02-13T08:37:17.642] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:37:17.689] [INFO] cheese - inserting 1000 documents. first: Sonorous Entertainment Inc. and last: Wikipedia:Articles for deletion/Star Mountain Studios -[2018-02-13T08:37:17.697] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:37:17.735] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:37:17.808] [INFO] cheese - inserting 1000 documents. first: Cichostów-Kolonia and last: Jakubówka -[2018-02-13T08:37:17.823] [INFO] cheese - inserting 1000 documents. first: Independent School League (Washington, DC area) and last: Zond Program -[2018-02-13T08:37:17.836] [INFO] cheese - inserting 1000 documents. first: Category:1900s disestablishments in Hawaii and last: Category:Nigerian graphic designers -[2018-02-13T08:37:17.858] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:37:17.907] [INFO] cheese - inserting 1000 documents. first: Idzerda and last: Jyoumon -[2018-02-13T08:37:17.923] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:17.925] [INFO] cheese - batch complete in: 0.649 secs -[2018-02-13T08:37:17.962] [INFO] cheese - batch complete in: 0.41 secs -[2018-02-13T08:37:18.089] [INFO] cheese - inserting 1000 documents. first: Q300 and last: Amoxipen -[2018-02-13T08:37:18.125] [INFO] cheese - inserting 1000 documents. first: Helmut Rauca and last: Thor Halvorsen -[2018-02-13T08:37:18.140] [INFO] cheese - inserting 1000 documents. first: 85 Leonard Street and last: Template:Taxonomy/Gymnarthridae -[2018-02-13T08:37:18.183] [INFO] cheese - batch complete in: 0.953 secs -[2018-02-13T08:37:18.244] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:37:18.301] [INFO] cheese - inserting 1000 documents. first: Housing at Yale and last: Template:2000–01 in Serie A -[2018-02-13T08:37:18.235] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:37:18.332] [INFO] cheese - inserting 1000 documents. first: Gyirong County and last: Nitrium (Star Trek) -[2018-02-13T08:37:18.342] [INFO] cheese - inserting 1000 documents. first: Jakubówka, Lublin Voivodeship and last: Adamowice, Lesser Poland Voivodeship -[2018-02-13T08:37:18.364] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:37:18.433] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:18.416] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:37:18.611] [INFO] cheese - inserting 1000 documents. first: The Nearness of You (Houston Person album) and last: Ajjamada B. Devaiah -[2018-02-13T08:37:18.690] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:37:18.729] [INFO] cheese - inserting 1000 documents. first: Pakistan Nuclear Society and last: Steppin' Out (song) -[2018-02-13T08:37:18.735] [INFO] cheese - inserting 1000 documents. first: Thorleif Halvorsen and last: Ambikah -[2018-02-13T08:37:18.740] [INFO] cheese - inserting 1000 documents. first: Tain District and last: John Smedley -[2018-02-13T08:37:18.743] [INFO] cheese - inserting 1000 documents. first: Hitler's Putsch and last: Lavalys -[2018-02-13T08:37:18.790] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:37:18.791] [INFO] cheese - batch complete in: 0.425 secs -[2018-02-13T08:37:18.798] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:37:18.849] [INFO] cheese - batch complete in: 0.924 secs -[2018-02-13T08:37:18.964] [INFO] cheese - inserting 1000 documents. first: Triceromeryx and last: Łomnica-Zdrój -[2018-02-13T08:37:19.015] [INFO] cheese - inserting 1000 documents. first: The Mark of Zero and last: Plastics Historical Society -[2018-02-13T08:37:19.021] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:37:19.066] [INFO] cheese - inserting 1000 documents. first: Amoxipenil and last: Relative error -[2018-02-13T08:37:19.074] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:37:19.149] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:37:19.172] [INFO] cheese - inserting 1000 documents. first: Von Dincklage and last: WMXXX -[2018-02-13T08:37:19.201] [INFO] cheese - inserting 1000 documents. first: Miyazakihayao and last: School board (England & Wales) -[2018-02-13T08:37:19.236] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:37:19.241] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:37:19.269] [INFO] cheese - inserting 1000 documents. first: Buddleja davidii 'Windy Hill' and last: Paralititan stromeri -[2018-02-13T08:37:19.306] [INFO] cheese - inserting 1000 documents. first: Ambyka and last: File:Power-rangersadishankar.jpeg -[2018-02-13T08:37:19.330] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:19.399] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:37:19.421] [INFO] cheese - inserting 1000 documents. first: Trzepieciny and last: Jim McAlister (soccer) -[2018-02-13T08:37:19.490] [INFO] cheese - batch complete in: 0.469 secs -[2018-02-13T08:37:19.508] [INFO] cheese - inserting 1000 documents. first: Anna of Brandenburg and last: Riemann theta function -[2018-02-13T08:37:19.536] [INFO] cheese - inserting 1000 documents. first: Piazzia and last: Shcherban' -[2018-02-13T08:37:19.558] [INFO] cheese - inserting 1000 documents. first: St. Thomas Aquinas High School (Overland Park, Kansas) and last: CSI: Miami (season 5) -[2018-02-13T08:37:19.575] [INFO] cheese - batch complete in: 0.334 secs -[2018-02-13T08:37:19.593] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:37:19.682] [INFO] cheese - batch complete in: 0.608 secs -[2018-02-13T08:37:19.837] [INFO] cheese - inserting 1000 documents. first: Lee Jae-Sung and last: Archdeaconry of Italy and Malta -[2018-02-13T08:37:19.915] [INFO] cheese - inserting 1000 documents. first: Absolute error and last: Albanian Communist Party -[2018-02-13T08:37:19.929] [INFO] cheese - batch complete in: 0.692 secs -[2018-02-13T08:37:19.953] [INFO] cheese - inserting 1000 documents. first: Category:Manx short story writers and last: Toveri -[2018-02-13T08:37:19.970] [INFO] cheese - inserting 1000 documents. first: Cornisepta verenae and last: Tret'yakov -[2018-02-13T08:37:20.027] [INFO] cheese - batch complete in: 0.878 secs -[2018-02-13T08:37:20.046] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:37:20.049] [INFO] cheese - inserting 1000 documents. first: Aptalis Pharmatech and last: Johannesburg City Library -[2018-02-13T08:37:20.057] [INFO] cheese - inserting 1000 documents. first: Euler-MacLaurin formula and last: Wikipedia:Articles for deletion/Birmingham New Road tram stop -[2018-02-13T08:37:20.080] [INFO] cheese - batch complete in: 0.681 secs -[2018-02-13T08:37:20.149] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:20.160] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:37:20.324] [INFO] cheese - inserting 1000 documents. first: File:Ami Suzuki - Thank You 4 Every Day Every Body.jpg and last: Canton City School District -[2018-02-13T08:37:20.325] [INFO] cheese - inserting 1000 documents. first: Trevanvoorth and last: Surround array -[2018-02-13T08:37:20.364] [INFO] cheese - batch complete in: 0.317 secs -[2018-02-13T08:37:20.375] [INFO] cheese - inserting 1000 documents. first: Category:Defunct airports in Germany and last: Jimmy Phillips (footballer, born 1966) -[2018-02-13T08:37:20.378] [INFO] cheese - inserting 1000 documents. first: List of Archdeacons of Italy and Malta and last: Monin–Obukhov similarity theory -[2018-02-13T08:37:20.403] [INFO] cheese - batch complete in: 0.81 secs -[2018-02-13T08:37:20.426] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:37:20.432] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:37:20.590] [INFO] cheese - inserting 1000 documents. first: E.1 and last: Sanagochi -[2018-02-13T08:37:20.591] [INFO] cheese - inserting 1000 documents. first: Category:Sex crimes in Northern Ireland and last: Drew Bledso -[2018-02-13T08:37:20.612] [INFO] cheese - inserting 1000 documents. first: Sakız, Mersin and last: Wang Ying(Screen actress) -[2018-02-13T08:37:20.633] [INFO] cheese - batch complete in: 0.484 secs -[2018-02-13T08:37:20.636] [INFO] cheese - batch complete in: 0.556 secs -[2018-02-13T08:37:20.661] [INFO] cheese - inserting 1000 documents. first: Communist Party of Albania and last: Bernardino de Campos -[2018-02-13T08:37:20.671] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:37:20.739] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:20.894] [INFO] cheese - inserting 1000 documents. first: Toyota EX-I and last: Pans Lane Halt station -[2018-02-13T08:37:20.934] [INFO] cheese - batch complete in: 0.57 secs -[2018-02-13T08:37:20.946] [INFO] cheese - inserting 1000 documents. first: Oh No Ross and Carrie and last: Nari (letter) -[2018-02-13T08:37:21.024] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:21.042] [INFO] cheese - inserting 1000 documents. first: Witanowice, Lesser Poland Voivodeship and last: HIC 10203 -[2018-02-13T08:37:21.051] [INFO] cheese - inserting 1000 documents. first: The goatse man and last: Robert Berry -[2018-02-13T08:37:21.069] [INFO] cheese - inserting 1000 documents. first: Kam Newton and last: Kyiv National Trade-Economics University -[2018-02-13T08:37:21.162] [INFO] cheese - inserting 1000 documents. first: Ohana Punch and last: Consummation (Album) -[2018-02-13T08:37:21.176] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:21.203] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:37:21.254] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:37:21.293] [INFO] cheese - inserting 1000 documents. first: Fischhof Manuscript and last: Tallinn French Gymnasium -[2018-02-13T08:37:21.314] [INFO] cheese - batch complete in: 0.911 secs -[2018-02-13T08:37:21.404] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:37:21.449] [INFO] cheese - inserting 1000 documents. first: TAAG Angola Airlines Flight 462 and last: Gen. George Cowles House -[2018-02-13T08:37:21.567] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:37:21.607] [INFO] cheese - inserting 1000 documents. first: Martino’s Summer and last: Christian Schilling -[2018-02-13T08:37:21.628] [INFO] cheese - inserting 1000 documents. first: Ralph O. Brewster and last: Suzukaze Mayo -[2018-02-13T08:37:21.721] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:37:21.721] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:37:21.732] [INFO] cheese - inserting 1000 documents. first: Leonard Horatio Slatter and last: Chłopice -[2018-02-13T08:37:21.818] [INFO] cheese - batch complete in: 0.642 secs -[2018-02-13T08:37:21.852] [INFO] cheese - inserting 1000 documents. first: United Malays National Organisation leadership election, 2004 and last: Christian Brothers' School -[2018-02-13T08:37:21.866] [INFO] cheese - inserting 1000 documents. first: Category:1738 operas and last: Wikipedia:Deletion review/Log/2007 May 16 -[2018-02-13T08:37:21.916] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:37:21.952] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:37:22.070] [INFO] cheese - inserting 1000 documents. first: Portal:Cars/Selected picture/24 and last: Evening Prayer -[2018-02-13T08:37:22.085] [INFO] cheese - inserting 1000 documents. first: Category:Works by Pierre-Joseph Proudhon and last: Sir Gilbert Claughton -[2018-02-13T08:37:22.136] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:37:22.140] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:37:22.174] [INFO] cheese - inserting 1000 documents. first: Annebronte and last: Preventive treatment -[2018-02-13T08:37:22.229] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:37:22.240] [INFO] cheese - inserting 1000 documents. first: Molesworth of Tetcott and last: Cawy Bottling Company -[2018-02-13T08:37:22.289] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:37:22.318] [INFO] cheese - inserting 1000 documents. first: File:BBC Sleepers DVD cover.jpg and last: Ciecierze -[2018-02-13T08:37:22.357] [INFO] cheese - inserting 1000 documents. first: Category:Sportspeople from Monterey, California and last: Vladislav Frolov (field athlete) -[2018-02-13T08:37:22.358] [INFO] cheese - inserting 1000 documents. first: Geoffrey Hoyle and last: Passive park -[2018-02-13T08:37:22.359] [INFO] cheese - batch complete in: 0.541 secs -[2018-02-13T08:37:22.402] [INFO] cheese - inserting 1000 documents. first: Tamatebako and last: Nekromantik -[2018-02-13T08:37:22.416] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:37:22.407] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:22.508] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:37:22.568] [INFO] cheese - inserting 1000 documents. first: Simplified molecular input line entry system and last: Admission Possible -[2018-02-13T08:37:22.628] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:37:22.638] [INFO] cheese - inserting 1000 documents. first: Prophylactic treatment and last: Masonic of Detroit -[2018-02-13T08:37:22.639] [INFO] cheese - inserting 1000 documents. first: Skye (Disambiguation) and last: Kerli Koiv -[2018-02-13T08:37:22.683] [INFO] cheese - batch complete in: 0.454 secs -[2018-02-13T08:37:22.703] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:37:22.783] [INFO] cheese - inserting 1000 documents. first: Bączal Dolny and last: Stare Miasto, Podkarpackie Voivodeship -[2018-02-13T08:37:22.802] [INFO] cheese - inserting 1000 documents. first: 1100 Milam and last: Chilean frigate Covadonga -[2018-02-13T08:37:22.820] [INFO] cheese - inserting 1000 documents. first: File:Hitler and the Occult.jpg and last: Adrian Voo -[2018-02-13T08:37:22.830] [INFO] cheese - batch complete in: 0.468 secs -[2018-02-13T08:37:22.838] [INFO] cheese - inserting 1000 documents. first: Katekyo Hitman Reborn and last: BCCH -[2018-02-13T08:37:22.868] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:22.881] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:37:22.921] [INFO] cheese - batch complete in: 0.514 secs -[2018-02-13T08:37:23.046] [INFO] cheese - inserting 1000 documents. first: Category:Koderma district and last: Ethmia canuisella -[2018-02-13T08:37:23.068] [INFO] cheese - inserting 1000 documents. first: Koforidua Senior High Technical School and last: Martha J. Wong -[2018-02-13T08:37:23.079] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:37:23.106] [INFO] cheese - inserting 1000 documents. first: God Shuffled His Feet and last: Category:Archaeological sites in Libya -[2018-02-13T08:37:23.161] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:23.253] [INFO] cheese - batch complete in: 0.745 secs -[2018-02-13T08:37:23.287] [INFO] cheese - inserting 1000 documents. first: Scott Oldham and last: Wikipedia:Deletion review/List of interesting or unusual place names (2nd) -[2018-02-13T08:37:23.327] [INFO] cheese - inserting 1000 documents. first: Wikipedia:MARINERSNEWS and last: Przędzel-Kolonia -[2018-02-13T08:37:23.349] [INFO] cheese - inserting 1000 documents. first: Draft:Noel Cressie draft and last: Template:Taxonomy/Angonisaurus -[2018-02-13T08:37:23.365] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 3219 and last: Category:Colombian Christians -[2018-02-13T08:37:23.398] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:37:23.402] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:37:23.452] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:23.455] [INFO] cheese - inserting 1000 documents. first: Zaksa Kędzierzyn-Koźle and last: Runica, Lipkovo -[2018-02-13T08:37:23.459] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:37:23.533] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:37:23.747] [INFO] cheese - inserting 1000 documents. first: Fenclozic acid and last: File:MCMBLostBoy2010.jpg -[2018-02-13T08:37:23.748] [INFO] cheese - inserting 1000 documents. first: Martha Jee Wong and last: Robert Verdun -[2018-02-13T08:37:23.812] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:37:23.817] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:37:23.867] [INFO] cheese - inserting 1000 documents. first: Daryl Shuttleworth and last: File:Bluebeards Castle screenshot.jpg -[2018-02-13T08:37:23.888] [INFO] cheese - inserting 1000 documents. first: File:Roberta Flack - Killing Me Softly with His Song.jpg and last: File:Water SA.jpg -[2018-02-13T08:37:23.908] [INFO] cheese - inserting 1000 documents. first: Category:Churches in the province of Savona and last: Casa de Guerche -[2018-02-13T08:37:23.915] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:37:23.950] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:37:23.967] [INFO] cheese - batch complete in: 0.508 secs -[2018-02-13T08:37:23.969] [INFO] cheese - inserting 1000 documents. first: Mirko Gashi and last: Category:Stockton-on-Tees Borough -[2018-02-13T08:37:23.977] [INFO] cheese - inserting 1000 documents. first: Al-Husseiniyah and last: Tsai Ting-kuei -[2018-02-13T08:37:24.017] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Ambition (cards) and last: Wikipedia:Votes for deletion/Charlie Young -[2018-02-13T08:37:24.023] [INFO] cheese - batch complete in: 0.621 secs -[2018-02-13T08:37:24.027] [INFO] cheese - inserting 1000 documents. first: Dave Hyatt and last: Pierre Pelot -[2018-02-13T08:37:24.031] [INFO] cheese - batch complete in: 0.498 secs -[2018-02-13T08:37:24.034] [INFO] cheese - batch complete in: 0.217 secs -[2018-02-13T08:37:24.104] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:37:24.233] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Charmer and last: Green-lit -[2018-02-13T08:37:24.255] [INFO] cheese - inserting 1000 documents. first: George 'Shadow' Morton and last: Kambarata-2 -[2018-02-13T08:37:24.255] [INFO] cheese - batch complete in: 0.221 secs -[2018-02-13T08:37:24.265] [INFO] cheese - inserting 1000 documents. first: Iran (word) and last: Peterborough Roadrunners -[2018-02-13T08:37:24.309] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:37:24.313] [INFO] cheese - batch complete in: 0.363 secs -[2018-02-13T08:37:24.359] [INFO] cheese - inserting 1000 documents. first: Ballica and last: Durgasthan -[2018-02-13T08:37:24.372] [INFO] cheese - inserting 1000 documents. first: Tsai Ting-Kuei and last: Portlaoise body -[2018-02-13T08:37:24.381] [INFO] cheese - inserting 1000 documents. first: St. John's Church, Egham and last: William O. Reichert -[2018-02-13T08:37:24.411] [INFO] cheese - batch complete in: 0.496 secs -[2018-02-13T08:37:24.419] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:24.444] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Elfrid Sundqvist and last: Long Beach Grand Prix -[2018-02-13T08:37:24.459] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T08:37:24.473] [INFO] cheese - batch complete in: 0.218 secs -[2018-02-13T08:37:24.517] [INFO] cheese - inserting 1000 documents. first: Peter Heathfield and last: List of Star Wars handmaidens -[2018-02-13T08:37:24.590] [INFO] cheese - batch complete in: 0.567 secs -[2018-02-13T08:37:24.599] [INFO] cheese - inserting 1000 documents. first: Destroyer Squadron and last: Lipoxin -[2018-02-13T08:37:24.702] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:24.773] [INFO] cheese - inserting 1000 documents. first: Khattiya Sawasdipol and last: $2 coin -[2018-02-13T08:37:24.804] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Hot Cut-up Pancake & the Grannies on Flying Wheelchairs and last: Wikipedia:Votes for deletion/Julian Aguilar -[2018-02-13T08:37:24.956] [INFO] cheese - inserting 1000 documents. first: Whatever Tomorrow Brings and last: Conception: Ore no Kodomo wo Undekure -[2018-02-13T08:37:24.967] [INFO] cheese - inserting 1000 documents. first: William Reichert and last: Template:Malaysian general election, 1986 -[2018-02-13T08:37:24.979] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:25.005] [INFO] cheese - inserting 1000 documents. first: Discipline (Janet Jackson album) and last: Vente-privee.com -[2018-02-13T08:37:25.009] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:37:25.082] [INFO] cheese - inserting 1000 documents. first: Podocytisus caramanicus and last: Wayne's World 2 (soundtrack) -[2018-02-13T08:37:25.106] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:37:25.114] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:37:25.169] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:37:25.193] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:37:25.287] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Julian Togelius and last: Wikipedia:Votes for deletion/Misoponia -[2018-02-13T08:37:25.307] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T08:37:25.460] [INFO] cheese - inserting 1000 documents. first: Gwydir Castle and last: Cana Island Light -[2018-02-13T08:37:25.524] [INFO] cheese - batch complete in: 0.934 secs -[2018-02-13T08:37:25.558] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Mission of Maitreya, Eternal Divine Path and last: Wikipedia:Votes for deletion/Quartetarian -[2018-02-13T08:37:25.577] [INFO] cheese - batch complete in: 0.27 secs -[2018-02-13T08:37:25.590] [INFO] cheese - inserting 1000 documents. first: Portal:Children's literature/Selected quote/week20 and last: Wikipedia:Featured picture candidates/Three Eras of Houston -[2018-02-13T08:37:25.632] [INFO] cheese - inserting 1000 documents. first: Red Nightmare and last: Cuvette Department -[2018-02-13T08:37:25.638] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:37:25.653] [INFO] cheese - inserting 1000 documents. first: Katie Peretti Snyder and last: Amirdovlat Amasiatsi -[2018-02-13T08:37:25.659] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Files for deletion/2014 April 16 and last: Hyamic languages -[2018-02-13T08:37:25.675] [INFO] cheese - inserting 1000 documents. first: Bashdiza and last: Eric Gast -[2018-02-13T08:37:25.695] [INFO] cheese - inserting 1000 documents. first: Template:Infobox DIN and last: The Yodel Napper! -[2018-02-13T08:37:25.696] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:37:25.710] [INFO] cheese - batch complete in: 0.596 secs -[2018-02-13T08:37:25.717] [INFO] cheese - batch complete in: 0.548 secs -[2018-02-13T08:37:25.726] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:25.777] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:37:25.779] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Quarto do Chefinho and last: Wikipedia:Votes for deletion/Syprus -[2018-02-13T08:37:25.824] [INFO] cheese - batch complete in: 0.247 secs -[2018-02-13T08:37:25.956] [INFO] cheese - inserting 1000 documents. first: Jorge Garcia Carneiro and last: Juana Ramirez -[2018-02-13T08:37:25.962] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Syracuse to Washington, DC flights and last: Wikipedia:Votes for deletion/White-on-black color scheme -[2018-02-13T08:37:25.975] [INFO] cheese - batch complete in: 0.265 secs -[2018-02-13T08:37:25.987] [INFO] cheese - inserting 1000 documents. first: Tea production in the United States and last: Trust companies -[2018-02-13T08:37:25.992] [INFO] cheese - batch complete in: 0.168 secs -[2018-02-13T08:37:26.054] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:26.064] [INFO] cheese - inserting 1000 documents. first: Louisiana Highway 1035-2 and last: Cirák -[2018-02-13T08:37:26.082] [INFO] cheese - inserting 1000 documents. first: Category:IS Open and last: Lionardo da Serzana -[2018-02-13T08:37:26.105] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Volée Air Flight 180 and last: Category:People murdered in Ukraine -[2018-02-13T08:37:26.112] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:37:26.128] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:37:26.167] [INFO] cheese - inserting 1000 documents. first: The Yodel Napper and last: Meet the Press (US TV program) -[2018-02-13T08:37:26.169] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:26.248] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:37:26.308] [INFO] cheese - inserting 1000 documents. first: Co-captain and last: Kashii-Jingu Station -[2018-02-13T08:37:26.346] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/White Nationalist Party and last: Consulate-General of Russia in Shenyang -[2018-02-13T08:37:26.356] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:37:26.403] [INFO] cheese - batch complete in: 0.411 secs -[2018-02-13T08:37:26.422] [INFO] cheese - inserting 1000 documents. first: Tokyo Metro Nanboku Line and last: David B. Pall -[2018-02-13T08:37:26.510] [INFO] cheese - inserting 1000 documents. first: Henri-Edgar Lavigueur and last: Category:Paralympic athletes of Latvia -[2018-02-13T08:37:26.509] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:37:26.549] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:37:26.621] [INFO] cheese - inserting 1000 documents. first: Cakóháza and last: Pokcy -[2018-02-13T08:37:26.705] [INFO] cheese - inserting 1000 documents. first: Kashii-gu and last: Wikipedia:Teahouse/Host lounge/How-to guides/Other -[2018-02-13T08:37:26.725] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Louisa Connolly-Burnham and last: Battle of Kiauneliškis -[2018-02-13T08:37:26.724] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:37:26.744] [INFO] cheese - inserting 1000 documents. first: Draft:Crawshay Bailey, Junior and last: Claudia Wiesemann -[2018-02-13T08:37:26.765] [INFO] cheese - inserting 1000 documents. first: Consulate-General of Russia in Guangzhou and last: Bristol Type 45 Scandinavian Tourer -[2018-02-13T08:37:26.784] [INFO] cheese - inserting 1000 documents. first: Philippines under state of emergency, 2003 and last: Promises (group) -[2018-02-13T08:37:26.788] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:37:26.809] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:26.822] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:37:26.825] [INFO] cheese - batch complete in: 0.577 secs -[2018-02-13T08:37:26.847] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:37:27.122] [INFO] cheese - inserting 1000 documents. first: Category:Paralympic competitors for Latvia and last: Bibliography of Canadian nationalism -[2018-02-13T08:37:27.130] [INFO] cheese - inserting 1000 documents. first: Krugers Woche and last: La Vina, Catamarca -[2018-02-13T08:37:27.159] [INFO] cheese - batch complete in: 0.371 secs -[2018-02-13T08:37:27.164] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:27.200] [INFO] cheese - inserting 1000 documents. first: Zudreitai and last: File:Crackinup.jpg -[2018-02-13T08:37:27.236] [INFO] cheese - inserting 1000 documents. first: Bristol Type 81A Greek Military Tourer and last: File:City of the Daleks.jpg -[2018-02-13T08:37:27.249] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:27.298] [INFO] cheese - batch complete in: 0.489 secs -[2018-02-13T08:37:27.308] [INFO] cheese - inserting 1000 documents. first: R. Syme and last: Faílde -[2018-02-13T08:37:27.311] [INFO] cheese - inserting 1000 documents. first: Uelzen–Stendal railway and last: Aleksandar Ðuric -[2018-02-13T08:37:27.365] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:27.382] [INFO] cheese - inserting 1000 documents. first: Clara Pinto Correia and last: Vincent I. Maduka -[2018-02-13T08:37:27.394] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:37:27.396] [INFO] cheese - inserting 1000 documents. first: Kjersti Plätzer and last: Sebadoh III -[2018-02-13T08:37:27.438] [INFO] cheese - inserting 1000 documents. first: La Vina, Salta and last: A Cry of Peacocks -[2018-02-13T08:37:27.470] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:37:27.493] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:37:27.498] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T08:37:27.557] [INFO] cheese - inserting 1000 documents. first: Lin Qisheng and last: Wikipedia:Articles for deletion/John McGuinness (Irish footballer) -[2018-02-13T08:37:27.638] [INFO] cheese - batch complete in: 0.474 secs -[2018-02-13T08:37:27.786] [INFO] cheese - inserting 1000 documents. first: Mubarak Hashem and last: Wikipedia:Articles for deletion/Skyfex -[2018-02-13T08:37:27.852] [INFO] cheese - inserting 1000 documents. first: Booster (electric power) and last: Super Bowl MVP -[2018-02-13T08:37:27.859] [INFO] cheese - inserting 1000 documents. first: Bundy Ranch standoff and last: Leib Carriage House -[2018-02-13T08:37:27.872] [INFO] cheese - batch complete in: 0.572 secs -[2018-02-13T08:37:27.940] [INFO] cheese - inserting 1000 documents. first: San Rocco alla Lupa, Siena and last: Tomy's Secret -[2018-02-13T08:37:27.954] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Adolf Benda and last: Line 16 (Sao Paulo Metro) -[2018-02-13T08:37:27.956] [INFO] cheese - batch complete in: 0.591 secs -[2018-02-13T08:37:27.983] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:37:28.029] [INFO] cheese - batch complete in: 0.559 secs -[2018-02-13T08:37:28.064] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:37:28.094] [INFO] cheese - inserting 1000 documents. first: Broker, Lewis and last: Maria Magdalene -[2018-02-13T08:37:28.150] [INFO] cheese - inserting 1000 documents. first: Aysgarth Falls and last: List of Italo-Dalmatian languages -[2018-02-13T08:37:28.211] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:37:28.334] [INFO] cheese - inserting 1000 documents. first: List of Bishops and Archbishops of Kraków and last: Iran at the 2008 Summer Paralympics -[2018-02-13T08:37:28.352] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:37:28.411] [INFO] cheese - inserting 1000 documents. first: Line 17 (Sao Paulo Metro) and last: Gong Suo Xin Yu -[2018-02-13T08:37:28.444] [INFO] cheese - inserting 1000 documents. first: Prague 18 and last: Elliott Richards -[2018-02-13T08:37:28.461] [INFO] cheese - batch complete in: 0.397 secs -[2018-02-13T08:37:28.471] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:37:28.478] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:37:28.605] [INFO] cheese - inserting 1000 documents. first: Stade Marocain and last: Overworking -[2018-02-13T08:37:28.622] [INFO] cheese - inserting 1000 documents. first: Al-kitāb al-mukhtaṣar fī ḥisāb al-ğabr wa’l-muqābala and last: Émigrés' billions -[2018-02-13T08:37:28.666] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:37:28.711] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:37:28.759] [INFO] cheese - inserting 1000 documents. first: Luvsjon and last: Mario Gonzalez (footballer) -[2018-02-13T08:37:28.782] [INFO] cheese - inserting 1000 documents. first: El secreto de Tomy and last: Category:Business organizations of Africa -[2018-02-13T08:37:28.808] [INFO] cheese - batch complete in: 0.347 secs -[2018-02-13T08:37:28.834] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:37:28.934] [INFO] cheese - inserting 1000 documents. first: Ryley and last: Category:Albany, New York -[2018-02-13T08:37:28.957] [INFO] cheese - inserting 1000 documents. first: Electoral district of Beeloo and last: Catoptria falsella -[2018-02-13T08:37:28.993] [INFO] cheese - inserting 1000 documents. first: George K. Fraenkel and last: Fishfur -[2018-02-13T08:37:28.992] [INFO] cheese - batch complete in: 0.78 secs -[2018-02-13T08:37:29.009] [INFO] cheese - inserting 1000 documents. first: List of Southern Romance languages and last: Category:1710s deaths -[2018-02-13T08:37:29.016] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:37:29.021] [INFO] cheese - inserting 1000 documents. first: Category:Gaelic games governing bodies in Leinster and last: St Paul-without-the-Walls -[2018-02-13T08:37:29.023] [INFO] cheese - batch complete in: 0.215 secs -[2018-02-13T08:37:29.084] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:37:29.089] [INFO] cheese - batch complete in: 0.737 secs -[2018-02-13T08:37:29.167] [INFO] cheese - inserting 1000 documents. first: Template:Nine Network and last: Rheinmetall 120mm Gun -[2018-02-13T08:37:29.217] [INFO] cheese - inserting 1000 documents. first: Dan Simrell and last: League of Legends Challenger Series North America -[2018-02-13T08:37:29.217] [INFO] cheese - inserting 1000 documents. first: I Know (Luther Vandross song) and last: The Life of Josiah Henson -[2018-02-13T08:37:29.225] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:29.279] [INFO] cheese - batch complete in: 0.445 secs -[2018-02-13T08:37:29.294] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:37:29.318] [INFO] cheese - inserting 1000 documents. first: Miguel Angel Huerta and last: Mildred Gordon (biologist) -[2018-02-13T08:37:29.378] [INFO] cheese - batch complete in: 0.355 secs -[2018-02-13T08:37:29.425] [INFO] cheese - inserting 1000 documents. first: DWS Amsterdam and last: Ludwig South-North line -[2018-02-13T08:37:29.456] [INFO] cheese - inserting 1000 documents. first: File:X^x.jpg and last: Category:Transport in Aberdeen -[2018-02-13T08:37:29.468] [INFO] cheese - inserting 1000 documents. first: A New York Christmas and last: Black River, Nova Scotia (disambiguation) -[2018-02-13T08:37:29.477] [INFO] cheese - batch complete in: 0.46 secs -[2018-02-13T08:37:29.524] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:29.539] [INFO] cheese - batch complete in: 0.455 secs -[2018-02-13T08:37:29.616] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Change-NY and last: Category:Palestine-related articles needing merge action -[2018-02-13T08:37:29.642] [INFO] cheese - inserting 1000 documents. first: Musee des 24 Heures du Mans and last: Charles Turner (water polo) -[2018-02-13T08:37:29.647] [INFO] cheese - inserting 1000 documents. first: 2016–17 UMass Minutemen men's basketball team and last: Morada -[2018-02-13T08:37:29.671] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Belgium in the long nineteenth century and last: Sagittaria pygmaea -[2018-02-13T08:37:29.673] [INFO] cheese - batch complete in: 0.448 secs -[2018-02-13T08:37:29.682] [INFO] cheese - batch complete in: 0.304 secs -[2018-02-13T08:37:29.726] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:37:29.730] [INFO] cheese - batch complete in: 0.436 secs -[2018-02-13T08:37:29.862] [INFO] cheese - inserting 1000 documents. first: Category:1720s deaths and last: Edgar Ende -[2018-02-13T08:37:29.877] [INFO] cheese - inserting 1000 documents. first: John William Woolsey and last: Stigmella kurilensis -[2018-02-13T08:37:29.925] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T08:37:30.044] [INFO] cheese - batch complete in: 0.955 secs -[2018-02-13T08:37:30.047] [INFO] cheese - inserting 1000 documents. first: Alex Burns (footballer) and last: Wikipedia:Articles for deletion/Mardon -[2018-02-13T08:37:30.109] [INFO] cheese - inserting 1000 documents. first: Elmer Angsman and last: File:Warts and All Volume 2.jpg -[2018-02-13T08:37:30.116] [INFO] cheese - inserting 1000 documents. first: Niccolo Barbieri and last: File:KerrieRobertsalbum.jpg -[2018-02-13T08:37:30.139] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:37:30.194] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:37:30.217] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:37:30.225] [INFO] cheese - inserting 1000 documents. first: Comella insularis and last: Laguna Antaccocha -[2018-02-13T08:37:30.300] [INFO] cheese - inserting 1000 documents. first: Decollation and last: Tente (toy) -[2018-02-13T08:37:30.306] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:37:30.327] [INFO] cheese - inserting 1000 documents. first: Category:1603 in the Papal States and last: Angel Perdomo -[2018-02-13T08:37:30.382] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:37:30.398] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:37:30.539] [INFO] cheese - inserting 1000 documents. first: Zyugyul'ba and last: Dzherembel’ -[2018-02-13T08:37:30.544] [INFO] cheese - inserting 1000 documents. first: The New Reign (Warriors) and last: OFK Dunajska Luzna -[2018-02-13T08:37:30.583] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:37:30.606] [INFO] cheese - batch complete in: 0.383 secs -[2018-02-13T08:37:30.658] [INFO] cheese - inserting 1000 documents. first: Zirngibl and last: François Bazin (disambiguation) -[2018-02-13T08:37:30.663] [INFO] cheese - inserting 1000 documents. first: Category:Government-related professional associations and last: File:The-Birth.jpg -[2018-02-13T08:37:30.680] [INFO] cheese - batch complete in: 0.282 secs -[2018-02-13T08:37:30.722] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:37:30.765] [INFO] cheese - inserting 1000 documents. first: Lago Antaccocha and last: Remote (location) -[2018-02-13T08:37:30.782] [INFO] cheese - inserting 1000 documents. first: File:Cephalonia and Ithaca elevation.jpg and last: 2003 NAACP Awards -[2018-02-13T08:37:30.809] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/harishsunshine.tk and last: Pascual Echague -[2018-02-13T08:37:30.820] [INFO] cheese - inserting 1000 documents. first: Canadian Criminal Code and last: Steinrode -[2018-02-13T08:37:30.827] [INFO] cheese - batch complete in: 0.52 secs -[2018-02-13T08:37:30.846] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:37:30.929] [INFO] cheese - batch complete in: 0.323 secs -[2018-02-13T08:37:30.957] [INFO] cheese - inserting 1000 documents. first: Tb/s and last: File:Lovesongscliffrichard.jpg -[2018-02-13T08:37:30.972] [INFO] cheese - batch complete in: 0.928 secs -[2018-02-13T08:37:31.010] [INFO] cheese - inserting 1000 documents. first: Dzherimbel’ and last: Category:Suicides in Idaho -[2018-02-13T08:37:31.025] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:37:31.065] [INFO] cheese - batch complete in: 0.482 secs -[2018-02-13T08:37:31.142] [INFO] cheese - inserting 1000 documents. first: Andrew Beckwith and last: 1915 Michigan State Normal Normalites football team -[2018-02-13T08:37:31.177] [INFO] cheese - inserting 1000 documents. first: Pasi Maattanen and last: Polzanska vas -[2018-02-13T08:37:31.192] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:37:31.216] [INFO] cheese - inserting 1000 documents. first: File:Musashi-Kosugi-Mid-Sky-Tower-2008-05-17.jpg and last: Carmen Fault -[2018-02-13T08:37:31.242] [INFO] cheese - batch complete in: 0.313 secs -[2018-02-13T08:37:31.280] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:37:31.286] [INFO] cheese - inserting 1000 documents. first: 2003 Players' Championship and last: Captive Market (short story) -[2018-02-13T08:37:31.342] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:37:31.368] [INFO] cheese - inserting 1000 documents. first: 2003 Image Awards and last: Wikipedia:Articles for deletion/Goober Adventure -[2018-02-13T08:37:31.486] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:37:31.531] [INFO] cheese - inserting 1000 documents. first: Pompeyo Marquez and last: Miller twist rule -[2018-02-13T08:37:31.578] [INFO] cheese - batch complete in: 0.336 secs -[2018-02-13T08:37:31.610] [INFO] cheese - inserting 1000 documents. first: Jak & Daxter: The Precursor Legacy and last: Darren John Sutherland -[2018-02-13T08:37:31.634] [INFO] cheese - inserting 1000 documents. first: Pappataci fever and last: Greta Von Amburg -[2018-02-13T08:37:31.694] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:37:31.719] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:37:31.737] [INFO] cheese - inserting 1000 documents. first: Periyanayaki Shrine, Thiruvithancode and last: Policía al habla -[2018-02-13T08:37:31.815] [INFO] cheese - inserting 1000 documents. first: Stöckey and last: Ferraz de Vasconcelos -[2018-02-13T08:37:31.820] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:37:31.864] [INFO] cheese - inserting 1000 documents. first: File:American Staffordshire Terrier (Roxy) by Jleon.JPG and last: Mitra contracta -[2018-02-13T08:37:31.890] [INFO] cheese - inserting 1000 documents. first: Rafael Bermudez and last: 2693 BC -[2018-02-13T08:37:31.892] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:37:31.899] [INFO] cheese - batch complete in: 0.619 secs -[2018-02-13T08:37:31.905] [INFO] cheese - inserting 1000 documents. first: Category:VMI Keydets navigational boxes and last: Sangre en el Diván -[2018-02-13T08:37:31.930] [INFO] cheese - batch complete in: 0.352 secs -[2018-02-13T08:37:31.986] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:37:31.998] [INFO] cheese - inserting 1000 documents. first: Photocopying processes and last: Lake Kejimikujik -[2018-02-13T08:37:32.046] [INFO] cheese - batch complete in: 0.327 secs -[2018-02-13T08:37:32.077] [INFO] cheese - inserting 1000 documents. first: Jeremy Scott and last: Net Backup -[2018-02-13T08:37:32.106] [INFO] cheese - inserting 1000 documents. first: Great ice storm and last: Template:ISO 639 name os -[2018-02-13T08:37:32.143] [INFO] cheese - batch complete in: 0.449 secs -[2018-02-13T08:37:32.146] [INFO] cheese - batch complete in: 0.659 secs -[2018-02-13T08:37:32.196] [INFO] cheese - inserting 1000 documents. first: 2694 BC and last: Rosolino Paterno, soldato... -[2018-02-13T08:37:32.226] [INFO] cheese - batch complete in: 0.296 secs -[2018-02-13T08:37:32.248] [INFO] cheese - inserting 1000 documents. first: Category:GAA people from New York (state) and last: Kentucky Route 462 -[2018-02-13T08:37:32.305] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:37:32.356] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article review/1993 Russian constitutional crisis and last: The Rock Road to Dublin -[2018-02-13T08:37:32.391] [INFO] cheese - inserting 1000 documents. first: Jaroslaw Hrycak and last: College Football Playoff National Championship Trophy -[2018-02-13T08:37:32.391] [INFO] cheese - inserting 1000 documents. first: Mitra coronata and last: SS Empire Clyde (1919) -[2018-02-13T08:37:32.400] [INFO] cheese - batch complete in: 0.354 secs -[2018-02-13T08:37:32.453] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:37:32.463] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:37:32.471] [INFO] cheese - inserting 1000 documents. first: Presentation Convent Girls High School and last: Lansing family -[2018-02-13T08:37:32.560] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:37:32.573] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Leutes and last: 2954 BC -[2018-02-13T08:37:32.615] [INFO] cheese - batch complete in: 0.388 secs -[2018-02-13T08:37:32.651] [INFO] cheese - inserting 1000 documents. first: Republican Leader of the United States Senate and last: Mr Potato Head -[2018-02-13T08:37:32.757] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:37:32.767] [INFO] cheese - inserting 1000 documents. first: Middlesbrough Borough Council and last: Isser Zalman Meltzer -[2018-02-13T08:37:33.021] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:37:33.098] [INFO] cheese - inserting 1000 documents. first: El Castillo del Terror (2004) and last: Anna Sethne -[2018-02-13T08:37:33.110] [INFO] cheese - inserting 1000 documents. first: Flight Attendant School and last: The Acolytes -[2018-02-13T08:37:33.139] [INFO] cheese - inserting 1000 documents. first: HD 30834 and last: List of registered historic places in Pennsylvania -[2018-02-13T08:37:33.155] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:37:33.173] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:37:33.201] [INFO] cheese - inserting 1000 documents. first: Thomas Hope (MP for Maidstone) and last: Niobe, Red Deer County, Alberta -[2018-02-13T08:37:33.211] [INFO] cheese - inserting 1000 documents. first: 2955 BC and last: Wikipedia:WikiProject Spam/LinkReports/thesite.org -[2018-02-13T08:37:33.216] [INFO] cheese - inserting 1000 documents. first: Babelomurex stenospinus and last: Ocinebrina piantonii -[2018-02-13T08:37:33.268] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:37:33.283] [INFO] cheese - batch complete in: 0.668 secs -[2018-02-13T08:37:33.318] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:37:33.331] [INFO] cheese - batch complete in: 0.867 secs -[2018-02-13T08:37:33.638] [INFO] cheese - inserting 1000 documents. first: Anna Cathrine Sethne and last: Jōwa (second) -[2018-02-13T08:37:33.669] [INFO] cheese - inserting 1000 documents. first: Portal:Japan/Did you know/11 and last: File:Hunters' Chorus from The Rose of Erin.ogg -[2018-02-13T08:37:33.671] [INFO] cheese - inserting 1000 documents. first: Ocinebrina purpuroidea and last: ḪARSAG -[2018-02-13T08:37:33.672] [INFO] cheese - inserting 1000 documents. first: Vanatori de munte and last: Portal:Latvia/Featured picture/10 -[2018-02-13T08:37:33.674] [INFO] cheese - inserting 1000 documents. first: Instituto Autónomo del Aeropuerto Internacional de Maiquetía and last: Aya takano -[2018-02-13T08:37:33.680] [INFO] cheese - batch complete in: 0.507 secs -[2018-02-13T08:37:33.684] [INFO] cheese - inserting 1000 documents. first: Niobe, Grande Prairie County No. 1, Alberta and last: Callistus Chukwu -[2018-02-13T08:37:33.695] [INFO] cheese - inserting 1000 documents. first: Qazansu river and last: File:Captain Commando Screenshot.png -[2018-02-13T08:37:33.697] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/thesite.org and last: Duminichsky -[2018-02-13T08:37:33.710] [INFO] cheese - batch complete in: 0.379 secs -[2018-02-13T08:37:33.731] [INFO] cheese - batch complete in: 0.576 secs -[2018-02-13T08:37:33.740] [INFO] cheese - batch complete in: 0.422 secs -[2018-02-13T08:37:33.725] [INFO] cheese - batch complete in: 0.457 secs -[2018-02-13T08:37:33.761] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:37:33.787] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:37:33.808] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:37:34.146] [INFO] cheese - inserting 1000 documents. first: Hans Georg Pescher and last: Category:Start-Class Tirana articles -[2018-02-13T08:37:34.160] [INFO] cheese - inserting 1000 documents. first: Jackal (The Day Of The Jackal) and last: Therizinosaurid -[2018-02-13T08:37:34.162] [INFO] cheese - inserting 1000 documents. first: Duminichskiy and last: Sant Sebastia de la Guarda -[2018-02-13T08:37:34.171] [INFO] cheese - inserting 1000 documents. first: Joan Kemp-Welch and last: CerS5 -[2018-02-13T08:37:34.174] [INFO] cheese - inserting 1000 documents. first: Roman Catholic Diocese of Equilio and last: Category:Bird common name disambiguation pages -[2018-02-13T08:37:34.183] [INFO] cheese - inserting 1000 documents. first: Enci and last: Wikipedia:Bots/Requests for approval/Kaspobot 2 -[2018-02-13T08:37:34.186] [INFO] cheese - batch complete in: 0.476 secs -[2018-02-13T08:37:34.210] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:37:34.220] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:37:34.235] [INFO] cheese - batch complete in: 0.555 secs -[2018-02-13T08:37:34.251] [INFO] cheese - batch complete in: 0.464 secs -[2018-02-13T08:37:34.270] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:34.307] [INFO] cheese - inserting 1000 documents. first: Client program and last: CC Chapman -[2018-02-13T08:37:34.359] [INFO] cheese - batch complete in: 0.598 secs -[2018-02-13T08:37:34.455] [INFO] cheese - inserting 1000 documents. first: Scapular of Our Lady of Mount Carmel and last: Haripur district -[2018-02-13T08:37:34.486] [INFO] cheese - inserting 1000 documents. first: Santa Albertina, Sao Paulo, Brazil and last: Category:1935 in Alabama -[2018-02-13T08:37:34.566] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:37:34.575] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:37:34.718] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Profoun education and last: Painted Lady butterflies -[2018-02-13T08:37:34.771] [INFO] cheese - batch complete in: 0.551 secs -[2018-02-13T08:37:34.796] [INFO] cheese - inserting 1000 documents. first: Category:World War I speeches and last: File:Latin kings VTF.jpg -[2018-02-13T08:37:34.804] [INFO] cheese - inserting 1000 documents. first: Golden-rods and last: Karu Diddina Kapuram -[2018-02-13T08:37:34.817] [INFO] cheese - inserting 1000 documents. first: Category:American Battle Monuments Commission and last: Seal of alabama -[2018-02-13T08:37:34.840] [INFO] cheese - inserting 1000 documents. first: Template:User browser:WebKit and last: Music inspired by Watership Down -[2018-02-13T08:37:34.907] [INFO] cheese - batch complete in: 0.672 secs -[2018-02-13T08:37:34.911] [INFO] cheese - batch complete in: 0.725 secs -[2018-02-13T08:37:34.945] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:37:34.960] [INFO] cheese - inserting 1000 documents. first: Sibbarp, Malmo and last: File:Ask the Fish.jpeg -[2018-02-13T08:37:34.980] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:37:34.998] [INFO] cheese - batch complete in: 0.432 secs -[2018-02-13T08:37:35.061] [INFO] cheese - inserting 1000 documents. first: Oradea Transport Local and last: 'Enry the 'Ermit -[2018-02-13T08:37:35.150] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:37:35.302] [INFO] cheese - inserting 1000 documents. first: St. Demetrius' Church, Polican and last: Mevik Chapel -[2018-02-13T08:37:35.325] [INFO] cheese - batch complete in: 0.326 secs -[2018-02-13T08:37:35.377] [INFO] cheese - inserting 1000 documents. first: Hsu Jui-Te and last: Central Ave/Camelback -[2018-02-13T08:37:35.388] [INFO] cheese - inserting 1000 documents. first: Multi-tasking MS-DOS 4.1 and last: Keith Nelson type lifeboat -[2018-02-13T08:37:35.413] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:35.439] [INFO] cheese - inserting 1000 documents. first: List of Uruguayan writers and last: Cedar BRT Line -[2018-02-13T08:37:35.449] [INFO] cheese - inserting 1000 documents. first: Siege of Sebastopol and last: Muskets -[2018-02-13T08:37:35.451] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:37:35.482] [INFO] cheese - batch complete in: 0.537 secs -[2018-02-13T08:37:35.502] [INFO] cheese - inserting 1000 documents. first: Klickitat tribe and last: Mertztown, Pennsylvania -[2018-02-13T08:37:35.519] [INFO] cheese - inserting 1000 documents. first: Utenn and last: Cymbiola intruderi -[2018-02-13T08:37:35.531] [INFO] cheese - batch complete in: 0.956 secs -[2018-02-13T08:37:35.581] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:37:35.614] [INFO] cheese - inserting 1000 documents. first: Stateless society and last: Silver Stadium -[2018-02-13T08:37:35.616] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:37:35.663] [INFO] cheese - inserting 1000 documents. first: SS Acadia (1932) and last: Sebastien Monier -[2018-02-13T08:37:35.695] [INFO] cheese - batch complete in: 0.544 secs -[2018-02-13T08:37:35.729] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:37:35.818] [INFO] cheese - inserting 1000 documents. first: Campbell/Central Ave and last: Wikipedia:Articles for deletion/Marguerite Humeau -[2018-02-13T08:37:35.856] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:37:35.890] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The pocket guide to divorce and last: Meridarchis excisa -[2018-02-13T08:37:35.899] [INFO] cheese - inserting 1000 documents. first: Air Coryell and last: 2007 Road World Championships -[2018-02-13T08:37:35.948] [INFO] cheese - batch complete in: 0.466 secs -[2018-02-13T08:37:35.961] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:36.001] [INFO] cheese - inserting 1000 documents. first: Sebastien-Melchior Cornu and last: Steve Bassett (disambiguation) -[2018-02-13T08:37:36.018] [INFO] cheese - inserting 1000 documents. first: Cymbiola perplicata and last: File:Aviaries Estate and Midland Works, Armley .png -[2018-02-13T08:37:36.046] [INFO] cheese - batch complete in: 0.316 secs -[2018-02-13T08:37:36.047] [INFO] cheese - inserting 1000 documents. first: CJCA (AM) and last: L'Éducation sentimentale -[2018-02-13T08:37:36.088] [INFO] cheese - batch complete in: 0.471 secs -[2018-02-13T08:37:36.113] [INFO] cheese - batch complete in: 0.532 secs -[2018-02-13T08:37:36.190] [INFO] cheese - inserting 1000 documents. first: Network analysis and last: Peter Chen -[2018-02-13T08:37:36.200] [INFO] cheese - inserting 1000 documents. first: Abiodun (Nigeria ruler) and last: Category:Canadian female diplomats -[2018-02-13T08:37:36.216] [INFO] cheese - inserting 1000 documents. first: Frostbiter: Wrath of the Wendigo and last: Wikipedia:MAROC -[2018-02-13T08:37:36.232] [INFO] cheese - inserting 1000 documents. first: The Ultimate Collection (Elektricni Orgazam album) and last: Homoeosoma reliquella -[2018-02-13T08:37:36.246] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:37:36.251] [INFO] cheese - batch complete in: 0.205 secs -[2018-02-13T08:37:36.268] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:37:36.293] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:37:36.426] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:GameGuy95/Who Wants to Be a Millionaire (daytime version) and last: Les Gens du voyage -[2018-02-13T08:37:36.539] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:36.581] [INFO] cheese - inserting 1000 documents. first: Equality Rocks and last: Kunda, India -[2018-02-13T08:37:36.606] [INFO] cheese - inserting 1000 documents. first: International military decoration authorized by the US military and last: 244BC -[2018-02-13T08:37:36.674] [INFO] cheese - inserting 1000 documents. first: Fan Gang and last: Nepticula ceanothi -[2018-02-13T08:37:36.697] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:36.706] [INFO] cheese - batch complete in: 0.593 secs -[2018-02-13T08:37:36.757] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:37:36.952] [INFO] cheese - inserting 1000 documents. first: Mark Esho and last: Category:1872 in British India -[2018-02-13T08:37:37.021] [INFO] cheese - inserting 1000 documents. first: Category:Tram transport in Africa and last: Roderick Norman McIver MacSween -[2018-02-13T08:37:37.024] [INFO] cheese - batch complete in: 0.778 secs -[2018-02-13T08:37:37.098] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:37:37.120] [INFO] cheese - inserting 1000 documents. first: Florida state university college of law and last: G. Trissino -[2018-02-13T08:37:37.171] [INFO] cheese - inserting 1000 documents. first: Bucculatrix ratisbonnensis and last: Church of Saint Nicetas, Moscow -[2018-02-13T08:37:37.177] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:37:37.226] [INFO] cheese - inserting 1000 documents. first: 245BC and last: Westin Westminster -[2018-02-13T08:37:37.235] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:37:37.248] [INFO] cheese - inserting 1000 documents. first: Faustino Asprilla and last: Cellular pathology -[2018-02-13T08:37:37.264] [INFO] cheese - inserting 1000 documents. first: KRPT-FM and last: Turbulent prandtl number -[2018-02-13T08:37:37.288] [INFO] cheese - batch complete in: 0.582 secs -[2018-02-13T08:37:37.325] [INFO] cheese - batch complete in: 0.628 secs -[2018-02-13T08:37:37.366] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:37:37.453] [INFO] cheese - inserting 1000 documents. first: The Last Hurrah (film) and last: A. L. Strang -[2018-02-13T08:37:37.457] [INFO] cheese - inserting 1000 documents. first: Chaworth Brabazon, 6th Earl of Meath and last: Category:July 2016 peer reviews -[2018-02-13T08:37:37.486] [INFO] cheese - batch complete in: 0.387 secs -[2018-02-13T08:37:37.497] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:37:37.525] [INFO] cheese - inserting 1000 documents. first: Tornadoes of 1997 and last: Portal:Indigenous peoples in Canada/Selected picture/5 -[2018-02-13T08:37:37.585] [INFO] cheese - batch complete in: 0.828 secs -[2018-02-13T08:37:37.630] [INFO] cheese - inserting 1000 documents. first: Betts House (Yale University) and last: My Eyes (Blake Shelton Song) -[2018-02-13T08:37:37.665] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Maritime warfare articles by quality/43 and last: Thaang -[2018-02-13T08:37:37.691] [INFO] cheese - batch complete in: 0.456 secs -[2018-02-13T08:37:37.716] [INFO] cheese - batch complete in: 0.428 secs -[2018-02-13T08:37:37.752] [INFO] cheese - inserting 1000 documents. first: Campbell Hill (Logan County, Ohio) and last: William de Soulis -[2018-02-13T08:37:37.800] [INFO] cheese - batch complete in: 0.475 secs -[2018-02-13T08:37:37.840] [INFO] cheese - inserting 1000 documents. first: File:Nathaniel Clifton.jpg and last: Dalaca brunneotincta -[2018-02-13T08:37:37.841] [INFO] cheese - inserting 1000 documents. first: Silver bullion coin and last: File:Qotsabeaversplitcd.jpg -[2018-02-13T08:37:37.871] [INFO] cheese - inserting 1000 documents. first: William James (rugby) and last: Category:Cricket in North West (South African province) -[2018-02-13T08:37:37.876] [INFO] cheese - batch complete in: 0.39 secs -[2018-02-13T08:37:37.926] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:37.939] [INFO] cheese - batch complete in: 0.442 secs -[2018-02-13T08:37:37.971] [INFO] cheese - inserting 1000 documents. first: Canton of Baden and last: Category:Lists of English phrases -[2018-02-13T08:37:38.001] [INFO] cheese - inserting 1000 documents. first: Kazys Ladiga and last: Portal:Furry/Selected comic/3 -[2018-02-13T08:37:38.054] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:37:38.077] [INFO] cheese - batch complete in: 0.361 secs -[2018-02-13T08:37:38.139] [INFO] cheese - inserting 1000 documents. first: Magnolia liliifera and last: Category:2015 in South African rugby union -[2018-02-13T08:37:38.222] [INFO] cheese - inserting 1000 documents. first: Kuzhambu and last: Life on Mars (soundtrack) -[2018-02-13T08:37:38.224] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:38.385] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:37:38.446] [INFO] cheese - inserting 1000 documents. first: ZEN Vision W and last: File:Cavalier King Charles Spaniel puppy.jpg -[2018-02-13T08:37:38.503] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Meetup/Dubai 2 and last: Category:Economy of Kingston upon Hull -[2018-02-13T08:37:38.550] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:38.580] [INFO] cheese - inserting 1000 documents. first: Park Hyun-kon and last: Wikipedia:Sockpuppet investigations/195.224.183.184 -[2018-02-13T08:37:38.596] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:37:38.671] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:37:38.832] [INFO] cheese - inserting 1000 documents. first: Henry Wyndham (1790-1860) and last: Leslie Holdsworth Allen -[2018-02-13T08:37:38.874] [INFO] cheese - inserting 1000 documents. first: William Targ and last: Phil Jones (climatologist) -[2018-02-13T08:37:38.890] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:37:38.898] [INFO] cheese - inserting 1000 documents. first: Copernican cosmology and last: "Crazy" (1991) -[2018-02-13T08:37:38.910] [INFO] cheese - inserting 1000 documents. first: W-curve and last: Robert Biddulph (governor) -[2018-02-13T08:37:38.960] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:38.968] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:37:38.974] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:37:39.054] [INFO] cheese - inserting 1000 documents. first: 50 Number Ones and last: Federal Reserve Bank Building (Boston) -[2018-02-13T08:37:39.081] [INFO] cheese - inserting 1000 documents. first: Serampore Girl's College and last: Vieux-Quebec–Cap-Blanc–colline Parlementaire -[2018-02-13T08:37:39.111] [INFO] cheese - inserting 1000 documents. first: Nahar el-bared and last: Fresh (IDE) -[2018-02-13T08:37:39.122] [INFO] cheese - inserting 1000 documents. first: €2 commemorative coins and last: Zakharovsky Municipal District -[2018-02-13T08:37:39.128] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:37:39.145] [INFO] cheese - batch complete in: 0.549 secs -[2018-02-13T08:37:39.197] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:37:39.231] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:39.357] [INFO] cheese - inserting 1000 documents. first: Música en Compostela and last: File:Rodengo-Saiano-Stemma.png -[2018-02-13T08:37:39.412] [INFO] cheese - batch complete in: 0.452 secs -[2018-02-13T08:37:39.450] [INFO] cheese - inserting 1000 documents. first: FedACH and last: Template:Serbian language -[2018-02-13T08:37:39.457] [INFO] cheese - inserting 1000 documents. first: Forward public school and last: West Zone of Sao Paulo -[2018-02-13T08:37:39.464] [INFO] cheese - inserting 1000 documents. first: St Leonard's Church, Wollaton and last: Hot Choice PPV -[2018-02-13T08:37:39.486] [INFO] cheese - batch complete in: 0.341 secs -[2018-02-13T08:37:39.499] [INFO] cheese - batch complete in: 0.525 secs -[2018-02-13T08:37:39.536] [INFO] cheese - batch complete in: 0.646 secs -[2018-02-13T08:37:39.667] [INFO] cheese - inserting 1000 documents. first: The Greek Coffin Mystery and last: Michael Dixon (museum director) -[2018-02-13T08:37:39.682] [INFO] cheese - inserting 1000 documents. first: Naji Sayed and last: Virupaksha -[2018-02-13T08:37:39.719] [INFO] cheese - batch complete in: 0.522 secs -[2018-02-13T08:37:39.723] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:37:39.771] [INFO] cheese - inserting 1000 documents. first: Asadabad, Firuzabad and last: Zabrde (Priboj) -[2018-02-13T08:37:39.800] [INFO] cheese - inserting 1000 documents. first: Marker (TV Series) and last: IRT 9th Avenue Line -[2018-02-13T08:37:39.807] [INFO] cheese - batch complete in: 0.321 secs -[2018-02-13T08:37:39.884] [INFO] cheese - inserting 1000 documents. first: Template:2009–10 Premier League PFA Team of the Year and last: St Mark's School, Hong Kong -[2018-02-13T08:37:39.964] [INFO] cheese - inserting 1000 documents. first: Gashimov Memorial and last: Faubourg Livaudais -[2018-02-13T08:37:39.973] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:37:39.990] [INFO] cheese - batch complete in: 0.578 secs -[2018-02-13T08:37:40.086] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Funeral Orchestra and last: Brookville Equipment Corporation -[2018-02-13T08:37:40.098] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:37:40.183] [INFO] cheese - inserting 1000 documents. first: 3661 BC and last: Kraco Car Stereo 150 -[2018-02-13T08:37:40.192] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:37:40.208] [INFO] cheese - batch complete in: 0.401 secs -[2018-02-13T08:37:40.238] [INFO] cheese - inserting 1000 documents. first: File:Sherwood tracking drums at Studio Litho, Sept 2015.jpg and last: The Real Story (TV series) -[2018-02-13T08:37:40.240] [INFO] cheese - inserting 1000 documents. first: America's Pulse and last: Ecw tv title -[2018-02-13T08:37:40.310] [INFO] cheese - batch complete in: 0.587 secs -[2018-02-13T08:37:40.351] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:37:40.512] [INFO] cheese - inserting 1000 documents. first: Electric light (illumination) and last: Hacker Craft -[2018-02-13T08:37:40.521] [INFO] cheese - inserting 1000 documents. first: Ake Akerstrom and last: Cigri, Basmakci -[2018-02-13T08:37:40.565] [INFO] cheese - inserting 1000 documents. first: File:Forio-Stemma.gif and last: 3-colourability -[2018-02-13T08:37:40.569] [INFO] cheese - inserting 1000 documents. first: Photobacterium leiognathi and last: Template:Great power diplomacy -[2018-02-13T08:37:40.555] [INFO] cheese - batch complete in: 0.565 secs -[2018-02-13T08:37:40.574] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T08:37:40.602] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/D.S.G Justice and last: Wikipedia:Wikiproject Rational Skepticism -[2018-02-13T08:37:40.626] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:37:40.648] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:37:40.675] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:37:40.753] [INFO] cheese - inserting 1000 documents. first: Meessen De Clercq and last: Holland station -[2018-02-13T08:37:40.809] [INFO] cheese - batch complete in: 0.499 secs -[2018-02-13T08:37:40.814] [INFO] cheese - inserting 1000 documents. first: John Crews and last: Kung-Ekoka language -[2018-02-13T08:37:40.838] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/List of innovative inventions and last: Max Lieberman -[2018-02-13T08:37:40.898] [INFO] cheese - batch complete in: 0.547 secs -[2018-02-13T08:37:40.901] [INFO] cheese - inserting 1000 documents. first: Ers people and last: Wikipedia:WikiProject Spam/Local/globalhds.com -[2018-02-13T08:37:40.919] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:37:40.980] [INFO] cheese - batch complete in: 0.406 secs -[2018-02-13T08:37:41.010] [INFO] cheese - inserting 1000 documents. first: Paraul Morii and last: An Audience With the Cope 2000 -[2018-02-13T08:37:41.042] [INFO] cheese - batch complete in: 0.415 secs -[2018-02-13T08:37:41.087] [INFO] cheese - inserting 1000 documents. first: Saro Segrave Meteor and last: H-Function -[2018-02-13T08:37:41.149] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:37:41.224] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Tim Deegan (meteorologist) and last: Template:GMORFC notice -[2018-02-13T08:37:41.225] [INFO] cheese - inserting 1000 documents. first: U.S. two-dollar bill and last: Bilgoraj County -[2018-02-13T08:37:41.247] [INFO] cheese - inserting 1000 documents. first: Router Solicitation/Router Advertisement and last: Overtornea SK -[2018-02-13T08:37:41.274] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:37:41.291] [INFO] cheese - batch complete in: 0.311 secs -[2018-02-13T08:37:41.301] [INFO] cheese - batch complete in: 0.626 secs -[2018-02-13T08:37:41.338] [INFO] cheese - inserting 1000 documents. first: Let's Go Get Stoned (R&B song) and last: William J. Whalen III -[2018-02-13T08:37:41.352] [INFO] cheese - inserting 1000 documents. first: List of power stations in Myanmar and last: Category:1911 in Arizona Territory -[2018-02-13T08:37:41.386] [INFO] cheese - batch complete in: 0.488 secs -[2018-02-13T08:37:41.408] [INFO] cheese - batch complete in: 0.366 secs -[2018-02-13T08:37:41.589] [INFO] cheese - inserting 1000 documents. first: 3-colouring and last: Terminal services -[2018-02-13T08:37:41.603] [INFO] cheese - inserting 1000 documents. first: Definition of free cultural works and last: Olivella baetica -[2018-02-13T08:37:41.618] [INFO] cheese - inserting 1000 documents. first: TheFacebook and last: Cascading Stylesheets -[2018-02-13T08:37:41.692] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:41.701] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:37:41.742] [INFO] cheese - inserting 1000 documents. first: Oxnered and last: Ityoṗṗya -[2018-02-13T08:37:41.755] [INFO] cheese - inserting 1000 documents. first: Young Lions and last: Bendorf -[2018-02-13T08:37:41.750] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:37:41.797] [INFO] cheese - batch complete in: 0.506 secs -[2018-02-13T08:37:41.818] [INFO] cheese - inserting 1000 documents. first: Category:1863 establishments in Arizona Territory and last: Choreutis pelargodes -[2018-02-13T08:37:41.833] [INFO] cheese - inserting 1000 documents. first: Franz Heritsch and last: Gallant discography -[2018-02-13T08:37:41.843] [INFO] cheese - batch complete in: 0.542 secs -[2018-02-13T08:37:41.891] [INFO] cheese - inserting 1000 documents. first: Kangaroo Creek Reservoir and last: What I Cannot Change -[2018-02-13T08:37:41.918] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:37:41.926] [INFO] cheese - batch complete in: 0.652 secs -[2018-02-13T08:37:42.001] [INFO] cheese - batch complete in: 0.615 secs -[2018-02-13T08:37:42.167] [INFO] cheese - inserting 1000 documents. first: IZBAN A.S. and last: UFC 149 -[2018-02-13T08:37:42.197] [INFO] cheese - batch complete in: 0.4 secs -[2018-02-13T08:37:42.228] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Requests for adminship/SyedNaqvi90 and last: Category:B-Class Australia, New Zealand and South Pacific military history articles -[2018-02-13T08:37:42.281] [INFO] cheese - batch complete in: 0.588 secs -[2018-02-13T08:37:42.371] [INFO] cheese - inserting 1000 documents. first: Hanukkah (Khazar) and last: Film shoot -[2018-02-13T08:37:42.392] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/publicspeakinghelp.info and last: 2014 Liège–Bastogne–Liège -[2018-02-13T08:37:42.410] [INFO] cheese - inserting 1000 documents. first: Foreign eXchange Office and last: Emerson Hart -[2018-02-13T08:37:42.414] [INFO] cheese - batch complete in: 0.413 secs -[2018-02-13T08:37:42.448] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:42.473] [INFO] cheese - batch complete in: 0.63 secs -[2018-02-13T08:37:42.519] [INFO] cheese - inserting 1000 documents. first: Jofra Archer and last: 2015 EU LCS Summer Playoffs -[2018-02-13T08:37:42.536] [INFO] cheese - inserting 1000 documents. first: Lee Clark (footballer) and last: Geoffroy Saint-Hilaire -[2018-02-13T08:37:42.577] [INFO] cheese - inserting 1000 documents. first: Praxis Ethiopia and last: Elias Mudzuri (mayor of Harare) -[2018-02-13T08:37:42.607] [INFO] cheese - batch complete in: 0.68 secs -[2018-02-13T08:37:42.669] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:37:42.668] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:37:42.724] [INFO] cheese - inserting 1000 documents. first: Category:Start-Class Australia, New Zealand and South Pacific military history articles and last: Zimbabwe Exiles Forum -[2018-02-13T08:37:42.779] [INFO] cheese - inserting 1000 documents. first: Professional Master's in Social Sciences and Humanities and last: Louis Francis Costello -[2018-02-13T08:37:42.781] [INFO] cheese - batch complete in: 0.5 secs -[2018-02-13T08:37:42.849] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Africa articles by quality/53 and last: Yekaxana, Gobustan -[2018-02-13T08:37:42.867] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:37:42.943] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:37:42.958] [INFO] cheese - inserting 1000 documents. first: 2014 Bardiani–CSF season and last: Wikipedia:WikiProject Editor Retention/Editor of the Week/Hall of Fame/2014-04-26 -[2018-02-13T08:37:43.038] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:37:43.097] [INFO] cheese - inserting 1000 documents. first: 1975 Chadian coup and last: X-Ray Absorption Edge Spectroscopy -[2018-02-13T08:37:43.144] [INFO] cheese - inserting 1000 documents. first: Draft:Cincinnati Food + Wine Classic and last: Pedestredorcadion lianokladii -[2018-02-13T08:37:43.172] [INFO] cheese - batch complete in: 0.699 secs -[2018-02-13T08:37:43.286] [INFO] cheese - batch complete in: 0.679 secs -[2018-02-13T08:37:43.387] [INFO] cheese - inserting 1000 documents. first: Allegan (meteorite) and last: Three Silent Men -[2018-02-13T08:37:43.394] [INFO] cheese - inserting 1000 documents. first: Stephen Bassett and last: Category:Wikipedia featured topics Alaska class cruisers good content -[2018-02-13T08:37:43.413] [INFO] cheese - inserting 1000 documents. first: List of mammals of Bangladesh and last: Category:Start-Class Nirvana articles -[2018-02-13T08:37:43.488] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:37:43.502] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:37:43.569] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:37:43.617] [INFO] cheese - inserting 1000 documents. first: Geoffroy-Saint-Hilaire and last: Town privileges -[2018-02-13T08:37:43.622] [INFO] cheese - inserting 1000 documents. first: Bogotá Savannah Railway and last: Historical Memory Bill -[2018-02-13T08:37:43.676] [INFO] cheese - inserting 1000 documents. first: Mont Gelé (3518) and last: Ashia -[2018-02-13T08:37:43.708] [INFO] cheese - batch complete in: 0.765 secs -[2018-02-13T08:37:43.734] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:37:43.764] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:37:43.805] [INFO] cheese - inserting 1000 documents. first: Dorian Blues and last: Blank and Jones -[2018-02-13T08:37:43.810] [INFO] cheese - inserting 1000 documents. first: Pedestredorcadion margheritae and last: Hendrick Shnoek -[2018-02-13T08:37:43.861] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:43.885] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:37:44.004] [INFO] cheese - inserting 1000 documents. first: Category:Tourist attractions in Palm Beach County, Florida and last: Embassy of Russia in Havana -[2018-02-13T08:37:44.007] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics Alaska class cruisers featured content and last: Guizhentang Pharmaceutical Company -[2018-02-13T08:37:44.031] [INFO] cheese - inserting 1000 documents. first: Portal:Hawaii/Kokua and last: 1482 in art -[2018-02-13T08:37:44.054] [INFO] cheese - batch complete in: 0.485 secs -[2018-02-13T08:37:44.061] [INFO] cheese - batch complete in: 0.573 secs -[2018-02-13T08:37:44.111] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:37:44.188] [INFO] cheese - inserting 1000 documents. first: 2008 Australian Rally Championship and last: Mitsubishi Caterpillar Forklift America -[2018-02-13T08:37:44.238] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:44.323] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Mathematics/2014 April 21 and last: Book:North American Aviation -[2018-02-13T08:37:44.336] [INFO] cheese - inserting 1000 documents. first: Category:Presidents of the University of North Dakota and last: Category:People from Gaular -[2018-02-13T08:37:44.374] [INFO] cheese - inserting 1000 documents. first: Volodymyr-Volynsky and last: List of members of the Australian House of Representatives -[2018-02-13T08:37:44.390] [INFO] cheese - batch complete in: 0.529 secs -[2018-02-13T08:37:44.397] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:37:44.418] [INFO] cheese - inserting 1000 documents. first: King of Croatia and last: Tony Hawk: American Sk8land -[2018-02-13T08:37:44.479] [INFO] cheese - batch complete in: 0.744 secs -[2018-02-13T08:37:44.479] [INFO] cheese - batch complete in: 0.594 secs -[2018-02-13T08:37:44.596] [INFO] cheese - inserting 1000 documents. first: Andrea Philip and last: Hyacinth Casteneda -[2018-02-13T08:37:44.619] [INFO] cheese - inserting 1000 documents. first: Book:Hoagy Carmichael and last: Law Institute of Lithuania -[2018-02-13T08:37:44.631] [INFO] cheese - inserting 1000 documents. first: New Year Honours 2000 and last: Emile Descombes -[2018-02-13T08:37:44.651] [INFO] cheese - batch complete in: 0.54 secs -[2018-02-13T08:37:44.681] [INFO] cheese - batch complete in: 0.627 secs -[2018-02-13T08:37:44.693] [INFO] cheese - batch complete in: 0.631 secs -[2018-02-13T08:37:44.787] [INFO] cheese - inserting 1000 documents. first: Aviation in the Arctic and last: Under the City -[2018-02-13T08:37:44.818] [INFO] cheese - inserting 1000 documents. first: FC Gold Pride and last: Mason creek -[2018-02-13T08:37:44.951] [INFO] cheese - inserting 1000 documents. first: Category:Torae albums and last: The 1920 Royal Navy Mission to Enzeli -[2018-02-13T08:37:44.953] [INFO] cheese - batch complete in: 0.715 secs -[2018-02-13T08:37:44.963] [INFO] cheese - batch complete in: 0.571 secs -[2018-02-13T08:37:45.029] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:37:45.273] [INFO] cheese - inserting 1000 documents. first: Luna Leopold and last: Portal:Bible/Bible news -[2018-02-13T08:37:45.333] [INFO] cheese - inserting 1000 documents. first: Category:Districts of Vojvodina and last: Kailasam Balachander filmography -[2018-02-13T08:37:45.376] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:37:45.385] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:37:45.426] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom Parliament constituencies (1885–1918) and last: Wikipedia:Suspected sock puppets/86.152.81.41 -[2018-02-13T08:37:45.481] [INFO] cheese - inserting 1000 documents. first: IAFF Fallen Fire Fighters Memorial and last: File:HoodTreason.jpg -[2018-02-13T08:37:45.513] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:37:45.525] [INFO] cheese - inserting 1000 documents. first: Electrode (Pokemon) and last: Category:Source (journalism) -[2018-02-13T08:37:45.535] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:37:45.599] [INFO] cheese - inserting 1000 documents. first: Mason Creek and last: Sergei Ryzhikov -[2018-02-13T08:37:45.638] [INFO] cheese - inserting 1000 documents. first: A város alatt and last: Category:Pagham F.C. players -[2018-02-13T08:37:45.638] [INFO] cheese - batch complete in: 1.159 secs -[2018-02-13T08:37:45.644] [INFO] cheese - inserting 1000 documents. first: Category:Mayors of Kharkiv and last: Mesteacănu River (Strâmbu-Băiuţ) -[2018-02-13T08:37:45.665] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:45.723] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:37:45.736] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:37:45.837] [INFO] cheese - inserting 1000 documents. first: Freewheelers (disambiguation) and last: File:Ferry Corsten - WKND.jpg -[2018-02-13T08:37:45.915] [INFO] cheese - batch complete in: 0.53 secs -[2018-02-13T08:37:46.002] [INFO] cheese - inserting 1000 documents. first: Aoun Al-Sharif Qasim and last: Achilles Alexandrakis -[2018-02-13T08:37:46.068] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/annickpress.com and last: Xenies, Greece -[2018-02-13T08:37:46.080] [INFO] cheese - batch complete in: 0.703 secs -[2018-02-13T08:37:46.122] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:37:46.125] [INFO] cheese - inserting 1000 documents. first: Miereghiţa River and last: File:Missmatch poster.jpg -[2018-02-13T08:37:46.138] [INFO] cheese - inserting 1000 documents. first: Sergey Ryzhikov and last: NHS Health and Social Care Information Centre -[2018-02-13T08:37:46.183] [INFO] cheese - batch complete in: 0.447 secs -[2018-02-13T08:37:46.198] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:46.257] [INFO] cheese - inserting 1000 documents. first: File:XEAM LaMandona1310 logo.png and last: West Texas Normal College -[2018-02-13T08:37:46.276] [INFO] cheese - inserting 1000 documents. first: Category:Manx politicians and last: Tav Falco -[2018-02-13T08:37:46.298] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:37:46.316] [INFO] cheese - inserting 1000 documents. first: FETCH! with Ruff Ruffman and last: Simon Nikolaus von Montjoye-Hirsingen -[2018-02-13T08:37:46.381] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:37:46.382] [INFO] cheese - batch complete in: 0.467 secs -[2018-02-13T08:37:46.385] [INFO] cheese - inserting 1000 documents. first: Saint Motel and last: Apres Vous (2003 film) -[2018-02-13T08:37:46.571] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:37:46.649] [INFO] cheese - inserting 1000 documents. first: Bremgarten West railway station and last: A.K.A. (album) -[2018-02-13T08:37:46.728] [INFO] cheese - inserting 1000 documents. first: Ágios Ioánnis, Kavála and last: Long Range Development Plan (UCSC) -[2018-02-13T08:37:46.773] [INFO] cheese - batch complete in: 0.59 secs -[2018-02-13T08:37:46.826] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:37:46.932] [INFO] cheese - inserting 1000 documents. first: Routing (EDA) and last: HR 1599 -[2018-02-13T08:37:46.969] [INFO] cheese - inserting 1000 documents. first: Oxycanus beltista and last: Commissioners of the great seal -[2018-02-13T08:37:46.971] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:37:47.002] [INFO] cheese - inserting 1000 documents. first: Waterford Tramore Railway and last: Lise Hilboldt -[2018-02-13T08:37:47.082] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Choosing Wisely/American Congress of Obstetricians and Gynecologists watchlist and last: File:目玉焼き.JPG -[2018-02-13T08:37:47.077] [INFO] cheese - batch complete in: 0.997 secs -[2018-02-13T08:37:47.090] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:37:47.159] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:37:47.173] [INFO] cheese - inserting 1000 documents. first: File:Bell and gill at outfest 2008 .jpg and last: Udeghe people -[2018-02-13T08:37:47.222] [INFO] cheese - inserting 1000 documents. first: Powderhall Sprint and last: Kaohsiung Harbor Museum -[2018-02-13T08:37:47.243] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Votes for deletion/Alexander Kapranos and last: Leliwa coat of arms -[2018-02-13T08:37:47.259] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:37:47.337] [INFO] cheese - batch complete in: 0.564 secs -[2018-02-13T08:37:47.370] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:37:47.480] [INFO] cheese - inserting 1000 documents. first: H. B. G. Austin and last: Schenley Bridge -[2018-02-13T08:37:47.545] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:37:47.549] [INFO] cheese - inserting 1000 documents. first: Henderson Lake (New York) and last: Glossary of spirituality-related terms -[2018-02-13T08:37:47.571] [INFO] cheese - inserting 1000 documents. first: Pandora (website) and last: Category:Royal Norwegian Order of Merit -[2018-02-13T08:37:47.624] [INFO] cheese - batch complete in: 0.534 secs -[2018-02-13T08:37:47.664] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:37:47.688] [INFO] cheese - inserting 1000 documents. first: Chionoi and last: 1990 Tour de France, Prologue to Stage 10 -[2018-02-13T08:37:47.730] [INFO] cheese - inserting 1000 documents. first: Fruitdale (VTA) and last: Category:Cities and towns in Chelyabinsk Oblast -[2018-02-13T08:37:47.742] [INFO] cheese - batch complete in: 0.583 secs -[2018-02-13T08:37:47.781] [INFO] cheese - inserting 1000 documents. first: Plocaederus bipartitus and last: People's Republic of Luhansk -[2018-02-13T08:37:47.789] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:47.814] [INFO] cheese - inserting 1000 documents. first: World Trade Center-Metro Manila and last: Yolandi van der Westhuizen -[2018-02-13T08:37:47.848] [INFO] cheese - batch complete in: 0.511 secs -[2018-02-13T08:37:47.876] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:37:48.002] [INFO] cheese - inserting 1000 documents. first: Groupe Mixte d'Intervention and last: Wikipedia:Featured picture candidates/Calvin Johnson (football player) -[2018-02-13T08:37:48.006] [INFO] cheese - inserting 1000 documents. first: Little monocacy river and last: Wikipedia:Votes for deletion/Vigatec (Chile) -[2018-02-13T08:37:48.015] [INFO] cheese - inserting 1000 documents. first: Alexander Ebner and last: Raymond Ndong Sima -[2018-02-13T08:37:48.061] [INFO] cheese - batch complete in: 0.437 secs -[2018-02-13T08:37:48.063] [INFO] cheese - batch complete in: 0.518 secs -[2018-02-13T08:37:48.083] [INFO] cheese - batch complete in: 0.713 secs -[2018-02-13T08:37:48.182] [INFO] cheese - inserting 1000 documents. first: Dr. Linda Baboolal and last: File:Football Manager 2009.jpg -[2018-02-13T08:37:48.213] [INFO] cheese - inserting 1000 documents. first: Timeline of New York City history and last: 1953 Mille Miglia -[2018-02-13T08:37:48.214] [INFO] cheese - inserting 1000 documents. first: Template:Dykn and last: Wikipedia:Sockpuppet investigations/Superkeegan9100/Archive -[2018-02-13T08:37:48.224] [INFO] cheese - batch complete in: 0.56 secs -[2018-02-13T08:37:48.266] [INFO] cheese - batch complete in: 0.417 secs -[2018-02-13T08:37:48.274] [INFO] cheese - inserting 1000 documents. first: Lemonescent and last: Stark and Fulton -[2018-02-13T08:37:48.276] [INFO] cheese - batch complete in: 0.533 secs -[2018-02-13T08:37:48.293] [INFO] cheese - inserting 1000 documents. first: Cypress Hills–Grasslands and last: Template:ISO 3166 code Western Sahara -[2018-02-13T08:37:48.339] [INFO] cheese - batch complete in: 0.55 secs -[2018-02-13T08:37:48.341] [INFO] cheese - batch complete in: 0.465 secs -[2018-02-13T08:37:48.431] [INFO] cheese - inserting 1000 documents. first: Oxycanus goldfinchi and last: Category:Tourist attractions in Fredericton -[2018-02-13T08:37:48.520] [INFO] cheese - inserting 1000 documents. first: Lebanese navy and last: Hiltenfingen -[2018-02-13T08:37:48.585] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:37:48.688] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:37:48.748] [INFO] cheese - inserting 1000 documents. first: Steamtown Heritage Rail Centre and last: Granata sulcifera -[2018-02-13T08:37:48.830] [INFO] cheese - inserting 1000 documents. first: United Cooperative and last: Full Gallop (stage play) -[2018-02-13T08:37:48.831] [INFO] cheese - batch complete in: 0.49 secs -[2018-02-13T08:37:48.846] [INFO] cheese - inserting 1000 documents. first: File:Ganga Bruta.jpg and last: Category:Fortifications in Australia -[2018-02-13T08:37:48.854] [INFO] cheese - inserting 1000 documents. first: U.S. Attorney for the Northern District of Georgia and last: KWR-37 -[2018-02-13T08:37:48.885] [INFO] cheese - batch complete in: 0.618 secs -[2018-02-13T08:37:48.924] [INFO] cheese - inserting 1000 documents. first: Tourism in Georgia (country) and last: Australian aussies -[2018-02-13T08:37:48.933] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:37:48.943] [INFO] cheese - inserting 1000 documents. first: Family dog and last: Vinaroz -[2018-02-13T08:37:48.972] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:37:49.005] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:37:49.086] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:37:49.202] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/finance.flemingeurope.com and last: Upmaa -[2018-02-13T08:37:49.268] [INFO] cheese - batch complete in: 0.683 secs -[2018-02-13T08:37:49.349] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code United Kingdom Casnewydd GB-CNW and last: Template:ISO 3166 code Azerbaijan Samaxi -[2018-02-13T08:37:49.374] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:37:49.470] [INFO] cheese - inserting 1000 documents. first: Graded linear space and last: Category:Alevism -[2018-02-13T08:37:49.477] [INFO] cheese - inserting 1000 documents. first: Category:Royal residences in the London Borough of Richmond upon Thames and last: Draft:Luz-Cristal Sanchez Glangchai -[2018-02-13T08:37:49.509] [INFO] cheese - inserting 1000 documents. first: Furdale, Saskatchewan and last: Fo Guang Shan Temple, Toronto -[2018-02-13T08:37:49.557] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:37:49.583] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:37:49.605] [INFO] cheese - inserting 1000 documents. first: 2008–09 Qatar Stars League and last: Batova river -[2018-02-13T08:37:49.607] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:37:49.622] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Azerbaijan Samux and last: Template:ISO 3166 code Czech Republic Stredoceský kraj -[2018-02-13T08:37:49.689] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:37:49.708] [INFO] cheese - inserting 1000 documents. first: Wakes Cove Provincial Park and last: Introduction to Arithmetic -[2018-02-13T08:37:49.717] [INFO] cheese - batch complete in: 0.712 secs -[2018-02-13T08:37:49.739] [INFO] cheese - inserting 1000 documents. first: The Revenge of the Whore and last: College of Science and Technology (Bhutan) -[2018-02-13T08:37:49.820] [INFO] cheese - inserting 1000 documents. first: KWT-37 and last: Barayev -[2018-02-13T08:37:49.839] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:37:49.851] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:37:49.940] [INFO] cheese - batch complete in: 0.968 secs -[2018-02-13T08:37:49.992] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Czech Republic Central Bohemia and last: Template:ISO 3166 code Italy Chieti -[2018-02-13T08:37:50.062] [INFO] cheese - batch complete in: 0.373 secs -[2018-02-13T08:37:50.093] [INFO] cheese - inserting 1000 documents. first: Ngan Lung and last: Category:Historic districts in Indiana by county -[2018-02-13T08:37:50.142] [INFO] cheese - batch complete in: 0.585 secs -[2018-02-13T08:37:50.163] [INFO] cheese - inserting 1000 documents. first: Alexei Vasilevsky (ice hockey) and last: Timeline of Luxembourg City history -[2018-02-13T08:37:50.239] [INFO] cheese - batch complete in: 0.632 secs -[2018-02-13T08:37:50.304] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Italy Como and last: Template:ISO 3166 code Mexico Chihuahua -[2018-02-13T08:37:50.451] [INFO] cheese - inserting 1000 documents. first: LSIL-1022 and last: File:Analysisdata.jpg -[2018-02-13T08:37:50.458] [INFO] cheese - batch complete in: 0.396 secs -[2018-02-13T08:37:50.600] [INFO] cheese - inserting 1000 documents. first: Oxycanus snelleni and last: Brown Ministry -[2018-02-13T08:37:50.609] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:37:50.613] [INFO] cheese - inserting 1000 documents. first: Batova reka and last: The Song of the Sybil -[2018-02-13T08:37:50.725] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:37:50.751] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Mexico Coahuila and last: Template:ISO 3166 code Russian Federation Smolenskaja Oblast -[2018-02-13T08:37:50.768] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:37:50.928] [INFO] cheese - batch complete in: 0.47 secs -[2018-02-13T08:37:51.026] [INFO] cheese - inserting 1000 documents. first: Blue Ridge Museum and last: Västertorp -[2018-02-13T08:37:51.065] [INFO] cheese - inserting 1000 documents. first: David Nolan (swimmer) and last: File:Zoo Laka Taka.jpg -[2018-02-13T08:37:51.160] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:37:51.163] [INFO] cheese - batch complete in: 1.324 secs -[2018-02-13T08:37:51.343] [INFO] cheese - inserting 1000 documents. first: She Lao and last: 2015 in public domain -[2018-02-13T08:37:51.495] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Russian Federation Stavropol'skiy kray and last: Template:ISO 3166 code Thailand Sakon Nakhon -[2018-02-13T08:37:51.637] [INFO] cheese - inserting 1000 documents. first: Category:Uttar Pradesh MLAs 1997-2002 and last: File:CANDU Direct Heat.jpg -[2018-02-13T08:37:51.717] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:37:51.727] [INFO] cheese - inserting 1000 documents. first: Danio nigrofasciatus and last: George A. Smith -[2018-02-13T08:37:51.749] [INFO] cheese - inserting 1000 documents. first: Dano-Swedish War (1657-1658) and last: The Shires Gateway -[2018-02-13T08:37:51.860] [INFO] cheese - inserting 1000 documents. first: Joffery Douglas Lupul and last: Transitus Mariae -[2018-02-13T08:37:51.864] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:37:51.889] [INFO] cheese - batch complete in: 1.65 secs -[2018-02-13T08:37:51.991] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:37:52.169] [INFO] cheese - batch complete in: 2.228 secs -[2018-02-13T08:37:52.337] [INFO] cheese - batch complete in: 1.728 secs -[2018-02-13T08:37:52.351] [INFO] cheese - inserting 1000 documents. first: Rhine Villa Football Club and last: Paeonia lemoinei -[2018-02-13T08:37:52.377] [INFO] cheese - inserting 1000 documents. first: Template:ISO 3166 code Thailand Samut Prakan and last: Cold-core low -[2018-02-13T08:37:52.452] [INFO] cheese - batch complete in: 0.735 secs -[2018-02-13T08:37:52.548] [INFO] cheese - inserting 1000 documents. first: Romanian-Canadians and last: Alimentation par Sol -[2018-02-13T08:37:52.644] [INFO] cheese - batch complete in: 1.484 secs -[2018-02-13T08:37:52.949] [INFO] cheese - inserting 1000 documents. first: Arabic grammarians and last: Mariette Laenen -[2018-02-13T08:37:53.177] [INFO] cheese - inserting 1000 documents. first: Portal:Jane Austen/Editors and last: Turbonilla acra -[2018-02-13T08:37:52.950] [INFO] cheese - batch complete in: 1.681 secs -[2018-02-13T08:37:53.294] [INFO] cheese - inserting 1000 documents. first: Category:1980 in Haiti and last: Hamdan vs Rumsfeld -[2018-02-13T08:37:53.750] [INFO] cheese - inserting 1000 documents. first: File:Baltimore oriole.ogg and last: File:Melvlog.png -[2018-02-13T08:37:53.770] [INFO] cheese - batch complete in: 1.878 secs -[2018-02-13T08:37:53.913] [INFO] cheese - inserting 1000 documents. first: Communist Party of Turkey 1920 and last: Gino Cassinis -[2018-02-13T08:37:53.937] [INFO] cheese - batch complete in: 1.946 secs -[2018-02-13T08:37:54.029] [INFO] cheese - inserting 1000 documents. first: Litton (disambiguation) and last: Martin-Baker Space Systems -[2018-02-13T08:37:54.056] [INFO] cheese - batch complete in: 2.192 secs -[2018-02-13T08:37:54.348] [INFO] cheese - batch complete in: 2.01 secs -[2018-02-13T08:37:54.414] [INFO] cheese - batch complete in: 1.962 secs -[2018-02-13T08:37:54.522] [INFO] cheese - batch complete in: 1.876 secs -[2018-02-13T08:37:54.720] [INFO] cheese - inserting 1000 documents. first: V. O. Key Jr. and last: Wikipedia:Articles for deletion/Video game proponent -[2018-02-13T08:37:55.869] [INFO] cheese - batch complete in: 3.7 secs -[2018-02-13T08:37:56.504] [INFO] cheese - inserting 1000 documents. first: Territory of Surinam and last: Aythos -[2018-02-13T08:37:56.639] [INFO] cheese - inserting 1000 documents. first: Abstained and last: Trans-activators -[2018-02-13T08:37:56.894] [INFO] cheese - batch complete in: 3.121 secs -[2018-02-13T08:37:56.963] [INFO] cheese - batch complete in: 3.026 secs -[2018-02-13T08:37:57.081] [INFO] cheese - inserting 1000 documents. first: Barrow Park Cenotaph and last: Goran Tosic -[2018-02-13T08:37:57.254] [INFO] cheese - batch complete in: 2.84 secs -[2018-02-13T08:37:57.265] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Article assessment/1980s comedy films/Twins (film) and last: File:Butler elementary arlington tx.jpg -[2018-02-13T08:37:57.459] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Common paradise kingfisher and last: Category:Simon Property Group templates -[2018-02-13T08:37:57.461] [INFO] cheese - inserting 1000 documents. first: File:Crime Story Cast.jpg and last: Small nucleolar RNA snoMBI-87 -[2018-02-13T08:37:57.577] [INFO] cheese - batch complete in: 3.229 secs -[2018-02-13T08:37:57.583] [INFO] cheese - inserting 1000 documents. first: Turbonilla aculeus and last: 1989 in the Philippines -[2018-02-13T08:37:57.867] [INFO] cheese - batch complete in: 4.87 secs -[2018-02-13T08:37:57.997] [INFO] cheese - batch complete in: 3.475 secs -[2018-02-13T08:37:58.220] [INFO] cheese - batch complete in: 4.164 secs -[2018-02-13T08:37:58.410] [INFO] cheese - inserting 1000 documents. first: Sweet Cuppin' Cakes Theme Song and last: Hachijōko-jima -[2018-02-13T08:37:58.522] [INFO] cheese - inserting 1000 documents. first: Category:Olympic table tennis players of Argentina and last: Hart Plain -[2018-02-13T08:37:58.635] [INFO] cheese - inserting 1000 documents. first: Category:Pre-Confederation Ontario and last: Barbara Shinn-Cunningham -[2018-02-13T08:37:58.707] [INFO] cheese - batch complete in: 1.744 secs -[2018-02-13T08:37:58.781] [INFO] cheese - inserting 1000 documents. first: 2010 Volkswagen Jetta TDI Cup and last: P. Marius Andersen -[2018-02-13T08:37:58.888] [INFO] cheese - batch complete in: 1.993 secs -[2018-02-13T08:37:58.901] [INFO] cheese - batch complete in: 3.031 secs -[2018-02-13T08:37:59.132] [INFO] cheese - batch complete in: 1.878 secs -[2018-02-13T08:37:59.506] [INFO] cheese - inserting 1000 documents. first: Peter Jacob and last: Call of Duty World League Season 1 -[2018-02-13T08:37:59.542] [INFO] cheese - inserting 1000 documents. first: Small nucleolar RNA snoR1 and last: Alfred Jones -[2018-02-13T08:37:59.594] [INFO] cheese - inserting 1000 documents. first: Glossary of computers and last: File:From Bessie to Brazil.jpg -[2018-02-13T08:37:59.600] [INFO] cheese - inserting 1000 documents. first: Hachijoko-jima and last: Parc floral et arboré de la Chènevière -[2018-02-13T08:37:59.661] [INFO] cheese - inserting 1000 documents. first: Template:Cell wall disruptive antibiotics and last: Mohammad ElBaradei -[2018-02-13T08:37:59.670] [INFO] cheese - batch complete in: 1.673 secs -[2018-02-13T08:37:59.765] [INFO] cheese - batch complete in: 1.058 secs -[2018-02-13T08:37:59.808] [INFO] cheese - batch complete in: 1.588 secs -[2018-02-13T08:37:59.929] [INFO] cheese - batch complete in: 2.062 secs -[2018-02-13T08:37:59.995] [INFO] cheese - batch complete in: 2.417 secs -[2018-02-13T08:38:00.288] [INFO] cheese - inserting 1000 documents. first: St Peter's Woodlands and last: Category:List-Class Australia, New Zealand and South Pacific military history articles -[2018-02-13T08:38:00.479] [INFO] cheese - inserting 1000 documents. first: Template:AUTP and last: Edwin Tunis -[2018-02-13T08:38:00.478] [INFO] cheese - inserting 1000 documents. first: Category:PlayStation 2 peripherals and last: Ditfurt -[2018-02-13T08:38:00.496] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T08:38:00.782] [INFO] cheese - batch complete in: 1.894 secs -[2018-02-13T08:38:00.727] [INFO] cheese - batch complete in: 1.825 secs -[2018-02-13T08:38:00.905] [INFO] cheese - inserting 1000 documents. first: Call of Duty World League Season 2 and last: Template:User WeChat -[2018-02-13T08:38:01.043] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:38:01.129] [INFO] cheese - inserting 1000 documents. first: Wikipedia:United States Education Program/Courses/Psychology Senior Capstone (Greta Munger)/Timeline and last: Millar Burrows -[2018-02-13T08:38:01.139] [INFO] cheese - inserting 1000 documents. first: Willie Geist and last: U.S. Route 89 in Wyoming -[2018-02-13T08:38:01.267] [INFO] cheese - inserting 1000 documents. first: Peter Van Alstine and last: Straight knee strike -[2018-02-13T08:38:01.307] [INFO] cheese - inserting 1000 documents. first: 1988 West German motorcycle Grand Prix and last: Nye Ver, Nye Boysa -[2018-02-13T08:38:01.383] [INFO] cheese - batch complete in: 1.387 secs -[2018-02-13T08:38:01.538] [INFO] cheese - batch complete in: 1.773 secs -[2018-02-13T08:38:01.583] [INFO] cheese - batch complete in: 1.775 secs -[2018-02-13T08:38:01.680] [INFO] cheese - batch complete in: 1.751 secs -[2018-02-13T08:38:01.823] [INFO] cheese - inserting 1000 documents. first: SDU Ireland and last: List of countries by natural disaster risk -[2018-02-13T08:38:02.011] [INFO] cheese - batch complete in: 1.229 secs -[2018-02-13T08:38:02.021] [INFO] cheese - inserting 1000 documents. first: West Ham United F.C. season 2010-11 and last: El Cóndor, Jujuy -[2018-02-13T08:38:02.091] [INFO] cheese - inserting 1000 documents. first: 10 cm Bubble Chamber (CERN) and last: Pholidota (orchid) -[2018-02-13T08:38:02.218] [INFO] cheese - batch complete in: 1.721 secs -[2018-02-13T08:38:02.224] [INFO] cheese - batch complete in: 1.181 secs -[2018-02-13T08:38:02.663] [INFO] cheese - inserting 1000 documents. first: Laura Dickinson incident and last: Wikipedia:WikiProject Spam/LinkReports/gold10.ru -[2018-02-13T08:38:02.670] [INFO] cheese - inserting 1000 documents. first: EADS SPACE and last: Wikipedia:Votes for deletion/Nejaa Halcyon -[2018-02-13T08:38:02.708] [INFO] cheese - inserting 1000 documents. first: Iritriya and last: Puebla American School Model United Nations -[2018-02-13T08:38:02.712] [INFO] cheese - inserting 1000 documents. first: Eremophila nivea and last: Zonbu -[2018-02-13T08:38:02.735] [INFO] cheese - inserting 1000 documents. first: Act on Petition and last: American Power Boat Association -[2018-02-13T08:38:02.897] [INFO] cheese - batch complete in: 1.314 secs -[2018-02-13T08:38:02.929] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:38:02.923] [INFO] cheese - batch complete in: 2.195 secs -[2018-02-13T08:38:02.972] [INFO] cheese - batch complete in: 1.589 secs -[2018-02-13T08:38:02.915] [INFO] cheese - batch complete in: 1.232 secs -[2018-02-13T08:38:03.224] [INFO] cheese - inserting 1000 documents. first: VOLAGS and last: De la Fonte, Jeanne -[2018-02-13T08:38:03.293] [INFO] cheese - inserting 1000 documents. first: Mr. Right (Website) and last: Template:Did you know nominations/Louis Victor Plessier -[2018-02-13T08:38:03.387] [INFO] cheese - inserting 1000 documents. first: El Talar, Jujuy and last: File:Petersen Sports Complex (logo).png -[2018-02-13T08:38:03.439] [INFO] cheese - batch complete in: 1.428 secs -[2018-02-13T08:38:03.487] [INFO] cheese - batch complete in: 1.263 secs -[2018-02-13T08:38:03.673] [INFO] cheese - batch complete in: 1.455 secs -[2018-02-13T08:38:04.168] [INFO] cheese - inserting 1000 documents. first: Luis Duggan and last: Michael W. D'Arcy -[2018-02-13T08:38:04.213] [INFO] cheese - inserting 1000 documents. first: 1991–92 Japan Ice Hockey League season and last: Category:Musical groups from North Rhine-Westphalia -[2018-02-13T08:38:04.228] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/Australian biota articles by quality/6 and last: Category:List-Class College baseball articles -[2018-02-13T08:38:04.391] [INFO] cheese - batch complete in: 1.415 secs -[2018-02-13T08:38:04.467] [INFO] cheese - inserting 1000 documents. first: Adorée, Renée and last: Wikipedia:Today's articles for improvement/2014/21 -[2018-02-13T08:38:04.518] [INFO] cheese - batch complete in: 1.609 secs -[2018-02-13T08:38:04.628] [INFO] cheese - inserting 1000 documents. first: Category:Alumni of Plumtree School and last: Willie Cross -[2018-02-13T08:38:04.654] [INFO] cheese - batch complete in: 1.724 secs -[2018-02-13T08:38:04.705] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:38:04.779] [INFO] cheese - inserting 1000 documents. first: The Modern (band) and last: Brzeźno Człuchowskie railway station -[2018-02-13T08:38:04.820] [INFO] cheese - inserting 1000 documents. first: Eddie Hart (athlete) and last: Category:1460s births -[2018-02-13T08:38:04.837] [INFO] cheese - batch complete in: 1.35 secs -[2018-02-13T08:38:04.993] [INFO] cheese - batch complete in: 2.078 secs -[2018-02-13T08:38:05.099] [INFO] cheese - inserting 1000 documents. first: Pomroy Township, Minnesota (disambiguation) and last: Portal:Speculative fiction/Possible futures/22 -[2018-02-13T08:38:05.156] [INFO] cheese - batch complete in: 2.233 secs -[2018-02-13T08:38:05.363] [INFO] cheese - batch complete in: 1.689 secs -[2018-02-13T08:38:05.692] [INFO] cheese - inserting 1000 documents. first: Jacob Tostrup and last: AICA ribonucleotide -[2018-02-13T08:38:05.745] [INFO] cheese - inserting 1000 documents. first: Ergon (Australia) and last: Wikipedia:WikiProject Spam/LinkReports/avoiceformen.org -[2018-02-13T08:38:05.805] [INFO] cheese - inserting 1000 documents. first: Interstate 80N (Oregon-Idaho-Utah) and last: Category:1878 establishments in Ottoman Syria -[2018-02-13T08:38:05.814] [INFO] cheese - batch complete in: 1.422 secs -[2018-02-13T08:38:05.860] [INFO] cheese - inserting 1000 documents. first: Elasticity of complementarity and last: Halls (department store) -[2018-02-13T08:38:05.899] [INFO] cheese - batch complete in: 1.381 secs -[2018-02-13T08:38:06.017] [INFO] cheese - batch complete in: 1.312 secs -[2018-02-13T08:38:06.085] [INFO] cheese - batch complete in: 1.431 secs -[2018-02-13T08:38:06.104] [INFO] cheese - inserting 1000 documents. first: Indiana Veterans’ Home and last: Category:Streets in Contra Costa County, California -[2018-02-13T08:38:06.269] [INFO] cheese - inserting 1000 documents. first: Henrique Arlindo Etges and last: Samuele Modica -[2018-02-13T08:38:06.271] [INFO] cheese - batch complete in: 1.434 secs -[2018-02-13T08:38:06.392] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:38:06.432] [INFO] cheese - inserting 1000 documents. first: Factor X deficiency, congenital and last: Ferrocarriles Nacionales de México -[2018-02-13T08:38:06.632] [INFO] cheese - batch complete in: 1.639 secs -[2018-02-13T08:38:06.843] [INFO] cheese - inserting 1000 documents. first: Category:1460s deaths and last: Warnia coat of arms -[2018-02-13T08:38:06.930] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/William K. Meade and last: Places of Interest in Pandacan -[2018-02-13T08:38:06.953] [INFO] cheese - inserting 1000 documents. first: Aminoimidazole carboxamide ribonucleotide and last: Gamal Abdel-Hameed -[2018-02-13T08:38:07.109] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:38:07.109] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:38:07.113] [INFO] cheese - batch complete in: 1.957 secs -[2018-02-13T08:38:07.126] [INFO] cheese - inserting 1000 documents. first: Lost Spirits and last: Filippo Cansacchi -[2018-02-13T08:38:07.175] [INFO] cheese - inserting 1000 documents. first: W. Ben Hunt Cabin and last: Category:Pfeiffer University -[2018-02-13T08:38:07.197] [INFO] cheese - inserting 1000 documents. first: List of United Kingdom by-elections (1979 - 2010) and last: CHKG -[2018-02-13T08:38:07.247] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:38:07.292] [INFO] cheese - batch complete in: 1.393 secs -[2018-02-13T08:38:07.380] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:38:07.541] [INFO] cheese - inserting 1000 documents. first: Nineteen Stories and last: Here Not There -[2018-02-13T08:38:07.665] [INFO] cheese - inserting 1000 documents. first: Kesagatame and last: Tailwhip air -[2018-02-13T08:38:07.695] [INFO] cheese - batch complete in: 1.303 secs -[2018-02-13T08:38:07.785] [INFO] cheese - batch complete in: 1.152 secs -[2018-02-13T08:38:07.985] [INFO] cheese - inserting 1000 documents. first: Portal:Animation/Selected biography/29 and last: Northwestern Crow -[2018-02-13T08:38:08.037] [INFO] cheese - inserting 1000 documents. first: HNLMS Gouden Leeuw and last: Rendiconti di Matematica e delle sue Applicazioni -[2018-02-13T08:38:08.068] [INFO] cheese - inserting 1000 documents. first: HMS Nile and last: Pontoon Stand -[2018-02-13T08:38:08.108] [INFO] cheese - batch complete in: 0.999 secs -[2018-02-13T08:38:08.112] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Version 1.0 Editorial Team/New Jersey articles by quality/9 and last: Tictaalic -[2018-02-13T08:38:08.141] [INFO] cheese - inserting 1000 documents. first: Batrachiderpeton reticulatum and last: Adolescents and food marketing -[2018-02-13T08:38:08.186] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:38:08.230] [INFO] cheese - batch complete in: 1.121 secs -[2018-02-13T08:38:08.239] [INFO] cheese - batch complete in: 0.859 secs -[2018-02-13T08:38:08.279] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:38:08.443] [INFO] cheese - inserting 1000 documents. first: Howard 'Howdy' Quicksell and last: German destroyer Z43 -[2018-02-13T08:38:08.472] [INFO] cheese - inserting 1000 documents. first: Kiss My Grass: A Hillbilly Tribute to Kiss and last: FURB -[2018-02-13T08:38:08.552] [INFO] cheese - batch complete in: 0.856 secs -[2018-02-13T08:38:08.615] [INFO] cheese - batch complete in: 1.502 secs -[2018-02-13T08:38:08.731] [INFO] cheese - inserting 1000 documents. first: Suresh Angadi and last: Jebus (disambiguation) -[2018-02-13T08:38:08.840] [INFO] cheese - batch complete in: 1.055 secs -[2018-02-13T08:38:08.938] [INFO] cheese - inserting 1000 documents. first: Tiktaalic and last: Via Montenapoleone (film) -[2018-02-13T08:38:08.970] [INFO] cheese - inserting 1000 documents. first: Category:Online retailers of the United Arab Emirates and last: Nadja Sellrup -[2018-02-13T08:38:09.046] [INFO] cheese - inserting 1000 documents. first: File:Cloudinary - Official logo.svg and last: Giampiero Iatteri -[2018-02-13T08:38:09.125] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:38:09.130] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:38:09.209] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:38:09.265] [INFO] cheese - inserting 1000 documents. first: Joseph Rorke and last: Anatoli Fedotov -[2018-02-13T08:38:09.371] [INFO] cheese - batch complete in: 1.141 secs -[2018-02-13T08:38:09.462] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Northern California Solar Regatta and last: Template:Did you know nominations/Battle of Burton Bridge (1322) -[2018-02-13T08:38:09.533] [INFO] cheese - inserting 1000 documents. first: Polymelus and last: Polena -[2018-02-13T08:38:09.660] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:38:09.669] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:38:09.823] [INFO] cheese - inserting 1000 documents. first: Aalborg BK and last: Monno -[2018-02-13T08:38:09.833] [INFO] cheese - inserting 1000 documents. first: Yasukazu Ikari and last: List of aircraft (Ci) -[2018-02-13T08:38:09.877] [INFO] cheese - inserting 1000 documents. first: Category:Estonian biologists and last: Gawen Lawrie -[2018-02-13T08:38:09.923] [INFO] cheese - batch complete in: 0.714 secs -[2018-02-13T08:38:09.992] [INFO] cheese - batch complete in: 1.375 secs -[2018-02-13T08:38:10.083] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:38:10.184] [INFO] cheese - inserting 1000 documents. first: Magelungen and last: Ayrılık Zor -[2018-02-13T08:38:10.221] [INFO] cheese - inserting 1000 documents. first: The Word Magazine and last: Hørning municipality -[2018-02-13T08:38:10.242] [INFO] cheese - inserting 1000 documents. first: File:Trust a Try.ogg and last: Packard Campus for Audio-Visual Conservation -[2018-02-13T08:38:10.319] [INFO] cheese - batch complete in: 1.189 secs -[2018-02-13T08:38:10.364] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:38:10.382] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:38:10.415] [INFO] cheese - inserting 1000 documents. first: Watut languages and last: Category:1530s establishments in Ireland -[2018-02-13T08:38:10.521] [INFO] cheese - batch complete in: 0.852 secs -[2018-02-13T08:38:10.594] [INFO] cheese - inserting 1000 documents. first: Poleto and last: Aleyski Raion -[2018-02-13T08:38:10.678] [INFO] cheese - inserting 1000 documents. first: Marie Ann Battiste and last: 1959 Honduran Amateur League -[2018-02-13T08:38:10.709] [INFO] cheese - batch complete in: 1.049 secs -[2018-02-13T08:38:10.828] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:38:10.995] [INFO] cheese - inserting 1000 documents. first: Master (judiciary) and last: Song Suk-woo -[2018-02-13T08:38:11.083] [INFO] cheese - inserting 1000 documents. first: Hvorslev municipality and last: Knockouts haircuts for men -[2018-02-13T08:38:11.103] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:38:11.110] [INFO] cheese - inserting 1000 documents. first: Category:Works by Simon Kinberg and last: Canarium grandiflorum -[2018-02-13T08:38:11.150] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:38:11.164] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:38:11.266] [INFO] cheese - inserting 1000 documents. first: James Stanhope, 7th Earl Stanhope and last: Sineus and Truvor -[2018-02-13T08:38:11.353] [INFO] cheese - inserting 1000 documents. first: Promise Not to Tell and last: Inosinate -[2018-02-13T08:38:11.390] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/cellphonesnationwide.com and last: Ariel Amaya -[2018-02-13T08:38:11.401] [INFO] cheese - batch complete in: 1.409 secs -[2018-02-13T08:38:11.539] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:38:11.646] [INFO] cheese - batch complete in: 1.125 secs -[2018-02-13T08:38:11.740] [INFO] cheese - inserting 1000 documents. first: Georgi Kirkov and last: Željko Perović -[2018-02-13T08:38:11.807] [INFO] cheese - inserting 1000 documents. first: Ban Du, Chiang Rai and last: ACyS -[2018-02-13T08:38:11.870] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:38:12.015] [INFO] cheese - batch complete in: 1.306 secs -[2018-02-13T08:38:12.134] [INFO] cheese - inserting 1000 documents. first: Ghaffur and last: Pudukkottai State -[2018-02-13T08:38:12.257] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:38:12.267] [INFO] cheese - inserting 1000 documents. first: Teeth & Tongue and last: Wikipedia:Turkish -[2018-02-13T08:38:12.321] [INFO] cheese - inserting 1000 documents. first: Lashar and last: Thornton, New York -[2018-02-13T08:38:12.392] [INFO] cheese - batch complete in: 1.227 secs -[2018-02-13T08:38:12.411] [INFO] cheese - inserting 1000 documents. first: Mirrodin (plane) and last: Eurasian Turtle-Dove -[2018-02-13T08:38:12.498] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:38:12.543] [INFO] cheese - inserting 1000 documents. first: File:1906 (Bambata album).jpg and last: Category:1680s in Portugal -[2018-02-13T08:38:12.603] [INFO] cheese - batch complete in: 1.5 secs -[2018-02-13T08:38:12.711] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:38:12.937] [INFO] cheese - inserting 1000 documents. first: Moissaye J. Olgin and last: Triaxomera griseolella -[2018-02-13T08:38:12.984] [INFO] cheese - inserting 1000 documents. first: Baron de Hirsch Cemetery, Halifax and last: Dassera -[2018-02-13T08:38:13.004] [INFO] cheese - inserting 1000 documents. first: St Christopher's Cathedral, Manuka and last: Category:Political office-holders in Iowa -[2018-02-13T08:38:13.048] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:38:13.127] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:38:13.218] [INFO] cheese - batch complete in: 1.817 secs -[2018-02-13T08:38:13.282] [INFO] cheese - inserting 1000 documents. first: Afghan Civil War (disambiguation) and last: File:JSFulton1979.tif -[2018-02-13T08:38:13.301] [INFO] cheese - inserting 1000 documents. first: Counting tube and last: Beverly Hills Cop 4 -[2018-02-13T08:38:13.334] [INFO] cheese - inserting 1000 documents. first: J. C. Massee and last: Pak Se Ri -[2018-02-13T08:38:13.372] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:38:13.478] [INFO] cheese - batch complete in: 0.979 secs -[2018-02-13T08:38:13.496] [INFO] cheese - batch complete in: 1.239 secs -[2018-02-13T08:38:13.594] [INFO] cheese - inserting 1000 documents. first: White rain lily and last: Shen Tan Di Renjie -[2018-02-13T08:38:13.621] [INFO] cheese - inserting 1000 documents. first: Gostivari and last: Styl Kar -[2018-02-13T08:38:13.771] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:38:13.813] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:38:14.176] [INFO] cheese - inserting 1000 documents. first: Waretini and last: Lucien Dirksz -[2018-02-13T08:38:14.214] [INFO] cheese - inserting 1000 documents. first: Language A Key Mechanism of Control and last: Lockheed AT-18 -[2018-02-13T08:38:14.231] [INFO] cheese - inserting 1000 documents. first: In the Name of Metal (disambiguation) and last: Erik–Michael Estrada -[2018-02-13T08:38:14.224] [INFO] cheese - batch complete in: 1.096 secs -[2018-02-13T08:38:14.349] [INFO] cheese - batch complete in: 1.301 secs -[2018-02-13T08:38:14.460] [INFO] cheese - batch complete in: 1.087 secs -[2018-02-13T08:38:14.571] [INFO] cheese - inserting 1000 documents. first: Category:Synagogues in Bosnia and Herzegovina and last: Little Sark -[2018-02-13T08:38:14.643] [INFO] cheese - inserting 1000 documents. first: Visions of Jesus Christ and last: Morane-Saulnier AF -[2018-02-13T08:38:14.725] [INFO] cheese - inserting 1000 documents. first: Eishō (Muromachi period) and last: Nottingham Girls' High School -[2018-02-13T08:38:14.738] [INFO] cheese - batch complete in: 1.26 secs -[2018-02-13T08:38:14.789] [INFO] cheese - batch complete in: 1.293 secs -[2018-02-13T08:38:14.950] [INFO] cheese - batch complete in: 1.732 secs -[2018-02-13T08:38:15.195] [INFO] cheese - inserting 1000 documents. first: Geoff Chilvers and last: Latin Grammy Award for Best Urban Performance -[2018-02-13T08:38:15.219] [INFO] cheese - inserting 1000 documents. first: File:England-Saint-Michaels-Mount-1900-1.jpg and last: Wikipedia:3rrn -[2018-02-13T08:38:15.301] [INFO] cheese - inserting 1000 documents. first: Onnum and last: Category:My Dying Bride live albums -[2018-02-13T08:38:15.309] [INFO] cheese - inserting 1000 documents. first: Vasily Kalika and last: Lawrence's Thrush -[2018-02-13T08:38:15.328] [INFO] cheese - batch complete in: 1.104 secs -[2018-02-13T08:38:15.460] [INFO] cheese - batch complete in: 1.678 secs -[2018-02-13T08:38:15.513] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:38:15.545] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:38:15.595] [INFO] cheese - inserting 1000 documents. first: Trail Smoke Eaters and last: EBaumsWorld -[2018-02-13T08:38:15.805] [INFO] cheese - inserting 1000 documents. first: Fritz Spengler and last: List of diplomatic missions of Guyana -[2018-02-13T08:38:15.829] [INFO] cheese - batch complete in: 2.016 secs -[2018-02-13T08:38:15.839] [INFO] cheese - inserting 1000 documents. first: Liberty and Justice for... and last: Wikipedia:MCD -[2018-02-13T08:38:15.889] [INFO] cheese - batch complete in: 1.151 secs -[2018-02-13T08:38:15.985] [INFO] cheese - batch complete in: 1.196 secs -[2018-02-13T08:38:16.172] [INFO] cheese - inserting 1000 documents. first: Art clay silver and last: South Vacherie -[2018-02-13T08:38:16.272] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Merge articles and last: Pauline Beale and Arthur Fowler -[2018-02-13T08:38:16.308] [INFO] cheese - inserting 1000 documents. first: Template:2000-01 NBA Midwest standings and last: Voices in My Head (Dot Rotten album) -[2018-02-13T08:38:16.334] [INFO] cheese - inserting 1000 documents. first: Category:Mystery characters and last: Wikipedia:WikiProject Wikipack Africa Content/Wikipedia:NPOV -[2018-02-13T08:38:16.351] [INFO] cheese - batch complete in: 1.401 secs -[2018-02-13T08:38:16.396] [INFO] cheese - batch complete in: 1.068 secs -[2018-02-13T08:38:16.438] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:38:16.552] [INFO] cheese - batch complete in: 1.092 secs -[2018-02-13T08:38:16.602] [INFO] cheese - inserting 1000 documents. first: Category:My Dying Bride compilation albums and last: Guantanamo detainee 058 -[2018-02-13T08:38:16.713] [INFO] cheese - batch complete in: 1.168 secs -[2018-02-13T08:38:16.798] [INFO] cheese - inserting 1000 documents. first: TEA Laser and last: We Gon' Ride -[2018-02-13T08:38:16.825] [INFO] cheese - inserting 1000 documents. first: File:Uptown Anthem.jpg and last: 2008–09 ISU Speed Skating World Cup – World Cup 2 -[2018-02-13T08:38:16.828] [INFO] cheese - inserting 1000 documents. first: Category:1993 in horse racing and last: Cmuwest -[2018-02-13T08:38:16.977] [INFO] cheese - batch complete in: 1.148 secs -[2018-02-13T08:38:17.056] [INFO] cheese - batch complete in: 1.071 secs -[2018-02-13T08:38:17.120] [INFO] cheese - batch complete in: 1.231 secs -[2018-02-13T08:38:17.394] [INFO] cheese - inserting 1000 documents. first: Mohamed Albuflasa and last: Küçükçekmece, İstanbul -[2018-02-13T08:38:17.446] [INFO] cheese - inserting 1000 documents. first: 1962 TCU Horned Frogs football team and last: Philadelphia sound -[2018-02-13T08:38:17.586] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:38:17.591] [INFO] cheese - inserting 1000 documents. first: Patricia Tallman and last: Gen (Street Fighter) -[2018-02-13T08:38:17.601] [INFO] cheese - inserting 1000 documents. first: Extended BASIC-86 and last: Ballarat Regional Soccer Facility -[2018-02-13T08:38:17.600] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:38:17.788] [INFO] cheese - batch complete in: 1.437 secs -[2018-02-13T08:38:17.837] [INFO] cheese - batch complete in: 1.399 secs -[2018-02-13T08:38:17.862] [INFO] cheese - inserting 1000 documents. first: Drops of Jupiter (song) and last: Category:Jordanian people of Iranian descent -[2018-02-13T08:38:17.934] [INFO] cheese - inserting 1000 documents. first: Category:Pilgrimage routes and last: Pir Double Shah -[2018-02-13T08:38:18.055] [INFO] cheese - inserting 1000 documents. first: Kana Cone and last: Category:British Merchant Navy -[2018-02-13T08:38:18.121] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:38:18.171] [INFO] cheese - inserting 1000 documents. first: Leo III (emperor) and last: D1GP -[2018-02-13T08:38:18.183] [INFO] cheese - batch complete in: 1.468 secs -[2018-02-13T08:38:18.218] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:38:18.336] [INFO] cheese - batch complete in: 1.359 secs -[2018-02-13T08:38:18.475] [INFO] cheese - inserting 1000 documents. first: Sweet Shells and last: Vuelta a los Pirineos -[2018-02-13T08:38:18.589] [INFO] cheese - batch complete in: 0.989 secs -[2018-02-13T08:38:18.708] [INFO] cheese - inserting 1000 documents. first: Côme-Séraphin Cherrier and last: Playatmcd.com -[2018-02-13T08:38:18.805] [INFO] cheese - inserting 1000 documents. first: TEKDOS and last: I Am the Last of All the Field That Fell: A Channel -[2018-02-13T08:38:18.853] [INFO] cheese - batch complete in: 1.267 secs -[2018-02-13T08:38:18.983] [INFO] cheese - batch complete in: 1.146 secs -[2018-02-13T08:38:19.019] [INFO] cheese - inserting 1000 documents. first: Category:Administrative okrugs of Moscow and last: Kristine Roepstorff -[2018-02-13T08:38:19.169] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:19.257] [INFO] cheese - inserting 1000 documents. first: Philippe de l'Espinoy and last: 1953 New York Yankees season -[2018-02-13T08:38:19.272] [INFO] cheese - inserting 1000 documents. first: Wikipedia:OLYMOSNAT and last: Irving Kriesberg -[2018-02-13T08:38:19.329] [INFO] cheese - inserting 1000 documents. first: Digimon Adventure and last: Medium of instruction -[2018-02-13T08:38:19.345] [INFO] cheese - inserting 1000 documents. first: Mona Lisa Overdrive (album) and last: Bucket of Blood -[2018-02-13T08:38:19.337] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:38:19.409] [INFO] cheese - inserting 1000 documents. first: Susan Ryan Peters and last: Mainland U.S. -[2018-02-13T08:38:19.419] [INFO] cheese - batch complete in: 1.201 secs -[2018-02-13T08:38:19.469] [INFO] cheese - batch complete in: 1.681 secs -[2018-02-13T08:38:19.491] [INFO] cheese - batch complete in: 1.155 secs -[2018-02-13T08:38:19.502] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:38:19.663] [INFO] cheese - inserting 1000 documents. first: Willie Steenson and last: GUU (disambiguation) -[2018-02-13T08:38:19.742] [INFO] cheese - batch complete in: 0.889 secs -[2018-02-13T08:38:19.758] [INFO] cheese - inserting 1000 documents. first: Joachim Heinz Ehrig and last: Rolf von Goth -[2018-02-13T08:38:19.858] [INFO] cheese - batch complete in: 0.874 secs -[2018-02-13T08:38:19.936] [INFO] cheese - inserting 1000 documents. first: 2007 UCI Track Cycling World Championships – Women's Team Sprint and last: Category:Wildfires in North Carolina -[2018-02-13T08:38:20.065] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:38:20.170] [INFO] cheese - inserting 1000 documents. first: List of members of the Swiss National Council and last: Wendelin Endrédy -[2018-02-13T08:38:20.269] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:38:20.307] [INFO] cheese - inserting 1000 documents. first: Département Protection Sécurité and last: The Frackles -[2018-02-13T08:38:20.410] [INFO] cheese - inserting 1000 documents. first: Achitophel (disambiguation) and last: Samuel Adams (composer) -[2018-02-13T08:38:20.414] [INFO] cheese - inserting 1000 documents. first: Category:1868 ballet premieres and last: Portal:Karachi/Karachi Topics -[2018-02-13T08:38:20.545] [INFO] cheese - inserting 1000 documents. first: New South Wales Xplorer and last: Nevada class battleships -[2018-02-13T08:38:20.554] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:38:20.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Log/2014 May 14 and last: File:Have a Nice Day, Volume 21.jpg -[2018-02-13T08:38:20.610] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:38:20.681] [INFO] cheese - inserting 1000 documents. first: Olt county and last: Basilicas -[2018-02-13T08:38:20.688] [INFO] cheese - batch complete in: 1.269 secs -[2018-02-13T08:38:20.727] [INFO] cheese - batch complete in: 1.39 secs -[2018-02-13T08:38:20.856] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:38:20.965] [INFO] cheese - batch complete in: 1.496 secs -[2018-02-13T08:38:21.179] [INFO] cheese - inserting 1000 documents. first: Jerome Corsi and last: Syrid -[2018-02-13T08:38:21.300] [INFO] cheese - batch complete in: 1.235 secs -[2018-02-13T08:38:21.319] [INFO] cheese - inserting 1000 documents. first: Luis Guzman (disambiguation) and last: Ida Proper -[2018-02-13T08:38:21.353] [INFO] cheese - inserting 1000 documents. first: Malappuram Collectorate and last: SimCity (remake) -[2018-02-13T08:38:21.435] [INFO] cheese - batch complete in: 1.166 secs -[2018-02-13T08:38:21.434] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:38:21.480] [INFO] cheese - inserting 1000 documents. first: Zhu Fatai and last: Portal:American football/Quotes/23 -[2018-02-13T08:38:21.617] [INFO] cheese - inserting 1000 documents. first: Mr. Probz and last: Category:1941 establishments in Burma -[2018-02-13T08:38:21.619] [INFO] cheese - batch complete in: 0.892 secs -[2018-02-13T08:38:21.709] [INFO] cheese - inserting 1000 documents. first: 1925 in baseball and last: Mount St. Mary's (disambiguation) -[2018-02-13T08:38:21.721] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:38:21.770] [INFO] cheese - inserting 1000 documents. first: F-68 and last: Folgerite -[2018-02-13T08:38:21.833] [INFO] cheese - batch complete in: 1.223 secs -[2018-02-13T08:38:21.870] [INFO] cheese - batch complete in: 1.182 secs -[2018-02-13T08:38:21.949] [INFO] cheese - inserting 1000 documents. first: Category:1474 births and last: Cléo de Merode -[2018-02-13T08:38:21.989] [INFO] cheese - inserting 1000 documents. first: Lafayette Daily Advertiser and last: Khet Yan Nawa -[2018-02-13T08:38:22.038] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:38:22.094] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:38:22.125] [INFO] cheese - inserting 1000 documents. first: Category:1960s establishments in Liechtenstein and last: Angano... Angano... nouvelles de Madagascar -[2018-02-13T08:38:22.142] [INFO] cheese - inserting 1000 documents. first: Ooyala (film) and last: Chaetosphaeridiales -[2018-02-13T08:38:22.252] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:38:22.250] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:38:22.491] [INFO] cheese - inserting 1000 documents. first: Khyber (Hunza) and last: Hardware cloth -[2018-02-13T08:38:22.554] [INFO] cheese - inserting 1000 documents. first: Category:GA-Class Regional and national music articles and last: Category:Uruguayan academics -[2018-02-13T08:38:22.561] [INFO] cheese - inserting 1000 documents. first: Category:Ski areas and resorts in Norway and last: First nation -[2018-02-13T08:38:22.582] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:38:22.691] [INFO] cheese - batch complete in: 0.858 secs -[2018-02-13T08:38:22.697] [INFO] cheese - batch complete in: 1.078 secs -[2018-02-13T08:38:22.824] [INFO] cheese - inserting 1000 documents. first: File:Standards Vol. 1.jpg and last: And I approved this message -[2018-02-13T08:38:22.923] [INFO] cheese - batch complete in: 1.051 secs -[2018-02-13T08:38:22.988] [INFO] cheese - inserting 1000 documents. first: Category:Spouses of Illinois politicians and last: Goff, Bruce -[2018-02-13T08:38:22.988] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Farm to Market Road 742 and last: Statute Law Revision (Miscellaneous Provisions) Act 1993 -[2018-02-13T08:38:23.023] [INFO] cheese - inserting 1000 documents. first: Category:Taxa named by Pierre Viette and last: Sand Fire -[2018-02-13T08:38:23.057] [INFO] cheese - batch complete in: 0.963 secs -[2018-02-13T08:38:23.061] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:38:23.073] [INFO] cheese - inserting 1000 documents. first: Jules-Elie Delaunay and last: File:Young Adam movie.jpg -[2018-02-13T08:38:23.117] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:38:23.195] [INFO] cheese - inserting 1000 documents. first: Category:Nike (rocket family) and last: Wangman Lowangcha -[2018-02-13T08:38:23.203] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:38:23.305] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:38:23.386] [INFO] cheese - inserting 1000 documents. first: Evinohório, Greece and last: Merri Rose -[2018-02-13T08:38:23.402] [INFO] cheese - inserting 1000 documents. first: File:Starship Command.png and last: File:Ibniasdaq-2.jpg -[2018-02-13T08:38:23.444] [INFO] cheese - batch complete in: 0.747 secs -[2018-02-13T08:38:23.484] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:38:23.636] [INFO] cheese - inserting 1000 documents. first: Unca and last: Judo at the 2008 Summer Paralympics – Women's 57 kg -[2018-02-13T08:38:23.713] [INFO] cheese - inserting 1000 documents. first: Ellen Nyman and last: 2004 Women's Pan-American Volleyball Cup Squads -[2018-02-13T08:38:23.756] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:38:23.815] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:38:23.880] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/healthca.info and last: John and Elizabeth McMurn Early House -[2018-02-13T08:38:24.092] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:38:24.121] [INFO] cheese - inserting 1000 documents. first: Moshling and last: File:Lincolnshire Independents logo.jpg -[2018-02-13T08:38:24.174] [INFO] cheese - inserting 1000 documents. first: Template:Help me working and last: Sklené, Žďár nad Sázavou -[2018-02-13T08:38:24.257] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:38:24.311] [INFO] cheese - batch complete in: 1.006 secs -[2018-02-13T08:38:24.322] [INFO] cheese - inserting 1000 documents. first: SKP and last: File:The Donnas - Spend the Night.jpg -[2018-02-13T08:38:24.413] [INFO] cheese - inserting 1000 documents. first: CHEF-FM and last: Wikipedia:Arbitration Committee Elections December 2007/Candidate statements/Example/Questions for the candidate -[2018-02-13T08:38:24.315] [INFO] cheese - inserting 1000 documents. first: Heated floor and last: Succession to the Crown Act 1603 -[2018-02-13T08:38:24.534] [INFO] cheese - inserting 1000 documents. first: Liverpool City Council election, 1999 and last: Wikipedia:Categories for deletion/Log/2006 March 11 -[2018-02-13T08:38:24.518] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:38:24.570] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:38:24.581] [INFO] cheese - batch complete in: 1.378 secs -[2018-02-13T08:38:24.681] [INFO] cheese - batch complete in: 1.197 secs -[2018-02-13T08:38:24.750] [INFO] cheese - inserting 1000 documents. first: Category:People educated at Latymer Upper School and last: Agraulis glycera -[2018-02-13T08:38:24.839] [INFO] cheese - batch complete in: 1.024 secs -[2018-02-13T08:38:24.842] [INFO] cheese - inserting 1000 documents. first: Colegio Estilo and last: Category:2014–15 Colonial Athletic Association women's basketball season -[2018-02-13T08:38:24.938] [INFO] cheese - inserting 1000 documents. first: Bertram Bisgood and last: Brown moray eel -[2018-02-13T08:38:24.943] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:38:25.010] [INFO] cheese - inserting 1000 documents. first: Template:Simon & Garfunkel singles and last: Segregation Academy -[2018-02-13T08:38:25.074] [INFO] cheese - batch complete in: 0.816 secs -[2018-02-13T08:38:25.133] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:38:25.166] [INFO] cheese - inserting 1000 documents. first: Gheert Cremer and last: Ivan Yarygin -[2018-02-13T08:38:25.279] [INFO] cheese - batch complete in: 0.709 secs -[2018-02-13T08:38:25.321] [INFO] cheese - inserting 1000 documents. first: Source route bridging and last: Jean Michel Larqué -[2018-02-13T08:38:25.391] [INFO] cheese - inserting 1000 documents. first: Guernsey at the 2006 Commonwealth Games and last: Sri Lankan Muslim -[2018-02-13T08:38:25.409] [INFO] cheese - inserting 1000 documents. first: Atanu Roy and last: Suillellus frostii -[2018-02-13T08:38:25.450] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:38:25.481] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:38:25.482] [INFO] cheese - batch complete in: 0.643 secs -[2018-02-13T08:38:25.746] [INFO] cheese - inserting 1000 documents. first: Cliff 'Em All and last: River Gunboat -[2018-02-13T08:38:25.775] [INFO] cheese - inserting 1000 documents. first: Alfred David McAlpine and last: Dono y 2 -[2018-02-13T08:38:25.821] [INFO] cheese - inserting 1000 documents. first: TV5 (TV Network) and last: Sir Robert Napier, 2nd Baronet -[2018-02-13T08:38:25.838] [INFO] cheese - inserting 1000 documents. first: Cholotis isotacta and last: File:Tower of Love Today.jpg -[2018-02-13T08:38:25.868] [INFO] cheese - batch complete in: 0.925 secs -[2018-02-13T08:38:25.876] [INFO] cheese - batch complete in: 1.295 secs -[2018-02-13T08:38:25.917] [INFO] cheese - batch complete in: 0.842 secs -[2018-02-13T08:38:25.974] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:38:26.006] [INFO] cheese - inserting 1000 documents. first: Ljubljana Matica Alpine Club and last: Kevin Souter -[2018-02-13T08:38:26.114] [INFO] cheese - batch complete in: 0.835 secs -[2018-02-13T08:38:26.266] [INFO] cheese - inserting 1000 documents. first: Tubiporus frostii and last: Category:1991 in Cambodia -[2018-02-13T08:38:26.277] [INFO] cheese - inserting 1000 documents. first: File:Pinatasparty.gif and last: Catch a nigger by the toe -[2018-02-13T08:38:26.311] [INFO] cheese - inserting 1000 documents. first: Ministry of Petroleum and last: 2004–05 Vyshcha Liha -[2018-02-13T08:38:26.399] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:38:26.469] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:38:26.499] [INFO] cheese - batch complete in: 1.018 secs -[2018-02-13T08:38:26.542] [INFO] cheese - inserting 1000 documents. first: 2016 Advantage Cars Prague Open – Women's Singles and last: 2016–17 Rugby Europe International Championships -[2018-02-13T08:38:26.608] [INFO] cheese - inserting 1000 documents. first: Wheelchair racing at the 1984 Summer Olympics and last: Reşid Pasha -[2018-02-13T08:38:26.608] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:38:26.667] [INFO] cheese - inserting 1000 documents. first: Wolverhampton Wanderers F.C. season 1958–59 and last: St. Louis Board of Police Commissioners -[2018-02-13T08:38:26.710] [INFO] cheese - batch complete in: 0.736 secs -[2018-02-13T08:38:26.757] [INFO] cheese - inserting 1000 documents. first: First Presbyterian Church (Sag Harbor, New York) and last: SAI KZ VII -[2018-02-13T08:38:26.903] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:26.936] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:38:27.052] [INFO] cheese - inserting 1000 documents. first: Chicago Film Critics Association and last: Model building code -[2018-02-13T08:38:27.144] [INFO] cheese - inserting 1000 documents. first: Balloon Array for RBSP Relativistic Electron Losses and last: Iku language -[2018-02-13T08:38:27.221] [INFO] cheese - batch complete in: 1.345 secs -[2018-02-13T08:38:27.319] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:38:27.412] [INFO] cheese - inserting 1000 documents. first: Audenarde and last: File:ElectrolinerCNSRRVSEng.jpg -[2018-02-13T08:38:27.464] [INFO] cheese - inserting 1000 documents. first: Reshid Pasha and last: Television Registrada -[2018-02-13T08:38:27.477] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:38:27.487] [INFO] cheese - inserting 1000 documents. first: Category:Music schools in Africa and last: Accession (DS9 episode) -[2018-02-13T08:38:27.536] [INFO] cheese - inserting 1000 documents. first: Category:2005 Christmas albums and last: Canoeing at the 2010 South American Games - Women's K-1 1000 metres -[2018-02-13T08:38:27.575] [INFO] cheese - inserting 1000 documents. first: Sackville Relay Station and last: Vasco Road (California) -[2018-02-13T08:38:27.600] [INFO] cheese - batch complete in: 0.89 secs -[2018-02-13T08:38:27.655] [INFO] cheese - batch complete in: 1.186 secs -[2018-02-13T08:38:27.705] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:38:27.721] [INFO] cheese - batch complete in: 1.112 secs -[2018-02-13T08:38:27.766] [INFO] cheese - inserting 1000 documents. first: London Buses route H19 and last: Mike Burgoyne -[2018-02-13T08:38:27.838] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:38:27.966] [INFO] cheese - inserting 1000 documents. first: Iku-Gora-Ankwa language and last: Tschongrad County -[2018-02-13T08:38:28.006] [INFO] cheese - inserting 1000 documents. first: Canoeing at the 2010 South American Games - Women's K-1 200 metres and last: IHS Global Insight -[2018-02-13T08:38:28.027] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:38:28.044] [INFO] cheese - batch complete in: 0.339 secs -[2018-02-13T08:38:28.184] [INFO] cheese - inserting 1000 documents. first: Template:Country data Federation of Nigeria (Commonwealth realm) and last: Akshar Deri -[2018-02-13T08:38:28.190] [INFO] cheese - inserting 1000 documents. first: Muscle contraction and last: Wikipedia:Articles for deletion/Spanglew -[2018-02-13T08:38:28.229] [INFO] cheese - inserting 1000 documents. first: Septarian nodule and last: Template:OrgSynth -[2018-02-13T08:38:28.377] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:38:28.398] [INFO] cheese - inserting 1000 documents. first: What the World Needs Now: Stan Getz Plays Burt Bacharach and Hal David and last: Category:Argeș basin -[2018-02-13T08:38:28.409] [INFO] cheese - batch complete in: 0.754 secs -[2018-02-13T08:38:28.425] [INFO] cheese - inserting 1000 documents. first: King Arthur Carrousel and last: Wikipedia:Articles for deletion/RandumNess -[2018-02-13T08:38:28.482] [INFO] cheese - batch complete in: 1.261 secs -[2018-02-13T08:38:28.552] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:38:28.579] [INFO] cheese - inserting 1000 documents. first: Olepa and last: File:Love's Unfolding Dream.jpg -[2018-02-13T08:38:28.596] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:38:28.757] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:38:28.839] [INFO] cheese - inserting 1000 documents. first: Mini Hatch and last: File:GMAPINOYTV2012LOGO.jpg -[2018-02-13T08:38:28.851] [INFO] cheese - inserting 1000 documents. first: 1989 New South Wales Open - Women's Singles and last: Lü Wang -[2018-02-13T08:38:28.949] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:38:28.959] [INFO] cheese - batch complete in: 0.932 secs -[2018-02-13T08:38:29.100] [INFO] cheese - inserting 1000 documents. first: Tapasya (1976 film) and last: Abhyankar-moh theorem -[2018-02-13T08:38:29.120] [INFO] cheese - inserting 1000 documents. first: Nandasmo F.C. and last: John Taverner (clergyman) -[2018-02-13T08:38:29.145] [INFO] cheese - inserting 1000 documents. first: John Ivory Talbot and last: Jeon Mi-Gyeong -[2018-02-13T08:38:29.159] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:38:29.222] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:38:29.273] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:38:29.361] [INFO] cheese - inserting 1000 documents. first: Boyardee and last: Cadet Second Lieutenant -[2018-02-13T08:38:29.441] [INFO] cheese - inserting 1000 documents. first: La Mesilla and last: Toshiko Ueda -[2018-02-13T08:38:29.498] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:38:29.550] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:38:29.602] [INFO] cheese - inserting 1000 documents. first: Bakke and last: Palestine (region) -[2018-02-13T08:38:29.623] [INFO] cheese - inserting 1000 documents. first: Category:English football clubs 1928–29 season and last: Category:Video albums by genre -[2018-02-13T08:38:29.689] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/besttattoos.webs.com and last: Template:Togneme Userbox -[2018-02-13T08:38:29.744] [INFO] cheese - batch complete in: 1.262 secs -[2018-02-13T08:38:29.760] [INFO] cheese - inserting 1000 documents. first: Holy Family High School (Port Allen) and last: Eleventeen (album) -[2018-02-13T08:38:29.793] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:38:29.825] [INFO] cheese - batch complete in: 0.866 secs -[2018-02-13T08:38:29.882] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:38:29.944] [INFO] cheese - inserting 1000 documents. first: CAF Super Cup 2017 and last: José María Arroyo -[2018-02-13T08:38:30.114] [INFO] cheese - batch complete in: 0.891 secs -[2018-02-13T08:38:30.171] [INFO] cheese - inserting 1000 documents. first: Ectenessa decorata and last: Oscar (footballer born 1991) -[2018-02-13T08:38:30.300] [INFO] cheese - batch complete in: 1.027 secs -[2018-02-13T08:38:30.387] [INFO] cheese - inserting 1000 documents. first: Mooney 205 and last: Chapter nine institutions -[2018-02-13T08:38:30.406] [INFO] cheese - inserting 1000 documents. first: Template:Governors of Mississippi and last: Category:British television personalities -[2018-02-13T08:38:30.504] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:38:30.527] [INFO] cheese - batch complete in: 1.029 secs -[2018-02-13T08:38:30.559] [INFO] cheese - inserting 1000 documents. first: Template:Most Imposing Togneme Userbox and last: Nepal and Tibet Philatelic Study Circle -[2018-02-13T08:38:30.561] [INFO] cheese - inserting 1000 documents. first: Konjska Reka and last: Glacier Cream -[2018-02-13T08:38:30.638] [INFO] cheese - inserting 1000 documents. first: Category:Roman Catholic dioceses in the Republic of the Congo and last: Empoli Football Club -[2018-02-13T08:38:30.651] [INFO] cheese - batch complete in: 0.857 secs -[2018-02-13T08:38:30.656] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:38:30.706] [INFO] cheese - batch complete in: 0.824 secs -[2018-02-13T08:38:30.752] [INFO] cheese - inserting 1000 documents. first: Category:1970s disasters and last: Patrick Ambron -[2018-02-13T08:38:30.846] [INFO] cheese - inserting 1000 documents. first: Panda Security and last: Weasel (disambiguation) -[2018-02-13T08:38:30.856] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:38:30.953] [INFO] cheese - inserting 1000 documents. first: Craig Reid (footballer born 1985) and last: Haven't Got Time for the Pain -[2018-02-13T08:38:30.955] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:38:31.060] [INFO] cheese - batch complete in: 0.76 secs -[2018-02-13T08:38:31.126] [INFO] cheese - inserting 1000 documents. first: NY-109 and last: Cow plop -[2018-02-13T08:38:31.132] [INFO] cheese - inserting 1000 documents. first: Big crash and last: File:Prince and Princess Bibesco Wedding, 1919.jpg -[2018-02-13T08:38:31.173] [INFO] cheese - inserting 1000 documents. first: Münchener Bach-Orchester and last: Jelly balls -[2018-02-13T08:38:31.178] [INFO] cheese - inserting 1000 documents. first: Chapter 9 institutions and last: Category:Manitoba Junior Hockey League seasons -[2018-02-13T08:38:31.179] [INFO] cheese - batch complete in: 0.472 secs -[2018-02-13T08:38:31.225] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:38:31.261] [INFO] cheese - inserting 1000 documents. first: File:Stockport County Warm Up vs Cambridge.jpg and last: Knud Morten Lange -[2018-02-13T08:38:31.280] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:38:31.289] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:38:31.346] [INFO] cheese - batch complete in: 0.69 secs -[2018-02-13T08:38:31.405] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Shotton Surface Mine and last: Wesam Malik -[2018-02-13T08:38:31.465] [INFO] cheese - batch complete in: 0.609 secs -[2018-02-13T08:38:31.620] [INFO] cheese - inserting 1000 documents. first: Edward Popham (d. 1772) and last: Chamdo Monastery -[2018-02-13T08:38:31.744] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:38:31.847] [INFO] cheese - inserting 1000 documents. first: Category:Disambig-Class Algeria articles and last: Oligancistrus -[2018-02-13T08:38:31.930] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:38:31.971] [INFO] cheese - inserting 1000 documents. first: Category:Ancient Chinese states and last: File:Amiga Defender of the Crown raid.png -[2018-02-13T08:38:32.015] [INFO] cheese - inserting 1000 documents. first: Owerri Imo Airport and last: Matarova -[2018-02-13T08:38:32.115] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Philadelphia Phillies/Recognized content and last: Kamikaze Taxi -[2018-02-13T08:38:32.117] [INFO] cheese - inserting 1000 documents. first: Doheny Eye Institute and last: File:Confused Feelings.jpg -[2018-02-13T08:38:32.162] [INFO] cheese - inserting 1000 documents. first: NOCTURNAL OPERA and last: American Stores Company -[2018-02-13T08:38:32.175] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Miscellany for deletion/User:American Eagle/euNO and last: Chamaemeles -[2018-02-13T08:38:32.146] [INFO] cheese - batch complete in: 1.191 secs -[2018-02-13T08:38:32.185] [INFO] cheese - batch complete in: 0.905 secs -[2018-02-13T08:38:32.283] [INFO] cheese - batch complete in: 0.818 secs -[2018-02-13T08:38:32.320] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:38:32.346] [INFO] cheese - inserting 1000 documents. first: Stefan Witkowski and last: Eritrichium nanum -[2018-02-13T08:38:32.356] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:38:32.390] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:38:32.450] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:38:32.689] [INFO] cheese - inserting 1000 documents. first: Template:Georgia Southern Eagles men's basketball coach navbox and last: A Time to Stand (DS9 episode) -[2018-02-13T08:38:32.771] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:38:32.996] [INFO] cheese - inserting 1000 documents. first: Ra Graharipu and last: Category:Finnish female swimmers -[2018-02-13T08:38:33.060] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:38:33.083] [INFO] cheese - inserting 1000 documents. first: Template:RussiaAdmMunRef/niz/munlist/lukoyanovsky and last: Southern California Lacrosse League -[2018-02-13T08:38:33.109] [INFO] cheese - inserting 1000 documents. first: Jim Mair (musician) and last: Swiss referendum, 1884 -[2018-02-13T08:38:33.127] [INFO] cheese - inserting 1000 documents. first: Dzhafar-Beyli and last: L. M. Alcott -[2018-02-13T08:38:33.129] [INFO] cheese - inserting 1000 documents. first: Pittsfield Railroad Station and last: File:WALR logo.gif -[2018-02-13T08:38:33.134] [INFO] cheese - inserting 1000 documents. first: NetDevil and last: Müllerebe -[2018-02-13T08:38:33.148] [INFO] cheese - batch complete in: 0.698 secs -[2018-02-13T08:38:33.218] [INFO] cheese - batch complete in: 0.862 secs -[2018-02-13T08:38:33.234] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:38:33.252] [INFO] cheese - batch complete in: 1.067 secs -[2018-02-13T08:38:33.326] [INFO] cheese - batch complete in: 1.179 secs -[2018-02-13T08:38:33.559] [INFO] cheese - inserting 1000 documents. first: Jacob ben David Yom Tov and last: Football in Egypt -[2018-02-13T08:38:33.633] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:38:33.652] [INFO] cheese - inserting 1000 documents. first: Category:1993 establishments in Antarctica and last: 2016-17 FIS Freestyle Skiing World Cup -[2018-02-13T08:38:33.732] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:38:33.831] [INFO] cheese - inserting 1000 documents. first: Rennerod and last: Lloyd Anoaʻi -[2018-02-13T08:38:33.851] [INFO] cheese - inserting 1000 documents. first: M P W Bolton and last: File:Punjab medical college.png -[2018-02-13T08:38:33.873] [INFO] cheese - inserting 1000 documents. first: Pettorano and last: Maciej Kozłowski -[2018-02-13T08:38:33.912] [INFO] cheese - inserting 1000 documents. first: Pigott Building and last: Proof by abstract nonsense -[2018-02-13T08:38:33.943] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:38:33.984] [INFO] cheese - batch complete in: 1.594 secs -[2018-02-13T08:38:34.046] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:38:34.054] [INFO] cheese - inserting 1000 documents. first: Carl Günther and last: Erratic boulder -[2018-02-13T08:38:34.056] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:38:34.238] [INFO] cheese - batch complete in: 1.003 secs -[2018-02-13T08:38:34.479] [INFO] cheese - inserting 1000 documents. first: Template:2016-17 Belgian First Division A Europa League play-offs Group B table and last: Whalebone (album) -[2018-02-13T08:38:34.556] [INFO] cheese - batch complete in: 0.823 secs -[2018-02-13T08:38:34.585] [INFO] cheese - inserting 1000 documents. first: Azal Espanhol and last: 1954 British Grand Prix -[2018-02-13T08:38:34.724] [INFO] cheese - batch complete in: 1.397 secs -[2018-02-13T08:38:34.759] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Peer review/Bratislava/archive1 and last: Jedediah K. Smith -[2018-02-13T08:38:34.825] [INFO] cheese - inserting 1000 documents. first: The British Chess Championship and last: Template:BBCDWnew/sandbox -[2018-02-13T08:38:34.844] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:38:34.858] [INFO] cheese - inserting 1000 documents. first: Category:1917 in Japanese sport and last: Gagik Siravyan -[2018-02-13T08:38:34.942] [INFO] cheese - inserting 1000 documents. first: Category:Lewisia and last: King's-mantle -[2018-02-13T08:38:34.944] [INFO] cheese - batch complete in: 1.001 secs -[2018-02-13T08:38:34.959] [INFO] cheese - batch complete in: 0.913 secs -[2018-02-13T08:38:34.961] [INFO] cheese - inserting 1000 documents. first: NAH and last: Lappi, Pakistan -[2018-02-13T08:38:35.011] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:38:35.054] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:38:35.178] [INFO] cheese - inserting 1000 documents. first: Kensington and Tacony RR and last: South Australian state election, 1997 -[2018-02-13T08:38:35.226] [INFO] cheese - inserting 1000 documents. first: Category:Anti-Zionism in Belgium and last: Gallbladder attacks -[2018-02-13T08:38:35.270] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:38:35.331] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:38:35.398] [INFO] cheese - inserting 1000 documents. first: Category:Education in Azad Kashmir and last: Undine Boat Club -[2018-02-13T08:38:35.419] [INFO] cheese - inserting 1000 documents. first: Rich Waltz and last: Category:Suspected Wikipedia sockpuppets of Ellielancaster -[2018-02-13T08:38:35.488] [INFO] cheese - inserting 1000 documents. first: Template:Costa Rica squad 2002 CONCACAF Gold Cup and last: Brown Booby -[2018-02-13T08:38:35.479] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:38:35.513] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:38:35.597] [INFO] cheese - inserting 1000 documents. first: Category:Earls of Northesk and last: Paranerita sithnides -[2018-02-13T08:38:35.612] [INFO] cheese - batch complete in: 0.653 secs -[2018-02-13T08:38:35.727] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:38:35.744] [INFO] cheese - inserting 1000 documents. first: Aron Wilford and last: NINA -[2018-02-13T08:38:36.081] [INFO] cheese - batch complete in: 1.026 secs -[2018-02-13T08:38:36.143] [INFO] cheese - inserting 1000 documents. first: Pilar, Buenos Aires and last: Ethan Brown -[2018-02-13T08:38:36.190] [INFO] cheese - inserting 1000 documents. first: Here Comes The Kraken and last: F8 (classification) -[2018-02-13T08:38:36.248] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:38:36.359] [INFO] cheese - batch complete in: 1.028 secs -[2018-02-13T08:38:36.432] [INFO] cheese - inserting 1000 documents. first: Senatskaya Tower and last: Bill Henderson (UK politician) -[2018-02-13T08:38:36.459] [INFO] cheese - inserting 1000 documents. first: Hatunqucha (Junín) and last: 1998-99 Stockport County F.C. season -[2018-02-13T08:38:36.539] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:38:36.545] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:38:36.605] [INFO] cheese - inserting 1000 documents. first: Bratac and last: Wikipedia:Articles for deletion/Air banding -[2018-02-13T08:38:36.608] [INFO] cheese - inserting 1000 documents. first: Love from Paris and last: Justine (Amnesia: The Dark Descent) -[2018-02-13T08:38:36.703] [INFO] cheese - batch complete in: 1.19 secs -[2018-02-13T08:38:36.712] [INFO] cheese - batch complete in: 0.985 secs -[2018-02-13T08:38:36.895] [INFO] cheese - inserting 1000 documents. first: Similar awlking and last: Category:Fenerbahçe footballers -[2018-02-13T08:38:36.997] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:38:37.002] [INFO] cheese - inserting 1000 documents. first: File:DATEM Systems International.jpg and last: File:Noafteryousir.jpg -[2018-02-13T08:38:37.021] [INFO] cheese - inserting 1000 documents. first: Laser guided bombing and last: Otto Divosta -[2018-02-13T08:38:37.065] [INFO] cheese - inserting 1000 documents. first: Peter Lillback and last: MPT-76 -[2018-02-13T08:38:37.103] [INFO] cheese - batch complete in: 0.558 secs -[2018-02-13T08:38:37.123] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:38:37.143] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:38:37.338] [INFO] cheese - inserting 1000 documents. first: File:John Melville Kelly's oil on board painting 'Lei Makers on the Greensward', c. 1930.jpg and last: Ex-Muslims -[2018-02-13T08:38:37.412] [INFO] cheese - inserting 1000 documents. first: William Allen Trimble and last: Histiobranchus bruuni -[2018-02-13T08:38:37.460] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:38:37.545] [INFO] cheese - inserting 1000 documents. first: List of east west streets of Toronto and last: Wikipedia:Miscellany for deletion/Wikipedia:Penguin Path 306 -[2018-02-13T08:38:37.546] [INFO] cheese - batch complete in: 1.298 secs -[2018-02-13T08:38:37.657] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:38:37.806] [INFO] cheese - inserting 1000 documents. first: Draft:Matthew Derr and last: Zimbabwe People First -[2018-02-13T08:38:37.817] [INFO] cheese - inserting 1000 documents. first: File:Southern United FC logo.svg and last: Labdia orthoschema -[2018-02-13T08:38:37.860] [INFO] cheese - inserting 1000 documents. first: SMK Lembah Subang and last: Wikipedia:Articles for deletion/Terry Smith (news anchor) -[2018-02-13T08:38:37.869] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:38:37.889] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Jeffrey Kofman and last: Alex de Rakoff -[2018-02-13T08:38:37.895] [INFO] cheese - batch complete in: 0.792 secs -[2018-02-13T08:38:38.006] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:38:38.047] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:38:38.234] [INFO] cheese - inserting 1000 documents. first: Pavels Kolcovs and last: Photographing -[2018-02-13T08:38:38.311] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:38:38.376] [INFO] cheese - inserting 1000 documents. first: Miss Colorado USA and last: Inferior vesical artery -[2018-02-13T08:38:38.401] [INFO] cheese - inserting 1000 documents. first: Labdia orthritis and last: Stantondale F.C. -[2018-02-13T08:38:38.422] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/logsoku.com and last: YMCA UST -[2018-02-13T08:38:38.494] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:38:38.513] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:38:38.637] [INFO] cheese - batch complete in: 0.98 secs -[2018-02-13T08:38:38.640] [INFO] cheese - inserting 1000 documents. first: List of schools in the Roman Catholic Archdiocese of Washington and last: Category:Sex education in Europe -[2018-02-13T08:38:38.655] [INFO] cheese - inserting 1000 documents. first: Alexis de Redé and last: Gordon, Illinois -[2018-02-13T08:38:38.777] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:38:38.826] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:38:38.849] [INFO] cheese - inserting 1000 documents. first: File:Jonathan Banal playing for NCAA's Mapua Institute of Technology.jpg and last: Cloud-Chief -[2018-02-13T08:38:38.984] [INFO] cheese - batch complete in: 0.978 secs -[2018-02-13T08:38:39.043] [INFO] cheese - inserting 1000 documents. first: 1954 German Grand Prix and last: Institutions of the European Union -[2018-02-13T08:38:39.178] [INFO] cheese - inserting 1000 documents. first: Zhuang Jiajie and last: NC 134 -[2018-02-13T08:38:39.237] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:38:39.244] [INFO] cheese - inserting 1000 documents. first: Olympique Gymnaste Club Nice Côte d'Azur and last: Category:Bahamian films -[2018-02-13T08:38:39.252] [INFO] cheese - batch complete in: 4.527 secs -[2018-02-13T08:38:39.336] [INFO] cheese - inserting 1000 documents. first: Gary D. Cohn and last: Category:1966 in Antigua and Barbuda -[2018-02-13T08:38:39.346] [INFO] cheese - batch complete in: 1.035 secs -[2018-02-13T08:38:39.473] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:38:39.509] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Excitint2015 and last: Category:Geothermal energy in Africa -[2018-02-13T08:38:39.516] [INFO] cheese - inserting 1000 documents. first: Slash, Virginia and last: 2010 Manaus plane crash -[2018-02-13T08:38:39.592] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:38:39.606] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:38:39.642] [INFO] cheese - inserting 1000 documents. first: Karamu High School and last: Shortthorn Fangtooth -[2018-02-13T08:38:39.642] [INFO] cheese - inserting 1000 documents. first: Judy Higginbotham and last: CCDM J17305+5218C -[2018-02-13T08:38:39.735] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:38:39.735] [INFO] cheese - batch complete in: 1.222 secs -[2018-02-13T08:38:39.813] [INFO] cheese - inserting 1000 documents. first: Travis Scott (rapper) and last: File:Luneta philippine flag half mast.jpg -[2018-02-13T08:38:39.895] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:38:40.034] [INFO] cheese - inserting 1000 documents. first: Kumanovo, city of the culture and last: Jean-François Coux -[2018-02-13T08:38:40.039] [INFO] cheese - inserting 1000 documents. first: CoCo and last: Dmitriy Vavilov -[2018-02-13T08:38:40.052] [INFO] cheese - inserting 1000 documents. first: Template:Latest stable software release/LimeSurvey and last: Wikipedia:WikiProject Spam/LinkReports/hoga-pr.de -[2018-02-13T08:38:40.146] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:38:40.150] [INFO] cheese - batch complete in: 0.804 secs -[2018-02-13T08:38:40.273] [INFO] cheese - inserting 1000 documents. first: Category:Geothermal energy in North America and last: Francesco Minorello -[2018-02-13T08:38:40.266] [INFO] cheese - batch complete in: 0.789 secs -[2018-02-13T08:38:40.389] [INFO] cheese - batch complete in: 0.782 secs -[2018-02-13T08:38:40.494] [INFO] cheese - inserting 1000 documents. first: BD+52 2065C and last: Ulrich Folkers -[2018-02-13T08:38:40.558] [INFO] cheese - inserting 1000 documents. first: V (Maroon 5 album) and last: Abdurahman Mohamud Turyare -[2018-02-13T08:38:40.575] [INFO] cheese - inserting 1000 documents. first: Kochi Refineries and last: Bunbuku chagama -[2018-02-13T08:38:40.631] [INFO] cheese - batch complete in: 0.896 secs -[2018-02-13T08:38:40.646] [INFO] cheese - inserting 1000 documents. first: 2002 European Grand Prix and last: Saint-Joseph (AOC) -[2018-02-13T08:38:40.671] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:38:40.690] [INFO] cheese - batch complete in: 0.795 secs -[2018-02-13T08:38:40.763] [INFO] cheese - inserting 1000 documents. first: Dmitry Vavilov and last: Vysoky, Murmansk Oblast -[2018-02-13T08:38:40.856] [INFO] cheese - batch complete in: 1.604 secs -[2018-02-13T08:38:40.912] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:38:40.984] [INFO] cheese - inserting 1000 documents. first: Sand, Punjab and last: Category:Use Indian English from August 2016 -[2018-02-13T08:38:40.988] [INFO] cheese - inserting 1000 documents. first: Southern Florida and last: William de Briouze -[2018-02-13T08:38:40.994] [INFO] cheese - inserting 1000 documents. first: Category:Women in Israel and last: Wikipedia:WikiProject Spam/LinkReports/pensamentos.org -[2018-02-13T08:38:41.058] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:38:41.065] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:38:41.096] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:38:41.266] [INFO] cheese - inserting 1000 documents. first: Ethanoligenens harbinense and last: El-Keib Cabinet -[2018-02-13T08:38:41.307] [INFO] cheese - batch complete in: 0.617 secs -[2018-02-13T08:38:41.320] [INFO] cheese - inserting 1000 documents. first: Clutton Brock and last: Stand guidance system -[2018-02-13T08:38:41.370] [INFO] cheese - inserting 1000 documents. first: The Real Thing (Kylie Minogue song) and last: Sherab Palden Beru -[2018-02-13T08:38:41.388] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:38:41.476] [INFO] cheese - batch complete in: 0.805 secs -[2018-02-13T08:38:41.488] [INFO] cheese - inserting 1000 documents. first: Cape Mohican oil spill and last: Khalden Training Camp -[2018-02-13T08:38:41.579] [INFO] cheese - inserting 1000 documents. first: Kalyan Jewellers and last: Category:2009 Regions Morgan Keegan Championships and the Cellular South Cup -[2018-02-13T08:38:41.582] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:38:41.595] [INFO] cheese - inserting 1000 documents. first: Behind the Altar and last: Royal Commission into Juvenile Detention in the Northern Territory -[2018-02-13T08:38:41.617] [INFO] cheese - inserting 1000 documents. first: Robert Zmelík and last: Hit by Pitch -[2018-02-13T08:38:41.667] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:38:41.672] [INFO] cheese - batch complete in: 0.614 secs -[2018-02-13T08:38:41.677] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:38:41.753] [INFO] cheese - inserting 1000 documents. first: UEFA Euro U21 and last: Rgb(255, 255, 0) -[2018-02-13T08:38:41.770] [INFO] cheese - inserting 1000 documents. first: Frangelico and last: Churchill River (Hudson Bay) -[2018-02-13T08:38:41.802] [INFO] cheese - batch complete in: 0.495 secs -[2018-02-13T08:38:41.887] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:38:42.029] [INFO] cheese - inserting 1000 documents. first: Antics 3D and last: File:Strong Bad.png -[2018-02-13T08:38:42.048] [INFO] cheese - inserting 1000 documents. first: Mike Adams and last: Ma’aleh Adumim -[2018-02-13T08:38:42.091] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:38:42.112] [INFO] cheese - inserting 1000 documents. first: 2010 French Open – Men's Singles and last: File:Alan Country Boy.jpg -[2018-02-13T08:38:42.167] [INFO] cheese - inserting 1000 documents. first: Belasica Petrich and last: BBC Radio 1's Dance Anthems -[2018-02-13T08:38:42.337] [INFO] cheese - batch complete in: 0.861 secs -[2018-02-13T08:38:42.363] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:38:42.375] [INFO] cheese - batch complete in: 0.793 secs -[2018-02-13T08:38:42.427] [INFO] cheese - inserting 1000 documents. first: James Rewcastle and last: Wikipedia:WikiProject Spam/LinkReports/doowansgardensupply.com -[2018-02-13T08:38:42.439] [INFO] cheese - inserting 1000 documents. first: Sturlung Era and last: Ritual combat -[2018-02-13T08:38:42.587] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:38:42.604] [INFO] cheese - batch complete in: 0.937 secs -[2018-02-13T08:38:42.606] [INFO] cheese - inserting 1000 documents. first: List of awards and nominations received by Simon Fuller and last: National Petroleum Reserve in Alaska -[2018-02-13T08:38:42.778] [INFO] cheese - batch complete in: 0.976 secs -[2018-02-13T08:38:42.918] [INFO] cheese - inserting 1000 documents. first: File:NotNecessarilyAcoustic.jpg and last: Ward Inlet -[2018-02-13T08:38:43.014] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:38:43.084] [INFO] cheese - inserting 1000 documents. first: Samuel T. Herring and last: Gough, Thomas -[2018-02-13T08:38:43.086] [INFO] cheese - inserting 1000 documents. first: Time-memory trade-off and last: KFFC -[2018-02-13T08:38:43.121] [INFO] cheese - batch complete in: 0.758 secs -[2018-02-13T08:38:43.139] [INFO] cheese - inserting 1000 documents. first: Michael T. "Nuf Ced" McGreevy and last: A.C. Hardy -[2018-02-13T08:38:43.188] [INFO] cheese - inserting 1000 documents. first: CA1 and last: Piney Flats -[2018-02-13T08:38:43.195] [INFO] cheese - batch complete in: 1.308 secs -[2018-02-13T08:38:43.234] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/doowansgardensupply.com and last: Matthias Woerndle -[2018-02-13T08:38:43.239] [INFO] cheese - batch complete in: 0.864 secs -[2018-02-13T08:38:43.310] [INFO] cheese - inserting 1000 documents. first: Ponderosa Campground and last: Lockheed U-2R -[2018-02-13T08:38:43.336] [INFO] cheese - batch complete in: 0.998 secs -[2018-02-13T08:38:43.353] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:38:43.425] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:38:43.663] [INFO] cheese - inserting 1000 documents. first: Campher and last: Hunter T 72 -[2018-02-13T08:38:43.742] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:38:43.811] [INFO] cheese - inserting 1000 documents. first: Gould, Thomas and last: Irfaan -[2018-02-13T08:38:43.825] [INFO] cheese - inserting 1000 documents. first: Spring Hill, Pike County, Alabama and last: File:Petrus Christus - Portrait of a Young Woman - Google Art Project.jpg -[2018-02-13T08:38:43.828] [INFO] cheese - inserting 1000 documents. first: Pier 57 (Seattle) and last: File:Bay high crest panama city.jpg -[2018-02-13T08:38:43.866] [INFO] cheese - inserting 1000 documents. first: (6033) 1984 SQ4 and last: Category:Golden Arena award -[2018-02-13T08:38:43.888] [INFO] cheese - batch complete in: 0.535 secs -[2018-02-13T08:38:43.897] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:38:43.985] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:38:44.080] [INFO] cheese - batch complete in: 0.841 secs -[2018-02-13T08:38:44.146] [INFO] cheese - inserting 1000 documents. first: Hattie Johnson and last: Alessandro Mendini -[2018-02-13T08:38:44.255] [INFO] cheese - inserting 1000 documents. first: You're Only Lonely and last: Samuel Balto -[2018-02-13T08:38:44.255] [INFO] cheese - batch complete in: 0.919 secs -[2018-02-13T08:38:44.341] [INFO] cheese - inserting 1000 documents. first: USS Merganser (AM-135) and last: Sam Hobbs -[2018-02-13T08:38:44.362] [INFO] cheese - inserting 1000 documents. first: List of railway stations in Pakistan and last: Wikipedia:Articles for deletion/Tony Grier -[2018-02-13T08:38:44.407] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:38:44.481] [INFO] cheese - batch complete in: 0.739 secs -[2018-02-13T08:38:44.468] [INFO] cheese - batch complete in: 1.042 secs -[2018-02-13T08:38:44.589] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Dbaj and last: Malanshof, Gauteng -[2018-02-13T08:38:44.715] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:38:44.719] [INFO] cheese - inserting 1000 documents. first: Pyroderces anthinopa and last: Category:Male actors from Edmonton -[2018-02-13T08:38:44.786] [INFO] cheese - batch complete in: 0.8 secs -[2018-02-13T08:38:44.890] [INFO] cheese - inserting 1000 documents. first: AMC-15 (satellite) and last: Jan Panacek -[2018-02-13T08:38:45.016] [INFO] cheese - batch complete in: 1.119 secs -[2018-02-13T08:38:45.147] [INFO] cheese - inserting 1000 documents. first: No, No, Nanoosh and last: Star trek tos -[2018-02-13T08:38:45.147] [INFO] cheese - inserting 1000 documents. first: Laides and last: Breathable liquid -[2018-02-13T08:38:45.156] [INFO] cheese - inserting 1000 documents. first: Joe Tait and last: Character Map (Windows) -[2018-02-13T08:38:45.209] [INFO] cheese - inserting 1000 documents. first: Category:Croatian film awards and last: South Central Rain -[2018-02-13T08:38:45.232] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:38:45.245] [INFO] cheese - batch complete in: 0.777 secs -[2018-02-13T08:38:45.288] [INFO] cheese - batch complete in: 1.033 secs -[2018-02-13T08:38:45.377] [INFO] cheese - inserting 1000 documents. first: List of U.S. Highways in Washington, D.C. and last: Dr. Dharamvir Dhillon -[2018-02-13T08:38:45.392] [INFO] cheese - batch complete in: 1.311 secs -[2018-02-13T08:38:45.474] [INFO] cheese - inserting 1000 documents. first: Maroeladal, Gauteng and last: Category:Populated places in East Kazakhstan Region -[2018-02-13T08:38:45.546] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:38:45.590] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:38:45.608] [INFO] cheese - inserting 1000 documents. first: Black Bindweed and last: Norma McCormick -[2018-02-13T08:38:45.698] [INFO] cheese - batch complete in: 1.291 secs -[2018-02-13T08:38:45.771] [INFO] cheese - inserting 1000 documents. first: Neohebestola vitticollis and last: Jinshi Township -[2018-02-13T08:38:45.849] [INFO] cheese - batch complete in: 0.833 secs -[2018-02-13T08:38:45.909] [INFO] cheese - inserting 1000 documents. first: Çəmənli and last: The Witcher: Enhanced Edition -[2018-02-13T08:38:45.997] [INFO] cheese - inserting 1000 documents. first: BU(n) and last: Black-throated trogon -[2018-02-13T08:38:45.999] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:38:46.008] [INFO] cheese - inserting 1000 documents. first: Agricultural Development Denmark Asia and last: Henry B. Sayler -[2018-02-13T08:38:46.012] [INFO] cheese - inserting 1000 documents. first: A Sorrow Beyond Dreams. A Life Story and last: Chhal (TV series) -[2018-02-13T08:38:46.053] [INFO] cheese - inserting 1000 documents. first: Providing material support to the al-Qaeda terrorist network and last: Halcyon River Diaries -[2018-02-13T08:38:46.067] [INFO] cheese - inserting 1000 documents. first: Port Talbot Steel works and last: Wikipedia:Articles for deletion/Speed alliance -[2018-02-13T08:38:46.091] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:38:46.095] [INFO] cheese - batch complete in: 0.806 secs -[2018-02-13T08:38:46.102] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:38:46.162] [INFO] cheese - batch complete in: 0.616 secs -[2018-02-13T08:38:46.186] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:38:46.297] [INFO] cheese - inserting 1000 documents. first: Deweese (surname) and last: Holly-leaf grevillea -[2018-02-13T08:38:46.341] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:38:46.461] [INFO] cheese - inserting 1000 documents. first: Stoel Rives and last: Project West Wind -[2018-02-13T08:38:46.678] [INFO] cheese - inserting 1000 documents. first: Vancouver 86ers and last: File:AbaBayefsky.png -[2018-02-13T08:38:46.737] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:38:46.865] [INFO] cheese - inserting 1000 documents. first: File:Etna (Disgaea).png and last: Anti-bacterial medicine -[2018-02-13T08:38:46.868] [INFO] cheese - inserting 1000 documents. first: Quill Corp. v. North Dakota and last: Ros Hill -[2018-02-13T08:38:46.904] [INFO] cheese - batch complete in: 1.205 secs -[2018-02-13T08:38:46.921] [INFO] cheese - inserting 1000 documents. first: State Route 141 (California) and last: File:Multicolorbands.jpg -[2018-02-13T08:38:46.924] [INFO] cheese - inserting 1000 documents. first: Category:List-Class Madhya Pradesh articles of Mid-importance and last: Sebastiano Girelli -[2018-02-13T08:38:46.958] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:38:47.032] [INFO] cheese - batch complete in: 0.94 secs -[2018-02-13T08:38:47.056] [INFO] cheese - inserting 1000 documents. first: Hidayat Ullah and last: Vincent (given name) -[2018-02-13T08:38:47.133] [INFO] cheese - batch complete in: 1.038 secs -[2018-02-13T08:38:47.133] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:38:47.166] [INFO] cheese - inserting 1000 documents. first: Me 'N Rock 'N Roll Are Here To Stay and last: Antonio Ramon Horta -[2018-02-13T08:38:47.181] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:38:47.294] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:38:47.637] [INFO] cheese - inserting 1000 documents. first: Category:Butler Bulldogs football navigational boxes and last: Africa Movie Academy Award for Best Actor in a Supporting Role -[2018-02-13T08:38:47.677] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:38:47.725] [INFO] cheese - inserting 1000 documents. first: Tini Stoessel and last: File:World Billiards Logo.jpg -[2018-02-13T08:38:47.782] [INFO] cheese - inserting 1000 documents. first: Charles G. Bennett and last: Diamond Consulting -[2018-02-13T08:38:47.783] [INFO] cheese - inserting 1000 documents. first: Olympic Aviation Flight 545 and last: James Tunstall -[2018-02-13T08:38:47.793] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:38:47.852] [INFO] cheese - inserting 1000 documents. first: Huang Lee and last: WHKT (AM) -[2018-02-13T08:38:47.862] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:38:47.875] [INFO] cheese - inserting 1000 documents. first: Helobiae and last: Na Sgiathan -[2018-02-13T08:38:47.880] [INFO] cheese - batch complete in: 0.847 secs -[2018-02-13T08:38:47.910] [INFO] cheese - inserting 1000 documents. first: Category:Recipients of the Order of Merit of the Federal Republic of Germany and last: Evgeniy Yerastov -[2018-02-13T08:38:47.941] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:38:47.978] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:38:48.018] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:38:48.145] [INFO] cheese - inserting 1000 documents. first: Corbett-Terwilliger-Lair Hil and last: Template:Did you know nominations/Yasss Bish -[2018-02-13T08:38:48.170] [INFO] cheese - inserting 1000 documents. first: Lost (television drama) and last: Dune: House Atreides -[2018-02-13T08:38:48.192] [INFO] cheese - batch complete in: 0.515 secs -[2018-02-13T08:38:48.319] [INFO] cheese - batch complete in: 1.415 secs -[2018-02-13T08:38:48.402] [INFO] cheese - inserting 1000 documents. first: Grange City, Washington and last: Category:Three-volume novels -[2018-02-13T08:38:48.418] [INFO] cheese - inserting 1000 documents. first: Dineor language and last: First International Tramways and Light Railways Exhibition -[2018-02-13T08:38:48.468] [INFO] cheese - batch complete in: 0.675 secs -[2018-02-13T08:38:48.489] [INFO] cheese - inserting 1000 documents. first: Francis of Girolama and last: Template:Catholic Schools in Laredo -[2018-02-13T08:38:48.546] [INFO] cheese - inserting 1000 documents. first: Fadi Hammadeh and last: WNUW-FM -[2018-02-13T08:38:48.568] [INFO] cheese - batch complete in: 0.705 secs -[2018-02-13T08:38:48.600] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:38:48.694] [INFO] cheese - inserting 1000 documents. first: Neris river and last: Pink floyd live -[2018-02-13T08:38:48.670] [INFO] cheese - batch complete in: 0.729 secs -[2018-02-13T08:38:48.793] [INFO] cheese - inserting 1000 documents. first: Anthropological Survey of India and last: Gagince -[2018-02-13T08:38:48.839] [INFO] cheese - inserting 1000 documents. first: Omri Elmakyes and last: Paratheta astigmatica -[2018-02-13T08:38:48.943] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:38:48.980] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:38:49.022] [INFO] cheese - batch complete in: 1.002 secs -[2018-02-13T08:38:49.205] [INFO] cheese - inserting 1000 documents. first: 7-deaza-2’-C-methyladenosine and last: Adesmus divus -[2018-02-13T08:38:49.259] [INFO] cheese - batch complete in: 0.791 secs -[2018-02-13T08:38:49.334] [INFO] cheese - inserting 1000 documents. first: La Trinitaria, Mexico and last: Generalization in ethics -[2018-02-13T08:38:49.417] [INFO] cheese - batch complete in: 0.848 secs -[2018-02-13T08:38:49.490] [INFO] cheese - inserting 1000 documents. first: State of Origin 2005 and last: National Weather Service Forecast Office -[2018-02-13T08:38:49.539] [INFO] cheese - inserting 1000 documents. first: Xenopoulo and last: Wikipedia:Articles for deletion/Top Hat Willy -[2018-02-13T08:38:49.600] [INFO] cheese - inserting 1000 documents. first: Kshitij School (Nepal) and last: List of reflexes (alphabetical) -[2018-02-13T08:38:49.613] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:38:49.624] [INFO] cheese - inserting 1000 documents. first: Golema Njiva and last: Cerithidea anticipata -[2018-02-13T08:38:49.688] [INFO] cheese - inserting 1000 documents. first: File:Russiancolours.jpg and last: GM Tech IV engine -[2018-02-13T08:38:49.702] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:38:49.732] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:38:49.771] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:38:49.873] [INFO] cheese - batch complete in: 1.554 secs -[2018-02-13T08:38:49.882] [INFO] cheese - inserting 1000 documents. first: Smush and last: Tatiana of Rome -[2018-02-13T08:38:49.969] [INFO] cheese - inserting 1000 documents. first: Category:Handball in Gabon and last: 2003–04 England Hockey League season -[2018-02-13T08:38:50.031] [INFO] cheese - batch complete in: 1.088 secs -[2018-02-13T08:38:50.016] [INFO] cheese - batch complete in: 0.757 secs -[2018-02-13T08:38:50.190] [INFO] cheese - inserting 1000 documents. first: John McLean (footballer) and last: Elena D'Angri -[2018-02-13T08:38:50.297] [INFO] cheese - inserting 1000 documents. first: Category:Predecessors of the Great Northern Railway (U.S.) and last: Category:Railway accidents in Switzerland -[2018-02-13T08:38:50.311] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:38:50.412] [INFO] cheese - inserting 1000 documents. first: Moses T. Stevens and last: Wayamba university -[2018-02-13T08:38:50.428] [INFO] cheese - batch complete in: 0.726 secs -[2018-02-13T08:38:50.496] [INFO] cheese - inserting 1000 documents. first: Evans & Novak and last: Guam League 2006 -[2018-02-13T08:38:50.542] [INFO] cheese - batch complete in: 0.929 secs -[2018-02-13T08:38:50.642] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:38:50.807] [INFO] cheese - inserting 1000 documents. first: Category:Sport in the Cayman Islands and last: John Breckinridge -[2018-02-13T08:38:50.905] [INFO] cheese - inserting 1000 documents. first: Apeba barauna and last: Kamalpur, Bhulath -[2018-02-13T08:38:50.912] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:38:50.968] [INFO] cheese - inserting 1000 documents. first: Sydney Simpson and last: St Peter, Cheapside -[2018-02-13T08:38:50.977] [INFO] cheese - inserting 1000 documents. first: Paradoxurus montanus and last: Category:2014 in Martinique -[2018-02-13T08:38:51.003] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:38:51.081] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:38:51.084] [INFO] cheese - batch complete in: 1.352 secs -[2018-02-13T08:38:51.093] [INFO] cheese - inserting 1000 documents. first: Instructions of Shuruppak and last: Ruzbe -[2018-02-13T08:38:51.146] [INFO] cheese - inserting 1000 documents. first: Category:Saudi Arabian football biography stubs and last: Inverness burghs constituency -[2018-02-13T08:38:51.201] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:38:51.202] [INFO] cheese - inserting 1000 documents. first: Lower Silesian-Mark railway and last: Kosikhinsky -[2018-02-13T08:38:51.241] [INFO] cheese - batch complete in: 0.696 secs -[2018-02-13T08:38:51.335] [INFO] cheese - batch complete in: 0.693 secs -[2018-02-13T08:38:51.520] [INFO] cheese - inserting 1000 documents. first: 1887 Bloody Sunday and last: Category:Women's sport in Peru -[2018-02-13T08:38:51.557] [INFO] cheese - inserting 1000 documents. first: HC Spartak Moscow and last: Ottawa/Rockcliffe Water Aerodrome -[2018-02-13T08:38:51.559] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Ryn Goblin and last: Arthur Farnsworth -[2018-02-13T08:38:51.595] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:38:51.628] [INFO] cheese - inserting 1000 documents. first: Spitfire (Porter Robinson album) and last: Category:Kenyan expatriates in Saudi Arabia -[2018-02-13T08:38:51.673] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:38:51.727] [INFO] cheese - inserting 1000 documents. first: KP Pietersen and last: Paratio language -[2018-02-13T08:38:51.761] [INFO] cheese - inserting 1000 documents. first: Education in Odisha and last: 1948 Washington Senators season -[2018-02-13T08:38:51.771] [INFO] cheese - inserting 1000 documents. first: Rozbe and last: FM 97.5 -[2018-02-13T08:38:51.776] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:38:51.764] [INFO] cheese - batch complete in: 1.891 secs -[2018-02-13T08:38:51.950] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:38:51.959] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:38:51.976] [INFO] cheese - inserting 1000 documents. first: Kosikhinskiy and last: Juan Anacleto Araneta -[2018-02-13T08:38:51.977] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:38:52.084] [INFO] cheese - batch complete in: 0.749 secs -[2018-02-13T08:38:52.372] [INFO] cheese - inserting 1000 documents. first: FM 97.7 and last: The Playhouse to Be Let -[2018-02-13T08:38:52.417] [INFO] cheese - inserting 1000 documents. first: Category:Opinion polling for elections in the Czech Republic and last: Bilochun -[2018-02-13T08:38:52.442] [INFO] cheese - batch complete in: 0.492 secs -[2018-02-13T08:38:52.513] [INFO] cheese - inserting 1000 documents. first: CTR7 and last: K.W. Lee -[2018-02-13T08:38:52.515] [INFO] cheese - batch complete in: 0.92 secs -[2018-02-13T08:38:52.562] [INFO] cheese - inserting 1000 documents. first: Paratió language and last: Madan Mohan Jiu Temple -[2018-02-13T08:38:52.640] [INFO] cheese - inserting 1000 documents. first: Pahurat and last: Alejandro Cao de Benos de Les y Perez -[2018-02-13T08:38:52.646] [INFO] cheese - inserting 1000 documents. first: Ahl al-Kahf and last: Jeebropilly -[2018-02-13T08:38:52.660] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:52.671] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:38:52.770] [INFO] cheese - batch complete in: 0.686 secs -[2018-02-13T08:38:52.772] [INFO] cheese - batch complete in: 0.813 secs -[2018-02-13T08:38:52.842] [INFO] cheese - inserting 1000 documents. first: Transapical Transcatheter Mitral Valve Implantation of the Tiara Bio-prosthesis and last: Jake Thomas (Canadian football) -[2018-02-13T08:38:52.863] [INFO] cheese - inserting 1000 documents. first: Egil Skallagrimsson and last: Disfiguration -[2018-02-13T08:38:52.940] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:38:52.963] [INFO] cheese - batch complete in: 1.199 secs -[2018-02-13T08:38:53.031] [INFO] cheese - inserting 1000 documents. first: Disaster learning and last: Tody-tyrants -[2018-02-13T08:38:53.130] [INFO] cheese - batch complete in: 0.688 secs -[2018-02-13T08:38:53.166] [INFO] cheese - inserting 1000 documents. first: Gaoqiao, Changsha County and last: Huidobro, Burgos -[2018-02-13T08:38:53.276] [INFO] cheese - inserting 1000 documents. first: Dastira imitatrix and last: Wikipedia:United States Education Program/Courses/Wiki-Project Management (Jonathan Obar)/Group 3 Sandbox/Bookshelf Sandbox/Advanced Section/Discussion Section/Other Section -[2018-02-13T08:38:53.352] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:38:53.413] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:38:53.540] [INFO] cheese - inserting 1000 documents. first: North Pickenham and last: Jesse Alto -[2018-02-13T08:38:53.571] [INFO] cheese - inserting 1000 documents. first: Category:Transportation infrastructure in Mexico and last: Bulling (agricultural) -[2018-02-13T08:38:53.597] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Strategic essentialism and last: Fishersgate railway station -[2018-02-13T08:38:53.612] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:38:53.628] [INFO] cheese - inserting 1000 documents. first: Jan Roth and last: Mary Woodall -[2018-02-13T08:38:53.685] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:38:53.737] [INFO] cheese - batch complete in: 1.077 secs -[2018-02-13T08:38:53.748] [INFO] cheese - inserting 1000 documents. first: The Bald Knobbers and last: File:Scottish Tartans Society (coat of arms).png -[2018-02-13T08:38:53.777] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:38:53.838] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:38:53.871] [INFO] cheese - inserting 1000 documents. first: Category:1356 deaths and last: Orochimaru -[2018-02-13T08:38:53.955] [INFO] cheese - batch complete in: 0.991 secs -[2018-02-13T08:38:53.965] [INFO] cheese - inserting 1000 documents. first: Orichevskiy and last: Exeter Tramway Company -[2018-02-13T08:38:53.966] [INFO] cheese - inserting 1000 documents. first: Mariano Florentino Cuéllar and last: Category:Chilean male rowers -[2018-02-13T08:38:54.057] [INFO] cheese - batch complete in: 0.644 secs -[2018-02-13T08:38:54.092] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:38:54.287] [INFO] cheese - inserting 1000 documents. first: Bear & Co. and last: Old Canberra Inn -[2018-02-13T08:38:54.294] [INFO] cheese - inserting 1000 documents. first: Here, My Love and last: Roger R. Ream -[2018-02-13T08:38:54.350] [INFO] cheese - inserting 1000 documents. first: File:Scottish Tartarns World Register (logo).png and last: List of number-one Billboard Top Latin Albums of 2005 -[2018-02-13T08:38:54.358] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:38:54.373] [INFO] cheese - inserting 1000 documents. first: Kasama Airport and last: BMW i3 REx -[2018-02-13T08:38:54.391] [INFO] cheese - batch complete in: 0.706 secs -[2018-02-13T08:38:54.439] [INFO] cheese - batch complete in: 0.601 secs -[2018-02-13T08:38:54.495] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:38:54.589] [INFO] cheese - inserting 1000 documents. first: Sikh feminism and last: Nikita Sergeevic Hruscev -[2018-02-13T08:38:54.691] [INFO] cheese - inserting 1000 documents. first: Interstate Route 205 (California) and last: N-base -[2018-02-13T08:38:54.761] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:38:54.876] [INFO] cheese - batch complete in: 1.139 secs -[2018-02-13T08:38:54.923] [INFO] cheese - inserting 1000 documents. first: Electoral Commission of Uganda and last: Category:Women's sports competitions in Brazil -[2018-02-13T08:38:55.084] [INFO] cheese - inserting 1000 documents. first: Rock Lee and last: File:Juliana Hatfield - Bed.jpg -[2018-02-13T08:38:55.102] [INFO] cheese - batch complete in: 1.01 secs -[2018-02-13T08:38:55.367] [INFO] cheese - batch complete in: 1.411 secs -[2018-02-13T08:38:55.412] [INFO] cheese - inserting 1000 documents. first: File:Threeview Shche-2.gif and last: Template:1944 NCAA Men's Basketball Consensus All-Americans -[2018-02-13T08:38:55.418] [INFO] cheese - inserting 1000 documents. first: File:Jack of Clubs (album).jpg and last: Moon Island (Hong Kong) -[2018-02-13T08:38:55.457] [INFO] cheese - inserting 1000 documents. first: New Delhi Ajmer Shatabdi Express and last: Wikipedia:WikiProject Spam/Local/bcud.unipune.ac.in -[2018-02-13T08:38:55.470] [INFO] cheese - inserting 1000 documents. first: Longford, Coventry and last: Samuel T. Worcester -[2018-02-13T08:38:55.492] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:38:55.499] [INFO] cheese - batch complete in: 1.108 secs -[2018-02-13T08:38:55.602] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:38:55.605] [INFO] cheese - batch complete in: 1.247 secs -[2018-02-13T08:38:55.650] [INFO] cheese - inserting 1000 documents. first: Nikita Sergeevic Xruscev and last: Template:Bad English -[2018-02-13T08:38:55.747] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:38:55.754] [INFO] cheese - inserting 1000 documents. first: N-Base and last: Allan Houser -[2018-02-13T08:38:55.786] [INFO] cheese - inserting 1000 documents. first: Ministry of Education Republic of China and last: Kim Song-guk (sport shooter) -[2018-02-13T08:38:55.843] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:38:55.864] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:38:56.134] [INFO] cheese - inserting 1000 documents. first: Ed Swearingen and last: List of airports in Libyan Arab Jamahiriya -[2018-02-13T08:38:56.139] [INFO] cheese - inserting 1000 documents. first: Category:Treaties of the Duchy of Milan and last: Herman van Aldewereld -[2018-02-13T08:38:56.143] [INFO] cheese - inserting 1000 documents. first: Template:Michael Bolton and last: Ivan II Draskovic -[2018-02-13T08:38:56.191] [INFO] cheese - batch complete in: 0.444 secs -[2018-02-13T08:38:56.208] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:38:56.212] [INFO] cheese - batch complete in: 0.72 secs -[2018-02-13T08:38:56.234] [INFO] cheese - inserting 1000 documents. first: Post Coïtum, Animal Triste and last: Donald McAllister -[2018-02-13T08:38:56.275] [INFO] cheese - inserting 1000 documents. first: Claire Nielson and last: Diplomatic body -[2018-02-13T08:38:56.362] [INFO] cheese - batch complete in: 0.759 secs -[2018-02-13T08:38:56.365] [INFO] cheese - inserting 1000 documents. first: List of works by Elliott Carter and last: Taft CJ -[2018-02-13T08:38:56.415] [INFO] cheese - inserting 1000 documents. first: Daybreak and last: Peek (crater) -[2018-02-13T08:38:56.431] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:38:56.490] [INFO] cheese - batch complete in: 0.647 secs -[2018-02-13T08:38:56.618] [INFO] cheese - batch complete in: 1.251 secs -[2018-02-13T08:38:56.649] [INFO] cheese - inserting 1000 documents. first: Swissmint and last: Chatt G. Wright -[2018-02-13T08:38:56.826] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:38:56.959] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/Local/mulgrave.com and last: Breathlyzer -[2018-02-13T08:38:57.004] [INFO] cheese - inserting 1000 documents. first: Adult video chat and last: Louise Berliawsky Nevelson -[2018-02-13T08:38:57.034] [INFO] cheese - inserting 1000 documents. first: Stylissa and last: Cone ant -[2018-02-13T08:38:57.042] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:38:57.046] [INFO] cheese - batch complete in: 0.838 secs -[2018-02-13T08:38:57.069] [INFO] cheese - inserting 1000 documents. first: European LC Championships 1995 - Men's 100m Freestyle and last: Category:Port cities in Australia -[2018-02-13T08:38:57.159] [INFO] cheese - batch complete in: 0.797 secs -[2018-02-13T08:38:57.196] [INFO] cheese - inserting 1000 documents. first: 1929 in Afghanistan and last: State Highway 16 -[2018-02-13T08:38:57.225] [INFO] cheese - batch complete in: 1.013 secs -[2018-02-13T08:38:57.275] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:38:57.328] [INFO] cheese - inserting 1000 documents. first: Category:Czech male discus throwers and last: Wikipedia:WikiProject Spam/LinkReports/pitbull-info-and-training.com -[2018-02-13T08:38:57.413] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:38:57.615] [INFO] cheese - inserting 1000 documents. first: Category:1839 establishments in Brazil and last: Orlin (disambiguation) -[2018-02-13T08:38:57.632] [INFO] cheese - inserting 1000 documents. first: Capcom Entertainment, Inc. and last: Time Assassins -[2018-02-13T08:38:57.645] [INFO] cheese - inserting 1000 documents. first: Berlin-Görlitz Railway Company and last: The Three Men of Melita Žganjer -[2018-02-13T08:38:57.680] [INFO] cheese - inserting 1000 documents. first: ERK (disambiguation) and last: Styx II -[2018-02-13T08:38:57.687] [INFO] cheese - batch complete in: 0.645 secs -[2018-02-13T08:38:57.734] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:38:57.737] [INFO] cheese - batch complete in: 0.691 secs -[2018-02-13T08:38:57.829] [INFO] cheese - inserting 1000 documents. first: Independent Paralympic Athletes at the 2016 Summer Paralympics and last: United States Post Office and Courthouse (Rome, Georgia) -[2018-02-13T08:38:57.843] [INFO] cheese - batch complete in: 1.224 secs -[2018-02-13T08:38:57.864] [INFO] cheese - inserting 1000 documents. first: Category:Secretaries of State of Michigan and last: The Mock Tempest -[2018-02-13T08:38:57.869] [INFO] cheese - inserting 1000 documents. first: Last Forever – Part 1 and last: Anatinomma bispinosum -[2018-02-13T08:38:57.910] [INFO] cheese - inserting 1000 documents. first: State Highway 17 and last: Scape goat -[2018-02-13T08:38:57.960] [INFO] cheese - batch complete in: 0.546 secs -[2018-02-13T08:38:57.962] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:38:58.033] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:38:58.147] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:38:58.367] [INFO] cheese - inserting 1000 documents. first: Pieter de Valk and last: Wanna go home, baby? -[2018-02-13T08:38:58.483] [INFO] cheese - batch complete in: 0.796 secs -[2018-02-13T08:38:58.557] [INFO] cheese - inserting 1000 documents. first: Let the Wookiee win and last: Jillion Potter -[2018-02-13T08:38:58.611] [INFO] cheese - batch complete in: 0.651 secs -[2018-02-13T08:38:58.644] [INFO] cheese - inserting 1000 documents. first: File:Wonder Boy III Monster Lair - level1.png and last: Lipjani -[2018-02-13T08:38:58.652] [INFO] cheese - inserting 1000 documents. first: Globe Road & Devonshire Street railway station and last: Cancer adspersus -[2018-02-13T08:38:58.672] [INFO] cheese - inserting 1000 documents. first: Baron Lytton and last: Category:Cass County, Indiana -[2018-02-13T08:38:58.685] [INFO] cheese - inserting 1000 documents. first: Kaiwera Downs Wind Farm and last: Category:Irish people of South African descent -[2018-02-13T08:38:58.714] [INFO] cheese - inserting 1000 documents. first: Category:NASCAR on the radio and last: Category:1739 in music -[2018-02-13T08:38:58.729] [INFO] cheese - batch complete in: 0.995 secs -[2018-02-13T08:38:58.731] [INFO] cheese - inserting 1000 documents. first: Heinz Welzel and last: Eulia tristriata -[2018-02-13T08:38:58.780] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:38:58.776] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:38:58.761] [INFO] cheese - batch complete in: 0.728 secs -[2018-02-13T08:38:58.842] [INFO] cheese - batch complete in: 0.695 secs -[2018-02-13T08:38:58.887] [INFO] cheese - batch complete in: 0.923 secs -[2018-02-13T08:38:59.152] [INFO] cheese - inserting 1000 documents. first: Holy Spirit (Islam) and last: Josh Ritchart -[2018-02-13T08:38:59.178] [INFO] cheese - inserting 1000 documents. first: Category:Clark County, Indiana and last: Category:Buffalo County, South Dakota -[2018-02-13T08:38:59.208] [INFO] cheese - inserting 1000 documents. first: List of archdeacons of Ashford and last: Falizan -[2018-02-13T08:38:59.210] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:38:59.221] [INFO] cheese - batch complete in: 0.441 secs -[2018-02-13T08:38:59.304] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:38:59.370] [INFO] cheese - inserting 1000 documents. first: Category:Wards of the London Borough of Bexley and last: Category:Wards of Bradford -[2018-02-13T08:38:59.408] [INFO] cheese - inserting 1000 documents. first: Cancer convexus and last: Tapas Fleming -[2018-02-13T08:38:59.441] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:38:59.555] [INFO] cheese - inserting 1000 documents. first: Spies Like Us (disambiguation) and last: Wikipedia:Miscellany for deletion/User:C09notes -[2018-02-13T08:38:59.559] [INFO] cheese - inserting 1000 documents. first: 1958 Individual Speedway World Championship and last: L'Heritier -[2018-02-13T08:38:59.632] [INFO] cheese - batch complete in: 0.855 secs -[2018-02-13T08:38:59.606] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:38:59.732] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:38:59.865] [INFO] cheese - inserting 1000 documents. first: Category:USA-centric and last: Idrees Bashir -[2018-02-13T08:38:59.890] [INFO] cheese - inserting 1000 documents. first: List of state leaders in 1240 and last: Computer reservation system -[2018-02-13T08:38:59.948] [INFO] cheese - inserting 1000 documents. first: Draco cornutus and last: 2016 Challenger Banque Nationale de Gatineau - Women's Doubles -[2018-02-13T08:38:59.954] [INFO] cheese - batch complete in: 0.733 secs -[2018-02-13T08:38:59.994] [INFO] cheese - batch complete in: 1.265 secs -[2018-02-13T08:39:00.107] [INFO] cheese - batch complete in: 0.897 secs -[2018-02-13T08:39:00.209] [INFO] cheese - inserting 1000 documents. first: Category:Educational institutions disestablished in 1933 and last: Petros Mantalos -[2018-02-13T08:39:00.236] [INFO] cheese - inserting 1000 documents. first: AVCA and last: Fierce, Isakowitz and Blalock -[2018-02-13T08:39:00.314] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:39:00.327] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:39:00.381] [INFO] cheese - inserting 1000 documents. first: File:The Third Kiss.jpg and last: Wikipedia:Reference desk/Archives/Humanities/2014 May 22 -[2018-02-13T08:39:00.388] [INFO] cheese - inserting 1000 documents. first: List of accidents and incidents involving military aircraft (1950–1974) and last: Arthur St George -[2018-02-13T08:39:00.434] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia featured topics Aston Villa F.C. featured content and last: Gerd wedler -[2018-02-13T08:39:00.460] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:39:00.471] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:39:00.568] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:39:00.719] [INFO] cheese - inserting 1000 documents. first: Rodrigues Alves and last: The Ungrateful Heart -[2018-02-13T08:39:00.839] [INFO] cheese - batch complete in: 0.732 secs -[2018-02-13T08:39:00.898] [INFO] cheese - inserting 1000 documents. first: Runar and last: E-LSA -[2018-02-13T08:39:00.920] [INFO] cheese - inserting 1000 documents. first: Template:Al Arabi SC (Qatar) managers and last: John Gundersen Neergaard -[2018-02-13T08:39:00.951] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/The Statto-JTA Publishing Corporation and last: Category:Elevators -[2018-02-13T08:39:01.000] [INFO] cheese - inserting 1000 documents. first: File:Swindon town fc badge 1971.PNG and last: Category:Greek coats of arms -[2018-02-13T08:39:01.033] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:39:01.024] [INFO] cheese - batch complete in: 0.563 secs -[2018-02-13T08:39:01.086] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Marrua and last: Wikipedia:Articles for deletion/Sabzi -[2018-02-13T08:39:01.097] [INFO] cheese - batch complete in: 1.142 secs -[2018-02-13T08:39:01.237] [INFO] cheese - batch complete in: 0.922 secs -[2018-02-13T08:39:01.286] [INFO] cheese - batch complete in: 0.815 secs -[2018-02-13T08:39:01.338] [INFO] cheese - inserting 1000 documents. first: Fire in the Breeze and last: File:National Association of Russian Explorers.png -[2018-02-13T08:39:01.355] [INFO] cheese - inserting 1000 documents. first: Category:Wikipedia Emerald access and last: Wikipedia:WikiProject Spam/LinkReports/encontrosdaimagem.com -[2018-02-13T08:39:01.500] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:39:01.607] [INFO] cheese - batch complete in: 0.768 secs -[2018-02-13T08:39:01.731] [INFO] cheese - inserting 1000 documents. first: Category:Scottish political theorists and last: Sarmad Tariq -[2018-02-13T08:39:01.884] [INFO] cheese - batch complete in: 1.557 secs -[2018-02-13T08:39:01.965] [INFO] cheese - inserting 1000 documents. first: Ptilochares melanoma and last: Abatino Faunistic Park -[2018-02-13T08:39:01.975] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/South-Central Eurasia and last: 2TM -[2018-02-13T08:39:02.123] [INFO] cheese - inserting 1000 documents. first: How to Behave and last: Portal:Energy/Selected picture/Layout -[2018-02-13T08:39:02.156] [INFO] cheese - batch complete in: 1.132 secs -[2018-02-13T08:39:02.206] [INFO] cheese - inserting 1000 documents. first: USAT Bowling Green Victory and last: Lietuvos TSR valstybinis dailės institutas -[2018-02-13T08:39:02.207] [INFO] cheese - batch complete in: 1.173 secs -[2018-02-13T08:39:02.270] [INFO] cheese - inserting 1000 documents. first: Category:Lower Sorbian language and last: Bicocca (quartiere di Milano) -[2018-02-13T08:39:02.296] [INFO] cheese - batch complete in: 1.059 secs -[2018-02-13T08:39:02.317] [INFO] cheese - inserting 1000 documents. first: High Tension and last: Ultima 7, pt. 2 -[2018-02-13T08:39:02.332] [INFO] cheese - batch complete in: 0.832 secs -[2018-02-13T08:39:02.416] [INFO] cheese - batch complete in: 1.13 secs -[2018-02-13T08:39:02.524] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:39:02.611] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/pier-uk.co.uk and last: 2017 TCR International Series -[2018-02-13T08:39:02.742] [INFO] cheese - batch complete in: 1.135 secs -[2018-02-13T08:39:02.815] [INFO] cheese - inserting 1000 documents. first: JJ (Skins character) and last: Gerard Braybrooke I -[2018-02-13T08:39:02.909] [INFO] cheese - batch complete in: 1.025 secs -[2018-02-13T08:39:03.060] [INFO] cheese - inserting 1000 documents. first: 2mrw and last: Category:Newspaper logos -[2018-02-13T08:39:03.208] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:39:03.212] [INFO] cheese - inserting 1000 documents. first: Lietuvos valstybinis dailės institutas and last: CaribVision -[2018-02-13T08:39:03.216] [INFO] cheese - inserting 1000 documents. first: Miss Teen USA 1990 and last: Category:Medieval armour -[2018-02-13T08:39:03.224] [INFO] cheese - inserting 1000 documents. first: 1913 London International Radiotelegraphic Convention and last: Black-throated Antshrike -[2018-02-13T08:39:03.296] [INFO] cheese - inserting 1000 documents. first: Bruzzano and last: 455th Flying Training Squadron -[2018-02-13T08:39:03.337] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:39:03.358] [INFO] cheese - batch complete in: 1.202 secs -[2018-02-13T08:39:03.360] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:39:03.526] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:39:03.545] [INFO] cheese - inserting 1000 documents. first: Wikipedia:EXPLORE and last: Category:Screenplays by Martyn Burke -[2018-02-13T08:39:03.643] [INFO] cheese - batch complete in: 0.901 secs -[2018-02-13T08:39:03.772] [INFO] cheese - inserting 1000 documents. first: Ultima 7 Part Two and last: Eidi -[2018-02-13T08:39:03.909] [INFO] cheese - inserting 1000 documents. first: Brit nat and last: Juno Awards of 2013 -[2018-02-13T08:39:03.951] [INFO] cheese - batch complete in: 1.427 secs -[2018-02-13T08:39:04.070] [INFO] cheese - batch complete in: 1.161 secs -[2018-02-13T08:39:04.107] [INFO] cheese - inserting 1000 documents. first: Undulated Antshrike and last: Double-banded Greytail -[2018-02-13T08:39:04.141] [INFO] cheese - inserting 1000 documents. first: Vital Suit and last: Jissetsu -[2018-02-13T08:39:04.169] [INFO] cheese - batch complete in: 0.811 secs -[2018-02-13T08:39:04.212] [INFO] cheese - inserting 1000 documents. first: UUDL and last: Salvatore Bocchetti -[2018-02-13T08:39:04.220] [INFO] cheese - inserting 1000 documents. first: Francis X. Beytagh and last: Oavelgem -[2018-02-13T08:39:04.239] [INFO] cheese - batch complete in: 0.902 secs -[2018-02-13T08:39:04.245] [INFO] cheese - inserting 1000 documents. first: Educational Attainment and last: Wikipedia:Articles for deletion/Yolanda Soares -[2018-02-13T08:39:04.274] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:39:04.335] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:39:04.343] [INFO] cheese - batch complete in: 0.817 secs -[2018-02-13T08:39:04.393] [INFO] cheese - inserting 1000 documents. first: File:Dimitrij of Rostov.jpg and last: Xenolith (disambiguation) -[2018-02-13T08:39:04.490] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:39:04.610] [INFO] cheese - inserting 1000 documents. first: Equatorial Greytail and last: Maxi floppy -[2018-02-13T08:39:04.660] [INFO] cheese - batch complete in: 0.491 secs -[2018-02-13T08:39:04.798] [INFO] cheese - inserting 1000 documents. first: Eliezer Ben-Rafael and last: Category:1998 African Cup of Nations managers -[2018-02-13T08:39:04.820] [INFO] cheese - inserting 1000 documents. first: Getafe Air Force Base and last: Template:Cairo International Film Festival -[2018-02-13T08:39:04.855] [INFO] cheese - inserting 1000 documents. first: Pilot (Best Friends Forever) and last: Wikipedia:WikiProject Spam/LinkReports/aboutthebeatles.com -[2018-02-13T08:39:04.867] [INFO] cheese - batch complete in: 0.524 secs -[2018-02-13T08:39:04.939] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:39:04.958] [INFO] cheese - inserting 1000 documents. first: Kantō Jissetsu and last: Aesthetic object -[2018-02-13T08:39:05.001] [INFO] cheese - inserting 1000 documents. first: File:Ski race at Bánkút, Hungary (2006).jpg and last: Wikipedia:Reference desk/Archives/Mathematics/2007 June 7 -[2018-02-13T08:39:05.009] [INFO] cheese - batch complete in: 0.939 secs -[2018-02-13T08:39:05.042] [INFO] cheese - inserting 1000 documents. first: Saskatchewan general election, 1912 and last: David Euan Wallace -[2018-02-13T08:39:05.123] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:39:05.120] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:39:05.317] [INFO] cheese - batch complete in: 1.366 secs -[2018-02-13T08:39:05.337] [INFO] cheese - inserting 1000 documents. first: Maxi-disk and last: Beth Brooke -[2018-02-13T08:39:05.410] [INFO] cheese - inserting 1000 documents. first: Northwest Airlines Flight 2 and last: Xelhua -[2018-02-13T08:39:05.438] [INFO] cheese - inserting 1000 documents. first: JFK Fried Chicken and last: ISO 639:mus -[2018-02-13T08:39:05.468] [INFO] cheese - batch complete in: 0.808 secs -[2018-02-13T08:39:05.522] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:39:05.589] [INFO] cheese - batch complete in: 1.099 secs -[2018-02-13T08:39:05.612] [INFO] cheese - inserting 1000 documents. first: Draft:Double Mountain Brewery and last: Hades (EP) -[2018-02-13T08:39:05.679] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:39:05.839] [INFO] cheese - inserting 1000 documents. first: Navy of Cape Verde and last: Category:Brutalist architects -[2018-02-13T08:39:05.893] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:39:05.942] [INFO] cheese - inserting 1000 documents. first: NK Neretva and last: Dilip Buwa -[2018-02-13T08:39:05.970] [INFO] cheese - inserting 1000 documents. first: Category:2009–10 Libyan Cup and last: Wikipedia:WikiProject Spam/LinkReports/almogaz.com -[2018-02-13T08:39:06.000] [INFO] cheese - inserting 1000 documents. first: ISO 639:muu and last: ISO 639:squ -[2018-02-13T08:39:06.058] [INFO] cheese - batch complete in: 0.536 secs -[2018-02-13T08:39:06.115] [INFO] cheese - batch complete in: 1.106 secs -[2018-02-13T08:39:06.166] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured picture candidates/U.S. National Gold Bank Notes (1871-1883) and last: M. quadrilineatus -[2018-02-13T08:39:06.187] [INFO] cheese - batch complete in: 1.064 secs -[2018-02-13T08:39:06.272] [INFO] cheese - batch complete in: 0.803 secs -[2018-02-13T08:39:06.340] [INFO] cheese - inserting 1000 documents. first: Wake in Fright (novel) and last: Crossoona Rath -[2018-02-13T08:39:06.452] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:39:06.455] [INFO] cheese - inserting 1000 documents. first: Gandhi–King Award and last: Berzelius (crater) -[2018-02-13T08:39:06.503] [INFO] cheese - inserting 1000 documents. first: Turyancay and last: Wikipedia:Featured list candidates/List of Bryan Adams awards/archive1 -[2018-02-13T08:39:06.506] [INFO] cheese - inserting 1000 documents. first: James Murray (boxer) and last: UvA -[2018-02-13T08:39:06.560] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:39:06.605] [INFO] cheese - batch complete in: 1.016 secs -[2018-02-13T08:39:06.610] [INFO] cheese - batch complete in: 0.717 secs -[2018-02-13T08:39:06.752] [INFO] cheese - inserting 1000 documents. first: Savara language (Munda) and last: Trebečaj -[2018-02-13T08:39:06.810] [INFO] cheese - batch complete in: 0.752 secs -[2018-02-13T08:39:06.824] [INFO] cheese - inserting 1000 documents. first: Template:Ontario provincial election, 1937/Ottawa South and last: White-tailed Robin -[2018-02-13T08:39:06.871] [INFO] cheese - batch complete in: 0.597 secs -[2018-02-13T08:39:06.923] [INFO] cheese - inserting 1000 documents. first: File:Croatian Swimming Federation logo.jpg and last: Stephen Shaw (tennis) -[2018-02-13T08:39:06.940] [INFO] cheese - inserting 1000 documents. first: Category:South Korean female sprinters and last: Category:People from Uvarovo, Tambov Oblast -[2018-02-13T08:39:07.009] [INFO] cheese - inserting 1000 documents. first: Charles Natusch and last: Contractual terms -[2018-02-13T08:39:07.018] [INFO] cheese - batch complete in: 0.566 secs -[2018-02-13T08:39:07.024] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:39:07.154] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:39:07.396] [INFO] cheese - inserting 1000 documents. first: Anton Fritsch and last: Bikes, blues, and bbq -[2018-02-13T08:39:07.423] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/List of Bryan Adams awards/archive2 and last: Patriot Guard -[2018-02-13T08:39:07.444] [INFO] cheese - batch complete in: 0.839 secs -[2018-02-13T08:39:07.521] [INFO] cheese - inserting 1000 documents. first: Sunda Robin and last: Golden-crowned Sparrow -[2018-02-13T08:39:07.637] [INFO] cheese - inserting 1000 documents. first: ISO 639:xml and last: Category:Populated places in Indonesia -[2018-02-13T08:39:07.802] [INFO] cheese - batch complete in: 0.992 secs -[2018-02-13T08:39:07.807] [INFO] cheese - batch complete in: 0.936 secs -[2018-02-13T08:39:07.852] [INFO] cheese - batch complete in: 1.238 secs -[2018-02-13T08:39:07.873] [INFO] cheese - inserting 1000 documents. first: File:GoT A Golden Crown.jpg and last: Aaron Davies (footballer) -[2018-02-13T08:39:08.006] [INFO] cheese - batch complete in: 0.988 secs -[2018-02-13T08:39:08.091] [INFO] cheese - inserting 1000 documents. first: DAT Politics and last: Sinfjötli -[2018-02-13T08:39:08.211] [INFO] cheese - inserting 1000 documents. first: Category:VfL Halle 1896 and last: Joguet -[2018-02-13T08:39:08.248] [INFO] cheese - batch complete in: 1.687 secs -[2018-02-13T08:39:08.379] [INFO] cheese - inserting 1000 documents. first: Martin-Baker MB 1 and last: Wikipedia:Articles for deletion/List of alpha emitting materials -[2018-02-13T08:39:08.381] [INFO] cheese - batch complete in: 1.357 secs -[2018-02-13T08:39:08.478] [INFO] cheese - inserting 1000 documents. first: White-throated Sparrow and last: Warczewiczella velata -[2018-02-13T08:39:08.489] [INFO] cheese - batch complete in: 1.335 secs -[2018-02-13T08:39:08.517] [INFO] cheese - inserting 1000 documents. first: Yadgar Muhammad Mirza and last: The Defendant -[2018-02-13T08:39:08.549] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:39:08.633] [INFO] cheese - inserting 1000 documents. first: Category:2001 fires and last: Category:Unknown-importance Los Angeles Dodgers articles -[2018-02-13T08:39:08.631] [INFO] cheese - batch complete in: 1.187 secs -[2018-02-13T08:39:08.687] [INFO] cheese - inserting 1000 documents. first: Aaron Davis (footballer) and last: Horticulture industry -[2018-02-13T08:39:08.739] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Fort Mall and last: Category:Gambian Christians -[2018-02-13T08:39:08.742] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:39:08.790] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:39:08.877] [INFO] cheese - batch complete in: 1.075 secs -[2018-02-13T08:39:09.028] [INFO] cheese - inserting 1000 documents. first: Zygopetalum velatum and last: Loango Weaver -[2018-02-13T08:39:09.077] [INFO] cheese - inserting 1000 documents. first: Category:New Zealand Christian monks and last: University of Trinity College -[2018-02-13T08:39:09.077] [INFO] cheese - batch complete in: 0.528 secs -[2018-02-13T08:39:09.205] [INFO] cheese - inserting 1000 documents. first: Shoujo Tsubaki and last: Alpine snowbell -[2018-02-13T08:39:09.260] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:39:09.374] [INFO] cheese - batch complete in: 0.885 secs -[2018-02-13T08:39:09.422] [INFO] cheese - inserting 1000 documents. first: Template:ZHCOTM and last: West Grey -[2018-02-13T08:39:09.430] [INFO] cheese - inserting 1000 documents. first: Category:Low-importance Los Angeles Dodgers articles and last: Philip Abraham -[2018-02-13T08:39:09.432] [INFO] cheese - inserting 1000 documents. first: SS Zachary Taylor and last: Gehrig38 -[2018-02-13T08:39:09.438] [INFO] cheese - inserting 1000 documents. first: Austro-Hungarian Air Service in World War I and last: Bahey eldin hassan -[2018-02-13T08:39:09.555] [INFO] cheese - batch complete in: 0.764 secs -[2018-02-13T08:39:09.613] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:39:09.621] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:09.633] [INFO] cheese - inserting 1000 documents. first: Lufira Masked Weaver and last: Lanceolated Warbler -[2018-02-13T08:39:09.643] [INFO] cheese - batch complete in: 1.394 secs -[2018-02-13T08:39:09.690] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:39:09.720] [INFO] cheese - inserting 1000 documents. first: BK-46 and last: Aleksandrovo, Haskovo Province -[2018-02-13T08:39:09.864] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:39:10.037] [INFO] cheese - inserting 1000 documents. first: List of treaties of naval collaboration of the Ottoman Empire and last: Jelena Yankovic -[2018-02-13T08:39:10.041] [INFO] cheese - inserting 1000 documents. first: Continental Stove Works and last: Skunk River Bridge -[2018-02-13T08:39:10.158] [INFO] cheese - batch complete in: 0.784 secs -[2018-02-13T08:39:10.164] [INFO] cheese - batch complete in: 0.904 secs -[2018-02-13T08:39:10.169] [INFO] cheese - inserting 1000 documents. first: 1939 Yale Bulldogs football team and last: Bench research -[2018-02-13T08:39:10.270] [INFO] cheese - inserting 1000 documents. first: Pallas's Grasshopper Warbler and last: O Chirombe -[2018-02-13T08:39:10.282] [INFO] cheese - batch complete in: 0.727 secs -[2018-02-13T08:39:10.368] [INFO] cheese - inserting 1000 documents. first: Category:Hapoel Tayibe F.C. players and last: Sarafxanli -[2018-02-13T08:39:10.397] [INFO] cheese - batch complete in: 0.707 secs -[2018-02-13T08:39:10.457] [INFO] cheese - batch complete in: 0.844 secs -[2018-02-13T08:39:10.620] [INFO] cheese - inserting 1000 documents. first: Bryagovo, Haskovo Province and last: The Hottest Show on Earth Tour -[2018-02-13T08:39:10.665] [INFO] cheese - inserting 1000 documents. first: File:Logo Il Messaggero.png and last: Pyhä-Häkki National Park -[2018-02-13T08:39:10.704] [INFO] cheese - batch complete in: 0.84 secs -[2018-02-13T08:39:10.761] [INFO] cheese - inserting 1000 documents. first: Mississippi Mills and last: Everquest II -[2018-02-13T08:39:10.791] [INFO] cheese - batch complete in: 1.17 secs -[2018-02-13T08:39:10.797] [INFO] cheese - inserting 1000 documents. first: Yelena Yankovic and last: Cercospora janseana -[2018-02-13T08:39:10.939] [INFO] cheese - batch complete in: 1.296 secs -[2018-02-13T08:39:11.009] [INFO] cheese - batch complete in: 0.851 secs -[2018-02-13T08:39:11.115] [INFO] cheese - inserting 1000 documents. first: Category:Chilean female hammer throwers and last: ECMA 94-2 -[2018-02-13T08:39:11.133] [INFO] cheese - inserting 1000 documents. first: Flame-throated Bulbul and last: Assam Laughingthrush -[2018-02-13T08:39:11.175] [INFO] cheese - inserting 1000 documents. first: Divine Legation of Moses and last: Category:1625 in art -[2018-02-13T08:39:11.200] [INFO] cheese - inserting 1000 documents. first: Sharafkhanly and last: Pole Mokotowskie -[2018-02-13T08:39:11.208] [INFO] cheese - batch complete in: 0.926 secs -[2018-02-13T08:39:11.246] [INFO] cheese - batch complete in: 0.849 secs -[2018-02-13T08:39:11.338] [INFO] cheese - batch complete in: 0.881 secs -[2018-02-13T08:39:11.375] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:39:11.733] [INFO] cheese - inserting 1000 documents. first: SeaQuest (disambiguation) and last: Timeline of Asian nations -[2018-02-13T08:39:11.772] [INFO] cheese - inserting 1000 documents. first: Septoria rosae and last: Amory Houghton, Jr. -[2018-02-13T08:39:11.824] [INFO] cheese - batch complete in: 1.12 secs -[2018-02-13T08:39:11.879] [INFO] cheese - inserting 1000 documents. first: Carl Critchlow and last: Second East–West Highway -[2018-02-13T08:39:11.919] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:39:12.009] [INFO] cheese - inserting 1000 documents. first: ECMA-94-2 and last: Doble Copacabana Grand Prix Fides -[2018-02-13T08:39:12.100] [INFO] cheese - inserting 1000 documents. first: Bhutan Laughingthrush and last: Category:Landforms of Jackson County, Florida -[2018-02-13T08:39:12.119] [INFO] cheese - batch complete in: 1.328 secs -[2018-02-13T08:39:12.208] [INFO] cheese - batch complete in: 1 secs -[2018-02-13T08:39:12.286] [INFO] cheese - inserting 1000 documents. first: Category:1626 in art and last: Category:Special schools in Surrey -[2018-02-13T08:39:12.293] [INFO] cheese - inserting 1000 documents. first: Mercedes-Benz SLR-Class and last: Yorkshire County Cricket -[2018-02-13T08:39:12.299] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:39:12.403] [INFO] cheese - inserting 1000 documents. first: CFRT and last: Colorado Dory -[2018-02-13T08:39:12.408] [INFO] cheese - batch complete in: 1.032 secs -[2018-02-13T08:39:12.435] [INFO] cheese - batch complete in: 1.097 secs -[2018-02-13T08:39:12.548] [INFO] cheese - batch complete in: 1.609 secs -[2018-02-13T08:39:12.579] [INFO] cheese - inserting 1000 documents. first: File:One Tree Hill - Season 1 - DVD.JPG and last: Bud Yorkin Productions -[2018-02-13T08:39:12.643] [INFO] cheese - inserting 1000 documents. first: Workspace Manager and last: Developments of Transformation optics -[2018-02-13T08:39:12.643] [INFO] cheese - batch complete in: 0.724 secs -[2018-02-13T08:39:12.735] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:39:12.791] [INFO] cheese - inserting 1000 documents. first: Derry Quinn and last: Ud-Din, Qamar -[2018-02-13T08:39:12.833] [INFO] cheese - batch complete in: 0.625 secs -[2018-02-13T08:39:12.972] [INFO] cheese - inserting 1000 documents. first: File:Korengal (film) poster 2014.jpg and last: UMS de Loum -[2018-02-13T08:39:13.002] [INFO] cheese - inserting 1000 documents. first: Wisconsin School of Law and last: List of islands of Vanuatu -[2018-02-13T08:39:13.009] [INFO] cheese - batch complete in: 0.71 secs -[2018-02-13T08:39:13.083] [INFO] cheese - inserting 1000 documents. first: Holger-Madsen and last: Jasmine Chen -[2018-02-13T08:39:13.096] [INFO] cheese - batch complete in: 0.977 secs -[2018-02-13T08:39:13.154] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:39:13.266] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/colorhexa.com and last: Belebu -[2018-02-13T08:39:13.367] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:39:13.401] [INFO] cheese - inserting 1000 documents. first: Asteromella brassicae and last: Charles H. Atherton -[2018-02-13T08:39:13.460] [INFO] cheese - inserting 1000 documents. first: Native American Venture Fund and last: Shantanu Maheshwari -[2018-02-13T08:39:13.521] [INFO] cheese - batch complete in: 0.877 secs -[2018-02-13T08:39:13.581] [INFO] cheese - inserting 1000 documents. first: White Knuckled Substance and last: Wikipedia:Articles for deletion/California bearing ratio -[2018-02-13T08:39:13.598] [INFO] cheese - inserting 1000 documents. first: Jan Almeloveen and last: File:Gorefest false.jpg -[2018-02-13T08:39:13.635] [INFO] cheese - batch complete in: 0.802 secs -[2018-02-13T08:39:13.641] [INFO] cheese - inserting 1000 documents. first: Luis Angel Firpo managers and last: Sumatran Green Pigeon -[2018-02-13T08:39:13.704] [INFO] cheese - batch complete in: 0.694 secs -[2018-02-13T08:39:13.709] [INFO] cheese - batch complete in: 0.974 secs -[2018-02-13T08:39:13.785] [INFO] cheese - batch complete in: 1.237 secs -[2018-02-13T08:39:14.074] [INFO] cheese - inserting 1000 documents. first: Category:Olympic fencers of Bohemia and last: File:Album The Camera And The Song frontcover.jpg -[2018-02-13T08:39:14.120] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Automatic restroom and last: Isleta del Sur -[2018-02-13T08:39:14.138] [INFO] cheese - inserting 1000 documents. first: Charles Faddis and last: Wikipedia:WikiProject Spam/COIReports/2007, Jun 11 -[2018-02-13T08:39:14.166] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:39:14.269] [INFO] cheese - batch complete in: 0.748 secs -[2018-02-13T08:39:14.305] [INFO] cheese - inserting 1000 documents. first: Candy Candy (song) and last: Monchy & Nathalia -[2018-02-13T08:39:14.317] [INFO] cheese - inserting 1000 documents. first: B. lutea and last: Yellow-browed Woodpecker -[2018-02-13T08:39:14.339] [INFO] cheese - batch complete in: 1.243 secs -[2018-02-13T08:39:14.438] [INFO] cheese - batch complete in: 0.734 secs -[2018-02-13T08:39:14.504] [INFO] cheese - batch complete in: 1.137 secs -[2018-02-13T08:39:14.579] [INFO] cheese - inserting 1000 documents. first: The Clinton Daily Journal and last: Category:Lists of populated places in Greece -[2018-02-13T08:39:14.702] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/8si.ru and last: Category:Iranian pole vaulters -[2018-02-13T08:39:14.714] [INFO] cheese - batch complete in: 1.005 secs -[2018-02-13T08:39:14.847] [INFO] cheese - batch complete in: 1.211 secs -[2018-02-13T08:39:14.885] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Reference desk/Archives/Language/2007 June 9 and last: George Schwabe -[2018-02-13T08:39:14.985] [INFO] cheese - batch complete in: 0.716 secs -[2018-02-13T08:39:14.996] [INFO] cheese - inserting 1000 documents. first: White-winged Woodpecker and last: We gaan naar Rome -[2018-02-13T08:39:14.996] [INFO] cheese - inserting 1000 documents. first: WXCQ and last: Wikipedia:Articles for deletion/Akinobu Uraka -[2018-02-13T08:39:15.022] [INFO] cheese - inserting 1000 documents. first: Male language (Ethiopia) and last: Verhoshizhemskiy District -[2018-02-13T08:39:15.031] [INFO] cheese - inserting 1000 documents. first: Illapel and last: Parabiaugmented dodecahedron -[2018-02-13T08:39:15.095] [INFO] cheese - batch complete in: 0.657 secs -[2018-02-13T08:39:15.141] [INFO] cheese - batch complete in: 0.975 secs -[2018-02-13T08:39:15.159] [INFO] cheese - batch complete in: 0.655 secs -[2018-02-13T08:39:15.205] [INFO] cheese - batch complete in: 1.419 secs -[2018-02-13T08:39:15.228] [INFO] cheese - inserting 1000 documents. first: Adam Polakoff and last: Wikipedia:Requests for comment/Diyako, Heja helweda, Muhamed -[2018-02-13T08:39:15.312] [INFO] cheese - batch complete in: 0.973 secs -[2018-02-13T08:39:15.409] [INFO] cheese - inserting 1000 documents. first: Lorenzino da Bologna and last: Cushing reaction -[2018-02-13T08:39:15.482] [INFO] cheese - batch complete in: 0.497 secs -[2018-02-13T08:39:15.512] [INFO] cheese - inserting 1000 documents. first: 1958 NCAA Swimming and Diving Championships and last: Gebechán -[2018-02-13T08:39:15.521] [INFO] cheese - inserting 1000 documents. first: Proper names derived from Draz- and last: File:F prendergast.jpg -[2018-02-13T08:39:15.619] [INFO] cheese - batch complete in: 0.772 secs -[2018-02-13T08:39:15.696] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:39:15.722] [INFO] cheese - inserting 1000 documents. first: Category:Landforms of St. Francis County, Arkansas and last: Variable Dwarf Kingfisher -[2018-02-13T08:39:15.809] [INFO] cheese - inserting 1000 documents. first: Verhoshizhemski District and last: Stroud (district) -[2018-02-13T08:39:15.862] [INFO] cheese - batch complete in: 0.767 secs -[2018-02-13T08:39:15.912] [INFO] cheese - batch complete in: 0.753 secs -[2018-02-13T08:39:15.901] [INFO] cheese - inserting 1000 documents. first: Stationary phase (chemistry) and last: Jastrzębia, Świętokrzyskie Voivodeship -[2018-02-13T08:39:15.965] [INFO] cheese - inserting 1000 documents. first: Death of Oury Jalloh and last: Argiope keyserlingi -[2018-02-13T08:39:16.012] [INFO] cheese - batch complete in: 0.87 secs -[2018-02-13T08:39:16.091] [INFO] cheese - batch complete in: 0.779 secs -[2018-02-13T08:39:16.189] [INFO] cheese - inserting 1000 documents. first: Bronze-winged parrot and last: Jacob Yost -[2018-02-13T08:39:16.328] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:39:16.353] [INFO] cheese - inserting 1000 documents. first: Metabiaugmented dodecahedron and last: Richard Wylly Habersham -[2018-02-13T08:39:16.378] [INFO] cheese - inserting 1000 documents. first: Mountain Kingfisher and last: Punawithi BTS Station -[2018-02-13T08:39:16.425] [INFO] cheese - inserting 1000 documents. first: Building & Construction Trades Council v. Associated Builders & Contractors of Massachusetts/Rhode Island, Inc. and last: Category:Bolivian female long-distance runners -[2018-02-13T08:39:16.441] [INFO] cheese - batch complete in: 0.579 secs -[2018-02-13T08:39:16.491] [INFO] cheese - batch complete in: 0.872 secs -[2018-02-13T08:39:16.502] [INFO] cheese - inserting 1000 documents. first: Template:Moldovan "A" Division seasons and last: BMMRS -[2018-02-13T08:39:16.578] [INFO] cheese - batch complete in: 1.373 secs -[2018-02-13T08:39:16.683] [INFO] cheese - batch complete in: 0.986 secs -[2018-02-13T08:39:16.789] [INFO] cheese - inserting 1000 documents. first: MD-8 and last: Portal:Indigenous peoples of North America/Things you can do -[2018-02-13T08:39:16.804] [INFO] cheese - inserting 1000 documents. first: Smainak and last: Wikipedia:Help desk/Archives/2012 March 25 -[2018-02-13T08:39:16.811] [INFO] cheese - inserting 1000 documents. first: Jacob Fassett and last: John Sherwin -[2018-02-13T08:39:16.838] [INFO] cheese - batch complete in: 0.51 secs -[2018-02-13T08:39:16.857] [INFO] cheese - batch complete in: 0.766 secs -[2018-02-13T08:39:16.902] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:16.999] [INFO] cheese - inserting 1000 documents. first: Category:Afghan shot putters and last: File:Domenic Marte.jpg -[2018-02-13T08:39:17.059] [INFO] cheese - batch complete in: 0.568 secs -[2018-02-13T08:39:17.135] [INFO] cheese - inserting 1000 documents. first: Pha Dhampa Sangye and last: Category:Historic house museums in Louisiana -[2018-02-13T08:39:17.210] [INFO] cheese - inserting 1000 documents. first: Paul Dougherty (1877-1947) and last: File:Pachygrapsus marmoratus 2009 G4.jpg -[2018-02-13T08:39:17.237] [INFO] cheese - batch complete in: 1.225 secs -[2018-02-13T08:39:17.272] [INFO] cheese - inserting 1000 documents. first: Bone Box and last: Lee Geyer -[2018-02-13T08:39:17.295] [INFO] cheese - batch complete in: 0.612 secs -[2018-02-13T08:39:17.317] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:39:17.415] [INFO] cheese - inserting 1000 documents. first: Category:South Carolina railroads and last: Trinity Washington University -[2018-02-13T08:39:17.442] [INFO] cheese - inserting 1000 documents. first: Punnawithi BTS station and last: Culama caliginosa -[2018-02-13T08:39:17.496] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/detroityes.com and last: Wikipedia:Main Page history/2012 March 28 -[2018-02-13T08:39:17.549] [INFO] cheese - batch complete in: 0.97 secs -[2018-02-13T08:39:17.551] [INFO] cheese - batch complete in: 1.11 secs -[2018-02-13T08:39:17.600] [INFO] cheese - inserting 1000 documents. first: Category:Bissau-Guinean male sprinters and last: Marcus Garvey: Look for me in the Whirlwind -[2018-02-13T08:39:17.632] [INFO] cheese - inserting 1000 documents. first: Category:Baptist schools and last: Colossus (Roller Coaster) -[2018-02-13T08:39:17.641] [INFO] cheese - batch complete in: 0.738 secs -[2018-02-13T08:39:17.665] [INFO] cheese - batch complete in: 0.605 secs -[2018-02-13T08:39:17.819] [INFO] cheese - batch complete in: 0.962 secs -[2018-02-13T08:39:17.911] [INFO] cheese - inserting 1000 documents. first: Lee W. Metcalf and last: Katsunuma Nobutomo -[2018-02-13T08:39:17.924] [INFO] cheese - inserting 1000 documents. first: Peacock Alley (room) and last: Me album -[2018-02-13T08:39:17.985] [INFO] cheese - batch complete in: 0.666 secs -[2018-02-13T08:39:18.083] [INFO] cheese - batch complete in: 0.846 secs -[2018-02-13T08:39:18.122] [INFO] cheese - inserting 1000 documents. first: Tancred (given name) and last: Mikhail Mikhailovich Roshchin -[2018-02-13T08:39:18.227] [INFO] cheese - batch complete in: 0.931 secs -[2018-02-13T08:39:18.423] [INFO] cheese - inserting 1000 documents. first: Albert II, Duke of Mecklenburg-Stargard and last: HEPCA -[2018-02-13T08:39:18.424] [INFO] cheese - inserting 1000 documents. first: Culama treicleiota and last: Kelly Garrett (actress) -[2018-02-13T08:39:18.455] [INFO] cheese - batch complete in: 0.812 secs -[2018-02-13T08:39:18.503] [INFO] cheese - inserting 1000 documents. first: Enhydriodon and last: Category:Cape Verdean male marathon runners -[2018-02-13T08:39:18.563] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:39:18.628] [INFO] cheese - inserting 1000 documents. first: File:Arms by andrew.jpg and last: List of World Embryo chapters -[2018-02-13T08:39:18.632] [INFO] cheese - batch complete in: 0.966 secs -[2018-02-13T08:39:18.719] [INFO] cheese - inserting 1000 documents. first: Christopher Acosta and last: Floorfillers -[2018-02-13T08:39:18.725] [INFO] cheese - inserting 1000 documents. first: Markham Stouffville Hospital and last: Mount Pleasant, County Durham -[2018-02-13T08:39:18.741] [INFO] cheese - batch complete in: 0.658 secs -[2018-02-13T08:39:18.777] [INFO] cheese - inserting 1000 documents. first: BarcoGraphics and last: File:ABC 7.jpg -[2018-02-13T08:39:18.790] [INFO] cheese - batch complete in: 0.971 secs -[2018-02-13T08:39:18.881] [INFO] cheese - batch complete in: 1.332 secs -[2018-02-13T08:39:18.895] [INFO] cheese - batch complete in: 0.91 secs -[2018-02-13T08:39:19.027] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota maps and last: Pinoy Pop Superstar The Finalists -[2018-02-13T08:39:19.032] [INFO] cheese - inserting 1000 documents. first: Eberhard Grün and last: Tubize 2179 -[2018-02-13T08:39:19.080] [INFO] cheese - batch complete in: 0.624 secs -[2018-02-13T08:39:19.081] [INFO] cheese - batch complete in: 0.854 secs -[2018-02-13T08:39:19.144] [INFO] cheese - inserting 1000 documents. first: Suzana Douglass and last: Metro-Goldwyn-Mayer, Inc. -[2018-02-13T08:39:19.190] [INFO] cheese - inserting 1000 documents. first: Acoustics (Minus the Bear EP) and last: Democratic Party of Texas -[2018-02-13T08:39:19.190] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Wikipack Africa Content/Battle of Sio and last: File:IMI, Kritva'15.jpg -[2018-02-13T08:39:19.203] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:39:19.253] [INFO] cheese - batch complete in: 0.512 secs -[2018-02-13T08:39:19.261] [INFO] cheese - batch complete in: 0.629 secs -[2018-02-13T08:39:19.342] [INFO] cheese - inserting 1000 documents. first: Samuel Taliaferro and last: Thomas F. Lewis -[2018-02-13T08:39:19.374] [INFO] cheese - batch complete in: 0.479 secs -[2018-02-13T08:39:19.424] [INFO] cheese - inserting 1000 documents. first: Seton Portage Historic Provincial Park and last: Lü Shao -[2018-02-13T08:39:19.493] [INFO] cheese - inserting 1000 documents. first: Category:Emirati airline chief executives and last: Wikipedia:WikiProject Spam/LinkReports/nap.st -[2018-02-13T08:39:19.577] [INFO] cheese - inserting 1000 documents. first: Buftea and last: Clemens non papa -[2018-02-13T08:39:19.560] [INFO] cheese - batch complete in: 0.77 secs -[2018-02-13T08:39:19.643] [INFO] cheese - inserting 1000 documents. first: Pigface Vs. The World and last: Sir William Brown, 1st Baronet, of Astrop -[2018-02-13T08:39:19.655] [INFO] cheese - batch complete in: 0.575 secs -[2018-02-13T08:39:19.666] [INFO] cheese - inserting 1000 documents. first: Category:Deaths from cancer in Thailand and last: Kaladyuz -[2018-02-13T08:39:19.619] [INFO] cheese - inserting 1000 documents. first: U.S. Army Japan Aviation Detachment Japan and last: Scarce dart -[2018-02-13T08:39:19.762] [INFO] cheese - inserting 1000 documents. first: Judith and Holofernes (disambiguation) and last: Tetraibidion sahlbergi -[2018-02-13T08:39:19.756] [INFO] cheese - batch complete in: 0.503 secs -[2018-02-13T08:39:19.782] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:39:19.826] [INFO] cheese - batch complete in: 0.945 secs -[2018-02-13T08:39:19.838] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:39:19.904] [INFO] cheese - inserting 1000 documents. first: John Ballenden and last: Wikipedia:IANAL -[2018-02-13T08:39:19.922] [INFO] cheese - batch complete in: 0.719 secs -[2018-02-13T08:39:20.043] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:39:20.291] [INFO] cheese - inserting 1000 documents. first: Jacques Villeneuve, Sr. and last: File:Cups14.jpg -[2018-02-13T08:39:20.363] [INFO] cheese - inserting 1000 documents. first: 05-cv-784 and last: Maharaja Jagatjij Singh -[2018-02-13T08:39:20.419] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:39:20.529] [INFO] cheese - batch complete in: 0.773 secs -[2018-02-13T08:39:20.580] [INFO] cheese - inserting 1000 documents. first: Scarce Dart and last: Category:Vietnamese male middle-distance runners -[2018-02-13T08:39:20.608] [INFO] cheese - inserting 1000 documents. first: Grammatical cases and last: Estates of the Netherlands Antilles -[2018-02-13T08:39:20.610] [INFO] cheese - inserting 1000 documents. first: Twilight Records and last: Paul VI Audience Hall -[2018-02-13T08:39:20.676] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/chicksgrovequarry.co.uk and last: Kiss (Mai Kuraki song) -[2018-02-13T08:39:20.690] [INFO] cheese - batch complete in: 0.908 secs -[2018-02-13T08:39:20.728] [INFO] cheese - batch complete in: 0.685 secs -[2018-02-13T08:39:20.764] [INFO] cheese - batch complete in: 1.204 secs -[2018-02-13T08:39:20.801] [INFO] cheese - inserting 1000 documents. first: Andrew Fetterly Wilkes Krier and last: File:Saraswati Park.jpg -[2018-02-13T08:39:20.879] [INFO] cheese - batch complete in: 1.041 secs -[2018-02-13T08:39:21.008] [INFO] cheese - batch complete in: 1.086 secs -[2018-02-13T08:39:21.012] [INFO] cheese - inserting 1000 documents. first: Better Loosen Up and last: Wikipedia:Articles for deletion/Koenma -[2018-02-13T08:39:21.097] [INFO] cheese - inserting 1000 documents. first: File:Cups13.jpg and last: Mars science laboratory mission -[2018-02-13T08:39:21.129] [INFO] cheese - batch complete in: 1.302 secs -[2018-02-13T08:39:21.191] [INFO] cheese - batch complete in: 0.771 secs -[2018-02-13T08:39:21.234] [INFO] cheese - inserting 1000 documents. first: Brenda Duff Frazier and last: Sequential Walking -[2018-02-13T08:39:21.271] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:39:21.284] [INFO] cheese - inserting 1000 documents. first: Linear extension and last: Javier Mejías Leal -[2018-02-13T08:39:21.390] [INFO] cheese - batch complete in: 0.662 secs -[2018-02-13T08:39:21.544] [INFO] cheese - inserting 1000 documents. first: 2016 Summer Olympic Games and last: Autoroute 30 -[2018-02-13T08:39:21.592] [INFO] cheese - inserting 1000 documents. first: Pennsylvania Reserve Defense Corps and last: Untermyer Fountain -[2018-02-13T08:39:21.631] [INFO] cheese - inserting 1000 documents. first: Hundred of Mongolata and last: Justice Myers -[2018-02-13T08:39:21.667] [INFO] cheese - inserting 1000 documents. first: Category:University of Peradeniya and last: Artemio "Vibora" Ricarte -[2018-02-13T08:39:21.670] [INFO] cheese - batch complete in: 0.906 secs -[2018-02-13T08:39:21.695] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:39:21.756] [INFO] cheese - batch complete in: 1.066 secs -[2018-02-13T08:39:21.839] [INFO] cheese - batch complete in: 0.917 secs -[2018-02-13T08:39:21.896] [INFO] cheese - inserting 1000 documents. first: Major productions of Swan Lake derived from its 1895 revival and last: Kalika, Kaski -[2018-02-13T08:39:21.916] [INFO] cheese - inserting 1000 documents. first: American anthrax attacks and last: Beech T-34C Turbo Mentor -[2018-02-13T08:39:22.059] [INFO] cheese - batch complete in: 0.788 secs -[2018-02-13T08:39:22.071] [INFO] cheese - batch complete in: 0.879 secs -[2018-02-13T08:39:22.140] [INFO] cheese - inserting 1000 documents. first: Better loosen up and last: Willie Hefner -[2018-02-13T08:39:22.178] [INFO] cheese - inserting 1000 documents. first: Category:Liberian folklore and last: Boot shot -[2018-02-13T08:39:22.270] [INFO] cheese - batch complete in: 0.88 secs -[2018-02-13T08:39:22.273] [INFO] cheese - batch complete in: 1.144 secs -[2018-02-13T08:39:22.377] [INFO] cheese - inserting 1000 documents. first: Paul Jones (footballer born 1953) and last: Vishtasp Jalali -[2018-02-13T08:39:22.436] [INFO] cheese - inserting 1000 documents. first: Andy Crawford (1960's footballer) and last: Gaulish languages -[2018-02-13T08:39:22.457] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:39:22.468] [INFO] cheese - inserting 1000 documents. first: Modified BSD licence and last: NPL (disambiguation) -[2018-02-13T08:39:22.474] [INFO] cheese - inserting 1000 documents. first: Artemio "El Vibora" Ricarte and last: Route 1 (Paraguay) -[2018-02-13T08:39:22.508] [INFO] cheese - batch complete in: 0.751 secs -[2018-02-13T08:39:22.540] [INFO] cheese - inserting 1000 documents. first: H. Pollard and last: Category:1974 establishments in Canada -[2018-02-13T08:39:22.552] [INFO] cheese - inserting 1000 documents. first: Pirebedil' and last: Sal Guarriello -[2018-02-13T08:39:22.552] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:39:22.600] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:39:22.641] [INFO] cheese - batch complete in: 0.581 secs -[2018-02-13T08:39:22.671] [INFO] cheese - batch complete in: 0.599 secs -[2018-02-13T08:39:22.840] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 6001-6500 and last: Edmonton-St. Albert -[2018-02-13T08:39:22.842] [INFO] cheese - inserting 1000 documents. first: Farm to Market Road 3428 (Texas) and last: Shayne McMenemy -[2018-02-13T08:39:22.859] [INFO] cheese - batch complete in: 0.259 secs -[2018-02-13T08:39:22.909] [INFO] cheese - batch complete in: 0.639 secs -[2018-02-13T08:39:23.051] [INFO] cheese - inserting 1000 documents. first: Junior Mance Special and last: NAVSTAR II-4 -[2018-02-13T08:39:23.123] [INFO] cheese - inserting 1000 documents. first: Theodore M. Brown and last: G. T. Popa -[2018-02-13T08:39:23.144] [INFO] cheese - inserting 1000 documents. first: FC Kremin Kremenchuk season 2005-06 and last: List of minor planets: 52001-53000 -[2018-02-13T08:39:23.162] [INFO] cheese - inserting 1000 documents. first: File:EastWindsorCTseal.png and last: Oraukwu, Anambra -[2018-02-13T08:39:23.173] [INFO] cheese - batch complete in: 0.665 secs -[2018-02-13T08:39:23.174] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:39:23.283] [INFO] cheese - inserting 1000 documents. first: Category:Art museums established in 1974 and last: Moose Factory, Ontario -[2018-02-13T08:39:23.373] [INFO] cheese - batch complete in: 0.731 secs -[2018-02-13T08:39:23.401] [INFO] cheese - batch complete in: 0.944 secs -[2018-02-13T08:39:23.512] [INFO] cheese - inserting 1000 documents. first: Willie G. Hefner and last: Magnolia macrophylla -[2018-02-13T08:39:23.560] [INFO] cheese - batch complete in: 0.888 secs -[2018-02-13T08:39:23.652] [INFO] cheese - inserting 1000 documents. first: Bonnie Clutter and last: Judith Burmeister -[2018-02-13T08:39:23.735] [INFO] cheese - batch complete in: 1.462 secs -[2018-02-13T08:39:23.814] [INFO] cheese - inserting 1000 documents. first: 1998 Swisscom Challenge - Doubles and last: Bermuda - United States relations -[2018-02-13T08:39:23.875] [INFO] cheese - batch complete in: 1.323 secs -[2018-02-13T08:39:23.878] [INFO] cheese - batch complete in: 0.704 secs -[2018-02-13T08:39:23.994] [INFO] cheese - inserting 1000 documents. first: John Smith (Disney) and last: Alberta Highway 770 -[2018-02-13T08:39:24.125] [INFO] cheese - batch complete in: 1.216 secs -[2018-02-13T08:39:24.220] [INFO] cheese - inserting 1000 documents. first: 1974-75 Portuguese Liga and last: 2008-09 Arab Champions League -[2018-02-13T08:39:24.248] [INFO] cheese - inserting 1000 documents. first: Jeona and last: Category:History of Vyborg -[2018-02-13T08:39:24.259] [INFO] cheese - batch complete in: 0.381 secs -[2018-02-13T08:39:24.307] [INFO] cheese - inserting 1000 documents. first: Khalil Ahmad al-Saharanpuri and last: Western !Kung -[2018-02-13T08:39:24.324] [INFO] cheese - inserting 1000 documents. first: 2 51 honeycomb and last: Category:Canada political party histogram templates -[2018-02-13T08:39:24.372] [INFO] cheese - inserting 1000 documents. first: List of Melbourne Heart FC players and last: Kimsaqucha (disambiguation) -[2018-02-13T08:39:24.373] [INFO] cheese - batch complete in: 1.2 secs -[2018-02-13T08:39:24.404] [INFO] cheese - batch complete in: 1.031 secs -[2018-02-13T08:39:24.424] [INFO] cheese - batch complete in: 0.863 secs -[2018-02-13T08:39:24.508] [INFO] cheese - batch complete in: 1.107 secs -[2018-02-13T08:39:24.601] [INFO] cheese - inserting 1000 documents. first: Portal:Louisiana/Projects and last: Americana (film) -[2018-02-13T08:39:24.644] [INFO] cheese - batch complete in: 0.385 secs -[2018-02-13T08:39:24.806] [INFO] cheese - inserting 1000 documents. first: Morecambe Bay cockling disaster 2004 and last: Teletouch -[2018-02-13T08:39:24.838] [INFO] cheese - inserting 1000 documents. first: Zagurski and last: Lorestan province -[2018-02-13T08:39:24.917] [INFO] cheese - inserting 1000 documents. first: Punjabi music and last: Odd man out -[2018-02-13T08:39:24.930] [INFO] cheese - batch complete in: 1.054 secs -[2018-02-13T08:39:24.971] [INFO] cheese - inserting 1000 documents. first: Judo at the 2010 South American Games - Women's 78kg and last: Camaldine Abraw -[2018-02-13T08:39:24.979] [INFO] cheese - batch complete in: 0.853 secs -[2018-02-13T08:39:25.048] [INFO] cheese - batch complete in: 0.404 secs -[2018-02-13T08:39:25.111] [INFO] cheese - batch complete in: 1.376 secs -[2018-02-13T08:39:25.167] [INFO] cheese - inserting 1000 documents. first: Grapevine trunk disease and last: Aberdare Urban District Council election, 1903 -[2018-02-13T08:39:25.210] [INFO] cheese - inserting 1000 documents. first: Greg Billington and last: Category:1988 American novels -[2018-02-13T08:39:25.216] [INFO] cheese - inserting 1000 documents. first: File:Maryland-easternshore.png and last: File:R1a distribution Eurasia.jpg -[2018-02-13T08:39:25.255] [INFO] cheese - inserting 1000 documents. first: Flat-headed Cat and last: Ultra-prominent summits of Hawaii -[2018-02-13T08:39:25.264] [INFO] cheese - batch complete in: 0.756 secs -[2018-02-13T08:39:25.297] [INFO] cheese - inserting 1000 documents. first: 1996-97 Nemzeti Bajnokság I and last: Nicaragua - United States relations -[2018-02-13T08:39:25.331] [INFO] cheese - batch complete in: 0.958 secs -[2018-02-13T08:39:25.391] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:39:25.391] [INFO] cheese - batch complete in: 0.987 secs -[2018-02-13T08:39:25.413] [INFO] cheese - batch complete in: 0.365 secs -[2018-02-13T08:39:25.581] [INFO] cheese - inserting 1000 documents. first: File:Shorey.jpg and last: Vabadussõjalaste Liit -[2018-02-13T08:39:25.619] [INFO] cheese - batch complete in: 0.64 secs -[2018-02-13T08:39:25.696] [INFO] cheese - inserting 1000 documents. first: Namibia-Zimbabwe relations and last: Iran-Switzerland relations -[2018-02-13T08:39:25.728] [INFO] cheese - batch complete in: 0.315 secs -[2018-02-13T08:39:25.767] [INFO] cheese - inserting 1000 documents. first: Philosophy of psychiatry and last: Charles-Marie de Trolong du Rumain -[2018-02-13T08:39:25.833] [INFO] cheese - inserting 1000 documents. first: Karl Lanckoronski and last: Catellus Development Corporation -[2018-02-13T08:39:25.833] [INFO] cheese - batch complete in: 0.502 secs -[2018-02-13T08:39:25.861] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured list candidates/2008 Summer Olympics medal table and last: File:Pacific Coast University logo.png -[2018-02-13T08:39:25.880] [INFO] cheese - inserting 1000 documents. first: Cossula and last: Epipactis cruenta -[2018-02-13T08:39:25.943] [INFO] cheese - inserting 1000 documents. first: R and D and last: USS Southfield (1857) -[2018-02-13T08:39:25.979] [INFO] cheese - inserting 1000 documents. first: The Speed of Darkness (EP) and last: Evelle Younger -[2018-02-13T08:39:26.006] [INFO] cheese - batch complete in: 1.076 secs -[2018-02-13T08:39:26.013] [INFO] cheese - batch complete in: 0.622 secs -[2018-02-13T08:39:26.080] [INFO] cheese - inserting 1000 documents. first: Alexander Schrijver and last: Headful of Ghosts -[2018-02-13T08:39:26.089] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:39:26.097] [INFO] cheese - inserting 1000 documents. first: 1987 World Championships in Athletics - Men's 3000 metre steeplechase and last: 1986-87 New York Rangers season -[2018-02-13T08:39:26.128] [INFO] cheese - batch complete in: 0.509 secs -[2018-02-13T08:39:26.158] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:39:26.172] [INFO] cheese - batch complete in: 1.06 secs -[2018-02-13T08:39:26.325] [INFO] cheese - batch complete in: 0.933 secs -[2018-02-13T08:39:26.592] [INFO] cheese - inserting 1000 documents. first: 1975-76 Nemzeti Bajnokság I and last: 2002-03 Chelsea F.C. season -[2018-02-13T08:39:26.610] [INFO] cheese - inserting 1000 documents. first: Deep Earth Lady and last: File:Turn-Down Day - The Cyrkle.jpg -[2018-02-13T08:39:26.673] [INFO] cheese - inserting 1000 documents. first: 1933 World Figure Skating Championships and last: Frederick S. Perls -[2018-02-13T08:39:26.675] [INFO] cheese - batch complete in: 0.517 secs -[2018-02-13T08:39:26.728] [INFO] cheese - inserting 1000 documents. first: Epipactis subclausa and last: File:Stafford Railway Building Society.png -[2018-02-13T08:39:26.731] [INFO] cheese - batch complete in: 0.898 secs -[2018-02-13T08:39:26.759] [INFO] cheese - inserting 1000 documents. first: Misterton, Nottinghamshire and last: John Fife Symington -[2018-02-13T08:39:26.795] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:39:26.874] [INFO] cheese - batch complete in: 0.785 secs -[2018-02-13T08:39:26.874] [INFO] cheese - batch complete in: 0.746 secs -[2018-02-13T08:39:27.131] [INFO] cheese - inserting 1000 documents. first: Blackwater (town) and last: Wikipedia:Articles for deletion/The conscripts -[2018-02-13T08:39:27.209] [INFO] cheese - inserting 1000 documents. first: Template:Fb round2 2012–13 UEL GS and last: 1812 San Juan Capistrano earthquake -[2018-02-13T08:39:27.248] [INFO] cheese - inserting 1000 documents. first: Head Schoolboy and last: 1999-2000 La Liga -[2018-02-13T08:39:27.246] [INFO] cheese - batch complete in: 1.24 secs -[2018-02-13T08:39:27.299] [INFO] cheese - inserting 1000 documents. first: John Symington and last: Robert Gernon -[2018-02-13T08:39:27.336] [INFO] cheese - batch complete in: 0.66 secs -[2018-02-13T08:39:27.354] [INFO] cheese - inserting 1000 documents. first: Mike D and last: Derech Hashem -[2018-02-13T08:39:27.364] [INFO] cheese - batch complete in: 1.037 secs -[2018-02-13T08:39:27.386] [INFO] cheese - inserting 1000 documents. first: File:Janani DO Madhavan.png and last: King Daddy II -[2018-02-13T08:39:27.417] [INFO] cheese - batch complete in: 0.543 secs -[2018-02-13T08:39:27.498] [INFO] cheese - inserting 1000 documents. first: Sugar in wine and last: Tesinon -[2018-02-13T08:39:27.506] [INFO] cheese - batch complete in: 0.775 secs -[2018-02-13T08:39:27.536] [INFO] cheese - batch complete in: 1.364 secs -[2018-02-13T08:39:27.620] [INFO] cheese - batch complete in: 0.825 secs -[2018-02-13T08:39:27.697] [INFO] cheese - inserting 1000 documents. first: Austrian football championship 1954-55 and last: List of roads in Hamilton -[2018-02-13T08:39:27.722] [INFO] cheese - batch complete in: 0.386 secs -[2018-02-13T08:39:27.781] [INFO] cheese - inserting 1000 documents. first: PASKAL and last: Delaware (chicken) -[2018-02-13T08:39:27.897] [INFO] cheese - batch complete in: 1.023 secs -[2018-02-13T08:39:27.898] [INFO] cheese - inserting 1000 documents. first: Portal:Biotechnology/Title/35 and last: Bambui -[2018-02-13T08:39:27.927] [INFO] cheese - inserting 1000 documents. first: Ivan Niven and last: SnoRNA SNORD50 -[2018-02-13T08:39:27.962] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:39:27.969] [INFO] cheese - batch complete in: 0.722 secs -[2018-02-13T08:39:28.058] [INFO] cheese - inserting 1000 documents. first: Sun Bak and last: M. J. Kister -[2018-02-13T08:39:28.085] [INFO] cheese - inserting 1000 documents. first: File:ThisIsArtRecordingslogo.png and last: Another Code: R – A Journey into Lost Memories -[2018-02-13T08:39:28.108] [INFO] cheese - batch complete in: 0.602 secs -[2018-02-13T08:39:28.140] [INFO] cheese - inserting 1000 documents. first: 1936–37 Michigan Wolverines men's basketball team and last: Karasi Bey -[2018-02-13T08:39:28.174] [INFO] cheese - batch complete in: 0.554 secs -[2018-02-13T08:39:28.263] [INFO] cheese - batch complete in: 0.899 secs -[2018-02-13T08:39:28.409] [INFO] cheese - inserting 1000 documents. first: Pareto Priority Index and last: 1998 European Athletics Championships – Men's 110 metre hurdles -[2018-02-13T08:39:28.417] [INFO] cheese - inserting 1000 documents. first: Gary Beach and last: Category:British novels -[2018-02-13T08:39:28.495] [INFO] cheese - batch complete in: 0.959 secs -[2018-02-13T08:39:28.517] [INFO] cheese - inserting 1000 documents. first: Template:Urban Rail Transit in ASEAN and last: Pornographic film star -[2018-02-13T08:39:28.581] [INFO] cheese - inserting 1000 documents. first: Daniel Earhart and last: Arthur Wallace Steere -[2018-02-13T08:39:28.588] [INFO] cheese - batch complete in: 0.865 secs -[2018-02-13T08:39:28.638] [INFO] cheese - batch complete in: 0.741 secs -[2018-02-13T08:39:28.641] [INFO] cheese - inserting 1000 documents. first: Philippe deLacy and last: File:Tattertown.jpg -[2018-02-13T08:39:28.723] [INFO] cheese - batch complete in: 0.761 secs -[2018-02-13T08:39:28.789] [INFO] cheese - batch complete in: 0.82 secs -[2018-02-13T08:39:28.810] [INFO] cheese - inserting 1000 documents. first: Template:Did you know nominations/Exeter Racecourse and last: Borough of Greenwich -[2018-02-13T08:39:28.855] [INFO] cheese - inserting 1000 documents. first: Category:Geography of Humboldt County, California and last: Filthy Lucre (Californication episode) -[2018-02-13T08:39:28.884] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:39:28.960] [INFO] cheese - batch complete in: 0.786 secs -[2018-02-13T08:39:29.022] [INFO] cheese - inserting 1000 documents. first: Kazakhstan - United States relations and last: 2007-08 Cymru Alliance -[2018-02-13T08:39:29.075] [INFO] cheese - batch complete in: 0.487 secs -[2018-02-13T08:39:29.285] [INFO] cheese - inserting 1000 documents. first: George Noah and last: Lemelson Capital Management -[2018-02-13T08:39:29.306] [INFO] cheese - inserting 1000 documents. first: Ashbel Parsons Willard and last: Lyon and Healy -[2018-02-13T08:39:29.331] [INFO] cheese - inserting 1000 documents. first: 2012–13 Florida Panthers season and last: File:Eston railway station 1902.jpg -[2018-02-13T08:39:29.340] [INFO] cheese - batch complete in: 0.702 secs -[2018-02-13T08:39:29.410] [INFO] cheese - batch complete in: 0.687 secs -[2018-02-13T08:39:29.441] [INFO] cheese - inserting 1000 documents. first: Rajamundry and last: Note book -[2018-02-13T08:39:29.455] [INFO] cheese - inserting 1000 documents. first: Infantry divisions of the Soviet Union 1917-1957 and last: Fort Madison - Keokuk micropolitan area -[2018-02-13T08:39:29.516] [INFO] cheese - batch complete in: 1.253 secs -[2018-02-13T08:39:29.584] [INFO] cheese - inserting 1000 documents. first: Russ Bell and last: 01 (disambiguation) -[2018-02-13T08:39:29.597] [INFO] cheese - batch complete in: 0.521 secs -[2018-02-13T08:39:29.633] [INFO] cheese - inserting 1000 documents. first: BMW i Performance and last: File:Shaklee Logo.png -[2018-02-13T08:39:29.701] [INFO] cheese - batch complete in: 1.206 secs -[2018-02-13T08:39:29.715] [INFO] cheese - batch complete in: 0.755 secs -[2018-02-13T08:39:29.768] [INFO] cheese - batch complete in: 0.883 secs -[2018-02-13T08:39:29.872] [INFO] cheese - inserting 1000 documents. first: Leningrad udelivaet Ameriku Disk 2 and last: Wikipedia:List of featured articles English Wikipedia should have -[2018-02-13T08:39:29.948] [INFO] cheese - inserting 1000 documents. first: 1957-58 Beşiktaş JK season and last: 2009 World Championships in Athletics - Men's discus throw -[2018-02-13T08:39:29.969] [INFO] cheese - batch complete in: 0.369 secs -[2018-02-13T08:39:29.972] [INFO] cheese - batch complete in: 1.183 secs -[2018-02-13T08:39:29.987] [INFO] cheese - inserting 1000 documents. first: Kazi Zafar Ahmed and last: Earl Day Ehrhart -[2018-02-13T08:39:30.081] [INFO] cheese - batch complete in: 0.671 secs -[2018-02-13T08:39:30.160] [INFO] cheese - inserting 1000 documents. first: Template:Noarlunga Centre railway line and last: Frank Foss (disambiguation) -[2018-02-13T08:39:30.167] [INFO] cheese - inserting 1000 documents. first: Marion H. Knight and last: Local variables, recursion and reentrancy -[2018-02-13T08:39:30.221] [INFO] cheese - batch complete in: 0.453 secs -[2018-02-13T08:39:30.259] [INFO] cheese - batch complete in: 0.918 secs -[2018-02-13T08:39:30.280] [INFO] cheese - inserting 1000 documents. first: 02 (disambiguation) and last: Wikipedia:Articles for deletion/Problem Solver -[2018-02-13T08:39:30.423] [INFO] cheese - batch complete in: 0.708 secs -[2018-02-13T08:39:30.498] [INFO] cheese - inserting 1000 documents. first: Turbo Cat and last: Common Chimpanzees -[2018-02-13T08:39:30.532] [INFO] cheese - inserting 1000 documents. first: File:The Victorians Their story in pictures titlecard.jpg and last: Robert H. Gibbs, Jr. -[2018-02-13T08:39:30.582] [INFO] cheese - batch complete in: 0.613 secs -[2018-02-13T08:39:30.626] [INFO] cheese - inserting 1000 documents. first: Bernard Docker and last: Jeffrey D. Perry -[2018-02-13T08:39:30.674] [INFO] cheese - batch complete in: 0.592 secs -[2018-02-13T08:39:30.748] [INFO] cheese - inserting 1000 documents. first: Gloucester (MA) and last: Music of Basilicata -[2018-02-13T08:39:30.773] [INFO] cheese - batch complete in: 1.257 secs -[2018-02-13T08:39:30.866] [INFO] cheese - inserting 1000 documents. first: Lomond No. 37, Saskatchewan and last: 2014 Internationaux de Tennis de BLOIS – Singles -[2018-02-13T08:39:30.963] [INFO] cheese - inserting 1000 documents. first: Note-book and last: Congolese franc -[2018-02-13T08:39:30.983] [INFO] cheese - inserting 1000 documents. first: List of minor planets/11401-11500 and last: Category:Tourist attractions in the London Borough of Barking and Dagenham -[2018-02-13T08:39:31.035] [INFO] cheese - batch complete in: 0.776 secs -[2018-02-13T08:39:31.058] [INFO] cheese - inserting 1000 documents. first: Freeze Out (disambiguation) and last: Newfoundland expedition (1585) -[2018-02-13T08:39:31.074] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:39:31.169] [INFO] cheese - inserting 1000 documents. first: Journal of Raman Spectroscopy and last: Nancy J. Boettger -[2018-02-13T08:39:31.134] [INFO] cheese - batch complete in: 0.552 secs -[2018-02-13T08:39:31.211] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:31.261] [INFO] cheese - batch complete in: 0.586 secs -[2018-02-13T08:39:31.262] [INFO] cheese - batch complete in: 1.561 secs -[2018-02-13T08:39:31.333] [INFO] cheese - inserting 1000 documents. first: Battle at Rappahannock Station and last: Judge E. C. Hart -[2018-02-13T08:39:31.489] [INFO] cheese - batch complete in: 1.065 secs -[2018-02-13T08:39:31.643] [INFO] cheese - inserting 1000 documents. first: 2008-09 Coventry City F.C. season and last: Cambodia - People's Repbulic of China relations -[2018-02-13T08:39:31.767] [INFO] cheese - batch complete in: 0.633 secs -[2018-02-13T08:39:32.028] [INFO] cheese - inserting 1000 documents. first: Common bladderwort and last: SnoRNA SNORA51 -[2018-02-13T08:39:32.068] [INFO] cheese - batch complete in: 0.807 secs -[2018-02-13T08:39:32.071] [INFO] cheese - inserting 1000 documents. first: Teleki-Bolyai Library and last: Arshak Jamalyan -[2018-02-13T08:39:32.119] [INFO] cheese - inserting 1000 documents. first: Fleetwood Freeport and last: Category:Paintings by Caspar David Friedrich -[2018-02-13T08:39:32.126] [INFO] cheese - batch complete in: 0.915 secs -[2018-02-13T08:39:32.143] [INFO] cheese - inserting 1000 documents. first: Cureton House and last: Category:World War I ships of China -[2018-02-13T08:39:32.197] [INFO] cheese - inserting 1000 documents. first: Middle nasal meatus and last: Kamate haka -[2018-02-13T08:39:32.321] [INFO] cheese - batch complete in: 1.286 secs -[2018-02-13T08:39:32.340] [INFO] cheese - inserting 1000 documents. first: Pelosia and last: File:MoraIK.png -[2018-02-13T08:39:32.383] [INFO] cheese - batch complete in: 1.61 secs -[2018-02-13T08:39:32.413] [INFO] cheese - batch complete in: 1.339 secs -[2018-02-13T08:39:32.555] [INFO] cheese - inserting 1000 documents. first: Belarus - European Union relations and last: 7057 Al-Fārābī -[2018-02-13T08:39:32.701] [INFO] cheese - inserting 1000 documents. first: Young Hotspur and last: Beechmont -[2018-02-13T08:39:32.765] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T08:39:32.812] [INFO] cheese - batch complete in: 1.045 secs -[2018-02-13T08:39:32.890] [INFO] cheese - batch complete in: 0.822 secs -[2018-02-13T08:39:32.940] [INFO] cheese - inserting 1000 documents. first: Erectile bone and last: Andrew Stevens -[2018-02-13T08:39:32.961] [INFO] cheese - inserting 1000 documents. first: Jacqulin Hume Foundation and last: Painted Frog -[2018-02-13T08:39:33.156] [INFO] cheese - batch complete in: 1.03 secs -[2018-02-13T08:39:33.295] [INFO] cheese - batch complete in: 2.033 secs -[2018-02-13T08:39:33.333] [INFO] cheese - inserting 1000 documents. first: Elvira, Mistress of the dark and last: Zijad Švrakić -[2018-02-13T08:39:33.569] [INFO] cheese - batch complete in: 1.248 secs -[2018-02-13T08:39:33.757] [INFO] cheese - inserting 1000 documents. first: Emil Strub and last: Sir John Ellerman -[2018-02-13T08:39:33.763] [INFO] cheese - inserting 1000 documents. first: Stress measures and last: File:Springfield Kings.png -[2018-02-13T08:39:33.777] [INFO] cheese - inserting 1000 documents. first: Category:Paintings by Rudolf Frentz and last: Baghalduz-e Olya -[2018-02-13T08:39:33.839] [INFO] cheese - batch complete in: 1.074 secs -[2018-02-13T08:39:33.844] [INFO] cheese - inserting 1000 documents. first: Myxas glutinosa and last: Robert Bowne Minturn -[2018-02-13T08:39:33.923] [INFO] cheese - batch complete in: 1.54 secs -[2018-02-13T08:39:33.927] [INFO] cheese - inserting 1000 documents. first: John Lovelace, 2nd Baron Lovelace and last: Book:Wikipedia Signpost/2006-05-01 -[2018-02-13T08:39:33.931] [INFO] cheese - batch complete in: 1.517 secs -[2018-02-13T08:39:33.943] [INFO] cheese - batch complete in: 1.053 secs -[2018-02-13T08:39:34.170] [INFO] cheese - batch complete in: 1.358 secs -[2018-02-13T08:39:34.253] [INFO] cheese - inserting 1000 documents. first: Symbols of Himachal Pradesh and last: Wikipedia:Articles for deletion/Janine Circincione -[2018-02-13T08:39:34.380] [INFO] cheese - inserting 1000 documents. first: Dominik Kun and last: Wikipedia:BMJ/Navbox -[2018-02-13T08:39:34.402] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:39:34.405] [INFO] cheese - inserting 1000 documents. first: Jim Rose Circus and last: Wikipedia:Today's featured article/August 27, 2005 -[2018-02-13T08:39:34.441] [INFO] cheese - batch complete in: 0.871 secs -[2018-02-13T08:39:34.528] [INFO] cheese - inserting 1000 documents. first: Federal electoral districts of Mexico and last: Garadheancal -[2018-02-13T08:39:34.541] [INFO] cheese - batch complete in: 1.246 secs -[2018-02-13T08:39:34.666] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:39:34.774] [INFO] cheese - inserting 1000 documents. first: Classical wave tunneling and last: File:The Benevolent Volume Lurkings.jpg -[2018-02-13T08:39:34.837] [INFO] cheese - batch complete in: 0.914 secs -[2018-02-13T08:39:34.844] [INFO] cheese - inserting 1000 documents. first: Category:North Dakota Supreme Court and last: Byron Brad McCrimmon -[2018-02-13T08:39:34.955] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Military history/News/Newsletter March 2006 and last: Madara (manga) -[2018-02-13T08:39:34.964] [INFO] cheese - batch complete in: 1.021 secs -[2018-02-13T08:39:35.017] [INFO] cheese - inserting 1000 documents. first: Book:Wikipedia Signpost/2006-05-08 and last: Category:Eurovision songs of Portugal -[2018-02-13T08:39:35.095] [INFO] cheese - batch complete in: 1.163 secs -[2018-02-13T08:39:35.191] [INFO] cheese - inserting 1000 documents. first: 72993 Hannahlivsey and last: Shany Kedmy -[2018-02-13T08:39:35.205] [INFO] cheese - batch complete in: 1.034 secs -[2018-02-13T08:39:35.296] [INFO] cheese - batch complete in: 0.894 secs -[2018-02-13T08:39:35.388] [INFO] cheese - inserting 1000 documents. first: Fenario and last: Canadian Journal of Occupational Therapy -[2018-02-13T08:39:35.448] [INFO] cheese - inserting 1000 documents. first: Template:User EU Balkans and last: List of Registered Historic Places in Maine -[2018-02-13T08:39:35.481] [INFO] cheese - batch complete in: 1.039 secs -[2018-02-13T08:39:35.616] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Today's featured article/August 28, 2005 and last: Intermediate representation -[2018-02-13T08:39:35.648] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:39:35.730] [INFO] cheese - inserting 1000 documents. first: Canfield Village Middle School and last: Incurvaria circulella -[2018-02-13T08:39:35.830] [INFO] cheese - batch complete in: 1.288 secs -[2018-02-13T08:39:35.846] [INFO] cheese - inserting 1000 documents. first: Server Appliance and last: Super 530F -[2018-02-13T08:39:35.830] [INFO] cheese - batch complete in: 0.993 secs -[2018-02-13T08:39:35.992] [INFO] cheese - inserting 1000 documents. first: Mpumalanga Province and last: HFSJ -[2018-02-13T08:39:36.044] [INFO] cheese - batch complete in: 1.08 secs -[2018-02-13T08:39:36.188] [INFO] cheese - inserting 1000 documents. first: List of minor planets: 472001–473000 and last: Category:Transportation buildings and structures on the National Register of Historic Places in Oregon -[2018-02-13T08:39:36.169] [INFO] cheese - batch complete in: 1.073 secs -[2018-02-13T08:39:36.278] [INFO] cheese - batch complete in: 0.982 secs -[2018-02-13T08:39:36.409] [INFO] cheese - inserting 1000 documents. first: Wildlife sanctuaries in Uttar Pradesh and last: Wescorp Energy Inc. -[2018-02-13T08:39:36.445] [INFO] cheese - inserting 1000 documents. first: Helston Community College and last: Uganik, Alaska -[2018-02-13T08:39:36.462] [INFO] cheese - inserting 1000 documents. first: Slava Moscow and last: Portal:London/Showcase picture/06 2010 -[2018-02-13T08:39:36.475] [INFO] cheese - batch complete in: 0.827 secs -[2018-02-13T08:39:36.495] [INFO] cheese - inserting 1000 documents. first: Evangelical Church of the Union and last: Eisosomes -[2018-02-13T08:39:36.655] [INFO] cheese - batch complete in: 1.174 secs -[2018-02-13T08:39:36.692] [INFO] cheese - batch complete in: 1.487 secs -[2018-02-13T08:39:36.740] [INFO] cheese - batch complete in: 0.909 secs -[2018-02-13T08:39:36.894] [INFO] cheese - inserting 1000 documents. first: Chile men's national basketball team and last: Haerentibaculum -[2018-02-13T08:39:36.955] [INFO] cheese - inserting 1000 documents. first: İstranca Mountains and last: Fernando Margáin -[2018-02-13T08:39:36.962] [INFO] cheese - batch complete in: 0.684 secs -[2018-02-13T08:39:36.975] [INFO] cheese - inserting 1000 documents. first: Mmm, Mmm, Mmm, Mmm and last: Buford "Mad Dog" Tannen -[2018-02-13T08:39:36.999] [INFO] cheese - inserting 1000 documents. first: Strathcona Baptist Girls' Grammar and last: Portal:Nontheism/Selected biography/December 2006 -[2018-02-13T08:39:37.064] [INFO] cheese - batch complete in: 0.895 secs -[2018-02-13T08:39:37.112] [INFO] cheese - batch complete in: 1.282 secs -[2018-02-13T08:39:37.166] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:39:37.224] [INFO] cheese - inserting 1000 documents. first: Template:Fb team Caernarvon Athletic and last: Arudou -[2018-02-13T08:39:37.299] [INFO] cheese - inserting 1000 documents. first: Philiodoron frater and last: Category:Paraguayan historical films -[2018-02-13T08:39:37.344] [INFO] cheese - batch complete in: 0.868 secs -[2018-02-13T08:39:37.394] [INFO] cheese - inserting 1000 documents. first: Wikipedia:WikiProject Spam/LinkReports/cheapkingdom.com and last: File:More Than A Thousand album cover.jpg -[2018-02-13T08:39:37.418] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:39:37.463] [INFO] cheese - inserting 1000 documents. first: Over-the-air broadcasting and last: Chris Stokes (bobsleigh) -[2018-02-13T08:39:37.494] [INFO] cheese - inserting 1000 documents. first: Riba (disambiguation) and last: Dongo language (Ubangian) -[2018-02-13T08:39:37.513] [INFO] cheese - batch complete in: 0.821 secs -[2018-02-13T08:39:37.568] [INFO] cheese - batch complete in: 0.606 secs -[2018-02-13T08:39:37.615] [INFO] cheese - batch complete in: 0.875 secs -[2018-02-13T08:39:37.910] [INFO] cheese - inserting 1000 documents. first: Sumerian calendar and last: Ohio State Route 720 -[2018-02-13T08:39:37.980] [INFO] cheese - batch complete in: 0.814 secs -[2018-02-13T08:39:37.989] [INFO] cheese - inserting 1000 documents. first: Debito and last: Demoblican -[2018-02-13T08:39:38.018] [INFO] cheese - inserting 1000 documents. first: Category:Paraguayan films by genre and last: Thoracibidion flavopictum -[2018-02-13T08:39:38.087] [INFO] cheese - batch complete in: 0.743 secs -[2018-02-13T08:39:38.115] [INFO] cheese - inserting 1000 documents. first: National Museum of the United States Navy and last: KOZK -[2018-02-13T08:39:38.141] [INFO] cheese - batch complete in: 0.723 secs -[2018-02-13T08:39:38.152] [INFO] cheese - inserting 1000 documents. first: Haravrd and last: Jose Vasconcelos -[2018-02-13T08:39:38.228] [INFO] cheese - inserting 1000 documents. first: History of Arrah and last: Template:Ranks and Insignia of Non NATO Navies/OR/New Zealand -[2018-02-13T08:39:38.276] [INFO] cheese - batch complete in: 1.212 secs -[2018-02-13T08:39:38.324] [INFO] cheese - inserting 1000 documents. first: Alexandru Birladeanu and last: Sergei Solnechnikov -[2018-02-13T08:39:38.388] [INFO] cheese - batch complete in: 1.275 secs -[2018-02-13T08:39:38.414] [INFO] cheese - batch complete in: 0.845 secs -[2018-02-13T08:39:38.499] [INFO] cheese - batch complete in: 0.884 secs -[2018-02-13T08:39:38.506] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Sockpuppet investigations/Makebelievee and last: Fourth Avenue / Ninth Street (New York City Subway) -[2018-02-13T08:39:38.611] [INFO] cheese - batch complete in: 1.098 secs -[2018-02-13T08:39:38.720] [INFO] cheese - inserting 1000 documents. first: Demublican and last: Lake alta -[2018-02-13T08:39:38.784] [INFO] cheese - batch complete in: 0.697 secs -[2018-02-13T08:39:38.816] [INFO] cheese - inserting 1000 documents. first: Edward Horne and last: Doc Shebeleza -[2018-02-13T08:39:38.891] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:39:39.027] [INFO] cheese - inserting 1000 documents. first: USS Whippoorwill (AMS-207) and last: File:Fiume-class.PNG -[2018-02-13T08:39:39.102] [INFO] cheese - batch complete in: 1.122 secs -[2018-02-13T08:39:39.108] [INFO] cheese - inserting 1000 documents. first: Lake dunstan and last: Novosibirsk reservoir -[2018-02-13T08:39:39.141] [INFO] cheese - batch complete in: 0.357 secs -[2018-02-13T08:39:39.144] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Motto of the day/May 7, 2012 and last: German University of Administrative Sciences -[2018-02-13T08:39:39.201] [INFO] cheese - inserting 1000 documents. first: Draft:Reflective crack and last: Category:Lists of people killed in World War I -[2018-02-13T08:39:39.219] [INFO] cheese - inserting 1000 documents. first: U.S. Route 78 in Alabama and last: UN/LOCODE:CSULC -[2018-02-13T08:39:39.280] [INFO] cheese - batch complete in: 0.781 secs -[2018-02-13T08:39:39.321] [INFO] cheese - inserting 1000 documents. first: Category:Alternative rock groups from Nevada and last: Asana (software) -[2018-02-13T08:39:39.405] [INFO] cheese - batch complete in: 0.99 secs -[2018-02-13T08:39:39.405] [INFO] cheese - batch complete in: 1.129 secs -[2018-02-13T08:39:39.433] [INFO] cheese - inserting 1000 documents. first: Big penis and last: Sanford Independence Bowl -[2018-02-13T08:39:39.442] [INFO] cheese - batch complete in: 0.83 secs -[2018-02-13T08:39:39.480] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Dance Evolution and last: Steven Schwartz (vice-chancellor) -[2018-02-13T08:39:39.542] [INFO] cheese - inserting 1000 documents. first: Fonthill lake and last: Salvation Committee -[2018-02-13T08:39:39.567] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:39:39.572] [INFO] cheese - batch complete in: 1.184 secs -[2018-02-13T08:39:39.570] [INFO] cheese - batch complete in: 0.429 secs -[2018-02-13T08:39:39.917] [INFO] cheese - inserting 1000 documents. first: Cannibal Isles and last: File:Mercer University Historic Quad North.jpg -[2018-02-13T08:39:39.925] [INFO] cheese - inserting 1000 documents. first: File:Syd.dock.jpg and last: Underdaks -[2018-02-13T08:39:40.022] [INFO] cheese - batch complete in: 0.742 secs -[2018-02-13T08:39:40.063] [INFO] cheese - inserting 1000 documents. first: Nogai in the Bala Türkvizyon Song Contest and last: Olympic Art Competition -[2018-02-13T08:39:40.066] [INFO] cheese - batch complete in: 0.964 secs -[2018-02-13T08:39:40.080] [INFO] cheese - inserting 1000 documents. first: Undersecretary of Commerce for International Trade and last: Category:PAOK FC players -[2018-02-13T08:39:40.119] [INFO] cheese - inserting 1000 documents. first: Ricardo Balbín and last: Category:Flamenco musicians by instrument -[2018-02-13T08:39:40.155] [INFO] cheese - batch complete in: 0.75 secs -[2018-02-13T08:39:40.217] [INFO] cheese - batch complete in: 0.65 secs -[2018-02-13T08:39:40.237] [INFO] cheese - batch complete in: 0.831 secs -[2018-02-13T08:39:40.252] [INFO] cheese - inserting 1000 documents. first: Template:Tollywood films and last: Jose Armando Melo -[2018-02-13T08:39:40.278] [INFO] cheese - inserting 1000 documents. first: File:Gela405.PNG and last: Wikipedia:Articles for deletion/Blütreich -[2018-02-13T08:39:40.324] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:39:40.403] [INFO] cheese - batch complete in: 0.809 secs -[2018-02-13T08:39:40.527] [INFO] cheese - inserting 1000 documents. first: MainStay Independence Bowl and last: Weaubleau structure -[2018-02-13T08:39:40.648] [INFO] cheese - inserting 1000 documents. first: Template:SIA Barnstar and last: Template:Editnotices/Page/Mike Mills -[2018-02-13T08:39:40.656] [INFO] cheese - batch complete in: 1.084 secs -[2018-02-13T08:39:40.740] [INFO] cheese - batch complete in: 0.718 secs -[2018-02-13T08:39:40.765] [INFO] cheese - inserting 1000 documents. first: Glabrous dermis and last: Third way -[2018-02-13T08:39:40.774] [INFO] cheese - inserting 1000 documents. first: File:Street in the Sorbian Quarter.jpg and last: Masters W65 800 metres world record progression -[2018-02-13T08:39:40.883] [INFO] cheese - inserting 1000 documents. first: Quarryhouse Moor Ponds and last: Category:Summer Olympics competitors for American Samoa -[2018-02-13T08:39:40.887] [INFO] cheese - batch complete in: 0.67 secs -[2018-02-13T08:39:40.895] [INFO] cheese - batch complete in: 0.829 secs -[2018-02-13T08:39:40.949] [INFO] cheese - batch complete in: 0.794 secs -[2018-02-13T08:39:40.985] [INFO] cheese - inserting 1000 documents. first: Richard Vigneault and last: Minnesota dot -[2018-02-13T08:39:41.097] [INFO] cheese - batch complete in: 0.86 secs -[2018-02-13T08:39:41.204] [INFO] cheese - inserting 1000 documents. first: Category:Halloween albums and last: Girlfriend -[2018-02-13T08:39:41.300] [INFO] cheese - inserting 1000 documents. first: Template:Editnotices/Page/Mine Smell Like Honey and last: County Route 53 (Saratoga County, New York) -[2018-02-13T08:39:41.315] [INFO] cheese - batch complete in: 0.912 secs -[2018-02-13T08:39:41.409] [INFO] cheese - batch complete in: 0.669 secs -[2018-02-13T08:39:41.437] [INFO] cheese - inserting 1000 documents. first: Reicke and last: 13 Voices (song) -[2018-02-13T08:39:41.487] [INFO] cheese - inserting 1000 documents. first: Creighton model and last: Unauthorised copying -[2018-02-13T08:39:41.510] [INFO] cheese - inserting 1000 documents. first: Masters W70 800 metres world record progression and last: Final Fantasy Explorers -[2018-02-13T08:39:41.553] [INFO] cheese - batch complete in: 0.604 secs -[2018-02-13T08:39:41.571] [INFO] cheese - batch complete in: 0.676 secs -[2018-02-13T08:39:41.642] [INFO] cheese - inserting 1000 documents. first: File:CTA red line rerouted.jpg and last: FAR Part 103 -[2018-02-13T08:39:41.651] [INFO] cheese - batch complete in: 0.763 secs -[2018-02-13T08:39:41.767] [INFO] cheese - batch complete in: 1.443 secs -[2018-02-13T08:39:41.790] [INFO] cheese - inserting 1000 documents. first: Etsuko Kozakura and last: Inertial -[2018-02-13T08:39:41.831] [INFO] cheese - inserting 1000 documents. first: William Berger and last: Stuora galbajávri -[2018-02-13T08:39:41.954] [INFO] cheese - batch complete in: 0.638 secs -[2018-02-13T08:39:42.007] [INFO] cheese - batch complete in: 1.351 secs -[2018-02-13T08:39:42.026] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Articles for deletion/Vargathrone and last: WIN 35428 -[2018-02-13T08:39:42.121] [INFO] cheese - inserting 1000 documents. first: County Route 54 (Saratoga County, New York) and last: Graphical waterfall -[2018-02-13T08:39:42.206] [INFO] cheese - batch complete in: 1.109 secs -[2018-02-13T08:39:42.246] [INFO] cheese - batch complete in: 0.837 secs -[2018-02-13T08:39:42.286] [INFO] cheese - inserting 1000 documents. first: Gaz Metan II Mediaș and last: Walther Gothan -[2018-02-13T08:39:42.320] [INFO] cheese - inserting 1000 documents. first: Dumb-Ass Partners and last: River Melfa -[2018-02-13T08:39:42.337] [INFO] cheese - inserting 1000 documents. first: Suolojávri (kautokeino) and last: Heatmeiser -[2018-02-13T08:39:42.356] [INFO] cheese - batch complete in: 0.402 secs -[2018-02-13T08:39:42.435] [INFO] cheese - batch complete in: 0.882 secs -[2018-02-13T08:39:42.487] [INFO] cheese - batch complete in: 0.836 secs -[2018-02-13T08:39:42.603] [INFO] cheese - inserting 1000 documents. first: United States women's movement (1963 - 1981) and last: Ammonoossuc -[2018-02-13T08:39:42.624] [INFO] cheese - inserting 1000 documents. first: Forst Cantú and last: Zombification -[2018-02-13T08:39:42.779] [INFO] cheese - inserting 1000 documents. first: Great south pond and last: San Telmo Island -[2018-02-13T08:39:42.781] [INFO] cheese - batch complete in: 1.21 secs -[2018-02-13T08:39:42.779] [INFO] cheese - batch complete in: 1.012 secs -[2018-02-13T08:39:42.901] [INFO] cheese - batch complete in: 0.545 secs -[2018-02-13T08:39:43.118] [INFO] cheese - inserting 1000 documents. first: Group responsibility and last: Ghaleh Joogh -[2018-02-13T08:39:43.196] [INFO] cheese - inserting 1000 documents. first: Wikipedia:Featured article removal candidates/Economics and last: Mount LeConte -[2018-02-13T08:39:43.201] [INFO] cheese - batch complete in: 0.954 secs -[2018-02-13T08:39:43.205] [INFO] cheese - inserting 1000 documents. first: NBN Virtual School of Emerging Sciences and last: Eucosma lugubrana -[2018-02-13T08:39:43.309] [INFO] cheese - inserting 1000 documents. first: Croniades pieria and last: File:Nigerian Capital Development Fund (NCDF), Old Logo.png -[2018-02-13T08:39:43.313] [INFO] cheese - batch complete in: 0.826 secs -[2018-02-13T08:39:43.371] [INFO] cheese - batch complete in: 1.165 secs -[2018-02-13T08:39:43.424] [INFO] cheese - inserting 1000 documents. first: Leslie Hunterr and last: Katherine Cressida -[2018-02-13T08:39:43.480] [INFO] cheese - batch complete in: 1.044 secs -[2018-02-13T08:39:43.522] [INFO] cheese - batch complete in: 0.74 secs -[2018-02-13T08:39:43.586] [INFO] cheese - inserting 1000 documents. first: Jang Dong-Gun and last: VT52 -[2018-02-13T08:39:43.725] [INFO] cheese - batch complete in: 1.718 secs -[2018-02-13T08:39:43.758] [INFO] cheese - inserting 1000 documents. first: McClelland College and last: Category:Solihull Moors F.C. players -[2018-02-13T08:39:43.769] [INFO] cheese - inserting 1000 documents. first: Category:Kindersley No. 290, Saskatchewan and last: Wikipedia:Featured article candidates/Waddesdon Road railway station/archive1 -[2018-02-13T08:39:43.868] [INFO] cheese - batch complete in: 0.967 secs -[2018-02-13T08:39:43.880] [INFO] cheese - batch complete in: 1.101 secs -[2018-02-13T08:39:43.895] [INFO] cheese - inserting 1000 documents. first: Ghal'eh Joogh and last: Category:Songs written by Michael Scholz -[2018-02-13T08:39:43.978] [INFO] cheese - inserting 1000 documents. first: Joseph Casper and last: USS Longspur (MHC-28) -[2018-02-13T08:39:44.004] [INFO] cheese - batch complete in: 0.801 secs -[2018-02-13T08:39:44.039] [INFO] cheese - inserting 1000 documents. first: Sir Thomas Stanhope and last: Religious drugs -[2018-02-13T08:39:44.054] [INFO] cheese - batch complete in: 0.531 secs -[2018-02-13T08:39:44.119] [INFO] cheese - batch complete in: 0.806 secs diff --git a/yarn.lock b/yarn.lock index 284e769..9709d97 100644 --- a/yarn.lock +++ b/yarn.lock @@ -952,7 +952,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.3, inherits@~2.0.1, inherits@~2.0.3: +inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.1, inherits@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" @@ -1628,6 +1628,10 @@ pretty-ms@^2.1.0: parse-ms "^1.0.0" plur "^1.0.0" +prettysize@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/prettysize/-/prettysize-1.1.0.tgz#c6c52f87161ff172ea435f375f99831dd9a97bb0" + process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" @@ -1812,7 +1816,7 @@ readable-stream@1.1.x, "readable-stream@1.x >=1.1.9", readable-stream@^1.0.31: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@2, readable-stream@^2.3.0: +readable-stream@2, readable-stream@^2.1.0, readable-stream@^2.3.0: version "2.3.4" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" dependencies: @@ -2017,6 +2021,10 @@ sax@0.5.x: version "0.5.8" resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1" +sax@>=0.6.0: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" @@ -2190,6 +2198,13 @@ streamroller@^0.7.0: mkdirp "^0.5.1" readable-stream "^2.3.0" +string-to-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/string-to-stream/-/string-to-stream-1.1.0.tgz#acf2c9ead1c418e148509a12d2cbb469f333a218" + dependencies: + inherits "^2.0.1" + readable-stream "^2.1.0" + string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" @@ -2510,6 +2525,17 @@ xml-stream@^0.4.5: node-expat "^2.3.1" readable-stream "^1.0.31" +xml2js@^0.4.19: + version "0.4.19" + resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" + dependencies: + sax ">=0.6.0" + xmlbuilder "~9.0.1" + +xmlbuilder@~9.0.1: + version "9.0.7" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" + xmlsplit@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/xmlsplit/-/xmlsplit-1.2.8.tgz#ed8857dbd90eada377d357c8ada704aebfc3a35c" From 5d6f6d32c27950fb4a6c7fe765dae21726833c76 Mon Sep 17 00:00:00 2001 From: devrim Date: Tue, 13 Feb 2018 22:52:25 -0800 Subject: [PATCH 17/42] reverted some files back to the main dir. i will clean this up later --- {old => src}/01-article-logic.js | 0 {old => src}/02-transform-wiki.js | 0 src/03-write-db.js | 40 +++++++++++++++++++++++++++++++ {old => src}/_done.js | 0 4 files changed, 40 insertions(+) rename {old => src}/01-article-logic.js (100%) rename {old => src}/02-transform-wiki.js (100%) create mode 100644 src/03-write-db.js rename {old => src}/_done.js (100%) diff --git a/old/01-article-logic.js b/src/01-article-logic.js similarity index 100% rename from old/01-article-logic.js rename to src/01-article-logic.js diff --git a/old/02-transform-wiki.js b/src/02-transform-wiki.js similarity index 100% rename from old/02-transform-wiki.js rename to src/02-transform-wiki.js diff --git a/src/03-write-db.js b/src/03-write-db.js new file mode 100644 index 0000000..f0dabc4 --- /dev/null +++ b/src/03-write-db.js @@ -0,0 +1,40 @@ + +// +checkWriteSuccess = (preCount,postCount,arr) => { + if (preCount+arr.length === postCount){ + console.log(`all parsed documents are inserted succesfully. total docs: ${postCount}`) + } + else { + // feature sugg.: + // let's check the difference betw arr & result obj. + // make a note of the ones that couldn't be inserted eg: + // db.collection("insert_errors").insertMany diff + // and maybe add an option to cli to only try the ones + // that have failed. + console.log("some documents couldn't be inserted.") + } + // return results for further goat yoga. + return +} + +const writeDb = async (arr, options, coll) => { + return new Promise( async (resolve,reject)=>{ + //let preCount = await options.collection.count() + //arrr = [{arr:arr}] + options.db.collection(coll).insertMany( arr, { ordered: false }, async (err, result) => { + if (err) { + // collect insert errors... + // tbd. skip duplicate key errors + // do not insert if err.writeErrors[x].code = 11000 + // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) + } + + let count = await options.collection.count() + // checkWriteSuccess(preCount,postCount,arr) + + resolve(`${arr.length} docs inserted. total:${count}`) + }) + }) + } + +module.exports = writeDb diff --git a/old/_done.js b/src/_done.js similarity index 100% rename from old/_done.js rename to src/_done.js From a51c3f35050d2b747472f7fbbc38a0929825b134 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 15 Feb 2018 09:58:18 -0500 Subject: [PATCH 18/42] removing unused variables ala linter --- package-lock.json | 3558 --------------------------------------- src/00-init-db.js | 2 +- src/01-article-logic.js | 9 +- src/03-write-db.js | 35 +- src/_done.js | 2 +- src/index.js | 29 +- src/multithreader.js | 40 +- src/worker.js | 105 +- 8 files changed, 125 insertions(+), 3655 deletions(-) delete mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 71dc3c6..0000000 --- a/package-lock.json +++ /dev/null @@ -1,3558 +0,0 @@ -{ - "name": "wikipedia-to-mongodb", - "version": "2.4.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "accepts": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", - "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", - "requires": { - "mime-types": "2.1.17", - "negotiator": "0.6.1" - } - }, - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - }, - "acorn-globals": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz", - "integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=", - "requires": { - "acorn": "4.0.13" - }, - "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" - } - } - }, - "addressparser": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz", - "integrity": "sha1-R6++GiqSYhkdtoOOT9HTm0CCF0Y=", - "optional": true - }, - "agent-base": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz", - "integrity": "sha1-1t4Q1a9hMtW9aSQn1G/FOFOQlMc=", - "requires": { - "extend": "3.0.1", - "semver": "5.0.3" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - }, - "semver": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", - "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=" - } - } - }, - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "optional": true, - "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.0.0", - "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1" - } - }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "requires": { - "kind-of": "3.2.2", - "longest": "1.0.1", - "repeat-string": "1.6.1" - } - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" - }, - "amqplib": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/amqplib/-/amqplib-0.5.2.tgz", - "integrity": "sha512-l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA==", - "optional": true, - "requires": { - "bitsyntax": "0.0.4", - "bluebird": "3.5.1", - "buffer-more-ints": "0.0.2", - "readable-stream": "1.1.14", - "safe-buffer": "5.1.1" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "optional": true - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "optional": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "optional": true - } - } - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "apparatus": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.9.tgz", - "integrity": "sha1-N9zSWDStC2UQdllikduCPusZCL0=", - "optional": true, - "requires": { - "sylvester": "0.0.21" - } - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", - "optional": true - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "ast-types": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.10.2.tgz", - "integrity": "sha512-ufWX953VU1eIuWqxS0nRDMYlGyFH+yxln5CsmIHlpzEt3fdYqUnRtsFt0XAsQot8OaVCwFqxT1RiwvtzYjeYeg==", - "optional": true - }, - "async": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/async/-/async-2.1.5.tgz", - "integrity": "sha1-5YfGhYCZSsZ/xW/4bTrFa9voELw=", - "optional": true, - "requires": { - "lodash": "4.17.5" - } - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "optional": true - }, - "aws4": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", - "optional": true - }, - "axios": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.15.3.tgz", - "integrity": "sha1-LJ1jiy4ZGgjqHWzJiOrda6W9wFM=", - "optional": true, - "requires": { - "follow-redirects": "1.0.0" - } - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "base64-js": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz", - "integrity": "sha1-EQHpVE9KdrG8OybUUsqW16NeeXg=" - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, - "requires": { - "tweetnacl": "0.14.5" - } - }, - "bindings": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz", - "integrity": "sha512-DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw==" - }, - "bitsyntax": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/bitsyntax/-/bitsyntax-0.0.4.tgz", - "integrity": "sha1-6xDMb4K4xJDj6FaY8H6D1G4MuoI=", - "optional": true, - "requires": { - "buffer-more-ints": "0.0.2" - } - }, - "bl": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", - "integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=", - "optional": true, - "requires": { - "readable-stream": "2.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "optional": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "optional": true - } - } - }, - "bluebird": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", - "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==", - "optional": true - }, - "body-parser": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", - "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", - "requires": { - "bytes": "3.0.0", - "content-type": "1.0.4", - "debug": "2.6.9", - "depd": "1.1.2", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "on-finished": "2.3.0", - "qs": "6.5.1", - "raw-body": "2.3.2", - "type-is": "1.6.15" - } - }, - "boom": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", - "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", - "optional": true, - "requires": { - "hoek": "4.2.0" - } - }, - "brace-expansion": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", - "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", - "requires": { - "balanced-match": "1.0.0", - "concat-map": "0.0.1" - } - }, - "bson": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/bson/-/bson-1.0.4.tgz", - "integrity": "sha1-k8ENOeqltYQVy8QFLz5T5WKwtyw=" - }, - "buffer": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz", - "integrity": "sha1-pyyTb3e5a/UvX357RnGAYoVR3vs=", - "requires": { - "base64-js": "0.0.8", - "ieee754": "1.1.8", - "isarray": "1.0.0" - } - }, - "buffer-more-ints": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz", - "integrity": "sha1-JrOIXRD6E9t/wBquOquHAZngEkw=" - }, - "buffer-shims": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", - "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=" - }, - "buildmail": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz", - "integrity": "sha1-h393OLeHKYccmhBeO4N9K+EaenI=", - "optional": true, - "requires": { - "addressparser": "1.0.1", - "libbase64": "0.1.0", - "libmime": "3.0.0", - "libqp": "1.1.0", - "nodemailer-fetch": "1.6.0", - "nodemailer-shared": "1.1.0", - "punycode": "1.4.1" - } - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "optional": true - }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "requires": { - "align-text": "0.1.4", - "lazy-cache": "1.0.4" - } - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "character-parser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", - "integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=", - "requires": { - "is-regex": "1.0.4" - } - }, - "circular-json": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.1.tgz", - "integrity": "sha512-UjgcRlTAhAkLeXmDe2wK7ktwy/tgAqxiSndTIPiFZuIPLZmzHzWMwUIe9h9m/OokypG7snxCDEuwJshGBdPvaw==" - }, - "clean-css": { - "version": "3.4.28", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", - "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", - "requires": { - "commander": "2.8.1", - "source-map": "0.4.4" - }, - "dependencies": { - "commander": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", - "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", - "requires": { - "graceful-readlink": "1.0.1" - } - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "requires": { - "amdefine": "1.0.1" - } - } - } - }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "requires": { - "center-align": "0.1.3", - "right-align": "0.1.3", - "wordwrap": "0.0.2" - } - }, - "cluster": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/cluster/-/cluster-0.7.7.tgz", - "integrity": "sha1-5JfiZ8yVa9CwUTrbSqOTNX0Ahe8=", - "requires": { - "log": "1.4.0", - "mkdirp": "0.5.1" - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - }, - "combined-stream": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", - "requires": { - "delayed-stream": "1.0.0" - } - }, - "commander": { - "version": "2.14.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz", - "integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==" - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "constantinople": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-3.1.0.tgz", - "integrity": "sha1-dWnKqKo/jVk11i4fqW+fcCzYHHk=", - "requires": { - "acorn": "3.3.0", - "is-expression": "2.1.0" - } - }, - "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "cookiejar": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz", - "integrity": "sha1-Qa1XsbVVlR7BcUEqgZQrHoIA00o=" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cryptiles": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", - "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", - "optional": true, - "requires": { - "boom": "5.2.0" - }, - "dependencies": { - "boom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", - "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", - "optional": true, - "requires": { - "hoek": "4.2.0" - } - } - } - }, - "css-parse": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz", - "integrity": "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs=" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "optional": true, - "requires": { - "assert-plus": "1.0.0" - } - }, - "data-uri-to-buffer": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz", - "integrity": "sha512-vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==", - "optional": true - }, - "date-format": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", - "integrity": "sha1-YV6CjiM90aubua4JUODOzPpuytg=" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", - "dev": true - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "optional": true - }, - "define-properties": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", - "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", - "dev": true, - "requires": { - "foreach": "2.0.5", - "object-keys": "1.0.11" - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", - "dev": true - }, - "degenerator": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-1.0.4.tgz", - "integrity": "sha1-/PSQo37OJmRk2cxDGrmMWBnO0JU=", - "optional": true, - "requires": { - "ast-types": "0.10.2", - "escodegen": "1.9.0", - "esprima": "3.1.3" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "doctypes": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz", - "integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=" - }, - "double-ended-queue": { - "version": "2.1.0-0", - "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", - "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=" - }, - "duplexer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", - "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", - "dev": true - }, - "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - }, - "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", - "requires": { - "is-arrayish": "0.2.1" - } - }, - "es-abstract": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz", - "integrity": "sha512-/uh/DhdqIOSkAWifU+8nG78vlQxdLckUdI/sPgy0VhuXi2qJ7T8czBmqIYtLQVpCIFYafChnsRsB5pyb1JdmCQ==", - "dev": true, - "requires": { - "es-to-primitive": "1.1.1", - "function-bind": "1.1.1", - "has": "1.0.1", - "is-callable": "1.1.3", - "is-regex": "1.0.4" - } - }, - "es-to-primitive": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", - "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", - "dev": true, - "requires": { - "is-callable": "1.1.3", - "is-date-object": "1.0.1", - "is-symbol": "1.0.1" - } - }, - "es6-promise": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.2.1.tgz", - "integrity": "sha1-7FYjOGgDKQkgcXDDlEjiREndH8Q=" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "escodegen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.0.tgz", - "integrity": "sha512-v0MYvNQ32bzwoG2OSFzWAkuahDQHK92JBN0pTAALJ4RIxEZe766QJPDR8Hqy7XNUy5K3fnVL76OqYAdc4TZEIw==", - "optional": true, - "requires": { - "esprima": "3.1.3", - "estraverse": "4.2.0", - "esutils": "2.0.2", - "optionator": "0.8.2", - "source-map": "0.5.7" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "optional": true - } - } - }, - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "optional": true - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "optional": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - }, - "event-lite": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/event-lite/-/event-lite-0.1.1.tgz", - "integrity": "sha1-R88IqNN9C2lM23s7F7UfqsZXYIY=" - }, - "express": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz", - "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=", - "requires": { - "accepts": "1.3.4", - "array-flatten": "1.1.1", - "body-parser": "1.18.2", - "content-disposition": "0.5.2", - "content-type": "1.0.4", - "cookie": "0.3.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "1.1.2", - "encodeurl": "1.0.2", - "escape-html": "1.0.3", - "etag": "1.8.1", - "finalhandler": "1.1.0", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "1.1.2", - "on-finished": "2.3.0", - "parseurl": "1.3.2", - "path-to-regexp": "0.1.7", - "proxy-addr": "2.0.2", - "qs": "6.5.1", - "range-parser": "1.2.0", - "safe-buffer": "5.1.1", - "send": "0.16.1", - "serve-static": "1.13.1", - "setprototypeof": "1.1.0", - "statuses": "1.3.1", - "type-is": "1.6.15", - "utils-merge": "1.0.1", - "vary": "1.1.2" - }, - "dependencies": { - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" - } - } - }, - "extend": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extend/-/extend-1.3.0.tgz", - "integrity": "sha1-0VFvsP9WJNLr+RI+odrFoZlABPg=" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", - "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=", - "optional": true - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", - "optional": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "optional": true - }, - "figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "dev": true, - "requires": { - "escape-string-regexp": "1.0.5", - "object-assign": "4.1.1" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true - }, - "filesize": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.0.tgz", - "integrity": "sha512-g5OWtoZWcPI56js1DFhIEqyG9tnu/7sG3foHwgS9KGYFMfsYguI3E+PRVCmtmE96VajQIEMRU2OhN+ME589Gdw==" - }, - "finalhandler": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", - "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", - "requires": { - "debug": "2.6.9", - "encodeurl": "1.0.2", - "escape-html": "1.0.3", - "on-finished": "2.3.0", - "parseurl": "1.3.2", - "statuses": "1.3.1", - "unpipe": "1.0.0" - }, - "dependencies": { - "statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" - } - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" - } - }, - "follow-redirects": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.0.0.tgz", - "integrity": "sha1-jjQpjL0uF28lTv/sdaHHjMhJ/Tc=", - "optional": true, - "requires": { - "debug": "2.6.9" - } - }, - "for-each": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz", - "integrity": "sha1-LEBFC5NI6X8oEyJZO6lnBLmr1NQ=", - "dev": true, - "requires": { - "is-function": "1.0.1" - } - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", - "dev": true - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "optional": true - }, - "form-data": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", - "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" - } - }, - "formidable": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz", - "integrity": "sha1-lriIb3w8NQi5Mta9cMTTqI818ak=" - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "ftp": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", - "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=", - "optional": true, - "requires": { - "readable-stream": "1.1.14", - "xregexp": "2.0.0" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "optional": true - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "optional": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "optional": true - } - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "generate-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", - "optional": true - }, - "generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "optional": true, - "requires": { - "is-property": "1.0.2" - } - }, - "get-caller-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" - }, - "get-uri": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-2.0.1.tgz", - "integrity": "sha512-7aelVrYqCLuVjq2kEKRTH8fXPTC0xKTkM+G7UlFkEwCXY3sFbSxvY375JoFowOAYbkaU47SrBvOefUlLZZ+6QA==", - "optional": true, - "requires": { - "data-uri-to-buffer": "1.2.0", - "debug": "2.6.9", - "extend": "3.0.1", - "file-uri-to-path": "1.0.0", - "ftp": "0.3.10", - "readable-stream": "2.2.7" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "optional": true - } - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "optional": true, - "requires": { - "assert-plus": "1.0.0" - } - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "optional": true - }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", - "optional": true, - "requires": { - "ajv": "5.5.2", - "har-schema": "2.0.0" - } - }, - "has": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", - "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", - "requires": { - "function-bind": "1.1.1" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "requires": { - "ansi-regex": "2.1.1" - } - }, - "hawk": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", - "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", - "optional": true, - "requires": { - "boom": "4.3.1", - "cryptiles": "3.1.2", - "hoek": "4.2.0", - "sntp": "2.1.0" - } - }, - "hipchat-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz", - "integrity": "sha1-ttJJdVQ3wZEII2d5nTupoPI7Ix4=", - "optional": true, - "requires": { - "lodash": "4.17.5", - "request": "2.83.0" - } - }, - "hoek": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", - "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" - }, - "hosted-git-info": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", - "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": "1.4.0" - }, - "dependencies": { - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" - } - } - }, - "http-proxy-agent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz", - "integrity": "sha1-zBzjjkU7+YSg93AtLdWcc9CBKEo=", - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - } - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "httpntlm": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz", - "integrity": "sha1-rQFScUOi6Hc8+uapb1hla7UqNLI=", - "requires": { - "httpreq": "0.4.24", - "underscore": "1.7.0" - }, - "dependencies": { - "underscore": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", - "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=" - } - } - }, - "httpreq": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/httpreq/-/httpreq-0.4.24.tgz", - "integrity": "sha1-QzX/2CzZaWaKOUZckprGHWOTYn8=" - }, - "https-proxy-agent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz", - "integrity": "sha1-NffabEjOTdv6JkiRrFk+5f+GceY=", - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - } - } - }, - "iconv": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/iconv/-/iconv-2.3.0.tgz", - "integrity": "sha512-eu9senpOZ7wzNweLX09jtrCdmEiie8Z5/iMxdIq3i7tkgg562EwKSU9yjXMz8ncaQ0B+845vbqAz+1kPFXzbtQ==", - "requires": { - "nan": "2.8.0" - } - }, - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" - }, - "ieee754": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", - "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" - }, - "inflection": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.10.0.tgz", - "integrity": "sha1-W//LEZetPoEFD44X4hZoCH7p6y8=", - "optional": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "int64-buffer": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/int64-buffer/-/int64-buffer-0.1.10.tgz", - "integrity": "sha1-J3siiofZWtd30HwTgyAiQGpHNCM=" - }, - "interpret": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", - "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", - "dev": true - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" - }, - "ip": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.0.1.tgz", - "integrity": "sha1-x+NWzeoiWucbNtcPLnGpK6TkJZA=", - "optional": true - }, - "ipaddr.js": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz", - "integrity": "sha1-1LUFvemUaYfM8PxY2QEP+WB+P6A=" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "requires": { - "builtin-modules": "1.1.1" - } - }, - "is-callable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", - "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=", - "dev": true - }, - "is-date-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", - "dev": true - }, - "is-expression": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-2.1.0.tgz", - "integrity": "sha1-kb6dR968/vB3l36XIr5tz7RGXvA=", - "requires": { - "acorn": "3.3.0", - "object-assign": "4.1.1" - } - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-function": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", - "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=", - "dev": true - }, - "is-my-json-valid": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz", - "integrity": "sha512-Q2khNw+oBlWuaYvEEHtKSw/pCxD2L5Rc1C+UQme9X6JdRDh7m5D7HkozA0qa3DUkQ6VzCnEm8mVIQPyIRkI5sQ==", - "optional": true, - "requires": { - "generate-function": "2.0.0", - "generate-object-property": "1.2.0", - "jsonpointer": "4.0.1", - "xtend": "4.0.1" - } - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" - }, - "is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", - "optional": true - }, - "is-regex": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", - "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", - "requires": { - "has": "1.0.1" - } - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "optional": true - }, - "is-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", - "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", - "dev": true - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "optional": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "optional": true - }, - "js-stringify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", - "integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds=" - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "jshashes": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/jshashes/-/jshashes-1.0.7.tgz", - "integrity": "sha1-vtjJeg6WMv0FE5FvVfdt1Uhr5Z8=" - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "optional": true - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", - "optional": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "jsonpointer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", - "optional": true - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "jstransformer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", - "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=", - "requires": { - "is-promise": "2.1.0", - "promise": "7.3.1" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "1.1.6" - } - }, - "kue": { - "version": "0.11.6", - "resolved": "https://registry.npmjs.org/kue/-/kue-0.11.6.tgz", - "integrity": "sha512-56Jic22qSqdJ3nNpkhVr6RUx/QKalfdBdU0m70hgBKEkhBAgdt6Qr74evec+bM+LGmNbEC6zGGDskX4mcgBYcQ==", - "requires": { - "body-parser": "1.18.2", - "express": "4.16.2", - "lodash": "4.17.5", - "nib": "1.1.2", - "node-redis-warlock": "0.2.0", - "pug": "2.0.0-rc.4", - "redis": "2.6.5", - "reds": "0.2.5", - "stylus": "0.54.5", - "yargs": "4.8.1" - } - }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "requires": { - "invert-kv": "1.0.0" - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "optional": true, - "requires": { - "prelude-ls": "1.1.2", - "type-check": "0.3.2" - } - }, - "libbase64": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz", - "integrity": "sha1-YjUag5VjrF/1vSbxL2Dpgwu3UeY=" - }, - "libmime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/libmime/-/libmime-3.0.0.tgz", - "integrity": "sha1-UaGp50SOy9Ms2lRCFnW7IbwJPaY=", - "requires": { - "iconv-lite": "0.4.15", - "libbase64": "0.1.0", - "libqp": "1.1.0" - }, - "dependencies": { - "iconv-lite": { - "version": "0.4.15", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", - "integrity": "sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es=" - } - } - }, - "libqp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz", - "integrity": "sha1-9ebgatdLeU+1tbZpiL9yjvHe2+g=" - }, - "line-by-line": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz", - "integrity": "sha512-MmwVPfOyp0lWnEZ3fBA8Ah4pMFvxO6WgWovqZNu7Y4J0TNnGcsV4S1LzECHbdgqk1hoHc2mFP1Axc37YUqwafg==" - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" - } - }, - "lodash": { - "version": "4.17.5", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz", - "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==" - }, - "lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" - }, - "log": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/log/-/log-1.4.0.tgz", - "integrity": "sha1-S6HYkP3iSbAx3KA7w36q8yVlbxw=" - }, - "log4js": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-2.5.3.tgz", - "integrity": "sha512-YL/qpTxYtK0iWWbuKCrevDZz5lh+OjyHHD+mICqpjnYGKdNRBvPeh/1uYjkKUemT1CSO4wwLOwphWMpKAnD9kw==", - "requires": { - "amqplib": "0.5.2", - "axios": "0.15.3", - "circular-json": "0.5.1", - "date-format": "1.2.0", - "debug": "3.1.0", - "hipchat-notifier": "1.1.0", - "loggly": "1.1.1", - "mailgun-js": "0.7.15", - "nodemailer": "2.7.2", - "redis": "2.8.0", - "semver": "5.5.0", - "slack-node": "0.2.0", - "streamroller": "0.7.0" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "redis": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", - "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", - "optional": true, - "requires": { - "double-ended-queue": "2.1.0-0", - "redis-commands": "1.3.1", - "redis-parser": "2.6.0" - } - } - } - }, - "loggly": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/loggly/-/loggly-1.1.1.tgz", - "integrity": "sha1-Cg/B0/o6XsRP3HuJe+uipGlc6+4=", - "optional": true, - "requires": { - "json-stringify-safe": "5.0.1", - "request": "2.75.0", - "timespan": "2.3.0" - }, - "dependencies": { - "assert-plus": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", - "optional": true - }, - "aws-sign2": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", - "optional": true - }, - "boom": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", - "requires": { - "hoek": "2.16.3" - } - }, - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", - "optional": true - }, - "cryptiles": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", - "optional": true, - "requires": { - "boom": "2.10.1" - } - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "optional": true - }, - "form-data": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.0.0.tgz", - "integrity": "sha1-bwrrrcxdoWwT4ezBETfYX5uIOyU=", - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" - } - }, - "har-validator": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", - "optional": true, - "requires": { - "chalk": "1.1.3", - "commander": "2.14.1", - "is-my-json-valid": "2.17.1", - "pinkie-promise": "2.0.1" - } - }, - "hawk": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", - "optional": true, - "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" - } - }, - "hoek": { - "version": "2.16.3", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" - }, - "http-signature": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", - "optional": true, - "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "qs": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz", - "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=", - "optional": true - }, - "request": { - "version": "2.75.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.75.0.tgz", - "integrity": "sha1-0rgmiihtoT6qXQGt9dGMyQ9lfZM=", - "optional": true, - "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.6.0", - "bl": "1.1.2", - "caseless": "0.11.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.0.0", - "har-validator": "2.0.6", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", - "node-uuid": "1.4.8", - "oauth-sign": "0.8.2", - "qs": "6.2.3", - "stringstream": "0.0.5", - "tough-cookie": "2.3.3", - "tunnel-agent": "0.4.3" - } - }, - "sntp": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", - "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", - "optional": true, - "requires": { - "hoek": "2.16.3" - } - }, - "tunnel-agent": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", - "optional": true - } - } - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" - }, - "lru-cache": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", - "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=" - }, - "mailcomposer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/mailcomposer/-/mailcomposer-4.0.1.tgz", - "integrity": "sha1-DhxEsqB890DuF9wUm6AJ8Zyt/rQ=", - "optional": true, - "requires": { - "buildmail": "4.0.1", - "libmime": "3.0.0" - } - }, - "mailgun-js": { - "version": "0.7.15", - "resolved": "https://registry.npmjs.org/mailgun-js/-/mailgun-js-0.7.15.tgz", - "integrity": "sha1-7jZqINrGTDwVwD1sGz4O15UlKrs=", - "optional": true, - "requires": { - "async": "2.1.5", - "debug": "2.2.0", - "form-data": "2.1.4", - "inflection": "1.10.0", - "is-stream": "1.1.0", - "path-proxy": "1.0.0", - "proxy-agent": "2.0.0", - "q": "1.4.1", - "tsscmp": "1.0.5" - }, - "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "optional": true, - "requires": { - "ms": "0.7.1" - } - }, - "form-data": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", - "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", - "optional": true - } - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" - }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "1.1.8" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, - "moment": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz", - "integrity": "sha512-Yh9y73JRljxW5QxN08Fner68eFLxM5ynNOAw2LbIB1YAGeQzZT8QFSUvkAz609Zf+IHhhaUxqZK8dG3W/+HEvg==" - }, - "momentjs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/momentjs/-/momentjs-2.0.0.tgz", - "integrity": "sha1-c9+QS0+kGPbjxgXoMc727VUY69Q=" - }, - "mongodb": { - "version": "2.2.34", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.34.tgz", - "integrity": "sha1-o09Zu+thdUrsQy3nLD/iFSakTBo=", - "requires": { - "es6-promise": "3.2.1", - "mongodb-core": "2.1.18", - "readable-stream": "2.2.7" - } - }, - "mongodb-core": { - "version": "2.1.18", - "resolved": "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.18.tgz", - "integrity": "sha1-TEYTm986HwMt7ZHbSfOO7AFlkFA=", - "requires": { - "bson": "1.0.4", - "require_optional": "1.0.1" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "msgpack-lite": { - "version": "0.1.26", - "resolved": "https://registry.npmjs.org/msgpack-lite/-/msgpack-lite-0.1.26.tgz", - "integrity": "sha1-3TxQsm8FnyXn7e42REGDWOKprYk=", - "requires": { - "event-lite": "0.1.1", - "ieee754": "1.1.8", - "int64-buffer": "0.1.10", - "isarray": "1.0.0" - } - }, - "nan": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", - "integrity": "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo=" - }, - "natural": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/natural/-/natural-0.2.1.tgz", - "integrity": "sha1-HrUVap2QtFkZSeIOlOvHe7Iznto=", - "optional": true, - "requires": { - "apparatus": "0.0.9", - "sylvester": "0.0.21", - "underscore": "1.8.3" - } - }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" - }, - "netmask": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz", - "integrity": "sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU=", - "optional": true - }, - "nib": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/nib/-/nib-1.1.2.tgz", - "integrity": "sha1-amnt5AgblcDe+L4CSkyK4MLLtsc=", - "requires": { - "stylus": "0.54.5" - } - }, - "node-expat": { - "version": "2.3.16", - "resolved": "https://registry.npmjs.org/node-expat/-/node-expat-2.3.16.tgz", - "integrity": "sha512-e3HyQI0lk5CXyYQ4RsDYGiWdY5LJxNMlNCzo4/gwqY8lhYIeTf5VwGirGDa1EPrcZROmOR37wHuFVnoHmOWnOw==", - "requires": { - "bindings": "1.3.0", - "nan": "2.8.0" - } - }, - "node-redis-scripty": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/node-redis-scripty/-/node-redis-scripty-0.0.5.tgz", - "integrity": "sha1-S/LTZattqyAswIt6xj+PVarcliU=", - "requires": { - "extend": "1.3.0", - "lru-cache": "2.7.3" - } - }, - "node-redis-warlock": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/node-redis-warlock/-/node-redis-warlock-0.2.0.tgz", - "integrity": "sha1-VjlbmUyCjo4y9qrlO5O27fzZeZA=", - "requires": { - "node-redis-scripty": "0.0.5", - "uuid": "2.0.3" - } - }, - "node-uuid": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", - "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=", - "optional": true - }, - "nodemailer": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-2.7.2.tgz", - "integrity": "sha1-8kLmSa7q45tsftdA73sGHEBNMPk=", - "optional": true, - "requires": { - "libmime": "3.0.0", - "mailcomposer": "4.0.1", - "nodemailer-direct-transport": "3.3.2", - "nodemailer-shared": "1.1.0", - "nodemailer-smtp-pool": "2.8.2", - "nodemailer-smtp-transport": "2.7.2", - "socks": "1.1.9" - }, - "dependencies": { - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "optional": true - }, - "socks": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.9.tgz", - "integrity": "sha1-Yo1+TQSRJDVEWsC25Fk3bLPm1pE=", - "optional": true, - "requires": { - "ip": "1.1.5", - "smart-buffer": "1.1.15" - } - } - } - }, - "nodemailer-direct-transport": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz", - "integrity": "sha1-6W+vuQNYVglH5WkBfZfmBzilCoY=", - "optional": true, - "requires": { - "nodemailer-shared": "1.1.0", - "smtp-connection": "2.12.0" - } - }, - "nodemailer-fetch": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz", - "integrity": "sha1-ecSQihwPXzdbc/6IjamCj23JY6Q=" - }, - "nodemailer-shared": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz", - "integrity": "sha1-z1mU4v0mjQD1zw+nZ6CBae2wfsA=", - "requires": { - "nodemailer-fetch": "1.6.0" - } - }, - "nodemailer-smtp-pool": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz", - "integrity": "sha1-LrlNbPhXgLG0clzoU7nL1ejajHI=", - "optional": true, - "requires": { - "nodemailer-shared": "1.1.0", - "nodemailer-wellknown": "0.1.10", - "smtp-connection": "2.12.0" - } - }, - "nodemailer-smtp-transport": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz", - "integrity": "sha1-A9ccdjFPFKx9vHvwM6am0W1n+3c=", - "optional": true, - "requires": { - "nodemailer-shared": "1.1.0", - "nodemailer-wellknown": "0.1.10", - "smtp-connection": "2.12.0" - } - }, - "nodemailer-wellknown": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz", - "integrity": "sha1-WG24EB2zDLRDjrVGc3pBqtDPE9U=" - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", - "requires": { - "hosted-git-info": "2.5.0", - "is-builtin-module": "1.0.0", - "semver": "5.5.0", - "validate-npm-package-license": "3.0.1" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-inspect": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz", - "integrity": "sha512-OHHnLgLNXpM++GnJRyyhbr2bwl3pPVm4YvaraHrRvDt/N3r+s/gDVHciA7EJBTkijKXj61ssgSAikq1fb0IBRg==", - "dev": true - }, - "object-keys": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", - "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=", - "dev": true - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1.0.2" - } - }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "optional": true, - "requires": { - "deep-is": "0.1.3", - "fast-levenshtein": "2.0.6", - "levn": "0.3.0", - "prelude-ls": "1.1.2", - "type-check": "0.3.2", - "wordwrap": "1.0.0" - }, - "dependencies": { - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "optional": true - } - } - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "requires": { - "lcid": "1.0.0" - } - }, - "pac-proxy-agent": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz", - "integrity": "sha512-QBELCWyLYPgE2Gj+4wUEiMscHrQ8nRPBzYItQNOHWavwBt25ohZHQC4qnd5IszdVVrFbLsQ+dPkm6eqdjJAmwQ==", - "optional": true, - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1", - "get-uri": "2.0.1", - "http-proxy-agent": "1.0.0", - "https-proxy-agent": "1.0.0", - "pac-resolver": "2.0.0", - "raw-body": "2.3.2", - "socks-proxy-agent": "2.1.1" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "optional": true - } - } - }, - "pac-resolver": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-2.0.0.tgz", - "integrity": "sha1-mbiNLxk/ve78HJpSnB8yYKtSd80=", - "optional": true, - "requires": { - "co": "3.0.6", - "degenerator": "1.0.4", - "ip": "1.0.1", - "netmask": "1.0.6", - "thunkify": "2.1.2" - }, - "dependencies": { - "co": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/co/-/co-3.0.6.tgz", - "integrity": "sha1-FEXyJsXrlWE45oyawwFn6n0ua9o=", - "optional": true - } - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "requires": { - "error-ex": "1.3.1" - } - }, - "parse-ms": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz", - "integrity": "sha1-VjRtR0nXjyNDDKDHE4UK75GqNh0=", - "dev": true - }, - "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "requires": { - "pinkie-promise": "2.0.1" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-parse": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", - "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=" - }, - "path-proxy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz", - "integrity": "sha1-GOijaFn8nS8aU7SN7hOFQ8Ag3l4=", - "optional": true, - "requires": { - "inflection": "1.3.8" - }, - "dependencies": { - "inflection": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.3.8.tgz", - "integrity": "sha1-y9Fg2p91sUw8xjV41POWeEvzAU4=", - "optional": true - } - } - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", - "optional": true - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "2.0.4" - } - }, - "plur": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz", - "integrity": "sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY=", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - }, - "pretty-ms": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz", - "integrity": "sha1-QlfCVt8/sLRR1q/6qwIYhBJpgdw=", - "dev": true, - "requires": { - "is-finite": "1.0.2", - "parse-ms": "1.0.1", - "plur": "1.0.0" - } - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "2.0.6" - } - }, - "proxy-addr": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz", - "integrity": "sha1-ZXFQT0e7mI7IGAJT+F3X4UlSvew=", - "requires": { - "forwarded": "0.1.2", - "ipaddr.js": "1.5.2" - } - }, - "proxy-agent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.0.0.tgz", - "integrity": "sha1-V+tTR6qAXXTsaByyVknbo5yTNJk=", - "optional": true, - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1", - "http-proxy-agent": "1.0.0", - "https-proxy-agent": "1.0.0", - "lru-cache": "2.6.5", - "pac-proxy-agent": "1.1.0", - "socks-proxy-agent": "2.1.1" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "optional": true - }, - "lru-cache": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", - "integrity": "sha1-5W1jVBSO3o13B7WNFDIg/QjfD9U=", - "optional": true - } - } - }, - "pug": { - "version": "2.0.0-rc.4", - "resolved": "https://registry.npmjs.org/pug/-/pug-2.0.0-rc.4.tgz", - "integrity": "sha512-SL7xovj6E2Loq9N0UgV6ynjMLW4urTFY/L/Fprhvz13Xc5vjzkjZjI1QHKq31200+6PSD8PyU6MqrtCTJj6/XA==", - "requires": { - "pug-code-gen": "2.0.0", - "pug-filters": "2.1.5", - "pug-lexer": "3.1.0", - "pug-linker": "3.0.3", - "pug-load": "2.0.9", - "pug-parser": "4.0.0", - "pug-runtime": "2.0.3", - "pug-strip-comments": "1.0.2" - } - }, - "pug-attrs": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-2.0.2.tgz", - "integrity": "sha1-i+KyIlVo/6ddG4Zpgr/59BEa/8s=", - "requires": { - "constantinople": "3.1.0", - "js-stringify": "1.0.2", - "pug-runtime": "2.0.3" - } - }, - "pug-code-gen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-2.0.0.tgz", - "integrity": "sha512-E4oiJT+Jn5tyEIloj8dIJQognbiNNp0i0cAJmYtQTFS0soJ917nlIuFtqVss3IXMEyQKUew3F4gIkBpn18KbVg==", - "requires": { - "constantinople": "3.1.0", - "doctypes": "1.1.0", - "js-stringify": "1.0.2", - "pug-attrs": "2.0.2", - "pug-error": "1.3.2", - "pug-runtime": "2.0.3", - "void-elements": "2.0.1", - "with": "5.1.1" - } - }, - "pug-error": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-1.3.2.tgz", - "integrity": "sha1-U659nSm7A89WRJOgJhCfVMR/XyY=" - }, - "pug-filters": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-2.1.5.tgz", - "integrity": "sha512-xkw71KtrC4sxleKiq+cUlQzsiLn8pM5+vCgkChW2E6oNOzaqTSIBKIQ5cl4oheuDzvJYCTSYzRaVinMUrV4YLQ==", - "requires": { - "clean-css": "3.4.28", - "constantinople": "3.1.0", - "jstransformer": "1.0.0", - "pug-error": "1.3.2", - "pug-walk": "1.1.5", - "resolve": "1.5.0", - "uglify-js": "2.8.29" - } - }, - "pug-lexer": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-3.1.0.tgz", - "integrity": "sha1-/QhzdtSmdbT1n4/vQiiDQ06VgaI=", - "requires": { - "character-parser": "2.2.0", - "is-expression": "3.0.0", - "pug-error": "1.3.2" - }, - "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" - }, - "is-expression": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-3.0.0.tgz", - "integrity": "sha1-Oayqa+f9HzRx3ELHQW5hwkMXrJ8=", - "requires": { - "acorn": "4.0.13", - "object-assign": "4.1.1" - } - } - } - }, - "pug-linker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-3.0.3.tgz", - "integrity": "sha512-DCKczglCXOzJ1lr4xUj/lVHYvS+lGmR2+KTCjZjtIpdwaN7lNOoX2SW6KFX5X4ElvW+6ThwB+acSUg08UJFN5A==", - "requires": { - "pug-error": "1.3.2", - "pug-walk": "1.1.5" - } - }, - "pug-load": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-2.0.9.tgz", - "integrity": "sha512-BDdZOCru4mg+1MiZwRQZh25+NTRo/R6/qArrdWIf308rHtWA5N9kpoUskRe4H6FslaQujC+DigH9LqlBA4gf6Q==", - "requires": { - "object-assign": "4.1.1", - "pug-walk": "1.1.5" - } - }, - "pug-parser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-4.0.0.tgz", - "integrity": "sha512-ocEUFPdLG9awwFj0sqi1uiZLNvfoodCMULZzkRqILryIWc/UUlDlxqrKhKjAIIGPX/1SNsvxy63+ayEGocGhQg==", - "requires": { - "pug-error": "1.3.2", - "token-stream": "0.0.1" - } - }, - "pug-runtime": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-2.0.3.tgz", - "integrity": "sha1-mBYmB7D86eJU1CfzOYelrucWi9o=" - }, - "pug-strip-comments": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-1.0.2.tgz", - "integrity": "sha1-0xOvoBvMN0mA4TmeI+vy65vchRM=", - "requires": { - "pug-error": "1.3.2" - } - }, - "pug-walk": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-1.1.5.tgz", - "integrity": "sha512-rJlH1lXerCIAtImXBze3dtKq/ykZMA4rpO9FnPcIgsWcxZLOvd8zltaoeOVFyBSSqCkhhJWbEbTMga8UxWUUSA==" - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "optional": true - }, - "q": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", - "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=", - "optional": true - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" - }, - "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" - }, - "raw-body": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "unpipe": "1.0.0" - } - }, - "re-emitter": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/re-emitter/-/re-emitter-1.1.3.tgz", - "integrity": "sha1-+p4xn/3u6zWycpbvDz03TawvUqc=", - "dev": true - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" - } - }, - "readable-stream": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.7.tgz", - "integrity": "sha1-BwV6y+JGeyIELTb5jFrVBwVOlbE=", - "requires": { - "buffer-shims": "1.0.0", - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true, - "requires": { - "resolve": "1.5.0" - } - }, - "redis": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/redis/-/redis-2.6.5.tgz", - "integrity": "sha1-h8Hv9KSJ+Utwhx89CLaYjyOpVoc=", - "requires": { - "double-ended-queue": "2.1.0-0", - "redis-commands": "1.3.1", - "redis-parser": "2.6.0" - } - }, - "redis-commands": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.1.tgz", - "integrity": "sha1-gdgm9F+pyLIBH0zXoP5ZfSQdRCs=" - }, - "redis-parser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", - "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=" - }, - "reds": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/reds/-/reds-0.2.5.tgz", - "integrity": "sha1-OKdn92Y810kDaEhpfYLHT9KbwB8=", - "optional": true, - "requires": { - "natural": "0.2.1", - "redis": "0.12.1" - }, - "dependencies": { - "redis": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/redis/-/redis-0.12.1.tgz", - "integrity": "sha1-ZN92rQ/IrOuuvSoGReikj6xJGF4=", - "optional": true - } - } - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "request": { - "version": "2.83.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", - "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", - "optional": true, - "requires": { - "aws-sign2": "0.7.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.3.1", - "har-validator": "5.0.3", - "hawk": "6.0.2", - "http-signature": "1.2.0", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", - "oauth-sign": "0.8.2", - "performance-now": "2.1.0", - "qs": "6.5.1", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.3", - "tunnel-agent": "0.6.0", - "uuid": "3.2.1" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "optional": true - }, - "uuid": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", - "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==", - "optional": true - } - } - }, - "requestretry": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/requestretry/-/requestretry-1.13.0.tgz", - "integrity": "sha512-Lmh9qMvnQXADGAQxsXHP4rbgO6pffCfuR8XUBdP9aitJcLQJxhp7YZK4xAVYXnPJ5E52mwrfiKQtKonPL8xsmg==", - "optional": true, - "requires": { - "extend": "3.0.1", - "lodash": "4.17.5", - "request": "2.83.0", - "when": "3.7.8" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "optional": true - } - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - }, - "require_optional": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", - "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", - "requires": { - "resolve-from": "2.0.0", - "semver": "5.5.0" - } - }, - "resolve": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz", - "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==", - "requires": { - "path-parse": "1.0.5" - } - }, - "resolve-from": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", - "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" - }, - "resumer": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", - "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", - "dev": true, - "requires": { - "through": "2.3.8" - } - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "requires": { - "align-text": "0.1.4" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - }, - "sax": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz", - "integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE=" - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" - }, - "send": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz", - "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==", - "requires": { - "debug": "2.6.9", - "depd": "1.1.2", - "destroy": "1.0.4", - "encodeurl": "1.0.2", - "escape-html": "1.0.3", - "etag": "1.8.1", - "fresh": "0.5.2", - "http-errors": "1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "2.3.0", - "range-parser": "1.2.0", - "statuses": "1.3.1" - }, - "dependencies": { - "statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" - } - } - }, - "serve-static": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz", - "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==", - "requires": { - "encodeurl": "1.0.2", - "escape-html": "1.0.3", - "parseurl": "1.3.2", - "send": "0.16.1" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" - }, - "shelljs": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz", - "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", - "dev": true, - "requires": { - "glob": "7.0.6", - "interpret": "1.1.0", - "rechoir": "0.6.2" - } - }, - "slack-node": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/slack-node/-/slack-node-0.2.0.tgz", - "integrity": "sha1-3kuN3aqLeT9h29KTgQT9q/N9+jA=", - "optional": true, - "requires": { - "requestretry": "1.13.0" - } - }, - "smart-buffer": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz", - "integrity": "sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY=" - }, - "smtp-connection": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/smtp-connection/-/smtp-connection-2.12.0.tgz", - "integrity": "sha1-1275EnyyPCJZ7bHoNJwujV4tdME=", - "requires": { - "httpntlm": "1.6.1", - "nodemailer-shared": "1.1.0" - } - }, - "sntp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", - "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", - "optional": true, - "requires": { - "hoek": "4.2.0" - } - }, - "socks": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz", - "integrity": "sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o=", - "requires": { - "ip": "1.1.5", - "smart-buffer": "1.1.15" - }, - "dependencies": { - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" - } - } - }, - "socks-proxy-agent": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz", - "integrity": "sha512-sFtmYqdUK5dAMh85H0LEVFUCO7OhJJe1/z2x/Z6mxp3s7/QPf1RkZmpZy+BpuU0bEjcV9npqKjq9Y3kwFUjnxw==", - "requires": { - "agent-base": "2.1.1", - "extend": "3.0.1", - "socks": "1.1.10" - }, - "dependencies": { - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - } - } - }, - "source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", - "requires": { - "amdefine": "1.0.1" - } - }, - "spdx-correct": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", - "requires": { - "spdx-license-ids": "1.2.2" - } - }, - "spdx-expression-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" - }, - "spdx-license-ids": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" - }, - "split": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", - "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", - "dev": true, - "requires": { - "through": "2.3.8" - } - }, - "sshpk": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", - "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", - "optional": true, - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - } - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - }, - "streamroller": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", - "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", - "requires": { - "date-format": "1.2.0", - "debug": "3.1.0", - "mkdirp": "0.5.1", - "readable-stream": "2.3.4" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" - }, - "readable-stream": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", - "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - } - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "string.prototype.trim": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", - "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", - "dev": true, - "requires": { - "define-properties": "1.1.2", - "es-abstract": "1.10.0", - "function-bind": "1.1.1" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "requires": { - "safe-buffer": "5.1.1" - } - }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "2.1.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "requires": { - "is-utf8": "0.2.1" - } - }, - "stylus": { - "version": "0.54.5", - "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz", - "integrity": "sha1-QrlWCTHKcJDOhRWnmLqeaqPW3Hk=", - "requires": { - "css-parse": "1.7.0", - "debug": "2.6.9", - "glob": "7.0.6", - "mkdirp": "0.5.1", - "sax": "0.5.8", - "source-map": "0.1.43" - } - }, - "superagent": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.2.tgz", - "integrity": "sha512-gVH4QfYHcY3P0f/BZzavLreHW3T1v7hG9B+hpMQotGQqurOvhv87GcMCd6LWySmBuf+BDR44TQd0aISjVHLeNQ==", - "requires": { - "component-emitter": "1.2.1", - "cookiejar": "2.1.1", - "debug": "3.1.0", - "extend": "3.0.1", - "form-data": "2.3.1", - "formidable": "1.1.1", - "methods": "1.1.2", - "mime": "1.4.1", - "qs": "6.5.1", - "readable-stream": "2.2.7" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - } - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - }, - "sylvester": { - "version": "0.0.21", - "resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.21.tgz", - "integrity": "sha1-KYexzivS84sNzio0OIiEv6RADqc=" - }, - "tap-out": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/tap-out/-/tap-out-1.4.2.tgz", - "integrity": "sha1-yQfsG/lAURHQiCY+kvVgi4jLs3o=", - "dev": true, - "requires": { - "re-emitter": "1.1.3", - "readable-stream": "2.2.7", - "split": "1.0.1", - "trim": "0.0.1" - } - }, - "tap-spec": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/tap-spec/-/tap-spec-4.1.1.tgz", - "integrity": "sha1-4unyb1IIIysfViKIyXYk1YqI8Fo=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "duplexer": "0.1.1", - "figures": "1.7.0", - "lodash": "3.10.1", - "pretty-ms": "2.1.0", - "repeat-string": "1.6.1", - "tap-out": "1.4.2", - "through2": "2.0.3" - }, - "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } - } - }, - "tape": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/tape/-/tape-4.8.0.tgz", - "integrity": "sha512-TWILfEnvO7I8mFe35d98F6T5fbLaEtbFTG/lxWvid8qDfFTxt19EBijWmB4j3+Hoh5TfHE2faWs73ua+EphuBA==", - "dev": true, - "requires": { - "deep-equal": "1.0.1", - "defined": "1.0.0", - "for-each": "0.3.2", - "function-bind": "1.1.1", - "glob": "7.1.2", - "has": "1.0.1", - "inherits": "2.0.3", - "minimist": "1.2.0", - "object-inspect": "1.3.0", - "resolve": "1.4.0", - "resumer": "0.0.0", - "string.prototype.trim": "1.1.2", - "through": "2.3.8" - }, - "dependencies": { - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "dev": true, - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "resolve": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", - "integrity": "sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==", - "dev": true, - "requires": { - "path-parse": "1.0.5" - } - } - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "dev": true, - "requires": { - "readable-stream": "2.2.7", - "xtend": "4.0.1" - } - }, - "thunkify": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz", - "integrity": "sha1-+qDp0jDFGsyVyhOjYawFyn4EVT0=", - "optional": true - }, - "timespan": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", - "integrity": "sha1-SQLOBAvRPYRcj1myfp1ZutbzmSk=", - "optional": true - }, - "token-stream": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-0.0.1.tgz", - "integrity": "sha1-zu78cXp2xDFvEm0LnbqlXX598Bo=" - }, - "tough-cookie": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", - "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", - "optional": true, - "requires": { - "punycode": "1.4.1" - } - }, - "trim": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", - "dev": true - }, - "tsscmp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz", - "integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=", - "optional": true - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "optional": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { - "prelude-ls": "1.1.2" - } - }, - "type-is": { - "version": "1.6.15", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", - "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", - "requires": { - "media-typer": "0.3.0", - "mime-types": "2.1.17" - } - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", - "requires": { - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "requires": { - "camelcase": "1.2.1", - "cliui": "2.1.0", - "decamelize": "1.2.0", - "window-size": "0.1.0" - } - } - } - }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", - "optional": true - }, - "unbzip2-stream": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz", - "integrity": "sha512-izD3jxT8xkzwtXRUZjtmRwKnZoeECrfZ8ra/ketwOcusbZEp4mjULMnJOCfTDZBgGQAAY1AJ/IgxcwkavcX9Og==", - "requires": { - "buffer": "3.6.0", - "through": "2.3.8" - } - }, - "underscore": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", - "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=", - "optional": true - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "requires": { - "inherits": "2.0.1" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - }, - "uuid": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=" - }, - "validate-npm-package-license": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", - "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" - } - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "1.3.0" - } - }, - "void-elements": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", - "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" - }, - "when": { - "version": "3.7.8", - "resolved": "https://registry.npmjs.org/when/-/when-3.7.8.tgz", - "integrity": "sha1-xxMLan6gRpPoQs3J56Hyqjmjn4I=", - "optional": true - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" - }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" - }, - "with": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/with/-/with-5.1.1.tgz", - "integrity": "sha1-+k2qktrzLE6pTtRTyB8EaGtXXf4=", - "requires": { - "acorn": "3.3.0", - "acorn-globals": "3.1.0" - } - }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" - }, - "worker-nodes": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/worker-nodes/-/worker-nodes-1.6.0.tgz", - "integrity": "sha512-PUI1mQRdrMpJ6HyFj7/M2pKZetSuB12aNaGSIzYeBk4K1sitxZK7k5nKi+/5+iQL59J6Aq2WLp86r7yHxDASrA==", - "requires": { - "msgpack-lite": "0.1.26" - } - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "wtf_wikipedia": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/wtf_wikipedia/-/wtf_wikipedia-2.5.0.tgz", - "integrity": "sha512-5Ha/9c1I/uwURZmqnOQlmJ6gHY6O+tDMif6Bc/gQ4Fsvjl3L2X5F1NyO31uRJLfFZ1AlrMfq7rQ7yAjknpRIEA==", - "requires": { - "jshashes": "1.0.7", - "superagent": "3.8.2" - } - }, - "xml-stream": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/xml-stream/-/xml-stream-0.4.5.tgz", - "integrity": "sha1-dFLYWzf5uIGnDv8M90oN8CCI7es=", - "requires": { - "iconv": "2.3.0", - "node-expat": "2.3.16", - "readable-stream": "1.1.14" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - } - } - }, - "xmlsplit": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/xmlsplit/-/xmlsplit-1.2.8.tgz", - "integrity": "sha1-7YhX29kOraN301fIracErr/Do1w=", - "requires": { - "util": "0.10.3" - } - }, - "xregexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", - "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=", - "optional": true - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" - }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" - }, - "yargs": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz", - "integrity": "sha1-wMQpJMpKqmsObaFznfshZDn53cA=", - "requires": { - "cliui": "3.2.0", - "decamelize": "1.2.0", - "get-caller-file": "1.0.2", - "lodash.assign": "4.2.0", - "os-locale": "1.4.0", - "read-pkg-up": "1.0.1", - "require-directory": "2.1.1", - "require-main-filename": "1.0.1", - "set-blocking": "2.0.0", - "string-width": "1.0.2", - "which-module": "1.0.0", - "window-size": "0.2.0", - "y18n": "3.2.1", - "yargs-parser": "2.4.1" - }, - "dependencies": { - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wrap-ansi": "2.1.0" - } - }, - "window-size": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", - "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=" - } - } - }, - "yargs-parser": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", - "integrity": "sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ=", - "requires": { - "camelcase": "3.0.0", - "lodash.assign": "4.2.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - } - } - } - } -} diff --git a/src/00-init-db.js b/src/00-init-db.js index 18958a0..ae3a65c 100644 --- a/src/00-init-db.js +++ b/src/00-init-db.js @@ -7,7 +7,7 @@ const init = async ( options = { verbose: true } ) => { - return new Promise(async (resolve, reject) => { + return new Promise(async (resolve) => { //this is required if (!fs.existsSync(options.file)) { console.log('please supply a filename for the wikipedia article dump in xml format'); diff --git a/src/01-article-logic.js b/src/01-article-logic.js index 91c4846..58de6f1 100644 --- a/src/01-article-logic.js +++ b/src/01-article-logic.js @@ -4,10 +4,7 @@ const XmlStream = require('xml-stream'); var str = require('string-to-stream') // get wikiscript from the xml, parse it, and send it to mongo - - - -const doArticle = function(pageStr, options,callback) { +const doArticle = function(pageStr, options, callback) { let xml = new XmlStream(str(pageStr)); @@ -15,7 +12,7 @@ const doArticle = function(pageStr, options,callback) { xml.on('endElement: page', async (page) => { // ignore 'talk pages', etc. if (page.ns === '0') { - if (options.verbose === true){ + if (options.verbose === true) { console.log(page.title); } let script = page.revision.text['$text'] || ''; @@ -32,6 +29,6 @@ const doArticle = function(pageStr, options,callback) { } return null }); - + } module.exports = doArticle diff --git a/src/03-write-db.js b/src/03-write-db.js index f0dabc4..cc0cb82 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -1,10 +1,9 @@ // -checkWriteSuccess = (preCount,postCount,arr) => { - if (preCount+arr.length === postCount){ +checkWriteSuccess = (preCount, postCount, arr) => { + if (preCount + arr.length === postCount) { console.log(`all parsed documents are inserted succesfully. total docs: ${postCount}`) - } - else { + } else { // feature sugg.: // let's check the difference betw arr & result obj. // make a note of the ones that couldn't be inserted eg: @@ -18,23 +17,25 @@ checkWriteSuccess = (preCount,postCount,arr) => { } const writeDb = async (arr, options, coll) => { - return new Promise( async (resolve,reject)=>{ + return new Promise(async (resolve) => { //let preCount = await options.collection.count() //arrr = [{arr:arr}] - options.db.collection(coll).insertMany( arr, { ordered: false }, async (err, result) => { - if (err) { - // collect insert errors... - // tbd. skip duplicate key errors - // do not insert if err.writeErrors[x].code = 11000 - // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) - } + options.db.collection(coll).insertMany(arr, { + ordered: false + }, async (err) => { + if (err) { + // collect insert errors... + // tbd. skip duplicate key errors + // do not insert if err.writeErrors[x].code = 11000 + // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) + } - let count = await options.collection.count() - // checkWriteSuccess(preCount,postCount,arr) + let count = await options.collection.count() + // checkWriteSuccess(preCount,postCount,arr) - resolve(`${arr.length} docs inserted. total:${count}`) - }) + resolve(`${arr.length} docs inserted. total:${count}`) }) - } + }) +} module.exports = writeDb diff --git a/src/_done.js b/src/_done.js index 4c12fda..e628f04 100644 --- a/src/_done.js +++ b/src/_done.js @@ -1,6 +1,6 @@ //function to pretty-print when finished.. -const done = async function(collection, callback) { +const done = async function(collection) { console.log('\n=================done!=================\n'); console.log(await collection.count() + " pages stored in db '" + options.db + "'"); return diff --git a/src/index.js b/src/index.js index 2012fd0..b3d7891 100755 --- a/src/index.js +++ b/src/index.js @@ -1,22 +1,17 @@ //stream a big wikipedia xml.bz2 file into mongodb // usage: // node index.js afwiki-latest-pages-articles.xml.bz2 -const fs = require('fs'); -const XmlStream = require('xml-stream'); -const bz2 = require('unbzip2-stream'); const init = require('./00-init-db'); const writeDb = require('./03-write-db'); -const done = require('./_done'); -const moment = require("moment") const mt = require("./multithreader") -const noop = () => {} -var jobBegin = 0 -process.on('unhandledRejection', up => { console.log(up) }) +process.on('unhandledRejection', up => { + console.log(up) +}) //open up a mongo db, and start xml-streaming.. -const main = async (options, callback=noop) => { - +const main = async (options) => { + params = Object.assign({}, options); await init(options) @@ -25,23 +20,23 @@ const main = async (options, callback=noop) => { writing = 0 mt.worker.on("msg", async (msg) => { - if (msg.type === "insertToDb"){ + if (msg.type === "insertToDb") { // console.log("-->",msg.length,msg.pages.length) writing++ - res = await writeDb(msg.pages,options,"wikipedia") + res = await writeDb(msg.pages, options, "wikipedia") writing-- - console.log("worker "+msg.pid+":"+res+` batch took ${Math.round((msg.timeSpent.total)/1000)} secs. --doArticle()-- took ${Math.round(msg.timeSpent.doArticle/1000)} secs.`) + console.log("worker " + msg.pid + ":" + res + ` batch took ${Math.round((msg.timeSpent.total) / 1000)} secs. --doArticle()-- took ${Math.round(msg.timeSpent.doArticle / 1000)} secs.`) } }) - mt.worker.on("allWorkersFinished", ()=>{ + mt.worker.on("allWorkersFinished", () => { - setInterval(()=>{ - if (writing === 0){ + setInterval(() => { + if (writing === 0) { console.log("all done, exiting...") process.exit() } - },500) + }, 500) }) diff --git a/src/multithreader.js b/src/multithreader.js index c89991d..d9890c1 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -1,4 +1,8 @@ -var WorkerNodes, cpuCount, fs, start, workerLog, workerLogs, workerNodes; +var WorkerNodes, + cpuCount, + fs, + workerLogs, + workerNodes; const pretty = require('prettysize'); WorkerNodes = require('worker-nodes'); fs = require("fs"); @@ -7,7 +11,7 @@ cpus = require('os').cpus() cpuCount = cpus.length; workerNodes = new WorkerNodes(__dirname + '/worker.js', { - minWorkers: cpuCount-1, + minWorkers: cpuCount - 1, autoStart: true, maxTasksPerWorker: 1 }); @@ -17,19 +21,21 @@ workerLogs = {}; workerLog = function(msg) { var name; if (msg) { - if (workerLogs[name = msg.pid] == null) { + if (workerLogs[name = msg.pid] === undefined) { workerLogs[name] = {}; } return workerLogs[msg.pid] = msg; } + return null }; class Worker extends EventEmitter { - constructor(){ + constructor() { super() } - parseXML (options) { - var chunkSize, size; + parseXML(options) { + var chunkSize, + size; size = fs.statSync(options.file)["size"]; // size = 633279000 chunkSize = Math.floor(size / cpuCount); @@ -40,16 +46,16 @@ class Worker extends EventEmitter { //await workerNodes.ready(); var workerCount = 0 - cpus.forEach((val,key) => { + cpus.forEach((val, key) => { workerNodes.call.xmlSplit(options, chunkSize, key).then((msg) => { - + workerCount++ if (workerCount === cpuCount) { - workerNodes.workersQueue.storage.forEach((worker)=>{ - worker.process.child.on("message", async (msg)=>{ - this.emit("msg",msg); - if(msg.type === "workerDone"){ + workerNodes.workersQueue.storage.forEach((worker) => { + worker.process.child.on("message", async (msg2) => { + this.emit("msg", msg2); + if (msg.type === "workerDone") { workerCount-- //console.log(workerCount) if (workerCount === 0) { @@ -60,10 +66,12 @@ class Worker extends EventEmitter { } }) }) - }; + } + ; }); }); - }; + } + ; } @@ -80,4 +88,6 @@ process.on('SIGINT', async function() { worker = new Worker() -module.exports = {worker:worker} +module.exports = { + worker: worker +} diff --git a/src/worker.js b/src/worker.js index cb74e2c..f87a6ad 100644 --- a/src/worker.js +++ b/src/worker.js @@ -1,34 +1,42 @@ const LineByLineReader = require('line-by-line') -const fs = require("fs") const init = require('./00-init-db'); const log4js = require('log4js'); const doArticle = require('./01-article-logic'); - log4js.configure({ - appenders: { cheese: { type: 'file', filename: '/tmp/worker.logs' } }, - categories: { default: { appenders: ['cheese'], level: 'info' } } + appenders: { + cheese: { + type: 'file', + filename: '/tmp/worker.logs' + } + }, + categories: { + default: { + appenders: ['cheese'], + level: 'info' + } + } }); - const logger = log4js.getLogger('cheese'); - const xmlSplit = async (options, chunkSize, workerNr) => { - var cpuCount, file, insertToDb, lineNumber, lr, page, pageCount, pages, size; - - if (workerNr === 0){ + var file, + insertToDb, + lr, + page, + pageCount, + pages; + + if (workerNr === 0) { startByte = 0 - } - else - { + } else { // start a megabyte earlier - startByte = (workerNr*chunkSize)-1000000 + startByte = (workerNr * chunkSize) - 1000000 } - - // end 2 megabytes later so we don't lose pages cut by chunks - endByte = startByte+chunkSize+3000000 + // end 2 megabytes later so we don't lose pages cut by chunks + endByte = startByte + chunkSize + 3000000 logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) await init(options) @@ -39,7 +47,6 @@ const xmlSplit = async (options, chunkSize, workerNr) => { end: endByte }); - page = null; pageCount = 0; pages = []; @@ -48,39 +55,55 @@ const xmlSplit = async (options, chunkSize, workerNr) => { doArticleTimeCounter = 0 insertToDb = function(last) { lr.pause(); - process.send({type:"insertToDb",pages:pages,length:pages.length,pid: process.pid, timeSpent:{total:Date.now()-workerBegin,doArticle:doArticleTimeCounter}}) + process.send({ + type: "insertToDb", + pages: pages, + length: pages.length, + pid: process.pid, + timeSpent: { + total: Date.now() - workerBegin, + doArticle: doArticleTimeCounter + } + }) pages = []; jobBegin = Date.now() doArticleTimeCounter = 0 workerBegin = Date.now() - logger.info(`batch complete: worker pid:${process.pid} inserted ${pageCount} pages in ${((Date.now()-workerBegin)/1000)} secs. doArticle took ${doArticleTimeCounter/1000} secs.`); + logger.info(`batch complete: worker pid:${process.pid} inserted ${pageCount} pages in ${((Date.now() - workerBegin) / 1000)} secs. doArticle took ${doArticleTimeCounter / 1000} secs.`); lr.resume(); - if(last){ - process.send({type:"workerDone",pid:process.pid}) + if (last) { + process.send({ + type: "workerDone", + pid: process.pid + }) } }; - lr.on('error', (err) => { + lr.on('error', () => { // 'err' contains error object logger.error("linereader error"); }); - + lr.on('line', (line) => { if (line.indexOf("") !== -1) { - page = {body:line, skip: false, title: null} + page = { + body: line, + skip: false, + title: null + } pageCount++; - } - + } + if (page) { page.body += line; if (!page.title && line.indexOf("") !== -1) { page.title = line.substring(line.lastIndexOf("<title>") + 7, line.lastIndexOf("")); } - - if (line.indexOf("") > -1){ - if(line.indexOf("0") === -1) { - logger.info("skipping",page.title) + + if (line.indexOf("") > -1) { + if (line.indexOf("0") === -1) { + logger.info("skipping", page.title) page.skip = true; } } @@ -88,10 +111,10 @@ const xmlSplit = async (options, chunkSize, workerNr) => { if (line.indexOf("") !== -1) { if (!page.skip) { doArticleTime = Date.now() - doArticle(page.body,options,(pageObj)=>{ - doArticleTimeCounter += Date.now()-doArticleTime - if (pageObj){ - pages.push(pageObj); + doArticle(page.body, options, (pageObj) => { + doArticleTimeCounter += Date.now() - doArticleTime + if (pageObj) { + pages.push(pageObj); } if (pageCount % options.batch_size === 0) { insertToDb(); @@ -112,17 +135,19 @@ const xmlSplit = async (options, chunkSize, workerNr) => { } }); - + lr.on('end', function() { // All lines are read, file is closed now. // insert remaining pages. insertToDb(true); - logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now()-workerBegin)/1000)} secs. doArticle took ${doArticleTimeCounter/1000} secs.`); + logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now() - workerBegin) / 1000)} secs. doArticle took ${doArticleTimeCounter / 1000} secs.`); // process.exit() - - + + }); - return(process.pid) + return (process.pid) }; -module.exports = {xmlSplit} +module.exports = { + xmlSplit +} From 04a825a41da0241957fbbafcd95da2563f7ea60d Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 15 Feb 2018 11:50:30 -0500 Subject: [PATCH 19/42] remove xml parsing --- config.js | 2 - dump.js | 7 ++ package.json | 9 +- scratch.js | 12 +-- src/01-article-logic.js | 34 ------- src/_done.js | 8 -- src/multithreader.js | 27 ++---- src/{ => worker}/_encode.js | 0 src/worker/_logger.js | 17 ++++ src/worker/_polyfill.js | 14 +++ src/{worker.js => worker/index.js} | 91 ++----------------- src/worker/parseLine.js | 69 ++++++++++++++ .../parseWiki.js} | 0 worker.logs | 0 14 files changed, 130 insertions(+), 160 deletions(-) create mode 100644 dump.js delete mode 100644 src/01-article-logic.js delete mode 100644 src/_done.js rename src/{ => worker}/_encode.js (100%) create mode 100644 src/worker/_logger.js create mode 100644 src/worker/_polyfill.js rename src/{worker.js => worker/index.js} (51%) create mode 100644 src/worker/parseLine.js rename src/{02-transform-wiki.js => worker/parseWiki.js} (100%) create mode 100644 worker.logs diff --git a/config.js b/config.js index a86b1f3..a252d7a 100644 --- a/config.js +++ b/config.js @@ -1,6 +1,4 @@ module.exports = { - //which collection to store temporary queued-up xml strings - "queue": 'queue', //number of pages to write at a time, to the queue "batch_size": 1000 } diff --git a/dump.js b/dump.js new file mode 100644 index 0000000..64142e8 --- /dev/null +++ b/dump.js @@ -0,0 +1,7 @@ +const drop = require('./tests/db').drop +const dbName = 'tmpwiki' + +//delete all pages +drop(dbName, 'queue', () => { + console.log('dropped existing pages\n') +}) diff --git a/package.json b/package.json index 505c0d7..bc78f43 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "main": "./src/index.js", "scripts": { "test": "\"node_modules/.bin/tape\" \"./tests/*.test.js\" | \"node_modules/.bin/tap-spec\" --color", - "cleanup": "rm ./worker.logs && touch ./worker.logs" + "cleanup": "rm /tmp/worker.logs && touch /tmp/worker.logs" }, "dependencies": { "cluster": "^0.7.7", @@ -25,17 +25,12 @@ "kue": "^0.11.1", "line-by-line": "^0.1.6", "log4js": "^2.5.3", - "moment": "^2.20.1", - "momentjs": "^2.0.0", "mongodb": "^2.2.33", "prettysize": "^1.1.0", "string-to-stream": "^1.1.0", "unbzip2-stream": "^1.0.9", "worker-nodes": "^1.6.0", - "wtf_wikipedia": "^2.4.2", - "xml-stream": "^0.4.5", - "xml2js": "^0.4.19", - "xmlsplit": "^1.2.8" + "wtf_wikipedia": "^2.4.2" }, "devDependencies": { "shelljs": "^0.7.8", diff --git a/scratch.js b/scratch.js index 6f0cad9..9267d91 100644 --- a/scratch.js +++ b/scratch.js @@ -1,15 +1,9 @@ const w2m = require('./src') -const drop = require('./tests/db').drop // const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' const dbName = 'tmpwiki' -//delete all pages - -drop(dbName, 'queue', () => { - console.log('dropped existing pages\n') - w2m({ - file: path, - db: dbName, - }) +w2m({ + file: path, + db: dbName, }) diff --git a/src/01-article-logic.js b/src/01-article-logic.js deleted file mode 100644 index 58de6f1..0000000 --- a/src/01-article-logic.js +++ /dev/null @@ -1,34 +0,0 @@ -//logic for parsing an object's xml -const transform = require('./02-transform-wiki'); -const XmlStream = require('xml-stream'); -var str = require('string-to-stream') - -// get wikiscript from the xml, parse it, and send it to mongo -const doArticle = function(pageStr, options, callback) { - - let xml = new XmlStream(str(pageStr)); - - //xml.on("end",(page)=>{ - xml.on('endElement: page', async (page) => { - // ignore 'talk pages', etc. - if (page.ns === '0') { - if (options.verbose === true) { - console.log(page.title); - } - let script = page.revision.text['$text'] || ''; - let data = { - title: page.title, - script: script - }; - try { - return callback(transform(data, options)) - } catch (err) { - console.log(err); - return null - } - } - return null - }); - -} -module.exports = doArticle diff --git a/src/_done.js b/src/_done.js deleted file mode 100644 index e628f04..0000000 --- a/src/_done.js +++ /dev/null @@ -1,8 +0,0 @@ - -//function to pretty-print when finished.. -const done = async function(collection) { - console.log('\n=================done!=================\n'); - console.log(await collection.count() + " pages stored in db '" + options.db + "'"); - return -}; -module.exports = done diff --git a/src/multithreader.js b/src/multithreader.js index d9890c1..44a2c5b 100644 --- a/src/multithreader.js +++ b/src/multithreader.js @@ -1,16 +1,11 @@ -var WorkerNodes, - cpuCount, - fs, - workerLogs, - workerNodes; const pretty = require('prettysize'); -WorkerNodes = require('worker-nodes'); -fs = require("fs"); +const WorkerNodes = require('worker-nodes'); +const fs = require("fs"); const EventEmitter = require('events'); -cpus = require('os').cpus() -cpuCount = cpus.length; +const cpus = require('os').cpus() +const cpuCount = cpus.length; -workerNodes = new WorkerNodes(__dirname + '/worker.js', { +let workerNodes = new WorkerNodes(__dirname + '/worker/index.js', { minWorkers: cpuCount - 1, autoStart: true, maxTasksPerWorker: 1 @@ -43,7 +38,6 @@ class Worker extends EventEmitter { console.log(`launching ${cpuCount} processes. do ctrl-c to kill all.`); console.log("do tail -f /tmp/worker.logs on a separate terminal window for logs."); - //await workerNodes.ready(); var workerCount = 0 cpus.forEach((val, key) => { @@ -56,10 +50,8 @@ class Worker extends EventEmitter { worker.process.child.on("message", async (msg2) => { this.emit("msg", msg2); if (msg.type === "workerDone") { - workerCount-- - //console.log(workerCount) + workerCount -= 1 if (workerCount === 0) { - //console.log("all done.") await workerNodes.terminate() this.emit("allWorkersFinished"); } @@ -67,12 +59,9 @@ class Worker extends EventEmitter { }) }) } - ; - }); - }); + }) + }) } - ; - } process.on('unhandledRejection', function(up) { diff --git a/src/_encode.js b/src/worker/_encode.js similarity index 100% rename from src/_encode.js rename to src/worker/_encode.js diff --git a/src/worker/_logger.js b/src/worker/_logger.js new file mode 100644 index 0000000..4546fa8 --- /dev/null +++ b/src/worker/_logger.js @@ -0,0 +1,17 @@ +const log4js = require('log4js'); +log4js.configure({ + appenders: { + cheese: { + type: 'file', + filename: '/tmp/worker.logs' + } + }, + categories: { + default: { + appenders: ['cheese'], + level: 'info' + } + } +}); + +module.exports = log4js.getLogger('cheese'); diff --git a/src/worker/_polyfill.js b/src/worker/_polyfill.js new file mode 100644 index 0000000..6a5245e --- /dev/null +++ b/src/worker/_polyfill.js @@ -0,0 +1,14 @@ +if (!String.prototype.includes) { + String.prototype.includes = function(search, start) { + 'use strict'; + if (typeof start !== 'number') { + start = 0; + } + + if (start + search.length > this.length) { + return false; + } else { + return this.indexOf(search, start) !== -1; + } + }; +} diff --git a/src/worker.js b/src/worker/index.js similarity index 51% rename from src/worker.js rename to src/worker/index.js index f87a6ad..431984b 100644 --- a/src/worker.js +++ b/src/worker/index.js @@ -1,53 +1,32 @@ const LineByLineReader = require('line-by-line') -const init = require('./00-init-db'); -const log4js = require('log4js'); -const doArticle = require('./01-article-logic'); - -log4js.configure({ - appenders: { - cheese: { - type: 'file', - filename: '/tmp/worker.logs' - } - }, - categories: { - default: { - appenders: ['cheese'], - level: 'info' - } - } -}); - -const logger = log4js.getLogger('cheese'); +const init = require('../00-init-db'); +const logger = require('./_logger') +const parseLine = require('./parseLine') const xmlSplit = async (options, chunkSize, workerNr) => { - var file, + var startByte, insertToDb, + state, lr, - page, pageCount, pages; - if (workerNr === 0) { startByte = 0 } else { // start a megabyte earlier startByte = (workerNr * chunkSize) - 1000000 } - // end 2 megabytes later so we don't lose pages cut by chunks endByte = startByte + chunkSize + 3000000 - logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) await init(options) - file = options.file; - lr = new LineByLineReader(file, { + lr = new LineByLineReader(options.file, { start: startByte, end: endByte }); - page = null; + state = {}; pageCount = 0; pages = []; workerBegin = Date.now() @@ -68,6 +47,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { pages = []; jobBegin = Date.now() doArticleTimeCounter = 0 + page = {} workerBegin = Date.now() logger.info(`batch complete: worker pid:${process.pid} inserted ${pageCount} pages in ${((Date.now() - workerBegin) / 1000)} secs. doArticle took ${doArticleTimeCounter / 1000} secs.`); lr.resume(); @@ -84,56 +64,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { }); lr.on('line', (line) => { - - if (line.indexOf("") !== -1) { - page = { - body: line, - skip: false, - title: null - } - pageCount++; - } - - if (page) { - page.body += line; - - if (!page.title && line.indexOf("") !== -1) { - page.title = line.substring(line.lastIndexOf("<title>") + 7, line.lastIndexOf("")); - } - - if (line.indexOf("") > -1) { - if (line.indexOf("0") === -1) { - logger.info("skipping", page.title) - page.skip = true; - } - } - - if (line.indexOf("") !== -1) { - if (!page.skip) { - doArticleTime = Date.now() - doArticle(page.body, options, (pageObj) => { - doArticleTimeCounter += Date.now() - doArticleTime - if (pageObj) { - pages.push(pageObj); - } - if (pageCount % options.batch_size === 0) { - insertToDb(); - } - }) - } - page = null; - } - - // let's catch these before parsing for extra speed. - - // if (options.skip_redirects === true && data.type === 'redirect') { - // return null - // } - // if (options.skip_disambig === true && data.type === 'disambiguation') { - // return null - // } - - } + state = parseLine(line, state, options, insertToDb) }); lr.on('end', function() { @@ -141,9 +72,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { // insert remaining pages. insertToDb(true); logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now() - workerBegin) / 1000)} secs. doArticle took ${doArticleTimeCounter / 1000} secs.`); - // process.exit() - - + // process.exit() }); return (process.pid) }; diff --git a/src/worker/parseLine.js b/src/worker/parseLine.js new file mode 100644 index 0000000..21f2f50 --- /dev/null +++ b/src/worker/parseLine.js @@ -0,0 +1,69 @@ +const parseWiki = require('./parseWiki'); +require('./_polyfill'); + +//reached the end +const donePage = function(state, options, insertToDb) { + parseWiki(state.body, options, (pageObj) => { + doArticleTimeCounter += Date.now() - doArticleTime + if (pageObj) { + pages.push(pageObj); + } + if (pageCount % options.batch_size === 0) { + insertToDb(); + } + }) +} + +const startPage = function() { + return { + body: '', + title: null, + inside: false, + skip: false + } +} + +// +const parseLine = function(line, state, options, insertToDb) { + //we're currently grabbing wikitext.. + if (state.inside === true) { + //finish it! + if (line.includes("")) { + state.body = line.replace(/<\/text>.*/, '') + donePage(state, insertToDb) + state = startPage() + return state + } + //keep going! + state.body += line + return state + } + //we're waiting for the page to end.. + if (state.skip === true) { + if (line.includes("")) { + state = startPage() + return state + } + //keep ignoring.. + return state + } + //maybe we can skip it? + if (line.includes("")) { + if (line.includes("0") === false) { + state.skip = true; + } + return state + } + //skip redirects too.. + if (line.includes('')) { + state.inside = true + return state.body = line.replace(/.*/, '') + } + return state +} +module.exports = parseLine diff --git a/src/02-transform-wiki.js b/src/worker/parseWiki.js similarity index 100% rename from src/02-transform-wiki.js rename to src/worker/parseWiki.js diff --git a/worker.logs b/worker.logs new file mode 100644 index 0000000..e69de29 From cedbc02bc6fcdc16feba2d3dec6264c0af318ba3 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 15 Feb 2018 12:15:47 -0500 Subject: [PATCH 20/42] rename files, use config variables for collection name --- config.js | 4 ++- scratch.js | 2 ++ src/{00-init-db.js => 01-init-db.js} | 3 ++- src/{multithreader.js => 02-multithreader.js} | 0 src/03-write-db.js | 6 ++--- src/index.js | 15 +++++------ src/worker/{parseLine.js => 01-parseLine.js} | 25 +++++++------------ src/worker/{parseWiki.js => 02-parseWiki.js} | 0 src/worker/_polyfill.js | 3 +-- src/worker/index.js | 22 +++++++++++++--- 10 files changed, 47 insertions(+), 33 deletions(-) rename src/{00-init-db.js => 01-init-db.js} (93%) rename src/{multithreader.js => 02-multithreader.js} (100%) rename src/worker/{parseLine.js => 01-parseLine.js} (74%) rename src/worker/{parseWiki.js => 02-parseWiki.js} (100%) diff --git a/config.js b/config.js index a252d7a..f432af2 100644 --- a/config.js +++ b/config.js @@ -1,4 +1,6 @@ module.exports = { //number of pages to write at a time, to the queue - "batch_size": 1000 + "batch_size": 1000, + //the default name of the collection to write to + "collection": "wikipedia" } diff --git a/scratch.js b/scratch.js index 9267d91..15c254e 100644 --- a/scratch.js +++ b/scratch.js @@ -6,4 +6,6 @@ const dbName = 'tmpwiki' w2m({ file: path, db: dbName, + batch_size: 30, + plaintext: true }) diff --git a/src/00-init-db.js b/src/01-init-db.js similarity index 93% rename from src/00-init-db.js rename to src/01-init-db.js index ae3a65c..7ddd274 100644 --- a/src/00-init-db.js +++ b/src/01-init-db.js @@ -1,5 +1,6 @@ const MongoClient = require('mongodb').MongoClient; const fs = require("fs") +const config = require("../config") //start it up running const init = async ( options = { @@ -20,7 +21,7 @@ const init = async ( options = { // Connect to mongo let url = 'mongodb://localhost:27017/' + options.db; options.db = await MongoClient.connect(url) - options.collection = options.db.collection('wikipedia'); + options.collection = options.db.collection(config.collection); // if (options.auto_skip) { // options.skip_first = await options.collection.count() diff --git a/src/multithreader.js b/src/02-multithreader.js similarity index 100% rename from src/multithreader.js rename to src/02-multithreader.js diff --git a/src/03-write-db.js b/src/03-write-db.js index cc0cb82..b246f38 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -1,4 +1,4 @@ - +const config = require("../config") // checkWriteSuccess = (preCount, postCount, arr) => { if (preCount + arr.length === postCount) { @@ -16,11 +16,11 @@ checkWriteSuccess = (preCount, postCount, arr) => { return } -const writeDb = async (arr, options, coll) => { +const writeDb = async (arr, options) => { return new Promise(async (resolve) => { //let preCount = await options.collection.count() //arrr = [{arr:arr}] - options.db.collection(coll).insertMany(arr, { + options.db.collection(config.collection).insertMany(arr, { ordered: false }, async (err) => { if (err) { diff --git a/src/index.js b/src/index.js index b3d7891..33cef6a 100755 --- a/src/index.js +++ b/src/index.js @@ -1,9 +1,10 @@ //stream a big wikipedia xml.bz2 file into mongodb // usage: // node index.js afwiki-latest-pages-articles.xml.bz2 -const init = require('./00-init-db'); +const init = require('./01-init-db'); +const mt = require("./02-multithreader") const writeDb = require('./03-write-db'); -const mt = require("./multithreader") +const config = require('../config'); process.on('unhandledRejection', up => { console.log(up) @@ -23,7 +24,7 @@ const main = async (options) => { if (msg.type === "insertToDb") { // console.log("-->",msg.length,msg.pages.length) writing++ - res = await writeDb(msg.pages, options, "wikipedia") + res = await writeDb(msg.pages, options) writing-- console.log("worker " + msg.pid + ":" + res + ` batch took ${Math.round((msg.timeSpent.total) / 1000)} secs. --doArticle()-- took ${Math.round(msg.timeSpent.doArticle / 1000)} secs.`) } @@ -41,10 +42,10 @@ const main = async (options) => { }) // await init(options) - // setInterval( async () => { - // count = await options.db.collection("queue").count() - // console.log(`final doc count: ${count} in last 60 seconds.`) - // },60000) + setInterval(async () => { + count = await options.db.collection(config.collection).count() + console.log(`pages: ${count}`) + }, 10000) } diff --git a/src/worker/parseLine.js b/src/worker/01-parseLine.js similarity index 74% rename from src/worker/parseLine.js rename to src/worker/01-parseLine.js index 21f2f50..08ca122 100644 --- a/src/worker/parseLine.js +++ b/src/worker/01-parseLine.js @@ -1,19 +1,5 @@ -const parseWiki = require('./parseWiki'); require('./_polyfill'); -//reached the end -const donePage = function(state, options, insertToDb) { - parseWiki(state.body, options, (pageObj) => { - doArticleTimeCounter += Date.now() - doArticleTime - if (pageObj) { - pages.push(pageObj); - } - if (pageCount % options.batch_size === 0) { - insertToDb(); - } - }) -} - const startPage = function() { return { body: '', @@ -22,9 +8,8 @@ const startPage = function() { skip: false } } - // -const parseLine = function(line, state, options, insertToDb) { +const parseLine = function(line, state, donePage) { //we're currently grabbing wikitext.. if (state.inside === true) { //finish it! @@ -59,6 +44,14 @@ const parseLine = function(line, state, options, insertToDb) { state.skip = true; return state } + //grab this title, sorta it's handy + if (line.includes('')) { + let m = line.match(/<title>(.*)<\/title>/) + if (m && m[1]) { + state.title = m[1] + } + return state + } //not skipping, and waiting for <text> to start.. if (line.includes('<text xml:space="preserve">')) { state.inside = true diff --git a/src/worker/parseWiki.js b/src/worker/02-parseWiki.js similarity index 100% rename from src/worker/parseWiki.js rename to src/worker/02-parseWiki.js diff --git a/src/worker/_polyfill.js b/src/worker/_polyfill.js index 6a5245e..b816839 100644 --- a/src/worker/_polyfill.js +++ b/src/worker/_polyfill.js @@ -1,10 +1,9 @@ +//string.includes is node>=6.3 if (!String.prototype.includes) { String.prototype.includes = function(search, start) { - 'use strict'; if (typeof start !== 'number') { start = 0; } - if (start + search.length > this.length) { return false; } else { diff --git a/src/worker/index.js b/src/worker/index.js index 431984b..4b093aa 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -1,7 +1,8 @@ const LineByLineReader = require('line-by-line') -const init = require('../00-init-db'); +const init = require('../01-init-db'); const logger = require('./_logger') -const parseLine = require('./parseLine') +const parseLine = require('./01-parseLine') +const parseWiki = require('./02-parseWiki'); const xmlSplit = async (options, chunkSize, workerNr) => { var startByte, @@ -58,13 +59,28 @@ const xmlSplit = async (options, chunkSize, workerNr) => { }) } }; + + //reached the end of a page + const donePage = function(page) { + parseWiki(page.body, options, (pageObj) => { + doArticleTimeCounter += Date.now() - doArticleTime + if (pageObj) { + pages.push(pageObj); + } + console.log(page.title) + if (pageCount % options.batch_size === 0) { + insertToDb(); + } + }) + } + lr.on('error', () => { // 'err' contains error object logger.error("linereader error"); }); lr.on('line', (line) => { - state = parseLine(line, state, options, insertToDb) + state = parseLine(line, state, donePage) }); lr.on('end', function() { From cdfec2cc2134beb3f52ae1735ad5832d1841edb4 Mon Sep 17 00:00:00 2001 From: spencermountain <spencermountain@gmail.com> Date: Thu, 15 Feb 2018 12:38:56 -0500 Subject: [PATCH 21/42] make parseWiki synchronous again --- dump.js | 5 +++-- scratch.js | 4 ++-- src/index.js | 2 +- src/worker/01-parseLine.js | 14 +++++++------- src/worker/02-parseWiki.js | 4 ++-- src/worker/index.js | 21 ++++++++++----------- 6 files changed, 25 insertions(+), 25 deletions(-) diff --git a/dump.js b/dump.js index 64142e8..023468a 100644 --- a/dump.js +++ b/dump.js @@ -1,7 +1,8 @@ const drop = require('./tests/db').drop +const config = require('./config') const dbName = 'tmpwiki' //delete all pages -drop(dbName, 'queue', () => { - console.log('dropped existing pages\n') +drop(dbName, config.collection, () => { + console.log('dropped existing pages from ' + dbName + ' - ' + config.collection) }) diff --git a/scratch.js b/scratch.js index 15c254e..54e7e88 100644 --- a/scratch.js +++ b/scratch.js @@ -6,6 +6,6 @@ const dbName = 'tmpwiki' w2m({ file: path, db: dbName, - batch_size: 30, - plaintext: true + batch_size: 1000, + plaintext: false }) diff --git a/src/index.js b/src/index.js index 33cef6a..207b08b 100755 --- a/src/index.js +++ b/src/index.js @@ -45,7 +45,7 @@ const main = async (options) => { setInterval(async () => { count = await options.db.collection(config.collection).count() console.log(`pages: ${count}`) - }, 10000) + }, 5000) } diff --git a/src/worker/01-parseLine.js b/src/worker/01-parseLine.js index 08ca122..d6d9804 100644 --- a/src/worker/01-parseLine.js +++ b/src/worker/01-parseLine.js @@ -2,7 +2,7 @@ require('./_polyfill'); const startPage = function() { return { - body: '', + script: '', title: null, inside: false, skip: false @@ -14,13 +14,12 @@ const parseLine = function(line, state, donePage) { if (state.inside === true) { //finish it! if (line.includes("</text>")) { - state.body = line.replace(/<\/text>.*/, '') - donePage(state, insertToDb) - state = startPage() - return state + state.script = line.replace(/<\/text>.*/, '') + donePage(state) + return startPage() } //keep going! - state.body += line + state.script += line return state } //we're waiting for the page to end.. @@ -55,7 +54,8 @@ const parseLine = function(line, state, donePage) { //not skipping, and waiting for <text> to start.. if (line.includes('<text xml:space="preserve">')) { state.inside = true - return state.body = line.replace(/.*<text xml:space="preserve">/, '') + state.script = line.replace(/.*<text xml:space="preserve">/, '') + return state } return state } diff --git a/src/worker/02-parseWiki.js b/src/worker/02-parseWiki.js index 48c6e22..4b56f24 100644 --- a/src/worker/02-parseWiki.js +++ b/src/worker/02-parseWiki.js @@ -5,7 +5,7 @@ const encode = require('./_encode'); const plaintext = function(page) { return { title: page.title, - _id: encode.encodeStr(page.title), + _id: encode.encodeStr(page.title || ''), plaintext: wtf.plaintext(page.script) }; } @@ -21,7 +21,7 @@ const parseData = function(page, options) { return null } data = encode.encodeData(data); - data.title = data.title || page.title; + data.title = data.title || page.title || ''; data._id = encode.encodeStr(data.title); return data }; diff --git a/src/worker/index.js b/src/worker/index.js index 4b093aa..fc4ac5b 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -61,17 +61,16 @@ const xmlSplit = async (options, chunkSize, workerNr) => { }; //reached the end of a page - const donePage = function(page) { - parseWiki(page.body, options, (pageObj) => { - doArticleTimeCounter += Date.now() - doArticleTime - if (pageObj) { - pages.push(pageObj); - } - console.log(page.title) - if (pageCount % options.batch_size === 0) { - insertToDb(); - } - }) + const donePage = function(pageObj) { + pageCount += 1 + pageObj = parseWiki(pageObj, options) + if (pageObj !== null) { + pages.push(pageObj); + } + // doArticleTimeCounter += Date.now() - doArticleTime + if (pageCount % options.batch_size === 0) { + insertToDb(); + } } lr.on('error', () => { From b0a7e99f0a4dca972dac55d3ba9fcab72fafdbcb Mon Sep 17 00:00:00 2001 From: spencermountain <spencermountain@gmail.com> Date: Thu, 15 Feb 2018 12:42:49 -0500 Subject: [PATCH 22/42] fix last-line issue --- scratch.js | 2 +- src/worker/01-parseLine.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scratch.js b/scratch.js index 54e7e88..a39a8df 100644 --- a/scratch.js +++ b/scratch.js @@ -7,5 +7,5 @@ w2m({ file: path, db: dbName, batch_size: 1000, - plaintext: false + plaintext: true }) diff --git a/src/worker/01-parseLine.js b/src/worker/01-parseLine.js index d6d9804..02ffb57 100644 --- a/src/worker/01-parseLine.js +++ b/src/worker/01-parseLine.js @@ -14,7 +14,7 @@ const parseLine = function(line, state, donePage) { if (state.inside === true) { //finish it! if (line.includes("</text>")) { - state.script = line.replace(/<\/text>.*/, '') + state.script += line.replace(/<\/text>.*/, '') donePage(state) return startPage() } From a968c06e6f2530dd3908fcb69211b30ca068af67 Mon Sep 17 00:00:00 2001 From: spencermountain <spencermountain@gmail.com> Date: Thu, 15 Feb 2018 13:23:01 -0500 Subject: [PATCH 23/42] process exit properly again --- scratch.js | 8 +- src/02-multithreader.js | 29 +- src/worker/_logger.js | 32 +- src/worker/index.js | 11 +- tests/smallwiki-latest-pages-articles.xml | 85403 ++++++++++++++++ tests/smallwiki-latest-pages-articles.xml.bz2 | Bin 692467 -> 0 bytes tests/tinywiki-latest-pages-articles.xml | 425 + tests/tinywiki-latest-pages-articles.xml.bz2 | Bin 9780 -> 0 bytes 8 files changed, 85871 insertions(+), 37 deletions(-) create mode 100644 tests/smallwiki-latest-pages-articles.xml delete mode 100644 tests/smallwiki-latest-pages-articles.xml.bz2 create mode 100644 tests/tinywiki-latest-pages-articles.xml delete mode 100644 tests/tinywiki-latest-pages-articles.xml.bz2 diff --git a/scratch.js b/scratch.js index a39a8df..43aee81 100644 --- a/scratch.js +++ b/scratch.js @@ -1,11 +1,11 @@ const w2m = require('./src') // const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' -const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' -const dbName = 'tmpwiki' - +// const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' +const path = './tests/smallwiki-latest-pages-articles.xml' +const dbName = path.match(/\/([a-z-]+)-latest-pages/)[1] w2m({ file: path, db: dbName, batch_size: 1000, - plaintext: true + plaintext: false }) diff --git a/src/02-multithreader.js b/src/02-multithreader.js index 44a2c5b..39fa733 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -40,23 +40,24 @@ class Worker extends EventEmitter { //await workerNodes.ready(); var workerCount = 0 - cpus.forEach((val, key) => { - workerNodes.call.xmlSplit(options, chunkSize, key).then((msg) => { - - workerCount++ + const onMsg = async (msg) => { + this.emit("msg", msg); + if (msg.type === "workerDone") { + workerCount -= 1 + console.log(workerCount + ' workers still running..') + if (workerCount === 0) { + await workerNodes.terminate() + this.emit("allWorkersFinished"); + } + } + } + cpus.forEach((val, key) => { + workerNodes.call.xmlSplit(options, chunkSize, key).then(() => { + workerCount += 1 if (workerCount === cpuCount) { workerNodes.workersQueue.storage.forEach((worker) => { - worker.process.child.on("message", async (msg2) => { - this.emit("msg", msg2); - if (msg.type === "workerDone") { - workerCount -= 1 - if (workerCount === 0) { - await workerNodes.terminate() - this.emit("allWorkersFinished"); - } - } - }) + worker.process.child.on("message", onMsg) }) } }) diff --git a/src/worker/_logger.js b/src/worker/_logger.js index 4546fa8..c348d2e 100644 --- a/src/worker/_logger.js +++ b/src/worker/_logger.js @@ -1,17 +1,19 @@ const log4js = require('log4js'); -log4js.configure({ - appenders: { - cheese: { - type: 'file', - filename: '/tmp/worker.logs' - } - }, - categories: { - default: { - appenders: ['cheese'], - level: 'info' - } - } -}); -module.exports = log4js.getLogger('cheese'); +module.exports = function() { + log4js.configure({ + appenders: { + cheese: { + type: 'file', + filename: '/tmp/worker.logs' + } + }, + categories: { + default: { + appenders: ['cheese'], + level: 'info' + } + } + }); + return log4js.getLogger('cheese'); +} diff --git a/src/worker/index.js b/src/worker/index.js index fc4ac5b..dcfa4d2 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -1,6 +1,6 @@ const LineByLineReader = require('line-by-line') const init = require('../01-init-db'); -const logger = require('./_logger') +const getLogger = require('./_logger') const parseLine = require('./01-parseLine') const parseWiki = require('./02-parseWiki'); @@ -10,7 +10,10 @@ const xmlSplit = async (options, chunkSize, workerNr) => { state, lr, pageCount, + logger, pages; + + logger = getLogger() if (workerNr === 0) { startByte = 0 } else { @@ -33,7 +36,7 @@ const xmlSplit = async (options, chunkSize, workerNr) => { workerBegin = Date.now() jobBegin = Date.now() doArticleTimeCounter = 0 - insertToDb = function(last) { + insertToDb = function(isLast) { lr.pause(); process.send({ type: "insertToDb", @@ -52,7 +55,8 @@ const xmlSplit = async (options, chunkSize, workerNr) => { workerBegin = Date.now() logger.info(`batch complete: worker pid:${process.pid} inserted ${pageCount} pages in ${((Date.now() - workerBegin) / 1000)} secs. doArticle took ${doArticleTimeCounter / 1000} secs.`); lr.resume(); - if (last) { + if (isLast === true) { + logger.info(`worker pid:${process.pid} is done.`); process.send({ type: "workerDone", pid: process.pid @@ -86,7 +90,6 @@ const xmlSplit = async (options, chunkSize, workerNr) => { // All lines are read, file is closed now. // insert remaining pages. insertToDb(true); - logger.info(`worker pid:${process.pid} is done. inserted ${pageCount} pages in ${((Date.now() - workerBegin) / 1000)} secs. doArticle took ${doArticleTimeCounter / 1000} secs.`); // process.exit() }); return (process.pid) diff --git a/tests/smallwiki-latest-pages-articles.xml b/tests/smallwiki-latest-pages-articles.xml new file mode 100644 index 0000000..a5270ff --- /dev/null +++ b/tests/smallwiki-latest-pages-articles.xml @@ -0,0 +1,85403 @@ +<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.10/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.10/ http://www.mediawiki.org/xml/export-0.10.xsd" version="0.10" xml:lang="ltg"> + <siteinfo> + <sitename>Vikipedeja</sitename> + <dbname>ltgwiki</dbname> + <base>https://ltg.wikipedia.org/wiki/Suoku_puslopa</base> + <generator>MediaWiki 1.30.0-wmf.16</generator> + <case>first-letter</case> + <namespaces> + <namespace key="-2" case="first-letter">Medeja</namespace> + <namespace key="-1" case="first-letter">Seviškuo</namespace> + <namespace key="0" case="first-letter" /> + <namespace key="1" case="first-letter">Sprīža</namespace> + <namespace key="2" case="first-letter">Lītuotuojs</namespace> + <namespace key="3" case="first-letter">Sprīža ap lītuotuoju</namespace> + <namespace key="4" case="first-letter">Vikipedeja</namespace> + <namespace key="5" case="first-letter">Vikipedejis sprīža</namespace> + <namespace key="6" case="first-letter">Fails</namespace> + <namespace key="7" case="first-letter">Sprīža ap failu</namespace> + <namespace key="8" case="first-letter">MediaWiki</namespace> + <namespace key="9" case="first-letter">Sprīža ap MediaWiki</namespace> + <namespace key="10" case="first-letter">Taiss</namespace> + <namespace key="11" case="first-letter">Sprīža ap taisu</namespace> + <namespace key="12" case="first-letter">Paleigs</namespace> + <namespace key="13" case="first-letter">Sprīža ap paleigu</namespace> + <namespace key="14" case="first-letter">Kategoreja</namespace> + <namespace key="15" case="first-letter">Sprīža ap kategoreju</namespace> + <namespace key="828" case="first-letter">Modulis</namespace> + <namespace key="829" case="first-letter">Moduļa diskusija</namespace> + <namespace key="2300" case="first-letter">Gadget</namespace> + <namespace key="2301" case="first-letter">Gadget talk</namespace> + <namespace key="2302" case="case-sensitive">Gadget definition</namespace> + <namespace key="2303" case="case-sensitive">Gadget definition talk</namespace> + <namespace key="2600" case="first-letter">Tēma</namespace> + </namespaces> + </siteinfo> + <page> + <title>Suoku puslopa + 0 + 1 + + 29433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + Atcēlu [[Special:Contributions/DJ EV|DJ EV]] ([[User talk:DJ EV|Diskusija]]) izdarīto izmaiņu 29425 + wikitext + text/x-wiki + {| id="mp-topbanner" style="width:100%; background:#F2F5FD; padding:4px; font-size:100%; margin-top:0.5em; border:1px solid #C7D0F8; -moz-border-radius:10px" +| width=60% align="center" valign="middle" | +<span style="font-size:200%; line-height:1.3; margin-left:5px">Vasali [[Vikipedeja|Vikipedejā]],</span> + +<span style="font-size:130%; line-height:1.3; margin-left:5px">breivajā eņciklopedejā latgaļu volūdā!</span> + +Niule latgaļu volūdā: [[Seviškuo:Statistics|'''{{NUMBEROFARTICLES}}''']] {{plural:{{NUMBEROFARTICLES}}|rakstīņs|rakstīni|rakstīni}} +|width=30% align="right" valign="top"| +{| class="toccolours" style="width:400px; align="left"; margin: 0.05em 0;" +|valign="top" |<small> +* [[Vikipedeja:Kai registrētīs|Registrētīs]] +* [[Vikipedeja:Smiļkšu skreine|Smiļkšu skreine]] +* [[Vikipedeja:Aizsuokt jaunu rakstīni|Aizsuokt jaunu rakstīni]] +* [[Vikipedeja:Rakstīņa papiļdeišona|Rakstīņa papiļdeišona]]</small> +|valign="top" |<small> +* [[Vikipedeja:Dūmu meits#Sovrūčis administracejis ībolsuošona|<font color="green"><u>'''Administracejis ībolsuošona'''</u></font>]] +* [[Vikipedeja:Dūmu meits|<font color="green">'''Dūmu meits'''</font>]] +* [[Vikipedeja:Administraceja|Administraceja]] +* [[Vikipedeja:Vikipedejis termini|Vikipedejis termini]]</small> +|} +|width=10%| +|} + +{| style="border-spacing:8px;margin:0px -8px" +|class="MainPageBG" style="width: 60%; border: 1px solid #cedff2; background-color: #ffffff; vertical-align: top; -moz-border-radius:10px" | +{| width="100%" cellpadding="2" cellspacing="5" style="vertical-align:top; background-color:#ffffff; -moz-border-radius:10px" +<!-------------------------------- +Vierteigs rakstīņs +----------------------------------> +! style="background-color: #cedff2; font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 100%; border: 1px solid #B1CDEB; text-align: left; padding-left: 7px; padding-right: 3px; -moz-border-radius:10px" | <div style="float:left;">[[Fails:Star Ouro 8bits.png]] Vierteigs rakstīņs</div><div style="float:right;">[[Fails:Wbar blue.jpg|link=]]</div> +|- +| style="; font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 90%" | {{Vierteigs rakstīņs}} +|- +<!-------------------------------- +Mieneša aizdavums +----------------------------------> +! style="background-color: #F0F3CD; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; border: 1px solid #DDDDA4; text-align: left; padding-left: 7px; padding-right: 3px; -moz-border-radius:10px" | <div style="float:left;">[[Fails:Disambigua compass.svg|20px]] Mieneša aizdavums</div><div style="float:right;">[[Fails:Wbar green3.jpg|link=]]</div> +|- +| style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 90%" | {{Mieneša aizdavums}} +|} +|class="MainPageBG" style="border:1px solid #cedff2; background-color:#ffffff; vertical-align:top; -moz-border-radius:10px"| +{| width="100%" cellpadding="2" cellspacing="3" style="vertical-align: top; background-color:#ffffff; -moz-border-radius:10px;" +|- +<!-------------------------------- +Izalaseits atvaigs +----------------------------------> +! style="background-color: #F7CADA; font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 100%; border: 1px solid #EF98B7; text-align: left; padding-left: 7px; padding-right: 3px; -moz-border-radius:10px" | <div style="float:left;">[[Fails:Nuvola filesystems camera.png|20px]] Izalaseits atvaigs</div><div style="float:right;">[[Fails:Wbar pink.jpg|link=]]</div> +|- align="center" style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 90%" +|[[Fails:Narzisse.jpg|350px|Mežoguo narcise]] +<small>[[Narcise]] - vīns nu pošu skaistūs pavasara zīdu Latgolys duorzūs. +</small><div style="float:right; font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 80%; padding:0 .5em 0 2em">''[[Vikipedeja:Izalaseits atvaigs|arhivs]]''</div> +|} +|} +<!-------------------------------- +Cyti projekti +----------------------------------> +{| style="width:100%; border-spacing:8px; margin:0px -8px width:60%; border:1px solid #CEDFF2; background-color:#FFFFFF; vertical-align:top; -moz-border-radius:10px" +! style="background-color: #CEF2E8; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; border: 1px solid #8BE0C9; text-align: left; padding-left: 7px; padding-right: 4px; -moz-border-radius:10px" | <div style="float:left;">[[Fails:Nuvola apps kfig.svg|20 px]] Cyti projekti</div><div style="float:right;">[[Fails:wbar green1.jpg|link=]]</div> +|- +| {{Radnesteigi projekti}} +|- +<!-------------------------------- +Baltu volūdu Vikipedejis +----------------------------------> +! style="background-color: #F2F5FD; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 100%; border: 1px solid #C7D0F8; text-align: left; padding-left: 7px; padding-right: 4px; -moz-border-radius:10px" | <div style="float:left;">[[Fails:Wikipedia-logo.png|20px]] Baltu volūdu Vikipedejis</div><div style="float:right;">[[Fails:Wbar transp.gif]]</div> +|- +| {{Vikipedeja cytuos volūduos}} +|- +|align=center| '''[[m:Complete list of language Wikipedias available|Vysys volūdys]]''' – '''[[w:Wikipedia:Multilingual coordination|Volūdu sadarynuošona]]''' +|}__NOTOC__ __NOEDITSECTION__ +{{noexternallanglinks}} +[[be:]] +[[de:]] +[[et:]] +[[en:]] +[[fr:]] +[[lt:]] +[[lv:]] +[[pl:]] +[[ru:]] +[[sv:]] +[[fiu-vro:]] +[[bat-smg:]] + disnkv72gqngow52boaebr7ctrxhsri + + + + 18 godu symts + 0 + 18 + + 29108 + 28109 + 2013-03-11T10:40:33Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7015]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Laika skaiteišonys zeimeibā 18 godusymts irā laika periods, kurs suocēs 1701 godā i tuoļuojuos da 1800 gods (īskaitūt) pa Gregora kalenderam. + +== Nūtikšonys == +* 1725 g. Jezuitu dokumentūs pasaruoda pyrmais latgaļu teksts - dasagrīzšona "svātajam kūkam" līpai. +* 1730 g. Izdrukavuota pyrmuo latgaļu gruomota (navā izaglobuojuse) +* 1750 g. Vilnē izdrukavuota J.A.Hilzena gruomota ''Inflanty'' +* 1753 g. Izdrukavuoti ''Evangelia Toto Anno'' (t.s. "Osyuna evaņgeleji"). Irā izaglobuojuši. Plaši lītuota gruomota Latgolys katuoļu bazneicuos da poš 20 gs. Latgalīšu raksteibys normativais paraugs. +* 1755 g. Iz Kruoslovu atsaucami lacaristi goreigajam seminaram īstateit i paturēt. Stotoma niulejuo bazneica (dabeigta 1767 g.) +* 1757 g. Dorbu suoc Kruoslovys bazneickungu seminareja - sova laika pyrmais augstuokais vuiceibys īstots Latvejā (dareja da 1844 g., sagatavādams 253 bazneickungus). Seminarejā vuica i latgaļu volūdu. +* 1761 g. Daugpiļs jezuitu škola puortaiseita par gimnazeju, 1767 g. pi juos īstateita teologejys klase katuoļu bazneickungim sagatavēt. +* 1768 g. Aglyunā suokta stateit niulejuo Bazilika, pasvieteita 1800 godā, bazilikys tituls nu 1980 g. +* 1772 g. Latgola daškierta Krīvejai piec Puolejis pyrmuos daleišonys, slavu ītaka pasastyprynoj. + +== Nūruodis == +* L.Leikuma. ''Gruomota Školuotuojim''. Lielvārds, 1993. + +{{Nadabeigts rakstīņs}} + 7a6pkfvaak7kt94e7m869g9yfy6l6c1 + + + + 19 godu symts + 0 + 19 + + 29107 + 28110 + 2013-03-11T10:40:32Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6955]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Laika skaiteišonys zeimeibā 19 godusymts irā laikavyds, kurs suocēs 1801 godā i tuoļuojuos da 1900 godam (īskaitūt) pa Gregora kaleņderam. + +== Nūtikšonys == +* 1802 g. Latgola teik par Vicebska gubernejis sadordaļu Krīvejis vaļsteibā. +* 1805 g. Izlaista ''Vyssa mocieyba katoliszka'' - vierteiga i volūdys zinē. +* 1817 - 1820 g. dorbojās Izvolta jezuitu kolegeja, kuru beidz i J.Macilevičs - ''Pawujciejszonys'' (1850 g.) autors. +* 1817 g. Izdrukavuota pyrmuo latgaļu gramatika. +* 1861 g. Krīvejā (i leidza ar tū Latgolā) atceļama dzimteiba +* 1862 g. Suoc izīt G.Manteifeļa kaleņderi (laižami da 1871 g. īskaitūt) +* 1863 g. Par Latgolu veļās puoļu bunta nūtikšonys. +* 1865 g. Latgolys latvīšim nūlīgta gruomotu drukavuošona latiņu literim. Suocās rūkroksta literaturys raisteiba, lelynojās "muotis školys pi rateņa", latgaliskūs dīvakolpuojumu zeimeiba. +* 1869 g. Izdrukavuots pyrmais latgaļu tautysdzīšmu lasejums, juos aizrakstejuse C.Platere. +* Ap 1875 g. Latgolā likvidātys vysys katuoļu Bazneicys školys. Styprynojās rusifikaceja. +* 1879 g. Dorbu suoc Pīterpiļs katuoļu bazneickungu seminareja, kuramā vāluok atsarūn i latgaļu stuņdis. +* 1899 g. Izīt P. Smeļtera folklora izlaseite, pyrmū reizi latgaļu raksteibā bez "gubu literu". + +== Nūruodis == +* L.Leikuma. ''Gruomota Školuotuojim''. Lielvārds, 1993. + +{{Nadabeigts rakstīņs}} + 6vush8th5g5yc8ap7f61giu8vht008z + + + + 20 godu symts + 0 + 20 + + 29087 + 28111 + 2013-03-11T10:37:29Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6927]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Laika skaiteišonys zeimeibā 20 godusymts irā laikavyds, kurs suocēs 1901 godā i tuoļuojuos da 2000 godam (īskaitūt) pa Gregora kaleņderam. + +== Nūtikšonys == +07.02.1922.gods. Istodišonys Sapuļcys sēdē nūteik Satversmys ūtrys dalys apsprīsšona. Par deputata F.Kempa prīšklykumu pi 115.panta, kas nūzeimej latvīšu volūdu, kai vaļsts volūdu ("pi kam Latgolys apgabalā par oficialu volūdu teik skateita latgaļu vītruna") balsoj tikai 18 cylvāki un jis nateik pījamts. Latgaļu parteju puorstuovi blokej Satversmys ūtrys dalys pījimšonu. + +{{Nadabeigts rakstīņs}} + pvxyy5ffd9qm29kgj9fy1b4tbul3ahu + + + + Acinonyx jubatus + 0 + 21 + + + 65 + 64 + 2011-03-19T13:01:03Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Gepards]] + lurv9vcyirdsitiltrly1gb9uvuajvz + + + + Aglyunys nūvods + 0 + 22 + + 28112 + 19948 + 2013-03-07T16:32:57Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2045300]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Aglyunys nūvods +| zemislopa = AglonasMapa.png‎ +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Aglyunys nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Aglyuna +| pluots = 392,7 +| dzeivuotuoju_skaits = 4 561 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 11,61 +| īstateits = 2009 +| teritoriskais_dalejums = [[Aglyunys pogosts]] <br /> [[Gruoveru pogosts]] <br /> [[Kastulīnis pogosts]] <br /> [[Škeļtiņu pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.aglona.lv +}} + +'''Aglyunys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], sasadorūšs nu četru pogostu. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Aglyunys nūvods| ]] + h3hqm2uin62rwcw8rzd7qaiaehspr2y + + + + Albaneja + 0 + 23 + + 31919 + 31539 + 2017-03-14T15:58:02Z + + GorillasPeaches + 3821 + + palaboju + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Albaneja'''<br />'''Shqipëria'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Albania.svg|150px|border]] +| align="center" width="140px" | [[Fails:Albania state emblem.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Albania Europe.png|300px]] +|- +|| Golvysmīsts || Tirana +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Bujars Nišani +|- +| Ministru prezidents || +|- +|| Pluots || 28 748 km² +|- +|| Dzeivuotuoju skaits || 2 886 026 (2016) +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Albaneja''' (alb.: ''Shqipëria'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Albaneja]] +[[Kategoreja:Pasauļa vaļsteibys]] + 2eh36ns7sdrtsc6tv3tuxs2ppteun18 + + + + Aleksejs Apīnis + 0 + 24 + + 11364 + 11125 + 2011-03-24T20:41:37Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Aleksejs Apīnis''' (1926) — latvīšu literaturviesturnīks, rakstinīks, latgaļu literaturys viesturis i kulturviesturis tāmātuojs. + +Gruomotuos ''Latvīšu gruomateiba'' ("Latviešu grāmatniecība", 1977) i ''Naprosūt atļuovis'' ("Neprasot atļauju", 1987) svuorstejs latgaļu 18-19 gs. rūkroksta literaturu. + +Kūpā ar I. Klekeri i L. Limani pīraksteitajā gruomotā ''Raksteituojs nu Nautrānu'' ("Rakstītājs no Nautrēniem", 1989) tiemiejs [[Andryvs Jūrdžys|Andryva Jūrdža]] dzeivi i dorbus. + +{{DEFAULTSORT:Apīnis, Aleksejs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + fnkjipkqtw0lys871stptuwgwp6ig4a + + + + Alfabetiskuo parādavuošona + 0 + 25 + + 28114 + 27947 + 2013-03-07T16:33:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 21 interwiki links, now provided by [[d:|Wikidata]] on [[d:q10925]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Alfabetiskuo parādavuošona''' ci '''kolaceja''' ir metods ([[:en:Algorithm|Algorithm]]), kurs taisa alfabetisku sarokstu nu sevkurys vuordu kūpys, kas pīraksteiti nazkaidā cylvāku volūdys alfabetā (pīmāram, [[Latgaļu alfabets|latgaļu alfabetā]]). Taida parādavuošona var baļsteitīs uz dažaidim principim. Goduos, kad svareiguoks ir matematiskai vīnkuoršs metods, a goduos, kad leidzeigim vuordim juoatsarūn sūplok. Leksikografu i vuordineicu dareituoju vydā izplateitī parādavuošonys metodi dūti zemļuok. + +== Voi jemt vārā lelūs/mozūs burtus? == +Eiropys tautu volūduos jau nu Vydslaikim atsaškir lelūs burtu simboli nu mozūs burtu simbolim. Pīmāram, "A" i "a" - ir atškireigys rokstu zeimis. Ari leksikografejā lelī i mozī burti vīn reizim paleidz pazeit sovumvuordus ([[:en:Noun#Proper nouns and common nouns|Proper noun]]) i eisynuojumus ([[:en:Abbreviation|Abbreviation]]) nu cytu vuordu. Pīmāram, ''Ceiruļs'' (cylvāka pavuorde) ir nazkas cyts nakai ''ceiruļs'' (putnu suga). No bīžuok vuordu nūzeime daudz nasamaina nu lelūs i mozūs burtu lītuojuma - pasaukuos i cytur bīži vyss teksts dūts ar lelajim burtim. Taida īmesļa dēļ alfabetiskuo parādavuošona Eiropys tautu volūduos bīžuok ir 2 sūļu process: +# Saparādavoj vuordus alfabetiskai, nasaverūt iz lelajim i mozajim burtim. +# Jo kaidi vuordi atsaškir vīn ar burtu lelumu, tod verās iz tū poziceju, kur pyrmuo atškireiba burtu lelumā. Pa prīšku īt tys vuords, kimā lītuots lelais burts. Pīmāram, ''Ceiruļs'' ir rokstoms ogruok nakai ''ceiruļs''. + +Taids algoritms ir lītuots angļu volūdā, bet tū var lītuot ari cytuos volūduos - ari lels daudzums latvīšu (baļtīšu) i latgaļu vuordineicu sastateits lītojūt itū sprostū parādavuošonys principu. + +== Sekundaruos burtu atškireibys baļtīšu i vuocu volūduos == +Daudzuos volūduos ir skaņu mejis. Pīmāram, vuocu volūdā "der Baum" (kūks) -> "die Bäume" (kūki) (par latgaļu metatoneju roksteits zemļuok). Kab byutu vīgļuok atrast daudzskaitļa formu vuordineicā, kur dūtys vīn vīnskaitļa formys, vuocu leksikografi bīži pījam, ka "a" i "ä" ir, prūtams, atškireigi burti, no tī ir "mozuok atškireigi", nakai "ä" i "b". Tū sauc par sekundarū atškireibu. Kab tuos nabyutu, tod ''Baum'' i ''Bäume'' alfabetiskajā parādā nabyutu sūplok, a storpā byutu lelums cytu vuordu (lobajā stabeņā '''Baum''' i '''Bäume''' ir tuoli vīns nu ūtra - tys ir "sūds" par sekundaruos atškireibys "a" i "ä" vīnaiduošonu ar primarū atškireibu). + + '''Baum''' '''Baum''' + '''Bäume''' Baumwolle + Baumwolle Baustelle + Baustelle Bauwerk + Bauwerk Bayern + Bayern '''Bäume''' + +Baļtīšu volūdā primarajā parādavuošonā ignorej atškireibys eisū i gorū patskaņu vydā (pīmāram, "Aa" i "Āā", "Ee" i "Ēē", ..., "Uu" i "Ūū"). Par tū, pīmāram, vuordi "Abava", "ābele", "ābelē", "aka", "akā" byus taidā kuorteibā, kai tī ite raksteiti ("ābele" īt pyrms "akys", ka "ā" i "a" pyrmiejuo kuortūšonā sakreit, a "b" pyrmiejuo kuorteibā ira pirms "k". Leidzskani (pīmāram, "Cc" i "Čč" voi "Ll" i "Ļļ") ir atškirami pyrmiejā kuortūšonā. Sekundarajā parādavuošonā īvāroj atškireibys eisū i gorū patskaņu vydā, bet ignorej atškireibys storp lelajim i mozajim burtim. Par tū "ābele" īt pirms "ābelē", ka primarajā parādavuošonā tī vuordi naatsaškir. Terciaruo parādavuošona atškir lelūs nu mozajim burtim - ''ābele'' kai sygys lītvuords atsaškir nu pavuordes vai nūsaukuma "Ābele" (vuordi ar lelajim burtim ir līkami prīškā). + +Vuocu volūdā sekundaruo parādavuošana ir starp "Aa" i "Ää", "Oo" i "Öö, "Uu" i "Üü". Krīvu volūdā - starp "Ее" i "Ёё". Algoritms, kū lītoj volūduos, kur ir sekudaruos atškireibys burtu vydā ir taids: +# Saparādavoj vuordus piec jūs primaruo atškireibu (nasaverūt iz umlautim, garuma zeimem, i citom sekundarom atškireibom, kai i iz burtu lelumu ("ābele" īt pyrms "aka"; primaruos atškireibys najem vārā, voi tei ir "ābele" voi "abele") +# Tūs vuordus, kam nav primaruo atškireibu, parādavoj piec sekundarom atškireibom, verūtīs iz umlautim i garuma zeimem ("ābele" īt pyrms "ābelē") +# Tūs vuordus, kam nav primaruo i sekundaruo atškireibu, parādavoj piec burtu leluma (pīmāram, "Ābele" īt pyrms "ābele"). + +== Inversais parāds == +Volūdnīceibā nūder vēļ vīns vuordu parāds - '''inversais parāds''', kimā iz vuordim verās nu ūtra gola, i tod parādavoj piec alfabeta. Tod vuordi ar vīnaidom golūtnem i vīnaidim pīdēklim stuov sūplok. Pīmāram, vysi vuordi, kam nominativā ir izskane ''-eiba'' byus vīgli atrūnami. Kairajā stabeņā dūti inversuo parāda ''pyrmī'' latgaļu vuordi, kas beja atrūnami lelā tekstu korpusā (latgola.lv komentūs). Vydus stabeņā dūts fragments iz vydus, kur sūplok stuov daudz laika apstuoklinīku. I lobajā stabeņā dūti inversuo parāda ''piedējī'' latgaļu vuordi. + + a ... ... + aba šūgod atsagrīž + divdaba kod naatsagrīž + kaba nakod juopīgrīž + atrībeiba jebkod atgrīž + darbeiba nikod apsasprīž + sadarbeiba nazkod apguož + īdarbeiba vysod nūlauž + vardarbeiba tod snauž + bezdarbeiba taitod izapauž + seceiba dzērd juoizapauž + garlaiceiba raud īgryuž + reiceiba dūd atgryuž + ... nadūd + ... ... + +== Secynuojumi == +Latgalīšu volūdai ir lela morfologiskuo boguoteiba - vuordim ir lūcejumi, kas puormaina jūs galūtnis. Ira ari metatoneja - patskani mainuos radnīceigu vuordu formu saknē (g'''o'''lds - g'''a'''ļdeņš, n'''e'''st - n'''a'''su, v'''ā'''za - v'''ie'''zeņa, p'''y'''rmais - p'''i'''rmeigs). Vuordineicā bīži roksta vīn pamata formu (nanūsaceibu ''n'''e'''st'' a na ''n'''a'''su''; ''r'''a'''ksteit'' a na ''r'''o'''kstu''). Deļ tuo cylvākam, kurs nazyn latgaļu metatonejis eipateibu, var byut gryutumi atrast vuordu vuordineicā - ''rokstu'' ir juomeklej pi vuordim, kas suocās ar ''ra-...''. Latgalīšu volūdys vuordus nabyutu logiski parādavuot kai arabim (najemt vārā patskanus), i par tū tī gryutumi ir juopīcīš. + +Latgalīšu volūdā navarim bez dūmuošonys puorjemt tuos sekundaruos atškireibys, kas pastuov, pīmāram, latvīšu voi vuocīšu volūdā - par tū, ka patskanu mejis latgaļu volūdā ir sovpateigys. Latgalīšu volūdys datorizaceja vēļ nav daguojuse da tam, kab byutu datoru bibliotekys ar standarta kolacejis algoritmim, kai tys ir latvīšu, krīvu i vuocīšu volūdom. Vēļ nav zynoms, voi latgaļu volūdā vajadzeigys sekundaruos atšķireibys starp eisajim i garajim burtim. Pīmāram, voi "a" i "ā" atsaškir primari voi sekundari. Pīmāram, voi vuorda "gods" formys ''goda'' i ''godā'' byutu juoroksta sūplok, a ''godadīna'' piec jū obadvieju. Voi ''ābļavuot''(ēvelēt) ir alfabetiskai pyrms vuorda ''acteņa''? Voi burti "i" i "y" atsaškir primari voi sekundari? Vysi tī vaicuojumi gaida sova atsacejuma. Varim vīn minēt, ka tuos metatonejis, kur "y" bīži puorīt iz "i", pīmāram, ''c'''y'''lps'' - ''c'''i'''ļpeņš'', ''st'''y'''prs'' - ''st'''i'''prinīks'', varātu byut vīns nu īmeslim, deļ kuo latgaļu volūdā burti "i" i "y" ir atrūnami alfabetā sūplok, bet cytuos volūduos (anglīšu, franču, vuocīšu) "y" ir pošuos alfabeta beiguos pyrms "z". + +== Nūruodis == +* [http://java.sun.com/j2se/1.5.0/docs/api/java/text/RuleBasedCollator.html "java.text.RuleBasedCollator"] - Javys klase, kas ļaun taiseit sovus parādavuošonys algoritmus, kas atsaškir nu standarta lokalizaceju (pīmāram, lejislatvīšu(lv), angļu(en)). + +[[Kategoreja:Roksts]] + npb3wnv0p9tfnebpwf6effan1y80hqd + + + + Aloizs Broks + 0 + 26 + + 19428 + 11365 + 2011-12-18T17:44:53Z + + 95.68.80.237 + + r+y + wikitext + text/x-wiki + '''Aloizs Broks''' (1898 — 1943) — latgaļu religiskais i ļaudyskais dareituojs, pedagogs, [[puorvārsuojs]], redaktors. Puorvierss iz latgaļu volūdu Jaunū Īstuodejumu. + +Dzims Varakļuonu pogostā, studejs teologeju Vienā, tī dabuojs teologejis doktora cylys. Bejs Aglyunys gimnazejis inspektors i direktors. Izlaids pedagogisku žurnalu ''Draugs'' (1928-1931), bejs žurnala ''Zīdūņs'' (1931-1939) redaktors. + +1942 g. pajimts navaļā, nūvasts da Štuthofa koņcentracejis lagera. Juo tuoluokais nūlicīņs nazynoms. + +Izlaids dvēseliska turīņa gruomotys. Puorvierss nu greku originala Jaunū Īstuodejumu (I daļa: ''Svātī Roksti. Jaunais Īstuodejums. jezus Krystus Evaņgelejs i Apostolu dorbi'', 1933; II daļa: Apostolu viestulis i Apokalipse'', 1937). + +== Nūruodis i olūti == +Janina Kūrseite, Anna Stafecka "Latgola: volūda, literatura, folklors" ("Latgale: valoda, literatūra, folklora") Rēzne, 2003 + +{{DEFAULTSORT:Broks Aloizs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + crnhcf53jsgppv03e63i84mwny7x7qo + + + + Aluviskuos nūsādys + 0 + 27 + + 30172 + 29006 + 2013-12-21T19:25:03Z + + Holger1959 + 2250 + + wikidata + wikitext + text/x-wiki + '''Aluviskuos nūsādys, aluvejs''' (anglīšu: ''alluvial deposit, alluvium''; krīvu: ''аллювиальные отложения, аллювий''; latvīšu: ''aluviālās iegulas, alūvijs'') — upmolu nūsādys, kurys sataisa i puornosoj nūtalejis voi laiceigys iudiņa straujis [[upe|upu]] lejuos. + +[[Etimologeja]] — nu [[latiņu volūda|latiņu]] ''alluvius < alluere'' 'skoluot, skoluotīs'. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Geologeja]] + fmw8jjba0f5cg6hbovwh2ja4mtalyg3 + + + + Andora + 0 + 28 + + 31540 + 31285 + 2016-08-07T12:35:19Z + + DARIO SEVERI + 3389 + + Update inf. from Wikipedia (fr) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Principat d’Andorra'''<br />'''Principado de Andorra'''<br />'''Principauté d'Andorre'''<br />'''Andora'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Andorra.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Andorra.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Andorra Europe.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Monarhs || Joan-Enric Vives i Sicília<br />François Hollande +|- +| Ministru prezidents || Antoni Martí Petit +|- +|| Pluots || 468 km² +|- +|| Dzeivuotuoju skaits || 85 580 (2015) +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Andora''' (kat.: ''Principat d’Andorra'', span.: ''Principado de Andorra'', pr.: ''Principauté d'Andorre'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Andora| ]] +[[Kategoreja:Pasauļa vaļsteibys]] + 315ymbp2aiysqw98tg5rqfs45kiv5c2 + + + + Andrejs Višinskis + 0 + 29 + + 31595 + 28116 + 2016-10-22T20:43:26Z + + AMY 81-412 + 3656 + + wikitext + text/x-wiki + [[Fails:RIAN archive 7781 Vyshinsky.jpg|thumb]] +'''Andrejs Višinskis''' (<font lang="ru">''Андрей Януарьевич Вышинский''</font>, 1883.goda 10.dekabris / 28.novembris (v.stiļs) – 1954.goda 22.novembris) — krīvu i padūmu jurists i diplomats. PSRS uorlītu ministrs nu 1949. da 1953. godam. + +== Dzeive == +Pīdzyma Odesā. Juo tāvs, Januarijs Višinskis beja pūļu tauteibys farmaceits i dreiži piec dāla dzimšonys puorsacēle iz Baku, juo muote beja muzikys školuotuoja. Beidze gimnazeju Baku piļsātā i 1901.godā īsuoca vuiceibys Kijevys universitates juridiskajā fakultatē. Dreiži beja nu tuos izslāgts par daleibu studentu namīrūs i atsagrīze Baku. A.Višinskis īsastuoja Krīvejis Socialdemokratiskajā Struodnīku partejā (KSDSP) 1903.godā, meņševiks. Piec 1905.g. revolucejas beja apcītynuots Bailovskys cītumā, kur īsapazina ar J.Staļinu. 1913.godā beidze Kijevys universitati, suoca sasagotovūt profesora omotam, no dreiži beja nu turīnis izraideits kai politiski nauzticams. Atsagrīze Baku, pasnīdze krīvu literaturu i latiņu volūdu privatā gimnazejā, nūsadarbuoja ar advokaturu. 1915 godā Maskavā beja pazeistamā advokata Maļantoviča paleigs. 1917.godā piec febraļa revolucejis kliva par Maskavys Jakimanskys rajona milicejis komisaru. Byudams tymā omotā, paraksteja reikūjumu Ļeņina i Zinovjeva arestam, gadejumam ka jī pasaruodeitu Maskavā - tūlaik Krīvejis Pagaidu vaļdeiba Ļeņinu skaiteja par vuocu spīgu. + +Īsastuoja Krīvejis Komunistiskajuo (boļševiku) partejā vīn 1920.godā. Da 1923.godam struoduoja Maskavys pārtikys voldā. Beja profeesors Maskavys universitatē i Tautys Saimnīceibys iņstitutā. 1923.-1925.g. Augstuokuos tīsys prokurors, 1925-1928.g. - Maskavys Vaļsts universitatis rektors. 1935.godā kliva par PSRS generalprokuroru. Pīsadalejs vysūs pazeistamajūs tīsys procesūs - jūs vydā ari safabricātajuos procesūs "Šahtinskys līta" ("Шахтинское дело", 1928), "'Prompartijys' līta" ("Дело 'Промпартии'", 1930). Pīsadaleja ari pazeistamajūs politiskajūs procesūs 1936., 1937. i 1938.g. Politiskū procesu uperim veļteja nažeileigu retoriku. Zinovjeva-Kameņeva procesa nūbeigumā jis saceja pazeistamū frazi "Aptrakušūs suņus pīprasu nūšaut - piļneigi vysus!" (''Взбесившихся собак я требую расстрелять - всех до одного!''). + +Dreiži piec 2.pasauļa kara suokuma beja PSRS puorstuovs Latvejā, organizēja Latvejis pīsavīnuošonu PSRS piec 1940.goda 16.juņa ultimata. Atcēle nu omota naatkareiguos Latvejis vaļdeibys vadeituoju K.Ulmani, organizēja V.Luoča vaļdeibu i Saeimys ībolsūšonys farsu. 1945.godā pīsadaleja Nirnbergys tīsā. Jis bejis tautys komisaru padūmis prīkšsādātuoja vītnīks (1939–1944), uorlītu tautys komisara vītnīks (1940–1949), uorlītu ministrs (1949-1953), Padūmu Zineibu akademejis akademikis (nu 1939.g.), i piec J.Staļina nuoves PSRS pastuoveigais puorstuovs ANO. Lobi muocēja pūļu i fraņču volūdys; muocēja ari angliski. Jis nūmira Ņujorkā, byudams ANO dorbā, i beja apglobuots Sorkonajā laukumā. + +== Dorbs tīseibzineibā == +A.Višinskys izstruoduoja likumiskū pomotu Staļina represejom. Vīns nu A.Višinska teorejis principim beja atzeit kriminalū lykumu kai reiku škiru ceiņā. Gruomota, kur juo dūmys apraksteitys - ''Tīsys daruodejumu teoreja PSRS justicejā'' (''Теория судебных доказательств в советской юстиции'') sajēme Staļina premeju 1947.godā. Padūmu tīsu sistemai i ari A.Višinskim bīži pīroksta principu "apsyudzātuo atsazeišona - daruodejumu karalīne" (''признание обвиняемого - царица доказательств''). No A.Višinska zynuotniskajā dorbā raksteja piļneigi citaiž - vaineiguo atsazeišonai PSRS tīseibu praksē asūt vīn nalela nūzeime. + +== Nūruodis == +* [http://www.peoples.ru/state/lawyers/vyshinskiy/ Biografeja] +* [http://art-bin.com/art/omosc22m.html Višinska runa 1936.goda Zinovjeva i Kameņeva tīsā] +* [http://history.tuad.nsk.ru/Russia/USSR/1936-1941/buh-tro/utro11-5-38.html Runa 1938.goda trockistu-buharinīšu procesā] +* [http://www.law.umkc.edu/faculty/projects/ftrials/hiss/hissvenona.html VENON transkripts #1822; amerikaņu spīga Algiers Hiss syutejums] + +{{DEFAULTSORT:Viszinskis, Andrejs}} + +[[Kategoreja:Zeimeigi ļauds]] +[[Kategoreja:Pošjaunī laiki]] + eige5a79r7ik31nhwozq6dljxqz3wnt + + + + Andris Viejāns + 0 + 30 + + 29833 + 22739 + 2013-04-15T03:32:52Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Andris Viejāns''' (pa eistyn. vuordam ''Donats Kalnačs'', 1927) — latgaļu ailinīks, publicists. Rakstejs latgaļu i latvīšu volūduos. + +Latgaliskai — aprakstīņu lasejums ''Latgolys mozaika'' (1992). Poezeja drukavuota publicistikā. + +{{DEFAULTSORT:Viejāns Andris}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 9cpv1fyyrekn8v1g8smkje1h7roo8tr + + + + Andryvs Jūrdžs + 0 + 31 + + 31979 + 31943 + 2017-05-10T11:29:28Z + + Turaids + 172 + + + wikitext + text/x-wiki + '''Andryvs Jūrdžs''' (pīdzims 1845. goda 30. novembrī (piec cytim datim — 1854. godā<ref>Andryvs Jūrdžs 1984, 103. lpp.</ref>) [[Ludza|Ludzas apriņča]] [[Zaļmuiža|Zaļmuižas pogosta]] Kuorklinīku cīmā<ref>Apīnis i cyti 1989, 18. lpp.</ref>; nūmirs 1925. goda 22. aprelī, apglobuots [[Nautrānu pogosts|Nautrānu pogosta]] Desetnīku kopsātā)<ref>Andryvs Jūrdžs 1984, 102. lpp.</ref> beja [[latgalīši|latgalīšu]] literuots i gruomotnīks. + +== Saime == +Andryvs Jūrdžs pīdzymst dzimtcylvāku Meikuļa i Johannas Jūrdžu saimē kai ūtrais dāls. Tāvs nūmierst, kod Andryvam ir tikai 10 godu. Muote apsaprecej ūtru reizi, pīdzimst pusbruoļs i pusmuosa. Patāvs Andryvu naīrauga. 1862. godā vacuoku zeme teik sadaleita, Andryvs daboj 15 hektaru i suok patstuoveigas dorba gaitys.<ref>Apīnis i cyti 1989, 18.—19. lpp.</ref> + +18 godu vacumā (1863. godā) A. Jūrdžs apsaprecej ar Zuzannu Meikstumu. Saimē pīdzimst 11 bārni (5 dāli i 6 meitas). 4 nu tīm myruši mozūtnē. Dāls Pīters krits karā [[1914. gods|1914. godā]] pi [[Varšava|Varšavys]]. Stanislavs dīnieja flotē. [[1905. gods|1905. godā]] jis syuteits revolucejis apspīsšonai, bet puorguojis revolucionaru pusē, par kū jis vāluok tīsuots i siediejs [[Opočka]]s cītumā, kur saslymst ar dylūni. Tīpat ir mirs i apglobuots. Izidors aizīt „pazudušuo dāla” gaitys: septeņpadsmit godu vacumā pret vacuoku grybu dūdās uz [[Pīterburga|Pīterburgu]], kur apsaprecej ar tāvam i muotei napateikamu pūļu tauteibas piļsātneicu. Ontons mantoj tāva sātu. Jūrdžu treis meitas Veronika, Johanna i Franciška īsaprecieja tyvuokā apleicīnē i izveidoj kuplys saimis.<ref>Apīnis i cyti 1989, 20.—21. lpp.</ref> + +== Dzeivis guojums == +Andryva Jūrdža myužs suocēs klaušu laikūs, ari pats jis ir guojs klaušuos. Jūrdžs ir pīredziejs zemnīku breivlaisšonu nu dzimtnīceibys (1861).<ref>Andryvs Jūrdžs 1984, 5. lpp.</ref> + +Skūluos nav guojs, skaitēt i rakstēt īsavuiciejs pats. Gonūs īdams, ar ūgli uz tuoss jis ir zeimiejs drukavuotūs burtus i atrads, ka tūs drusku vīnkuoršuojūt i palīcūt sleipuok var izmontuot raksteišonai. Šis atrodums jū padarejs par rakstnīku. Tuoļuokū izgleiteibu jis ir smielīs nu gruomotom i dažaidom avīzem. Pamozom Andryvs Jūrdžs ir īsamuocejs [[krīvu volūda|krīvu]] i [[pūļu volūda|pūļu volūdu]] i taidā veidā sovu redzis lūku padarejs plašuoku.<ref>Andryvs Jūrdžs 1984, 7. lpp.</ref> + +Andryvs beja lobs tāvs i saimnīks. Jis ir bejs cīš kuorteigs, mīļuojs teireibu i sātys skaistumu. Vyss sātā i ap sātu ir bejs juo rūku veiduots.<ref>Andryvs Jūrdžs 1984, 130.—131. lpp.</ref> Jūrdžs prats arī peit peitiņus, kurus ari ir puordevs. Jis turēja i kūpe bitis. + +Struoduodams par pogosta „magazejas klēts” vadeituoju, jis tyka napatīsi apvainūts labeibys zagšonā i 8 mienešus (piec cytim datim — 6 mienešus.<ref>Apīnis i cyti 1989, 21. lpp.</ref>) pavadejs cītumā.<ref>Andryvs Jūrdžs 1984, 132.—133. lpp.</ref> Bet dzeivisprīcu Andryvs nazaudieja (atainuots juo dzejūlī „Žarāna brīsme”) + +Jūrdžs beja muzikāls. Jis ir bejs dzīduotuojs, jam beja lobs bolss — tenors, partū jis vysur tika aicynuots i cīneits. 1910. godā Andryvs ar dzīduošonu pīsadaliejs pyrmajā školuotūs latgaļu reikuotajā teatra izruodē sovā dzymtajā pogostā.<ref>Andryvs Jūrdžs 1984, 127. lpp.</ref> Andryvs Jūrdžs prata spielēt ari [[kūkles]]. Jūrdžs leidz pošam vacumam beja bazneicys dzīduotuojs. + +[[Juoņs Cybuļskis]] par vacū tāvu soka: „Dīnā — zemnīks, naktī — rakstnīks”. Lelā puorpyulē, naktī raksteidams, suokumā pi skola gaismenis, piečuok jau pi petrolejis lampys, Andryvs Jūrdžs sabeidza sovu ocu gaismi. Ar lobū aci jis vēļ nadaudz varieja redziet, bet dāla Izidora bārni, kaitejūt ar gumejis bumbeņu, najauši īsyta tik stypri pa lobū aci, ka vacais tāvs zaudieja redzi. Tai nu [[1918. gods|1918. goda]] Andryvs Jūrdžs kliva pavysam oklys.<ref>Andryvs Jūrdžs 1984, 128.—129. lpp.</ref> + +== Literarais devīņs == +Andryva Jūrdža literariskuo darbeiba ir bejuse ražena — jis raksteja originaldorbus, tulkuoja, atdzejuoja, vuoce vacūs ļaužu gudreibu, kūpumā jis ir sarakstejs 25 (piec [[Viktors Cybuļskis|Viktora Cybuļska]] ziņom — 38<ref>Andryvs Jūrdžs 1984, 112. lpp.</ref>) bīzus siejumus. Gruomotys beja moza formata i aptvēre ap 1000 puslopu kotra.<ref>Andryvs Jūrdžs 1984, 7.—8. lpp.</ref> (kūpsummā izīt 11 858 puslopys aba 5929 lopys) + +Piec cytim datim, saskaitūt kūpā saglobuotuos gruomotys, fragmentus i kuodreiz kur to nūruodeituos gruomotys, saīt 34 siejumi: 8 gruomotys ar dzejūlim i prozys dorbim, 5 gruomotys ar prozu, 3 kalendari, 1 sokomvuordu i aforismu kruojums, 12 gruomotys ar religiskim tekstim (dzīšmis, lyugsnys, uzrunys, stuosteni), 1 nanūskaidrojamu tulkuojumu siejums, 2 ziniska i praktiska satura eksemplari (vuordneica, uorstnīceibys i saimisteibys padūmi), 2 nazynoma satura gruomotys. + +Īpašu īviereibu peļnej Andryva Jūrdža sastuodeitais [[Myužeigais kalinders|„Myužeigais kalinders”]] (1916), kurs ar sovim padūmim kotrai goda dīnai nav nūvacuojis leidz myusu dīnom.<ref>http://tilra.ru.lv/</ref><ref>Apīnis i cyti 1989, 40. lpp.</ref> Var uzskateit, ka Jūrdža litararuo darbeiba ir gon enciklopediska, gon poetiska i folkloriska. Vīla i materials ir jimts nu seņču dzeivis pyura. + +Precīzu siejumu skaitu ir gryuts minēt, juo Andryva Jūrdža rūkroksti vairumā sadaga guņsgrākā pyrmajā latgaļu muzejā Rēzeknē, kur asūt bejuši 15 (piec Viktora Cybuļska ziņom — 26) ar rūku raksteiti siejumi. Piec [[Miķeļs Bukšs|Miķeļa Bukša]] Latgaļu literatūras viestures datim muzejs ir nūdedzis 1923. godā, piec [[Juoņs Velkme|Juoņa Velkmes]] ziņom, kas tod beja Rēzeknes dekans, tei muoja nūdaguse 1924. goda janvarī.<ref>Andryvs Jūrdžs 1984, 99. lpp.</ref> + +Jūrdžs beja ari korespondents pyrmajūs latgalīšu laikrokstūs [[Gaisma (laikroksts)|„Gaisma”]] i [[Dryva (laikroksts)|„Dryva”]], syuteidams dzejūļus, aforismus, stuosteņus, folklorys materialus, Nautrānu kulturys i saimisteibu dzeivis aprokstus. Jūrdža īsyutiejumus publicieja kalendarūs, juo dzejūli ītylpa pyrmajā latgalīšu dzejis antologejā [[Kūkle (antologeja)|„Kūkle”]] ([[Rēzne]], 1914) i antologejā [[Latgales dziesminieki|„Latgales dziesminieki”]] ([[Reiga]], 1936).<ref>Apīnis i cyti 1989, 25.—26. lpp. </ref> + +Andryva Jūrdža rūkrokstu mantuojums ir nūzeimeiguokais storp [[Latgola|Latgolys]] rokstu pīminieklim.<ref>Apīnis i cyti 1989, 13 lpp.</ref> + +=== Volūda === +Jūrdža volūda ir tautas lītuota volūda Nautrānu izlūksnē, ītvarta pūļu ortografejā, kaida tod pastuovēja lyugšonu gruomotūs. Juo volūda ir teira, bez pījaukumim i krūpļainom formom. Andryva Jūrdža volūda ir konsekventa, styngri izturāti [[latgalīšu volūda]]s principi. Juo raksteiba ir vairuok fonetiska nakai morfologiska.<ref>Andryvs Jūrdžs 1984, 99.—100. lpp.</ref> + +Andryvs Jūrdžs ir kai simbols latgalīšu tautai uz laiku laikim gon seikstumam, ceiņai, iztureibai i uzvarai, gon ari teiši drukuotuo vuorda napīcīšameibai, gon uperim, kas tam ir juones. Andryvs Jūrdžs ir gaismys maklātuojs. Jis īmantuojs gūdpylnu „zemnīka Prometeja” nūsaukumu. Ari Andryvam Jūrdžam veiduotajā pīminieklī attāluots jauneklis, kas augstu pacaltā rūkā nes guni.<ref>Apīnis i cyti 1989, 28. lpp.</ref> + +== Izmantuotuo literatūra == +# Andryvs Jūrdžs. Vl. Luoča red. P/s Latgaļu izdevnīceiba, 1984. 543 lpp. +# Apīnis, A., Klekere, I., Limane, L. Rakstītājs no Nautrēniem: Andriva Jūrdža dzīve un veikums. Rīga: Liesma, 1989. 137 lpp. + +== Nūruodis == +{{nūruodis}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + d6l651sbl451v3ok2wkchzvtqrccqvm + + + + Anna Rancāne + 0 + 32 + + 30353 + 11371 + 2014-06-21T09:03:05Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + '''Anna Rancāne''' (1959) — latgaļu ailineica i publiciste, vīna nu pošu zeimeiguokūs Latgolys liriku, [[Latgaļu himna|latgaļu himnys]] vuordu autore. Rakstejuse latgaļīšu i latvīšu volūdā. + +Dzymuse 1959. gods juņa 12 dīnā [[Miglinīku pogosts|Miglinīku pogosta]] Lyuzinīku solā. Vuicejusēs Lyuzinīku pamatškolā (1966-1970), Nautrānu vydsškolā (1970-1977), [[Latvejis vaļstiskais universitets|Latvejis vaļstiskuo universiteta]] Ekonomikys fakuļtetā (1977-1982) i Moskvys Gorkeja Literaturys institutā (1983-1988). Darejuse par programātuoju Reigā, Infomacejis i skaitļuošonys centrī (1982-1984, 1985-1986), par ekonomisti Reigys TEC-1 (1984-1985), par laistivis ''Liesma'' redaktori (1986-1989). Nu 1989. da 2000. gods dzeivuojuse Daugpilī, darejuse Daugpiļs teatrī par literariskuos dalis vadeituoju, piec - par laikroksta ''Latgales Laiks'' golvonū redaktori. Nu 2000. gads dzeivoj [[Rēzne|Rēznē]] i dora laikroksta ''Diena'' Rēznis birojā. + +Poezejis lasejumi pa lelumam latvīšu volūdā ar atseviškim dzeivulim latgaliskai: +* Pyrmuo publikaceja - dzejūļs "Kū dzīduoja buora bārni"(„Ko dziedāja bāra bērni”) Ludzys rajona laikrokstā "Za pobedu komunizma" (1975. g. 30. dec.) +* ''Lyugšona sātai'' ("Lūgšana mājai", 1982) +* ''Pīktdīne'' ("Piektdiena", 1986) +* ''Advents'' ("Advente", 1991) +* ''Azilyugšona'' ("Aizlūgums", 1997) +* ''Svātdīne'' ("Svētdiena", 2001) +* Saulis kolpyuneite („Saules kalponīte”, izlase, 2005) +* Zeimes(„Zīmes", dzeja i puorlykumi, 2005) +A. Rancānis poezejai soveigs dvēseliskums. Jamā Biblejis reminisceņceju izlītuojums kolpoj dvēseliskajom vierteibom - mīleibai, saprasmei, ciļveiceigumam, patriotismam, ticeibai - izsaceit. Vysim A. Rancānes aiļu lasejumim karaktereigs seviškys smolkums. Vydumyskuma i laika kategorejis apzeimejūši elementi dzeivuļūs dora kai dvēselis spīgeļs, jutūņu atspeidīņs. + +Daži mieginuojumi dramaturgejā - mistereja "Francs Trasuns"( „Francis Trasuns”) (Olūts, 1992, Nr. 8), Sv. Terezys dzeives aproksta "Kaidys dvieselis stuosts"(„Kādas dvēseles stāsts”)dramatiziejums, 1995. godā vīna nu scenareja autorem dokumentalajai filmai "Ar paļuoveibu pi žielesteibys trūņa" („Ar paļāvību pie žēlastības troņa”) par Rūmys pāvesta Juoņa Puovula II vizeiti Latvejā, filmā izmontuotais dzejūļu cykls īkļauts kruojumā "Aizlyugums"(„Aizlūgums”). 1999. godā sarakstiejuse ari libretu pyrmajai latgalīšu bārnu operai „ Muna tāvuzeme” (komponiste J. Svilpe). Dzejūļus par dzīsmu tekstim izmontuojuši R. Pauls, E. Straume, I. Arne, I. Rutmanis u. c. + +Annys Rancānis dzejūļu vuordi ir izmontuoti dažu izpildeituoju muzikā, pīmāram, „Aizlyugums” – grupa „Tranzīts”, „Nanuocit kluot maņ rudinī” – Laima Vaikule, „Skaidra volūda” – naoficaluo latgalīšu himna, muzikys autors ir [[E. Karūdznīks|E. Karūdznīks.]] <ref>Latgales kultūras darbinieki 2, 2008.170</ref> + +== Apbolvuojumi == +[[Ed. Veidenbaums|Ed.Veidenbauma]] premeja (1993). [[Julians Kardinals Vaivods|Juliana Kardinala Vaivoda]] bolva (1995). [[Aspazeja|Aspazejys]] premeja (2000.g.). a/s «Presis noms» gūdolga par manuskriptu «Svātdīne» (2002). <ref>[http://www.makslinieki.lv/profile/258/ Anna Rancāne]</ref> + +== Portala LV.LV saruna ar dzejnīci i žurnalisti Annu Rancāni (2009. g. 10. novembrī) == +- Kas ir jyusu dzeivis leluokuos boguoteibys? +Gimenis tradicejis, saskaņa ar sovu sirdsapziņu i mīlesteibu. + +- ''Mēs bijām kā zāle, ko nomin,/bet celsimies spārnos kā putni,/ticība būs mūsu spārni'', rokstat dzejūļu cykla "Ar paļuoveibu pi žielesteibys trūņa"("Ar paļāvību pie žēlastības troņa") nūslāgumā, kas velteits Rūmys pāvesta Juoņa Puovula II vizeitei Latvejā 1993. godā. Kam tycot myusu dīnuos? +Latvejis pyrmuos breivvaļsts laika politikis, goreidznīks i vaļstsveirs [[Fraņcs Trasuns]] saceja tai: es tycu Dīvam i tautai. Es jam pīsavīnojūs. Tagad ir izškireigs breids, gluži kai tod, kod beja vaidi, pieckora godi - voi tauta izdzeivuos? Izdzeivuoja tod, izdzeivuos ari tān.<ref>[http://www.lvportals.lv/viedokli.php?id=200300 Mēs bijām kā zāle, ko nomin]</ref> + +== Myusdīnu latgalīšu dzejis antologeja. „Susātivs”. Literarais CV == +- Kas Tovā dzeivē ir pats svareiguokais? +Muni bārni i sajiuta, ka varu struoduot. + +- Kū Tu napījem itymā pasaulī? +Tū, ka maņ uzspīž kū taidu, kuo es nagrybu. + +- Tova kruosa? +Kaida kurū reizi pīstuov. Vairuok gon malnuo i sorkonuo, reižu reizem besakūka ļilovuo, skumeigūs i griecinīku kruosa... + +- Tova telpa? +Vysa Latgola. Drusku ari Reiga. Puors vītu, kuru nikod naaizmiersšu. + +- Tovs pamats? +Ni sātys, ni boguota veira, ni karjerys navā... mož zyls gaiss? Dabasi i kūki, kas aug ar saknem gaisā. + +- Tova profeseja? +Raksteit.<ref>Myusdīnu latgalīšu dzejis antologeja. Susātivs.2008,19.- 20.</ref> + +== Byutiskuokuos publikacejis kūplasejumūs == +* "Olūts:literatūras almanahs." (A. Viejāns 1992, V. Unda 2005), +* "Latgalīšu dzejas antoloģija." (V. Valeinis 2001), +* "Latgale: valoda, literatūra, folklora." (J. Kursīte, A. Stafecka 2003), +* "Rīga ūdenī: latviešu dzejas izlase." (latviešu un vācu valodā, G. Zēhauza 2004), +* "Saulis spaiti iz spīgeļu", +* "Лучи по зерколам." (latgalīšu i krīvu volūdā I. Magazeinis, F. Osina 2007), +* "Rēzekne: dzejas almanahs" (O. Afanasjeva, 2000 – 2008). + +== Roksti par Annas Rancānes dzeju == +# Vējāns, A. "Latgales rakstu gaisma." Rīga: Sprīdītis,1996, 542.–592.lpp. + +== Atsaucis == +{{Reflist}} + +{{DEFAULTSORT:Rancāne Anna}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + i67nh5rblzkdttycgozpnu8lsjyjeqj + + + + Anna Stafecka + 0 + 33 + + 13616 + 11372 + 2011-04-24T13:01:52Z + + Vucyns~ltgwiki + 435 + + + wikitext + text/x-wiki + '''Anna Stafecka''' (1953) — latgalīšu volūdzinineica. + +Dzymuse 1953 g. [[Ludzys rajons|Ludzys rajona]] (niule - [[Rēznis nūvods|Rēznis nūv.]] Miglinīku pogosta Sylovā. Vuicejusēs [[Lyuzinīku pamatškola|Lyuzinīku pamatškolā]] i [[Nautrānu vydsškola|Nautrānu vydsškolā]]. Beiguse [[Latvejis vaļstiskais universitets|Latvejis vaļstiskuo universiteta]] (niule - [[Latvejis universitets]]) Filologejis fakuļtetu 1977 godā. Dora Latvīšu volūdys institutā. Tiemej dialektologeju i latgalīšu volūdu. Filologejis doktore. + +'''Gruomota:''' +* ''Latgola: volūda, literatura, folklors'' ("Latgale: valoda, literatūra, folklora", kūpā ar [[Janina Kūrseite|Janinu Kūrseiti]], 2003). + +Rakstīni ziniskūs lasejumūs i periodikā. Sastatejuse eisys latgalīšu - latvīšu vuordineicys, kurys izdrukavuotys nazcik gruomotu piecrunuos. + +{{DEFAULTSORT:Stafecka Anna}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + och30tp29abheku2lh5n8f5n53cd0w6 + + + + Antons Rupainis + 0 + 34 + + 31302 + 11373 + 2016-02-09T08:58:11Z + + Edgars2007 + 114 + + + added [[Category:Zeimeigi Latgolys ļauds]] using [[Help:Gadget-HotCat|HotCat]] + wikitext + text/x-wiki + '''Ontons Rupaiņs (Antons Rupainis)''' — „dzims 1906. godā 13. septembrī [[Bieržgalis pogosts|Bieržgalis pogostā]], [[Pūrišķu cīms|Pūrišķu cīmā]]. Mirs 1976. goda 20. aprelī [[Lakrosa|Lakrosā]], [[Viskonsina|Viskonsinā]], [[ASV]], 1976. godā urna ar palnim puorapbedeita [[Miķeļa kopi|Miķeļa kopūs]] [[Reiga|Reigā]], 1991. godā puorabedeits Bieržgalis kopūs.”<ref>Latviešu rakstniecība bibliogrāfijās, LU Literatūras, folkloras un mākslas institūts, Zinātne: 2003. 507. lpp.</ref> + +== O. Rupaiņs par sevi == +(..) Muni pirmī sūļi ir vingrinuoti Latgalys sādžys vacā muojenā iz dūbumainuo klūna, i nīvojamais vuords tryukums maņ sekuoja kai susātivs tik ilgi kamār as tū uzveiču sovym spākim. Tuopiec maņ beja vairuok kū vēlētīs nakai boguotū ļaužu bārnim, bet kod sirds suok trenētīs īkuorēs, tod tuos nikod nav pīpildamis. (..) + +Osorom valdzāts muns ceļš guoja iz pamatskūlu, syurā naatlaideibā pabeigts skūluotuoju instituts, ar griuteibom izlamts ceļš leidz augstskūlai i tod – vajadzēje nest upuri jaunuokū bruolu i muosu lobā, lai munys trauksmys piec tī napaliktu pusceļā. + +Šķieršļym aizsprūstuotais ceļš jau agrā bierneibā maņ izveiduoja dīzgon spieceigu atzinu: kļiut dereigam. Nadūmuot tikai par izgleiteibys gaitom, bet īgiutuos zinuošonys izmontuot praktiskā dzeivē. (..) + +Vel šūboltdīn jyutūs, it kai byutu zvārinuots skūluotuojs. Skūluotuoja orūds maņ ir vysmīļuokuo profeseja. Tanī as atgiustu navin sevi, bet ari sovu bierneibu i jauneibu. (..) + +Teatris maņ īpatikās jau nu pusaudža godim. Kod suoku uzastuotīs pamatskūlys sareikuojumūs, bet vysā nūpītneibā suoku tam pīsavērstīs skūluotuoju institutā, kur beja īvasta obligatuo teatra muokslys studeja kai muoceibu prīkšmets. Pirmūs divus godus muocejūs pi vacuos patosa skūlys aktīra V. Segleņa, kurš tanī laikā beja ari [[Latgalys Teatris|Latgalys Teatra]] režisors Rēzeknē. (..) Bez šytom studejom as tiku ari muocejīs teatra kursūs Reigā gon pi Zaltmota, kurš koriģēje munu dikceju; gon pi E. Feldmaņa, kurš iz Latgalys Teatra direktora liugumu gatavuoja mani režisora amatam Latgalys Teatrī. Šitajā pošā nūliukā as apmeklieju ari slavenū muokslinīku Čehova i Gromova reikuotū teatra seminaru Reigā Latvejys konservatorejā, kur muocejūs cīneit Staņislavska skūlu Moskovā, ar dziļu nūpītneibu analizēt dramatiskūs dorbus i ījustīs lūmuos. (..) + +Skūla, Latgalys Teatris, draudzys kūrs, Latgalys skūluotuoju centrālbīdreiba, kūrs i teatris Bārzgalē i cytūs pogostūs, dzīduošonys skūluotuojs [[Varakļuonu ģimnazeja|Varakļuonu ģimnazejā]] laikrokstu „Latgales Vārds”, „Zīdūnis” i „Sauleite” redakcejys – tī beja muna dorba golvonī pīturys punkti. I kod kluot nuoce [[Latgaļu Katūļu Jaunatnys bīdreibaLatgaļu|Katūļu Jaunatnys bīdreiba]], kas ar puori simtu nūdaļom i 10 000 bīdrym beja plašuokuo organizāceja Latgalē, as izsieju spākus iz vysom pusem. (..) As uzņiemūs vadeit Reigys Katūļu bīdreibys kūri. (..) + +Lai īgiutu liluoku popularitati tautā, as mudinuoju Katūļu Jaunatnys organizāceju reikuot [[Dzīšmu svātki Agliunē|Dzīšmu svātkus Agliunē]]. (..) 15. augustā [[Agliune|Agliunē]] beja svātki. Iz estrādys stuovēje 2000 dzīduotuoju – lauku jaunatne ar suleigom balsim. (..)<ref>Rupainis, A. Trimdas rakstnieki//Manu dienu līču – loči. Kemptene, 1947. 3. sēj.</ref> + +== Literaruo darbeiba == +Nu 1927. goda O. Rupaiņs regulari publicēja dzejūļus, tāluojumus, skicis latgalīšu periodiskajūs izdavumūs. Pyrmuo publikaceja – roksts „Kai apspīž Latgolas skolas” laikrokstā „Latgolas Vōrds” (1922, Nr. 40). Pyrmī īspīstī dzejūli – „Mōkūneits” i „Piec godim” – žurnalā [[„Zīdūnis”|"Zīdūnis"]] (1927, Nr. 1). O. Rupaiņs raksteja cīši daudz gon latgalīšu, gon puornūvoda literārajā volūdā. Sadzeivis luga „Laikmetu maiņā” („Zīdūnis”, 1930, 2-8) i komedejis „Dzymtuo zeme” (1936) i „Jaunuo audze” (1939) ir muokslinīciski samārā naizstruodotys, Latgolā cīš popularys i vairuokkuort īstudātys. Vairuokys 30. godūs Reigā i Latgolā izruodeituos lugys („Teātris bez teātra”, „Lels cylvāks un sovs pat latgalīts” u.c.) nav sasaglobuojušuos. 1937. žurnalā „Atpūta” publicāts nūzeimeigs O. Rupaiņa dorbs, plašs viesturiskais romans par viduslaikim Latgolā, par dominikaņu klūstera dybynuošonu Aglyunā „Baltie tēvi” (1 - 2, 1963 – 64). Ūtruo pasauļa kara godūs pazuduši vairuoki humoristiski dorbi. + +1944. godā O. Rupaiņs ar saimi emigrejs iz Vuoceju. Biegļu gaituos vyspyrms nūnuocs Bavārejā, Altetingā. Nūmetnē Neuetingā O. Rupaiņs vadejs pamatskūlis i nūmetnis kulturys dzeivi – bejs dirigents i varganists. 50. godūs Rupaiņa saime puorsaceļ iz ASV. Te autors dabuojs pajumti i dorbu kaidā katoļu muosu klūsterī Sentpolā, Minesotā. Jau pyrmajā emigracejis godā O. Rupaiņs aktivi i ar panuokumim raksteja i publicēja dorbus periodikā i atsevišķūs izdavumūs. + +Leluokajā daļā O. Rupaiņa dorbu ir viesturiska tematika. Drukys aizlīguma laiks Latgolā attāluots juo lugā par [[Pīters Miglinīks|Pīteri Miglinīku]] „Kod pyrmī gaili dzīdōja” (1946). Vāluok itys materials izmontuots viesturiskuo romana trilogejā „Māra mostas” („Poļu dumpis”, 1951, „Gaiļi pusnaktī”, 1952, „Pēteris Miglenieks”, 1956) i gruomotā „Pīters Miglinīks” (Minhenē 1953, Latvejā 2000). Par Latgolys atmūdys darbinīkim [[Pīterburga|Pīterburgā]] 20. gs. suokumā viestej romans „Tauta grib dzeivōt” (1963, Latvejā 1991). Napabeigts palyka viesturiskais romans par Latgolu 14. gs. – „Rēzeknes rekviēms”. + +20. gs. 30. godu Latgolys ļauds, jūs dzeive i problemys tāluotys garajā stuostā „Jaunō skūlōtōja” (1951, Latvejā 1991) i romanā „Zemes sōļs” (1953), kas ir ironisks dorbs par Ulmaņlaika Latvejis īkšpolitikys vaicuojumim, rakstnīka personeibys veiduošanūs, muokslinīku tragiskumu i tragikomiku sabīdreibā. Lelu īviereibu zynuotnīku vydā izraiseja O. Rupaiņa pietejums par volūdu atteisteibu „Arheolingvistika” (1967). Vairuoki O. Rupaiņa dzejūli izmontuoti dzīšmu tekstim: „Skaista sirds”, „Myusu ciļts” (E. Melngailis), „Bukmuiža” (I. Reinholde), „Dzīsme Latgolai” (V. Ozoliņš). + +2000. godā Latvejā iznuocs O. Rupaiņa stuostu kruojums „Pasaules vējos”. + +[[Bieržgalis nūvodpietnīceibys muzejs|Bieržgalis nūvodpietnīceibys muzejā]] apskotama pastuoveigo ekspoziceja, veļteita ivāruojamuo Latgolys rakstnīka Ontona Rupaiņa dzeivei i darbeibai."<ref>Velo maršruts Nr. 3.1. „Meirānu ezera loks”. Pieejams: http://balticlakes.com/lv/marsruti/Latgale_Latvija/Nr_3_1</ref> +Pseidonimi: ''Skolotājs, Stabiņu Kepīts, O. Vīntūļs.''<ref>Latviešu rakstniecība bibliogrāfijās, 507. lpp.</ref> +Gruomota „Bērzgales novads” veļteita O. Rupaiņa symtgadei. + +== Bibliografeja == +=== Latvejys periods === +* 12 lugys, tymā skaitā:”Laikmeta maiņa”(1930) +* „Dzimtā zeme” (1936) +* „Jaunā audze” (1939) + +=== Trimdys periodā izdūtī dorbi === +* ”Baltie tēvi” - romans divuos daļuos par [[Aglyuna|Aglyunys]] dybynuošonu. +* „Māra mostas” - romans treis daļuos par [[Pīters Miglinīks|Pīteri Miglinīku]] un juo laiku. +* „Tauta gryb dzeivot” - romans par latgaļu atmūdys laikim [[Pīterburga|Pīterpilī]]. +* „Zemes soļs” - romans par školuotuojim i pogosta darbinīkim Latgolā. +* „Jauno skūluotuoja” - stuosts. +* „Kod pyrmī gaiļi dzīdōja” – drāma par [[Pīters Miglinīks|Pīteri Miglinīku]]. +* „Pīters Miglinīks” - monografeja. +* „Dzimtenes skoti” - mini gruomateņa ar dažim O. Rupaiņa dzejūlim. +* Pasaulis literaturys katalogā ir īkļautys E. Dūbeļa izdūtuos O. Rupaiņa gruomotys: viesturisku romanu trilogeja ”Māra mostas” i „Arheolingvistika”. +* Pādejais O. Rupaiņa publicātais dorbs izdūts ar literaturzynuotneicys Paulīnis Zalānis guodeibu 2000. godā, "Pasaules vējos".<ref>Bērzgales novads, Latgales Kultūras Centra izdevniecība, Rēzekne, 2006. 134. lpp.</ref> + +== Roksti par O. Rupaini i juo dorbim == +* Šuplinska, I. Komisma elementi Ontona Rupaiņa prozā. Via Latgalica: humanitāro zinātņu žurnāls. Rēzekne: Rēzeknes Augstskola, 2009, 143.–153. lpp. +* Bērzgales novads. Latgales Kultūras Centra izdevniecība. Rēzekne, 2006. + +== Atsaucis == +{{Reflist}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + sl7em1afq0qfonohv9cjcwrniqqkj0c + + + + Apleice + 0 + 35 + + 31698 + 31433 + 2016-11-04T22:50:05Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + '''Apleice''' (anglīšu: ''environment'', latvīšu: ''vide'', krīvu: ''среда'') — apleik asūšūs apstuokļu, nūsacejumu i [[Ītaka|ītaku]] kūpums, kurymā subjekts voi objekts byun, dzeivoj, dora, raistuos (pīv., ''veseleiga dzeivis apleice'', ''ekologiska apleice'', ''mīsta apleice'', ''literatu apleice'', ''sveša apleice'', ''jauna apleice'', ''iņterneta apleice'', ''automatizāta apleice'', ''”MS Windows” apleice''). + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Ekologeja]] + psiigvkkm8ovvjj8gshxz06u385e6tj + + + + Apleicsardzeiba + 0 + 36 + + 31434 + 31419 + 2016-05-09T12:05:34Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Apleicsardzeiba''' (anglīšu: ''environmental protection; environmentalism'', krīvu: ''защита окружающей среды, экология''; latvīšu: ''vides aizsardzība'') — ciļviecis dobyskuos apleicis sorguošona, ryupaste ap dobys resursu izglobuošonu, atjaunynuošonu i palobuošonu. + +Apleicsardzeiba sasadora nu: +* konkretu leidziekļu i projektu apleicei sorguot (pīv., teirejūt iudiņus, atjaunynojūt dzeivinīku populacejis, puordorūt palīkus i leidz.); +* atsateikūšu tīseibu aktu (pīv., lykumi, kuri aprūbežoj zemis i cytu dobys resursus izlītuošonu, napaļaun [[Pīmūrdīņs|pīmūrdīņa]] i leidz.); +* politisku i ļaudysku kusteibu, kurys vadynoj pījimt apleici sorgojūšus tīseibu aktus i īdzeivynuot apleici sorgojūšus projektus (pīv., "zaļūs" kusteiba, "zaļuos" partejis i leidz). + +== Verīs taipoš == +* [[Apleiczineiba]] + +[[Kategoreja:Apleiczineiba]] + 3ob1zwx1bfq4ac6wr21wyzmtwfs3oxt + + + + Apleiczineiba + 0 + 37 + + 28119 + 27604 + 2013-03-07T16:35:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 126 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7150]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Apleiczineiba''' (baļtīšu: ''vides zinātne''; anglīšu: ''Environmental Science''; krīvu: ''экология'') — zineibys atzare, kura tiemej [[Mejveice|mejveici]] iz vyds fizikaliskūs, kimiskūs i biologiskūs [[Apleice|apleicis]] komponentu. + +Nazcik pošu svareigūs apleiczineibys tiemejamūs problemu kupsu: +* dobys [[pīmūrdīņs]], tymā vydā iudiņu i augzemis [[pīmūrdīņs]]; +* [[palīku rāds]]; +* apleicis maituošona deļ cylvāka darbeibys; +* vītejuos i globaluos ekonomiskuos raisteibys ītaka iz biovysaideibu; +* globaliskuos klimata puormejis; +* dobys resursu saprateiga izlītuošona; +* [[tvereiguo raisteiba]]. + +[[Kategoreja:Apleiczineiba| ]] + 5uff7exg4rzwv9x3mdpg8ugtvcu3wev + + + + Aplikaceja + 0 + 38 + + 30180 + 29984 + 2014-01-18T00:28:58Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q294834]] + wikitext + text/x-wiki + '''Aplikaceja''' — atškireibā nu programys, kas varātu byut sevkurs naatkareigs gobols raksteits nūteiktā volūdā, aplikaceja ir leluoka programu kūpa, kuru lītoj nūliktam mierkim. + fjrsgrufel34pmd76rrhfwix7cg07nh + + + + Apolinarejs Dieglis + 0 + 39 + + 11378 + 10350 + 2011-03-24T20:43:57Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Apolinarejs Dieglis''' (1906 — 1984) — izslivs Ludzys apleicīnis pūdars. + +Dzims Mērdzinis (niu Blontu) pogosta Lelajūs Blontūs randaunīka saimē. Omotu vuicejīs pi Jezupa Šmulāna. Darynuojs muoliņus žbanus i cytus saimesteibys traukus, piec Ūtruo pasauļa kara dasagrīzs i vazu, svečnīku, palādiņu pūdu taiseišonai. + +Nu 1948 g. pīsadalejs paruodēs, 1960 g. dabuojs Tautas skaistomota meistara pasaukys. Muokslys zininīks Juoņs Pujats paliedziejs A. Diegļam izraisteit sovpateigū muokslyskū stili, paturūt arhaiski parostuos, gryutonuos formas ar bīzmineigu tacys puškuojumu. + +{{DEFAULTSORT:Dieglis Apolinarejs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + tp83azes1s9t0dchi70jo8r8nu6a5gr + + + + Armeneja + 0 + 40 + + 32009 + 31543 + 2017-06-15T05:22:12Z + + DARIO SEVERI + 3389 + + Added information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Հայաստանի Հանրապետություն'''<br />'''Armeneja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Armenia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Armenia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Armenia (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || Yeravan +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 29 743 km² +|- +|| Dzeivuotuoju skaits || 2 998 600 (2016) +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Armeneja''' (arm.: Հայաստանի Հանրապետություն) — vaļsteiba [[Europa|Europā]]. + +== Viesture == +[[File:Parliament Yerevan building.jpg|thumb|[[Yerevan]] - Armeneja]] + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Commonscat|Armenia|Armeneja}} + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + lb47j7wrd731djo5p49g005lwfg8bkf + + + + Arvīds Aizsils + 0 + 41 + + 29768 + 18635 + 2013-04-14T23:07:08Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Arvīds Aizsils''' — latvīšu kulturys dareituojs, latgaļu folklora aizraksteituojs i tāmātuojs, latgaļu leksikys laseituojs. + +Pīrakstejs latgaļu folkloristikā vierteigu monografeju ''Senejuos kuozys [[Daugpiļs apleiciņs|Daugpiļs apleicinī]]'' ("Senās kāzas Daugavpils apriņķī") (1941). + +{{DEFAULTSORT:Aizsils, Arvīds}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + nniw3epuhx51lfouuclzl12c9p93nmt + + + + Atmeja + 0 + 42 + + 13315 + 13314 + 2011-04-13T11:13:01Z + + Stiernīts~ltgwiki + 315 + + + wikitext + text/x-wiki + '''Atmeja''' (baļtīšu: ''veids''; anglīšu ''kind, sort, type''; krīvu ''вид, разновидность'') — kaida naviņ subjekta, objekta ci darbeibys vīna nu varamūs formu. + +Pīvadumi: ''darbeibys atmeja, transporta atmeja, runys atmeja, daslāguma atmeja, guoduošonys atmeja, atsacejuma syuteišonys atmeja, augļu atmejis, pasaruodeit vysaiduios atmejuos, izalaseit cytu darbeibys atmeju.'' + 4pi4yyjix2tlylf4hvnlw1iz8mt6gxl + + + + Auguoji + 0 + 43 + + 31590 + 31588 + 2016-10-03T11:43:19Z + + Papuass + 219 + + wikitext + text/x-wiki + [[Fails:Plants.jpg|thumb|250px|Augoji]] +'''Auguoji''' ({{Vol-la|Plantae}}, {{Vol-en|plants}}, {{Vol-ru|растения}}, {{Vol-lv|augi}}) — vysuleluokuo [[Zeme|Zemis]] dzeivūs [[Organizms|organizmu]] grupa, kuri [[Autotrofi|autotrofai]] barojās, izlītuodami [[Sauļe|Saulis]] energeju ([[fotosiņteze]]), kuru šyunys tur bīzeigu apvolku (parostai nu škīzninis) i kuri natur vareibys dreiži puorīt iz cytu vītu. + +Cieškuok pazeistamī auguoji: [[Kūks|kūki]], [[pučis]], [[Kryums|kryumi]], [[zuole]], [[staipekni]], [[Papardys|papards]], [[Syuni|syunys]] i tt. + +Pasaulī vys vēļ navā zynoms precizs auguoju [[Škira|škiru]] skaits, izškireigi tāmātuoji runoj ap daudzumu nu 287 000 da 422 000. + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commons|Plantae|Auguoji}} + +[[Kategoreja:Auguoji]] + ojj7jqmv6i09orybzuzfl9svdyx45o7 + + + + Augusts Egluojs + 0 + 44 + + 11382 + 10355 + 2011-03-24T20:44:37Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Augusts Egluojs''' (pa eistyn. vuordam ''Ciprijans Pokrotnīks'', 1904 — 1994) — latgaļu ailinīks, rakstejs latgaļu i latvīšu volūduos. + +Dzims [[Bieržpiļs pogosts|Bieržpiļs pogosta]] Leidumnīku solā. + +Latgaliskai — poezejis lasejums ''Dzīsmis rudiņa saulei'' (1936). + +{{DEFAULTSORT:Egluojs, Augusts}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 88pemx93mttmun414ofzsm287h7f43w + + + + Augškaļne + 0 + 45 + + 31361 + 29796 + 2016-03-27T13:39:13Z + + 91.9.102.247 + + [[wmf:Resolution:Licensing policy]] + wikitext + text/x-wiki + '''Augškaļne''' — sola [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Ombumuižys pogosts|Ombumuižys pogostā]], iz vyds [[Kondaunīki|Kondaunīku]] i [[Putāni|Putānu]] solu. + +Augškaļnē irā [[Augškaļnis katuoļu bazneica|katuoļu bazneica]], sūpluok juos – [[Augškaļnis kopi|kopi]]. + +{{eiss rakstīņs}} + +[[Kategoreja:Ombumuižys pogosts]] +[[Kategoreja:Daugpiļs nūvoda solys]] +[[Kategoreja:Latvejis solys]] + s2waul6fkuoeab8xsd0kknthrbfjm77 + + + + Augškaļnis katuoļu bazneica + 0 + 46 + + 31360 + 29820 + 2016-03-26T16:02:39Z + + 91.9.116.242 + + [[wmf:Resolution:Licensing policy]] + wikitext + text/x-wiki + '''Augškaļnis svātuos Saimis katuoļu bazneica''' — katuoļu svietneica [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Ombumuižys pogosts|Ombumuižys pogosta]] [[Augškaļne|Augškaļnis]] solā, vīna nu diveju katuoļu bazneicu Ombumuižys pogostā. + +Napatuoļ nu bazneicys irā senejuos plebanejis pamati i Augškaļnis kopi. + +[[Kategoreja:Latgolys katuoļu bazneicys]] + dfcg3fqitzd3golap7jekq2ngywnboe + + + + Augškaļnis kopi + 0 + 47 + + 31362 + 30524 + 2016-03-27T13:40:00Z + + 91.9.102.247 + + [[wmf:Resolution:Licensing policy]] + wikitext + text/x-wiki + '''Augškaļnis kopi''' — katuoļu kopi [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Ombumuižys pogosts|Ombumuižys pogosta]] [[Augškaļne|Augškaļnis solā]], sūpluok [[Augškaļnis svātuos Saimis katuoļu bazneica|Augškaļnis bazneicys]]. + dni60s628d8f6suhurbqynz97t4jnqj + + + + Augškaļnis sv. Saimis katuoļu bazneica + 0 + 48 + + + 13918 + 466 + 2011-05-02T21:09:17Z + + Xqbot + 96 + + + Bot: Fixing double redirect to [[Augškaļnis katuoļu bazneica]] + wikitext + text/x-wiki + #REDIRECT [[Augškaļnis katuoļu bazneica]] + q4kb6yumxqfzzj6xjevmhi8hl47r6xt + + + + Augškaļnis svātuos Saimis katuoļu bazneica + 0 + 49 + + + 13898 + 11385 + 2011-05-01T22:53:39Z + + Roalds + 50 + + eisuok i skaidruok mekliešonā + wikitext + text/x-wiki + #REDIRECT[[Augškaļnis katuoļu bazneica]] + flpwib3izf6cg3wcnb2zgspygngjnst + + + + Austreja + 0 + 50 + + 32045 + 31546 + 2017-06-19T12:00:18Z + + DARIO SEVERI + 3389 + + Added information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Österreich'''<br />'''Austreja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Austria.svg|150px|border]] +| align="center" width="140px" | [[Fails:Austria Bundesadler.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Austria.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 83 871 km² +|- +|| Dzeivuotuoju skaits || 8 725 931 (2016) +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1),<br /> EEST (UTC +2)[Laika zona]]<br />-vosorā || +|} +'''Austreja''' ({{Vol-de|Österreich}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == +[[File:WienParlament.jpg|thumb|Vienna - Austreja]] + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + e6apvaiajhg7e4det848tluuucugho1 + + + + Aviaceja + 0 + 51 + + 28123 + 27026 + 2013-03-07T16:37:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 53 interwiki links, now provided by [[d:|Wikidata]] on [[d:q765633]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Aviaceja''' + +== Skrīnmašiņu viesture == +* [[VEF I-11]] +* [[VEF I-12]] +* [[VEF I-14]] +* [[VEF I-15]] +* [[VEF I-16]] +* [[VEF I-17]] +* [[VEF I-18]] +* [[VEF I-19]] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Aviaceja]] + 1y05gs8dgfs3ioakpp5jexot34ns0ar + + + + Azerbaidžans + 0 + 52 + + 32039 + 31548 + 2017-06-19T11:40:39Z + + DARIO SEVERI + 3389 + + + Prezident + Ministru prezident from Wikipedia (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Azərbaycan Respublikası'''<br />'''Azerbaidžans'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Azerbaijan.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Azerbaijan.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe location AZE.png|300px]] +|- +|| Golvysmīsts || [[Baku]] +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Ilham Aliyev +|- +| Ministru prezidents || Artur Rasizade +|- +|| Pluots || 86 600 km² +|- +|| Dzeivuotuoju skaits || 9 754 830 (2016) +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Azerbaidžans''' (azer.: ''Azərbaycan Respublikası'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == +[[File:Budug Azerbaijan16.jpg|thumb|200px |Azerbaidžans.]] + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + flh8vfh5w575r107ww3pmo72r3xyarf + + + + Barūkle + 0 + 53 + + 29051 + 28125 + 2013-03-10T08:06:51Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2836967]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Barūkle''' (anglīšu: ''feed''; krīvu: ''корм''; latvīšu: ''lopbarība'') — puortyka dzeivinīkim, parostai — sātys dzeivinīkim. + i8fvui32u8u099x939k2qags9rhxoxd + + + + Baļtejis jiura + 0 + 54 + + 28126 + 27957 + 2013-03-07T16:37:53Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 132 interwiki links, now provided by [[d:|Wikidata]] on [[d:q545]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Baltic Sea location map.svg|thumb|260px|Baļtejis jiurys zemislopa]] +'''Baļtejis jiura''' - Atlaņtejis okeana baseina jiura Europys pūstumreitūs. Nu vīnys pusis atškir Skaņdinavejis pussola, nu cytys - Centraluos i Reitu Europys daļa i [[Daneja|Danejis]] jiursolys. Leluo Belta (16 km plots), Mozuo Belta (600 m) i Eresuna (3,5 km) jiuru šauri saškir ar Kategata jiuru šauri, a caur Kategata i Skageraka jiuru šauri - ar Pūstumu jiuru. Ar kanalim Baļtejis jiura irā saškierta ar Boltū jiuru (Boltuos i Baļtejis jiuru kanals) i ar Pūstumu jiuru (Kīļa kanals). + +== Nūruodis i olūti == + +{{Nūruodis}} + +{{DEFAULTSORT:Baļtejis jiura}} + +[[Kategoreja:Geografeja]] + tixd9rvhdaoe9mwp10obto3v1lqgbat + + + + Baļtejis vaļsteibys + 0 + 55 + + 29141 + 28127 + 2013-03-11T10:44:46Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q39731]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border="1" cellpadding="2" cellspacing="0" align="right" +|- +| colspan="2" align="center" | [[Fails:Baltic states.svg|150px|Baļtejis vaļsteibys Europā]] +|- +||Leluokais mīsts||[[Reiga]] +|- +||Vaļsteibu volūdys||[[Lītaunīku volūda|lītaunīku]], [[Latvīšu volūda|latvīšu]], [[Igaunīšu volūda|igaunīšu]] +|- +||Pluots||175 015 km² +|- +||Dzeivuotuoju skaits <small>(2010)</small>||6 827 351 +|} + +'''Baļtejis vaļsteibya''' irā [[Latveja]], [[Lītova]] i [[Igauneja]]. Nazkod 20 godusymta suokuos pi vaļsteibom pīskaiteja taipoš i [[Suomeja|Suomeju]]. + +== Leluoki mīsti == +'''Leluokī mīsti pa dzeivuotuoju skaitam ([[2009]])''' + +# [[Reiga]], [[Latveja]] — 715 978 +# [[Viļne]], [[Lītova]] — 544 206 <small><sup>1</sup></small> +# [[Talins]], [[Igauneja]] — 404 005 +# [[Kaune]], [[Lītova]] — 353 800 <small><sup>1</sup></small> +# [[Klaipieda]], [[Lītova]] — 183 828 <small><sup>1</sup></small> +# [[Šauli]], [[Lītova]] — 126 548 <small><sup>1</sup></small> +# [[Paneviežs]], [[Lītova]] — 113 212 <small><sup>2</sup></small> +# [[Daugpiļs]], [[Latveja]] — 104 870 +# [[Tarbata]], [[Igauneja]] — 98 480 +# [[Līpuoja]], [[Latveja]] — 85 149 + +<small><sup>1</sup> [[2008]]. goda statistika. <sup>2</sup> [[2007]]. goda statistika.</small> + +== Tēmēt taipoš == +* [[Baļtejis ceļš]] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Europa]] +[[Kategoreja:Baļtejis vaļsteibys| ]] + 9did16e53vfcf5vhk5efmw5hx27kjcf + + + + Baļtinovys nūvods + 0 + 56 + + 30091 + 29023 + 2013-09-21T01:43:31Z + + Midas02 + 2135 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Baļtinovys nūvods +| zemislopa = Baltinavas_novads_karte.png‎ +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Baļtinovys nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Baļtinova +| pluots = 185 +| dzeivuotuoju_skaits = 1 387 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 7,49 +| īstateits = 2009 +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.baltinava.lv +}} + +'''Baļtinovys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]]. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Baļtinovys nūvods| ]] + n3jednbelv5o74zgl64naffm6b04597 + + + + Baļtinovys pogosts + 0 + 57 + + + 542 + 541 + 2011-03-19T13:01:28Z + + SPQRobin + 2 + + + 3 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT[[Baļtinovys nūvods]] + 2xjgysnuo646dul6lh3zrm6ycngbwqm + + + + Benedikts Zazerskis + 0 + 58 + + 11394 + 10367 + 2011-03-24T20:46:37Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Benedikts Zazerskis''' (1867–1917) — sakstagalīts, [[Krima|Krimys]] gubernators nu 1912 da 1917 godam, ir dabuojis generala pakuopi. Uzturiejs sakarus ar dzymtū pusi i rakstejs Vitebskys, Krimys i latgaļu [[Gazeta|gazetom]]. Bāgdams nu boļševiku, 1917 goda zīmys mienesa 19 dīnā Benedikts Zazerskis kūpā ar saimi – sīvu (nu Dagdys pusis) un trejim bārnim – nūsleics [[Malnā jiura|Malnajā jiurā]]. + +== Olūti == +* Zeile P. Kaida latgalīšu generala pīmiņai. Tāvu zemes kalendars 1998. Rēzekne: LKC izdevnīceiba. 1997. 81. + +{{DEFAULTSORT:Zazerskis, Benedikts}} + f32xj6oz5csgqcchmdx58vje2cit36e + + + + Beringa šauris + 0 + 59 + + 29140 + 28907 + 2013-03-11T10:44:41Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q11769]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Bering Strait.jpeg|thumb|right|Beringa šauris nu kosmosa]] +'''Beringa šauris''' — jiuru [[šauris]] iz vyds [[Sibirs|Sibira]] (Azejis reitu dalis) i [[Aļaska|Aļaskys]] (Amerikys vokoru dalis). Šauru [[garums]]- ap 85 [[Kilometris|km]], [[dziļums]] - tik 30–50 [[Metris|m]]. Nu geografiskuo redzīņa šauris taipoš saškir [[Beringa jiurys]] ar [[Čukču jiurys|Čukču jiurom]]. + +Beringa šauru vydā irā [[Diodemu jiursolys]]. + +Beringa šauris i Beringa jiurys pasauktys Danejā dzymušuo krīvu tāmātuoja [[Vituss Berings|Vitusa Beringa]] (''Vitus Bering''), atceļuojuša da šauru 1728 godā, vuordā. + +== Beringa sauszemis puorīma == +Irā izcalta [[hipoteze]], ka [[Ladslaiki|ladslaikūs]] Beringa šauru vītā egzistiejuse sauszemis puorīma, pa kuru pyrma 12 tyukstūšu godu ļauds varēja atīt nu [[Azeja|Azejis]] da [[Amerika]]i. + +Myuslaikūs atsarads pasūlejums stateit tyltu voi zamiudiņa tuneli, kurs saškiertu Ameriku i Azeju Beringa šauru vītā, tok cikom kas dorbi navā dareiti. + +[[Kategoreja:Geografeja]] + davjj5ks9ugrx563fnqi6yj4k0es09t + + + + Beļgeja + 0 + 60 + + 32040 + 31895 + 2017-06-19T11:46:50Z + + DARIO SEVERI + 3389 + + Updade inf. from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''België'''<br />'''Belgique'''<br />'''Belgien'''<br />'''Beļgeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Belgium (civil).svg|150px|border]] +| align="center" width="140px" | [[Fails:State Coat of Arms of Belgium.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Belgium.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļstiskuo volūda || +|- +| Monarhs || Filip +|- +| Ministru prezidents || Charles Michel +|- +|| Pluots || 30 528 km² +|- +|| Dzeivuotuoju skaits || 11 250 585 <small>(2016)</small> +|- +|| [[Laika zona]]<br />-vosor || +|} +'''Beļgeja''' ({{vol-nl|België}}; {{vol-fr|Belgique}}; {{vol-de|Belgien}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 8a4bvzs73tg8fgkipvf0578p7v4ahed + + + + Biznesa analitika + 0 + 61 + + 29056 + 28131 + 2013-03-10T15:02:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 18 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6662173]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Biznesa analitika''' (anglīšu: ''business intelligence, BI''; krīvu: ''бизнес-аналитика, бизнес-анализ''; latvīšu: ''biznesa analītika, biznesa datu analīze'') — [[Process|procesu]], [[Tehnologeja|tehnologeju]], [[Metods|metodu]] i [[Leidzieklis|leidziekļu]] kūpums, kurs ļaun [[Pasajāmums|pasajāmumam]] pīlaseit i izanalizēt [[Informaceja|informaceju]] ap sovu [[Saimestiskuo darbeiba|saimestiskū darbeibu]], kab lobuok saprostu vysaidu [[Faktors|faktoru]] [[Ītaka|ītaku]] iz [[Bizness|biznesa]] [[Rezultats|rezultatim]] i pījimtu pareizus [[Sasprīdums|sasprīdumus]] ap biznesa tuoluoku [[Raisteiba|raisteišonu]]. + +Biznesa analitika irā vīna nu [[Biznesa rāds|biznesa rāda]] [[Zamatzare|zamatzaru]]. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Bizness]] + ssctfxwsf4f493m7nyezm4yzhkqlucl + + + + Boltkrīveja + 0 + 62 + + 32041 + 31901 + 2017-06-19T11:50:31Z + + DARIO SEVERI + 3389 + + Added information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Рэспубліка Беларусь'''<br />'''Boltkrīveja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Belarus.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Belarus.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe location BLR.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Alexander Lukashenko +|- +| Ministru prezidents || +|- +|| Pluots || 207 560 km² +|- +|| Dzeivuotuoju skaits || 9 498 700 <small>(2016)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Boltkrīveja''' (boltkr.: ''Рэспубліка Беларусь'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 02psvu14mv09qbpfy14w8w4u8owdz9a + + + + Bolvi + 0 + 63 + + 31467 + 30675 + 2016-07-02T06:48:50Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Bolvi +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| gerba_atvaigs = Coat of Arms of Balvi.svg +| gerba_pasauka = Bolvu gerbs +| karūga_atvaigs = Bandera Balvi.png +| karūga_pasauka = Bolvu karūgs +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 57 | latm = 07 | lats = 57 | latNS = N +| longd = 27 | longm = 15 | longs = 57 | longEW = E +| nūvods = Bolvu nūvods +| pluots = 5,08 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 7 109 +| bīzeiba = 1399,4 +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1928 +| posta_iņdekss = LV-4501 +| teiklavīta = www.balvi.lv +}} + +'''Bolvi''' — mīsts pūstumu Latgolā, Bolvu nūvoda centrys. Mīsts irā Bolvu i Pārkuņu azara malē, obejus azarus saškir Bolupe, [[Regionalī Latvejis autoceli|autoceļu]] [[P35]] i [[P47]] krystā. Atostums da [[Rēzekne]]i - 80 km, da [[Reiga]]i - 219 km. +Mīsta centrā irā pīminieklis Latgolys partizanu pulka karaveirim, tautys pasaukā "Stanislavs". + +{{Nadabeigts rakstīņs}} + +{{Bolvu nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Bolvi| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + 7uiwuanjuopdsxh4fexotjlbj6c7xbe + + + + Bolvu nūvods + 0 + 64 + + 28134 + 19932 + 2013-03-07T16:42:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2018672]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Bolvu nūvods +| zemislopa = Balvu novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Balvu novads COA.png +| gerba_pasauka = Bolvu nūvoda gerbs +| karūga_atvaigs = Flag of Balvu novads.png +| karūga_pasauka = Bolvu nūvoda karūgs +| centrys = Bolvi +| pluots = 1 044,5 +| dzeivuotuoju_skaits = 15 834 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 15,16 +| īstateits = 2009 +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.balvi.lv +}} + +'''Bolvu nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], kas sasadora nu [[Bolvi|Bolvu]] mīsta i 10 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Bolvu nūvods| ]] + 8a7a50elcugnuo74cmzx7cy4i7sp0in + + + + Bondarovys krystakmiņs + 0 + 65 + + 11400 + 10373 + 2011-03-24T20:47:37Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Bondarovys krystakmiņs''' — akmiņs ar krystu [[Pušmycovys pogosts|Pušmycovys pogostā]], senejūs latgalīšu dīvalyugšonys vīta. + +Akmiņs irā iz Pušmycovys i [[Zviergzdiņa pogosts|Zviergzdiņa]] pogostu rūbežu, iz vyds Mjakinku solys i nazkodejuo Bondarovys foļvarka. Akmiņs atrūnams, nu Ludzys - Kuorsovys [[Saša|sašys]] grīžūt pa kairai 2,5 km aiz Zviergziņa pagrīzīņa i 0,5 km aiz Selekovys azara, tuoļuok braucūt pa melioratoru pastateitu leļceļu, kurs vad caur Balūžovu da Krystužānu, i piec 2,7 km kruši pasagrīžut pa kairai iz dīnavydu pusi. Leikumā pa lobai atsazaroj leļceļš da Mjakinku (0,5 km). + +Bondarovys krystakmiņs pasaukts pa Bondarovys [[Foļvarks|foļvarkam]], kurs nazkod bejs 700 m iz pūstomvokorim nu akmiņa. Akmiņa garums 3,9 m, plotums 1,5 m, stuovonajā, ploskonajā molā (augstums 1,2 m) īkolts krysts. Pa [[Pīstuoškys|pīstuoškim]], pi akmiņa bejuse senejūs latgalīšu dīvalyugšonys vīta. Ap 1900 godu itamā vītā audzs vacs mežs i napatuoļ bejs vēļ ūtrys akmiņs ar īkoltu krystu. + +[[Kategoreja:Latgolys lelakmini]] + cey2bba5306sdpjyakdhxy07y1l61rt + + + + Bonifacejs Briška + 0 + 66 + + 11401 + 10374 + 2011-03-24T20:47:47Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Bonifacejs Briška''' (sagvuords Striču Joseļs, 1902-1994) — latgaļu rakstinīks, ļaudyskais dareituojs, vīns nu latgaļu raksteibys raisteituoju. Dzims Varakļuonu pog. Kozsalīšu solā. Nu 1944 g. dzeivuojs ASV. + +Pīrakstejs stuošku lasejumu ''Humoreskys'' (1965), eseju gruomotys ''Latgali politiskajuos patmaļuos'' (1957), ''Latgola, muna tāvzeme'' (1984). + +== Nūruodis i olūti == +Janina Kūrseite, Anna Stafecka "Latgola: volūda, literatura, folklors" ("Latgale: valoda, literatūra, folklora") Rēzne, 2003. + +{{DEFAULTSORT:Briška Bonifacejs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 78ddh3rfzpxy9zhx5n67iefnkgyqest + + + + Borisoglebskys + 0 + 67 + + + 654 + 653 + 2011-03-19T13:01:34Z + + SPQRobin + 2 + + + 17 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Daugpiļs]] + ox51smjbxyn6dkjgva8ovxn98kgam18 + + + + Borkovys ūzuluojs + 0 + 68 + + 29792 + 27036 + 2013-04-15T01:43:17Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Borkovys ūzuluojs''' ([[latvīšu volūda|latv. vol.]] ''Barkavas ozolu audze'') — [[Nūlīgtiņs|dobys nūlīgtiņs]] Latgolys vokorūs, [[Modyunis nūvods|Modyunis nūvoda]] [[Borkovys pogosts|Borkovys pogosta]] i [[Varakļuonu nūvods|Varakļuonu nūvoda]] [[Mūrmastinis pogosts|Mūrmastinis pogostu]] teritorejā, Lisinis upmoluos. Pluots 62 ha. Īstateišonys gods – 1957. [[Nūlīgtiņs]] sataiseits, kab apsorguotu [[Europa|Europā]] reši sateikamu augtovu (biotopu) – maiseiti ūzulu, gūbu i ūšu meži senejuos upmalis pļovuos. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Mūrmastinis pogosts]] + 30bxmw9gpsjvjy8j9cgjbjxkvq817os + + + + Bosneja i Hercegovina + 0 + 69 + + 32042 + 32008 + 2017-06-19T11:52:25Z + + DARIO SEVERI + 3389 + + Added text + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Bosna i Hercegovina'''<br />'''Босна и Херцеговина'''<br />'''Bosneja i Hercegovina'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Bosnia and Herzegovina.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Bosnia and Herzegovina.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Bosnia-Herzegovina Europe.png|300px]] +|- +|| Golvysmīsts || Serajevo +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Mladen Ivanićb +|- +| Ministru prezidents || Denis Zvizdić +|- +|| Pluots || 51 197 km² +|- +|| Dzeivuotuoju skaits || 3 531 159 <small>(2013)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +[[Fails:Map Bih entities.png|thumb|250px|right]] +'''Bosneja i Hercegovina''' (bosn., hor..: ''Bosna i Hercegovina''; serb.: ''Босна и Херцеговина'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Bosneja i Hercegovina]] + 4wqnfj055s9hx7jbi6s4ocut868nf1k + + + + Bulgareja + 0 + 70 + + 32043 + 31908 + 2017-06-19T11:54:51Z + + DARIO SEVERI + 3389 + + Added information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Република България'''<br />'''Bulgareja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Bulgaria.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Bulgaria.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Bulgaria.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Rumen Radev +|- +| Ministru prezidents || +|- +|| Pluots || 110 993,6 km² +|- +|| Dzeivuotuoju skaits || 7 101 859 <small>(2016)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Bulgareja''' (bulg.: ''Република България'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + sdx0jswuuu53o9lvv06m6b3bx8f3mgh + + + + Bērnaklase + 0 + 71 + + 28137 + 22689 + 2013-03-07T16:43:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 29 interwiki links, now provided by [[d:|Wikidata]] on [[d:q212542]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Bērnaklase''' — navideiga zamklase. Pīvadumam, ka Javys programā deklarāts "class A extends B", tūlaik A irā klasis B bārnklase. + 1sogx8ntfargfpx36wn7u8t386pmkwo + + + + Būrzovys kaupraine + 0 + 72 + + 26084 + 11406 + 2012-12-02T13:43:07Z + + Stiernīts~ltgwiki + 315 + + + wikitext + text/x-wiki + '''Būrzovys kaupraine''' — reļjefa pasacālums, [[Latgolys augstaine|Latgolys augstainis]] [[Pūstumreiti|pūstumreitu]] daļa. + +Kauprainis vierss naleidzons, ar izsaceigom pīkaļnem. Lelumu kauprainis aizjam ploskonviersa lelkaupri, kuru viersa augstums 150 – 170 m augšuok [[Jiuru leidzīņs|jiuru leidzīņa]]. Cytur kauprainē pasaceļ morenu kaupri. + +Būrzovys kauprainis [[Pamatplīksnis|pamatplīkšni]] irā [[Viersejais devons|viersejuo devona]] [[Daugovys svita|Daugovys svitys]] [[Daugovys svita|Daugovys svitys]] [[Karbonatplīksnis|karbonatplīkšni]], [[dolomiti]], taipoš rati [[Dolomitmergeļs|dolomitmergeļu]] i muola vydkluoški. Iz dīnavydim nu [[Kurja|Kurjis upis]] jū puormej [[Solyspiļs svita|Solyspiļs svitys]] dolomiti, dolomitmergeli i [[Vapnakmiņs|vapnakmini]]. Kauprainē irā vītejuos zeimeibys [[Limnoglacialais muols|limnoglacialuo muola]], [[Žvyrs|žvyra]] i [[smiļkts]] [[Karjers|kajeri]], piec jū izlītuošonys kūna nikur vaira nadoroma teritorejis [[rekuļtivaceja]]. + +Kaupraine īīt Dīnavydreitu geobotaniskuo apleiciņa pūstumu daļā. + la6rpn2a2yeqkx4907eiknn5aglnzzy + + + + Canis + 0 + 73 + + 29009 + 28138 + 2013-03-09T02:53:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q149892]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Canis lupus 265b.jpg|thumb|250px|Palākais vylks]] +'''Canis''', Linnaeus, 1758 ({{Vol-ru|волки}}, {{Vol-lv|suņi}}) — ira plieseigo zvieru giņts iz [[Suņu saime|suņu saimis]] (''Canidae''). + +== Škiras == +Ira 11 škiru ''Canis'' giņtī<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1851/ BioLib] Profil taxonu — rod ''Canis'' Linnaeus, 1758</ref>: +* ''[[Canis adustus]]'' Sundevall, 1847 +* †''[[Canis antonii]]'' Zdansky, 1924 +* ''[[Canis aureus]]'' Linnaeus, 1758 +* †''[[Canis chihliensis]]'' Zdansky, 1924 +* †''[[Canis dirus]]'' Leidy, 1858 +* ''[[Canis himalayensis]]'' R. K. Aggarwal et al., 2007 +* ''[[Canis latrans]]'' Say, 1823 +* [[Palākais vylks]] (''Canis lupus'' Linnaeus, 1758) +* ''[[Canis mesomelas]]'' Schreber, 1775 +* ''[[Canis rufus]]'' Audubon & Bachman, 1851 +* ''[[Canis simensis]]'' Rüppell, 1840 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Canis}} + +{{DEFAULTSORT:Canis}} + +[[Kategoreja:Dzeivinīki]] + qhdnk9x5xvmce4fyusr974dyz6sz8cc + + + + Caracal caracal + 0 + 74 + + 29111 + 28984 + 2013-03-11T10:40:55Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q30847]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Caracal hunting in the serengeti.jpg|thumb|250px|]] +[[Fails:Caracal distribution.png|thumb|250px|'''' paplateiba pasaulī]] +'''Caracal caracal''' (Schreber, 1776, {{Vol-en|caracal}}, {{Vol-ru|каракал}}, {{Vol-lv|karakals}}) — ira naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Caracal caracal'' dzeivoj Afrikā i dīnavydvokoru Azejā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Caracal_caracal.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 65—90 cm;</br> +Astes garums: 30 cm;</br> +Svors: 13—18 kg. + +== Daudzatmejeiba == +Ira zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1933/ BioLib] Profil taxonu — druh '''karakal ''Caracal caracal''''' (Schreber, 1776)</ref>: +* ''[[Caracal caracal algira]]'' Wagner, 1841 +* ''[[Caracal caracal caracal]]'' (Schreber, 1776) +* ''[[Caracal caracal damarensis]]'' (Roberts, 1926) +* ''[[Caracal caracal limpopoensis]]'' (Roberts, 1926) +* ''[[Caracal caracal lucani]]'' (Rochebrune, 1885) +* ''[[Caracal caracal nubica]]'' J. B. Fischer, 1921 +* ''[[Caracal caracal poecilotis]]'' Thomas & Hinton, 1921 +* ''[[Caracal caracal schmitzi]]'' (Matschie, 1912) + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Caracal caracal}} + +{{DEFAULTSORT:Caracal caracal}} + +[[Kategoreja:Dzeivinīki]] + rlg8rqscqykjrdtif91v8mbyg518l7o + + + + Catopuma badia + 0 + 75 + + 31838 + 31792 + 2016-12-09T09:38:05Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31792 dated 2016-12-09 08:59:47 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + [[Fails:Bay cat 1 Jim Sanderson-cropped.jpg|thumb|250px|]] +[[Fails:Bay cat distribution map.png|thumb|250px|''Catopuma badia'' paplateiba pasaulī]] +'''Catopuma badia''' (Gray, 1874, {{Vol-en|bay cat, Bornean cat}}, {{Vol-ru|калимантанская кошка}}) — ira leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Catopuma badia'' dzeivoj tikai Borneo jiursolā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Catopuma_badia.html University of Michigan Museum of Zoology]</ref><ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1935/ BioLib] Profil taxonu — druh '''kočka bornejská ''Pardofelis badia''''' (Gray, 1874)</ref>. + +== Izavierīņs == +Auguma garums: nu 53 da 70 cm<ref name="ADV"/>;</br> +Astes garums: nu 32 da 39 cm<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 48–51. ISBN 0-226-77999-8.</ref>;</br> +Svors: 3—5 kg<ref name="ADV"/>. + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|}} + +{{DEFAULTSORT:}} + +[[Kategoreja:Dzeivinīki]] + lya3hpmxdqc5skrytcql262ykx3dmfv + + + + Catopuma temminckii + 0 + 76 + + 29110 + 28141 + 2013-03-11T10:40:53Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q192233]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Asian Golden cat.jpg|thumb|250px|]] +[[Fails:Distibution map of Asian Golden Cat.svg|thumb|250px|''Catopuma temminckii'' paplateiba pasaulī]] +'''Catopuma temminckii''' ({{Vol-en|Asian golden cat, Temminck's golden cat}}, {{Vol-ru|азиатская золотистая кошка}}, {{Vol-lv|zeltainais Āzijas kaķis}}) irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Catopuma temminckii'' dzeivoj Dīnavydreitu Azejā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Catopuma_temminckii.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: nu 66 da 105 cm<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 52–56. ISBN 0-226-77999-8.</ref> ;</br> +Astes garums: nu 40 da 57 cm<ref name=WCoW/>;</br> +Placu augstums: 56 cm<ref name=WCoW/>;</br> +Svors: nu 9 da 16 kg<ref name=WCoW/>. + +== Daudzatmejeiba == +Ira 3 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1936/ BioLib] Profil taxonu — druh '''kočka Temminckova ''Pardofelis temminckii''''' (Vigors & Horsfield, 1827)</ref>: +* ''[[Catopuma temminckii dominicanorum]]'' Sclater, 1898 +* ''[[Catopuma temminckii temminckii]]'' Vigors & Horsfield, 1827 +* ''[[Catopuma temminckii tristis]]'' Milne-Edwards, 1872 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Catopuma temminckii}} + +{{DEFAULTSORT:Catopuma temminckii}} + +[[Kategoreja:Dzeivinīki]] + pryq9fmgfx50h0e7h1r7qg33r3jd8lx + + + + Ciļviece + 0 + 77 + + 28142 + 26400 + 2013-03-07T16:49:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 14 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1156970]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Ciļviece''' — [[pasauļs|pasauļa]] ļaužu vysums aba vysu ''[[Homo sapiens]]'' [[Atmeja|atmejis]] iņdividu vysums. + +Ciļviecis [[sapratīņs]] var zeimuot: +* vaira na 2 milijonus godu iz [[Zeme|Zemis]] ekzistejūšu dzymumu, kurs pīstuov treis etapus: agreimī ļauds, senejī ļauds i vāleimī ļauds; +* vysus Zemislūdis dzeivuotuojus, kuri niule irā dzeivis guojumā iz vyds dzimšonys i nūmieršonys; +* kurymā naviņ viesturiskā laikā dzeivuojušu personu vysumu; +* niule iz Zemis dzeivojūšu [[Iņdivids|iņdividu]], [[Personeiba|personeibu]], [[Pilīts|pilīšu]] vysumu. + +Ciļviece sasadola [[Rase|rasēs]], [[Tauta|tautuos]] aba [[Etnoss|etnosūs]], socialajuos i kulturyskajuos grupuos. Parostai ap ciļvieci runoj napavaļdeigai dalejumam kuortuos (verīšu, sīvīšu) voi [[Ļaudeiba|ļaudeibuos]]. Ciļviecis sapratīņs semaņtiskai apjam na viņ iņdividu fiziskū daudzumu, a i nūtaleju aizzineigu informacejis meitu iz vyds jūs. Ciļviecis darbeibys rezultata parostai sauc par kulturu. + +== Verīs taipoš == +* [[Pasauļa dzeivuotuoji]] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Ļaudeiba]] +[[Kategoreja:Filosofeja]] +[[Kategoreja:Politika]] + s2x7rsuek76ynx0yfa0ka1naz2etuh4 + + + + Cybla + 0 + 78 + + 28143 + 15891 + 2013-03-07T16:50:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1018485]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Cybla''' — [[sola]] [[Reiti|reitūs]] nu [[Ludza|Ludzys]] mīsta, natuoļ da [[Krīveja|Krīvejis]] rūbeža, [[Cyblys nūvods|Cyblys nūvoda]] centrys. + +{{eiss rakstīņs}} + +[[Kategoreja:Cyblys pogosts]] +[[Kategoreja:Cyblys nūvoda solys]] +[[Kategoreja:Latvejis solys]] +[[Kategoreja:Latvejis pogostu centri]] + d32wcgs4tq6v3a91thwc7iifosf786d + + + + Cyblys nūvods + 0 + 79 + + 28144 + 26157 + 2013-03-07T16:50:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1955102]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Cyblys nūvods +| zemislopa = CiblasMapa.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Ciblas_novads_COA.png +| gerba_pasauka = Cyblys nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Blonti +| pluots = 509,4 +| dzeivuotuoju_skaits = 3 410 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 6,69 +| īstateits = 2000 +| teritoriskais_dalejums = [[Blontu pogosts]] <br /> [[Cyblys pogosts]] <br /> [[Leidumnīku pogosts]] <br /> [[Pušmycovys pogosts]] <br /> [[Zviergzdiņa pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.cibla.lv +}} +'''Cyblys nūvods''' — administrativa i kulturviesturiska teritoreja natuoli nu [[Ludza|Ludzys]] mīsta pi [[Krīveja|Krīvejis]] rūbeža. Nūvodā īīt Blontu, Cyblys, Leidumnīku, Pušmycovys i Zviergzdiņa pogosti. Nūvoda centrys - [[Cybla]]. + +== Geografeja == +=== Rūbeži === +Nūvods tur rūbežu ar Kuorsovys i Ludzys nūvodu i 35 km garu reitu rūbežu ar Krīveju. Nūvods irā rūbežmalis režima teritoreja. + +=== Doba === +==== Reljefs i geologeja ==== +Cyblys nūvoda reitu daļa izalikaliejuse [[Mudovys zamaine|Mudovys zamainis]] [[Sīnuojis leidzonaine|Sīnuojis leidzonainē]], reitu daļa apjam [[Latgolys augstaine|Latgolys augstainis]] pūstumreitu styuri - [[Būrzovys kaupraine|Būrzovys kaupraini]], kura pasadrejuse nu [[Laduojs|laduoju]] iudiņu guliejuma, partū ite vaira [[Kaupris|kaupru]] na nūvoda vokoru daļā. Augšuok apleicīnis vysucīšuok pasaceļ [[Kopukolns]] (samiereigais augstums - 32 m). Pa vyscaureigajam augstumam nūvoda vysuaugstais punkts - [[Vabaļu kolns]] (172 m augšuok [[Jiuru leidzīņs|jiuru leidzīņa]]). + +==== Klimats ==== +[[Māronuo jūsta|Māronuos jūstys]] [[Koņtinentalais klimats|koņtinentalais]] klimata tips. Vydyskuo temperatura janvara mienesī -7oC, juļa mienesī +17oC. [[Krytuli|krytuļu]] daudzums ap 650 - 700 mm godā. Snīgs turīs vydyskai 118 dīnu par godu. Kienejūšī vieji vosor - vokoru i dīnavydvokoru, zīm - dīnavydreitu i dīnavydu. + +==== Geologeja ==== +[[Pamatplīkšni]] - [[Viersejais devons|viersejuo devona]] [[Daugovys svita|Daugovys svitys]] [[karbonatplīkšni]], [[Dolomits|dolomiti]], taipoš rati [[Dolomitmergeļs|dolomitmergeļu]] i muola [[Vydkluoškys|vydkluoški]]. Iz dīnavydim nu [[Kurja|Kurjis upis]] - [[Salaspiļs svita|Salaspiļs svitys]] dolomiti, dolomitmegeli i [[Vapnakmiņs|vapnakmini]]. Pamatplīkšni viersā naatsasadz, jūs apkluoj vysaida vacuma, bīzuma (5 - 35 m ) i ciļmis [[Kvartars|kvatara]] [[nūsādys]]. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Cyblys nūvods| ]] + 8lkgmcezg6r5loj19fy6ktx82og4gkf + + + + Cylvāks + 0 + 80 + + 28145 + 27833 + 2013-03-07T16:50:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 161 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Akha cropped hires.JPG|thumb|Cylvāku tāvaiņs i muotaine|200px]] +'''Cylvāks''', [[Taksonomeja|taksonomiskai]] '''''Homo sapiens''''' ([[Latiņu volūda|latiņu volūdā]]: '''saprateigais cylvāks''') irā vīneiguo dzeivuo škira [[Cylvāki (giņts)|''Homo'' (cylvāku)]] giņtī. + +{{Commonscat|Homo sapiens|Cylvāks}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + aghd7rgeq2frt6phvxsboygefnk2rhh + + + + Cytu religeju dīvanomi Latgolā + 0 + 81 + + 11417 + 10388 + 2011-03-24T20:50:17Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + == Cytu religeju dīvanomi Latgolā pa pasaukai == +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== B == +* Bolvu baptistu lyugšonu noms + +== D == +* Daugpiļs adveņtistu bazneica (Septeituos dīnys adveņtistu Daugpiļs parapeja) +* Daugpiļs baptistu bazneica +* Daugpiļs sinagoga + +== K == +* Kuorsovys adveņtistu lyugšonu noms (Septeituos dīnys adveņtistu Kuorsovys parapeja) +* Kruoslovys adveņtistu lyugšonu noms (Septeituos dīnys adveņtistu Kruoslovys parapeja) + +== L == +* Leivuona adveņtistu lyugšonu noms (Septeituos dīnys adveņtistu Leivuona parapeja) +* Ludzys adveņtistu lyugšonu noms (Septeituos dīnys adveņtistu Ludzys parapeja) + +== R == +* Rēznis adveņtistu bazneica (Septeituos dīnys adveņtistu Rēznis parapeja) +* Rēznis baptistu parapejis lyugšonu noms +* Rēznis sinagoga + +== T == +* Tiļžys baptistu lyugšonu noms + +[[Kategoreja:Religeja Latgolā]] +[[Kategoreja:Saroksti]] + 4p08dnqxzbwt5qp10fdufd36gxnxowu + + + + DHK Latgale + 0 + 82 + + 28146 + 11418 + 2013-03-07T16:51:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 7 interwiki links, now provided by [[d:|Wikidata]] on [[d:q913127]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Hokeja komanda "Latgale"''' — [[Daugpiļs]] [[Hokejs|hokeja]] klubs, valeimuo Reigys hokeja sasaveicīņa čempions. + +* Kluba kruosys - zyla, bolta +* Liga - Latvejis hokeja liga +* Golvonais treners - Igors Smirnovs +* Trenera asistents - Guntis Bāliņš +* Vadeibnīks - Aleksandrs Sverčkauskys +* Sovinīks - Leonards Teņs + +== Viesture == +* 2000 g. atdareita Daugpiļs ladshale +* 2003 g. īstateits Daugpiļs mīsta hokeja klubs, saškirūt hokejistus nu Daugpiļs ladsškolys i mīsta amaterkomandu, pasadarejuse Daugpiļs mīsta hokeja komanda ''Latgale''. +* 2003/2004 g. sezonā komanda pīsadaleja valeimajā Reigys hokeja sasaveicīnī i treneru Sergeja Ivčenkys i Alekseja Rešetnikova vodoma izaceikstēja par čempionu titeli. +* 2004/2005 g. sezonā puorsameja komandas sadors i treneri. +* 2005/2006 g. sezonā pīsadaleja "Falck" valeimajā Latvejis Viersligys hokeja sasaveicīnī. + +== Sātvīta == +Kluba sātvīta - Daugpiļs ladshale. Komandas darbeibu atspaidoj Daugpiļs mīsta pošvolds. + +== Dasnāgumi i aizjimtuos vītys == +* 2003/2004 g. valeimajā Reigys sasaveicīnī - 1 vīta +* 2004/2005 g. valeimajā Reigys sasaveicīnī - 2 vīta +* 2005/2006 g. Latvejis Viersligā - 3 vīta +* 2006/2007 g. Latvejis viersligā - 5 vīta + +== Nūruodis == +* [http://www.hockeylatgale.lv/ Daugpiļs hokeja komandys ''Latgale'' teiklavīta] + +{{DEFAULTSORT:Latgale, DHK}} + +[[Kategoreja:Daugpiļs]] + o4zdxxlcd1jqxjaikejy8y6j27pj5o2 + + + + Dadurekrans + 0 + 83 + + 29090 + 28908 + 2013-03-11T10:37:49Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q165970]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Dadurekrans''' ({{vol-en|touchscreen, touch screen}}; krīvu: ''сенсорный экран''; latvīšu: ''skārienekrāns, skārienjutīgs ekrāns'') — elektroniskys ītaisis ekrans, kurs var na tik paruodeit informaceju, a i juos dabuot. + +Kod lītuotuojs dadurekranā damīdz atsateikūšū vītu, piersta dasadyurīņs puormejams par informaceju i nūdūdams programaturai. Partū dadurekrans var atmeit klaviaturu, peli, [[Gaismys zeimuļs|gaismys zeimuli]] i leidz. paleigītaisis. + +Dadurekranus tur datori, [[Pruottelefons|pruottelefoni]], terminali (pīv., kopejneicuos apskaitei dareit, bankūs ailis numerim izdūt i tt.). + +[[Kategoreja:Tehnologeja]] + iu9h40gz2fdv9age51ry7yvclnxrly8 + + + + Dagda + 0 + 84 + + 31471 + 28148 + 2016-07-11T14:18:14Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Cytys zeimeibys|mīstu|Dagda (zeimeibu škiršona)|Dagda}} +{{Infoskreine Latvejis mīsts +| pasauka = Dagda +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| gerba_atvaigs =Coat_of_Arms_of_Dagda.svg +| gerba_pasauka = Dagdys gerbs +| karūga_atvaigs = Dagdas karogs.jpg +| karūga_pasauka = Dagdys karūgs +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 05 | lats = 40 | latNS = N +| longd = 27 | longm = 32 | longs = 14 | longEW = E +| nūvods = Dagdys nūvods +| pluots = 3 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 2178 +| bīzeiba = 726 +| viesturiskuos_pasaukys = {{vol-de|Dagden}} +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1992 +| posta_iņdekss = LV-5674 +| teiklavīta = www.dagda.lv +}} + +'''Dagda''' — [[mīsts]] dīnavydreitu Latgolā, [[Dagdys nūvods|Dagdys nūvoda]] centrys. Atsarūn Latgolys augstainis reitu pīkaļnē, pi [[Dagdys azars|Dagdys azara]] i [[Narūta|Narūtys]] upeitys, 26 km pūstumreitūs nu [[Kruoslava|Kruoslovys]], 267 km nu [[Reiga|Reigys]]. Pluots – 3 km², dzeivuotuoju bīzeiba – 899 dzeiv/km². + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.dagda.lv/ Dagdys nūvoda portals] + +{{nadabeigts rakstīņs}} + +{{Dagdys nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Dagda| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + heuztu3vi4gvkali2c39w6u2notxpu8 + + + + Dagdys nūvods + 0 + 85 + + 28149 + 25189 + 2013-03-07T16:53:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361131]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Dagdys nūvods +| zemislopa = Dagdas novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Dagdas novads COA.png +| gerba_pasauka = Dagdys nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Dagda +| pluots = 948,8 +| dzeivuotuoju_skaits = 9 559 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 10,07 +| īstateits = 2009 +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} + +'''Dagdys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], kas sasadora nu [[Dagda|Dagdys]] mīsta i 10 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Dagdys nūvods| ]] + d6tkj0dsnnovi3nt6g6ain7nsy6l0p4 + + + + Daguļs + 0 + 86 + + 28909 + 28150 + 2013-03-08T13:22:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q42501]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Daguļs''' (anglīšu: ''fuel''; krīvu: ''топливо''; latvīšu: ''degviela'') — škeista i dedzeiga (ar gaisā asūšū skuobekli vīgli reagejūša) [[lītne]] voi škeistu i dedzeigu [[Lītne|lītņu]] maisīņs, kuru lītoj transportleidziekļūs, kab dabuotu lela syltuma energejis daudzuma i darbynuotu transportleidziekļa dzeitivi. + +Daguļs irā vīna nu [[Kurīņs|kurīņa]] [[Atmeja|atmeju]]. + +Daguļa [[Atmeja|atmeju]] pīvadumi: +* benzins; +* dizeļdaguļs (dizeļs); +* mazuts; +* soļarolejs (soļars); +* gazolins +i ct. + +[[Kategoreja:Energeja]] + jta4q95irbip1cd8p9y8q1amom190nr + + + + Damīgt + 0 + 87 + + 29985 + 14224 + 2013-08-16T15:45:13Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q256528]] + wikitext + text/x-wiki + '''Damīgt''' — mīgt vīnu nu datora pelis pūgu tai, kab atsarostu klikstīņa skons. Ka navā taišni raksteits, voi vajag damīgt kairū, voi lobū pūgu, tūlaik dūmuota pelis kairuo pūga. + 5kba5d3ks09q7eftx4s12yi7clakwgm + + + + Daneja + 0 + 88 + + 32046 + 30790 + 2017-06-19T12:03:36Z + + DARIO SEVERI + 3389 + + Updade inf. from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Kongeriget Danmark'''<br />'''Danejis Kieneste'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Denmark.svg|150px|border]] +| align="center" width="140px" | [[Fails:National Coat of arms of Denmark.svg|100px]] +|} +|- +| align=center colspan=2 | [[Fails:EU location DEN.png|300px]] +|- +|| Golvysmīsts || [[Kopenhaga]] +|- +|| Vaļsteibys volūda || [[danīšu volūda|danīšu]] +|- +| Kienenīne || Margareta II +|- +| Ministru prezidents || Lars Løkke Rasmussen +|- +|| Pluots || 43 098 km² +|- +|| Dzeivuotuoju skaits || 5 748 769 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1),<br /> EEST (UTC +2) +|} +'''Daneja''' ({{Vol-da|Danmark}}) – vaļsteiba Pūstumu [[Europa|Europā]]. Kūpā ar Grenlandeju i Fareru Salom veidoj '''Danejis Kienesti''' ({{Vol-da|Kongeriget Danmark}}). Daneja irā iz dīnavydim vysuvaira byunūša Skaņdinavejis vaļsteiba iz vyds [[Baļtejis jiura|Baļtejis]] i Pūstumu jiurys. Vaļsteibys teritoreju veidoj Jutlandejis pussola i nazcik solu – Zelandejis, Fina, Langelana, Bornholma i cytys mozys. Jutlandejis dīnavydūs rūbežs ar [[Vuoceja|Vuoceju]] (68 km). Kategata i Eresuna jiuru šauris škir Daneju nu [[Švedeja|Švedejis]], Skageraka jiuru šauris – nu [[Norvegeja|Norvegejis]]. Pyrma Kīļa kanala izkasšonys, vīneigais kuģu ceļš nu [[Baļtejis jiura|Baļtejis]] jiurys da Pūstumu jiurai beja varams pa itym trejim kanalim, zynomim kai „Danīšu šauri”. + +Myuslaikūs Daneja irā konstitucionala monarheja ar parlamentarisku demokratisku vaļdeibu. Danejai irā vaļsteibys leidzīņa vaļdeiba i 98 vītejuos vaļdeibys (pošvoldi). Koč i nu 1973 gods Daneja irā Europys Savīneibys dalineica, jei navā dasaškieruse pi [[Eura|eurys]] zonys i vys vēļ vaļsteibys oficialuo valuta irā Danejis krona. Daneja irā nazcik vydtautisku organizaceju dalineica nu pošys īstateošonys dīnys – NATO i Vydtautiskuos ekonomiskuos kūpādareibys i raisteibys organizacejā (VEKRO). Taipoš jei irā Europys Drūsuma i Kūpādareibys organizacejis (EDKO) dalineica. Byuteigai atguoduot, ka Grenaldeja i Fareru Solys, teritorejis ar lelu autonomeju, navā Europys Savīneibys dalineicys. + +Danejai ar jaukta tierga kapitalizma ekonomiku i augstu vaļsteibys labtureibu irā vīns nu pošu augstū leidzīņu ījāmumu leidzonumā. Danejā irā pošu lobais komercdarbeibys klimats pasaulī. Nu 2006 gods da 2009 godam Danejis Kieneste pīzeita kai „pošu laimeiguo vīta iz zemis”, pamatojūtīs iz veseleibys, labtureibys i izgleiteibys standartim. 2010 godā Daneja pīzeita kai vīna nu pasauļa mozuok korumpetajom vaļsteibom. + +Vaļsteibys nacionaluo daņu volūda irā cīši radnesteiga švedu i norvegu volūdai, ar kū irā styprys kultureigys i viesturiskys saitys. 80,9% Danejis dzeivuotuoju irā evaņgeliku ļutarticeigī. Pa 2010 gods datim 548,000 cylvāku (9,9% Danejis dzeivuotuoju) irā emigranti ci emigrantu piedinīki. Vysuvaira (54%) nu jū irā cytu Skaņdinavejis ci Europys vaļsteibu ļauds, cikom cyti pa lelumam irā nu Tiveimim Reitim i Afrikys vaļsteibom. + +== Etimologeja == + +== Viesture == + +== Geografeja == + +== Politiskuo sistema == + +== Administrativais dalejums == + +== Ekonomika == + +== Demografeja == + +=== Etniskais sadors === +=== Volūda === +=== Religeja === + +== Sports == + +== Verīs taipoš == + +== Nūruodis i olūti == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Daneja| ]] + 2yw8cmbgjinbsbnuejyyvyhn9t154oi + + + + Datorzineiba + 0 + 89 + + 29909 + 29893 + 2013-06-22T17:30:32Z + + Ruud Koot + 2030 + + interwiki's fixed on wikidata + wikitext + text/x-wiki + '''Datorzineiba''' ({{Vol-en|computer science}}, {{Vol-lv|datorzinātne}}, {{Vol-ru|информатика}}) + +* [[Datorzineibys termini]] +* [[Latgaļu volūda datorūs]] +* [[Teikluošonys termini]] + +[[Kategoreja:Datorzineiba| ]] + 58w7ztcg0q9ejcxfczne0y6v7wa9zti + + + + Datorzineibys termini + 0 + 90 + + 31466 + 31465 + 2016-07-02T06:23:49Z + + Vucyns + 3168 + + /* F */ + wikitext + text/x-wiki + '''Datorzineibys termini''' — dūti kai anglīšu terminu alfabetiskys saparāds; nazcik latgaļu vuordim dūtys i definicejis - ira nūruodis iz rakstīnim. Datorzineibys terminu sarokstā sevkurs viersvuords suocās ar tabeleiti, kuramā jis puorvārsts anglīšu, latvīšu, latgaļu i lītaunīku volūduos. Paļdis latgola.lv vuordineicys sastateituojim ([http://latgola.lv/voluda/vuordineicys/danglatg.shtml])! + +Taipat var vērtīs [[Vikipedeja:Vikipedejis termini|Vikipedejis terminu vuordineicā]]. + +''This '''Glossary of IT terminology''' translates common terms of IT (plus some Wikipedia specific ones) into Latgalian; these terms may also be linked to brief articles containing translations into 3 Baltic languages (Latgalian, Latvian, Lithuanian), Latgalian definition and further examples. Some of Latgalian terminology is unestablished, discussion is encouraged; links to other online dictionaries are provided, when possible.'' + +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#B|B]] [[#C|C]] [[#D|D]] [[#E|E]] [[#F|F]] [[#G|G]] [[#H|H]] [[#I|I]] [[#J|J]] [[#K|K]] [[#L|L]] [[#M|M]] [[#N|N]] [[#O|O]] [[#P|P]] [[#Q|Q]] [[#R|R]] [[#S|S]] [[#T|T]] [[#U|U]] [[#V|V]] [[#W|W]] [[#X|X]] [[#Y|Y]] [[#Z|Z]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== A == +;abnormal termination: ''uorsaileiguo dabeigšona'' +;abort (''v''): ''puortraukt'' +;access: ''dative'', ''dativiešona'', ''datikšona'' +;address: ''adress'' (veir.k.), e-mail address - ''e-posta adress'' +;application: ''aplikaceja'', ''damārprograma'' +;article: ''rakstīņs''; Wikipedia article - ''Vikipedejis rakstīņs'' + +== B == +;blog: ''dīnroksts'' +;browser: ''vārtivs'' +;button: ''pūga'' + +== C == +;change (''v''): ''puormeit'' +;child class : ''bārnklase'' +;class : ''klase'' +;click (''v''): ''damīgt'' +;command line: ''komandaiļa'' +;computer: ''dators'' +;computer science: ''informatika'' > ''datorzineiba'' +;computer technology: ''datoru tehnologeja'', ''datoru lītys'', ''datoreiba'' +;cookie: ''glabiņs - tys, kurs irā nūglobuots i kurymā globojās informaceja.'' +;copy: ''puorspīdums'' +;copy (''v''): ''puorspīst'' +;create: ''radeit'' + +== D == +;date: ''data'' +;delete (''v''): ''iztreit'' +;dial-up: ''dazvons'', dial-up access - ''dazvondative'' +;directory: ''apvuocs'', ''direktoreja'' +;domain: ''muižlauks'', domain name - ''muižvuords'' +;domain name system (DNS): ''muižvuordu sistema'' +;download (''v''): ''atsasyuteit'' + +== E == +;e-mail: ''e-posts'' + +== F == +;file: fails, datne, file name - ''faila vuords'' (''datnis pasauka''), file size - ''faila lelums'' +;follow: ''nūīt'', follow this link - ''nūejit pa itai nūruodei'' + +;follow up +: ''saksteit'' +;follow-up: ''saksteišona, sakstejums'' + +== H == +;home page: ''suoku puslopa'', ''sātys puslopa'', ''sātyslopa'' +;hyperlink: ''nūruode'' + +== I == +;index: ''turīņa ruodeituojs'' +;information: ''dazynuošona'' +;inheritance: ''puormaņteiba'' +;install (''v''): ''instalēt'' +;instruction: ''instrukceja'' +;interface: ''sadurs'', ''iņterfeiss''; The programmable API of Flickr allows automated addition of images - ''Flickr'a programejamais iņterfeiss ļaun automatiskai dalikt biļdeitis''; command-line interface - ''komandailis sadurs''; graphical interface - ''grafiskais sadurs'', convenient interface - ''parūčs sadurs''; to localize an application program into Latgalian - ''puorceļt aplikacejis saduru latgaliskai'' +;Internet: ''Škārsteiklys'' +;IP address: ''IP adress'' + +== K == +;keyboard: ''klaviatura'' + +== L == +;line: ''aiļa'', ''aileņa'' +;link: ''nūruode'' +;login: ''slāgvuords'' +;login (''v''): ''dasaslēgt'' + +== M == +;mail server: ''pastinīkservers'' +;mailing list: 1) ''adresu saroksts'' (e-posta adresatu saroksts, kurim irā voi byus syutoma informaceja);<br /> 2) ''viestaiļa'' (e-posta viestuļu kūpums, kurs apjam škārsteikla dūmubīdru saraksteibu ap nūstateitu tematiku) +;message: ''viests'' +;message board: ''dūmu meits'' + +== O == +;online (''adj''): ''daslēdzis-''; online mode - ''daslēdzis režims'', online service - ''daslēdzis pakaļpīņs (pakaļpīni)'', ''online dictionary'' - daslēdzis vuordineica, škārsteikla vuordineica +;online (''adv''): ''daslēdzē'', ''iņteraktivai''; to work online - ''dareit daslēdzē'' +;open (''v''): ''atdareit'', ''atsadareit'' + +== P == +;page: ''puslopa'' +;password: ''paroļs'' +;peer-to-peer network: ''vīņleidzīņa teiklys'' +;precedence: ''saksteiba'', ''saksteibys skaits'' +;press: ''damīgt'' +;publish (''v''): ''likt vydā'', ''publicēt'' + +== R == +;random access memory (RAM): ''operativais atguods'' +;read-access memory: ''narokstomais atguods'' +;reference: ''nūruode'' +;remove (''v''): ''iztreit'' +;rename (''v''): ''puorsaukt'' +;revert (''v''): ''grīzt atpakaļ''; After vandal attack dozens of articles had to be reverted - ''Piec vandaļu nadorbu daguoja grīzt atpakaļ desmitem rakstīņu'' + +== S == +;security: ''apsardzeiba'' +;send (''v''): ''syuteit'' +;server: ''servers'' +;source text: ''suoku teksts'' +;standalone program: ''nadasīta programa'' +;style: ''stiļs'' +;subdirectory: ''zamapvuocs'', ''zamdirektoreja'' +;subscribe (''v''): ''dasaraksteit'' + +== T == +;textbox: ''lūdzeņš'' +;thread: ''neits'' +;total: ''kūpskaits'', ''suma'' + +== U == +;uniform resource locator (URL): ''URL adress'', ''vītruode'' +;unpack (''v''): ''atspīst'' +;upload: ''īsyuteit'' +;username: ''slāgvuords'' + +== W == +;warn (''v''): ''puorsorguot'' +;warning: ''puorsorga'' +;Web site: ''teiklavīta'' +;web, World Wide Web (WWW): ''Puorstaipteiklys'' + +[[Kategoreja:Datorzineiba]] + crvt4ur8h4h1h2mjwfkm212dxv3r5s7 + + + + Datu puorlaida + 0 + 91 + + 28153 + 26956 + 2013-03-07T17:50:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 21 interwiki links, now provided by [[d:|Wikidata]] on [[d:q389772]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Datu puorlaida''' ({{lang-en|data transmission}}) — [[Datoreiba|datoreibys]] (informacejis tehnologeju) i telekomunikaceju atzarēs lītojams process, kurymā informacejis vīneibys ([[Bits|biti]] voi [[Baits|baiti]]) irā syutomys nu vīnys ītaisis iz cytu, damārojūt vysaidys datu puorlaidys [[Datu puorlaida#Datu puorlaidys tehnologejis|tehnologejis]]. + +Datu puorlaida var byut, pīvadumam: +* datu puorsyute nu datora cītuo diska iz mobilū telefonu; +* iņterneta lītuošona (dati puorlaižami nu [[Ziņteiklys|ziņteikla]] [[Servers|servera]] iz [[Vārtivs|vārtivi]] lītuotuoja datorā); +* [[Viesteņa|viestenis]] syuteišona nu vīna mobiluo telefona iz cytu; +* drūsa vydyskuo teikla sataiseišona iz vyds izškireigūs geografiskajūs punktūs asūšu datoru (datori tys tam syuta datus, kuri ļaun nūstateit dasasliedzieja [[Taidojeiba|taidojeibu]] i apsorgoj nu svešu dasasliedzieju) +i leidz. + +Datu puorlaidys [[Datu puorlaida#Datu puorlaidys tehnologejis|tehnologejis]] var byut, pīvadumam: +* daslāguma tehnologejis - vara vodi, [[gaismysvodi]] aba optiskī kabeli, lazerdaslāgums, [[radejsaita]], [[infrasorkonī spaiti]] i ct.; +* standartizātys datu grupiešonys i kanalu taiseišonys tehnologejis - [[DSL]], [[ADSL]], [[MPLS]], [[Wi-Fi]], [[Wi-Max]] i ct. + +Datu puorlaidā svareigs sapratīņs irā datu puorlaidys [[Datu puorlaida#Protokoli i sasauksme|protokols]], kurs puorlaižamūs datus dora atpazeistamus i puorskaitomus. Poši myuslaiceigī protokoli patur datu syuteišonu [[Datu pakets|paketu]] formā. + +== Viesture == +Šudinejuos datu puorlaidys pyrmaguojiejs beja Morzis signalu syuteišona pa vodim, caur gaismys myrgu, radejis signalu atmejā i t. t. Tok Morzys signalu tehnologeja izaškir nu myslaiceiguos binariskuos datu puorlaidis - Morzys sistemā vajadzeigi vysaidi paužu garumi, kab informaceja byutu saprosta. + +== Datu puorlaidys atmejis == +'''Serejeiguo puorlaide''' (anglīšu ''serial transmission'', krīvu ''последовательная передача'', latvīšu ''seriālā pārraide'') - datu puorlaide, kod biti syutomi blokūs, īmūšūs tys aiz tuo. Informaceju var syuteit i pa vīnam bitam, tūlaik datu dabuojiejs nu seveigūs bitu sataisa datu blokus. Serijeigū atmeju lītoj datim puorlaist leluokā atostumā, kam leidza ar jim var vīgli puorsyuteit puorvēris skaitli voi puoreiguma bitu. + +'''Paraleluo puorlaida''' (anglīšu ''parallel transmission'', krīvu ''параллельная передача'', latvīšu ''paralēlā pārraide'') - datu puorlaida, kod biti syutomi vīnā laikā pa nazcik kanalim, a voi pa vīnu lineju caur multipleksiešonu. Itei atmeja labviņ dreizuoka na serejeiguo datu puorlaida, kam vīns baits puorsasyuta mudruok kai vīns bits. Itū metodu lītoj dators sovom vydyskajom darbeibom, pīvadumam, vydyskajuos magistralēs, a kod nakod - i uorejom saitom, saceisim, zynuodamīs ar drukaunīku. Tok itys metods tur sovus tryukumus - iz vyds nazcik kanalu atsarūn vaira trauciejumu kai tūlaik, ka datus syuteitu tik pa vīnu kanalu. + +== Asinhroniskuo i sinhroniskuo datu puorlaida == +'''Asinhroniskuo puorlaida ''' (anglīšu ''asynchronous transmission'', krīvu ''асинхронная передача'', latvīšu ''asinhronā pārraide'') - datu puorlaida, kuramā lītoj suokšonys i nūstuošonys bitus, kab apzeimuotu datu puorlaidys suokys i beigys. Tys zeimoj, ka 8 bitu [[ASCII]] literu eistyn puorlaiž izlītojūt 10 bitus, pīv., ''A'' puorlaiž kai ''1 0100 0001 0''. Datu puorlaidis suokuos i beiguos asūšais papyldomais vīninīks (ci nule, pīdareigai nu puoreiguma bita) dabuojiejam pyrma paviestej, ka tiks puorsyuteits liters, a piečuok - ka liters irā beidzīs. Itū datu puorlaidis metodu lītoj tūlaik, kod datus suyta puorrautai, a na vīngabaletigā straujā. Suoku i nūstuošonys bitim sovā vydā vajag byut preteimim (ka soku irā "1", to beigu irā "0", i ūtraiži), tūlaik dabuojiejs var pazeit, kod suoksīs jau cyts syutomais datu pakets. + +'''Sinhroniskuo puorlaida''' (anglīšu ''synchronous transmission'', krīvu ''синхронная передача'', latvīšu ''sinhronā pārraide'') - datu puorlaida, kuramā nalītoj suokšonys i nūstuošonys bitu, a tuo vītā sinhronizej datu puorlaidys dreizumu syuteituoja i dabuojieja ītaisē, lītojūt sevkurā komponentā īstateitu stuņdinīka signalu. Iz vyds diveju mozgu puorsyuta nūtaleju, vīngabaleigu datu strauju. Deļ tuo, ka navā suoku i beigu bitu, datu puorlaidys dreizums irā leluoks, tok itai var atsarast daudzuok klaidu, kam stuņdinīki var pagaisynuot sinhronizaceju i dabuojiejai ītasei var byut napareizs laiks - na tys, ap kurū dasarunuots [[Datu puorlaida#Protokoli i sasauksme|protokolā]]. Partū kuri nakuri baiti var tikt samaituoti (pagaisynuot bitus). Kab itū problemu nūgrīztu, doroma stuņdinīku resinhronizceja i lītojams puorvēris skaitlis, kuri puordrūsynoj baita pareizu saprasmi i pījimšonu. + +== Protokoli i sasauksme == +[[Datu puorlaidys protokols|'''Protokols''']] (anglīšu ''protocol'', krīvu ''протокол'', latvīšu ''protokols'') - diveju ītaišu sovā vydā dasarunuoti nūsacejumi ap tū, kaidam vajag byut puorlaižamūs datu formatam. Kab nūtyktu datu puorlaida iz vyds sevkuru diveju ītaišu, jom pyrma tuo sovā vydā vajag dasarunuot ap [[Datu puorlaidys protokols|protokolu]]. + +[[Sasauksme|'''Sasauksme''']] (anglīšu ''handshaking'', krīvu ''подтверждение связи'', latvīšu ''rokspiešana'') - process, kurymā divejis ītaisis apstyprynoj, ka iz vyds jūs irā atsaroduse saita i suokusēs zynuošonuos. Kab nūtyktu datu puorlaida, pyrma tuo vajadzeiga obadiveju ītaišu (datu syuteituojis i datu dabuojiejis) sasauksme. + +== Datu puorlaidys tehnologejis == +Daslāguma tehnologejis: +* vara vodi; +* gaismysvodi aba optiskī kabeli; +* lazerdaslāgums; +* radejsaitys; +* infrasorkonī spaiti + +Standartizātys datu grupiešonys i kanalu taiseišonys tehnologejis: +* [[ADSL]]; +* [[DSL]]; +* MPLS, [[IP MPLS]]; +* [[Wi-Fi]]; +* [[WiMax]] + +[[Kategoreja:Tehnologeja]] +[[Kategoreja:Datorzineiba]] + 8av1pn4tcde9fxuo6azxj72gkxcb7gf + + + + Datu puorlaidis protokols + 0 + 92 + + 28154 + 26995 + 2013-03-07T17:51:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 53 interwiki links, now provided by [[d:|Wikidata]] on [[d:q132364]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Datu puorlaidis protokols''' (anglīšu: ''protocol, data transmission protocol''; krīvu: ''протокол передачи данных''; latvīšu: ''protokols; datu pārraides protokols'') — diveju ītaišu sovā vydā dasarunuoti nūsacejumi ap tū, kaidam vajag byut puorlaižamūs datu formatam. + +Kab nūtyktu datu puorlaide iz vyds sevkuru diveju ītaišu, jom pyrma tuo sovā vydā vajag dasarunuot ap protokolu. + +Ītaisis, kurys dasarunoj ap protokolu, var byut, pīvadumam: +* dators i drukaunīks; +* dators i dators; +* dators i servers; +* dators i maršrutātivs +i leidz. + +Datu puorlaidis protokols nūstota: +* kaidu klaidu puorvēris atmeju ītaisis lītuos i voi vysā lītuos (pīv., puorvēris skaitlis, kura juo atmeja/kaida formula); +* kaidu datu samīgšonys metodu lītuos i voi vysā lītuos (pīv., "zip" lelim failim puorsyuteit caur iņternetu, LAN voi WAN); +* kai syuteituoja ītaise paviesteis, ka beiguse zinis syuteišonu (in a zynuošonuos davodā (Communications port) lītuos pagluobis kanalu, serejeigaji (USB) puorlaidei lītuos suoku i nūstuošonys skaitus); +* kai dabuojieja ītaise paviesteis, ka dabuojuse zinis; +* datu puorlaidis dreizums (bodūs voi bitūs); +* ci puorlaide byus sihroniska, ci asinhroniska; +i leidz. + +Protokolā taipoš var byut paradzāti pruoteigi pajiemīni datu puorlaidis klaidom aptikt i pareizajim datim atjaunynuot, taipoš pajiemīni datim šifrēt i atšifrēt. + i9kscpvq9ip9il4zhij4jq52lox0vdm + + + + Daugova + 0 + 93 + + 28155 + 25989 + 2013-03-07T17:51:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 50 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8197]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + <table border=1 cellpadding=2 cellspacing=0 align=right width=275px> +<tr><td; align=center colspan=2> +<table border=0 cellpadding=2 cellspacing=0> +<tr><td align=center><font size=+1>'''Daugova''' +''upe'' +</table> +<tr><td align=center colspan=2>[[Fails:Riga new bridge.jpg|250px]] +<tr><td>Garums<td>1020 km +<tr><td>Iztak<td>nu Valdaja augstainis Krīvejā +<tr><td>Ītak<td>[[Reigys leics|Reigys leicī]], [[Baļtejis jiurys|Baļtejis jiuruos]] +<tr><td>Tak pa<td>[[Krīveja|Krīvejis]], [[Boltkrīveja|Boltkrīvejis]], [[Latveja|Latvejis]] teritorejom +<tr><td>Niulejuos pasaukys cytuos volūduos<td>[[Latvīšu volūda|latvīšu]] - ''Daugava''<br />[[Lītaunīku volūda|lītaunīku]] - ''Dauguva''<br />[[Līvu volūda|līvu]] - ''Väina''<br />[[Igauņu volūda|igauņu]] - ''Daugava jõgi; Väina jõgi''<br />[[Suomu volūda|suomu]] - ''Väinäjoki''<br />[[Krīvu volūda|krīvu]] - ''Даугава; Двина; Западная Двина''<br />[[Boltkrīvu volūda|boltkrīvu]] - ''Даугава; Дзвiна; Заходняя Дзвiна''<br />[[Puoļu volūda|puoļu]] - ''Daugava; Dźwina''<br />[[Vuocīšu volūda|vuocīšu]] - ''Daugava; Düna'' +<tr><td>Nūkritīņs<td>221 m +<tr><td>Nūteciejums<td>678 m³/s (7,310 ft³/s) +<tr><td>Iudiņbaseina pluots<td>87,900 km² (33,900 mi²) +</table> +'''Daugova''' — vysuleluokuo [[Latgola|Latgolys]] i [[Latvejis Republika|Latvejis Republikys]] [[upe]], iztakūša nu [[Valdaja augstaine|Valdaja augstainis]] Krīvejā, takūša pa [[Krīveja|Krīvejis]], [[Boltkrīveja|Boltkrīvejis]] i [[Latveja|Latvejis]] teritorejom, ītakūša [[Baļtejis jiurys|Baļtejis jiuru]] [[Reigys leics|Reigys leicī]] . Kūpeigais upis garums – 1020 km. + +[[Krīveja|Krīvejā]] Daugova (Zapadnaja Dvina) caur kanalu saškierta ar [[Berezina|Berezinys]] i [[Dneprys|Dnepra]] upem. + +Iz Daugovys pastateitys tris [[Iudiņspākaine|iudiņspākainis]] ar [[Damba|dambom]] – [[Reigys iudiņspākaine]] 35 km iz viersu nu upis greivys, [[Keguma iudiņspākaine]] vēļ 70 km iz viersu nu greivys i [[Pļaveņu iudiņspākaine]] 107 km iz viersu nu greivys. Catūrtuo – [[Daugpiļs iudiņspākaine]] beja planavuota XX gs. 80-tajūs godūs, tok projekts satyka lelu pretiveibu nu ļaudeibys pusis i nabeja īdzeivynuots. + +== Mīsti pi Daugovys == +* [[Veližs]], Krīvejā +* [[Vicebskys]], Boltkrīvejā +* [[Polackys]], Boltkrīvejā (Polacka apleicīnē atrūnami [[Daugovys akmini]]) +* [[Daugpiļs]] +* [[Jākubmīsts|Jākubmīsts]] +* [[Uogre]] +* [[Solyspiļs]] +* [[Reiga]] + +== Datakys == +Zeimeiguokuos datakys: +* [[Polota]] +* [[Kaspļa]] +* [[Meža]] + +Datakys Latgolā i Sielejā: +* Kairuos molys (Sielejā) - [[Laucesa]], [[Īlyukste (upe)|Īlyukste]], [[Dvīts]], [[Eglaine]]. +* Lobuos molys (Latgolā) - [[Indreica (upe)|Indreica]], [[Leiksna (upe)|Leiksna]], [[Dubna (upe)|Dubna]], [[Narata (upe)|Narata]], [[Aivīkste]]. + +[[Kategoreja:Daugova| ]] +[[Kategoreja:Latgolys upis]] +[[Kategoreja:Latvejis upis]] +[[Kategoreja:Boltkrīvejis upis]] +[[Kategoreja:Krīvejis upis]] +[[Kategoreja:Europys upis]] + kuhjz12digjxzyx9108wylkpevencq3 + + + + Daugpiļs + 0 + 94 + + 32101 + 31989 + 2017-07-07T19:12:22Z + + CAPTAIN RAJU + 3950 + + + ([[c:GR|GR]]) [[c:COM:FR|File renamed]]: [[File:Centrs baznica.jpg]] → [[File:Centra baznīca.jpg]] [[c:COM:FR#reasons|File renaming criterion #3]]: To correct obvious errors in file names, including misspelled [[c::en:Noun#Proper nouns and common no... + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Daugpiļs +| mīsta_tips =Republikys mīsts +| atvaiga_pasauka = Dvinsk 1912.jpg +| atvaiga_aprakstejums = Daugpiļs 1912 godā (autors: Prokudins-Gorskis) +| gerba_atvaigs = Coat of arms of Daugavpils.svg +| gerba_pasauka = Daugpiļs gerbs +| karūga_atvaigs = Flag of Daugavpils.svg +| karūga_pasauka = Daugpiļs karūgs +| koordinatu_zemislopa = Latveja +| latd = 55 | latm = 52 | lats = 30 | latNS = N +| longd = 26 | longm = 32 | longs = 08 | longEW = E +| pluots = 72,5 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 95467 +| bīzeiba = 1317,1 +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = 1275 +| mīsta_tīseibys = 1582 +| posta_iņdeksi = LV-54(01-65) +| teiklavīta = www.daugavpils.lv +}} + +'''Daugpiļs''' — mīsts [[Latgola|Latgolys]] dīnavydūs pi [[Daugova|Daugovys]]. Pats lelais mīsts Latgolā, ūtrais pa lelumam mīsts (piec [[Reiga|Reigys]]) Latvejis Republikā. Latgolys regiona ekonomiskais i vuiceibys centrys, vīns nu diveju (sūpluok [[Rēzne|Rēznis]]) golvonūs Latgolys kulturys centru, [[Daugpiļs nūvods|Daugpiļs nūvoda]] administrativais centrys. + +== Pasaukys == +'''Daugpiļs''' — vītejuos baltu volūduos ([[Latgaļu volūda|latgaļu]], [[Lītaunīku volūda|lītaunīku]]) tradiceigai lītuota senejuo mīsta pasauka. + +'''Dynaburgs''' — Daugpiļs mīsta oficialuo pasauka nu XIII da XIX g., cālusēs nu [[Vuocīšu volūda|vuocīšu volūdys]]. + +Ar vuordu ''Dünaburg'' [[Vuocīšu volūda|vuocīšu volūdā]] viesturis olūtūs suokta apzeimuot myurine [[Dynaburga piļs|piļs]], kuru Livonejis ordyna magistrys Ernsts fon Ratsenbergs (''Ernst von Ratsenberg'') 1275 g. pastateja latgaļu piļs Naujinis vītā i kuru īskaita par Daugpiļs mīsta suokom. + +Dynaburga vuords vuocīšu volūdā, taipoš cytuos volūduos ({{Vol-pl|Dyneburg}}, {{Vol-ru|Динабург}}) Daugpilei apzeimuot oficialai lītuots da poš 1893 g., kod [[Cars|cara]] vaļdeiba mīsta puorsauce par ''Dvinsku'' (''Двинск''), a runuvolūdā – vēļ i XX gs. suokuos. + +'''Borisoglebskys''' ({{Vol-ru|Борисоглебск}}) — laiceiguo Daugpiļs pasauka nu 1656 da 1667 g. + +Daugpiļs tai puorsauce piec tuo, kod 1656 g. jū aizjēme Krīvejis [[cars]] [[Aleksejs Mihailovičs]]. 1667 g. [[Krīveja]] atdeve Daugpili atpakaļ [[Puoleja]]i, i mīstam otkon atjaunynuota pyrma tuo bejušuo pasauka – ''Dynaburgs'' ([[Puoļu volūda|puoļu]] ''Dyneburg'' nu [[Vuocīšu volūda|vuocīšu]] ''Dünaburg''). +<br> +<br> +'''Cytys pasaukys''':<br> +Oficialuo pasauka [[Latvīšu volūda|latvīšu volūdā]] – ''Daugavpils''. + +Pasauka cytuos volūduos: +* {{Vol-ltg|Daugpiļs}} +* {{Vol-ltg| (poetiskuo pasauka) Dveiņuva}} +* {{Vol-lt|Daugpilis}} +* {{Vol-ru|Даугавпилс}}, ''Двинск'' +* [[Boltkrīvu volūda|boltkrīvu]]: ''Даўгаўпiлс; Дзвiнск'' +* {{Vol-pl|Daugavpils}}, ''Dyneburg'' +* {{Vol-de|Daugavpils}}, ''Dünaburg'' +* {{Vol-et|Väinälinn}} +* [[Suomu volūda|suomu]]: ''Väinänlinna'' + +Viesturiskuos i sūpluokuos pasaukys: +* [[Jidišs|jidišā]] — ''דענענבורג'' (''Denenburg'') +* [[Krīvu volūda|krīvu]] — ''Борисоглебск'' +* [[wp/baltg/Puoļu volūda|puoļu]] — ''Dźwińsk; Dzwinów'' + +== Geografeja == + + +=== Vīta i reļjefs === +Daugpiļs irā Latgolys dīnavydūs, pi leluokuos Latgolys upis — Daugovys, natuoļ nu [[Lītova|Lītovys]] i [[Boltkrīveja|Boltkrīvejis]] rūbežu. + +Daugpiļs geografiskuos koordinatys: +* 55° 53′ 0″ N (55,883333° N), 26° 32′ 0″ E (26,533333° E) + +Atostumi nu Daugpiļs: +* Lītovys rūbežs – 25 km; +* Boltkrīvejis rūbežs – 33 km; +* [[Aglyuna]] — 52 km; +* [[Preili]] — 58 km; +* [[Leivuons]] — 61 km; +* [[Rēzne]] — 90 km; +* [[Krīveja|Krīvejis]] rūbežs — 120 km; +* [[Viļne]] — 214 km; +* Viļnis gaisūsta — 219 km; +* [[Reiga]] — 229 km; +* Reigys gaisūsta — 232 km; +* [[Minskys]] — 250 km; +* [[Vicebskys]] — 250 km; +* [[Pīterpiļs]] — 538 km; +* [[Moskova]] — 845 km. + + +===Daugpiļs azari=== + +Daugpiļs mīsta teritorejā 12 azaru: +<br> +{|class="standard" +|&nbsp;Pasauka latgaliskai&nbsp;||&nbsp;Pasauka latvyskai&nbsp;||&nbsp;Pasauka krīvyskai&nbsp; +|-- +|[[Bezdibiņs]]||''Bezdonkas''||''Бездонка'' +|-- +|[[Gubaiņs]]||''Gubiščes''||''Губище'' +|-- +|[[Lelais Trejkuorts]]||''Lielais Trijkārtu''||''Большой Трикарт'' +|-- +|[[Mozais Trejkuorts]]||''Mazais Trijkārtu''||''Малый Трикарт'' +|-- +|[[Puļvierņs]]||''Porohovas''||''Пороховка (Порохня)'' +|-- +|[[Pluociņs]]||''Plotičku (Platinkas)''||''Плотичка'' +|-- +|[[Stropāks]]||''Stropiņš''||''Стропак'' +|-- +|[[Stropeica]]||''Mazais Stropu''||''Стропица'' +|-- +|[[Strops]]||''Lielais Stropu''||'' Строп (Cтропское)'' +|-- +|[[Šyuņs]]||''Šūņu (Šuņezers)''||''Шуня (Шунька)'' +|-- +|[[Tryudiņs]]||''Torfjankas''||''Торфянка'' +|-- +|[[Žygrys]]||''Zirgezers''||''Жигры (Лошадиное)'' +|-- +|} +<br> + +===Daugpiļs upis=== + +Daugpiļs mīsta teritorejā 5 upis: +<br> +{|class="standard" +|&nbsp;Pasauka latgaliskai&nbsp;||&nbsp;Pasauka latvyskai&nbsp;||&nbsp;Pasauka krīvyskai&nbsp; +|-- +|[[Daugova]]||''Daugava''||''Двина (Даугава)'' +|-- +|[[Laucasa]]||''Laucesa''||''Лавцеса'' +|-- +|[[Malnupe]]||''Čornaja (Melnupe)''||''Чёрная'' +|-- +|[[Sylupe]]||''Meļņička (Silupe)''||''Мельничка (Шилупка)'' +|-- +|[[Šyuneica]]||''Šūņupe (Šuņica)''||''Шуница'' +|-- +|} +<br> +===Cyti iudini=== +{|class="standard" +|&nbsp;Pasauka latgaliskai&nbsp;||&nbsp;Pasauka latvyskai&nbsp;||&nbsp;Pasauka krīvyskai&nbsp; +|-- +|[[Esplanadys iudiņture]]||''Esplanādes ūdenskrātuve''||''Водохранилище на Эспланаде'' +|-- +|[[Paguļānu olūts]]||''Mežciema avots''||''Погулянский родник'' +|-- +|[[Rugieļu iudiņture]]||''Ruģeļu ūdenskrātuve''||''Ругельское водохранилище'' +|-- +|[[Rugieļu muorks]]||''Ruģeļu dīķīs''||''Ругельский пруд '' +|-- +|[[Stropeicys kanals]]||''Stropu kanāls''||''Канал Cтропица'' +|-- +|} +<br> + +=== Klimats === +Klimats Daugpilī leidzeigs kai cytur Latgolā i koņtinentaluoks kai cytūs Latvejis regionūs. Vysuzamuokuo Daugpilī registrātuo temperatura beja — 43° C, vysuaugstuokuo +36° C. + +== Demografeja == +=== Dzeivuotuoju skaits === + +{|class="standard" +|&nbsp;Gods&nbsp;||&nbsp;Dzeivuotuoju&nbsp; +|-- +|1913 g.||113 048 +|-- +|1944 g.||14 832 +|-- +|1947 g.||36 890 +|-- +|1970 g.||100 431 +|-- +|2005 g.||108 260 +|-- +|2016 g.||95 467 +|} +<br> + +=== Etniskais sadors === +Daugpiļs dzeivuotuoju lelumam (>80%) dzymtuo volūda irā krīvu. Kasdīnā krīvyskai runoj na viņ krīvi, a i boltkrīvi, ukraini, puoli, žydi, taipoš lela daļa latgaļu. Cyti latgali kasdīnā runoj latgaliskai voi latvyskai. + +Daugpiļs etniskūs latgaļu puorsakrīvuošonu XX godusymtā vadynuoja, nu vīnys pusis, sovetu rusifikacejis politika i lelī krīvvolūdeigūs ļaužu imigracejis māri, nu ūtrys pusis, latvīšu diskriminejūšuo nūstota pret latgaļu kulturu. Itei nūstota atsaroda deļ XX gs. 20-tūs i 30-tūs godu mononacionalizma propagandys, pasastyprynuoja K. Ulmaņa autoritaruo režima laikā i tuoļuojuos da poš XX godusymta beigu. + +Nu šudīņdīnys Daugpiļs dzeivuotuoju latgaļu irā apmāram 15% (~16 tyukstūšys), tok latgalisku ciļmi tur labtik leluoks procents daugpilīšu. + +== Viesture == +* '''XII gs.''' — viesturis olūtūs pīmynāta senejūs latgaļu piļs [[Naujine]] (''Novena''). +* '''1275 g.''' — [[Livonejis ordyna magistris]] [[Ernsts fon Ratsenbergs]] (''Ernst von Ratsenberg'') latgaļu piļs Naujinis vītā suoc stateit myurini pili - [[Dynaburgs|Dynaburgu]] (''Dünaburg''). Itū godu īskaita par Daugpiļs mīsta īstateišonys godu. +* '''1277 g.''' — [[Lītaunīki|lītaunīku]] [[kunigaikštis]] [[Traideņs]] (''Traidenis'') kreit viersā Dynaburgam. +* '''1312 g.''' — lītaunīki aizjam i iznycynoj Dynaburgu. +* '''1313 g.''' — Livonejis ordyna magistrys [[Gerhards fon Jorke]] (''Gerhard von Jorke'') atjaunynoj Dynaburgu. +* '''1403 g.''' — lītaunīku kunigaikštis [[Vītauts]] (''Vytautas'') kreit viersā Dynaburgam i jū iznycynoj. [[Vuocīši|Vuocīšu]] [[Brūninīks|brūninīki]] atdaboj piļs i jū atjaunynoj. +* '''1418 g.''' — lītaunīku kunigaikštis Vītauts otkon kreit viersā Dynaburgam i jū nūdadzynoj. +* '''1481 g.''' — [[Krīveja|Krīvejis]] [[kunigaits]] [[Ivans III]] aizjam Dynaburgu i jū iznycynoj. +* '''1559 g.''' — Dynaburgu par 700 000 [[Daļders|daļderu]] īmej [[Puoleja|Puolejis]] [[Kieneņš|kieneņam]] [[Zigizmunds II Augusts|Zigizmundam II Augustam]]. +* '''1561 g.''' — Dynaburgs teik par [[Inflaņteja|Inflaņtejis]] centru. +* '''1577 g.''' — [[Ivans Borgais|Ivana Borguo]] vodomi [[Krīvi|krīvu]] karapulki iznycynoj Dynaburgu. Pili atjaunynoj cytā vītā - 18 km zamyn pa Daugovu pi [[Šyuneica|Šyuneicys]] ītakys [[Daugova|Daugovā]]. +* '''1582 g.''' — Dynaburgam daškiertys [[Magdeburga tīseibys]] ([[mīsta tīseibys]]). +* '''1625 g.''' — [[Jezuiti|jezuitu]] [[kleštors]] īstota Dynaburgā školu, ite pyrmuo škola [[Latgola|Latgolā]]. +* '''1626 g.''' — [[Švedi|švedu]] kieneņš [[Gustavs II Adoļfs]] rauga aizjiems Dynaburgu, a [[Smolenskys|Smolenska]] karaviersinīks [[Aleksandrys Goņsevskis]] nūgrīž [[Viersākritīņs|viersākritīni]]. +* '''1656 g.''' — Dynaburgu aizjam [[Krīveja|Krīvejis]] [[cars]] [[Aleksejs Mihailovičs]]. +* '''1656-1667 g.''' — Dynaburgu puorsauc vuordā [[Borisoglebskys|''Borisoglebskys'']] (''Борисоглебск''). +* '''1667 g.''' — Krīveja atdūd Dynaburgu Puolejai. +* '''1772 g.''' — Dynaburgu daškir Krīvejai. +* '''1794 g.''' — Kosciuškys sasaceļšonys laikā puoļu sasacāluoji, vodomi generala Oginska, īkreit Dynaburgā i nūdadzynoj jū da pamatu. +* '''1810 g.''' — Dynaburgā pastateita jauna pyrmuos klasis styprūtne, kam Napoleona Bonaparta karapulki īkreit Krīvejā. +* '''1812 g.''' — piec garu ceikstīņu Napoleona armeja aizjam i nūdadzynoj styprūtni. +* '''1813 - 1827 g.''' — styprūtnis stateiba suocama nu jauna. +* '''1826 g.''' — suokts stateit Jaunais Forštats. +* '''1831 g.''' — Greiva daškierta Daugpilei (Vitebska gubernejai), tok par 18 godu deļ nazynomu īmešļu daškierta atpakaļ Kūrzemis gubernejai. +* '''1833-1841 g.''' – pastateita Daugpiļs sorgdamba. +* '''1849 g.''' — Greiva otkon atškierta nu Daugpiļs. +* '''1855 g.''' — Pīterburgā apstyprynoj jaunu Dynaburga raisteibys planu, kurymā paradzāts stateit niulejū Daugpiļs Jaunstateibys (''Новое Строение'') rajonu. +* '''1856 g.''' — Jaunstateibā pastateita dzeļžaceļa vagonu remontdareitova (šudiņ - pasajāmums ''Lokomotivs''). +* '''1858-1861 g.''' — pastateita [[Reigys-Daugpiļs dzeļžaceļš|dzeļžaceļa lineja Reiga-Dynaburgs]] — pyrmais dzeļžaceļš [[Latgola|Latgolā]] +* '''1861 g.''' — atdareita [[Reigys-Daugpiļs dzeļžaceļš|dzeļžaceļa lineja Reiga-Dynaburgs]]. +* '''1860-1862 g.''' — caur Dynaburgu stateita dzeļžaceļa lineja Pīterburgs-Varšova. +* '''1893 g.''' — pa Krīvejis imperatora Alaksandra III riedejumam Dynaburga puorsauc vordā ''Dvinsk'' (''Двинск''). +* '''1893 g.''' — pastateita Martina Lutera ļutaru bazneica. +* '''1902 g.''' — pastateita Sv. Marejis katuoļu bazneica. +* '''1905 g.''' — pastateita Borisa i Gleba pravoslavu katedrale. +* '''1920 g.''' — Dvinsku puorsauc vuordā ''Daugavpils'' — ite senejuo latgaļu pasauka, damāruota latvīšu volūdai. +* '''1935 g.''' — atdareits tylts nu Daugpiļs iz Greivu — pyrmais Baļtejis vaļsteibuos tārauda tylts. +* '''1937 g.''' — pastateits Vīneibys noms. +* '''1953 g.''' — Greivu otkon daškir Daugpilei. +* '''1959 g.''' — centrā pastateits pyrmais Daugpilī pīcstuoviņs kuorms. +* '''1959 g.''' — īstateita Kimiskuos škīznys taiseitova, jei pasadora par vysuleluokū taiseitovu Latvejis SSR teritorejā. +* '''1961 g.''' — aizsuokta Daugpiļs Kryžu rajona stateiba. +* '''1965 g.''' — Esplanada rajonā pastateits pyrmais Daugpilī deveņstuoviņs kuorms. +* '''1989 g.''' — dabeigts stateit Vīneibys tylts. + +== Daugpiļs mīsta dalis == +Pa [[Daugova|Daugovys]] lobajai molai izalikaliejušys itaidys mīstadalis: +{|class="standard" +|'''&nbsp;Pasauka latgaliskai&nbsp;'''||'''&nbsp;Pasauka latvyskai&nbsp;'''||'''&nbsp;Pasauka krīvyskai&nbsp;''' +|-- +|[[Azarmale]]||''Ezermala''||''Эзермала'' +|-- +|[[Centris (Daugpiļs)|Centris]]||''Centrs''||''Центр'' +|-- +|[[Čerepova]]||''Čerepova''||''Черепово'' +|-- +|[[Dzeļzine]]||''Dzelzceļnieks''||''Железка'' +|-- +|[[Dzyntari]]||''Dzintari''||''Дзинтари'' +|-- +|[[Esplanada]]||''Esplanāde''||''Эспланада'' +|-- +|[[Gajoks]]||''Gajoks''||''Гаёк'' +|-- +|[[Jaunraipole]]||''Jaunā Forštate''||''Первомайка'' +|-- +|[[Jaunstate]]||''Jaunbūve''||''Новостройка'' +|-- +|[[Jaunstropi]]||''Jaunstropi''||''Новые Стропы'' +|-- +|[[Kimeja]]||''Ķīmija''||''Химия'' +|-- +|[[Kryžauka]]||''Križi''||''Крыжи'' +|-- +|[[Mozstropi]]||''Mazstropi''||''Малые Стропы'' +|-- +|[[Paguļāni]]||''Mežciems''||''Погулянка'' +|-- +|[[Raipole]]||''Vecā Forštate''||''Старый Форштадт'' +|-- +|[[Rugieli]]||''Ruģeļi''||''Ругели'' +|-- +|[[Styprūtne]]||''Cietoksnis''||''Крепость'' +|-- +|[[Vacstropi]]||''Vestropi''||''Старые Стропы'' +|-- +|[[Vydsguļāni]]||''Viduspoguļanka''||''Средняя Погулянка'' +|-- +|[[Vyzbuli]]||''Vizbuļi''||''Визбули'' +|} +<br> +Pa [[Daugova|Daugovys]] kairajai molai izalikaliejušys itaidys mīstadalis: +{|class="standard" +|'''&nbsp;Pasauka latgaliskai&nbsp;'''||'''&nbsp;Pasauka latvyskai&nbsp;'''||'''&nbsp;Pasauka krīvyskai&nbsp;''' +|-- +|[[Greiva]]||''Grīva''||''Грива'' +|-- +|[[Judauka]]||''Judovka''||''Юдовка'' +|-- +|[[Kalkuni (Daugpiļs)|Kalkuni]]||''Kalkūni''||''Калкуны'' +|-- +|[[Liginiškys]]||''Liginišķi''||''Лигинишки'' +|-- +|[[Niderkuni]]||''Nīderkūni''||''Нидеркуны'' +|} + +== Slavvītys == +Arhitekturys pīminiekli: +* [[Daugpiļs styprūtne|Daugpiļs styprūtne]] +* [[Daugpiļs Dīvamuotis bazneica|Jumprovys Marejis (Dīvamuotis) bezvaineiguos ījimšonys Romys katuoļu bazneica]] +* [[Daugpiļs Sv. Pītera i Puovula bazneica|Sv. Pītera i Puovula Romys katuoļu bazneica]] +* [[Daugpiļs Martina Lutera bazneica|Martina Lutera evaņgeliskuo ļutaryskuo bazneica]] +* [[Daugpiļs Borisa i Gleba katedrale|Borisa i Gleba pravoslavu katedrale]] +* [[Daugpiļs Aleksandra Nevska bazneica|Aleksandra Nevska pravoslavu bazneica]] +* [[Daugpiļs Dīvamuotis gluobis bazneica|Dīvamuotis gluobis pravoslavu bazneica]] +* [[Daugpiļs sinagoga]] +* [[Daugpiļs nūvodtēmis i muokslys muzejs|Daugpiļs nūvodtēmis i muokslys muzeja]] [[kuorms]], [[jugendstiļs]] +* [[Vīneibys noms]] + +Vuiceibys i kulturys īstatis: +* [[Daugpiļs universitets]] +* [[Daugpiļs teatris]] +* [[Daugpiļs nūvodtēmis i muokslys muzejs]] + +Sporta īstatis: +* [[Daugpiļs ladshale]] + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of Denmark.svg|25x15px|Daneja]] Haderslevs, [[Daneja]]- nu 1993 g. +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Radoms, [[Puoleja]] - nu 1993 g. +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] Naro-Fominskys, [[Krīveja]] — nu 1997 g. +| [[Fails:Flag of Italy.svg|25x15px|Italeja]] Ferara, [[Italeja]] — nu 1998 g. +|- +| [[Fails:Flag of Sweden.svg|25x15px|Švedeja]] Motala, [[Švedeja]] — nu 1998 g. +| [[Fails:Flag of Belarus.svg|25x15px|Boltkrīveja]] [[Vicebskys]], [[Boltkrīveja]] — nu 1998 g. +| [[Fails:Flag of Israel.svg|25x15px|Izraeļs]] Ramla, [[Izraeļs]] — nu 2003 g. +| [[Fails:Flag of the People's Republic of China.svg|25x15px|Kineja]] Harbins, [[Kineja]] — nu 2003 g. +|- +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] [[Pīterpiļs]], [[Krīveja]] — nu 2004 g. +| [[Fails:Flag of Lithuania.svg|25x15px|Lītova]] [[Paneviežs]], [[Lītova]] — nu 2004 g. +| [[Fails:Flag of Ukraine.svg|25x15px|Ukraina]] Harkovs, [[Ukraina]] — nu 2008 g. +|} + +== Nūvodnīki == +Daugpilī dzymuši: +* [[Rihards Eigims|Eigims Rihards]] — zeimeigs Latgolys politiks +* [[Gžegožs Fiteļbergs|Fiteļbergs Gžegožs]] (''Grzegorz Fitelberg'') — puoļu dirigents i komponists, ''[[Mlada Polska]]'' bīdrys +* [[Abrahams Izāks Kuks|Kuks Abrahams Izāks]] ('''אברהם יצחק הכהן קוק''') — pyrmais [[Aškenazi|aškenazu]] golvonais [[rabins]] [[Britu Palestins|Britu Palestinā]] +* [[Vaļds Lauskys|Lauskys Vaļds]] — zeimeigs Latgolys politiks +* [[Solomons Mihoelss|Mihoelss Salomons]] ('''שלמה מיכאָעלס''', ''Соломон Михайлович Михоэлс'') — žydu teatra režisors +* [[Vladislavs Ragiņs|Ragiņs Vladidslavs]] (''Władysław Raginis'') — Puolejis 2 pasauļa kara varūņs (''Virtuti Militari'') +* [[Marks Rotko|Rotko Marks]] (''Mark Rothko'') — pasaulī izslivs tapātuojs, [[Abstraktais ekspresionizmys|abstraktuo ekspresionizma]] klasiks +* [[Aļfreds Rubiks|Rubiks Aļfreds]] — Latvejis viesturē zeimeigs politiks +* [[Uļjana Semjonova|Semjonova Uļjana]] — izslyvuse [[Basketbols|basketboliste]] +* [[Stanislavs Svanevičs|Svanevičs Stanislavs]] (''Stanisław Swianiewicz'') — puoļu ekonomists i viesturnīks + +Dzymuši cytur, Daugpilī vuicejušīs, dzeivuojuši, darejuši: +* [[Eliezers Ben-Jehuda|Ben-Jehuda Eliezers]] ('''אֱלִיעֶזֶר בֶּן־יְהוּדָה''') — myuslaiceiguos žydu volūdys (vaļstiskuos volūdys Izraelī) atjaunynuotuojs +* [[Raiņs]] — vysuzeimeguokais latvīšu ailinīks, rakstejs i latgaliskai +* [[Anna Rancāne|Rancāne Anna]] — ailineica, vīna nu vysulobuokūs latgaļu liriku +* [[Valereja Seile|Seile Valereja]] — latgaļu vuiceibys dareituoja, Latgolys vuiceibys raisteibys vadynuotuoja + +== Galereja == +<gallery> +File:Dvinsk 1912.jpg|Daugpiļs 1912 godā +File:Downtown Daugavpils (Dvinsk) early 20th century.jpg|Daugpiļs 20 godusymta suokuos +File:Daugavpils Immaculate Conception Roman Catholic Church.jpg|Daugpiļs Jaunovys Marejis bezvaineiguos ījimšonys Romys katuoļu bazneica +File:Centra baznīca.jpg|Daugpiļs. Vierīņs iz [[Daugpiļs Sv. Pītera i Puovula bazneica|Sv. Pītera i Puovula Romys katuoļu bazneicys]] +File:Eclectic house in Daugavpils Viestura1.JPG|Jugendstiļa arhitektura Daugpilī +File:Daugavpils University square.jpg|Daugpiļs Universiteta laukums +File:Daugavpils railway station4 LV.JPG|Daugpiļs stacejis kuorms +File:Daugavpils road view1 LV.jpg|Daugpiļs tramvajs. +</gallery> + +== Teiklavītys == +* http://www.flashearth.com/?lat=55.883333&lon=26.533333&z=15&r=0&src=ggl +* http://maps.google.com/maps?ie=UTF8&z=11&ll=55.897261,26.572495&spn=0.260252,0.63858&t=h&om=1 +* http://tools.wikimedia.de/~magnus/geo/geohack.php?params=55_53_N_26_32_E_region:LV_type:city +* http://www.mapsengine.com/daugavpils/?lang=1&dl= + +{{Nadabeigts rakstīņs}} + +{{Latvejis mīsti}} +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Daugpiļs| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + 7popq02wnobl8ok7r55acppbmj5kksl + + + + Daugpiļs nūvods + 0 + 95 + + 31659 + 29025 + 2016-11-03T02:12:19Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Daugpiļs nūvods +| zemislopa = Daugavpils novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Daugavpils municipality COA.png +| gerba_pasauka = Daugpiļs nūvoda gerbs +| gerba_plotums = 80px +| karūga_atvaigs = Flag of Daugavpils Municipality.png +| karūga_pasauka = Daugpiļs nūvoda karūgs +| centrys = Daugpiļs +| pluots = 1 877,6 +| dzeivuotuoju_skaits = 28 733 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 15,3 +| īstateits = 2009 +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.dnd.lv +}} + +'''Daugpiļs nūvods''' irā [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolys]] dīnavydūs i [[Sieleja|Sielejis]] reitūs, kas sasadora nu 19 pogostim. Nūvoda administrativais centrys irā [[Daugpiļs]], kas kai republikys mīsts navā īkļauts nūvoda sadorā. Leluokuo apdzeivuotuo vīta — [[Vacstropi]]. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Daugpiļs nūvods| ]] + h08k5yvj0148qryz08kp3u91zzadgix + + + + Daugpiļs nūvodtēmis i muokslys muzejs + 0 + 96 + + 28158 + 17101 + 2013-03-07T17:52:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2026892]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Daugavpils Regional and Art Museum01.JPG|right|thumb|Daugpiļs nūvodtēmis i muokslys muzeja kuorms]] +'''Daugpiļs nūvodtēmis i muokslys muzejs''' — golvonais [[muzejs]] [[Daugpiļs|Daugpilī]], vīns nu pošu leluokūs i vacuokūs muzeju [[Latgola|Latgolā]]. + +Muzeja pyrmaguojieja beja [[Latvejis vaļstiskais viesturis muzejs|Latvejis vaļstiskuo viesturis muzeja]] Daugpiļs atdaļa. Juos organizātuojs — [[tapātuojs]], [[Daugpiļs vaļstiskais školuotuoju instituts|Daugpiļs vaļstiskuo školuotuoju instituta]] docātuojs [[Oskars Kalējs]]. 1938 godā atdaļa tyka par sovrūču muzeju, i O. Kalējs beja juos pyrmais direktors (1938 - 1941 g.). + +Daugpiļs nūvodtēmis i muokslys muzeja [[kuorms]] irā [[arhitekturys pīminieklis]] – stateits 1883 godā [[Jugendtiļs|jugendstilī]]. + +[[Kategoreja:Daugpiļs]] + brm166kti2obtgsap153fqgk0i6uitq + + + + Daugpiļs Universitets + 0 + 97 + + 31857 + 28159 + 2017-01-10T21:42:36Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[Fails:Daugavpils University.JPG|175px|thumb|DU korpuss Vīneibys ūļneicā]] +[[Fails:Daugavpils University square.jpg|175px|thumb|Prīškys laukums]] +'''Daugpiļs Universitets''' (latvīšu: ''Daugavpils Universitāte'', krīvu: ''Даугавпилсский университет'') — [[universitets]] [[Daugpiļs|Daugpilī]], pats lelais i vysuzeimeigais vuiceibys īstots [[Latgola|Latgolā]], vīna nu diveju regiona augstškolu (sūpluok [[Rēznis augstškola|Rēznis Augstškolys]]), vīneigais sovrūčais universitets Latgolā. + +== Viesture == +* '''1923 g.''' — īstateits universiteta pyrmaguojiejs – Daugpiļs Vaļstiskais školuotuoju instituts, dareja da 1940 g. +* '''1952 g.''' — īstateits Daugpiļs Pedagogiskais instituts. +* '''1993 g.''' — Pedagogiskajam instituts daboj vydtautyskys akreditacejis i teik par Daugpiļs Pedagogiskū universitetu. +* '''2002 g.''' — puorsaukts par Daugpiļs Universitetu. + +[[Kategoreja:Daugpiļs]] +[[Kategoreja:Vuiceiba]] + qz38q9k7nv76yrwa62biusqfumaesor + + + + Dekteri + 0 + 98 + + 29782 + 22418 + 2013-04-15T00:19:07Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Dekteri''' — sola [[Rēznis nūvods|Rēznis nūvoda]] [[Nautrānu pogosts|Nautrānu pogostā]]. + +Koordinatys: 56° 45' 0" N, 27° 27' 0" E. + +== Nūruodis == +* [http://encarta.msn.com/mapof_6792098/Dekteri.html Dekteri zemislopā] +Dekteru paceļnīkatvaigi: [http://www.flashearth.com/?lat=56.75&lon=27.45&z=12.5&r=0&src=ggl] +* [http://www.maplandia.com/latvia/ludzas/dekteri/] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Nautrānu pogosts]] +[[Kategoreja:Rēznis nūvoda solys]] +[[Kategoreja:Latvejis solys]] + 7qp29cujtlqxmn1gw6lpcrer070scoo + + + + Dekters + 0 + 99 + + 10406 + 1407 + 2011-03-21T08:50:34Z + + DEagleBot + 35 + + + Bot: Automated text replacement (-[[Category:Wp/ltg]] +) + wikitext + text/x-wiki + '''Dekters''' (pa eistyn. vuordam ''Donats Myurinīks'', 1901 — 1963) — latgaļu bazneicnīks, rakstinīks. Dzims [[Nautrānu pogosts|Nautrānu]] pog. Dekteru solā. Nu 1944 g. dzeivuojs ASV. Romans ''Dorvys cīma ļauds'' (1970). Pjesa ''Kuozys'' (1958). + hg88ogecr98ghy6s09n1g23kuyhxv6o + + + + Dinaburg FC + 0 + 100 + + 28160 + 17887 + 2013-03-07T17:52:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 18 interwiki links, now provided by [[d:|Wikidata]] on [[d:q770492]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Dinaburg FC''' aba '''Dinaburg''' — [[Daugpiļs]] [[Futbols|futbola]] klubs, [[UEFA kausa sasaveicīņs|UEFA kausa]], [[Intertoto kausa sasaveicīņs|Intertoto kausa]], [[Baļtejis kauss|Baļtejis kausa]], [[Latvejis kauss|Latvejis kausa]], [[Latvejis Viersligys]] sasaveicīņu dalinīks. + +== Viesture == +* 1990 g. klubs īstateits, pyrmuo pasauka - ''Celtnieks'' ("Stateibnīks" latvīšu vol.) +* 1992 g. puorsaukts par ''Daugpiļs BJFK'' (Daugpiļs bārnu i jaunīšu futbola klubs) +* 1993 g. puorsaukts par Daugpiļs ''Ausekli'' +* 1995 g. puorsaukts par Daugpiļs ''Vilan'' +* 1996 g. puorsaukts niulejā vuordā - par ''Dinaburg'' (''Dynaburgs'' - vīna nu viesturiskūs Daugpiļs mīsta pasauku) + +Komanda 2 reizis kaitiejuse [[Latvejis futbola kauss|Latvejis futbola kausa]] finalā, nazcik sezonu kaitiejuse [[UEFA kausa sasaveicīņs|UEFA kausa sasaveicīnī]] i [[Intertoto kauss|Intertoto kausa sasaveicīnī]]. 2007 godu ''Dinaburg'' aizsuoce pīsadaleidams [[Baļtejis futbola liga|Baļtejis futbola ligā]], tok piec pyrmuos ailis beja atstateita nu ligys, kam cēlēs aizguodi, ka rezultats dasarunuots. + +== Sātvīta == +Kluba stadions - ''Celtnieks'' ("Stateibnīks") [[Daugpiļs|Daugpilī]] (4000 nūsavāruoju vītu). + +== Dasnāgumi i aizjimtuos vītys == +* ''Latvejis kauss'' 1991 +* Aizjimtuos vītys [[Latvejis futbola Viersliga|Latvejis futbola Viersligā]]: +** 1996 g. - 3 vīta; +** 1997 g. - 3 vīta; +** 1998 g. - 4 vīta; +** 1999 g. - 4 vīta; +** 2000 g. - 4 vīta; +** 2001 g. - 4 vīta; +** 2002 g. - 4 vīta; +** 2003 g. - 4 vīta; +** 2004 g. - 4 vīta; +** 2005 g. - 4 vīta; +** 2006 g. - 4 vīta. + +== Nūruodis == +* [http://www.dinaburg.com Daugpiļs futbola kluba ''Dinaburg'' teiklavīta] + +[[Kategoreja:Daugpiļs]] + rotc20hq9gnxwz6lsoyhgbvfnm3bbnw + + + + Dorūtne + 0 + 101 + + 10408 + 1444 + 2011-03-21T08:50:54Z + + DEagleBot + 35 + + + Bot: Automated text replacement (-[[Category:Wp/ltg]] +) + wikitext + text/x-wiki + Vacūs formu izglobuošona latgalim dūd parūču vareibu lūkūt škiert nazcik vuordu puoru: +* ''lauzt – lauzšu, lauzeit – lauzeišu''; +* ''kūst – kūsšu, kūdeit – kūdeišu''; +* ''spraust – sprausšu, spraudeit – spraudeišu'' + +Samāram - latv.: +* ''lauzt – lauzīšu'' i taipoš ''lauzīt – lauzīšu''; +* ''kost – kuodīšu'' i taipoš ''kodīt – kuodīšu''; +* ''spraust – spraudīšu'' i taipoš ''spraudīt – spraudīšu''. + d5c4fj1s9vhe1zz3g8rqufhzexk3l88 + + + + Dreidzs + 0 + 102 + + 30228 + 28161 + 2014-02-07T21:39:33Z + + Rschen7754 + 1689 + + rm deleted image + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Dreidzs +| atvaiga_pasauka = Dridzis.jpg +| atvaiga_aprakstejums = Dreidža vierīņs +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd =55 | latm =58 | lats =0 | latNS = N +| longd =27 | longm =16 | longs =0 | longEW = E +| nūvods = Kruoslovys nūvods +| pluots = 7,532 +| pošlelais_garums = 9,8 +| vydyskuo_dzilīne = 12,8 +| pošleluo_dzilīne = 65,1 +| vydums = 0,0097 +| augstums = 159,2 +| iztece = Kovšyka +| satecis_baseins = 1710 +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = 9 +| dzeivojamys_vītys = Sorkonais Rogs, Pīzāni, Leiši +| cytys pasaukys = +}} + +'''Dreidzs''' — azars Latgolys dīnavydu daļā [[Latgolys augstaine|Latgolys augstainē]], Kruoslovys nūvoda Skaista pogostā, iz reitim nu Dagdys – Kruoslovys ceļa, pi [[Saulis kolni|Saulis kolnu]]. Vysudziļais azars Latgolā i Latvejis Republikys teritorejā – Dreidža pošlelais dziļums dasnādz 65,1 m. + +Vydyskais dziļums 12,8 m. Viersa pluots 753 ha, garums da 9,8 km, plotums da 2,4 km. + +Azara dybyns ar daudzi dūbu, kur nakur akmiņuots, kur nakur smiļkšuots, leičūs dyuņuots. Azarmola stuovona, dīnavydu pusē lāvuoka. Sakluokī leiči aizauguši. Dreidža forma izstīpta, jis tur daudzi leiču i 9 azarsolys (Bernātu, Līpu, Ūzulu, Apšu, Zamuo, Upis, Pizānu i ct.). Pošleluo azarsola – Bernātu, juos pluots 13,9 ha. + +Dreidzī ītak Čeņčupe, azaram irā puortaka iz Otu vysu godu, a iz Siveru – tik polu laikā). + +Dreidzs īīt kompleksajā dobys nūlīgtinī. Azara molā pasacālušī [[Saulis kolni]] – vīna nu senejūs latgaļu pošsvareigūs svātvītu. + +Azara zivs - asari, plauži, leidakys, raudys. + +[[Kategoreja:Latgolys azari]] + kzxu5scz706on46ai1e25lwuucxubym + + + + Dynaburgs + 0 + 103 + + + 1492 + 1491 + 2011-03-19T13:02:50Z + + SPQRobin + 2 + + + 18 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Daugpiļs]] + ox51smjbxyn6dkjgva8ovxn98kgam18 + + + + Dzeļžabetons + 0 + 105 + + 28162 + 23422 + 2013-03-07T17:53:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 39 interwiki links, now provided by [[d:|Wikidata]] on [[d:q184190]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Weidatalbruecke 2005-07-30.jpg|thumb|250px|Dzeļžabetona konstrukcejis tylta stateibā]] +'''Dzeļžabetons''' — betons, styprynuots ar tāryuda armaturu. Betons i tāryuds nu temperaturys kūna vīnaiži paplatynoj i aizstīpj, gona labai sagiun, dieļ tuo kūna vīnaiži deformejas. Betons i armatura irā izškireigu mehanisku soveibu — betona styprums spīdīnī irā 10-20 reižu leluoks kai stīpšonuos iztvereiba, dieļ tuo styprynuojums irā eipaši styprys kūpā. + +Dzeļžabetonu lītoj kuormu i cytu statīņu stateibā, eipaši tyltu. Sovetu laikā Latgolā, Krystapilī dareja Dzeļžabetona konstrukceju dareitova. + +[[Kategoreja:Stateiba]] + 21xqcw3c5py83x4hog8b2wegm8lax9l + + + + Dzeļžaceļš Reiga — Daugpiļs + 0 + 106 + + 28163 + 20098 + 2013-03-07T17:53:34Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800907]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Riga Dvinsk Station.jpg|right|thumb|[[Dynaburga staceja Reigā|Daugpiļs (Dynaburga) dzeļžaceļa staceja Reigā]], pastateita XIX gs. beiguos]] +[[Fails:Daugavpils railway station4 LV.JPG|right|thumb|[[Daugpiļs dzeļžaceļa staceja]] šudiņ]] +'''Dzeļžaceļš [[Reiga]] — [[Daugpiļs]]''' irā poša vacuokuo dzeļžaceļa lineja Latgolā i Latvejis Republikys teritorejā. + +Pastateits 1858-1861 g., atdareits 1861 g. septembra 25 d. kai dzeļžaceļa lineja ''Reiga — Dynaburgs''. Garums 218 km. + +== Stacejis i nūstuošonys == +Reigys - Daugpiļs dzeļžaceļa stacejis: +{| class="wikitable" style="text-align: left;" +<tr><td>Vuocyskuo stacejis pasauka 1861 g.<td>Latvyskuo stacejis pasauka 2007 g.<td>Latgaliskuo stacejis pasauka<td>Sativis atmeja 2007 g.<td>Atostums nu Reigys<td>Atostums da Daugpiļs<br /> +<tr><td>''Riga''<td>''Rīga''<td>'''Reiga'''<td>Apleikmīsta (elektrejviļcīni), vītejuo (dizeļviļcīni), tuoļsative<td>0<td>218 +<tr><td>''Kurtenhof''<td>''Salaspils''<td>'''Solyspiļs'''<td>Apleikmīsta, vītejuo, tuoļsative<td>18<td>200 +<tr><td>''Oger''<td>''Ogre''<td>'''Uogre'''<td>Apleikmīsta, vītejuo, tuoļsative<td>34<td>184<br /> +<tr><td>''Ringmunhof''<td>''Lielvārde''<td>'''Lelvuords'''<td>Apleikmīsta, vītejuo, tuoļsative<td>51<td>167<br /> +<tr><td>''Remershof''<td>''Skrīveri''<td>'''Skreiveri'''<td>Apleikmīsta, vītejuo, tuoļsative<td>72<td>146<br /> +<tr><td>''Kockenhusen''<td>''Koknese''<td>'''Kūknuojs'''<td>Vītejuo, tuoļsative<td>94<td>124<br /> +<tr><td>''Stockmanshof''<td>''Pļaviņas''<td>'''Pļavenis'''<td>Vītejuo, tuoļsative<td>112<td>106<br /> +<tr><td>''Kreuzburg''<td>''Krustpils''<td>'''Krystapiļs'''<td>Vītejuo, tuoļsative<td>129<td>89<br /> +<tr><td>''Treppenhof''<td>''Trepe''<td>'''Trepe'''<td>Vītejuo, tuoļsative<td>146<td>72<br /> +<tr><td>''Livenhof''<td>''Līvāni''<td>'''Leivuons'''<td>Vītejuo, tuoļsative<td>158<td>60<br /> +<tr><td>''Tsargrad''<td>''Jersika''<td>'''Jersika'''<td>Vītejuo, tuoļsative<td>169<td>49<br /> +<tr><td>''Nitzgal''<td>''Nīcgale''<td>'''Neicgaļs'''<td>Vītejuo, tuoļsative<td>186<td>32<br /> +<tr><td>''Lixna''<td>''Līksna''<td>'''Leiksna'''<td>Vītejuo, tuoļsative<td>203<td>15 +<tr><td>''Dünaburg''<td>''Daugavpils''<td>'''Daugpiļs'''<td>Vītejuo, tuoļsative<td>218<td>0 +|} + +Reigys - Daugpiļs dzeļžaceļa stacejis i nūstuošonys: +{| class="wikitable" style="text-align: left;" +<tr><td>Latvyskuo pasauka 2007 g.<td>Latgaliskuo pasauka<td>Staceja ci nūstuošona<td>Sativis atmeja 2007 g.<td>Atostums nu Reigys<td>Atostums da Daugpiļs<br /> +<tr><td>''Rīga''<td>'''Reiga'''<td>Staceja<td>Apleikmīsta (elektrejviļcīni), vītejuo (dizeļviļcīni), tuoļsative<td>0<td>218 +<tr><td>''Vagonu parks''<td>'''Vagonparks'''<td>Nūstuošona<td>Apleikmīsta (elektrejviļcīni), vītejuo (dizeļviļcīni), tuoļsative<td> +<tr><td>''Jāņavārti''<td>'''Juoņavuorti'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Daugmale''<td>'''Daugmale'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Šķirotava''<td>'''Škiruotova'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Gaisma''<td>'''Gaisma'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Rumbula''<td>'''Rumbula'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Dārziņi''<td>'''Duorzeni'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Dole''<td>'''Duole'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Salaspils''<td>'''Solyspiļs'''<td>Staceja<td>Apleikmīsta, vītejuo, tuoļsative<td>18<td>200 +<tr><td>''Saulkalne''<td>'''Saulkaļne'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Ikšķile''<td>'''Ikškile'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Jaunogre''<td>'''Jaunuogre'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Ogre''<td>'''Uogre'''<td>Staceja<td>Apleikmīsta, vītejuo, tuoļsative<td>34<td>184<br /> +<tr><td>''Pārogre''<td>'''Puoruogre'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Ciemupe''<td>'''Cīmupe'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Ķegums''<td>'''Kegums'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Lielvārde''<td>'''Lelvuords'''<td>Staceja<td>Apleikmīsta, vītejuo, tuoļsative<td>51<td>167<br /> +<tr><td>''Kaibala''<td>'''Kaibala'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Jumprava''<td>'''Jumprova'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Dendrārijs''<td>'''Dendrarejs'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Skrīveri''<td>'''Skreiveri'''<td>Staceja<td>Apleikmīsta, vītejuo, tuoļsative<td>72<td>146<br /> +<tr><td>''Muldakmens''<td>'''Muldakmiņs'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Aizkraukle''<td>'''Aizkraukle'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Koknese''<td>'''Kūknuojs'''<td>Vītejuo, tuoļsative<td>94<td>124<br /> +<tr><td>''Alotene''<td>'''Olūtine'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Pļaviņas''<td>'''Pļavenis'''<td>Staceja<td>Vītejuo, tuoļsative<td>112<td>106<br /> +<tr><td>''Ozolsala''<td>'''Ūzulsola'''<td>Nūstuošona<td>Apleikmīsta, vītejuo, tuoļsative<td> +<tr><td>''Krustpils''<td>'''Krystapiļs'''<td>Staceja<td>Vītejuo, tuoļsative<td>129<td>89<br /> +<tr><td>''Trepe''<td>'''Trepe'''<td>Staceja<td>Vītejuo, tuoļsative<td>146<td>72<br /> +<tr><td>''Līvāni''<td>'''Leivuons'''<td>Staceja<td>Vītejuo, tuoļsative<td>158<td>60<br /> +<tr><td>''Jersika''<td>'''Jersika'''<td>Staceja<td>Vītejuo, tuoļsative<td>169<td>49<br /> +<tr><td>''Nīcgale''<td>'''Neicgaļs'''<td>Staceja<td>Vītejuo, tuoļsative<td>186<td>32<br /> +<tr><td>''Līksna''<td>'''Leiksna'''<td>Staceja<td>Vītejuo, tuoļsative<td>203<td>15 +<tr><td>''381. kilometrs''<td>'''381-ais kilometris'''<td>Nūstuošona<td>Vītejuo, tuoļsative<td> +<tr><td>''383. kilometrs''<td>'''383-ais kilometris'''<td>Nūstuošona<td>Vītejuo, tuoļsative<td> +<tr><td>''Mežciems''<td>'''Mežcīms'''<td>Nūstuošona<td>Vītejuo, tuoļsative<td> +<tr><td>''Daugavpils''<td>'''Daugpiļs'''<td>Staceja<td>Vītejuo, tuoļsative<td>218<td>0 +|} + +{{Nadabeigts rakstīņs}} + 2ccm5w1y4yp27ivr7s6b2v387jeoc79 + + + + Dzeļžalaiki + 0 + 107 + + 28164 + 26890 + 2013-03-07T17:53:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 100 interwiki links, now provided by [[d:|Wikidata]] on [[d:q11764]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Dzeļžalaiki''' irā [[Pyrmaviesture|pyrmaviesturis]] pūsms, kod reikus suoca gotovūt nu dzeļzs. Zīmeļu Eiropā (kai ari Latvejā) tys periods suocēs ap 6.gs. prīkš Krystus, a nu vysu vairuok arheologiskū ziņu turim nu pādējuo dzeļžalaiku pūsma, kas beja - 5.-10.g.s. piec Krystus. + +Dzeļžalaikūs pasaleilynoj apmetņu skaits Latgolys vītuos: Kiutūs, Cyrma azara krostā (kur senejī latgali īsakuortoj Baltejys suomu pamastā apmetnē, suocūt tū apdzeivuot nu 7.g.s.). Golvonuo tūs laiku dzeivotuoju nūsadarbuošona Latgolā ir zemkūpeiba. Dorba reiki vēļ ir primitivi. + +Ap 8.-10.gs. vairuok suoc audzēt zīmys rudzus, kuri nūmaina mīžus maizis cepšonā. Turpynoj audzēt mozražeigūs, bet pret laika maiņom iztureigūs diveju gryudu vuorpys kvīšus, nu kuru vard bīzū putru (itī kvīši Latvejā audzāti leidz pat 19.g.s.). Ap 5.-9.g.s. Latvejā īvad ruociņus, siej pupys, zierņus. Mads ir vīneigais, kū lītoj iedīņa pasaldynuošonai. Mads i vosks ir īcīneita mainis prece. Cylvāki tic daudzom dobys dīveibom - gunei, pārkiuņam, saulei, mienešam. Pamozom aizasuoc sabīdreibys nūsasluoņuošona. + +Lobi tiemēti dzeļžalaiku pīminiekli saisteiti ar Latgolu voi latgalim irā [[depoziti Sauliskolnā]] (arheologs Vladislavs Urtāns), [[Uoraišu azara piļs]] (arheologs Jānis Apals), piļskolns Ūleņkolnā pi Pļaveņu. Arheologi rokuši ari nazcik senejūs kopulauku - Lejysbytānūs, Ludzys Ūdu kolnā, Ņukšūs pi Pyldys azara. + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Dzelzzzalaiki}} + +[[Kategoreja:Dzeļža laiki| ]] + hquiporvu636qxdg7ihaoaz0z6yhn0d + + + + Dzierkaļu kolns + 0 + 108 + + 28165 + 14577 + 2013-03-07T17:53:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801515]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine kolns + | Pasauka = Dzierkaļu kolns + | Atvaigs = + | Atvaiga māri = 250px + | Aprakstejums = + | Zemislopa = Latveja + | aprakstejuma_izlykums = left + | latd=56 |latm=16 |lats=33 |latNS=N + | longd=27 |longm=39 |longs=43 |longEW=E + | Augstums = 286,3 + | Byusmis vīta = [[Rēznis nūvods]], [[Latveja]] + | Augstaine = [[Latgolys augstaine]] + | Cytys pasaukys = +}} +'''Dzierkaļu kolns''' — [[kaupris]] [[Latgolys augstaine|Latgolys augstainē]], Rēznis nūvoda Kaunatys pogostā, Rāznys Nacionaluo parka teritorejā. Ūtruo pa augstumam (aiz [[Lelais Līpkolns|Leluo Līpkolna]]) Latgolys regiona viersyune pa vyscaureigajam (absolutajam) augstumam — 286 m augšuok jiuru leidzīņa. + +Dzierkaļu kolns aizjam pyrmū vītu iz vyds Latgolys kolnu ([[Kaupris|kaupru]]) pa samiereigajam augstumam – augšuok apleicīnis jis pasaceļ par 89 metri. + +[[Kategoreja:Latgolys kaupri]] + qahuv8cfqkjy6405dufyh34a7cvimt1 + + + + Eduards Voļters + 0 + 109 + + 28166 + 14986 + 2013-03-07T17:54:08Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801341]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Eduards Voļters''' (lītaunīku: ''Eduardas Volteris'', krīvu: ''Эдуард Вольтер'', 1856 — 1941) — etnografs, volūdzininīks, bibliografs, latgaļu folklora aizraksteituojs i tāmātuojs. + +Dzims 1856 g. marta 6 d. Reigā. Studiejs volūdzineibu Leipcigā, beidzs krīvu literaturys studejis Tarbatā, aizastuojs magistra cylu Harkiva universitetā. Nu 1918 g. dzeivuojs Viļnē, bejs Viļnis ļaudyskuos bibliotekys direktors (1918 - 1919), Kaunis centraluos vaļstiskuos bibliotekys vadeituojs i Kaunis mīsta muzeja vadeituojs (1919 - 1922). Bejs vīns nu Lītovys universiteta īstateišonys iniciatoru, piečuok bejs Lītovys universiteta (vāluok - Vītauta Leluo universitets) profesors (1922 - 1933), skaitejs aizviesturis, etnografejis i ct. kursus. + +XIX godusymta beiguos apbraukaliejs lelu Latgolys daļu - [[Daugpiļs apleiciņs|Daugpiļs]], [[Rēznis apleiciņs|Rēznis]] i [[Ludzys apleiciņs|Ludzys]] apleiciņus, aizrakstejs daudzejis latgaļu tautysdzīsmis, duorzeņus i tradicejis. Juos izlaids gruomotā ''Materiali Vitebska gubernejis latvīšu patautys etnografejai'' ("Материалы для этнографии латышского племени Витебской губернии", 1890). + +[[Kategoreja:Latvejys ļauds]] +[[Kategoreja:Lītovys ļauds]] + n84s2zxqwk3njehgp25ji7yx9tfd6nt + + + + Egļukolns + 0 + 110 + + 31917 + 31620 + 2017-03-07T15:20:32Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {{Infoskreine kolns + | Pasauka = Egļukolns + | Atvaigs = Vierins nu Eglukolna.JPG + | Atvaiga māri = + | Aprakstejums = + | Zemislopa = Latveja + | aprakstejuma_izlykums = left + | latd=55 |latm=52 |lats=23 |latNS=N + | longd=26 |longm=19 |longs=49 |longEW=E + | Augstums = 220,1 + | Byusmis vīta = [[Daugpiļs nūvods]], [[Latveja]] + | Augstaine = [[Sielejis augstaine]] + | Cytys pasaukys = +}} +[[Fails:Eglukolna vierinturns.JPG|thumb|Egļukolna vierīņtūrņs]] + +'''Egļukolns''' — [[kaupris]] [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Sveņtis pogosts|Sveņtis pogostā]], poša augstuo viersyune [[Sielejis augstaine|Sielejis augstainē]]. +Kaupra samiereigais augstums — ap 45 m augšuok jiuru leidzīņa. + +Nu Egļukolna viersyunis, iz kurys 2004 godā pastateits 24,6 m augsts vierīņtūrņs, acim pasaruoda skaisti vierīni iz tuoleimys apleicīnis. Redzīs [[Daugpiļs]] mīsts. Saulis dīnuos redzīs net tiveimī [[Lītova|Lītovys]] nūvodi. Apleicejū kaupruotū Daugpiļs nūvoda [[Zemisvierīņs|zemisvierīni]] rudiņ pastreipoj lelais kļovu skaits meža mozaikā. + +Sūpluok vierīņtūrņa stīpās Bruno Jansona īriedeituo Egļukolna dazinis styga ar nazcik vierīņpunktim i atpyutys vītom (dazinis stygys garums — 1,2 km). Napatuoļ irā vysudzydruokais Latvejis azars — Sveņtis azars. + +2014 godā iz Egļukolna atdareita sleižuošonys baza ar sleižu i cytys pastotys randu, 200 m garu slaloma trasu, 100 m garu saimis trasu i snīgrypuļuošonys (braukšonys ar snīgrypulim) trasu. + + +[[Kategoreja:Daugpiļs nūvods]] + +[[Kategoreja:Latgolys doba|Kaupri]] + aze1p9engeaiwj96wlbpvkd1vr0qb00 + + + + Eireja + 0 + 111 + + 32047 + 28168 + 2017-06-19T12:56:00Z + + DARIO SEVERI + 3389 + + Updade inf. from wiki (en) + added inf. from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Éire'''<br />'''Ireland'''<br />'''Eireja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Ireland.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Ireland.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Ireland.svg|300px]] +|- +|| Golvysmīsts || Dublin +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Michael D. Higgins +|- +| Ministru prezidents || Frances Fitzgerald +|- +|| Pluots || 70 273 km² +|- +|| Dzeivuotuoju skaits || 4 761 865 <small>(2016)</small> +|- +|| [[Laika zona]]<br />-vosorā || GMT (UTC​) IST/WEST (UTC+1) +|} +'''Eireja''' (eir.: ''Éire''; angl.: ''Ireland'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + lkrms1ho2c9j8hnfpb4jdq23uohlfy5 + + + + Eistynuo Jezus bazneica + 0 + 112 + + 28169 + 27868 + 2013-03-07T17:54:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 256 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1859]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Eistynuo Jezus Bazneica''' ({{Vol-en|True Jesus Church}}) — ir Vosorysvātku konfesejis kusteibys "Tikai Jezus" (''Jesus Only'') atzaruojums, kurš aizasuocs 1917 godā Pekinā, Kīnā, i kura pīkritieji ir atsasacejuši nu trinitaruos kristīteibys formulys. Eistynuo Jezus Bazneica ir pasauļa mārūga krysteiguo bazneicu savīneiba. 20 godusymtā roduos ari vairuokys teologiskys i praktiskys atškireibys nu Vosorysvātku konfesejis, kuo rezuļtatā daļa pietnīku skaita Harizmatismu par Protestantisma paveidu. Niu ar napilnim 1,6 miļjonim bīdru tei struodoj 45 pasauļa vaļstuos sešūs kontinentūs. Zīmyssvātki i Leldinis nateik svynātys. + +== Desmit doktrinys == +# Svātais Gors +# Kristeišona +# Pādu mozguošona +# Svātuo Komuneja +# Sabata dīna +# Jezus Krystus +# Bībele +# Pesteišona +# Bazneica +# Postoruo dīna + +[[Kategoreja:Religeja]] + 4a16e6hirzsme0ppgo2f6xwzvqz1xet + + + + Eisynuojumu saroksts + 0 + 113 + + 29144 + 27032 + 2013-03-11T10:44:57Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2519934]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + == A == +* [[APN|'''APN''']] - (anglīšu ''Access Point Name'') - [[Datu puorlaida|datu puorlaidis]] [[Datu puorlaidis daīmys punkts|daīmys punkts]] + +== L == +* [[leidz.|'''leidz.''']] - leidzeigai +* [[LPI|'''LPI''']] (latvīšu ''Latgales pētniecības institūts'') - [[Latgolys tiemiešonys instituts]] +* [[LR|'''LR''']] - [[Latvejis Republika]] +* [[LRAA|'''LRAA''']] (latvīšu ''Latgales reģiona attīstības aģentūra'') - [[Latgolys regiona raisteibys agentura]] +* [[LRRA|'''LRRA''']] - [[Latgolys regiona raisteibys agentura]] +* [[ltg|'''ltg''']] - [[Latgola]]; [[latgaļu volūda]] +* [[LTG|'''LTG''']] - [[Latgola]]; [[latgaļu volūda]] +* [[LTI|'''LTI''']] - [[Latgolys tiemiešonys instituts]] +* [[lv|'''lv''']] - [[Latveja]]; [[Latvejis vaļsteiba]]; [[latvīšu volūda]] +* [[LV|'''LV''']] - [[Latveja]]; [[Latvejis vaļsteiba]]; [[latvīšu volūda]] +* [[LVC|'''LVC''']] - [[Latgaļu volūdys centrys]] + +== P == +* [[PR|'''PR''']] (anglīšu ''Public Relations'') - [[ļaudyskuos saitys]] + +[[Kategoreja:Saroksti]] + gnvsmcabqonqceld0zvvo48pf4ekldo + + + + Eliezers Ben-Jehuda + 0 + 114 + + 29913 + 29912 + 2013-06-25T13:41:07Z + + Stiernīts~ltgwiki + 315 + + wikitext + text/x-wiki + [[Fails:BYwork-cropped.jpg|thumb|150px|Eliezers Ben-Jehuda.]] + +'''Eliezers Ben-Jehuda''' (žydu: ''אֱלִיעֶזֶר בֶּן־יְהוּדָה''; anglīšu: ''Eliezer Ben-Yehuda''; 1858.07.01 — 1922.12.16) — myuslaiceiguos [[žydu volūda|žydu volūdys]] (vaļstiskuos volūdys [[Izraeļs|Izraelī]]) atjaunynuotuojs. Ideja ap senejuos žydu volūdys kai nacejis volūdys atdzimšonu E. Ben-Jehudai atsaroduse vuicūtīs školā Latgolā, [[Daugpiļs|Daugpilī]]. + +== Biografeja == + +E. Ben-Jehuda dzims [[Boltkrīveja|Boltkrīvejā]], Lužkūs. Senejūs žydu volūdu vuicejīs nu 3 godu vacuma, skaitejs Toru, Mišnu i Talmudu. Vuicejīs vītejā žydu parapejis školā, piečuok laidīs iz [[Latgola|Latgolu]]. Byudams škoļnīks [[Daugpiļs|Daugpilī]], skaitejs laikrokstu "Ha-Shahar" žydu volūdā, i tai jam atsarads dūms, ka senejuos žydu volūdys atdzimšona Izraeļa zemē varātu vīnumeiguot žydu diasporys i apsorguot žydus nu asimilacejis. + +Piec Daugpiļs školys beigšonys laidīs iz Parižu studātu Sorbona universitetā. Cyta vydā tī studiejs žydu volūdu i idzierds juos runojamū formu. Tys da gola ītyvcynuojs Ben-Jehudu, ka žydu volūdys kai nacejis volūdys atdzimšona irā praktiskai varama. Nu [[Pariža]] laidīs iz [[Aļžira|Aļžiru]] i ar vītejim žydim runuojs senejūs žydu volūdā, dabuodams lobys praktikys kasdīneigajā runā. + +{{nadabeigts rakstīņs}} + tjpb8fx057x2399wnll2ilt5pqmb28t + + + + Eura + 0 + 115 + + 30751 + 30201 + 2015-04-27T18:31:17Z + + Kontrollstellekundl + 1999 + + + corr. + wikitext + text/x-wiki + [[File:Euro logo plus character.png|thumb|200px| ]] +'''Eura''' ({{Vol-lv|eiro}}, ''eira''; {{Vol-en|euro}}; {{Vol-ru|евро}}) irā [[Europys Savīneiba|Europys Savīneibys]] kūpeiguo [[Valuta|naudys vīnine]], kura aizvoduota i lītojama eurys zonā (2015 g. janvara mien. — 19 ES vaļsteibuos) i kuru atīsmē planavojams lītuot kai atsaskaitīņu leidziekli vysuos ES vaļsteibuos. + +[[File:European union emu map de.png|thumb|400px|left|Euro 2015]] +[[File:Euro banknotes.png|thumb|200px| ]] +[[File:Euro coins and banknotes.jpg|thumb|200px| ]] +Valutys zeime: ''€'' + +Vydtautyskais valutys kods: ''EUR'' + +Vērte: +* 1 eura (EUR) = apmāram 0,702804 latu (LVL); +* 1 lats (LVL) = apmāram 1,422872 euru (EUR) + +Eura aizvoduota kai atsaskaitīņu leidzieklis 1999 godā, atmejūt ekeju (ECU, ''European Currency Unit'') pa kursam 1:1. Kai fiziska nauda eurys apgrūzā palaistys 2002 godā. 2006 gods beiguos apgrūzā beja jau 610 milijardi euru, i juos beja vīneiguo valuta vaira kai 317 milijonim europīšu. + +Euru volda Vuocejis mīstā [[Frankfurtā pi Maina]] asūšais [[Europys centralais banks]] (ECB), kurs pīstuov vysu ES dalinīkvaļsteibu centralūs bankus. ECB vīneigais tur tīseibu nūstateit ES monetariskū politiku, jis dasaver euru banknotu druku, euru monetu kaļšonu, taipoš euru plateišonu i lītuošonu vysuos eurys zonys vaļsteibuos. + +[[Kategoreja:Ekonomika]] + lpc3m2wz9vheg3o7as80s686wuay5ij + + + + Europa + 0 + 116 + + 31549 + 28172 + 2016-08-08T02:48:10Z + + DARIO SEVERI + 3389 + + Added wikilinks + wikitext + text/x-wiki + [[Fails:Europe (orthographic projection).svg|thumb|250px|Europa]] +[[Fails:Europe satellite globe.jpg|thumb|250px|Europa]] +'''Europa''' - vīns nu septeņu pasauļa [[koņtinentu]]. Geologiskai i geografiskai ite pussola, kura sataisa Eurazejis vokoru daļu. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Europa| ]] + 4z1eiccmmbjvljx9rnd3354icvv7ax1 + + + + Eva Mārtuža + 0 + 117 + + 26609 + 11450 + 2012-12-31T01:26:03Z + + Turaids + 172 + + + Pīvīnoju kategoreju. + wikitext + text/x-wiki + '''Eva Mārtuža''' — dzymuse [[1954 gods]] [[Zīmys mieneša 15|zīmys (dekabra) mieneša 15 dīnā]] [[Gaigalova|Gaigalovā]], niulenejuo [[Rēznis nūvods|Rēznis nūvodā]]. Roksta latvīšu literariskajuo volūdā. Precējusēs, treis bārnu muote. Dzeivoj [[Reiga|Reigā]]. + +== Ļaudiskais dorbs == +* 2009 - 2011 g. NVO „Zonta international” prezidente +* 2008 - NVO „Etikas tilts” dorba grupys viersineica +* 2007 - 2009 g. NVO „Zonta international” viceprezidente +* 2001 - 2003 g. NVO „Zonta international” sekretare +* 1994 - sabīdriskuos organizacejas „Forums Atelpa” volda prīškinīks +* 1988 - Rakstinīku savīneibys bīdre +* 1984 - Latvejis Žurnalistu savīneibys bīdre + +== Literarais dorbs == +* 2009 - atvārsumi nu ukraiņu volūdys „Vējš no Ukrainas” +* 2009 - eseja lasejumā „Labdien, skolotāj!” +* 2008 - romans „Pētera zvērests” +* 2007 - eseja lasejumā „Spriediet paši” +* 2007 - dokumentalais romans „Freda un Ufo brokastu kods” +* 2007 - romans „Jasmīnu pūderis” (pseid. Ieva Bondere) +* 2006 - eseju lasejums „Dvēseles pasts” +* 2005 - romans „Negudrā” +* 2004 - aiļu lasejums „Es tumsai pieglaužos” („Delfi” bolva „2005. gada labākais dzejnieks”) +* 2004 - „Veltījums” (īvods Andreja Eglīša aiļu gruomotai) +* 2002 - romans „Karaļkronis” (pseid. Ieva Bondere) +* 2001 - publicistiski apguodi „Kā iekarot, mīlēt, paturēt vīrieti”(pseid. Digna Eira) +* 2000 - romans „Starp slāpēm un starp kausu” +* 1999 - romans „Izravētā sirds” +* 1996 - romans „Neatsaki vīrietim” +* 1996 - aiļu gruomota „Sniegs apsedz vaļēju brūci” +* 1995 - esejis ap sīvīti fotoalbumā „Viņa” +* 1994 - romans „Bize mākoņspraugā” (žurnalā „Draugs”) +* 1993 - ailis i dīnysgruomota „No mana kodiena nemirst” +* 1993 - stuošku lasejums „Tendīte” (pseid. Digna Eira) +* 1978 - ailis kūplasejumā „Acis” i „Dzejas diena” +* 1974 - pyrmuo publikaceja - ailis „Sāpes” i „Tā ir” gazetā „Padomju Students” 12.XII (E. Juhņeviča). +* 1973 – 1997 - taisejuse literarūs i kulturys laidīņus televizejā: „Burtnieks”, „Avots”, rakstinīku portreti, TV aiļu teatris, TV pastatejumi (G.Janovskis „Heidelbergas naktis” u.c.) +* Publiciejuse rokstus (aptuv. 1000) ap literaturys i kulturys vaicuojumim žurnalā „Karogs”, „Zeltene”, „Zvaigzne”, gazetā „Cīņa”, „Neatkarīgā Cīņa”, „Rīgai 800” u.c. <ref>Informaceja īgiuta nu pošys rakstineicis, prosūt jai atsyuteit sovu CV maņ draugūs.lv</ref> + +Rakstineica Linda Šmite par Evys Mārtužis romanu „Pētera zvērests” irā sacejuse, ka tys ir viesturiskys romans ap baltīšim, kuramā autore paleidz skaiteituojim ītēmēt cytu eistyneibu gareigajuo, politiskajuo i religiski ideologiskajuo atzarē. Romans jau asūt pasaukts kai latvīšu ''da Vinči kods'', par latvīšu pošatmanis mūdynuotuoju. Gruomota puorsteidz ar autoris pylneigajom zynuošonom na tik ap viesturi i kulturys viesturi, a taipoš vysaidu olūtu i autoru pīminiešonā, byunūt par sovu sakņu tāmātuoju.<ref>http://domicelle.blogs.lv/romans-petera-zverests-tas-jazina/</ref> + +== Nūruodis i olūti == +{{Nūruodis}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + fuvny02qn1uod9mc7wzusl7g9mf0qdg + + + + Eņciklopedeja + 0 + 118 + + 29145 + 28173 + 2013-03-11T10:45:02Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5292]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Brockhaus Lexikon.jpg|thumb|300px|[[Brokhauza eņciklopedeja]], 1910]] +'''Eņciklopedeja''' irā rokstysks [[Zineigumi|zineigumu]] salicīņs. Eņciklopedejis var byut vyscaureigys ci specializātys kaidai nūstateitai [[Atzare|atzarei]]. + +{{Commonscat|Encyclopedias|Eņciklopedejis}} + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Enzciklopedeja}} + +[[Kategoreja:Eņciklopedejis| ]] + 2hj5pt2m238d3pztd6772i1z6e4j1sv + + + + Felis bieti + 0 + 119 + + 30684 + 30327 + 2015-04-02T15:29:14Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|fr}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Felis bieti map.svg|thumb|250px|''Felis bieti'' paplateiba pasaulī]] +'''Felis bieti''', Milne-Edwards, 1892 (({{Vol-en|Chinese mountain cat}}, {{Vol-ru|китайская горная кошка, или гобийская горная кошка}}, {{Vol-lv|ķīnas tuksneša kaķis}})) irā naleļs [[kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Felis bieti'' dzeivoj pūstum Kīnā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Felis_bieti.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: nazkur 70 cm;<ref name="ADV"/></br> +Astes garums: nu 29 da 35 cm;<ref name="ADV"/></br> +Svors: 4,5—5,9 kg.<ref name="ADV"/></br> + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Felis bieti}} + +{{DEFAULTSORT:Felis bieti}} + +[[Kategoreja:Dzeivinīki]] + m1ncaovkg63vhezovpjlgudiisv6ede + + + + Felis chaus + 0 + 120 + + 28995 + 28175 + 2013-03-08T21:28:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q42623]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:FelisChausMunsiari1.jpg|thumb|250px|''Felis chaus affinis'' zamškira]] +'''Felis chaus''' ({{Vol-en|jungle cat}}, {{Vol-ru|камышовый кот}}, {{Vol-lv|niedrāju kaķis}}) ira naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Felis chaus'' dzeivoj dīnavydu Azejā i pūstum Afrikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Felis_chaus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: nu 55 da 94 ;<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). Wild cats of the World. Chicago: University of Chicago Press. pp. 60–66. ISBN 0-226-77999-8.</ref></br> +Astes garums: nu 20 da 31;<ref name=WCoW/></br> +Svors: 3—12 kg.<ref name=WCoW/></br> + +== Daudzatmejeiba == +Ira zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1939/ BioLib] Profil taxonu — druh '''kočka bažinná ''Felis chaus''''' Schreber, 1777</ref>: +* ''[[Felis chaus affinis]]'' Gray, 1830 +* ''[[Felis chaus chaus]]'' Schreber, 1777 +* ''[[Felis chaus fulvidina]]'' Thomas, 1929 +* ''[[Felis chaus furax]]'' de Winton, 1898 +* ''[[Felis chaus kelaarti]]'' Pocock, 1939 +* ''[[Felis chaus kutas]]'' Pearson, 1832 +* ''[[Felis chaus maimanah]]'' Zukowsky, 1915 +* ''[[Felis chaus nilotica]]'' de Winton, 1898 +* ''[[Felis chaus oxiana]]'' Heptner, 1969 +* ''[[Felis chaus prateri]]'' Pocock, 1939 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Felis chaus}} + +{{DEFAULTSORT:Felis chaus}} + +[[Kategoreja:Dzeivinīki]] + jalak5qyz1wpr3cr3135ozyo1wxqb5l + + + + Felis margarita + 0 + 121 + + 31205 + 31204 + 2015-11-22T01:34:16Z + + Pleckaitis + 235 + + wikitext + text/x-wiki + [[Fails:Felis margarita 10.jpg|thumb|250px|]] +[[Fails:Felis margarita distribution.svg|thumb|250px|Felis margarita paplateiba pasaulī]] +'''Felis margarita''', Loche, [[1858]] ({{Vol-en|sand cat}}, {{Vol-ru|барханная кошка}}, {{Vol-lv|smilšu kaķis}}) irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. + +== Izavierīņs == +Auguma garums: 39—57 cm;<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). Wild cats of the World. Chicago: University of Chicago Press. pp. 67–74. ISBN 0-226-77999-8.</ref></br> +Astes garums: 23—31 cm;<ref name=WCoW/></br> +Svors: 1.4—3.4 kg.<ref name=WCoW/> + +== Daudzatmejeiba == +Ira 6 zamškiras<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1941/ BioLib] Profil taxonu druh '''kočka pouštní ''Felis margarita''''' Loche, 1858</ref>: +* ''[[Felis margarita airensis]]'' Pocock, 1951 +* ''[[Felis margarita harrisoni]]'' Hemmer, Grubb and Groves, 1976 +* ''[[Felis margarita margarita]]'' Loche, 1858 +* ''[[Felis margarita meinertzhageni]]'' Pocock, 1938 +* ''[[Felis margarita scheffeli]]'' Hemmer, 1974 +* ''[[Felis margarita thinobia]]'' Ognev, 1927 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Felis margarita}} + +{{DEFAULTSORT:Felis margarita}} + +[[Kategoreja:Dzeivinīki]] + pnd2r9t4mcy0y54rkejo7hy5o1ff9b4 + + + + Felis nigripes + 0 + 122 + + 30685 + 29963 + 2015-04-02T15:29:17Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|fr}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Felis nigripes 5.JPG|thumb|250px|]] +[[Fails:Kot czarnolapy wystepowanie.svg|thumb|250px|''Felis nigripes'' paplateiba pasaulī]] +'''Felis nigripes''', Burchell, 1824 ({{Vol-en|black-footed cat}}, {{Vol-ru|черноногая кошка}}, {{Vol-lv|melnķepu kaķis}}) irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Felis nigripes'' dzeivoj dīnavydu Afrikā<ref name="iucn">Sliwa, A. (2008). ''[http://www.iucnredlist.org/apps/redlist/details/8542/0 Felis nigripes]''. In: IUCN 2008. IUCN Red List of Threatened Species. Downloaded on 22 March 2009. Database entry includes justification for why this species is vulnerable</ref>. + +== Izavierīņs == +Auguma garums: nu 36 da 63 cm;<ref>Smithers, R.H.N. (1971) ''The mammals of Botswana.'' Issue 4 of Museum memoir. National Museum of Southern Rhodesia</ref><ref>Smithers, R.H.N. (1983) ''The mammals of the southern African subregion''. University of Pretoria</ref></br> +Astes garums: 15 cm;<ref name="Wilson1988">Stuart, C.T., Wilson, V.J. (1988) ''The cats of southern Africa.'' Chipangali Wildlife Trust, Bulawayo.</ref></br> +Placu augstums: 25 cm;<ref name="Wilson1988"/></br> +Svors: moutīte - 1.3 kg; tāviņš - 1.9 kg.<ref name="Sliwa2004">Sliwa, A. (2004) H''ome range size and social organisation of black-footed cats (Felis nigripes)''. Mammalian Biology 69 (2): 96-107</ref> + +== Daudzatmejeiba == +Irā 2 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1942/ BioLib] Profil taxonu — druh +'''kočka černonohá ''Felis nigripes''''' Burchell, 1824</ref>: +* ''[[Felis nigripes nigripes]]'' Burchell, 1824 +* ''[[Felis nigripes thomasi]]'' Shortridge, 1931 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Felis nigripes}} + +{{DEFAULTSORT:Felis nigripes}} + +[[Kategoreja:Dzeivinīki]] + g9ihr2ul7gpyj43fg631f8iv6f6tds8 + + + + Mežogs kačs + 0 + 123 + + 28956 + 28178 + 2013-03-08T15:23:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q43576]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Felis silvestris silvestris.jpg|thumb|250px|''Europys mežoga kača'' zamškira]] +[[Fails:Wiki-Felis sylvestris.png|thumb|250px|''Mežoga kača'' paplateiba pasaulī]] +'''Mežogs kačs''' ({{Vol-la|Felis silvestris}}) irā naleļs [[kaču saime|kaču saimis]] plieseigais [[zviers]]. Mežogs kačs dzeivoj Europā, Azejā i Afrikā.<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Felis_silvestris.html University of Michigan Museum of Zoology]</ref> + +== Izavierīņs == +* Auguma garums: 45—80 cm;<ref name="eco">[http://www.ecosystema.ru/08nature/mamm/072.htm Лесной кот — Felis silvestris] на сайте Экологического центра "Экосистема"</ref> +* Astes garums: 30—34 cm;<ref name="eco"/> +* Placu augstums: 35 cm; +* Svors: 3—8 kg. + +== Daudzatmejeiba == +Irā 16 zamškiru:<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1943/ BioLib] Profil taxonu druh '''kočka divoká ''Felis silvestris''''' Schreber, 1777</ref> +* [[Felis silvestris brockmani]] +* [[Felis silvestris cafra]] +* [[Kačs|Felis silvestris catus]] +* [[Felis silvestris caucasica]] +* [[Felis silvestris caudata]] +* [[Felis silvestris foxi]] +* [[Felis silvestris grampia]] +* [[Felis silvestris griselda]] +* [[Felis silvestris jordansi]] +* [[Felis silvestris lybica]] +* [[Felis silvestris ocreata]] +* [[Felis silvestris ornata]] +* [[Felis silvestris pyrrhus]] +* [[Felis silvestris sarda]] +* [[Felis silvestris shawiana]] +* [[Felis silvestris silvestris]] + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Felis silvestris|Mežogs kačs}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + istdw6w3kn5onqbi4ow7ud3kxtxb13u + + + + Gedimina ordiņs + 0 + 124 + + 29112 + 28179 + 2013-03-11T10:41:09Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2002929]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:1st Class Order of the Lithuanian Grand Duke Gediminas.jpg|thumb|167px|Ordiņs.]] +'''Leluo Lītovys Kunigaikšta Gedimina ordiņs''' aba '''Gedimina ordiņs''' (lītovyskai: ''Didžiojo Lietuvos Kunigaikščio Gedimino ordinas, Gedimino ordinas'') — vīns nu pošu zeimeigūs [[Lītova|Lītovys]] vaļstiskūs [[Apduovaņs|apduovaņu]]. + +Ar ordini apduovanej Lītovys ļauds voi uorzemis [[Pilīts|pilīšus]], kuri tur peļnejumus Lītovys lobam i davuši lelu īlicīni vaļstiskajā voi ļaudyskajā darbeibā. + +Ordiņs īstateits 1928 godā, 1930 jis beja cik nacik reformāts. Pyrmuos ordiņa zeimis radeja muokslinīks Andrius Lopuchins. Gedimina ordiņs nu jauna suoce daškiert piec [[Lītovys napavaļdeibys atjaunynuošona|Lītovys napavaļdeibys atjaunynuošonys]], i pyrmuos pīcys personys beja apduovanātys 1993 gods februara 16 d.: ailinīki Justins Marcinkevičs i Bernards Brazdzioņs, bazneicnīks Ričards Mikutavičs, muokslinīks Vītauts Kazimers Jonīns, muokslinīks Juoņs Kubiļus. Vysā nu 1993 gods ar Lītovys Kunigaikšta Gedimina ordini pagūdynuoti vaira kai 1030 Lītovys i uorvaļsteibu pilīšu. Iz vyds apduovanātūs irā Vydtautyskuo olimpiskuo komiteta prezidents H. Samarančs, izslyvšais filantrops Dž. Sorošs, pasaulī zynomais muziks M. Rostropovičs. Nu latgaļu Gedimina ordiņa dabuojuse [[Janina Kūrseite]]. + +Ordiņs tur 5 cylys. Ordiņa svieteibys irā februara 16 d. - Lītovys vaļsteibys atjaunynuošonys dīna. + +[[Kategoreja:Lītova]] + bu7hkkhqc9o3m4azr1rvuo9nkjvjl5c + + + + Genitiva i akuzativa lītuošona + 0 + 125 + + 10430 + 1761 + 2011-03-21T08:54:35Z + + DEagleBot + 35 + + + Bot: Automated text replacement (-[[Category:Wp/ltg]] +) + wikitext + text/x-wiki + Latgalīšu volūdā '''genitiva i akuzativa lītuošona''' nazcik atsaškir nu baļtīšu volūdys i lela daudzuma latvīšu volūdys izlūkšņu. Bīžuok izīt tai, ka latgaļu volūdā rokstoms genitivs tur, kur baļtīšu volūdā i nūvodu izlūksnēs ir akuzativs. + +== Genitiva lītuošona ar prīdēklim == + +== Genitiva lītuošona ar laikvuordim == +Tradicionalajā volūdā vajadzātu raksteit: ''Klausīs sov'''ys''' radej'''is''''', t.i., laikvuords ''klauseitīs'' latgaliski vysod guojs ar genitivu. (Nazcik vītrunuos soka: ''Klausīs sov'''u''' radej'''u''''', kas nav literaruos volūdys norma). + +== Nūruodis == +* [http://forum.latgale.lv/index.php?action=vthread&forum=1&topic=11 forum.latgale.lv] + c5jf6zeiggf3saejmtlabj27ic5eykw + + + + Genovefa Barkovska + 0 + 126 + + 26608 + 16476 + 2012-12-31T01:25:38Z + + Turaids + 172 + + + Pīvīnoju kategoreju. + wikitext + text/x-wiki + '''Genovefa Barkovska''' (1935) — Daugpiļs viesturneica, vīna nu golvonūs Latgolys tiemiešonys instituta aktivistu. + +Dzymuse Īlyukstē. Beiguse Daugpiļs pedagogiskū institutu (niule Daugpiļs universitets) viesturis i latvīšu volūdys specialitetā (1959). Dabuojuse viesturis zineibu doktorys cylys. + +Piec 1988 gods daudzi dasalykuse īstotūt i raistūt Latgolys tiemiešonys institutu, taisūt latgaļu gruomotu biblioteku Daugpilī, tuoļojūt ziniskūs rakstīņu lasejuma ''Acta Latgalica'' izlaisšonu tāvainē i organizejūt cytus latgaliskuos kulturys aktivitetus. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + mven612znsifh6ue7xrx1fs2j8o6nxk + + + + Gepards + 0 + 127 + + 29113 + 28910 + 2013-03-11T10:41:11Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q23907]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Africat Cheetah.jpg|thumb|250px|''Gepards pļovā'']] +[[Fails:Cheeta map.jpg|thumb|250px|Gepardu paplateiba pasaulī]] +'''Gepards''' ({{vol-la|Acinonyx jubatus}}) irā lels [[kaču saime|kaču saimis]] plieseigais [[zviers]]. Itys kačs dzeivoj [[Afrika|Afrikā]] i Centraluos Azejis dīnavydūs.<ref>[http://bigcats.ru/index.php?bcif=gepards.shtml BigCats.ru — Гепарды]</ref> + +== Izavierīņs == +* Auguma garums: nu 115 da 140 cm +* Astis garums: da 80 cm +* Svors: nu 40 da 65 kg + +== Daudzatmejeiba == +Gepardim irā 6 zamškiru:<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1924/ BioLib] Profil taxonu — druh '''gepard štíhlý ''Acinonyx jubatus''''' (Schreber, 1775)</ref> +* Saharys gepards (''Acinonyx jubatus hecki'') +* Dīnavydu Afrikys gepards (''Acinonyx jubatus jubatus'') +* Reitu Afrikys gepards (''Acinonyx jubatus raineyi'') +* Centraluos Afrikys gepards (''Acinonyx jubatus soemmeringii'') +* Vokoru Afrikys gepards (''Acinonyx jubatus velox'') +* Azejis gepards (''Acinonyx jubatus venaticus'') + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Acinonyx jubatus|Gepards}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + 36p15d9fftna2pa2ni8mpnbsdyxp885 + + + + Gerhards fon Jorke + 0 + 128 + + 28181 + 24826 + 2013-03-07T17:57:34Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361159]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Gerhards fon Jorke''' ([[Vuocīšu volūda|vuocīšu]]: ''Gerhard von Jorke'', taipoš: ''Gerhard von York'') — [[Livonejis ordyna magistris]] nu 1309 g. da 1322 g.<br /><br /> + +1313 g. atjaunynuojs [[Lītaunīki|lītaunīku]] iznycynuotū [[Dynaburga piļs|Dynaburga pili]]. + +1322 g. juļa 19 d. atsasacejs nu ordyna magistra daguojumu. + +{| border=1 cellpadding=2 cellspacing=0 align=center width=520px +|- +| +|'''Gerhards fon Jorke''' +| +|- +|Pyrmaguojiejs: + +[[Gotfrids fon Roge]] +|[[Livonejis ordyna magistris]]: + +1309 – 1322 VII 19 +|Piecguojiejs: + +[[Reimars Hane]] +|} + +[[Kategoreja:Livonejis ordyna magistri]] + 3huthbxnz2rctbtxbocq01u4cui09of + + + + Gothards Ketlers + 0 + 129 + + 28182 + 25654 + 2013-03-07T17:57:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 16 interwiki links, now provided by [[d:|Wikidata]] on [[d:q379558]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Gothards Ketlers1.jpg|thumb|right|Gothards Ketlers]] +'''Gothards Ketlers''' (''Gotthard Kettler'') (1517 — 1587) — pādejais [[Livonejis ordyna magistris]] i pyrmais [[Kūrzemis i Zemgolys hercogs|Kūrzemis hercogs]]. + +G. Ketlers dzims 1517 g. februara 2 d. [[Vestfalens|Vestfalenā]]. 1537 g. īstuojs [[Livonejis ordyns|Livonejis ordynā]], 1559 g. ībolsuots par ordyna magistri. 1561 g. [[Viļne|Viļnē]] parakstejs [[Dasaruna|dasarunu]], pa kurai [[Livoneja]] tyka [[Puoleja-Lītova|Puolejis-Lītovys]] pavaļdeibā, a Gothards Ketlers dabuoja vaļdeit Livonejis dalis - [[Kūrzemis i Zemgolys hercogiste|Kūrzemis i Zemgolys]] - kai Puolejis kieneņa [[vasaļs]]. G. Ketlera vaļdis laikā hercogistē pastateitys 70 bazneicu, 8 školys i 8 špitalis. Mirs mirs 1587 g. maja 17 d. [[Meitova|Meitovā]] (niu latvyskai ''Jelgava''). + +{| border=1 cellpadding=2 cellspacing=0 align=center width=520px> +<tr><td><td align=center>'''Gothards Ketlers'''<td> +<tr><td align=center>Pyrmaguojiejs:<br />[[Viļhelms Furstenbergs]]<td align=center>[[Livonejis ordyna magistris]]:<br />1599 g. IX – 1563 g. III 03<td align=center>Piecguojiejs:<br /> – +<tr><td align=center>Pyrmaguojiejs:<br /> –<td align=center>[[Kūrzemis i Zemgolys hercogs|Kūrzemis hercogs]]:<br />1561 – 1587 V 17<td align=center>Piecguojiejs:<br />[[Fridrihs Ketlers]]<br />[[Viļhelms Ketlers]] +|} + +[[Kategoreja:Livonejis ordyna magistri]] + tsf2xamjpq0ydhxs5hd5s69teqcrce4 + + + + Gotu roksts + 0 + 130 + + 28183 + 24834 + 2013-03-07T17:57:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 26 interwiki links, now provided by [[d:|Wikidata]] on [[d:q467784]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Gotu roksts''' irā [[Konsonaņtiskai vokaliskais roksts|konsonaņtiskai vokaliskais]] [[Roksts (raksteiba)|roksts]] i [[alfabets]], kurā saraksteiti izaglobuojuši IV—VI godusymtu [[Gotu volūda|gotu volūdys]] pīminiekli. Teik uzskateits, ka alfabetu radeja veiskups [[Vulfila]] (ci Ulfila), kas IV godusymta vydā radeja [[Bibleja|Biblejis]] puorvārsumu gotu volūdā. Leidz tam goti lītuoja [[Rūnu roksts|rūnu rokstu]], tok Vulfilam redzējuos, ka rūnys asociejās ar poguoneibu i jī irā navālami svātūs tekstu puorvēršonai. Jaunais alfabets tyka radeits iz [[Greku alfabets|greku alfabeta]] uņcialuo roksta pamata ar palīniejumim nu [[Latiņu alfabets|latiņu]] i, mozuokā mārā, rūnu roksta. Alfabeta literu pasaukys nuok nu rūnu pasaukom. + +Roksta [[ISO 15924]] kods irā Goth. + +== Literi == +[[Fails:Codex Argenteus.jpg|thumb|Pyrmuo ''Codex Argenteus'' ci «Sudobra Biblejis» lopa, VI gs. manuskripts ar veiskupa Vulfilas IV gs. Biblejis puorvārsumu gotu volūdā]] +Zamuok teikt izlykta gotu alfabeta tabele. + +Kai greku alfabetā, gotu literi tyka lītuoti ari kai skaitli. Itymā gadīnī literi tyka raksteiti voi nu ar divim punktim (•𐌹𐌱• = 12), voi ar augšstreipi (<span style="text-decoration: overline">𐌹𐌱</span> = 12). Divim literim — 𐍁 (90) i 𐍊 (900) — navā fotetiskuos vierteibys. + +Literu pasaukys irā fiksētys IX godusymta [[Alkuins|Alkuina]] manuskriptā ''Codex Vindobonensis 795''. + +{| class="wikitable" +! colspan="2" | Liters !! Transliteraceja !! Samārs !! Pasauka !! [[IPA]] !! Skaiteiga<br />vierteiba !! [[XML]] +|- +| [[Fails:Gothic letter ahsa.svg|20px]] +| 𐌰 || a || [[Аlfa (liters)|Α]] || ahsa / aza || /a, aː/ || 1 || &amp;#x10330; +|- +| [[Fails:Gothic letter bairkan.svg|20px]] +| 𐌱 || b || [[Beta (liters)|Β]] || bairkan / bercna || /b, β/ || 2 || &amp;#x10331; +|- +| [[Fails:Gothic letter giba.svg|20px]] +| 𐌲 || g || [[Gamma (liters)|Γ]] || giba / geuua || /ɡ, ŋ/ || 3 || &amp;#x10332; +|- +| [[Fails:Gothic letter dags.svg|20px]] +| 𐌳 || d || [[Delta (liters)|Δ]] || dags / daaz || /d, ð/ || 4 || &amp;#x10333; +|- +| [[Fails:Gothic letter aihvus.svg|20px]] +| 𐌴 || e || [[Epsilons (liters)|Ε]] || aiƕus / eyz || /e, eː/ || 5 || &amp;#x10334; +|- +| [[Fails:Gothic letter qairthra.svg|20px]] +| 𐌵 || q || [[Pi|Π]] || qairþra (qairthra) / qertra || /kʷ/ || 6 || &amp;#x10335; +|- +| [[Fails:Gothic letter iuja.svg|20px]] +| 𐌶 || z || [[Zeta (liters)|Ζ]] || ezec || /z/ || 7 || &amp;#x10336; +|- +| [[Fails:Gothic letter hagl.svg|20px]] +| 𐌷 || h || [[Eta (liters)|H]] || hagl / haal || /h/ || 8 || &amp;#x10337; +|- +| [[Fails:Gothic letter thiuth.svg|20px]] +| 𐌸 || þ, th || [[Teta (liters)|Θ]] || þiuþ (thiuth) / thyth || /θ/ || 9 || &amp;#x10338; +|- +| [[Fails:Gothic letter eis.svg|13px]] +| 𐌹 || i || [[Jota (liters)|Ι]] || eis / iiz || /i, iː/ || 10 || &amp;#x10339; +|- +| [[Fails:Gothic letter kusma.svg|20px]] +| 𐌺 || k || [[Kapa (liters)|Κ]] || kusma / chozma || /k/ || 20 || &amp;#x1033A; +|- +| [[Fails:Gothic letter lagus.svg|20px]] +| 𐌻 || l || [[Lambda (liters)|Λ]] || lagus / laaz || /l/ || 30 || &amp;#x1033B; +|- +| [[Fails:Gothic letter manna.svg|20px]] +| 𐌼 || m || [[Mi (liters)|Μ]] || manna || /m/ || 40 || &amp;#x1033C; +|- +| [[Fails:Gothic letter nauthus.svg|20px]] +| 𐌽 || n || [[Ni (liters)|Ν]] || nauþs (nauths) / noicz || /n/ || 50 || &amp;#x1033D; +|- +| [[Fails:Gothic letter jer.svg|20px]] +| 𐌾 || j || [[Jera|ᛃ]] || jer / gaar || /j/ || 60 || &amp;#x1033E; +|- +| [[Fails:Gothic letter urus.svg|20px]] +| 𐌿 || u || [[Uruzs|ᚢ]] || urus / uraz || /u, uː/ || 70 || &amp;#x1033F; +|- +| [[Fails:Gothic letter pairthra.svg|20px]] +| 𐍀 || p || [[Pi (liters)|Π]] || pairþra (pairthra) / pertra || /p/ || 80 || &amp;#x10340; +|- +| [[Fails:Gothic numeral ninety.svg|20px]] +| 𐍁 || || [[Kopa (liters)|Ϟ]] || || || 90 || &amp;#x10341; +|- +| [[Fails:Gothic letter raida.svg|20px]] +| 𐍂 || r || [[R]] || raida / reda || /r/ || 100 || &amp;#x10342; +|- +| [[Fails:Gothic letter sauil.svg|20px]] +| 𐍃 || s || [[S]] || sauil / sugil || /s/ || 200 || &amp;#x10343; +|- +| [[Fails:Gothic letter teiws.svg|20px]] +| 𐍄 || t || [[Tau (liters)|Τ]] || teiws / tyz || /t/ || 300 || &amp;#x10344; +|- +| [[Fails:Gothic letter winja.svg|20px]] +| 𐍅 || w || [[Ipsilons|Υ]] || winja / uuinne || /w, y/ || 400 || &amp;#x10345; +|- +| [[Fails:Gothic letter faihu.svg|20px]] +| 𐍆 || f || [[F]] || faihu / fe || /f/ || 500 || &amp;#x10346; +|- +| [[Fails:Gothic letter iggws.svg|20px]] +| 𐍇 || x || [[Hi (liters)|Χ]] || iggws / enguz || /kʰ/ || 600 || &amp;#x10347; +|- +| [[Fails:Gothic letter hwair.svg|20px]] +| 𐍈 || ƕ, hw || [[Teta (liters)|Θ]] || ƕair / uuaer || /ʍ/ || 700 || &amp;#x10348; +|- +| [[Fails:Gothic letter othal.svg|20px]] +| 𐍉 || o || [[Omega (liters)|Ω]] || oþal (othal) / utal || /o, oː/ || 800 || &amp;#x10349; +|- +| [[Fails:Gothic numeral nine hundred.svg|13px]] +| 𐍊 || || [[Sampi (liters)|Ϡ]] || || || 900 || &amp;#x1034a; +|} + +== Nūruodis == + +* [http://www.omniglot.com/writing/gothic.htm Gotu roksta lapa Omniglot.com] +* [http://marnanel.org/gothic JavaScript transliterators iz gotu rokstu] + +{{DEFAULTSORT:Gotu roksts}} + +[[Kategoreja:Roksts]] + ql9ge8c49jd8mx76atgkn35v9dzw1ys + + + + Graiži + 0 + 131 + + 30530 + 15895 + 2015-02-01T19:07:51Z + + Vogone + 1387 + + + wikitext + text/x-wiki + '''Graiži''' — sola [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Ombumuižys pogosts|Ombumuižys pogostā]], iz vyds [[Putāni|Putānu]] i [[Pītreiši|Pītreišu]] solu. + +Solys centrā irā Graižu kolns, nu kura acim pasaruoda skaists vierīņs i kura viersyunē pastateits krysts. + +{{eiss rakstīņs}} + +[[Kategoreja:Ombumuižys pogosts]] +[[Kategoreja:Daugpiļs nūvoda solys]] +[[Kategoreja:Latvejis solys]] + i4wjy9ep8iakxt5ousnktx8lp4bvl5g + + + + Grekeja + 0 + 132 + + 28184 + 26989 + 2013-03-07T17:58:08Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 217 interwiki links, now provided by [[d:|Wikidata]] on [[d:q41]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Ελλάδα'''<br />'''Grekeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Greece.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Greece.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Greece EU Europe.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 131 957 km² +|- +|| Dzeivuotuoju skaits || 11 306 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Grekeja''' ({{Vol-el|Ελλάδα}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + tvqe7mi640h7il1h3sochysomuh9bsj + + + + Gruzeja + 0 + 133 + + 31166 + 30686 + 2015-10-29T10:33:51Z + + Moeng + 621 + + + update + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''საქართველო'''<br />'''Gruzeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Georgia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Greater coat of arms of Georgia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Georgia (orthographic--projection).svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Giorgi Margvelashvili +|- +| Ministru prezidents || +|- +|| Pluots || 69 700 km² +|- +|| Dzeivuotuoju skaits || 4 385 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +[[File:Georgia cities01.png|thumb|250px|right]] +'''Gruzeja''' (gruz.: საქართველო) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 5ms4n5fszd6ph63cgf3apist82zhrw2 + + + + HK Latgale + 0 + 134 + + + 1872 + 1871 + 2011-03-19T13:03:17Z + + SPQRobin + 2 + + + 3 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[DHK Latgale]] + 2golhb3u25qytc9si543s17vvmm2g93 + + + + Hermans fon Baļke + 0 + 135 + + 28186 + 11466 + 2013-03-07T17:58:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 9 interwiki links, now provided by [[d:|Wikidata]] on [[d:q77672]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Hernmans von Baļke''' (vuocīšu: ''Hermann von Balke'') — pyrmais [[Livonejis ordyna magistris]]. + +Beja daguojumūs nu 1237 gods maja da 1239 gods marta 5 dīnys. + +{| border=1 cellpadding=2 cellspacing=0 align=center width=520px> +<tr><td><td align=center>'''Hermans fon Baļke'''<td><td> +<tr><td align=center>Pyrmaguojiejs:<br /> –<td align=center>[[Livonejis ordyna magistris]]:<br />1237 V – 1239 III 03<td align=center>Piecguojiejs:<br /> [[Andreass fon Veļfens]] +|} + +[[Kategoreja:Livonejis ordyna magistri]] + kqs8q1huvpvdbk73y2bm81nbfx32jvh + + + + Horvateja + 0 + 136 + + 29916 + 28187 + 2013-07-01T10:09:05Z + + U5K0 + 2040 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Republika Hrvatska'''<br />'''Horvateja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Croatia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Croatia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Croatia.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 56 594 km² +|- +|| Dzeivuotuoju skaits || 4 489 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Horvateja''' (horv.: ''Republika Hrvatska'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 3xh9m9n6o7aqjg81gx9k44mugb91qk0 + + + + IP MPLS + 0 + 137 + + 28188 + 26377 + 2013-03-07T17:58:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 24 interwiki links, now provided by [[d:|Wikidata]] on [[d:q677023]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''IP MPLS''' aba '''IP/MPLS''' ({{vol-en|Internet Protocol / Multi Protocol Label Switching}}), aba '''MPLS''' (anglīšu: ''Multi Protocol Label Switching'') irā standartizāta tehnologeja, kura ļaun padreizynuot [[Datu tekme|datu tekmi]] teiklūs i atvīglynuot juos vaļdeišonu. + +Lītojūt MPLS, zynomai [[datu pakets|datu paketu]] vērtinei irā sataisoms specials ceļš, kuru atpazeist sevkurā paketā vydā asūša aizzeime. Tai sasataupa laiks, kurs vajadzeigs, kab [[maršrutātivs]] atrostu cyta mozga adresu i varātu da juo tuoļuok nūsyuteit paketu. Tehnologeja MPLS daudziprotokoleiga, jei dora ar IP, ATM i FR teikla [[protokols|protokolim]]. + +Parostuo [[modeļs|modeļa]] ([[OSI modeļ]]a) teiklā MPLS ļaun [[2 kluoškys|2-ajā kluoškā]] ([[Komutaceja|komutacejis]] leidzīnī) puorsyuteit daudzuok paketu na [[3 kluoškys|3-ajā kluoškā]] ([[Maršrutiešona|maršrutiešonys]] leidzīnī). + +MPLS na tik dreizynoj datu tekmi, bet taipoš ļaun vīgli vaļdeit teiklu, kab puordrūsynuotu QoS (Quality of Service - pakaļpīņa kvalitetu). + +Deļ itūs īmešļu MPLS tehnologeja irā līteiga teiklim, pa kurim suoc īt vairuok i izškireiguoku datu, tymā vydā [[vierīņpakaļpīni]] i [[VoIP]]. Partū MPLS dabuojs nagaidomu mozūs i vydyskūs pasajāmumu i vydtautyskūs biznesa teiklu pīzeišonu. + +Eksperti taipoš skaituos ar faktu, ka lītojūt IP-MPLS tehnologeju [[VPN]] taiseišonā, navā vajadzeibys lītuot [[šifriešonys shemys]] (pīvadumam, [[IPSec]]). + +[[Kategoreja:Datorzineiba]] +[[Kategoreja:Škārsteiklys]] + hj3gdvtwa623mgr16ok846z7vpu2tgw + + + + Igauneja + 0 + 138 + + 31942 + 30917 + 2017-04-25T00:28:21Z + + CommonsDelinker + 2750 + + Removing [[:c:File:Emajõe_Business_Centre1_2008.JPG|Emajõe_Business_Centre1_2008.JPG]], it has been deleted from Commons by [[:c:User:Daphne Lantier|Daphne Lantier]] because: per [[:c:Commons:Deletion requests/File:Emajõe Business Centre1 2008.JPG|]]. + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Eesti Vabariik'''<br />'''Igaunejis Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Estonia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Estonia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU location EST.png|300px]] +|- +|| Golvysmīsts || [[Talins]] +|- +|| Vaļstiskuo volūda || [[igauņu volūda|igauņu]] +|- +| Prezidents || Tomass Hendriks Ilves +|- +| Ministru prezidents || Tāvi Reivass +|- +|| Pluots || 45 226 km² +|- +|| Dzeivuotuoju skaits <small>(2009)</small> || 1 313 271<ref name="Stastistics">[http://www.stat.ee/main-indicators Most requested statistics]</ref> +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2),<br /> EEST (UTC +3) +|} +'''Igaunejis Republika''' ({{Vol-et|Eesti Vabariik}}) — vaļsteiba Pūstumu [[Europa|Europā]] pi [[Baļtejis jiura|Baļtejis jiurys]]. Vaļsteiba tur rūbežu ar [[Latveja|Latveju]] dīnavydūs (343 km) i [[Krīveja|Krīveju]] reitūs (338 km). Baļtejis jiura skoloj Igaunejis molys vokorūs, pūstumūs [[Suomu leics]], a dīnavydvokorūs – [[Reigys leics]]. Vaļsteibys 45 226 km² pluotā dzeivoj tik 1,31 milijoni dzeivuotuoju, ite vīns nu vysuzamuokūs bīzeibys ruodejumu Europā. Igauneja irā demokratiska parlamentariska republika, padaleita pīcpadsmit apleiciņūs. Golvysmīsts i leluokais mīsts — [[Talins]]. + +Igauni vīna nu Baļtejis suomu tautu, kura etniskai radneiga suomu, [[Līvi|līvu]], [[Voti|votu]] i cytom tautom. Viesturiskai i kulturiskai igauņu zeme sasīta ar [[Švedeja|Švedeju]], [[Daneja|Daneju]], [[Suomeja|Suomeju]] i [[Latveja|Latveju]]. Igauņu volūda pīdar [[Suomugru volūdys|Suomugru volūdu]] saimei, jei leidzeiga suomu volūdai i tuoleimai leidzeiga vengru volūdai, tok natur radneibys ar latgaļu ci latvīšu volūdu. Igauņu, [[Suomu volūda|suomu]], [[Vengru volūda|vengru]] i [[Maltīšu volūda|maltīšu]] volūdys vīneiguos vaļsteibys volūdys Europys Savīneibā, kurys napīdar pi Indoeuropīšu volūdu saimys. + +Igauneja paslūdynova sovu napavaļdeibu 1918 gods pebraļa 24 dīnā, tok piec parvareigys daškieršonys PSRS, napavaļdeiba atjaunynuota 1991 gods augusta 20 dīnā. Nu 2004 gods maja 1 dīnys Igauneja irā Europys Savīneibys i nu 2004 gods marta 29 dīnys - NATO dalinīkvaļsteiba. + +== Etimologeja == +Igaunejis pošu pasauka ‘’Eesti’’, varama līta, izacēle nu romīšu viesturnīka [[Tacits|Tacita]] dorba „Germania”, kurymā apraksteitys kai germaņu tautys, tai i reitu patautys ar pasauku „aisti” (latiņu: ‘’Aesti’’). <ref>''Germania'', Tacitus, Atdale XLV</ref> Tacits jūs aprakstejs kai cīši barbaryskys patautys, runojūšys vysā izškireigā volūdā kai cytys itamā apleicīnē. Taipoš skandinavu saguos Igauneja cieški apraksteita kai ‘’Eistland’’. Latiņvolūdeigajūs rakstīņūs igauņu zemis cieški pasauktys kai ‘’Estia’’ ci ‘’Hestia’’. Igauņu pošu tautys pasauka beja ‘’maarahvas’’ (zemis tauta). Tik 19 godu symtā, kab styprynuotu sovu nacionalū ideņtitetu, igauņi sovu tautu i zemi suoce saukt pa cytu volūdu paraugam ‘’Eesti’’. +Latgaliskuo i latvyskuo pasauka „Igauneja” izacāluse nu Henrika kronikā apraksteituos Ugaunejis pasaukys, kura pa latvīšu lingvista Juoņa Eņdzelina guodim, bejuse izrunojama kai ‘’Ügaunija ‘’ <ref name="celojumubode">[http://www.celojumubode.lv/?valsts_page_id=2&Igaunija Igaunija]</ref> + +== Viesture == +[[Fails:Medieval Livonia 1260.svg|thumb|250px|left|Livonejis Konfederaceja 1260. godā.]] +Igauneja jau 13 godu symta suokuos pīmynāta kai igauņu patautu apdzeivuota teritoreja, sasadorūša nu 8 zemu. Piec pyrmūs krysta vaidu Baļtejā (13 godu symta suokuos) Igaunejis zeme padaleita pa pusei – Dīnavydu Igauneju īslēdze Livonejis Konfederacejā, a Pūstumu Igaunejā nu 1219 da 1346 īstateja Igaunejis gercogisti kai Danejis vaļsteibys daļu, a piečuok puordeve vuocīšu Teutonu ordynam. Jau par godu itei zeme atdūta Livonejis ordynam. Livonejis Konfederacejā nalītova Igaunejis pasaukys. Jei atdzeivynuota 1583 godā, kod pūstumu Igauneju puorjēme Švedeja i juos sadorā beja pa sevim voldoma Igaunejis gercogiste (piečuok proviņceja). Dīnavydu Igauneja 1561 godā tyka Lītovys Lelajai Kunigaitejai (LDK, nu 1569 goda Obeju Tautu Republikai). Piec Obeju Tautu Republikys i Švedejis vaidu (1600-1629) dīnavydu Igauneja ītyka Švedejis sadorā, tok nabeja sasīta ar Igaunejis proviņceju, a kūpā ar pūstumu [[Latveja|Latveju]] (Vydzeme i Reigys mīsts) īguoja Livonejis proviņcejā. + +Nu 1645 goda, kod Švedeja puorjēme nu Danejis Sāremys solu<ref name="History World">[http://www.historyworld.net/wrldhis/PlainTextHistories.asp?groupid=3064&HistoryID=ac83 History of Sweden]</ref>, da Pūstumu vaidu beigom (1721) vysa igauņu apdzeivuotuo teritoreja pīdarēja Švedejai (lelums švedyskai runojūšu dzeivuotuoju beja repatriāti da Švedejis piec vuocīšu okupacejis Ūtrūs pasauļa vaidu godūs). 1721 godā vysys piec Pūstumu vaidu švedu vaļdeituos igauņu i latvīšu zemis tyka Krīvejis imperejai. Nazkodejuo švedu Igaunejis proviņceja pasadareja par Igaunejis guberneju, a Livonejis proviņceja – par Liflandejis guberneju. + +Igaunejis napavaļdeiba īstateita 1918 gods pebraļa 24 dīnā, koč i mīreigai tū dareit trauceja vuocīšu okupaceja nu 1918 gods pebraļa da nojabra mienešam. Piec Vuocejis kapitulacejis Pyrmajūs pasauļa vaidūs 1918 gods nojabra 11 dīnā, sovu dorbu atjaunynova Igaunejis Tamlaiceiguo Vaļdeiba, kuru vadeja Konstaņtins Petss. + +Ūtrūs pasauļa vaidu suokuos 1940 gods juņa mienenesī, pa aizagreigam TSRS i Vuocejis sasprīdumam, vaļsteibu okupej Sovetu Savīneiba i jau par mienesi pataiseita Igaunejis Sovetu Socialistiskuo Republika. 1940 gods augusta mienesī Igauneja daškierta Sovetu Savīneibai. Nu 1941 da 1944 godam, kod vaļsteibu kontrolej vuocīšu armeja, Igauneju puorjam Ostlandis komisiariats i īdzeivynoj Trešuo Reiha politiku. + +Seviški lela pretiveiba Sovetu Savīneibys okupacejai aizsuoce 1987 godā, kurei, taipoš kai Latvejā, zynoma ar pasauku „Dzīšmuotuo revoluceja”. 1989 gods augusta 23 dīnā nūtyka „Baļtejis ceļš”. 1900 godā atjaunynuoja Igaunejis Apsardzeibys Savīneibu (‘’Eesti Kaitseliit’’). 1991 gods augusta 20 dīnā Vysaugstuokuos padūmis sasprīdumā pījieme Igaunejis vaļstiskū napavaļdeibu. 1991 gods seņtebra 17 dīnā Iganeja tyka par Saškiertūs Naceju Organizacejis (SNO) dalinīkvaļsteibu. 1992 gods juņa mienesī nūteik naudys reforma – rubli paslūdynoj kai nalīteigu i atjaunynoj Igaunejis kronu. Tymā pošā godā pījam jaunu konstituceju. 1944 godā Krīvejis armeja nūīt paceli nu Igaunejis teritorejis, palīkūt tik Petseru i Viru Ingrejis apleicīnē (tān ‘’de facto’’ Krīvejis Federacejis teritoreja). + +Nu 2004 gods maja 1 dīnys Igauneja irā Europys Savīneibys i nu 2004 gods marta 29 dīnys NATO dalinīkvaļsteiba. Nu 2011 gods janvara mieneša oficialais atsaskaitīņu leidzieklis Igaunejis Republikā irā [[eura]]. + +== Geografeja == +[[Fails:Satellite image of Estonia in April 2004.jpg|thumb|250px|right|Igaunejis satelitatvaigs 2004 gods apreļa mienesī]] +[[Fails:Sääretirp.JPG|thumb|250px|right|Igaunejis vokorūs dobu veidoj solys, leiči i jiurmalis]] +Igaunejis rūbežs ar [[Latveja|Latveju]] dīnavydūs irā 343 km, reitūs ar [[Krīveja|Krīveju]] 338 km. Nu 1920 da 1945 godam Igaunejis rūbežs ar Krīveju, pījimts pa 1920 goda Tarbatys Mīra Dasarunu, beja aiz Narvys upis pūstumreitūs i aiz Petseru mīsta dīnavydreitūs. Ituo teritoreja, aizjamūt 2,300 km² lelu pluotu, Stalins nalykumeigai daškīre Krīvejai Ūtrūs pasauļa vaidu beiguos. Deļ tam rūbežs iz vyds Igaunejis i Krīvejis navā nūstateits da myuslaikim. + +Igauneja irā [[Baļtejis jiura|Baļtejis jiurys]] reitu molā taišni preteim Suomejai par Suomu jiurys leici iz daaugūšuos Reitu Europys platformys iz vyds 57,3 ° i 59,5 ° pūstumu paralelem i 21,5 ° i 28,1 ° reitu meridianim. Reļjefs zams, vydyskai tik 50 m viers jiuru leidzīņa. Vaļsteibys pošu augstais kolns – Lelais Munamegs (''Suur Munamägi'') dīnavydreitūs pasaceļ 318 m viers jiuru leidzīņa. Jiurmalis garums dasnīdz 3,794 km – ite jiurai daudzi leiču i šauru. Taipoš Igauneja tur vaira kai 1,500 solu (10% vaļsteibys pluota), tok dzeivoj tik kaiduos 9-10 soluos. Leluokuos irā Sāremā i Hījumā solys<ref name="worldinfo">[http://www.worldinfozone.com/country.php?country=Estonia World Info Zone]</ref><ref name="worldinfoEstonia">[http://www.worldinfozone.com/country.php?country=Estonia World InfoZone – Estonia]</ref>, kurys kūpā ar cytom mozuokom solom sataisa div apleicīņus. + +Igaunejis klimats irā pūstumu dalis māranajuo zonā i puorīmys zonā iz vyds jiuru i koņtinentaluo klimata. Igaunejā irā četri godslaiki, vysi gondreiž vīna garuma. Vydyskuo temperatura sveirej nu 16.3&nbsp;°C Baļtejis jiurys soluos da 18.1&nbsp;°C zemisvidīnī juļa mienesī, goda pošuo syltuokajuo mienesī, i nu −3.5&nbsp;°C soluos da −7.6&nbsp;°C zemisvidīnī pebraļa mienesī, pošuo soltuokajuo mienesī. Vydyskuo goda temperatura Igaunejā irā 5.2&nbsp;°C.<ref name="EMHI">[http://www.emhi.ee/index.php?ide=6,299,302 EMHI]</ref> Vydyskais krytuļu daudzums nu 1961 da 1990 godam beja nu 535 da 727 mm par godu.<ref name=emhi2>[http://www.emhi.ee/?ide=6,299,303 Sademed, õhuniiskus]</ref> Snīga bīzums, kurs vysu bīzuokais irā dīnavydreitu Igaunejā, parostai byun nu dekabra mieneša vyds da vāleimom marta mieneša dīnom. Igaunejā irā vaira kai 1400 azaru, kuri pa lelumam mozi. Leluokais azars Peipuss (''Peipsi'') - 3,555 km2 pluotā. Vaļsteibys teritorejā i daudzi upu, tok vysys nalelys. Pošys garuokuos upis Vyhandu (162 km), Pernova (144 km) i Pyltsama (135 km). Taipoš byun daudzi pūri i peisi. + +== Politiskuo sistema == +Igaunejis Republika irā parlamentariska demokrateja, kuramā prezidentu ībolsoj parlaments (ībolsuošona kas pīktū godu), Vaļdeibu taisa premjerministris, kuru pazeimoj prezidents, i 14 ministri. Lykumlaideibys vaļdi tur parlaments ''Riigikogu'', kurs sadora nu 101 deputata. Parlamentu ībolsoj taisnā proporceigā ībolsuošonā iz četrim godim. Tīsu vaļdis pošu augstuokais organs irā ''Riigikohus'' ar 17 tīsnešim, kuru prīškinīku pazeimoj prezidents, a piečuok apstyprynoj parlaments da myužu. + +== Administrativais dalejums == +[[Fails:EVabariik.png|thumb|250px|right|Igaunejis apleicīni. Zaļuo lineja irā myuslaiku Igaunejis rūbežs ar Krīveju. Sorkonuo lineja paruodej teritorejis, deļ kuru Igaunejai irā rūbežu streideiba ar Krīveju.]] +Igaunejis Republika padaleita 15 apleiciņūs (''maakond''). Itaids dalejums irā nu 1990 gods, kod Igauneja atjaunynova napavaļdeibu nu Sovetu Savīneibys. Apleicīni seikuok padaleiti 33 mīstūs (''linn'') i 194 pogostūs (''vald''). 13 nu Igaunejis mīstim natur izškireigu pošvolda tīseibu i sadora kaudu nu pogosta pluotim. + +{| style="background:transparent;" cellspacing="2px" +| +{| class="sortable wikitable" style="text-align:left; font-size:90%;" +|- style="font-size:100%; text-align:right;" +! width="160px" | Apleiciņs || ! width="110px" | Admin. centrys || Pluots (km²) || Dzeivuotuoju skaits +|- +| Reitu Viru apleiciņs || Jehvi || 3364 || 169688 +|- +| Harjis apleiciņs || Talins || 4333 || 524938 +|- +| Hīju apleiciņs || Kardla || 1023 || 10097 +|- +| Jigevys apleiciņs || Jigeva || 2604 || 36780 +|- +| Jarvys apleiciņs || Paide || 2623 || 36130 +|- +| Vokoru apleiciņs || Hāpsala || 2383 || 27477 +|- +| Pylvys apleiciņs || Pylva || 2165 || 31002 +|- +| Pernovys apleiciņs || Pernova || 4807 || 88466 +|- +| Raplys apleiciņs || Rapla || 2980 || 36678 +|- +| Vokoru Viru apleiciņs || Rakvere || 3465 || 67151 +|- +| Sārys apleiciņs || Kuresara || 2922 || 34723 +|- +| Tarbatys apleiciņs || Tarbata || 2993 || 149605 +|- +| Valgys apleiciņs || Valga || 2044 || 34135 +|- +| Vyrovys apleiciņs || Vyrova || 2305 || 37888 +|- +| Veilanda apleiciņs || Veilands || 3422 || 55657 +|} +|} + +== Ekonomika == + +Igauneja irā jauna Europys i Pasauļa Tierdzeibys organizacejis dalinīkvaļsteiba, lūbeigai puorguojuse pi paveiceigys tierga ekonomikys i tur styprys saitys ar Vokoru Europu vaļsteibom. Pyrmuo nu [[Baļtejis vaļsteibys|Baļtejis vaļsteibom]], kura īdzeivynoja [[Eura|euru]] kai vaļsteibys valutu. Pa Krīvejis krizei 1998-1999 godā, taipoš kai cytu Baļtejis vaļsteibu ekonomika, mudrai pīauga (vydyskai 5% par godu, 2004 godā – 6,2%). Inflaceja 2004 godā beja 3%. + +Golvonuos ekonomikys atzaris – elektronika, telekomunikacejis, jiureiba. Vaļsteibā izraisteita transporta infrastruktura. Seviški zeimeigu ītaku dora jaunuos tehnologejis nu Suomejis, Švedejis i Vuocejis, treis leluokim tierdzeibys partnerim. Nasaverūt iz tū, ka īmūšais saskaitys deficits palīk lels, vaļsteibys budžets tur €151 miljonu viersejumu. 2005 gods pādejuo catūrtdalē bezdorba leidzīņs dasnīdze 0,7%. Saleidzynūt ar tū pošu 2004 gods catūrtdali, nadorbs pasamazynoja par 1,5%. +Nu 2011 gods janvara 1 dīnys Igaunejis krona puormeita iz Euru. + +{| class="sortable wikitable" style="text-align:left; font-size:90%" +|- style="font-size:100%; text-align:left" +!width="120px"|Igauneja!!width="60px"|Eksports!!width="60px"|Imports</tr> +|- +| Suomeja ||18,4%|| style="text-align:right"|18,2% +|- +| Švedeja ||12,4%|| style="text-align:right"|9% +|- +| Latveja ||8,9%||style="text-align:right"|5,7% +|- +| Krīveja ||8,1%|| style="text-align:right"|13,1% +|- +| Vuoceja ||5,1%||style="text-align:right"|12,4% +|- +| Lītova ||4,8%|| style="text-align:right"|6,4% +|- +|} + +== Demografeja == +[[Fails:Vaade Oleviste tornist 2004.jpg|thumb|250px|right|Gondreiž vīna trešdale nu vysu dzeivuotuoju dzeivoj Talinā]] +[[Fails:Narva jõgi 1999.jpg|thumb|250px|right|81,4% Narvys dzeivuotuoju irā krīvi]] +Igaunejā 2009 godā dzeivova 1 340 415 dzeivuotuoju.<ref name="Stastistics" /> Dzeivuotuoju bīzeiba 29 cylv./km². Gondreiž vīna trešdale nu vysu dzeivuotuoju dzeivoj golvysmīstā [[Talins|Talinā]]. Cyti leluoki mīsti irā studentu mīsts i dīnavydu golvonais centrys [[Tarbata]], industrejis rūbežmīsts [[Narva]] i vosorys atpyutys centrys [[Pernova]]. Vaļsteibā dreiži mazynojās dzeivuotuoju skaits deļ emigracejis, zama dzymstamuma leidzīņa i lela mierstamuma. Vydyskais vaļsteibys dzeivuotuoja vacums irā 39,9 godu. <ref name="CIA">(Angliskai)[https://www.cia.gov/library/publications/the-world-factbook/geos/en.html CŽV pasauļa faktu gruomota: Igauneja]</ref> Samārā ar pasauļa ruodejumim, vydyskais pasauļa dzeivuotuoja vacums irā 28,4 godu. Vydyskais dzeivis garums 72,82 godu. 2008 godā 69% vaļsteibys dzeivuotuoju dzeivova mīstūs, cyti soluos. + +=== Etniskais sadors === +{| class="sortable wikitable" style="text-align:left; font-size:90%" +|- style="font-size:100%; text-align:left" +!width="200px"|Tauta!!width="150px"|Dzeivuotuoju skaits +!!width="50px"|%</tr> +|- +| Igauni ||921,062|| style="text-align:right"|68.7% +|- +| Krīvi ||344,280|| style="text-align:right"|25.6% +|- +| Ukraini ||28,158||style="text-align:right"|2.1% +|- +| Boltkrīvi ||16,134|| style="text-align:right"|1.2% +|- +| Suomi ||11,035||style="text-align:right"|0.8% +|- +| Tatari ||2,487|| style="text-align:right"|0.2% +|- +| Latvīši ||2,216|| style="text-align:right"|0.2% +|- +| Puoli ||2,216|| style="text-align:right"|0.2% +|- +| Lītaunīki ||2,077|| style="text-align:right"|0.1% +|- +| Žydi ||1,900|| style="text-align:right"|0.1% +|- +| Vuocīši ||1,900|| style="text-align:right"|0.1% +|- +| ''Cyti'' ||9,084|| style="text-align:right"|0.7% +|- +|} + +=== Volūda === +Oficialuo Igaunejis Republikys volūda irā igauņu. Pa 200 goda datim, tei irā dzymtuo volūda 83,4% Igaunejis dzeivuotuoju.<ref name="today">(Angliskai)[http://www.google.lt/url?sa=t&source=web&ct=res&cd=10&url=http%3A%2F%2Fweb-static.vm.ee%2Fstatic%2Ffailid%2F460%2FNationalities.pdf&ei=csI6SqqVOdWOsAbt44DYBg&usg=AFQjCNHtSngm15vXN6mbJc8XOaTFjZBErg&sig2=64BA80uef2tFPzx6bVpjOg Estonia Today - POPULATION BY NATIONALITY]</ref> Igauņu volūda pīdar Suomugru volūdu saimei, jei irā radnesteiga suomu, līvu, votu, samu, vengru i cytom volūdom, tok navā leidzeiga sovu sābru latgaļu, latvīšu, krīvu i švedu volūdom, kurys pīdar indoeuropīšu volūdu saimei. + +15,3 % Igaunejis dzeivuotuoju dzymtuo volūda irā krīvu. Taipoš jū zyna lelums vacuoku godu igauņu, kas dzeivovuši sovetu okupacejis laikā. 2006 gods apklausys dati līcynoj, ka krīvyskai runuot var 66% vaļsteibys dzeivuotuoju, kurim krīvu volūda navā dzymtuo. Taipoš 46% runoj angliskai i 22% vuocyskai.<ref>(Angliskai)[http://ec.europa.eu/public_opinion/archives/ebs/ebs_243_en.pdf Europeans and their Languages] (14 psl.)</ref> + +=== Religeja === +[[Fails:Harju-Risti kirik2.jpg|thumb|250px|right|Risti ļutaru bazneica]] +Igauneja irā vīna nu mozuok religiskajom vaļsteibom pasaulī<ref>[http://www.country-studies.com/estonia/religion.html Country Studies: Estonia - Religion]</ref>. Pa 2000 gods datim tik 32 %<ref name="pub.stat.ee">[http://pub.stat.ee/px-web.2001/I_Databas/Population_census/16Religious_affiliation/16Religious_affiliation.asp Statistical database: Population Census 2000 - Religious affiliation]</ref> dzeivuotuoju īskaiteja sevi pi kaidys konkretys ticeibys: + +* 152 237 evangeliskī ļutari +* 143 554 pravoslavi +* 6 009 baptisti +* 5 745 Jehovys līcinīki +* 3 823 katuoli +* 2 515 staroveri +* 1 561 adveņtisti +* 1 455 metodisti +* 1 387 musulmoni +* 5 008 cytu religeju pīstuovi<ref>[http://pub.stat.ee/px-web.2001/Dialog/varval.asp?ma=PC229&ti=POPULATION+BY+THE+PLACE+OF+RESIDENCE+AND+RELIGIOUS+AFFILIATION*&path=../I_Databas/Population_census/16Religious_affiliation/&lang=1 2000 m. surašymas: pasiskirstymas pagal religijas.]</ref> + +Pa 2005 gods apklausys datim, 16% Igaunejis dzeivuotuoju „tic, ka ekzistej Dīvs”, 49% „tic, ka irā kaids naviņ gors ci dvēseliska energeja” i 10% „natic ni kaidam naviņ dīvam, ni goram ci dvēseliskai energejai”.<ref>[http://ec.europa.eu/public_opinion/archives/ebs/ebs_225_report_en.pdf (Angliskai) Eurobarometer on Social Values, Science and technology 2005 - 11 puslapis]</ref> Pa itim datim, Igaunejā irā mozuokais Dīvam ticeigū cylvāku skaits Europys Savīneibā. + +== Sports == +[[Fails: Roland Lessing Trondheim 2009.jpg |thumb|250px|right|Sleižuošona irā vīns nu pošu popularū sportu Igaunejā. Atvaigā: Rolands Lessings]] +Sports irā zeimeiga Igaunejis kulturys dale. Pa napavaļdeibys paslūdynuošonai 1918 godā, Igauneja kai naceja pīsadaleja 1920 gods Vosorys Olimpiskajuos kaituos, koč i Olimpiskuo komiteja tyka īstateita 1923 godā. Pyrmuos Zīmys Olimpiskuos kaitys beja 1924 godā. Igaunejis atleti pīsadaleja Olimpiskajuos kaituos da 1940 goda sovetu okupacejai. 1980 gods Vosorys Olimpiskuo kaitu buruošonys regata nūtyka golvysmīstā [[Talins|Talinā]]. Atjaunynūt napavaļdeibu, Igauneja pīsadalejuse vysuos Olimpiskajuos kaituos. Vysuvaira medaļnīku Igaunejai irā vīglatletikā, ceiksteišonuos i leidzonumu sleižuošonā. + +Kīkings irā vysā jauns sports, kuru radeja Ado Kosks Igaunejā 1996 godā. Tys irā sports ar specialai puormeitim šyupeļom, kuramuos sportists raudzej apsagrīzt par 360 gradu. + +== Verīs taipoš == +* [[Igaunejis mīstu saroksts]] + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Europys vaļsteibys}} + +{{DEFAULTSORT:Igauneja}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Igauneja| ]] + a2i5g7wphyaflsen1713n07cjz3zav1 + + + + Igaunejis mīsti + 0 + 139 + + 29086 + 29027 + 2013-03-11T10:37:25Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q106984]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Tallinn-old-town.jpg|thumb|right|160px|[[Talins]]]] +[[Fails:Town Hall23 2008.JPG|thumb|right|160px|[[Tarbata]]]] +[[Fails:Narva old town 2009.jpg|thumb|right|160px|[[Narva]]]] +[[Fails:Tammiku asum 2 2008.jpg|thumb|right|160px|[[Kohtla Jerve]]]] +[[Fails:Parnu01.jpg|thumb|right|160px|[[Pernova]]]] +[[Fails:In line for church (but not for mass).jpg|thumb|right|160px|[[Veilands]]]] +[[Fails:Rakvere, hrad.jpg|thumb|right|160px|[[Rakvere]]]] +[[Fails:Maarduveneoigeusukirik100906.jpg|thumb|right|160px|[[Mārda]]]] + +{| border="2" cellpadding="4" cellspacing="0" class="bonita" style="margin: 0.5em 0.5em 0.5em 1em; padding: 0.5em; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;" +|- +|colspan="9" align="center" bgcolor="#DDDDDD" | '''Igaunejis mīsti''' +|- +|rowspan="2" align="center" bgcolor="#EEEEEE" | '''Vīta''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Gerbs''' || colspan="2" align="center" bgcolor="#EEEEEE" | '''Pasauka''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Mīsta tīseibys''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Dzeivuotuoju sk. <br /> (2001 g. apskaite)''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Pluots, km²''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Apleiciņs''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Cytys pasaukys''' +|- +|align="center" bgcolor="#EEEEEE" | '''latgaliskai''' || align="center" bgcolor="#EEEEEE" | '''igauniskai''' +|- +| 1. +| [[Fails:Tallinn greater coatofarms.png|45 px|center]] +| [[Talins]] +| '' Tallinn +| 1248 g. +| 400 378 +| 159,2 +| Harjis +| Reveļs, Revalis +|- +| 2. +| [[Fails:Tartu coat of arms.svg|30 px|center]] +| [[Tarbata]] +| '' Tartu +| 1262 g. +| 101 169 +| 38,8 +| Tarbatys +| Dorpats +|- +| 3. +| [[Fails:Narva vapp.svg|30 px|center]] +| [[Narva]] +| '' Narva +| 1345 g. +| 68 680 +| 84,54 +| Reitu Viru +| +|- +| 4. +| [[Fails:Coat of arms of Kohtla-Jarve.svg|30 px|center]] +| Kohtla Jerve +| '' Kohtla-Järve +| 1946 g. +| 47 679 +| 41,77 +| Reitu Viru +| +|- +| 5. +| [[Fails:Et-Parnu coa.svg|30 px|center]] +| [[Pernava|Pernova]] +| '' Pärnu +| 1251 g. +| 45 500 +| 32,22 +| Pernovys +| +|- +| 6. +| [[Fails:Et-Viljandi coa.svg|30 px|center]] +| [[Veilands]] +| '' Viljandi +| 1283 g. +| 20 756 +| 14,62 +| Veilanda +| Viljandis +|- +| 7. +| [[Fails:Sillamae coatofarms.png|30 px|center]] +| Silamaje +| '' Sillamäe +| 1957 g. +| 17 199 +| 10,54 +| Reitu Viru +| +|- +| 8. +| [[Fails:Rakvere vapp.svg|30 px|center]] +| [[Rakvere]] +| '' Rakvere +| 1302 g. +| 17 097 +| 10,64 +| Vokoru Viru +| +|- +| 9. +| [[Fails:EST Maardu linn COA.png|30 px|center]] +| [[Mārda]] +| '' Maardu +| 1980 g. +| 16 738 +| 22,76 +| Harjis +| +|- +| 10. +| [[Fails:Kuressaare coatofarms.png|30 px|center]] +| [[Kuresara]] +| '' Kuressaare +| 1563 g. +| 14 925 +| 14,95 +| Sārys +| +|- +| 11. +| [[Fails:Voru coatofarms.png|30 px|center]] +| [[Vyrova]] +| '' Võru +| 1784 g. +| 14 879 +| 13,24 +| Vyrovys +| +|- +| 12. +| [[Fails:Valga coat of arms.svg|30 px|center]] +| [[Valga]] +| '' Valga +| 1584 g. +| 14 323 +| 16,54 +| Valgys +| +|- +| 13. +| [[Fails:Johvi coatofarms.png|30 px|center]] +| Jehvi +| '' Jõhvi +| 1938 g. +| 12 112 +| 7,62 +| Reitu Viru +| +|- +| 14. +| [[Fails:Haapsalu coat of arms.svg|30 px|center]] +| [[Hāpsala]] +| '' Haapsalu +| 1279 g. +| 12 054 +| 10,59 +| Vokoru +| +|- +| 15. +| [[Fails:Paide suurvapp.png|30 px|center]] +| Paide +| '' Paide +| 1291 g. +| 9 642 +| 10,036 +| Jarvys +| +|- +| 16. +| [[Fails:Keila coatofarms.png|30 px|center]] +| Keila +| '' Keila +| 1938 g. +| 9 388 +| 11,25 +| Harjis +| +|- +| 17. +| +| Kivielis +| '' Kiviõli +| +| 7405 +| +| Reitu Viru +| +|- +| 18. +| +| Tapa +| '' Tapa +| +| 6765 +| +| Vokoru Viru +| +|- +| 19. +| [[Fails:EST Põlva linn COA.gif|30 px|center]] +| [[Pylva]] +| '' Põlva +| 1993 g. +| 6 467 +| 5,5 +| Pylvys +| +|- +| 20. +| +| Jigeva +| '' Jõgeva +| +| 6420 +| +| Jigevys +| +|- +| 21. +| +| Tiri +| '' Türi +| +| 6324 +| +| Jarvys +| +|- +| 22. +| +| Elva +| '' Elva +| +| 6020 +| +| Tarbatys +| +|- +| 23. +| +| Rapla +| '' Rapla +| +| 5758 +| +| Raplys +| +|- +| 24. +| +| Sauje +| '' Saue +| +| 4958 +| +| Harjis +| +|- +| 25. +| +| Pyltsama +| '' Põltsamaa +| +| 4849 +| +| Jigevys +| +|- +| 26. +| +| Paldiski +| '' Paldiski +| +| 4248 +| +| Harjis +| +|- +| 27. +| +| Sindi +| '' Sindi +| +| 4179 +| +| Pārnovys +| +|- +| 28. +| +| Kunda +| '' Kunda +| +| 3899 +| +| Vokoru Viru +| +|- +| 29. +| [[Fails:Kardla coatofarms.png|30 px|center]] +| [[Kardla]] +| '' Kärdla +| +| 3773 +| +| Hīju +| +|- +| 30. +| +| Loksa +| '' Loksa +| +| 3494 +| +| Harjis +| +|- +| 31. +| +| Kehra +| '' Kehra +| +| 3224 +| +| Harjis +| +|- +| 32. +| +| Tyrva +| '' Tõrva +| +| 3201 +| +| Valgys +| +|- +| 33. +| +| Narvys Greiva +| '' Narva-Jõesuu +| +| 2983 +| +| Reitu Viru +| +|- +| 34. +| +| Rapina +| '' Räpina +| +| 2967 +| +| Pylvys +| +|- +| 35. +| +| Tamsala +| '' Tamsalu +| +| 2614 +| +| Vokoru Viru +| +|- +| 36. +| +| Kilingu Syls +| '' Kilingi-Nõmme +| +| 2223 +| +| Pernovys +| +|- +| 37. +| [[Fails:Coat of arms of Otepää Parish.svg|30 px|center]] +| [[Otepa]] +| '' Otepää +| 1936 g. +| 2 219 +| 4,3 +| Valgys +| +|- +| 38. +| +| Karksi Nuja +| '' Karksi-Nuia +| +| 1997 +| +| Veilanda +| +|- +| 39. +| +| Pisi +| '' Püssi +| +| 1872 +| +| Reitu Viru +| +|- +| 40. +| +| Mustve +| '' Mustvee +| +| 1753 +| +| Jigevys +| +|- +| 41. +| [[Fails:Coat of arms of Võhma.svg|30 px|center]] +| Vyhma +| '' Võhma +| 1993 g. +| 1 596 +| 1,93 +| Veilanda +| +|- +| 42. +| [[Fails:Antsla valla vapp.gif|30 px|center]] +| Antsla +| '' Antsla +| 1938 g. +| 1 547 +| +| Vyrovys +| +|- +| 43. +| [[Fails:EE lihula.gif|30 px|center]] +| Lihula +| '' Lihula +| 1999 g. +| 1 497 +| +| Vokoru +| +|- +| 44. +| [[Fails:Coat of Arms of Abja.svg|30 px|center]] +| Abja Paluoja +| '' Abja-Paluoja +| 1993 g. +| 1 417 +| +| Veilanda +| +|- +| 45. +| [[Fails:Suure-Jaani coatofarms.png|30 px|center]] +| Lelī Jāni +| '' Suure-Jaani +| 1938 g. +| 1 324 +| 2,22 +| Veilanda +| +|- +| 46. +| [[Fails:Kallaste coatofarms.png|30 px|center]] +| Kalaste +| '' Kallaste +| 1938 g. +| 1 211 +| 1,9 +| Tarbatys +| +|- +| 47. +| [[Fails:EST Mõisaküla linn COA.gif|30 px|center]] +| Meisakila +| '' Mõisaküla +| 1938 g. +| 1 165 +| 2,3 +| Veilanda +| +|} + +[[Kategoreja:Igaunejis mīsti| ]] +[[Kategoreja:Saroksti]] + 55bw6bz91fv0q2oz3rl96i3hu0cw805 + + + + Igauņu volūda + 0 + 140 + + 30302 + 28191 + 2014-04-19T19:19:16Z + + Onuphriate + 2353 + + wikitext + text/x-wiki + {{Infoskreine Volūda +| name = Igauņu volūda +|nativename=eesti keel +|familycolor=Uralīšu +|states=[[Igauneja]], [[Krīveja]] +|region=[[Pūstumu Europa]] +|speakers=1 048 660 +|fam1=[[Uralīšu volūdys|Uralīšu]] +|fam2=[[Suomugru volūdys|Suomugru]] +|fam3=[[Suomu-permīšu volūdys|Suomu-permīšu]] +|fam4=[[Baļtejis suomu volūdys|Baļtejis suomu]] +|script=[[Latiņu alfabets|latiņu]] +|nation=[[Igauneja]]<br />[[Europys Savīneiba]] +|agency=[[Igauņu volūdys iņstituts]] +|iso1=et +|iso2=est +|iso3=est +|lc1=ekk|ld1=standarta igauņu|ll1=none +|lc2=vro|ld2=Vyrovīšu|ll2=vyrovīšu volūda +}} + +'''Igauņu volūda''' — vīna nu [[Suomugru volūdys|suomugru volūdu]] grupys volūdu, jei radneiga [[Suomu volūda|suomu]], līvu, votu, samu, [[Vengru volūda|vengru]] i cytom volūdom, tok navā leidzeiga sovu sābru - latgaļu, latvīšu, krīvu i švedu volūdom, kurys pīdar indoeuropīšu volūdu saimei. Igauņu volūda irā [[Igauneja|Igaunejis Republikys]] i Europys Savīneibys oficialuo volūda. Igauņu, suomu, vengru i [[Maļtīšu volūda|maļtīšu]] volūdys vīneiguos vaļstiskuos volūdys Europys Savīneibā, kurys napīdar pi [[indoeuropīšu volūdys|indoeuropīšu volūdu]] saimis. Pa 2000 gods datim, igauņu volūdu kai dzymtū runoj 83,4% Igaunejis dzeivuotuoju. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Uralīšu volūdys]] +[[Kategoreja:Igauņu volūda]] +[[Kategoreja:Volūdys]] +[[Kategoreja:Igauneja]] + psyk2x4p6odj39i7o9mdy1qg3i0gjpt + + + + Ignats Asāns + 0 + 141 + + 29835 + 20285 + 2013-04-15T03:35:43Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Ignats Asāns''' (1874 – 1918) — latgaļu gruomotu i [[Viesteitivi|viesteitivu]] laidiejs, rakstinīks, ļaudyskys dareituojs. + +Dzims Bukmuižys pog. Bosalygu solā. Nu 19 gs. beigu dzeivuojs [[Pīterpiļs|Pīterpilī]]. + +Bejs laikrokstu ''Jaunys zinis'' (1912-1914) i ''Ļaužu bolss'' (1917) redaktors. + +Pīrakstejs gruomotu ''Latvīši'' (1909), ''Kai dzeivoj latvīši Pīterburgā'' (1912), aprakstejumu ap gruomotdruka viesturi ''Roksts i gruomota'' (1909). + +{{DEFAULTSORT:Asāns, Ignats}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + ptk6v45q4zb6j9vuszfzrk5bapm5e97 + + + + Ilona Staprāne + 0 + 142 + + 11474 + 11127 + 2011-03-24T20:58:58Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Ilona Staprāne''' (pa dzimšonai Peiča, 1935) — biokimike. + +Dzymuse 1935 g. apreļa 22 d. [[Sīnuoja|Sīnuojā]]. Beiguse Latvejis vaļstiskū universitetu (niu - Latvejis universitets) proteinu biokimejis atzarē. Tiemiejuse apopiloproteinu kimejis i piloproteinu metabolizma problemys. Nūstatejuse piloproteinu puormeju dobyskuos i eksperimentaluos naveseleibys, specializiejusēs fizikalajuos un fizikalai kimiskajuos proteinu analizēs. + +{{DEFAULTSORT:Staprāne, Ilona}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + jl5wvqsjpnxsiwxw0upwaf2aqsk22n3 + + + + Italeja + 0 + 144 + + 31537 + 31294 + 2016-08-07T11:08:54Z + + DARIO SEVERI + 3389 + + Update inf. from wiki (it) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Italia'''<br />'''Italeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Italy.svg|150px|border]] +| align="center" width="140px" | [[Fails:Italy-Emblem.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Italy.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Giorgio Napolitano +|- +| Ministru prezidents || Matteo Renzi +|- +|| Pluots || 301 230 km² +|- +|| Dzeivuotuoju skaits || 60 665 551 (31/12/2015) +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Italeja''' (ital.: ''Italia'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + + + + +[[Kategorejis:Italeja]] + hslw95mrvvdxefgljcs52xdq2wolguh + + + + Iudiņa cyklys + 0 + 145 + + 29085 + 28193 + 2013-03-11T10:37:06Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q81041]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Water cycle.png|thumb|250px]] + +Zemis '''iudiņa cyklys''' aba hidrologiskais cyklys (anglīšu: ''water cycle, hydrologic cycle''; krīvu: ''круговорот воды, гидрологический круговорот, влагооборот''; latvīšu ''ūdens cikls, hidroloģiskais cikls'') — iudiņa nanūstuojūša cirkulaceja Zemis hidrosferā saulis syltuma ītakā. Cytaiž pasokūt, ite vīns nu pošsvareigūs dobys procesu, kura īmā iudiņs nu zemisviersa, reagādams iz Saulis syltumu, pasaceļ gaisā suta formā i atsaļs grīžās da zemisviersa [[Krytuli|krytuļu]] formā. + +Saulis syltuma ītakā iudiņs nu Zemis [[Iudiņtvere|iudiņtveru]], [[Augzeme|augzemis]] i vegetacejis pasaceļ gaisā kai suts. Jis pasaceļ atmosferā, atsaļ i byudams vēļ škeistā stātē voi jau lads formā, sataisa muokuļus. Kod iudiņa lasis voi lads kristaleni teik par leli i gryuti, jī grīžās da Zemis kai [[krytuli]]. Daļa nu krytuļu iudiņa sasadzer augzemē, auguoji juo pīsasyuc, a voi jis izafiļtrej da zamzemis iudiņu. Palykušuo daļa īteik ryučūs, upēs i, vysa golā, okeanūs. Zemisviersa iudiņs izgaroj i suoc cyklu nu jauna. + +[[Kategoreja:Apleiczineiba]] +[[Kategoreja:Geografeja]] +[[Kategoreja:Iudiņs]] + r7f8zi09vn3mc8uvdqk5huiae1jaecv + + + + Iudiņs + 0 + 146 + + 28194 + 26993 + 2013-03-07T18:00:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 186 interwiki links, now provided by [[d:|Wikidata]] on [[d:q283]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| width="300" border="1" cellpadding="5" cellspacing="0" align="right" style="margin-left:1em" +|+ <font size="+1">'''Soveibys'''</font> +|- +! colspan="2" align="center" bgcolor="#FFDEAD" | Kūpeiguos +|- +| Pasauka +| Iudiņs +|- +| Molekularuo geometreja +| [[Fails:Water molecule dimensions.svg|150px|Iduiņa molekulys diagrama ar atostumim]] +|- +| Kimiskuo formula +| [[Iudineklis|H]]<sub>2</sub>[[Skuobeklis|O]] +|- +| Izavierīņs +| Bezkruoseigs škeistums +|- +! colspan="2" align="center" bgcolor="#FFDEAD" | Fizikaluos +|- +| Atomsvors +| 18,01528 [[Atommasys vīninis|amu]] +|- +| Izalaisšonys punkts +| 273,15 K (0&nbsp;°C) +|- +| Viršonys punkts +| 373,15 K (100&nbsp;°C) +|- +| Kritiskuo temperatura +| 674 K +|- +| Kritiskais spīdīņs +| ''2,21 × 10<sup>7</sup> Pa'' +|- +| Bīznums +| 1,0 ×10<sup>3</sup> kg/m&sup3; (4&nbsp;°C) +|- +! colspan="2" align="center" bgcolor="#FFDEAD" | Termokimiskuos +|- +| Δ<sub>f</sub>H<sup>0</sup><sub>gazeigs</sub> +| -241,83 [[Džauls (vīnine)|kJ]]/[[Mols (vīnine)|mol]] +|- +| Δ<sub>f</sub>H<sup>0</sup><sub>škeists</sub> +| -285,83 kJ/mol +|- +| Δ<sub>f</sub>H<sup>0</sup><sub>cīts</sub> +| -291,83 kJ/mol +|- +| S<sup>0</sup><sub>gazeigs, 1 bar</sub> +| 188,84 J/mol·K +|- +| S<sup>0</sup><sub>škeists, 1 bar</sub> +| 69,95 J/mol·K +|- +| S<sup>0</sup><sub>cīts</sub> +| 41 J/mol·K +|} +'''Iudiņs''' — [[Pasauļs|pasaulī]] vysucīšuok pasaplatejušuo [[lītne]]. Pasauļa iudiņa apvolks aba [[Zeme (planeta)|Zemis]] [[hidrosfera]] aizjam 71 % Zemis viersa. + +[[Kategoreja:Kimeja]] +[[Kategoreja:Iudiņs| ]] + bda4fgaa8j0coda3yednhfkeemjzdga + + + + Iudiņture + 0 + 147 + + 28197 + 24747 + 2013-03-07T18:00:23Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 54 interwiki links, now provided by [[d:|Wikidata]] on [[d:q131681]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Iudiņture''' (baļtīšu: ''ūdenskrātuve''; anglīšu: ''reservoir''; krīvu: ''водохранилище'') — muoksleiga [[iudiņtvere]], sataiseita, kab pīlaseitu iudiņa, jū laiceitu i piečuok izlītuotu ekonomiskim snāgim. + +Latgolā ītaiseitys napalelys iudiņturis pi vīteja māra iudiņelektrejstaceju: +* iz upu (Viļānu iudiņture iz Maltys upis Viļānu nūvodā, Korna i Pelieču iudiņturis iz Jašys upis Preiļu i Ribinišku nūvodā, Straumis iudiņture iz Dubnys upis Preiļu nūvodā), a voi; +* iz azaru iztaku (Cireiša iudiņture Aglyunys nūvodā, Piļcinis iudiņture Ludzys nūvodā i ct.). + +Latvejis teritorejā pošleluos iudiņturis irā Reigys IES iudiņture (3580 ha), Pļaveņu IES iudiņture (3490 ha) i Keguma IES iudiņture (2490 ha) iz Daugovys. + +[[Kategoreja:Geografeja]] + eoib6angvojfmioxgt0h6yqafkglpue + + + + Iudiņtvere + 0 + 148 + + 28195 + 25477 + 2013-03-07T18:00:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 36 interwiki links, now provided by [[d:|Wikidata]] on [[d:q15324]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Iudiņtvere''' (anglīšu: ''body of water''; krīvu: ''водоём''; latvīšu: ''ūdenstilpe'') — nūtalejs voi laiceigs iudiņa pīsalasejums dobyskūs voi muoksleigūs zemisviersa īleikumūs, kurymā iudiņs stuovūšs voi ar napalelu nūteciejumu. Iudiņtveris irā azari, [[Iudiņture|iudiņturis]], muorki, jiurys, okeani. + +[[Kategoreja:Geografeja]] + nmk6w4lf7w46y5q0vmxg1ltj9p3uebj + + + + Iņternets + 0 + 149 + + + 2076 + 2075 + 2011-03-19T13:03:34Z + + SPQRobin + 2 + + + 9 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT[[Škārsteiklys]] + qsfnxyrsh8dx28439rpd468z274a0le + + + + Janina Kūrseite + 0 + 150 + + 31779 + 31778 + 2016-11-29T06:03:50Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[Fails:Flickr - Saeima - 10.Saeimas deputāte Janīna Kursīte-Pakule.jpg|right|200px|thumb|Janina Kūrseite]] +'''Janina Kūrseite''' (pa pylnam vuordam ''Janina Kūrseite-Pakule'') (1952) — latgalīšu literaturzinineica, folkloriste. + +Dzymuse 1952 g. [[Daugpiļs rajons|Daugpiļs rajona]] (niule — [[Vuorkovys nūvods|Vuorkovys nūv.]]) Randaukys solā. Vuicejusēs Amuļu ostoņgadeigajā školā, Leivuona 1 vydsškolā. Studiejuse [[Tarbatys universitets|Tarbatys universitetā]], [[Latvejis vaļstiskais universitets|Latvejis vaļstiskajā universitetā]] (niule - [[Latvejis universitets]]), jū beiguse 1976 godā. Darejuse Latvejis Zineibu akademejis Literaturys, folklora i muokslys institutā, Latvejis kulturys akademejā. Latvejis universiteta Filologejis fakuļteta dekane. Habilitātuo filologejis doktore, profesore Literaturys katedrā. + +*'''Gruomotys''' + +Monografejis baļtīšu volūdā (daļā nu jūs dasadūrts i latgalīšu kulturai, latgalīšu folkloram): +* ''Laikazeimis poezejā'' ("Laikazīmes dzejā", 1988); +* ''Latvīšu poezejis versifikaceja 20 gs. suokuos. 1900-1919'' ("Latviešu dzejas versifikācija 20. gs. sākumā. 1900.-1919.", 1996); +* ''Raiņa poetika'' ("Raiņa dzejas poētika", 1996); +* ''Latvīšu folklors mitu spīgelī'' ("Latviešu folklora mītu spogulī", 1996); +* ''Mitiskums folklorā, literaturā, muokslā'' ("Mītiskais folklorā, literatūrā, mākslā", 1999); +* ''Poezejis vuordineica'' ("Dzejas vārdnīca", 2002); +* ''Latgola: volūda, literatura, folklors'' ("Latgale: valoda, literatūra, folklora", kūpā ar [[Anna Stafecka|Annu Stafecku]], 2003). + +*'''Rakstīni''' +Vaira kai 300 publikaceju ziniskūs rakstīņu lasejumūs i periodikā. + +*'''Apduovani''' +Daškierts Lītovys [[Gedimina ordiņs]]. + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 1mow0vmcihzkl12z6d3ppoyvcsd28sa + + + + Janopolis svātveiksna + 0 + 151 + + 11482 + 10453 + 2011-03-24T21:00:18Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Janopolis svātveiksna''' — [[lelkūks]], [[Senejī latgali|senejūs latgaļu]] [[svietneica]] [[Rēznis nūvods|Rēznis nūvoda]] [[Greiškānu pogosts|Greiškānu pogostā]]. + +Augšonys vīta: 140 [[Metris|m]] iz [[Reiti|R]] nu [[Rēznis – Dagdys saša|Rēznis – Dagdys sašys]], 650 m iz [[Dīnavydreiti|DR]] nu [[Janopolis muiža|Janopolis muižys]], gruova molā, 7 m da Grybuļu klieveņa. + +Koordinatys: N 56°27'27,9" E 27°23'04,3" + +Māri: +* [[apleikmārs]] – 4,57 m; +* [[augstums]] – 9,2 m; +* [[vaiņuka projekceja]] – 55 m2; +* zoru garums – da 5,1 m. + +Veiksnys obadivejis viersyunis seņ nūlyuzušys 4 m augstumā, niu kuplai zaļoj jaunī zori. Veiksnys zorā vēļ redzīs dzeļzine obruoza rameņa. + +[[Kategoreja:Latgolys dobys pīminiekli]] + rqmtcp92np2z36hqg5pv6c6y2jlonk3 + + + + Japoneja + 0 + 152 + + 32088 + 31981 + 2017-06-26T12:12:16Z + + DARIO SEVERI + 3389 + + Updade inf. from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Japoneja'''<br />'''日本'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Japan.svg|150px|border]] +| align="center" width="140px" | [[Fails:Imperial Seal of Japan.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Japan-location-cia.gif|300px]] +|- +|| Golvysmīsts || Tokio +|- +|| Vaļsteibys volūda || +|- +| Imperators || Akihito +|- +| Ministru prezidents || Šinzō Abe +|- +|| Pluots || 377 944 km² +|- +|| Dzeivuotuoju skaits || 126 740 000 <small>(2017)</small> +|- +|| [[Laika zona]] || (UTC +9) +|} +'''Japoneja''' ({{Vol-ja|日本}}) — solu vaļsteiba [[Azeja|Azejā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Azejys vaļsteibys}} + +[[Kategoreja:Japoneja]] +[[Kategoreja:Pasauļa vaļsteibys]] + e0tzd5fnorfde7wl47tfrofzqh8h6xi + + + + Jezups Akelevičs + 0 + 153 + + 29823 + 18636 + 2013-04-15T02:31:48Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Jezups Akelevičs''' (1768 voi 1779 (?) — 1842) — pyrmuos latgaļu popularziniskuos gruomotys ''Eysa mociba ap audzeyszonu biszu...'' (1832) autors. + +Pīrakstejs latgaļu gramatiku ''„Grammatyka Inflantsko-Łotewska dla uczących się Ięzyka Łotewskiego...”'' (1817). + +Beidzs Kruoslovys dvēseliskū seminaru, garus godus darejs Leiksnā, ryupynuojīs ap bārnu školuošonu. Mirs Viļnē. + +{{DEFAULTSORT:Akelevičs, Jezups}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 9651r3evhzdyuepob28p9z9fv3wdbej + + + + Jezups Šmulāns + 0 + 154 + + 11485 + 10456 + 2011-03-24T21:00:47Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Jezups Šmulāns''' — Ludzys apleicīnis pūdars, nu kura omotu vuicejīs vīns nu vysuzeimeiguokūs Latgolys pūdnīku [[Ontons Šmulāns]], taipoš [[Apolinarejs Dieglis]]. + tcudr5zs1agvbfcbm5bmyq9g1n3nik3 + + + + Jiureiba + 0 + 155 + + 11486 + 10457 + 2011-03-24T21:00:57Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Jiureiba''' (anglīšu: ''maritime affairs''; krīvu: ''морское дело''; latvīšu: ''jūrlietas'') — tautsaimesteibys atzare, sasīta ar jiuru iudiņu ekonomisku izlītuošonu (vysu pyrma, ar jiuru transportu i ziveibu). + +== Jiuru arhitektura == +* [[Speidyns]] + +[[Kategoreja:Jiureiba| ]] + 5zxht7h2w5j0w3sep1y7erkxyiw70p0 + + + + Juoņs (Eugeņs) Karūdznīks + 0 + 156 + + 13715 + 13714 + 2011-04-25T18:52:32Z + + Glossologist + 79 + + + wikitext + text/x-wiki + '''Juoņs (Eugeņs) Karūdznīks''' (pa eistyn. vuordam: ''Eugeņs Ruška'', 1921 — 2003) — latgalīšu ailinīks, publicists, grafiks, komponists, [[Latgalīšu himna|latgalīšu himnys]] autors. + +Dzims [[Zviergzdiņa pogosts|Zviergzdiņa pogosta]] Aizpūris solā. Vuicejīs [[Rēznis apleiciņs|Rēznis apleiciņa]] [[Piļcine (Rēznis nūvods)|Piļcinis]] pamatškolā, [[Rēznis školuotuoju instituts|Rēznis školuotuoju instituta]] paraugškolā, [[Rēznis gimnazeja|Rēznis gimnazejā]], [[Rēznis tautys koņservatoreja|Rēznis tautys koņservatorejā]]. [[Latvejis universitets|Latvejis universitetā]] studiejs tīseibu. Darejs [[Kuļdeiga|Kuļdeigys]] muzykys školā, [[Reigys porcelana taisetova|Reigys porcelana taisetovā]]. + +Sovetu laikā cīts nu drūsuma īstotu saksteišonu, bejs damīgts cieški meit dzeivisvītys i sagvuordus. Sovetu laikā, da Latvejis napavaļdeibys atjanunynuošonys (1988), ailis paslapyn syutejs iz Vuoceju, tī juos izdrukavuotys gruomotuos. + +Cyti sagvuordi - ''Eugeņs Rūškāns'', ''Krystužāns'', ''Zamzarāns'', ''Abavietis''. + + +* '''Poezejis lasīni''': +** ''Laiks i nalaiks'' (1974); +** ''Latgaļu melodejis'' (1977); +** ''Treis vaiņuki''; +** ''Fabulys''; +** ''Cyrma brūninīks'' (1992). + +Nadabeigts, rūkrokstā palics eposs ''Latgali''. + + +Komponiejs vērtini skondorbu, tymā vydā i [[Latgalīšu himna|latgalīšu himnu]] ''Skaidruo volūda'' (ar [[Anna Rancāne|Annys Rancānis]] vuordim. Garus godus vadejs [[Reigys latgalīšu bīdreiba|Reigys latgaļīšu bīdreibys]] koru. + + +[[Kategoreja:Zeimeigi Latgolys ļauds]] +[[Kategoreja:Ailinīki]] + ih8oj5qkboph9u4gldhcs15z6m9lv2z + + + + Juoņs Cybuļskis + 0 + 157 + + 31283 + 10459 + 2016-01-26T11:44:25Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + '''Juoņs Cybuļskis''' (1911 — 1997) — latgaļu kulturviesturnīks, publicists. + +Dzims 1911 g. [[Nautrānu pogosts|Nautrānu pogosta]] Dekteru solā. 1949 g. aptīsuots iz 6 godu damīgtuo dorba Volgys-Donys kanala stateibā. + +Rakstejs periodikā ap latgaļu literarū volūdu, latgalīšu literaturu. Sastatejs latgaļu vuordineicu (cikom kas jei rūkrokstā), pīrakstejs pīminiejumu i apguodu gruomotu ''Myuža dīnys, myuža dūmys'' (1995). + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + sucvr932tvsq5aqsrk0rkixix8zxusr + + + + Juoņs Eļksnis + 0 + 158 + + 31308 + 29907 + 2016-02-19T19:54:04Z + + Edgars2007 + 114 + + + added [[Category:Zeimeigi Latgolys ļauds]] using [[Help:Gadget-HotCat|HotCat]] + wikitext + text/x-wiki + '''Juoņs Eļksnis''' (dzims 1933 gods oktobra 21 d. [[Drycānu pogosts|Drycānu pogosta]] Asynovys solā) — Latgolys kulturys aktivists, zeimeigs latgalīšu gruomotlaidiejs, latgalīšu literaturys atdzimšonys vadynuotuojs. + +Vuicejīs Drycānu pamatškolā. Iņteress ap gruomotom radeja aizalikšonu tikt par gruomatlaidieju. Ar paraudzeibu beidzs Reigys poligrafejis omotškolu, darejs SSRS Zineibu akademejis 2 drukaunē Moskvā. Gataviejs izlaisšonai rymtys gruomotys krīvu, anglīšu, vuocīšu, praņcīšu, arabu i kinīšu volūduos. + +Piec pīsaceiguos dīnests grīzīs da Rēznis, darejs stateibys tresta kūkapdaris cehā par meistri, Rēznis 14 omotvydsškolā par latvīšu volūdys, literaturys i estetikys docātuoju, direktora vītinīku vuiceibu i pīgatavis dorbā. Aizacīs beidzs Daugpiļs pedagogiskuo instituta Filologejis fakuļtetu. + +Atdzimšonys jutūnē 1990 gods apreļa mienesī Rēznē īstateja ļaudyskū organizaceju ''[[Latgolys kulturys centrys]]''. Beja beiguse dareit [[Minhena latgaļu laistuve|latgaļu laistuve Minhenā]] partū vīns nu [[Latgolys kulturys centrys|Latgolys kulturys centra]] [[Snāgs|snāgu]] beja atjaunynuot latgaļu gruomotu laisšonu. 1990 gads juņa mienesī Juoņs Eļksnis tyka par jaunīstateituos [[Latgolys kulturys centra laistuvis]] [http://www.lkcizdevnieciba.lv www.lkcizdevnieciba.lv] vadeituoju. Jis daudzi dadarejs, kab laistuve styprynuotūs i raisteitūs. Nu īsuoku daguojs cieški meit ustobys, lelumu redigiešonys i sagatviešonys drukam i plateišonys dorba darejs pats J. Eļksnis, gruomotys drukavuotys vysaidūs mīstūs - [[Rēzne|Rēznē]], [[Ludza|Ludzā]], [[Modyune|Modyunē]]. Nu 1997 gods, kod Rēznē beja atdareita drukaune ''Latygolys druks'', laistuve atroda sātvītu juos paspuornē. Niule laistuvē vysaidūs projektūs īvadynuoti 9 dareituoji. + +Caur J. Eļkšņa ryupasti Rēznē izdrukavuotys vaira kai 150 gruomotu latgaļu volūdā, taipoš gruomotys ap Latgolu cytuos volūduos. Kūpeigais izlaistūs gruomotu skaits - vaira kai 450. Regularai drukavojamī laidīni latgalīšu volūdā: +* ''[[Acta Latgalica]]''; +* ''[[Olūts]]''; +* ''[[Tāvu zemis kaleņders]]''. + +Laidiejs pats pīrakstejs div gruomotys baļtīšu volūdā: +* ''Gruomotys muokslyskuo konstruiešona'' ("Grāmatas mākslinieciskā konstruēšana", 1996); +* ''Laideiba'' ("Izdevējdarbība", 2000). + +J. Eļksnis irā [[Latgolys kulturys centrys|Latgolys kulturys centra]] volda pirminīks, [[Latgolys tiemiešonys instituts|Latgolys tiemiešonys instituta]] volda bīdrys, [[Latgalīšu ortografejis komiseja|Latgalīšu ortografejis komisejis]] bīdrys i [[Rēznis augstškola|Rēznis augstškolys]] Humanitaruo fakuļteta lektors. + +Par īlicīni Latgolys kulturys [[Raisteiba|raisteibā]] 1994 gods novembra 7 d. apduovanāts ar V ailis Treju zvaigžņu ordini. + +Atraits. + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + jrzi7ao1zdyatfr5iywgn8an6ny9txh + + + + Juoņs Lukaševičs + 0 + 159 + + 11489 + 11128 + 2011-03-24T21:01:27Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Juoņs Lukaševičs''' (1699 — 1779) — latgaļu literats (dvēseliskuos literaturys autors), puorvārsuojs, latgaļu literaruos volūdys aizsuociejs. + +Dzims 1699 01 01 Lītovā. Jezuits, bejs par bazneickungu Preiļūs, Izvoltā, Pušā, Varakļuonūs. Mirs 1779 04 05 Izvoltā, paglobuots Izvolta bazneicā. + +{{DEFAULTSORT:Lukasevics, Juons}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 3nbori8fi5tpakbbzphrhad7ukdr0vw + + + + Jurs Cybuļs + 0 + 160 + + 30209 + 30075 + 2014-01-25T06:46:55Z + + Rschen7754 + 1689 + + rm deleted image + wikitext + text/x-wiki + '''Jurs Cybuļs''' (1951) — latgaļu ļaudyskais dareituojs, publicists, volūdzininīks, ceikstinīks par latgaļu volūdys i kulturys tīseibom. + +Dzims 1951 g. decembra 6 d. Abrinis rajona (niu Vileks nūvoda) Rekovys solā. Vuicejīs Bolvu rajona Ereļu pamatškolā, beidzs Rekovys vydsškolu (1970), Latvejis vaļstiskuo (LVU, niu Latvejis universitets) universiteta Uorsvolūdu fakuļtetu (1975) anglīšu volūdys i literaturys docātuoja specialitetā. Studiejs (LVU) aspiranturā pedagogejis viesturi i teoreju. Bejs školuotuojs Bolvu rajona Tiļžys vydškolā i Tiļžys iņternatškolā (1975-1989). + +Atdzimšonys laikā (nu 1988 gods) īsavadynuojs politikā, bejs Latvejis tautys fronta Bolvu rajona atdalis viersinīks (1989-1990), Bolvu rajona pošvolda deputats (1989-1992). Ībolsuots par Latvejis Republikys Pilīšu kongresa delegatu (1990), bejs LSDSP bīdrys (1989-1991), 1990 g. ībolsuots par Vysuaugstuos Padūmis deputatu. Darejs LR Naturalizacejis puorvoldā par uorejūs saitu pīstuovi, Tulkuošonys i terminologejis centrā par Eiropys Savīneibys i cytu storptautyskūs dokumentu nūdalis redaktoru. + +Kūpā ar L. Leikumu pīrakstejs latgaļu lementari (1992) i latgaļu volūdys gramatikys rūkysgruomotu ''Vasals'' (2003). Pīrakstejs gruomotu "Latgaliešu ābeces" (2009). Kolekcionej lementarus vysaiduos pasauļa volūduos. Pīlasejs apmāram 7400 lementaru nu 210 vaļsteibu i regionu 900 volūduos. Juo kolekceja regularai izstotoma paruodēs Latvejā i uorzemē. + +Publiciejs vaira kai 350 rakstīņu vysaidūs laidīņūs i lasejumūs latgaļu, latvīšu, krīvu, anglīšu, danīšu i praņcīšu volūduos, tymā vydā, daudzi rakstīņu ap latgaļu volūdys tīseibom. Leli irā J. Cybuļa peļnejumi vadynojūt vieleigu latgaļu volūdys statusu Latvejā. + +Apduovanāts ar III ailis Treju Zvaigžņu ordini (2000). + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Cybuļs Jurs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + j4yk5fchmpsjwxjv6nay6irckefx7p1 + + + + Jākubmīsts + 0 + 161 + + 31473 + 29028 + 2016-07-14T08:01:49Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Jākubmīsts +| mīsta_tips =Republikys mīsts +| atvaiga_pasauka = Oldtown square Jekabpils.JPG +| atvaiga_aprakstejums = Vacmīsta laukums +| gerba_atvaigs = Escut Jekabpils.png +| gerba_pasauka = Jākubmīsta gerbs +| karūga_atvaigs = Bandera Jekabpils.png +| karūga_pasauka = Jākubmīsta karūgs +| koordinatu_zemislopa = Latveja +| latd = 56| latm = 29| lats = 58| latNS = N +| longd = 25| longm = 52| longs = 42| longEW = E +| pluots = 23 +| dzeivuotuoji_gods = 945,7 +| dzeivuotuoju_skaits = 24 146 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 1130 +| viesturiskuos_pasaukys = +| cytys_pasaukys = {{Vol-lv|Jēkabpils}} <br /> {{Vol-de|Jakobstadt}} +| īstateits = +| mīsta_tīseibys = 1670 +| posta_iņdeksi = LV-52(01-02) +| teiklavīta = www.jekabpils.lv +}} + +'''Jākubmīsts''' — mīsts [[Latgola|Latgolā]] i [[Sieleja|Sielejā]] pi [[Daugova|Daugovys]]. Pats lelais mīsts Sielejā, trešais pa lelumam mīsts Latgolā. Niulejā teritorejā Jākubmīsts zynoms nu 1962 gods, kod saškeire Krystapiļs mīstu Latgolā ar Jākubmīstu Sielejā. [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] i [[Krystapiļs nūvods|Krystapiļs nūvoda]] administrativais centrys. + +== Cytys pasaukys == +Oficialuo pasauka [[Latvīšu volūda|latvīšu volūdā]] – ''Jēkabpils'' + +Pasauka cytuos volūduos: +* [[Latgalīšu volūda|latgalīšu]] — ''Jākubmīsts'' +* [[Lītaunīku volūda|lītaunīku]] — ''Jėkabpilis'' +* [[Krīvu volūda|krīvu]] — ''Екабпилс'' +* [[Puoļu volūda|puoļu]] — ''Jēkabpils'' +* [[Vuocīšu volūda|vuocīšu]] — ''Jēkabpils'' + +Viesturiskuos i sūpluokuos pasaukys: +* [[Vuocu volūda|vuocu]] — ''Jakobstadt'' +* [[Puoļu volūda|puoļu]] — ''Jakubowo'' + +== Viesture == + +Da 1962 gods niulejuo Jākubmīsta teritorejā beja 2 atseviški mīsti — Jākubmīsts Daugovys kairajā molā i Krystapiļs Daugovys lobajā molā. Viesturē seņuok zynoma Krystapiļs, a mīsta tīseibu pyrmuo dabuoja Jākubmīsta daļa. + +Krystapiļs viesturis olūtūs pyrmū reizi pīmynāta 1237 godā, kod Reigys veiskups Meikuls no Magdeburga itamā vītā pastateja myura pili (vuocyskai ''Kreutzburg''). Pakuopiniskai ap jū atsaroda cyta pīstateiba. Kai mīsteņš Krystapiļs īraksteita 1511 gods arciveiskupa lenu gruomotā, a mīsta tīseibys Krystapilei daškiertys 1920 godā. + +Jākubmīsts suoce taisetīs 17 godusymtā kai sīlejnīku apdzeive Daugovys kairajā molā pi Solys krūga. Ar Kūrzemis kunigaiša Jākuba aktu 1670 gadā jai daškiertys mīsta pilsētas tiesības i pasauka ''Jakobstadt'' (Jākubmīsts vuocyskai). + +Dzeiveiguokys saitys iz vyds Krystapiļs i Jākubmīsta puordrūsynuoja 1764 godā pastateitais puorvozs par Daugovu. Obadivejis mīsteni daudzi cīte vaidūs i guņsgrākūs, tok mīstu atsajaunynuošonu ir raisteibu vadynuoja īdeveigī tierdzeibys celi pa Daugovu i 1861 godā atdareituo Reigys – Orlys dzeļžaceļa lineja. XIX godusymtā ite īsataiseja nazcik industrejis pasajāmumu. vapnineicys, ceglineicys, vylnys kuorstuve, patmalis i net 4 muzykys instrumentu fabriki. + +Par zeimeigu adminstrativū centri Jākubmīsts tyka 1919 godā, kod nu Jaunjalgovys iz itīni beja puorcalti apleiciņa vaļdeišonys īstoti. Iz vyds obadiveju Pasauļa karu Jākubmīstā raistejuos puortykys i stateibmaterialu industreja. 1932 godā Krystapilī suoce dareit cukra fabriks, a 1936 godā par Daugavu pastateja tyltu. Juo myužs beja nagars - 1941 gods junī juo vīnu puosmu saspruodzynuoja sovetu armeja, a 1944 gods augustā jū da golam sagrauduoja vuocīšu armeja. Jaunū tyltu iz vyds Krystapiļs i Jākubmīsta atdareja 1962 godā. + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Červonka, [[Puoleja]] +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Mele, [[Vuoceja]] +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Sokolovu Podlaski, [[Puoleja]] +| [[Fails:Flag of Estonia.svg|25x15px|Igauneja]] Mārdu, [[Igauneja]] +| [[Fails:Flag of Belarus.svg|25x15px|Boltkrīveja]] Lida, [[Boltkrīveja]] +|} + +== Zeimeigi ļauds == +Jākubmīstā dzymuši: +* Oto Skulme — tapātuojs, pedagogs +* Andrejs Puormaļs - keramiks, pedagogs + +Krystapilī dzymuši: +* Kārlis Skaubītis - kara gaisskriejiejs, latvīšu aviacejis aizsuociejs +* Juoņs Lejeņš - tapātuojs, akters, rakstinīks +* Anna Žebeka - Operys dzīduotuoja, pedagoge + +Dzymuši cytur, Jākubmīstā i Krystapilī vuicejušīs, dzeivuojuši, darejuši: +* Areja Eļksne — latvīšu ailineica +* Velta Tuoma - latvīšu ailineica +* [[Juoņs Akuraters]] — rakstinīks, ailinīks, dramaturgs + +== Galereja == +<gallery> +File:Jekabpils city council.JPG|Jākubmīsta dūme +File:Folk house Jekabpils.JPG|Jākubmīsta Tautys noms +File:Daugava Jekabpils.JPG|Daugova Jākubmīstā +File:Jekabpils central market.JPG|Jākubmīsta tiergs +File:Art School Jekabpils.JPG|Muokslys škola +File:Old believers church Jekabpils.JPG|Jākubmīsta Staroveru cierkva +File:Jekabpils monastery.JPG|Jākubmīsta Svātuo Gora pravoslavu cierkva, Jākubmīsta Pravoslavu veirīšu kleštors +File:Catholic church Jekabpils.JPG|Jākubmīsta Svātuos Jaunivis Marejis Dzimšonys Romys Katuoļu bazneica +</gallery> + +{{nadabeigts rakstīņs}} + +{{Latvejis mīsti}} +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Jākubmīsts| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + tlmguzpo951cxmbi3gju7d8yctxblax + + + + Jākubpiļs + 0 + 162 + + + 2248 + 2247 + 2011-03-19T13:03:44Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Jākubmīsts]] + m9wggaj3048ee10t085uh1vhl7ergzp + + + + Jānis Apals + 0 + 163 + + 29842 + 17726 + 2013-04-15T04:00:08Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Jānis Apals''' (dz. 1930.g.) — latvīšu [[arheologs]], kurs nūsadorboj ar Latvejis hidroarheologiskūs pīminekļu pieteišonu. Vadejs izrokumus Uoraišūs 10 sezonu laikā (1965.—1969.g.; 1975.—1979.g.). Izpietejs Uoraišu piļs dzeivuotuoju kopulauku Līpeņūs. Voda azara piļs rekonstrukceju. + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Apals, Janis}} + gmopeo5glqrx07mqxvlyjmogzbto84s + + + + Kareiba + 0 + 164 + + 28201 + 27042 + 2013-03-07T18:01:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 33 interwiki links, now provided by [[d:|Wikidata]] on [[d:q192386]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Kareiba''' (anglīšu: ''military affairs''; krīvu: ''военное дело''; latvīšu: ''kara lietas'') — vaļsteibys politikys i ļaudeibys dzeivis atzare, sasīta ar karu, karuošonu i vaļsteibys apsardzeibu. + +Kareiba apjam: +* armejis formiešonu, paturiešonu i [[Raisteiba|raisteibu]]; +* militariskū vuiceišonu, karinīku gataviešonu, armejis hierarheju; +* īrūču, municejis, zynuošonuos ītaišu i cytys armejai vajadzeigys pastotys [[Pīgatave|pīgatavi]] i lītuošonu; +* kara darbeibu planavuošonu i izpiļdeišonu; +* karu i armeju viesturi +* i leidz. + +[[Kategoreja:Kareiba]] + nbf17j16skm2dm2r2mz8raualohjo0l + + + + Kasdīna i sātparāds + 0 + 165 + + 12623 + 11494 + 2011-04-01T07:49:37Z + + Vargenau + 206 + + Interwiki + wikitext + text/x-wiki + == Kasdīnys sapratīņs == +'''Kasdīna''' (anglīšu: ''everyday life, daily routine, social life''; krīvu: ''быт, повседневный быт''; latvīšu: ''sadzīve; ikdiena'') — daguojumi, kurus ļauds dora sūpluok aizpeļnejamuo dorba, kab apmīreitu sovys vajadzeibys deļ puortykys, drēbu, dzeivuotovys, veseleibys i cytaida praktiskuo komforta, taipoš golvonuos nūtalejuos dvēseliskuos vajadzeibys. + +Kasdīna apjam i [[Sātparāds|sātparādu]], i regularū socialū dzeivi uors saimis i sātys. + +''Golvonais rakstīņs: [[Kasdīna]].'' + +== Sātparāda sapratīņs == +'''Sātparāds''' (anglīšu: ''housekeeping, household''; krīvu: ''быт, домашний обиход''; latvīšu: ''sadzīve, mājas rūpes'') — ar saimi i sātu sasītuo [[Kasdīna|kasdīnys]] daļa. + +''Golvonais rakstīņs: [[Sātparāds]]''. + g5ybbaga74qzcallvuvqijb8rk761c4 + + + + Kaupris + 0 + 166 + + 31435 + 28202 + 2016-05-09T12:05:44Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Kaupris''' ({{Vol-lv|paugurs}}; {{Vol-en|hill}}; {{Vol-ru|холм}}) — zemisviersa geografiskuo reļjefa forma ar skaidrai radzamu viersyuni, kura nūstateitā pluotā pasaceļ augšuok apleicīnis. Kaupris parostai paopols, ar lāvom pīguoznem i sluobai izsaceigu zamošku. + +Praktikā vītā gegografiskuo termina "kaupris" cieški lītoj apzeimīni "kolns". Geografejis zineibā raugoms atškiert obadivejus terminus: +* "kaupris" (anglīšu ''hill'', krīvu ''холм'', latvīšu ''paugurs'') – pasacālums apmāram da 300 m; +* "kolns" (anglīšu ''mountain'', krīvu ''гора'', latvīšu ''kalns'') – pasacālums suocūt nu apmāram 300 m i augšuok. +Tok praktiskajā lītuošonā skaidrys rūbežs navā nūstateits, ite nūtaleju diskuseju objekts. + +Seņuok iz kaupru cieški stateja piļs i mīstus, partū daudzeji kaupri tur sovys pasaukys. + +Poši augstī Latgolys kaupri: +* [[Lelais Līpkolns]] – 289 m a. j. l. +* [[Dzierkaļu kolns]] – 286 m a. j. l. +* [[Dubuļu kolns]] – 274 m a. j. l. +* [[Mozais Līpkolns]] – 259 m a. j. l. +* [[Muokuļkolns]] – 248 m a. j. l. +* [[Egļukolns]] – 220 m a. j. l. + +[[Kategoreja:Geografeja]] +[[Kategoreja:Latgolys doba]] +[[Kategoreja:Latgolys kaupri]] + sp9mp6souo52ymt8xu22zqbj0908wpy + + + + Kavieklis + 0 + 167 + + 28203 + 27940 + 2013-03-07T18:02:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 66 interwiki links, now provided by [[d:|Wikidata]] on [[d:q47728]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Kavieklis''' (baļtīšu: ''vaļasprieks, hobijs'', anglīšu: ''hobby''; krīvu: ''хобби, увлечение'') — breivuo laika aizajimšona, kuru regularai dora na kai daguojumu, a sovai patikšonai. + +Kaviekli paleidz atsapyust, platynoj puorredzīni, lelynoj draugu rotu i var paleidzēt pošrealizētīs. Kas vīnam cylvākam var byut kavieklis, cytam var byut omots (profeseja). Izškireigai nu cytys breivuo laika darbeibu atmejis - [[Pavaļa|pavalis]] - kaviekli parostai sasīti ar regularumu. + +== Kaviekļu pīvadumi == +* [[Kaviekļu saroksts pa temom]] +* [[Kaviekļu saroksts pa alfabetam]] + +== Verīs taipoš == +* [[Pavaļa]] + +[[Kategoreja:Kaviekli| ]] + jj9ijc3zro10j7vesjub7k01rt9w41a + + + + Kaviekļu saroksts pa temom + 0 + 168 + + 13996 + 13675 + 2011-05-05T14:45:34Z + + Vargenau + 206 + + interwiki + wikitext + text/x-wiki + '''[[Kavieklis|Kaviekļu]] saroksts pa temom''' + +== Amatermuoksla, skaistomoti i rūkdorbi == +* [[Adeišona]] +* [[Ausšona]] +* [[Fotografiešona]] +* [[Kaligrafeja]] +* [[Kaļveiba]] +* [[Kinys taiseišona]] +* [[Kūkgraizeiba]] +* [[Leļu taiseišona]] +* [[Megžšona]] +* [[Modeļu taiseišona]] +* [[Papeirlūceišona]] ([[origami]]) +* [[Peišona]] +* [[Pūdareiba i keramika]] +* [[Skulptureiba]] +* [[Stykla aptepiešona]] +* [[Šyusteišona]] +* [[Tepiešona i zeimiešona]] + +== Amaterzineiba == +* [[Amateru astronomeja]] +* [[Amateru mikroskopeja]] +* [[Kimiskī eksperimenti]] +* [[Putnu leidzavēre]] + +== Astrologeja i horoskopi == + +== Datorkaviekli == +* [[Datoranimaceja]] +* [[Datorkaitys]] +* [[Dūmu meiti]] +* [[Programiešona]] +* [[Trejmiereiguo grafika]] +* [[Vikipedeja]] + +== Doba i ceļuojumi == + +== Duorzeiba == + +== Dzeivinīku turiešona == +* [[Akvareji]] +* [[Bišaudzeiba]] +* [[Kaču turiešona i audziešona]] +* [[Suņu turiešona i audziešona]] +* [[Putnu leidzavēre]] +* [[Zyrgi i raiteiba]] + +== Kaitys == +* [[Datorkaitys]] +* [[Golda kaitys]] +** [[Arcobys]] +** [[Domino]] +** [[Monopols]] +** [[Šahs]] +* [[Kartavuošona]] +** [[Bridžs]] +** [[Pokers]] +* [[Karakaitys]] +* [[LEGO]] + +== Kolekcioniešona == + +== Modeli == + +== Muokslyskuo pošdarbeiba == +* [[Amaterteatris]] +* [[Daņči]] +* [[Dzīduošona]] +* [[Triki]] + +== Muzyka == + +== Sports == +* [[Cytys sporta atmejis]] + +== Tehnika, meistruošona, elektronika == +* [[Amateru radeja]] +* [[Automašinis]] +* [[Elektroniskuos važys]] +* [[Guņsaudis]] +* [[Modeļu taiseišona]] +* [[Roboti]] +* [[Tehnikys eksperimenti]] + +== Transportleidziekli == +* [[Automašinis]] + +== Vyrtuve == +* [[Latgalīšu iedīni]] + +== Volūdys i literatura == +* [[Muoksleiguos volūdys]] +* [[Raksteišona]] +* [[Skaiteišona i bibliofileja]] +* [[Uorsvolūdu vuiceišonuos]] + 5s3pbi7qt99wnfvslsklr87b1tvrf8n + + + + Kazaheja + 0 + 171 + + 32096 + 28204 + 2017-07-03T10:04:27Z + + DARIO SEVERI + 3389 + + Updade inf. from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Қазақстан'''<br />'''Kazaheja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Kazakhstan.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Kazakhstan.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Kazakhstan (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Nursultan Nazarbayev +|- +| Ministru prezidents || Bakhytzhan Sagintayev +|- +|| Pluots || 2 724 900 km² +|- +|| Dzeivuotuoju skaits || 18 050 488 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Kazaheja''' (kazah.: ''Қазақстан'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + t64etek9f0wshw667k1250f5mdpn8ve + + + + Kazeicu Bykakmiņs + 0 + 173 + + 23781 + 11498 + 2012-06-30T20:25:30Z + + Iketsi + 288 + + -[[Kategoreja:Wp/bat-ltg]] + wikitext + text/x-wiki + '''Kazeicu Bykakmiņs''' - akmiņs ar zeimem [[Rundānu pogostā]], guodojams, ka senejs rūbežakmiņs.<br /><br /> + +Akmiņs atrūnams, nu Ludzys - Bukmuižys ceļa iz vyds Brodaižu i Viertulovys grīžūt pa kairai, tuoļuok braucūt pa Rundānu tecīņam i meklejūt Bykakmiņa apmāram 200 m iz pūstumreitim nu pyrmuos sātys ceļa kairajā pusē, volgonā, kryumuotā līknē, ryuča molā.<br /><br /> + +Akmiņa garums 5,3 m, plotums 3,5 m, augstums 1,8 m, jimā īkolti div krysti, pakaveiga zeime i rombeiga zeime.<br /><br /> + +[[Kategoreja:Latgolys lelalkmini]] + hs3bppe6utk3e5evqz63p3zsm1ia854 + + + + Kačs + 0 + 174 + + 30688 + 28205 + 2015-04-02T15:29:23Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|eo}} (3) using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Кот.jpg|thumb|250px|Sātys kačs]] +'''Sātys kačs''' ('''kakis''') ({{Vol-la|Felis silvestris catus}}) aba '''kačs''' ('''kakis''') irā sātys [[Dzeivinīki|dzeivinīks]]. 10 000 godu guojumā itys beija vērtēts ar cylvāku, ari kū medinīks iz pelēm<ref>[http://www.nytimes.com/2007/06/29/health/29iht-cats.1.6406020.html?_r=2 Nicholas Wade DNA traces 5 matriarchs of 600 million domestic cats] (anglīšu) (June 29, 2007)</ref><ref>[http://www.scientificamerican.com/article.cfm?id=the-taming-of-the-cat&page=2 The Evolution of House Cats] (anglīšu)</ref>. Kačs irā [[kaču saimis]] (''Felidae'') [[Plieseji|plieseigais]] (''Carnivora'') zviers. + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commons|Felis silvestris catus|Sātys kačs}} + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Kaczs}} + +[[Kategoreja:Dzeivinīki]] + bj0n27rzv9yr0flhdr7mdytdhbm45fd + + + + Kaču saime + 0 + 175 + + 29437 + 28206 + 2013-03-23T02:26:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25265]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:HansomeLion 002.jpg|thumb|250px|[[Ļovs]] (''Panthera leo'')]] +'''Kaču saime''' ({{Vol-la|Felidae}}, {{Vol-lv|kaķu dzimta}}, {{Vol-lt|katiniai}}) irā [[Dzeivinīki|dzeivinīku]] saime, ar 15 giņtim i 41 [[Škira|škirom]]. + +== Kaču škirys == +* Saime: '''Kaču'''<ref name=MSW3>Wozencraft, W. Christopher (16 November 2005). [http://www.bucknell.edu/msw3/ "Order Carnivora (pp. 532-628)"]. In Wilson, Don E., and Reeder, DeeAnn M., eds. ''[http://www.google.com/books?id=JgAMbNSt8ikC&pg=PA532%E2%80%93548 Mammal Species of the World: A Taxonomic and Geographic Reference]'' (3rd ed.). Baltimore: Johns Hopkins University Press, 2 vols. (2142 pp.). pp. 532–548. ISBN 978-0-8018-8221-0. OCLC 62265494.</ref> +:* Zamsaime: [[Kaču]] +[[Fails:Felis silvestris silvestris.jpg|thumb|200px|''[[Felis silvestris]]'']] +::* Giņts ''[[Kači]]'' +:::* Škira: ''[[Felis bieti]]'' +:::* Škira: ''[[Felis catus]]'' +:::* Škira: ''[[Felis chaus]]'' +:::* Škira: ''[[Felis margarita]]'' +:::* Škira: ''[[Felis nigripes]]'' +:::* Škira: ''[[Felis silvestris]]'' +[[Fails:Fishing Cat (Prionailurus viverrinus) 2.jpg|thumb|200px|''[[Prionailurus viverrinus]]'']] +::* Giņts ''[[Otocolobus]]'' +:::* Škira: ''[[Otocolobus manul]]'' +::* Giņts ''[[Prionailurus]]'' +:::* Škira: ''[[Prionailurus bengalensis]]'' +:::* Škira: ''[[Prionailurus iriomotensis]]'' +:::* Škira: ''[[Prionailurus planiceps]]'' +:::* Škira: ''[[Prionailurus rubiginosus]]'' +:::* Škira: ''[[Prionailurus viverrinus]]'' +[[Fails:Acinonyx jubatus (2).jpg|thumb|200px|''[[Acinonyx jubatus]]'']] +::* Giņts ''[[Acinonyx]]''<ref>http://www.bucknell.edu/msw3/browse.asp?id=14000003</ref> +:::* Škira: ''[[Acinonyx jubatus]]'' +::* Giņts ''[[Puma]]'' +:::* Škira: ''[[Puma concolor]]'' +:::* Škira: ''[[Puma yagouaroundi]]'' +[[Fails:Lynx lynx Białowieża p.jpg|thumb|200px|''[[Lynx lynx]]'']] +::* Giņts ''[[Mežakači]]'' +:::* Škira: ''[[Kanadys mežakačs]]'' +:::* Škira: ''[[Mežakačs]]'' +:::* Škira: ''[[Lynx pardinus]]'' +:::* Škira: ''[[Lynx rufus]]'' +::* Giņts ''[[Leopardus]]'' +[[Fails:Ocelot (Leopardus pardalis)-8.jpg|thumb|200px|''[[Leopardus pajeros]]'']] +:::* Škira: ''[[Leopardus braccatus]]'' +:::* Škira: ''[[Leopardus colocolo]]'' +:::* Škira: ''[[Leopardus geoffroyi]]'' +:::* Škira: ''[[Leopardus guigna]]'' +:::* Škira: ''[[Leopardus jacobitus]]'' +:::* Škira: ''[[Leopardus pajeros]]'' +:::* Škira: ''[[Leopardus pardalis]]'' +:::* Škira: ''[[Leopardus tigrinus]]'' +:::* Škira: ''[[Leopardus wiedii]]'' +[[Fails:Leptailurus serval (portrait).jpg|thumb|200px|''[[Leptailurus serval]]'']] +::* Giņts ''[[Leptailurus]]'' +:::* Škira: ''[[Leptailurus serval]]'' +::* Giņts ''[[Caracal]]'' +:::* Škira: ''[[Caracal caracal]]'' +::* Giņts ''[[Profelis]]'' +:::* Škira: ''[[Profelis aurata]]'' +[[Fails:Catopuma temminckii.jpg|thumb|200px|''[[Catopuma temminckii]]'']] +::* Giņts ''[[Catopuma]]'' +:::* Škira: ''[[Catopuma badia]]'' +:::* Škira: ''[[Catopuma temminckii]]'' +::* Giņts ''[[Pardofelis]]'' +:::* Škira: ''[[Pardofelis marmorata]]'' +:* Zamsaime: [[Pantherinae]] +[[Fails:Neofelis nebulosa 2.jpg|thumb|200px|''[[Neofelis nebulosa]]'']] +::* <!--Genus --> ''[[Neofelis]]'' +:::* Škira: ''[[Neofelis nebulosa]]'' +:::* Škira: ''[[Neofelis diardi]]'' +::* Giņts ''[[Panthera]]'' +:::* Škira: [[Ļovs]] (''Panthera leo'') +:::* Škira: [[Jaguars]] (''Panthera onca'') +:::* Škira: [[Leopards]] (''Panthera pardus'') +:::* Škira: [[Tygrys]] (''Panthera tigris'') +[[Fails:Uncia uncia 2.jpg|thumb|200px|''[[Uncia uncia]]'']] +::* Giņts ''[[Uncia]]'' +:::* Škira: ''[[Uncia uncia]]'' + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commons|Felidae|Kaču saime}} + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Kaczu saime}} + +[[Kategoreja:Dzeivinīki]] + f2p0vgq0zxiib3umrm7scneru65y2cw + + + + Kenotafs + 0 + 176 + + 29011 + 28207 + 2013-03-09T03:06:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q321053]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Kenotafs''' irā kops bez myrušuo. Taidus stota cylvākim, kurus kaidu īmesļu dieļ navarēja guļdeit dzymtajā zemē. Pi daudzu tautu pastuovēja ticiejums, ka myrušuo dvēselei tik ilgi nav mīra, cikm nūmiriejs ir bez kopa. Latvejā kenotafi atrosti Lejysbytānūs, Ņukšūs. Ņukšūs (arheologu napaseņ tiemētā [[Dzeļžalaiki|dzeļžalaiku]] kopulaukā) atrosti 6 kenotafi krytušajim karaveirim. + +Myusu dīnuos ari stota kenotafus, navarūt sagaideit pīdereigūs nu kora, ci zaudejūt cereibys sagaideit atsagrīžam izvastūs ci deportētūs tautys lūcekļus. + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Kenotafs}} + +[[Kategoreja:Viesture]] + r6hak2wjh5do6gvzql8oqgkl48m4cll + + + + Kipra + 0 + 177 + + 28208 + 27754 + 2013-03-07T18:03:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 195 interwiki links, now provided by [[d:|Wikidata]] on [[d:q229]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Κυπριακή Δημοκρατία'''<br />'''Kıbrıs Cumhuriyeti'''<br />'''Kipra'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Cyprus.svg|150px|border]] +| align="center" width="140px" | [[Fails:Cyprus Coat of Arms.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Cyprus highlighted.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 9 250 km² +|- +|| Dzeivuotuoju skaits || 793 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Kipra''' ({{Vol-el|Κυπριακή Δημοκρατία}}; {{Vol-tr|Kıbrıs Cumhuriyeti}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + c0k47xdlyavjg8fvarswki4w0wv7wme + + + + Klase + 0 + 178 + + 29964 + 28209 + 2013-08-06T19:30:25Z + + MerlIwBot + 221 + + + robots izņem: [[fi:Kapselointi]] (strong connection between (2) [[ltg:Klase]] and [[fi:Luokka (ohjelmointi)]]) + wikitext + text/x-wiki + '''Klase''' — abstrakts datu tips, lītuojams objektu vodomā programiešonā. Klase nūstota i datu tipa turīņa laukus - atributus, i ituo poša tipa varamuos darbeibys - metodus. Klasis var apsavērt kai objektu taiseišonys šablona - objektus var radeit, daškirūt klasis apraksteitajim atributim konkretuos vierteibys. + kme1rr04w8td2aj1rq13h7o50acrb0x + + + + Komunikators + 0 + 179 + + 28210 + 14693 + 2013-03-07T18:04:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 8 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1995636]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Komunikators''' ({{vol-en|communicator}}) — vuords, ar kuru pasaulī vysuleluokais mobilūs telefonu pīgatavātuojs "[[Nokia]]" apzeimoj sovus [[Pruottelefons|pruottelefonus]]. + +[[Kategoreja:Tehnologeja]] + 03hil84b2a5sgqbty3oa24neo4notu7 + + + + Konstaņce Daugule-Kempe + 0 + 180 + + 10479 + 2475 + 2011-03-21T09:02:25Z + + DEagleBot + 35 + + + Bot: Automated text replacement (-[[Category:Wp/ltg]] +) + wikitext + text/x-wiki + '''Konstaņce Daugule-Kempe''' (1891 — 1947) — latgaļu rakstineica. Dzymuse [[Sakstygola pogosts|Sakstygola pog.]] Garanču solā. Sagvuords ''Skaidreite''. + +Stuoški: +* ''Komturs Rodrigs''(1906); +* ''Pyrmī gaili'' (1913); +* ''Guņsgrāks'' (1912). + +[[Fraņcs Kemps|Fraņča Kempa]] lauluotine. + ms25p0ftfxhlcjgj1l95phf1krhur11 + + + + Konstaņtins Strods-Pleņcinīks + 0 + 181 + + 10480 + 2489 + 2011-03-21T09:02:35Z + + DEagleBot + 35 + + + Bot: Automated text replacement (-[[Category:Wp/ltg]] +) + wikitext + text/x-wiki + '''Konstaņtins Strods-Pleņcinīks''' (eistyn. vuordā: ''Konstaņtins Strods'', 1908—1999) — poets, rakstinīks, rakstejs latgaļu i latvīšu volūduos. + +Dzims Varakļuonu pog. Kokaru solā. Nu 1944 g. dzeivuojs ASV. Rakstineicys [[Mareja Andžāne|Marejis Andžānis]] lauluotiņs. Zeimeiguokī dorbi latgaliskai - poezejis lasejumi ''Sevī'' (1931) i ''Sirds'' (1934), eisprozys lasejums ''Atmūda'' (1943). + +Olūts: ''Janīna Kursīte, Anna Stafecka „Latgale: valoda, literatūra, folklora” Rēzne, 2003.'' + tna6kwne080o7pzxsirakkxduvtqj58 + + + + Kūku pogosts + 0 + 182 + + 28211 + 21709 + 2013-03-07T18:04:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801526]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kūku pogosts +| zemislopa = Kūku pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kūku pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods +| nūvoda_pasauka = Krystapiļs nūvods +| centrys = Zylāni +| pluots = 114,5 +| dzeivuotuoju_skaits = 2 066 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 18,04 +| īstateits = 1945 +| likvidets = +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} +[[Fails:Kuki council house.jpg|thumb|260px|Kūku pogosta padūme 2012 gods pavasara mienesī]] +'''Kūku pogosts''' irā [[Krystapiļs nūvods|Krystapiļs nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora kulturys noms i biblioteka Zylānu solā i Syunu pamatškola, biblioteka i izstatis zala Kūku solā. Pogosta centrys Zylānūs. Bazneicys ci cierkvys pogosta teritorejā navā. + +==Viesture== +Viesturiskai Kūku pogosta teritoreja bejuse Daugpiļs apleiciņa Krystapiļs pogostā, kas 1941 godā daškiersts Jākubmīsta apleicinim. 1945 godā Jākubmīsta apleiciņa [[Krystapiļs pogosts|Krystapiļs pogostā]] īstateja Kūku solys padūmi. Nu 1949 gods da 1962 godam bejs Krystapiļs rajonā, a nu 1962 goda Jākubmīsta rajonā. 1954 godā Kūku solai daškiera likvidātuos Gromoltu solys kolkoza "Sovetu Latveja" teritoreju. 1963 godā Azarīšu solys kolkoza "Zylāni" teritoreju. 1973 godā daškiera daļu Veipa solys teritorejis, a daļu Kūku solys daškiera Mežuoris solai. Vēļ daļu teritorejis daškiera Mežuorei i 1977 godā.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Krystapiļs nūvods|Krystapiļs nūvodam]]. + +== Rūbeži == +Kūku pogosts tur rūbežu ar: +* [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Mežuoris pogosts|Mežuoris pogostu]], [[Varīšu pogosts|Varīšu pogostu]] i [[Veipa pogosts|Veipa pogostu]]; +* [[Jākubmīsts|Jākumbīstu]]; +* [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] [[Uobeļu pogosts|Uobeļu pogostu]]. + +==Doba== +[[Fails:Laukezers lake Kuku parish.jpg|thumb|260px|Laukazars zynoms kai vīns nu pošu gīdrūs azaru Latvejā.]] +Kūku pogosts irā [[Retulatvejis zamaine|Reitulatvejis zamainē]], zeme viļnaina ci ploskona leidzonaine. Pogosta pluots 114,5 km<sup>2</sup>, nu tuo solsaimesteibai lītojamuo zeme 4829 dekteru, meži 3893 dekteru, pūri i peisi 385, a iudini 749 dekteru. Pogosta teritorejā 327 dekteru pluotu sorgoj "Laukazara dobys parks". + +=== Iudini === +Upis: +* [[Daugova]] +* Donaveņa +* Duorzupete (Osūte) +* [[Narata (upe)|Narata]] +* Rogāļu ryucs + +[[Iudiņtvere|Iudiņtveris]]: +* Baļteņu azars +* Baļuotis azars +* Bisenīku azars +* Cotlakšu azars +* Gardauņs +* Iļdzenīku azars +* Krešu azars +* Laksteņu azars +* Laukazars +* Namiča azars +* Nasaulis azars +* Syuņu azars +* Vāglānu azars +* Viļceņu azars + +Pūri i peisi: +* Dryksnys pūrs +* Putnusolys (Garais) pūrs +* Ripīšu pūrs +* Vylku pūrs + +== Dzeivuotuoji == +Kūku pogostā dzeivoj 878 ļauds, nu jū 73,6% latvīšu, 18,1% krīvu, 3,3% boltkrīvu, 2,7% puoļu, 1% lītaunīku.<ref>[http://www.krustpils.lv/lv/pasvaldiba/vesture Kūku pogosts, Krystapiļs nūvoda teiklavīta]</ref> + +=== Solys === +Kūku pogosta ļauds dzeivoj 61 solā.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +=== Zeimeigi ļauds === + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Reiga-Daugpiļs-Puotarnīki (A6) i Jākubmīsts-Rēzne-Terehova (A12), taipoš nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Kūku pogostu škārsoj div dzeļžaceļa linejis Reiga-Daugpiļs (staceju ci nūstuošonu pogosta teritorejā navā) i Krystapiļs-Sīnuoja, iz kurys vīna staceja "Kūki". + +Kūku pogosta teritoreju apkalpoj vīna posta atdale Kūki (LV-5222).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Dzierkaļu piliskolns i senejuo dzeivisvīta ar bazņeickolnu; +* Laukazara dobys parks; +* [[Osūtis piliskolns]]; +* [[Rogāļu lelakmiņs]]. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Krystapiļs nūvods}} + +[[Kategoreja:Kūku pogosts| ]] + 6w0ho4egfdqr49fhktqmbikpukb4g0e + + + + Kruoslova + 0 + 183 + + 31476 + 29008 + 2016-07-15T07:31:25Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Kruoslova +| atvaiga_pasauka = Krāslavas katoļu baznīca.jpg +| atvaiga_aprakstejums = Kruoslovys Sv. Ļudvika Romys katuoļu bazneica +| gerba_atvaigs =Coat_of_Arms_of_Krāslava.svg +| gerba_pasauka = Kruoslovys gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| latd = 55| latm =53 | lats = | latNS = N +| longd = 27| longm = 10| longs = | longEW = E +| pluots = 8,6 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 9114 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 1059,8 +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1923 +| posta_iņdeksi = +| teiklavīta = +}} + +'''Kruoslova''' irā mīsts [[Latveja|Latvejā]] pi [[Daugova|Daugovys]], catūrtais (ka naskaita [[Jākubmīsts|Jākubmīsta]], trešais) pa lelumam mīsts [[Latgola|Latgolā]] i [[Kruoslovys nūvods|Kruoslovys nūvoda]] administrativais centrys. Daļa mīsta (Prīdaine) irā [[Sieleja|Sielejā]]. + +== Mīsta pasauka == +Oficialuo pasauka [[Latvīšu volūda|latvīšu volūdā]] — ''Krāslava''. + +Pasauka cytuos volūduos: +* [[Krīvu volūda|krīvu]] — ''Краслава'', seņuok ''Краславка'' / ''Креславка'', ''Краславль'' / ''Креславль''; +* [[Puoļu volūda|puoļu]] — ''Krasław''; +* [[Vuocīšu volūda|vuocīšu]] — ''Kreslau''. + +== Teiklavītys == +* [http://www.kraslava.lv/ Kruoslovys nūvoda teiklavīta] + +{{nadabeigts rakstīņs}} + +{{Kruoslovys nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Kruoslova| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + 078hc4ucogmcr1rhqov8qqm5r7r1u9c + + + + Krytuli + 0 + 184 + + 28213 + 24314 + 2013-03-07T18:05:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 65 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25257]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Krytuli''' aba '''atmosferys krytuli''' (anglīšu: ''precipitation, atmospheric precipitation''; krīvu: ''осадки, атмосферные осадки''; latvīšu: ''nokrišņi; atmosfēras nokrišņi'') — sevkurys formys iudiņs, kreitūšs nu dabasu (nu muokuļu) iz zemi kai gaisalaika daļa. Krytuļūs īīt leits (vysaids - styprys, myrgojūšs i t.t.), snīgs, druobli, krusa. + +Krytuli irā Zemis [[Iudiņa cyklys|iudiņa cykla]] svareiga sadordaļa. + +{{nadabeigts rakstīņs}} + av0emkacn2kqs2f5vbrc4jcm40g3hv4 + + + + Krīveja + 0 + 185 + + 32097 + 31558 + 2017-07-03T10:06:49Z + + DARIO SEVERI + 3389 + + Updade inf. from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Российская Федерация'''<br />'''Krīveja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Russia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of the Russian Federation.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Russian Federation (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || [[Moskva]] +|- +|| Vaļsteibys volūda || [[krīvu volūda]] +|- +| Prezidents || [[Vladimirs Putins]] +|- +| Ministru prezidents || [[Dmitrijs Medvedevs]] +|- +|| Pluots || 17 075 400 km² +|- +|| Dzeivuotuoju skaits || 144 463 451 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosorā || UTC+2-UTC+12<br />- +|} +'''Krīveja''' ({{Vol-ru|Российская Федерация}}) — vaļsteiba [[Europa|Europā]] i [[Azeja|Azejā]]. + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} +{{Azejys vaļsteibys}} + +[[Kategoreja:NVS vaļsteibys]] +[[Kategoreja:Europys vaļsteibys]] +[[Kategoreja:Azejys vaļsteibys]] +[[Kategoreja:Krīveja]] + j44qdxrfjc4eni2gxxjdcrqv4yqhvbb + + + + Kumbuļa kļovs + 0 + 186 + + 11508 + 10485 + 2011-03-24T21:04:37Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Kumbuļa kļovs''' — lelkļovs Kruoslovys nūvoda Kumbuļa pogostā, Latgolā pats rasnuokais sudabriņs kļovs (''Acer saccharinum''). + +Augšonys vīta — Kumbuļa muižys parkā, 60 m iz [[wp/bat-ltg/Dīnavydvokori|DV]] nu aplaistuos muižys piļs. Koordinatys: N 55°58'46,1" E 27°10'21,7". + +Māri: +* [[Apleikmārs]] — 4,50 m; +* [[Garums]] — 23 m; +* [[Vaiņuka projekceja]] — 230 m2; +* Zoru garums — da 11,1 m. + +Stymbyns 3,8 m augstumā sasadola 5 storuos, vīna nu jūs zibšņa satrīkta i nūkoltuse. + +[[Kategoreja:Latgolys doba]] + dk8urgo4l6u8hvy9cvo16u46dmze4hs + + + + Kuorms + 0 + 187 + + 31695 + 28215 + 2016-11-04T19:32:43Z + + Chenspec + 3458 + + wikitext + text/x-wiki + [[Fails:מגדל שמירה בריטי ברחוב אבן גבירול - ראש העין - אתרי מורשת במרכז הארץ 2016 (32).jpg|thumb|Kuorms]] +'''Kuorms''' (anglīšu: ''building''; krīvu: ''здание''; latvīšu ''ēka'') — [[statne]], kura sasadora pa lelumam nu ustobu, paradzātu dzeivuošonai, dorbam birojā, [[Pīgatave|pīgatavei]] voi cytaidai cylvāku darbeibai. + +Kuorms irā vīna nu [[Statne|statņu]] [[Atmeja|atmeju]]. + +Pa paškeirīņam kuormi sasadola itaiduos atmejuos: +* dzeivojamī kuormi (sātys); +* nadzeivojamī kuormi: +** admnistrativī kuormi (vaļstiskī īstoti ([[ministreja|ministrejis]], pošvoldi i tt.); +** komerceigī kuormi (biroju kuormi, puordūtuvis i leidz.); +** ļaudyskuo paškeirīņa kuormi (dzeidātovys, vuiceibu īstoti ([[škola|školys]], universiteti, bārnu suodeni i tt.) i leidz). + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Stateiba]] + b51bypuqiu298jrw5v87glrwhn6wa8u + + + + Kuorsova + 0 + 188 + + 31475 + 28216 + 2016-07-15T06:54:34Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Kuorsova +| atvaiga_pasauka = Karsava koka maja.JPG +| atvaiga_aprakstejums = Ustoba Kuorsovā +| gerba_atvaigs = Karsava gerb.png +| gerba_pasauka = Kuorsovys gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 47 | lats = 02 | latNS = N +| longd = 27 | longm = 41 | longs = 05 | longEW = E +| pluots = 4 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 2210 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 566,7 +| viesturiskuos_pasaukys = +| cytys_pasaukys = {{Vol-lv|Kārsava}} <br /> {{Vol-de|Karsau}} <br /> {{Vol-ru|Кoрсoво}} +| īstateits = +| mīsta_tīseibys = 1928 +| posta_iņdeksi = LV-5717 +| teiklavīta = www.karsava.lv +}} +'''Kuorsova''' irā mīsts reitu [[Latgola|Latgolā]], natuoli nu [[Krīveja|Krīvejis]] rūbeža, [[Kuorsovys nūvods|Kuorsovys nūvoda]] administrativais centrys. Kuorsova, byunūt pi [[Rēzne|Rēznis]] - Ostrovys posta ceļa, beja zeimeigs tierdzeibys centrys. Mīsts pasalelynuoja, kod [[1763]] godā pastateja katuoļu bazneicu. + +Car mīstu tak [[Iudrupe]]. Pa mīsta molai īt Pīterpiļs - Varšovys dzeļžaceļa lineja i vaļsteibys zeimeibys magistrals A13, taipoš i celi P48, P49 i P50. + +== Zeimeigi ļauds == +Kuorsovā dzymuši: +* [[Evalds Dauguļs]] — muokslys zininīks, pedagogs. +* [[Eugeneja Golubeva]] — cyrka artiste. + +Dzymuši cytur, Kuorsovā vuicejušīs, dzeivuojuši, darejuši: +* [[Antons Jurkāns]] — uorsts, Kuorsovys dzeidātovys direktors, Latgolys Studentu fonda īstateituojs. + +== Galereja == +<gallery> +File:Iudrupe Karsava.JPG|Iudrupe +File:Karsava wooden house.JPG|Soveigys kūka ustobys Kuorsovā +</gallery> + +{{nadabeigts rakstīņs}} + +{{Kuorsovys nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Kuorsova| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + s3m99cewmv53r1ajmui2hj9rn69f8uh + + + + Kurova + 0 + 189 + + 28217 + 26874 + 2013-03-07T18:08:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 228 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2316]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + <table border=1 cellpadding=2 cellspacing=0 align=right width=275px> +<caption><font size=+1>'''Kurów'''<br /> +</font></caption> +<tr><td style=background:#efefef; align=center colspan=2> +<table border=0 cellpadding=2 cellspacing=0> +<tr><td align=center>[[Fails:KurówPoland.png|120px|]]<td align=center>[[Fails:Herb Kurowa.png|120px]] +</table> +<tr><td align=center colspan=2>[http://maps.google.com/maps?ll=51.39,22.19&spn=0.02,0.02&t=k Kurovys paceļnīkatvaigs]</td></tr> +<tr><td>Dzeivuotuoju<small>(2009)</small><td>2 822 +<tr><td>Vaivadeja<td>[[Ļublina vaivadeja|Ļublina]] +<tr><td>Teiklavīta<td>[http://kurow.eu www.kurow.eu] +</table> +'''Kurova''' ({{Vol-pl|Kurów}}) — sola [[Puoleja|Puolejis]] reitūs, [[Ļublins|Ļublina]] vaivadejā pi Vislys upis. [[Voiceha Jaruzeļskis|Voiceha Jaruzeļska]] dzymtuo sola. + +Iz vyds 1431 i 1442 godu dabova [[Magdeburga tīseiba|Magdeburga tīseibys]]. Raistejuos kai uodys apdaris centrys. XVI gs. tyka par [[Kaļvinizmys|kaļvinizma]] centru. Piec [[Puolejis daleibys|Puolejis daleibu]] Kurova atsadyure Austrejā, 1809 godā - Varšovys hercogejā, a 1815 godā - [[Kongresa Puoleja|Kongresa Puolejā]]. Piec [[Janvara mieneša sasaceļšona|Janvara mieneša sasaceļšonys]], 1870 godā pagaisynova mīsta tīseibu. +[[Kategoreja:Puolejis mīsti]] + hc04x3mwa0lyus88fbgezohstn1mli7 + + + + Kurīņs + 0 + 190 + + 31556 + 27038 + 2016-08-12T20:43:35Z + + Turaids + 172 + + + wikitext + text/x-wiki + '''Kurīņs''' ([[latvīšu volūda|latvīšu]]: ''kurināmais''; [[krīvu volūda|krīvu]]: ''топливо''; [[anglīšu volūda|anglīšu]]: ''fuel'') — dedzeiga [[Lītne (kimejā)|lītne]], kura vīgli reagej ar uorejū ci pošā lītnē asūšū skuobynuotivi, kuru lītoj lelam [[syltuma energeja|syltuma energejis]] daudzumam dabuot. + +Kurīņa [[Atmeja|atmejis]]: +* Cītais kurīņs: +** kūkna, ževeri; +** dagškeļsnis; +** sapropeļs; +** kudra; +** akmiņūglis; +** i ct. +* Škeistais kurīņs +** daguļs (lītojams transportleidzieklim): +*** benzins; +*** dizeļdaguļs (dizeļs); +*** mazuts; +*** soļarolejs (soļars); +*** gazolins +*** i ct.'' +** Oleji: +*** škeļšņa olejs; +*** izlītuots mašiņolejs; +*** auguoju olejs; +*** i ct.; +** Spirts: +*** etanols; +*** metanols; +*** propanols. +** Škeistais raketu kurīņs. +** Eteri: +*** spirtu izomeri: +**** metil-tret-butileters (MTBE); +**** dimetileters (DME); +*** taukskuobu eteri: +**** eterizāti auguoju oleji (biodizeļs). +** Emuļsejis: +*** iudiņkurīņa emuļseja; +*** etilspirts benzinūs; +*** oleji benzinūs. +** Siņtetiskī kurīni, kurus pīgatavis [[Pīgatave|pīgatavis]] pamatā Fišera-Tropša process: +*** nu ūgļu (CTL); +*** nu biomasys (BTL); +*** nu dobysgazys (GTL). +* Gazeigī kurīni: +** Propans +** Butans +** Metans, dobysgaza, ūgļu kluošku metans, rudysgaza, pūrugaza, biogaza, augzemis gaza, metana hidrats +** Iudineklis +** Samīgtuo dobysgaza (CNG) +** Cītuo kurīņa gazificiešonys produkti; +*** Ūgļu - siņteze, generatoru gaza, koksa gaza +*** Kūknys +** Maisīni +*** Propana i butana maisīņs (LPG) +*** Iudinekļa i dobysgazys maisīņs (HCNG) +* Dispersivuos sistemys, škeistumi: +** Aerosoli +*** Ūgļu putekli +*** Aļumineja, magneja putekli +** Putys: +*** Gazodizeļs (dobysgazys i dizeļdaguļa maisīņs) +*** Iudinekļa i beņzina maisīņs +** Suspeņsejis +*** Iudiņnitratu kurīņs ("škeistais puļviers") +* Natipiskī kurīni: +** Kūdulkurīņs +** Syltumkūdulkurīņs +** Raketu kurīņs + hosugqbo1jvlaqkg4vgl7igevytr037 + + + + Ladslaiki + 0 + 192 + + 28218 + 28077 + 2013-03-07T18:08:44Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 57 interwiki links, now provided by [[d:|Wikidata]] on [[d:q49367]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Ladslaiki''' (anglīšu: ''Ice Age''; krīvu: ''ледниковый период''; latvīšu: ''ledus laikmets'') — laikavyds Zemis geologiskajā viesturē, kuram soveiga mudra klimata atsaļšona i laduoju pasadareišona na viņ polariskuo, a i māronuotuo klimata apgabaļūs. Pādejī ladslaiki beja kvartara periodā i beidzēs pyrma apmāram 10 tyukstūšu godu. Ladslaiku periodi geologiskajā viesturē mejuos ar kūna piļneigys laduoju pagaisšonys laikavydim (vydladslaikim). + +[[Kategoreja:Viesture]] + buh2keevg71mf9p59y0ecq2i76cn98i + + + + Laduojs + 0 + 193 + + 28911 + 28219 + 2013-03-08T13:23:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q35666]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Laduojs''' (anglīšu: ''glacier''; krīvu: ''ледник''; latvīšu: ''ledājs'') — kusteiga kristaliskuo lads dobyska masa, asūša iz zemisviersa i atsaroduse kai atmosferys cītūs [[Krytuli|krytuļu]] pīsalasejuma i tuoluoka puorsamejuma rezultats. + +Laduoji irā vysūs Zemis koņtinentūs, jī atrūnami planetys soltajuos teritorejuos, taipoš augstūs kolnu viersyunēs. Laduoji kust [[Zemis gravitaceja|Zemis gravitacejis]] [[Veice|veicē]]. Koč vysuvaira iudiņa iz planetys irā [[Okeans|okeanūs]], tok laduoju izalaisšona dūd Zemei vysudaudzuok taišni [[Svīžais iudiņs|svīžuo iudiņa]]. + +[[Fails:155 - Glacier Perito Moreno - Panorama de la partie nord - Janvier 2010.jpg|center|thumb|800px|Laduojs.]] + +[[Kategoreja:Apleiczineiba]] +[[Kategoreja:Geografeja]] +[[Kategoreja:Iudiņs]] + oinqqxgefskavpdkldfqgzk8ta0i9ad + + + + Laikvuords + 0 + 194 + + 30554 + 28220 + 2015-03-01T18:56:13Z + + 212.93.115.76 + + /* Atsagrīžamī laikvuordi */ + wikitext + text/x-wiki + '''Laikvuords''' (anglīšu: ''verb''; krīvu: ''глагол''; latvīšu: ''darbības vārds; verbs'') — runysdaļa, kura izsoka darbeibu voi stāti kai laikā nūteikūšu procesu i atsoka iz vaicuojumu ''kū dora?'', ''kū dareja?'', ''kū dareis?'', taipoš iz vaicuojumu ''kas nūteik?'' + +Pīvadumi: ''(leits) lej, (jis) brauc, dzīd; nagribēja, volkuojuos, bļuzneja, raksteis, ruodeis, ass, beja guojs, asūte guojuse''). + +Laikvuordu kategorejis irā persona, laiks, skaits i izsaceiba. + +== Izsaceibys == +Laikvuordam latgaļu volūdā 4 izsaceibys: +# '''Eistynuma izsaceiba''' (''ād'', ''ēde'', ''ēss'', ''irā ieds'', ''beja ieds'', ''byus ieds'') aproksta eistynumā nūteikūšu darbeibu. +# '''Puorstuostis izsaceiba''' (''āds'', ''ieškys'', ''ass ieds'', ''byuškys ieds'') aproksta darbeibu cyta cylvāka puorstuostē, cieškuok tūlaik, kod runuotuojs nazyna, ci taišni tai irā nūtics, a voi jam gribīs nazkai atsarūbežuot nu tūs darbeibu. +# '''Gribiejuma izsaceiba''' (''āstum'', ''āstim'', ''āstu'', ''āstumem'', ''āstumet'', ''byutum ieds'', ''byutim ieds'', ''byutu ieds'', ''byutumem āduši'', ''byutumet āduši'', ) aproksta darbeibu, kura nūtyktu, ci taidu, kurū runuotuojs grybātu dareit, ka byutu tam atsateikūši apstuokli. +# '''Pīsacejuma izsaceiba''' (''ēd!'', ''lai ēss!'', ''ēssim!'', ''ēdit!'') aproksta pīsacejumu ūtrajai personai nazkū dareit. + +Vītā latvīšu vajadzeibys izsaceibys tradicionalajā latgaļu volūdā lītoj konstrukcejis ar '''''vajadzēt''''' voi '''''daīt, dasaīt, dasavest''''' i laikvuordu nanūsaceibā (latvīšu ''man jāēd, tev jāēd, viņam/viņai jāēd, mums jāēd, jums jāēd, viņiem/viņām jāēd'' - latgaļu ''maņ vajag ēst, tev vajag ēst, jam/jai vajag ēst, mums vajag ēst, jums vajag ēst, jim/jom vajag ēst''; ''maņ daīt ēst, tev daīt ēst, jam/jai daīt ēst, mums daīt ēst, jums daīt ēst, jim/jom daīt ēst''). + +Konstrukcejis ar ''daīt, dasaīt, dasavest'' lītoj tūlaik, kod vajadzeiba irā mīdzama, aizstotoma. Pīvadumam: latvīšu ''man '''jāēd''' vairāk dārzeņu, tad būšu veselāks'' - latgaļu ''maņ '''vajag ēst''' daudzuok duorzuoju, tūlaik byušu veseliškuoks'', bet: latvīšu ''es taču vecmāmiņu pazīstu, pie viņas atkal būs daudz '''jāēd''''' - latgaļu ''es tok vaceiti pazeistu, pi juos otkon '''daīs/dasaīs''' daudzi '''ēst'''''. + +== Laikvuorda pamatformys == +Atlasynuotuos formys var darynuot nu 3 pamtformu - nanūsaceibys, 3 personys vīnskaita niulejuo laika, 3 personys vīnskaita puorguojušuo laika. Pīvadumam, ''skaiteit''-''skaita''-''skaiteja'', ''stateit''-''stota''-''stateja''. Latgalīšu volūda itamā zinē leidzeiga lejislatvīšu i litaunīku volūdai - laikvuordu pamata formys vīgļuok izavuiceit sevkuram laikvuordam pa sevim nakai izavuiceit gryutu lykumu, kurs nūsoka, kaidys formys lītuot sevkuram laikvuordam. (Anglīšu i vuocīšu volūdā irā saroksts ar nazcik symtu ''naregularūs laikvuordu'', a latgalim ''naregulari'' irā lelums laikvuordu). + +Atlasynuotuos formys ir cytys laiku formys eistynuma izsaceibā, cytu izsaceibu formys, dorūtne i cīšūtne, divdabu formys (kurys lītoj i nazcik laikvuordu formom sastateit, pīvadumam, salyktajūs laikūs i cīšūtnē). + +== Konjugacejis (personuošonys) == +Laikvuordam irā treis konjugacejis aba personuošonys. Juos var nūstateit pa vysu treju pamatformu golyunem. + +== Atsagrīžamī laikvuordi == +Laikvuordi var byut ''atsagrīžami'' aba ''refleksivi''. Taidu laikvuordu nanūsaceiba tur golyuni "-tīs". Pīvadumam, "mozguotīs", "prīcuotīs". Atsagrīžamī laikvuordi cieški izsoka darbeibu, kurys objekts irā i darbeibys subjekts (pīvadumam, ''jis '''mozgojās''', '''nasās''''') ci izsoka sovā vydā doromu darbeibu (''jī '''stumduos'''''). + +Laikvuordūs ar prīdieklim dasalīk atsagrīžamuo daleņa "'''-sa-'''" voi (piec "iz-", "aiz-") "'''-a-'''", pīvadumam, ''pa'''sa'''raksteit'', ''at'''sa'''stuot'', ''pa'''sa'''jimt'', ''iz'''a'''vuiceit'', ''aiz'''a'''vērt''. A ka prīdēkļa navā, tūlaik rokstoma atsagrīžamuo golyune: ''smīt'''īs''''', ''ceļt'''īs'''''. + +[[Kategoreja:Latgaļu volūda]] + 4bse59par5iuw16seeydfe4rqrydosx + + + + Latgaļu alfabets + 0 + 195 + + 17701 + 11515 + 2011-10-13T23:51:55Z + + Zemgalietis + 856 + + + + kat. + wikitext + text/x-wiki + '''Alfabets irā latgaļu''' vuordim aizraksteit +vajadzeigūs simbolu kūpa aba repertuars. Alfabets nūstota i simbolu saksteibu +aba parādu, kurū var lītuot latgaļu vuordu alfabetiskam saparādam (vuordineicuos, +telefonu sarokstūs i tt). + +{| style="font-family:Arial Unicode MS; font-size:1.4em; border-color:#000000; border-width:1px; border-style:solid; border-collapse:collapse; background-color:#F8F8EF" +| style="width:5em; text-align:center; padding: 3px;" | A a [a] +| style="width:5em; text-align:center; padding: 3px;" | Ā ā [ā] +| style="width:5em; text-align:center; padding: 3px;" | B b [be] +| style="width:5em; text-align:center; padding: 3px;" | C c [ce] +| style="width:5em; text-align:center; padding: 3px;" | Č č [če] +| style="width:5em; text-align:center; padding: 3px;" | D d [de] +| style="width:5em; text-align:center; padding: 3px;" | E e [e] +|- +| style="width:5em; text-align:center; padding: 3px;" | Ē ē [ē] +| style="width:5em; text-align:center; padding: 3px;" | F f [ef] +| style="width:5em; text-align:center; padding: 3px;" | G g [ge] +| style="width:5em; text-align:center; padding: 3px;" | Ģ ģ [g'e] +| style="width:5em; text-align:center; padding: 3px;" | H h [he] +| style="width:5em; text-align:center; padding: 3px;" | I i [i] +| style="width:5em; text-align:center; padding: 3px;" | Y y [y] +|- +| style="width:5em; text-align:center; padding: 3px;" | Ī ī [ī] +| style="width:5em; text-align:center; padding: 3px;" | J j [je] +| style="width:5em; text-align:center; padding: 3px;" | K k [ka] +| style="width:5em; text-align:center; padding: 3px;" | Ķ ķ [k'e] +| style="width:5em; text-align:center; padding: 3px;" | L l [el] +| style="width:5em; text-align:center; padding: 3px;" | Ļ ļ [eļ] +| style="width:5em; text-align:center; padding: 3px;" | M m [em] +|- +| style="width:5em; text-align:center; padding: 3px;" | N n [en] +| style="width:5em; text-align:center; padding: 3px;" | Ņ ņ [eņ] +| style="width:5em; text-align:center; padding: 3px;" | O o [o] +| style="width:5em; text-align:center; padding: 3px;" | Ō ō [ō] +| style="width:5em; text-align:center; padding: 3px;" | P p [pe] +| style="width:5em; text-align:center; padding: 3px;" | R r [er] +| style="width:5em; text-align:center; padding: 3px;" | S s [es] +|- +| style="width:5em; text-align:center; padding: 3px;" | Š š [eš] +| style="width:5em; text-align:center; padding: 3px;" | T t [te] +| style="width:5em; text-align:center; padding: 3px;" | U u [u] +| style="width:5em; text-align:center; padding: 3px;" | Ū ū [ū] +| style="width:5em; text-align:center; padding: 3px;" | V v [ve] +| style="width:5em; text-align:center; padding: 3px;" | Z z [ze] +| style="width:5em; text-align:center; padding: 3px;" | Ž ž [že] +|} +Liters "Y" alfabetā īt iz reizis aiz burta "I", leidzeigi kai lītaunīku volūdys alfabetā. Literu '''Ō''' i '''ō''' navīgli dabuot nu standarta latvīšu klaviaturys; HTMLa i Vikipedejis dokumentūs var raksteit jūs Unikoda numerus itai: + +&amp;#x014C; i &amp;#x014D; + +Literi '''Ō''' i '''ō''' cieški vajadzeigi Pītera Stroda ortografejā i myuslaiku katuoļu tekstūs, a jaunajā ortografejā jūs lītuoj rešuok. Ap '''Ō''' i '''ō''' pareizu lītuošonu vēļ nūteik streidi. + +== Resursi == +* [http://www.genling.nw.ru/baltist/Publicat/LatgVol1.pdf Latgaļu volūdys gramatika] +* [[:lv:Latvie%C5%A1u_valoda#Alfab.C4.93ts|Latvīšu alfabets]] +* [[:lt:Lietuvi%C5%B3_kalba#Ab.C4.97c.C4.97l.C4.97|Lītaunīku alfabets]] +* [[:bat-smg:%C5%BDemaitiu_ab%C4%97c%C4%97l%C4%97|Žemaišu alfabets]] + +[[Kategoreja:Latgaļu volūda]] + tr8bsjsmutrswp9t1zcjmttmj9eghb1 + + + + Latgaļu demokratu bloks + 0 + 196 + + 17861 + 17860 + 2011-10-15T23:09:09Z + + Zemgalietis + 856 + + wikitext + text/x-wiki + '''Latgaļu demokratu bloks''' — latgaļu deputatu grupa 1-ajā [[Latveja|Latvejis Republikys]] [[Seima|Seimā]]. + +Bloks īstateits 1924 g., jamā īguoja [[Fraņcs Trasuns|F. Trasuns]], [[A. Dzeņs]], [[J. Roskošs]], [[Fraņcs Kemps|F. Kemps]]. + +[[Kategoreja:Latvejis politika]] + 6a1e4qynelcinjexe9b1btutfjbmmg3 + + + + Latgalīšu etnokulturys centrys + 0 + 197 + + 13581 + 13578 + 2011-04-21T10:19:52Z + + Stiernīts~ltgwiki + 315 + + wikitext + text/x-wiki + '''Latgalīšu etnokulturys centrys''' (LgEKC) — bīdreiba, kurys snāgs irā izglobuot, raisteit i popularizēt latgalīšu tradiconalū kulturu. + +LgEKC īstateits 2007 g. juļa 19 d., registrāts LR Pasajāmumu registrā 2007. g. augusta 2 d. Par pyrmū volda pirminīku ībolsuots Arturs Uškāns. + +Bīdreibys darbeiba apjam: +* seminaru, konfereņceju i cytu vuicūšu sariedīņu organiziešonu; +* folklora ekspedicejis; +* latgalīšu etnokulturys zinisku tiemiejumu paturiešonu; +* latgalīšu etnokulturys materialu arhiva taiseišonu. + +LgEKC dora kūpā ar folkora i etnografiskūs ansambļu vadeituojim i dalinīkim, amatnīkim, tautys muzykantim, etnokulturys tāmātuojim, taipoš ar pasajāmumim i pošvoldu pīstuovim. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Etnokultura]] +[[Kategoreja:Latgolys organizacejis]] + tbd7vzwnnjmf88vghhsr8o7njmz50jh + + + + Latgaļu gramatika + 0 + 198 + + 27048 + 11518 + 2013-01-22T14:10:14Z + + Turaids + 172 + + + Pīvīnuoju kategoreju i taisu. + wikitext + text/x-wiki + * Runysdalis +** [[Lītysvuords]] +*** [[Lītysvuordu lūceišona]] +** [[Soveibnīks]] +*** [[Samāra pakuopīni]] +** [[Vītinīks]] +** [[Skaitvuords]] +** [[Laikvuords]] +*** [[Nanūsaceiba]] +*** [[Supins]] +*** [[Dorūtne]] +*** [[Cīšūtne]] +*** [[Divdabi]] +** [[Apstuoklinīks]] +** [[Prīvuords]] +** [[Dalineite]] +** [[Saisteklis]] +** [[Jutumnīks]] + +* Cytys temys +** [[Metatoneja]] +** [[Genitiva i akuzativa lītuošona]] + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Latgaļu volūda]] + smqgby97o5cvcuvharx0yvgfugybg0c + + + + Latgolys himna + 0 + 199 + + 31930 + 31928 + 2017-03-19T07:33:57Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + '''Latgolys himna''' (baļtīšu: ''Latgales himna'', anglīšu: ''Latgalian anthem'', krīvu: ''латгальский гимн'') — [[Juoņs (Eugeņs) Karūdznīks|Eugeņa Karūdznīka]] komponātuo dzīsme ar [[Anna Rancāne|Annys Rancānis]] vuordim ''Dzīd, trailoj mežs'' svieteigai dzīžama lelumā latgalīšu ļaudyskūs sariedīņu i, koč cikom kas naoficialai, irā tykuse par latgalīšu [[Himna|himnu]]. + +== Himnys vuordi == +<poem> +Dzīd, trailoj mežs +I akmiņs gavilej +Tik skaidrā volūdā +Kai iudiņs olūtā. + +Klaus, suneits rej, +Guņs puortā sprakstinej +Tik skaidrā volūdā +Kai iudiņs olūtā. + +Brīst rudzi teirumā +I grīze grīž +Tik skaidrā volūdā +Kai iudiņs olūtā. + +Ar myusim tāvzeme +Tai runojās: +Tik skaidrā volūdā +Kai iudiņs olūtā. +</poem> + +{{DEFAULTSORT:Latgaļu himnys}} + +[[Kategoreja:Latgolys simboli|Himnys]] +[[Kategoreja:Himni]] + 2k5w0je88515yg3puz3uag2yhtjrlx5 + + + + Latgaļu iedīni + 0 + 200 + + 23893 + 23714 + 2012-07-05T12:43:52Z + + Stiernīts~ltgwiki + 315 + + + wikitext + text/x-wiki + ''(latgalīšu iedīni, latgaliešu ēdieni, latgaļu ēdieni, Latgolys iedīni, Latgolys recepti, Latgales ēdieni, Latgales receptes, Latgales nacionālais ēdiens)'' + +==A== +* [[Abāda|Abāda (abādu kuopusti)]] +* [[Acteņa]] +* [[Aplicīņs]] +* [[Asuškys]] +* [[Auzu keisieļs]] + +== B == +* [[Batveņa|Batveņa]] +* [[Bārzu sulys]] +* [[Bīzais keisieļs]] +* [[Bīzī kuopusti]] +* [[Bygucs]] +* [[Boltais sīrs]] +* [[Boltuos dasys]] +* [[Buļbešnīki]] +* [[Buļbis ar katuku]] +* [[Buļbu blīni]] +* [[Buļbu dasys]] +* [[Buļbu meiceknis]] +* [[Būrkuonu bryuklinis]] + +== C == +* [[Cymuss]] +* [[Cureite]] + +== D == +* [[Dasys pa latgalīšim]] +* [[Dzjupka]] +* [[Dzyra]] + +== G == +* [[Golvys sīrs]] +* [[Gryuslis]] +* [[Grucs]] +* [[Buļbešnīki|Guļbešnīki]] + +== I == +*[[Iz ūgļu capta siļče]] + +== J == +* [[Juknova]] + +== K == +* [[Kanepīns]] +* [[Kapcāts zuts]] +* [[Karseknis]] +* [[Kļockys|Kļockys]] +* [[Kļovu sulys]] +* [[Komys]] +* [[Kopuotuos dasys]] +* [[Krapanīks]] +* [[Krupnīks]] +* [[Kugeļs]] +* [[Kukuleiši]] +* [[Kūčys]] + +== L == +* [[Latgolys ogūrču salati]] +* [[Latgolys oknu salati]] +* [[Latgolys rysa]] +* [[Lauluotais sīrs]] +* [[Leiņs pīnā]] +* [[Lejnīki]] + +== M == +* [[Dzyra|Mads dzyra]] +* [[Mads ogūrči]] +* [[Makuss]] +* [[Buļbu meiceknis|Meiceknis]] +* [[Miļtinīks]] +* [[Murcauka|Murce (murcauka)]] + +== O == +* [[Oknu sīrs]] +* [[Ols]] + +== P == +* [[Aplicīņs|Pameikstais]] +* [[Pancaks]] +* [[Paneju keisieļs]] +* [[Paneju peirāgi]] +* [[Patakys]] +* [[Pavaļmini]] +* [[Pīckuortnis]] +* [[Pīns ar capuri]] +* [[Pontogs]] +* [[Veisteknis|Puorpace]] +* [[Putruomu dasys]] + +== R == +* [[Ramans]] +* [[Raugeņa]] +* [[Riepneica]] +* [[Ruļads]] +* [[Dzyra|Runkuļu dzyra]] +* [[Rūženis]] + +== S == +* [[Saladuks]] +* [[Salejums]] +* [[Siļče ar bīzapīnu i cybulim]] +* [[Sīrnīki]] +* [[Skuobuļs]] +* [[Soldonais bīzapīns]] +* [[Buļbu meiceknis|Styumīņs]] +* [[Stoks]] +* [[Studiņs]] +* [[Stuļčs]] +* [[Suonkauleiši]] +* [[Sutnis|Sutiņs]] + +== Š == +* [[Škeistī kuopusti]] +* [[Šmakauceņa]] +* [[Škvarkys]] + +== T == +*[[Tatarvans]] +*[[Trombelis]] + +== U == +* [[Cureite|Ubagine]] +* [[Batveņa|Uboga asnis]] +* [[Uobeļu lopu čajs]] + +== Ū == +* [[Ūlukne|Ūlukne (ūlinīks)]] + +== V == +* [[Veisteknis]] +* [[Veitātys leidakys]] +* [[Veitātys raudys]] +* [[Virtiņs]] +* [[Vuškys gale ar grīzinim]] + +== Z == +* [[Zacerka]] +* [[Zalī kuopusti]] +* [[Zierņu kriesleni]] + +== Ž == +* [[Žagareni|Žagareni]] + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Latgaļu vyrtuve]] + 1n2dbm7s9gtdaqipf7ngvcniae3srrm + + + + Latgolys karūgs + 0 + 201 + + 31369 + 31176 + 2016-03-28T10:38:40Z + + 91.9.119.68 + + [[wmf:Resolution:Licensing policy]] + wikitext + text/x-wiki + :''Najaukt ar [[Latvejis karūgs|Latvejis karūgu]], kurs radeits, izlītojūt senejūs latgalīšu (senejūs latgaļu) karūga vuordysku aprakstejumu Livonejis Atskonu kronikā.'' +[[Fails:Latgalian flag.jpg|thumb|200px|Latgalīšu karūgs (apstyprynuots "Latgolys Saeimā" 2010 g.)]] + +'''Latgolys karūgs''' aba '''latgaļu karūgs,''' aba '''latgalīšu karūgs''' (baļtīšu: ''Latgales karogs,'' ''latgaliešu karogs, latgaļu karogs'', anglīšu: ''Latgalian flag, flag of Latgola, flag of Latgalians'', krīvu: ''латгальский флаг, флаг'' ''Латгалии,'' ''флаг латгальцев'') — nu 16 godusymta zynomuo [[Latgolys gerbs|Latgolys gerba]] (bolts grifs iz sorkona fona) myuslaiceigs izpiļdejums iz Latvejis vaļstiskuo karūga samārā izlykalātu latgalīšim soveiguos tymsai zyluos i boltuos kruosys streipu fona. + +Karūgā radzamais gerbs ar boltu grifu iz sorkona fona kai [[Latgolys gerbs|Latgolys (Infļaņtejis) gerbs]] lītuots nu 16 godusymta da 1921 godam, cikom Reigā oficialai naapstyprynuoja cytaida [[Latgolys gerbs|Latgolys gerba]] , kurs izaškir nu viesturiskuo. Zyluo kruosa latgalīšu karūgā simbolizej senejūs latgalīšu muokslu (mieļu vylnainis), Latgolys azarus i upis, naktineicu zīdus i lynazīdus. Kruosu streipu samārs izlītuots taids pat kai Latvejis vaļsteibys karūgā, līvu karūgā i Sielejis karūgā, tai simbolizejūt Latvejis regionalūs kulturu vīneibu. Pa heraļdikys princypim, praktikā varams lītuot i zylai-boltai-zyluo latgalīšu karūga variaceju bez grifa. + +Latgalīšu karūgs apstyprynuots latgalīšu pīstuoveibys organizacejā "Latgolys Saeima" [[Rēzne|Rēznē]] 2010 godā, īsvieteits [[Aglyuna|Aglyunā]] 2011 godā. Latgolys planavuošonys regiona raisteibys padūme 2011 godā suokuse sarunys ar Latvejis Heraļdikys komiseju ap latgalīšu karūga apstyprynuošonu taipoš par Latgolys regiona karūgu. + + +== Verīs taipoš == +* [[Latgolys himnys]] +* [[Latgolys gerbs]] + +== Uorejuos nūruodis == +* [http://rubon.eu/index.php?option=com_content&view=article&id=10&Itemid=10 Simbolika] +* [http://lakuga.lv/posts/latgalisu-karugs-imanta-dina-bahmatus "Latgalīšu kulturys gazeta" ap latgalīšu karūgu] + +[[Kategoreja:Latgolys simboli|Karūgs]] + b6r465r0l1829m9khbfm8c3hh71vhqn + + + + Latgaļu volūda + 0 + 202 + + 30347 + 28221 + 2014-06-17T14:39:08Z + + 95.252.151.101 + + wikitext + text/x-wiki + {{Infoskreine Volūda + |name = Latgaļu volūda + |nativename = latgaļu + |pronunciation = + |states = Latveja, Krīveja + |speakers = 150-200 tyukstūšys<ref name="weber">[http://www.unesco.org/culture/languages-atlas/en/atlasmap/language-id-376.html Pasauļa volūdu atlants]</ref> +|iso1 = + |iso2 = + |iso2b = + |iso2t = + |iso3 = ltg + |familycolor = Indoeuropīšu + |fam1 = [[Indoeuropīšu volūdys|Indoeuropīšu]] + |fam2 = Baltu-slavu + |fam3 = [[Baltu volūdys|Baltu]] + |fam4 = Reitu baltu + |fam5 = + |script = [[Latiņu alfabets|Latiņu]] ([[Latgaļu alfabets|latgaļu variants]]) + |rank = + |nation = - + |agency = Latgaļu ortografejis zamkomiseja<ref>[http://www.vvc.gov.lv/advantagecms/LV/komisijas/loa.html Vaļsteibys volūdys centra Latgaļu ortografejis zamkomiseja]</ref> +|map=[[Fails:Latgalian language sphere.png|center|250px|border]] +{{legend|#0049a2|Regioni, kur jei irā dzymtuo volūda}} +}} +'''Latgaļu volūda''' - baltu volūdu grupai pīdarūša indoeuropīšu saimis volūda. Kasdīnā jū lītoj 150-200 tyukstūšys ļaužu, tok oficiala skaita navā. Latgaliskai runoj [[Latveja|Latvejis]] reitūs - vysā [[Latgola|Latgolā]] i Sielejis dīnavydreitūs, taipoš lela latgaļu kūpeiba [[Reiga|Reigā]]. Pošys leluos uorzemu kūpeibys irā [[Krīveja|Krīvejā]] - Krasnojarskys nūvodā Sibirī i Baškirejis republikā. Nazcik ļaužu latgaliskai vēļ runoj [[Boltkrīveja|Boltkrīvejis]] i [[Krīveja|Krīvejis]] rūbežmalē, etnografiskajuos latgaļu teritorejuos ap Drysu Boltkrīvejā i Sebežu Krīvejā. Nalela volūdys runuotuoju kūpeiba dzeivoj ASV. + +Myuslaiku latgaļu volūda irā senejūs latgaļu volūdys puormaņtineica. Nu 1920 da 1934 godam Latgolā latgaļu volūda beja lītojama pošvoldu īstatēs i školuos. Šudiņ latgaļu volūda natur nikaida oficiala statusa. + +== Gramatika == +Latgaļu volūda radneiga [[Lītaunīku volūda|lītaunīku]], [[Latvīšu volūda|latvīšu]] i [[žemaišu volūda|žemaišu]] volūdai. + +===Latgaļu volūdys lītysvuordu (''substantīva''), soveibnīku (''adiectīva'') i skaitvuordu (''numeralia'') lūceišonys tipi=== + +====Veirīšu kuorta (''masculīnum'')==== +<div style="overflow:auto"> +{| class="vīnskaits" border=1 +|- +| +| '''1 tips''' +| '''2 tips''' +| '''3 tips''' +| '''4 tips''' +| '''5 tips''' +| '''6 tips''' +| '''7 tips''' +| '''8 tips''' +| '''9 tips''' +| '''10 tips''' +| '''11 tips''' +| '''12 tips''' +|----- +| | '''Tipam soveiguos pīzeimis''' → <br><br><br><br><br><br><br><br><br><br><br><br><br>'''Lūcejums i lūcejuma vacuojums<br> ↓''' +| ......................... +| vsk.<br>suociejs<br>i nūsaceituojs beidzās vīnaiži,<br>t. i., ar '''''-(d)s''''' (izrunoj kai cītu ''[-c]'') +| '''1)''' vsk. suociejs beidzās ar '''''-(n)s'''''<br>(izrunoj ''[-nc]'');<br><br>'''2)''' daudziskaita suociejā i deviejā cīta izruna<br>''[-ny, -nym]''<br>.............. +| vsk. suociejs beidzās ar<br>'''''-(dž)ys''''', '''''-(g)ys''''', '''''-(r)ys'''''................... +| '''1)''' vsk. suociejs beidzās ar<br>'''''-(l)ys''''', '''''-(n)ys'''''; <br><br>'''2)''' daudziskaita suociejā i deviejā cīta izruna<br>''[-ly, -ny,<br>-lym, -nym]<br>...................'' +| '''1)''' vsk. suociejs beidzās ar '''''-(n)is'''''<br>(izrunoj kai meikstu ''[-n'is']''); <br><br>'''2)''' lūkūt leidzaskaņa '''''-n-''''' raksteiba mejās iz '''''-ņ-'''''; <br><br>'''3)''' vsk. papiļdeituojā i vītuotuojā golūtne '''''-u, -ā''''' +| '''1)''' vsk. suociejs beidzās ar '''''-(ļ)š''''', '''''-(ņ)š''''' (izrunoj atsateikūši kai meikstus<br>''[-l'š, -n'č]''); <br><br>'''2)''' daudziskaitā lūkūt leidzaskaņa '''''-l-, -n-''''' raksteiba mejās atsateikūši iz '''''-ļ-, -ņ-''''') ......................... +| '''1)''' vsk. suociejs beidzās ar '''''-(ļ)s, -(ņ)s''''' (izrunoj atsateikūši kai meikstus<br> ''[-l's', -n'c']''); <br><br>'''2)''' vsk. papiļdeituojā<br>i vītuotuojā golūtne<br> '''''-i, -ī'''''; <br><br>'''3)''' daudziskaitā lūkūt leidzaskaņa '''''-l-, -n-''''' raksteiba mejās atsateikūši iz<br>'''''-ļ-, -ņ-''''' ....................... +| '''1)''' vsk. suociejs beidzās ar '''''-(č)s''', '''''-(dž)s''', '''''-(r)s'''''<br>(izrunoj atsateikūši kai cītus ''[-čš], [-džš]'' i meikstu voi cītu ''[-r's'//-rs]''); <br><br>'''2)''' vsk. papiļdeituojā i vītuotuojā golūtne '''''-i, -ī'''''...................... +| '''1)''' vsk. suociejs beidzās ar meikstu '''''s''''',<br>t. i., ar<br>'''''-(d)s, -(t)s, -(c)s, -(s)s, -(z)s''''' (izrunoj atsateikūši<br>kai meikstus<br>''[-c'], [-c'], [-c's'], [-s's'], [-s's']''); <br><br>'''2)''' i vīnskaitā, i daudziskaitā lūkūt meikstais leidzaskaņs ''[d', t', c', s', z']'' mejās atsateikūši iz ''[ž, š, č, š, ž]'' +| '''1)''' vsk. suociejs beidzās ar '''''-(l)is''''', '''''-(n)is''''' (izrunoj kai meikstus<br>''[-l'is'], [-n'is']''; <br><br>'''2)''' lūkūt leidzaskaņa<br>'''''-l-, -n-''''' raksteiba mejās atsateikūši iz '''''-ļ-, -ņ-'''''; <br><br>'''3)''' vsk. papiļdeituojā i vītuotuojā golūtne '''''-i, -ī''''' +| '''1)''' vsk. suociejs beidzās ar '''''-(r)is'''''<br>(izrunoj kai meikstu ''[-r'is']''; <br><br>'''2)''' vsk. papiļdeituojā i vītuotuojā golūtne '''''-i, -ī''''' + + +|----- +| VĪNSKAITS +| +| +| +| +| +| +| +| +| +| +| +| + +|----- +| Suociejs ''Nominatīvus''<br>''kas?'' +| lob'''s''' tāv'''s''',<br> ladoj'''s''' viej'''s''',<br> gar'''s''' kar'''s''',<br> catūrt'''s''' tierg'''s''',<br> treš'''s''' mež'''s''' +| mad'''s''' ''[mac]'',<br>lad'''s''' ''[lac]'', god'''s''' ''[goc]'' +| pyln'''s''' koln'''s''' ''[pylnc kolnc]'',<br> maln'''s''' valn'''s''' ''[malnc valnc]'' +| <u>ūtr'''ys'''</u> <u>Jūrdž'''ys</u>''',<br> <u>stypr'''ys</u>''' <u>mozg'''ys</u>''' +| <u>špetn'''ys</u>''' <u>orkl'''ys</u>''',<br> <u>kupl'''ys</u>''' <u>osn'''ys</u>''' +| <u>slapn'''is</u>''' +| <u>zaļ'''š</u>''' <u>kūceņ'''š</u>'''<br>''[zal'š kūc'en'č]'' ,<br> <u>mozeņ'''š</u>''' <u>ceļ'''š</u>'''<br>''[moz'en'č c'el'š]'' +| bruoļ'''s''',<br> dzeļziņ'''s''' spaņ'''s''' ''[dzeļziņc spaņc]'' +| kač'''s''' ''[kačš]'', <br> zuodž'''s''' ''[zuočš]'',<br> liter'''s''' ''[liter's']'' +| brīd'''s''' ''[b'r'īc']'',<br> tautīt'''s''' ''[taut'īc']'',<br> luoc'''s''' ''[luoc's']'',<br> ūs'''s''' ''[ūs's']'',<br> uoz'''s''' ''[uos's']'' +| <u>osūkl'''is</u>''' ''[osūk'l'is']'', <u>meicekn'''is</u>''' ''[meic'ek'n'is']'' +| <u>bīdr'''is</u>''' ''[b'īd'r'is']'' + +|----- +| Nūsaceituojs ''Genetīvus''<br>''kuo?'' +| lob'''a''' tāv'''a''',<br> ladoj'''a''' viej'''a''',<br> gar'''a''' kar'''a''',<br> catūrt'''a''' tierg'''a''',<br> treš'''a''' mež'''a''' +| <u>mad'''s</u>''' ''[mac]'',<br><u>lad'''s</u>''' ''[lac]'',<br><u>god'''s</u>''' ''[goc]'' +| pyln'''a''' koln'''a''',<br> maln'''a''' valn'''a''' +| ūtr'''a''' Jūrdž'''a''',<br> stypr'''a''' mozg'''a''' +| špetn'''a''' orkl'''a''',<br> kupl'''a''' osn'''a''' +| <u>slapņ'''a</u>''' +| zaļ'''a''' kūceņ'''a''',<br> mozeņ'''a''' ceļ'''a''' +| bruoļ'''a''',<br> dzeļziņ'''a''' spaņ'''a''' +| kač'''a''',<br> zuodž'''a''',<br> liter'''a''' +| <u>brīž'''a</u>''',<br> <u>tautīš'''a</u>''',<br> <u>luoč'''a</u>''',<br> <u>ūš'''a</u>''',<br> <u>uož'''a</u>''' +| <u>osūkļ'''a</u>''', <u>meicekņ'''a</u>''' +| bīdr'''a''' + +|----- +| Deviejs ''Datīvus''<br>''kam?'' +| lob'''am''' tāv'''am''',<br> ladoj'''am''' viej'''am''',<br> gar'''am''' kar'''am''',<br> catūrt'''am''' tierg'''am''',<br> treš'''am''' mež'''am''' +| mad'''am''',<br>lad'''am''',<br>god'''am''' +| pyln'''am''' koln'''am''',<br> maln'''am''' valn'''am''' +| ūtr'''am''' Jūrdž'''am''',<br> stypr'''am''' mozg'''am''' +| špetn'''am''' orkl'''am''',<br> kupl'''am''' osn'''am''' +| slapņ'''am''' +| zaļ'''am''' kūceņ'''am''',<br> mozeņ'''am''' ceļ'''am''' +| bruoļ'''am''',<br> dzeļziņ'''am''' spaņ'''am''' +| kač'''am''',<br> zuodž'''am''',<br> liter'''am''' +| <u>brīž'''am'''</u>,<br> <u>tautīš'''am'''</u>,<br> <u>luoč'''am'''</u>,<br> <u>ūš'''am'''</u>,<br> <u>uož'''am'''</u></big> +| <u>osūkļ'''am'''</u>, <u>meicekņ'''am'''</u> +| bīdr'''am''' + +|----- +| Papiļdeituojs ''Accusatīvus''<br>''kū''? +| lob'''u''' tāv'''u''',<br> ladoj'''u''' viej'''u''',<br> gar'''u''' kar'''u''',<br> catūrt'''u''' tierg'''u''',<br> treš'''u''' mež'''u''' +| mad'''u''',<br>lad'''u''',<br>god'''u''' +| pyln'''u''' koln'''u''',<br> maln'''u''' valn'''u''' +| ūtr'''u''' Jūrdž'''u''',<br> stypr'''u''' mozg'''u''' +| špetn'''u''' orkl'''u''',<br> kupl'''u''' osn'''u''' +| <u>slapņ'''u'''</u> +| zaļ'''u''' kūceņ'''u''',<br> mozeņ'''u''' ceļ'''u''' +| <u>bruol'''i'''</u>,<br> <u>dzeļzin'''i'''</u> <u>span'''i'''</u> +| <u>kač'''i'''</u>,<br> <u>zuodž'''i'''</u>,<br> <u>liter'''i'''</u> +| <u>brīd'''i'''</u>,<br> <u>tautīt'''i'''</u>,<br> <u>luoc'''i'''</u>,<br> <u>ūs'''i'''</u>,<br> <u>uoz'''i'''</u> +| <u>osūkl'''i'''</u>, <u>meicekn'''i'''</u> +| <u>bīdr'''i'''</u> + +|----- +| Vītuotuojs ''Locatīvus''<br>''kimā?'' +| lob'''ā''' tāv'''ā''',<br> ladoj'''ā''' viej'''ā''',<br> gar'''ā''' kar'''ā''',<br> catūrt'''ā''' tierg'''ā''',<br> treš'''ā''' mež'''ā''' +| mad'''ā''',<br>lad'''ā''',<br>god'''ā''' +| pyln'''ā''' koln'''ā''',<br> maln'''ā''' valn'''ā''' +| ūtr'''ā''' Jūrdž'''ā''',<br> stypr'''ā''' mozg'''ā''' +| špetn'''ā''' orkl'''ā''',<br> kupl'''ā''' osn'''ā''' +| <u>slapņ'''ā'''</u> +| zaļ'''ā''' kūceņ'''ā''',<br> mozeņ'''ā''' ceļ'''ā''' +| <u>bruol'''ī'''</u>,<br> <u>dzeļzin'''ī'''</u> <u>span'''ī'''</u> +| <u>kač'''ī'''</u>,<br> <u>zuodž'''ī'''</u>,<br> <u>liter'''ī'''</u> +| <u>brīd'''ī'''</u>,<br> <u>tautīt'''ī'''</u>,<br> <u>luoc'''ī'''</u>,<br> <u>ūs'''ī'''</u>,<br> <u>uoz'''ī'''</u> +| <u>osūkl'''ī'''</u>, <u>meicekn'''ī'''</u> +| <u>bīdr'''ī'''</u> +|----- +| Sauciejs ''Vocatīvus''<br>''-!'' +| - tāv!,<br> - viej!,<br> - ,<br> -, <br> <u>mež'''s'''!</u> +| -,<br>-,<br>- +| - koln!,<br> -<u>valn'''s'''!</u> +| Jūrdž!,<br> - +| -,<br> - +| - +| - kūceņ!,<br> - <u>ceļ'''š'''!</u> +| bruoļ!,<br> +| <u>kač'''i'''</u>!,<br> -,<br> - +| brīd!,<br> tautīt!,<br> luoc!,<br> <u>ūs'''i'''!</u>,<br> <u>uoz'''i'''!</u> +| <u>osūkl'''i'''!</u>, - +| <u>bīdr'''i'''!</u> +|----- +|} +</div> +DAUDZSKAITS +{| class="daudziskaits" border=1 +|- +| '''L., kl. +| -i +| -i +| -i +|----- +| V. kas? +| tāv'''i''' +| osn'''i''' +| ceļ'''i''' +|----- +| K. kuo? +| tāv'''u''' +| osn'''u''' +| ceļ'''u''' +|----- +| N. kam? +| tāv'''im''' +| osn'''im''' +| cel'''im''' +|----- +| G. kū? +| tāv'''us''' +| osn'''us''' +| cel'''im''' +|----- +| In. ar kū? +| tāv'''im''' +| osn'''im''' +| cel'''im''' +|----- +| L. kamī? +| tāv'''ūs''' +| osn'''ūs''' +| ceļ'''ūs''' +|----- +| V. -! +| tāv'''i'''! +| osn'''i'''! +| cel'''i'''! +|} + + +'''Ūtruo deklinaceja'''</br> +VĪNASKAITA +{| class="vīnaskaita" border=1 +|- +| '''L., kl. +| -s +| -is +|----- +| N. kas? +| bruoļ'''s''' +| kač'''s''' +|----- +| G. kuo? +| bruoļ'''a''' +| kač'''a''' +|----- +| D. kam? +| bruoļ'''am''' +| kač'''am''' +|----- +| A. kū? +| bruol'''i''' +| kač'''i''' +|----- +| In. ar kū? +| bruol'''i''' +| kač'''i''' +|----- +| L. kimā? +| bruol'''ī''' +| kač'''ī''' +|----- +| V. -! +| bruoļ! +| kač'''i'''! +|} + +DAUDZISKAITS +{| class="daudzskaits" border=1 +|- +| '''L., kl. +| -i +| -i +|----- +| N. kas? +| bruoļ'''i''' +| kač'''i''' +|----- +| G. kuo? +| bruoļ'''u''' +| kač'''u''' +|----- +| D. kam? +| bruol'''im''' +| kač'''im''' +|----- +| A. kū? +| bruoļ'''us''' +| kač'''us''' +|----- +| In. ar kū? +| bruoļ'''us''' +| kač'''us''' +|----- +| L. kimā? +| bruol'''im''' +| kač'''im''' +|----- +| V. -! +| bruol'''i'''! +| kač'''i'''! +|} + + +'''Trešuo deklinaceja'''</br> +VĪNASKAITA +{| class="vīnaskaita" border=1 +|- +| '''L., kl. +| -us +|----- +| N. kas? +| Mik'''us''' +|----- +| G. kuo? +| Mik'''us''' +|----- +| D. kam? +| Mik'''um''' +|----- +| A. kū? +| Mik'''u''' +|----- +| In. ar kū? +| Mik'''u''' +|----- +| L. kimā? +| Mik'''ū''' +|----- +| V. -! +| Mik'''us'''! +|} + +DAUDZSKAITS +{| class="daudzskaits" border=1 +|- +| '''L., kl. +| -i +|----- +| N. kas? +| Mik'''i''' +|----- +| G. kuo? +| Mik'''u''' +|----- +| D. kam? +| Mik'''im''' +|----- +| A. kū? +| Mik'''us''' +|----- +| In. ar kū? +| Mik'''im''' +|----- +| L. kimā? +| Mik'''ūs''' +|----- +| V. -! +| Mik'''i'''! +|} + + +'''Caturtuo deklinaceja'''</br> +VĪNASKAITA +{| class="vīnaskaita" border=1 +|- +| '''L., kl. +| -a +| -a +|----- +| N. kas? +| kūdeļ'''a''' +| muos'''a''' +|----- +| G. kuo? +| kūdel'''is''' +| muos'''ys''' +|----- +| D. kam? +| kūdeļ'''ai''' +| muos'''ai''' +|----- +| A. kū? +| kūdeļ'''u''' +| muos'''u''' +|----- +| In. ar kū? +| kūdeļ'''u''' +| muos'''u''' +|----- +| L. kimā? +| kūdeļ'''ā''' +| muos'''ā''' +|----- +| V. -! +| kūdeļ'''a'''! +| muos! +|} + +DAUDZSKAITS +{| class="daudzskaits" border=1 +|- +| '''L., kl. +| -is +| -ys +|----- +| N. kas? +| kūdel'''is''' +| muos'''ys''' +|----- +| G. kuo? +| kūdeļ'''u''' +| muos'''u''' +|----- +| D. kam? +| kūdel'''om''' +| muos'''om''' +|----- +| A. kū? +| kūdel'''is''' +| muos'''ys''' +|----- +| In. ar kū? +| kūdeļ'''os''' +| muos'''os''' +|----- +| L. kimā? +| kūdeļ'''uos''' +| muos'''uos''' +|----- +| V. -! +| kūdel'''is'''! +| muos'''ys'''! +|} + + +'''Pīktuo deklinaceja'''</br> +VĪNASKAITA +{| class="vīnaskaita" border=1 +|- +| '''L., kl. +| -e +| -e +|----- +| N. kas? +| muot'''e''' +| peil'''e''' +|----- +| G. kuo? +| muot'''is''' +| peil'''is''' +|----- +| D. kam? +| muot'''ei''' +| peil'''ei''' +|----- +| A. kū? +| muot'''i''' +| peil'''i''' +|----- +| In. ar kū? +| muot'''i''' +| peil'''i''' +|----- +| L. kimā? +| muot'''ē''' +| peil'''ē''' +|----- +| V. -! +| muot! +| peil'''e'''! +|} + +DAUDZSKAITS +{| class="daudzskaits" border=1 +|- +| '''L., kl. +| -is +| -is +|----- +| N. kas? +| muot'''is''' +| peil'''is''' +|----- +| G. kuo? +| muoš'''u''' +| peiļ'''u''' +|----- +| D. kam? +| muot'''em''' +| peil'''em''' +|----- +| A. kū? +| muot'''is''' +| peil'''is''' +|----- +| In. ar kū? +| muot'''em''' +| peil'''em''' +|----- +| L. kimā? +| muot'''ēs''' +| peil'''ēs''' +|----- +| V. -! +| muot'''is'''! +| peil'''is'''! +|} + + +'''Sestuo deklinaceja'''</br> +VĪNASKAITA +{| class="vīnaskaita" border=1 +|- +| '''L., kl. +| -s +|----- +| N. kas? +| sird'''s''' +|----- +| G. kuo? +| sird'''s''' +|----- +| D. kam? +| sird'''ei''' +|----- +| A. kū? +| sird'''i''' +|----- +| In. ar kū? +| sird'''i''' +|----- +| L. kimā? +| sird'''ī''' +|----- +| V. -! +| sird'''s'''! +|} + +DAUDZSKAITS +{| class="daudzskaits" border=1 +|- +| '''L., kl. +| -i +|----- +| N. kas? +| sird'''s''' +|----- +| G. kuo? +| sirž'''u''' +|----- +| D. kam? +| sird'''im''' +|----- +| A. kū? +| sird'''s''' +|----- +| In. ar kū? +| sird'''im''' +|----- +| L. kimā? +| sird'''īs''' +|----- +| V. -! +| sird'''s'''! +|} + + +'''Lītvuordu deklinaceja''' + +{| class="wikitable" +| rowspan="2" | +| colspan="4" align="center" | vīnskaits +| colspan="4" align="center" | daudzskaits || nemej. +|- +| '''I''' || '''II''' || '''III''' veir. || '''III''' sīv. || '''I''' || '''II''' || '''III''' veir. || '''III''' sīv. || +|- +| N || aś || tu || jis || jei || ḿaś || jius || jī || juos || – +|- +| G || mane (maņiś) || tave (ťaviś) || juo || juos || myusu || jiusu || jūs || jūs ||seve (śaviś) +|- +| D || maņ || ťav || jam || jai || mums || jums || jim || jom ||śaẃ +|- +| A || maņi || ťavi || jū || jū || myus || jius || jūs || juos ||śavi +|- +| I || ar maņi || ar ťavi || ar jū || ar jū || ar myums || ar jums || ar jim || ar jom || ar śavi +|- +| L || maņī || ťavī || jimā || jamā || myusūs || jiusūs || jimūs || jimuos || śavī +|} + +== Verīs taipoš == +* [[Latgaļu volūda ISO standartūs]] + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latgaļu volūda| ]] +[[Kategoreja:Latgola]] + 47alw2ijwksniq8juc3np4akup7rod5 + + + + Latgaļu volūda ISO standartūs + 0 + 203 + + 30388 + 30142 + 2014-06-30T04:48:27Z + + Cekli829 + 277 + + /* Ap ISO/DIS 639/3 */ + wikitext + text/x-wiki + Latgaļu volūdai vēļ nav ISO standarta. Tys nūvad pi puors gryutumim, struodojūt ar latgaļu volūdys tekstim iz datora. Rokstā stuosteits par dažaidom vareibom apīt standartizacejis problemys. + +== ISO 639/1 i ISO 639/2 == +Datorzineibā i cytur cieški lītoj 2-literu apzeimīņus volūdom i vaļsteibom. Pīvadumam, '''en''' irā cieškuok pīzeitais anglīšu volūdys kods, a '''GB''' i '''US''' - vaļsteibu kodi. Šaļtim vīnai volūdai eksistej nazcik variantu, i tūlaik roksta kombinacejis, saceisim, '''en-GB''' (britu anglīšu volūda) ci '''en-US''' (ASV anglīšu volūda). Taidys pasaukys var paleidzēt, pīvadumam, apzeimojūt teksta volūdu MS Office dokumentūs, kab ar tekstu labi dareitu pareizraksteibys lobuotivs (''spelling-checker''). Vaļsteibys kodu pījimts raksteit ar lelajim literim (pasaver standarta [http://www.iso.ch/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html ISO-3166]), a volūdys kodu - ar mozajim literim (pasaver, pīvadumam, standarta [http://www.loc.gov/standards/iso639-2/englangn.html ISO639-2]). + +Nu 2 literu teoretiskai var sataiseit viņ 26*26=676 kombinacejis. Pīvadumam, '''lv-LV''' ir Latvejis latvīšu (baļtīšu) volūda, a '''lt-LT''' - Lītovys lītaunīku volūda. Volūdu vysā pasaulī ir, mozuokais, 3000. Partū taidu 2-literu kodu nagona. Pīvadumam, kods '''lg''' irā aizjimts Ganda aba Luganda volūdai Afrikā, i tod irā problema, ka gribīs '''lg''' lītuot i latgaļu volūdai apzeimuot (pasaver [http://web.archive.org/20020126134537/www.geocities.com/latgalian/ rakstīņa ap latgaļu volūdu]). ISO 639/2 standarts lītoj 3-literu eisynuojumus, tok jimā i volūdu skaits vēļ napiļneigs. + +== Dialektu apzeimuošona == +ISO standartūs tapipoš irā vareiba raksteit kodus volūdu dialektim. Pīvadumam, '''en-scouse''' zeimoj ''Scouse'' anglīšu dialektu, kurū runoj pi Liverpuļa, a kinīšu i arabu volūdom taidus kūpāsalaistus vuordus lītoj vēļ cieškuok. Ka mes latgaļu volūdu īskaiteitumem par latvīšu volūdys dialektu, tūlaik varātu raksteit, pīvadumam, '''lv-ltg''' voi '''lv-lg'''. (Koda '''lv-latgalian''' lītuot pa ISO standartam navar: dialekta pasauka ari vajadzeiga eisa, i na garuoka kai 8 literi.). Tys zeimoj, ka dialekta kodu suokt lītuot irā parostuok; i navajag ni nu kuo atļuovis. Vys tik latgaļu volūdys apzeimuošona ar '''lv-xxx''' atmejis kodu byutu napiļneiga. Vysu pyrma, tys zeimoj zynomu etnoligvistiskū ideņtitetu, a lels daudzums latgaļu nadūmoj, ka jī runoj latvīšu volūdys dialektā. I datorlingvistikys sprīdumi labi nadora - partū ka volūdu dialekti pasaulī cieški da gola nastandartizāti; i MS Word voi cytuos programuos pareizraksteibys lobuotivi var dalikt viņ sovrūčai volūdai, a na dialektam. Kai līcynoj Māris Laureckis, kurs aizajēme ar ''Mandrive Linux'' standartizaceju, Linux'ā navar lītuot volūdys koda, kurymā ir minusa zeime (-). I taidu vītu programiešonā var byut vēļ vairuok. Ite vēļ vīns arguments preteimā latgaļu volūdys dialekta apzeimuošonai. + +=== Kai volūda izaškir nu dialekta? === +Irā taidi sapratīni, atguojuši nu vuocīšu filologu - [[:en:Ausbausprache|Ausbausprache - Abstandsprache - Dachsprache]]. ''Abstandsprache'' (volūda deļ atostuma) ir taida volūda, kura nu city cīši izaškir caur sovu strukturu. Pīvadumam, basku volūda irā vysā izolāta nu cytu volūdu Iberejis pussolā; ite tipiska ''Abstandsprache''. A lels daudzums volūdu atsarūn ''dialektu kontinuumā'' (t.i. saprūtameiba ekzistej iz vyds tyvuoku sābru, a īmūt tuoļuok, saprūtameiba var gaist). Pīvadumam, olaņdīšu-frīzīšu-lejisvuocīšu-kolnavuocīšu - ite saksteiba, kuramā tyvuokys volūdys irā sovā vydā saprūtamys, a, pīvadumam, vuocīšu i olaņdīšu - nā. Leidzeigi i nu portugalīšu-galisīšu-spanīšu-provaņsīšu-korsikanīšu-sardinīšu-italīšu volūdu sasadora kontinuums. Voi islandīšu-jaunnorvegīšu(nynorsk)-vacnorvegīšu(bokmal)-danīšu-švedru. Tod goduos, ka nazkurs dialekts standartizejams, kod jam irā politiska zeimeiba. Ekzistej pat taids Max'a Weinreich'a pasacīņs ''a language is a dialect with an army and a navy'' (volūda - ite dialekts ar sovu armeju i floti). Tūlaik latgaļu irā taida ''Ausbausprache'' (volūda deļ paplatynuojuma/konstrukcejis). Jei beja standartizāta deļ katuoļu misionaru darbeibys 18 i 19 godusymtūs, i deļ latgaļu nacionaluos atdzimšonys 20 godusymtā.). Izagoda, ka taidys ''Ausbausprache'' var vieļuok byut otkon dialekti, a cieškuk izīt ūtraiž. Pīvadumam, rakstīņs [http://www.york.ac.uk/depts/lang/Jack_Chambers/globalisation.pdf Glocalization and the Ausbau sociolinguistics of modern Europe] stuosta ap setu/vyrovīšu volūdu Igaunejā; kai jei nu igauņu dialekta 20 godusymtā tyka par sovrūču volūdu. + +== Ap ISO/DIS 639/3 == +Taids kods (izškireibā nu 2-literu koda, kurūs teik na vysom volūdom), ISO/DIS 639/3 kodu irā gona: teoretiski varams sataseit 17576 kodus - t.i. byus gona vysom pasauļa volūdom). Ar ISO standartizej i viesturiskys volūdys, pīvadumam, [http://en.wikipedia.org/wiki/Vandalic_language vandaļu volūdu]. Ap ISO/DIS 639/3 standartu vēļ raksteits ite: [http://en.wikipedia.org/wiki/ISO_639-3]. Taidi kodi jau daškierti 7600 volūdu vysā pasaulī. Tān latgaļu koda tī vēļ navā (apsaver [http://www.sil.org/iso639-3/codes.asp?order=name&name=name&letter=l]). Nu Latvejis volūdu tī irā latvīšu (Latvian, ISO 639-3 kods "LAV"; i ISO 639-1 kods "LV"), latvīšu žestu volūda (Latvian sign language, ISO kods "LSL") i līvu volūda (Liv, ISO kods ari "LIV"). Tys kods latgalim varātu byut, pīvadumam, '''ltg''', a varbyut i cyts, kurū standartizacejis specialisti pasūla. Pa munam, latgaļu volūdai lobuok byut ar kaidu naviņ vydtautyskū kodu, nakai bez koda. Cikom oficiala koda latgali vēļ natur, varim lītuot kodu '''lv-ltg'''. Koč tys i zeimoj, ka iz latgaļu volūdys veramēs kai iz latvīšu dialekta: ite piec minusa zeimis roksta dialekta tipu, a '''lv''' ir latvīšu volūdys ISO 639-1 kods. +When there was discution about code of samogitian we decided to use '''Baltic language + samogitian''' = '''bat-smg'''. So, may be it has look like '''bat-ltg'''. + +== Kas ir Ethnologue? == +[http://www.ethnologue.com/show_country.asp?name=LV] - resurss ap dzeivajom volūdom Latvejā. Ethnologue redakceja tī var dalikt vysa kuo jauna. Tūs ISO/DIS 639/3 kodus var daškiert vysom volūdom, kurys ir Ethnologue'ā. Vīgli pasavērt, ka latgaļu volūdys tī vēļ navā. Ethnologue'ā dūts nazcik kritereju, kab volūda byutu izškierta nu cytu [http://www.ethnologue.com/ethno_docs/introduction.asp]: kab 2 volūdys/varianti skaiteitūs kai 2 volūdys, vajadzeiga sovvideiga nasaprūtameiba ci izškireigs etnolingvistiskais ideņtitets. Vajadzeigs tiemiejums, kurymā tys vaicuojums izsprīsts tai voi cytaiž. + +== Latgalīšu oficialais vuords angliski == +[http://en.wikipedia.org/wiki/Latgalian_language] i [http://en.wikipedia.org/wiki/Latgallians] dūd 2 variantus, kai rokstoms latgaļu vuords. Varbyut "latgali", senejī Latgolys ļauds, irā ''Latgallians'' (ar divejim "L"), a "latgali" - parostai "Latgalians"? Ka kuram zynoms pareizais termins, lyudzu, pīrokstit. + +== Nūruodis == +* [http://www.ogmios.org/home.htm Foundation for Endangered Languages (Sorgojamūs volūdu fonds)] +* [[:nds:Wiktionary:Planen_f%C3%B6r_den_Opbo|''Plattdeutsch'' aktivistu diskuseja - itūreiz anglīšu volūdā]] +* [http://samogitia.mch.mii.lt/index-en.htm Žemaišu volūda] +* [http://samogitia.mch.mii.lt/KALBA/girdstr.en.htm Profesors Aleksas Girdenis, žemaišu volūdys aktivists] +* [[:en:European_Charter_for_Regional_or_Minority_Languages|Europys regionalūs i mozūs volūdu harteja]] +* [http://www.loc.gov/standards/iso639-2/englangn.html Codes for the Representation of Names of Languages] +* [http://www.york.ac.uk/depts/lang/Jack_Chambers/globalisation.pdf Globaluo lokalizaceja i konstruktivvolūdu sociolingvistika myuslaiku Europā] +* [http://www.terralingua.org/Definitions/DLangDialect.html Kaida izškireiba iz vyds volūdu i dialektu] + +[[Kategoreja:Latgaļu volūda]] +[[Kategoreja:Vikipedejis lītuošona]] + hr2urmc8vc6adhxbjkxxq5kqc8e4ae2 + + + + Latgaļu volūdys olūti + 0 + 204 + + 11524 + 10530 + 2011-03-24T21:07:18Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + == Vītrunys == + +== Folklors == +[[Pīruna|Latgaļu pīrunys]] + +== Senejuo literatura (18 - 19 gs.) == + +== 20 gs. literatura == + +== Myuslaiku literatura == + +== Viesteitivi == + +== Rūkysgruomotys i vuordineicys == + +[[Kategoreja:Latgaļu volūda]] + nepc11kw356dd1tkevb999si8rsyykw + + + + Latgola + 0 + 205 + + 31616 + 30495 + 2016-11-01T20:37:07Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {{Infoskreine Latvejis viesuriskīs nūvods +| nūvoda_pasauka = Latgola +| zemislopa = Latgale LocMap.png +| gerba_atvaigs = Coat of Arms of Latgale.svg +| gerba_pasauka = Latgales ģerbonis +| karūga_atvaigs = Latgale flag.JPG +| karūga_pasauka = Latgales karogs +| rmīsts = [[Daugpiļs]], [[Jākubmīsts]], [[Rēzekne]] +| pluots = 14 547 +| pluots_gods = +| dzeivuotuoju_skaits= 301 593 +| dzeivuotuoji_gods = 2011 +| bīzeiba = +| teritoriskais_dalejums= {{collapsible list|title=22 nūvodi (3 daļieji)}} +| nūvodu_centri = {{collapsible list|title= 19 centru}} +| teiklavīta = www.latgale.lv +}} +== Viesture == +[[Fails:POL Inflanty IRP COA.svg|thumb|150px|Viesturisks Inflantejis gerbs]] + +== Doba == +:''Golvanīs rakstīņs [[Latgolys doba]]'' + +Geografiskai Latgola izalikaliejuse iz [[Latgolys augstīne|Latgolys]] i [[Sielejis augstīne|Sielejis]] augstīņu i [[Reitulatvejis zamīne|Reitulatvejis]], [[Mudovys zamīne|Mudovys]], [[Polacka zamīne|Polacka]] zamīņu. Tipiskīs Latgolys [[zemisvierīņs]] ar [[Kaupris|kauprim]] i [[Līkne|līknem]] veidūjīs kai [[Laduojs|laduoja]] [[Veice|veicis]] rezultats geologiskajūs [[Ladslaiki|ladslaikūs]]. Latgolys pošys augstuos viersyunis pa vyscaureigajam (absolutajam) augstumam – [[Lelais līpkolns]] (289 m augšuok jiuru leidzīņa) i [[Dzierkaļu kolns]] (286 m augšuok jiuru leidzīņa) Rēznis nūvoda Kaunatys pogostā. Pa samiereigajam (relativajam) augstumam pyrmū vītu aizjam [[Dzierkaļu kolns]], jis pasaceļ augšuok apleicīnis par 89 metri. + +Latgolu arī sauc par Zylūs azaru zemi, Azarzemi. Regiona līknēs atrassim kaidu tyukstūšu azaru, nu jūs poši lelī – [[Lubuons]] (viersas plotums 8070 ha) i [[Rāzna]] (5756 ha). Vysudziļais Latgolys azars (65 m) – [[Dreidzs]]. Nu sovys pusis, Dagdys nūvodā asūšais Ješs tur vysuvaira azarsolu (69). Pa skaitam lelums Latgolys azaru saguluši [[Latgolys augstaine|Latgolys augstainē]]. + +Regionā taipat na moz upu, tikai juos leluokuotīs nalelys. Poša leluo, poša skaistuo i kulturviesturiski vysusvareiguo upe – Daugova, ītakūša Latgolā nu Boltkrīvejis teritorejis. Gobola iz vyds Kruoslovys i Daugpiļs, kurymā upe taisa pīcus leikumus i tak pa apmāram 40 m dziļu upleju, kod nakod sauc Latgolys Šveicarejis. Svareiguokys Daugovys pītakys Latgolā – Aivīkste, Dubna. + +[[Reitulatvejis zamīne|Reitulatvejis zamīnē]] izaplātuši leli pūri i peisi. Teiču pūrs aizjam lelu daļu Krystapiļs i Varakļuonu nūvoda. + +Meži sadz apmāram trešu daļu Latgolys teritorejis. Pūstumlatgolā stīpās egļu skuti, a gar Daugovu – prīžu syli. Dīnavydlatgolys leluos dalis [[Zemisvierīņs|zemisvierīņam]] soveigys bārzu bierzs. + +Latgolā plotys kūdrys atradnis: Krīvu–Jersikys pūrs Leivuonu nūvodā, Kreiču i Kreņovas pūri Kuorsovys i Cyblys nūvodā, Strūžānu pūrs Rēznis nūvodā, taipat muola atradnis: Vileks nūvoda Kuprovā, Leivuonā, Daugpiļs nūvoda Neicgalī. Ceļu būvnīceibā Latgolā lītoj dolomītu, kura vysleluokuos atradnis ir pi Jiekabpiļs. Daugovys uplejā i juos apleicīnē ir lelys smiļkšu atradnis. Leivuona boltū kvarca smiļkti lītoj vītejuo stykla dareitova. + +Klimats Latgolā koņtinentāluoks kai cytā Latvejis teritorejis daļā. Zīmys vīnmār soltuokys i snīga pīkreit dreižuok i juo pasadora bīzuoka kuorta kai palykušajā Latvejis daļā, a vosorys syltuokys. Dagdā i Daugpilī registrāta vysuzamuokuo temperatura (–43 grādi C), i Daugpilī – absolūtuo vysuaugstuokuo (+36 gradi C). + +Deļ plotuo iudiņbaseina Latgolā lela iudiņa putnu, iudiņa kustūnis i molusku vysaideiba, a deļ pūru i peisu – lela pūstumu dzeivinīku i auguoju škiru vysaideiba. Lelajūs meža masivūs Latgolā apteikamys daudzejis taigys dzeivinīku škirys, kuru pīstuovi īceļoj nu Krīvejis (luoči, taigys kustūne i ct.). A Daugovys vacupē, Pīdrujis sausajuos pļovuos i cytuos smiļkšuotuos i atdareituos vītuos sateikamys daudzejis stepu i cytu dīnavydu dzeivinīku i auguoju škirys (tauryni, vabalis, voguli, sieņs i ct.). Latgolā pīskaiteits vaira kai 1850 vabaļu i vogulu škiru. + +Latgolā irā nazcik vaļsteibys sorgojamu dobys objektu – Teiču rezervats, sorgojamuos teritorejis apleik Dreidža, Istrys, Pildys i Odumovys azaru, taipoš 3 sorgojama [[Zemisvierīņs|zemisvierīņa]] apvydi – Sielejis, Viersdaugovys i Daugovys lūku. Jī izslyvuši caur sovpateigajim, daudzatmejeigajim vierīnim i sevišku dobys skaistumu. Bez tuo Latgolā irā daudzi cylvāka īriedeitu parku, a Daugpiļs nūvoda Neicgaļa pogostā atsaguļs miļža akmiņs (apleikmārs 30,5 m, augstums 3,5 m). + +;Pošys augstuos Latgolys viersyunis: ''Pasauka (Byušonys vītys nūvods i pogosts) – vyscaureigais augstums (augšuok jiuru leidzīņa) – samiereigais augstums (augšuok apleicīnis)'' +* [[Lelais Līpkolns]] (Rēznis nūv. Kaunatys pog.) – 289,3 m a. j. leidz. – 86 m +* [[Dzierkaļu kolns]] (Rēznis nūv. Kaunatys pog.) – 286,3 m a. j. leidz. – 89,2 m +* Dubuļu kolns (Rēznis nūv. Kaunatys pog.) – 273,8 m a. j. leidz. – 61,8 m +* Karaļu kolns (Rēznis nūv. Kaunatys pog.) - 272,2 m a. j. leidz. – 55,6 m +* Kromaņu kolns (Rēznis nūv. Kaunatys pog.) - 271,1 m a. j. leidz. – 53,8 m +* Dekšņa kolns (Rēznis nūv. Kaunatys pog.) - 266,5 m a. j. leidz. – 34,9 m +* Greizais kolns (Dagdys nūv. Aņdzeļu pog.) - 263,7 m a. j. leidz. – 60 m + +;Poši lelī Latgolys azari: ''Pasauka (Byušonys vītys nūvods) – viersa pluots'' +* [[Lubuons]] (Rēznis i Modyunis nūv.) – 8070 ha +* [[Rāzna]] (Rēznis nūv.) – 5756 ha +* Rušyuns (Ribinišku nūv.) – 2373 ha +* Sivers (Kruoslovys nūv.) – 1759 ha +* Cierms (Ludzys nūv.) – 1261 ha +* Ješs (Dagdys nūv.) – 988 ha +* Lelais Ludzys azars (Cyblys nūv.) – 846 ha + +;Poši dzilī Latgolys azari: ''Pasauka (Byušonys vītys nūvods) – vysulelais dziļums'' +* [[Dreidzs]] (Kruoslovys nūv.) – 65 m +* Garais (Kruoslovys nūv.) – 56 m +* [[Iļdzs]] (Aglyunys nūv.) – 46 m +* Ormejs (Kruoslovys nūv.) – 43 m +* Ojats (Kruoslovys nūv.) – 41 m + +== Administrativais dalejums == +:''Golvonais rakstīņs: [[Latgolys administrativais dalejums]]'' + +Administrativai Latgola sasadora nu 19 nūvodu i 2 republikys mīstim. Kulturviesturiski Latgolai pīdar i daļa nu Olyuksnys nūvoda (nazkodejais Līpnys pogosts) i Modyunis nūvoda (nazkodejais Borkovys pogosts). Taipoš leluokuo daļa Daugpiļs nūvoda i Daugpiļs mīsta irā Latgolā, a nūvoda daļa Daugovys kairajuo molā i Daugpiļs mīsta daļa (nazkodejais Greivys mīsts) irā Sielejā. Leluokuo Jākubmīsta daļa irā Sielejā, a nazkodejais Krystapiļs mīsts (niu Jākubmīsta daļa) Latgolā. Nu tuo vysa Latgolys teritoreja irā daleita 21 nūvodā i 3 republikys mīstūs. + +== Nūruodis == +* [http://www.vietas.lv/index.php?p=11&id=6 Latgola - Vietas.lv] + +{{DEFAULTSORT:Latgola}} + +[[Kategoreja:Latgola| ]] + 0d17b8y18fcf7ymurvjg1091kklpi3a + + + + Latgolys administrativais dalejums + 0 + 206 + + 31963 + 30720 + 2017-04-27T05:24:04Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + Latgolys rūbeži i administrativuos dalis mejušuos na reizi — cariskuos [[Krīveja|Krīvejis]], pyrmuos [[Latveja|Latvejis Republikys]], sovetu i piecsovetu godūs [[Apleiciņs|apleiciņu]] i rajonu rūbeži bejuši izškireigi, i na vysod [[Latgaļu volūda|latgaļu volūdys]] i kulturys paplateibys vīta labi sakreit ar administrativū dalejumu. + +Nu 2009 goda sīna mieneša 1 dīnys [[Latgola|Latgolā]] (i vysā Latvejā) īsadareja jauns administrativi teritoriskais dalejums. Latgolys kulturviesturiskuo teritoreja daleita 22 nūvodūs i 3 republikys mīstūs. + +== Administrativais dalejums == +[[Fails:Latgolys nuvodi (pasaukom).PNG|right|500px|Latgolys administrativais dalejums]] + +=== Republikys mīsti === +{| class="wikitable" +! Nr. p. k. +! Mīsta pasauka +|- +| 1 +| [[Daugpiļs]] +|- +| 2 +| [[Jākubmīsts]] +|- +| 3 +| [[Rēzne]] +|} + +=== Nūvodi i teritoriskuo dalejuma padalīni === +==== A - C ==== +{| class="wikitable" +! Nr. p. k. +! Nūvods +! Nūvoda teritoriskī padalīni <br /> nūvoda mīsti i pogosti +|- +|align=center rowspan=4| 1 +|rowspan=4| [[Aglyunys nūvods]] +| [[Aglyunys pogosts]] +|- +| [[Gruoveru pogosts]] +|- +| [[Kostulinis pogosts]] +|- +| [[Škeļtiņu pogosts]] +|- +|align=center| 2 +| [[Baļtinovys nūvods]] +| +|- +|align=center rowspan=11| 3 +|rowspan=11| [[Bolvu nūvods]] +| [[Bolvu pogosts]] +|- +| [[Bolvi|Bolvu]] mīsts +|- +| [[Bārzkolna pogosts]] +|- +| [[Bieržu pogosts]] +|- +| [[Brīžucīma pogosts]] +|- +| [[Kryšanu pogosts]] +|- +| [[Kubulu pogosts]] +|- +| [[Lozdulejis pogosts]] +|- +| [[Tiļžys pogosts]] +|- +| [[Vactiļžys pogosts]] +|- +| [[Veiksnys pogosts]] +|- +|align=center rowspan=5| 4 +|rowspan=5| [[Cyblys nūvods]] +| [[Blontu pogosts]] +|- +| [[Cyblys pogosts]] +|- +| [[Leidumnīku pogosts]] +|- +| [[Pušmycovys pogosts]] +|- +| [[Zviergzdiņa pogosts]] +|} + +==== D - K ==== +{| class="wikitable" +! Nr. p. k. +! Nūvods +! Nūvoda teritoriskī padalīni <br /> nūvoda mīsti i pogosti +|- +|align=center rowspan=11| 5 +|rowspan=11| [[Dagdys nūvods]] +| [[Aņdzeļu pogosts]] +|- +| [[Bukmuižys pogosts]] +|- +| [[Dagda|Dagdys]] mīsts +|- +| [[Dagdys pogosts]] +|- +| [[Kepovys pogosts]] +|- +| [[Konstaņtinovys pogosts]] +|- +| [[Ondrupinis pogosts]] +|- +| [[Osyuna pogosts]] +|- +| [[Pareču pogosts|Pareču (Bierzeņu) pogosts]] +|- +| [[Svareņu pogosts]] +|- +| [[Škaunys pogosts]] +|- +|align=center rowspan=11| 6 +|rowspan=11| [[Daugpiļs nūvods]] +| <small>''Daļa nūvoda ([[Daugova|Daugovys]] kairuo <br /> mola) [[Sieleja|Sielejā]]''</small> +|- +| [[Bikernīku pogosts]] +|- +| [[Dubnys pogosts]] +|- +| [[Kolupa pogosts]] +|- +| [[Leiksnys pogosts]] +|- +| [[Malinovkys pogosts]] +|- +| [[Naujinis pogosts]] +|- +| [[Neicgaļa pogosts]] +|- +| [[Ombumuižys pogosts]] +|- +| [[Vabalis pogosts]] +|- +| [[Vyšku pogosts]] +|- +|align=center rowspan=6| 7 +|rowspan=6| [[Krystapiļs nūvods]] +| [[Atašinis pogosts]] +|- +| [[Krystapiļs pogosts]] +|- +| [[Kūku pogosts]] +|- +| [[Mežuoris pogosts]] +|- +| [[Varīšu pogosts]] +|- +| [[Veipa pogosts]] +|- +|align=center rowspan=12| 8 +|rowspan=12| [[Kruoslovys nūvods]] +| <small>''Daļa nūvoda ([[Daugova|Daugovys]] kairuo <br /> mola) [[Sieleja|Sielejā]]''</small> +|- +| [[Aulejis pogosts]] +|- +| [[Indreicys pogosts]] +|- +| [[Iudreišu pogosts]] +|- +| [[Izvolta pogosts]] +|- +| [[Kaļnīšu pogosts]] +|- +| [[Kruoslovys pogosts]] +|- +| [[Kruoslova|Kruoslovys]] mīsts +|- +| [[Kumbuļa pogosts]] +|- +| [[Pīdrujis pogosts]] +|- +| [[Pūstinis pogosts]] +|- +| [[Skaista pogosts]] +|- +|align=center rowspan=6| 9 +|rowspan=6| [[Kuorsovys nūvods]] +| [[Golyšovys pogosts]] +|- +| [[Kuorsova|Kuorsovys]] mīsts +|- +| [[Malnovys pogosts]] +|- +| [[Mežavydu pogosts]] +|- +| [[Mērdzinis pogosts]] +|- +| [[Saļņovys pogosts]] +|- +|} + +==== L - P ==== +{| class="wikitable" +! Nr. p. k. +! Nūvods +! Nūvoda teritoriskī padalīni <br /> nūvoda mīsti i pogosti +|- +|align=center rowspan=6| 10 +|rowspan=6| [[Leivuona nūvods]] +| [[Jersikys pogosts]] +|- +| [[Leivuons|Leivuona]] mīsts +|- +| [[Rudzātu pogosts]] +|- +| [[Rūžupis pogosts]] +|- +| [[Sutru pogosts]] +|- +| [[Turku pogosts]] +|- +|align=center rowspan=10| 11 +|rowspan=10| [[Ludzys nūvods]] +| [[Brigu pogosts]] +|- +| [[Cyrmys pogosts]] +|- +| [[Istrys pogosts]] +|- +| [[Ludza|Ludzys]] mīsts +|- +| [[Nierzys pogosts]] +|- +| [[Ņukšu pogosts]] +|- +| [[Pyldys pogosts]] +|- +| [[Purynu pogosts]] +|- +| [[Rundānu pogosts]] +|- +| [[Vysnovys pogosts]] +|- +|align=center rowspan=3| 12 +|rowspan=3| [[Modyunis nūvods]] +| <small>''Tān vyss nūvods formali [[Vydzeme]], a daļa <br /> nu nūvoda viesturiski sasīta ar [[Latgola|Latgolu]].''</small> +|- +| [[Borkovys pogosts]] +|- +| [[Lubuona pogosts|Lubuona (Uošupis) pogosts]] +|- +|align=center rowspan=2| 13 +|rowspan=2| [[Olyuksnys nūvods]] +| <small>''Tān vyss nūvods formali [[Vydzeme]], a daļa <br /> nu nūvoda viesturiski sasīta ar [[Latgola|Latgolu]].''</small> +|- +| [[Līpnys pogosts]] +|- +|align=center rowspan=5| 14 +|rowspan=5| [[Preiļu nūvods]] +| [[Juosmuižys pogosts]] +|- +| [[Pelieča pogosts]] +|- +| [[Preili|Preiļu]] mīsts +|- +| [[Preiļu pogosts]] +|- +| [[Suovānu pogosts]] +|} + +==== R - S ==== +{| class="wikitable" +! Nr. p. k. +! Nūvods +! Nūvoda teritoriskī padalīni <br /> nūvoda mīsti i pogosti +|- +|align=center rowspan=25| 15 +|rowspan=25| [[Rēznis nūvods]] +| [[Audreņu pogosts]] +|- +| [[Bieržgaļa pogosts]] +|- +| [[Bykovys pogosts|Bykovys (Gaigolovys) pogosts]] +|- +| [[Drycānu pogosts]] +|- +| [[Greiškānu pogosts]] +|- +| [[Iļžukolna pogosts]] +|- +| [[Kaņtinīku pogosts]] +|- +| [[Kaunotys pogosts]] +|- +| [[Leņdžu pogosts]] +|- +| [[Dlužņovys pogosts|Dlužņovys (Lyuznovys) pogosts]] +|- +| [[Malnuo Dyužgola pogosts|Malnuo Dyužgola (Čornajis) pogosts]] +|- +| [[Maltys pogosts]] +|- +| [[Muokuļkolna pogosts]] +|- +| [[Nagļu pogosts]] +|- +| [[Nautrānu pogosts]] +|- +| [[Puša pogosts]] +|- +| [[Rykovys pogosts]] +|- +| [[Sakstygola pogosts]] +|- +| [[Sylmolys pogosts]] +|- +| [[Stolerovys pogosts]] +|- +| [[Strūžānu pogosts]] +|- +| [[Ūzulainis pogosts]] +|- +| [[Ūzulmuižys pogosts]] +|- +| [[Veremu pogosts]] +|- +| [[Vīmyna pogosts]] +|- +|align=center rowspan=6| 16 +|rowspan=6| [[Ribinišku nūvods]] +| [[Ribinišku pogosts]] +|- +| [[Rušyuna pogosts]] +|- +| [[Solujuoņu pogosts]] +|- +| [[Seiļukolna pogosts]] +|- +| [[Stabuļnīku pogosts]] +|- +| [[Vydsmuižys pogosts]] +|- +|align=center rowspan=2| 17 +|rowspan=2| [[Ruguoju nūvods]] +| [[Lozdukolna pogosts]] +|- +| [[Ruguoju pogosts]] +|- +|align=center rowspan=4| 18 +|rowspan=4| [[Sīnuojis nūvods]] +| [[Ļauderu pogosts]] +|- +| [[Posyunis pogosts]] +|- +| [[Sīnuoja|Sīnuojis]] mīsts +|- +| [[Zalesis pogosts]] +|} + +==== V ==== +{| class="wikitable" +! Nr. p. k. +! Nūvods +! Nūvoda teritoriskī padalīni <br /> nūvoda mīsti i pogosti +|- +|align=center rowspan=3| 19 +|rowspan=3| [[Varakļuonu nūvods]] +| [[Mūrmastinis pogosts]] +|- +| [[Varakļuonu pogosts]] +|- +| [[Varakļuoni|Varakļuonu]] mīsts +|- +|align=center rowspan=3| 20 +|rowspan=3| [[Vuorkovys nūvods]] +| [[Rimeicānu pogosts]] +|- +| [[Upmalis pogosts]] +|- +| [[Vuorkovys pogosts]] +|- +|align=center rowspan=7| 21 +|rowspan=7| [[Vileks nūvods]] +| [[Kuprovys pogosts]] +|- +| [[Medņovys pogosts]] +|- +| [[Susāju pogosts]] +|- +| [[Škilbānu pogosts]] +|- +| [[Vacumu pogosts]] +|- +| [[Vileks]] mīsts +|- +| [[Žeiguru pogosts]] +|- +|align=center rowspan=4| 22 +|rowspan=4| [[Viļānu nūvods]] +| [[Dekšuoru pogosts]] +|- +| [[Sokolku pogosts]] +|- +| [[Viļānu pogosts]] +|- +| [[Viļāni|Viļānu]] mīsts +|} + +== Verīs taipoš == +* [[Latgola]] +* [[Latvejis administrativais teritoriskais dalejums]] + +[[Kategoreja:Latgolys geografeja]] + tjdzyoobg1p7ac24kun63smr9tz1o45 + + + + Latgolys augstaine + 0 + 207 + + 28223 + 26703 + 2013-03-07T18:11:04Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2564367]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Latgolys augstaine''' — reļjefa pasacālums Latgolys dīnavydreitu daļā, vysuaugstuokuo Latgolys daļa augšuok jiuru leidzīņa, īīt Daugpiļs, Kruoslovys, Dagdys, Aglyunys, Preiļu, Ribinišku, Rēznis i Ludzys nūvodu teritorejuos. Latgolys augstainē izasliejušys pošys augstuos regiona viersyunis: [[Lelais Līpkolns]] (289,3 m augšuok jiuru leidzīņa), [[Dzierkaļu kolns]] (286,3 m a. j. leidz.), Dubuļu kolns - (273,8 m a. j. leidz.), taipoš cik nacik zamuokais, tok deļ skaistūs vierīņu izslyvušais [[Muokuļkolns]]. + +Latgolys augstainē izapliets ūtrys pa lelumam Latgolys azars – [[Rāzna]] (viersa pluots 5756,4 ha). + +[[Kategoreja:Latgolys geografeja]] +[[Kategoreja:Latgolys doba]] + 1tkev2yagevptstyu8yvsmal4ucnuqo + + + + Latgolys azaru saroksts + 0 + 208 + + 22225 + 21599 + 2012-04-02T11:49:32Z + + Roalds + 50 + + + Latgaļu volūdys lykumi + wikitext + text/x-wiki + Itymā sarokstā puorskaiteiti leluokī Latgolys azari. + +{| class="wikitable sortable" +|----- bgcolor=#DDDDDD +! Azara pasauka +! Nūvods +! Pluots, km<sup>2</sup> +! Garums, km +|----- +| '''[[Aulejs]]''' +| [[Kruoslovys nūvods]] +| +| +|----- +| '''[[Baļuotis azars]]''' +| [[Krystapiļs nūvods]] +| +| +|----- +| '''[[Bižys azars]]''' +| [[Ludzys nūvods]] +| +| +|----- +| '''[[Bolvu azars]]''' +| [[Bolvu nūvods]] +| 1,68 +| +|----- +| '''[[Cārmyns]]''' +| [[Kruoslovys nūvods]] +| +| +|----- +| '''[[Cyrms]]''' +| [[Ludzys nūvods]] +| 12,61 +| 4,4 +|----- +| '''[[Cireits]]''' +| [[Aglyunys nūvods]] +| 6,306 +| +|----- +| '''[[Cyskuodu azars]]''' +| [[Rēznis nūvods]] +| 1,79 +| 2,2 +|----- +| '''[[Dagdys azars]]''' +| [[Dagdys nūvods]] +| 4,841 +| +|----- +| '''[[Dreidzs]]''' +| [[Kruoslovys nūvods]] +| 7,532 +| 9,8 +|----- +| '''[[Indrys]]''' +| [[Kruoslovys nūvods]] +| +| +|----- +| '''[[Istrys azars]]''' +| [[Ludzys nūvods]] +| +| +|----- +| '''[[Iļdzs]]''' +| [[Aglyunys nūvods]] +| 3,28 +| +|----- +| '''[[Jazinks]]''' +| [[Aglyunys nūvods]] +| +| +|----- +| '''[[Ješs]]''' +| [[Dagdys nūvods]] +| 9,879 +| 8,2 +|----- +| '''[[Lelais Kolupa azars]]''' +| [[Daugpiļs nūvods|Daugpiļs]] i [[Vuorkovys nūvods]] +| +| +|----- +| '''[[Lelais Kūrma azars]]''' +| [[Ludzys nūvods]] +| 8,38 +| +|----- +| '''[[Lelais Ludzys azars]]''' +| [[Cyblys nūvods]] +| 8,464 +| 7,0 +|----- +| '''[[Lelais Strops]]''' +| [[Daugpiļs]] +| 4,18 +| 3,35 +|----- +| '''[[Lubuons]]''' +| [[Modyunis nūvods|Modyunis]] i [[Rēznis nūvods]] +| 80,7 +| 15,6 +|----- +| '''[[Luknys azars]]''' +| [[Daugpiļs nūvods]] +| 4,09<ref>[http://www.ezeri.lv/database/2083/ Luknys azars] Latvejis azaru datubazē</ref> +| +|----- +| '''[[Mariņdzis azars]]''' +| [[Krystapiļs nūvods]] +| +| +|----- +| '''[[Nierzys azars]]''' +| [[Ludzys nūvods]] +| 5,516 +| +|----- +| '''[[Nūmiernis azars]]''' +| [[Kuorsovys nūvods]] +| +| +|----- +| '''[[Odumovys azars]]''' +| [[Rēznis nūvods]] +| 1,865 +| 2,5 +|----- +| '''[[Pārkuņu azars]]''' +| [[Bolvu nūvods]] +| 2,28 +| 4,6 +|----- +| '''[[Pyldys azars]]''' +| [[Ludzys nūvods]] +| 2,95 +| +|----- +| '''[[Plysūns]]''' +| [[Ludzys nūvods]] +| 4,8 +| +|----- +| '''[[Pušs]]''' +| [[Rēznis nūvods]] +| 2,41 +| +|----- +| '''[[Rāzna]]''' +| [[Rēznis nūvods]] +| 57,56 +| 12,1 +|----- +| '''[[Rušyuns]]''' +| [[Aglyunys nūvods|Aglyunys]], [[Rēznis nūvods|Rēznis]] i [[Ribinišku nūvods]] +| 23,73 +| 13 +|----- +| '''[[Salmejs]]''' +| [[Ribinišku nūvods]] +| +| +|----- +| '''[[Sivers]]''' +| [[Kruoslovys nūvods]] +| 17,59 +| 8,1 +|----- +| '''[[Škaunys azars]]''' +| [[Ludzys nūvods]] +| +| +|----- +| '''[[Veirūgnis azars]]''' +| [[Daugpiļs nūvods|Daugpiļs]] i [[Preiļu nūvods]] +| +| +|----- +| '''[[Vileks azars]]''' +| [[Vileks nūvods]] +| +| +|----- +| '''[[Vīmyns]]''' +| [[Rēznis nūvods|Rēznis]] i [[Ribinišku nūvods]] +| 6,257 +| 5 +|----- +| '''[[Vyšku azars|Vyšku azars]]''' +| [[Daugpiļs nūvods]] +| 3,601 +| 2,6 +|} + +== Nūruodis == +{{Reflist}} + +[[Kategoreja:Saroksti]] [[Kategoreja:Latgolys azari]] + 4ih6tblsqwarbka692t199kfc1jauz8 + + + + Latgolys ceļamolu krysti + 0 + 209 + + 12823 + 11529 + 2011-04-05T07:18:54Z + + Roalds + 50 + + /* L */ pareizraksteibys klaideņa + wikitext + text/x-wiki + == Latgolys ceļamolu krysti pa mīsta voi solys pasaukai == +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== B == +* Bliseņu krysts, Bliseņūs, Nautrānu pogostā, Rēznis nūvodā + +== G == +* [[Graiži|Graižūs]], Ombumuižys pogostā, Daugpiļs nūvodā + +== L == +* Lelū Strodu krysts, Lelajūs Strodūs, Mūrmastinis pogostā, Varakļuonu nūvodā +* Lītaunīku krysts, Lītaunīkūs, Preiļu pogostā, Preiļu nūvodā + +== V == +* Vacmūrānu krysta pašale, Vacmurānūs, Sokolku pogostā, Viļānu nūvodā + +[[Kategoreja:Religeja Latgolā]] +[[Kategoreja:Saroksti]] + c66ab3ugktknyk6ceubj8ybraf429fr + + + + Latgolys demokratiskuo parteja + 0 + 210 + + 28224 + 11530 + 2013-03-07T18:11:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4254922]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Latgolys demokratiskuo parteja''' (latvīšu: ''Latgales demokrātiskā partija'') — vīna nu pošu īteceiguokūs Latgolys parteju piec [[Latveja|Latvejis]] napavaļdeibys atjaunynuošonys (1988). Partejai beja svareiga role latgaliskuos kulturys atdzimšonā i populariziešonā. + +Registrāta 1994 g. marta 28 d., partejis pirminīks beja [[Vaļds Lauskys]]. + +Latvejis 6 Seimys ībolsuošonā 1995 godā pīsadaleja kūpeigā sarokstā ar Latvejis zemnīku savīneibu i Latvejis kristeigūs demokratu savīneibu. Latgolys demokratiskuos partejis saroksts itamā ībolsuošonā beja izcalts Latgolys teritorejā. Kūpeigais saroksts dabuoja 6,3 % bolsu i 8 vītu Seimā. + +1999 g. maja 29 d. sasaškeiruse ar Latvejis socialdemokratiskū parteju (tymā pošā Sasaškieršonys kongresā pi LSDSP dasalaide LSDP). Par kūpāsaškiertuos LSDSP pirminīku ībolsuots Juris Bojārs, par juo bīdrim Egīls Baldzēns i Vaļds Lauskys. Saškiertuos partejis bīdru skaits beja vaira kai 3000, i juos popularuma reitings vierseja 20%, aplīcūt vysys cytys tūlaicejuos partejis Latvejā. + +Latgolys demokratiskuo parteja davuse daudzi atspaida latgaliskuos kulturys raisteibai - atspaiduojuse gruomotu izlaisšonu latgaļu volūdā, latgaliskuos kulturys sariedīņus Daugpilī i cytur Latgolā. + +{{DEFAULTSORT:Latgolys demokratiskuo parteja}} + +[[Kategoreja:Latgolys partejis]] +[[Kategoreja:Latgolys politika]] + oi7bxlssbvj1wtt0c088mwbep767sxr + + + + Latgolys doba + 0 + 211 + + 21598 + 11531 + 2012-03-12T07:14:17Z + + Roalds + 50 + + Modyune + wikitext + text/x-wiki + == Geografeja == +:''Golvonais rakstīņs: [[Latgolys geografeja]].'' +Geografiskai Latgola izalikaliejuse iz [[Latgolys augstaine|Latgolys]] i [[Sielejis augstaine|Sielejis]] augstaiņu i [[Reitulatvejis zamaine|Reitulatvejis]], [[Mudovys zamaine|Mudovys]], [[Polacka zamaine|Polacka]] zamaiņu. Karaktereigais Latgolys [[zemisvierīņs]] ar [[Kaupris|kauprim]] i [[Līkne|līknem]] pasadarejs kai [[Laduojs|laduoja]] veicis rezultats geologiskajūs [[Ladslaiki|ladslaikūs]]. + +Latgolys pareizi sauc Zylūs azaru zemis, Azarzemis - regiona līknēs atrassim net kaidu tyukstūšu [[Azars|azaru]]. Regionā taipoš namoz upu, tok juos vysumā napalelys. [[Reitulatvejis zamaine|Reitulatvejis zamainē]] izaplātuši leli [[Pūrs|pūri]] i peisi. [[Teiču pūrs]] aizjim lelu daļu [[Krystapiļs nūvods|Krystapiļs]] i [[Varakļuonu nūvods|Varakļuonu nūvoda]], taipoš nalelu daļu [[Modyunis nūvods|Modyunis nūvoda]]. + +== Klimats == +Klimats Latgolā koņtinentaluoks kai cytā Latvejis teritorejis daļā. Zīmys vys byun drupeit soltuokys i snīga pīkreit dreižuok i juo pasadora bīzuoka kuorta kai palykušajā Latvejis daļā, a vosorys syltuokys. Dagdā i [[Daugpiļs|Daugpilī]] registrāta vysuzamuo temperatura (–43 gradi C), i Daugpilī – absoluotuo vysuaugstuo (+36 gradi C). + +== Dzeivinīku pasauļs == +Deļ plotuo iudiņbaseina Latgolā lela iudiņa putnu, iudiņa kustūnis i molusku vysaideiba, a deļ pūru i peisu – lela pūstumu dzeivinīku i [[Auguoji|auguoju]] škiru vysaideiba. Lelajūs meža masivūs Latgolā apteikamys daudzejis taigys [[Dzeivinīki|dzeivinīku]] škirys, kuru pīstuovi īceļoj nu [[Krīveija|Krīvejis]] ([[luocs|luoči]], [[taigys kustūne]] i ct.). A [[Daugovys vacupe|Daugovys vacupē]], Pīdrujis sausajuos pļovuos i cytuos smiļkšuotuos i atdareituos vītuos sateikamys daudzejis stepu i cytu dīnavydu dzeivinīku i auguoju škirys ([[tauryni]], [[vabalis]], [[voguli]], [[sieņs]] i ct.). Latgolā pīskaiteits vaira kai 1850 vabaļu i vogulu [[Škira|škiru]]. + +== Sorgojamī dobys objekti == +Latgolā irā nazcik vaļsteibys sorgojamu dobys objektu – [[Rāznys nacionalais parks]], [[Teiču rezervats]], sorgojamuos teritorejis apleik [[Dreidža azars|Dreidža]], [[Istrys azars|Istrys]], [[Pildys azars|Pildys]] i [[Odumovys azars|Odumovys azaru]], taipoš 3 sorgojama [[Zemisvierīņs|zemisvierīņa]] apvydi – [[Sieleja|Sielejis]], Viersdaugovys i [[Daugova|Daugovys]] lūku. Jī izslyvuši caur sovpateigajim, daudzatmejeigajim vierīnim i sevišku [[Doba|dobys]] skaistumu. + +== Verīs taipoš == +* [[Latgolys geografeja]] +* [[Latgolys dobys pīminiekli]] + +{{DEFAULTSORT:Latgolys doba}} + +[[Kategoreja:Doba]] +[[Kategoreja:Latgolys doba]] +[[Kategoreja:Latgolys dobys pīminiekli]] + 1oi4jeylfbvcye0sf525vyfimeb9h16 + + + + Latgolys dobys pīminiekli + 0 + 212 + + 11532 + 10537 + 2011-03-24T21:08:38Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + == Latgolys lelakmini == +* [[Latgolys lelakmini#Latgolys lelakmini pa n.C5.ABvodim i pogostim|Latgolys lelakmini pa rajonim i pogostim]] +* [[Latgolys lelakmini#Latgolys lelakmini pa pasaukai|Latgolys lelakmini pa pasaukai]] + +== Latgolys lelkūki == +* [[Latgolys lelkūki#Latgolys lelkūki pa n.C5.ABvodim i pogostim|Latgolys lelkūki pa rajonim i pogostim]] +* [[Latgolys lelkūki#Latgolys lelkūki pa pasaukai|Latgolys lelkūki pa pasaukai]] + +== Lelolys i leldūbis Latgolā == +* [[Lelolys i leldūbis Latgolā#Lelolys i leldūbis pa n.C5.ABvodim i pogostim|Lelolys i leldūbis pa rajonim i pogostim]] +* [[Lelolys i leldūbis Latgolā#Lelolys i leldūbis pa pasaukai|Lelolys i leldūbis pa pasaukai]] + +[[Kategoreja:Latgolys lelakmini]] +[[Kategoreja:Latgolys lelkūki]] +[[Kategoreja:Latgolys dobys pīminiekli]] +[[Kategoreja:Latgolys doba]] + pzdr6tyemminoqgklx74frizy2b33ky + + + + Latgolys gaisma + 0 + 213 + + 28225 + 19177 + 2013-03-07T18:11:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1761028]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Latgolys gaisma''' (latvīšu: ''Latgales gaisma'') — vīna nu īteceiguokūs Latgolys parteju piec Latvejis napavaļdeibys atjaunynuošonys (1988). Pats lelais dasnāgums - īveice Daugpiļs pošvolda ībolsuošonā. + +Registrāta 2000 g. marta 21 d., partejis aizsuociejs i pirminīks beja Daugpiļs pasajāmuma ''Stalker'' prezidents Rihards Eigims. + +''Latgolys gaisma'' dabuoja viersa 2000 gods Daugpiļs pošvolda ībolsuošonā (7 deputatu vītys), aplīcūt Daugpiļs mīsta partejis i partejis ''Latvijas ceļš'' kūpeigū sarokstu (nu juo pošvoldā ītyka 5 deputati, jūs vydā i pyrmuokais Daugpiļs mers Aleksandrs Vidavskis), PCTVL (2 deputati) i LSDSP (1 deputats). Piec ībolsuošonys ''Latgolys gaisma'' Daugpiļs pošvoldā sataiseja koaliceju ar PCTVL i socialdemokatim, a par mīsta meru tyka ''Latgolys gaismys'' viersinīks Rihards Eigims. + +Parteja pīsadaleja Latvejis 8 Seimys ībolsuošonā 2002 gods oktobra 5 dīnā. Par ''Latgolys gaismu'' Latgolā nūbolsuoja 9,3 % izlaseituoju, tok vysys Latvejis mārā parteja dabuoja viņ 1,5 % bolsu i partū navierseja 5 % slīkšņa, kab ītyktu Seimā. + +2003 godā R. Eigimam daguoja atsastateit nu mīsta mera daguojumu deļ pagaisynuotuos atsadūšonys iz juo - daudzeji juo partejis bīdri pošvoldā beja tykuši par cīši škaļdeigi. Nu 2003 da 2007 g. ''Latgolys gaisma'' beja golvonuo opozicejis parteja Daugpilī. + +Parteja likvidāta 2007 g. februara 8 d. + +[[Kategoreja:Latgolys partejis]] +[[Kategoreja:Latgolys politika]] + fzrlnq8zm5kyjsmeztsu9327z7h2enn + + + + Latgolys geografeja + 0 + 214 + + 21604 + 11534 + 2012-03-12T07:18:44Z + + Roalds + 50 + + Modyune + wikitext + text/x-wiki + Geografiskai Latgola izalikaliejuse iz [[Latgolys augstaine|Latgolys]] i [[Sielejis augstaine|Sielejis]] augstaiņu i [[Reitulatvejis zamaine|Reitulatvejis]], [[Mudovys zamaine|Mudovys]], [[Polacka zamaine|Polacka]] zamaiņu. Karaktereigais Latgolys [[zemisvierīņs]] ar [[Kaupris|kauprim]] i [[Līkne|līknem]] pasadarejs kai [[Laduojs|laduoja]] veicis rezultats geologiskajūs [[Ladslaiki|ladslaikūs]]. Latgolys pošys augstuos viersyunis pa vyscaureigajam (absolutajam) augstumam – [[Lelais līpkolns]] (289 m augšuok jiuru leidzīņa) i [[Dzierkaļu kolns]] (286 m augšuok jiuru leidzīņa) Rēznis nūvoda Kaunatys pogostā. Pa samiereigajam (relativajam) augstumam pyrmū vītu aizjam [[Dzierkaļu kolns]], jis pasaceļ augšuok apleicīnis par 89 metri. + +Latgolys pareizi sauc Zylūs azaru zemis, Azarzemis. Regiona līknēs atrassim net kaidu tyukstūšu azaru, nu jūs vysulelī – [[Lubuons]] (viersa laukums 8070 ha) i [[Rāzna]] (5756 ha). Vysudziļais Latgolys azars (65 m) – [[Dreidzs]]. Nu sovys pusis, Dagdys nūvodā asūšais Ješs tur vysuvaira azarsolu (69). Pa skaitam lelums Latgolys azaru saguluši [[Latgolys augstaine|Latgolys augstainē]]. + +Regionā taipoš namoz upu, tok juos vysumā napalelys. Poša leluo, poša skaistuo i kulturviesturiskai vysusvareiguo upe – [[Daugova]], ītakūša Latgolā nu Boltkrīvejis teritorejis. Gobola iz vyds Kruoslovys i [[Daugpiļs]], kurymā upe taisa pīcus leikumus i tak pa apmāram 40 m dziļu upleju, kod nakod sauc Latgolys Šveicarejis. Svareiguokys Daugovys datakys – Aivīkste, [[Rēzne (upe)|Rēzne]], Dubna, Malta. + +[[Reitulatvejis zamaine|Reitulatvejis zamainē]] izaplātuši leli pūri i peisi. Teiču pūrs aizjam lelu daļu Varakļuonu i Krystapiļs nūvodu. + +Meži sadz apmāram trešu daļu Latgolys teritorejis. Pūstumlatgolā stīpās egļu skuti, a car Daugovu – prīžu syli. Dīnavydlatgolys leluos dalis [[Zemisvierīņs|zemisvierīņam]] soveigys bārzu bierzs. + +Latgolā plotys kudrys atrastovys: Krīvu–Jersikys pūrs Leivuona nūvodā, Kreiču i Kreņovas pūri Cyblys i Kuorsovys nūvodā, Strūžānu pūrs Rēznis nūvodā, taipoš muola atrastovys: Vileks nūvoda Kuprovā, Leivuonā, Daugpiļs nūvoda Neicgalī. Celim stateit Latgolā lītoj dolomitu, kura pošleluos atrastovys pi Jākubmīsta. Daugovys uplejā i juos apleicīnē irā lelys smiļkšu atrastovys. Leivuona boltū kvarca smiļkti lītoj vītejuo stykla dareitova. + +Klimats Latgolā koņtinentaluoks kai cytā Latvejis teritorejis daļā. Zīmys vys byun drupeit soltuokys i snīga pīkreit dreižuok i juo pasadora bīzuoka kuorta kai palykušajā Latvejis daļā, a vosorys syltuokys. Dagdā i [[Daugpiļs|Daugpilī]] registrāta vysuzamuo temperatura (–43 gradi C), i Daugpilī – absoluotuo vysuaugstuo (+36 gradi C). + +Deļ plotuo iudiņbaseina Latgolā lela iudiņa putnu, iudiņa kustūnis i molusku vysaideiba, a deļ pūru i peisu – lela pūstumu dzeivinīku i auguoju škiru vysaideiba. Lelajūs meža masivūs Latgolā apteikamys daudzejis taigys dzeivinīku škirys, kuru pīstuovi īceļoj nu Krīvejis (luoči, taigys kustūne i ct.). A Daugovys vacupē, Pīdrujis sausajuos pļovuos i cytuos smiļkšuotuos i atdareituos vītuos sateikamys daudzejis stepu i cytu dīnavydu dzeivinīku i auguoju škirys (tauryni, vabalis, voguli, sieņs i ct.). Latgolā pīskaiteits vaira kai 1850 vabaļu i vogulu škiru. + +Latgolā irā nazcik vaļsteibys sorgojamu dobys objektu – Teiču rezervats, sorgojamuos teritorejis apleik Dreidža, Istrys, Pildys i Odumovys azaru, taipoš 3 sorgojama [[Zemisvierīņs|zemisvierīņa]] apvydi – Sielejis, Viersdaugovys i Daugovys lūku. Jī izslyvuši caur sovpateigajim, daudzatmejeigajim vierīnim i sevišku dobys skaistumu. Bez tuo Latgolā irā daudzi cylvāka īriedeitu parku, a Daugpiļs nūvoda Neicgaļa pogostā atsaguļs miļža akmiņs (apleikmārs – 30,5 m, augstums 3,5 m). + +;Pošys augstuos Latgolys viersyunis: ''Pasauka (Byušonys vītys nūvods i pogosts) – vyscaureigais augstums (augšuok jiuru leidzīņa) – samiereigais augstums (augšuok apleicīnis)'' +* [[Lelais līpkolns]] (Rēznis nūv. Kaunatys pog.) – 289,3 m a. j. leidz. – 86 m +* [[Dzierkaļu kolns]] (Rēznis nūv. Kaunatys pog.) – 286,3 m a. j. leidz. – 89,2 m +* Dubuļu kolns (Rēznis nūv. Kaunatys pog.) – 273,8 m a. j. leidz. – 61,8 m +* Karaļu kolns (Rēznis nūv. Kaunatys pog.) - 272,2 m a. j. leidz. – 55,6 m +* Kromaņu kolns (Rēznis nūv. Kaunatys pog.) - 271,1 m a. j. leidz. – 53,8 m +* Dekšņa kolns (Rēznis nūv. Kaunatys pog.) - 266,5 m a. j. leidz. – 34,9 m +* Greizais kolns (Dagdys nūv. Aņdzeļu pog.) - 263,7 m a. j. leidz. – 60 m + +;Poši lelī Latgolys azari: ''Pasauka (Byušonys vītys nūvods) – viersa pluots'' +* [[Lubuons]] (Rēznis i Modyunis nūv.) – 8070 ha +* [[Rāzna]] (Rēznis nūv.) – 5756 ha +* Rušyuns (Ribinišķu nūv.) – 2373 ha +* Sivers (Kruoslovys nūv.) – 1759 ha +* Cierms (Ludzys nūv.) – 1261 ha +* Ješs (Dagdys nūv.) – 988 ha +* Lelais Ludzys azars (Cyblys nūv.) – 846 ha + +;Poši dzilī Latgolys azari: ''Pasauka (Byušonys vītys nūvods) – vysulelais dziļums'' +* [[Dreidzs]] (Kruoslovys nūv.) – 65 m +* Garais (Kruoslovys nūv.) – 56 m +* Iļdzs (Aglyunys nūv.) – 46 m +* Ormejs (Kruoslovys nūv.) – 43 m +* Ojuots (Dagdys nūv.) – 41 m +* Ričs (Daugpiļs nūv.) – 40 m +* Sventa (Daugpiļs nūv.) – 38 m + +{{DEFAULTSORT:Latgolys geografeja}} + +[[Kategoreja:Latgolys geografeja| ]] + cgtimqld1kfxu2kzet6jpktb3curk4u + + + + Latgolys gerbs + 0 + 215 + + 13842 + 13566 + 2011-04-28T17:07:56Z + + Dark Eagle + 34 + + wikitext + text/x-wiki + [[Fails:Coat of Arms of Latgale.svg|150px|thumb|1921 godā Reigā apstyprynuotais Latgolys gerbs]] +[[Fails:POL Inflanty IRP COA.svg|150px|thumb|Viesturiskais Latgolys (Inflantejis) gerbs]] +'''Latgolys gerbs''' + +== Verīs taipoš == +* [[Latgalīšu karūgs]] +* [[Latgalīšu himna]] + +[[Kategoreja:Latgolys simboli|Gerbs]] + klr5isu28i8jrqcc3b3c5l25ux0j7ld + + + + Latgolys katuoļu bazneicys i kapleicys + 0 + 216 + + 21459 + 20835 + 2012-03-05T10:01:59Z + + Roalds + 50 + + + Kuprovys + wikitext + text/x-wiki + == Latgolys katuoļu bazneicys pa pasaukai == +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== A == +* [[Aglyunys bazilika|Aglyunys Vysusvātuokuos Jaunovys Marejis dabasūs uzjimšonys bazilika]] +* [[Aizpūris katuoļu bazneica|Aizpūris Vysusvātuokuos Jaunovys Marejis – ticeiguo paleiga bazneica]] +* [[Aņdzeļmuižys katuoļu bazneica|Aņdzeļmuižys Svātuo Juoņa Krysteituoja bazneica]] +* [[Atašinis katuoļu bazneica|Atašinis Suopu Dīvamuotis bazneica]] +* [[Augškaļnis svātuos Saimis katuoļu bazneica|Augškaļnis Svātuos Saimis katuoļu bazneica]] +* [[Augustovys katuoļu bazneica|Augustovys Svātuos Elizabetis bazneica]] +* [[Aulejis katuoļu bazneica|Aulejis Svātuos Marejis Magdalenys bazneica]] + +== Ā == +* [[Ārdovys katuoļu bazneica|Ārdovys Krystus Kieneņa bazneica]] + +== B == +*[[Borkovys katuoļu bazneica|Borkovys Svātuo Stanislava Romys katuoļu bazneica]] + +== D == +* [[Daugpiļs Jezus Sirds Romys katuoļu bazneica]] +* [[Daugpiļs Svātuo Pītera važuos Romys katuoļu bazneica]] +* [[Daugpiļs Vysusvātuokuos Jaunovys Marejis bezvaineiguos ījimšonys Romys katuoļu bazneica]] + +== K == +* [[Krystapiļs katuoļu bazneica|Krystapiļs Svātuos Trejadeibys Romys katuoļu bazneica]] +* [[Kryšanu katuoļu bazneica|Kryšanu Svātuo Juoņa Krysteituoja bazneica]] +* [[Kumbuļa katuoļu bazneica|Kumbuļa Svātuo Jezupa Romys katuoļu bazneica]] +* [[Kuprovys katuoļu bazneica|Kuprovys Svātuo Ignaceja nu Lojolys Romys katuoļu bazneica]] + +== L == +* [[Leiksnys Vysusvātuokuos Jezus Sirds Romys katuoļu bazneica]] + +== O == +* [[Ombumuižys katuoļu bazneica|Ombumuižys Svātuo Jura bazneica]] +* [[Ondrupinis katuoļu bazneica|Ondrupinis Vysusvātuokuos Jaunovys Marejis - Skapulara Kienenīnes bazneica]] +* [[Osyuna katuoļu bazneica|Osyuna Svātuo Krysta gūdynuošonys bazneica]] + +== R == +* [[Rundānu katuoļu bazneica|Rundānu Svātuo Krysta paaugstynuošonys Romys katuoļu bazneica]] + +== V == +* [[Viļānu katuoļu bazneica]] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latgolys katuoļu bazneicys| ]] +[[Kategoreja:Saroksti]] + m34rslcttuipb4gi4dz0bl65y0awu8s + + + + Latgolys lelakmini + 0 + 217 + + 26082 + 11538 + 2012-12-02T12:59:32Z + + 89.235.204.199 + + wikitext + text/x-wiki + == Latgolys lelakmini pa nūvodim i pogostim == +=== Daugpiļs nūvodā === +'''''Neicgaļa pogostā'''''<br /> +[[Neicgaļa Lelais akmiņs]] + +=== Cyblys nūvodā === +'''''Cyblys pogostā'''''<br /> +[[Seimaņu akmiņs]] + +=== Ludzys nūvodā === +'''''Istrys pogostā'''''<br /> +[[Plysūna lelakmiņs]] + +== Latgolys lelakmini pa pasaukai == +=== N === +* [[Neicgaļa Lelais akmiņs]] (Neicgaļa pog., Daugpiļs nūv.) + +=== P === +* [[Plysūna lelakmiņs]] (Istrys pog., Ludzys nūv.) + +=== S === +* [[Seimaņu akmiņs]] (Cyblys pog., Cyblys nūv.)<br /> + +[[Kategoreja:Latgolys lelakmini]] + dyt59uf9lcp9qgu3awyvjzxmgtvv69y + + + + Latgolys lelkūki + 0 + 218 + + 11539 + 10543 + 2011-03-24T21:09:38Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + == Latgolys lelkūki pa nūvodim i pogostim == +=== Kruoslovys nūvodā === +'''''Kumbuļa pogostā'''''<br /> +[[Kumbuļa kļovs]] + +=== Rēznis nūvodā === +'''''Greiškānu pogostā'''''<br /> +[[Janopolis svātveiksna]] + +== Latgolys lelkūki pa pasaukai == +=== J === +* [[Janopolis svātveiksna]] + +=== K === +* [[Kumbuļa kļovs]] + +[[Kategoreja:Latgolys lelkūki]] +[[Kategoreja:Latgolys doba]] + 9ns9t4esye2747jig3oh5ncnn6rayjg + + + + Latgolys mīsti + 0 + 219 + + 29887 + 19112 + 2013-05-30T23:53:46Z + + Patrick87 + 1935 + + + [[File:Coat of arms of Daugavpils.png]] → [[File:Coat of arms of Daugavpils.svg]] Replace with SVG version + wikitext + text/x-wiki + [[Fails:Daugavpilts Lutherian and Catholic churches LV.jpg|thumb|right|160px|[[Daugpiļs]]]] +[[Fails:Latgales Mara.JPG|thumb|right|160px|[[Rēzne]]]] +[[Fails:Baznicas.jpg|thumb|right|160px|[[Ludza]]]] +[[Fails:Stadtschloss Varakļāni (Lettland).jpg|thumb|right|160px|[[Varakļuoni]]]] + +{| border="2" cellpadding="4" cellspacing="0" class="bonita" style="margin: 0.5em 0.5em 0.5em 1em; padding: 0.5em; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;" +|- +|colspan="8" align="center" bgcolor="#DDDDDD" | '''Latvejis mīsti''' +|- +|rowspan="2" align="center" bgcolor="#EEEEEE" | '''Vīta''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Gerbs''' || colspan="2" align="center" bgcolor="#EEEEEE" | '''Pasauka''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Mīsta tīseibys''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Dzeivuotuoju sk. <br /> (2009 g. apskaite)''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Pluots, km²''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Nūvods''' +|- +|align="center" bgcolor="#EEEEEE" | '''latgaliskai''' || align="center" bgcolor="#EEEEEE" | '''latvyskai''' +|- +| 1. +| [[Fails:Coat of arms of Daugavpils.svg|30 px|center]] +| [[Daugpiļs]] +| ''Daugavpils'' +| 1582 g. +| 105 520 +| 72,48 +| - +|- +| 2. +| [[Fails:Coat_of_Arms_of_Rēzekne.svg|30 px|center]] +| [[Rēzne]] +| ''Rēzekne'' +| 1773 g. +| 35 680 +| 17,48 +| - +|- +| 3. +| [[Fails:Escut Jekabpils.png|30 px|center]] +| [[Jākubmīsts]] +| ''Jēkabpils'' +| 1670 g. +| 26 713 +| 23 +| - +|- +| 4. +| [[Fails:Kraslava gerb.png|30 px|center]] +| [[Kruoslova]] +| ''Krāslava'' +| 1923 g. +| 10 400 +| 8,63 +| [[Kruoslovys nūvods|Kruoslovys]] +|- +| 5. +| [[Fails:WappenLudza.png|30 px|center]] +| [[Ludza]] +| ''Ludza'' +| 1777 g. +| 9 614 +| 10 +| [[Ludzys nūvods|Ludzys]] +|- +| 6. +| [[Fails:Livani gerb.png|30 px|center]] +| [[Leivuons]] +| ''Līvāni'' +| 1926 g. +| 9 095 +| 5 +| [[Leivuona nūvods|Leivuona]] +|- +| 7. +| [[Fails:WappenPreili.png|30 px|center]] +| [[Preili]] +| '' Preiļi +| 1928 g. +| 8 106 +| 5,1 +| [[Preiļu nūvods|Preiļu]] +|- +| 8. +| [[Fails:Escut Balvi.png|30 px|center]] +| [[Bolvi]] +| '' Balvi || 1928 g. +| 7 952 +| 5,1 +| [[Bolvu nūvods|Bolvu]] +|- +| 9. +| [[Fails:Vilani gerb.png|30 px|center]] +| [[Viļāni]] +| '' Viļāni +| 1928 g. +| 3 595 +| 5 +| [[Viļānu nūvods|Viļānu]] +|- +| 10. +| [[Fails:Dagda gerb.png|30 px|center]] +| [[Dagda]] +| '' Dagda +| 1992 g. +| 2 504 +| 3 +| [[Dagdys nūvods|Dagdys]] +|- +| 11. +| [[Fails:Karsava gerb.png|30 px|center]] +| [[Kuorsova]] +| '' Kārsava +| 1928 g. +| 2 342 +| 3,9 +| [[Kuorsovys nūvods|Kuorsovys]] +|- +| 12. +| [[Fails:Varaklani gerb.png|30 px|center]] +| [[Varakļuoni]] +| '' Varakļāni +| 1928 g. +| 2 142 +| 5 +| [[Varakļuonu nūvods|Varakļuonu]] +|- +| 13. +| [[Fails:Escut Zilupe.PNG|30 px|center]] +| [[Sīnuoja]] +| '' Zilupe +| 1931 g. +| 1 794 +| 5 +| [[Sīnuojis nūvods|Sīnuojis]] +|- +| 14. +| [[Fails:Vilaka gerb.png|30 px|center]] +| [[Vileks]] +| '' Viļaka +| 1945 g. +| 1 572 +| 6,3 +| [[Vileks nūvods|Vileks]] +|} + +[[Kategoreja:Mīsti Latgolā]] +[[Kategoreja:Saroksti]] + 4zz2puw0s5djni7yrn1n1tok95qwxzu + + + + Latgolys politika + 0 + 220 + + 11541 + 10545 + 2011-03-24T21:09:58Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + ===Partejis=== +* [[Latgolys demokratiskuo parteja]] +* [[Latgolys gaisma]] + +=== Pošvoldu organizacejis === +* [[Latgolys regiona raisteibys agentura]] + +=== Latgolys politiki === +* [[Latgolys politiki|Latgolys politiku saroksts pa pavuordem pa alfabetam]] + +[[Kategoreja:Latgolys politika| ]] + ogj13vyy4b059dabh1n4uzwbe1hefib + + + + Latgolys politiki + 0 + 221 + + 11542 + 10546 + 2011-03-24T21:10:08Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Latgolys politiki''': + +== C == +* [[Jurs Cybuļs|Cybuļs Jurs]] + +== E == +* [[Rihards Eigims|Eigims Rihards]] + +== G == +* [[Anatolejs Gorbunovs|Gorbunovs Anatolejs]] + +== I,Ī == +* [[Daiņs Īvāns|Īvāns Daiņs]] + +== L == +* [[Vaļds Lauskys|Lauskys Vaļds]] + +== R == +* [[Anta Rugāte|Rugāte Anta]] + +== T == +* [[Fraņcs Trasuns|Trasuns Fraņcs]] +* [[JezupsTrasuns|Trasuns Jezups]] + +== Z,Ž == +* [[Pīters Zadvinskis|Zadvinskis Pīters]] + +== Nūruodis == +Ē. Jēkabsona i V. Ščerbinska gruomota ''Latgalīšu politiki i politiskuos partejis napavaļdeigajā Latvejā'' ("Latgaliešu politiķi un politiskās partijas neatkarīgajā Latvijā"). Reiga, 2006.<br /><br /> + +[[Kategoreja:Latgolys politika]] +[[Kategoreja:Zeimeigi Latgolys ļauds]] + mzarp5cpspxc21jplhl1uhqdqo8uenv + + + + Latgolys pravoslavu cierkvys i kapleicys + 0 + 222 + + 17941 + 17896 + 2011-10-19T06:29:49Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + == Latgolys pravoslavu cierkvys (bazneicys) i kapleicys pa pasaukai == +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== B == +* Bolvu pravoslavu cierkva +* Baļtinovys pravoslavu cierkva + +== D == +* Danišeukys Sv. Pītera i Pavula pravoslavu cierkva +* Daugpiļs Sv. Nikolaja pravoslavu cierkva +* Daugpiļs Sv. Pītera i Pavula pravoslavu cierkva +* Daugpiļs Sv. Aleksandra Nevska pravoslavu cierkva (Sv. Aleksandra Nevska katedralis vītā) +* Daugpiļs Dīvamuotis aizmigšonys pravoslavu cierkva +* Daugpiļs Sv. Aleksandra kapleica +* Daugpiļs Sv. Nikolaja cierkva +* Daugpiļs Sv. Borisa i Gleba pravoslavu katedrale + +== G == +* Golyšovys pravoslavu cierkva +* Gruoveru pravoslavu cierkva + +== I == +* Iļžukolna pravoslavu cierkva + +== J == +* Jaunslobodkys pravoslavu cierkva +* Juosmuižys pravoslavu cierkva + +== K == +* Kryvandys pravoslavu cierkva +* Kuorsovys pravoslavu cierkva +* Krystapiļs pravoslavu cierkva +* Kruoslovys pravoslavu cierkva + +== L == +* Lipinišku Vysusvātuokuos Dīvamuotis aizmigšonys pravoslavu cierkva +* Ludzys pravoslavu cierkva + +== Ļ == +* Ļauderu pravoslavu cierkva + +== M == +* Malinovys Iļjis pravoslavu cierkva +* Maltys pravoslavu cierkva +* Maskovskys pravoslavu cierkva + +== P == +* Pīdrujis pravoslavu cierkva +* Pūdinovys pravoslavu cierkva + +== R == +* Rēznis pravoslavu cierkva +* Ribinišku pravoslavu cierkva +* Ruguoju pravoslavu cierkva + +== S == +* Sīnuojis pravoslavu cierkva + +== Š == +*[[Škeļtiņu pravoslavu cierkva]] + +== T == +* Tiļžys pravoslavu cierkva +* Tiskadu pravoslavu cierkva + +== V == +* Veiksnys pravoslavu cierkva +* Vileks pravoslavu cierkva +* Viļānu pravoslavu kapela + +[[Kategoreja:Religeja Latgolā]] +[[Kategoreja:Saroksti]] +[[Kategoreja:Latgolys pravoslavu cierkvys]] + def0py4knvslrvr8maux3oivwwu4lho + + + + Latgolys regiona raisteibys agentura + 0 + 223 + + 11544 + 10548 + 2011-03-24T21:10:28Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Latgolys regiona raisteibys agentura''' aba '''LRRA''' (latvīšu: ''Latgales reģiona attīstības aģentūra; LRAA''; krīvu: ''Агентство развития Латгальского региона''; anglīšu: ''Latgale Region Development Agency'') — Latgolys [[Pošvolds|pošvoldu]] īstateita [[Navaļstiskuo organizaceja|navaļstiskuo]] i [[Napeļneiguo organizaceja|napeļneiguo]] oganizaceja, kurys [[Snāgs|snāgsir]]ā puordrūsynuot regiona [[Leidzīņs|leidzīņa]] [[Raisteiba|raisteibys]] planu īdzeivynuošonu i [[Rāds|rādu]]. + +Organizaceja eistynuojuse vērtini Europys Savīneibys fondu finansātu projektu, kuri vadynuojuši vysa Latgolys regiona [[Ekonomiskuo raisteiba|ekonomiskū]] i [[Socialuo raisteiba|socialū]] [[Raisteiba|raisteibu]]. LRRA sovā darbeibā turīs pi [[Latgolys planavuošonys regiona raisteibys padūme|Latgolys planavuošonys regiona raisteibys padūmis]] nūstateitūs regiona raisteibys prioritetu. + +== Viesture i statuss == +LRRA īstateita 1999 godā kai napeļneiguo [[aprūbežuota atsaceiguma sabīdreiba]], 2004 godā, atsateikūši jaunajim tīseibu aktim, statuss puormeits par [[Bīdreiba|bīdreibu]]. + +== Snāgi == +Golvonī LRRA snāgi: +* puordrūsynuot optimalu statiniskū (nacionalais-regionalais [[leidzīņs]]) i guliniskū (nacionalais [[leidzīņs]] i regionalais leidzīņs) integraceju iz vyds vysu regionalajā politikā, planaveibā i [[Raisteiba|raisteibā]] pīsadolūšūs partneru; +* radeit stypru i īteceigu regionalū strukturu, kura var pīstuovēt Latgolys regionu i pījimt regiona [[Leidzīņs|leidzīņa]] sasprīdumus ap Latgolai svareigim vaicuojumim; +* puordrūsynuot decentralizātu [[Raisteiba|raisteibys]] planavuošonu pa priņcipam "nu zamoškys iz viersu", styprynojūt regionalū darbuotnumu planaveibys, programeibys i regionaluos raisteibys atzarēs. + +== Funkcejis == +Sadareibā ar Latvejis regionaluos raisteibys lykumu, LRRA dora itaidys funkcejis: +* kūpādareidama ar pošvoldim i vaļstiskūs instituceju teritoriskajim īstotim Latgolā, sastota planaveibys regiona [[Raisteiba|raisteibys]] programu i teritorejis planavīni, puordrūsynoj jūs sadareibu ar nacionalū planavīni, nacionalū raisteibys planu i nacionalajom ci atzaru raisteibys programom, taipoš jūs īdzeyvnuošonys rādu; +* sagatavej pīzynumus ap nacionaluo [[Leidzīņs|leidzīņa]] [[Raisteiba|raisteibys]] planaveibys dokumentu atsatikšonu planaveibys regiona raisteibys programai i teritorejis planavīņam; +* koordinej i vadynoj planaveibys regiona regionaluos [[Raisteiba|raisteibys]] atspaida leidziekļu radeišonu, īdzeivynuošonu, davēri i nūviertiešonu; +* nūviertej vītejūs pošvoldu i juridiskūs i fiziskūs personu padūtūs projektu dasacejumus, kab dabuotu vaļstiskuo atspaida regionalajai raisteibai, i dūd sovu pīzynumu ap jim; +* izpylda cytys normativajūs aktūs nūstateitys funkcejis. + +== Struktura == +Agenturys poša augstuo sprīdiejinstituceja ir Bīdrusaīsme. Jei kas 4 godi ībolsoj Padūmi, kura dora laikavydūs nu vīnys Bīdrusaīsmis da cytys i dasaver LRRA direktora i vysys agenturys dorba. + +== Nūruodis == +* [http://www.latgale.lv/lv/lraa LRRA teiklavīta] + 4h85ha4op71czymqgm0sg0qsie1v86f + + + + Latgolys rūbežakmini + 0 + 224 + + 11545 + 10549 + 2011-03-24T21:10:38Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + == Latgolys rūbežakmini pa nūvodimi pogostim == +=== Ludzys nūvodā === +'''''Rundānu pogostā'''''<br /> +[[Kazeicu Bykakmiņs]] (Rundānu pog., Ludzys nūv) + +== Latgolys rūbežakmini pa pasaukai == +=== K === +* [[Kazeicu Bykakmiņs]] (Rundānu pog., Ludzys nūv) + 4z6raculdiqlnmng814y3mdnvy8xdkx + + + + Latgolys staroveru cierkvys i kapleicys + 0 + 226 + + 19203 + 13897 + 2011-11-27T19:28:01Z + + Roalds + 50 + + + Foļvarkys + wikitext + text/x-wiki + == Latgolys staroveru cierkvys i kapleicys pa pasaukai == +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== B == +* Bližnevys staroveru cierkva +* Borysovkys staroveru cierkva + +== C == +* Cišu staroveru cierkva +* [[Cyskuodu staroveru cierkva]] + +== D == +* Dagdys Pokrova Nikolaja staroveru cierkva +* Danišeukys staroveru cierkva +* Daugpiļs Nikolaja Breinumdora i Dīvamuotis dzimšonys staroveru (Daugpiļs Pyrmuos staroveru parepejis) cierkva +* Daugpiļs Nikolaja Breinumdora i Dīvamuotis gluobis (Pokrova) staroveru cierkva (Vacais Forštats) + +== E == +* Eņdžeļu staroveru bazneica + +== F == +* [[Foļvarkys staroveru cierkva]] + +== G == +* Gaikovys staroveru cierkva +* Gurilišku staroveru cierkva + +== I == +* Ismeru staroveru cierkva + +== J == +* Jākubmīsta staroveru cierkva +* Jersikys pravoslavu cierkva + +== K == +* Kampišku staroveru cierkva +* Krystceļu staroveru cierkva +* Kryvošejevys staroveru cierkva +* Krīvānu staroveru cierkva +* Kostigu staroveru cierkva +* Kovaļovys staroveru cierkva +* Kruoslovys staroveru cierkva + +== L == +* Leivuona staroveru cierkva +* Lipušku staroveru cierkva +* Lomu staroveru cierkva +* Ludzys staroveru cierkva + +== M == +* Makarovkys staroveru cierkva +* Maltys (Borovkys) staroveru cierkva +* Moskvynys staroveru cierkva +* Muolakolna staroveru cierkva + +== N == +* Notrys staroveru cierkva + +== P == +* Paramonovkys staroveru cierkva +* Pļuskovys staroveru cierkva +* Preiļu staroveru cierkva +* Pūderovys staroveru cierkva + +== R == +* Rečynys staroveru cierkva +* Rēznis staroveru cierkva +* Rimšu staroveru cierkva + +== S == +* Skangeļu staroveru cierkva +* Slostovkys staroveru cierkva + +== Š == +* Štykuoņu staroveru cierkva + +== U == +* Uļjanovys staroveru cierkva + +== V == +* Vainovys staroveru cierkva +* Vilceņu staroveru cierkva +* Viļānu staroveru cierkva + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Religeja Latgolā]] +[[Kategoreja:Saroksti]] +[[Kategoreja:Latgolys staroveru cierkvys]] + krxwf8abfxgvwxgwla0p0mg3092bu7t + + + + Latgolys upu saroksts + 0 + 227 + + 27874 + 25725 + 2013-02-21T08:56:16Z + + Roalds + 50 + + Rika latgaliskai Reika + wikitext + text/x-wiki + Itymā sarokstā puorskaiteitys leluokuos Latgolys upis. + +{| class="wikitable sortable" +|----- bgcolor=#DDDDDD +! Upe +! Upis garums Latgolā, km +! Kūpeigais garums, km +! Ītaka +|----- +| '''[[Ataša]]''' +| 27 +| 27 +| [[Narata]] +|----- +| '''[[Bolupe]]''' +| 81 +| 81 +| [[Aivīkste]] +|----- +| '''[[Dubna]]''' +| 105 +| 105 +| [[Daugova]] +|----- +| '''[[Iča]]''' +| 71 +| 71 +| [[Aivīkste]] +|----- +| '''[[Iļža]]''' +| 109 +| 156 +| [[Mudova]] +|----- +| '''[[Indreica]]''' +| 30 +| 30 +| [[Daugova]] +|----- +| '''[[Istra]]''' +| 39 +| 39 +| [[Sīnuoja (upe)|Sīnuoja]] +|----- +| '''[[Iudrupe]]''' +| 56 +| 176 +| [[Mudova]] +|----- +| '''[[Kira]]''' +| 34 +| 59 +| [[Vāda]] +|----- +| '''[[Kūkova]]''' +| 47 +| 107 +| [[Mudova]] +|----- +| '''[[Leiksna]]''' +| 47 +| 47 +| [[Daugova]] +|----- +| '''[[Lyuža]]''' +| 26 +| 26 +| [[Rēzne (upe)|Rēzne]] +|----- +| '''[[Līpna]]''' +| 40 +| 47 +| [[Vāda]] +|----- +| '''[[Malta (upe)|Malta]]''' +| 105 +| 105 +| [[Rēzne (upe)|Rēzne]] +|----- +| '''[[Narata]]''' +| 43,2 +| 43,2 +| [[Daugova]] +|----- +| '''[[Osyuneica]]''' +| 23,6 +| 35 +| [[Sarja]] +|----- +| '''[[Rēzne (upe)|Rēzne]]''' +| 116 +| 116 +| [[Lubuons]] +|----- +| '''[[Reika]]''' +| 38 +| 38 +| [[Kūkova]] +|----- +| '''[[Rudņa]]''' +| 16 +| 16 +| [[Daugova]] +|----- +| '''[[Sarja]]''' +| 50 +| 77 +| [[Daugova]] +|----- +| '''[[Sīnuoja (upe)|Sīnuoja]]''' +| 80 +| 195 +| [[Mudova]] +|----- +| '''[[Strauma]]''' +| 24 +| 24 +| [[Iudrupe]] +|----- +| '''[[Suovānupe]]''' +| 41 +| 41 +| [[Dubna]] +|----- +| '''[[Tartaks]]''' +| 18 +| 18 +| [[Luknys azars]] +|----- +| '''[[Teiceja]]''' +| 25 +| 25 +| [[Lubuons]] +|----- +| '''[[Tiļža]]''' +| 40 +| 40 +| [[Iča]] +|----- +| '''[[Ūdze(upe)|Ūdze]]''' +| 30,3 +| 30,3 +| [[Narata]] +|----- +| '''[[Ūša]]''' +| 60 +| 60 +| [[Dubna]] +|----- +| '''[[Vāda]]''' +| 40 +| 87 +| [[Mudova]] +|----- +| '''[[Vīmineica]]''' +| 72 +| 72 +| [[Dubna]] +|----- +| '''[[Vuornīne]]''' +| 50 +| 50 +| [[Bolupe]] +|} + +[[Kategoreja:Saroksti]] + m0s2e73bxgv93v2ynih9xnmntyz58s7 + + + + Latgolys viesture + 0 + 228 + + 11549 + 10553 + 2011-03-24T21:11:18Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Latgolys viesture''' + +* [[Hronologeja]] +* [[Latvīšu muzykaliskuo bīdreiba|Latvīšu muzykaliskuo bīdreiba Pīterburgā]] +* [[Latgaļu demokratu bloks]] ''(1-ajā Latvejis Republikys Seimā)'' + kasajblpt5izemmj2jwyd6tej52ldk8 + + + + Vikipedeja:Vajadzeigī rakstīni/Zeimeigi ļauds + 4 + 229 + + 17843 + 17837 + 2011-10-15T17:58:49Z + + Dark Eagle + 34 + + + /* Verīs taipoš */ + wikitext + text/x-wiki + ==A== +* [[Arvīds Aizsils|Aizsils Arvīds]] +* [[Jezups Akelevičs|Akelevičs Jezups]] +* [[Mareja Andžāne|Andžāne Mareja]] +* [[Meikuls Apeļs|Apeļs Meikuls]] +* [[Ignats Asāns|Asāns Ignats]] +* [[Aleksejs Apīnis|Apīnis Aleksejs]] + +== B == +* [[Stefans Baginskis|Baginskis Stefans]] +* [[Genovefa Barkovska|Barkovska Genovefa]] +* [[Eliezers Ben-Jehuda|Ben-Jehuda Eliezers]] +* [[Ontons Breidaks|Breidaks Ontons]] +* [[Bonifacejs Briška|Briška Bonifacejs]] +* [[Aloizs Broks|Broks Aloizs]] +* [[Valeņtina Bruzgule|Bruzgule Valeņtina]] +* [[Mikeļs Bukšs|Bukšs Mikeļs]] + +== C == +* [[Ruta Cybule|Cybule Ruta]] +* [[Jurs Cybuļs|Cybuļs Jurs]] +* [[Juoņs Cybuļskis|Cybuļskis Juoņs]] + +== Č == +* [[Čeņču Jezups]] + +== D == +* [[Konstaņce Daugule-Kempe|Daugule-Kempe Konstaņce]] +* [[Dekters]] +* [[Apolinarejs Dieglis|Dieglis Apolinarejs]] +* ''Dveiņuvs Ošvolds'' - vr. [[Osvalds Kravaļs|Kravaļs Osvalds]] +* [[Ontons Dzeņs|Dzeņs Ontons]] +* [[Viļs Dziervinīks|Dziervinīks Viļs]] + +== E == +* [[Augusts Egluojs|Egluojs Augusts]] +* [[Rihards Eigims|Eigims Rihards]] +* [[Georgs Eļgers|Eļgers Georgs]] +* [[Juoņs Eļksnis|Eļksnis Juoņs]] + +== G == +* Gagaine Leiga - vr. [[Leiga Seiksta|Seiksta Leiga]] + +== J == +* [[Pīters Jurceņš|Jurceņš (Jurciņš) Pīters]] +* [[Andryvs Jūrdžys|Jūrdžys Andryvs]] + +== K == +* ''Kalnačs Donats'' -vr. [[Andris Viejāns|Viejāns Andris]] +* ''Kindzuļs Jezups'' - vr. [[Čeņču Jezups]] +* [[Oskars Kalējs|Kalējs Oskars]] +* [[Juoņs (Eugeņs) Karūdznīks|Karūdznīks Juoņs (Eugeņs)]] +* [[Fraņcs Kemps|Kemps Fraņcs]] +* [[Juoņs Klīdziejs|Klīdziejs Juoņs]] +* [[Tomašs Kosovskis|Kosovskis Tomašs]] +* [[Osvalds Kravaļs|Kravaļs Osvalds]] +* [[Ontons Kūkuojs|Kūkuojs Ontons]] +* [[Juoņs Kurmins|Kurmins Juoņs]] +* [[Janina Kūrseite|Kūrseite Janina]] + +== L == +* [[Vaļds Labinskis|Labinskis Vaļds]] +* [[Jezups Laganovskis|Laganovskis Jezups]] +* [[Felikss Laizāns|Laizāns Felikss]] +* [[Maruta Latkovska|Latkovska Maruta]] +* [[Leonards Latkovskis|Latkovskis Leonards]] +* [[Vaļds Lauskys|Lauskys Vaļds]] +* [[Lideja Leikuma|Leikuma Lideja]] +* [[Jezups Leļs|Leļs Jezups]] +* ''Lobuords J.'' - vr. [[Mikeļs Bukšs|Bukšs Mikeļs]] +* ''Ludbuoržs Juoņs'' - vr. [[Madsolys Juoņs]] +* [[Juoņs Lukaševičs|Lukaševičs Juoņs]] +* [[Valeņtins Lukaševičs|Lukaševičs Valeņtins]] +* [[Vladislavs Luocs|Luocs Vladislavs]] + +== M == +* [[Jezups Macilevičs|Macilevičs Jezups]] +* [[Aivars Mackevičs|Mackevičs Aivars]] +* [[Madsolys Juoņs]] +* ''Magazeiņs Ivars'' - vr. [[Juoņs Ryučāns|Ryučāns Juoņs]] +* [[Gustavs Maņteufeļs|Maņteufeļs Gustavs]] +* [[Bronislava Martuževa|Martuževa Bronislava]] +* [[Ontons Matvejāns|Matvejāns Ontons]] +* [[Pīters Miglinīks|Miglinīks Pīters]] +* [[Daiņs Majartāns|Mjartāns Daiņs]] +* ''Myurinīks Donats'' - vr. [[Dekters]] +* ''Mundure Valereja'' - vr. [[Marta Skuja|Skuja Marta]] +* [[Viktors Mundurs|Mundurs Viktors]] +* [[Fraņcs Murāns|Murāns Fraņcs]] + +== N == +* [[Naaizmierstule]] +* [[Roberts Neikšānīts|Neikšānīts Roberts]] + +== P == +* [[Jurs Pabierzs|Pabierzs Jurs]] +* ''Pokrotnīks Ciprijans'' - vr. [[Augusts Egluojs|Egluojs Augusts]] +* [[Juoņs Pokuļs|Pokuļs Juoņs]] +* [[Juoņs Pujats (arciveiskups)|Pujats Juoņs]] ''(arciveiskups - metropolits)'' +* [[Juoņs Pujats (muokslys zininīks)|Pujats Juoņs]] ''(muokslys zininīks)'' +* ''Pūrmalīts J.'' - vr. [[Jezups Leļs|Leļs Jezups]] +* [[Seimaņs Putāns|Putāns Seimaņs]] + +== R == +* [[Anna Rancāne|Rancāne Anna]] +* [[Nikodems Rancāns|Rancāns Nikodems]] +* ''Rīkstāns Ontunejs'' - vr. [[Juoņs (Eugeņs) Karūdznīks|Karūdznīks Juoņs (Eugeņs)]] +* [[Marks Rotko|Rotko Marks]] +* [[Mikeļs Rots|Rots Mikeļs]] +* [[Arturs Rubyns|Rubyns Arturs]] +* [[Alekss Rubuļs|Rubuļs Alekss]] +* [[Marta Rudzīte|Rudzīte Marta]] +* [[Anta Rugāte|Rugāte Anta]] +* [[Leiga Rundāne|Rundāne Leiga]] +* [[Ontons Rupaiņs|Rupaiņs Ontons]] +* [[Juoņs Ryučāns|Ryučāns Juoņs]] +* ''Ruško Eugeņs'' - vr. [[Juoņs (Eugeņs) Karūdznīks|Karūdznīks Juoņs (Eugeņs)]] +* ''Rūškāns Eugeņs'' - vr. [[Juoņs (Eugeņs) Karūdznīks|Karūdznīks Juoņs (Eugeņs)]] + +== S == +* [[Ilona Saļceviča|Saļceviča Ilona]] +* [[Leiga Seiksta|Seiksta Leiga]] +* [[Oskars Seiksts|Seiksts Oskars]] +* [[Valereja Seile|Seile Valereja]] +* [[Stepuons Seiļs|Seiļs Stepuons]] +* ''Skaidreite'' - vr. [[Konstaņce Daugule-Kempe|Daugule-Kempe Konstaņce]] +* [[Kazimers Skrynda|Skrynda Kazimers]] +* [[Ontons Skrynda|Skrynda Ontons]] +* [[Marta Skuja|Skuja Marta]] +* [[Ontons Slyšāns|Slyšāns Ontons]] +* [[Pīters Smeļters|Smeļters Pīters]] +* [[Jurs Soikāns|Soikāns Jurs]] +* [[Iļze Spierga|Spierga Iļze]] +* [[Aļberts Spuogis|Spuogis Aļberts]] +* [[Bronislavs Spūļs|Spūļs Bronislavs]] +* [[Anna Stafecka|Stafecka Anna]] +* [[Juoņs Streičs|Streičs Juoņs]] +* Striču Joseļs - vr. [[Bonifacejs Briška|Briška Bonifacejs]] +* [[Konstaņtins Strods-Pleņcinīks|Strods-Pleņcinīks Konstaņtins]] +* [[Pīters Strods|Strods Pīters]] + +== Š == +* [[Ontons Šmulāns|Šmulāns Ontons]] + +== T == +* ''Tabine, Rozaleja'' - vr. [[Naaizmierstule]] +* [[Ingrida Tārauda|Ingrida Tārauda]] +* [[Hieronims Tihovskis|Tihovskis Hieronims]] +* [[Fraņcs Trasuns]] +* [[Jezups Trasuns]] +* ''Trepša, Roberts'' - vr. [[Roberts Neikšānīts|Neikšānīts Roberts]] + +== U,Ū == +* [[Stefaneja Uļanovska|Uļanovska Stefaneja]] + +== V == +* ''Vaideāns Vl.'' - vr. [[Vladislavs Luocs|Luocs Vladislavs]] +* [[Vitolds Valeiņs|Valeiņs Vitolds]] +* [[Diana Varslavāne|Varslavāne Diana]] +* [[Andris Viejāns|Viejāns Andris]] +* [[Valerians Viļčuks|Viļčuks Valerians]] +* [[Voldemars Voguls|Voguls Voldemars]] +* [[Eduards Voļters|Voļters Eduards]] +* [[Viktors Vonogs|Vonogs Viktors]] + +== Z == +* [[Pīters Zeile|Zeile Pīters]] +* [[Veneranda Zepa|Zepa Veneranda]] +* [[Vaļds Zeps|Zeps Vaļds]] +* [[Ontons Zvīdris|Zvīdris Ontons]] + +== Verīs taipoš == +* [[Vikipedeja:Vajadzeigī rakstīni]] + + +[[Kategoreja:Vikipedeja]] + ihd705h4d2qvnmmj42r0gt10zteek0k + + + + Latgolys vītys + 0 + 230 + + + 3809 + 3808 + 2011-03-19T13:06:35Z + + SPQRobin + 2 + + + 3 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Latgolys administrativais dalejums]] + 0kw6fw4e33m0z4ebq9cl82dxyqhtxkb + + + + Latgolys ļauds + 0 + 231 + + 11551 + 10555 + 2011-03-24T21:11:41Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Latgolys ļauds''' + +* [[Latgolys viesturē i kulturā zeimeigi ļauds]] +* [[Latgolā dzymušī pazeistamī ļauds]] + spjkf4rqh8mcz0c3d215zt0cuzgxy7x + + + + Latgolys ļutaru bazneicys i kapleicys + 0 + 232 + + 11552 + 10556 + 2011-03-24T21:11:49Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + == Latgolys ļutaru bazneicys i kapleicys pa pasaukai == +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== B == +* Bolvu ļutaru bazneica + +== D == +* Daugpiļs Martina Ļutara ļutaru bazneica + +== K == +* Kolupa ļutaru bazneica +* Krystapiļs ļutaru bazneica +* Kruoslovys ļutaru bazneica +* Kuorsovys ļutaru bazneica + +== L == +* Leivuona ļutaru bazneica +* Ludzys ļutaru bazneica + +== R == +* Rēznis Svātuos Trejadeibys ļutaru bazneica + +== T == +* Tiļžys ļutaru bazneica + +== U == +* Ungurmuižys ļutaru bazneica + +== V == +* Varakļuonu Svātuo Krysta ļutaru bazneica +* Vileks ļutaru bazneica +* Viļānu ļutaru bazneica + +[[Kategoreja:Religeja Latgolā]] +[[Kategoreja:Saroksti]] + lud1trywfqvmw6u1yn8w8l7zahjqgxn + + + + Vikipedeja:Vajadzeigī rakstīni/Latgolā dzymušī pazeistamī ļauds + 4 + 233 + + 17842 + 17838 + 2011-10-15T17:58:24Z + + Dark Eagle + 34 + + + /* Verīs taipoš */ + wikitext + text/x-wiki + Itys Latgolys pazeistamūs ļaužu saroksts napiļneigs. '''[[:Category:Zeimeigi_Latgolys_ļauds]]''' ruoda vysus, kas bejuši īraksteiti. Tys saroksts atsarūn automatiski. Kab daliktu jaunu biografeju, vīnkuorši pataisit rakstīni veļteitu kaidam cylvākam (pīvadumam, Mikeļam Bukšam), a rakstīņa golā sataisit vēļ taidys 2 ailes: + +<pre>{{DEFAULTSORT:Bukšs, Mikeļs}} +[[Kategoreja:Zeimeigi Latgolys ļauds]]</pre> + + +== A == +* [[Jezups Akelevičs|Akelevičs Jezups]] +* [[Mareja Andžāne|Andžāne Mareja]] +* [[Meikuls Apeļs|Apeļs Meikuls]] +* [[Ignats Asāns|Asāns Ignats]] +* [[Aleksejs Apīnis|Apīnis Aleksejs]] + +== B == +* [[Stefans Baginskis|Baginskis Stefans]] +* [[Leopolds Brokāns|Brokāns Leopolds]] +* [[Aloizs Broks|Broks Aloizs]] +* [[Mikeļs Bukšs|Bukšs Mikeļs]] + +== D == +* [[Apolinarejs Dieglis|Dieglis Apolinarejs]] + +== G == +* [[Nikolajs Goršenins|Goršenins Nikolajs]] + +== J == +* [[Andryvs Jūrdžys|Jūrdžys Andryvs]] + +== L == +* [[Vaļds Lauskys|Lauskys Vaļds]] +* [[Juoņs Lukaševičs|Lukaševičs Juoņs]] + +== S == +* [[Ilona Staprāne|Staprāne Ilona]] + +== Š == +* [[Ontons Šmulāns|Šmulāns Ontons]] + +== T == +* [[Ontons Tumuļkāns|Tumuļkāns Ontons]] + +== Verīs taipoš == +* [[Vikipedeja:Vajadzeigī rakstīni]] + + +[[Kategoreja:Vikipedeja]] + pwn6w7tdcixd6jinchzw67v31vd4f5h + + + + Latveja + 0 + 234 + + 32104 + 31571 + 2017-07-10T03:04:29Z + + DARIO SEVERI + 3389 + + Update information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Latveja'''<br />'''Latvija'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Latvia.svg|150px|border|Latvejas karūgs]] +| align="center" width="140px" | [[Fails:Coat of Arms of Latvia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Latvia.svg|300px]] +|- +|| Golvysmīsts || [[Reiga]] +|- +|| Vaļsteibys volūda || [[latvīšu volūda|latvīšu]] +|- +| Prezidents || [[Raimonds Vējonis]] +|- +| Ministru prezidents || [[Māris Kučinskis]] +|- +|| Pluots || 64 589 km² +|- +|| Dzeivuotuoju skaits || 1 953 200 <small>(2016)</small> +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2),<br /> EEST (UTC +3) +|} +'''Latveja''', oficialai '''Latvejas Republika''' ({{Vol-lv|Latvija}}<nowiki/>s ''Republika'') — vaļsteiba Pūstumu [[Europa|Europā]] pi [[Baļtejis jiura|Baļtejis jiurys]]. Vaļsteiba tūr rūbežu ar [[Igauneja|Igauneju]], [[Lītova|Lītovu]], [[Boltkrīveja|Boltkrīveju]] i [[Krīveja|Krīveju]]. Rītumos skoloj [[Baļtejis jiura]], bet pūstumūs [[Reigys leics]]. Vaļsteibys 64 589 km² pluotā dzeivoj 1, 95 milijoni dzeivuotuoju. Golvysmīsts i leluokais mīsts — [[Reiga]]. + +Nu 2004. goda 1. maja Latveja irā [[Europys Savīneibys]], nu 2004. goda 29. marta Latveja irā [[NATO]] dalīnīkvaļsteiba i nu 2016. goda 2. jūnija Latveja irā [[OECD]]. + +== Viesture == +[[Fails:Medieval Livonia 1260.svg|thumb|left]] +Leidz [[13. godusymts|13. godusymta]] Latvejis teritorejā dzeivova nazcik baltu i suomugru patautys: [[kurši]], [[zemgali]], [[sieli]], [[latgali]], [[līvi]], [[vendi]] i [[igauni]]. + +== Politika == + +== Geografeja == +* ''[[Latvejis mīstu saroksts]]'' +* ''[[Latgolys administrativais dalejums]]'' + +== Demografeja == +62,1% — latvīši, 26,9% krīvi, 3,3% boltkrīvi, 2,2% puoli, 5,5% cyti.<ref>[http://www.csb.gov.lv/statistikas-temas/2011gada-tautas-skaitisana-galvenie-raditaji-33608.html 2011.gada tautas skaitīšana - Galvenie rādītāji]</ref> + +== Verīs taipoš == +* [http://www.latvija.lv/ Latvija.lv] + +== Nūruodis i olūti == +{{nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Latveja| ]] +[[Kategoreja:Pasauļa vaļsteibys]] + r4ds0a4dagngi219i8c4swutpcpd29o + + + + Latvejis Republika + 0 + 235 + + + 3885 + 3884 + 2011-03-19T13:06:41Z + + SPQRobin + 2 + + + 2 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT[[Latveja]] + 25yarhye5bkhf3ob78uah6wkwg0qsuc + + + + Latvejis mīsti + 0 + 236 + + 30874 + 29910 + 2015-09-16T20:28:31Z + + Färber + 3158 + + wikitext + text/x-wiki + [[Fails:Riian vanhakaupunki.jpg|thumb|right|160px|[[Reiga]]]] +[[Fails:Daugavpilts Lutherian and Catholic churches LV.jpg|thumb|right|160px|[[Daugpiļs]]]] +[[Fails:Liepaja view.jpg|thumb|right|160px|[[Līpuoja]]]] +[[Fails:Jelgava aerial view.jpg|thumb|right|160px|[[Meitova]]]] +[[Fails:Jurmala juli 2005.jpg|thumb|right|160px|[[Jiurmale]]]] +[[Fails:Cesis Burg.jpg|thumb|right|160px|[[Cāsi]]]] +[[Fails:Canal in Kuldiga.jpg|thumb|right|160px|[[Kuļdeiga]]]] +[[Fails:3 Bauskas-pils-9apr04.jpg|thumb|right|160px|[[Bauske]]]] + +{| border="2" cellpadding="4" cellspacing="0" class="bonita" style="margin: 0.5em 0.5em 0.5em 1em; padding: 0.5em; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;" +|- +|colspan="8" align="center" bgcolor="#DDDDDD" | '''Latvejis mīsti''' +|- +|rowspan="2" align="center" bgcolor="#EEEEEE" | '''Vīta''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Gerbs''' || colspan="2" align="center" bgcolor="#EEEEEE" | '''Pasauka''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Mīsta tīseibys''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Dzeivuotuoju sk. <br /> (2009 g. apskaite)''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Pluots, km²''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Nūvods''' +|- +|align="center" bgcolor="#EEEEEE" | '''latgaliskai''' || align="center" bgcolor="#EEEEEE" | '''latvyskai''' +|- +| 1. +| [[Fails:Rigas Gerbonis.png|50 px|center]] +| [[Reiga]] +| ''Rīga'' +| 1225 g. +| 711 789 +| 307,2 +| - +|- +| 2. +| [[Fails:Coat of arms of Daugavpils.svg|30 px|center]] +| [[Daugpiļs]] +| ''Daugavpils'' +| 1582 g. +| 105 520 +| 72,48 +| - +|- +| 3. +| [[Fails:Coat of Arms of Liepāja.svg|30 px|center]] +| [[Līpuoja]] +| ''Liepāja'' +| 1625 g. +| 84 492 +| 60 +| - +|- +| 4. +| [[Fails:LVA Jelgava COA.png|30 px|center]] +| [[Meitova]] +| ''Jelgava'' +| 1573 g. +| 66 120 +| 60,1 +| - +|- +| 5. +| [[Fails:Escut Jurmala.png|30 px|center]] +| [[Jiurmale]] +| ''Jūrmala'' +| 1959 g. +| 55 061 +| 100 +| - +|- +| 6. +| [[Fails:LVA Ventspils COA.svg|30 px|center]] +| [[Ventspiļs]] +| ''Ventspils'' +| 1378 g. +| 43 098 +| 55,37 +| - +|- +| 7. +| [[Fails:Coat_of_Arms_of_Rēzekne.svg|30 px|center]] +| [[Rēzne]] +| ''Rēzekne'' +| 1773 g. +| 35 680 +| 17,48 +| - +|- +| 8. +| [[Fails:COA LV Valmiera.svg|30 px|center]] +| [[Volmīra]] +| ''Valmiera'' +| 1323 g. +| 27 339 +| 18,1 +| - +|- +| 9. +| [[Fails:Escut Jekabpils.png|30 px|center]] +| [[Jākubmīsts]] +| ''Jēkabpils'' +| 1670 g. +| 26 713 +| 23 +| - +|- +| 10. +| [[Fails:Coat of Arms of Ogre.svg|30 px|center]] +| [[Uogre]] +| ''Ogre'' +| 1928 g. +| 26 167 +| 16 +| [[Uogrys nūvods|Uogrys]] +|- +| 11. +| [[Fails:Salaspils gerb.png|30 px|center]] +| [[Solyspiļs]] +| ''Salaspils'' +| 1993 g. +| 18 084 +| 12 +| [[Solyspiļs nūvods|Solyspiļs]] +|- +| 12. +| [[Fails:Escut Tukums.png|30 px|center]] +| [[Tukums]] +| ''Tukums'' +| 1795 g. +| 19 904 +| 13 +| [[Tukuma nūvods|Tukuma]] +|- +| 13. +| [[Fails:Cesis gerb.png|30 px|center]] +| [[Cāsi]] +| ''Cēsis'' +| 1323 g. +| 17 844 +| 19,3 +| [[Cāsu nūvods|Cāsu]] +|- +| 14. +| [[Fails:Kuldiga gerb.png|30 px|center]] +| [[Kuļdeiga]] +| ''Kuldīga'' +| 1378 g. +| 12 892 +| 19,3 +| [[Kuļdeigys nūvods|Kuļdeigys]] +|- +| 15. +| [[Fails:Olaine.gerb.png|30 px|center]] +| [[Ūlaine]] +| ''Olaine'' +| 1967 g. +| 12 719 +| 6,8 +| [[Ūlainis nūvods|Ūlainis]] +|- +| 16. +| [[Fails:Saldus gerb.png|30 px|center]] +| [[Saldus]] +| ''Saldus'' +| 1917 g. +| 12 353 +| 10 +| [[Saldus nūvods|Saldus]] +|- +| 17. +| [[Fails:Coat of Arms of Talsi.svg|30 px|center]] +| [[Talsi]] +| ''Talsi'' +| 1917 g. +| 11 059 +| 7,83 +| [[Talsu nūvods|Talsu]] +|- +| 18. +| [[Fails:Escut Dobele.png|30 px|center]] +| [[Dūbele]] +| ''Dobele'' +| 1917 g. +| 11 104 +| 8 +| [[Dūbelis nūvods|Dūbelis]] +|- +| 19. +| [[Fails:Kraslava gerb.png|30 px|center]] +| [[Kruoslova]] +| ''Krāslava'' +| 1923 g. +| 10 400 +| 8,63 +| [[Kruoslovys nūvods|Kruoslovys]] +|- +| 20. +| [[Fails:Sigulda gerb.png|30 px|center]] +| [[Sigulda]] +| ''Sigulda'' +| 1928 g. +| 10 760 +| 18,2 +| [[Siguldys nūvods|Siguldys]] +|- +| 21. +| [[Fails:Lv-Bauska city coa.png|30 px|center]] +| [[Bauske]] +| ''Bauska'' +| 1609 g. +| 10 044 +| 6 +| [[Bauskis nūvods|Bauskis]] +|- +| 22. +| [[Fails:WappenLudza.png|30 px|center]] +| [[Ludza]] +| ''Ludza'' +| 1777 g. +| 9 614 +| 10 +| [[Ludzys nūvods|Ludzys]] +|- +| 23. +| [[Fails:Livani gerb.png|30 px|center]] +| [[Leivuons]] +| ''Līvāni'' +| 1926 g. +| 9 095 +| 5 +| [[Leivuona nūvods|Leivuona]] +|- +| 24. +| [[Fails:Gulbene gerb.png|30 px|center]] +| [[Guļbine]] +| ''Gulbene'' +| 1928 g. +| 9 048 +| 12,2 +| [[Guļbinis nūvods|Guļbinis]] +|- +| 25. +| [[Fails:Madona.png|30 px|center]] +| [[Modyune]] +| ''Madona'' +| 1926 g. +| 8 915 +| 10,45 +| [[Modyunis nūvods|Modyunis]] +|- +| 26. +| [[Fails:Aluksne.png|30 px|center]] +| [[Olyuksna]] +| ''Alūksne'' +| 1920 g. +| 9 164 +| 14,2 +| [[Olyuksnys nūvods|Olyuksnys]] +|- +| 27. +| [[Fails:Aizkraukle gerb.png|30 px|center]] +| [[Aizkrauklis]] +| '' Aizkraukle +| 1967 g. +| 8 540 +| 12 +| [[Aizkraukļa nūvods|Aizkraukļa]] +|- +| 28. +| [[Fails:Limbazi gerb.png|30 px|center]] +| [[Limbaži]] +| '' Limbaži || 1385 g. +| 8 629 +| 9 +| [[Limbažu nūvods|Limbažu]] +|- +| 29. +| [[Fails:WappenPreili.png|30 px|center]] +| [[Preili]] +| '' Preiļi +| 1928 g. +| 8 106 +| 5,1 +| [[Preiļu nūvods|Preiļu]] +|- +| 30. +| [[Fails:Escut Balvi.png|30 px|center]] +| [[Bolvi]] +| '' Balvi || 1928 g. +| 7 952 +| 5,1 +| [[Bolvu nūvods|Bolvu]] +|- +| 31. +| [[Fails:WappenLielvarde.png|30 px|center]] +| [[Lelvuords]] +| '' Lielvārde +| 1992 g. +| 7 107 +| 7 +| [[Lelvuorda nūvods|Lelvuorda]] +|- +| 32. +| [[Fails:WappenSaulkrasti.png|30 px|center]] +| [[Saulismale]] +| '' Saulkrasti +| 1921 g. +| 6 243 +| 4,8 +| [[Saulismalis nūvods|Saulismalis]] +|- +| 33. +| [[Fails:WappenValka.png|30 px|center]] +| [[Valka]] +| '' Valka +| 1584 g. +| 6 191 +| 14,2 +| [[Valkys nūvods|Valkys]] +|- +| 34. +| [[Fails:Salacgriva gerb.png|30 px|center]] +| [[Salacgreiva]] +| '' Salacgrīva +| 1928 g. +| 5 885 +| 13 +| [[Salacgreivys nūvods|Salacgreivys]] +|- +| 35. +| [[Fails:Smiltene gerb.png|30 px|center]] +| [[Smiļktine]] +| '' Smiltene +| 1920 g. +| 5 811 +| 7,19 +| [[Smiļktinis nūvods|Smiļktinis]] +|- +| 36. +| [[Fails:Baldone.png|30 px|center]] +| [[Boldūne]] +| '' Baldone +| 1921 g. +| 5 742 +| 5,2 +| [[Boldūnis nūvods|Boldūnis]] +|- +| 37. +| [[Fails:Aizpute.png|30 px|center]] +| [[Aizpute]] +| '' Aizpute +| 1375 g. +| 5 298 +| 7,5 +| [[Aizputis nūvods|Aizputis]] +|- +| 38. +| [[Fails:Balozi.png|30 px|center]] +| [[Bolūdi]] +| ''Baloži +| 1991 g. +| 5 225 +| 6,7 +| [[Kekovys nūvods|Kekovys]] +|- +| 39. +| [[Fails:Grobina gerb.png|30 px|center]] +| [[Gruobins]] +| '' Grobiņa +| 1695 g. +| 4 218 +| 5 +| [[Gruobina nūvods|Gruobina]] +|- +| 40. +| [[Fails:Vangazi gerb.png|30 px|center]] +| [[Vangaži]] +| '' Vangaži +| 1991 g. +| 4 042 +| 4,9 +| [[Iņčukolna nūvods|Iņčukolna]] +|- +| 41. +| [[Fails:Ikskile gerb.png|30 px|center]] +| [[Ikškila]] +| '' Ikšķile +| 1992 g. +| 4 002 +| 2,1 +| [[Ikškilys nūvods|Ikškilys]] +|- +| 42. +| [[Fails:Kandava gerb.png|30 px|center]] +| [[Kandova]] +| '' Kandava +| 1917 g. +| 3 997 +| 7 +| [[Kandovys nūvods|Kandovys]] +|- +| 43. +| [[Fails:Auce gerb.png|30 px|center]] +| [[Auce]] +| '' Auce +| 1924 g. +| 3 934 +| 3,66 +| [[Aucis nūvods|Aucis]] +|- +| 44. +| [[Fails:Skrunda gerb.png|30 px|center]] +| [[Skrunda]] +| '' Skrunda +| 1996 g. +| 3 798 +| 7,9 +| [[Skrundys nūvods|Skrundys]] +|- +| 45. +| [[Fails:Plavinas gerb.png|30 px|center]] +| [[Pļavenis]] +| '' Pļaviņas +| 1927 g. +| 3 697 +| 7 +| [[Pļaveņu nūvods|Pļaveņu]] +|- +| 46. +| [[Fails:Vilani gerb.png|30 px|center]] +| [[Viļāni]] +| '' Viļāni +| 1928 g. +| 3 595 +| 5 +| [[Viļānu nūvods|Viļānu]] +|- +| 47. +| [[Fails:Rujiena gerb.png|30 px|center]] +| [[Rūjīna]] +| '' Rūjiena +| 1920 g. +| 3 529 +| 18 +| [[Rūjīnys nūvods|Rūjīnys]] +|- +| 48. +| [[Fails:Coat of Arms of Brocēni.svg|30 px|center]] +| [[Bruocāni]] +| '' Brocēni +| 1992 g. +| 3 515 +| 8,5 +| [[Bruocānu nūvods|Bruocānu]] +|- +| 49. +| [[Fails:Cesvaine.png|30 px|center]] +| [[Casvaine]] +| '' Cesvaine +| 1991 g. +| 3 295 +| 5 +| [[Casvainis nūvods|Casvainis]] +|- +| 50. +| [[Fails:Ilukste gerb.png|30 px|center]] +| [[Īlyukste]] +| '' Ilūkste +| 1927 g. +| 2 917 +| 9 +| [[Īlyukstis nūvods|Īlyukstis]] +|- +| 51. +| [[Fails:Viesite gerb.png|30 px|center]] +| [[Vīseite]] +| '' Viesīte +| 1928 g. +| 2 708 +| 2,3 +| [[Vīseitis nūvods|Vīseitis]] +|- +| 52. +| [[Fails:Kegums gerb.png|30 px|center]] +| [[Kegums]] +| '' Ķegums +| 1993 g. +| 2 525 +| 6,8 +| [[Keguma nūvods|Keguma]] +|- +| 53. +| [[Fails:Dagda gerb.png|30 px|center]] +| [[Dagda]] +| '' Dagda +| 1992 g. +| 2 504 +| 3 +| [[Dagdys nūvods|Dagdys]] +|- +| 54. +| [[Fails:Coat of Arms of Aloja.svg|30 px|center]] +| [[Aluoja]] +| '' Aloja +| 1992 g. +| 2 487 +| 5 +|[[Aluojis nūvods|Aluojis]] +|- +| 55. +| [[Fails:Priekule gerb.png|30 px|center]] +| [[Prīkule]] +| '' Priekule +| 1928 g. +| 2 443 +| 5 +| [[Prīkulis nūvods|Prīkulis]] +|- +| 56. +| [[Fails:Jaunjelgava.png|30 px|center]] +| [[Jaunmeitova]] +| '' Jaunjelgava +| 1647 g. +| 2 388 +| 6,1 +| [[Jaunmeitovys nūvods|Jaunmeitovys]] +|- +| 57. +| [[Fails:Mazsalaca gerb.png|30 px|center]] +| [[Mozsalaca]] +| '' Mazsalaca +| 1928 g. +| 2 236 +| 8 +| [[Mozsalacys nūvods|Mozsalacys]] +|- +| 58. +| [[Fails:Karsava gerb.png|30 px|center]] +| [[Kuorsova]] +| '' Kārsava +| 1928 g. +| 2 342 +| 3,9 +| [[Kuorsovys nūvods|Kuorsovys]] +|- +| 59. +| [[Fails:Varaklani gerb.png|30 px|center]] +| [[Varakļuoni]] +| '' Varakļāni +| 1928 g. +| 2 142 +| 5 +| [[Varakļuonu nūvods|Varakļuonu]] +|- +| 60. +| [[Fails:Stende gerb.png|30 px|center]] +| [[Steņde]] +| '' Stende +| 1991 g. +| 1 942 +| 4,5 +| [[Talsu nūvods|Talsu]] +|- +| 61. +| [[Fails:Staicele gerb.png|30 px|center]] +| [[Staicele]] +| '' Staicele +| 1992 g. +| 1 936 +| 4 +| [[Aluojis nūvods|Aluojis]] +|- +| 62. +| [[Fails:Lubana gerb.png|30 px|center]] +| [[Lubuons]] +| '' Lubāna || 1992 g. +| 1 898 +| 4,39 +| [[Lubuona nūvods|Lubuona]] +|- +| 63. +| [[Fails:Akniste.png|30 px|center]] +| [[Akneiša]] +| '' Aknīste +| 1991 g. +| 1 819 +| 3 +| [[Akneišys nūvods|Akneišys]] +|- +| 64. +| [[Fails:Escut Zilupe.PNG|30 px|center]] +| [[Sīnuoja]] +| '' Zilupe +| 1931 g. +| 1 794 +| 5 +| [[Sīnuojis nūvods|Sīnuojis]] +|- +| 65. +| [[Fails:LVA Ape COA.png|30 px|center]] +| [[Opa]] +| '' Ape +| 1928 g. +| 1 760 || 1,7 +| [[Opys nūvods|Opys]] +|- +| 66. +| [[Fails:Valdemarpils gerb.png|30 px|center]] +| [[Valdemarpiļs]] +| '' Valdemārpils +| 1917 g. +| 1 749 +| 3 +| [[Talsu nūvods|Talsu]] +|- +| 67. +| [[Fails:Piltene gerb.png|30 px|center]] +| [[Piļtine]] +| '' Piltene +| 1557 g. +| 1 728 +| 14,2 +| [[Ventspiļs nūvods|Ventspiļs]] +|- +| 68. +| [[Fails:Seda gerb.png|30 px|center]] +| [[Seda]] +| '' Seda +| 1991 g. +| 1 621 +| 4,5 +| [[Streņču nūvods|Streņču]] +|- +| 69. +| [[Fails:Ainazi gerb.png|30 px|center]] +| [[Ainaži]] +| '' Ainaži +| 1926 g. +| 1 603 +| 5 +| [[Salacgreivys nūvods|Salacgreivys]] +|- +| 70. +| [[Fails:Vilaka gerb.png|30 px|center]] +| [[Vileks]] +| '' Viļaka +| 1945 g. +| 1 572 +| 6,3 +| [[Vileks nūvods|Vileks]] +|- +| 71. +| [[Fails:Sabile gerb.png|30 px|center]] +| [[Sabile]] +| '' Sabile +| 1917 g. +| 1 453 +| 4,3 +| [[Talsu nūvods|Talsu]] +|- +| 72. +| [[Fails:Strenci gerb.png|30 px|center]] +| [[Streņči]] +| '' Strenči +| 1928 g. +| 1 362 +| 5,7 +| [[Streņču nūvods|Streņču]] +|- +| 73. +| [[Fails:Ligatne gerb.png|30 px|center]] +| [[Leigatna]] +| '' Līgatne +| 1993 g. +| 1 201 +| 7,4 +| [[Leigatnys nūvods|Leigatnys]] +|- +| 74. +| [[Fails:Subate gerb.png|30 px|center]] +| [[Subata]] +| '' Subate +| 1917 g. +| 1 157 +| 5 +| [[Īlyukstis nūvods|Īlyukstis]] +|- +| 75. +| [[Fails:Pavilosta gerb.png|30 px|center]] +| [[Pavilūsta]] +| '' Pāvilosta +| 1991 g. +| 1 133 +| 6,4 +| [[Pavilūstys nūvods|Pavilūstys]] +|- +| 76. +| [[Fails:Durbe gerb.png|30 px|center]] +| [[Durbe]] +| ''Durbe'' +| 1893 g. +| 1 037 +| 1,6 +| [[Durbis nūvods|Durbis]] +|} + +[[Kategoreja:Latvejis mīsti| ]] +[[Kategoreja:Saroksti]] + g4yaqf6nqwpon7w18f8milmlt79oyc5 + + + + Latvīšu muzykaliskuo bīdreiba + 0 + 237 + + 14282 + 11556 + 2011-05-19T05:58:47Z + + Roalds + 50 + + piec r roksta y + wikitext + text/x-wiki + '''Latvīšu muzykaliskuo bīdreiba''' — poša zeimeiguo Pīterburga latgaļu organizaceja, XX gs. suokuos vadynuojuse latgaļu tautyskū i kulturyskū atdzimšonu. + +Bīdreiba dareja nu 1902 novembra mien. da 1913 g. oktobra mieneša: +* '''''20 godusymta suokuos''''' Sanktpeterburgā dzeivuoja ap 10 tyukstūšom latgaļu, pa lelumam darbinīki, studenti, škoļnīki. Golvonī jū laseišonuos centri beja sv. Katrinys i sv. Stanislava bazneicys i školys pi jūs. Nu vuiceituokūs latgaļu atsaroda aktivisti, kuri saprota vajadzeibu vadynuot latgaliskuos kulturys [[Raisteiba|raisteibu]], partū cēlēs vajadzeiba organizēt bīdreibu. +* '''''1902 gods novembrī''''' bazneicnīka [[Nikodems Rancāns|Nikodema Rancāna]] dzeivūklī nūtyka bīdreibys īstateišonys saīsme. Jamā pīsadaleja Dvēseliskuo seminara docents Fraņcs Trasuns, studenti Fraņcs Kemps, Jezups Kangars, Fraņcs Logins i bazneicnīks Kazimers Skrynda. Jī apstyprynuoja F. Trasuna sagatavātūs statutus i dasarunuoja, ka jaunajai bīdreibai dūs vuordu ''Latvīšu muzykaliskuo bīdreiba'', kam Krīvejis davēris īstoti nadūtu atļuovis bīdreibai, kurys statutūs byutu paradzāti nacionali voi ļaudyski [[Snāgs|snāgi]]. +* '''''1903 godā''''' beja apstyprynuoti bīdreibys statuti. +* '''''1903 g. marta 8 dīnā''''' Pīterburga Jezus bazneicys školys zalā nūtyka pyrmuo bīdrusaīsme. Saguoja daudzi ļaužu, nu bīdranaudu lūbēs pīlaseit lelu sumu. +* '''''1904 godā''''' īstateja kūkļuotuoju orkestri i simfoniskū orkestri. + +Bīdreiba turēja biblioteku, kuramā beja gruomotys i laikroksti latgaļu, latvīšu, krīvu, puoļu i vuocīšu volūduos. + +Muzykaliskuos bīdreibys sariedīņūs pyrmū reizi Pīterburgā latgaļu volūda skanēja nu scenys, i poša bīdreiba beja tautyskuo aktivuma centrys. Laseidamīs iz daņču vokoru, jauneiba paslapyn turēja saīsmis, kuramuos sprīde ap latgaliskūs aktivitetu planim, latgaliskūs gruomotu laisšonu, latgaļu studentu atspaiduošonu i leidz.<br /><br /> + i2yzlmouzflvskbfeslgozr19kbamk1 + + + + Leidzīņs + 0 + 238 + + 31723 + 31722 + 2016-11-05T12:07:13Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + '''Leidzīņs''' ({{Vol-en|level}}, {{Vol-lv|līmenis}}, krīvu: ''уровень'') — mārs, kurs paruoda objekta ci pasaruodīņa pacālumu i kurs radzams voi īvaigojams kai tuo poša augstuma ci iņteņsivuma izaplatejums guliniskā (horizontalā) ploskonumā. + +{{nadabeigts rakstīņs}} + mdm9k1ymhlkkfcag1345iaarlo27512 + + + + Leiksnys Vysusvātuokuos Jezus Sirds Romys katuoļu bazneica + 0 + 239 + + + 3946 + 3945 + 2011-03-19T13:06:49Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Leiksnys katuoļu bazneica]] + i0lq05d2k2rxkfvlmr4jwr84ppj3hot + + + + Leiksnys katuoļu bazneica + 0 + 240 + + 29841 + 19772 + 2013-04-15T03:49:11Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Coord|55|59|55|N|26|23|48|E|display=title|type:landmark}} +[[Fails:Līksna church.jpg|thumb|right|Bazneicys prīškys fasads 2000 godā]] +'''Leiksnys Vysusvātuokuos Jezus Sirds Romys katuoļu bazneica''' irā katuoļu dīvanoms [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Leiksnys pogosts|Leiksnys pogostā]]. Atsarūn Vaikulīšu solā pi [[Daugpiļs]] — [[Reiga|Reigys]] autoceļa, 1 km nu pogosta centra [[Leiksna|Leiksnys]]. + +== Viesture == +[[Fails:Līksna castle ruins and chapel.jpg|thumb|left|Leiksnys kapleica (pa lobai) N. Ordys tepiejumā (XIX gs. 70 godi)]] +Leiksna jau nu XVIII gs. bejuse zeimeigs katuoļu centrys. 1749—1789 godūs ite dorbuojuos [[jezuiti]]. Pyrmuo Leiksnys bazneica stateita 1748 godā pi Līdinghauzenu-Volfu muižys, bet 1789 godā Juzefs Zibergs jū puortaiseja par kapleicu. XIX gs. 70 godu [[Napoleons Orda|Napoleona Ordys]] Leiksnys tepiejumā redzīs, ka jis bejs nalels, kompakts statīņs ar oltorgolā nūšļauptu divsleipu jumtu i barokalu jumta tūrneiti augš īejis fasada trejstyuru zelmiņa. + +Kod Leiksna daguoja Zibergu, piečuok — grafu Plateru-Zibergu sovumā, suocēs jaunys lelys bazneicys stateiba, kū dabeidze 1798 i pasvieteja 1801 godā. Kuormu pa daļai nūjauce piec 1913 goda, a materiali tyka izlītuoti [[Plebaneja|plebanejis]] stateibai. Niulejuo bazneica stateita 1909—1913 godūs piec bazneickunga, piečuok arciveiskupa Ontona Springoviča iniciativys. Bazneica cīte [[Pyrmais pasauļa kars|Pyrmuo pasauļa kara]] laikā, bet pūstejumi tyka likvidēti XX gs. 20 godūs. + +Nu vacuos bazneicys irā sasaglobuojuši XVIII gs. [[biktssūls]] i 1793 goda klasicizma stiļā darynuota [[Monstrance|monstrace]]. + +== Arhitektura == + +Leiksnys bazneica irā apmāreigs latiņu krysta formys plana [[Neogotikys arhitekytura|neogotikys stiļa]] statīņs ar trim garonyskim jūmim, škārsjūmu, poligonalu apsidu i divtūrņu fasadu. Divtūrņu fasads rysynuots izvārstuos proporcejuos: neogotiskū zelmini īramej slaiki, ažuriski tūrņi ar telts formys smaili, a centraluo īeja teik izceļta ar portalu i [[Rūžys lūgs|rūžys lūgu]]. Jūmu krystpunkts teik īzeimuots ar dekorativu tūrneiti jumta kūrē. Uorsīnu vertikalū dalejumu akcentej [[kontraforsi]]. Bazneicys apskaiste i ītaise veidoj vīnuotu ansambli. + +Leiksnys bazneica irā zeimeigs historizma laika Latgolys bazneicu arhitekturys pīminieklis i vīns nu izcyluokajim neogotikys pīminieklim Latvejā. + +== Varganis == + +Bazneicys [[varganis]] darynuotys 1931 godā Vaclava Bernacka Varšovys-Viļnis vargaņu fabrykā. Koņcertinstrumentam irā 27 registri i divi manuali. Jis ir vīns nu leluokajim puoļu vargaņmeistru budavuotim instrumentim Latvejā. + +== Literatura == +* ''Kaminska R., Bistere A.'' Sakrālās arhitektūras un mākslas mantojums Daugavpils rajonā. — Rīga: Neputns, 2006 — 296 lpp. — ISBN 9984-729-90-7 + +== Nūruodis == +* [http://www.mantojums.lv/?cat=589&lang=lv&fulltext_id=5845 Leiksnys katuoļu bazneica] Vaļsteibys kulturys pīminiekļu sardzeibys inspekcejis teiklavītā + +{{DEFAULTSORT:Leiksnys Vysusvatuokuos Jezus Sirds Romys katuolzu bazneica}} + +[[Kategoreja:Latgolys katuoļu bazneicys]] +[[Kategoreja:Daugpiļs nūvods]] +[[Kategoreja:Neogotikys arhitektura]] + 7sdc57r9xcllxypl292qsiho27bc4s6 + + + + Leivuons + 0 + 241 + + 31477 + 28229 + 2016-07-16T00:33:15Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Leivuons +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| gerba_atvaigs = Livani gerb.png +| gerba_pasauka = Leivuona gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| latd = 56 | latm = 22 | lats = | latNS = N +| longd = 26 | longm = 11 | longs = | longEW = E +| nūvods = Leivuona nūvods +| pluots = 4,7 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 8 208 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 1 746 +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1926 +| posta_iņdeksi = LV-5316 +| teiklavīta = www.livani.lv +}} + +'''Leivuons''' – mīsts vokoru Latgolā, Daugovys lobajā molā pi Dubnys upis greivys. + +Caur mīstu īt ceļš Reiga - Daugpiļs - Pāternīki (A6) i Leivuons - Preili (P63). Taipoš Leivuona mīstu škārsoj dzeļžaceļš Reiga - Indreica. + + +Mīstā irā Latgolys Muokslys i amateibys centrys. + + +=== Cytys pasaukys === +Oficialuo pasauka [[Latvīšu volūda|baļtīšu volūdā]] – ''Līvāni''. + +Pasauka cytuos volūduos: +* {{Vol-ltg|Leivuons}} +* {{Vol-lt|Lyvanai}} +* {{Vol-ru|Ливаны}} + +Viesturiskuos i sūpluokuos pasaukys: +* {{Vol-de|Lievenhof}} +* {{Vol-ru|Ливенгоф}} + +{{nadabeigts rakstīņs}} + +{{Leivuona nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Leivuons| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + 1zmu9jje3cdcmfss8i3ab7stxfeg2i7 + + + + Lelais Līpkolns + 0 + 242 + + 31409 + 28230 + 2016-04-23T05:53:21Z + + VillaK + 3354 + + wikitext + text/x-wiki + {{Infoskreine kolns + | Pasauka = Lelais Līpkolns + | Atvaigs = Lielais Liepukalns.JPG + | Atvaiga māri = 250px + | Aprakstejums = + | Zemislopa = Latveja + | aprakstejuma_izlykums = left +| latd=56 |latm=16 |lats=16 |latNS=N +| longd=27 |longm=39 |longs=17 |longEW=E + | Augstums = 289,8 + | Byusmis vīta = [[Rēznis nūvods]], [[Latveja]] + | Augstaine = [[Latgolys augstaine]] + | Cytys pasaukys = Līpkolns, Līpukolns +}} + +'''Lelais Līpkolns''' (''Līpkolns, Līpukolns'') — [[kaupris]] [[Latgolys augstaine|Latgolys augstainē]], Rēznis nūvoda Kaunatys pogostā, Rāznys Nacionaluo parka teritorejā. Latgolys regiona poša augstuo viersyune. Vyscaureigais augstums – 289,8 m augšuok jiuru leidzīņa. Samiereigais augstums (augšuok apleicīnis) – 86 m. + +[[Kategoreja:Latgolys kaupri]] + 0lptde0pszspoomvmlpnl4n5p0omstc + + + + Lelbrytaneja + 0 + 243 + + 32105 + 31921 + 2017-07-10T03:06:31Z + + DARIO SEVERI + 3389 + + Update information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''United Kingdom of Great Britain and Northern Ireland'''<br />'''Lelbrytaneja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of the United Kingdom.svg|150px|border]] +| align="center" width="140px" | [[Fails:Royal Coat of Arms of the United Kingdom.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-United Kingdom.svg|300px]] +|- +|| Golvysmīsts || Londona +|- +|| Vaļsteibys volūda || Anglīšu volūda +|- +| Kienenīne|| Elizabete II +|- +| Ministru prezidents || Terēza Meja +|- +|| Pluots || 244 820 km² +|- +|| Dzeivuotuoju skaits || 65 648 000 <small>(2016)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Lelbrytaneja''' ({{Vol-en|United Kingdom of Great Britain and Northern Ireland}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 5p4fzcr3xdj9y2r1gr0aw8zbgz4zzej + + + + Lelolys i leldūbis Latgolā + 0 + 244 + + 11562 + 10567 + 2011-03-24T21:13:28Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + ==Lelolys i leldūbis pa nūvodim i pogostim== +=== '''Dagdys nūvodā''' === +'''''Dagdā''''' +* [[wp/bat-ltg/Dagdys ola|Dagdys ola]] + +=== '''Rēznis nūvodā''' === +'''''Nautrānu pogostā''''' +* [[wp/bat-ltg/Opinku Valna ola|Opinku Valna ola]] +* [[wp/bat-ltg/Valna pādi|Valna pādi]] + +== Lelolys i leldūbis pa pasaukai == +=== D === +* [[wp/bat-ltg/Dagdys ola|Dagdys ola]] + +=== O === +* [[wp/bat-ltg/Opinku Valna ola|Opinku Valna ola]] + +=== V === +* [[wp/bat-ltg/Valna pādi|Valna pādi]] + +[[Kategoreja:Latgolys lelkūki]] +[[Kategoreja:Latgolys doba]] + i12r4evumswrw8dfvexvuyyu514rdop + + + + Leopards + 0 + 248 + + 30660 + 29045 + 2015-03-24T14:32:27Z + + Cekli829 + 277 + + wikitext + text/x-wiki + [[Fails:Leopard on a horizontal tree trunk.jpg|thumb|250px|]] +[[Fails:Leopard distribution2.gif|thumb|250px|Leoparda paplateiba pasaulī]] +'''Leopards''' ({{Vol-la|Panthera pardus}} (Linnaeus, 1758), {{Vol-en|leopard}}, {{Vol-ru|леопард}}, {{Vol-lv|leopards}}) irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. Leopards dzeivoj Afrikā i Azejas dinavidos<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Panthera_pardus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 125—165 cm<ref name=CAP>Nowell, K., Jackson, P. (1996) Wild Cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group, Gland, Switzerland. [http://books.google.de/books?hl=en&lr=&id=OxfxlpfXNtcC&oi=fnd&pg=PR7&dq=Nowell,+K.&ots=MzwIGr80lH&sig=koz456MGg5t6mnFoXZca1SJPvyk#v=onepage&q=Nowell%2C%20K.&f=false book preview]</ref>; + +Astes garums: 60—110 cm<ref name=CAP/>; +Placu augstums: 45—80 cm<ref name=CAP/>; + +Svors: 28—90 kg<ref name=CAP/>; + +== Daudzatmejeiba == +Ira 10 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id2022/ BioLib] Profil taxonu — druh '''levhart skvrnitý ''Panthera pardus''''' (Linnaeus, 1758)</ref>: +* ''[[Panthera pardus delacouri]]'' Pocock, 1930 +* ''[[Panthera pardus fusca]]'' Meyer, 1794 +* ''[[Panthera pardus japonensis]]'' Gray, 1862 +* ''[[Panthera pardus kotiya]]'' Deraniyagala, 1956 +* ''[[Panthera pardus melas]]'' Cuvier, 1809 +* ''[[Panthera pardus nimr]]'' Hemprich & Ehrenberg, 1833 +* ''[[Panthera pardus orientalis]]'' Schlegel, 1857 +* ''[[Panthera pardus pardus]]'' (Linnaeus, 1758) +* ''[[Panthera pardus saxicolor]]'' Pocock, 1927 +* †''[[Panthera pardus sickenbergi]]'' Schütt, 1969 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Panthera pardus}} + +{{DEFAULTSORT:Panthera pardus}} +[[Kategoreja:Dzeivinīki]] + 5zbgdoep4c92x3c9fl4i6y3ds3yv1vi + + + + Leopardus colocolo + 0 + 249 + + 31822 + 31809 + 2016-12-09T09:36:48Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31809 dated 2016-12-09 09:02:22 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + [[Fails:Lydekker - Colocolo.JPG|thumb|250px|]] +[[Fails:Leopardus colocolo range map.png|thumb|250px|''Leopardus colocolo'' paplateiba pasaulī]] +'''Leopardus colocolo''' (Molina, 1782) ({{Vol-en|colocolo}}, {{Vol-ru|колоколо, или пампасская кошка}}, {{Vol-lv|pampas kaķis}}) ira naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus colocolo'' dzeivoj Dynavid Amerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leopardus_colocolo.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 56—67 cm<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 201–204. ISBN 0-226-77999-8.</ref>;</br> +Astes garums: 29—32 cm<ref name="ADV"/>;</br> +Placu augstums: 30—35 cm<ref name=WCoW/>;</br> +Svors: 3—7 kg<ref name="ADV"/>.</br> + +== Daudzatmejeiba == +Ira zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1979/ BioLib] Profil taxonu — druh '''kočka pampová ''Leopardus colocolo''''' (Molina, 1782)</ref>: +* ''[[Leopardus colocolo braccata]]'' Cope, 1889 +* ''[[Leopardus colocolo budini]]'' Pocock, 1941 +* ''[[Leopardus colocolo colocolo]]'' Molina, 1782 +* ''[[Leopardus colocolo garleppi]]'' Matschie, 1912 +* ''[[Leopardus colocolo munoai]]'' Ximenez, 1961 +* ''[[Leopardus colocolo pajeros]]'' Desmarest, 1816 +* ''[[Leopardus colocolo thomasi]]'' Lönnberg, 1913 +* ''[[Leopardus colocolo wolffsohni]]'' García-Perea, 1994 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leopardus colocolo}} + +{{DEFAULTSORT:Leopardus colocolo}} + +[[Kategoreja:Dzeivinīki]] + 0jp1h5bde3lxomvh3b8l5uzchq3s7kg + + + + Leopardus geoffroyi + 0 + 250 + + 29016 + 28234 + 2013-03-09T05:01:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q42682]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Salzkatze.jpg|thumb|250px|]] +[[Fails:Leopardus geoffroyi range map.png|thumb|250px|''Leopardus geoffroyi'' paplateiba pasaulī]] +'''Leopardus geoffroyi''' (d'Orbigny & Gervais, 1844) ({{Vol-en|Geoffroy's cat}}, {{Vol-ru|дикий кот Жоффруа}}, {{Vol-lv|Žofruā kaķis}}) irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus geoffroyi'' dzeivoj Dynavid Amerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leopardus_geoffroyi.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 42—66 cm<ref name="ADV"/>;</br> +Astes garums: 24—36 cm<ref name="ADV"/>;</br> +Svors: 3—5 kg<ref name="ADV"/>.</br> + +== Daudzatmejeiba == +Ira 5 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1980/ BioLib] Profil taxonu — druh '''kočka slaništní ''Leopardus geoffroyi''''' (d'Orbigny & Gervais, 1844)</ref>: +* ''[[Leopardus geoffroyi euxanthus]]'' Pocock, 1940 +* ''[[Leopardus geoffroyi geoffroyi]]'' Pocock, 1940 +* ''[[Leopardus geoffroyi leucobaptus]]'' Pocock, 1940 +* ''[[Leopardus geoffroyi paraguae]]'' Pocock, 1940 +* ''[[Leopardus geoffroyi salinarum]]'' Thomas, 1903 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|}} + +{{DEFAULTSORT:}} + +[[Kategoreja:Dzeivinīki]] + 9fahbyr7j3gr3fg1jxslckvef0oye98 + + + + Leopardus guigna + 0 + 251 + + 28959 + 28235 + 2013-03-08T15:41:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q211042]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Guigna Jim Sanderson.jpg|thumb|250px|]] +[[Fails:Oncifelis guigna dis.png|thumb|250px|''Leopardus guigna'' paplateiba pasaulī]] +'''Leopardus guigna''' (Molina, 1782) ({{Vol-en|kodkod}}; {{Vol-ru|кодкод}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus guigna'' dzeivoj Dynavid Amerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leopardus_guigna.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 37—52 cm<ref name="ADV"/>;</br> +Astes garums: 20—25 cm<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). Wild cats of the World. Chicago: University of Chicago Press. pp. 211–214. ISBN 0-226-77999-8</ref>;</br> +Placu augstums: 25 cm<ref name=WCoW/>;</br> +Svors: 2—2.5 kg<ref name=iucn_cat>IUCN/SSC Cat Specialist Group (1996). [http://lynx.uio.no/lynx/catsgportal/cat-website/20_cat-website/home/index_en.htm "Kodkod Oncifelis guigna (Molina, 1782)"]. Retrieved 2007-10-26.</ref>.</br> + +== Daudzatmejeiba == +Ira zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1981/ BioLib] Profil taxonu — druh '''kočka tmavá ''Leopardus guigna''''' (Molina, 1782)</ref>: +* ''[[Leopardus guigna guigna]]'' Molina, 1782 +* ''[[Leopardus guigna tigrillo]]'' Schinz, 1844 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leopardus guigna}} + +{{DEFAULTSORT:Leopardus guigna}} + +[[Kategoreja:Dzeivinīki]] + 6c5m7s8l5bdvt1m2vhr4ix5d58nvnq2 + + + + Leopardus jacobitus + 0 + 252 + + 29012 + 28236 + 2013-03-09T03:08:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q213047]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Gato andino.jpg|thumb|250px|]] +[[Fails:Leopardus jacobita distribution.svg|thumb|250px|''Leopardus jacobita'' paplateiba pasaulī]] +'''Leopardus jacobita''' (Cornalia, 1865) ({{Vol-en|Andean Mountain cat}}; {{Vol-ru|андская кошка}}; {{Vol-lv|Andu kaķis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus jacobita'' dzeivoj Dynavid Amerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leopardus_jacobitus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 57—64 cm;</br> +Astes garums: 41—48 cm;</br> +Placu augstums: 36 cm;</br> +Svors: 4—5.5 kg<ref name="ADV"/>.</br> + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leopardus jacobita}} + +{{DEFAULTSORT:Leopardus jacobita}} + +[[Kategoreja:Dzeivinīki]] + 5aonfo2uf6xdktx7rjfz3abk7naotj0 + + + + Leopardus pajeros + 0 + 253 + + 29106 + 28237 + 2013-03-11T10:40:29Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q311417]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Catpampaspajeros.gif|thumb|250px|]] +'''Leopardus pajeros''', Desmarest, 1816 ({{Vol-en|Pampas cat}}; {{Vol-ru|пампасская кошка}}) — irā mozeņš [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus pajeros'' dzeivoj Ekvodorā, Bolivejā, Čilē i Argentinā<ref name=msw3>Wozencraft, W. C. Mammal Species of the World / Wilson, D. E., and Reeder, D. M. (eds). — 3rd edition. — Johns Hopkins University Press, 16 November 2005. — P. 538-539. — ISBN 0-8018-8221-4</ref>. + +== Daudzatmejeiba == +Ira 5 zamškiru<ref name=msw3/>: +* ''[[Leopardus pajeros pajeros]]'' +* ''[[Leopardus pajeros budini]]'' +* ''[[Leopardus pajeros garieppi]]'' +* ''[[Leopardus pajeros steinbachi]]'' +* ''[[Leopardus pajeros thomasi]]'' + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leopardus pajeros}} + +{{DEFAULTSORT:Leopardus pajeros}} + +[[Kategoreja:Dzeivinīki]] + n9vk61bu60jkdouq76is1vrmyqts6ji + + + + Leopardus pardalis + 0 + 254 + + 28960 + 28238 + 2013-03-08T15:41:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q33261]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Ocelot 01.jpg|thumb|250px|]] +[[Fails:Ocelot range.png|thumb|250px|''Leopardus pardalis'' paplateiba pasaulī]] +'''Leopardus pardalis''' (Linnaeus, 1758) ({{Vol-en|ocelot}}; {{Vol-ru|оцелот}}; {{Vol-lv|ocelots}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus pardalis'' dzeivoj Central i [[Dīnavydu Amerika|Dīnavydu Amerikā]].<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leopardus_pardalis.html University of Michigan Museum of Zoology]</ref> + +== Izavierīņs == +Auguma garums: 68—100 cm<ref name=WCoW/>;</br> +Astes garums: 26—45 cm<ref name=WCoW/>;</br> +Svors: 8—10 kg<ref name="Animal">Burnie, David; Don E. Wilson (2001). ''Animal: The Definitive Visual Guide to the World's Wildlife.'' New York City: Dorling Kindersley. ISBN 0-7894-7764-5.</ref><ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 120–129. ISBN 0-226-77999-8.</ref>.</br> + +== Daudzatmejeiba == +Ira 10 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1963/ BioLib] Profil taxonu — druh '''ocelot velký ''Leopardus pardalis''''' (Linnaeus, 1758)</ref>: +* ''[[Leopardus pardalis aequatorialis]]'' Mearns, 1903 +* ''[[Leopardus pardalis albescens]]'' Pucheran, 1855 +* ''[[Leopardus pardalis melanurus]]'' Ball, 1844 +* ''[[Leopardus pardalis mitis]]'' F. G. Cuvier, 1820 +* ''[[Leopardus pardalis nelsoni]]'' Goldman, 1925 +* ''[[Leopardus pardalis pardalis]]'' (Linnaeus, 1758) +* ''[[Leopardus pardalis pseudopardalis]]'' Boitard, 1842 +* ''[[Leopardus pardalis pusaeus]]'' Thomas, 1914 +* ''[[Leopardus pardalis sonoriensis]]'' Goldman, 1925 +* ''[[Leopardus pardalis steinbachi]]'' Pocock, 1941 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leopardus pardalis}} + +{{DEFAULTSORT:Leopardus pardalis}} + +[[Kategoreja:Dzeivinīki]] + h7ri627nideh1mtfsdmag1d1khjnuu6 + + + + Leopardus tigrinus + 0 + 255 + + 28961 + 28239 + 2013-03-08T15:41:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q205948]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Tika2009Jan24.jpg|thumb|250px|]] +[[Fails:Leopardus tigrinus map.svg|thumb|250px|''Leopardus tigrinus'' paplateiba pasaulī]] +'''Leopardus tigrinus''' (Schreber, 1775) ({{Vol-en|oncilla}}; {{Vol-ru|онцилла}}; {{Vol-lv|tīģerkaķis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus tigrinus'' dzeivoj Dynavid Amerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leopardus_tigrinus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 38—64 cm<ref name="ADV"/><ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 130–134. ISBN 0-226-77999-8.</ref>;</br> +Astes garums: 20—42 cm<ref name=WCoW/>;</br> +Svors: 1.5—3 kg<ref name="ADV"/>.</br> + +== Daudzatmejeiba == +Ira 4 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1964/ BioLib] Profil taxonu — druh '''ocelot stromový ''Leopardus tigrinus''''' (Schreber, 1775)</ref>: +* ''[[Leopardus tigrinus guttulus]]'' Hensel, 1872 +* ''[[Leopardus tigrinus oncilla]]'' Thomas, 1903 +* ''[[Leopardus tigrinus pardinoides]]'' Gray, 1867 +* ''[[Leopardus tigrinus tigrinus]]'' Schreber, 1775 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leopardus tigrinus}} + +{{DEFAULTSORT:Leopardus tigrinus}} + +[[Kategoreja:Dzeivinīki]] + qnx2ng50x3284s39mh1l5hdngvolip3 + + + + Leopardus wiedii + 0 + 256 + + 28962 + 28240 + 2013-03-08T15:42:00Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q192421]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Margay (Leopardus wiedii).jpg|thumb|250px|]] +[[Fails:Leefgebied margay.JPG|thumb|250px|''Leopardus wiedii'' paplateiba pasaulī]] +'''Leopardus wiedii''' (Schinz, 1821) ({{Vol-en|margay}}; {{Vol-ru|марги}}; {{Vol-lv|plankumainais kaķis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leopardus wiedii'' dzeivoj Dynavid Amerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leopardus_wiedii.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 48—79 cm<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). Wild cats of the World. Chicago: University of Chicago Press. pp. 135–141. ISBN 0-226-77999-8.</ref>;</br> +Astes garums: 33—51 cm<ref name=WCoW/>;</br> +Svors: 2.6—3.9 kg<ref name="ADV"/>.</br> + +== Daudzatmejeiba == +Ira 11 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1965/ BioLib] Profil taxonu — druh '''ocelot dlouhoocasý ''Leopardus wiedii''''' (Schinz, 1821)</ref>: +* ''[[Leopardus wiedii amazonicus]]'' Cabrera, 1917 +* ''[[Leopardus wiedii boliviae]]'' Pocock, 1941 +* ''[[Leopardus wiedii cooperi]]'' Goldman, 1943 +* ''[[Leopardus wiedii glauculus]]'' Thomas, 1903 +* ''[[Leopardus wiedii nicaraguae]]'' J. A. Allen, 1919 +* ''[[Leopardus wiedii oaxacensis]]'' Nelson and Goldman, 1931 +* ''[[Leopardus wiedii pirrensis]]'' Goldman, 1914 +* ''[[Leopardus wiedii salvinius]]'' Pocock, 1941 +* ''[[Leopardus wiedii vigens]]'' Thomas, 1904 +* ''[[Leopardus wiedii wiedii]]'' (Schinz, 1821) +* ''[[Leopardus wiedii yucatanicus]]'' Nelson and Goldman, 1931 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leopardus wiedii}} + +{{DEFAULTSORT:Leopardus wiedii}} + +[[Kategoreja:Dzeivinīki]] + qnbmxvd38e6rfgb60otbgai8wzosrg3 + + + + Leopolds Brokāns + 0 + 257 + + 31823 + 31808 + 2016-12-09T09:36:51Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31808 dated 2016-12-09 09:02:15 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Leopolds Brokāns''' — Ludzys nūvoda omotnīks, kūkgraizinīks. + +Darynoj lizeikys, luopsteņas, galis gaļdineišus, buļbu stampenis, vāzys, sūleņus, molkys skalinis. + +{{DEFAULTSORT:Brokāns Leopolds}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + atdxwefc2au233ck9ccnifllxg5tjm4 + + + + Leptailurus serval + 0 + 258 + + 28963 + 28241 + 2013-03-08T15:42:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q42699]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Serval in Tanzania.jpg|thumb|250px|]] +[[Fails:Serval range.png|thumb|250px|''Leptailurus serval'' paplateiba pasaulī]] +'''Servals''' aba '''Leptailurus serval''' (Schreber, 1776) ({{Vol-en|serval}}; {{Vol-ru|сервал}}; {{Vol-lv|servals}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Leptailurus serval'' dzeivoj Afrikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Leptailurus_serval.html University of Michigan Museum of Zoology]</ref>. +[[DNS]] analize paruoda, ka servalim irā jū sovpateiga seņču linija, kas pasaradusi nu tim pošim [[Kaču saime|Felid]] dzeivnīkim, nu kuo ari [[Ļovs]], i koč servalam daudz kūpeiga ar [[Gepards|gepardu]], dreižuok gepards irā jaunuoka senejūs servalu modifikaceja.<ref>{{cite journal | author = Johnson et al. | year = 2006 | title = The Late Miocene Radiation of Modern Felidae: A Genetic Assessment | journal = Science | volume = 311| pages = 73–77}}</ref> + +== Izavierīņs == +Auguma garums: 59—92 cm<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 142–151. ISBN 0-226-77999-8.</ref>;</br> +Astes garums: 20—38 cm<ref name=WCoW/>;</br> +Placu augstums: 54—66 cm<ref name=WCoW/>;</br> +Svors: 7—18 kg<ref name="ADV"/>.</br> + +Tys irā stiprys bet smuidrys dzeivnīks ar garom kuojom i relativi eisu asti. Golva jam maza pret augumu, i garuos, apalejous ausis irā cīši kūpā. Kažūka musturs ir maineigs. Parosti servals irā ar spilgtim malnim plankumim, ar 2 voi 4 streipem nu golvys da kokla, a tuoļuok streipys puorīt plankumūs. +Servalim ir vysu garuokuos kuojis nu vysim kaču saimis dzeivnīkim, proporcionali pret auguma garumu. Leluokuo dale nu ituo garuma nūtikusi pasateicūt pasagarinuojušim (metatarsalim) kaulim juo pāduos. Ari kuoju pirksti irā pagarinuoti i naparasti kusteigi, paleidzūt jam nūgiut pa dalei nūsaglobuojušu medijumu. Cita servala eipateiba irā - lelys ausis i dzirdes dūbumi čerepa škeletā, kas ļaun eistyn lobi dzierdēt. + +== Daudzatmejeiba == +Irā 19 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1967/ BioLib] Profil taxonu — druh '''serval stepní ''Leptailurus serval''''' (Schreber, 1776)</ref>: +* ''[[Leptailurus serval beirae]]'' (Wroughton, 1910) +* ''[[Leptailurus serval brachyurus]]'' (Wagner, 1841) +* ''[[Leptailurus serval constantinus]]'' (Forster, 1780) † +* ''[[Leptailurus serval faradjius]]'' J. A. Allen, 1924 +* ''[[Leptailurus serval ferrarii]]'' (de Beaux, 1924) +* ''[[Leptailurus serval hamiltoni]]'' Roberts, 1931 +* ''[[Leptailurus serval hindei]]'' (Wroughton, 1910) +* ''[[Leptailurus serval kempi]]'' (Wroughton, 1910) +* ''[[Leptailurus serval kivuensis]]'' (Lönnberg, 1919) +* ''[[Leptailurus serval lipostictus]]'' (Pocock, 1907) +* ''[[Leptailurus serval lonnbergi]]'' (Cabrera, 1910) +* ''[[Leptailurus serval mababiensis]]'' Roberts, 1932 +* ''[[Leptailurus serval pantastictus]]'' (Pocock, 1907) +* ''[[Leptailurus serval phillipsi]]'' (G. M. Allen, 1914) +* ''[[Leptailurus serval pococki]]'' (Cabrera, 1910) +* ''[[Leptailurus serval robertsi]]'' Ellerman, Morrison-Scott & Hayman, 1953 +* ''[[Leptailurus serval serval]]'' (Schreber, 1776) +* ''[[Leptailurus serval tanae]]'' Pocock, 1944 +* ''[[Leptailurus serval togoensis]]'' (Matschie, 1893) + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Leptailurus serval}} + +{{DEFAULTSORT:Leptailurus serval}} + +[[Kategoreja:Dzeivinīki]] + mmt6djx4iq496nrnhf8dw0aqcjn0ovc + + + + Lideja Leikuma + 0 + 259 + + 30529 + 13422 + 2015-02-01T19:07:34Z + + Vogone + 1387 + + + wikitext + text/x-wiki + '''Lideja Leikuma''' (1954) — latgaļu volūdzinineica, kulturviesturneica, ļaudiska dareituoja. Dzymuse 1954 g. Kruoslovys rajona (niule - Kruoslovys nūv.) Izvolta pogosta Mozajūs Geņgerūs. Vuicejusēs Izvolta vydsškolā i Latvejis Vaļsteibys Universitetā (niule - Latvejis Universitets). Darejuse Daugpiļs Universitetā i Rēznis Augstškolā, Pīterpiļs Vaļsteibys Universitetā i cytur. Niule Latvejis Universiteta Humanitarū Zineibu fakulteta Baltu volūdzineibys katedrys asociatuo profesore, Dialektologejis i toponimikys kabineta vadeituoja. Dora Latgaļu rokstu volūdys ortografejis komisejā, Latgaļu volūdys, literaturys i kulturviesturis školuotuoju asociacejā, Reigys latgaļu bīdreibā "Trešuo zvaigzne". + +Nazcik gruomotu i latgaļu volūdys vuiceibu leidziekļu autore. Rakstīni ziniskūs lasejumūs i periodikā. + +==Nūruodis== + +* [http://www.genling.nw.ru/baltist/Publicat/LatgVol1.pdf Latgalīšu volūda] - Intensivuo vuiceibys kursa materiali (L.Leikumys kurss Pīterburgys universitetā, 2003.) +* [http://www.lu.lv/filol/dialekt/publikacijas/LgABC1.pdf Latgalīšu ābece (lementars)] ('''Viereibys''' - materials irā lels, skenēts PDF fails. Lobuok tū izglobuot kai failu nakai skaiteit puorsavieriejā.) +* [http://www.lu.lv/filol/dialekt/publikacijas.htm Cyti L.Leikumys i LU dialektologejis kabineta laidīni] + +{{DEFAULTSORT:Leikuma Lideja}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + igcrw7wb68kc1hdwsmx4sz6ee344yoy + + + + Liktenšteins + 0 + 260 + + 32106 + 30439 + 2017-07-10T03:08:04Z + + DARIO SEVERI + 3389 + + Update information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Fürstentum Liechtenstein'''<br />'''Liktenšteins'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Liechtenstein.svg|150px|border]] +| align="center" width="140px" | [[Fails:Staatswappen-Liechtensteins.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Liechtenstein Europe.png|300px]] +|- +|| Golvysmīsts || Vaduz +|- +|| Vaļsteibys volūda || [[vuocīšu volūda|vuocīšu]] +|- +| Monarhs || Hans Adam II +|- +| Ministru prezidents || Adrian Hasler +|- +|| Pluots || 160,4 km² +|- +|| Dzeivuotuoju skaits || 37 340 <small>(2014)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Liktenšteins''' (vuoc.: ''Fürstentum Liechtenstein'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 8qsiesuvxdpednunk0tcupa14aqibqz + + + + Lisine + 0 + 261 + + 29828 + 21594 + 2013-04-15T02:50:35Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis upe +| pasauka = +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| zemislopys_atvaigs = +| kulturviesturiskais_nūvods = Latgola +| iztaka = Liseņš +| viersupe = +| satakupis = +| ītaka = Meirānu kanals +| baseina_vaļsteibys = [[Latveja]] +| satecis_baseins = 166,4 +| tek_car = [[Latveja]] +| garums = +| garums_latvejā = 18 +| iztakys_augstums = 103,3 +| ītakys augstums = 92,1 +| nūkritīņs = 71 +| vydyskais_puorteciejums = 5,5 +| gods_puorteciejums = 0,2 +| zeimeiguokuos_datakys = Direite, Vabale +| leluokuos_upsolys = +| dzeivuojamys_vītys = +| cytys_pasaukys = ({{Vol-lv|Lisiņa}}) +}} + +'''Lisine''' ({{Vol-lv|Lisiņa}}) — upeite Modyunis nūvodā, iztak nu Liseņa azara Teiču pūrā. Upe 18 km gara, uplejis īleikums 1-2 m. Divdasmytajā godusymtā ar melioracejis dorbim iztaisnuota i padzylynuota, tān ītak Meirānu kanalā. Lisinis moluos atrūnamys [[aluvialiskuos nūsādys]]. Upmalis nūaugušys mežim, slapņom pļavom, daudzi peisu i pūru. Daļa Lisinis upmalis mežu īīt [[Nūlīgtiņs|dobys nūlīgtinī]] [[Borkovys ūzuluojs|„Borkovys ūzuluojs”]]. Nazkod upis ītaka beja [[Lubuons|Lubuons]], div atškiertūs puosmūs izaglobovuse Lisinis vacupe (Vaclisine), kas beidzas pi Iudenis kanala. + + +[[Kategoreja:Latgolys upis]] + 95xjpmpfdov168x3zmg87oe6m54kg4m + + + + Livonejis ordyna magistris + 0 + 262 + + 28243 + 24400 + 2013-03-07T18:30:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q836664]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Livonejis ordyna magistris''' — [[Livonejis ordyns|Livonejis ordyna]] viersinīks (1237 - 1563 g.), kuru vusycieškuok ībolsuoja iz vysa myuža i apstyprynuoja [[Teutonu ordyns|Teutonu ordyna]] lelmagistris. + +Livonejis ordyna magistris rezidēja [[Reiga|Reigā]] i [[Cāsi|Cāsūs]]. Juo vītinīks beja landmaršals, atsaceigs par Ordyna karadraudzi (XV gs. suokuos jimā karaveiru skaits dasnēdze 4000). Landmaršala rezideņceja beja Siguldā. + +Livonejis ordynam pīdarēja 60% Livonejis zemu (palykušuo daļa beja Reigys arciveiskupa i veiskupa sovums), juos beja padaleitys mozuokūs apgabaļūs, kurus vaļdeja komturi, a komtureju piļs vaļdeja fogti. Da XVI gs. Livonejā beja 30-40 komtureju i fogteju, XVI gs. vydā – jau 120-150. Div reizis par godu Cāsūs komturim i fogtim vajadzēja atsaskaiteit kapitulai, kuramā īguoja Livonejis ordyna magistris i seši vysusvareigūs piļu komturi. + +== Livonejis ordyna magistri (hronologiskais saroksts) == +{| class="wikitable" +<tr><td>Daguojumu&nbsp;īšonys&nbsp;laiks<td>Vuords, pavuorde (pasaukšona)<td>Vuords,&nbsp;pavuorde&nbsp;(pasaukšona)<br />originalā&nbsp;–&nbsp;[[Vuocīšu volūda|vuocīšu&nbsp;vol.]]<td>Darunys<td> +<tr><td>1237 V – 1239 III 05<td>[[Hermans fon Baļke]]<td>''Hermann von Balke''<td>&nbsp;– +<tr><td>1240 – 1241<td>[[Andreass fon Veļfens]]<td>''Andreas von Welven''<td>&nbsp;– +<tr><td>1242 – 1245<td>[[Ditrihs fon Groniņgens]]<td>''Dietrich von Groningen''<td>&nbsp;– +<tr><td>1245 – 1246<td>[[Heinrihs fon Heimburgs]]<td>''Heinrich von Heimburg''<td>&nbsp;– +<tr><td>1248 – 1253<td>[[Andreass fon Štirlands]]<td>''Andreas von Stirland''<td>&nbsp;– +<tr><td>1253 – 1256 VII<td>[[Ana fon Zaņgerhauzens]]<td>''Anno von Sangerhausen''<td>&nbsp;– +<tr><td>1256 – 1260 VII 13<td>[[Burhards fon Hornhuzens]]<td>''Burchard von Hornhusen''<td>Lyma [[Dūrbis kuove|Dūrbis kuovē]] +<tr><td>1261 – 1263<td>[[Verners]]<td>'Werner''<td>&nbsp;– +<tr><td>1263 – 1266<td>[[Konrads fon Maņderns]]<td>''Konrad von Mandern''<td>&nbsp;– +<tr><td>1266 – 1270 II 16<td>[[Oto fon Luterbergs]]<td>''Otto von Lutterberg''<td>Lyma pi kuovē pi Karūsys +<tr><td>1270 – 1273<td>[[Vaļters fon Nortekens]]<td>''Walter von Nortecken'', taipoš ''Walter von Nordeck''<td>&nbsp;– +<tr><td>1274 – 1279 III 05<td>[[Ernsts fon Rasburgs]]<td>''Ernst von Rassburg''<td>Lyma [[Kuove pi Aizkrauklis|kuovē pi Aizkrauklis]] +<tr><td>1279 – 1281<td>[[Konrads fon Feuhtvaņgens]]<td>''Konrad von Feuchtwangen''<td>Nu 1291 beja [[Vuocīšu ordyns|Vuocīšu ordyna]] lelmagistris +<tr><td>1281 – 1287 III 26<td>[[Vilekens fon Endorps]]<td>''Willeken von Endorp''<td>Lyma [[Grīzis kuove|Grīzis kuovē]] +<tr><td>1288 – 1290<td>[[Kuna fon Haciņgenšteins]]<td>''Kuno von Hazzingenstein''<td> – +<tr><td>1290 – 1291<td>[[Halts]]<td>''Halt''<td>&nbsp;– +<tr><td>1295 – 1296 X 28<td>[[Heinrihs fon Diņkelage]]<td>''Heinrich von Dinkelaghe''<td>&nbsp;– +<tr><td>1296 – 1298 VI 01<td>[[Bruna]]<td>''Bruno''<td>Lyma [[Kuove pi Treuderys upis|kuovē pi Treuderys upis]] +<tr><td>1298 – 1307<td>[[Gotfrids fon Roge]]<td>''Gotfried von Rogge''<td>&nbsp;– +<tr><td>1309 – 1322 VII 19<td>[[Gerhards fon Jorke]]<td>''Gerhard von Jorke'', taipoš ''Gerhard von York''<td>Atsasaceja nu daguojumu +<tr><td>1324 VII 06 – 1328&nbsp;V&nbsp;25<td>[[Reimars Hane]]<td>''Reimar Hane''<td>Atsasaceja nu daguojumu +<tr><td>1328 – 1340 VI 24<td>[[Eberhards fon Moņheims]]<td>''Eberhard von Monheim''<td>Atsasaceja nu daguojumu +<tr><td>1340 – 1345 XII 14<td>[[Burhards fon Dreilebens]]<td>''Burchard von Dreileben''<td>Atsasaceja nu daguojumu +<tr><td>1345 – 1359 IX 10<td>[[Gosvins fon Herike]]<td>''Goswin von Herike''<td>&nbsp;– +<tr><td>1360 II – 1364 VII 11<td>[[Arnolds fon Fitinghofs]]<td>''Arnold von Vietinghof''<td>&nbsp;– +<tr><td>1364 IX 29 – 1385<td>[[Viļhelms fon Frimersheims]]<td>''Wilhelm von Vrimersheim''<td>&nbsp;– +<tr><td>1385 – 1389 III<td>[[Robins fon Eļcs]]<td>''Robin von Eltz''<td>&nbsp;– +<tr><td>1389 – 1401 VII<td>[[Venemars fon Brugenejs]]<td>''Wennemar von Bruggenei''<td>&nbsp;– +<tr><td>1401 X 21 – 1413 II<td>[[Konrads fon Fitinghofs]]<td>''Konrad von Vietinghof''<td>&nbsp;– +<tr><td>1413 V 13 – 1415 VIII<td>[[Ditrihs Torks]]<td>''Dietrich Tork''<td>&nbsp;– +<tr><td>1415 IX – 1424 IV 03<td>[[Zigfrids Laņders fon Špaņheims]]<td>''Siegfried Lander von Spanheim''<td>&nbsp;– +<tr><td>1424 V – 1433 X<td>[[Eise fon Ruteņbergs]]<td>''Eisse von Rutenberg''<td>&nbsp;– +<tr><td>1433 – 1435 IX 01<td>[[Fraņke Kerskorfs]]<td>''Franke Kerskorff''<td>Lyma [[Kuove pi Sveņtis|kuovē pi Sveņtis]] +<tr><td>1435 – 1437 XII<td>[[Heinrihs fon Bokenvorde, saukts Šuņgeļs]]<td>''Heinrich von Bockenworde, genannt Schungel''<td>&nbsp;– +<tr><td>1438 – 1450 VII 29<td>[[Heinrihs Fiņke fon Oferbergs]]<td>''Heinrich Vinke von Overberg''<td>&nbsp;– +<tr><td>1450 IX – 1469 VIII 15<td>[[Johans fon Meņgede, saukts Osthofs]]<td> ''Johann von Mengede, genannt Osthof''<td>&nbsp;– +<tr><td>1470 III – 1471 IX<td>[[Johans Volthuss fon Herze]]<td>''Johann Wolthus von Herse''<td>Mirs 1472 g. Ventspiļs cītumā +<tr><td>1472 I – 1483 XI 18<td>[[Bernds fon der Borhs]]<td>''Bernd von der Borch''<td>Atsasaceja nu daguojumu +<tr><td>1483 – 1494 V 26<td>[[Johans Freitags fon Loringhofe]]<td>''Johann Freitag von Loringhofe''<td>&nbsp;– +<tr><td>1494 VII 07&nbsp;–&nbsp;1535&nbsp;II&nbsp;28<td>[[Voļters fon Pletenbergs]]<td>''Wolter von Plettenberg''<td>&nbsp;– +<tr><td>1535 – 1549 II 05<td>[[Hermans fon Brugenejs, saukts Hazenkamps]]<td>''Hermann von Bruggenei, genannt Hasenkamp''<td>&nbsp;– +<tr><td>1549 II – 1551 V 18<td>[[Johans fon der Reke]]<td>''Johann von der Recke''<td>&nbsp;– +<tr><td>1551 VII – 1557 V 30<td>[[Heinrihs fon Galens]]<td>''Heinrich von Galen''<td>&nbsp;– +<tr><td>1557 VI – 1559 IX<td>[[Viļhelms fon Firstenbergs]]<td>''Wilhelm von Fürstenberg''<td>Lyma navaļā pi [[Vilaņde|Vilaņdis]] +<tr><td>1559 IX – 1563 III 05<td>[[Gothards Ketlers]]<td>''Gotthard Kettler''<td>Mirs 1587 05 17 Jelgovā kai [[Kūrzemis i Zemgolys hercogi|Kūrzemis i Zemgolys hercogs]] +|} + +== Livonejis ordyna magistri (aļfabetiskais saroksts) == +{| class="wikitable" +<tr><td>Vuords, pavuorde (pasaukšona)<td>Vsauuords,&nbsp;pavuorde&nbsp;(pasaukšona)<br />originalā&nbsp;–&nbsp;[[Vuocīšu volūda|vuocīšu&nbsp;vol.]]<td>Daguojumu&nbsp;īšonys&nbsp;laiks<td>Darunys<td> +<tr><td>[[Hermans Baļke|fon Baļke Hermans]]<td>''Hermann von Balke''<td>1237 V – 1239 III 05<td>&nbsp;– +<tr><td>[[Heinrihs fon Bokenvorde, saukts Šuņgeļs|fon Bokenvorde Heinrihs, saukts Šuņgeļs]]<td>''Heinrich von Bockenworde, genannt Schungel''<td>1435 – 1437 XII<td>&nbsp;– +<tr><td>[[Bernds fon der Borhs|fon der Borhs Bernds]]<td>''Bernd von der Borch''<td>1472 I – 1483 XI 18<td>Atsasaceja nu daguojumu +<tr><td>[[Hermans fon Brugenejs, saukts Hazenkamps|fon Brugenejs Hermans, saukts Hazenkamps]]<td>''Hermann von Bruggenei, genannt Hasenkamp''<td>1535 – 1549 II 05<td>&nbsp;– +<tr><td>[[Venemars fon Brugenejs|fon Brugenejs Venemars]]<td>''Wennemar von Bruggenei''<td>1389 – 1401 VII<td>&nbsp;– +<tr><td>[[Bruna]]<td>''Bruno''<td>1296 – 1298 VI 01<td>Lyma [[Kuove pi Treuderys upis|kuovē pi Treuderys upis]] +<tr><td>[[Heinrihs fon Diņkelage|fon Diņkelage Heinrihs]]<td>''Heinrich von Dinkelaghe''<td>1295 – 1296 X 28<td>&nbsp;– +<tr><td>[[Burhards fon Dreilebens|fon Dreilebens Burhards]]<td>''Burchard von Dreileben''<td>1340 – 1345 XII 14<td>Atsasaceja nu daguojumu +<tr><td>[[Robins fon Eļcs|fon Eļcs Robins]]<td>''Robin von Eltz''<td>1385 – 1389 III<td>&nbsp;– +<tr><td>[[Vilekens fon Endorps|fon Endorps Vilekens]]<td>''Willeken von Endorp''<td>1281 – 1287 III 26<td>Lyma [[Grīzis kuove|Grīzis kuovē]] +<tr><td>[[Konrads fon Feuhtvaņgens|fon Feuhtvaņgens Konrads]]<td>''Konrad von Feuchtwangen''<td>1279 – 1281<td>Nu 1291 beja [[Vuocīšu ordyns|Vuocīšu ordyna]] lelmagistris +<tr><td>[[Arnolds fon Fitinghofs|fon Fitinghofs Arnolds]]<td>''Arnold von Vietinghof''<td>1360 II – 1364 VII 11<td>&nbsp;– +<tr><td>[[Konrads fon Fitinghofs|fon Fitinghofs Konrads]]<td>''Konrad von Vietinghof''<td>1401 X 21 – 1413 II<td>&nbsp;– +<tr><td>[[Viļhelms fon Firstenbergs|fon Firstenbergs Viļhelms]]<td>''Wilhelm von Fürstenberg''<td>1557 VI – 1559 IX<td>Lyma navaļā pi [[Vilaņde|Vilaņdis]] +<tr><td>[[Viļhelms fon Frimersheims|fon Frimersheims Viļhelms]]<td>''Wilhelm von Vrimersheim''<td>1364 IX 29 – 1385<td>&nbsp;– +<tr><td>[[Heinrihs fon Galens|fon Galens Heinrihs]]<td>''Heinrich von Galen''<td>1551 VII – 1557 V 30<td>&nbsp;– +<tr><td>[[Ditrihs fon Groniņgens|fon Groniņgens Ditrihs]]<td>''Dietrich von Groningen''<td>1242 – 1245<td>&nbsp;– +<tr><td>[[Kuna fon Haciņgenšteins|fon Haciņgenšteins Kuna]]<td>''Kuno von Hazzingenstein''<td>1288 – 1290<td>&nbsp;– +<tr><td>[[Halts]]<td>''Halt''<td>1290 – 1291<td>&nbsp;– +<tr><td>Hazenkamps –<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;''vr.:'' [[Venemars fon Brugenejs|fon Brugenejs Venemars]]<td>&nbsp;–<td>&nbsp;–<td>&nbsp;– +<tr><td>[[Reimars Hane|Hane Reimars]]<td>''Reimar Hane''<td>1324 VII 06 – 1328&nbsp;V&nbsp;25<td>Atsasaceja nu daguojumu +<tr><td>[[Heinrihs fon Heimburgs|fon Heimburgs Heinrihs]]<td>''Heinrich von Heimburg''<td>1245 – 1246<td>&nbsp;– +<tr><td>[[Johans Volthuss fon Herze|fon Herze Johans Volthuss]]<td>''Johann Wolthus von Herse''<td>1470 III – 1471 IX<td>Mirs 1472 g. [[Ventspiļs]] cītumā +<tr><td>[[Gosvins fon Herike|fon Herike Gosvins]]<td>''Goswin von Herike''<td>1345 – 1359 IX 10<td>&nbsp;– +<tr><td>[[Burhards fon Hornhuzens|fon Hornhuzens Burhards]]<td>''Burchard von Hornhusen''<td>1256 – 1260 VII 13<td>Lyma [[Dūrbis kuove|Dūrbis kuovē]] +<tr><td>[[Gerhards fon Jorke|fon Jorke Gerhards]]<td>''Gerhard von Jorke'', taipoš ''Gerhard von York''<td>1309 – 1322 VII 19<td>Atsasaceja nu daguojumu +<tr><td>[[Fraņke Kerskorfs|Kerskorfs Fraņke]]<td>''Franke Kerskorff''<td>1433 – 1435 IX 01<td>Lyma [[Kuove pi Sveņtis|kuovē pi Sveņtis]] +<tr><td>[[Gothards Ketlers|Ketlers Gothards]]<td>''Gotthard Kettler''<td>1559 IX – 1563 III 05<td>Mirs 1587 05 17 Jelgovā kai [[Kūrzemis i Zemgolys hercogi|Kūrzemis i Zemgolys hercogs]] +<tr><td>[[Johans Freitags fon Loringhofe|fon Loringhofe Johans Freitags]]<td>''Johann Freitag von Loringhofe''<td>1483 – 1494 V 26<td>&nbsp;– +<tr><td>[[Oto fon Luterbergs|fon Luterbergs Oto]]<td>''Otto von Lutterberg''<td>1266 – 1270 II 16<td>Lyma pi kuovē pi Karūsys +<tr><td>[[Konrads fon Maņderns|fon Maņderns Konrads]]<td>''Konrad von Mandern''<td>1263 – 1266<td>&nbsp;– +<tr><td>[[Johans fon Meņgede, saukts Osthofs|fon Meņgede Johans, saukts Osthofs]]<td> ''Johann von Mengede, genannt Osthof''<td>1450 IX – 1469 VIII 15<td>&nbsp;– +<tr><td>[[Eberhards fon Moņheims|fon Moņheims Eberhards]]<td>''Eberhard von Monheim''<td>1328 – 1340 VI 24<td>Atsasaceja nu daguojumu +<tr><td>[[Vaļters fon Nortekens|fon Nortekens Vaļters]]<td>''Walter von Nortecken'', taipoš ''Walter von Nordeck''<td>1270 – 1273<td>&nbsp;– +<tr><td>[[Heinrihs Fiņke fon Oferbergs|fon Oferbergs Heinrihs Fiņke]]<td>''Heinrich Vinke von Overberg''<td>1438 – 1450 VII 29<td>&nbsp;– +<tr><td>Osthofs -<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;''vr.'': [[Johans fon Meņgede, saukts Osthofs|fon Meņgede Johans]]<td>&nbsp;–<td>&nbsp;–<td>&nbsp;– +<tr><td>[[Voļters fon Pletenbergs|fon Pletenbergs Voļters]]<td>''Wolter von Plettenberg''<td>1494 VII 07&nbsp;–&nbsp;1535&nbsp;II&nbsp;28<td>&nbsp;– +<tr><td>[[Ernsts fon Rasburgs|fon Rasburgs Ernsts]]<td>''Ernst von Rassburg''<td>1274 – 1279 III 05<td>Lyma [[Kuove pi Aizkrauklis|kuovē pi Aizkrauklis]] +<tr><td>[[Johans fon der Reke|fon der Reke Johans]]<td>''Johann von der Recke''<td>1549 II – 1551 V 18<td>&nbsp;– +<tr><td>[[Gotfrids fon Roge|fon Roge Gotfrids]]<td>''Gotfried von Rogge''1298 – 1307<td><td>&nbsp;– +<tr><td>[[Eise fon Ruteņbergs|fon Ruteņbergs Eise]]<td>''Eisse von Rutenberg''<td>1424 V – 1433 X<td>&nbsp;– +<tr><td>[[Zigfrids Laņders fon Špaņheims|fon Špaņheims Zigfrids Laņders]]<td>''Siegfried Lander von Spanheim''<td>1415 IX – 1424 IV 03<td>&nbsp;– +<tr><td>[[Andreass fon Štirlands|fon Štirlands Andreass]]<td>''Andreas von Stirland''<td>1248 – 1253<td>&nbsp;– +<tr><td>Šungeļs -<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;''vr.'': [[Heinrihs fon Bokenvorde, saukts Šuņgeļs|fon Bokenvorde Heinrihs]]<td>&nbsp;–<td>&nbsp;–<td>&nbsp;– +<tr><td>[[Ditrihs Torks|Torks Ditrihs]]<td>''Dietrich Tork''<td>1413 V 13 – 1415 VIII<td>&nbsp;– +<tr><td>[[Andreass fon Veļfens|fon Veļfens Andreass]]<td>Andreas von Welven<td>1240 – 1241<td>&nbsp;– +<tr><td>[[Verners]]<td>'Werner''<td>1261 – 1263<td>&nbsp;– +<tr><td>[[Ana fon Zaņgerhauzens|fon Zaņgerhauzens Ana]]<td>''Anno von Sangerhausen''<td>1253 – 1256 VII<td>&nbsp;– +|} + +== Verīs taipoš == +* [[Zūbynbruoļu ordyna magistris]] + +[[Kategoreja:Livonejis ordyna magistri| ]] + 84g67ob0j8strp0pptpmqz5qpfm2m69 + + + + Lomu vuordu vuordineica + 0 + 263 + + 26663 + 14494 + 2013-01-01T17:57:49Z + + 217.198.235.43 + + /* Č */ + wikitext + text/x-wiki + Lyudzu, vuordineicā natreit uorā vuordus bez apsprīšonys ('''Sprīža''') i turētīs pi [[Latgaļu alfabets|latgaļu alfabeta]]. + +== A == +;ančakrysts: bezdīvs +;ankrova: bīdakls +;atsapis!: ej padiersnej!, ej paceli!; + +== B == +;balamuts: ... +;balvans: sovvaļnīks (=cylvāks, kurs dora nadorbus) +;bļaduns: pasalaids veirīts +;bļātka: mauceiga sīvīte +;bļuzneit: daudz runot +;bosiks,bobuļs: nabogs +;brauceituojs: cylvāks, kurs aizajam ar masturbaciju +;bradžāklys: cylvāks, kurs bļuznej +;bredzēt,brīdēt: mūrguot; nabrīdej/napyn - narunoj aptuomeņ +;brīdaklys: cylvāks, kurs aptuomeņ runoj + +== Č == +;čapasls: ourmouts cylvāks +;čaplaks: naparādyskys cylvāks +;čūksts:= ūksts; ''Pi čūksta'' - vysleidza. +;čiuļs: lejislatvīts (nalatgalīts); '''''čiuļs''' voj ciuka - vysleidzaq'' (soka ap cylvāku, kurs nagavej) + +== D == +;diersnamais: =ūksts +;dierst: ...; ''Ēst na '''dierst''' - var pagaideit.'' +;drystyns: ... + +== G == +;gadina: (1) puorstuovs nu čyusku sugas ''Vipera Berus'', (2) ... +;galavans: ?.. (leidzeigs krīvu ''болван'') +;gneida,gneizda: ...; ''Nudi, jo tu vēļ kaut vīnu reizi peikstēsi, es tevi nūspīsšu kai '''gneidu'''!'' (F.Murāns, ''Sovs bārns'') + +== I == +;izpisinēt: izsvīst + +== K == +;kaleika: nabarāgs +;kozuls,koza: ... +;krieklis: vacs i navasals veceļs ci ziergs; ''Es palīku sirdeigs partū ka naradzu nikaida cālūņa '''kriekļa''' runom.'' (V.Lukaševičs, ''Kuozynda'') + +== M == +;māslu vabaļa: ... +;mauka: bļātkis mosa +;maule: ... +;mudaks: ...; ''Līcit snīgu iz skovrodys, '''mudaki'''!'' (V.Lukaševičs, ''Kuozynda'') + +== N == +;nabarāgs: ... +;nacylvāks: ...; ''Tu razgaļs, tu '''nacylvāks''', tu munu dzeivi nūbeigsi!'' (F.Murāns, ''Sovs bārns'') +;nakauņa: ...; ''Gon jau tys '''nakauņa''' nūlauzs kur golvu!'' (F.Murāns, ''Sovs bārns'') +;nakryškuons: (1) bezdīvs, (2) nalobs cylvāks +;nahuj: pastyprinoj cyta darbeibys vuorda nūzeimi, ruoda, ka destruktiva darbeiba nūvasta da gola (saleidzynoj latvīšu 'salauzt' i 'salauzt '''nahuj'''' ar vuocu 'brechen' i ''''ver'''brechen'); ''Var atbraukt dzeds nu Kanadys i nūsaut '''nahuj''' jū par itū'' (V.Lukaševičs, ''Kuozynda'') +;nūstibt: nūsprogt + +== P == +;pāmaroks: ... +;pasauļa pluovs: ...; ''...ūgu taipat vysim '''pasauļa pluovim''' nikod napītiks'' (V.Lukaševičs, ''Kuozynda'') +;peizda,petine: sīvītes dzymumorgans +;pipalyžga: nūruode iz cylvāka zamū socialū statusu(?); lītuojams, kab runuotu i par veirīšim, i sīvītem +;pipss, pips, pipuks: veirīšu dzymumorgans; ''palyzgoj pipsi'' - aicynuojums dareit kū naviņ absurdu; ''Tev vajag pipa ūkstā'' - ... +;pist: ...; ''kuo tu tī '''pisīs'''?'' - izbreins par cyta cylvāka napruoteigū runu voi darbeibu +;pliuka: meiksts vādars, atruove; ''Tu '''pliuka''' pret svātīm obrozim'' + +;pojabu: vysleidza, pi ūksta +;pupu miskys: (puornastā nūzeimē) bezvierteigys dzelys +;pušvysts: homoseksualists + +== R == +;raštans: huligans +;razbainīks: ... +;razgaļs: ... +;rupucs: ''Amphibia'' klasis dzeivnīks;... + +== S == +;sipaks,skabars: nalobs krīvs +;syvāna šērve: ... +;skūpdierška: skūps cylvāks +;syuds: ..., lītuojūt kai saukumnīku, zeimoj negativū runuotuoja nūstotu pret runys prīškmatu +;stropols: cīts syuds +;spruodzine, spruodziņs: bezvierteigs cylvāks, kuram dreiži juomierst; ''Tei '''spruodzine''' ir cīta kai akmiņs.'' (F.Murāns, ''Sovs bārns'' - ap skūpu sīvīti) +;sprākle: sīvīšu dzimumorgans + +== Š == +;šmūrguļs: ... +;šmaule: ... (taipoš buļbu gryusle) + +== U == +;urkagans: ...; ''Vīni soka ka izbiedzs '''urkagans''', ūtri soka, ka svieteigs joga.'' (V.Lukaševičs, ''Kuozynda'') + +== Ū == +;ūkstapuče: ūksta caurums (?) +;ūksts: = čūksts; '''''ūksta''' puteklis'' - niceiba. + +== V == +;veikšs: ?.., ''Nasastaip, tu '''veikšs''' taids!'' (F.Murāns, ''Sovs bārns'') +;vucyns: nagudrs voi ītīleigs cylvāks +;vucyna pakauss: (1) na cīši gudrs cylvāks; (2) ītīpeigs cylvāks. + +== Resursi == +* [http://laacz.lv/f/misc/lamuvardi/list Baļtīšu lomu vuordu soroksts] +* [http://www.insultmonger.com/swearing/latgalian.htm Latgalīšu vulgarizmi] + eng0jk10ck9fmtymqzy8xl86mqk5dam + + + + Lopsys + 0 + 264 + + 31436 + 28244 + 2016-05-09T12:05:57Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + [[Fails:Vulpes velox2.jpg|thumb|250px|''Vulpes velox'']] +'''Lopsys''' (Frisch, 1775; {{Vol-la|Vulpes}}) irā plieseigo zvieru giņts iz [[Suņu saime|suņu saimis]] (''Canidae''). + +== Škiras == +14 škiru irā ''Vulpes'' giņtī<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1907/ BioLib] Profil taxonu — rod '''liška ''Vulpes''''' Frisch, 1775</ref>: +* †''[[Vulpes angustidens]]'' +* ''[[Vulpes bengalensis]]'' Shaw, 1800 +* ''[[Vulpes cana]]'' Blanford, 1877 +* ''[[Vulpes chama]]'' A. Smith, 1833 +* ''[[Vulpes corsac]]'' Linnaeus, 1768 +* ''[[Vulpes ferrilata]]'' Hodgson, 1842 +* ''[[Vulpes macrotis]]'' Merriam, 1888 +* ''[[Vulpes pallida]]'' Cretzschmar, 1827 +* †''[[Vulpes praeglacialis]]'' +* ''[[Vulpes rueppelli]]'' Schinz, 1825 +* †''[[Vulpes sinensis]]'' +* ''[[Vulpes velox]]'' Say, 1823 +* ''[[Vulpes vulpes]]'' (Linnaeus, 1758) +* ''[[Vulpes zerda]]'' Zimmermann, 1780 + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Commonscat|Vulpes}} + +[[Kategoreja:Dzeivinīki]] + flldd6cm239gwqdm2zn70rrp0iwhjhq + + + + Lopu mieneša 7 dīna + 0 + 265 + + 31816 + 31815 + 2016-12-09T09:36:24Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31815 dated 2016-12-09 09:03:22 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Lopu mieneša 7''' dīna irā 127 goda dīna pa Gregora kaleņderam (garajuo godā - 128 dīna). Nu ituos dīnys leidz goda golam palīk 238 dīnys. + +== Svieteibu i pīminis dīnys == +* [[Fails:Flag of Russia.svg|25x15px|Krīveja]] [[Krīveja|Krīvejā]] Radejis dīna; +* [[Fails:Flag of Vietnam.svg|25x15px|Vjetnams]] [[Vjetnams|Vjetnamā]] Īveicis dīna. + +=== Katuoļu svātū dīnys === + +== Vuorda dīnys == +Henriete - Henrejs - Jete + +== Nūtikšonys == +=== Latgolā === +* 1904 - Krīvejis imperejā atsaukts latiņu druka nūlīgums, kas nu 1864 gods zeimovās iz nazkodejom Puolejis teritorejom (Lītovu i Vicebskys guberneju (kuramā beja i Latgola);<ref>http://latgalesdati.du.lv/5 Latgolys dati</ref> +* 1928 - Īstateita Latgolys studentu bīdreiba "Latgola". + +=== Latvejā === + +=== Pasaulī === +* 1832- Grekeja dabova napavaļdeibys +* 1875 - paraksteita dasaruna iz Japonejis i Krīvejis deļ teritoreju meitu: Japonejai teik Kuriļu solys, a Krīvejai - Sahalins; +* 1895 - Pīterpilī krīvu zininīks Aleksandrys Popovs demonstrej pyrmū radejis imtivu - kohereru; +* 1915 - Pyrmais pasauļa kars: vuocīši apsleicynoj britu lellaivu "Lusitania", nūnuovāti 1198 cylvāki; +* 1945 - Ūtrais pasauļa kars: Reimsā vuocu generals Alfreds Jodlys parakstej Vuocejis kapitulaceju, kas aizastoj cytā dīnā; +* 1946 - Japonejā īstateits pasajāmums "Tokyo Telecommunications Engineering", kas piečuok pasaukts kai "Sony"; +* 1954 - Indokinejis kars: Djen Bjen Fu kuovē Prancūzejis karinīki pagaisinoj kuovi(kuove aizsuoka pavasara mieneša 13 dīnā); +* 2005 - Libana krysteigajuo Džunejis ūstysmīstā spruoguse bomba savaiņoj 22 cylvākus. + +== Dzimšonys == +=== Latgolā === +* 1927 - Juoņs Gleizds, fotomuokslinīks (m. 2010 godā); +* 1940 - Daile Dzene, aktere. + +=== Latvejā === +* 1899 – Bruno Kalneņš, latvīšu politiks (m. 1990). + +=== Pasaulī === +* 1840 - Pīters Čaikovskais (Пётр Ильич Чайкoвский), krīvu komponists (m. 1893); +* 1861 – Rabindranats Tagore (Rabindranath Tagore), bengaļu ailinīks, rakstinīks (m. 1941); +* 1867 – Vladyslavs Rejmonts (Władysław Reymont), puoļu rakstinīks (m. 1925). + +== Mieršonys == +=== Latgolā === +=== Latvejā === +=== Pasaulī === +* 1682 – Fjodors III (Фёдор III Алексеевич Романов), Krīvejis cars (dz. 1661). + +== Nūruodis == +{{nūruodis}} + +{{commonscat|7 May|Lopu mieneša 7 dīna}} + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Lopu mieneša 7 dīna| ]] + ngxeaiizeh83fonfqihk0d6tddk7gnq + + + + Lubuons + 0 + 266 + + 31736 + 31735 + 2016-11-05T13:57:08Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Lubuons +| atvaiga_pasauka = Lubāns-See (Lettland).jpg +| atvaiga_aprakstejums = Lubuona vakarmale pi Zvidzys kanala. +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd =56 | latm =46 | lats =0 | latNS = N +| longd =26 | longm =52 | longs =0 | longEW = E +| nūvods = Rēznis nūvods, Modyunis nūvods +| pluots = 80,70 +| pošlelais_garums = 15,7 +| vydyskuo_dzilīne = 1,6 +| pošleluo_dzilīne = 3,5 +| vydums = +| augstums = 90 +| iztece = [[Aivīkste]] +| satecis_baseins = 2 040 +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = Akmiņsola +| dzeivojamys_vītys = Reiga +| cytys pasaukys = +}} +'''Lubuons''' — azars Latgolys vokoru daļā, [[Reitulatvejis zamaine|Reitulatvejis zamainē]], [[Rēznis nūvods|Rēznis]] i [[Modyunis nūvods|Modyunis]] nūvoda teritorejuos, vysuleluokais azars Latgolā i Latvejis Republikys teritorejā. Juo viersa pluots dasnādz 8070 ha (ar azarsolom – 8210 ha). Azara garums stīpās da 14 km, plotums – da 9 km. + +Koč Lubuona lelums īspaideigs, juo vydiskais dziļums viņ 1,6 m, pošlelais dziļums – 2,5 m. Nazkod Lubuons vys aizlēja dyžan plotys teritorejis, kam juo apleicīne tik drupeit pasaceļ augšuok azara leidzīņa. Divdasmytuo godusymta 30-tajūs i 50-70-tajūs godūs padareiti leli azara apleicīnis puortaisis dorbi: pastateitys 90 dambu, izrokti 93 apleikkanali i azara nūteciejums pagrīzts pa Aivīksti. Deļ itūs dorbu Lubuonā jau nazcik reižu mejīs iudiņa leidzīņs. + +Azara viersa vyscaureigais (absolutais) augstums irā 92,5 m augšuok jiuru leidzīņa. + +Nu Lubuona iztak Aivīkste, ītakūšuos upis – [[Malmuna]], [[Teiceja]], [[Lisine]] i vēļ 5 mozuokys upeitis – divdasmytajā godusymtā pagrīztys pa Meirānu kanalu, [[Rēzne|Rēznis]] i [[Malta|Maltys]] ītakys salaistys kūpā. Taipoš puorguojušajā godusymtā pi Lubuona ītaiseiti zyvu muorki ar kūpeigū pluotu 1750 ha i nūsausynuotys 10000 ha meža zemis. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latgolys azari]] + dw6atxn1xfbtm36o3hczs4r79cpciz2 + + + + Ludza + 0 + 267 + + 29138 + 28247 + 2013-03-11T10:44:32Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q744259]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Ludza +| atvaiga_pasauka = Ludzas pilsdrupas.jpg +| atvaiga_aprakstejums = Ludzys piļs sakrytumi +| gerba_atvaigs = Escut Ludza.png +| gerba_pasauka = Ludzys gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 32 | lats = 47 | latNS = N +| longd = 27 | longm = 43 | longs = 37 | longEW = E +| nūvods = Ludzys nūvods +| pluots = 10,53 +| dzeivuotuoji_gods = 2008 +| dzeivuotuoju_skaits = 9 734 +| bīzeiba = 924 +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1777 +| posta_iņdeksi = LV-5701 <br /> LV-5702 +| teiklavīta = www.ludzaspils.lv +}} + +'''Ludza''' — mīsts reitu Latgolā, Ludzys nūvoda centrys. Ludza irā vacuokais mīsts Latgolā, mīsta tīseibys jau nu 1177 goda. Car mīstu īt dzeļžaceļa lineja Krystapiļs - [[Sīnuoja]]. + +== Zeimeigi ļauds == +Ludzā dzymuši: +* [[Jakovs Kulnevs]] (''Яков Петрович Кульнев'', [[1763]] — [[1812]]) - krīvu pulkvedis, Napoleona karu dalībnieks +* [[Leons Tomašickis]] (1904-1996) - skulptors, pedagogs +* [[Jeseneja Volžankina]] (1983- ) - latvīšu vīglatlete +* [[Anta Rugāte]] (1949) - 8 Seimys deputate +* [[Aleksandrs Žirkevičs]] (''Александр Владимирович Жиркевич'', [[1875]] — [[1927]]) - krīvu ailinīks +* [[Sergejs Lazovskis]] (1976- ) - svorcāluojs, Latvejis čempions (13 reizis), pīsadalejs Olimpiskajuos kaituos Sidnejā (dabojs 18 vītu) + +Dzymuši cytur, Ludzā vuicejušīs, dzeivuojuši, darejuši: +* [[Anisims Rekašovs]] (1859-1955) - zynomais Ludzys apleiciņa uorsts + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Badbodenteihs, [[Vuoceja]] +| [[Fails:Flag of Italy.svg|25x15px|Italeja]] Baručela, [[Italeja]] +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] [[Opskova]], [[Krīveja]] +| [[Fails:Flag of Lithuania.svg|25x15px|Lītova]] [[Moleti]], [[Lītova]] +|} + +== Galereja == +<gallery> +File:Ludza Castle.jpg|Ludzys piļs sakrytumi +File:Catholic cathedral in Ludza, Latvia.jpg|Ludzys Jaunovys Marejis dabasūs uzjimšonys Romys katuoļu bazneica +File:Baznicas.jpg|Ludzys ūļneica +File:Greater Lake Ludza.JPG|Lelais Ludzys azars +</gallery> + +{{nadabeigts rakstīņs}} + +{{Ludzys nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Ludza| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + qawd9vlcfyp4eqpamiszrb773j7k3f9 + + + + Luksemburga + 0 + 268 + + 32117 + 30721 + 2017-07-23T01:55:04Z + + DARIO SEVERI + 3389 + + Update information from Wiki (fr) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Groussherzogtum Lëtzebuerg'''<br />'''Grand-Duché de Luxembourg'''<br />'''Großherzogtum Luxemburg'''<br />'''Luksemburga'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Luxembourg.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Luxembourg.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Luxembourg.svg|300px]] +|- +|| Golvysmīsts || Luksemburga +|- +|| Vaļsteibys volūda || luksemburgīšu (''de jure'' suokūt ar 1984), vuocu, praņcīšu +|- +| Monarhs || Henri +|- +| Ministru prezidents || Xavier Bettel +|- +|| Pluots || 2 586,4 km² +|- +|| Dzeivuotuoju skaits || 590 667 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Luksemburga''' ([[luksemburgīšu volūda|luksemburg.]]: ''Groussherzogtum Lëtzebuerg''; {{vol-fr|Grand-Duché de Luxembourg}}; {{vol-de|Großherzogtum Luxemburg}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs|Vaļsteibys volūda = vuocu, praņču}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + kwqu4o5nz7u08xj60gesz0hwx4lg4ca + + + + Kanadys mežakačs + 0 + 269 + + 28964 + 28249 + 2013-03-08T15:42:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q146457]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Lynx-canadensis.jpg|thumb|250px]] +[[Fails:Lynx canadensis range.PNG|thumb|250px|Kanadys mežakača paplateiba pasaulī]] +'''Kanadys mežakačs''' ({{Vol-la|Lynx canadensis}}) irā naleļs [[kaču saime|kaču saimis]] plieseigais [[zviers]]. Mežakačs dzeivoj [[Kanada|Kanadā]] i Aļaskā.<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Lynx_canadensis.html University of Michigan Museum of Zoology]</ref> + +== Izavierīņs == +* Auguma garums: 86—117 cm;<ref name="ADV"/> +* Astes garums: nu 50 da 130 cm;<ref name="ADV"/> +* Kausu augstums: 60—65 cm;<ref name="ADV"/> +* Svors: 8—14 kg.<ref name="ADV"/> + +== Daudzatmejeiba == +Irā 3 zamškiru:<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1969/ BioLib] Profil taxonu — druh '''rys kanadský ''Lynx canadensis''''' Kerr, 1792</ref> +* ''[[Lynx canadensis canadensis]]'' Kerr, 1792 +* ''[[Lynx canadensis mollipilosus]]'' Stone, 1900 +* ''[[Lynx canadensis subsolanus]]'' Bangs, 1897 + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Lynx canadensis|Kanadys mežakačs}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + koo2hk49e9824qmca076huqp0wq8xey + + + + Mežakačs + 0 + 270 + + 29080 + 28913 + 2013-03-11T10:36:04Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q43375]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Lynx lynx2.jpg|thumb|250px|]] +[[Fails:Wiki-Lynx lynx.png|thumb|250px|''Mežakača'' paplateiba pasaulī]] +'''Mežakačs''' aba '''Eurazejis mežakačs''' ({{Vol-la|Lynx lynx}}) irā naleļs [[kaču saime|kaču saimis]] plieseigais [[zviers]]. Mežakačs dzeivoj Eurazejā.<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Lynx_lynx.html University of Michigan Museum of Zoology]</ref> + +== Izavierīņs == +* Auguma garums: 70—130 cm;<ref name="ADV"/> +* Astes garums: 20—24 cm;<ref>[http://encyclopedia2.thefreedictionary.com/Lynx+(cat) The Free Dictionary]</ref> +* Placu augstums: 60—65 cm;<ref name="ADV"/> +* Svors: 18—36 kg.<ref name="ADV"/> + +== Daudzatmejeiba == +Irā 5 zamškiru:<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1970/ BioLib] Profil taxonu — druh '''rys ostrovid ''Lynx lynx''''' (Linnaeus, 1758)</ref> +* ''[[Lynx lynx isabellinus]]'' Blyth, 1847 +* ''[[Lynx lynx kozlovi]]'' Fetisov, 1950 +* ''[[Lynx lynx lynx]]'' (Linnaeus, 1758) +* †''[[Lynx lynx sardiniae]]'' (Mola, 1908) +* ''[[Lynx lynx stroganovi]]'' Heptner, 1969 + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Lynx lynx|Eurasejis mežakačs}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + f4rg6fkkbrkg3jemby952dw3py38pea + + + + Lynx pardinus + 0 + 271 + + 29438 + 28965 + 2013-03-23T02:28:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q129727]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Linces19.jpg|thumb|250px|]] +[[Fails:Mapa distribuicao lynx pardinus defasado.png|thumb|250px|''Lynx pardinus'' paplateiba pasaulī]] +'''Lynx pardinus''' ({{Vol-en|Iberian lynx}}; {{Vol-ru|испанская рысь}}; {{Vol-lv|Ibērijas lūsis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Lynx pardinus'' dzeivoj Pereneja pussolā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Lynx_pardinus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 60—70 cm<ref name="news.bbc.co.uk">[http://news.bbc.co.uk/2/hi/europe/4539603.stm BBC NEWS | Europe | Rare Spain lynx cub dies in fight]</ref>;</br> +Astes garums: 12—30<ref name="news.bbc.co.uk"/>;</br> +Kausu augstums: 45—70 cm<ref name="news.bbc.co.uk"/>;</br> +Svors: 9—26 kg<ref name="ADV"/>.</br> + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Lynx pardinus}} + +{{DEFAULTSORT:Lynx pardinus}} + +[[Kategoreja:Dzeivinīki]] + ga71w7qxyqnm2vcpni3kugbnxz2d1n1 + + + + Lynx rufus + 0 + 272 + + 30690 + 28966 + 2015-04-02T15:29:27Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|en}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Calero Creek Trail Bobcat.jpg|thumb|250px|]] +[[Fails:BobcatThird.jpg|thumb|250px|''Lynx rufus'' paplateiba pasaulī]] +'''Lynx rufus''' (Schreber, 1777) ({{Vol-en|bobcat}}; {{Vol-ru|рыжая рысь}}; {{Vol-lv|rūsganais lūsis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Lynx rufus'' dzeivoj Pūstum Amerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Lynx_rufus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 65—105 cm<ref name="ADV"/>;</br> +Astes garums: 10—18 cm<ref name=utd>Sparano, Vin T (September 1998). Complete Outdoors Encyclopedia. St. Martin's Press. p. 228. ISBN 0-312-19190-1.</ref>;</br> +Placu augstums: nazkur 58 cm<ref name="ADV"/>;</br> +Svors: nu 4 da 15 kg<ref name="ADV"/>. + +== Daudzatmejeiba == +Irā 12 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1977/ BioLib] Profil taxonu — druh +'''rys červený ''Lynx rufus''''' (Schreber, 1777)</ref>: +* ''[[Lynx rufus bailey]]'' Merriam, 1890 +* ''[[Lynx rufus californicus]]'' Mearns, 1897 +* ''[[Lynx rufus escuinapae]]'' J. A. Allen, 1903 +* ''[[Lynx rufus fasciatus]]'' Rafinesque, 1817 +* ''[[Lynx rufus floridanus]]'' Rafinesque, 1817 +* ''[[Lynx rufus gigas]]'' Bangs, 1897 +* ''[[Lynx rufus oaxacensis]]'' Goodwin, 1963 +* ''[[Lynx rufus pallescens]]'' Merriam, 1899 +* ''[[Lynx rufus peninsularis]]'' Thomas, 1898 +* ''[[Lynx rufus rufus]]'' (Schreber, 1777) +* ''[[Lynx rufus superiorensis]]'' Peterson and Downing, 1952 +* ''[[Lynx rufus texensis]]'' J. A. Allen, 1895 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Lynx rufus}} + +{{DEFAULTSORT:Lynx rufus}} + +[[Kategoreja:Dzeivinīki]] + 0tk3m9hc79i2i4zhqdocqo1l4mjwh7j + + + + Līga Rundāne + 0 + 273 + + 31825 + 31806 + 2016-12-09T09:37:15Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31806 dated 2016-12-09 09:02:02 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Līga Rundāne''' (dzymuse [[1970 gods|1970 gods]] [[24.juns|juņa 24 dīnā]] [[Kuorsova|Kuorsovā]]) — latgalīšu ailineica, latgaliskuo puormaņtīņa apzynuotuoja i popularizātuoja. + + +== Biografeja == +Dzymdynuotuoji: tāvs – [[Ontons Zvīdris]], muote – [[Genovefa Zvīdre]]. Auguse i vuicejusēs [[Nautrānu pogosts|Nautrānu pogostā]]. Beiguse [[Nautrānu vydsškola|Nautrānu vydsškolu]] (1988), studiejuse [[Rēznis Augstškola|Rēznis Augstškolā]], jū beiguse [[1996 gods|1996 godā]] ar bakalaura gradu filologejā. Nu [[2007 gods]] da [[2010 gods|2010 godam]] studiejuse Reigys Stradiņa universitetā, dabuojuse magistra grada veseleibys davērē pa dramys terapeuta (vīna nu muokslys terapejis atzaru) specialitetam. Dzeivoj [[Kuorsova|Kuorsovā]], dora Kuorsovys vydsškolā par latvīšu volūdys i literaturys školuotuoju. Div bārni: Laurs i Beāte. + +Radeigajai izaugsmei ītaku darejs [[Oskars Seiksts]] i cyti juos audzis jaunī latgalīšu literati. Pamudrynuojumu aktivuok raksteit dzeivuļus davuši vosorys kursi latgalīšu volūdys i kulturys školuotuojim ''[[Vosoruošona]]''. Div reizis Līgai Rundānei daškierts latgalīšu kulturys apduovaņs ''[[Boņuks|Boņuks]]'': [[2008 gods|2008 godā]] – nominacejā ''Vysulobuokuos ailis'' i [[2010 gods|2010 godā]] – nominacejā ''Gods Školuotuojs''. + +== Literaruo darbeiba == +Dzeivuli publicāti periodikā i kūplasīņūs. [[2004 gods|2004 godā]] izguojs autoris aiļu lasīņs ''Leluos atlaidys''. Jam soveiga surreala i modernistiska izsaceiba, kurū roda romaņtiskuo suope, baime nu naeistynuma sevī, ambivalents i paradoksals pasauļa jutums, radeišonys suope i svātums. Pazeistamys i publikys nūmīļuotys tykušys [[Sovvaļnīks|Sovvaļnīka]] dzīsmis ar Līgys Rundānis vuordim - ''Vysi vieji'' <ref>http://www.youtube.com/watch?v=E-m3kjhQdDw</ref>, ''Atrasšu tevi'' <ref>http://www.sovvalniks.lv/node/21</ref>, i ''Vosoruošonai'' <ref>http://www.youtube.com/watch?v=pWs0Z2Sw9ZI</ref>. Diskā ''[[Sūpluok]]'' īguoja i iņterveja ar Līgu Rundāni. + +* '''Gruomota''' +** ''Leluos atlaidys'' (2004) + +* '''Publikacejis kūplasīņūs''' +** ''Pie–la–vī-ties: Rēzeknes augstskolas jauno autoru krājums'' (sak. I. Šuplinska, 2003) +** ''Saulis spaiti iz spīgeļu. Лучи по зеркалам'' (latgalīšu i krīvu volūdā (sak. I. Magazeinis, F. Osina, 2007). +** ''Susātivs: myusdīnu latgalīšu dzejis antologeja'' (sak. I. Šuplinska, 2008) + +== Nūruodis == +{{reflist}} +* Šuplinska, I. Personvārda funkcionalitāte jaunākajā latviešu dzejā. Via Latgalica: humanitāro zinātņu žurnāls. Rēzekne: Rēzeknes Augstskola, 2008, 130.–144. lpp. + +== Uorejuos nūruodis == + + +[[Kategoreja:Zeimeigi Latgolys ļauds]] +{{Nadabeigts rakstīņs}} + fqkfsk0zzevcdehkpwreypkw2980rlv + + + + Līkne + 0 + 274 + + 28253 + 25754 + 2013-03-07T18:35:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 75 interwiki links, now provided by [[d:|Wikidata]] on [[d:q39816]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Līkne''' (baļtīšu: ''ieleja''; anglīšu: ''valley''; krīvu: ''долина'') — geografiskuo reļjefa forma, pasazamynuojums zemisviersā plotuokā teritorejā, pašaurs samārā ar sovu garumu i vysucieškuok leikumuots. + +[[Kategoreja:Geografeja]] + 8lgl044mpzer5gmn7h1ixetyxaabi3j + + + + Lītne + 0 + 275 + + 31555 + 12450 + 2016-08-12T20:39:26Z + + Turaids + 172 + + + wikitext + text/x-wiki + '''Lītne''' var zeimuot: +* [[Lītne (kimejā)|Lītne]] — cīts, škeists ci gazeigs materials, sasadorūšs nu elementardaleņu i turūšs zynomys fizikaliskuos soveibys. +* [[Lītne – humanitarajuos zineibuos|Lītne]] — informacejis kūpums, kurū var izlītuot kai pamatu snādzūtīs dvēseliskai svareiga rezultata (guodojūt, vuicūtīs, skaitūt i leidz.). + +{{Zeimeibu škiršona}} + k95o8jrgqpgc6dr4lijqsd9ftcwl4of + + + + Lītne (kimejā) + 0 + 276 + + 31552 + 31532 + 2016-08-12T20:37:47Z + + Turaids + 172 + + + Turaids pārvietoja lapu [[Lītne (kimeja)]] uz [[Lītne (kimejā)]] + wikitext + text/x-wiki + '''Lītne''' ([[latvīšu volūda|latvīšu]]: ''viela''; [[krīvu volūda|krīvu]]: ''вещество''; [[anglīšu volūda|anglīšu]]: ''substance, material'') — cīts, škeists ci gazeigs [[materials]], sasadorūšs nu [[elementardaleņa|elementardaleņu]] i turūšs zynomys fizikaliskuos soveibys. + +== Verīs taipoš == +* [[Lītne (humanitarajuos zineibuos)]] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Kimeja]] + nrojdifj0968wyfb3o4b5b4omcsu0n8 + + + + Lītne (humanitarajuos zineibuos) + 0 + 277 + + 31535 + 31533 + 2016-08-02T20:10:42Z + + Turaids + 172 + + wikitext + text/x-wiki + '''Lītne''' ([[latvīšu volūda|latvīšu]]: ''viela''; [[krīvu volūda|krīvu]]: ''материал''; [[anglīšu volūda|anglīšu]]: ''stuff'') — informacejis kūpums, kurū var izlītuot kai pamatu snādzūtīs dvēseliskai svareiga rezultata (guodojūt, vuicūtīs, skaitūt i leidz.). + +Pīvadumi: ''vuiceibu lītne'', ''skaitomlītne'', ''lītne apguoduot''. + +== Verīs taipoš == +* [[Lītne (kimeja)]] + +{{Nadabeigts rakstīņs}} + etnwr4i0c6dngw73va0xm7t8jf0b5u2 + + + + Lītova + 0 + 278 + + 32111 + 32063 + 2017-07-16T09:10:14Z + + DARIO SEVERI + 3389 + + Update information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Lietuva'''<br />'''Lītova'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Lithuania.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Lithuania.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Lithuania.svg|300px]] +|- +|| Golvysmīsts || [[Viļne]] +|- +|| Vaļstiskuo volūda || [[lītaunīku volūda]] +|- +| Prezidents || [[Daļa Grībauskaite]] +|- +| Ministru prezidents || [[:lv:Sauļus Skvernelis|Sauļus Skvernelis]] +|- +|| Pluots || 65 300 km² +|- +|| Dzeivuotuoju skaits || 2 821 674 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosor || EET (UTC +2),<br /> EEST (UTC +3) +|} +'''Lītova''' ({{Vol-lt|Lietuva}}) — vaļsteiba [[Europa|Europā]] pi [[Baļtejis jiura|Baļtejis jiurys]]. Golvysmīsts — [[Viļne]]. + +== Viesture == + +== Politika == + +== Geografeja == +* ''[[Lītovys mīsti]]'' +* ''[[Lītovys administrativais dalejums]]'' + +== Demografeja == +83.1% lītauniki, 6.0% puoli, 4.8% krīvi, 1.1% boltkrīvi, 5.0% cyti. + +== Verīs taipoš == +* [http://www.lietuva.lt/ Lietuva.lt] + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 1pan9ce854y4fs8004ppxsmsvwow82w + + + + Lītovys mīsti + 0 + 279 + + 31313 + 28967 + 2016-02-29T10:11:49Z + + CommonsDelinker + 2750 + + Replacing KNS_Coa.svg with [[File:Coat_of_arms_of_Kaunas.svg]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: [[:commons:COM:FR|File renamed]]: [[:commons:COM:FR#reasons|File renaming criterion #2]]: To change from a meaningless or ambiguou + wikitext + text/x-wiki + {| border="2" cellpadding="4" cellspacing="0" class="bonita" style="margin: 0.5em 0.5em 0.5em 1em; padding: 0.5em; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;" +|- +|colspan="8" align="center" bgcolor="#DDDDDD" | '''Lītovys mīsti''' +|- +|rowspan="2" align="center" bgcolor="#EEEEEE" | '''Vīta''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Gerbs''' || colspan="2" align="center" bgcolor="#EEEEEE" | '''Pasauka''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Mīsta tīseibys''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Dzeivuotuoju sk. <br /> (2005 g. apskaite)''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Pluots, km²''' || rowspan="2" align="center" bgcolor="#EEEEEE" | '''Apleiciņs''' +|- +|align="center" bgcolor="#EEEEEE" | '''latgaliskai''' || align="center" bgcolor="#EEEEEE" | '''lītavyskai''' +|- +| 1. +| [[Fails:Grand Coat of arms of Vilnius.png|50 px|center]] +| [[Viļne]] +| '' Vilnius +| 1387 g. +| 544 206 +| 401 +| Viļnis +|- +| 2. +| [[Fails:Coat of arms of Kaunas.svg|30 px|center]] +| [[Kaune]] +| '' Kaunas +| 1408 g. +| 355 586 +| 157 +| Kaunis +|- +| 3. +| [[Fails:Coat of arms of Klaipeda (Lithuania).png|30 px|center]] +| [[Klaipieda]] +| '' Klaipėda +| 1257 g. +| 184 657 +| 98 +| Klaipiedys +|- +| 4. +| [[Fails:Coat of arms of Šiauliai (Lithuania).png|30 px|center]] +| [[Šauli]] +| '' Šauliai +| 1713 g. +| 127 059 +| 88 +| Šauļu +|- +| 5. +| [[Fails:Coat of Arms of Panevezys.svg|30 px|center]] +| [[Paneviežs]] +| '' Panevėžys +| 1792 g. +| 113 653 +| 52 +| Panevieža +|- +| 6. +| [[Fails:Coat of arms of Alytus (Lithuania).png|30 px|center]] +| [[Aleits]] +| '' Alytus +| 1581 g. +| 68 304 +| 48 +| Aleita +|- +| 7. +| [[Fails:Marijampole COA.gif|30 px|center]] +| [[Marijampole]] +| '' Marijampolė +| 1792 g. +| 47 010 +| 21 +| Marijampolis +|- +| 8. +| [[Fails:Coat of arms of Mazeikiai (Lithuania).png|30 px|center]] +| [[Mažeiki]] +| '' Mažeikiai +| 1924 g. +| 40 572 +| 14 +| Teļšu +|- +| 9. +| [[Fails:Coat of arms of Jonava (Lithuania).png|30 px|center]] +| [[Jonava]] +| '' Jonava +| 1924 g. +| 34 446 +| 10,639 +| Kaunis +|- +| 10. +| [[Fails:Coat of arms of Utena (Lithuania).png|30 px|center]] +| [[Utena]] +| '' Utena +| 1924 g. +| 32 572 +| 15,1 +| Utenys +|- +| 11. +| [[Fails:Coat of arms of Kedainiai (Lithuania).png|30 px|center]] +| [[Kiedaini]] +| '' Kėdainiai +| 1590 g. +| 31 613 +| +| Kaunis +|- +| 12. +| [[Fails:Telsiai COA.gif|30 px|center]] +| [[Teļši]] +| '' Telšiai +| 1791 g. +| 30 539 +| 23,14 +| Teļšu +|- +| 13. +| [[Fails:Coat of arms of Taurage (Lithuania).svg|30 px|center]] +| [[Taurage]] +| '' Tauragė +| 1924 g. +| 28 504 +| 16,7 +| Tauragis +|- +| 14. +| [[Fails:Visaginas COA.svg|30 px|center]] +| [[Vysagins]] +| '' Visaginas +| 1977 g. +| 28 438 +| 9,231 +| Vysagina +|- +| 15. +| [[Fails:Ukmerge COA.gif|30 px|center]] +| [[Ukmerge]] +| '' Ukmergė +| 1792 g. +| 28 006 +| +| Ukmergis +|- +| 16. +| [[Fails:Plunge COA.gif|30 px|center]] +| [[Pluņge]] +| '' Plungė +| 1792 g. +| 23 246 +| 30 +| Teļšu +|- +| 17. +| [[Fails:Kretinga COA.gif|30 px|center]] +| [[Kretinga]] +| '' Kretinga +| 1609 g. +| 21 425 +| +| Klaipiedys +|- +| 18. +| [[Fails:Silute COA.gif|30 px|center]] +| [[Šilute]] +| '' Šilutė +| 1941 g. +| 21 258 +| 13 +| Klaipiedys +|- +| 19. +| [[Fails:Radviliskis COA.gif|30 px|center]] +| [[Radviliškis]] +| '' Radviliškis +| 1924–1926 g. +| 19 883 +| 17,32 +| Šauļu +|- +| 20. +| [[Fails:Palanga COA.gif|30 px|center]] +| [[Palanga]] +| '' Palanga +| 1791–1792 g. +| 17 611 +| 10,976 +| Klaipiedys +|- +| 21. +| [[Fails:Gargzdai COA.gif|30 px|center]] +| [[Gargždi]] +| '' Gargždai +| 1792 g. +| 17 011 +| 12,21 +| Klaipiedys +|- +| 22. +| [[Fails:Coat of arms of Druskininkai (Lithuania).png|30 px|center]] +| [[Druskininki]] +| '' Druskininkai +| 1946 g. +| 16 890 +| 24 +| Aleita +|- +| 23. +| [[Fails:Rokiskis COA.gif|30 px|center]] +| [[Rokiškis]] +| '' Rokiškis +| 1924 g. +| 16 118 +| 10,976 +| Panevieža +|- +| 24. +| [[Fails:Birzai COA.gif|30 px|center]] +| [[Bierži]] +| '' Biržai +| 1589 g. +| 14 999 +| 10,976 +| Panevieža +|- +| 25. +| [[Fails:Kursenai COA.gif|30 px|center]] +| [[Kuršieni]] +| '' Kuršėnai +| 1946 g. +| 13 854 +| 11,920 +| Šauļu +|- +| 26. +| [[Fails:Elektrenai COA.gif|30 px|center]] +| [[Elektrieni]] +| '' Elektrėnai +| 1962 g. +| 13 819 +| 21 +| Viļnis +|- +| 27. +| [[Fails:Jurbarkas COA.gif|30 px|center]] +| [[Jurnarks]] +| '' Jurbarkas +| 1611 g. +| 13 625 +| 13,28 +| Tauragis +|- +| 28. +| [[Fails:Garliava COA.gif|30 px|center]] +| [[Garļova]] +| '' Garliava +| 1958 g. +| 13 423 +| 3,65 +| Kaunis +|- +| 29. +| [[Fails:Vilkaviskis COA.gif|30 px|center]] +| [[Vylkaviškis]] +| '' Vilkaviškis +| 1660 g. +| 13 102 +| 7,53 +| Marijampolis +|- +| 30. +| [[Fails:Raseiniai COA.gif|30 px|center]] +| [[Kuršieni]] +| '' Raseiniai +| 1792 g. +| 12 305 +| 8,5 +| Kaunis +|} + +[[Kategoreja:Lītovys mīsti| ]] +[[Kategoreja:Saroksti]] + hv8f0usguarql19xso8ij215imr2x7i + + + + Taiss:Nadabeigts rakstīņs + 10 + 280 + + 29057 + 28258 + 2013-03-10T15:10:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5529697]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| class="metadata plainlinks stub" style="background: transparent;" +|style="padding-right:4px"| [[File:Wiki letter w.svg|48px|alt=Nadabeigts rakstīņs|link=]] +| ''Itys rakstīņs irā [[Vikipedeja:Nadabeigti rakstīni|napiļneigs]]. Jius varit [[Vikipedeja:Rakstīņa papiļdeišona|dūt sovu īlicīni]] Vikipedejā, [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} papiļdūt tuo].'' +|}<includeonly> +[[Category:Nadabeigti rakstīni]] +</includeonly><noinclude> +[[Category:Nadabeigtu rakstīņu taisi| ]] +[[Category:Nadabeigti rakstīni| ]] + +</noinclude> + l2auf1pce4lib89jv9eiv5d8g61gto1 + + + + Taiss:! + 10 + 281 + + 28259 + 28034 + 2013-03-07T18:38:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 263 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5400303]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + |<noinclude> +[[kg:Template:!-]] +</noinclude> + 4lkjh0uq6dru9mnmva4j5rk0y5g5rdi + + + + Taiss:Infoskreine Latvejis nūvods + 10 + 282 + + 29763 + 26336 + 2013-04-14T23:02:17Z + + Addbot + 1801 + + + wikitext + text/x-wiki + <includeonly>{| class="infobox" style="width: 270px; font-size: 90%; margin: 2px; margin-left: 1em; text-align: left;" +|- +! colspan="2" style="margin-left: inherit; background:#a12830; color:#ffffff;text-align:center; font-size: medium;" | {{#if: {{{pasauka|}}}|{{{pasauka}}}}} +|- +<!-- ****** Byušonys zemislopa ****** --> +{{#if: {{{zemislopa|}}}| +{{!}} colspan="2" align="center" {{!}} <center>[[File:{{{zemislopa|}}}|250px|border|]]</center> +}} +|- +<!-- ****** Teritoreju zemislopa ****** --> +{{#if: {{{zemislopa2|}}}| +{{!}} colspan="2" align="center" {{!}} <center>[[File:{{{zemislopa2|}}}|250px|border|{{{zemislopa2_aprakstejums|}}}]]</div> <small>{{{zemislopa2_aprakstejums|}}}</small></center> +}} +|- +<!-- ****** Gerbs i karūgs ****** --> +{{#if:{{{karūga_atvaigs|}}} + |<!--thenF: + ------------------------------------------------------------------------------ + Ite irā karūga atvaigs, paruoda taipat gerba atvaigu, ka tys irā: + ------------------------------------------------------------------------------ + --><tr class="mergedtoprow"> + <td class="maptable" colspan="3" align="center" style="padding:0.5em 0;"><!-- + ----------------------------------------------------------------------- + Subtable to format flag/coat-of-arms display. + Align="center"s and "width:auto;"s are for sake of Internet Explorer. + ----------------------------------------------------------------------- + --><table align="center" style="width:100%; background:none;"><!-- + -----------Karūga i/ci gerba atvaigs----------- + --><tr> + <td align="center" + style="{{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--then:-->width:58%;}}<!--(58% as flags usually wider than coats-of-arms/symbols. Also accommodates IE.)--> vertical-align:middle;"><!-- + -->[[File:{{{karūga_atvaigs|}}}|125px|border|{{#if:{{{karūga_pasauka|}}} + |<!--then:-->{{{karūga_pasauka|}}}}}]]<!--end border:--><!-- + --></td> + {{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--then:--><td align="center" style="width:auto; vertical-align:middle;"><!-- + -->[[File:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |{{{gerba_plotums|75px}}} |{{#if:{{{gerba_pasauka|}}} + |<!--then:-->{{{gerba_pasauka}}}}}]]<!-- + --></td> + }} + </tr><!-- + ----------Karūga i/ci gerba paroksti---------- + --><tr> + {{#if:{{{karūga_pasauka}}} |<!--then: + --><td align="center"><small>[[{{{karūga_pasauka|}}}|{{{flag_caption|Karūgs}}}]]</small></td> + }} + {{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |<!--then: + --><td align="center"><small>[[{{{gerba_pasauka}}}|{{{symbol_type|Gerbs}}}]]</small></td> + }} + </tr><!-- + ---------Zamtabelis beigys:--------- + --></table> + </td> + </tr><!-- + +-->|<!--elseF: + --------------------------------------------------------------------------- + Karūga atvaiga navā, irā tik gerba atvaigs: + --------------------------------------------------------------------------- + -->{{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--thenS2: + --><tr class="mergedtoprow"> + <td class="maptable" colspan="3" align="center" style="padding:0.5em 0;"><!-- + ----------------------------------------------------------------------- + Subtable to format coat-of-arms (or other symbol) display. + Align="center"s and "width:auto;"s are for sake of Internet Explorer. + ----------------------------------------------------------------------- + --><table align="center" style="width:100%; background:none;"><!-- + -----------Gerba atvaigs----------- + --><tr> + <td align="center" + style="width:auto; vertical-align:middle;"><!-- + -->[[File:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |{{{gerba_plotums|85px}}} |{{{gerba_pasauka}}}]]</td> + </tr><!-- + ----------Gerba paroksts---------- + --><tr> + <td align="center"><!-- + --><small>[[{{{gerba_pasauka}}}|{{{symbol_type|Gerbs}}}]]</small><!-- + --></td> + </tr><!-- + ---------Zamtabelis beigys:---------- + --></table> + </td> + </tr><!-- + -->}}<!--(endS2) +-->}} +<!-- ****** Golvonī dati ****** --> +{{#if: {{{nūvoda_pasauka|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''{{{nūvods}}}:''' +{{!}} [[{{{nūvoda_pasauka}}}|{{{nūvoda_pasauka}}}]] +}} +|- +{{#if: {{{centrys|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Centrys:''' +{{!}} [[{{{centrys}}}|{{{centrys}}}]] +}} +|- +{{#if: {{{centrys2|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Centrys:''' +{{!}} {{{centrys2}}} +}} +|- +{{#if: {{{pluots|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Pluots:''' +{{!}} {{{pluots}}}&nbsp;km<sup>2</sup> +}} +|- +{{#if: {{{dzeivuotuoju_skaits|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Dzeivuotuoju sk.{{#if: {{{dzeivuotuoji_gods|}}}|&nbsp;({{{dzeivuotuoji_gods}}})}}:''' +{{!}} {{{dzeivuotuoju_skaits}}} +}} +|- +{{#if: {{{bīzeiba|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Bīzeiba:''' +{{!}} {{{bīzeiba}}}&nbsp;dz./km<sup>2</sup> +}} +|- +{{#if: {{{īstateits|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Īstateits:''' +{{!}} [[{{{īstateits}}}]]&nbsp;godā +}} +|- +{{#if: {{{likvidets|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Likvidets:''' +{{!}} [[{{{likvidets}}}]]&nbsp;godā +}} +|- +{{#if: {{{teritoriskais_dalejums|}}}| +{{!}} style="vertical-align: top; text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Teritoriskais<br />dalejums:''' +{{!}} {{{teritoriskais_dalejums}}} +}} +|- +{{#if: {{{pakaļpīņu_centri|}}}| +{{!}} style="vertical-align: top; text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Pakaļpīņu<br />centri:''' +{{!}} {{{pakaļpīņu_centri}}} +}} +|- +{{#if: {{{mīsti_i_solys|}}}| +{{!}} style="vertical-align: top; text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Mīsti i solys:''' +{{!}} {{{mīsti_i_solys}}} +}} +|- +{{#if: {{{teiklavīta|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}} '''Teiklavīta''' +{{!}} [http://{{{teiklavīta}}} {{{teiklavīta}}}] +}} +|- +|}</includeonly><noinclude> +{{dokumentaceja}} + +[[Category:Geografejis infoskreinis|Latvejis nūvods]] +[[Category:Latvejis geografejis taisi|Nūvods]] + +</noinclude> + 418o534ap13juff2jom0l18y5vcfw1u + + + + Taiss:Navbar + 10 + 284 + + 31460 + 22779 + 2016-06-20T02:39:49Z + + YiFeiBot + 2627 + + + Bot: Migrating 103 langlinks, now provided by [[d:|Wikidata]] on [[d:q5406543]]; 9 langlinks remaining + wikitext + text/x-wiki + <includeonly><span class="noprint plainlinks navbar" style="{{{style|}}}"><!-- + +-->{{#if:{{{mini|}}}{{{plain|}}}|<!--nothing-->|<!--else: +--><span style="{{{fontstyle|}}}">{{{text|This box:}}} </span>}}<!-- + +-->{{#if:{{{brackets|}}}|<span style="{{{fontstyle|}}}">&#91;</span>}}<!-- + +--><span style="white-space:nowrap;word-spacing:-.12em;"><!-- +-->[[{{transclude|{{{1}}}}}|<span style="{{{fontstyle|color:#002bb8;}}}" title="Apsavērt itū taisu"><!-- +-->{{#if:{{{mini|}}}|v|vērtīs}}</span>]]<!-- + +--><span style="{{{fontstyle|}}}">&#32;<b>&middot;</b>&#32;</span><!-- +-->[[{{TALKPAGENAME:{{transclude|{{{1}}}}}}}|<span style="{{{fontstyle|color:#002bb8;}}}" title="Sprīst ap itū taisu"><!-- +-->{{#if:{{{mini|}}}|s|sprīža}}</span>]]<!-- + +-->{{#if:{{{noedit|}}}|<!--nothing-->|<!--else: +--><span style="{{{fontstyle|}}}">&#32;<b>&middot;</b>&#32;</span><!-- +-->[{{fullurl:{{transclude|{{{1}}}}}|action=edit}} <span style="{{{fontstyle|color:#002bb8;}}}" title="Pataiseit itū taisu"><!-- +-->{{#if:{{{mini|}}}|p|pataiseit}}</span>]}}<!-- +--></span><!-- + +-->{{#if:{{{brackets|}}}|<span style="{{{fontstyle|}}}">&#93;</span>}}<!-- + +--></span></includeonly><noinclude> +{{dokumentaceja}} + +[[be-x-old:Шаблён:Спасылкі шаблёну]] +[[bn:Template:তথ্যছক-Tnavbar]] +[[da:Skabelon:Tnavbar]] +[[eu:Txantiloi:Tnavbar]] +[[fo:Fyrimynd:Tnavbar]] +[[hi:साँचा:Tnavbar]] +[[ko:틀:안내 참조]] +[[la:Formula:Tnavbar]] +[[pt:Predefinição:Navbar]] +[[war:Template:Tnavbar]] +</noinclude> + cjczu63wt4wlbukc6dh2i7nab6jklpd + + + + Taiss:Navbox + 10 + 285 + + 30809 + 28914 + 2015-08-08T12:09:05Z + + YiFeiBot + 2627 + + + Bot: Migrating 2 langlinks, now provided by [[d:|Wikidata]] on [[d:q5030944]] + wikitext + text/x-wiki + <!-- + +Please do not edit without discussion first as this is a VERY complex template. + +-->{{#switch:{{{border|{{{1|}}}}}}|subgroup|child=</div>|none=|#default=<table class="navbox {{{bodyclass|}}}" cellspacing="0" <!-- + -->style="{{{bodystyle|}}};{{{style|}}}"><tr><td style="padding:2px;">}}<!-- + +--><table cellspacing="0" class="nowraplinks {{#if:{{{title|}}}|{{#switch:{{{state|}}}|plain|off=|<!-- + -->#default=collapsible {{#if:{{{state|}}}|{{{state}}}|autocollapse}}}}}} {{#switch:{{{border|{{{1|}}}}}}|<!-- + -->subgroup|child|none=navbox-subgroup" style="width:100%;{{{bodystyle|}}};{{{style|}}}|<!-- + -->#default=" style="width:100%;background:transparent;color:inherit}};{{{innerstyle|}}};"><!-- + + +---Title and Navbar--- +-->{{#if:{{{title|}}}|<tr>{{#if:{{{titlegroup|}}}|<!-- + --><td class="navbox-group" style="{{{basestyle|}}};{{{groupstyle|}}};{{{titlegroupstyle|}}}">{{{titlegroup|}}}</td><!-- + --><th style="border-left:2px solid #fdfdfd;width:100%;|<th style="}}{{{basestyle|}}};{{{titlestyle|}}}" <!-- + -->colspan={{#expr:2{{#if:{{{imageleft|}}}|+1}}{{#if:{{{image|}}}|+1}}{{#if:{{{titlegroup|}}}|-1}}}} <!-- + -->class="navbox-title"><!-- + +-->{{#if:{{#switch:{{{navbar|}}}|plain|off=1}}<!-- + -->{{#if:{{{name|}}}||{{#switch:{{{border|{{{1|}}}}}}|subgroup|child|none=1}}}}|<!-- + -->{{#ifeq:{{{navbar|}}}|off|{{#ifeq:{{{state|}}}|plain|<span style="float:right;width:6em;">&nbsp;</span>}}|<!-- + -->{{#ifeq:{{{state|}}}|plain||<span style="float:left;width:6em;">&nbsp;</span>}}}}|<!-- + --><span style="float:left;width:6em;text-align:left;">{{#if:{{{name|}}}|<!-- + -->{{Navbar|{{{name}}}|mini=1|fontstyle={{{basestyle|}}};{{{titlestyle|}}};<!-- + -->background:none transparent;border:none;font-size:100%;}}|<!-- + --><span class="error" style="white-space:nowrap;">Error: No name provided</span>}}</span><!-- + -->{{#ifeq:{{{state|}}}|plain|<span style="float:right;width:6em;">&nbsp;</span>}}}}<!-- + + --><span class="{{{titleclass|}}}" style="font-size:{{#switch:{{{border|{{{1|}}}}}}|subgroup|child|none=100|#default=110}}%;"><!-- + -->{{{title}}}</span></th></tr>}}<!-- + + +---Above--- +-->{{#if:{{{above|}}}|<!-- + -->{{#if:{{{title|}}}|<tr style="height:2px;"><td></td></tr>}}<!-- + --><tr><td class="navbox-abovebelow" style="{{{basestyle|}}};{{{abovestyle|}}}" <!-- + -->colspan="{{#expr:2{{#if:{{{imageleft|}}}|+1}}{{#if:{{{image|}}}|+1}}}}">{{{above}}}</td></tr>}}<!-- + + +---Body--- + +---First group/list and images--- +-->{{#if:{{{list1|}}}|{{#if:{{{title|}}}{{{above|}}}|<tr style="height:2px;"><td></td></tr>}}<tr><!-- + +-->{{#if:{{{imageleft|}}}|<!-- + --><td style="width:0%;padding:0px 2px 0px 0px;{{{imageleftstyle|}}}" <!-- + -->rowspan={{#expr:1{{#if:{{{list2|}}}|+2}}{{#if:{{{list3|}}}|+2}}{{#if:{{{list4|}}}|+2}}<!-- + -->{{#if:{{{list5|}}}|+2}}{{#if:{{{list6|}}}|+2}}{{#if:{{{list7|}}}|+2}}{{#if:{{{list8|}}}|+2}}<!-- + -->{{#if:{{{list9|}}}|+2}}{{#if:{{{list10|}}}|+2}}{{#if:{{{list11|}}}|+2}}{{#if:{{{list12|}}}|+2}}<!-- + -->{{#if:{{{list13|}}}|+2}}{{#if:{{{list14|}}}|+2}}{{#if:{{{list15|}}}|+2}}{{#if:{{{list16|}}}|+2}}<!-- + -->{{#if:{{{list17|}}}|+2}}{{#if:{{{list18|}}}|+2}}{{#if:{{{list19|}}}|+2}}{{#if:{{{list20|}}}|+2}}}}><!-- + -->{{{imageleft}}}</td>}}<!-- + + -->{{#if:{{{group1|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group1style|}}}"><!-- + -->{{{group1}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list1style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{list1padding|{{{listpadding|0em 0.25em}}}}}}"> +{{{list1}}}</div></td><!-- + +-->{{#if:{{{image|}}}|<!-- + --><td style="width:0%;padding:0px 0px 0px 2px;{{{imagestyle|}}}" <!-- + -->rowspan={{#expr:1{{#if:{{{list2|}}}|+2}}{{#if:{{{list3|}}}|+2}}{{#if:{{{list4|}}}|+2}}<!-- + -->{{#if:{{{list5|}}}|+2}}{{#if:{{{list6|}}}|+2}}{{#if:{{{list7|}}}|+2}}{{#if:{{{list8|}}}|+2}}<!-- + -->{{#if:{{{list9|}}}|+2}}{{#if:{{{list10|}}}|+2}}{{#if:{{{list11|}}}|+2}}{{#if:{{{list12|}}}|+2}}<!-- + -->{{#if:{{{list13|}}}|+2}}{{#if:{{{list14|}}}|+2}}{{#if:{{{list15|}}}|+2}}{{#if:{{{list16|}}}|+2}}<!-- + -->{{#if:{{{list17|}}}|+2}}{{#if:{{{list18|}}}|+2}}{{#if:{{{list19|}}}|+2}}{{#if:{{{list20|}}}|+2}}}}><!-- + -->{{{image}}}</td>}}<!-- + +--></tr>}}<!-- + + +---Remaining groups/lists--- + +-->{{#if:{{{list2|}}}|<!-- + -->{{#if:{{{title|}}}{{{above|}}}{{{list1|}}}|<tr style="height:2px"><td></td></tr>}}<tr><!-- + -->{{#if:{{{group2|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group2style|}}}"><!-- + -->{{{group2}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list2style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list2}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list3|}}}|<!-- + -->{{#if:{{{title|}}}{{{above|}}}{{{list1|}}}{{{list2|}}}|<tr style="height:2px"><td></td></tr>}}<tr><!-- + -->{{#if:{{{group3|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group3style|}}}"><!-- + -->{{{group3}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list3style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list3}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list4|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group4|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group4style|}}}"><!-- + -->{{{group4}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list4style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list4}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list5|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group5|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group5style|}}}"><!-- + -->{{{group5}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list5style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list5}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list6|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group6|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group6style|}}}"><!-- + -->{{{group6}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list6style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list6}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list7|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group7|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group7style|}}}"><!-- + -->{{{group7}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list7style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list7}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list8|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group8|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group8style|}}}"><!-- + -->{{{group8}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list8style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list8}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list9|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group9|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group9style|}}}"><!-- + -->{{{group9}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list9style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list9}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list10|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group10|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group10style|}}}"><!-- + -->{{{group10}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list10style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list10}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list11|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group11|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group11style|}}}"><!-- + -->{{{group11}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list11style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list11}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list12|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group12|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group12style|}}}"><!-- + -->{{{group12}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list12style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list12}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list13|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group13|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group13style|}}}"><!-- + -->{{{group13}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list13style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list13}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list14|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group14|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group14style|}}}"><!-- + -->{{{group14}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list14style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list14}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list15|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group15|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group15style|}}}"><!-- + -->{{{group15}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list15style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list15}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list16|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group16|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group16style|}}}"><!-- + -->{{{group16}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list16style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list16}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list17|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group17|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group17style|}}}"><!-- + -->{{{group17}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list17style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list17}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list18|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group18|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group18style|}}}"><!-- + -->{{{group18}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list18style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list18}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list19|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group19|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group19style|}}}"><!-- + -->{{{group19}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{oddstyle|}}};{{{list19style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|even|{{{evenodd|odd}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list19}}}</div></td></tr>}}<!-- + +-->{{#if:{{{list20|}}}|<!-- + --><tr style="height:2px"><td></td></tr><tr><!-- + -->{{#if:{{{group20|}}}|<td class="navbox-group" style="{{{basestyle|}}};{{#if:{{{groupwidth|}}}|width:{{{groupwidth}}};}}{{{groupstyle|}}};{{{group20style|}}}"><!-- + -->{{{group20}}}</td><td style="text-align:left;border-left-width:2px;border-left-style:solid;|<td colspan=2 style="}}<!-- + -->{{#if:{{{groupwidth|}}}||width:100%;}}padding:0px;{{{liststyle|}}};{{{evenstyle|}}};{{{list20style|}}}" <!-- + -->class="navbox-list navbox-{{#ifeq:{{{evenodd|}}}|swap|odd|{{{evenodd|even}}}}}"><!-- + --><div style="padding:{{{listpadding|0em 0.25em}}}"> +{{{list20}}}</div></td></tr>}}<!-- + + +---Below--- +-->{{#if:{{{below|}}}|<!-- + -->{{#if:{{{title|}}}{{{above|}}}{{{list1|}}}{{{list2|}}}{{{list3|}}}|<tr style="height:2px;"><td></td></tr>}}<!-- + --><tr><td class="navbox-abovebelow" style="{{{basestyle|}}};{{{belowstyle|}}}" <!-- + -->colspan="{{#expr:2{{#if:{{{imageleft|}}}|+1}}{{#if:{{{image|}}}|+1}}}}">{{{below}}}</td></tr>}}<!-- + + +--></table>{{#switch:{{{border|{{{1|}}}}}}|subgroup|child=<div>|none=|#default=</td></tr></table>}}<noinclude> +{{Dokumentaceja}} + +[[he:תבנית:Navbox]] +[[nl:Sjabloon:Navbox]] +[[sk:Šablóna:Navbox]] +</noinclude> + 85cv7r2mogzmny1gsmip9zm8jvxzltc + + + + Taiss:• + 10 + 286 + + 4406 + 4405 + 2011-03-19T13:07:35Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + <includeonly>&nbsp;&bull; </includeonly> + 4fy7hg6y6ryzyzutecd2fzc7fmuekbw + + + + Taiss:- + 10 + 287 + + 30150 + 19649 + 2013-11-20T23:13:03Z + + Delusion23 + 2178 + + [[:d:Q5007897]] + wikitext + text/x-wiki + <includeonly><br style="clear:both" /></includeonly><noinclude> +{{documentation}} +</noinclude> + gdjrwin1rr8dn9xer5x2be5jze06iog + + + + Taiss:Europys vaļsteibys + 10 + 288 + + 29937 + 28260 + 2013-08-01T07:07:01Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6328695]] + wikitext + text/x-wiki + {{Navbox +|name = Europys vaļsteibys +|title = [[Europa|Europys]] vaļsteibys +|list1 = [[Albaneja]]{{•}} [[Andora]]{{•}} [[Armeneja]]<sup>2</sup>{{•}} [[Austreja]]{{•}} [[Azerbaidžans]]<sup>2</sup>{{•}} [[Beļgeja]]{{•}} [[Boltkrīveja]]{{•}} [[Bosneja i Hercegovina]]{{•}} [[Bulgareja]]{{•}} [[Čekeja]]{{•}} [[Daneja]]<sup>3</sup>{{•}} [[Eireja]]{{•}} [[Grekeja]]{{•}} [[Gruzeja]]<sup>2</sup>{{•}} [[Horvateja]]{{•}} [[Igauneja]]{{•}} [[Īslandeja]]{{•}} [[Italeja]]<sup>1</sup>{{•}} [[Kazaheja]]<sup>1</sup>{{•}} [[Kipra]]<sup>2</sup>{{•}} [[Krīveja]]<sup>1</sup>{{•}} [[Latveja]]{{•}} [[Lelbrytaneja]]<sup>3</sup>{{•}} [[Liktenšteins]]{{•}} [[Lītova]]{{•}} [[Luksemburga]]{{•}} [[Makedonejis Republika|Makedoneja]]{{•}} [[Malnkalneja]]{{•}} [[Malta]]{{•}} [[Moldaveja]]{{•}} [[Monaks]]{{•}} [[Nīderlandeja]]<sup>3</sup>{{•}} [[Norvegeja]]<sup>3</sup>{{•}} [[Portugaleja]]<sup>3</sup>{{•}} [[Praņceja]]<sup>3</sup>{{•}} [[Puoleja]]{{•}} [[Rumuneja]]{{•}} [[San Marins]]{{•}} [[Serbeja]]{{•}} [[Slovakeja]]{{•}} [[Sloveneja]]{{•}} [[Spaneja]]<sup>3</sup>{{•}} [[Suomeja]]{{•}} [[Švedeja]]{{•}} [[Šveicareja]]{{•}} [[Turceja]]<sup>1</sup>{{•}} [[Ukraina]]{{•}} [[Vatikans]]{{•}} [[Vengreja]]{{•}} [[Vuoceja]] +|below = <sup>1</sup>&nbsp;Daļa vaļsteibys atsarūn uors Europys.&nbsp;&nbsp;<sup>2</sup>&nbsp;Vaļsteiba atsarūn pylnai Vokoru Azejā, bet jai irā socialai polistiskys saitys ar Europu.&nbsp;&nbsp;<sup>3</sup>&nbsp;Vaļsteibai irā dasaiteiguos ci leidzeigys teritorejis uors Europys. +}}<noinclude> +[[Kategoreja:Geografejis taisi]] + +[[ml:ഫലകം:യൂറോപ്യന്‍ രാഷ്ട്രങ്ങള്‍]] +</noinclude> + mgb9gt8h7mc5uil9agn5xdtxg9dny08 + + + + Taiss:Nūruodis + 10 + 289 + + 30866 + 28261 + 2015-08-26T20:45:52Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q5462890]] + wikitext + text/x-wiki + <div class="references-small {{#if: {{{colwidth|}}} | references-column-width | {{#iferror: {{#ifexpr: {{{1|1}}}>1 | references-column-count references-column-count-{{{1}}} }} }} }}" {{#if: {{{colwidth|}}}| style="-moz-column-width:{{{colwidth}}}; column-width:{{{colwidth}}};" | {{#if: {{{1|}}}| style="-moz-column-count:{{{1}}}; column-count:{{{1}}};" }} }}> +{{#tag:references|{{{refs|}}}|group={{{group|}}}}}</div><noinclude> + +[[br:Patrom:Reflist]] +[[he:תבנית:Reflist]] +[[pt:Predefinição:Reflist]] +</noinclude> + ejpzpft0vg3s2l94qjp3kn3ap000n3x + + + + Taiss:Reflist + 10 + 290 + + + 4675 + 4439 + 2011-03-19T13:09:50Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Nūruodis]] + 4xixidgbvgar8awkli4ruy8wqrbnome + + + + Taiss:Commons + 10 + 292 + + 30810 + 29938 + 2015-08-08T12:09:25Z + + YiFeiBot + 2627 + + + Bot: Migrating 4 langlinks, now provided by [[d:|Wikidata]] on [[d:q5462387]] + wikitext + text/x-wiki + <div class="noprint" style="clear: right; border: solid #aaa 1px; margin: 0 0 1em 1em; font-size: 90%; background: #f9f9f9; width: 250px; padding: 4px; spacing: 0px; text-align: left; float: right;"> +<div style="float: left;">[[File:Commons-logo.svg|30px|none|Commons:Category]]</div> +<div style="margin-left: 40px;">[[Vikiteka|Vikitekā]] irā dabojami faili ap itū temu. <br /> Verīs: '''''[[Commons:{{{1|{{SUBPAGENAME}}}}}|{{{2|{{{1|{{SUBPAGENAME}}}}}}}}]]'''''</div> +</div><noinclude> + +{{DEFAULTSORT:Commons}} +[[Category:Škārsviki taisi]] + +[[az:Şablon:Commons]] +[[hy:Կաղապար:Նավարկում]] +</noinclude> + 065athfbod0wan4i674a0kf6vtuvrpu + + + + Taiss:Lang + 10 + 293 + + 30811 + 30001 + 2015-08-08T12:09:45Z + + YiFeiBot + 2627 + + + Bot: Migrating 6 langlinks, now provided by [[d:|Wikidata]] on [[d:q6610935]] + wikitext + text/x-wiki + <span lang="{{{1}}}" xml:lang="{{{1}}}">{{{2}}}</span><noinclude> + +</noinclude> + dj5xgo7bt468f6jdxyysjt5jgqw6mw7 + + + + Taiss:LangWithName + 10 + 294 + + 4679 + 4486 + 2011-03-19T13:09:50Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + {{ll|{{{2}}}}}: {{lang|{{{1}}}|{{{3}}}}} + myni9mlcx5wzrdg9boga6b22rilga51 + + + + Taiss:Language link + 10 + 295 + + 4458 + 4457 + 2011-03-19T13:07:38Z + + SPQRobin + 2 + + + 4 versijas: importing articles from Incubator + wikitext + text/x-wiki + [[{{{1}}} volūda|{{{1}}}]] + jkm8zok1j3gs752q3jmrh8horswccpz + + + + Taiss:Vol-en + 10 + 296 + + 29995 + 14801 + 2013-08-16T15:45:40Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q9518654]] + wikitext + text/x-wiki + {{langWithName|en|anglīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|en]] + +</noinclude> + aj7lnjx1j8295fu9mq7ga21enj4s396 + + + + Taiss:Vol-la + 10 + 297 + + 30812 + 29999 + 2015-08-08T12:10:05Z + + YiFeiBot + 2627 + + + Bot: Migrating 3 langlinks, now provided by [[d:|Wikidata]] on [[d:q5905178]] + wikitext + text/x-wiki + {{langWithName|la|latiņu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|la]] + +</noinclude> + tekal2qkx18mnj1ah7dengcnshs3pf7 + + + + Taiss:Vol-lv + 10 + 298 + + 30000 + 14779 + 2013-08-16T15:45:44Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6426392]] + wikitext + text/x-wiki + {{langWithName|lv|latvīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|lv]] + +</noinclude> + kjyqe4w3j92w7rmkllxq8em4nnnfv7o + + + + Taiss:Vol-ru + 10 + 299 + + 29998 + 14783 + 2013-08-16T15:45:43Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6132517]] + wikitext + text/x-wiki + {{langWithName|ru|krīvu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|ru]] + +</noinclude> + 0qcgek8aerdzslee9e67mvrbv5lo6lx + + + + Taiss:Ll + 10 + 302 + + + 9449 + 4490 + 2011-03-19T13:45:23Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #redirect [[Template:Language link]] + sh2qa0yqgf31zuqodq2jte4oz1v7ykz + + + + Taiss:Vol-de + 10 + 303 + + 28263 + 26504 + 2013-03-07T18:40:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 51 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5901420]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{langWithName|de|vuocīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|de]] + +</noinclude> + lz2r3sxka15f585ig2izw6hjerzz09k + + + + Taiss:Coor URL + 10 + 304 + + 4503 + 4502 + 2011-03-19T13:07:40Z + + SPQRobin + 2 + + + 5 versijas: importing articles from Incubator + wikitext + text/x-wiki + http://stable.toolserver.org/geohack/geohack.php?pagename={{FULLPAGENAMEE}}&params=<noinclude> + +[[Category:Wp/ltg|!]] +</noinclude> + 8m1bk9h76swhcxgg37q7dztothzcaun + + + + Taiss:Coord + 10 + 305 + + 30614 + 30611 + 2015-03-23T17:38:59Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + <includeonly>{{#invoke:Coordinates|coord}}</includeonly> + rtc71mmd8cm92vs49glfn2hhuwxjujj + + + + Taiss:Coord/display/inline,title + 10 + 306 + + 4514 + 4513 + 2011-03-19T13:07:40Z + + SPQRobin + 2 + + + 4 versijas: importing articles from Incubator + wikitext + text/x-wiki + {{{1}}}<noinclude> +[[Category:Wp/ltg|!]] +</noinclude> + mwl5ha7h5b7mytw54n53ijpj3sl3gky + + + + Taiss:Coord/input/dms + 10 + 307 + + 4519 + 4518 + 2011-03-19T13:07:41Z + + SPQRobin + 2 + + + 4 versijas: importing articles from Incubator + wikitext + text/x-wiki + <includeonly>{{Coord/link|dms-lat={{{1}}}°{{{2}}}′{{{3}}}″{{{4}}}|dms-long={{{5}}}°{{{6}}}′{{{7}}}″{{{8}}}|dec-lat={{Coord/dms2dec|{{{4}}}|{{{1}}}|{{{2}}}|{{{3}}}}}|dec-long={{Coord/dms2dec|{{{8}}}|{{{5}}}|{{{6}}}|{{{7}}}}}|param={{{1}}}_{{{2}}}_{{{3}}}_{{{4}}}_{{{5}}}_{{{6}}}_{{{7}}}_{{{8}}}_{{{9|}}}|default={{#if:{{{format|}}}|{{{format}}}|dms}}|name={{{name|}}}}}</includeonly><noinclude> +need to add smth like <nowiki>[[Category:Koordinātu veidnes]]</nowiki> +[[Category:Wp/ltg|!]] +</noinclude> + nlqbgvc65q2fkkt53xgm6qj1s6geqfb + + + + Taiss:Coord/link + 10 + 308 + + 4524 + 4523 + 2011-03-19T13:07:41Z + + SPQRobin + 2 + + + 4 versijas: importing articles from Incubator + wikitext + text/x-wiki + <span class="plainlinksneverexpand">[{{Coor URL}}{{{param}}}{{#if:{{{name|}}}|&title={{urlencode:{{{name}}}}}}} <span class="{{#ifeq:{{{default|}}}|dec|geo-nondefault|geo-default}}"><span class="geo-dms" title="Maps, aerial photos, and other data for {{{dms-lat}}} {{{dms-long}}}"><span class="latitude">{{{dms-lat}}}</span> <span class="longitude">{{{dms-long}}}</span></span></span><span class="geo-multi-punct"></span><span class="{{#ifeq:{{{default|}}}|dec|geo-default|geo-nondefault}}">{{#if:{{{name|}}}|<span class="vcard">|}}{{#if:{{{name|}}}|<span style="display:none">&#xfeff; (<span class="fn org">{{{name|}}}</span>)</span></span>|}}]</span> + 5mnp8bchsaaaivmqo5yne9md1p70spi + + + + Taiss:Infoskreine Latvejis mīsts + 10 + 310 + + 30649 + 30648 + 2015-03-23T18:25:47Z + + Edgars2007 + 114 + + Atcēlu [[Special:Contributions/Edgars2007|Edgars2007]] ([[User talk:Edgars2007|Diskusija]]) izdarīto izmaiņu 30648 + wikitext + text/x-wiki + <includeonly>{| class="infobox" style="width: 270px; font-size: 90%; margin: 2px; margin-left: 1em; text-align: left;" +|- +! colspan="2" style="font-size: larger; text-align:center;" | {{#if: {{{pasauka|}}}|{{{pasauka}}}}} +{{#if:{{{mīsta_tips|}}}| +<tr <!-- ***** category ***** --> class="mergedtoprow"> + <td colspan="2" style="text-align:center;background:#cddeff;">—&nbsp;&nbsp;'''{{{mīsta_tips|}}}'''&nbsp;&nbsp;— </td> + </tr> +}} +|- +<!-- ****** Mīsta atvaigs, pošlobuo mīsta panorama ****** --> +{{#if: {{{atvaiga_pasauka|}}}| +{{!}} colspan="2" align="center" {{!}} <center>[[Image:{{{atvaiga_pasauka|}}}|{{#if:{{{atvaiga_mārs|}}}|{{{atvaiga_mārs|}}}|250px}}|border|{{{atvaiga_aprakstejums}}}]]</div> <small>{{{atvaiga_aprakstejums}}}</small></center>}} +|- +<!-- ****** Gerbs i karūgs ****** --> +{{#if:{{{karūga_atvaigs|}}} + |<!--thenF: + ------------------------------------------------------------------------------ + Ite irā karūga atvaigs, paruoda taipat gerba atvaigu, ka tys irā: + ------------------------------------------------------------------------------ + --><tr class="mergedtoprow"> + <td class="maptable" colspan="3" align="center" style="padding:0.5em 0;"><!-- + ----------------------------------------------------------------------- + Subtable to format flag/coat-of-arms display. + Align="center"s and "width:auto;"s are for sake of Internet Explorer. + ----------------------------------------------------------------------- + --><table align="center" style="width:100%; background:none;"><!-- + -----------Karūga i/ci gerba atvaigs----------- + --><tr> + <td align="center" + style="{{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--then:-->width:58%;}}<!--(58% as flags usually wider than coats-of-arms/symbols. Also accommodates IE.)--> vertical-align:middle;"><!-- + -->[[Image:{{{karūga_atvaigs|}}}|125px|border|{{#if:{{{karūga_pasauka|}}} + |<!--then:-->{{{karūga_pasauka|}}}}}]]<!--end border:--><!-- + --></td> + {{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--then:--><td align="center" style="width:auto; vertical-align:middle;"><!-- + -->[[Fails:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |{{{gerba_pluots|75px}}} |{{#if:{{{gerba_pasauka|}}} + |<!--then:-->{{{gerba_pasauka}}}}}]]<!-- + --></td> + }} + </tr><!-- + ----------Karūga i/ci gerba paroksti---------- + --><tr> + {{#if:{{{karūga_pasauka}}} |<!--then: + --><td align="center"><small>[[{{{karūga_pasauka|}}}|{{{flag_caption|Karūgs}}}]]</small></td> + }} + {{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |<!--then: + --><td align="center"><small>[[{{{gerba_pasauka}}}|{{{symbol_type|Gerbs}}}]]</small></td> + }} + </tr><!-- + ---------Zamtabelis beigys:--------- + --></table> + </td> + </tr><!-- + +-->|<!--elseF: + --------------------------------------------------------------------------- + Karūga atvaiga navā, irā tik gerba atvaigs: + --------------------------------------------------------------------------- + -->{{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--thenS2: + --><tr class="mergedtoprow"> + <td class="maptable" colspan="3" align="center" style="padding:0.5em 0;"><!-- + ----------------------------------------------------------------------- + Subtable to format coat-of-arms (or other symbol) display. + Align="center"s and "width:auto;"s are for sake of Internet Explorer. + ----------------------------------------------------------------------- + --><table align="center" style="width:100%; background:none;"><!-- + -----------Gerba atvaigs----------- + --><tr> + <td align="center" + style="width:auto; vertical-align:middle;"><!-- + -->[[Image:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |{{{gerba_pluots|85px}}} |{{{gerba_pasauka}}}]]</td> + </tr><!-- + ----------Gerba paroksts---------- + --><tr> + <td align="center"><!-- + --><small>[[{{{gerba_pasauka}}}|{{{symbol_type|Gerbs}}}]]</small><!-- + --></td> + </tr><!-- + ---------Zamtabelis beigys:---------- + --></table> + </td> + </tr><!-- + -->}}<!--(endS2) +-->}} +<!-- Automatiskuo nūstuojuma zemislopa; sasīta ar koordinatom --> +{{#if:{{{koordinatu_zemislopa|}}}| + <tr class="mergedrow"> + <td colspan="2" align="center"> +{{Vītys zemislopa|{{{koordinatu_zemislopa|}}} +|label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pasauka|}}}|{{{pasauka}}}|{{{official_name|}}}}} }} +|lat = {{#if:{{{latm|}}}{{{latNS|}}}| |{{{latd|}}} }} +|long = {{#if:{{{longm|}}}{{{longEW|}}}| |{{{longd|}}} }} +|lat_deg={{#if:{{{latm|}}}{{{latNS|}}}|{{{latd|}}}| }} +|lat_min={{#if:{{{latm|}}}{{{latNS|}}}|{{{latm|}}}| }} +|lat_sec={{#if:{{{lats|}}}{{{latNS|}}}|{{{lats|}}}| }} +|lat_dir={{#if:{{{latNS|}}}|{{{latNS|}}}| }} +|lon_deg={{#if:{{{longm|}}}{{{longEW|}}}|{{{longd|}}}| }} +|lon_min={{#if:{{{longm|}}}{{{longEW|}}}|{{{longm|}}}| }} +|lon_sec={{#if:{{{longs|}}}{{{longEW|}}}|{{{longs|}}}| }} +|lon_dir={{#if:{{{longEW|}}}|{{{longEW|}}}| }} +|float = none +|caption = +|border = #CCCCCC +|position = {{#if:{{{pushpin_label_position|}}} | {{{pushpin_label_position|}}} | right }} +|width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize|}}} | 250 }} +}} +}} +<!-- Atsrasšanuos vītys koordinatys --> +{{#if:{{{latd|}}}| + <tr class="mergedbottomrow"> + <th colspan="2" style="text-align: center; font-size: smaller; padding-bottom: 0.7em;">{{#if:{{both|{{{latd|}}}|{{{longd|}}}}} + |Koordinatys{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})|}}: {{Geobox coor|{{{latd|}}}|{{{latm|}}}|{{{lats|}}}|{{{latNS|}}}|{{{longd|}}}|{{{longm|}}}|{{{longs|}}}|{{{longEW|}}}|{{#if:{{{coordinates_type|}}}|{{{coordinates_type}}}|type:city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{{population_total}}}|R}})}}|}}{{#if:{{{coordinates_region|}}}|_region:{{{coordinates_region}}} }} }}|display={{#if:{{{coordinates_display|}}}|{{{coordinates_display|}}}|inline,title}}|{{#if:{{{coordinates_format|}}}|format|μ2}}={{{coordinates_format|}}}}}{{{coordinates_footnotes|}}} + |{{#if:{{both|{{{wikidata|}}}|{{#property:P625}}}} + |Koordinatys{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})|}}: {{#invoke:Coordinates|coord|type={{#if:{{{coordinates_type|}}}|{{{coordinates_type}}}|type:city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{{population_total}}}|R}})}}|}}{{#if:{{{coordinates_region|}}}|_region:{{{coordinates_region}}}}} }}|{{#ifeq:{{{coordinates_display|}}}|inline|μ1|{{#if:{{{coordinates_display|}}}|title|μ1}}}}={{{coordinates_display|}}}|format={{#if:{{{coordinates_format|}}}|{{{coordinates_format|}}}|dms}}}}{{{coordinates_footnotes|}}} + }} +}}</th> + </tr> +}} +<!-- Atsrasšanuos vītys zemislopa, ka nalītoj "koordinatu zemislopu" --> +{{#if: {{{zemislopys_atvaigs|}}}| + <tr><td colspan="2" style="text-align: center; padding: 0.7em 0.8em 0.7em 0.8em;;">[[Image:{{{zemislopys_atvaigs}}}|none|250px|border]]</td></tr> +}} +|- +{{#if: {{{nūvods|}}}| +{{!}} style="vertical-align: top;"{{!}} '''Nūvods''' +{{!}} [[{{{nūvods}}}|{{{nūvods}}}]] +}} +|- +{{#if: {{{pluots|}}}| +{{!}} '''Pluots''' +{{!}} {{{pluots}}}&nbsp;km² +}} +|- +{{#if: {{{dzeivuotuoju_skaits|}}}| +{{!}} '''Dzeivuotuoju sk.'''{{#if:{{{dzeivuotuoji_gods|}}} |&nbsp;({{{dzeivuotuoji_gods}}})}} +{{!}} {{{dzeivuotuoju_skaits}}} +}} +|- +{{#if: {{{bīzeiba|}}}| +{{!}} '''Bīzeiba''' +{{!}} {{{bīzeiba}}}&nbsp;dz./km² +}} +|- +{{#if: {{{viesturiskuos_pasaukys|}}}| +{{!}} style="vertical-align: top;"{{!}} '''Viesturiskuos pasaukys''' +{{!}} {{{viesturiskuos_pasaukys}}} +}} +|- +{{#if: {{{cytys_pasaukys|}}}| +{{!}} style="vertical-align: top;"{{!}} '''Cytys pasaukys''' +{{!}} {{{cytys_pasaukys}}} +}} +|- +{{#if: {{{īstateits|}}}| +{{!}} '''Īstateits''' +{{!}} [[{{{īstateits}}}|{{{īstateits}}}]] godā +}} +|- +{{#if: {{{mīsta_tīseibys|}}}| +{{!}} '''Mīsta tīseibys''' +{{!}} nu [[{{{mīsta_tīseibys}}}|{{{mīsta_tīseibys}}}]] goda +}} +|- +{{#if: {{{posta_iņdekss|}}}| +{{!}} '''Posta iņdekss''' +{{!}} {{{posta_iņdekss}}} +}} +|- +{{#if: {{{posta_iņdeksi|}}}| +{{!}} style="vertical-align: top;"{{!}} '''Posta iņdeksi''' +{{!}} {{{posta_iņdeksi}}} +}} +|- +{{#if: {{{teiklavīta|}}}| +{{!}} '''Teiklavīta''' +{{!}} [http://{{{teiklavīta}}} {{{teiklavīta}}}] +}} +|- +|}</includeonly><noinclude> +{{Dokumentaceja}} + +{{DEFAULTSORT:Latvejis mists}} +[[Category:Geografejis infoskreinis]] +[[Category:Latvejis geografejis taisi|Infoskreine mists]] +</noinclude> + o11xfpw954twheoc6oktjluykpmr75l + + + + Taiss:Vītys karta/Latveja + 10 + 311 + + + 4569 + 4568 + 2011-03-19T13:07:44Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Latveja]] + bdeopfvu7ot2rnoj9sm7iuab59cygf2 + + + + Taiss:Vītys zemislopa + 10 + 312 + + 30630 + 30629 + 2015-03-23T18:02:11Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + <includeonly>{{#invoke:Vītys zemislopa|main}}</includeonly><noinclude>{{documentation}}</noinclude> + qph0ku4c91urn8ibb0jj9r9krp156mt + + + + Taiss:Vītys zemislopa/Latveja + 10 + 313 + + 29996 + 28264 + 2013-08-16T15:45:41Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q12243]] + wikitext + text/x-wiki + {{#switch:{{{1}}} +| name = Latveja +| top = 58.5 +| bottom = 55.5 +| left = 20.5 +| right = 28.6 +| image = Latvia location map.svg +}}<noinclude>{{Vītys zemislopa/Info|Latveja}} + +{{DEFAULTSORT:Latveja, vītys zemislopa}} +[[Kategoreja:Byusmis vītys taisi]] + +</noinclude> + isyrpktgh0neocyf5x53qd6eqxuinel + + + + Taiss:Commonscat + 10 + 314 + + 31948 + 29926 + 2017-04-25T20:02:19Z + + Turaids + 172 + + + wikitext + text/x-wiki + <div class="noprint" style="clear: right; border: solid #aaa 1px; margin: 0 0 1em 1em; font-size: 90%; background: #f9f9f9; width: 250px; padding: 4px; spacing: 0px; text-align: left; float: right;"> +<div style="float: left;">[[Fails:Commons-logo.svg|30px|none|Commons:Category]]</div> +<div style="margin-left: 40px;">[[Vikiteka|Vikitekā]] ap itū temu irā dabojami faili. Verīs: '''''[[Commons:Category:{{{1|{{SUBPAGENAME}}}}}|{{{2|{{{1|{{SUBPAGENAME}}}}}}}}]]'''''</div> +</div><noinclude> + +[[Kategoreja:Škārsviki taisi]] + +[[da:Skabelon:Commonscat]] +</noinclude> + 03mwroi440l7bmdju1hmvy4wtmasewa + + + + Taiss:Cytys zeimeibys + 10 + 315 + + 29989 + 15492 + 2013-08-16T15:45:31Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5766677]] + wikitext + text/x-wiki + :<small><font color="504A4B">''Itys rakstīņs irā ap {{{1}}}. Verīs [[{{{2}}}|zeimeibu škiršonys puslopu]], kab dazynuotu cytys sapratīņa „'''{{{3}}}'''” zeimeibys.''</font></small><noinclude> +{{dokumentaceja}} + +[[Kategoreja:Zeimeibu škiršonys taisi]] + +</noinclude> + 0b0lh8vjnshwwunfp9i56m66cvnr1yx + + + + Taiss:Vol-da + 10 + 317 + + 29940 + 28266 + 2013-08-01T07:07:11Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5635979]] + wikitext + text/x-wiki + {{langWithName|da|danīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|da]] + +</noinclude> + 5k3u43ogngbbrx7dwwlhwzg411n28im + + + + Taiss:Latvejis mīsti + 10 + 318 + + 29924 + 29540 + 2013-07-06T19:01:00Z + + Jaba1977 + 2043 + + wikidata + wikitext + text/x-wiki + {{Navbox +|name = Latvejis mīsti +|title = <center>[[Latvejis mīsti]] [[Fails:Flag of Latvia.svg|22px|Latveja]]</center> +|group1 = Republikys mīsti +|list1 = [[Daugpiļs]]{{•}} [[Jākubmīsts]]{{•}} [[Jiurmale]]{{•}} [[Līpuoja]]{{•}} [[Meitova]]{{•}} [[Reiga]]{{•}} [[Rēzne]]{{•}} [[Ventspiļs]]{{•}} [[Volmīra]] +|group2 = Nūvodu mīsti +|list2 = [[Ainaži]]{{•}} [[Aizkrauklis]]{{•}} [[Aizpute]]{{•}} [[Akneiša]]{{•}} [[Aluoja]]{{•}} [[Auce]]{{•}} [[Bauske]]{{•}} [[Boldūne]]{{•}} [[Bolūdi]]{{•}} [[Bolvi]]{{•}} [[Bruocāni]]{{•}} [[Cāsi]]{{•}} [[Casvaine]]{{•}} [[Dagda]]{{•}} [[Dūbele]]{{•}} [[Durbe]]{{•}} [[Gruobins]]{{•}} [[Guļbine]]{{•}} [[Ikškila]]{{•}} [[Īlyukste]]{{•}} [[Jaunmeitova]]{{•}} [[Kandova]]{{•}} [[Kegums]]{{•}} [[Kruoslova]]{{•}} [[Kuļdeiga]]{{•}} [[Kuorsova]]{{•}} [[Leigatna]]{{•}} [[Leivuons]]{{•}} [[Lelvuords]]{{•}} [[Limbaži]]{{•}} [[Lubuons (mīsts)|Lubuons]]{{•}} [[Ludza]]{{•}} [[Modyune]]{{•}} [[Mozsalaca]]{{•}} [[Olyuksna]]{{•}} [[Opa]]{{•}} [[Pavilūsta]]{{•}} [[Piļtine]]{{•}} [[Pļavenis]]{{•}} [[Preili]]{{•}} [[Prīkule]]{{•}} [[Rūjīna]]{{•}} [[Sabile]]{{•}} [[Salacgreiva]]{{•}} [[Saldus]]{{•}} [[Saulismale]]{{•}} [[Seda]]{{•}} [[Sigulda]]{{•}} [[Sīnuoja]]{{•}} [[Skrunda]]{{•}} [[Smiļktine]]{{•}} [[Solyspiļs]]{{•}} [[Staicele]]{{•}} [[Steņde]]{{•}} [[Streņči]]{{•}} [[Subata]]{{•}} [[Talsi]]{{•}} [[Tukums]]{{•}} [[Ūlaine]]{{•}} [[Uogre]]{{•}} [[Valdemarpiļs]]{{•}} [[Valka]]{{•}} [[Vangaži]]{{•}} [[Varakļuoni]]{{•}} [[Viļāni]]{{•}} [[Vileks]]{{•}} [[Vīseite]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums| Mīsti]] + +</noinclude> + 1xcn18db9tmurk22jcqh2fi0ns57eji + + + + Taiss:Vol-lt + 10 + 319 + + 29997 + 14777 + 2013-08-16T15:45:41Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q4563]] + wikitext + text/x-wiki + {{langWithName|lt|lītaunīku|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|lt]] + +</noinclude> + 4ei1kfjtzs7fp9u06pbuttdjexca69n + + + + Taiss:Vol-ltg + 10 + 320 + + 29831 + 14795 + 2013-04-15T03:31:51Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{langWithName|ltg|latgaļu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|ltg]] + +</noinclude> + ixa2lba4cdno0no1r9dpwi8dp26di6a + + + + Taiss:Vol-pl + 10 + 321 + + 30003 + 14781 + 2013-08-16T15:45:47Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q7677979]] + wikitext + text/x-wiki + {{langWithName|pl|puoļu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|pl]] + +</noinclude> + g5lwrcrc7rhootll2zmvgp4bacm8ymr + + + + Taiss:Daugpiļs nūvods + 10 + 322 + + 29789 + 24459 + 2013-04-15T01:42:26Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Daugpiļs nūvods +|title = <center> [[Daugpiļs nūvods]] [[Fails:Daugavpils municipality COA.png|13px|Daugpiļs nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Bikernīku pogosts]]{{•}} [[Deminis pogosts]]{{•}} [[Dubnys pogosts]]{{•}} [[Kalkūnis pogosts]]{{•}} [[Kolupa pogosts]]{{•}} [[Laucesys pogosts]]{{•}} [[Leiksnys pogosts]]{{•}} [[Malinovkys pogosts]]{{•}} [[Medumu pogosts]]{{•}} [[Naujinis pogosts]]{{•}} [[Neicgaļa pogosts]]{{•}} [[Ombumuižys pogosts]]{{•}} [[Salīnys pogosts]]{{•}} [[Skrudalīnys pogosts]]{{•}} [[Sveņtis pogosts]]{{•}} [[Tabora pogosts]]{{•}} [[Vabalis pogosts]]{{•}} [[Vacsalīnys pogosts]]{{•}} [[Vyšku pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + 7ai6l8hxc1av5zrj248qgndf7bz6uea + + + + Taiss:Vol-el + 10 + 323 + + 29939 + 28267 + 2013-08-01T07:07:11Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5909871]] + wikitext + text/x-wiki + {{langWithName|el|greku|''{{{1}}}''}}<noinclude> +[[Category:Volūdu taisi|el]] + +</noinclude> + p9t883vtpqi3pugt9x7ggwbzs7y7fod + + + + Taiss:Vol-et + 10 + 324 + + 29941 + 29460 + 2013-08-01T07:07:12Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q8127404]] + wikitext + text/x-wiki + {{langWithName|et|igauņu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|et]] + +</noinclude> + 2urw0ubtgas3wz89m9k3spwtlmwia60 + + + + Taiss:Infoskreine Volūda/IPA + 10 + 325 + + 29987 + 29961 + 2013-08-16T15:45:31Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q9563705]] + wikitext + text/x-wiki + |- +|colspan="3" class="boilerplate metadata" style="line-height:10pt; padding:0.5em;"| <small>'''Pīzeime''': Itamā lopā var byut [[IPA|IPA]] fonetiskuos rokstu zeimis [[Unikods|unikodā]].</small> + 046rkjn333h89xu9n0c3jhl40dsb6xo + + + + Taiss:Infoskreine Volūda/family-color + 10 + 326 + + 30813 + 29993 + 2015-08-08T12:10:25Z + + YiFeiBot + 2627 + + + Bot: Migrating 3 langlinks, now provided by [[d:|Wikidata]] on [[d:q6959978]] + wikitext + text/x-wiki + <includeonly>{{ +#switch:{{{1|}}} +| Default | default | white = white +| Afroaziatu | Afroaziatu volūdys | yellow = yellow +| Altajīšu | yellowgreen = yellowgreen +| Algonkinu | Amerikys | lightskyblue = lightskyblue +| Australian | orchid = <nowiki>#eba9ee</nowiki> +| Austroaziatu | Austro-Asiatic | Austro-asiatic | lightcoral = lightcoral +| Austronezīšu | tomato = pink +| pink = tomato +| Kaukazīšu = lightgreen +| Conlang | conlang | constructed language | black = black +| Kreolu | creole = tan +| Dravidu | mediumspringgreen = mediumspringgreen +| Eskimoaleutu | lightcyan = lightcyan +| Hmong-Mien = <nowiki>#ff0033</nowiki> +| Indoeuropīšu | lawngreen = lawngreen +| Izoleta | #dddddd = <nowiki>#dddddd</nowiki> +| Ķhoisu | goldenrod = goldenrod +| Mixed | mixed = tan +| Na-Dene | Na-Dené | deepskyblue = deepskyblue +| Nigera-Kongo | Niger-Congo | orange = orange +| Nilosaharys | gold = gold +| Palaeosiberian | Palaeo-Siberian | Palaeo-siberian | Paleosiberian | Paleo-Siberian | Paleo-siberian = darkseagreen +| Papuan | violet = <nowiki>#fd79da</nowiki> +| Pidgin | pidgin = tan +| Zeimju volūdys | Žestu valodys | sign language | silver = silver +| lightgreen = lightgreen +| Sinotibetīšu = tomato +| Tai-Kadai | lavender = lavender +| Uralīšu | limegreen = limegreen +| +}}</includeonly><noinclude> + +</noinclude> + cvmaj6lqag67ca765f02z62z73o88bh + + + + Taiss:Infoskreine Volūda/genetic2 + 10 + 327 + + 30814 + 29988 + 2015-08-08T12:10:45Z + + YiFeiBot + 2627 + + + Bot: Migrating 2 langlinks, now provided by [[d:|Wikidata]] on [[d:q13530092]] + wikitext + text/x-wiki + {{ +#switch:{{{1|}}} +| Afro-Asiatic | Afro-asiatic | yellow = [[Afro-Asiatic languages|Afro-Asiatic]] +| Nigera-Kongo | orange = [[Nigera-Kongo volūdys|Nigera-Kongo]] +| Nilo-Saharan | gold = [[Nilo-Saharan languages|Nilo-Saharan]] +| Khoisan | goldenrod = [[Khoisan languages|Khoisan]] +| Indoeuropīšu | lawngreen = [[Indoeuropīšu volūdys|Indoeuropīšu]] +| Caucasian | lightgreen = [[Languages of the Caucasus|Caucasian]] +| Altaic | yellowgreen = [[Altaic languages|Altaic]] +| Uralic | limegreen = [[Uralic languages|Uralic]] +| Dravidian | mediumspringgreen = [[Dravidian languages|Dravidian]] +| Paleosiberian | Paleo-Siberian | Paleo-siberian | Palaeosiberian | Palaeo-Siberian | Palaeo-siberian = [[Paleosiberian languages|Paleosiberian]] +| Austronezīšu | pink = [[Austronezīšu volūdys|Austronezīšu]] +| Austro-Asiatic | Austro-asiatic | Austroasiatic | lightcoral = [[Austro-Asiatic languages|Austro-Asiatic]] +| Sino-Tibetan | tomato = [[Sino-Tibetan languages|Sino-Tibetan]] +| Hmong-Mien = [[Hmong-Mien languages|Hmong-Mien]] +| Australian | orchid = [[Australian Aboriginal languages|Australian]] +| Papuan | violet = [[Papuan languages|Papuan]] +| Tai-Kadai | lavender = [[Tai-Kadai languages|Tai-Kadai]] +| American | lightblue = [[Indigenous languages of the Americas|American]] +| Na-Dene | Na-Dené | deepskyblue = [[Na-Dené languages|Na-Dené]] +| Eskimo-Aleut | lightcyan = [[Eskimo-Aleut languages|Eskimo-Aleut]] +| Creole | creole = [[Creole language|Creole]] +| Pidgin | pidgin = [[Pidgin|Pidgin]] +| Mixed | mixed = [[Mixed language|Mixed]] +| Isolate | isolate | language isolate | #dddddd = [[language isolate]] +| Sign | sign | sign language | silver = [[sign language]] +| Conlang | conlang | constructed language | black = [[constructed language]] +| Default | default | white = — +| +}}<noinclude> + +</noinclude> + owib22htzorbzxcfapa459hzowcief8 + + + + Taiss:Vol-ja + 10 + 328 + + 28915 + 28268 + 2013-03-08T13:42:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5611114]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{langWithName|ja|japāņu|{{{1}}}}}<noinclude> +[[Kategoreja:Volūdu taisi|ja]] + +</noinclude> + m93qdry6ajzv5e7cxjyg5u3922y9hsw + + + + Taiss:Vol-tr + 10 + 329 + + 30004 + 14786 + 2013-08-16T15:45:48Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5134]] + wikitext + text/x-wiki + {{langWithName|tr|turku|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|tr]] + +</noinclude> + ff5izswuclt4b16n0io3dnf48gpcp29 + + + + Taiss:Krystapiļs nūvods + 10 + 330 + + 29815 + 17946 + 2013-04-15T02:13:29Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Krystapiļs nūvods +|title = <center> [[Krystapiļs nūvods]] [[Fails:LVA Krustpils novads COA.png|13px|Krystapiļs nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Atašinis pogosts]]{{•}} [[Krystapiļs pogosts]]{{•}} [[Kūku pogosts]]{{•}} [[Mežuoris pogosts]]{{•}} [[Varīšu pogosts]]{{•}} [[Veipa pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + 4oucpyd9e1tmln7nwor6er2ezddxjtq + + + + Taiss:Coord/display/inline + 10 + 331 + + 4665 + 4664 + 2011-03-19T13:07:49Z + + SPQRobin + 2 + + + 3 versijas: importing articles from Incubator + wikitext + text/x-wiki + {{{1}}}<noinclude>[[Category:Wp/ltg|!]]</noinclude> + f9j02nbz394z680ve03myh5xfym4jy2 + + + + Taiss:Zeimeibu škiršona + 10 + 332 + + 31309 + 30815 + 2016-02-24T09:39:03Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + <div style="clear: both; margin: 0.9em 1em; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; background: transparent;"> +{| class="notice metadata plainlinks" id="disambig" style="width:100%; margin:10px 0; background:none;" +|style="vertical-align:middle;"|[[Fails:Disambig.svg|30px|link=]] +|style="vertical-align:middle; font-style:italic;"|Itys rakstīņs — daudzizeimeiguma skaidriejums. Ka esi ite ītics nu kaida naviņ rakstīņa, lyudzams, pataisi tū saitu, kab ruodeitu vīnu nu itymā puslopā asūšu zeimeibu. +|} +</div><includeonly> +[[Kategoreja:Zeimeibu škiršona]]{{#ifeq:{{ns:0}}||__DISAMBIG__}} +</includeonly><noinclude> +{{dokumentaceja}} + +[[Kategoreja:Zeimeibu škiršonys taisi| ]] +</noinclude> + ei3s2rgelzlfw4pqsbi7y29i37id7b0 + + + + Madsolys Juoņs + 0 + 333 + + 10598 + 4695 + 2011-03-21T14:16:34Z + + DEagleBot + 35 + + + Bot: Automated text replacement (-[[Category:Wp/ltg]] +) + wikitext + text/x-wiki + '''Madsolys Juoņs''' (eistyn. vuords ''Juoņs Ludbuoržs'', 1913 — 1975) — poets, rakstinīks, vīns nu pošu pazeistamūs latgaļu liriku. + +Dzims 1975 g. oktobra 13 d. Nautrānu (niule Mežvydu) pogosta Gryudinīšu solā. Vuicejīs Mežvydu pamatškolā, beidzs Aglyunys gimnazejā, Jelgovys školuotuoju institutā. Studiejs Latvejis vaļstiskajā universitetā (niule - Latvejis universitets) filologejis specialitetā. Darejs nazcik Latgolys i Zemgalis školuos. + +Rakstejs dzeivuļus, stuoškus, pjesys, baladis, fabulys. Radē golvonī motivi - tāvaine i mīleiba. Poezejis lasejums ''Lynu zīdi'' (1943, ūtrais laidīņs 1993), stuošku lasejums ''Austrys zemē'' ("Ausmas zemē", 1944). Daudzi poezejis drukavuots rakstīņu lasejumā ''Olūts'', latgaļu periodikā. + +Mežvydūs zynoms pīstuoškys ap poeta sagvuorda ciļmi. Napatuoļ nu juo dzymtuos sātys asūte vīta, pasaukta par "Madsolu" deļ tuo, ka J. Ludbuorža vaciukam tī vadūt nu rotu izsleidiejuse i sasatrīkšuse mads buca. + +Mirs Aucis nūvoda Ukru pogostā 1975 februara 26 d., paglobuots Ukru pogosta Nesaulis kopūs. + qwiks1n18aspq79d89b2jr4l8pljt04 + + + + Makedoneja + 0 + 334 + + + 4697 + 4696 + 2011-03-19T13:18:13Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT[[Makedonejis Republika]] + 8x9zbik3kbo3q8bhp8m5pfk0jewcb63 + + + + Makedonejis Republika + 0 + 335 + + 32118 + 31986 + 2017-07-23T01:58:16Z + + DARIO SEVERI + 3389 + + Update information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Република Македонија'''<br />'''Makedonejis Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of the Republic of Macedonia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of the Republic of Macedonia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Macedonia Europe.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 25 713 km² +|- +|| Dzeivuotuoju skaits || 2 069 162 <small>(2014)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Makedonejis Republika''' (maked.: ''Република Македонија'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + q6o4ijbynnojsn38bqi9js4cseo23bg + + + + Malmuna + 0 + 336 + + 29770 + 21595 + 2013-04-14T23:08:23Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Malmuna''' — upeite [[Modyunis nūvods|Modyunis]], Varakļuonu i Viļānu nūvodūs, tak škārs Varakļuonu, Dekšuoru i Borkovys pogostu, ītak [[Lubuons|Lubuonā]], garums 25 km, upis baseina pluots 205,6 kv. km. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latgolys upis]] + l1g4v9ohcr6sdva9c1ht0z9k7be8pk5 + + + + Malnkalneja + 0 + 337 + + 32119 + 28916 + 2017-07-23T02:01:11Z + + DARIO SEVERI + 3389 + + Update information from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Crna Gora'''<br />'''Malnkalneja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Montenegro.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Montenegro.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Montenegro Europe.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 13 812 km² +|- +|| Dzeivuotuoju skaits || 678 931 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Malnkalneja''' (malnkaln.: ''Crna Gora'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == +[[Image:Montenegro municipalities.png|thumb|250px|right]] +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + gvqvu8mat0lmbkjx62720bw5mxk4ewa + + + + Malnuo žugure + 0 + 338 + + 28271 + 27828 + 2013-03-07T19:00:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 63 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25398]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Malnuo žugure +| atvaiga_pasauka = Ciconia nigra 1 (Marek Szczepanek).jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Putni ''(Aves)'' +| aiļa = Žugurini putni ''(Ciconiidae)'' +| saime = Žugurini ''(Ciconiidae)'' +| giņts = Žuguris ''(Ciconia)'' +| škira = Malnuo žugure ''(Ciconia nigra)'' +| ziniskuo_pasauka = Ciconia nigra +| zemislopys_atvaigs = Ciconia nigra distr.png +| zemislopys_aprakstejums = Malnuos žuguris paplateiba pasaulī: +{{legend|#FFA000|vosorys dzeivisvītys}} +{{legend|#3B6FFF|zīmys dzeivisvītys}} +{{legend|#3BA06F|nūtalejuos dzeivisvītys}} +}} +'''Malnuo žugure''' (latiņu: ''Ciconia nigra''; anglīšu: ''Black Stork''; latvīšu: ''Melnais stārķis''; lītaunīku: ''Juodasis gandras'') — žuguriņu (''Ciconiidae'') ailis putnys, vīglai apmonoms pa malnajom spolvom. Augumā drupeit mozuoka kai [[Boltuo žugure]]. Augums 52-58 ceņtimetru augsts, svors vydyskai 3 kilogrami. Golva, koklys, pakakle, auguma viersejuo puse malna ar pazali sorkonu metalisku myrgumu. Kryuteža, spolvys, zamaste i spuornu zamoška bolta. Gnēze, kuojis i ocu gradzyni sorkoni. Maneigs i izsardzeigs putyns, izasorgoj nu cylvāku. Auguma sadors i izavedīņs leidzeigs [[Boltuo žugure|Boltajai žugurei]]. + +Barūkle vysaida - vardivis, dēlis, sīnakozys, kūrmuli, slīkys, vabalis, iudiņa kustūne i zivs. Cieškuok barūklis meklej i ād vīna. + +Iz [[Latveja|Latveju]] atskrīn martā, aprelī, nūskrīn da zīmuošonys vītom Afrikā seņtebrī. Zemeiguokuo [[Latgola|Latgolys]] žuguru zīmuošonys vīta - Etiopeja. + +== Pereklis == +[[Fails:Ciconia nigra 2 (Marek Szczepanek).jpg|left|thumb|250px|Malnuo žugure pļovā]] +[[Fails:Cigogne Noire MHNT.jpg|thumb|'' Ciconia nigra'']] +Bolss kluss, gnēzi klabynoj rešuok kai [[Boltuo žugure]]. Dzeivoj vacūs, tymsūs mežūs i pūrūs, cylvākam gryuši daīmamuos vītuos. Perekli vyn lelu lopukūku viersyunēs, rešuok nūlīktūs zorūs. Perekļu atostumam tam nu tuo vajagbyut na tyvuok kai 6 kilometri. Malnuos žuguris cīši koņservativys i sovu perekli lītoj daudzi godu. [[Latveja|Latvejā]] vysuilguok zynomais pereklis lītuots kūna 57 godu. + +== Plidiešona == +Diej 3-5 boltai pazalis ūlys. Perej 30 dīnu. Žugurāns izīt nu perekļa par 65 dīnys, kod jau izavuicejs skrīt. Puori monogami, atskrīn kūpā i dzeivoj divejūs daudzi godu. Mežogumā malnuos žugures myužs var viļktīs da poš 26 godu. Latvejā kūpeigais malnūs žuguru daudzums 500 — 700 puoru <ref>http://www.birdlife.org/datazone/species/BirdsInEuropeII/BiE2004Sp3830.pdf</ref>. + +== Sardzeiba == +Malnuo žugure [[Latveja|Latvejā]] 2008 gods pavasarī izalaseita par goda putynu. Īīt [[Latveja|Latvejis]] seviški sorgojamūs škiru sarokstā i Latvejis Sorkonajā gruomotā. Žuguris popuļacejai gražejās vacūs mežu izciersšona, vacūs kūku maituošonuos, mikronūlīgtiņu tryukums i urbanizaceja. Nu 1991 gods malnuos žuguris skaitlis [[Latveja|Latvejā]] sasamazynuojs kūna div reizis. + +== Verīs taipoš == +* [[Boltuo žugure]] + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Commonscat|Ciconia nigra|Malnuo žugure}} + +{{DEFAULTSORT:Malnuo žugure}} + +[[Kategoreja:Dzeivinīki]] + lb3ox78wlxgzdh9ktvw035vbz3hp5ir + + + + Malta + 0 + 339 + + 32126 + 28272 + 2017-07-29T06:45:56Z + + DARIO SEVERI + 3389 + + Update information from Wiki (de) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Repubblika ta' Malta'''<br />'''Republic of Malta'''<br />'''Malta'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Malta.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Malta.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Malta EU Europe.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 316 km² +|- +|| Dzeivuotuoju skaits || 433 300 <small>(2015)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Malta''' (malt.: ''Repubblika ta' Malta''; angl.: ''Republic of Malta'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + e1bde9z31uqfxir5wmxmlw7n5qonczw + + + + Manuļs + 0 + 340 + + 28968 + 28273 + 2013-03-08T15:44:51Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q166794]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:WhfPallasCat.JPG|thumb|250px|]] +'''Manuļs''', Pallas, 1776 ({{Vol-la|Otocolobus manul}}; {{Vol-lv|manuls}}; {{Vol-lt|manulas}}) irā nalels [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. Manuli dzeivoj Azejā. + +== Izavierīņs == +Auguma garums: 50—65 cm;<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Felis_manul.html University of Michigan Museum of Zoology]</ref></br> +Astis garums: 21-31 cm<ref name="ADV"/>;</br> +Svors: 2—5 kg<ref name="ADV"/>.</br> + +== Daudzatmejeiba == +Irā 3 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1985/ BioLib] Profil taxonu — druh '''manul ''Otocolobus manul''''' Pallas, 1776</ref>: +* ''[[Otocolobus manul ferrugineus]]'' Ognev, 1928 +* ''[[Otocolobus manul manul]]'' Pallas, 1776 +* ''[[Otocolobus manul nigripectus]]'' Hodgson, 1842 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Felis manul|Manuļs}} + +{{DEFAULTSORT:Manuļs}} + +[[Kategoreja:Dzeivinīki]] + k9n4pgn0v4q84ayl1zsv1mqfet7mry3 + + + + Mareja Andžāne + 0 + 341 + + + 4748 + 4747 + 2011-03-19T13:18:19Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Marija Andžāne]] + p3seqzw9h316fsnbfp0umjq6ec80tb6 + + + + Marija Andžāne + 0 + 342 + + 11598 + 11131 + 2011-03-24T21:19:30Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Marija Andžāne (prec. Strode)''' (1909—1988) — dzymuse zemnīku saimē 1909. goda 8. septembrī, [[Ludza|Ludzys apriņča]] (myusu dīnuos [[Dagdys nūvods|Dagdys nūvoda]]) [[Škaunis pogosts|Škaunis pogosta]] Maču solā kai caturtais bārns solys vacuokuo Leonarda i muojsaimneicys Agnesis Andžānu saimē.<ref>Andžāne M. Dimensiju kvadrātsāknes. Rēzekne: Latgales kultūras centra izdevniecība, 1999, 229.lpp.</ref>(Šķaunē ir arī iekārtota viņas piemiņas istaba)<ref>[http://dagda.lv/zinas/pilns-raksts/datums/15/09/2009/marijai-andzanei-100-1/ Marijai Andžānei -100]</ref> Piec Landskoronys pagastškolys beigšonys īsastuoj Rēzeknis školuotuoju institutā (myusu dīnuos – Rēzeknis Augstškola), kur aktivi pīsavērsuse literarajai darbeibai, publiciejuse instituta literarajā žurnalā ”Daile”. + +Instituta absolviešonys godā (1931) literarajā žurnalā „Zīdūns” (Nr.6) pasaruoda juos pyrmais dzejūļs „Caur osoram...” i skice „Orōjdāls”. 1933.godā ir izdūts juos pyrmais i Latvejā vīneigais publicātais dzejis kruojums „Reits”. + +Školuotuojis gaitys M. Andžāne uzsuok 1931. goda rudenī Bukmuižis (myusu dīnuos Ezernīku) pogosta Porečjis pamatškolā (myusu dīnuos Bierzeņu pogosta Upmalys pamatškola). + +1934.godā salaulojās ar žurnalistu i rakstnīku Konstantinu Strodu-Plencinīku. Saime ir dzeivojuse Reigā, kur M.Andžāne struoduoja kai školuotuoja Puordaugovys bārnu patversmis školā. Da 1940. godam M. Andžāne dorbojās taidūs izdavumūs kai „Straume”, „Jaunais Vōrds”, sovus dorbus syuta taidim izdavumimta kai „Zīdūnis”, „Sauleite”, kalendāram „Jaunō Straume”. + +Kara laiku kūpā ar saimi pavoda Varakļuonūs. Aktivi sasadarboj ar rokstu kruojumu „Olūts”, publicej savus darbus avīzēs „Rēzeknes Ziņas” i „Latgolas Bolss”. 1944. godā V. Luoča izdevnīceibys reikoutajā literarūs dorbu konkursā drukys aizlīguma atceļšonys 40 godu atcerei M. Andžānis dzejis kruojums „Dzeiveibai” īgyva ūtrū gūdolgu. +Nu 1944.goda dzeivojuse Vuocejā bēgļu nometnē Grēvenē, Langerfeldē. Kopā ar vīru strādājusi par skolotāju izveidotajā latviešu bēgļu nometnes skolā Oberkaselē.<ref>LU literatūras, folkloras un mākslas institūts. Latviešu rakstniecība, bibliogrāfijas. Rīga: Zinātne, 2003. 30.-31.lpp.</ref> + +1951.gadā dzejniece no Vācijas izceļo uz ASV, kur viņa pavada savas mūža gaitas līdz pēdējam saules rietam 1988.gada 26. decembrim. 1951. gadā tiek arī publicēts viņas otrais dzejoļu krājums „Namīra vōrtūs”, kas ir papildināts un labots manuskripta „Dzeiveibai” variants. + +== Literārā darbība == +Marija Andžāne mīl dabiskumu, vienkāršību un patiesumu. Viņai tuva ir vienkāršība valodā un formās, tādēļ viņai nav pārāk spilgtu epitetu, nav vārdu spēļu, kā arī sarežģītu ritmu. + +Viņas dzejiskā māksla pastāv tuvu tautas mākslas vienkāršībai. Pati dzejniece ir teikusi, ka mazai domai nav vajadzīga liela forma. Arī dzejnieces domas ir vienkāršas tāpat kā pašas tautas domas. Viņa meklē patiesību ikdienišķajā, meklē dzīves jēgu pasaulē un atrod to dzīvībā. Meklē cilvēku sadzīves pamatus un atrod tos sirsnībā, meklē spēku dzīves grūtību pārvarēšanai un atrod to dzīves optimismā. Meklējot mūžīgo patiesību un skaistumu, M.Andžānes skatījums ir gaišs. Viņa redz garu un cēlumu visos dzīves sīkumos. Tādēļ laime aiz trejdeviņām jūrām, pēc kā dzejnieki ilgojas, ir māns. Laime ir tepat, tikai jāmāk to saredzēt. Un M.Andžāne to saredz tāpat, kā to saredzēja mūsu seņči. Rakstniece savā vienkāršībā grib dot visiem baudāmu un saprotamu dzeju, grib un spēj visiem iekustināt skaistuma jūtas. + +Tādēļ, līdzīgi tautas poēzijai, M.Andžāne mīl cēlu, izkristalizētu patiesību, mīl dedzīgu sirsnību. Šīs īpašības viņa smeļ no tautas dvēseles un dzejas līdzekļus– no vienkāršās apkārtnes. + +Marijas Andžānes dzejā, kura tapusi trimdā, ieskan ilgas pēc dzimtenes. Rakstnieces sirds tomēr grib piederēt tautai, no kuras viņa ir cēlusies. Piederēt zemei, kuru viņas seņči ir kopuši, tāpēc M.Andžānei ir daudz patriotisku motīvu un dzimtenei veltītas degsmes. + +Marijas Andžānes stāsti galvenokārt ir veltīti jaunatnei. Tie ir gaiša ideālisma apgaroti, kur vienmēr uzvar labais vai arī labais saņem lasītāju simpātijas. Stāsti ir nelieli, tajos pavīd liriskas noskaņas un tēlojumi. + +Rakstniece ir rakstījusi arī kādu plašāku romānu, tomēr tas netika pabeigts. Romāns saturēja autobiogrāfiskus materiālus un labu sava laika sabiedriskās dzīves fonu. Šis darbs daudz būtu devis arī Latgales kultūras vēsturei.<ref>Bukšs M. Latgaļu literatūras vēsture. Rēzekne: p/s Latgaļu izdevniecība, 1957., 671.- 672.lpp.</ref> + +Marija Andžāne rakstījusi arī literatūrteorētiskus apcerējumus, kas publicēti 30.-40.gadu presē. + +Dzīvojot Latvijā, rakstniece publicējusies tikai latgaliski, trimdā rakstījusi un presē publicējusies gan latgaliski, gan latviešu literārajā valodā. + +Marija Andžāne ir viena no retajām sievietēm, kas iekļauta enciklopēdijā "100 nozīmīgākās Latvijas sievietes". + +2009.gada 8. septembrī latgaliešu dzejniecei Marijai Andžānei apritētu 100. dzimšanas diena. Dzejnieces simtgades atcerei tika veltīta 2. starptautiskā latgalistikas konference, kā arī Sovvaļnīka debijas disks "Supluok". + +== Bibliografeja == +=== Dzejis kruojumi === +* „Reits” (1933) +* „Dzeiveibai” (1944) +* „Namīra võrtūs” (1951) +* „Caur dvēseles prizmu” (1977) +* „Dimensiju kvadrātsaknes”(1999, sak. I.Muizniece (Šuplinska)) + +=== Romani === +* „Nosta” (nepabeigts, 1949) +* „Dzeiveibas ārterija” (rūkrokstā, 80. godi) +* „Es nabeju bolta” (rūkrokstā, 80. godi) + +=== Stuostu kruojumi === +* „Orojdāls” (1943) +* „Aiz trejdeveinim kolnim” (1982) +* „Izejas punkts” (1982) +* „Puisāns ar kozu”– (1996, sak. I. Salceviča) + +== Atsaucis == +{{reflist}} + +== Verīs taipoš == +* [http://dagda.lv/zinas/pilns-raksts/datums/15/09/2009/marijai-andzanei-100-1/ Marijai Andžānei -100] + +{{DEFAULTSORT:Andzane, Marija}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + hx7ln1iql69z5md25n319wzgfxutxnu + + + + Meikuls Apeļs + 0 + 343 + + 30467 + 11599 + 2014-10-29T01:40:45Z + + Faolin42 + 1058 + + Anna Stafecka + wikitext + text/x-wiki + '''Meikuls Apeļs''' (1901 — 1941) (slapynvuords: ''M.-P.'') — latgaļu literaturviesturnīks, rakstinīks. „Latgaļu literaturys viesturis” (1935) autors. + +Stuošku lasejums ''„Latgolys sātuos”'' (1932) - ap Latgolys solom i ļaudim 20 gs. suokuos. + +Liriskuos prozys lasejums ''„Jauneiba i mīla”'' (1938) + +== Nūruodis i olūti == +Janina Kūrseite, [[Anna Stafecka]] "Latgola: volūda, literatura, folklors" ("Latgale: valoda, literatūra, folklora") Rēzne, 2003 + +{{DEFAULTSORT:Apeļs, Meikuls}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + bw9s9et2kp8xfzg3xj9j87gfdgvarwk + + + + Meikultūrņs + 0 + 344 + + 30212 + 30210 + 2014-01-25T08:00:06Z + + Rschen7754 + 1689 + + rm image + wikitext + text/x-wiki + [[Fails:Miķeļbāka.JPG|thumb|250px|right|Meikultūrņs]] + +'''Meikultūrņs''' aba Pizys speidyns (līvu: ''Pizā bōjk'', latvīšu: ''Miķeļtornis, Miķeļbāka'') — [[speidyns]] [[Piza|Pizys]] solā [[Līvu jiurmale|Līvu jiurmalē]], [[Venstpiļs nūvods|Venstpiļs nūvodā]], pats augstais speidyns Baļtejis vaļsteibuos. + +Vīta zemislopā: [http://fallingrain.com/world/LG/33/Mikeltornis.html] +* Augstums - 65 m. +* Stateišonys gods - 1957. +* Gaismys signala cieškums - kas 6 sekuņdis. + +== Viesture == +Pyrmais speidyns Pizā pastateits 1884 godā. Juo aizdavums beja puorsorguot lellaivys ap sūpluok asūšū Meikula siekli, partū speidynam dūta pasauka Meikultūrņs. Piečuok speidyns bejs 2 reizys nūgrauduots, a niulejais pastateits 1957 godā. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Latvejis solys]] + qiqh9jfr5p2m0ncv8b7w6q0asf2om51 + + + + Mejveice + 0 + 345 + + 31421 + 28275 + 2016-05-04T15:15:24Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Mejveice''' (anglīšu: ''interaction''; krīvu: ''взаимодействие''; lejslatvīšu: ''mijiedarbība'') — darbeiba, kurys procesā diveji voi vaira subjekti ci objekti tys tū ītakoj (tys tū veic). + +{{Eiss rakstīņs}} + ttuq50d4xci87pqanz2gzvz1ozdzipt + + + + Metatoneja + 0 + 346 + + 11602 + 10608 + 2011-03-24T21:20:08Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Metatoneja''' — pošskaņu puormeja vuorda saknē (''g'''o'''lds'' - ''g'''a'''ļdeņš'', ''n'''e'''st'' - ''n'''a'''su'', ''v'''ā'''za'' - ''v'''ie'''zeņa'', ''p'''y'''rmais'' - ''p'''i'''rmeigs''). Jei nūteik lītysvuordu lūcejumūs i laikvuordu personu formuos, i nazcik vuordu darynuošonys paraugūs (lītysvuorda pamata forma i juo demunutivs, soveibnīks i jam atsateikūšais apstuoklinīks i t.t.). Tuoļuok dūti metatonejis pīvadumi vysaiduos morfologejis situacejuos. + +== Deminutivu metatoneja == +''g'''o'''lds'' - ''g'''a'''ļdeņš'', ... + +== Laikvuordu metatoneja == +Kai pīvadumus lītojam [[Laikvuords|laikvuordus]] ''raksteit'', ''saksteit'', ''saceit'', ''dareit'' + +Laikvuordu [[Nanūsaceiba|nanūsaceibā]] saknē rokstoms '''A''': +* ''r'''a'''ksteit'', ''s'''a'''ksteit'', ''s'''a'''ceit'', ''d'''a'''reit''. + +Niulejuo laika formu saknēs rokstoms '''O''': +* ''r'''o'''kstu'', ''r'''o'''ksti'', ''r'''o'''ksta'', ''r'''o'''kstom'', ''r'''o'''kstot'' (anglīšu: "I write, you(sg.) write, s/he writes, we write, you(pl.) write") +* ''s'''o'''kstu'', ''s'''o'''ksti'', ''s'''o'''ksta'', ''s'''o'''kstom'', ''s'''o'''kstot'' (anglīšu: "") +* ''s'''o'''ku'', ''s'''o'''ki'', ''s'''o'''ka'', ''s'''o'''kom'', ''s'''o'''kot'' +* ''d'''o'''ru'', ''d'''o'''ri'', ''d'''o'''ra'', ''d'''o'''rom'', ''d'''o'''rot'' (anglīšu: "I do, you(sg.) do, s/he does, we do, you(pl.) do") + +Puorguojušais laiks ar A: +* ''r'''a'''ksteja'', ''r'''a'''ksteji'', ''r'''a'''ksteja'', ''r'''a'''kstejom'', ''r'''a'''kstejot'' +* ''s'''a'''ksteja'', ''s'''a'''ksteji'', ''s'''a'''ksteja'', ''s'''a'''kstejom'', ''s'''a'''kstejot'' +* ''s'''a'''ceju'', ''s'''a'''ceji'', ''s'''a'''ceja'', ''s'''a'''cejom'', ''s'''a'''cejot'' +* ''d'''a'''reju'', ''d'''a'''reji'', ''d'''a'''reja'', ''d'''a'''rejom'', ''d'''a'''rejot'' + +Atejūšais laiks ar A +* ''r'''a'''ksteišu'' - ''r'''a'''ksteisi'' - ''r'''a'''ksteis'' - ''r'''a'''ksteisim'' - ''r'''a'''ksteisit'' +* ''s'''a'''ksteišu'' - ''s'''a'''ksteisi'' - ''s'''a'''ksteis'' - ''s'''a'''ksteisim'' - ''s'''a'''ksteisit'' +* ''s'''a'''ceišu'' - ''s'''a'''ceisi'' - ''s'''a'''ceis'' - ''s'''a'''ceisim'' - ''s'''a'''ceisit'' +* ''d'''a'''reišu'' - ''d'''a'''reisi'' - ''d'''a'''reis'' - ''d'''a'''reisim'' - ''d'''a'''resit'' + +;Savadums: ''Es r'''o'''kstu, r'''a'''ksteju i r'''a'''ksteišu, partū ka vajag r'''a'''ksteit''. + +=== Nu laikvuordu darynuotī lītysvuordi === +;Atlasynuojumi nu ''raksteit'': ''r'''a'''ksteiba'', ''r'''a'''ksteišona'', ''r'''a'''kstīņs'', ''r'''o'''ksts'', ''sar'''o'''ksts'' + +Pošskaņs '''A''' irā "meikstajuos pozicejuos" (pyrma pošskaņu "i, ī, e, ē", pyrma divskaņu "ie, ei", pyrma meikstynuotūs leidzaskaņu). Pošskaņs '''O''' irā "cītajuos pozicejuos" (tī, kur augšuok puorsauktūs "meikstynuotuoju" navā). + +== Soveibnīku i apstuoklinīku metatonejis == +Tipiski pīstuovi - soveibnīka/apstuoklinīka puors ''l'''o'''bs'' i ''l'''a'''bi'' + +Soveibnīkūs (adjektivūs) irā '''O''' i vysūs lūcejumūs ari izagloboj '''O''': +* ''l'''o'''bs bolss'', ''l'''o'''ba sāta'', ''l'''o'''bi ļauds'', ''l'''o'''bim ļaudim'' + +Apstuoklinīkā (adverbā) irā '''A''' +* ''maņ vadās l'''a'''bi''; ''jis l'''a'''bi maun''; ''l'''a'''bi tev nūbraukt'' + +;Savadums: ''Bruoli l'''o'''bi muovieji - obadiveji l'''a'''bi maun''. + +== Cyti pīvadumi == +Irā i nazcik cytu vuordu darynuošonys pīvadumu, kurūs lelumā gadīņu izskaidrej jau pīmynātais "meikstūs/cītūs poziceju lykums". + +;atlasynuojumi nu ''pyrmais'': ''p'''i'''rmeņ'' - ''p'''i'''rminīks'' - ''p'''i'''rmeigs'' - ''p'''y'''rmaileigs'' - ''p'''y'''rmais'' - ''p'''y'''rmūdīne'' +;atlasynuojumi nu ''vacs'': ''v'''a'''ce'' - ''v'''a'''cs'' - ''v'''a'''cums'' - ''v'''e'''ceļs'' - ''v'''e'''cs'' + q9oa4km1a655gswmhieviuqhncoo4yk + + + + Mežūtne + 0 + 347 + + 28276 + 15089 + 2013-03-07T19:02:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1926512]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Mežūtne''' — [[Lelupe|Lelupis]] kreisajā krostā - bejušuos Upmalis ([[Zemgali|zemgaļu]] feodaluo valsteņa) centrs. Piļskolns apdzeivuots 9.-14.gs. Vacuokī arheologiskī atrodumi līcynoj par nazkodejim tierdzeibys sakarim ar slavim. Mežūtnis tagadejā pilī (1797.—1813.) — selekcejys i izmieginuojumu staceja cukra batvinu i sātuos zuolis audziešonā. + 10s6rve795jlhsmgjr1x0olchm372i2 + + + + Mikeļs Bukšs + 0 + 348 + + 11605 + 10610 + 2011-03-24T21:20:38Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Mikeļs Bukšs''' (pseud. ''Lobuords''; 1912 — 1977) — latgaļu ļaudyskais dareituojs, literaturviesturnīks, [[Viesteitivi|viesteitivu]] redaktors, volūdzininīks. Dzims Škylbānu pogosta Plešovys solā, nu 1944 dzeivuojs Švedejā. Bejs žurnala ''Dzeive'' golvonais redaktors i vīns nu rakstīņu lasejuma ''Acta Latgalica'' redaktoru (1965-1977). + +Pīrakstejs 17 gruomotu, nu jūs pošys zeimeiguokuos: +* ''Latgaļu literaturys viesture'' (1957); +* ''Fraņcs Kemps'' (1969); +* ''Latgaļu volūdys gramatika'' (1973); +* ''Latgaļu atmūda'' (1976). + +== Nūruodis i olūti == +Janina Kūrseite, Anna Stafecka "Latgola: volūda, literatura, folklors" ("Latgale: valoda, literatūra, folklora") Rēzne, 2003 + +{{DEFAULTSORT:Bukšs Mikeļs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + a9v5qwwe3wdiz9c5tkyqtuct3wa5jd3 + + + + Moldaveja + 0 + 349 + + 29405 + 28277 + 2013-03-18T17:08:11Z + + 24.162.252.36 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Moldova'''<br />'''Moldaveja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Moldova.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Moldova.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Moldova Europe.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 33 846 km² +|- +|| Dzeivuotuoju skaits || 3 563 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Moldaveja''' (rom.: ''Moldova'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 3opkj6xe4jxwwnnaxqbyygdbn0j7vgm + + + + Monaks + 0 + 350 + + 32127 + 31848 + 2017-07-29T06:49:52Z + + DARIO SEVERI + 3389 + + Update from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Principauté de Monaco'''<br />'''Monaks'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Monaco.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Monaco.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe location MCO.png|300px]] +|- +|| Golvysmīsts || Monaks +|- +|| Vaļsteibys volūda || +|- +| Monarhs|| Albert II +|- +| Ministru prezidents || +|- +|| Pluots || 2,02 km² +|- +|| Dzeivuotuoju skaits || 38 400 <small>(2015)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Monaks''' ({{vol-fr|Principauté de Monaco}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + h4uyvb3xd9f8l5rxntej4dh3dgy7dkv + + + + Mozais Līpkolns + 0 + 351 + + 14575 + 14449 + 2011-06-01T10:16:12Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + {{Infoskreine kolns + | Pasauka = Mozais Līpkolns + | Atvaigs = + | Atvaiga māri = + | Aprakstejums = + | Zemislopa = Latveja + | aprakstejuma_izlykums = left + | latd=56 |latm=12 |lats=16 |latNS=N + | longd=27 |longm=33 |longs=32 |longEW=E + | Augstums = 259 + | Byusmis vīta = [[Dagdys nūvods]], [[Latveja]] + | Augstaine = [[Latgolys augstaine]] + | Cytys pasaukys = Līpkolns, Līpukolns +}} + +'''Mozais Līpkolns''' (''Līpkolns, Līpukolns'') — [[kaupris]] [[Latgolys augstaine|Latgolys augstainē]], Dagdys nūvoda Aņdzeļu pogostā, Rāznys dobys parka teritorejā. Catūrtuo pa augstumam Latgolys regiona viersyune. Vyscaureigais (absolutais) augstums – 259 m augšuok jiuru leidzīņa. Samiereigais augstums – 63 m. + +[[Kategoreja:Latgolys kaupri]] + iapryhi259ysxn87ssvdpgdafa98wbj + + + + Mudovys zamaine + 0 + 352 + + 29790 + 11609 + 2013-04-15T01:42:44Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Mudovys zamaine''' ({{Vol-lv|Veļikajas zemiene}}, ''Mudavas zemiene'') — reļjefa īleikums, apjamūšs [[Latgola|Latgolys]] pošu reitu daļu i Krīvejis Pliskovys apgabaļa dīnavydvokoru daļu, t. i., Mudovys upis ({{Vol-ru|Великая}}, {{Vol-lv|Veļikaja}}, ''Mudava'') baseinu. Rūbežmalē Latgolys pusē Mudovys zamaine īīt Vileks, Baļtinovys, Cyblys, Ludzys i Sīnuojis nūvodu teritorejuos. Zamainis dīnavydvokoru styurs dasaglauž Latgolys augstainei. + +Pa zamaini tak na viņ Mudova, a i juos datakys – Iudrupe ({{Vol-ru|Утроя}}, {{Vol-lv|Rītupe}}), Sīnuoja ({{Vol-ru|Синяя}}, {{Vol-lv|Zilupe}}), Iļža (aba Ludza, {{Vol-ru|Лжа}}), Kūkova ({{Vol-ru|Кухва}}) i ct. + +[[Kategoreja:Latgolys geografeja]] +[[Kategoreja:Latgolys doba]] + 1ecbgd85v7cm0tr8tlk1urau2ld7xp4 + + + + Muižvuordu sistema + 0 + 353 + + 28279 + 26530 + 2013-03-07T19:02:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 68 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8767]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Muižvuordu sistema''' ([[:en:DNS|DNS]], ''Domain name system'') irā [[dators|datorim]] voi logiskajim resursim daškierti tekstuali adresi. Pīvadumam, <code>latgola.lv</code>, <code>rus.delfi.lv</code>, i.t.t. Jūs lītoj vītā numeriskūs [[IP-adress|IP-adresu]] (pīv., 159.148.108.128) partū, ka IP adresi gryušuok īguodojami. Muižvuordi atmej IP-adresus; var lītuot i vīnus, i ūtrus. Pyrmuo pakuopīņa muižvuordus, rokstomus DNS vuordu beiguos (<code>lv</code>, <code>lt</code>, <code>ru</code>, <code>com</code>, <code>edu</code> i ct.), privatpersona navar registrēt. Ūtruo pakuopīņa muižvuordus (<code>folklora.lv</code>, <code>folklore.ee</code> i.t.t.), privatpersona var registrēt par moksu (vysucieškuok nazcik desmišu latu par godu), i trešuo pakuopīņa muižvuordi, kurus sevkotrys ūtruo pakuopīņa DNS vuorda sovinīks var registrēt bez moksys. + +== Resursi == +[http://latgola.lv/servisi/mvuordi/ Muižvuordi portalā latgola.lv] + +[[Kategoreja:Škārsteiklys]] + hpni6xg4ii4ovjgzdi4ixa4aoybhsh4 + + + + Muokuļkolns + 0 + 354 + + 28280 + 16321 + 2013-03-07T19:02:49Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2047220]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine kolns + | Pasauka = Muokuļkolns + | Atvaigs = Mākoņkalns 1999-08-17.jpg + | Atvaiga māri = + | Aprakstejums = Ceļš da Muokuļkolna + | Zemislopa = Latveja + | aprakstejuma_izlykums = left + | latd=56 |latm=16 |lats=41 |latNS=N + | longd=27 |longm=24 |longs=49 |longEW=E + | Augstums = 247,4 + | Byusmis vīta = [[Rēznis nūvods]], [[Latveja]] + | Augstaine = [[Latgolys augstaine]] + | Cytys pasaukys = Voļkenbergs +}} + +'''Muokuļkolns''' (aba ''Voļkenbergs''; viesturis dokumentūs vuocyskuo pasauka ''Wolkenberg'') — kaupris [[Latgolys augstaine|Latgolys augstainē]], Rēznis nūvoda Muokuļkolna pogostā, Rāznys Nacionaluo parka teritorejā, tyvai da [[Rāzna|Rāznys]] azara. Vyscaureigais (absolutais) augstums – 247,9 m augšuok jiuru leidzīņa. Samiereigais (relativais) augstums – 57,9 m. + +Muokuļkolns izslivs deļ skaistuo i tuoleimuo vierīņa nu juo viersyunis, deļ iz juo bejušuos Voļkenberga piļs i deļ pīstuošku, kuri sīnās ar kolnu. Turistu nūmīļuota vīta. Iz kolna apsaveramys Voļkenberga piļskrytys - izaglobuojuši piļs sorgmyura fragmenti i aizgrauduotys zamzemys īmys. Nu kolna viersyunis acim pasaruoda vierīņs iz [[Rāzna|Rāznys]] azara. + +Viesturis dokumenti līcynoj, ka Voļkenberga piļs iz Muokuļkolna pastateita 1236 godā. Ar pili sasīta legenda viestej, ka piec Voļkenberga piļs vaļdeituoja i juo sīvys nūmieršonys plotī piļs nūvoda sovumi sadaleiti trejom jūs meitom - Rūžai, Ļucejai i Marejai. Sevkura nu muosu iz puormonuotuos zemis pasastatejuse pa jaunai pilei: Rūža - Rēzni (''Rositten''), Ļuceja - Ludzu (''Lutsin'') i Mareja - Vileki (''Marienhaus''). A nazkod vareiguo Voļkenberga piļs piec muosu nūīšonys paceli pa druponai sakrytuse. + +[[Kategoreja:Latgolys kaupri]] + qn165f96kzejbs98z0ffu299jzfne62 + + + + Napys līkne + 0 + 355 + + 28281 + 11611 + 2013-03-07T19:03:00Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 7 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1151105]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Napa_Valley_welcome_sign.jpg|thumb|Napys līknis vuortruode]] +[[Fails:Lightmatter_napa_valley_vinyard.jpg|thumb|Vierīņs iz veinūgu suoda Napys līknē]] +'''Napys līkne''' (anglīšu: ''Napa Valley'') — geografiska [[līkne]] [[Napys apleiciņs|Napys apleicinī]], [[San Franciskys leiča rajons|San Franciskys leiča rajonā]] ([[Kaliforneja|Kalifornejā]], ASV) i jamā asūšuo teritoreja, pasaulī pazeistama kai [[ASV]] vysuzemeigais veinūgu audziešonys i [[Veindareiba|veindareibys]] regions. + +Veinūgu audziešona Napys līknē suokusēs 19 godusymta 50-tajūs godūs i deļ vieleigūs geografiskūs, geologiskūs, klimatiskūs apstuokļu dreiži raistejusēs. Šudiņ Napys līkne tur vaira kai 340 veinaudzātovu, jamuos audzej "Cabernet Sauvignon", "Chardonnay", "Pinot Noir", "Merlot", "Zinfandel" i cytys nūmīļuotys veinūgu atmejis. Kuri nakuri veindari pīgatavej veinu tik i viņ nu Napys līknis veinūgu, cyti maisa līknis nūaugu ar apleicejūs kolnūs augušajom veinūgom. + +Napys līkne vīnulaik irā izsliviejs turizma centrys. Pasaprīcuotu ap skaistajim dobys vierīnim, pasabyutu veinūgu suodūs i nūraudzeitu breineiguo veina kas gods ite atcīmoj ap 4,7 milijoni turistu. + +[[Fails:Lightmatter_vineyard.jpg|thumb|left|Veinūgu suods Napys līknē]] +[[Fails:Napa_Valley_from_Oakville_Grade_3.jpg|thumb|left|Vierīņs iz Napys līknis nu ''Oakville Grade'' pīslaitis]] + +== Verīs taipoš == +* [[Napys apleiciņs]] + 7v4g88qi7dstyb0bnl8pkmreg4jsxpo + + + + Nautrāni + 0 + 356 + + + 4961 + 4960 + 2011-03-19T13:18:30Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Nautrānu pogosts]] + pz2o6z2mwhduqj83trlr2t7ksoz3g6a + + + + Nautrānu pogosts + 0 + 357 + + 28282 + 21785 + 2013-03-07T19:03:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801171]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Nautrānu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Nautrānu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods +| nūvoda_pasauka = Rēznis nūvods +| centrys = Rogouka +| pluots = 156,9 +| dzeivuotuoju_skaits = 1310 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1310 / 156.9 round 1}} +| īstateits = +| likvidets = +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} + +'''Nautrānu pogosts''' irā [[Rēznis nūvods|Rēznis nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Atsarūn nūvoda pūstumūs. 1998 godā Nautrānu pogostam daškierts Miglinīku pogosts. Da 1999 godam - Ludzys rajona daļa. Vīna nu vysuzeimeigūs vītu Latgolys kulturviesturē. Nautrānu pogosta centrys - Rogouka. + +== Viesture == +Arheologiskī atradīni Opiņku piliskolnā i VII—XI gs. Laizānu seņkopūs līcynoj, ka ite dzeivuojuse latgaļu moztautys daļa ar labi izraisteitu kulturu. Nu sovys pusis, Salinīku seņkopu atradīni ruoda, ka pyrma tuo ite dzeivuojuse i suomugru moztauta, kura piečuok sasaliejuse ar atguojiejim latgalim. + +XVII—XIX godusymtā nūvoda centrys beja Zaļmuiža, kura nu īsuoku pīdarēja grafim Korfim, a piec tyka par Rozenšildu-Paulinu sovumu. Caur muižu guoja Reigys ceļš, kurs saškeire Latgolu ar Reigu. + +XIX godusymtā Zaļmuiža tyka par dzimtinīku buntu centru, i vīns nu golvonūs ceikstātuoju par zemnīku tīseibom beja latgaļu atdzimšonys vadynuotuojs, poets Pīters Miglinīks. Kūpā ar Andryvu Jūrdžu, J. Seili, A. Purmalīti, F. Skesteri, V. Leiku jis radeja vīnreizeigu aktivuma formu ceikstīņam pret dzimtinīku apmīgšonu i cariskuos Krīvejis rusifikacejis politiku. + +XIX i XX godusymtu meitovuos Zaļmuižys pogosts turēja pošu leluokū skaiteigūs dzeivuotuoju procentu Latgolā. Nautrānu nūvoda kulturapleicei XIX i XX gs. bejuse cīši svareiga role vysā latgaļu kulturā - ite dzymušys, vuicejušuos i darejušys daudzejis latgaļu atdzimšonu vadynuojušys personeibys. + +== Geografeja == +Nautrānu pogosts geografiskai izalikaliejs [[Latgolys augstaine|Latgolys augstainis]] i [[Lubuona leidzonaine|Lubuona leidzonainis]] sadurā, Rēznis nūvoda pūstumreitūs, pi rūbeža ar Bolvu i Kuorsovys nūvodim, Ičys upis leičūs. Viesturiskais Nautrānu nūvods apjam nazkodejū Nautrānu katuoļu parapeju, kuramā īīt tānejais Nautrānu pogosts i daļa tānejūs Mežvydu i Iļžukolna pogostu. + +== Dzeivuotuoji == +===Zeimeigi ļauds=== +Nautrānu ci Miglinīku pogostā dzymuši: +* [[Andryvs Jūrdžys|Jūrdžys Andryvs]] - ailinīks, ļaudyskais dareituojs, latgaļu literaturys raisteibys vadynuotuojs +* Miglinīks Pīters - ailinīks, ļaudyskais dareituojs, latgaļu atdzimšonys vadynuotuojs +* Miglinīks Juoņs - pyrmais latgaļu teologejis zineibu doktors +* Platpīrs Aleksandrys - vīns nu pyrmūs latgaļu tauteibys bazneicnīku +* Pujats Juoņs - arciveiskups +* Rancāns Jezups - veiskups i politiks +* [[Nikodems Rancāns|Rancāns Nikodems]] - bazneicnīks, rakstinīks, vuiceibys plateituojs, vīns nu pošu zeimeiguokūs latgaļu ļaudyskūs dareituoju +* Sviklis Andrejs - bazneicnīks +* Sviklis Jezups - bazneicnīks +* [[Juoņs Cybuļskis|Cybuļskis Juoņs]] - kulturviesturnīks, publicists + +Dzymuši cytur, Nautrānu apleicīnē vuicejušīs ci darejuši: +* [[Fraņcs Kemps]] - publicists, ailinīks, politiks, vīns nu pošu zeimeiguokūs latgaļu ļaudyskūs dareituoju +* [[Anna Rancāne]] - ailineica, publiciste, [[Latgaļu himna|latgaļu himnys]] vuordu autore + +== Teiklavītys == +* [http://www.rezeknesnovads.lv/ Rēznis nūvoda informativais portals] + +{{Rēznis nūvods}} + +[[Kategoreja:Nautrānu pogosts| ]] + sbqxqawgj0pouvijpiu5p9gmrc2rd95 + + + + Neicgaļa Lelais akmiņs + 0 + 358 + + 11613 + 10619 + 2011-03-24T21:21:58Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Neicgaļa Lelais akmiņs''' aba '''Neicgaļa Boltais akmiņs''' — [[diervakmiņs]] [[Neicgaļa pogosts|Neicgaļa pogostā]], vysuleluokais akmiņs [[Latgola|Latgolā]] i vysā [[Latvejis Republika|Latvejis Republikys]] teritorejā. + +Akmiņs atsaguļs [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Neicgaļa pogosts|Neicgaļa pogostā]], meža ceļu kristcelēs 6 km iz [[Reiti|R]] nu [[Neicgaļa dzeļžaceļa staceja|Neicgaļa dzeļžaceļa stacejis]]. Jis labi īsalej apleicejā [[Zemisvierīņs|zemisvierīnī]], papylda jū ar sovu sovpateigū formu. Akmiņa viersā izlauzta lela sproga, suonā īkolti 3 pakuopīni. + +Māri: +* [[garums]] – 10,5 m; +* [[plotums]] – 10,4 m; +* [[augstums]] – 3,50 m; +* [[apleikmārs]] – 31,1 m; +* [[vydums]] – 170 m3. + +Akmiņs aptykts [[Neicgaļs|Neicgaļa]] mežu dzilīnē ap 1812 godu, tok itymā vītā stuoviejs godu tyukstūšys. Guodojams, ka jū atness [[laduojs]] - akmiņs irā labi saopoluojs, saškailuojs, leļkristaliskys rapakivi granita blučs. Valkūt rūbežu iz vyds [[Neicgaļa pogosts|Neicgaļa]] i [[Kolupa pogosts|Kolupa]] pogostu, akmiņs izlītuots kai rūbeža zeime. Nu 1977 gods jis apsorgojams kai vaļstiskuos zeimeibys [[dobys pīminieklis]]. + +[[Daugpiļs apleiciņs|Daugpiļs apleicinī]] aizraksteitī [[Pīstuoškys|pīstuoški]] viestej, ka [[Valns]] saguoduojs aizdambēt [[Daugova|Daugovu]] i atrads cīši lelu akmini. Jis bejs par lels i par gryuts, partū izkrits Valnam nu rūku i palics guļūt tī, kur irā vēļ šudiņ. + +[[Kategoreja:Latgolys dobys pīminiekli]] + dxkb1msgbsjqwd2c8ojvpkt6uadllq4 + + + + Neofelis diardi + 0 + 359 + + 29131 + 28283 + 2013-03-11T10:43:41Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q275163]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Pl9 rimau dahan(jardine).jpg|thumb|250px|]] +[[Fails:Neofelis diardi Locator Map.svg|thumb|250px|''Neofelis diardi'' paplateiba pasaulī]] +'''''Neofelis diardi''''' (G. Cuvier, 1823) ({{Vol-en|Bornean clouded leopard}}, {{Vol-ru|борнейский дымчатый леопард}}) irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Neofelis diardi'' dzeivoj Borneo i Sumotras jurossolas<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Neofelis_nebulosa.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 75—105 cm<ref name="ADV"/>;</br> +Astes garums: 79—90 cm<ref name="ADV"/>;</br> +Placu augstums: 50—60 cm;</br> +Svors: 11—23 kg<ref name="ADV"/>; + +== Daudzatmejeiba == +Irā 2 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id313175/ BioLib] Profil taxonu — druh '''pardál ostrovní ''Neofelis diardi''''' (Cuvier, 1823)</ref>: +* ''[[Neofelis diardi borneensis]]'' (G. Cuvier, 1823) +* ''[[Neofelis diardi diardi]]'' (G. Cuvier, 1823) + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Neofelis diardi}} + +{{DEFAULTSORT:Neofelis diardi}} + +[[Kategoreja:Dzeivinīki]] + 3re3qqorsigiuc7hz04mrl43c4gye32 + + + + Neofelis nebulosa + 0 + 360 + + 30691 + 30084 + 2015-04-02T15:29:29Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|fr}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Neofelis nebulosa.jpg|thumb|250px|]] +[[Fails:Clouded Leopard area.png|thumb|250px|''Neofelis nebulosa'' paplateiba pasaulī]] +'''''Neofelis nebulosa''''' (Griffith, 1821) ({{Vol-en|clouded leopard}}; {{Vol-ru|дымчатый леопард}}; {{Vol-lv|dūmakainais leopards}}) irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Neofelis nebulosa'' dzeivoj Denavydpustum Azejā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Neofelis_nebulosa.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: moutīte - 74-91 cm; tāviņš - 81-108 cm<ref name="ADV"/>;</br> +Astes garums: 61-82 cm<ref name="ADV"/><ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). Wild cats of the World. Chicago: University of Chicago Press. pp. 278–284. ISBN 0-226-77999-8.</ref>;</br> +Placu augstums: 25—40 cm<ref name="ADV"/><ref name=WCoW/>;</br> +Svors: 15—23 kg<ref name="ADV"/>; + +== Daudzatmejeiba == +Irā zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id2002/ BioLib] Profil taxonu — druh '''pardál obláčkový ''Neofelis nebulosa''''' (Griffith, 1821)</ref>: +* †''[[Neofelis nebulosa brachyurus]]'' Swinhoe, 1862 +* ''[[Neofelis nebulosa macrosceloides]]'' Hodgson, 1853 +* ''[[Neofelis nebulosa nebulosa]]'' (Griffith, 1821) + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Neofelis nebulosa}} + +{{DEFAULTSORT:Neofelis nebulosa}} + +[[Kategoreja:Dzeivinīki]] + 6bbt5bd71llchz1gbxqevxxwqpe25j4 + + + + Nikodems Rancāns + 0 + 361 + + 28285 + 22259 + 2013-03-07T19:04:46Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4389976]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Nikodems Rancāns''' (1870 — 1933) — bazneicnīks, poets, vuiceibnīks, vīns nu pošu zeimeigokūs latgaļu ļaudyskūs dareituoju. + +Dzims 1870 gods septembra 15 d. Zaļmuižys (piečuok - [[Nautrānu pogosts|Nautrānu]]) pogosta Miglinīku solā. Beidzs [[Pīterpiļs]] dvēseliskū seminaru. Nu 1920 da 1929 g. dzeivuojs Preiļūs. Bejs Preiļu parapejis bazneickungs (1920-1929), Aglyunys seminarejis docātuojs(1922-1924), Aglyunys reaļgimnazejis direktors (1923-1929), Jaunaglyunys sīvīšu gimnazejis direktors (1928-1929), Rēznis vaļstiskuo školuotuoju instituta direktors (1929-1933). Mirs Rēznē, paglobuots Rēznis Mīra ūļneicys kopūs. + +Izlaids religiska tecīņa latgaļu gazetu ''Sākla'' (1906). Puorvierss latgaliskai tautā nūmīļuotu gruomotu ''Genovefa'' (1907). Pīrakstejs prozys lasejumu ''Ceļuojums pa Latgolu'' (1924), kurs pīzineigai viertejams latgaļu literaturā, adaptiejumu “Kungs Tvardovskys” (1929), vuiceibu gruomotu ''Latvejis viesture'' (1921), latgaļu lementari (''Lementars deļ mozim bārnim'', 1923). + +N. Rancāns daudzi dasalics pi latgaļu vuiceibys raisteibys: bejs atdarejs kūpdzeivi [[Pīterpiļs|Pīterpilī]] jaunīšim nu Latgolys (1901–1906), organiziejs kursus i lekcejis, pats rakstejs i puorvierss vuceibu gruomotys školu jauneibai, i vadynojs cytus tū dareit, Preiļūs bejs īriedejs školānim vuiceibu bišu dravu i augļu suodu, materialiskai atspaiduojs pītryuceigūs škoļnīkus, paliedziejs voduot bārnus da školys. + +Par peļnejumim parapejis aktiviziešonā 1924 godā N. Rancāns dabuojs moņsinjora titeļa, 1927 gadā par peļnejumim ļaudyskajā dorbā jam daškierts Treju zvaigžņu ordiņs. + +{{DEFAULTSORT:Rancāns Nikodems}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 0drce921utbol9hs785khruo8jx12lo + + + + Nikolajs Goršenins + 0 + 362 + + 11617 + 10623 + 2011-03-24T21:22:38Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Nikolajs Goršenins''' (1947 — 2000) — Latvejis nacionaluos operys solists. + +Dzims Posyunis pogosta Katalovā, 1975 godā beidzs Latvejis vaļstiskuos konservatorejis vokalū klasi i suocs dareit operā. Apjiems nazcik desmišu parteju nu miļzeiguo klasiskuo repertuara. Daudzeju Latvejis i vydtautyskūs konkursu laureats. Mirs Reigā. + +{{DEFAULTSORT:Goršenins Nikolajs}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + rwgbs8zw5w9dhtcz9mucpjspuxk9nik + + + + Norvegeja + 0 + 363 + + 32135 + 30263 + 2017-08-21T08:27:52Z + + DARIO SEVERI + 3389 + + Update population from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Kongeriket Norge'''<br />'''Kongeriket Noreg'''<br />'''Norvegejis Kieneste'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Norway.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Norway.svg|100px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe location NOR.png|300px]] +|- +|| Golvysmīsts || Oslys +|- +|| Vaļsteibys volūda || Norvegu (bukmols i jaunnorvegu volūda) +|- +| Monarhs || Harolds V +|- +| Ministru prezidents || Erna Solberg +|- +|| Pluots || 385 178 km² +|- +|| Dzeivuotuoju skaits || 5 267 146 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1),<br /> EEST (UTC +2) +|} +'''Norvegeja''', oficialai '''Norvegejis Kieneste''' (norvegu: ''Kongeriket Norge'') - vaļsteiba Pūstumu [[Europa|Europā]], Skaņdinavejis pussolys vokorūs. Vaļsteiba tur rūbežu ar [[Švedeja|Švedeju]] (1619 km), [[Suomeja|Suomeju]] (727 km) i [[Krīveja|Krīveju]] (196 km). Dīnavydūs Norvegeju skaloj Pūstumu jiura, vokorūs Norvegu jiura, a pošūs vaļsteibys pūstumūs Barenca jiura. Norvegejai pīdar Svalbarda i Jana Majena sola Arktikā, taipoš Buvē sola, Pītera I sola i Kienenīnis Modys Zeme Antarktidā. + +Norvegeja irā pīktuo pa lelumam vaļsteiba Europā ar 386 958 km² pluotu, kurymā dzeivoj 4,9 miljoni dzeivuotuoju.<ref name="Population">{{cite web|url=http://www.ssb.no/english/subjects/02/befolkning_en/|title=Population|date=2009-04-01|work=Statistics Norway|accessdate=2009-06-03}}</ref> Tei irā vīna nu rešuok apdzeivuotojom vaļsteibom Europā. Golvysmīsts i leluokais mīsts - Oslys. Vaļsteibys volūda irā norvegu ar divejom rokstu volūdys tradicejom - bukmolu i jaunnorvegu. Obadivejis tur vīnaidys tīseibys vysūs vaļsteibys i pošvoldu leidzīņūs. Maja mieneša 17 dīnā norvegi svin konstitucejis pījimšonys dīnu. + +Norvegejis teritorejā ļauds apsadzeivovuši jau nu 6 godu symta. 872 gods kuovē pi Hafrsforda kieneņš Harolds Skaiškmots (norvegu: Harald Hårfagre) apvīnumova norvegu zemis. Nu tuo aizasuoce "Vikingu laiki". 1319 godā Norvegeja īsastuoja Kalmarys Savīneibā, kuramā beja [[Daneja]] i [[Švedeja]]. Kod 1521 godā Švedeja izastuoja nu savīneibys, Norvegeja palyka Danejis Kienestis pavaļdeibā. Piečuok Norvegeja puorguoja Švedejis pavaļdeibā, a napavaļdeiga vaļsteiba tyka 1905 godā, kod par pyrmū kieneņu tyka Hokons VII. 1940 gods apreļa mieneša 9 dīnā vaļsteibu okupēja Nacistiskuo Vuoceja, tok jau 1945 gods maja mieneša 8 dīnā norvegim izadeve atjaunynuot napavaļdeibu. + +Nu Ūtrajim pasauļa vaidim Norvegeja cīši dreiži izaraisteja, kuo pamatā irā naftys i dobysgazys atrostuvis Pūstumu i Norvegu jiurā, kurys atrostys 1970 godā. Norvegeja irā catūrtuo poša leluo naftys eksporta vaļsteiba<ref>{{Tīmekļa atsauce|url=https://www.cia.gov/library/publications/the-world-factbook/rankorder/2176rank.html |title=CIA&nbsp;— The World Factbook&nbsp;— Rank Order&nbsp;— Oil&nbsp;— exports |publisher=Cia.gov |date=2009-02-10 |accessdate=2009-02-14}}</ref> i vīna nu pošu boguotū vaļsteibu pasaulī. Tok vysleidza 99% energejis Norvegeja īgiust nu HES<ref>http://www.5ballov.ru/publications/works/1-43.html {{ru ikona}}</ref>. Norvegejis krona teik īskaiteita kai pasauļa stabiluokuo valuta. 2007 godā vaļsteibu pīzyna kai pasauļa mīreiguokū zemi. Kūpā ar Švedeju jei aizajim vīnu nu pyrmajom vītom pasaulī pa demokratejis iņdeksam. Myuslaikūs Norvegeja irā konstitucionala monarheja ar parlamentarisku demokratisku vaļdeibu. Koč i divejūs referendumūs Norvegejis dzeivuotuoji nūbalsova pret īstuošonu Europys Savīneibā, vaļsteibai irā nūtalejis i styprys saitys ar Savīneibu i tuos dalineicom. Norvegeja irā pīsadalejuse nazcik vydtautisku organizaceju īstateošonā - Saškiertūs Naceju Organizacejā (SNO), NATO, Europys Padūmē (EP) i Pūstumu vaļsteibu Padūmē (PVP), taipoš Norvegeja irā Europys Ekonomiskuos Zonys (EEZ), Pasauļa Tierdzeibys organizacejis (PTO) i Vydtautiskuos ekonomiskuos kūpādareibys i raisteibys organizacejis (VEKRO) dalineica. + +== Etimologeja == +Lelums etnologu guodoj, ka vaļsteibys pasauka irā izacēluse nu pūstumu germanu volūdom i zeimoj "pūstumu ceļš", kas senejuo norvegu volūdā byutu ''nord veg ar norð vegri''. Norvegeja senajuo norvegu volūdā irā Nóreegr, anglosaksu - Norþ weg, a vydslaiku latiņu - Nhorvegia. Niule Norvegejis vaļsteibys pasauka norvegu bukmolā irā Norge, a jaunnorvegu volūdā Noreg. Senejū norvegu i jaunnorvegu formys irā leidzeigys senejū samu vuordam ar zeimeibu "pa jiurmolai" ci "pa jiurai". Myuslaiku Lule samu volūdā tys irā ''nuorrek''. Arkaiskuos vuorda formys ļaun guoduot, ka vuords navā izacēls nu germanu volūdom. + +Cytuos vītejuos Norvegejis volūduos vaļsteibys pasauka irā: Pūstumu samu Norga, Lule samu Vuodna, Dīnavydu samu Nøørje, suomu Norja. Oficialuo vaļsteibys pasauka norvegiskai Kongeriket Norge (bukmolā) i Kongeriket Noreg (jaunnorvegu). Cytuos volūduos pylnuo pasauka - Pūstumu samu Norgga gonagasriika, Lule samu Vuona gånågisrijkka, Dīnavydu samu Nøørjen gånkarijhke, suomu Norjan kuningaskunta. Latgaļu volūdys variants sadar ar latvīšu i lītaunīku volūdys pasaukom. + +== Viesture == + +== Geografeja == + +== Politiskuo sistema == + +Norvegeja irā konstitucionala monarheja ar parlamentarisku demokratisku vaļdeibu. Norvegejis Kieneņš irā vaļsteibys golva, a Ministru Prezidents irā vaļdeibys golva. Piļdeituojvaļdi izpiļda Kieneņa padūmis kabinets, kura vadeituojs irā Ministru Prezidents. Lykumlaideibys vaļdi tur kai vaļdeiba, tai parlaments – Stortings (latgaliskai: ''Leluo Saīsme''). Stortingu ībolsoj taisnā proporceigā ībolsuošonā iz četrim godim, kurs sadora nu 169 deputatim. + +Oficialai monarhs tur piļdeituojvaļdi, tok īdzeivynojūt parlamentariskū vaļdeibys sistemu, monarha daguojumi myuslaikūs irā cīši reprezentativi I ceremonali. Norvegejis kieneņš irā pošaugstais militarū spāku komaņders, augstuokuo bazneicys instituceja I kolpoj kai uorzemu diplomatiskū saitu vadeituojs, taipoš irā vaļsteibys vīnumeibys simbols. Praktiskai Ministru Prezidents irā tys, kurs īdzeivynoj piļdeituojvaļdi dzeivē. Tīsu sistema irā napavaļdeiga nu piļdeituojvaļdis I nu lykumlaideibys vaļdis. + +== Administrativais dalejums == + +== Ekonomika == + +== Demografeja == + +=== Etniskais sadors === +=== Volūda === +=== Religeja === +Ļutarticeiba irā oficialuo vaļsteibys religeja, kurai tic 86% Norvegejis dzeivuotuoju. Cyti protestaņti irā 3,5% nu dzeivuotuoju, Romys katuoli 1%, musulmoni 2% I cytu religeju ticeigī 1% (vysuvaira budisti, hinduisti I judaisti). Cyti natur kaidu naviņ religeju. Pa 2005 gods apklausys datim, 32% Norvegejis dzeivuotuoju „tic, ka ekzistej Dīvs”, 47% % „tic, ka irā kaids naviņ gors ci dvēseliska energeja”, 17% % „natic ni kaidam naviņ dīvam, ni goram ci dvēseliskai energejai”, a 4% „nazyna”. <ref>{{cite web |url=http://ec.europa.eu/public_opinion/archives/ebs/ebs_225_report_en.pdf |format=PDF|title=Eurobarometer on Social Values, Science and technology 2005 - 9 puslapis}}</ref> + +Senejī norvegi, taipoš kai vysys skaņdinavejis germanu tautys, beja paguoni i ticēja skaņdinavu mitologejai. Suomu-ugru tautys samu religeja beja šamanizmys Laikā nu 1000 gods da 1500 godam misionaru dorba rezultatā, pa mozam Norvegaja tyka kristeiga. Da reformacejai norvegi beja katuoļu bazneicys dale, a nu 1536 gods puorguoja protestaņtizmā. + +Nu nakrysteigom religejom poša leluo irā musulmonu kūpeiba – gondreiž 2% nu dzeivuotuoju. Tū vysuvaira veidoj arabu, albaņu, somalīšu i turku imigraņti, taipoš pakistanu ciļmis norvegi. + +== Sports == + +== Verīs taipoš == + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 5dwn1sf7wtbbwbub6lhaogl9phqcnfs + + + + Nyctereutes + 0 + 364 + + 32130 + 28994 + 2017-08-07T18:01:32Z + + Wolverène + 2408 + + Russian? why is it intresting? + wikitext + text/x-wiki + [[Fails:Tanuki01 960.jpg|thumb|250px|''Nyctereutes procyonoides'']] +'''Nyctereutes''', Temminck, 1838 ({{Vol-lv|jenotsuņi}}) irā plieseigo zvieru giņts iz [[Suņu saime|suņu saimis]] (''Canidae''). + +== Škiras == +3 škiras irā ''Nyctereutes'' giņtī<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1892/ BioLib] Profil taxonu — rod psík Nyctereutes Temminck, 1838</ref>: +* †''[[Nyctereutes megamastoides]]'' +* †''[[Nyctereutes petenyi]]'' +* ''[[Nyctereutes procyonoides]]'' (Gray, 1834) + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Nyctereutes}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + qc0obv9ivm0ypjvo0vdc5u3hca1xpce + + + + Nīderlandeja + 0 + 365 + + 32132 + 30433 + 2017-08-15T13:19:18Z + + DARIO SEVERI + 3389 + + Update from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Nederland'''<br />'''Nīderlandeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of the Netherlands.svg|150px|border]] +| align="center" width="140px" | [[Fails:Royal Coat of Arms of the Netherlands.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Netherlands.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Monarhs || Willem-Alexander +|- +| Ministru prezidents || +|- +|| Pluots || 41 543 km² +|- +|| Dzeivuotuoju skaits || 17 100 475 <small>(2017)</small> +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Nīderlandeja''' (nīderl.: ''Nederland'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 55gabivsogt7wzihvvkciy8qsr1bs22 + + + + Nūlīgtiņs + 0 + 366 + + 31457 + 28289 + 2016-06-12T06:40:27Z + + Chenspec + 3458 + + wikitext + text/x-wiki + [[Fails:ויקיפדיה אוהבת אתרי מורשת 2014 - אתרי עתיקות בצפון הארץ - עין אפק (44).JPG|thumb|Nūlīgtiņs]] +'''Nūlīgtiņs''' aba '''dobys nūlīgtiņs''' — sorgojama dobys teritoreja, kuramā apsardzeiba zeimojās na iz vysu dobys kompleksu (kai rezervatūs), a tik iz nazkurom juo daļom, pīv., tik auguojim, tik dzeivinīkim ci jūs atseviškom škirom, a voi iz kurim nakurim viesturiskim ci geologiskim objektim. + +{{nadabeigts rakstīņs}} + 9y4qwlqb6se6b08h39daevwbi99dbl1 + + + + Ombumuižys pogosts + 0 + 367 + + 28290 + 22634 + 2013-03-07T19:05:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2988487]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ombumuižys pogosts +| zemislopa = Ambeļu pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods +| nūvoda_pasauka = Daugpiļs nūvods +| centrys = Ombumuiža +| pluots = 69,34 +| dzeivuotuoju_skaits = 695 +| dzeivuotuoji_gods = 2010 +| bīzeiba = 10 +| īstateits = 1945 +| likvidets = <!-- Tik gods --> +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.ambeli.lv +}} + +'''Ombumuižys pogosts''' aba '''Ambeļu pogosts''' — pošvolds, administrativuo teritoreja [[Daugpiļs nūvods|Daugpiļs nūvoda]] pūstumreitūs. Pogosta centrys — [[Ombumuiža (Ambeli)]]. + +== Rūbeži == +Ombumuižys pogosts tur rūbežu ar: +* [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Bikernīku pogosts|Bikernīku]] i [[Vyšku pogosts|Vyšku]] pogostim; +* [[Aglyunys nūvods|Aglyunys nūvoda]] [[Aglyunys pogosts|Aglyunys]] i [[Škeļteņu (Škeltovys) pogosts|Škeļteņu (Škeltovys)]] pogostim; +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Izvolta pogosts|Izvolta]] pogostu. + +== Iudini == +Upis: +* [[Bolta (upe)|Bolta]] +* [[Dubna (upe)|Dubna]] +* [[Leiksna (upe)|Leiksna]] +* [[Mozuo Muša]] +* [[Paršučka]] +* [[Tartaks]] + +[[Iudiņtvere|Iudiņtveris]]: +* [[Vyšku azars]] + +== Solys == +Ombumuižys pogosta solys: +* [[Augškaļne]] +* [[Golvāni]] +* [[Glinaruča]] +* [[Graiži]] +* [[Guta]] +* [[Jaunaiskrūgs]] +* [[Jaunī Stupeliški]] +* [[Jurgeliški]] +* [[Kolna Škapari]] +* [[Kolnaviči]] +* [[Kondaunīki]] +* [[Lauku Lēperi]] +* [[Leluo Baranauska]] +* [[Lelī Kuseni]] +* [[Mīžusāta]] +* [[Ombumuiža (Ambeli)]] +* [[Pītreiši]] +* [[Putāni]] +* [[Svieteni]] +* [[Ubodiški]] +* [[Vacī Stupeliški]]. + +== Slavvītys == +Piliskolni: +* [[Baranausku piliskolns]] +* [[Lēperu piliskolns]] +* [[Grītiskolns]] + +Seņkopi: +* [[Glinaručys seņkopi]] +* [[Golvānu seņkopi]] +* [[Lēperu seņkopi]] +* [[Skromānu seņkopi]] +* [[Vacūs Stupelišku seņkopi]] + +Vydslaiku kopi: +* [[Kampānu - Kuseņu vydslaiku kopi]] +* [[Ubodišku vydslaiku kopi]] + +Šudinejī kopi: +* [[Augškaļnis kopi]] +* [[Ombumuižys kopi]] +* [[Putānu kopi]] +* [[Vyšku kopi]] + +Bazneicys: +* [[Ombumuižys sv. Jura bazneica|Ombumuižys sv. Jura katuoļu bazneica]] +* [[Augškaļnis svātuos Saimis katuoļu bazneica|Augškaļnis sv. Saimis katuoļu bazneica]] + +Ceļamolu krysti: +* [[Graižu krysts]] + +Muižys: +* [[Ombumuižys kuormi]] + +Parki: +* [[Ombumuižys parks]] + +Lelkūki: +* [[Regžu lelūzuls]] +* [[Kolnaviču lelūzuls]] + +== Teiklavītys == +* [http://www.ambeli.lv/ Ombumuižys pogosta teiklavīta] + +{{Daugpiļs nūvods}} + +[[Kategoreja:Ombumuižys pogosts| ]] + qjgz8y2lowux3dle9de5uljnpih76q2 + + + + Ontons Breidaks + 0 + 368 + + 31307 + 11622 + 2016-02-19T10:14:24Z + + Edgars2007 + 114 + + + added [[Category:Zeimeigi Latgolys ļauds]] using [[Help:Gadget-HotCat|HotCat]] + wikitext + text/x-wiki + '''Ontons Breidaks''' (1932 — 2002) — vysuzeimeiguokais latgaļu volūdzininīks, vīns nu pošu zeimeigūs baltu leidzynojamuos viesturiskuos volūdzineibys specialistu, ceikstinīks par latgaļu literaruos volūdys tīseibom, latgaļu ortografejis raisteituojs. + +Dzims 1932 g. janvara 25 d. Pyldys pogostā. Beidzs Ludzys vydškolu (1951), ar cyldonumu beidzs Latvejis vaļstiskū universitetu (niule Latvejis universitets) filologejis specialitetā. Piec 11 godu Darejs Aglyunys vydškolā, sūpluok pedagoga dorba tuoļuodams studeju laikā aizsuoktū ziniskū dorbu. + +Nu 1967 g. darejs Zineibu akademejis Volūdys i literaturys instituta Folklora sektorā par ziniskū leidzadari. Tiemiejs latgaļu tautysdzīšmu volūdu. 1970 aizastuojs disertaceju ap latgaļu leksiku i juos viesturiskajom saitom, dabuojs filologejis zineibu kaņdidata cylys. Nu 1970 g. dociejs Latvejis universiteta Pedagogejis fakuļtetā. 1981 –1983 darejs laistivē "Zinātne" (''Zineiba''). Nu 1983 gods bejs docātuojs Daugpiļs pedagogiskajā institutā (niu Daugpiļs universitets), Rēznis augstškolā, Latvejis vaļstiskuo univeristeta Pedagogejis fakuļtetā. Dociejs viesturiskū gramatiku, baltu voūdzineibys īvodu, baltu etniskū vēsturi i latiņu volūdu. + +1990 Viļnē aizastuojs ūtrū disertaceju - ap latgaliskūs vītrunu fonetikys diahroneju i sinhroneju. Dabuojs filologejis doktora cylys (1992 godā damāruota Latvejis Republikys habilitātajai doktora cylai (Dr. habil. philol.). + +Nu 1994 gods darejs Latvīšu volūdys institutā pi latgaliskuos leksikys i fonetikys materialu. Pīrakstejs monografejis ''Latgaliskūs vītrunu fonetikys atlass'' ("Augšzemnieku dialekta latgalisko izlokšņu fonētikas atlants" (1996), ''Baltu volūdzineibys īvods''("Ievads baltu valodniecībā", 1 daļa 1998), 2 daļa 1999). Publiciejs ap 200 ziniskūs rakstīņu, tymā vydā, vydtautyskai pīzeitūs laidīņūs ''Baltistica'' (Lītovā), ''Linguistica Baltica'' (Puolejā), ''Lingua Posnaniensis'' (Puolejā), ''Acta Baltico-Slavica'' (Puolejā), ''Linguistic and Oriental Studies from Poznan'' (Puolejā), ''Linguistique Balkanique'' (Bulgarejā), ''Балто-славянские исследования'' (Krīvejā). O. Breidaks taipoš beja laidīņu ''Linguistica Baltica'' i ''Балто-славянские исследования'' vydtautyskuos redkolegejis bīdrys. + +O. Breidaka tiemiejumi pa lelumam latgaļu lingvistikā, toponimikā, etnolingvistikā (vaira vēļ ap baltu i Baļtejis +suomu volūdu saitom, taipoš ap baltu i slavu volūdu saitom) i kūpeigajā volūdzineibā. Lelu īlicīni O. Breidaks devs Latgolys vītrunu i vītvuordu aptikšonā i puortēmē, vuordu ciļmis skaidriešonā. O. Breidaks bejs vīns nu latgaliskuos raksteibys atdzimšonys vadynuotuoju piec 1988 gods, i ar sovim tiemiejumim jis ziniskai pamatuojs latgaļu volūdys viesturiskuos tīseibys. + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + dk8bzprcxb3yrc4fh492qe3ep2k046w + + + + Ontons Dzeņs + 0 + 369 + + 11623 + 10630 + 2011-03-24T21:23:38Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Ontons Dzeņs''' (1890 — 1974) — latgaļu kulturviersturnīks, rakstinīks. + +Dzims [[Vuorkovys pogosts]] Piliškuos. Nu 1944 g. dzeivuojs ASV. + +Memuaru gruomota ''Muna dzeive'' (1 - 3 dalis), kura dūs plotu īsavierīni XIX i XX gs. meitovu Latgolys kulturā. + 8wov69t8z9elnyb2yyyn1cyzzlyrt43 + + + + Ontons Slyšāns + 0 + 370 + + 31305 + 13105 + 2016-02-17T18:37:38Z + + Edgars2007 + 114 + + + added [[Category:Zeimeigi Latgolys ļauds]] using [[Help:Gadget-HotCat|HotCat]] + wikitext + text/x-wiki + '''Ontons Slyšāns''' — ailinīks, eisprozys autors, folklorys vuociejs i pietnīks, publicists, kulturys darbinīks. + +== Biografeja == +O. Slyšāns dzims 1948. goda 28. decembrī Šķilbānu pogosta [[Stabļova|Stabļovys]] cīmā zemnīku Dominika i Annys Slyšānu giminī. Laikā nu 1948. goda da 1964. goda vuicejīs [[Upeite|Upeitis]] ostoņgadeigajā školā, nu 1964. da 1968. godam – [[Bulduru duorzkūpeibys tehnikums|Bulduru duorzkūpeibys tehnikumā]], īgivs duorzkūpa i biškūpa kvalifikaceju. Nu 1974. goda da 1980. nakluotīnē vuicejīs gleznīceibu i grafiku Moskovys Muokslys tautys universitatē, nu 1978. da 1984. goda nakluotīnē studiejs LLA, [[Jelgava|Jelgavā]] īgivs agronoma specialitati. + +1968. godā da īsaukšonai dīnestā O. Slyšāns bejs struodnīks Bulduru sovhoztehnikuma duorzkūpeibys brigādē. Nu 1970.–1994. – kolhozā „Upītes” struoduojis par lūpkūpeibys brigaderi, ražuošonys īcirkņa vadeituoju, golvonū agronomu, nu 1988. goda – par saimnīceibys vadeituoju. Godu vāluok Upeitis pamatškolā suok vuiceit dobys muoceibu, zeimiešonu, Upeitis i Latgolys kultūrviesturi. + +Nu 1995. goda – Upeitis bibliotekys bibliotekars i Kulturviesturis muzeja sabīdriskais vadeituojs. 1989. godā O. Slyšāns nūdybynuoja [[Rekava|Rekavys]] i Upeitis etnografiskūs ansambļus; nu 1989. goda jis voda [[Bolvi|Bolvu]] rajona Latgalīšu kulturys bīdreibu, organizej i voda Upeitis kasgodejūs [[Kūkova|Kūkovys]] nūvoda bārnu i jaunīšu kulturys svātkus, aiļu dīnys, kai ari mīlesteibys aiļu i dzīšmu festivalu „Upeitis Uobeļduorzs”. O. Slyšāns organizej ari Zīmeļlatgolys muokslinīku dorbu izstuodis. Kūpš 1994. goda – Rakstnīku savīneibys bīdrs. Juo vadeituos zemnīku saimnīceibys Jākupuoni GIGR (gruomotu izdūšonys rodūšuo grupa) izdūd ari O. Slyšāna gruomotys. + +Kūpā sarakstejs i izdevs tyvai pi 30 gruomotom. + +== Literaruo darbeiba == +Literarū daiļradi Ontons aizsuoka [[Bulduri|Buldurūs]], vadeidams žurnalu [["Jaunība"]] 1972. godā pīsadalejs Jaunūs autoru seminarā [[Laidze|Laidzē]]. Pyrmuos publikacejis Bolvu rajona laikrokstā [["Vaduguns"]](1981, 27. jūnijā – treis ailis [[Škilbāni|Škilbānu]] pogosta izlūksnē, 16. julī – feļetons „Sīna laika bādys”. Aiļu kūpa „Rūtoj, sauleit…” publicāta žurnālā [["Karogs"]](1984, Nr. 10). 1991.godā ailis publicātys ari [[Ludza|Ludzys]] Literatu apvīneibys kūpkruojumā „Saule izkapts kuotā”. Izdūtys aiļu gruomotys obuos latvīšu volūdys tradicejuos – bārnim: „Raibī panti”(1991), „Lyugums sapneišam”(1992), „Pār gadskārtu Jānīts nāca”(1993), „Cik vējam krāsu?”(1994), „Zynomōs meikleitis”(1995), „Ziemneši”(1996), „Rūtaļu gods” (1997), „Rotaļa”(1998), „Nepareizais”(2000), „Laiks”(2001), „12”(2006); ailis pīaugušajim: „Tāvaine muna”(1992), „Lela ceļa maleņā”(1995), „Sovu liktini izsuopūt”(1996), „Ar myužeibu sasarunoj”(1997), „Upītes ābeļdārzs”(1998), „Liktiņdorbs”(1999), poēma „Olūta smielieja”(2000), „Tītupats”, (2007), „Salve Regina” (poema par radeišonu, 2008). Proza: eisfeļetonu gruomota „Šērve jeb kur tavi ideāli?”(1995), „Atnadzis jeb šis labvēlīgais latgaliskums”(2003), „Čipierkstneits jeb Apcirsto sakņu pieaudzēšana”(2010); ceļveds „No Balviem līdz Balkāniem”(1997), kūpkruojumūs – „Olūti” i „Tāvu zemis kalendārs” <ref>1. Paukšte, J., Rancāne, J., Saleviča, I., Vilčuka, I. Latgales kultūras darbinieki 2. Rīga: Jumava, 2008. 245 – 247 lpp.</ref> + +Kūpā ar sīvu školuotuoju Irēnu izaudzynuojuši četrus bārnus i tagad paleidz audzynuot mozbārnus. +2000. godā Ontons Slyšāns apbolvuots ar [[Lelū folklorys goda bolva|Lelū folklorys goda bolvu]]. + +2007. goda Dzejis dīnuos Ontons sajēme apbolvuojumu par izcylu davumu regionalajā literaturā i par lobuokū nūvoda aiļu kruojumu "Tītupats". + +2008. godā [[Vaļsts Kulturkapitala fonds]](VKKF) Ontonam Slyšānam pīškeira myuža stipendeju i Ordiņu kapituls apbolvuojs jū ar V škirys Atzineibys krystu. Latgalīšu kulturys goda bolvā [["BOŅUKS"]] īgivs bolvu nominacejā 2009. goda kulturys darbinīks <ref>3. Rancāne, A. Latgalīšu kulturys Goda bolva „BOŅUKS” 2009 laureati. </ref>. + +Runojūt par daiļdorbu nūskaņu, bārnu ailis raksturoj sirsneiba, bārnu psihologejis izpratne i pazeišona. Tuos ir sarunys par vīnkuoršom, bārnim saprūtamom lītom, dorbim, pasaulis paruodeibom. Dzejā autors izmontoj dažaidys vuordu spēlis, jūkus, skaitomūs panteņus i pat buramvuordus. Latgaliski O. Slyšāns roksta sovā dzymtajā izlūksnē, na latgalīšu rokstu volūdā. Tys pīškir juo ailem kruosaineibu i savdabeibu, tei ir juo atškireibys i kvalitatis zeime. + +Dzeja pīaugušajim ir pylna ar patīsi dzili izsuopātu mīlesteibu iz sovu tautu, ar skumu apziņu i sajyutu partū, ka jis ir piedejais sovā volūdā rokstūšais puorstuovs. Centraluo vīta ailēs – latgalīšu volūdai, viesturei i pošapziņai. Latgaliski latvyskuo pošapziņa ailēs pasaruoda veiriškeigi tīša, tei ir poetiskuos detaļuos zemei pīsaisteitys ailis, kas nasavaira socialuo osuma i tautiskuos izteiksmis. + +Prozā figurej dzeivē nūsavārts personāžs – sābri, „pošu ļauds”. Centrā ir ideja par apdraudātajom pamatvierteibom – par dzimtū volūdu, zemi, tāvu sātu.<ref>2. B, Ināra. Slišāns Antons. http://www.balvurcb.lv/kb/?View=entry&EntryID=257 </ref> + +== Ontons Slyšāns par sevi i sovom vierteibom == +* '''Muns laiks ir''' tei munys dzeivis sapruoteiguo daļa, kurā es eju iz sovu dzeivis mierki. +* '''Muna telpa ir''' latgaļu apdzeivuotuo dzeivisvide. +* '''Muna kruosa ir''' palākuo. Tys ļaun maņ napuortraukti jū uzturēt teiru, kab byutu dzeivis pelieceigumā īraugoma. +* '''Muns pamats ir''' muotei i tāvam i munys dzymtys vacajīm ļaudīm maņ agrā bierneibā apziņā īlyktais tykumiskais montuojums i muna ticeiba lobajam. +* '''Muna'''...latgaļu volūda.<ref>Susātivs: myusdīnu latgalīšu aiļu antologeja. Rēzekne, Lagolys Studentu Centrs, 2008, 94 lpp.</ref> +Pseidonimi: '''Ceceļānu Ontiks, Jākupānu Jezups Mežavydūs, O.S., Petru Pīters, Ventnāburgu Jānis, Zars.''' + +== Atsaucis == +{{Reflist}} + +'''Dažys nu O. Slyšāna publikacejom škārsteiklā''' +# Slyšāns, O. Dūrbuļuošonuos. http://www.latgale.lv/lg/news/article?id=3031 +# Petru Pīters. Voi naaizmygušī var prosamūzt? http://www.latgale.lv/lg/news/article?id=3008 +# Jākupānu Jezups Mežavydūs. Byus muna parteja! http://www.latgale.lv/lg/news/article?id=2987 +# Petru Pīters. Kai izuorsteit Latvejis mugorkauļa suopi? http://www.latgale.lv/lg/news/article?id=2977 +# Petru Pīters. Loba ūža, švaka dūša. http://www.latgale.lv/lg/news/article?id=2954 +# Petru Pīters. Stepon, Stepon, kaida tev kule! http://www.latgale.lv/lg/news/article?id=2770 + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + a66ha9z6d3ktln0u00pmah2bvvk2mx3 + + + + Ontons Tumuļkāns + 0 + 371 + + 11625 + 10632 + 2011-03-24T21:23:58Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Ontons Tumuļkāns''' (1927) — fiziks, iņženers, radejizotopu tāmātuojs, vaļstiskuos premejis laureats. + +Dzims 1927 g. Mērdzinis (niu - Pušmycovys) pogosta Latyšu solā. Vuicejīs Pušmycovys školā, Ludzys vaļstiskajā gimnazejā, beidzs Latvejis vaļstiskū universitetu (niu - Latvejis universitets) fizikys i matematikys specialitetā. Bejs Zineibu akademejis Fizikys instituta jaunuokais ziniskais leidzadors, piec darejs par vacuokū iņženeri i grupys vadeituoju Reigys radejizotopu aparattaiseibys ziniskajā tiemiešonys institutā, kurs tēmēja kontrolis metodus radejizotopu izlītuošonai kosmosa puortēmis vajadzeibom i itamā atzarē beja golvonais instituts Sovetu Savīneibā. Nu 1993 gods dzeivoj dzymtajā sātā Latyšūs. + +Latvejis SSR vaļstiskuos premejis laureats i SSRS Tautys saimeistiskūs dasnāgumu paruodis diplomands par releja tipa radejizotopu aparatu ziniskūs pamatu padari pīgataviskajim procesim automatizēt. + +{{DEFAULTSORT:Tumuļkāns Ontons}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 5dsvuvvug1tgeu6ep7gduf9zdwbpga5 + + + + Ontons Zvīdris + 0 + 372 + + 12451 + 10633 + 2011-03-28T18:25:56Z + + DEagleBot + 35 + + + Robot: Changing template: Disambig + wikitext + text/x-wiki + Vuordu i pavuordi '''Ontons Zvīdris''' tur diveji pazeistami latgali: +* [[Ontons Zvīdris (muokslinīks, literats)|Ontons Zvīdris]] — muokslinīks, ailinīks i dramaturgs. +* [[Ontons Zvīdris (uorsts)|Ontons Zvīdris]] — izsliviejs uorsts. + +{{Zeimeibu škiršona}} + 4vaht4xoev3m974dzajlzg00bglbyc5 + + + + Ontons Zvīdris (muokslinīks, literats) + 0 + 373 + + 11626 + 10634 + 2011-03-24T21:24:09Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Ontons Zvīdris''' (1911 — 1992) — latgaļu muokslinīks, ailinīks, dramaturgs. + +Dzims [[Rēznis apleiciņs|Rēznis apleiciņa]] [[Makašānu pogosts|Makašānu pogosta]] Lelpujatūs. Vuicejīs [[Rogoukys pamatškola|Rogoukys pamatškolā]], beidzs [[Tukums|Tukuma]] vaļstiskū pīnsaimesteibys školu. Darejs [[Jaunkolsnova|Jaunkolsnovys]] pīnineicā, [[Reiga|Reigys]] golvonajā postā, [[Vaļmera|Vaļmerys]] autobusu parkā. [[Ūtrais pasauļa kars|Ūtruo pasauļa kara]] laikā 1942 g. nūsyuteits dorbūs iz [[Vuoceja|Vuoceju]], tics [[Bāgaļu siedeiba|bāgaļu siedeibā]] [[Flensburgs|Flensburgā]], vuicejīs [[Diseļdorfa muokslys akademeja|Diseļdorfa muokslys akademejā]]. Izbraucs iz [[Angleja|Angleju]], nu 1949 g. dzeivuojs [[Kanada|Kanadā]], [[Toronta|Torontā]]. 1962 godā ar paraudzeibu beidzs muokslys školu, piečuok aktivai tepiejs, riedejs [[Paruode|paruodis]] Torontys [[Biblioteka|bibliotekumuokslys]] galerejuos. + +[[Oleja tepiejums|Oleja tepiejumūs]], [[Kūka skulptura|kūka skulpturuos]], taipoš poezejā i publicistikā O. Zvīdris atvaiguojs Latgolys viesturi, tāvainis tveikys, religiskus motivus, [[Zemisvierīņs|zemisvierīņus]] i pučis, radejs latgaļu kulturyskūs i ļaudyskūs dareituoju, izslyvušu bazneicnīku portretus. O. Zvīdra tepiejumim soveigs gaišs i valeims pasavierīņs iz ļaužu i dobys, sovus guodus muokslinīkam meiliejīs izsaceit caur alegorejom. Juo tepiejumu kolorits atspeidynoj ideju emocionalū īkruovīni nu gaišai sauļuotu da dramatiskai tymsu, nu naramūni viestejūšu da trāpu i mīronu kruosu salykumu. + +1991 godā O. Zvīdris paduovynuoja [[Latgolys kulturviesturis muzejs]] 33 sovus [[Tepiejums|tepiejumus]] i 8 [[Skulptura|skulpturys]]. + +Poezejis lasejumi: +* ''Tu'' (1974); +* ''Kod sirds teik gunkurs'' ("Kad sirds top ugunskurs", 1981); +* ''Dvēselis tveikys i suope'' ("Dvēseles ilgas un sāpes", 2001). +Aiļu volūda cīšuok latvyska kai latgaliska, koč aizraksteita lītojūt latgaļu ortografeju. Poetika i ritmika dzeiveiga, šaļtim skaiški kaitaveiga. + +Pjesu lasejums: +* ''Dramys'' (1977). + +== Verīs taipoš == +* [[Ontons Zvīdris (uorsts)|Ontons Zvīdris]] ''(taids pat vuords, pavuorde)'' - izslivs latgaļu uorsts + +{{DEFAULTSORT:Zvīdris Ontons}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 75ayo9b0v66lddtyk6tjur0saphggp6 + + + + Ontons Šmulāns + 0 + 374 + + 26131 + 11627 + 2012-12-02T17:12:22Z + + Stiernīts~ltgwiki + 315 + + + wikitext + text/x-wiki + '''Ontons Šmulāns''' (1927 — 1972) — vīns nu Latgolys pošu zeimeiguokūs pūdaru. + +Dzims Mērdzinis (niu Blontu) pogosta Kucoukā. Pūdareibu vuicejīs nu sova tāva [[Jezups Šmulāns|Jezupa Šmulāna]] i cytu pazeistamuokūs Ludzys apleicīnis meistru. Taisejs svečnīkus, sīnu puškuojumus, žbanus, madaunīkus. Sūpluok saimesteibys trauku darynuošonys, sovā nūvodā aizsuocs dekorativuo tecīņa keramiku, deļ tuo izsliviejs kai folklora motivu īdzeivynuotuojs muolā. + +Pasauļa slavi meistram atnese seikplastika – valna atvaigs. Taisedams veļneņus, O. Šmulāns jimūs īmīsuojs cylvāka sluobumus i tryukumus. Meistrys sataisejs ap pīcys tyukstūšas valnu, i vysi jī bejuši izškireigi. Niu O. Šmulāna darīni izpleikšuši pa daudzejim Latvejis i uorzemis muzejim (dali nu jūs var apsavērt Valnu muzejā Kaunē, Lītovā), privatkolekcejom. Pūdara dorbi bejuši izstateiti Pasauļa paruodē Monrealā, Kanadā. + +O. Šmulānam daškierta Tautys skaistomota meistra gūda pasauka. + +{{DEFAULTSORT:Smulans, Ontons}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + f3t24bjrfm78vyuf2bvci1z20mq3fqt + + + + Opinku Valna ola + 0 + 375 + + 11628 + 10636 + 2011-03-24T21:24:28Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Opinku Valna ola''' — geologiskys dobys pīminieklis [[Rēznis nūvods|Rēznis nūvoda]] [[Nautrānu pogosts|Nautrānu]] pogostā. + +Ola irā 1 km iz [[Dīnavydvokori|DV]] nu [[Rasnupli|Rasnupļu]] solys, [[Zušupeite|Zušupeitis]] lobuos molys pīslaitē pret Opinku piliskolnu. Koordinatys: N 56°42'19,8" E 27°22'00,4". Preteimā upis molā – [[Opinku piliskolns]]. + +Ar [[Olūtvapna|olūtvapnu]] sacementāta [[Kvartars|kvartara]] [[Žvyrs|žvyra]] blučs, zam kura pasadarejuse lāva ola. Pyrma 1991 godā padareituos teireišonys zam 4 [[Metris|m]] plotuo i 1,5 m augstuo [[Konglomerats|konglomeratu]] bluča redzējuos apmāram 25 [[Ceņtimetris|cm]] augsta sproga. Ola volgona, pavasar net pylduos ar iudini. Grīsti i sīnys ar izcylom i sprogom. 5 – 6 [[Ceņtimetris|cm]] gari [[Stalaktits|stalaktiti]]. + +Niulejī māri: +* [[augstums]] – ap 1 [[Metris|m]]; +* [[dzilīne]] – ap 3,5 m; +* [[plotums]] – da 2,7 m; +* zamzemis pluota [[vydums]] – da 2,7 m. + +Opinku Valna ola literaturā pīmynāta nu 1925 gods. Pa pīstuoškim, olā globojūtēs Valna nauda, jū sorgojs malns suņs. + omlamcxpzovx0z2kpyt6776d1rk8kpe + + + + Oskars Kalējs + 0 + 376 + + 30345 + 11629 + 2014-06-17T10:57:38Z + + Jafeluv + 56 + + rm deleted image + wikitext + text/x-wiki + '''Oskars Kalējs''' (1902 — 1993) — [[Latvīši|latvīšu]] [[tapātuojs]], dzims i darejs [[Latgola|Latgolā]], tepiejs Latgolys [[Zemisvierīņs|zemisvierīņus]]. [[Daugpiļs nūvodtēmis i muokslys muzejs|Daugpiļs nūvodtēmis i muokslys muzeja]] īstateituojs. + +Dzims 1902 g. apreļa 24 d. [[Rēznis apleiciņs|Rēznis apleiciņa]] [[Bieržgaļs|Bieržgalī]] latvīšu [[Īriednis|īriedņa]] saimē. [[Pyrmais pasauļa kars|Pyrmuo pasauļa kara]] godūs kūpā ar saimi laidīs bāgaleibā iz [[Krīveja|Krīveju]]. Vuicejīs [[Moskvys augstuo muokslys i taiseibys škola|Moskvys augstajā muokslys i taiseibys školā]] muokslyskai tehniskajuos dareitovuos (1920 – 1921 g.). Studiejs [[Latvejis muokslys akademeja|Latvejis muokslys akademejā]] (1921 – 1931 g.), beidzs [[Dobysvierīņs|dobysvierīņu]] [[Meistradareitova|meistradareitovu]] ar diplomdorbu ''[[Sakstygols]] – Latgolys zemisvierīņs'' (vad. V. Purvīts). + +Studeju godūs aizadedzs ar viesturis tiemiešonu, [[Ernests Brastiņš|Ernesta Brastiņa]] vodoms pīsadalejs [[Zemgola|Zemgolys]] [[Piliskolns|piliskolnu]] aizmiereišonā. Piec studeju dzeivuojs [[Daugpiļs|Daugpilī]], darejs [[Daugpiļs vaļstiskais školuotuoju instituts|Daugpiļs vaļstiskajā školuotuoju institutā]] par zeimiešonys docātuoju, taipoš Daugpiļs krīvu i boltkrīvu gimnazejuos par školuotuoju. Nu 1927 g. pīsadalejs [[Paruode|paruodēs]]. + +O. Kalējs organiziejs [[Latvejis vaļstiskais viesturis muzejs|Latvejis vaļstiskuo viesturis muzeja]] Daugpiļs atdaļu (niule – [[Daugpiļs nūvodtēmis i muokslys muzejs]]) i nu 1938 da 1941 gods bejs [[Daugpiļs nūvodtēmis i muokslys muzejs|Daugpiļs muzeja]] viersinīks. Jis pīlasejs lelu i zeimeigu Latgolys [[Keramika|keramikys]] kolekceju. 1940 godā O. Kalējs pīsadaleja [[Latgolys dzīšmusvātki|Latgolys dzīšmusvātku]] organiziešonā. 1941 godā pajimts navaļā i izsyuteits, da Latvejis grīzīs 1958 godā. Paruodēs juo dorbi otkon izstotomi nu 1970 gods. [[Latvejis muokslinīku savīneiba|Latvejis muokslinīku savīneibys]] bīdrys nu 1991 g. [[personalparuode]] sariedeita [[Reiga|Reigā]] 1992 godā. Mirs 1993 g. janvara 16 d. Reigā. + +Tepiejs Latgolys [[Zemisvierīņs|zemisvierīņus]] smolkai tonātā [[Izsaceiba|izsaceibā]], soveigai 30-tūs godu [[Stiļs|stiļam]]. + +{{DEFAULTSORT:Kalējs Oskars}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + lk8tc261g9hj54vrxoyl4cnd6nivw4h + + + + Osvalds Kravaļs + 0 + 377 + + 13784 + 13783 + 2011-04-26T15:54:03Z + + Vucyns~ltgwiki + 435 + + + wikitext + text/x-wiki + '''Osvalds Kravaļs''' (dzims 1942 g. apreļa 27 d. [[Pyldys pogosts|Pyldys pogosta]] Puotorovā – mirs [[Daugpiļs|Daugpilī]] 2008 g. juņa 30 d.) – latgalīšu ailinīks, literaturys kritiks. Sagvuordi ''Ontunejs Rīkstāns, Ašvolds Dveiņuvs''. Vadynuojs latgaliskai rokstūšūs literatu audzis atsarasšonu piec 1988 gods, darejs ītaku [[Oskars Seiksts|Oskara Seiksta]], [[Valeņtins Lukaševičs|Valeņtina Lukaševiča]], [[Juoņs Ryučāns|Juoņa Ryučāna]] i ct. myuslaiceigūs latgalīšu autoru dailradei. + + +==Biografeja== +Beidzs Puotorovys 7-gadeigū školu, Ludzys solsaimesteibys tehnikumu, Latvejis vaļstiskuo universiteta (niule – [[Latvejis universitets]]) Viesturis i filologejis fakuļtetu. Darejs laikroksta ''Literatūra un Māksla'' redakcejā, Zineibu akademejis Volūdys i literaturys institutā. Myuža pādejū laikavydu puorlaids Daugpilī. Darejs par Daugpiļs teatra literaruos dalis vedieju, Rakstinīku savīneibys Daugpiļs atdalis sekretaru. Organiziejs Ludzys literarū savīneibu. Laids progresivū latgalīšu žurnalu ''Jaunuo Dzeive''. Bejs Latvejis Rakstinīku savīneibys bīdris (nu 1979 g.), latgalīšu literatu savīneibys ''Dveiņuva'' bīdris. 2009 godā Osvaldam Kravaļam daškierts latgalīšu kulturys apduovaņs ''Boņuks 2008'' nominacejā ''Par īlicīni latgalīšu literaturys raisteibā''. + +==Literaruo darbeiba== + + +Latgalīšu trešuo druka nulīguma laikā publiciejīs baļtīšu volūdā, a latgaliskai raksteitī dorbi palykuši rūkrokstūs da poš [[Atdzimšona|Atdzimšonai]] 1988 godā. Pyrmuo publikaceja — receņzeja ''Veireigais kuojinīks'' (''Vīrišķīgais kājāmgājējs'') — laikrokstā ''Padomju Students'' 1967 godā. Presē nūdrukavuojs daudzi dzeivuļu i rokstu ap Latgolu. Roksti ap poezeju apkūpuoti gruomotā ''Vajag byut'' (''Jābūt'', 1984). Sastatejs rokstu lasīņus ap bārnu literaturu ''Sudabreigais vuords'' (''Sudrabotais vārds'', 1982), ''Padūms'' (''Padoms'', 1986, 1988), fabulu izlasi bārnim ''Trešuo aste'' ( 'Trešā aste'', 1981). + +Latgalīšu volūdā dzeivuli i roksti ap Latgolu publicāti, suocūt nu 1988 gods: žurnalā ''Jaunu Dzeive'', laikagruomotā ''Tāvu zemes kalendars'', rokstu lasīnī ''Olūts'', Ludzys literatu apvīneibys kūplasīnī ''Saule iz izkapts kuota'' (''Saule izkapts kātā'', 1991) i cytur. Populara Osvalda Kravaļa kulturviesturiskuo poema ''Bruoļ, pīmiņ!''. + + +{{DEFAULTSORT:Kravaļs Osvalds}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + bxvo28h5kpu70jckhccnrnyed8s3q05 + + + + Otocolobus manul + 0 + 378 + + + 5319 + 5318 + 2011-03-19T13:18:53Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Manuļs]] + 29oo8pc7yo7zlqnux8xn1ewxv4nie0i + + + + Palākais vylks + 0 + 379 + + 31605 + 31602 + 2016-11-01T20:10:39Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Palākais vylks +| atvaiga_pasauka = Canis lupus laying.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Zeideituoji ''(Mammalia)'' +| aiļa = Pliesieji ''(Carnivora)'' +| saime = Suņu ''(Canidae)'' +| giņts = Suni ''(Canis)'' +| škira = Palākais vylks ''(Canis lupus)'' +| ziniskuo_pasauka = Canis lupus +| zemislopys_atvaigs = Gray Wolf Range.png +| zemislopys_aprakstejums = Palākuo vylka paplateiba pasaulī +}} +'''Palākais vylks''' ({{Vol-la|Canis lupus}}; {{Vol-en|Gray Wolf}}; {{Vol-lv|Pelēkais vilks}}; {{Vol-lt|Pilkasis vilkas}}) aba '''vylks''' — irā leluokais [[Suņu saime|suņu saimis]] (''Canidae'') plieseigais zviers. Palākais vylks kai [[dzeivinīks]] zynoms nu pādejūs ladslaiku, jis dzeivovs jau pyrma 300 000 godu, [[Latgola|Latgolys]] teritorejā atsarads tiuleņ piec ladslaiku. + +Vītuos, kur dzeivoj vylki, jī irā golvonī pliesieji. Palākais vylks, koč i dasamāruodams apleicis puormejom na tai vīgli kai [[kojots]] (''Canis latrans''), dzeivoj kai mežūs, kolnūs i tundrā, tai tukšnešūs, stepēs i prerejuos, net apdzeivu tyvumā. + +Nazkod vylki dzeivova vysā Eurazejā i Pūstumu Amerikā, tok myuslaikūs jūs dzeivojamuo teritoreja labviņ mazynuojusēs.<ref>[http://www.iucnredlist.org/details/3746 Canis lupus (Gray Wolf, Arctic Wolf, Common Wolf, Grey Wolf, Mexican Wolf, Plains Wolf, Timber Wolf, Tundra Wolf, WOLF)]</ref> Cylvākam vylks nikod nabeja meilams sābris, kam kreit viersā lūpim, a kod nakod i cylvākim. Jis vysod bejs medeibys dzeivinīks. + +== Izavierīņs == +Vylki byun da 150 [[Ceņtimetrs|ceņtimetru]] garuma, placu augstums 0,6-0,95 [[Metrs|metri]] i svors 30-65 kilogrami (rekords - 79 kilogrami<ref>Lopez, Barry (1978). Of wolves and men. New York: Scribner Classics. pp. 320. ISBN 0-7432-4936-4.</ref>). Augums apaug ar rupim palākim motim, tok byun taipoš i malni, bolti, pavoskoni moti (pīdar nu vylku paškirys, hibridizacejis). Auss nagarys, goli šauri. Golvyskauss masivs, zūbi stypri i gon gari iļkni. Mežogumā vylki vysucieškuok dzeivoj 6-9 godus, a nabreivē vydyskai 16 godu (rekords - 20 godu). + +== Vylku paplateiba == +Viesturiskai vylki pa teritorejai pasaplatejuši kuoni vysuos cylvāka dzeivojamuos vītuos iz pūstumim nu ekvatora. [[Europa|Europā]] palākais vylks pa lelumam byun tik [[Spaneja|Spanejā]], [[Portugaleja|Portugalejā]], [[Italeja|Italejā]], [[Puoleja|Puolejā]], Pūstumu i Reitu Europys vaļsteibuos i [[Krīveja|Krīvejā]]. [[Latveja|Latvejā]] itūšaļt dzeivoj 500 - 600 vylku.<ref>http://www.tvnet.lv/zalazeme/nature/article.php?id=48688</ref> [[Latveja|Latvejā]] i [[Latgola|Latgolā]] dzeivoj tik [[Eurazejis palākais vylks]] (''Canis lupus lupus''). + +Azejā vylki dzeivoj vysā pūstumu daļā - nu Krīvejis da [[Kineja]]i. Pūstumu [[Amerika|Amerikā]] nu [[Aļaska|Aļaskys]] da [[Meksika]]i. +[[Fails:Canis lupus laying in grass.jpg|left|thumb|250px|Palākais vylks guļ zuolē]] + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commonscat|Canis lupus|Palākais vylks}} + +{{DEFAULTSORT:Palākais vylks}} + +[[Kategoreja:Dzeivinīki]] + ccroabzw73edfvybgxr1mrjc3sqi7wt + + + + Palīku rāds + 0 + 380 + + 28970 + 28292 + 2013-03-08T15:45:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q180388]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Palīku rāds''' (anglīšu: ''waste management''; krīvu: ''управление отходами''; latvīšu: ''atkritumu pārvaldība'') — palīku (parostai cylvāka radeitu palīku) salaseišonys, transportiešonys, globuošonys, puordaris i ūtrreizeiguos izlītuošonys process. Palīku rāda golvonī [[Snāgs|snāgi]] – samazynuot palīku nalobū ītaku iz ļaužu veseleibu, izglobuot apleicis dereigumu ļaudim dzeivuot, guorbeit i atjaunynuot dobys resursus. + +Latgaliskuo termina etimologejis pamatā – tautys lītysvuords ''rāds'', cielīs nu laikvuorda ''riedeit''. + +[[Kategoreja:Apleiczineiba]] + gq524fhdkzau18w5yk0ge7x64lw4l55 + + + + Jaguars + 0 + 381 + + 30692 + 28919 + 2015-04-02T15:29:31Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|en}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Jaguar sitting.jpg|thumb|250px|]] +[[Fails:Cypron-Range Panthera onca.svg|thumb|250px|''Panthera onca'' paplateiba pasaulī]] +'''Jaguars''' ({{vol-la|Panthera onca}}) irā lels [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. Jaguars dzeivoj Dīnavydamerikā i Centralamerikā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Panthera_onca.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 120—185 cm<ref name="ADV"/>;</br> +Astis garums: 45—75 cm<ref name="ADV"/>;</br> +Kausu augstums: 68—76 cm, ratai 81<ref name="ADV"/>;</br> +Svors: 36—113 kg, ratai 136 kg<ref name="ADV"/>; + +== Daudzatmejeiba == +Irā 11 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id2015/ BioLib] Profil taxonu — druh — '''jaguár americký ''Panthera onca''''' (Linnaeus, 1758)</ref>: +* ''[[Panthera onca onca]]'' +* † ''[[Panthera onca arizonensis]]'' +* ''[[Panthera onca augusta]]'' +* ''[[Panthera onca centralis]]'' +* ''[[Panthera onca goldmani]]'' +* ''[[Panthera onca hernandesii]]'' +* † ''[[Panthera onca mesembrina]]'' +* ''[[Panthera onca palustris]]'' +* ''[[Panthera onca paraguensis]]'' +* ''[[Panthera onca peruvianus]]'' +* ''[[Panthera onca veracrucis]]'' + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Panthera onca}} + +[[Kategoreja:Dzeivinīki]] + 0ho2ax9wjul87vvkx30kmr9k21evecm + + + + Panthera pardus + 0 + 382 + + + 5377 + 5376 + 2011-03-19T13:18:58Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Leopards]] + 7ppxrjqfidvb9li0r6wx9k0e8kdbv06 + + + + Panthera tigris + 0 + 383 + + + 5379 + 5378 + 2011-03-19T13:18:58Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Tygrys]] + 0fl89l2euwt6qard3ligk3g4rdos4bd + + + + Pardofelis marmorata + 0 + 384 + + 29032 + 28294 + 2013-03-09T14:19:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q80191]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Marbled cat borneo.jpg|thumb|250px|]] +[[Fails:Marbled Cat area.png|thumb|250px|''Pardofelis marmorata'' paplateiba pasaulī]] +'''Pardofelis marmorata''' (Martin, 1837) ({{Vol-en|marbled cat}}; {{Vol-ru|мраморная кошка}}; {{Vol-lv|marmorkaķis}}) irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Pardofelis marmorata'' dzeivoj Denavydpustum Azejā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Pardofelis_marmorata.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: nu 45 da 61 cm<ref name="ADV"/>;</br> +Astes garums: 35—55<ref name="ADV"/>;</br> +Placu augstums: nazkur 28 cm<ref name="ADV"/>;</br> +Svors: 2.4—5 kg<ref name="ADV"/>; + +== Daudzatmejeiba == +Irā 2 zamškiras: +* ''[[Pardofelis marmorata marmorata]]'' +* ''[[Pardofelis marmorata charltoni]]'' + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Pardofelis marmorata}} + +{{DEFAULTSORT:Pardofelis marmorata}} + +[[Kategoreja:Dzeivinīki]] + 5cx9mgtnspb8bchll5wxrvf3mcch7lx + + + + Paremiologeja + 0 + 385 + + 28295 + 24310 + 2013-03-07T19:06:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 9 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1858421]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Paremiologeja''' (anglīšu: ''paremiology''; krīvu: ''паремиология''; latvīšu: ''paremioloģija'') — [[Filologeja|filologejis]] i [[Folkloristika|folkloristikys]] atzare, kura tiemej [[Pīruna|pīrunu]]. Termins cielīs nu greku vuordu ''paroimia'' ([[pīruna]]) i ''logos'' (vuords; tiemiešona; vuiceiba). + +Nu sovys pusis, paremiologejis tiemejamuo materiala dabuošonys - pīrunu aizraksteišonys sauc par [[Paremiografeja|paremiografeju]]. + +[[Kategoreja:Folkloristika]] +[[Kategoreja:Folklors]] +[[Kategoreja:Filologeja]] + 0ylqu8c6toipjxbagy10rk8qx1ocvvt + + + + Pasauļa golvysmīstu saroksts + 0 + 386 + + 29130 + 28296 + 2013-03-11T10:43:19Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q35094]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== A == +{| class="wikitable sortable" +|----- bgcolor=#DDDDDD +! Golvysmīsts +! Vaļsteiba +! Pasauļa dale +! Dzeivuotuoji +|----- +| '''Abidžans''' +| [[Fails:Flag of Cote d'Ivoire.svg|25x15px|Elefanta Kaula Mola|Elefanta Kaula Mola]] [[Elefanta Kaula Mola]] +| Afrika +| align="right" | 3&nbsp;043&nbsp;589 +|----- +| '''Abu Dabi''' +| [[Fails:Flag of the United Arab Emirates.svg|25x15px|Saškiertī Arabu Emirati]] [[Saškiertī Arabu Emirati]] +| Azeja +| align="right" | 2&nbsp;563&nbsp;212 +|----- +| '''Abudža''' +| [[Fails:Flag of Nigeria.svg|25x15px|Nigereja]] [[Nigereja]] +| Afrika +| align="right" | 600&nbsp;339 +|----- +| '''Adis Abeba''' +| [[Fails:Flag of Ethiopia.svg|25x15px|Etiopeja]] [[Etiopeja]] +| Afrika +| align="right" | 2&nbsp;973&nbsp;004 +|----- +| '''Akra''' +| [[Fails:Flag of Ghana.svg|25x15px|Gana]] [[Gana]] +| Afrika +| align="right" | 1&nbsp;963&nbsp;460 +|----- +| '''Alžirs''' +| [[Fails:Flag of Algeria.svg|25x15px|Alžireja]] [[Alžireja]] +| Afrika +| align="right" | 2&nbsp;072&nbsp;993 +|----- +| '''Amans''' +| [[Fails:Flag of Jordan.svg|25x15px|Jordaneja]] [[Jordaneja]] +| Azeja +| align="right" | 1&nbsp;036&nbsp;330 +|----- +| '''Amsterdams''' +| [[Fails:Flag of the Netherlands.svg|25x15px|Nīderlandeja]] [[Nīderlandeja]] +| Europa +| align="right" | 743&nbsp;411 +|----- +| '''Andora la Velja''' +| [[Fails:Flag of Andorra.svg|25x15px|Andora]] [[Andora]] +| Europa +| align="right" | 22&nbsp;884 +|----- +| '''Ankara''' +| [[Fails:Flag of Turkey.svg|25x15px|Turkey]] [[Turceja]] +| Azeja +| align="right" | 3&nbsp;641&nbsp;931 +|----- +| '''Antananarivs''' +| [[Fails:Flag of Madagascar.svg|25x15px|Madagaskars]] [[Madagaskars]] +| Afrika +| align="right" | 1&nbsp;500&nbsp;000 +|----- +| '''Apeja''' +| [[Fails:Flag of Samoa.svg|25x15px|Samoa]] [[Samoa]] +| Australeja i Okeaneja +| align="right" | 45&nbsp;000 +|----- +| '''Asmara''' +| [[Fails:Flag of Eritrea.svg|25x15px|Eritreja]] [[Eritreja]] +| Afrika +| align="right" | 579&nbsp;000 +|----- +| '''Astana''' +| [[Fails:Flag of Kazakhstan.svg|25x15px|Kazaheja]] [[Kazaheja]] +| Azeja +| align="right" | 571&nbsp;000 +|----- +| '''Asunsjons''' +| [[Fails:Flag of Paraguay.svg|25x15px|Paragvajs]] [[Paragvajs]] +| Amerika (Dīnavydu Amerika) +| align="right" | 507&nbsp;574 +|----- +| '''Ašgabats''' +| [[Fails:Flag of Turkmenistan.svg|25x15px|Turkmenistans]] [[Turkmenistans]] +| Azeja +| align="right" | 773&nbsp;400 +|----- +| '''Atena''' +| [[Fails:Flag of Greece.svg|25x15px|Grekeja]] [[Grekeja]] +| Europa +| align="right" | 2&nbsp;805&nbsp;262 +|----- +|} +== B == +{| class="wikitable sortable" +|----- bgcolor=#DDDDDD +! Golvysmīsts +! Vaļsteiba +! Pasauļa dale +! Dzeivuotuoji +|----- +| '''Bagdads''' +| [[Fails:Flag of Iraq.svg|25x15px|Iraks]] [[Iraks]] +| Azeja +| align="right" | 5&nbsp;672&nbsp;516 +|----- +| '''Baku''' +| [[Fails:Flag of Azerbaijan.svg|25x15px|Azerbaidžans]] [[Azerbaidžans]] +| Azeja +| align="right" | 2&nbsp;100&nbsp;000 +|----- +| '''Bamaka''' +| [[Fails:Flag of Mali.svg|25x15px|Malis]] [[Malis]] +| Afrika +| align="right" | 1&nbsp;342&nbsp;519 +|----- +| '''Bandar Seri Begavans''' +| [[Fails:Flag of Brunei.svg|25x15px|Bruneja]] [[Bruneja]] +| Azeja +| align="right" | 56&nbsp;000 +|----- +| '''Bangi''' +| [[Fails:Flag of the Central African Republic.svg|25x15px|Centraluos Afrikys Republika]] [[Centraluos Afrikys Republika]] +| Afrika +| align="right" | 684&nbsp;190 +|----- +| '''Bankoks''' +| [[Fails:Flag of Thailand.svg|25x15px|Taizeme]] [[Taizeme]] +| Azeja +| align="right" | 6&nbsp;642&nbsp;566 +|----- +| '''Basters''' +| [[Fails:Flag of Saint Kitts and Nevis.svg|25x15px|Svātuo Kits Sola i Nevis]] [[Svātuo Kits Sola i Nevis]] +| Amerika (Pūstumu Amerika) +| align="right" | 20&nbsp;000 +|----- +| '''Beirūts''' +| [[Fails:Flag of Lebanon.svg|25x15px|Libans]] [[Libans]] +| Azeja +| align="right" | 2&nbsp;100&nbsp;000 +|----- +| '''Belgrads''' +| [[Fails:Flag of Serbia.svg|25x15px|Serbeja]] [[Serbeja]] +| Europa +| align="right" | 1&nbsp;373&nbsp;651 +|----- +| '''Belmopans''' +| [[Fails:Flag of Belize.svg|25x15px|Belizs]] [[Belizs]] +| Amerika (Pūstumu Amerika) +| align="right" | 14&nbsp;590 +|----- +| '''Berlins''' +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] [[Vuoceja]] +| Europa +| align="right" | 3&nbsp;348&nbsp;804 +|----- +| '''Berna''' +| [[Fails:Flag of Switzerland.svg|25x15px|Šveicareja]] [[Šveicareja]] +| Europa +| align="right" | 128&nbsp;153 +|----- +| '''Bisova''' +| [[Fails:Flag of Guinea-Bissau.svg|25x15px|Gvineja-Bisova]] [[Gvineja-Bisova]] +| Afrika +| align="right" | 388&nbsp;000 +|----- +| '''Biškeks''' +| [[Fails:Flag of Kyrgyzstan.svg|25x15px|Kirgizistans]] [[Kirgizistans]] +| Azeja +| align="right" | 900&nbsp;000 +|----- +| '''Bogota''' +| [[Fails:Flag of Colombia.svg|25x15px|Kolumbeja]] [[Kolumbeja]] +| Amerika (Dīnavydu Amerika) +| align="right" | 6&nbsp;840&nbsp;116 +|----- +| '''Bratislava''' +| [[Fails:Flag of Slovakia.svg|25x15px|Slovakeja]] [[Slovakeja]] +| Europa +| align="right" | 425&nbsp;460 +|----- +| '''Brazavile''' +| [[Fails:Flag of the Republic of the Congo.svg|25x15px|Kongs]] [[Kongs]] +| Afrika +| align="right" | 1&nbsp;115&nbsp;773 +|----- +| '''Brazile''' +| [[Fails:Flag of Brazil.svg|25x15px|Brazileja]] [[Brazileja]] +| Amerika (Dīnavydu Amerika) +| align="right" | 2&nbsp;455&nbsp;903 +|----- +| '''Bridžtauns''' +| [[Fails:Flag of Barbados.svg|25x15px|Barbadoss]] [[Barbadoss]] +| Amerika (Pūstumu Amerika) +| align="right" | 7&nbsp;000 +|----- +| '''Bruseļs''' +| [[Fails:Flag of Belgium.svg|25x15px|Beļgeja]] [[Beļgeja]] +| Europa +| align="right" | 144&nbsp;790 +|----- +| '''Budapešts''' +| [[Fails:Flag of Hungary.svg|25x15px|Ungareja]] [[Ungareja]] +| Europa +| align="right" | 1&nbsp;610&nbsp;000 +|----- +| '''Buenos Aires''' +| [[Fails:Flag of Argentina.svg|25x15px|Argeņtina]] [[Argeņtina]] +| Amerika (Dīnavydu Amerika) +| align="right" | 2&nbsp;746&nbsp;761 +|----- +| '''Bukarešta''' +| [[Fails:Flag of Romania.svg|25x15px|Rumuneja]] [[Rumuneja]] +| Europa +| align="right" | 2&nbsp;355&nbsp;788 +|----- +| '''Bužumbura''' +| [[Fails:Flag of Burundi.svg|25x15px|Burundi]] [[Burundi]] +| Afrika +| align="right" | 300&nbsp;000 +|----- +|} +== D == +{| class="wikitable sortable" +|----- bgcolor=#DDDDDD +! Golvysmīsts +! Vaļsteiba +! Pasauļa dale +! Dzeivuotuoji +|----- +| '''Daka''' +| [[Fails:Flag of Bangladesh.svg|25x15px|Bangladešs]] [[Bangladešs]] +| Azeja +| align="right" | 6 724 976 +|----- +| '''Dakars''' +| [[Fails:Flag of Senegal.svg|25x15px|Senegals]] [[Senegals]] +| Afrika +| align="right" |2 399 451 +|----- +| '''Damaska''' +| [[Fails:Flag of Syria.svg|25x15px|Sīreja]] [[Sīreja]] +| Azeja +| align="right" | 1 580 909 +|----- +| '''Deli''' +| [[Fails:Flag of India.svg|25x15px|Iņdeja]] [[Iņdeja]] +| Azeja +| align="right" | 16 753 235 +|----- +| '''Dili''' +| [[Fails:Flag of East Timor.svg|25x15px|Reitu Timors]] [[Reitu Timors]] +| Azeja +| align="right" | 59 069 +|----- +| '''Dodoma''' +| [[Fails:Flag of Tanzania.svg|25x15px|Tanzaneja]] [[Tanzaneja]] +| Afrika +| align="right" | 180 551 +|----- +| '''Doha''' +| [[Fails:Flag of Qatar.svg|25x15px|Katars]] [[Katars]] +| Azeja +| align="right" | 400 000 +|----- +| '''Dublina''' +| [[Fails:Flag of Ireland.svg|25x15px|Eireja]] [[Eireja]] +| Europa +| align="right" | 506 211 +|----- +| '''Dušanbe''' +| [[Fails:Flag of Tajikistan.svg|25x15px|Tadžikistans]] [[Tadžikistans]] +| Azeja +| align="right" | 543 107 +|----- +| '''Džakarta''' +| [[Fails:Flag of Indonesia.svg|25x15px|Bangladešs]] [[Indonezeja]] +| Azeja +| align="right" | 2 698 651 +|----- +| '''Džibuts''' +| [[Fails:Flag of Djibouti.svg|25x15px|Džibuts]] [[Džibuts]] +| Afrika +| align="right" | 547 100 +|----- +| '''Džordžtauns''' +| [[Fails:Flag of Guyana.svg|25x15px|Gajana]] [[Gajana]] +| Amerika (dīnavydu Amerika) +| align="right" | 32 563 +|----- +|} + +[[Kategoreja:Saroksti]] + 32fuxlclqdkg2m5d0zzw4w7h3gwfyuq + + + + Pasauļa tautys i moztautys + 0 + 387 + + 12634 + 12633 + 2011-04-01T08:29:31Z + + Roalds + 50 + + /* U */ na ungari, a vengri + wikitext + text/x-wiki + {| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== A == +* '''[[Abazi]]''' - ''abazs, abazīte'' +* '''[[Abhazi]]''' - ''abhazs, abhazīte'' +* '''[[Adžari]]''' - ''adžars, adžarīte'' +* '''[[Afgani]]''' - ''afgaņs, afganīte'' +* '''[[Afrikani]]''' - ''afrikans, afrikanīte'' +* '''[[Albani]]''' - ''albaņs, albanīte'' +* '''[[Altajīši]]''' - ''altajīts, altajīte'' +* '''[[Arabi]]''' - ''arabs, arabīte'' +* '''[[Argentinīši]]''' - ''argentinīts, argentinīte'' +* '''[[Armeni]]''' - ''armeņs, armenīte'' +* '''[[Asiri]]''' - ''asirs, asirīte'' +* '''[[Avari]]''' - ''avars, avarīte'' +* '''[[Azerbaidžanīši]]''' - ''azerbaidžanīts, azerbaidžanīte'' + +== B == +* '''[[Balkari]]''' - ''balkars, balkarīte'' +* '''[[Baski]]''' - ''basks, baskīte'' +* '''[[Baškiri]]''' - ''baškirs, baškirīte'' +* '''[[Beludži]]''' - ''beludžys, beludžīte'' +* '''[[Bengali]]''' - ''bengaļs, bengalīte'' +* '''[[Bolivīši]]''' - ''bolivīts, bolivīte'' +* '''[[Boltkrīvi]]''' - ''boltkrīvs, boltkrīvīte'' +* '''[[Bosni]]''' - ''bosnis, bosnīte'' +* '''[[Brazili]]''' - ''braziļs, brazilīte'' +* '''[[Bretoni]]''' - ''bretoņs, bretonīte +* '''[[Bulgari]]''' - ''bulgars, bulgarīte'' +* '''[[Burjati]]''' - ''burjats, burjatīte'' + +== Č == +* '''[[Čečeni]]''' - ''čečens, čečenīte'' +* '''[[Čeki]]''' - ''čeks, čekīte'' +* '''[[Čerkesi]]''' - ''čerkess, čerkesīte'' +* '''[[Čilīši]]''' - ''čilīts, čilīte'' +* '''[[Čyguoni]]''' - ''čyguons, čyguonīte'' +* '''[[Čukči]]''' - ''čukčys, čukčīte'' +* '''[[Čuvaši]]''' - ''čuvašs, čuvasīte'' + +== D == +* '''[[Dani]]''' - ''dans, danīte'' +* '''[[Dargani]]''' - ''dargaņs, darganīte'' +* '''[[Dolgani]]''' - ''dolgans, dolganīte'' +* '''[[Dungani]]''' - ''dungaņs, dunganīte'' + +== E == +* '''[[Egiptīši]]''' - ''egiptīts, egiptīte'' +* '''[[Eiri]]''' - ''eirs, eirīte'' +* '''[[Ekvadorīši]]''' - ''ekvadorīts, ekvadorīts'' +* '''[[Elzasīši]]''' - ''elzasīts, elzasīte'' +* '''[[Eveni]], Lamuti''' - ''evens, evenīte'' +* '''[[Evenki]]''' - ''evenks, eveneica'' + +== F == +* '''[[Farerīši]]''' - ''farerīts, farerīte'' +* '''[[Flamandi]]''' - ''flamands, flamandīte'' + +== G == +* '''[[Gagauzi]]''' - ''gagauzs, gagauzīte'' +* '''[[Galisīši]]''' - ''galisīts, galisīte'' +* '''[[Greki]]''' - ''greks, grekīte'' +* '''[[Gruzini]]''' - ''gruzins, gruzinīte'' + +== H == +* '''[[Hanti]]''' - ''hants, hantīte'' +* '''[[Hausi]]''' - ''hauss, hausīte'' +* '''[[Horvati]]''' - ''horvats, horvatīte'' + +== I == +* '''[[Igauni]]''' - ''igauņs, igaunīte'' +* '''[[Inguši]]''' - ''ingušs, ingušīte'' +* '''[[Īslandi]]''' - ''īslands, īslandīte'' +* '''[[Itali]]''' - ''itaļs, italīte'' +* '''[[Ižori]]''' - ''ižors, ižorīte'' + +== J == +* '''[[Jakuti]]''' - ''jakuts, jakutīte'' +* '''[[Japani]]''' - ''japaņs, japanīte'' +* '''[[Jaunzelandīši]]''' - ''jaunzelandīts, jaunzelandīte'' + +== K == +* '''[[Kabardini]]''' - ''kabardiņs, kabardīte'' +* '''[[Kalmuki]]''' - ''kalmuks, kalmukīte'' +* '''[[Kaņdi]]''' - ''kaņdys, kaņdīte'' +* '''[[Karačaji]]''' - ''karačajs, karajačīte'' +* '''[[Karaimi]]''' - ''karaims, karaimīte'' +* '''[[Karakalpaki]]''' - ''karakalpaks, karakalpakīte'' +* '''[[Kareli]]''' - ''kareļs, karelīte'' +* '''[[Kašubi]]''' - ''kašubs, kašubīte'' +* '''[[Katalani]]''' - ''katalaņs, katalanīte'' +* '''[[Kazahi]]''' - ''kazahs, kazahīte'' +* '''[[Kinīši]]''' - ''kinīts, kinīte'' +* '''[[Kirgizi]]''' - ''kirgizs, kirgizīte'' +* '''[[Kolumbīši]]''' - ''kolumbīts, kolumbīte'' +* '''[[Komi]]''' - ''komis, komīte'' +* '''[[Korejīši]]''' - ''korejīts, korejīte'' +* '''[[Korjaki]]''' - ''korjaks, korjakīte'' +* '''[[Krimčaki]]''' - ''krimčaks, krimčakīte'' +* '''[[Krīvi]]''' - ''krīvs, krīvīte'' +* '''[[Kubīši]]''' - ''kubīts, kubīte'' +* '''[[Kurdi]]''' - ''kurds, kurdīte'' + +== L == +* '''[[Lakīši]]''' - ''lakīts, lakīte'' +* '''[[Laosīši]], Lao''' - ''laosīts, laosīte'' +* '''[[Latgali]]''' - ''latgaļs, latgalīte'' +* '''[[Latvīši]]''' - ''latvīts, latvīte'' +* '''[[Lazi]]''' - ''lazs, lazīte'' +* '''[[Lezgini]]''' - ''lezgins, lezginīte'' +* '''[[Lītaunīki]]''' - ''lītaunīks, lītauneica'' +* '''[[Līvi]]''' - ''līvs, līvīte'' +* '''[[Luksemburgīši]]''' - ''luksemburgīts, luksemburgīte'' + +== M == +* '''[[Makedoni]]''' - ''makedons, makedonīte'' +* '''[[Malgaši]]''' - ''malgašs, malgašīte'' +* '''[[Mansi]]''' - ''mansis, mansīte'' +* '''[[Maori]]''' - ''maors, maorīte'' +* '''[[Mari]]''' - ''maris, marīte'' +* '''[[Malaji]]''' - ''malajs, malajīte'' +* '''[[Malnkalnīki]]''' - ''malnkalnīks, malnkalneica'' +* '''[[Meksikani]]''' - ''meksikaņs, meksikanīte'' +* '''[[Mongoli]]''' - ''mongoļs, mongolīte'' +* '''[[Mordvi]]''' - ''mordvis, mordvīte'' +* '''[[Mosi]]''' - ''moss, mosīte'' + +== N == +* '''[[Nanaji]]''' - ''nanajs, nanajīte'' +* '''[[Nenci]]''' - ''nencs, nencīte'' +* '''[[Nīderlandi]]''' - ''nīderlands, nīderlandīte'' +* '''[[Nogaibaki]]''' - ''nogaibaks, nogaibakīte'' +* '''[[Nogaji]]''' - ''nogajs, nogajīte'' +* '''[[Norvegi]]''' - ''norvegs, norvegīte'' + +== O == +* '''[[Osetini]]''' - ''osetins, osetinīte'' + +== P == +* '''[[Panamīši]]''' - ''panamīts, panamīte'' +* '''[[Persi]]''' - ''perss, persīte'' +* '''[[Peruīši]]''' - ''peruīts, peruīte'' +* '''[[Portugali]]''' - ''portugaļs, portugalīte'' +* '''[[Praņcīši]]''' - ''praņcīts, praņcīte'' +* '''[[Puoli]]''' - ''puoļs, puolīte'' + +== R == +* '''[[Retoromani]]''' - ''retoromaņs, retoromanīte'' +* '''[[Rumuni]]''' - ''rumuņs, rumunīte'' +* '''[[Rusini]]''' - ''rusins, rusinīte'' +* '''[[Rutuli]]''' - ''rutulis, rutulīte'' + +== S == +* '''[[Sami]]''' - ''sams, samīte'' +* '''[[Selkupi]]''' - ''selkups, selkupīte'' +* '''[[Serbi]]''' - ''serbs, serbīte'' +* '''[[Sindi]]''' - ''sindis, sindīte'' +* '''[[Singali]]''' - ''singaļs, singalīte'' +* '''[[Slovaki]]''' - ''slovaks, slovakīte'' +* '''[[Sloveni]]''' - ''sloveņs, slovenīte'' +* '''[[Spāni]]''' - ''spāņs, spānīte'' +* '''[[Sorbi]]''' - ''sorbs, sorbīte'' +* '''[[Suomi]]''' - ''suoms, suomīte'' + +== Š == +* '''[[Škoti]]''' - ''škots, škotīte'' +* '''[[Šori]]''' - ''šors, šorīte'' +* '''[[Švedi]]''' - ''šveds, švedīte'' +* '''[[Šveicari]]''' - ''šveicars, šveicarīte'' + +== T == +* '''[[Tabasarani]]''' - ''tabasarans, tabasaranīte'' +* '''[[Tadžiki]]''' - ''tadžiks, tadžikīte'' +* '''[[Tališi]]''' - ''tališs, tališīte'' +* '''[[Tati]]''' - ''tats, tatīte'' +* '''[[Tatari]]''' - ''tatars, tatarīte'' +* '''[[Teleuti]]''' - ''teleuts, teleutīte'' +* '''[[Tibetīši]]''' - ''tibetīts, tibetīte'' +* '''[[Tongīši]]''' - ''tongīts, tongīte'' +* '''[[Turkmeni]]''' - ''turkmeņs, turkmenīte'' +* '''[[Turki]]''' - ''turks, turcīte'' +* '''[[Tuvīši]]''' - ''tuvīts, tuvīte'' + +== U == +* '''[[Udeki]]''' - ''udeks, udekīte'' +* '''[[Udmurti]]''' - ''udmurts, udmurtīte'' +* '''[[Udi]]''' - ''uds, udīte'' +* '''[[Uiguri]]''' - ''uigurs, uigurīte'' +* '''[[Ukraini]]''' - ''ukraiņs, ukrainīte'' +* '''[[Urugvajīši]]''' - ''urugvajīts, urugvajīte'' +* '''[[Uzbeki]]''' - ''uzbeks, uzbekīte'' + +== V == +* '''[[Valoni]]''' - ''valoņs, valonīte'' +* '''[[Vali]]''' - ''vals, valīte'' +* '''[[Venecuelīši]]''' - ''venecuelīts, venecuelīte'' +* '''[[Vengri]]''' - ''vengrys, vengrīte'' +* '''[[Vepsi]]''' - ''veps, vepsīte'' +* '''[[Vyrovīši]]''' - ''vyrovīts, vyrovīte'' +* '''[[Vjetnamīši]]''' - ''vjetnamīts, vjetnamīte'' +* '''[[Voti]]''' - ''vots, votīte'' +* '''[[Vuocīši]]''' - ''vuocīts, vuocīte'' + +== Ž == +* '''[[Žemaiši]]''' - ''žemaits, žemaite'' +* '''[[Žydi]]''' - ''žyds, žydīte'' + +[[Kategoreja:Geografeja]] +[[Kategoreja:Saroksti]] + 7r6wgyukn9hvk8n1zozjlxia2swfkya + + + + Pasauļa vaļsteibu saroksts + 0 + 388 + + 31987 + 30816 + 2017-05-22T02:30:46Z + + CommonsDelinker + 2750 + + Replacing Flag_of_Macedonia.svg with [[File:Flag_of_the_Republic_of_Macedonia.svg]] (by [[:c:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: [[:c:COM:FR#reasons|File renaming criterion #2]]: To change from a meaningless or ambi + wikitext + text/x-wiki + {| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== A == +* [[Fails:Flag of Afghanistan.svg|25x15px|Afganistans]] '''[[Afganistans]]''' – Afganistana Islama Republika +* [[Fails:Flag of Albania.svg|25x15px|Albaneja]] '''[[Albaneja]]''' – Albanejis Republika +* [[Fails:Flag of Algeria.svg|25x15px|Alžireja]] '''[[Alžireja]]''' – Alžirejis Tautys Demokratiskuo Republika +* [[Fails:Flag of the United States.svg|25x15px|Amerikys Saškierstuos Vaļsteibys]] '''[[Amerikys Saškierstuos Vaļsteibys|Amerikys Saškiertuos Vaļsteibys]]''' – Amerikys Saškiertuos Vaļsteibys, ASV +* [[Fails:Flag of Andorra.svg|25x15px|Andora]] '''[[Andora]]''' – Andorys Principalitets +* [[Fails:Flag of Angola.svg|25x15px|Angola]] '''[[Angola]]''' – Angolys Republika +* [[Fails:Flag of Antigua and Barbuda.svg|25x15px|Antigva i Barbuda]] '''[[Antigva i Barbuda]]''' +* [[Fails:Flag of Argentina.svg|25x15px|Argeņtina]] '''[[Argentina|Argeņtina]]''' – Argeņtinys Republika +* [[Fails:Flag of Armenia.svg|25x15px|Armeneja]] '''[[Armeneja]]''' – Armenejis Republika +* [[Fails:Flag of Australia.svg|25x15px|Australeja]] '''[[Australeja]]''' – Australejis Sadraudzeiba +* [[Fails:Flag of Austria.svg|25x15px|Austreja]] '''[[Austreja]]''' – Austrejis Republika +* [[Fails:Flag of Azerbaijan.svg|25x15px|Azerbaidžans]] '''[[Azerbaidžans]]''' – Azerbaidžana Republika + +== B == +* [[Fails:Flag of the Bahamas.svg|25x15px|Bahamys]] '''[[Bahamys]]''' – Bahamu Sadraudzeiba +* [[Fails:Flag of Bahrain.svg|25x15px|Bahreins]] '''[[Bahreins]]''' – Bahreina Kieneste +* [[Fails:Flag of Bangladesh.svg|25x15px|Bangladešs]] '''[[Bangladešs]]''' – Bangladeša Tautys Republika +* [[Fails:Flag of Barbados.svg|25x15px|Barbadoss]] '''[[Barbadoss]]''' +* [[Fails:Flag of Belgium.svg|25x15px|Beļgeja]] '''[[Beļgeja]]''' – Beļgejis Kieneste +* [[Fails:Flag of Belize.svg|25x15px|Belizs]] '''[[Belizs]]''' +* [[Fails:Flag of Benin.svg|25x15px|Benins]] '''[[Benins]]''' – Benina Republika +* [[Fails:Flag of Bhutan.svg|25x15px|Butans]] '''[[Butans]]''' – Butana Kieneste +* [[Fails:Flag of Bolivia.svg|25x15px|Boliveja]] '''[[Boliveja]]''' – Bolivejis Republika +* [[Fails:Flag of Belarus.svg|25x15px|Boltkrīveja]] '''[[Boltkrīveja]]''' – Boltkrīvejis Republika +* [[Fails:Flag of Bosnia and Herzegovina.svg|25x15px|Bosneja i Hercegovina]] '''[[Bosneja i Hercegovina]] +* [[Fails:Flag of Botswana.svg|25x15px|Botsvana]] '''[[Botsvana]]''' – Botsvanys Republika +* [[Fails:Flag of Brazil.svg|25x15px|Brazileja]] '''[[Brazileja]]''' – Brazilejis Federativuo Republika +* [[Fails:Flag of Brunei.svg|25x15px|Brunejs]] '''[[Brunejs]]''' – Bruneja Darusalama Sultanats +* [[Fails:Flag of Bulgaria.svg|25x15px|Bulgareja]] '''[[Bulgareja]]''' – Bulgarejis Republika +* [[Fails:Flag of Burkina Faso.svg|25x15px|Burkina Fasa]] '''[[Burkina Fasa]]''' +** Burma – verīs '''[[Mjanmars]]''' +* [[Fails:Flag of Burundi.svg|25x15px|Burundi]] '''[[Burundi]]''' – Burundu Republika + +== C == +* [[Fails:Flag of the Central African Republic.svg|25x15px|Centraluos Afrikys Republika]] '''[[Centraluos Afrikys Republika]]''' + +== Č == +* [[Fails:Flag of Chad.svg|25x15px|Čads]] '''[[Čads]]''' - Čada Republika +* [[Fails:Flag of the Czech Republic.svg|25x15px|Čekeja]] '''[[Čekeja]]''' - Čekejis Republika +* [[Fails:Flag of Chile.svg|25x15px|Čile]] '''[[Čile]]''' - Čilis Republika + +== D == +* [[Fails:Flag of Denmark.svg|25x15px|Daneja]] '''[[Daneja]]''' - Danejis Kieneste +* [[Fails:Flag of South Africa.svg|25x15px|Dīnavydu Afrikys Republika]] '''[[Dīnavydu Afrikys Republika]]''' +* [[Fails:Flag of South Korea.svg|25x15px|Dīnavydu Koreja]] '''[[Dīnavydu Koreja]]''' - Korejis Republika +* [[Fails:Flag of Dominica.svg|25x15px|Dominika]] '''[[Dominika]]''' - Dominikys Sadraudzeiba +* [[Fails:Flag of the Dominican Republic.svg|25x15px|Dominikana]] '''[[Dominikana]]''' - Dominikanys Republika +* [[Fails:Flag of Djibouti.svg|25x15px|Džibuts]] '''[[Džibuts]]''' - Džibuta Republika + +== E == +* [[Fails:Flag of Egypt.svg|25x15px|Egipts]] '''[[Egipts]]''' - Egipta Arabu Republika +* [[Fails:Flag of Ireland.svg|25x15px|Eireja]] '''[[Eireja]]''' - Eirejis Republika +* [[Fails:Flag of Ecuador.svg|25x15px|Ekvadors]] '''[[Ekvadors]]''' - Ekvadora Republika +* [[Fails:Flag of Equatorial Guinea.svg|25x15px|Ekvatora Gvineja]] '''[[Ekvatora Gvineja]]''' - Ekvatora Gvinejis Republika +* [[Fails:Flag of Cote d'Ivoire.svg|25x15px|Elefanta Kaula Mola|Elefanta Kaula Mola]] '''[[Elefanta Kaula Mola]]''' - Elefanta Kaula Molys Republika, Kotdivuara +* [[Fails:Flag of Eritrea.svg|25x15px|Eritreja]] '''[[Eritreja]]''' - Eritrejis Vaļsteiba +* [[Fails:Flag of Ethiopia.svg|25x15px|Etiopeja]] '''[[Etiopeja]]''' - Etiopejis Federativuo Demokratiskuo Republika + +== F == +* [[Fails:Flag of Fiji.svg|25x15px|Fidžis]] '''[[Fidžis]]''' - Fidža Solu Republika + +== G == +* [[Fails:Flag of Gabon.svg|25x15px|Gabons]] '''[[Gabons]]''' - Gabona Republika +* [[Fails:Flag of Guyana.svg|25x15px|Gajana]] '''[[Gajana]]''' - Gajanys Republika +* [[Fails:Flag of The Gambia.svg|25x15px|Gambeja]] '''[[Gambeja]]''' - Gambejis Republika +* [[Fails:Flag of Ghana.svg|25x15px|Gana]] '''[[Gana]]''' - Ganys Republika +* [[Fails:Flag of Grenada.svg|25x15px|Grenada]] '''[[Grenada]]''' +* [[Fails:Flag of Greece.svg|25x15px|Grekeja]] '''[[Grekeja]]''' - Grekejis Republika +* [[Fails:Flag of Georgia.svg|25x15px|Gruzeja]] '''[[Gruzeja]]''' +* [[Fails:Flag of Guatemala.svg|25x15px|Gvatemala]] '''[[Gvatemala]]''' - Gvatemalys Republika +* [[Fails:Flag of Guinea.svg|25x15px|Gvineja]] '''[[Gvineja]]''' - Gvinejis Republika +* [[Fails:Flag of Guinea-Bissau.svg|25x15px|Gvineja-Bisava]] '''[[Gvineja-Bisava]]''' - Gvinejis-Bisavys Republika + +== H == +* [[Fails:Flag of Haiti.svg|25x15px|Haits]] '''[[Haits]]''' - Haita Republika +* [[Fails:Flag of Honduras.svg|25x15px|Hondurass]] '''[[Hondurass]]''' - Hondurasa Republika +* [[Fails:Flag of Croatia.svg|25x15px|Horvateja]] '''[[Horvateja]]''' - Horvatejis Republika + +== I == +* [[Fails:Flag of Estonia.svg|25x15px|Igauneja]] '''[[Igauneja]]''' - Igaunejis Republika +* [[Fails:Flag of India.svg|25x15px|Iņdeja]] '''[[Iņdeja]]''' - Iņdejis Repubklika +* [[Fails:Flag of Indonesia.svg|25x15px|Indonezeja]] '''[[Indonezeja]]''' - Indonezejis Republika +* [[Fails:Flag of Iraq.svg|25x15px|Iraks]] '''[[Iraks]]''' - Iraka Republika +* [[Fails:Flag of Iran.svg|25x15px|Irans]] '''[[Irans]]''' - Irana Islama Republika +* [[Fails:Flag of Italy.svg|25x15px|Italeja]] '''[[Italeja]]''' - Italejis Republika +* [[Fails:Flag of Israel.svg|25x15px|Izraeļs]] '''[[Izraeļs]]''' - Izraeļa Republika + +== Ī == +* [[Fails:Flag of Iceland.svg|25x15px|Īslandeja]] '''[[Īslandeja]]''' - Īslandejis Republika + +== J == +* [[Fails:Flag of Jamaica.svg|25x15px|Jamaika]] '''[[Jamaika]]''' +* [[Fails:Flag of Japan.svg|25x15px|Japoneja]] '''[[Japoneja]]''' +* [[Fails:Flag of Yemen.svg|25x15px|Jemens]] '''[[Jemens]]''' - Jemena Republika +* [[Fails:Flag of Jordan.svg|25x15px|Jordaneja]] '''[[Jordaneja]]''' - Jordanejis Hašimitu Kieneste +* [[Fails:Flag of New Zealand.svg|25x15px|Jaunzelaņdeja]] '''[[Jaunzelaņdeja]]''' + +== K == +* [[Fails:Flag of Cambodia.svg|25x15px|Kambodža]] '''[[Kambodža]]''' - Kambodžys Kieneste +* [[Fails:Flag of Cameroon.svg|25x15px|Kamerūns]] '''[[Kamerūns]]''' - Kamerūna Republika +* [[Fails:Flag of Canada.svg|25x15px|Kanada]] '''[[Kanada]]''' +* [[Fails:Flag of Qatar.svg|25x15px|Katars]] '''[[Katars]]''' - Katara Republika +* [[Fails:Flag of Kazakhstan.svg|25x15px|Kazaheja]] '''[[Kazaheja]]''' - Kazahejis Republika +* [[Fails:Flag of Kenya.svg|25x15px|Keneja]] '''[[Keneja]]''' - Kenejis Republika +* [[Fails:Flag of the People's Republic of China.svg|25x15px|Kineja]] '''[[Kineja]]''' - Kinejis Tautys Republika +* [[Fails:Flag of Cyprus.svg|25x15px|Kipra]] '''[[Kipra]]''' - Kiprys Republika +* [[Fails:Flag of Kyrgyzstan.svg|25x15px|Kirgizistans]] '''[[Kirgizstans|Kirgizistans]]''' - Kirgizstana Republika +* [[Fails:Flag of Kiribati.svg|25x15px|Kiribats]] '''[[Kiribats]]''' - Kiribata Republika +* [[Fails:Flag of Colombia.svg|25x15px|Kolumbeja]] '''[[Kolumbeja]]''' - Kolumbejas Republika +* [[Fails:Flag of the Comoros.svg|25x15px|Komoru solys]] '''[[Komoru Solys]]''' - Komoru Solu Federativuo Islama Republika +* [[Fails:Flag of the Democratic Republic of the Congo.svg|25x15px|Konga Demokratiskuo Republika]] '''[[Konga Demokratiskuo Republika]]''' +* [[Fails:Flag of the Republic of the Congo.svg|25x15px|Kongs]] '''[[Kongs]]''' - Konga Republika +* [[Fails:Flag of Kosovo.svg|25x15px|Kosovs]] '''[[Kosovs]]''' - Kosova Republika +* [[Fails:Flag of Costa Rica.svg|25x15px|Kosta Rika]] '''[[Kosta Rika]]''' - Kosta Rikys Republika +* [[Fails:Flag of Russia.svg|25x15px|Krīveja]] '''[[Krīveja]]''' - Krīvejis Federaceja +* [[Fails:Flag of Cuba.svg|25x15px|Kuba]] '''[[Kuba]]''' - Kubys Republika +* [[Fails:Flag of Kuwait.svg|25x15px|Kuveits]] '''[[Kuveits]]''' - Kuveita Vaļsteiba + +== L == +* [[Fails:Flag of Laos.svg|25x15px|Laoss]] '''[[Laoss]]''' - Laosa Tautys Demokratiskuo Republika +* [[Fails:Flag of Latvia.svg|25x15px|Latveja]] '''[[Latveja]]''' - Latvejis Republika +* [[Fails:Flag of the United Kingdom.svg|25x15px|Lelbritaneja]] '''[[Lelbrytaneja]]''' - Lelbrytanejis i Pūstumu Eirejis Kieneste +* [[Fails:Flag of Lesotho.svg|25x15px|Lesots]] '''[[Lesots]]''' - Lesota Kieneste +* [[Fails:Flag of Lebanon.svg|25x15px|Libans]] '''[[Libans]]''' - Libana Republika +* [[Fails:Flag of Libya.svg|25x15px|Libeja]] '''[[Libeja]]''' - Libejis Arabu Socialistiskuo Tautys Džamahereja +* [[Fails:Flag of Liberia.svg|25x15px|Libereja]] '''[[Libereja]]''' - Liberejis Republika +* [[Fails:Flag of Liechtenstein.svg|25x15px|Liktenšteins]] '''[[Liktenšteins]]''' - Liktenšteina Principalitets +* [[Fails:Flag of Lithuania.svg|25x15px|Lītova]] '''[[Lītova]]''' - Lītovys Republika +* [[Fails:Flag of Luxembourg.svg|25x15px|Luksemburga]] '''[[Luksemburga]]''' - Luksemburgys Leluo gercogiste + +== M == +* [[Fails:Flag of Madagascar.svg|25x15px|Madagaskars]] '''[[Madagaskars]]''' - Madagaskara Republika +* [[Fails:Flag of the Republic of Macedonia.svg|25x15px|Makedoneja]] '''[[Makedoneja]]''' - Makedonejis Republika, Bejusī Dīnavydu Slavejis Republika Makedoneja +* [[Fails:Flag of Malaysia.svg|25x15px|Malaizeja]] '''[[Malaizeja]]''' +* [[Fails:Flag of Malawi.svg|25x15px|Malaveja]] '''[[Malaveja]]''' - Malavejis Republika +* [[Fails:Flag of Maldives.svg|25x15px|Maldivu solys]] '''[[Maldivu Solys]]''' - Maldivu Solu Republika +* [[Fails:Flag of Mali.svg|25x15px|Malis]] '''[[Malis]]''' - Maļa Republika +* [[Fails:Flag of Montenegro.svg|25x15px|Malnkalneja]] '''[[Malnkalneja]]''' - Malnkalnejis Republika +* [[Fails:Flag of Malta.svg|25x15px|Malta]] '''[[Malta]]''' - Maltys Republika +* [[Fails:Flag of Morocco.svg|25x15px|Maroka]] '''[[Maroka]]''' - Marokys Kieneste +* [[Fails:Flag of the Marshall Islands.svg|25x15px|Maršalu solys]] '''[[Maršalu Solys]]''' - Maršalu Solu Republika +* [[Fails:Flag of Mauritania.svg|25x15px|Mauritaneja]] '''[[Mauritaneja]]''' - Mauritanejis Islama Republika +* [[Fails:Flag of Mauritius.svg|25x15px|Maurīceja]] '''[[Maurīceja]]''' - Maurīcejis Republika +* [[Fails:Flag of Mexico.svg|25x15px|Meksika]] '''[[Meksika]]''' - Meksikys Saškiertuos Vaļsteibys +* [[Fails:Flag of Micronesia.svg|25x15px|Mikronezeja]] '''[[Mikronezeja]]''' - Mikronezejis Federativuos Vaļsteibys +* [[Fails:Flag of Myanmar.svg|25x15px|Mjanmars]] '''[[Mjanmars]]''' - Mjanmara Savīneiba +* [[Fails:Flag of Moldova.svg|25x15px|Moldova]] '''[[Moldaveja]]''' - Moldovys Republika +* [[Fails:Flag of Monaco.svg|25x15px|Monaks]] '''[[Monaks]]''' - Monaka Principalitets +* [[Fails:Flag of Mongolia.svg|25x15px|Mongoleja]] '''[[Mongoleja]]''' - Mongolejis Vaļsteiba +* [[Fails:Flag of Mozambique.svg|25x15px|Mozambika]] '''[[Mozambika]]''' - Mozambikys Republika + +== N == +* [[Fails:Flag of Namibia.svg|25x15px|Namibeja]] '''[[Namibeja]]''' - Namibejis Republika +* [[Fails:Flag of Nauru.svg|25x15px|Nauru]] '''[[Nauru]]''' - Nauru Republika +* [[Fails:Flag of Nepal.svg|25x15px|Nepals]] '''[[Nepals]]''' - Nepala Kieneste +* [[Fails:Flag of Nigeria.svg|25x15px|Nigereja]] '''[[Nigereja]]''' - Nigerejis Federativuo Republika +* [[Fails:Flag of Niger.svg|25x15px|Nigers]] '''[[Nigers]]''' - Nigera Republika +* [[Fails:Flag of the Netherlands.svg|25x15px|Nīderlandeja]] '''[[Nīderlandeja]]''' - Nīderlandejis Kieneste +* [[Fails:Flag of Nicaragua.svg|25x15px|Nikaragva]] '''[[Nikaragva]]''' - Nikaragvys Republika +* [[Fails:Flag of Norway.svg|25x15px|Norvegeja]] '''[[Norvegeja]]''' - Norvegejis Kieneste + +== O == +* [[Fails:Flag of Oman.svg|25x15px|Omans]] '''[[Omans]]''' - Omana Sultanats + +== P == +* [[Fails:Flag of Pakistan.svg|25x15px|Pakistans]] '''[[Pakistans]]''' - Pakistana Islama Republika +* [[Fails:Flag of Palau.svg|25x15px|Palau]] '''[[Palau]]''' - Palau Republika +* [[Fails:Flag of Panama.svg|25x15px|Panama]] '''[[Panama]]''' - Panamys Republika +* [[Fails:Flag of Papua New Guinea.svg|25x15px|Papua Jaungvineja]] '''[[Papua Jaungvineja]]''' +* [[Fails:Flag of Paraguay.svg|25x15px|Paragvajs]] '''[[Paragvajs]]''' - Paragvaja Republika +* [[Fails:Flag of Peru.svg|25x15px|Peru]] '''[[Peru]]''' - Peru Republika +* [[Fails:Flag of the Philippines.svg|25x15px|Pilipinys]] '''[[Pilipinys]]''' - Pilipinu Republika +* [[Fails:Flag of Portugal.svg|25x15px|Portugaleja]] '''[[Portugaleja]]''' - Portugalejis Republika +* [[Fails:Flag of France.svg|25x15px|Praņceja]] '''[[Praņceja]]''' - Praņcejis Republika +* [[Fails:Flag of French Guiana.svg|25x15px|Praņceja]] '''[[Praņcīšu Gviāna]]''' +* [[Fails:Flag of Poland.svg|25x15px|Puoleja]] '''[[Puoleja]]''' - Puolejis Republika +* [[Fails:Flag of North Korea.svg|25x15px|Pūstumu Koreja]] '''[[Pūstumu Koreja]]''' - Korejis Tautys Demokratiskuo Republika + +== R == +* [[Fails:Flag of Rwanda.svg|25x15px|Ruanda]] '''[[Ruanda]]''' - Ruandas Republika +* [[Fails:Flag of Romania.svg|25x15px|Rumuneja]] '''[[Rumuneja]]''' +* [[Fails:Flag of East Timor.svg|25x15px|Reitu Timors]] '''[[Reitu Timors]]''' - Reitu Timora Demokratiskuo Republika + +== S == +* [[Fails:Flag of El Salvador.svg|25x15px|Salvadors]] '''[[Salvadors]]''' - Salvadora Repblika +* [[Fails:Flag of Samoa.svg|25x15px|Samoa]] '''[[Samoa]]''' - Samoa Napavaļdeiguo Vaļsteiba +* [[Fails:Flag of San Marino.svg|25x15px|San Marins]] '''[[San Marins]]''' - San Marina Republika +* [[Fails:Flag of Sao Tome and Principe.svg|25x15px|San Tome i Principe]] '''[[San Tome i Principe]]''' - San Tomes i Principes Demokratiskuo Republika +* [[Fails:Flag of the United Arab Emirates.svg|25x15px|Saškiertī Arabu Emirati]] '''[[Saškiertī Arabu Emirati]]''' +* [[Fails:Flag of Saudi Arabia.svg|25x15px|Omans]] '''[[Sauda Arabeja]]''' - Sauda Arabejis Kieneste +* [[Fails:Flag of the Seychelles.svg|25x15px|Seišelu solys]] '''[[Seišelu Solys]]''' - Seišelu Solu Republika +* [[Fails:Flag of Senegal.svg|25x15px|Senegals]] '''[[Senegals]]''' - Senegala Republika +* [[Fails:Flag of Serbia.svg|25x15px|Serbeja]] '''[[Serbeja]]''' - Serbejis Republika +* [[Fails:Flag of Singapore.svg|25x15px|Singapurs]] '''[[Singapurs]]''' - Singapura Republika +* [[Fails:Flag of Syria.svg|25x15px|Sīreja]] '''[[Sīreja]]''' - Sīrejis Arabu Republika +* [[Fails:Flag of Sierra Leone.svg|25x15px|Sjera Leone]] '''[[Sjera Leone]]''' - Sjera Leones Republika +* [[Fails:Flag of Slovakia.svg|25x15px|Slovakeja]] '''[[Slovakeja]]''' - Slovakejis Republika +* [[Fails:Flag of Slovenia.svg|25x15px|Sloveneja]] '''[[Sloveneja]]''' - Slovenejis Republika +* [[Fails:Flag of the Solomon Islands.svg|25x15px|Solomonu solys]] '''[[Solomonu solys]]''' +* [[Fails:Flag of Somalia.svg|25x15px|Somaleja]] '''[[Somaleja]]''' - Somalejis Demokratiskuo Republika +* [[Fails:Flag of Spain.svg|25x15px|Spaneja]] '''[[Spaneja]]''' - Spanejis Kieneste +* [[Fails:Flag of Sudan.svg|25x15px|Sudans]] '''[[Sudans]]''' - Sudana Republika +* [[Fails:Flag of Finland.svg|25x15px|Suomeja]] '''[[Suomeja]]''' - Suomejis Republika +* [[Fails:Flag of Suriname.svg|25x15px|Surinams]] '''[[Surinams]]''' - Surinama Republika +* [[Fails:Flag of Swaziland.svg|25x15px|Svazilends]] '''[[Svazilends]]''' - Svazilenda Kieneste +* [[Fails:Flag of Saint Kitts and Nevis.svg|25x15px|Svātuo Kits Sola i Nevis]] '''[[Svātuo Kits Sola i Nevis]]''' - Svātuo Kristopera Solys i Neva Federaceja +* [[Fails:Flag of Saint Vincent and the Grenadines.svg|25x15px|Svātuo Vincenta Sola i Grenadinis]] '''[[Svātuo Vincenta Sola i Grenadinis]]''' +* [[Fails:Flag of Saint Lucia.svg|25x15px|Svātuo Lūcejis Sola]] '''[[Svātuos Lūcejis Sola]]''' + +== Š == +* [[Fails:Flag of Switzerland.svg|25x15px|Šveicareja]] '''[[Šveicareja]]''' - Šveicarejis Konfederaceja +* [[Fails:Flag of Sweden.svg|25x15px|Švedeja]] '''[[Švedeja]]''' - Švedejis Kieneste +* [[Fails:Flag of Sri Lanka.svg|25x15px|Šri Lanka]] '''[[Šri Lanka]]''' - Šri Lankas Demokratiskuo Socialistiskuo Republika + +== T == +* [[Fails:Flag of Tajikistan.svg|25x15px|Tadžikistans]] '''[[Tadžikistans]]''' - Tadžikistana Republika +* [[Fails:Flag of Thailand.svg|25x15px|Taizeme]] '''[[Taizeme]]''' - Taizemis Kieneste +* [[Fails:Flag of Tanzania.svg|25x15px|Tanzaneja]] '''[[Tanzaneja]]''' - Tanzanejis Saškiertuo Republika +* [[Fails:Flag of Togo.svg|25x15px|Toga]] '''[[Toga]]''' - Togys Republika +* [[Fails:Flag of Tonga.svg|25x15px|Tonga]] '''[[Tonga]]''' - Tongys Kieneste +* [[Fails:Flag of Trinidad and Tobago.svg|25x15px|Trinidads i Tobags]] '''[[Trinidads i Tobags]]''' - Trinidada i Tobaga Republika +* [[Fails:Flag of Turkey.svg|25x15px|Turceja]] '''[[Turceja]]''' - Turcejis Republika +* [[Fails:Flag of Tunisia.svg|25x15px|Tuniseja]] '''[[Tuniseja]]''' - Tunisejis Republika +* [[Fails:Flag of Turkmenistan.svg|25x15px|Turkmenistans]] '''[[Turkmenistans]]''' - Turkmenistana Republika +* [[Fails:Flag of Tuvalu.svg|25x15px|Tuvalu]] '''[[Tuvalu]]''' + +== U == +* [[Fails:Flag of Uganda.svg|25x15px|Uganda]] '''[[Uganda]]''' - Ugandys Republika +* [[Fails:Flag of Ukraine.svg|25x15px|Ukraina]] '''[[Ukraina]]''' +* [[Fails:Flag of Uruguay.svg|25x15px|Urugvajs]] '''[[Urugvajs]]''' - Urugvaja Reitu Republika +* [[Fails:Flag of Uzbekistan.svg|25x15px|Uzbekistans]] '''[[Uzbekistans]]''' - Uzbekistana Republika + +== V == +* [[Fails:Flag of Vanuatu.svg|25x15px|Vanuatu]] '''[[Vanuatu]]''' - Vanuatu Republika +* [[Fails:Flag of the Vatican City.svg|25x15px|Vatikans]] '''[[Vatikans]]''' - Vatikana Mīsta Vaļsteiba +* [[Fails:Flag of Venezuela.svg|25x15px|Venecuela]] '''[[Venecuela]]''' - Venecuelys Republika +* [[Fails:Flag of Hungary.svg|25x15px|Vengreja]] '''[[Vengreja]]''' - Vengrejis Republika +* [[Fails:Flag of Vietnam.svg|25x15px|Vjetnams]] '''[[Vjetnams]]''' - Vjetnama Socialistiskuo Republika +* [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] '''[[Vuoceja]]''' - Vuocejis Federativuo Republika + +== Z == +* [[Fails:Flag of Cape Verde.svg|25x15px|Zaļuo Roga Solys]] '''[[Zaļuo Roga Solys]]''' – Zaļuo Roga Solu Republika, Kapverde +* [[Fails:Flag of Zambia.svg|25x15px|Zambeja]] '''[[Zambeja]]''' - Zambejis Republika +* [[Fails:Flag of Zimbabwe.svg|25x15px|Zimbabve]] '''[[Zimbabve]]''' - Zimbabvis Republika + +[[Kategoreja:Pasauļa vaļsteibys| ]] +[[Kategoreja:Saroksti]] + +[[nds:Land#Länner]] +[[sv:Världsgeografi#Lista över länder]] + 3y2ufdb9zqb8ijpo2glp8yfzu47ap9a + + + + Pavalis industreja + 0 + 389 + + 28298 + 26177 + 2013-03-07T19:08:18Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 19 interwiki links, now provided by [[d:|Wikidata]] on [[d:q625568]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Pavalis industreja''' (anglīšu: ''entertainment industry''; krīvu: ''индустрия развлечений''; latvīšu: ''izklaides industrija'') — biznesa atzare (ar daudzi zamatzaru), kuramā ļaudim par nūstateitu moksu pasūlomi [[Pavaļa|pavalis]] sariedīni. + +Daļu nu pavalis industrejis zamatzaru - tūs, kurys sasītys ar scenu - sauc taipoš i '''šovbiznesa'''. + ilhn6r3ca16iukjpvqme9dt2287eygd + + + + Pavaļa + 0 + 390 + + 28299 + 26738 + 2013-03-07T19:08:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 70 interwiki links, now provided by [[d:|Wikidata]] on [[d:q173799]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Pavaļa''' (anglīšu: ''entertainment, recreation activities''; krīvu: ''досуг, развлечения''; latvīšu: ''izklaide'') — darbeibys, kuru [[snāgs]] irā prīcynuot ļauds, paceļt jim jutūni, puordrūsynuot džadeigu (iņteresantu) i pateikamu breivuo laika puorlaisšonu. + +Šauruokā zeimeibā par pavaļu apzeimoj [[Pavalis industreja|pavalis industrejis]] pasūleitūs, publikai guoduotūs [[Sariedīņs|sariedīņus]] pīv.: +* koņcertus, teatra izruodis, kinys seansus, +* klubu i kopejneicu programys, +* uorīnis izastatīņus, atrakcejis, tierdzeņus, +* muzeju ekspozicejis, paruodis +i leidz.). + +Plotuokā zeimeibā pavalis sapratīnī īīt vēļ i taidys prīcynojūšys darbeibys, kurys breivajā laikā cylvāks dora vīns voi napalelā ļaužu grupā, pīv.: +* datorkaitys, +* golda kaitys i kartavuošona, +* televizejis voi DVD vieršonuos, +* vakariešonys, +* izbraukšona dobā +i leidz.). + +Izškireigai nu cytys breivuo laika darbeibu atmejis - [[Kavieklis|kaviekļu]], pavaļa parostai navā sasīta ar regularumu. + +== Verīs taipoš == +* [[Kavieklis]] + +[[Kategoreja:Pavaļa]] + qq1bjebd4b4474jwoc83dw81aavl47h + + + + Peirāgs + 0 + 391 + + 30181 + 29986 + 2014-01-18T00:33:27Z + + EmausBot + 103 + + + Bot: Migrating 3 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q257238]] + wikitext + text/x-wiki + '''Peirāgs''', pasūlu lītuot '''glabiņs''' — "tys, kurs pats irā nūglobuots i kurymā globojās cytai reizei pamastuo informaceja". "Peirāgs" par cīši pīdareigs nu koņteksta (deļ tuo latvīši i lītaunīki juo napuorvierš taišni). Bez tuo i koņditorejā "cookie" lobuok puorvērst kai "capums", partū ka "peirāgs" var byut i "cake", i "tart" (t. i. daudzi reižu leluoki darīni kai capums), a myuslaikim itaida daudzizeimeiba par lela. + iph0k6v4zluqidw53jwtl8hy55vwnwv + + + + Petanks + 0 + 392 + + 30393 + 28300 + 2014-07-11T06:54:05Z + + Amherst99 + 356 + + + wikitext + text/x-wiki + '''Petanks''' ([[Praņcīšu volūda|praņcīšu]]: ''pétanque'') — Provansa praņcīšu nacionaluo sporta atmeja, bumbuļu svaideišona. + +== Aprakstejums == +[[Fails:Petanque.jpg|thumb|225px|Bumbuleits i košonets]] +Kaitys snāgs irā diveju komandu kaitaunīkim 15 reiz 4&nbsp;[[Metris|m]] pluota laukumeņā pa ailei voda metaliņus bumbuleišus raudzeit dastumt sovu bumbuleiti kai varams tyvuok da kūciņa bumbuleiša — [[Košonets|''košoneta'']] ([[Praņcīšu volūda|praņcīšu]] ''cochonnet'' — cyuceņa). Pi tuo, metaliņam bumbuleišam nabreiv aizgiut košoneta, tok sasaveicieja bumbuleiti jis var izsist nu vītys, kab puorstumtu jū tuoļuok nu košoneta. Kaita tuoļuojās da 13 ocu. + +Petanku var kaitavuot sevkotrā laukumeņā: smiļkšuotā, gruntātā, žvyruotā i t. t. Pyrma kaitys suoku kaitaunīki aizzeimoj itū laukumeņu pa nūstateitajim mārim. + +Bumbuļu māri i svors: +* košonets&nbsp;— 25—30&nbsp;[[Milimetris|mm]], +* metalini&nbsp;— 70,5—80,0&nbsp;mm, svors&nbsp;— 650—800&nbsp;[[Grams|g]]. + +Kaitaunīku skaits komandā: 1—3, komandys kaitavoj vysaidūs sadorūs. Vacuma aprūbežuojumu navā. + +== Viesture == +[[Fails:Dscn0054-boules-in-action 600x800.jpg|thumb|225px|Petanks svīžā gaisā]] +Petankam leidzeigys kaitys beja jau [[Senejuo Grekeja|Senejā Grekejā]] i [[Senejuo Roma|Romā]]. [[Elada|Eladā]] parostai izlītuoja opolus akmiņus i lumdynuojuos tuoļsvīsšonā, a [[Senejī romīši|romīši]] svaideja ar dzeļzi apkoltus kūciņus bumbuleišus kurs taisnuok ītruopeis. + +Piec [[Romys impereja|Romys imperejis]] krisšonys itei kaita beja aizmiersta i atdzyma viņ Vydslaikūs ar pasauku ([Test-Praņcīšu volūda|praņciskai]] ''bouleurs''. Jei tyka taida populara, ka XIV godusymtā beja nūlīgta, kab pavaļdini aizajimtu ar nūdareiguokom sporta atmejom - [[Fehtuošona|fehtuošonu]] voi [[Lūksaušona|lūksaušonu]]. + +Koč i bejuši nīlūgumi, kaita atguojuse da myusu dīnu. Vysaiduos formuos, ar vysaodom pasaukom, jei ekzistej vysaiduos [[Vydsjiurys|Vydsjiuru]] vaļsteibuos, taipoš [[Lelbritaneja|Lelbritanejā]]. Niulejā atmejā petanks atsaroda 1907 godā. + +Petanka kaitaunīki sasaškeiruši [[Vydtautyskuo petanka asociaceja|Vydtautyskajā petanka asociacejā]]. + t6lrjs98bn4hvp669fst276hl2xxxuo + + + + Plaukstinīks + 0 + 393 + + 28301 + 27321 + 2013-03-07T19:08:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 52 interwiki links, now provided by [[d:|Wikidata]] on [[d:q162768]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Plaukstinīks''' aba '''PDA''' ({{lang-en|PDA, personal digital assistant, palmtop}}) — plaukstā turama leluma ītaise, kura kolpoj kai mozs datoreits. + +Nu īsuoku plaukstinīki beja lītojami kai [[Aizrakstine|aizrakstinis]] i [[Planavuotivs|planavuotivi]], tok ar godim dabuoja labtik plotuokys damāruošonys. Šudinejī plaukstinīki var turēt itaidys funkcejis (vysys voi daļu): +* stuņdinīks, kaleņders, [[aizrakstine]], dorbu saroksts, [[planavuotivs]], [[skaitļuotivs]]; +* [[E-posts|e-posta]] (tymā vydā, [[Strāpposts|strāpposta]]) skaiteišona i raksteišona; +* iņterneta lītuošona caur [[Vārtivs|vārtivi]]; +* mobiluo zvaneišona i [[Vierīņzvons|vierīņzvoni]]; +* [[datu sinhronizaceja]] ar serveri ci parostū datoru (nosojamū datoru); +* [[muzykys spieļuotivs]], [[vierīņu spieļuotivs]], [[diktofons]], [[tuoļvaļdis puļts]] (saceisim, TV), [[GPS imtivs]], nosojamais televizors i ct. + +Myuslaiceigūs plaukstinīkus daslādz iņternetam izlītojūt [[Bezvadeiguos tehnologejis|bezvadeiguos]] voi [[Mobiluos tehnologejis|mobiluos]] tehnologejis. + +[[Kategoreja:Tehnologeja]] + pnoywkc5bhmc1itfdg9geea4pvdcemm + + + + Plysūna lelakmiņs + 0 + 394 + + 30528 + 29840 + 2015-02-01T19:07:11Z + + Vogone + 1387 + + + wikitext + text/x-wiki + '''Plysūna lelakmiņs''' aba '''Plysūna akmiņs''' — lelakmiņs pi [[Plysūns|Plysūna azara]] Istrys pogostā, dobys pīminieklis. + +Akmiņs atsaguļs iudinī, [[Plysūns|Plysūna azara]] dīnavydu azarmalē, iz Istrys i Škaunys pogostu rūbeža, kauprainē. Da akmiņa var daīt tik sausā laikā, kam apleicīne puorguojuse peisā. Guodojams, ka akmini atness [[laduojs]]. Nu 1977 gods apsorgojams kai geologiskais i geomorfologiskais dobys pīminieklis. + +Geologiskais aprakstejums: +* Sluoniskys migmatizāts gneiss ar lelom kvarca i aplita dzeislom, tur daudzi aļmaņdina kristalu. + +Māri: +* [[garums]] - 5,4 m; +* [[plotums]] - 4,4 m; +* [[augstums]] - da 3 m; +* [[apleikmārs]] - 17 m; +* zemisviersa [[vydums]] - ap 35 m³. + +Apleicīnē aizraksteiti [[Pīstuoškys|pīstuoški]], ka pi Plysūna akmiņa vīnam veiram zīm aizguojs prīškā svešinīks i vadynuojs da seve gostūs garmanis muzykys pasaklauseitu. Veirs laidīs svešinīkam leidza, pasagastiejs i pasaklausejs, kai svešais spieļuoj garmani, piečuok aizmidzs, a pīsamūds zīmys soltumā gulādams iz Plysūna akmiņa. + +[[Kategoreja:Latgolys dobys pīminiekli]] + gqesmj3wtv354ggbqd75otdygxzevyq + + + + Plysūns + 0 + 395 + + 29758 + 14580 + 2013-04-14T22:58:39Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Plysūns +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd =56 | latm =13 | lats =16 | latNS = N +| longd =28 | longm =0 | longs =31 | longEW = E +| nūvods = Ludzys nūvods +| pluots = 4,8 +| pošlelais_garums = 2,9 +| vydyskuo_dzilīne = 1,8 +| pošleluo_dzilīne = 3,8 +| vydums = 0,0097 +| augstums = 150,1 +| iztece = Plysunka +| satecis_baseins = 60,9 +| baseina_vaļsteibys = [[Latveja]], [[Krīveja]] +| azarsolys = 1 +| dzeivojamys_vītys = Čerņavski, Dunduri +| cytys pasaukys = +}} + +'''Plysūns''' — azars [[Istrys pogosts|Istrys pogostā]], [[Latgolys augstaine|Latgolys augstainis]] dīnavydūs. + +Azara forma opolona, azarmale zama i lāva, dybyns leidzons, smiļkšuots, vydsdaļā dyune. Pūstumūs azarmalē pussola i 0,2 ha leluma azarsola. Azaru puortak Plysūne – ītak vokorūs, nu Zeiļovys azara, iztak reitūs, pa Sīnuojis tecīņam. Azars dīnavydūs pījam ryuču i gruovu iudiņus nu Gordovys, Moļvejis, Keiša azaru. Eutrofs, drupeit aizaudzs azars. Dzeivoj raudys, plauži, leidakys, asari, karpys, leini. + +Dīnavydu azarmalē iudinī guļ apsorgojamais geologiskais objekts - [[Plysūna lelakmiņs]]. + +[[Kategoreja:Latgolys azari]] + q5nr8aoz48b5kb1gdfaw40eiqko11hu + + + + Polacka zamaine + 0 + 396 + + 31459 + 30349 + 2016-06-17T09:03:50Z + + Чаховіч Уладзіслаў + 2015 + + wikitext + text/x-wiki + [[Fails:Полацкая нiзiна (2001).svg|thumb|Polacka zamaine]] +'''Polacka zamaine''' (boltkrīvu: ''Полацкая нізіна'') — reļjefa īleikums, apjamūšs napalelu teritoreju Latgolys pošūs dīnavydreitūs i (pa lelumam) Boltkrīvejis Vicebska apgabaļa pūstumvokoru daļu, t. i., Daugovys (boltkrīvu: ''Дзвiна, Заходняя Дзвiна'') baseinu. Rūbežmalē Latgolys pusē Polacka zamaine īīt [[Kruoslovys nūvods|Kruoslovys nūvoda]] teritorejā. Zamainis pūstumvokoru styurs dasaglauž Latgolys augstainei. + +[[Kategoreja:Latgolys geografeja]] + l0zbrxtgmgl5ta8wn0a5zmrno3urawt + + + + Portugaleja + 0 + 397 + + 31877 + 30693 + 2017-01-29T00:08:25Z + + Mr. Fulano + 3757 + + Upgrading the president + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Portugal'''<br />'''Portugaleja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Portugal.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Portugal.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Portugal with islands circled.svg|300px]] +|- +|| Golvysmīsts || [[Lisbon]] +|- +|| Vaļsteibys volūda || [[Portugāļu volūda|Portugāļu]] +|- +| Prezidents || [[Marcelo Rebelo de Sousa]] +|- +| Ministru prezidents || [[António Costa]] +|- +|| Pluots || 92 391 km² +|- +|| Dzeivuotuoju skaits || 10 708 000 +|- +|| [[Laika zona]]<br />-vosorā || [[UTC]] + 0 +|} +'''Portugaleja''' ([[Portugāļu volūda|Portugāļu]]: ''Portugal'') — vaļsteiba [[Europa|Europā]]. [[Pasauļa_golvysmīstu_saroksts|Golvysmīsts]] i pats leluokais mīsts — [[Lisbon]]. + +== Viesture == + +== Politika == + +== Geografeja == +* [[Portugāļis mīsti]] + +== Demografeja == +96,87%% — portugalīši, 3,13% cyti. + +== Verīs taipoš == +* [http://www.portugal.gov.pt/ Portugal.gov.pt] + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Portugaleja]] + de2y24mvr8qixooq0f7uyxnpfpdxten + + + + Praņceja + 0 + 398 + + 31980 + 31956 + 2017-05-10T19:01:12Z + + GorillasPeaches + 3821 + + lol + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''France'''<br />'''Praņceja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of France.svg|150px|border]] +| align="center" width="140px" | [[Fails:Armoiries république française.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-France.svg|300px]] +|- +|| Golvysmīsts || [[Pariža]] +|- +|| Vaļsteibys volūda || [[Praņcīšu volūda|praņcīšu]] +|- +| Prezidents || Emanuels Makrons +|- +| Ministru prezidents || Bernars Kaznēvs +|- +|| Pluots || 674 843 km² +|- +|| Dzeivuotuoju skaits || 65 447 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Praņceja''' ({{vol-fr|France}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + gefdhd7uudpv1wezdsz5n8y6pixw98n + + + + Preili + 0 + 399 + + 31479 + 28305 + 2016-07-20T11:21:37Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Preili +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| gerba_atvaigs = Escut Preili.svg +| gerba_pasauka = Preiļu gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 18 | lats = | latNS = N +| longd = 26 | longm = 43 | longs = | longEW = E +| nūvods = Preiļu nūvods +| pluots = 5,1 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 7 074 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 1387 +| viesturiskuos_pasaukys = {{Vol-de|Prely}} +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1928 +| posta_iņdekss = LV-5301 +| teiklavīta = www.preili.lv +}} + +'''Preili''' — mīsts Latgolys vydsdaļā, Leivuona - Kruoslovys i Viļānu - Daugpiļs ceļu krystcelēs. Preiļu nūvoda centrys. + +{{nadabeigts rakstīņs}} + +{{Preiļu nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Preili| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + jhpvcvq9hcideip5v06vrbc8rlih87f + + + + Prionailurus bengalensis + 0 + 400 + + 29088 + 29033 + 2013-03-11T10:37:31Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q42627]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Stavenn Felis bengalensis 00.jpg|thumb|250px|]] +[[Fails:Leopard cat range.PNG|thumb|250px|''Prionailurus bengalensis'' paplateiba pasaulī]] +'''Prionailurus bengalensis''', Kerr, 1792 ({{Vol-en|leopard cat}}, {{Vol-ru|бенгальская кошка, или леопардовая кошка}}, {{Vol-lv|bengālijas kaķis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Prionailurus bengalensis'' dzeivoj Denavydpustum Azejā. + +== Izavierīņs == +Auguma garums: 40—50 cm;<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). Wild cats of the World. Chicago: University of Chicago Press. pp. 225–232. ISBN 0-226-77999-8.</ref></br> +Astes garums: 20—40 cm;<ref name=WCoW/></br> +Placu augstums: 41 cm;<ref name=WCoW/></br> +Svors: 2.2 kg.<ref name=WCoW/> + +== Daudzatmejeiba == +Irā 11 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1987/ BioLib] Profil taxonu — druh '''kočka bengálská ''Prionailurus bengalensis''''' Kerr, 1792</ref>: +* ''[[Prionailurus bengalensis alleni]]'' Sody, 1949 +* ''[[Prionailurus bengalensis bengalensis]]'' (Kerr, 1792) +* ''[[Prionailurus bengalensis borneoensis]]'' Brongersma, 1936 +* ''[[Prionailurus bengalensis chinensis]]'' (Gray, 1837) +* ''[[Prionailurus bengalensis euptilurus]]'' (Elliot, 1871) +* ''[[Prionailurus bengalensis heaneyi]]'' Groves, 1997 +* ''[[Prionailurus bengalensis horsfieldi]]'' (Gray, 1842) +* ''[[Prionailurus bengalensis javaensis]]'' (Desmarest, 1816) +* ''[[Prionailurus bengalensis rabori]]'' Groves, 1997 +* ''[[Prionailurus bengalensis sumatranus]]'' (Horsfield, 1821) +* ''[[Prionailurus bengalensis trevelyani]]'' Pocock, 1939 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Prionailurus bengalensis}} + +{{DEFAULTSORT:Prionailurus bengalensis}} + +[[Kategoreja:Dzeivinīki]] + nxgbv93e43q6fwd3klymw3hxvablifl + + + + Prionailurus iriomotensis + 0 + 401 + + 30092 + 29034 + 2013-09-21T08:12:49Z + + Sci-KenKen + 2136 + + wikitext + text/x-wiki + [[Fails:Iriomote cat Stuffed specimen.jpg|thumb|250px|]] +'''Prionailurus iriomotensis''', Imaizumi, 1967 ({{Vol-en|Iriomote cat}}, {{Vol-ru|ириомотская кошка}}, {{Vol-lv|Iriomotes kaķis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Prionailurus iriomotensis'' dzeivoj Japanejā (Iriomote i Rjukju jiurusolos)<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Prionailurus_iriomotensis.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: muotīte - 48 cm; tāviņš - 53—56 cm;<ref name="ADV"/></br> +Astes garums: 16—45 cm;</br> +Placu augstums: 25 cm;</br> +Svors: 3–5 kg.<ref name="ADV"/> + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Prionailurus iriomotensis}} + +{{DEFAULTSORT:Prionailurus iriomotensis}} + +[[Kategoreja:Dzeivinīki]] + iawam8mj2dtxm30m2420i2t7qct27go + + + + Prionailurus planiceps + 0 + 402 + + 29035 + 28308 + 2013-03-09T14:20:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q274177]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Flat-headed cat 1 Jim Sanderson.JPG|thumb|250px|]] +[[Fails:Plionailurus planiceps former distribution.png|thumb|250px|''Prionailurus planiceps'' paplateiba pasaulī]] +'''Prionailurus planiceps''', Vigors & Horsfield, 1827 ({{Vol-en|flat-headed cat}}; {{Vol-ru|суматранская кошка}}; {{Vol-lv|plakangalvas kaķis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Prionailurus planiceps'' dzeivoj Denavydpustum Azejā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Prionailurus_planiceps.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 41—50 cm;<ref name="walker">Francis, C. 2001. ''A Photographic Guide to Mammals of South-east Asia including Thailand, Malaysia, Singapore, Myanmar, Laos, Cambodia, Vietnam, Java, Sumatra, Bali and Borneo.'' ISBN 85974-507-5.</ref></br> +Astes garums: nu 13 da 15 cm;<ref name="walker"/></br> +Svors: 1.5—2.5 kg.<ref name="southeast">Francis, C. 2001. ''A Photographic Guide to Mammals of South-east Asia including Thailand, Malaysia, Singapore, Myanmar, Laos, Cambodia, Vietnam, Java, Sumatra, Bali and Borneo.'' ISBN 85974 507 5</ref> + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Prionailurus planiceps}} + +{{DEFAULTSORT:Prionailurus planiceps}} + +[[Kategoreja:Dzeivinīki]] + 6xm8tvm09vro4ve7bur3jbpvsnmuo0h + + + + Prionailurus rubiginosus + 0 + 403 + + 29036 + 28309 + 2013-03-09T14:21:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q309274]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Rostkatze.JPG|thumb|250px|]] +[[Fails:Rustyspottedmap.jpg|thumb|250px|''Prionailurus rubiginosus'' paplateiba pasaulī]] +'''Prionailurus rubiginosus''', Geoffroy Saint-Hilaire, 1831 ({{Vol-en|rusty-spotted cat}}; {{Vol-ru|пятнисто-рыжая кошка}}) irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Prionailurus rubiginosus'' dzeivoj Iņdejā i Šri-Lankā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Prionailurus_rubiginosus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: nu 35 da 48 cm;<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 237–240. ISBN 0-226-77999-8.</ref></br> +Astes garums: nu 15 da 30 cm;<ref name=WCoW/></br> +Svors: 0.9—1.6 kg.<ref name=WCoW/> + +== Daudzatmejeiba == +Irā 2 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1990/ BioLib] Profil taxonu — druh '''kočka cejlonská ''Prionailurus rubiginosus''''' Geoffroy Saint-Hilaire, 1831</ref>: +* ''[[Prionailurus rubiginosus phillipsi]]'' Pocock, 1939 +* ''[[Prionailurus rubiginosus rubiginosus]]'' (I. Geoffroy Saint-Hilaire, 1831) + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Prionailurus rubiginosus}} + +{{DEFAULTSORT:Prionailurus rubiginosus}} + +[[Kategoreja:Dzeivinīki]] + ldvk514mc5sh4tr3yx1rfisxvj44jht + + + + Prionailurus viverrinus + 0 + 404 + + 29013 + 28310 + 2013-03-09T03:14:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q190674]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Fishing Cat Pessac zoo.jpg|thumb|250px|]] +[[Fails:Prionailurus viverrinus map.svg|thumb|250px|''Prionailurus viverrinus'' paplateiba pasaulī]] +'''Prionailurus viverrinus''' (Bennett, 1833) ({{Vol-en|fishing cat}}; {{Vol-ru|кот-рыболов}}; {{Vol-lv|zvejniekkaķis}}) — irā naleļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. Prionailurus viverrinus dzeivoj Denavydpustum Azejā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Prionailurus_viverrinus.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: 57—78 cm;<ref name=WCoW>Sunquist, Mel; Sunquist, Fiona (2002). ''Wild cats of the World.'' Chicago: University of Chicago Press. pp. 241–245. ISBN 0-226-77999-8.</ref></br> +Astes garums: 20—30 cm;<ref name=WCoW/></br> +Svors: 5—16 kg.<ref name=WCoW/> + +== Daudzatmejeiba == +Irā 2 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1991/ BioLib] Profil taxonu — druh '''kočka rybářská ''Prionailurus viverrinus''''' Bennett, 1833</ref>: +* ''[[Prionailurus viverrinus rizophoreus]]'' Sody, 1936 +* ''[[Prionailurus viverrinus viverrinus]]'' Bennett, 1833 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Prionailurus viverrinus}} + +{{DEFAULTSORT:Prionailurus viverrinus}} + +[[Kategoreja:Dzeivinīki]] + qg4owfnw5qa90zh7mqndyviz2ci2p9b + + + + Process + 0 + 405 + + 29745 + 29664 + 2013-04-14T00:44:29Z + + MerlIwBot + 221 + + + robots izņem: [[fa:فرآیند]] (strong connection between (2) [[ltg:Process]] and [[fa:فرایند]]) + wikitext + text/x-wiki + '''Process''' (nu latīnu vuorda ''processus'' 'kusteiba') — [[Objekts|objekta]] ci [[Sistema|sistemys]] [[Soveiba|soveibu]] [[Puormeja|puormeju]] dobyska voi sariedeita [[vērtine]]. + +Procesa zeimeiba vysaiduos atzarēs: +* [[Process (zineibā)|process (zineibā vysumā)]]; +* [[process (anatomejā)]]; +* [[process (datoreibā)]]; +* [[process (iņženerejā)]]; +* [[Process (informacejis sistemu taiseibā|process (informacejis sistemu taiseibā)]]; +* [[process (tīseibā)]]; +* [[process (muzykā)]]; +* [[process (filosofejā)]]; +* [[biologiskais process]]; +* [[biznesa process]]; +* [[industriskys process]]. + +Procesu atmejis pa dobyskumam: +* [[dobyskys process]]; +* [[muoksleigs process]]. + +{{Zeimeibu škiršona}} + jsg5lkir5iomwn3sj0tir16igctoy03 + + + + Profelis aurata + 0 + 406 + + + 5719 + 5718 + 2011-03-19T13:20:26Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Zalta kačs]] + d3kiaiik8gmdvsbmdj724bv7et9r7gs + + + + Pruottelefons + 0 + 407 + + 32142 + 32140 + 2017-09-01T05:04:08Z + + Tegel + 618 + + + Novērsu izmaiņas, ko izdarīja [[Special:Contributions/94.254.242.154|94.254.242.154]] ([[User talk:94.254.242.154|Diskusija]]), atjaunoju versiju, ko saglabāja [[User:210.17.246.247|210.17.246.247]] + wikitext + text/x-wiki + [[Fails:SmartPhone.jpg|thumb|right|250px|Samsung Galaxy Note]] +'''Pruottelefons''' aba '''pruotinīks''' ({{vol-en|smartphone}}) — daudzifunkcionals [[mobilais telefons]] ar [[Dators|datora]] soveibom. + +Lelumu pruottelefonu nu cytu mobilūs telefonu izškir (i da datora tyvynoj) itaidys soveibys: +* [[Pruottelefons#Oper.C4.81tuojsistemys|operātuojsistema]], leidzeiga tai, kura dora [[Dators|datorūs]]; +* [[Sadurs|lītuotuoja sadurs]], leidzeigs tam, kuru redzim datorūs; +* vareiba lītuot vysys personiskuo [[Planavuotivs|planavuotiva]] soveibys (parūči dareit ar e-postu, riedeit sasatikšonys, lītuot adresu/kontaktu gruomatenis i tt.). + +Daļai pruottelefonu irā [[dadurekrans]] i moza [[QWERTY tastatura|QWERTY tastatureņa]]. + +== Apzeimīņs == +Praktiskā lītuošonā navā acimredzeiga rūbeža iz vyds itūs sapratīņu: +* "pruottelefons" (angl. ''smartphone''); +* [[Komunikators|"komunikators"]] (angl. ''communicator''); +* "daudzifunkcionals mobilais telefons" (angl. ''high-ended mobile phone; high-ended cellular phone''); +* [[Plaukstinīks|"plaukstinīks"]] aba [[PDA]] (angl. ''personal digital assistant''). + +Pīgatavātuoji rauga daškeiruši parostajim mobilajim telefonim vys daudzuok pruottelefona funkceju, pīvadumam: +* vareibu īstateit telefonā iņterneta [[Vārtivs|vārtivi]], leidzeigu tradiceigajam, datorūs lītojamam [[Vārtivs|vārtivam]]; +* [[Vierīņzvaneišona|vierīņzvaneišonu]]; +* fotografiešonu i fiļmiešonu; +* e-posta i kaleņdera lītuošonu i tt. +Cytim vuordim, parostī mobilī telefoni vys cīšuok tyvynojās pruottelefonim (saucamim i par [[Komunikators|"komunikatorim"]]). + +Nu ūtrys pusis, šudinejī miniaturī datoreiši - [[Plaukstinīks|plaukstinīki]] (saucami taipoš [[PDA|"PDA"]]) zvaneišonys zinē nadaudzi izaškir nu pruottelefonu. + +Kūpeigai jamūt, golvonuo izškireiba iz vyds pruottelefonu (komunikatoru) i plaukstinīku (PDA) irā funkceju pyrmaileigums: +* pruottelefons kolpoj vysu pyrma kai mobilais telefons (t. i., bolsa puorlaidis ītaise), i datora funkcejis jimā ūtraileigys; +* [[plaukstinīks]] vysu pyrma irā dators (t. i., [[Datu puorlaida|datu puorlaidis]] ītaise), i telefona funkcejis jimā ūtraileigys. + +== Viesture == +'''1992''' - korporaceja IBM datoreibys tierdzeibys paruodē COMDEX Lasvegasā (Nevadys pavaļstē, ASV) stateja prīškā pasaulī pyrmū pruottelefonu "Simon". Sūpluok parostūs mobiluo telefona soveibu jis turēja kaleņderi, adresu gruomateņu, stuņdinīku (kurs ruodeja vysa pasauļa laiku), skaitļuotivi, aizrakstini, e-postu i kaitys. "Simon" naturēja eistynūs mīgteņu zvaneišonai, lītuotuojam vajadzeigū funkceju vajadzēja izalaseit mīdzūt atsateikūšū vītu [[Dadurekrans|dadurekranā]] ar pierstu voi [[Strupuleits|strupuleiti]]. + +'''1993''' - amerikanīšu holdings "BellSouth" suoce pyrmuo pruottelefona "Simon" serejeigu [[Pīgatave|pīgatavi]] i puordūšonu. + +'''1996''' - korporaceja "Nokia" (pasaulī vysuleluokuo mobilūs telefonu pīgatavātuoja) izlaide sovu pyrmū pruottelefonu "Nokia 9000", pasaukdama juo ""Nokia" [[Komunikators|komunikatora]]" ("Nokia communicator"). + +'''2001''' - "Nokia" izlaistais modeļs "Nokia 7650" beja pyrmais pruottelefons ar pylnai [[Valeima operātuojsistema|valeimu operātuojsistemu]]. + +== Operātuojsistemys == +[[Operātuojsistema]] irā zeimeiga pruottelefonu soveiba, kura jūs izškir nu parostūs mobilūs telefonu i ļaun īstateit datorā daudzi papyldomu programu (parostai - [[Trešūs pušu programatura|trešūs pušu programaturu]]), pīvadumam: +* programys, kurys padreizynoj dasasliegšonu pi [[Iņternets|iņterneta]] i [[Datu puorlaida|datu puorlaidi]]; +* programys, kurys ļaun drūsai i šifrātai dasaslēgt pi organizacejis [[Pastinīkservers|e-posta servera]] i tt. + +Pasaulī lītoj itaidys pruottelefonu operātuojsistemys: +* "Symbian OS" (pīgatavātuojs - "Symbian Ltd.") +* "Linux" +* "RIM" (Research In Motion), paradzāta "BlackBerry" tipa pruottelefonim +* "Windows Mobile" (pīgatavātuojs - "Microsoft") +* "Palm OS" (niule - "Microsoft" meityspasajāmums) + +== Pīgatavātuoji == +Pruottelefonu golvonī pīgatavātuoji pasaulī: +* Gigabyte +* Group Sense PDA +* Hewlett-Packard (HP) +* High Tech Computer Corporation +* Kyocera +* Mio Technology +* Nokia +* Palm Inc +* qtek +* Research in Motion Limited (RIM) +* Samsung Electronics +* Sony Ericsson + +[[Kategoreja:Tehnologeja]] + g90uu9fcaqnenbccc3uvk6iws0x245z + + + + Pulavi + 0 + 408 + + 28986 + 28312 + 2013-03-08T17:49:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q320007]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + <table border=1 cellpadding=2 cellspacing=0 align=right width=275px> +<caption><font size=+1>'''Puławy'''<br /> +</font></caption> +<tr><td style=background:#efefef; align=center colspan=2> +<table border=0 cellpadding=2 cellspacing=0> +<tr><td align=center>[[Fails:KurówPoland.png|120px|]]<td align=center>[[Fails:Puławy herb.svg|100px]] +</table> +<tr><td>Dzeivuotuoju<td>49 956 <small>(2006)</small> +<tr><td>Vaivadeja<td>[[Ļublina vaivadeja|Ļublins]] +</table> +'''Pulavi''' (puoļu: ''Puławy'') — mīsts [[Puoleja|Puolejis]] reitūs, [[Ļublins|Ļublina]] vaivadejā pi Vislys upis, [[Apleciņs|apleiciņa]] centrys. + +[[Kategoreja:Puolejis mīsti]] + 06ua1ux6saghrkj0khgb0gvlkbaxl4h + + + + Puma concolor + 0 + 409 + + 30695 + 29089 + 2015-04-02T15:29:37Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|en}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Attēls:MountainLion.jpg|thumb|250px|]] +[[Attēls:Puma concolor Location Map.svg|thumb|250px|''Puma concolor'' paplateiba pasaulī]] +'''Puma concolor''' (Linnaeus, 1771) ({{Vol-en|cougar, puma, or mountain lion}}; {{Vol-ru|пума}}; {{Vol-lv|puma, kalnu lauva, jeb pantera}}) — irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Puma concolor'' dzeivoj Dīnavyd Amerikā i Pūstum Amerikis dīnavydā<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Puma_concolor.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums (ar asti): 2.4 m;<ref name="Texas">[http://www.tpwd.state.tx.us/huntwild/wild/species/mlion/ "Mountain Lion (Felis concolor)"]. Texas Parks and Wildlife. Retrieved 2007-03-30.</ref><ref name="NY">[http://www.dec.ny.gov/animals/6974.html "Eastern Cougar Fact Sheet"]. New York State Department of Environmental Conservation. Retrieved 2007-03-30.</ref></br> +Svors: muotīte - 29—64 kg; tāviņš - 53—100 kg.<ref>Nowell, K. and Jackson, P (2006) (PDF). ''[http://carnivoractionplans1.free.fr/wildcats.pdf Wild Cats. Status Survey and Conservation Action Plan.]'' IUCN/SSC Cat Specialist Group. IUCN, Gland, Switzerland. Retrieved 2007-07-27.</ref><ref>http://pick4.pick.uga.edu/mp/20q?search=Puma+concolor</ref> + +== Daudzatmejeiba == +Irā 6 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1995/ BioLib] Profil taxonu — druh '''puma americká ''Puma concolor''''' Linnaeus, 1771</ref>: +* ''[[Puma concolor anthonyi]]'' Nelson and Goldman, 1931 +* ''[[Puma concolor cabreae]]'' Pocock, 1940 +* ''[[Puma concolor concolor]]'' Linnaeus, 1771 +* ''[[Puma concolor costaricensis]]'' Merriam, 1901 +* ''[[Puma concolor cougar]]'' Kerr, 1792 +* ''[[Puma concolor puma]]'' Molina, 1782 + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Puma concolor}} + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Puma concolor}} + +[[Kategoreja:Dzeivinīki]] + eowzawlwm9glhds6aoecgziohrao5ov + + + + Puma yagouaroundi + 0 + 410 + + 28972 + 28314 + 2013-03-08T15:46:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q182304]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Jaguarundi Zoo Berlin.JPG|thumb|250px|]] +[[Fails:Leefgebied jaguarundi.JPG|thumb|250px|''Puma yaguarondi'' paplateiba pasaulī]] +'''Puma yaguarondi''' (E. Geoffroy Saint-Hilaire, 1803) ({{Vol-en|jaguarundi}}; {{Vol-ru|ягуарунди}}; {{Vol-lv|jaguarundis jeb ūdrkaķis}}) — irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. + +== Izavierīņs == +Auguma garums: 55—77 cm<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Puma_yagouaroundi.html University of Michigan Museum of Zoology]</ref>;</br> +Astes garums: 33—60 cm<ref name="ADV"/>;</br> +Svors: 4,5—9<ref name="ADV"/>. + +== Daudzatmejeiba == +Irā 8 zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1961/ BioLib] Profil taxonu — druh '''jaguarundi ''Puma yagouaroundi''''' (E. Geoffroy Saint-Hilaire, 1803)</ref>: +* ''[[Puma yagouaroundi ameghinoi]]'' Holmberg, 1898 +* ''[[Puma yagouaroundi cacomitli]]'' Berlandier, 1859 +* ''[[Puma yagouaroundi eyra]]'' Fischer, 1814 +* ''[[Puma yagouaroundi fossata]]'' Mearns, 1901 +* ''[[Puma yagouaroundi melantho]]'' Thomas, 1914 +* ''[[Puma yagouaroundi panamensis]]'' J. A. Allen, 1904 +* ''[[Puma yagouaroundi tolteca]]'' Thomas, 1898 +* ''[[Puma yagouaroundi yagouaroundi]]'' É. Geoffory Saint-Hilaire, 1803 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Puma yaguarondi}} + +{{DEFAULTSORT:Puma yaguarondi}} + +[[Kategoreja:Dzeivinīki]] + iln1los2nx3vstwanivsvrsznqxlzfw + + + + Puma yaguarondi + 0 + 411 + + + 5812 + 5811 + 2011-03-19T13:20:40Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Puma yagouaroundi]] + cet4fvr58qp7n6v8a6fav64c2gahhf8 + + + + Puoleja + 0 + 412 + + 31960 + 31339 + 2017-04-26T01:01:15Z + + 2A00:23C4:C2FA:5400:132:F168:F648:4824 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Rzeczpospolita Polska'''<br />'''Puolejis Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Poland.svg|150px|border]] +| align="center" width="140px" | [[Fails:Herb Polski.svg|100px]] +|} +|- +| align=center colspan=2 | [[Fails:EU location POL.png|300px]] +|- +|| Golvysmīsts || [[Varšova]] +|- +|| Vaļstiskuo volūda || puoļu +|- +| Prezidents || Andžejs Duda +|- +| Ministru prezidents || Beata Šydlo +|- +|| Pluots || 312 679 km² +|- +|| Dzeivuotuoju skaits || 38 483 957 (2014) +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1),<br /> EEST (UTC +2) +|} +[[Fails:FB Warszawa panorama.jpg|thumb|300px| Varšova (Warszawa)]] +'''Puolejis Republika''' (puoļu: ''Rzeczpospolita Polska'') - napavaļdeiga vaļsteiba Centralajā [[Europa|Europā]]. Tur rūbežu ar Vuoceju vokorūs, Čeheju i Slovakeju dīnavydūs, Ukrainu i Boltkrīveju reitūs, ar Lītovu i Krīveju (Kaliningragys apgabali) pūstumūs. Taipoš nu pūstumu vaļsteibai dasaglauž [[Baļtejis jiura]]. Puolejis 312 679 km² pluotā dzeivoj vaira kai 38 milijoni dzeivuotuoju, i ite 70-tuo pa lelumam vaļsteiba pasaulī i 9 pa lelumam Europā. Puoleja irā 6 vītā Europys Savīneibā pa dzeivuotuoju bīzeibai. Daudzi dzeivuotuoju sasakūpuši lelajūs mīstūs - Varšovā, Krakovā i Lodzē. + +Par Puolejis vaļsteibys dzimšonu vysucieškuok īskaita 966 godu, kod zemē, kura cīši leidzeiga myuslaiku Puolejis Republikys teritorejai, pījimta kristeiguo ticeiba. Puolejis Kieneste īstateita 1025 godā, a 1569 godā jei sasaškeire ar Lītovys Lelkunigaiteju kai Puolejis-Lītovys Savīneiba. 1795 godā itei savīneiba nasuoce byut, i Puolejis zemis beja padaleitys iz vyds Prūsejis Kienestis, Krīvejis Imperejis i Austrejis. 1918 godā, piec I Pasauļa vaidu, Puoleja atdabuoja napavaļdeibys (Ūtruo Republika), tok jau 1939 godā suocēs nacistyskuos Vuocejis i Sovetu Savīneibys okupaceja. Vaira kai 6 milijoni Puolejis dzeivuotuoju nūmyra Ūtrajūs Pasauļa vaidūs. 1944 godā īstateituo Puolejis Tautys Republika beja socialistiska vaļsteiba, politiskai i ekonomiskai cīši sasīta ar Sovetu Savīneibu. 1989 godā Puolejā otkon nūtyka napavaļdeiga, breiva ībolsuošona i beja īstateita "Trešuo Puolejis Republika". + +Niule Puoleja demokratiska parlamentariska republika, padaleita sešpadsmit vaivadejuos (puoļu: województwo). Golvysmīsts - [[Varšova]]. Puoleja irā Europys Savīneibys, NATO, Saškiertūs Naceju Organizacejys (SNO), Pasauļa Tierdzeibys Organizacejys (PTO) i cytu vydtautisku organizaceju dalineica. + +== Etimologeja == + +Puolejis pošu pasauka, varama līta, izacēle nu slavu patautys poļanu ([[puoļu volūda|puoļu]]: ''polanie'') pasaukys, kura zeimoj "gailumu ļauds". Nazkod Puoleja beja zynoma ar latiņu pasaukom ''Terra Poloniae'' ("Puolejis zeme") i ''Regnum Poloniae'' ("Puolejis Kieneste"). Latgaliskai, taipoš kai cytuos daudzejuos pasauļa volūduos, Puolejis pasauka izacēluse nu poļanu patautys ci puoļu pošu pasaukys. A lītavyskai i persiskai pamatā cytys slavu patautys pasauka - Lechites (Lehici, [[puoļu volūda|puoļu]]: ''lędzianie''), partū itamuos volūduos Puolejis vaļsteiba irā ''Lenkija'' lītavyskai i ''Lachistan'' persiskai. + +<!-- +== Viesture == + +== Geografeja == + +== Politiskuo sistema == --> + +== Administrativais dalejums == +[[Fails:POLSKA woj pow gminy.png|thumb|400px|Administrativais dalejums]] + +<!--== Ekonomika == + +== Demografeja == + +=== Etniskais sadors === +=== Volūda === +=== Religeja === + +== Sports == + +== Verīs taipoš == --> + +== Nūruodis i olūti == + +{{Commons|Polska|Puoleja}} + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Puoleja]] + 4ob9r5ik5tl3z2wkovf9aimu6cnl641 + + + + Puortraukt + 0 + 413 + + 30182 + 24857 + 2014-01-18T00:33:44Z + + EmausBot + 103 + + + Bot: Migrating 7 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q15117556]] + wikitext + text/x-wiki + '''Puortraukt''' — transakciju nūzeimoj, kad izdareituos puormainis datubazē programai nasagrib soglobuot, a tei vītā gribīs atsagrīzt tymā situacejā, kas beja pirms puormaiņom. Puortraukt procesu nūzeimoj, kod lītuotuojs voi operaciju sistema nūgalina procesu i naļaun tam normali izapiļdeit i izglobuot rezultatu. (Puortraukt programys dorbu var ar UNIX komandeņu "kill -9 12345", kur 12345 ir procesa numurs. Voi ar Windows Task Manager.) termini.lv pīduovoj "procesa pārtrauce"; var ari "procesa pārtraukšana". + +[[Kategoreja:Datorzineiba]] + idl7sfvdzuiey1dqyh2h97j1ze1fact + + + + Puorvārstivs + 0 + 414 + + 28316 + 25903 + 2013-03-07T19:31:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 62 interwiki links, now provided by [[d:|Wikidata]] on [[d:q79798]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Puorvārstivs''' (anglīšu: ''translator, machine translator, translation tool''; krīvu: ''переводчик''; latvīšu ''tulks'') — ītaise, programa voi sistema, kura puorvierš (puormej) vīnys [[volūda|volūdys]] sacīņus voi garuokus tekstus iz cytu volūdu. + +Sapratīnī īīt datorpuorviersšonys programys (anglīšu ''machine translators; translation software''), daslēdzis puorvārstivi (anglīšu ''online translators; on-line translators'') i ct. + +== Verīs taipoš == +* [[Puorvārsuojs]] + +[[Kategoreja:Volūdys]] + ckbro1hxqfaqdbbb8mcuvs6rx75qgro + + + + Puorvārsuojs + 0 + 415 + + 28317 + 24547 + 2013-03-07T19:31:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 22 interwiki links, now provided by [[d:|Wikidata]] on [[d:q333634]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Puorvārsuojs''' (anglīšu: ''translator, interpretor''; krīvu ''переводчик''; latvīšu: ''tulks, tulkotājs'') — cylvāks, kurs puorvierš (puormej) vīnys [[volūda|volūdys]] sacīņus voi garuokus tekstus iz cytu volūdu. + +== Verīs taipoš == +* [[Puorvārstivs]] + +[[Kategoreja:Profesejis]] +[[Kategoreja:Volūdys]] + gvhfuemnsjlvc8f059ilhlxw1i6c8n2 + + + + Putāni + 0 + 416 + + 30527 + 15896 + 2015-02-01T19:06:52Z + + Vogone + 1387 + + + wikitext + text/x-wiki + '''Putāni''' — sola [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Ombumuižys pogosts|Ombumuižys pogostā]], iz vyds [[Graiži|Graižu]] i [[Vyški|Vyšku]] solu. + +{{eiss rakstīņs}} + +[[Kategoreja:Ombumuižys pogosts]] +[[Kategoreja:Daugpiļs nūvoda solys]] +[[Kategoreja:Latvejis solys]] + e3d244jey11uonejul4lu5qewkd9hge + + + + Pyrmaviesture + 0 + 417 + + 30661 + 29114 + 2015-03-24T14:32:33Z + + Cekli829 + 277 + + wikitext + text/x-wiki + [[Fails:Cogul HBreuil.jpg|thumb]] +'''Pyrmaviesture''' (anglīšu: ''prehistory, pre-history''; krīvu: ''предыстория; доисторическая эпоха''; latvīšu ''aizvēsture'') — tradiceigai itai sauc [[Ciļviece|ciļviecis]] viesturis pyrma [[Roksts|roksta]] izguoduošonys. Pa cytam, šudiņ aktualuokam, redzīņam pyrmaviesture irā ciļviecis viesture da [[Agrokultura|agrokulturys]] atsarasšonai. Vēļ irā redzīņs, pa kuram par pyrmaviesturi sauc ciļviecis viesturis da [[Lūms|ļaudeibys lūmu]] atsarasšonai. + +Pyrmaviesturis terminu pyrmū reizi izlītuoja [[Praņcīši|praņcīšu]] zininīki (praņciskai ''pré-historique'') XIX gs. suokuos, apraksteidami atradīņus Dīnavydpraņcejis oluos. Ciļviecis pyrmaviesturis tiemej [[arheologeja]], [[paleoantropologeja]] i jūs [[Sūpluokatzare|sūpluokatzaris]]. + +Deļ tuo, ka pyrmaviesturi vysucieškuok sīn ar roksta atsarasšonu, izškireiguos kulturuos pyrmviesture beigusēs izškireigā laikā, a kurys nakurys kulturys sova roksta net vysā natyka izguoduojušys. + +== Sadalejums laikavydūs == +Tradiceigai pyrmaviesturi dola itaidūs [[Danīši|danīšu]] zininīka K. J. [[Kristians Jirgensens Tomsens|Tomsena]] (C. J. Thomsen) pasūleitūs laikavydūs: + +* [[Akmiņlaiki]]: +** [[Paleolits]] (agreimī akmiņlaiki); +** [[Mezolits]] (vydyskī akmiņlaiki); +** [[Neolits]] (vāleimī akmiņlaiki); +* [[Bronzlaiki]]; +* [[Dzeļžalaiki]]. + +Kod nakod izškir vēļ i [[Eneolits|eneolita]] laikavydu. + +== Termina i periodizacejis kritika == +XX godusymtā pyrmaviesturis termina zemeigums sasamazynuoja. Ciļviecis viesturis styngra daleišona laikavydūs da roksta atsarašonai i piec juos suoce naatsataisnuot, vairynojūtīs arheologejis datim ap boguotom kulturom, dzeivuojušom da roksta izguoduošonys i pasaplotūt [[Radejaktivuo datiešona|radejaktivajai datiešonai]], kura ļuove „viesturiskajim laikim“ pasastumt vys tuoļuok puorīsmē. Vīnulaik, „globalizejūtīs“ pasauļa viesturei, dalejums pa roksta izguoduošonai šaļtim davad da absurdiskim dalaidumim. Pīvadumam, itai dolūt, izītu, ka [[Senejais Egipts|Egipts]] viesturiskajūs laikūs īsūļuojs jau 3500 godā pr. m. e., a [[Jaunvineja|Jaungvineja]] – tik XIX godusymtā. + +Šudinejai kritikai pavaļdeiga i pa daļai savecejušuo [[Kristians Jirgensens Tomsens|Tomsena]] periodizaceja. Saceisim, [[šumeri|šumeru]] civilizaceja rokstu turēja vēļ pyrma [[Bronzlaiki|bronzlaiku]]. Nu ūtrys pusis, arheologiskī atradīni centralajā [[Anatoleja|Anatolejā]] ([[Turceja|Turcejā]]) ruoda, ka tīnis agreimuo neolita kultura jau muocēja apdareit [[Vars|varu]] (8000 g. pr. m. e.). + +[[Kategoreja:Pyrmaviesture| ]] + sjbd7lkpfr5p9o4rgrnizntx3w0nbly + + + + Pīgatave + 0 + 418 + + 31702 + 31701 + 2016-11-04T23:12:08Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + '''Pīgatave''' ({{vol-en|production, manufacture, manufacturing}}; {{vol-lv|ražošana}}; {{vol-ru|производство}}) — saimestisku [[lobums|lobumu]] voi prīškmatu radeišona (parostai — lelim daudzumim), kab apmīreitu ļaužu [[vajadzeibys]]. + +Pīvadumi: ''apovys pīgatave, puortykys pīgatave, drēbu pīgatave, tabāka pīgatave, stykla pīgatave, ītaišu pīgatave, elektroenergejis pīgatave, syltumenergejis pīgatave.'' + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Industreja]] +[[Kategoreja:Ekonomika]] + p0gvu8y0al6gwcd5swdqsvpgon6msjw + + + + Pīmūrdīņs + 0 + 419 + + 31833 + 31787 + 2016-12-09T09:37:49Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31787 dated 2016-12-09 08:58:50 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Pīmūrdīņs''' aba '''apleicis pīmūrdīņs''' (baļtīšu: ''piesārņojums, vides piesārņojums''; anglīšu: ''pollution, environmental pollution''; krīvu: ''загрязнение, загрязнение среды'') — [[Apleice|apleicei]] svešu lītu (kimiskūs, fizikaliskūs, biologiskūs) palaisšona apleicē. + +Cieškuok sateikamuos pīmūrdīņa formys: +* gaisa pīmūrdīņs (kimiskuos [[Lītne|lītnis]] i cītys dalenis palaižamys ci izsvīžamys atmosferā); +* iudiņa pīmūrdīņs (svešys [[Lītne|lītnis]] i dalenis īteik zemisviersa [[Iudiņture|iudiņturēs]], iudiņa straujeņom nūtakūt, ci zamzemis iudiņdzeisluos, iudiņa straujeņom sasadzerūt zemē); +* radioaktivais pīmūrdīņs (atomfizikys rezultatā dabuotuos [[Lītne|lītnis]] īteik [[Apleice|apleicē]]); +* skona pīmūrdīņs (skons nu dreizceļu, gaisūstu, taiseitovu i ct. traucej dzeivuotuojim); +i ct. + +[[Kategoreja:Apleiczineiba]] + 88tfv8wu74ugyu2bnun77j1p16gh73u + + + + Pīruna + 0 + 420 + + 31840 + 31798 + 2016-12-09T09:38:38Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31798 dated 2016-12-09 09:00:51 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Pīruna''' (anglīšu: ''aphorism, sentence, proverb''; krīvu: ''пословица''; latvīšu: ''sakāmvārds'') — eiss, cieški ritmiskys kura naviņ tipiska procesa voi pasaruodīņa izsacejums (pīv., ''Caur glupu golvu i kuojom namīrs''). Nareši pīrunuos lītojama alegoreja (pīv., ''Svīd vāzu prīškā, prīškā i atrassi''). + +Pīrunu tiemej [[paremiologeja]]. + +== Latgaļu pīrunu pīvadumi == +==== A ==== +* Ar acim teiruma naaparsi. +* Acīs lobs, aiz ocu nalobs. +* Acs apsabeist, a rūkys padora. +* Akmiņs na spylvyns, boguots na rods. +* Apleik uobeļs skaists, vydā sapivs. +* Ar acim redz tuoli, ar protu vēļ tuoļuok. +* Ar akminim zvaigžņu nu dabasu nanūgrauduosi. +* Ar dvašu vieja naatpyussi. +* Ar lizeiku klāva naizmiezsi. + +==== Ā ==== +* Ād kai lels veirs, struodoj kai čyguons pi zemnīka. +* Ād vīns cylvāks ūtra vysleidza kai zivs zivi azarā. + +==== B ==== +* Bez laika nasvīd izkapts kryumūs. +* Bez suopu nivīns nav pīdzims. +* Boda laikā i vylks dzērvinis losa. +* Bogotam i čorts bārnus auklej. + +==== C ==== +* Cyta acī smylgu redz, sovā bolkys naredz. +* Cyuka atēss golvu, pats kieneņš nadaliks kluot. + +==== Č ==== +* Čāpstynoj āzdams kai cyuka pi silis. +* Čyuska mat uodu, ni tykumu. +* Čorts čortam i kūrpis šyun. + +==== D ==== +* Da kuozu i akmiņs veļās. +* Daudzi aicynuots, moz izlaseits. +* Deveni omoti, dasmyts bods. +* Dīvs deve, Dīvs jēme. + +==== E ==== +* Ej ustobā ar volūdu, teirumā ar paleigu. +* Es gūvi aiz rogu tureišu, a cyti lai slauc. + +==== Ē ==== +* Ērce dzer ašņa, ļauns cylvāks spāka. + +==== G ==== +* Gaidi, cikom gaiļs ūlu izdēs. +* Gari moti, eiss pruots. +* Glums kai zuts. +* Gribi ar veizem dabasūs tikt. + +==== I ==== +* Izdūmuoja kai suņs pīktdīnis. +* Iz ūtra loba plota acs. + +==== Ī ==== +* Īluopeņ, verīs, kaida drēbeite! + +==== J ==== +* Jauna putra plepinej, vaca buoba sepinej. + +==== K ==== +* Ka dūd, to ēd, ka syt, to bēdz! +* Kai aizasauc, tai atsasauc. +* Kam meiksta mēle, tam peirāgs. +* Kam uobeļi, tam i moksuotuoji. + +==== L ==== +* Lai dūmoj zyrgs, jam lela golva. +* Lobs loba namaitoj. +* Lobuok ar gudru izgaisynuot na ar glupu atrast. + +==== M ==== +* Muotis meiluma da jiurys dziļuma, tāva meiluma da iuzu dziļuma. + +==== N ==== +* Na vysu to var ēst, kū acs redz. +* Nasvīd ar akmini valnam, tiks Dīvam. +* Našpļaun cytam acīs, pošam viejs īness. +* Našpļauņ vacā okā, daīs atsadzert. + +==== O ==== +* Ogruok beju jauns i šmuks, niu tikai šmuks. +* Okā zalta naatrassi. +* Oklajam daudzi kas pīsaruoda. + +==== P ==== +* Pa bolsam i volūda, pa veiram dareišona. +* Pa zyrgam i vazums. +* Plotys acs, šaurs vādars. +* Progoreigys acs vys ēst grib. + +==== R ==== +* Roskošs dyrsu kosa. +* Runoj, kai cymdūs! + +==== S ==== +* Sajādz tikpat cik vucyns nu gradusnīka. +* Sevkurs sovu uodu sorgoj. +* Svīd vāzu prīškā, prīškā i atrassi. + +==== Š ==== +* Švaks tys putyns, kas sovā pereklī diersna. + +==== T ==== +* Taisnam cylvākam taisna runa. +* Taisuos kai vysta iz diešonu. +* Teic olā, nateic mysā. +* Tys aiz taida i aizastuoj. +* Troks voi nu Rogovkys. + +==== U ==== +* Ubogam i kule par zvonu. +* Uobeļs nu uobeļneicas natuoļ kreit. + +==== Ū ==== +* Ūtram sova pruota naīliksi. + +==== V ==== +* Veirs kai ūzuls, pipss kai dīgs. +* Vīna vuška viekš, vysys daboj. +* Vuškys vylka nakūž. + +==== Z ==== +* Zam akmiņa maize naaug. + 6ju4fl870zboldnnwidc57t6ddfdbmb + + + + Pīters Jurceņš + 0 + 421 + + 29755 + 26300 + 2013-04-14T22:58:26Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Pīters Jurceņš''' (''Pēteris Jurciņš'', 17.12.1932 — 18.02.2004) — latgaļu ailinīks, rakstejs latgaļu i latvīšu volūduos. + +Dzims [[Nautrānu pogosts|Nautrānu]] pogosta Rogoukā. + +Latgaliskai - poezejis lasejums ''Vasala, muos, vasals, bruoļ! (2002). + +Aiļu golvonuo tematika - mīleiba dzymtajai Latgolai i juos ļaudim. Nazcik P. Jurceņa poemu komponātys. + +{{DEFAULTSORT:Jurceņš Pīters}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + cowa6gopy5tmv0wa7sjklmruitml03y + + + + Pīters Miglinīks + 0 + 422 + + 29760 + 17705 + 2013-04-14T22:59:37Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Pīters Miglinīks''' (1850 — 1883) — [[tautys varūņs]] i ceineituojs par sovu ļaužu tīseibom. Dzims dryumajā drukys aizlīguma i socialuos nataisneibys laikā, 1850. goda 13. decembrī [[Ludza|Ludzys apriņča]] [[Nautrānu pogosts|Nautrānu]] draudzis [[Miglinīki|Miglinīkūs]]. Kristeibā jam dūti treis vuordi – Pīters, Andrivs, Meikuls. Bez Pītera Andrivam i Agatai Miglinīkim beja vel treis bārni: Anna ir devuse [[Latgola]]i pašaizlīdzeigū jaunatnis i visys tautys audzynuotuoju, sabīdriskū darbinīku [[Fraņcs Kemps|Fraņci Kempu]]. P. Miglinīka bruoļs Andrivs ir aukliejs puorogri myrušū sabīdriskū darbinīku Boļeslavu i taipat puorogri myužeibā aizguojušū talanteigū jaunatnis audzynuotuoju prīsteri Dr. theol. Juoni Miglinīku.<ref>Broks, J. Cilvēka miesa ir dvēseles ietvars. No: Katoļu Baznīcas Vēstnesis, Nr. 1 (35)</ref> + +Nu 1865.–1867. godam P. Miglinīks ir guojs [[Rēzne|Rēzeknis]] piļsātys školā. Teicami vuicuos i školu beidz ar zalta medaļu. Škola tūreiz deva tīseibys byut par tautškoluotuoju, bet ituos tīseibys natika dūtys, jo jys beja katūļs i latvīts. Piec piļsātys školys beigšonys izavieleja maizis orūdam skrīvera dorbu. Nu 1868. goda da 1870. godam ir struoduojs par pogosta rakstvedi [[Zaļmuiža|Zaļmuižā]], bet piečuok [[Viļaka|Viļakā]] i [[Makašāni|Makašānūs]]. + +Dzeive i dorbs tautys vydā i poša gaišais pruots P. Miglinīkam skaidri paruoda sovys tautys naapskaužamū stuovūkli. Par tū ari jys sovūs dzejis tekstūs vaicoj: +<poem> +''Kod citi dzeivoj prīceigi'' +''Un laimeigi var byt,'' +''Kōpēc myusu tautai vysai'' +''Jōlej gaužas osoras?'' +</poem> +Sova eisā i vātrainā myuža laikā izaug par nauzpierkamu i nasamīrinuomu zemnīku aizstuovi. Centīnus piec taisneibys izsoka juo sacarātuos i tautā pazeistamuos dzīsmis: ''Bodu cīst mes pīroduši, mōkam treisēt soltumā'', ''Ej, ej, nabādoj, pōrdzeivōsim vysu''. Piec rakstura bejs akteivs i sabīdrisks cylvāks, partū vysod ir lyugts zemnīku gūdeibuos plašā apleicīnī. Juo muzikalitate, prasme spēlēt vijoli i gitaru, dzīsminīka talants, mudynojumi piec taisneibys i gora gaismys, patīseibys mīlesteiba i zemnīku aizstuoveiba pret puoresteibom - tautys vydā radeja jam legendara varūņa slavi. + +1880. godā bejs par zemnīku pusis aizstuovi tīsys pruovā pret Zaļmuižys muižnīku Paulinu–Rozenšildu. Tīsā zemnīki beja zaudietuoji i tyka sūdeiti. Kai atbilde iz nataisnū tīsys lāmumu Zaļmuižys apleicīnī izacāluos zemnīku namīri. Tyka nūdadzynuotys muižai pīdaruošuos ākys i nūdareiti cyti materialī zaudiejumi. Namīru organiziešonā tyka apvainūts i arestāts P. Miglinīks. Piec 11 Ludzys cītumā pavadeitajim mienešim, slyms ar tuberkulozi, P. Miglinīks beja atbreivuots. Tics vālī nu cītuma, jys īsiudzieja tīsā Paulinu–Rozenšildu. Itamā tīsys pruovā uzvarēja taisneiba i Paulins-Rozenšilds sajiema peļneitū sūdu. + +Piec vysa puordzeivuotuo pleirīts i tuberkuloze uotri sagruove Pītera Miglinīka veseleibu. Sovys trauksmainuos dzeivis piedejūs mienešus jys pavadeja slimeibys gultā tāva sātā i myra 1883. goda 17. fevralī. Iz juo izvadeišanu [[Rogovka|Rogovkys]] draudzis [[Desetnīki|Desetnīku]] kopūs īsarada miļzeigs ļaužu pulks nu tuvys i tuolys apkuortnis, aplīcynojūt sovu apbreinu i mīlesteibu cylvākam, kurš tautys apziņā īdadzynuoja myužeigū līsmu ceiņā par cylvāka tīseibom. + +P. Miglinīka pīmiņai Desetnīku kopūs uzstuodeits tielnīku [[B.Buls|B.Bula]] un [[A.Velikāns|A.Velikāna]] granitā veiduots pīminekļs. Nautrānu vydsškolā īkuortuots nalels muzejs, veļteits [[A. Jūrdžs|A. Jūrdža]] un P. Miglinīka i cytu rogovkīšu darbeibai. + +== Literaruo darbeiba == +Pīters Miglinīks saceriejs dzejūļus (dzīšmu tekstus), nu kurim sasaglobuojuse tik nalela daļa. amatā juo tekstus ir pīrakstejs [[A. Jūrdžs|A.Jūrdžs]]. Sovu sociali osūs i humoristiskūs dzejūļu dieļ ir saucams par latgalīšu dzejis klasiki. P.Miglinīks školā vuicejuos drukys aizlīguma laikā, partū sovus dzejūļus rakstejs kiriļicā (krīvu burtim). Nav zynuoms, cik eisti dzejūļu jys ir uzrakstejs, ilggadiejuo latgalīšu rokstu aizlīguma i poša autora puoragruos nuovis dieļ, leidz publiciešonai vāluokūs laikūs beja saglobuojušīs tikai daži manuskripti.<ref>Daugulis, K. Patiesības atmoda. No: Katōļu Dzeive, 5 , 1989, 34. – 35. lpp.</ref> + +Dzejūļus tematiski var īdalei itai: +* socialuos taisneibys mekliešona, +* pasauļa guojieju dzīšmis, +* patriotiskuo dzeja, +* humora i jautreibys dzīšmis, +* religiskis dzīšmis, +* tulkuojumi nu krīvu dzejnīkim. +P. MIglinīks ir publiciejs ari rokstus par Latgolys zemnīku gryutū stuovūkli i muižnīku nacylvieceibu tūreizejuos [[Pīterburga|Pīterpiļs]] liberaluo vierzīņa krīvu aveizēs.<ref>Rupaiņs, O. Pīters Miglinīks. V. Lōča izdevnīceiba, 1953, 43. - 44. lpp.</ref> + +Pīters Miglinīks lyka Latgolys latvīšu dzeivis pamatā šaidys idejis: +* ceineitīs par taisneibu, +* nakleist svešumā, bet palikt uzticeigim sovai dzimtinei, +* navys sovu zemi atstuot, bet atgyut atpakaļ tū, kas atjemts, +* steigtīs piec gora gaismys, +* staraveitīs piec saimnīciskys nūsastyprynuošonys, +* turātīs kūpā, byut vīnuotim, +* palikt pi sovim tykumim i tradicejom, +* styngri turātīs pi sovys ticeibys i volūdys, +* lītuot dzymtū volūdu, kurā jis pyrmais apzineigi raksteja ari dzejūļus, +* ticēt lobuokai tautas nuokūtnei.<ref>Rupaiņs, O. Pīters Miglinīks. V. Lōča izdevnīceiba, 1953, 12. – 13. lpp.</ref> + +== Atsaucis == +{{reflist}} + +{{DEFAULTSORT:Migliniks, Piters}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + qr99iu9u500r098qkmqdzpexfi95otr + + + + Pīters Strods + 0 + 423 + + 11673 + 10676 + 2011-03-24T21:37:12Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Pīters Strods''' (sagvuords Latgalāns, 1892—1960) — lingvists, literats, bazneicnīks. + +Dzims Varakļuonu pog. Lelūs Strodu solā. Pīrakstejs pjesys ''Aizdzereibys'' (1924), ''Dzeivis viļņūs'' (1926), taipoš religiska i filosofiska turīņa gruomotys (''Sv. Augustins i sv. Akvinys Toms'' (1936 i ct.). Bejs latgaļu ortografejis komisejis vadeituojs, daudzi rakstejs ap latgaļu ortografeju. Gruomotys ''Pareizraksteibys vuordineica'' (1933) autors. + +== Nūruodis i olūti == +Janina Kūrseite, Anna Stafecka "Latgola: volūda, literatura, folklors" ("Latgale: valoda, literatūra, folklora") Rēzne, 2003 + +{{DEFAULTSORT:Strods Pīters}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + tgp3vk2xedt4fwjmzr1tttc75974rx1 + + + + Raisteiba + 0 + 424 + + 31422 + 30183 + 2016-05-04T15:15:34Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Raisteiba''' (baļtīšu: ''attīstība''; anglīšu: ''development''; krīvu ''развитие'') — process, kura īmā subjekts, objekts ci pasaruodīņs teik leluoks, iņteņsivuoks, lobuoks, izsaceiguoks, a voi damāruotuoks jaunim apstuoklim. + +Raisteiba var byut, pīvadumam: +* sistemys voi strukturys papiļdeišona, palobuošona voi damāruošona jaunim aizprasejumim (''ļaudeibys raisteiba, ekonomikys raisteiba, regiona raisteiba''); +* dasamāruošona jaunim apstuoklim (''bārna runys raisteiba, organizma raisteiba''); +* pasaruodīņa māru lelynuošonuos (''naloba [[ījiukums|ījiukuma]] raisteiba', nūtikšonu raisteiba, naveseleibys raisteiba''); +i leidz. + +Cylvāka raisteibys procesu var padaleit trejuos sadordaļuos: +* fiziskuo raisteiba (auguma masys, garuma i tt. puormejis); +* socialuo raisteiba (socialuo statusa puormejis); +* psihosocialuo raisteiba (psihiskūs funkceju atsarasšona i formiešonuos). + +== Verīs taipoš == +* [[Tvereiguo raisteiba]] +* [[Regionaluo raisteiba]] + nx8hh2bnjg2ticivkzji5hewfbchgln + + + + Rasnupli + 0 + 425 + + 29754 + 22408 + 2013-04-14T22:58:18Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Rasnupli''' — sola [[Rēznis nūvods|Rēznis nūvoda]] [[Nautrānu pogosts|Nautrānu]] pogostā. + +Apleicīnē irā [[Opinku piliskolns]] i [[Opinku Valna ola]]. + +{{eiss rakstīņs}} + +[[Kategoreja:Nautrānu pogosts]] +[[Kategoreja:Rēznis nūvoda solys]] +[[Kategoreja:Latvejis solys]] + rbcx4tsfcppjnzvmd9jaeeodp5fs5sl + + + + Reiga + 0 + 426 + + 31354 + 28921 + 2016-03-15T12:41:07Z + + 84.211.18.31 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +|pasauka = Reiga +|mīsta_tips =Golvysmīsts +|atvaiga_pasauka = Riga daugava.jpg +|atvaiga_aprakstejums = Reigys panorama +|gerba_atvaigs = Coat of Arms of Riga.svg +|gerba_pasauka = Reigys gerbs +|karūga_atvaigs = Rigas Karogs.svg +|karūga_pasauka = Reigys karūgs +|koordinatu_zemislopa = Latveja +|latd = 56 |latm = 57 |lats = 30 |latNS = N +|longd = 24 |longm = 00 |longs = 06 |longEW = E +|pluots = 307,17 +|dzeivuotuoji_gods = 2009 +|dzeivuotuoju_skaits = 713 016<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/ISPV_Pasvaldibas_iedzivotaju_skaits.pdf Pošvolda dzeivuotuoju skaits]</ref> +|bīzeiba = 2 367,6 +|viesturiskuos_pasaukys = +|cytys_pasaukys = +|īstateits = 1201 +|mīsta_tīseibys = 1225 +|posta_iņdeksi = LV-10(01-84) +|teiklavīta = www.riga.lv +}} +[[Fails:Riga 1650.jpg|thumb|260px|Reigys panorama ap 1650 godu]] +'''Reiga''' — [[Latveja|Latvejis]] golvysmīsts pi [[Daugova|Daugovys]] ītakys Reigys leicī. Pats lelais finansu, industrejis i kulturys centrys Baļtejā i trešais pa lelumam mīsts (piec [[Pīterpiļs]] i Stokholma) [[Baļtejis jiura|Baļtejis jiurys]] regionā, zeimeiga jiuru ūsta. +Reigys viesturiskais centrys īīt UNESCO pasauļa kulturys puormaņtīņa sarokstā, i jis zeimeigs ar jugendstiļa (''Art Nouveau'') arhitekturu, kuramai navā leidzeigys vysā pasaulī.<ref>[http://whc.unesco.org/archive/advisory_body_evaluation/852.pdf Pasauļa puormaņtīņa saroksts]</ref> 2014 godā Reiga beja vīna nu [[Europa|Europys]] kulturys golvysmīstu.<ref>[http://europa.eu/rapid/pressReleasesAction.do?reference=IP/09/1324&format=HTML&aged=0&language=LV&guiLanguage=en Reiga byus Europys kulturys golvysmīsts]</ref> + +== Viesture == +XII godusymta beiguos aizasuoce pyrmuos misejis ar snāgu kristeit Baltejis dzeivuotuojus. Piec nazcik lūbeigu raudzejumu 1197–1199 godūs pi Daugovys beja sataiseita vuocīšu koloneja ar kleštori. Pyrmuo izbudavuotuo dzeivysvīta beja Ikškile. + +Oficialai Reigys mīstu īstateja 1201 godā veiskups Aļberts (Albert von Buxhöwden, 1165 — 1229), a 1225 godā Reiga jau dabuoja mīsta tīseibys. Nu 1255 gods Reiga beja arciveiskupa rezideņceja, 1282 godā mīsts tika par Hanzys savīneibys bīdri. Piec Livonejis dalejuma 1561 godā Reiga 20 godu beja napavaļdeiga, i viņ 1581 godā jū daškeire Obeju Tautu Republikai. Vāluok, nu 1621 leidz 1709 godam, Reiga beja Švedejis Kienestē, a nu 1710 goda leidz I pasauļa karam — Krīvejis imperejis sadorā. Leidz XIX godusymta beigom Reiga pa mozam izauga kai vīna nu vysuzeimeiguokūs Krīvejis imperejis jiuru ūstu, dzeivuotuoju skaits iz vyds 1850 i 1900 gods pasalelynuoja četrys reizis. 1900 godā puse Reigys dzeivuotuoju beja baltvuocīši, pa catūrtdalei krīvu i latvīšu. + +1918-1940 godūs Reiga beja napavaļdeiguos Latvejis Republikys golvysmīsts, 1940-1941 i 1944-1990 Latvejis PSR golvysmīsts, 1941–1944 godūs Reigā beja īstateits Trešuo Reiha Ostlandejis komisariata centraluo byutuve. Nu 1991 goda - otkon Latvejis Republikys golvysmīsts. + +== Geografeja == +Reigys mīsts irā Latvejis centralajā daļā, Reigys leiča dīnavydu molā, Vydslatvejis zamainis Reigys i Teireļu leidzonainēs. Reļjefs - smiļkšuojs, leidzonaine 1-10 metru augšuok jiuru leidzīņa. Viesturiskais centrys irā kairajā Daugovys molā, ap 10 km pyrma Daugovys ītakys Baļtejis jiurā. Mīsta rūbežūs nazcik azaru, poši leluokī - Keišazars Mežaparkā i Juglys azars mīsta pūstumreitūs. + +Mīsta pluots 307 km². + +=== Reļjefs === +Reigys mīsta teritoreja irā labtik zamai. Vydyskais augstums metri augšuok jiuru leidzīņa viņ 3-6 metri. Pats augstuokais punkts - Dzagužkolns (28 metri ajl.) + +=== Klimats === +Reigys klimatu i gaisu nūsoka Atlaņtejis okeana gaisa masys i ar jom atejūšī cikloni. Vosorys samārā vāsys i muokuļojis, a zīmys samārā syltys ar bīžom meikstūnem. Snīgs izkreit dekabra (zīmys) mienesī i izagloboj leidz marta mienešam. +228 dīnys augš Reigys byun Atlaņtejis okeana gaisa masys. Saulis speidiešonys maksimums byun juļa mieneša 22 dīnā – 56,4°, a minimums – tik 9,6° augšuok horizonta. Deļtuo ka gods muokuļojums zeimeigs, vosor saule speid vydyskai 54-57% dīnys, a zīmā tik 14-25%. Vydyskai saule par godu Reigā speid 1812 stuņdis - julī vydyskai 282 stuņdis, a dekabrī - 25 stuņdis. + +{{Panorama|Rigapanorama.JPG|1800px|Reigys panoramys vierīņs nu Latvejis Zineibu Akademejis}} + +== Administrativais dalejums == +[[Fails:Riga SPOT 1024.jpg|thumb|260px|Reigys satelita zemislopa]] +Leidz XIII godusymtam Reigys mīsts beja vacmīsta (Vacreigys) rūbežūs, kura pluots viņ nazcik kvadratkilometru. Leidz 1774 godam mīsta teritoreja pasalelynuoja nazcik reižu, aizjimdama jau lelumu niulenejuo mīsta centra dalis. 1728 godā Reigai daškiertys papyldomys teritorejis lobajā i kairajā Daugovys molā. 1768 godā Reigai daškierta Sorkondaugova, Zemitānu stacejis apleicīne, Kotlakolns i cytys teritorejis. + +1904 godā daškierts Mežaparks, Cierkužkolns (''Čiekurkalns''), Teika, Jugla, Iļgucīms i cytys vītys. + +1919 godā, leidza ar napavaļdeiguos Latvejis Republikys īstateišonu, Reigai daškiertys teritorejis niulenejuos Pūrsolys (''Purvciems''), Imantys, Zolitudis, Pleskodalis i daļa nu Zīpnīkkolna. + +1927 godā Reigai daškierta kūna vysa niulenejuos Puordaugovys teritoreja, tymā skaitā Boļderaja i Daugovgreiva, taipoš atseviškys teritorejis Daugovys lobajā molā (Vacmīlgruovs, Jauņcīms, daļa Pļavinīku i Mežcīma. + +I vēļ piec cytu mozuok zeimeigu teritoriskūs reformu Reigys teritoreja dabuoja niulejūs rūbežu. + +Reigys mīsts sadaleits sešūs teritoryskajūs padalīņūs: Centra, Kūrzemis i Pūstumu rajonūs, Latgolys, Vydzemis i Zemgalis prīškmīstūs. Sevkurs teritoryskais padalīņs tur sovu pošvoldu i tīsys sistemu. + +== Dzeivuotuoji == +Piec 1990 gods Reigys dzeivuotuoju skaits nūtaļ mazynuojuos deļ emigracejis. 2008 gods suokuos mīstā dzeivova ap 719 613 ļaužu, labtik mozuok kai 1990 godā, kod reidzuonu beja ap 912 000. Dzeivuotuoju skaits vysucīšuok pasamazynuoja, kod piec napavaļdeibys īstateišonys emigrēja daļa krīvu. + +Nu Reigys īstateišonys XIII godusymtā da XVI godusymta beigom mīstā dzeivova kūna vīni vuocīši. Jūs sataiseituo administraceja raudzeja izglobuot vuocysku solu baltu apleicē, aprūbežojūt latvīšu i līvu tīseibys apsadzeivuot mīstā. Reigai XVI-XIX godusymtūs, īteikūt Obeju Tautu Republikā, a vāluok - Krīvejis imperejis sadorā, vuocīši suoce pagaisynuot sovys privilegejis, koč i izlaiceja ekonomiskuos, politiskuos i religiskuos dzeivys kontroli mīstā. + +Etniskais i volūdyskais sadors Reigā vysod bejs raibs. Mīstā dzeivova vuocīši, žydi, krīvi, puoli, lītaunīki, ukraini, boltkrīvi, līvi, latvīši i cyti. XX godusymta pyrmajā pusē mīstā izagadeja nazcik tragisku viesturisku nūtikšonu, sasītu ar revoļucejom i pasauļa karim, i tys dyžan ītakuoja Reigys demografeju. XX godusymta ūtrajā pusē Reigā imigrēja daudzi krīvu i cytu SSRS tautu pīstuovu (ukraini, boltkrīvi). Itymā laikā latvīšu i krīvu procents Reigā tyka vīnaids (atsateikūši 42,3 i 41,7 procenti). + +== Zeimeigi ļauds == +Reigā dzymuši: +* Helmuts Baļders – hokejists +* Mihails Barišnikovs (Михаил Барышников) – baleta doncuotuojs +* Mihails Barklajs de Tolli (Михаил Барклай-де-Толли) – karvedis +* Vizma Belševica – ailineica +* Jesaja Berlins (Isaiah Berlin) – filosofs +* Valters Caps – iņženers +* Sergejs Eizenšteins (Сергей Эйзенштейн) – kinys režisors +* Vaira Vīke-Freiberga (Vaira Vīķe-Freiberga) – etnologe, psihologe, Latvejis Republikys prezidente (1999-2007) +* Ernests Gulbis (Ernests Gulbis) - tenisists +* Filips Halsmans (Philippe Halsman) – fotografs +* Nikolajs Hartmans (Nicolai Hartmann) – filosofs +* Mariss Jansons – dirigents +* Gidons Kremers – muziks +* Ješajahu Leibovics (Yeshayahu Leibowitz) – filosofs +* Volfgangs Lics (Wolfgang Lüth) – karinīks +* Vera Muhina (Вера Мухина) – skulptore +* Sandis Uozuoliņš (Sandis Ozoliņš, 1972-) – hokejists +* Raimonds Pauls (Raimonds Pauls) – komponists +* Arkadejs Raikins (Аркадий Райкин) – artists, satiriks +* Vilhelms Ostvalds (Wilhelm Ostwald) – kimiks +* Georgs Šveinfurts (Georg Schweinfurth) – botaniks +* Mihails Taļs (Михаил Таль) – šahmatnīks +* Mihails Zadornovs (Михаил Задорнов) - satiriks + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of Denmark.svg|25x15px|Daneja]] Olborgs, [[Daneja]] +| [[Fails:Flag of Italy.svg|25x15px|Italeja]] [[Florenceja]], [[Italeja]] +| [[Fails:Flag of the United Kingdom.svg|25x15px|Lelbritaneja]] Slauts, [[Lelbritaneja]] +| [[Fails:Flag of Kazakhstan.svg|25x15px|Kazaheja]] Almata, [[Kazaheja]] +| [[Fails:Flag of Spain.svg|25x15px|Spaneja]] Alikante, [[Spaneja]] +| [[Fails:Flag of France.svg|25x15px|Prancūzeja]] Kale, [[Prancūzeja]] +| [[Fails:Flag of the Netherlands.svg|25x15px|Nīderlandeja]] [[Amsterdams]], [[Nīderlandeja]] +| [[Fails:Flag of Australia.svg|25x15px|Australeja]] Kerns, [[Australeja]] +|- +| [[Fails:Flag of Kazakhstan.svg|25x15px|Kazaheja]] Astana, [[Kazaheja]] +| [[Fails:Flag of Ukraine.svg|25x15px|Ukraina]] [[Kijevs]], [[Ukraina]] +| [[Fails:Flag of France.svg|25x15px|Prancūzeja]] Bordo, [[Prancūzeja]] +| [[Fails:Flag of Japan.svg|25x15px|Japoneja]] Kobe, [[Japoneja]] +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Bremens, [[Vuoceja]] +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] [[Moskva]], [[Krīveja]] +| [[Fails:Flag of the United States.svg|25x15px|Amerikys Saškierstuos Vaļsteibys]] Dalass, [[Amerikys Saškierstuos Vaļsteibys|ASV]] +| [[Fails:Flag of Belarus.svg|25x15px|Boltkrīveja]] [[Minskys]], [[Boltkrīveja]] +|- +| [[Fails:Flag of Sweden.svg|25x15px|Švedeja]] Norčepings, [[Švedeja]] +| [[Fails:Flag of the People's Republic of China.svg|25x15px|Kineja]] [[Pekins]], [[Kineja]]''' +| [[Fails:Flag of Finland.svg|25x15px|Suomeja]] Poris, [[Suomeja]] +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Rostoks, [[Vuoceja]] +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] [[Pīterpiļs]], [[Krīveja]] +| [[Fails:Flag of Chile.svg|25x15px|Čile]] [[Santjago (Čile)|Santjags]], [[Čile]] +| [[Fails:Flag of Sweden.svg|25x15px|Švedeja]] [[Stokholmys]], [[Švedeja]] +| [[Fails:Flag of the People's Republic of China.svg|25x15px|Kineja]] Sudžou, [[Kineja]] +|- +| [[Fails:Flag of Lithuania.svg|25x15px|Lītova]] [[Viļne]], [[Lītova]] +| [[Fails:Flag of Estonia.svg|25x15px|Igauneja]] [[Talins]], [[Igauneja]] +| [[Fails:Flag of the United States.svg|25x15px|Amerikys Saškierstuos Vaļsteibys]] Guams, [[Amerikys Saškierstuos Vaļsteibys|ASV]] +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] [[Varšova]], [[Puoleja]] +| [[Fails:Flag of the United States.svg|25x15px|Amerikys Saškierstuos Vaļsteibys]] Providens, [[Amerikys Saškierstuos Vaļsteibys|ASV]] +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Kīlis, [[Vuoceja]] +| +|} + +== Galereja == +<gallery> +File:Riian vanhakaupunki.jpg|Vacreiga - Reigys vacmīsts +File:Streets of Riga.jpg|Ūļneica vacmīstā +File:Rigas pils.jpg|Reigys piļs +File:Riga JugendstilKopf1.jpg|Jugendstiļa arhitektura +File:Riga Bridge by Twilight.jpg|Daugovys vierīņs +File:Riga ortseingang.jpg|Reigys mīsta zeime +File:Riga port.jpg|Reigys jiuru ūsta +File:Riga Airport.JPG|Reigys gaisūsta +</gallery> + +== Nūruodis i olūti == +{{nūruodis}} + + +{{Latvejis mīsti}} +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Reiga| ]] + 7w89zamiri1e2brx2h215spjfzpg9sz + + + + Reigys — Daugpiļs dzeļžaceļš + 0 + 427 + + + 6075 + 6074 + 2011-03-19T13:21:05Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Dzeļžaceļš Reiga — Daugpiļs]] + 3afv22s4s2p7664wzb4b7htonr3wysy + + + + Reigys—Daugpiļs dzeļžaceļš + 0 + 428 + + + 6078 + 6077 + 2011-03-19T13:21:05Z + + SPQRobin + 2 + + + 2 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Dzeļžaceļš Reiga — Daugpiļs]] + 3afv22s4s2p7664wzb4b7htonr3wysy + + + + Reitulatvejis zamaine + 0 + 429 + + 31432 + 28323 + 2016-05-08T14:30:07Z + + Zygimantus + 3236 + + +image + wikitext + text/x-wiki + [[Fails:Ainava no Krustakroga skatutorņa.jpg|thumb]] +'''Reitulatvejis zamaine''' ({{Vol-lv|Austrumlatvijas zemiene}}) — reļjefa īleikums, apjamūšs [[Latgola|Latgolys]] vokoru daļu i [[Sieleja|Sieleju]], īīt Krystapiļs, Leivuona, Preiļu, Varakļuonu, [[Modyunis nūvods|Modyunis]], [[Rēznis nūvods|Rēznis]], Ruguoju, [[Bolvu nūvods|Bolvu]] i Olyuksnys nūvodu teritorejuos. + +Reitulatvejis zamaine sasadora nu nazkodejuos laduoju vogys. Zemisvierss ite pa lelumam lāvs, iz [[Daugova|Daugovys]] i [[Lubuons|Lubuona]] pusi laižās lāva pīslaite. Tī, kur jei teik vysā guliniska, pasadarejs lels pūru i peisu apvyds ar Teiču, Lelū, Kņovu i. ct. pūrim. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latgolys geografeja]] +[[Kategoreja:Latgolys doba]] + iq775fpyblgn8tvr12l23fwqsz9vsy0 + + + + Religeja Latgolā + 0 + 430 + + 11680 + 10681 + 2011-03-24T21:39:32Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + == Katuoļu Bazneica Latgolā == +* Katuoleibys vītejuos sovpateibys Latgolā +* Latgolys katuoļu bazneicys viesture +* Latgolys katuoļu bazneickungi +* Aglyuna + +== Bazneicys kaleņders == +* Cylojamuos katuoļu svieteibu dīnys + +== Zeimeigi ļauds == +* Latgolys religiskajā dzeivē zeimeigi ļauds + +== Cytys Bazneicys i dīvestis Latgolā == +* Staroveri +* Pravoslavi +* Ļutari +* Cyti + +== Senejūs latgaļu dīveste (religeja) == +* Senejūs latgaļu religiskuo sistema i mitologeja +* Dīvs +* Laima +* Dobys personificiejumi +* Senejūs latgaļu svieteibys + +== Latgolys bazneicys i kapleicys == +=== Katuoļu bazneicys i kapleicys === +* [[Latgolys katuoļu bazneicys i kapleicys#Latgolys katuo.C4.BCu bazneicys pa pasaukai|Latgolys katuoļu bazneicys pa pasaukai]] + +=== Staroveru cierkvys (bazneicys) i kapleicys === +* [[Latgolys staroveru cierkvys i kapleicys#Latgolys staroveru cierkvys .28cierkvys.29 i kapleicys pa pasaukai|Latgolys staroveru cierkvys pa pasaukai]] + +=== Pravoslavu cierkvys (bazneicys) i kapleicys === +* [[Latgolys pravoslavu cierkvys i kapleicys#Latgolys pravoslavu bazneicys .28cierkvys.29 i kapleicys pa pasaukai|Latgolys pravoslavu cierkvys pa pasaukai]] + +=== Ļutaru bazneicys i kapleicys === +* [[Latgolys ļutaru bazneicys i kapleicys#Latgolys .C4.BCutaru bazneicys i kapleicys pa pasaukai|Latgolys ļutaru bazneicys pa pasaukai]] + +=== Cytys bazneicys i dīvanomi === +* [[Cytu religeju dīvanomi Latgolā#Cytu religeju d.C4.ABvanomi Latgol.C4.81 pa pasaukai|Cytu religeju dīvanomi Latgolā pa pasaukai]] + +== Kleštori i plebanejis == +== Latgolys ceļamolu krysti == +* [[Latgolys ceļamolu krysti#Latgolys ce.C4.BCamolu krysti pa m.C4.ABsta voi solys pasaukai|Latgolys ceļamolu krysti pa mīsta voi solys pasaukai]] + +== Senejūs latgalīšu svietneicys == +* [[Senejūs latgalīšu svietneicys#Senej.C5.ABs latgal.C4.AB.C5.A1u svietneicys pa pasaukai|Senejūs latgalīšu svietneicys pa pasaukai]] + hzm0jwhum9dfqamu9zclj0v5d1bfl62 + + + + Ribinišku nūvods + 0 + 431 + + 28324 + 23294 + 2013-03-07T19:33:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2106159]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ribinišku nūvods +| zemislopa = Riebiņu novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Riebiņu novads COA.png +| gerba_pasauka = Ribinišku nūvoda gerbs +| karūga_atvaigs = LVA Riebiņu novads flag.png +| karūga_pasauka = Ribinišku nūvoda karūgs +| centrys = Ribiniški +| pluots = 631,3 +| dzeivuotuoju_skaits = 6 331 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 10,03 +| īstateits = 2004 +| teritoriskais_dalejums = [[Ribinišku pogosts]] <br /> [[Rušyuna pogosts]] <br /> [[Solujuoņu pogosts]] <br /> [[Seiļukolna pogosts]] <br /> [[Stabuļnīku pogosts]] <br /> [[Vydsmuižys pogosts]] +| pakaļpīņu_centri = Aglyunys staceja <br /> Ribiniški <br /> Sylajuoni <br /> Seiļukolns <br /> Stabulnīki <br /> Vydsmuiža +| teiklavīta = www.riebini.lv +}} + +'''Ribinišku nūvods''' irā pošvolds [[Latgola|Latgolys]] vydīnē, pošvolda centrys - [[Ribiniški]]. Nūvods tur rūbežu ar [[Aglyunys nūvods|Aglyunys]], [[Daugpiļs nūvods|Daugpiļs]], [[Leivuona nūvods|Leivuona]], [[Krystapiļs nūvods|Krystapiļs]], [[Preiļu nūvods|Preiļu]], [[Rēznis nūvods|Rēznis]], [[Varakļuonu nūvods|Varakļuonu]] i [[Viļānu nūvods|Viļānu]] nūvodīm. Ribinišku nūvods irā eistyns solys pošvolds, nūvodā navā nivīna mīsta. + +Ribiniškūs, leluokojā nūvoda solā, dzeivoj 938 cylvāku. Vysuvaira nūvoda dzeivuotuoji dora zemsaimesteibu. Taipoš nūvodam irā īdeveiga transporta infrastruktura - dīnavydūs irā Daugpiļs - Rēznis (Varšovys - Pīterpiļs) dzeļžaceļš i škārsvaļsteigais lelceļš E262 (Latvejā A13), taipoš vaļsteibys zeimeibys celi P58 i P62. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Ribinišku nūvods| ]] + e7iiperd794d7uari6ju7uge1prr86o + + + + Roberts Ancāns + 0 + 432 + + 28325 + 19527 + 2013-03-07T19:33:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2576392]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Roberts Ancāns''' (1919.g. 11.nov. — 1982.g. 1.janv.) — beja [[Latvīšu legions|Latvīšu legiona]] viersnīks, sajēmis [[Dzeļža krysta Bruninīka krysts|Dzeļža krysta Bruninīka krysta]] ordeni. + +== Biografeja == + +[[Fails:Roberts_Ancans.jpg|thumb|220px|right|Roberts Ancāns]] + +Roberts Ancāns pīdzyma [[1919]].goda 11.nojabrī Latvejā, [[Ludzys apleiciņs|Ludzys apleiciņa]] [[Tiļžys pogosts|Tiļžys pogostā]]. Vuicejīs bruoļu Skryndu pamatškolā i vīnu godu [[Aglyunys nūvods|Aglyunys]] gimnazejā. Tuoļuok vuicejās [[Kuorsova|Kuorsovys]] piļsāta gimnazejā, kū pabeidze [[1938]].godā. + +Tuo poša goda rudinī suoca vuiceitīs [[Latvejis universitate]]s saimesteibys i tīseibu fakuļtetā, saimesteibys (lv:tautsaimniecības) nūdaļā. + +[[1939]].goda rudinī labvaleigi īsastuoja [[Latvejis armija|Latvejis armijā]], cereibā byut kara jurists. Itū nūdūmu iztrauceja Latvejis okupaceja [[1940]].godā. + +[[1941]].godā, kad suocās [[Trešais reihs|Trešuo reiha]] i [[PSRS]] vaidi, labvaleigi pīsateice latvīšu brūņuotuo spāku vydā, kab ceineitūs pret boļševikim. [[1941]].goda oktobrī 16.Zemgales policejas bataljona vydā beja nūsyuteits iz austrumu fronti kai vada seržants. + +1941./1942.goda zīmā pi Holmas ([[Veļikaja]]s krostā) karaveirus apstuoja sorkonuo armeja i jis beja pyrmū reizi sarānuots. Piec izdzeidēšonys beja nūsyuteits iz viersnīku kursim, i piec tūs beigom jis byudams latvīšu legiona leitnants pīsadaleja ceiņuos pi [[Leningrada|Leningradys]], [[Volhova|Volhovys]] purvūs, pi [[Ostrova|Ostrovys]] i Kurzemis kotlā. Vairuok reižu beja sarānuots i sajēme ordiņus. + +[[1944]].goda zīmyssvātku ceiņu laikā Kurzemis kotlā, Ancāna vadeituo [[19. īrūču SS grenadīru divizeja|19.divizejis]] ceiņu škola, pi [[Lestene|Lestenis]] stacejas treis dīnu apstuojuma ceiņuos ar kājnīku īrūčim izneicynova 14 padūmu tankus. Par ituos ceinis varūneibu Robertu Ancānu [[1945]].goda janvarī apdovanoja ar vuocu armejis vysaugstū militarū ordini - Bruninīka pakuopis dzeļža krystu. + +1945.goda pebralī organizejūt Latvejis tamlaiceiguo vaļdeibu ([[Latvejis nacionaluo komiteja]]) kai vīnu nu delegatim, puorstuovūt legiona 19.divizeju, izaraudzeja arī Robertu Ancānu. Generaļs [[Rudolfs Bangerskis]] jū īcēle par vaļdeibys piļs komandantu. Vaļdeibys byutuve beja paradzāta [[Ēduolis piļs|Ēduolis pilī]]. + +Sastuo Kurzemes lelojā kuovē (1945.goda marts/apreļs), pi [[Blīdene|Blīdenis]] dzeļžaceļa stacejis Ancānu astūtū reizi sarānova. Jis beja nūsyuteits iz [[Līpuoja|Līpuojis]] vaidu slimneicu. 1945.goda 8.maijā ar vuocu minu lellaivu beja izvasts iz Vuoceju. Vaidus beidze kai viersleitnants. + +== Dzeive piec vaidim == +Vuocejā nu suoku dzeivova Bādverishofenē (Badwörishofen), tod Neištatē (Neustadt) i beidzūt [[Augsburga|Augsburgā]]. Neištatē bejis administrators IRO (International Refugee Organization- Vydtautiskuo bāgaļu organizacejā) vaidu invalidu vuiceibys centrā, kur omotus vuicejuos vaira nakai 300 [[Latvīši|latvīšu]] i [[Igauni|igauņu]] vaidu invalidu. [[1950]].godā puorsacēle iz Augsburgu, kur piļdeja Latvīšu komitejis prīškinīka i latvīšu tautys školys (pamatškolys un gimnazejis) riednīka daguojumus. [[1955]].godā [[Hamburga|Hamburgā]] atsajaunoja Latvejis vaidu invalidu apvīneibys dorbs, Ancānu ībolsova par tuos apvīneibys prīškinīku, itū omotu jis piļdeja 15 godus. + +1955.godā brauca iz [[ASV]] i dzeivova [[Ņujorka|Ņujorkā]]. Tur struoduoja firmā ''Otis Elevators'' kai tehniskais zeimuotuojs. Aktivi pīsadaleja vaidu veteranu atpyutys centra ''Rota'' i Bruoļu kopu stateibā. + +Roberts Ancāns nūmira 1982.goda 1.janvarī Ņujorkā.<ref>''Lacuaniai-70''. Red. J.Kapustāns. Rīga.1999. </ref> Apbedeits Ņujorkys štatā, Katskiļu bruoļu kapūs. + +Roberts Ancāns beja studentu korporacejas [[Lacuania]] (nu 1938.g. febraļa) bīdrs. + +== Nūruodis == + +{{Nūruodis}} + +{{DEFAULTSORT:Ancans, Roberts}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] +[[Kategoreja:Latvīšu legiona viersnīki]] +[[Kategoreja:Latgalīši emigracejā]] + 80wd08ougpvd69wahatzojcvddnrn25 + + + + Rogoukys pamatškola + 0 + 433 + + 11683 + 10684 + 2011-03-24T21:40:32Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Rogoukys pamatškola''' — pamatleidzīņa vuiceibys īstots [[Nautrānu pogosts|Nautrānu]] pogosta [[Rogouka|Rogoukā]] XIX i XX gs. Piec puorsaukta par [[Nautrānu pamatškola|Nautrānu pamatškolu]] i daškierta [[Nautrānu vydsškola]]i. + +Rogoukys pamaškolā vuicejušīs: +* [[Fraņcs Kemps|Kemps Fraņcs]] - publicists, ailinīks, politiks, vīns nu pošu zeimeiguokūs lagalīšu ļaudyskūs dareituoju +* [[Ontons Zvīdris (muokslinīks, literats)|Ontons Zvīdris]] - muokslinīks, ailinīks, dramaturgs. + rm40qzmgeeh2tz4rg5tmd37ao9ibw5v + + + + Roksts + 0 + 434 + + 12453 + 10685 + 2011-03-28T18:26:16Z + + DEagleBot + 35 + + + Robot: Changing template: Disambig + wikitext + text/x-wiki + Vuords '''roksts''' tur nazcik zeimeibu: +* [[Roksts (raksteiba)|Roksts]] — raksteiba; +* [[Roksts (musturs)|Roksts]] — musturs; +* [[Roksts (lauleibys registraceja)|Roksts]] — lauleibys registraceja. + +{{Zeimeibu škiršona}} + m6y4rf23uzzv72491s58sfiyawp5yxn + + + + Roksts (raksteiba) + 0 + 435 + + 28326 + 26906 + 2013-03-07T19:34:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 83 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8192]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Roksts''' ({{Vol-lv|rakstība}}; {{Vol-en|script, writing, writing system}}; {{Vol-ru|письменность, письмо}}) — informacejis aizraksteišonys aba fiksiešonys grafiskuo sistema, vīna nu cylvāka [[volūda|volūdys]] byusmis formu. + +Vuorda ''roksts'' cytys zeimeibys: [[Roksts]] + +== Cylvāka volūdys rokstu tipi == +* '''[[Ideografiskais roksts|Ideografiskais]]''' aba '''[[piktografiskais roksts]]''' — vīna roksta zeime dasīta pi zynoma [[Sapratīņs|sapratīņa]]. +* '''[[Fonoideografiskais roksts]]''' — vīna roksta zeime dasīta pi jāga i pi skaniejuma. +** '''[[Logografiskais roksts]]''' — vīna roksta zeime dasīta pi zynoma vuorda. +** '''[[Morfemiskais roksts]]''' — vīna roksta zeime dasīta pi zynomys [[Morfema|morfemys]] (pīv., [[kinīšu raksteiba]]). +* '''[[Fonetiskais roksts]]''' — vīna roksta zeime dasīta pi zynoma skaniejuma: +** '''[[Baļsīņu roksts|baļsīņu]]''' aba '''[[silabiskais roksts]]''' — vīna roksta zeime dasīta pi zynoma baļsīņa: +*** '''parostais baļsīņu roksts''' — [[Baļsīņs|baļsīņus]] ar vīnaidu [[Leidzaskaņs|leidzaskani]], a izškireigim [[Pošskaņs|pošskanim]] apzeimoj vysā izškireigys roksta zeimis (pīv., japanīšu [[kana]]); +*** '''[[abugida]]''' — baļsīņus ar vīnaidu leidzaskani, a izškireigim pošskanim apzeimoj rokstu zeimis, kurys darynuotys iz vīnys tuos pošys roksta zeimis pamata, cik nacik puormejūt formu (pīv., [[etiopīšu roksts]]) voi dalīkūt papyldomys zeimeitis (pīv., [[iņdīšu roksts]]). +** '''[[Leidzaskaņu roksts|Leidzaskaņu]]''' aba '''[[Konsonaņtiskais roksts|konsonaņtiskais]] ''', aba '''[[kvazialfabetiskais roksts]])''' — vīna roksta zeime dasīta pi [[Leidzaskaņs|leidzaskaņa]], a [[Pošskaņs|pošskani]] vysā naapzeimojami. Taidys roksta sistemys raisteidamuos parostai pasapylda ar [[Vokaliziejums|vokaliziejumu]] sistemom. +** '''[[Leidzaskaņu i pošskaņu roksts|Leidzaskaņu i pošskaņu]]''' aba '''[[konsonaņtiskai vokaliskais roksts]]''' — vīna roksta zeime (leidzaskaņs) var byut dasīta i pi [[Pošskaņs|pošskaņu]], i pi [[Leidzaskaņs|leidzaskaņu]], i vysa raksteiba pamatojās iz priņcipa "vīna [[grafema]] (roksta zeime) atsateik vīnai [[Fonema|fonemai]]". + +== Roksta atmejis pa ciļmis regionam == +[[Fails:WritingSystemsOfTheWorld.png|thumb|500px]] + +=== Tiveimūs Reitu i Vydsjiuru regiona senejuo raksteiba === +* [[Senejūs egiptīšu roksts]] +** [[Meroitu roksts]] +* [[Kleiņroksts]] +** [[Šumeru volūda|Šumeru roksts]] +** [[Akadīšu volūda|Akadīšu roksts]] +** [[Elamīšu roksts]] +** [[Huritīšu roksts]] +** [[Urartīšu roksts]] +** [[Hetu hieroglifi|Hetu roksts]] +** [[Senejūs persīšu volūda|Senejūs persīšu]] +* [[Elamīšu volūda|Elamīšu hieroglifika]] +* [[Luvīšu volūda|Luvīšu]] +* [[Kretys roksts]] i juo priecguojieji — [[Linejroksts]] А, B, [[Kiprīšu-minīšu письмо]], [[kiprīšu roksts]] + +=== Semitu (skonu) roksts i juo atlasynuojumi (atskaitūt greku rokstu) === +* [[Biblejis roksts]] +* [[Protokanaanīšu roksts]] +* [[Protosinajīšu roksts]] +* [[Ugarīšu roksts]] (kleiņroksts) +* [[Finikīšu roksts]] +** [[Iberīšu roksts]] +** [[Senejūs libīšu roksts]] (numidīšu) +*** Tifinaga roksts +*** [[Turdetana roksts]] +*** naatšifrātais guaņču roksts +** Kartagīšu roksts +* [[Aramīšu roksts]] +** [[Žydu alfanets]] (kvadratiskais) +** Samarīšu alfabets +** Sirīšu roksts (setra, estrangela, nestorianīšu i ct.) +** [[Arabu alfabets]] +*** [[Džavu roksts]] — [[Malaizejā]] i [[Iņdonezejā]] +** [[Uigurīšu roksts]] +*** [[Mongolīšu roksts]] +* [[Dīnavydarabu roksts]] +** [[Etiopīšu roksts]] +* [[Mozazejis alfabeti]] + +==== Semitoidūs rokstu ītakā izacālušys raksteibys sistemys ==== +* [[Orhona rūnys]] (tjurku) +** [[Bulgaru rūnys]] +** [[Vengru rūnys]] +** [[Isiku rūnys]] +* [[Tanys roksts]] (gabuli tana) ([[maļdivu volūda]]i, nu 17 gs., arabu ītakā) + +=== Greku alfabets i iz juo pamata atsarodušī alfabeti === +* [[Greku alfabets]] +* [[Italīšu alfabeti]] +** [[Etrusku alfabets]] +** [[Latiņu alfabets]] +* [[Koptu roksts]] +* [[Gotu roksts]] +* [[Kirilica]] + +==== Grekoidūs rokstu ītakā atsarosušuos raksteibys ==== +* [[Glagolica]] +* [[Rūnys]] (germanīšu) +* [[Armenīšu alfabets]] +* [[Gruzinu alfabets]] +* [[Agvanīšu roksts]] + +=== Iņdīšu roksts (baļsīņroksts) === +* [[Kharošthu roksts]] +* [[Brahmu roksts]] +* [[Devanagaru roksts]] +* [[Bengalīšu alfab7ets]] +* [[Tibetīšu roksts]] +* [[Toharīšu roksts]] +* [[Monīšu roksts]] +* [[Birmīšu roksts]] +* [[Taizemīšu roksts]] +* [[Khmeru roksts]] +* [[Laosa roksts]] +* [[Kavu roksts]] (senejūs javīšu roksts) +* [[Tangalīšu roksts]] + +=== Kinīšu roksts i juo atlasynuojumi === +* [[Kinīšu roksts]] +* [[Japanīšu volūda|Japanīšu baļsīņroksts]] +** [[Hiragana]] +** [[Katakana]] +* [[Čžurčžeņa roksts]] +* [[Kidaņa roksts]] +* [[Tanguta roksts]] +* [[Čžuaņa roksts]] + +* Korejīšu roksts ([[Hangiļs]]) + +=== Cytys senejuos i Vydslaiku raksteibys === +* [[Maju roksts]] +* Cuaņa roksts ([[i volūdys|i volūdom]] [[Kinejā]]) +* [[Dongbys roksts]] (nasi volūdai Kinejā) +* [[Ogama roksts]] +* Senejūs permīšu roksts ([[аburs]]) + +=== XVIII-XX godusymtūs izacālušī roksti === +Itūs rokstus parostai radeja misioneri, pošys raksteišonys idejis ītakojami. + +==== Azeja ==== +* Pahau i Polardys roksti [[mjao-jao volūdys|mjao-jao volūdom]] +* [[Varang-kšitu roksts]] ho volūdai ([[Mundys volūdys|mundys volūdu grupa]]) [[Iņdejā]] +* Tenevilis ideografiskais roksts [[čukču volūda]]i + +==== Afrika ==== +* [[Nko roksts]] (nu 1949 g. [[mandenīšu volūdom]] [[Gvinejā]] i [[Malūs]]) +* [[Basys roksts]] (nu XX suoku) +* [[Vai roksts]] (nu XIX gs. 20-tūs godu) +* [[Kpelis roksts]] (XX gs. 30-tajūs i 40-tajūs godūs) +* [[Lomys roksts]] (XX gs. 30-tajūs i 40-tajūs godūs [[Libereja|Liberejā]] +* [[Kikaui roksts]] aba meņdis roksts (XX gs. 20-tajūs - 40-tajūs godūs [[Meņdis volūda|meņdis volūdai]]) [[SjeraleonēSjeraleonē]] +* [[Bamuma roksts]] (nu 1896 da XX gs. 50-tūs godu [[Kamerunā]] +* [[Osmanis roksts]] ([[somalīšu volūdai]]) +* [[Mandombis roksts]] (nu 1978 g. [[Angolā]], [[Kongys Republikа|Kongys Republikā]] i [[Kongys Demokratiskuo Republika|Kongys Demokratiskajā Republikā]] + +==== Amerika ==== +* [[Irokezu roksts]] +* [[Kanadīšu baļsīņroksts]] ([[kri volūdys|kri]], [[eskimosu volūdys|eskimosu]], [[odžibvis volūda|odžibvis]] i ct. volūdom) + +=== Muoksleigūs volūdu raksteibys === +* [[Tengvara roksts]] +* [[Itkuila roksts]] + +=== [[Naatšifrātī roksti]] === +* [[Rongo-rongo]] +* [[Festa diskys]] +* [[Indys līknis roksts]] (protoiņdīšu aba Harapa roksts) +i ct. + +{{DEFAULTSORT:Roksts (raksteiba)}} + +[[Kategoreja:Roksts| ]] + 1y3yfv1opv9ad5rouug9loat439r2vc + + + + Romas Kalanta + 0 + 436 + + 31284 + 28327 + 2016-02-01T11:58:33Z + + Papuass + 219 + + + wikitext + text/x-wiki + [[Fails:Romas Kalanta. Atminimo akmuo.JPG|thumb|Pīminieklis Kaunā]] +'''Roms Kalanta''' ({{Vol-lt|Romas Kalanta}}; [[1953]] pebraļa m. 22 dīna [[Aleits|Aleitā]] — [[1972]] maja m. 14 dīna [[Kaune|Kaunē]]) — lītaunīku disidents, kurs izpiļdeja pošsadegšonys aktu, protestādams pret SSRS vaļdi. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Lītovys ļauds]] +[[Kategoreja:Disidenti]] + huctwo99wwq7679mihcrpo4o93a3dxx + + + + Rubyns + 0 + 437 + + 30160 + 30157 + 2013-11-30T19:03:06Z + + Midnight Gambler + 2123 + + + new spelling? or what? explain please + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Rubyns +| atvaiga_pasauka = Black Grouse Nationalpark Bayerischer Wald.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Putni ''(Aves)'' +| aiļa = Vystini putni ''(Galliformes)'' +| saime = Rubynu''(Tetraonidae)'' +| giņts = Rubyni ''(Tetrao)'' +| škira = Rubyns ''(Tetrao tetrix)'' +| ziniskuo_pasauka = Tetrao tetrix +| zemislopys_atvaigs = Lyrurus tetrix distribution.png +| zemislopys_aprakstejums = Rubynu paplateiba pasaulī +}} +'''Rubyns''' ({{Vol-la|Tetrao tetrix}}) — vystiņu (Tetraonidae) ailis putyns, kurs pa lelumam dzeivoj [[Europa|Europys]] i [[Azeja|Azejis]] skujukūku [[Mežs|mežu]] jūstā. [[Latgola|Latgolā]] paplateits gon cieški, tok jū skaits mazynojās. + +== Izavierīņs == +Rubyns samārā ar cytim putynim irā lels i masivs, lelu gnēzi. [[Tāvaiņs|Tāvaini]] leluoki kai muotainis, garums dasnēdz 49-58 cm, spuornu paplēsums da 80cm, svors da 1,4 kg. [[Muotaine|Muotaiņu]] garums da 45 cm, svors da 1 kg. Taipoš cīši izškireigi obeju kuortu kruosuojums. Tāvainim spolvuojums malns ar metalisku speidīni, tik puor spuornu bolta jūsta. Seviški izaškir sorkonī uzači. Tāvaiņu astei izcylys suonu spolvys. Rubynu muotainis na tik spūdrys - spolvuojuma kruosuojums ryusaini palāks, vīngabaleigai raibs. Gryuts izaškirt nu medņu muotainem, kurys irā leluokys pa augstumam. Jaunī rubyni taipoš leidzeigi muotainem. + +== Paplateiba == +[[Fails:Tétras lyre MHNT.jpg|left|thumb|150px|Rubyna ūla]] +Dzeivoj vysūs [[Eurazeja|Eurazejis]] pūstumūs i [[Centralā Europa|Centralajuo Europā]], [[Krīveja|Krīvejā]] da Tuoleimim Reitim. Paplateibys areala vokoru rūbežs irā Vokoru Europa ([[Lelbritaneja|Lelbretaneja]], [[Beļgeja]], [[Alpi|Alpu kolni]]), tok Europys rubynu populaceja irā fragemntara, partū ka labvieleigi [[Biotops|biotopi]] lelā mārā irā nycynuoti i [[Cylvāks|cylvāku]] darbeibys puormeiti. + +== Latgolā == +Rubyns paplateits vysā Latgolā, pīdareigūs biotopūs gona parosts dzeivuotuojs. Pādejū treisdesmit godūs<ref>[http://www.ornitofaunistika.com/lvp/lvp_tetrix.htm Rubenis — Latvijas putni]</ref> sasamazynoj jū skaits. Seviški zeimeigys rubynu dzeivuošonys vītys irā Teiču pūrā (Vokoru Latgolā) i Vacumu mežūs (Pūstumu Latgolā). Rubyni Latgolā pīdar nominalajai zamškirai T. t. tetrix. Škira īraksteita Baltejis jiurys regiona Sorkonajuo gruomotā i Latvejis Sorkonuos gruomotys 3. kategorejā. + +== Nūruodis i olūti == +{{nūruodis}} + +{{Commonscat|Lyrurus tetrix|Rubyns}} + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + bzx95msqz1q5bb7s9i2hrub1mabj315 + + + + Rudiņa mieneša 7 dīna + 0 + 438 + + 28329 + 25084 + 2013-03-07T19:34:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 146 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2852]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Rudiņa mieneša 7 dīna''' irā 250 goda dīna pa Gregora kaleņderam (garajuo godā - 251 dīna). Nu ituos dīnys leidz goda golam palīk 115 dīnys. + +== Svieteibu i pīminis dīnys == +* [[Fails:Flag of Brazil.svg|25x15px|Brazileja]] [[Brazileja|Brazilejā]] Napavaļdeibys dīna. + +=== Katuoļu svātū dīnys === +Svātuo Regina - jaunive i mūcekle. + +== Vuorda dīnys == +Ermins - Regina + +== Nūtikšonys == +=== Latgolā === +* 1698 - Pasvieteita Indreicys katuoļu bazneica, vacuokuo da šam zynomuo baroka laika kūka bazneica;<ref>http://latgalesdati.du.lv/9 Latgolys dati</ref> +* 1933 - Dagdā izaceļ guņsnalaime, kuramā nūdag 18 sātys ar 15 puordūtuvem i 31 saimesteibys kuorms; +* 1975 - Rēznis kopūs pastateits pīminieklis uorstam, publicistam Ontuonam Skryndam (dz. 1881); +* 2008 - gaisa temperatura Daugpilī sasnēdz +29,3 gradu pa Celseja skolai. + +=== Latvejā === + +=== Pasaulī === +* 1822 – Brazileja pasludynova napavaļdeibu nu Portugalejis; +* 1936 — Australejā, Hobartys zvieru suodā myra pādejais dzeivais Tasmanejis vylks; +* 1953 – Nikita Hruščovs kliva SSKP Centra Komiteta pirminīku; +* 1978 – Londonā ar Bulgarejis soecdīnastis iztaiseitu leitasorgu nūnuuoviets Bulgarejis disitents Georgejs Markovs; +* 1998 – īstateita Google kompaneja. + +== Dzimšonys == +=== Latgolā === +* 1912 - Donats Latkovskais, literats (ailinīks, rakstinīks, kritiks), pseudonimi - Jāks Gaitums, Meikuls Smīkls, Veiksnīšu Eserdeņš, presys dareituojs. Sajimts 1943 godā i pagaiss bez zinis 1943 gods labeibys mienesī; +* 1934 - Zaiga Matule, zinineica, vuiceibu dareituoja, ekonomikys doktore, Rēznis Augstškolys Satversmis saīsmis pirmineica; +* 1943 - Ivars Gailāns, uorsts, zininīks, medicinys doktors. + +=== Latvejā === + +=== Pasaulī === +* 1533 — Elizabete I (Elizabeth I), Anglejis i Eirejis kieninīne (m. 1603); +* 1865 — Abrams Izaks Kūks (אברהם יצחק הכהן קוק, Abraham Isaac Kook), žydu rabiņs (m. 1935); +* 1914 — Džeimss Van Alens (James Van Allen), ASV fiziks (m. 2006); +* 1925 – Ahasis Aivazianas (Աղասի Այվազյան), armeņu rakstinīks, kinys scenarists i režisors; +* 1934 – Džozeps Edamaruku (Joseph Edamaruku) zynoms Indejis žurnalists (m. 2006); +* 1975 — Noriks Abe (阿部典史), Japonejis motosportists (m. 2007) +* 1980 - +:Emre Belezolu (Emre Belözoğlu), Turcejis futbolists +:Gabriels Milito (Gabriel Alejandro Milito), Argeņtinys futbolists +* 1984 — Vera Zvonarjova (Вера Игоревна Звонарёва), krīvu tenisiste + +== Mieršonys == +=== Latgolā === +* 1711 - Mikolajs Poplavskais - katuoļu bazneicnīks, Inflantejis (Latgolys) veiskups, Ļvovys arciveiskups. + +=== Latvejā === + +=== Pasaulī === +* 1956 — Oto Šmidts (Otto Schmidt, Отто Юльевич Шмидт), vuocbaltīšu sovetu matematikis, astronoms, polartāmātuojs (dz. 1891); +* 1962 — Karena Bliksena (Karen Blixen), daņu rakstineica (dz. 1885). + +== Nūruodis == +{{nūruodis}} + +{{commonscat|7 September|Rudiņa mieneša 7 dīna}} + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Rudiņa mieneša 7 dīna| ]] + 9vgh28kak69agypwjr5hc5n47buxqx4 + + + + Rumuneja + 0 + 439 + + 28330 + 27443 + 2013-03-07T19:34:53Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 210 interwiki links, now provided by [[d:|Wikidata]] on [[d:q218]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''România'''<br />'''Rumuneja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Romania.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Romania.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Romania.svg|300px]] +|- +|| Golvysmīsts || [[Bukareste]] +|- +|| Vaļsteibys volūda || [[rumunīšu volūda|rumunīšu]] +|- +| Prezidents || [[Trajans Basesku]] +|- +| Ministru prezidents || [[Emils Bočs]] +|- +|| Pluots || 237 500 km² +|- +|| Dzeivuotuoju skaits || 21 466 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Rumuneja''' (rum.: ''România'') — vaļsteiba [[Europa|Europā]]. Golvysmīsts - [[Bukareste]]. + +== Viesture == + +== Politika == +Unitara pušprezidentala republika. Nu 2007 g. irā Europys Savīneibys dalinīkvaļsteiba. +== Geografeja == + +== Demografeja == +=== Etniskais sadors === +{| class="sortable wikitable" style="text-align:left; font-size:90%" +|- style="font-size:100%; text-align:left" +!width="200px"|Tauta!!width="150px"|Dzeivuotuoju skaits +!!width="50px"|%</tr> +|- +| Rumunīši ||>19 mln.|| style="text-align:right"|89.5% +|- +| Vengri ||1,431,807|| style="text-align:right"|6.6% +|- +| Čyguoni ||535,140||style="text-align:right"|2.46% +|- +| Ukraini ||61,091|| style="text-align:right"|0.28% +|- +| Švabi ||59,764||style="text-align:right"|0.28% +|- +| Krīvi ||35,791|| style="text-align:right"|0.17% +|- +| Cyti |||| style="text-align:right"|0.8% +|- +|} + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 0jqxsmwnezpl4m8vv00vu3ep3yi78q8 + + + + Ruta Cybule + 0 + 440 + + 11689 + 10691 + 2011-03-24T21:42:32Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Ruta Cybule''' (1960) — Latgolys kulturys aktiviste, latgaļu tradiceiguos kulturys popularizātuoja. + +Aizsuokuse i īdzeivynuojuse vērtini kulturys projektu, vadynojūšu Bolvu nūvoda folklora (tradiceiguos dzīduošonys i īrodumu) tuoluoku nūdūšonu jaunajom audzem. + +{{DEFAULTSORT:Cybule Ruta}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + brs3amr8rqfd3rrkj95fdsg1rbekvcs + + + + Rādazineiba + 0 + 441 + + 31423 + 28331 + 2016-05-04T15:15:44Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Rādazineiba''' (anglīšu: ''management science''; krīvu: ''наука управления''; latvīšu: ''vadībzinātne'') — zineibys atzare, kura tiemej matematiskūs metodu izlītuošonu lobuokim biznesa sasprīdumim pījimt. + +Rādazineiba apjam: +* sprīdumpījimšonys teoreju; +* optimizaceju; +* imitacejis modeliešonu; +* prognoziešonu; +* kaitu teoreju; +* teiklu/transporta modeļus; +* matematiskū modeliešonu; +* datu mekliešonu; +* tycameibys i statistikuos daīmys; +* ekonometriku; +* lītyskū statistiku; +* resursu sadali; +* projektu vadeišonu +i ct. + 8787veelyj2xnrja87lfh3kxjtpw3en + + + + Rāzna + 0 + 442 + + 28332 + 22542 + 2013-03-07T19:35:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q603462]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Rāzna +| atvaiga_pasauka = Raznas ezers.JPG +| atvaiga_aprakstejums = +| zemislopa = Latveja +| pushpin_label_position = left +| latd =56 | latm =19 | lats =0 | latNS = N +| longd =27 | longm =27 | longs =0 | longEW = E +| nūvods = Rēznis nūvods +| pluots = 57,564 +| pošlelais_garums = 12,1 +| vydyskuo_dzilīne = 7,0 +| pošleluo_dzilīne = 17,0 +| vydums = 0,405 +| augstums = 163,8 +| iztece = [[Rēzne (upe)|Rēzne]] +| satecis_baseins = 1710 +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = 10 <br /> {{Collapsible list|Balbyška <br /> Apšu sola <br /> Opoluo sola <br /> Ezeits <br /> i cytys mozys}} +| dzeivojamys_vītys = Lipuški, Malnais Dyužgols, Zosna +| cytys pasaukys = +}} + +'''Rāzna''' — azars Latgolys dīnavydu daļā/vydsdaļā, [[Latgolys augstaine|Latgolys augstainē]], Rēznis nūvoda teritorejā, iz vokorim nu Ludzys – Dagdys ceļa. Ūtrais pa lelumam azars Latgolā i Latvejis Republikys teritorejā (piec [[Lubuons|Lubuona]]). Rāznys viersa pluots dasnādz 5756,4 ha (ar azarsolom 5781 ha). Azara garums stīpās da 12,1 km, plotums da 7 km. Pa iudiņa [[Vydums|vydumam]] (405 mln. kub. m) aizjam pyrmū vītu iz vyds Latgolys azaru. + +Vydyskais dziļums 7 m, pošlelais dziļums 17 m. Azara dybyns reitu i dīnavydu daļā smiļkšuots, pūstumu daļā muoluots, vokoru daļā dyuņuots, a kuruos nakuruos azara vītuos i akmiņuots. Azarmola vokorūs lāva, pūstumūs i reitūs nūšļuobona, kuruos nakuruos vītuos – stuovona. Da azara vysur labi daīt, jimā 10 azarsolu, 2 leluoki leiči – Dyužgols aba Dyukstygols i Zosnagols. + +Azara dīnavydu molā pasacieļs deļ breineigūs vierīņu i legendu izslyvušais [[Muokuļkolns]] (vycaureigais augstums 248 m, samiereigais 55 m). + +Rāznā ītak vaira kai 20 ryuču i gruovu. Nu azara iztak [[Rēzne (upe)|Rēznis upe]], nūtaka iz Zosna azaru (kanals), ryuči i gruovi. 1938 -1940 g. beja dareiti [[Rēzne (upe)|Rēznis]] reguliešonys dorbi, tūlaik azara iudiņa leidzīņs nūkryta. + +Rāznys auguoji – nīdris, skūrstys, syurenis, laičinis, gleivenis, harys. Azarā sateikamys 27 zyvu škirys – zuši, karpys, peledis, raudys, asari, leidakys, repši, pliči, keiši, vīki i ct. + +== Teiklavītys == +* [http://www.razna.lv/razna_lv.htm "Rāznys" atpyutys kompleksa teiklavīta] – nazcik faktu ap Rāznu (latvīšu, anglīšu, vuocīšu, krīvu, švedu, praņcīšu volūduos), taipoš azara i apleicīnis fotografejis + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Latgolys azari]] + t86jalqynw0id6ayiccf7lzndti5w0w + + + + Rēzne + 0 + 444 + + 28333 + 27531 + 2013-03-07T19:35:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 41 interwiki links, now provided by [[d:|Wikidata]] on [[d:q180379]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Cytys zeimeibys|mīstu|Rēzne (zeimeibu škiršona)|Rēzne}} +{{Infoskreine Latvejis mīsts +| pasauka = Rēzne / Rēzekne +| mīsta_tips = Republikys mīsts +| atvaiga_pasauka = Latgales Mara.JPG +| atvaiga_aprakstejums = Pīminieklis "Vīnumeigi Latvejai" +| gerba_atvaigs =Coat_of_Arms_of_Rēzekne.svg +| gerba_pasauka = Rēznis gerbs +| karūga_atvaigs =Flag_of_Rēzekne.svg +| karūga_pasauka = Rēznis karūgs +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 30 | lats = 27 | latNS = N +| longd = 27 | longm = 20 | longs = 11 | longEW = E +| pluots = 17,48 +| dzeivuotuoji_gods = 2009 +| dzeivuotuoju_skaits = 35 568 +| bīzeiba = 2034,78 +| viesturiskuos_pasaukys = {{Vol-de|Rositten}} <br /> {{Vol-ru|Режица}} <br /> {{Vol-pl|Rzeżyca}} +| cytys_pasaukys = {{Vol-lv|Rēzekne}} +| īstateits = 1285 +| mīsta_tīseibys = 1773 +| posta_iņdeksi = LV-4601 <br /> LV-4604 +| teiklavīta = www.rezekne.lv +}} + +'''Rēzne''' aba '''Rēzekne''' - mīsts [[Latgola|Latgolys]] vydsdaļā, [[Sanktpeteburga-Varšovys dzeļžaceļš|Sanktpeteburgys-Varšovys]] i [[Reigys-Moskvys dzeļžaceļš|Reigys-Moskovys]] dzeļžaceļu kristcelēs, pi [[Rēzne (upe)|Rēznis upis]]. Ūtrais pa lelumam mīsts Latgolā (piec [[Daugpiļs]]). Vīns nu diveju (sūpluok [[Daugpiļs]]) golvonūs Latgolys kulturys i zineibys centru, [[Rēznis nūvods|Rēznis nūvoda]] administrativais centrys. + +== Cytys pasaukys == +Oficialuo pasauka [[Latvīšu volūda|latvīšu volūdā]] – ''Rēzekne'' + +Pasauka cytuos volūduos: +* [[Latgaļu volūda|latgaļu]] – ''Rēzne, Rēzekne'' +* [[Lītaunīku volūda|lītaunīku]] – ''Rėzeknė'' +* [[Krīvu volūda|krīvu]] – ''Резекне'' +* [[Boltkrīvu volūda|boltkrīvu]] – ''Рэзекнэ'' +* [[Puoļu volūda|puoļu]] – ''Rezekne; Rzeżyca'' +* [[Vuocīšu volūda|vuocīšu]] – ''Rezekne; Rositten'' + +Viesturiskuos i sūpluokuos pasaukys: +* [[Lītaunīku volūda|lītaunīku]] – ''Rėzytė'' +* [[Krīvu volūda|krīvu]] – ''Режица'' +* [[Vuocīšu volūda|vuocīšu]] – ''Rositten'' + +== Geografeja == +=== Vīta i reļjefs === +Rēznis geoografiskuos koordinatys: + +Atostumi nu Rēznis: + +=== Klimats === + +== Demografeja == +=== Dzeivuotuoju skaits === + +=== Etniskais sadors === + +== Viesture == + +== Slavvītys == +Arhitekturys pīminiekli: + +Vuiceibys i kulturys īstoti: + +Sporta īstoti: + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Suvalki, [[Puoleja]] +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] Dmitrovs, [[Krīveja]] +| [[Fails:Flag of Norway.svg|25x15px|Norvegeja]] Arendaļs, [[Norvegeja]] +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Čenstokava, [[Puoleja]] +| [[Fails:Flag of Belarus.svg|25x15px|Boltkrīveja]] [[Vicebskys]], [[Boltkrīveja]] +| [[Fails:Flag of Lithuania.svg|25x15px|Lītova]] [[Kupiškis]], [[Lītova]] +|} + +== Nūvodnīki == +Rēznē dzymuši: + +Dzymuši cytur, Rēznē vuicejušīs, dzeivuojuši, darejuši: + +== Galereja == +<gallery> +File:Rezekne Bolsjaja lucin ulNr2.jpg|Rēzne 1920 godu suokuos +File:Rezekne post office 1920s.jpg|Rēznis posta kuorms 1920 godūs +File:Rezekne 1951pludi.jpg|Rēzne 1951 goda polūs +File:Latgales mara wwii.jpg|Latgolys Muora Ūtrajā pasauļa karā +File:Latgales Mara.JPG|Latgolys Muorys pīminieklis +File:Rezekne cultural house.jpg|Rēznis kulturys noms +File:Rezekne castle ruins.jpg|Vierīņs iz Rēznis piliskolna i Jezus sirds bazneicys +File:Rezekne II train station.jpg|Dzeļžaceļa staceja <br /> Rēzne II +</gallery> + +== Teiklavītys == +* [http://www.flashearth.com/?lat=56.502609&lon=27.33802&z=12.5&r=0&src=ggl] +* [http://maps.google.com/maps?q=56.5,27.316667&ie=UTF8&z=12&ll=56.49965,27.316132&spn=0.128098,0.31929&t=h&om=1] + +{{nadabeigts rakstīņs}} + +{{Latvejis mīsti}} +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Rēzne| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + aklcs9nwfa1w32xts8q6lqb7vnljsoz + + + + Rēzne (mīsts) + 0 + 445 + + + 6478 + 6477 + 2011-03-19T13:21:40Z + + SPQRobin + 2 + + + 33 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Rēzne]] + 1c0k6j64s7wky8dezy8jk1cew0gxqe1 + + + + Rēzne (upe) + 0 + 446 + + 31372 + 28334 + 2016-03-28T10:45:04Z + + 91.9.119.68 + + Fluss-lv-Rēzekne.png + wikitext + text/x-wiki + {{Infoskreine Latvejis upe +| pasauka = Rēzne +| atvaiga_pasauka = Rēzeknes upe Rēzeknē.jpg +| atvaiga_aprakstejums = Rēznis upe Rēznē +| zemislopys_atvaigs = Fluss-lv-Rēzekne.png +| kulturviesturiskais_nūvods = Latgola +| iztaka = [[Rāzna]] +| viersupe = +| satakupis = +| ītaka = [[Lubuons]] +| baseina_vaļsteibys = [[Latveja]] +| satecis_baseins = 2025,7 +| tek_car = [[Latveja]] +| garums = +| garums_latvejā = 116 +| iztakys_augstums = 163,3 +| ītakys augstums = 92,1 +| nūkritīņs = 71 +| vydyskais_puorteciejums = 5,5 +| gods_puorteciejums = 0,2 +| zeimeiguokuos_datakys = [[Malta (upe)]], Lyužonka +| leluokuos_upsolys = 9 +| dzeivuojamys_vītys = Stolerova, [[Rēzne]], Rykova +| cytys_pasaukys = ({{Vol-lv|Rēzekne}}) +}} + +'''Rēzne, Rēznis upe''' (latv.: ''Rēzekne'') — upeite Latgolys vydyskajā daļā, Rēznis nūvodā. Iztak nu [[Rāzna|Rāznys]], izavej par [[Rēzne|Rēznis mīstu]] i ītak [[Lubuons|Lubuonā]]. +Taipoš tak par Kaunatys, Čornuos, Greiškānu pogostim, taisa Audreņu i Ūzulmuižys pogostu rūbežu, Kaņtinīku i Sakstygola pogostu rūbežu, tak par Rykovys pogostu i vysa golā taisa Gaigalovys i Nagļu pogostu rūbežu. + +Upis garums 116 km, baseins 2066 kv. km. Viersupei i vydsupei soveiga trapeciska upleja ar nazcik napalelom iudiņturem i patmaļmuorkim. Zamupe pi [[Lubuons|Lubuona]] apstateita dambom, ite datak daudzi iudiņa. Rēznis upē laižami vydā iudini nu Nagļu zyvsaimesteibys muorku, zamyn jūs pa kanalu Rēznē ītak iudiņs nu Maltys upis. + +Puorteciejums Rēznis upē zamyn [[Rēzne|Rēznis mīsta]] vydyskai 5,5 m3/s. Div reizis par godu - pavasar i juļa mienesī iudiņa puorteciejums teik div reizis leluoks par vydyskū vierteibu. Pošmozais puorteciejums septembra mienesī – 9 reizes mozuoks kai gods vydyskais. + +== Nūruodis i olūti == +* [http://future.risc.lv/projekti/31/index.html Nazcik faktu ap Rēznis upi (latvīšu i anglīšu volūduos)] + +[[Kategoreja: Latgolys upis]] + lxz30rkxpknj5igineeds56an0qta22 + + + + Rēzne (zeimeibu škiršona) + 0 + 447 + + 28335 + 20623 + 2013-03-07T19:35:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1226945]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Pasauku '''Rēzne''' tur diveji Latgolys geografiskī objekti: +* [[Rēzne]] – mīsts, ūtrys pa lelumam Latgolā (piec [[Daugpiļs]]), leidz [[2009|2009 godam]] [[Rēznis rajons|Rēznis rajona]] centrys, niu [[Rēznis nūvods|Rēznis nūvoda]] administrativais centrys. +* [[Rēzne (upe)|Rēzne]] – upe, kura iztak nu [[Rāzna|Rāznys]] azara, izavej škārs [[Rēzne|Rēznis mīstu]] i ītak [[Lubuons|Lubuonā]]. +* [[Dzeļžaceļš|Dzeļžaceļa]] [[Dzeļžaceļa staceja|stacejis]]: +** [[Rēzne I]] +** [[Rēzne II]] + +{{Zeimeibu škiršona}} +{{DEFAULTSORT:Rēzne (zeimeibu škiršona)}} + njgu8iusuvok1xh56n4u5f9dpmmkayt + + + + Rēznis augstškola + 0 + 448 + + 28336 + 27041 + 2013-03-07T19:36:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801493]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Rezekne University.JPG|thumb|260px|Rēznis augstškola Atbreivuošonys alejā]] +'''Rēznis augstškola''' — ūtrais pa lelumam vuiceibys īstots Latgolā, vīna nu diveju Latgolys augstškolu (sūpluok [[Daugpiļs universitets|Daugpiļs universiteta]]). + +== Viesture == +* '''1921 g.''' – īstateits Rēznis augstškolys pyrmaguojiejs – [[Rēznis školuotuoju instituts|Rēznis školuotuoju insttituts]], piečuok puorsaukts Rēznis pedagogiskuos školys. +* '''1988 g.''' – leidza ar latgalīšu kulturyskū atdzimšonu ceļās dūms sataiseit Latgolā augstškolu. Iniciativu atspaidoj [[Latvejis tautys fronts]], [[Rēznis mīsta pošvolds|Rēznis pošvolds]], [[Latvejis universitets|Latvejis universiteta]] vierseiba. +* '''1990 g.''' – īstateits [[Latvejis universiteta Latgolys filials]], studejis suoc pyrmī 100 studentu (pa ekonomikys i filologejis studeju tecīnim). +* '''1991 g.''' – Latgolys filials daboj nūtaleju studeju ustobu (Rēznē, Atbreivuošonys alejā 90), cīšuok komplektejami augstškolys vuiceibspāki, taisoma materialiskuo baza. +* '''1992 g. juņa mien.''' – Latgolys mīstu i rajonu pīstuovu sasatikšonā ar tūlaicejū Latvejis vuceibys ministri Jāni Vaivadu otkon pasadzierst dūms ap sovrūču augstškolu. +* '''1992 g. augusta 28 d.''' – [[Pyrmais pasauļa latgalīšu sabraukums]] pījam rezoļuceju ap Rēznis augstškolys īstateišonu kai regiona [[Vuiceiba|vuiceibys]] [[Raisteiba|raisteibys]] prioritetu. Sataisoma dorba grupa jaunuos augstškolys koņcepcejai sastateit. Caur [[Pasauļa breivūs latvīšu apvīneiba|Pasauļa breivūs latvīšu apvīneibys]], [[Latvejis Republikys vuicebys ministreja|Latvejis vuicebys ministrejis]], [[Rēznis mīsta pošvolds|Rēznis pošvolda]] atspaidu jaunuos augstškolys projekts īdzeivynojams labtik eisā laikā. +* '''1993 g. juļa 1 d.''' – suoc dareit Rēznis augstškola kai sovrūčs vuiceibys īstots. +* '''1994 g. augusta 23 d.''' – [[Latvejis Republikys Ministru kabinets|Ministru kabinets]] apstyprynuoj Augstškolys [[Satversme|Satversmi]]. +* '''1999 g.''' – Rēznis augstškola daboj naterminātys vydtautyskuos [[Akreditaceja|akreditacejis]]. + +== Nūruodis i olūti == +[http://ru.lv/ Rēznis Augstškolys teiklavīta] + +[[Kategoreja:Rēzne]] +[[Kategoreja:Latgola]] + m18fdn7s0uz782rv4izzfxvf9cn48xz + + + + Rēznis nūvods + 0 + 452 + + 28337 + 18562 + 2013-03-07T19:36:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1518841]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rēznis nūvods +| zemislopa = Rēzeknes novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Coat of Arms of Rēzeknes novads.svg +| gerba_pasauka = Rēznis nūvoda gerbs +| karūga_atvaigs = Flag of Rēzeknes novads.svg +| karūga_pasauka = Rēznis nūvoda karūgs +| centrys = Rēzne +| pluots = 2 524,1 +| dzeivuotuoju_skaits = 32 130 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 12,7 +| īstateits = 2009 +| teritoriskais_dalejums = 25 pogosti <br /> {{Collapsible list|[[Audreņu pogosts]] <br /> [[Bieržgaļa pogosts]] <br /> [[Bykovys pogosts]] <br /> [[Drycānu pogosts]] <br /> [[Greiškānu pogosts]] <br /> [[Iļžukolna pogosts]] <br /> [[Kaņtinīku pogosts]] <br /> [[Kaunatys pogosts]] <br /> [[Leņdžu pogosts]] <br /> [[Lyuznovys pogosts]] <br /> [[Malnuo Dyužgola pogosts]] <br /> [[Maltys pogosts]] <br /> [[Muokuļkolna pogosts]] <br /> [[Nagļu pogosts]] <br /> [[Nautrānu pogosts]] <br /> [[Puša pogosts]] <br /> [[Rykovys pogosts]] <br /> [[Sakstygola pogosts]] <br /> [[Sylmolys pogosts]] <br /> [[Stolerovys pogosts]] <br /> [[Strūžānu pogosts]] <br /> [[Ūzulainis pogosts]] <br /> [[Ūzulmuižys pogosts]] <br /> [[Veremu pogosts]] <br /> [[Vīmyna pogosts]]}} +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.rezeknesnovads.lv +}} + +'''Rēznis nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], kas sasadora nu 25 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Rēznis nūvods| ]] + rhy6d2wb9les5r93bdut77q74wj5pe6 + + + + Rībeņu nūvods + 0 + 454 + + + 6584 + 6583 + 2011-03-19T13:21:46Z + + SPQRobin + 2 + + + 3 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Ribinišku nūvods]] + midl8rhhfju4cvmy5u89tprogwfqcnx + + + + SK Blāzma + 0 + 455 + + 28338 + 15039 + 2013-03-07T19:36:36Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 13 interwiki links, now provided by [[d:|Wikidata]] on [[d:q935751]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''SK «Blāzma»''' irā Latvejis futbola klubs nu [[Rēzne|Rēznis]]. Da 2007 gods jei beja pazeistama ar pasauku BSK «Dižvanagi». Komanda Viersligā debiteja 2006 godā, partū ka aizagreigā sezonā «Dižvanagi» īveice 1 ligā. Nu suoku «Dižvanagi» beja bārnu futbola komanda, tok, jaunīšim izaugūt, kliva par saaugušū komandu. Sovā pyrmajā sezonā Viersligā «Dižvanagi» naīveice nivīnā kaitā, palyka 8 vītā i atsagrīze 1 ligā. 2008 godā, pasaplatūt Viersligas komandu skaitam, «Blāzma» atsagrīze Viersligā. + +{{DEFAULTSORT:Blāzma, SK}} + +[[Kategoreja:Rēzne]] + tqbsc2lg2f2oqoawm9kc3ixjxu84gfz + + + + SUNSAT + 0 + 456 + + 28339 + 15382 + 2013-03-07T19:36:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q749984]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''SUNSAT''' ('''S'''tellenbosch '''UN'''iversity '''SAT'''ellite) — pyrmais Afrikā padarynuotais [[Zemis muoksleigī paceļnīki|Zemis muoksleigais paceļnīks]]. Jis palaists kosmosā nu raketys ''Delta II'', kura pasacēle Vandenberga gaisa spāku bazā 1999. g. febraļa 23 d. Paceļnīku ''SUNSAT'' pastateja [[Stelenboša universitets|Stelenboša universiteta]] universiteta inženerejis doktoranti. + +== Soveigumi == +* Māri: 45 x 45 x 60 cm +* Svors: 64 kg +* Palaistivs: raketa ''Delta II'', ''Mission P-91'' +* Apmiereiguo programys vērte: 5 milijoni ASV dolaru +* Darbeibys ilgums: 4-5 godi (''NiCad Battery pack life'') +* Golvonuos funkcejis: +** Amateru radejis viļņu puorlaide +** Datu meits +** Daudzispektreigais stereoatvaigu taiseitivs +* Augstuma kontrole: Gravity gradient and magnetorque, reaction wheels when imaging +* Precizums: 3 mrad pitch/roll, 6 mrad yaw + +=== Atvaigu taiseitivs ''Pushboom'' === +* Fona pikseļu māri: 15 m x 15 m +* Atvaiga plotums: 51,8 km + 5fqrnaarg2uz47r1hrysv0q5bmd9qau + + + + Saitys + 0 + 457 + + 31478 + 31424 + 2016-07-16T16:14:25Z + + Chenspec + 3458 + + wikitext + text/x-wiki + [[Fails:Anita Broden (fp) BSPC 18 Nyborg Danmark 2009-08-31.jpg|thumb|Saitys]] +'''Saitys''' (anglīšu: ''communication''; krīvu: ''связь''; latvīšu: ''sakari'') — zynuošonuos iz vyds diveju, nazcik ci daudzeju subjektu voi objektu i tam izlītojamī leidziekli. + +Šauruokā zeimeibā ar "saitom" saprūt zynuošonuos tehniskuos vareibys (pīv., ''telefonsaitys, radejsaita, iņterneta saitys'' i leidz). + szumq23vazw4cbldrfkrln65p7vp260 + + + + San Marins + 0 + 458 + + 31957 + 31591 + 2017-04-26T00:57:33Z + + 2A00:23C4:C2FA:5400:132:F168:F648:4824 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''San Marino'''<br />'''San Marins'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of San Marino.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of San Marino.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe location SMO.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || [[Marino Rikardi]]<br />[[Fabio Berardi]] +|- +| Ministru prezidents || +|- +|| Pluots || 61 km² +|- +|| Dzeivuotuoju skaits || 40 560 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''San Marins''' (ital.: ''San Marino'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 17khi37d299g80fgkcdibv7xl9x3p74 + + + + Sariedīņs + 0 + 459 + + 29007 + 27786 + 2013-03-08T23:33:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 18 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1297532]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Sariedīņs''' (anglīšu: ''event''; krīvu: ''мероприятие''; latvīšu: ''pasākums, sarīkojums'') — organizāta nūtikšona, kura salosa lelu voi mozu ļaužu grupu iz samārā nagaru laiku ar kultururysku voi socialu [[wt/ltg/snāgs|snāgu]]. Sariedīņs var byut, pīvadumam: +* festivaļs, +* ceremoneja, +* sasaveicīņs, +* dzimšonys dīnys svieteibys, +* mitings +i leidz. + n6ilzsaxldyyvtzutzyb69gpaf8t2x0 + + + + Sasauksme + 0 + 460 + + 28342 + 26399 + 2013-03-07T19:37:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q548838]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Sasauksme''' (anglīšu: ''handshaking''; krīvu: ''подтверждение связи''; latvīšu: ''rokspiešana'') — process, kurymā divejis ītaisis apstyprynoj, ka iz vyds jūs irā atsaroduse saita i suokusēs zynuošonuos: nūstateits ASCII liters voi puortraukuma signals/ aizprasejuma magistralis signals procesoram kūpā ar ''Control Bus''. + +Sasauksme suocās, kod vīna ītaise nūsyutejuse ūtrai ītaisei zini, ka grib sataiseit zynuošonuos kanalu. Tūlaik obadivejis ītaisis tei tai nūsyuta nazcik ziņu, kurys ļaun jom dasarunuot ap zynuošonuos protokolu. Kab nūtyktu datu puorlaide, pyrma tuo vajadzeiga obadiveju ītaišu (datu syuteituojis i datu dabuojiejis) sasauksme. + +[[Kategoreja:Tehnologeja]] + dsxbcbkua9l0kfsd59pvut74hdj9us0 + + + + Saulis kolni + 0 + 461 + + 20520 + 20519 + 2012-01-31T13:54:39Z + + Stiernīts~ltgwiki + 315 + + + wikitext + text/x-wiki + [[Fails:Vierins_nu_Saulis_kolnu.jpg|frame|Vierīņs nu Saulis kolnu]] +'''Saulis kolni''' — kaupru puors Latgolys dīnavydūs, [[Latgolys augstaine|Latgolys augstainē]], Kruoslovys nūvoda [[Kumbuļa pogosts|Kumbuļa pogostā]], Kruoslovys – Dagdys ceļa reitu pusē, pi [[Dreidzs|Dreidža]] azara. Vīna nu pošsvareiguokūs senejūs latgaļu svātvītu. Nūmīļuots turizma objekts (tok sovetu laikā panycynuots i itamā šaļtī aplaists). + +Augstuokuos nu diveju viersyuņu vyscaureigais augstums – 211 m augšuok jiuru leidzīņa, samiereigais augstums (augšuok apleicīnis) – 60 m. Nu Saulis kolnu viersyuņu var īsavērt vaira kai 20 apleicejūs azaru ([[Dreidzs]], Jūdazars, Guļbeits, Aulejis azars, Gauslis, Plauds, Zosna, Sivers, Kaušs, Pūrs, Dybyns, Lejs, Cārmyns, Iļzeits, Zyrga azars, Uordavs i ct.). + +==Pasauka== +Saulis kolnu apleicīnis vacūs audžu dzeivuotuoji runoj ap "Saulis kolnim" (divejim) i dobā radzamys obadivejis viersyunis, tok oficialajā literaturā latvīšu volūdā klaideigai īsaguojuse pasauka vīnskaitā (latvīšu vol. ''Sauleskalns''). + +Saulis kolni kai vīna nu golvonūs senejūs latgaļu svātvītu īīt objektu kompleksā ar vērtini poguoniskai kulta vītai soveigu pasauku – Saulis kolni, Dīva duorzs, Jūdazars, Valnazars, Saulis azars i ct. + + +[[Kategoreja:Latgolys kaupri]] + p5rc71fd2r5tbdtyea9etn34n7ylbmd + + + + Seimani + 0 + 462 + + 29776 + 20445 + 2013-04-14T23:33:08Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Seimani''' — sola [[Cyblys nūvods|Cyblys nūvodā]]. + +Apleicīnē lelakmiņs — [[Seimaņu akmiņs]]. + +{{eiss rakstīņs}} + +[[Kategoreja:Leidumnīku pogosts]] +[[Kategoreja:Cyblys nūvoda solys]] +[[Kategoreja:Latvejis solys]] + 6v5k4t6j68pbexcp3rcb5dulk7yxs5v + + + + Seimaņu akmiņs + 0 + 463 + + 11707 + 10707 + 2011-03-24T21:45:32Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Seimaņu akmiņs''' — lelakmiņs [[Cyblys nūvods|Cyblys nūvodā]], vīns nu pošu lelūs akmiņu Latgolā. + +Akmiņs atsaguļs iz [[Seimaņu kolns|Seimaņu kolna]], ~0,5 km iz [[Dīnavydi|D]] nu [[Seimani|Seimaņu]] solys. Juo leluo daļa īgrymuse zemē. Akmiņs naregularys formys, cīši saškailuojs, gryudons. + +Māri: +* [[garums]] – 9 [[Metris|m]]; +* vysuleluokais [[plotums]] – 5,6 [[Metris|m]]; +* [[apleikmārs]] – 23,6 [[Metris|m]]; +* vysuleluokais [[augstums]] - 1,9 [[Metris|m]]; +* zemisviersa [[vydums]] – 35 [[Kubikmetris|m3]]. + +[[Kategoreja:Latgolys lelakmini]] +[[Kategoreja:Latgolys dobys pīminiekli]] + 715u688kx41y31kib00e60tqu05anxw + + + + Seimaņu kolns + 0 + 464 + + 11708 + 10708 + 2011-03-24T21:45:42Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Seimaņu kolns''' — [[kaupris]] [[Cyblys nūvods|Cyblys nūvodā]], natuoļ da [[Seimani|Seimaņu]] solys. + +Iz kolna lelakmiņs — [[Seimaņu akmiņs]]. + mususpkc5qp7oiyb7f9ftdex5u4rkq3 + + + + Senejūs latgaļu svietneicys + 0 + 465 + + 11709 + 10709 + 2011-03-24T21:45:52Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Senejūs latgaļu svietneicys pa pasaukai''' + +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#Ā|Ā]] [[#B|B]] [[#C|C]] [[#Č|Č]] [[#D|D]] [[#E|E]] [[#Ē|Ē]] [[#F|F]] [[#G|G]] [[#Ģ|Ģ]] [[#H|H]] [[#I|I]] [[#Y|Y]] [[#Ī|Ī]] [[#J|J]] [[#K|K]] [[#Ķ|Ķ]] [[#L|L]] [[#Ļ|Ļ]] [[#M|M]] [[#N|N]] [[#Ņ|Ņ]] [[#O|O]] [[#Ō|Ō]] [[#P|P]] [[#R|R]] [[#S|S]] [[#Š|Š]] [[#T|T]] [[#U|U]] [[#Ū|Ū]] [[#V|V]] [[#Z|Z]] [[#Ž|Ž]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== B == +* [[Bondarovys krystakmiņs]] Pušmycovys i Zviergzdiņa pogostā, [[Cyblys nūvods|Cyblys nūvodā]] + +== K == +* [[Kazeicu Bykakmiņs]] Rundānu pogostā, Ludzys nūvodā + +== S == +* [[Saulis kolni]] Kumbuļa pogostā, Kruoslovys nūvodā + +[[Kategoreja:Religeja Latgolā]] + 6m8zlhli9efshuz8bwcjxk5w8auu3y8 + + + + Septeni pasauļa breinumi + 0 + 466 + + 28343 + 27842 + 2013-03-07T19:37:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 77 interwiki links, now provided by [[d:|Wikidata]] on [[d:q489772]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:SevenWondersOfTheWorld.png|thumb|Aņtikys Septeni pasauļa breinumi 16 godusymta olaņdīšu muokslinīka [[Mārtens van Hēmskerks|Mārtena van Hēmskerka (''Maarten van Heemskerck'')]] atvaiguojumā (nu kairuos iz lobū, nu viersa iz zamošku): [[Heopsa piramida]], [[Gaisa suodi]], [[Dzeusa skulptura]], [[Artemidys svietneica]], [[Halikarnasa mauzolejs]], [[Roda koloss]], [[Aleksandrejis speidyns]]]] +'''Septeni pasauļa breinumi''' — pošys izslyvušuokuos [[Antika|antikuo]] pasauļa [[Statne|statnis]], kuru sarokstu sataiseja [[Aņtipatris nu Sidona]] II godusymtā pyrma Krystus. Vāluok, plotūtīs [[Oikumena|oikumenai]] i raistūtīs pasauļa pazeišonai, saroksts na reizi paplatynuots, apjamūt taipoš i dobys breinumus. Tok tradiceigais aņtikuo pasauļa breinumu saroksts irā itaids: +* [[Heopsa piramida]] +* [[Babilonejis Gaisa suodi]] +* [[Dzeusa skulptura]] Olimpā +* [[Artemidys svietneica]] Efesā +* [[Halikarnasa mauzolejs]] +* [[Roda koloss]] +* [[Aleksandrejis speidyns]] + iu0966znup3e98myvhponvz8do8c4ww + + + + Serbeja + 0 + 467 + + 31920 + 28344 + 2017-03-14T16:00:23Z + + GorillasPeaches + 3821 + + palaboju atkal + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Република Србија'''<br />'''Serbeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Serbia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Serbia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Serbia Europe.png|300px]] +|- +|| Golvysmīsts || Belgrada +|- +|| Vaļsteibys volūda || Serbu +|- +| Prezidents || Tomislavs Nikoličs +|- +| Ministru prezidents || Aleksandrs Vučics +|- +|| Pluots || 88 361 km² +|- +|| Dzeivuotuoju skaits || 7 498 001 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Serbeja''' (serb.: ''Република Србија'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + t27pm9t2voqkdg3h2gef67mgtmj9h95 + + + + Sielejis augstaine + 0 + 468 + + 30526 + 28345 + 2015-02-01T19:06:31Z + + Vogone + 1387 + + + wikitext + text/x-wiki + '''Sielejis augstaine''' (latvīšu: ''Augšzemes augstiene'') — reļjefa pasacālums Latgolys dīnavydu daļā i Sielejā, Daugpiļs, Īlyukstis, Jākubmīsta, Akneišys i Vīseitys (cik nacik Kruoslovys nūvoda) teritorejuos. + +Pošaugstuo viersyune Sielejis augstainē — [[Egļukolns]] (220,0 m augšuok jiuru leidzīņa). Taipoš skaisti vierīni acim pasaruoda nu Skrudalīnis kolna (201 m a. j. leidz.) i nu Ryču azara (dziļums 38 m) apleicīnis. + +[[Kategoreja:Latgolys doba]] + ea6ozm3qk6vscccf06py2btx9pda7mw + + + + Slovakeja + 0 + 469 + + 28346 + 27424 + 2013-03-07T19:38:23Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 201 interwiki links, now provided by [[d:|Wikidata]] on [[d:q214]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Slovensko'''<br />'''Slovakeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Slovakia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Slovakia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Slovakia.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || slovāku +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 48 845 km² +|- +|| Dzeivuotuoju skaits || 5 395 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Slovakeja''' (slovak.: ''Slovensko'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 4e8hduyqyg9h72j6r2piu5q9c150k7s + + + + Sloveneja + 0 + 470 + + 31311 + 31310 + 2016-02-28T15:49:10Z + + Stryn + 279 + + + Novērsu izmaiņas, ko izdarīja [[Special:Contributions/46.109.130.24|46.109.130.24]] ([[User talk:46.109.130.24|Diskusija]]), atjaunoju versiju, ko saglabāja [[User:Addbot|Addbot]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Republika Slovenija'''<br />'''Sloveneja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Slovenia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Slovenia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Slovenia.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 20 253 km² +|- +|| Dzeivuotuoju skaits || 2 053 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Sloveneja''' (sloven.: ''Republika Slovenija'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 9xkfh93n26ga36jpw04uthl488rozfy + + + + Snāgs + 0 + 471 + + 29064 + 28348 + 2013-03-11T05:20:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q198942]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Snāgs''' (anglīšu: ''objective, goal, aim''; krīvu: ''цель''; latvīšu: ''mērķis'') — personys voi organizacejis grybamais zynoma dorba golapunkts aba tys rezultats, kuruo grybams dasnēgt, garuoku laiku dorūt vīnu konkretu darbeibu voi daudzeju darbeibu vērtini (pīv., projekta snāgs, organizacejis darbeibys snāgs, personys snāgs dabuot loba dorba, izsprīst problemu, nūskrīt iz Antarktidu). + +Parostai da snāga raugoms daīt zynomuos laika ramuos, nūstotūt golalaiku. + fp2dygiza8t4ttkwqnhiy4814dec0it + + + + Solsaimesteiba + 0 + 472 + + 28349 + 27953 + 2013-03-07T19:38:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 146 interwiki links, now provided by [[d:|Wikidata]] on [[d:q11451]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Solsaimesteiba''' (anglīšu: ''agriculture''; krīvu: ''сельское хозяйство''; latvīšu: ''lauksaimniecība'') — puortykys, [[Barūkle|barūklis]], [[Škīzna|škīznu]], [[Daguļs|daguļa]] i cytu lobumu [[pīgatave]], sistematiskai audzejūt [[Auguoji|auguojus]] i dzeivinīkus. + +{{Eiss rakstīņs}} + +[[Kategoreja:Solsaimesteiba]] + 5st8dv2ykux286nyvbj01w7fx23xew1 + + + + Sovvaļnīks + 0 + 473 + + 31915 + 30224 + 2017-03-01T19:21:41Z + + Turaids + 172 + + wikitext + text/x-wiki + '''Sovvaļnīks''' (pa eistynajam vuordam [[Ingars Gusāns]], dzims 1974 gods febraļa 17 dīnā [[Rēzne|Rēznē]]) — latgalīšu rokmuzykants, vokalists, gitarists, komponists i muzykys leidzaproducents. Melanholiskuo roka pīstuovs. Muzykā aktivuok dorbojās nu 2003 gods, plotuok izslivs nu 2005 goda kai grupys [[Borowa MC]] dalinīks ar [[vārtuvis]] vuordu [[Sedmenc]], a nu 2009 goda pazeistams kai solo dzīšmu autors Sovvaļnīks. Muzykā dzierdīs melanholiskuo roka i gryutuo roka stiļs, virtuozi gitarys spieļuojumi. Dzīšmu teksti — filosofiski latgalīšu ailinīku ([[Līga Rundāne|Līgys Rundānis]], [[Valeņtins Lukaševičs|Valeņtina Lukaševiča]], [[Mareja Andžāne|Marejis Andžānis]], [[Oskars Seiksts|Oskara Seiksta]]) dzeivuli ar dziļu, auteņtisku latgaliskū leksiku. + +Nu 2003 goda spieļuojs grupā ''Slieksnis''. 2006 godā kūpā ar grupu ''[[Bez PVN]]'' īraksteits radejsinglys ''Vosoruošona'' — veļtejums latgalīšu volūdys dakūpiejim. Dzīsmis jaunuo verseja īraksteita 2010 godā, kod nūfilmāts i vierīņklips. Pyrmais albums ''Sūpluok'' — veļtejums [[Ontonam Kūkojam]]. + +== Diskografeja == +* [[Sūpluok]] ([[2009]]) +* [[Bolts susātivs]] ([[2010]]) +* [[Napaseitynuouts]] ([[2016]]) + +== Nūruodis == +* [http://www.sovvalniks.lv/ Sovvaļnīka oficialuo teiklavīta] +* [[Ingars Gusāns]] + +{{Nadabeigts rakstīņs}} +{{DEFAULTSORT:Sovvalzniks}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 3ts3as38be9vqi1d13xedi4gt926wna + + + + Spaneja + 0 + 474 + + 30696 + 30431 + 2015-04-02T15:29:39Z + + Magioladitis + 2827 + + + /* Verīs taipoš */All info is kept in Wikidata, removed: {{Link FA|eo}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''España'''<br />'''Spaneja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Spain.svg|150px|border]] +| align="center" width="140px" | [[Fails:Escudo de España ajustado a la norma heráldica.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe location ESP.png|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Monarhs || Felipe VI +|- +| Ministru prezidents || Mariano Rajoy +|- +|| Pluots || 504 782 km² +|- +|| Dzeivuotuoju skaits || 46 662 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Spaneja''' (span.: ''España'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + a4b9xzzq7587j3ozq1ic0ng6fi7rzgq + + + + Spanīšu volūda + 0 + 475 + + 30285 + 30284 + 2014-04-19T18:22:00Z + + Onuphriate + 2353 + + + wikitext + text/x-wiki + {| border= cellpadding=2 cellspacing=0 align=right width=290px> + +<tr style=background:><td align=center><font size=+1>'''Spanīšu volūda''' +<tr style=background:><td align=center><font size=>'''''Español / Castellano''' +{| border=1 cellpadding=2 cellspacing=0 align=left width=290px> +<tr><td align=left>Vysys pasaukys:<td align=left>''Español; Idioma Español; Castellano; Idioma Castellano'' +<tr><td align=left>Kur runoj:<td align=left>''(saksteiba pa alfabetam)''<br /> [[Argeņtina|Argeņtinā]], [[Boliveja|Bolivejā]], [[Čile|Čilē]], [[Dominikys Republika|Dominikys Republikā]], [[Ekvadors|Ekvadorā]], [[Ekvatora Gvineja|Ekvatora Gvinejā]], [[Pilipinys|Pilipinuos]], [[Gvatemala|Gvatemalā]], [[Hondurass|Hondurasā]], [[Kolumbeja|Kolumbejā]], [[Kosta Rika|Kosta Rikā]], [[Kuba|Kubā]], [[Meksika|Meksikā]], [[Nikaragva|Nikaragvā]], [[Panama|Panamā]], [[Paragvajs|Paragvajā]], [[Peru]], [[Puerto Rika|Puerto Rikā]], [[Salvadors|Salvadorā]], [[Spaneja|Spanejā]], [[Urugvajs|Urugvajā]], [[Venecuela|Venecuelā]]; daļa dzeivuotuoju [[Andora|Andorā]], [[ASV]], [[Belizs|Belizā]], [[Gibraltars|Gibraltarā]] +<tr><td align=left>Runuotuoju skaits:(2007)<td align=left> pyrmuo dzymtuo volūda 322-400 mln. ļaužu; vysā runoj ap 400-500 mln. +<tr><td align=left>Volūdu saime:<td align=left>indoeuropīšu<br />&nbsp;&nbsp;&nbsp;romanīšu +<tr><td align=left>Raksteiba:<td align=left>latiņu (spanīšu variants) +<tr><td align=left>Statuss:<td align=left>vaļstiskuo volūda 21 vaļsteibā - ''(saksteiba pa dzeivuotuoju skaitam)'' [[Meksika|Meksikā]], [[Kolumbeja|Kolumbejā]], [[Spaneja|Spanejā]], [[Argeņtina|Argeņtinā]], [[Venecuela|Venecuelā]], [[Peru]], [[Čile|Čilē]], [[Ekvadors|Ekvadorā]], [[Gvatemala|Gvatemalā]], [[Kuba|Kubā]], [[Dominikys Republika|Dominikys Republikā]], [[Hondurass|Hondurasā]], [[Boliveja|Bolivejā]], [[Salvadors|Salvadorā]], [[Nikaragva|Nikaragvā]], [[Paragvajs|Paragvajā]], [[Kosta Rika|Kosta Rikā]], [[Puerto Rika|Puerto Rikā]], [[Urugvajs|Urugvajā]], [[Panama|Panamā]], [[Ekvatora Gvineja|Ekvatora Gvinejā]] +<tr><td align=left>Golvonī volūdys davēris īstoti:<td align=left>Spanīšu volūdys akademeju asociaceja (''Asociación de Academias de la Lengua Española''), Kieniskuo spanīšu volūdys akademeja (''Real Academia Española'') i cytu 20 vaļsteibu spanīšu volūdys akademejis +</table> +</table> +'''Spanīšu volūda''' aba '''kastilīšu volūda''' ([[Spanīšu volūda]]: ''español'' aba ''castellano'') — vysuvairuok runojamuo [[Romanīšu volūdys|romanīšu volūda]], vīna nu pasauļa vysuplotuok lītojamūs volūdu (sūpluok [[Mandarinīšu volūda|mandarinīšu]] aba [[Kinīšu volūda|kinīšu]] i [[Anglīšu volūda|anglīšu]]). + +Spanīšu volūdu īsuokuos lītuoja Spanejis zīmeļūs, piečuok – vysā Kastilejis Kienestē, a suocūt nu 16 godusymta caur spanīšu kolonistu darbeibu jei pasūļam pasaplateja Afrikā, Amerikā, Azejā i Okeanejā. + +Šudiņ spanīšu volūdu kai pyrmū voi ūtrū volūdu runoj vydyskai (pa vysaidim apskaitīnim) 400 [[Milijons|mln.]] ļaužu – [[Spaneja|Spanejā]], kūna vysuos [[Latiņamerika|Latiņamerikys]] vaļsteibuos, Ekvatora Gvinejā Afrikā i cytur. + +[[Kategoreja:Romanīšu volūdys]] +[[Kategoreja:Spanīšu volūda]] +[[Kategoreja:Volūdys]] +[[Kategoreja:Spaneja]] + 84twkuoi35mcgm1yjgsc5le7y65uqnv + + + + Speidyns + 0 + 476 + + 30862 + 30525 + 2015-08-18T18:01:58Z + + CommonsDelinker + 2750 + + Replacing Lighthouse_-_Thiersch.gif with [[File:Lighthouse_-_Thiersch.png]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: Replacing GIF by exact PNG duplicate.). + wikitext + text/x-wiki + [[Fails:Lighthouse.jpg|thumb|Speidyns Nova Skotejā, [[Kanada|Kanadā]]]] +[[Fails:Lighthouse - Thiersch.png|thumb|Aleksandrejis speidyna vizualizaceja (1909, autors - vuocīšu arheologs prof. H. Tīršs)]] +[[Fails:DoverCastle-lighthouse-2004-10-03.jpg|thumb|[[Senejī romīši|Senejūs romīšu]] stateituo speidyna (ap 138 g. piec Kristus) sakrytumi [[Dovers|Doverā]], [[Angleja|Anglejā]]]] +[[Fails:Finnish Lighthouses 1909.JPG|thumb|Vysaidys arhitekturys speidyni [[Suomejā]] ap 1909 godu]] +[[Fails:Sudinejais_Daugovgreivys_speidyns.jpg|thumb|Šudinejais Daugovgreivys speidyns Reigā]] +'''Speidyns''' (anglīšu: ''lighthouse''; krīvu: ''маяк''; latvīšu: ''bāka'') — tūrņa tipa [[statne]], kura jiuru ceļu sistēmā dūd gaismys signalus lellaivom ap gražeiguokom vītom i [[Šauris|šaurem]]. + +Myuslaikūs speidynūs parostai ītaiseiti mikriešļa i nakts laikā dorūši stypri elektriskuos gaismys olūti, taipoš optiskī leidziekli spūdrumam palelynuot. Cieški i pats speidyna tūrņs nūmaļavuots spūdrā kruosā, kab izaškiertu nu apleicīnis i dīn. + +Deļ jiureibā lītojamūs myuslaiceigūs tehnologeju speidynu role myuslaikūs cik nacik sasamazynuojuse, deļ tuo tān pasaulī irā ni vaira kai 1,5 tyukstūšys dorūšu speidynu. + +Speidyni tradiceigai lītojami lellaivu sativē, tok šudinejī speidyni taipoš paleidz i napalelom [[Skrīnmašine|skrīnmašinem]] orieņtētīs nakts laikā. + +== Viesture == +Senejūs speidynūs kai gaismys olūts beja lītojami specialai tam dadzynojami gunkuri. + +Speidyni beja stotomi nu vysuvacuokūs laiku. Pats senejais zynomais speidyns ciļviecis viesturē - vīns nu [[Septeni pasauļa breinumi|Septeņu pasauļa breinumu]] — [[Aleksandrejis speidyns]], pastateits III godusymtā pyrma Krystus. Senejī [[Senejī greki|greki]] i [[finikīši]] ar gunim aizzeimuoja gražeigys lellaivu puorbraucīņu vītys. + +== Speidyni Baļtejā == +Baļtejis vaļsteibuos pats augstais irā [[Pizys speidyns]] aba [[Meikultūrņs]] (līvu ''Pizā bōik'', latvīšu ''Miķeļtornis'') [[Latveja|Latvejā]], [[Līvu jiurmale|Līvu jiurmalē]], [[Ventspiļs nūvods|Ventspiļs nūvodā]] ([[augstums]] - 62 [[Metris|m]]). + +== Pasauļa speidynu galereja == +=== Cytur Europā === +<gallery> +Image:Portland_Bill_Lighthouse_2.jpg|Portlanda jiursolā, Dorsetā, Anglejā +Image:Spurn_point_lighthouse.jpg|[[Spurn Point]] Lighthouse, [[East Riding of Yorkshire|East Yorkshire]], [[England]]. +Image:Strumble Head Lighthouse.jpg|[[Strumble Head Lighthouse]], Wales +Image:Eddystonelighthouse.jpg|The [[Eddystone Lighthouse]], situated off the coast of [[Cornwall]], [[England]]. +Image:Neuwerk-Turm.jpg|[[Neuwerk]] Lighthouse, [[Hamburg]], [[Germany]], completed 1369 +Image:Bengtskar_lighthouse.JPG|The tall [[Bengtskär]] lighthouse also functions as a museum. +</gallery> + +=== Azejā === +<gallery> +Image:Manora - Tallest Lighthouse of Pakistan P11008351.jpg|Manora Lighthouse,[[Manora]], [[Pakistan]] +</gallery> + +=== ASV, Kanadā i Vydsamerikā === +<gallery> +Image:McClainLighthouse.jpg|[[McClain's State Park Lighthouse]], [[Upper Peninsula]], [[Michigan]] +Image:Nauset Light W.jpg|[[Nauset Light]] and lightkeeper's house, [[Eastham, Massachusetts]] +Image:Admiralty head Lighthouse.jpg|[[Admiralty Head Lighthouse]] Inactive, Whidbey Island, Washington +Image:Gibbs light.jpg|Gibbs Hill Lighthouse, [[Bermuda]], still in use +Image:Cape hatteras lighthouse img 0529.jpg| Cape Hatteras Lighthouse, [[North Carolina]] +Image:pointarena1908.jpg|[[Point Arena Light]] - California +Image:Cape Disappointment1.jpg|[[Cape Disappointment Light]]house +Image:Lighthouse in Nova Scotia.jpg|Pegis Pointā, Nova Skotejā +Image:NavassaLighthouse.jpg|Navasys jiursolā (pīdar ASV) Vydsamerikā +</gallery> + +=== Dīnavydamerikā === +<gallery> +Image:Joao Pessoa Paraiba Farol do Cabo Branco2.jpg| Cabo Branco Lighthouse, [[Joao Pessoa]], [[Brazil]] +</gallery> + +=== Australejā, Okeanejā, Jauņzelaņdejā === +<gallery> +Image:Cape_Borda_Lighthouse.jpg|Keipbordā, Kenguru jiursolā, Dīnavydu Australejā +Image:Cape_Reinga_Lighthouse_n.jpg|[[Cape Reinga]] Lighthouse, [[New Zealand]] +Image:ByronBayLightHouse.jpg|Cape Byron Lighthouse, [[New South Wales]], Australia +Image:Lighthouse in Nova Scotia.jpg|The [[Peggys Cove, Nova Scotia|Peggys Point lighthouse]] in Nova Scotia, Canada. +Image:Cape_Borda_Lighthouse.jpg|[[Cape Borda Lighthouse]], [[Kangaroo Island]], [[South Australia]] +Image:Portland_Bill_Lighthouse_2.jpg|Portland Bill lighthouse, [[Isle of Portland]], [[Dorset]] +Image:NavassaLighthouse.jpg | A 1999 photo of the [[Navassa Island]] lighthouse. The dilapidated lightkeepers quarters appear in the backgound. +Image:McClainLighthouse.jpg|[[McClain's State Park Lighthouse]], [[Upper Peninsula]], [[Michigan]] +Image:Nauset Light W.jpg|[[Nauset Light]] and lightkeeper's house, [[Eastham, Massachusetts]] +Image:Spurn_point_lighthouse.jpg|[[Spurn Point]] Lighthouse, [[East Riding of Yorkshire|East Yorkshire]], [[England]]. +Image:Admiralty head Lighthouse.jpg|[[Admiralty Head Lighthouse]] Inactive, Whidbey Island, Washington +Image:Strumble Head Lighthouse.jpg|[[Strumble Head Lighthouse]], Wales +Image:Strumble Head Lighthouse 2.jpg|[[Strumble Head Lighthouse]], Wales +Image:Neuwerk-Turm.jpg|[[Neuwerk]] Lighthouse, [[Hamburg]], [[Germany]], completed 1369 +Image:Eddystonelighthouse.jpg|The [[Eddystone Lighthouse]], situated off the coast of [[Cornwall]], [[England]]. +Image:ByronBayLightHouse.jpg|Cape Byron Lighthouse, [[New South Wales]], Australia +Image:Cape Disappointment1.jpg|[[Cape Disappointment Light]]house +Image:Bengtskar_lighthouse.JPG|The tall [[Bengtskär]] lighthouse also functions as a museum. +Image:pointarena1908.jpg|[[Point Arena Light]] - California +Image:Manora - Tallest Lighthouse of Pakistan P11008351.jpg|Manora Lighthouse,[[Manora]], [[Pakistan]] +Image:Joao Pessoa Paraiba Farol do Cabo Branco2.jpg| Cabo Branco Lighthouse, [[Joao Pessoa]], [[Brazil]] +Image:Cape hatteras lighthouse img 0529.jpg| Cape Hatteras Lighthouse, [[North Carolina]] +Image:Gibbs light.jpg|Gibbs Hill Lighthouse, [[Bermuda]], still in use +Image:Cape_Reinga_Lighthouse_n.jpg|[[Cape Reinga]] Lighthouse, [[New Zealand]] +Image:Portland Head Light.jpg, [[Portland Head Light]] +</gallery> + jgt3r9sto4r2r2usfpi882qspr48fvl + + + + Sports + 0 + 477 + + 31438 + 28353 + 2016-05-14T07:58:27Z + + Chenspec + 3458 + + wikitext + text/x-wiki + [[Fails:2013 IPC Athletics World Championships - 26072013 - Elena Pautova of Russia during the Women's 1500m - T12 first semifinal.jpg|thumb|Sports]] + +== Futbols == +* [[SK Blāzma]] - Rēznis futbola klubs +* [[Dinaburg FC]] - Daugpiļs futbola klubs + +== Hokejs == +* [[DHK Latgale]] - Daugpiļs hokeja komanda + +== Cytys sporta atmejis == +* [[Petanks]] +* [[Skeletons]] + +{{DEFAULTSORT:Sports}} + +[[Kategoreja:Sports| ]] + 02cf14ozxsls0skdetzftumyk0craza + + + + Stateiba + 0 + 478 + + 31572 + 28922 + 2016-08-30T14:42:44Z + + Chenspec + 3458 + + wikitext + text/x-wiki + [[Fails:Haarbaa Street רחוב הארבעה (2).JPG|thumb|Stateiba]] +'''Stateiba''' (anglīšu: ''construction''; krīvu: ''строительство''; latvīšu: ''celtniecība'') — materialuos [[pīgatave|pīgatavis]] atzare, kuramā sataisomys cylvāku darbeibys i byušonys vītai vajadzeiguos strukturys – sātys, taiseitovys, tūrni, cyti kuormi i [[statne|statnis]], infrastrukturys objekti i tt. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Stateiba]] + 0bcp2mcebqx5ot4iao0inrm6fwg1050 + + + + Statne + 0 + 479 + + 26601 + 26600 + 2012-12-31T01:03:05Z + + Turaids + 172 + + + Diveji vīnaidi rakstīņi. + wikitext + text/x-wiki + '''Statne''' (anglīšu: ''building, construction object''; krīvu: ''постройка''; latvīšu: ''celtne'') — [[stateiba|stateibys]] objekts ci stateibys rezultats, parostai taids, kurs pasaceļ augšuok zemis viersa – [[kuorms]], taiseitova, tūrņs, tylts i leidz. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Stateiba]] + tkqdplysawd35r7m3c1d1gzxsvinqmw + + + + Stefaneja Uļanovska + 0 + 480 + + 31291 + 10726 + 2016-02-06T12:33:11Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + '''Stefaneja Uļanovska''' (''Stefania Ulanowska'', biogr. ziņu navā) — vīna nu pyrmūs latgaļu folklora aizraksteituoju i tāmātuoju. + +XIX godusymta beiguos Viļānu apleicīnē aizrakstejuse 329 tautysdzīsmis i 75 puorsokys, juos kūpā ar latgaļu tradiceju aprokstim 1891 - 1892 g. publiciejuse Krakovys zineibu akademejis laidīnī ''Zbiór wiadomości do antropologii krajowej''. + +[[Kategoreja:Zeimeigi ļauds]] + tho3lzn9kun2fe0t21keb5ipvz5wodo + + + + Stefans Baginskis + 0 + 481 + + 11727 + 10727 + 2011-03-24T21:48:32Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Stefans Baginskis''' — pyrmais latgaļu religiskai filosofiskuos poezejis autors. + +Gruomota ''Kavieklis pesteigs'' („Kawieklis piestieygs”) (1808). + +Biografiskūs ziņu dokumentūs naatrūnama. Irā viņ zynoms, ka 19 gs. suokuos Baginskis bejs Styglovys parapejis prāvasts. Turūt pruotā juo lobuos latgaļu volūdys zinis, izcalta hipoteze, ka jis variejs byut vīns nu Kruoslovys dvēseliskuo seminara vuicinīku - lītaunīks voi puoļs, kurs piec īstyprynuošonys par bazneickungu atdarejs Latgolā pīsaceigūs 10 godu kai atleidzīni diecezei par juo paturiešonu seminara laikā, a piec laidīs iz sovu tāvaini. + +== Nūruodis i olūti == +Janina Kūrseite, Anna Stafecka "Latgola: volūda, literatura, folklors" ("Latgale: valoda, literatūra, folklora") Rēzne, 2003 + +{{DEFAULTSORT:Baginskis Stefans}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + s2f05os8zj5ef7a7f8xj0hxf3o0hc79 + + + + Stelenboša universitets + 0 + 482 + + 28355 + 23253 + 2013-03-07T20:00:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 15 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1066492]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Stelenboša universitets''' (afrikaans: ''Universiteit van Stellenbosch'', anglīšu: ''Stellenbosch University'') — vydtautyskai pīzeits universitets Stelenboša mīstā Dīnavydafrikā. Cyti tyvuokī universiteti — Keiptauna universitets i Vokorkeipa universitets. + +Īstateišonys gods - 1866<br /> +Tips - ļaudyskais universitets<br /> +Studentu skaits - 21 972<br /> +Dareituoju skaits - 2 430<br /> +Mīsts - Stelenbošs<br /> +Regions - Vokorkeips<br /> +Vaļsteiba - Dīnavydafrikys Republika<br /> +Izalikaliejums - 4 kompleksi<br /> +Studentu pasaukšona - ''maties''<br /> +Daleiba organizacejuos - AAU (Association of African Universities, ACU (Association of Commonwealth Universities), CHEC (Cape Higher Education Consortium), HESA (Higher Education South Africa), IAU (International Association of Universities)<br /> +Teiklavīta - http://www.sun.ac.za/<br /> + +Stelenboša universitetā tyka padarynuots pyrmais Afrikā atsarodušais mozais [[Zemis muoksleigī paceļnīki|Zemis muoksleigais paceļnīks]] - [[SUNSAT]], kuru komsosā palaide 1999 godā. + +== Viesture == +* 1866 g. marta 1 d. - niulejuo universiteta Humanitaruo fakuļteta kuormā atsadareja Stelenboša gimnazeja.<br /> +* 1881 g. - gimnazeja tyka par Stelenboša kolegeju. +* 1887 g. - kolegeja meja pasauku i tyka par Viktorejis kolegeju. +* 1918 g. apreļa 2 d. - Viktorejis kolegejai daškeire universiteta statusu i puorsauce par Stelenboša universitetu. + +== Vīta == +[[Stelenbošs]] (''Stellenbosch'') irā universiteta mīsts ar apmāram 90 000 dzeivuotuoju (naskaitūt studentu). Kūpa ar studentim dzeivuotuoju skaits viersej 110 000. Stelenbošs izalikaliejs irā apmāram 50 kilometrui nu Dīnavydafrikys golvysmīsta [[Keiptauna]]. Stelenbošs izalikaliejs ''Eerste Rivier'' ("Pyrmuos upis") moluos izslyvušajā veinadoru regionā, apleik mīstam pasaceļ vierīneigi kolni. Stelenboša universitets tur divejus golvonūs kompleksus, ''Tygerberg'' medicinys fakuļtetu, ''Bellville Park'' biznesa školu i ''Saldanha'' kareibys fakuļtetu. + +== Volūda == +Stelenboša universitetā vuiceibys pa lelumam nūteik Afrikaans volūdā, vaira vēļ pamata studeju i gūda kursu ledzīnī. Tok studentim breiv raksteit dorbus, testus i ekzamenus [[anglīšu volūda|angliskai]]. + +Doktoranturys studentim vuiceibu volūdu nūstota pa tam, kaidu studentu lelums irā grupā. Leluo daļa doktoranturys kursu skaitomi anglīšu volūdā. + +This is still an ongoing issue for the University, since it is one of the very few tertiary institutions left in [[South Africa]] offering tuition in [[Afrikaans]], as well as the very high regard it is held in the Afrikaner community, with the university being considered a central pillar of Afrikaner life. Most other institutions have always been English or have changed over to an English-only policy. + +== Fakuļteti i školys == +Stelenboša universitets tur apmāram 150 atdaļu, nu kuru sasadora 10 fakuļtetu. Taipoš universtitetam irā vaira kai 40 tiemiešonys instituceju. + +Universiteta golvonajā kompleksā irā itī fakuļteti: +* Humanitarais i socialūs zineibu +* Ekzaktūs zineibu +* Pedagogejis +* Solsaimesteibys i mežeibys +* Tīseibu +* Teologejis +* Ekonomikys i vaļdiszineibu +* Iņženerejis + +Uors golvonuo kompleksa irā itī fakulteti: +* Kareibys +* Medicinys + 3o8bt5fabrnjbmg8sbklh3m3jb2n0bt + + + + Strāpposts + 0 + 483 + + 32141 + 32136 + 2017-09-01T05:04:08Z + + Tegel + 618 + + + Novērsu izmaiņas, ko izdarīja [[Special:Contributions/94.254.242.154|94.254.242.154]] ([[User talk:94.254.242.154|Diskusija]]), atjaunoju versiju, ko saglabāja [[User:Addbot|Addbot]] + wikitext + text/x-wiki + '''Strāpposts''' ({{vol-en|pushmail, push-mail, push e-mail}}) — tehnologejis i sistemys, kurys ļaun serverī asūšajā e-posta skreineitē dabuotuos viestulis tiuleņ pat puorsyuteit iz [[Pruottelefons|pruottelefonu]] voi [[Plaukstinīks|plaukstinīku]]. + +Tradiceigajuos e-posta sistemuos viestule īīt pastinīkserverī i tī gaida, cikom dasaslēgs programa nu lītuotuoja ītaisis (parostai - datora) i puorsavērs, ci navā atguojuse jauna viestule. Programa dasaslādz pastinīkserveram vys par nūstateitu laiku. Ka jauna viestule irā atguojuse da servera, to programa jū puorsasyuta iz posta skreineiti lītuotuoja ītaisē (parostai datorā). + +Preteimā, strāpposta sistemuos jauna e-posta viestule serverī nagaida, jei puorsyutoma iz lītuotuoja ītaisi (parostai - [[Plaukstinīks|plaukstinīku]] ci [[Pruottelefons|pruotinīku]]) tamā pošā šaļtī, kod īguojuse pastinīkserverī. Tai tod, strāpposts tur jāgu tūlaik, kod lītuotuoja ītase bez puortraukuma dasaslāguse pi iņterneta i pi pastinīkservera. + +Strāpposts dūd vareibu sinhronizēt e-posta skaiteišonu i raksteišonu, kaleņdera i adresinis lītuošonu i datorā, i pruotinīkā. Pīvadumam, puorskaitūt strāpposta viestuli pruotinīkā i piec tuo verūtīs e-posta datorā, tei viestule automatiskai byus atzeimuota kai puorskaiteita. Cyts pīvadums - ar pruotinīku sovā kaleņderī īrokstūt jaunu sasatikšonu, piečuok jei redzēsīs kai īraksteita kaleņderī i datorā (itei sinhronizaceja nūteik serverī). + +Strāpposts vaira vēļ nūdareigs organizaceju dorbā, kod svareigai cīši dreiži meitīs viestulem, par reizi dazynuot pošu jaunuokū informaceju, sadarynuot dīnysparādu ar kolegom i kūpeigai planavuot sasatikšonys i tt. + +[[Kategoreja:Telekomunikacejis]] + 0dl11oud77zeqosc9sc6c8nn1hb8gnu + + + + Suomeja + 0 + 484 + + 31577 + 31262 + 2016-09-04T17:00:02Z + + Patamaski + 3609 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Suomi'''<br />'''Suomeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Finland.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Finland.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Finland.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || Sauli Niinistö +|- +| Ministru prezidents || Juha Sipilä +|- +|| Pluots || 338 424 km² +|- +|| Dzeivuotuoju skaits || 5 360 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Suomeja''' (suom.: ''Suomi'') — vaļsteiba [[Europa|Europā]]. + +== Dzeivuotuoju skaits == +<timeline> +ImageSize = width:440 height:200 +PlotArea = left:50 right:20 top:25 bottom:30 +TimeAxis = orientation:vertical +AlignBars = late +Colors = + id:linegrey2 value:gray(0.9) + id:linegrey value:gray(0.7) + id:cobar value:rgb(0.2,0.7,0.8) + id:cobar2 value:rgb(0.6,0.9,0.6) +DateFormat = yyyy +Period = from:0 till:6000000 +ScaleMajor = unit:year increment:6000000 start:0 gridcolor:linegrey +ScaleMinor = unit:year increment:1000000 start:0 gridcolor:linegrey2 +PlotData = + color:cobar width:20 align:center + bar:1800 from:0 till: 832700 + bar:1820 from:0 till: 1177500 + bar:1840 from:0 till: 1445600 + bar:1860 from:0 till: 1746700 + bar:1880 from:0 till: 2060800 + bar:1900 from:0 till: 2655900 + bar:1920 from:0 till: 3147600 + bar:1940 from:0 till: 3695617 + bar:1960 from:0 till: 4446222 + bar:1980 from:0 till: 4787778 + bar:2000 from:0 till: 5375276 + bar:2016 from:0 till: 5495830 + +PlotData= + textcolor:black fontsize:S + bar:1800 at: 832700 text: 0.83 shift:(0) + bar:1820 at: 1177500 text: 1.18 shift:(0) + bar:1840 at: 1445600 text: 1.45 shift:(0) + bar:1860 at: 1746700 text: 1.75 shift:(0) + bar:1880 at: 2060800 text: 2.06 shift:(0) + bar:1900 at: 2655900 text: 2.66 shift:(0) + bar:1920 at: 3147600 text: 3.15 shift:(0) + bar:1940 at: 3695617 text: 3.70 shift:(0) + bar:1960 at: 4446222 text: 4.45 shift:(0) + bar:1980 at: 4787778 text: 4.79 shift:(0) + bar:2000 at: 5375276 text: 5.18 shift:(0) + bar:2016 at: 5495830 text: 5.50 shift:(0) + </timeline> + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{commons|Finland|Suomeja}} +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Suomeja]] +[[Kategoreja:Pasauļa vaļsteibys]] + rggfww8fwcmpva2rcbc56n3gg7ve5uq + + + + Suņu saime + 0 + 485 + + 28974 + 28358 + 2013-03-08T15:47:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25324]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:NIEdot306.jpg|thumb|250px|Suņu saimys škiras]] +'''Suņu saime''' ({{Vol-la|Canidae}} G. Fischer, 1817; {{Vol-ru|псовые, или собачьи}}; {{Vol-lv|suņu dzimta}}) irā [[Dzeivinīki|dzeivinīku]] saime, ar 14 giņšu i 37 [[Škira|škiru]]. + +== Giņti == +* Zamsaime: Caninae +:* Giņts: ''[[Canis]]'' +:* Giņts: [[Lopsys]] +:* Giņts: ''[[Alopex]]'' +:* Giņts: ''[[Urocyon]]'' +:* Giņts: ''[[Nyctereutes]]'' +:* Giņts: ''[[Dusicyon]]'' +:* Giņts: ''[[Cerdocyon]]'' +:* Giņts: ''[[Chrysocyon]]'' +:* Giņts: ''[[Atelocynus]]'' +:* Giņts: ''[[Lycalopex]]'' +* Zamsaime: Simocyoninae +:* Giņts: ''[[Speothos]]'' +:* Giņts: ''[[Cuon]]'' +:* Giņts: ''[[Lycaon]]'' +* Zamsaime: Otocyoninae +:* Giņts: ''[[Otocyon]]'' + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Commons|Canidae|Suņu saime}} +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Suņu saime}} + +[[Kategoreja:Dzeivinīki]] + l200u3qg69je0w8e0gxfjgecd2rra1t + + + + Svahili volūda + 0 + 486 + + 31828 + 31802 + 2016-12-09T09:37:29Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31802 dated 2016-12-09 09:01:23 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + [[Fails:Swahili area.gif|thumb|Svahili volūdys paplateiba]] +'''Svahili volūda''' (''Kiswahili'') irā leluokuo [[bantu volūdys|bantu volūda]] i vīna nu zeimeiguokom volūdom [[Afrika|Afrikys]] koņtinentā. Svahili volūdā runoj vairuok kai 50 milijonu<ref name="marten">Lutz Marten, "Swahili", ''Encyclopedia of Language and Linguistics'', 2nd ed., 2006, Elsevier</ref> cylvāku, bet [[Dzymtuo volūda|dzymtuo]] jei irā tik 5—10 milijonim runuotuoju. Svahili irā [[Keneja|Kenejis]], [[Tanzaneja|Tanzanejis]] i [[Uganda|Ugandys]] oficialuo volūda, kai ari [[Afrikys Savīneiba|Afrikys Savīneibys]] dorba volūda. Austrumafrikā svahili cieški kolpoj kai ''[[lingua franca]]''. + +Piec M. Gatrija negenetiskuos bantu volūdu klasifikacejis svahili pīdar pi grupys G42. + +[[Roksts (raksteiba)|Rokstā]] teik lītuots [[latiņu alfabets]], kū aizvodova [[Kristīteiba|kristīšu]] [[Misionars|misionari]]. Pyrmuok tyka lītuots [[arabu alfabets]]. + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Commonscat|Swahili language}} +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Svahili volūda}} + +[[Kategoreja:Bantu volūdys]] + qmgkojzyenfoalso90w4h9hm6zy1it5 + + + + Sātparāds + 0 + 487 + + 28996 + 28360 + 2013-03-08T21:45:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2996710]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Sātparāds''' (anglīšu: ''housekeeping, household, everyday routine''; krīvu: ''быт, домашний обиход''; latvīšu: ''sadzīve, mājas rūpes'') — kasdīnys daguojumi, kurus ļauds dora sūpluok aizpeļnejamuo dorba, kab apmīreitu sovys vajadzeibys deļ puortykys, drēbu, dzeivuotovys i cytaida kasdīneiguo personiskuo komforta. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Sātparāds]] + 38puooq54j7e8af77p9rztoagyd74md + + + + Sīnuoja + 0 + 488 + + 31480 + 28361 + 2016-07-23T03:26:48Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Sīnuoja +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| gerba_atvaigs = Escut Zilupe.PNG +| gerba_pasauka = Sīnuojis gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 23 | lats = 07 | latNS = N +| longd = 28 | longm = 07 | longs = 19 | longEW = E +| nūvods = Sīnuojis nūvods +| pluots = 5 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 1 634 +| bīzeiba = 326,8 +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1931 +| posta_iņdekss = LV-5751 +| teiklavīta = www.zilupe.junik.lv +}} + +'''Sīnuoja''' — nalels mīsts pi Krīvejis rūbeža. Dzeļžaceļa mozgys, rūbežpunkts. + +== Viesture == +Vuords ''Zylupe'' (lv:''Zilupe'') atsarads 20 godusymtā kai agruokuos latgaliskuos pasaukys ''Sīnuoja'' aba ''Sīnupe'' tuoluoks napareizs "puorcālums" baļtīšu volūdā. Nu 1949 da 1959 gods Sīnuoja beja rajona centrys. + +== Teiklavītys == +* [http://www.zilupe.junik.lv/ourstory.htm Sīnuoja (baļtiski)] + +{{nadabeigts rakstīņs}} + +{{Sīnuojis nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Sīnuoja| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + 0dkci9aq4bkijoi898klfc4fvmirckb + + + + Talins + 0 + 489 + + 32125 + 32124 + 2017-07-29T06:40:40Z + + DARIO SEVERI + 3389 + + Atcēlu [[Special:Contributions/DARIO SEVERI|DARIO SEVERI]] ([[User talk:DARIO SEVERI|Diskusija]]) izdarīto izmaiņu 32124 + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Talins +| atvaiga_pasauka = Tallinn panorama from Toomkirik, June 2010.jpg +| atvaiga_aprakstejums = Talina panorama +| gerba_atvaigs = Tallinn wapen.svg +| gerba_pasauka = Talina gerbs +| karūga_atvaigs = Flag of Tallinn.svg +| karūga_pasauka = Talina karūgs +| koordinatu_zemislopa = +| latd = | latm = | lats = | latNS = N +| longd = | longm = | longs = | longEW = E +| pluots = 159,2 +| dzeivuotuoji_gods = 2010 +| dzeivuotuoju_skaits = 406 703 +| bīzeiba = 2 554 +| viesturiskuos_pasaukys = Reveļs, Revalis +| cytys_pasaukys = +| īstateits = 1154 +| mīsta_tīseibys = 1248 +| posta_iņdeksi = +| teiklavīta = www.tallinn.ee +}} +[[Fails:Vaade Oleviste tornist 2004.jpg|thumb|260px|Mīsta vierīņs nu Olava bazneicys tūrņa]] +'''Talins''' ({{Vol-et|Tallinn}}) — [[Igauneja|Igaunejis]] golvysmīsts i pats leluokais mīsts. Ite vysuzeimeiguo Igaunejis ūsta pi Suomu jiuru leiča pošūs vaļsteibys pūstumūs. Taipoš mīsts irā vysu leluokais industrejis i finansu centrys. Talina vacmīsts īlykts UNESCO pasauļa kulturiskuo puormaņtīņa sarokstā. Mīstā izaglobovuse vydslaiku pīstateiba ar sorgsīnu. Harjis apleiciņa administrativais centrys. + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of the United States.svg|25x15px|Amerikys Saškierstuos Vaļsteibys]] Anapaoļs, [[Amerikys Saškierstuos Vaļsteibys|ASV]] +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Belostoks, [[Puoleja]] +| [[Fails:Flag of the United Kingdom.svg|25x15px|Lelbritaneja]] Dartfords, [[Lelbritaneja]] +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Gdine, [[Puoleja]] +|- +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Gdaņskys, [[Puoleja]] +| [[Fails:Flag of Belgium.svg|25x15px|Beļgeja]] Geņte, [[Beļgeja]] +| [[Fails:Flag of Sweden.svg|25x15px|Švedeja]] Geteborgs, [[Švedeja]] +| [[Fails:Flag of the Netherlands.svg|25x15px|Nīderlandeja]] Groningens, [[Niderlaņdeja]] +|- +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Kīlis, [[Vuoceja]] +| [[Fails:Flag of Finland.svg|25x15px|Suomeja]] Kotka, [[Suomeja]] +| [[Fails:Flag of Poland.svg|25x15px|Puoleja]] Lomža, [[Puoleja]] +| [[Fails:Flag of the United States.svg|25x15px|Amerikys Saškierstuos Vaļsteibys]] Los Gatoss, [[Amerikys Saškierstuos Vaļsteibys|ASV]] +|- +| [[Fails:Flag of Sweden.svg|25x15px|Švedeja]] Maļme, [[Švedeja]] +| [[Fails:Flag of the United States.svg|25x15px|Amerikys Saškierstuos Vaļsteibys]] Portlaņdeja, [[Amerikys Saškierstuos Vaļsteibys|ASV]] +| [[Fails:Flag of Latvia.svg|25x15px|Latveja]] [[Reiga]], [[Latveja]] +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] [[Moskva]], [[Krīveja]] +|- +| [[Fails:Flag of Russia.svg|25x15px|Krīveja]] [[Pīterpiļs]], [[Krīveja]] +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Šverins, [[Vuoceja]] +| [[Fails:Flag of Italy.svg|25x15px|Italeja]] [[Veneceja]], [[Italeja]] +| [[Fails:Flag of Lithuania.svg|25x15px|Lithuania]] [[Viļne]], [[Lītova]] +|} + +== Galereja == +<gallery> +File:Reval, general view, 1890 - 1900 - edited.jpg|Talins 1890 gods karteņā +File:Tallinn wall 1.JPG|Talina vacmīsta vydslaiku sorgsīna +File:Good morning, Tallinn!.jpg|Vierīņs iz Talina bizneša centra +File:The passenger harbour of Tallinn in autumn.jpg|Pasažiru ūsta +File:Tram in Tallinn H9356 Raitiovaunu C.JPG|Talina tramvajs +</gallery> + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Igaunejis mīsti]] + 7a3l1eedhvurvyxiqodmmjy2ce58ius + + + + Teiceja + 0 + 490 + + 29772 + 12788 + 2013-04-14T23:09:05Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Teiceja''' — upeite Lubuona dīnavydu apleicīnī, iztak nu akača Teiču pūrā, vejās škārs Atašinis, Varakļuonu i Mūrmastinis pogosta, ītak [[Lubuons|Lubuonā]], garums 23 km. + +[[Kategoreja:Latgolys upis]] + 83z4393kgcxa0klxueu2mx1r7golrqs + + + + Teikluošonys termini + 0 + 491 + + 28363 + 25348 + 2013-03-07T20:02:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q504825]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Teikluošona''' (anglīšu: ''network'') — inženerejis diciplina, kura tiemej teiklu taiseišonu i vaļdeišonu iz vyds datoru. + +== Teikluošonys tehnologejis i termini == +== I == +* [[IP MPLS]] + +== M == +* [[IP MPLS|MPLS]] + +[[Kategoreja:Datu puorlaide]] + j8jk6xos3jywcsw598aaa5qsp5sm9rg + + + + Terezeja Broka + 0 + 492 + + 11738 + 10738 + 2011-03-24T21:50:12Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Terezeja Broka''' (1925) — latgaļu muzike, kordirigeņte, vuiceibu dareituoja. + +Dzymuse 1925 godā Rēznis apleiciņa (niu Viļānu nūvoda) Viļānu pogosta Zvidreņu solā zemnīku saimē. Vuicejusēs Rēznis 1 vydškolā i Rēznis muzykys vydškolā. Beiguse Jezupa Veitula Latvejis valsteibys koņservatorejis (niu Latvejis Muzykys akademejis) kordirigentu atdali. Nu 1954 da 2000 godam dareja Daugpiļs muzykys vydškolā (niu koledža), kas bejuse juos vīneiguo pamata dorba vīta. Vadejuse nazcik pošdarbeibys kolektivu, bejuse i pošu zynomuo Daugpiļs kora "Latgale" viersineica. Latgolys nūvoda Dzīšmu svātku, Školuotuoju koru saskrīšonys i VII Školu jaunīšu Dzīšmu svātku viersdirigeņte, taipoš XX, XXI i XXII Vyscaureigū latvīšu Dzīšmu svātku viersdirigeņte. Daudzu latgaļu tautysdzīšmu muokslyskuo apskaistu korim autore. Lela Latgolys nūvoda i kulturys patriote. + +Apduovanāta ar IV ailis Treju Zvaigžņu ordini i Ministru Kabineta apduovani (2005), Gūda daugpilīte (2005). + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Broka Terezeja}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 7tf4afn460khv46md5j674294mexp42 + + + + Tiervete + 0 + 493 + + 28364 + 23667 + 2013-03-07T20:03:00Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 8 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1973559]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Tiervetē''' — jau 1.g.t. leidz Kr. beja nūcītynuota apmetne i pilskolns. 13.g.s. suokumā - zemgaļu pretuošonuos kustebys centrs i daudzu dramatisku ceiņu oculīcineica. Vēļ 13.g.s. beiguos zemgali Nameiša vadeibā Tierveti spēja atkaruot i vuocīšus iz laika puordzeit nu vysys Zemgalis. 1286.g. kod uzvarēt vairs nabeja īspiejams, zemgali pili nūdadzynuoja. 1339.g. vuocīši vītā uzcēle myura pili. + +Niule Tiervete vairuok pazeistoma saisteibā ar A.Brigaderi (1861.—1933.) — literaruos puorsokys žanra kūpieju latvīšu literaturā. Te juos memorialuo sāta "Spreideiši", te — meža ainovu parks ar kūktieļnīka Krišjāņa Kugras (1904.—1979.) veiduotajim tālim i dendrarejs. Puori Tiervetis upeitei - Tiervetis piļskolns, vītejū dzeivuotuoju saukts ari par Cukra kolnu (Cukurkalns) — populara zīmys atpyutys vīta. + 2gvn1ukq0jieaytvzst1ogzxjghmk3s + + + + Trejmiereigs + 0 + 494 + + 28924 + 28365 + 2013-03-08T13:44:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q34929]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Trejmiereigs''' (anglīšu: ''three-dimensional''; krīvu: ''трёхмерный''; latvīšu: ''trīsdimensionāls, trīsdimensiju''): +* taids, kurs tur treis mārus – plotumu, garumu i dziļumu (pīv., trejmiereigs pluots, trejmiereigs objekts); +* taids, kurs saceļ realiska pluota īspaidu (pīv., trejmiereiga filma, trejmiereiga datorgrafika, trejmiereigs skons, trejmiereigs zeimiejums, trejmiereiga licine); +* taids, ar kuru var dabuot realiska pluota īspaida (pīv., trejmiereigs skeners, trejmiereiga modeliešona); +* taids, kurs apjam lītys ar augšuok puorsauktajom soveibom (pīv., trejmiereigs albums, trejmiereigs dizains). + rts11kw96obb9exmk512l6kpliha75f + + + + Turceja + 0 + 495 + + 30869 + 30698 + 2015-09-02T16:46:13Z + + CommonsDelinker + 2750 + + Replacing Türkiye_arması.svg with [[File:Coat_of_Arms_of_Turkey.svg]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: [[:commons:COM:FR|File renamed]]: [[:commons:COM:FR#reasons|File renaming criterion #2]]: Änderung komplett bedeutungslo + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Türkiye'''<br />'''Turceja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Turkey.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Turkey.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Turkey (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || +|-Ankara +|| Vaļsteibys volūda || +|- +| Prezidents || +|-Abdullah Gül +| Ministru prezidents || +|- +|| Pluots || 780 580 km² +|- +|| Dzeivuotuoju skaits || 72 500 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Turceja''' (turc.: ''Türkiye'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + ki8545ewtddcf8zfrz0eac5dtavezue + + + + Tvereiguo raisteiba + 0 + 496 + + 29128 + 28975 + 2013-03-11T10:42:53Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q131201]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Tvereiguo raisteiba''' (anglīšu: ''sustainable development''; krīvu: ''устойчивое развитие''; latvīšu: ''ilgtspējīga attīstība'') — taids zemis, vaļsteibys, regiona, mīsta, ekonomikys, kūpeibys i t. t. raisteišonys process, kurs apmīrej tānejuos vajadzeibys, nasamazynojūt atīsmis audžu vareibu apmīreit jūs vajadzeibys. + +Tvereiguos [[Raisteiba|raisteibys]] koņcepceja aizprosa sovā vydā sadarynuot resursu izlītuošonu, iņvesticejis, ziniskai tehniskuo progresa sūļus i politiskai ekonomiskūs sasprīdumus tai, kab jī styprynuotu niulejū i gaidomū poteņcialu, izlītojamu ciļviecis vajadzeibom i [[Snāgs|snāgim]] apmīreit. + +Latgaliskuo termina etimologejis pamatā — tautys [[soveibnīks]] ''tvereigs'' 'taids, kura gona ilgam laikam'. + +[[Kategoreja:Apleiczineiba]] + 003gm12of23l7tlnpkkq9ymyeu3lm14 + + + + Tygrys + 0 + 497 + + 30699 + 28368 + 2015-04-02T15:29:45Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|ru}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:A tiger in Pilibhit Tiger Reserve.jpg|thumb|250px|[[Bengalejas tygrs|Bengalejis tygri]]]] +[[Fails:Tiger map.jpg|thumb|250px|Tygra paplateiba pasaulī]] +'''Tygrys''' ({{Vol-la|Panthera tigris}}) irā leļs [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. Tygrys dzeivoj Dīnavydpustum [[Azeja|Azejā]]<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Panthera_tigris.html University of Michigan Museum of Zoology]</ref>. + +== Daudzatmejeiba == +Irā zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id2045/ BioLib] Profil taxonu — druh '''tygr ''Panthera tigris''''' (Linnaeus, 1758)</ref>: +* ''[[Amurys tygrs]]'' +* ''[[Kinejas tygrs]]'' +* ''[[Indokinejas tygrs]]'' +* ''[[Sumatrys tygrs]]'' +* ''[[Bengalejas tygrs]]'' +* ''[[Malajis tygrs]] +* †''[[Bali tygrs]]'' +* †''[[Kaspejis tygrs]]'' +* †''[[Javys tygrs]]'' + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Panthera tigris}} + +{{DEFAULTSORT:Panthera tigris}} + +[[Kategoreja:Dzeivinīki]] + 0fdc5doierde02rdefpejvjinkjnjkf + + + + Ukraina + 0 + 498 + + 31962 + 31598 + 2017-04-26T01:09:34Z + + 2A00:23C4:C2FA:5400:132:F168:F648:4824 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Україна'''<br />'''Ukraina'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Ukraine.svg|150px|border]] +| align="center" width="140px" | [[Fails:Lesser Coat of Arms of Ukraine.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe-Ukraine (disputed territory).svg|300px]] +|- +|| Golvysmīsts || [[Kijeva]] +|- +|| Vaļsteibys volūda || [[ukrainīšu volūda|ukrainīšu]] +|- +| Prezidents || Petro Porošenko +|- +| Ministru prezidents || Volodymyrs Groismans +|- +|| Pluots || 603 628 km² +|- +|| Dzeivuotuoju skaits || 43 000 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Ukraina''' (ukr.: ''Україна'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + dce11ear8l5s4in9y1mncz2umk0om93 + + + + Snīga leopards + 0 + 499 + + 30701 + 28976 + 2015-04-02T15:29:49Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|ru}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Lightmatter snowleopard.jpg|thumb|250px|''Snīga leopards'']] +[[Fails:Irbis range map.jpg|thumb|250px|''Snīga leoparda paplateiba'']] +'''Snīga leopards''' ({{Vol-en|snow leopard}}; {{Vol-ru|ирбис, снежный барс}}; {{Vol-lv|sniega leopards}}) — irā leluokais [[kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Snīga leopards'' dzeivoj [[Azeja|Azejā]] (Tibetys, Altajis, Kirgiz i Mongoļis kolnuos)<ref>[http://www.snowleopard.org/external_files/media/Snow-Leopard-Fact-Sheet.pdf Snow Leopard Fact Sheet]. Snow Leopard Trust (2008).</ref>. + +== Izavierīņs == +Auguma garums: 103—130 cm<ref name="sibirzvāri"/>;</br> +Astes garums: 90—105 cm<ref name="sr">В. Г. Гептнер, Н. П. Наумов. ''Млекопитающие Советского Союза. Хищные (гиены и кошки).'' — М.: Высшая школа, 1972. — Т. 2. — С. 206—241.</ref><ref name="sibirzvāri">Строганов С. У. ''Звери Сибири. Хищные.'' — М.: издательство Академии наук СССР, 1962. — С. 421—426. — 460 с. — 2000 экз.</ref>;</br> +Placu augstums: 60 cm<ref name="sibirzvāri"/>;</br> +Svors: muoteite - 22—40; tāviņš - 45—55 kg<ref name="sibirzvāri"/>. + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Commonscat|Uncia uncia}} +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Uncia uncia}} + +[[Kategoreja:Dzeivinīki]] + eiy9aapgo7ym5gkhhw55iijh1qjbn29 + + + + Vengreja + 0 + 500 + + 31958 + 31287 + 2017-04-26T00:58:34Z + + 2A00:23C4:C2FA:5400:132:F168:F648:4824 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Magyarország'''<br />'''Vengreja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Hungary.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Hungary.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Hungary.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļstiskuo volūda || +|- +| Prezidents || Jānošs Āders +|- +| Ministru prezidents || Viktors Orbāns +|- +|| Pluots || 93 030 km² +|- +|| Dzeivuotuoju skaits || 10 019 000 +|- +|| [[Laika zona]]<br />-vosor || +|} +'''Vengreja''' (veng.: ''Magyarország'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + th84hgjonufkp1shabl6vkzicla1f49 + + + + Uoraišu azara piļs + 0 + 501 + + 28372 + 11744 + 2013-03-07T20:04:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3743271]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Uoraišu azara piļs''' ir 9.-10.gs. latgaļu piļs - arheologu dokumentēta i pa dalei restaurēta (1975.-1979.g. i vēļuok). Itei [[Dzeļža laiki|dzeļža laiku]] mītne atsarūn Uoraišu azara (natuoli nu Cāsu) zamā saleņā. Tymā vītā lobi izglobuojušys senejūs kuormu palīkys i daudzi tuo laika prīkšmati. Tān populars viesturiskuo turisma objekts Latvejā. + +Uoraišu azara saleņā beja vīna laikmeta arheologiskuo kultura - bez cytu kulturu i cytu godu symtu uzsluoņuojumu. Ite atroktuos 151 kūka ceļtnis palīkys līcynoj ap tautys ceļtnīceibu 9.-10.gs. Zamiudiņa apstuokļūs ceļtņu palīkys i kūka, uodys prīkšmati, pynumi labi sasaglobuojuši. Kuormi Uoraišūs ciersti vīns pi ūtra 5 rynduos iz vairuok kai metru augsta kūka pamatu. Ustobys nalelys. Pi kotrys vēļ mozuoka pašaleite (pībyuve) saimnīceibys vajadzeibom. Jumts (vīlaiceigi ari grīsti) taiseits nu tīvu kūku i kuoršu, puorsadzūt tūs ar bārzu tuosem voi egļu myzom. Ustobuos - guļamuos luovys, sūli, plaukti, sīnuos - vadži. Ustobys vydā - nalela muola kruosne bez škūrstyna. Dyumi guoja uorā pa nalelim lūdzenim voi durovom. + +Piec [[Jānis Apals|Jāņa Apala]] - izrokumu vadeituoja dūmom, Uoraišu piļs ustobys ir leidzeigys vydslaiku Lītuvā izplateitajam kuormu veidam. Apmetnē vyslobuok saskaglobuojuse pyurmuo (nu pīcu) apbyuve. Tei ruodeja, ka t.s. azara piļs beja dūmuota senejūs latgaļu ikdīnys dzeivei i pasagluobšonai nu īnaidnīka (tei navā piļs reprezentacejai). Pili apjūze aozsorgvaļņs ar sīnu. Ar krostu savīnuoja vītom kūka tylts, vītom granta i akmiņu uzbārums iz dobys veiduotuo siekļa. Pietnīki dūmoj, ka piļs 10.g.s. tykuse nūdadzynuota i vairs nav atjaunynuota. Azaru mītnis kai jauns cylvāku apsamesšonys veids Latvejā pasaruodeja 1.g.t. 2.pusē. + +1983.g. pījimts Ministru Padūmis lāmums par Uoraišu azara apmetnis saglobuošonu i parka-muzeja izveiduošonu ap itū azaru. Apleicīnē ir ap 15 svareigu atškireiga vacuma arheologiskūs pīminekļu. + +{{DEFAULTSORT:Uoraiszu azara pilzs}} + +[[Kategoreja:Dzeļža laiki]] + 06gp77vvyue493ges0463vefosryyk8 + + + + Uorsaileiguo dabeigšona + 0 + 502 + + 28373 + 17199 + 2013-03-07T20:04:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2485819]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Uorsaileiguo dabeigšona''' — programys dorba bezlaiceiga puortraukšana, kurū saceļ operaciju sistemys klaida voi lītuotuoja atsateikūša komanda. + senjet96gxw6cc08ilp7cv8t8dw7ie3 + + + + Uralu palāda + 0 + 503 + + 29418 + 27831 + 2013-03-21T02:26:54Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 41 interwiki links, now provided by [[d:|Wikidata]] on [[d:q190083]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Uralu palāda +| atvaiga_pasauka = Strix uralensis.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Putni ''(Aves)'' +| aiļa = Palādini putni ''(Strigiformes)'' +| saime = Palādini ''(Strigidae)'' +| giņts = Palādys ''(Strix)'' +| škira = Uraline palāda ''(Trix uralensis)'' +| ziniskuo_pasauka = Trix uralensis +| zemislopys_atvaigs = Strix uralensis distr..png +| zemislopys_aprakstejums = Uralinis palādys paplateiba pasaulī +}} +'''Uralu palāda''' ({{Vol-la|Trix uralensis}}; {{Vol-en|Ural Owl}}; {{Vol-lv|Urālpūce}}; {{Vol-lt|Uralinė pelėda}}) — [[peliediņu saimis]] (''Strigidae'') [[palāda|palādu]] ciļts [[Putnys|putnys]]. Perekli taisa Pūstumu [[Eurazeja|Eurazejā]] nu [[Skaņdinaveja|Skaņdinavejis]] leidz [[Tuoleiji Reitimi|Tuoleimim Reitim]], gon cieški sateikams putyns [[Latgola|Latgolā]] i pūstumu [[Vydzeme|Vydzemē]]. + +== Aproksts == +Vīna nu pošu leluokū palādu, spuornu paplatīņs byun net 125 cm, garums da 62 centimetrim i aste 30 cm. Pamata kruosa gaišai palāka ar bryunom streipom.<ref>Strazds M. (red.) (2002): Latvejis meža putyni. Latvejis Ornitologejis bīdreiba.</ref> Taipoš kai cytom palādom, zeimeiguokuo pīzeime škiru nūsaceišonā irā bolss. Uralinis palādys gon labi redz i gaismā, kod nakod medej i dīnys laikā. + +=== Bolss === +Pacīši augsts "hau... hau... hau", muotaine kod nakod augstuoku "vak-vak" skonu. Rūjis laikā tāvainim dūbs "ūūūu u u-hu".<ref>Baumanis J. Klimpiņš V. (2003): Putyni Latvejā. Zvaigzne ABC.</ref> + +=== Dzeivisvīta === +Pa lelam dzeivoj nasausūs lelūs [[Skujukūki|skujukūku]] ci jauktūs mežūs, mežamoluos, pūrmoluos, pi mežapļovom i lyuzūs. Perekli taisa kūku dūbūs, cylvāka taiseitūs puļciņuos, vacuos cytu plieseigu putynu perekļuos, iz kūku stubuļnem. Nu apreļa mieneša pereklī 3-4 boltys ūlys. + +== Paplateiba == +Perekli taisa vysā [[Eurazeja|Eurazejis]] skujukūku jūstā, taipoš Skaņdinavejā kai areala vokoru rūbežā i [[Latgola|Latgolā]] kai golvonuo [[Europa|Europys]] [[areala]] dīnavydu rūbežā. Napalelā skaitā dzeivoj [[Reitu Europa|Reitu Europys]] i Vydseuropys kolnu regionūs, taipoš i [[Balkani|Balkanu]] dīnavydūs. [[Lītova|Lītovā]] cīši rats putyns. [[Azeja|Azejā]] perekli taisa Sibira [[Taiga|taigā]], Krīvejis Pijiurys nūvodā, Pūstumu [[Koreja|Korejā]] i vysā [[Japoneja|Japonejā]]. + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Commons|Strix uralensis|Uralu palāda}} + +{{DEFAULTSORT:Uralu palāda}} + +[[Kategoreja:Dzeivinīki]] + 40lnxtnbytwnv6ei3awo82ys4f1okuh + + + + Palākuo lopsa + 0 + 504 + + 28997 + 28374 + 2013-03-08T21:45:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q215250]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Urocyon littoralis standing.jpg|thumb|250px|Solu lopsa (''Urocyon littoralis'')]] +'''Palākuo lopsa''' ({{Vol-la|Urocyon cinereoargenteus}}); ({{Vol-ru|серые лисицы}}); ({{Vol-lv|Pelēkā lapsa}}) irā [[Suņu saime|suņu saimis]] (''Canidae'') plieseigū zvieru giņts. + +== Škiras == +Palākūs lopsu giņtī irā 2 škirys<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1904/ BioLib] Profil taxonu — rod liška ''Urocyon'' Baird, 1857</ref>: +* ''[[Urocyon cinereoargenteus]]'' (Schreber, 1775) +* ''[[Urocyon littoralis]]'' Baird, 1857 +* †''[[Urocyon progressus]]'' + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Urocyon}} + +{{DEFAULTSORT:Urocyon}} + +[[Kategoreja:Dzeivinīki]] + r4bhl2u6m64miwnd6iwp7klo7rbgr99 + + + + VEF I-11 + 0 + 505 + + 31834 + 31788 + 2016-12-09T09:37:54Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31788 dated 2016-12-09 08:59:11 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + Kod a/s "Christine Backman" kompaneja bankrotēja, juos golvonais konstruktors [[Kārlis Irbītis]] puorguoja dareitu iz [[VEF]]. [[1935 gods|1935 g.]] Kārlis Irbītis pasūleja VEF-am taiseit skrīnmašinis. Piec atsagrīzšonys nu Milana skrīnmašiņu paruodis, 1936 godā Irbītis konstruēja monoplanu I-11, kurs puorveice pasauļa rekordu pa dreizumam, bet tys natyka oficialai apstyprynuots (240 km atostumu nu Reigys da Kaunis I-11 īveice par stuņdi i divdesmit mynotu). + +1937 gods apreļa 26 d. VEF I–11 dabeidze 1000 km garu skriejīni augš Latvejis. Iz I-11 pamat Irbītis konstruēja vuiceibu iznycynuotivi I-12. + +<TABLE cellSpacing=0 cellPadding=0 border=0 width="600px"> +<TR> +<TD noWrap width=220 bgColor=#d8d8d8 height=15>'''Tehniskī parametri'''</TD> + <TD vAlign=top width=14 bgColor=#d8d8d8 + >&nbsp;</TD> + <TD align=right ></TD></TR></TABLE> + <TABLE borderColor=#d8d8d8 height=1 cellSpacing=0 borderColorDark=#d8d8d8 + borderColorLight=#d8d8d8 border=1> + <TR> + <TD vAlign=top width=210 height=12 + >Modeļs</TD> + <TD vAlign=top width=380 height=12 + >&nbsp; + I–11</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Spuorna māri, metrūs</TD> + <TD vAlign=top width=380 height=12 + >&nbsp; + </TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Garums, metrūs</TD> + <TD vAlign=top width=380 height=12 + > + &nbsp;7.1</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Augstums, metrūs</TD> + <TD vAlign=top width=380 height=12 + > + &nbsp;1.9</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Spuorna pluots, m2</TD> + <TD vAlign=top width=380 height=12 + >&nbsp;9.3</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Masa, kg</TD> + <TD vAlign=top width=380 height=12 + >&nbsp; </TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >&nbsp;&nbsp;tukša skrīnmašine</TD> + <TD vAlign=top width=380 height=12 + >&nbsp;</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >&nbsp;&nbsp;maksimaluo pasaceļšonys + masa</TD> + <TD vAlign=top width=380 height=12 + >&nbsp;</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Motora tips</TD> + <TD vAlign=top width=380 height=12 + > + &nbsp;1x</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Motora vare, z.s.</TD> + <TD vAlign=top width=380 height=12 + > + &nbsp;90</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Maksimalais dreizums, km/h</TD> + <TD vAlign=top width=380 height=12 + > + &nbsp;230</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Kreiserdreizums, km/h</TD> + <TD vAlign=top width=380 height=12 + >&nbsp; + </TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Nūskrīšonys tuolums</TD> + <TD vAlign=top width=380 height=12 + >&nbsp;800 km</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Pasaceļšonys dreizums, m/min</TD> + <TD vAlign=top width=380 height=12 + >&nbsp;</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Vysulelais skrīšonys augstums</TD> + <TD vAlign=top width=380 height=12 + >&nbsp;4000</TD></TR> + <TR> + <TD vAlign=top width=210 height=12 + >Ekipažs, cylv.</TD> + <TD vAlign=top width=380 height=12 + >&nbsp; + 2</TD></TR></TABLE> + +== Nūruodis == +* Atdale [http://latvianaviation.com/VEF_I-11.html VEF IRBITIS I-11] teiklavītā [http://latvianaviation.com/ LatvianAviation.com] +* Atdale [http://www.bruninieki.narod.ru/vefi11.html VEF IRBITIS I-11] teiklavītā [http://www.bruninieki.narod.ru/ PIEKTĀ OKEĀNA BRUŅINIEKI] +* [http://izgudrojumi.lza.lv/latv/izgudrotaji/IrbitisK_f.asp Fotoalbums] + 4cj73mcg396zmukmp5px7xx53v8vdt6 + + + + Valeņtina Bruzgule + 0 + 506 + + 11747 + 10752 + 2011-03-24T21:51:45Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Valeņtina Bruzgule''' (1938) — latgaļu kulturys dareituoja, muzejneica, latgaliskuos kulturys atdzimšonys vadynuotuoja. + +Dzymuse 1938 g. Dagdys nūv. Aņdzeļu pogostā. 20 godu atdarejuse par školuotuoju Latgolys školuos. 1976 - 1984 g. bejuse Rēznis mīsta kulturys pīminiekļu sardzeibys inspektore. Itymā laikavydā tiemiejuse daudzejis nūvodnīku pīminis vītys, arhitekturys pīminiekļus. Suocūtīs atdzimšonai 1998 godā, īsavadynuojuse latgaliskuo kulturys populariziešonys dorbā. Daudzi dasalykuse sataisūt pīminis vītu viesturnīkam B. Brežgai, pyrmuo latgaļu kaleņdera laidiejam G. Maņteufeļam, īstotūt i īriedejūt latgaļu bazneicnīka, literata i politika Fr. Trasuna muzeju ''Kolnasāta'' (atdareits 1992 g. augusta 11 d., vaļstiskuos zeimeibys kulturys pīminiekļa statuss nu 1994 g.). + +Par īlicīni Latgolys kulturys raisteibā V. Bruzgulei daškierts Lelais folklora apduovaņs (2001) i Treju Zvaigžņu ordiņa sudabrine Gūda zeime (2003). + +{{DEFAULTSORT:Bruzgule Valeņtina}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + oc723zcaz2saja74498m5bcasolarfi + + + + Valna pādi + 0 + 507 + + 11748 + 10753 + 2011-03-24T21:51:52Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Valna pādi''' — geologiskais dobys pīminieklis [[Rēznis nūvods|Rēznis nūvoda]] [[Nautrānu pogosts|Nautrānu pogostā]]. + +Vīta – 2 [[Kilometris|kilometri]] iz [[Pūstumreiti|PR]] nu [[Rogouka|Rogoukys]], iz vyds Rogoukys – [[Mežvydi|Mežvydu]] i Rogoukys – [[Dekteri|Dekteru]] ceļu, kryumūs. Koordinatys: N 56°42'59,9" E 27°26'48,1". + +7 garonys dūbis, kurys vērtinē stīpās 1 km garumā. Mežvydu ceļa [[Dīnavydi|D]] molā irā poša leluo dūbe – Valna pāds, juos [[garums]] 80 [[Metris|m]], [[plotums]] 50 m, [[dziļums]] 8 m. Tuoļuok iz pūstumim cytys dūbis – Vierša līkne, Līpeņa, Ūgu pūreņš i ct. + +Valna pādi irā [[Glaciokarsts|glaciokarsta]] [[Īdūbs|īdūbi]], pasadarejuši piec [[Ladslaiki|ladslaiku]] izalaižūt [[Morena|morenysmaterial]]ā aizdareitim lads gobolim. + +Pa pīstuoškim, Valna pādus īmiņs Valns nasdams gryutu akmiņu maisu. + ndesj80vg416h4oh09ormzedcy7wnp1 + + + + Varakļuoni + 0 + 508 + + 31483 + 28376 + 2016-07-23T18:43:38Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Varakļuoni +| atvaiga_pasauka = Stadtschloss Varakļāni (Lettland).jpg +| atvaiga_aprakstejums = Varakļuonu piļs +| gerba_atvaigs = Varaklani gerb.png +| gerba_pasauka = Varakļuonu gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 36 | lats = 37 | latNS = N +| longd = 26 | longm = 45 | longs = 09 | longEW = E +| nūvods = Varakļuonu nūvods +| pluots = 5,33 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 1960 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 367,7 +| viesturiskuos_pasaukys = {{Vol-de|Warkland}} +| cytys_pasaukys = {{Vol-lt|Varaklianai}} +| īstateits = +| mīsta_tīseibys = 1928 +| posta_iņdekss = LV-4838 +| teiklavīta = www.varaklani.lv +}} + +'''Varakļuoni''' — napalels mīsts Reitulatvejis zamainē, lelceļa Jākubmīsts-Rēzne-Terehova (A12) molā. Viesturiskai pasadarejs kai tierdzinīku mīsts, 1925 godā 1356 mīsta dzeivuotuoji beja žydi. Varakļuonūs irā piļs i div katuoļu bazneicys. + +{{nadabeigts rakstīņs}} + +{{Varakļuonu nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Varakļuoni| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + jgixva083plakcsdhfhimfd6blafsef + + + + Varakļuonu nūvods + 0 + 509 + + 28377 + 23293 + 2013-03-07T20:05:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q432596]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Varakļuonu nūvods +| zemislopa = Varakļānu novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Varakļuonu nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Varakļuoni +| pluots = 279 +| dzeivuotuoju_skaits = 3 941 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 14,1 +| īstateits = 2009 +| teritoriskais_dalejums = [[Mūrmastinis pogosts]] <br /> [[Varakļuoni]] <br /> [[Varakļuonu pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.varaklani.lv +}} + +'''Varakļuonu nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], kas sasadora nu [[Varakļuoni|Varakļuonu]] mīsta i divejim pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Varakļuonu nūvods| ]] + 6zsb6kkspj5n101l8uyo2r7criyjtsd + + + + Vatikans + 0 + 510 + + 29650 + 28378 + 2013-04-07T07:55:55Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q237]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Vaticanæ'''<br />'''Vaticano'''<br />'''Vatikans'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Attēls:Flag of the Vatican City.svg|150px|border]] +| align="center" width="140px" | [[Attēls:Coat of arms of the Vatican City.svg|150px]] +|} +|- +| align=center colspan=2 | [[Attēls:LocationVaticanCity.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Papeižs || [[Benedikts XVI]] +|- +| Ministru prezidents || [[Giovanni Lajolo]] +|- +|| Pluots || 0,44 km² +|- +|| Dzeivuotuoju skaits || 829 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Vatikans''' (lat.: ''Vaticanæ''; ital.: ''Vaticano'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + af3ds76oqsn36ij8olbiam2hntn266j + + + + Vaļds Lauskys + 0 + 511 + + 28379 + 11751 + 2013-03-07T20:06:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4255226]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Vaļds Lauskys''' (taipoš: ''Valdis Lauskis, Валдис Лаускис''; dzims 1957 g.) — vīns nu pošu zeimeiguokūs [[Latgola|Latgolys]] politiku, Latvejis 7 Seimys deputats, pošvoldu deputats, latgaliskuos kulturys atdzimšonys vadynuotuojs i atspaiduotuojs. + +Dzims [[Daugpiļs|Daugpilī]] 1957 g. apreļa 29 d., beidzs Daugpiļs 1 vydsškolu, [[Daugpiļs universitets|Daugpiļs universiteta]] Fizikys i matematikys fakuļtetu. Piec universiteta [[Ukraina|Ukrainā]] beja profesionals volejbolists [[SSRS]] vysuaugstajā ligā. 1986 godā grīzēs da Daugpiļs, beja Daugpiļs 1 vydsškolys direktora vītinīks. + +Suocūtīs Atdzimšonai, īsavadynuoja politikā, beja Tautys fronta aktivists, nu 1990 goda — Latvejis demokratiskuos dorba partejis Daugpiļs atdalis vadeituojs. + +1990 godā, kod cēlēs pretiveiba iz vyds Daugpiļs mīsta pošvolda i Latvejis Republikys lykumu (mīsta pošvolds jēme napīzeit tūs sasprīdumu, kuri styprynuoja Latvejis napavaļdeibu), V. Lauskys sataiseja Demokratiskūs spāku padūmi, kura Daugpilī atspaiduoja Latvejis napavaļdeibu. Kūpā ar dūmubīdrim Lauskys sataiseja ''Demokratiskū radeju'', kura beja svareigs atsvors prosovetiskajai agitacejai. Demokratiskūs spāku padūme daudzi dasalykuse pi tuo, ka 1991 g. marta 3 d. referendumā 51,3% Daugpiļs dzeivuotuoju nūbolsuoja par Latvejis napavaļdeibu. + +1991 gods septembra 20 d. Latvejis Pošaugstuo padūme pījēme sasprīdumu atstateit Daugpiļs mīsta pošvoldu i pazeimuot laiceigū mīsta voldu, kurs puordrūsynuotu demokratiskys ībolsuošonys organizeišonu. V.&nbsp;Lausku paškeire par laiceiguo volda pirminīku, jis vadeja mīsta vaļdi da 1994 gods, kod pošvolda ībolsuošonā par Daugpiļs meru tyka A.&nbsp;Vidavskis. + +V.&nbsp;Lauskys beja Daugpiļs pošvolda deputats, 7 Seimys deputats, [[Latgolys demokratiskuo parteja|Latgolys demokratiskuos partejis]] pirminīks, LSDSP pirminīka vītinīks. + +V.&nbsp;Lauskys irā vīns nu tūs politiku, pateicūt kurim Latvejis Vaļstiskuos volūdys lykumā īraksteita norma ap vaļsteibys garantejom latgalīšu volūdys apsardzeibai i [[Raisteiba|raisteibai]]. + +{{DEFAULTSORT:Lauskys Vaļds}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + m0b5t8wxcbmyxx87a366um7fzc0e63z + + + + Vaļds Zeps + 0 + 512 + + 28380 + 20916 + 2013-03-07T20:06:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801540]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Vaļds Zeps''' (1932 — 1996) — latgaļu volūdzininīks, rakstinīks. Dzims [[Daugpiļs|Daugpilī]], nu 1944 g. dzeivuojs ASV. Sagvuordi ''Kaņču Jezups, Andrzey Lurba, Jānis Trubads''. + +Gruomota ''Latgolys vītvuordi: Reitulatvejis toponimu vuordineica'' ("The Placenames of Latgola: a Dictionary of East Latvian Toponyms", 1984). ubliciejs tiemiejumus latgaļu tautysdzīšmu metrikys tiemiejumus, bāgaleibys latgaļu literaturu. + +{{DEFAULTSORT:Zeps Vaļds}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 7dsyi30hpcsvd0n0t5tnqhnwxkd6akx + + + + Vaļstiskūs veiduojumu suokumi Latvejā + 0 + 513 + + 11753 + 10758 + 2011-03-24T21:52:42Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + Senejom latvīšu pyrmtautom — kuršim, zemgalim, latgalim, sielim i lībīšim, 10.-12.g.s. nasaverūt iz kūpumā atteisteitū saimnīkuošonu, kūpeigu feodalu vaļsti izveiduot naīsadeve. Organiziešonuos suokumi atrūnami vysā Latvejā. [[Kurši|Kuršu]] golvonuos zemis - Piļsāts, Megova, Duvzare, Ceklis, Pīmare. Hronistu pīmināts slovonuokais kuršu vaļdinīks - Lamekins. + +[[Zemgaļi|Zemgaļu]] golvonuos zemis - Tiervete, Upmale, Dūbele, Spuornine, Siline, Rakte, Dūbe. Stypruok nūcītynuotuos piļs - [[Tiervete|Tiervetē]] i [[Mežūtne|Mežūtnē]]. Slovonuokais vodūņs Vīstarts (Vīsturs), bet 13.g.s. beiguos - Nameiss. + +Rokstu olūtūs pīmynāti ari 4 leluokī lībīšu apdzeivuotī nūvodi - Daugova, Turaida, Metsepole, Idumeja. Stypruok nūcītynuotuos piļs ir Lelvuordē i Aizkrauklē, svareigs tierdzeibys centrs - Daugmale ([[Daugova|Daugovys]] kreisajā krostā 22 km iz augšu nu Reigys). Slovonuokī vodūni Ako (piļs Solyspilī voi tūreizejā Muorteņsolā) i Kaupo (piļs Turaidā). + +[[Kategoreja:Agreimī vydslaiki]] + g39stacqgrjzs7bjsl8416e6iw6360o + + + + Veice + 0 + 515 + + 20622 + 11754 + 2012-02-02T21:23:02Z + + Robbot + 154 + + + r2.7.2) (robots izņem: [[ru:Воздействие]] + wikitext + text/x-wiki + '''Veice''' (anglīšu: ''effect, impact''; krīvu: ''воздействие''; latvīšu: ''iedarbība'') — process, kurymā vīns subjekts, objekts ci pasaruodīņs puormej ūtru subjektu, objektu ci pasaruodīni, ar jū sasadūrdams i damāruodams sovu energeju, vari voi soveibys; taipoš - subjekta, objekta voi pasaruodīņa vareigums aizsuokt itaidu procesu. + +Pīvadumi: ''cylvāka veice iz dobu, [[Laitiešona|laitiešonys]] veice iz uodu, zuoļu veice, [[Saulis spaiti|saulis spaitu]] vieleiguo veice, [[Apleice|apleicis]] trūkšņa navieleiguo veice iz veseleibu, [[Radioaktivais spaitīņs|Radioaktivuo spaitīņa]] vuodeiguo veice''. + fcu38lgcd7yguohyw6q1p6ansyb5gj2 + + + + Veirīts + 0 + 516 + + 31717 + 31716 + 2016-11-05T09:17:26Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[Fails:David von Michelangelo.jpg|thumb|150px|Mikelandželys skuļptura "Davyds".]] +'''Veirīts''' (anglīšu ''man'', latvīšu ''vīrietis'', krīvu ''мужчина'') – [[Cylvāks|cylvāku]] (''Homo sapiens'' ) škirys veiriškuos kuortys pīstuovs. Termins ''veirīts'' zeimoj saaugušu cylvāku, cikom ''puiškyns'' – veiriškuos kuortys bārnu. Folklorā i runysvolūdā veirīša sauc taipat i par '''veiru'''. + +[[Kategoreja:Medicina]] + a3v61d0a9qt8yjxorle8568rgy3xohe + + + + Veremu pogosts + 0 + 517 + + 28382 + 16051 + 2013-03-07T20:06:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801209]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Veremu pogosts +| zemislopa = Vērēmi parish LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Veremu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Veremu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Rēznis nūvods +| centrys = Sondori +| pluots = 70,3 +| dzeivuotuoju_skaits = 1768<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1768 / 70.3 round 1}} +| īstateits = 1945 +| teiklavīta = www.veremi.lv +}} + +'''Veremu pogosts''' irā [[Rēznis nūvods|Rēznis nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrys [[Sondori|Sondorūs]], 7 km atstotumā nu [[Rēzne|Rēznis]] mīsta. + +== Rūbeži == +Veremu pogosts tur rūbežu ar: +* [[Rēznis nūvods|Rēznis nūvoda]] [[Audreņu pogosts|Audreņu]], [[Bieržgaļa pogosts|Bieržgaļa]], [[Greiškānu pogosts|Greiškānu]], [[Iļžukolna pogosts|Iļžukolna]], [[Leņdžu pogosts|Leņdžu]] pogostu i [[Rēzne|Rēznis]] mīstu. + +== Dzeivuotuoji == +=== Solys === +Veremu pogosta teritorejā irā 41 sola.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +{| style="background:transparent;" cellspacing="0" cellpadding="0" +|- valign="top" +| +{| class="wikitable" +! Tips +! Solys +! Dzeivuotuoji <br /> <small>(2004)</small> +|- +|rowspan="3" align="center"| Vydyskuos <br /> solys +| [[Odumova]] +| 180 +|- +| [[Sondori]] +| 552 +|- +| [[Škeneva]] +| 129 +|- +|rowspan="2" align="center"| Mozuos solys +| [[Svikili]] +| 9 +|- +| [[Tūmuži]] +| 72 +|- +|rowspan="16" align="center"| Skrajeniskuos <br /> solys +| [[Biksinīki]] +| 26 +|- +| [[Burzova]] +| 48 +|- +| [[Djogi]] +| 40 +|- +| [[Gajova]] +| 10 +|- +| [[Greivuļi]] +| 60 +|- +| [[Grybuli]] +| 24 +|- +| [[Gubynova]] +| 20 +|- +| [[Iugulova]] +| 45 +|- +| [[Jaunborisova]] +| 15 +|- +| [[Jermolys]] +| 29 +|- +| [[Jurki]] +| 42 +|- +| [[Juškāni]] +| 10 +|- +| [[Kleperova]] +| 31 +|- +| [[Kolna Ančupāni]] +| 46 +|- +| [[Krampova]]<ref>[http://www.veremi.lv/index_files/kartes/ter_plan11_07.pdf Veremu pogosta teritorejis planavīņs 2006—2018 godim]</ref> +| 1 +|- +| [[Lejas Ančupāni]] +| 86 +|} +| +{| class="wikitable" +! Tips +! Solys +! Dzeivuotuoji <br /> <small>(2004)</small> +|- +|rowspan="20" align="center"| Skrajeniskuos <br /> solys +| [[Loborži]] +| 6 +|- +| [[Meļņova]] +| 59 +|- +| [[Mežagaili]] +| 5 +|- +| [[Obricki]] +| 33 +|- +| [[Olūtnīki]] +| 8 +|- +| [[Petrovka]] +| 6 +|- +| [[Plikpūrmoli]] +| 39 +|- +| [[Pūrmoli]] +| 12 +|- +| [[Pustinki]] +| 15 +|- +| [[Ratinīki]] +| 11 +|- +| [[Rublevski]] +| 6 +|- +| [[Rūdzis]] +| 17 +|- +| [[Silinīki]] +| 8 +|- +| [[Skudris]] +| 18 +|- +| [[Stučeva]] +| 12 +|- +| [[Škierbinīki]] +| 9 +|- +| [[Taudejāni]] +| 11 +|- +| [[Vacborysova]] +| 58 +|- +| [[Veremis]] +| 18 +|- +| [[Zeļteni]] +| 20 +|} +|} + +== Nūruodis == +{{Nūruodis}} + +== Teiklavītys == +* [http://www.veremi.lv/ Veremu pogosta teiklavīta] +* [http://www.rezeknesnovads.lv/ Rēznis nūvoda informativais portals] + +{{Rēznis nūvods}} + +[[Kategoreja:Veremu pogosts| ]] + o96ks6gv2x4kn26s6d270115ashprjk + + + + Viesteitivi + 0 + 518 + + 31428 + 28383 + 2016-05-04T15:16:34Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Viesteitivi''' (anglīšu: ''mass media''; krīvu: ''СМИ, средства массовой информации''; latvīšu: ''plašsaziņa; plašsaziņas līdzekļi'') — leidziekli, kuri vareigi dūt informaceju seviški plotam ļaužu rotam, gona lelai [[Ļaudeiba|ļaudeibys]] daļai. + +Šauruokajā i tradiceigajā zeimeibā par viesteitivim īskaita [[Prese|presi]], [[Radeja|radeju]] i [[Televizeja|televizeju]]. Myuslaikūs pi viesteitivu šauruokuos zeimeibys var dalikt vēļ iņterneta ziņu [[Portals|portalus]], elektroniskūs laidīņus. + +Plotuokajā zeimeibā viesteitivu sapratīņs apjam sevkotru zynuošonuos [[Kanals|kanalu]], kura izlaižamū informaceju gatavej samārā napalela dareituoju grupa i daboj (puorskaita, izdzierst, īsaver) nasaleidzynojamai daudzuok ļaužu. Ite pīdar skonu īroksti, filmys, gruomotys, vyss [[iņternets]] i ct. + +== Latgolys i latgaļu viesteitivi == +* [[Latgaļu viesteitivu saroksts pa alfabetam]] +* [[Latgaļu viesteitivu saroksts pa izīšonys godim]] + +== Verīs taipoš == +* [[Viesteitivs]] + +[[Kategoreja:Viesteitivi]] + lp85ky1nhii9g30obw21chmgsacx1ze + + + + Viesture + 0 + 519 + + 28384 + 28102 + 2013-03-07T20:07:05Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 182 interwiki links, now provided by [[d:|Wikidata]] on [[d:q309]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Viesture''' + +Rakstīni viesturis kategorejā: +* [[Pyrmaviesture]] +* [[Kinīšu vaļdinīku saroksts]] + +[[Kategoreja:Viesture]] + 8peh2ejh88u3sxmhh3kxyovjodcrf2a + + + + Vikipedeja + 0 + 520 + + 29908 + 28385 + 2013-06-21T19:21:50Z + + JAnDbot + 160 + + + incorrect interwiki + wikitext + text/x-wiki + [[Fails:Wikipedia-logo-ltg.png|thumb|Latgaļu Vikipedejis logotips]] +[[Fails:Wikipedia-logo-v2-ltg.png|thumb|Jauns latgaļu Vikipedejis logotips]] +'''Vikipedeja''' ({{Vol-en|Wikipedia}}) — daudzivolūdeiga škārsteikla eņciklopedeja ar breivu turīni. Jei pīraksteita, izlītojūt [[wiki]] tehnologeju. Vikipedejis infrastrukturu patur napeļneiguo organizaceja 'Wikimedia Foundation', kura daboj pazīdu nu vysa pasauļa. + +== Kūpeiga dazynuošona == +Eņciklopedejis rakstīņūs pasūleitū informaceju breiv na viņ skaiteit, a i puorspīst i cytaiži plateit; autortīseibys iz informaceju irā cīši aprūbežuotys. Vysu itū turīni pīrakstejuši skaiteituoji - ci registrāti lītuotuoji, ci anonimi gosti. Vikipedejis anglīšvolūdeigais projekts aizasuoce 2001 gods janvara 15 dīnā. Na par ilgu atsaroda taidi poši projekti i cytuos volūduos. 2005 gods decembra mienesī suocēs dorbs pi latgaļu Vikipedejis testa versejis. + +== Vikipedejis lobums == +=== Rakstīņu skaits === +Itū enciklopedeju (anglīšu volūdā) regularai papylda tyukstūšys cylvāku, kuri labi zyna sovu omotu i muok raksteit saprūtamai. + +Tai var labi konkurēt ar komercialom [[Eņciklopedeja|eņciklopedejom]]. Anglīšu ''Vikipedejā'' [[2006]] gods beiguos beja kaidys 960 tyukstūšys rakstīņu (5-10 reižu vaira kai [http://www.britannica.co.uk/ Britannica] - lelajā Britu eņciklopedejā). A latgalim izdrukavuotys myuslaiceigys eņciklopedejis navā vysā, partū ''Vikipedejai'' ite var byut unikala role, ka byus koč nazcik desmišu ļaužu, kuri ite raksteis ap vysaidom zineibys i ļaužu dzeivis atzarem. + +=== Guodu boguotums === +''Vikipedeja'' navā atsaceiga vīnai ļaužu grupai, partū jamā irā daudzipuseiga dazynuošona i visaidi redzīni. Vītys ite atlycyn, i tys ļaun apsavērt temu lobuok na parostajuos, drukavuotajuos [[Eņciklopedeja|eņciklopedejuos]]. + +=== Moksa === +Informaceja ''Vikipedejā'' namoksoj nikuo, jei pasūloma sadareibā ar [[Vikipedeja:Copyrights|GNU Breivuos dokumentacejis liceņceju]], partū pi juos datikšona irā vysim, kurim gribīs. Cytys eņciklopedijys duordži moksoj i Latvejā juos moz drukavoj i puordūd. + +== Vikipedejis kritika == +Vysu breivai papyldomajā [[Eņciklopedeja|eņciklopedejā]] izagoda i tryukumi, kurus juos kritiki pīmiņ saceidami, ka ''Vikipedejis'' projekts nadereigs voi nūlykts nalūbei. Cieškuok dzierdātī kritiku argumenti taidi: + +=== Vandali === +Kuri nakuri cylvāki teišom samaitoj ''Vikipedejis'' rakstīņus, izsvīž jūs turīni i leidzeigai. Nazcik kritiku pasasacejuši, ka Vikipedejis projekta raisteiba i rakstīņu skaita lelynuojums davess da lela [[Vikipedeja:Vandaļu gors|vandalizma]] i projekts nūmiers pats nu sova haosa i anarhejis. Vys jau irā zynoms, ka ļaužu, kuri grib grīztīs da loba parāda , irā daudzuok kai [[Vandaļu gors|vandaļu]], deļ tuo samaituotī rakstīni dreiži atsagrīž da napasenejuos lobuos versejis (tū ļaun Vikipedejis programatura). Atsagrīžūt pi agruokuos versejis, par nazcik sekunžu var izlobuot sovvaļnīku padareitū bādu. + +=== Profanaceja === +Var lomuot ''Vikipedeju'' par informacejis naprofesionalumu. Leluma ļaužu dūmi naatsateik objektivim zineibys faktim. Partū daudzeji parostī datoru lītuotuoji var napīzeidami akademiskūs autoritetu puortaiseit rakstīņus kaidā naviņ napareizā atmejā. Tok dzeivē tai goduos reši - taišni autoritets, a na profani var aizastuot par sovu iņterpretaciju i pīminēt taidus faktus, kirūs i profani var pazeit kai pareizus i tycamus. + +=== Politkorektums === +Izagoda, ka Vikipedeja nasatur pi politkorektuma aizprasejumu. Atsarūn vaicuojumi, ap kurim vajag raksteit maneigai, kab naīļaunuotu cytu Vikipedejis lītuotuoju. Taidu vaicuojumu, ticīs, nabyus daudzi; gruomotuos izdrukavuotuos eņciklopedejis vēļ cīšuok komojās ar politkorektumu. + +=== Streideibys === +Vikipedejis kritiki roksta ap cieškim konfliktim redaktoru vydā ap tuo voi cyta rakstīņa pareizumu, vysaidom faktu interpretacijom i tt. Dzeive ruoda, ka tūlaik streideibys var izlītuot rokstūt objektivuok i īlaižūt raksīnī vysaidus redzīņus ap streideigajim vaicuojumim. + +== Stiļa pamati == +Vysim latgaļu Vikipedejis autorim byutu labi turētīs pi stiļa nūsacejumu. Irā stiļa nūsacejumi, kuri kūpeigi vysim - i anglīšim i latgalim. No vajadzeigi i stiļa nūsacejumi, kuri latgalim izaškir nu cytu volūdu, pīvadumam, pareizraksteiba. + +* [[Vikipedeja:Stiļa rūkysgruomota|Stiļa rūkysgruomota]] +* [[Vikipedeja:Vikipedejis termini|Vikipedejis termini]] +* [[Vikipedeja:Kai papiļdeit rakstīni|Kai papiļdeit rakstīni]] +* [[Vikipedeja:Pareizraksteiba|Pareizraksteiba latgaļu Vikipedejā]] + +{{DEFAULTSORT:Vikipedeja}} + +[[Kategoreja:Vikipedeja| ]] + bnomkixjgnma99mig814260ki1q1nzq + + + + Vikipedeja:Aizsuokt jaunu rakstīni + 4 + 521 + + 26653 + 8041 + 2013-01-01T06:34:57Z + + Turaids + 172 + + + wikitext + text/x-wiki + Aizsuokt jaunu rakstīni var itai: +# '''Puorsaverit''', ci Vikipedejā jau navā aizsuokts rakstīņs ar cīši leidzeigu pasauku (pīv., ka irā rakstīņs "Dreidzs", to jauna rakstīņa "Dreidža azars" aizsuokt navajadzātu). Puorsavērt varit maklādami pa vajadzeigajam vuordam formā "Search" ekrana lobajuo pusē a voi tematiskajā katalogā (verīs [[Vikipedeja:Rakstīņa mekliešona|Rakstīņa mekliešona]]). +# Ka nikuo cīši leidzeiga vēļ navā, jaunu rakstīni varit aizsuokt izlītuodami itū '''formu''':<inputbox> + type = create + width = 40 + bgcolor = #ffffff + preload = Template:Standard content for new page + editintro = Template:Instructions + default = + buttonlabel = Sastateit rakstīni +</inputbox> +# Rakstīni taipoš var suokt papiļdeit, izmīdzūt iz sevkurys '''sorkonim literim''' pīraksteitys nūruodis jau asūšūs rakstīņu tekstūs. Pīvadumam, rakstīnī "[[Daugpiļs|Daugpiļs]]" irā namoz teksta sorkonā kruosā. Tys zeimoj, ka ap itim tematim vajadzātu raksteit, bet nikam vēļ navā rūka daguojuse tuo padareit, i jius ite varit byut breineigs paleidzātuojs. + +'''Izjāmums irā sorkonī literi rakstīņa zamoškā, linejā "Category" - jamā nikuo papiļdeit navajag.''' + +{{DEFAULTSORT:Aizsuokt jaunu rakstīni}} + +[[Kategoreja:Vikipedejis lītuošona]] + 60gqqbe7skh6837t76rjxhiyqpdarlw + + + + Vikipedeja:Dūmu meits + 4 + 522 + + 32120 + 32112 + 2017-07-25T18:41:00Z + + MediaWiki message delivery + 2379 + + /* Improved search in deleted pages archive */ jauna sadaļa + wikitext + text/x-wiki + __NEWSECTIONLINK__ +<center> +{|style="background: #FFFFFF; border: solid 1px #FE9B00" +|- align="center" +| <big>'''DŪMU MEITS'''</big> + +puslopa, kuramā var meitīs redzīnim, aizdūt vaicuojumus, izsaceit idejis, diskutēt i tai tuoļuok. +|- +| +: '''Lyudzams, pasarakstej sovejūs komentarus''' ar četrom tildem (<code><nowiki>~~~~</nowiki></code>). +: '''Jaunus komentarus, lyudzams, davīnoj lopys zemīnē.''' +|- align="right" +| <span class="plainlinks">[http://ltg.wikipedia.org/w/index.php?title=Vikipedeja:D%C5%ABmu_meits&action=edit&section=new '''''Damīdz ite, kab atstuotu jaunu viesti.''''']</span> +---- +<center> +<small>Nerunā latgaliski? Pajautā latviski! Nekalbi latgališkai? Paklausk lietuviškai! +<br> +Don't speak Latgalian? Ask in English! Не говоришь по-латгальски? Спроси по-русски!</small> +</center> +|} +</center> + +* Requests for the [[m:bot|bot]] flag should be made on this page. This wiki uses the [[m:bot policy|standard bot policy]], and allows [[m:bot policy#Global_bots|global bots]] and [[m:bot policy#Automatic_approval|automatic approval of certain types of bots]]. Other bots should apply below, and then [[m:Steward requests/Bot status|request access]] from a steward if there is no objection. +[[Category:Vikipedeja| Dūmu meits]] + +== Puorprosu == + +Meilī ļauds, kas struodoj pi latgaliskuos versejis Vikipedejai! +As byutu ar mīru īsasaisteit kūpeigajā dorbā, bet juosoka pagaidam ite dīzgon pagryuši saprast darbeibys sistemu i juos papyldynuošonys sistemu. Ari Jiusu kontaktinformaceju maņ naizadeve atrast :( +jureits@jureits.lv +26393531 + +P.S. :) atrodu augšejā lobajā styurī, kai dasaregistrēt - tagad pieteju itū lopu tuoļuok...<br><br> + +:Vasals, breineigi, ka gribi atīt par paleigu! Kū vaira byus tolcuonu, tū dreižuok aizpiļdeisim tānejuos sprogys i dadzeisim koč jau vysutyvuokūs kaimiņus - žemaišus Lītovā i vyrovīšus Igaunejā. Jī vēļ napaseņ turēja pa kaidim 500 rakstīņu, niule jau - vaira kai 1000. + +:1. Suoc ar tū, ka ej iz golvonū puslopu i izguodoj, kurū atzari gribātim papiļdeit. Zylys kruosys teksts irā nūruodis iz tū, kū cyti jau ap itū temu pīrakstejuši. Sorkonys kruosys teksts zeimoj, ka nūruode sataiseita, bet, nūīmūt pa jai, poša teksta vītā vēļ navā nikuo. Malnys kruosys teksts zeimoj, ka i pošys nūruodis vēļ navā. + +:2. Piečuok pastaigoj pa puslopom, pamaigi iz "Edit" i patiemiej, kai teksts izaver kodātā atmejā. Kodiejums cīši parosts:<br> +::'''''pa treis apostrofi''''' teksta obejūs golūs zeimoj tukluokus literus ("Bold"; +::'''''pa div apostrofi''''' teksta obejūs golūs zeimoj kursivu ("Italic"); +::'''''pa pīci apostrofi''''' teksta obejūs golūs zeimoj "Bold" + "Italic"; +::'''''<s>< br >''' (bez atostumu)'' zeimoj puorceļšonu iz jaunu aileņu;</s> +::'''''<s>< br >< br >''' (bez atostumu)'' zeimoj puorceļšonu pa div ailenis iz prīšku;</s> +::'''''[ [ ... | ... ] ]''' (bez atostumu)'' zeimoj nūruodi - patiemiej, kai tys dareits jau asūšajūs rakstīņūs. + +:Vēļ irā kurys nakurys zeimis, bet ap jom - piečuok, kod jau pamatus byusi izavuicejs. + +:3. Kab byutu vīgļuok, īsoku pajimt jau asūšu rakstīni, damīgt "Edit" ("Edit" viersā - vysa rakstīņa kodiejums; "Edit" suonā - tik tuos atdalis kodiejums), aizzeimuot ("Select" aba "Ctrl+A") vysu kodātū tekstu i puorspīst caur "Copy" i "Paste" (voi "Ctrl+C" i "Ctrl+V") iz tū vītu, kur gribiesi raksteit pats sovu gobolu, i "raksteit viersā", izlītojūt jau asūšuo kodiejuma šablonu. Tik puorspīžūt vajag dasavērt (!!!) diveju lītu: +::* kab puorspīzdams svešu rakstīņu kodus nadamīgtim "Save page" zamoškā - tūlaik var sasamaituot teksts; +::* kab tovā jaunajā tekstā napalyktu teksta "pādi" nu agruokuo rakstīņa - "pādi" var palikt tik kodiejuma zinē, a tekstu puormej vysu pats sovu. + +:4. Kur kū raksteit? Ite paraugam byus diveji varianti, kurus vari izraudzeit papiļdeit: +::* golvonajā puslopā atrūņ "Ļaudeiba" -> "Pasauļa vaļsteibys", damīdz; atsadareis vaļsteibu saroksts, pyrmais byus "Afganistans" - vari damīgt iz juo i paraudzeit kū naviņ pīraksteit ap Afganistanu (informaceju var atrast iņternetā, bet vajag dasavērt, kab jei kuortuotūs nazcik olūtūs (na tik vīnā) i partū byutu patycama);<br> +::* golvonajā puslopā atrūņ "Latgola" -> "Religeja", damīdz; atrūņ "Latgolys katuoļu bazneicys"; tai vys tuoļuok īdams atrassi vītu vysam Latgolys katuoļu bazneicu sarokstam; vari, saceisim, apraksteit vīnu bazneicu. + +:Vaicoj, kas vēļ naskaidrys. Vaicoj ite pat - Vikipedeja irā virtuala kūpeiba ("virtual community"), i latgalīšu Vikipedejis kontaktu vīta ir ite - taišni tī, kur tu niu skaiti:) Lai lūbsīs dorbs! Ej tolkā i vaicoj, kas naskaidrys! [[User:Stiernīts|Stiernīts]] 14:34, 8 April 2007 (UTC) + +== Kod oficialai dasaceisim latgalīšu Vikipedeju? == +Kai zynoms, [[:en:Samogitian_language|žemaišim]] i [[:en:Võro_language|vyrovīšim]] jau ir sovys vikipedejis - [http://bat-smg.wikipedia.org/wiki/Pradžia] i [http://fiu-vro.wikipedia.org/wiki/P%C3%A4%C3%A4leht]. Prūtams, varim i tuoļuok roksteit ite - inkubatorā, bet pošim sovs Vikipedejis muižys vuords ari byutu loba līta ari kuplynuotu myusu skaiteituoju i roksteituoju kūpu. Pa munam, byutu vajadzeigi kaidi 2-3 raksteituoji, kurim latgalīšu volūda ir dzymtuo (kai vīgli saprast, es taids naasmu). Kod byus latgalīšu vikipedejis ībolsuošona, tod vysi ''native speakers'' varēs pi sova bolsa dalikt literu '''N''' - ar bolsuošonu na vysod īt vīgli - [http://meta.wikimedia.org/wiki/Requests_for_new_languages]. [[User:Stiernīts|Stiernīts]] jau šmukus tekstus dalika i nazcik agruokūs klaidu puorlobuoja. Nu taipoš vajadzeiga i infrastruktura - rakstīņs par [[Vikipedeja:Kai_papi%C4%BCdeit_rakst%C4%ABni|wiki-markiešonu]] jaunajim autorim, rakstīņs par [[Vikipedeja:Pareizraksteiba|pareizraksteibu]]. Kod byus skaidri tī pamata vaicuojumi, tod ilguok gaideit, pa munam, navajag. [[User:Kalvis.apsitis|Kalvis.apsitis]] 18:03, 10 October 2006 (UTC) + +:''Ta pradiekat so prašimo Latgaliu vikipedėjės [http://meta.wikimedia.org/wiki/Requests_for_new_languages]. Padiesam.''<br>Tūlaik suocit nu prasejuma ap latgalīšu vikipedeju [http://meta.wikimedia.org/wiki/Requests_for_new_languages]. Paleidzēsim. [[User:Zordsdavini|Zordsdavini]] 08:28, 13 October 2006 (UTC) + +::[[User:Stiernīts|Stiernīts]] napaseņ pasūleja Encyklopedejis strukturu - ka tū liktumem vydā, byutu lels paleigs raksteituojim. Ka latgalīšu Vikipedejā byus daudzi materiala, byus vys gryušuok dareit lelys puormejis. Da šam vīns maņ napazeistams autors dalyka nazkū par VEFa skrīnmašiņu modelim. Daguoja tū puorceļt nu suoku puslopys zam Aviacejis. Ka nabyus radzama struktura, varātu byut, ka autori sirdeisīs naatroduši sova rakstīņa tamā pošā vītā. [[User:Kalvis.apsitis|Kalvis.apsitis]] 10:50, 13 October 2006 (UTC) + +:::Maņ taidi aizguodi, ka tys "napazeistamais autors" varātu byut [http://lv.wikipedia.org/wiki/Lietot%C4%81js:Avi%C4%81tors Aviātors]:) Guodoju, ka byus lobs tolcuons i pi myusu;) +:::Cyta vydā - '''kas zyna, kur var atrast tū tabeleiti: "Itys lītuotuojs latgalīšu volūdu muok vydyskā leidzīnī"'''? [[User:Stiernīts|Stiernīts]] 15:01, 4 November 2006 (UTC) + +::::''Čė mustās šneki aple "babel" šabluona?''<br> +::::Ite tu nak jau runoj ap "babel" šablonu? [[User:Zordsdavini|Zordsdavini]] 11:19, 7 November 2006 (UTC)<br> + +:::::Nui, ap jū. Latgalīšu volūdys muociešonys šablons jau irā [http://lv.wikipedia.org/wiki/Lietot%C4%81js:Avi%C4%81tors Aviātora] lītuotuoja puslopā, tik jimā drupeit vajadzātu palobuot raksteibu. A ap cytu volūdu muociešonu taidus šablonus vajag sataiseit latgaliskai. [[User:Stiernīts|Stiernīts]] 15:19, 7 November 2006 (UTC)<br> + +::::::Nu ton šabluona geriau dėrbtė, kumet jau vikipedėjė būs. Lietā anėi sokas :( [[User:193.219.135.225|193.219.135.225]] 14:09, 20 November 2006 (UTC) + +:''[[User:Stiernīts|Stiernīts]] priregistrava prašīma Latgalėškā vikipedėjē - pareiškat parama ("Support") anā [http://meta.wikimedia.org/wiki/Requests_for_new_languages#Latgalian_Wikipedia]''<br>[[User:Stiernīts|Stiernīts]] registrēja dasacejumu latgalīšu vikipedejai - izsokit sovu atspaidu ("Support") jai [http://meta.wikimedia.org/wiki/Requests_for_new_languages#Latgalian_Wikipedia][[User:Zordsdavini|Zordsdavini]] 11:11, 13 October 2006 (UTC) + +Latgalīšu Vikipedejis projekts lūbeigai ībolsuots. [http://meta.wikimedia.org/wiki/Template:Requests_for_new_languages/bat-ltg] '''Paļdis vysim, kuri bolsova!'''<br> Vacajā vītā nikuo ap latgalīšu Vikipedeju navā - nasabeistit verūtīs iz [http://meta.wikimedia.org/wiki/Requests_for_new_languages#Latgalian_Wikipedia]. Dazynuošona/informaceja tān ir ite: [http://meta.wikimedia.org/wiki/Approved_requests_for_new_languages#Latgalian].<br> + +''Klausimas [[User:Zordsdavini|Zordsdavini]] i kitiems žemaičiams: Ar ilgai laukti už srities vardą (DNS)? Ar bus reikalingas latgalų administratorius?''<br>Vaicuojums nu [[User:Zordsdavini|Zordsdavini]] i cytu žemaišu: ci ilgai vajag gaideit muižys vuorda (DNS)? Ci byus vajadzeigs latgalīšu administrators? + +:''Kėik lauktė - napasakīso. Šēp kor kas mienesė, bet viskuo būn. Latgaliu administratuorios tikrā īr rēkalings. Savėm siūlau ėrgi pri anū. Deja, rašītė nalabā galieso, nes namuoko, bet visūs kitūs rēkalūs padieso. Administratuorē sokoramė puo vikipedėjės sokorėma ;)''<br> +:Cik daīs gaideit - napasaceišu. Vysā jau jūs taisa kas mieneša, bet byun vysa kuo. Latgalīšu administrators eistyn irā vajadzeigs. Sevi pasūlu taipoš pi jūs. Žāļ, ka raksteit na cīš kū variešu, tok vysuos cytuos lītuos paliedziešu. Administratori sataisomi piec vikipedejis sataiseišonys ;) [[User:Zordsdavini|Zordsdavini]] 08:49, 31 October 2006 (UTC) + +::Ėš tėkra geriau pradiuo torietė biuruokrata vėina, vuo ne ožsakinietė daug admėnu (sysop), ons galies admėnus skėrtė. [[User:Zordsdavini|Zordsdavini]] 14:07, 30 November 2006 (UTC) + +Prīš dā koront būtom gerā ėškart pasakītė kuokė kalba pradiuo būs. Ėš onglu jauto verstė īr napatuogē, ta gal geriau nuruodītė latviu. Namespace liktās vadėnas. [[User:Zordsdavini|Zordsdavini]] 14:07, 30 November 2006 (UTC) + +'''Registrieju jaunu dasacejumu latgalīšu vikipedejai'''. (Pasėkeitė taisīklės ė vėsks vielek nu pradiū) [[User:Zordsdavini|Zordsdavini]] 08:40, 12 February 2007 (UTC) + +== Stiļa vuiceiba deļ jaunūs autoru == +Prosu vysu (i eistyn tūs, kurim latgalīšu volūda dzymtuo i kurim nasagrib redzēt ite daudzi taidu rakstīņu, ap kurim nazynuosim - treit iz reizis uorē ci puorlobuot da pošu pamatu) pīsadaleitu [[Vikipedeja#Stiļa_pamati|stiļa pamatu]] (''style guidelines'') raksteišonā. Ka autors nazkaidā situacejā navā drūss, vajag pasūleit jam izsprīdumu. Tys varātu byut i kolektivs sasprīdums, i kaida autoritativa rekomendaceja. Pa munam, lobuok, ka irā koč napiļneigs parāds, nakai piļneigs haoss (Prudons to saceja: ''Anarheja ir parāds'' ci ''Хаос - мать порядка'' - [[:en:Pierre-Joseph_Proudhon|Proudhon]]). Ka rakstīnī ap [[Vikipedeja:Pareizraksteiba|pareizraksteibu]] irā klaidys voi duraceibys, tod lyudzu tū puormeit. [[User:Kalvis.apsitis|Kalvis.apsitis]] 19:39, 10 October 2006 (UTC) + +== Latgalīšu Vikipedeja i roboti == +Vikipedeja jau 6 godus ekzistej bez lelu gryutumu. I piec sovvaļnīku/vandaļu dorbu (kod jī puormej rakstīņus i vītā roksta aptuomeibys) vysod bejs vīgli atsagrīzt atpakaļ da pareizuo teksta. Tok ''drūss teik baileigs'' - varbyut vajadzeigs pagluobis puorspīdums? Pīvadumam, robots, kurs puorstaigoj latgalīšu vikipedejis rakstīņus ; i turīni izgloboj iz atsaceiga cylvāka lokaluo diska. Robots varātu ari skaiteit bīžuokuos pareizraksteibys klaidys (pīvadumam, ka kurs cieški lītoj tūs pošus napareizūs baļticizmus voi rusicizmus...). I apsaver, voi nūruodis vēļ dora; voi napropulst (i voi nav puormeiti) lobi teksti. Varbyut kam ir zynomi roboti, kuri varātu automatiski tū dareit, kab mes napagaisynuotumem nikuo loba i vierteiga? [[User:15.207.255.7|15.207.255.7]] 20:07, 10 October 2006 (UTC) + +== ISO kods? == +''Ar īr pradiets ISO kuoda prašīms?''<br>Voi irā aizsuokts ISO koda dasacejums?'' [[User:Zordsdavini|Zordsdavini]] 08:30, 13 October 2006 (UTC) + +:[[Latgalīšu volūda ISO standartūs|Latgalīšu volūda ISO standartūs]] - itymā rakstīnī par myusu ISO koda situaceju - lyudzu puormeit, ka kas na tai. + +:''Atsakymas apie ISO kodą - atrodo, kad latgalų kalba dar neturi ISO kodą. I [http://www.sil.org/iso639-3/], i ''US Congress Library'' i ''Ethnologue'' - panaši situacija: latgalai charakterizuoti kaip vienas iš latvių kalbos dialektų. Galbūt, ISO koda registravimas pavyks tada, kada atsiųsim JAV Kongreso bibliotekai 30-50 latgalų knygų, a galbūt reikalingas "Latvijos elektroninių dalykų ministerijos" [http://www.eps.gov.lv/index.php?&12] prašymas? Tikrai nežinau. Kokia žemaičių kalbos situacija i jos ISO klausymai?''<br> Atsacejums ap ISO kodu - ruodīs, ka lagalīšu volūda vēļ natur ISO koda. I [http://www.sil.org/iso639-3/], i ''US Congress Library'' i ''Ethnologue'' - leidzeiga situaceja: latgalīši karakterizāti kai vīns nu latvīšu volūdys dialektu. Varama līta, ISO kodu registrēt lūbsīs tūlaik, kod atsyuteisim ASV Kongresa bibliotekai 30-50 latgalīšu gruomotu, a varbyut vajadzeigs "Latvejis elektroniskūs lītu ministrejis" [http://www.eps.gov.lv/index.php?&12] prasejums? Eistyn nazynu. Kaida žemaišu volūdys situaceja i juos ISO vaicuojumi? [[User:Kalvis.apsitis|Kalvis.apsitis]] 11:18, 13 October 2006 (UTC) + +::''Pas mumis situacėjė apraša geriausē kelė laiškiokā:''<br>Pi myusu situaceju vysulobuok aproksta nazcik viestuleišu: [http://bat-smg.wikipedia.org/wiki/Naudotojas:Zordsdavini/isokuods/pra%C5%A1ims_JAC] [http://bat-smg.wikipedia.org/wiki/Naudotojas:Zordsdavini/isokuods/b%C4%97ndradarbiav%C4%97ma_so_Richardo] [http://bat-smg.wikipedia.org/wiki/Naudotojas:Zordsdavini/isokuods/ira%C5%A1%C4%97m%C4%97_i_Ethnologue.com] <br>''Liktās vėsks gerā būs. Kningu mes tėik natoram, vuo bibliuotekas galat ė sava nuruodītė. Aš nuruodiuo ėš vėsa Žemaitiu koltūras draugėjė.''<br>Kaiba vyss byus labi. Gruomotu mes tai daudzi naturim, a bibliotekys varit i sovys nūruodeit. Es vysā nūruodeju Žemaišu kulturys bīdreibu [[User:Zordsdavini|Zordsdavini]] 12:07, 13 October 2006 (UTC) + +: ''Beje, aš žemaitiu kalba pristatīdams mėnavuojau anūn kap "minor language" kap bavaru, kašubu ė pan.''<br> Cyta vydā, es žemaišu volūdu prīškāstateidams pasauču juos "minor language" kai bavarīšu, kašubīšu i leidz.[[User:88.118.186.235|88.118.186.235]] 19:17, 15 October 2006 (UTC) + +== wiki.png == +''Rēk sokortė wiki logo. Kap latgalėškā: "Wikipedia/free enciklopedia"?''<br>Vajag sataiseit wiki logo. Kai byus latgaliskai "Wikipedia/free enciklopedia"? [[User:Zordsdavini|Zordsdavini]] 07:35, 17 October 2006 (UTC) +:Latgaliskai tys irā "Vikipedeja/breivuo eņciklopedeja". Tev zynomys programys, kurys gatavej taidus logo? [[User:Kalvis.apsitis|Kalvis.apsitis]] 07:45, 17 October 2006 (UTC) +::''Aš galo pats pamegentė nupaišītė.''<br>Es varu pats paraudzeit izzeimēt [[User:Zordsdavini|Zordsdavini]] 08:22, 17 October 2006 (UTC) +:::''Čė on grētūju Paskiau nupaišīso geriau (dabā kuo tā narīškē gavuos).'' <br /> Ite iz dreizuos rūkys. Piečuok izzeimiešu lobuok [[User:Zordsdavini|Zordsdavini]] 08:47, 17 October 2006 (UTC) +::::''Jau pataisiau''<br>Jau pataiseju [[User:Zordsdavini|Zordsdavini]] 08:52, 17 October 2006 (UTC) +:''Labai ačiū!''<br>Cīši paļdis! [[User:15.207.255.7|15.207.255.7]] 12:33, 17 October 2006 (UTC) + +== Активные пользователи ''dūmu meita'' == + +{{Collapsible list|title='''Активные пользователи'''| +* [[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 12:58, 9 January 2011 (UTC) +* [[User:AfroBrazilian|<font color="green">Afro-Braz-Ilian</font>]] <sup>[[User talk:AfroBrazilian|<font color="gold">talk</font>]]</sup> 14:35, 9 January 2011 (UTC) +* [[User:Andrijko Z.|Andrijko Z.]] 14:48, 9 January 2011 (UTC) +* [[User:Gleb Borisov|Gleb Borisov]] 16:09, 10 January 2011 (UTC) +}} +Итак, создаю эту тему, чтобы на первых парах узнать о количестве активистов этого раздела. --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 12:58, 9 January 2011 (UTC) +: +1 Я более или менее активен в латгальской ВП (пока инкубатора).[[User:AfroBrazilian|<font color="green">Afro-Braz-Ilian</font>]] <sup>[[User talk:AfroBrazilian|<font color="gold">talk</font>]]</sup> 14:35, 9 January 2011 (UTC) +: +1 я тоже=)--[[User:Andrijko Z.|Andrijko Z.]] 14:48, 9 January 2011 (UTC) + +Среди нас или наших знакомых / друзей есть специалисты по латгальскому языку? [[User:Andrijko Z.|Andrijko Z.]] 20:09, 9 January 2011 (UTC) +:Могу предложить 2-их - [[User:Roalds|Roalds]] и [[User:Stiernīts|Stiernīts]] (постараюсь с ними связаться) но на крайняк и я могу им быть ;Р --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 21:22, 9 January 2011 (UTC) +::Можно ещё связаться по вики-почте с участником [[User talk:Vucyns|Vucyns]] (он же [[User talk:Vcuks|Vcuks]]?), который был довольно активен несколько лет назад, а также написать участнику [[User:Kalvis.apsitis|Kalvis.apsitis]], который недавно возобновил активность. <br /> Есть на уме люди, которым можно было бы предложить поучаствовать в проекте, но их участие не могу гарантировать, во-первых, по той причине, что это отнимает массу свободного времени (особенно, если человек только начинает писать в ВП и плохо знаком с вики-разметкой, стилем, правилами итп.), во-вторых, потому что есть и другие способы публичного использования языка на письме, например, публицистика. По этим и другим причинам многие, знающие о проекте, пока не приняли активного в нём участия. <br /> Думаю, не было бы плохо заняться популяризацией проекта в Интернете (которая до этого времени ведётся довольно вяло), размещением извещений в популярных в Латвии социальных сетях, размещением баннеров на латгальских сайтах итп. —[[User:Gleb Borisov|Gleb Borisov]] 16:09, 10 January 2011 (UTC) +:::Gleb, а ты бы не согласился быть тем спецом? <br /> А насчёт популеризации, многие не вносят сюда вклад, т.к. это всеголишь инкубатор и в скором времени они также покидают проект... поэтому сперва нужно создать эту википедию, и только потом зазывать ''толпы'' народа --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 17:20, 10 January 2011 (UTC) +::::Спецом для каких задач? —[[User:Gleb Borisov|Gleb Borisov]] 21:43, 10 January 2011 (UTC) +:''Спецом'' по латгальскому языку ;) По этому [http://ru.wikipedia.org/wiki/%D0%9E%D0%B1%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5_%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8%D0%B8:%D0%9F%D1%80%D0%BE%D0%B5%D0%BA%D1%82:%D0%9C%D0%B0%D0%BB%D1%8B%D0%B5_%D1%80%D0%B0%D0%B7%D0%B4%D0%B5%D0%BB%D1%8B_%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8%D0%B8_%D0%BD%D0%B0_%D1%8F%D0%B7%D1%8B%D0%BA%D0%B0%D1%85_%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D0%B8#.D0.AD.D0.BA.D1.81.D0.BF.D0.B5.D1.80.D1.82.D1.8B_.D1.8F.D0.B7.D1.8B.D0.BA.D0.BE.D0.B2 выводу], следует связываться с [[:meta:User:Shanel]] (самый активный из лангкома) и вдолбить ему, что этот раздел соответсвует всем критериям, чтобы он был создан --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 22:27, 10 January 2011 (UTC) +::Боюсь, я не подхожу уже по той причине, что являюсь участником проекта, а по этому заинтересованной, ненейтральной стороной. А, во-вторых тут нужен авторитетный источник как человек с учёной степенью, например, Лидия Лейкума. —[[User:Gleb Borisov|Gleb Borisov]] 22:46, 10 January 2011 (UTC) +*Напишите письмо Лидии Лейкума, попросите посодействовать[[User:Andrijko Z.|Andrijko Z.]] 00:23, 11 January 2011 (UTC) +**И еще: ребят, я заметил - мы прям с вами такие активные стали=) Давайте еще за январь каждый из нас сделает по 10 правок в вепсском и кабардино-черкесском разделах, у них тоже хороший уровень, и им надо помочь хотя бы мизерной помощью, а уж дальше они выгребут=)[[User:Andrijko Z.|Andrijko Z.]] 03:10, 11 January 2011 (UTC) +***Насчёт вепсского и кабардино-черкесского разделов — нет проблем, думаю, можно за январь и больше правок сделать. —[[User:Gleb Borisov|Gleb Borisov]] 12:21, 11 January 2011 (UTC) + +== Latgaļu/latgalīšu volūda == + +Старые раны о главном... Высказываем своё мнение (желательно с аргументами) --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 19:05, 12 January 2011 (UTC) +* То есть?=)[[User:Andrijko Z.|Andrijko Z.]] 19:41, 12 January 2011 (UTC) +::Какое название латгальского языка является правильным... --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 21:54, 12 January 2011 (UTC) +:::Я хоть вообще не владею латгальским, но мне кажется, что тут все очевидно: фраза "латгальский язык - latgalīšu volūda, фраза "латгальский" - Latgaļu, также как "русский язык", "русский", "украинский язык", "украинский" и т.д... Тут нужно употреблять в зависимости от того, как от тебя требуют (какую форму). С точки зрения лингвистики самоназвание русского языка "русский язык", а не просто "русский", потому что "русским" может быть все что угодно, а "русским языком" - только язык=) [[User:Andrijko Z.|Andrijko Z.]] 22:02, 12 January 2011 (UTC) + +==ISO code== +If i am not mistaken, you requested a new ISO code for your language. Can you tell us about the process - how did you apply, which documents did you need to get, how did you convince ISO to get you the code? This may be useful for future applicants. Feel free to create a new page on Meta about it. + +If you already wrote something about it, please share a link. Thank you. --[[User:Amire80|Amir E. Aharoni]] 01:50, 11 February 2011 (UTC) + +== This project is approved == + +The Board of Trustees and language committee have deemed that there is sufficient grounds and community to create the new language project. Congratulations! + +The domain ltg.wikipedia.org will be created soon. Until then we recommended to continue working in the incubator. --[[User:Amire80|Amir E. Aharoni]] 08:46, 13 February 2011 (UTC) +:The day has come!!! Greatest GRATITUDE to our Holy Father, to all contributors and supporters from all other Wiki Incubator projects! We have done a hard work for many years to open this wikipedia page. I am so happy! Reason for celebrity! [[User:Roalds|Roalds*]] 18:16, 13 February 2011 (UTC) + +== Administracejis ībolsuošona == + +'''Ībolsuosim administraceju, kab īsuoktu dorbu kai piļņvierteigs projekts!''' + +Pasūleišu sevi kai pirmū kaņdidatu =) arī [[User:Gleb Borisov|Gleb Borisov]] vor kļūt par adminu... --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 18:47, 15 February 2011 (UTC) + +:Maņ dūmojās, ka Vikipedejis administratorus var ībolsuot tik piec juos atdareišonys. Pīmāram, rusinu Vikipedejā pyrmais admins ībolsuots tik aizguojušā nedeļā. --[[User:Gleb Borisov|Gleb Borisov]] 21:35, 15 February 2011 (UTC) +::Nui! Cikom Vikipedeja navā atdareita, nikaidys administracejis navar byut. Tok mes varim paguoduot - kaidu administraceju sataiseit? Vysi administratori nabyus, guoduoju, vajag vērtīs pa aiktivitatei i cik ilgi ite inkubatorā dora. I kai ar birokratim? I myusim vajag BOTus, vīnam obligatai vajag byut volūdys BOTam (seņ taidu ite gribieja), kas palabuotum seikuos standarta klaidenis. Vorbyut nūstateit, ka par administratoru var byut tik tod, ka mieneša laikā padora, par pīvadumu, 50 lobuojumus? Myusim vajag mudri izaraisteit! [[User:Roalds|Roalds*]] 11:54, 16 February 2011 (UTC) + +:::Birokratu pi myusim var ari nabyut, kai tys irā lelumā Vikipedeju. Runuojūt ap botim, guodoju, ka vājadzēs pījimt [[m:Bot policy|botu standarta nūsacejumus]], kai [[:rue:Вікіпедія:Портал комуніты#Bot Policy|tys tyka padareits]] rusinu Vikipedijā, kab atvīglynuotu botu registraceju. Ap administratorim — nui, parostai vysur, kab varātu kaņdidēt iz nazkuru karūgu, lītuotuojam vajag byut nūstateitam stažam i redigiejumu skaitam. --[[User:Gleb Borisov|Gleb Borisov]] 05:07, 19 February 2011 (UTC) +::::Taid vajadzātu ite pataiseit [[:en:Wikipedia:Bot policy]] leidzeigu puslopu --[[User:Dark Eagle|Dark Eagle]] <small>([[User talk:Dark Eagle|runuot]] · [[Special:Contributions/Dark Eagle|devīņs]])</small> 10:21, 19 February 2011 (UTC) + +:::::Navā dastateigai. Var sataiseit puslopu Vikipedeja:Boti, kurā byus dūta nūruode iz [[:m:Bot policy]] i kurā varēs izvītuot aizprasejumus piec bota tīseibu daškieršonys. Verīs, kai tys irā, pīm., [[:bat-smg:Vikipedėjė:Buotā|pi žemaišim]]. --[[User:Gleb Borisov|Gleb Borisov]] 13:49, 19 February 2011 (UTC) + +'''Viereibys!''' Varbyut gols golā sataisam sovu administraceju? Tān Vikipedeja atdareita, var ībolsuot vysakū. --[[Lītuotuojs:Roalds|Roalds]] 11:30, 6 sulu mieness 2011 (EEST) + +* Vīns (tamlaiceigs) administrators myusim jau [http://meta.wikimedia.org/w/index.php?title=Steward_requests/Permissions&diff=next&oldid=2464122 irā]. Kab ībolsuotu kaidu jaunu administratoru, vajag atdareit ite jaunu temu (vīnā temā vīns lītuotuojs) i piec bolsuojuma aizpraseit statusu ite: [[:meta:Steward requests/Permissions#Administrator access]], īdūdūt nūruodi iz atteiceigū diskuseju. Itū var aizsuokt sevkurs. --[[Lītuotuojs:Gleb Borisov|Glebs]] 15:52, 6 sulu mieness 2011 (EEST) +** Munys prīkšrūceibys navā piļneigis... tyk pamati, pīvadumam navaru dūt botim flagus itt. --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 19:39, 6 sulu mieness 2011 (EEST) + +== Vuordu pluots == + +Vysim gribu pīvierst uzmaneibu ap [http://translatewiki.net/w/i.php?title=Special:AdvancedTranslate&language=ltg&module=namespace NAMESPACES]. Kaidi būs prīkšlikumi? --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 18:13, 20 Marts / Pavasara mieness 2011 (UTC) +:Kū tu eistyn grybi saceit? Ka runa irā ap tū, ka pošulaik teik lītuoti latvīšu volūdys ''namespaces'' latgaļu vītā, tod, cik saprūtu, tys irā tik laika vaicuojums. --[[Lītuotuojs:Gleb Borisov|Gleb Borisov]] 03:55, 21 Marts / Pavasara mieness 2011 (EET) +::As runuoju ap namespaces puorvārsumu pareizeibu... --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 07:56, 21 Marts / Pavasara mieness 2011 (EET) + +Vaicuojums ap sprīžām: kai pereizuok būs ''Vikipedejis sprīža'' ci ''Sprīža ap Vikipedeju(?)'', tys saisteits ar vuordu pluotu atjaunynuošonu --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 12:20, 22 Pavasara mieness 2011 (EET) +::Šūdīn vokorā vuordu pluots tiks puormeits latagliskai, ja ceļās kaidi vaicuojumi, vērstīs [[:bugzilla:28184]] --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 18:43, 22 Pavasara mieness 2011 (EET) +:Lai jau palīk ''Vikipedejis sprīža'', tik varbyut varātu analogiskai puormeit ari cytus vuordu pluotus, pīvadumam, ''Sprīža ap lītuotuoju''. Cyta vydā guodoju, ka tān vajadzātu palaist botu, kas puormeitu vysuos lopuos ''[[Lietotājs:'' iz ''[[Lītuotuojs:'', ''[[Kategorija:'' iz ''Kategoreja:'' i t. t. --[[Lītuotuojs:Gleb Borisov|Gleb Borisov]] 19:54, 23 Pavasara mieness 2011 (EET) +::Tyka puormeiti vysi vuordu pluoti... I tuvuokuo loikā palaideišu bots, lai puormietu vacu vuordu pluotu pasaukys --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 20:42, 23 Pavasara mieness 2011 (EET) + +== Bot policy == +Hello. To facilitate [[m:steward|steward]] granting of bot access, I suggest implementing the [[m:Bot policy|standard bot policy]] on this wiki. In particular, this policy allows stewards to automatically flag known interlanguage linking bots (if this page says that is acceptable), which form the vast majority of such requests. The policy also enables [[m:Bot policy#Global_bots|global bots]] on this wiki (if this page says that is acceptable), which are trusted bots that will be given bot access on every wiki that allows global bots. + +This policy makes bot access requesting much easier for local users, operators, and stewards. To implement it we only need to create a redirect to this page from [[Project:Bot policy]], and add a line at the top noting that it is used here. Please read the text at [[m:Bot policy]] before commenting. If you object, please say so; I hope to implement in two weeks if there is no objection, since it is particularly written to streamline bot requests on wikis with little or no community interested in bot access requests. [[Lītuotuojs:Manuelt15|Manuelt15]] 22:13, 20 Marts / Pavasara mieness 2011 (EET) + +==== Support ==== +# --[[Lītuotuojs:Gleb Borisov|Gleb Borisov]] 04:00, 21 Marts / Pavasara mieness 2011 (EET) +# --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 07:56, 21 Marts / Pavasara mieness 2011 (EET) +# --[[Lītuotuojs:Roalds|Roalds]] 10:48, 22 Pavasara mieness 2011 (EET) +# --[[Lītuotuojs:GreenZeb|GreenZeb]] 15:36, 22 Pavasara mieness 2011 (EET) +# --[[Lītuotuojs:Edgars2007|Edgars2007]] 15:36, 22 Pavasara mieness 2011 (EET) +# --[[Lītuotuojs:Viskonsas|Viskonsas]] 11:48, 31 Pavasara mieness 2011 (EEST) + +==== Oppose ==== +* ''none'' + +=== Puorvēršana === +Vajadzātu taid puorvērst [[m:Bot policy]] latgaliskai, i sataiseit puslopu [[Vikipedeja:Boti]] --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 12:16, 22 Pavasara mieness 2011 (EET) + +:'''Implemented'''. [[Lītuotuojs:Manuelt15|Manuelt15]] 23:02, 2 sulu mieness 2011 (EEST) + +== Sveicieni! == + +Es nemāku izteikties latgaliešu valodā, bet vēlīni sveicieni visiem ar latgaļu Vikipēdijas oficiālo izveidi! ;) Jau sen to vajadzēja izdarīt! --[[Lītuotuojs:GreenZeb|GreenZeb]] 00:39, 21 Marts / Pavasara mieness 2011 (EET) + +== Volūdu sarokstā rezultati ilgai īkešuoti == + +Itymā lopā latgalīšu Vikipedejis navā - [http://meta.wikimedia.org/wiki/Complete_list_of_language_Wikipedias_available] (jai vajadzātu byut nazkur starp bazneicslavu i karakalpaku volūdom). Nu suoku dūmuoju, ka tī rezultati ir nu nazkaida keša i paīs nedele i byus. Nu ūtrys pusis, verūs, ka http://s23.org/wikistats/wikipedias_html - Vikipedeju statistikys lopā latgalīšu Vikipedejis verseja ir apzeimuota ar sorkonu (navā normaluos vērteibys "1.16wmf4"). Varbyut nazkas navā vēļ izdareits? [[Lītuotuojs:Kalvis|Kalvis]] 19:47, 23 Pavasara mieness 2011 (EET) + +:Sovaidai, maņ gi pyrmajā lopā latg. Vikipedeja irā. --[[Lītuotuojs:Gleb Borisov|Gleb Borisov]] 20:01, 23 Pavasara mieness 2011 (EET) +::Ar atrodu:<pre>225 Latgalian Latgaļu ltg 453 918 11,071 2 194 -1 0 13</pre>--[[Lītuotuojs:Dark Eagle|Dark Eagle]] 20:45, 23 Pavasara mieness 2011 (EET) +::: Nu suoku naredzēju i nazcik reizis mīdzu sovā Firefox'ā iz '''Refresh'''. A tod spīdu vīnlaiceigai iz '''Shift''' i Firefox'a pūgu '''Refresh''' (pa munam, tys nūzeimoj atsyuteit lopu ar HTTP aizprasejuma hederi "Cache-Control: no-cache") i tod gols golā īraudzeju itū pošu aili kū jyus. Izaruoda, ka muna puorsavierieja kešā beja nazkaida vaca ituo saroksta verseja :) Cyts metods byutu '''Tools > Clear Recent History''' i sovu kešu vīnkuorši iztreit - bet tas napaleidzēs gadīnī, kad ceļā nu mums da Vikipedejis irā kaids starpnīkservers (proxy) ar sovu vacū kešu. [[Lītuotuojs:Kalvis|Kalvis]] 23:50, 24 Pavasara mieness 2011 (EET) + +== Current events == + +Kai puorvast frazi "Current events" - ''Īmamie nūtikšonys''? --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 14:54, 26 Pavasara mieness 2011 (EET) +:Tod jau byutu ''Īmam'''uos''' nūtikšonys''. Varbyut pīrokstom parostai ''Aktualumi''? --[[Lītuotuojs:Gleb Borisov|Glebs]] 20:09, 26 Pavasara mieness 2011 (EET) +::Nadūmuoju, ka [[:en:Portal:Current events]] pīstuov pasauka ''Aktualumi''... --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 23:27, 26 Pavasara mieness 2011 (EET) +:::Beju pasavērs latvīšu Vikipedejā... Jim ''Aktualumi'' (''Aktualitātes''). --[[Lītuotuojs:Gleb Borisov|Glebs]] 23:41, 26 Pavasara mieness 2011 (EET) +::::Jim tys nava pa temoj, tā irā parodeja... Kai ira lītaunīkim? --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 23:51, 26 Pavasara mieness 2011 (EET) + +:::::Naradzu jim taidys puslopys. Jim juos vītā ''[[:lt:Vikipedija:Forumas|Forums]]''. --[[Lītuotuojs:Gleb Borisov|Glebs]] 23:57, 26 Pavasara mieness 2011 (EET) + +:: ''Tānejuos nūtikšonys'' --[[Lītuotuojs:Stiernīts|Stiernīts]] 19:57, 10 sulu mieness 2011 (EEST) + +== Congratulations, Latgalians! == + +Vasals, Latgalians, it's grate to see that you have now Vikipedeja in your own language! My small gift to you is an article I wrote today to the Võro vikipeediä about the Latgalian language: http://fiu-vro.wikipedia.org/wiki/Latgali_kiil +With best wishes, your northern neighbour --[[Lītuotuojs:Võrok|Võrok]] 23:11, 30 Pavasara mieness 2011 (EEST) (from the Võro vikipeediä). + +:Tereq, aitjumma! Very nice present. :) -- [[Lītuotuojs:Gleb Borisov|Glebs]] 23:38, 30 Pavasara mieness 2011 (EEST) + +== Izalaseits atvaigs i vierteigs rakstīņs == + +Vasali, Vikiļauds! Kuo guodojit, kai cieški myusim vajag puormeit suoku puslopys atvaigu i rakstīni? [http://bat-smg.wikipedia.org/wiki/P%C4%97rms_poslapis Žemaiši] nazcik ilgai jau namej, izaver, ka tymā Vikipedejā nivīns nadora. Tū ļauds vysod ītēmej. Tok vierteigu, pylnu rakstīņu myusim navā daudzi, a atvaigu nu Vikitekys vīglai dabuot. Varbyut sataiseit sarokstu, kurymā kaņdidej atvaigi i rakstīni iz prīšku? I vēļ - izguoduoju, ka atvaigu var jimt tik tod, ka byus koč i 4 sacīni ap itū temu. Tai izaraisteisim. --[[Lītuotuojs:Roalds|Roalds]] 01:44, 11 sulu mieness 2011 (EEST) + +:Varātumem sataiseit divejis puslopys vuordu pluotā "Vikipedeja": vīnu deļ vierteigu rakstīņu, ūtrū — deļ atvaigu izalasejuma. Nazynu gon, ci vajadzātu nūstateit 4 sacīņu limitu, cikom vēļ navā daudz aktivu dalinīku. Dūmoju, golvonais, kab par izalasejumu dalinīku vydā byutu koņsenss. --[[Lītuotuojs:Gleb Borisov|Glebs]] 11:58, 12 sulu mieness 2011 (EEST) + +== Vikipedejis bots == + +Sastateju pīprasējumu [[m:Steward requests/Bot status#DEagleBot@ltgwikipedia|metā]] ap bota statusa dašķieršanu [[Lītuotuojs:DEagleBot|DEagleBot]]. Lyudzams paturēt itū ideju, kab namāsluot padaļu "Nasenejis puormejis". Paļdis --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 18:13, 3 labeibys mieness 2011 (EEST) +:Breineigai! Pylnai dūdu sovu vuordiskū atspaidu robota dorbam, kas myusu Vikipedejā irā cīši svareigs. --[[Lītuotuojs:Roalds|Roalds]] 12:30, 5 labeibys mieness 2011 (EEST) +:Done. --[[Lītuotuojs:Mav|Mav]] 04:10, 10 labeibys mieness 2011 (EEST) + +== Suoku puslopys izavierīņs == + +Vasali! Parkū taida atjaunynuošona? Es saprūtu, ka myusu ite navā daudzi i moz irā taidu, kas aktivai pīsadola, tok suoku puslopys dizains irā koč kas cīši svareigs. Pyrma puormeju jau varātum sasprīst kūpā jaunu izavierīni, na tai? +Nui, maņ napateik jaunais.<br>Naārtai rytynuot iz leju, kab apsavārtu vysu atvaigu. A tān koč kaidu pusi redzu. Tys nabyutum logiskai, ka atdoru puslopu i radzu vpylnu atvaigu i pylnu vierteigu rakstīni? Maņ kategorejis vysā naizaver tik svareigys. Moš taisom cytu puslopys dizainu vysā nu jauna? --[[Lītuotuojs:Roalds|Roalds]] 15:27, 6 rudiņa mieness 2011 (EEST) + +== [[User:HiW-Bot|HiW-Bot]] == + + +* Botname: [[User:HiW-Bot|HiW-Bot]] +* Operator : [[:de:Benutzer:Hedwig in Washington|Hedwig in Washington]] +* Automatic or Manually Assisted : automatic +* Programming Language(s) : Python (pywikipedia), daily update +* Function Summary : Interwiki, Internationalization by removing chaos in Babel-Category so it can be used properly and easy. Double redirects will be added shortly +* Already has a bot flag (Y/N) : Yes: 29 Wikis so far, others pending. [http://toolserver.org/~vvv/sulutil.php?user=HiW-Bot see here] +* Function Details : just using the standard interwiki.py; parameters: -auto -all - log -catr + +I humbly request bot status on this wiki in order to update Interwiki, and improve Internationalization by removing chaos in Babel so it can be used properly and easy by everyone. + +Thank you for consideration! --[[Lītuotuojs:Hedwig in Washington|Hedwig in Washington]] 06:52, 13 rudiņa mieness 2011 (EEST) + +== Sveiki == + +Gribēju tikai minēt, ka gadījumā, ja meklējat avotu biogrāfijām, tad šo to var atrast ''[http://data.lnb.lv/digitala_biblioteka/laikraksti/LatgolasWords/index.htm Latgolas Vordā]'', piemēram, te ministru prezidenta [http://data.lnb.lv/nba01/LatgolasWords/1934/LatgolasVords1934-018.pdf Alberinga biogrāfija]. 70 gadi ir apkārt un autortiesības nav. Līdz ar to pie nelielas apdares var pārlikt šeit, kas būtu vismaz sākumam okok variants :) --[[Lītuotuojs:Zemgalietis|Zemgalietis]] 04:21, 8 leita mieness 2011 (EEST) +:Ō, paļdis! Nak jau pasavērsim. --[[Lītuotuojs:Roalds|Roalds]] 00:04, 10 leita mieness 2011 (EEST) + +== Sovrūčis administracejis ībolsuošona == + +Niule latgaļu Vikipedejā vajadzātu ībolsuot patstāveigu administraceju, kab itys projekts vaira nabūtu atkareigs nu metys. --[[Lītuotuojs:Dark Eagle|Dark Eagle]] 07:58, 12 leita mieness 2011 (EEST) +:A myusim vysā irā dalinīku ap kū bolsuot? Pošu lobī nūguoja paceli, tānejī atīt tik kaidu strāšnu klaidu pataiseit. --[[Lītuotuojs:Roalds|Roalds]] 13:57, 12 leita mieness 2011 (EEST) + +==Language support group for Latgalian== +The Wikimedia Foundation has brought together a new team of developers who are dedicated to language support. This team is to support all the languages and consequently it is not realistic to expect that the team members can provide proper support for your language. It is for this reason that we are looking for volunteers who will make up a [[:translatewiki:language support team|language support team]]. + +This language support team will be asked to provide us with information about their language. Such information may need to be provided either to us or on a website that we will indicate to you. Another activity will be to test software that will likely have an effect on the running of the MediaWiki software. We are looking for people who clearly identify their ability. Formal knowledge is definitely appreciated. + +As much of the activity will be concentrated on [[:translatewiki:Main Page|translatewiki.net]], it will be a plus when team members know how to localise at translatewiki.net. <br> +Thanks, [[Lītuotuojs:Gmeijssen|Gmeijssen]] 21:06, 22 jaunagods mieness 2012 (EET) + +== One year Latgalian Wikipedia == + +Hello Latgalian Wikipedians,<br /> +congratulations, today it is now 1 year since the ltg.wikipedia.org subdomain was created. +From the Wikimedia Incubator & Language Committee, we would like to get some feedback from newer wikis about their situation. + +We prepared some questions about what we would like to know. Feel free to answer as many of them as you like. +# How has activity developed after the subdomain's creation? (in comparision with the situation on Incubator) +# Is it now easier to be found by new users? How was the reception of the new wiki: in media maybe? in friends/family circles? +# Were your exceptions in general fulfilled or not? +# Would you have done something in a better/different way in hindsight? +# Is there anything where you say 'This should have been better during the testing phase (Incubator, Langcom)'? +# What was nice/easy/desirable on Incubator? :-) + +Best regards, --<small>[[User:MF-Warburg|MF-W]]</small> 05:05, 18 pavasara mieness 2012 (EET) + +== Latagļu kūpportrets == + +Vāga sastateit sorokstu, kuru personeibu fotografejis salykt latgaļu kūpeiguo atvaigā. Cytaiš [[:File:Latgalians in 20th - 21st century.png]] irā kaut kaids pīsasmīklis --[[Lītuotuojs:Dark Eagle|Dark Eagle]] ([[Sprīža ap lītuotuoju:Dark Eagle|talk]]) 21:48, 1 sulu mieness 2012 (EEST) +* [http://www.rezeknesnovads.lv/rrp/lv?p_id=125 Rēznis nūvoda ītēmētys personys] +* [[:Fails:Flickr - Saeima - 10.Saeimas deputāts Jānis Tutins.jpg|Juoņs Tutins]] +--[[Lītuotuojs:Dark Eagle|Dark Eagle]] ([[Sprīža ap lītuotuoju:Dark Eagle|talk]]) 08:01, 3 sulu mieness 2012 (EEST) + +== Morāvija == + +Labdien. Vai kāds man spētu palīdzēt pārtulkot vārdu [[:lv:Morāvija]] uz latgaliešu valodu? Vai tas ir ''Morāveja''? Paldies, [[Lītuotuojs:Magairlin|Magairlin]] ([[Sprīža ap lītuotuoju:Magairlin|talk]]) 19:56, 2 zīmys mieness 2012 (EET) + +== Предложение поддержать проект == + +Уважаемые господа! + +С большим интересом слежу за выполняемой Вами, крайне важной работе. +Предлагаю свою помощь в реализации проекта латгальской Википедии. Только что издал с коллегой книгу "Латгалия: в поисках иного бытия", в которой дается взгляд русских на проблемы, которые стоят перед латгалами и Латгалией ( http://www.iarex.ru/news/31752.html). Книга не претендует на полноту, но впервые на русском языке системно излагает проблематику. При написании книги использовались и материалы, которые публиковались в созданнном Вами разделе Википедии. Свой взгляд на проблематику навязывать не буду, сориентируюсь на требования Википедии к подготовке материалов. +На латгальском только читаю, но не пишу. Готов популяризировать латгальский раздел Виипедии в латвийских и мировых СМИ, имею опыт в такого рода работе. Могу написать статьи по экономической, социальной, демографической тематике Латгалии и Латвии, в которых профессионально разбираюсь. Готов привлечь к реализации проекта специалистов и найти деньги на оплату их труда, перевод наработаных материалов на латгальский. +Имею опыт написания проектов в ЕС, получения средств и управления ими. Можем совместно подготовить запрос на финансирование данного раздела Википедии. Могу организовать международные конференции и семинары по латгальской тематике, найти средства на их проведение. +Рекомендации для включения в проект мне могут дать латгальцы Янис Тутинс, Янис Урбанович, Виктор Авотиньш. + +Президент Института европейких исследований(Латвия), д..э.н. Александр Владимирович Гапоненко +т.0037129204048, a.gaponenko@gmail.com + +[[de:Wikipedia:Fragen zur Wikipedia]] + +== Translation request for Ido Wikipedia == +Could anyone please translate this into Latgalu? + +Welcome to the Ido Wikipedia. Ido was first known as reformed Esperanto and was created in 1907 after seven years of deliberation by a committee of professors and linguists. You may notice that Ido looks somewhat like Esperanto, but with a number of differences including a complete lack of diacritical marks, the use of the letter 'q', along with many of the words themselves. +If you are studying Ido and want to write for our Wikipedia, feel free! There are people here to correct your Ido should you make a mistake. Just use the {{revizo}} tag whenever you think your article could use some grammatical revision. +The main site for the Ido language is located here, Ido publications are located here, and the English Wikipedia article on Ido is located here. A complete list of sites in Ido on the internet is located here. Lastly, the main reasons for choosing Ido over the more well-known Esperanto are summed up in this article. + +Thanks for your help. --[[Lītuotuojs:Chabi1|Chabi1]] ([[Sprīža ap lītuotuoju:Chabi1|talk]]) 09:55, 27 pavasara mieness 2013 (EET) + +== Catalan Culture Challenge == +I apologize if this message is not in your language. Please help translate it. + +The Catalan-speaking world... Want to find out more? From March 16 to April 15 we will organise the [[:en:Wikipedia:Catalan culture challenge|Catalan Culture Challenge]], a Wikipedia editing contest in which victory will go to those who start and improve the greatest number of articles about 50 key figures of Catalan culture. You can take part by creating or expanding articles on these people in your native language (or any other one you speak). It would be lovely to have you on board. :-) + +We look forward to seeing you! + +[[:m:Amical Wikimedia|Amical Wikimedia]]--[[Lītuotuojs:Kippelboy|Kippelboy]] ([[Sprīža ap lītuotuoju:Kippelboy|talk]]) 07:44, 16 pavasara mieness 2014 (EET) + +== Changes to the default site typography coming soon == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +This week, the typography on Wikimedia sites will be updated for all readers and editors who use the default "Vector" skin. This change will involve new serif fonts for some headings, small tweaks to body content fonts, text size, text color, and spacing between elements. The schedule is: + +* '''April 1st''': non-Wikipedia projects will see this change live +* '''April 3rd''': Wikipedias will see this change live + +This change is very similar to the "Typography Update" Beta Feature that has been available on Wikimedia projects since November 2013. After several rounds of testing and with feedback from the community, this Beta Feature will be disabled and successful aspects enabled in the default site appearance. Users who are logged in may still choose to use another skin, or alter their [[Special:MyPage/vector.css|personal CSS]], if they prefer a different appearance. Local [[MediaWiki:Common.css|common CSS]] styles will also apply as normal, for issues with local styles and scripts that impact all users. + +For more information: +* [[mw:Typography refresh|Summary of changes and FAQ]] +* [[mw:Talk:Typography refresh|Discussion page]] for feedback or questions +* [https://blog.wikimedia.org/2014/03/27/typography-refresh/ Post] on blog.wikimedia.org + +-- [[m:User:Steven (WMF)|Steven Walling]] (Product Manager) on behalf of the Wikimedia Foundation's [[mw:Design|User Experience Design]] team +</div> +<!-- Message sent by User:Steven (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=7990801 --> + +== No one needs free knowledge in Esperanto == + +There is a [[:de:Wikipedia Diskussion:Kurier#.E2.80.9ENiemand braucht freies Wissen auf Esperanto.E2.80.9C|current discussion]] on German Wikipedia on a decision of Asaf Bartov, Head of WMF Grants and Global South Partnerships, Wikimedia Foundation, who rejected a request for funding a proposal from wikipedians from eowiki one year ago with the explanation ''[[:meta:Grants_talk:PEG/KuboF_-_Esperanto_kaj_Libera_Scio/WikiTrans_training_and_work_session_2013#An_Esperanto_Wikipedia_does_not_advance_our_mission|the existence, cultivation, and growth of the Esperanto Wikipedia does not advance our educational mission. No one needs free knowledge in Esperanto]]''. On meta there has also started a discussion about that decision. --[[Lītuotuojs:Holder|Holder]] ([[Sprīža ap lītuotuoju:Holder|talk]]) 13:38, 5 lopu mieness 2014 (EEST) + +== Media Viewer == + +<br> +<div lang="en" dir="ltr" class="mw-content-ltr"> +Greetings, my apologies for writing in English. + +I wanted to let you know that [[mw:Multimedia/About Media Viewer|Media Viewer]] will be released to this wiki in the coming weeks. Media Viewer allows readers of Wikimedia projects to have an enhanced view of files without having to visit the file page, but with more detail than a thumbnail. You can try Media Viewer out now by turning it on in your [[Special:Preferences#mw-prefsection-betafeatures|Beta Features]]. If you do not enjoy Media Viewer or if it interferes with your work after it is turned on you will be able to disable Media Viewer as well in your [[Special:Preferences#mw-prefsection-rendering|preferences]]. I invite you to [[mw:Talk:Multimedia/About Media Viewer|share what you think]] about Media Viewer and how it can be made better in the future. + +Thank you for your time. - [[m:User:Keegan (WMF)|Keegan (WMF)]] 00:29, 24 lopu mieness 2014 (EEST) + +<small>--This message was sent using [[m:MassMessage|MassMessage]]. Was there an error? [[m:Talk:MassMessage|Report it!]]</small> +</div> +</br> +<!-- Message sent by User:Keegan (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/MassMessage/Multimedia/Media_Viewer&oldid=8631315 --> + +== Using only [[commons:Special:MyLanguage/Commons:Upload Wizard|UploadWizard]] for uploads == + +[[Image:Commons-logo.svg|right|220px|alt=Wikimedia Commons logo]] +<div lang="en" dir="ltr" class="mw-content-ltr"> +Hello! Sorry for writing in English. It was noted that on this wiki upload is not fully functional for users, who will experience a very difficult and/or [[wmf:Resolution:Licensing policy|illegal]] uploading. In fact, the [[MediaWiki:Licenses|licenses/copyright tags dropdown]] is empty, making it hard or impossible to comply with copyright requirements during upload itself. + +Presumably, you don't have interest nor energies to have [[commons:Category:Licensing templates|hundreds templates]] with the [[mw:Multimedia/Media Viewer/Template compatibility|now required HTML]], even less a local [[m:EDP|EDP]]. +I propose to have +* '''[[Special:Upload|local "{{int:upload}}"]] [[commons:Commons:Turning off local uploads|restricted]]''' to the "{{int:group-sysop}}" group (for emergency uploads) and +* the '''sidebar point to [[commons:Special:UploadWizard]]''', +so that you can avoid local maintenance and all users can have a functioning, easy upload interface [[translatewiki:Special:Translate/ext-uploadwizard|in their own language]]. All registered users can upload on Commons and [[Special:ListFiles|existing files]] will not be affected. + +All this will get done around 2014-07-03. +# If you disagree with the proposal, just [[m:User:Nemo bis/Unused local uploads|remove your wiki from the list]]. Remember also to create [[MediaWiki:Licenses]] locally with any content (see a [[s:fr:MediaWiki:Licenses|simple example]]), or uploads will be soon disabled anyway by MediaWiki itself (starting in [[mw:MediaWiki_1.24/Roadmap|version 1.24wmf11]]). +# To make the UploadWizard even better, please tell your experience and ideas on [[commons:Commons:Upload Wizard feedback]]. + +[[m:User:Nemo_bis|Nemo]] 16:09, 19 vosorys mieness 2014 (EEST) +</div> +<!-- Message sent by User:Nemo bis@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=User_talk:Nemo_bis/Unused_local_uploads&oldid=8940453 --> + +== Media Viewer is now live on this wiki == + +<br> +<div lang="en" dir="ltr" class="mw-content-ltr"> +[[File:Media_Viewer_Desktop_-_Large_Image_Opaque_Info.png|thumb|Media Viewer lets you see images in larger size]] + +Greetings— and sorry for writing in English, please translate if it will help your community, + +The Wikimedia Foundation's [[mw:Multimedia|Multimedia team]] is happy to announce that [[mw:Multimedia/About Media Viewer|Media Viewer]] was just released on this site today. + +Media Viewer displays images in larger size when you click on their thumbnails, to provide a better viewing experience. Users can now view images faster and more clearly, without having to jump to separate pages — and its user interface is more intuitive, offering easy access to full-resolution images and information, with links to the file repository for editing. The tool has been tested extensively across all Wikimedia wikis over the past six months as a [[Special:Preferences#mw-prefsection-betafeatures|Beta Feature]] and has been [[mw:Multimedia/Media_Viewer/Release_Plan#Timeline|released]] to the largest Wikipedias, all language Wikisources, and the English Wikivoyage already. + +If you do not like this feature, you can easily turn it off by clicking on "Disable Media Viewer" at the bottom of the screen, pulling up the information panel (or in your [[Special:Preferences#mw-prefsection-rendering|your preferences]]) whether you have an account or not. Learn more [[mw:Help:Multimedia/Media_Viewer#How_can_I_turn_off_this_feature.3F|in this Media Viewer Help page]]. + +Please let us know if you have any questions or comments about Media Viewer. You are invited to [[mw:Talk:Multimedia/About_Media_Viewer|share your feedback in this discussion on MediaWiki.org]] in any language, to help improve this feature. You are also welcome to [https://www.surveymonkey.com/s/media-viewer-1-all?c=announce-all take this quick survey in English], [https://www.surveymonkey.com/s/media-viewer-1-fr en français], [https://www.surveymonkey.com/s/media-viewer-1-es o español]. + +We hope you enjoy Media Viewer. Many thanks to all the community members who helped make it possible. - [[mw:User:Fabrice Florin (WMF)|Fabrice Florin (WMF)]] ([[m:User talk:Fabrice Florin (WMF)|talk]]) 00:54, 20 vosorys mieness 2014 (EEST) + +<small>--This message was sent using [[m:MassMessage|MassMessage]]. Was there an error? [[m:Talk:MassMessage|Report it!]]</small> +</div> +<!-- Message sent by User:Keegan (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/MassMessage/Multimedia/Media_Viewer&oldid=8631315 --> + +==Help for translate== +Hello and sorry for writing in English. Can anyone help me translate a small article (2 paragraphs) from English to your language and create the article in your wiki? Please, fell free to answer in my talk page in your wiki anytime. Thanks! [[Lītuotuojs:Xaris333|Xaris333]] ([[Sprīža ap lītuotuoju:Xaris333|talk]]) 04:08, 13 labeibys mieness 2014 (EEST) + +== Letter petitioning WMF to reverse recent decisions == + +The Wikimedia Foundation recently created a new feature, "superprotect" status. The purpose is to prevent pages from being edited by elected administrators -- but permitting WMF staff to edit them. It has been put to use in only one case: to protect the deployment of the Media Viewer software on German Wikipedia, in defiance of a clear decision of that community to disable the feature by default, unless users decide to enable it. + +If you oppose these actions, please add your name to this letter. If you know non-Wikimedians who support our vision for the free sharing of knowledge, and would like to add their names to the list, please ask them to sign an identical version of the letter on change.org. +* [[:m:Letter to Wikimedia Foundation: Superprotect and Media Viewer|Letter to Wikimedia Foundation: Superprotect and Media Viewer]] +* [http://www.change.org/p/lila-tretikov-remove-new-superprotect-status-and-permit-wikipedia-communities-to-enact-current-software-decisions-uninhibited Letter on change.org] + +-- [[:m:User:JurgenNL|JurgenNL]] ([[:m:User talk:JurgenNL|talk]]) 20:35, 21 labeibys mieness 2014 (EEST) +<!-- Message sent by User:JurgenNL@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=9313374 --> + +== Process ideas for software development == + +<div class=”mw-content-ltr”> +’’My apologies for writing in English.’’ + +Hello, + +I am notifying you that a brainstorming session has been [[:m:Community Engagement (Product)/Process ideas|started on Meta]] to help the Wikimedia Foundation increase and better affect community participation in software development across all wiki projects. Basically, how can you be more involved in helping to create features on Wikimedia projects? We are inviting all interested users to voice their ideas on how communities can be more involved and informed in the product development process at the Wikimedia Foundation. It would be very appreciated if you could translate this message to help inform your local communities as well. + +I and the rest of [[:m:Community Engagement (Product)|my team]] welcome you to participate. We hope to see you on Meta. + +Kind regards, +-- [[m:User:Rdicerb (WMF)|Rdicerb (WMF)]] [[m:User talk:Rdicerb (WMF)|talk]] 01:15, 22 labeibys mieness 2014 (EEST) + +<small>--This message was sent using [[m:MassMessage|MassMessage]]. Was there an error? [[m:Talk:MassMessage|Report it!]]</small> +</div> +<!-- Message sent by User:Keegan (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=9313374 --> + +== Grants to improve your project == + +:''Apologies for English. Please help translate this message.'' +Greetings! The [[:m:Grants:IEG|Individual Engagement Grants program]] is accepting proposals for funding new experiments from September 1st to 30th. Your idea could improve Wikimedia projects with a new tool or gadget, a better process to support community-building on your wiki, research on an important issue, or something else we haven't thought of yet. +Whether you need $200 or $30,000 USD, Individual Engagement Grants can cover your own project development time in addition to hiring others to help you. +*'''[[:m:Grants:IEG#ieg-apply|Submit your proposal]]''' +*'''Get help''': In [[:m:Grants:IdeaLab|IdeaLab]] or an upcoming [[:m:Grants:IdeaLab/Events#Upcoming_events|Hangout session]] [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|talk]]) 19:52, 2 rudiņa mieness 2014 (EEST) +<!-- Message sent by User:PEarley (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=User:PEarley_(WMF)/Sandbox&oldid=9730503 --> + +== Meta RfCs on two new global groups == + +<div lang="en" dir="ltr" class="mw-content-ltr">Hello all, + +There are currently requests for comment open on meta to create two new global groups. The first is a group for members of the OTRS permissions queue, which would grant them autopatrolled rights on all wikis except those who opt-out. That proposal can be found at [[m:Requests for comment/Creation of a global OTRS-permissions user group]]. The second is a group for Wikimedia Commons admins and OTRS agents to view deleted file pages through the 'viewdeletedfile' right on all wikis except those who opt-out. The second proposal can be found at [[m:Requests for comment/Global file deletion review]]. + +We would like to hear what you think on both proposals. Both are in English; if you wanted to translate them into your native language that would also be appreciated. + +It is possible for individual projects to opt-out, so that users in those groups do not have any additional rights on those projects. To do this please start a local discussion, and if there is consensus you can request to opt-out of either or both at [[m:Stewards' noticeboard]]. + +Thanks and regards, [[m:User:Ajraddatz|Ajraddatz]] ([[m:User talk:Ajraddatz|talk]]) 20:04, 26 leita mieness 2014 (EET)</div> +<!-- Message sent by User:Ajraddatz@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=10024331 --> + +== [[:en:Languages in censuses|Languages in censuses]] == +Hello, Dear wikipedians. I invite you to edit and improve this article and to add information about your and other country.--[[Lītuotuojs:Kaiyr|Kaiyr]] ([[Sprīža ap lītuotuoju:Kaiyr|talk]]) 14:21, 31 leita mieness 2014 (EET) + +== Global AbuseFilter == + +<div lang="en" dir="ltr" class="mw-content-ltr">Hello, + +[[mw:Special:MyLanguage/Extension:AbuseFilter|AbuseFilter]] is a MediaWiki extension used to detect likely abusive behavior patterns, like pattern vandalism and spam. In 2013, [[m:Special:Mylanguage/Global AbuseFilter|Global AbuseFilters]] were enabled on a limited set of wikis including Meta-Wiki, MediaWiki.org, Wikispecies and (in early 2014) all the "[https://noc.wikimedia.org/conf/highlight.php?file=small.dblist small wikis]". Recently, global abuse filters were enabled on "[https://noc.wikimedia.org/conf/highlight.php?file=medium.dblist medium sized wikis]" as well. These filters are currently managed by stewards on Meta-Wiki and have shown to be very effective in preventing mass spam attacks across Wikimedia projects. However, there is currently no policy on how the global AbuseFilters will be managed although there are proposals. There is an ongoing [[m:Requests for comment/Global AbuseFilter|request for comment]] on policy governing the use of the global AbuseFilters. In the meantime, specific wikis can opt out of using the global AbuseFilter. These wikis can simply add a request to [[m:Global AbuseFilter/Opt-out wikis|this list]] on Meta-Wiki. More details can be found on [[m:Special:Mylanguage/Global AbuseFilter/2014 announcement|this page]] at Meta-Wiki. If you have any questions, feel free to ask on [[m:Talk:Global AbuseFilter|m:Talk:Global AbuseFilter]]. + +Thanks, + +[[m:User:PiRSquared17|PiRSquared17]], [[m:User:Glaisher|Glaisher]]</div> — 19:36, 14 solnys mieness 2014 (EET) +<!-- Message sent by User:Glaisher@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Global_AbuseFilter/2014_announcement_distribution_list&oldid=10495115 --> + +== Вики-сабантуй == +Приглашаю всех в [[:wmru:Вики-Сабантуй 2015|вики-сабантуй]] который пройдет 24-26 апреля 2015 года в Уфе. Регистрация [[:wmru:Вики-Сабантуй 2015/Международная конференция/Участники|тут]]. Срок подачи заявок: до 31 марта 2015 года включительно. --[[Lītuotuojs:Kaiyr|Kaiyr]] ([[Sprīža ap lītuotuoju:Kaiyr|talk]]) 20:11, 2 zīmys mieness 2014 (EET) + +== [Global proposal] m.{{SITENAME}}.org: {{int:group-all}} {{int:right-edit}} == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +[[File:Mediawiki-mobile-smartphone.png|thumb|MediaWiki mobile]] +Hi, this message is to let you know that, on domains like {{CONTENTLANGUAGE}}.'''m'''.wikipedia.org, '''unregistered users cannot edit'''. At the Wikimedia Forum, where global configuration changes are normally discussed, a few dozens users [[m:Wikimedia Forum#Proposal: restore normal editing permissions on all mobile sites|propose to restore normal editing permissions on all mobile sites]]. Please read and comment! + +Thanks and sorry for writing in English, [[m:User:Nemo_bis|Nemo]] 00:33, 2 pavasara mieness 2015 (EET) +</div> +<!-- Message sent by User:Nemo bis@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=11428885 --> + +== Inspire Campaign: Improving diversity, improving content == + +This March, we’re organizing an Inspire Campaign to encourage and support new ideas for improving gender diversity on Wikimedia projects. Less than 20% of Wikimedia contributors are women, and many important topics are still missing in our content. We invite all Wikimedians to participate. If you have an idea that could help address this problem, please get involved today! The campaign runs until March 31. + +All proposals are welcome - research projects, technical solutions, community organizing and outreach initiatives, or something completely new! Funding is available from the Wikimedia Foundation for projects that need financial support. Constructive, positive feedback on ideas is appreciated, and collaboration is encouraged - your skills and experience may help bring someone else’s project to life. Join us at the Inspire Campaign and help this project better represent the world’s knowledge! +:*[[:m:Grants:IdeaLab/Inspire|Inspire Campaign main page]] +''(Sorry for the English - please translate this message!)'' [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|talk]]) 22:01, 4 pavasara mieness 2015 (EET) +<!-- Message sent by User:PEarley (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=User:PEarley_(WMF)/Inspire_Mass_Message&oldid=11457822 --> + +== Feedback request: VisualEditor's special character inserter == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +''I apologize for writing in English. Please translate this message so that all of your editors can read it. Thank you!'' + +Hi everybody, my name is Erica, and I am a Community Liaison at the Wikimedia Foundation. I'm writing to you because the [[:mw:Editing/Team|Editing team at WMF]] wants to know what you think about [[:mw:VisualEditor|VisualEditor]] and its new {{int:visualeditor-specialcharacterinspector-title}} tool. This change will affect all users on [[:mw:VisualEditor/Rollouts|about 50 Wikipedias]], including your Wikipedia. Many editors at these Wikipedias need a special character tool to be able to write articles correctly, which is why we are asking you now. + +The new special character inserter tool is available in VisualEditor now. Admins at your wiki can change the contents by following [[:mw:VisualEditor/Special characters|the directions at mediawiki.org]]. +[[File:VisualEditor special character inserter March 2015.png|alt=Screenshot from VisualEditor that shows the special character inserter|centre|thumb|800x800px|New design for the special character inserter. The red arrow points to the button for the tool, which is marked with Ω (omega).]] +'''To test the {{int:visualeditor-specialcharacterinspector-title}}''' tool''', please:''' +# '''Opt-in to VisualEditor''' by going to [[Special:Preferences#mw-prefsection-betafeatures]] and choosing "{{int:visualeditor}}". Save your preferences. +# '''Edit any article or your user page''' in VisualEditor by clicking on the new "{{int:vector-view-edit}}" tab at the top of the page. See the [[:mw:Help:VisualEditor/User guide]] for information on how to use VisualEditor. +# '''Please post your comments and the language(s) that you tested''' at [[:mw:VisualEditor/Feedback#Updated_special_character_inserter_tool_54649|the feedback thread on Mediawiki.org]]. The developers would like to know what you think about this new design. It is important that they hear from as many editors as possible. You may leave your comments in any language. + +When the special character tool has been refined a little more based on your thoughts, we will offer VisualEditor by default to all editors at ''this'' wiki. If you want to help prepare, please read [[mw:Help:VisualEditor/VE_as_the_main_editor|the advice on mediawiki.org]]. + +Thank you, [[User:Elitre (WMF)|Elitre (WMF)]] [[User talk:Elitre (WMF)|(talk)]] 20:33, 12 pavasara mieness 2015 (EET) + +</div> +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Phase_5_wikis&oldid=11481628 --> + +== SUL finalization update == + +<div class="mw-content-ltr"> +Hi all,apologies for writing in English, please read [[m:Single_User_Login_finalisation_announcement/Schema_announcement|this page]] for important information and an update involving [[m:Help:Unified login|SUL finalization]], scheduled to take place in one month. Thanks. [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 21:45, 13 pavasara mieness 2015 (EET) +</div> +<!-- Message sent by User:Keegan (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/Everyone_but_meta_and_de&oldid=11538208 --> + +== VisualEditor coming to this wiki == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +[[File:VisualEditor-logo.svg|right|frameless]] +''Hello again. Please excuse the English. I would be grateful if you can translate this message!'' + +<mark>[[:mw:VisualEditor/Portal|'''VisualEditor''']] is coming to all editors at this Wikipedia on Monday, March 30th.</mark> {{int:visualeditor}} is software that allows people to edit articles without needing to learn wikitext code (like typing <nowiki>[[</nowiki> to start a link). You don't have to wait until the deployment to test it; '''you can test {{int:visualeditor}} right now.''' To turn it on, select [[Special:Preferences#mw-prefsection-betafeatures|"Beta"]] in your preferences. Choose "{{int:visualeditor}}" and click save. + +Now, when you press the "{{int:vector-view-edit}}" button to edit an article, you will get the new VisualEditor software. To use the wikitext editor, you can press "{{int:visualeditor-ca-editsource}}". (After the deployment, everyone will automatically have the option to use either VisualEditor or the current wikitext editor.) For more information about how to use VisualEditor, see [[:mw:Help:VisualEditor/User guide]]. + +More information about [[:mw:Help:VisualEditor/VE_as_the_main_editor|preparing for VisualEditor is posted here]]. +* It's easier to add templates if you've added [[:mw:TemplateData|TemplateData]] instructions to them. +* Please help translate the pages about VisualEditor here and on MediaWiki.org, and its user interface. See [[:mw:VisualEditor/TranslationCentral|VisualEditor TranslationCentral]] for general information. To translate the user guide, go to [[:mw:Help:VisualEditor/User_guide|the MediaWiki.org page]], and select "{{int:translate-tag-translate-link-desc}}". Your language should be available from the drop-down menu on the right. Once you've done this, you'll see the document in English side by side with any translation work already done in your language. You can add new translations or change old translations. To translate the user interface, you need to create an account at translatewiki.net. Contact me personally if you need help with that. +* We need your help to improve the software! Please let us know if you find any problems. You can report issues in [[:phab:|Phabricator, the new bug tracking system]] or on the [[:mw:VisualEditor/Feedback|central feedback page]] on MediaWiki.org. If you notice major issues affecting your project, please leave a note on my talk page. If it's an emergency (like an unexpected bug causing widespread problems), reach out to James Forrester, the Product Manager, at jforrester@wikimedia.org or on [[:m:IRC|IRC]] in the #mediawiki-visualeditor channel. + +<div style="float: right;">[[:m:VisualEditor/Newsletter/Phase 5 wikis|''Wrong target page? Fix it here'']]'' • [[:m:VisualEditor/Newsletter|Sign up for VisualEditor's multilingual newsletter]] </div> + + +Thank you, and happy editing! --[[User:Elitre (WMF)|Elitre (WMF)]] [[User talk:Elitre (WMF)|(talk)]] 21:38, 19 pavasara mieness 2015 (EET) +</div> +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Phase_5_wikis&oldid=11630509 --> + +== VisualEditor now active here == + +<div class="mw-content-ltr" lang="en" dir="ltr"> +[[Image:VisualEditor - Icon - Help.svg|thumb|upright|Click this icon while in VisualEditor for a link to the [[:mw:Help:VisualEditor/User guide|User Guide]].]] + +Hello again (and again, apologies for using English on this page. Please do translate my message, if you can!). + +As some of you have noticed, '''this Wikipedia now has [[:mw:VisualEditor|{{int:visualeditor}}]] (VisualEditor or "VE") enabled for all users'''. There are now two tabs for editing: "{{int:vector-view-edit}}" and "{{int:visualeditor-ca-editsource}}". Click "{{int:vector-view-edit}}" to use VisualEditor. Click "{{int:visualeditor-ca-editsource}}" to edit using wikitext markup. + +All edits using VisualEditor will be tagged with "Tag:{{Int:visualeditor}}" in recent changes, watchlists, and page histories. To access the [[:mw:Help:VisualEditor/User guide|User Guide for VisualEditor]], click on the "(?)" icon in VisualEditor's toolbar. If you wish to disable VisualEditor, this can be done under [[Special:Preferences#mw-prefsection-editing|"Editing" in your preferences]]. + +Please report any software "bugs" or errors you find at [[:mw:VisualEditor/Feedback|MediaWiki’s VisualEditor Feedback page]]. Translations for the user interface and its help guide are still needed: you can '''learn how to support your community with this and other tasks at [[:mw:Help:VisualEditor/VE as the main editor|this instructions page]]'''. Please contact me if you need further help though. Happy editing, [[:mw:User:Elitre (WMF)|User:Elitre (WMF)]] [[:mw:User talk:Elitre (WMF)|(talk)]] 18:09, 30 pavasara mieness 2015 (EEST) +</div> +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Phase_5_wikis&oldid=11630802 --> + +== Stewards confirmation rules == + +Hello, I made [[:m:Requests_for_comment/Confirmation_of_stewards|a proposal on Meta]] to change the rules for the steward confirmations. Currently consensus to remove is required for a steward to lose his status, however I think it's fairer to the community if every steward needed the consensus to keep. As this is an issue that affects all WMF wikis, I'm sending this notification to let people know & be able to participate. Best regards, --<small>[[User:MF-Warburg|MF-W]]</small> 19:12, 10 sulu mieness 2015 (EEST) +<!-- Message sent by User:MF-Warburg@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=11737694 --> + +== VisualEditor News #2—2015 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +<div style="margin:0.5em;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}border:1px solid #AAA;padding:0.5em;"> +[[File:VisualEditor-logo.svg|200x70px|center|alt=VisualEditor]] + + +'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> +With [[:mw:Citoid|Citoid]] in VisualEditor, you click the 'book with bookmark' icon and paste in the URL for a reliable source: + + +[[File:Citoid in VisualEditor Screen Shot 2015-04-02.png|alt=Screenshot of Citoid's first dialog|centre|frameless|230x230px]] + + +Citoid looks up the source for you and returns the citation results. Click the green "Insert" button to accept its results and add them to the article: + + +[[File:Citoid results in VisualEditor Screen Shot 2015-04-02.png|alt=Screenshot of Citoid's initial results|centre|frameless|230x230px]] + + +After inserting the citation, you can change it. Select the reference, and click the "Edit" button in the context menu to make changes. + +[[:mw:Special:MyLanguage/VisualEditor/User guide|The user guide]] has more information about how to use VisualEditor. +</div></div> +Since the last newsletter, the [[:mw:VisualEditor|Editing Team]] has fixed many bugs and worked on VisualEditor's performance, the [[:mw:Citoid|Citoid]] reference service, and support for languages with complex input requirements. Status reports are posted [[:mw:VisualEditor/changelog|on Mediawiki.org]]. The worklist for April through June is available [[phab:project/sprint/board/1113/|in Phabricator]]. + +The weekly '''task triage meetings''' continue to be open to volunteers, each Wednesday at [http://www.timeanddate.com/worldclock/fixedtime.html?iso=20150401T11&p1=224&am=30 11:00 (noon) PDT] (18:00 UTC). You do not need to attend the meeting to nominate a bug for consideration as a Q4 blocker. Instead, go to Phabricator and "associate" the [[phab:tag/editing_department_2014_15_q4_blockers/|Editing team's Q4 blocker project]] with the bug. Learn how to join the meetings and how to nominate bugs at [[:mw:Talk:VisualEditor/Portal|mw:Talk:VisualEditor/Portal]]. +=== Recent improvements === +VisualEditor is now substantially faster. In many cases, opening the page in VisualEditor is now faster than opening it in the wikitext editor. The new system has improved the code speed by 37% and [[:mw:RESTBase|network speed]] by almost 40%. + +The Editing team is slowly adding '''auto-fill features''' '''for citations'''. This is currently available only at the French, Italian, and English Wikipedias. The '''[[:mw:Citoid|Citoid service]]''' takes a [[:en:URL|URL]] or [[:en:Digital object identifier|DOI]] for a reliable source, and returns a pre-filled, pre-formatted bibliographic citation. After creating it, you will be able to change or add information to the citation, in the same way that you edit any other pre-existing citation in VisualEditor. Support for [[:en:ISBN|ISBNs]], [[:en:PubMed#PubMed_identifier|PMIDs]], and other identifiers is planned. Later, editors will be able to improve precision and reduce the need for manual corrections by contributing to the Citoid service's definitions for each website. + +Citoid requires good [[:mw:Special:MyLanguage/Help:TemplateData|TemplateData]] for your citation templates. If you would like to request this feature for your wiki, please post a request in the [[phab:tag/citoid/|Citoid project on Phabricator]]. Include links to the TemplateData for the most important citation templates on your wiki. + +The '''special character inserter''' has been improved, based upon feedback from active users. After this, VisualEditor was made available to all users of Wikipedias on the [[:mw:VisualEditor/Rollouts|Phase 5]] list on 30 March. This affected 53 mid-size and smaller Wikipedias, including '''Afrikaans''', '''Azerbaijani''', '''Breton''', '''Kyrgyz''', '''Macedonian''', '''Mongolian''', '''Tatar''', and''' Welsh'''. + +Work continues to support languages with complex requirements, such as Korean and Japanese. These languages use [[w:input method editor|input method editors]] ("IMEs”). Recent improvements to cursoring, backspace, and delete behavior will simplify typing in VisualEditor for these users. + +The design for the image selection process is now using a "masonry fit" model. Images in the search results are displayed at the same height but at variable widths, similar to bricks of different sizes in a masonry wall, or the [[:mw:Special:MyLanguage/Help:Images#Mode parameter|"packed" mode in image galleries]]. This style helps you find the right image by making it easier to see more details in images. + +You can now '''drag and drop categories''' to re-arrange their order of appearance ​on the page. + +The pop-up window that appears when you click on a reference, image, link, or other element, is called the "context menu". It now displays additional useful information, such as the destination of the link or the image's filename. The team has also added an explicit "Edit" button in the context menu, which helps new editors open the tool to change the item. + +'''Invisible templates are marked by a puzzle piece icon''' so they can be interacted with. Users also will be able to see and edit HTML anchors now in section headings. + +Users of the TemplateData GUI editor can now set a string as an optional text for the 'deprecated' property in addition to boolean value, which lets you tell users of the template what they should do instead. ([https://phabricator.wikimedia.org/T90734 T90734]) + +=== Looking ahead === +The special character inserter in VisualEditor will soon use the same special character list as the wikitext editor. Admins at each wiki will also have the option of creating a custom section for frequently used characters at the top of the list. Instructions for customizing the list will be posted [[:mw:VisualEditor/Special_characters|at mediawiki.org]]. + +The team is discussing a test of VisualEditor with new users at the English Wikipedia, to see whether they have met their goals of making VisualEditor suitable for those editors. The timing is unknown, but might be relatively soon. ([https://phabricator.wikimedia.org/T90666 T90666]) + +=== Let's work together === + +* Share your ideas and ask questions at [https://www.mediawiki.org/w/index.php?title=VisualEditor/Feedback&lqt_method=talkpage_new_thread mw:VisualEditor/Feedback]. +* Can you translate from English into any other language? Please check [https://translatewiki.net/w/i.php?title=Special%3AMessageGroupStats&x=D&group=ext-visualeditor-ve&suppressempty=1 this list] to see whether more interface translations are needed for your language. [[m:User talk:Elitre (WMF)|Contact us]] to get an account if you want to help! +* The design research team wants to see how real editors work. Please [https://jfe.qualtrics.com/form/SV_6R04ammTX8uoJFP sign up for their research program]. +* File requests for language-appropriate "{{Int:visualeditor-annotationbutton-bold-tooltip}}" and "{{Int:visualeditor-annotationbutton-italic-tooltip}}" icons for the character formatting menu [https://phabricator.wikimedia.org/maniphest/task/create/?projects=PHID-PROJ-dafezmpv6huxg3taml24 in Phabricator]. + +Subscribe, unsubscribe or change the page where this newsletter is delivered at [[:m:VisualEditor/Newsletter|Meta]]. If you aren't reading this in your favorite language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. Thank you! + +— <span class="mw-content-ltr" lang="en" dir="ltr">[[:mw:User:Elitre (WMF)|Elitre (WMF)]]</span> + +</div> 22:48, 10 sulu mieness 2015 (EEST) +<!-- Message sent by User:Keegan (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=11742174 --> + +== [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/Call for candidates|Nominations are being accepted for 2015 Wikimedia Foundation elections]] == + +''This is a message from the [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/Committee|2015 Wikimedia Foundation Elections Committee]]. [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/Accepting nominations|Translations]] are available.'' +[[File:Wikimedia Foundation logo - vertical (2012-2016).svg|100px|right]] +Greetings, + +I am pleased to announce that nominations are now being accepted for the 2015 Wikimedia Foundation Elections. This year the Board and the FDC Staff are looking for a diverse set of candidates from regions and projects that are traditionally under-represented on the board and in the movement as well as candidates with experience in technology, product or finance. To this end they have [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/Call for candidates|published letters]] describing what they think is needed and, recognizing that those who know the community the best are the community themselves, the election committee is [[m:Special:MyLanguage/Wikimedia Foundation elections 2015|accepting nominations]] for community members you think should run and will reach out to those nominated to provide them with information about the job and the election process. + +This year, elections are being held for the following roles: + +''Board of Trustees''<br/> +The Board of Trustees is the decision-making body that is ultimately responsible for the long term sustainability of the Foundation, so we value wide input into its selection. There are three positions being filled. More information about this role can be found at [[m:Special:MyLanguage/Wikimedia Foundation elections/Board elections/2015|the board elections page]]. + +''Funds Dissemination Committee (FDC)''<br/> +The Funds Dissemination Committee (FDC) makes recommendations about how to allocate Wikimedia movement funds to eligible entities. There are five positions being filled. More information about this role can be found at [[m:Special:MyLanguage/Wikimedia Foundation elections/FDC elections/2015|the FDC elections page]]. + +''Funds Dissemination Committee (FDC) Ombud''<br/> +The FDC Ombud receives complaints and feedback about the FDC process, investigates complaints at the request of the Board of Trustees, and summarizes the investigations and feedback for the Board of Trustees on an annual basis. One position is being filled. More information about this role can be found at [[m:Special:MyLanguage/Wikimedia Foundation elections/FDC Ombudsperson elections/2015|the FDC Ombudsperson elections page]]. + +The candidacy submission phase lasts from 00:00 UTC April 20 to 23:59 UTC May 5 for the Board and from 00:00 UTCApril 20 to 23:59 UTC April 30 for the FDC and FDC Ombudsperson. This year, we are accepting both self-nominations and nominations of others. More information on this election and the nomination process can be found on [[m:Special:MyLanguage/Wikimedia Foundation elections 2015|the 2015 Wikimedia elections page on Meta-Wiki]]. + +Please feel free to post a note about the election on your project's village pump. Any questions related to the election can be posted on the talk page on Meta, or sent to the election committee's mailing list, board-elections -at- wikimedia.org + +On behalf of the Elections Committee,<br/> +-Gregory Varnum ([[m:User:Varnent|User:Varnent]])<br/> +Coordinator, [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/Committee|2015 Wikimedia Foundation Elections Committee]] + +''Posted by the [[m:User:MediaWiki message delivery|MediaWiki message delivery]] on behalf of the [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/Committee|2015 Wikimedia Foundation Elections Committee]], 05:03, 21 April 2015 (UTC) • [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/Accepting nominations|Translate]] • [[m:Talk:Wikimedia Foundation elections 2015|Get help]] +<!-- Message sent by User:Varnent@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=11918510 --> + +== [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/FDC voting has begun|Wikimedia Foundation Funds Dissemination Committee elections 2015]] == + +[[File:Wikimedia Foundation RGB logo with text.svg|right|75px|link=m:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/FDC voting has begun]] +''This is a message from the [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/Committee|2015 Wikimedia Foundation Elections Committee]]. [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/FDC voting has begun|Translations]] are available.'' + +[[m:Special:SecurePoll/vote/336|Voting has begun]] for [[m:Wikimedia Foundation elections 2015#Requirements|eligible voters]] in the 2015 elections for the ''[[m:Special:MyLanguage/Wikimedia Foundation elections/FDC elections/2015|Funds Dissemination Committee]]'' (FDC) and ''[[m:Special:MyLanguage/Wikimedia Foundation elections/FDC Ombudsperson elections/2015|FDC Ombudsperson]]''. Questions and discussion with the candidates for the ''[[m:Special:MyLanguage/Wikimedia Foundation elections/FDC elections/2015/Questions|Funds Dissemination Committee]]'' (FDC) and ''[[m:Special:MyLanguage/Wikimedia Foundation elections/FDC Ombudsperson elections/2015/Questions|FDC Ombudsperson]]'' will continue during the voting. Nominations for the ''[[m:Special:MyLanguage/Wikimedia Foundation elections/Board elections/2015|Board of Trustees]]'' will be accepted until 23:59 UTC May 5. + +The ''[[m:Special:MyLanguage/Grants:APG/Funds Dissemination Committee|Funds Dissemination Committee]]'' (FDC) makes recommendations about how to allocate Wikimedia movement funds to eligible entities. There are five positions on the committee being filled. + +The ''[[m:Special:MyLanguage/Grants:APG/Funds Dissemination Committee/Ombudsperson role, expectations, and selection process|FDC Ombudsperson]]'' receives complaints and feedback about the FDC process, investigates complaints at the request of the [[m:Special:MyLanguage/Wikimedia Foundation Board of Trustees|Board of Trustees]], and summarizes the investigations and feedback for the Board of Trustees on an annual basis. One position is being filled. + +The voting phase lasts from 00:00 UTC May 3 to 23:59 UTC May 10. '''[[m:Special:SecurePoll/vote/336|Click here to vote]].''' Questions and discussion with the candidates will continue during that time. '''[[m:Special:MyLanguage/Wikimedia Foundation elections/FDC elections/2015/Questions|Click here to ask the FDC candidates a question]]. [[m:Special:MyLanguage/Wikimedia Foundation elections/FDC Ombudsperson elections/2015/Questions|Click here to ask the FDC Ombudsperson candidates a question]].''' More information on the candidates and the elections can be found on the [[m:Special:MyLanguage/Wikimedia Foundation elections/FDC elections/2015|2015 FDC election page]], the [[m:Special:MyLanguage/Wikimedia Foundation elections/FDC Ombudsperson elections/2015|2015 FDC Ombudsperson election page]], and the [[m:Special:MyLanguage/Wikimedia Foundation elections/Board elections/2015|2015 Board election page]] on Meta-Wiki. + +On behalf of the Elections Committee,<br/> +-Gregory Varnum ([[m:User:Varnent|User:Varnent]])<br/> +Volunteer Coordinator, [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/Committee|2015 Wikimedia Foundation Elections Committee]] + +''Posted by the [[m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] 03:45, 4 May 2015 (UTC) • [[m:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/FDC voting has begun|Translate]] • [[m:Talk:Wikimedia Foundation elections 2015|Get help]] +<!-- Message sent by User:Varnent@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=12082785 --> + +== [https://meta.wikimedia.org/wiki/Special:SecurePoll/vote/339?setlang=ltg Wikimedia Foundation Board of Trustees elections 2015] == + +[[File:Wikimedia Foundation logo - vertical (2012-2016).svg|right|100px|link=metawiki:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/Board voting has begun]] +''This is a message from the [[metawiki:Special:MyLanguage/Wikimedia Foundation elections 2015/Committee|2015 Wikimedia Foundation Elections Committee]]. [[metawiki:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/Board voting has begun|Translations]] are available.'' + +[https://meta.wikimedia.org/wiki/Special:SecurePoll/vote/339?setlang=ltg Voting has begun] for [[metawiki:Wikimedia Foundation elections 2015#Requirements|eligible voters]] in the 2015 elections for the ''[[metawiki:Special:MyLanguage/Wikimedia Foundation elections/Board elections/2015|Wikimedia Foundation Board of Trustees]]''. Questions and discussion with the candidates for the ''[[metawiki:Special:MyLanguage/Wikimedia Foundation elections/Board elections/2015/Questions|Board]]'' will continue during the voting. + +The ''[[metawiki:Wikimedia Foundation Board of Trustees|Wikimedia Foundation Board of Trustees]]'' is the ultimate governing authority of the Wikimedia Foundation, a 501(c)(3) non-profit organization registered in the United States. The Wikimedia Foundation manages many diverse projects such as Wikipedia and Commons. + +The voting phase lasts from 00:00 UTC May 17 to 23:59 UTC May 31. '''[https://meta.wikimedia.org/wiki/Special:SecurePoll/vote/339?setlang=ltg Click here to vote].''' More information on the candidates and the elections can be found on the [[metawiki:Special:MyLanguage/Wikimedia Foundation elections/Board elections/2015|2015 ''Board'' election page]] on Meta-Wiki. + +On behalf of the Elections Committee,<br/> +-Gregory Varnum ([[metawiki:User:Varnent|User:Varnent]])<br/> +Volunteer Coordinator, [[metawiki:Special:MyLanguage/Wikimedia Foundation elections 2015/Committee|2015 Wikimedia Foundation Elections Committee]] + +''Posted by the [[metawiki:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] 17:20, 17 May 2015 (UTC) • [[metawiki:Special:MyLanguage/Wikimedia Foundation elections 2015/MassMessages/Board voting has begun|Translate]] • [[metawiki:Talk:Wikimedia Foundation elections 2015|Get help]] +<!-- Message sent by User:Varnent@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=12206621 --> + +== Content Translation beta-feature is now available == + +Здравствуйте, + +Инструмент [[mw:Content_translation|Content Translation]] был включен как бета-функция в Википедии на вашем языке. Чтобы переводить, включите [[Special:Preferences#mw-prefsection-betafeatures|бета-функцию]] и пройдите на страницу [[Special:Contributions|вашего вклада]] или [[Special:CX|прямо на страницу перевода]], выберите язык, с которого вы переводите, и напишите название статьи, которую вы хотите перевести. Если такая статья уже есть на вашем языке, будет показано предупреждение. Когда вы закончите писать перевод, вы можете опубликовать её как полноценную страницу в Википедии. Если страница с таким же названием будет создана пока вы переводите, вам будет предложено сохранить ваш перевод как черновик в вашем пространстве пользователя. Количество созданных статей показано на [[Special:CXStats|странице статистики]]. + +Это первая проба этого инструмента на вашем языке, и возможно, что вы обнаружите неисправности, о которых мы ещё не знаем. Мы будем отслеживать как инструмент используется здесь, но мы просим вас сообщать нам о найденных вами неисправностях на странице обсуждения, или через [https://phabricator.wikimedia.org/T99529 Фабрикатор]. Вы можете найти дополнительную информацию на [[:mw:Content translation|странице описания проекта]]. + +Спасибо! + + +Hello, [[mw:Content_translation|Content Translation]] has now been enabled as an opt-in beta feature on this Wikipedia. To start translating, enable the beta feature and go to [[Special:ContentTranslation]] or to your contributions page and create a new translation by selecting the source language, the article name and target language. If the article already exists then a warning will be displayed. After you translate the article, you can publish it directly as a new page on the Wikipedia. In case the article gets created by another user while you were translating, you will see an option to save the newly published translation under your user namespace. The number of published pages can be seen on the [[Special:CXStats|Content Translation stats page]]. + +Since, this is the first time we have installed the tool on this Wikipedia, there are chances that there may be some problems or service disruptions which we are not yet aware of. We will be monitoring the usage to check for any failures or issues, but please do let us know on the [[:mw:Talk:Content_translation|Content Translation talk page]] or through [https://phabricator.wikimedia.org/T99529 Phabricator] if you spot any problems that prevent you from using the tool. For more information, please read [[:mw:Content_translation#Try_the_tool|about how to use the tool]]. You can also view a [https://upload.wikimedia.org/wikipedia/commons/e/ee/Content_Translation_Screencast_%28English%29.webm short screencast] on how to use Content Translation. My apologies for writing this announcement only in English and Russian. Please feel free to translate this message for wider distribution. Thank you.--[[Lītuotuojs:Runab WMF|Runab WMF]] ([[Sprīža ap lītuotuoju:Runab WMF|diskusija]]) 19:20, 18 lopu mieness 2015 (EEST) + +== Pywikibot compat will no longer be supported - Please migrate to pywikibot core == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +<small>Sorry for English, I hope someone translates this.</small><br /> +[[mw:Special:MyLanguage/Manual:Pywikibot|Pywikibot]] (then "Pywikipediabot") was started back in 2002. In 2007 a new branch (formerly known as "rewrite", now called "core") was started from scratch using the MediaWiki API. The developers of Pywikibot have decided to stop supporting the compat version of Pywikibot due to bad performance and architectural errors that make it hard to update, compared to core. If you are using pywikibot compat it is likely your code will break due to upcoming MediaWiki API changes (e.g. [[phab:T101524|T101524]]). It is highly recommended you migrate to the core framework. There is a [[mw:Manual:Pywikibot/Compat deprecation|migration guide]], and please [[mw:Special:MyLanguage/Manual:Pywikibot/Communication|contact us]] if you have any problem. + +There is an upcoming MediaWiki API breaking change that compat will not be updated for. If your bot's name is in [https://lists.wikimedia.org/pipermail/wikitech-l/2015-June/081931.html this list], your bot will most likely break. + +Thank you,<br /> +The Pywikibot development team, 19:30, 5 June 2015 (UTC) +</div> +<!-- Message sent by User:Ladsgroup@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=12271740 --> + +== VisualEditor News #3—2015 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +<div style="margin:0.5em;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}border:1px solid #AAA;padding:0.5em;"> +[[File:VisualEditor-logo.svg|200x70px|center|alt=VisualEditor]] + +'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> +When you click on a link to an article, you now see more information: +<br><br> +[[File:VisualEditor-context menu-link tool.png|alt=Screenshot showing the link tool's context menu|centre|frameless|230x230px]] +<br> +The link tool has been re-designed: +<br><br> +[[File:VisualEditor link tool 2015.png|alt=Screenshot of the link inspector|centre|frameless|230x230px]] +<br> +There are separate tabs for linking to internal and external pages. +[[:mw:Special:MyLanguage/VisualEditor/User guide|The user guide]] has more information about how to use VisualEditor. +</div></div> + +Since the last newsletter, the [[mw:VisualEditor|Editing Team]] has created new interfaces for the link and citation tools and fixed many bugs and changed some elements of the design. Some of these bugs affected users of VisualEditor on mobile devices. Status reports are posted [[mw:VisualEditor/changelog|on mediawiki.org]]. The worklist for April through June is available [[phab:project/sprint/board/1113/|in Phabricator]]. + +A [[m:Research:VisualEditor's_effect_on_newly_registered_editors/May_2015_study|test of VisualEditor's effect on new editors]] at the English Wikipedia has just completed the first phase. During this test, half of newly registered editors had VisualEditor automatically enabled, and half did not. The main goal of the study is to learn which group was more likely to save an edit and to make productive, unreverted edits. Initial [[m:Research:VisualEditor's_effect_on_newly_registered_editors/May_2015_study#Results|results will be posted at Meta]] later this month. +=== Recent improvements === +'''Auto-fill features''' '''for citations''' are available at a few Wikipedias through the '''[[:mw:Citoid|citoid service]]'''. Citoid takes a [[:en:URL|URL]] or [[:en:Digital object identifier|DOI]] for a reliable source, and returns a pre-filled, pre-formatted bibliographic citation. If Citoid is enabled on your wiki, then the design of the citation workflow changed during May. All citations are now created inside a single tool. Inside that tool, choose the tab you want ({{int:citoid-citeFromIDDialog-mode-auto}}, {{int: citoid-citeFromIDDialog-mode-manual}}, or {{int:citoid-citeFromIDDialog-mode-reuse}}). The cite button is now labeled with the word "{{int:visualeditor-toolbar-cite-label}}" rather than a book icon, and the autofill citation dialog now has a more meaningful label, "{{Int:Citoid-citeFromIDDialog-lookup-button}}", for the submit button. + +The '''link tool''' has been redesigned based on feedback from Wikipedia editors and user testing. It now has two separate sections: one for links to articles and one for external links. When you select a link, its pop-up context menu shows the name of the linked page, a thumbnail image from the linked page, Wikidata's description, and appropriate icons for disambiguation pages, redirect pages and empty pages (where applicable). Search results have been reduced to the first five pages. Several bugs were fixed, including a dark highlight that appeared over the first match in the link inspector. ([[phab:T98085|T98085]]) + +The '''special character inserter''' in VisualEditor now uses the same special character list as the wikitext editor. Admins at each wiki can also create a custom section for frequently used characters at the top of the list. Please read the instructions for customizing the list [[mw:VisualEditor/Special_characters|at mediawiki.org]]. Also, there is now a tooltip to describing each character in the special character inserter. ([[phab:T70425|T70425]]) + +Several improvements have been made to '''templates'''. When you search for a template to insert, the list of results now contains descriptions of the templates. The parameter list inside the template dialog now remains open after inserting a parameter from the list, so that users don’t need to click on "{{Int:visualeditor-dialog-transclusion-add-param}}" each time they want to add another parameter. ([[phab:T95696|T95696]]) The team added a '''new property for TemplateData''', "{{int: templatedata-doc-param-example}}", for template parameters. This optional, translatable property will show up when there is text describing how to use that parameter. ([[phab:T53049|T53049]]) + +The '''design''' of the main toolbar and several other elements have changed slightly, to be consistent with the MediaWiki theme. In the Vector skin, individual items in the menu are separated visually by pale gray bars. Buttons and menus on the toolbar can now contain both an icon and a text label, rather than just one or the other. This new design feature is being used for the cite button on wikis where the Citoid service is enabled. + +The team has released a long-desired improvement to the handling of '''non-existent images'''. If a non-existent image is linked in an article, then it is now visible in VisualEditor and can be selected, edited, replaced, or removed. + +=== Let's work together === +* Share your ideas and ask questions at [https://www.mediawiki.org/w/index.php?title=VisualEditor/Feedback&lqt_method=talkpage_new_thread mw:VisualEditor/Feedback]. +* The weekly task triage meetings continue to be open to volunteers, usually on Wednesday at 12:00 (noon) PDT (19:00 UTC). Learn how to join the meetings and how to nominate bugs at [[:mw:VisualEditor/Weekly triage meetings|mw:VisualEditor/Weekly triage meetings]]. You do not need to attend the meeting to nominate a bug for consideration as a Q4 blocker, though. Instead, go to Phabricator and "associate" the [[phab:tag/editing_department_2014_15_q4_blockers/|VisualEditor Q4 blocker project]] with the bug. +* If your Wikivoyage, Wikibooks, Wikiversity, or other community wants to have VisualEditor made available by default to contributors, then please contact [[:m:User:Jdforrester (WMF)|James Forrester]]. +* If you would like to request the Citoid automatic reference feature for your wiki, please post a request in the [[phab:tag/citoid/|Citoid project on Phabricator]]. Include links to the [[:mw:Help:TemplateData|TemplateData]] for the most important citation templates on your wiki. +*The team is planning the second VisualEditor-related "translathon" for July. Please follow [https://phabricator.wikimedia.org/T91108 this task on Phabricator] for details and updates! Announcements will follow in due course. + +Subscribe, unsubscribe or change the page where this newsletter is delivered at [[:m:VisualEditor/Newsletter|Meta]]. If you aren't reading this in your favorite language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. Thank you! + +— <span class="mw-content-ltr" lang="en" dir="ltr">[[:mw:User:Elitre (WMF)|Elitre (WMF)]]</span> + +</div>13:44, 13 vosorys mieness 2015 (EEST) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=12206605 --> + +== HTTPS == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +Apologies for writing in English. + +Hi everyone. + +Over the last few years, the Wikimedia Foundation has [http://blog.wikimedia.org/2013/08/01/future-https-wikimedia-projects/ been working] towards enabling [[m:Special:MyLanguage/HTTPS|HTTPS]] by default for all users, including unregistered ones, for better privacy and security for both readers and editors. This has taken a long time, as there were different aspects to take into account. Our servers haven't been ready to handle it. The Wikimedia Foundation has had to balance sometimes conflicting goals. + +[https://blog.wikimedia.org/2015/06/12/securing-wikimedia-sites-with-https/ Forced HTTPS] has just been implemented on all Wikimedia projects. Some of you might already be aware of this, as a few Wikipedia language versions were converted to HTTPS last week and the then affected communities were notified. + +Most of Wikimedia editors shouldn't be affected at all. If you edit as registered user, you've probably already had to log in through HTTPS. We'll keep an eye on this to make sure everything is working as it should. Do get in touch with [[:m:HTTPS#Help!|us]] if you have any problems after this change or contact me if you have any other questions. + +/[[:m:User:Johan (WMF)|Johan (WMF)]] +</div> 01:01, 20 vosorys mieness 2015 (EEST) +<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/HTTPS_global_message_delivery&oldid=12471979 --> + +== Any active admins? == + +I want to help out. Any admins that can translate pages from English to Latgalian? [[Lītuotuojs:IllogicMink|IllogicMink]] ([[Sprīža ap lītuotuoju:IllogicMink|diskusija]]) 05:24, 23 vosorys mieness 2015 (EEST) + +:Hi, I am not an admin, but I am an active user. Let me know your proposal. [[Lītuotuojs:Vucyns|Vucyns]] ([[Sprīža ap lītuotuoju:Vucyns|diskusija]]) 2015. gada 28. rudiņa mieness, plkst. 12.40 (EEST) + +== Please join the 2nd edition of the VisualEditor Translathon == + +<div class="mw-content-ltr" lang="en" dir="ltr"> +[[File:VisualEditor-logo-pacifico.svg|right|200px]] +Hello! + +I'm pleased to announce the 2nd edition of the '''VisualEditor Translathon'''. + +It is a translation rally, focused on interface messages and help pages related to [[:mw:VisualEditor|VisualEditor]]. +In order to participate, you need to '''[[:betawiki:Project:VisualEditor/2015_Translathon|sign up on the Translathon page]]''' on TranslateWiki. + +The top 3 contributors will each win a Wikipedia t-shirt of their choice from [//store.wikimedia.org/ the Wikipedia store]<ref>You can choose between any short-sleeve shirt, or other items for the same value.</ref>. +Translations made between '''July 15th and July 19th''' ([//www.timeanddate.com/time/zones/cdt CDT time zone]) qualify<ref>This means both new translations, and updates for messages in the "Outdated" tab of the translation interface.</ref>. + +If you are at [//wikimania2015.wikimedia.org/wiki/Wikimania Wikimania Mexico] this year, you are also welcome to join a related sprint during the hackathon in '''Workplace 1 - Don Américo, Thursday 16 July at 4pm (CDT)''' at the conference venue, so you can meet other fellow translators and [//wikimania2015.wikimedia.org/wiki/Hackathon#Hackathon_Day_2 get support if you need some]. + +Interface messages have the priority. You will need to create an account at translatewiki.net in order to work on them, if you don't have one. ''It is recommended to create the account ASAP'', so that it can be confirmed in time. + +You can also help translate documentation pages about VisualEditor on mediawiki.org. You can use your Wikipedia account to work there. + +You will find instructions, links and other details [[:betawiki:Project:VisualEditor/2015_Translathon|on the Translathon page]]. + +Thanks for your attention, and happy translating! <br> +[[:mw:User:Elitre (WMF)|Elitre (WMF)]] 23:56, 13 sīna mieness 2015 (EEST) + +<references /> +</div> +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Phase_5_wikis&oldid=11630802 --> + +== Proposal to create PNG thumbnails of static GIF images == + +<div lang="en" dir="ltr" class="mw-content-ltr"> + +[[File:(R)-3-phenyl-cyclohanone.gif|255px|thumb|The thumbnail of this gif is of really bad quality.]] +[[File:(R)-3-phenyl-cyclohanone.png|255px|thumb|How a PNG thumb of this GIF would look like]] + +There is a [[w:c:Commons:Village_pump/Proposals#Create_PNG_thumbnails_of_static_GIF_images|proposal]] at the Commons Village Pump requesting feedback about the thumbnails of static GIF images: It states that static GIF files should have their thumbnails created in PNG. The advantages of PNG over GIF would be visible especially with GIF images using an alpha channel. (compare the thumbnails on the side) + +This change would affect all wikis, so if you support/oppose or want to give general feedback/concerns, please post them to the [[w:c:Commons:Village_pump/Proposals#Create_PNG_thumbnails_of_static_GIF_images|proposal page]]. Thank you. --[[w:c:User:McZusatz|McZusatz]] ([[w:c:User talk:McZusatz|talk]]) & [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 08:07, 24 sīna mieness 2015 (EEST) + +</div> +<!-- Message sent by User:-revi@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=12485605 --> + +== What does a Healthy Community look like to you? == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +[[File:Community Health Cover art News portal.png|300px|right]] +Hi, <br> +The Community Engagement department at the Wikimedia Foundation has launched a new learning campaign. The WMF wants to record community impressions about what makes a healthy online community. +Share your views and/or create a drawing and take a chance to win a Wikimania 2016 scholarship! +Join the WMF as we begin a conversation about Community Health. Contribute a drawing or answer the questions [[meta:Grants:Evaluation/Community Health learning campaign|on the campaign's page.]] +=== Why get involved? === +'''The world is changing. The way we relate to knowledge is transforming.''' As the next billion people come online, the Wikimedia movement is working to bring more users on the wiki projects. The way we interact and collaborate online are key to building sustainable projects. How accessible are Wikimedia projects to newcomers today? Are we helping each other learn? +<br/> +Share your views on this matter that affects us all! +<br> +'''We invite everyone to take part in this learning campaign. Wikimedia Foundation will distribute one Wikimania Scholarship 2016 among those participants who are eligible.''' + +=== More information === +* All participants must have a registered user of at least one month antiquity on any Wikimedia project before the starting date of the campaign. +* <span style="border-bottom:1px dotted"> All eligible contributions must be done until '''August 23, 2015 at <nowiki>23:59</nowiki> UTC''' </span> +* <big> Wiki link: '''[[meta:Grants:Evaluation/Community Health learning campaign|Community Health learning campaign]]''' </big> +* URL https://meta.wikimedia.org/wiki/Grants:Evaluation/Community_Health_learning_campaign +* Contact: [[meta:user:MCruz (WMF)|María Cruz]] / Twitter: {{@}}WikiEval #CommunityHealth / email: eval{{@}}wikimedia{{dot}}org +<br> + +Happy editing! +<br> +<br> +[[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 02:42, 1 labeibys mieness 2015 (EEST) + +</div> +<!-- Message sent by User:MCruz (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=12909005 --> + +== What does a Healthy Community look like to you? == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +[[File:Community Health Cover art News portal.png|300px|right]] +Hi, <br> +The Community Engagement department at the Wikimedia Foundation has launched a new learning campaign. The WMF wants to record community impressions about what makes a healthy online community. +Share your views and/or create a drawing and take a chance to win a Wikimania 2016 scholarship! +Join the WMF as we begin a conversation about Community Health. Contribute a drawing or answer the questions [[meta:Grants:Evaluation/Community Health learning campaign|on the campaign's page.]] +=== Why get involved? === +'''The world is changing. The way we relate to knowledge is transforming.''' As the next billion people come online, the Wikimedia movement is working to bring more users on the wiki projects. The way we interact and collaborate online are key to building sustainable projects. How accessible are Wikimedia projects to newcomers today? Are we helping each other learn? +<br/> +Share your views on this matter that affects us all! +<br> +'''We invite everyone to take part in this learning campaign. Wikimedia Foundation will distribute one Wikimania Scholarship 2016 among those participants who are eligible.''' + +=== More information === +* All participants must have a registered user of at least one month antiquity on any Wikimedia project before the starting date of the campaign. +* <span style="border-bottom:1px dotted"> All eligible contributions must be done until '''August 23, 2015 at <nowiki>23:59</nowiki> UTC''' </span> +* <big> Wiki link: '''[[meta:Grants:Evaluation/Community Health learning campaign|Community Health learning campaign]]''' </big> +* URL https://meta.wikimedia.org/wiki/Grants:Evaluation/Community_Health_learning_campaign +* Contact: [[meta:user:MCruz (WMF)|María Cruz]] / Twitter: {{@}}WikiEval #CommunityHealth / email: eval{{@}}wikimedia{{dot}}org +<br> + +Happy editing! +<br> +<br> +[[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 05:29, 1 labeibys mieness 2015 (EEST) + +</div> +<!-- Message sent by User:MCruz (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=12909005 --> + +== Wikidata: Access to data from arbitrary items is coming == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +(Sorry for writing in English) + +When using data from Wikidata on Wikipedia and other sister projects, there is currently a limitation in place that hinders some use cases: data can only be accessed from the corresponding item. So, for example, the Wikipedia article about Berlin can only get data from the Wikidata item about Berlin but not from the item about Germany. This had technical reasons. We are now removing this limitation. It is already done for many projects. Your project is one of the next ones. We will roll out this feature here on August 12. + +We invite you to play around with this new feature if you are one of the people who have been waiting for this for a long time. If you have technical issues/questions with this you can come to [[d:Wikidata:Contact the development team]]. + +A note of caution: Please be careful with how many items you use for a single page. If it is too many pages, loading might get slow. We will have to see how the feature behaves in production to see where we need to tweak and how. + +How to use it, once it is enabled: +* Parser function: <nowiki>{{#property:P36|from=Q183}}</nowiki> to get the capital from the item about Germany +* Lua: see [[mw:Extension:Wikibase Client/Lua]] + +Cheers [[:d:User:Lydia Pintscher (WMDE)|Lydia Pintscher]] [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 20:46, 3 labeibys mieness 2015 (EEST) +</div> +<!-- Message sent by User:Lydia Pintscher (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Lydia_Pintscher_(WMDE)/Distribution_List&oldid=12981073 --> + +== Wikidata: Access to data from arbitrary items is here == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +(Sorry for writing in English) + +Hi everyone, + +As I have previously announced here we have now enabled the arbitrary access feature here. This means from now on you can make use of data from any Wikidata item in any article here. Before you could for example only access data about Berlin in the article about Berlin. If you want to find out more or have questions please come to [[d:Wikidata:Arbitrary access]]. I hope this will open up great possibilities for you and make your work easier. +Cheers [[:d:Lydia Pintscher (WMDE)|Lydia Pintscher (WMDE)]] 16:32, 12 labeibys mieness 2015 (EEST) +</div> +<!-- Message sent by User:Lydia Pintscher (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Lydia_Pintscher_(WMDE)/Distribution_List&oldid=12983468 --> + +== VisualEditor News #4—2015 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +''[[:m:Special:MyLanguage/VisualEditor/Newsletter/2015/August|Read this in another language]] • [[:m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]'' + +<div style="margin:0.5em;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}border:1px solid #AAA;padding:0.5em;"> +[[File:VisualEditor-logo.svg|200x70px|center|alt=VisualEditor]] +'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> +You can add quotations marks before and after a title or phrase with a single click. + +Select the relevant text. Find the correct quotations marks in the special character inserter tool (marked as Ω in the toolbar).<br><br> +[[File:VisualEditor Special character inserter quotation 2.png|alt=Screenshot showing the special character tool, selected text, and the special character that will be inserted|centre|frameless|230px]] +<br> +Click the button. VisualEditor will add the quotation marks on either side of the text you selected.<br><br> +[[File:VisualEditor Special character inserter quotation 3.png|alt=Screenshot showing the special character tool and the same text after the special character has been inserted|centre|frameless|230px]] +<br> +You can read and help translate [[:mw:Special:MyLanguage/VisualEditor/User guide|the user guide]], which has more information about how to use VisualEditor. +</div></div> + +Since the last newsletter, the [[mw:VisualEditor|Editing Team]] have been working on mobile phone support. They have fixed many bugs and improved language support. They post weekly status reports [[mw:VisualEditor/changelog|on mediawiki.org]]. Their workboard is available [[phab:project/board/483/|in Phabricator]]. Their [[mediawikiwiki:VisualEditor/Current_priorities|current priorities]] are improving language support and functionality on mobile devices. + +=== Wikimania === +The team attended Wikimania 2015 in Mexico City. There they participated in the Hackathon and met with individuals and groups of users. They also made several presentations about [[c:File:How_we_made_VisualEditor_faster.pdf|VisualEditor]] and the [[:c:File:Wikimania_2015_–_Editing_Department_–_Beyond_Editing.pdf|future of editing]]. + +Following Wikimania, we announced winners for the [https://translatewiki.net/wiki/Project:VisualEditor/2015_Translathon VisualEditor 2015 Translathon]. Our thanks and congratulations to users ''Halan-tul'', ''Renessaince'', ''<span lang="ne" dir="ltr">जनक राज भट्ट</span> (Janak Bhatta)'', ''Vahe Gharakhanyan'', ''Warrakkk'', and ''Eduardogobi''. + +For '''interface messages''' (translated at [https://translatewiki.net translatewiki.net]), we saw the initiative affecting 42 languages. The average progress in translations across all languages was 56.5% before the translathon, and 78.2% after ('''+21.7%'''). In particular, Sakha improved from 12.2% to 94.2%; Brazilian Portuguese went from 50.6% to 100%; Taraškievica went from 44.9% to 85.3%; Doteli went from 1.3% to 41.2%. Also, while 1.7% of the messages were outdated across all languages before the translathon, the percentage dropped to 0.8% afterwards (-0.9%). + +For '''documentation messages''' (on mediawiki.org), we saw the initiative affecting 24 languages. The average progress in translations across all languages was 26.6% before translathon, and 46.9% after ('''+20.3%'''). There were particularly notable achievements for three languages. Armenian improved from 1% to 99%; Swedish, from 21% to 99%, and Brazilian Portuguese, from 34% to 83%. Outdated translations across all languages were reduced from 8.4% before translathon to 4.8% afterwards (-3.6%). + +[https://translatewiki.net/wiki/Project:VisualEditor/2015_Translathon#Graphs_(interface_messages_only) We published some graphs] showing the effect of the event on the Translathon page. We thank the translators for participating and the translatewiki.net staff for facilitating this initiative. + +=== Recent improvements === +'''Auto-fill features for citations''' can be enabled on each Wikipedia. The tool uses the '''[[:mw:Citoid|citoid service]]''' to convert a [[:en:URL|URL]] or [[:en:Digital object identifier|DOI]] into a pre-filled, pre-formatted bibliographic citation. You can see an animated GIF of the quick, [[mediawikiwiki:Special:MyLanguage/VisualEditor/GIFs#Auto-citing_a_source|simple process at mediawiki.org]]. So far, about a dozen Wikipedias have enabled the auto-citation tool. To enable it for your wiki, follow the [[mediawikiwiki:Special:MyLanguage/Citoid/Enabling_Citoid_on_your_wiki|instructions at mediawiki.org]]. + +Your wiki can customize the first section of the '''special character inserter''' in VisualEditor. Please follow the [[mw:Special:MyLanguage/VisualEditor/Special_characters|instructions at mediawiki.org]] to put the characters you want at the top. +In other changes, if you need to fill in a [[:mw:CAPTCHA|CAPTCHA]] and get it wrong, then you can click to get a new one to complete. VisualEditor can now display and edit [[mediawikiwiki:Extension:Graph|Vega-based graphs]]. If you use the Monobook skin, VisualEditor's appearance is now more consistent with other software. + +=== Future changes === +The team will be changing the '''appearance of selected links''' inside VisualEditor. The purpose is to make it easy to see whether your cursor is inside or outside the link. When you select a link, the link label (the words shown on the page) will be enclosed in a faint box. If you place your cursor inside the box, then your changes to the link label will be part of the link. If you place your cursor outside the box, then it will not. This will make it easy to know when new characters will be added to the link and when they will not. + +On the English Wikipedia, 10% of newly created accounts are now offered both the visual and the wikitext editors. A [[m:Research:VisualEditor's_effect_on_newly_registered_editors/May_2015_study|recent controlled trial]] showed no significant difference in survival or productivity for new users in the short term. New users with access to VisualEditor were very slightly less likely to produce results that needed reverting. You can learn more about this by watching a video of the [[mediawikiwiki:Wikimedia_Research/Showcase#July_2015|July 2015 Wikimedia Research Showcase]]. The proportion of new accounts with access to both editing environments will be gradually increased over time. Eventually all new users have the choice between the two editing environments. + +=== Let's work together === +* Share your ideas and ask questions at [[:mw:VisualEditor/Feedback|mw:VisualEditor/Feedback]]. This feedback page is now using [[mw:Flow|Flow]] instead of LiquidThreads. +* <mark>Can you read and type in Korean or Japanese?</mark> Language engineer [[mw:User:DChan (WMF)|David Chan]] needs people who know which tools people use to type in some languages. If you speak Japanese or Korean, you can help him test support for these languages. Please see the instructions at [[mw:VisualEditor/IME Testing#What to test|mediawiki.org]] if you can help. +* If your wiki would like '''VisualEditor enabled on another namespace''', you can file a request in Phabricator. Please include a link to a community discussion about the requested change. +* Please file requests for language-appropriate "{{Int:visualeditor-annotationbutton-bold-tooltip}}" and "{{Int:visualeditor-annotationbutton-italic-tooltip}}" icons for the styling menu [https://phabricator.wikimedia.org/maniphest/task/create/?projects=PHID-PROJ-dafezmpv6huxg3taml24 in Phabricator]. +* The design research team wants to see how real editors work. Please [https://jfe.qualtrics.com/form/SV_6R04ammTX8uoJFP sign up for their research program]. +* The weekly task triage meetings continue to be open to volunteers, usually on Tuesdays at 12:00 (noon) PDT (19:00 UTC). Learn how to join the meetings and how to nominate bugs at [[:mw:VisualEditor/Weekly triage meetings|mw:VisualEditor/Weekly triage meetings]]. You do not need to attend the meeting to nominate a bug for consideration as a Q1 blocker, though. Instead, go to Phabricator and "associate" the main [[phab:project/profile/483/|VisualEditor project]] with the bug. + +If you aren't reading this in your favorite language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. Thank you! +</div> —[[:mw:User:Elitre (WMF)|Elitre (WMF)]], 01:28, 15 labeibys mieness 2015 (EEST) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=12980645 --> + +== How can we improve Wikimedia grants to support you better? == + +''My apologies for posting this message in English. Please help translate it if you can.'' + +Hello, + +The Wikimedia Foundation would like your feedback about how we can '''[[m:Grants:IdeaLab/Reimagining WMF grants|reimagine Wikimedia Foundation grants]]''', to better support people and ideas in your Wikimedia project. Ways to participate: + +*Respond to questions on [[m:Grants talk:IdeaLab/Reimagining WMF grants|the discussion page of the idea]]. +*Join a [[m:Grants:IdeaLab/Events#Upcoming_events|small group conversation]]. +*Learn more about [[m:Grants:IdeaLab/Reimagining WMF grants/Consultation|this consultation]]. +Feedback is welcome in any language. + +With thanks, + +[[m:User:I JethroBT (WMF)|I JethroBT (WMF)]], [[m:Community Resources|Community Resources]], Wikimedia Foundation. + +([[m:Grants:IdeaLab/Reimagining WMF grants/ProjectTargets|''Opt-out Instructions'']]) <small>This message was sent by [[m:User:I JethroBT (WMF)|I JethroBT (WMF)]] through [[m:User:MediaWiki message delivery|MediaWiki message delivery]].</small> 03:56, 19 labeibys mieness 2015 (EEST) + +== How can we improve Wikimedia grants to support you better? == + +''My apologies for posting this message in English. Please help translate it if you can.'' + +Hello, + +The Wikimedia Foundation would like your feedback about how we can '''[[Grants:IdeaLab/Reimagining WMF grants|reimagine Wikimedia Foundation grants]]''', to better support people and ideas in your Wikimedia project. Ways to participate: + +*Respond to questions on [[Grants talk:IdeaLab/Reimagining WMF grants|the discussion page of the idea]]. +*Join a [[Grants:IdeaLab/Events#Upcoming_events|small group conversation]]. +*Learn more about [[Grants:IdeaLab/Reimagining WMF grants/Consultation|this consultation]]. +Feedback is welcome in any language. + +With thanks, + +[[User:I JethroBT (WMF)|I JethroBT (WMF)]], [[Community Resources]], Wikimedia Foundation. + +([[Grants:IdeaLab/Reimagining WMF grants/ProjectTargets|''Opt-out Instructions'']]) <small>This message was sent by {{user|I JethroBT (WMF)}} through [[User:MediaWiki message delivery|MediaWiki message delivery]].</small> 04:03, 19 labeibys mieness 2015 (EEST) +<!-- Message sent by User:I JethroBT (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Grants:IdeaLab/Reimagining_WMF_grants/ProjectTargets&oldid=13196071 --> + +== Introducing the Wikimedia public policy site == + +Hi all, + +We are excited to introduce a new Wikimedia Public Policy site. The site includes resources and position statements on access, copyright, censorship, intermediary liability, and privacy. The site explains how good public policy supports the Wikimedia projects, editors, and mission. + +Visit the public policy portal: https://policy.wikimedia.org/ + +Please help translate the [[m:Public policy|statements on Meta Wiki]]. You can [http://blog.wikimedia.org/2015/09/02/new-wikimedia-public-policy-site/ read more on the Wikimedia blog]. + +Thanks, + +[[m:User:YWelinder (WMF)|Yana]] and [[m:User:Slaporte (WMF)|Stephen]] ([[m:User talk:Slaporte (WMF)|Talk]]) 21:12, 2 rudiņa mieness 2015 (EEST) + +''(Sent with the [[m:MassMessage#Global_message_delivery|Global message delivery system]])'' +<!-- Message sent by User:Slaporte (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Slaporte_(WMF)/Announcing_public_policy_site&oldid=13439030 --> + +== Open call for Individual Engagement Grants == + +''My apologies for posting this message in English. Please help translate it if you can.'' + +Greetings! The '''[[m:IEG|Individual Engagement Grants program]] is accepting proposals''' until September 29th to fund new tools, community-building processes, and other experimental ideas that enhance the work of Wikimedia volunteers. Whether you need a small or large amount of funds (up to $30,000 USD), Individual Engagement Grants can support you and your team’s project development time in addition to project expenses such as materials, travel, and rental space. + +*[[m:Grants:IEG#ieg-apply|'''Submit''' a grant request]] +*[[m:Grants:IdeaLab|'''Get help''' with your proposal in IdeaLab]] or [[m:Grants:IdeaLab/Events#Upcoming_events|an upcoming Hangout session]] +*[[m:Grants:IEG#ieg-engaging|'''Learn from examples''' of completed Individual Engagement Grants]] + +Thanks, + +[[m:User:I JethroBT (WMF)|I JethroBT (WMF)]], [[m:Community Resources|Community Resources]], Wikimedia Foundation. 2015. gada 4. rudiņa mieness, plkst. 23.52 (EEST) + +([[m:User:I JethroBT (WMF)/IEG 2015 Targets|''Opt-out Instructions'']]) <small>This message was sent by [[m:User:I JethroBT (WMF)|I JethroBT (WMF)]] ([[m:User talk:I JethroBT (WMF)|talk]]) through [[m:User:MediaWiki message delivery|MediaWiki message delivery]].</small> +<!-- Message sent by User:I JethroBT (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:I_JethroBT_(WMF)/IEG_2015_Targets&oldid=13476366 --> + +== Only one week left for Individual Engagement Grant proposals! == + +(Apologies for using English below, please help translate if you are able.) + +'''There is still one week left to submit [[m:IEG|Individual Engagement Grant]] (IEG) proposals''' before the September 29th deadline. If you have ideas for new tools, community-building processes, and other experimental projects that enhance the work of Wikimedia volunteers, start your proposal today! Please encourage others who have great ideas to apply as well. Support is available if you want help turning your idea into a grant request. +*[[m:Grants:IEG#ieg-apply|'''Submit''' a grant request]] +*[[m:Grants:IdeaLab|'''Get help''' with your proposal in IdeaLab]] +*[[m:Grants:IEG#ieg-engaging|'''Learn from examples''' of completed Individual Engagement Grants]] + +[[m:User:I JethroBT (WMF)|I JethroBT (WMF)]], [[m:Community Resources|Community Resources]] 2015. gada 23. rudiņa mieness, plkst. 00.01 (EEST) +<!-- Message sent by User:I JethroBT (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:I_JethroBT_(WMF)/IEG_2015_Targets&oldid=13754911 --> + +== Reimagining WMF grants report == + +''(My apologies for using English here, please help translate if you are able.)'' + +Last month, we asked for community feedback on [[m:Grants:IdeaLab/Reimagining WMF grants| a proposal to change the structure of WMF grant programs]]. Thanks to the 200+ people who participated! '''[[m:Grants:IdeaLab/Reimagining_WMF_grants/Outcomes| +A report]]''' on what we learned and changed based on this consultation is now available. + +Come read about the findings and next steps as WMF’s Community Resources team begins to implement changes based on your feedback. Your questions and comments are welcome on [[m:Grants talk:IdeaLab/Reimagining WMF grants/Outcomes|the outcomes discussion page]]. + +With thanks, [[m:User:I JethroBT (WMF)|I JethroBT (WMF)]] 2015. gada 28. rudiņa mieness, plkst. 19.57 (EEST) +<!-- Message sent by User:I JethroBT (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Grants:IdeaLab/Reimagining_WMF_grants/ProjectTargets&oldid=13850666 --> + +== VisualEditor News #5—2015 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +''[[m:VisualEditor/Newsletter/2015/October|Read this in another language]] • [[:m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]'' + +<div style="margin:0.5em;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}border:1px solid #AAA;padding:0.5em;"> +[[File:VisualEditor-logo.svg|200x70px|center|alt=VisualEditor]] +'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> + +You can use the visual editor on smartphones and tablets.<br><br>[[File:Switching edit modes to VisualEditor on Mobile web.png|alt=Screenshot showing the menu for switching from the wikitext editor to the visual editor|centre|frameless|230x230px]]<br> +Click the pencil icon to open the editor for a page. Inside that, use the gear menu in the upper right corner to "{{int:mobile-frontend-editor-switch-visual-editor}}". + +The editing button will remember which editing environment you used last time, and give you the same one next time. The desktop site will be switching to a system similar to this one in the coming months. +<br><br>You can read and help translate [[:mw:VisualEditor/User guide|the user guide]], which has more information about how to use the visual editor. +</div></div> +Since the last newsletter, the [[mw:VisualEditor|VisualEditor Team]] has fixed many bugs, added new features, and made some small design changes. They post weekly status reports [[mw:VisualEditor/changelog|on mediawiki.org]]. Their workboard is available [[phab:project/board/483/|in Phabricator]]. Their [[mediawikiwiki:VisualEditor/Current_priorities|current priorities]] are improving support for languages like Japanese and Arabic, making it easier to edit on mobile devices, and providing rich-media tools for formulæ, charts, galleries and uploading. +=== Recent improvements === +'''Educational features:''' The first time ever you use the visual editor, it now draws your attention to the {{Int:visualeditor-annotationbutton-link-tooltip}} and {{Int:visualeditor-toolbar-cite-label}} tools. When you click on the tools, it explains why you should use them. ([[Phab:T108620|T108620]]) Alongside this, the welcome message for new users has been simplified to make editing more welcoming. ([[Phab:T112354|T112354]]) More in-software educational features are planned. + +'''Links:''' It is now easier to understand when you are adding text to a link and when you are typing plain text next to it. ([[Phab:T74108|T74108]], [[Phab:T91285|T91285]]) The editor now fully supports ISBN, PMID or RFC numbers. ([[Phab:T109498|T109498]], [[Phab:T110347|T110347]], [[Phab:T63558|T63558]]) These [[:en:Help:Magic_links|"magic links"]] use a custom link editing tool. + +'''Uploads:''' Registered editors can now '''upload images''' and other media to Commons while editing. Click the new tab in the "{{int:visualeditor-toolbar-insert}} {{int:visualeditor-dialogbutton-media-tooltip}}" tool. You will be guided through the process without having to leave your edit. At the end, the image will be inserted. This tool is limited to one file at a time, owned by the user, and licensed under Commons's standard license. For more complex situations, the tool links to more advanced upload tools. You can also drag the image into the editor. This will be available in the wikitext editor later. + +'''Mobile:''' Previously, the visual editor was available on the mobile Wikipedia site only on tablets. Now, editors can use it on all devices regardless of size if they wish. ([[Phab:T85630|T85630]]) Edit conflicts were previously broken on the mobile website. Edit conflicts can now be resolved in both wikitext and visual editors. ([[Phab:T111894|T111894]]) Sometimes templates and similar items could not be deleted on the mobile website. Selecting them caused the on-screen keyboard to hide with some browsers. Now there is a new "{{int:Visualeditor-contextitemwidget-label-remove}}" button, so that these things can be removed if the keyboard hides. ([[Phab:T62110|T62110]]) You can also edit table cells in mobile now. + +'''Rich editing tools:''' You can now add and edit '''sheet''' '''music''' in the visual editor. ([[Phab:T112925|T112925]]) There are separate tabs for advanced options, such as MIDI and Ogg audio files. ([[Phab:T114227|T114227]], [[Phab:T113354|T113354]]) When editing '''formulæ''' and other blocks, errors are shown as you edit. It is also possible to edit some types of '''graphs'''; adding new ones, and support for new types, will be coming. + +On the '''English Wikipedia''', the visual editor is now automatically available to anyone who creates an account. The preference switch was moved to the normal location, under [[Special:Preferences]]. +=== Future changes === +You will soon be able to '''switch from the wikitext to the visual editor''' after you start editing. ([[phab:T49779|T49779]]) Previously, you could only switch from the visual editor to the wikitext editor. Bi-directional switching will make possible a '''single edit tab.''' ([[phab:T102398|T102398]]) This project will combine the "{{int:vector-view-edit}}" and "{{int:visualeditor-ca-editsource}}" tabs into a single "{{int:vector-view-edit}}" tab, similar to the system already used on the mobile website. The "{{int:vector-view-edit}}" tab will open whichever editing environment you used last time. + +=== Let's work together === +* Share your ideas and ask questions at [[:mw:VisualEditor/Feedback|VisualEditor/Feedback]]. This feedback page uses [[mw:Flow|Flow]] for discussions. +* <mark>Can you read and type in Korean or Japanese?</mark> Language engineer [[mw:User:DChan (WMF)|David Chan]] needs people who know which tools people use to type in some languages. If you speak Japanese or Korean, you can help him test support for these languages. Please see the instructions at [[mw:VisualEditor/IME Testing#What to test|What to test]] if you can help, and report it on Phabricator ([[phab:T110654|Korean]] - [[phab:T109818|Japanese]]) or on Wikipedia ([[:ko:위키백과:시각편집기/IME|Korean]] - [[:ja:Wikipedia:ビジュアルエディター/フィードバック/IME|Japanese]]). +* Local admins can [[mediawikiwiki:Citoid/Enabling_Citoid_on_your_wiki|set up the Citoid automatic reference feature for your wiki]]. If you need help, then please post a request in the [[phab:tag/citoid/|Citoid project on Phabricator]]. Include links to the [[:mw:Help:TemplateData|TemplateData]] for the most important citation templates on your wiki. +* The weekly task triage meetings are open to volunteers. Learn how to join the meetings and how to nominate bugs at [[:mw:VisualEditor/Weekly triage meetings|mw:VisualEditor/Weekly triage meetings]]. You do not need to attend the meeting to nominate a bug for consideration, though. Instead, go to Phabricator and "associate" the main [[phab:project/profile/483/|VisualEditor project]] with the bug. + +If you aren't reading this in your favorite language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. Thank you! +</div>—[[:mw:User:Elitre (WMF)|Elitre (WMF)]], 2015. gada 30. leita mieness, plkst. 20.17 (EET) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=14334116 --> + +== Community Wishlist Survey == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +Hi everyone! Apologies for posting in English. Translations are very welcome. + +The [[:m:Community Tech|Community Tech team]] at the Wikimedia Foundation is focused on building improved curation and moderation tools for experienced Wikimedia contributors. We're now starting a '''[[:m:2015 Community Wishlist Survey|Community Wishlist Survey]]''' to find the most useful projects that we can work on. + +For phase 1 of the survey, we're inviting all active contributors to submit brief proposals, explaining the project that you'd like us to work on, and why it's important. Phase 1 will last for 2 weeks. In phase 2, we'll ask you to vote on the proposals. Afterwards, we'll analyze the top 10 proposals and create a prioritized wishlist. + +While most of this process will be conducted in English, we're inviting people from any Wikimedia wiki to submit proposals. We'll also invite volunteer translators to help translate proposals into English. + +Your proposal should include: the problem that you want to solve, who would benefit, and a proposed solution, if you have one. You can submit your proposal on the Community Wishlist Survey page, using the entry field and the big blue button. We will be accepting proposals for 2 weeks, ending on November 23. + +We're looking forward to hearing your ideas! + +</div> <div lang="en" dir="ltr" class="mw-content-ltr">Community Tech Team via [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2015. gada 9. solnys mieness, plkst. 23.57 (EET)</div> +<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/Target_lists/Global_distribution&oldid=14554458 --> + +== Wikimania 2016 scholarships ambassadors needed == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +Hello! [[wm2016:|Wikimania 2016]] scholarships will soon be open; by the end of the week we'll form the committee and we need your help, see [[wm2016:Special:MyLanguage/Scholarship committee|Scholarship committee]] for details. + +If you want to carefully review nearly a thousand applications in January, you might be a perfect committee member. Otherwise, you can '''volunteer as "ambassador"''': you will observe all the committee activities, ensure that people from your language or project manage to apply for a scholarship, translate '''scholarship applications written in your language''' to English and so on. Ambassadors are allowed to ask for a scholarship, unlike committee members. + +[[wm2016:Scholarship committee|Wikimania 2016 scholarships subteam]] 2015. gada 10. solnys mieness, plkst. 12.48 (EET) +</div> +<!-- Message sent by User:Nemo bis@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=14347818 --> + +== Harassment consultation == + +{{int:Please-translate}} + +The Community Advocacy team the Wikimedia Foundation has opened a consultation on the topic of '''harassment''' on [[m:Harassment consultation 2015|Meta]]. The consultation period is intended to run for one month from today, November 16, and end on December 17. Please share your thoughts there on harassment-related issues facing our communities and potential solutions. (Note: this consultation is not intended to evaluate specific cases of harassment, but rather to discuss the problem of harassment itself.) +::*[[m:Harassment consultation 2015|Harassment consultation 2015]] +:Regards, [[m:Community Advocacy|Community Advocacy, Wikimedia Foundation]] +<!-- Message sent by User:PEarley (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:PEarley_(WMF)/Inspire_Mass_Message&oldid=14684364 --> + +== [[m:Special:MyLanguage/Free Bassel/MassMessages/2015 Free Bassel banner straw poll|Your input requested on the proposed #FreeBassel banner campaign]] == + +''This is a message regarding the [[:m:Special:MyLanguage/Free Bassel/Banner|proposed 2015 Free Bassel banner]]. [[m:Special:MyLanguage/Free Bassel/MassMessages/2015 Free Bassel banner straw poll|Translations]] are available.'' + +Hi everyone, + +This is to inform all Wikimedia contributors that a [[:m:Special:MyLanguage/Free Bassel/Banner/Straw poll|straw poll seeking your involvement]] has just been started on Meta-Wiki. + +As some of your might be aware, a small group of Wikimedia volunteers have proposed a banner campaign informing Wikipedia readers about the urgent situation of our fellow Wikipedian, open source software developer and Creative Commons activist, [[:w:Bassel Khartabil|Bassel Khartabil]]. An exemplary [[:m:Special:MyLanguage/Free Bassel/Banner|banner]] and an [[:m:Special:MyLanguage/Free Bassel/Banner|explanatory page]] have now been prepared, and translated into about half a dozen languages by volunteer translators. + +We are seeking [[:m:Special:MyLanguage/Free Bassel/Banner/Straw poll|your involvement to decide]] if the global Wikimedia community approves starting a banner campaign asking Wikipedia readers to call on the Syrian government to release Bassel from prison. We understand that a campaign like this would be unprecedented in Wikipedia's history, which is why we're seeking the widest possible consensus among the community. + +Given Bassel's urgent situation and the resulting tight schedule, we ask everyone to [[:m:Special:MyLanguage/Free Bassel/Banner/Straw poll|get involved with the poll and the discussion]] to the widest possible extent, and to promote it among your communities as soon as possible. + +(Apologies for writing in English; please kindly [[m:Special:MyLanguage/Free Bassel/MassMessages/2015 Free Bassel banner straw poll|translate]] this message into your own language.) + +Thank you for your participation! + +''Posted by the [[:m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] 21:47, 25 November 2015 (UTC) • [[m:Special:MyLanguage/Free Bassel/MassMessages/2015 Free Bassel banner straw poll|Translate]] • [[:m:Talk:Free Bassel/Banner|Get help]] +<!-- Message sent by User:Varnent@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=14758733 --> + +== Community Wishlist Survey == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +Hi everyone! Apologies for posting this in English. Translations are very welcome. + +We're beginning the second part of the Community Tech team's '''[[:m:2015 Community Wishlist Survey/Voting|Community Wishlist Survey]]''', and we're inviting all active contributors to vote on the proposals that have been submitted. + +Thanks to you and other Wikimedia contributors, 111 proposals were submitted to the team. We've split the proposals into categories, and now it's time to vote! You can vote for any proposal listed on the pages, using the <nowiki>{{Support}}</nowiki> tag. Feel free to add comments pro or con, but only support votes will be counted. The voting period will be 2 weeks, ending on December 14. + +The proposals with the most support votes will be the team's top priority backlog to investigate and address. Thank you for participating, and we're looking forward to hearing what you think! + +Community Tech via +</div> [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2015. gada 1. zīmys mieness, plkst. 16.39 (EET) +<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/Target_lists/Global_distribution&oldid=14913494 --> + +== [[m:Special:MyLanguage/Wikipedia 15|Get involved in Wikipedia 15!]] == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +''This is a message from the [[m:Special:MyLanguage/Wikimedia Foundation|Wikimedia Foundation]]. [[m:Special:MyLanguage/Wikipedia 15/MassMessages/Get involved|Translations]] are available.'' + +[[File:International-Space-Station wordmark blue.svg|right|200px]] + +As many of you know, January 15 is Wikipedia’s 15th Birthday! + +People around the world are getting involved in the celebration and have started adding their [[m:Special:MyLanguage/Wikipedia 15/Events|events on Meta Page]]. While we are celebrating Wikipedia's birthday, we hope that all projects and affiliates will be able to utilize this celebration to raise awareness of our community's efforts. + +Haven’t started planning? Don’t worry, there’s lots of ways to get involved. Here are some ideas: + +* '''[[m:Special:MyLanguage/Wikipedia 15/Events|Join/host an event]]'''. We already have more than 80, and hope to have many more. +* '''[[m:Special:MyLanguage/Wikipedia 15/Media|Talk to local press]]'''. In the past 15 years, Wikipedia has accomplished extraordinary things. We’ve made a [[m:Special:MyLanguage/Wikipedia 15/15 years|handy summary]] of milestones and encourage you to add your own. More resources, including a [[m:Special:MyLanguage/Wikipedia 15/Media#releases|press release template]] and [[m:Special:MyLanguage/Communications/Movement Communications Skills|resources on working with the media]], are also available. +* '''[[m:Special:MyLanguage/Wikipedia 15/Material|Design a Wikipedia 15 logo]]'''. In place of a single icon for Wikipedia 15, we’re making dozens. Add your own with something fun and representative of your community. Just use the visual guide so they share a common sensibility. +* '''[[m:Special:MyLanguage/Wikipedia 15/Events/Package#birthdaywish|Share a message on social media]]'''. Tell the world what Wikipedia means to you, and add #wikipedia15 to the post. We might re-tweet or share your message! + +Everything is linked on the [[m:Special:MyLanguage/Wikipedia 15|Wikipedia 15 Meta page]]. You’ll find a set of ten data visualization works that you can show at your events, and a [[c:Category:Wikipedia15 Mark|list of all the Wikipedia 15 logos]] that community members have already designed. + +If you have any questions, please contact [[m:User:ZMcCune (WMF)|Zachary McCune]] or [[m:User:JSutherland (WMF)|Joe Sutherland]]. + +Thanks and Happy nearly Wikipedia 15!<br /> +-The Wikimedia Foundation Communications team + +''Posted by the [[m:User:MediaWiki message delivery|MediaWiki message delivery]], 2015. gada 18. zīmys mieness, plkst. 22.58 (EET) • [[m:Wikipedia 15/MassMessages/Get involved|{{int:please-translate}}]] • [[m:Talk:Wikipedia 15|{{int:help}}]] +</div> +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=15158198 --> + +== VisualEditor News #6—2015 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +<div style="margin:0.5em;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}border:1px solid #AAA;padding:0.5em;"> +[[File:VisualEditor-logo.svg|200x70px|center|alt=The visual editor]] +'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> + +A new, simpler system for editing will offer a single Edit button. Once the page has opened, you can switch back and forth between visual and wikitext editing. + +[[File:VisualEditor single edit tab preference dialog.png|alt=Screenshot showing a pop-up dialog for switching from the wikitext editor to the visual editor|centre|frameless|230x230px]]<br> + +If you prefer having separate edit buttons, then you can set that option in your preferences, either in a pop-up dialog the next time you open the visual editor, or by going to [[Special:Preferences]] and choosing the setting that you want: <br><br>[[File:VisualEditor single edit tab in preferences 2015-12-18.png|alt=Screenshot showing a drop-down menu in Special:Preferences|centre|frameless|230x230px]] + +The current plan is for the default setting to have the Edit button open the editing environment you used most recently. <br><br>You can read and help translate [[:mw:VisualEditor/User guide|the user guide]], which has more information about how to use the visual editor. +</div></div> +''[[m:VisualEditor/Newsletter/2015/December|Read this in another language]] • [[:m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]'' + +Since the last newsletter, the [[mw:VisualEditor|visual editor team]] has fixed many bugs and expanded the mathematics formula tool. Their workboard is available [[phab:project/board/483/|in Phabricator]]. Their [[mediawikiwiki:VisualEditor/Current_priorities|current priorities]] are improving support for languages such as Japanese and Arabic, and providing rich-media tools for formulæ, charts, galleries and uploading. + +=== Recent improvements === +You can '''switch from the wikitext editor to the visual editor''' after you start editing. +The '''LaTeX mathematics formula editor''' has been significantly expanded. ([[phab:T118616|T118616)]] You can see the formula as you change the LaTeX code. You can click buttons to insert the correct LaTeX code for many symbols. +=== Future changes === +The '''single edit tab''' project will combine the "{{int:vector-view-edit}}" and "{{int:visualeditor-ca-editsource}}" tabs into a single "{{int:vector-view-edit}}" tab, like the system already used on the mobile website. ([[phab:T102398|T102398]], [[phab:T58337|T58337]]) Initially, the "{{int:vector-view-edit}}" tab will open whichever editing environment you used last time. Your last editing choice will be stored as a cookie for logged-out users and as an account preference for logged-in editors. Logged-in editors will be able to set a default editor in the {{int:prefs-editing}} tab of [[Special:Preferences]] in the drop-down menu about "{{int:visualeditor-preference-tabs}}". + +The visual editor will be offered to all editors at the following Wikipedias in early 2016: [[w:am:|Amharic]], [[w:bug:|Buginese]], [[w:cdo:|Min Dong]], [[w:cr:|Cree]], [[w:gv:|Manx]], [[w:hak:|Hakka]], [[w:hy:|Armenian]], [[w:ka:|Georgian]], [[w:pnt:|Pontic]], [[w:sh:|Serbo-Croatian]], [[w:ti:|Tigrinya]], [[w:xmf:|Mingrelian]], [[w:za:|Zhuang]], and [[w:zh-min-nan:|Min Nan]]. ([[phab:T116523|T116523]]) Please post your comments and the language(s) that you tested at [[:mw:Topic:St8y4ni42d0vr9cv|the feedback thread on mediawiki.org]]. The developers would like to know how well it works. Please tell them what kind of computer, web browser, and keyboard you are using. + +In 2016, the '''feedback pages''' for the visual editor on many Wikipedias will be redirected to mediawiki.org. ([[phab:T92661|T92661]]) + +=== Testing opportunities === +* Please try the new system for the '''single edit tab''' on [https://test2.wikipedia.org test2.wikipedia.org]. You can edit while logged out to see how it works for logged-out editors, or you can create a separate account to be able to set your account's preferences. <mark>Please share your thoughts about the single edit tab system at [[mediawikiwiki:Topic:Suspcq0bf5nd3gsd|the feedback topic on mediawiki.org]] or [https://jfe.qualtrics.com/form/SV_6R04ammTX8uoJFP sign up for formal user research]</mark> (type "single edit tab" in the question about other areas you're interested in). The new system has not been finalized, and your feedback can affect the outcome. The team particularly wants your thoughts about the options in Special:Preferences. The current choices in Special:Preferences are: +** {{int:visualeditor-preference-tabs-remember-last}}, +** {{int:visualeditor-preference-tabs-prefer-ve}}, +** {{int:visualeditor-preference-tabs-prefer-wt}}, and +** {{int:visualeditor-preference-tabs-multi-tab}}. (This is the current state for people already using the visual editor. None of these options will be visible if you have disabled the visual editor in your preferences at that wiki.) +* <mark>Can you read and type in Korean or Japanese?</mark> Language engineer [[mw:User:DChan (WMF)|David Chan]] needs people who know which tools people use to type in some languages. If you speak Japanese or Korean, you can help him test support for these languages. Please see the instructions at [[mw:VisualEditor/IME Testing#What to test|What to test]] if you can help, and report it on Phabricator ([[phab:T110654|Korean]] - [[phab:T109818|Japanese]]) or on Wikipedia ([[:ko:위키백과:시각편집기/IME|Korean]] - [[:ja:Wikipedia:ビジュアルエディター/フィードバック/IME|Japanese]]). +If you aren't reading this in your favorite language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. {{int:Feedback-thanks-title}} +</div> [[:mw:User:Elitre (WMF)|Elitre (WMF)]], 2015. gada 25. zīmys mieness, plkst. 02.06 (EET) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=15165847 --> + +== Wikimania 2016 Scholarships - Deadline soon! == + +:{{int:Please-translate}} +A reminder - applications for scholarships for Wikimania 2016 in Esino Lario, Italy, are closing soon! Please get your applications in by January 9th. To apply, visit the page below: +:*[https://wikimania2016.wikimedia.org/wiki/Scholarships Wikimania 2016 Scholarships] +[[User:PEarley (WMF)|Patrick Earley (WMF)]] via [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2016. gada 5. jaunagods mieness, plkst. 03.49 (EET) +<!-- Message sent by User:PEarley (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:PEarley_(WMF)/Mass_Message_-_large&oldid=15209973 --> + +== 2016 WMF Strategy consultation == + +:{{int:Please-translate}} +Hello, all. + +The Wikimedia Foundation (WMF) has launched a consultation to help create and prioritize WMF strategy beginning July 2016 and for the 12 to 24 months thereafter. This consultation will be open, on Meta, from 18 January to 26 February, after which the Foundation will also use these ideas to help inform its Annual Plan. (More on our timeline can be found on that Meta page.) + +Your input is welcome (and greatly desired) at the Meta discussion, [[:m:2016 Strategy/Community consultation|2016 Strategy/Community consultation]]. + +Apologies for English, where this is posted on a non-English project. We thought it was more important to get the consultation translated as much as possible, and good headway has been made there in some languages. There is still much to do, however! We created [[:m:2016 Strategy/Translations]] to try to help coordinate what needs translation and what progress is being made. :) + +If you have questions, please reach out to me on my talk page or on the strategy consultation's talk page or by email to mdennis@wikimedia.org. + +I hope you'll join us! [[:m:User:Mdennis (WMF)|Maggie Dennis]] via [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2016. gada 18. jaunagods mieness, plkst. 21.06 (EET) +<!-- Message sent by User:Mdennis (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:PEarley_(WMF)/Mass_Message_-_large&oldid=15253743 --> + +== Latgalian is missing == + +Latgalian is missing from this page:<br /> +https://meta.wikimedia.org/wiki/There_is_also_a_Wikipedia_in_your_language<br /> +More than 100 languages are now listed.<br /> +Thank you, [[Lītuotuojs:Varlaam|Varlaam]] ([[Sprīža ap lītuotuoju:Varlaam|diskusija]]) 2016. gada 3. svacainis mieness, plkst. 17.53 (EET) +:Done! --[[Lītuotuojs:Roalds|Roalds]] ([[Sprīža ap lītuotuoju:Roalds|diskusija]]) 2016. gada 4. svacainis mieness, plkst. 10.49 (EET) + +== Open Call for Individual Engagement Grants == + +[[File:IEG barnstar 2.png|right|100px]] +{{int:Please-translate}}: + +Greetings! The '''[[m:Special:MyLanguage/IEG|Individual Engagement Grants (IEG) program]] is accepting proposals''' until April 12th to fund new tools, research, outreach efforts, and other experiments that enhance the work of Wikimedia volunteers. +Whether you need a small or large amount of funds (up to $30,000 USD), IEGs can support you and your team’s project development time in addition to project expenses such as materials, travel, and rental space. +*[[m:Special:MyLanguage/Grants:IEG#ieg-apply|'''Submit''' a grant request]] or [[m:Special:MyLanguage/Grants:IdeaLab|'''draft''' your proposal]] in IdeaLab +*[[m:Special:MyLanguage/Grants:IdeaLab/Events#Upcoming_events|'''Get help''' with your proposal]] in an upcoming Hangout session +*[[m:Special:MyLanguage/Grants:IEG#ieg-engaging|'''Learn from examples''' of completed Individual Engagement Grants]] + +With thanks, [[m:User:I JethroBT (WMF)|I JethroBT (WMF)]] 2016. gada 31. pavasara mieness, plkst. 20.48 (EEST) +<!-- Message sent by User:I JethroBT (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:I_JethroBT_(WMF)/IEG_2015_Targets&oldid=15490024 --> + +== Server switch 2016 == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +The [[foundation:|Wikimedia Foundation]] will be testing its newest data center in Dallas. +This will make sure Wikipedia and the other Wikimedia wikis can stay online even after a disaster. +To make sure everything is working, the Wikimedia Technology department needs to conduct a planned test. This test will show whether they can reliably switch from one data center to the other. It requires many teams to prepare for the test and to be available to fix any unexpected problems. + +They will switch all traffic to the new data center on '''Tuesday, 19 April'''.<br/> +On '''Thursday, 21 April''', they will switch back to the primary data center. + +Unfortunately, because of some limitations in [[mw:Manual:What is MediaWiki?|MediaWiki]], all editing must stop during those two switches. +We apologize for this disruption, and we are working to minimize it in the future. + +'''You will be able to read, but not edit, all wikis for a short period of time.''' + +*You will not be able to edit for approximately 15 to 30 minutes on Tuesday, 19 April and Thursday, 21 April, starting at 14:00 UTC (15:00 BST, 16:00 CEST, 10:00 EDT, 07:00 PDT). + +If you try to edit or save during these times, you will see an error message. +We hope that no edits will be lost during these minutes, but we can't guarantee it. +If you see the error message, then please wait until everything is back to normal. +Then you should be able to save your edit. +But, we recommend that you make a copy of your changes first, just in case. + +''Other effects'': + +*Background jobs will be slower and some may be dropped. +Red links might not be updated as quickly as normal. +If you create an article that is already linked somewhere else, the link will stay red longer than usual. +Some long-running scripts will have to be stopped. +*There will be a code freeze for the week of 18 April. +No non-essential code deployments will take place. + +This test was originally planned to take place on March 22. +April 19th and 21st are the new dates. +You can [[wikitech:Switch Datacenter#Schedule for Q3 FY2015-2016 rollout|read the schedule at wikitech.wikimedia.org]]. +They will post any changes on that schedule. +There will be more notifications about this. +'''Please share this information with your community.''' /[[m:User:Whatamidoing (WMF)|User:Whatamidoing (WMF)]] ([[m:User talk:Whatamidoing (WMF)|talk]]) 2016. gada 18. sulu mieness, plkst. 00.07 (EEST) +</div> +<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Tech/Server_switch_2016/Delivery_list&oldid=15533827 --> + +== Wikipedia to the Moon == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +Hello! Sorry that this is in English only, but we are using village pump messaging in order to reach as many language communities as possible. Wrong page? Please fix it [[:m:Distribution list/Global message delivery|here]]. + +This is an invitation to all Wikipedians: Wikimedia Deutschland has been given data space to include Wikipedia content in an upcoming mission to the Moon. (No joke!) We have launched a community discussion about how to do that, because we feel that this is for the global community of editors. Please, '''[[:m:Special:MyLanguage/Wikipedia to the Moon|join the discussion on Meta-Wiki]]''' (and translate this invitation to your language community)! Best, [[:m:Talk:Wikipedia to the Moon|Moon team at Wikimedia Deutschland]] 2016. gada 21. sulu mieness, plkst. 18.35 (EEST) +</div> +<!-- Message sent by User:Martin Rulsch (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_Wikipedia_delivery&oldid=15542536 --> + +== Wikipedia to the Moon: voting has begun == + +Hello, after six weeks of community discussion about [https://moon.wikimedia.org Wikipedia to the Moon], there are now 10 different proposals for content for the mission. Starting today, [[:m:Special:MyLanguage/Wikipedia_to_the_Moon/Voting|you can vote for them on Meta-Wiki]], and decide what we will work on: a Wikipedia canon, different lists, the Moon in 300 languages, an astronomy editathon, featured articles, articles about technology, endangered things, or DNA-related topics. You can even vote against community involvement. Voting is open until 24 June. Sorry that this message is again in English only, but we are using village pumps to reach as many communities as possible, so that everyone knows they can vote. Best, [[:m:Special:MyLanguage/Wikipedia to the Moon/About|Moon team at Wikimedia Deutschland]] 2016. gada 10. vosorys mieness, plkst. 18.31 (EEST) +<!-- Message sent by User:Martin Rulsch (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_Wikipedia_delivery&oldid=15542536 --> + +== Compact Language Links enabled in this wiki today == + +{{int:Please-translate}} +<div lang="en" dir="ltr" class="mw-content-ltr"> + +[[File:Compact-language-links-list.png|thumb|Screenshot of Compact Language Links interlanguage list]] + +[[:mw:Universal_Language_Selector/Compact_Language_Links|Compact Language Links]] has been available as a beta-feature on all Wikimedia wikis since 2014. With compact language links enabled, users are shown a much shorter list of languages on the interlanguage link section of an article (see image). Based on several factors, this shorter list of languages is expected to be more relevant for them and valuable for finding similar content in a language known to them. More information about compact language links can be found in [[:mw:Universal_Language_Selector/Compact_Language_Links|the documentation]]. + +From today onwards, compact language links has been enabled as the default listing of interlanguage links on this wiki. Using the button at the bottom, you will be able to see a longer list of all the languages the article has been written in. The setting for this compact list can be changed by using the checkbox under ''User Preferences -> Appearance -> Languages'' + +The compact language links feature has been tested extensively by the Wikimedia Language team, which developed it. However, in case there are any problems or other feedback please let us know on the [[:mw:Talk:Universal_Language_Selector/Compact_Language_Links|project talk page]] or on this discussion thread. It is to be noted that on some wikis the presence of an existing older gadget that was used for a similar purpose may cause an interference for compact language list. We would like to bring this to the attention of the admins of this wiki. Full details are on [[phab:T131455|this phabricator ticket]] (in English). + +Due to the large scale enablement of this feature, we have had to use [[:m:Global_message_delivery|MassMessage]] for this announcement and as a result it is only written in English. We will really appreciate if this message can be translated for other users of this wiki. Thank you. On behalf of the Wikimedia Language team: [[:mw:User:Runab_WMF|Runa Bhattacharjee (WMF)]] ([[mw:User talk:Runab_WMF|talk]]) 2016. gada 24. vosorys mieness, plkst. 10.04 (EEST) + +</div> +<!-- Message sent by User:Runab WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/ULS_Compact_Links/24_June&oldid=15720673 --> + +== Wikipedia to the Moon: invitation to edit == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +Three weeks ago, you were invited to vote on how to take Wikipedia articles to the Moon. Community voting is over and the winning idea is to send all ‘’featured articles and lists’’ to the Moon. This decision means that, starting today, Wikipedians from all language communities are warmly invited to intensively work on their best articles and lists, and submit them to Wikipedia to the Moon. The central site to coordinate between communities will be Meta-Wiki. You will find an [[m:Wikipedia to the Moon/Working|overview and more information there]]. Hopefully, we will be able to represent as many languages as possible, to show Wikipedia’s diversity. Please feel kindly invited to edit on behalf of your community and tell us about your work on featured content! + +Best, [[:m:Special:MyLanguage/Wikipedia to the Moon/About|Moon team at Wikimedia Deutschland]] 2016. gada 1. sīna mieness, plkst. 17.10 (EEST) +</div> +<!-- Message sent by User:Lydia Pintscher (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_Wikipedia_delivery&oldid=15542536 --> + +== Editing News #2—2016 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +''[[m:Special:MyLanguage/VisualEditor/Newsletter/2016/June|Read this in another language]] • [[:m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]'' + +<div style="float:right;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}margin-left:1em;border-style:solid;border-width:1px;padding:1em;"> +[[File:VisualEditor-logo.svg|200px|center|alt=VisualEditor]]'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> + +It's quick and easy to insert a references list. +[[File:VisualEditor References List Insert Menu-en.png|alt=Screenshot showing a dropdown menu with many items|center|frameless|150px]] + +Place the cursor where you want to display the references list (usually at the bottom of the page). Open the "{{int:visualeditor-toolbar-insert}}" menu and click the "{{int:cite-ve-dialogbutton-referenceslist-tooltip}}" icon (three books). + +If you are using several groups of references, which is relatively rare, you will have the opportunity to specify the group. If you do that, then only the references that belong to the specified group will be displayed in this list of references. +Finally, click "{{int:visualeditor-dialog-action-insert}}" in the dialog to insert the {{int:cite-ve-dialogbutton-referenceslist-tooltip}}. This list will change as you add more footnotes to the page. + +You can read and help translate [[:mw:Special:MyLanguage/VisualEditor/User guide|the user guide]], which has more information about how to use the visual editor.</div></div> + +Since the last newsletter, the [[:mw:Special:MyLanguage/VisualEditor|VisualEditor Team]] has fixed many bugs. Their workboard is available [[phab:project/board/483/|in Phabricator]]. Their [[:mw:VisualEditor/Current_priorities|current priorities]] are improving support for Arabic and Indic scripts, and adapting the visual editor to the needs of the Wikivoyages and Wikisources. + +=== Recent changes === +The visual editor is now available to all users at most [[Wikivoyage:|Wikivoyages]]. It was also enabled for all contributors at the French Wikinews. + +The '''[[:mw:Special:MyLanguage/VisualEditor/Single edit tab|single edit tab]]''' feature combines the "{{int:vector-view-edit}}" and "{{int:visualeditor-ca-editsource}}" tabs into a single "{{int:vector-view-edit}}" tab. It has been deployed to several Wikipedias, including Hungarian, Polish, English and Japanese Wikipedias, as well as to all Wikivoyages. At these wikis, you can change your settings for this feature in the "{{int:prefs-editing}}" tab of [[Special:Preferences]]. The team is now reviewing the feedback and considering ways to improve the design before rolling it out to more people. + +=== Future changes === +The "{{int:Savearticle}}" button will say "{{int:Publishpage}}". This will affect both the visual and wikitext editing systems. More [[M:Editing/Publish|information is available on Meta]]. + +The visual editor will be offered to all editors at the remaining [[:mw:VisualEditor/Rollouts|"Phase 6" Wikipedias]] during the next few months. The developers want to know whether typing in your language feels natural in the visual editor. Please post your comments and the language(s) that you tested at [[:mw:Topic:St8y4ni42d0vr9cv|the feedback thread on mediawiki.org]]. This will affect several languages, including: [[:w:ar: |'''Arabic''']], [[:w:hi: |'''Hindi''']], [[:w:th: |'''Thai''']], [[:w:ta: |'''Tamil''']], [[:w:mr: |'''Marathi''']], [[:w:ml: |'''Malayalam''']], [[:w:ur: |'''Urdu''']], [[:w:fa: |'''Persian''']], [[:w:bn: |'''Bengali''']], [[:w:as: |'''Assamese''']], [[:w:arc: |'''Aramaic''']] and others. + +The team is working with the volunteer developers who power Wikisource to provide the visual editor there, for opt-in testing right now and eventually for all users. ([[phab:T138966|T138966]]) + +The team is working on a modern wikitext editor. It will look like the visual editor, and be able to use the citoid service and other modern tools. This new editing system may become available as a Beta Feature on desktop devices around September 2016. You can read about this project in a [[mediawikiwiki:Special:MyLanguage/VisualEditor/Roadmap/Update_2016-06-23|general status update on the Wikimedia mailing list]]. + +=== Let's work together === +* Do you teach new editors how to use the visual editor? Did you help [[:mw:Citoid/Enabling Citoid on your wiki|set up the Citoid automatic reference feature for your wiki]]? Have you written or imported [[:mw:Special:MyLanguage/Help:TemplateData|TemplateData]] for your most important citation templates? <mark>Would you be willing to help new editors and small communities with the visual editor? Please sign up for the new [[:mw:Help:VisualEditor/Community Taskforce|'''VisualEditor Community Taskforce''']].</mark> +* Learn how to improve the "automagical" [[:mw:citoid|citoid]] referencing system in the visual editor, by creating [[w:en:Zotero|Zotero]] translators for popular sources in your language! Watch the [[Mw:Citoid/Zotero's Tech Talk|Tech Talk by Sebastian Karcher]] for more information. + +If you aren't reading this in your preferred language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. {{int:Feedback-thanks-title}} + +</div> [[:m:User:Elitre (WMF)]], 2016. gada 3. sīna mieness, plkst. 20.20 (EEST) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=15741003 --> + +== Open call for Project Grants == + +[[File:IEG barnstar 2.png|right|100px]] +{{int:Please-translate}}: + +:Greetings! The '''[[m:Special:MyLanguage/Grants:Project|Project Grants program]] is accepting proposals''' from July 1st to August 2nd to fund new tools, research, offline outreach (including editathon series, workshops, etc), online organizing (including contests), and other experiments that enhance the work of Wikimedia volunteers. +:Whether you need a small or large amount of funds, Project Grants can support you and your team’s project development time in addition to project expenses such as materials, travel, and rental space. +:*[[m:Special:MyLanguage/Grants:Project/Apply|'''Submit''' a grant request]] or [[m:Special:MyLanguage/Grants:IdeaLab|'''draft''' your proposal]] in IdeaLab +:*[[m:Special:MyLanguage/Grants:IdeaLab/Events#Upcoming_events|'''Get help with your proposal''']] in an upcoming Hangout session +:*'''Learn from examples''' of completed [[m:Special:MyLanguage/Grants:IEG#ieg-engaging|Individual Engagement Grants]] or [[m:Special:MyLanguage/Grants:PEG/Requests#Grants_funded_by_the_WMF_in_FY_2015.E2.80.9316|Project and Event Grants]] +:Also accepting candidates to [[m:Special:MyLanguage/Grants:Project/Quarterly/Committee|join the Project Grants Committee through July 15.]] + +:With thanks, [[m:User:I JethroBT (WMF)|I JethroBT (WMF)]] 2016. gada 5. sīna mieness, plkst. 18.25 (EEST) +<!-- Message sent by User:I JethroBT (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:I_JethroBT_(WMF)/IEG_2015_Targets&oldid=15504704 --> + +== Save/Publish == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +The [[:mw:Editing|Editing]] team is planning to change the name of the [https://translatewiki.net/w/i.php?title=Special:Translations&namespace=8&message=Savearticle “<bdi>{{int:Savearticle}}</bdi>”] button to [https://translatewiki.net/w/i.php?title=Special:Translations&namespace=8&message=Publishpage “'''<bdi>{{int:Publishpage}}</bdi>'''”] and [https://translatewiki.net/w/i.php?title=Special:Translations&namespace=8&message=Publishchanges “'''<bdi>{{int:Publishchanges}}</bdi>'''”]. “<bdi>{{int:Publishpage}}</bdi>” will be used when you create a new page. “<bdi>{{int:Publishchanges}}</bdi>” will be used when you change an existing page. The names will be consistent in all editing environments.[https://phabricator.wikimedia.org/T131132][https://phabricator.wikimedia.org/T139033] + +This change will probably happen during the week of 30 August 2016. The change will be announced in [[:m:Special:MyLanguage/Tech/News|Tech News]] when it happens. + +If you are fluent in a language other than English, please check the status of translations at translatewiki.net for [https://translatewiki.net/w/i.php?title=Special:Translations&namespace=8&message=Publishpage “'''<bdi>{{int:Publishpage}}</bdi>'''”] and [https://translatewiki.net/w/i.php?title=Special:Translations&namespace=8&message=Publishchanges “'''<bdi>{{int:Publishchanges}}</bdi>'''”]. + +The main reason for this change is to avoid confusion for new editors. Repeated user research studies with new editors have shown that some new editors believed that [https://translatewiki.net/w/i.php?title=Special:Translations&namespace=8&message=Savearticle “<bdi>{{int:Savearticle}}</bdi>”] would save a private copy of a new page in their accounts, rather than permanently publishing their changes on the web. It is important for this part of the user interface to be clear, since it is difficult to remove public information after it is published. We believe that the confusion caused by the “<bdi>{{int:Savearticle}}</bdi>” button increases the workload for experienced editors, who have to clean up the information that people unintentionally disclose, and report it to the functionaries and stewards to suppress it. Clarifying what the button does will reduce this problem. + +Beyond that, the goal is to make all the wikis and languages more consistent, and some wikis made this change many years ago. The [[:m:Legal|Legal team]] at the Wikimedia Foundation supports this change. Making the edit interface easier to understand will make it easier to handle licensing and privacy questions that may arise. + +Any help pages or other basic documentation about how to edit pages will also need to be updated, on-wiki and elsewhere. On wiki pages, you can use the wikitext codes <code><nowiki>{{int:Publishpage}}</nowiki></code> and <code><nowiki>{{int:Publishchanges}}</nowiki></code> to display the new labels in the user's preferred language. For the language settings in [[Special:Preferences|your account preferences]], these wikitext codes produce “<bdi>{{int:Publishpage}}</bdi>” and “<bdi>{{int:Publishchanges}}</bdi>”. + +Please share this news with community members who teach new editors and with others who may be interested. +</div> [[m:User:Whatamidoing (WMF)|Whatamidoing (WMF)]] ([[m:User talk:Whatamidoing (WMF)|talk]]) 2016. gada 9. labeibys mieness, plkst. 21.02 (EEST) +<!-- Message sent by User:Quiddity (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=15790914 --> + +== RevisionSlider == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +From September 13th on, [[mw:Special:MyLanguage/Extension:RevisionSlider|RevisionSlider]] will be available as a [[mw:Special:MyLanguage/Beta Features|beta feature]] in your wiki. The RevisionSlider adds a slider view to the diff page, so that you can easily move between revisions. The feature fulfills a wish from the [[m:WMDE Technical Wishes|German Community’s Technical Wishlist]]. Everyone is invited to test the feature and we hope that it will serve you well in your work! </div> [[user:Birgit Müller (WMDE)|Birgit Müller (WMDE)]] 2016. gada 12. rudiņa mieness, plkst. 19.08 (EEST) +<!-- Message sent by User:Birgit Müller (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=WMDE_Technical_Wishes/Technical_Wishes_News_list_2&oldid=15903627 --> + +== Grants to improve your project == + +''{{int:Please-translate}}:'' + +Greetings! The [[:m:Grants:Project|Project Grants program]] is currently accepting proposals for funding. There is just over a week left to submit before the October 11 deadline. If you have ideas for software, offline outreach, research, online community organizing, or other projects that enhance the work of Wikimedia volunteers, start your proposal today! Please encourage others who have great ideas to apply as well. Support is available if you want help turning your idea into a grant request. +*'''[[:m:Grants:Project/Apply|Submit a grant request]]''' +*'''Get help''': In [[:m:Grants:IdeaLab|IdeaLab]] or an upcoming [[:m:Grants:Project#Upcoming_events|Hangout session]] +*'''Learn from examples''' of completed [[:m:Grants:IEG#ieg-engaging|Individual Engagement Grants]] or [[:m:Grants:PEG/Requests#Grants_funded_by_the_WMF_in_FY_2015.E2.80.9316|Project and Event Grants]] +[[m:User:I JethroBT (WMF)|I JethroBT (WMF)]] ([[m:User talk:I JethroBT (WMF)|talk]]) 2016. gada 30. rudiņa mieness, plkst. 23.11 (EEST) +<!-- Message sent by User:I JethroBT (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:I_JethroBT_(WMF)/IEG_2015_Targets&oldid=15939807 --> + +== Creative Commons 4.0 == + +Hello! I'm writing from the Wikimedia Foundation to invite you to give your feedback on a proposed move from CC BY-SA 3.0 to a CC BY-SA 4.0 license across all Wikimedia projects. The consultation will run from October 5 to November 8, and we hope to receive a wide range of viewpoints and opinions. Please, if you are interested, [[meta:Special:MyLanguage/Terms of use/Creative Commons 4.0|take part in the discussion on Meta-Wiki]]. + +''Apologies that this message is only in English. [[meta:Special:MyLanguage/Terms of use/Creative Commons 4.0/MassMessage|This message can be read and translated in more languages here]].'' [[User:JSutherland (WMF)|Joe Sutherland]] ([[User talk:JSutherland (WMF)|talk]]) 2016. gada 6. leita mieness, plkst. 04.35 (EEST) +<!-- Message sent by User:JSutherland (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:JSutherland_(WMF)/MassMessage/1&oldid=15962252 --> + +== Editing News #3—2016 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +''[[:m:Special:MyLanguage/VisualEditor/Newsletter/2016/October|Read this in another language]] • [[:m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]'' + +<div style="float:right;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}margin-left:1em;border-style:solid;border-width:1px;padding:1em;"> +[[File:VisualEditor-logo.svg|200px|center|alt=VisualEditor]]'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> + +Did you know that you can easily re-arrange columns and rows in the visual editor? [[File:VisualEditor table editing menu.png|alt=Screenshot showing a dropdown menu with options for editing the table structure|center|frameless|232x232px]] + + +Select a cell in the column or row that you want to move. Click the arrow at the start of that row or column to open the dropdown menu (shown). Choose either "Move before" or "Move after" to move the column, or "Move above" or "Move below" to move the row. + +You can read and help translate [[:mw:Special:MyLanguage/VisualEditor/User guide|the user guide]], which has more information about how to use the visual editor. +</div></div> + +Since the last newsletter, the [[:mw:Special:MyLanguage/VisualEditor|VisualEditor Team]] has mainly worked on a new wikitext editor. They have also released some small features and the new map editing tool. Their workboard is available [[phab:project/board/483/|in Phabricator]]. You can find links to the list of work finished each week at [[:mw:VisualEditor/Weekly triage meetings|mw:VisualEditor/Weekly triage meetings]]. Their [[:mw:VisualEditor/Current_priorities|current priorities]] are fixing bugs, releasing the 2017 wikitext editor as a [[mediawikiwiki:Beta_Features|beta feature]], and improving language support. + +=== Recent changes === + +*You can now set text as small or big.[https://phabricator.wikimedia.org/T53613] +*Invisible templates have been shown as a puzzle icon. Now, the name of the invisible template is displayed next to the puzzle icon.[https://phabricator.wikimedia.org/T141861] A similar feature will display the first part of hidden HTML comments.[https://phabricator.wikimedia.org/T147089] +*Categories are displayed at the bottom of each page. If you click on the categories, the dialog for editing categories will open.[https://phabricator.wikimedia.org/T145267] +*At many wikis, you can now add [[mediawikiwiki:Maps|maps]] to pages. Go to the Insert menu and choose the "Maps" item. The Discovery department is adding more features to this area, like geoshapes. You can read more at mediawiki.org.[https://www.mediawiki.org/wiki/Wikimedia_Discovery#Maps] +*The "Save" button now says "Save page" when you create a page, and "Save changes" when you change an existing page.[https://phabricator.wikimedia.org/T139033] In the future, the "{{int:Savearticle}}" button will say "{{int:Publishpage}}". This will affect both the visual and wikitext editing systems. More [[:m:Editing/Publish|information is available on Meta]]. +*Image galleries now use a visual mode for editing. You can see thumbnails of the images, add new files, remove unwanted images, rearrange the images by dragging and dropping, and add captions for each image. Use the "Options" tab to set the gallery's display mode, image sizes, and add a title for the gallery.[https://phabricator.wikimedia.org/T45037] + +=== Future changes === + +The visual editor will be offered to all editors at the remaining 10 [[:mw:VisualEditor/Rollouts|"Phase 6" Wikipedias]] during the next month. The developers want to know whether typing in your language feels natural in the visual editor. Please post your comments and the language(s) that you tested at [[:mw:Topic:St8y4ni42d0vr9cv|the feedback thread on mediawiki.org]]. This will affect several languages, including [[:w:th:|'''Thai''']], [[:w:my:|'''Burmese''']] and [[:w:arc:|'''Aramaic''']]. + +The team is working on a modern wikitext editor. The [[Mw:2017 wikitext editor|2017 wikitext editor]] will look like the visual editor and be able to use the citoid service and other modern tools. This new editing system may become available as a Beta Feature on desktop devices in October 2016. You can read about this project in a [[:mw:Special:MyLanguage/VisualEditor/Roadmap/Update_2016-06-23|general status update on the Wikimedia mailing list]]. + +=== Let's work together === + +* Do you teach new editors how to use the visual editor? Did you help [[:mw:Citoid/Enabling Citoid on your wiki|set up the Citoid automatic reference feature for your wiki]]? Have you written or imported [[:mw:Special:MyLanguage/Help:TemplateData|TemplateData]] for your most important citation templates? <mark>Would you be willing to help new editors and small communities with the visual editor? Please sign up for the new [[:mw:Help:VisualEditor/Community Taskforce|'''VisualEditor Community Taskforce''']].</mark> + +*If you aren't reading this in your preferred language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. {{int:Feedback-thanks-title}} + +—[[:mw:User:Elitre (WMF)|Elitre (WMF)]] +</div> 2016. gada 15. leita mieness, plkst. 20.50 (EEST) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=15960088 --> + +== Password reset == + +''I apologise that this message is in English. [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-Security%2FPassword+reset&language=&action=page&filter= {{int:Centralnotice-shared-help-translate}}]'' + +We are having a problem with attackers taking over wiki accounts with privileged user rights (for example, admins, bureaucrats, oversighters, checkusers). It appears that this may be because of weak or reused passwords. + +Community members are working along with members of multiple teams at the Wikimedia Foundation to address this issue. + +In the meantime, we ask that everyone takes a look at the passwords they have chosen for their wiki accounts. If you know that you've chosen a weak password, or if you've chosen a password that you are using somewhere else, please change those passwords. + +Select strong passwords – eight or more characters long, and containing letters, numbers, and punctuation. [[m:User:JSutherland (WMF)|Joe Sutherland]] ([[m:User talk:JSutherland (WMF)|{{int:Talkpagelinktext}}]]) / [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2016. gada 14. solnys mieness, plkst. 01.59 (EET) +<!-- Message sent by User:JSutherland (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:JSutherland_(WMF)/MassMessage/1&oldid=16060701 --> + +== Adding to the above section (Password reset) == + +Please accept my apologies - that first line should read "[https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-Security%2FPassword+reset&language=&action=page&filter= Help with translations!]". [[m:User:JSutherland (WMF)|Joe Sutherland (WMF)]] ([[m:User talk:JSutherland (WMF)|talk]]) / [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2016. gada 14. solnys mieness, plkst. 02.11 (EET) +<!-- Message sent by User:JSutherland (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:JSutherland_(WMF)/MassMessage/1&oldid=16060701 --> + +== New way to edit wikitext == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +'''Summary''': There's a new opt-in Beta Feature of a [[:mw:2017 wikitext editor|wikitext mode for the visual editor]]. Please [[Special:Preferences#mw-prefsection-betafeatures|go try it out]]. + + +We in the Wikimedia Foundation's Editing department are responsible for making editing better for all our editors, new and experienced alike. We've been slowly improving [[:mw:VisualEditor|the visual editor]] based on feedback, user tests, and feature requests. However, that doesn't work for all our user needs: whether you need to edit a wikitext talk page, create a template, or fix some broken reference syntax, sometimes you need to use wikitext, and many experienced editors prefer it. + +Consequently, we've planned a "wikitext mode" for the visual editor for a long time. It provides as much of the visual editor's features as possible, for those times that you need or want wikitext. It has the same user interface as the visual editor, including the same toolbar across the top with the same buttons. It provides access to the [[:mw:citoid|citoid service]] for formatting citations, integrated search options for inserting images, and the ability to add new templates in a simple dialog. Like in the visual editor, if you paste in formatted text copied from another page, then formatting (such as bolding) will automatically be converted into wikitext. + +All wikis now have access to this mode as a [[:mw:Beta Features|Beta Feature]]. When enabled, it replaces your existing [[:mw:Editor|wikitext editor]] everywhere. If you don't like it, you can reverse this at any time by turning off the Beta Feature in your preferences. We don't want to surprise anyone, so it's strictly an ''opt-in-only'' Beta Feature. It won't switch on automatically for anyone, even if you have previously checked the box to "{{Int:Betafeatures-auto-enroll}}". + +The new wikitext edit mode is based on the visual editor, so it requires JavaScript (as does the [[:mw:Extension:WikiEditor|current wikitext editor]]). It doesn't work with gadgets that have only been designed for the older one (and ''vice versa''), so some users will miss gadgets they find important. We're happy to [[:mw:VisualEditor/Gadgets|work with gadget authors to help them update their code to work]] with both editors. We're not planning to get rid of the current main wikitext editor on desktop in the foreseeable future. We're also not going to remove the existing ability to edit plain wikitext without JavaScript. Finally, though it should go without saying, if you prefer to continue using the current wikitext editor, then you may so do. + +This is an early version, and we'd love to know what you think so we can make it better. Please leave feedback about the new mode [[:mw:2017 wikitext editor/Feedback|on the feedback page]]. You may write comments in any language. Thank you. + +</div> [[:mw:User:Jdforrester (WMF)|James Forrester]] (Product Manager, Editing department, Wikimedia Foundation) --2016. gada 14. zīmys mieness, plkst. 21.31 (EET) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=15942009 --> + +== Invitation to [[:m:Wikimedia CEE Spring 2017|Wikimedia CEE Spring 2017]] == +<small>Sorry for writing in English.</small> + +Dear Latgalian community, + +Last year your community missed to participate at CEE Spring in Latgalian and we invite you to participate in this year’s contest! Local organisers, please subscribe to the mailing list at https://lists.wikimedia.bg/mailman/listinfo/ceespring-localorganisers, add your community at the [[:m:Wikimedia CEE Spring 2017/Participants|Meta page with the participants]] and discuss this year’s edition of the contest on its talk page ([[:m:Talk:Wikimedia CEE Spring 2017/Participants|Talk:Wikimedia CEE Spring 2017/Participants]]). There you will also find information on some of the things expected from the local organisers. We are looking forward to reading from you soon! + +On behalf of the international organisers, -- [[Lītuotuojs:Алиса Селезньова|Алиса Селезньова]] ([[Sprīža ap lītuotuoju:Алиса Селезньова|diskusija]]) 2017. gada 17. jaunagods mieness, plkst. 16.38 (EET) + +== Review of initial updates on Wikimedia movement strategy process == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +''Note: Apologies for cross-posting and sending in English. [[m:Strategy/Wikimedia movement/2017/Updates/Initial announcements review|Message is available for translation on Meta-Wiki]].'' + +The Wikimedia movement is beginning a movement-wide strategy discussion, a process which will run throughout 2017. For 15 years, Wikimedians have worked together to build the largest free knowledge resource in human history. During this time, we've grown from a small group of editors to a diverse network of editors, developers, affiliates, readers, donors, and partners. Today, we are more than a group of websites. We are a movement rooted in values and a powerful vision: all knowledge for all people. As a movement, we have an opportunity to decide where we go from here. + +This movement strategy discussion will focus on the future of our movement: where we want to go together, and what we want to achieve. We hope to design an inclusive process that makes space for everyone: editors, community leaders, affiliates, developers, readers, donors, technology platforms, institutional partners, and people we have yet to reach. There will be multiple ways to participate including on-wiki, in private spaces, and in-person meetings. You are warmly invited to join and make your voice heard. + +The immediate goal is to have a strategic direction by Wikimania 2017 to help frame a discussion on how we work together toward that strategic direction. + +Regular updates are being sent to the [[mail:Wikimedia-l|Wikimedia-l mailing list]], and posted [[m:Strategy/Wikimedia_movement/2017/Updates|on Meta-Wiki]]. Beginning with this message, monthly reviews of these updates will be sent to this page as well. [[m:Strategy/Wikimedia movement/2017/Updates/Signup|Sign up]] to receive future announcements and monthly highlights of strategy updates on your user talk page. + +Here is a review of the updates that have been sent so far: + +* [[m:Strategy/Wikimedia movement/2017/Updates/15 December 2016 - Update 1 on Wikimedia movement strategy process|Update 1 on Wikimedia movement strategy process]] (15 December 2016) +** Introduction to process and information about budget spending resolution to support it +* [[m:Strategy/Wikimedia movement/2017/Updates/23 December 2016 - Update 2 on Wikimedia movement strategy process|Update 2 on Wikimedia movement strategy process]] (23 December 2016) +** Start of search for Lead Architect for movement strategy process +* [[m:Strategy/Wikimedia movement/2017/Updates/8 January 2017 - Update 3 on Wikimedia movement strategy process|Update 3 on Wikimedia movement strategy process]] (8 January 2017) +** Plans for strategy sessions at upcoming Wikimedia Conference 2017 +* [[m:Strategy/Wikimedia movement/2017/Updates/11 January 2017 - Update 4 on Wikimedia movement strategy process|Update 4 on Wikimedia movement strategy process]] (11 January 2017) +** Introduction of williamsworks +* [[m:Strategy/Wikimedia movement/2017/Updates/2 February 2017 - Update 5 on Wikimedia movement strategy process|Update 5 on Wikimedia movement strategy process]] (2 February 2017) +** The core movement strategy team, team tracks being developed, introduction of the Community Process Steering Committee, discussions at WikiIndaba conference 2017 and the Wikimedia movement affiliates executive directors gathering in Switzerland +* [[m:Strategy/Wikimedia movement/2017/Updates/10 February 2017 - Update 6 on Wikimedia movement strategy process|Update 6 on Wikimedia movement strategy process]] (10 February 2017) +** Tracks A & B process prototypes and providing feedback, updates on development of all four Tracks + +More information about the movement strategy is available on the [[m:Strategy/Wikimedia movement/2017|Meta-Wiki 2017 Wikimedia movement strategy portal]]. + +''Posted by [[m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] on behalf of the [[m:Special:MyLanguage/Wikimedia Foundation|Wikimedia Foundation]], 2017. gada 15. svacainis mieness, plkst. 22.31 (EET) • [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/Initial announcements review|{{int:please-translate}}]] • [[m:Talk:Strategy/Wikimedia movement/2017/Updates|Get help]]'' +</div> +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=16297862 --> + +== Overview #2 of updates on Wikimedia movement strategy process == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +''Note: Apologies for cross-posting and sending in English. [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/Overview 2 of updates on Wikimedia movement strategy process|This message is available for translation on Meta-Wiki]].'' + +As we mentioned last month, the Wikimedia movement is beginning a movement-wide strategy discussion, a process which will run throughout 2017. This movement strategy discussion will focus on the future of our movement: where we want to go together, and what we want to achieve. + +Regular updates are being sent to the [[mail:Wikimedia-l|Wikimedia-l mailing list]], and posted [[m:Special:MyLanguage/Strategy/Wikimedia_movement/2017/Updates|on Meta-Wiki]]. Each month, we are sending overviews of these updates to this page as well. [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/Signup|Sign up]] to receive future announcements and monthly highlights of strategy updates on your user talk page. + +Here is a overview of the updates that have been sent since our message last month: +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/16 February 2017 - Update 7 on Wikimedia movement strategy process|Update 7 on Wikimedia movement strategy process]] (16 February 2017) +** Development of documentation for Tracks A & B +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/24 February 2017 - Update 8 on Wikimedia movement strategy process|Update 8 on Wikimedia movement strategy process]] (24 February 2017) +** Introduction of Track Leads for all four audience tracks +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/2 March 2017 - Update 9 on Wikimedia movement strategy process|Update 9 on Wikimedia movement strategy process]] (2 March 2017) +** Seeking feedback on documents being used to help facilitate upcoming community discussions + +More information about the movement strategy is available on the [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017|Meta-Wiki 2017 Wikimedia movement strategy portal]]. + +''Posted by [[m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] on behalf of the [[m:Special:MyLanguage/Wikimedia Foundation|Wikimedia Foundation]], 2017. gada 9. pavasara mieness, plkst. 21.43 (EET) • [[m:Strategy/Wikimedia movement/2017/Updates/Overview 2 of updates on Wikimedia movement strategy process|{{int:please-translate}}]] • [[m:Talk:Strategy/Wikimedia movement/2017/Updates|Get help]]'' +</div> +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=16350625 --> + +== We invite you to join the movement strategy conversation (now through April 15) == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"><div class="plainlinks"> +: ''This message, "[[mailarchive:wikimediaannounce-l/2017-March/001383.html|We invite you to join the movement strategy conversation (now through April 15)]]", was sent through multiple channels by [[m:User:GVarnum-WMF|Gregory Varnum]] on 15 and 16 of March 2017 to village pumps, affiliate talk pages, movement mailing lists, and MassMessage groups. A similar message was sent by [[m:User:Nicole_Ebber_(WMDE)|Nicole Ebber]] to organized groups and their mailing lists on 15 of March 2017. This version of the message is available for translation and documentation purposes'' + +Dear Wikimedians/Wikipedians: + +Today we are starting a broad discussion to define Wikimedia's future role in the world and develop a collaborative strategy to fulfill that role. You are warmly invited to join the conversation. + +There are many ways to participate, by joining an existing conversation or starting your own: + +[[m:Special:MyLanguage/Strategy/Wikimedia_movement/2017/Track_A|Track A (organized groups)]]: Discussions with your affiliate, committee or other organized group (these are groups that support the Wikimedia movement). + +Track B (individual contributors): [[m:Special:MyLanguage/Strategy/Wikimedia_movement/2017/Cycle_1|On Meta]] or your [[m:Special:MyLanguage/Strategy/Wikimedia_movement/2017/Participate|local language or project wiki]]. + +This is the first of three conversations, and it will run between now and April 15. The purpose of cycle 1 is to discuss the future of the movement and generate major themes around potential directions. What do we want to build or achieve together over the next 15 years? + +We welcome you, as we create this conversation together, and look forward to broad and diverse participation from all parts of our movement. + +* [[m:Special:MyLanguage/Strategy/Wikimedia_movement/2017|Find out more about the movement strategy process]] +* [[m:Special:MyLanguage/Strategy/Wikimedia_movement/2017/Toolkit/Discussion_Coordinator_Role|Learn more about volunteering to be a Discussion Coordinator]] + +Sincerely, + +Nicole Ebber (Track A Lead), Jaime Anstee (Track B Lead), & the [[m:Special:MyLanguage/Strategy/Wikimedia_movement/2017/People|engagement support teams]]</div></div> 2017. gada 18. pavasara mieness, plkst. 07.09 (EET) +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Strategy/Wikimedia_movement/2017/Updates/Global_message_delivery&oldid=16453957 --> + +== [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Start of the 2017 Wikimedia Foundation Board of Trustees elections|Start of the 2017 Wikimedia Foundation Board of Trustees elections]] == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +''Please accept our apologies for cross-posting this message. [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Start of the 2017 Wikimedia Foundation Board of Trustees elections|This message is available for translation on Meta-Wiki]].'' +[[File:Wikimedia-logo black.svg|right|150px|link=m:Special:MyLanguage/Wikimedia Foundation elections/2017]] + +On behalf of the Wikimedia Foundation Elections Committee, I am pleased to announce that self-nominations are being accepted for the [[m:Special:MyLanguage/Wikimedia_Foundation_elections/2017/Board_of_Trustees/Call_for_candidates|2017 Wikimedia Foundation Board of Trustees Elections]]. + +The [[m:Special:MyLanguage/Wikimedia Foundation Board of Trustees|Board of Trustees]] (Board) is the decision-making body that is ultimately responsible for the long-term sustainability of the Wikimedia Foundation, so we value wide input into its selection. More information about this role can be found [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Board of Trustees|on Meta-Wiki]]. Please read the [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Board of Trustees/Call for candidates|letter from the Board of Trustees calling for candidates]]. + +'''The [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Board of Trustees/Candidates|candidacy submission phase]] will last from April 7 (00:00 UTC) to April 20 (23:59 UTC).''' + +'''We will also be accepting questions to ask the candidates from April 7 to April 20. [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Board of Trustees/Questions|You can submit your questions on Meta-Wiki]].''' + +Once the questions submission period has ended on April 20, the Elections Committee will then collate the questions for the candidates to respond to beginning on April 21. + +The goal of this process is to fill the '''three community-selected seats''' on the Wikimedia Foundation Board of Trustees. The election results will be used by the Board itself to select its new members. + +The full schedule for the Board elections is as follows. All dates are '''inclusive''', that is, from the beginning of the first day (UTC) to the end of the last. + +* April 7 (00:00 UTC) – April 20 (23:59 UTC) – '''Board nominations''' +* April 7 – April 20 – '''Board candidates questions submission period''' +* April 21 – April 30 – '''Board candidates answer questions''' +* May 1 – May 14 – '''Board voting period''' +* May 15–19 – '''Board vote checking''' +* May 20 – '''Board result announcement goal''' + +In addition to the Board elections, we will also soon be holding elections for the following roles: + +* '''Funds Dissemination Committee (FDC)''' +** There are five positions being filled. More information about this election will be available [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Funds Dissemination Committee|on Meta-Wiki]]. + +* '''Funds Dissemination Committee Ombudsperson (Ombuds)''' +** One position is being filled. More information about this election will be available [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Funds Dissemination Committee Ombudsperson|on Meta-Wiki]]. + +Please note that this year the Board of Trustees elections will be held before the FDC and Ombuds elections. Candidates who are not elected to the Board are explicitly permitted and encouraged to submit themselves as candidates to the FDC or Ombuds positions after the results of the Board elections are announced. + +More information on this year's elections can be found [[m:Special:MyLanguage/Wikimedia Foundation elections/2017|on Meta-Wiki]]. Any questions related to the election can be posted on the [[m:Talk:Wikimedia Foundation elections/2017|election talk page on Meta-Wiki]], or sent to the election committee's mailing list, <tt dir="ltr" style="white-space:nowrap;font-size:12px;line-height:1.5">board-elections[[File:At sign.svg|15x15px|middle|link=|alt=(at)]]wikimedia.org</tt>. + +On behalf of the Election Committee,<br /> +[[m:User:KTC|Katie Chan]], Chair, [[m:Special:MyLanguage/Wikimedia Foundation elections committee|Wikimedia Foundation Elections Committee]]<br /> +[[m:User:JSutherland (WMF)|Joe Sutherland]], Community Advocate, Wikimedia Foundation + +''Posted by [[m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] on behalf of the [[m:Special:MyLanguage/Wikimedia Foundation elections committee|Wikimedia Foundation Elections Committee]], 2017. gada 7. sulu mieness, plkst. 06.38 (EEST) • [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Start of the 2017 Wikimedia Foundation Board of Trustees elections|{{int:please-translate}}]] • [[m:Talk:Wikimedia Foundation elections/2017|Get help]]''</div> +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=16441214 --> + +== Read-only mode for 20 to 30 minutes on 19 April and 3 May == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"><div class="plainlinks"> + +[[:m:Special:MyLanguage/Tech/Server switch 2017|Read this message in another language]] • {{int:please-translate}} + +The [[foundation:|Wikimedia Foundation]] will be testing its secondary data center in Dallas. This will make sure that Wikipedia and the other Wikimedia wikis can stay online even after a disaster. To make sure everything is working, the Wikimedia Technology department needs to conduct a planned test. This test will show whether they can reliably switch from one data center to the other. It requires many teams to prepare for the test and to be available to fix any unexpected problems. + +They will switch all traffic to the secondary data center on '''Wednesday, 19 April 2017'''. +On '''Wednesday, 3 May 2017''', they will switch back to the primary data center. + +Unfortunately, because of some limitations in [[mw:Manual:What is MediaWiki?|MediaWiki]], all editing must stop during those two switches. We apologize for this disruption, and we are working to minimize it in the future. + +'''You will be able to read, but not edit, all wikis for a short period of time.''' + +*You will not be able to edit for approximately 20 to 30 minutes on Wednesday, 19 April and Wednesday, 3 May. The test will start at [https://www.timeanddate.com/worldclock/fixedtime.html?iso=20170419T14 14:00 UTC] (15:00 BST, 16:00 CEST, 10:00 EDT, 07:00 PDT, 23:00 JST, and in New Zealand at 02:00 NZST on Thursday 20 April and Thursday 4 May). +*If you try to edit or save during these times, you will see an error message. We hope that no edits will be lost during these minutes, but we can't guarantee it. If you see the error message, then please wait until everything is back to normal. Then you should be able to save your edit. But, we recommend that you make a copy of your changes first, just in case. + +''Other effects'': + +*Background jobs will be slower and some may be dropped. Red links might not be updated as quickly as normal. If you create an article that is already linked somewhere else, the link will stay red longer than usual. Some long-running scripts will have to be stopped. +*There will be code freezes for the weeks of 17 April 2017 and 1 May 2017. Non-essential code deployments will not happen. + +This project may be postponed if necessary. You can [[wikitech:Switch Datacenter#Schedule for 2017 switch|read the schedule at wikitech.wikimedia.org]]. Any changes will be announced in the schedule. There will be more notifications about this. '''Please share this information with your community.''' /<span dir=ltr>[[m:User:Whatamidoing (WMF)|User:Whatamidoing (WMF)]] ([[m:User talk:Whatamidoing (WMF)|talk]])</span> +</div></div>[[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2017. gada 11. sulu mieness, plkst. 20.34 (EEST) +<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=16545942 --> + +== Wikidata description editing in the Wikipedia Android app == + +<div class="mw-content-ltr" lang="en" dir="ltr"> +[[:mw:Wikimedia_Apps/Short_descriptions|Wikidata description editing]] is a new experiment being rolled out on the Wikipedia app for Android. While this primarily impacts Wikidata, the changes are also addressing a concern about the mobile versions of Wikipedia, so that mobile users will be able to edit directly the descriptions shown under the title of the page and in the search results. + +We began by rolling out this feature several weeks ago to a pilot group of Wikipedias (Russian, Hebrew, and Catalan), and have seen very positive [[:mw:Wikimedia_Apps/Short_descriptions/Research|results]] including numerous quality contributions in the form of new and updated descriptions, and a low rate of vandalism. + +We are now ready for the next phase of rolling out this feature, which is to enable it in a few days for all Wikipedias except the top ten by usage within the app (i.e. except English, German, Italian, French, Spanish, Japanese, Dutch, Portuguese, Turkish, and Chinese). We will enable the feature for those languages instead at some point in the future, as we closely monitor user engagement with our expanded set of pilot communities. +As always, if have any concerns, please reach out to us on wiki at [[:mw:Talk:Wikimedia_Apps/Short_descriptions|the talk page for this project]] or by email at reading@wikimedia.org. Thanks! + +-[[:mw:User:DBrant (WMF)|DBrant (WMF)]] 2017. gada 14. sulu mieness, plkst. 11.41 (EEST) +</div> +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Elitre_(WMF)/Wikidata_editing&oldid=16580284 --> + +== New Page previews feature == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"><div class="plainlinks"> +New Page previews feature + +[[:m:Special:MyLanguage/User:CKoerner (WMF)/Enable Hovercards/Phase 1|Read this message in another language]] • {{int:please-translate}} + +Hello, + +The Reading web team at the Wikimedia Foundation has been working to enable [[mw:Beta Features/Hovercards|Page previews]], [[Special:Preferences#mw-prefsection-betafeatures|a beta feature]] known previously as Hovercards, as opt-in behavior for logged-in users and the default behavior for logged-out users across Wikipedia projects. Page previews provide a preview of any linked article, giving readers a quick understanding of a related article without leaving the current page. For this project, we are expecting to collect feedback over the following few weeks and tentatively enable the feature in early May, 2017. + +A quick note on the implementation: + +* For logged-in users who are not currently testing out the beta feature, Page previews will be off by default. Users may turn them on from [[Special:Preferences#mw-prefsection-betafeatures|their user preferences]] page. +* For logged-out users, the feature will be on by default. Users may disable it at any time by selecting the setting cog available in each preview. +* For users of the Navigation popups gadget, you will not be able to turn on the Page previews feature while using navigational popups. If you would like to try out the Page preview feature, make sure to first turn Navigation popups off prior to turning Page previews on. + +You can read more about [[mw:Beta_Features/Hovercards|the feature]] and [[mw:Beta Features/Hovercards#Success Metrics and Feature Evaluation|the tests we used to evaluate performance]], try it out by enabling it from the beta features page, and leave feedback or questions [[mw:Talk:Beta_Features/Hovercards|on the talk page]]. + +Thank you, [[Lītuotuojs:MediaWiki message delivery|MediaWiki message delivery]] ([[Sprīža ap lītuotuoju:MediaWiki message delivery|diskusija]]) 2017. gada 19. sulu mieness, plkst. 19.52 (EEST) +</div></div> +<!-- Message sent by User:CKoerner (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:CKoerner_(WMF)/Enable_Hovercards/Phase_1/Distribution_list&oldid=16616381 --> + +== [https://meta.wikimedia.org/wiki/Special:SecurePoll/vote/341?setlang={{CONTENTLANG}} Voting has begun in 2017 Wikimedia Foundation Board of Trustees elections] == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">[[File:Wikimedia-logo black.svg|{{#switch:{{CONTENTLANG}}|ar=left|he=left|right}}|125px|link=m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Board voting has begun]]''This is a message from the [[m:Special:MyLanguage/Wikimedia Foundation elections committee|Wikimedia Foundation Elections Committee]]. [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Board voting has begun|Translations]] are available.'' + +[https://meta.wikimedia.org/wiki/Special:SecurePoll/vote/341?setlang={{CONTENTLANG}}&uselang={{CONTENTLANG}} Voting has begun] for [[m:Wikimedia Foundation elections/2017#Requirements|eligible voters]] in the 2017 elections for the ''[[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Board of Trustees|Wikimedia Foundation Board of Trustees]]''. + +The [[m:Wikimedia Foundation Board of Trustees|Wikimedia Foundation Board of Trustees]] is the ultimate governing authority of the Wikimedia Foundation, a 501(c)(3) non-profit organization registered in the United States. The Wikimedia Foundation manages many diverse projects such as Wikipedia and Commons. + +The voting phase lasts from 00:00 UTC May 1 to 23:59 UTC May 14. '''[https://meta.wikimedia.org/wiki/Special:SecurePoll/vote/341?setlang={{CONTENTLANG}}&uselang={{CONTENTLANG}} Click here to vote].''' More information on the candidates and the elections can be found on the [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Board of Trustees|2017 Board of Trustees election page]] on Meta-Wiki. + +On behalf of the Elections Committee,<br/> +[[m:User:KTC|Katie Chan]], Chair, [[m:Special:MyLanguage/Wikimedia Foundation elections committee|Wikimedia Foundation Elections Committee]]<br/> +[[m:User:JSutherland (WMF)|Joe Sutherland]], Community Advocate, Wikimedia Foundation + +''Posted by the [[m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] • [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Board voting has begun|Translate]] • [[m:Talk:Wikimedia Foundation elections/2017|Get help]]</div> 2017. gada 3. lopu mieness, plkst. 22.14 (EEST)'' +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=16683836 --> + +== Beta Feature Two Column Edit Conflict View == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +From May 9, the [[mw:Special:MyLanguage/Help:Two_Column_Edit_Conflict_View|Two Column Edit Conflict View]] will be available as a [[mw:Special:MyLanguage/Beta Features|beta feature]] on all wikis. The Two Column Edit Conflict View is a new interface for the edit conflict resolution page. It highlights differences between the editor's and the conflicting changes to make it easy to copy and paste pieces of the text and resolve the conflict. The feature fulfils a request for a more user-friendly edit conflict resolution from the [[m:WMDE Technical Wishes|German Community’s Technical Wishlist]]. Everyone is invited to test the feature and we hope that it will serve you well! </div> [[m:user:Birgit Müller (WMDE)|Birgit Müller (WMDE)]] 2017. gada 8. lopu mieness, plkst. 17.41 (EEST) +<!-- Message sent by User:Birgit Müller (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=WMDE_Technical_Wishes/Technical_Wishes_News_list_2&oldid=16712264 --> + +== Editing News #1—2017 == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +''[[:m:Special:MyLanguage/VisualEditor/Newsletter/2017/May|Read this in another language]] • [[:m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]'' + +<div style="float:right;width:230px;{{#switch:ltr|rtl=float:left;margin-left:0;|#default=float:right;margin-right:0;}}margin-left:1em;border-style:solid;border-width:1px;padding:1em;"> +[[File:VisualEditor-logo.svg|200px|center|alt=VisualEditor]]'''Did you know?''' +<div class="thumbcaption" style="font-size: 90%;"> + +Did you know that you can review your changes visually? + +[[File:VisualEditor visual diff tool - visual diff.png|alt=Screenshot showing some changes to an article. Most changes are highlighted with text formatting.|center|frameless|245x245px]]When you are finished editing the page, type your edit summary and then choose "{{Int:visualeditor-savedialog-label-review}}". +In visual mode, you will see additions, removals, new links, and formatting highlighted. Other changes, such as changing the size of an image, are described in notes on the side. + + +[[File:VisualEditor visual diff tool - toggle button.png|alt=Toggle button showing visual and wikitext options; visual option is selected.|center|frameless|220x220px]] + + +Click the toggle button to switch between visual and wikitext diffs. + + +[[File:VisualEditor visual diff tool - wikitext diff.png|alt=Screenshot showing the same changes, in the two-column wikitext diff display.|center|frameless|245x245px]] + + +The wikitext diff is the same diff tool that is used in the wikitext editors and in the page history. You can read and help translate [[:mw:Special:MyLanguage/VisualEditor/User guide|the user guide]], which has more information about how to use the visual editor. +</div></div> + + +Since the last newsletter, the [[:mw:VisualEditor|VisualEditor Team]] has spent most of their time supporting [[:mediawikiwiki:2017_wikitext_editor|the 2017 wikitext editor mode]] which is available inside the visual editor as a Beta Feature, and adding [[:mediawikiwiki:VisualEditor/Diffs|the new visual diff tool]]. Their workboard is available [[:phab:project/board/483/|in Phabricator]]. You can find links to the work finished each week at [[:mw:VisualEditor/Weekly triage meetings|mw:VisualEditor/Weekly triage meetings]]. Their [[:mw:VisualEditor/Current_priorities|current priorities]] are fixing bugs, supporting the 2017 wikitext editor as a [[:mw:Beta Features|beta feature]], and improving the visual diff tool. + +=== Recent changes === +*A '''new wikitext editing mode''' is available as a Beta Feature on desktop devices. The [[:mw:2017 wikitext editor|2017 wikitext editor]] has the same toolbar as the visual editor and can use the citoid service and other modern tools. Go to [[Special:Preferences#mw-prefsection-betafeatures]] to enable the {{Int:Visualeditor-preference-newwikitexteditor-label}}. +* A new '''[[:mediawikiwiki:VisualEditor/Diffs|visual diff tool]]''' is available in VisualEditor's visual mode. You can toggle between wikitext and visual diffs. More features will be added to this later. In the future, this tool may be integrated into other MediaWiki components. [https://phabricator.wikimedia.org/T143350] +* The team have added [[:mediawikiwiki:Editing/Projects/Columns_for_references|multi-column support for lists of footnotes]]. The <code><nowiki><references /></nowiki></code> block can automatically display long lists of references in columns on wide screens. This makes footnotes easier to read. You can [https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?projects=Cite,VisualEditor,Wikimedia-Site-requests&title=Convert%20reference%20lists%20over%20to%20`responsive`%20on%20XXwiki&priority=10&parent=159895 '''request multi-column support'''] for your wiki. [https://phabricator.wikimedia.org/T33597] +* You can now use your web browser's function to switch typing direction in the new wikitext mode. This is particularly helpful for RTL language users like Urdu or Hebrew who have to write JavaScript or CSS. You can use Command+Shift+X or Control+Shift+X to trigger this. [https://phabricator.wikimedia.org/T153356] +* The way to switch between the visual editing mode and the wikitext editing mode is now consistent. There is a drop-down menu that shows the two options. This is now the same in desktop and mobile web editing, and inside things that embed editing, such as Flow. [https://phabricator.wikimedia.org/T116417] +* The {{Int:visualeditor-categories-tool}} item has been moved to the top of the {{Int:visualeditor-pagemenu-tooltip}} menu (from clicking on the "hamburger" icon) for quicker access. [https://phabricator.wikimedia.org/T74399] There is also now a "Templates used on this page" feature there. [https://phabricator.wikimedia.org/T149009] +* You can now create <code><nowiki><chem></nowiki></code> tags (sometimes used as <code><nowiki><ce></nowiki></code>) for chemical formulas inside the visual editor. [https://phabricator.wikimedia.org/T153365] +* Tables can be set as collapsed or un-collapsed. [https://phabricator.wikimedia.org/T157989] +* The {{Int:visualeditor-specialcharacter-button-tooltip}} menu now includes characters for Canadian Aboriginal Syllabics and angle quotation marks (‹› and ⟨⟩) . The team thanks the volunteer developer, [[:S:en:User:Tpt|Tpt]]. [https://phabricator.wikimedia.org/T108626] +* A bug caused some section edit conflicts to blank the rest of the page. This has been fixed. The team are sorry for the disruption. [https://phabricator.wikimedia.org/T154217] +* There is a new keyboard shortcut for citations: <code>Control</code>+<code>Shift</code>+<code>K</code> on a PC, or <code>Command</code>+<code>Shift</code>+<code>K</code> on a Mac. It is based on the keyboard shortcut for making links, which is <code>Control</code>+<code>K</code> or <code>Command</code>+<code>K</code> respectively. [https://phabricator.wikimedia.org/T99299] + +=== Future changes === +* The team is working on a syntax highlighting tool. It will highlight matching pairs of <code><nowiki><ref></nowiki></code> tags and other types of wikitext syntax. You will be able to turn it on and off. It will first become available in VisualEditor's built-in wikitext mode, maybe late in 2017. [https://phabricator.wikimedia.org/T101246] +* The kind of button used to {{Int:Showpreview}}, {{Int:showdiff}}, and finish an edit will change in all WMF-supported wikitext editors. The new buttons will use [[Mw:OOjs UI|OOjs UI]]. The buttons will be larger, brighter, and easier to read. The labels will remain the same. You can test the new button by editing a page and adding <code>&ooui=1</code> to the end of the URL, like this: https://www.mediawiki.org/wiki/Project:Sandbox?action=edit&ooui=1 The old appearance will no longer be possible, even with local CSS changes. [https://phabricator.wikimedia.org/T162849] +* The [[:mediawikiwiki:File:Edit_toolbar_-_2.png|outdated 2006 wikitext editor]] will be removed later this year. It is used by approximately 0.03% of active editors. See [[:mw:Editor|a list of editing tools on mediawiki.org]] if you are uncertain which one you use. [https://phabricator.wikimedia.org/T30856] +*If you aren't reading this in your preferred language, then please help us with translations! Subscribe to the [[mail:translators-l|Translators mailing list]] or [https://meta.wikimedia.org/w/index.php?title=User_talk:Elitre_(WMF)&action=edit&section=new contact us] directly, so that we can notify you when the next issue is ready. {{int:Feedback-thanks-title}} + +—[[:mw:User:Elitre (WMF)|Elitre (WMF)]] +</div> 2017. gada 12. lopu mieness, plkst. 21.05 (EEST) +<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=VisualEditor/Newsletter/Wikis_with_VE&oldid=16160401 --> + +== RevisionSlider == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +[[mw:Special:MyLanguage/Extension:RevisionSlider|RevisionSlider]] will be available as a default feature for all users on all wikis from May 17. The RevisionSlider adds a slider view to the diff page so that you can easily move between revisions. The slider view is collapsed by default, and will load by clicking on it. It can also be turned off entirely in the user preferences. RevisionSlider has been a default feature on German, Arabic and Hebrew Wikipedia for 6 months and a beta feature on all wikis for 8 months. The feature fulfills a wish from the [[m:WMDE Technical Wishes|German Community’s Technical Wishlist]]. Thanks to everyone who tested RevisionSlider and gave valuable feedback to improve the feature! We hope that RevisionSlider will continue to serve you well in your work. </div> [[m:user:Birgit Müller (WMDE)|Birgit Müller (WMDE)]] 2017. gada 16. lopu mieness, plkst. 17.44 (EEST) +<!-- Message sent by User:Birgit Müller (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=WMDE_Technical_Wishes/Technical_Wishes_News_list_2&oldid=16715712 --> + +== [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Cycle 2|Join the next cycle of Wikimedia movement strategy discussions (underway until June 12)]] == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> +:''[[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/Cycle 2 discussions launch|Message is available for translation on Meta-Wiki]]'' +[[File:Wikimedia-logo.svg||{{#switch:{{CONTENTLANG}}|ar=left|he=left|right}}||150px]] +The Wikimedia movement strategy core team and working groups have completed reviewing the more than 1800 thematic statements we received from the first discussion. They have identified [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Cycle 2|5 themes that were consistent across all the conversations]] - each with their own set of sub-themes. These are not the final themes, just an initial working draft of the core concepts. + +You are invited to [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Participate|join the online and offline discussions taking place]] on these 5 themes. This round of discussions will take place between now and June 12th. You can discuss as many as you like; we ask you to participate in the ones that are most (or least) important to you. + +Here are the five themes, each has a page on Meta-Wiki with more information about the theme and how to participate in that theme's discussion: + +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Cycle 2/Healthy, Inclusive Communities|Healthy, Inclusive Communities]] +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Cycle 2/The Augmented Age|The Augmented Age]] +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Cycle 2/A Truly Global Movement|A Truly Global Movement]] +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Cycle 2/The Most Respected Source of Knowledge|The Most Respected Source of Knowledge]] +* [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Cycle 2/Engaging in the Knowledge Ecosystem|Engaging in the Knowledge Ecosystem]] + +On the [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Participate|movement strategy portal on Meta-Wiki]], you can find more information about each of these themes, their discussions, and how to participate. + +''Posted by [[m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] on behalf of the [[m:Special:MyLanguage/Wikimedia Foundation|Wikimedia Foundation]] • [[m:Special:MyLanguage/Strategy/Wikimedia movement/2017/Updates/Cycle 2 discussions launch|{{int:please-translate}}]] • [[m:Talk:Strategy/Wikimedia movement/2017/Updates|Get help]]''</div> 2017. gada 17. lopu mieness, plkst. 00.09 (EEST) +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Strategy/Wikimedia_movement/2017/Updates/Global_message_delivery&oldid=16773425 --> + +== New notification when a page is connected to Wikidata == + +Hello all, + +''({{Int:Please-translate}})'' + +The Wikidata development team is about to deploy a new feature on all Wikipedias. It is a new type of notification (via Echo, the notification system you see at the top right of your wiki when you are logged in), that will inform the creator of a page, when this page is connected to a Wikidata item. + +You may know that [[d:Wikidata:Main page|Wikidata]] provides a centralized system for all the interwikilinks. When a new page is created, it should be connected to the corresponding Wikidata item, by modifying this Wikidata item. With this new notification, editors creating pages will be informed when another editor connects this page to Wikidata. + +[[File:Screenshot Echo Wikibase notification.png]] + +This feature will be deployed on May 30th on all the Wikipedias, excepting English, French and German. This feature will be disable by default for existing editors, and enabled by default for new editors. + +This is the first step of the deployments, the Wikipedias and other Wikimedia projects will follow in the next months. + +If you have any question, suggestion, please let me know by pinging me. You can also follow and leave a comment [[phab:T142102|on the Phabricator ticket]]. + +Thanks go to [[d:user:Matěj Suchánek|Matěj Suchánek]] who developed this feature! + +{{Int:Feedback-thanks-title}} [[:d:User:Lea Lacroix (WMDE)|Lea Lacroix (WMDE)]] ([[:d:User talk:Lea Lacroix (WMDE)|talk]]) +<!-- Message sent by User:Lea Lacroix (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Lea_Lacroix_(WMDE)/List_Wikipedias&oldid=16774958 --> + +== [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Start of the 2017 Wikimedia Foundation Funds Dissemination Committee elections|Start of the 2017 Wikimedia Foundation Funds Dissemination Committee elections]] == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">[[File:Wikimedia-logo black.svg|{{#switch:{{CONTENTLANG}}|ar=left|he=left|right}}|125px|link=m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Start of the 2017 Wikimedia Foundation Funds Dissemination Committee elections]] +:''[[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Start of the 2017 Wikimedia Foundation Funds Dissemination Committee elections|Translations of this message are available on Meta-Wiki]].'' + +On behalf of the Wikimedia Foundation Elections Committee, we are pleased to announce that self-nominations are being accepted for the [[m:Wikimedia Foundation elections/2017/Funds Dissemination Committee/Call for candidates|2017 Wikimedia Foundation Funds Dissemination Committee]] and [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Funds Dissemination Committee Ombudsperson|Funds Dissemination Committee Ombudsperson]] elections. Please read the letter from the Wikimedia Foundation calling for candidates at [[m:Wikimedia Foundation elections/2017/Funds Dissemination Committee/Call for candidates|on the 2017 Wikimedia Foundation elections portal]]. + +''Funds Dissemination Committee''<br /> +The Funds Dissemination Committee (FDC) makes recommendations about how to allocate Wikimedia movement funds to eligible entities. There are five positions being filled. More information about this role can be found at [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Funds Dissemination Committee|the FDC elections page]]. + +''Funds Dissemination Committee Ombudsperson''<br /> +The Funds Dissemination Committee Ombudsperson receives complaints and feedback about the FDC process, investigates complaints at the request of the Board of Trustees, and summarizes the investigations and feedback for the Board of Trustees on an annual basis. One position is being filled. More information about this role can be found at [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Funds Dissemination Committee Ombudsperson|the FDC Ombudsperson elections page]]. + +'''The [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Funds Dissemination Committee/Candidates|candidacy submission phase]] will last until May 28 (23:59 UTC).''' + +'''We will also be accepting questions to ask the candidates until May 28. [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Funds Dissemination Committee/Questions|You can submit your questions on Meta-Wiki]].''' Once the questions submission period has ended on May 28, the Elections Committee will then collate the questions for the candidates to respond to. + +The goal of this process is to fill the '''five community-selected seats''' on the Wikimedia Foundation Funds Dissemination Committee and the '''community-selected ombudsperson'''. The election results will be used by the Board itself to make the appointments. + +The full schedule for the FDC elections is as follows. All dates are '''inclusive''', that is, from the beginning of the first day (UTC) to the end of the last. + +* May 15 (00:00 UTC) – May 28 (23:59 UTC) – '''Nominations''' +* May 15 – May 28 – '''Candidates questions submission period''' +* May 29 – June 2 – '''Candidates answer questions''' +* June 3 – June 11 – '''Voting period''' +* June 12–14 – '''Vote checking''' +* June 15 – '''Goal date for announcing election results''' + +More information on this year's elections can be found at [[m:Special:MyLanguage/Wikimedia Foundation elections/2017|the 2017 Wikimedia Foundation elections portal]]. + +Please feel free to post a note about the election on your project's village pump. Any questions related to the election can be posted on [[m:Talk:Wikimedia Foundation elections/2017|the talk page on Meta-Wiki]], or sent to the election committee's mailing list, <tt dir="ltr" style="white-space:nowrap;font-size:12px;line-height:1.5">board-elections[[File:At sign.svg|15x15px|middle|link=|alt=(at)]]wikimedia.org</tt>. + +On behalf of the Election Committee,<br /> +[[m:User:KTC|Katie Chan]], Chair, [[m:Special:MyLanguage/Wikimedia Foundation elections committee|Wikimedia Foundation Elections Committee]]<br /> +[[m:User:JSutherland (WMF)|Joe Sutherland]], Community Advocate, Wikimedia Foundation + +''Posted by the [[m:Special:MyLanguage/User:MediaWiki message delivery|MediaWiki message delivery]] • [[m:Special:MyLanguage/Wikimedia Foundation elections/2017/Updates/Start of the 2017 Wikimedia Foundation Funds Dissemination Committee elections|Translate]] • [[m:Talk:Wikimedia Foundation elections/2017|Get help]]''</div> 2017. gada 24. lopu mieness, plkst. 00.06 (EEST) +<!-- Message sent by User:GVarnum-WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=16804695 --> + +== [[m:Requests for comment/Global centralnotice for the blockade of the Turkish government]] == +Hi, you are invited to participate in the discussion on the proposal to make a banner through [[m: centralnotice]] to inform more people around the world about what the Turkish government has done about Wikipedia, ie all the language versions of Wikipedia are You are obscured, so in Turkey it is impossible to view the * .wikipedia.org site. To hope that the Turkish government will remove the block, it is necessary to raise awareness of this fact around the world because it is important to succeed in this mission because Wikipedia can not be seen in Turkey. With this message also for those interested, I invite him to sign the [[m:Response to 2017 ban in Turkey|Wikimedian appeal]]. + +If you have any questions or questions do not hesitate to contact me. +Thanks best regards. --[[User:Samuele2002|<span style="color:#0080C0;">'''Samuele'''2002</span>]] <small>[[User Talk:Samuele2002|'''<font face="Cursive"><font color="#F50">(Talk!)</font></font>''']]</small> 2017. gada 4. vosorys mieness, plkst. 00.33 (EEST) + +== Wikidata changes now also appear in enhanced recent changes == + +<div lang="en" dir="ltr" class="mw-content-ltr"> +Hello, and sorry to write this message in English. You can [[mw:User:Lea_Lacroix_(WMDE)/Wikidata_in_enhanced_recent_changes|help translating it]]. + +Starting from today, you will be able to display Wikidata changes in both modes of the recent changes and the watchlist. + +'''[[mw:User:Lea_Lacroix_(WMDE)/Wikidata_in_enhanced_recent_changes|Read and translate the full message]]''' + +{{Int:Feedback-thanks-title}} [[user:Lea Lacroix (WMDE)|Lea Lacroix (WMDE)]] 2017. gada 29. vosorys mieness, plkst. 11.33 (EEST) + +<small>(wrong target page? you can [[m:User:Lea Lacroix (WMDE)/List Wikipedias|fix it here]])</small> +</div> +<!-- Message sent by User:Lea Lacroix (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Lea_Lacroix_(WMDE)/List_Wikipedias&oldid=16777494 --> + +== Accessible editing buttons == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">The MediaWiki developers have been slowly improving the accessibility of the user interface. The next step in this transition will change the appearance of some buttons and may break some outdated (non-updated or unmaintained) user scripts and gadgets. + +You can see and use the [https://www.mediawiki.org/wiki/Project:Sandbox?action=submit&ooui=0 old] and [https://www.mediawiki.org/wiki/Project:Sandbox?action=submit&ooui=1 new] versions now. Most editors will only notice that some buttons are slightly larger and have different colors. + +<gallery mode="nolines" caption="Comparison of old and new styles" heights="240" widths="572"> +File:MediaWiki edit page buttons accessibility change 2017, before.png|Buttons before the change +File:MediaWiki edit page buttons accessibility change 2017, after.png|Buttons after the change +</gallery> + +However, this change also affects some user scripts and gadgets. Unfortunately, some of them may not work well in the new system. <mark>If you maintain any user scripts or gadgets that are used for editing, please see '''[[:mw:Contributors/Projects/Accessible editing buttons]]''' for information on how to test and fix your scripts. Outdated scripts can be tested and fixed now.</mark> + +This change will probably reach this wiki on '''Tuesday, 18 July 2017'''. Please leave a note at [[:mw:Talk:Contributors/Projects/Accessible editing buttons]] if you need help.</div> [[:m:User:Whatamidoing (WMF)|Whatamidoing (WMF)]] ([[User talk:Whatamidoing (WMF)|talk]]) 2017. gada 11. sīna mieness, plkst. 01.23 (EEST) +<!-- Message sent by User:Quiddity (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery/Wikipedia&oldid=16980876 --> + +== Page Previews (Hovercards) update == + +<div class="plainlinks mw-content-ltr" lang="en" dir="ltr"> + +Hello, + +A quick update on the progress of enabling [[mw:Hovercards|Page Previews]] (previously named Hovercards) on this project. Page Previews provide a preview of any linked article, giving readers a quick understanding of a related article without leaving the current page. As mentioned in December we're preparing to remove the feature from Beta and make it the default behavior for logged-out users. We have recently made a large update to the code which fixes most outstanding bugs. + +Due to some issues with our instrumentation, we delayed our deployment by a few months. We are finally ready to deploy the feature. Page Previews will be off by default and available in the user preferences page for logged-in users the week of July 24th. The feature will be on by default for current beta users and logged-out users. If you would like to preview the feature, you can enable it as a [[Special:Preferences#mw-prefsection-betafeatures|beta feature]]. For more information see [[mw:Hovercards|Page Previews]]. Questions can be left [[mw:Talk:Beta_Features/Hovercards|on the talk page]] in your preferred language. + +Thank you again. +</div>[[m:User:CKoerner (WMF)|CKoerner (WMF)]] ([[m:User talk:CKoerner (WMF)|talk]]) 2017. gada 21. sīna mieness, plkst. 01.33 (EEST) +<!-- Message sent by User:CKoerner (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:CKoerner_(WMF)/Enable_Hovercards/Reminder/Distribution_list&oldid=17019707 --> + +== Improved search in deleted pages archive == + +{{int:please-translate}} + +During Wikimedia Hackathon 2016, the [[mw:Wikimedia_Discovery|Discovery]] team [https://phabricator.wikimedia.org/T109561 worked] on one of the items on the 2015 community wishlist, namely [[m:2015_Community_Wishlist_Survey/Search#Provide_a_means_of_searching_for_deleted_pages|enabling searching the archive of deleted pages]]. This feature is now ready for production deployment, and will be enabled on all wikis, except Wikidata. + +Right now, the feature is behind a feature flag - to use it on your wiki, please go to the <code>Special:Undelete</code> page, and add <code>&fuzzy=1</code> to the URL, like this: https://test.wikipedia.org/w/index.php?title=Special%3AUndelete&fuzzy=1. Then search for the pages you're interested in. There should be more results than before, due to using ElasticSearch indexing (via the CirrusSearch extension). + +We plan to enable this improved search by default on all wikis soon (around August 1, 2017). If you have any objections to this - please raise them with the Discovery team via [http://mailto:discovery@lists.wikimedia.org email] or on this announcement's discussion page. Like most Mediawiki configuration parameters, the functionality can be configured per wiki. +Once the improved search becomes the default, you can still access the old mode using <code>&fuzzy=0</code> in the URL, like this: https://test.wikipedia.org/w/index.php?title=Special%3AUndelete&fuzzy=0 + +Please note that since Special:Undelete is an admin-only feature, this search capability is also only accessible to wiki admins. + +{{Int:Feedback-thanks-title}} [[m:User:CKoerner (WMF)|CKoerner (WMF)]] ([[m:User talk:CKoerner (WMF)|talk]]) 2017. gada 25. sīna mieness, plkst. 21.40 (EEST) +<!-- Message sent by User:CKoerner (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:CKoerner_(WMF)/Archive_search_announce/Distribution_list&oldid=17036927 --> + 650zsvvew661xsk1891mt3b3hylydus + + + + Vikipedeja:Kai papiļdeit rakstīni + 4 + 523 + + 30817 + 29991 + 2015-08-08T12:11:45Z + + YiFeiBot + 2627 + + + Bot: Migrating 23 langlinks, now provided by [[d:|Wikidata]] on [[d:q151637]] + wikitext + text/x-wiki + [[Vikipedeja|Vikipedeja]] dora pa sovim «[[Viki|viki]]» principim: sevkurs puslopys gosts var papiļdeit ite radzamūs [[Roksts|rakstīņus]] i puormejumu iz reizis ite varēs apsavērt. Zamuok sastuosteits, kai pošim redigēt Vikipedejis puslopys, lītuodamim '''viki-apzeimīņus'''. + +Apsaverit taipoš: +* [[Vikipedeja:Paleigs suociejim|Paleigs suociejim]]; +* [[Vikipedeja:Kai sastateit rakstīņus|Kai sastateit rakstīņus]]; +* [[Vikipedeja:Kai pasaukt rakstīņa|Kai pasaukt rakstīņa]]; +* [[Vikipedeja:Nūsacejumi un nūruodejumi|Nūsacejumi un nūruodejumi]] — Vikipedejis kūpeigī nūsacejumi deļ stiļa, strukturys i rakstīņu nūformiejuma. + +Izraudzeit jaunuos damanis varit [[Vikipedeja:Smiļkšu skreine|"Smiļkšu skreinē"]] + +== Pamats == +Nagryuts redigēt puslopys tekstu «viki» apleicē. Kod damīgts iz vuorda «'''edit'''» (viersā; ci iz nūruodis «'''edit'''» rakstīņa viersejā daļā pa lobai), puslopys izavierīņs mejās – redigiešonys apleicē suoku teksts irā na vīņ skaitoms, a i lobojams, lītojūt Vikipedejis seviškuos zeimis. (Tai saucomū [[Vikipedeja:Markiešonys volūda|markiešonu]] «viki», ap kurū sastuosteits [[#Viki-markieri|zamuok]].) + +Tuoļuok: +# padorit grybamūs puormejumus; +# eiši aprokstit [[:en:Wikipedia:Summary|padareitūs puormejumus]]; +# damīdzit «[[:en:Show preview]]» i puorsaverit, ci tekstu puormejūt navā atsarodušys klaidys; +# kod vyss izaver parādā, mīdzit «[[:en:Save page]]». + +Jius varit mīgt iz "'''Diskusejis'''" i apsavērt [[Vikipedeja:Dūmu meits|dūmu meita]], kur Vikipedejis lītuotuoji apsprīž rokstomū. Mīdzūt iz "'''+'''" dasalīk jauna tema, tok varit taipoš papiļdeit i asūšūs rakstīņus. Ka dorot pataisejumus dūmu meitūs, lyudzami puormejumus [[Vikipedeja:Izmainu registriešona|registrejit]], kai vysod, turitēs pi [[Vikipedeja:Dūmu meita nūsaciejumi|nūsacejumu]]. + +Tekstu lobuošona nazkuram var ruodeitīs parūčuoka, kod asūšais rakstīņa teksts puorspīsts kurymā naviņ teksta redaktorā, tī pataiseits i piečuok otkon puorspīsts atpakaļ Vikipedejis apleicē. + +Lyudzam vysus rakstīņus sastateit, verūtīs iz jūs tematiku nu [[Vikipedeja:Neitraļs skatu punkts|neitraluo vierīņpunkta]]. Raugit napaļaut aptuomysku ci cīši subjektīvu pījāmumu, taipoš puoreigu emoceju. Vysod īlicit nūruodis iz [[Vikipedeja:Informacejys olūts|informacejis olūtim]], kuru izlītuoti sastotūt Jiusu rakstīņus. Ite byus i lobs paleigs citym Vikipedejis gostim, kab jī varātu papiļdeit Jiusu rakstīņus i daudzi kuo nu jauna dazynuot. Citatus varit apzeimēt akademiskai, kai (Example, 2004, pp 22-23), ci ar viersejū darunys skaitleiti <sup>[[Viki projekta faktu i atsauču kontrols|1]] </sup>, tys paleidzēs atrast jū rakstīņa beiguos asūšajā nūruožu sarokstā. + +Kod jaunais rakstīņs sastateits, irā nazcik lobu vareibu: +* lītuot ''Tematiskuos nūruodis'', kab izraudzeitumet jau dasītūs rakstīņus. +* lītuot Search pūgu, kab dalyktumet Vikipedejis rakstīnim radneigūs i īlyktumet nūruodis iz taidim rakstīnim. + +Eišuok pasokūt – turitēs pi [[Vikipedeja:Nūsociejumi un nūruodiejumi|nūsacejumu]]: tys nagryuši i cīši līteigai. + +== Nazeimeigi papiļdejumi == +[[Vikipedija:Registracieja|Registrietom]] puslopja lītuotuojom piec kaida naviņ roksta maineišonys ir vareiba pasludynuot sovys darbeibys kai «maznūzeimeigys» - tas cīšan īsakuomi, kad lobuojomim nav lela ītoka iz roksta pirmiejū īguodu. Pi taidim pīskaituom drukavys ci ortograpejys klaidys, kaidas naviņ nūformiejuma maineibys, puora vuordu mejšonu vītom i leidzeigys darbeibys. Taipat par maznūzemeigom dievejomi [[interviki]] nūdrūšinuojumi –saitys, [[Vikipedija:Kategorijys|kategorijys]] un citys «strukturuos» lobuojumys, kuri pošam rakstīkom narāduos puorejū Vikipedejis gostu vieriebys cīneigi. + +Sevkurai cytai maineiboi rokstūs daīt tykt zinuomai cylvākim, kas tura iņteresu ap juo tematiku. Ij maineiba, kas dasadūruse tik da vīna vuorda, skaituoma par svareigu, kab spiej da serdys mainiet rokstā liktū informaceji. + +Lelums Vikipedeja lītuotuoju pi puslopa skaiteišonys maznūzeimeigūs labuojuomus aplaiž bez seviškys maneibys, i daže jim dūta vareiba maznūzeimeiguos maineibys ''nūglobuot'', kab natēreitu laika seikumīm. Par tū sevkuram roksta lobuotuojom daīt cīšan apdūmuot ci par tīsu juo veiktuos maineibys napamet ītaku iz vysa roksta dūmu. + +Bez eistonas vajadzeibys namīdzīt izvēlis «maineibys skaitiet kai maznūzeimeigys», bo tai īstateita viņ prīšk rokstu „kosmetisku proceduru” doreituoju porūceiguma. + +Anonimim (bez sova [[Vikipedeja:Registraceja|slāgvuorda i paroļa]]) puslopa gostym nadaīt vareibys statiet maznūzeimeigūs lobuojumys, kab taida vareiba dasalaistu lelu breivi [[Vikipedeja:Vandaļu gors|vandaļu]] ļauneibom. + +Ite vēļ vīns īguods, par kū līteigi [[Vikipedeja:Registracieja|registrietīs]] Vikipedejis apleicīnē. + +== Viki-markiešona == +Zamuok Jyusu tiemiebai pīduovuota Vikipedejis redigiešonys vareibu tabele ar pīmārim. Atguodynuojums, cikuom vēļ naasat drūši par sovu darbeibu rezultatim Vikipedejis apleicīnē, īvārūt lyugumu lādeit vysis savys dareišonys «[[Vikipedeja:Smiļkšu skreine|smiļkšu skreinē]]». + +=== Padalis, aiļkūpys, saroksti i ailis === +<table border="1" cellpadding="2" cellspacing="0"> +<tr> +<th>Kai tys izaver</th> +<th>Kai dasnēgt grybamuo rezultata</th> +</tr> +<tr> +<td> +Sevkurys padalis suokuos mums byus viersroksts-pasauka: + +<h2>Jauna padaļa</h2> +<h3>Zampadaļa</h3> +<h4>Zamzampadaļa</h4> +Dažys nūdareigys darunys, kurys var atvīglynuot dorbu pi Vikipedejis. +* Pyrmū leidzīni vysod licit (<tt><nowiki>==</nowiki></tt>), naizlītuodami poša viersejuo leidzīņa apzeimīņa (=), partū ka jū lītuoj poša Vikipedeja sovym snāgim. +* Veritēs, kab leidzīni ītu pa aiļai (trešs leidzīņs vysod īt piec ūtruo, catūrts – piec trešuo, i tt.). +* [[Vikipedeja:puslopu ruodeituojs|Puslopu ruodeituoju]] Vikipedeja sastateis poša, kai tik rakstīņam atsarass daudzuok na treis padalis. +* Pa vareibai saparādavojit rakstīņa padalis pa kaidam naviņ logiskam parādam, saceisim, pa alfabetam, geografiskom pīzeimeim voi pa kaidai cytai lelumam ļaužu vīgli saprūtamai pīzeimei. +</td> +</table> + +... tuoļuok byus vēl... + +[[Kategoreja:Vikipedejis lītuošona]] + +[[am:Help:Editing]] +[[fr:Wikipédia:Syntaxe wikipédia]] +[[it:Wikipedia:Guida essenziale]] +[[pl:Wikipedia:Formatowanie tekstu na Wikipedii]] + 611ctb4dbscesou43ezi4i632t9b8hm + + + + Vikipedeja:Kai registrētīs + 4 + 524 + + 8302 + 8301 + 2011-03-19T13:24:19Z + + SPQRobin + 2 + + + 14 versijas: importing articles from Incubator + wikitext + text/x-wiki + Registrētīs Vikipedejā var vīglai: +# Ekrana viersā atrūnit "Log in / create account". +# Atsadarejušuos puslopys ("Log in/Create account") lūgā "Log in" mīdzit iz nūruodis "Create an account". +# Nu jauna atsadarejušajā puslopā lūgā "Create account" dorit itaidys darbeibys: +## īrokstit pyrmajā aileņā anglīšu vuordu, kuru radzat atvaigā (ite apsardzeiba nu škārsteikla vandalizma); +## izalosit sev lītuotuojvuordu i īrokstit jū sūpluok "Username"; pa itam vuordam jiusus iz prīšku vysod pazeis Vikipedejā; +## izalosit paroli i īvodojit jū 2 reizis; +## īrokstit sovu e-postu; +## mīdzit "Create account". + +Īguodojit sovu jaunū lītuotuojvuordu i paroli, ar jim vysod varēsit īīt Vikipdejā. + +[[Category:Wp/ltg]] +[[Category:Vikipedejis lītuošona]] + 77py6x9tksaevcp7pl1onqfei7gopfo + + + + Vikipedeja:Lopys atsagrīzšona + 4 + 525 + + 26655 + 8315 + 2013-01-01T06:39:09Z + + Turaids + 172 + + + wikitext + text/x-wiki + Ja asat īvāruojuši, ka lopys saturs ir izneicynuots voi sabūjuots nu sovvaļnīkim aba [[Vikipedeja:Vandaļu gors|vandalim]], tod lels lyugums - atsagrīzt pi pēdējuos lopys lobuos versejis. + +'''Atsagrīzt pi ogruokuos versejis''' sprosta. Navajag net pīsaregistrēt - leidzeigi kai rokstu redigēšanai. + +== Darbeibu parāds == +* Atverit sabūjuotū rokstu +* Mīdzit lopys auškā linku '''Viesture''' ([[anglīšu volūda|anglīšu]]: ''History'') +* Mīdzit iz linku, kur ruodeita vajadzeiguos lopys verseja i datums. +* Atsadareis vajadzeigā verseja +* Apsaverit, ka tei verseja ari nav vandaļu sabūjuota (cytaiž atverit vēļ ogruoku verseju). +* Mīdzit iz linku '''Lobuot''' ([[anglīšu volūda|anglīšu]]: ''Update'') +* '''Without any changes''', mīdzit pūgu "Nūglobuot lopu", a kūpsavylkumā (''Summary'') īrokstit, ka ite lobuots [[Vikipedeja:Vandaļu gors|vandalizms]]. + +Tān itei Jyusu izavielietuo "lobuo" verseja ir vysim radzoma. Tai ''sevkurs'' Vikipedijys gosts var izlobuot [[Vikipedeja:Vandaļu gors|vandalizma]] rezultatus. + +[[Kategoreja:Vikipedejis lītuošona]] + i2z92y39enxr00lxnlylh4t8w1mkg2n + + + + Vikipedeja:Pareizraksteiba + 4 + 526 + + 21169 + 8370 + 2012-02-22T14:36:30Z + + Iketsi + 288 + + + -[[Category:Wp/ltg]] + wikitext + text/x-wiki + Itymā rakstīnī dūtys stiļa rekomendacejis ap latgaļu Vikipedejis rakstīņu pareizraksteibu. + +Latgolā tān lītoj 2 voi 3 pareizraksteibys. Vēļ da myuslaiku plaši lītoj Pītera Stroda pareizraksteibu, kai i jaunū (Leikumys i Cibuļa pasūleitū) pareizraksteibu. Var īskaiteit Bazneicys lītuotū latgaļu volūdu par trešū pareizraksteibu - jei leidzeiguoka P.Stroda ortografejai, bet kod nakod jamā saksteigai/koņsekventai lītoj cytys golyunis, cytys vuordu formys. Pīvadumam, ''dabasi'' latgaļu volūdā (i Stroda, i jaunajā pareizraksteibā) ir veirīšu kuortys vuords, a pazeistamuo lyugšona Bazneicys oficialajūs tekstūs suocās ''Tāvs myusu, kas esi debesīs...''. Goduos taipoš, ka autori, kurim latgaļu volūda dzymtuo, rauga sova nūvoda vītrunu aizraksteit ar baļtīšu literim. Pylna dazynuošona ap pareizraksteibys viesturi byutu cyta rakstīņa tema. Ite var skaiteit ap tim pareizraksteibys principim, kurus varātu lītuot Vikipedejis autori. + +== Kaidu Pareizraksteibu lītuot latgaļu Vikipedejā == +Izaver, ka jaunūs autoru i skaiteituoju atspaids irā jaunuos pareizraksteibys pusē. Jaunuo pareizraksteiba nav vēļ oficialai pīzeita i dorbs vēļ na golā, bet jau irā lobi resursi, kur tū pareizraksteibu var vuiceitīs. Jei izaškir nu Pītera Stroda pasūleituos pareizraksteibys caur divskani "uo" agruokuo apzeimīņa "ō" vītā (pīvadumam, "muote" na "mōte"). Taipoš cieški vajag raksteit "ie" nazkodejuo "ē" vītā (pīvadumam, "viesture" na "vēsture") - tok goduos i tai, ka "ē" irā i pa vacajai, i pa jaunajai pareizraksteibai. Izaškir taipoš divskaņu "iu" i "yu" lītuošona. + +== Kaidi reiki pareizraksteibai lobuot == +Leidz šam latgaļu speļčekera (aba ''pareizraksteibys puorsavārtiva'') mums navā. Taidu vēļ napasūla ni Tiļde iz Windows, ni Māra Laurecka Linuksa (''Mandrive Linux'') distribuceja. Vysulobuokais, kū varim dareit - vuiceitīs latgaļu pareizraksteibu nu gruomotu. Cīši nūdareigys irā L.Leikumys gruomotys ("Lementars" i "Vasals") - verīs nūruožu. + +== Kai raksteit cytu volūdu sovumvuordus? == +Latgaļu volūdā cytu volūdu vuordi puorrokstomi pa izrunai. Pīvadumam, pazeistamī skrīnmašiņu konstruktori irā bruoli ''Vilburs Raits'' i ''Orviļs Raits''. Datora lītuotuojam taida raksteiba paleidz vuordus latgaliski izrunuot, bet napaleidz atrast originalu. Partū byutu īsokoms vysur raksteit īskovuos nūruodis originalraksteibā (a volūdom, kurys nalītoj latiņu voi kirilicys literu - i latiņu transkripcejā). Vikipedejis autori var raksteit tai: ''Pyrmūs vodomūs skrīnmašiņu projektus sagatavēja bruoli Raiti - Vilburs i Orviļs ([[:en:Wright_brothers|Wright brothers]]).'' A voi ''Japanejā poša augstuo kolna sauc Fudzi ([[:en:Fuji|Fuji]], 富士山 - '''fuji san''')''. + +Cyta vareiba byutu raksteit kai suomu volūdā voi vaidu godūs baļtiski - atdolūt svešū sovumvuordu nu latgaliskuos golyunis ar kurū naviņ simbolu (kolu ci apostrofu). Pīvadumam, '''Krišjāņa Valdemara ūļneicys nūsaukums 2 pasauļa vaidu laikā beja '''Hermann'a Göring'a ūļneica''''' (vuocīšu vuordi dūti originalraksteibā, bet aiz apostrofa dalyktys latgaļu golyunis). Ci ''HTML:a markiešonys tagus navā gryuši izvuiceit'' (eisynuojumam ''HTML'' latgaļu golyuni dalīk piec kola). + +== Nūruodis == +* [http://dau.lv/ld/9-21.html] - Eiss roksts par pareizraksteibu - A.Breidaks, L.Leikuma i cyti. +* [http://www.lu.lv/filol/dialekt/index.htm] - Var šursyuteit J.Cybuļa i L.Leikumys "Lementaru" i "Gruomotu školuotuojim" (zam nūruodis ''Publikācijas'') +* [http://www.genling.nw.ru/baltist/Publicat/LatgVol1.htm] - Var šursyuteit L.Leikumys sastateituos gramatikys 1 dali. (Pylna gramatika ir gruomotā "Vasals"). +* [http://latgola.lv/meiti/vasals/meits.cgi?read=2363] - I.Sperga par vacū i jaunū pareizraksteibu +* [http://latgola.lv/meiti/vasals/meits.cgi?read=3222] - Cyts tūs pošu puordūmu variants: kai raksteit ''Coca Cola'' i ''Peugeot'' +* [http://www.vvk.lv/index.php?sadala=208&id=677] - latgaļu pareizraksteibys komiseja +* [http://dau.lv/ld/9-20.html] - S.Seiļa pareizraksteibys projekts (viesturisks materials) + +[[Category:Vikipedejis lītuošona]] + 6ghdaflfonrgxsotri7r08mpctkrk6z + + + + Vikipedeja:Administraceja + 4 + 527 + + 14590 + 11929 + 2011-06-01T11:56:06Z + + Roalds + 50 + + /* Vikipedejis lītuotuoji */ +Kikos + wikitext + text/x-wiki + <center> +{|style="background: #FFFFFF; border: solid 1px #FE9B00" +|- +| +<center><big>'''Vadynuojam atīt par paleigu:'''</big></center> +* škārsteikla lītuotuojus ar lobu tehniskū guoduošonu +* škārsteikla lītuotuojus ar lobom latgaļu rokstu volūdys zynuošonom ci gribiejumu īsavuiceit +* škārsteikla lītuotuojus, kas tur ci var sagatavēt daudzi fotografeju (ap Latgolu i juos vītom) +* sevkuru, kurs gryb aktivai pīsadaleit latgaļu vikipedejis dorbā i tuoļuokraisteibā +| +|} +</center> + +== Vikipedejis administraceja i lītuotuoji == +==== Vikipedejis lītuotuoji ==== +''Ka esi aktivs Latgaļu vikipedejis dalinīks, darokst sovu lītuotuoja vuordu!'' +* [[User:Dark Eagle|Dark Eagle]] +* [[User:Gleb Borisov|Gleb Borisov]] +* [[User:Helloanddie|Helloanddie]] +* [[User:Kalvis|Kalvis]] +* [[User:Kikos|Kikos]] +* [[User:Roalds|Roalds]] + +==== Vikipedejis roboti ==== +* [[User:DEagleBot|DEagleBot]] + +{{DEFAULTSORT:Administraceja i lītuotuoji}} + +[[Category:Vikipedeja|!]] + 5bgt2aph0qnpu23o1hwd1mc4ybds4om + + + + Vikipedeja:Rakstīņa papiļdeišona + 4 + 529 + + 31850 + 31849 + 2017-01-06T10:31:04Z + + Tulsi Bhagat + 3231 + + + Atcēlu [[Special:Contributions/2131szm|2131szm]] ([[User talk:2131szm|Diskusija]]) izdarīto izmaiņu 31849 + wikitext + text/x-wiki + == Kas eistyn irā Vikipedeja == +[[Vikipedeja|Vikipedeja]] irā [[Eņciklopedeja|eņciklopedeja]], kuru kūpadareidami taisa juos skaiteituoji. Lels skaits ļaužu itamā šaļtī dora pi Vikipedejis, taiseidami tyukstūšys papiļdejumu kas stuņdis. Puormejumi pīsalosa "rakstīņa pataisejumu viesturē" (''[[:en:Wikipedia:Page_history|article history]]''). Izagoda i nadareigys puormejis, tūlaik pyrmuokais teksts mudri grīžās atpakaļ. Zynoms, anglīšvolūdeigajā Vikipedejā lītuotuoju i redaktoru irā vysudaudzuok, a rakstīņu - vaira kai 960 tyukstūšu. + +Vikipedejis versejis raistuos i cytuos volūduos. Pīvadumam, igauņu Vikipedejā jau 14 tyukstūšu rakstīņu, ite daudzi deļ taidys napalelys volūdys, i informacejis daudzums leidzeigs lelai drukavuotai eņciklopedejai kai bīzai gruomotai. + +== Kai es varu paleidzēt? == +'''Nasabeistit papiļdeit rakstīņu!''' — ''sevkurs'' lītuotuojs var redigēt tekstu, i vadynojam Jiusus byut drūsim i tymā pošā laikā nabyut [[Vikipedeja:Vandaļu gors|vandalim]]. Kod atsarūn nazkurs teksts, kuru varit papiļdeit (turīni, gramatiku voi tik uorejū izavierīni) ejit i redigējit. Nikas navar iznycynuot Vikipedejis. Vysu var izgluobt i piečuok atjaunynuot. Caur sovu redigiešonu Jius varit paleidzēt Vikipedejai byut par pošlobuokū dazynuošonys resursu Puorstaipteiklā i raksteit latgaliski ap vysom svareigom lītom i vysom zineibys atzarem. + +=== Wiki markiešona === +Irā speciala volūda rakstīnim taiseit i redigēt; jei leidzeiga HTML, a pīroksta forma jai cyta. Ekzistej nazcik Wiki markiešonys "dialektu", a ite runojam ap tū, kurs lītojams pošā Vikipedejā. Ka Jums gribīs daudzi redigēt, lyudzami puorskaitit itū informaceju: +* [[Vikipedeja:Kai papiļdeit rakstīni|Kai papiļdeit rakstīni]] + +== Jiusu pyrmais papiļdejums == +# Ejit iz [[Vikipedeja:Smiļkšu skreine|smiļkšu skreini]] +# Damīdzit iz nūruodis '''Edit''', pīraksteitys zylim literim lopys viersā +# Papiļdit puslopu (lyudzami narokstit nikuo naloba!) +# Damīdzit iz '''Save page''' voi '''Show preview''' + +== Resursi == +* [[:en:Wikipedia:How to edit a page|Kai papiļdeit Vikipedejis puslopu (apruodejumi anglīšu volūdā)]] + +[[Category:Vikipedejis lītuošona]] + +[[af:Wikipedia:Redigeringsinstruksies]] +[[als:Hilfe:Seite bearbeiten]] +[[am:እርዳታ:የማዘጋጀት እርዳታ]] +[[ang:Wikipedia:How to edit a page]] +[[ar:مساعدة:تحرير]] +[[az:Vikipediya:Məqalələrin redaktə qaydaları]] +[[be-x-old:Вікіпэдыя:Як рэдагаваць існуючы артыкул]] +[[bg:Уикипедия:Редактиране на страници]] +[[bn:উইকিপিডিয়া:কীভাবে একটি পৃষ্ঠা সম্পাদনা করবেন]] +[[br:Skoazell:Penaos kemmañ ur bajenn]] +[[bs:Wikipedia:Kako izmijeniti stranicu]] +[[ca:Ajuda:Com es modifica una pàgina]] +[[cs:Nápověda:Jak editovat stránku]] +[[cv:Broken/Статьясене тӳрлетесси çинчен]] +[[cy:Wicipedia:Sut i olygu tudalen]] +[[de:Hilfe:Seite bearbeiten]] +[[dv:ވިކިޕީޑިޔާ: ޞަފްހާ އަކަށް ނުވަތަ ލިޔެވިފައިވާ މަޒްމޫނަކަށް ބަދަލު ގެނައުމަށް އެހީ އެއް]] +[[el:Βοήθεια:Πώς να επεξεργαστείτε μια σελίδα]] +[[en:Wikipedia:How to edit a page]] +[[eo:Helpo:Kiel redakti paĝon]] +[[es:Ayuda:Cómo se edita una página]] +[[eu:Laguntza:Artikuluak nola aldatzen diren]] +[[fi:Ohje:Kuinka sivuja muokataan]] +[[fr:Aide:Comment modifier une page]] +[[ga:Vicipéid:Conas alt a chur in eagar]] +[[gl:Wikipedia:Como editar unha páxina]] +[[gv:Wikipedia:Kanys duillag dy reaghey]] +[[he:עזרה:עריכת דף]] +[[hr:Wikipedija:Kako uređivati stranicu]] +[[hu:Wikipédia:Szerkesztés]] +[[ia:Wikipedia:Como formatar texto]] +[[id:Wikipedia:Menyunting sebuah halaman]] +[[it:Aiuto:Modifica]] +[[ja:Help:ページの編集]] +[[la:Vicipaedia:De recensendo]] +[[lb:Hëllef/Textgestaltung]] +[[lt:Pagalba:Kaip redaguoti puslapį]] +[[mn:Тусламж:Арай өндөр төвшинд текст засварлах талаар]] +[[ms:Wikipedia:Menyunting]] +[[nl:Help:Uitleg]] +[[nn:Hjelp:Endra ei side]] +[[no:Hjelp:Hvordan man redigerer en side]] +[[ny:Wikipedia:Chithandizo cha Kulemba pa Wikipedia]] +[[pl:Pomoc:Formatowanie tekstu]] +[[pt:Ajuda:Guia de edição/Formatação]] +[[ro:Ajutor:Cum modific o pagină]] +[[simple:Help:How to change pages]] +[[sk:Pomoc:Prehľad editácie stránok]] +[[sl:Wikipedija:Urejanje strani]] +[[sr:Помоћ:Уређивање]] +[[su:Wikipedia:Cara ngédit kaca]] +[[sv:Wikipedia:Redigering]] +[[th:วิธีใช้:การแก้ไขหน้า]] +[[tr:Yardım:Sayfa nasıl yazılır]] +[[uk:Вікіпедія:Як редагувати статтю]] +[[ur:صفحہ کس طرح ترمیم کریں]] +[[vi:Wikipedia:Sửa đổi]] +[[yi:װיקיפּעדיע:וויאזוי צו רעדאקטירן א בלאט]] +[[yo:Ìrànwọ́:Báwo lẹṣe le ṣe àtúnṣe ojúewé]] +[[zh:Help:编辑页面]] +[[zh-min-nan:Help:Pian-chi̍p]] +[[zh-yue:Wikipedia:點改嘢]] + kmo7ep1qbg52ykzgrwytjdflod3lj0s + + + + Vikipedeja:Smiļkšu skreine + 4 + 530 + + 21166 + 8501 + 2012-02-22T14:35:58Z + + Iketsi + 288 + + + -[[Category:Wp/ltg]] + wikitext + text/x-wiki + Ite testa puslopa + +Kvadrattrinoma <math>ax^2+bx+c</math> saknis irā:<br /> +<math>x_{1,2}=\frac{-b \pm \sqrt{b^2-4ac}}{2a}</math> + +tai. niu i es izraudzeju itū [[Vikipedeja|Vikipedejis]] sistemu. pa druskai varātu jū vaira '''latgaliskuot'''! :) --[[User:jureits|jureits]] 15:24, 1 April 2007 (UTC) + ma12j0u6rgg5pxuj6fj1aq446v695ic + + + + Vikipedeja:Stiļa rūkysgruomota + 4 + 534 + + 30818 + 29990 + 2015-08-08T12:12:05Z + + YiFeiBot + 2627 + + + Bot: Migrating 6 langlinks, now provided by [[d:|Wikidata]] on [[d:q4994848]] + wikitext + text/x-wiki + <!--Itū dokumentu vajadzātu puortaiseit vīn tod, ja ir rimta vajadzeiba. Jo asat jauns autors i na cīši drūšs, tod lobuok nu suoku puorsprīst sovys dūmys "diskusejā". Rūkysgruomota ir vīnkuorša - vysaidus smolkumus (pīmāram, kai formatizēt tabeles) lobuok roksteit cytūs rokstūs, iz kurim it likt saitis --> +Ka sevkotrys turātumemēs pi '''Stiļa rūkysgruomotys''', [[Vikipedeja|Vikipedeju]] byutu vīgļuok lītuot i autorim, i skaiteituojim. Bet pazeistamajā gruomotā ''[[:en:The Chicago Manual of Style|The Chicago Manual of Style]]'' saceits tai: +<blockquote>''Itī lykumi dūmuoti vydsmāra gadīnim i jūs vajag lītuot elasteigai.''</blockquote> + +Skaidra, vyspuseiga dazynuošona irā svareiguoka nakai teksta grafiskais atvaiguojums i formats. Vikipedeja kategoriskai naaizprosa autorim turētīs pi itūs apruodejumu, tok jī paleidzēs cytim lobuok saprast jiusu dorbu. Vikipedejis priņcips ''prīca byut autoram'' ir svareiguoks na kuru nakuru ļaužu gribiejums, kab vysi rakstīni jau nu pošu īsuoku byutu piļneigi. + +== Streidi ap stili == +2005 godы juņa mien. [[:en:Wikipedia:Arbitration Committee|Arbitražys komitets]] sasprīde, ka vysur, kur obadiveji varianti lobi, autorim navajag raudzeit puortaiseit vysu pa sovam. Bet irā tīseiba aizpraseit, kab vīnā rakstīnī byutu lītuots saksteigs stiļs. + +== Rakstīņu Pasaukys == +Pasauka aba rakstīņa viersroksts var byut vuords ci eisa fraze, kura vysucieškuok pasaruoda jau pyrmajā rakstīņa sacīnī - vyslobuok kai sacīņa gramatiskais prīškmats. Pīvadumam, rakstīnī ap ''Rēzni'' lobuok suokt itai: ''Rēzne - mīsts Latgolā...'', a na kai naviņ nataisnai: ''Ite raksteisim ap Rēzni - Latgolys mīstu. Napīdareigai nu vysu cytu apstuokļu, pasauku vajag raksteit jau pošā pyrmajā sacīnī. + +Pyrmū reizi rokstit tekstā pasauku tuklim literim (lītuodami 3 apostrofus), saceisim, <code><nowiki>'''rakstīņa pasauka'''</nowiki></code>. +"'''Rēzne''' - lels mīsts Latgolā...". + +Lobuok nalicit hipernūruožu: +* Kod pyrmū reizi tekstā rokstot pasauku (ar tuklajim literim) +* Nivīnā zamdalis pasaukā + +Kod nakod pasauku vajag raksteit (pīv., filmys, gruomotys i leidz. pasaukys) +na viņ tuklim literim, a i kursivā. Pīvadumam: +<blockquote> +Gruomota '''''Evangelia Toto Anno''''' beja nūdrukavuota 1753 godā. +</blockquote> + +[[Category:Vikipedejis lītuošona]] + +[[de:Wikipedia:Formatvorlagen]] +[[id:Wikipedia:Panduan tata-letak]] +[[mo:Википедия:Мануал де стил]] +[[nl:Wikipedia:Stijlgids]] + +[[pl:Wikipedia:Styl_-_poradnik_dla_autorów]] +[[sk:Wikipédia:Štylistická príručka]] + fxoq1irgp5kfkuejcnf99k9gcx2otam + + + + Vikipedeja:Vajadzeigī rakstīni + 4 + 537 + + 29142 + 28987 + 2013-03-11T10:44:51Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6545408]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Vajadzeiguos lopys i temys.''' + +{| cellspacing="0" cellpadding="0" style="clear: right; margin-bottom: .5em; float: right; padding: .5em 0 .8em 1.4em; background: none; width: auto;" +| __TOC__ +|} + +== 50 poši vajadzeigī rakstīni nu vysom Vikipedejom == +{| class="wikitable" +|style="background:#FFD700;"| &nbsp;&nbsp;&nbsp;&nbsp; +| Cytuos volūduos rakstīņs irā vierteigs ci lobs +|} +{| class="sortable wikitable" +! Vajadzeigs rakstīņs +! Anglīšu Vikipedejis rakstīņs +! "Škārsviki"<br />skaits +! Pādejuo reizi atjaunynuots<br />(data-mieness-gods) +|- +| [[Yterzens]] +| [[:en:Uetersen]] +| 224 +| 21-09-2011 +|- +| [[Ozasku]] +| [[:en:Osasco]] +| 212 +| 21-09-2011 +|- +| [[Kineja]] +| bgcolor=#FFD700 | [[:en:China]] +| 208 +| 21-09-2011 +|- +| [[Koņskovola]] +| [[:en:Końskowola]] +| 205 +| 21-09-2011 +|- +| [[Egipts]] +| bgcolor=#FFD700 | [[:en:Egypt]] +| 199 +| 21-09-2011 +|- +| [[Irans]] +| bgcolor=#FFD700 | [[:en:Iran]] +| 197 +| 21-09-2011 +|- +| [[Izraeļs]] +| bgcolor=#FFD700 | [[:en:Israel]] +| 193 +| 21-09-2011 +|- +| [[Pariža]] +| bgcolor=#FFD700 | [[:en:Paris]] +| 193 +| 21-09-2011 +|- +| [[Londons]] +| bgcolor=#FFD700 | [[:en:London]] +| 192 +| 21-09-2011 +|- +| [[Bibleja]] +| bgcolor=#FFD700 | [[:en:Bible]] +| 191 +| 21-09-2011 +|- +| [[Pakistans]] +| bgcolor=#FFD700 | [[:en:Pakistan]] +| 191 +| 21-09-2011 +|- +| [[Afganistans]] +| bgcolor=#FFD700 | [[:en:Afghanistan]] +| 190 +| 21-09-2011 +|- +| [[Alžirs]] +| [[:en:Algeria]] +| 190 +| 21-09-2011 +|- +| [[Indonezeja]] +| bgcolor=#FFD700 | [[:en:Indonesia]] +| 190 +| 21-09-2011 +|- +| [[Jezus]] +| bgcolor=#FFD700 | [[:en:Jesus]] +| 190 +| 21-09-2011 +|- +| [[Roma]] +| bgcolor=#FFD700 | [[:en:Rome]] +| 189 +| 21-09-2011 +|- +| [[2006 gods]] +| [[:en:2006]] +| 188 +| 21-09-2011 +|- +| [[Moskva]] +| bgcolor=#FFD700 | [[:en:Moscow]] +| 187 +| 21-09-2011 +|- +| [[Matematika]] +| bgcolor=#FFD700 | [[:en:Mathematics]] +| 186 +| 21-09-2011 +|- +| <small>navā puorvērsts latgaļu volūdā</small> +| [[:en:Dong Hoi]] +| 186 +| 21-09-2011 +|- +| [[Islams]] +| bgcolor=#FFD700 | [[:en:Islam]] +| 185 +| 21-09-2011 +|- +| [[Dīnavydu Koreja]] +| bgcolor=#FFD700 | [[:en:South Korea]] +| 184 +| 21-09-2011 +|- +| [[Geografeja]] +| bgcolor=#FFD700 | [[:en:Geography]] +| 184 +| 21-09-2011 +|- +| [[Konfucijs]] +| bgcolor=#FFD700 | [[:en:Confucius]] +| 184 +| 21-09-2011 +|- +| [[2007 gods]] +| [[:en:2007]] +| 183 +| 21-09-2011 +|- +| <small>navā puorvērsts latgaļu volūdā</small> +| [[:en:Corbin Bleu]] +| 183 +| 21-09-2011 +|- +| [[Tailands]] +| bgcolor=#FFD700 | [[:en:Thailand]] +| 180 +| 21-09-2011 +|- +| [[Mienesnīks]] +| bgcolor=#FFD700 | [[:en:Moon]] +| 180 +| 21-09-2011 +|- +| [[Fizika]] +| bgcolor=#FFD700 | [[:en:Physics]] +| 180 +| 21-09-2011 +|- +| [[Astronomeja]] +| bgcolor=#FFD700 | [[:en:Astronomy]] +| 179 +| 21-09-2011 +|- +| [[Etiopeja]] +| bgcolor=#FFD700 | [[:en:Ethiopia]] +| 179 +| 21-09-2011 +|- +| <small>navā puorvērsts latgaļu volūdā</small> +| bgcolor=#FFD700 | [[:en:Ho Chi Minh City]] +| 179 +| 21-09-2011 +|- +| [[Iraks]] +| bgcolor=#FFD700 | [[:en:Iraq]] +| 179 +| 21-09-2011 +|- +| [[Jaunzelandeja]] +| bgcolor=#FFD700 | [[:en:New Zealand]] +| 179 +| 21-09-2011 +|- +| [[Krīvu volūda]] +| [[:en:Russian language]] +| 179 +| 21-09-2011 +|- +| [[Suņs]] +| bgcolor=#FFD700 | [[:en:Dog]] +| 178 +| 21-09-2011 +|- +| <small>navā puorvērsts latgaļu volūdā</small> +| bgcolor=#FFD700 | [[:en:Isaac Newton]] +| 178 +| 21-09-2011 +|- +| [[Libeja]] +| bgcolor=#FFD700 | [[:en:Libya]] +| 178 +| 21-09-2011 +|- +| [[Sauda Arabeja]] +| bgcolor=#FFD700 | [[:en:Saudi Arabia]] +| 178 +| 21-09-2011 +|- +| [[Sudans]] +| [[:en:Sudan]] +| 178 +| 21-09-2011 +|- +| [[Bangladešs]] +| bgcolor=#FFD700 | [[:en:Bangladesh]] +| 177 +| 21-09-2011 +|- +| [[Kristīteiba]] +| bgcolor=#FFD700 | [[:en:Christianity]] +| 177 +| 21-09-2011 +|- +| [[Pūstumu Amerika]] +| [[:en:North America]] +| 177 +| 21-09-2011 +|- +| [[Biologeja]] +| bgcolor=#FFD700 | [[:en:Biology]] +| 176 +| 21-09-2011 +|- +| [[Gana]] +| bgcolor=#FFD700 | [[:en:Ghana]] +| 176 +| 21-09-2011 +|- +| [[Nepals]] +| bgcolor=#FFD700 | [[:en:Nepal]] +| 175 +| 21-09-2011 +|- +| [[Mongoleja]] +| bgcolor=#FFD700 | [[:en:Mongolia]] +| 173 +| 21-09-2011 +|- +| [[Sīreja]] +| bgcolor=#FFD700 | [[:en:Syria]] +| 173 +| 21-09-2011 +|} +<!-- <small>navā puorvērsts latgaļu volūdā</small> --> + +== Sasīti ar Latgolu == +=== Cylvāki === +;Verīs +* [[Vikipedeja:Vajadzeigī rakstīni/Zeimeigi ļauds|Latgolys viesturē i kulturā zeimeigi ļauds]] +* [[Vikipedeja:Vajadzeigī rakstīni/Latgolā dzymušī pazeistamī ļauds|Latgolā dzymušī pazeistamī ļauds]] + +=== Kultura === +==== Kulturys nūtikšonys ==== +* [[Muzykys skrytuļs]] + +==== Muoksla ==== +* [[Marks Rotko]] + +==== Filmys ==== +* [[Cylvāka bārns (filma)]] + +==== Dzīsmis ==== +* [[Pi Dīveņa gari goldi]] + +=== Vītys === +* [[Stropu estrada]] + +==== Rēzne ==== +* [[Atbreivuošonys aleja]] + +=== Viesture === +* [[Pierts]] + +=== Viesteitivi === +==== Zeimeiguokuos teiklavītys latgaliskai i ap Latgolu ==== +* [[lakuga.lv]] +* [[lgsc.lv]] + +==== Gazetys ==== +* [[Latgolys laiks]] + +==== Žurnali ==== +* [[Katōļu dzeive]] + +==== Radejis, Televizejis ==== +* [[Latgolys radeja]] + +==== Zeimeiguokī laidīni ==== +* [[Latgolys vuords nu Reigys]] + +=== Pasajāmumi === +* [[Preiļu sīrs]] + +=== Zineiba === +* [[Ilga Šuplinska]] + +==== Medicina ==== +* [[Fraņcs Brycs]] + +=== Cyti === +* [[Dzeļžaceļa lineja Krystapiļs — Sīnuoja]] + +{{DEFAULTSORT:{{PAGENAME}}}} + +[[Kategoreja:Vikipedeja]] + hw0b9j0iuklt2p9swiefcg0t4365j9s + + + + Vikipedeja:Vajadzeigū rakstīņu saroksts + 4 + 540 + + + 8619 + 8618 + 2011-03-19T13:36:03Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Vikipedeja:Vajadzeigī rakstīni]] + 6ew2la2tra2fgtomcxdjbv62jy1vcz4 + + + + Vikipedeja:Vandaļu gors + 4 + 543 + + 28387 + 28057 + 2013-03-07T20:07:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 72 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4664011]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Vandaļu gors''' aba '''vandalisms''' ir sevkaida satura dalikšona, iztreišona voi puortaiseišona, kab teišam samaituotu enciklopediju. Izplateiti vandalizma veidi ir asūšā teksta puorraksteišona ar lomu vuordim, lapu teksta dzēšona voi nazkaida nadereiga satura dalikšona da lopys. Kotrys [[Vikipedeja:Loba gryba|lobys grybys]] mieginuojums dareit enciklopediju lobuoku, pat ja naveiksmeigs, '''nav''' vandalisms. + +Vandalisma darbeibys ir pret Vikipedijas nūteikumim; vandalisma gadejumus vajag [[#Vandalizma atpazeišona|atpazeit]], i tod [[#Reagēšona iz vandalizmu|reagēt]] &ndash; ja tys ir nūpītns, ka navarit tū izdareit poši, varit meklēt administracejas īsajaukšonu (''[[:en:Wikipedia:Administrator intervention against vandalism|Administrator itervention]]''). IBM tiemietuoji 2002.godā saceja, ka leluokuo vandalisma dale angļu Vikipedijā [[Vikipedeja:Lopys atsagrīzšona|atsagrīž]] pyrmajuos pīcuos minutēs. Tū apstiprina i eksperimenti vēļuok, kad pietnīki teišom īroksteja muļkeibys (''[[:en:Wikipedia:Patent nonsense|patent nonsense]]''). + +Reizim ari cyts lobuojums var izaviert kai vandalisms. Napīcīšama ryupeiga dūmu gaita, kab zynuotu, ci jaunuo informaceja lopā var palikt, ci tys ir vandalisms. + +== Reagēšona iz vandalismu == +Ja radzoms vandalisms (zemļuok dūtajā nūzeimē), vajadzātu [[Vikipedeja:Lopys atsagrīzšona|atgrīzt]] atbiļsteigū lopu. Pī tom, īrokstit breidynuojuma šablonu vandaļa "sprīža" lopā, kai paruodeits tuoļuok. Jo vandaļs ir breidynuots, a naatlaideigi dora sovu, var lyugt administratora īsajaukšonu (''[[:en:Wikipedia:Administrator intervention against vandalism]]''). Admini var apspīst (en:''block'' ar nūteiktu proceduru (''[[:en:Wikipedia:blocking policy|blocking policy]]''). + +=== Breidynuojumu šabloni === +;<nowiki>{{subst:Test}}</nowiki> voi <nowiki>{{subst:test1}}</nowiki> : {{Test}} +;<nowiki>{{subst:Test2}}</nowiki> : {{Test2}} +;<nowiki>{{subst:Test3}}</nowiki> : {{Test3}} +;<nowiki>{{subst:Test4}}</nowiki> : {{Test4}} + +Admins var lītuot ari taidu šablonu: + +;<nowiki>{{subst:Test5}}</nowiki> : {{Test5}} + +Atguoduojit paraksteit ar datumu vysus breidynuojumus. Tū var izdareit, jo pīroksta dokumenta golā 4 tiļdis (tai: <nowiki>~~~~</nowiki>). + +== Vandalisma veidi == +Itī ir Vikipedijā izaplatejušī vandalisma veidi: + +;Spamers aba māstuļnīks: Davīnuot rokstam saturu voi uorējus linkus, kab reklamētu seve. +;Vandaļu robots: Kaida [[:en:Wikipedia:Bots|datorprogama]], kas ceņšās puortaiseit lelu skaitu rokstu ar spamu, lopu satura iztreišonu, i.t.t. +;Bierniškeigs vandalisms: Vysaidu mulkeibu, personisku uzbrukumu voi jūku īroksteišana nūpītnūs rokstu vītā. Ari najaušūs simbolu (pīmāram, "aslkdjnsdagkljhasdlkh") davīnuošona. Iņteresnus jūkus, ja kaidam gribīs, var raksteit projektā [http://uncyclopedia.org Uncyclopedia]. +;Slapnais vandalisms: Gryuši saskatomu ortografejis klaidu, napareizu datumu, i.t.t. īroksteišona Vikipedijys dokumentūs. +;Biļdeišu vandalizms: Provokativu biļdeišu šursyuteišana iz serveri i davīnuošona rokstim. Ari biļdeitis bez olūta voi licenzis nūruodis nav dereigys Vikipedijai - ja itīpeigi tū dora, ari skaituos vandalisms. +;Lopu adresu maineišona: Napareiza Vikipedijys dokumenta URL vītruoda izavieliešona; napareizs voi apvainojūšs roksta nūsaukums. +;Linku vandalisms: Linku URL vītruodu izavieliešona bibliografejā. Linka teksts var byut vacais, a links ruoda iz citu vītu. +;Diskusiju komentu puortaiseišona: Diskuseju lopās nadreikst maineit cytu lītuotuoju tekstus. +;Lopu pašmierkeiga atsagrīšona: Lopu atsagrīšona atpakaļ, ja napīkreitat cyta roksteituoja dūmom, nameklejūt kaidu naviņ kompromisu. + +== Kas nav vandalisms == +Ir nazcik cytu situaciju, kurys var traucēt, a iz tom vajadzātu reagēt sovaižuok nakai iz vandalismu. + +;Jauns lītuotuojs: Nazkas, kurs gryb izmieginuot, voi patīšom ir vareiba redigēt sevkuru lopu. Ar taidim lītuotuojim vajadzātu laipni sasavasaluot i paruodeit, ka var īt iz [[Smiļkšu bedre|smiļkšu bedri]], kab tur taiseitu eksperimentus (apsaverit pyrmū breidynuojuma šablonu). +;Neitrala redzīņa naīvāruošona: Neitralums, kurs vajadzeigs Vikipedijys rokstūs ir gryuši sasnīdzams. Reizim ir žāļ, ja cylvāki tū naīvāroj, a tys nav vandalisms. +;Drūsmeigi puortaiseitys lopys: Vikipedijys rokstnīki bīži taisa lelas puormainis rokstūs, kab tūs puortaiseitu - iztrin lelus teksta gobolus i roksta sovu. Ja iztreitī goboli ir puorcalti iz "Sprīža" sadali, i dūts īmeslis lobuojumim, tod tys nav vandalizms. Prūtams, goduos, ka ir napateikami, ka Jyusu saraksteitū tekstu kaids izmess, a tod ir vītā diskuseja. +;Klaidys: Reizim lobys grybys cylvāki taisa faktu klaidys, a paši tū nasaprūt. Ari tad vajadzeiga diskuseja. +;Ītīpeiba: Nazcik lītuotuoju var naīvāruot cytu dūmys i vysu laiku lobuot pa sovam i nikni streideitīs diskusejās. Ari taidūs gadijumūs var īt administratora paleidzeibu maklātu, a vandalisms tas nav. Sprosta, na vysi prūt lobi sasadarbuot ar cytim. +;Personeigi uzbrukumi: Cytus apvainūt nav breiv. Daži gadejumi (cyta lītuotuoja lopys puortaiseišona ar personiskim uzbrukumim, pīmāram) ir vandalisms, a vysā tei ir vīnkuorši nasadereiga uzvedeiba, ar kū var mieginuot ceineitīs cytaiž nakai ar vandalismu. + +[[bxr:Wikipedia:Vandalism]] + h7b0lsbw49ejus5hfdf5kpp6zqpcrqb + + + + Vikipedeja:Vikipedejis termini + 4 + 546 + + 21153 + 8816 + 2012-02-22T14:22:52Z + + Iketsi + 288 + + + -[[Category:Wp/ltg]] + wikitext + text/x-wiki + Anglīšu-latgaļu Vikipedejis terminu vuordineica. Vuordineicā vuordi, kas cieški vajadzeigi dorbam Vikipedejā i datorā vysā. + +Piļneiguoku latvīšu-latgaļu vuordineicu var aptikt ite - [http://latgola.lv/voluda/vuordineicys/cyullatg.shtml]; ci ite pat — [[Datorzineibys termini|Datorzineibys terminu vuordineicā]]. + +{| id="toc" class="Puslopu ruodeklis" +! Puslopu ruodeklis +|- +| align="center" | +&nbsp;&nbsp;&nbsp;[[#A|A]] [[#B|B]] [[#C|C]] [[#D|D]] [[#E|E]] [[#F|F]] [[#G|G]] [[#H|H]] [[#I|I]] [[#J|J]] [[#K|K]] [[#L|L]] [[#M|M]] [[#N|N]] [[#O|O]] [[#P|P]] [[#Q|Q]] [[#R|R]] [[#S|S]] [[#T|T]] [[#U|U]] [[#V|V]] [[#W|W]] [[#X|X]] [[#Y|Y]] [[#Z|Z]]&nbsp;&nbsp;&nbsp;__NOTOC__ +|} + +== A == +;About: Ap (''rakstīņs ap Latgolu'') +;Access: Dative; Dativiešona; Datikšona +;Account: Slāgvuords +;Administrator: Administrators; Administraceja +;Article: Rakstīņs (''vikipedejis rakstīņs'') +;Atom: Atoms + +== B == +;Blanking: Iztreišona (''apvuoča turīnis iztreišona'') +;Bold: Pamalnais roksts +;Broken redirect: Puoradresiešona, puoradresiejums iz naasūšu puslopu; Puortraukta puorceļšona +;Browse: Puorsaviert +;Browser: Škūrsteitivs (''škārsteikla škūrsteitivs'') +;Browser cache: Škūrsteitiva laiceigais atguods +;Bug reports: Klaidu viestejumi; Klaidu paviestejumi +;Bureaucrat: Birokrats + +== C == +;Cache: Kulda; Kuldys atguods; Laiceigais atguods +;Cached: Izglobuots; Izglobuots nu laiceiguo atguoda; Izglobuots kuldā +;Category: Kategoreja; Padaļa +;Check: Aizraksteit; Darunuot +;Community Portal: Kūpeibys dūmu meits; Dūmu meits +;Content page: Turīņa puslopa; Puslopu ruodeklis +;Contributions: Devīņs; Īlicīņs +;Cookies: Glabiņs (''tys, kurs irā nūglobuots i kimā globojās informaceja'') +;Copyrights: Autortīseibys +;Current events: Aktualumi + +== D == +;Date: Data +;Dead-end pages: Stymbyni; Stymbynuos puslopys (''puslopys, kurys natur izīmūšu saitu''); Bezsaitu puslopys +;Del: Iztreit +;Desc: Aprakstejums +;Developer: Darynuotuojs; Dizainers +;Diff: Puormeja (''puslopys puormeja'') +;Disable: Nūlīgt; Atsaukt +;Disambiguation: Daudzizeimeiguma likvidaceja; Skaidriejums +;Discussion: Diskuseja; Dūmu meits (''diskuseju forums škārsteiklā'') +;Donations: Pazīduojumi; Pazīdi + +== E == +;Edit: Pataiseit; Puormeit (''pataiseit puslopu'') +;Edit box: Pataisis lūgs +;Enable: Dalaist +;Expiry: Goladīna (''izpiļdeišonys goladīna'') +;Export: Eksportēt; Aizvest; Īvast +;External link: Uorejuos saitys; Verīs taipoš (''rakstīņa beiguos, rakstīņa pabeiguos'') + +== F == +;FAQ (''Frequently asked questions''): CAV (''Cieški Aizdūtī Vaicuojumi'') +;Form: Forma; Taiss; Blanks + +== H == +;Headline: Padaļa +;Help: Paleigs +;History: Viesture +;Hyperlink: Nūruode; Saita + +== I == +;Image: Atvaigs (‘’Likt rakstīņa vydā atvaigu’’) +;Install: Instalēt +;Interface: Sadurs; Iņterfeiss; (command-line interface - komandailis sadurs; graphical interface - grafiskais sadurs, convenient interface - parūčs sadurs; to localize an application program into Latgalian - puorceļt aplikacejis saduru latgaliskai'') +;Internal link: Vydyskuo saita +;Internet: Škārsteiklys +;Italic: Sleipais roksts; Kursivs + +== L == +;Last: Pādejais; Pyrmejais +;Loading: Syuteišona; Nūteik īsyuteišona / atsasyuteišona +;Login: Slāgvuords +;Log in/Log out: Dasaslāgt / Atsaslāgt + +== M == +;Main Page: Suoku puslopa +;Maintenance: Davēre; Apkolpa (''teiklavītys apkolpa'') +;Merge: Saškiert; Īvest; Īlikt +;Message: Viests; Paviestejums +;Minor edit: Nazeimeigi papiļdejumi; Nazeimeiga puormeja +;Modify: Puormeit +;Multimedia fails: Daudziviesteitivu faili + +== N == +;Namespace: Paleigpuslopa +;Notes: Darunys + +== O == +;Offer: Pasūleit +;Online: Daslēdze (''daslēdzis režīms; Dareit daslēdzē'') +;Orphan pages: Beznūruožu puslopys +;Out-of-date revision: Saveciejuse verseja + +== P == +;Page: Puslopa +;Password: Paroļs +;Piped link: Puormeita saita +;Preference; Preferences: Pyrmuo rūka; Īstatejumi +;Preview: Apsvavērt; Apsavierīņs +;Printable version: Drukavuojamuo verseja +;Protected: Sorguots +;Proxy: Pylnvareiba + +== Q == +;Quickbar: Reikjūsta + +== R == +;Random page: Navuoša puslopa +;Read-only: Skaiteišonys režims +;Recent changes: Nasenejuo puormeja +;Redirect: Puoradresiešona; Puoradresiejums +;References: Nūruodis +;Related changes: Sasītuo puormeja +;Remove: Iztreit +;Rename: Puorsaukt +;Revert: Atgrīzt; Grīzt atpakaļ (''piec vandaļu nadorbu daguoja grīzt atpakaļ desmitem rakstīņu'') +;Revision: Verseja; Puorvēre +;RSS: RSS + +== S == +;Search: Meklēt; Maklātivs +;Self link: Pošsaita (''atsagrīžamuo saita'') +;Skin: Tema; Stiļs +;Source: Olūts; Suoku teksts +;Source code: Suoku kods +;SQL query: SQL aizprasejums +;Statistics: Statistika (''Vikipedejis rakstīņu statistika, statistikys tabele'') +;Stub: Īsuokys; Aizrakstīņs (''aizsuokts rakstīņs, tok nadabeigts'') +;Subcategory: Zamkategoreja +;Subpage: Zampuslopa +;Summary: Konspekts +;Sysop, System operator: Sistemys operators +;System message: Sistemys viests + +== T == +;Tag: Byrka +;Talk: Sprīža; Diskuseja; Dūmu meits +;Template: Taiss +;Toolbar: Reikjūsta +;Topic: Tema +;Typo: Klaida; Pareizraksteibys klaida + +== U == +;Uncheck: Atsaukt +;Undelete: Atjaunynuot; Atsaukt iztreišonu +;Unprotect: Atsaukt sorguošonu; Nasorguot +;Upload file: Īsyuteit failu +;User: Lītuotuojs; Slāgvuords + +== V == +;Vandalise: Vandalizēt; Maituot; Vandalēt +;Vandalism: Vandalizmys + +== W == +;Watchlist: Davēris saroksts; +;Wiki: Viki +;Wikibooks: Vikigruomotys - Gruomotys i pavuicīni +;Wikimedia Commons: Vikiteka - Viesteitivu kūplasejums +;Meta-Wiki: Metaviki - Vikimedijis projektu sadarynuošona +;Wikinews: Vikiviests - Aktualumi i pošjaunuos viests +;Wikiquote: Vikicitatys - Aforizmi i seņtencejis +;Wikipedia: Wikipedeja - Breivuo eņciklopedeja +;Wikispecies: Vikiškirys - Škiru katalogs +;Wikisource: Vikiolūti - Vysaidi breivai dabojami teksti +;Wikiversity: Vikiškola - Vuiceibu materiali +;Wiktionary: Vikivuordineica - Breivuo vuordineica +;World Wide Web: Puorstaipteiklys (''WWW'') + +[[Category:Vikipedejis lītuošona]] + 11xus0e214j9t4422tsmsz3pcxcn0db + + + + Vikiteka + 0 + 549 + + 28388 + 26954 + 2013-03-07T20:07:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 114 interwiki links, now provided by [[d:|Wikidata]] on [[d:q565]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Commons-logo-en.svg|thumb|150px|Škārsvaļsteigais Vikitekys logotips]] +'''Vikiteka''' ({{Vol-en|Wikimedia Commons}}; taipoš ''Commons'' ci ''Wikicommons'') irā breivai dabojamu atvaigu, skonu failu i cytu failu kūplasejums. Tys irā [[Vikiviesteitivu Fonds|Vikiviesteitivu Fonda]] projekts, kimā sevkurs var nūsasyuteit failus i itī faili irā izlītuojami vysūs [[Vikiviesteitivu Fonds|Vikiviesteitivu Fonda]] projektūs vysuos volūduos. +Vysuvaira Wikimedia Commons failus izlītoj "Vikipedejā" - breivajā eņciklopedejā. + +== Nūruodis == +* [[:commons:Sākumlapa|''Wikimedia Commons'' suoku puslopa latvyskai]] + +{{DEFAULTSORT:Vikiteka}} + +[[Kategoreja:Vikipedeja]] + h8kaow7pz9h678inxyvpn7o8ie1ghnr + + + + Vileks + 0 + 552 + + 31485 + 28389 + 2016-07-24T11:30:47Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Vileks +| atvaiga_pasauka = Vilaka no Semenovas.JPG +| atvaiga_aprakstejums = Vileks nu Semanovys ceļa. +| gerba_atvaigs = Vilaka gerb.png +| gerba_pasauka = Vileks gerbs +| karūga_atvaigs = Flag of Viļaka.png +| karūga_pasauka = Vileks karūgs +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 57 | latm = 11 | lats = 03 | latNS = N +| longd = 27 | longm = 40 | longs = 21 | longEW = E +| nūvods = Vileks nūvods +| pluots = 6,4 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 1 407 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 219,8 +| viesturiskuos_pasaukys = {{Vol-de|Marienhausen}} +| cytys_pasaukys = {{Vol-lv|Viļaka}} +| īstateits = +| mīsta_tīseibys = 1945 +| posta_iņdekss = LV-4583 +| teiklavīta = www.vilaka.lv +}} +'''Vileks''' irā mozinkys mīsts pūstumu [[Latgola|Latgolā]], Vileks nūvoda centrys. Mīsta tīseibys nu 1945 goda. +1293 godā, kab davastu ļauds katuoļu ticeibai i aizsorguotu zemi nu Novgorodys viersumguojumim, Vileks azarā iz azarsolys īstateja kleštoru Marienhausen. + +== Teiklavītys == +* [http://jonins.mii.lu.lv/L_pils01/Vilaka/default.htm Vileks atvaigūs] +* [http://www.tournet.lv/page.php?id=136 Tournet.lv informaceja ap Vileki] + +{{nadabeigts rakstīņs}} + +{{Vileks nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Vileks| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + 0kpw7x7fhbwfbcafykux8tng5stw5by + + + + Vileks nūvods + 0 + 553 + + 28390 + 19933 + 2013-03-07T20:08:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1869075]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vileks nūvods +| zemislopa = Viļakas novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Viļakas novads COA.png +| gerba_pasauka = Vileks nūvoda gerbs +| gerba_plotums = 80px +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Vileks +| pluots = 639,7 +| dzeivuotuoju_skaits = 6 545 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 10,23 +| īstateits = 2009 +| teritoriskais_dalejums = [[Kuprovys pogosts]] <br /> [[Medņovys pogosts]] <br /> [[Susāju pogosts]] <br /> [[Škilbānu pogosts]] <br /> [[Vacumu pogosts]] <br /> [[Vileks]] <br /> [[Žeiguru pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = +}} + +'''Vileks nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], kas sasadora nu [[Vileks]] mīsta i 6 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Vileks nūvods| ]] + 9utw5mbbdpqze2sjkntj0nwxoxn15ji + + + + Viļs Dziervinīks + 0 + 554 + + 29811 + 18637 + 2013-04-15T02:10:10Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Viļs Dziervinīks''' (1959) — latgaļu ailinīks, rakstejs latgaļu i latvīšu volūduos. + +Poezejis lasejumi latgaliskai: +* ''Laimeigu īsadūmuot'' (2001); +* ''Voi moz lidmašinu kreit'' (2003). + +{{DEFAULTSORT:Dziervinīks Viļs}} + + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 42s2rjstes4otrlb08wsp8r4txjl53m + + + + Viļāni + 0 + 555 + + 31486 + 28391 + 2016-07-24T12:36:43Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Viļāni +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| gerba_atvaigs = Vilani gerb.png +| gerba_pasauka = Viļānu gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 33 | lats = 09 | latNS = N +| longd = 26 | longm = 55 | longs = 29 | longEW = E +| nūvods = Viļānu nūvods +| pluots = 4,9 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 3 156 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 644,1 +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1928 +| posta_iņdekss = LV-4650 +| teiklavīta = www.vilani.lv +}} +'''Viļāni''' — mīsts Latgolys vydsdaļā pi Maltys upis, [[Viļānu nūvods|Viļānu nūvoda]] centris. Mīsts pasadarejs 18 i 19 godusymta mejā kai zeimeigs muižys manufakturu centrys. + +== Teiklavītys == +* [http://www.vilani.id.lv/ Viļānu mīsta portals] + +{{nadabeigts rakstīņs}} + +{{Viļānu nūvods}} +{{Latvejis mīsti}} + +[[Kategoreja:Viļāni| ]] +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Mīsti Latgolā]] + bajllq4kndl6qcskxcjrkgy1x2tikhb + + + + Viļānu nūvods + 0 + 556 + + 28392 + 19877 + 2013-03-07T20:08:51Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2018681]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Viļānu nūvods +| zemislopa = Viļānu novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Viļānu nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Viļāni +| pluots = 284,9 +| dzeivuotuoju_skaits = 7 243 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 25,4 +| īstateits = 2009 +| teritoriskais_dalejums = [[Dekšuoru pogosts]] <br /> [[Sokolku pogosts]] <br /> [[Viļāni]] <br /> [[Viļānu pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = +}} + +'''Viļānu nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], kas sasadora nu [[Viļāni|Viļānu]] mīsta i trejim pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Viļānu nūvods| ]] + ihu58en5ix1v4cx4c3zmh9cfl6inodj + + + + Voldemars Voguls + 0 + 557 + + 11768 + 10772 + 2011-03-24T21:55:12Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Voldemars Voguls''' (1952) — latgaļu pūdars, ailinīks. + +Poezejis lasejumi: +* ''Iz zvaigžņu tylta'' (1998); +* ''Mes vīnā laikā'' (2002). + +Ailis publicātys i periodikā. + +{{DEFAULTSORT:Voguls Voldemars}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 15eiyw3uxnbl8txnzw40ifml2h16ajo + + + + Volūdzineiba + 0 + 558 + + 29083 + 28393 + 2013-03-11T10:37:02Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8162]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Volūdzineiba''' aba '''lingvistika''' irā zineiba ap [[Cylvāks|cylvāka]] [[Volūda|volūdu]]. + +== Verīs taipoš == +* [[Roksts (raksteiba)|Roksts]] + +[[Kategoreja:Volūdzineiba| ]] + 4lroysqqrgjn5gm7fpqhz5kxwoj6dr1 + + + + Vuoceja + 0 + 559 + + 31961 + 31325 + 2017-04-26T01:03:26Z + + 2A00:23C4:C2FA:5400:132:F168:F648:4824 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Deutschland'''<br />'''Vuoceja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Germany.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Germany.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU-Germany.svg|300px]] +|- +|| Golvysmīsts || [[Berlins]] +|- +|| Vaļsteibys volūda || [[vuocīšu volūda|vuocīšu]] +|- +| Prezidents || [[Joahims Gauks]] +|- +| Ministru prezidents || [[Angela Merkele]] +|- +|| Pluots || 357 021 km² +|- +|| Dzeivuotuoju skaits || 81 728 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Vuoceja''' ({{Vol-de|Deutschland}}) — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Vuoceja| ]] + 4vodhkoe2ciucppz4x02twaqgmzs65e + + + + Vuorkovys nūvods + 0 + 560 + + 28395 + 24644 + 2013-03-07T20:09:35Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1023757]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vuorkovys nūvods +| zemislopa = Vārkavas novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Vārkavas novads COA.png +| gerba_pasauka = Vuorkovys nūvoda gerbs +| gerba_plotums = 80px +| karūga_atvaigs = +| karūga_pasauka = +| centrys = +| pluots = 288,9 +| dzeivuotuoju_skaits = 2 412 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 8,35 +| īstateits = 2009 +| teritoriskais_dalejums = [[Rimeicānu pogosts]] <br /> [[Upmalis pogosts]] <br /> [[Vuorkovys pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = +}} + +'''Vuorkovys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], kas sasadora nu trejim pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Vuorkovys nūvods| ]] + gyf33dh0j0k6jhk0zc6l91mzbm85p71 + + + + Vydums + 0 + 561 + + 31529 + 31528 + 2016-08-02T20:00:43Z + + Turaids + 172 + + + wikitext + text/x-wiki + '''Vydums''' ([[latvīšu volūda|latvīšu]]: ''tilpums''; [[krīvu volūda|krīvu]]: ''ёмкость''; [[anglīšu volūda|anglīšu]]: ''volume, capacity'') — lelums, kurs paruoda, kai daudzi [[trejmiereigs|trejmiereiga]] pluota aizjam kura naviņ škeista ci bireiga [[Lītne (kimejā)|lītne]], a voi – kai daudzi trejmiereiga pluota īīt kurymā naviņ [[prīškmats|prīškmatā]]. + +{{Nadabeigts rakstīņs}} + fvj0q46aggnzb5mny03as6xphaza4yn + + + + Vītauts Landsberģis + 0 + 562 + + 30222 + 28396 + 2014-02-05T01:00:11Z + + Mathonius + 468 + + new photo thanks to [[:commons:Commons:Wikipedians in European Parliament|Wikipedians in European Parliament]] + wikitext + text/x-wiki + [[Fails:Landsbergis, Vytautas-0085.jpg|right|300px]] +'''Vītauts Landsberģis''' ({{Vol-lt|Vytautas Landsbergis}}; dzyms 1932. 18. oktebra m. 18 dīna [[Kaune|Kauņē]]) lītaunīku politiks, pyrmais napavaļdeigas [[Lītova]]s vadeituojs [[1990]]-[[1992]]. + +Dzyms arhitekta i uorstīnes saimē. 1969 g. aizastuoja disertaceju par [[Mikalojus Konstantins Čurļoņs|Čurļoņa]] dailradi. + +== Verīs taipoš == +* [[Sąjūdis]] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Lītovys ļauds]] +[[Kategoreja:Politiki]] + 9umd4vj8zw32t2l4q3wwyt6m070o1nm + + + + Vītauts Mačerņs + 0 + 563 + + 28397 + 16291 + 2013-03-07T20:30:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801386]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Vītauts Mačerņs''' ({{Vol-lt|Vytautas Mačernis}}; [[1921]] juņa m. 5 dīna — [[1944]] oktebra m. 7 dīna) — lītaunīku ailinīks. + +Dzims [[Sarnele|Sarnelē]], tī radejs lelumu sovu aiļu. Rakstejs sonetus, vizejis, trioletus i aforistiskuos poemys. Muociejs 7 volūdys. + +Nūmirs 1944 g. [[Žemaišu Kalvareja|Žemaišu Kalvarejā]]. + +== Dailrade == +Pyrmūs dzeivuļus izdrukavuoja [[1936]] g., pādejū - [[1944]] g. oktebra m. + +Aizspiejs dabeigt tik ciklu "Vizejis" (Vizijos). + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Maczernzs, Vitauts}} + +[[Kategoreja:Lītovys ļauds]] +[[Kategoreja:Ailinīki]] + 2qbf3yvt8ad53tps25k4f78znzdmn6c + + + + Wikimedia Commons + 0 + 564 + + + 8963 + 8962 + 2011-03-19T13:38:04Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Vikiteka]] + jqhdk7s7rkypdjkle7nmwgnj2v5nyrg + + + + Zalta kačs + 0 + 565 + + 29014 + 28398 + 2013-03-09T03:26:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q192231]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:FelisAurataKeulemans.jpg|thumb]] +[[Fails:Distribution P. aurata.svg|thumb|250px|''Caracal aurata'' paplateiba pasaulī]] +'''Zalta kačs''' aba '''Afrikys zalta kačs ''' (Temminck, 1827) ({{Vol-en|African golden cat}}; {{Vol-ru|золотая кошка}}; {{Vol-lv|zelta kaķis}}) — irā lels [[Kaču saime|kaču saimis]] (''Felidae'') plieseigais [[zviers]]. ''Zalta kačs'' dzeivoj Afrikas cenralajuo dalē<ref name="ADV">[http://animaldiversity.ummz.umich.edu/site/accounts/information/Profelis_aurata.html University of Michigan Museum of Zoology]</ref>. + +== Izavierīņs == +Auguma garums: nazkur 60—100 cm<ref name="ADV"/>;</br> +Astis garums: nazkur 16—46 cm<ref name="ADV"/>;</br> +Placu augstums: 38—51 cm<ref name="ADV"/>;</br> +Svors: 11—14 kg<ref name="ADV"/>. + +== Daudzatmejeiba == +Irā zamškiru<ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1993/ BioLib] Profil taxonu — druh '''kočka zlatá ''Caracal aurata''''' (Temminck, 1827)</ref>: +* ''[[Profelis aurata aurata]]'' (Temminck, 1827) +* ''[[Profelis aurata cottoni]]'' Lydekker, 1907 + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Profelis aurata}} + +{{DEFAULTSORT:Profelis aurata}} + +[[Kategoreja:Dzeivinīki]] + 71th5mrdxms6sr71fkynh349uqxvv28 + + + + Zemisvierīņs + 0 + 566 + + 29923 + 28399 + 2013-07-04T17:58:07Z + + 190.49.61.181 + + wikitext + text/x-wiki + [[Fails:Cuesta_del_obispo_01.jpg|thumb|250px|Zemisvierīņs]] +'''Zemisvierīņs''' (baļtīšu: ''ainava''; anglīšu: ''landscape''; vuocīšu: ''die Landschaft''; krīvu: ''ландшафт'') — geografiskuo zemis gorūzys dalejuma pamatkategoreja, geografiskuos rajoniešonys vīneiba, [[Zemisvierīņzineiba|zemisvierīņzineibys]] tiemiešonys objekts. + +Šauruokā zemeibā zemisvierīni saprūt kai teritorejis uorejū izavierīni ci reļjefu (pīvadumam, „erozejis zemisvierīņs”, „[[Kaupris|kaupruots]] zemisvierīņs”). Taids sapratīņs aizaveds i geografejis zineibā suocūt nu 19 gs. + +Plotuokā zeimeibā geografiskais zemisvierīņs apjam kurys naviņ teritorejis radzamuos soveibys – fizikaliskūs elementus (zemis formys, reļjefs), auguoju vysumu (flora), dzeivinīku vysumu (fauna), abstraktus elementus (gaismys i tymsa meitovys, gaisalaiks), nu cylvāka darbeibys atsarodušus elementus (cylvāka dorbs apleicis taiseišonā i īriedeišonā). Taids sapratīņs cīšuok soveigs myuslaiku geografejai i [[Apleiczineiba|apleiczineibai]]. + +[[Kategoreja:Geografeja]] + 5849yuczej8f00umrgnetm144s58p85 + + + + Zemisvierīņzineiba + 0 + 567 + + 28400 + 11779 + 2013-03-07T20:30:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2385557]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Zemisvierīņzineiba''' (baļtīšu: ''ainavu zinātne''; anglīšu: ''Lanscape Science''; krīvu: ''ландшафтоведение'') — fiziskuos geografejis atzare, kura tiemej dobys i antropogeniskūs (cylvāka radeitūs) [[Zemisvierīņs|zemisvierīņu]] soveibu, sadora, ciļmis i dinamikys. + +[[Kategoreja:Geografeja]] + r8ioo8025ha27is51gaw2k8vf93n73h + + + + Zilupe + 0 + 568 + + + 9013 + 9012 + 2011-03-19T13:38:07Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Sīnuoja]] + quuy165bmn00csby1j6julej167tkht + + + + Zipfa lykums + 0 + 569 + + 28401 + 25938 + 2013-03-07T20:31:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 29 interwiki links, now provided by [[d:|Wikidata]] on [[d:q205472]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Sovā suoku versejā '''Zipfa lykums''' soka, ka dabeigys cylvāka volūdys tekstu korpusā, vuorda relativais bīžums ir apgrīzti proporcionals juo kuortas numuram vuordu bīžuma sarokstā. Pīmāram, vysbīžuok lītuotais vuords tekstūs pasaruodēs divtik bīži nakai ūtrais bīžuokais, a ūtrais bīžuokais pasaruoda divtik bīži nakai caturtais, i.t.t. Myusu dīnuos tū sapratīni lītoj kab apzeimuotu vasalu saimi ar varbyuteibu sadalejumim. Itū empiriskuo lykumu pyrmū reizi lika prīškā Harvarda lingvists Zipfs ([[:en:George Kingsley Zipf|Zipf]]). + +Pīvadumam, [[:en:Brown Corpus|Brauna korpusā]] ar anglīšu tekstim, "the" ir bīžuok aptiktais vuords, i jis vīns pats sastata 7% nu vysim vuordim tymūs tekstūs (69971 "the" eksemplari iz drupeit vairuok nakai 1 miļjona vuordu kūpskaita). Lobi atbiļst Zipf'a lykumam ūtrys bīžuokais vuords "of", kurs sastata 3.5% nu vysu korpusa vuordu (36411 eksemplari), a tuoļuok īt "and" (28852). Vīn 135 bīžuokī vuordi jau ir vairuok nakai puse nu vysim Brauna korpusā atrūnamajim vuordim. Zipfa lykums ir ceisti empirisks a na teoretisks. Zipfa sadalejumus nūvāroj i puors cytuos vītuos. Cālūni tam nava vēļ piļneigi saprasti. + +Kab pamateitu skaitļu aiļa atbiļsteibu Zipf'a lykumam, tū attāloj uz 2 koordinatom log(kuortas numurs) i log(bīžums). Pīmāram, "the" vāg atlikt kai punkteņu koordinātuos x = log(1), y = log(69971). Ka tī punkteni ir tiuli kluot vīnai taisnei, tod sadalejums atbiļst Zipfa lykumam. Biļdeitis ar tū varit apsaviert ituo rokstīņa anglīšu versejā. + +== Latgaļu tekstu korpusi == +Latgaļu tekstu elektroniska apstruode vēļ dora vīn pyrmūs sūļus. Bet ari ite byutu svareigi zynuot bīžuok lītojamūs vuordus; zynuot cik lela dale nu tekstu korpusa ir tai puorkluota. Ka kurs zyn, kur aptikt taidus latgaļu tekstu korpusus (vālams tymā pošā pareizraksteibā) dūdit zini. + +Varbyut tys sadalejums juosauc par ''Cipfa'' (na ''Zipfa'') sadalejumu, kai tys dareits krīvu volūdā? Pavuorde varātu byut vuocu, a jis dzeivova Amerikā ir juo vuords byutu skaitoms angliski. + +== Programys pīmārs == + +Lyuk Javys programa, kas vīnam argumentam izvoda tabeleiti ar Zipfa sadalejumu n lelumu vydā: + + public class Zipf { + public static void main(String[] args) { + if (args < 1) { + System.err.println("Lītojums: java Zipf <n>"); + System.exit(0); + } + // komandys aiļa parametrys - vasals pozitivs skaitlys: + int n = Integer.parseInt(args[0]); + double total = 0.0; + for (int i = 0; i < 19; i++) { + total += 1.0/(i+1); + } + for (int i = 0; i < 19; i++) { + System.out.printf("%d.lelums: %2.2f\n", (i+1),(100.0/((i+1)*total))); + } + } + } + +Pīmārs juos izsaukumam deļ n=10: + + c:\temp>'''javac Zipf.java''' + c:\temp>'''java Zipf 10''' + 1.lelums: 34.14 + 2.lelums: 17.07 + 3.lelums: 11.38 + 4.lelums: 8.54 + 5.lelums: 6.83 + 6.lelums: 5.69 + 7.lelums: 4.88 + 8.lelums: 4.27 + 9.lelums: 3.79 + 10.lelums: 3.41 + +Zipfa sadalijums bīži īsastuoj ari tierga sadalejumā konkurentu vydā. Pīmāram, ka ir 10 maizis ryupnīcys, tod leluokai bīži byus 34% dale maizis tiergā, ūtrai leluokai - 17% (divreiz mozuok), i.t.t. + +[[Kategoreja:Matematika]] +[[Kategoreja:Volūdzineiba]] + 92nm9vn07xg99yhaba5uagl4rt8o133 + + + + Zušupeite + 0 + 570 + + 29802 + 11781 + 2013-04-15T01:57:33Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Zušupeite''' — upeite [[Rēznis nūvods|Rēznis nūvodā]]. + +Upeitis lobajā molā [[Opinku Valna ola]], kairajā — [[Opinku piliskolns]]. + bzkvzv2qzxsw8jz0s5ez5m36fw3nuh4 + + + + Čeheja + 0 + 571 + + + 9053 + 9052 + 2011-03-19T13:38:09Z + + SPQRobin + 2 + + + 1 versija: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Čekeja]] + 9mb36ruw2nwubgkgjl55kjq350eauoq + + + + Čekeja + 0 + 572 + + 32044 + 31441 + 2017-06-19T11:56:42Z + + DARIO SEVERI + 3389 + + Updade inf. from wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Česká republika'''<br />'''Čekejis Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of the Czech Republic.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of the Czech Republic.svg|100px]] +|} +|- +| align=center colspan=2 | [[Fails:EU location CZE.png|300px]] +|- +|| Golvysmīsts || Praga +|- +|| Vaļsteibys volūda || čeku, slovaku +|- +| Prezidents || Miloš Zeman +|- +| Ministru prezidents || Bohuslav Sobotka +|- +|| Pluots || 78 866 km² +|- +|| Dzeivuotuoju skaits || 10 553 948 <small>(2015)</small> +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1),<br /> EEST (UTC +2) +|} +'''Čekeja''' ({{Vol-cs|Česko}}) — vaļsteiba [[Europa|Europā]]. + +== Etimologeja == + +== Viesture == + +== Geografeja == + +== Politiskuo sistema == + +== Administrativais dalejums == + +== Ekonomika == + +== Demografeja == + +=== Etniskais sadors === +=== Volūda === +=== Religeja === + +== Sports == + +== Verīs taipoš == + +== Nūruodis i olūti == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +{{DEFAULTSORT:Čekeja}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 0guguozz1l5nqh7w8aj3fb1ygi8v97g + + + + Čeņču Jezups + 0 + 573 + + 11784 + 11133 + 2011-03-24T21:57:52Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + '''Čeņču Jezups''' (pa eistyn. vuordam ''Jezups Kindzuļs'', 1888 — 1941) — latgaļu rakstinīks, literatukritiks. Dzims Drycānu pog. Kuzmu solā. 1941 g. pajimts navaļā, mirs aizspīstumā. + +Romans ''Pīters Vylāns'' (1944). Gazetu ''Latgalīts'' (1921), ''Latgolys zemkūps'' (1925-1935) redaktors. + +{{DEFAULTSORT:Cencu Jezups}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + ts4ww2ntvz5e8f2yltna8ubfmcrsdb3 + + + + Īslandeja + 0 + 574 + + 30703 + 28403 + 2015-04-02T15:29:53Z + + Magioladitis + 2827 + + + /* Verīs taipoš */All info is kept in Wikidata, removed: {{Link FA|es}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Ísland'''<br />'''Īslandeja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Iceland.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Iceland.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe-Iceland.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 103 125 km² +|- +|| Dzeivuotuoju skaits || 317 630 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Īslandeja''' (īsl.: ''Ísland'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + stj6tve5btp7ldjy4oa71a0iyirndog + + + + Ītaka + 0 + 575 + + 31699 + 29994 + 2016-11-04T22:50:36Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + '''Ītaka''' (anglīšu: ''influence, impact''; latvīšu: ''ietekme''; krīvu: ''влияние'') — vareiba taisnā voi nataisnā ceļā cik nacik puormeit objektu, ituos vareibys izlītuošona voi ituos vareibys izlītuošonys iņtensivums ''(pīv., puortikys pīdovu ītaka iz veseleibu, alkohola navieleiguo ītaka, eurys aizvoduošonys ītaka iz vaļsteibys ekonomiku, partejis ītaka parlamentā, [[pīgatave|pīgatavis]] ītaka iz [[apleice|apleici]] i ct.).'' + +{{Nadabeigts rakstīņs}} + plrc8nrms6vbixxdu5xg79vl6uvfmtc + + + + Ļaudyskuos saitys + 0 + 576 + + 28404 + 25252 + 2013-03-07T20:31:44Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 53 interwiki links, now provided by [[d:|Wikidata]] on [[d:q133080]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Ļaudyskuos saitys''' aba '''PR''' (nu {{vol-en|public relations}}) — informacejis meita vaļdeišona iz vyds organizacejis i [[ļaudeiba|ļaudeibys]], kab formātu ļaudeibys [[redzīņs|redzīni]] ap organizaceju. + +Biznesā ļaudyskuos saitys irā vīna nu [[tiergdareibys komunikaceja|tiergdareibys komunikacejis]] atmeju. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Viesteitivi]] + ex8rmjrxog18lr0np2yto8ermja4let + + + + Ļovs + 0 + 577 + + 30704 + 28926 + 2015-04-02T15:29:55Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|en}} (3) using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:White Lion.jpg|thumb|250px|Boltais ļovs (''Panthera leo krugeri'' zamškira)]] +[[Fails:Lion distribution.png|thumb|250px|Ļovu paplateiba pasaulī]] +'''Ļovs''' ({{Vol-la|Panthera leo}} ([[Linnaeus]], 1758)<ref name="Lin58">[[Linnaeus, Carolus]] (1758) (in Latin). ''[http://www.biodiversitylibrary.org/page/726936 Systema naturae per regna tria naturae :secundum classes, ordines, genera, species, cum characteribus, differentiis, synonymis, locis.]''. 1 (10th ed.). Holmiae (Laurentii Salvii). p. 41. Retrieved 2008-09-08.</ref>, {{Vol-en|lion}}; {{Vol-ru|лев}}; {{Vol-lv|lauva}}) — irā leluokais [[kaču saimis]] (''Felidae'') plieseigais [[zviers]]. Ļovi dzeivoj [[Afrika|Afrikā]] i dīnavydu [[Azeja|Azejā]]. + +== Izavierīņs == +Auguma garums: nu 140 da 175 cm<ref name="MS">Haas S. K., Hayssen V., Krausman P. R. ''[http://www.science.smith.edu/departments/Biology/VHAYSSEN/msi/pdf/762_Panthera_leo.pdf Panthera leo]'' // Mammalian Species. — American Society of Mammalogists, 2005. — С. 2.</ref>;</br> +Astes garums: nu 70 da 100 cm<ref name="MS"/>;</br> +Placu augstums: nazkur 107 cm<ref name="MS"/>.</br> +Svors: 120—182 kg<ref name="nowak">Ronald M. Nowak. Walker's Mammals of the World. — Baltimore: Johns Hopkins University Press, 1999. — ISBN 0-8018-5789-9</ref> + +== Nūruodis i olūti == + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Panthera leo|Ļovs}} + +{{DEFAULTSORT:Lzovs}} + +[[Kategoreja:Dzeivinīki]] + a8cu0cwvk0y4ymajfflrolrjjdur6y9 + + + + Škārsteiklys + 0 + 578 + + 28406 + 27908 + 2013-03-07T20:32:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 172 interwiki links, now provided by [[d:|Wikidata]] on [[d:q75]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Škārsteiklys''' aba '''Iņternets''' ([[:en:Internet|Internet]]) — ir vysu saiminīkdatoru (t.i. serveru, kam ir saiminīkvuords [[:en:Hostname|Hostname]]) i pi tūs davīnuotū datoru kūpa, kas sovā vydā lītoj TCP/IP. TCP/IP ir iz pakešu puorsyuteišonys ([[:en:Packet switching|Packet switching]]) dybynuots Škārsteikla Protokols ([[:en:Internet Protocol|Internet Protocol]]). + +== Verīs taipoš == +* [[Dīnroksts]] +* [[Muižvuordu sistema]] + +[[Kategoreja:Škārsteiklys]] + ohmw2o7gvxjvwt4ztbcm5lq3vgnl1vz + + + + Škīzna + 0 + 579 + + 28407 + 27571 + 2013-03-07T20:32:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 39 interwiki links, now provided by [[d:|Wikidata]] on [[d:q161]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Škīzna''' (anglīšu: ''fiber''; krīvu: ''волокно''; latvīšu: ''šķiedra'') — materiala tips, sasadorūšs nu pagaru pavadīņa voi neits formys daļu. + +Škīznys kai materials var byut dobyskys (pīv., lynu škīznys, kokosa škīznys, [[Auguoji|auguoju]] škīznys - būmeļs, dzeivinīku škīznys - vylna, šolks) ci muoksleigys (siņtetiskuos škīznys, stykla škīznys, optiskuos škīznys). + +Škīznys svareigys biologejā - juos satur kūpā [[Auguoji|auguoju]] i dzeivinīku audus. Cylvāks auguoju škīznys izlītoj sasprāzdams pavadīņūs, neitīs, aukluos, viervēs. Piečuok juos var lītuot cytu preču [[Pīgatave|pīgatavē]]. Škīznys taipoš saviļoj slūksnēs, i nu jūs taisa papeiru voi filcu. + +Muoksleiguos škīznys padarynoj taisyskā, parostai kimiskā formā. + +{{nadabeigts rakstīņs}} + 2kv6vsytrpj8e7cwf45aiv6dk12knse + + + + Švedeja + 0 + 580 + + 31585 + 31161 + 2016-09-27T03:51:21Z + + Sodacan + 1616 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Konungariket Sverige'''<br />'''Švedejis Kieneste'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Sweden.svg|150px|border]] +| align="center" width="140px" | [[Fails:Great coat of arms of Sweden.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:EU location SWE.png|300px]] +|- +|| Golvysmīsts || Stokholmys +|- +|| Vaļsteibys volūda || švedu +|- +| Monarhs || Karoļs XVI Gustavs +|- +| Ministru prezidents || Stefan Löfven +|- +|| Pluots || 449 964 km² +|- +|| Dzeivuotuoju skaits || 9 354 000 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1),<br /> EEST (UTC +2) +|} +'''Švedeja''', oficialai '''Švedejis Kieneste''' (švedu: ''Konungariket Sverige'') - vaļsteiba Pūstumu [[Europa|Europā]] pi [[Baļtejis jiura|Baļtejis jiurys]]. Vaļsteiba tur rūbežu ar [[Norvegeja|Norvegeju]] i [[Suomeja|Suomeju]], a dīnavydūs ar Oresunda tyltu saškierta ar [[Daneja|Daneju]]. Baltejis jiurā vaļsteibai namoz solu, pošys leluos - Gotlandeja i Elandeja. + +Pa vaļsteibys pluotam 450,295 km², Švedeja irā trešuo poša leluo vaļsteiba Europys Savīneibā, kuramā dzeivoj 9,2 miljoni dzeivuotuoju. Švedejā cieški moza dzeivuotuoju bīzeiba - tik 21 cylvāks iz vīnu km². Vaļsteibys dīnavydūs dzeivoj labtik vaira cylvāku kai pūstumūs. 85% dzeivuotuoju dzeivoj mīstūs i guodojams, atīsmē itys skaits pasalelynuos<ref> name="publikationer2007"> +Statistics Sweden. ''Yearbook of Housing and Building Statistics 2007''. Statistics Sweden, Energy, Rents and Real Estate Statistics Unit, 2007. ISBN 978-91-618-1361-2. Available online in [http://www.scb.se/statistik/_publikationer/BO0801_2007A01_BR_BO01SA0701.pdf PDF format]</ref>. Švedejis Kienestis golvysmīsts irā Stokholmys, kurs taipoš irā pošu lelais vaļsteibys mīsts ar 9 223 766 dzeivuotuojim<ref>{{cite web|title=Folkmängd i riket, län och kommuner 31 december 2009 och befolkningsförändringar 2009|publisher=[[Statistics Sweden]]|url=http://www.scb.se/Pages/TableAndChart____287608.aspx}}</ref>. Ūtrais pa lelumam mīsts irā Geteborgs, trešais - Maļme. + +Švedejis vaļsteiba īstateita vydslaikūs. 17 godu symtā jei pasaplateja sovys teritorejis i tyka par Švedejis Impereju. Tei beja vīna nu pošu zeimeiguo vaļsteibu Europā 17 i 18 godu symtā. Lelumu teritoreju uors Skaņdinavejis pussolys Švedeja pagaisynuoja. Taipoš Reitu Švedeju, myuslaiku Suomeju puorjēme Krīvejis Impereja 1809 godā. Pa 1814 goda vaidim pi Švedejis tyka daškierta i Norvegeja, tok obadiveju vaļsteibu savīneiba dreiži izjuka. Nu tuo laika Švedeja napīsadola nivīnūs vaidūs i vysod raudzej īvāruot neutraliteta politiku<ref>{{cite web|url=http://www.state.gov/r/pa/ei/bgn/2880.htm#foreign |title='&#39;U.S. State Department Background Notes: Sweden'&#39; |publisher=State.gov |date=2010-03-22 |accessdate=2010-08-25}}</ref>. + +Myuslaikūs Švedeja irā konstitucionala monarheja ar parlamentarisku demokratisku vaļdeibu i labi izraisteitu ekonomiku. Jei aizajim pyrmū vītu pasaulī pa demokratejis iņdeksam i septeitū vītu pa ļaudeibys raisteibys iņdeksam. Švedeja irā Vydtautiskuos ekonomiskuos kūpādareibys i raisteibys organizacejis (VEKRO) dalineica i nu 1995 gods janvara 1 dīnys Europys Savīneibys dalineica. + +== Etimologeja == +Daudzejuos pasauļa volūduos Švedejis pasauka skaņ leidzeigai. Varams, pasauka izacēluse nu vuordu "Sweon/Sweonas" ([[Vacnorvegu volūda|Vacnorvegu]] volūdā ''Sviar'', [[Latiņu volūda|latiņu]] ''Suiones'') i suokuos vīnkuoršai lītuota kai "Švedu ļauds". Švedu pošu pasauka ''Sverige'' sasadora nu diveju vuordu "Svea" i "Rike", kas zeimoj "Švedu Kieneste", tok laika guojumā izsoka puorsamejuse. Latgaliskuo pasaukys variaceja sadar ar lītaunīku volūdys pasauku i irā vīna nu daudzejom vuorda "Sweden" variacejom. + +Suomu-ugru volūduos švedu i Švedejis pasauka izacēluse nu švedu volūdys vuorda ''roþs'' - iertīs. Itū pasauku lītuoja i skaņdinavu varjagim, kuri īstateja [[Novgoroda]] mīstu. Kod varjagus slavi asimilēja, Suomu-ugru pasauka izaglobuoja (Rus - anglīšu ''Russia''). + +== Viesture == + +== Geografeja == + +== Politiskuo sistema == + +== Administrativais dalejums == + +== Ekonomika == + +== Demografeja == + +=== Etniskais sadors === +=== Volūda === +=== Religeja === + +== Sports == + +== Verīs taipoš == + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 4trnqvw20zc140wkq3lacwrsb5jw18o + + + + Šveicareja + 0 + 581 + + 30706 + 28409 + 2015-04-02T15:29:59Z + + Magioladitis + 2827 + + + /* Verīs taipoš */All info is kept in Wikidata, removed: {{Link FA|es}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Schweizerische Eidgenossenschaft'''<br />'''Confédération suisse'''<br />'''Confederazione Svizzera'''<br />'''Confederaziun svizra'''<br />'''Šveicareja'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Switzerland (Pantone).svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Switzerland (Pantone).svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Europe-Switzerland.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 41 284 km² +|- +|| Dzeivuotuoju skaits || 7 700 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Šveicareja''' ({{vol-de|Schweizerische Eidgenossenschaft}}; {{vol-fr|Confédération suisse}}; [[italīšu volūda|italīšu]]: ''Confederazione Svizzera''; [[retoromanīšu volūda|retoromanīšu]]: ''Confederaziun svizra'') — vaļsteiba [[Europa|Europā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} +{{Europys vaļsteibys}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 5ev4gjft82csns8um4ovbn0tco90z3d + + + + Taiss:Rēznis nūvods + 10 + 587 + + 29780 + 18044 + 2013-04-15T00:14:04Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Rēznis nūvods +|title = <center> [[Rēznis nūvods]] [[Fails:Coat of Arms of Rēzeknes novads.svg|13px|Rēznis nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Audreņu pogosts]]{{•}} [[Bieržgaļa pogosts]]{{•}} [[Bykovys pogosts]]{{•}} [[Drycānu pogosts]]{{•}} [[Greiškānu pogosts]]{{•}} [[Iļžukolna pogosts]]{{•}} [[Kaņtinīku pogosts]]{{•}} [[Kaunatys pogosts]]{{•}} [[Leņdžu pogosts]]{{•}} [[Lyuznovys pogosts]]{{•}} [[Malnuo Dyužgola pogosts]]{{•}} [[Maltys pogosts]]{{•}} [[Muokuļkolna pogosts]]{{•}} [[Nagļu pogosts]]{{•}} [[Nautrānu pogosts]]{{•}} [[Puša pogosts]]{{•}} [[Rykovys pogosts]]{{•}} [[Sakstygola pogosts]]{{•}} [[Sylmolys pogosts]]{{•}} [[Stolerovys pogosts]]{{•}} [[Strūžānu pogosts]]{{•}} [[Ūzulainis pogosts]]{{•}} [[Ūzulmuižys pogosts]]{{•}} [[Veremu pogosts]]{{•}} [[Vīmyna pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + hqdwa2zox907cpaj0n7kzwnmac65dmk + + + + Taiss:Panorama + 10 + 588 + + 30819 + 30009 + 2015-08-08T12:12:26Z + + YiFeiBot + 2627 + + + Bot: Migrating 8 langlinks, now provided by [[d:|Wikidata]] on [[d:q5621405]] + wikitext + text/x-wiki + <includeonly><div class="thumb" style="width:{{{4|100%}}};"> +<div class="thumbinner"><div style="overflow:auto; overflow-y:hidden; overflow-x:scroll;">[[File:{{{1}}}|{{{2}}}|{{#switch:{{{3}}} +|thumb +|thumbnail +|frame +|border={{{1}}} +|#default={{{3|}}}}}]]</div>{{ #if: {{{3|}}}|<div class="thumbcaption" style="font-size:smaller;">{{{3|}}}</div>|}} +</div></div></includeonly><noinclude> + +</noinclude> + bf4f9yv285k6ngkrw48p6cdsim1dkv2 + + + + Taiss:Vītys karta/Latvia (nūvodi) + 10 + 589 + + + 9228 + 9227 + 2011-03-19T13:38:24Z + + SPQRobin + 2 + + + 2 versijas: importing articles from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Latveja]] + bdeopfvu7ot2rnoj9sm7iuab59cygf2 + + + + Taiss:Collapsible list + 10 + 590 + + 30820 + 30005 + 2015-08-08T12:12:46Z + + YiFeiBot + 2627 + + + Bot: Migrating 2 langlinks, now provided by [[d:|Wikidata]] on [[d:q5616440]] + wikitext + text/x-wiki + <div class="NavFrame {{#if:{{{expand|}}}||collapsed}}" style="{{#if: {{{frame_style|}}}|<!--then:-->{{{frame_style|}}}|<!--else:-->border:none; padding: 0;}}"> + <div class="NavHead" style="{{#if:{{{title_style|}}} |<!--then:-->{{{title_style|}}} |<!--else:-->width:100%; background:transparent" align="left}}">{{#if:{{{title|}}} |<!--then:-->{{{title|}}} |<!--else:-->}}</div> + <div class="NavContent" style="display:none; {{#if:{{{list_style|}}} |<!--then:-->{{{list_style|}}} |<!--else:-->text-align:left;}}"><!-- + -->{{#if:{{{1|}}} |<!--then:-->{{{1|}}} }}<!-- + -->{{#if:{{{2|}}} |<!--then:--></br>{{{2|}}} }}<!-- + -->{{#if:{{{3|}}} |<!--then:--></br>{{{3|}}} }}<!-- + -->{{#if:{{{4|}}} |<!--then:--></br>{{{4|}}} }}<!-- + -->{{#if:{{{5|}}} |<!--then:--></br>{{{5|}}} }}<!-- + -->{{#if:{{{6|}}} |<!--then:--></br>{{{6|}}} }}<!-- + -->{{#if:{{{7|}}} |<!--then:--></br>{{{7|}}} }}<!-- + -->{{#if:{{{8|}}} |<!--then:--></br>{{{8|}}} }}<!-- + -->{{#if:{{{9|}}} |<!--then:--></br>{{{9|}}} }}<!-- + -->{{#if:{{{10|}}} |<!--then:--></br>{{{10|}}} }}<!-- + -->{{#if:{{{11|}}} |<!--then:--></br>{{{11|}}} }}<!-- + -->{{#if:{{{12|}}} |<!--then:--></br>{{{12|}}} }}<!-- + -->{{#if:{{{13|}}} |<!--then:--></br>{{{13|}}} }}<!-- + -->{{#if:{{{14|}}} |<!--then:--></br>{{{14|}}} }}<!-- + -->{{#if:{{{15|}}} |<!--then:--></br>{{{15|}}} }}<!-- + -->{{#if:{{{16|}}} |<!--then:--></br>{{{16|}}} }}<!-- + -->{{#if:{{{17|}}} |<!--then:--></br>{{{17|}}} }}<!-- + -->{{#if:{{{18|}}} |<!--then:--></br>{{{18|}}} }}<!-- + -->{{#if:{{{19|}}} |<!--then:--></br>{{{19|}}} }}<!-- + -->{{#if:{{{20|}}} |<!--then:--></br>{{{20|}}} }}<!-- + -->{{#if:{{{21|}}} |<!--then:--></br>{{{21|}}} }}<!-- + -->{{#if:{{{22|}}} |<!--then:--></br>{{{22|}}} }}<!-- + -->{{#if:{{{23|}}} |<!--then:--></br>{{{23|}}} }}<!-- + -->{{#if:{{{24|}}} |<!--then:--></br>{{{24|}}} }}<!-- + -->{{#if:{{{25|}}} |<!--then:--></br>{{{25|}}} }}<!-- + -->{{#if:{{{26|}}} |<!--then:--></br>{{{26|}}} }}<!-- + -->{{#if:{{{27|}}} |<!--then:--></br>{{{27|}}} }}<!-- + -->{{#if:{{{28|}}} |<!--then:--></br>{{{28|}}} }}<!-- + -->{{#if:{{{29|}}} |<!--then:--></br>{{{29|}}} }}<!-- + -->{{#if:{{{30|}}} |<!--then:--></br>{{{30|}}} }}<!-- + -->{{#if:{{{31|}}} |<!--then:--></br>{{{31|}}} }}<!-- + -->{{#if:{{{32|}}} |<!--then:--></br>{{{32|}}} }}<!-- + -->{{#if:{{{33|}}} |<!--then:--></br>{{{33|}}} }}<!-- + -->{{#if:{{{34|}}} |<!--then:--></br>{{{34|}}} }}<!-- + -->{{#if:{{{35|}}} |<!--then:--></br>{{{35|}}} }}<!-- + -->{{#if:{{{36|}}} |<!--then:--></br>{{{36|}}} }}<!-- + -->{{#if:{{{37|}}} |<!--then:--></br>{{{37|}}} }}<!-- + -->{{#if:{{{38|}}} |<!--then:--></br>{{{38|}}} }}<!-- + -->{{#if:{{{39|}}} |<!--then:--></br>{{{39|}}} }}<!-- + -->{{#if:{{{40|}}} |<!--then:--></br>{{{40|}}} }}<!-- + -->{{#if:{{{41|}}} |<!--then:--></br>{{{41|}}} }}<!-- + -->{{#if:{{{42|}}} |<!--then:--></br>{{{42|}}} }}<!-- + -->{{#if:{{{43|}}} |<!--then:--></br>{{{43|}}} }}<!-- + -->{{#if:{{{44|}}} |<!--then:--></br>{{{44|}}} }}<!-- + -->{{#if:{{{45|}}} |<!--then:--></br>{{{45|}}} }}<!-- + -->{{#if:{{{46|}}} |<!--then:--></br>{{{46|}}} }}<!-- + -->{{#if:{{{47|}}} |<!--then:--></br>{{{47|}}} }}<!-- + -->{{#if:{{{48|}}} |<!--then:--></br>{{{48|}}} }}<!-- + -->{{#if:{{{49|}}} |<!--then:--></br>{{{49|}}} }}<!-- + -->{{#if:{{{50|}}} |<!--then:--></br>{{{50|}}} }}<!-- + --></div> +</div><noinclude> +[[Kategoreja:Vikipedeja:Taisi]] + +</noinclude> + t4nwux3ot7qli8xf1xsszbsrxmh9we9 + + + + Taiss:Mieneša aizdavums + 10 + 591 + + 16322 + 12047 + 2011-08-26T12:13:13Z + + Roalds + 50 + + jauns mieneša aizdavums + wikitext + text/x-wiki + [[File:LVA Maltas pagasts COA.png|left|40px|Maltys gerbs]] +'''Viereibys!''' Itymā mienesī vadynojam vysus daškiert rakstīņus ap [[Latgola|Latgolys]] pogostim. + +Vajadzeigū rakstīņu saroksts irā [[Latgolys administrativais dalejums|ite]]. Zeimeiguokī dalinīki byus atsateikūši gūdynuoti. + m17iwbv1hh9i5oq6lncmzopjpsvxztt + + + + Taiss:Radnesteigi projekti + 10 + 593 + + 28410 + 28051 + 2013-03-07T20:33:07Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 81 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5612101]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + <p style="text-align: center">Vikipedeja irā napeļneiguos organizacejis ''[[Vikiviesteitivu Fonds|Vikiviesteitivu Fonds]]'' projekts i tys irā sasīts ar nazcik cytu daudzivolūdeigu i breivai dabojamu turīņu projektu:</p> + +{| align="center" cellspacing="2" style="text-align:left; width:90%; background:transparent; line-height:1.25em" +| [[Image:Wiktionary-logo-en.png|35px|<nowiki></nowiki>]] +| [[Wiktionary:|'''Vikivuordineica''']] <br /> Breivuo vuordineica +| [[Image:Commons-logo.svg|35px|<nowiki></nowiki>]] +| [[Commons:|'''Vikiteka''']] <br /> Viesteitivu kūplasejums +| [[Image:Wikibooks-logo.svg|35px|<nowiki></nowiki>]] +| [[Wikibooks:|'''Vikigruomotys''']] <br /> Gruomotys i pavuicīni +|- +| [[Image:Wikiquote-logo.svg|35px|<nowiki></nowiki>]] +| [[Wikiquote:|'''Vikicitatys''']] <br /> Aforizmi i seņtencejis +| [[Image:Wikimedia-logo.svg|35px|<nowiki></nowiki>]] +| [[meta:|'''Metaviki''']] <br /> Vikimedijis projektu sadarynuošona +| [[Image:Wikinews-logo.svg|35px|<nowiki></nowiki>]] +| [[Wikinews:|'''Vikiviests''']] <br /> Aktualumi i pošjaunuos viests +|- +| [[Image:Wikisource-logo.svg|35px|<nowiki></nowiki>]] +| [[Wikisource:|'''Vikiolūti''']] <br /> Vysaidi breivai dabojami teksti +| [[Image:Wikispecies-logo.svg|35px|<nowiki></nowiki>]] +| [[Wikispecies:|'''Vikiškirys''']] <br /> Škiru katalogs +| [[Image:Wikiversity-logo.svg|35px|<nowiki></nowiki>]] +| [[Wikiversity:|'''Vikiškola''']]<br />Vuiceibu materiali +|}<noinclude> +[[Category:Vikipedeja]] + +</noinclude> + 8e5rnn94218kiaf5s78lo59gvssxjzg + + + + Taiss:Vierteigs rakstīņs + 10 + 594 + + 27879 + 22268 + 2013-02-21T11:26:03Z + + Roalds + 50 + + latgaliskai Leldīne + wikitext + text/x-wiki + [[Fails:Victory over the Grave.jpg|100px|right|border|Jezus Krystus augšonceļšonuos]] +'''[[Leldīne]]''' - kristīšu svātki, damāruoti senejim [[Latgali|latgaļu]] tautys svātkim, kas simbolizej [[Jezus Krystus]] augšanceļšonūs nu myrūnim pa siššonai krystā, kai aizraksteits Jaunajā Testamentā. Tys nūtics trešā dīnā piec Krystus mieršonys (nuovis dīnu skaitūt kai pyrmū dīnu). + +Leldīnis svieteišona aizasuoc Lelajā Catūrtdīnē i turpynoj vysu Leldīnis laiku da Krystus īšonys da dabasu svātkim. Lelajā Catūrtdīnē i Pīktdīnē kristīši īt Krysta ceļu. Lelajā Pīktdīnē bazneica nūsacejuse styngru gavieni. Lelajā Sastdīnē leidz ar saulislaidu svietejama Leldīnis nakts. Leldīnis nakts kulminaceja - augšonceļšonuos viests. + +Nazcik tautys īrodumi irā izaglobuojušs nu poguonu pavasara atīšonys svātkim i sasalejušs ar Jezus Krystus augšonceļšonuos svātkim, sataisūt myuslaiku latgaļu Leldīnis svātku tradicejis. Senejūs laikūs pavasara atīšona (Leluo dīna) sveiteita, kod dīnys i nakts garums vīnaids (pavasara ekvinokceja) i tys saīt [[Pavasara mieness|pavasara mieneša]] 20 ci 21 dīnā. + +<div align=right style="font-size:100%;">[[Leldīne|'''Vaira...''']]</div> + +<noinclude> +[[Kategoreja:Suoku puslopa]] +</noinclude> + l8ursqaxcg2s9ktg6rvkq3j1pugrj8o + + + + Taiss:Vikipedeja cytuos volūduos + 10 + 595 + + 16576 + 9289 + 2011-08-30T15:02:27Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + <center>[[:lv:Sākumlapa|Latvīšu Vikipedeja]] • [[:lt:Pagrindinis puslapis|Lītaunīku Vikipedeja]] • [[:bat-smg:Pėrms poslapis|Žemaišu Vikipedeja]]</center><noinclude> +[[Kategoreja:Vikipedeja:Taisi]] +</noinclude> + aktyy47cxvj0k241q0662ahj19yt6bo + + + + Taiss:Vol-cs + 10 + 596 + + 28411 + 26892 + 2013-03-07T20:33:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 18 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5851510]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{langWithName|cs|čeku|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|cs]] + +</noinclude> + 2pe7w5sej38d21gm1qm29v7chyo2wjo + + + + Taiss:6.2 puosmys + 10 + 599 + + 9304 + 9303 + 2011-03-19T13:45:12Z + + SPQRobin + 2 + + + 4 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {| align=center border=0 cellpadding=4 cellspacing=4 style="width: 90%;border: 1px solid #CCCC99; background-color: #F1F1DE" +| [[File:PD-icon.svg|55px]] +| [http://www.likumi.lv/doc.php?id=5138 Latvejis Republikys Autortīseibu lykums]: + +''6. puosmys. '''Nasorgojamī dorbi''''' <br /> ''Autortīseibys nasorgoj: <br /> ... <br /> +* ''Normativūs i administrativūs aktus, cytus vaļstiskuo i pošvoldu īstotu izdūtus dokumentus i tīsys sasprīdumus (lykumus, tīsu sasprīdumus i cytus oficialūs dokumentus), taipoš itū tekstu oficialūs puorvārsumus i oficialuos konsolidētuos versejis;'' +* ''Vaļstiski apstyprynuotūs i škārsvaļsteigi pīzeitūs oficialūs simbolus i zeimis (karūgus, gerbus, gimnys, apdovaņus), kuru lītuošonu nūstota kuri nakuri normativī akti;'' +* ''Zemislopys, kuru sagataveibu i lītuošonu nūstota kuri nakuri normativī akti;'' +* ''Presē, radejis ci televizejis laidīņūs ci cytūs viesteitivūs dūtū informaceji ap dīnys jaunumim, vysaižim faktim i nūtikšonom;'' +* ''Idejis, metodus, procesus i matematiskuos koņcepcejis.'' +| [[File:Coat of Arms of Latvia.svg|80px|right]] +|} +<includeonly>[[Category:Oficialī simboli|{{PAGENAME}}]]</includeonly> +<noinclude>[[Category:Atvaigu autortīseibu taisi|{{SUBPAGENAME}}]]</noinclude> + saczbtncg2ymb9ssh69wcmr8skya38q + + + + Taiss:Atvaiga autortīseibys + 10 + 600 + + 9309 + 9308 + 2011-03-19T13:45:12Z + + SPQRobin + 2 + + + 4 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {| cellspacing="8" cellpadding="0" style="width:100%; clear:both; margin:0.5em auto; background-color:#fef7e9; border:2px solid #ff0000;" +|- +|[[File:Nuvola apps important.svg|64px]] +|<center>'''<font color=red>Viereibys!</font>''' Itam atvaigam navā nūruodeita liceņceja, autors ci ceļšonuos olūts aba tys irā naskaidrys. Ka vajadzeiguo informaceja nabyus aizraksteita, atvaigu iztreis. Dabojamūs autortīseibu taisus verīs [[:Category:Atvaigu autortīseibu taisi|ite]]. <p><small>Itū taisu nūjims piec atvaiga autortīseibu dazynuošonys.</small></p></center> +|}<includeonly> +[[Category:Naskaidru autortīseibu atvaigi|{{PAGENAME}}]] +</includeonly><noinclude> +[[Category:Atvaigu autortīseibu nūruodis|{{SUBPAGENAME}}]] +</noinclude> + 9zj6gv09599npfbdyc5459kq6qg0o6g + + + + Taiss:CC-BY-3.0 + 10 + 601 + + 30002 + 29966 + 2013-08-16T15:45:47Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5901616]] + wikitext + text/x-wiki + {| style="clear:both; margin: 0.5em auto; width:80%; text-align: center; background-color:#f8f8f8; border:2px solid #e0e0e0; padding:5px;" +|- +| [[File:CC some rights reserved.svg|90px]] <br /> [[File:Cc-by new white.svg|24px]] +| '''Itys atvaigs teik plateits pa liceņcejis <br/> [http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution License v. 3.0] nūsacejumim.''' +---- +''Breiv bez aprūbežuojumu plateit itū dorbu, puormeit i izlītuot ar kaidim naviņ (taipoš ar komercialim) snāgim, ka byus nūruodeits pirmeigais autors i izglobuota ituo liceņceja.'' +|}<includeonly> +[[Category:Pa Creative Commons licencēti atvaigi|{{PAGENAME}}]] +</includeonly><noinclude> +[[Category:Atvaigu autortīseibu taisi|{{SUBPAGENAME}}]] + +</noinclude> + qmi4toigtghxrtp8v9l1sd5f2qap9p2 + + + + Taiss:CategoryTOC + 10 + 602 + + 30821 + 30006 + 2015-08-08T12:13:06Z + + YiFeiBot + 2627 + + + Bot: Migrating 4 langlinks, now provided by [[d:|Wikidata]] on [[d:q6191335]] + wikitext + text/x-wiki + {| border="0" align="center" +|- +| align="center" class="plainlinks" | '''Puslopu ruodeklis:''' [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}}} Suokys]{{·}} [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=0}} 0–9]{{·}} [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=A}} A] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ā}} Ā] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=B}} B] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=C}} C] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Č}} Č] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=D}} D] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=E}} E] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ē}} Ē] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=F}} F] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=G}} G] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ģ}} Ģ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=H}} H] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=I}} I] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Y}} Y] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ī}} Ī] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=J}} J] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=K}} K] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ķ}} Ķ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=L}} L] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ļ}} Ļ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=M}} M] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=N}} N] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ņ}} Ņ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=O}} O] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ō}} Ō] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=P}} P] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=R}} R] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=S}} S] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Š}} Š] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=T}} T] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=U}} U] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ū}} Ū] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=V}} V] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Z}} Z] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|from=Ž}} Ž] +|}<noinclude> + +{{DEFAULTSORT:CategoryTOC}} +[[Category:Vikipedejis davēris taisi]] + +[[pt:Predefinição:Índice cat]] +</noinclude> + 43zrmlxolvpeguzfx4v1rvi0crrqomt + + + + Taiss:CommonsCat + 10 + 603 + + + 9322 + 9321 + 2011-03-19T13:45:13Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Commonscat]] + mdztqqpj08vucnq5snse86vrjp1l212 + + + + Taiss:Coord/dec2dms + 10 + 604 + + 9326 + 9325 + 2011-03-19T13:45:13Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{Coord/dec2dms/{{{4}}}|{{#ifexpr:{{{1}}} >= 0||-}}{{{1}}}}}{{#ifexpr:{{{1}}} >= 0|{{{2}}}|{{{3}}}}}</includeonly><noinclude>[[Category:Wp/ltg|!]]</noinclude> + 4sspy4hio7wj5nx39xjcin6hx0l5lgg + + + + Taiss:Coord/dec2dms/d + 10 + 605 + + 9330 + 9329 + 2011-03-19T13:45:13Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{#expr:{{{1}}} round 0}}°</includeonly><noinclude>[[Category:Wp/ltg|!]]</noinclude> + dwfxrhjm50ubym7gsidvuhqri3b7rwa + + + + Taiss:Coord/dec2dms/dms + 10 + 606 + + 9334 + 9333 + 2011-03-19T13:45:13Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{#expr:{{{1}}} mod 360}}°{{padleft:{{#expr:{{{1}}} * 60 mod 60}}|2|0}}′{{padleft:{{#expr:({{{1}}} * 36000 round 0) mod 600 / 10 round 0}}|2|0}}″</includeonly><noinclude>[[Category:Wp/ltg|!]]</noinclude> + j0r80hzpf80oqhg7yigkkzrmiu4rvho + + + + Taiss:Coord/dms2dec + 10 + 607 + + 9340 + 9339 + 2011-03-19T13:45:13Z + + SPQRobin + 2 + + + 5 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{#expr:{{#switch:{{{1}}}|N|E=1|S|W=-1}}*({{{2|0}}}+({{{3|0}}}+{{{4|0}}}/60)/60) round {{{precdec|{{#if:{{{4|}}}|5|{{#if:{{{3|}}}|3|0}}}}+{{Precision1|{{{4|{{{3|{{{2}}}}}}}}}}}}}}}}</includeonly><noinclude>need to add smth like <nowiki>[[Category:Koordinātu veidnes]]</nowiki> +[[Category:Wp/ltg|!]] +</noinclude> + awjxcf0gfl84pzhqggwktlrigz8ms2f + + + + Taiss:Coord/input/d + 10 + 608 + + 9344 + 9343 + 2011-03-19T13:45:13Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{Coord/link|dms-lat={{Coord/dec2dms|{{{1}}}|{{{2}}}|{{#ifeq:{{{2}}}|N|S|N}}|{{Coord/prec dec|{{{1}}}|{{{3}}}}}}}|dms-long={{Coord/dec2dms|{{{3}}}|{{{4}}}|{{#ifeq:{{{4}}}|E|W|E}}|{{Coord/prec dec|{{{1}}}|{{{3}}}}}}}|dec-lat={{Coord/dms2dec|{{{2}}}|{{{1}}}}}|dec-long={{Coord/dms2dec|{{{4}}}|{{{3}}}}}|param={{{1}}}_{{{2}}}_{{{3}}}_{{{4}}}_{{{5|}}}|default={{#if:{{{format|}}}|{{{format}}}|{{#ifeq:{{Coord/prec dec|{{{1}}}|{{{3}}}}}|d|dms|dec}}}}|name={{{name|}}} +}}</includeonly><noinclude> +[[Category:Wp/ltg|!]] +</noinclude> + pf9wy11voymgdh9jkjecjr1mmnpfz1q + + + + Taiss:Coord/input/dec + 10 + 609 + + 9348 + 9347 + 2011-03-19T13:45:13Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{Coord/link|dms-lat={{Coord/dec2dms|{{{1}}}|N|S|{{Coord/prec dec|{{{1}}}|{{{2}}}}}}}|dms-long={{Coord/dec2dms|{{{2}}}|E|W|{{Coord/prec dec|{{{1}}}|{{{2}}}}}}}|dec-lat={{{1}}}|dec-long={{{2}}}|param={{{1}}}_N_{{{2}}}_E_{{{3|}}}|default={{#if:{{{format|}}}|{{{format}}}|dec}}|name={{{name|}}} +}}</includeonly><noinclude>[[Category:Wp/ltg|!]]</noinclude> + eyzguhkzeaeaek5lacl9156espa8kax + + + + Taiss:Coord/input/dm + 10 + 610 + + 9352 + 9351 + 2011-03-19T13:45:14Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{Coord/link|dms-lat={{{1}}}°{{{2}}}′{{{3}}}|dms-long={{{4}}}°{{{5}}}′{{{6}}}|dec-lat={{Coord/dms2dec|{{{3}}}|{{{1}}}|{{{2}}}}}|dec-long={{Coord/dms2dec|{{{6}}}|{{{4}}}|{{{5}}}}}|param={{{1}}}_{{{2}}}_{{{3}}}_{{{4}}}_{{{5}}}_{{{6}}}_{{{7|}}}|default={{#if:{{{format|}}}|{{{format}}}|dms}}|name={{{name|}}}}}</includeonly><noinclude>[[Category:Wp/ltg|!]]</noinclude> + 6tpavthhxopuk5ok05xnam2pga0wc2j + + + + Taiss:Coord/prec dec + 10 + 611 + + 9357 + 9356 + 2011-03-19T13:45:14Z + + SPQRobin + 2 + + + 4 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{#switch:{{Max|{{Precision1|{{{1}}}}}|{{Precision1|{{{2}}}}}}}|0=d|1|2=dm|dms}}</includeonly><noinclude>[[Category:Wp/ltg|!]]</noinclude> + 8ae2wp3sbsgon5wkrwb1divx8anl5yf + + + + Taiss:Coord dm + 10 + 612 + + 9361 + 9360 + 2011-03-19T13:45:14Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + [http://tools.wikimedia.de/~magnus/geo/geohack.php?params={{{1}}}_{{{2}}}_{{{3}}}_{{{4}}}_{{{5}}}_{{{6}}}_{{{7}}}{{#if:{{{name|}}}|&title={{urlencode:{{{name}}}}}}} <span title="Meklēt kartes, aerofoto, un citus datus šai koordinātei">{{{1}}}°{{{2}}}′{{{3}}}, {{{4}}}°{{{5}}}′{{{6}}}</span>]<noinclude> +[[Category:Wp/ltg|!]] +</noinclude> + aol9g4yeqmhxuapw7je2lay3ryt1kgq + + + + Taiss:Cyta zeimeiba + 10 + 613 + + 12458 + 9369 + 2011-03-28T18:37:23Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + :<small><font color="504A4B">''Itys rakstīņs irā ap {{{1}}}. Ap {{{2}}} verīs rakstīņu [[{{{3}}}]].''</font></small><noinclude> +{{dokumentaceja}} + +[[Kategoreja:Zeimeibu škiršonys taisi]] + +[[ru:Шаблон:О]] +</noinclude> + alcan8g5rmircn30zsdj375ld9bs924 + + + + Taiss:Documentation + 10 + 614 + + + 9650 + 9371 + 2011-03-19T13:45:34Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Dokumentaceja]] + 37gc5xz4x34k5trjibocph1thtuxflv + + + + Taiss:Dokumentaceja + 10 + 616 + + 28412 + 28053 + 2013-03-07T20:33:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 210 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4608595]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + <includeonly>{{Dokumentaceja/begin|{{SUBJECTSPACE}}:{{PAGENAME:{{{1|{{SUBJECTPAGENAME}}/doc}}}}}|notoc={{{notoc|}}}}} +{{#ifexist:{{{1|{{SUBJECTPAGENAME}}/doc}}}|{{{{{1|{{SUBJECTPAGENAME}}/doc}}}}}|{{#ifexist:{{SUBJECTSPACE}}:{{{1}}}|{{{{{1}}}}}|{{#if:{{{nocat|}}}||{{#ifeq:{{NAMESPACE}}|{{ns:10}}|[[Kategoreja:Nedokumentetī taisi|{{PAGENAME}}]]|}}}}}}}} +{{Dokumentaceja/end}}</includeonly><noinclude> +{{dokumentaceja}} + +</noinclude> + ctcf80seosdtlzgivl829xfmgyqd3nl + + + + Taiss:Eiss rakstīņs + 10 + 617 + + 29891 + 22758 + 2013-05-31T08:17:40Z + + MerlIwBot + 221 + + + robots izņem: [[cs:Šablona:Subpahýl/dne]] (deleted) + wikitext + text/x-wiki + {| class="metadata plainlinks stub" style="background: transparent;" +|style="padding-right:4px"| [[File:Small template.gif|48px|Eiss rakstīņs|link=]] +| ''Itys rakstīņs irā cīši eiss i [[Vikipedeja:Nadabeigti rakstīni|napylneigs]]. Jius varit [[Vikipedeja:Rakstīņa papiļdeišona|dūt sovu īlicīni]] Vikipedejā, [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} papiļdūt tuo].'' +|}<includeonly> +[[Category:Cīši eisi rakstīni]] +</includeonly><noinclude> +[[Category:Nadabeigtu rakstīņu taisi| Eiss]] +[[Category:Cīši eisi rakstīni| ]] + +[[fi:Malline:Minitynkä]] +[[hu:Sablon:Szubcsonk]] +[[ja:Template:Substub]] +[[lv:Veidne:Īss aizmetnis]] +[[no:Mal:Substubb]] +[[pt:Predefinição:Mínimo]] +[[sv:Mall:Substub]] +[[vi:Bản mẫu:Rất sơ khai]] +[[zh:Template:Substub]] +</noinclude> + qxlcatubw9j7fgtbfy7x2lxq7nd9yee + + + + Taiss:Europa + 10 + 618 + + + 9383 + 9382 + 2011-03-19T13:45:15Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Europys vaļsteibys]] + 8n1mldb4lqihrsxjrnq76sr74og6v93 + + + + Taiss:Football kit + 10 + 619 + + 30822 + 30007 + 2015-08-08T12:13:26Z + + YiFeiBot + 2627 + + + Bot: Migrating 2 langlinks, now provided by [[d:|Wikidata]] on [[d:q5613795]] + wikitext + text/x-wiki + <div style="width: 100px; margin: 0 auto; padding: 0;"> +<div style="position: relative; left: 0px; top: 0px; width: 100px; height: 135px; margin: 0 auto; padding: 0;"> + +<!-- Left arm --> +<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px; background-color: #{{{leftarm}}};">{{#if: {{{pattern_la|}}}|[[File:Kit left arm{{{pattern_la}}}.{{{filetype|png}}}|top|alt=]]| }}</div> +<div style="position: absolute; left: 0px; top: 0px; width: 31px; height: 59px;">[[File:Kit left arm.svg|top|link=|alt=]]</div> + +<!-- Body ---> +<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px; background-color: #{{{body}}};">{{#if: {{{pattern_b|}}}|[[File:Kit body{{{pattern_b}}}.{{{filetype|png}}}|top|link=|alt=]]| }}</div> +<div style="position: absolute; left: 31px; top: 0px; width: 38px; height: 59px;">[[File:Kit body.svg|top|link=|alt=]]</div> + +<!-- Right arm --> +<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px; background-color: #{{{rightarm}}};">{{#if: {{{pattern_ra|}}}|[[File:Kit right arm{{{pattern_ra}}}.{{{filetype|png}}}|top|link=|alt=]]| }}</div> +<div style="position: absolute; left: 69px; top: 0px; width: 31px; height: 59px;">[[File:Kit right arm.svg|top|link=|alt=]]</div> + +<!-- Shorts --> +<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px; background-color: #{{{shorts}}}">{{#if: {{{pattern_sh|}}}|[[File:Kit shorts{{{pattern_sh}}}.{{{filetype|png}}}|top|link=|alt=]]| }}</div> +<div style="position: absolute; left: 0px; top: 59px; width: 100px; height: 36px;">[[File:Kit shorts.svg|top|link=|alt=]]</div> + +<!-- Socks --> +<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px; background-color: #{{{socks}}}">{{#if: {{{pattern_so|}}}|[[File:Kit socks{{{pattern_so}}}.{{{filetype|png}}}|top|link=|alt=]]| }}</div> +<div style="position: absolute; left: 0px; top: 95px; width: 100px; height: 40px;">[[File:Kit socks long.svg|top|link=|alt=]]</div> + +</div> +<!-- Title --> +{{#if: {{{title}}}|<div style="padding-top: 0.6em; text-align: center;">'''{{{title}}}'''</div>|}} +</div><noinclude> + +</noinclude> + f9rhqa50zr5qwkem2utypmykmxqvy4v + + + + Taiss:Futbola klubs + 10 + 620 + + 22765 + 19476 + 2012-05-04T03:03:14Z + + MerlIwBot + 221 + + + robots izņem: [[es:Plantilla:Infobox Equipo de fútbol]] (deleted) + wikitext + text/x-wiki + {| class="infobox" style="font-size: 90%; text-align: left;" +|+ '''{{{nos}}}''' +|- +|colspan="2" style="text-align: center;"|{{{logo|}}} +|- +|'''Pasauka'''||{{{pylna}}} +{{#if:{{{puorsauka|}}}| +<tr><th>Puorsauka(s)</th><td>{{{puorsauka}}}</td></tr> +}} +|- +!Īstateits +|{{{dyb}}} +|- +!Stadions +|{{{stad}}} +|- +!Vydums +|{{{ītylp}}} +|- +!Prezidents +|{{{prez}}} +|- +!Treners +|{{{tren}}} +|- +!Liga +|{{{liga}}} +|- +!{{{sez}}} +|{{{poz}}} +|- +| colspan="2" | +{{#if:{{{current|}}}| +[[Image:Current_sport.svg|50px]] ''{{{current}}}'' +}} +|- +|class="toccolours" style="padding: 0; background: #ffffff; text-align: center;" colspan="2"| +{| style="width:100%; text-align:center;" +|{{Football kit | + pattern_la = {{{pattern_la1|}}} | + pattern_b = {{{pattern_b1|_unknown}}} | + pattern_ra = {{{pattern_ra1|}}} | + pattern_sh = {{{pattern_sh1|}}} | + pattern_so = {{{pattern_so1|}}} | + leftarm = {{{leftarm1|}}} | + body = {{{body1|}}} | + rightarm = {{{rightarm1|}}} | + shorts = {{{shorts1|}}} | + socks = {{{socks1|}}} | + title = Sātys kruosys +}} +|{{Football kit | + pattern_la = {{{pattern_la2|}}} | + pattern_b = {{{pattern_b2|_unknown}}} | + pattern_ra = {{{pattern_ra2|}}} | + pattern_sh = {{{pattern_sh2|}}} | + pattern_so = {{{pattern_so2|}}} | + leftarm = {{{leftarm2|}}} | + body = {{{body2|}}} | + rightarm = {{{rightarm2|}}} | + shorts = {{{shorts2|}}} | + socks = {{{socks2|}}} | + title = Izbraucamuos kruosys +}} +|{{#if:{{{body3|}}}|{{Football kit | + pattern_la = {{{pattern_la3|}}} | + pattern_b = {{{pattern_b3|_unknown}}} | + pattern_ra = {{{pattern_ra3|}}} | + pattern_sh = {{{pattern_sh3|}}} | + pattern_so = {{{pattern_so3|}}} | + leftarm = {{{leftarm3|}}} | + body = {{{body3|}}} | + rightarm = {{{rightarm3|}}} | + shorts = {{{shorts3|}}} | + socks = {{{socks3|}}} | + title = Pagluobis kruosys +}}}} +|} +|}<noinclude> +[[af:Sjabloon:Inligtingskas Sokkerklub]] +[[bg:Шаблон:Футболен отбор]] +[[bn:Template:তথ্যছক ফুটবল ক্লাব]] +[[bs:Šablon:Fudbalski klub]] +[[ca:Plantilla:Equips]] +[[cs:Šablona:Infobox Fotbalový klub]] +[[da:Skabelon:Fodboldklub infoboks]] +[[de:Vorlage:Infobox Fußballklub]] +[[en:Template:Infobox Football club/doc]] +[[eu:Txantiloi:Futbol-talde infotaula]] +[[fa:الگو:جعبه باشگاه فوتبال]] +[[fi:Malline:Jalkapalloseura]] +[[fr:Modèle:Infobox Club de football]] +[[ga:Teimpléad:Club peile bosca eolais]] +[[gl:Modelo:Club de futbol]] +[[he:תבנית:קבוצת כדורגל]] +[[hr:Predložak:Nogometni klub]] +[[id:Templat:Football club infobox]] +[[is:Snið:Knattspyrnulið]] +[[it:Template:Squadra di calcio]] +[[ja:Template:サッカークラブ]] +[[ka:თარგი:ინფოდაფა საფეხბურთო კლუბი]] +[[ko:틀:축구 클럽팀 정보]] +[[lt:Šablonas:Infobox Football club]] +[[lv:Veidne:Futbola klubs]] +[[mk:Шаблон:Инфокутија фудбалски клуб]] +[[ml:ഫലകം:Infobox Football club]] +[[nn:Mal:Infoboks fotballag]] +[[no:Mal:Infoboks fotballag]] +[[pt:Predefinição:Info/Clube de futebol]] +[[ru:Шаблон:Карточка ФК]] +[[scn:Template:Infobox Football club]] +[[sl:Predloga:Football club infobox]] +[[sr:Шаблон:Фудбалски клуб]] +[[sv:Mall:Lagfakta]] +[[th:แม่แบบ:กล่องข้อมูล สโมสรฟุตบอล]] +[[uk:Шаблон:Футбольний клуб]] +[[vi:Tiêu bản:Tóm tắt câu lạc bộ bóng đá]] +[[zh:Template:Infobox Football club]] +</noinclude> + o0rnyyvs47jir4jxoc27ybteqd1k628 + + + + Taiss:ISO639-3 dokumentaceja + 10 + 621 + + 9392 + 9391 + 2011-03-19T13:45:16Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <tt>[http://www.sil.org/iso639-3/documentation.asp?id={{{code}}} {{{code}}}]</tt> + mq8nhol9rvgsv1qbxvzwqx9dteof7xt + + + + Taiss:Infoskreine Latvejis nūvods/doc + 10 + 622 + + 9401 + 9400 + 2011-03-19T13:45:16Z + + SPQRobin + 2 + + + 8 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <pre> +{{Infoskreine Latvejis nūvods +| pasauka = +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = gerbs <!-- Pyrma gerba nūruodeit mīstu, kam tys pīdar --> +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods <!-- Likvidetajim i naatjaunynuotajim pogostim i solu padūmem "Rajons" ci "Apleiciņs" --> +| nūvoda_pasauka = +| centrys = +| pluots = +| dzeivuotuoju_skaits = +| dzeivuotuoji_gods = <!-- Tik gods --> +| bīzeiba = +| īstateits = <!-- Tik gods --> +| likvidets = <!-- Tik gods --> +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} +</pre> + qpe5trky3wyt2fwx093g73n6hz4xnhg + + + + Taiss:Infoskreine Volūda + 10 + 623 + + 13121 + 13119 + 2011-04-10T00:10:40Z + + Glossologist + 79 + + wikitext + text/x-wiki + {| class="infobox" style="width: 22em; text-align: left; font-size: 88%; line-height: 1.5em" +! colspan=3 style="text-align: center; font-size: 125%; font-weight: bold; color: {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}} }}|black|1}}|white|{{{fontcolor|black}}} }}; background-color: {{#if:{{{creator|}}}{{{setting|}}}|black|{{#if:{{{signers|}}}|silver|{{Infoskreine Volūda/family-color|{{{familycolor|Default}}} }} }} }}" | {{{name|Language name}}} +|- +{{#if:{{{nativename|}}}| +! colspan=3 style="text-align: center; font-weight: bold; color: {{#if:{{{setting|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}} }}|black|1}}|white|{{{fontcolor|black}}} }}; background-color: {{#if:{{{creator|}}}{{{setting|}}}|black|{{#if:{{{signers|}}}|silver|{{Infoskreine Volūda/family-color|{{{familycolor|Default}}} }} }} }}" {{!}} {{{nativename|}}} +{{!}}- +}} +{{#if:{{{atvaigs|}}}| +! style="vertical-align: middle" {{!}} {{{caption|}}} +{{!}} colspan=2 {{!}} {{{atvaigs|}}} +{{!}}- +}} +{{#if:{{{pronunciation|}}}| +! Izsoka +{{!}} colspan=2 {{!}} {{{pronunciation|''tyks dalykta''}}} +{{!}}- +}} +{{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|black|1}}|! Iztaisejuši |! {{#if:{{{signers|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|silver|1}}|Žestu volūdu|Volūdu}} lītoj}} +| {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|black|1}}| +{{!}} {{{creator|–}}} +{{!}}-| +{{!}} {{{states|{{{regions|–}}} +{{!}}-}}} +}} +{{#if:{{{date|}}}| +! Date founded +{{!}} colspan=2 {{!}} {{{date}}} +{{!}}- +}} +|- +{{#ifexpr:{{#if:{{{states|}}}|1|0}}+{{#if:{{{regions|}}}|1|0}}!=1| +! {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|black}}|Pīlītuojums|Regioni}} +{{!}} colspan=2 {{!}} {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|black}}|{{{setting|–}}}|{{{regions|–}}} +}} +{{!}}- +}} +{{#if:{{{latd|}}}| +! [[Koordinatys]] +{{!}} colspan=2 {{!}} <small style="white-space: nowrap">{{coord|{{{latd}}}|{{{latm}}}|{{{latNS}}}|{{{longd}}}|{{{longm}}}|{{{longEW}}}|type:landmark|display=inline}}</small> +{{!}}- +}} +! {{#if:{{{extinct|}}}|[[Extinct language|Language extinction]]|{{#if:{{{signers|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|silver|1}}|Lītuotuoju|Runuotuoju}} skaits}} +| colspan=2 | {{#if:{{{extinct|}}}|{{{extinct}}}|{{#if:{{{signers|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}} }}|silver|1}}|{{{signers|–}}}|{{{speakers|–}}}{{#if:{{{Atlas UNESCO country|}}}|{{Atlas UNESCO|{{{Atlas UNESCO country}}}|{{{Atlas UNESCO language|{{PAGENAME}} }}} }} }} }} }} +|- +{{#if:{{{rank|}}}| +! [[Volūdu saroksts pa runuotuoju skaitam|Reitings]] +{{!}} colspan=2 {{!}} {{{rank}}} +{{!}}- +}} +|- +! {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|black|1}}|Category (purpose)|[[Volūdu saime]]}} +| colspan=2 style="text-align:left" | {{{family|{{{fam1|{{#if:{{{signers|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|silver|1}}|''Unknown''|{{#if:{{{creator|}}}{{{setting|}}}|[[constructed language]]|{{Infoskreine Volūda/genetic2|{{{familycolor|Default}}}}}}}}}}}} +<ul style="line-height:100%; margin-left:15px;padding-left:0"><li> +{{#if:{{{fam2|}}} +| {{{fam2}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam3|}}} +| {{{fam3}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam4|}}} +| {{{fam4}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam5|}}} +| {{{fam5}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam6|}}} +| {{{fam6}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam7|}}} +| {{{fam7}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam8|}}} +| {{{fam8}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam9|}}} +| {{{fam9}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam10|}}} +| {{{fam10}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam11|}}} +| {{{fam11}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam12|}}} +| {{{fam12}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam13|}}} +| {{{fam13}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam14|}}} +| {{{fam14}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{#if:{{{fam15|}}} +| {{{fam15}}}<ul style="line-height:100%; margin-left:5px;padding-left:0"><li>{{{name}}}</li></ul> +| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul>| {{{name}}} +}}</li></ul> +}}} +|- +{{#if:{{{standards|}}}| +! Standard forms +{{!}} colspan=2 {{!}} {{{standards}}} +}} +|- +{{#if:{{{stand1|}}}| +! Standard forms +{{!}} colspan=2 {{!}} <div>{{{stand1|}}}</div> +<div>{{{stand2|}}}</div> +<div>{{{stand3|}}}</div> +<div>{{{stand4|}}}</div> +<div>{{{stand5|}}}</div> +<div>{{{stand6|}}}</div> +}} +|- +{{#if:{{{dialects|}}}| +! Dialekti +{{!}} colspan=2 {{!}} {{{dialects}}} +}} +|- +{{#if:{{{dia1|}}}| +! Dialekti +{{!}} colspan=2 {{!}} <div>{{{dia1|}}}</div> +<div>{{{dia2|}}}</div> +<div>{{{dia3|}}}</div> +<div>{{{dia4|}}}</div> +<div>{{{dia5|}}}</div> +<div>{{{dia6|}}}</div> +<div>{{{dia7|}}}</div> +<div>{{{dia8|}}}</div> +<div>{{{dia9|}}}</div> +<div>{{{dia10|}}}</div> +<div>{{{dia11|}}}</div> +<div>{{{dia12|}}}</div> +<div>{{{dia13|}}}</div> +<div>{{{dia14|}}}</div> +<div>{{{dia15|}}}</div> +<div>{{{dia16|}}}</div> +<div>{{{dia17|}}}</div> +<div>{{{dia18|}}}</div> +<div>{{{dia19|}}}</div> +<div>{{{dia20|}}}</div> +}} +|- +{{#if:{{{script|}}}| +! [[Roksts (raksteiba)|Roksts]] +{{!}} colspan=2 {{!}} {{{script}}} +{{!}}- +}}{{#if:{{{posteriori|}}}| +! Category (sources) +{{!}} colspan=2 {{!}} {{{posteriori}}} +{{!}}- +}}{{#ifexpr:{{#if:{{{agency|}}}|1|0}} and {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|Default}}}}}|black|1}}|1|0}}|<nowiki/> +{{!}}- +! Regulators +{{!}} colspan=2 {{!}} {{{agency|''Navā''}}}|{{#if:{{{nation|}}}{{{agency|}}}|<nowiki/> +{{!}}- +! colspan=3 style="text-align: center; color: {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|black|1}}|white|{{{fontcolor|black}}}}}; background-color: {{#if:{{{signers|}}}|silver|{{#if:{{{creator|}}}{{{setting|}}}|black|{{Infoskreine Volūda/family-color|{{{familycolor|Default}}}}}}}}}" {{!}} Oficialais statuss +{{!}}- +! Oficialuo volūda +{{!}} colspan=2 {{!}} {{{nation|''Navā''}}} +{{!}}- +{{#if:{{{minority|}}}|! Pīzeita mozumtautu volūda +{{!}} colspan=2 {{!}} {{{minority|''Navā''}}} +{{!}}-}} +! Regulators +{{!}} colspan=2 {{!}} {{{agency|''Navā oficialys regulacejis''}}} }} }} +|- +! colspan=3 style="text-align: center; color: {{#if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}} }}|black|1}}|white|{{{fontcolor|black}}} }}; background-color: {{#if:{{{creator|}}}{{{setting|}}}|black|{{#if:{{{signers|}}}|silver|{{Infoskreine Volūda/family-color|{{{familycolor|Default}}} }} }} }}" | Volūdys kodi +|- +! [[ISO 639-1]] +| colspan=2 | {{#if:{{{iso1|}}}|<tt>{{{iso1}}}</tt>|''Navā''}} +|- +! [[ISO 639-2]] +| colspan="{{#if:{{{iso2b|}}}{{{iso2t|}}}|1|2}}" | <tt>{{#if:{{{iso2b|}}}{{{iso2t|}}} + |{{{iso2b|{{{iso2|–}}}}}} (B) + |{{#if:{{{signers|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|silver|1}} + |{{{iso2|sgn}}} + |{{ + #if:{{{creator|}}}{{{setting|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|black|1}} + |{{{iso2|art}}} + |{{{iso2|–}}}}}}}}}</tt>{{ + #if:{{{iso2b|}}}{{{iso2t|}}} + |{{Infoskreine Volūda/terminological|{{{iso2t|{{{iso2|}}}}}}}}}}{{#if:{{{SIL|}}} + |{{Infoskreine Volūda/SIL14|{{{SIL|}}}}}}}{{#if:{{{sil|}}} + |{{Infoskreine Volūda/SIL14|{{{sil|}}} }} }} +|- +! [[ISO 639-3]] +| colspan=2 | {{#if:{{{iso3|}}} + |{{#ifeq:{{{iso3|}}}|navā|''Navā''|<tt>[http://www.sil.org/iso639-3/documentation.asp?id={{{iso3}}} {{{iso3}}}]</tt> {{#if:{{{lc1|}}}| — [[makrovolūda]]}} {{{iso3comment|}}}}}|{{#if:{{{lc1|}}}| |–}}}}{{#ifexpr:{{#if:{{{lc1|}}}|1|0}} and {{#if:{{{lc2|}}}|1|0}}|{{#if:{{{iso3|}}}|<br />iņdividualī kodi|{{#if:{{{lc3|}}}|variously|either}}}}:{{Infoskreine Volūda/codelist +|{{{lc1|}}}|{{{ld1|}}}|{{{ll1|}}}}}{{Infoskreine Volūda/codelist +|{{{lc2|}}}|{{{ld2|}}}|{{{ll2|}}}}}{{Infoskreine Volūda/codelist +|{{{lc3|}}}|{{{ld3|}}}|{{{ll3|}}}}}{{Infoskreine Volūda/codelist +|{{{lc4|}}}|{{{ld4|}}}|{{{ll4|}}}}}{{Infoskreine Volūda/codelist +|{{{lc5|}}}|{{{ld5|}}}|{{{ll5|}}}}}{{Infoskreine Volūda/codelist +|{{{lc6|}}}|{{{ld6|}}}|{{{ll6|}}}}}{{Infoskreine Volūda/codelist +|{{{lc7|}}}|{{{ld7|}}}|{{{ll7|}}}}}{{Infoskreine Volūda/codelist +|{{{lc8|}}}|{{{ld8|}}}|{{{ll8|}}}}}{{Infoskreine Volūda/codelist +|{{{lc9|}}}|{{{ld9|}}}|{{{ll9|}}}}}{{Infoskreine Volūda/codelist +|{{{lc10|}}}|{{{ld10|}}}|{{{ll10|}}}}}{{Infoskreine Volūda/codelist +|{{{lc11|}}}|{{{ld11|}}}|{{{ll11|}}}}}{{Infoskreine Volūda/codelist +|{{{lc12|}}}|{{{ld12|}}}|{{{ll12|}}}}}{{Infoskreine Volūda/codelist +|{{{lc13|}}}|{{{ld13|}}}|{{{ll13|}}}}}{{Infoskreine Volūda/codelist +|{{{lc14|}}}|{{{ld14|}}}|{{{ll14|}}}}}{{Infoskreine Volūda/codelist +|{{{lc15|}}}|{{{ld15|}}}|{{{ll15|}}}}}{{Infoskreine Volūda/codelist +|{{{lc16|}}}|{{{ld16|}}}|{{{ll16|}}}}}{{Infoskreine Volūda/codelist +|{{{lc17|}}}|{{{ld17|}}}|{{{ll17|}}}}}{{Infoskreine Volūda/codelist +|{{{lc18|}}}|{{{ld18|}}}|{{{ll18|}}}}}{{Infoskreine Volūda/codelist +|{{{lc19|}}}|{{{ld19|}}}|{{{ll19|}}}}}{{Infoskreine Volūda/codelist +|{{{lc20|}}}|{{{ld20|}}}|{{{ll20|}}}}}{{Infoskreine Volūda/codelist +|{{{lc21|}}}|{{{ld21|}}}|{{{ll21|}}}}}{{Infoskreine Volūda/codelist +|{{{lc22|}}}|{{{ld22|}}}|{{{ll22|}}}}}{{Infoskreine Volūda/codelist +|{{{lc23|}}}|{{{ld23|}}}|{{{ll23|}}}}}{{Infoskreine Volūda/codelist +|{{{lc24|}}}|{{{ld24|}}}|{{{ll24|}}}}}{{Infoskreine Volūda/codelist +|{{{lc25|}}}|{{{ld25|}}}|{{{ll25|}}}}}{{Infoskreine Volūda/codelist +|{{{lc26|}}}|{{{ld26|}}}|{{{ll26|}}}}}{{Infoskreine Volūda/codelist +|{{{lc27|}}}|{{{ld27|}}}|{{{ll27|}}}}}{{Infoskreine Volūda/codelist +|{{{lc28|}}}|{{{ld28|}}}|{{{ll28|}}}}}{{Infoskreine Volūda/codelist +|{{{lc29|}}}|{{{ld29|}}}|{{{ll29|}}}}}{{Infoskreine Volūda/codelist +|{{{lc30|}}}|{{{ld30|}}}|{{{ll30|}}}}}{{Infoskreine Volūda/codelist +|{{{lc31|}}}|{{{ld31|}}}|{{{ll31|}}}}}{{Infoskreine Volūda/codelist +|{{{lc32|}}}|{{{ld32|}}}|{{{ll32|}}}}}{{Infoskreine Volūda/codelist +|{{{lc33|}}}|{{{ld33|}}}|{{{ll33|}}}}}{{Infoskreine Volūda/codelist +|{{{lc34|}}}|{{{ld34|}}}|{{{ll34|}}}}}{{Infoskreine Volūda/codelist +|{{{lc35|}}}|{{{ld35|}}}|{{{ll35|}}}}}{{Infoskreine Volūda/codelist +|{{{lc36|}}}|{{{ld36|}}}|{{{ll36|}}}}}{{Infoskreine Volūda/codelist +|{{{lc37|}}}|{{{ld37|}}}|{{{ll37|}}}}}{{Infoskreine Volūda/codelist +|{{{lc38|}}}|{{{ld38|}}}|{{{ll38|}}}}}{{Infoskreine Volūda/codelist +|{{{lc39|}}}|{{{ld39|}}}|{{{ll39|}}}}}{{Infoskreine Volūda/codelist +|{{{lc40|}}}|{{{ld40|}}}|{{{ll40|}}}}}{{Infoskreine Volūda/codelist +|{{{lc41|}}}|{{{ld41|}}}|{{{ll41|}}}}}{{Infoskreine Volūda/codelist +|{{{lc42|}}}|{{{ld42|}}}|{{{ll42|}}}}}{{Infoskreine Volūda/codelist +|{{{lc43|}}}|{{{ld43|}}}|{{{ll43|}}}}}{{Infoskreine Volūda/codelist +|{{{lc44|}}}|{{{ld44|}}}|{{{ll44|}}}}}{{Infoskreine Volūda/codelist +|{{{lc45|}}}|{{{ld45|}}}|{{{ll45|}}} }} + |{{#if:{{{lc1|}}}|{{#if:{{{iso3|}}}|<br />individual code:<br />}}<tt>[http://www.sil.org/iso639-3/documentation.asp?id={{{lc1}}} {{{lc1}}}]</tt> – {{#if:{{{ll1|}}}|{{#ifeq:{{{ll1|}}}|navā|{{{ld1|}}}|[[{{{ll1}}}|{{{ld1|}}}]]}}|[[{{{ld1|}}}]]}} }} }} +|- +{{#if:{{{map|}}}| +{{!}} colspan=3 style="vertical-align: middle; padding-top: 5px" {{!}} {{{map|}}} +{{!}}- +}} +{{Infoskreine Volūda/{{#if:{{{signers|}}}{{#ifeq:{{Infoskreine Volūda/family-color|{{{familycolor|}}}}}|silver|1}}|signnotice|{{{notice|IPA}}}}}|{{#if:{{{IPAChartEng|}}}|IPAChartEng=1}} }} +|}<noinclude> +{{-}} +{{Dokumentaceja}} +</noinclude> + rpzbokfpmxkmz9itekuer9w6w3mu4mh + + + + Taiss:Infoskreine Volūda/codelist + 10 + 624 + + 30867 + 30823 + 2015-08-26T20:46:12Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q5611719]] + wikitext + text/x-wiki + {{#if:{{{1|}}} + |<br />{{ISO639-3 dokumentaceja|code={{{1}}}}}&nbsp;&ndash;&nbsp;{{#if:{{{3|}}} + |{{#ifeq:{{{3|}}}|navā + |{{{2|}}} + |[[{{{3}}}|{{{2|}}}]] + }} + |[[{{{2|}}}]] + }} +}}<noinclude> +[[id:Templat:Infobox Language/codelist]] +[[vi:Tiêu bản:Infobox Language/codelist]] +[[zh:Template:Infobox Language/codelist]] +</noinclude> + 39n3qdzh78yzo23namm1rgd19a1exub + + + + Taiss:Infoskreine Volūda/doc + 10 + 625 + + 30016 + 22777 + 2013-08-16T15:46:07Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q7217946]] + wikitext + text/x-wiki + <pre> +{{Infoskreine Volūda +| name = name of language #REQUIRED +| nativename = native name of the language +| pronunciation = IPA pronunciation of the native name +| states = countries in which it is mainly spoken +| region = geographic region in which it is mainly spoken +| latd = | latm = | latNS = <!-- latitude degree/min/dir--> +| longd = | longm = | longEW = <!-- longitude deg/min/dir--> +| speakers = the number of speakers of the language +| iso1 = the ISO 639-1 code for the language +| iso2 = the ISO 639-2 code for the language +| iso2b = the ISO 639-2 bibliographic code +| iso2t = the ISO 639-2 terminological code +| iso3 = the ISO 639-3 code for the language +| familycolor = appropriate language family #REQUIRED +| fam1 = the broadest possible widely accepted [[language family]] of which the language is a part. +| fam2 = a more specific sub-family +| ... +| fam15 = most specific sub group +| family = whatever you want to say +| dia1 = a primary dialect +| dia2 = another primary dialect +| ... (up to 20) +| dialects = whatever you want to say +| stand1 = a standardized register +| stand2 = a second standardized register +| ... (up to 6) +| standards = whatever you want to say +| script = the writing system(s) used to represent the language +| rank = language's ranking in the 'list of languages by number of native speakers' +| nation = list of countries in which it is an official language +| minority = list of countries in which it is a recognised minority language +| agency = regulatory body or language academy for the language +| extinct = date of extinction, or information about extinction +| lc1 = language code of the first dialect +| ld1 = name of the first language dialect +| ll1 = link to the Wikipedia article on that dialect +| signers = number of people who sign that language +| creator = name of language creator +| date = year of first creation +| setting = the use or setting for the language +| posteriori = natural-language sources +| caption = very simple description of image +| image = [[File:image name.png|center|200px|alt=Alt text|Caption]] +| map = [[File:image name.png|center|thumb|300px|alt=Alt text|Caption]] +| notice = Indic +| notice = nonotice +}} +</pre> + +== Zamtaisi == +* [[Template:Infoskreine Volūda/IPA]] +* [[Template:Infoskreine Volūda/codelist]] +* [[Template:Infoskreine Volūda/family-color]] +* [[Template:Infoskreine Volūda/genetic2]] +* [[Template:Infoskreine Volūda/terminological]] + +<includeonly> +{{DEFAULTSORT:Voluda}} +[[Category:Infoskreinis]] + +[[cy:Nodyn:Gwybodlen Iaith]] +[[en:Template:Infobox Language]] +[[es:Plantilla:Idioma]] +[[hu:Sablon:Nyelv]] +[[it:Template:lingua]] +[[ja:Template:言語]] +[[la:Formula:Lingua]] +[[pt:Predefinição:Língua]] +[[sl:Template:Language]] +[[sv:Mall:språk]] +[[tr:Şablon:Dil]] +</includeonly> + db0xhdzr84wqcsiq4yq6s43mbzma3rx + + + + Taiss:Infoskreine Volūda/terminological + 10 + 626 + + 29943 + 29867 + 2013-08-01T07:07:19Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q11205254]] + wikitext + text/x-wiki + &nbsp; +| style="vertical-align: top; padding-left: 0.5em;"|<tt>{{{1|—}}}&nbsp;(T)</tt><noinclude> + +[[ne:ढाँचा:Infobox language/terminological]] +</noinclude> + 8rir0qfkil3u3pjp36rbnnqtg3s9d9p + + + + Taiss:Infoskreine Latvejis mīsts/doc + 10 + 627 + + 27532 + 14531 + 2013-02-04T17:13:54Z + + Vilnisr + 1606 + + wikitext + text/x-wiki + <pre> +{{Latvejis mīsts +| pasauka = +| mīsta_tips = +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| zemislopys_atvaigs = <!-- Tik, ka nalītoj "koordinatu zemislopu" --> +| gerba_atvaigs = +| gerba_pasauka = gerbs <!-- Pyrma gerba nūruodeit mīstu, kam tys pīdar --> +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latvia (nūvodi) <!-- Var damāruot ari cytys --> +| pushpin_label_position = left <!-- mīstim, kas irā tyvai pi lobuo rama --> +| latd = | latm = | lats = | latNS = N +| longd = | longm = | longs = | longEW = E +| nūvods = +| pluots = +| dzeivuotuoji_gods = <!-- Tik gods --> +| dzeivuotuoju_skaits = +| bīzeiba = +| viesturiskuos_pasaukys = +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = +| posta_iņdeksi = +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} +</pre> + j35na40g5ufq24e78xeyw2ge00c54vo + + + + Taiss:Location map + 10 + 630 + + + 9452 + 9451 + 2011-03-19T13:45:23Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa]] + tc1kofuwcxymh080gmn8ji96e3c1nu5 + + + + Taiss:Location map/Info + 10 + 631 + + + 9455 + 9454 + 2011-03-19T13:45:23Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Info]] + dggm0lm05k61vpsjf1053khz408bkuq + + + + Taiss:Location map Latvia + 10 + 632 + + + 9458 + 9457 + 2011-03-19T13:45:23Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Latveja]] + bdeopfvu7ot2rnoj9sm7iuab59cygf2 + + + + Taiss:Location map Latvia (nūvodi) + 10 + 633 + + + 9462 + 9461 + 2011-03-19T13:45:23Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Latveja]] + bdeopfvu7ot2rnoj9sm7iuab59cygf2 + + + + Taiss:Location map Latvia (rajoni) + 10 + 634 + + + 9465 + 9464 + 2011-03-19T13:45:23Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Latveja (rajoni)]] + 0fhyz3fbwvpkbqjfk0ccnjzv4ojofss + + + + Taiss:Max + 10 + 635 + + 21170 + 9468 + 2012-02-22T14:36:36Z + + Iketsi + 288 + + + -[[Category:Wp/ltg]] + wikitext + text/x-wiki + <includeonly>{{#if:{{{1|}}}|{{#expr:{{#if:{{{2|}}}|{{#if:{{{3|}}}|{{#ifexpr:({{{1}}})>({{{2}}})|{{#ifexpr:({{{1}}})>({{{3}}})|{{{1}}}|{{{3}}}}}|{{#ifexpr:({{{2}}})>({{{3}}})|{{{2}}}|{{{3}}}}}}}|{{#ifexpr:({{{1}}})>({{{2}}})|{{{1}}}|{{{2}}}}}}}|{{{1}}}}}}}|}}</includeonly><noinclude> +</noinclude> + e3r2451zhsr13ymyqajc1amwnoti1t0 + + + + Taiss:NA-70 + 10 + 636 + + 9472 + 9471 + 2011-03-19T13:45:24Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <div class="boilerplate" style="margin:0 auto;width:80%;background-color:#f7f8ff;border:2px solid #8888aa; + padding:4px;font-size:85%;min-height:50px;vertical-align:center" id="imageLicense"> +<div style="float:left" id="imageLicenseIcon">[[File:PD-icon.svg|50px|Public license]]</div> +<div style="text-align:center;margin-left:68px" id="imageLicenseText"> +Itū dorbu '''nasorgoj autortīseibys''' Latvejā i vaļsteibuos, kuramuos autortīseibu goladīna irā 70 godu piec autora ci autoru mieršonys. +</div> +</div> +<includeonly>[[Category:Nasorgojamī dorbi]]</includeonly> +<noinclude>[[Category:Atvaigu autortīseibu taisi|{{SUBPAGENAME}}]]</noinclude> + hs8rsilbndi2ufqmcchcjk6wuctakfe + + + + Taiss:Naparaksteits + 10 + 637 + + 30824 + 30015 + 2015-08-08T12:14:06Z + + YiFeiBot + 2627 + + + Bot: Migrating 2 langlinks, now provided by [[d:|Wikidata]] on [[d:q5573785]] + wikitext + text/x-wiki + <small><span class="autosigned">—Itū komentaru anonimai dalika [[User:{{{1}}}|{{{1}}}]] ([[User talk:{{{1}}}|sprīža]] • [[Special:Contributions/{{{1}}}|devīņs]]){{#if:{{{2|}}}|&#32;{{{2}}}|}}</span></small><noinclude> + +{{DEFAULTSORT:Naparaksteits}} +[[Category:Vikipedejis davēris taisi]] + +</noinclude> + 6x21irqj3h5n8l9k8cwu71njq6zqjxh + + + + Taiss:PD-nazynoms + 10 + 638 + + 9479 + 9478 + 2011-03-19T13:45:24Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <div class="boilerplate" style="margin:0 auto;width:80%;background-color:#f7f8ff;border:2px solid #8888aa; + padding:4px;font-size:85%;min-height:50px;vertical-align:center" id="imageLicense"> +<div style="float:left" id="imageLicenseIcon">[[File:PDmaybe-icon.svg|50px|Public license]]</div> +<div style="text-align:center;margin-left:68px" id="imageLicenseText"> +Itū dorbu '''nasorgoj autortīseibys''', partū ka autors navā zynoms – navā autortīseibu subjekta. Gadīnī, ka autors teik zynoms, dorbam damāruojami [http://www.likumi.lv/doc.php?id=5138 Autortīseibu lykuma] aizprasejumi. +</div> +</div> +<includeonly>[[Category:Nazynomu autoru dorbi]]</includeonly> +<noinclude>[[Category:Atvaigu autortīseibu taisi|{{PAGENAME}}]]</noinclude> + jd6oaw8liswvvzobh1lwgj30ezs8hgx + + + + Taiss:Pataiseit + 10 + 639 + + 9652 + 9481 + 2011-03-19T13:45:34Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + <small class="plainlinks">[{{fullurl:{{{1|{{FULLPAGENAME}}}}}|action=edit}} +/−]</small><noinclude>{{Template:Dokumentaceja}}</noinclude> + 2c2pmlwehjx4d7opuz7q785pwvl4ffo + + + + Taiss:Pats + 10 + 640 + + 31199 + 19655 + 2015-11-15T10:59:12Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + {| cellspacing="8" cellpadding="0" style="width:100%; clear:both; margin:0.5em auto; background-color:#f7f8ff; border:2px solid #8888aa;" +| [[File:PD-icon.svg|55px]] +| <center>Es, '''ituo atvaiga autors''', paslūdynu, ka tys irā breivai lītojams kaidim naviņ pastatīnim.</center> +|}<includeonly>[[Category:Breivai lītojami atvaigi|{{PAGENAME}}]]</includeonly> +<noinclude>[[Category:Atvaigu autortīseibu taisi|{{SUBPAGENAME}}]] +</noinclude> + p70jx9u9rl8ei3vfvafns6vene3i34l + + + + Taiss:Plotuok + 10 + 641 + + 19675 + 9495 + 2012-01-01T21:35:44Z + + MerlIwBot + 221 + + + robots izņem: [[pl:Szablon:Artykuł kategorii]] (deleted), [[da:Skabelon:Katmere]] (deleted) + wikitext + text/x-wiki + :<div class="boilerplate" id="catmore">''Vaira verīs rakstīnī '''[[{{{1|{{PAGENAME}}}}}|{{{2|{{SUBPAGENAME}}}}}]]'''.''</div><noinclude> +{{DEFAULTSORT:Plotuok}} +[[Category:Vikipedejis davēris taisi]] + +[[af:Sjabloon:Hoofartikel]] +[[an:Plantilla:Catmás]] +[[ar:قالب:مزيد]] +[[bg:Шаблон:Категория инфо]] +[[bn:Template:মূল নিবন্ধ]] +[[ca:Plantilla:Infocat]] +[[cs:Šablona:Hlavní článek]] +[[el:Πρότυπο:Catmore]] +[[en:Template:Catmore]] +[[eo:Ŝablono:Catmore]] +[[es:Plantilla:Catmás]] +[[eu:Txantiloi:Nagusia]] +[[fr:Modèle:Article principal]] +[[gu:Template:Catmore]] +[[hr:Predložak:Catmore]] +[[hu:Sablon:Kategóriaszócikk]] +[[hy:Կաղապար:CatMain]] +[[ia:Patrono:Catmore]] +[[id:Templat:Artikelutama]] +[[is:Snið:Skoða meira]] +[[ja:Template:Catmore]] +[[ko:틀:분류 설명]] +[[lb:Template:Catmore]] +[[li:Sjabloon:Catmore]] +[[lt:Šablonas:Plačiau]] +[[lv:Veidne:Catmore]] +[[mk:Шаблон:Катпов]] +[[no:Mal:Hovedartikkel]] +[[oc:Modèl:ArticlePrincipal]] +[[pt:Predefinição:Catmore]] +[[ro:Format:Catmore]] +[[ru:Шаблон:CatMain]] +[[sh:Template:Main]] +[[sk:Šablóna:Catmore]] +[[sl:Predloga:Članek ktgr]] +[[sr:Шаблон:Кат]] +[[sv:Mall:Huvudartikel]] +[[tl:Template:Catmore]] +[[tr:Şablon:Kategori açıklaması]] +[[uk:Шаблон:Докладніше]] +[[vi:Tiêu bản:Bài chính thể loại]] +[[zh:Template:Catmore]] +</noinclude> + php31lvlqyyrf5n7zagwefijz5gjlvi + + + + Taiss:Precision/tz + 10 + 642 + + 9499 + 9498 + 2011-03-19T13:45:25Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{Precision/tz/1|x{{{1}}}|x{{#expr:{{{1}}}+0}}}}</includeonly> + q2ex46sqp4612tmy5711y6d0wsfqhhp + + + + Taiss:Precision/tz/1 + 10 + 643 + + 9502 + 9501 + 2011-03-19T13:45:25Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{#switch:{{{1}}}|{{{2}}}|{{{2}}}.=0|{{{2}}}0|{{{2}}}.0=1|{{{2}}}00|{{{2}}}.00=2|{{{2}}}000|{{{2}}}.000=3|{{{2}}}0000|{{{2}}}.0000=4|{{{2}}}00000|{{{2}}}.00000=5|0}}</includeonly> + bjzp6alq46dhitfvav1akdnfu8rza23 + + + + Taiss:Precision1 + 10 + 644 + + 9507 + 9506 + 2011-03-19T13:45:25Z + + SPQRobin + 2 + + + 4 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <includeonly>{{#expr:{{#ifeq:{{{1}}}|0|0|{{#ifexpr:{{{1}}} round 0={{{1}}}|0|{{#ifexpr:{{{1}}} round 1={{{1}}}|1|{{#ifexpr:{{{1}}} round 2={{{1}}}|2|{{#ifexpr:{{{1}}} round 3={{{1}}}|3|{{#ifexpr:{{{1}}} round 4={{{1}}}|4|{{#ifexpr:{{{1}}} round 5={{{1}}}|5|6}}}}}}}}}}}}}}+{{Precision/tz|{{{1}}}}}}}</includeonly> + fx5cvhx60iqrywaq7c919o1ht19mmz8 + + + + Taiss:Seduols + 10 + 645 + + 29779 + 13025 + 2013-04-14T23:36:50Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {| style="clear:both; margin: 0.5em auto; width:80%; text-align: center; background-color:#f8f8f8; border:2px solid #e0e0e0; padding:5px;" +|- +| [[File:CC SomeRightsReserved.png|Creative Commons License]] <br /> [[File:Cc-by white.svg|24px|Creative Commons Attribution icon]][[File:Cc-sa white.svg|24px|Creative Commons Share Alike icon]] +| Ituos fotografejis autors irā Jānis Seduols. Fotografeja jimta nu [http://jonins.mii.lu.lv/ia/ia.htm I-ALBUMI] i teik plateita pa liceņcejis <br /> '''[http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution ShareAlike License v. 3.0] nūsacejumim.''' +---- +''Breiv bez aprūbežuojumu plateit itū dorbu, puormeit i izlītuot ar kaidim naviņ (taipoš ar komercialim) snāgim, ka byus nūruodeits pirmeigais autors – Jānis Seduols – i izglobuota ituo liceņceja.'' + +Atvaiga pirmeigais adress – {{{1}}} +|}<includeonly> +[[Category:Pa Creative Commons licencēti atvaigi|{{PAGENAME}}]] +</includeonly><noinclude> +'''Taisa lītuošona i pareiza atvaigu īsyuteišona nu ''I-ALBUMI'' teiklavītys.''' + +Taisu lītoj, atvaiga puslopā īrokstūt '''<nowiki>{{Sedols|http://jonins.mii.lu.lv/ia/...}}</nowiki>''', kurymā aiz stuoviniskuos streipis vajag raksteit lopys adresu. Vajag īsyuteit atvaiga pylnū verseju; tū var īgiut, mīdzūt iz nūruodi "A" atvaiga aprakstejumā I-ALBUMĀ. + + +[[Category:Atvaigu autortīseibu taisi|{{SUBPAGENAME}}]] + +</noinclude> + nps5rcpo5ngpydzifnr5hqp4uga4nj6 + + + + Taiss:Tl + 10 + 646 + + 12042 + 9654 + 2011-03-26T03:19:14Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + <span style="color:#9098A0" class="wp-templatelink">{{[[Taiss:{{{1}}}|{{{1}}}]]}}</span> + 3bkf4nh5uqe5lnl2gni3s87saxbu16f + + + + Taiss:Unsigned + 10 + 647 + + + 9521 + 9520 + 2011-03-19T13:45:26Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Naparaksteits]] + ahr838is2hwgn7jk4293pqpr87z740g + + + + Taiss:User ltg + 10 + 648 + + 29766 + 27763 + 2013-04-14T23:06:09Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +|lang = ltg +|name = Latgaļu volūda +|level = N +|size = +|info = '''[[:Kategoreja:User ltg|Latgaļu volūda]]''' irā ituo lītuotuoja '''[[:Kategoreja:User ltg-N|dzymtuo volūda]]'''. +}}<noinclude> +</noinclude> + kd20k1i8gyzpoostm5z685rbpzmyz4o + + + + Taiss:User ltg-0 + 10 + 649 + + 29761 + 27764 + 2013-04-14T23:00:26Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = ltg +| name = Latgaļu volūda +| level = 0 +| size = +| info = Itys lītuotuojs '''[[:Kategoreja:User ltg|latgaļu volūdys]]''' '''[[:Kategoreja:User ltg-0|namuok]]''' (ci saprūt ar lelim gryutumim). +}}<noinclude> +</noinclude> + jpacsva8zfv0zkgdum9xgrrn4e8mhet + + + + Taiss:User ltg-1 + 10 + 650 + + 29769 + 27767 + 2013-04-14T23:07:53Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = ltg +| name = Latgaļu volūda +| level = 1 +| size = +| info = Itys lītuotuojs '''[[:Kategoreja:User ltg|latgaļu volūdu]]''' muok '''[[:Kategoreja:User ltg-1|suoku leidzīnī]]'''. +}}<noinclude> +</noinclude> + 6ls9gx275m1rfwg2cz79e9xxcqz5sqx + + + + Taiss:User ltg-2 + 10 + 651 + + 29753 + 27768 + 2013-04-14T22:24:58Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = ltg +| name = Latgaļu volūda +| level = 2 +| size = +| info = Itys lītuotuojs '''[[:Kategoreja:User ltg|latgaļu volūdu]]''' muok '''[[:Kategoreja:User ltg-2|vydyskā leidzīnī]]'''. +}}<noinclude> +</noinclude> + 20nxcsrja2wvdwmibjwjkkghxoyusxm + + + + Taiss:User ltg-3 + 10 + 652 + + 29767 + 27765 + 2013-04-14T23:06:53Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = ltg +| name = Latgaļu volūda +| level = 3 +| size = +| info = Itys lītuotuojs '''[[:Kategoreja:User ltg|latgaļu volūdu]]''' muok '''[[:Kategoreja:User ltg-3|gon lobā leidzīnī]]'''. +}}<noinclude> +</noinclude> + shzqqd0dqtky8abc47oqo4a4j5f9goz + + + + Taiss:User ltg-4 + 10 + 653 + + 29795 + 27766 + 2013-04-15T01:45:09Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +|lang = ltg +|name = Latgaļu volūda +|level = 4 +|size = +|info = Itys lītuotuojs '''[[:Kategoreja:User ltg|latgaļu volūdu]]''' muok '''[[:Kategoreja:User ltg-4|kūna kai dzymtū volūdu]]'''. +}}<noinclude> +</noinclude> + 77gae2t73lb0szyxlg9590dtv5r62k7 + + + + Taiss:Vasals + 10 + 654 + + 29875 + 28413 + 2013-05-13T22:31:21Z + + Iketsi + 288 + + + wikidata + wikitext + text/x-wiki + {| align="center" class="notice noprint" style="border:3px solid darkgreen; padding:0.5em; margin:0.5em auto; width:100%;" +|- +|valign="top" style="padding: 0.1em"| [[Fails:Information icon4.svg|40px]] <font size="4px">'''Vasals(-a) Vikipedejā, <span style="color:green;">{{PAGENAME}}</span>!'''</font> <span style="font-size:x-small;line-height:140%" class="plainlinks">''([[Taiss:Vasals/en|in English]])''</span> +---- +Loba dīna [[latgaļu volūda|latgaļu volūdys]] [[Vikipedeja|Vikipedejā]] - daudzivolūdeigā škārsteikla [[eņciklopedeja|eņciklopedejā]] ar breivu turīni! + +Pyrma suoc dareit, lyudzams(-a), puorskaiti: +* [[Vikipedeja:Stiļa rūkysgruomota|Stiļa rūkysgruomota]] +* [[Vikipedeja:Pareizraksteiba|Pareizraksteiba Vikipedejā]] +* [[Vikipedeja:Rakstīņa papiļdeišona|Kai papiļdeit rakstīni?]] +* [[Vikipedeja:Vikipedejis termini|Vikipedejis termini]] + +Vaira vaicoj latgaļu Vikipedejis [[Vikipedeja:Dūmu meits|'''Dūmu meitā''']]. +---- +'''Lyudzams, pasarakstej sovejūs komentarus''' ar četrom tildem (<nowiki>~~~~</nowiki>) ci damīdz [[Fails:Insert-signature.png]]. Paļdis! +|}<noinclude> + +{{Dokumentaceja}} + +[[Kategoreja:Vikipedejis davēris taisi]] + +</noinclude> + 3m85dzretiofwh1its6x5wcad9ol2wz + + + + Taiss:Vasals/doc + 10 + 655 + + 9592 + 9591 + 2011-03-19T13:45:30Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + == Verīs taipoš: == +* [[:lv:Veidne:Sveiciena teksts|''latvyskai'']] +* [[:lt:Šablonas:Sveiki|''lītavyskai'']] + 1s8fn6lgrggp3409tqkber36gi2udkb + + + + Taiss:Vasals/en + 10 + 656 + + 22473 + 12463 + 2012-04-16T04:45:18Z + + Koavf + 517 + + wikitext + text/x-wiki + {| align="center" class="notice noprint" style="border:3px solid darkgreen; padding:0.5em; margin:0.5em auto; width:100%;" +|- +|valign="top" style="padding: 0.1em"| [[File:Information icon4.svg|40px]] <font size="4px">'''Vasals(-a) Vikipedejā!'''</font> +---- +Welcome to Wikipedia's '''Latgalian language''' edition! Latgalian is a language spoken in the Northern Europe, eastern part of Latvia known as Latgola and also in Siberia, Russia. <br /> It has a valid SIL language code [http://www.sil.org/iso639-3/documentation.asp?id=ltg '''ltg''']. + +If you are interested in Latgalian Wikipedia, you may have a look here: +* [[Vikipedeja:Rakstīņa papiļdeišona|Datorzineibys termini]] &ndash; ''Glossary of IT terminology'' +* [[Vikipedeja:Vikipedejis termini|Vikipedejis termini]] &ndash; ''Glossary of Wikipedia's terms'' + +For more questions go to [[Vikipedeja:Dūmu meits|'''Dūmu meits''']] &ndash; our Wikipedia's discussion page. +---- +'''Please sign your messages on discussion pages using four tildes (<nowiki>~~~~</nowiki>) or press [[File:Insert-signature.png]].''' <br /> <small>(this will automatically insert your username and the date)</small> +:''Thank you! Paļdis!'' +---- +<span style="font-size:x-small;line-height:140%" class="plainlinks">[[Taiss:Vasals|latgaliskai]]</span> +|} + ph0ngqom0mqrw9v5dttgtsox9gnvxlt + + + + Taiss:Vol-es + 10 + 658 + + 29945 + 29459 + 2013-08-01T07:07:28Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q8127484]] + wikitext + text/x-wiki + {{langWithName|es|spanīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|es]] + +</noinclude> + jgx0tuoovtjpor546bedsyu39y7guze + + + + Taiss:Vol-sw + 10 + 659 + + 31347 + 30017 + 2016-03-07T03:29:39Z + + Varlaam + 1454 + + + wikitext + text/x-wiki + {{langWithName|sw|svahili|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|sw]] +</noinclude> + f6thp1me0lkrokdisgit3ge34dmyauj + + + + Taiss:Vuoki + 10 + 660 + + 9619 + 9618 + 2011-03-19T13:45:31Z + + SPQRobin + 2 + + + 4 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + <div class="boilerplate" style="margin:0.5em auto; width:80%; clear:both; background-color:#f7f8ff; border:2px solid #8888aa; padding:4px; font-size:85%; min-height:64px; vertical-align:center" id="imageLicense"> +<div style="float:left" id="imageLicenseIcon">[[File:Fair use icon - Book.png|64px|Copyrighted]] [[File:Red copyright.svg|45px|Copyrighted]]</div> +<div style="text-align:center; margin-left:68px" id="imageLicenseText"> +'''Itys irā skonuīroksta, gruomotys, žurnala ci cyta drukavuota laidīņa vuoku atvaigs.''' <br /> Itū atvaigu '''sorgoj autortīseibys''', kurys vysutycamuok tur laidiejs ci atvaiga muokslinīks. Ituo dorba zama škeireiguma atvaigs lītojams vuiceibu i informativim snāgim kai teirssirdeigi lītojams (''fair-use'') atvaigs. Atvaiga līteiguošona uors Vikipedejis var byut autortīseibu puorlauzums. <br /> '''Papyldomai itam taisam pi sevkura atvaiga dalīkoma nūruode iz ceļšonuos olūtu!''' +</div> +</div><includeonly> +[[Category:Vuoku atvaigi|{{PAGENAME}}]] +</includeonly><noinclude> +[[Category:Atvaigu autortīseibu taisi|{{SUBPAGENAME}}]] +</noinclude> + 93q4e01uyobgpft1x3q9d8khezczy63 + + + + Taiss:Vītys karta + 10 + 661 + + + 9621 + 9620 + 2011-03-19T13:45:31Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa]] + tc1kofuwcxymh080gmn8ji96e3c1nu5 + + + + Taiss:Vītys karta/Info + 10 + 662 + + + 9623 + 9622 + 2011-03-19T13:45:31Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Info]] + dggm0lm05k61vpsjf1053khz408bkuq + + + + Taiss:Vītys karta/Latveja (rajoni) + 10 + 663 + + + 9625 + 9624 + 2011-03-19T13:45:31Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Vītys zemislopa/Latveja (rajoni)]] + 0fhyz3fbwvpkbqjfk0ccnjzv4ojofss + + + + Taiss:Vītys zemislopa/Info + 10 + 664 + + 14478 + 14472 + 2011-05-29T14:58:45Z + + Dark Eagle + 34 + + + Atcēlu [[Special:Contributions/Dark Eagle|Dark Eagle]] ([[User talk:Dark Eagle|Diskusija]]) izdarīto izmaiņu 14472 + wikitext + text/x-wiki + <includeonly> +{| class="wikitable" style="text-align:center" +|+ Vītys zemislopa «{{{{PAGENAME}}|name}}» +|- +|colspan="4"|[[Fails:{{{{PAGENAME}}|image}}|400x400px|{{PAGENAME}}]] +|- +! Zemislopys pasauka +|colspan="3"| [[{{{{PAGENAME}}|name}}|{{{{PAGENAME}}|name}}]] +|- +!rowspan="4"| Rūbežu koordinatys +|- +|colspan="3"| {{{{PAGENAME}}|top}} +|- +| {{{{PAGENAME}}|left}} +| ←↕→ +| {{{{PAGENAME}}|right}} +|- +|colspan="3"| {{{{PAGENAME}}|bottom}} +|- +! Atvaigs +|colspan="3"| <tt>[[:Fails:{{{{PAGENAME}}|image}}|{{{{PAGENAME}}|image}}]]</tt> +|- +! Zemislopys vyducs +|colspan="4"| {{Coord|{{#expr:({{{{PAGENAME}}|top}}+{{{{PAGENAME}}|bottom}})/2}}|{{#expr:({{{{PAGENAME}}|left}}+{{{{PAGENAME}}|right}})/2}}}} +|} +</includeonly> + 3ex15yxdjmagwzkvsw1le4o2kvxam7h + + + + Taiss:Vītys zemislopa/Latveja (rajoni) + 10 + 665 + + 30825 + 9645 + 2015-08-08T12:14:26Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q13408578]] + wikitext + text/x-wiki + {{#switch:{{{1}}} +| name = Latveja +| top = 58.5 +| bottom = 55.5 +| left = 20.5 +| right = 28.6 +| image = Latvijas rajonu karte.svg +}}<noinclude>{{Vītys zemislopa/Info|Latveja}} + +{{DEFAULTSORT:Latveja, vitys zemislopa, rajoni}} +[[Category:Byusmis vītys taisi]] + +</noinclude> + 5qcpifoc33jipxtm4t0vvldznwr345l + + + + Taiss:Doc + 10 + 666 + + + 9647 + 9646 + 2011-03-19T13:45:34Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + #REDIRECT [[Template:Dokumentaceja]] + 37gc5xz4x34k5trjibocph1thtuxflv + + + + Taiss:· + 10 + 670 + + 9656 + 9655 + 2011-03-19T13:45:34Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + <span style="white-space:nowrap; font-weight:bold;">&nbsp;·</span> + 57h7q9rocaevjxclgecwzb29i0qdn7j + + + + Kategoreja:Agreimī vydslaiki + 14 + 671 + + 9658 + 9657 + 2011-03-19T13:45:34Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Agreimī vydslaiki}} +[[Category:Vydslaiki]] + hf2ymnbrwc6hguvq0kg5d7jeuvgpel9 + + + + Kategoreja:Akademiskuos zineibys + 14 + 672 + + 30826 + 30022 + 2015-08-08T12:14:46Z + + YiFeiBot + 2627 + + + Bot: Migrating 3 langlinks, now provided by [[d:|Wikidata]] on [[d:q6642719]] + wikitext + text/x-wiki + {{Commonscat|Academic disciplines|Akademiskuos zineibys}} + +{{DEFAULTSORT:Akademiskuos zineibys}} +[[Category:Vuiceiba]] + moyble7bxrnkc4qpz27plmzugpw35xo + + + + Kategoreja:Akmiņa laiki + 14 + 673 + + 9663 + 9662 + 2011-03-19T13:45:35Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Akmiņa laiki}} +[[Category:Pyrmaviesture]] + pa629gs0upozu9pgdfxnf9ictb4vmk3 + + + + Kategoreja:Antropologeja + 14 + 674 + + 9665 + 9664 + 2011-03-19T13:45:35Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Antropologeja}} +[[Category:Ļaudeiba]] + r78h52jb4qcrmuv13o9gpu2a4fzapg6 + + + + Kategoreja:Apgaismeibys laiki + 14 + 675 + + 9667 + 9666 + 2011-03-19T13:45:35Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Apgaismeibys laiki}} +[[Category:Viesture]] + n2wjs8h3yf3wrbabst9syxr6ozl7twx + + + + Kategoreja:Apkaļpe + 14 + 676 + + 9669 + 9668 + 2011-03-19T13:45:35Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Apkaļpe}} +[[Category:Zineiba]] + i8m38yrm3bgp47ef379a63ixb4rjzgn + + + + Kategoreja:Apleicsardzeiba + 14 + 677 + + 9671 + 9670 + 2011-03-19T13:45:35Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Apleicsardzeiba}} +[[Category:Ļaudeiba]] + esm1tjj5bc88mgynf5mmtqkgjdvrn1o + + + + Kategoreja:Arheologeja + 14 + 678 + + 9673 + 9672 + 2011-03-19T13:45:35Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Arheologeja}} +[[Category:Ļaudeiba]] + 8i5inpiw4esoqep88e2l9mr83fis81d + + + + Kategoreja:Arhitektura + 14 + 679 + + 29670 + 28414 + 2013-04-13T04:21:32Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6204331]] + wikitext + text/x-wiki + {{Commonscat|Architecture|Arhitektura}} + +{{DEFAULTSORT:Arhitektura}} + +[[Kategoreja:Muoksla]] +[[Kategoreja:Zineiba]] + 9atcd6njven53lqt42u0s5t2x20rlol + + + + Kategoreja:Astronomeja + 14 + 680 + + 9677 + 9676 + 2011-03-19T13:45:35Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Astronomeja}} +[[Category:Zineiba]] + 1bqaxmopt7u0bxm8q88cyc949aslce2 + + + + Kategoreja:Atvaigu autortīseibu nūruodis + 14 + 681 + + 29567 + 9679 + 2013-04-04T06:18:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9700670]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Atvaigi, kuru autortīseibu statuss nūruodeits atvaiga aprakstejumā. + +{{DEFAULTSORT:Atvaigu autortīseibu nūruodis}} +[[Category:Vikipedejis atvaigi]] +[[Category:Vikipedejis davēris taisi]] + 0359lxmyrmkr09mf7hzskclgi7k30cz + + + + Kategoreja:Atvaigu autortīseibu taisi + 14 + 682 + + 29571 + 9683 + 2013-04-04T08:11:18Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9700771]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Itamā puslopā irā vysi dabojamī atvaigu autortīseibu taisi. + +{{DEFAULTSORT:Atvaigu autortīseibu taisi}} +[[Category:Atvaigu autortīseibu nūruodis]] + rlbzp57dos79lg1a160fhhjjmb1e01s + + + + Kategoreja:Atīsmis nūtikšonys + 14 + 683 + + 9685 + 9684 + 2011-03-19T13:45:36Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Atīsmis nūtikšonys}} +[[Category:Nūtikšonys]] + nviheee08cj1y3nr8oakbf2kifamqjg + + + + Kategoreja:Auguoji + 14 + 684 + + 29890 + 9688 + 2013-05-31T06:38:38Z + + MerlIwBot + 221 + + + robots izņem: [[ce:Тоба:Stómaş]] (deleted) + wikitext + text/x-wiki + {{DEFAULTSORT:Auguoji}} + +[[Category:Doba]] + +[[ab:Акатегориа:Аҵиаақәа]] +[[ace:Kawan:Peunula]] +[[af:Kategorie:Plante]] +[[als:Kategorie:Pflanze]] +[[am:መደብ:አትክልት]] +[[an:Categoría:Plantas]] +[[ar:تصنيف:نباتات]] +[[ast:Categoría:Plantes]] +[[ay:Categoría:Ali]] +[[az:Kateqoriya:Bitkilər]] +[[ba:Категория:Үҫемлектәр]] +[[bar:Kategorie:Pflanzen]] +[[bat-smg:Kateguorėjė:Augalā]] +[[be:Катэгорыя:Расліны]] +[[be-x-old:Катэгорыя:Расьліны]] +[[bg:Категория:Растения]] +[[bjn:Kategori:Pamakanan]] +[[bn:বিষয়শ্রেণী:উদ্ভিদ]] +[[br:Rummad:Plant]] +[[bs:Kategorija:Biljke]] +[[ca:Categoria:Plantes]] +[[cdo:Category:Sĭk-ŭk]] +[[chr:Category:Plantae]] +[[cr:Category:ᐅᐲᑭᒋᑳᓇᐠ]] +[[crh:Kategoriya:Ösümlikler]] +[[cs:Kategorie:Rostliny]] +[[cv:Категори:Ӳсентăрансем]] +[[cy:Categori:Planhigion]] +[[da:Kategori:Planter]] +[[de:Kategorie:Pflanzen]] +[[dsb:Kategorija:Rostliny]] +[[el:Κατηγορία:Φυτά]] +[[en:Category:Plants]] +[[eo:Kategorio:Plantoj]] +[[es:Categoría:Plantae]] +[[et:Kategooria:Taimed]] +[[fa:رده:گیاهان]] +[[fi:Luokka:Kasvit]] +[[fiu-vro:Katõgooria:Kasvoq]] +[[fo:Bólkur:Plantur]] +[[fr:Catégorie:Plante]] +[[frr:Kategorie:Plaanten]] +[[fy:Kategory:Plantesoart]] +[[ga:Catagóir:Plandaí]] +[[gl:Categoría:Plantas]] +[[gn:Ñemohenda:Ka'avo]] +[[gv:Ronney:Lossreeyn]] +[[ha:Category:Bishiya]] +[[he:קטגוריה:צמחים]] +[[hi:श्रेणी:वृक्ष]] +[[hr:Kategorija:Biljke]] +[[hsb:Kategorija:Rostliny]] +[[hu:Kategória:Növények]] +[[ia:Categoria:Plantas]] +[[id:Kategori:Tumbuhan]] +[[ik:Category:Nautchiiruq]] +[[io:Kategorio:Planti]] +[[is:Flokkur:Plöntur]] +[[it:Categoria:Piante]] +[[ja:Category:植物]] +[[ka:კატეგორია:მცენარეები]] +[[kk:Санат:Өсімдіктер]] +[[ko:분류:식물]] +[[koi:Категория:Быдмассез]] +[[krc:Категория:Битимле]] +[[ksh:Saachjrupp:Planz]] +[[kv:Категория:Быдмӧгъяс]] +[[ky:Category:Өсүмдүк]] +[[la:Categoria:Plantae]] +[[lb:Kategorie:Planzeräich]] +[[lg:Category:Ebimera]] +[[li:Categorie:Plante]] +[[lo:ໝວດ:ພືດ]] +[[lt:Kategorija:Augalai]] +[[lv:Kategorija:Augi]] +[[map-bms:Kategori:Tanduran]] +[[mdf:Категорие:Касыксне]] +[[mhr:Категорий:Кушкыл]] +[[mi:Category:Tipu]] +[[mk:Категорија:Растенија]] +[[ml:വർഗ്ഗം:സസ്യജാലം]] +[[mn:Ангилал:Ургамлууд]] +[[ms:Kategori:Tumbuhan]] +[[mwl:Catadorie:Plantas]] +[[myv:Категория:Тикшеть]] +[[nah:Neneuhcāyōtl:Tlanelhuayōmatiliztli]] +[[nds:Kategorie:Planten]] +[[nds-nl:Kattegerie:Plaante]] +[[nl:Categorie:Plant]] +[[nn:Kategori:Plantar]] +[[no:Kategori:Planter]] +[[nv:Tʼááłáhági átʼéego:Chʼil]] +[[ny:Category:Zomera]] +[[oc:Categoria:Plantae]] +[[os:Категори:Зайæгойтæ]] +[[pam:Category:Deng Tanaman]] +[[pcd:Catégorie:Flore]] +[[pl:Kategoria:Rośliny]] +[[pms:Categorìa:Botànica]] +[[pt:Categoria:Plantas]] +[[qu:Katiguriya:Yura]] +[[ro:Categorie:Regnul Plantae]] +[[ru:Категория:Растения]] +[[rw:Category:Ibimera]] +[[sah:Категория:Үүнээйилэр]] +[[se:Category:Šattut]] +[[si:ප්‍රවර්ගය:ශාක]] +[[simple:Category:Plants]] +[[sk:Kategória:Rastliny]] +[[sl:Kategorija:Rastline]] +[[sr:Категорија:Биљке]] +[[su:Kategori:Tutuwuhan]] +[[sv:Kategori:Växter]] +[[sw:Jamii:Mimea]] +[[te:వర్గం:మొక్కలు]] +[[th:หมวดหมู่:พืช]] +[[tr:Kategori:Bitkiler]] +[[tt:Төркем:Үсемлекләр]] +[[udm:Категория:Будосъёс]] +[[uk:Категорія:Рослини]] +[[ur:زمرہ:نباتات]] +[[vi:Thể loại:Thực vật]] +[[vls:Categorie:Plante]] +[[wa:Categoreye:Plantes]] +[[wo:Wàll:Gàncax]] +[[yi:קאַטעגאָריע:פלאנצן]] +[[yo:Ẹ̀ka:Àwọn ọ̀gbìn]] +[[za:分类:Go]] +[[zh:Category:植物]] +[[zh-classical:Category:植物]] +[[zh-min-nan:Category:Si̍t-bu̍t]] +[[zh-yue:Category:植物]] + dsdd29iaefxwbzbphi1eua4gbnhqwgm + + + + Kategoreja:Baltslavu volūdys + 14 + 685 + + 29464 + 10518 + 2013-03-26T03:00:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 9 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8287657]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Category:Indoeuropīšu volūdys]] + lnvpk7hjsxmjvt4xvjnno9q0trl93y8 + + + + Kategoreja:Baltu volūdys + 14 + 686 + + 29466 + 25931 + 2013-03-26T03:18:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 65 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8287482]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Baltslavu volūdys]] +[[Kategoreja:Balti]] + ep62971pb072n4iva55t40ufq1mgvnn + + + + Kategoreja:Bantu volūdys + 14 + 687 + + 29497 + 27059 + 2013-04-02T18:49:58Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 56 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8289322]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Nigera-Kongo volūdys]] + m10yagg204ojrazcpkuowfg2omy2sih + + + + Kategoreja:Baļtejis vaļsteibys + 14 + 688 + + 29465 + 27447 + 2013-03-26T03:18:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 34 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8287485]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Europys Savīneiba]] +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Pūstumeuropa]] + h8z015l8av7hpcxusryotzowrn323yy + + + + Kategoreja:Bibliotekzineiba + 14 + 689 + + 9702 + 9701 + 2011-03-19T13:45:36Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Bibliotekzineiba}} +[[Category:Zineiba]] + 6qlwbm55wfbbyqdyz22y8r90lu563gz + + + + Kategoreja:Biologeja + 14 + 690 + + 28415 + 25528 + 2013-03-07T21:00:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 191 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457402]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Biology|Biologeja}} + +{{DEFAULTSORT:Biologeja}} +[[Kategoreja:Dobyszineibys]] +[[Kategoreja:Dzeive]] + i07zptemab3qf6es9qluwyagrdxlvw1 + + + + Kategoreja:Bolvi + 14 + 691 + + 29563 + 15857 + 2013-04-04T04:22:18Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9701837]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Balvi|Bolvi}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Bolvu nūvods]] + 6x5zomtevaaffs4ue2qnita1u1oyhmf + + + + Kategoreja:Bronzys laiki + 14 + 692 + + 9711 + 9710 + 2011-03-19T13:45:37Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Bronzys laiki}} +[[Category:Pyrmaviesture]] + bqfwowbzou5f20ucc0lnx5aocrr187q + + + + Kategoreja:Byusmis vītys taisi + 14 + 693 + + 9713 + 9712 + 2011-03-19T13:45:37Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Byusmis vītys taisi}} +[[Category:Geografejis taisi]] + gqw02ki1r93b2cq9ypafpbt1iuk7v90 + + + + Kategoreja:Cīši eisi rakstīni + 14 + 694 + + 29547 + 9716 + 2013-04-03T20:45:23Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9469597]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Itymā kategorejā irā cīši eisi rakstīni. Verīs taipoš {{tl|Eiss rakstīņs}}. + +{{DEFAULTSORT:Ciszi eisi rakstini}} +[[Category:Nadabeigti rakstīni| Eisi rakstini]] + jpld0diyz3852sbdndsjnitxefrsquo + + + + Kategoreja:Dagda + 14 + 695 + + 29566 + 15858 + 2013-04-04T06:18:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9703009]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Dagdys nūvods]] + ey823qi7mxrp57uh8zjyl61c5e4fv85 + + + + Kategoreja:Datorzineiba + 14 + 696 + + 29672 + 13337 + 2013-04-13T04:28:12Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6517860]] + wikitext + text/x-wiki + {{catmain}} +{{Commonscat|Computer science|Datorzineiba}} + +[[Category:Tehnologeja]] + plgpb0p7m4fxyq32n8grdeu90s1kpo7 + + + + Kategoreja:Daugpiļs + 14 + 697 + + 29468 + 25113 + 2013-03-27T04:11:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 19 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8363997]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Daugavpils|Daugpiļs}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] + jkgfu11kq3u9b704e003hi2ygdjr1sx + + + + Kategoreja:Daugpiļs nūvods + 14 + 698 + + 29469 + 15817 + 2013-03-27T04:12:04Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8363999]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Daugavpils municipality|Daugpiļs nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + mhqkm4085yh3x4l3oxs50v2nbej4w09 + + + + Kategoreja:Daņčumuoksla + 14 + 699 + + 9727 + 9726 + 2011-03-19T13:45:37Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Daņčumuoksla}} +[[Category:Muoksla]] + 7lw0t8bq8q5aryid0fvf76dzmluyox8 + + + + Kategoreja:Doba + 14 + 700 + + 28927 + 28416 + 2013-03-08T14:02:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4049293]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Nature|Doba}} + +{{DEFAULTSORT:Doba}} +[[Kategoreja:Pamatkategorejis]] + 2pj9l80lo2bit1m2xm3ztjidembe0uu + + + + Kategoreja:Dobys stihejis + 14 + 701 + + 9735 + 9734 + 2011-03-19T13:45:38Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Dobys stihejis}} +[[Category:Doba|Stihejis]] + 77ub3mzwytr5r5q8n56091814yu3c3a + + + + Kategoreja:Dobyszineibys + 14 + 702 + + 28417 + 27450 + 2013-03-07T21:00:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 111 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457332]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Dobyszineibys}} +[[Kategoreja:Akademiskuos zineibys]] +[[Kategoreja:Doba]] + pk2odimu691d4lkil5s2ltg1q9lduao + + + + Kategoreja:Dzeive + 14 + 703 + + 28418 + 27660 + 2013-03-07T21:01:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 86 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5550747]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Life|Dzeive}} + +{{DEFAULTSORT:Dzeive}} +[[Category:Doba]] + 2q7qfgm4qidm4vxqizluniuzah92yxd + + + + Kategoreja:Dzeivinīki + 14 + 704 + + 29539 + 29463 + 2013-04-02T22:16:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8270039]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Animals|Dzeivinīki}} + +{{DEFAULTSORT:Dzeiviniki}} +[[Category:Eikarioti]] +[[Category:Zoologeja]] + +[[ace:Kawan:Binatang]] +[[af:Kategorie:Diere]] +[[als:Kategorie:Tier]] +[[am:መደብ:የዱር አራዊት]] +[[an:Categoría:Animals]] +[[ang:Flocc:Dēor]] +[[ar:تصنيف:حيوانات]] +[[arc:ܣܕܪܐ:ܚܝܘܬܐ]] +[[arz:تصنيف:حيوانات]] +[[as:শ্ৰেণী:প্ৰাণীজগত]] +[[ast:Categoría:Animales]] +[[av:Категория:ХIайванал]] +[[ay:Categoría:Uywa]] +[[az:Kateqoriya:Heyvanlar]] +[[ba:Категория:Хайуандар]] +[[bat-smg:Kateguorėjė:Gīvūnā]] +[[be:Катэгорыя:Жывёлы]] +[[be-x-old:Катэгорыя:Жывёлы]] +[[bg:Категория:Животни]] +[[bi:Category:Animol]] +[[bjn:Kategori:Satua]] +[[bm:Catégorie:Bagan]] +[[bn:বিষয়শ্রেণী:প্রাণী]] +[[br:Rummad:Loened]] +[[bs:Kategorija:Životinje]] +[[bxr:Category:Амитад]] +[[ca:Categoria:Animals]] +[[cdo:Category:Dông-ŭk]] +[[ce:Тоба:Акхарой]] +[[ceb:Kategoriya:Mananap]] +[[chr:Category:Animalia]] +[[chy:Category:Hovahne]] +[[co:Category:Animale]] +[[cr:Category:ᐱᓯᐢᑭᐤ]] +[[crh:Kategoriya:Ayvanlar]] +[[cs:Kategorie:Živočichové]] +[[cy:Categori:Anifeiliaid]] +[[da:Kategori:Dyr]] +[[dsb:Kategorija:Zwěrjeta]] +[[ee:Category:Nugbagbewo]] +[[el:Κατηγορία:Ζώα]] +[[eml:Categoria:ANIMALI]] +[[en:Category:Animals]] +[[eo:Kategorio:Bestoj]] +[[es:Categoría:Animales]] +[[et:Kategooria:Loomad]] +[[eu:Kategoria:Animaliak]] +[[fa:رده:جانوران]] +[[ff:Catégorie:Dabbaji]] +[[fi:Luokka:Eläimet]] +[[fj:Category:Manumanu]] +[[fo:Bólkur:Djór]] +[[fr:Catégorie:Animal]] +[[ga:Catagóir:Ainmhithe]] +[[gag:Kategori:Hayvannar]] +[[gan:Category:動物]] +[[gd:Category:Beathaichean]] +[[gl:Categoría:Animais]] +[[gn:Ñemohenda:Mymba]] +[[gu:શ્રેણી:પ્રાણીઓ]] +[[gv:Ronney:Beiyn]] +[[ha:Category:Dabba]] +[[he:קטגוריה:בעלי חיים]] +[[hif:Category:Janwar]] +[[hr:Kategorija:Životinje]] +[[hsb:Kategorija:Zwěrjata]] +[[hu:Kategória:Állatok]] +[[ia:Categoria:Animales]] +[[id:Kategori:Hewan]] +[[io:Kategorio:Animali]] +[[is:Flokkur:Dýr]] +[[it:Categoria:Animali]] +[[iu:Category:ᓯᓚᕐᔪᐊᒥᐅᑦ]] +[[ja:Category:動物]] +[[jv:Kategori:Kewan]] +[[ka:კატეგორია:ცხოველები]] +[[kaa:Kategoriya:Haywanlar]] +[[kl:Sumut atassuseq:Miluumasoq]] +[[ko:분류:동물]] +[[koi:Категория:Подаэз]] +[[krc:Категория:Джаныуарла]] +[[ku:Kategorî:Ajal]] +[[kv:Категория:Пемӧсъяс]] +[[kw:Klass:Enyvales]] +[[la:Categoria:Animalia]] +[[lad:Katēggoría:Animales]] +[[lb:Kategorie:Déiereräich]] +[[lbe:Категория:ХIайван]] +[[li:Categorie:Diere]] +[[lij:Categorîa:Animalia]] +[[ln:Catégorie:Nyama]] +[[lt:Kategorija:Gyvūnai]] +[[lv:Kategorija:Dzīvnieki]] +[[map-bms:Kategori:Kewan]] +[[mdf:Категорие:Ракшатне]] +[[mhr:Категорий:Янлык]] +[[mk:Категорија:Животни]] +[[mn:Ангилал:Амьтад]] +[[mrj:Категори:Йӓнвлӓ]] +[[ms:Kategori:Haiwan]] +[[mwl:Catadorie:Animales]] +[[my:Category:တိရစ္ဆာန်]] +[[myv:Категория:Ракшат]] +[[nah:Neneuhcāyōtl:Yōlcatl]] +[[nap:Categurìa:Anemale]] +[[nds:Kategorie:Deerten]] +[[nds-nl:Kattegerie:Dier]] +[[ne:Category:जनावर]] +[[nn:Kategori:Dyr]] +[[no:Kategori:Dyr]] +[[nrm:Category:Animâ]] +[[nv:Tʼááłáhági átʼéego:Naaldeehii]] +[[os:Категори:Цæрæгойтæ]] +[[pap:Category:Animalnan]] +[[pcd:Catégorie:Biètes]] +[[pdc:Kategorie:Gediere]] +[[pl:Kategoria:Zwierzęta]] +[[pnb:Category:ڈنگر]] +[[pt:Categoria:Animais]] +[[rm:Categoria:Animals]] +[[ru:Категория:Животные]] +[[rw:Category:Inyamaswa]] +[[sah:Категория:Харамайдар]] +[[scn:Catigurìa:Armali]] +[[sco:Category:Ainimals]] +[[sh:Kategorija:Životinje]] +[[si:ප්‍රවර්ගය:සතුන්]] +[[simple:Category:Animals]] +[[sk:Kategória:Živočíchy]] +[[sl:Kategorija:Živali]] +[[sn:Category:Mhuka]] +[[so:Category:Xayawaan]] +[[sq:Kategoria:Kafshë]] +[[sr:Категорија:Животиње]] +[[srn:Guru:Meti]] +[[su:Kategori:Sasatoan]] +[[sw:Jamii:Wanyama]] +[[th:หมวดหมู่:สัตว์]] +[[tr:Kategori:Hayvanlar]] +[[tt:Төркем:Хайваннар]] +[[tum:Category:Vinyama]] +[[uk:Категорія:Тварини]] +[[ur:زمرہ:حیوانات]] +[[ve:Category:Phukha]] +[[vls:Categorie:Bêeste]] +[[wo:Wàll:Rab]] +[[xal:Әәшл:Аһурсн]] +[[yi:קאַטעגאָריע:בעלי חיים]] +[[yo:Ẹ̀ka:Àwọn ẹranko]] +[[zh:Category:动物]] +[[zh-min-nan:Category:Tōng-bu̍t]] +[[zh-yue:Category:動物]] +[[zu:Category:Isilwane]] + 6blxs9cqicwgnhbp9g3etucbiy17hle + + + + Kategoreja:Dzeļža laiki + 14 + 705 + + 29674 + 10887 + 2013-04-13T04:30:54Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7145322]] + wikitext + text/x-wiki + {{catmain|Dzeļžalaiki}} + +[[Category:Pyrmaviesture]] + 52yhid3x5rjqkml2zsk2shwgz4nmjj5 + + + + Kategoreja:Ekonomika + 14 + 707 + + 28419 + 27058 + 2013-03-07T21:01:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 150 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4026633]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Economics|Ekonomika}} +{{Catmain|Ekonomika}} + +{{DEFAULTSORT:Ekonomika}} + +[[Kategoreja:Ļaudeiba]] + o5l9dwp4fksj1lnp7nb1bgaiy1diifz + + + + Kategoreja:Elektronika + 14 + 708 + + 9754 + 9753 + 2011-03-19T13:45:39Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Elektronika}} +[[Category:Zineiba]] + spt6uyfx4tmpdtpy625i4b199qg9sfx + + + + Kategoreja:Etnokultura + 14 + 709 + + 9756 + 9755 + 2011-03-19T13:45:39Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Etnokultura}} +[[Category:Kultura]] + to5r39hbbpzr3eqv68qfb5083yihtsq + + + + Kategoreja:Europys viesture + 14 + 710 + + 9758 + 9757 + 2011-03-19T13:45:39Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Europys viesture}} +[[Category:Viesture]] + q1cq7adn67wiro90s2ky7zt6ekbejdl + + + + Kategoreja:Filosofeja + 14 + 711 + + 9760 + 9759 + 2011-03-19T13:45:39Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Filosofeja}} +[[Category:Kultura]] + 8rziex5oeodpiw9azr33fmo11ujam1o + + + + Kategoreja:Fizika + 14 + 712 + + 28420 + 26620 + 2013-03-07T21:01:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 178 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457258]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Physics|Fizika}} + +{{DEFAULTSORT:Fizika}} + +[[Kategoreja:Zineiba]] + eezysqygl35jtb8dow92gejgcjsfwxk + + + + Kategoreja:Folklors + 14 + 713 + + 29392 + 26674 + 2013-03-16T02:27:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 80 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7216460]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Folklore|Folklors}} + +{{DEFAULTSORT:Folklors}} + +[[Kategoreja:Kultura]] + pznyb9d54ztcwfdnwkgi3nkicdp9ji2 + + + + Kategoreja:Fotografeja + 14 + 714 + + 9766 + 9765 + 2011-03-19T13:45:39Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Fotografeja}} +[[Category:Muoksla]] + qom3uazfckql3f2yoe344pab366i7uz + + + + Kategoreja:Gaiss + 14 + 715 + + 9768 + 9767 + 2011-03-19T13:45:39Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Gaiss}} +[[Category:Doba]] + rxjyoelexrm7vca7wj5t85l12pxohom + + + + Kategoreja:Geografeja + 14 + 716 + + 30827 + 30054 + 2015-08-08T12:15:06Z + + YiFeiBot + 2627 + + + Bot: Migrating 10 langlinks, now provided by [[d:|Wikidata]] on [[d:q1457673]] + wikitext + text/x-wiki + {{Commonscat|Geography|Geografeja}} + + +{{DEFAULTSORT:Geografeja}} +[[Category:Pamatkategorejis]] +[[Category:Socialuos zineibys]] +[[Category:Vydszineibys]] +[[Category:Zemiszineibys]] +[[Category:Ļaudeiba]] +[[Category:Doba]] + +[[ce:Тоба:Лаьттан Iилма]] +[[scn:Catigurìa:Giografìa]] +[[tt:Төркем:Cäğräfiä]] + c9uhud04snhee95uaybzcvh5efj7ldd + + + + Kategoreja:Geografejis atzaris + 14 + 717 + + 9786 + 9785 + 2011-03-19T13:45:40Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Geografejis atzaris}} +[[Category:Geografeja| Atzaris]] + ke0k2pyfcqtx1p6cwg4ujk1b2j9lj3t + + + + Kategoreja:Geografejis infoskreinis + 14 + 718 + + 9789 + 9788 + 2011-03-19T13:45:40Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Geografejis infoskreinis}} +[[Category:Geografejis taisi|Infoskreinis]] +[[Category:Infoskreinis]] + 85l28d4t0w1jick60gisen2za3iflz8 + + + + Kategoreja:Geografejis taisi + 14 + 719 + + 9791 + 9790 + 2011-03-19T13:45:41Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Geografejis taisi}} +[[Category:Taisi pa temom]] + hb5d6lcopr3wutl9jqm2kjh55ewkpuz + + + + Kategoreja:Geografejis viesture + 14 + 720 + + 9794 + 9793 + 2011-03-19T13:45:41Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Geografejis viesture}} +[[Category:Geografeja|Viesture]] + 1mjt4bh0z5rrk09ia15uipm9oc24zh8 + + + + Kategoreja:Hronologeja + 14 + 722 + + 29366 + 26482 + 2013-03-14T05:14:55Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 81 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7190896]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Spans of time|Hronologeja}} +{{catmain|Hronologeja}} + +[[Kategoreja:Viesture]] +[[Kategoreja:Laiks]] + 9cqk9k306xel361d02u6epi8aqufvvu + + + + Kategoreja:Humanitaruos zineibys + 14 + 723 + + 28928 + 28421 + 2013-03-08T14:02:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2945384]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Humanities|Humanitaruos zineibys}} + +{{DEFAULTSORT:Humanitaruos zineibys}} +[[Category:Akademiskuos zineibys]] +[[Category:Kultura]] +[[Category:Socialuos zineibys]] +[[Category:Vydszineibys]] +[[Category:Zineiba| Humanitaruos zineibys]] + 0wfi0h9r6vg1hb4wqldrxzkltp8shcd + + + + Kategoreja:Indoeuropīšu volūdys + 14 + 724 + + 29678 + 9805 + 2013-04-13T04:42:34Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7034313]] + wikitext + text/x-wiki + [[Category:Volūdu saimis]] +[[Category:Indoeuropīši]] + c28ky78upwuvc7bn914b0l5sn9iy582 + + + + Kategoreja:Industreja + 14 + 725 + + 28929 + 27969 + 2013-03-08T14:02:36Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 84 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6528585]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Industries|Industreja}} + +{{DEFAULTSORT:Industreja}} + +[[Kategoreja:Tehnologeja]] + ov35b5f2fa8m070btcb1ilzi8iwt8b7 + + + + Kategoreja:Informaceja + 14 + 726 + + 28930 + 28422 + 2013-03-08T14:03:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1458666]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Information|Informaceja}} + +{{DEFAULTSORT:Informaceja}} +[[Kategoreja:Informacejis tehnologejis]] + mwbwcvv16okj3m17jipx61kgr2gr8u0 + + + + Kategoreja:Infoskreinis + 14 + 727 + + 16585 + 9811 + 2011-08-30T16:03:47Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi]] + 6690324cpsk2r0my0vp0is7012p1erj + + + + Kategoreja:Iudiņs + 14 + 728 + + 28931 + 27962 + 2013-03-08T14:03:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 108 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6529461]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{plotuok}} +{{commonscat|Water|Iudiņs}} + +[[Kategoreja:Doba]] +[[Kategoreja:Kimeja]] + om6rmiqxeaj9df9g16cz832fu6cwira + + + + Kategoreja:Iņženereja + 14 + 729 + + 9815 + 9814 + 2011-03-19T13:45:42Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Iņženereja}} +[[Category:Tehnologeja]] + qk761da1ui8cpisj0o2lsukt3rjscb9 + + + + Kategoreja:Jaunī laiki + 14 + 731 + + 9819 + 9818 + 2011-03-19T13:45:42Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Jaunī laiki}} +[[Category:Viesture]] + qe1d83hw1lslx0hkbjjjdv2yrspgony + + + + Kategoreja:Jiureiba + 14 + 732 + + 9821 + 9820 + 2011-03-19T13:45:42Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Jiureiba}} +[[Category:Zineiba]] + 1wxyuie7x19oarjf0nu3pur8zt8o4ll + + + + Kategoreja:Kareiba + 14 + 733 + + 9823 + 9822 + 2011-03-19T13:45:42Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Kareiba}} +[[Category:Zineiba]] + 9goytezzrvzc9u4g2p4jcqaj221584d + + + + Kategoreja:Kari + 14 + 734 + + 28423 + 26615 + 2013-03-07T21:02:08Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 69 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4476237]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Wars|Kari}} + +{{DEFAULTSORT:Kari}} + +[[Kategoreja:Viesture]] +[[Kategoreja:Konflikti]] + 6og9ysgug6mcmrdoi3ji278lgmu5y6m + + + + Kategoreja:Kasdīna i sātparāds + 14 + 735 + + 9827 + 9826 + 2011-03-19T13:45:42Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Kasdīna i sātparāds}} +[[Category:Kultura]] + r194f0z5m6keyutkbnc3razjdhkqife + + + + Kategoreja:Kasgadeiguos nūtikšonys + 14 + 736 + + 9829 + 9828 + 2011-03-19T13:45:42Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Kasgadeiguos nūtikšonys}} +[[Category:Nūtikšonys]] + qb1d99wbgqwzeu1r1ufdk76kbip43xi + + + + Kategoreja:Kategorejis + 14 + 737 + + 29865 + 29858 + 2013-04-30T00:21:53Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q1281]] + wikitext + text/x-wiki + Itymā puslopā irā vysys golvonuos kategorejis. + +[[Special:Categories/|Vysys kategorejis]] saparādavuotys pa literim. +{{Commonscat|Topics|Temys}} + +{{DEFAULTSORT:Kategorejis}} +[[Category:Vikipedeja]] + 81cg5rbncgl63ffsmbzgwk6o1ikdxzw + + + + Kategoreja:Kaviekli + 14 + 738 + + 29390 + 26649 + 2013-03-16T02:25:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 67 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7216601]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok|Kavieklis|Kavieklis}} + +{{DEFAULTSORT:Kaviekli}} + +[[Kategoreja:Kultura]] + e43pbntg6tqv5v47wniafm6l5kn2ekc + + + + Kategoreja:Kimeja + 14 + 739 + + 28425 + 26616 + 2013-03-07T21:02:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 165 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457474]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Chemistry|Kimeja}} + +{{DEFAULTSORT:Kimeja}} + +[[Kategoreja:Zineiba]] + 3upz847dqvw8aqsouiyau7vnvf4majm + + + + Kategoreja:Kina + 14 + 740 + + 9840 + 9839 + 2011-03-19T13:45:43Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Kina}} +[[Category:Kultura]] +[[Category:Muoksla]] +[[Category:Vizualuo muoksla]] + sdh69vf9x0ucnxqr1bxzx258tdb7t41 + + + + Kategoreja:Konflikti + 14 + 741 + + 30019 + 28426 + 2013-08-16T15:46:21Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q8819203]] + wikitext + text/x-wiki + {{Commonscat|Conflicts|Konflikti}} + +{{DEFAULTSORT:Konflikti}} +[[Kategoreja:Nūtikšonys]] + +[[ar:تصنيف:نزاعات]] +[[en:Category:Conflicts]] + r5ouxcygghuaevz25fnj9m46rjvyf3j + + + + Kategoreja:Kruoslovys nūvods + 14 + 743 + + 29556 + 15820 + 2013-04-04T02:14:49Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9597941]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Krāslava municipality|Kruoslovys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + nje0muk4tvfd2wrkimhukq9goxk65mg + + + + Kategoreja:Krystapiļs nūvods + 14 + 744 + + 29551 + 15821 + 2013-04-04T02:12:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9600067]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Krustpils municipality|Krystapiļs nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + 4o5eskxwtqnzhk3p4pl8y9vy0am8wuv + + + + Kategoreja:Kultura + 14 + 745 + + 29857 + 29054 + 2013-04-24T10:18:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2944929]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Culture|Kultura}} + + +{{DEFAULTSORT:Kultura}} +[[Kategoreja:Pamatkategorejis]] +[[Kategoreja:Ļaudeiba]] + i4gt3w2ff85oq3gdeq064qfp74ze029 + + + + Kategoreja:Kulturys pīminiekli + 14 + 746 + + 9852 + 9851 + 2011-03-19T13:45:43Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Kulturys pīminiekli}} +[[Category:Kultura|Pīminiekli]] + qbvs9nfuurug5m7wpcaurdhkas0q1qj + + + + Kategoreja:Latgalīši emigracejā + 14 + 748 + + 9857 + 9856 + 2011-03-19T13:45:43Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgalīši emigracejā}} + +[[Category:Wp/ltg]] + 0imagwyji7h4f1jucfa1kjnc4imbvmt + + + + Kategoreja:Latgaļu volūda + 14 + 749 + + 29553 + 15457 + 2013-04-04T02:14:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9604662]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Catmore}} + +[[Category:Baltu volūdys]] + qj9b9xse1ar9d1fue4gkfb7pigwe5z5 + + + + Kategoreja:Latgola + 14 + 750 + + 29555 + 15831 + 2013-04-04T02:14:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9604657]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Latgale|Latgola}} +{{catmain}} + +[[Kategoreja:Pamatkategorejis]] +[[Kategoreja:Latvejis kulturviesturiskī nūvodi]] + lwncsxabccovor899zqmfuluncpcna7 + + + + Kategoreja:Latgolys arhitektura + 14 + 751 + + 9866 + 9865 + 2011-03-19T13:45:43Z + + SPQRobin + 2 + + + 3 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + [[Category:Arhitektura|Latgola]] +[[Category:Latgolys muoksla|Arhitektura]] + ednizwtx9vgyuwv0jpgfy41mnslew7c + + + + Kategoreja:Latgolys doba + 14 + 752 + + 9868 + 9867 + 2011-03-19T13:45:43Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys doba}} +[[Category:Latgola|Doba]] +[[Category:Doba]] + n5vf8pnk1gtv6f4k90a61bmx45ffbr5 + + + + Kategoreja:Latgolys dobys pīminiekli + 14 + 753 + + 9870 + 9869 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys dobys pīminiekli}} +[[Category:Latgolys doba|Pīminiekli]] + gev9d0go0vpvogfy8tmu20n87549drd + + + + Kategoreja:Latgolys dīvanomi + 14 + 754 + + 12937 + 9872 + 2011-04-06T10:29:16Z + + Glossologist + 79 + + + commonscat + wikitext + text/x-wiki + {{commonscat|Churches in Latgalia|Latgolys dīvanomi}} + +{{DEFAULTSORT:Divanomi}} +[[Category:Religeja Latgolā]] +[[Category:Latgolys arhitektura]] + azmw6mgnertmu8t6fwcjc5oqkir0u5r + + + + Kategoreja:Latgolys geografeja + 14 + 755 + + 9874 + 9873 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys geografeja}} +[[Category:Latgola|Geografeja]] + 2fk47armbpaw1losy89ftcdzwksci9g + + + + Kategoreja:Latgolys katuoļu bazneicys + 14 + 756 + + 9876 + 9875 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + [[Category:Latgolys dīvanomi|Katolzu bazneicys]] +[[Category:Katuolicizmys|Latgolys katuolzu bazneicys]] + e72ge5v9n9vfbmdcupj2zyd8qikknye + + + + Kategoreja:Latgolys kultura + 14 + 757 + + 9878 + 9877 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys kultura}} +[[Category:Latgola|Kultura]] +[[Category:Kultura]] + k770k4zhvcq5exx9pjsnyi7l3wo5bte + + + + Kategoreja:Latgolys muoksla + 14 + 758 + + 9880 + 9879 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys muoksla}} +[[Category:Latgola|Muoksla]] +[[Category:Muoksla]] + 64enfywzxpwbhbbe3x3hjwo7x6of926 + + + + Kategoreja:Latgolys partejis + 14 + 760 + + 9885 + 9884 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys partejis}} +[[Category:Latgolys politika|Partejis]] +[[Category:Latvejis partejis]] + 8ksm0x7kg52mii1hypn3onf8bstp6ys + + + + Kategoreja:Latgolys politika + 14 + 761 + + 9888 + 9887 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys politika}} +[[Category:Latgola|Politika]] +[[Category:Latvejis politika]] + khty687r3bvh8h48vikvqwe4gtfgbbk + + + + Kategoreja:Latgolys simboli + 14 + 762 + + 9890 + 9889 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys simboli}} +[[Category:Latgola|Simboli]] + 4hak6m914b6116nunq0u85a34pqd69l + + + + Kategoreja:Latgolys viesture + 14 + 763 + + 9892 + 9891 + 2011-03-19T13:45:44Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys viesture}} +[[Category:Latgola|Viesture]] +[[Category:Viesture]] + s8qpgsmu53bjichw2lieqbe2ab8apie + + + + Kategoreja:Latveja + 14 + 764 + + 28428 + 26223 + 2013-03-07T21:03:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 127 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4368197]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Latvia|Latveja}} + +{{DEFAULTSORT:Latveja}} +[[Kategoreja:Pamatkategorejis]] +[[Kategoreja:Europys Savīneibys dalinīkvaļsteibys]] +[[Kategoreja:Europys vaļsteibys]] +[[Kategoreja:Baļtejis vaļsteibys]] + 6j8ckrs4gg7hn9ja60e980d3bga557a + + + + Kategoreja:Latvejis geografeja + 14 + 765 + + 29346 + 27325 + 2013-03-12T10:29:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 49 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6964041]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Latvejis geografeja}} +[[Category:Latveja|Geografeja]] + qi5zb3vaqq38hpcyddmllpinx42ku0e + + + + Kategoreja:Latvejis geografejis taisi + 14 + 766 + + 9901 + 9900 + 2011-03-19T13:45:45Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latvejis geografejis taisi}} +[[Category:Geografejis taisi]] + p6i548omce7ju4bedrukedem8vgyd16 + + + + Kategoreja:Latvejis kulturviesturiskī nūvodi + 14 + 767 + + 29568 + 26607 + 2013-04-04T06:20:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9711716]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Latvejis kulturviesturiskī nūvodi}} +[[Kategoreja:Latveja|Kulturviesturiskī nūvodi]] + kqq5t0wks4j7pihkasi5fl3drpnm2ei + + + + Kategoreja:Latvejis mīsti + 14 + 768 + + 29393 + 27326 + 2013-03-16T02:28:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 71 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7214655]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Cities in Latvia|Latvejis mīsti}} +{{plotuok}} + +[[Kategoreja:Mīsti pa vaļsteibai]] +[[Kategoreja:Latvejis dzeivojamuos vītys|Mīsti]] +[[Kategoreja:Latvejis administrativais dalejums|Mīsti]] + trp3s13rkylkz2vkk5xgxlck58n54al + + + + Kategoreja:Latvejis nūvodi + 14 + 769 + + 29475 + 24670 + 2013-03-29T10:11:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 15 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8646766]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Latvejis administrativais dalejums|Nūvodi]] + ps8pn2un2aow6btun7g121bvkcugrpt + + + + Kategoreja:Latvejis partejis + 14 + 771 + + 9915 + 9914 + 2011-03-19T13:45:45Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latvejis partejis}} +[[Category:Latvejis politika|Partejis]] + 8kzt6ghdgpo6xx6hadr1b4j1f11f32m + + + + Kategoreja:Latvejis pogosti + 14 + 772 + + 29548 + 16670 + 2013-04-03T22:13:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 7 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9485979]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Parishes of Latvia|Latvejis pogosti}} +{{CategoryTOC}} + +[[Kategoreja:Latvejis administrativais dalejums|Pogosti]] + lmz50awokmue42soci01hdilp2n5iw0 + + + + Kategoreja:Latvejis politika + 14 + 773 + + 9921 + 9920 + 2011-03-19T13:45:46Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Latvejis politika}} +[[Category:Latveja|Politika]] + 8wmbvh4g2jrgccfpctb4iair7i0jy2o + + + + Kategoreja:Latvīšu legiona viersnīki + 14 + 774 + + 29570 + 26652 + 2013-04-04T06:21:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9712585]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Latvīšu legiona viersnīki}} + +[[Kategoreja:Latvīšu legions]] + q6a5a61usfg5bucrz6e43fm4catcuay + + + + Kategoreja:Literatura + 14 + 776 + + 9929 + 9928 + 2011-03-19T13:45:46Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Literatura}} +[[Category:Kultura]] +[[Category:Muoksla]] + rpjseduqyx5pyi8783l9svgu3mioq7x + + + + Kategoreja:Ludza + 14 + 778 + + 29572 + 15862 + 2013-04-04T08:11:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9713680]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Ludzys nūvods]] + hkw69ehwlf0gedv3umbaja0x08oy2pd + + + + Kategoreja:Līteigī izkasiņi + 14 + 779 + + 9937 + 9936 + 2011-03-19T13:45:46Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Līteigī izkasiņi}} +[[Category:Doba]] + o6nravncbpo3xivbqrik31fnm13psy4 + + + + Kategoreja:Lītovys ļauds + 14 + 780 + + 29353 + 26786 + 2013-03-14T02:25:35Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 58 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6993164]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Lītovys ļauds}} +[[Category:Lītova]] +[[Category:ļaudeiba]] + nz0tnltq399qv3auwe9rmw8ja5jacmo + + + + Kategoreja:Lītuotuoji + 14 + 781 + + 28429 + 27606 + 2013-03-07T21:03:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 95 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4654299]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Wikipedians|Lītuotuoji}} + +{{DEFAULTSORT:Lītuotuoji}} +[[Category:Vikipedeja]] + 3qdxa91c6ej99w5uu8440ganvho53zg + + + + Kategoreja:Lītuotuoju volūdys + 14 + 783 + + 29946 + 29884 + 2013-08-01T07:07:29Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q4655215]] + wikitext + text/x-wiki + {{DEFAULTSORT:Lītuotuoju volūdys}} +[[Kategoreja:Lītuotuoji|Volūdys]] + pgkjtb29eg9aabv2193fshajququ742 + + + + Kategoreja:Lītyskuo muoksla + 14 + 784 + + 9948 + 9947 + 2011-03-19T13:45:47Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Lītyskuo muoksla}} +[[Category:Muoksla]] + icou14a17yta31wglgznq48318kbvzn + + + + Kategoreja:Matematika + 14 + 785 + + 29684 + 28431 + 2013-04-13T04:44:00Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q4619]] + wikitext + text/x-wiki + {{Commonscat|Mathematics|Matematika}} + +{{DEFAULTSORT:Matematika}} + +[[Kategoreja:Zineiba]] + 9c3krkbt31ujgdn8zouk85lf5aesknv + + + + Kategoreja:Medicina + 14 + 786 + + 28432 + 26805 + 2013-03-07T21:30:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 136 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4095812]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Medicine|Medicina}} + +{{DEFAULTSORT:Medicina}} + +[[Kategoreja:Zineiba]] + ktcc3zimznqgyraegfwg486vg0y592n + + + + Kategoreja:Meteorologeja + 14 + 787 + + 29394 + 26895 + 2013-03-16T02:28:05Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 106 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7213754]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Meteorology|Meteorologeja}} + +{{DEFAULTSORT:Meteorologeja}} + +[[Kategoreja:Zineiba]] + bbm1hamnkl66rm5l00hmiu64dm303nw + + + + Kategoreja:Mežs + 14 + 788 + + 9956 + 9955 + 2011-03-19T13:45:47Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Mežs}} +[[Category:Doba]] + hlu982jwos2ashvqcudaxwy56h0xbqg + + + + Kategoreja:Mežsaimesteiba + 14 + 789 + + 9958 + 9957 + 2011-03-19T13:45:47Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Mežsaimesteiba}} +[[Category:Zineiba]] + aca6dgnvu4kqolio9gyz51r74k6r16z + + + + Kategoreja:Muoksla + 14 + 790 + + 28933 + 28433 + 2013-03-08T14:04:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4104783]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Muoksla}} +[[Kategoreja:Pamatkategorejis]] +[[Kategoreja:Kultura]] + gwkt4vwp4c5bv477v72s8dtf60fmdd3 + + + + Kategoreja:Muokslys zineiba + 14 + 791 + + 9962 + 9961 + 2011-03-19T13:45:47Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Muokslys zineiba}} +[[Category:Muoksla|Zineiba]] + de9nxbmxmjo43kvsygsmvmnasrl8zx9 + + + + Kategoreja:Muzyka + 14 + 792 + + 9964 + 9963 + 2011-03-19T13:45:47Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Muzyka}} +[[Category:Kultura]] +[[Category:Muoksla]] + cwj3avm2ff3gv3b5mpllekhc4ju25xz + + + + Kategoreja:Nadabeigti rakstīni + 14 + 793 + + 30249 + 29685 + 2014-03-19T15:58:49Z + + 62.10.249.39 + + wikitext + text/x-wiki + {{CategoryTOC}} +{{Commonscat|Stub icons|Nadabeigti rakstīni}} + +[[Kategoreja:Nadabeigtuo rakstīņu kategorejis]] +[[Special:Categories/|Vysys kategorejis]] saparādavuotys pa literim. +{{Commonscat|Topics|Temys}} + +{{DEFAULTSORT:Kategorejis}} +[[Category:Vikipedeja]] + 9rtw9og1571xtjhkpbl50986kjvozif + + + + Kategoreja:Nadabeigtu rakstīņu taisi + 14 + 794 + + 29686 + 28435 + 2013-04-13T04:44:10Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6306678]] + wikitext + text/x-wiki + Nadabeigtu rakstīņu taisi, kurus davīnoj rakstīnim ar napiļneigu turīni. + +{{DEFAULTSORT:Nadabeigtu rakstīņu taisi}} +[[Category:Vikipedejis davēris taisi]] + al4d937dke3dm0kryvk9xzzhzd5dni9 + + + + Kategoreja:Neogotikys arhitektura + 14 + 795 + + 28934 + 27584 + 2013-03-08T14:04:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 22 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6488247]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Category:Arhitektura|Neogotikys arhitektura]] + 59zaii8sastuoayk4wf16ofwuvhdesr + + + + Kategoreja:Nigera-Kongo volūdys + 14 + 796 + + 30202 + 30025 + 2014-01-21T21:58:24Z + + EmausBot + 103 + + + Bot: Migrating 5 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q9042228]] + wikitext + text/x-wiki + [[Category:Volūdu saimis]] + qtk1hwmrt20ko13dai9phv55qt48bay + + + + Kategoreja:Nūtikšonys + 14 + 797 + + 30828 + 30024 + 2015-08-08T12:15:26Z + + YiFeiBot + 2627 + + + Bot: Migrating 5 langlinks, now provided by [[d:|Wikidata]] on [[d:q7214908]] + wikitext + text/x-wiki + {{Commonscat|Events|Nūtikšonys}} + +{{DEFAULTSORT:Nutikszonys}} +[[Category:Pamatkategorejis]] +[[Category:Hronologeja]] + +[[ja:Category:イベント]] + k15sogftarxbyo55k11b9ctye0d81uk + + + + Kategoreja:Ombumuižys pogosts + 14 + 799 + + 29462 + 22635 + 2013-03-25T16:14:18Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8242786]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Daugpiļs nūvods]] + hl5fnubipngip46wlaecpwjugazgikp + + + + Kategoreja:Pamatkategorejis + 14 + 800 + + 27412 + 22766 + 2013-01-28T19:23:27Z + + MerlIwBot + 221 + + + robots izņem: [[ur:زمرہ:بنیادی]] (deleted) + wikitext + text/x-wiki + {{Commonscat|Topics|Temys}} +Ite irā golvonuos kategorejis, nu kurom var aizsuokt [[Vikipedeja|Vikipedejis]] puortēmi. + +[[Kategoreja:Kategorejis]] + +[[ar:تصنيف:التصنيف الرئيسي]] +[[ba:Категория:Мәҡәләләр]] +[[cy:Categori:Sylfaenol]] +[[el:Κατηγορία:Θεμελιώδης]] +[[fr:Catégorie:Espace encyclopédique]] +[[ko:분류:기본 분류]] +[[id:Kategori:Dasar]] +[[is:Flokkur:Grunnflokkar]] +[[it:Categoria:Enciclopedia]] +[[lv:Kategorija:Pamatkategorijas]] +[[mk:Категорија:Основно]] +[[ms:Kategori:Asas]] +[[mdf:Категорие:Сёрматфкст]] +[[ja:Category:総記]] +[[nap:Categurìa:Nciclopedia]] +[[pt:Categoria:Fundamental]] +[[ru:Категория:Статьи]] +[[sl:Kategorija:Temeljna]] +[[sr:Категорија:Основне категорије]] +[[su:Kategori:Kategori Utami]] +[[roa-tara:Category:'Ngeclopedije]] +[[tet:Kategoria:Ensiklopédia]] +[[th:หมวดหมู่:มูลฐาน]] +[[tk:Category:Düýp]] +[[tr:Kategori:Ana kategoriler]] +[[udm:Категория:Статьяос]] +[[vec:Categoria:Ençiclopedia]] +[[vi:Thể loại:Căn bản]] +[[yi:קאַטעגאָריע:הויפט קאטעגאריעס]] +[[zh-yue:Category:主要分類]] +[[zh:Category:總類]] + d0hlchptmrrnqkv68doruwditplzkoo + + + + Kategoreja:Pasauļa vaļsteibys + 14 + 801 + + 28436 + 27636 + 2013-03-07T21:31:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 199 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4026570]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Pasauļa vaļsteibys}} +[[Category:Geografeja|Vaļsteibys]] + l0m34tghj3kbmc9ocmhs2i552mjxo43 + + + + Kategoreja:Pavaļa + 14 + 803 + + 28437 + 27948 + 2013-03-07T21:31:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 95 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6337045]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|Entertainment|Pavaļa}} + +{{DEFAULTSORT:Pavaļa}} + +[[Kategoreja:Kultura]] + hhr7u3529es6qb21iyq1uzsylyir9x3 + + + + Kategoreja:Pedagogeja + 14 + 804 + + 9997 + 9996 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Pedagogeja}} +[[Category:Zineiba]] + 4g38t61567wfuvm11p85nmg6u0djqau + + + + Kategoreja:Politika + 14 + 805 + + 28438 + 26741 + 2013-03-07T21:31:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 173 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4103183]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Politics|Politika}} +{{catmore|Politika}} + +{{DEFAULTSORT:Politika}} +[[Kategoreja:Pamatkategorejis]] +[[Kategoreja:Ļaudeiba]] + 2u23olj6udzj5mwzm4ofab7m9qqq8wy + + + + Kategoreja:Politiki + 14 + 806 + + 28439 + 26799 + 2013-03-07T21:31:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 111 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5753390]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Politiki}} +[[Category:Politika]] +[[Kategoreja:Cylvāki]] + 0fnsh9aapulcwbi8s76ocqvmj56v7y0 + + + + Kategoreja:Politiski termini + 14 + 807 + + 10003 + 10002 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Politiski termini}} +[[Category:Politika|Termini]] + d4i17yi5a82dts4xn1k12t3zfj4by1m + + + + Kategoreja:Pošjaunī laiki + 14 + 808 + + 10005 + 10004 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Pošjaunī laiki}} +[[Category:Viesture]] + 4hp6hpvgyw14yufwpigrbdvgnmzckp4 + + + + Kategoreja:Preili + 14 + 809 + + 29573 + 15865 + 2013-04-04T08:11:27Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9716193]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Preiļi|Preili}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Preiļu nūvods]] + bpx5q52hoaryjymrzfaqsvem02rq9ec + + + + Kategoreja:Psihologeja + 14 + 810 + + 10009 + 10008 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Psihologeja}} +[[Category:Ļaudeiba]] + 8ptncyxena8tbojwl1kilw2ld40mpvj + + + + Kategoreja:Pyrmaviesture + 14 + 811 + + 10011 + 10010 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Pyrmaviesture}} +[[Category:Viesture]] + brmsv9nbu19b2wltzk34rnrf90uxoc1 + + + + Kategoreja:Reformaceja + 14 + 812 + + 10013 + 10012 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Reformaceja}} +[[Category:Viesture]] + ndqqaq9vdamba43c3lufj2bwgf01f8b + + + + Kategoreja:Reiga + 14 + 813 + + 29476 + 27327 + 2013-03-29T16:12:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 44 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8662803]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Riga|Reiga}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] + q6ae8s60pptsm1igvjb25r5fswyykbq + + + + Kategoreja:Religeja + 14 + 814 + + 29398 + 28440 + 2013-03-17T06:32:12Z + + MerlIwBot + 221 + + + robots izņem: [[tl:Kategorya:Pananampalataya]] (strong connection between (2) [[ltg:Kategoreja:Religeja]] and [[tl:Kategorya:Relihiyon]]) + wikitext + text/x-wiki + {{commonscat|Religion|Religeja}} +{{catmain}} + +{{DEFAULTSORT:Religeja}} +[[Category:Pamatkategorejis]] +[[Category:Kultura]] +[[Category:Ļaudeiba]] + 7ft88tgl1frg6q8j84nl2ckc8njvhv8 + + + + Kategoreja:Religeja Latgolā + 14 + 815 + + 10019 + 10018 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Religeja Latgolā}} +[[Category:Latgola|Religeja]] +[[Category:Religeja|Latgolys religeja]] + 4uva2k3n0f0ck2d779dii5uxokyq6pv + + + + Kategoreja:Renesanss + 14 + 816 + + 10021 + 10020 + 2011-03-19T13:45:49Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Renesanss}} +[[Category:Viesture]] + inky0q1p21n2n4mj0bna1h5k3kvikus + + + + Kategoreja:Roksts + 14 + 817 + + 29687 + 29583 + 2013-04-13T04:47:47Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7014659]] + wikitext + text/x-wiki + {{Commonscat|Writing}} + +[[Category:Volūdzineiba]] +[[Category:Volūdys]] + i8i5rw0ru3bmm9eihlrru51a4ph4yvm + + + + Kategoreja:Romanīšu volūdys + 14 + 818 + + 29688 + 13144 + 2013-04-13T04:47:57Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7216043]] + wikitext + text/x-wiki + {{catmain}} +{{commonscat|Romance languages|Romanīšu volūdys}} + +[[Category:Indoeuropīšu volūdys]] + 1zrn1d2e81zs7w3ouc4r3pr5lg417mh + + + + Kategoreja:Rādazineiba + 14 + 820 + + 10031 + 10030 + 2011-03-19T13:45:50Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Rādazineiba}} +[[Category:Zineiba]] + 6jybbxg0qg86dvhgw8xsed5twayr35q + + + + Kategoreja:Rēzne + 14 + 821 + + 29499 + 17542 + 2013-04-02T18:50:05Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8694314]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Rēzekne|Rēzne}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] + 93wtuxfddppqshct03eln0xypg5vouz + + + + Kategoreja:Rēznis nūvods + 14 + 822 + + 29584 + 15823 + 2013-04-04T20:16:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q10037180]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Rēzekne municipality|Rēznis nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + a2z9o1sa63p5h0vkjowrvu7m286hdwe + + + + Kategoreja:Saroksti + 14 + 823 + + 28441 + 26696 + 2013-03-07T21:32:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 99 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2945924]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Lists|Saroksti}} + +{{DEFAULTSORT:Saroksti}} +[[Category:Geografeja]] + fs6chsxqs5jiaun4moez7ytji1v2ynq + + + + Kategoreja:Senejī laiki + 14 + 824 + + 10040 + 10039 + 2011-03-19T13:45:50Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Senejī laiki}} +[[Category:Viesture]] + r9q0csnyq06w26fa3auzitwt510pp7t + + + + Kategoreja:Skulptura + 14 + 825 + + 10042 + 10041 + 2011-03-19T13:45:50Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Skulptura}} +[[Category:Muoksla]] + ot70p2i0uk2joilmxxyh7r9v6ykidsr + + + + Kategoreja:Socialuos zineibys + 14 + 826 + + 29689 + 29018 + 2013-04-13T04:48:12Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6577596]] + wikitext + text/x-wiki + {{Commonscat|Social sciences|Socialuos zineibys}} + +{{DEFAULTSORT:Socialuos zineibys}} + +[[Kategoreja:Zineiba]] +[[Kategoreja:Ļaudeiba]] + syfxoa16vf0r19qswro15tyjdvw9ald + + + + Kategoreja:Solsaimesteiba + 14 + 828 + + 29691 + 28442 + 2013-04-13T04:48:23Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q5658978]] + wikitext + text/x-wiki + {{Commonscat|Agriculture|Solsaimesteiba}} +{{Catmain|Solsaimesteiba}} + +{{DEFAULTSORT:Solsaimesteiba}} + +[[Kategoreja:Zineiba]] + qml2rrixsp6yf593w7mz24orr1bfarl + + + + Kategoreja:Sports + 14 + 829 + + 10050 + 10049 + 2011-03-19T13:45:51Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Sports}} +[[Category:Ļaudeiba]] + r6ujnjn0ba0dx6jksgxky6xe9iwv26l + + + + Kategoreja:Stateiba + 14 + 830 + + 28443 + 27737 + 2013-03-07T21:32:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 57 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5646658]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Construction|Stateiba}} + +{{DEFAULTSORT:Stateiba}} +[[Kategoreja:Tehnologeja]] + 18czl9r912aio3mi0dc0agfjfp06ngy + + + + Kategoreja:Statistika + 14 + 831 + + 10054 + 10053 + 2011-03-19T13:45:51Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Statistika}} +[[Category:Zineiba]] + mvwslc9gw7cao0tjmybr959vfqk1z0y + + + + Kategoreja:Sīnuoja + 14 + 835 + + 29585 + 15870 + 2013-04-04T20:16:34Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q10105219]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Zilupe|Sīnuoja}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Sīnuojis nūvods]] + oybuhuhfhd5rt9uwc394dhz2f9pd22y + + + + Kategoreja:Taisi pa temom + 14 + 836 + + 16586 + 10064 + 2011-08-30T16:04:58Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi| ]] + 0por5ycy3hiwce9r7xuv3jmc4l0qqb1 + + + + Kategoreja:Teatris + 14 + 837 + + 10066 + 10065 + 2011-03-19T13:45:51Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Teatris}} +[[Category:Muoksla]] +[[Category:Kultura]] + qdn7c28m0dqlf7wbpd1rxfmujhnx8lu + + + + Kategoreja:Tehnologeja + 14 + 838 + + 29694 + 28444 + 2013-04-13T04:48:41Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q4884546]] + wikitext + text/x-wiki + {{Commonscat|Technology|Tehnologeja}} +{{Catmain}} + +[[Category:Pamatkategorejis]] +[[Category:Zineiba]] +[[Category:Lītyskuos zineibys]] + brd1e070ljvajacstjdeel8kqpg8m8e + + + + Kategoreja:Telekomunikacejis + 14 + 839 + + 29695 + 13342 + 2013-04-13T04:48:49Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7215330]] + wikitext + text/x-wiki + {{Commons cat|Telecommunications|Telekomunikacejis}} +{{catmain|Telekomunikaceja}} + +[[Category:Tehnologeja]] + 4sam7vlfqmo1qhhbvktuoh5hi6bnw6s + + + + Kategoreja:Tierdzeiba + 14 + 840 + + 10072 + 10071 + 2011-03-19T13:45:51Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Tierdzeiba}} +[[Category:Zineiba]] + 9f65cfftjqptbm1zggmj2sfjmigupxk + + + + Kategoreja:Transports + 14 + 841 + + 29696 + 29586 + 2013-04-13T04:48:51Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7216108]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|Transport|Transports}} + +{{DEFAULTSORT:Transports}} +[[Kategoreja:Tehnologeja]] + h8ebb4e9x3utueat2jzsawlv8z0me9p + + + + Kategoreja:Tīseibzineiba + 14 + 842 + + 10076 + 10075 + 2011-03-19T13:45:51Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Tīseibzineiba}} +[[Category:Ļaudeiba]] + gmjct1nzpsx7xesgy2hhuvc5r9n4f6p + + + + Kategoreja:User ltg + 14 + 843 + + 28998 + 25806 + 2013-03-08T22:04:46Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489064]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ltg}} + +[[Kategoreja:Lītuotuoju volūdys|ltg]] + qvwa6kdc8707it4m66h15x6jf550n1s + + + + Kategoreja:User ltg-0 + 14 + 844 + + 29587 + 25850 + 2013-04-04T20:16:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9418856]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ltg-0}} + +[[Kategoreja:User ltg| 5]] + 9q41leoy47nf789b04au5bxo6k8eytx + + + + Kategoreja:User ltg-1 + 14 + 845 + + 28999 + 25848 + 2013-03-08T22:04:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489075]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ltg-1}} + +[[Kategoreja:User ltg| 4]] + kp6ftwu40jxktsz83c2v1rfp9ja9x5n + + + + Kategoreja:User ltg-2 + 14 + 846 + + 29000 + 25847 + 2013-03-08T22:05:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 8 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489085]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ltg-2}} + +[[Kategoreja:User ltg| 3]] + 2kpxnjm8596gy1ld8s2jxkfzdtwqs18 + + + + Kategoreja:User ltg-3 + 14 + 847 + + 29001 + 25849 + 2013-03-08T22:05:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489098]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ltg-3}} + +[[Kategoreja:User ltg| 2]] + 8eesv97yshyknp25y5rlmhun5bnny88 + + + + Kategoreja:User ltg-4 + 14 + 848 + + 29002 + 15185 + 2013-03-08T22:05:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489115]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ltg-4}} + +[[Kategoreja:User ltg| 1]] + gm4j9e8xshoyu12lmt7av9xrsjocj8v + + + + Kategoreja:User ltg-N + 14 + 849 + + 29003 + 15184 + 2013-03-08T22:05:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489133]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ltg-N}} + +[[Kategoreja:User ltg| 0]] + 562m59nfhwuioifv13j4aig16tl99kk + + + + Kategoreja:Varakļuoni + 14 + 850 + + 29588 + 15873 + 2013-04-04T20:16:44Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9724817]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Varakļāni|Varakļuoni}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Varakļuonu nūvods]] + bayn9x8kuk9ciih3h2pjcvb66ckl2z6 + + + + Kategoreja:Vaļsteibys vaļdeišonys formys + 14 + 851 + + 10094 + 10093 + 2011-03-19T13:45:52Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Vaļsteibys vaļdeišonys formys}} +[[Category:Politika|Vaļdeišonys formys]] + sozkw2ru6brativ8q0y4d39a8p1ygul + + + + Kategoreja:Veremu pogosts + 14 + 852 + + 29589 + 16648 + 2013-04-04T20:16:46Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9463205]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Vērēmi parish|Veremu pogosts}} +{{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Rēznis nūvods]] + tp8zwbbmkujt9ssh7gxnbg3hel8h1t9 + + + + Kategoreja:Veterinareja + 14 + 853 + + 10099 + 10098 + 2011-03-19T13:45:52Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Veterinareja}} +[[Category:Zineiba]] + m5d8ksjmfersn0ekniz4dk08lj5a7jo + + + + Kategoreja:Viesteitivi + 14 + 854 + + 28445 + 26729 + 2013-03-07T21:32:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 98 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1458390]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Mass media|Viesteitivi}} +{{catmore|viesteitivs}} + +[[Kategoreja:Kultura]] +[[Kategoreja:Ļaudeiba]] + okwwz54123kusphla784c9itfs07im1 + + + + Kategoreja:Viesture + 14 + 855 + + 28446 + 27676 + 2013-03-07T21:33:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 203 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457595]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|History|Viesture}} + +{{DEFAULTSORT:Viesture}} +[[Kategoreja:Pamatkategorejis]] +[[Kategoreja:Akademiskuos zineibys]] +[[Kategoreja:Socialuos zineibys]] +[[Kategoreja:Humanitaruos zineibys]] +[[Kategoreja:Ļaudeiba]] +[[Kategoreja:Vydszineibys]] + 2arrslufitd3k8jssbmafqsg3236spp + + + + Kategoreja:Vikipedeja + 14 + 856 + + 29737 + 28447 + 2013-04-13T04:52:23Z + + KLBot2 + 1857 + + + Bot: Migrating 12 interwiki links, now provided by [[Wikidata]] on [[:d:Q4966679]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Wikipedia|Vikipedeja}} + + +{{DEFAULTSORT:Vikipedeja}} +[[Kategoreja:Eņciklopedejis]] + 2g16t2msmunfld1nj3v0nnjh77g68ml + + + + Kategoreja:Vikipedejis atvaigi + 14 + 857 + + 28448 + 26004 + 2013-03-07T21:33:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 56 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6135725]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + Kategorejā īīt informaceja, kas sasīta ar Vikipedejā īliktū atvaigu davēri. +{{Commonscat|CommonsRoot}} + +{{DEFAULTSORT:Vikipedejis atvaigi}} +[[Category:Vikipedeja|Atvaigi]] + c77scl9agf8e5tfwzydep4ggs7fe67t + + + + Kategoreja:Vikipedejis davēris taisi + 14 + 858 + + 30829 + 30029 + 2015-08-08T12:15:46Z + + YiFeiBot + 2627 + + + Bot: Migrating 5 langlinks, now provided by [[d:|Wikidata]] on [[d:q5610208]] + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi|Davēris taisi]] + +[[ja:Category:お知らせテンプレート]] + mxc1ng2xdyosnhrjss0pxztkaejkt5p + + + + Kategoreja:Vikipedejis lītuošona + 14 + 859 + + 10116 + 10115 + 2011-03-19T13:45:53Z + + SPQRobin + 2 + + + 2 versijas: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Vikipedejis lītuošona}} +[[Category:Vikipedeja|Lītuošona]] + 3jho7757nw76ccalajomotxalcnkbl2 + + + + Kategoreja:Vileks + 14 + 861 + + 29576 + 15876 + 2013-04-04T08:12:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9725699]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Viļaka|Vileks}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Vileks nūvods]] + ss4qj1x14tcydpx7ygwvptwib7a1bc8 + + + + Kategoreja:Vizualuo muoksla + 14 + 862 + + 28449 + 26613 + 2013-03-07T21:33:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 76 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457828]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Vizualuo muoksla}} +[[Kategoreja:Muoksla]] + cy3xatjn2ww94zkf3oz73a5glz7cttq + + + + Kategoreja:Viļāni + 14 + 863 + + 29577 + 15879 + 2013-04-04T08:12:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9725772]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Viļāni|Viļāni}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Viļānu nūvods]] + f7qzjc9yb2sl2i6r264wwsoxu8nbff2 + + + + Kategoreja:Volūdu lītuotuoju taisi + 14 + 864 + + 16578 + 16577 + 2011-08-30T15:06:06Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi:Lītuotuoji]] + 9j8d7vbbsjfl0tvhdb35ibc6mvfqhss + + + + Kategoreja:Volūdu saimis + 14 + 865 + + 29489 + 27001 + 2013-04-01T08:12:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 79 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7212694]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Category:Volūdys| ]] + hjphnhnk840djcz1yaqdpztyxocmbmk + + + + Kategoreja:Volūdu taisi + 14 + 866 + + 29738 + 16587 + 2013-04-13T04:53:49Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7102411]] + wikitext + text/x-wiki + {{CategoryTOC}} + +[[Kategoreja:Vikipedeja:Taisi]] + kf7pr56mkfbegmfs3k2ccfuoeccsp9a + + + + Kategoreja:Volūdys + 14 + 867 + + 29739 + 28450 + 2013-04-13T04:53:53Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q4960490]] + wikitext + text/x-wiki + {{Commonscat|Languages}} + +{{DEFAULTSORT:Volūdys}} +[[Kategoreja:Volūdzineiba]] + cu9osg31pqxbq5jmiqq8yfexw0yyjg0 + + + + Kategoreja:Volūdzineiba + 14 + 868 + + 28451 + 27675 + 2013-03-07T21:34:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 147 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5613665]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Volūdzineiba}} +[[Kategoreja:Antropologeja]] +[[Kategoreja:Zineiba]] + ei8sc2x8d458b12tdzjlfedaifu3m05 + + + + Kategoreja:Vuiceiba + 14 + 870 + + 28452 + 26731 + 2013-03-07T22:00:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 138 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4103249]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Education|Vuiceiba}} + +{{DEFAULTSORT:Vuiceiba}} +[[Kategoreja:Ļaudeiba]] +[[Kategoreja:Zineigumi]] + lqec5ad8vkep31titfxpkitd4brnfdj + + + + Kategoreja:Vydslaiki + 14 + 871 + + 29512 + 27046 + 2013-04-02T18:53:44Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 92 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7461740]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Viesture]] + qn57hiq82hl999jh1ec17p44d3icipi + + + + Kategoreja:Vydszineibys + 14 + 872 + + 29364 + 26552 + 2013-03-14T05:14:05Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 57 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7157272]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Interdisciplinary fields|Vydszineibys}} + +{{DEFAULTSORT:Vydszineibys}} +[[Category:Akademiskuos zineibys]] +[[Category:Zineiba]] + mp54fu2yiwzpgeisagjnaq5tkzizovd + + + + Kategoreja:Vydyskī vydslaiki + 14 + 873 + + 10152 + 10151 + 2011-03-19T13:45:55Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Vydyskī vydslaiki}} +[[Category:Vydslaiki]] + kgqk20l33lmtqj12s2sugro4pw09v2j + + + + Kategoreja:Vyrtuve + 14 + 874 + + 10154 + 10153 + 2011-03-19T13:45:55Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Vyrtuve}} +[[Category:Ļaudeiba]] + 2ifk333kq1ttkbpcp1hzi5ewy0c9svb + + + + Kategoreja:Vysaine + 14 + 875 + + 10156 + 10155 + 2011-03-19T13:45:55Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Vysaine}} +[[Category:Doba]] + 39o3d37dw52ck1hcmypqqho0n9xr2vn + + + + Kategoreja:Vāleimī vydslaiki + 14 + 876 + + 10158 + 10157 + 2011-03-19T13:45:55Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Vāleimī vydslaiki}} +[[Category:Vydslaiki]] + 0hxj1y387w37zdartctfukagqv9jvwd + + + + Kategoreja:Zamzeme + 14 + 877 + + 10160 + 10159 + 2011-03-19T13:45:55Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Iudiņs}} +[[Category:Doba]] + noafk10o0gtf6btaf39jaei1lib67x4 + + + + Kategoreja:Zeimeibu škiršona + 14 + 878 + + 29511 + 28935 + 2013-04-02T18:53:42Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1982926]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Disambiguation|Zeimeibu škiršona}} +{{CategoryTOC}} + +[[Kategoreja:Vikipedeja]] + 44311zho1hw5dnytk3xskonyclmrp7b + + + + Kategoreja:Zeimeibu škiršonys taisi + 14 + 879 + + 29363 + 26742 + 2013-03-14T05:14:04Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 50 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6998835]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Disambiguation and redirection templates|Zeimeibu škiršonys taisi}} + +[[Kategoreja:Vikipedejis davēris taisi]] + ewpprtexf8tzlpcq6uwrddnx52l3pb6 + + + + Kategoreja:Zeimeigi Latgolys ļauds + 14 + 880 + + 10167 + 10166 + 2011-03-19T13:45:56Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Zeimeigi Latgolys ļauds}} +[[Category:Latgola|Zeimeigi ļauds]] +[[Category:Zeimeigi ļauds|Latgolys zeimeigi ļauds]] + qi03onut8pph1v1vswdnbttxhj5ohsf + + + + Kategoreja:Zeimeigi ļauds + 14 + 881 + + 10169 + 10168 + 2011-03-19T13:45:56Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Zeimeigi ļauds}} +[[Category:Ļaudeiba]] + sfslmnmpfr75gsjjswmcfclxkps3wns + + + + Kategoreja:Zineiba + 14 + 882 + + 31440 + 30921 + 2016-05-29T22:14:31Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q1458083]]; 1 langlinks remaining + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Science|Zineiba}} + +{{DEFAULTSORT:Zineiba}} +[[Category:Pamatkategorejis]] +[[Category:Doba]] +[[Category:Kultura]] + +[[ce:Тоба:Iилма]] + sn3rhuw7rqzwvrcah69ytuzg0l0a2eg + + + + Kategoreja:Zineigumi + 14 + 883 + + 29019 + 28454 + 2013-03-09T05:32:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2945448]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Knowledge|Zineigumi}} + +{{DEFAULTSORT:Zineigumi}} +[[Kategoreja:Guoduošona]] +[[Kategoreja:Informaceja]] + si47beeu8yuu0ejpqs8gymbyootks1w + + + + Kategoreja:Zininīki + 14 + 884 + + 10177 + 10176 + 2011-03-19T13:45:56Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Zininīki}} +[[Category:Zineiba| ]] + r0z3n57p7c165uqj3b295unorbr2yi4 + + + + Kategoreja:Zoologeja + 14 + 885 + + 29742 + 28988 + 2013-04-13T04:59:45Z + + KLBot2 + 1857 + + + Bot: Migrating 3 interwiki links, now provided by [[Wikidata]] on [[:d:Q6544657]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Zoology|Zoologeja}} + +{{DEFAULTSORT:Zoologeja}} +[[Kategoreja:Biologeja]] + t2siueyf9vrchsq8y3lv9qzkfp9lliu + + + + Kategoreja:Ībolsuošona + 14 + 887 + + 10184 + 10183 + 2011-03-19T13:45:57Z + + SPQRobin + 2 + + + 1 versija: importing templates and categories from Incubator + wikitext + text/x-wiki + {{DEFAULTSORT:Ībolsuošona}} +[[Category:Politika]] + l64qery8re4ksr9fosaahhwtltrlcdu + + + + Kategoreja:Škārsteiklys + 14 + 889 + + 30831 + 29590 + 2015-08-08T12:16:26Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q4049595]] + wikitext + text/x-wiki + {{catmain}} +{{commonscat|Internet|Škārsteiklys}} + +[[Kategoreja:Tehnologeja]] +[[Kategoreja:Datorzineiba]] + +[[lo:ໝວດ:ອິນເຕີຣ໌ເນັຕ]] + qqbzuv6mwd0xh5vzg4h8wggknthplyu + + + + Kategoreja:Škārsviki taisi + 14 + 890 + + 28455 + 26929 + 2013-03-07T22:00:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 52 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6324145]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Szkarsviki taisi}} +[[Kategoreja:Vikipedejis davēris taisi]] + 6k9qv79ohi29im66km03pbqiy2cv9t4 + + + + Taiss:Infoskreine + 10 + 895 + + 30636 + 28456 + 2015-03-23T18:10:01Z + + Edgars2007 + 114 + + Aizvieto lapas saturu ar '{{#invoke:Infobox|infobox}}<noinclude> {{documentation}} </noinclude>' + wikitext + text/x-wiki + {{#invoke:Infobox|infobox}}<noinclude> +{{documentation}} +</noinclude> + bi6zudjp7d0v1wwsxz20vxhbs4lo5jr + + + + Taiss:Infoskreine/row + 10 + 896 + + 17187 + 10203 + 2011-09-20T17:04:07Z + + Edgars2007 + 114 + + + "[[Taiss:Infobox/row]]" puorsauču par "[[Taiss:Infoskreine/row]]" + wikitext + text/x-wiki + {{#if:{{{header|}}} + |<tr><th colspan="2" class="{{{class|}}}" style="text-align:center; {{{headerstyle|}}}">{{{header}}}</th></tr> + |{{#if:{{{data|}}} + |<tr class="{{{rowclass|}}}">{{#if:{{{label|}}} + |<th scope="row" style="text-align:left; {{{labelstyle|}}}">{{{label}}}</th> + <td class="{{{class|}}}" style="{{{datastyle|}}}"> + |<td colspan="2" class="{{{class|}}}" style="text-align:center; {{{datastyle|}}}"> + }} +{{{data}}}</td></tr> + }} +}} + 8ln1zzdi59wuh786qbvqk92ccdme7id + + + + Latgaļu Vikipedeja + 0 + 899 + + 28457 + 26823 + 2013-03-07T22:01:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2913253]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Wikipedia-logo-v2-ltg.png|thumb|135px|Latgaļu Vikipedejis logotips.]] +'''Latgaļu Vikipedeja''' irā [[Vikipedeja|Vikipedejis]] padaļa [[latgaļu volūda|latgaļu volūdā]]. + +== Viesture == +[[Fails:Wikipedia-logo-ltg.png|thumb|135px|Pyrmais latgaļu Vikipedejis logotips.]] +* 2005 gods +** Zīmys mieneša 2 dīna — latgaļu Vikipedejis [http://incubator.wikimedia.org/w/index.php?title=Main_Page&action=historysubmit&diff=85&oldid=84 pyrmais pīminiejums] Inkubatorā. +** Zīmys mieneša 3 dīna — pyrmū rakstīni [[Vikipedeja:Vandaļu gors|Vandaļu gors]] sataiseja [[Seviškuo:Contributions/81.198.191.251|81.198.191.251]] (teorejā vāluok registriejīs zam slāgvuorda [[Lītuotuojs:Kalvis|Kalvis]]) + +* 2006 gods Leita mieneša 28 dīna — sataiseits [[m:Requests for new languages/Wikipedia Latgalian|pyrmais aizprasejums]] latgaļu Vikipedejai. + +* 2007 gods Svacainis mieneša 12 dīna — sataiseits [[m:Requests for new languages/Wikipedia Latgalian 2|ūtrys aizprasejums]] latgaļu Vikipedejai. + +* 2010 gods +** Jaunagods mieneša 26 dīna — sataiseits [[m:Requests for new languages/Wikipedia Latgalian 3|trešs aizprasejums]] latgaļu Vikipedejai. +** Svacainis mieneša 28 dīna — aizprasejums apzeimots kai pīdareigs. + +* 2011 gods +** Svacainis mieneša 13 dīna — aizprasejums apstyprynuots i nūsyuteits lyugumroksts sataiseit sātyslopu [[:bugzilla:27379|bugzillā]]. +** Pavasara mieneša 18 dīna — sataiseita latgaļu Vikipedeja. +** Pavasara mieneša 19 dīna — [[Lītuotuojs:SPQRobin|SPQRobin]] puorcēle latgaļu Vikipedejis turīni nu Inkubatora. +** Lopu mieneša 18 dīna — sataiseits 500 rakstīņs, [[Lītuotuojs:Andstobax|Andstobax]] pīraksteits rakstīņs [[Malta (Maltys pogosts)]]. + +== Nūruodis == +* [http://www.ltvzinas.lv/?n=zinas&id=3121 LTV ziņu dienests: Darbu sākusi Vikipēdija latgaliešu valodā] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Vikipedeja]] + gwk3ep8629n72z4tvkv0qqbux8apid4 + + + + HTML + 0 + 906 + + 28458 + 27960 + 2013-03-07T22:01:27Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 99 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8811]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''HTML''' (''Hyper text Markup Language'' "Hiperteksta īzeimuošonys volūda") – datorūs lītuota teksta īzeimuošonys (markēšonys) volūda, ar kū īzeimuot saturu Internetā. Bīžuokī lītuojumi - [[Škūrsteitivs|puorstaipteikla škūrsteitivim]], [[Pruottelefons|pruottelefonim]], e-posta viestim. Volūdu standartizej [[W3C|W3 konsorcijs]]. Dokumenti, kas raksteiti HTML formatā atsaškir nu Open Office Writer, MS Word ci Adobe PDF dokumentim ar tū, ka HTML aproksta vīn dokumenta saturu i daļu saturiskū nūzeimi, bet (eipaši HTML 4 i 5) naapzeimoj ituo dokumenta grafiskuos eipateibys - tuos var elasteigi pīmāruot datora videi, kur itys HTML dokuments lītuots. Pīvadumam, HTML apzeimoj, ka teksta gabaleņš irā pyrmuo leidzīņa vyrsroksts, bet naapzeimoj ar kaida fonta burtim, cik lels, kai izleidzynuots, i.t.t. + +== Elementi i jūs atributi == + +Pomota vīneiba HTML volūdā irā elements. Kai ari [[XML|XML volūdā]], HTML elementam var byut atributi i īkšpuse. Īkšpusē var byut teksts ci cyti elementi. Sevkuram elementa atributam ir sovs nūsaukums i nūzeime. Atributi bīži puormej nūklusātuos vierteibys. Pīvadumam, HTML fragments: + malns<'''span''' style="color:red"><'''strong'''>R</'''strong'''> sorkons</'''font'''> +irā 2 elementi. Vīns nu elementu ('''font''') puorslādz kruosu nu nūklusātuos (malnys) iz sorkonu. Ituo elementa īkšpusē asūšais elements ('''strong'''), puormej fontu nu nūklusāta iz trakna. +Pyrmais elements ir ar vīnu atributu ('''style''') i ituo atributa vierteibu '''color:red'''. Cytam elementam atributu navā. + +HTML kodā atributu vierteibys īsokoms likt pēdeņuos (") ci apostrofūs ('), bet HTML 4.01 standarts tū naprasa. + +== HTML elementu grupys == + +* '''Strukturys''' i naradzamī elementi. Pīvadumam '''html''', '''head''', '''link''', '''meta''', '''style''', '''script'''. +* '''Bloku elementi''', kas aizjam taisnstūri. Pīvadumam, '''div''', '''p''', '''table''', '''ol''', '''ul''', '''li'''. +* '''Plyusmys elementi''', kas var puorīt nu vīnys ailis iz citu, bet naprosa sev taisnstūri. + +== Versejis == +HTML versijā nūruoda versejis (i reizim zamversejis) numurus. Pīvadumam, HTML 3.2, HTML 4.01, HTML 5. +Pādējuos [[W3C]] versejis irā HTML versija 4.01. Versejai HTML 5 irā skices statuss, bet puorsavierieji jau nazcik elementu nu HTML 5 atbolsta. Bejuši centīni [[HTML]] raksteit ari teirā [[XML]] sintaksē (a ne [[SGML]]) - itū projektu sauc XHTML (verseja XHTML 1.0). + +2009 godā suoca dorbu [[W3C|WWW arhitektu padūme]], i apstyprynova '''HTML 5''' malnrokstu<ref>http://dev.w3.org/html5/spec/Overview.html</ref>. HTML 5 irā pīmāruots pruottelefonim; tymā irā puors jaunu elementu (pīvadumam '''canvas'''), var bez Adobe Flash i leidzeigim līdzeklim attāluot ari audio i video. + + +== Olūti == +{{Nūruodis}} + +== Nūruodis == +* [[W3C]] – WWW arhitektu padūme. +* [http://www.w3.org/TR/html401/ HTML 4.01] – W3C rekomendacija. +* [http://www.w3.org/TR/html5/ HTML 5] – W3C malnroksts +* [http://www.whatwg.org/html5 WHATWG] – HTML 5 automatikys aproksta dorba grupa. +* [http://up.on.lt/html5.html HTML4 i XHML1 puormej HTML5] – Vlado Palubinsko apskots ap HTML5. + +[[Kategoreja:Škārsteiklys]] +[[Kategoreja:Failu formati]] +[[Kategoreja:Volūdys]] + 8baaqtpxlevwztlex7b2vfckf022bzu + + + + Main Page + 0 + 907 + + + 10257 + 2011-03-20T22:08:54Z + + Dark Eagle + 34 + + + Pāradresē uz [[Suoku puslopa]] + wikitext + text/x-wiki + #REDIRECT [[Suoku puslopa]] + 4ht9z9pby5oao7ygg4bqjhasyrnggfb + + + + Taiss:Bot + 10 + 908 + + 28459 + 28041 + 2013-03-07T22:01:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 268 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4299475]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| class="messagebox" +|align="center"|[[File:Crystal Clear action run.png|50px]] +|align="left" width="100%"|'''Itys lītuotuojs irā [[Vikipedeja:Boti|bots]], kuru kiravuo [[:{{{site|ltg}}}:User:{{{1}}}|{{{1}}}]] ([[:{{{site|ltg}}}:User talk:{{{1}}}|sprīža]]).''' +|}<noinclude> +[[Category:Vikipedejis davēris taisi]] + +</noinclude> + dmbul2oap51rt8itrkbjsg80nq931he + + + + Taiss:User lv + 10 + 910 + + 28460 + 27759 + 2013-03-07T22:01:49Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 41 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6318382]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = lv +| name = Latvīšu volūda +| level = N +| size = +| info = Šim lietotājam '''[[:Kategoreja:User lv|latviešu valoda]]''' ir '''[[:Kategoreja:User lv-N|dzimtā valoda]]'''. +}}<noinclude> +</noinclude> + 3jd2g18umt3tmc6weeyxizu5wgixkxo + + + + Kategoreja:User lv + 14 + 912 + + 29518 + 26846 + 2013-04-02T18:54:05Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 56 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489178]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lv}} + +[[Kategoreja:Lītuotuoju volūdys|lv]] + j1ai57t1wqqkzpt6einoc2uag6as2oe + + + + Kategoreja:User lv-N + 14 + 913 + + 29517 + 26848 + 2013-04-02T18:54:04Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 44 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489361]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lv-N}} + +[[Kategoreja:User lv| 0]] + l9bxtgd9pimj7mmbe0p51hn8v5n18rl + + + + Taiss:Userbox + 10 + 914 + + 10291 + 2011-03-21T00:39:23Z + + Dark Eagle + 34 + + + Jauna lapa: <div style="float:{{{float|left}}}; border:{{{border-width|{{{border-s|1}}}}}}px solid {{{border-color|{{{1|{{{border-c|{{{id-c|#999}}}}}}}}}}}}; margin:1px;" class="wikipediauserbox {{{... + wikitext + text/x-wiki + <div style="float:{{{float|left}}}; border:{{{border-width|{{{border-s|1}}}}}}px solid {{{border-color|{{{1|{{{border-c|{{{id-c|#999}}}}}}}}}}}}; margin:1px;" class="wikipediauserbox {{{bodyclass|}}}"> +{| cellspacing="0" style="width:238px; background:{{{info-background|{{{2|{{{info-c|#EEE}}}}}}}}};" +{{#if:{{{logo|{{{3|{{{id|id}}}}}}}}}| +! style="width:{{{logo-width|{{{id-w|45}}}}}}px; height:{{{logo-height|{{{id-h|45}}}}}}px; background:{{{logo-background|{{{1|{{{id-c|#DDD}}}}}}}}}; text-align:{{{id-a|center}}}; font-size:{{{logo-size|{{{5|{{{id-s|14}}}}}}}}}pt; color:{{{logo-color|{{{id-fc|black}}}}}}; padding:{{{logo-padding|{{{id-p|0 1px 0 0}}}}}}; line-height:{{{logo-line-height|{{{id-lh|1.25em}}}}}}; vertical-align: middle; {{{logo-other-param|{{{id-op|}}}}}}" {{!}} {{{logo|{{{3|{{{id|id}}}}}}}}} +}} +| style="text-align:{{{info-a|left}}}; font-size:{{{info-size|{{{info-s|8}}}}}}pt; padding:{{{info-padding|{{{info-p|0 4px 0 4px}}}}}}; height:{{{logo-height|{{{id-h|45}}}}}}px; line-height:{{{info-line-height|{{{info-lh|1.25em}}}}}}; color:{{{info-color|{{{info-fc|black}}}}}}; vertical-align: middle; {{{info-other-param|{{{info-op|}}}}}}" {{#if:{{{info-class|}}}|class="{{{info-class}}}"}} | {{{info|{{{4|''info''}}}}}} +|}</div>{{#if:{{{usercategory|}}}{{{usercategory2|}}}{{{usercategory3|}}}|{{cat handler + |nocat = {{{nocat|}}} + |subpage = {{#if:{{{nocatsubpages|}}}|no}} + |user = {{#if:{{{usercategory|}}}|[[Category:{{{usercategory}}}]]}}{{#if:{{{usercategory2|}}}|[[Category:{{{usercategory2}}}]]}}{{#if:{{{usercategory3|}}}|[[Category:{{{usercategory3}}}]]}} + |template = {{#if:{{{usercategory|}}}|[[Category:{{{usercategory}}}| {{BASEPAGENAME}}]]}}{{#if:{{{usercategory2|}}}|[[Category:{{{usercategory2}}}| {{BASEPAGENAME}}]]}}{{#if:{{{usercategory3|}}}|[[Category:{{{usercategory3}}}| {{BASEPAGENAME}}]]}} +}}}}<noinclude> +{{Dokumentaceja}} +</noinclude> + twit5r4yxyqdyxhnwuzq7ao3207u7y1 + + + + Taiss:User lang + 10 + 915 + + 30008 + 12095 + 2013-08-16T15:45:59Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6316821]] + wikitext + text/x-wiki + <includeonly>{{userbox +|id = {{#if:{{{name|}}}|[[{{{name}}}|{{{lang|}}}]]|{{{lang|}}}}}{{#ifeq:{{{level}}}|N||-{{{level}}}}} +|id-c = {{#switch:{{{level}}} +| 0 = #ffb3b3 +| 1 = #c0c8ff +| 2 = #77e0e8 +| 3 = #99b3ff +| 4 = #ffcf4d +| 5 = #f99c99 +| N = #6ef7a7}} +|id-s = {{#if:{{{size|}}}|{{{size}}}|14}} +|info = {{{info}}} +|info-c = {{#switch:{{{level}}} +| 0 = #ffe0e8 +| 1 = #f0f8ff +| 2 = #d0f8ff +| 3 = #e0e8ff +| 4 = #ffefa6 +| 5 = #f9cbc9 +| N = #c5fcdc}} +|border-c = {{#switch:{{{level}}} +| 0 = #ffb3b3 +| 1 = #c0c8ff +| 2 = #77e0e8 +| 3 = #99b3ff +| 4 = #ffcf4d +| 5 = #f99c99 +| N = #6ef7a7}} +}}{{#ifeq:{{FULLPAGENAME}}|Taiss:User {{{lang}}}{{#ifeq:{{{level}}}|N||-{{{level}}}}}|{{user lang/doc-include|lang={{{lang|}}}|name={{{name|}}}|level={{{level|}}}}}}}{{#if:{{{nocat|}}}||{{#ifeq:{{SUBJECTSPACE}}|Lītuotuojs|[[Kategoreja:User {{{lang}}}-{{{level}}}|{{PAGENAME}}]]{{#ifeq:{{{level}}}|0||[[Kategoreja:User {{{lang}}}|{{PAGENAME}}]]}} }}{{#ifeq:{{NAMESPACE}}|Taiss|[[Kategoreja:Volūdu lītuotuoju taisi|{{{lang}}}-{{{level}}}]]}} }}</includeonly><noinclude> +{{Dokumentaceja}} + +</noinclude> + i660ddztgsx8fvnn5r9a0ychpenk29q + + + + Taiss:Jaunus zamīnē + 10 + 918 + + 29785 + 23838 + 2013-04-15T01:36:20Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Userbox +|float=right +|id=↓ +|id-c=#A0E0FF +|id-s=24 +|info=Jaunus komentarus, lyudzams, davīnoj '''lopys zemīnē'''. <span class="plainlinks">[http://ltg.wikipedia.org/w/index.php?title={{TALKPAGENAMEE}}&action=edit&section=new Damīdz ite, kab atstuotu jaunu viesti]</span>. +|info-c=#F0FAFF +}}<noinclude> +[[Kategoreja:Vikipedeja:Taisi]] + +</noinclude> + 655ilbypvvf9dptvckz3cqlkolpwka0 + + + + Solu lopsa + 0 + 920 + + 30707 + 29212 + 2015-04-02T15:30:01Z + + Magioladitis + 2827 + + + /* Olūti */All info is kept in Wikidata, removed: {{Link FA|en}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Urocyon littoralis standing.jpg|thumb|250px|''Solu lopsa'' (Urocyon littoralis)]] +'''Solu lopsa''' ({{Vol-la|Urocyon littoralis}}); ({{Vol-lv|Salu lapsa}}) irā plieseigo zvieru giņts iz [[Suņu saime|suņu saimis]] (''Canidae''). + +== Škiras == +''Palāko lopsu'' giņtī irā 2 škiras <ref name="BioLib">[http://www.biolib.cz/cz/taxon/id1904/ BioLib] Profil taxonu — rod liška ''Urocyon'' Baird, 1857</ref>: +* ''[[Urocyon cinereoargenteus|Palākā lopsa]]'' +* ''[[Solu lopsa]]'' +* †''[[Urocyon progressus]]'' + +== Nūruodis == + +{{Nūruodis}} + +== Olūti == + +* http://www.nps.gov/archive/chis/rm/IslandFox/Index.htm +* http://www.islandfox.org/ +* http://www.nps.gov/chis/naturescience/island-fox.htm +* http://www.blueplanetbiomes.org/island_grey_fox.htm +* http://www.iws.org/island_fox_conservation.htm +* http://www.biologicaldiversity.org/species/mammals/island_fox/ +* http://www.latimes.com/news/local/la-me-catalina-fox4-2009feb04,0,5021040.story + + +{{Nadabeigts rakstīņs}} +{{Commonscat|Urocyon}} + +{{DEFAULTSORT:Urocyon}} + +[[Kategoreja:Dzeivinīki]] + ayvfa7cusqmikhsoiihp8m4mbdsde9a + + + + Ādažu nūvods + 0 + 924 + + 28462 + 19949 + 2013-03-07T22:02:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3019837]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ādažu nūvods +| zemislopa = Adazu novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Ādažu novads COA.png +| gerba_pasauka = Ādažu nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Ādaži +| pluots = 162,9 +| dzeivuotuoju_skaits = 9878 +| dzeivuotuoji_gods = 2010 +| bīzeiba = 60,6 +| īstateits = 2009 +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.adazi.lv +}} + +'''Ādažu nūvods''' irā pošvolds [[Vydzeme|Vydzemis]] vokorūs, natuoli nu [[Gauja|Gaujis]] ītakys jiurā. Tur rūbežu ar [[Saulismalis nūvods|Saulismalis nūvodu]] pūstumūs, [[Siejis nūvods|Siejis nūvodu]] pūstumūs i reitūs, [[Iņčukolna nūvods|Iņčukolna nūvodu]] reitūs, [[Garkaļnis nūvods|Garkaļnis nūvodu]] dīnavydūs i [[Carnikovys nūvods|Carnikovys nūvodu]] vokorūs. Pošys leluos nūvoda solys irā [[Ādaži]] (nūvoda centrys), Aļderi, Atari, Āni, Boltaisazars, Birzinīki, Garkaļne, Kadaga, Staprini, Divazari, Iļkine, Eimuri. + +== Viesture == +1935 godā [[Reigys apleiciņs|Reigys apleiciņa]] Ādažu pogosta pluots beja 402 km² i tymā dzeivova 3338 cylvāki.<ref>{{EncLP}}</ref> 1945 godā pogostā roduos Ādažu, Berģu, Carnikovys i Garkaļnis solys pošvolds, a pogostu 1949 godā likvidieja. Ādažu sola bejuse Saulismalis (1949—1956) i [[Reigys rajons|Reigys]] (par 1956 gods) rajonā. Ādažu solai 1954 godā daškiera Carnikovys solu. 1974 godā daškiera likvidātū Mangaļu solys [[Kolkozs|kolkoza]] «Ādaži» teritoreju, a dali teritorejis daškiera Berģu solai. 1977 godā daškiera dali nu likvidātuos Berģu solys i dali nu Garkaļnis i Vangažu solys teritorejis.<ref>{{Latvijas PSR iedalījums}}</ref> 1990 godā solu otkon puorsauce par pogostu. 1992 godā nu Ādažu pogosta atškiera nu jauna veiduotū [[Carnikovys pogosts|Carnikovys pogosta]] teritoreju. 2006 godā pogostu puorsauce par Ādažu nūvodu.<ref>[http://www.adazi.lv/upload/novada_dome/nolikumi_reglamenti/adazu_nov_pasvald_nolik.doc ''(latvyskai)'' Ādažu novada pašvaldības nolikums]</ref> + +== Zeimeigi ļauds == +* [[Fēlikss Cielēns]] (1888—1964) — latvīšu politiks — uorejū lītu ministrys (1926—1928), rakstinīks + +== Nūruodis == +{{Nūruodis}} + +== Teiklavītys == +* [http://www.adazuvidusskola.lv/ Ādažu vydsškola] +* [http://abvs.lv/ Ādažu breivuo Valdorfa škola] + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Ādažu nūvods| ]] + 1197xvmnffenhqwir6gajgl0aad6aev + + + + Plykspuorņi + 0 + 925 + + 30708 + 28936 + 2015-04-02T15:30:03Z + + Magioladitis + 2827 + + + /* Nūruodis i olūti */All info is kept in Wikidata, removed: {{Link FA|es}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + '''Plykspuorņi''' ({{Vol-la|Chiroptera}}; {{Vol-lv|sikspārņi}}) irā dzeivinīku aiļa, ar 2 zemaiļim i 17 saimym. Pi plykspuorņu aiļas pīdar vairuok kai 1100 škirys, Latvejā dzeivo 15 škirys. + +== Nūruodis i olūti == +* http://latvijas.daba.lv/dzivnieki/hordainhi/ziidiitaaji/sikspaarnhi/ + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + e6u74hoobp623pckgpuqmzezn0w4jmh + + + + Taiss:Catmore + 10 + 926 + + 10886 + 10511 + 2011-03-22T01:34:20Z + + Glossologist + 79 + + + pareizr. + wikitext + text/x-wiki + :<div class="boilerplate" id="catmore">''Seikuokai informacejai verīs rakstīni '''[[{{{1|{{PAGENAME}}}}}]]'''.</div><noinclude> +[[Category:Vikipedejis davēris taisi|{{PAGENAME}}]] + +[[af:Sjabloon:Hoofartikel]] +[[an:Plantilla:Catmás]] +[[ar:قالب:مزيد]] +[[bg:Шаблон:Категория инфо]] +[[bn:টেমপ্লেট:মূল নিবন্ধ]] +[[ca:Plantilla:Infocat]] +[[crh:Şablon:Catmore]] +[[cs:Šablona:Hlavní článek]] +[[el:Πρότυπο:Catmore]] +[[en:Template:Cat main]] +[[eo:Ŝablono:PliPri]] +[[es:Plantilla:Catmás]] +[[eu:Txantiloi:Nagusia]] +[[fr:Modèle:Article principal]] +[[gu:ઢાંચો:Catmore]] +[[hr:Predložak:Catmore]] +[[hu:Sablon:Bővebben]] +[[hy:Կաղապար:Catmain]] +[[ia:Patrono:Catmore]] +[[id:Templat:Artikel utama]] +[[is:Snið:Skoða meira]] +[[ja:Template:Catmore]] +[[ko:틀:분류 설명]] +[[lb:Schabloun:Catmore]] +[[li:Sjabloon:Catmore]] +[[lt:Šablonas:Plačiau]] +[[lv:Veidne:Catmore]] +[[mk:Шаблон:Катпов]] +[[no:Mal:Hovedartikkel]] +[[oc:Modèl:Article principal]] +[[os:Шаблон:Catmain]] +[[pt:Predefinição:Catmore]] +[[ro:Format:Catmore]] +[[ru:Шаблон:Основная статья по теме категории]] +[[sh:Šablon:Main]] +[[sk:Šablóna:Catmore]] +[[sl:Predloga:Članek ktgr]] +[[sr:Шаблон:Кат]] +[[sv:Mall:Huvudartikel]] +[[tl:Suleras:Catmore]] +[[tr:Şablon:Kategori açıklaması]] +[[udm:Шаблон:CatMain]] +[[uk:Шаблон:Catmore/Документація]] +[[vi:Bản mẫu:Bài chính thể loại]] +[[zh:Template:Catmore]] +</noinclude> + ef8hrxckwwh0e5jdxpkdl2veqgxen4l + + + + Taiss:Catmain + 10 + 927 + + + 10512 + 2011-03-21T11:02:54Z + + Glossologist + 79 + + Pāradresē uz [[Veidne:Catmore]] + wikitext + text/x-wiki + #REDIRECT [[Template:Catmore]] + n6hwcj1bgo0slg86bhfuokfs5bt6pc1 + + + + Taiss:Delete + 10 + 928 + + 29591 + 28006 + 2013-04-04T20:17:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 272 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4847311]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| style="margin:0.5em; padding:0.5em; background:#FEE; border:1px solid #999;" +|- +| [[Image:Icono aviso borrar.png|60px|left]] +| <big>'''This page has been nominated for speedy deletion.'''</big><br />The reason given is "{{{1}}}". If you disagree with its speedy deletion, please explain why on [[{{TALKPAGENAME}}|its talk page]]. If this page obviously does not meet the criteria for speedy deletion, or you intend to fix it, please remove this notice, but do not remove this notice from a page that you have created yourself. + +<span class="plainlinks">''Administrators, remember to check [[Special:Whatlinkshere/{{FULLPAGENAME}}|if anything links here]] and [{{fullurl:{{FULLPAGENAME}}|action=history}} the page history] ([{{fullurl:{{FULLPAGENAME}}|diff=0}} last edit]) before [{{fullurl:{{FULLPAGENAME}}|action=delete}} deletion].''</span> +|}<includeonly>{{{category|[[Category:Candidates for speedy deletion]]}}}</includeonly><noinclude> +[[eo:Ŝablono:Forigu]] +</noinclude> + 1s21lygygp9atpjp2k3hit2ws7j72kr + + + + Kategoreja:Candidates for speedy deletion + 14 + 929 + + 10796 + 2011-03-21T15:11:46Z + + Hydriz + 22 + + Jauna lapa: This category is used by [[m:Steward requests/Speedy deletions]] until local administrators are available. + wikitext + text/x-wiki + This category is used by [[m:Steward requests/Speedy deletions]] until local administrators are available. + hojtmrphmztl2l5vdybzxhykb65g4ro + + + + Dzeļža laiki + 0 + 933 + + + 10889 + 2011-03-22T01:38:46Z + + Glossologist + 79 + + Pāradresē uz [[Dzeļžalaiki]] + wikitext + text/x-wiki + #REDIRECT [[Dzeļžalaiki]] + m4npbdkj2sb3csc6q4upiauih3nwurf + + + + Škūrsteitivs + 0 + 934 + + 28464 + 25981 + 2013-03-07T22:02:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 102 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6368]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Škūrsteitivs''' (ci '''Puorstaipteikla škūrsteitivs''' ci '''puorsavieriejs''') irā [[softa aplikaceja]] kab ruodeitu, navigētu i maklātu informaceju [[Puorstaipteikls|Puorstaipteiklā]]. Sevkuru informacejis gabaleņu (''resursu'') identificej [[URL adress]] - tei var byut teikla lopa, obrazeņš, video ci kaids cits turīņs.<ref>http://www.w3.org/TR/webarch/#id-resources</ref> [[Nūruode|Nūruodis]] (''hipersaitys'') resursūs ļaun lītuotuojim vīgli puorīt škūrsteitivā nu vīna resursa da cyta. + +Škūrsteitivi gon vysulobuok pīmāruoti, kab puorsavārtu uorejūs teiklu resursus, bet jūs var lītuot ari privatūs teiklu ci lokalu failu ruodeišanai. Goduos, ka puorsavārtivam irā eipašs režims (''nadaslēdzis režims'' ci ''Offline mode''), kur mozuok drūšuma kontroles nakai verūtīs publisku turīni. + +== Viesture == +Škūrsteitiva viesture suocās 1980-tū godu beiguos, kad nazcik tehnologeju ļuove Tim'am Berners-Lee radeit pyrmuo puorstaipteikla (''World Wide Web'') arhitekturu. Jau ogruok Ted's Nelson's i Douglas Engelbart's beja radejuši [[Hiperteksts|hiperteksta]] sapratīni. Hiperteksts beja vīns nu centralim konceptim ari Puorstaipteiklā. Cyti koncepti beja URL adress (''Uniform Resource Locator'' - vīndabeigais resursa vītruods), [[HTTP|HTTP protokols]] (''Hypertext Transfer Protocol'' - hiperteksta puorsyuteišonys protokols), i markēšonys volūda [[HTML]]. + +Pyrmuo ārtuok lītuojamuo i grafisko škūrsteitiva ''NCSA Mosaic'' pasaruodeišona 1993.godā nūvede pi Web'a lītuošonys strauja pīauguma. Marc's Andreessen's, kurs vadeja Mosaic dorbus NCSA organizacejā dreiži suoca sovu uzjāmumu, kū nūsauce Netscape, i radeja pyrmū komercialū škūrsteitivu Netscape Navigator 1994.godā, kas dreiži kliva populars, i jū popularitates maksimuma breidī lītova 90% nu vysim puorstaipteikla lītuotuojim. + +[[Microsoft]] dreiži radeja sovu škūrsteitivu [[Internet Explorer]] 1995.godā, i suocās pyrmī "škūrsteitivu vaidi" (''browser war''). Izmantojūt sovu monopola poziceju operaceju sistemu tiergū, Microsoft varēja audzēt sova škūrsteitiva popularitati - i ap 2002.godu jū lītova kaidi 95% nu Web'a lītuotuojim.<ref name="searchenginejournal.com">[http://www.searchenginejournal.com/mozilla-firefox-internet-browser-market-share-gains-to-74/1082/ Searchenginejournal.com]</ref> Vāluok, kad pasaruodēja cyti lobi konkurenti - [[Firefox]], Safari, Opera, [[Google Chrome]], tod Explorer'a tiergus dale samazynuoja da 56.8%.<ref>http://marketshare.hitslink.com/browser-market-share.aspx?qprid=0</ref> + +Napaseņ škūrsteitivi atsateistej ari iz [[Pruottelefons|pruottelefonim]]. Lītuojūt Web'a biblioteku [[WebKit]], irā pataiseiti softa rysynuojumi iz [[Google Android]] (operaceju sistema Android), Apple iPhone (operaceju sistema iOS), Nokia (softa platforma S60) i iz Palm (operaceju sistema webOS). Nu vysu jaunuokais škūrsteitivs irā Google pataiseitais [[Google Chrome]] (ari lītuoj tū pošu WebKit biblioteku). Tierga dale jam strauji aug. + +== Softa funkcejis == + +=== Lītuotuoja sadurs === +Lelajai dalei nu škūrsteitivim irā kūpeigi taidi sadura elementi: +* "Atpakaļ" i "iz prīkšu" (''Back'' i ''forward'') pūgys, kab atsagrīztu ogruokā lopā, ci ītu škūrsteišonys viesturē iz prīkšu. +* Škūrsteišonys viesture (''Browsing history'') - saroksts, kur radzomi resursi, kas pīpraseiti ogruok. +* "Atsvīžeit" (''refresh'' ci ''reload'') pūga - kab pīpraseitu tū pošu resursu vēļ reizi. +* "Stop" pūga, kab prīkšlaiceigi beigtu resursa pīprasejumu. +* "Sātys" (''home'') pūga, kab atsagrīztu lītuotuoja [[Sātyslopa|sātyslopā]]. +* "Adresa lūdzeņš" (''address bar'') kab īraksteitu URL vītruodu ci adresu. +* "Meklēšonys lūdzeņš" (''search bar''), kab īraksteitu terminus [[Maklātivs|maklātivā]] +* "Statusa jūsta" (''status bar''), kab attāluotu viestejumus nu softa aplikacejis. +* Mierīņa īstateišana (''zooming''), kab tekstu lelynuotu ci mozynuotu. +* Meklēšona lopā (''Ctrl+F'') + +=== Drūšeiba === +Leluo dale škūrsteitivu atbolsta [[HTTPS|HTTPS protokolu]] i pīduovuoj veidus, kai iztreit Web'a kešu, [[Glabiņs|glabiņus]] i puorsavieršonys viesturi. + +=== Standartu atspaids === +Ogruok škūrsteitivi lītoja vīnkuoršu [[HTML]] verseji, vāluok jī paplatynova HTML volūdys vareibu, irā ari atspaids [[GIF]], [[JPEG]], [[PNG]] obrazeņu formatim, CSS stiļam, nazcik mediju formatim. Suocūt nu HTML5 Web'a lopu autori var īlikt audio i video failus (pīvadumam, [[Ogg Vorbis]] formatā), nalītuojūt Adobe Flash, ci cytus [[Papiļdejums|papiļdejumus]]. + +== Nūruodis == +{{Nūruodis}} + +[[Kategoreja:Škārsteiklys]] + ap9xlxdl17u92gob1xhfc4rbzoh096f + + + + Vjetnams + 0 + 935 + + 30505 + 30496 + 2015-01-15T14:59:42Z + + Feens + 565 + + Atcēlu [[Special:Contributions/212.93.97.108|212.93.97.108]] ([[User talk:212.93.97.108|Diskusija]]) izdarīto izmaiņu 30496 + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Cộng hòa Xã hội chủ nghĩa Việt Nam'''<br />'''Vjetnama Socialistiskuo Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Vietnam.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Vietnam.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Vietnam ASEAN.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 332 391 km² +|- +|| Dzeivuotuoju skaits || 90 708 000 +|- +|| [[Laika zona]] || UTC+7 +|} +'''Vjetnams''' (vjet.: ''Việt Nam'', pylnuo pasauka: '''Vjetnama Socialistiskuo Republika''') — vaļsteiba Dīnavydreitu [[Azeja|Azejā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Vjetnams]] + ava74nb6y632hutsl9wn9v300ih85l9 + + + + Raudonā vāvere + 0 + 937 + + 28466 + 27757 + 2013-03-07T22:03:00Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 69 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4388]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Squirrel by mareckr.jpg|thumb|260px|Raudonā vāvere]] + +'''Raudonā vāvere''' aba '''vāvere''' ({{Vol-en|Red squirrel}}; {{Vol-lv|Rudā vāvere}}) pīder vāveru saimei (Sciuridae). Raudonā vāvere dzeivoj Europā i Azejā. + +== Izavierīņs == +Auguma garums: nazkur 19—23 cm </br> +Astis garums: nazkur 15—20 cm </br> +Svors: 250—340 g </br> + +== Nūruodis i olūti == +* [http://www.wildlifeonline.me.uk/squirrels.html WildlifeOnline: Kūku vāveres] + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} +{{Commonscat|Profelis aurata}} + +{{DEFAULTSORT:Profelis aurata}} + +[[Kategoreja:Dzeivinīki]] + 8y36t16hd97yvh2kcvflzaqyhoauax5 + + + + Taiss:Babel + 10 + 939 + + 29046 + 28467 + 2013-03-09T20:11:35Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5461620]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| class="userboxes" style="float: {{{align|right}}}; margin-left: {{{left|1}}}em; margin-bottom: {{{bottom|0.5}}}em; width: {{{width|248}}}px; border: {{{bordercolor|#99B3FF}}} solid {{{solid|1}}}px; clear: {{{align|right}}}; color: {{{textcolor|#000000}}}; {{{extra-css|}}}" +|- +! style="background-color: {{{color|inherit}}}; text-align: center" colspan="10" | {{{header|[[Vikipedeja:Bābele]]}}} +|- +| style="vertical-align:middle !important" | {{#if:{{{1|}}}|{{User {{{1}}}}}|''Tu naasi nūstatejis navīnys volūdys. Paleigam verīs [[Taiss:Babel/doc|dokumentaceju]].'' +}}{{#if:{{{2|}}}|{{User {{{2}}}}} +}}{{#if:{{{3|}}}|{{User {{{3}}}}} +}}{{#if:{{{4|}}}|{{User {{{4}}}}} +}}{{#if:{{{5|}}}|{{User {{{5}}}}} +}}{{#if:{{{6|}}}|{{User {{{6}}}}} +}}{{#if:{{{7|}}}|{{User {{{7}}}}} +}}{{#if:{{{8|}}}|{{User {{{8}}}}} +}}{{#if:{{{9|}}}|{{User {{{9}}}}} +}}{{#if:{{{10|}}}|{{User {{{10}}}}} +}}{{#if:{{{11|}}}|{{User {{{11}}}}} +}}{{#if:{{{12|}}}|{{User {{{12}}}}} +}}{{#if:{{{13|}}}|{{User {{{13}}}}} +}}{{#if:{{{14|}}}|{{User {{{14}}}}} +}}{{#if:{{{15|}}}|{{User {{{15}}}}} +}}{{#if:{{{16|}}}|{{User {{{16}}}}} +}}{{#if:{{{17|}}}|{{User {{{17}}}}} +}}{{#if:{{{18|}}}|{{User {{{18}}}}} +}}{{#if:{{{19|}}}|{{User {{{19}}}}} +}}{{#if:{{{20|}}}|{{User {{{20}}}}} +}}{{#if:{{{21|}}}|{{User {{{21}}}}} +}}{{#if:{{{22|}}}|{{User {{{22}}}}} +}}{{#if:{{{23|}}}|{{User {{{23}}}}} +}}{{#if:{{{24|}}}|{{User {{{24}}}}} +}}{{#if:{{{25|}}}|{{User {{{25}}}}} +}}{{#if:{{{26|}}}|{{User {{{26}}}}} +}}{{#if:{{{27|}}}|{{User {{{27}}}}} +}}{{#if:{{{28|}}}|{{User {{{28}}}}} +}}{{#if:{{{29|}}}|{{User {{{29}}}}} +}}{{#if:{{{30|}}}|{{User {{{30}}}}} +}}{{#if:{{{31|}}}|{{User {{{31}}}}} +}}{{#if:{{{32|}}}|{{User {{{32}}}}} +}}{{#if:{{{33|}}}|{{User {{{33}}}}} +}}{{#if:{{{34|}}}|{{User {{{34}}}}} +}}{{#if:{{{35|}}}|{{User {{{35}}}}} +}}{{#if:{{{36|}}}|{{User {{{36}}}}} +}}{{#if:{{{37|}}}|{{User {{{37}}}}} +}}{{#if:{{{38|}}}|{{User {{{38}}}}} +}}{{#if:{{{39|}}}|{{User {{{39}}}}} +}}{{#if:{{{40|}}}|{{User {{{40}}}}} +}}{{#if:{{{41|}}}|{{User {{{41}}}}} +}}{{#if:{{{42|}}}|{{User {{{42}}}}} +}}{{#if:{{{43|}}}|{{User {{{43}}}}} +}}{{#if:{{{44|}}}|{{User {{{44}}}}} +}}{{#if:{{{45|}}}|{{User {{{45}}}}} +}}{{#if:{{{46|}}}|{{User {{{46}}}}} +}}{{#if:{{{47|}}}|{{User {{{47}}}}} +}}{{#if:{{{48|}}}|{{User {{{48}}}}} +}}{{#if:{{{49|}}}|{{User {{{49}}}}} +}}{{#if:{{{50|}}}|{{User {{{50}}}}} +}}{{#if:{{{51|}}}|{{User {{{51}}}}} +}}{{#if:{{{52|}}}|{{User {{{52}}}}} +}}{{#if:{{{53|}}}|{{User {{{53}}}}} +}}{{#if:{{{54|}}}|{{User {{{54}}}}} +}}{{#if:{{{55|}}}|{{User {{{55}}}}} +}}{{#if:{{{56|}}}|{{User {{{56}}}}} +}}{{#if:{{{57|}}}|{{User {{{57}}}}} +}}{{#if:{{{58|}}}|{{User {{{58}}}}} +}}{{#if:{{{59|}}}|{{User {{{59}}}}} +}}{{#if:{{{60|}}}|{{User {{{60}}}}} +}}{{#if:{{{61|}}}|{{User {{{61}}}}} +}}{{#if:{{{62|}}}|{{User {{{62}}}}} +}}{{#if:{{{63|}}}|{{User {{{63}}}}} +}}{{#if:{{{64|}}}|{{User {{{64}}}}} +}}{{#if:{{{65|}}}|{{User {{{65}}}}} +}}{{#if:{{{66|}}}|{{User {{{66}}}}} +}}{{#if:{{{67|}}}|{{User {{{67}}}}} +}}{{#if:{{{68|}}}|{{User {{{68}}}}} +}}{{#if:{{{69|}}}|{{User {{{69}}}}} +}}{{#if:{{{70|}}}|{{User {{{70}}}}} +}}{{#if:{{{71|}}}|{{User {{{71}}}}} +}}{{#if:{{{72|}}}|{{User {{{72}}}}} +}}{{#if:{{{73|}}}|{{User {{{73}}}}} +}}{{#if:{{{74|}}}|{{User {{{74}}}}} +}}{{#if:{{{75|}}}|{{User {{{75}}}}} +}}{{#if:{{{76|}}}|{{User {{{76}}}}} +}}{{#if:{{{77|}}}|{{User {{{77}}}}} +}}{{#if:{{{78|}}}|{{User {{{78}}}}} +}}{{#if:{{{79|}}}|{{User {{{79}}}}} +}}{{#if:{{{80|}}}|{{User {{{80}}}}} +}}{{#if:{{{81|}}}|{{User {{{81}}}}} +}}{{#if:{{{82|}}}|{{User {{{82}}}}} +}}{{#if:{{{83|}}}|{{User {{{83}}}}} +}}{{#if:{{{84|}}}|{{User {{{84}}}}} +}}{{#if:{{{85|}}}|{{User {{{85}}}}} +}}{{#if:{{{86|}}}|{{User {{{86}}}}} +}}{{#if:{{{87|}}}|{{User {{{87}}}}} +}}{{#if:{{{88|}}}|{{User {{{88}}}}} +}}{{#if:{{{89|}}}|{{User {{{89}}}}} +}}{{#if:{{{90|}}}|{{User {{{90}}}}} +}}{{#if:{{{91|}}}|{{User {{{91}}}}} +}}{{#if:{{{92|}}}|{{User {{{92}}}}} +}}{{#if:{{{93|}}}|{{User {{{93}}}}} +}}{{#if:{{{94|}}}|{{User {{{94}}}}} +}}{{#if:{{{95|}}}|{{User {{{95}}}}} +}}{{#if:{{{96|}}}|{{User {{{96}}}}} +}}{{#if:{{{97|}}}|{{User {{{97}}}}} +}}{{#if:{{{98|}}}|{{User {{{98}}}}} +}}{{#if:{{{99|}}}|{{User {{{99}}}}} +}}{{#if:{{{100|}}}|{{User {{{100}}}}} +}}{{{special-boxes|}}} +|- +| style="background-color: {{{color|inherit}}}; text-align: center;" colspan="10" | {{{footer|[[:Kategoreja:Lītuotuoju volūdys|Lītuotuoji piec volūdys]]}}} +|}<noinclude> +{{doc}} + +[[Kategoreja:Volūdu lītuotuoju taisi| ]] + +</noinclude> + c5a9z7cpg650vzypzdysk2206kuzj0u + + + + Taiss:User lang/doc-include + 10 + 941 + + 12073 + 12071 + 2011-03-26T18:04:26Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{docpage}}{{-}} +{{doc-inline}} +{{#tag:pre|<nowiki>{{</nowiki>user {{{lang}}}{{#if:{{{level|}}}|{{#ifeq:{{{level}}}|N||-{{{level}}}}}}}<nowiki>}}</nowiki>}} ci {{#tag:pre|<nowiki>{{</nowiki>babel{{!}}{{{lang}}}{{#if:{{{level|}}}|{{#ifeq:{{{level}}}|N||-{{{level}}}}}}}<nowiki>}}</nowiki>}} +'''Vysi leidzeni:''' +* {{tl|user {{{lang}}}-0}} +* {{tl|user {{{lang}}}-1}} +* {{tl|user {{{lang}}}-2}} +* {{tl|user {{{lang}}}-3}} +* {{tl|user {{{lang}}}-4}} +* {{tl|user {{{lang}}}}} +{{doc-end}} + t15jm4tm8agpn4q107ynu04sfq5to6y + + + + Brīds + 0 + 943 + + 29496 + 28468 + 2013-04-02T18:49:56Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q35517]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Moose-Gustav.jpg|thumb|250px|Brīds]] + +'''Brīds''' ({{Vol-la|Alces alces}}; {{Vol-lv|Alnis}}) —irā lela augstuma dzeivinīks kas apdzeivuo pūstuma pusrutuļa mežus. Paplateits vysā Latvejā. + +== Izavierīņs == +Auguma garums: 300 cm<ref name=BRI>''[http://jackmanmaine.org/maine-moose.php]'' // MOOSE FACTS</ref>;</br> +Astes garums: 20—38 cm<ref name=BRI/>;</br> +Placu augstums: 180—210 cm<ref name=BRI/>;</br> +Svors: tāvaiņs 380—720 kg; muotaine 270–360 kg<ref name="BRI"/>.</br> + +== Nūruodis i olūti == +{{commons|Alces alces|Brīds}} +{{Nūruodis}} +* [http://www.pvg.edu.lv/datori/konkursi/2008_web/vsk/dzivnieki/parnadzi.htm Brīds] +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + 7omzbe6ni65qdixvnei5tjxfvavxdw1 + + + + Uncia uncia + 0 + 944 + + + 11031 + 2011-03-22T16:22:58Z + + Dark Eagle + 34 + + "[[Uncia uncia]]" puorsauču par "[[Snīga leopards]]" + wikitext + text/x-wiki + #REDIRECT [[Snīga leopards]] + j85cfldugiwm5kf5zbodgz3tkj8my4i + + + + MediaWiki:Common.css + 8 + 945 + + 31892 + 17833 + 2017-02-23T13:23:36Z + + ESanders (WMF) + 3791 + + per https://phabricator.wikimedia.org/T154077 + css + text/css + /*MediaWiki interface*/ +.allpagesredirect, span.redirect-in-category a {font-style:italic} + +.gallerybox .thumb img, +.filehistory a img, +#file img { + background:url("//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat; +} + +#wpSave {font-weight:bold} +.mw-tag-markers { + font: italic 90% sans-serif; +} + +.warningbox { + background: #ff9; + border: 1px solid #ee0; + background-image: url('//upload.wikimedia.org/wikipedia/commons/thumb/6/62/Nuvola_apps_important.png/30px-Nuvola_apps_important.png') +} +.informationbox { + background: #F4FBFF; + border: 1px solid #D5D9E6; + background-image: url('//upload.wikimedia.org/wikipedia/commons/thumb/2/28/Information.svg/30px-Information.svg.png') +} +.warningbox, .informationbox { + padding: 10px 10px 10px 50px; + background-position: 10px center; + background-repeat: no-repeat; + vertical-align: middle; + font-size: smaller; +} + +pre { + overflow-x: auto; + overflow-y: hidden; +} + +/* rm white border */ +div.thumb {border: none} +div.tright {border: none; margin: 0.5em 0 0.8em 1.4em} +div.tleft {border: none; margin: 0.5em 1.4em 0.8em 0} + +/* Tabeļu nūformēšona ([[:ru:ВП:ОТ]]) */ +table.standard, table.wide, table.prettytable + {border:1px solid #aaa; border-collapse: collapse} +table.standard th, table.wide th, table.prettytable th + {border:1px solid #aaa; padding-left:0.2em; padding-right:0.2em; background:#eef} +table.standard td, table.wide td, table.prettytable td + {border: 1px solid #aaa; padding-left:0.2em; padding-right:0.2em} +table.standard caption, table.wide caption, table.tiles caption + {font-weight:bold; padding-top: 0.2em; padding-bottom:0.2em} +table.wide {width: 100%} + +table.simple {border-color:#aaa; border-collapse:collapse} +table.simple th, table.simple td {border-color:#aaa; padding-left:0.2em; padding-right:0.2em} + +table.tiles {border-collapse:separate; border-spacing:2px} +table.tiles th {padding-left:0.2em; padding-right:0.2em; background:#eef} +table.tiles td {padding-left:0.2em; padding-right:0.2em; background:#f0f0f0} + +table.graytable {background:#f0f0f0; padding:1em; width: 100%} +table.graytable caption {padding-top:0.5em; background:#f0f0f0; font-weight:bold} +table.graytable caption span.subcaption {font-size:80%; font-weight:normal} +table.graytable th, table.graytable td {font-size:80%} + + +tr.highlight th, table tr th.highlight {background:#eef} +tr.highlight td, table tr td.highlight {background:#ffe; font-weight:normal} +tr.bright th, table tr th.bright {background:#ccf} +tr.bright td, table tr td.bright {background:#fec} +tr.shadow th, tr.shadow td, table tr th.shadow, table tr td.shadow {background:#f0f0f0} +tr.dark th, tr.dark td, table tr th.dark, table tr td.dark {background:#ccc} +.transparent {background:transparent !important} + +table.toccolours th {background:#ccf} + +/* {ambox} */ +table.ambox { + width: auto; + margin: 0 10%; + border-collapse: collapse; + background:#FBFBFB; + border: 1px solid #aaa; + border-left: 10px solid #1E90FF +} +table.ambox th, table.ambox td { + padding: 0.25em 0.5em; +} +table.ambox td.ambox-widthhack { + padding: 0; +} +table.ambox td.ambox-text { + width:100%; +} +table.ambox td.ambox-text .ambox-text-small { + font-size:smaller; +} +table.ambox td.ambox-image { + width: 52px; + padding: 2px 0 2px 0.5em; + text-align: center; +} +table.ambox td.ambox-imageright { + width: 52px; + padding: 2px 4px 2px 0; + text-align: center; +} +table.ambox td.ambox-image div, +table.ambox td.ambox-imageright div {width:52px} /* Pataiss vysaidu plotuma atvaigīm */ +table.ambox-delete, +table.ambox-serious { + border-left: 10px solid #B22222 +} +table.ambox-content { + border-left: 10px solid #F28500 +} +table.ambox-style { + border-left: 10px solid #F4C430 +} +table.ambox-good { + border-left: 10px solid #66CC44 +} +table.ambox-discussion { + border-left: 10px solid #339966 +} +table.ambox-notice { + border-left: 10px solid #1E90ff +} +table.ambox-merge { + border-left: 10px solid #9932CC +} +table.ambox.ambox-mini { + float: right; + clear: right; + margin: 0 0 0.5em 1em; + width: 20%; +} + +.infobox { + border: 1px solid #aaa; + background: #f9f9f9; + margin-bottom: 0.5em; + margin-left: 1em; + padding:.4em; + float: right; + clear: right; + font-size: 90%; + width: 18em; + vertical-align: middle; +} +.infobox td, .infobox th {vertical-align:top} +table.infobox td p {margin:0} /* eislaiceigi taisam [[:en:Template:Infobox]] */ + +.notice { + text-align: justify; + margin: 1em 0.5em; + padding: 0.5em; +} + +.messagebox { + border: thin solid #aaa; + background: #f9f9f9; + width: 88%; + margin: 0 auto 1em auto; + padding:.4em; + vertical-align: middle; + font-size: 90% +} + +blockquote { + margin:0.7em 0 0.7em 5%; + padding:0.7em 2% 0.7em 4%; + background:#F5F5F5; +} + +ol.references {font-size:100%} +.references-small {font-size:90%} +/* highlight focused footnotes and references in some browsers */ +sup.reference:target, ol.references li:target, .highlight-target:target, cite:target, span.citation:target {background:#DEF} +sup.reference:target {font-weight:bold} +/* scrollable references */ +.references-scroll { + overflow: auto; + padding: 3px; +} + +/* fix for line-breaking references */ +sup, sub {line-height:1em} + +.plainlinksneverexpand, .plainlinksneverexpand a + {background:none !important; padding:0 !important} +.plainlinksneverexpand a.external.text:after, +.plainlinksneverexpand a.external.autonumber:after, +.plainlinksneverexpand .urlexpansion + {display:none !important} + +.clickable-image a:hover {text-decoration: none} + +.printonly {display:none} + +.dablink, .rellink {font-style:italic; padding-left:2em} + +#disambig {border-top: 3px double #cccccc; border-bottom: 3px double #cccccc} + +/*{TOClimit} & TOC w/o numbers*/ +.toclimit-2 .toclevel-2, +.toclimit-3 .toclevel-3, +.toclimit-4 .toclevel-4, +.toclimit-5 .toclevel-5, +.toclimit-6 .toclevel-6, +.toclimit-7 .toclevel-7, +.nonumtoc .tocnumber {display:none} + + +/* PDF icon next to external PDF link for Mozilla and Opera and for {PDFlink} template */ +a[href$=".pdf"].external, +a[href*=".pdf?"].external, +a[href*=".pdf#"].external, +a[href$=".PDF"].external, +a[href*=".PDF?"].external, +a[href*=".PDF#"].external, +span.PDFlink a {background: url(//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif) center right no-repeat !important; padding-right: 18px !important} + +/* Clickable speaker in {Template:Audio} ... */ +.audiolink a { + background: url("//upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png") center left no-repeat !important; + padding-left: 16px !important; + padding-right: 0 !important; +} + +/* Medialist templates {Listen}, {Multi-listen_start}, {Video}, {Multi-video_start} */ +div.listenlist { + background: url("//upload.wikimedia.org/wikipedia/commons/3/3f/Gnome_speakernotes_30px.png"); + padding-left: 40px; +} +div.videolist, div.multivideolist { + background: url("//upload.wikimedia.org/wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png"); + padding-left: 50px; +} +div.medialist { + min-height: 50px; + margin: 1em; + background-position: top left; + background-repeat: no-repeat; +} +div.medialist ul { + list-style-type: none; + list-style-image: none; + margin: 0; +} +div.medialist ul li { + padding-bottom: 0.5em; +} +div.medialist ul li li { + font-size: 91%; + padding-bottom: 0; +} + +/* {Navigaceja} */ +table.navigation-box th, +table.navigation-box td { + vertical-align: middle; + height: 30px; +} + +/* {Navigacejis tabele} */ +table.navbox { + background: #f9f9f9; + border: 1px solid #aaa; + clear: both; + font-size: 90%; + margin: 1em 0em 0em; + padding: 2px; + width: 100%; +} +table.navbox th { + background: #ccf; + padding-left: 1em; + padding-right: 1em; + text-align: right; +} + + +/*{Hider}, ... */ +div.Boxmerge, +div.NavFrame { + margin:0; + padding:2px; + border:1px solid #aaa; + text-align:center; + border-collapse:collapse; + font-size:95%; +} +div.Boxmerge div.NavFrame { + border-style:none; + border-style:hidden; +} +div.NavFrame + div.NavFrame { + border-top-style:none; + border-top-style:hidden; +} +div.NavPic { + background:#fff; + margin:0; + padding:2px; + float:left; +} +div.NavFrame div.NavHead { + height:1.6em; + font-weight:bold; + font-size:100%; + background:#efefef; + position:relative; +} +div.NavFrame p, +div.NavFrame div.NavContent, +div.NavFrame div.NavContent p { + font-size: 100% +} +div.NavEnd { + margin:0; + padding:0; + line-height:1px; + clear:both; +} +a.NavToggle { + position:absolute; + top:0; + right:0.2em; + font-weight:normal; + font-size:smaller; +} + + +.messagebox.standard-talk { + border: 1px solid #c0c090; + background: #f8eaba +} +.messagebox .floatleft { + vertical-align: middle; + clear: both; + margin: 2px; + padding: 0 +} +.messagebox .image { + margin: 0; + padding: 0 +} + + +/* {coord}s */ +#coordinates { + position:absolute; + z-index:1; + right:9em; + top:3.7em; + float:right; + line-height:1.5em; + text-align:right; + font-size:85%; + white-space:nowrap; +} +#coordinates, .coordinates { + text-transform:none; + margin:0; + padding:0; +} +.geo-google, .geo-osm, .geo-yandex { + font-family:serif; + font-weight:bold; + line-height:1em; +} +.geo-geo-dec .geo-dec, .geo-geo-dms .geo-dms {display:inline} +.geo-geo-dec .geo-dms, .geo-geo-dms .geo-dec, .geo-multi-punct {display:none} +.geo-lat, .geo-lon {white-space:nowrap} + +.wp-templatelink { color:#9098A0 } /* {tl} */ + +#mw-subcategories, #mw-pages { clear:both } + +/* FlaggedRevs */ +span.mw-fr-reviewlink {font-weight:normal; font-size:smaller; opacity:0.7} +.flaggedrevs-unreviewed {background:#fff1e8} +.flaggedrevs-pending {background:#fffbdb} +.sitedir-ltr div.flaggedrevs_short {float:none; padding:1px} +.sitedir-ltr div.flaggedrevs_short_details {width:95%; display:none} + 1q8qfm4feukqfxsh57h2s392py119gu + + + + Casvaine + 0 + 948 + + 31469 + 28469 + 2016-07-04T03:22:42Z + + Melilac + 2917 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Casvaine +| atvaiga_pasauka = Cesvaine.jpg +| atvaiga_aprakstejums = +| gerba_atvaigs = Cesvaine.png +| gerba_pasauka = Casvainis gerbs +| karūga_atvaigs = +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| latd = 56| latm = 57| lats = 58| latNS = N +| longd = 26| longm =18| longs = 18| longEW = E +| pluots = 23 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 1527 +| bīzeiba = 1130 +| viesturiskuos_pasaukys = {{Vol-de|Seßwegen}} +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1991 +| posta_iņdeksi = LV-4871 +| teiklavīta = www.cesvaine.lv +}} + +'''Casvaine''' — mīsts [[Vydzeme|Vydzemē]]. [[Casvainis nūvods|Casvainis nūvoda]] administrativais centrys. + +== Viesture == +Viesturis olūtūs pyrmūreiz minēta [[1209]] godā Reigys veiskupa Aļberta lenu gruomotā kai ''Zcessowe''<ref>http://www.historia.lv/alfabets/A/AL/ALBERTS/dokumenti/1209.04.10.latinuhtm.htm</ref>. + +== Zeimeigi ļauds == +Casvainē dzymuši: +* Jakobs Mihaels Reinholds Lencs (''Jakob Michael Reinhold Lenz'', [[1751]] — [[1792]]) — vuocīšu rakstinīks + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis mīsti}} + +[[Kategoreja:Casvaine| ]] + 85bz3ym9ln1ffxbix52p6zetwa91a3h + + + + Cesvaine + 0 + 949 + + + 11065 + 2011-03-22T19:57:00Z + + Dark Eagle + 34 + + + Pāradresē uz [[Casvaine]] + wikitext + text/x-wiki + #REDIRECT [[Casvaine]] + 7licchrkkgrusvhft00qjjdxqou7577 + + + + Sātys kačs + 0 + 950 + + + 11086 + 2011-03-22T23:43:26Z + + Dark Eagle + 34 + + + Pāradresē uz [[Kačs]] + wikitext + text/x-wiki + #REDIRECT [[Kačs]] + s5ju3nt5pildf3dgl0eh0dsxy2ndd8c + + + + Aļņu saime + 0 + 951 + + 28937 + 28470 + 2013-03-08T14:06:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q23390]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Aļņu saime''' ({{Vol-la|Cervidae}}) sador nu 53 škirām. Zināmuokās škirys irā [[brīds]], [[pūstumaļņs]], [[meža koza]]. Aļņu soveiga pīzeime irā [[Rogs|rogi]], kuri aug tik [[tāvaiņs|tāvaiņīm]], atskaitūt [[Pūstumaļņs|pūstumaļņus]] i [[Iudiņsaļņs|iudiņsaļņus]]. Rogi kas gods tīk nūsvīsti, i kas gods ataug nu jauna. + +== Nūruodis i olūti == +{{commons|Cervidae|Aļņu saime}} +{{Nūruodis}} +* [http://www.latvijasdaba.lv/ziditaji/sistematiskais-raditajs/cervidae/ Aļņu saime] +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + jnj9dlowqin8fw538q2cykbcpe62unq + + + + Vuocīšu volūda + 0 + 952 + + 30290 + 28471 + 2014-04-19T18:31:58Z + + Onuphriate + 2353 + + + wikitext + text/x-wiki + {| border="1" cellpadding="2" cellspacing="0" align="right" width="300" +|----- align="center" +! colspan="2" bgcolor="#DDDDDD" | <big>Vuocīšu volūda</big> +|----- +| Volūdu lītoj: || [[Vuoceja]] +|----- +| Runuotuoju skaits: || dzymtuo ~120 milij. +|----- +| valign="top" | Volūdu saime: || +[[Indoeuropīšu volūdu saime|Indoeuropīšu]]<br /> +&nbsp;[[Germanu volūdys]]<br /> +'''[[Vuocīšu volūda]]''' +|----- +! colspan="2" bgcolor="#DDDDDD" | Vaļsteibys volūda +|----- +| Vaļsteibys volūda: || valign="top" | - +|----- +! colspan="2" bgcolor="#DDDDDD" | Volūdys kodi +|----- +| ISO 639-1: || de +|----- +| ISO 639-3: || +|} + +'''Vuocīšu volūda''' (''Deutsch'') irā [[Germanu volūdys|germanu grupys]] volūda. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Indoeuropīšu volūdys]] +[[Kategoreja:Volūdys]] + 6rvgnm75c6deq0vsy65zue1wyddbcof + + + + Meža koza + 0 + 953 + + 30793 + 30789 + 2015-07-14T21:54:28Z + + AgrisR + 2520 + + + Navajaga ūtru biļdi, pīvīnoju soites + wikitext + text/x-wiki + [[Fails:Chevreuil(brocard)-HAYE sylvain.jpg|thumb|250px|Meža koza]] +'''Meža koza''' ({{Vol-la|Capreolus capreolus}}; {{Vol-lv|Stirna}}) irā nelela augstuma [[dzeivinīki|dzeivinīks]]. Paplateits vysuo [[Latveja|Latvejā]]. + +== Izavierīņs == +Auguma garums: 90—135 cm</br> +Astes garums: 2—3 cm</br> +Placu augstums: 65—75 cm</br> +Svors: 20—30 kg</br> + +== Nūruodis i olūti == +{{commons|Capreolus capreolus|Meža koza}} +{{Nūruodis}} +* [http://www.latvijasdaba.lv/ziditaji/capreolus-capreolus-l/ Meža koza] +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + ru7ich5eeufi492szkw3rjmg42t8n5v + + + + Luoceina + 0 + 955 + + 28938 + 28473 + 2013-03-08T14:21:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25311]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Mustela nivalis -British Wildlife Centre-4.jpg|thumb|250px|Luoseica]] + +'''Luoseica''' ({{Vol-la|Mustela nivalis}}) irā mozuokais plieseigais zviers iz pasauļa. + +== Nūruodis i olūti == +* [http://www.videsvestis.lv/content.asp?ID=75&what=32 Luoseica] +{{commons|Mustela nivalis|Luoceina}} + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + k3bcfgh8is96u5xm0vt8i8out2t1xdb + + + + Pūstumaļņs + 0 + 956 + + 28939 + 28474 + 2013-03-08T14:22:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q39624]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:20070818-0001-strolling reindeer.jpg|thumb|250px|Pūstumaļņs]] + +'''Pūstumaļņs''' ({{Vol-la|Rangifer tarandus}}) irā lela augstuma [[Aļņu saime|aļņu saimes]] dzeivinīks. + +== Izavierīņs == +Auguma garums: tāvaiņs 180—214 cm; muotaine 162—205 cm<ref name=PAS>''[http://www.adfg.alaska.gov/index.cfm?adfg=home.main]'' // Raindeer</ref>;</br> +Astes garums: 14—20 cm<ref name=PAS/>;</br> +Placu augstums: 180—210 cm<ref name=PAS/>;</br> +Svors: tāvaiņs 92—210 kg; muotaine 79–120 kg<ref name="PAS"/>.</br> + +== Nūruodis i olūti == +{{commons|Cervidae|Aļņu saime}} +{{Nūruodis}} +{{Commons|Rangifer tarandus}} +* [http://www.reindeerportal.org/ The Reindeer Portal, Source of Information About Reindeer Husbandry Worldwide] +* Rangifer.net has a [http://www.rangifer.net/rangifer/herds/images/herd_species_big.jpg map] of subspecies ranges. +* [http://www.pwnhc.ca/timeline/index_winIFix.asp?forward=http%3A//www.pwnhc.ca/timeline/1925/Reindeer_1935.htm#Scene_1 1935 Reindeer Herding in the Northwest Territories] +* [http://www.nps.gov/archive/bela/html/rangifer.htm General information on Caribou and Reindeer] +* [http://www.rangifer.net/rangifer/index.cfm Human Role in Reindeer/Caribou Systems] +* [http://www.britishecologicalsociety.org/articles/grants/reports/1725/ Reindeer Studies in South Georgia and Norway] +* [http://www.villreinfangst.no/eng/index.php Reindeer hunting as World Heritage - a ten thousand year-long tradition] +* [http://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6WH8-4M81C9P-1&_user=10&_coverDate=06%2F30%2F2007&_alid=858236248&_rdoc=1&_fmt=high&_orig=search&_cdi=6844&_sort=d&_docanchor=&view=c&_ct=2&_acct=C000050221&_version=1&_urlVersion=0&_userid=10&md5=ae7e884b696a099f95e9127138b363ba The Scandinavian reindeer (Rangifer tarandus L.) after the last glacial maximum: time, seasonality and human exploitation] +* [http://reindeer.salrm.uaf.edu/about_reindeer/adaptations/index.php#Adaptations%20To%20Life%20In%20The%20Arctic Adaptations To Life In The Arctic] - Instructional slide-show, University of Alaska +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + d2x2l6t1nn59ldbr6aj8mpibzql420w + + + + Zaļkts + 0 + 962 + + 28940 + 28475 + 2013-03-08T14:22:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q170713]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Natrix natrix (Karl L).jpg|thumb|250px|Zaļkts]] + +'''Zaļkts''' ({{Vol-la|Natrix natrix}}) irā [[Europa|Europā]] paplateita [[Čyuskys|čyuska]]. Zaļkts irā lelakā Latvejys čyuska. Augums var dasnēgt 150 [[Centimetrs|cm]]<ref name=ZAT/>. [[Mugora]] irā gaiši palāka, rataik brūnpalāka - leidz i zylgonmalnai. [[Vādars]] gaišs ar malnym dasnāgumīm. +== Nūruodis i olūti == +{{commons|Natrix natrix|Zaļkts}} +<ref name=ZAT>''[http://jackmanmaine.org/maine-moose.php]'' // Zaļkts</ref> +{{Nūruodis}} +* [http://www.videsvestis.lv/content.asp?ID=82&what=32 Parkū čyuskys īt sātā (latv.) ] +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + b9wsrrw0fceavista6l3eoc8uew9zdm + + + + Taiss:User lt + 10 + 963 + + 29944 + 28476 + 2013-08-01T07:07:23Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6050033]] + wikitext + text/x-wiki + {{User lang +| lang = lt +| name = Lītaunīku volūda +| level = N +| size = +| info = Šio naudotojo '''[[:Category:User lt-N|gimtoji kalba]]''' yra '''[[:Category:User lt|lietuvių]]'''. +}} + takydf3ruu5s8l55t27kk3wizrgue0y + + + + Kategoreja:User lt-N + 14 + 964 + + 29727 + 29592 + 2013-04-13T04:51:37Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6489040]] + wikitext + text/x-wiki + {{Commonscat|User lt-N}} + +[[Kategoreja:User lt| 0]] + 1qh6icoewkriyh0a2gi7qua2lrlz3hi + + + + Kategoreja:User lt + 14 + 965 + + 29726 + 29343 + 2013-04-13T04:51:30Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6488868]] + wikitext + text/x-wiki + {{Commonscat|User lt}} + +[[Kategoreja:Lītuotuoju volūdys|lt]] + 08695suqq6a4c13i9nm9givqt7e19ej + + + + Taiss:User sgs-3 + 10 + 966 + + 29659 + 27760 + 2013-04-09T06:39:38Z + + EmausBot + 103 + + + Bot: Migrating 8 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q10770904]] + wikitext + text/x-wiki + {{User lang +| lang = sgs +| name = Žemaišu volūda +| level = 3 +| size = +| info = Tas nauduotuos gal prisėdietė pri pruojekta '''[[:Kategoreja:User sgs-3|aukšta līgė]] [[:Kategoreja:User sgs|žemaitiu kalbo]]'''. +}}<noinclude> + +</noinclude> + 1cvaszb9f2cjyiapmuohn7adypn55dp + + + + Taiss:User bat-smg-3 + 10 + 969 + + + 11184 + 2011-03-23T17:45:47Z + + Dark Eagle + 34 + + "[[Taiss:User bat-smg-3]]" puorsauču par "[[Taiss:User sgs-3]]" + wikitext + text/x-wiki + #REDIRECT [[Taiss:User sgs-3]] + 468cgsakucqx5t50tmav7u4nyc1ul0b + + + + Vikipedeja:Bot policy + 4 + 971 + + + 11194 + 2011-03-23T18:17:15Z + + Glossologist + 79 + + Pāradresē uz [[Vikipedeja:Dūmu meits]] + wikitext + text/x-wiki + #REDIRECT [[Vikipedeja:Dūmu meits]] + bae7icaujad4k8qb2wgmqjg71jwwbwc + + + + Kategoreja:User sgs-3 + 14 + 972 + + 29502 + 25888 + 2013-04-02T18:50:47Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9118181]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User sgs-3}} + +[[Kategoreja:User sgs| 2]] + ar5tbb5lymuzy8aj993bu1oviti5ryp + + + + Kategoreja:User sgs + 14 + 973 + + 29501 + 25889 + 2013-04-02T18:50:46Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 15 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6587673]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User bat-smg}} + +[[Kategoreja:Lītuotuoju volūdys|sgs]] + qgwopub38q0x6umepx8bzyebt27okoq + + + + Taiss:User ltg-N + 10 + 975 + + + 11235 + 2011-03-23T19:39:51Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:User ltg]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:User ltg]] + 1qcgymqr9gatpmktynv39pyoq1j93dn + + + + Urocyon + 0 + 977 + + + 11286 + 2011-03-24T01:37:48Z + + Dark Eagle + 34 + + "[[Urocyon]]" puorsauču par "[[Palākuo lopsa]]" + wikitext + text/x-wiki + #REDIRECT [[Palākuo lopsa]] + e14ynrw4wz4aw6yw6sjspbnk66csl0j + + + + Latvīšu volūda + 0 + 978 + + 28477 + 27047 + 2013-03-07T22:05:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 101 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9078]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border="1" cellpadding="2" cellspacing="0" align="right" width="300" +|----- align="center" +! colspan="2" bgcolor="#DDDDDD" | <big>Latvīšu volūda</big> +|----- +| Volūdu lītoj: || [[Latveja]] +|----- +| Runuotuoju skaits: || ~1,7 milj. +|----- +| valign="top" | Volūdu saime: || +[[Indoeuropīšu volūdu saime|Indoeuropīšu]]<br /> +&nbsp;[[Baltu volūdys]]<br /> +'''[[Latvīšu volūda]]''' +|----- +! colspan="2" bgcolor="#DDDDDD" | Vaļsteibys volūda +|----- +| Vaļsteibys volūda: || valign="top" | - +|----- +! colspan="2" bgcolor="#DDDDDD" | Volūdys kodi +|----- +| ISO 639-1: || lv +|----- +| ISO 639-2: || lav +|----- +| ISO 639-3: || vysaiži: [[Latvīšu volūda|lv]]; [[Latgaļu volūda|ltg]]; lvs +|} + +'''Latvīšu volūda''' (aba '''baļtīšu volūda'''<ref>[http://vuordineica.lv/meklet.php?vrd=latvietis&s=1&sais=0 Meklēšana: latvietis]</ref>) irā vīna nu [[Baltu volūdys|baltu volūdu]]. + +== Gramatika == +Latvīšu volūda īra radnesteiga [[Lītaunīku volūda|lītaunīku]], [[Latgaļu volūda|latgaļu]] i [[Žemaišu volūda|žemaišu]] volūdai. + +== Referencejis == +<references/> + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latvīšu volūda| ]] +[[Kategoreja:Latveja]] +[[Kategoreja:Baltu volūdys]] + gfw8xjctykku605s48rdf1rj79g4aco + + + + Žemaišu volūda + 0 + 979 + + 28478 + 27755 + 2013-03-07T22:05:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 36 interwiki links, now provided by [[d:|Wikidata]] on [[d:q213434]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border="1" cellpadding="2" cellspacing="0" align="right" width="300" +|----- align="center" +! colspan="2" bgcolor="#DDDDDD" | <big>Žemaišu volūda</big> +|----- +| Volūdu lītoj: || [[Lītova]] +|----- +| Runuotuoju skaits: || ~500,000 +|----- +| valign="top" | Volūdu saime: || +[[Indoeuropīšu volūdu saime|Indoeuropīšu]]<br /> +&nbsp;[[Baltu volūdys]]<br /> +'''[[Žemaišu volūda]]''' +|----- +! colspan="2" bgcolor="#DDDDDD" | Vaļsteibys volūda +|----- +| Vaļsteibys volūda: || valign="top" | - +|----- +! colspan="2" bgcolor="#DDDDDD" | Volūdys kodi +|----- +| ISO 639-1: || +|----- +| ISO 639-3: || sgs +|} + +'''Žemaišu volūda''' irā vīna nu [[Baltu volūdys|baltu volūdu]]. + +== Gramatika == +Žemaišu volūda īra radnesteiga [[Lītaunīku volūda|lītaunīku]], [[Latgaļu volūda|latgaļu]] i [[Latvīšu volūda|latvīšu]] volūdai. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Baltu volūdys]] + 8m7nyb4vzfas7w6zbsycd3ho8x9x3ub + + + + Lītaunīku volūda + 0 + 980 + + 31607 + 31606 + 2016-11-01T20:12:25Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {| border="1" cellpadding="2" cellspacing="0" align="right" width="300" +|----- align="center" +! colspan="2" bgcolor="#DDDDDD" | <big>Lītaunīku volūda</big> +|----- +| Volūdu lītoj: || [[Lītova]] +|----- +| Runuotuoju skaits: || ~4 milj. +|----- +| valign="top" | Volūdu saime: || +[[Indoeuropīšu volūdu saime|Indoeuropīšu]]<br /> +&nbsp;[[Baltu volūdys]]<br /> +'''[[Lītaunīku volūda|Lītaunīku]]''' +|----- +! colspan="2" bgcolor="#DDDDDD" | Vaļsteibys volūda +|----- +| Vaļsteibys volūda: || valign="top" | [[Lītova|Lītovā]], [[ES]] +|----- +! colspan="2" bgcolor="#DDDDDD" | Volūdys kodi +|----- +| ISO 639-1: || lt +|----- +| ISO 639-2: || lit +|----- +| ISO 639-3: || lit +|} + +'''Lītaunīku volūda''' – vīna nu [[Baltu volūdys|baltu volūdu]]. + +== Gramatika == +Lītaunīku volūda īra radneiga [[Latvīšu volūda|latvīšu]], [[Latgaļu volūda|latgaļu]] i [[Žemaišu volūda|žemaišu]] volūdai. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Lītaunīku volūda| ]] +[[Kategoreja:Baltu volūdys]] +[[Kategoreja:Volūdys]] +[[Kategoreja:Lītova]] + jd6q4lk74ttmifcuipek283r46y8lmr + + + + Čile + 0 + 981 + + 30709 + 30427 + 2015-04-02T15:30:05Z + + Magioladitis + 2827 + + + /* Teiklavītys */All info is kept in Wikidata, removed: {{Link FA|es}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''República de Chile '''<br />'''Čilis Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Chile.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Chile.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:CHL_orthographic.svg|300px]] +|- +|| Golvysmīsts || [[Santjago (Čile)|Santjago]] +|- +|| Vaļsteibys volūda || [[spanīšu volūda|spanīšu]] +|- +| Prezidents || Michelle Bachelet +|- +| Ministru prezidents || +|- +|| Pluots || 756 096,3 km² +|- +|| Dzeivuotuoju skaits || 17 248 450 ([[2011]]) +|- +|| [[Laika zona]]<br />-vosorā || CLT ci EAST (UTC-4 — -6)<br />CLST (UTC-3 — -5) +|} + +[[Fails:Pueblo de San Pedro de Atacama 2013-09-21 11-52-31.jpg|thumb|Atacama]] +'''Čile''' ({{vol-es|Chile}}) — vaļsteiba [[Latiņamerika|Latiņamerikā]]. Golvysmīsts — [[Santjago (Čile)|Santjago]]. Čile 756 102 km² pluotā dzeivoj vaira kai 17 milijoni dzeivuotuoju, i ite 38-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == + +== Politika == + +== Geografeja == + +== Ekonomika == + +== Demografeja == +=== Etniskais sadors === +=== Volūda === +* [[Spanīšu volūda]] +* [[Mapudungun volūda]] +* [[Rapanui volūda]] +* [[Kečūa volūda]] +* [[Aimara volūda]] + +=== Religeja === + +== Nūruodis i olūti == +{{nūruodis}} + +== Verīs taipoš == +* [[Santjago (Čile)|Santjago]] +* [[Konsepsjons]] +<!-- * [[Valparaiso]] --> + +== Teiklavītys == +* [http://www.thisischile.cl/ ThisisChile.cl - Official Chile website - English and Spanish version] +* [http://www.gobiernodechile.cl/ Chilean government] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Čile| ]] + j4n6edfvbpit9xucm7trezs1n4qv8y9 + + + + Homo sapiens + 0 + 984 + + + 11416 + 2011-03-24T20:50:11Z + + Dark Eagle + 34 + + + Pāradresē uz [[Cylvāks]] + wikitext + text/x-wiki + #REDIRECT [[Cylvāks]] + 9ug248jizghlwnw8j20nj7zlgn3kdt9 + + + + Kategoreja:Rudiņa mieneša 7 dīna + 14 + 986 + + 29593 + 24912 + 2013-04-04T20:17:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9412340]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|7 September|Rudiņa mieneša 7 dīna}} + +[[Kategoreja:Rudiņa mieness| 07]] + 9kj0c1u5q70d09xtt8tdofyl7vvqszr + + + + Kategoreja:Rudiņa mieness + 14 + 987 + + 28941 + 28078 + 2013-03-08T14:22:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 101 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489174]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|September|Rudiņa mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 09]] +[[Kategoreja:Datys| 09]] + j7vylmkfaygbqrxp4s7mb9mn1luoezn + + + + Kategoreja:Livonejis ordyna magistri + 14 + 988 + + 29594 + 11815 + 2013-04-04T20:17:42Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9713518]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmore|Livonejis ordyna magistris}} + +[[Kategoreja:Viesture]] +[[Kategoreja:Zeimeigi ļauds]] + 02ixvm5pk0wjxm19cxlcx5kr864oa5v + + + + Kategoreja:Mieneši + 14 + 989 + + 28942 + 28481 + 2013-03-08T14:22:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5461174]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Months|Mieneši}} +{{catmore|Mieness}} + +[[Kategoreja:Kaleņders]] +[[Kategoreja:Hronologeja| 5]] + o54982fv3o1dlpla39w70odh3k0hg6f + + + + Kategoreja:Uralīšu volūdys + 14 + 990 + + 29507 + 26930 + 2013-04-02T18:52:04Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 66 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9066397]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|Uralic languages|Uralīšu volūdys}} + +[[Kategoreja:Volūdu saimis]] + jel3zacctoopyox4deu9u54eeshbscy + + + + Rudiņa mieneša 15 dīna + 0 + 991 + + 28482 + 25077 + 2013-03-07T22:30:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 145 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2846]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Rudiņa mieneša 15 dīna''' irā 258 goda dīna pa Gregora kaleņderam (garajā godā — 259 dīna). Nu ituos dīnys leidz goda golam palīk 107 dīnys. + +== Svieteibu i pīminis dīnys == +* Vydtautyskuo demokratejis dīna. + +=== Katuoļu svātū dīnys === + + +== Vuorda dīnys == +Sandra, Sondra, Gunvaļds, Gunvars. + +== Nūtikšonys == +=== Latgolā === + +=== Latvejā === + +=== Pasaulī === +* 1590 – par papeidi tyka [[Urbans VII]]; +* 1812 – praņcīšu armeja [[Napoleons|Napaleona]] vadeibā dasnēdz [[Kremlis|Kremli]] [[Moskova|Moskovā]]; +* 1821 – [[Gvatemala]], [[Hondurass]], [[Kosta Rika]], [[Nikaragva]] i [[Salvadors]] pasludynova napavaļdeibu nu Spanejis; +* 1916 – [[Pyrmais pasauļa kars]]: pyrmūreiz [[Kuove pi Sommys|kuovē pi Sommys]] lītuoti [[tanks|tanki]]; +* 1922 – īstateita [[Boltkrīveja|Boltkrīvejis]] nacionaluo biblioteka; + +== Dzimšonys == +=== Latgolā === + +=== Latvejā === + +=== Pasaulī === +* 1254 — [[Marko Polo]] (Marco Polo), Italejis celinīks (m. 1324); +* 1929 — Marijs Gells-Manns (Murray Gell-Mann), ASV fiziks; +== Mieršonys == +=== Latgolā === + +=== Latvejā === +* 1907 — [[Fricis Brīvzemnieks]], latvīšu poets, puorvārsuojs, folklorists (dz. 1846); + +=== Pasaulī === + +{{commonscat|15 September|Rudiņa mieneša 15 dīna}} + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Rudiņa mieneša 15 dīna| ]] + 1ohws6uwqnt3uzt1cdff3cq2odgj2a3 + + + + Kategoreja:Rudiņa mieneša 15 dīna + 14 + 992 + + 29544 + 24867 + 2013-04-03T18:11:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9399211]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|15 September|Rudiņa mieneša 15 dīna}} + +[[Kategoreja:Rudiņa mieness| 15]] + 1qf7yen6f8y1ob1rs2b53sw792qr6ox + + + + Kategoreja:Datys + 14 + 993 + + 29673 + 29354 + 2013-04-13T04:28:14Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q7152582]] + wikitext + text/x-wiki + {{Commonscat|Days|Datys}} + +[[Kategoreja:Kaleņders]] +[[Kategoreja:Hronologeja| 6]] + 0x9xs6ge468kx5e83kjn0o14lyqibp4 + + + + Kategoreja:User lt-4 + 14 + 995 + + 29648 + 25818 + 2013-04-05T20:13:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 23 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489004]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lt-4}} + +[[Kategoreja:User lt| 1]] + 044a6c4afvz6nbk0ic8vipqnpmxgpl7 + + + + Kategoreja:User lt-3 + 14 + 996 + + 29506 + 26843 + 2013-04-02T18:52:03Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 34 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6488981]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lt-3}} + +[[Kategoreja:User lt| 2]] + pmtvl6akq16qthkm7pmoekg29285lzs + + + + Kategoreja:User lt-2 + 14 + 997 + + 29505 + 25813 + 2013-04-02T18:52:02Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 39 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6488951]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lt-2}} + +[[Kategoreja:User lt| 3]] + 437nnv33buclau00no5dx5u4k3lgti9 + + + + Kategoreja:User lt-1 + 14 + 998 + + 29479 + 25812 + 2013-03-30T22:11:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 37 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6488920]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lt-1}} + +[[Kategoreja:User lt| 4]] + +[[ilo:Kategoria:Agar-aramat lt-N]] + sy2kreb1bqjhsiid6q52bmvn5tp9q19 + + + + Kategoreja:User lt-0 + 14 + 999 + + 29560 + 12904 + 2013-04-04T04:11:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9723283]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lt-0}} + +[[Kategoreja:User lt| 5]] + 35dyj210kkpnw702e5pmg1upmerxm2x + + + + Taiss:User lt-4 + 10 + 1000 + + 29500 + 25827 + 2013-04-02T18:50:26Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 21 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8105723]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = lt +| name = Lītaunīku volūda +| level = 4 +| size = +| info = Šis vartotojas kalba '''[[:Kategoreja:User lt|lietuviškai]]''' beveik taip, lyg ši kalba būtų jo '''[[:Kategoreja:User lt-4|gimtoji kalba]]'''. +}}<noinclude> +</noinclude> + j9li2qh2sdev8rk0y8szffl18u0wiel + + + + Taiss:User lt-1 + 10 + 1001 + + 30011 + 11938 + 2013-08-16T15:46:03Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q8105798]] + wikitext + text/x-wiki + {{User lang +| lang = lt +| name = Lītaunīku volūda +| level = 1 +| size = +| info = Šis naudotojas turi '''[[:Kategoreja:User lt|lietuvių kalbos]] [[:Kategoreja:User lt-1|pradinio lygio]]''' žinias. +}} + 48fvyjysuv3czh9xur5wto8rmw3dqdl + + + + Kategoreja:User et + 14 + 1002 + + 28483 + 26840 + 2013-03-07T22:30:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 92 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6400850]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User et}} + +[[Kategoreja:Lītuotuoju volūdys|et]] + 5mxmx34xaikeuhqtwzj5pbcxpv7rlus + + + + Kategoreja:User et-0 + 14 + 1003 + + 29595 + 25795 + 2013-04-04T20:17:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9418460]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User et-0}} + +[[Kategoreja:User et| 5]] + ow70prrl3ec87ky4xdpwn7d1b8wdws3 + + + + Kategoreja:User et-1 + 14 + 1004 + + 29717 + 28943 + 2013-04-13T04:50:34Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q6400946]] + wikitext + text/x-wiki + {{Commonscat|User et-1}} + +[[Kategoreja:User et| 4]] + 4x9hvnagix0yvasqjk5s0sfnb2pk115 + + + + Kategoreja:User et-2 + 14 + 1005 + + 28485 + 25792 + 2013-03-07T22:31:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 39 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6401018]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User et-2}} + +[[Kategoreja:User et| 3]] + i8co3wlq9jd9o1k854dm847yaeh03oa + + + + Kategoreja:User et-3 + 14 + 1006 + + 28977 + 28486 + 2013-03-08T16:23:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6401074]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User et-3}} + +[[Kategoreja:User et| 2]] + cidq7u57zxbe5u4360nm76gakrxh9pf + + + + Kategoreja:User et-4 + 14 + 1007 + + 28487 + 25794 + 2013-03-07T22:31:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 17 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6401110]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User et-4}} + +[[Kategoreja:User et| 1]] + l9cxtompo0rfx166jxsbv2hqnzkuek3 + + + + Kategoreja:User et-N + 14 + 1008 + + 28978 + 28488 + 2013-03-08T16:24:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6401175]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User et-N}} + +[[Kategoreja:User et| 0]] + sqvfqv6s1u622a6hqqr80zjdx5707rs + + + + Taiss:User et-1 + 10 + 1009 + + 29173 + 27981 + 2013-03-11T10:48:00Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 86 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5541798]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = et +| name = Igauņu volūda +| level = 1 +| size = +| info = See kasutaja valdab '''[[:Kategoreja:User et|eesti keelt]] [[:Kategoreja:User et-1|algtasemel]]'''. +}}<noinclude> +</noinclude> + lfru68p5evnmyufnscl6itw3wqnc6z1 + + + + Taiss:User et-2 + 10 + 1010 + + 19488 + 12260 + 2011-12-23T14:51:23Z + + MerlIwBot + 221 + + + robots izņem: [[en:Taiss:User et-2]] (missing) + wikitext + text/x-wiki + {{User lang +| lang = et +| name = Igauņu volūda +| level = 2 +| size = +| info = See kasutaja valdab '''[[:Kategoreja:User et|eesti keelt]] [[:Kategoreja:User et-2|keskmisel tasemel]]'''. +}}<noinclude> +</noinclude> + s3eedg0l99hp97nmjauaatisi1b5s84 + + + + Kategoreja:User liv + 14 + 1011 + + 28489 + 16271 + 2013-03-07T22:32:00Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6450212]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User liv}} + +[[Kategoreja:Lītuotuoju volūdys|liv]] + pwmogpq90tkqtpt6obthj4o6285mfvo + + + + Kategoreja:User liv-0 + 14 + 1012 + + 11971 + 11861 + 2011-03-25T16:55:37Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{Commonscat|User liv-0}} + +[[Kategoreja:User liv| 5]] + si06c7ck76einswpr7rlpeo7r2fdv54 + + + + Kategoreja:User liv-N + 14 + 1013 + + 11966 + 11965 + 2011-03-25T16:54:23Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{Commonscat|User liv-N}} + +[[Kategoreja:User liv| 0]] + gbk7w0316s7h2hjr5eicvl2r2etez8k + + + + Kategoreja:User liv-4 + 14 + 1014 + + 11967 + 11863 + 2011-03-25T16:54:37Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{Commonscat|User liv-4}} + +[[Kategoreja:User liv| 1]] + k1efhuqtsfque2jzhzsifxe2bl7gd9u + + + + Kategoreja:User liv-3 + 14 + 1015 + + 11968 + 11864 + 2011-03-25T16:54:47Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{Commonscat|User liv-3}} + +[[Kategoreja:User liv| 2]] + 3j8f2quyvk5y38ux3529ldcylvbri1c + + + + Kategoreja:User liv-2 + 14 + 1016 + + 11969 + 11865 + 2011-03-25T16:54:58Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{Commonscat|User liv-2}} + +[[Kategoreja:User liv| 3]] + rk4rk87hcmcpte9c4inihtw7hhauswj + + + + Kategoreja:User liv-1 + 14 + 1017 + + 11970 + 11866 + 2011-03-25T16:55:15Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{Commonscat|User liv-1}} + +[[Kategoreja:User liv| 4]] + cz066jyvh459u60c5z6nzr66tlkmd62 + + + + Taiss:User liv-0 + 10 + 1018 + + 29752 + 11963 + 2013-04-14T22:24:50Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = liv +| name = Līvu volūda +| level = 0 +| size = +| info = Se kȭlbatiji '''[[:Kategoreja:User liv-0|äb mūošta]] [[:Kategoreja:User liv|līvõ kīeldõ]]''' (agā mūoštab sūŗ vōjaks). +}}<noinclude> +</noinclude> + 7monlf2413lmyde9rfhocnimy8i4c25 + + + + Taiss:User liv-1 + 10 + 1019 + + 30149 + 11962 + 2013-11-20T22:52:16Z + + Delusion23 + 2178 + + [[:d:Q14936405]] + wikitext + text/x-wiki + {{User lang +| lang = liv +| name = Līvu volūda +| level = 1 +| size = +| info = Se kȭlbatiji mūoštab '''[[:Kategoreja:User liv|līvõ kīeldõ]] [[:Kategoreja:User liv-1|īrgandõks astāmõs]]'''. +}} + j1lq85k1r9auo0xde8c8avcur8xo9n0 + + + + Taiss:User liv-2 + 10 + 1020 + + 29829 + 11961 + 2013-04-15T03:20:11Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = liv +| name = Līvu volūda +| level = 2 +| size = +| info = Se kȭlbatiji mūoštab '''[[:Kategoreja:User liv|līvõ kīeldõ]] [[:Kategoreja:User liv-2|sidāmist astāmõs]]'''. +}}<noinclude> +</noinclude> + k6ez5kq99sqrntzh1tivi4qnm2ribt3 + + + + Taiss:User liv-3 + 10 + 1021 + + 29818 + 11960 + 2013-04-15T02:16:20Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = liv +| name = Līvu volūda +| level = 3 +| size = +| info = Se kȭlbatiji mūoštab '''[[:Kategoreja:User liv|līvõ kīeldõ]] [[:Kategoreja:User liv-3|kuordist astāmõs]]'''. +}}<noinclude> +</noinclude> + i3hzdcffqf9tnclevjd2u23v5idq2k2 + + + + Taiss:User liv-4 + 10 + 1022 + + 29817 + 11954 + 2013-04-15T02:16:02Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = liv +| name = Līvu volūda +| level = 4 +| size = +| info = Se kȭlbatiji mūoštab '''[[:Kategoreja:User liv|līvõ kīeldõ]] [[:Kategoreja:User liv-4|pigātagā nei ku sindikīeldõ]]'''. +}}<noinclude> +</noinclude> + 5yt3q20u9ets8cg1i622kjyj7xyl6qi + + + + Taiss:User liv + 10 + 1023 + + 29807 + 11959 + 2013-04-15T02:07:02Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = liv +| name = Līvu volūda +| level = N +| size = +| info = Sīen kȭlbatijizõn um '''[[:Kategoreja:User liv|līvõ kēļ]] [[:Kategoreja:User liv|sindikēļ]]'''. +}}<noinclude> +</noinclude> + qo3sb7lhkgn39s9r3idyf45i2k2g53i + + + + Taiss:User pl-1 + 10 + 1024 + + 30021 + 12268 + 2013-08-16T15:46:25Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5985897]] + wikitext + text/x-wiki + {{User lang +| lang = pl +| name = Puoļu volūda +| level = 1 +| size = +| info = Ten użytkownik posługuje się '''[[:Kategoreja:User pl|językiem polskim]]''' na poziomie '''[[:Kategoreja:User pl-1|podstawowym]]'''. +}} + 34ilkp60cm8j00szuoxc5istckfr6r6 + + + + Taiss:User pl + 10 + 1025 + + 29839 + 12266 + 2013-04-15T03:46:40Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = pl +| name = Puoļu volūda +| level = N +| size = +| info = '''[[:Kategoreja:User pl|Polski]]''' jest '''[[:Kategoreja:User pl-N|językiem ojczystym]]''' tego użytkownika. +}}<noinclude> +</noinclude> + rwxd2zrh33dnme5dyongrxmqbi3ijjc + + + + Taiss:User pl-2 + 10 + 1026 + + 30020 + 12269 + 2013-08-16T15:46:22Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6967536]] + wikitext + text/x-wiki + {{User lang +| lang = pl +| name = Puoļu volūda +| level = 2 +| size = +| info = Ten użytkownik posługuje się '''[[:Kategoreja:User pl|językiem polskim]]''' na poziomie '''[[:Kategoreja:User pl-2|średnio zaawansowanym]]'''. +}} + sw1xg0r9ft2dk10jb5nrhhdackvnv3l + + + + Kategoreja:User pl + 14 + 1027 + + 29730 + 29395 + 2013-04-13T04:51:54Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7215810]] + wikitext + text/x-wiki + {{Commonscat|User pl}} + +[[Kategoreja:Lītuotuoju volūdys|pl]] + 9cg68sp69l140fu3canjtbcgyffcx05 + + + + Kategoreja:User pl-N + 14 + 1028 + + 28490 + 28096 + 2013-03-07T22:32:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 125 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6428235]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User pl-N}} + +[[Kategoreja:User pl| 0]] + 78yl6t30asuf6pzp4j8xdtg619tk23p + + + + Kategoreja:User pl-4 + 14 + 1029 + + 29419 + 27903 + 2013-03-21T02:28:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 47 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7706951]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User pl-4}} + +[[Kategoreja:User pl| 1]] + hvrszlnzx4ah42s06sqbpfp8mze03au + + + + Kategoreja:User pl-3 + 14 + 1030 + + 29420 + 26854 + 2013-03-21T02:29:05Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 73 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7681158]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User pl-3}} + +[[Kategoreja:User pl| 2]] + kydco284d5x9g62xz6f03ii2bzp4ddz + + + + Kategoreja:User pl-2 + 14 + 1031 + + 29421 + 26851 + 2013-03-21T02:29:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 91 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7706921]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User pl-2}} + +[[Kategoreja:User pl| 3]] + rlu6f04j1wtnoywr3ifqpwq128xiaow + + + + Kategoreja:User pl-1 + 14 + 1032 + + 29731 + 29422 + 2013-04-13T04:51:56Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7706796]] + wikitext + text/x-wiki + {{Commonscat|User pl-1}} + +[[Kategoreja:User pl| 4]] + r0f365n2yxg7h5xdf4m99frhuji1vub + + + + Kategoreja:User pl-0 + 14 + 1033 + + 29543 + 25776 + 2013-04-03T16:18:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9418993]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User pl-0}} + +[[Kategoreja:User pl| 5]] + h01s8vyjkno2bn7his3xic4nn7x57e4 + + + + Kategoreja:User ru + 14 + 1035 + + 29732 + 29596 + 2013-04-13T04:52:01Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q6587145]] + wikitext + text/x-wiki + {{Commonscat|User ru}} + +[[Kategoreja:Lītuotuoju volūdys|ru]] + 1q8svlto1p6fp163ztendml9y3jbscc + + + + Kategoreja:User de + 14 + 1036 + + 29700 + 28491 + 2013-04-13T04:49:25Z + + KLBot2 + 1857 + + + Bot: Migrating 17 interwiki links, now provided by [[Wikidata]] on [[:d:Q6395874]] + wikitext + text/x-wiki + {{Commonscat|User de}} + +[[Kategoreja:Lītuotuoju volūdys|de]] + cantnre7ad5n7rs6a9uemfa199hr5ze + + + + Kategoreja:User en + 14 + 1037 + + 29705 + 28492 + 2013-04-13T04:49:40Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q5626526]] + wikitext + text/x-wiki + {{Commonscat|User en}} + +[[Kategoreja:Lītuotuoju volūdys|en]] + k4wqfsecwhlsr9xcyd69hq716pbiuo0 + + + + Kategoreja:User en-0 + 14 + 1038 + + 29706 + 28944 + 2013-04-13T04:49:45Z + + KLBot2 + 1857 + + + Bot: Migrating 6 interwiki links, now provided by [[Wikidata]] on [[:d:Q6397954]] + wikitext + text/x-wiki + {{Commonscat|User en-0}} + +[[Kategoreja:User en| 5]] + cglni5gtmzei3zgefzpzk3vvavbqzha + + + + Kategoreja:User de-0 + 14 + 1039 + + 28494 + 27663 + 2013-03-07T22:33:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 53 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6396005]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User de-0}} + +[[Kategoreja:User de| 5]] + ivzf922m5837w58w3u7bgvrkvmg0mjp + + + + Kategoreja:User ru-0 + 14 + 1040 + + 29504 + 27718 + 2013-04-02T18:51:32Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 42 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9252414]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ru-0}} + +[[Kategoreja:User ru| 5]] + haffyjw0m7isme1rb0ff1uciw7xncs1 + + + + Kategoreja:User en-1 + 14 + 1041 + + 29707 + 28495 + 2013-04-13T04:49:49Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6398142]] + wikitext + text/x-wiki + {{Commonscat|User en-1}} + +[[Kategoreja:User en| 4]] + gn55fkpicmb99dv7asqjtf47aq4zqw0 + + + + Kategoreja:User de-1 + 14 + 1042 + + 29701 + 28496 + 2013-04-13T04:49:28Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6396155]] + wikitext + text/x-wiki + {{Commonscat|User de-1}} + +[[Kategoreja:User de| 4]] + 5skdpnv26btlqk9c0t69i42zx0lbx1g + + + + Kategoreja:User ru-1 + 14 + 1043 + + 28497 + 28091 + 2013-03-07T22:33:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 159 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6474435]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ru-1}} + +[[Kategoreja:User ru| 4]] + rd1o2cupaqk3zlsvv2un6v46knbfe7b + + + + Kategoreja:User en-2 + 14 + 1044 + + 29708 + 28498 + 2013-04-13T04:49:53Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q5626683]] + wikitext + text/x-wiki + {{Commonscat|User en-2}} + +[[Kategoreja:User en| 3]] + 5k7acn99gyzzze1nv0vzup19szpzj0g + + + + Kategoreja:User de-2 + 14 + 1045 + + 29702 + 28499 + 2013-04-13T04:49:33Z + + KLBot2 + 1857 + + + Bot: Migrating 8 interwiki links, now provided by [[Wikidata]] on [[:d:Q6396356]] + wikitext + text/x-wiki + {{Commonscat|User de-2}} + +[[Kategoreja:User de| 3]] + jldbk8cw489wfgimi900nc6joyponra + + + + Kategoreja:User ru-2 + 14 + 1046 + + 29733 + 29060 + 2013-04-13T04:52:04Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6587163]] + wikitext + text/x-wiki + {{Commonscat|User ru-2}} + +[[Kategoreja:User ru| 3]] + loa092o75d9y1ll8lzxt7m1gvcwk0pa + + + + Kategoreja:User en-3 + 14 + 1047 + + 29709 + 28500 + 2013-04-13T04:49:57Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q6398355]] + wikitext + text/x-wiki + {{Commonscat|User en-3}} + +[[Kategoreja:User en| 2]] + qiftq8s1uvb3u3wzk6h6lej8cey9xtt + + + + Kategoreja:User de-3 + 14 + 1048 + + 29703 + 28501 + 2013-04-13T04:49:35Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6396530]] + wikitext + text/x-wiki + {{Commonscat|User de-3}} + +[[Kategoreja:User de| 2]] + 40kupj2uxkf1j9prsfhd5droct60dl3 + + + + Kategoreja:User ru-3 + 14 + 1049 + + 29734 + 29338 + 2013-04-13T04:52:05Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6587179]] + wikitext + text/x-wiki + {{Commonscat|User ru-3}} + +[[Kategoreja:User ru| 2]] + 5ce5fb74zjvqxtc1yw2hc53qbm9us8v + + + + Kategoreja:User en-4 + 14 + 1050 + + 29710 + 28502 + 2013-04-13T04:50:04Z + + KLBot2 + 1857 + + + Bot: Migrating 8 interwiki links, now provided by [[Wikidata]] on [[:d:Q5626440]] + wikitext + text/x-wiki + {{Commonscat|User en-4}} + +[[Kategoreja:User en| 1]] + nhqqmhtl189gsvy8hxhfcf3gf8j5cyj + + + + Kategoreja:User de-4 + 14 + 1051 + + 28503 + 28099 + 2013-03-07T23:00:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 125 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6396678]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User de-4}} + +[[Kategoreja:User de| 1]] + 0yb7cto2kse2mibey6yx4l0pwyozc4k + + + + Kategoreja:User ru-4 + 14 + 1052 + + 29735 + 29339 + 2013-04-13T04:52:07Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6587196]] + wikitext + text/x-wiki + {{Commonscat|User ru-4}} + +[[Kategoreja:User ru| 1]] + hzhlhjqzkc8jptzaiw4q1t8lkwe2pj6 + + + + Kategoreja:User ru-N + 14 + 1053 + + 29736 + 29340 + 2013-04-13T04:52:10Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6587224]] + wikitext + text/x-wiki + {{Commonscat|User ru-N}} + +[[Kategoreja:User ru| 0]] + 4p6i6tsje79pxxoz6e8fd294659jpsi + + + + Kategoreja:User en-N + 14 + 1054 + + 29711 + 28504 + 2013-04-13T04:50:09Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q6398678]] + wikitext + text/x-wiki + {{Commonscat|User en-N}} + +[[Kategoreja:User en| 0]] + n9xyoqmk9u42r5f3cr14xthvypmi3f5 + + + + Kategoreja:User de-N + 14 + 1055 + + 29704 + 28505 + 2013-04-13T04:49:37Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q6396835]] + wikitext + text/x-wiki + {{Commonscat|User de-N}} + +[[Kategoreja:User de| 0]] + l86fs3hk8zrw2nci872he2qodqvocb0 + + + + Taiss:User en-4 + 10 + 1056 + + 28506 + 27994 + 2013-03-07T23:01:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 208 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5546014]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = en +| name = Anglīšu volūda +| level = 4 +| size = +| info = This user speaks '''[[:Kategoreja:User en|English]]''' at a '''[[:Kategoreja:User en-4|near-native]]''' level. +}}<noinclude> +</noinclude> + b23xtj5m0bcr2fp5kxlpm8zbi9160v2 + + + + Taiss:User en-3 + 10 + 1057 + + 28507 + 27995 + 2013-03-07T23:01:42Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 224 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5543187]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = en +| name = Anglīšu volūda +| level = 3 +| size = +| info = This user is able to contribute with an '''[[:Kategoreja:User en-3|advanced]]''' level of '''[[:Kategoreja:User en|English]]'''. +}}<noinclude> +</noinclude> + j37lhhf5cb63gds9kdpt6o4qqzr4xpq + + + + Taiss:User en-2 + 10 + 1058 + + 28508 + 27993 + 2013-03-07T23:02:04Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 237 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5544939]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = en +| name = Anglīšu volūda +| level = 2 +| size = +| info = This user is able to contribute with an '''[[:Kategoreja:User en-2|intermediate]]''' level of '''[[:Kategoreja:User en|English]]'''. +}}<noinclude> +</noinclude> + rajcp7w0gm77drkntit9jtyhfnqob22 + + + + Taiss:User ru-3 + 10 + 1059 + + 30023 + 12104 + 2013-08-16T15:46:37Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q10950831]] + wikitext + text/x-wiki + {{User lang +| lang = ru +| name = Krīvu volūda +| level = 3 +| size = +| info = Этот участник '''[[:Kategoreja:User ru-3|свободно]]''' владеет '''[[:Kategoreja:User ru|русским языком]]'''. +}} + mebya7k1z6n2iops4wreuc2r0imzf31 + + + + Taiss:User ru-4 + 10 + 1060 + + 30031 + 12103 + 2013-08-16T15:46:39Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5643379]] + wikitext + text/x-wiki + {{User lang +| lang = ru +| name = Krīvu volūda +| level = 4 +| size = +| info = Этот участник владеет '''[[:Kategoreja:User ru|русским языком]]''' почти как '''[[:Kategoreja:User ru-4|родным]]'''. +}} + arhpvle9vpy2r8m020o6ttlckqmh8bn + + + + Taiss:User de-2 + 10 + 1061 + + 28509 + 28002 + 2013-03-07T23:02:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 188 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5547386]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = de +| name = Vuocīšu volūda +| level = 2 +| size = +| info = Dieser Benutzer hat '''[[:Kategoreja:User de-2|fortgeschrittene]] [[:Kategoreja:User de|Deutschkenntnisse]]'''. +}}<noinclude> +</noinclude> + bvvzz1nhmghrn02orudeop2s5r6d5c6 + + + + Taiss:User de-1 + 10 + 1063 + + 28510 + 27980 + 2013-03-07T23:02:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 200 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5541627]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = de +| name = Vuocīšu volūda +| level = 1 +| size = +| info = Dieser Benutzer hat '''[[:Kategoreja:User de-1|grundlegende]] [[:Kategoreja:User de|Deutschkenntnisse]]'''. +}}<noinclude> +</noinclude> + ha09vo4vunilg4so3p3tln76b1q2sbk + + + + Taiss:User de-3 + 10 + 1064 + + 28511 + 27991 + 2013-03-07T23:02:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 176 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5542609]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = de +| name = Vuocīšu volūda +| level = 3 +| size = +| info = Dieser Benutzer hat '''[[:Kategoreja:User de-3|sehr gute]] [[:Kategoreja:User de|Deutschkenntnisse]]'''. +}}<noinclude> +</noinclude> + d6a6q9b5zfx93acvc55mrst3id9b8pi + + + + Taiss:Vikipedejis laiks + 10 + 1073 + + 11930 + 2011-03-25T14:14:59Z + + Roalds + 50 + + taiss: vikipedejis laiks + wikitext + text/x-wiki + {{#switch:{{{1}}}| +0=| +1=1 godu| +#default={{{1}}} godus}}{{#ifeq:0|{{{1|}}}||{{#ifeq:0|{{{2|}}}||{{#ifeq:0|{{{3|}}}|&nbsp;un|,&nbsp;}}}}}}{{#switch:{{{2}}}| +0=| +1=&nbsp;1 mienesi| +#default={{#ifeq:0|{{{1|}}}||{{#ifeq:0|{{{3|}}}|&nbsp;}}}}{{{2}}} mienešus}}{{#ifeq:0|{{{1|}}}|{{#ifeq:0|{{{2|}}}||{{#ifeq:0|{{{3|}}}||&nbsp;un}}}}|{{#ifeq:0|{{{3|}}}||&nbsp;i}}}}{{#switch:{{{3}}}| +0=| +1=&nbsp;1 dīnu| +#default={{#ifeq:0|{{{1|}}}|{{#ifeq:0|{{{2|}}}||&nbsp;}}|&nbsp;}}{{{3}}} dīnys}} + dso06innn4u09fpz6dcurvo75a4i2z7 + + + + Taiss:User lt-3 + 10 + 1074 + + 30010 + 11936 + 2013-08-16T15:46:03Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q8105754]] + wikitext + text/x-wiki + {{User lang +| lang = lt +| name = Lītaunīku volūda +| level = 3 +| size = +| info = Šis naudotojas turi '''[[:Kategoreja:User lt|lietuvių kalbos]] [[:Kategoreja:User lt-3|aukšto lygio]]''' žinias. +}} + ccak7k68ay4mlr23p1xx3dnaium81db + + + + Taiss:User lt-2 + 10 + 1075 + + 29764 + 25826 + 2013-04-14T23:05:41Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = lt +| name = Lītaunīku volūda +| level = 2 +| size = +| info = Šis naudotojas turi '''[[:Kategoreja:User lt|lietuvių kalbos]] [[:Kategoreja:User lt-2|vidutinio lygio]]''' žinias. +}}<noinclude> +</noinclude> + 03b6pkjfatq3yv4xh85vmp1crh87prp + + + + Taiss:User lt-N + 10 + 1076 + + + 11937 + 2011-03-25T15:55:47Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:User lt]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:User lt]] + 2182j2t21651defrxp32rzgtqst9l51 + + + + Taiss:User lt-0 + 10 + 1077 + + 19492 + 11939 + 2011-12-23T14:56:52Z + + MerlIwBot + 221 + + + robots izņem: [[en:Template:User lt-0]] (missing) + wikitext + text/x-wiki + {{User lang +| lang = lt +| name = Lītaunīku volūda +| level = 0 +| size = +| info = Šis naudotojas '''[[:Kategoreja:User lt-0|nesupranta]] [[:Kategoreja:User lt|lietuvių kalbos]]''' (arba supranta labai ribotai). +}}<noinclude> +</noinclude> + sq2ksrzvqqhvw84e7ymcobw3ssark1w + + + + Taiss:User liv-N + 10 + 1078 + + + 11956 + 2011-03-25T16:38:26Z + + Dark Eagle + 34 + + "[[Taiss:User liv-N]]" puorsauču par "[[Taiss:User liv]]" + wikitext + text/x-wiki + #REDIRECT [[Taiss:User liv]] + 9fn8a6hhsak40oh0dakrgp4gmryt1jc + + + + Taiss:User pl-N + 10 + 1079 + + + 11973 + 2011-03-25T16:57:41Z + + Dark Eagle + 34 + + "[[Taiss:User pl-N]]" puorsauču par "[[Taiss:User pl]]" + wikitext + text/x-wiki + #REDIRECT [[Taiss:User pl]] + j7e4av23d79z3v4feo59wh4j1qr7zmj + + + + Taiss:User lv-N + 10 + 1080 + + + 11974 + 2011-03-25T16:58:15Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:User lv]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:User lv]] + 1glgt9v5hn407rvmrbt0u8g31uyr078 + + + + Taiss:User lv-4 + 10 + 1081 + + 29822 + 11975 + 2013-04-15T02:31:32Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = lv +| name = Latvīšu volūda +| level = 4 +| size = +| info = Šis lietotājs '''[[:Kategoreja:User lv|latviešu valodu]]''' pārzina '''[[:Kategoreja:User lv-4|gandrīz kā dzimto valodu]]'''. +}}<noinclude> +</noinclude> + pmm049zupzdbu1n84rt2mcvptzxbzm1 + + + + Taiss:User lv-3 + 10 + 1082 + + 30013 + 11977 + 2013-08-16T15:46:06Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q10770652]] + wikitext + text/x-wiki + {{User lang +| lang = lv +| name = Latvīšu volūda +| level = 3 +| size = +| info = +Šis lietotājs '''[[:Kategoreja:User lv|latviešu valodu]]''' prot '''[[:Kategoreja:User lv-3|padziļinātā līmenī]]'''. +}} + otua0p0rk5itpijbqioow1s9i1f562e + + + + Taiss:User lv-2 + 10 + 1083 + + 29837 + 11978 + 2013-04-15T03:42:37Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = lv +| name = Latvīšu volūda +| level = 2 +| size = +| info = +Šis lietotājs '''[[:Kategoreja:User lv|latviešu valodu]]''' prot '''[[:Kategoreja:User lv-2|vidējā līmenī]]'''. +}}<noinclude> +</noinclude> + 0g6yippfrcrhtjg2ti8tbn56401mia6 + + + + Taiss:User lv-1 + 10 + 1084 + + 30014 + 11979 + 2013-08-16T15:46:06Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q8105698]] + wikitext + text/x-wiki + {{User lang +| lang = lv +| name = Latvīšu volūda +| level = 1 +| size = +| info = +Šis lietotājs '''[[:Kategoreja:User lv|latviešu valodu]]''' prot '''[[:Kategoreja:User lv-1|pamatlīmenī]]'''. +}} + ojipquzihnarh9awc3p9xjmit2qa32k + + + + Taiss:User lv-0 + 10 + 1085 + + 29791 + 11980 + 2013-04-15T01:43:15Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = lv +| name = Latvīšu volūda +| level = 0 +| size = +| info = Šis lietotājs '''[[:Kategoreja:User lv|latviešu valodu]] [[:Kategoreja:User lv-0|neprot]]''' (vai saprot ar ievērojamām grūtībām). +}}<noinclude> +</noinclude> + 19z0t7yaerfwf793y04n5mceex7xpkn + + + + Kategoreja:User lv-0 + 14 + 1086 + + 29564 + 24594 + 2013-04-04T06:12:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9723722]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lv-0}} + +[[Kategoreja:User lv| 5]] + 8dtmfhkx1fbiob25g3iib89cwvjqnwe + + + + Kategoreja:User lv-4 + 14 + 1087 + + 29004 + 25801 + 2013-03-08T22:13:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 18 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489312]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lv-4}} + +[[Kategoreja:User lv| 1]] + nc4viv1hw9f6sbm6nbs5sihlekxfep5 + + + + Kategoreja:User lv-3 + 14 + 1088 + + 29491 + 29487 + 2013-04-02T00:11:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489275]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lv-3}} + +[[Kategoreja:User lv| 2]] + it49fx8gp47p9bprbd9asywfs3u4dgh + + + + Kategoreja:User lv-2 + 14 + 1089 + + 29494 + 29490 + 2013-04-02T18:49:30Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489241]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lv-2}} + +[[Kategoreja:User lv| 3]] + layxdtllbkawrc876ej643wfft2kanp + + + + Kategoreja:User lv-1 + 14 + 1090 + + 29480 + 26847 + 2013-03-30T22:11:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 33 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6489210]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User lv-1}} + +[[Kategoreja:User lv| 4]] + bjviaoihfw524vu53isokhpvnwd5huv + + + + Taiss:Fair use + 10 + 1091 + + 29827 + 11989 + 2013-04-15T02:44:44Z + + Addbot + 1801 + + + wikitext + text/x-wiki + <div class="boilerplate" style="margin:0.5em auto;width:80%;clear:both;background-color:#f7f8ff;border:2px solid #8888aa; + padding:4px;font-size:90%;min-height:64px;vertical-align:center" id="imageLicense"> +<div style="float:left" id="imageLicenseIcon">[[Image:Red copyright.svg|64px|Copyrighted]]</div> +<div style="text-align:left;margin-left:68px" id="imageLicenseText"> +Itū atvaigu '''apsorgoj autortīseibys'''. Pa ASV lykumim i normativajim aktim ituo dorba zamys škeireibys atvaigu ar aprūbežuojumim (rakstīņūs, kas taišni saisteiti ar atvaigu) var lītuot izvuicūšim i informativim snāgim (''[[:en:Wikipedia:Non-free content|fair use]]''). +</div> +</div><includeonly> +[[Kategoreja:Apsorguoti atvaigi|{{PAGENAME}}]] +</includeonly><noinclude> +[[Category:Atvaigu autortīseibu taisi|{{SUBPAGENAME}}]] +</noinclude> + s1x58axe6yxdzlfdh5p991vnxcdc1ty + + + + Taiss:User sgs-0 + 10 + 1092 + + 29806 + 18871 + 2013-04-15T02:06:47Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = sgs +| name = Žemaišu volūda +| level = 0 +| size = +| info = Tas nauduotuos '''[[:Kategoreja:User sgs-0|nasopront]] [[:Kategoreja:User sgs|žemaitiu kalbuos]]''' (aba sopronta nuognē mažā). +}}<noinclude> +</noinclude> + dcqu4fbuzko8krxg8cb5ljylejvlti9 + + + + Taiss:User sgs-1 + 10 + 1093 + + 29825 + 27931 + 2013-04-15T02:34:11Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = sgs +| name = Žemaišu volūda +| level = 1 +| size = +| info = Tas nauduotuos gal prisėdietė pri pruojekta '''[[:Kategoreja:User sgs-1|pradėnė līgė]] [[:Kategoreja:User sgs|žemaitiu kalbuo]]'''. +}}<noinclude> +</noinclude> + th46tyaj3kce3eye0k3sdj6wyr89zi2 + + + + Taiss:User sgs-2 + 10 + 1094 + + 29838 + 27762 + 2013-04-15T03:42:49Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = sgs +| name = Žemaišu volūda +| level = 2 +| size = +| info = Tas nauduotuos gal prisėdietė pri pruojekta '''[[:Kategoreja:User sgs-2|vėdotėnė līgė]] [[:Kategoreja:User sgs|žemaitiu kalbuo]]'''. +}}<noinclude> +</noinclude> + giz2phbafyfajf96qcttlm46djw8y2s + + + + Taiss:User sgs-4 + 10 + 1095 + + 29794 + 27930 + 2013-04-15T01:44:48Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = sgs +| name = Žemaišu volūda +| level = 4 +| size = +| info = Tas nauduotuos '''[[:Kategoreja:User sgs|žemaitėškā]]''' rokoujės zars tāp, būktās ton ruoda būtom anuo '''[[:Kategoreja:User sgs-4|gėmtojė]]'''. +}}<noinclude> +</noinclude> + hwr7ohmz6ef42x73whueum3o826p1wd + + + + Taiss:User sgs + 10 + 1096 + + 29049 + 27758 + 2013-03-10T00:19:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6597836]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = sgs +| name = Žemaišu volūda +| level = N +| size = +| info = Tuo nauduotuojė '''[[:Kategoreja:User sgs-N|gimta kalba]]''' īr '''[[:Kategoreja:User sgs|žemaitiu]]'''. +}}<noinclude> +</noinclude> + ame9yd1m0ll7d8wjihhg5yq2p0zy0bt + + + + Taiss:User sgs-N + 10 + 1097 + + + 11995 + 2011-03-25T22:31:20Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:User sgs]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:User sgs]] + 038ut39f03fap1k3weos8wkgadg71xk + + + + Taiss:Docpage + 10 + 1098 + + 12027 + 2011-03-26T02:30:04Z + + Dark Eagle + 34 + + Jauna lapa: <includeonly>{{#ifeq: {{#rel2abs: ..}}/doc | {{SUBJECTPAGENAME}} | <div class="toc" style="text-align: center;"> [[:{{#rel2abs: .. | {{SUBJECTPAGENAME}}}}]] · [[:{{SUBJECTPAGENAME}}|Dok... + wikitext + text/x-wiki + <includeonly>{{#ifeq: {{#rel2abs: ..}}/doc | {{SUBJECTPAGENAME}} | <div class="toc" style="text-align: center;"> +[[:{{#rel2abs: .. | {{SUBJECTPAGENAME}}}}]] · [[:{{SUBJECTPAGENAME}}|Dokumentaceja]] · [[{{#rel2abs: .. | {{TALKPAGENAME}}}}|Sprīža]] · [[Служебная:Whatlinkshere/{{#rel2abs: .. | {{SUBJECTPAGENAME}}}}|Kimā lītuoj?]] +</div> +[[Kategoreja:Dokumentacejis taisi|{{PAGENAME}}]] +}}</includeonly><noinclude> +{{dokumentaceja}} +</noinclude> + ol11r95p8zticvjxfacqj8p4cxx6c75 + + + + Taiss:Dokumentaceja/begin + 10 + 1100 + + 12034 + 2011-03-26T02:49:54Z + + Dark Eagle + 34 + + Jauna lapa: <includeonly><div style="background:#F0F8FF;border:1px dotted #8BCBFF;padding:10px;margin-top:10px;clear:both;">__NOEDITSECTION__ <div padding-right:1em;">{{tlinks|lc={{{1}}}|diswatchlin... + wikitext + text/x-wiki + <includeonly><div style="background:#F0F8FF;border:1px dotted #8BCBFF;padding:10px;margin-top:10px;clear:both;">__NOEDITSECTION__ +<div padding-right:1em;">{{tlinks|lc={{{1}}}|diswatchlink=yes}}</div><span style="font-size:11pt;line-height:11pt;">[[Fails:Information.svg|20px|Dokumentaceja|link=|alt=(i)]]&nbsp;Dokumentaceja</span> +----</includeonly> + nfnz3hsyr3h067ue2hehqvrkvagalep + + + + Taiss:Dokumentaceja/end + 10 + 1101 + + 12035 + 2011-03-26T02:57:26Z + + Dark Eagle + 34 + + Jauna lapa: </div><div style="background:#f0f8ff; border:1px dotted #8bcbff; padding:10px; margin-top:10px"> ''Dūta dokumentaceja dalikta nu taisa zampuslopys.'' </div> + wikitext + text/x-wiki + </div><div style="background:#f0f8ff; border:1px dotted #8bcbff; padding:10px; margin-top:10px"> +''Dūta dokumentaceja dalikta nu taisa zampuslopys.'' +</div> + quu0fus00zuroljigbav6lu2makwafs + + + + Taiss:Tlinks + 10 + 1102 + + 12038 + 12037 + 2011-03-26T03:06:35Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + <includeonly><span style="float:right; font-size:{{{fontsize|11}}}px; font-weight:normal;" class="plainlinks"><!-- +-->{{#ifexist:{{#rel2abs:{{{lc|}}}}}|{{#ifeq:{{{dislooklink|}}}|yes||<nowiki>[</nowiki>[[{{{lc}}}|vērtīs]]<nowiki>]</nowiki>&nbsp;}}<nowiki>[</nowiki>[{{fullurl:{{#rel2abs:{{{lc}}}}}|action=edit}} pataiseit]<nowiki>]</nowiki>&nbsp;{{#ifeq:{{{dishistlink|}}}|yes||<nowiki>[</nowiki>[{{fullurl:{{#rel2abs:{{{lc}}}}}|action=history}} viesture]<nowiki>]</nowiki>}}|<nowiki>[</nowiki>[{{fullurl:{{#rel2abs:{{{lc}}}}}|action=edit&redlink=1}} sataiseit]<nowiki>]</nowiki>}}&nbsp;{{#ifeq:{{{diswatchlink|}}}|yes||<nowiki>[</nowiki>[{{fullurl:{{#rel2abs:{{{lc}}}}}|action=watch}} dasavērt]<nowiki>]</nowiki>&nbsp;}}<nowiki>[</nowiki>[{{fullurl:{{FULLPAGENAME}}|action=purge}} atjaunynuot]<nowiki>]</nowiki></span></includeonly><noinclude>{{dokumentaceja}}</noinclude> + 0ryusc6fkuxt0m6q2vu9lmq74pg6558 + + + + MediaWiki:Edittools + 8 + 1103 + + 15662 + 15491 + 2011-08-05T10:09:39Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + <div id="editpage-specialchars" style="margin-top:1px;border:1px solid #aaa;padding:2px"> +<small>Dreiza dalikšona</small>: <span style="font-size:1.3em"><charinsert> „+” ‘+’ — … |</charinsert></span> +<charinsert>&#123;{+}} [[+]] [+] [[|+]] &#123;{+|}} <nowiki> <br /></nowiki> <nowiki><br clear="all" /></nowiki> <nowiki>&</nowiki>nbsp;</charinsert> +<small>&nbsp;<charinsert><nowiki>#REDIRECT [[</nowiki>+]]</charinsert> +&nbsp;<charinsert>[[Kategoreja:+]] &#123;{DEFAULTSORT:+}} [[Lītuotuojs:+]] &#123;{u|+}}</charinsert></small> + +<div style="font-size:smaller;"> +<charinsert><>+</> <nowiki><!-- +--></nowiki> <u>+</u> <s>+</s> <small>+</small> <big>+</big> <sub>+</sub> <sup>+</sup> <blockquote>+</blockquote> <poem>+</poem> <math>+</math> <gallery>+</gallery> <tt>+</tt> <code>+</code> <nowiki><source lang=""></nowiki>+</source> <pre>+</pre> &lt;nowiki>+</nowiki> <includeonly>+</includeonly> <noinclude>+</noinclude></charinsert> +<charinsert>__NOTOC__ __TOC__ __FORCETOC__</charinsert> &nbsp; + +Padaļas: +<charinsert><nowiki>== + ==</nowiki></charinsert> &nbsp; <charinsert><nowiki>=== + ===</nowiki></charinsert> &nbsp;<charinsert><nowiki>{{subst:Seviškys padalys}}</nowiki></charinsert> &nbsp; <charinsert><nowiki>== Verīs taipoš ==</nowiki></charinsert> &nbsp; <charinsert><nowiki>== Nūruodis ==&#10;&#123;{nūruodis}}</nowiki></charinsert>&nbsp; <charinsert><nowiki>== Literatura ==</nowiki></charinsert>&nbsp; <charinsert><nowiki>== Teiklavītys ==</nowiki></charinsert> + +Taisi: +<charinsert>&#123;{tl|+}} &#123;{vol-en|+}} &#123;{Nadabeigts rakstīņs}} &#123;{disambig}} &#123;{delete|+}}</charinsert> + +Olūti: +<charinsert> <ref>+</ref> <nowiki><ref name=""></nowiki>+</ref> <nowiki><ref name="+" /></nowiki> </charinsert> +</div> + +<small>Simboli:</small> +<charinsert>‘ “ ’ ” ~ # @ § ¶ № • · ← ↖ ↑ ↗ → ↘ ↓ ↙ ↔ ↕ ¡ ¿ \ ½ ¼ ¾ ≈ ≠ ± − × ÷ ° ^ ¹ ² ³ € £ ¥ $ ¢ † © ® ™</charinsert> +<span title="Знак ударения, ставится после ударной гласной"> + +<small>Latgaļu alfabets:</small> +<charinsert> A a Ā ā B b C c Č č D d E e Ē ē F f G g Ģ ģ H h I i Y y Ī ī J j K k Ķ ķ L l Ļ ļ M m N n Ņ ņ O o Ō ō P p R r S s Š š T t U u Ū ū V v Z z Ž ž </charinsert> +</div> + anolox46qlbn5cjs48poijhb8dh3w4s + + + + Kategoreja:Koņtinenti + 14 + 1107 + + 29679 + 28512 + 2013-04-13T04:42:50Z + + KLBot2 + 1857 + + + Bot: Migrating 11 interwiki links, now provided by [[Wikidata]] on [[:d:Q2945667]] + wikitext + text/x-wiki + {{catmain|Koņtinents}} +{{Commonscat|Continents|Koņtinenti}} + +[[Kategoreja:Zeme]] +[[Kategoreja:Reļjefa formys]] +[[Kategoreja:Pluotņu tektoneka]] +[[Kategoreja:Vītys]] + s5rwpuq9mn0zthp0t7ksfqmykyhyzy5 + + + + Taiss:Seviškys padalys + 10 + 1108 + + 12061 + 2011-03-26T16:53:53Z + + Dark Eagle + 34 + + Jauna lapa: == Verīs taipoš == == Nūruodis == {{nūruodis}} == Literatura == == Teiklavītys == <noinclude> {{dokumentaceja}}__NOTOC__ </noinclude> + wikitext + text/x-wiki + == Verīs taipoš == + +== Nūruodis == +{{nūruodis}} + +== Literatura == + +== Teiklavītys == +<noinclude> +{{dokumentaceja}}__NOTOC__ +</noinclude> + gpiy90t57k4kmtbc1x9igswptdt34r6 + + + + Taiss:Seviškys padalys/doc + 10 + 1109 + + 12065 + 12064 + 2011-03-26T17:02:45Z + + Dark Eagle + 34 + + + atsaucu + wikitext + text/x-wiki + <nowiki>{{subst:Seviškys padalys}}</nowiki> + +== Daliktais teksts == +<pre> +== Verīs taipoš == + +== Nūruodis == +{{nūruodis}} + +== Literatura == + +== Teiklavītys == +</pre> + ag5hn54t29p69nlbfp13mkp33t06tql + + + + Kategoreja:Vītys + 14 + 1110 + + 29407 + 27000 + 2013-03-19T02:27:51Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 43 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7481476]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Places}} + +[[Kategoreja:Geografeja]] + 0ft707w4y9bfhnc7e0b0bflxmqygo0t + + + + Taiss:Doc-inline + 10 + 1111 + + 29942 + 28513 + 2013-08-01T07:07:18Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6179941]] + wikitext + text/x-wiki + <div style="background:#F0F8FF; border:1px dotted #8BCBFF; padding:10px; margin-top:10px"><noinclude> +Leidzeigs taisam {{tl|dokumentaceja}}. + +== Pīvadims == +<pre> +{{doc-inline}} // suokys +Dokumentacejis teksts +{{doc-end}} // beigys +</pre> + +{{doc-end}} + +[[Kategoreja:Dokumentaceju taisi]] + +</noinclude> + brsh56460ncys0i1tpiqmc7aw74gxag + + + + Taiss:Doc-end + 10 + 1112 + + 30026 + 12070 + 2013-08-16T15:46:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6108896]] + wikitext + text/x-wiki + </div><noinclude> +{{doc-inline}} +{{tl|doc-inline}} — dokumentacejis bloka beigys. +{{doc-end}} + +[[Kategoreja:Dokumentaceju taisi]] + +</noinclude> + cqguqyysugl30xg1bmtfyyl37rng1pf + + + + Kategoreja:Mīsti pa vaļsteibai + 14 + 1113 + + 28514 + 26940 + 2013-03-07T23:04:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 76 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4992950]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Cities by country|Mīsti pa vaļsteibai}} + +[[Kategoreja:Mīsti| Vaļsteibys]] +[[Kategoreja:Dzeivojamuos vītys pa vaļsteibai| Mīsti]] +[[Kategoreja:Kategorejis pa vaļsteibai]] + fx3sjrlrt8tho47ctec1huajhwq4tg9 + + + + Kategoreja:Mīsti + 14 + 1114 + + 28515 + 25444 + 2013-03-07T23:04:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 143 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5460731]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Cities|Mīsti}} +{{catmore|Mīsts}} + +[[Kategoreja:Mīsts| ]] +[[Kategoreja:Dzeivojamuos vītys]] + 2i70fpnky2ygly1ukft8ygqwhdhv26o + + + + Kategoreja:Igaunejis mīsti + 14 + 1116 + + 29388 + 26821 + 2013-03-15T02:28:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 72 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7214674]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Cities in Estonia|Igaunejis mīsti}} + +[[Kategoreja:Igauneja|Mīsti]] +[[Kategoreja:Mīsti pa vaļsteibai]] + fi4yej3xl8dzg5opmtiuvhg1ogf9k9a + + + + Kategoreja:Igauneja + 14 + 1117 + + 29677 + 28516 + 2013-04-13T04:42:27Z + + KLBot2 + 1857 + + + Bot: Migrating 3 interwiki links, now provided by [[Wikidata]] on [[:d:Q4367632]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|Estonia|Igauneja}} + +[[Kategoreja:Europys Savīneibys dalinīkvaļsteibys]] +[[Kategoreja:Europys vaļsteibys]] +[[Kategoreja:Baļtejis vaļsteibys]] + j2lwhyuwjna9wgpgbzaiqbe3apf7pqb + + + + Taiss:User ru + 10 + 1118 + + 30038 + 12101 + 2013-08-16T15:46:55Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5743436]] + wikitext + text/x-wiki + {{User lang +| lang = ru +| name = Krīvu volūda +| level = N +| size = +| info = Для этого участника '''[[:Kategoreja:User ru|русский язык]]''' является '''[[:Kategoreja:User ru-N|родным]]'''. +}} + 2u4c3osnwv822kbaaux66ixicdc21px + + + + Taiss:User ru-0 + 10 + 1119 + + 30035 + 12102 + 2013-08-16T15:46:51Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6967857]] + wikitext + text/x-wiki + {{User lang +| lang = ru +| name = Krīvu volūda +| level = 0 +| size = +| info = Этот участник '''[[:Kategoreja:User ru-0|не понимает или слабо понимает]] [[:Kategoreja:User ru|русский язык]]'''. +}} + 362runsknqt9xw420tunaj3kbj14fo6 + + + + Taiss:User ru-2 + 10 + 1120 + + 30052 + 12105 + 2013-08-16T15:47:05Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6585231]] + wikitext + text/x-wiki + {{User lang +| lang = ru +| name = Krīvu volūda +| level = 2 +| size = +| info = Этот участник '''[[:Kategoreja:User ru-2|на среднем уровне]]''' знает '''[[:Kategoreja:User ru|русский язык]]'''. +}} + ckmwgqd9oflvmiwzme7oa3hjm9e46yu + + + + Taiss:User ru-1 + 10 + 1121 + + 30037 + 12106 + 2013-08-16T15:46:51Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6967995]] + wikitext + text/x-wiki + {{User lang +| lang = ru +| name = Krīvu volūda +| level = 1 +| size = +| info = Этот участник владеет '''[[:Kategoreja:User ru|русским языком]]''' на '''[[:Kategoreja:User ru-1|начальном уровне]]'''. +}} + fj19g1vrg4a6ce1zs1tudxezpmng3dh + + + + Taiss:User fr + 10 + 1122 + + 28517 + 28058 + 2013-03-07T23:05:27Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 202 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5567997]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = fr +| name = Praņcīšu volūda +| level = N +| size = +| info = Cet utilisateur a pour '''[[:Kategoreja:User fr-N|langue maternelle]]''' le '''[[:Kategoreja:User fr|français]]'''. +}}<noinclude> +</noinclude> + kknaandznb92ga5ubgo3jnfls2rb8gq + + + + Taiss:User fr-4 + 10 + 1123 + + 30040 + 12151 + 2013-08-16T15:46:55Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6317647]] + wikitext + text/x-wiki + {{User lang +| lang = fr +| name = Praņcīšu volūda +| level = 4 +| size = +| info = Cet utilisateur '''[[:Kategoreja:User fr-4|parle]]''' le '''[[:Kategoreja:User fr|français]]''' s’approchant d’un niveau natif. +}} + 7xhngie1dgsmt02dnrjwi2a2wokpex7 + + + + Taiss:User fr-3 + 10 + 1124 + + 30046 + 12117 + 2013-08-16T15:47:03Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6003286]] + wikitext + text/x-wiki + {{User lang +| lang = fr +| name = Praņcīšu volūda +| level = 3 +| size = +| info = Cet utilisateur peut contribuer avec un niveau '''[[:Kategoreja:User fr-3|avancé]]''' de '''[[:Kategoreja:User fr|français]]'''. +}} + n6wk1lkxxf9rw9ka38f6h7g9xoceg49 + + + + Taiss:User fr-2 + 10 + 1125 + + 28518 + 12118 + 2013-03-07T23:05:42Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5567947]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = fr +| name = Praņcīšu volūda +| level = 2 +| size = +| info = Cet utilisateur peut contribuer avec un niveau '''[[:Kategoreja:User fr-2|intermédiaire]]''' de '''[[:Kategoreja:User fr|français]]'''. +}}<noinclude> +</noinclude> + sntzglq6njv66wddh143fp49ze08ayl + + + + Taiss:User fr-1 + 10 + 1126 + + 28519 + 28005 + 2013-03-07T23:05:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 199 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5548625]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = fr +| name = Praņcīšu volūda +| level = 1 +| size = +| info = Cet utilisateur peut contribuer avec un niveau '''[[:Kategoreja:User fr-1|élémentaire]]''' de '''[[:Kategoreja:User fr|français]]'''. +}}<noinclude> +</noinclude> + cz44dcjq9io56yme8pfzixrv9gddybm + + + + Taiss:User fr-0 + 10 + 1127 + + 30032 + 12144 + 2013-08-16T15:46:39Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6096421]] + wikitext + text/x-wiki + {{User lang +| lang = fr +| name = Praņcīšu volūda +| level = 0 +| size = +| info = Cet utilisateur [[:Kategoreja:User fr-0|'''ne comprend pas''']] le '''[[:Kategoreja:User fr|français]]''', ou seulement avec des difficultés notables. +}} + 43lflg591jzi0owcq0uvjiyydh4gl84 + + + + Kategoreja:User fr-N + 14 + 1128 + + 29721 + 28520 + 2013-04-13T04:50:57Z + + KLBot2 + 1857 + + + Bot: Migrating 10 interwiki links, now provided by [[Wikidata]] on [[:d:Q6403760]] + wikitext + text/x-wiki + {{Commonscat|User fr-N}} + +[[Kategoreja:User fr| 0]] + enot9ew2nwinu8i2spepr1tf6f1qnr0 + + + + Kategoreja:User fr + 14 + 1129 + + 29718 + 28521 + 2013-04-13T04:50:41Z + + KLBot2 + 1857 + + + Bot: Migrating 8 interwiki links, now provided by [[Wikidata]] on [[:d:Q6402996]] + wikitext + text/x-wiki + {{Commonscat|User fr}} + +[[Kategoreja:Lītuotuoju volūdys|fr]] + 83jqbn4culengebvnf7xwi8k4q9442c + + + + Kategoreja:User fr-4 + 14 + 1130 + + 28989 + 28522 + 2013-03-08T18:27:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6403577]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User fr-4}} + +[[Kategoreja:User fr| 1]] + lo1swzj3le8yzvba2ats9bavne9oc6g + + + + Kategoreja:User fr-3 + 14 + 1131 + + 29720 + 28523 + 2013-04-13T04:50:50Z + + KLBot2 + 1857 + + + Bot: Migrating 4 interwiki links, now provided by [[Wikidata]] on [[:d:Q6403448]] + wikitext + text/x-wiki + {{Commonscat|User fr-3}} + +[[Kategoreja:User fr| 2]] + 8kj8wvgnlv1siumh8b4gsx1vkn0m514 + + + + Kategoreja:User fr-2 + 14 + 1132 + + 28524 + 28095 + 2013-03-07T23:30:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 184 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6403269]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User fr-2}} + +[[Kategoreja:User fr| 3]] + t5lv7dop2o61u4dir6t7drtq8obubyz + + + + Kategoreja:User fr-1 + 14 + 1133 + + 29719 + 28525 + 2013-04-13T04:50:45Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q5614597]] + wikitext + text/x-wiki + {{Commonscat|User fr-1}} + +[[Kategoreja:User fr| 4]] + 8vxeyuvv448cnkrwgxudkkgelmpdjcg + + + + Kategoreja:User fr-0 + 14 + 1134 + + 28979 + 28526 + 2013-03-08T16:27:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6403127]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User fr-0}} + +[[Kategoreja:User fr| 5]] + bdfq0hl3qxo9kbfp5fyaa30nci7ksxi + + + + Taiss:User en + 10 + 1135 + + 28527 + 27990 + 2013-03-07T23:31:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 237 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5547114]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = en +| name = Anglīšu volūda +| level = N +| size = +| info = This user is a '''[[:Kategoreja:User en-N|native]]''' speaker of '''[[:Kategoreja:User en|English]]'''. +}}<noinclude> +</noinclude> + asn3fg9510wkil0opdmowtyrpiw9k93 + + + + Taiss:User en-1 + 10 + 1136 + + 28528 + 28004 + 2013-03-07T23:31:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 213 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5544913]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = en +| name = Anglīšu volūda +| level = 1 +| size = +| info = This user is able to contribute with a '''[[:Kategoreja:User en-1|basic]]''' level of '''[[:Kategoreja:User en|English]]'''. +}}<noinclude> +</noinclude> + atti6aji0afoglt9viupylytet4b4h5 + + + + Taiss:User en-0 + 10 + 1137 + + 28529 + 27992 + 2013-03-07T23:32:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 135 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5546187]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = en +| name = Anglīšu volūda +| level = 0 +| size = +| info = This person '''[[:Kategoreja:User en-0|does not understand]] [[:Kategoreja:User en|English]]''' (or understands it with considerable difficulties). +}}<noinclude> +</noinclude> + j7amiqea3jelbt75t35xz0pzmsxl6gv + + + + Taiss:User es + 10 + 1138 + + 28530 + 12201 + 2013-03-07T23:32:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5542595]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = es +| name = Spanīšu volūda +| level = N +| size = +| info = Este usuario tiene el '''[[:Kategoreja:User es|español]]''' como '''[[:Kategoreja:User es-N|lengua materna]]'''. +}}<noinclude> +</noinclude> + af6ktzb6p18rk782w8pt7exv1fhxqx6 + + + + Taiss:User es-4 + 10 + 1139 + + 28531 + 28001 + 2013-03-07T23:32:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 104 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5547092]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = es +| name = Spanīšu volūda +| level = 4 +| size = +| info = El nivel de este usuario corresponde al de un '''[[:Kategoreja:User es-4|hablante casi nativo]]''' del '''[[:Kategoreja:User es|español]]'''. +}}<noinclude> +</noinclude> + jlvgepqgscx561b14bauxgezly8berv + + + + Taiss:User es-3 + 10 + 1140 + + 29952 + 29038 + 2013-08-01T07:07:36Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6585261]] + wikitext + text/x-wiki + {{User lang +| lang = es +| name = Spanīšu volūda +| level = 3 +| size = +| info = Este usuario puede contribuir con un nivel '''[[:Kategoreja:User es-3|avanzado]]''' de '''[[:Kategoreja:User es|español]]'''. +}} + 096vj106hkio6shwhmoq59xav5v4wry + + + + Taiss:User es-2 + 10 + 1141 + + 28532 + 28011 + 2013-03-07T23:32:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 180 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5611824]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = es +| name = Spanīšu volūda +| level = 2 +| size = +| info = Este usuario puede contribuir con un nivel '''[[:Kategoreja:User es-2|intermedio]]''' de '''[[:Kategoreja:User es|español]]'''. +}}<noinclude> +</noinclude> + 8cbutz1n6jgxfhkb8reudt126r1eojn + + + + Taiss:User es-1 + 10 + 1142 + + 29936 + 28533 + 2013-07-27T17:48:12Z + + MerlIwBot + 221 + + + robots izņem: [[stq:Foarloage:Benutser es]] (strongly connected to [[ltg:Taiss:User es]]) + wikitext + text/x-wiki + {{User lang +| lang = es +| name = Spanīšu volūda +| level = 1 +| size = +| info = Este usuario puede contribuir con un nivel '''[[:Kategoreja:User es-1|básico]]''' de '''[[:Kategoreja:User es|español]]'''. +}}<noinclude> +</noinclude> + 3cs9wjx1wb39xcbvyfy9rtiihmgun3f + + + + Taiss:User es-0 + 10 + 1143 + + 30033 + 12197 + 2013-08-16T15:46:40Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5625664]] + wikitext + text/x-wiki + {{User lang +| lang = es +| name = Spanīšu volūda +| level = 0 +| size = +| info = Este usuario '''[[:Kategoreja:User es-0|no entiende]] [[:Kategoreja:User es|español]]''' (o lo entiende con mucha dificultad). +}} + pinu8rmd59smnjkq8e57a3gljot2mbq + + + + Kategoreja:User es + 14 + 1144 + + 29712 + 28534 + 2013-04-13T04:50:14Z + + KLBot2 + 1857 + + + Bot: Migrating 11 interwiki links, now provided by [[Wikidata]] on [[:d:Q6399850]] + wikitext + text/x-wiki + {{Commonscat|User es}} + +[[Kategoreja:Lītuotuoju volūdys|es]] + dl1qv0j2mphi4e0k12zabbh2s20st3d + + + + Kategoreja:User es-N + 14 + 1145 + + 28535 + 28016 + 2013-03-07T23:33:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 156 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6400684]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User es-N}} + +[[Kategoreja:User es| 0]] + g2vzse7tze2hvn9zqb06ek7bdh9zl83 + + + + Kategoreja:User es-4 + 14 + 1146 + + 28536 + 26837 + 2013-03-07T23:33:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 116 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6400524]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User es-4}} + +[[Kategoreja:User es| 1]] + b0oblmiecfgvt6i0lzvvlwkhwsrjwy1 + + + + Kategoreja:User es-3 + 14 + 1147 + + 29716 + 28537 + 2013-04-13T04:50:31Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6400397]] + wikitext + text/x-wiki + {{Commonscat|User es-3}} + +[[Kategoreja:User es| 2]] + sqmxyf8m3elkyhwfl9su66vkixep3gi + + + + Kategoreja:User es-2 + 14 + 1148 + + 29715 + 28538 + 2013-04-13T04:50:28Z + + KLBot2 + 1857 + + + Bot: Migrating 9 interwiki links, now provided by [[Wikidata]] on [[:d:Q6400255]] + wikitext + text/x-wiki + {{Commonscat|User es-2}} + +[[Kategoreja:User es| 3]] + ptyqtj7jak9tqdh8zgvteqc7gvvlqr9 + + + + Kategoreja:User es-1 + 14 + 1149 + + 29714 + 28539 + 2013-04-13T04:50:23Z + + KLBot2 + 1857 + + + Bot: Migrating 6 interwiki links, now provided by [[Wikidata]] on [[:d:Q6400064]] + wikitext + text/x-wiki + {{Commonscat|User es-1}} + +[[Kategoreja:User es| 4]] + 5gkggr41mzg4jrzvxot70hu4tp3ip1s + + + + Kategoreja:User es-0 + 14 + 1150 + + 29713 + 29597 + 2013-04-13T04:50:17Z + + KLBot2 + 1857 + + + Bot: Migrating 4 interwiki links, now provided by [[Wikidata]] on [[:d:Q9309915]] + wikitext + text/x-wiki + {{Commonscat|User es-0}} + +[[Kategoreja:User es| 5]] + rjtczjcl0pn0qamjeipefttmxecfajh + + + + Taiss:User uk + 10 + 1151 + + 28540 + 28009 + 2013-03-07T23:34:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 166 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5611811]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = uk +| name = Ukrainīšu volūda +| level = N +| size = +| info = '''[[:Kategoreja:User uk|Українська мова]]''' для цього користувача є '''[[:Kategoreja:User uk-N|рідною]]'''. +}}<noinclude> +</noinclude> + bne5gttvwe5y04vmxz3rrk1t73uckm1 + + + + Taiss:User uk-4 + 10 + 1152 + + 30044 + 12169 + 2013-08-16T15:46:58Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6968982]] + wikitext + text/x-wiki + {{User lang +| lang = uk +| name = Ukrainīšu volūda +| level = 4 +| size = +| info = Користувач володiє '''[[:Kategoreja:User uk|українською мовою]]''' '''[[:Kategoreja:User uk-4|майже як рiдною]]'''. +}} + 0ala138az6greravwuekeooxl1y46g3 + + + + Taiss:User uk-3 + 10 + 1153 + + 30043 + 12170 + 2013-08-16T15:46:56Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q7211289]] + wikitext + text/x-wiki + {{User lang +| lang = uk +| name = Ukrainīšu volūda +| level = 3 +| size = +| info = Користувач може робити внесок '''[[:Kategoreja:User uk|українською мовою]]''' на '''[[:Kategoreja:User uk-3|високому рівні]]'''. +}} + ipq5yh6dznayunplf77aez4yxnnqszh + + + + Taiss:User uk-2 + 10 + 1154 + + 30047 + 12171 + 2013-08-16T15:47:03Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q3262995]] + wikitext + text/x-wiki + {{User lang +| lang = uk +| name = Ukrainīšu volūda +| level = 2 +| size = +| info = Користувач може робити внесок '''[[:Kategoreja:User uk|українською мовою]]''' на '''[[:Kategoreja:User uk-2|середньому рівні]]'''. +}} + ictpto1vs0jd0jv4fmp4jw0w6onnk08 + + + + Taiss:User uk-1 + 10 + 1155 + + 30045 + 12172 + 2013-08-16T15:47:02Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6968844]] + wikitext + text/x-wiki + {{User lang +| lang = uk +| name = Ukrainīšu volūda +| level = 1 +| size = +| info = Користувач може робити внесок '''[[:Kategoreja:User uk|українською мовою]]''' на '''[[:Kategoreja:User uk-1|початковому рівні]]'''. +}} + p945jkoqqjq8l82k1xedupuxzwuu4m8 + + + + Taiss:User uk-0 + 10 + 1156 + + 30041 + 12174 + 2013-08-16T15:46:55Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q8480583]] + wikitext + text/x-wiki + {{User lang +| lang = uk +| name = Ukrainīšu volūda +| level = 0 +| size = +| info = Цей користувач '''[[:Kategoreja:User uk-0|не розуміє]] [[:Kategoreja:User uk|української мови]]''' (або розуміє зі значними труднощами). +}} + hmgf49jjfzy8fig3wa572wynwdj44ut + + + + Kategoreja:User uk + 14 + 1157 + + 28541 + 26859 + 2013-03-07T23:34:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 154 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5610209]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User uk}} + +[[Kategoreja:Lītuotuoju volūdys|uk]] + 3n29ase9e822tb5xpfj5p8j6flp7ogw + + + + Kategoreja:User uk-N + 14 + 1158 + + 28542 + 26862 + 2013-03-07T23:34:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 144 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5610348]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User uk-N}} + +[[Kategoreja:User uk| 0]] + 5obdz3spewgyk1l3qwp2nnzc8daw0np + + + + Kategoreja:User uk-4 + 14 + 1159 + + 29342 + 26860 + 2013-03-11T12:42:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 86 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6593199]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User uk-4}} + +[[Kategoreja:User uk| 1]] + ge41vvdrbrjopx62ir953gzvbhcaa37 + + + + Kategoreja:User uk-3 + 14 + 1160 + + 29509 + 29492 + 2013-04-02T18:52:24Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6593133]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User uk-3}} + +[[Kategoreja:User uk| 2]] + kwo1n9wgod5nsi6cz0qibxuos9qee9q + + + + Kategoreja:User uk-2 + 14 + 1161 + + 29344 + 26861 + 2013-03-11T14:02:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 65 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6593086]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User uk-2}} + +[[Kategoreja:User uk| 3]] + ngblmdbbh6m12axdtl4616mjqodc58y + + + + Kategoreja:User uk-1 + 14 + 1162 + + 29482 + 26858 + 2013-03-31T10:11:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 79 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6593032]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User uk-1}} + +[[Kategoreja:User uk| 4]] + 3wtz6ffohyvcm7hx20aznxdjmfpinyw + + + + Kategoreja:User uk-0 + 14 + 1163 + + 29546 + 25769 + 2013-04-03T18:18:53Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9419398]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User uk-0}} + +[[Kategoreja:User uk| 5]] + htdaubwlmgqvb7xlpb7eowcvj0rm319 + + + + Taiss:User be + 10 + 1164 + + 29949 + 29854 + 2013-08-01T07:07:35Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6964546]] + wikitext + text/x-wiki + {{User lang +| lang = be +| name = Boltkrīvu volūda +| level = N +| size = +| info = '''[[:Category:User be|Беларуская мова]]''' — '''[[:Category:User be-N|родная мова]]''' гэтага ўдзельніка. +}} + 0iipipntydgkcquxcx6gvkq2z0xfvmg + + + + Taiss:User be-4 + 10 + 1165 + + 29855 + 29774 + 2013-04-22T12:35:34Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q10951316]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = be +| name = Boltkrīvu volūda +| level = 4 +| size = +| info = Гэты ўдзельнік ведае '''[[:Category:User be|беларускую]]''' мову '''[[:Category:User be-4|амаль як родную]]'''. +}}<noinclude> +</noinclude> + 9dbgzu4ujqr98p5f4g4jlmdmd2h8kji + + + + Taiss:User be-3 + 10 + 1166 + + 29441 + 25798 + 2013-03-24T02:26:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 35 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8113139]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = be +| name = Boltkrīvu volūda +| level = 3 +| size = +| info = Гэты ўдзельнік '''[[:Category:User be-3|выдатна]]''' ведае '''[[:Category:User be|беларускую]]''' мову. +}}<noinclude> +</noinclude> + 5xji0ourci2ng0b2e3vnl2yv2im0k2o + + + + Taiss:User be-2 + 10 + 1167 + + 28543 + 27978 + 2013-03-07T23:35:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 101 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5540401]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = be +| name = Boltkrīvu volūda +| level = 2 +| size = +| info = Гэты ўдзельнік ведае '''[[:Category:User be|беларускую]]''' мову на '''[[:Category:User be-2|сярэднім]]''' узроўні. +}}<noinclude> +</noinclude> + jtoo76uauz8x2p44lvbe8eurdv6mywl + + + + Taiss:User be-1 + 10 + 1168 + + 29442 + 25803 + 2013-03-24T02:26:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 47 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8113165]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = be +| name = Boltkrīvu volūda +| level = 1 +| size = +| info =Гэты ўдзельнік ведае '''[[:Category:User be|беларускую]]''' мову на '''[[:Category:User be-1|пачатковым]]''' узроўні. +}}<noinclude> +</noinclude> + g4rp6tnkcsocfpjpgnvzuwqrbenh136 + + + + Taiss:User be-0 + 10 + 1169 + + 28544 + 27556 + 2013-03-07T23:35:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6318399]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = be +| name = Boltkrīvu volūda +| level = 0 +| size = +| info = Гэты ўдзельнік '''[[:Kategoreja:User be|беларускай]]''' мовай '''[[:Kategoreja:User be-0|не валодае]]''' або разбірае з вялікімі цяжкасцямі. +}}<noinclude> +</noinclude> + i3o96y7tf90p61cvt6tcn1ku55spsqv + + + + Kategoreja:User be + 14 + 1170 + + 28545 + 26836 + 2013-03-07T23:35:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 101 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6390410]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User be}} + +[[Kategoreja:Lītuotuoju volūdys|be]] + 4p0ol791mifdb0pl7e5j2p5a92xpbi2 + + + + Kategoreja:User be-N + 14 + 1171 + + 28990 + 28546 + 2013-03-08T18:29:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6390743]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User be-N}} + +[[Kategoreja:User be| 0]] + gmohece8iq6xn3a9m9wqdz3ieqi24bi + + + + Kategoreja:User be-4 + 14 + 1172 + + 28991 + 28547 + 2013-03-08T18:30:07Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6390691]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User be-4}} + +[[Kategoreja:User be| 1]] + b1r22rgh4rvbzzqw03szded50sz04n5 + + + + Kategoreja:User be-3 + 14 + 1173 + + 29005 + 28548 + 2013-03-08T22:29:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6390651]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User be-3}} + +[[Kategoreja:User be| 2]] + nm79htculqwuudpnr52fce17ho4fpyc + + + + Kategoreja:User be-2 + 14 + 1174 + + 28549 + 26835 + 2013-03-07T23:36:27Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 88 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6390583]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User be-2}} + +[[Kategoreja:User be| 3]] + lke289scp9z0noedghaodh3769fi3w4 + + + + Kategoreja:User be-1 + 14 + 1175 + + 28992 + 28550 + 2013-03-08T18:30:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6390493]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User be-1}} + +[[Kategoreja:User be| 4]] + oxcfxlnxpcsd4hfxe75tr13z9utkzo2 + + + + Kategoreja:User be-0 + 14 + 1176 + + 29541 + 25839 + 2013-04-03T16:14:05Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 9 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9418176]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User be-0}} + +[[Kategoreja:User be| 5]] + areqd3mqhpf7d4xg2x498ql1teq4ekn + + + + Kategoreja:User sgs-0 + 14 + 1177 + + 22757 + 20053 + 2012-05-04T02:16:09Z + + MerlIwBot + 221 + + + robots izņem: [[en:Category:User sgs-0]] (missing) + wikitext + text/x-wiki + {{Commonscat|User bat-smg-0}} + +[[Kategoreja:User sgs| 5]] + qwfmus6j6a1hb3qzng52iddyuly2p8i + + + + Kategoreja:User sgs-1 + 14 + 1178 + + 29562 + 21036 + 2013-04-04T04:13:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9724080]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User bat-smg-1}} + +[[Kategoreja:User sgs| 4]] + c5aoog8h4ma7x8do3py3m5cv0216y2u + + + + Kategoreja:User sgs-N + 14 + 1179 + + 29478 + 20051 + 2013-03-30T20:11:54Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8891748]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User bat-smg-N}} + +[[Kategoreja:User sgs| 0]] + 9mvdo02lc1efr2b4gmxd9e6rp77ukqg + + + + Kategoreja:User sgs-4 + 14 + 1180 + + 29578 + 23121 + 2013-04-04T08:13:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9724734]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User bat-smg-4}} + +[[Kategoreja:User sgs| 1]] + 7dlq0wwd5cu2nf4gvwepd033gtx5w99 + + + + Kategoreja:User sgs-2 + 14 + 1181 + + 29477 + 23120 + 2013-03-30T18:13:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8891746]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User bat-smg-2}} + +[[Kategoreja:User sgs| 3]] + seu0g5zif0g9c6mlclyivu2a834ztdt + + + + Kategoreja:Nautrānu pogosts + 14 + 1182 + + 29554 + 24457 + 2013-04-04T02:14:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9659135]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Rēznis nūvods]] + hiiokjfor3vzp2qfamhvucv4g5zuhch + + + + Dzeivinīki + 0 + 1183 + + 28551 + 28067 + 2013-03-08T00:00:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 180 interwiki links, now provided by [[d:|Wikidata]] on [[d:q729]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Animal diversity.png|thumb|200px|Dzeivinīki]] + +'''Dzeivinīki''' ({{Vol-la|Animalia, Metazoa}}) irā lela daudzišyunu [[Organizmys|organizmu]] grupa, kura reagej iz apleicejū [[Apleice|apleici]], puordzeivuojūt nu cytim organizmim. Dzeivinīku biologiskuo vysaideiba irā lela (ap 2 milijoni škiru), tok škira ratai irā vīndabeiga vysā paplateibys apgabalī. Cieški jei sasadola zamškiruos. + +{{Commonscat|Animals|Dzeivnīki}} + +[[Kategoreja:Dzeivinīki| ]] + ex627xcwr2y0jgg8hnlffo65koope23 + + + + Taiss:User de-0 + 10 + 1185 + + 30027 + 12234 + 2013-08-16T15:46:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6086212]] + wikitext + text/x-wiki + {{User lang +| lang = de +| name = Vuocīšu volūda +| level = 0 +| size = +| info = Dieser Benutzer hat '''[[:Kategoreja:User de-0|keine]] [[:Kategoreja:User de|Deutschkenntnisse]]'''. +}} + dcn3glm3vhmb50e3xupqmrd1ypep7qr + + + + Taiss:User de-4 + 10 + 1186 + + 29951 + 29856 + 2013-08-01T07:07:36Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q7110352]] + wikitext + text/x-wiki + {{User lang +| lang = de +| name = Vuocīšu volūda +| level = 4 +| size = +| info = Dieser Benutzer hat '''[[:Kategoreja:User de-4|mit einem Muttersprachler vergleichbare]] [[:Kategoreja:User de|Deutschkenntnisse]]'''. +}}<noinclude> +[[ckb:داڕێژە:User de-4/doc]] +</noinclude> + 0fr8tahkk5xdgjsii0tlh4rxj9hngmb + + + + Taiss:User de + 10 + 1187 + + 28552 + 27979 + 2013-03-08T00:00:35Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 216 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5541223]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = de +| name = Vuocīšu volūda +| level = N +| size = +| info = Dieser Benutzer spricht '''[[:Kategoreja:User de|Deutsch]]''' als '''[[:Kategoreja:User de-N|Muttersprache]]'''. +}}<noinclude> +</noinclude> + 20k54yxqmco7hctertf1mxyzl6f305i + + + + Taiss:User et + 10 + 1188 + + 19487 + 12263 + 2011-12-23T14:51:10Z + + MerlIwBot + 221 + + + robots izņem: [[en:Taiss:User et-N]] (missing) + wikitext + text/x-wiki + {{User lang +| lang = et +| name = Igauņu volūda +| level = N +| size = +| info = See kasutaja valdab '''[[:Kategoreja:User et|eesti keelt]] [[:Kategoreja:User et-N|emakeelena]]'''. +}}<noinclude> +</noinclude> + 8vlfd506pqkfyynihveclfr9q33wqyo + + + + Taiss:User et-4 + 10 + 1189 + + 19491 + 12264 + 2011-12-23T14:55:17Z + + MerlIwBot + 221 + + + robots izņem: [[en:Taiss:User et-4]] (missing) + wikitext + text/x-wiki + {{User lang +| lang = et +| name = Igauņu volūda +| level = 4 +| size = +| info = See kasutaja valdab '''[[:Kategoreja:User et|eesti keelt]] [[:Kategoreja:User et-4|peaaegu nagu emakeelt]]'''. +}}<noinclude> +</noinclude> + aes2ixp9y3807kyf2whtyd8at0sm75c + + + + Taiss:User et-3 + 10 + 1191 + + 19490 + 12262 + 2011-12-23T14:54:13Z + + MerlIwBot + 221 + + + robots izņem: [[en:Taiss:User et-3]] (missing) + wikitext + text/x-wiki + {{User lang +| lang = et +| name = Igauņu volūda +| level = 3 +| size = +| info = See kasutaja valdab '''[[:Kategoreja:User et|eesti keelt]] [[:Kategoreja:User et-3|heal tasemel]]'''. +}}<noinclude> +</noinclude> + 5ihrxhjioixcx7d62a2ll7vsdeghqo9 + + + + Taiss:User et-0 + 10 + 1193 + + 19486 + 12265 + 2011-12-23T14:50:06Z + + MerlIwBot + 221 + + + robots izņem: [[en:Taiss:User et-0]] (missing) + wikitext + text/x-wiki + {{User lang +| lang = et +| name = Igauņu volūda +| level = 0 +| size = +| info = See kasutaja '''[[:Kategoreja:User et-0|ei valda]] [[:Kategoreja:User et|eesti keelt]]''' (või mõistab seda tõsiste raskustega). +}}<noinclude> +</noinclude> + 6xgvc0qe1tkyhprr94s3ee2us9rhl36 + + + + Taiss:User pl-4 + 10 + 1194 + + 30039 + 12270 + 2013-08-16T15:46:55Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q7707555]] + wikitext + text/x-wiki + {{User lang +| lang = pl +| name = Puoļu volūda +| level = 4 +| size = +| info = Ten użytkownik posługuje się '''[[:Kategoreja:User pl|językiem polskim]]''' prawie jak '''[[:Kategoreja:User pl-4|językiem ojczystym]]'''. +}} + akx7od7yn4ponbslt6l60bm6sn9m48s + + + + Taiss:User pl-3 + 10 + 1195 + + 30042 + 12271 + 2013-08-16T15:46:55Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q7707521]] + wikitext + text/x-wiki + {{User lang +| lang = pl +| name = Puoļu volūda +| level = 3 +| size = +| info = Ten użytkownik posługuje się '''[[:Kategoreja:User pl|językiem polskim]]''' na poziomie '''[[:Kategoreja:User pl-3|zaawansowanym]]'''. +}} + 4mplsvc7n37mvmeu26ikypj1o8hskgo + + + + Taiss:User pl-0 + 10 + 1196 + + 30036 + 12272 + 2013-08-16T15:46:51Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5875261]] + wikitext + text/x-wiki + {{User lang +| lang = pl +| name = Puoļu volūda +| level = 0 +| size = +| info = Ta użytkowniczka '''[[:Kategoreja:User pl-0|nie rozumie]] [[:Kategoreja:User pl|języka polskiego]]''' (albo ma z nim olbrzymie trudności). +}} + h14n1js16ei1gvmfjb8anyqdf8no8q8 + + + + Igaunejis mīstu saroksts + 0 + 1199 + + + 12276 + 2011-03-27T11:51:38Z + + Dark Eagle + 34 + + "[[Igaunejis mīstu saroksts]]" puorsauču par "[[Igaunejis mīsti]]" + wikitext + text/x-wiki + #REDIRECT [[Igaunejis mīsti]] + bbied5g40j9psoigh9bomm99zusd7dv + + + + Latvejis mīstu saroksts + 0 + 1200 + + + 12279 + 2011-03-27T11:57:49Z + + Dark Eagle + 34 + + "[[Latvejis mīstu saroksts]]" puorsauču par "[[Latvejis mīsti]]" + wikitext + text/x-wiki + #REDIRECT [[Latvejis mīsti]] + q51rojbxeur62bw7w62voqwggtjkkwj + + + + Lītovys mīstu saroksts + 0 + 1201 + + + 12282 + 2011-03-27T12:00:01Z + + Dark Eagle + 34 + + "[[Lītovys mīstu saroksts]]" puorsauču par "[[Lītovys mīsti]]" + wikitext + text/x-wiki + #REDIRECT [[Lītovys mīsti]] + es0fh37zoclrmsxvdfefcddk4znkrq5 + + + + Kategoreja:Lītovys mīsti + 14 + 1202 + + 29397 + 25316 + 2013-03-17T02:28:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 75 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7297750]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Cities in Lithuania|Lītovys mīsti}} + +[[Kategoreja:Lītova|Mīsti]] +[[Kategoreja:Mīsti pa vaļsteibai]] + aoz0a1dudo5f3c4im3bg4z0zo3ntbkj + + + + Taiss:Latvejis administrativais dalejums + 10 + 1203 + + 29061 + 23358 + 2013-03-10T23:21:35Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 13 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6668718]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{navbox +|name = Latvejis administrativais dalejums +|title = <center>[[Latvejis administrativais teritoriskais dalejums]]</center> +|state = uncollapsed +|group1 = Republikys mīsti +|list1 = [[Daugpiļs]]{{•}} [[Jākubmīsts]]{{•}} [[Jiurmale]]{{•}} [[Līpuoja]]{{•}} [[Meitova]]{{•}} [[Reiga]]{{•}} [[Rēzne]]{{•}} [[Volmīra]]{{•}} [[Ventspiļs]] +|group2 = Nūvodi +|list2 = [[Ādažu nūvods|Ādažu]]{{•}} [[Aglyunys nūvods|Aglyunys]]{{•}} [[Aizkraukļa nūvods|Aizkraukļa]]{{•}} [[Aizputis nūvods|Aizputis]]{{•}} [[Akneišys nūvods|Akneišys]]{{•}} [[Alšvangys nūvods|Alšvangys]]{{•}} [[Aluojis nūvods|Aluojis]]{{•}} [[Aucis nūvods|Aucis]]{{•}} [[Babeitis nūvods|Babeitis]]{{•}} [[Baļtinovys nūvods|Baļtinovys]]{{•}} [[Bauskis nūvods|Bauskis]]{{•}} [[Beverinys nūvods|Beverinys]]{{•}} [[Boldūnis nūvods|Boldūnis]]{{•}} [[Bolvu nūvods|Bolvu]]{{•}} [[Bruocānu nūvods|Bruocānu]]{{•}} [[Burtinīka nūvods|Burtinīka]]{{•}} [[Carnikovys nūvods|Carnikovys]]{{•}} [[Cāsu nūvods|Cāsu]]{{•}} [[Casvainis nūvods|Casvainis]]{{•}} [[Cyblys nūvods|Cyblys]]{{•}} [[Dagdys nūvods|Dagdys]]{{•}} [[Daugpiļs nūvods|Daugpiļs]]{{•}} [[Dūbelis nūvods|Dūbelis]]{{•}} [[Dundagys nūvods|Dundagys]]{{•}} [[Durbis nūvods|Durbis]]{{•}} [[Enguris nūvods|Enguris]]{{•}} [[Ereļu nūvods|Ereļu]]{{•}} [[Garkaļnis nūvods|Garkaļnis]]{{•}} [[Gruobina nūvods|Gruobina]]{{•}} [[Guļbinis nūvods|Guļbinis]]{{•}} [[Īcovys nūvods|Īcovys]]{{•}} [[Ikškilys nūvods|Ikškilys]]{{•}} [[Īlyukstis nūvods|Īlyukstis]]{{•}} [[Iņčukolna nūvods|Iņčukolna]]{{•}} [[Jākubmīsta nūvods|Jākubmīsta]]{{•}} [[Jaunmeitovys nūvods|Jaunmeitovys]]{{•}} [[Jaunpībolgys nūvods|Jaunpībolgys]]{{•}} [[Jaunpiļs nūvods|Jaunpiļs]]{{•}} [[Kandovys nūvods|Kandovys]]{{•}} [[Keguma nūvods|Keguma]]{{•}} [[Kekovys nūvods|Kekovys]]{{•}} [[Krymuldys nūvods|Krymuldys]]{{•}} [[Krystapiļs nūvods|Krystapiļs]]{{•}} [[Kruoslovys nūvods|Kruoslovys]]{{•}} [[Kūkmuižys nūvods|Kūkmuižys]]{{•}} [[Kūknuoja nūvods|Kūknuoja]]{{•}} [[Kuļdeigys nūvods|Kuļdeigys]]{{•}} [[Kuorsovys nūvods|Kuorsovys]]{{•}} [[Leigatnys nūvods|Leigatnys]]{{•}} [[Leivuona nūvods|Leivuona]]{{•}} [[Lelvuorda nūvods|Lelvuorda]]{{•}} [[Limbažu nūvods|Limbažu]]{{•}} [[Lubuona nūvods|Lubuona]]{{•}} [[Ludzys nūvods|Ludzys]]{{•}} [[Mārsroga nūvods|Mārsroga]]{{•}} [[Meitovys nūvods|Meitovys]]{{•}} [[Modyunis nūvods|Modyunis]]{{•}} [[Mozsalacys nūvods|Mozsalacys]]{{•}} [[Muolpiļs nūvods|Muolpiļs]]{{•}} [[Muorupis nūvods|Muorupis]]{{•}} [[Naratys nūvods|Naratys]]{{•}} [[Naukšānu nūvods|Naukšānu]]{{•}} [[Neicys nūvods|Neicys]]{{•}} [[Olyuksnys nūvods|Olyuksnys]]{{•}} [[Omotys nūvods|Omotys]]{{•}} [[Opys nūvods|Opys]]{{•}} [[Pavilūstys nūvods|Pavilūstys]]{{•}} [[Pļaveņu nūvods|Pļaveņu]]{{•}} [[Preiļu nūvods|Preiļu]]{{•}} [[Prīkulis nūvods|Prīkulis]]{{•}} [[Prīkuļu nūvods|Prīkuļu]]{{•}} [[Puorgaujis nūvods|Puorgaujis]]{{•}} [[Raunys nūvods|Raunys]]{{•}} [[Rēznis nūvods|Rēznis]]{{•}} [[Ribinišku nūvods|Ribinišku]]{{•}} [[Roudažu nūvods|Roudažu]]{{•}} [[Rucovys nūvods|Rucovys]]{{•}} [[Ruguoju nūvods|Ruguoju]]{{•}} [[Rūjīnys nūvods|Rūjīnys]]{{•}} [[Rundalis nūvods|Rundalis]]{{•}} [[Ruojis nūvods|Ruojis]]{{•}} [[Salacgreivys nūvods|Salacgreivys]]{{•}} [[Saldus nūvods|Saldus]]{{•}} [[Saulismalis nūvods|Saulismalis]]{{•}} [[Siejis nūvods|Siejis]]{{•}} [[Siguldys nūvods|Siguldys]]{{•}} [[Sīnuojis nūvods|Sīnuojis]]{{•}} [[Skreiveru nūvods|Skreiveru]]{{•}} [[Skrundys nūvods|Skrundys]]{{•}} [[Smiļktinis nūvods|Smiļktinis]]{{•}} [[Solys nūvods|Solys]]{{•}} [[Solyspiļs nūvods|Solyspiļs]]{{•}} [[Streņču nūvods|Streņču]]{{•}} [[Stūpeņu nūvods|Stūpeņu]]{{•}} [[Talsu nūvods|Talsu]]{{•}} [[Tiervetis nūvods|Tiervetis]]{{•}} [[Tukuma nūvods|Tukuma]]{{•}} [[Ūlainis nūvods|Ūlainis]]{{•}} [[Uogrys nūvods|Uogrys]]{{•}} [[Ūzulnīku nūvods|Ūzulnīku]]{{•}} [[Vacpībolgys nūvods|Vacpībolgys]]{{•}} [[Vacumnīku nūvods|Vacumnīku]] [[Vaiņaudys nūvods|Vaiņaudys]]{{•}} [[Valkys nūvods|Valkys]]{{•}} [[Varakļuonu nūvods|Varakļuonu]]{{•}} [[Ventspiļs nūvods|Ventspiļs]]{{•}} [[Vileks nūvods|Vileks]]{{•}} [[Viļānu nūvods|Viļānu]]{{•}} [[Vīseitis nūvods|Vīseitis]]{{•}} [[Vuorkovys nūvods|Vuorkovys]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums| ]] + +</noinclude> + in7cmlh0gy3xzomsfipriumw10nplkd + + + + Casvainis nūvods + 0 + 1205 + + 28553 + 17094 + 2013-03-08T00:00:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 8 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2327041]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Casvainis nūvods +| zemislopa = Cesvaines novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Casvainis nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Casvainis nūvoda karūgs +| centrys = Casvaine +| pluots = 190,5 +| dzeivuotuoju_skaits = 3 114 +| dzeivuotuoji_gods = 2010 +| bīzeiba = 16,3 +| īstateits = 2009 +| teritoriskais_dalejums = [[Casvaine]]<br />[[Casvainis pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.cesvaine.lv +}} + +'''Casvainis nūvods''' irā pošvolds [[Vydzeme|Vydzemē]]. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Casvainis nūvods| ]] + bcl82cjd4cknjro5oseguva5cwtgyoi + + + + Taiss:EncLP + 10 + 1206 + + 29824 + 12368 + 2013-04-15T02:33:49Z + + Addbot + 1801 + + + wikitext + text/x-wiki + Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001—2002 ISBN 9984-00-412-0<noinclude> +[[Kategoreja:Nūruodu taisi]] + +</noinclude> + o2yt0zaxe0mvgux81zdx065byi7rmpf + + + + Taiss:Transclude + 10 + 1207 + + 30028 + 12361 + 2013-08-16T15:46:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5410488]] + wikitext + text/x-wiki + {{#switch: {{NAMESPACE: {{{1}}} }} + |#default = {{FULLPAGENAME: {{{1}}} }} <!-- eg "User:Foo" --> + |{{ns:0}} = + {{#ifeq: {{NAMESPACE: {{{1}}} }} | {{NAMESPACE: Taiss{{{1}}} }} + | Taiss:{{{1}}} <!-- no leading colon, eg "Foo" --> + | {{PAGENAME: {{{1}}} }} <!-- leading colon, eg ":Foo", so we want the article --> + }} +}}<noinclude> +{{documentation}} + +</noinclude> + 90bpa44e1v0ngdhqyrngfszy3qckgai + + + + Kategoreja:Apleiczineiba + 14 + 1208 + + 29851 + 27562 + 2013-04-17T14:57:49Z + + Bluemask + 1889 + + wikidata [[d:Q11258808]] + wikitext + text/x-wiki + {{plotuok}} + +[[Kategoreja:Zemiszineibys‎]] +[[Kategoreja:Biologeja]] +[[Kategoreja:Vydszineibys]] + gfu1zh4mzls2utmexipm34g67ubwpc7 + + + + Raudive + 0 + 1209 + + 28554 + 27999 + 2013-03-08T00:01:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 83 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25348]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Gråand han.jpg|thumb|250px|Raudive]] +'''Raudive''' ({{Vol-la|Anas platyrhynchos}}) irā [[peiļu saime|peiļu saimis]] (''Anatidae'') zūsiņu? aiļa (Anseriformes) [[Putni|putnys]], kurs pīdar [[raudivu giņts|raudivu giņtei]] (Anas). + +== Izavierīņs == +* Auguma garums: 50—65 cm +* Spuornu: 81—98 cm +* Svors: 900—1200 g + +== Nūruodis i olūti == +{{Nūruodis}} + +== Teiklavītys == +{{commons|Anas platyrhynchos|Raudive}} +* [http://www.latvijasdaba.lv/putni/anas-platyrhynchos-l/ Raudive (Anas platyrhynchos)] +* [http://www.allforhunt.com/lv/animal/anas-platyrhynchos Raudive] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + mkzoi5gulru8a6d48re5g5t60j2vbi7 + + + + MediaWiki:Common.js + 8 + 1210 + + 30416 + 30415 + 2014-08-27T20:17:14Z + + Bene* + 1869 + + javascript + text/javascript + importMW = function (name) { importScript('MediaWiki:'+name+'.js') } + +//Messages +var listFA = { + fa:'Itys rakstīņs irā vierteigs', + fl:'Itys saroksts ci portals irā vierteigs', + ga:'Itys rakstīņs irā lobs'} +var textFA = ' cytā volūdys izdolā' + +var zeroSectionTip = 'Pataiseit īvodu' + +var NavigationBarHide = '[nūglobuot]' +var NavigationBarShow = '[ruodeit]' +var NavigationBarShowDefault = 2 + +if( /^en$/.test( mw.config.get('wgUserLanguage')) ) importMW('Common-' + mw.config.get('wgUserLanguage')) + + + +function LinkFA(){ + var ll, s + $('#p-lang li').each( function(i, iw){ + ll = iw.className.split(' ')[0] + '-' + for( var s in listFA ) + if( document.getElementById(ll + s) && !$( iw ).hasClass( 'badge-featuredarticle' ) && !$( iw ).hasClass( 'badge-goodarticle' ) && !$( iw ).hasClass( 'badge-featuredlist' ) ) + $( iw ) + .addClass( s.toUpperCase() ) + .attr( 'title', listFA[s] + textFA ) + }) +} + + +function editZeroSection(){ + if( !mw.config.get('wgArticleId') ) return + mw.util.$content.find('h2') + .children('span.editsection').first() + .clone().prependTo(mw.util.$content) + .find('a') + .attr('title', zeroSectionTip) + .attr('href', mw.config.get('wgScript') + '?title='+encodeURIComponent(mw.config.get('wgPageName')) + '&action=edit&section=0' ) +} + + +//Collapsiblе: [[:en:Wikipedia:NavFrame]] + +function collapsibleTables(){ + var Table, HRow, HCell, btn, a, tblIdx = 0, colTables = [] + var allTables = document.getElementsByTagName('table') + for (var i=0; Table = allTables[i]; i++){ + if (!$(Table).hasClass( 'collapsible')) continue + if (!(HRow=Table.rows[0])) continue + if (!(HCell=HRow.getElementsByTagName('th')[0])) continue + Table.id = 'collapsibleTable' + tblIdx + btn = document.createElement('span') + btn.style.cssText = 'float:right; font-weight:normal; font-size:smaller' + a = document.createElement('a') + a.id = 'collapseButton' + tblIdx + a.href = 'javascript:collapseTable(' + tblIdx + ');' + a.style.color = HCell.style.color + a.appendChild(document.createTextNode(NavigationBarHide)) + btn.appendChild(a) + HCell.insertBefore(btn, HCell.childNodes[0]) + colTables[tblIdx++] = Table + } + for (var i=0; i < tblIdx; i++) + if ((tblIdx > NavigationBarShowDefault && $(colTables[i]).hasClass( 'autocollapse')) || $(colTables[i]).hasClass( 'collapsed')) + collapseTable(i) +} + +function collapseTable (idx){ + var Table = document.getElementById('collapsibleTable' + idx) + var btn = document.getElementById('collapseButton' + idx) + if (!Table || !btn) return false + var Rows = Table.rows + var isShown = (btn.firstChild.data == NavigationBarHide) + btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide + var disp = isShown ? 'none' : Rows[0].style.display + for (var i=1; i < Rows.length; i++) + Rows[i].style.display = disp +} + +function collapsibleDivs(){ + var navIdx = 0, colNavs = [], i, NavFrame + var divs = document.getElementById('content').getElementsByTagName('div') + for (i=0; NavFrame = divs[i]; i++) { + if (!$(NavFrame).hasClass( 'NavFrame')) continue + NavFrame.id = 'NavFrame' + navIdx + var a = document.createElement('a') + a.className = 'NavToggle' + a.id = 'NavToggle' + navIdx + a.href = 'javascript:collapseDiv(' + navIdx + ');' + a.appendChild(document.createTextNode(NavigationBarHide)) + for (var j=0; j < NavFrame.childNodes.length; j++) + if ($(NavFrame.childNodes[j]).hasClass( 'NavHead')) + NavFrame.childNodes[j].appendChild(a) + colNavs[navIdx++] = NavFrame + } + for (i=0; i < navIdx; i++) + if ((navIdx > NavigationBarShowDefault && !$(colNavs[i]).hasClass( 'expanded')) || $(colNavs[i]).hasClass( 'collapsed')) + collapseDiv(i) +} + +function collapseDiv(idx) { + var div = document.getElementById('NavFrame' + idx) + var btn = document.getElementById('NavToggle' + idx) + if (!div || !btn) return false + var isShown = (btn.firstChild.data == NavigationBarHide) + btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide + var disp = isShown ? 'none' : 'block' + for (var child = div.firstChild; child != null; child = child.nextSibling) + if ($(child).hasClass( 'NavPic') || $(child).hasClass( 'NavContent')) + child.style.display = disp +} + + + +//Execution + +if (mw.config.get('wgCanonicalNamespace') == 'Special'){ + + if (/^(Uplo|Sear|Stat|Spec|Abus|Prefe|Move)/i.test(mw.config.get('wgCanonicalSpecialPageName'))) + importMW(mw.config.get('wgCanonicalSpecialPageName')) + +} else switch (mw.config.get('wgAction')){ + + case 'history': importMW('History'); break + + case 'delete': importMW('Deletepage'); break + + case 'edit': case 'submit': importMW('Editpage') //and continue with the default: view, purge + + default: + + $(document).ready(collapsibleDivs) + $(document).ready(collapsibleTables) + mw.loader.load('//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400') + + if (navigator.platform.indexOf('Win') != -1) + mw.loader.load('//en.wikipedia.org/w/index.php?title=MediaWiki:Common.css/WinFixes.css&action=raw&ctype=text/css') + + switch( mw.config.get('wgNamespaceNumber') ){ + case 0: case 100: + $(LinkFA) + importMW('Osm') + importMW('Collapserefs') + if( wgArticleId==4401 ) importMW('Mainpage') + break + case 6: + importMW('Filepage') + break + } + +} + + +if (mw.config.get('wgUserGroups')){ + for (var i=0; i<mw.config.get('wgUserGroups').length; i++) switch (mw.config.get('wgUserGroups')[i]){ + case 'sysop': importMW('Sysop'); break + } + if (mw.config.get('wgNamespaceNumber')==2 && wgTitle.indexOf(mw.config.get('wgUserName'))==0 && mw.config.get('wgArticleId')==0 && /\/skin\.(js|css)$/.test(mw.config.get('wgTitle'))) + window.location.href = window.location.href.replace(/skin\.(css|js)$/, skin+'.$1') +} + + +// Viestejumi ap klaidym ([[:ru:ВП:СО]]) +if (mw.config.get('wgArticleId')!=639373 && mw.config.get('wgArticleId')!=932117 && mw.config.get('wgArticleId')!=1297302 && mw.config.get('wgArticleId')!=25133866) + importMW('Wikibugs') + + +// iwiki sorting + if (!mw.config.get('wgUserName') + || (mw.config.get('wgUserName') + && (((typeof mw.config.get('wgLangPrefs') == 'undefined') ? false : true) + || ((typeof mw.config.get('wgAddLangHints') == 'undefined') ? false : mw.config.get('wgAddLangHints')) + || ((typeof mw.config.get('wgUseUserLanguage') == 'undefined') ? false : mw.config.get('wgUseUserLanguage'))))) + importMW('Interwiki-links'); + + +//extra scripts + +var withJS = document.URL.match(/[&?]withjs=((mediawiki:)?([^&#]+))/i) +if (withJS) importScript('MediaWiki:'+withJS[3]) + +var execJS = document.getElementById('executeJS') +if( execJS ) + $.each( execJS.className.split(' '), function(i, sc){ + sc = $.trim( sc.replace(/[^\w ]/g,'') ) + if( sc ) importMW('Script/' + sc) + }) + +mw.loader.using('mediawiki.util',function () { + if (!mw.config.get('wgUserName')) mw.util.addCSS('#mw-fr-revisiontag {display:none}'); + editZeroSection; +}) + raqf1snk30vo83stxuulo7r34wan8c8 + + + + Kategoreja:Mīsti Latgolā + 14 + 1211 + + 15839 + 12415 + 2011-08-10T13:23:42Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + :'''[[Mīsts|Mīsti]], kuri pylnai ci pa daļai stuov [[Latgola|Latgolys]] teritorejā.''' +{{catmain}} + +[[Kategoreja:Latgola]] + 4kdmsaygcv4i73dw675p4zi753ebcif + + + + Latvejis administrativais teritoriskais dalejums + 0 + 1213 + + 29225 + 28555 + 2013-03-11T10:53:24Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q750277]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Latvijas novadi (krāsās) LTG.png|thumb|600px|Latvejis administrativais teritoriskais dalejums]] +Nu 2011 gods jaunagods mieneša 3 dīnys [[Latveja|Latvejis Republika]] irā padaleita 110 nūvodūs i 9 republikys zeimeibys mīstūs. + +=== Republikys mīsti === +{| class="wikitable" +! Nr. p. k. +! Mīsta pasauka +|- +| 1. +| [[Daugpiļs]] +|- +| 2. +| [[Jākubmīsts]] +|- +| 3. +| [[Jiurmale]] +|- +| 4. +| [[Līpuoja]] +|- +| 5. +| [[Meitova]] +|- +| 6. +| [[Reiga]] +|- +| 7. +| [[Rēzne]] +|- +| 8. +| [[Volmīra]] +|- +| 9. +| [[Ventspiļs]] +|- +|} + +=== Nūvodi i teritoriskuo dalejuma padalīni === +==== A ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=1| 1 +|rowspan=1| [[Ādažu nūvods]] +| [[Ādažu pogosts]] +|- +|align=center rowspan=4| 2 +|rowspan=4| [[Aglyunys nūvods]] +| [[Aglyunys pogosts]] +|- +| [[Gruoveru pogosts]] +|- +| [[Kastulīnis pogosts]] +|- +| [[Škeļtiņu pogosts]] +|- +|align=center rowspan=2| 3 +|rowspan=2| [[Aizkraukļa nūvods]] +| [[Aizkrauklis|Aizkraukļa mīsts]] +|- +| [[Aizkraukļa pogosts]] +|- +|align=center rowspan=6| 4 +|rowspan=6| [[Aizputis nūvods]] +| [[Aizpute|Aizputis mīsts]] +|- +| [[Aizputis pogosts]] +|- +| [[Ceirovys pogosts]] +|- +| [[Kaļvinis pogosts]] +|- +| [[Kazdangys pogosts]] +|- +| [[Lažys pogosts]] +|- +|align=center rowspan=4| 5 +|rowspan=4| [[Akneišys nūvods]] +| [[Akneiša|Akneišys mīsts]] +|- +| [[Akneišys pogosts]] +|- +| [[Gārsinis pogosts]] +|- +| [[Osoris pogosts]] +|- +|align=center rowspan=6| 6 +|rowspan=6| [[Aluojis nūvods]] +| [[Aluoja|Aluojis mīsts]] +|- +| [[Aluojis pogosts]] +|- +| [[Braslovys pogosts]] +|- +| [[Breivzemnīku pogosts]] +|- +| [[Staicele|Staicelis mīsts]] +|- +| [[Staicelis pogosts]] +|- +|align=center rowspan=1| 7 +|rowspan=1| [[Alšvangys nūvods]] +| [[Alšvangys pogosts]] +|- +|align=center rowspan=7| 8 +|rowspan=7| [[Aucis nūvods]] +| [[Auce|Aucis mīsts]] +|- +| [[Bienis pogosts]] +|- +| [[Īlis pogosts]] +|- +| [[Lelaucis pogosts]] +|- +| [[Ukru pogosts]] +|- +| [[Vacaucis pogosts]] +|- +| [[Vīteņu pogosts]] +|} + +==== B ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=2| 9 +|rowspan=2| [[Babeitis nūvods]] +| [[Babeitis pogosts]] +|- +| [[Solys pogosts (Babeitis nūvods)|Solys pogosts]] +|- +|align=center rowspan=1| 10 +|rowspan=1| [[Baļtinovys nūvods]] +| [[Baļtinovys pogosts]] +|- +|align=center rowspan=9| 11 +|rowspan=9| [[Bauskis nūvods]] +| [[Bauske|Bauskis mīsts]] +|- +| [[Brunovys pogosts]] +|- +| [[Caraukstis pogosts]] +|- +| [[Codis pogosts]] +|- +| [[Daveņu pogosts]] +|- +| [[Gaileišu pogosts]] +|- +| [[Īsleiča pogosts]] +|- +| [[Mežūtnis pogosts]] +|- +| [[Vacsaulis pogosts]] +|- +|align=center rowspan=3| 12 +|rowspan=3| [[Beverinys nūvods]] +| [[Brenguļu pogosts]] +|- +| [[Kauguru pogosts]] +|- +| [[Trykuotys pogosts]] +|- +|align=center rowspan=2| 13 +|rowspan=2| [[Boldūnis nūvods]] +| [[Boldūne|Boldūnis mīsts]] +|- +| [[Boldūnis pogosts]] +|- +|align=center rowspan=11| 14 +|rowspan=11| [[Bolvu nūvods]] +| [[Bolvu pogosts]] +|- +| [[Bolvi|Bolvu mīsts]] +|- +| [[Bārzkolna pogosts]] +|- +| [[Bieržu pogosts]] +|- +| [[Brīžucīma pogosts]] +|- +| [[Kryšanu pogosts]] +|- +| [[Kubulu pogosts]] +|- +| [[Lozdulejis pogosts]] +|- +| [[Tiļžys pogosts]] +|- +| [[Vactiļžys pogosts]] +|- +| [[Veiksnys pogosts]] +|- +|align=center rowspan=5| 15 +|rowspan=5| [[Bruocānu nūvods]] +| [[Bruocāni|Bruocānu mīsts]] +|- +| [[Blīdinis pogosts]] +|- +| [[Cīceris pogosts]] +|- +| [[Gaiku pogosts]] +|- +| [[Remtis pogosts]] +|- +|align=center rowspan=6| 16 +|rowspan=6| [[Burtinīka nūvods]] +| [[Burtinīka pogosts]] +|- +| [[Ievilis pogosts]] +|- +| [[Mateišu pogosts]] +|- +| [[Rancānu pogosts]] +|- +| [[Volmīrys pogosts]] +|- +| [[Vacatis pogosts]] +|- +|} + +==== C ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=1| 17 +|rowspan=1| [[Carnikovys nūvods]] +| [[Carnikovys pogosts]] +|- +|align=center rowspan=2| 18 +|rowspan=2| [[Casvainis nūvods]] +| [[Casvaine|Casvainis mīsts]] +|- +| [[Casvainis pogosts]] +|- +|align=center rowspan=2| 19 +|rowspan=2| [[Cāsu nūvods]] +| [[Cāsi|Cāsu mīsts]] +|- +| [[Vaivys pogosts]] +|- +|align=center rowspan=5| 20 +|rowspan=5| [[Cyblys nūvods]] +| [[Blontu pogosts]] +|- +| [[Cyblys pogosts]] +|- +| [[Leidumnīku pogosts]] +|- +| [[Pušmycovys pogosts]] +|- +| [[Zviergzdiņa pogosts]] +|- +|} + +==== D ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=11| 21 +|rowspan=11| [[Dagdys nūvods]] +| [[Aņdzeļu pogosts]] +|- +| [[Bukmuižys pogosts]] +|- +| [[Dagda|Dagdys mīsts]] +|- +| [[Dagdys pogosts]] +|- +| [[Kepovys pogosts]] +|- +| [[Konstaņtinovys pogosts]] +|- +| [[Ondrupinis pogosts]] +|- +| [[Osyuna pogosts]] +|- +| [[Pareču (Bierzeņu) pogosts]] +|- +| [[Svareņu pogosts]] +|- +| [[Škaunys pogosts]] +|- +|align=center rowspan=10| 22 +|rowspan=10| [[Daugpiļs nūvods]] +| [[Bikernīku pogosts]] +|- +| [[Dubnys pogosts]] +|- +| [[Kolupa pogosts]] +|- +| [[Leiksnys pogosts]] +|- +| [[Malinovkys pogosts]] +|- +| [[Naujinis pogosts]] +|- +| [[Neicgaļa pogosts]] +|- +| [[Ombumuižys pogosts]] +|- +| [[Vabalis pogosts]] +|- +| [[Vyšku pogosts]] +|- +|align=center rowspan=2| 23 +|rowspan=2| [[Dundagys nūvods]] +| [[Dundagys pogosts]] +|- +| [[Kuolkys pogosts]] +|- +|align=center rowspan=5| 24 +|rowspan=5| [[Durbis nūvods]] +| [[Dunolkys pogosts]] +|- +| [[Durbe|Durbis mīsts]] +|- +| [[Durbis pogosts]] +|- +| [[Tadaiku pogosts]] +|- +| [[Vacpiļs pogosts]] +|- +|align=center rowspan=11| 25 +|rowspan=11| [[Dūbelis nūvods]] +| [[Aninīku pogosts]] +|- +| [[Auru pogosts]] +|- +| [[Bierzis pogosts]] +|- +| [[Bykstu pogosts]] +|- +| [[Dūbele|Dūbelis mīsts]] +|- +| [[Dūbelis pogosts]] +|- +| [[Jaunbierzis pogosts]] +|- +| [[Krymunu pogosts]] +|- +| [[Naudeitis pogosts]] +|- +| [[Penkulis pogosts]] +|- +| [[Zebrinis pogosts]] +|- +|} + +==== E ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=3| 26 +|rowspan=3| [[Engurys nūvods]] +| [[Engurys pogosts]] +|- +| [[Lopmežcīma pogosts]] +|- +| [[Smuordis pogosts]] +|- +|align=center rowspan=3| 27 +|rowspan=3| [[Ereļu nūvods]] +| [[Ereļu pogosts]] +|- +| [[Jumurdys pogosts]] +|- +| [[Sausniejis pogosts]] +|- +|} + +==== G ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=1| 27 +|rowspan=1| [[Garkaļnis nūvods]] +| [[Garkaļnis pogosts]] +|- +|align=center rowspan=5| 28 +|rowspan=5| [[Gruobina nūvods]] +| [[Bartys pogosts]] +|- +| [[Gaveizis pogosts]] +|- +| [[Gruobins|Gruobina mīsts]] +|- +| [[Gruobina pogosts]] +|- +| [[Medzis pogosts]] +|- +|align=center rowspan=14| 29 +|rowspan=14| [[Guļbinis nūvods]] +| [[Beļovys pogosts]] +|- +| [[Daukstu pogosts]] +|- +| [[Druvīnys pogosts]] +|- +| [[Galgovskys pogosts]] +|- +| [[Guļbine|Guļbinis mīsts]] +|- +| [[Jaunguļbinis pogosts]] +|- +| [[Lajis pogosts]] +|- +| [[Litinis pogosts]] +|- +| [[Lyzuma pogosts]] +|- +| [[Leigū pogosts]] +|- +| [[Rankys pogosts]] +|- +| [[Stuomerinis pogosts]] +|- +| [[Strodu pogosts]] +|- +| [[Tirzys pogosts]] +|- +|} + +==== I ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=1| 30 +|rowspan=1| [[Īcovys nūvods]] +| [[Īcovys pogosts]] +|- +|align=center rowspan=2| 31 +|rowspan=2| [[Ikškilys nūvods]] +| [[Ikškila|Ikškilys mīsts]] +|- +| [[Tīnužu pogosts]] +|- +|align=center rowspan=2| 32 +|rowspan=2| [[Iņčukolna nūvods]] +| [[Iņčukolna pogosts]] +|- +| [[Vangaži|Vangažu mīsts]] +|- +|align=center rowspan=8| 33 +|rowspan=8| [[Īlyukstis nūvods]] +| [[Bebrinis pogosts]] +|- +| [[Dvīta pogosts]] +|- +| [[Eglainis pogosts]] +|- +| [[Īlyukste|Īlyukstis mīsts]] +|- +| [[Piļskolna pogosts]] +|- +| [[Prūdis pogosts]] +|- +| [[Subata|Subatys mīsts]] +|- +| [[Šederis pogosts]] +|- +|} + +==== J ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=7| 34 +|rowspan=7| [[Jaunmeitovys nūvods]] +| [[Daudzesis pogosts]] +|- +| [[Jaunmeitova|Jaunmeitovys mīsts]] +|- +| [[Jaunmeitovys pogosts]] +|- +| [[Secis pogosts]] +|- +| [[Sierinis pogosts]] +|- +| [[Staburoga pogosts]] +|- +| [[Sunākstys pogosts]] +|- +|align=center rowspan=2| 35 +|rowspan=2| [[Jaunpībolgys nūvods]] +| [[Jaunpībolgys pogosts]] +|- +| [[Zūsānu pogosts]] +|- +|align=center rowspan=2| 36 +|rowspan=2| [[Jaunpiļs nūvods]] +| [[Jaunpiļs pogosts]] +|- +| [[Vīsatu pogosts]] +|- +|align=center rowspan=7| 37 +|rowspan=7| [[Jākubmīsta nūvods]] +| [[Dignuojis pogosts]] +|- +| [[Dunovys pogosts]] +|- +| [[Kolna pogosts]] +|- +| [[Leimaņu pogosts]] +|- +| [[Uobeļu pogosts]] +|- +| [[Rubina pogosts]] +|- +| [[Zosa pogosts]] +|- +|} + +==== K ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=7| 38 +|rowspan=7| [[Kandovys nūvods]] +| [[Cieris pogosts]] +|- +| [[Kandova|Kandovys mīsts]] +|- +| [[Kandovys pogosts]] +|- +| [[Motkulis pogosts]] +|- +| [[Vānis pogosts]] +|- +| [[Zaņtis pogosts]] +|- +| [[Zemeitis pogosts]] +|- +|align=center rowspan=4| 39 +|rowspan=4| [[Keguma nūvods]] +| [[Birzgaļa pogosts]] +|- +| [[Kegums|Keguma mīsts]] +|- +| [[Rembatys pogosts]] +|- +| [[Tuoma pogosts]] +|- +|align=center rowspan=3| 40 +|rowspan=3| [[Kekovys nūvods]] +| [[Bolūdi|Bolūdu mīsts]] +|- +| [[Daugmalis pogosts]] +|- +| [[Kekovys pogosts]] +|- +|align=center rowspan=2| 41 +|rowspan=2| [[Krymuldys nūvods]] +| [[Krymuldys pogosts]] +|- +| [[Lādurgys pogosts]] +|- +|align=center rowspan=6| 42 +|rowspan=6| [[Krystapiļs nūvods]] +| [[Atašinis pogosts]] +|- +| [[Krystapiļs pogosts]] +|- +| [[Kūku pogosts]] +|- +| [[Mežuoris pogosts]] +|- +| [[Varīšu pogosts]] +|- +| [[Veipa pogosts]] +|- +|align=center rowspan=12| 43 +|rowspan=12| [[Kruoslovys nūvods]] +| [[Aulejis pogosts]] +|- +| [[Indreicys pogosts]] +|- +| [[Iudreišu pogosts]] +|- +| [[Izvolta pogosts]] +|- +| [[Kaļnīšu pogosts]] +|- +| [[Kapļovys pogosts]] +|- +| [[Kruoslovys pogosts]] +|- +| [[Kruoslova|Kruoslovys mīsts]] +|- +| [[Kumbuļa pogosts]] +|- +| [[Pīdrujis pogosts]] +|- +| [[Pūstinis pogosts]] +|- +| [[Skaista pogosts]] +|- +|align=center rowspan=14| 44 +|rowspan=14| [[Kuļdeigys nūvods]] +| [[Eduolis pogosts]] +|- +| [[Gudinīku pogosts]] +|- +| [[Īvaņdis pogosts]] +|- +| [[Kabilis pogosts]] +|- +| [[Kuļdeiga|Kuļdeigys mīsts]] +|- +| [[Kūrmalis pogosts]] +|- +| [[Laidu pogosts]] +|- +| [[Paduris pogosts]] +|- +| [[Peļču pogosts]] +|- +| [[Rendys pogosts]] +|- +| [[Rumbys pogosts]] +|- +| [[Sniepelis pogosts]] +|- +| [[Turlovys pogosts]] +|- +| [[Vārmys pogosts]] +|- +|align=center rowspan=6| 45 +|rowspan=6| [[Kuorsovys nūvods]] +| [[Golyšovys pogosts]] +|- +| [[Kuorsova|Kuorsovys mīsts]] +|- +| [[Malnovys pogosts]] +|- +| [[Mežavydu pogosts]] +|- +| [[Mērdzinis pogosts]] +|- +| [[Saļņovys pogosts]] +|- +|align=center rowspan=5| 46 +|rowspan=5| [[Kūkmuižys nūvods]] +| [[Bārzainis pogosts]] +|- +| [[Dikļu pogosts]] +|- +| [[Kūkmuižys pogosts]] +|- +| [[Vaidovys pogosts]] +|- +| [[Zylaiskolna pogosts]] +|- +|align=center rowspan=3| 47 +|rowspan=3| [[Kūknuoja nūvods]] +| [[Babru pogosts]] +|- +| [[Iršu pogosts]] +|- +| [[Kūknuoja pogosts]] +|- +|} + +==== L ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=4| 48 +|rowspan=4| [[Lelvuorda nūvods]] +| [[Jumprovys pogosts]] +|- +| [[Lādmanis pogosts]] +|- +| [[Lelvuords|Lelvuorda mīsts]] +|- +| [[Lelvuorda pogosts]] +|- +|align=center rowspan=2| 49 +|rowspan=2| [[Leigatnys nūvods]] +| [[Leigatna|Leigatnys mīsts]] +|- +| [[Leigatnys pogosts]] +|- +|align=center rowspan=8| 50 +|rowspan=8| [[Limbažu nūvods]] +| [[Katvaru pogosts]] +|- +| [[Limbaži|Limbažu mīsts]] +|- +| [[Limbažu pogosts]] +|- +| [[Pālis pogosts]] +|- +| [[Skultys pogosts]] +|- +| [[Umurgys pogosts]] +|- +| [[Vydryžu pogosts]] +|- +| [[Vilkinis pogosts]] +|- +|align=center rowspan=6| 51 +|rowspan=6| [[Leivuona nūvods]] +| [[Jersikys pogosts]] +|- +| [[Leivuons|Leivuona]] mīsts +|- +| [[Rudzātu pogosts]] +|- +| [[Rūžupis pogosts]] +|- +| [[Sutru pogosts]] +|- +| [[Turku pogosts]] +|- +|align=center rowspan=2| 52 +|rowspan=2| [[Lubuona nūvods]] +| [[Indrānu pogosts]] +|- +| [[Lubuons (mīsts)|Lubuona mīsts]] +|- +|align=center rowspan=10| 53 +|rowspan=10| [[Ludzys nūvods|Ludzys novads]] +| [[Brigu pogosts]] +|- +| [[Cyrmys pogosts]] +|- +| [[Istrys pogosts]] +|- +| [[Ludza|Ludzys]] mīsts +|- +| [[Nierzys pogosts]] +|- +| [[Ņukšu pogosts]] +|- +| [[Pyldys pogosts]] +|- +| [[Purynu pogosts]] +|- +| [[Rundānu pogosts]] +|- +| [[Vysnovys pogosts]] +|- +|} + +==== M ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=1| 54 +|rowspan=1| [[Mārsroga nūvods]] +| [[Mārsroga pogosts]] +|- +|align=center rowspan=12| 55 +|rowspan=12| [[Meitovys nūvods]] +| [[Elejis pogosts]] +|- +| [[Glūdys pogosts]] +|- +| [[Jaunsvyrlaukys pogosts]] +|- +| [[Leivbieržys pogosts]] +|- +| [[Lelplotūnis pogosts]] +|- +| [[Plotūnis pogosts]] +|- +| [[Sesovys pogosts]] +|- +| [[Svietis pogosts]] +|- +| [[Viļcis pogosts]] +|- +| [[Vyrcovys pogosts]] +|- +| [[Volgundys pogosts]] +|- +| [[Zalinīku pogosts]] +|- +|align=center rowspan=15| 56 +|rowspan=15| [[Modyunis nūvods]] +| [[Bierzaunis pogosts]] +|- +| [[Borkovys pogosts]] +|- +| [[Dzeļžovys pogosts]] +|- +| [[Kolsnovys pogosts]] +|- +| [[Līzeris pogosts]] +|- +| [[Lozdūnis pogosts]] +|- +| [[Ļaudūnis pogosts]] +|- +| [[Modyune|Modyunis mīsts]] +|- +| [[Muorcīnis pogosts]] +|- +| [[Mātrainis pogosts]] +|- +| [[Orūnys pogosts]] +|- +| [[Ūšupis pogosts]] +|- +| [[Praulainis pogosts]] +|- +| [[Sorkonu pogosts]] +|- +| [[Vestīnis pogosts]] +|- +|align=center rowspan=5| 57 +|rowspan=5| [[Mozsalacys nūvods]] +| [[Mozsalaca|Mozsalacys mīsts]] +|- +| [[Mozsalacys pogosts]] +|- +| [[Romotys pogosts]] +|- +| [[Sieļu pogosts]] +|- +| [[Skaņkolna pogosts]] +|- +|align=center rowspan=1| 58 +|rowspan=1| [[Muolpiļs nūvods]] +| [[Muolpiļs pogosts]] +|- +|align=center rowspan=1| 59 +|rowspan=1| [[Muorupis nūvods]] +| [[Muorupis pogosts]] +|- +|} + +==== N ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=4| 60 +|rowspan=4| [[Naratys nūvods]] +| [[Mozzaļvis pogosts]] +|- +| [[Naratys pogosts]] +|- +| [[Piļkaļnis pogosts]] +|- +| [[Zaļvis pogosts]] +|- +|align=center rowspan=2| 61 +|rowspan=2| [[Naukšānu nūvods]] +| [[Koņu pogosts]] +|- +| [[Naukšānu pogosts]] +|- +|align=center rowspan=2| 62 +|rowspan=2| [[Neicys nūvods]] +| [[Neicys pogosts]] +|- +| [[Uotaņku pogosts]] +|- +|} + +==== O ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=16| 63 +|rowspan=16| [[Olyuksnys nūvods]] +| [[Alsviķa pogosts]] +|- +| [[Annys pogosts]] +|- +| [[Baja pogosts]] (Jaunolyuksnys) +|- +| [[Iļzenis pogosts]] +|- +| [[Jaunannys pogosts]] +|- +| [[Jaunlaicinis pogosts]] +|- +| [[Kolnacempu pogosts]] +|- +| [[Līpnys pogosts]] +|- +| [[Malīnis pogosts]] +|- +| [[Muolupis pogosts]] +|- +| [[Muorkaļnis pogosts]] +|- +| [[Olyuksna|Olyuksnys mīsts]] +|- +| [[Pededzis pogosts]] +|- +| [[Vaclaicinis pogosts]] +|- +| [[Zeļteņa pogosts]] +|- +| [[Zīmara pogosts]] +|- +|align=center rowspan=5| 64 +|rowspan=5| [[Omotys nūvods]] +| [[Drabešu pogosts]] +|- +| [[Nītaurys pogosts]] +|- +| [[Omotys pogosts]] +|- +| [[Skujinis pogosts]] +|- +| [[Zaubis pogosts]] +|- +|align=center rowspan=5| 65 +|rowspan=5| [[Opys nūvods]] +| [[Gaujīnys pogosts]] +|- +| [[Opa|Opys mīsts]] +|- +| [[Opys pogosts]] +|- +| [[Trapinis pogosts]] +|- +| [[Vyrešu pogosts]] +|- +|} + +==== P ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=3| 66 +|rowspan=3| [[Pavilūstys nūvods]] +| [[Pavilūsta|Pavilūstys mīsts]] +|- +| [[Sokys pogosts]] +|- +| [[Viergalis pogosts]] +|- +|align=center rowspan=4| 67 +|rowspan=4| [[Pļaveņu nūvods]] +| [[Aivīkstis pogosts]] +|- +| [[Klintainis pogosts]] +|- +| [[Pļavenis|Pļaveņu mīsts]] +|- +| [[Vītolvys pogosts]] +|- +|align=center rowspan=5| 68 +|rowspan=5| [[Preiļu nūvods]] +| [[Juosmuižys pogosts]] +|- +| [[Pelieča pogosts]] +|- +| [[Preili|Preiļu]] mīsts +|- +| [[Preiļu pogosts]] +|- +| [[Suovānu pogosts]] +|- +|align=center rowspan=6| 69 +|rowspan=6| [[Prīkulis nūvods]] +| [[Bunkys pogosts]] +|- +| [[Gramzdys pogosts]] +|- +| [[Kalietu pogosts]] +|- +| [[Prīkule|Prīkulis mīsts]] +|- +| [[Prīkulis pogosts]] +|- +| [[Vyrgys pogosts]] +|- +|align=center rowspan=4| 70 +|rowspan=4| [[Prīkuļu nūvods]] +| [[Līpys pogosts]] +|- +| [[Mārsnānu pogosts]] +|- +| [[Prīkuļu pogosts]] +|- +| [[Vasalovys pogosts]] +|- +|align=center rowspan=3| 71 +|rowspan=3| [[Puorgaujis nūvods]] +| [[Raiskuma pogosts]] +|- +| [[Staļbis pogosts]] +|- +| [[Straupis pogosts]] +|- +|} + +==== R ==== +{| class="wikitable" +! N. p. k. +! Nūvods +! Nūvoda mīsti i pogosti +|- +|align=center rowspan=2| 72 +|rowspan=2| [[Raunys nūvods]] +| [[Drustu pogosts]] +|- +| [[Raunis pogosts]] +|- +|align=center rowspan=25| 73 +|rowspan=25| [[Rēznis nūvods]] +| [[Audreņu pogosts]] +|- +| [[Bieržgaļa pogosts]] +|- +| [[Bykovys pogosts|Bykovys (Gaigolovys) pogosts]] +|- +| [[Drycānu pogosts]] +|- +| [[Greiškānu pogosts]] +|- +| [[Iļžukolna pogosts]] +|- +| [[Kaņtinīku pogosts]] +|- +| [[Kaunotys pogosts]] +|- +| [[Leņdžu pogosts]] +|- +| [[Dlužņovys pogosts|Dlužņovys (Lyuznovys) pogosts]] +|- +| [[Malnuo Dyužgola pogosts|Malnuo Dyužgola (Čornajis) pogosts]] +|- +| [[Maltys pogosts]] +|- +| [[Muokuļkolna pogosts]] +|- +| [[Nagļu pogosts]] +|- +| [[Nautrānu pogosts]] +|- +| [[Puša pogosts]] +|- +| [[Rykovys pogosts]] +|- +| [[Sakstygola pogosts]] +|- +| [[Sylmolys pogosts]] +|- +| [[Stolerovys pogosts]] +|- +| [[Strūžānu pogosts]] +|- +| [[Ūzulainis pogosts]] +|- +| [[Ūzulmuižys pogosts]] +|- +| [[Veremu pogosts]] +|- +| [[Vīmyna pogosts]] +|- +|align=center rowspan=6| 74 +|rowspan=6| [[Ribinišku nūvods]] +| [[Ribinišku pogosts]] +|- +| [[Rušyuna pogosts]] +|- +| [[Solujuoņu pogosts]] +|- +| [[Seiļukolna pogosts]] +|- +| [[Stabuļnīku pogosts]] +|- +| [[Vydsmuižys pogosts]] +|- +|align=center rowspan=1| 75 +|rowspan=1| [[Roudažu nūvods]] +| [[Roudažu pogosts]] +|- +|align=center rowspan=2| 76 +|rowspan=2| [[Rucovys nūvods]] +| [[Dunykys pogosts]] +|- +| [[Rucovys pogosts]] +|- +|align=center rowspan=2| 77 +|rowspan=2| [[Ruguoju nūvods]] +| [[Lozdukolna pogosts]] +|- +| [[Ruguoju pogosts]] +|- +|align=center rowspan=5| 78 +|rowspan=5| [[Rūjīnys nūvods]] +| [[Ipika pogosts]] +|- +| [[Jeru pogosts]] +|- +| [[Lūdis pogosts]] +|- +| [[Rūjīna|Rūjīnys mīsts]] +|- +| [[Vylpulkys pogosts]] +|- +|align=center rowspan=3| 79 +|rowspan=3| [[Rundalis nūvods]] +| [[Rundalis pogosts]] +|- +| [[Švitinis pogosts]] +|- +| [[Vīstura pogosts]] +|- +|align=center rowspan=1| 80 +|rowspan=1| [[Ruojis nūvods]] +| [[Ruojis pogosts]] +|- +|} + +== Verīs taipoš == +* [[Latgolys administrativais dalejums]] + +[[Kategoreja:Latvejis administrativais dalejums| ]] + eeb4csu1c4dti3z4c5amfyzyy6evwit + + + + Lynx canadensis + 0 + 1217 + + + 12442 + 2011-03-28T18:21:43Z + + Helloanddie + 104 + + "[[Lynx canadensis]]" puorsauču par "[[Kanadys mežakačs]]" + wikitext + text/x-wiki + #REDIRECT [[Kanadys mežakačs]] + bmb3ffhg4quyiysa816sbxb1npauzrb + + + + Taiss:Disambig + 10 + 1218 + + + 12449 + 2011-03-28T18:25:13Z + + Dark Eagle + 34 + + "[[Taiss:Disambig]]" puorsauču par "[[Taiss:Zeimeibu škiršona]]" + wikitext + text/x-wiki + #REDIRECT [[Taiss:Zeimeibu škiršona]] + 7efvuxm5mwi4600srx52cqkpc3wbkd7 + + + + Taiss:User nl-4 + 10 + 1223 + + 29958 + 29757 + 2013-08-01T07:07:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q10947644]] + wikitext + text/x-wiki + {{User lang +| lang = nl +| name = Nīderlandīšu volūda +| level = 4 +| size = +| info = Deze gebruiker spreekt '''[[:Kategoreja:User nl|Nederlands]] [[:Kategoreja:User nl-4|naar moedertaalmaatstaven]]'''. +}} + mxqxli052idvhx0lq6w2qghz11lmy6d + + + + Felis silvestris + 0 + 1226 + + + 12499 + 2011-03-29T03:32:31Z + + Helloanddie + 104 + + "[[Felis silvestris]]" puorsauču par "[[Mežogs kačs]]" + wikitext + text/x-wiki + #REDIRECT [[Mežogs kačs]] + 3jnf1jk82bdh2ct1q3pmypx7fkc4vp0 + + + + Kategoreja:User nl-4 + 14 + 1227 + + 29729 + 29598 + 2013-04-13T04:51:52Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q8894481]] + wikitext + text/x-wiki + {{Commonscat|User nl-4}} + +[[Kategoreja:User nl| 1]] + 0qv32vagjr4x5t8u9cthqz2qg9fnmx4 + + + + Kategoreja:User nl + 14 + 1228 + + 29728 + 29599 + 2013-04-13T04:51:50Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7003174]] + wikitext + text/x-wiki + {{Commonscat|User nl}} + +[[Kategoreja:Lītuotuoju volūdys|nl]] + d9qyco64lia0l1zmqje1wda2lbr0daz + + + + Eurazejis mežakačs + 0 + 1229 + + + 12509 + 2011-03-29T07:53:31Z + + Dark Eagle + 34 + + "[[Eurazejis mežakačs]]" puorsauču par "[[Mežakačs]]" + wikitext + text/x-wiki + #REDIRECT [[Mežakačs]] + hcqmot0wx37sj12oxotdywrme3bftth + + + + Lynx lynx + 0 + 1230 + + + 12510 + 2011-03-29T07:54:14Z + + Dark Eagle + 34 + + + Pāradresē uz [[Mežakačs]] + wikitext + text/x-wiki + #REDIRECT [[Mežakačs]] + hcqmot0wx37sj12oxotdywrme3bftth + + + + Kategoreja:User nl-N + 14 + 1231 + + 28556 + 28098 + 2013-03-08T00:01:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 137 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6428221]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User nl-N}} + +[[Kategoreja:User nl| 0]] + ischgngr315h239sty5fc70bzb6568p + + + + Kategoreja:User nl-3 + 14 + 1232 + + 29062 + 26737 + 2013-03-10T23:24:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 79 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6729814]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User nl-3}} + +[[Kategoreja:User nl| 2]] + b1j9nggquokcsu8sakjs3q9ll6268pz + + + + Kategoreja:User nl-2 + 14 + 1233 + + 29495 + 26849 + 2013-04-02T18:49:33Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 113 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8827237]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User nl-2}} + +[[Kategoreja:User nl| 3]] + 8gny3m6jx1n2tcytdwptl3r2l58843y + + + + Kategoreja:User nl-1 + 14 + 1234 + + 28557 + 28097 + 2013-03-08T00:01:53Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 121 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6428371]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User nl-1}} + +[[Kategoreja:User nl| 4]] + 6ekfenlawll31aa8n98etu9zy0xbm35 + + + + Kategoreja:User nl-0 + 14 + 1235 + + 12515 + 2011-03-29T08:05:07Z + + Dark Eagle + 34 + + + Jauna lapa: {{Commonscat|User nl-0}} [[Kategoreja:User nl| 5]] + wikitext + text/x-wiki + {{Commonscat|User nl-0}} + +[[Kategoreja:User nl| 5]] + b939pfy1nlhts6lniaw918b3lrrv3kx + + + + Taiss:User nl-0 + 10 + 1236 + + 29522 + 26515 + 2013-04-02T18:55:30Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 22 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6967097]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = nl +| name = Nīderlandīšu volūda +| level = 0 +| size = +| info = Deze gebruiker '''[[:Kategoreja:User nl-0|begrijpt geen]] [[:Kategoreja:User nl|Nederlands]]'''. +}}<noinclude> +</noinclude> + fi82loi9nhaozsxtvcvw2twn43s8duy + + + + Taiss:User nl + 10 + 1237 + + 29957 + 28558 + 2013-08-01T07:07:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5873774]] + wikitext + text/x-wiki + {{User lang +| lang = nl +| name = Nīderlandīšu volūda +| level = N +| size = +| info = Deze gebruiker spreekt '''[[:Kategoreja:User nl|Nederlands]]''' als '''[[:Kategoreja:User nl-N|moedertaal]]'''. +}} + b6i1gnfwupjqw8t653wxnp7l0oll7of + + + + Taiss:User nl-3 + 10 + 1238 + + 29773 + 29483 + 2013-04-14T23:13:09Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{User lang +| lang = nl +| name = Nīderlandīšu volūda +| level = 3 +| size = +| info = Deze gebruiker spreekt '''[[:Kategoreja:User nl-3|uitstekend]] [[:Kategoreja:User nl|Nederlands]]'''. +}}<noinclude> +</noinclude> + 6n73no2lzxfgwv3hws7dphm48aaew2j + + + + Taiss:User nl-2 + 10 + 1239 + + 29956 + 28559 + 2013-08-01T07:07:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5649930]] + wikitext + text/x-wiki + {{User lang +| lang = nl +| name = Nīderlandīšu volūda +| level = 2 +| size = +| info = Deze gebruiker bezit '''[[:Kategoreja:User nl-2|gemiddelde kennis]]''' van het '''[[:Kategoreja:User nl|Nederlands]]'''. +}} + jvjwcvdahkfu0uw5k0pnroz1rdezu1o + + + + Taiss:User nl-1 + 10 + 1240 + + 28560 + 27320 + 2013-03-08T00:02:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 66 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5647192]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +| lang = nl +| name = Nīderlandīšu volūda +| level = 1 +| size = +| info = Deze gebruiker bezit '''[[:Kategoreja:User nl-1|elementaire kennis]]''' van het '''[[:Kategoreja:User nl|Nederlands]]'''. +}}<noinclude> +</noinclude> + 9l1gptxu6sj79ti0eqwhgftz8zmei65 + + + + Latvejis administrativais dalejums + 0 + 1241 + + + 12531 + 2011-03-29T17:50:19Z + + Dark Eagle + 34 + + + Pāradresē uz [[Latvejis administrativais teritoriskais dalejums]] + wikitext + text/x-wiki + #REDIRECT [[Latvejis administrativais teritoriskais dalejums]] + 8w8o6ro6d5pjmb94a4dg1ytcbqf4hqe + + + + Volūda + 0 + 1242 + + 28980 + 28561 + 2013-03-08T16:43:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q315]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Cuneiform script2.jpg|thumb|250px|[[Kleiņroksts]] irā vīna nu pyrmūs zynomūs [[rokstu volūda|rokstu volūdys]] formu, bet [[vuordyskuo volūda]], kai dūmuots, ekzisteja damoz desmitim tyukstūšu godu pyrma raksteibys.]] +'''Volūda''' (ari ''mēle'' voi ''runa'') var zeimuot konkretai cylvāka vareigumu apjimt i lītuot kompleksys komunikaciju sistemys voi ari konkretu itaidys kompleksys komunikaceju sistemys gadīni. Volūdys zineiba sevkurā juos zeimeibā teik saukta par lingvistiku aba [[volūdzineiba|volūdzineibu]]. + +Apmāram 3000—6000 volūdu, kuruos cylvāki myuslaikūs runoj, irā vysuīvāruojamuokī pīvadumi, tok [[dobyskuo volūda]] var byut baļsteita ari iz vizualu, a na tik dzierdeibys stimulu kai, pīvadumam, [[zeimu volūda|zeimu volūdys]] i [[rokstu volūda]]. [[kods|Kodus]] i cytus [[muoksleiguo volūda|muoksleigai radeitu komunikacejis sistemu]] veidus kai tūs, kas teik lītuoti datoru [[programiešonys volūda|programiešonā]], ari var saukt par volūdom. Volūdā itamā zeimeibā irā [[zeime (volūdzineiba)|zeimu]] [[sistema]] informacejis kodiešonai i dekodiešonai. + +Teik īskaiteits, ka cylvāka volūda irā fundamentalai izškireiga nu cytu dzeivnīku škiru volūdu, i jai pīmeit daudz augstuoks komplicātums. Cylvāka volūda irā cīši sapeita ar tū, ka jei irā baļsteita iz vērtiņa nūsacejumu, kas saista simbolus ar jū zeimeibu, taidejaidai rodūt bezgaleigu varamū izasacīņu skaitu nu aprūbežuotūs elementu skaita. Teik īskaiteits, ka volūda roduos, kod agreimī [[hominidi]] pyrmūreiz suoka sasadorbuot, damāruojūt agruokys komunikaceju sistemys, baļsteitys iz izsaceigu zeimu, tymā skaitā [[theory of mind|suzinis teorejis]] i kūpeigū [[iņteņcionalitets|iņteņcionaliteta]]. + +== Verīs taipoš == +* [[Roksts (raksteiba)|Roksts]] + + +{{Commons|Language}} + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Volūda| ]] +[[Kategoreja:Volūdys| ]] + 01oo665rbfiidnbqo7p0gtwtdsqiht0 + + + + Kulturys noms (Rēzne) + 0 + 1247 + + 12573 + 12572 + 2011-03-30T22:03:26Z + + Glossologist + 79 + + + wikitext + text/x-wiki + [[Fails:Rezekne cultural house.jpg|thumb|300px|Kulturys noms 2005 godā.]] +'''Rēznis Kulturys noms''' (seņuok ''Latgolas Tautas piļs'')<ref name="Jaunō straume">[http://data.lnb.lv/nba01/JaunoStraume/1926/JaunoStraume1926-11.pdf «Jaunō straume», 1926 g. solnys m. 11 d.]</ref> irā [[Rēzne|Rēznis]] mīsta pošvolda īstots. + +Tautys piļs tyka īstateita [[1929 goda]] solnys mieneša 17 dīnā. + +'''Adress:''' Bruoļu Skryndu ūļneica 3 (seņuok 5).<ref name="Jaunō straume" /> + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.rezekne.lv/index.php?id=185 Rēzeknes pilsētas Kultūras nams] (latviskai) +* [http://www.rezeknesbiblioteka.lv/index.php?option=com_content&view=article&id=310:rezeknes-kulturas-namam-80&catid=163:par-izstadem-cb&Itemid=104 Rēzeknes kultūras namam – 80] (latviskai) + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Rēzne]] +[[Kategoreja:Kulturys nomi]] + m33k91h0xrldp8p84qy9pokys14lyn2 + + + + Daugovpiļs + 0 + 1248 + + + 12575 + 2011-03-30T23:52:15Z + + Glossologist + 79 + + Pāradresē uz [[Daugpiļs]] + wikitext + text/x-wiki + #REDIRECT [[Daugpiļs]] + ox51smjbxyn6dkjgva8ovxn98kgam18 + + + + Mežakači + 0 + 1249 + + 28562 + 27285 + 2013-03-08T00:03:07Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 61 interwiki links, now provided by [[d:|Wikidata]] on [[d:q677014]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Mežakači''' ({{Vol-la|Lynx}}) irā [[Kaču saime|kaču saimis]] (Felidae) plieseigī zvieri. Pi mežakaču giņts pīdar 4 škirys. Dūmojams ka vysu mežakoču tāvutāvs irā ''Lynx issiodorensis'', kurs dzeivuoja Europā i Afrikā. + +== Izavierīņs == +Mežakačim soveigs zaids irā eisa aste i malns spolvu čyps ausu golā. Auguma nūdora pavaļdeigai nu klimata variej nu gaišbryuna leidz padzaltonam ar bryunim dasnāgumim. Vysim mežakačim irā bolts kažuks iz kryutim, vādara i golyuņu vydspusē. + +{| class="wikitable" +|- +! Škirys !! Svors !! Auguma garums !! Kausu augstums +|- +| [[Mežakačs]] || 18—36 kg || 70—130 cm || 60—65 cm +|- +| [[Kanadys mežakačs]] || 8—14 kg || 86—117 cm || 48—56 cm +|- +| ''[[Lynx pardinus]]'' || 8—13 kg || 85—110 cm || 45—70 cm +|- +| ''[[Lynx rufus]]'' || 7—14 kg || 71—100 cm || 51—61 cm +|} + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Lynx|Mežakači}} + +[[Kategoreja:Dzeivinīki]] + fx97m2ajwdve0aebjh6xwuyszyt6rt4 + + + + Putni + 0 + 1250 + + 30710 + 28563 + 2015-04-02T15:30:07Z + + Magioladitis + 2827 + + + /* Ailis */All info is kept in Wikidata, removed: {{Link FA|en}} (2) using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + [[Fails:Bird Diversity 2011.png|thumb|Putni]] + +'''Putni''' ({{Vol-la|Aves}}) irā [[Dzeivinīki|dzeivinīku pasauļa]] klase. + +== Ailis == +* zamklase [[Paleognathae]] +** aiļa [[Struthioniformes]] +** aiļa [[Tinamiformes]] +* zamklase [[Neognathae]] +** aiļa [[Anseriformes]] +** aiļa [[Galliformes]] +** aiļa [[Sphenisciformes]] +** aiļa [[Gaviiformes]] +** aiļa [[Podicipediformes]] +** aiļa [[Procellariiformes]] +** aiļa [[Pelecaniformes]] +** aiļa [[Ciconiiformes]] +** aiļa [[Phoenicopteriformes]] +** aiļa [[Accipitriformes]] +** aiļa [[Falconiformes]] +** aiļa [[Turniciformes]] +** aiļa [[Gruiformes]] +** aiļa [[Charadriiformes]] +** aiļa [[Pteroclidiformes]] +** aiļa [[Columbiformes]] +** aiļa [[Psittaciformes]] +** aiļa [[Cuculiformes]] +** aiļa [[Strigiformes]] +** aiļa [[Caprimulgiformes]] +** aiļa [[Apodiformes]] +** aiļa [[Trochiliformes]] +** aiļa [[Coraciiformes]] +** aiļa [[Piciformes]] +** aiļa [[Trogoniformes]] +** aiļa [[Coliiformes]] +** aiļa [[Zvierbulini]] (Passeriformes) + +{{Commons|Aves|Putni}} +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Putni}} + +[[Kategoreja:Dzeivinīki]] + 1kpsdv7nh02n62w92bvdg1lpti2xvy6 + + + + Zvierbulini + 0 + 1252 + + 28564 + 27581 + 2013-03-08T00:03:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 71 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25341]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Bryce Canyon Raven.jpg|thumb|250px|[[Krauklis]] (Corvus corax)]] +[[Fails:House Sparrow (M) I IMG 7881.jpg|thumb|250px|right| Zvierbuļs (Passer domesticus)]] +'''Zvierbulini''' ({{Vol-la|Passeriformes}}) irā vīna nu [[putni|putnu]] klasis (Aves) ailim. + +== Saimis == +* '''Aiļa''' [[Zvierbulini]] (''Passeriformes'') +** '''Zamaiļa''' (''Tyranni'') +*** (''Tyrannidae'') +*** (''Pittidae'') +*** (''Eurylaimidae'') +*** (''Dendrocolaptidae'') +*** (''Furnariidae'') +*** (''Thamnophilidae'') +*** (''Formicariidae'') +*** (''Conopophagidae'') +*** (''Rhinocryptidae'') +*** (''Cotingidae'') +*** (''Pipridae'') +*** (''Philepittidae'') +*** (''Acanthisittidae'') +** '''Zamaiļa''' (''Passeri'') +*** (''Acanthizidae'') +*** (''Menuridae'') +*** (''Atrichornithidae'') +*** (''Climacteridae'') +*** (''Maluridae'') +*** (''Meliphagidae'') +*** (''Promeropidae'') +*** (''Pardalotidae'') +*** (''Petroicidae'') +*** (''Orthonychidae'') +*** (''Pomatostomidae'') +*** (''Cinclosomatidae'') +*** (''Neosittidae'') +*** (''Pachycephalidae'') +*** (''Dicruridae'') +*** (''Campephagidae'') +*** (''Oriolidae'') +*** (''Icteridae'') +*** (''Artamidae'') +*** (''Paradisaeidae'') +*** [[Vuornu saime]] (''Corvidae'') +*** (''Corcoracidae'') +*** (''Irenidae'') +*** (''Laniidae'') +*** (''Vireonidae'') +*** (''Ptilonorhynchidae'') +*** (''Turnagridae'') +*** [[Ceiruļu saime]] (''Alaudidae'') +*** (''Chloropseidae'') +*** (''Aegithinidae'') +*** (''Picathartidae'') +*** (''Bombycillidae'') +*** (''Ptilogonatidae'') +*** (''Cinclidae'') +*** [[Cīlavu saime]] (''Motacillidae'') +*** (''Prunellidae'') +*** (''Melanocharitidae'') +*** (''Paramythiidae'') +*** [[Zvierbuļu saime]] (''Passeridae'') +*** (''Estrildidae'') +*** (''Parulidae'') +*** (''Thraupidae'') +*** (''Peucedramidae'') +*** [[Žubeišu saime]] (''Fringillidae'') +*** (''Drepanididae'') +*** (''Emberizidae'') +*** (''Nectariniidae'') +*** (''Dicaeidae'') +*** (''Mimidae'') +*** (''Sittidae'') +*** (''Certhiidae'') +*** (''Troglodytidae'') +*** (''Polioptilidae'') +*** [[Zeiļu saime]] (''Paridae'') +*** (''Aegithalidae'') +*** [[Bezdeleigu saime]] (''Hirundinidae'') +*** (''Regulidae'') +*** (''Pycnonotidae'') +*** (''Sylviidae'') +*** (''Hypocoliidae'') +*** (''Cisticolidae'') +*** (''Zosteropidae'') +*** (''Timaliidae'') +*** (''Muscicapidae'') +*** [[Mežastrodu saime]] (''Turdidae'') +*** [[Strodu saime]] (''Sturnidae'') + +{{Commons|Passeriformes|Zvierbulini}} +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Zvierbulini}} + +[[Kategoreja:Dzeivinīki]] + 1h0q9xnfdqzfmd5xvipqa98yvop8sk3 + + + + Ungareja + 0 + 1258 + + + 12630 + 2011-04-01T08:23:02Z + + Roalds + 50 + + "[[Ungareja]]" puorsauču par "[[Vengreja]]": Latgaliskuojam + wikitext + text/x-wiki + #REDIRECT [[Vengreja]] + 6rkqy8z4ncabrot4nj8lkhwjsr1ma8o + + + + Vuornu saime + 0 + 1260 + + 28565 + 27837 + 2013-03-08T00:03:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 59 interwiki links, now provided by [[d:|Wikidata]] on [[d:q25565]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Corvidae.png|thumb|250px|''Vuornu saimis'' paplateiba]] +'''Vuornu saime''' ({{Vol-la|Corvidae}}) irā vīna nu [[Putni|putnu klasis]] (''Aves'') [[Zvierbulini|zvierbuliņu ailis]] (''Passeriformes'') saimem. + +* '''Alpu vuornys''' +** Giņts ''[[Aplu vuornys]]'' ''Pyrrhocorax'' +*** [[Alpu čāguons]], ''Pyrrhocorax graculus'' +*** [[Alpu vuorna]], ''Pyrrhocorax pyrrhocorax'' + +* '''[[Kūku žogotys]]''' +** Giņts ''[[Crypsirina]]'' +*** ''Crypsirina cucullata'' +*** ''Crypsirina temia'' +** Giņts ''[[Dendrocitta]]'' +*** ''Dendrocitta bayleyi'' +*** ''Dendrocitta cinerascens'' +*** ''Dendrocitta formosae'' +*** ''Dendrocitta frontalis'' +*** ''Dendrocitta leucogastra'' +*** ''Dendrocitta occipitalis'' +*** ''Dendrocitta vagabunda'' +** Giņts ''[[Platysmurus]]'' +*** ''Platysmurus leucopterus'' +** Giņts ''[[Temnurus]]'' +*** ''Temnurus temnurus'' + +* '''[[Azejis žogotys]]''' +** Giņts ''[[Eisastis žogotys]]'' ''Cissa'' +*** [[Zaļuo žogota]], ''Cissa chinensis'' +*** [[Dzaltonkryuts žogota]], ''Cissa hypoleuca'' +*** [[Eisastis žogota]], ''Cissa thalassina'' +** Giņts ''[[Zyluos žogotys]]'' ''Urocissa'' +*** [[Taivanas zyluo žogota]], ''Urocissa caerulea'' +*** [[Sorkongnēzis zyluo žogota]], ''Urocissa erythrorhyncha'' +*** [[Zaltgnēzis zyluo žogota]], ''Urocissa flavirostris'' +*** [[Šri Lankas zyluo žogota]], ''Urocissa ornata'' +*** [[Boltspuornu žogota]], ''Urocissa whiteheadi'' + +* '''Old World jays''' +** Giņts ''[[Garrulus]]'' +*** ''Garrulus glandarius'' +*** ''Garrulus lanceolatus'' +*** ''Garrulus lidthi'' +** Giņts ''[[Podoces]]'' +*** ''Podoces biddulphi'' +*** ''Podoces hendersoni'' +*** ''Podoces panderi'' +*** ''Podoces pleskei'' +** Giņts ''[[Palmu žogotys]]'' ''Ptilostomus'' +*** [[Palmu žogota]], ''Ptilostomus afer'' + +* '''Kryumu vuornys''' +** Giņts ''[[Kryumu vuornys]]'' ''Zavattariornis'' +*** [[Kryumu vuorna]], ''Zavattariornis stresemanni'' + +* '''Nutcracker (bird)|Nutcrackers''' +** Giņts ''[[Nucifraga]]'' +*** ''Nucifraga caryocatactes'' +*** ''Nucifraga columbiana'' + +* '''Pūstumu pusrutuļa žogotys''' +** Giņts ''[[Žogotys]]'' ''Pica'' +*** [[Malngnēzis žogota Magpie]], ''Pica hudsonia'' +*** [[Dzaltongnēzis žogota]], ''Pica nuttalli'' +*** [[Europys žogota]], ''Pica pica'' +*** [[Korejis žagota]], ''Pica (pica) sericea'' + +* '''Vuornys''' (vuornys, kraukli, čāguoni) +** Giņts ''[[Vuornys]]'' ''Corvus'' +*** ''Australejis i Melanesejis'' škirys +**** [[Mozuo vuorna]], ''Corvus bennetti'' +**** [[Australejis krauklis]], ''Corvus coronoides'' +**** [[Bismarka vuorna]], ''Corvus insularis'' +**** [[Bryungolvys vuorna]], ''Corvus fuscicapillus'' +**** ''Corvus meeki'' +**** [[Mozys krauklis]], ''Corvus mellori'' +**** [[Jaunkaledonejis vuorna]], ''Corvus moneduloides'' +**** [[Australejis vuorna]], ''Corvus orru'' +**** [[Meža krauklis]], ''Corvus tasmanicus'' +***** ''Corvus (tasmanicus) boreus'' +**** [[Melanezejis vuorna]], ''Corvus tristis'' +**** [[Gargnēzis vuorna]], ''Corvus validus'' +**** [[Boltgnēzis vuorna]], ''Corvus woodfordi'' +*** ''Jaunzelandejis'' škirys +**** † (''Corvus moriorum'') +**** † [[Jaunzelandejis krauklis]] (''Corvus antipodum'') +*** ''Klusuo okeana jiursolu'' škirys +**** [[Havaju jiursolu vuorna]], ''Corvus hawaiiensis'' (pyrmuok ''Corvus tropicus'') +**** [[Marianys vuorna]], ''Corvus kubaryi'' +**** † [[Augstgnēza vuorna]] (Corvus impluviatus) +**** † [[Leluo vuorna]] (Corvus viriosus) +*** ''Asejis tropu'' škirys +**** [[Aizbaikala čāguons]], ''Corvus dauuricus'' +**** [[Slaiggnēzis vuorna]], ''Corvus enca'' +**** [[Floresys vuorna]], ''Corvus florensis'' +**** [[Lelgnēzis vuorna Crow]], ''Corvus macrorhynchos'' +***** ''Corvus (macrorhynchos) levaillantii'' +**** [[Sātys vuorna]], ''Corvus splendens'' +**** [[Apkaklis vuorna]], ''Corvus torquatus'' +**** ''Corvus typicus'' +**** [[Bangai jiursolu vuorna]], ''Corvus unicolor'' +*** ''Eurazejis i Pūstumu Afrikys'' škirys +**** [[Palākuo vuorna]], ''Corvus cornix'' +***** [[Mezopotamejis vuorna]], ''Corvus (cornix) capellanus'' +**** [[Malnuo vuorna]], ''Corvus corone'' +***** ''Corvus (corone) orientalis'' +**** ''Corvus frugilegus'' +**** [[Čāguons]], ''Corvus monedula'' +**** [[Vāceklastis krauklis]], ''Corvus rhipidurus'' +**** [[Tukšnesa krauklis]], ''Corvus ruficollis'' +*** ''Pūstuma pusrutuļa'' škirys +**** [[Krauklis]], ''Corvus corax'' +***** ''Corvus corax varius'' +*** ''Pūstum Amerikys i Centraluos Amerikys'' škirys +**** [[Amerikys vuorna]], ''Corvus brachyrhynchos'' +**** [[Pūstumvokoru vuorna]], ''Corvus caurinus'' +**** [[Civavys krauklis]], ''Corvus cryptoleucus'' +**** [[Reitu Meksikys vuorna]], ''Corvus imparatus'' +**** [[Jamaikys vuorna]], ''Corvus jamaicensis'' +**** [[Boltkoklu vuorna]], ''Corvus leucognaphalus'' +**** [[Kubys vuorna]], ''Corvus nasicus'' +**** [[Zivu vuorna]], ''Corvus ossifragus'' +**** [[Palmu vuorna]], ''Corvus palmarum'' +**** [[Vokoru Meksikys vuorna]], ''Corvus sinaloae'' +**** [[Vokoru krauklis]], ''Corvus (corax) sinuatus'' +*** ''Afrikas'' škirys +**** [[Boltkoklu krauklis]], ''Corvus albicollis'' +**** [[Raibuo vuorna]], ''Corvus albus'' +**** ''Corvus capensis'' +**** [[Bīzgnēzis vuorna]], ''Corvus crassirostris'' +**** [[Somalejis vuorna]], ''Corvus edithae'' + +* '''Zylspuornu žogotys''' +** Giņts ''[[Zylspuornu žogotys]]'' ''Cyanopica'' +*** [[Zylspuornu žogota]], ''Cyanopica cyana'' + +* '''Grey jays''' +** Giņts ''[[Perisoreus]]'' +*** ''Perisoreus canadensis'' +*** [[Sibira seiļs]], ''Perisoreus infaustus'' +*** ''Perisoreus internigrans'' + +* '''New World jays''' +** Giņts ''[[Aphelocoma]]'' +*** ''Aphelocoma californica'' +*** ''Aphelocoma coerulescens'' +*** ''Aphelocoma insularis'' +*** ''Aphelocoma ultramarina'' +*** ''Aphelocoma unicolor'' +** Giņts ''[[Calocitta]]'' +*** ''Calocitta colliei'' +*** ''Calocitta formosa'' +** Giņts ''[[Cyanocitta]]'' +*** ''Cyanocitta cristata'' +*** ''Cyanocitta stelleri'' +** Giņts ''[[Cyanocorax]]'' +*** ''Cyanocorax affinis'' +*** ''Cyanocorax beecheii'' +*** ''Cyanocorax caeruleus'' +*** ''Cyanocorax cayanus'' +*** ''Cyanocorax chrysops'' +*** ''Cyanocorax cristatellus'' +*** ''Cyanocorax cyanomelas'' +*** ''Cyanocorax cyanopogon'' +*** ''Cyanocorax dickeyi'' +*** ''Cyanocorax heilprini'' +*** ''Cyanocorax melanocyaneus'' +*** ''Cyanocorax morio'' +*** ''Cyanocorax mystacalis'' +*** ''Cyanocorax sanblasianus'' +*** ''Cyanocorax violaceus'' +*** ''Cyanocorax ynca'' +*** ''Cyanocorax yucatanicus'' +** Giņts ''[[Cyanolyca]]'' +*** ''Cyanolyca argentigula'' +*** ''Cyanolyca armillata'' +*** ''Cyanolyca cucullata'' +*** ''Cyanolyca mirabilis'' +*** ''Cyanolyca nana'' +*** ''Cyanolyca pulchra'' +*** ''Cyanolyca pumilo'' +*** ''Cyanolyca turcosa'' +*** ''Cyanolyca viridicyana'' +** Giņts ''[[Gymnorhinus]]'' +*** ''Gymnorhinus cyanocephalus'' +** Giņts ''[[Malnuos žogotys]]'' ''Platylophus'' +*** [[Malnuo žogota]], ''Platylophus galericulatus'' + +{{Commons|Corvidae|Vuornu saime}} +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Vuornu saime}} + +[[Kategoreja:Dzeivinīki]] + kjd2f5oe7ud6bf99zhfsgg3tqlvjza1 + + + + Bezdeleigu saime + 0 + 1265 + + 28566 + 27648 + 2013-03-08T00:03:51Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 75 interwiki links, now provided by [[d:|Wikidata]] on [[d:q39861]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:White-winged Swallow 1052.jpg|thumb|250px|[[Boltspuornu bezdeleiga]] ''Tachycineta albiventer'']] +'''Bezdeleigu saime''' ({{Vol-la|Hirundinidae}}) irā vīna nu [[Putni|putnu klasis]] (''Aves'') [[Zvierbulini|zvierbuliņu ailis]] (''Passeriformes'') saimem. + +* Zamsaime '''Pseudochelidoninae''' +** Giņts [[Upis čūrkstis]] ''Pseudochelidon'' +*** [[Afrikys upis čūrkste]] ''Pseudochelidon eurystomina'' +*** ''Pseudochelidon sirintarae'' +* Zamsaime '''Hirundininae''' +** Giņts [[Zuodžspuornu bezdeleigys]] ''Psalidoprocne'' +*** ''Psalidoprocne nitens'' +*** ''Psalidoprocne fuliginosa'' +*** ''Psalidoprocne albiceps'' +*** ''Psalidoprocne pristoptera'' +*** ''Psalidoprocne obscura'' +** Giņts [[Palākuos bezdeleigys]] ''Pseudhirundo'' +*** ''Pseudhirundo griseopyga'' +** Giņts [[Boltmugorys bezdeleigys]] ''Cheramoeca'' +*** ''Cheramoeca leucosternus'' +** Giņts [[Palākuos čūrkstis]] ''Phedina'' +*** ''Phedina borbonica'' +*** ''Phedina brazzae'' +** Giņts [[Molu čūrkstis]] ''Riparia'' +*** [[Bryunkokla čūrkste]] ''Riparia paludicola'' +*** [[Kongo molu čūrkste]] ''Riparia congica'' +*** [[Molu čūrkste]] ''Riparia riparia'' +*** [[Gaišuo molu čūrkste]] ''Riparia diluta'' +*** [[Apkaklis molu čūrkste]] ''Riparia cincta'' +** Giņts [[Kūku bezdeleigys]] ''Tachycineta'' +*** [[Kūku bezdeleiga]] ''Tachycineta bicolor'' +*** ''Tachycineta thalassina'' +*** ''Tachycineta euchrysea'' +*** [[Bahamu bezdeleiga]] ''Tachycineta cyaneoviridis'' +*** ''Tachycineta stolzmanni'' +*** ''Tachycineta albilinea'' +*** [[Boltspuornu bezdeleiga]] ''Tachycineta albiventer'' +*** ''Tachycineta leucorrhoa'' +*** [["Čilis bezdeleiga]] ''Tachycineta meyeni'' +** Giņts [[Amerikys zyluos čūrkstis]] ''Progne'' +*** ''Progne subis'' +*** [[Kubys čūrkste]] ''Progne cryptoleuca'' +*** [[Karibu čūrkste]] ''Progne dominicensis'' +*** ''Progne sinaloae'' +*** [[Palākkryuts čūrkste]] ''Progne chalybea'' +*** [[Galapagu čūrkste]] ''Progne modesta'' +*** [[Peru čūrkste]] ''Progne murphyi'' +*** [[Dīnavydu čūrkste]] ''Progne elegans'' +*** [[Bryunkryuts čūrkste]] ''Progne tapera'' +** Giņts [[Dīnavydu amerikys bezdeleigys]] ''Notiochelidon'' +*** [[Bryunvādara bezdeleiga]] ''Notiochelidon murina'' +*** [[Blue-and-white Swallow]] ''Notiochelidon cyanoleuca'' +*** [[Gaiškuoju bezdeleiga]] ''Notiochelidon flavipes'' +*** [[Black-capped Swallow]] ''Notiochelidon pileata'' +** Giņts [[Andu bezdeleigys]] ''Haplochelidon'' +*** [[Andu bezdeleiga]] ''Haplochelidon andecola'' +** Giņts [[Dīnavydu amerikys upis bezdeleigys]] ''Atticora'' +*** ''Atticora fasciata'' +*** [[Malnkruosys bezdeleiga]] ''Atticora melanoleuca'' +** Giņts ''[[Neochelidon]]''''' +*** [[White-thighed Swallow]] ''Neochelidon tibialis'' +** Giņts ''[[Stelgidopteryx]]''''' +*** ''Stelgidopteryx serripennis'' +*** ''Stelgidopteryx ruficollis'' +** Giņts [[Raudgolvys bezdeleigys]] ''Alopochelidon'' +*** [[Raudgolvys bezdeleiga]] ''Alopochelidon fucata'' +** Giņts [[Bezdeleigys]] ''Hirundo'' +*** [[Bezdeleiga]] ''Hirundo rustica'' +*** [[Sorkonkryuts bezdeleiga]] ''Hirundo lucida'' +*** [[Angolys bezdeleiga]] ''Hirundo angolensis'' +*** [[Kolnu bezdeleiga]] ''Hirundo tahitica'' +*** [[Australejis bezdeleiga]] ''Hirundo neoxena'' +*** [[Boltreiklis bezdeleiga]] ''Hirundo albigularis'' +*** [[Etiopejis bezdeleiga]] ''Hirundo aethiopica'' +*** [[Drotsastis bezdeleiga]] ''Hirundo smithii'' +*** [[Boltreiklis zyluo bezdeleiga]] ''Hirundo nigrita'' +*** [[Raibspuornu bezdeleiga]] ''Hirundo leucosoma'' +*** [[Boltastis bezdeleiga]] ''Hirundo megaensis'' +*** [[Boltkryuts bezdeleiga]] ''Hirundo dimidiata'' +*** [[Zyluo bezdeleiga]] ''Hirundo atrocaerulea'' +*** [[Malnraudonuo bezdeleiga]] ''Hirundo nigrorufa'' +** Giņts [[Akmiņkolna čūrkstis]] Ptyonoprogne +*** [[Akmiņkolna čūrkste]] ''Ptyonoprogne rupestris'' +*** [[Akmiņu čūrkste]] ''Ptyonoprogne fuligula'' +*** [[Melnikšņuo akmiņkolna čūrkste]] ''Ptyonoprogne concolor'' +** Giņts [[Čūrkstis]] ''Delichon'' +*** [[Sātys čūrkste]] ''Delichon urbicum'' +*** [[Azejis sātys čūrkste]] ''Delichon dasypus'' +*** [[Nepalys sātys čūrkste]] ''Delichon nipalense'' +** Giņts [[Leluos bezdeleigys]] ''Cecropis'' +*** [[Leluo streipuotuo bezdeleiga]] ''Cecropis cucullata'' +*** [[Mazuo streipuotuo bezdeleiga]] ''Cecropis abyssinica'' +*** ''Cecropis semirufa'' +*** ''Cecropis senegalensis'' +*** ''Cecropis daurica'' +*** ''Cecropis striolata'' +*** ''Cecropis badia'' +** Giņts [[Akmiņkolna bezdeleigys]] ''Petrochelidon'' +*** [[Sorkonreiklis bezdeleiga]] ''Petrochelidon rufigula'' +*** ''Petrochelidon preussi'' +*** [[Sorkonuos jiurys bezdeleiga]] ''Petrochelidon perdita'' +*** [[Dīnvydu afrikys bezdeleiga]] ''Petrochelidon spilodera'' +*** [[Mežu bezdeleiga]] ''Petrochelidon fuliginosa'' +*** [[Streipreiklis bezdeleiga]] ''Petrochelidon fluvicola'' +*** ''Petrochelidon ariel'' +*** [[Kūku čūrkste]] ''Petrochelidon nigricans'' +*** [[Akmiņkolna bezdeleiga]] ''Petrochelidon pyrrhonota'' +*** [[Olu bezdeleiga]] ''Petrochelidon fulva'' +*** [[Kaštaņkruosys bezdeleiga]] ''Petrochelidon rufocollaris'' + +{{Commons|Hirundinidae|Bezdeleigu saime}} +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Bezdeleigu saime}} + +[[Kategoreja:Putni]] +[[Kategoreja:Dzeivinīki]] + rzumj7iljilhfrq5bjehzu0hr1wk147 + + + + Upeitis Uobeļduorzs + 0 + 1271 + + 13102 + 12773 + 2011-04-08T21:47:28Z + + DEagleBot + 35 + + + robots kosmētiskās izmaiņas + wikitext + text/x-wiki + Meilys aiļu i dzīšmu festivaļs "'''Upeitis Uobeļduorzs'''" irā pošu vacais regularais latgaļu kulturys festivaļs. Tys nūteik kas gods rudiņa mieneša trešajuo sastdinē Upeitys Tautys nomā, [[Vileks nūvods|Vileks nūvoda]] [[Škilbanu pogosts|Škilbanu pogostā]]. + +== Viesture == +Pyrmais festivaļa sariedīņs nūtyka 2002 godā, kura iniciators beja ailinīks [[Ontons Slyšāns]]. Jis izguoduoja, ka rudiņa mienesī vysapleik nūteik aiļu dīnys, a nikur eisti jaunīši naapmeklej. Tod vīns pajiemīņs kai daviļkt jaunīšus klauseitīs aiļu, byutu vīnā sariedīnī jaunīšim pošu aktualuo laikā dalykt nazcik lītu - vysaižu stiļu muzyku, ailis i latgaļu volūdu. I vēļ sariedīnim kai dastateigs nūsacejums byutu, ka vysuvaira ailem i muzykai vajag byut latgaliskai. + +Itys irā sovpateigs festivaļs [[Latgaļu volūda|latgaļu volūdā]] kuramā vīnuvīt skaņ ailis i muzyka. Zeimeigai, ka sariedīnī pīstuov vysu stiļu muzykai - i folkloram, i rokam. Festivaļs irā zeimeigs, ka bejs pyrmuo vareiba uzastuot iz vīnys scenys kai labi zynomom grupom i alininīkim, tai i suociejim. Nu "Upeitis Uobeļduorza" īdvēsmi dabovuši nazcik cyti tautys kulturys dareituoji, atdorūt jaunus latgaliskuos kulturys sariedīņus, taipoš tys irā vadynuojs izaraisteit jaunom grupom i literatim. + +[[Kategoreja:Sariedīni]] + pkbh8785aaqgpy3urfbjmd05780bvad + + + + Upītes Uobeļduorzs + 0 + 1273 + + + 12766 + 2011-04-04T10:59:26Z + + Roalds + 50 + + "[[Upītes Uobeļduorzs]]" puorsauču par "[[Upeitis Uobeļduorzs]]": Literaruo gramatika + wikitext + text/x-wiki + #REDIRECT [[Upeitis Uobeļduorzs]] + i0kbfggsgm47csmhidviugyrix14vxi + + + + Kategoreja:Sariedīni + 14 + 1274 + + 12772 + 2011-04-04T11:34:43Z + + Roalds + 50 + + jauna kategoreja: kulturys sariedīni + wikitext + text/x-wiki + {{DEFAULTSORT:Sariedīni}} +[[Category:Kultura]] +[[Category:Nūtikšonys]] + 92glkmvpiixnyfrhugq0n9z85zcpxsw + + + + Rēznis gerbs + 0 + 1275 + + 28567 + 12782 + 2013-03-08T00:04:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801488]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Coat of Arms of Rēzekne.svg|thumb|180px|Rēznis gerbs]] +'''Rēznis gerbs''' irā [[Rēzne|Rēznis]] mīsta simbols. [[2000 gods]] [[pavasara mieness|pavasara mienesī]] [[Rēznis dūma]] pījama sasprīdumu ap mīsta simbolikys apstyprynuošonu. Deputati nūbolsuoja ap Rēznis gerba variantu, kas beja pījimts Latvejis pyrmuos breivuos vaļsteibys laikā. + +== Viesture == +Tai kai vairuoki apdzeivuotu vītu vacī gerbi nabeja sadareigi ar napavaļdeigys vaļsteibys ideju, [[1923]] godā [[Latveja|Latvejā]] sataisieja sovpateigu heraldikys komiseju. Itymā laikā [[Latgola|Latgolys]] oficialais simbols beja [[grifs]] (iz lobū pusi), kas rūkā tur zūbynu. Tys pots grifs ījama centraluo vītu Rēznis mīsta gerbā, kas tyka pījamts [[1925]] godā. Iz pazyla fona atvaiguots zalta (dzaltons) grifs — senejs mitologisks radejums ar ļova augumu i ereļa spuornim. + +== Atvaiguojums == +Grifs ira miļzeigs, lels i špetnys radejums. [[Mitologeja|Mitologejā]] tys cieški veic zalta sorguotuoja funkcejis. Itys ira vareiguma i dreizuma simbols. Piec heraldikys nūsacejumim grifs atvaiguots ar zūbynu, a Rēznis gerbā zūbynu puormeja iz škīdu [[Latvejis karūgs|Latvejis karūga]] nūdoruos, pastreipojūt mīsta pīdereibu vaļsteibai. Pazylais fons piec heraldikys nūsacejumim zeimoj cālsirdeibu, gūdeigumu, paticeibu i napīmeteigumu. + +== Teiklavītys == +* [http://www.rezekne.lv/index.php?id=105 Rēzeknes simbolika] (latviskai) +* [http://www.ngw.nl/int/lat/rezekne.htm Heraldry of the World] (angliskai) + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latvejis mīstu gerbi]] +[[Kategoreja:Rēzne| Gerbs]] + nx6r1n8wm1w3uh0fhzduvu3sj28owj3 + + + + Panthera onca + 0 + 1278 + + + 12796 + 2011-04-04T23:30:08Z + + Glossologist + 79 + + "[[Panthera onca]]" puorsauču par "[[Jaguars]]": latgaliskuojums + wikitext + text/x-wiki + #REDIRECT [[Jaguars]] + r5dt8e3iswzrh8f8q4hdz4mb2rhedn3 + + + + Geologiskuo laika skala + 0 + 1279 + + 30711 + 28568 + 2015-04-02T15:30:09Z + + Magioladitis + 2827 + + + All info is kept in Wikidata, removed: {{Link FA|eo}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + {| border=1 cellspacing=0 cellpadding=0 align=center style="border-collapse: collapse;" +|----- align=center bgcolor=#f8f8f8 +| rowspan=2 | [[Eona]] +| rowspan=2 | [[Era]] +| rowspan=2 | [[Laikavyds]] +| rowspan=2 | Epoha +| rowspan=2 | Trūps +| colspan=2 | Suokuos +| rowspan=2 | Zeimeiguokās nūtikšonys +| rowspan=2 | Fosili atradīni +|----- align = center bgcolor=#f8f8f8 +| [[Milijons godu|Milij.g.]] ||± +|----- align=center +| rowspan=101 bgcolor=#9ad9e5 | +<font size=+1> [[Fanerozojs|F<br />A<br />N<br />E<br />R<br />O<br />Z<br />O<br />J<br />S]]</font> +|----- align=center +| rowspan=5 bgcolor=#fafd01 valign=bottom | <br /><br /><br /> <big>[[Kainozojs|K<br />A]]<big> +| rowspan=5 bgcolor=#fee692 | [[Kvartars]] +| bgcolor=#fffae0 | [[Holocens]] +| bgcolor=#fffae0 | [[Atlantejis]] +[[Borealais]] +| valign=bottom | <small>0,011784*<small> || valign=bottom | - +| +| &nbsp; +|----- align=center +| bgcolor=#fff7c0 rowspan=4 | [[Pleistocens]] +| bgcolor=#fff7c0 | [[Tarantys]] +| valign=bottom | 0,126* || valign=bottom | - +| rowspan=4 | +| align=center rowspan=3 | ''[[Homo sapiens]]''<br />''[[Homme de Néandertal|H. neander-<br />thalensis]]''<br />''[[Homo antecessor|H. antecessor]]''<br />''[[Homo erectus|H. erectus]]'' +|----- align=center +| bgcolor=#fff7c0 | [[Ionys]] +| valign=bottom |0,781** || valign=bottom | - +|----- align=center +| bgcolor=#fff7c0 | [[Kalabrys]] +| valign=bottom |1,806* || valign=bottom | - +|----- align=center +| bgcolor=#fff7c0 | [[Gelasys]] +| valign=bottom |2,588* || valign=bottom | - +| ''[[Homo ergaster|H. ergaster]]''<br />''[[Homo habilis|H. habilis]]'' +|----- align=center +| rowspan=17 bgcolor=#ffff00 valign=top |<big>[[Kainozojs|I<br />N<br />O<br />Z<br />O<br />J<br />S]] +| rowspan=8 bgcolor=#ffe800 | [[Neogens]] +| rowspan=2 bgcolor=#ffff99 | [[Pliocens]] +| bgcolor=#ffff99 | [[Piacentys]] +| 3,600* || - +| rowspan=2 | &nbsp; +| +|----- align=center +| bgcolor=#ffff99 | [[Zanklys]] +| 5,332* || - +| &nbsp; +|----- align=center +| rowspan=6 bgcolor=#ffff00 | [[Miocens]] +| bgcolor=#ffff00 | [[Mesinys]] +| 7,246* || - +| rowspan=6 | &nbsp; +|----- align=center +| bgcolor=#ffff00 | [[Tortonys]] +| 11,608* || - +| rowspan=5 | &nbsp; +|----- align=center +| bgcolor=#ffff00 | [[Seravalis]] +| 13,82* || - +|----- align=center +| bgcolor=#ffff00 | [[Langejis]] +| 15,97 || - +|----- align=center +| bgcolor=#ffff00 | [[Burdigalys]] +| 20,43 || - +|----- align=center +| bgcolor=#ffff00 | [[Akvitanejs]] +| 23,03* || - +|----- align=center +| rowspan=9 bgcolor=#fdc052 | [[Paleogens]] +| rowspan=2 bgcolor=#fed06d | [[Oligocens]] +| bgcolor=#fed06d | [[Hatys]] +| 28,4 || 0,1 +| rowspan=2 | &nbsp; +| rowspan=2 | &nbsp; +|----- align=center +| bgcolor=#fed06d | [[Rupelys]] +| 33,9* || 0,1 +|----- align=center +| rowspan=4 bgcolor=#f3c05d | [[Eocens]] +| bgcolor=#f3c05d | [[Priabonys]] +| 37,2 || 0,1 +| rowspan=4 | +| rowspan=4 | &nbsp; +|----- align=center +| bgcolor=#f3c05d | [[Bartonys]] +| 40,4 || 0,2 +|----- align=center +| bgcolor=#f3c05d | [[Lutetys]] +| 48,6 || 0,2 +|----- align=center +| bgcolor=#f3c05d | [[Iprys]] +| 55,8* || 0,2 +|----- align=center +| rowspan=3 bgcolor=#ebb04d | [[Paleocens]] +| bgcolor=#ebb04d | [[Tanetys]] +| 58,7* || 0,2 +| rowspan=3 | +|----- align=center +| bgcolor=#ebb04d | [[Zelandis]] +| 61,1* || 0,2 +|----- align=center +| bgcolor=#ebb04d | [[Danejis]] +| 65,5* || 0,3 +|----- align=center +| rowspan=30 bgcolor=#67c5ca | <big> +[[Mezozojs|M<br />E<br />Z<br />O<br />Z<br />O<br />J<br />S]] +| rowspan=12 bgcolor=#c5e547 | [[Kreids (periods)|Kreids]] +| rowspan=6 bgcolor=#e2f398 | [[Vālais kreids|Vālais]] +| bgcolor=#e2f398 | [[Mastrihtys]] +| 70,6* || 0,6 +| rowspan=6 | +| rowspan=23 | [[Amoniti]] +|----- align=center +| bgcolor=#e2f398 | [[Kampanys]] +| 83,5 || 0,7 +|----- align=center +| bgcolor=#e2f398 | [[Santonys]] +| 85,8 || 0,7 +|----- align=center +| bgcolor=#e2f398 | [[Konjakys]] +| 89,3 || 1,0 +|----- align=center +| bgcolor=#e2f398 | [[Turonys]] +| 93,6* || 0,8 +|----- align=center +| bgcolor=#e2f398 | [[Senomanys]] +| 99,6* || 0,9 +|----- align=center +| rowspan=6 bgcolor=#41aa54 | [[Agrais kreids|Agrais]] +| bgcolor=#41aa54 | [[Albys]] +| 112,0 || 1,0 +| rowspan=6 | +|----- align=center +| bgcolor=#41aa54 | [[Aptys]] +| 125,0 || 1,0 +|----- align=center +| bgcolor=#41aa54 | [[Baremys]] +| 130,0 || 1,5 +|----- align=center +| bgcolor=#41aa54 | [[Hauterivys]] +| 133,9 || 2,0 +|----- align=center +| bgcolor=#41aa54 | [[Valanžinys]] +| 140,2 || 3,0 +|----- align=center +| bgcolor=#41aa54 | [[Beriasys]] +| 145,5 || 4,0 +|----- align=center +| rowspan=11 bgcolor=#e2f4e0 | [[Jurys]] +| rowspan=3 bgcolor=#b3e2e6 | [[Vālais jurys|Vālais]] +| bgcolor=#b3e2e6 | [[Titonys]] +| valign=bottom |150,8 || valign=bottom |4,0 +| rowspan=3 | +|----- align=center +| bgcolor=#b3e2e6 | [[Kimeridžys]] +| valign=bottom |155,6** || valign=bottom | 4,0 +|----- align=center +| bgcolor=#b3e2e6 | [[Oksfordys]] +| valign=bottom |161,2 || valign=bottom |4,0 +|----- align=center +| rowspan=4 bgcolor=#b3d7e8 | [[Vydyskais jurys|Vydyskais]] +| bgcolor=#b3d7e8 | [[Kelovejis]] +| 164,7 || 4,0 +| rowspan=4 | &nbsp; +|----- align=center +| bgcolor=#b3d7e8 | [[Batys]] +| 167,7* || 3,5 +|----- align=center +| bgcolor=#b3d7e8 | [[Bajosys]] +| 171,6* || 3,0 +|----- align=center +| bgcolor=#b3d7e8 | [[Alenys]] +| 175,6* || 2,0 +|----- align=center +| rowspan=4 bgcolor=#00a0c6 | [[Agrais jurys|Agrais]] +| bgcolor=#00a0c6 | [[Toarkys]] +| 183,0 || 1,5 +| rowspan=4 | +|----- align=center +| bgcolor=#00a0c6 | [[Plinsbahas]] +| 189,6* || 1,5 +|----- align=center +| bgcolor=#00a0c6 | [[Sinemirys]] +| 196,5* || 1,0 +|----- align=center +| bgcolor=#00a0c6 | [[Hetangys]] +| 199,6** || 0,6 +|----- align=center +| rowspan=7 bgcolor=#6b017d | <font color=#ffffff>[[Triass]]</font><br /> +| rowspan=3 bgcolor=#e4c5e1 | [[Vālais triass|Vālais]] +| bgcolor=#e4c5e1 | [[Retys]] +| 203,6 || 1,5 +| rowspan=7 | +| rowspan=7 | +|----- align=center +| bgcolor=#e4c5e1 | [[Norejas]] +| 216,5 || 2,0 +|----- align=center +| bgcolor=#e4c5e1 | [[Carnien]] +| 228,7* || 2,0 +|----- align=center +| rowspan=2 bgcolor=#b189c5 | [[Vydyskais triass|Vydyskais]] +| bgcolor=#b189c5 | [[Ladinys]] +| 237,0* || 2,0 +|----- align=center +| bgcolor=#b189c5 | [[Anisejas]] +| 245,0** || 1,5 +|----- align=center +| rowspan=2 bgcolor=#983999 | [[Agrais triass|Agrais]] +| bgcolor=#983999 | [[Olenekys]] +| 249,7** || 0,7 +|----- align=center +| bgcolor=#983999 | [[Indys]] +| 251,0* || 0,4 +|----- align=center +| rowspan=48 bgcolor=#99c08d | +<big>[[Paleozojs|P<br />A<br />L<br />E<br />O<br />Z<br />O<br />J<br />S]] +| rowspan=9 bgcolor=#f04028 | [[Perms]] +| rowspan=2 bgcolor=#fa9aa3 | [[Lopingys]] +| bgcolor=#fa9aa3 | [[Čangsingys]] +| 253,8* || 0,7 +| rowspan=2 | +| rowspan=2 | &nbsp; +|----- align=center +| bgcolor=#fa9aa3 | [[Vučiapidys]] +| 260,4* || 0,7 +|----- align=center +| rowspan=3 bgcolor=#f09652 | [[Guadelupis]] +| bgcolor=#f09652 | [[Kapitanys]] +| 265,8* || 0,7 +| rowspan=3 | &nbsp; +| rowspan=3 | &nbsp; +|----- align=center +| bgcolor=#f09652 | [[Vordys]] +| 268,0* || 0,7 +|----- align=center +| bgcolor=#f09652 | [[Roady]] +| 270,6* || 0,7 +|----- align=center +| rowspan=4 bgcolor=#ca3c40 | [[Pīuralu]] +| bgcolor=#ca3c40 | [[Kungurys]] +| 275,6** || 0,7 +| rowspan=4 | &nbsp; +| rowspan=4 | &nbsp; +|----- align=center +| bgcolor=#ca3c40 | [[Artinskys]] +| 284,4** || 0,7 +|----- align=center +| bgcolor=#ca3c40 | [[Sakmarys]] +| 294,6** || 0,8 +|----- align=center +| bgcolor=#ca3c40 | [[Aselys]] +| 299,0* || 0,8 +|----- align=center +| rowspan=7 bgcolor=#67aba0 | [[Karbons]] +| rowspan=4 bgcolor=#99c4b5 | [[Pensivanejis karbons]] +| bgcolor=#99c4b5 | [[Gželys]] +| 303,4 || 0,9 +| rowspan=7 | +| rowspan=4 | &nbsp; +|----- align=center +| bgcolor=#99c4b5 | [[Kasimovys]] +| 307,2 || 1,0 +|----- align=center +| bgcolor=#99c4b5 | [[Moskovys]] +| 311,7 || 1,1 +|----- align=center +| bgcolor=#99c4b5 | [[Baškirejis]] +| 318,1* || 1,3 +|----- align=center +| rowspan=3 bgcolor=#67946d | [[Misisipi karbons]] +| bgcolor=#67946d | [[Serpuhovys]] +| 328,3 || 1,6 +| rowspan=3 | &nbsp; +|----- align=center +| bgcolor=#67946d | [[Visie]] +| 345,3* || 2,1 +|----- align=center +| bgcolor=#67946d | [[Tournie]] +| 359,2* || 2,5 +|----- align=center +| rowspan=7 bgcolor=#cb8c37 | [[Devons]] +| rowspan=2 bgcolor=#cccea9 | [[Vālais devons|Vālais]] +| bgcolor=#cccea9 | [[Famenys]] +| 374,5* || 2,6 +| rowspan=2 | +| rowspan=2 | +|----- align=center +| bgcolor=#cccea9 | [[Frasnys]] +| 385,3* || 2,6 +|----- align=center +| rowspan=2 bgcolor=#99a56d | [[Vydyskais devons|Vydyskais]] +| bgcolor=#99a56d | [[Živetis]] +| 391,8* || 2,7 +| rowspan=5 | +| rowspan=2 | &nbsp; +|----- align=center +| bgcolor=#99a56d | [[Eifelys]] +| 397,5* || 2,7 +|----- align=center +| rowspan=3 bgcolor=#999449 | [[Agrais devons|Agrais]] +| bgcolor=#999449 | [[Emsys]] +| 407,0* || 2,8 +| rowspan=3 | &nbsp; +|----- align=center +| bgcolor=#999449 | [[Pragys]] +| 411,2* || 2,8 +|----- align=center +| bgcolor=#999449 | [[Lochkovys]] +| 416,0* || 2,8 +|----- align=center +| rowspan=8 bgcolor=#b3e2d0 | [[Silurs]] +| bgcolor=#f5fbf0 | [[Pršidolys]] +| bgcolor=#f5fbf0 | [[Pršidolys]] +| 418,7* || 2,7 +| rowspan=8 | +| rowspan=8 | +|----- align=center +| rowspan=2 bgcolor=#e2f4e0 | [[Ludlovys]] +| bgcolor=#e2f4e0 | [[Ludfordys]] +| 421,3* || 2,6 +|----- align=center +| bgcolor=#e2f4e0 | [[Gorstejis]] +| 422,9* || 2,5 +|----- align=center +| rowspan=2 bgcolor=#c5e8b9 | [[Venlokys]] +| bgcolor=#c5e8b9 | [[Homerys]] +| 426,2* || 2,4 +|----- align=center +| bgcolor=#c5e8b9 | [[Šeinvudys]] +| 428,2* || 2,3 +|----- align=center +| rowspan=3 bgcolor=#99d7b3 | [[Landoverys]] +| bgcolor=#99d7b3 | [[Telyčis]] +| 436,0* || 1,9 +|----- align=center +| bgcolor=#99d7b3 | [[Aeronys]] +| 439,0* || 1,8 +|----- align=center +| bgcolor=#99d7b3 | [[Rudanys]] +| 443,7* || 1,5 +|----- align=center +| rowspan=7 bgcolor=#009270 | [[Ordoviks]] +| rowspan=3 bgcolor=#66c092 | [[Vālais ordoviks|Vālais]] +| bgcolor=#66c092 | [[Hirnanteja]] +| 445,6* || 1,5 +| rowspan=7 | +| rowspan=7 | +|----- align=center +| bgcolor=#66c092 | [[Katejis]] +| 455,8* || 1,6 +|----- align=center +| bgcolor=#66c092 | [[Sandbejis]] +| 460,9* || 1,6 +|----- align=center +| rowspan=2 bgcolor=#419c68 | [[Vydyskais ordoviks|Vydyskais]] +| bgcolor=#419c68 | [[Darivillys]] +| 468,1* || 1,6 +|----- align=center +| bgcolor=#419c68 | [[Dapingys]] +| 471,8* || 1,6 +|----- align=center +| rowspan=2 bgcolor=#018055 | [[Arais ordoviks|Agrais]] +| bgcolor=#018055 | [[Floejis]] +| 478,6* || 1,7 +|----- align=center +| bgcolor=#018055 | [[Tremadokys]] +| 488,3* || 1,7 +|----- align=center +| rowspan=10 bgcolor=#408521| <font color=white>[[Kembrejs]]</font> +| rowspan=3 bgcolor=#d7d3aa | [[Furongejis]] +| bgcolor=#d7d3aa | [[10 trūps]] +| 492,0 || - +| rowspan=10 | +| rowspan=8 | [[Trilobiti]] +|----- align=center +| bgcolor=#d7d3aa | [[9 trūps]] +| 496,0 || - +|----- align=center +| bgcolor=#d7d3aa | [[Paibejis]] +| 499,0* || 2,0 +|----- align=center +| rowspan=3 bgcolor=#b6ae6d | [[Vydyskais kembejs|Vydyskais]] +| bgcolor=#b6ae6d | [[Guzhangien]] +| 503,0* || - +|----- align=center +| bgcolor=#b6ae6d | [[Drumejis]] +| 506,5* || - +|----- align=center +| bgcolor=#b6ae6d | [[5 trūps]] +| 510,0 || 2 +|----- align=center +| rowspan=4 bgcolor=#66a94b | [[Agrais kembrejs|Agrais]] +| bgcolor=#66a94b | [[Toyonejis]] +| 517,0 || - +|----- align=center +| bgcolor=#66a94b | [[Botomejis]] +| 521,0 || - +|----- align=center +| bgcolor=#66a94b | [[2 trūps]] +| 528,0 || - +| rowspan=2 | +|----- align=center +| bgcolor=#66a94b | [[Tomotejis]] +| 542,0* || 1,0 +|----- align=center +| colspan=5 bgcolor=#f74370 | Zam [[Kembreja]] laikavydi +| colspan=1 rowspan=2 valign=bottom | 635* +| colspan=1 rowspan=2 valign=bottom | - +| rowspan=2 | +| rowspan=2 | +|----- align=center +| rowspan=11 bgcolor=#FF9936 | <font size=+1> +[[Proterozojs|P<br />R<br />O<br />T<br />E<br />R<br />O<br />Z<br />O<br />J<br />S]]</font> +| rowspan=4 bgcolor=#feb343 | <big>[[Neoproterozojs]]</big> +| colspan=1 bgcolor=#feb343 | [[Ediakars]] +| colspan=2 bgcolor=#feb343 | +|----- align=center +| colspan=1 rowspan=2 bgcolor=#feb343 | [[Kryogens]] +| bgcolor=#feb343 | [[Varangens]] +| colspan=1 bgcolor=#feb343 | +| colspan=1 valign=bottom | 650 +| colspan=1 valign=bottom | - +| rowspan=2 | +| rowspan=3 | &nbsp; +|----- align=center +| bgcolor=#feb343 | [[Sturtens]] +| bgcolor=#feb343 | +| valign=bottom | 850* +| valign=bottom | - +|----- align=center +| colspan=1 bgcolor=#feb343 | [[Tonejs]] +| colspan=2 bgcolor=#feb343 | +| colspan=1 valign=bottom | 1000* +| colspan=1 valign=bottom | - +| +|----- align=center +| rowspan=3 bgcolor=#fdb469 | <big>[[Mezoproterezojs]]</big> +| colspan=1 bgcolor=#fdb469 | [[Stenejs]] +| colspan=2 bgcolor=#fdb469 | +| valign=bottom | 1200* +| valign=bottom | - +| +| rowspan=3 | +|----- align=center +| colspan=1 bgcolor=#fdb469 | [[Ektazejs]] +| colspan=2 bgcolor=#fdb469 | +| colspan=1 valign=bottom | 1400* +| colspan=1 valign=bottom | - +|----- align=center +| colspan=1 bgcolor=#fdb469 | [[Kalymejs]] +| colspan=2 bgcolor=#fdb469 | +| colspan=1 valign=bottom | 1600* +| colspan=1 valign=bottom | - +|----- align=center +| rowspan=4 bgcolor=#FF9966 |<big>[[Paleoproterezojs]]</big> +| colspan=1 bgcolor=#FF9966 | [[Staterejs]] +| colspan=2 bgcolor=#FF9966 | +| colspan=1 valign=bottom | 1800* +| colspan=1 valign=bottom | - +| +| rowspan=6 | +|----- align=center +| colspan=1 bgcolor=#FF9966 | [[Orosirejs]] +| colspan=2 bgcolor=#FF9966 | +| colspan=1 valign=bottom | 2050* +| colspan=1 valign=bottom | - +| rowspan=3 | +|----- align=center +| colspan=1 bgcolor=#FF9966 | [[Ryasejs]] +| colspan=2 bgcolor=#FF9966 | +| colspan=1 valign=bottom | 2300* +| colspan=1 valign=bottom | - +|----- align=center +| colspan=1 bgcolor=#FF9966 | [[Siderejs]] +| colspan=2 bgcolor=#FF9966 | +| colspan=1 valign=bottom | 2500* +| colspan=1 valign=bottom | - +|----- align=center +| rowspan=4 bgcolor=#99adac | <font size=+1> +[[Arhajs|A<br />R<br />H<br />A<br />J<br />S]]</font> +| bgcolor=#cbcdc8 colspan=2 |<big>[[Neoarhajs]]</big> +| colspan=2 bgcolor=#cbcdc8 | &nbsp; +| colspan=1 valign=bottom | 2800 +| colspan=1 valign=bottom | - +| rowspan=4 | [[Bakterejis]]&nbsp;; [[fotosiņteze]] ([[Cianbakterejis]])&nbsp;;<br />metana pagaisšona CH<sub>4</sub>&nbsp;;<br /> +|----- align=center +| bgcolor=#b2b5af colspan=2 | <big>[[Mezoarhajs]]</big> +| colspan=2 bgcolor=#b2b5af | &nbsp; +| colspan=1 valign=bottom | 3200 +| colspan=1 valign=bottom | - +|----- align=center +| bgcolor=#999791 colspan=2 | <big>[[Paleoarhajs]]</big> +| colspan=2 bgcolor=#999791 | &nbsp; +| colspan=1 valign=bottom | 3600 +| colspan=1 valign=bottom | - +| rowspan=2 | &nbsp; +|----- align=center +| bgcolor=#809090 colspan=2 | <big>[[Eoarhajs]]</big> +| colspan=2 bgcolor=#809090 | &nbsp; +| colspan=1 valign=bottom | 4000 +| colspan=1 valign=bottom | - +|----- align=center +| bgcolor=#808890 | <font size=+1> +[[Aydejs|A<br />Y<br />D<br />E<br />J<br />S]]</font> +| bgcolor=#808890 colspan=4 | &nbsp; +| colspan=1 valign=bottom | 4600 +| colspan=1 valign=bottom | - +| colspan=2| Okeanu atrasme, atmosfera sador nu N<sub>2</sub>, CO<sub>2</sub> i CH<sub>4</sub>. +|} +<br clear="all"> + +[[Kategoreja:Geologeja]] +[[Kategoreja:Viesture]] + rt8ugo5g2kk83vn0c9wb1qkzbvw9n78 + + + + Preiļu sīrs + 0 + 1281 + + 15539 + 13097 + 2011-08-01T14:33:14Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + [[akceju sabīdreiba|A/s]] '''„Preiļu sīrs”''' ({{Vol-lv|A/S „Preiļu siers”}}) — leluokais sīra pīgatavātuojs i eksportātuojs [[Latveja|Latvejā]]. Pīna puordaris pasajāmums [[Preili|Preiļūs]] tyka īstateits 1972. godā i dorbuojuos kai pasajāmuma „Daugpiļs pīna kombinats” filials. Agruok tī taisieja svīstu i sīru. Laika guojumā produkcejis sortiments puormeits iz industrialuo pīna produkceji. + +== Viesture == +1972. goda nojabra m. 30. dīnā tyka dabeigta dareitovys būdaveiba ar pīgatavis veici 2200 t sīra godā. + +1978. godā dareitova taisieja vaira kai 3000 t sīra godā. + +1980. godā tyka likti pamati Preiļu sīra dareitovys paleigsaimesteibai. + +1981. godā tyka rekonstruēts dareitovys sīra ceks. Tyka pastateita dāņu firmys Passilak sīra pīgatavis lineja ar veici 3650 t godā. + +1983. godā dareitovys veice ira 5300 t sīra godā. + +1986. goda labeibys m. 1. dīnā Preiļu sīra dareitova tyka daškierta agrofirmys „Красный Октябрь” sadorā i produkceji eksportieja iz Krīveju. + +Nu 1986. goda pebreļa m. 16 dīnys pastuov sīra dareitovys polklora ansambļs „Mūdernīki” Juoņa Teilāna vierseibā. + +1991. goda janvara mienesī dareitova izstuoja nu agrofirmys i palyka kai sovrūčs vaļsts pasajāmums. + +1994. goda apreļa m. 14. dīnā iz vaļsts pasajāmuma Preiļu sīra dareitovys buozis tyka īstateita akceju sabīdreiba Preiļu sīrs. Pasajāmums paplata sovu sortimentu. 80% sovys produkcejis eksportej iz Daneju, Holandi, Igauneju, Krīveju. + +1999. godā modernizieja autotransportu i sīra „Čedars” pīgatavis lineju ar daņu firmys Damrow paleigu. Lineja taisa 2 t sīra stuņdē. Atdareita jauna puordūtuve Preiļūs i suokta jogurta pīgatave. + +== Produkceja == +Pasajāmuma golvonī produkti: +* cītais sīrs (da 20 000t sīra godā) +* sausī produkti – sīra syukolu, pīna, vuojiņa, paneju puļviers (da 15 000t sausū produktu godā) + +AS Preiļu sīrs ira vīneigais sīra atmejis „Čedars” pīgatavātuojs na tik Latvejā, bet i Baltejā. Cyta pasajāmuma produkceja ira: sīri „Baltija”, „Preilis” i bīzapīna sīreņi „Mazulis”. + +== Teiklavītys == +* http://www.preilusiers.lv/page/index/14 +* http://www.preilubiblioteka.lv/?menu=23&smenu=1 + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Preili]] +[[Kategoreja:Latvejis pasajājumi]] + lm22wr6cv59ge0z1qgggxguq2w1q9pg + + + + Daugavpils + 0 + 1283 + + + 12881 + 2011-04-05T17:57:30Z + + Dark Eagle + 34 + + + Pāradresē uz [[Daugpiļs]] + wikitext + text/x-wiki + #REDIRECT [[Daugpiļs]] + ox51smjbxyn6dkjgva8ovxn98kgam18 + + + + Helena Laurinoviča-Pronevska + 0 + 1285 + + 13290 + 13287 + 2011-04-12T20:40:15Z + + Aleksandrs~ltgwiki + 345 + + wikitext + text/x-wiki + [[Fails:Helena_Laurinoviča_Pronevska.jpg‎|thumb|right|250px|Helena Laurinoviča-Pronevska]] +'''Helena Laurinoviča-Pronevska''' (1898-1968) — latgaļu rakstineica. + +Dzymuse 1898 gods jaunagods mieneša 4 dīnā [[Daugpiļs apleiciņs|Daugpiļs apleiciņa]] [[Leiksnys pogosts|Leiksnys pogosta]] Jaunušānu solā. Myruse 1968 gods jaunagods mieneša 28 dīnā Pasadenā, [[Kaliforneja|Kalifornejā]], [[ASV]]. Paglobuota San Fernando katuoļu misejis kopūs svaicaiņa mieneša 1 dīnā.<ref>[http://www.lkcizdevnieciba.lv/par_tymsi_mokuni_sasavalk.html] [[Latgolys kulturys centra laistuve]]</ref> + +== Bibliografeja == +=== Atguodu gruomotys === +* ''"Grymstušōs saleņas"'' (Minhene, P/s Latgaļu izdevnīceiba, 1964), +* ''"Pasauļs līsmōs"'' (Minhene, P/s Latgaļu izdevnīceiba, 1981. Nadabeigta, autoris pošys lyktais viersroksts: ''"Tymsi mōkūni sasavalk"''). +* ''"Tymsi mōkūni sasavalk"'' (Rēznē, [[Latgolys kulturys centra laistuve]], 2011. Nadabeigta). +== Nūruodis == +{{Reflist}} + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Laurinoviča-Pronevska Helena}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] +[[Kategoreja:Rakstinīki]] + qw82cahysmmxj92yuari5dcnyoqw978 + + + + Aglyunys bazilika + 0 + 1288 + + 29299 + 28569 + 2013-03-11T11:00:07Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2638127]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Aglonas bazilika1.JPG|thumb|200px|Prīškys fasads]] +'''Aglyunys Vysusvātuokuos Jaunovys Marejis dabasūs uzjimšonys bazilika''' — pošu golvonuo [[katuoleiba|katuoļu]] svietneica Latgolā i vysā Latvejā. Atsarūn Aglyunā, [[Aglyunys nūvods|Aglyunys nūvoda]] centrā. + +Kas gods labeibys mieneša 15 dīnā Aglyunā nūteik '''Vysusvātuokuos Jaunovys Marejis dabasūs uzjimšonys svātki''', kas irā vysys [[Latveja|Latvejis]] katuoļu svātceļnīku golasnāgs. + +== Viesture == +Pyrmū kūka bazneicu i kleštoru Aglyunā [[Dominikani|Dominikanu]] kleštornīki pastateja 1700 godā. Kod 1699 godā bazneicā nūtyka guņsnalaime, juos vītā kleštornīki nu 1768 da 1780 gods suoce stateit myurini kleštora nomu i [[baroks|baroka]] stiļa bazneicu ar divejim 60 augstim skarem. + +{{commonscat|Basilica in Aglona|Aglyunys bazilika}} + +[[Kategoreja:Latgolys katuoļu bazneicys]] +[[Kategoreja:Aglyunys nūvods]] + 9rwnquzm0z1rhp5gjtyspr91zvwv6qy + + + + Jākubmīsta Svātuo Gora kleštors + 0 + 1289 + + 28570 + 25583 + 2013-03-08T00:04:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801693]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Jekabpils monastery.JPG||thumb|200px|Svātuo Gora cierkva]] +'''Jākubmīsta Svātuo Gora veirīšu kleštors''' i '''Jākubmīsta Svātuo gora pravoslavu cierkva''' irā Latvejis pravoslavu svietneica i pravoslavu svietceļuojumu golasnāgs. Cierkva i kleštors atsarūn [[Jākubmīsts|Jākubmīstā]], Breiveibys ūļneicā 202. Kleštora teritoreja irā Jākubmīsta viesturiskais centrys. Sūpluok Svātuo Gora cierkvys irā Svātuo Nikolaja Breinumdora cierkva. + +== Viesture == +Pravoslaveibys viesture Jākubmīstā īsasuoce 16 godusymtā, kod nu [[Krīveja|Krīvejis]] pa [[Daugova|Daugovu]] ceļuoja daudzi silejnīku. Niulejuo pravoslavu kleštora apleicīnē nu 1670 da 1675 goda pastateja pyrmū kūka Svātuo Gora cierkvi i sūpluok taipat kleštoru. Apleik cierkvys teritorejai pastateja bīzu myurini sīnu ar saujamlūkom, kas izglobuota da myuslaikim. Piec guņsnelaimem tymā pošā vītā 1887 godā pastateja myurini cierkvu Bizantejis stiļā – krystveida cierkvi ar pīcim kupolim i supluok asūšu zvanineicu. Cierkva irā slavanuo Jakobštatis Vysusvātuokuos Dīvadzymdynuotuojis ikona, deļtuo niule itei vitā irā Latvejis zeimeibys pravoslavu svātceļuojuma golasnāgs. +Niule otkon dora veirīšu Jākubmīsta Svātuo Gora kleštors. Tī dzeivoj 10 ticeibys veiri, kuri dūd paleigu Jākubmīsta tryuceigajim i bezdarbnīkim, poši struodoj goldnīceibā i sovā saimisteibā. Dora biblioteka, svātdinis škola, dvēseliskais seminars ticeibys vuiceibys školuotuojim i virīņa vyrtuve. +Cierkvā dora i krīvu, i latvīšu pravoslavu parapeja. Sevkura mieneša pyrmejuo svātdinē – dīvakolpuošona latvyskai. + +[[Kategoreja:Religeja]] +[[Kategoreja:Jākubmīsts]] + g81fbaifoqhc743751yobag95iduxfv + + + + Rogāļu lelakmiņs + 0 + 1290 + + 29786 + 21708 + 2013-04-15T01:38:07Z + + Addbot + 1801 + + + wikitext + text/x-wiki + [[Fails:Rogali stone.jpg|thumb|260px|Rogāļu lelakmiņs pavasarī]] +'''Rogāļu lelakmiņs''' - vaļsteibys sorgojamais dobys pīminieklis. Atsarūn [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Kūku pogosts|Kūku pogosta]] Rogāļu solā. + +Rogāļu akmiņs irā vīns nu pošu lelūs akmiņu Latgolā. Akmiņs atsaguls Rogāļu ryuča malē, natuoli nu ryuča ītakys [[Daugova|Daugovā]]. Da akmiņa var daīt pa īriedeitu dobys stygu. Daugovys malē skaiškys apsavierīņs da Uobeļu solom - prīškā Mozuo Uobeļu (Fogta) sola, zamyn pa straujai - Leluo Uobeļu (Burkuona) sola, iz kurys treis dzeivuojamuos sātys. +Pamatmasa - granits. Rasšanuos vīta - Kareleja. Māri: garums - 6,5 m; plotums - 4,6 m; augstums - 3,7 m; apleikmārs - 18,5 m; vydums - 40 m3. + +[[Kategoreja:Latgolys dobys pīminiekli]] +[[Kategoreja:Kūku pogosts]] + fz9onsbc1vnba9qll1kk35j8sb6b3lf + + + + Rogāļu akmiņs + 0 + 1291 + + + 12936 + 2011-04-06T10:27:16Z + + Roalds + 50 + + "[[Rogāļu akmiņs]]" puorsauču par "[[Rogāļu lelakmiņs]]": konkretizaceja + wikitext + text/x-wiki + #REDIRECT [[Rogāļu lelakmiņs]] + ezw8z2fqxhbuqg1737ew5blyub2wa1z + + + + Jākubmīsta Svātuo Gora cierkva + 0 + 1292 + + + 12939 + 2011-04-06T10:32:37Z + + Roalds + 50 + + "[[Jākubmīsta Svātuo Gora cierkva]]" puorsauču par "[[Jākubmīsta Svātuo Gora kleštors]]": cierkva irā kleštora sadorā + wikitext + text/x-wiki + #REDIRECT [[Jākubmīsta Svātuo Gora kleštors]] + fjjn4v52p3pq6b8vaey357akn3iaw2q + + + + Kategoreja:Lītova + 14 + 1332 + + 28571 + 26265 + 2013-03-08T00:04:49Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 155 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4368380]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|Lithuania|Lītova}} + +[[Kategoreja:Europys Savīneibys dalinīkvaļsteibys]] +[[Kategoreja:Europys vaļsteibys]] +[[Kategoreja:Baļtejis vaļsteibys]] + l9vjejm9urfbyhm4917ljppr9itrxok + + + + Amerikys Saškierstuos Vaļsteibys + 0 + 1334 + + 31885 + 31875 + 2017-02-12T14:31:27Z + + Silraks + 2269 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''United States of America'''<br />'''Amerikys Saškierstuos Vaļsteibys'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of the United States.svg|150px|border]] +| align="center" width="140px" | [[Fails:US-GreatSeal-Obverse.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:United_States_(orthographic_projection).svg|300px]] +|- +|| Golvysmīsts || [[Vašingtons]] +|- +|| Vaļsteibys volūda || [[anglīšu volūda]] (''de facto'') +|- +| Prezidents || [[Donalds Tramps]] +|- +| Viceprezidents || [[Maiks Penss]] +|- +|| Pluots || 9 826 630 km² +|- +|| Dzeivuotuoju skaits || 324 099 593 (2016) +|- +|| [[Laika zona]]<br />-vosorā || UTC-5 — UTC-10<br />UTC-4 — UTC-10 +|} +'''Amerikys Saškierstuos Vaļsteibys''', '''ASV''' ({{Vol-en|United States}}) — vaļsteiba [[Pūstumu Amerika|Pūstumu Amerikā]]. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + + +<gallery perrow="5"> +Image:Lexington Battle Green, Lexington MA.jpg +Image:0326New York City Statue of Liberty.JPG +Image:Times Square 1-2.JPG +Image:Golden Gate Bridge Clear.JPG +Image:Apollo 15 flag, rover, LM, Irwin cropped.jpg +</gallery> + + +{{Nadabeigts rakstīņs}} + +{{Amerikys vaļsteibys}} + +[[Kategoreja:Pūstumamerikys vaļsteibys]] + 6hxddzmvcirvsqjqvpuygusdnj0z8e0 + + + + ASV + 0 + 1335 + + + 13042 + 2011-04-07T09:40:00Z + + Viskonsas + 144 + + Pāradresē uz [[Amerikys Saškierstuos Vaļsteibys]] + wikitext + text/x-wiki + #REDIRECT [[Amerikys Saškierstuos Vaļsteibys]] + cya8txdzf0ekxg4u58ig0d4z9dn8xc8 + + + + Taiss:Mod + 10 + 1339 + + 29286 + 28008 + 2013-03-11T10:58:59Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 268 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5611452]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + <includeonly>{{ {{{|safesubst:}}}#ifexpr:({{{2}}})=0|0|{{ {{{|safesubst:}}}#ifexpr:(({{{1}}})/({{{2}}}))=((({{{1}}})/({{{2}}}))round 0)|0|{{ {{{|safesubst:}}}#ifexpr:(({{{1}}})/({{{2}}}))>0 and(({{{1}}})/({{{2}}}))<1|{{ {{{|safesubst:}}}#expr:{{{1}}}}}|{{ {{{|safesubst:}}}#expr:({{{1}}})-((((({{{1}}})/({{{2}}}))-0.5)round 0)*({{{2}}}))}}}}}}}}</includeonly><noinclude> +See documentation of [[:en:Template:Mod]] +</noinclude> + ns8erun5tol4lf586m8gpoiwv49bw7p + + + + Taiss:Softredirect + 10 + 1341 + + 30983 + 30344 + 2015-10-19T20:11:41Z + + לערי ריינהארט + 3162 + + improuved to [[:{{{1}}}|{{{2|{{{1}}}}}}]] using m:Soft redirect|soft redirect - added BiDi safety - LANG="en" dir="ltr" + wikitext + text/x-wiki + [[Image:Redirectltr.png|#REDIRECT ]]<span class="redirectText" id="softredirect">[[:{{{1}}}|{{{2|{{{1}}}}}}]]</span><br /><span style="font-size:85%; padding-left:52px;" LANG="en" dir="ltr" >This page is a [[m:Soft redirect|soft redirect]].</span><noinclude> +</noinclude> + d6m8rw3a9inyyso2kzanofrr3ya961w + + + + Taiss:Legend + 10 + 1345 + + 16575 + 16573 + 2011-08-30T15:02:01Z + + Dark Eagle + 34 + + + Atcēlu [[Special:Contributions/Dark Eagle|Dark Eagle]] ([[User talk:Dark Eagle|Diskusija]]) izdarīto izmaiņu 16573 + wikitext + text/x-wiki + <includeonly><div><span style="display:inline-block; width:1.5em; height:1.5em; margin:1px 0; border:{{{border|1px solid {{{outline|black}}}}}}; background-color:{{{1|transparent}}}; color:{{{textcolor|black}}}; font-size:{{{size|100%}}}; text-align:center;">{{#if:{{{text|}}}|<span style="font-size:95%;">{{{text}}}</span>|&nbsp;}}</span>&nbsp;{{{2|}}}</div></includeonly><noinclude>{{doc}}</noinclude> + try30lbplr5zvqi6jzqf3ui4pxbs0er + + + + Taiss:Legend/doc + 10 + 1347 + + 30034 + 19379 + 2013-08-16T15:46:50Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5636063]] + wikitext + text/x-wiki + <includeonly> +[[Kategoreja:Vikipedeja:Taisi]] + +[[ar:قالب:مفتاح خريطة]] +[[cy:Nodyn:Legend]] +[[nn:Mal:Legend]] +[[no:Mal:Legend]] +[[tr:Şablon:Legend]] +[[uk:Шаблон:Legend]] +</includeonly> + drzctb3zpgt6fnomg33v98y5ib26m29 + + + + Taiss:Vol-fr + 10 + 1348 + + 29959 + 29901 + 2013-08-01T07:07:43Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6233021]] + wikitext + text/x-wiki + {{langWithName|fr|praņcīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|fr]] + +</noinclude> + 6gs5ctzbxirjo25zangr6kloscgybk4 + + + + Taiss:Lang-fr + 10 + 1349 + + + 13130 + 2011-04-10T05:17:35Z + + Glossologist + 79 + + Pāradresē uz [[Taiss:Vol-fr]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Vol-fr]] + 6n8kqpoactt5dfggfex0654w4vtf0kx + + + + Praņcīšu volūda + 0 + 1350 + + 30289 + 28574 + 2014-04-19T18:30:59Z + + Onuphriate + 2353 + + wikitext + text/x-wiki + {{Infoskreine Volūda + |name = Praņcīšu volūda + |nativename = français + |pronunciation = [fʁɑ̃sɛ] + |states = [[Vokoru Europa]], [[Kanada]], [[Vokoru Afrika]], [[Centraluo Afrika]], [[Karibu jiurys solys]], [[Okeaneja]] + |speakers = dzymtuo volūda: 75 mil.<ref name="weber">[http://www2.ignatius.edu/faculty/turner/worldlang.htm Languages of the World (Charts)]</ref>—110 mil.<ref name="tlfq">[http://www.tlfq.ulaval.ca/axl/francophonie/francophonie.htm Francophonie<!-- Bot generated title -->]</ref>, kūpā (dzymtuo i ūtruo volūda): 178 mil.<ref name="tlfq"/>—265 mil.<ref name="weber"/> +|iso1 = fr + |iso2 = fri + |iso2b = fre + |iso2t = fra + |iso3 = fra + |familycolor = Indoeuropīšu + |fam1 = [[Indoeuropīšu volūdys|Indoeuropīšu]] + |fam2 = [[Itaļu volūdys|Itaļu]] + |fam3 = [[Romanīšu volūdys|Romanīšu]] + |fam4 = [[Vokoru romanīšu volūdys|Vokoru romanīšu]] + |fam5 = [[Gallu-iberīšu volūdys|Gallu-iberīšu]] + |fam6 = [[Gallu-romanīšu volūdys|Gallu-romanīšu]] + |script = [[Latiņu alfabets|Latiņu]] ([[praņcīšu alfabets|praņcīšu variants]]) + |rank = 11 (dzimtuo), kūpā: 3—7 + |nation = {{Collapsible list |titlestyle=font-weight:normal; background:transparent; text-align:left;|title=30 vaļsteibys| +[[Beļgeja]]| +[[Benins]]| +[[Burkina Fasa]]| +[[Burundi]]| +[[Centraluos Afrikys Republika]]| +[[Čads]]| +[[Džibuts]]| +[[Ekvatora Gvineja]]| +[[Elefanta Kaula Mola]]| +[[Gabons]]| +[[Gvineja]]| +[[Haits]]| +[[Kamerūns]]| +[[Kanada]]| +[[Komoru Solys]]| +[[Konga Demokratiskuo Republika]]| +[[Konga Republika]]| +[[Libans]]| +[[Luksemburga]]| +[[Madagaskars]]| +[[Mali]]| +[[Monaks]]| +[[Nigers]]| +[[Praņceja]]| +[[Ruanda]]| +[[Seišelu Solys]]| +[[Senegals]]| +[[Šveicareja]]| +[[Toga]]| +[[Vanuatu]]| +}}<br />{{Collapsible list |titlestyle=font-weight:normal; background:transparent; text-align:left;|title=13 dasaiteiguos teritorejis| +[[Džerseja]]| +[[Gernseja]]| +[[Jaunuo Kaledoneja]]| +[[Klipertona sola]]| +[[Majots]]| +[[Pondišeri]]| +[[Praņcejis Dīnavydu i Antarktikys Zemis]]| +[[Praņcīšu Polinezeja]]| +[[Senbartelmi]]| +[[Senmartens]]| +[[Senpjers i Mekelons]]| +[[Valle d'Aosta]]| +[[Voliss i Funuts]]| +}}<br />Nazcik vydtautysku organizaceju + |agency = [[Praņcīšu akademeja]] (''Académie française'') +|map=[[Fails:New-Map-Francophone World.PNG|center|250px|border]] +{{legend|#0049a2|Regioni, kur jei irā dzymtuo volūda}} +{{legend|#006aFF|Regioni, kur jei irā oficialuo volūda}} +{{legend|#8ec3ff|Regioni, kur jei irā ūtruo volūda}} +{{legend|#00ff00|Regioni, kur jei irā minoritetu volūda}} +}} +'''Praņcīšu valūda''' (''français'', [[IPA]]: [fʁɑ̃sɛ]) — [[romanīšu volūdys|romanīšu volūda]], kuru kai dzymtū ronoj leluokuo daļa cylvāku nu [[Praņceja|Praņcejis]], praņciski runojūšuos [[Šveicareja|Šveicarejis]], [[Valoneja|Valonejis]], [[Briseļs|Briseļa]] ([[Beļgeja]]) i [[Kvebeks|Kvebeka]] ([[Kanada]]), kai i minoritetu grupys cytuos vaļsteibuos. Praņcīšu kai ūtruos volūdys runuotuoji irā paplateiti daudzuos pasauļa daļuos, lelums nu kurim dzeivoj [[Praņcīšu volūda Afrikā|praņciski runojūšajā Afrikā]], vysuvairuok [[Gabons|Gabonā]] (80%), [[Mauriceja|Mauricejā]] (72,7%) i [[Elefanta Kaula Mola|Elefanta Kaula Molā]] (70%).<ref name=2007_report>[http://www.amazon.fr/dp/2098821778 ''La Francophonie dans le monde 2006–2007'']. [http://www.nathan.fr Nathan], [[Parižs|Paris]], 2007.</ref> Pa izškireigim apskaitim jei irā dzymtuo volūda nu 75<ref name="weber"/> leidz 110 milijonim<ref name="tlfq">[http://www.tlfq.ulaval.ca/axl/francophonie/francophonie.htm Francophonie]</ref> i ūtruo volūda 190 milijonim cylvāku.<ref name="weber"/> Bez tuo fraņcīšu volūdu vuicuos kai svešvolūdu leidz apmāram 200 milijonim cylvāku, padorūt jū par ūtrū vysuvairuok pīsovynojamūs volūdu pasaulī piec anglīšu volūdys.<ref>[http://www.stgeorges.co.uk/foreign-languages/french-courses/ Saint George International]</ref> + +== Nūruodis i olūti == +{{reflist}} + + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Romanīšu volūdys]] +[[Kategoreja:Volūdys]] +[[Kategoreja:Praņceja]] + 1oqno9xmlx7qcwjhj6erinsehslqfbx + + + + Taiss:Vol-nl + 10 + 1351 + + 30049 + 14780 + 2013-08-16T15:47:04Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6203857]] + wikitext + text/x-wiki + {{langWithName|nl|nīderlandīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|nl]] + +</noinclude> + l76zi1pzraca8pft6s7m1p8z3kcp3j4 + + + + Taiss:Lang-nl + 10 + 1352 + + + 13137 + 2011-04-10T08:14:17Z + + Glossologist + 79 + + Pāradresē uz [[Taiss:Vol-nl]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Vol-nl]] + hmvhfpzm9w6uprnoi881xdswu30uflc + + + + Daugpiļs styprūtne + 0 + 1353 + + 28575 + 20614 + 2013-03-08T00:05:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2666994]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Daugavpils fortress 05.jpg|thumb|250px|Styprūtne nu putna skriejīņa]] +'''Daugpiļs styprūtne''' (seņuok '''Dynaburga styprūtne''') — stilistiskai monumentals kara apsardzeibai paradzātu statņu komplekss [[Daugpiļs|Daugpilī]], pa obejom pusem [[Daugova|Daugovys]] upei. [[Klasicizmys|Klasicizma]] stiļa ansamblis, vaļstiskuos zeimeibys mīstustateibys i arhitekturys pīminieklis, vīneigais nu [[19 godu symts|19 godusymta]] bez zeimeigu puormeju izaglobuojs ituo tipa kara apcītynuojums Zīmeļu Europā. Daugpiļs styprūtne nomināta [[UNESCO]] Pasauļa puormaņtīņa objekta statusam dabuot. + +{{commonscat|Daugavpils fortress|Daugpiļs styprūtne}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Daugpiļs]] +[[Kategoreja:Militaruo arhitektura]] + 3xq0ws0dunt5vzl72947y60i9b5wz8i + + + + Rēzekne + 0 + 1354 + + + 13167 + 2011-04-10T14:48:14Z + + Dark Eagle + 34 + + + Pāradresē uz [[Rēzne]] + wikitext + text/x-wiki + #REDIRECT [[Rēzne]] + 1c0k6j64s7wky8dezy8jk1cew0gxqe1 + + + + Kategoreja:Militaruo arhitektura + 14 + 1358 + + 29530 + 14512 + 2013-04-02T18:57:21Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 16 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9019706]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Fortification|Militaruo arhitektura}} + +[[Kategoreja:Arhitektura]] +[[Kategoreja:Kari]] + bzwk8xrp2djbmed2gov98xdopj6segd + + + + Kieniskais lelspuorņs + 0 + 1359 + + 30794 + 30791 + 2015-07-14T21:58:12Z + + AgrisR + 2520 + + + wikitext + text/x-wiki + [[Fails:Ai(loz).JPG|thumb|250px|Kieniskais lelspuorņs]] +[[File:Anax imperator Exuvie MHNT Parc de la Maourine.jpg|thumb|Exuvie]] +'''Kieniskais lelspuorņs''' ({{Vol-la|Anax Imperator}}) — pošlelais spuorņs [[Latgola|Latgolā]]. Īraksteits [[Latveja|Latvejis]], [[Lītova|Lītovys]] i [[Boltkrīveja|Boltkrīvejis]] [[Sorkonā gruomota|Sorkonajā gruomotā]]. + +Kuopuri pliesieji, raistuos 1—2 godu, dzeivoj iudiņtverēs iudiņauguoju vydā. Saaugušī skrīn apreļa (sulu) — seņtebra (rudiņa) mienesī. + +Latvejā itei spuorņu škira pyrmū reizi aptykta 1939 godā Latgolys azarūs — [[Dreidzs|Dreidzī]], Siverī, Cārmynā i Ojatā. Škira sateikama teirūs, eutrofūs azarūs. Piec 1962 gods škira vaira navā maneita.<ref>[http://latvijas.daba.lv/aizsardziba/augi_dzivnieki/spares.shtml (''Latvyskai'') Latvejis sorgojamī auguoji i dzeivinīki]</ref> + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commonscat|Anax imperator|Kieniskais lelspuorņs}} + +{{DEFAULTSORT:Kieniskais lelspuorņs}} + +[[Kategoreja:Dzeivinīki]] + 5s06tbmpoooh7uxt9qreoox5bwtfccg + + + + Franču volūda + 0 + 1360 + + + 13231 + 2011-04-10T23:27:57Z + + Glossologist + 79 + + Pāradresē uz [[Praņcīšu volūda]] + wikitext + text/x-wiki + #REDIRECT [[Praņcīšu volūda]] + grsh4s4fxyeov99mxuywrval0qfebn9 + + + + Taiss:Welcome + 10 + 1363 + + + 13253 + 2011-04-11T19:51:09Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:Vasals]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Vasals]] + 3ay8e4dnqtkggt6w7fhvhpyxz3lwq07 + + + + Kieneniskais lelspuorņs + 0 + 1364 + + + 13269 + 2011-04-12T07:20:12Z + + Stiernīts~ltgwiki + 315 + + "[[Kieneniskais lelspuorņs]]" puorsauču par "[[Kieniskais lelspuorņs]]": Volūdys lykumi + wikitext + text/x-wiki + #REDIRECT [[Kieniskais lelspuorņs]] + dd8izwpzb7av7fvxh62ti47nzumlosr + + + + Smartfons + 0 + 1368 + + + 13329 + 2011-04-13T20:36:21Z + + Glossologist + 79 + + Pāradresē uz [[Pruottelefons]] + wikitext + text/x-wiki + #REDIRECT [[Pruottelefons]] + 76adhfbnt702z1sozkyzmvhcksmpcxb + + + + Taiss:Lang-en + 10 + 1369 + + + 13335 + 2011-04-13T20:48:59Z + + Glossologist + 79 + + Pāradresē uz [[Taiss:Vol-en]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Vol-en]] + 44mmdyu528wlpl071f2mt3nopfpffbv + + + + Taiss:Commons cat + 10 + 1370 + + + 13336 + 2011-04-13T20:51:18Z + + Glossologist + 79 + + Pāradresē uz [[Taiss:Commonscat]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Commonscat]] + f8qdw7s6qf6lj6edke4ydz9v6es4mwt + + + + Taiss:Stub + 10 + 1371 + + + 13343 + 2011-04-13T21:11:18Z + + Glossologist + 79 + + Pāradresē uz [[Taiss:Nadabeigts rakstīņs]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Nadabeigts rakstīņs]] + pl5ev5ik2dg117mwqm13dr30w9fcdf8 + + + + MPLS + 0 + 1372 + + + 13345 + 2011-04-13T21:15:52Z + + Glossologist + 79 + + Pāradresē uz [[IP MPLS]] + wikitext + text/x-wiki + #REDIRECT [[IP MPLS]] + ivdqaknureqagskd6jrenc8rija70e0 + + + + Latgaļu himna + 0 + 1394 + + + 31932 + 31182 + 2017-03-21T08:14:28Z + + タチコマ robot + 952 + + + Bot: Fixing double redirect to [[Latgolys himna]] + wikitext + text/x-wiki + #REDIRECT [[Latgolys himna]] + j0d54fgh29zskb26942hhxeirrxfo81 + + + + Latgaļu etnokulturys centrys + 0 + 1397 + + + 13579 + 2011-04-21T10:17:35Z + + Stiernīts~ltgwiki + 315 + + [[Latgaļu etnokulturys centrys]] tyka puorsauktys par [[Latgalīšu etnokulturys centrys]], lītojūt puoradresaceju: Muns rakstīņs + wikitext + text/x-wiki + #REDIRECT [[Latgalīšu etnokulturys centrys]] + szdl61eqx2lzh4n3yag90xywq0qquhe + + + + Kopenhaga + 0 + 1400 + + 28577 + 27861 + 2013-03-08T00:30:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 146 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1748]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Kopenhaga +| atvaiga_pasauka = Kopenhagen Innenstadt.JPG +| atvaiga_aprakstejums = Kopenhagys panorama +| gerba_atvaigs = Københavns byvåben 1894.png +| gerba_pasauka = Kopenhagys gerbs +| pluots = 455,61 km² +| dzeivuotuoji_gods = 2011 +| dzeivuotuoju_skaits = 1 199 224 +| bīzeiba = 2593 +| teiklavīta = www.visitcopenhagen.dk/ +}} + +'''Kopenhaga''' ({{vol-da|København}}) — [[Daneja|Danejis]] golvysmīsts i pats leluokais mīsts. + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of France.svg|25x15px|Praņceja]] Pariža, [[Praņceja]] +| [[Fails:Flag of France.svg|25x15px|Praņceja]] Marseja, Praņceja +| [[Fails:Flag of Germany.svg|25x15px|Vuoceja]] Berlins, [[Vuoceja]] +| [[Fails:Flag of the Czech Republic.svg|25x15px|Čekeja]] Praga, [[Čekeja]] +| [[Fails:Flag of Iceland.svg|25x15px|Īslandeja]] Reikjavika, [[Īslandeja]] +|} + +== Galereja == +<gallery> +File:Rosenborg cph.jpg +File:Nyhavn 9-15 København.jpg +File:Copenhagen City Hall.jpg +</gallery> + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Daneja]] +[[Kategoreja:Golvysmīsti]] + jr83z03gumq9hlni8yw55bk9jhz75o5 + + + + Kategoreja:Daneja + 14 + 1403 + + 28578 + 26822 + 2013-03-08T00:30:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 151 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4367478]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Denmark|Daneja}} +{{catmain}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 5xtxgoafukuw3mdfnuje816jmue5xyb + + + + Ingars Gusāns + 0 + 1404 + + 13706 + 13705 + 2011-04-25T18:36:39Z + + Vucyns~ltgwiki + 435 + + + wikitext + text/x-wiki + '''Ingars Gusāns''' (dzims 1974 gods februara 17 dīnā [[Rēzne|Rēznē]]) – latgalīšu zininīks, [[Rēznis Augstškola|Rēznis Augstškolys]] docents, latgalīšu rokmuzykants (vokalists i gitarists). Muzykā pazeistams ar vārtuvis vuordim [[Sovvaļnīks]] i (agruok) [[Sedmenc]]. + +Beidzs [[Rēznis 5 vydsškola|Rēznis 5 vydsškolu]] i [[Latvejis Universitets|Latvejis Universiteta]] Filologejis fakuļtetu. 2007 godā dabuojs filologejis doktora grada par disertaceju "[[Kalimahs|Kalimaha]] himnu poetika". Da 2009 godam bejs vuiceituojs Latvejis Universitetā. Nu 2010 gods nūtaļ dzeivoj Rēznē, dora Rēznis augstškolā par docentu, vuica senejūs greku i latiņu volūdu. Tāmātuojs Regionalistikys institutā Rēznē. + +Dāls Mareks, dzims 2007 godā. [[Kavieklis]] – [[spininguošona]] + +== Nūruodis == + +* [[Sovvaļnīks]] + + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + kg5t0y96rkgffpr98ofbi8wklq1zg89 + + + + Kalimahs + 0 + 1406 + + 28579 + 27339 + 2013-03-08T00:31:00Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 39 interwiki links, now provided by [[d:|Wikidata]] on [[d:q192417]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Kalimahs''' ({{vol-el|Καλλίμαχος}}; * ap 310—305 g. p. Kr. [[Kirene|Kirenē]], † ap 240 g. p. Kr.) – vīns nu vysuzeimeigūs [[helenizmys|helenizma]] laiku [[Senejuos Grekeja|senejūs greku]] ailinīku. Kalimahs raksteja [[elegeja|elegejis]], [[epigrama|epigramys]], [[epiliums|epiliumus]], [[himna|himnys]], taipoš ziniskys dobys dorbus. Kalimaha radīni pamatuši lelu ītaku iz romīšu poetim [[Ovidejs|Ovideju]], [[Katuls|Katulu]] i vysucīšuok [[Seksts Propercejs|Sekstu Properceju]]. + +Ap 290 g. p. Kr. Kalimahs ass pamets Kirenu i laidīs da Aleksandrejai, kur nu reizis darejs par školuotuoju, piec dorbuojīs [[Ptolemajs II|Ptolemaja II]] palacūs, taipoš darejs izslyvušajā [[Aleksandrejis biblioteka|Aleksandrejis bibliotekā]]. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Senejūs greku ailinīki]] + fr3dvuogzjh1da2bvf6m8736o4s3ek3 + + + + Oskars Seiksts + 0 + 1408 + + 31819 + 31812 + 2016-12-09T09:36:35Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31812 dated 2016-12-09 09:02:44 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Oskars Seiksts''' (dzims 1973 g. novembra 15 d. [[Rēzne|Rēznē]]) – latgalīšu ailinīks, rakstinīks, literaturys kritiks, latgalīšu postmodernuos literaturys aizsuociejs. Darejs lelu ītaku cytim myuslaiku latgalīšu autorim – [[Ingrida Tārauda|Ingridai Tāraudai]], [[Valeņtins Lukaševičs|Valeņtinam Lukaševičam]], [[Līga Rundāne|Līgai Rundānei]], [[Juoņs Ryučāns|Juoņam Ryučānam]], [[Līga Gagaine-Deksne|Līgai Gagainei-Deksnei (Leigai Seikstai)]] i ct. + +== Biografeja == +Beidzs Rēznis 5 vydsškolu, vuicejīs [[Rēznis Augstškola|Rēznis Augstškolā]]. Dzeivoj [[Rēzne|Rēznē]] i [[Rēznis nūvods|Rēznis nūvodā]]. +Latvejis rakstinīku savīneibys bīdris nu 1998 gods. + +==Literaruo darbeiba== +Dzeivuļus jiems raksteit vydsškolys laikā. Pyrmuos publikacejis – Rēznis rajona laikrokstā ''Darba Karogs'' (1990) i ''Mōras Zeme'' (1991). +Dzeivuli, eisproza, rakstīni ap latgalīšu volūdu i literaturu nūdrukavuoti laikrokstūs ''Latgolas Bolss'', ''Zemturs'', žurnalā ''Jaunuo Dzeive'', laikagruomotā ''Tāvu zemes kalendars'' i cytur. + +Caur sovu pyrmū gruomotu ''Seppuku iz saulis vādara'' (1995, kūpā ar [[Valeņtins Lukaševičs|Valeņtinu Lukaševiču]]) devs kvalitativai jaunu pagrīzīni latgalīšu poezejā – i tematikys, i muokslyskuos izsaceibys, i auteņtiskuos volūdys vierteibu lītuojuma zinē. Pīrakstejs pyrmū postmodernizma romanu latgalīšu literaturā ''Valerjana dzeive i redzīni'' (1996, kūpā ar [[Valeņtins Lukaševičs|Valeņtinu Lukaševiču]]). Kūplasīnī ''Pagrauda'' (1999) publiciejs vierteigys esejis, pasūleidams novatorisku, myuslaiceigu pasavierīni iz latgalīšu literaturys viesturis. + +Ar Oskara Seiksta vuordim komponātys dzīsmis 2009 i 2011 godā izlaids Latgalīšu rokmuzykants [[Sovvaļnīks|Sovvaļnīks]] (īguoja albumūs ''Sūpluok'' i ''Bolts susātivs''). + + +* '''Gruomotys''' +** ''Seppuku iz saulis vādara'' (1995, ailis, kūpā ar [[Valeņtins Lukaševičs|Valeņtinu Lukaševiču]]) +** ''Valerjana dzeive i redzīni'' (1996, romans, kūpā ar [[Valeņtins Lukaševičs|Valeņtinu Lukaševiču]]) +** ''Pagrauda'' (1999, autors i sastateituojs; latgalīšu jaunūs autoru ailis, O. Seiksta literaturkritiskuos esejis, poezejis atvārsumi nu anglīšu i lītaunīku volūdu) +** ''Reitišku mads'' (2000, romans, kūpā ar [[Līga Gagaine-Deksne|Leigu Gagaini]]) + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + e3o2l3u5ux84ugrca8lxme04kv2313a + + + + Ingrida Tārauda + 0 + 1409 + + 31273 + 31272 + 2016-01-11T13:35:04Z + + 109.76.124.101 + + Papildināts + wikitext + text/x-wiki + '''Ingrida Tārauda''' (dzymuse 1971 g. juņa 30 d. Rēznis rajona (niule — [[Rēznis nūvods]]) [[Drycāni|Drycānu]] pogosta Kuzmu solā) — latgalīšu ailineica, lirike. Davuse zeimeigu īlicīni latgalīšu lirikys raisteibā, siņtezādama latgalīšu literarū tradiceju ar myuslaiceigom izsaceibys formom<ref>Valeņtins Lukaševičs, Ceļavārdi // Vīgla byušonys ironeja, Rēzekne, 2000, 3 psl.</ref>. + +Par '''Ingridu Tāraudu''' vairuok var izlaseit juos sātys lopā iinngrida.wordpress.com + + +== Biografeja == +Vuicejusēs Drycānu vydškolā, studiejuse Daugpiļs Universitetā filologeju. Darejuse [[Vacstrūžāni|Vacstrūžānu]] pamatškolā, [[Cyskodi|Cyskodu]] vydsškolā, Cyskodu bārnunomā, [[Gaujīne|Gaujīnis]] vydsškolā. Radeigajai izaugsmei ītaku darejs [[Oskars Seiksts|Oskars Seiksts, Valentins Lukaševics]] i cyti juos audzis jaunī latgalīšu literati. Latvejis Rakstinīku savīneibys bīdre nu 2007 gods. + +== Literaruo darbeiba == +Pyrmuo publikaceja – dzeivuļs baļtīšu volūdā laikrokstā ''Latvijas Jaunatne'' 1987 godā. Pyrmuo leluokuo publikaceja (latgalīšu volūdā) — jaunūs autoru kūplasīnī ''Pagrauda'' (1999). Ailis taipoš publicātys laikagruomotā ''Tāvu zemes kalendars'', rokstu lasīnī ''Olūts'', aļmanahūs ''Rēzekne'' i ''Luna'', latgalīšu poezejis antologejuos (''Latgalīšu dzejas antologija'' (2001, sast. V. Valeinis), i ''Susātivs'' (2008, sast. I. Šuplinska), škārsteikla laikrokstā ''LaKuGa'' i cytur. Sovi lirikys lasīni - ''Vīgla byušonys ironeja'' (2000) i ''Izdadzynuota sirds'' (2001). + +Poezejai soveigi pasauļa dazinis paradoksi, iņtimūs puordzeivuojumu atspeidīni. Izsaceiba dobyska i breiva, liriskuo varūne pasamona dūt i jimt vīnulaik - atsaļaudama runuot ap sovu dobyskū sīvīteibu. <ref>Latgalīšu dzejas antologija, sast. Vitolds Valeiņs, Rēzekne, 2001, 399 psl.</ref> + +* '''Gruomotys''': +** ''Vīgla byušonys ironeja'' (2000) +** ''Izdadzynuota sirds'' (2001) +** ''Boltais šokolads (2012)'' + + +* '''Svareiguokys publikacejis kūplasīņūs''' +** ''Starp sliekšņiem un jumtiem'' (sast. I. Atpile-Jugane 2002) +** ''Pie–la–vī-ties: Rēzeknes augstskolas jauno autoru krājums'' (sast. I. Šuplinska, 2003) +** ''Saulis spaiti iz spīgeļu. Лучи по зеркалам'' (latgalīšu i krīvu volūdā (sast. I. Magazeinis, F. Osina, 2007). +** ''Susātivs: myusdīnu latgalīšu dzejis antologeja'' (sast. I. Šuplinska, 2008) + +==Nūruodis== +{{Nūruodis}} + +==Uorejuos nūruodis== +[http://latgola.lv/literatura/poezeja/ingrida.tarauda/] + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + pxml5kgqlv5ek7fkls4xfnkzqeim4vo + + + + Valeņtins Lukaševičs + 0 + 1410 + + 22186 + 13799 + 2012-04-01T15:08:38Z + + Stiernīts~ltgwiki + 315 + + wikitext + text/x-wiki + '''Valeņtins Lukaševičs''' (dzims 1968 g. oktobra 27 d. [[Rēzne|Rēznē]]) – latgalīšu ailinīks, rakstinīks, literaturzininīks, latgalīšu postmodernuos literaturys aizsuociejs. + + +== Biografeja == + +Beidzs Rēznis 5 vydsškolu (1986), [[Daugpiļs Universitets|Daugpiļs Universitetu]] (bakalaura grads 1993, magistra grads 1996). Nu 1993 gods dora Daugpiļs Universitetā par vuiceituoju. 2008 godā dabuojs filologejis doktora grada par disertaceju ''[[latgalīši|Latgalīšu]] 20 godusymta proza [[Latgola|Latgolys]] literariskajā pluotā''. Niule Daugpiļs Universiteta docents, vuica literaturu. + +== Literaruo darbeiba == + +Pyrmuo publikaceja – Rēznis rajona laikrokstā ''Darba Karogs'' 1989 g. Dzeivuli publicāti laikagruomotā ''Tāvu zemes kalendars'', laikrokstā ''Mōras Zeme'', žurnalā ''Jaunuo Dzeive'', almanahā ''Luna'', latgalīšu jaunūs literatu kūplasīnī ''Pagrauda'' (1999) i ct. Caur sovu pyrmū gruomotu ''Seppuku iz saulis vādara'' (1995, kūpā ar [[Oskars Seiksts|Oskaru Seikstu]]) devs kvalitativai jaunu pagrīzīni latgalīšu poezejā – i tematikys, i muokslyskuos izsaceibys, i auteņtiskuos volūdys vierteibu lītuojuma zinē. Pīrakstejs pyrmū postmodernizma romanu latgalīšu literaturā ''Valerjana dzeive i redzīni'' (1996, kūpā ar [[Oskars Seiksts|Oskaru Seikstu]]) + +Latvejis Rakstinīku savīneibys bīdris nu 1998 gods. + +Latgalīšu rokmuzykants [[Sovvaļnīks|Sovvaļnīks]] 2009 i 2011 godā izlaids ar Valeņtina Lukaševiča vuordim komponātys dzīsmis. + +* '''Gruomotys''' +** ''Seppuku iz saulis vādara'' (1995, ailis, kūpā ar [[Oskars Seiksts|Oskaru Seikstu]]) +** ''Valerjana dzeive i redzīni'' (1996, romans, kūpā ar [[Oskars Seiksts|Oskaru Seikstu]]) +** ''Kuozynda'' (2005, ailis) +** ''Vot taidi vot i batvini'' (2006, ailis) +** ''Bolti burti'' (2011, ailis) + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + 7337i29zm38m89raxzjt9amb1sfxauq + + + + Daugpiļs universitets + 0 + 1411 + + + 13806 + 2011-04-28T04:20:15Z + + Glossologist + 79 + + "[[Daugpiļs universitets]]" puorsauču par "[[Daugpiļs Universitets]]" + wikitext + text/x-wiki + #REDIRECT [[Daugpiļs Universitets]] + 4azwdw7p4wt5gfptztp61merdx021ub + + + + Juoņs Ryučāns + 0 + 1412 + + 13857 + 13837 + 2011-04-28T18:06:26Z + + Kikos + 166 + + typo + wikitext + text/x-wiki + '''Juoņs Ryučāns''' (pa eistynajam vuordam '''Ivars Magazeiņs'''; dzims 1962 g. marta 27 d. [[Rēznis nūvods|Rēznis nūvoda]] [[Vīmyna pogosts| Vīmyna pogostā]]) – latgalīšu ailinīks, puorvārsuojs, publicists, ļaudyskais dareituojs. [[Atmūda|Atmūdys]] laikā aktivai vadynuojs latgalīšu literaruos volūdys i kulturyskuos dzeivis atdzimšonu. + +==Biografeja== +Vuicejīs [[Malta (Rēznis nūvodā)|Maltys]] vydsškolā, beidzs [[Latvejis Universitets|Latvejis Universiteta]] Uorzemis volūdu fakuļtetu (1985), Ventspiļs augstškolā dabuojs puorvārsuoja specialiteta. Darejs laikrokstā ''Daugavpils Vēstnesis'', laikroksta ''Diena'' Daugpiļs birojā, Daugpiļs mīsta pošvoldā. Dorbuojīs žurnalā ''Jaunuo dzeive'', laikrokstā ''Latgolas Bolss''. Latvejis Rakstinīku savīneibys bīdris nu 2006 gods. Div dāli (dveini). + +==Literaruo darbeiba== +Publikacejis - suocūt nu 20 gs. 80-tūs godu beigu laidīņūs ''Katōļu Dzeive'', ''Mōras Zeme'', ''Jaunuo Dzeive'', ''Latgolas Bolss'', ''Daugavpils Vēstnesis'', ''Latgales Laiks'', laikagruomotā ''Tāvu zemes kalendars'', rokstu lasīnī ''Olūts'' i cytur. + +* '''Gruomotys''' +** ''Seikšaļteņu nūstuošonys'' (2001) +** ''Nūstuošonys apleik tehnogodam'' (2005) + +* '''Svareiguokys publikacejis kūplasīņūs''' +** ''Pagrauda'' (sast. O. Seiksts, 1999) +** ''Saulis spaiti iz spīgeļu. Лучи по зеркалам'' (sast. I. Magazeinis, F. Osina, 2007). + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + j733udtspfouqd57gzg9r7k8syd58rc + + + + Ivars Magazeiņs + 0 + 1414 + + + 13858 + 2011-04-28T18:07:05Z + + Kikos + 166 + + Pāradresē uz [[Juoņs Ryučāns]] + wikitext + text/x-wiki + #REDIRECT [[Juoņs Ryučāns]] + m505c8w8phf4jne9ewz190csleup86u + + + + Magazeiņs + 0 + 1415 + + + 13859 + 2011-04-28T18:07:31Z + + Kikos + 166 + + Pāradresē uz [[Juoņs Ryučāns]] + wikitext + text/x-wiki + #REDIRECT [[Juoņs Ryučāns]] + m505c8w8phf4jne9ewz190csleup86u + + + + Ryučāns + 0 + 1416 + + + 13860 + 2011-04-28T18:07:55Z + + Kikos + 166 + + Pāradresē uz [[Juoņs Ryučāns]] + wikitext + text/x-wiki + #REDIRECT [[Juoņs Ryučāns]] + m505c8w8phf4jne9ewz190csleup86u + + + + Danīšu volūda + 0 + 1417 + + 30291 + 28580 + 2014-04-19T18:32:28Z + + Onuphriate + 2353 + + + wikitext + text/x-wiki + {| border="1" cellpadding="2" cellspacing="0" align="right" width="300" +|----- align="center" +! colspan="2" bgcolor="#DDDDDD" | <big>Danīšu volūda </big> +|----- +| Volūdu lītoj: || [[Daneja]], [[Grenlandeja]], [[Fareru Solys]] +|----- +| Runuotuoju skaits: || dzymtuo ~5,5 milij. +|----- +| valign="top" | Volūdu saime: || +[[Indoeuropīšu volūdu saime|Indoeuropīšu]]<br /> +&nbsp;[[Germanu volūdys|Germanu]]<br /> +&nbsp;&nbsp;[[Pūstumu germanu volūdys|Pūstumu germanu]]<br /> +&nbsp;&nbsp;&nbsp;[[Reitu skandinavu volūdys|Reitu skandinavu]] +|----- +! colspan="2" bgcolor="#DDDDDD" | Vaļsteibys volūda +|----- +| Vaļsteibys volūda: || valign="top" | Daneja i Fareru Solys +|----- +! colspan="2" bgcolor="#DDDDDD" | Volūdys kodi +|----- +| ISO 639-1: || da +|----- +| ISO 639-3: || dan +|} + +'''Danīšu volūda''' (''dansk'') irā germanu grupys volūda, kuru kai dzymtū ronoj leluokuo daļa cylvāku nu [[Daneja|Danejis]], daniski runojūšuos Grenlandejis i Fareru Solu, kai i minoritetu grupys Šlezvigā-Holšteinā, [[Vuoceja|Vuocejā]]. Jei irā dzymtuo volūda 5,5 milijonim cylvāku. + + +{{stub}} + +[[Kategoreja:Indoeuropīšu volūdys]] +[[Kategoreja:Volūdys]] +[[Kategoreja:Daneja]] + 6a4xuorvqbpipv4oc452693bic56zth + + + + Cyskuodu staroveru cierkva + 0 + 1419 + + 29804 + 22521 + 2013-04-15T02:04:02Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Coord|56|27|23|N|27|04|05|E|display=title}} +[[Fails:Tiskadu vecticībnieku baznīca.jpg|250px|right|Cyskuodu cierkva 2004 gods vosorā]] +'''Cyskuodu staroveru cierkva''' irā staroveru dīvanoms [[Rēznis nūvods|Rēznis nūvoda]] [[Sylmolys pogosts|Sylmolys pogostā]]. Atsarūn Cyskuodu solā, natuoli nu Cyskuodu azara. Cierkva irā vīteja māra sorgojamais arhitekturys pīminieklis. + +== Viesture == + +Cyskuodu staroveru cierkva pastateita 18 godusymta pyrmajā pusē. 20 godusymta suokuos nomā nūtyka guņsnalaime, tok 1905 godā atjaunynuots, dora i myuslaikūs. Sylmolys pogostā irā vīna nu pošu lelū staroveru parapeju Latgolā. Dūmuot, ka tei bejuse vīna nu pošu vacū staroveru cierkvu Latgolys soluos. + +== Nūruodis == +* [http://mantojums.lv/?cat=742&lang=lv&KS=OK&prod_sect=9 Cyskuodu staroveru cierkva] Vaļsteibys kulturys pīminiekļu sardzeibys inspekcejis teiklavītā + +{{DEFAULTSORT:Cyskuodu staroveru cierkva}} + +[[Kategoreja:Latgolys staroveru cierkvys]] +[[Kategoreja:Rēznis nūvods]] + sm98r3wqj5h0nil8v1zpqrybhk4lveg + + + + Kategoreja:Latgolys staroveru cierkvys + 14 + 1421 + + 13896 + 2011-05-01T22:49:08Z + + Roalds + 50 + + jauna kategoreja + wikitext + text/x-wiki + [[Category:Latgolys dīvanomi]] + d7x68o5r7wi6454qhrco00a9f9ltj4s + + + + Vikipedeja:Izalaseits atvaigs + 4 + 1422 + + 31397 + 31376 + 2016-04-05T15:53:43Z + + Marcus Cyron + 757 + + + ([[c:GR|GR]]) [[c:COM:FR|File renamed]]: [[File:Lat 295.jpg]] → [[File:Šķeltovas pareizticīgo baznīca (2011).jpg]] [[c:COM:FR#reasons|File renaming criterion #2]]: To change from a meaningless or ambiguous name to a name that describes what the i... + wikitext + text/x-wiki + [[Fails:Narzisse.jpg|350px|Mežoguo narcise]] +<small>[[Narcise]] - vīns nu pošu skaistūs pavasara zīdu Latgolys duorzūs. +</small><noinclude> +== Suoku puslopys izalaseitī atvaigi 2011 godā:== +<gallery> +Fails:Latgales Mara.JPG|Latgolys Muora <br> da pavasara m. 16 d. +Fails:Daugavas loki.jpg|Daugovys lūki <br> nu pavasara m. 16. d. da sulu m. 11 d. +Fails:Ai(loz).JPG|[[Kieniskais lelspuorņs]] <br> nu sulu m. 11 d. da sulu m. 18 d. +Fails:Daugavpils fortress 05.jpg|[[Daugpiļs styprūtne]] <br> nu sulu m. 18 d. da lopu m. 2 d. +Fails:Tiskadu vecticībnieku baznīca.jpg|[[Cyskuodu staroveru cierkva]] <br> nu lopu m. 2 d. da lopu m. 16 d. +Fails:Carpinus betulus2 ies.jpg|[[Parostais skroblys|Parostuo skrobla]] lopa <br> nu lopu m. 16 d. da lopu m. 30 d. +Fails:Dlužņevas_pils_Lūznavā_2000-10-14.jpg|[[Dlužņovys piļs|Dlužņovys muižys piļs]] <br> nu lopu m. 30 d. da vosorys m. 6 d. +Fails:Pededze pie Litenes.jpg|[[Pededze]] <br> nu vosorys m. 6 d. da labeibys m. 5 d. +Fails:1 4 vacins KDz jul aug 2011.jpg|Žurnals [[Katōļu Dzeive]] <br> nu labeibys m. 5 dīnys da labeibys m. 14 d. +Fails:Aglonas bazilika1.JPG| [[Aglyunys bazilika]] <br> nu labeibys m. 14 d. da labeibys m. 29 d. +Fails:Erinaceus europaeus LC0119.jpg| [[Ezs]] <br> nu labeibys m. 29 d. da rudiņa m. 5 d. +Fails:Ilzas ezers 1999-08-17.jpg|[[Iļdzs]] <br> nu rudiņa m. 5 d. da rudiņa m. 12 d. +Fails:Marinzejas_pils_2000-10-14.jpg|[[Mariņdzis piļs|Mariņdzis muižys piļs]] <br> nu rudiņa m. 12 d. da leita m. 3 d. +Fails:Linum usitatissimum 003.JPG|[[Siejamais lyns]] <br> nu leita m. 3 d. da leita m. 10 d. +Fails:Raznas ezers.JPG|[[Rāznys nacionalais parks]] <br> nu leita m. 10 d. da leita m. 17 d. +Fails:Šķeltovas pareizticīgo baznīca (2011).jpg|[[Škeļtiņu pravoslavu cierkva]] <br> nu leita m. 17 d. da leita m. 23 d. +Fails:Skaunys pogosta padume Skaunys pogosts.jpg|[[Škaunys pogosts|Škaunys pogosta padūme]] <br> nu leita m. 23 d. da solnu m. 7 d. +Fails:Sarjanka_Andzani_Parecu_pog.jpg|[[Sarjanka]] <br> nu solnu m. 7 d. da solnu m. 14 d. +Fails:Turdus merula -Gran Canaria, Canary Islands, Spain-8 (2).jpg|[[Malnais mežastrods]] <br> nu solnu m. 14 d. da solnu m. 27 d. +Fails:Folvarkys staroveru cierkva.jpg|[[Foļvarkys staroveru cierkva|Foļvarkys Nikoļska Pokrova staroveru cierkva]] <br> nu solnu m. 27 d. da zīmys m. 4 d. +Fails:Kira pie Viļakas.jpg|[[Kira]] <br> nu zīmys m. 4 d. da zīmys m. 13 d. +Fails:Vilaka no Semenovas.JPG|[[Vileks]] <br> nu zīmys m. 13 d. da zīmys m. 18 d. +Fails:Gerard van Honthorst 001.jpg|Jezus Krystus pīdzimšona <br> nu zīmys m. 18 d. da jaunagods m. 4 d. +</gallery> +== Suoku puslopys izalaseitī atvaigi 2012 godā:== +<gallery> +Fails:Hoarfrost reif.jpg|[[Sorma]] <br> nu jaunagods m. 4 d. da jaunagods m. 9 d. +Fails:Vysku dzelzacela staceja.jpg|[[Vyški (staceja)]] <br> nu jaunagods m. 9 d. da jaunagods m. 17 d. +Fails:Mustela putorius furo (fretka) na śniegu.JPG|[[Meža saskys]] <br> nu jaunagods m. 17 d. da jaunagods m. 23 d. +Fails:Rundenu Church 4.jpg|[[Rundānu katuoļu bazneica]] <br> nu jaunagods m. 23 d. da jaunagods m. 31 d. +Fails:Perisoreus infaustus2.jpg|[[Sibira seiļs]] <br> nu jaunagods m. 31 d. da svacainis m. 7 d. +Fails:Borkovys katuolu bazneica.JPG|[[Borkovys katuoļu bazneica]] <br> nu svacainis m. 7 d. da svacainis m. 13 d. +Fails:Lake Loborzhu 2.jpg|[[Lobuoržu azars]] <br> nu svacainis m. 13 d. da svacainis m. 21 d. +Fails:BuprestisOctoguttata.jpg|Ostuņpunktu skaistvabale nu [[Skaistvabalis|skaistvabaļu saimis]] <br> nu svacainis m. 21 d. da svacainis m. 27 d. +Fails:Meise 900.jpg|[[Leluo zeile]] <br> nu svacainis m. 27 d. da pavasara m. 5 d. +Fails:Kupravas katoļu baznīca.JPG|[[Kuprovys katuoļu bazneica]] <br> nu pavasara m. 5 d. da pavasara m. 13 d. +Fails:Asotes pilskalns-2.JPG|[[Osūtis piliskolns]] <br> nu pavasara m. 13 d. da pavasara m. 20 d. +Fails:Rogali stone.jpg|[[Rogāļu lelakmiņs]] <br> nu pavasara m. 20 d. da pavasara m. 26 d. +Fails:Atasine council house.jpg|[[Atašinis pogosts]] <br> nu pavasara m. 26 d. da sulu m. 3 d. +Fails:22. Old Russian Easter Postcard.jpg|[[Posta karteņa]] <br> nu sulu m. 3 d. da sulu m. 29 d. +Fails:Narzisse.jpg|[[Narcise]] <br> nu sulu m. 29 d. +</gallery> + +==Suoku puslopys izalaseitu atvaigu kaņdidati:== +<gallery> +</gallery> + +[[Kategoreja:Vikipedejis atvaigi]] +[[Kategoreja:Suoku puslopa]] +</noinclude> + 58zn7sp6sy52mabzz4q6j8ko94ri5ex + + + + Kategoreja:Suoku puslopa + 14 + 1423 + + 13911 + 2011-05-02T10:18:30Z + + 87.110.141.249 + + Jauna lapa: Kategorejā īīt informaceja, kas sasīta ar Vikipedejis suoku puslopys izalaseitim atvaigim i vierteigim rakstīnim. {{DEFAULTSORT:Suoku puslopa}} [[Category:Vikipedeja]] + wikitext + text/x-wiki + Kategorejā īīt informaceja, kas sasīta ar Vikipedejis suoku puslopys izalaseitim atvaigim i vierteigim rakstīnim. + +{{DEFAULTSORT:Suoku puslopa}} +[[Category:Vikipedeja]] + b05ststrq07yze1x04wawuokkpjkp02 + + + + Vikipedeja:Vierteigs rakstīņs + 4 + 1424 + + 29883 + 28581 + 2013-05-17T23:38:16Z + + MerlIwBot + 221 + + + robots izņem: [[ur:منصوبہ:منتخب مضمون]] (missing) + wikitext + text/x-wiki + == Suoku puslopys vierteigī rakstīni:== + +* [[Lubuons]] - nu 2010 g. jaunagods m. 2 d. +* [[Palākais vylks]] - nu 2010 g. sulu m. 9 d. +* [[Igauneja]] - nu 2011 g. pavasara m. 16 d. +* [[Reiga]] - nu 2011 g. labeibys m. 14 d. +* [[Krīvejis Nacionaluo biblioteka]] - nu 2012 g. svacainis m. 7 d. + +==Suoku puslopys vierteigū rakstīņu kaņdidati:== + +[[Kategoreja:Suoku puslopa]] + +[[ml:വിക്കിപീഡിയ:തിരഞ്ഞെടുത്ത ലേഖനങ്ങള്‍]] + jjm14w7oxih6rwbsrtkr11srgl8fc34 + + + + Sīnuojis nūvods + 0 + 1425 + + 28582 + 25173 + 2013-03-08T00:31:34Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3274762]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Sīnuojis nūvods +| zemislopa = Zilupes novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Zilupes novads COA.png +| gerba_pasauka = Sīnuojis nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Sīnuoja +| pluots = 308,9<ref>[http://www.raplm.gov.lv/uploads/filedir/Nozares/Pasvaldibas/Administrat%C4%ABvi%20teritori%C4%81lais%20iedal%C4%ABjum%20ar%20platibu.doc Regionaluos raisteibys i pošvoldu lītu ministreja]</ref > +| dzeivuotuoju_skaits = 3 655<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2011.]</ref> +| dzeivuotuoji_gods = 2011 +| bīzeiba = 11,8 +| īstateits = 2002 +| teritoriskais_dalejums = [[Ļauderu pogosts]] <br /> [[Posyunis pogosts]] <br /> [[Sīnuoja|Sīnuojis mīsts]] <br /> [[Zaļesis pogosts]] +| pakaļpīņu_centri = Ļauderi <br /> Posyune <br /> Sīnuoja +| teiklavīta = www.zilupe.lv +}} + +'''Sīnuojis nūvods''' irā pošvolds [[Latgola|Latgolys]] reitūs pi [[Krīveja|Krīvejis]] rūbeža. Pošvolda centrys — [[Sīnuoja|Sīnuojis mīsts]]. Nūvods tur rūbežu ar [[Dagdys nūvods|Dagdys]] i [[Ludzys nūvods|Ludzys]] nūvodu, taipoš ar [[Krīveja|Krīvejis Federacejis]] Opskovys i [[Boltkrīveja|Boltkrīvejis]] Vitebska apgabali. + +== Pasauka == +Nūvoda pasauka cālusēs nu [[Sīnuoja|Sīnuojis mīsta]], a tys sovu pasauku dabovs nu upis — Sīnuojis (''sīna upe''). Baļtīšu volūdā vuords ''Zylupe'' ({{vol-lv|Zilupe}}) atsarads 20 godusymtā kai agruokuos latgaliskuos pasaukys ''Sīnuoja'' aba ''Sīnupe'' tuoļuoks napareizs „puorcālums” krīvu volūdys ītakā ({{vol-ru|Синяя}}). + +== Doba == +Sīnuojis nūvoda teritorejis pūstumu i reitu daļa īīt [[Mudovys zamaine|Mudovys zamainis]] Sīnuojis leidzonainē, a dīnavydi i vokori Latgolys augstainē. Poša augstuo nūvoda viersyune - Rudovys kolns (244 m). Nūvoda centrys Sīnuoja 62 km atostumā nu Rēznis i 302 km atostumā nu Reigys. Atostumi da nūvoda centram - nu Ļauderim i Posyunis 12 km, nu Zaļesis 7 km. + +== Viesture == +Pošvolds īstateits 2002 godā, saškirūt Sīnuojis mīstu i Zaļesis pogostu. 2009 godā nūvodam dasaškiera Ļauderu i Posyunis pogosts. + +== Dzeivuotuoji == +Sīnuojis nūvodā dzeivoj 3 655 dzeivuotuoju (2011 gods), nu jūs 868 latvīši, 1994 krīvi 574 boltkrīvi, 89 puoli i 131 cytys tauteibys.<ref>[http://www.pmlp.gov.lv/lv/statistika/iedzivotaju.html Vaļščuoneibys i migracejis lītu puorvolds]</ref> 48% (1748 cylvāki) nu vysu dzeivuotuoju dzeivoj Sīnuojis mīstā, 23% (825 cylvāki) Zaļesis pogostā, a tuoļuok nu nūvoda centra Posyunis pogostā 19% (685 cylvāki), Ļauderu pogostā 10% (397 cylvāki).<ref>[http://zilupe.lv/novads/ Sīnuojis mīsta teiklavīta]</ref> Nūvodā dzeivoj 1741 veirīts i 1914 sīvītys. +Lelums dzeivuotuoju irā Romys katuoļu ci pravoslavu ticeigī. + +==== Leluokuos nūvoda solys ==== +{| class="wikitable" style="margin: 1em auto 1em auto" +|'''Ļauderu pogosts''' +|Bloņti +|Cucuri +|Koņova +|Litovski +|Ļauderi +|Vacuo Meļņica +| +| +|- +|'''Posyunis pogosts''' +| Adamova +| Gryšyna +| Katalova +| Meikšāni +| Posyune +| Šyškova +| +| +|- +|'''Zaļesis pogosts''' +| Duboviki +| Naumki +| Ploski +| Rabova +| Rakšyna +| Suovāni +| Terehova +| Zaļese +|} + +=== Zeimeigi ļauds === +* [[Vitolds Valeiņs]] (1922 – 2001) — literaturzininīks, latgaļu ļaudiskais dareituojs, „Latgalīšu lirikys viesturis” (1998) autors, sastatejs gruomotu „Latgalīšu dzejas antoloģija” (2001). Dzims Istrys (niu Ļauderu) pogosta Rudovā; +* [[Grigorejs Groms]] (1928 - 1987) - uorsts, pediatrys, darejs Bārnu kliniskajā universiteta dzeidātovā Reigā, vadejs Latvejis pediatru ziniskuo bīdreibu, gruomotys "Bārnu cukravaideibys" (1968) krīvu volūdā autors. Dzims Posyunis pogostā. + +== Vuiceiba i kultura == + +Nūvodā dora Posyunis pamatškola, Sīnuojis vydškola i Sīnuojis muzykys i dailis škola. Vīna bārnu pyrmškolys īstote Sīnuojā i pyrmškolys bārnu grupa Posyunis pamatškolā. Ļauderūs, Posyunē, Sīnuojā i Zaļesē dora biblioteka. Golvonā nūvoda kulturys īstote irā Sīnuojis Tautys noms, taipoš dora i Posyunis tautys noms i Ļauderu kulturys centrys. + +== Komercdarbeiba == +Vysuvaira nūvodā daraksteiti iņdividualī pasajāmumi i zemnīku saimisteibys, taipoš sabīdreibys ar aprūbežuotu atsaceigumu (SIA).<ref>[https://www.lursoft.lv/estadistic?act=UR_STAT&groupid=novads&context=yes&conttype=D&novads=100015372 Lursoft pasjāmumu datu bazys]</ref> Pasajāmumi aizajim ar solsaimesteibu i mežsaimisteibu. Zeimeigu vītu aizajim transporta pakaļpīni, partū ka nūvodā irā īdeveigi tranzita celi. Mīstā dora nazcik sātysparāda pakaļpīņu pasajāmumi. + +=== Sative === +Sīnuojis nūvodu ar cytom apleicis teritorejom saškir autoceļš i dzeļžaceļš. Nūvoda pūstumu daļu škārsoj vaļsteibys golvonais autoceļš A12 (Jākubmīsts - Terehova), kas irā daļa nu Europys zeimeibys ceļa E22 (Lelbritaneja - Krīveja). Terehovā rūbežkontrolis punkts ar Krīveju, cieški byun autotranzita ailis. Pa pūstumu - dīnavydu tecīņam nūvodu škārsoj regionalais autoceļš P52 (Sīnuoja - Škauna - Bukmuiža). Zaļesis pogostu i Sīnuojis mīstu škārsoj dzeļžaceļa lineja Rēzne II - Sīnuoja, nūvoda teritorejā vīna staceja Sīnuoja. + +== Slavvītys == +* Draudzeibys kurgans - 1959 godā iztaiseits kaupris ar alejom nu treis vaļsteibom tautu draudzeibai +* Grebļa kolns - 5 km gars ladslaika kaupris ar seviški ratu dobu +* Posyunis Svātuo Dominika Romys katuoļu bazneica - vīna nu pošu zeimeigū baroka bazneicu Latgolā, pastateita 1770 godā +* Rudovys kolns (244 m) - poša augstuo vīta Sīnuojis nūvodā +* Rundānu valna dūbys - vaļsteibys sorgojamais geomorfologiskais objekts + +== Nūruodis i olūti == +{{Nūruodis}} + +{{Commonscat|Zilupe municipality|Sīnuojis nūvods}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Sīnuojis nūvods| ]] + nlm1v8zjjig6f3zezdzkx9zk04hcvhw + + + + Konsepsjons + 0 + 1437 + + 31839 + 31793 + 2016-12-09T09:38:09Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31793 dated 2016-12-09 08:59:56 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Coord|36|49|41.50|S|73|03|04.93|W|display=title}} +{{Latvejis mīsts +| pasauka = Konsepsjons +| atvaiga_pasauka = Concepcion-Chile(001).jpg +| atvaiga_aprakstejums = Vierīņs iz Konsepsjonu nu Karakola kolna +| gerba_atvaigs = Coat of arms of Concepcion, Chile.svg +| gerba_pasauka = Gerbs +| pluots = 221,6 +| dzeivuotuoji_gods = 2002 +| dzeivuotuoju_skaits = 216 061 +| bīzeiba = 975 +| teiklavīta = www.concepcion.cl +}} +'''Konsepsjons''' ({{vol-es|Concepción}}, [[IPA]]: [kon.θepˈθjon] voi [kon.sepˈsjon]) — mīsts i komuna [[Čile|Čilē]], [[Konsepsjona proviņceja|Konsepsjona proviņcejis]] i [[Biobio apgabaļs|Biobio apgabaļa]] golvysmīsts. + +Lelais Konsepsjons (''Gran Concepción'') irā ūtruo leluokuo [[konurbaceja]] (policetriskuo aglomeraceja) Čilē ar 889 725 dzeivuotuojim (2002). Pošā komunā irā 212 003 dzeivuotuoju, kas padora jū par 11 leluokū vaļsteibā. Juos pluots irā 222 km², i dzeivuotuoju bīzeiba — 1318 dzeiv./km². + +Mīstu īstateja [[1550]] godā spanīšu konkistadors Pedro de Valdiveja. + +== Galereja == +<gallery perrow=4> +File:Arco de Medicina UdeC.jpg| +File:Moderno Edificio en Concepción.jpg| +File:Desembocadura del Biobío.jpg| +File:Ex Catedral de Concepción.jpg| +File:Biobus01.jpg| +File:Hotel El Araucano.JPG| +File:Plaza de Armas Concepción.jpg| +</gallery> + +== Partnermīsti == +{| class="wikitable" style="margin: 1em auto 1em auto" +| [[Fails:Flag of Argentina.svg|20px]] [[Laplata]], [[Argeņtina]] +| [[Fails:Flag of Mexico.svg|20px]] [[Monterrejs]], [[Meksika]] +| [[Fails:Flag of New Zealand.svg|20px]] [[Oklends]], [[Jaunzelaņdeja]] +| [[Fails:Flag of Palestine.svg|20px]] [[Betleme]], [[Palestina]] +|- +| [[Fails:Flag of Ecuador.svg|20px]] [[Gvajakils]], [[Ekvadors]] +| [[Fails:Flag of Ecuador.svg|20px]] [[Kvenka (Ekvadors)|Kvenka]], [[Ekvadors]] +| [[Fails:Flag of Brazil.svg|20px]] [[Kaskavels]], [[Brazileja]] +|[[Fails:Flag of USA.svg|20px]] [[Minnesota]], [[ASV]] +|} + +== Verīs taipoš == +* [[Lelais Konsepsjons]] + +== Nūruodis i olūti == +{{nūruodis}} + +== Teiklavītys == +{{commons|Concepcion, Chile|Konsepsjons}} +* [http://www.concepcion.cl/ Konsepsjona pošvolda teiklavīta] +* [http://www.britannica.com/EBchecked/topic/130916/Concepcion Encyclopædia Britannica — Concepción] +{{nadabeigts rakstīņs}} + +[[Kategoreja:Čile]] +[[Kategoreja:Mīsti]] + 2ua1qmz22w26w6csgx0gcajycev0abo + + + + Konsepsjona + 0 + 1438 + + + 14175 + 2011-05-14T23:25:33Z + + Glossologist + 79 + + Pāradresē uz [[Konsepsjons]] + wikitext + text/x-wiki + #REDIRECT [[Konsepsjons]] + f9w4kb5jrx8tmk59xyv72uylnowc9ur + + + + Kategoreja:Čile + 14 + 1439 + + 29743 + 28584 + 2013-04-13T04:59:50Z + + KLBot2 + 1857 + + + Bot: Migrating 4 interwiki links, now provided by [[Wikidata]] on [[:d:Q5610127]] + wikitext + text/x-wiki + {{commonscat|Chile|Čile}} +{{catmore}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 6tv7098rmhkmyl1f7r3sua1i29ucfy8 + + + + Taiss:Coord/display/title + 10 + 1440 + + 14184 + 14183 + 2011-05-14T23:59:05Z + + Glossologist + 79 + + Atcēlu [[Special:Contributions/Gleb Borisov|Gleb Borisov]] ([[User talk:Gleb Borisov|Diskusija]]) izdarīto izmaiņu 14183 + wikitext + text/x-wiki + <span style="font-size: small;"><span id="coordinates">Koordinatys: {{{1}}}</span></span> + 6ssk7uxsnzwvol1u04rnm7zke0hsfg9 + + + + MediaWiki:Vector.css + 8 + 1441 + + 17886 + 14195 + 2011-10-16T18:34:56Z + + Dark Eagle + 34 + + + css + text/css + #siteSub { display: inline; font-size: 92%; font-weight: normal } + + +body.page-Заглавная_страница #siteSub, +body.page-Заглавная_страница #contentSub, +body.page-Заглавная_страница h1.firstHeading +{display:none !important} + + +/* {Link FA} */ +.portal li.GA { + background: url('//upload.wikimedia.org/wikipedia/commons/6/6f/QS_blue_star_small.png') right top no-repeat; + margin-right: 10px !important; +} +.portal li.FA { + background: url('//upload.wikimedia.org/wikipedia/commons/3/33/Small_skew_star.gif') right top no-repeat; + margin-right: 10px !important; +} +.portal li.FL { + background: url('//upload.wikimedia.org/wikipedia/commons/thumb/0/02/Purple_star_unboxed.svg/11px-Purple_star_unboxed.svg.png') right top no-repeat; + margin-right: 10px !important; +} + + +/* Topicons */ +.topicon { + position: absolute; + top: -2em; + right: 0; +} +#coordinates { + position: absolute; + top: 0; + right: 9em; + font-size: 11px; + white-space: nowrap; +} + + +/* {Right-uppermost image} */ +.floating_object { + position: absolute; + right: 0px !important; + top: -31px !important; + z-index: 100; + overflow: hidden; +} +body.ns-0 .floating_object { top: -20px !important } + + +/* menu over abs. pos. elements */ +div.vectorMenu div { z-index: 2 } + 1m8cm0tyd13kc7egryewria9n1g6ffz + + + + MediaWiki:Monobook.css + 8 + 1442 + + 31998 + 17885 + 2017-06-04T20:49:38Z + + Nemo bis + 3388 + + + Replace deleted image with Commons equivalent [[File:Monobook-bullet.png]]. [[phabricator:T166979]]. + css + text/css + #siteSub { display: inline; font-size: 92%; font-weight: normal } +#toc {margin-top: 0.5em} +#ca-edit a {font-weight: bold} /* encourage newcomers */ + +/* Light blue background except on articles and portals; need 32bit color to see difference */ +#content, #p-cactions li a {background: #F8FCFF} +.ns-0 #content, .ns-100 #content, +.ns-0 #p-cactions li a, .ns-100 #p-cactions li a {background: white} +body.ns--1 table, form table {background: transparent} + +body.page-Заглавная_страница #siteSub, +body.page-Заглавная_страница #contentSub, +body.page-Заглавная_страница h1.firstHeading, +body.page-Заглавная_страница #lastmod +{ display:none !important } + +/* Smaller "Перейти" (Go) button, so buttons fit on one line */ +#searchGoButton {padding: 0} + +/*{Link FA}*/ +.portlet li.FA {list-style-image:url('//upload.wikimedia.org/wikipedia/en/d/d4/Monobook-bullet-star.png')} +.portlet li.FL {list-style-image:url('//upload.wikimedia.org/wikipedia/commons/thumb/0/02/Purple_star_unboxed.svg/9px-Purple_star_unboxed.svg.png')} +.portlet li.GA {list-style-image:url('//upload.wikimedia.org/wikipedia/commons/thumb/6/6f/QS_blue_star_small.png/9px-QS_blue_star_small.png')} +/*compat. standard bullet*/ +.portlet li { list-style-image: url('//upload.wikimedia.org/wikipedia/commons/1/18/Monobook-bullet.png') } + + + +/*Topicons*/ +.topicon { + position: absolute; + top: 10px; + right: 10px; + z-index: 10; +} +#coordinates { + position: absolute; + top: 3.7em; + right: 9em; + font-size: 11px; + white-space: nowrap; +} + +/*{Right-uppermost image}*/ +.floating_object { + position: absolute; + right: 10px; + top: 10px; + z-index: 100; + overflow: hidden; +} + +/*{Vīnpats rakstīņs}*/ +#suggest_link { + right: 0em !important; + top: -2em !important; +} + ku92j380ntd2myaxewvcll7f32witqv + + + + Parostais skroblys + 0 + 1443 + + 28585 + 22711 + 2013-03-08T00:32:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 31 interwiki links, now provided by [[d:|Wikidata]] on [[d:q158776]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Carpinus betulus - Hunsrück 001.jpg|thumb|250px|Parostais skroblys]] +'''Parostais skroblys''' ({{Vol-la|Carpinus betulus}}) - bārzu saimis skroblu (Carpinus) škira, pasaplatejuse vyds i dīnavydu [[Europa|Europā]]. Reitu paplateibys areals dasnīdz Ukrainu i Krīveju, pūstumūs dīnavydvokoru Latveju (Gruobina, Prīkulis i Rucovys nūvodā). Kolnu regionūs aug na augšuok kai 600 m viers jiuru leidzīņa. + +Tys irā 15-25 m, kurūs nakurūs gadīņus 30m augsts lopukūks. Stumbrys suovaiņs, kleivs. Myza pazali palāka, seviški vacuokim kūkim. Lopys preteimys, 4-9 cm garys ar izsaceigom dzeislom i zūbainom molom. Vīnsātys augs, zīd lopu mienesī reizē ar lopu plaukšonu, spurdzys apputeksnej viejs. Auglis - mozs 7-8 mm rīksteņš, dasaturejs pi sāklys skrīnpuka. Parostais skroblys irā tymsu meilūšs kūks, kam pateik augleiga, pakriesleiga vīta. Kūkna cīta, dag lānai, tok tveikai, partū cieški izlītoj molkai. Taipoš cieški audzejams kai dekorativs augs parkūs i suodūs. + +Latgolā parostais skroblys aug tik 11 vītuos, divejis nu jūs Vyšku pogostā. <ref>[http://www.kurtuesi.lv/flora/ (''Latvyskai'') Latvejis dendroflorys atlants]</ref> Īraksteits Latvejis Sorkonuos gruomotys 2 kategorejā. + +<gallery> +File:Kwiatostan grabu pospolitego (Carpinus betulus l.).jpg|Parostuo skrobla zīdi +File:Carpinus betulus2 ies.jpg|Parostuo skrobla lopa +File:Carpinus fruit.jpg|Parostuo skrobla sāklys +File:Eyrignac Manor - Gardens-02.JPG|Parostuo skrobla dzeivsātmaļs +</gallery> + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commonscat|Carpinus betulus|Parostais skroblys}} + +{{DEFAULTSORT:Skroblys}} + +[[Kategoreja:Auguoji]] + olv3ubanvnra5hh1oyjwx6f1cujeo1n + + + + Taiss:!- + 10 + 1445 + + 14229 + 2011-05-16T20:01:23Z + + Dark Eagle + 34 + + + Jauna lapa: |- + wikitext + text/x-wiki + |- + gk08m4vzthxrufttrnbb3n66479375w + + + + Malta (Maltys pogosts) + 0 + 1447 + + 31462 + 30875 + 2016-06-25T18:58:19Z + + Melilac + 2917 + + + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Malta +| atvaiga_pasauka = Maltas pagasta padome 2000. gadā.jpg +| atvaiga_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = +| karūga_atvaigs = ‎ +| karūga_pasauka = +| koordinatu_zemislopa = Latveja +| latd = 56 | latm = 20 | lats = 50 | latNS = N +| longd = 27 | longm = 09 | longs = 52 | longEW = E +| pluots = 8,6 +| dzeivuotuoji_gods = 2015 +| dzeivuotuoju_skaits = 2459 +| bīzeiba = +| viesturiskuos_pasaukys = Borovaja +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = +| posta_iņdeksi = LV-4630 +| teiklavīta = +}} + +'''Malta''' irā sola [[Latveja|Latvejā]], [[Rēznis nūvods|Rēznis nūvoda]] dīnavydvokorūs, [[Maltys pogosts|Maltys pogosta]] centrys. Borovaja irā Maltys viesturiskuo oficialuo pasauka. + +== Solys pasauka == +Oficialuo pasauka [[Latvīšu volūda|latvīšu volūdā]] — ''Malta''. + +== Teiklavītys == +* [http://www.malta.lv/ Maltys pogosta teiklavīta] + +{{Nadabeigts rakstīņs}} + +{{Rēznis nūvods}} + +[[Kategoreja:Maltys pogosts]] +[[Kategoreja:Rēznis nūvoda solys]] +[[Kategoreja:Latvejis solys]] +[[Kategoreja:Latvejis pogostu centri]] + 5sngcokc0w79w1d7p2aul6v51g7rwq8 + + + + Taiss:Infoskreine Latvejis azars + 10 + 1455 + + 14654 + 14568 + 2011-06-03T09:15:37Z + + Roalds + 50 + + + wikitext + text/x-wiki + <includeonly>{| class="infobox" style="width: 270px; font-size: 90%; margin: 2px; margin-left: 1em; text-align: left;" +|- class="fn org" +! style="text-align:center; background:#BCD4E6;font-size:110%;" colspan="2"| {{{pasauka}}} +|- +<!-- ****** Azara atvaigs ****** --> +{{#if:{{{atvaiga_pasauka|}}}| +{{!}} style="border-top:1px solid #999966; font-size:95%; text-align:center;" colspan="2"; colspan="2" {{!}} [[File:{{{atvaiga_pasauka}}}| {{ #if: {{{atvaiga_mārs|}}} |{{{atvaiga_mārs}}} | 250px |border}}]]<br />{{{atvaiga_aprakstejums|}}} +{{!}}- +}} +|- +<!-- Automatiskuo nūstuojuma zemislopa; sasīta ar koordinatom --> +{{#if:{{{zemislopa|}}}| + <tr class="mergedrow"> + <td colspan="2" align="center"> +{{Vītys zemislopa|{{{zemislopa|}}} +|label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pasauka|}}}|{{{pasauka}}}|{{{official_name|}}}}} }} +|lat = {{#if:{{{latm|}}}{{{latNS|}}}| |{{{latd|}}} }} +|long = {{#if:{{{longm|}}}{{{longEW|}}}| |{{{longd|}}} }} +|lat_deg={{#if:{{{latm|}}}{{{latNS|}}}|{{{latd|}}}| }} +|lat_min={{#if:{{{latm|}}}{{{latNS|}}}|{{{latm|}}}| }} +|lat_sec={{#if:{{{lats|}}}{{{latNS|}}}|{{{lats|}}}| }} +|lat_dir={{#if:{{{latNS|}}}|{{{latNS|}}}| }} +|lon_deg={{#if:{{{longm|}}}{{{longEW|}}}|{{{longd|}}}| }} +|lon_min={{#if:{{{longm|}}}{{{longEW|}}}|{{{longm|}}}| }} +|lon_sec={{#if:{{{longs|}}}{{{longEW|}}}|{{{longs|}}}| }} +|lon_dir={{#if:{{{longEW|}}}|{{{longEW|}}}| }} +|float = none +|caption = +|border = #CCCCCC +|position = {{#if:{{{pushpin_label_position|}}} | {{{pushpin_label_position|}}} | right }} +|width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize|}}} | 250 }} +}} +}} +<!-- Atsarasšanuos vītys koordinatys --> +{{#if:{{{latd|}}}| + <tr class="mergedbottomrow"> + <th colspan="2" style="text-align: center; font-size: smaller; padding-bottom: 0.7em;">Koordinatys{{#if:{{{coor_type|}}}|&nbsp;({{{coor_type}}})|}}: {{Coord|{{{latd|}}}|{{{latm|}}}|{{{lats|}}}|{{{latNS|}}}|{{{longd|}}}|{{{longm|}}}|{{{longs|}}}|{{{longEW|}}}|{{{coordinates_type|type:city}}}|display=inline,title}}</th> + </tr> +}} +<!-- Atsarasšanuos vītys zemislopa, ka nalītoj "koordinatu zemislopu" +{{#if: {{{zemislopys_atvaigs|}}}| + <tr><td colspan="2" style="text-align: center; padding: 0.7em 0.8em 0.7em 0.8em;;">[[Image:{{{zemislopys_atvaigs}}}|none|250px|border]]</td></tr> +}} --> +|- +{{#if:{{{nūvods|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Nūvods''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} [[{{{nūvods}}}]] +{{!}}- +}} +|- +{{#if: {{{pluots|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Pluots''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{pluots}}}&nbsp;km² +}} +|- +{{#if: {{{pošlelais_garums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Pošlelais garums''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{pošlelais_garums}}}&nbsp;km +}} +|- +{{#if: {{{vydyskuo_dzilīne|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Vydyskuo dzilīne''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{vydyskuo_dzilīne}}}&nbsp;m +}} +|- +{{#if: {{{pošleluo_dzilīne|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Pošleluo dzilīne''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{pošleluo_dzilīne}}}&nbsp;m +}} +|- +{{#if: {{{vydums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Vydums''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{vydums}}}&nbsp;km<sup>3</sup> +}} +|- +{{#if: {{{augstums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Augstums vjl''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{augstums}}}&nbsp;m +}} +|- +{{#if: {{{iztece|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Iztece''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{iztece}}} +}} +|- +{{#if: {{{satecis_baseins|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Satecis baseins''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{satecis_baseins}}}&nbsp;km² +}} +|- +{{#if: {{{baseina_vaļsteibys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Baseina vaļsteibys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{baseina_vaļsteibys}}} +}} +|- +{{#if: {{{azarsolys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Azarsolys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{azarsolys}}} +}} +|- +{{#if: {{{dzeivuojamys_vītys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Dzeivojamys vītys azarmalē''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{dzeivuojamys_vītys}}} +}} +|- +{{#if: {{{cytys_pasaukys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#BCD4E6;" {{!}} '''Cytys pasaukys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{cytys_pasaukys}}} +}} +|- +|}</includeonly><noinclude> +{{Dokumentaceja}} + +{{DEFAULTSORT:Latvejis azars}} +[[Category:Geografejis infoskreinis]] +[[Category:Latvejis geografejis taisi|Infoskreine azars]] +</noinclude> + c32g7h0tv1hkrfqju9t11kq9oh151jp + + + + Taiss:Infoskreine Latvejis azars/doc + 10 + 1456 + + 14721 + 14720 + 2011-06-04T14:59:20Z + + Kikos + 166 + + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Juglys azars +| atvaiga_pasauka = Озеро Юглас.JPG +| atvaiga_aprakstejums = Juglys azars +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd =56 | latm =58 | lats =0 | latNS = N +| longd =24 | longm =17 | longs =0 | longEW = E +| nūvods = Reiga +| pluots = 5,7 +| pošlelais_garums = 4,6 +| vydyskuo_dzilīne = 1,7 +| pošleluo_dzilīne = 5 +| vydums = 0,0097 +| augstums = 0,2 +| iztece = [[Jugla]] +| satecis_baseins = 1710 +| baseina_vaļsteibys = +| azarsolys = Sudobrsaleņa +| dzeivojamys_vītys = Reiga +| cytys pasaukys = +}} +<pre> +{{Infoskreine Latvejis azars +| pasauka = Juglys azars +| atvaiga_pasauka = Озеро Юглас.JPG +| atvaiga_aprakstejums = Juglys azars +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama - "left" --> +| latd =56 | latm =58 | lats =0 | latNS = N +| longd =24 | longm =17 | longs =0 | longEW = E +| nūvods = Reiga +| pluots = 5,7 +| pošlelais_garums = 4,6 +| vydyskuo_dzilīne = 1,7 +| pošleluo_dzilīne = 5 +| vydums = 0,0097 +| augstums = 0,2 +| iztece = [[Jugla]] +| satecis_baseins = 1710 +| baseina_vaļsteibys = +| azarsolys = Sudobrsaleņa +| dzeivojamys_vītys = Reiga +| cytys pasaukys = +}} +</pre> + dlxjqm5qj91wpzy24he0jmtt60n5kmy + + + + Taiss:Infoskreine kolns + 10 + 1458 + + 30030 + 29962 + 2013-08-16T15:46:39Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5825897]] + wikitext + text/x-wiki + <includeonly>{| class="infobox" style="width: 270px; font-size: 90%; margin: 2px; margin-left: 1em; text-align: left;" +|- class="fn org" +! style="text-align:center; background:#e7dcc3; font-size:110%;" colspan="2"| {{{Pasauka}}} +|- +{{#if:{{{Atvaigs|}}}| +{{!}} class="note" style="border-top:1px solid #FFFAF0; font-size:95%; text-align:center;" colspan="2"; colspan="2" {{!}} [[File:{{{Atvaigs}}}| {{ #if: {{{Atvaiga māri|}}} |{{{Atvaiga māri}}} | 250px |border}}]]<br />{{{atvaiga_aprakstejums|}}} +{{!}}- +}} +<!-- Automatiskuo nūstuojuma zemislopa; sasīta ar koordinatom --> +{{#if:{{{Zemislopa|}}}| + <tr class="mergedrow"> + <td colspan="2" align="center"> +{{Vītys zemislopa|{{{Zemislopa|}}} +|label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pasauka|}}}|{{{pasauka}}}|{{{official_name|}}}}} }} +|lat = {{#if:{{{latm|}}}{{{latNS|}}}| |{{{latd|}}} }} +|long = {{#if:{{{longm|}}}{{{longEW|}}}| |{{{longd|}}} }} +|lat_deg={{#if:{{{latm|}}}{{{latNS|}}}|{{{latd|}}}| }} +|lat_min={{#if:{{{latm|}}}{{{latNS|}}}|{{{latm|}}}| }} +|lat_sec={{#if:{{{lats|}}}{{{latNS|}}}|{{{lats|}}}| }} +|lat_dir={{#if:{{{latNS|}}}|{{{latNS|}}}| }} +|lon_deg={{#if:{{{longm|}}}{{{longEW|}}}|{{{longd|}}}| }} +|lon_min={{#if:{{{longm|}}}{{{longEW|}}}|{{{longm|}}}| }} +|lon_sec={{#if:{{{longs|}}}{{{longEW|}}}|{{{longs|}}}| }} +|lon_dir={{#if:{{{longEW|}}}|{{{longEW|}}}| }} +|float = none +|caption = +|border = #CCCCCC +|position = {{#if:{{{pushpin_label_position|}}} | {{{pushpin_label_position|}}} | right }} +|width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize|}}} | 250 }} +}} + </td> + </tr> +}} +<!-- Atsarasšanuos vītys koordinatys --> +{{#if:{{{latd|}}}| + <tr class="mergedbottomrow"> + <th colspan="2" style="text-align: center; font-size: smaller; padding-bottom: 0.7em;">Koordinatys{{#if:{{{coor_type|}}}|&nbsp;({{{coor_type}}})|}}: {{Coord|{{{latd|}}}|{{{latm|}}}|{{{lats|}}}|{{{latNS|}}}|{{{longd|}}}|{{{longm|}}}|{{{longs|}}}|{{{longEW|}}}|{{{coordinates_type|type:city}}}|display=inline,title}}</th> + </tr> +}} +<!-- Atsarasšanuos vītys zemislopa, ka nalītoj "koordinatu zemislopu" +{{#if: {{{zemislopys_atvaigs|}}}| + <tr><td colspan="2" style="text-align: center; padding: 0.7em 0.8em 0.7em 0.8em;;">[[Image:{{{zemislopys_atvaigs}}}|none|250px|border]]</td></tr> +}} --> +|- +|- class="note" +| style="border-top:1px solid #FFFAF0; border-right:1px solid #FFFAF0; background:#e7dcc3; width:85px;" | '''Augstums''' +| style="border-top:1px solid #FFFAF0; width:220px;" | {{{Augstums}}}&nbsp;m&nbsp;vjl +|- +{{#if:{{{Samiereigais_augstums|}}}| +{{!}} style="border-top:1px solid #FFFAF0; border-right:1px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Samiereigais&nbsp;augstums''' +{{!}} style="border-top:1px solid #FFFAF0;" {{!}} <span class="adr"><span class="region">{{{Samiereigais_augstums|}}} m</span></span> +{{!}}- +}} +{{#if:{{{Byusmis vīta|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Byusmis&nbsp;vīta''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} <span class="adr"><span class="region">{{{Byusmis vīta|}}}</span></span> +{{!}}- +}} +{{#if:{{{Kolnu grāda|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Kolnu grāda''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Kolnu grāda|}}} +{{!}}- +}} +{{#if:{{{Augstaine|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Augstaine''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Augstaine|}}} +{{!}}- +}} +{{#if:{{{Kuopīņs|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Kuopīņs''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Kuopīņs|}}} +{{!}}- +}} +{{#if:{{{Golvonuo viersyune|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Golvonuo&nbsp;viersyune''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Golvonuo viersyune|}}} +{{!}}- +}} +{{#if:{{{Topografiskuo zemislopa|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Topografiskuo&nbsp;zemislopa''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Topografiskuo zemislopa|}}} +{{!}}- +}} +{{#if:{{{Tips|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Tips''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Tips|}}} +{{!}}- +}} +{{#if:{{{Volcanic_Arc/Belt|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}}''' Volcanic&nbsp;[[Volcanic arc|arc]]/[[Volcanic belt|belt]]''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Volcanic_Arc/Belt|}}} +{{!}}- +}} +{{#if:{{{Age|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''[[Geologic time scale|Age of rock]]''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Age|}}} +{{!}}- +}} +{{#if:{{{Last eruption|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} Pādejais&nbsp;izvierdums +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Last eruption|}}} +{{!}}- +}} +{{#if:{{{First ascent|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Pyrmū reizi&nbsp;izkuopts''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{First ascent|}}} +{{!}}- +}} +{{#if:{{{Easiest route|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Easiest [[Climbing route|route]]''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Easiest route|}}} +{{!}}- +}} +{{#if:{{{Grid_ref_UK|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''[[British national grid reference system|OS grid reference]]''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{gbm4ibx|{{{Grid_ref_UK|}}}}} +{{!}}- +}} +{{#if:{{{Grid_ref_Ireland|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''[[Irish grid reference system|OSI/OSNI grid reference]]''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{iem4ibx|{{{Grid_ref_Ireland|}}}}} +{{!}}- +}} +{{#if:{{{Listing|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''[[Lists of mountains|Listing]]''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Listing|}}} +{{!}}- +}} +{{#if:{{{Translation|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Translation''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} ''{{{Translation|}}}'' ({{{Language|}}}) +{{!}}- +}} +{{#if:{{{Pronunciation|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''[[help:IPA|Pronunciation]]''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{IPA|[{{{Pronunciation}}}]}} +{{!}}- +}} +{{#if:{{{Cytys pasaukys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#e7dcc3;" {{!}} '''Cytys pasaukys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{Cytys pasaukys|}}} +{{!}}- +}} +|}</includeonly><noinclude> +Itys taiss paškierts, kab nūruodeitu golvonū informaceju ap kaidu naviņ kolnu ci guņkolnu (vulkanu). + +{{Dokumentaceja}} + +{{DEFAULTSORT:kolns}} +[[Category:Geografejis infoskreinis]] +[[Category:Latvejis geografejis taisi|Infoskreine kolns]] + +</noinclude> + 6yhhhnznz0d5yvt9tew7tir999lou5z + + + + Taiss:Infoskreine kolns/doc + 10 + 1459 + + 14567 + 14429 + 2011-06-01T09:54:53Z + + Roalds + 50 + + + Latveja + wikitext + text/x-wiki + <pre> +{{Infoskreine kolns + | Pasauka = + | Atvaigs = + | Atvaiga māri = + | Aprakstejums = + | Zemislopa = Latveja + | Aprakstejuma_izlykums = + | latd= |latm= |lats= |latNS= + | longd= |longm= |longs= |longEW= + | Augstums = + | Byusmis vīta = + | Kolnu grāda = + | Augstaine = + | Kuopīņs = + | Golvonuo viersyune = + | Koordinatys = + | Topografiskuo zemislopa = + | Tips = + | Volcanic_Arc/Belt = + | Age = + | Last eruption = + | First ascent = + | Easiest route = + | Grid_ref_UK = + | Grid_ref_Ireland = + | Listing = + | Translation = + | Language = + | Pronunciation = + | Cytys pasaukys = +}} +</pre> + s2jilp9x59oclj2j9b07ic8i0uhboby + + + + Taiss:Coord/dec2dms/dm + 10 + 1461 + + 29947 + 29341 + 2013-08-01T07:07:33Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6802460]] + wikitext + text/x-wiki + {{#expr:{{{1}}} mod 360}}°{{padleft:{{#expr:({{{1}}} * 600 round 0) mod 600 / 10 round 0}}|2|0}}′<noinclude> +[[Kategoreja:Koordinatu taisi]] + +</noinclude> + nnhz2gmctyd29p54a8pwlqnqmu8vye4 + + + + Kategoreja:Latgolys piļs i muižys + 14 + 1463 + + 14486 + 2011-05-29T21:46:22Z + + Roalds + 50 + + jauna kategoreja + wikitext + text/x-wiki + {{DEFAULTSORT:piļs i muižys}} +[[Category:Latgolys arhitektura]] + h291etcj7jvc8ht70v0nlvf6h6c3dg2 + + + + Dlužņovys piļs + 0 + 1464 + + 31365 + 29836 + 2016-03-28T10:28:41Z + + 91.9.119.68 + + Dlužņevas_pils_Lūznavā_2000-10-14.jpg + wikitext + text/x-wiki + [[Fails:Dlužņevas_pils_Lūznavā_2000-10-14.jpg|thumb|250px|Dlužņovys muižys piļs]] +'''Dlužņovys muižys piļs''' pastateita nu 1905 da 1911 godam jugendstiļa i eklektizma arhitekturā. Vaļsteibys zeimeibys arhitekturys pīminieklis. Muižys suodā izslivuo Madonys skulptura. Tān pilī dora Dlužņovys pogosta pamatškola. + +== Viesture == +19 godu symta suokuos Dlužņovys muižys vītā beja Laizānu sola. Laizānu zemi nūpierka puoļu muižinīki - bruoli Pīters i Julejs Dlužnevskis. Jū vuords atness muižys i pogosta pasauku. Godu symta ūtrajā pusē nu bruolim Dlužnevskim muižys zemi nūpierka [[Lītova|Lītovys]] puoļu iņženers Stanislovs Kerbedzs. Juo sīva Eugeneja Kerbedza bejuse [[Puoleja|Puolejā]] izsliva dailis atspaidneica, deļ juos Dlužņovys pilī gastejuši daudzi zynomi dailinīki (vīns nu jūs M. K. Čurļoņs). Eugeneja Kerbedza iztaiseja lelu dailis dorbu kolekceju, cieški braukaleja da [[Italeja|Italejai]], kur īsapazynuoja ar jaunim redzīnim dailis pasaulī. Nu sevkura ceļuojuma jī atvede tepiejumus i cytys dailis lītys, taipoš i idejis, kai taiseit sātu i muižys suodu. Vysys idejis arreizi īdzeivynuoja dzeivē. 1925 godā vīnā nu piļs daļom, kur nazkod beja Eugenejis tepietova, atdareja gaļdinīku taiseitovu. Daudzi tepiejumu i mebeļu tyka iznycynuotys. + +== Muižys suods == +Suodu ītaiseja Kerbedzu saime 20 godu symta suokuos, tok praktiskūs dorbus padareja muižys vaļdeituojs - suodinīks I. Ksendzepolskis. Suoda pluots 22 dekteru, nu tū 2,2 dekteru iudiņa. Nu 1977 gods suods irā vaļsteibys sardzeibā. Tys irā vierīniskys parks ar 7 oporim, vysi opori saškierti. Vīnā nu oporim bejs net kruocs ītaiseits. Suodā bejuse lela kryumu i kūku vysaideiba, partū ka Kerbedzu puors nu dīnavydu ceļuojumim vysod atveds kaidu naviņ jaunu škiru. Suodā bejuse nazynoma itaļu dailinīka svātuos Jaunivis Marejis skulptura. Varams, ka poša saimineica atveduse. Aiz tuo ka skulptura beja maituota deļ laika, 1991 godā oroginalu puormeja ar dailineicys L. Vronevskys Madonys skulpturu. + +{{coord|56|21|29|N|27|15|38|E|display=title|type:landmark}} + +[[Kategoreja:Latgolys piļs i muižys]] + p1411un775lstdx2vdfucmt0i8jjl4l + + + + Taiss:Latvejis mīsts + 10 + 1466 + + + 14530 + 2011-06-01T07:21:09Z + + Roalds + 50 + + "[[Taiss:Latvejis mīsts]]" puorsauču par "[[Taiss:Infoskreine Latvejis mīsts]]": saparādavuošona, kab byutu skaidrai - taiss ci infoskreine + wikitext + text/x-wiki + #REDIRECT [[Taiss:Infoskreine Latvejis mīsts]] + bnrecc7j3horzaynj41xv53zzo0v7cz + + + + Taiss:Latvejis mīsts/doc + 10 + 1467 + + + 14532 + 2011-06-01T07:22:55Z + + Roalds + 50 + + "[[Taiss:Latvejis mīsts/doc]]" puorsauču par "[[Taiss:Infoskreine Latvejis mīsts/doc]]": Saparādavuošona + wikitext + text/x-wiki + #REDIRECT [[Taiss:Infoskreine Latvejis mīsts/doc]] + qmdkk6okdw63c94ubnqo30ylaiip1at + + + + Kategoreja:Latgolys kaupri + 14 + 1468 + + 14572 + 2011-06-01T10:14:29Z + + Roalds + 50 + + jauna kategoreja + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys kaupri}} +[[Kategoreja:Latgolys doba|Kaupri]] + 7gvp1r93ikmok8hyyau5v2iwfrpl0x6 + + + + Kategoreja:Latgolys azari + 14 + 1469 + + 14573 + 2011-06-01T10:14:39Z + + Roalds + 50 + + jauna kategoreja + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys azari}} +[[Kategoreja:Latgolys doba|Azari]] + fpegh37rawdmg6ewgjg0z9hm1tcqt5t + + + + Vikipedeja:Īmamuos nūtikšonys + 4 + 1471 + + 30140 + 21475 + 2013-11-09T11:53:48Z + + Turaids + 172 + + + wikitext + text/x-wiki + Itymā puslopā var skaiteit latgaļu Vikipedejis pošjaunuos viests i aktualumus. + +== 2005 gods == +*Zīmys mieneša 2 dīna — latgaļu Vikipedejis pyrmais pīminiejums Inkubatorā. +*Zīmys mieneša 3 dīna — pyrmū rakstīni "Vandaļu gors" sataiseja 81.198.191.251 (teorejā vāluok registriejīs zam slāgvuorda [[Lītuotuojs:Kalvis|Kalvis]]) + +== 2006 gods == +*Leita mieneša 28 dīna — sataiseits pyrmais aizprasejums latgaļu Vikipedejai. + +== 2007 gods == +*Svacainis mieneša 12 dīna — sataiseits ūtrys aizprasejums latgaļu Vikipedejai. + +== 2010 gods == +*Jaunagods mieneša 26 dīna — sataiseits trešs aizprasejums latgaļu Vikipedejai. +*Svacainis mieneša 28 dīna — aizprasejums apzeimots kai pīdareigs. + +== 2011 gods == +*Svacainis mieneša 13 dīna — aizprasejums apstyprynuots i nūsyuteits lyugumroksts sataiseit sātyslopu bugzillā. +*'''Pavasara mieneša 18 dīna''' — sataiseita latgaļu Vikipedeja. +*Pavasara mieneša 19 dīna — [[Lītuotuojs:SPQRobin|SPQRobin]] puorcēle latgaļu Vikipedejis turīni nu Inkubatora. +*Lopu mieneša 29 dīna — latgaļu volūdā '''500''' rakstīņu + +== 2012 gods == +*Pavasara mieneša 6 dīna - latgaļu volūdā '''700''' rakstīņu + +[[Kategoreja:Vikipedeja]] + 9ydpowfyb1yagn3k31pd91qmun8tglc + + + + Soluojs + 0 + 1472 + + 31425 + 31367 + 2016-05-04T15:16:04Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Soluojs +| atvaiga_pasauka = Salāja ezers 1999-08-17 - panoramio.jpg +| atvaiga_aprakstejums = Vierīņs iz Soluoju +| zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 12 | lats = 27 | latNS = N +| longd = 27 | longm = 24 | longs = 39 | longEW = E +| nūvods = Rēznis nūvods +| pluots = 1,75 +| pošlelais_garums = 12,1 +| vydyskuo_dzilīne = 4,8 +| pošleluo_dzilīne = 16,5 +| vydums = +| augstums = 163,9 +| iztece = [[Malta (upe)|Malta]] +| satecis_baseins = 49,7 +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = 10 +| dzeivojamys_vītys = Staleidzāni, Pozņaki +| cytys pasaukys = +}} + +'''Soluojs''' — azars Latgolys dīnavydu daļā, [[Rēznis nūvods|Rēznis nūvoda]] Muokuļkolna pogostā iz rūbeža ar [[Dagdys nūvods|Dagdys nūvoda]] Ondrupinis pogostu. Azars īīt Rāznys nacionaluo parka sadorā kai Soluoja dobys nūlīgtiņs. Azarmalis zamys, lāvom pīguoznem. Dybyns dyuņuots, muolaiņs, a vītom akmiņains. Azarmalis lineja 14,6 km gara, daudzim leičim i pussolom. Azara vokoru daļu sauc par Mozū Soluoju, nu Leluo Soluoja atškierts ar 10 m plotu carteci. Azarā 10 kryumainis i mežainis solys, kas kūpā sadora 9,1 dekteru pluota. Car azaru tak [[Malta (upe)|Maltys]] upe, kas nu Leluo Iļža azara da Soluojam saucēs Mostovuha. Azarā ītak 9 ryuči. + +Nu auguoju azarā aug nīdris, skūrstys, laičinis, gleivinis i cyti auguoji. Nu zyvu azarā dzeivoj osori, leidakys, plauds i cytys. + +[[Kategoreja:Latgolys azari]] + nkyzngfn6eprvur6hz6nj80tzyiaj2a + + + + Taiss:Infoskreine Latvejis upe + 10 + 1474 + + 18619 + 18618 + 2011-11-07T12:07:32Z + + Roalds + 50 + + klaideņa + wikitext + text/x-wiki + <includeonly>{| class="infobox" style="width: 270px; font-size: 90%; margin: 2px; margin-left: 1em; text-align: left;" +|- class="fn org" +! style="text-align:center; background:#CCCCFF;font-size:110%;" colspan="2"| {{{pasauka}}} +|- +<!-- ****** Upis atvaigs ****** --> +{{#if:{{{atvaiga_pasauka|}}}| +{{!}} style="border-top:1px solid #999966; font-size:95%; text-align:center;" colspan="2"; colspan="2" {{!}} [[File:{{{atvaiga_pasauka}}}| {{ #if: {{{atvaiga_mārs|}}} |{{{atvaiga_mārs}}} | 250px |border}}]]<br />{{{atvaiga_aprakstejums|}}} +{{!}}- +}} +|- +{{#if:{{{zemislopys_atvaigs|}}}| +{{!}} style="border-top:1px solid #999966; font-size:95%; text-align:center;" colspan="2"; colspan="2" {{!}} [[File:{{{zemislopys_atvaigs}}}| {{ #if: {{{zemislopys_mārs|}}} |{{{zemislopys_mārs}}} | 250px |border}}]]<br /> +{{!}}- +}} +|- +{{#if:{{{kulturviesturiskais_nūvods|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Kulturviesturiskais nūvods''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} [[{{{kulturviesturiskais_nūvods}}}]] +{{!}}- +}} +|- +{{#if: {{{iztaka|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Iztaka''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{iztaka}}} +}} +|- +{{#if: {{{viersupe|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Viersupe''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{viersupe}}} +}} +|- +{{#if: {{{satakupis|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Satakupis''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{satakupis}}} +}} +|- +{{#if: {{{ītaka|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Ītaka''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{ītaka}}} +}} +|- +{{#if: {{{baseina_vaļsteibys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Baseina vaļsteibys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{baseina_vaļsteibys}}} +}} +|- +{{#if: {{{satecis_baseins|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Satecis baseins''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{satecis_baseins}}}&nbsp;km² +}} +|- +{{#if: {{{tek_car|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Cartecis vaļsteibys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{tek_car}}} +}} +|- +{{#if: {{{garums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Garums''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{garums|}}}&nbsp;km&nbsp;{{#if:{{{garums_latvejā|}}} |(Latvejā {{{garums_latvejā}}}&nbsp;km)}} +}} +|- +{{#if: {{{iztakys_augstums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Iztakys augstums''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{iztakys_augstums}}}&nbsp;m vjl +}} +|- +{{#if: {{{ītakys_augstums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Ītakys augstums''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{ītakys_augstums}}} &nbsp;m vjl +}} +|- +{{#if: {{{nūkritīņs|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Nūkritīņs''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{nūkritīņs}}} &nbsp;m +}} +|- +{{#if: {{{vydyskais_puorteciejums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Vydyskais puorteciejums''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{vydyskais_puorteciejums}}} &nbsp;km³/s +}} +|- +{{#if: {{{gods_puorteciejums|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Gods puorteciejums''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{gods_puorteciejums}}} &nbsp;km³ +}} +|- +{{#if: {{{zeimeiguokuos_datakys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Zeimeiguokuos datakys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{zeimeiguokuos_datakys}}} +}} +|- +{{#if: {{{leluokuos_upsolys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Leluokuos upsolys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{leluokuos_upsolys}}} +}} +|- +{{#if: {{{dzeivuojamys_vītys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Dzeivojamys vītys upmalē''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{dzeivuojamys_vītys}}} +}} +|- +{{#if: {{{cytys_pasaukys|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#CCCCFF;" {{!}} '''Cytys pasaukys''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{cytys_pasaukys}}} +}} +|}</includeonly><noinclude> +{{Dokumentaceja}} + +{{DEFAULTSORT:Latvejis upe}} +[[Category:Geografejis infoskreinis]] +[[Category:Latvejis geografejis taisi|Infoskreine upe]] +</noinclude> + jj3qzwkriglazge55vufpbe1nowx4f8 + + + + Taiss:Infoskreine Latvejis upe/doc + 10 + 1475 + + 31373 + 16314 + 2016-03-28T10:46:14Z + + 91.9.119.68 + + Fluss-lv-Rēzekne.png + wikitext + text/x-wiki + {{Infoskreine Latvejis upe +| pasauka = Rēzne +| atvaiga_pasauka = Rēzeknes upe Rēzeknē.jpg +| atvaiga_aprakstejums = Rēznis upe Rēznē +| zemislopys_atvaigs = Fluss-lv-Rēzekne.png +| kulturviesturiskais_nūvods = Latgola +| iztaka = [[Rāzna]] +| viersupe = +| satakupis = +| ītaka = [[Lubuons]] +| baseina_vaļsteibys = [[Latveja]] +| satecis_baseins = 2025,7 +| tek_car = [[Latveja]] +| garums = +| garums_latvejā = 116 +| iztakys_augstums = 163,3 +| ītakys augstums = 92,1 +| nūkritīņs = 71 +| vydyskais_puorteciejums = 5,5 +| gods_puorteciejums = 0,2 +| zeimeiguokuos_datakys = [[Malta (upe)]], Lyužonka +| leluokuos_upsolys = 9 +| dzeivuojamys_vītys = Stolerova, [[Rēzne]], Rykova +| cytys_pasaukys = ({{Vol-lv|Rēzekne}}) +}} +<pre> +{{Infoskreine Latvejis upe +| pasauka = Rēzne +| atvaiga_pasauka = Rēzeknes upe Rēzeknē.jpg +| atvaiga_aprakstejums = Rēznis upe Rēznē +| zemislopys_atvaigs = Fluss-lv-Rēzekne.png +| kulturviesturiskais_nūvods = Latgola +| iztaka = [[Rāzna]] +| viersupe = +| satakupis = +| ītaka = [[Lubuons]] +| baseina_vaļsteibys = [[Latveja]] +| satecis_baseins = 2025,7 +| tek_car = [[Latveja]] +| garums = +| garums_latvejā = 116 +| iztakys_augstums = 163,3 +| ītakys augstums = 92,1 +| nūkritīņs = 71 +| vydyskais_puorteciejums = 5,5 +| gods_puorteciejums = 0,2 +| zeimeiguokuos_datakys = [[Malta (upe)]], Lyužonka +| leluokuos_upsolys = 9 +| dzeivuojamys_vītys = Stolerova, [[Rēzne]], Rykova +| cytys_pasaukys = ({{Vol-lv|Rēzekne}}) +}} +</pre> + 9a4d7pse0a6btcdouxb37t70qtyizlp + + + + Kategoreja:Latgolys upis + 14 + 1476 + + 14622 + 2011-06-02T13:09:51Z + + Roalds + 50 + + jauna kategoreja: Latgolys upis + wikitext + text/x-wiki + {{DEFAULTSORT:Latgolys upis}} +[[Kategoreja:Latgolys doba|Upis]] + ogrfkod36d5s3litmp3b09bdarajmsl + + + + Lopu mieneša 7 + 0 + 1480 + + + 14697 + 2011-06-03T20:22:33Z + + Dark Eagle + 34 + + "[[Lopu mieneša 7]]" puorsauču par "[[Lopu mieneša 7 dīna]]" + wikitext + text/x-wiki + #REDIRECT [[Lopu mieneša 7 dīna]] + 5vv008b7nhfouarphrnser6vq9y6gdb + + + + Pededze + 0 + 1482 + + 31371 + 31370 + 2016-03-28T10:42:40Z + + 91.9.119.68 + + Fluss-lv-Pededze.png + wikitext + text/x-wiki + {{Infoskreine Latvejis upe +| pasauka = Pededze +| atvaiga_pasauka = Pededze pie Litenes.jpg +| atvaiga_aprakstejums = Pededzis upe pi Litinis +| zemislopys_atvaigs = Fluss-lv-Pededze.png +| kulturviesturiskais_nūvods = Vydzeme +| iztaka = Kerigumis azars +| viersupe = +| satakupis = +| ītaka = Aivīkste (Vacpededze) +| baseina_vaļsteibys = [[Latveja]], [[Igauneja]], [[Krīveja]] +| satecis_baseins = 1690,0 +| tek_car = [[Latveja]], [[Igauneja]] +| garums = 159 +| garums_latvejā = 131 +| iztakys_augstums = +| ītakys augstums = +| nūkritīņs = 108 +| vydyskais_puorteciejums = +| gods_puorteciejums = 0,44 +| zeimeiguokuos_datakys = Syta, Paparža, Olyuksna +| leluokuos_upsolys = +| dzeivuojamys_vītys = Muolupe, Jaunanna, Litine +| cytys_pasaukys = +}} + +'''Pededze''' ({{vol-lv|Pededze}}; {{vol-et|Pedetsi jõgi}}; {{vol-vro|Pedejä jõgi}}) - upe Vydzemē, natuoli nu [[Latgola|Latgolys]] nūvoda rūbežu. Aivīkstis poša leluo lobuos malis dataka. Upe aizasuoc Hānjis augstainē, Kerigumis azarā, [[Igauneja|Igaunejis]] Vyrovys apleicinī. Tak iz dīnavydu sūpluok [[Krīveja|Krīvejis]] rūbežom, tod pasagrīž iz dīnavydvokoru i tak Latvejā Olyuksnis, Guļbinis i [[Modyunis nūvods|Modyunis nūvodūs]]. Deļ [[Lubuons|Lubuona]] hidrografiskuos sistemys, ītakā upe sasadola div storūs - Vacpededzē i Jaunpededzē. Vacpededze satak ar Bolupi. + +Upmalis cīši mežainis, daudzi ūzuluoju. 1997 godā Strodu pogostā sataiseits dobys nūlīgtiņs "Pededzis ūzuluojs". Upei daudzi leikumu i vacupu, 50 km puosmā nu Litinis da Jaunpededzis kanalam upe tak lūklūkim. Zamyn nu Litinis upē 1950 godūs pastateita iudiņa spākaine, tok sakryta i tān likvidieta. Kūpā ar Aivīksti, upi cieški sauc par Latgolys i Vydzemis rūbežu. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Latgolys upis]] + fb6f38apvdp2g0pwnrnya6trjtjdsv2 + + + + Taiss:Vol-vro + 10 + 1483 + + 31343 + 29799 + 2016-03-07T03:26:04Z + + Varlaam + 1454 + + + wikitext + text/x-wiki + {{langWithName|vro|vyrovīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|vro]] +</noinclude> + gmuivvoqkh1l1zpv1tujb73q56lagg3 + + + + Taiss:Vol-fiu-vro + 10 + 1484 + + + 14761 + 14757 + 2011-06-06T18:35:37Z + + Dark Eagle + 34 + + + "[[Taiss:Vol-fiu]]" puorsauču par "[[Taiss:Vol-fiu-vro]]" + wikitext + text/x-wiki + #REDIRECT [[Taiss:Vol-vro]] + fz9xxksvx3rzc4nhcuwgzos1w2azvs2 + + + + Taiss:Vol-sgs + 10 + 1488 + + 31345 + 29759 + 2016-03-07T03:29:01Z + + Varlaam + 1454 + + + wikitext + text/x-wiki + {{langWithName|sgs|žemaišu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|sgs]] +</noinclude> + o1icin1bkb7kt13k5w2osjntjvw4fjl + + + + Taiss:Vol-bat-smg + 10 + 1489 + + + 14797 + 2011-06-08T08:34:38Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:Vol-sgs]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Vol-sgs]] + r25e8q0edbqfszt8l7xb5hs66ps9oqu + + + + Mozais Ludzys azars + 0 + 1491 + + 29812 + 14897 + 2013-04-15T02:10:34Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Mozais Ludzys azars +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 32 | lats = 58 | latNS = N +| longd = 27 | longm = 42 | longs = 51 | longEW = E +| nūvods = Ludzys nūvods +| pluots = 36,5 +| pošlelais_garums = +| vydyskuo_dzilīne = 1,3 +| pošleluo_dzilīne = 2,5 +| vydums = +| augstums = 133,0 +| iztece = +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = +| dzeivojamys_vītys = [[Ludza]] +| cytys pasaukys = +}} + +'''Mozais Ludzys azars''' — cartecis azars Latgolys reitu daļā, [[Ludza|Ludzys]] mīsta teritorejā.<ref>[http://www.ezeri.lv/database/2095/ ezeri.lv]</ref> Garons azars pa reitu-vokoru tecīņam. Azarmalis pa lelumam stuovonys, golūs zamys kudrainis. Iztak Plītnīcys upeite nu Zviergzdiņa, nūtece pa kanalu iz [[Lelais Ludzys azars|Lelū Ludzys azaru]]. + +Nu auguoju azarā aug nīdris, skūrstys, skaļbi, laičinis, gleivinis i cyti auguoji. Vokoru daļa cīši kruši aizaug, net da 75%. Nu zyvu azarā dzeivoj osori, leidakys, plauds i cytys. Azarmalē ītaiseits mīsta myuds i laivu nūstuošana. + +== Nūruodis i olūti == +{{Nūruodis}} + +[[Kategoreja:Latgolys azari]] + 2zp12ihrhdao5qi7rb40b4a8uzb3xj8 + + + + Vikipedeja:Ap + 4 + 1492 + + + 14900 + 2011-06-15T13:29:23Z + + 217.199.105.91 + + Pāradresē uz [[Vikipedeja]] + wikitext + text/x-wiki + #REDIRECT [[Vikipedeja]] + lsmltsho922jsbt6xomgozmfl6eg14x + + + + Lelais Ludzys azars + 0 + 1493 + + 28588 + 24770 + 2013-03-08T00:33:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801722]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Lelais Ludzys azars +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 33 | lats = 58 | latNS = N +| longd = 27 | longm = 44 | longs = 51 | longEW = E +| nūvods = Ludzys nūvods +| pluots = 8,464 +| pošlelais_garums = 7,0 +| vydyskuo_dzilīne = 3,5 +| pošleluo_dzilīne = 6,5 +| vydums = 0,0309 +| augstums = 132,3 +| iztece = Iļža +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = 4 +| dzeivojamys_vītys = [[Ludza]] +| cytys pasaukys = +}} + +'''Lelais Ludzys azars''' — puorteciejuma azars Latgolys reitu daļā, [[Cyblys nūvods|Cyblys nūvoda]] Zviergzdiņa pogostā. Azarmalē [[Ludza|Ludzys]] mīsts i Ludzys nūvoda Vysnovys pogosts. Lelajā Ludzys azarā 4 azarsolys, jūs kūpeigais pluots 4,8 gekteri.<ref>[http://www.ezeri.lv/database/2057/ ezeri.lv]</ref> Dybyns smiļkšuots i dyuņuots, azarmalis pa lelumam zamys. Kūpeigais azarmalis garums 21,7 km. Azarā ītak Pylda, Vysnova, a iztak Iļža. Nūteciejums pa kanalu iz [[Mozais Ludzys azars|Mozū Ludzys azaru]] i Dyunuokļa azaru. + +Azarmalē Ludzys piļskrytys, Ludzys Romys katuoļu bazneica, Uodukolns i Keišu piliskolns. + +== Nūruodis i olūti == +{{Nūruodis}} + +[[Kategoreja:Latgolys azari]] + lrd5a66jxpukx6r14ks37r7rbd4rgrb + + + + Nigereja + 0 + 1521 + + 30858 + 30847 + 2015-08-16T20:49:14Z + + CommonsDelinker + 2750 + + Replacing Coat_of_Arms_of_Nigeria.svg with [[File:Coat_of_arms_of_Nigeria.svg]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: [[:commons:COM:FR|File renamed]]: [[:commons:COM:FR#reasons|File renaming criterion #3]]: To correct obvious erro + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big>'''Jamhuriyar Taraiyar Nijeriya'''</big> (hausu)<br /> <big> '''Njíkötá Óchíchìiwù Naíjíríà''' </big> (igbo) <br /> ''' <big> Àpapọ̀ Olómìnira ilẹ̀ Nàìjíríà''' </big> (jorubu) <br /> <big>'''Nigerejis Federaluo Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Nigeria.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Nigeria.svg|120px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Nigeria AU Africa.svg|300px]] +|- +|| Golvysmīsts || Abudža +|- +|| Vaļsteibys volūda || Angļu (oficialuo), hausu, igbo, jorubu +|- +| Prezidents || Muhammadu Buhari +|- +| Ministru prezidents || +|- +|| Pluots || 923 768 km² +|- +|| Dzeivuotuoju skaits || 131 859 731 +|- +|| [[Laika zona]] || UTC+1 +|} + +'''Nigereja''', oficialai '''Nigerejis Federaluo Republika''', irā federala konstitucionaluo republika. Nigerejis sadorā īīt 36 pavaļstis i federaluo golvysmīsta teritoreja Abudža. Vokoru Afrikys vaļsteiba tur rūbežu ar Benina Republiku vokorūs, Čadu i Kamerūnu reitūs i Nigeru pūstumūs. Dīnavydūs vaļsteibys molys skaloj Atlaņtejis okeana Gvinejis leics. Treis pošu leluos tautu grupys Nigerejā irā hausu, igbo i jorubu. Religiski tautys padaleitys iz pusem - vīna dale irā musulmonu, a ūtra kristīšu, tik nalela dale tradicionalū religeju pīkritieju. + +Nigerejis vaļsteibys pasauka jimta nu Nigeris upis, kas tak car vaļsteibu. Nigereja irā poša leluo vaļsteiba Afrikā pa dzeivuotuoju skaitam i septeituo poša leluo pasaulī, kurymā vysu vaira dzeivuotuoju irā malnī. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] + ntzzg7yxahcf2ilnl22ofpbozfm0ah0 + + + + Kategoreja:Kūku pogosts + 14 + 1523 + + 29600 + 15846 + 2013-04-04T21:16:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9708743]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Krystapiļs nūvods]] + 7j1hrj4orge7n7sfwg3z2ujvla2i1jm + + + + Kanada + 0 + 1525 + + 31117 + 30665 + 2015-10-23T06:08:05Z + + Varlaam + 1454 + + Harpers → Trudeau + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Kanada'''<br />'''Canada'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Canada.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Canada rendition.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Canada (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || [[Otava]] +|- +| Premjerministrs || [[Justin Trudeau]] +|- +|| Pluots || 9 984 670 km² +|- +|| Dzeivuotuoju skaits || 34 534 000 +|} +'''Kanada''' (''Canada'') — vaļsteiba [[Pūstumu Amerika|Pūstumu Amerikā]]. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == + +{{Nadabeigts rakstīņs}} + +{{Amerikys vaļsteibys}} + +[[Kategoreja:Pūstumamerikys vaļsteibys]] + fi7buecennbljosibgbj3t5qsqdhbeh + + + + Canada + 0 + 1527 + + + 15479 + 2011-07-31T11:32:10Z + + Edgars2007 + 114 + + Pāradresē uz [[Kanada]] + wikitext + text/x-wiki + #redirect [[Kanada]] + ahc3j1fg0p2708s30t5l46xga3g5d0m + + + + Zeme + 0 + 1528 + + 30666 + 28591 + 2015-03-24T14:33:44Z + + Cekli829 + 277 + + wikitext + text/x-wiki + {{Cytys zeimeibys|planetu|Zeme (zeimeibu škiršona)|Zeme}} +[[Fails:The Earth seen from Apollo 17.jpg|thumb|200px|Zemis fotografeja nu kosmosa lellaivys [[Apollo 17]].]] +'''Zeme''' ({{vol-la|Terra}}) — treša nu [[Saule|Saulis]] [[planeta]] i pīkta leluoka vysā [[Saulis sistema|Saulis sistemā]]. Zemei irā vīns dabeigs paceļnīks — [[Mienesnīks]]. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Zeme| ]] + o7twkqlk6b6ut43ev540dvao9pv4uax + + + + Kategoreja:Zeme + 14 + 1529 + + 29741 + 28947 + 2013-04-13T04:54:12Z + + KLBot2 + 1857 + + + Bot: Migrating 5 interwiki links, now provided by [[Wikidata]] on [[:d:Q1458521]] + wikitext + text/x-wiki + {{Commonscat|Earth|Zeme}} +{{Catmore}} + +[[Kategoreja:Vītys]] +[[Kategoreja:Saulis sistemys planetys]] +[[Kategoreja:Doba]] + 7yrj6ou7jtex2dcpi9530apf65vtlem + + + + Taiss:User ja + 10 + 1530 + + 29954 + 28593 + 2013-08-01T07:07:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5567955]] + wikitext + text/x-wiki + {{User lang +|lang = ja +|name = Japāņu volūda +|level = N +|size = +|info = この利用者は'''[[:Kategoreja:User ja|日本語]]'''を'''[[:Kategoreja:User ja-N|母語]]'''としています。 +}} + g0514302ogqd9k1w14in5pngpc8bkam + + + + Kategoreja:User ja + 14 + 1531 + + 28594 + 28090 + 2013-03-08T00:34:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 179 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6446118]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ja}} + +[[Kategoreja:Lītuotuoju volūdys|ja]] + muae7iekxzq8qbdvthddvyzn29wv0fb + + + + Kategoreja:User ja-N + 14 + 1532 + + 28595 + 28089 + 2013-03-08T00:34:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 147 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6114443]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ja-N}} + +[[Kategoreja:User ja| 0]] + 0opyx14yf2y9aoa016ltv4akdyq0jr4 + + + + Taiss:User ar + 10 + 1533 + + 29948 + 28596 + 2013-08-01T07:07:34Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6086123]] + wikitext + text/x-wiki + {{User lang +|lang = ar +|name = Arabišu volūda +|level = N +|size = +|info = <div style="text-align:right;" lang="ar" dir="rtl">اللغة '''[[:Kategoreja:User ar-N|الأم]]''' لهذا المستخدم هي '''[[:Kategoreja:User ar|العربية]]'''.</div> +}} + 63107nyss4bq3o9hlk7z43ilbx954kf + + + + Taiss:Vol-ar + 10 + 1534 + + 31344 + 15511 + 2016-03-07T03:27:02Z + + Varlaam + 1454 + + X enwiki + wikitext + text/x-wiki + {{langWithName|ar|arabišu|{{{1}}}}}<noinclude> +[[Kategoreja:Volūdu taisi|ar]] +</noinclude> + 5fvbhtnq3e19xdd0mgs4ohew8bl3ja2 + + + + Kategoreja:User ar + 14 + 1535 + + 29697 + 28597 + 2013-04-13T04:48:53Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6387736]] + wikitext + text/x-wiki + {{Commonscat|User ar}} + +[[Kategoreja:Lītuotuoju volūdys|ar]] + rwkyn9fzdlszdar4hjtcmeywsp9xk4u + + + + Kategoreja:User ar-N + 14 + 1536 + + 29699 + 28598 + 2013-04-13T04:48:59Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6388369]] + wikitext + text/x-wiki + {{Commonscat|User ar-N}} + +[[Kategoreja:User ar| 0]] + 2qu5v0n5p9rar0ylwxls2mww49rc2sg + + + + Taiss:User ar-1 + 10 + 1537 + + 29950 + 28599 + 2013-08-01T07:07:35Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5538250]] + wikitext + text/x-wiki + {{User lang +|lang = ar +|name = Arabišu volūda +|level = 1 +|size = +|info = <div style="text-align:right;" lang="ar" dir="rtl">هذا المستخدم قادر بأن يساهم '''[[:Kategoreja:User ar|باللغة العربية]]''' بمستوى '''[[:Kategoreja:User ar-1|مبتدئ]]'''.</div> +}} + 991f5ozdtwc69ktelwpw0mk4e37jspy + + + + Kategoreja:User ar-1 + 14 + 1538 + + 29698 + 28600 + 2013-04-13T04:48:56Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6388033]] + wikitext + text/x-wiki + {{Commonscat|User ar-1}} + +[[Kategoreja:User ar| 4]] + s53t5v5crzcnyfcawe6iifdpvmhyylk + + + + Taiss:User ar-0 + 10 + 1539 + + 29367 + 25816 + 2013-03-14T05:15:26Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 26 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6961174]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +|lang = ar +|name = Arabišu volūda +|level = 0 +|size = +|info = <div style="text-align:right;" lang="ar" dir="rtl">هذا المستخدم '''[[:Kategoreja:User ar-0|لا يتحدث]] [[:Kategoreja:User ar|العربية]]'''.</div> +}}<noinclude> +</noinclude> + 3knwik8utn6u3mieplq4vm376y4e3y4 + + + + Kategoreja:User ar-0 + 14 + 1540 + + 29529 + 25811 + 2013-04-02T18:56:28Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 20 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9309709]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ar-0}} + +[[Kategoreja:User ar| 5]] + o5kigln38ucbqvcewy1oc91xd04r40w + + + + Taiss:User ar-2 + 10 + 1541 + + 28601 + 26362 + 2013-03-08T00:36:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 36 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6085206]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +|lang = ar +|name = Arabišu volūda +|level = 2 +|size = +|info = <div style="text-align:right;" lang="ar" dir="rtl">هذا المستخدم بإمكانه التحدث '''[[:Kategoreja:User ar|بالعربية]]''' بمستوى '''[[:Kategoreja:User ar-2|متوسط]]'''.</div> +}}<noinclude> +</noinclude> + fu9r5s857d8wchmz5i2kdv6vxub6d03 + + + + Kategoreja:User ar-2 + 14 + 1542 + + 28602 + 25819 + 2013-03-08T00:36:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 64 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6388132]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ar-2}} + +[[Kategoreja:User ar| 3]] + i4nh4rws57067tm8nhzgooew5ach7c1 + + + + Taiss:User ar-3 + 10 + 1543 + + 28603 + 23982 + 2013-03-08T00:37:02Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 32 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6085563]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +|lang = ar +|name = Arabišu volūda +|level = 3 +|size = +|info = <div style="text-align:right;" lang="ar" dir="rtl">هذا المستخدم بإمكانه التحدث '''[[:Kategoreja:User ar|بالعربية]]''' بمستوى '''[[:Kategoreja:User ar-3|متقدم]]'''.</div> +}}<noinclude> +</noinclude> + bt73v2hda4hlnc55jkerd8chy59svoz + + + + Kategoreja:User ar-3 + 14 + 1544 + + 28604 + 25822 + 2013-03-08T00:37:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 57 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6388212]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ar-3}} + +[[Kategoreja:User ar| 2]] + j3pamn5uddw6l2nxnt1ju5dkzc0ital + + + + Taiss:User ar-N + 10 + 1545 + + + 15524 + 2011-08-01T10:13:41Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:User ar]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:User ar]] + t2l0nnnfrfz3cffkcxz2lbyxxwkgeex + + + + Taiss:User ar-4 + 10 + 1546 + + 29368 + 25831 + 2013-03-14T05:16:02Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 31 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6964350]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{User lang +|lang = ar +|name = Arabišu volūda +|level = 4 +|size = +|info = <div style="text-align:right;" lang="ar" dir="rtl">هذا المستخدم بإمكانه التحدث '''[[:Kategoreja:User ar|بالعربية]]''' بمستوى '''[[:Kategoreja:User ar-4|ممتاز]]'''.</div> +}}<noinclude> +</noinclude> + 5k27haeu7t08lhjcejsr8zxdiw47d2v + + + + Kategoreja:User ar-4 + 14 + 1547 + + 28605 + 25821 + 2013-03-08T00:37:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 38 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6388265]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|User ar-4}} + +[[Kategoreja:User ar| 1]] + 3ft0wwwxhotnlyd1l4ot812fgsyn96h + + + + Taiss:User ja-N + 10 + 1548 + + + 15527 + 2011-08-01T10:16:54Z + + Dark Eagle + 34 + + + Pāradresē uz [[Taiss:User ja]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:User ja]] + j5zlsq3nury60d1jngh1k2kwafvaved + + + + Taiss:User it-1 + 10 + 1549 + + 29955 + 28606 + 2013-08-01T07:07:38Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5567988]] + wikitext + text/x-wiki + {{User lang +| lang = it +| name = Itaļu volūda +| level = 1 +| size = +| info = Questo utente può contribuire con un '''[[:Kategoreja:User it|italiano]]''' di livello '''[[:Kategoreja:User it-1|semplice]]'''. +}} + 3sfxz5dir0s67ec3nuzz4bn7gfljsgp + + + + Kategoreja:User it + 14 + 1550 + + 29724 + 15529 + 2013-04-13T04:51:20Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6445580]] + wikitext + text/x-wiki + {{Commonscat|User it}} + +[[Kategoreja:Lītuotuoju volūdys|it]] + 4t61dkf52jmke3lz253uh1f16lbhlcc + + + + Kategoreja:User it-1 + 14 + 1551 + + 29725 + 15530 + 2013-04-13T04:51:27Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6445707]] + wikitext + text/x-wiki + {{Commonscat|User it-1}} + +[[Kategoreja:User it| 4]] + gyu7n8uzjehhczfu1mtoyd5hln6elon + + + + Taiss:User hr + 10 + 1552 + + 29953 + 28607 + 2013-08-01T07:07:37Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q5566835]] + wikitext + text/x-wiki + {{User lang +|lang = hr +|name = Horvatu volūda +|level = N +|size = +|info = Ovaj suradnik govori '''[[:Kategoreja:User hr|hrvatski]]''' kao '''[[:Kategoreja:User hr-N|materinski jezik]]'''. +}} + 1oq6ey1heu6swpizaxanobmbyryvurb + + + + Kategoreja:User hr + 14 + 1553 + + 29722 + 15532 + 2013-04-13T04:51:05Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6407881]] + wikitext + text/x-wiki + {{Commonscat|User hr}} + +[[Kategoreja:Lītuotuoju volūdys|hr]] + b3yrjofglvlscax6ihp2b2j274xjlsl + + + + Kategoreja:User hr-N + 14 + 1554 + + 29723 + 15533 + 2013-04-13T04:51:11Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6408224]] + wikitext + text/x-wiki + {{Commonscat|User hr-N}} + +[[Kategoreja:User hr| 0]] + fhr6pca8vpv4dra29emdwczcb2fmup6 + + + + Azeja + 0 + 1555 + + 28608 + 27926 + 2013-03-08T01:00:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 237 interwiki links, now provided by [[d:|Wikidata]] on [[d:q48]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:LocationAsia.svg|thumb|300px|Azeja iz pasauļa kartys.]] +'''Azeja''' — poša leluokuo pasauļa daļa, kūpā ar [[Europa|Europu]] sastota [[Eurazeja|Eurazejis]] koņtinentu. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Azeja| ]] + qx7llrdw6ub489eth3cl5y5ig6ccyr2 + + + + Kategoreja:Azeja + 14 + 1557 + + 29671 + 28609 + 2013-04-13T04:28:00Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q5610083]] + wikitext + text/x-wiki + {{commonscat|Asia|Azeja}} +{{catmain}} + +[[Kategoreja:Eurazeja]] +[[Kategoreja:Pasauļa dalis]] + h0hr7xuvxo5mvie3cdmu71yc3iffg1a + + + + Kategoreja:Eurazeja + 14 + 1559 + + 29532 + 27624 + 2013-04-02T18:57:40Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 50 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8426586]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Eurasia|Eurazeja}} +{{catmain}} + +[[Kategoreja:Koņtinenti]] + 65ph30h1zrdeqxy448li2n2x8g8imw8 + + + + Kategoreja:Europa + 14 + 1560 + + 29675 + 28610 + 2013-04-13T04:35:18Z + + KLBot2 + 1857 + + + Bot: Migrating 2 interwiki links, now provided by [[Wikidata]] on [[:d:Q4587662]] + wikitext + text/x-wiki + {{commonscat|Europe|Europa}} +{{catmain}} + +[[Kategoreja:Eurazeja]] +[[Kategoreja:Pasauļa dalis]] + lrmbromn7p6ftwq6gbnphss4dl3ql7z + + + + Afrika + 0 + 1562 + + 28611 + 27929 + 2013-03-08T01:01:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 240 interwiki links, now provided by [[d:|Wikidata]] on [[d:q15]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Location of Africa.svg|thumb|300px|Afrika pasauļis zemislopā.]] +'''Afrika''' — [[koņtinents]] i [[pasauļa dalis|pasauļa daļa]], ūtrys pošu lelais koņtinents aiz [[Eurazeja|Eurazejis]]. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Afrika| ]] + lkdhxfdfpzhvaesp4jfqymvgqmuteki + + + + Kategoreja:Afrika + 14 + 1563 + + 29667 + 28612 + 2013-04-13T04:18:48Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q5460710]] + wikitext + text/x-wiki + {{commonscat|Afrika|Afrika}} +{{catmain}} + +[[Kategoreja:Koņtinenti]] +[[Kategoreja:Pasauļa dalis]] + qswzfe2phwje78424765r5ro4feq8yw + + + + Saule + 0 + 1570 + + 31821 + 31810 + 2016-12-09T09:36:42Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31810 dated 2016-12-09 09:02:29 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + [[Fails:The Sun by the Atmospheric Imaging Assembly of NASA's Solar Dynamics Observatory - 20100819.jpg|thumb|250px|Saulis fotografeja]] +'''Saule''' — vīneiga [[zvaigzne]] [[Saulis sistema|Saulis sistemā]], apleik kurai grīžās cyti ituos sistemys objekti: [[planeta|planetys]] i tū [[dobyskys paceļnīks|paceļnīki]], [[pundurplaneta|pundurplanetys]] i tū paceļnīki, [[asteroids|asteroidi]], [[meteoroids|meteoroidi]], [[kometa|kometys]] i [[kosmiski putekļi]]. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Saule| ]] + l4fypewrp0t5jqxy3uj3u4hcgy1r554 + + + + Kategoreja:Saule + 14 + 1571 + + 29389 + 24222 + 2013-03-15T02:29:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 65 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7217154]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Sun|Saule}} +{{catmain}} + +[[Kategoreja:Saulis sistema]] +[[Kategoreja:Zvaigznis]] + j4emdmxit8j2hlvaojoy2zevh7g9nid + + + + Eurazeja + 0 + 1572 + + 28614 + 25712 + 2013-03-08T01:01:51Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 118 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5401]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Location of Eurasia.svg|thumb|300px|Eurazeja pasauļis zemislopā.]] +'''Eurazeja''' — pošlelais [[koņtinents]] iz [[Zeme|Zemis]], pluots — 3 893 tyukstūšu km², kas sastatei 36% nu [[sausīne|sausīnys]] pluota. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Eurazeja| ]] + g5jjcbui5l16f5ihz9s8pfw5slogirj + + + + Jaunagods mieness + 0 + 1573 + + 29300 + 28615 + 2013-03-11T11:00:15Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q108]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Jaunagods (janvara) mieness''' — pyrmais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim i vīns nu septenim mienešim, kurā irā 31 [[dīna]]. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Jaunagods mieness| ]] +[[Kategoreja:Gregora kaleņders]] + gsymof95empvm8o3g3me8j82nxauwee + + + + Taiss:Mieneši i dīnys + 10 + 1574 + + 30383 + 28616 + 2014-06-21T11:06:07Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + {{Navbox +|style = width:auto +|name = Mieneši i dīnys +|title = [[Gods|Goda]] [[mieness|mieneši]] i [[dīna|dīnys]] +|group1 = [[Jaunagods mieness|Jaunagods]] +|list1 = [[Jaunagods mieneša 1 dīna|1]] [[Jaunagods mieneša 2 dīna|2]] [[Jaunagods mieneša 3 dīna|3]] [[Jaunagods mieneša 4 dīna|4]] [[Jaunagods mieneša 5 dīna|5]] [[Jaunagods mieneša 6 dīna|6]] [[Jaunagods mieneša 7 dīna|7]] [[Jaunagods mieneša 8 dīna|8]] [[Jaunagods mieneša 9 dīna|9]] [[Jaunagods mieneša 10 dīna|10]] [[Jaunagods mieneša 11 dīna|11]] [[Jaunagods mieneša 12 dīna|12]] [[Jaunagods mieneša 13 dīna|13]] [[Jaunagods mieneša 14 dīna|14]] [[Jaunagods mieneša 15 dīna|15]] [[Jaunagods mieneša 16 dīna|16]] [[Jaunagods mieneša 17 dīna|17]] [[Jaunagods mieneša 18 dīna|18]] [[Jaunagods mieneša 19 dīna|19]] [[Jaunagods mieneša 20 dīna|20]] [[Jaunagods mieneša 21 dīna|21]] [[Jaunagods mieneša 22 dīna|22]] [[Jaunagods mieneša 23 dīna|23]] [[Jaunagods mieneša 24 dīna|24]] [[Jaunagods mieneša 25 dīna|25]] [[Jaunagods mieneša 26 dīna|26]] [[Jaunagods mieneša 27 dīna|27]] [[Jaunagods mieneša 28 dīna|28]] [[Jaunagods mieneša 29 dīna|29]] [[Jaunagods mieneša 30 dīna|30]] [[Jaunagods mieneša 31 dīna|31]] +|group2 = [[Svacainis mieness|Svacainis]] +|list2 = [[Svacainis mieneša 1 dīna|1]] [[Svacainis mieneša 2 dīna|2]] [[Svacainis mieneša 3 dīna|3]] [[Svacainis mieneša 4 dīna|4]] [[Svacainis mieneša 5 dīna|5]] [[Svacainis mieneša 6 dīna|6]] [[Svacainis mieneša 7 dīna|7]] [[Svacainis mieneša 8 dīna|8]] [[Svacainis mieneša 9 dīna|9]] [[Svacainis mieneša 10 dīna|10]] [[Svacainis mieneša 11 dīna|11]] [[Svacainis mieneša 12 dīna|12]] [[Svacainis mieneša 13 dīna|13]] [[Svacainis mieneša 14 dīna|14]] [[Svacainis mieneša 15 dīna|15]] [[Svacainis mieneša 16 dīna|16]] [[Svacainis mieneša 17 dīna|17]] [[Svacainis mieneša 18 dīna|18]] [[Svacainis mieneša 19 dīna|19]] [[Svacainis mieneša 20 dīna|20]] [[Svacainis mieneša 21 dīna|21]] [[Svacainis mieneša 22 dīna|22]] [[Svacainis mieneša 23 dīna|23]] [[Svacainis mieneša 24 dīna|24]] [[Svacainis mieneša 25 dīna|25]] [[Svacainis mieneša 26 dīna|26]] [[Svacainis mieneša 27 dīna|27]] [[Svacainis mieneša 28 dīna|28]] [[Svacainis mieneša 29 dīna|29]] +|group3 = [[Pavasara mieness|Pavasara]] +|list3 = [[Pavasara mieneša 1 dīna|1]] [[Pavasara mieneša 2 dīna|2]] [[Pavasara mieneša 3 dīna|3]] [[Pavasara mieneša 4 dīna|4]] [[Pavasara mieneša 5 dīna|5]] [[Pavasara mieneša 6 dīna|6]] [[Pavasara mieneša 7 dīna|7]] [[Pavasara mieneša 8 dīna|8]] [[Pavasara mieneša 9 dīna|9]] [[Pavasara mieneša 10 dīna|10]] [[Pavasara mieneša 11 dīna|11]] [[Pavasara mieneša 12 dīna|12]] [[Pavasara mieneša 13 dīna|13]] [[Pavasara mieneša 14 dīna|14]] [[Pavasara mieneša 15 dīna|15]] [[Pavasara mieneša 16 dīna|16]] [[Pavasara mieneša 17 dīna|17]] [[Pavasara mieneša 18 dīna|18]] [[Pavasara mieneša 19 dīna|19]] [[Pavasara mieneša 20 dīna|20]] [[Pavasara mieneša 21 dīna|21]] [[Pavasara mieneša 22 dīna|22]] [[Pavasara mieneša 23 dīna|23]] [[Pavasara mieneša 24 dīna|24]] [[Pavasara mieneša 25 dīna|25]] [[Pavasara mieneša 26 dīna|26]] [[Pavasara mieneša 27 dīna|27]] [[Pavasara mieneša 28 dīna|28]] [[Pavasara mieneša 29 dīna|29]] [[Pavasara mieneša 30 dīna|30]] [[Pavasara mieneša 31 dīna|31]] +|group4 = [[Sulu mieness|Sulu]] +|list4 = [[Sulu mieneša 1 dīna|1]] [[Sulu mieneša 2 dīna|2]] [[Sulu mieneša 3 dīna|3]] [[Sulu mieneša 4 dīna|4]] [[Sulu mieneša 5 dīna|5]] [[Sulu mieneša 6 dīna|6]] [[Sulu mieneša 7 dīna|7]] [[Sulu mieneša 8 dīna|8]] [[Sulu mieneša 9 dīna|9]] [[Sulu mieneša 10 dīna|10]] [[Sulu mieneša 11 dīna|11]] [[Sulu mieneša 12 dīna|12]] [[Sulu mieneša 13 dīna|13]] [[Sulu mieneša 14 dīna|14]] [[Sulu mieneša 15 dīna|15]] [[Sulu mieneša 16 dīna|16]] [[Sulu mieneša 17 dīna|17]] [[Sulu mieneša 18 dīna|18]] [[Sulu mieneša 19 dīna|19]] [[Sulu mieneša 20 dīna|20]] [[Sulu mieneša 21 dīna|21]] [[Sulu mieneša 22 dīna|22]] [[Sulu mieneša 23 dīna|23]] [[Sulu mieneša 24 dīna|24]] [[Sulu mieneša 25 dīna|25]] [[Sulu mieneša 26 dīna|26]] [[Sulu mieneša 27 dīna|27]] [[Sulu mieneša 28 dīna|28]] [[Sulu mieneša 29 dīna|29]] [[Sulu mieneša 30 dīna|30]] +|group5 = [[Lopu mieness|Lopu]] +|list5 = [[Lopu mieneša 1 dīna|1]] [[Lopu mieneša 2 dīna|2]] [[Lopu mieneša 3 dīna|3]] [[Lopu mieneša 4 dīna|4]] [[Lopu mieneša 5 dīna|5]] [[Lopu mieneša 6 dīna|6]] [[Lopu mieneša 7 dīna|7]] [[Lopu mieneša 8 dīna|8]] [[Lopu mieneša 9 dīna|9]] [[Lopu mieneša 10 dīna|10]] [[Lopu mieneša 11 dīna|11]] [[Lopu mieneša 12 dīna|12]] [[Lopu mieneša 13 dīna|13]] [[Lopu mieneša 14 dīna|14]] [[Lopu mieneša 15 dīna|15]] [[Lopu mieneša 16 dīna|16]] [[Lopu mieneša 17 dīna|17]] [[Lopu mieneša 18 dīna|18]] [[Lopu mieneša 19 dīna|19]] [[Lopu mieneša 20 dīna|20]] [[Lopu mieneša 21 dīna|21]] [[Lopu mieneša 22 dīna|22]] [[Lopu mieneša 23 dīna|23]] [[Lopu mieneša 24 dīna|24]] [[Lopu mieneša 25 dīna|25]] [[Lopu mieneša 26 dīna|26]] [[Lopu mieneša 27 dīna|27]] [[Lopu mieneša 28 dīna|28]] [[Lopu mieneša 29 dīna|29]] [[Lopu mieneša 30 dīna|30]] [[Lopu mieneša 31 dīna|31]] +|group6 = [[Vosorys mieness|Vosorys]] +|list6 = [[Vosorys mieneša 1 dīna|1]] [[Vosorys mieneša 2 dīna|2]] [[Vosorys mieneša 3 dīna|3]] [[Vosorys mieneša 4 dīna|4]] [[Vosorys mieneša 5 dīna|5]] [[Vosorys mieneša 6 dīna|6]] [[Vosorys mieneša 7 dīna|7]] [[Vosorys mieneša 8 dīna|8]] [[Vosorys mieneša 9 dīna|9]] [[Vosorys mieneša 10 dīna|10]] [[Vosorys mieneša 11 dīna|11]] [[Vosorys mieneša 12 dīna|12]] [[Vosorys mieneša 13 dīna|13]] [[Vosorys mieneša 14 dīna|14]] [[Vosorys mieneša 15 dīna|15]] [[Vosorys mieneša 16 dīna|16]] [[Vosorys mieneša 17 dīna|17]] [[Vosorys mieneša 18 dīna|18]] [[Vosorys mieneša 19 dīna|19]] [[Vosorys mieneša 20 dīna|20]] [[Vosorys mieneša 21 dīna|21]] [[Vosorys mieneša 22 dīna|22]] [[Vosorys mieneša 23 dīna|23]] [[Vosorys mieneša 24 dīna|24]] [[Vosorys mieneša 25 dīna|25]] [[Vosorys mieneša 26 dīna|26]] [[Vosorys mieneša 27 dīna|27]] [[Vosorys mieneša 28 dīna|28]] [[Vosorys mieneša 29 dīna|29]] [[Vosorys mieneša 30 dīna|30]] +|group7 = [[Sīna mieness|Sīna]] +|list7 = [[Sīna mieneša 1 dīna|1]] [[Sīna mieneša 2 dīna|2]] [[Sīna mieneša 3 dīna|3]] [[Sīna mieneša 4 dīna|4]] [[Sīna mieneša 5 dīna|5]] [[Sīna mieneša 6 dīna|6]] [[Sīna mieneša 7 dīna|7]] [[Sīna mieneša 8 dīna|8]] [[Sīna mieneša 9 dīna|9]] [[Sīna mieneša 10 dīna|10]] [[Sīna mieneša 11 dīna|11]] [[Sīna mieneša 12 dīna|12]] [[Sīna mieneša 13 dīna|13]] [[Sīna mieneša 14 dīna|14]] [[Sīna mieneša 15 dīna|15]] [[Sīna mieneša 16 dīna|16]] [[Sīna mieneša 17 dīna|17]] [[Sīna mieneša 18 dīna|18]] [[Sīna mieneša 19 dīna|19]] [[Sīna mieneša 20 dīna|20]] [[Sīna mieneša 21 dīna|21]] [[Sīna mieneša 22 dīna|22]] [[Sīna mieneša 23 dīna|23]] [[Sīna mieneša 24 dīna|24]] [[Sīna mieneša 25 dīna|25]] [[Sīna mieneša 26 dīna|26]] [[Sīna mieneša 27 dīna|27]] [[Sīna mieneša 28 dīna|28]] [[Sīna mieneša 29 dīna|29]] [[Sīna mieneša 30 dīna|30]] [[Sīna mieneša 31 dīna|31]] +|group8 = [[Labeibys mieness|Labeibys]] +|list8 = [[Labeibys mieneša 1 dīna|1]] [[Labeibys mieneša 2 dīna|2]] [[Labeibys mieneša 3 dīna|3]] [[Labeibys mieneša 4 dīna|4]] [[Labeibys mieneša 5 dīna|5]] [[Labeibys mieneša 6 dīna|6]] [[Labeibys mieneša 7 dīna|7]] [[Labeibys mieneša 8 dīna|8]] [[Labeibys mieneša 9 dīna|9]] [[Labeibys mieneša 10 dīna|10]] [[Labeibys mieneša 11 dīna|11]] [[Labeibys mieneša 12 dīna|12]] [[Labeibys mieneša 13 dīna|13]] [[Labeibys mieneša 14 dīna|14]] [[Labeibys mieneša 15 dīna|15]] [[Labeibys mieneša 16 dīna|16]] [[Labeibys mieneša 17 dīna|17]] [[Labeibys mieneša 18 dīna|18]] [[Labeibys mieneša 19 dīna|19]] [[Labeibys mieneša 20 dīna|20]] [[Labeibys mieneša 21 dīna|21]] [[Labeibys mieneša 22 dīna|22]] [[Labeibys mieneša 23 dīna|23]] [[Labeibys mieneša 24 dīna|24]] [[Labeibys mieneša 25 dīna|25]] [[Labeibys mieneša 26 dīna|26]] [[Labeibys mieneša 27 dīna|27]] [[Labeibys mieneša 28 dīna|28]] [[Labeibys mieneša 29 dīna|29]] [[Labeibys mieneša 30 dīna|30]] [[Labeibys mieneša 31 dīna|31]] +|group9 = [[Rudiņa mieness|Rudiņa]] +|list9 = [[Rudiņa mieneša 1 dīna|1]] [[Rudiņa mieneša 2 dīna|2]] [[Rudiņa mieneša 3 dīna|3]] [[Rudiņa mieneša 4 dīna|4]] [[Rudiņa mieneša 5 dīna|5]] [[Rudiņa mieneša 6 dīna|6]] [[Rudiņa mieneša 7 dīna|7]] [[Rudiņa mieneša 8 dīna|8]] [[Rudiņa mieneša 9 dīna|9]] [[Rudiņa mieneša 10 dīna|10]] [[Rudiņa mieneša 11 dīna|11]] [[Rudiņa mieneša 12 dīna|12]] [[Rudiņa mieneša 13 dīna|13]] [[Rudiņa mieneša 14 dīna|14]] [[Rudiņa mieneša 15 dīna|15]] [[Rudiņa mieneša 16 dīna|16]] [[Rudiņa mieneša 17 dīna|17]] [[Rudiņa mieneša 18 dīna|18]] [[Rudiņa mieneša 19 dīna|19]] [[Rudiņa mieneša 20 dīna|20]] [[Rudiņa mieneša 21 dīna|21]] [[Rudiņa mieneša 22 dīna|22]] [[Rudiņa mieneša 23 dīna|23]] [[Rudiņa mieneša 24 dīna|24]] [[Rudiņa mieneša 25 dīna|25]] [[Rudiņa mieneša 26 dīna|26]] [[Rudiņa mieneša 27 dīna|27]] [[Rudiņa mieneša 28 dīna|28]] [[Rudiņa mieneša 29 dīna|29]] [[Rudiņa mieneša 30 dīna|30]] +|group10 = [[Leita mieness|Leita]] +|list10 = [[Leita mieneša 1 dīna|1]] [[Leita mieneša 2 dīna|2]] [[Leita mieneša 3 dīna|3]] [[Leita mieneša 4 dīna|4]] [[Leita mieneša 5 dīna|5]] [[Leita mieneša 6 dīna|6]] [[Leita mieneša 7 dīna|7]] [[Leita mieneša 8 dīna|8]] [[Leita mieneša 9 dīna|9]] [[Leita mieneša 10 dīna|10]] [[Leita mieneša 11 dīna|11]] [[Leita mieneša 12 dīna|12]] [[Leita mieneša 13 dīna|13]] [[Leita mieneša 14 dīna|14]] [[Leita mieneša 15 dīna|15]] [[Leita mieneša 16 dīna|16]] [[Leita mieneša 17 dīna|17]] [[Leita mieneša 18 dīna|18]] [[Leita mieneša 19 dīna|19]] [[Leita mieneša 20 dīna|20]] [[Leita mieneša 21 dīna|21]] [[Leita mieneša 22 dīna|22]] [[Leita mieneša 23 dīna|23]] [[Leita mieneša 24 dīna|24]] [[Leita mieneša 25 dīna|25]] [[Leita mieneša 26 dīna|26]] [[Leita mieneša 27 dīna|27]] [[Leita mieneša 28 dīna|28]] [[Leita mieneša 29 dīna|29]] [[Leita mieneša 30 dīna|30]] [[Leita mieneša 31 dīna|31]] +|group11 = [[Solnys mieness|Solnys]] +|list11 = [[Solnys mieneša 1 dīna|1]] [[Solnys mieneša 2 dīna|2]] [[Solnys mieneša 3 dīna|3]] [[Solnys mieneša 4 dīna|4]] [[Solnys mieneša 5 dīna|5]] [[Solnys mieneša 6 dīna|6]] [[Solnys mieneša 7 dīna|7]] [[Solnys mieneša 8 dīna|8]] [[Solnys mieneša 9 dīna|9]] [[Solnys mieneša 10 dīna|10]] [[Solnys mieneša 11 dīna|11]] [[Solnys mieneša 12 dīna|12]] [[Solnys mieneša 13 dīna|13]] [[Solnys mieneša 14 dīna|14]] [[Solnys mieneša 15 dīna|15]] [[Solnys mieneša 16 dīna|16]] [[Solnys mieneša 17 dīna|17]] [[Solnys mieneša 18 dīna|18]] [[Solnys mieneša 19 dīna|19]] [[Solnys mieneša 20 dīna|20]] [[Solnys mieneša 21 dīna|21]] [[Solnys mieneša 22 dīna|22]] [[Solnys mieneša 23 dīna|23]] [[Solnys mieneša 24 dīna|24]] [[Solnys mieneša 25 dīna|25]] [[Solnys mieneša 26 dīna|26]] [[Solnys mieneša 27 dīna|27]] [[Solnys mieneša 28 dīna|28]] [[Solnys mieneša 29 dīna|29]] [[Solnys mieneša 30 dīna|30]] +|group12 = [[Zīmys mieness|Zīmys]] +|list12 = [[Zīmys mieneša 1 dīna|1]] [[Zīmys mieneša 2 dīna|2]] [[Zīmys mieneša 3 dīna|3]] [[Zīmys mieneša 4 dīna|4]] [[Zīmys mieneša 5 dīna|5]] [[Zīmys mieneša 6 dīna|6]] [[Zīmys mieneša 7 dīna|7]] [[Zīmys mieneša 8 dīna|8]] [[Zīmys mieneša 9 dīna|9]] [[Zīmys mieneša 10 dīna|10]] [[Zīmys mieneša 11 dīna|11]] [[Zīmys mieneša 12 dīna|12]] [[Zīmys mieneša 13 dīna|13]] [[Zīmys mieneša 14 dīna|14]] [[Zīmys mieneša 15 dīna|15]] [[Zīmys mieneša 16 dīna|16]] [[Zīmys mieneša 17 dīna|17]] [[Zīmys mieneša 18 dīna|18]] [[Zīmys mieneša 19 dīna|19]] [[Zīmys mieneša 20 dīna|20]] [[Zīmys mieneša 21 dīna|21]] [[Zīmys mieneša 22 dīna|22]] [[Zīmys mieneša 23 dīna|23]] [[Zīmys mieneša 24 dīna|24]] [[Zīmys mieneša 25 dīna|25]] [[Zīmys mieneša 26 dīna|26]] [[Zīmys mieneša 27 dīna|27]] [[Zīmys mieneša 28 dīna|28]] [[Zīmys mieneša 29 dīna|29]] [[Zīmys mieneša 30 dīna|30]] [[Zīmys mieneša 31 dīna|31]] +|group13 = Sasīti rakstīni +|list13 = [[Jaunagods mieneša 0 dīna|Jaunagods m. 0 d.]]{{·}} [[Svacainis mieneša 30 dīna|Svacainis m. 30 d.]]{{·}} [[Svacainis mieneša 31 dīna|Svacainis m. 31 d.]]{{·}} [[Pavasara mieneša 0 dīna|Pavasara m. 0 d.]] +}}<noinclude> +[[Kategoreja:Kaleņdera taisi]] + +</noinclude> + gjidpzqa01c4fb4mkd4crkzptq5hceg + + + + Taiss:Mieneši + 10 + 1575 + + + 15642 + 2011-08-04T21:31:47Z + + Dark Eagle + 34 + + "[[Taiss:Mieneši]]" puorsauču par "[[Taiss:Mieneši i dīnys]]" + wikitext + text/x-wiki + #REDIRECT [[Taiss:Mieneši i dīnys]] + gqzuyhyrgmddh2szgxpbgnyi6cparp1 + + + + Kategoreja:Jaunagods mieness + 14 + 1576 + + 28948 + 28617 + 2013-03-08T14:45:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5866575]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|January|Jaunagods mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 01]] +[[Kategoreja:Datys| 01]] + jb0h4gdawxl3z1zqmvdvkqxs8osl3ln + + + + Kategoreja:Laikroksti + 14 + 1577 + + 29681 + 28618 + 2013-04-13T04:43:16Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6161946]] + wikitext + text/x-wiki + {{Commonscat|Newspapers|Laikroksti}} +{{catmain|Laikroksts}} + +[[Kategoreja:Viesteitivi]] + nxzvzu7g1rx412hspctyrxtm8omzwdc + + + + Katōļu Dzeive + 0 + 1578 + + 31916 + 31368 + 2017-03-01T20:00:39Z + + Ivario + 1230 + + wikitext + text/x-wiki + '''Katōļu Dzeive''' aba '''Katuoļu Dzeive''' beja religiski ļaudyskys [[Žurnals|žurnals]], kuru izdūd SIA "Katoļu Dzeive" [[Viļāni|Viļānu]] mīstā.<ref>[http://company.lursoft.lv/katolu_dzeive Lursoft pasajāmumu datu baza]</ref> [[Žurnals]] izīt 11 reižu godā, sīna i labeibys mienešu numuru izlaižūt kūpā sīna mienesī. Materiali žurnalā tyka publicāti [[Latvīšu volūda|latvīšu]] i [[Latgaļu volūda|latgaļu volūdā]]. Rakstīni irā na tik ap religejis temom, a taipoš stuosta ap psihologiskom i cytom gareigom cylvāka nabyušonom i jū izsprīsšonu. Regularai tyka publicāti rakstīni ap [[Latgola|Latgolys]] ļaužu dzeivi, stuosti ap bazņeicu viesturi, nūvoda kulturviesturi, volūdu, vuiceibu, solsaimesteibu i cytom svareigom temom. Laikrokstā beja cieški atrūnami ari literarī dorbi latgaļu volūdā. Žurnals tur zeimeigu vītu latgaļu rokstu volūdys popuļariziešonā i izglobuošonā myuslaiku lītuošonai. + +==Viesture== +Pyrmais "Katuoļu Dzeivis" laidīņs izguoja 1926 gods pavasara mienesī, vysys publikacejis tymā beja tik [[latgaļu volūda|latgaļu volūdā]].<ref>[http://www.rezeknesbiblioteka.lv/index.php?option=com_content&view=article&id=547:katolu-dzeive-garigais-mantojums&catid=163:par-izstadem-cb&Itemid=104 Rēznis Centraluo biblioteka]</ref> Da 1940 godam žurnals izguoja [[Reiga|Reigā]], nu suoku naregularai. Tok jau nu 1929 gods laikroksts suoce izīt vīnu reizi par mienesi. Pyrmais redaktors da 1928 godam beja Dominiks Jaudzems - bazneicnīks, [[Rēzne|Rēznis]] Školuotuoju instituta direktors.<ref>[http://www.rezeknesnovads.lv/rrp/lv/content/2/3/207 Rēznis nūvoda Sakstygola pogosts]</ref> Nu 1929 gods da 1938 godam žurnalu vadeja A. Novickais, a da 1940 godam P. Laurinovičs. + +1940 godā sovetu vaļdeiba žurnala darbeibu nūlīdze i tei tyka atjaunynuota tik 1989 godā, taišni pyrma pošu zeimeiguokū katuoļu svātku Leldīņu. Nu ituo goda žurnala redakceja irā [[Viļāni|Viļānūs]]. Da 1999 godam laikroksta laidiejs beja Reigys metropolojeis kureja, a tuoļuok pasajāmums SIA "Katoļu Dzeive". Nu 2000 gods golvonais redaktors irā A. Ševeļs, a ilglaiceiguo redaktore Maruta Latkovskuo - tautā labi zynomuo žurnala dareituoja.<ref>[http://www.ludzaszeme.lv/news/MarutaLatkovska ''IEPAZĪSTAM „KATŌĻU DZEIVI” UN TĀS REDAKTORI'', Ludzys Zeme]</ref> + +2010 godā tika atdareita [[Žurnals|žurnala]] skaitleiguo verseja. Sevkurs var dasasaceit sajimt "Katōļu Dzeivi" sovā e-postā PDF formatā. + +Žurnals puortrauca iznuokt 2014. goda decembrī.<ref>Darbību pārtrauc žurnāls «Katōļu Dzeive». Lsm.lv. 2014. g. 3. decembrī. http://www.lsm.lv/lv/raksts/kulturpolitika/kultura/darbiibu-partrauc-zhurnals-katlju-dzeive.a108711/</ref> + +==Nūruodis i olūti== +{{Nūruodis}} + +[[Kategoreja:Laikroksti]] + 3eqaw7f5dblka26b8jld0ufot0xznyw + + + + Katōļu dzeive + 0 + 1580 + + + 15658 + 2011-08-05T09:19:28Z + + Roalds + 50 + + "[[Katōļu dzeive]]" puorsauču par "[[Katōļu Dzeive]]": žurnala pasaukys originalraksteiba + wikitext + text/x-wiki + #REDIRECT [[Katōļu Dzeive]] + izygnp4sr41m8ucxckbjotmofjtakhn + + + + Cylvāka bārns (filma, 1991) + 0 + 1581 + + 31593 + 28620 + 2016-10-15T14:33:57Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + {{Cytys zeimeibys|1991 godā iztaiseitu filmu|Cylvāka bārns|Cylvāka bārns}} +{| class="wikitable" align="right" +!colspan=2|Cylvāka bārns +|- +| Režisors +| Juoņs Streičs +|- +| Scenareja autors +| Juoņs Streičs +|- +| Operators +| Kukeļs Harejs +|- +| Muokslinīks +| Osvalds Zvejsaļnīks +|- +| Studeja +| „Trīs” +|- +| Iztaiseita +| [[1991 gods|1991 godā]] +|} + +'''„Cylvāka bārns”''' ({{vol-lv|„Cilvēka bērns”}}) — latgaliska muokslys filma piec [[Juoņs Klīdzējs|Juoņa Klīdzēja]] romana. + +== Teiklavītys == +* [http://nfc.webserver.lv/lmdb/movies/movie.php?mov_id=1187 „Cylvāka bārns” — Kino Muzejs] +* [http://www.kino-teatr.ru/kino/movie/sov/1856/annot/ „Cylvāka bārns” teiklavītā ''kino-teatr.ru''] +* [http://www.imdb.com/title/tt0103971/ „Cylvāka bārns” teiklavītā ''imdb.com''] + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Filmys]] + jxtqlqgqgg580d01qi4nhfcj9gitid6 + + + + Taiss:Ref-info + 10 + 1582 + + 15672 + 2011-08-05T12:47:02Z + + Dark Eagle + 34 + + Jauna lapa: <includeonly>&nbsp;<span class="ref-info" title="{{{2}}}" style="font-size:85%; cursor:help; color:#888;">({{{1}}})</span> </includeonly><noinclude>{{dokumentaceja}}</noinclude> + wikitext + text/x-wiki + <includeonly>&nbsp;<span class="ref-info" title="{{{2}}}" style="font-size:85%; cursor:help; color:#888;">({{{1}}})</span> +</includeonly><noinclude>{{dokumentaceja}}</noinclude> + 0lymgp5x6ccy3asooypa3irhzptp7t5 + + + + Taiss:Ref-info/doc + 10 + 1583 + + 16567 + 15673 + 2011-08-30T14:18:39Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + {{ref-info|http://example.org/|Teiklavītys pīvadums}}<includeonly> +[[Kategoreja:Vikipedeja:Taisi]] +</includeonly> + 4cvaorzw5bup109542thr5vaq7nxr5h + + + + Cylvāka bārns + 0 + 1584 + + 28621 + 15678 + 2013-03-08T01:04:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4162463]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Cylvāka bārns''' var zeimuot: +* [[Bārns]] — [[cylvāks]] mozdīnu periodā. +* „[[Cylvāka bārns (romans, 1956)|Cylvāka bārns]]” — [[Juoņs Klīdzējs|Juoņa Klīdzēja]] 1956 godā pīraksteits romans. +* „[[Cylvāka bārns (filma, 1991)|Cylvāka bārns]]” — [[Juoņs Streičs|Juoņa Streiča]] 1991 godā iztaiseita latgaliska muokslys filma. +* „[[Cylvāka bārns (romans, 1992)|Cylvāka bārns]]” — Fillisa Doroti Džeimsa 1992 godā pīraksteits romans. +* „[[Cylvāka bārns (filma, 2006)|Cylvāka bārns]]” — Alfonso Cuarona 2006 godā iztaiseita filosofo-fantastiska muokslys filma. + +{{Zeimeibu škiršona}} + hbsqettoxxwa20bof0s3po5xrjkrxsf + + + + Cylvāka bārns (zeimeibu škiršona) + 0 + 1585 + + + 15680 + 2011-08-05T13:41:14Z + + Dark Eagle + 34 + + + Pāradresē uz [[Cylvāka bārns]] + wikitext + text/x-wiki + #REDIRECT [[Cylvāka bārns]] + hwb1o7jbe7it6vatm2lolaw5fvt6cf7 + + + + Cylvāka bārns (filma) + 0 + 1586 + + + 15681 + 2011-08-05T13:41:33Z + + Dark Eagle + 34 + + + Pāradresē uz [[Cylvāka bārns]] + wikitext + text/x-wiki + #REDIRECT [[Cylvāka bārns]] + hwb1o7jbe7it6vatm2lolaw5fvt6cf7 + + + + Cylvāka bārns (romans) + 0 + 1587 + + + 15682 + 2011-08-05T13:42:06Z + + Dark Eagle + 34 + + + Pāradresē uz [[Cylvāka bārns]] + wikitext + text/x-wiki + #REDIRECT [[Cylvāka bārns]] + hwb1o7jbe7it6vatm2lolaw5fvt6cf7 + + + + Lelbritaneja + 0 + 1588 + + + 15725 + 2011-08-08T10:45:02Z + + Roalds + 50 + + "[[Lelbritaneja]]" puorsauču par "[[Lelbrytaneja]]": Latgaļu gramatika - r+y + wikitext + text/x-wiki + #REDIRECT [[Lelbrytaneja]] + gymdyldvi2kpgfjkpxbwt7sotkz3cys + + + + Keneja + 0 + 1589 + + 31891 + 29660 + 2017-02-21T14:41:33Z + + CommonsDelinker + 2750 + + Replacing Coat_of_arms_of_Kenya.svg with [[File:Alternate_Coat_of_arms_of_Kenya.svg]] (by [[:c:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: It is not the real coat of arms, but was confused for it.). + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big>'''Jamhuri ya Kenya'''</big> (svahilu)<br /> <big> '''Republic of Kenya''' </big> (anglīšu) <br /> ''' <big> </big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Kenya.svg|150px|border]] +| align="center" width="140px" | [[Fails:Alternate Coat of arms of Kenya.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Kenya in its region (de-facto).svg|300px]] +|- +|| Golvysmīsts || Nairobis +|- +|| Vaļsteibys volūda || svahilu, anglīšu +|- +| Prezidents || Uhuru Kenyatta +|- +| Ministru prezidents || Kalonzo Musjoka +|- +|| Pluots || 580 367 km² +|- +|| Dzeivuotuoju skaits || 34 707 8171 +|- +|| [[Laika zona]] || UTC+3 +|} + +'''Keneja''', oficialai '''Kenejis Republika''', irā vaļsteiba reitu [[Afrika|Afrikā]], golvysmīsts Nairobis. Keneju pa pusei padola ekvators, dīnavydreitūs juos molys skaloj Iņdejis okeans. Vaļsteiba tur rūbežu ar Somaleju pūstumreitūs, ar Etiopeju pūstumūs, Sudanu pūstumvokorūs, Ugandu vokorūs i Tanzaneju dīnavydūs. Dīnavydvokorūs irā Viktorejis azars, kura dalis taipoš irā Ugandā i Tanzanejā. Keneja boguota mežogū dobu ar nazcik tyukstūšu dzeivinīku i auguoju škiru. Vaļsteibys pluotā 580,000&nbsp;km<sup>2</sup> dzeivoj gondreiž 39 miļjoni ļaužu, kuri byun vysaižu izškireigu tautu i kulturu. Kenejis Republikys pasauka jimta nu Kenejis kolna (vītejū volūdā zeimoj ''boltais''), kurs irā ūtrais pa augstumam Afrikā i byun kai zeimeigs orieņtirs dzeivuotuojim. + +Kenejis sadorā īīt 47 rajoni, sevkurs nu jū tur sovu pa pusei autonomu vaļdeibu, kas saškierta ar golvonū vaļdeibu golvysmīstā Nairobī. Vaļsteibys geografeja izškireiga kai juos tautys. Jei tur goru okeanmali ar Iņdejis okeanu, kas vaļsteibys vydā puorīt savanys zuoluojūs i naaugleigūs kryumuojūs. Centralī i vokoru apgabali kolnaini i mežaini, cikom pūstumu apgabali irā tyvai tukšneša zemisvierīņam. + +Kai Reitu Afrikys vaļsteiba, Keneja bejuse apdzeivuota jau senejā paleolitā. Bantu tautu ekspanseja pasaplateišonuos aizasuoce pyrmā godu tyukstūšgadeibā i myuslaiku vaļsteibys rūbeži izaveidoja Nila-Saharys, Afroaziatu i Bantu volūdu apgabaļu krystceļūs. Tys sataiseja Keneju kai pylnai daudzikulturalu vaļsteibu. Europīšu i arabu sūpluokums zemē beja jau jaunū laiku suokuos, tok vydslītuos jū ītaka suoce buyt tik 19 godu symtā. Brytu Impereja īstateja Reitu Afrikys protektoratu 1895 godā, kas nu 1920 gods zynoms kai Kenejis Koloneja. Napavaļdeiga Kenejis Republika īstateita 1963 gods zīmys mienesī. + +Kenejis golvysmīsts Nairobis irā golvonais tierdzeibys centrys. Kenejis ekonomika irā vīna nu pošu lelū Reitu i Centralajuo Afrikā. Vaļsteiba tradicionalai aizajim ar pasaulī izslivuo čaju i kopeju, a napaseņ tikuse par golvonū eksportolūtu svīžom pučem Europys dzeivuotuojim. Pakaļpīņu iņdustrejā golvonū vītu aizajim telekomunikacejis. Taipoš Keneja irā izslivu atletu tāvaine. + +== Viesture == + +== Politika == + +== Geografeja == + +== Demografeja == + +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] + pxko2hbiw2vi29gga4enuj7mu9j9pb2 + + + + Zīmara pogosts + 0 + 1590 + + 32083 + 28623 + 2017-06-25T09:02:43Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Zīmara pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Zīmara pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Zīmara pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Muoreņkolns +| pluots = 117.02 +| dzeivuotuoju_skaits = 819<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 819 / 117.02 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Zīmara pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogostā dora Zīmara pamatškola, feļčeru punkts, pogosta buoreņtīsa, Muoreņkolna biblioteka i tautys noms, pogosta ciļtsarokstu atdale, turizma informacejis punkts, socialuo dīnaste i 29 Zīmaru mazpulks.<ref>[http://aluksne.lv/pilseta_par_aluksni/ziemeri.htm Olyuksnys nūvoda teiklavīta]</ref> + +==Viesture== +Zīmars kai dzeivojama vīta kronikuos mynāts jau ap 1550 godu, kod vītejais muižnīks Johans Feļdbergs par 100 dalderim puordevs muižu sovam svaiņam breivzemnīkam Aļbertam Simeram. Dūmuot, ka nu juo pavuordis izaroduse vītys i vysa pogosta pasauka.<ref>[http://www.ziemeri.eclub.lv/muiza.htm Zīmara muižys viesture]</ref> + +== Rūbeži == +Zīmara pogosts tur rūbežu ar: +* [[Olyuksnys nūvods|Olyuksnys nūvoda]] [[Olyuksna|Olyuksnys mīstu]] i [[Alsviķa pogosts|Alsviķa]], [[Jaunlaicinis pogosts|Jaunlaicinis]], [[Muorkaļnis pogosts|Muorkaļnis]] i [[Vaclaicinis pogosts|Vaclaicinis]] pogostu; +* Vyrovys apleiciņa Hānjis i Miso pogostu. + +==Doba== +Zīmara pogosts irā Olyuksnys augstainis pūstumu golā, pogostā nazcik kaupru. Saltupu kolns izaceļ 230 m vjl, a Garais kolns 283,2 vjl. Zeme apauguse mežim i nacīši lūbeiga zemdareibai. Taipoš pogostā daudzi mozu ezereņu i ryuču. + +=== Iudini === +Upis: +* Douņupeite +* Vaidova +* Zviergzdupeite + +[[Iudiņtvere|Iudiņtveris]]: +* Bārtūža azars +* Murāta azars +* Vaidovys azars +* Voiku azars + +Pūri i peisi: +* Rudzu pūrs + +== Dzeivuotuoji == +=== Solys === +Zīmara pogosta teritorejā irā 17 solu i nazcik vīnsātu.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +{| class="wikitable" +! Tips +! Solys +! Dzeivuotuoji <br /> <small>(2007)</small> +|- +|rowspan="2" align="center"| Vydyskuos <br /> solys +| [[Muoreņkolns]] +| 223 +|- +| [[Zīmars]] +| 66 +|- +|rowspan="9" align="center"| Mozuos solys +| [[Blūmi]] +|11 +|- +| [[Gorūži]] +| 15 +|- +| [[Gūbys]] +| 21 +|- +| [[Gryguli]] +| 8 +|- +| [[Kampi]] +| 26 +|- +| [[Kuorkli]] +| +|- +| [[Pauleni]] +| 5 +|- +| [[Ratinīki]] +| +|- +| [[Strauteni]] +| 9 +|- +|rowspan="6" align="center"| Skrajeniskuos <br /> solys +| [[Bīraņti]] +| 7 +|- +| [[Cīlovys]] +| 13 +|- +| [[Stuomari]] +| 7 +|- +| [[Škārsti]] +| 11 +|- +| [[Šļukums]] +| 9 +|- +| [[Vengerski]] +| 2 +|} + +=== Zeimeigi ļauds === + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju naškārsoj nivīns vaļsteibys zeimebys autoceļš ci dzeļžaceļš. Sative nūteik pa vītejuos zeimeibys celim - Lucka-Olyuksna (V383), Alsvikis-Zīmars (V384), Olyuksna-Zīmars-Vaclaicine (V386) i cytim.<ref>[http://www.lvceli.lv/LV/?i=247 Latvejis vaļsteibys vītejī autoceli]</ref> + +Zīmara pogosta teritoreju apkalpoj div posta atdalis Muoreņkolns (LV-4332) i Olyuksna-1 (LV-4301).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Briedeņu ciļts muzejs - nūvodtiemeibys i Briedeņu ciļts muzejs +* Malnuma prīds - 8 pošu lelais prīds Latvejā +* Zīmara muiža - pastateita nu 1786 da 1807 godam +* Valna pāda - vierīniska leldūbe + +== Nūruodis == +{{Nūruodis}} + + +{{Olyuksnys nūvods}} + +[[Kategoreja:Zīmara pogosts| ]] + awbq46o1jdgpcgfve8ar7o2ssidqtq1 + + + + Kategoreja:Zīmara pogosts + 14 + 1594 + + 29574 + 15849 + 2013-04-04T08:11:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9727893]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Olyuksnys nūvods]] + b98317k4lopf0rdd94etik3infn6cy0 + + + + Kategoreja:Olyuksnys nūvods + 14 + 1595 + + 29601 + 15822 + 2013-04-04T21:17:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9427708]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Alūksne municipality|Olyuksnys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + o3kz6xod3xlz9p33ak9e4burfdfmkzy + + + + Kategoreja:Latvejis administrativais dalejums + 14 + 1596 + + 29350 + 24556 + 2013-03-13T02:28:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 27 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6975523]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Subdivisions of Latvia|Latvejis administrativais teritoriskais dalejums}} +{{catmain|Latvejis administrativais teritoriskais dalejums}} + +[[Kategoreja:Administrativais dalejums pa vaļsteibai|Latveja]] +[[Kategoreja:Latvejis geografeja|Administrativais dalejums]] + rmsyhnpv1axtfxg3h10pfyxbpjw97kn + + + + Tiļžys pogosts + 0 + 1597 + + 28624 + 20983 + 2013-03-08T01:05:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801051]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Tiļžys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Tiļžys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Tiļžys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Bolvu nūvods +| centrys = Tiļža +| pluots = 104,41 +| dzeivuotuoju_skaits = 1140<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 937 / 10.9 round 1}} +| īstateits = +| teiklavīta = www.tilza.lv +}} + +'''Tiļžys pogosts''' irā [[Bolvu nūvods|Bolvu nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Tiļžys vydsškola, Tiļžys internatpamatškola, pyrmaškoliņs īstots, kulturys noms, biblioteka i Tiļžys pogosta kulturviesturis tiemeibys i turizma centrys.<ref>[http://balvi.lv/index.php?option=com_content&view=category&layout=blog&id=191&Itemid=178&lang=lv Bolvu nūvoda teiklavīta]</ref> + + +== Rūbeži == +Tiļžys pogosts tur rūbežu ar: +* [[Bolvu nūvods|Bolvu nūvoda]] [[Bieržu pogosts|Bieržu pogostu]], [[Brīžucīma pogosts|Brīžucīma pogostu]], [[Kryšanu pogosts|Kryšanu pogostu]], [[Lozdulejis pogosts|Lozdulejis pogostu]] i [[Vactiļžys pogosts|Vactiļžys pogostu]]; +* [[Baļtinovys nūvods|Baļtinovys nūvoda]] [[Baļtinovys pogosts|Baļtinovys pogostu]]; +* [[Ruguoju nūvods|Ruguoju nūvoda]] [[Lozdukolna pogosts|Lozdukolna pogostu]]; +* [[Kuorsovys nūvods|Kuorsovys nūvoda]] [[Saļņovys pogosts|Saļņovys pogostu]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Bolvu nūvods}} + +[[Kategoreja:Tiļžys pogosts| ]] + 1hi2ady342axurjcuu6vpra22iarh2r + + + + Kategoreja:Tiļžys pogosts + 14 + 1598 + + 29569 + 15842 + 2013-04-04T06:20:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9720460]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Bolvu nūvods]] + 75aufo271u3d8izd1sdaq2mn9aczzo5 + + + + Kategoreja:Bolvu nūvods + 14 + 1599 + + 29533 + 24471 + 2013-04-02T18:57:51Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8287652]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Balvi municipality|Bolvu nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + 001bdq963xfuzaa47q880lktydiqbk0 + + + + Kategoreja:Kuorsova + 14 + 1600 + + 29602 + 15861 + 2013-04-04T21:17:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9708576]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Kārsava|Kuorsova}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Kuorsovys nūvods]] + dnggfss791k5jw9e1126plc5at2d0a1 + + + + Kategoreja:Kuorsovys nūvods + 14 + 1601 + + 29603 + 15854 + 2013-04-04T21:17:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9576652]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Kārsava municipality|Kuorsovys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + ja0io65n1twh02cw6e7ki4hdci64ii9 + + + + Kategoreja:Kruoslova + 14 + 1602 + + 29604 + 15856 + 2013-04-04T21:18:00Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9935679]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Krāslava|Kruoslova}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Kruoslovys nūvods]] + m4iujf85xeysrkwcp6i8w5s5sprcr8q + + + + Kategoreja:Dagdys nūvods + 14 + 1603 + + 29605 + 15860 + 2013-04-04T21:18:02Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9510879]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Dagda municipality|Dagdys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + 7jswc4yunyrgki8bolqgakyxbfjcozs + + + + Kategoreja:Ludzys nūvods + 14 + 1604 + + 29606 + 15864 + 2013-04-04T21:18:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9612787]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Ludza municipality|Ludzys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + q1n4nuxlkjoi8avt1nn6nt2t4f836xq + + + + Kategoreja:Preiļu nūvods + 14 + 1605 + + 29565 + 15867 + 2013-04-04T06:16:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9716402]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Preiļi municipality|Preiļu nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + pnjf3nd1mlppy1a125indpsfaslipse + + + + Kategoreja:Sīnuojis nūvods + 14 + 1606 + + 29549 + 15872 + 2013-04-03T22:16:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9530167]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Zilupe municipality|Sīnuojis nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + cynlwf8kbhmh7s4bbpchl2r7mk70r6x + + + + Kategoreja:Varakļuonu nūvods + 14 + 1607 + + 29607 + 15875 + 2013-04-04T21:18:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9461712]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Varakļāni municipality|Varakļuonu nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + s990vpqaim0nlp7d7dsznwbup45fatb + + + + Kategoreja:Vileks nūvods + 14 + 1608 + + 29608 + 15878 + 2013-04-04T21:18:07Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9480403]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Viļaka municipality|Vileks nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + eyaolsne4kc5lqkxel8zq1houd8z35u + + + + Kategoreja:Viļānu nūvods + 14 + 1609 + + 29545 + 15881 + 2013-04-03T18:12:02Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9480409]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Viļāni municipality|Viļānu nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + tv941kv8evlul9nguhc2ha0zopw03sh + + + + Kategoreja:Leidumnīku pogosts + 14 + 1611 + + 29559 + 15888 + 2013-04-04T04:11:23Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9712892]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Cyblys nūvods]] + nf5k0utpvpoxih4plkmjlh0eit3s2sh + + + + Kategoreja:Cyblys nūvods + 14 + 1612 + + 29609 + 15890 + 2013-04-04T21:18:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9702643]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Cibla municipality|Cyblys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + e95qszdrq8bbocaw6llja7kmg8f4etx + + + + Kategoreja:Cyblys pogosts + 14 + 1613 + + 29610 + 15892 + 2013-04-04T21:18:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9702744]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Cyblys nūvods]] + nf5k0utpvpoxih4plkmjlh0eit3s2sh + + + + Kategoreja:Aglyunys nūvods + 14 + 1614 + + 29611 + 15899 + 2013-04-04T21:18:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9423622]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Aglona municipality|Aglyunys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + 2s7pkrsrc7mbob4fsagdg8crqpwh2rm + + + + Kategoreja:Baļtinovys nūvods + 14 + 1615 + + 29612 + 15902 + 2013-04-04T21:18:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9442033]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Baltinava municipality|Baļtinovys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + su6v79bczgc4axlviga0uth6vp31qun + + + + Kategoreja:Casvainis nūvods + 14 + 1617 + + 29613 + 15909 + 2013-04-04T21:18:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9702371]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Cesvaine municipality|Casvainis nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + oqmuipxjbv2yq5rpfyafhwsikk89fja + + + + Kategoreja:Latvejis dzeivojamuos vītys + 14 + 1618 + + 29527 + 24651 + 2013-04-02T18:56:22Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 13 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8779945]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Populated places in Latvia|Latvejis dzeivojamuos vītys}} + +[[Kategoreja:Dzeivojamuos vītys pa vaļsteibai|Latveja]] +[[Kategoreja:Latvejis geografeja|Dzeivojamuos vītys]] + n39vls0l2gq0054o0w5u0riv2h2hnlw + + + + Kategoreja:Latvejis solys + 14 + 1619 + + 29528 + 19414 + 2013-04-02T18:56:23Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8203837]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Villages in Latvia|Latvejis solys}} +{{categoryTOC}} + +[[Kategoreja:Solys pa vaļsteibai|Latveja]] +[[Kategoreja:Latvejis dzeivojamuos vītys|Solys]] + o2vo1cvazn43axl9gbanudptj1c7fxp + + + + Kategoreja:Dzeivojamuos vītys pa vaļsteibai + 14 + 1620 + + 28625 + 27582 + 2013-03-08T01:05:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 43 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4992962]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Populated places by country|Dzeivojamuos vītys pa vaļsteibai}} + +[[Kategoreja:Dzeivojamuos vītys| Vaļsteibys]] +[[Kategoreja:Geografeja pa vaļsteibai| Dzeivojamuos vītys]] +[[Kategoreja:Kategorejis pa vaļsteibai]] + d91dusd194tvlvpstmqhkjx5igiobv8 + + + + Kategoreja:Maltys pogosts + 14 + 1621 + + 29614 + 18002 + 2013-04-04T21:18:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9616149]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Rēznis nūvods]] + hiiokjfor3vzp2qfamhvucv4g5zuhch + + + + Kategoreja:Rēznis nūvoda solys + 14 + 1622 + + 29615 + 15951 + 2013-04-04T21:18:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9717892]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Latvejis solys pa nūvodim]] +[[Kategoreja:Rēznis nūvods| Solys]] + kvicgc8kn8juuxt88akh612pjz9heyo + + + + Kategoreja:Latvejis solys pa nūvodim + 14 + 1623 + + 29616 + 15953 + 2013-04-04T21:18:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9712251]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Latvejis solys| Nūvodi]] + f7p011xjvhqskl5hz6xsczkuidz1l0g + + + + Kategoreja:Daugpiļs nūvoda solys + 14 + 1624 + + 29617 + 15955 + 2013-04-04T21:18:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9703570]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Latvejis solys pa nūvodim]] +[[Kategoreja:Daugpiļs nūvods| Solys]] + 3l7feh0lpgt4efmzc8817hdyb6swnec + + + + Kategoreja:Cyblys nūvoda solys + 14 + 1625 + + 29618 + 15956 + 2013-04-04T21:18:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9702432]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Latvejis solys pa nūvodim]] +[[Kategoreja:Cyblys nūvods| Solys]] + 983skdft57gewrclh0k10q12rlvqpxr + + + + Kategoreja:Latvejis pogostu centri + 14 + 1626 + + 29416 + 15958 + 2013-03-20T02:28:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7689599]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{CategoryTOC}} + +[[Kategoreja:Latvejis pogosti| Centri]] + ph9x5e4h60eq4poar1bep3in2alqjxo + + + + Kategoreja:Solys pa vaļsteibai + 14 + 1627 + + 29401 + 26802 + 2013-03-18T02:27:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 29 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7348488]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Villages by country|Solys pa vaļsteibai}} + +[[Kategoreja:Solys| Vaļsteibys]] +[[Kategoreja:Dzeivojamuos vītys pa vaļsteibai| Solys]] +[[Kategoreja:Kategorejis pa vaļsteibai]] + 1deopgj7pb8exw65re1is10dcqrqdro + + + + Kategoreja:Dzeivojamuos vītys + 14 + 1628 + + 28626 + 27630 + 2013-03-08T01:30:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 34 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5624766]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Populated places|Dzeivojamuos vītys}} +{{catmore|Dzeivojama vīta}} + +[[Kategoreja:Geografeja]] +[[Kategoreja:Vītys]] +[[Kategoreja:Ļaudeiba]] + kp7zzm3yxgep705y6pqbtdxl3kvsv87 + + + + Kategoreja:Cylvāki + 14 + 1629 + + 28627 + 26736 + 2013-03-08T01:30:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 150 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4047087]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|People|Cylvāki}} + +[[Kategoreja:Ļaudeiba]] + 0ee5nflwfc15iztvc40z5txkq2bva5r + + + + Kategoreja:Ļaudeiba + 14 + 1630 + + 28628 + 26396 + 2013-03-08T01:30:54Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 146 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457756]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Society|Ļaudeiba}} +{{catmore}} + +[[Kategoreja:Pamatkategorejis]] +[[Kategoreja:Sociologeja]] + ed05zabzstvzgl7eo8phm9woy3jok3q + + + + Škeļtiņu pogosts + 0 + 1631 + + 28629 + 17335 + 2013-03-08T01:31:05Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605096]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Škeļtiņu pogosts +| zemislopa = Šķeltovas pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Škeļtiņu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Škeļtiņu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aglyunys nūvods +| centrys = Škeļtini +| pluots = 75.3 +| dzeivuotuoju_skaits = 759<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 759 / 75.3 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Škeļtiņu pogosts''' irā [[Aglyunys nūvods|Aglyunys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Škeļtiņu pamatškola, feļčeru punkts, pogosta buoreņtīsa, biblioteka i tautys noms. Pogosta ļauds pīdar katuoļu, pravoslavu i staroveru parapejom.<ref>[http://www.kraslavasrajons.lv/public/index.php?id=50 Škeļtiņu pogosts, Kruoslovys rajona teiklavīta]</ref> + +==Viesture== +Viesturiskai lelums Škeļtiņu pogosta zemu bejs Daugpiļs apleiciņa Izvolta pogostā. 1945 godā [[Izvolta pogosts|Izvolta pogostā]] īstateja Škeļtiņu solys padūmi. 1950 godā Škeļtiņu solai daškiera Peipeņu solu, a 1945 godā i Staškeviču solu. 1960 godā Škeļtiņu solys kolkoza "Vīneiba" teritoreju daškiera Veiguļu solai, a kolkoza "Ceiņa" teritoreju Izvolta solai 1961 godā.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1968 godā daškir i Gruoveru solys Mičuryna kolkoza teritoreju. 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir Aglyunys nūvodam. + +== Rūbeži == +Škeļtiņu pogosts tur rūbežu ar: +* [[Aglyunys nūvods|Aglyunys nūvoda]] [[Aglyunys pogosts|Aglyunys]] i [[Gruoveru pogosts|Gruoveru]] pogostu; +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Izvolta pogosts|Izvolta pogostu]]; +* [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Ombumuižys pogosts|Ombumuižys pogostu]]. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Aglyunys nūvods}} + +[[Kategoreja:Škeļtiņu pogosts| ]] + 61mv8gvsqt1gnbxxujrhfo8u0djbn2t + + + + Kostulinis pogosts + 0 + 1632 + + 31615 + 31613 + 2016-11-01T20:35:42Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kostulinis pogosts +| zemislopa = Kastuļinas pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kostulinis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Kostulinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aglyunys nūvods +| centrys = Prīžmola +| pluots = 120.0 +| dzeivuotuoju_skaits = 921<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 921 / 120.0 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Kostulinis pogosts''' – [[Aglyunys nūvods|Aglyunys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Prīžmolys vydsškola , feļčeru punkts, pogosta buoreņtīsa, biblioteka i tautys noms. Pogostā vīna staroveru cierkva, katuoli vysucīškuok pīdar Bieržgola katuoļu parapejai [[Aglyunys pogosts|Aglyunys pogostā]].<ref>[http://www.kraslavasrajons.lv/public/index.php?id=50 Kostulinis pogosts, Kruoslovys rajona teiklavīta]</ref> + +==Viesture== +Viesturiskai pogosta teritorejā bejs Daugpiļs apleiciņa Kapiņu pogosts. 1945 godā Kapiņu pogostā īstateja Kostulinis solys padūmi. 1954 godā Kostulinis solai daškeire Butkānu solu, a 1979 godā – daļu nu likvidātuos Jaunokrys solys. 1990 godā solu reorganizēja par pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškeire Aglyunys nūvodam. + +== Rūbeži == +Kostulīnis pogosts tur rūbežu ar: +* [[Aglyunys nūvods|Aglyunys nūvoda]] [[Aglyunys pogosts|Aglyunys]] i [[Gruoveru pogosts|Gruoveru]] pogostu; +* [[Dagdys nūvods|Dagdys nūvoda]] [[Ondrupinis pogosts|Ondrupinis pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Puša pogosts|Puša pogostu]] i [[Vīmyna pogosts|Vīmyna pogostu]]. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Aglyunys nūvods}} + +[[Kategoreja:Kostulinis pogosts| ]] + hj1rou16uezf404zpsj8bsiaj6zhph1 + + + + Gruoveru pogosts + 0 + 1633 + + 28631 + 17347 + 2013-03-08T01:31:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605137]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Gruoveru pogosts +| zemislopa = Grāveru pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Gruoveru pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Gruoveru pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aglyunys nūvods +| centrys = Gruoveri +| pluots = 65.3 +| dzeivuotuoju_skaits = 595<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 595 / 65.3 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Gruoveru pogosts''' irā [[Aglyunys nūvods|Aglyunys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Gruoveru pamatškola, biblioteka i tautys noms. Pogosta ļauds pīdar Gruoveru katuoļu parapejai, Gruoveru pravoslavu i Kovaļovys staroveru parapejai. + +==Viesture== +Viesturiskai lelums Gruoveru pogosta zemu bejs Daugpiļs apleiciņa [[Aulejis pogosts|Aulejis pogostā]], kurs īstateits 1930 godūs nu [[Izvolta pogosts|Izvolta pogosta]] zemu. 1945 godā Daugpiļs apleiciņa Aulejis pogostā īstateja Aulejis solys padūmi. 1954 godā solai daškir likvidātū Apšenīku solu. 1964 godā Aulejis solu puorsauc par Gruoverim, a sābru solu Ostrovu par Auleju. 1968 godā Gruoveru solai daškir Vuoveru solu, a daļu Gruoveru solys teritoreju daškir Škeļtiņu solai. 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir Aglyunys nūvodam. + +== Rūbeži == +Gruoveru pogosts tur rūbežu ar: +* [[Aglyunys nūvods|Aglyunys nūvoda]] [[Aglyunys pogosts|Aglyunys]], [[Kastulīnis pogosts|Kastulīnis]] i [[Škeļtiņu pogosts|Škeļtiņu]] pogostu; +* [[Dagdys nūvods|Dagdys nūvoda]] [[Ondrupinis pogosts|Ondrupinis pogostu]]; +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Aulejis pogosts|Aulejis]], [[Izvolta pogosts|Izvolta]] i [[Kumbuļa pogosts|Kumbuļa pogostu]]. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Aglyunys nūvods}} + +[[Kategoreja:Gruoveru pogosts| ]] + 4xw0y6xxbd546dxp9scnpp074lmxr39 + + + + Kategoreja:Kastulīnis pogosts + 14 + 1635 + + 29619 + 17978 + 2013-04-04T21:18:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9578571]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Aglyunys nūvods]] + ge2f0eouppdc7lhirj4d2981e1cdxmd + + + + Kategoreja:Škeļtiņu pogosts + 14 + 1636 + + 29620 + 16019 + 2013-04-04T21:18:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9728666]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Aglyunys nūvods]] + ge2f0eouppdc7lhirj4d2981e1cdxmd + + + + Kategoreja:Gruoveru pogosts + 14 + 1637 + + 29621 + 16022 + 2013-04-04T21:18:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9706346]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Aglyunys nūvods]] + ge2f0eouppdc7lhirj4d2981e1cdxmd + + + + Kategoreja:Ribinišku nūvods + 14 + 1638 + + 29622 + 16030 + 2013-04-04T21:18:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9717113]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Riebiņi municipality|Ribinišku nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + d1i5f745cvpcmzjcveq23mexfm878bt + + + + Kategoreja:Ādažu nūvods + 14 + 1639 + + 29623 + 16035 + 2013-04-04T21:18:35Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9423717]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Ādaži municipality|Ādažu nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + 3m9i0nnvze04qsdsuq8p5dejtmpizfn + + + + Kategoreja:Vuorkovys nūvods + 14 + 1640 + + 29624 + 16041 + 2013-04-04T21:18:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9461809]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Vārkava municipality|Vuorkovys nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + ts40yernb3x2oiqs25vhd7256d2b5lh + + + + Sokolku pogosts + 0 + 1641 + + 28632 + 16431 + 2013-03-08T01:31:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801119]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Sokolku pogosts +| zemislopa = Sokolku pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Sokolku pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Sokolku pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Viļānu nūvods +| centrys = Strupli +| pluots = 56.7 +| dzeivuotuoju_skaits = 856<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 856 / 56.7 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Sokolku pogosts''' irā [[Viļānu nūvods|Viļānu nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms i biblioteka, feļčeru punkts, div puordūtuvis, solu sīvīšu apvīneiba "Ūdzeņa".<ref>[http://www.vilanunovads.lv/novada-pagasti/sokolku-pagasts Sokolku pogosts, Viļānu nūvoda teiklavīta]</ref> Kai 2008 godā aizdareja Dylmaņu pamatškolu, pogostā nadora nivīns vuiceibu īstots.<ref>[http://www.tvnet.lv/zinas/regionos/279009-rezeknes_rajona_sogad_darbu_sakusas_33_izglitibas_iestades Rēznis rajonā itūgod dorbu īsuoce 13 vuiceibu īstoti, TVNET zinis]</ref> Lelums Sokolku pogosta škoļnīku vuicuos Cyskuodu vydsškolā. Pogostā dora vīna katuoļu parapeja, tok lelums dzeivuotuoju irā staroveri i apmeklej [[Sakstygola pogosts|Sakstygola]] ci [[Sylmolys pogosts|Sylmolys]] pogosta cierkvys. + +==Viesture== +Viesturiskai Sokolku pogosta teritoreja bejuse Rēznis apleiciņa Viļānu pogostā. 1945 godā [[Viļānu pogosts|Viļānu pogostā]] īstateja Sokolku solys padūmi. Nu 1947 gods da 1949 godam bejs Viļānu apleicinī, nu 1949 da 1962 godam Viļānu rajonā, a nu 1962 gods Rēznis rajonā. 1954 godā Sokolku solai daškiera likvidātū Skudnovkys solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Viļānu nūvods|Viļānu nūvodam]]. + +== Rūbeži == +Sokolku pogosts tur rūbežu ar: +* [[Viļānu nūvods|Viļānu nūvoda]] [[Viļāni|Viļānu mīstu]] i [[Viļānu pogosts|Viļānu pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Sakstygola pogosts|Sakstygola pogostu]] i [[Sylmolys pogosts|Sylmolys pogostu]]; +* [[Ribinišku nūvods|Ribinišku nūvoda]] [[Vydsmuižys pogosts|Vydsmuižys pogostu]]. + +==Doba== +Sokolku pogostā nadaudzi irā kudrys, smiļkts i žvyra atrostuvis, a mežu cīši moz. Dīnavydvokorūs plota leidzonaine, a dīnavydreitūs iz [[Cyskuodu azars|Cyskuodu azara]] pusi zeme kaupraina. Pogosta teritorejā navā nivīna azara. + +=== Iudini === +Upis: +* Cyskuoda +* Lauza +* [[Malta (upe)|Malta]] + +Pūri i peisi: +* Strupļu pūrs + +== Dzeivuotuoji == +Sokolku pogostā dzeivoj 856 ļauds, nu jū 74% krīvu i 23% latvīšu.<ref>[http://www.vilanunovads.lv/novada-pagasti/sokolku-pagasts Sokolku pogosts, Viļānu nūvoda teiklavīta]</ref> Pyrma 300 godu Sokolku pogosta teritorejā iz dzeivi atguoja nu cara represejom bāgūšī staroveri, partū lelums pogosta dzeivuotuoju irā etniskī [[Latgola|Latgolys]] krīvi. + +=== Solys === +Sokolku pogosta ļauds dzeivoj 22 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +=== Zeimeigi ļauds === +* Stanislavs Beļkovskais - publicists; +* [[Terezeja Broka]] - kordirigeņte; +* Fraņcs Murāns - ASV Vyskonsina Universiteta profesors + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vīns vaļsteibys zeimebys autoceļš Viļāni-Ružyna-Malta (P59) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Pūstumūs īt Krystapiļs-Sīnuojis dzeļžaceļa lineja, tok pogosta teritorejā nivīnys stacejis navā. Ļauds izmontoj tyvuokū staceju [[Viļāni|Viļānūs]]. + +Sokolku pogosta teritoreju apkalpoj vīna posta atdale Sokolki (LV-4640).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Ostroņu Sv. Aloiza Romys katuoļu bazneica - kūka dīvanoms pastateits 1936 godā; +* Sokolku muižys parks + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Viļānu nūvods}} + +[[Kategoreja:Sokolku pogosts| ]] + 3okbhsqqxdaqmebv35vsealw224ibrg + + + + Mūrmastinis pogosts + 0 + 1642 + + 28633 + 21609 + 2013-03-08T01:31:54Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801706]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Mūrmastinis pogosts +| zemislopa = Murmastienes pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Mūrmastinis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Mūrmastinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Varakļuonu nūvods +| centrys = Mūrmastine +| pluots = 174.51 +| dzeivuotuoju_skaits = 878<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 878 / 174.51 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Mūrmastinis pogosts''' irā [[Varakļuonu nūvods|Varakļuonu nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora biblioteka, feļčeru punkts i pamatškola.<ref>[http://www.varaklani.lv/iestades/iestades-murmastienes-pagasta Mūrmastinis pogosts, Varakļuonu nūvoda teiklavīta]</ref> Nivīnys bazneicys pogostā navā, ticeigī pīdar Barkovys ci Varakļuonu katuoļu parapejom. + +== Rūbeži == +Mūrmastinis pogosts tur rūbežu ar: +* [[Varakļuonu nūvods|Varakļuonu nūvoda]] [[Varakļuonu pogosts|Varakļuonu pogostu]]; +* [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Atašīnis pogosts|Atašīnis pogostu]]; +* [[Modyunis nūvods|Modyunis nūvoda]] [[Borkovys pogosts|Borkovys pogostu]] i [[Mātrainis pogosts|Mātrainis pogostu]]. + +==Doba== +Mūrmastinis pogosts irā [[Retulatvejis zamaine|Reitulatvejis zamainē]]. Lelumu zemu aizjim Jersikys leidzonaine, a pūstumreitu daļu Lubuona leidzonaine. Jersikys leidzonainē zemis vydyskai viļnainis, pa pūstumreitu - dīnavydvokoru tecīņam īt 3-12 m augsti kaupri, kas pūrā iztaisa garonys solys. Poša leluo nu jū Siksola dzeivojama. Iz solys pogosta poša augstuo viersyune 115 m vjl. + +Pogosta teritoreju 7205 dekteru pluotā aizjim Teiču dobys rezervats i daļa nu [[Borkovys ūzuluojs|Borkovys ūzuluoja]]. + +=== Iudini === +Upis: +* Islīne +* [[Lisine]] +* Meirānu kanals +* Mūrmastine (Direite) +* Oija (Ūjeņa) +* [[Teiceja]] +* Vabale + +[[Iudiņtvere|Iudiņtveris]]: +* Auku azars (5,3 dekteru) +* Islīnys azars (11,2 dekteru) +* Lelais Murmasts (29,4 dekteru) +* Lisins (33,5 dekteru) +* Mindougys azars (36,0 dekteru) +* Siksolys azars (14 dekteru) +* Tolkajis azars (14,3 dekteru) +* Viertiezs (19,0 dekteru) + +Pūri i peisi: +* Teiču pūrs + +== Dzeivuotuoji == +Mūrmastinis pogostā dzeivoj 878 ļauds, nu jū 94,8% latvīšu, 3,1% krīvu i 1,1% ukraiņu.<ref>[http://www.varaklani.lv/pagasti/murmastienes-pagasts Mūrmastinis pogosts, Varakļuonu nūvoda teiklavīta]</ref> + +=== Solys === +Mūrmastinis pogosta ļauds dzeivoj 28 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +=== Zeimeigi ļauds === +* Marta Buorbola - ailineica + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vīns vaļsteibys zeimebys autoceļš Modyune-Varakļuoni (P84) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Mūrmastinis naškārsoj nivīna dzeļžaceļa lineja, pogosta centram tyvuokuo staceja Stirnīne 16 km atstotumā. + +Mūrmastinis pogosta teritoreju apkalpoj vīna posta atdale Mūrmastine (LV-4835).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* [[Borkovys ūzuluojs]] - vaļsteibys zeimeibys nūlīgtiņs; +* Teiču dobys rezervats - vaļsteibys zeimeibys sorgojamuo teritoreja; +* Pīminieklis 1919 gods Breiveibys ceikstīņu dalinīkim - pastateits 1936 godā, atjaunynuots 1996 godā; +* Mūrmastinis krysta sāteņa - pastateita 1993 godā. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Varakļuonu nūvods}} + +[[Kategoreja:Mūrmastinis pogosts| ]] + eh161v8gjkj0fgx2nx71veugqlzusal + + + + Mūrmastīnis pogosts + 0 + 1643 + + + 16057 + 2011-08-15T10:34:28Z + + Roalds + 50 + + "[[Mūrmastīnis pogosts]]" puorsauču par "[[Mūrmastinis pogosts]]": Pogosta pasaukys palabuošona! + wikitext + text/x-wiki + #REDIRECT [[Mūrmastinis pogosts]] + qnozpkcb5eq29vogp7qs9gt4rovwaa8 + + + + Vuorkovys pogosts + 0 + 1644 + + 28634 + 17310 + 2013-03-08T01:32:05Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801311]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vuorkovys pogosts +| zemislopa = Vārkavas pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vuorkovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Vuorkovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Vuorkovys nūvods +| centrys = Vuorkova +| pluots = 78.6 +| dzeivuotuoju_skaits = 658<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 658 / 78.6 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Vuorkovys pogosts''' irā [[Vuorkovys nūvods|Vuorkovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms i biblioteka, pamatškola i nūvodtiemeibys muzejs.<ref>[http://varkava.lv/lv/laba-izvelne/domes-un-tas-iestazu-darbiniek Vuorkovys nūvoda teiklavīta]</ref> + +== Rūbeži == +Sokolku pogosts tur rūbežu ar: +* [[Vuorkovys nūvods|Vuorkovys nūvoda]] [[Upmalis pogosts|Upmalis pogostu]]; +* [[Preiļu nūvods|Preiļu nūvoda]] [[Juosmuižys pogosts|Juosmuižys pogostu]], [[Pelieča pogosts|Pelieča pogostu]] i [[Preiļu pogosts|Preiļu pogostu]]; +* [[Leivuona nūvods|Leivuona nūvoda]] [[Sutru pogosts|Sutru pogostu]]. + +== Dzeivuotuoji == +=== Solys === +Vuorkovys pogosta ļauds dzeivoj 35 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +=== Zeimeigi ļauds === +* Aleksandris Kovaļevskais - vīns nu embriologejis aizsuociejim, zoologs, entomonologs; +* Ontons Dzeņs - publicists, pošvoldu dareituojs, druka dorbu latgaļu volūdā kūpā laseituojs. + +==Slavvītys== +* Aizpūrīšu krysts +* Pilišku piliskolns +* Vuorkovys pogosta nūvodtiemeibys muzejs + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Vuorkovys nūvods}} + +[[Kategoreja:Vuorkovys pogosts]] + tmwmvnz9ydwrlrifd1vdr5k3m3x2n6d + + + + Kategoreja:Sokolku pogosts + 14 + 1645 + + 29625 + 16066 + 2013-04-04T21:18:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9718821]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Viļānu nūvods]] + j9jxevch3wsnlhzvp5bdhifxc9pwgph + + + + Kategoreja:Mūrmastinis pogosts + 14 + 1646 + + 29626 + 16069 + 2013-04-04T21:18:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9715028]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Varakļuonu nūvods]] + 7qk1hn4wdj0zxv3ue73q2hdzwqfcmav + + + + Kategoreja:Vuorkovys pogosts + 14 + 1647 + + 29561 + 16071 + 2013-04-04T04:12:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9726499]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Vuorkovys nūvods]] + 1pwaepbs5u6q5g2dz0h3p1rw72o42uu + + + + Zīmys mieness + 0 + 1648 + + 29309 + 28635 + 2013-03-11T11:01:27Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q126]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Zīmys (dekabra) mieness''' — divpadsmitais i pādejs [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim, kai arī vīns nu septenim mienešim, kurā irā 31 [[dīna]]. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Zīmys mieness| ]] +[[Kategoreja:Gregora kaleņders]] + i98dssxj03rdam5cevtwtkmfazb8et3 + + + + Kategoreja:Zīmys mieness + 14 + 1649 + + 28636 + 28042 + 2013-03-08T01:32:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 104 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6493725]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|December|Zīmys mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 12]] +[[Kategoreja:Datys| 12]] + 561sjddjkmm3qe3yxowr0c0mre7akak + + + + Kategoreja:Kaleņders + 14 + 1650 + + 28637 + 28082 + 2013-03-08T01:32:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 134 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4966070]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Calendars|Kaleņders}} +{{catmain}} + +[[Kategoreja:Kultureigys koņveņcejis]] +[[Kategoreja:Astronomeskuos datys i publikacejis]] +[[Kategoreja:Laika miereišona]] +[[Kategoreja:Mienesnīks]] +[[Kategoreja:Hronologeja]] + f7oyidt82lz008vafeozebyfvp3x2vs + + + + Blontu pogosts + 0 + 1652 + + 31899 + 28638 + 2017-02-25T06:07:55Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Blontu pogosts +| zemislopa = Blontu pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Blontu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Blontu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Cyblys nūvods +| centrys = Blonti +| pluots = 96.6 +| dzeivuotuoju_skaits = 502<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 502 / 96.6 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Blontu pogosts''' irā [[Cyblys nūvods|Cyblys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, suokuškola, biblioteka, felčeru punkts i sporta zala. + +== Viesture == +Viesturiskai Blontu pogosta teritoreja bejuse Ludzys apleiciņa Mērddzinis pogostā. 1945 godā īstateita Blontu solys padūme. 1954 godā Blontu solai daškiersta likvidātuo Degļovys sola. 1979 godā daļa Blontu solys daškiersta Golyšovys i Zviergzdiņa solai.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Cyblys nūvods|Cyblys nūvodam]]. + +== Rūbeži == +Blontu pogosts tur rūbežu ar: +* [[Cyblys nūvods|Cyblys nūvoda]] [[Cyblys pogosts|Cyblys pogostu]], [[Leidumnīku pogosts|Leidumnīku pogostu]], [[Pušmycovys pogosts|Pušmycovys pogostu]] i [[Zviergzdiņa pogosts|Zviergzdiņa pogostu]]; +* [[Kuorsovys nūvods|Kuorsovys nūvoda]] [[Mērdzinis pogosts|Mērdzinis pogostu]] i [[Golyšovys pogosts|Golyšovys pogostu]]. + +== Doba == +Pogosta vokoru daļa irā [[Mudovys zamaine|Mudovys zamainis]] Sīnuojis leidzonainē, a reitu daļa [[Latgolys augstaine|Latgolys augstainis]] [[Būrzovys kaupraine|Būrzovys kauprainē]]. Pogosta pošu augstuos kaupris 163,8 m vjl pi Kicovkys solys i 166,2 m vjl pi Būbynu solys. Pošu zamuo vīta Kreiču pūrā - 106,8 m vjl. + +=== Iudini === +Upis: +* Čodarānu upe +* [[Iļža]] + +[[Iudiņtvere|Iudiņtveris]]: +* Blontu opori +* Rojevkys azars + +Pūri i peisi: +* Degļovys pūrs +* Kreiču pūrs + +== Dzeivuotuoji == +Blontu pogostā dzeivoj 502 ļauds. + +=== Solys === +Blontu pogosta ļauds dzeivoj 19 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +== Saimisteiba == +==== Transports i saiteibys ==== +Pogosta reitu daļu škārsoj vīns vaļsteibys zeimebys autoceļš Kuorsova-Ludza-Bukmuiža (P49) i nazcik vītejuos zeimeibys celi vysā pogosta teritorejā.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Blontu pogostu naškārsoj nivīna dzeļžaceļa lineja. Tyvuokuo staceja "Ludza" linejā Krystapiļs-Sīnuoja 11 kilometru nu pogosta centra. + +Blontu pogosta teritoreju apkalpoj vīna posta atdale Blonti (LV-5706).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Slavvītys == + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Cyblys nūvods}} + +[[Kategoreja:Blontu pogosts| ]] + 9j6e76pgbjgf00ogjw02xhrllddbt2b + + + + Kategoreja:Blontu pogosts + 14 + 1653 + + 29627 + 16243 + 2013-04-04T21:18:42Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9701393]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Cyblys nūvods]] + nf5k0utpvpoxih4plkmjlh0eit3s2sh + + + + Taiss:Cyblys nūvods + 10 + 1654 + + 29819 + 18035 + 2013-04-15T02:25:05Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Cyblys nūvods +|title = <center> [[Cyblys nūvods]] [[Fails:Ciblas novads COA.png|13px|Cyblys nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Blontu pogosts]]{{•}} [[Cyblys pogosts]]{{•}} [[Leidumnīku pogosts]]{{•}} [[Pušmycovys pogosts]]{{•}} [[Zviergzdiņa pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + m0g5pmu0ctcwxhlqq1m336oxx9489ra + + + + Taiss:Aglyunys nūvods + 10 + 1655 + + 31621 + 29784 + 2016-11-01T21:17:56Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {{Navbox +|name = Aglyunys nūvods +|title = <center> [[Aglyunys nūvods]] +|state = uncollapsed +|list1 = <center> [[Aglyunys pogosts]]{{•}} [[Gruoveru pogosts]]{{•}} [[Kostulinis pogosts]]{{•}} [[Škeļtiņu pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + 5882cjk7xn27gbj3ltp6njq8mi5vp7m + + + + Taiss:Varakļuonu nūvods + 10 + 1656 + + 29798 + 18046 + 2013-04-15T01:51:15Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Varakļuonu nūvods +|title = <center> [[Varakļuonu nūvods]] +|state = uncollapsed +|list1 = <center> [[Mūrmastinis pogosts]]{{•}} '''[[Varakļuoni]]'''{{•}} [[Varakļuonu pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + 827uaxu4mljql323dbnoimz48583cb4 + + + + Kategoreja:Latgolys upu zemislopys + 14 + 1659 + + 16307 + 2011-08-26T10:32:54Z + + 95.68.80.237 + + Jauna zamkategoreja + wikitext + text/x-wiki + [[Kategoreja:Latgolys upis]] + pz84pr3qtnbhzy28pq8xfwg2nh51rtz + + + + Rudzātu pogosts + 0 + 1663 + + 30322 + 28639 + 2014-04-29T19:22:11Z + + Kasp2008 + 847 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rudzātu pogosts +| zemislopa = Rudzātu pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Rudzātu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Rudzātu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Leivuona nūvods +| centrys = Rudzātys +| pluots = 124.87 +| dzeivuotuoju_skaits = 902<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 902 / 124.87 round 1}} +| īstateits = 1920 +| teiklavīta = +}} +[[Fails:Rudzati council house.jpg|thumb|260px|Rudzātu pogosta padūme 2012 gods pavasara mienesī]] +'''Rudzātu pogosts''' irā [[Leivuona nūvods|Leivuona nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora biblioteka i div vuiceibu īstoti - Rudzātu vydsškola i Rudzātu specialuo iņternatpamatškola. Partū ka pogostā navā nivīna tautys ci kulturys noma, ļauds lītoj vydšskolys ustobys. + +==Viesture== +Rudzātu pogosts īstateits 1920 godā, padalūt Stirnīnis pogosta teritoreju. 1925 godā pogostam daškiera pa dalei nu [[Preiļu pogosts|Preiļu]], [[Vuorkovys pogosts|Vuorkovys]] i Leivuona pogosta zemu. 1935 godā pogosta pluots beja 141 km² i tymā dzeivova 3355 dzeivuotuoju.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 1945 godā pogostā īstateja Aizupis, Muolkolna, Rudzātu i Vyds solys padūmi, a pošu pogostu 1949 godā likvidieja. Rudzātu sola nu 1949 gods da 1959 godam bejuse Leivuona rajona, a nu 1959 gods Preiļu rajona sadorā. 1954 godā Rudzātu solai davīnova likvidātū Muolkolna i Vyds solu, 1962 godā i Stirnīnis solys kolkoza "Pa Lenina ceļu" teritoreju. 1975 godā solai davīnova daļu Turku solys kolkoza "Narata" teritorejis.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Leivuona nūvods|Leivuona nūvodam]]. + +== Rūbeži == +Rudzātu pogosts tur rūbežu ar: +* [[Leivuona nūvods|Leivuona nūvoda]] [[Rūžupis pogosts|Rūžupis pogostu]], [[Sutru pogosts|Sutru pogostu]] i [[Turku pogosts|Turku pogostu]]; +* [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Atašinis pogosts|Atašinis pogostu]]; +* [[Preiļu nūvods|Preiļu nūvoda]] [[Suovānu pogosts|Suovānu pogostu]]; +* [[Ribinišku nūvods|Ribinišku nūvoda]] [[Seiļukolna pogosts|Seiļukolna pogostu]]. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Leivuona nūvods}} + +[[Kategoreja:Rudzātu pogosts| ]] + cnwhxxcj45md6lpmhbr7vv6umef4zhr + + + + Kategoreja:Rudzātu pogosts + 14 + 1666 + + 29628 + 16394 + 2013-04-04T21:18:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9717161]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Leivuona nūvods]] + 0tmob3ts99h0dh21fgv37wce65dfwuy + + + + Kategoreja:Leivuona nūvods + 14 + 1667 + + 29629 + 16396 + 2013-04-04T21:18:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9608726]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Līvāni municipality|Leivuona nūvods}} +{{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + 3jrflqe5lymy0ldrt0c2stm29aa8b6w + + + + Taiss:Bolvu nūvods + 10 + 1668 + + 29809 + 18036 + 2013-04-15T02:08:15Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Bolvu nūvods +|title = <center> [[Bolvu nūvods]] [[Fails:Balvu novads COA.png|13px|Bolvu nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Bārzkolna pogosts]]{{•}} [[Bieržu pogosts]]{{•}} '''[[Bolvi]]'''{{•}} [[Bolvu pogosts]]{{•}} [[Brīžucīma pogosts]]{{•}} [[Kryšanu pogosts]]{{•}} [[Kubulu pogosts]]{{•}} [[Lozdulejis pogosts]]{{•}} [[Tiļžys pogosts]]{{•}} [[Vactiļžys pogosts]]{{•}} [[Veiksnys pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + qzvj7rc6ndxpr1durlpb01gpya4k0bq + + + + Taiss:Leivuona nūvods + 10 + 1669 + + 29803 + 18038 + 2013-04-15T02:03:08Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Leivuona nūvods +|title = <center> [[Leivuona nūvods]] [[Fails:LVA Līvānu novads COA.png|13px|Leivuona nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Jersikys pogosts]]{{•}} '''[[Leivuons]]'''{{•}} [[Rudzātu pogosts]]{{•}} [[Rūžupis pogosts]]{{•}} [[Sutru pogosts]]{{•}} [[Turku pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + t01vhvuu0vkbr6wpwqftoth8ddfekes + + + + Kategoreja:Leivuons + 14 + 1670 + + 29630 + 16405 + 2013-04-04T21:18:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9713367]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Līvāni|Leivuons}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Leivuona nūvods]] + 7z10vq7wgc8vnlfkc1y4ks7lorbkm5o + + + + Kategoreja:Jākubmīsts + 14 + 1671 + + 29531 + 16407 + 2013-04-02T18:57:33Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8569441]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Jēkabpils|Jākubmīsts}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] + jko0xfkj6xlestvlpp53vftirxpfhr5 + + + + Taiss:Dagdys nūvods + 10 + 1672 + + 29788 + 22690 + 2013-04-15T01:42:13Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Dagdys nūvods +|title = <center> [[Dagdys nūvods]] [[Fails:Dagdas novads COA.png|13px|Dagdys nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Aņdzeļu pogosts]]{{•}} [[Bukmuižys pogosts]]{{•}} '''[[Dagda]]'''{{•}} [[Dagdys pogosts]]{{•}} [[Kepovys pogosts]]{{•}} [[Konstaņtinovys pogosts]]{{•}} [[Ondrupinis pogosts]]{{•}} [[Osyuna pogosts]]{{•}} [[Pareču pogosts]]{{•}} [[Svareņu pogosts]]{{•}} [[Škaunys pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + s2ua2upbb5suuh55vmx3o8zzfufy88f + + + + Taiss:Kuorsovys nūvods + 10 + 1673 + + 29808 + 24458 + 2013-04-15T02:07:53Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Kuorsovys nūvods +|title = <center> [[Kuorsovys nūvods]] [[Fails:LVA Kārsavas novads COA.png|13px|Kuorsovys nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Golyšovys pogosts]]{{•}} '''[[Kuorsova]]'''{{•}} [[Malnovys pogosts]]{{•}} [[Mērdzinis pogosts]]{{•}} [[Mežavydu pogosts]]{{•}} [[Saļņovys pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + 3bpotm07z2f2501wz2rq0n1i2geltnq + + + + Kategoreja:Latvejis nūvodu centri + 14 + 1674 + + 29432 + 24669 + 2013-03-22T02:31:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7809782]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Latvejis nūvodi| Centri]] + 3h3wkxf6mtlfmxrk4getucvzwtrcdpi + + + + Latgalīšu volūda + 0 + 1675 + + + 16420 + 16419 + 2011-08-28T20:57:26Z + + Dark Eagle + 34 + + + Aizsorgova [[Latgalīšu volūda]] ([move=sysop] (bezgalīgs)) + wikitext + text/x-wiki + #REDIRECT [[Latgaļu volūda]] + mb77r6hcjtegtbe9ih0l3gey0crg29s + + + + Taiss:Viļānu nūvods + 10 + 1676 + + 29800 + 18048 + 2013-04-15T01:53:17Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Viļānu nūvods +|title = <center> [[Viļānu nūvods]] +|state = uncollapsed +|list1 = <center> [[Dekšuoru pogosts]]{{•}} [[Sokolku pogosts]]{{•}} '''[[Viļāni]]'''{{•}} [[Viļānu pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + 4i742emsy9i6wezhnqicr1urb8gx6vc + + + + Kategoreja:Taisi:Latvejis administrativais dalejums + 14 + 1677 + + 29474 + 16434 + 2013-03-29T04:15:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8584164]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Taisi:Administrativais dalejums pa vaļsteibai]] +[[Kategoreja:Navigacejis taisi:Latvejis geografeja]] + je52cboolrx44gt2qu4zhj8ss48bz3y + + + + Taiss:Kruoslovys nūvods + 10 + 1678 + + 29846 + 22709 + 2013-04-16T01:41:30Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Kruoslovys nūvods +|title = <center> [[Kruoslovys nūvods]] +|state = uncollapsed +|list1 = <center> [[Aulejis pogosts]]{{•}} [[Indreicys pogosts]]{{•}} [[Iudreišu pogosts]]{{•}} [[Izvolta pogosts]]{{•}} [[Kaļņīšu pogosts]]{{•}} [[Kapļovys pogosts]]{{•}} '''[[Kruoslova]]'''{{•}} [[Kruoslovys pogosts]]{{•}} [[Kumbuļa pogosts]]{{•}} [[Pīdrujis pogosts]]{{•}} [[Pūstinis pogosts]]{{•}} [[Skaista pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + b4kcscmcjvqsgltf37d4p9c38nsi53x + + + + Taiss:Ludzys nūvods + 10 + 1679 + + 29826 + 18037 + 2013-04-15T02:40:16Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Ludzys nūvods +|title = <center> [[Ludzys nūvods]] [[Fails:LVA Ludzas novads COA.png|13px|Ludzys nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Brigu pogosts]]{{•}} [[Cyrmys pogosts]]{{•}} [[Istrys pogosts]]{{•}} '''[[Ludza]]'''{{•}} [[Nierzys pogosts]]{{•}} [[Ņukšu pogosts]]{{•}} [[Pyldys pogosts]]{{•}} [[Purynu pogosts]]{{•}} [[Rundānu pogosts]]{{•}} [[Vysnovys pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + mii73pug84y41qnmcmo71iwy7qci4n5 + + + + Taiss:Modyunis nūvods + 10 + 1680 + + 29830 + 21613 + 2013-04-15T03:22:26Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Modyunis nūvods +|title = <center> [[Modyunis nūvods]] [[Fails:LVA Madonas novads COA.png|13px|Modyunis nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Bierzaunis pogosts]]{{•}} [[Borkovys pogosts]]{{•}} [[Dzeļžovys pogosts]]{{•}} [[Kolsnovys pogosts]]{{•}} [[Līzeris pogosts]]{{•}} [[Lozdūnis pogosts]]{{•}} [[Ļaudūnis pogosts]]{{•}} [[Mātrainis pogosts]]{{•}} '''[[Modyune]]'''{{•}} [[Muorcīnis pogosts]]{{•}} [[Orūnys pogosts]]{{•}} [[Praulainis pogosts]]{{•}} [[Sorkonu pogosts]]{{•}} [[Ūšupis pogosts]]{{•}} [[Vestīnis pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + kr01mlxcjvkijs3x94jhrtpmipb3t7o + + + + Taiss:Olyuksnys nūvods + 10 + 1681 + + 29762 + 18040 + 2013-04-14T23:00:41Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Olyuksnys nūvods +|title = <center> [[Olyuksnys nūvods]] [[Fails:LVA Alūksnes novads COA.png|13px|Olyuksnys nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Alsviķa pogosts]]{{•}} [[Anis pogosts]]{{•}} [[Baja pogosts]]{{•}} [[Iļzenis pogosts]]{{•}} [[Jaunanis pogosts]]{{•}} [[Jaunlaicinis pogosts]]{{•}} [[Kolnacempu pogosts]]{{•}} [[Līpnys pogosts]]{{•}} [[Malīnis pogosts]]{{•}} [[Muolupis pogosts]]{{•}} [[Muorkaļnis pogosts]]{{•}} '''[[Olyuksna]]'''{{•}} [[Pededzis pogosts]]{{•}} [[Vaclaicinis pogosts]]{{•}} [[Zeļteņa pogosts]]{{•}} [[Zīmara pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + 62c3u42aqk5yvc9yv86t354lbi1abol + + + + Taiss:Preiļu nūvods + 10 + 1682 + + 29834 + 18041 + 2013-04-15T03:34:57Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Preiļu nūvods +|title = <center> [[Preiļu nūvods]] +|state = uncollapsed +|list1 = <center> [[Juosmuižys pogosts]]{{•}} [[Pelieča pogosts]]{{•}} '''[[Preili]]'''{{•}} [[Preiļu pogosts]]{{•}} [[Suovānu pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + mc0tyodwldf8n3xogw3c8ez63inm0ns + + + + Taiss:Vuorkovys nūvods + 10 + 1683 + + 29816 + 18049 + 2013-04-15T02:15:34Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Vuorkovys nūvods +|title = <center> [[Vuorkovys nūvods]] [[Fails:LVA Vārkavas novads COA.png|13px|Vuorkovys nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Rimeicānu pogosts]]{{•}} [[Upmalis pogosts]]{{•}} [[Vuorkovys pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + jmtpzx2x57i25w03u09226vqn9gd02z + + + + Ezs + 0 + 1685 + + 29055 + 28949 + 2013-03-10T14:56:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6145]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Parostais ezs +| atvaiga_pasauka = Erinaceus europaeus LC0119.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Zeideituoji ''(Mammalia)'' +| aiļa = Kustūņāduoji''(Insectivora))'' +| saime = Ezini ''(Erinaceidae)'' +| giņts = Parostī eži ''( Erinaceus))'' +| škira = Ezs ''(Erinaceus europaeus)'' +| ziniskuo_pasauka = Erinaceus europaeus +| zemislopys_atvaigs = European Hedgehog area2.png +| zemislopys_aprakstejums = Bryunys kryuts eža (''Erinaceus europaeus'') paplateiba Europā +}} +'''Ezs''', '''parostais ezs''' (latiņu: Erinaceus europaeus) - kustūņāduoju (Insectivora) ailis dzeivinīks, pīdarūšs eziņu (Erinaceidae) saimei. [[Latgola|Latgolā]] dzeivoj div ežu škirys - '''boltys kryuts''' (reitu) ezs i '''bryunys kryuts''' (parostais) '''ezs'''. Boltys kryuts ezs irā gona cieškys vysā Latgolā, a bryunys kryuts ezs cīši reši - tik pošūs [[Latgola|Latgolys]] pūstumūs. Bryunys kryuts ezs īraksteits Latvejis Sorkonuos gruomotys 3 kategorejā i Baļtejis jiuru regiona Sorkonajā gruomotā.<ref>[http://www.latvijasdaba.lv/ziditaji/erinaceus-europaeus-l/ Eņciklopedeja "Latvejis doba"]</ref> Dzeivinīki aktivi pakrieslī i naktī. Vysāduoji, tok vysuvaira ād dzeivinīku barūkli - pelis i cytus seikus grauziejus, vardivis, škierzlotus, vysaižys vabalis i kuopurus. + +== Izavierīņs == +Augums 230-280 mm gars, mugora i suoni nūauguši eisim, tymsim dzanyulim (odotom), iz vādara padzoltoni mateni. Pīaudzs ezs sver 800-1200 g. Dzymdynoj 3-8 plykus ežalānus, kam par puors dīnu uzaug dzanyuli. + +== Dzeivisvītys == +Eži dzeivoj mežamoluos, kryumuojūs i cylvāka dzeivisvītu tyvumā - suodūs i parkūs. Nameiļoj dzeivuot slapņuos i volgonuos vītuos. Ezs nasabeist cylvāka i labi atguodoj vītys, kur jū dabaroj. + +== Paplateiba == +Ezs paplateits vysā [[Europa|Europā]]. Boltys kryuts ezs paplateits nu Centraluos Europys vokorūs da Sibiram (Uralu dīnavydim) reitūs. Dīnavydūs jis dzeivoj da [[Turceja]]i, Kaukazam, [[Kazaheja|kazahejai]], [[Izraeļs|Izraeļam]] i [[Irans|Iranam]]. Pūstumūs jis dzeivoj da [[Latveja]]i i Moskvys apgabaļam [[Krīveja|Krīvejā]]. + +Bryunys kryuts ezs paplateits Latvejis pūstumūs, [[Igauneja|Igaunejā]], Skaņdinavejis dīnavydūs i tyvai jiurom, taipoš vysā Vokoru Europā nu Atlaņtejis okeana da [[Čekeja]]i i [[Puoleja|Puolejis]], [[Austreja|Austrejis]] vokorim. + + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commonscat|Erinaceus europaeus|Parostais ezs}} + +{{DEFAULTSORT:Ezs}} + +[[Kategoreja:Dzeivinīki]] + jx4uzayxanoau93kfx9jwmjrd37ghoo + + + + Taiss:Ribinišku nūvods + 10 + 1686 + + 29814 + 24460 + 2013-04-15T02:11:51Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Ribinišku nūvods +|title = <center> [[Ribinišku nūvods]] [[Fails:LVA Riebiņu novads COA.png|13px|Ribinišku nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Ribinišku pogosts]]{{•}} [[Rušyuna pogosts]]{{•}} [[Seiļukolna pogosts]]{{•}} [[Solujuoņu pogosts]]{{•}} [[Stabuļnīku pogosts]]{{•}} [[Vydsmuižys pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + f4ccmmztqc6kdzixyplz23m6sj2m5uo + + + + Taiss:Ruguoju nūvods + 10 + 1687 + + 29781 + 24461 + 2013-04-15T00:16:38Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Ruguoju nūvods +|title = <center> [[Ruguoju nūvods]] [[Fails:LVA Rugāju novads COA.png|13px|Ruguoju nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Lozdukolna pogosts]]{{•}} [[Ruguoju pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + j935ekuh1avl9a9tpebk5e4chx1bmdc + + + + Taiss:Sīnuojis nūvods + 10 + 1688 + + 29777 + 22710 + 2013-04-14T23:35:26Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Sīnuojis nūvods +|title = <center> [[Sīnuojis nūvods]] [[Fails:LVA Zilupes novads COA.png|13px|Sīnuojis nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Ļauderu pogosts]]{{•}} [[Posyunis pogosts]]{{•}} '''[[Sīnuoja]]'''{{•}} [[Zaļesis pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + gaaott4rmkwgzdgaa29zun36m8gp9xq + + + + Taiss:Vileks nūvods + 10 + 1689 + + 29797 + 18047 + 2013-04-15T01:50:15Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Vileks nūvods +|title = <center> [[Vileks nūvods]] [[Fails:LVA Viļakas novads COA.png|13px|Vileks nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Kuprovys pogosts]]{{•}} [[Medņovys pogosts]]{{•}} [[Susāju pogosts]]{{•}} [[Škilbānu pogosts]]{{•}} [[Vacumu pogosts]]{{•}} '''[[Vileks]]'''{{•}} [[Žeiguru pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + hvarmd1zrnu4rc7r4nl5y5xq4ra9775 + + + + Kategoreja:Navigacejis taisi:Latvejis geografeja + 14 + 1690 + + 29523 + 16495 + 2013-04-02T18:55:50Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9171422]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Taisi:Latveja|Geografeja]] +[[Kategoreja:Navigacejis taisi:Geografeja pa vaļsteibai|Latveja]] + elp4bwtb3nzx9t2704u7yxz8guzgzr6 + + + + Audreņu pogosts + 0 + 1691 + + 28641 + 17924 + 2013-03-08T02:00:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800864]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Audreņu pogosts +| zemislopa = Audriņu pagasts LocMap.png| +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Audreņu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Audreņu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Rēznis nūvods +| centrys = Audreni +| pluots = 66,9 +| dzeivuotuoju_skaits = 1233<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = 18,4 +| īstateits = 1945 +| teiklavīta = www.audrini.lv +}} + +'''Audreņu pogosts''' irā [[Rēznis nūvods|Rēznis nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrys irā [[Audreni|Audreņūs]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.audrini.lv/ Audreņu pogosta teiklavīta] +* [http://www.rezeknesnovads.lv/ Rēznis nūvoda informativais portals] + +{{nadabeigts rakstīņs}} + +{{Rēznis nūvods}} + +[[Kategoreja:Audreņu pogosts| ]] + soxhh2kmrqtw6zwprgqdl0dv1owrutt + + + + Taiss:Puorguoja dīnys + 10 + 1692 + + 29041 + 28642 + 2013-03-09T19:08:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6171282]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + <includeonly>{{#expr:((( {{ #time: U}} - {{ #time: U | {{{1}}}-{{{2}}}-{{{3}}} }} )/86400 - 0.5 round 0) * ( (( {{ #time: U}} - {{ #time: U | {{{1}}}-{{{2}}}-{{{3}}} }} )/86400 - 0.5 round 0) > 0) ) round 0}}</includeonly><noinclude> +{{dokumentaceja}} +</noinclude> + hxo5ake00hb61aty7at1aeeqnnjh8bq + + + + Taiss:Puorguoja dīnys/doc + 10 + 1693 + + 20369 + 16560 + 2012-01-28T16:19:50Z + + Base + 1082 + + + interwiki + wikitext + text/x-wiki + '''Taiss skaita, cik dīnu puorguoja nu nūruodeituos datys.''' +:Pīvadumam: <nowiki>{{Puorguoja dīnys|1900|01|01}} (nūruodeituo data: 1900 gods jaunagods mieneša 1 dīna)</nowiki> +:Rezultats: {{Puorguoja dīnys|1900|01|01}} +:Ka data atīsmē: {{Puorguoja dīnys|{{#expr:({{CURRENTYEAR}}+1)}}|01|01}} (nūruodeituo data: {{#expr:({{CURRENTYEAR}}+1)}} gods jaunagods mieneša 1 dīna)<includeonly> + +[[Kategoreja:Taisi:Data i laiks|{{PAGENAME}}]] + +[[ar:قالب:أيام مضت]] +[[ru:Шаблон:Прошло дней]] +[[uk:Шаблон:Пройшло днів]] +</includeonly> + 6qe8oqcztocxdg5ealuxcmw0br4qgto + + + + Škilbānu pogosts + 0 + 1694 + + 28643 + 27873 + 2013-03-08T02:00:46Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801278]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Škilbānu pogosts +| zemislopa = Šķilbēnu pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Škilbānu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Škilbānu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Vileks nūvods +| centrys = Rekova +| pluots = 96.55 +| dzeivuotuoju_skaits = 1268<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1268 / 96.55 round 1}} +| īstateits = 1930 +| teiklavīta = www.skilbeni.gov.lv +}} + +'''Škilbānu pogosts''' irā [[Vileks nūvods|Vileks nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora vydsškola, biblioteka, Romys katuoļu bazņeica, socialuos apryupis sāta i maizis muzejs Rekovys solā, pamatškola, biblioteka, tautys noms i kulturviesturis muzejs Upeitis solā, pravoslavu cierkva Škilbānu solā i Balkanu kolnu muzejs Balkanūs. + +==Viesture== +Škilbānu pogosts īstateits 1930 godā, padalūt [[Baļtinovys]] i Vileks pogostu zemis. 1935 godā pogosta pluots beja 216 km² i tymā dzeivova 6423 ļauds.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 1945 godā pogostā īstateja Egļovys, Loginu, Stabļovys, Škilbānu i Zaļčupis solu padūmis, a pošu pogostu 1949 godā likvidieja. Loginu sola bejuse Vileks apleicīnī (1945-1949), Abrinis rajonā (1949-1958) i Bolvu rajonā (nu 1959 gods). Loginu solai 1945 godā davīnova likvidātū Zaļčupis solu, 1962 godā Medņovys i Škilbānu solys sovetu siamisteibys "Škilbāni" teritoreju. 1968 godā Loginu solu puorsauce par Škilbānu solu. 1971 godā davīnova daļu [[Lozdulejis pogosts|Lozdulejis]] solys sovetu saimisteibys "Škilbāni" teritoreju, a sovetu saimisteibu "Medņova" davīnova [[Medņovys pogosts|Medņovys]] solai. 1977 godā Škilbānu solai davīnova daļu likvidātuo Upeitis solys teritorejis.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Vileks nūvods|Vileks nūvodam]]. + +== Rūbeži == +Škilbānu pogosts tur rūbežu ar: +* [[Vileks nūvods|Vileks nūvoda]] [[Medņovys pogosts|Medņovys pogostu]] i [[Vacumu pogosts|Vacumu pogostu]]; +* [[Baļtinovys nūvods|Baļtinovys nūvoda]] [[Baļtinovys pogosts|Baļtinovys pogostu]]; +* [[Bolvu nūvods|Bolvu nūvoda]] [[Brīžucīma pogosts|Brīžucīma pogostu]] i [[Lozdulejis pogosts|Lozdulejis pogostu]]; +* [[Krīveja|Krīvejis Federacejis]] [[Pitalovys rajons|Pitalovys rajonu]]. + +==Doba== +Pogosta teritoreja irā Atzolys pacyluma vokorūs i [[Mudovys zamaine|Mudovys zamainis]] Abrinis pacyluma pazamynuojumā. Gaisalaiks, samārojūt ar cytim [[Latgola|Latgolys]] pogostim gon buorgs. Vydyskuo temperatura jaunagods mienesī -9° pa Celseja skolai, sīna mienesī +18° pa Celseja skolai. Bezsola periods saīt 135 dīnys godā.<ref>[http://www.skilbeni.gov.lv/pamats.htm Škilbānu pogosta teiklavīta]</ref> Solsaimesteibai lītojamuo zeme sadora 73% pogosta teritorejis (1376,4 dekteru). 14% pogosta zemu (1376,4 dekteru) irā meži, tok vaļsteibys mežu navā. 30 dekteru meža tur pogosta pošvolds, cytus zemnīku saimisteibys i privatī zemu saiminīki. Škilbānu Pogosta teritorejā zeimeigu pūru navā, viņ tik peisi ap Reikys upi. + +=== Iudini === +Upis: +* Dzjorgova +* Krakupe +* [[Kūkova]] +* Muoseika +* [[Reika]] +* Styglova +* Supretka +* Zaļčupe +* Ludumka + +[[Iudiņtvere|Iudiņtveris]]: +* Aņčipovys azars + +== Dzeivuotuoji == +Škilbānu pogostā dzeivoj 1268 ļauds, nu jū 83% latvīšu, 16% krīvu i 1% cytu tauteibu ļauds.<ref>[http://www.skilbeni.gov.lv/pamats.htm Škilbānu pogosta teiklavīta]</ref> + +=== Solys === +Škilbānu pogosta ļauds dzeivoj 64 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Rekova (pogosta centrys), Škilbāni, Upeite. + +=== Zeimeigi ļauds === +* Ontons Slyšāns — ailinīks, eisprozys autors, folklorys vuociejs i pietnīks, publicists, kulturys darbinīks; +* Stepaneja Matisāne - daudzigadeiga Rekovys etnografiskuo ansambļa vadeituoja, skripkineica, dzīšmu i tolka bolsu teicieja. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceli Vileks-Kuorsova (P45) i Dubļova-Cierpīne (P46), taipoš nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Dzeļžaceļa linejis pogosta teritoreju naškārsoj. + +Škilbānu pogosta teritoreju apkalpoj vīna posta atdale "Škilbani" Rekovys solā (LV-4587).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Aņčipovys azars - Latvejis Breiveibys ceikstīņu pīminis vīta par gūdu ceikstīņam Aņčipovys solā 1920 gods Jaunagods m. 12 - 13 d.; +* Dobys parks i muzejs "Balkanu kolni"; +* Rekovys vydsškolys maizis muzejs; +* Styglovys grova- geomorfologiskys dobys pīminieklis; +* Škilbānu muiža - pastateita 1856 godā, apleik muižys vierteigs parks; +* Škilbānu Vysusvātuokuos Dīvamuotis pīdzimšonys parvoslavu cierkva - Škilbānu solā, pastateita 1928-1931 godā; +* Škilbānu Suopu Dīvamuotis Romys katuoļu bazneica - Rekovys solā, pastateita 19 godusymta ūtruo pusē; +* Upeitis kulturviesturis muzejs. + + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Vileks nūvods}} + +[[Kategoreja:Škilbānu pogosts| ]] + s18o28mmezmgevbmqyz1yvw8yltmmj6 + + + + Kategoreja:Škilbānu pogosts + 14 + 1695 + + 29631 + 16548 + 2013-04-04T21:19:49Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9728970]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Vileks nūvods]] + 6ltr4m0cuk4a4329zcyerbhxk1tzlt5 + + + + Kategoreja:Taisi:Data i laiks + 14 + 1698 + + 29526 + 28950 + 2013-04-02T18:56:06Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3855]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi|Data i laiks]] + k9qntktd1f8eqwzce1gu2eeptd0ronx + + + + Kategoreja:Vikipedeja:Taisi + 14 + 1699 + + 28645 + 27669 + 2013-03-08T02:01:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 152 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3740]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Commons templates|Vikipedeja:Taisi}} +{{catmain}} + +[[Kategoreja:Vikipedeja|Taisi]] + k89mwtwoc3c5e4yk438l1r3bnp378ws + + + + Kategoreja:Vikipedeja:Taisi:Lītuotuoji + 14 + 1700 + + 28646 + 27987 + 2013-03-08T02:01:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 73 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6115642]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi|Lītuotuoji]] +[[Kategoreja:Vikipedeja:Lītuotuoji| ]] + d1lqvk0z8eq7rwkpeochxuw6zjan6d2 + + + + Osyuna pogosts + 0 + 1701 + + 28647 + 22679 + 2013-03-08T02:01:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361105]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Osyuna pogosts +| zemislopa = Asūnes pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Osyuna pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Osyuna pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Dagdys nūvods +| centrys = Osyuns +| pluots = 77.7 +| dzeivuotuoju_skaits = 595<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 595 / 77.7 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Osyuna pogosts''' irā [[Dagdys nūvods|Dagdys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Osyuna pamatškola, tautys noms, biblioteka, feļčeru punkts i pīcys puordūtuvis - vīna Račevā i četrys Osyunā. Osyuna pamatškolā īstateits muzejs K. Raudivem. Lelums pogosta ļauds katuoļi i pīdar Osyuna Svātuo Krysta paaugstynuošonys Romys katuoļu bazņeicis parapejai. + +==Viesture== +Viesturiskai Osyuna pogosta teritoreja bejuse Daugpiļs apleicinī. 1935 godā Osyuna pogosta pluots beja 213,8 km²..<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 1945 godā īstateja Aišpūru, Apaļu, Osyuna, Pareču, Kepovys i Rutku solys padūmi, a pošu pogostu 1949 godā likvidieja. 1954 godā Osyuna solai daškiera Aišpūru solu, 1960 godā Osyuna solys sovetu saimisteibys "Ceiņa" teritorejis daškiera Svareņu solai..<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Dagdys nūvods|Dagdys nūvodam]]. + +== Rūbeži == +Osyuna pogosts tur rūbežu ar: +* [[Dagdys nūvods|Dagdys nūvoda]] [[Dagda|Dagdys mīstu]], [[Dagdys pogosts|Dagdys pogostu]], [[Konstaņtinovys pogosts|Konstaņtinovys pogostu]], [[Svareņu pogosts|Svareņu pogostu]]; +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Pūstinis pogosts|Pūstinis pogostu]]; + +== Dzeivuotuoji == +Osyuna pogostā dzeivoj 595 ļauds, nu jū 64,2% latvīšu, 14,5% krīvu, 13,6% boltkrīvi, 9% puoļu. + +=== Solys === +Osyuna pogosta ļauds dzeivoj 38 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Osyuns (pogosta centrys), Račeva. + +=== Zeimeigi ļauds === +* Norberts Neikšānīts - rakstinīks +* Konstaņtins Raudive - rakstinīks, filozofs, parapsihologs. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju naškārsoj nivīns vaļsteibys zeimebys ceļš, sative nūteik pa nazcik vītejuos zeimeibys celim. Taipoš dzeļžaceļa linejis pogostā navā. + +Osyuna pogosta teritoreju apkalpoj vīna posta atdale "Osyuns" (LV-5676).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Dagdys nūvods}} + +[[Kategoreja:Osyuna pogosts]] + qt6tmszwtko711e970xrpnd9gwqwnpl + + + + Kepovys pogosts + 0 + 1702 + + 28648 + 22683 + 2013-03-08T02:01:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q302136]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kepovys pogosts +| zemislopa = Ķepovas pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kepovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Kepovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Dagdys nūvods +| centrys = Neikšāni +| pluots = 57.5 +| dzeivuotuoju_skaits = 261<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 261 / 57.5 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Kepovys pogosts''' irā [[Dagdys nūvods|Dagdys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrā Neikšānūs dora feļčeru punkts i biblioteka. Koč i 1990 godā pastateja jaunu suokuškolu, deļ mozuo škoļnīku skaita 2000 godā školu aizdareja i pogosta teritorejā nivīna vuiceibu īstota navā. Škoļnīki vuicuos Dagdys, Kruoslovys i Osyuna školuos. Lelums ļaužu katuoli i viesturiskai pīdar pi Osyuna Svātuo Krysta paaugstynuošonys Romys katuoļu bazņeicis. + + +==Viesture== +Viesturiskai Kepovys pogosta teritoreja bejuse Daugpiļs apleiciņa Osyuna pogostā. 1945 godā Osyuna pogostā īstateja Kepovys solys padūmi. 1954 godā Kepovys solai daškiera likvidātū Apaļu solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Dagdys nūvods|Dagdys nūvodam]]. + +== Rūbeži == +Kepovys pogosts tur rūbežu ar: +* [[Dagdys nūvods|Dagdys nūvoda]] [[Osyuna pogosts|Osyuna pogostu]], [[Pareču pogosts|Pareču pogostu]], [[Svareņu pogosts|Svareņu pogostu]]; +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Pūstinis pogosts|Pūstinis pogostu]]; +* [[Boltkrīveja|Boltkrīvejis Republikys]] Vicebskys apgabaļa Verhņadzvinskys rajonu. + +== Dzeivuotuoji == +Kepovys pogostā dzeivoj 261 ļauds, nu jū 67,1% latvīšu, 13,3% krīvu i 10,4% boltkrīvu. + +=== Solys === +Kepovys pogosta ļauds dzeivoj 22 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Apali, Neikšāni (pogosta centrys), Lukšova. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju naškārsoj nivīns vaļsteibys zeimebys ceļš, sative nūteik pa nazcik vītejuos zeimeibys celim. Taipoš dzeļžaceļa linejis pogostā navā. + +Kepovys pogosta teritoreju apkalpoj vīna posta atdale "Kepova" Neikšānu solā (LV-5677).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Dagdys nūvods}} + +[[Kategoreja:Kepovys pogosts]] + apmsh1x5qz2miahiok7l123wts2xb9d + + + + Pūstinis pogosts + 0 + 1703 + + 31836 + 31790 + 2016-12-09T09:37:59Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31790 dated 2016-12-09 08:59:34 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Pūstinis pogosts +| zemislopa = Robežnieku pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Pūstinis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Pūstinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kruoslovys nūvods +| centrys = Pūstine +| pluots = 127.49 +| dzeivuotuoju_skaits = 1030<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1030 / 127.49 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Pūstinis pogosts''' irā [[Kruoslovys nūvods|Kruoslovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, biblioteka i feļčeru punkts Pūstinis solā, klubs, feļčeru punkts, pansionats i dīnys centrys Skuku solā i biblioteka Joninu solā. 1999 godā Pūstinis poamatškolai daškiera Skuku suokuškolu, partū tān pogostā tik vīns vuiceibu īstots. + +==Viesture== +1935 godā Daugpiļs apleiciņa Pūstinis pogosta pluots beja 132,47 km² i tymā dzeivova 4274 ļauds.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 1945 godā pogostā īstateja Joninu, Nauļānu, Pleiku i Pūstinis solys padūmi i 1949 godā pogostu likvidieja. Kruoslovys rajona Pūstinis solai 1954 godā daškiera likvidātū Nauļānu solu, 1979 godā likvidātū Joninu solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu. 2009 godā kai administrativu teritoreju pogostu daškir [[Kruoslovys nūvods|Kruoslovys nūvodam]]. + +== Rūbeži == +Pūstinis pogosts tur rūbežu ar: +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Kaļnīšu pogosts|Kaļnīšu pogostu]], [[Indreicys pogosts|Indreicys pogostu]] i [[Skaista pogosts|Skaista pogostu]]; +* [[Dagdys nūvods|Dagdys nūvoda]] [[Kepovys pogosts|Kepovys pogostu]], [[Konstaņtinovys pogosts|Konstaņtinovys pogostu]] i [[Osyuna pogosts|Osyuna pogostu]]; +* [[Boltkrīveja|Boltkrīvejis Republikys]] Vicebskys apgabaļa Verhņadzvinskys rajonu. + +== Dzeivuotuoji == +Pūstinis pogostā dzeivoj 1030 ļauds, nu jū 25,4% latvīšu, 46,7% boltkrīvu i 19,2% krīvu. + +=== Solys === +Pūstinis pogosta ļauds dzeivoj 63 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Pūstine (pogosta centrys), Skuki, Pleiki, Nauļāni, Gromyki, Auguļova, Jonini. + +=== Zeimeigi ļauds === +* F. Koleda - školuotuojs, kulturys dareituojs; +* Valerejs Ļuļs - uorsts, terapeits. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju naškārsoj nivīns vaļsteibys zeimebys ceļš, sative nūteik pa nazcik vītejuos zeimeibys celim. Taipoš dzeļžaceļa linejis pogostā navā. + +Pūstinis pogosta teritoreju apkalpoj vīna posta atdale "Pūstine" (LV-5666).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kruoslovys nūvods}} + +[[Kategoreja:Pūstinis pogosts]] + r9ai6g1qt1nvvt2puaem4nb2amhn0l1 + + + + Indreicys pogosts + 0 + 1704 + + 28650 + 22703 + 2013-03-08T02:02:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361117]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Indreicys pogosts +| zemislopa = Indras pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Indreicys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Indreicys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kruoslovys nūvods +| centrys = Indreica +| pluots = 130.36 +| dzeivuotuoju_skaits = 1300<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1300 / 130.36 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Indreicys pogosts''' irā [[Kruoslovys nūvods|Kruoslovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora vydsškola, muzikys i dailis škola, tautys noms, biblioteka, feļčeru punkts i dzeļžaceļa rūbežkontrolis punkts.Indrys pogostā div bazņeicys - Baļbynovys katuoļu i Indreicys ļutaru. + +==Viesture== +Da 1920 gods agrarajai reformai tānejuo Indreicys pogosta teritorejā beja Baļbynovys i Dvorčānu muiža.<ref>Latvīšu konversacejis vuordineica XIV. toma 28092-28097 ailis. Reiga, 1936 gods</ref> 1937 godā Daugpiļs apleiciņa Pīdrujis pogostu +puorsauce par Indreicys pogostu. Tymā laikā pogosta pluots beja 164,86 km² i dzeivova 6793 ļauds. 1945 godā pogostā īstateja Dvorčānu, Indreicys, Kelovys, Kuzminu, Pīdrujis i Voicuļovys solu padūmi, a pošu pogostu 1949 godā likvidieja.Kruoslovys rajona Indreicys solai 1950 godā daškiera likvidātū Kuzminu solu, 1961 godā likvidātū Voicuļovys solu.ref>Okupātuos Latvejis administrativi teritoriskais dalejums.<ref>Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Kruoslovys nūvods|Kruoslovys nūvodam]]. + +== Rūbeži == +Indreicys pogosts tur rūbežu ar: +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Kaļnīšu pogosts|Kaļnīšu pogostu]], [[Pīdrujis pogosts|Pīdrujis pogostu]] i [[Pūstinis pogosts|Pūstinis pogostu]]; +* [[Boltkrīveja|Boltkrīvejis Republikys]] Vicebskys apgabaļa Verhņadzvinskys rajonu. + +== Dzeivuotuoji == +Indreicys pogostā dzeivoj 1300 ļauds, nu jū 12,2% latvīšu, 58,0% boltkrīvu, 17,8% krīvu i 12,0% cytu tauteibu ļauds (puoli i cyti). + +=== Solys === +Indreicys pogosta ļauds dzeivoj 52 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Indreica (pogosta centrys), Boltuo, Darguļova, Vaivodi, Voicuļova. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju naškārsoj nivīns vaļsteibys zeimebys ceļš, sative nūteik pa nazcik vītejuos zeimeibys celim. 10 km atostumā nu pogosta centra īt vaļsteibys zeimebys autoceļš Reiga-Daugpiļs-Puotarnīki (A6).<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Indreicys pogostu škārsoj dzeļžaceļa lineja Reiga-Daugpiļs-Vicebskys, iz kurys rūbežkontrolis punkts. Pasažiru sative puosmā [[Daugpiļs]]-Indra aizdareita 2000 godā. + +Indreicys pogosta teritoreju apkalpoj vīna posta atdale "Indreica" (LV-5664).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kruoslovys nūvods}} + +[[Kategoreja:Indreicys pogosts]] + n5twxkrxpgzh7nlx9d3vas80a6kh1ym + + + + Kategoreja:Osyuna pogosts + 14 + 1705 + + 29632 + 22685 + 2013-04-04T21:19:51Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9439114]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Dagdys nūvods]] + pp4jvk49r760dn6eetir1iz953hgtr2 + + + + Kategoreja:Kepovys pogosts + 14 + 1706 + + 29633 + 22686 + 2013-04-04T21:19:53Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9581356]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Dagdys nūvods]] + pp4jvk49r760dn6eetir1iz953hgtr2 + + + + Kategoreja:Indreicys pogosts + 14 + 1707 + + 29634 + 22704 + 2013-04-04T21:19:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9558341]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Kruoslovys nūvods]] + 79nj3gn5bpd1a308rdtihopqdjqr6ku + + + + Kategoreja:Pūstinis pogosts + 14 + 1708 + + 29635 + 22741 + 2013-04-04T21:19:57Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9716550]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Kruoslovys nūvods]] + 79nj3gn5bpd1a308rdtihopqdjqr6ku + + + + Kategoreja:Rundānu pogosts + 14 + 1709 + + 29636 + 16650 + 2013-04-04T21:19:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9717558]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Rundēni parish|Rundānu pogosts}} +{{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Ludzys nūvods]] + om7t6lzoztsfa6flgzpid6eunci2ben + + + + Rūbežnīku pogosts + 0 + 1712 + + + 16668 + 2011-09-01T11:21:27Z + + Dark Eagle + 34 + + + Pāradresē uz [[Pūstinis pogosts]] + wikitext + text/x-wiki + #REDIRECT [[Pūstinis pogosts]] + 2zpzg3mka7j88ya5fa3ujwusulkgrmo + + + + Rundānu pogosts + 0 + 1713 + + 28651 + 16675 + 2013-03-08T02:02:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2000529]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rundānu pogosts +| zemislopa = Rundēnu pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Rundānu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Rundānu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ludzys nūvods +| centrys = Rundāni +| pluots = 124,66 +| dzeivuotuoju_skaits = 583<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = 4,7 +| īstateits = +| teiklavīta = +}} + +'''Rundānu pogosts''' irā [[Ludzys nūvods|Ludzys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. + +== Nūruodis == +{{nūruodis}} + +{{eiss rakstīņs}} + +{{Ludzys nūvods}} + +[[Kategoreja:Rundānu pogosts| ]] + pbh7unhq1gxuyr7mrzjb6pis62syg8m + + + + Grybuli + 0 + 1714 + + 29821 + 16679 + 2013-04-15T02:31:15Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Grybuli''' var zeimuot: +* [[Grybuli (Kruoslovys pogosts)|Grybuli]] — sola [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Kruoslovys pogosts|Kruoslovys pogostā]]. +* [[Grybuli (Kumbuļa pogosts)|Grybuli]] — sola Kruoslovys nūvoda [[Kumbuļa pogosts|Kumbuļa pogostā]]. +* [[Grybuli (Bykovys pogosts)|Grybuli]] — sola [[Rēznis nūvods|Rēznis nūvoda]] [[Bykovys pogosts|Bykovys pogostā]]. +* [[Grybuli (Veremu pogosts)|Grybuli]] — sola Rēznis nūvoda [[Veremu pogosts|Veremu pogostā]]. + +== Verīs taipoš == +* [[Gibuli]] + +{{zeimeibu škiršona}} + hizl675gan4xnzaxly3qtvivrs9q4a9 + + + + Kategoreja:Malnuo Dyužgola pogosts + 14 + 1715 + + 29637 + 16735 + 2013-04-04T21:20:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9714307]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Čornaja parish|Malnuo Dyužgola pogosts}} +{{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Rēznis nūvods]] + nphz2tmaqmkcbrtula99xq5tmg70n8r + + + + Argeņtina + 0 + 1716 + + 31541 + 31188 + 2016-08-07T12:40:54Z + + DARIO SEVERI + 3389 + + Update inf. from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Argeņtinys Republika'''<br />'''República Argentina'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Argentina.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Argentina.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Argentina (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || [[Buenos Aires]] +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 2 780 400 km² +|- +|| Dzeivuotuoju skaits || 43 417 000 (2015) +|- +|| [[Laika zona]]<br />-vosorā || +|} +[[File:ViñedoCafayate.jpg|thumb|left|Salta]] + +'''Argeņtina''' ({{vol-es|Argentina}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +== Verīs taipoš == + +{{Commons|Argentina}} +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Argeņtina| ]] + o4nqobumdds814zrxax6f2mpecyq1tl + + + + Argentina + 0 + 1717 + + + 16737 + 2011-09-05T00:06:01Z + + X4v13r3 + 224 + + + Pāradresē uz [[Argeņtina]] + wikitext + text/x-wiki + #REDIRECT [[Argeņtina]] + t8o9bjas47besra5vgtd6tl48xcabm9 + + + + Brazileja + 0 + 1718 + + 31913 + 31906 + 2017-02-25T21:18:30Z + + Mr. Fulano + 3757 + + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Brazilejis Federativuo Republika'''<br />'''República Federativa do Brasil'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Brazil.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Brazil.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Brazil (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || [[Brasile]] (Brasilia) +|- +|| Vaļsteibys volūda || [[Portugāļu volūda|Portugāļu]] +|- +| Prezidents || [[Michel Temer]] +|- +| Ministru prezidents || +|- +|| Pluots || 8 514 877 km² +|- +|| Dzeivuotuoju skaits || 190 732 694 +|- +|| [[Laika zona]]<br />-vosorā || +|} + + +'''Brazileja''' ([[Portugāļu volūda|Portugāļu]]: ''Brasil'') - vaļsteiba [[Dīnavydu Amerika]]. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Brazileja| ]] + m33g36x0z4irhwa3k1uzelkfpmp025g + + + + Meksika + 0 + 1719 + + 30715 + 28654 + 2015-04-02T15:30:18Z + + Magioladitis + 2827 + + + /* Verīs taipoš */All info is kept in Wikidata, removed: {{Link FA|es}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Meksikys Saškiertuos Vaļsteibys'''<br />'''Estados Unidos Mexicanos'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Mexico.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Mexico.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Mexico (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 1 972 550 km² +|- +|| Dzeivuotuoju skaits || 112 322 757 +|- +|| [[Laika zona]]<br />-vosorā || +|} + + +'''Meksika''' ({{vol-es|México}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Meksika| ]] + mp3u8p71a5do38o9dxbfsaxzus3o3u3 + + + + Urugvajs + 0 + 1720 + + 29447 + 28655 + 2013-03-24T07:40:26Z + + X4v13r3 + 224 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Urugvaja Reitu Republika'''<br />'''República Oriental del Uruguay'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Uruguay.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Uruguay.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Uruguay (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || [[Montevideo]] +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 176 215 km² +|- +|| Dzeivuotuoju skaits || 3 424 595 +|- +|| [[Laika zona]]<br />-vosorā || +|} +'''Urugvajs''' ({{vol-es|Uruguay}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +== Verīs taipoš == +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Urugvajs| ]] + i8dfa8nuo02r2ezerm2cq21li74ok9e + + + + Iļdzs + 0 + 1721 + + 29832 + 16766 + 2013-04-15T03:32:44Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Iļdzs +| atvaiga_pasauka = Ilzas ezers 1999-08-17.jpg +| atvaiga_aprakstejums = Iļdzs pi Dagdys-Aglyunys ceļa +| zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 9 | lats = 25 | latNS = N +| longd = 27 | longm = 9 | longs = 25 | longEW = E +| nūvods = Aglyunys nūvods +| pluots = 3,28 +| pošlelais_garums = +| vydyskuo_dzilīne = 9,8 +| pošleluo_dzilīne = 46,0 +| vydums = 0,0036 +| augstums = 150,6 +| iztece = +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = 1 +| dzeivojamys_vītys = Geranimova, Prīžmola +| cytys pasaukys = Geranimovys Iļdzs +}} + +'''Iļdzs''' aba''' Geranimovys Iļdzs''' — catūrtais pošu dzilais Latgolys azars [[Aglyunys nūvods|Aglyunys nūvoda]] [[Kastulīnis pogosts|Kastulīnis pogostā]].<ref>[http://www.ezeri.lv/database/1911/ ezeri.lv]</ref> Azars subglacialā īlīknē Vīmyna kauprainē. Dybyns dyuņuots, molys stuovonys. Ītak nazcik ryuču i gruovu, leluokī nu jū Randovka (nu Leluo Kustaru azara) i ryucs nu Dubuļu azara. Ar [[Rušyuns|Rušyunu]] saškir vīna nūtece, iz kurys da 20 godu symta 70 godim bejušys iudiņa patmalis. Azara vydums 36 milijons m³, iudiņs azarā samejuos 1,8 godūs, Azarā vīna azarsola (0,1 dekteru).<ref>Eņciklopedeja "Latvejis doba", Presis noms, 1998, ISBN 9984-00-312-4</ref> + +Nu auguoju azarā aug nīdris, skūrstys, vylkuvāzys, šautrainis, skaļbi, gleivinis i cyti auguoji. Nu zyvu azarā dzeivoj osors, leidaka, plauds, karušs, snīdze, korpa, zuts, viedzele, repšs i cytys. + +Azarmolā nazcik myudu. + +== Nūruodis i olūti == +{{nūruodis}} + +[[Kategoreja:Latgolys azari]] +[[Kategoreja:Kastulīnis pogosts]] + fdjabtb0f057prh8rora69rztlb5wla + + + + Ekvadors + 0 + 1723 + + 28656 + 27982 + 2013-03-08T02:03:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 173 interwiki links, now provided by [[d:|Wikidata]] on [[d:q736]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Ekvadora Republika'''<br />'''República del Ecuador'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Ecuador.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Ecuador.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Ecuador (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || +|- +|| Volūdys || [[Spanīšu volūda]], [[Kečūa volūda]] +|- +| Prezidents || Rāfaels Koreia +|- +| Ministru prezidents || +|- +|| Pluots || 256 370 km² +|- +|| Dzeivuotuoju skaits || 14 306 876 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC -5),<br /> EEST (UTC -6) +|} + + +'''Ekvadors''' ({{vol-es|Ecuador}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. Golvysmīsts — [[Kīito]] (Quito). Ekvadora 272 046 km² pluotā dzeivoj vaira kai 15 milijoni dzeivuotuoju, i ite 75-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +== Verīs taipoš == +== Teiklavītys == +* [http://www.presidencia.gob.ec/ Prezidents - Spanīšu volūda] +* [http://www.ecuadors.org/ www.ecuadors.org ] + + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Ekvadors| ]] + pyl2ib3weua9msi578vd5lx1goypm8s + + + + Kolumbeja + 0 + 1724 + + 30716 + 30179 + 2015-04-02T15:30:20Z + + Magioladitis + 2827 + + + /* Verīs taipoš */All info is kept in Wikidata, removed: {{Link FA|eo}} using [[Project:AWB|AWB]] (10896) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Kolumbejas Republika'''<br />'''República de Colombia'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Colombia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Colombia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:COL orthographic (San Andrés and Providencia special).svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 1 141 748 km² +|- +|| Dzeivuotuoju skaits || 45 925 397 +|- +|| [[Laika zona]]<br />-vosorā || +|} + + +'''Kolumbeja''' ({{vol-es|Colombia}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Kolumbeja| ]] + eaz0i7wp1kv5xd4hp4puhsdapo9iynq + + + + Paragvajs + 0 + 1725 + + 29449 + 28658 + 2013-03-24T07:41:31Z + + X4v13r3 + 224 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Paragvaja Republika'''<br />'''República del Paraguay'''<br />'''Tetã Paraguái'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Paraguay.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Paraguay.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Paraguay (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || [[Asunción]] +|- +|| Vaļsteibys volūda || +|- +| Prezidents || +|- +| Ministru prezidents || +|- +|| Pluots || 406 752 km² +|- +|| Dzeivuotuoju skaits || 6 459 000 +|- +|| [[Laika zona]]<br />-vosorā || +|} + + +'''Paragvajs''' ({{vol-es|Paraguay}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +== Verīs taipoš == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Paragvajs| ]] + tmj1mv96tnj7inedi7l5yedvypv960c + + + + Golyšovys pogosts + 0 + 1726 + + 28659 + 18585 + 2013-03-08T02:04:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800872]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Golyšovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Golyšovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Golyšovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kuorsovys nūvods +| centrys = Golyšova +| pluots = 79.4 +| dzeivuotuoju_skaits = 467<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 467 / 79.4 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Golyšovys pogosts''' irā [[Kuorsovys nūvods|Kuorsovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrā Golyšovā dora tautys noms, biblioteka i pyrmaškoliņs īstots. Kai 2010 godā aizdareja Aizgāršys pamatškolu, pogostā nadora nivīna škola. Lelums ļaužu pravoslavi i pīdar Golyšovys Svātuos Trejadeibys pravoslavu parapejai. + +==Viesture== +Golyšovys pogosts pyrmū reizi viesturis dokumentūs aizraksteits 1646 godā [[Ludza|Ludzys]] stuorastejis inventara sarokstā kai ''Wlosc Hołuszowska''. 1784 godā Golyšova sarokstūs aizraksteita kai Mikalovskys (Mērdzinis) muižys daļa. 1945 godā Mērdzinis pogostā īstateja Golyšovys solys padūmi. 1979 godā Golyšovys solai daškiera daļu [[Blontu pogosts|Blontu]] solys teritorejis.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Kuorsovys nūvods|Kuorsovys nūvodam]]. + +== Rūbeži == +Golyšovys pogosts tur rūbežu ar: +* [[Kuorsovys nūvods|Kuorsovys nūvoda]] [[Malnovys pogosts|Malnovys pogostu]] i [[Mērdzinis pogosts|Mērdzinis pogostu]]; +* [[Cyblys nūvods|Cyblys nūvoda]] [[Blontu pogosts|Blontu pogostu]]; +* [[Krīveja|Krīvejis Federacejis]] Opskovys apgabaļa Krasnogorodskys rajonu. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kuorsovys nūvods}} + +[[Kategoreja:Golyšovys pogosts]] + g1tlvzk4wjm3dahn64wt2ptt7155dng + + + + Malnovys pogosts + 0 + 1727 + + 28660 + 18588 + 2013-03-08T02:04:23Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800889]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Malnovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Malnovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Malnovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kuorsovys nūvods +| centrys = Malnova +| pluots = 163.7 +| dzeivuotuoju_skaits = 1406<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1406 / 163.7 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Malnovys pogosts''' irā [[Kuorsovys nūvods|Kuorsovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, Malnovys koledža i Nesteru, Buozovys i Lemešovys biblioteka. Ticeigī viesturiskai pīdar Kuorsovys Romys katuoļu parapejai. + +==Viesture== +Viesturiskai Malnovys pogosta teritoreja bejuse Ludzys apleiciņa Kuorsovys pogostā. 1945 godā Kuorsovys pogostā īstateja Buozovys solys padūmi. 1954 godā Buozovys solai daškiera likvidātū Nesteru solu, 1965 godā Kuorsovys solys sovetu saimisteibys "Malta" teritoreju, a 1975 godā vēļ pa daļai nu Kuorsovys solys teritoreju. 1975 godā Buozovys solu puorsauce kai Malnovys solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Kuorsovys nūvods|Kuorsovys nūvodam]]. + +== Rūbeži == +Malnovys pogosts tur rūbežu ar: +* [[Kuorsovys nūvods|Kuorsovys nūvoda]] [[Golyšovys pogosts|Golyšovys pogostu]], [[Kuorsova|Kuorsovys mīstu]], [[Mežavydu pogosts|Mežavydu pogostu]], [[Mērdzinis pogosts|Mērdzinis pogostu]] i [[Saļņovys pogosts|Saļņovys pogostu]]; +* [[Krīveja|Krīvejis Federacejis]] Opskovys apgabaļa [[Pitalovys rajons|Pitalovys rajonu]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kuorsovys nūvods}} + +[[Kategoreja:Malnovys pogosts| ]] + bkar4bff6wue3cm1z4dg2h4rfwco344 + + + + Saļņovys pogosts + 0 + 1728 + + 28661 + 18631 + 2013-03-08T02:04:34Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800883]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Saļņovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Saļņovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Saļņovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kuorsovys nūvods +| centrys = Saļņova +| pluots =167.0 +| dzeivuotuoju_skaits = 850<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 850 /167.0 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Saļņovys pogosts''' irā [[Kuorsovys nūvods|Kuorsovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, biblioteka, pamatškola, feļčeru puinkts. Pogostā dora Saļņovys i Ruskulovys Romys katuoļu parapejis, taipoš ticeigī pīdar i Kuorsovys Romys katuoļu parapejai. + +==Viesture== +Viesturiskai Saļņovys pogosta teritoreja bejuse Ludzys apleiciņa Kuorsovys pogostā. 1945 godā īstateja Saļņovys solys padūmi. 1954 godā Saļņovys solys padūmei daškiera Oponosu solu, 1955 godā Ruskulovys solu, a 1977 godā pa daļai nu Malnovys, Kuorsovys i Baļtinovys solu teritorejis.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Kuorsovys nūvods|Kuorsovys nūvodam]]. + +== Rūbeži == +Saļņovys pogosts tur rūbežu ar: +* [[Kuorsovys nūvods|Kuorsovys nūvoda]] [[Kuorsova|Kuorsovys mīstu]], [[Malnovys pogosts|Malnovys pogostu]] i [[Mežavydu pogosts|Mežavydu pogostu]]; +* [[Baļtinovys nūvods|Baļtinovys nūvoda]] [[Baļtinovys pogosts|Baļtinovys pogostu]]; +* [[Bolvu nūvods|Bolvu nūvoda]] [[Kryšanu pogosts|Kryšanu pogostu]] i [[Tiļžys pogosts|Tiļžys pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Nautrānu pogosts|Nautrānu pogostu]]; +* [[Krīveja|Krīvejis Federacejis]] Opskovys apgabaļa [[Pitalovys rajons|Pitalovys rajonu]]. + +== Dzeivuotuoji == +Saļņovys pogostā dzeivoj 850 ļaužu. + +=== Solys === +Saļņovys pogosta ļauds dzeivoj 51 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Saļņova (pogosta centrys), Aizeļkšni, Kaupuži, Ruskulova. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kuorsovys nūvods}} + +[[Kategoreja:Saļņovys pogosts]] + a1o8w7o2jfvitxt64jxrd7lfnfncq6h + + + + Mežavydu pogosts + 0 + 1729 + + 28662 + 18621 + 2013-03-08T02:04:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801219]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Mežavydu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Mežavydu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Mežavydu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kuorsovys nūvods +| centrys = Mežavydi +| pluots = 124.9 +| dzeivuotuoju_skaits = 1012<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1012 / 124.9 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Mežavydu pogosts''' irā [[Kuorsovys nūvods|Kuorsovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta dora taytys noms, Mežavydu i Raņču biblioteka, Mežavydu 1. pamatškola Mežavydu solā i Mežavydu 2. pamatškola Raņču solā. Katuoli pīdar Mežavydu Romys katuoļu parapejai. + +==Viesture== +Viesturiskai Mežavydu pogosts bejs Rēznis apleiciņa [[Bieržgaļa pogosts|Bieržgaļa pogostā]]. 1945 godā Bieržgaļa pogostā īstateja Mežavydu solys padūmi. 1945 godā Mežavydu solai daškiera Padolis solu, a 1977 i Raņču solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Kuorsovys nūvods|Kuorsovys nūvodam]]. + +== Rūbeži == +Mežavydu pogosts tur rūbežu ar: +* [[Kuorsovys nūvods|Kuorsovys nūvoda]] [[Malnovys pogosts|Malnovys pogostu]], [[Mērdzini pogosts|Mērdzinis pogostu]] i [[Saļņovys pogosts|Saļņovys pogostu]]; +* [[Cyblys nūvods|Cyblys nūvoda]] [[Pušmycovys pogosts|Pušmycovys pogostu]] i [[Zviergzdiņa pogosts|Zviergzdiņa pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Bieržgaļa pogosts|Bieržgaļa pogostu]], [[Iļžukolna pogosts|Iļžukolna pogostu]] i [[Nautrānu pogosts|Nautrānu pogostu]]. + +== Dzeivuotuoji == +Mežavydu pogostā dzeivoj 1012 ļauds, nu jū 94,6% latvīšu, 3,3% krīvu i 0,6% boltkrīvu. + +=== Solys === +Mežavydu pogosta ļauds dzeivoj 72 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Mežavydi (pogosta centrys), Mežavydu muiža (Ūtrī Mežavydi), Annysmuiža. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kuorsovys nūvods}} + +[[Kategoreja:Mežavydu pogosts]] + jpvt9e8564zyvg4f0lrse9czpomnzbc + + + + Kategoreja:Golyšovys pogosts + 14 + 1732 + + 29638 + 18586 + 2013-04-04T21:20:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9502043]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Kuorsovys nūvods]] + aq2g4opn379wqiegj006dgeir0hrb52 + + + + Kategoreja:Saļņovys pogosts + 14 + 1734 + + 29575 + 18630 + 2013-04-04T08:12:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9718485]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Kuorsovys nūvods]] + aq2g4opn379wqiegj006dgeir0hrb52 + + + + Kategoreja:Malnovys pogosts + 14 + 1735 + + 29552 + 18589 + 2013-04-04T02:14:04Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9616002]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Kuorsovys nūvods]] + aq2g4opn379wqiegj006dgeir0hrb52 + + + + Kategoreja:Mežavydu pogosts + 14 + 1736 + + 29557 + 18622 + 2013-04-04T02:19:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9620069]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Kuorsovys nūvods]] + aq2g4opn379wqiegj006dgeir0hrb52 + + + + Peru + 0 + 1737 + + 31536 + 30717 + 2016-08-03T17:36:07Z + + Miguel Chong + 3564 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Peru Republika'''<br />'''República del Perú'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Peru.svg |150px|border]] +| align="center" width="140px" | [[Fails:Escudo nacional del Perú.svg |150px]] +|} +|- +| align=center colspan=2 | [[Fails:Peru (orthographic projection).svg |300px]] +|- +|| Golvysmīsts || Līma +|- +|| Vaļstiskuo volūda || spanīšu +|- +| Prezidents || Pedro Pablo Kuczynski +|- +| Premiers || Fernando Zavala +|- +|| Pluots || 1 285 216 km² +|- +|| Dzeivuotuoju skaits || 29 496 000 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC -5) +|} +[[Fails:Peru - Regions and departments (labeled).svg|280px|border|right| Peru]] + +'''Peru''' ({{vol-es|Perú}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. Golvysmīsts — [[Līma]] (Lima). Peru 1 285 216 km² pluotā dzeivoj vaira kai 29 milijoni dzeivuotuoju, i ite 20-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Spanīšu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.presidencia.gob.pe/ Prezidents - Spanīšu volūda] +* [http://www.peru.gob.pe/ www.peru.gob.pe - Spanīšu volūda ] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Peru| ]] + 5t51p7zf4c7n2s2pawhyftzpgygg9ri + + + + Venecuela + 0 + 1738 + + 31258 + 29467 + 2015-12-21T22:27:07Z + + CommonsDelinker + 2750 + + Removing "Coat_of_arms_of_Venezuela.svg", it has been deleted from Commons by [[commons:User:Ezarate|Ezarate]] because: Per [[:c:Commons:Deletion requests/File:Coat of arms of Venezuela.svg|]]. + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Venecuelys Republika'''<br />'''República Bolivariana de Venezuela'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Venezuela (state).svg|150px|border]] +| align="center" width="140px" | +|} +|- +| align=center colspan=2 | [[Fails:VEN orthographic.svg|300px]] +|- +|| Golvysmīsts || Karakass +|- +|| Vaļstiskuo volūda || spanīšu +|- +| Prezidents || Nikolas Maduros +|- +|| Pluots || 916 445 km² +|- +|| Dzeivuotuoju skaits || 29 105 632 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC -4:30) +|} + + +'''Venecuela''' ({{vol-es|Venezuela}}) - vaļsteiba [[Latiņamerika|Latiņamerikā]]. Golvysmīsts — [[Karakass]] (Caracas). Puolejis 916 445 km² pluotā dzeivoj vaira kai 29 milijoni dzeivuotuoju, i ite 40-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Spanīšu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.gobiernoenlinea.ve/misc-view/index.pag - Vaļstiskuo Teiklavīta (Spanīšu volūda)] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Venecuela| ]] + obpx4hfl23i7i6qfruedhuapfg8q47e + + + + Boliveja + 0 + 1741 + + 31900 + 30419 + 2017-02-25T06:08:05Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Bolivejis Republika'''<br />'''Estado Plurinacional de Bolivia'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Bolivia (state).svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Bolivia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Bolivia (orthographic projection).svg|300px]] +|- +|| Golvysmīsti || Sukre, La Paz +|- +|| Vaļstiskuo volūdys || [[spanīšu volūda]], [[kečūa volūda]], [[aimara volūda]] +|- +| Prezidents || Evo Moraless +|- +|| Pluots || 1 098 581 km² +|- +|| Dzeivuotuoju skaits || 10 907 778 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC -4) +|} + +[[Fails:Salar_de_Uyuni,_Bolivia2.jpg|thumb|left|Uyuni]] +'''Boliveja''' ({{vol-es|Bolivia}}, [[kečūa]]: ''Bulivya'', [[aimara]]: ''Wuliwya Suyu'') - vaļsteiba [[Latiņamerika|Latiņamerikā]]. Golvysmīsti — [[Sukre]] (Sucre) i [[La Paz]]. Bolivejis 1 098 581 km² pluotā dzeivoj vaira kai 10 milijoni dzeivuotuoju, i ite 28-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Spanīšu volūda]] +* [[Kečūa volūda]] +* [[Aimara volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == + + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Boliveja| ]] + fzaac5b3dctr3eqchjntfls9qb3pkex + + + + Gajana + 0 + 1742 + + 31959 + 30779 + 2017-04-26T01:00:10Z + + 2A00:23C4:C2FA:5400:132:F168:F648:4824 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Gajanys Republika'''<br />'''Co-operative Republic of Guyana'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Guyana.svg |150px]] +| align="center" width="140px" | [[Fails:Coat of Arms of Guyana.svg |100px]] +|} +|- +| align=center colspan=2 | [[Fails:Guyana in its region.svg|300px]] +|- +|| Golvysmīsts || Džordžtauns +|- +|| Vaļstiskuo volūda || [[anglīšu volūda]] +|- +| Prezidents || Deivids Greindžers +|- +|| Pluots || 214 970 km² +|- +|| Dzeivuotuoju skaits || 752 940 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC -4) +|} + + +'''Gajana''' ([[anglīšu volūda|anglīšu]]: ''Guyana'') - vaļsteiba [[Latiņamerika|Latiņamerikā]]. Golvysmīsts — [[Džordžtauna]]. Gajanys 214 970 km² pluotā dzeivoj vaira kai 752 940 dzeivuotuoju, i ite 84-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūda === + +* [[Anglīšu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://opnew.op.gov.gy/ Prezidents - Anglīšu volūda] +* [http://www.parliament.gov.gy/ Gajanys Parlaments - Anglīšu volūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Gajana| ]] + qgedjrxstj44bct785bclw17qvmgsd8 + + + + Surinams + 0 + 1743 + + 30471 + 28667 + 2014-11-07T01:21:23Z + + Faolin42 + 1058 + + Commonscat on right + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Surinama Republika'''<br />'''Republiek Suriname'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Suriname.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Suriname.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Suriname (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || Paramaribo +|- +|| Vaļstiskuo volūda || [[nīderlandšu volūda]] +|- +| Prezidents || Desi Bouterse +|- +|| Pluots || 163 821 km² +|- +|| Dzeivuotuoju skaits || 491 989 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC -3) +|} +{{Commonscat|Suriname}} + +'''Surinams''' ([[nīderlandšu volūda|nīderlandšu]]: ''Surinam'') - vaļsteiba [[Latiņamerika|Latiņamerikā]]. Golvysmīsts — [[Paramaribo]]. Vaļsteibys 163 821 km² pluotā dzeivoj vaira kai 492 829 dzeivuotuoju, i ite 91 pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Nīderlandšu volūda|Nīderlandšu]] +* [[Sraņan Tongu volūda]] +* [[Hindu volūda]] +* [[Anglīšu volūda|Anglīšu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.president.gov.sr/kabinet-van-de-president Prezidents - Nīderlandšu volūda] +* [http://www.gov.sr/ Surinama Vaļdeišona - Nīderlandšu volūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Surinams| ]] + imav5slksrjthn2nfpdop691hfmqvtn + + + + Praņcīšu Gviāna + 0 + 1744 + + 29320 + 28668 + 2013-03-11T11:02:13Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3769]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Praņcīšu Gviāna'''<br />'''Guyane français'''</big></big> +|- +|style="background:#efefef;" align="center" colspan=2| +{| border="0" cellpadding="2" cellspacing="0" +|- +|align="center" width="140px"| [[Fails:Flag of French Guiana.svg|150px|border]] +|align="center" width="140px"| [[Fails:Blason de la Guyane.svg|100px]] +|} +|- +|align=center colspan=2| [[Fails:French Guiana in France.svg|300px]] +|- +|Golvysmīsts +|Kajeņa +|- +|Vaļstiskuo volūda +|[[Praņcīšu volūda]] +|- +| Prezidents +|''Desi Bouterse'' +|- +|Pluots +|83 534 km² +|- +|Dzeivuotuoju skaits +|217 000 +|- +|[[Laika zona]] +|EET (UTC -3) +|} + +'''Praņcīšu Gviāna''' ({{vol-fr|Guyane française}}) — [[Praņceja|Praņcejis]] regions i aizjiures departaments [[Latiņamerika|Latiņamerikā]]. Golvysmīsts — [[Kajeņa]]. Praņcīšu Gviānys 163 821 km² pluotā dzeivoj vaira kai 492 829 dzeivuotuoju. + +== Teiklavītys == +* [http://www.cr-guyane.fr/ Conseil régional de Guyan - Praņcīšu valūda] +* [http://www.guyane.pref.gouv.fr/ Préfecture de Guyane - Praņcīšu valūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Praņcīšu Gviāna| ]] + 4f6clmetjija9ik0gjjbwyndp3dqlte + + + + Dīnavydu Afrikys Republika + 0 + 1745 + + 31914 + 30718 + 2017-02-26T06:52:17Z + + CommonsDelinker + 2750 + + Removing [[:c:File:Coat_of_arms_of_South_Africa.svg|Coat_of_arms_of_South_Africa.svg]], it has been deleted from Commons by [[:c:User:Taivo|Taivo]] because: File is corrupt, empty, or in a [[:c:COM:FT|disallowed format]]: empty. + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Dīnavydu Afrikys Republika'''<br />'''Republic of South Africa'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of South Africa.svg |150px|border]] +| align="center" width="140px" | +|} +|- +| align=center colspan=2 | [[Fails:South Africa (orthographic projection).svg |300px]] +|- +|| Golvysmīsts || Pretorija, Blumfonteina, Keiptauna +|- +|| Vaļstiskuo volūda || [[afrikandu valūda]], [[anglīšu volūda]], [[isindebelu volūda]], [[isiķhosu volūda]], [[Isizulu volūda]], [[čivenda volūda]] +|- +| Prezidents || Jakobs Zuma +|- +|| Pluots || 1 221 037 km² +|- +|| Dzeivuotuoju skaits || 50 586 757 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2) +|} + + +'''Dīnavydu Afrikys Republika''' ([[anglīšu volūda]]: ''Republic of South Africa'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Pretorija]], [[Blumfonteina]], i [[Keiptauna]]. Dīnavydu Afrikys 1 221 037 km² pluotā dzeivoj vaira kai 50 milijoni dzeivuotuoju, i ite 25-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Afrikandu valūda]] +* [[Anglīšu volūda]] +* [[Isindebelu volūda]] +* [[Isiķhosu volūda]] +* [[Isizulu volūda]] +* [[Čivenda volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.gov.za/ Dīnavydu Afrikys Vaļdeišona - Anglīšu volūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Dīnavydu Afrikys Republika| ]] + 2h6um3alri8xwlxqizbnz01w5ti9ql2 + + + + Botsvana + 0 + 1746 + + 28670 + 27699 + 2013-03-08T02:06:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 186 interwiki links, now provided by [[d:|Wikidata]] on [[d:q963]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Botsvanys Republika'''<br />'''Republic of Botswana'''<br />'''Lefatshe la Botswana'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Botswana.svg |150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Botswana.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Botswana AU Africa.svg |300px]] +|- +|| Golvysmīsts || Gaborone +|- +|| Vaļstiskuo volūdys || [[anglīšu volūda]], [[tswana volūda]] +|- +| Prezidents || Īans Kama +|- +|| Pluots || 581 730 km² +|- +|| Dzeivuotuoju skaits || 2 029 307 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2) +|} + + +'''Botsvana''' ([[anglīšu volūda]]: ''Botswana'' - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Gaborone]]. Puolejis 581 730 km² pluotā dzeivoj vaira kai 1.8 milijoni dzeivuotuoju, i ite 47-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Anglīšu volūda]] +* [[Tswana volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.gov.bw/ Botsvanays Vaļdeišona - Anglīšu volūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Botsvana| ]] + elzea1oxfrr4rjrar2c8gs3535klqz8 + + + + Zimbabve + 0 + 1747 + + 28671 + 27696 + 2013-03-08T02:06:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 179 interwiki links, now provided by [[d:|Wikidata]] on [[d:q954]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Zimbabvis Republika'''<br />'''Republic of Zimbabwe'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Zimbabwe.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Zimbabwe.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Zimbabwe AU Africa.svg|300px]] +|- +|| Golvysmīsts || Harare +|- +|| Vaļstiskuo volūdys || [[anglīšu volūda]], [[šonu volūda]] , [[isindebelu volūda]] +|- +| Ministru prezidents || Morgans Tsvangirai +|- +|| Pluots || 390 757 km² +|- +|| Dzeivuotuoju skaits || 12 521 000 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2) +|} + + +'''Zimbabve''' ([[anglīšu volūda]]: ''Zimbabwe'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Harare]]. Zimbabvis 390 757 km² pluotā dzeivoj vaira kai 12 milijoni dzeivuotuoju, i ite 60-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Anglīšu volūda]] +* [[Šonu volūda]] +* [[Isindebelu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.gta.gov.zw/ Zimbabvis Vaļdeišona - Anglīšu volūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Zimbabve| ]] + 11f439hg9xxx0svivqczxsvc62vk442 + + + + Angola + 0 + 1748 + + 31584 + 31538 + 2016-09-18T08:30:28Z + + DARIO SEVERI + 3389 + + Update inf. from wiki (en) + (pt) + (fr) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Angolys Republika<br />'''República de Angola'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Angola.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Angola.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Angola (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || Luanda +|- +|| Vaļstiskuo volūda || [[portugāļu volūda]] +|- +| | Prezidents || José Eduardo dos Santos +|- +|| Pluots || 1 246 700 km² +|- +|| Dzeivuotuoju skaits || 25 789 024 (2014) +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1) +|} + + +'''Angola''' ([[Portugāļu volūda|Portugāļu]]: ''Angola'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Luanda]]. Angolys 1 246 700 km² pluotā dzeivoj vaira kai 25 milijoni dzeivuotuoju, i ite 23-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Portugāļu volūda]] +* [[Kongo volūda]] +* [[Čokve volūda]] +* [[Umbundu volūda]] +* [[Gangvelu volūda]] +* [[Kvanyamu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.angola.gov.ao/ Angolys Vaļdeišona - Portugāļu volūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Angola| ]] + 0gtrnpkikbc5748ooe75w5nlg4pry66 + + + + Mozambika + 0 + 1751 + + 30401 + 28673 + 2014-08-13T00:44:38Z + + Ed veg + 2525 + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Mozambikys Republika'''<br />'''República de Moçambique '''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Mozambique.svg |150px|border]] +| align="center" width="140px" | [[Fails:Emblem of Mozambique.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Mozambique (orthographic projection).svg |300px]] +|- +|| Golvysmīsts || Maputo +|- +|| Vaļstiskuo volūda || [[portugāļu volūda]] +|- +| | Prezidents || Armando Gebuza +|- +|| Pluots || 801 590 km² +|- +|| Dzeivuotuoju skaits || 22 894 000 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2) +|} + + +'''Mozambika''' ([[portugāļu volūda| portugāļu]]: ''Moçambique'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Maputo]]. Mozambikys 801 590 km² pluotā dzeivoj vaira kai 22 milijoni dzeivuotuoju, i ite 35-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Portugāļu volūda]] +* [[Svahili volūda]] +* [[Makuva volūda]] +* [[Sena volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.portaldogoverno.gov.mz/ Mozambikys Vaļdeišona - Portugāļu volūda] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Mozambika| ]] + svy123b2qp3o5pcw9fkt3wozuu781od + + + + Madagaskars + 0 + 1752 + + 30844 + 28674 + 2015-08-11T09:19:54Z + + Moeng + 621 + + + update + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Mozambikys Republika'''<br />'''Repoblikan'i Madagasikara '''<br />'''République de Madagascar'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Madagascar.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Madagascar.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:MDG orthographic.svg|300px]] +|- +|| Golvysmīsts || Antananarivo +|- +|| Vaļstiskuo volūda || [[Malgašu volūda|malgašu]] [[Praņcīšu volūda|praņcīšu]] +|- +| | Ministru prezidents || Jean Ravelonarivo +|- +|| Pluots || 587 041 km² +|- +|| Dzeivuotuoju skaits || 21 926 221 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +3) +|} + + +'''Madagaskars''' ([[Malgašu volūda|malgašu]]: ''Repoblikan'i Madagasikara'', {{vol-fr| République de Madagascar }}) - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Antananarivo]]. Madagaskara 587 041 km² pluotā dzeivoj vaira kai 21 milijoni dzeivuotuoju, i ite 47-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Malgašu volūda]] +* [[Praņcīšu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.madagascar.gov.mg/ Madagaskara Vaļdeišona] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Madagaskars| ]] + ps5l4wolt9r0to7hdsmrdcay9c8dfn8 + + + + Zambeja + 0 + 1754 + + 31160 + 28675 + 2015-10-25T14:24:35Z + + Moeng + 621 + + + update + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Zambejis Republik'''<br />'''Republic of Zambia '''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Zambia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Zambia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Zambia (orthographic projection).svg |300px]] +|- +|| Golvysmīsts || Lusaka +|- +|| Vaļstiskuo volūda || [[anglīšu volūda]] +|- +| | Ministru prezidents || Edgar Lungu +|- +|| Pluots || 752 618 km² +|- +|| Dzeivuotuoju skaits || 12 935 000 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2) +|} + + +'''Zambeja''' ([[Anglīšu volūda|anglīšu]]: ''Republic of Zambia'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Lusaka]]. Zambejis 752 618 km² pluotā dzeivoj vaira kai 12 milijoni dzeivuotuoju, i ite 39-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Anglīšu volūda]] +* [[Čeva volūda]] +* [[Lunda volūda]] +* [[Tonga volūda]] +* [[Lozi volūda]] +* [[Luvale volūda]] +* [[Kaonde volūda]] + + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.statehouse.gov.zm Zambejis Vaļdeišona] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Zambeja| ]] + 9owvnkwmacvok80f9s5ym22ysd39kg2 + + + + Tanzaneja + 0 + 1755 + + 28676 + 27697 + 2013-03-08T02:07:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 188 interwiki links, now provided by [[d:|Wikidata]] on [[d:q924]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Tanzanejis Saškiertuo Republika'''<br />'''United Republic of Tanzania'''<br />'''Jamhuri ya Muungano wa Tanzania'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Tanzania.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Tanzania.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Tanzania (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || Dodoma +|- +|| Vaļstiskuo volūda || [[svahili volūda]] (de facto), [[anglīšu volūda]] +|- +| | Ministru prezidents || Mizengo Pinda +|- +|| Pluots || 945 203 km² +|- +|| Dzeivuotuoju skaits || 43 739 000 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +3) +|} + + +'''Tanzaneja''' ([[Anglīšu volūda|anglīšu]]: ''Tanzania'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Antananarivo]]. Tanzanejis 945 203 km² pluotā dzeivoj vaira kai 43 milijoni dzeivuotuoju, i ite 31-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Svahili volūda]] +* [[Anglīšu volūda]] + + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.tanzania.go.tz/ Tanzanejis Vaļdeišona] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Tanzaneja| ]] + 6jjdnce384kbge9c5zbd7sczw3gd2yz + + + + Konga Demokratiskuo Republika + 0 + 1756 + + 29042 + 28677 + 2013-03-09T19:13:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q974]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Konga Demokratiskuo Republika'''<br />'''République démocratique du Congo''' </big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of the Democratic Republic of the Congo.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of the Democratic Republic of the Congo.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Democratic Republic of the Congo (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || Kinšasa +|- +|| Vaļstiskuo volūda || [[Praņcīšu volūda]] +|- +| | Ministru prezidents || Mizengo Pinda +|- +|| Pluots || 2 345 409 km² +|- +|| Dzeivuotuoju skaits || 71 712 867 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1 - +2) +|} + + +'''Konga Demokratiskuo Republika''' ({{vol-fr|République démocratique du Congo}}, [[Kituba volūda|kituba]]: ''Repubilika ya Kongo Demokratik'', [[Svahili volūda|svahili]]:'' Jamhuri ya Kidemokrasia ya Kongo'', [[Ligala volūda|lingala]]: '' Republiki ya Kongó Demokratiki'', [[Tshiluba volūda|tshiluba]]: ''Ditunga día Kongu wa Mungalaata'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Kinšasa]]. Puolejis 2 345 409 km² pluotā dzeivoj vaira kai 71.7 milijoni dzeivuotuoju, i ite 11-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Praņcīšu volūda]] +* [[Kituba volūda]] +* [[Kikongo volūda]] +* [[Svahili volūda]] +* [[Tshiluba volūda]] + + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.cia.gov/library/publications/world-leaders-1/world-leaders-c/congo-democratic-republic-of-the.html Konga Demokratiskuo Republikys Vaļdeišona] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Konga Demokratiskuo Republika| ]] + pdnodjiyo5wte6nstckp3r1q8qpw1oi + + + + Malaveja + 0 + 1758 + + 31844 + 31797 + 2016-12-09T09:38:52Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31797 dated 2016-12-09 09:00:38 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Malavejis Republika'''<br />'''Republic of Malawi'''<br />'''Chalo cha Malawi'''<br />'''Dziko la Malaŵi'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Malawi.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of arms of Malawi.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:Malawi (orthographic projection).svg|300px]] +|- +|| Golvysmīsts || Lilongve +|- +|| Vaļstiskuo volūda || [[Anglīšu volūda|anglīšu volūda]], [[Čičeva volūda|čičeva volūda]] +|- +| | Prezidents || Peter Mutarika +|- +|| Pluots || 118 484 km² +|- +|| Dzeivuotuoju skaits || 14 901 000 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +2) <br />(UTC +2) +|} + + +'''Malaveja''' ([[Anglīšu volūda|anglīšu]]:''Malawi'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Kinšasa]]. Malavejis 2 345 409 km² pluotā dzeivoj vaira kai 14.9 milijoni dzeivuotuoju, i ite 99-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Anglīšu volūda]] +* [[Čičeva volūda]] + + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://www.malawi.gov.mw/ Malavejis Vaļdeišona] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Malaveja| ]] + c1v47uiy7kx4c9vc30gk0rfain5eif8 + + + + Mariņdzis piļs + 0 + 1760 + + 31375 + 22224 + 2016-03-28T11:18:06Z + + 91.9.119.68 + + Marinzejas pils 2000-10-14.jpg + wikitext + text/x-wiki + [[Fails:Marinzejas pils 2000-10-14.jpg|thumb|250px|Mariņdzis muižys piļs prīškys fasads]] +'''Mariņdzis''' aba '''Marinzejis muižys piļs''' pastateita nu 1845 da 1847 godam klasicizma arhitekturā. Vaļsteibys zeimeibys arhitekturys pīminieklis irā [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Atašinis pogosts|Atašinis pogostā]]. Muiža bejs vīns nu daudzeju fon der Borhu sovumu [[Latgola|Latgolā]]. Muižys centra pīstateiba sataiseita ap regularu prīškys pogolmu. Nu ībraucamuo ceļa pusis pogolmu apjieme akmiņu sātmaļs, a tuoļuok beja muižys kliete, staļs i ūtrā pogolma golā piļs. Tān pilī dora Atašinis pogosta Bruoļu Skryndu vydsškola. + +==Viesture== +Mikaels fon der Borhs, zininīks, kolekcionars i literats, beja Varakļuonu muižys sovinīks. Sovim dālim jis atstuoja puormaņtīņus - vīnam Varakļuonu muižu, ūtram Borkovys, a trešam Juzefam fon der Borham Mariņdzis muižu. Mariņdzis grafs apsaženieja lelciļteigu damu Emu Holinsku, Aleksandra Puškina radineicu.<ref>http://www.latvia.travel/lv/marinzejas-muizas-ansamblis Mariņdzis muižys ansamblis, latvia.travel (''latvyskai'')</ref> +19 godu symta pilij stateibā izlītuoti i vītejī sorkonī cegli, i nu [[Suomeja|Suomejis]] atvasts granits. Piļs pudameņte stateita šulim nu Teiču pūra Buorboļu pussolys ūzulim. Pilī izaglobuojuši senejī cepli i pa doļai interjera apskaiste. Pilij vyds doļā bejs vierīņtūrneits aba beļveders, tok Ūtruo pasauļa vaidu godūs sagrauduots i vaira naatjaunynuots.<ref>http://www.pilis.lv/a_pnm/view.php?id=24&prop_id=211 Mariņdzis muiža, Latvejis piļu i muižu asociaceja (''latvyskai'')</ref> Deļ Latvejis zemis reformys pili puorjieme nu grafim i nu 1924 gods pilī dora škola. + +==Muižys suods== +Tymā pošā laikā, kod stateja pili, Mariņdzis azarmalē suoce radeit i muižys suodu. Anglīšu i praņcīšu jaukta stiļa parkā sādynuoti nu [[Vuoceja|Vuocejis]] atvasti kūki. Suodā daudzi ratu kūku škiru. Tuoļuok parks aizīt mežaparkā. Izaglobuojuši i puors muižys saimisteibys kuormi. 2 kilometru garumā nu Atašinis da muižai vad kūku aleja. Senejais suods i azars sataisa breineigu apleicīnis vierīni. Car suodu tak Osoru upe. + +2008 gods sīna mieneša 14 dīnā<ref>http://www.meteo.lv/public/29697.html Meteorologiskais laiks Latvejā 2008 gods sīna mienesī (''latvyskai'')</ref> Latgolys vokoru doļā - [[Leivuona nūvods|Leivuona]] i [[Krystapiļs nūvods|Krystapiļs nūvodā]] - graudova vārputvīsyuls . Tys iznycynova lelu doļu Mariņdzis muižys suoda, izguozdams vaira kai 150 godus vacus kūkus ar vysom saknem.<ref>http://www.nra.lv/articles/print.htm?id=4555 Vārputvīsyula gubejumi sataisa lelu škodi zemdarim, nra.lv (''latvyskai'')</ref> + +==Nūruodis i olūti== +{{Nūruodis}} + +[[Kategoreja:Latgolys piļs i muižys]] + l4ej3vdne3u1uyh37hc0cbhvg1m6rov + + + + Namibeja + 0 + 1762 + + 30112 + 28679 + 2013-10-02T12:26:50Z + + Rotlink + 2099 + + + fixed ref + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Namibejis Republika'''<br />'''Republic of Namibia'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Namibia.svg |150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Namibia.svg |150px]] +|} +|- +| align=center colspan=2 | [[Fails:Location Namibia AU Africa.svg |300px]] +|- +|| Golvysmīsts || Windhoek +|- +|| Vaļstiskuo volūda || [[anglīšu volūda]] +|- +| | Prezidents || Bingu wa Mutharika +|- +|| Pluots || 825 418 km² +|- +|| Dzeivuotuoju skaits || 2 108 665 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +1) <br />(UTC +2) +|} + + +'''Namibeja''' ([[Anglīšu volūda|anglīšu]] i [[Vuocīšu volūda|vuocīšu]]: ''Namibia'', [[Afrikandu volūda|afrikandu]]: ''Namibië'') - vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Windhoek]]. Namibejis 825 418 km² pluotā dzeivoj vaira kai 2 milijoni dzeivuotuoju, i ite 34-tuo pa lelumam vaļsteiba pasaulī. + +== Viesture == +== Politika == +== Geografeja == +== Demografeja == +=== Etniskais sadors === +=== Volūdys === + +* [[Anglīšu volūdu]] +* [[Afrikandu volūda]] +* [[Damara/Nama volūda]] +* [[Setswana volūda]] +* [[Rukwangali volūda]] +* [[Silozi volūda]] +* [[Herero volūda]] +* [[Oshiwambo volūda]] +* [[Vuocīšu volūda]] + +=== Religeja === +== Verīs taipoš == +== Teiklavītys == +* [http://archive.is/20121203072358/http://www.grnnet.gov.na/ Namibejis Vaļdeišona] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Namibeja| ]] + e6cl91rq77ep9211w1fmkrzgfhblny7 + + + + Burundi + 0 + 1763 + + 31910 + 30719 + 2017-02-25T06:09:45Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Burundu Republika'''<br />'''République du Burundi'''</big></big> +|- +|style="background:#efefef;" align="center" colspan=2| +{| border="0" cellpadding="2" cellspacing="0" +|- +|align="center" width="140px"| [[Fails:Flag of Burundi.svg|150px|border]] +|align="center" width="140px"| [[Fails:Coat of arms of Burundi.svg|100px]] +|} +|- +|align=center colspan=2| [[Fails:Location Burundi AU Africa.svg|300px]] +|- +|Golvysmīsts +|Bujumbura +|- +|Vaļstiskuo volūda +|[[kirundi volūda]], [[praņcīšu volūda]] +|- +|Prezidents +|''Bingu wa Mutharika'' +|- +|Pluots +|27 834 km² +|- +|Dzeivuotuoju skaits +|8 038 618 +|- +|[[Laika zona]] +|EET (UTC +2) +|} + +'''Burundi''' ([[Kirundi volūda|kirundi]]: ''Republika y'u Burundi'', {{vol-fr|République du Burundi}}) — vaļsteiba [[Afrika|Afrikā]]. Golvysmīsts — [[Bujumbura]]. Burundu 27 834 km² pluotā dzeivoj vaira kai 8 milijoni dzeivuotuoju, i ite 145-tuo pa lelumam vaļsteiba pasaulī. + +== Teiklavītys == +* [http://www.burundi-gov.bi/ Burundu Vaļdeišona] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Burundi| ]] + bqkcmcbfkflav3jumskg6weim4z6ieu + + + + Pavasara mieness + 0 + 1771 + + 28681 + 28050 + 2013-03-08T02:31:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 202 interwiki links, now provided by [[d:|Wikidata]] on [[d:q110]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Pavasara (marta) mieness''' — trešais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim i vīns nu septenim mienešim, kurā irā 31 [[dīna]]. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Pavasara mieness| ]] +[[Kategoreja:Gregora kaleņders]] + q7m2e1i99gkoh05lqhnbvzyb8lj7gv5 + + + + Kategoreja:Pavasara mieness + 14 + 1772 + + 28682 + 28079 + 2013-03-08T02:31:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 100 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6488636]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|March|Pavasara mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 03]] +[[Kategoreja:Datys| 03]] + 5r61wxzfj6sntvyi4l8x4ai9hh7tapl + + + + Sulu mieness + 0 + 1773 + + 28683 + 27618 + 2013-03-08T02:31:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 203 interwiki links, now provided by [[d:|Wikidata]] on [[d:q118]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Sulu (areļa) mieness''' — catūrtais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim i vīns nu četrim mienešim, kurā irā 30 [[dīna]]s. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Sulu mieness| ]] +[[Kategoreja:Gregora kaleņders]] + l1m5u693i4x965s1azy6psfoefix9yz + + + + Kategoreja:Sulu mieness + 14 + 1774 + + 28951 + 28065 + 2013-03-08T15:03:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 99 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6504311]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|April|Sulu mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 04]] +[[Kategoreja:Datys| 04]] + 44snd4y4zaj6415h42eu0q450c1re39 + + + + Lopu mieness + 0 + 1775 + + 28684 + 27635 + 2013-03-08T02:31:44Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 205 interwiki links, now provided by [[d:|Wikidata]] on [[d:q119]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Lopu (maja) mieness''' — pīktais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim i vīns nu septenim mienešim, kurā irā 31 [[dīna]]. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Lopu mieness| ]] +[[Kategoreja:Gregora kaleņders]] + dwzm1wj8e3zm8ml45lbecpfbx4wpv6o + + + + Kategoreja:Lopu mieness + 14 + 1776 + + 29683 + 17153 + 2013-04-13T04:43:40Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6493782]] + wikitext + text/x-wiki + {{Commonscat|May|Lopu mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 05]] +[[Kategoreja:Datys| 05]] + 1iwk721y556uflvuud532623p8v872i + + + + Vosorys mieness + 0 + 1777 + + 28685 + 27628 + 2013-03-08T02:31:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 201 interwiki links, now provided by [[d:|Wikidata]] on [[d:q120]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Vosorys (juņa) mieness''' — sastais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderimi vīns nu četrim mienešim, kurā irā 30 [[dīna]]s. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Vosorys mieness| ]] +[[Kategoreja:Gregora kaleņders]] + 4m67aokvm91mpufowjpgfouir75r3of + + + + Kategoreja:Vosorys mieness + 14 + 1778 + + 29740 + 17155 + 2013-04-13T04:54:00Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q5460847]] + wikitext + text/x-wiki + {{Commonscat|June|Vosorys mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 06]] +[[Kategoreja:Datys| 06]] + gaf6lnaoic5ftebns6c9fl5p8xe8gp6 + + + + Sīna mieness + 0 + 1779 + + 28686 + 27629 + 2013-03-08T02:32:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 203 interwiki links, now provided by [[d:|Wikidata]] on [[d:q121]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Sīna (juļa) mieness''' — septeitais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim i vīns nu septenim mienešim, kurā irā 31 [[dīna]]. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Sīna mieness| ]] +[[Kategoreja:Gregora kaleņders]] + pjtg1rot6dy2gzohe4ats58wq5y2ez7 + + + + Kategoreja:Sīna mieness + 14 + 1780 + + 29693 + 17157 + 2013-04-13T04:48:35Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q5460716]] + wikitext + text/x-wiki + {{Commonscat|July|Sīna mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 07]] +[[Kategoreja:Datys| 07]] + th5n45ot33qck4bz53rd8zyofk281jy + + + + Labeibys mieness + 0 + 1781 + + 29311 + 28687 + 2013-03-11T11:01:35Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q122]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Labeibys (augusta) mieness''' — ostoitais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim, kai arī vīns nu četrim mienešim, kurā irā 30 [[dīna]]s. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Labeibys mieness| ]] +[[Kategoreja:Gregora kaleņders]] + 606a5xdgw6b9j1nhinff1cd1k87c8pv + + + + Kategoreja:Labeibys mieness + 14 + 1782 + + 29680 + 17159 + 2013-04-13T04:43:15Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6493758]] + wikitext + text/x-wiki + {{Commonscat|August|Labeibys mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 08]] +[[Kategoreja:Datys| 08]] + e58dgzfo81gt28cnc92ddrx3hcdv2b8 + + + + Rudiņa mieness + 0 + 1783 + + 29047 + 28688 + 2013-03-09T21:01:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q123]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Rudiņa (seņtebra) mieness''' — deveitais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim, kai arī vīns nu četrim mienešim, kurā irā 30 [[dīna]]s. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Rudiņa mieness| ]] +[[Kategoreja:Gregora kaleņders]] + 1pbi1fzsx5067r3wky7inauj4ru5k6r + + + + Leita mieness + 0 + 1784 + + 29312 + 28689 + 2013-03-11T11:01:38Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q124]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Leita (oktebra) mieness''' — dasmytais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim, kai arī vīns nu septenim mienešim, kurā irā 31 [[dīna]]. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Leita mieness| ]] +[[Kategoreja:Gregora kaleņders]] + isqs95g8j9jqwoa50dmtekdnq7kp2g2 + + + + Solnys mieness + 0 + 1785 + + 28690 + 27637 + 2013-03-08T02:33:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 201 interwiki links, now provided by [[d:|Wikidata]] on [[d:q125]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Solnys (nojabra) mieness''' — vīnpadsmytais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim, kai arī vīns nu septenim mienešim, kurā irā 30 [[dīna]]s. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Solnys mieness| ]] +[[Kategoreja:Gregora kaleņders]] + a2oudo3fvumdfaa5u46vg2ry7cm654y + + + + Kategoreja:Solnys mieness + 14 + 1786 + + 29690 + 17163 + 2013-04-13T04:48:21Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6469033]] + wikitext + text/x-wiki + {{Commonscat|November|Solnys mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 11]] +[[Kategoreja:Datys| 11]] + bakiiku0ppqujeotlt3hkkj328wap78 + + + + Kategoreja:Leita mieness + 14 + 1787 + + 29682 + 17164 + 2013-04-13T04:43:30Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6490066]] + wikitext + text/x-wiki + {{Commonscat|October|Leita mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 10]] +[[Kategoreja:Datys| 10]] + 2pu3u70d38jwraurox3fc9gi80p2yyr + + + + Kategoreja:Lopu mieneša 7 dīna + 14 + 1788 + + 29542 + 25969 + 2013-04-03T16:17:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9412304]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|7 May|Lopu mieneša 7 dīna}} + +[[Kategoreja:Lopu mieness| 7]] + 12jks8jzd787ghfe6a1ss7ur0na5swv + + + + Svacainis mieness + 0 + 1789 + + 28691 + 27640 + 2013-03-08T02:33:27Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 207 interwiki links, now provided by [[d:|Wikidata]] on [[d:q109]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Svacainis (pebreļa) mieness''' — ūtrais [[gods|goda]] [[mieness]] pa [[Juleja kaleņders|Juleja]] i [[Gregora kaleņders|Gregora]] kaleņderim. + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Svacainis mieness| ]] +[[Kategoreja:Gregora kaleņders]] + q7y5h37m0b9hzwg2zm3hxlwr45m1bnb + + + + Kategoreja:Svacainis mieness + 14 + 1790 + + 28952 + 28692 + 2013-03-08T15:03:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5606800]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|February|Svacainis mieness}} +{{catmore}} + +[[Kategoreja:Mieneši| 02]] +[[Kategoreja:Datys| 02]] + qhbod59txnb04on8wesuaixuqfpi8vg + + + + Anglīšu volūda + 0 + 1791 + + 31244 + 30667 + 2015-12-05T16:58:21Z + + Horst-schlaemma + 3247 + + wikitext + text/x-wiki + {{Infoskreine Volūda +|name= Anglīšu volūda<br />''English'' +|familycolor=Indoeuropīšu +|pronunciation=/ˈɪŋɡlɪʃ/<ref>[http://www.oxfordadvancedlearnersdictionary.com/dictionary/english_2 English Adjective] – Oxford Advanced Learner's Dictionary – Oxford University Press</ref> +|region= +|speakers=~500 milj.-1,8 milijardi<ref>[http://classic-web.archive.org/web/20070401233529/http://www.ehistling-pub.meotod.de/01_lec06.php Lecture 7: World-Wide English]</ref><ref>[http://www.ethnologue.com/show_language.asp?code=eng Ethnologue] (1999 estimate)</ref> +|iso1=en |iso2=eng |iso3=eng |lingua=52-ABA +}} +[[File:EN English Language Symbol ISO 639-1 IETF Language Tag Icon.svg|thumb|upright|EN ([[ISO 639]]-1)]] +'''Anglīšu volūda''' irā vīna nu [[indoeuropīšu volūdu saime|indoeuropīšu saimis]] volūdu. + +== Nūruodis i olūti == +{{nūruodis}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Anglīšu volūda| ]] +[[Kategoreja:Volūdys]] + 4brhadqsg8cdqrcfkub7t5ykdb9nby0 + + + + Baraks Obama + 0 + 1792 + + 31197 + 31194 + 2015-11-14T03:43:08Z + + 122.90.82.109 + + Atcēlu [[Special:Contributions/Sports4Everything|Sports4Everything]] ([[User talk:Sports4Everything|Diskusija]]) izdarīto izmaiņu 31194 + wikitext + text/x-wiki + {{Infoskreine +|bodystyle = width:20em; +|name = +|title = <big>'''Baraks Obama'''</big> +|titlestyle = +|headerstyle = +|labelstyle = width:33% +|datastyle = + +|image = [[Fails:Official portrait of Barack Obama.jpg|220px]] +|caption = Baraks Obama + +|header1 = ASV Prezidents + +|header2 = 2009 — niule +|label2 = +|data2 = +|header3 = +|label3 = Prīškaudzs +|data3 = [[Džordžs V. Bušs]] +}} +'''Baraks Obama''' ({{Vol-en|Barack Hussein Obama II}}; [[1961]]) — politiks, 44. [[Amerikys Saškierstuos Vaļsteibys|Amerikys Saškierstū Vaļsteibu]] prezidents. + +== Teiklavītys == +{{Commonscat|Barack Obama|Baraks Obama}} +* [http://www.whitehouse.gov/administration/president_obama/ Teiklavīta] <small>(anglīšu)</small> + +{{Nadabeigts rakstīņs}} + +{{DEFAULTSORT:Obama, Baraks}} +[[Kategoreja:ASV ļauds]] +[[Kategoreja:Politiki]] + tfsg1ww5gloc5xa8ox9vzpkdosascff + + + + Obama + 0 + 1793 + + + 17171 + 2011-09-20T16:11:08Z + + Edgars2007 + 114 + + Pāradresē uz [[Baraks Obama]] + wikitext + text/x-wiki + #REDIRECT [[Baraks Obama]] + n3a4be57youmfa8ffcebm05hg679ip2 + + + + Barack Obama + 0 + 1794 + + + 17172 + 2011-09-20T16:11:23Z + + Edgars2007 + 114 + + Pāradresē uz [[Baraks Obama]] + wikitext + text/x-wiki + #REDIRECT [[Baraks Obama]] + n3a4be57youmfa8ffcebm05hg679ip2 + + + + Berlins + 0 + 1795 + + 30633 + 28695 + 2015-03-23T18:05:37Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Berlins +| atvaiga_pasauka = Assemblage Berlin.jpg +| atvaiga_aprakstejums = +| gerba_atvaigs = Coat of arms of Berlin.svg +| gerba_pasauka = Berlins gerbs +| pluots = 891,85 km² +| dzeivuotuoji_gods = 2011 +| dzeivuotuoju_skaits = 3 471 756 +| bīzeiba = 3892,8 +| teiklavīta = [http://www.berlin.de/international/index.en.php berlin.de] +}} +'''Berlins''' ({{vol-de|Berlin}}) — [[Vuoceja|Vuocejis]] golvysmīsts i pats leluokais mīsts. Mīsta mers irā Klauss Vovereits (''Klaus Wowereit''). + +{{Commonscat|Berlin|Berlins}} +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Vuoceja]] +[[Kategoreja:Golvysmīsti]] + ds6dhg8oxk5uvfvneoehs4gk5tcgujy + + + + Kategoreja:Vuoceja + 14 + 1796 + + 31601 + 28696 + 2016-10-31T00:08:17Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q1410828]] + wikitext + text/x-wiki + {{commonscat|Germany|Vuoceja}} +{{catmain}} + +[[Kategoreja:Pasauļa vaļsteibys]] + h8q82pmad52oa4t2jdq2fmurz5wqvr2 + + + + Berlin + 0 + 1797 + + + 17178 + 2011-09-20T16:26:08Z + + Edgars2007 + 114 + + Pāradresē uz [[Berlins]] + wikitext + text/x-wiki + #redirect [[Berlins]] + qm5t31jwtixvx9d11zsm7880o78ru43 + + + + Australeja + 0 + 1798 + + 31545 + 30669 + 2016-08-07T12:53:19Z + + DARIO SEVERI + 3389 + + Update inf. from Wiki (en) + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Australejis Sadraudzeiba'''<br />'''Commonwealth of Australia'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag of Australia.svg|150px|border]] +| align="center" width="140px" | [[Fails:Coat of Arms of Australia.svg|150px]] +|} +|- +| align=center colspan=2 | [[Fails:AUS orthographic.svg|300px]] +|- +|| Golvysmīsts || +|- +|| Vaļsteibys volūda || [[anglīšu volūda]] (''de facto'') +|- +|| Pluots || 7 617 930 km² +|- +|| Dzeivuotuoju skaits || 24 164 600 (2016) +|- +|| [[Laika zona]]<br />-vosorā || +|} + +'''Australejis Sadraudzeiba''', '''Australeja''' ({{vol-en|Commonwealth of Australia}}, ''Australia'') — vaļsteiba Zemis [[Dīnavydu puslūde|dīnavydu puslūdē]]. Australejis 7 617 930 km² pluotā dzeivoj vaira kai 24 milijoni dzeivuotuoju. Jei irā 6-tuo pa lelumam vaļsteiba pasaulī. + +== Teiklavītys == +* [http://www.gov.au/ Australejis vaļdeiba] + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Australeja| ]] + cspixxkq4jjf8agatwsygoecrj7gx08 + + + + Australia + 0 + 1799 + + + 17182 + 2011-09-20T16:42:01Z + + Edgars2007 + 114 + + Pāradresē uz [[Australeja]] + wikitext + text/x-wiki + #redirect [[Australeja]] + hex9u53h3k73emomd5b4xao6wkiecuz + + + + Taiss:Infobox/row + 10 + 1801 + + + 17188 + 2011-09-20T17:04:07Z + + Edgars2007 + 114 + + "[[Taiss:Infobox/row]]" puorsauču par "[[Taiss:Infoskreine/row]]" + wikitext + text/x-wiki + #REDIRECT [[Taiss:Infoskreine/row]] + le3i4ewcgwyy40rqobf9n95bg56v3a2 + + + + Siejamais lyns + 0 + 1804 + + 28698 + 27997 + 2013-03-08T02:34:46Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 66 interwiki links, now provided by [[d:|Wikidata]] on [[d:q45108]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Koeh-088.jpg|thumb|200px|Siejamais lyns]] +'''Siejamais lyns''' (''Linum usitatissimum L.'') liniņu (''Linaceae'') saimis lynu (''Linum'') giņts [[auguoji|auguojs]]. Vīngadeigs zuoluoju auguojs, 50-120 cm augstumā. Arheologiskajūs izkasumūs dazynuots, ka siejamais lyns bejs vīna nu pošu pyrmū cylvāka kuļtivietū solsaimisteibys kulturu. Lyns jau kuļtiviets vaira kai 5000 godu pyrma Krystus pīdzimšonys Tyvajūs Reitūs, Egiptā i Kinejā<ref>Vroman J. (2006) Molecular genetic studies in flax (Linum usitatissimum L.). PhD thesis, Wageningen University, The Netherlands. p. 144 </ref>. + +==Aprakstejums== +Siejamūs lynus nu tū lītuošonys padola div tipūs – oleja lyni i škīznys lyni. '''Škīznys lynu''' kuots 75-135 cm augstumā, tīvs, cilinddryskys, zarains tik augstīnē. Sieklineicys dūbu sataisa mozuok kai oleja lyni, taipoš sāklys mozuokys. Sakņu sistema mītsakne ar vuoji izraisteitom suonu saknem. +'''Oleja lyni''' eisuoki, rasnuoku i cīši zarainu kuotu jau nu zamoškys. Cīši daudzi zīdu. Oleja lynu sakņu sistema zaraina. +Lopys obadiveju tipu lynim puormeiš. Siedūšys, laņcetiskys, ar leidzonu mali i trejom dzeislom. Lopa 2-3 cm gara, 0,4-3,0 cm plota<ref>[http://www.latvijasdaba.lv/augi/linum-usitatissimum-l/ Latvijasdaba.lv] </ref>. + +==Zīdi== +Lynu zīdi irā nu vysaižu zylu pakruosu da liļovu ci boltu. Cytuos vaļsteibuos irā net dzaltonom krūņlopom. Zīdi vācakleņā ci skrajeniskā saliktā čačē. Divkuortu zīdi ar pīcom krūņlopom, kauslopom, putekšņlopom i augļlopom. Zīd [[Vosorys mieness|vosorys]] i [[Sīna mieness|sīna mienesī]] <ref>[http://www.latvijasdaba.lv/augi/linum-usitatissimum-l/ Latvijasdaba.lv] </ref>. Skiadrā, syltā dīnā saplaukst agrai nu reita i ap desmitim nu reita krūnlopys jau nūbierst. Vāsā i volgonā laikā zīd da dīnavydam. Kod lynu zīdi prozīd, beidzuos i lynu kuota augšona garumā<ref>Ivanovs S., Stramkale V. (2001) Lynu audziešonys i nūjimšonys tehnologejis (''latvyskai''). lpp. 18. – 20 </ref>. + +==Sāklys== +Sāklys ploskonys, ūlveida. Viersa speidona i leidzona. Kruosa parostai tymsai bryuna, rešuok dzaltona ci cytuos pakruosuos. Sāklys 0,6-0,8 cm garuos ūlveioda pūgaļuos. Pūgaļai irā pīci sieklineicys dūbi, sevkuru dūbu škārsīna padola div daļuos, partū kod nakod soka, ka pūgaļai irā 10 sieklineicys dūbu. Sevkurā daļā pa vīnai sāklai, sāklys gotovys [[Labeibys mieness|labeibys]] i [[Rudiņa mieness|rudiņa]] mienesī. Lynu sāklys podtur 33-40% (kod nakod i 46-48%) oleja. + +<center> +<gallery> +File:Linum usitatissimum (OliBac).jpg|Lynu zīdi +File: Linum usitatissimum seed capsules, vlaszaaddozen.jpg|Lynu pūgaļys +File: Flax seeds.jpg|Lynu sāklys +</gallery> +</center> + +==Lynu lītuojums== +===Lynu škīzna=== +Lynu šķiznu padola garā i eisā škīznā. Garū šķīznu lītoj škīznu industrejā – audaklu, fiļtru, viervu, maisu, apavis, dīgu, špaleru, oboru i buru pīgatavē. Eisū šķīznu lītoj stateibmaterialu iņdustrejā – skaidu pluotu, guņsdrūšu durovu, škīznys cymenta pluotu, sausys vapnys, šykaturkys, dūbū cegļu i cytu materialu pīgatavē. Taipoš lynu škīznu lītoj kai jumta saguma i skonu izolacejis materialu<ref>Znuotiņa Dz. (2006) Atjaunynuotuos škīznys i lyni – ceļā iz škīznys industrejis inovativū raisteibu Latvejā. Reiga, 9.-28. lpp (''latvyskai'')</ref>. + +===Lynu olejs=== +Lynu oleju lītoj i medicinā, i iedīņūs, i kruosu, laku, kitu pīgatavē. Taipoš papeira i ceratys pīgatavē vajag lynu oleja. Olejs irā lels taukskuobu olūts. Saimisteibā lynu oleju lītoj laka, kruosys i muoksleiguos uodys pīgatavē, taipoš i apavis, papeira, linoleja i cytuos industrejuos<ref> Latvijas Republikas Zemkopības Ministrija (2008) Latvijas lauksaimniecība un lauki. Latvijas Republikas Zemkopības ministrija. 79.-81. lpp </ref> <ref>[http://www.flaxcouncil.ca/english/index.jsp?p=home Flaxcouncil.ca] </ref>. +Linolejs irā vīns nu pošu senejū lynu oleja lītuojuma pajiemīņu. Tū gatavej nu lyna oleja svečim, smolkai samolta styra, kūknys i pigmenta maisejuma. Linoleju kai greidys sagumu vysaižuos ustobuos lītoj jau vaira kai 100 godu. + +==Lynu kultura Latgolā== +Jau nu senejim laikim [[Latgola|Latgolā]] ļauds aizajieme ar lynu audziešonu i taišni Latgola beja golvonais lynu saimisteibys regions [[Latveja|Latvejā]] <ref>Ivanovs S., Stramkale V. (2001) Lynu audziešonys i nūjimšonys tehnologejis (''latvyskai''). lpp. 18. – 20 </ref>. Myusu dīnuos lynu saimisteiba cīši sasamazynuojuse. Tān vīneiguo vīta Latgolā i vysā Latvejā, kur aizajim ar lynu selekceju, irā Latgolys solsaimisteibys zineibu centrys. Lynu puordaris fabriki dora Kruoslovā, Ludzā, Preiļūs, Rēznī i Vilekī. Pošu lelī lynuoji myuslaikūs aug Kruoslovys apleicīnī. + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commonscat|Linum usitatissimum|Siejamais lyns}} + +{{DEFAULTSORT:Lyni}} + +[[Kategoreja:Auguoji]] + go1nrt0bmvsbj3tvk1eu0rzc1rc2543 + + + + Taiss:Infoskreine Taksonomeja + 10 + 1805 + + 17844 + 17448 + 2011-10-15T18:02:24Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + <includeonly>{| class="infobox" style="width: 270px; font-size: 90%; margin: 2px; margin-left: 1em; text-align: left;" +|- class="fn org" +! style="text-align:center; background:#DDADAF;font-size:110%;" colspan="2"| {{{pasauka}}} +|- +<!-- ****** Dzeivinīka atvaigs ****** --> +{{#if:{{{atvaiga_pasauka|}}}| +{{!}} style="border-top:1px solid #999966; font-size:95%; text-align:center;" colspan="2"; colspan="2" {{!}} [[File:{{{atvaiga_pasauka}}}| {{ #if: {{{atvaiga_mārs|}}} |{{{atvaiga_mārs}}} | 250px |border}}]]<br />{{{atvaiga_aprakstejums|}}} +{{!}}- +}} +|- class="fn org" +! style="text-align:center; background:#DDADAF;font-size:110%;" colspan="2"| Ziniskuo klasifikaceja +|- +{{#if:{{{pasauļs|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#FADADD;" {{!}} '''Pasauļs''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{pasauļs}}} +{{!}}- +}} +|- +{{#if: {{{tips|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#FADADD;" {{!}} '''Tips''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{tips}}} +}} +|- +{{#if: {{{klase|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#FADADD;" {{!}} '''Klase''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{klase}}} +}} +|- +{{#if: {{{aiļa|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#FADADD;" {{!}} '''Aiļa''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{aiļa}}} +}} +|- +{{#if: {{{saime|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#FADADD;" {{!}} '''Saime''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{saime}}} +}} +|- +{{#if: {{{giņts|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#FADADD;" {{!}} '''Giņts''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{giņts}}} +}} +|- +{{#if: {{{škira|}}}| +{{!}} class="note" style="border-top:2px solid #FFFAF0; border-right:2px solid #FFFAF0; background:#FADADD;" {{!}} '''Škira''' +{{!}} style="border-top:2px solid #FFFAF0;" {{!}} {{{škira}}} +}} +|- class="fn org" +! style="text-align:center; background:#DDADAF;font-size:110%;" colspan="2"| Ziniskuo pasauka +|- class="fn org" +! style="text-align:center; font-size:110%;" colspan="2"| {{{ziniskuo_pasauka}}} +|- class="fn org" +! style="text-align:center; background:#DDADAF;font-size:110%;" colspan="2"| Paplateiba +|- +<!-- ****** Paplateibys zemislopa ****** --> +{{#if:{{{zemislopys_atvaigs|}}}| +{{!}} style="border-top:1px solid #999966; font-size:95%; text-align:center;" colspan="2"; colspan="2" {{!}} [[File:{{{zemislopys_atvaigs}}}| {{ #if: {{{atvaiga_mārs|}}} |{{{atvaiga_mārs}}} | 250px |border}}]]<br />{{{zemislopys_aprakstejums|}}} +}} +|- +|}</includeonly><noinclude>{{doc}}</noinclude> + k3it4dct4s4l3xxamg3q4nm7rg0gj7w + + + + Taiss:Infoskreine Taksonomeja/doc + 10 + 1806 + + 30385 + 17845 + 2014-06-21T18:09:38Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Palākais vylks +| atvaiga_pasauka = Canis lupus laying.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Zeideituoji ''(Mammalia)'' +| aiļa = Pliesieji ''(Carnivora)'' +| saime = Suņu ''(Canidae)'' +| giņts = Suni ''(Canis)'' +| škira = Palākais vylks ''(Canis lupus)'' +| ziniskuo_pasauka = Canis lupus +| zemislopys_atvaigs = Gray Wolf Range.png +| zemislopys_aprakstejums = Palākuo vylka paplateiba pasaulī +}} +<pre> +{{Infoskreine Taksonomeja +| pasauka = palākais vylks +| atvaiga_pasauka = Canis lupus laying.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Zeideituoji ''(Mammalia)'' +| aiļa = Pliesieji ''(Carnivora)'' +| saime = Suņu ''(Canidae)'' +| giņts = Suni ''(Canis)'' +| škira = Palākais vylks ''(Canis lupus)'' +| ziniskuo_pasauka = Canis lupus +| zemislopys_atvaigs = Gray Wolf Range.png +| zemislopys_aprakstejums = Palākuo vylka paplateiba pasaulī +}} +</pre><includeonly> +[[Kategoreja:Infoskreinis|Taksonomeja]] +</includeonly> + i3boz9pefg0jt1mouk17yuav8jns6hd + + + + Rāznys nacionalais parks + 0 + 1809 + + 30123 + 29325 + 2013-10-15T18:08:13Z + + Rotlink + 2099 + + + fixing dead links + wikitext + text/x-wiki + [[Fails:Raznas ezers.JPG|thumb|250px|Rāznys nacionalais parks irā visapleik Rāznys azaram.]] +'''Rāznys nacionalais parks''' irā vaļsteibys sorgojama dobys teritoreja [[Latgola|Latgolā]]. Īstateits 2007 godā, pyrma bejs kai Rāznys dobys parks. Parka pluots 596,15 km²<ref>[http://razna.dau.lv/index.php?option=com_content&view=article&id=12&Itemid=10&lang=lv Rāznys nacionalais parks]</ref>. i tys irā ūtrys pa lelumam nacionalais parks [[Latveja|Latvejā]]. Parks irā [[Dagdys nūvods|Dagdys nūvoda]] Aņdzeļu pogostā, Bukmuižys pogostā, Ondrupinis pogostā, [[Ludzys nūvods|Ludzys nūvoda]] [[Rundānu pogosts|Rundānu pogostā]] i [[Rēznis nūvods|Rēznis nūvoda]] Dlužņovys pogostā, Kaunatys pogostā, Malnuo Dyužgola pogostā i Muokuļkolna pogostā<ref>[http://www.daba.gov.lv/public/lat/ipasi_aizsargajamas_dabas_teritorijas/nacionalie_parki/raznas_nacionalais_parks/ Raznas nacionalais parks, Latvejis sorgojamuos dobys teritorejis]</ref>. Parka administraceja [[Rēzne|Rēznē]]<ref>[http://archive.is/20120805181836/www.vzd.gov.lv/merniekiem-un-zemes-ierikotajiem/par-zemes-iericibu/?id=468 Vaļsteibys zemis dīnasts]</ref>. + +Parka golvonū zemisvierīni sataisa [[Latgolys augstaine|Latgolys augstainis]] centraluo daļa i [[Rāzna]]. Taipoš parkā nazcik mozuoku azaru, [[Kaupris|kaupru]], mežu i kulturviesturiskū pīminiekļu. Nu vysa parka pluota 16,27 % irā iudini. Parks sataiseits, kab izglobuotu dobys vierteibys i Latgolai soveigū kulturys vierīni. + +== Nūruodis i olūti == +{{nūruodis}} + +[[Kategoreja:Latgolys doba]] + gvqci2kz89ci6fqru3zbs5y5bpv122e + + + + Jezups Mots + 0 + 1819 + + 28700 + 23569 + 2013-03-08T02:35:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 13 interwiki links, now provided by [[d:|Wikidata]] on [[d:q559892]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{raksteibys klaidys}} +[[Fails:Giuseppe Motta.gif|right|200px|thumb|Jezups Mots.]] +'''Jezups Mots''' ({{vol-it|Giuseppe Motta}}; 1871 gods zīmys m. 29 d. — 1940 gods jaunagods m. 23 d.) beja zeimeigs [[Šveicareja|Šveicarejis]] vaļsteibys veirs. + +Jau nu 1911 goda jis dareja Šveicarejis vaļdeibā, kurā beja finansu ministrs, vāluok nu 1920 goda beja par uorlītu ministru. Jezups Mots pīcas reizis beja par Šveicarejis vaļsteibys prezidentu un pastuoveigi vadeja Šveicarejis delegaceju Naceju Ligā, kurā nazcik reižu beja ībolsuots par prīškinīku. + +{{nadabeigts rakstīņs}} +{{DEFAULTSORT:Mots, Jezups}} + +[[Kategoreja:Zeimeigi ļauds]] + icu87g5nxyunmk4mpdo4p30amf10s2j + + + + Giuseppe Motta + 0 + 1820 + + + 17695 + 2011-10-13T22:14:21Z + + Zemgalietis + 856 + + p + wikitext + text/x-wiki + #REDIRECT [[Jezups Mots]] + msh6294dgtr7g8y0spydror8z4do5zq + + + + Iņdeja + 0 + 1821 + + 31164 + 31163 + 2015-10-29T10:19:48Z + + 122.90.103.144 + + Atcēlu [[Special:Contributions/92.12.203.53|92.12.203.53]] ([[User talk:92.12.203.53|Diskusija]]) izdarīto izmaiņu 31163 + wikitext + text/x-wiki + {{raksteibys klaidys}} +{| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''Bhārat Gaṇarājya'''<br />'''Iņdejis Republika'''</big></big> +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[Fails:Flag_of_India.svg|150px|border]] +| align="center" width="140px" | [[Fails:Emblem_of_India.svg|100px]] +|} +|- +| align=center colspan=2 | [[Fails:India in its region (undisputed).svg|300px]] +|- +|| Golvysmīsts || [[Jaundeli]] +|- +|| Vaļstiskuo volūda || [[Hindu]] i [[Anglīšu volūda|Anglīšu]] +|- +| Prezidents || [[Pranab Mukherjee]] +|- +| Ministru prezidents || [[Narendra Modi]] +|- +|| Pluots || 3 287 263 km2 +|- +|| Dzeivuotuoju skaits || 1 210 193 422 +|- +|| [[Laika zona]]<br />-vosorā || EET (UTC +05:30),<br /> EEST (UTC +06:30) +|} + +'''Iņdejis Republika''' (''भारत गणराज्य'', ''{{Lang|inc-Latn|Bhārat Gaṇarājya}}'') — vaļsteiba [[Dīnavydazeja|Dīnavydazejā]]. Tei irā septeituo leluokuo vaļsteiba piec geografiskuo pluota, ūtruo leluokuo vaļsteiba piec dzeivuotuoju skaita, i vysapdzeivuotuokuo demokrateja pasauļā. Rūbežojās ar Iņdejis okeānu dīnavydūs, Arābejis jiuru dīnavydvokorūs, i Bengālejis Leici dīnavydreitūs, tur rūbežu ar [[Pakistāna|Pakistānu]] reitūs, [[Butāna|Butānu]], [[Kinys Tautys Republiku]] i [[Napāla|Napālu]] pūstumvokorūs, i [[Bangladeša|Bangladešu]] i [[Birma|Birmu]] reitūs. Iņdejis okeānā Iņdejis tyvumā atsarūn [[Šrilanka]] i [[Maļdivys]], pi tam [[Iņdejis Aņdamani i Nikobaru solys|Iņdejis Aņdamani i Nikobaru solom]] irā jiurys rūbeža ar [[Taizeme|Taizemi]] i [[Indonēzeja|Indonēzeju]]. + +== Viesture == +Senuos Indys Īlejis Civilizācejis muojvīta i viesturisku tirdznīceibys ceļu i plotu impiereju regions, Iņdejis subkontinents cīši lelu sovys viesturys daļu bejis saisteits ar sovu komercialū i kulturālū boguoteibu. Četrys nu pasauļa leluokojom reliģejom: [[Hinduisms]], [[Budisms]], [[Džainisms]] i [[Sikhisms]], aizasuokušuos ite, cikom [[Zoroastriuonisms]], [[Kristīteiba]] i [[Islams]] īsarodušuos myusu ērys pyrmā godu tyukstūšā, pīpaleidzūt regiona kulturys dažuodeibai. Koč jū nu 18 godu symta pamozom aneksieja i administrieja Britu Ostiņdejis Kompaneja i nu 19 godu symta vyda tīši puorvaļdeja Lelbritaneja, 1949 godā Iņdeja kļiva par napuorvaļdeitu vaļsteibu, piec Mahatmys Gandeja vadeituos bezvarmuoceibys kusteibys. + +Iņdejis ekonomika irā deveituo leluokuo ekonomika pasauļā piec nominaluo ĪKP i caturtuo leluokuo piec īsapirkšonuos spiejom. Suokūtīs tierga ekonomiskom reformom 1991 godā, Iņdeja irā padareita par vīnu nu mudruok augūšom ekonomikom pasauļā, jei uzskoteita par napaseņ industriaļizātu vaļsteibu, tok jei vēļ aizvīn irā lelys pynaklys ar veseleibys apryupi, korupceju i raksteitnamuociešonu. Kai kūdūlīrūču vaļsteibai i reģionālai lelvarai, Iņdejai irā trešuo leluokuo armeja pasauļā i tei irā dasmytuo pasauļā piec militārim izdavumim. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Pasauļa vaļsteibys]] +[[Kategoreja:Iņdeja| ]] + o08n3150tert4dyeym13q73fbn0n5fb + + + + Taiss:Vol-it + 10 + 1824 + + 31348 + 30048 + 2016-03-07T03:30:12Z + + Varlaam + 1454 + + + wikitext + text/x-wiki + {{langWithName|it|italīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|it]] +</noinclude> + 1t4k71oi4444yg578a3jcaqylpslw53 + + + + Jezups Baško + 0 + 1825 + + 31363 + 28702 + 2016-03-27T14:59:28Z + + 91.9.102.247 + + [[wmf:Resolution:Licensing policy]] + wikitext + text/x-wiki + '''Jezups Baško''' ({{vol-lv|Jāzeps Baško}}; 1889 gods jaunagods m. 9 d. — 1946 gods lopu m. 31. d.) beja skraidnīks, Latvejis armejis generals. + +== Biografeja == +Dzimis Daugpiļs apleiciņa [[Jasmuižys pogosts|Jasmuižys pogostā]]. 1908 goda vosorys mienesī beidzis Belostokas realškolu, tai poša goda rudiņa mienesī īstuoja [[Krīveja|Krīvejis]] Vladamira kara školā, kuru jis beidza 1910 godā ar 1 škiru. + +Dzeivi interesādamīs par tūpūšu aviaciju, Jezups Baško īsastuoj un 1912 godā beidz karviersinīku gaiskugnīceibas školu, bet 1913 godā – Gatčinas aviacijis školu. [[Pyrmais pasauļa kars|Pyrmā pasauļa karā]] jis kai skraidnīks pīsadols kuovēs pret vuocīšim nu pyrmajuom kara dīnom. + +Latvejis armejā Baško īsastuoja 1921 goda sīna mienesī Aviacejis divizionā un 1922 goda vosorys mieneša īceļts par diviziona kamaņdera paleigu, bet 1923 godā par diviziona kamaņderi. 1926 godā, pēc diviziona puorsaukšonys par Aviacejis pulku, īceļts par ituo pulka kamaņderi. 1929 godā puorceļts uz Tehniskuos divizejis puorvoldi un paškierts par divizejis štaba prīkšnīku, uzdūdūt izpiļdeit arī aviacejis inspektora daguojumus. 1938 godā paškierts par armejis aviacejis prīkšnīku. 1940 godā paaugstynuots par generalu. Tai pošā godā piec Latvejis okupacejs atbreivuots nu dīnasta. + +Jezups Baško nūmiera 1946 godā dzymtuo Jasmuižys pogostā. + +{{DEFAULTSORT:Basko, Jezups}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + ew93t5xyo5i7u8ayq8ncwls4j1adzen + + + + Jāzeps Baško + 0 + 1827 + + + 17772 + 2011-10-14T21:59:39Z + + Zemgalietis + 856 + + p + wikitext + text/x-wiki + #REDIRECT [[Jezups Baško]] + 8wh9tlt88du2rqd0jl3705er5dtz827 + + + + Tukums + 0 + 1828 + + 31481 + 28703 + 2016-07-23T06:47:28Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +|pasauka = Tukums +|atvaiga_pasauka = Tukums (37).jpg +|atvaiga_aprakstejums = Tukuma centris +|gerba_atvaigs = Coat of Arms of Tukums.svg +|gerba_pasauka = Tukuma gerbs +|karūga_atvaigs = Flag of Tukums.svg +|karūga_pasauka = Tukuma karūgs +|koordinatu_zemislopa = Latveja +|latd = 56 |latm = 58 |lats = 00 |latNS = N +|longd = 23 |longm = 09 |longs = 12 |longEW = E +|nūvods = Tukuma nūvods +|pluots = 12,9 +|dzeivuotuoji_gods = 2016 +|dzeivuotuoju_skaits = 18 923 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +|bīzeiba = 1466,9 +|viesturiskuos_pasaukys = +|cytys_pasaukys = +|īstateits = +|mīsta_tīseibys = 1795 +|posta_iņdekss = LV-3101<br />LV-3102<br />LV-3104 +|teiklavīta = www.tukums.lv +}} + +'''Tukums''' — vydisks mīsts [[Zemgola|Zemgolis]] pūstumvokorūs, [[Tukuma nūvods|Tukuma nūvoda]] centris. Mīsta tīseibys daškiera 1795 godā. + +{{nadabeigts rakstīņs}} + +{{Latvejis mīsti}} + +[[Kategoreja:Tukums| ]] +[[Kategoreja:Latvejis nūvodu centri]] + ch2d98sknnhulmi17fkychhk03uafpe + + + + Kategoreja:Tukums + 14 + 1829 + + 29558 + 17779 + 2013-04-04T04:11:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9721181]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Tukuma nūvods]] + 1lhznqjssm9svy7pm7slxy6tb6lo2cu + + + + Taiss:Ambox + 10 + 1830 + + 17787 + 17786 + 2011-10-15T00:43:12Z + + Dark Eagle + 34 + + + wikitext + text/x-wiki + <includeonly>{|class="metadata plainlinks ambox {{#if:{{{mini|}}}|ambox-mini}} {{#switch:{{{type|}}}|delete|serious|content|style|good|discussion|notice|merge=ambox-{{{type}}}|ambox-talk}}" {{#if:{{{style|}}}|style="{{{style}}}"}} {{#if:{{{id|}}}|id="{{{id}}}"}} +{{#ifeq:{{{image|}}}|none||{{!}}class="ambox-image"{{!}}<div>{{#ifeq:{{{image}}}|blank|<span style="visibility:hidden;">&nbsp;</span>|{{#switch:{{{image|{{{type}}}}}}|delete|serious=[[Fails:Stop hand nuvola.svg|40px|Kritiskys problemys]]|content=[[Fails:Emblem-important.svg|40px|Problemys ar rakstīņa turīņu]]|style=[[Fails:Broom icon.svg|40px|Stiļa problemys]]|good=[[Fails:Green star boxed.svg|40px|Rakstīņa statuss]]|discussion=[[Fails:Nuvola apps ksirc.png|40px|Sprīža]]|merge=[[Fails:Merge-split-transwiki default.svg|40x40px|Turīņa puorceļšona]]|notice=[[Fails:Information.svg|40px|Informaceja]]|#default={{{image|[[Fails:Information.svg|40px|Informaceja]]}}}}}}}</div>}} +|class="ambox-text"|{{{text|<span style="font-size:smaller;color:#AAAAAA">Parametris&nbsp;''text'' nabeja&nbsp;īstateits</span>}}}{{#if:{{{text-small|}}}|<div style="font-size:smaller;">{{{text-small}}}</div>}} +{{#if:{{{imageright|}}}|{{!}}class="ambox-imageright"{{!}}<div>{{{imageright}}}</div>}} +|class="widthhack"|<!-- a hack for some cases to keep the box wide --> +|}</includeonly><noinclude>{{doc}}</noinclude> + 238h8xz3xd61c2c41l8l61ad3p6r0if + + + + Taiss:Raksteibys klaidys + 10 + 1831 + + 30832 + 28704 + 2015-08-08T12:16:47Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q6292692]] + wikitext + text/x-wiki + {{ambox|type=style +|image=[[Fails:Nuvola apps important yellow.svg|40px]] +|text='''Rakstīņs tur sevī nazcik raksteibu i/ci stiļa klaidys.''' +|text-small=Vāg puorsavērt rakstīņa turīņu, kab tys atsatiktu [[latgaļu volūda|latgaļu volūdys]] gramatikai. +}}{{#if: {{{nocat|}}}||<includeonly>[[Kategoreja:Rakstīņi, kurim vāg puorsavērt turīņu i izlobuot klaidys]]</includeonly>}}<noinclude> +{{doc}} + +[[Kategoreja:Taisi:Puorsorgys|Klaidys]] + +</noinclude> + 5auqpeuid96iey266id20nt2qb1ub41 + + + + Kategoreja:Taisi:Puorsorgys + 14 + 1832 + + 30882 + 29744 + 2015-09-21T21:34:28Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q5611924]] + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi]] + 6690324cpsk2r0my0vp0is7012p1erj + + + + Kandova + 0 + 1833 + + 31474 + 28705 + 2016-07-14T18:46:55Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +|pasauka = Kandova +|atvaiga_pasauka = Кандавская лютеранская церковь.jpg +|atvaiga_aprakstejums = Kandovys ļutaru bazneica +|gerba_atvaigs = Kandava gerb.png +|gerba_pasauka = Kandovys gerbs +|karūga_atvaigs = +|karūga_pasauka = +|koordinatu_zemislopa = Latveja +| latd = 57| latm = 02| lats = 15| latNS =N +| longd = 22| longm = 46| longs = 30| longEW =E +|nūvods = Kandovys nūvods +|pluots = 12,9 +|dzeivuotuoji_gods = 2016 +|dzeivuotuoju_skaits = 4029 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +|bīzeiba = 694,7 +|viesturiskuos_pasaukys = +|cytys_pasaukys = +|īstateits = +|mīsta_tīseibys = 1917 +|posta_iņdekss = LV-3120 +|teiklavīta = www.kandava.lv +}} + +'''Kandova''' ({{vol-lv|Kandava}}) — napalels mīsts [[Kūrzeme|Kūrzemis]] pūstumreitūs pi [[Abova|Abovys]]. Mīsta tīseibys daškiertys 1917 godā. Kandova irā [[Kandovys nūvods|Kandovys nūvoda]] centris. Dzeivuojamuo vīta dokumentūs jau pīraksteita 1230 godā. + +{{nadabeigts rakstīņs}} + +{{Latvejis mīsti}} + +[[Kategoreja:Kandova| ]] +[[Kategoreja:Latvejis nūvodu centri]] + g8jjfqjdcgbwq6ew8t1vgce2mehygtv + + + + Kategoreja:Kandova + 14 + 1834 + + 29639 + 17807 + 2013-04-04T21:21:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9707161]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{commonscat|Kandava|Kandova}} +{{catmore}} + +[[Kategoreja:Latvejis mīsti]] +[[Kategoreja:Kandovys nūvods]] + amtqr3qv4chyiwtxhq3ln847pa3828y + + + + Kandava + 0 + 1835 + + + 17806 + 2011-10-15T11:19:20Z + + Zemgalietis + 856 + + p + wikitext + text/x-wiki + #REDIRECT [[Kandova]] + 00q372n3191e5293lmd9jhajf7z2mkm + + + + Fraņcs Trasuns + 0 + 1836 + + 28706 + 18152 + 2013-03-08T02:36:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801456]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Francis Trasuns (2).jpg|right|200px|thumb|Fraņcs Trasuns]] +'''Fraņcs Trasuns''' ({{vol-lv|Francis Trasuns}}; 1864 gods leita m. 16 d. [[Sakstagols|Sakstagolā]] — 1926 gods sulu m. 6 d. [[Reiga|Reigā]]) — zeimeigs latgalīšu i latvīšu kulturys i gareigais dareituojs, vaļstsveirs i literats. Vysu myužu aizajiems ar [[latgaļu volūda|latgaļu volūdys]] i kulturys aizstuoviešonu. + +== Biografeja == +Vuiciejīs vītējuo pogosta školā, Jelgovys ģimnāzejā, Pīterpilī, nu 1883 leidz 1887 godam gareigojā seminarā i nu 1887 leidz 1891 godam goreigojā akademejā, beidz kai teologejis magistrs. Piečuok, nu 1902 goda — profesors Pīterpiļs gareigojā seminārā, kur izceikstiejs tīseibys vuiceibom nūtikt pa daļai latgolīšu volūdā, nu 1904 goda taipoš gareiguos tīsys bīdrys. + +Cikom [[Latgola]] bejuse Vitebskys guberņā, cīši ceikstiejīs par tīseibom izdūt gazetys latgalīšu volūdā ar lateiņu, a na kirelicys literim<ref>[http://www.rezeknesbiblioteka.lv/index.php?option=com_content&view=article&id=285:francis-trasuns-lielais-latgalietis&catid=163:par-izstadem-cb&Itemid=104 ''Francis Trasuns – lielais latgalietis'']</ref>. + +1906 godā ībolsuots Krīvejis Vaļsteibys Dumā, kur kai pyrmais nu latvīšim aizaprasejīs muižnīku privilegeju nūceļšonu, 1905 goda revoļucejā cītušū amnesteju i arhaiskūs Latgolys agruoruos sistemys reformu<ref name="al">Amazing-Latvia.Lv — [http://www.amazing-latvia.lv/personas/a_z/francis_trasuns/ ''Francis Trasuns'']</ref>. + +Jiems daļeibu 1917 goda lopu m. 9 i 10 d. Latgolys kongresa organiziešonā, kur sakstiejs dasaškieršonu cytim Latvejis kulturviesturiskim nūvodim, ībolsuots nu kongresa Latgolys Tamlaiceiguo Zemis Padūmē. Vīnulaik dorbuojīs Nacionaluos Tamlaiceiguos Padūmis komitetā, kas sastota Satversmis projektu<ref name="al" />. + +1918 goda solnys m. 18 d. kai Tautys Padūmis bīdrys pīsadoluos Latvejis Republikys napavaļdeibys pasludynuošonā<ref name="al" />. + +Pyrmuos i Ūtruos Seimys deputats, Pyrmuos Seimys prezideja bīdris, īkšlītu ministra bīdris [[Kārlis Ulmanis|Kārļa Ulmaņa]] Tamlaiceiguo Vaļdeibā. Ūtrajā Seimā ībolsuots ar vairuok bolsim kai Kārlis Ulmanis, [[Rainis]] ci [[Juoņs Čakste]]. Kai deputats īģivs finansisku atspaidu [[Rēzne|Rēznis]] Tautys Piļs stateibai i Latgolys teatra satasei<ref name="al" />. + +Akteivs publycists i literats, dybynuojs i vadeijs žurnalu „Zemnīka draugs” (1920) i laikrokstu „Zemnīka Bolss” (1924—1926)<ref name="al" />. + +Pretivējīs Latgolys rusifikacejis i polonizacejis centīnīm, par kū arī ītics konfliktā ar cīši puolskuos katuoleibys vadeibu, 1926 godā piec papeiža [[Pijs IX|Pija IX]] bullis atstateits nu katuoļu bazneicys. Mierst Reigā tai pošā godā ar sirdstrīku piec tam, kod tūp prodzeits nu Leldīnu dīvakolpuošonys Reigys Jākoba bazneicā<ref name="al" />. + +1998 godā piec Seimys deputātu dadaris bazneicys kliera kongregaceja izzeist ekskomunikaceju par nadybynuotu<ref name="al" />. + +[[Juoņs Čakste]] par jū saciejs: „Fraņcs Trasuns īlyka [[Latvejis ģerbs|Latvejis ģerbā]] trešū zvaigzni — [[Latgola|Latgolu]]”. + +== Nūruodis i olūti == +{{nūruodis}} + +{{DEFAULTSORT:Trasuns, Francs}} +[[Kategoreja:Zeimeigi Latgolys ļauds]] + mvv2h9a2qgbp8r7jpt98h6mos9flqdt + + + + MediaWiki:Mainpage.js + 8 + 1837 + + 30135 + 30134 + 2013-10-30T11:41:06Z + + Ruslik0 + 86 + + a tweak + javascript + text/javascript + mw.loader.using('mediawiki.util', function () { + $(function () { + var el = mw.util.addPortletLink('p-lang', mw.config.get('wgArticlePath').replace(/\$1/, 'meta:List_of_Wikipedias'), 'Pylns saroksts', 'interwiki-completelist'); + if( el ) el.style.fontWeight = 'bold'; + }) + + mw.util.addCSS('#t-cite, #catlinks, #lastmod, #footer-info-lastmod {display:none}'); + mw.util.addCSS('.globegris {background: url(//upload.wikimedia.org/wikipedia/commons/1/10/Wikipedia-logo-v2-200px-transparent.png)}'); +}) + bhknpitxzvelj8p13o9gukg5yj3fzla + + + + MediaWiki:Geshi.css + 8 + 1838 + + 17829 + 2011-10-15T17:28:26Z + + Dark Eagle + 34 + + Jauna lapa: /* border in most skins */ body.skin-monobook div.mw-geshi, body.skin-chick div.mw-geshi, body.skin-vector div.mw-geshi { padding: 1em; border: 1px dashed #2f6fab; color: black; ... + css + text/css + /* border in most skins */ + +body.skin-monobook div.mw-geshi, +body.skin-chick div.mw-geshi, +body.skin-vector div.mw-geshi { + padding: 1em; + border: 1px dashed #2f6fab; + color: black; + background-color: #f9f9f9; + line-height: 1.1em; +} + +body.skin-modern div.mw-geshi { + border: solid 1px #3c78b5; + padding: 0.4em; + background-color: #f0f0f0; +} + +body.skin-simple div.mw-geshi { + margin: 2em; + border: solid 1px black; +} + +/* normal text size in some versions of Firefox, Safari, Konqueror, Chrome etc. */ +div.mw-geshi div, +pre { + font-family: monospace, sans-serif !important; +} + sq5unyixi4edxvew8go5498bcbd4q3a + + + + MediaWiki:Vector.js + 8 + 1839 + + 32131 + 17831 + 2017-08-13T03:12:18Z + + Krenair + 1254 + + Maintenance: [[mw:RL/MGU]] / [[mw:RL/JD]] - [[phab:T169385]] - deprecated in jQuery 3.0 + javascript + text/javascript + $('#searchform').on('keyup keydown mousedown', + function (e){ $(this).attr('target', e.shiftKey?'_blank':'') }) + n2equftfd4aicfn2yl6wzhj2z5n4vok + + + + Adoļfs Hitlers + 0 + 1842 + + 30671 + 28707 + 2015-03-24T14:35:00Z + + Cekli829 + 277 + + wikitext + text/x-wiki + [[Fails:Bundesarchiv Bild 183-S33882, Adolf Hitler retouched.jpg|right|200px|thumb|Adoļfs Hitlers 1937 godā.]] +'''Adoļfs Hitlers''' ({{Vol-de|Adolf Hitler}}; 1889—1945) — vuocīšu politiks, [[nacionalsocializmys|nacionalsocializmya]] (1921—1945) i [[Vuoceja|Vuocejis]] vaduojs (1933—1945). Jis aizsuoce [[Ūtrais pasauļa kars|Ūtru pasauļs karu]] Europā. Atsaceigs por žeidu [[holokausts|holokaustu]]. + +{{DEFAULTSORT:Hitlers, Adolzfs}} +[[Kategoreja:Politiki]] + bwcudcb9whielzeiyzba98882m9z1sc + + + + Jezuiti + 0 + 1844 + + 28708 + 28029 + 2013-03-08T02:36:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 83 interwiki links, now provided by [[d:|Wikidata]] on [[d:q36380]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Ihs-logo.svg|right|175px|thumb|Jezuitu gerbs.]] +'''Jezuiti''' aba '''Jezus bīdreiba''' ({{Vol-la|Societas Jesu}}) — katuoļu bazneicys ordyns, kas īstateits 1534 godā. Ordyna dybynuotuojs beja spanīšu brūniskungs [[Ignacejs nu Lojolys]]. Golvonais snāgs — katuoļu ticeibys izplateišona i nūstyprynuošona. Latvejā ordyns apsamete 16 godusymtā.<ref>[http://lingua.id.lv/LatinPages/Societas.Jesu.Residentia.Rigensis.I.pdf Latvijas vēstures avoti jezuītu ordeņa archīvos. III sējums. Rīga, 1941.]</ref> + +== Olūti == +{{Nūruodis}} +{{nadabeigts rakstīņs}} + +[[Kategoreja:Religeja]] + 4ptcrad48c32fqrklwf7c0ql770bofc + + + + Jezus bīdreiba + 0 + 1845 + + + 17863 + 2011-10-15T23:45:38Z + + Zemgalietis + 856 + + p + wikitext + text/x-wiki + #REDIRECT [[Jezuiti]] + jbivo0br9nezmgcnzv5qbsuozd9c9v3 + + + + MediaWiki:Disambiguationspage + 8 + 1846 + + 17870 + 2011-10-16T09:55:43Z + + Dark Eagle + 34 + + Jauna lapa: * [[Taiss:Disambig]] * [[Taiss:Disambiguation]] * [[Taiss:Zeimeibu škiršona]] + wikitext + text/x-wiki + * [[Taiss:Disambig]] +* [[Taiss:Disambiguation]] +* [[Taiss:Zeimeibu škiršona]] + ey02hp21dxtafa0hajemwme7qvxlkxo + + + + Taiss:Disambiguation + 10 + 1847 + + + 17871 + 2011-10-16T09:55:57Z + + Dark Eagle + 34 + + Pāradresē uz [[Taiss:Zeimeibu škiršona]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Zeimeibu škiršona]] + 7efvuxm5mwi4600srx52cqkpc3wbkd7 + + + + MediaWiki:Search.js + 8 + 1849 + + 17875 + 2011-10-16T10:09:07Z + + Dark Eagle + 34 + + Jauna lapa: function externalSearchEngines() { var list = { 'Meklēt Vikipedejī': '', 'Google': 'google.com/search?q=!+site:ltg.wikipedia.org&hl=lv', 'Yahoo': 'search.yahoo.com/search?p=!... + javascript + text/javascript + function externalSearchEngines() { + var list = { + 'Meklēt Vikipedejī': '', + 'Google': 'google.com/search?q=!+site:ltg.wikipedia.org&hl=lv', + 'Yahoo': 'search.yahoo.com/search?p=!&vs=ltg.wikipedia.org', + } + + var sel = '' + for( var nm in list ) + sel += '<option value="' + list[nm] + '">' + nm + '</option>' + + var frm = $('#search, #powersearch').eq(0), + inp = frm.find('input[name=search]') + + $( '<select id=searchEngines>' + sel + '</select>' ).insertAfter( inp ) + + frm.submit(function(e){ + var site = $('#searchEngines').val() + if( !site ) return true + e.preventDefault() + window.location = 'http://' + site.replace(/!/, encodeURIComponent( inp.val() ) ) + return false + }) + +} + +$( externalSearchEngines ) + h80m4qif59kj9gkm6c1q2qz2kr87khr + + + + Škeļtiņu pravoslavu cierkva + 0 + 1851 + + 31603 + 31389 + 2016-11-01T19:56:26Z + + 87.110.14.45 + + Atcēlu [[Special:Contributions/91.9.112.211|91.9.112.211]] ([[User talk:91.9.112.211|Diskusija]]) izdarīto izmaiņu 31389 + wikitext + text/x-wiki + [[Fails:Lat 295.jpg|250px|right|Svātuo Nikolaja cierkva 2011 gods rudinī]] +'''Škeļtiņu Svātuo Nikolaja pravoslavu cierkva''' irā pravoslavu dīvanoms [[Aglyunys nūvods|Aglyunys nūvoda]] [[Škeļtiņu pogosts|Škeļtiņu pogostā]], Škeļtiņu solys centrā. Cierkva pastateita 1836 godā ampira stilī - kvadrata forma ar četrim portikim, kas skaistyunuoti ar boltom kolonom i zamu, sferisku kupolu.<ref>S. Saharovs "Pravoslavu cierkvys Latgolā" ( С. П. Сахаров «Православные церкви в Латгалии»). Autora izdavums, Reigā, 1939 Igumena Aleksandra (Matrjoņina) papiļdejums.</ref> Sovu originalū vierīni pagluobuse da myuslaikim. Cierkva irā vaļsteibys sorgojamais arhitekturys pīminieklis. 1996 gods zīmys mieneša 19 dīnā, 160 godu jubilejī, cierkva īstyprynuota. Tān Škeļtiņu parapejai (i vēl četrom cytom) kolpoj Tāvs Mihails. + +Škeļtiņu parapejā 35 godus darejs Tāvs Vasiiļs Nazarevskais. Jis ar sovu asketizmu i lelu padīveibu īdvāsmuojs na tik pravoslavu, a i staroveru i katuoļu ļauds. Jis nūmyrs 1909 gods jaunagods mieneša 6 dīnā (19 dīnā pa myuslaikim) pa iudiņa svieteišonai cierkvā dīvakolpuošonys drēbuos, sūpluok nazcik pravoslavu i staroveru ļaudim. Taida padīveiga nuove ļauds cīši īdvāsmuojuse. Tāvs Vasiļs paglobuots tīpat cierkvā.<ref>[http://www.pravoslavie.lv/index.php?newid=189&id=179&lang=RU (''Krīvyskai'') Škeļtiņu Sv. Nikolaja pravoslavu cierkva]</ref> + +==Nūruodis i olūti== +{{Nūruodis}} + +{{DEFAULTSORT:Škeļtiņu pravoslavu cierkva}} + +[[Kategoreja:Latgolys pravoslavu cierkvys]] +[[Kategoreja:Škeļtiņu pogosts]] + r1xtjk66if5ybrqj5k53lht6knmtj01 + + + + Kategoreja:Latgolys pravoslavu cierkvys + 14 + 1858 + + 17940 + 2011-10-19T06:27:45Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + [[Kategoreja:Latgolys dīvanomi]] + h87r4w1kz77nt21ovz2k0au2gyzjjfb + + + + Pīdrujis pogosts + 0 + 1861 + + 30321 + 28709 + 2014-04-29T18:42:58Z + + Kasp2008 + 847 + + /* Viesture */ + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Pīdrujis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Pīdrujis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Pīdrujis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kruoslovys nūvods +| centrys = Pīdruja +| pluots = 64.46 +| dzeivuotuoju_skaits = 601<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 601 / 64.46 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Pīdrujis pogosts''' irā [[Kruoslovys nūvods|Kruoslovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora biblioteka, pamatškola, feļčeru punkts i div rūbežkontrolis punkti. Tautys noma ci cyta kulturys īstota navā, pogosta pasuocīni nūteik pamatškolā. Pogosta centrā Svātuos Jaunovys Marejis katuoļu bazneica i Svātuo Nikolaja pravoslavu cierkva. + +==Viesture== +1935 godā Daugpiļs apleiciņa Pīdrujis pogosta pluots beja 164,86 km² i tymā dzeivova 6793 ļauds.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 1939 godā Pīdrujis pogostu puorsauce par Indreicys pogostu<ref>[http://periodika.lndb.lv/periodika2-viewer/view/index-dev.html#panel:pp|issue:/p_001_wawe1939n161|article:DIVL56|issueType:P Valdības Vēstnesis] 1939.gada 21.jūlijs</ref>. 1945 godā pogostā īstateja Dvorčānu, Indreicys, Kelovys, Kuzminu, Pīdrujis i Voicuļovys solys padūmi, a pogostu 1949 godā likvidieja. 1954 godā Kruoslovys rajona Pīdrujis solai daškiera likvidātū Dvorčānu solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu. Myuslaiku Pīdrujis pogosts irā nazkodejuo Pīdrujis pogosta dīnavydu doļa. 2009 godā pogostu kai administrativu teritoreju daškir [[Kruoslovys nūvods|Kruoslovys nūvodam]]. + +== Rūbeži == +Pīdrujis pogosts tur rūbežu ar: +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Indreicys pogosts|Indreicys pogostu]], [[Kaļnīšu pogosts|Kaļnīšu pogostu]], i [[Kapļovys pogosts|Kapļovys pogostu]]; +* [[Boltkrīveja|Boltkrīvejis Republikys]] Vicebskys apgabaļa Verhņadzvinskys rajonu i Braslovys rajonu. + +== Dzeivuotuoji == +Pīdrujis pogostā dzeivoj 601 ļauds, nu jū 13,5% latvīšu, 58,6% boltkrīvu i 17,6% krīvu. + +=== Solys === +Pīdrujis pogosta ļauds dzeivoj 23 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Pīdruja (pogosta centrys), Aleksandrova, Lupandi, Berjozki, Dvorčani. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vīns vaļsteibys zeimebys autoceļš Reiga-Daugpiļs-Puotarnīki (A6) i treis vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Iz autoceļa A6 rūbežkontrolis punkts. +Dzeļžaceļa linejis pogostā navā. Ar [[Boltkrīveja|Boltkrīvejis]] mīstu Druju par [[Daugova|Daugovu]] dora upu puorvozu sative, pi kurys rūbežkontrolis punkts. + +Pīdrujis pogosta teritoreju apkalpoj vīna posta atdale "Daugovīši" (LV-5662).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Daugovys akmiņs - 7 volūduos īkaļts Daugovys vuords +* Pīdrujis dobys styga +* Svātuos Jaunovys Marejis katuoļu bazneica +* Svātuo Nikolaja pravoslavu cierkva + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kruoslovys nūvods}} + +[[Kategoreja:Pīdrujis pogosts]] + mlmo2hd18sonsxvm23k0awkvestglv4 + + + + Kumbuļa pogosts + 0 + 1862 + + 28710 + 22702 + 2013-03-08T02:37:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361089]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kumbuļa pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kumbuļa pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Kumbuļa pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kruoslovys nūvods +| centrys = Kumbuļs +| pluots = 80.92 +| dzeivuotuoju_skaits = 672<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 672 / 80.92 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Kumbuļa pogosts''' irā [[Kruoslovys nūvods|Kruoslovys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Sauliskolnu pamatškola, biblioteka, feļčeru punkts i tautys noms. Kumbulī atdareitys treis puordūtuvys i braukalej autolauka. Pogostā četri gatari, patmalis i nazcik gostu sātus turistim. Pogosta centrā Svātuo Jezupa Kumbuļa katuoļu bazneica, pastateita 1820 godā. + +==Viesture== +Viesturiskai Kumbuļa pogosta teritoreja bejuse Daugpiļs apleiciņa Kruoslovys pogostā. 1945 godā Kruoslovys pogostā īstateja Kumbuļa solys padūmi. 1959 godā Kruoslovys rajona Kumbuļu solai daškiera likvidātū Ludzeišu solu..<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu. 2009 godā kai administrativu teritoreju pogostu daškir [[Kruoslovys nūvods|Kruoslovys nūvodam]].. + +== Rūbeži == +Kumbuļa pogosts tur rūbežu ar: +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Aulejis pogosts|Aulejis pogostu]], [[Iudreišu pogosts|Iudreišu pogostu]], [[Izvolta pogosts|Izvolta pogostu]], [[Kruoslovys pogosts|Kruoslovys pogostu]] i [[Skaista pogosts|Skaista pogostu]]; +* [[Aglyunys nūvods|Aglyunys nūvoda]] [[Gruoveru pogosts|Gruoveru pogostu]]. + +== Dzeivuotuoji == +Kumbuļa pogostā dzeivoj 672 ļauds, nu jū 78,6% latvīšu, 11,2% krīvu i 6,4% boltkrīvu. + +=== Solys === +Kumbuļa pogosta ļauds dzeivoj 56 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Kumbuļs (pogosta centrys), Lelī Unguri, Vyrveli, Suoleimi. + +=== Zeimeigi ļauds === +* S. Škutāns - teologejis zineibu Dr. Romys Marejis (marianu) kongregacejis generalviersinīks. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Kruoslova-Preili-Modyune (P62) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Pošūs pogosta dīnavydūs iz rūbeža ar [[Kruoslovys pogosts|Kruoslovys pogostu]] īt dzeļžaceļa lineja Reiga-Daugpiļs-Vicebskys, tok pasažiru sative itymā puosmā aizdareita. Stacejis ci nūstuošonys pogostā navā bejušs. + +Kombuļa pogosta teritoreju apkalpoj vīna posta atdale "Sauliskolni" (LV-5656).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* [[Dreidzs]] - pošu dziļais azars Baltejis vaļsteibuos; +* Kumbuļa muiža i muižys suods - pa daļai izglobovuse viesturiskuo pīstateiba, kungu sāta sagrauduota Pyrmajūs psaualā vaidūs; +* [[Saulis kolni]] - izsliva turisma obejkts; +* Svātuo Jezupa Kumbuļa katuoļu bazneica +* Viejneicys (vieja patmalis) - dora i myuslaikūs. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Kruoslovys nūvods}} + +[[Kategoreja:Kumbuļa pogosts]] + 9bls1v78h0nhrtf9ph1algptnhvhc8s + + + + Škaunys pogosts + 0 + 1864 + + 28711 + 22681 + 2013-03-08T02:37:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361036]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Škaunys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Škaunys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Škaunys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Dagdys nūvods +| centrys = Škauna +| pluots = 123.7 +| dzeivuotuoju_skaits = 627<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 627 / 123.7 round 1}} +| īstateits = +| teiklavīta = +}} +[[Fails:Skaunys pogosta padume Skaunys pogosts.jpg|thumb|270px|Škaunys pogosta padūme 2011 gods rudinī]] +'''Škaunys pogosts''' irā [[Dagdys nūvods|Dagdys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pošu tuolais Dagdys nūvoda pogosts iz reitim. Pogostā dora tautys noms, pamatškola, biblioteka, feļceru punkts i katuoļu bazņeica. + +==Viesture== +Viesturiskai Škaunys pogosta teritoreja bejuse Ludzys apleiciņa Landskoronys pogostā. 1925 godā pogostu puorsauve kai Škaunys pogostu. 1935 godā Škaunys pogosta pluots beja 194 km². 1945 godā pogostā īstateja Krasnopolis, Meikšānu, Muiženīku, Pundoru, Škaunys i Šuškovys solu padūmi, a pogostu 1949 godā likvidēja. 1960 godā Škaunys solai daškiera doļu likvidātuos Pundoru solys, 1973 godā Muiženīku solys, a doļu Škaunys solys daškiera Pareču (Bierzeņu) solai. <ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Dagdys nūvods|Dagdys nūvodam]]. + +== Rūbeži == +Škaumys pogosts tur rūbežu ar: +* [[Dagdys nūvods|Dagdys nūvoda]] [[Bukmuižys pogosts|Bukmuižys pogostu]], [[Pareču pogosts|Pareču pogostu]], [[Svareņu pogosts|Svareņu pogostu]]; +* [[Ludzys nūvods|Ludzys nūvoda]] [[Istrys pogosts|Istrys pogostu]]; +* [[Sīnuojis nūvods|Sīnuojis nūvoda]] [[Posyunis pogosts|Posyunis pogostu]]; +* [[Boltkrīveja|Boltkrīvejis Republikys]] Vicebskys apgabaļa Verhņadzvinskys rajonu. + +== Dzeivuotuoji == +Škaunys pogostā dzeivoj 627 ļauds, nu jū 76,0% latvīšu, 12,0% krīvu i 9,8% boltkrīvu. 87% pogosta dzeivuotuoju [[Latveja|Latvejis Republikys]] vaļščuonu. + +=== Solys === +Škaunys pogosta ļauds dzeivoj 39 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Muižinīki, Krasnopole, Landskorūne, Škauna (pogosta centrys), Zamšoviki. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Sīnuoja-Škauna-Bukmuiža (P52) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Dzeļžaceļa linejis pogostā navā. + +Škaunys pogosta teritoreju apkalpoj vīna posta atdale "Škauna" (LV-5695).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{Dagdys nūvods}} + +[[Kategoreja:Škaunys pogosts]] + 5ojtoiq2uo2m7dmztm5qwoh28oyjgnd + + + + Kategoreja:Škaunys pogosts + 14 + 1866 + + 29640 + 22684 + 2013-04-04T21:21:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9728544]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Dagdys nūvods]] + pp4jvk49r760dn6eetir1iz953hgtr2 + + + + Daļa Grībauskaite + 0 + 1867 + + 28712 + 22076 + 2013-03-08T02:37:38Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 48 interwiki links, now provided by [[d:|Wikidata]] on [[d:q57379]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine +|bodystyle = width:20em; +|name = +|title = Daļa Grībauskaite +|titlestyle = +|headerstyle = +|labelstyle = width:33% +|datastyle = + +|image = [[File:Dalia_Grybauskaitė_2010.jpg|220px]] +|caption = Daļa Grībauskaite + +|header1 = Lītovys Prezidente + +|header2 = 2009 — niule +|label2 = +|data2 = +|header3 = +|label3 = Prīškaudzs +|data3 = [[Valds Adamkus]] +}} +'''Daļa Grībauskaite''' ({{Vol-lt|Dalia Grybauskaitė}}; [[1956]]) — politike, [[Lītova|Lītovys]] prezidente. + +== Teiklavītys == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Prezidenti]] +[[Kategoreja:Lītovys politiki]] + dxk8l9hgdw9g8ld03cpl2z7byrudimf + + + + Andrjus Kubiļs + 0 + 1868 + + 28713 + 27235 + 2013-03-08T02:37:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 34 interwiki links, now provided by [[d:|Wikidata]] on [[d:q57663]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine +|bodystyle = width:20em; +|name = +|title = Andrjus Kubiļs +|titlestyle = +|headerstyle = +|labelstyle = width:33% +|datastyle = + +|image = [[File:Andrius_Kubilius.jpg|220px]] +|caption = Andrjus Kubiļs + +|header1 = Lītovys Ministru Prezidents + +|header2 = 2008 — niule +|label2 = +|data2 = +|header3 = +|label3 = Prīškaudzs +|data3 = [[Gedimins Kirkils]] +}} +'''Andrjus Kubiļs''' ({{Vol-lt|Andrius Kubilius}}; [[1956]]) — politiks, [[Lītova|Lītovys]] ministru prezidents. Parteja - [[Tāvaines Savīneiba - Lītovys kristīti demokrati|TS-LKD]]. + +== Teiklavītys == + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Politiki]] +[[Kategoreja:Lītovys ļauds]] + bo78lgv74z9m6f3yzdi0wowgbpazqab + + + + Krupnīks ar buļbem + 0 + 1874 + + 31829 + 31801 + 2016-12-09T09:37:34Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31801 dated 2016-12-09 09:01:14 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + Krupnīks ar buļbem - virīņs nu galis, ozbora i buļbu, latgalīšu nacionalais iedīņs. + +Sataiseišonys parāds: Cyukys gali ar kaulenim nūskoloj, līk vardpūdā ar soltu iudini. Aizvard, nūsmeļ putys, damat suoļa, īlīk vasalu nūlaupeitu cybuli i iz mozys līsmeitis vard buļjonu. Kod gaļa kuoni meiksta, damat ozbora. Šaļti pavard, tūlaik daber sagrīztys buļbis. Iz gola damat veļ maltus malnūs pypyrus, sokopuotus zaļumus (kropus, pīterzuoli, zaļūs cybuleišus), samaisa i nūceļ nu guņs. + +Nu virīņa izjam kauleņus, nu jūs nūskrubynoj gali i sagrīztu īlīk atpakaļ virīnī. Da goldam padūd ar kriejumu. + mvjy88sp0q1t7gj9bn8arka4avw2i8t + + + + Buļbešnīki + 0 + 1875 + + 31911 + 18723 + 2017-02-25T06:09:55Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + '''Buļbešnīki''' aba '''guļbešnīki''' - olejā vyrti buļbu rutuleiši ar vysaidu piļdejumu, vīns nu latgaļu nacionalū iedīņu. + +=== Sataiseišonys parāds === +* buļbis +* ūlys +* malnī pypyri +* suoļs +* rapšu oeljs + +Piļdejumam: +* cyukys gale ci cyts kas +* tarkavuots sīrs + +Zūstei: +* suoleitys sieņs +* *cybuli +* kriejums + + +Buļbis izvard meikstys. Sameicej ar dukuri voi samaļ galis mašinē. Dalīk ūlys, damat moltūs malnūs pypyru i suoļa, tūlaik samaisa. Nu dabuotuos masys ar rūkom plikšynoj pluocineišus. Jim vyducī līk piļdejumu – stipinenim sagrīztu kapcātu cyukys gali, kurū puorkaisa ar tarkavuotu sīru. Pluocineišu molys sajam kūpā i, viļojūt plaukstēs, formej garonus rutuleišus. Jūs līk vardpūdeņā ar sakarsātu rapšu oleju i vard, cikom rutuleiši teik zeļteitai bryuni i izmaun iz viersu. Gotovūs buļbešnīkus ar putu lizeiku izjam, līk iz sīteņa, kab nūtacātu olejs, tūlaik līk bļūdā i pastota iz plitys molys syltumā. + +Da goldam padūd ar sieņu zūsti: suoleitys sieņs iz peteļnis sacap ar cybulim, iz gola dalīk nazcik lizeiku kriejuma. + +Buļbešnīku piļdejumam vītā galis var izlītuot sīru, bīzapīnu, kuopustus, sieņs. + +[[Kategoreja:Latgaļu vyrtuve]] + 9uper025ne5sb9bpbpsmx7hgmn2hhcy + + + + Murcauka + 0 + 1876 + + 18756 + 18730 + 2011-11-09T13:27:37Z + + 81.198.226.239 + + wikitext + text/x-wiki + '''Murce''' aba '''murcauka''', aba '''murcaukle''' - latgaļu gavieņa laika iedīņs. + +===Sataiseišonys parāds=== +* rudzu maize +* cybuļs +* suoļs +* iudiņs +* lynsāklu olejs + + +Rudzu maizi sagrīž kimūsa leluma gabalenim, dalīk smolkai sakopuotu cybuli, damat suoļa, puorlej ar vyrtu atsaldātu iudini i dalej lynsāklu oleja. Ka gryb skorbonuokys garžys, var dalikt uobeļa gabaleņus. + +Cytūs apvydūs murcaukai dalyka sagrīztys korstys buļbis ci soltus skuobātus kuopustus, ci (jaunuokūs laikūs) kriejumu. + +[[Kategoreja:Latgaļu vyrtuve]] + mycwqct9mzhsb6sbfakt33sh17z7kb4 + + + + Saladuka + 0 + 1877 + + 18270 + 2011-11-01T11:34:06Z + + 78.60.143.22 + + Jauna lapa: Saladuka - latgalīšu gavieņa laika iedīņs. Sataiseišonys parāds: Vasalus rudzu gryudus sadīdzej, izkaļtej i rupai samaļ. Piečuok itūs myltus vard iudinī, cikom izīt pa... + wikitext + text/x-wiki + Saladuka - latgalīšu gavieņa laika iedīņs. + +Sataiseišonys parāds: Vasalus rudzu gryudus sadīdzej, izkaļtej i rupai samaļ. Piečuok itūs myltus vard iudinī, cikom izīt pabīzs vyrums, leidzeigs keiseļam voi marmeladam. Jam labi vīņ soldona garža. Ād vīnu pošu voi kūpā ar rupu maizi. Var ēst ar pīnu. + +Iedīņa pasauka sīnama ar vuordim "soldons" i "salynōt". Pādejū lītoj, dorūt olu, i jis zeimoj 'aplīt īsolu ar vardušu iudini kubulā'. Iudinī izškeist īsolā asūšuos cukra lītnis, i nu tuo škeistums teik soldons. + cigup9aw06zz6446smc75khn5gu8h4z + + + + Stuļkis + 0 + 1878 + + 18419 + 18390 + 2011-11-02T13:58:49Z + + 78.60.143.22 + + wikitext + text/x-wiki + '''Stuļčs''' aba '''stuļčuks''' - latgalīšu nacionalais iedīņs. + +Sataiseišonys parāds: Smolkai samoltus voi gleizdynuotus zierņu myltus pa mozam ber vardūšā iudinī i nūtaļ maisa, cikom sabīzēs. Tūlaik lej bļūdōs voi škeivūs i atsaļdej, sagrīž škēlem i ād, aplejūt ar lynsāklu oleju. Škēlis gona styngrys, juos var pajimt rūkā. Stuļki var ēst i syltu, i soltu. + +Pa cytam recepta variantam, stuļčuks irā vyrtys i atsaldātys, škēlem sagrīztys buļbis, kurys sagryuž ar dukuri i samaisa ar lynsāklu oleju i svīžu cybuļu gabalenim. + qzqetvp053d0rzlmaqi7m0dv191c68v + + + + Asuškys + 0 + 1879 + + 18720 + 18691 + 2011-11-09T12:51:57Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Asuškys''' - mozi opoli peiriedzeni kriejuma zūstē. Vīns nu latgaļu nacionalū iedīņu. + +===Sataiseišonys parāds=== +* 1 kg bīzapīna +* 2-3 ūlys +* 250 gr ryuguļa +* 300 gr myltu +* 1-2 lizeikys cukra +* mīlis ci lizeiceņa sodys +* čipierksneits suoļa + + +Jam bīzapīnu, dalīk ūlys i ryuguļa, kurymā jau īlyktys mīlis (voi puse čaja lizeiceinis sodys). Dalīk čipierksneiti suoļa i cukra. Vysu brangai samaisa, i dabuotajai masai dalīk myltu. Meikli izmeicej i izviļoj iz goldskaleiša, sagrīž rombenim i līk captu iz sausys, korstys peteļnis. Apcap zeļteitai bryunys. + +Kab asuškys byutu gorduokys, taišni pyrma padūšona da goldam juos pasylda svīžā kriejumā ar cukru. Cytūs apvydūs asuškys tiuleņ piec izcepšonys līk kriejuma i svīsta zūstē. Korstums kriejumu izlaidynoj, īsyucūt jū vydā asuškuos. + +[[Kategoreja:Latgaļu vyrtuve]] + 23r1kp8a7vwur6d1xme33srz0vcrpmz + + + + Pancaks + 0 + 1880 + + 18733 + 18277 + 2011-11-09T12:59:20Z + + Roalds + 50 + + viki+kat + wikitext + text/x-wiki + '''Pancaks''' - ozbora i pupeņu virīņs ar pīdavom, latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* ozbors +* pupenis +* suonkauleiši +* būrkuoni +* cybuļs +* lauru lopys +* malnī pypyri +* kriejums + + +Jau pyrmuokajā vokorā sauvi ozbora nazcik reižu puormozgoj i pamat mierktu, taipoš iudinī samārc i pupenis. Iz cytys dīnys jam kapcātus voi svīžus suonkauleišus, līk pūdā i vard kūpā ar lauru lopom i malnajim pypyrim, tymā vydā var iz peteļnis apcept būrkuonu pusripeitis i sasmalcynuotu cybuli. Suonkauleišim dalīk izmārcātuos pupenis i ozboru i vard, cikom vyss meiksts. Būrkuonus ar cybulim dalīk pošus pādejūs. Da goldam padūd ar kriejumu. + +[[Kategoreja:Latgaļu vyrtuve]] + huz6p0yp4a5dv2245hw5eeojwtli0bf + + + + Veisteknis + 0 + 1881 + + 18736 + 18735 + 2011-11-09T13:01:15Z + + Roalds + 50 + + + /* Sataiseišonys parāds= */ + wikitext + text/x-wiki + '''Veisteknis''' aba '''puorpace''' - rudzu maize ar galis i cybuļu piļdejumu, latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* rudzu maizis meikle +* cyukys gale +* cybuli +* pypyri +* garžys + + +Izviļoj rudzu maizis meikli, iz vyds līk sagrīztu cyukys gali ar cybulim, pypyrim i cytom garžom. Saceļ nu meiklis malenis i aizlīc. Cap ceplī. + +[[Kategoreja:Latgaļu vyrtuve]] + qhc3mi4j00pxmah3iukm2qq6unh26mr + + + + Krupnīks + 0 + 1882 + + 18726 + 18712 + 2011-11-09T12:54:52Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Krupnīks''' - virīņs nu galis, ozbora i buļbu, latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* cyukys gale +* cybuļs +* buļbis +* ozbors +* pypyri +* suoļs +* zaļumi +* kriejums + + +Cyukys gali ar kaulenim nūskoloj, līk vardpūdā ar soltu iudini. Aizvard, nūsmeļ putys, damat suoļa, īlīk vasalu nūlaupeitu cybuli i iz mozys līsmeitis vard buļjonu. Kod gaļa kuoni meiksta, damat ozbora. Šaļti pavard, tūlaik daber sagrīztys buļbis. Iz gola damat vēļ moltus malnūs pypyrus, sokopuotus zaļumus (kropus, pīterzuoli, zaļūs cybuleišus), samaisa i nūceļ nu guņs. + +Nu virīņa izjam kauleņus, nu jūs nūskrubynoj gali i sagrīztu īlīk atpakaļ virīnī. Da goldam padūd ar kriejumu. + +[[Kategoreja:Latgaļu vyrtuve]] + kp9o71tilqrbgt97r6mlrob63de30mb + + + + Putruomu dasys + 0 + 1883 + + 30148 + 26648 + 2013-11-20T22:44:12Z + + Delusion23 + 2178 + + [[:d:Q154482]] + wikitext + text/x-wiki + '''Putruomu dasys''' — nu [[asnis|ašņa]] gatavātys dasys ar [[ozbors|ozboru]], [[latgali|latgaļu]] nacionalais iedīņs. +[[Latgola|Latgolā]] putruomu dasys taisa na viņ nu ašņa, a masā ījauc taipoš vyrtu ozboru, vyrtys [[buļba|buļbis]] i grabšus (laidynuotus [[cyuka|cyuku]] vysdpusis taukus). Cīši svareiga latgaļu putruomu dasu sadordaļa — [[muorineite]] aba smerška (smuordeigs vīngadeigs auguojs zylim zīdenim), jū putruomu dasom dalīk bīzmynai. Itū masu pylda zornuos i līk ceplī iz [[rudzs|rudzu]] cysu sutynuotūs. Piec izsutynuošonys līk kambarī atsoltu. Pyrma dūšonys da goldam sagrīž piersta bīzuma škēlem i pacap ar lašini. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latgaļu vyrtuve]] + jt2hcp6hdl9nf3talxn7q1hnb9489d1 + + + + Batveņa + 0 + 1884 + + 31893 + 18768 + 2017-02-25T06:06:55Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + '''Batveņa''' aba '''botva''', aba '''batviņu virīņs''', aba '''batvini''' - nūmīļuots tradicionalais iedīņs Latgolā i Sielejā. Batviņu virīni var ēst i syltu, i soltu. + + +=== Sataiseišonys parāds === +* sorkonī batvini +* gale +* iudiņs +* ozbors +* duorzuoju lopys +* zalī cybuli +* pypyri i lauru lopys +* kriejums + + +Jaunūs sorkonūs batviņu virīni vard kūpā ar vysom batviņu lapeņom. Kapcātu gali pavard, daber ozboru. Vysaidu duorzuoju (batviņu, cukrabatviņu, kuopustu) lopys, leidz vareibai jaunuokys, nūmozgoj i smolkai sagrīž kūpā ar sauveiti zaļūs cybuļu. Kod gale i ozbors pa pusei meiksti, sagatavātūs zaļumus līk pūdā, deļ garžys damat pypyru i lauru lopu. Vard, cikom vyss meiksts. Ād ar kriejumu. + +=== Gavieņa laika batviņu virīņs === +* Sorkonī batvini +* iudiņs +* maizis gorūzenis + + +Gavieņa laikā Latgolā batviņu virīni taisa bez galis: batviņus izvard i nūlaupej, sagrīž škēlem i salīk vyrtā atsaldātā iudinī. Itymā škeistumā īlīk nazcik maizis gorūzeņu deļ skuobuma i ryugšonys. Škeistumu tur muolinī pūdā, i par kaidom 24 stuņdem tys jau gotovs virīņs ar soldonskuobu garžu. Ād ar lizeikom, dakūzdami maizi. Kurūs nakurūs apvydūs itaida batviņu virīņa bez galis sauce '''Uboga asnis'''. + +[[Kategoreja:Latgaļu vyrtuve]] + 1o6hzqlecbf4yidkcl86r45i5kyrrid + + + + Sīrnīki + 0 + 1885 + + 18742 + 18294 + 2011-11-09T13:11:28Z + + Roalds + 50 + + viki+kat + wikitext + text/x-wiki + '''Sīrnīki''' - bīzapīna pluocineiši, latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* 500 gr bīzapīna +* 4 ūlys +* 4-6 lizeikys myltu +* iudiņs +* suoļs +* cukrys + + +500 gr tukla bīzapīna smolkai satrupynoj bļūdā, dalīk 4 ūlys i 4-6 ādamuos lizeikys myltu, drupeit iudiņa, pa garžai suoļa i cukra. Masai vajag byut bīzai, kab jei naizpleikštu pa peteļni. Ar lizeiku līk meikli olejā sakarsātā peteļnē i ar lizeiku daplikšynoj apmāram 1 cm bīzumā. Pluocineišus cap iz nalelys līsmis. Da goldam padūd ar vuorekli. + +Var taiseit i suoleimūs sīrnīkus, tūlaik cukra nalīk, a damat suoļa i garžu, dalīk cybuļus voi casnāgus. + o2ol3mdtxif1gl4pfze0r059l8io0ct + + + + Škvarkys + 0 + 1886 + + 18746 + 18527 + 2011-11-09T13:19:24Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + '''Škvarkys''' - peteļnē ar cybulim sacapta cyukys gale ci kapcāts lašiņs. Lītoj kai pīdovu daudzejim latgaļu tradicionalajim iedīnim - veistekņam, grucei, putrom, virīnim i cytim. + +[[Kategoreja:Latgaļu vyrtuve]] + dpt6ytixl8d4ne62vpy5dr9dt7ogdmb + + + + Buļbu dasys + 0 + 1887 + + 31912 + 18722 + 2017-02-25T06:10:05Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + '''Buļbu dasys''' - tradicionals latgaļu iedīņs. + +=== Sataiseišonys parāds === +* buļbis +* cyukys gale +* cybuļs +* cyuku zornys +* kriejums +* pypyri +* suoļs + + +Buļbis nūskut i sagrīž voi satarkavoj iz rupys tarkys, smolkai sagrīž cyukys gali i cybuli. Damat suoļa i pypyru. Vysu cīši samaisa i pylda brangai izteireituos cyukys zornuos i pasirdī. Cap kū tik izkurynuotā ceplī iz pluocis apmāram 45 mynoti. Vys par šaļti sadūrsta ar sokumenim, kab dasys napleisuotu. Svareigai naizjimt uorē par agri! Vajag izjimt viņ tūlaik, kod pasadarejuse eistyn bryuna gorūzeņa. Da goldam padūd korstys ar kriejumu. + +[[Kategoreja:Latgaļu vyrtuve]] + mrosgmgo4h63rf920zt9cbx94tmuy0i + + + + Zacerka + 0 + 1888 + + 18754 + 18753 + 2011-11-09T13:25:47Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Zacerka''' aba '''zacirka''' - pīna virīņs ar mozom kļockeņom, tradicionals latgaļu iedīņs, pazeistams taipoš Lītovā, Boltkrīvejā, Ukrainā i Puolejā. + +===Sataiseišonys parāds=== +* mylti +* ūla +* pīns +* svīksts +* suoļs +* cukrys + + +Myltus sajauc ar ūlu, suoli i cukru. Nu dabuotuos meiklis, viļojūt pierstūs, taisa mozys slūksneitis i līk vyrtu pūdā ar nadaudzi iudiņa, piec dalej kluot pīna. Var likt par reizi pīnā, viņ tūlaik vajag nūtaļ maiseit. Zacerku da goldam padūd ar svīstu. + n3kc74j24i3nvvd8ihm3sl8yrufppbq + + + + Ūlukne + 0 + 1890 + + 18750 + 18525 + 2011-11-09T13:23:53Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + '''Ūlukne''' aba '''ūlinīks''' - tradicionals latgaļu iedīņs, bīzs sacapums nu sakultu ūlu, myltu, pīna i lašiņa. + +[[Kategoreja:Latgaļu vyrtuve]] + 3x5qako967h4468nupqdgtz9xst3m3b + + + + Miļtinīks + 0 + 1891 + + 31451 + 31449 + 2016-06-02T03:18:23Z + + Roalds + 50 + + vandalizmys + wikitext + text/x-wiki + '''Miļtinīks''' - tradicionals latgaļu iedīņs, bīzs sacapums nu myltu, pīna i lašiņa. + +[[Kategoreja:Latgaļu vyrtuve]] + ex837uxwso79xrh0j9z11jjeueitwam + + + + Latgolys rysa + 0 + 1892 + + 18729 + 18717 + 2011-11-09T12:55:01Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Latgolys rysa''' - pīna virīņs ar buļbu skaideņom, tradicionals latgaļu iedīņs. + +===Sataiseišonys parāds=== +* 2 buļbis +* iudiņs +* suoļs +* pīns + + +Galis mašinē samaļ navyrtys buļbis (pa 2 buļbys sevkuram āduojam) i nūskoloj nu jūs stērkeli: aplej ar soltu iudini i jū nūlej, i tai nazcik reižu. Samoltuos buļbis ber korstā pasuoleitā iudinī i pavards mynoti pīci, dasaverūt, kab naizškeistu. Tūlaik dalej pīna, i virīņs gotovs. + +[[Kategoreja:Latgaļu vyrtuve]] + d1rkmj1d95urjmi0z7ga9qeu3rjmu1v + + + + Kūčys + 0 + 1893 + + 18728 + 18716 + 2011-11-09T12:54:58Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Kūčys''' - vyrti kvīšu putruomi madsiudinī ci keisielī, tradicionalais latgaļu Zīmyssvātku iedīņs. + +===Sataiseišonys parāds=== +* kvīšu putruomi +* iudiņs +* mads + + +Kvīšu putruomus nūmozgoj, izmiercej i izvard. Dabuotajai putrai dalej ar madu saldynuotu iudini ci saldynuotu dzērviņu keisieli. Var dalikt saputuotu kriejumeņu. Ād Zīmyssvātku vokorā. + +[[Kategoreja:Latgaļu vyrtuve]] + r2zwdmerx234e2drj6xzw3flvo9hcvr + + + + Auzu keisieļs + 0 + 1894 + + 18721 + 18692 + 2011-11-09T12:52:17Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Auzu keisieļs''' - vīns nu tradicionalū latgaļu iedīņu. Cīši vīglai i liešai sataisoms iedīņs. tok aizprosa laiku. + +===Sataiseišonys parāds=== +* Auzys +*Iudiņs + + +Treis dīnys aiz agra traukā samārc auzys - aplej ar iudini i pastota syltā vītā, kab aizskuobtu. Kod atsarūn putys, tūlaik auzys līk vardpūdā i sasylda, piec caur sīteņu voi marli puorkuoš. Dabuotū bīzumu karsej i nūtaļ maisa, cikom keisieļs sabīzej. Dreiži salej korstu bļūdeņuos, pamat, kab sasteivātu. Izīt keisieļs ar skuobonu garžu. Ād atsaldātu, dadzer pīna. + +[[Kategoreja:Latgaļu vyrtuve]] + 033hnu6s3l9waokkh4nbrkiwc93wjhg + + + + Kukuleiši + 0 + 1895 + + 18727 + 18714 + 2011-11-09T12:54:56Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Kukuleiši''' - myltu rutuleiši ar saldynuotu iudini. Tradicionals latgaļu Zīmyssvātku iedīņs. + +===Sataiseišonys parāds=== +* iudiņs +* mads ci cukrys +* mylti + + +Izvard iudiņa, jū saldynoj ar madu ci cukru i atsaļdej. Nu myltu saveļ rutuleišus i ād kūpā ar saldynuotū iudini. + +[[Kategoreja:Latgaļu vyrtuve]] + qf3i2dcx046x5h0ljdfaqdfp5x6io8y + + + + Iz ūgļu capta siļče + 0 + 1896 + + 18857 + 18805 + 2011-11-10T08:15:31Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + '''Iz ūgļu capta siļče''' - tradicionals latgaļu iedīņs. + +===Sataiseišonys parāds=== +* suoleita siļče +* buļbis + + +Jam palelu tuklu suoleitu siļči. Izteirej, satyn papeirā (ar vysu golvu i asti) i līk ceplī iz ūgļu - taidu, kurys jau tykušys palākys. Kod papeirs apgruds, siļče gotova. Padūd da goldam ar buļbem. + +Ka grib, izcaptū siļči var īlaist bļūdeņā ar ryugušnīku. Buļbis padūd pa sevim. + +[[Kategoreja:Latgaļu vyrtuve]] + 4iurnsfb0wdxfbkoi1kfji49169miy6 + + + + Raugeņa + 0 + 1897 + + 24932 + 18740 + 2012-09-21T11:25:04Z + + 141.192.160.178 + + wikitext + text/x-wiki + '''Raugeņa''' - latgaļu nacionalais iedīņs (dzierīņs) nu rudzu myltu ar pīdavom. Sateikams Latgolā i seņuok latgaļu apdzeivuotuos zemēs Boltkrīvejā. Raugeņu var i dzert kai dzierīni. + +===Sataiseišonys parāds=== +====Skuobuo raugeņa==== +* litris rudzu myltu īrauga +* litris iudiņa +* lašiņs +* cybuli +* pupys +* buļbis + + +Vīnu litri rudzu myltu īrauga izškeidynoj vīnā litrī iudiņa. Smolkai sagrīztu lašini sacap ar cybulim. Pa sevim izvard pupys, juos meikstys izgolda i īlīk iudiņa i īrauga maisīnī, dabuotū masu izvard i dalīk ar cybulim sacaptuo lašiņa. Padūd da goldam ar buļbem. + + +====Soldonuo raugeņa==== +* litris rudzu myltu īrauga +* litris iudiņa +* kaltāti uobeli +* mads ci cukrys + + +Vīnu litri rudzu myltu īrauga izškeidynoj vīnā litrī iudiņa. Dalīk kaltātu uobeļu, mads voi cukra. Ād kai soldonū iedīni. + +[[Kategoreja:Latgaļu vyrtuve]] + 35gu6y9tinw24njnu65kkafbn06x6t6 + + + + Stakaņs + 0 + 1898 + + 19885 + 18389 + 2012-01-17T12:20:41Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + '''Stakaņs''' aba '''stoks''' - latgalīšu nacionalais iedīņs nu kaņapu i buļbu, a voi viņ nu grudynuotu kaņapu. + +[[Kategoreja:Latgaļu vyrtuve]] + mzbx4cxcyci09prvnhoq08trpxyn3vy + + + + Bygucs + 0 + 1899 + + 18694 + 18377 + 2011-11-09T11:44:28Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + '''Bygucs''' — latgaļu tradicionalais gavieņa laika iedīņs nu sadukurātu buļbu, pupu i lynsāklu oleja. + +[[Kategoreja:Latgaļu vyrtuve]] + d6vivu1h9n2tz101pjogm48im134wor + + + + Cureite + 0 + 1900 + + 18701 + 18380 + 2011-11-09T12:08:49Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + '''Cureite''' aba '''ubogaine''' ('''ubagine''') - tradicionals latgaļu iedīņs nu satrupynuotys maizis saldynuotā iudinī. + +[[Kategoreja:Latgaļu vyrtuve]] + mt8l53axvbmqiq68jv9z5xvck8685v9 + + + + Dzjupka + 0 + 1901 + + 18825 + 18702 + 2011-11-09T18:12:02Z + + 81.198.226.239 + + wikitext + text/x-wiki + '''Dzjupka''' aba '''cjupka'''— tradicionals latgaļu iedīņs nu malnuos maizis gabaleņu lynsāklu olejā ci pīnā, a voi nu bīzapīna gabaleņu pīnā. Var damest suoļa, dagrīzt cybuļu, īdrabēt vyrtys buļbis (a voi ādūt juos dakūst). + +[[Kategoreja:Latgaļu vyrtuve]] + eaanwlte1kaaf4cqq150rnl1m4jjjvh + + + + Ramans + 0 + 1902 + + 18739 + 18385 + 2011-11-09T13:03:39Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + '''Ramans''' - paraudzāta maizis īrauga putra, latgaļu tradicionalais iedīņs. + +[[Kategoreja:Latgaļu vyrtuve]] + sjfdib9wcwblwudimdhta1jhtj7i7l9 + + + + Sutnis + 0 + 1903 + + 18801 + 18797 + 2011-11-09T15:02:25Z + + 81.198.226.239 + + wikitext + text/x-wiki + '''Sutiņs''' aba '''sutnis''' - iedīņs nu samolta vysaidu gryudu mistra, nūmīļuots Latgolā i Vydzemē. + +===Sataiseišonys parāds=== +* rudzu gryudi +* kvīšu gryudi +* mīžu gryudi +* auzys +* zierņi +* pupys +* pīns ci ryuguļs +* suoļs + + +Jam rudzu, kvīšu, mīžu, auzu, zierņu i pupu pa vīnai daļai nu sevkura, saber kūpā i pūdā apvard. Piec saber iz teirys drēbis i saulē voi ceplī izkaļtej (var i drupeit apgrudynuot), tūlaik samaļ i puorsejoj. Itai sataiseitūs myltus saber soldonā pīnā voi ryugulī i ād kai škeistu putru. Var damest suoļa ci dalikt kriejuma. + +[[Kategoreja:Latgaļu vyrtuve]] + tu4gt8hdc5flcbklwfnsrgpmfw0ocb0 + + + + Stoks + 0 + 1904 + + 18764 + 18763 + 2011-11-09T13:34:32Z + + 81.198.226.239 + + wikitext + text/x-wiki + '''Stoks''', aba '''štoks''', aba '''stakaņs''', aba '''štokons''' - latgaļu nacionalais iedīņs nu kanepu sāklu. + +===Sataiseišonys parāds=== +* kanepu sāklys +* iudiņs +* cybuli +* suoļs +* buļbis + + +Kanepu sāklys sakolta (var apgrudynuot) i baļgeitē sastokoj (saštokoj), aplej ar iudini i satryn ar lizeiku. Dalīk cybuļu i suoļa. Dabuotū masu līk iz maizis, a voi ād kūpā ar buļbem. + +[[Kategoreja:Latgaļu vyrtuve]] + aepcfdzv5ynbhp1sajfxlmtek3fncx3 + + + + Buļbis ar katuku + 0 + 1905 + + 18696 + 18513 + 2011-11-09T12:01:53Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + '''Buļbis ar katuku''' - naskustys, ar vysu myzu iz ūgļu captys buļbis, a voi ar vysu myzu izvyrtys buļbis, tradicionalais latgaļu iedīņs. + +[[Kategoreja:Latgaļu vyrtuve]] + tg6zerki5b9ja81q63ujfngi0ck8y3n + + + + Golvys sīrs + 0 + 1906 + + 27040 + 18704 + 2013-01-22T08:58:18Z + + Turaids + 172 + + + Pīvīnuoju kategoreju. + wikitext + text/x-wiki + '''Golvys sīrs''' - latgaļu nacionalais iedīņs nu gabalenim sagrīztys, sasteivynuotys i zam slūga samīgtys vyrtys cyukys golvys. + +===Sataiseišonys parāds=== +* vyrta cyukys golva + +Cyukys golvu izvard labi meikstu, sagrīž smolkim gabalenim. Saber sagrīztū gali sīra kulē, līk zam akmiņa i nūmīdz. Da goldam padūd sagrīztu škēlem. + +[[Kategoreja:Latgaļu vyrtuve]] + hyydu270q9gvy69n02h2sdfj5iacmgv + + + + Oknu sīrs + 0 + 1907 + + 18732 + 18731 + 2011-11-09T12:57:37Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Oknu sīrs''' - latgaļu nacionalais iedīņs nu samoltu i zam slūga samīgtu oknu. + +===Sataiseišonys parāds=== +* oknys +* gale +* garžys + + +Oknys i galis tuklumeņu samaļ, damat garžu, līk sīra kuleitē i nūmīdz zam akmiņa kai sīru. Izīt oknu sīrs. + +[[Kategoreja:Latgaļu vyrtuve]] + qiedrcfspbei4bv799ier61sarhasq5 + + + + Skuobuļs + 0 + 1908 + + 18743 + 18410 + 2011-11-09T13:12:41Z + + Roalds + 50 + + viki+kat + wikitext + text/x-wiki + '''Skuobuļs''' - maizis īrauga putra ar ozboru, latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* iudiņs +* ozbors +* maizis raugs +* kriejums ci olejs + + +Iudinī saber ozboru i pavard, tūlaik dalīk maizis īraugu. Gotovam skuobuļam dalej kriejuma voi oleja. + +[[Kategoreja:Latgaļu vyrtuve]] + 4bvw53k5dmn8adao6i0g879h0auht3k + + + + Saladuks + 0 + 1909 + + 18741 + 18477 + 2011-11-09T13:09:28Z + + Roalds + 50 + + viki+kat + wikitext + text/x-wiki + '''Saladuks''' aba '''saladuka''' — latgaļu gavieņa laika iedīņs. Iedīņa pasauka sīnama ar vuordim "soldons" i "salynōt". Pādejū lītoj, dorūt olu, i jis zeimoj 'aplīt īsolu ar vardušu iudini kubulā'. Iudinī izškeist īsolā asūšuos cukra lītnis, i nu tuo škeistums teik soldons. + +===Sataiseišonys parāds=== +* rudzu gryudi +* iudiņs + + +Vasalus rudzu gryudus sadīdzej, izkaļtej i rupai samaļ. Piečuok itūs myltus vard iudinī, cikom izīt pabīzs vyrums, leidzeigs keiseļam voi marmeladam. Jam labi vīņ soldona garža. Ād vīnu pošu voi kūpā ar rupu maizi. Var ēst ar pīnu. + +[[Kategoreja:Latgaļu vyrtuve]] + mtcjm8dm6miwp7lpco2owbu9fdkbs6l + + + + Stuļčs + 0 + 1910 + + 18748 + 18476 + 2011-11-09T13:22:30Z + + Roalds + 50 + + + viki+kat + wikitext + text/x-wiki + '''Stuļčs''' aba '''stuļčuks''' — latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* zierņu mylti +* lynsāklu olejs + + +Smolkai samoltus voi gleizdynuotus zierņu myltus pa mozam ber vardūšā iudinī i nūtaļ maisa, cikom sabīzēs. Tūlaik lej bļūdōs voi škeivūs i atsaļdej, sagrīž škēlem i ād, aplejūt ar lynsāklu oleju. Škēlis gona styngrys, juos var pajimt rūkā. Stuļči var ēst i syltu, i soltu. + +Pa cytam recepta variantam, stuļčuks irā vyrtys i atsaldātys, škēlem sagrīztys buļbis, kurys sagryuž ar dukuri i samaisa ar lynsāklu oleju i svīžu cybuļu gabalenim. + +[[Kategoreja:Latgaļu vyrtuve]] + pi7ylb6xe7oudp72hnzmi3eb10of1ko + + + + Komys + 0 + 1911 + + 18725 + 18711 + 2011-11-09T12:53:54Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Komys''' — lelys, ar gali piļdeitys kļockys, latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* smolkī mylti +* pīns +* gale +* svīksts + + +Nu smolkai samoltu myltu taisa deļ komu bīzu meikli, jū meica pīnā. Sataisa taidus kai blīneņus, izplikšynoj, līk vydā sagrīztu tuklū voi līsū gali. Savylynoj komys opolys kai buļbeitis i līk vardušā iudinī. Izvyrtys komys izjam nu iudiņa i apcap iz peteļnis ar svīkstu. Var ēst i bez apcepšonys, ar tū pošu škeistumu, kurymā komys vyra. + +Komu piļdejums var byut voi viņ gale, a voi gale kūpā ar duorzuojim. + +[[Kategoreja:Latgaļu vyrtuve]] + c3dc8mlf58vkekeuqjsu01531qbk0jr + + + + Cymuss + 0 + 1912 + + 18800 + 18799 + 2011-11-09T15:01:12Z + + 81.198.226.239 + + wikitext + text/x-wiki + '''Cymuss''' — būrkuonu sutynuojums ar svīkstu (i ar cytom pīdavom voi bez jūs). Tys irā vīns nu latgaļu nacionalūs iedīņu. + +===Sataiseišonys parāds=== +* būrkuoni +* svīksts + +Būrkuonus salīk vardpūdā, izlīk viersā svīkstu i ilgai sutynoj. Var sutynuot viņ būrkuonus ar svīkstu, a voi dalikt vēļ buļbis i gali. + +[[Kategoreja:Latgaļu vyrtuve]] + jsox2qb5ujylyo964g05ha0vm5dp4qc + + + + Gryuslis + 0 + 1913 + + 26598 + 18796 + 2012-12-31T00:56:47Z + + Turaids + 172 + + + Eiss rakstīņs. + wikitext + text/x-wiki + '''Gryuslis''' — tradicionals latgaļu iedīņs nu sagryustu buļbu, zierņu, pupu i kanepu. Kurūs nakurūs Latgolys apvydūs ar vuordu ''gryuslis'' apzeimoj [[Buļbu meiceknis|buļbu meicekni]]. + +{{Eiss rakstīņs}} + +[[Kategoreja:Latgaļu vyrtuve]] + nyecbu7wxyr8z51a8mx9wf4je3dee79 + + + + Žagareni + 0 + 1914 + + 23713 + 18758 + 2012-06-26T08:31:57Z + + 195.50.218.242 + + /* Sataseišonys parāds */ + wikitext + text/x-wiki + '''Žagareni''' - olejā vyrti capumi, tradicionals latgaļu soldonums. + +===Sataseišonys parāds=== +* 400 gr myltu +* ūla +* cukrys +* kriejums +* citrona sula +* citrona mizeņa +* soda +* olejs +* cukrapudra + + +Bļūdā īsyt ūlu, damat cukra i dalej citrona sulys. Datarkavoj citrona mizeņu i sakuļ. Dalīk 1/2 l kriejuma i samaisa. Daber 400 gr myltu, sodu i pa mozam suoc kuļcinēt meikli. Ka jei par meiksta, pa drupeitei daber vēļ myltu, cikom meikle vaira nalypst pi rūku i jū var ruļavuot. Vajag vērtīs, kab myltu nadasabārtu par daudzi, tūlaik žagareni byus pacīti. Lobuok, kab meikle drupeit meikstuoka, a na par cīta. Iz golda pabuorsta myltu, izlīk meikli i ruļavoj. Ka meikle meiksta i lypst pi golda, zamoškā pakaisa myltu. Izviļuotū meikli sagrīž apmāram 5 cm plotom slūksneitem, a juos sagrīž rombenim. Ar nazi sevkura rombeņa vyducī sataisa apmāram 1 cm garu īgrīzumu. Vardpūdā īlej oleja i sakarsej da tam, kab, īlasynojūt iudiņa lasi, olejs čierkstātu. Oleja vajag dasavērt, kab napuorkorstu. Kod olejs sakarss, līk vydā žagareņus i cap iz lelys guņs. Žagareņus apcap nu vīnys pusis, apgrīž ūtraiži i apcap ūtru pusi, cikom žagareni zeļteitai bryuni. Ar putu lizeiku žagareņus salīk traukā. Kod jī drupeit atsoluši, puorkaisa ar cukrapudru. + +[[Kategoreja:Latgaļu vyrtuve]] + 6hd19rr69v7ye1jbx9fvl5tclm3rfmj + + + + Virtiņs + 0 + 1915 + + 18751 + 18529 + 2011-11-09T13:24:25Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + '''Virtiņs''' - latgaļu tradicionalais iedīņs nu vyrtys naraudzātys maizis meiklis. Da goldam padūd ar svīkstu. + +[[Kategoreja:Latgaļu vyrtuve]] + dou91eb2fismuldugv5vyobnj4x04wm + + + + Trombelis + 0 + 1916 + + 18749 + 18531 + 2011-11-09T13:23:15Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + '''Trombelis''' - latgaļu tradicionalais iedīņs nu vyrtu buļbu, tauku i cybuļu. + +[[Kategoreja:Latgaļu vyrtuve]] + 5pa4kz1zyltugo88fg5w3adtdahl8h4 + + + + Karseknis + 0 + 1917 + + 18710 + 18536 + 2011-11-09T12:25:42Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + '''Karseknis''' - putra nu myltu i ūlu, tradicionals latgaļu iedīņs. + +[[Kategoreja:Latgaļu vyrtuve]] + 7hyggs87cpzw8yj1o1clo0s0trymm7o + + + + Kanepīns + 0 + 1918 + + 18709 + 18548 + 2011-11-09T12:17:41Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + '''Kanepīns''' - kanepu pīns, latgaļu tradicionalais dzierīņs. Nazkurymūs apvydūs kanepīnu taiseja soldonu, a cytur jū gatavēja nasoldonu i maiseja ar gūvs pīnu i kuopustim. + +[[Kategoreja:Latgaļu vyrtuve]] + 8umi7muja9zf7lk8gvq48zxcrwxiufo + + + + Juknova + 0 + 1919 + + 18708 + 18541 + 2011-11-09T12:17:06Z + + Roalds + 50 + + + kat + wikitext + text/x-wiki + '''Juknova''' - tradiconals latgaļu iedīņs nu iudinī trupynuota bīzapīna. + +[[Kategoreja:Latgaļu vyrtuve]] + 88zt0n07hj4vxkzk1eb92raduhgs0fx + + + + Buļbu meiceknis + 0 + 1920 + + 18698 + 18544 + 2011-11-09T12:05:23Z + + Roalds + 50 + + +kat + wikitext + text/x-wiki + '''Buļbu meiceknis''' aba '''styumīņs''' - sagryustys buļbis, tradicionals latgaļu iedīņs. Kur nakur Latgolā buļbu meicekņa sauc par [[Gryuslis|gryusli]]. + +[[Kategoreja:Latgaļu vyrtuve]] + 3yvsmg1c8qan2oa4eeitw6gvhrabah9 + + + + Valdis Dombrovskis + 0 + 1921 + + 29904 + 28714 + 2013-06-14T15:27:24Z + + Russavia + 1417 + + + [[:commons:COM:FR|File renamed]]: [[File:Valdis Dombrovskis 2011.jpg]] → [[File:Valdis Dombrovskis 2009.jpg]] this photo is from 2009, so renaming to correct the date error in the file name + wikitext + text/x-wiki + [[Fails:Valdis Dombrovskis 2009.jpg|right|200px|thumb|Valdis Dombrovskis 2011 godā]] +'''Valdis Dombrovskis''' (dzims [[1971]] goda [[Labeibys mieness|labeibys m]]. 5 d.) — Latvejis ministru prezidents nu 2009 goda. Aiz laika jis beja [[Seima|Seimys]] deputats, finanšu ministris i Europarlamenta deputats. Piec vuiceibys fiziks i ekonomists. + +{{nadabeigts rakstīņs}} + +{{DEFAULTSORT:Dombrovskis, Valdis}} + +[[Kategoreja:Politiki]] + 1nifsc5tdneg4i8nel3t5rrx37sgh7v + + + + Sarja + 0 + 1926 + + 31388 + 28715 + 2016-03-30T13:02:46Z + + 91.9.112.211 + + use file from commons + wikitext + text/x-wiki + {{Infoskreine Latvejis upe +| pasauka = Sarja +| atvaiga_pasauka = Sar'yanka River.jpg +| atvaiga_aprakstejums = +| zemislopys_atvaigs = Latgolys upu zemislopys Sarjanka.PNG +| kulturviesturiskais_nūvods = Latgola +| iztaka = Bižys azars +| viersupe = +| satakupis = +| ītaka = Daugova +| baseina_vaļsteibys = [[Latveja]], [[Boltkrīveja]] +| satecis_baseins = 1047 +| tek_car = [[Latveja]], [[Boltkrīveja]] +| garums = 77 +| garums_latvejā = 50 +| iztakys_augstums = 172,2 +| ītakys augstums = +| nūkritīņs = 63 +| vydyskais_puorteciejums = +| gods_puorteciejums = 0,25 +| zeimeiguokuos_datakys = Čaušeica, Osyuneica, Turja, Voļčica +| leluokuos_upsolys = +| dzeivuojamys_vītys = Sarja (Boltkrīvejā) +| cytys_pasaukys = +}} + +'''Sarja''' <ref>M. Andžāns "Reits", Viļāni, 1933, 9-10 psl.; "Zīdūnis", 1939 g., nr. 5, 137 psl.</ref> (latvīšu: ''Sarjanka'', boltkrīvu: ''Сар’янка'') - upe Latgolā i Boltkrīvejā, [[Daugova|Daugovys]] lobuos upmalis dataka. Tak car [[Dagdys nūvods|Dagdys nūvodu]] i [[Ludzys nūvods|Ludzys nūvodu]] Latvejā i Vicebskys apgabaļa Drysys (Verhņadzvinskys) rajonu Boltkrīvejā. Iztak nu Bižys azara [[Rundānu pogosts|Rundānu pogostā]]. Latvejis teritorejā upe 15 km garumā melioriāta, a Boltkrīvejis teritorejā cīši moz cylvāka puorgrūzeita. Zamyn datakys Muoļneicys 7 km garumā Sarja sadora Latvejis i Boltkrīvejis rūbežu.<ref>Eņciklopedeja "Latvejis doba", Presis kuormi, 1998, ISBN 9984-00-312-4</ref> Upe aizasuoc Rāznovys kauprainē, tuoļuok tak car Dagdys kaupraini, a Boltkrīvejā car Polocka zamaini. Ītak Daugovā puors kilometru zamyn Drysys (Verhņadzvinskys). + +Upis teciejuma vydsdaļā nadzeivojams apvyds, nazkodejuos solys tukšys, tok atrūnami vierteigi dobys i vaidu laiku pīminiekli. Upmalis prīžu mežūs i kluonu pļovuos daudzi ratu auguoju i dzeivinīku škiru, kurys īraksteitys Latvejis i Boltkrīvejis Sorkonajā gruomotā - mežoguo gladiola, [[malnuo žugure]], bryunais luocs, zyvu dzeneits i cyti. + +== Nūruodis i olūti == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Latgolys upis]] + q9q5nblvpm4nm8gc94klltyadbcbrk6 + + + + Latgalīšu iedīni + 0 + 1930 + + + 18688 + 2011-11-09T10:46:29Z + + Roalds + 50 + + [[Latgalīšu iedīni]] tyka puorsauktys par [[Latgaļu iedīni]], lītojūt puoradresaceju: Koņsekvenceja + wikitext + text/x-wiki + #REDIRECT [[Latgaļu iedīni]] + lpz13n1wdf11yhwp2hka6hp4xr5xnut + + + + Kategoreja:Kulinareja + 14 + 1931 + + 28716 + 26594 + 2013-03-08T02:40:57Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 54 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6010682]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Kulinareja}} +[[Kategoreja:Kultura]] + +[[fa:رده:آشپزی]] + fz5e1fjj0dj27lh5nq6b5cusvvqxy25 + + + + Kategoreja:Latgaļu vyrtuve + 14 + 1932 + + 18690 + 2011-11-09T11:12:35Z + + Roalds + 50 + + jauna kategoreaja: Latgaļu vyrtuve + wikitext + text/x-wiki + {{DEFAULTSORT:Latgaļu vyrtuve}} +[[Kategoreja:Latgolys kultura]] +[[Category:Kulinareja]] + 9n5ua0syo7zmmya527au9hcytpmmupz + + + + Guļbešnīki + 0 + 1933 + + + 18705 + 2011-11-09T12:13:37Z + + Roalds + 50 + + puoradresacejis puslopa + wikitext + text/x-wiki + #REDIRECT [[Buļbešnīki]] + 8ewyjjb9nr2gby2mqyk1fidpk1nuonp + + + + Boltuos dasys + 0 + 1934 + + 31902 + 31826 + 2017-02-25T06:08:25Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + '''Boltuos dasys''' – latgaļu nacionalais iedīņs. + +=== Sataiseišonys parāds === +* putruomi +* gale +* pypyri +* suoļs +* lauru lopys + + +Izvard putruomus ar smalkai sagrīztim galis kimūsenim. Suoļa, lauru lopu i pypyru damat pa garžai. Pylda dasys na cīši styngrai. Cap ceplī, cikom gotovys. Pyrma cepšonys var apvirt i paturēt zam slūga. + +[[Kategoreja:Latgaļu vyrtuve]] + da1312mctlv9f18ejc39hrnh51ns2dw + + + + Batviņu virīņs + 0 + 1935 + + + 18769 + 2011-11-09T13:41:04Z + + Roalds + 50 + + "[[Batviņu virīņs]]" puorsauču par "[[Batveņa]]": Precizai + wikitext + text/x-wiki + #REDIRECT [[Batveņa]] + 2tcsaols7c7f3jdcwj4xtdj0vnhkc81 + + + + Ruļads + 0 + 1936 + + 18821 + 18820 + 2011-11-09T17:51:24Z + + 81.198.226.239 + + wikitext + text/x-wiki + '''Ruļads''' – tradicionals latgaļu iedīņs nu cyukys galis ar pīdavom. + +===Sataiseišonys parāds=== +* cyukys suonkauleiši +* ūlys +* būrkuoni +* casnāgs +* pypyri +* suoļs + + +Jam cyukys suonkauļu gali, dalīk ūlys, škēlem sagrīztus zaļus būrkuonus, damat pypyru, suoļa, sasmolcynuotu casnāgu. Vysu izruļavoj i aptyn ar dīgu. Saveistej drēbē i sašyun, tūlaik līk vyrtu. Vajag virt tai ilgai, cikom ruļadā var īdūrt ar sokumenim. Piec viršonys ruļadu līk iz vyds diveju goldskaleišu i slūdzej zam akmiņa. + +[[Kategoreja:Latgaļu vyrtuve]] + d0gw71rt51zo7i3pd0ejjbu4e01sy5x + + + + Paneju peirāgi + 0 + 1937 + + 18861 + 18819 + 2011-11-10T08:21:15Z + + Roalds + 50 + + vikifikaceja + wikitext + text/x-wiki + '''Paneju peirāgi''' - latgaļu nacionalais iedīņs. + +===Sataiseišonys parāds=== +* 1 litris paneju +* 2½ gluozis cukra +* mylti + + +Jam 1 litri paneju, damat 2 gluozis cukra i aizvard. Iz peteļnis pagrudynoj vēļ ½ gluozis cukra i īlej korstajuos panejuos. Atsaļdej i īber leidz vajadzeibai myltu. Cap opoluos ci četrustyureiguos pormeitēs. + +[[Kategoreja:Latgaļu vyrtuve]] + i7ckwm45zs2d5x55a4bfd49g7hsiyz9 + + + + Paneju keisieļs + 0 + 1938 + + 31820 + 31811 + 2016-12-09T09:36:38Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31811 dated 2016-12-09 09:02:37 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Paneju keisieļs''' - latgaļu nacionalais dzierīņs. + +===Sataiseišonys parāds=== +* panejis +* citrona mizeņa +* malnuo maize +* stērkele +* cukrys + + +Panejis aizvard, damat citrona mizeņu, satarkavuotys sabrīdušys malnuos maizis, stērkelis, cukra i aizvard vēļ reizi. + +[[Kategoreja:Latgaļu vyrtuve]] + b9px3ypwc5azsvxzyxe4haa0lnsqzxl + + + + Krapaunīks + 0 + 1939 + + 31329 + 18859 + 2016-03-03T11:40:45Z + + Stiernīts + 2966 + + + Stiernīts pārvietoja lapu [[Krapanīks]] uz [[Krapaunīks]] + wikitext + text/x-wiki + '''Krapanīks''' - būrkuonu peirāgs, latgaļu nacionalais iedīņs. + +[[Kategoreja:Latgaļu vyrtuve]] + 5qu5h9keiwj2s9xb8c4osm08mxkqzw3 + + + + Tatarvans + 0 + 1940 + + 18858 + 18817 + 2011-11-10T08:16:03Z + + Roalds + 50 + + + wikitext + text/x-wiki + '''Tatarvans''' aba '''molozejs''' - jauna gūvs pīna (tatarvana) sacapums ar vystys ūlom, tradicionals latgaļu iedīņs. + +[[Kategoreja:Latgaļu vyrtuve]] + o0jlri7g9jpag2004v3pbqkmq80y3aq + + + + Studiņs + 0 + 1941 + + 18862 + 18824 + 2011-11-10T08:23:06Z + + Roalds + 50 + + vikifikaceja + wikitext + text/x-wiki + '''Studiņs''' aba '''studzine''', aba '''steivineica''' - sakreciejs, sasteivynuots galis voi zivs izvyrums ar pīdavom, tradicionals latgaļu iedīņs. Parostai Latgolā studini taisa nu cyukys, teļa i vuškys kuoju i golvys dalis, tok, pīvadumam, pa Daugovys molai dzeivojūšī latgali tradicionalai vard studini i nu soma (''Silurus glanis''). + +===Sataiseišonys parāds=== +====Cyukys studiņs==== + +* cyukys prīškejuo stuļpeite +* cyukys auss +* 2 cyuku kuojenis +* 1 lauru lopa +* smuordeigī pypyri, malnī pypyri +* cybuļs +* 2 casnāgu zūbeni + + +Vardpūdā salīk nūlaupeitu cybuli, casnāgu zūbeņus, damat suoļa, pypyru pa garžai (saceisim, 7 smuordeigūs i 10 parostūs pypyru). Nūmozgoj stuļpeiti, auss i kuojis, līk vydā vardpūdā. Dalej iudiņa viņ tai daudzi, kab jis apjimtu gali (ka iudiņa byus par daudzi, studiņs nasakrecēs. Vard iz lelys guņs, kod jau aizvard, puorlīk iz mozuokys guņs, nūsmeļ putys i vard 1,5 - 2 stuņdis. (Var dalikt būrkuonu, ar kurū piec studini īrūšt.) Kod gale izvyruse, studini izjam nu pūda, škeistums palīk vydā. Ausi sagrīž gabalenim, tūlaik skrubynoj gali nu kauleņu i līk bļūdeņā. Kod gale nūskrybynuot, apjauc. Tūlaik jam traukus, kurymūs grib studini padūt da goldam (ka grib īpuškuot, trauka zamoškā kluoj būrkuona ripenis, pīterzuolis lapenis i leidz.). Kod gale salykta pa traukim, nu vardpūdā asūšuo buļjona izsmeļ pypyrus, cybuli, lauru lopys i casnāgu, i puorlej ar buļjonu traukūs salyktū gali tai, kab jis apjimtu vysu gali. Pagaida, cikom atsaļ, i līk soltaunīkā. + +Da goldam padūd ar krenim, cytrona škēleiti, salatu lapeņom i cytim zaļumim. + + +====Soma studiņs==== + +* soms (mozais, da 1 kg) +* suoļs, pypyri, cytys garžys + + +Studiņam vysuluobuokī mozī somi, kurī sver ni vaira kai 1 kg. Somu sagrīž gobolim, pamat ar vysu uodu i mugorkauli, nu golvys izgrīž viņ žaunys. Vysu līk vardpūdeņā mozā iudinī, damat suoļa, pypyru, garžu. Kod zivs meiksta, salīk mozūs trauceņūs, puorlej ar puorkuostu buļjonu. Kod buļjons sasteiviejs, studiņs gotovs. + +[[Kategoreja:Latgaļu vyrtuve]] + 8bgataczrn7fdj97vm7zqarjas89wh3 + + + + Kaunota + 0 + 1942 + + 28717 + 27045 + 2013-03-08T02:41:08Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801365]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Kaunota''' ir cīms [[Rēznis nūvods|Rēzeknes nūvodā]], [[Kaunotys pogosts|Kaunotys pogosta]] centrs. Izvītuota storp [[Kaunotys azars|Kaunotys azaru]] i [[Pārtovys upe|Pārtovys upi]] natuoļi nu autoceļa P55 28 km nu nūvoda centra [[Rēzekne|Rēzeknes]] i 274 km nu [[Reiga|Reigis]]. + +Apdzeivuoto vīta izaveidojuse ap bejušū [[Kaunotys muiža|Kaunotys muižis]] centru. 1925. godā Kaunotai pīškeirts bīzi apdzeivuotis vītys ([[cīms|cīma]]) statuss. Kaunotā darbojās pogosta puorvalde, vydusškola, bārnuduorzs, tautys noms, bibļioteka, ambulance, divi veikali. + +== Nūruodis i olūti == + +# [http://vietvardi.lgia.gov.lv/vv/to_www_obj.objekts?p_id=4427&p_back=0** LĢIA vītvuordu datubāze] + +[[Kategoreja:Kaunatys pogosts]] + 6ui3fw8fhvpem28t4uajrndyt7f0lig + + + + Kaunotys pogosts + 0 + 1945 + + 28718 + 21208 + 2013-03-08T02:41:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801201]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kaunatys pogosts +| zemislopa = Kaunatas pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Kaunatas pagasts COA.png +| gerba_pasauka = Gerbs +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods +| nūvoda_pasauka = Rēznis nūvods +| centrys = Kaunota +| pluots = 170 +| dzeivuotuoju_skaits = 1327<ref name="cit1">[http://www.pmlp.gov.lv/lv/statistika/dokuments/2011/2ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2011.]</ref> +| dzeivuotuoji_gods = 2011 +| bīzeiba = {{#expr: 1327 / 170 round 1}} +| īstateits = +| teiklavīta = www.kaunata.lv +}} + +'''Kaunotys pogosts''' ir [[Rēznis nūvods|Rēznis nūvoda]] teritoriāluo vīņeiba tuo dīnvidaustrumūs, [[Rāznys azars|Rāznys azara]] austrumu krostā. Pogosta kūpejo plateiba - 16994,3 ha. +Īdzeivuotoju skaits iz 2011. godu – 1327.<ref name=cit1 /> +2002.godā Kaunatys cīms sviņā 100 godu jubiļeju, bet piļskolni, vālo dzelzs laikmeta uzkolnu kopulaiku ļīcinoj, ka jau sanūs laikūs [[Kaunota]] beja nūvoda centrs.<ref name="cit2">[http://www.rezeknesnovads.lv/rrp/lv/content/2/3/216 Rēznis nūvoda infromateivīis portals]</ref> +Rūbežojas zīmeļūs ar [[Stoļerovys pogosts|Stoļerovys pogostu]], austrumūs ar [[Ludzys nūvods|Ludzys nūvoda]] [[Pyldys pogosts|Pildys]] i [[Rundēnu pogosts|Rundēnu pogostim]], dīnvidūs ar [[Dagdys nūvods|Dagdys nūvoda]] [[Azarnīku pogosts|Azarnīkim]] i [[Andzeļu pogosts|Andzeļu pogostim]], rītumūs ar [[Muokūņkolna pogosts|Muokūņkolna]] i [[Čornajis pogosts|Čornajis pogostim]]. Pogosta centrs atsarūn Kaunotā. + +== Doba == +Upis: [[Rēzne (upe)|Rēzne]], [[Pārtova]], [[Orehovka]]. +Azari – kūpā Kaunotys pogostā ir 32 azari<ref>[http://kaunata.lv/index.html Kaunotys pogosta teiklavīta]</ref> , leluokī - [[Rāzna]], [[Kanatys azars]], [[Idzipoles azars]], [[Partovys azars]], [[Marguču azars]], [[Vaišļu azars]], [[Dubuļu azars]], [[Joniku azars]], [[Akminīšu azars]], [[Silvestrinas azars]], [[Zabeļjes azars]], [[Antropovas azars]]. +Kaunotys pogosts atsarūn [[Rāznys nacionalais parks|Rāznys nacionālajā dobys parkā]], pogosta teritorejā ir [[Lelais Ļīpukolns]] (289,4 m viers jiurys ļeimeņa). Īvāruojamuokī dobys pīmiņekļi - [[Vecslobodys piļskolns]] (220,1 m, viers jiurys ļeimeņa), [[Lelais Mukonu akmiņs]] (apkuortmārs 20,88 m, augstums 5 m).<ref name=cit2 /> + +== Vāsture == +1935.godā Rēznis apriņķa Kaunotys pogosta plateiba beja 244,2 km² i tajā dzeivuoja 10 028 īdzeivuotoji.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 1945.godā pogostā izveiduoja [[Antropova|Antropovas]], [[Dubuļi|Dubuļu]], [[Foļvarkova|Foļvarkovys]], [[Goveika|Goveikas]], Kaunatys, [[Marguči|Marguču]], [[Matuļi|Matuļu]] i [[Virši (cīms)|Viršu]] cīma padūmis, bet pogostu 1949. godā ļikvidāja. Rēznis rajūna Kaunotys cīmam 1954. godā pīvīnuoja Viršu cīma kolhoza "Ļeņina ceļš" teritoreju, 1956. godā - likvidātūs Marguču i Dubuļu cīmus, 1965.godā kolhoza "30 лет октября" teritoreju pīvīnuoja Stoļerovys cīmam, 1981. godā pīvīnuoja Rundēnu cīma teritorejas.<ref>Okupētās Latvijas administratīvi teritoriālais iedalījums. Latvijas Valsts arhīvu ģenerāldirekcija. Rīga, 1997. ISBN 9984-9256-0-9</ref> 1990.godā cīmu reorganizāja par pogostu. 2009.godā Kaunotys pogostu kai admiņistrateivū teritoreju īkļuova [[Rēznis nūvods|Rēznis nūvodā]]. + +== Nūruodis i olūti == +{{nūruodis}} + +{{Rēznis nūvods}} + +[[Kategoreja:Kaunatys pogosts| ]] + 25m55zw4m3qm8mnet9rhb4an3ft4ps5 + + + + Malnais mežastrods + 0 + 1949 + + 31270 + 31267 + 2016-01-06T18:49:01Z + + MPF + 3292 + + better pic + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Malnais mežastrods +| atvaiga_pasauka = Turdus merula -Gran Canaria, Canary Islands, Spain-8 (2).jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Putni ''(Aves)'' +| aiļa = Zvierbulini putni ''(Passeriformes)'' +| saime = Mežastrodini ''(Turdidae)'' +| giņts = Mežastrodi ''(Strix)'' +| škira = Malnais mežastrods ''(Turdus merula)'' +| ziniskuo_pasauka = Turdus merula +| zemislopys_atvaigs = Turdus merula distribution map.png +| zemislopys_aprakstejums = Malnuo mežastroda paplateiba pasaulī +}} +'''Malnais mežastrods''' ci '''malnais strods''' ({{Vol-la|Turdus merula}}; {{Vol-en|Common Blackbird}}; {{Vol-lv|Melnais mežastrazds}}; {{Vol-lt|Juodasis strazdas}}) — mežastrodiņu saimis (''Turdidae'') ailis putyns. Perekli taisa Pūstumu [[Europa|Europā]], [[Azeja|Azejis]] dīnavydu pusē, [[Afrika|Afrikys]] pūstumūs, [[Australeja|Australejā]] i Jaunzelaņdejā. Cieški sateikams putyns [[Latgola|Latgolā]] i vysā [[Latveja|Latvejā]]. + +== Aproksts == +Lela auguma strods, garumā dasnēdz kūna 30 cm, svors 80-125 gr. Tāvaini vysā malni ar spūdru oranži dzaltonu gnēzi. Muotainis i jaunuli tymsai bryuni.<ref>Strazds M. (red.) (2002): Latvejis meža putyni. Latvejis Ornitologejis bīdreiba.</ref> + +===Bolss=== +Putynam soveiga dzīsme - romona, melodiska šviļpuošona. Daudzi dzīd agrai nu reita ci vālai vokorā. +[[Fails:Turdus merula 2.ogg|thumb|left|200px|Malnuo mežastroda dzīsme]] + +=== Dzeivisvīta === +Dzeivoj mežūs ar bīzu pamežu, kod nakod i parkūs, bierzēs, mīstu suodūs, kur daudzi kūku, i pi solu saimisteibom. Perekli taisa naaugustu kūkūs, kryumuojūs. Vydā pakluoj sausu zuoli, sakneitis. Preklī 4-6 ūlys, perej 13-14 dīnu. Izvad div reizis par godu. Jaunuli perekli atstuoj par 13-16 dīnu. + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commons|Turdus merula|Malnais mežastrods}} + +{{DEFAULTSORT:Malnais mežastrods}} + +[[Kategoreja:Dzeivinīki]] + mg26eek6sohjr2r7ord2efvfit3bfxc + + + + Dombrovskis + 0 + 1960 + + + 19088 + 2011-11-23T20:42:08Z + + Edgars2007 + 114 + + Pāradresē uz [[Valdis Dombrovskis]] + wikitext + text/x-wiki + #redirect [[Valdis Dombrovskis]] + fp26qi2dwsqmucue5o09ljt8hgy3roh + + + + Andris Bierzeņš + 0 + 1961 + + 30861 + 30807 + 2015-08-17T08:03:18Z + + Silraks + 2269 + + wikitext + text/x-wiki + {{Infoskreine +|bodyclass = vcard +|name = +|title = '''<big>Andris Bierzeņš</big>''' +|titlestyle = fn org +|headerstyle = +|labelstyle = width:33% +|datastyle = + +|image = [[File:Flickr - Saeima - 10.Saeimas deputāts Andris Bērziņš (ievēlēts no Vidzemes apgabala).jpg|220px]] +|caption = Andris Bierzeņš 2010 godā + +|header1 = Latvejis Vaļsteibys prezidents + +|header2 = 2011 — 2015 +|label2 = +|data2 = +|header3 = +|label3 = Prīškaudzs +|data3 = [[Valdis Zatlers]] +}} +'''Andris Bierzeņš''' ({{vol-lv|Andris Bērziņš}}; [[1944]]) — latvīšu baņkirs i politiks, [[Latveja|Latvejis]] Vaļsteibys prezidents nu 2011 goda leidz 2015 godam. Aiz laika jis beja [[Seima|Seimys]] deputats. Piec vuiceibys radioiņženers. + +== Teiklavītys == +{{Commonscat|Andris Bērziņš (Latvian President)|Andris Bierzeņš}} +* [http://www.president.lv/ Teiklavīta] <small>(latvīšu)</small> + + +{{Nadabeigts rakstīņs}} +{{DEFAULTSORT:Berzinzsz, Andris}} +[[Kategoreja:Latvejis ļauds]] +[[Kategoreja:Politiki]] + 170osu82vbg6tkaymzjvnt76kw1j83n + + + + Bērziņš + 0 + 1962 + + + 19097 + 19091 + 2011-11-23T22:13:53Z + + Xqbot + 96 + + + Robot: Fixing double redirect to [[Andris Bierzeņš]] + wikitext + text/x-wiki + #REDIRECT [[Andris Bierzeņš]] + pxjt6y9begmdnwirdq7zer3vwpc56h8 + + + + Andris Bērziņš + 0 + 1963 + + + 19093 + 2011-11-23T20:55:28Z + + Edgars2007 + 114 + + "[[Andris Bērziņš]]" puorsauču par "[[Andris Bierzeņš]]" + wikitext + text/x-wiki + #REDIRECT [[Andris Bierzeņš]] + pxjt6y9begmdnwirdq7zer3vwpc56h8 + + + + Bierzeņš + 0 + 1964 + + + 19095 + 2011-11-23T20:57:22Z + + Edgars2007 + 114 + + Pāradresē uz [[Andris Bierzeņš]] + wikitext + text/x-wiki + #redirect [[Andris Bierzeņš]] + p54755eimyphuwwpbr4vdiqdeuwe152 + + + + Andris Bierzeņš (prezidents) + 0 + 1965 + + + 19096 + 2011-11-23T20:57:39Z + + Edgars2007 + 114 + + Pāradresē uz [[Andris Bierzeņš]] + wikitext + text/x-wiki + #redirect [[Andris Bierzeņš]] + p54755eimyphuwwpbr4vdiqdeuwe152 + + + + Latgolys mīstu saroksts + 0 + 1970 + + + 19111 + 2011-11-24T08:46:22Z + + Roalds + 50 + + "[[Latgolys mīstu saroksts]]" puorsauču par "[[Latgolys mīsti]]": koņsekveņceja + wikitext + text/x-wiki + #REDIRECT [[Latgolys mīsti]] + 8cflj02n0vv02nblzrdf3t6nwdps825 + + + + Saldus + 0 + 1971 + + 31487 + 28721 + 2016-07-24T17:13:54Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis mīsts +| pasauka = Saldus +| atvaiga_pasauka = Saldus Stad.jpg +| atvaiga_aprakstejums = Saldus Oskara Kalpaka laukums +| gerba_atvaigs = Escut Saldus.png +| gerba_pasauka = Saldus gerbs +| karūga_atvaigs = Bandera Saldus.png +| karūga_pasauka = Saldus karūgs +| koordinatu_zemislopa = Latveja +| latd =56 | latm =39 | lats =59 | latNS =N +| longd =22 | longm =29 | longs =37 | longEW =E +| pluots = 10,10 +| dzeivuotuoji_gods = 2016 +| dzeivuotuoju_skaits = 11 479 <ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf «Latvijas iedzīvotāju skaits pašvaldībās pagastu dalījumā»]</ref> +| bīzeiba = 1136,5 +| viesturiskuos_pasaukys = Frauenburg (''vuocīšu'') +| cytys_pasaukys = +| īstateits = +| mīsta_tīseibys = 1917 +| posta_iņdeksi = LV-3801 +| teiklavīta = www.saldus.lv +}} + +'''Saldus''' irā mīsts [[Latveja|Latvejā]], Kūrzemis nūvodā pa obejom pusem Cīceris upei. Saldus nūvoda administrativais centrys. Atstotums nu Reigys 119 km, a nu sābru mīsta [[Bruocāni|Bruocānim]] tik 7 km. Pyrmū reizi mīsta vuords raksteitūs olūtūs atrūnams 13 godu symtā, tok par mīsta īstateišonu īskaita 1856 godu. Mīsta tīseibys nu 1917 goda, kod Saldus beja Kuļdeigys apleicinī. Pa dzeivuotuoju skaitam Saldus irā 16 lelais mīsts Latvejā. + +==Viesture== +Pyrmū reizi viesturiskūs dokumentūs mīsts aizraksteits 1253 godā. Da 13 godu symta mīsta apleicīnē bejs senejū kuršu piļskolns, kas radazms mīsta gerbā. Da 1914 godam mīsta oficialuo pasauka bejuse Frauenburga (nu vuocīšu volūdys: ''Buobu piļs''). Ap 1314 godu natuoli nu Saldus piļskolna Livonejis ordiņs pastateja pili, ap kuru suoce ceļtīs dzeivojama vīta. mīsts cīši suoce pasalelynuot Kūrzemis gercoga Jākuba vaļdeišonys laikā (nu 1642 da 1682 godam). Tū veicynova īdeveiguo vīta, kur nu Meitovys-Klaipiedys ceļa atguoja ceļš iz ūtrejū gercogistis golvysmīstu [[Kuļdeiga|Kuļdeigu]]. Par Saldus īstateišonys godu īskaita 1856 godu, kod suoce atjaunynuot Pūstumu vaidūs nūgrautū mīstu. mīsta tīseibys daškiertys 1917 godā vuocu okupacejis laikā. Saldus beja pyrmais Latvejis mīsts, kuru nu boļševikim atbreivova Latvejis armejis Kalpaka bataļjons. + +== Teiklavītys == +* [http://www.saldus.lv/ Saldus nūvoda teiklavīta] + +{{nadabeigts rakstīņs}} + +{{Latvejis mīsti}} + +[[Kategoreja:Latvejis nūvodu centri]] +[[Kategoreja:Latvejis mīsti]] + cxkizieak2vi9v2vv4oe1ymo527dios + + + + Veipa pogosts + 0 + 1972 + + 28722 + 19259 + 2013-03-08T02:42:08Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801580]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Veipa pogosts +| zemislopa = Vīpes pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Veipa pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Veipa pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Krystapiļs nūvods +| centrys = Veips +| pluots = 77.0 +| dzeivuotuoju_skaits = 788<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 788 / 77.0 round 1}} +| īstateits = +| teiklavīta = www.vipe.lv +}} + +'''Veipa pogosts''' irā [[Krystapiļs nūvods|Krystapiļs nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora feļčeru punkts, pamatškola, biblioteka, klubs (tautys noms) i amateibys centrys "Māzers". Bazneicu ci cierkvu pogosta teritorejā navā. Uors administrativuos atzaris, pogosta ļauds vysuvaira aizajim kūkapdarē. + +==Viesture== +Viesturiskai Veipa pogosta teritoreja bejuse Daugpiļs apleiciņa '''Mežamuižys pogostā''', kas 1925 godā pasaukts par Veipa pogostu. 1941 godā pogosts daškiersts Jākubmīsta apleicinim. Veipa pogosta pluots bejs 81,9 km² i tymā dzeivova 2366 ļauds.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 1945 godā Veipa pogostā īstateja Veipa i [[Mežuoris pogosts|Mežuoris solys]] padūmi, a pošu pogostu likvidēja. Nu 1949 gods da 1962 godam Veipa sola bejuse Krystapiļs rajonā, a nu 1962 goda Jākubmīsta rajonā. 1966 godā Veipa solai daškiera likvidātū Azarīšu solu, a 1973 godā daļu Veipa solys teritorejis daškiera [[Kūku pogosts|Kūku solai]] i 1977 godā Mežuoris solai.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Krystapiļs nūvods|Krystapiļs nūvodam]]. + +== Rūbeži == +Veipa pogosts tur rūbežu ar: +*[[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Kūku pogosts|Kūku pogostu]] i [[Mežuoris pogosts|Mežuoris pogostu]]; +* [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] [[Uobeļu pogosts|Uobeļu pogostu]]; +* [[Leivuona nūvods|Leivuona nūvoda]] [[Turku pogosts|Turku pogostu]]. + +== Dzeivuotuoji == +Veipa pogostā dzeivoj 788 ļauds. Nu jū 15,3 % (122) da dorbuotnuma vacumam, 63,5 % (509) dorbuotnuma vacumā, a 21,2 % (170) viers dorbuotnuma vacuma. Bezdorba leidzīņs 5,2%.<ref>[http://www.krustpils.lv/faili/paskaidrojuma_ra.pdf Veipa pogosta teritorejis planavīņs]</ref> + +=== Solys === +Veipa pogosta ļauds dzeivoj 17 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Veips (pogosta centrys), Poļakys, Trepe. + +=== Zeimeigi ļauds === +* Aļberts Džarcāns — ritiņnīks, Latvejis čempions sašys braucīņūs i trekā, Helsinku Olimpiskū kaitu dalinīks; +* Evaļds Ambrazevičs - Veipa pogosta viesturnīks, školuotuojs, Daugovys tāmātuojs. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Reiga-Daugpiļs-Puotarnīki (A6), taipoš nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Veipa pogostu škārsoj vīna dzeļžaceļa lineja Reiga-Daugpiļs, iz kurys vīna staceja "Trepe". + +Veipa pogosta teritoreju apkalpoj vīna posta atdale Veips (LV-5238).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Fridriha Bydera pīminis akmiņs - veļteits baltvuocīšu fiziologam i Tarbatys universiteta rektoram; +* Jaundryvu olūts - zamzemis mīdzīņs jū pasaceļ 1,5 m viers zemis; +* Vaiku lelakmiņs - pi juo apsastuojuši aizāstu Pīters I i Napoleons. + +== Nūruodis == +{{nūruodis}} + +{{Krystapiļs nūvods}} + pry3ur9ayxkk02frja59cfmpbq68gtp + + + + Atašinis pogosts + 0 + 1973 + + 28723 + 27025 + 2013-03-08T02:42:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801016]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Atašinis pogosts +| zemislopa = Atašienes pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Atašinis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Atašinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Krystapiļs nūvods +| centrys = Atašine +| pluots = 243.41 +| dzeivuotuoju_skaits = 735<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 735 / 243.41 round 1}} +| īstateits = +| teiklavīta = +}} +[[Fails:Atasine council house.jpg|thumb|260px|Atašinis pogosta padūme 2012 gods pavasara mienesī]] +'''Atašinis pogosts''' irā [[Krystapiļs nūvods|Krystapiļs nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora vydsškola, biblioteka i Romys katuoļu bazneica. + +== Rūbeži == +Atašinis pogosts tur rūbežu ar: +* [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Mežuoris pogosts|Mežuoris pogostu]]; +* [[Leivuona nūvods|Leivuona nūvoda]] [[Rudzātu pogosts|Rudzātu pogostu]] i [[Turku pogosts|Turku pogostu]]; +* [[Modyunis nūvods|Modyunis nūvoda]] [[Mātrainis pogosts|Mātrainis pogostu]]; +* [[Ribinišku nūvods|Ribinišku nūvoda]] [[Seiļukolna pogosts|Seiļukolna pogostu]]; +* [[Varakļuonu nūvods|Varakļuonu nūvoda]] [[Mūrmastinis pogosts|Mūrmastinis pogostu]] i [[Varakļuonu pogosts|Varakļuonu pogostu]]. + +== Dzeivuotuoji == +Atašinis pogostā dzeivoj 735 ļauds, nu jū 86% latvīšu, 11% krīvu i 3% cytu tauteibu ļauds.<ref>[http://www.krustpils.lv/faili/paskaidrojuma_raksts_vides_parskats.pdf Atašinis pogosta teritorejis planavīņs]</ref> Atašinis pogostā irā pošu mozuo cylvāku bīzeiba [[Krystapiļs nūvods|Krystapiļs nūvodā]], partū ka vaira kai 70% pogosta zemu aizjam meži i pūri. + +=== Solys === +Atašinis pogosta ļauds dzeivoj 25 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošys leluos solys - Atašine (pogosta centrys), Rejnīki, Truoškys. + +=== Zeimeigi ļauds === +* Aija Kukule - dzīduotuoja, muzykys školuotuoja; +* Pīters Babrys - pedagogs, Baļtejis viesturis tāmātuojs ekziļā ASV. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Jākubmīsts-Rēzne-Terehova (A12) i Kruoslova-Preili-Modyune (P62), taipoš nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Atašinis pogostu škārsoj dzeļžaceļa lineja Krystapiļs-Sīnuoja, iz kurys irā staceja ''Atašine''. + +Atašinis pogosta teritoreju apkolpoj posta atdaļa - ''Atašine'' (LV-5211).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Atašinis Suopeiguos Dīvamuotis Romys katuoļu bazneica; +* [[Mariņdzis piļs]] i muižys suods; +* Pūdarneica "Zaļbierzis"; +* Retro motociklu i senejūs formys aptārpu kolekceja; +* Teiču dobys rezervats. + +== Nūruodis == +{{nūruodis}} + +{{Krystapiļs nūvods}} + +[[Kategoreja:Krystapiļs nūvods]] + 2aptzjc6dq5cubd5v7o8nhs89t9gxbb + + + + Mežuoris pogosts + 0 + 1974 + + 28724 + 27053 + 2013-03-08T02:42:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801594]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Mežuoris pogosts +| zemislopa = Mežāres pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Mežuoris pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Mežuoris pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Krystapiļs nūvods +| centrys = Mežuore +| pluots = 142.83 +| dzeivuotuoju_skaits = 918<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 918 / 142.83 round 1}} +| īstateits = 1945 +| teiklavīta = +}} +[[Fails:Mezuore council house.jpg|thumb|260px|Mežuoris pogosta padūme 2012 gods pavasara mienesī]] +'''Mežuoris pogosts''' irā [[Krystapiļs nūvods|Krystapiļs nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. + +==Viesture== +Viesturiskai Mežuoris pogosta zeme bejuse Daugpiļs apleiciņa [[Veipa pogosts|Veipa pogostā]], kas 1941 godā daškiersts Jākubmīsta apleicinim. 1945 godā Jākubmīsta apleiciņa Veipa pogostā īstateja Mežuoris solys padūmi. Nu 1949 gods da 1962 godam Mežuoris sola bejuse Krystapiļs rajonā, a nu 1962 goda Jākubmīsta rajonā. 1954 godā Mežuoris solai daškiera likvidātū Buntiku solu i Gruomaļtu solys kolkoza "Molodaja gvardija" teritoreju, 1964 godā [[Mātrainis pogosts|Mātrainis solys]] sovetu saimisteibys "Mežuore" teritoreju, a 1973 godā daļu [[Kūku pogosts|Kūku solys]]. 1977 godā daškiera vēļ daļu Kūku i Veipa solys teritorejis, a daļu Mežuoris solys daškiera [[Atašinis pogosts|Atašinis solai]].<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Krystapiļs nūvods|Krystapiļs nūvodam]]. + +== Rūbeži == +Mežuoris pogosts tur rūbežu ar: +* [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Atašinis pogosts|Atašinis pogostu]], [[Kūku pogosts|Kūku pogostu]], [[Varīšu pogosts|Varīšu pogostu]] i [[Veipa pogosts|Veipa pogostu]]; +* [[Leivuona nūvods|Leivuona nūvoda]] [[Turku pogosts|Turku pogostu]]; +* [[Modyunis nūvods|Modyunis nūvoda]] [[Mātrainis pogosts|Mātrainis pogostu]] i [[Ļaudūnis pogosts|Ļaudūnis pogostu]]. + +== Dzeivuotuoji == +[[Fails:Endzeli oldbelievers church 2.jpg|thumb|260px|Eņdžeļu staroveru cierkva]] +Mežuoris pogostā dzeivoj 918 ļauds, nu jū 33% latvīšu, 63% krīvu, 1,7% boltkrīvu i puoļu 0,8%. Lelums pogosta dzeivuotuoju irā etniskī Latgolys krīvi. Bezdorba leidzīņs 10,10%.<ref>[http://www.krustpils.lv/faili/paskaidrojuma.pdf Mežuoris pogosta teritorejis planavīņs]</ref> + +=== Solys === +Mežuoris pogosta ļauds dzeivoj 41 solā.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Mežuore (pogosta centrys), Eņdželi, Rateitis, Seikstuli. + +=== Zeimeigi ļauds === +* Ivans Klementjevs - kanoju ierkluotuojs, nazcik Olimpiskū kaitu i pasauļa čempionatu īveiciejs. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Jākubmīsts-Rēzne-Terehova (A12) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Mežuoris pogostu škārsoj dzeļžaceļa lineja Krystapiļs-Sīnuoja, iz kurys vīna staceja "Mežuore". + +Mežuoris pogosta teritoreju apkalpoj vīna posta atdale Mežuore (LV-5226).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Eņdžeļu staroveru cierkva +* "Juoņasāta" - Dīnavydafrikys štrausu ferma +* Seikstuļu ūzuls + +== Nūruodis == +{{nūruodis}} + +{{Krystapiļs nūvods}} + +[[Kategoreja:Krystapiļs nūvods]] + s0zzggebb3f51qoglj1wa57bnrekcz7 + + + + Varīšu pogosts + 0 + 1975 + + 28725 + 21782 + 2013-03-08T02:42:42Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801538]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Varīšu pogosts +| zemislopa = Variešu pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Varīšu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Varīšu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Krystapiļs nūvods +| centrys = Varīši +| pluots = 148.26 +| dzeivuotuoju_skaits = 1245<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1245 / 148.26 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Varīšu pogosts''' irā [[Krystapiļs nūvods|Krystapiļs nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Antužu i Varīšu tautys noms, Antužu i Medņu biblioteka, Antužu specialuo internatpamatškola i Līpenis pamatškola, Varīšu pyrmaškoliņs īstots. + +== Rūbeži == +Varīšu pogosts tur rūbežu ar: +* [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Krystapiļs pogosts|Krystapiļs pogostu]], [[Kūku pogosts|Kūku pogostu]] i [[Mežuoris pogosts|Mežuoris pogostu]]; +* [[Jākubmīsts|Jākubmīstu]]; +* [[Modyunis nūvods|Modyunis nūvoda]] [[Kolsnovys pogosts|Kolsnovys pogostu]] i [[Ļaudūnis pogosts|Ļaudūnis pogostu]]; +* [[Pļaveņu nūvods|Pļaveņu nūvoda]] [[Aivīkstis pogosts|Aivīkstis pogostu]]. + +== Dzeivuotuoji == +Varīšu pogostā dzeivoj 1245 ļauds, nu jū 82% latvīšu, 12% krīvu, 3% puoļu, 2% boltkrīvu i 1% cytu tauteibu ļauds.<ref>[http://www.krustpils.lv/faili/Paskaidrojuma_raksts_.pdf Varīšu pogosta teritoriskais planavīņs]</ref> + +=== Solys === +Varīšu pogosta ļauds dzeivoj 44 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Varīši (pogosta centrys), Antuži, Kalnagoli, Medni. + +=== Zeimeigi ļauds === +* Aina Ķāve - Jākubmīsta agrobiznesa koledžys školuotuoja 50 godu, koledžys muzeja viersineica; +* Aļberts Caune - literats i mežu tāmātuojs. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj tik vītejuos zeimeibys celi - Jākubmīsts-Antūži-Medni (V782), Modyune-Ļaudūne-Jākubmīsts (V841) i cyti mozuoki.<ref>[http://www.lvceli.lv/LV/?i=247 Latvejis vaļsteibys vītejuos zeimeibys autoceli]</ref> Dzeļžaceļa linejis pogosta teritoreju naškārsoj, tok tyvuokuos stacejis tik 10 km atstotumā nu pogosta centra ("Krystapiļs" i "Kūki"). + +Varīšu pogosta teritoreju apkalpoj vīna posta atdale "Varīši" (LV-5236).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Aivīkstis dolomita karjers; +* Livonejis laika piļskrytys; +* Ungurnuižys ļutaru bazneicys sakrytys; +* Vāguļu rūbežakmiņs - Vydzemis i Latgolys rūbežu zeime. + +== Nūruodis == +{{nūruodis}} + +{{Krystapiļs nūvods}} + sil6ya4o4wyybvcr8liong9m2t3lqvh + + + + Jersikys pogosts + 0 + 1976 + + 28726 + 27039 + 2013-03-08T02:42:53Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801020]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Jersikys pogosts +| zemislopa = Jersikas pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Jersikys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Jersikys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Leivuona nūvods +| centrys = Upinīki +| pluots = 114.3 +| dzeivuotuoju_skaits = 1066<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1066 / 114.3 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Jersikys pogosts''' irā [[Leivuona nūvods|Leivuona nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. + +== Rūbeži == +Jersikys pogosts tur rūbežu ar: +* [[Leivuona nūvods|Leivuona nūvoda]] [[Leivuons|Leivuona mīstu]], [[Rūžupis pogosts|Rūžupis pogostu]] i [[Turku pogosts|Turku pogostu]]; +* [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Neicgaļa pogosts|Neicgaļa pogostu]]; +* [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] [[Dignuojis pogosts|Dignuojis pogostu]] i [[Dunovys pogosts|Dunovys pogostu]]; +* [[Vuorkovys nūvods|Vuorkovys nūvoda]] [[Rimeicānu pogosts|Rimeicānu pogostu]]. + +== Dzeivuotuoji == +Jersikys pogostā dzeivoj 1066 ļauds. + +=== Solys === +Jersikys pogosta ļauds dzeivoj 22 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Upinīki (pogosta centrys), Bucinīki, Gruoveri, Vucyni. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Reiga-Daugpiļs-Puotarnīki (A6) i Leivuons-Preili (P63), taipoš nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Jersikys pogostu škārsoj vīna dzeļžaceļa lineja Reiga-Daugpiļs (pogostā vīna staceja "Jersika"). + +Jersikys pogosta teritoreju apkalpoj vīna posta atdale "Jersika" Upinīku solā (LV-5315).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Jersikys meža styga; +* Jersikys piļskolns; +* Jersikys Krystus Apsaskaidruošonys pravoslavu cierkva +* Madalenis (Svātuos Magdalenys) Romys katuoļu bazneica Gosporu solā + +== Nūruodis == +{{nūruodis}} + +{{Leivuona nūvods}} + +[[Kategoreja:Leivuona nūvods]] + l7up3v9kv14bpk7v0dbfqi7917ff0pl + + + + Rūžupis pogosts + 0 + 1977 + + 29771 + 19183 + 2013-04-14T23:08:51Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rūžupis pogosts +| zemislopa = Rožupes pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Rūžupis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Rūžupis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Leivuona nūvods +| centrys = Rūžupe +| pluots = 181.77 +| dzeivuotuoju_skaits = 1443<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1443 / 181.77 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Rūžupis pogosts''' irā [[Leivuona nūvods|Leivuona nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. + +== Rūbeži == +Rūžupis pogosts tur rūbežu ar: +* [[Leivuona nūvods|Leivuona nūvoda]] [[Jersikys pogosts|Jersikys pogostu]], [[Leivuons|Leivuona mīstu]], [[Rudzātu pogosts|Rudzātu pogostu]], [[Sutru pogosts|Sutru pogostu]] i [[Turku pogosts|Turku pogostu]]; +* [[Preiļu nūvods|Preiļu nūvoda]] [[Suovānu pogosts|Suovānu pogostu]]; +* [[Vuorkovys nūvods|Vuorkovys nūvoda]] [[Rimeicānu pogosts|Rimeicānu pogostu]] i [[Upmalis pogosts|Upmalis pogostu]]. + +== Dzeivuotuoji == +Rūžupis pogostā dzeivoj 1443 ļauds. + +=== Solys === +Rūžupis pogosta ļauds dzeivoj 69 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Rūžupe (pogosta centrys), Džercāni, Muktupuovuli, Rušinīki. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Leivuons-Preili (P63) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Dzeļžaceļa linejis pogosta teritoreju naškārsoj, tyvuokuo staceja "Leivuons" linejā Reiga-Daugpiļs 14 km nu pogosta centra. + +Rūžupis pogosta teritoreju apkalpoj vīna posta atdale "Rūžupe" (LV-5327).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Keramikys taiseitova (pūdarneica) "Crazy Ceramics"; +* Kūkgrīzieja L. Ancāna muzejs. + +== Nūruodis == +{{nūruodis}} + +{{Leivuona nūvods}} + 0sxzuk9i74z3hps8r4vugizd4n9f33e + + + + Sutru pogosts + 0 + 1978 + + 28727 + 19184 + 2013-03-08T02:43:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801557]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Sutru pogosts +| zemislopa = Sutru pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Sutru pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Sutru pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Leivuona nūvods +| centrys = Sutri +| pluots = 77.98 +| dzeivuotuoju_skaits = 693<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 693 / 77.98 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Sutru pogosts''' irā [[Leivuona nūvods|Leivuona nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. + +== Rūbeži == +Sutru pogosts tur rūbežu ar: +* [[Leivuona nūvods|Leivuona nūvoda]] [[Rūžupis pogosts|Rūžupis pogostu]]; +* [[Preiļu nūvods|Preiļu nūvoda]] [[Preiļu pogosts|Preiļu pogostu]] i [[Suovānu pogosts|Suovānu pogostu]]; +* [[Vuorkovys nūvods|Vuorkovys nūvoda]] [[Upmalis pogosts|Upmalis pogostu]] i [[Vuorkovys pogosts|Vuorkovys pogostu]]. + +== Dzeivuotuoji == +Sutru pogostā dzeivoj 693 ļauds. + +=== Solys === +Sutru pogosta ļauds dzeivoj 46 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Sutri (pogosta centrys), Lipuškys, Rogaviki. + +=== Zeimeigi ļauds === +* Julians Vaivods - pyrmais latvīšu katuoļu kardinals. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Leivuons-Preili (P63) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Dzeļžaceļa linejis pogosta teritoreju naškārsoj. + +Sutru pogosta teritoreju apkalpoj vīna posta atdale "Sutri" (LV-5334).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* "Šuļtis" - zemdoru saimisteiba, etnografiskū dorbareiku kolekceja; +* Znūteņu Romys katuoļu bazneica. + +== Nūruodis == +{{nūruodis}} + +{{Leivuona nūvods}} + aav87tmhlvn64m9obmee3lfyryvzqpm + + + + Turku pogosts + 0 + 1979 + + 29810 + 19185 + 2013-04-15T02:09:51Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Turku pogosts +| zemislopa = Turku pagasts LocMap.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Turku pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Turku pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Leivuona nūvods +| centrys = Turki +| pluots = 119.44 +| dzeivuotuoju_skaits = 1008<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1008 / 119.44 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Turku pogosts''' irā [[Leivuona nūvods|Leivuona nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. + +== Rūbeži == +Turku pogosts tur rūbežu ar: +* [[Leivuona nūvods|Leivuona nūvoda]] [[Jersikys pogosts|Jersikys pogostu]], [[Leivuons|Leivuona mīstu]], [[Rudzātu pogosts|Rudzātu pogostu]] i [[Rūžupis pogosts|Rūžupis pogostu]]; +* [[Krystapiļs nūvods|Krystapiļs nūvoda]] [[Atašinis pogosts|Atašinis pogostu]], [[Mežuoris pogosts|Mežuoris pogostu]] i [[Veipa pogosts|Veipa pogostu]]; +* [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] [[Dignuojis pogosts|Dignuojis pogostu]] i [[Uobeļu pogosts|Uobeļu pogostu]]. + +== Dzeivuotuoji == +Turku pogostā dzeivoj 1008 ļauds. + +=== Solys === +Turku pogosta ļauds dzeivoj 48 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Turki (pogosta centrys), Grugulis, Jaunsylovys, Jaunuo muiža, Zundāni. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Reiga-Daugpiļs-Puotarnīki (A6) i puors vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Turku pogostu škārsoj vīna dzeļžaceļa lineja Reiga-Daugpiļs (staceju ci nūstuošonu pogosta teritorejā navā). + +Turku pogosta teritoreju apkalpoj vīna posta atdale "Gavartīne" (LV-5312).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Salīšu ūzuls - apleikmārs 7,3 m; +* Sylovys azaru vērtine - pīci vierīniski daveļceigi azari; +* Sylovys staroveru cierkvys sakrytys. + +== Nūruodis == +{{nūruodis}} + +{{Leivuona nūvods}} + 98dgd2pucn2i1qgujda260eytkkt123 + + + + Foļvarkys staroveru cierkva + 0 + 1983 + + 31604 + 31390 + 2016-11-01T19:57:01Z + + 87.110.14.45 + + Atcēlu [[Special:Contributions/91.9.112.211|91.9.112.211]] ([[User talk:91.9.112.211|Diskusija]]) izdarīto izmaiņu 31390 + wikitext + text/x-wiki + {{Coord|56|07|48|N|27|09|17|E|display=title}} +[[Fails:Folvarkys staroveru cierkva.jpg|thumb|250px|Foļvarkys cierkva 2011 gods rudinī]] +'''Foļvarkys Nikoļska Pokrova staroveru cierkva''' irā staroveru dīvanoms [[Aglyunys nūvods|Aglyunys nūvoda]] [[Kastulīnis pogosts|Kastulīnis pogostā]]. Atsarūn Foļvarkys solā, taišni Tyvuo azara molā, 2 km nu Aglyunys-Dagdys ceļa. Parapejis viersineica Anna Pilipjuka. 2010 gods leita m. 3 dīnā staroveru parapeja nūsvietieja sova dīvanoma 100 godu jubileji, kas iz svātku mišu salaseja vaira kai symts ļaužu. Cierkvys i solys pasauka izacāluse nu vuorda "''foļvark''", kas zeimoj 'puismuiža', kaidās seņuok Krīvejis Imperejā daleja zemis. + +== Viesture == + +Foļvarkys staroveru cierkvu suoce stateit 1894 godā, tok dabeidze 20 godu symta suokūs. Dīvanoma projekta autors bejs arhitekts Venskys, vysys stateibys izmoksys apmoksuojuši par parapejis pazīduotim leidzieklim. Senejūs laikūs cierkvā bejuši 162 obruozi, tok dīvanoms nazcik reižu apzogts (vysuvaira 70 godūs, kod cierkva izlauzta i izlaupeita). Nu viesturiskajim sakralajim prīkšmatim izaglobuojs tik krysts i vīns obruozs "Dīva Šabats". Vāluok nazcik personeigūs obruozus paduovynuoja dzeraunis dzeivuotuoji, nu jauna iztapuoti 12 apostolu obruozi. + +Cierkvys zvonu paduovonuojs Cars Nikolajs II i tys kolpoj vēļ šudiņ. Ūtrūs pasauļa vaidūs vuocīši gribiejuši nūskryvēt zvonu, tok vītejī staroveri jū nu vuocīšim atpierkuši, atdūdūt vysus sovus puškus i naudu. + +== Tekniskuo informaceja == +Cierkva pastateita iz akmiņu pundamenta nalelā uzkaļneņā azara malē. Kūka kuorms apsists ar goldskalim, nūkruosuots spūdri zylā kruosā. Nikaida leluoka remonta dīvanomā navā bejs nu pastateišonys dīnys. + + +== Nūruodis == +* [http://www.zudusilatvija.lv/objects/object/10959/ Foļvarkys staroveru cierkva] Gaisušuo Latveja, Latvejis Nacionaluos bibliotekys projekts + +{{DEFAULTSORT:Foļvarkys staroveru cierkva}} + +[[Kategoreja:Latgolys staroveru cierkvys]] +[[Kategoreja:Kastulīnis pogosts]] + badwsp1uhror40e33am9yt23ckvf9ue + + + + Baļtīšu volūda + 0 + 1985 + + + 19249 + 2011-11-30T17:36:16Z + + Määriläinen + 971 + + redir + wikitext + text/x-wiki + #REDIRECT [[Latvīšu volūda]] + qji9q0emqcqvkzaoxm5v4zxete9wife + + + + Kira + 0 + 1986 + + 28728 + 27878 + 2013-03-08T02:43:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801504]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis upe +| pasauka = Kira +| atvaiga_pasauka = Kira pie Viļakas.jpg +| atvaiga_aprakstejums = Kira Vilekī +| zemislopys_atvaigs = Latgolys upu zemislopys Kira.png +| kulturviesturiskais_nūvods = Latgola +| iztaka = peiss pi Slūtukolna +| viersupe = +| satakupis = +| ītaka = [[Vāda]] +| baseina_vaļsteibys = [[Latveja]], [[Krīveja]] +| satecis_baseins = 295,4 +| tek_car = [[Latveja]], [[Krīveja]] +| garums = 59 +| garums_latvejā = +| iztakys_augstums = 125 +| ītakys augstums = +| nūkritīņs = 58 +| vydyskais_puorteciejums = +| gods_puorteciejums = +| zeimeiguokuos_datakys = Nīdrupeite, Meirupeite +| leluokuos_upsolys = +| dzeivuojamys_vītys = [[Vileks]], Semenova +| cytys_pasaukys = ({{Vol-ru|Кирь}}) +}} + +'''Kira''' (latv.: ''Kira'') — upeite Latgolys pūstumūs, [[Vileks nūvods|Vileks nūvodā]] i Krīvejis Federacejis Opskovys apgabalī. Iztak nu peisa, kas natuoli nu Slūtukolna solys [[Medņovys pogosts|Medņovys pogostā]]. Upe Latgolā tak Medņovys pogostā, Vileks mīstā i Vacumu pogostā, a Krīvejā pa nazkodejū Lynovys pogostu. Tak pa Morenu kaupravali ar augstom molom. Vydstece tak pa Abrinis pazamynuojumu, zamupe pa [[Mudovys zamaine|Mudovys zamaini]]. Ītak [[Vāda|Vādā]] nu lobuos pusis, Krīvejis Federacejis teritorejā. Pošu leluos datakys: Nīdrupeite (21 km), Meirupeite (11 km), Gurva (8 km), Iļzeņa (7 km), Bušma, Tutynova. Pšleluos dzeivuojamys vītys upmalē: [[Vileks]], Semanova, Borysova, Mirnijs (Krīvejā). + +Upi škārsoj autoceli Guļbine-Bolvi-Vileks-Vīntuli (P35) i Vileks-Kuorsova (P45)<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref>, taipoš nazkodejuo Guļbinis-Abrinis dzeļžaceļa lineja. o,2 km garumā ipe sadora Latvejis Republikys i Krīvejis Federacejis rūbežu. + +== Nūruodis i olūti == +{{nūruodis}} + +[[Kategoreja: Latgolys upis]] +[[Kategoreja:Vileks nūvods]] + nmqfhknoujaw05ozcg3xn7dub9va5qw + + + + Zīmyssvātki + 0 + 1991 + + 31870 + 31862 + 2017-01-16T13:37:03Z + + Vituzzu + 1137 + + + Novērsu izmaiņas, ko izdarīja [[Special:Contributions/95.238.186.223|95.238.186.223]] ([[User talk:95.238.186.223|Diskusija]]), atjaunoju versiju, ko saglabāja [[User:Vituzzu|Vituzzu]] + wikitext + text/x-wiki + '''Zīmyssvātki''', a '''Svātki''', irā kasgadeigi svātki. + +{{stub}} + +[[Kategoreja:Svātki]] + qvgokqhrzzoz1u4hv4qwk8gzch4drtu + + + + Latvija + 0 + 1994 + + + 19405 + 2011-12-17T08:37:01Z + + Zemgalietis + 856 + + p + wikitext + text/x-wiki + #REDIRECT [[Latveja]] + 2ucauydmangfr5huri8n56zo9duehlf + + + + Francis Trasuns + 0 + 1996 + + + 19523 + 2011-12-25T20:36:30Z + + Zemgalietis + 856 + + p + wikitext + text/x-wiki + #REDIRECT [[Fraņcs Trasuns]] + q0912esmm4mxoppbp4i4qgywanbujo2 + + + + Trasuns + 0 + 1997 + + 29778 + 19525 + 2013-04-14T23:36:42Z + + Addbot + 1801 + + + wikitext + text/x-wiki + '''Trasuns''' — latgalīšu pavuorde, jis varbyut: + +* [[Fraņcs Trasuns]] (1864 — 1926), latgalīšu kulturys i gareigais dareituojs, vaļstsveirs i literats. +* [[Jezups Trasuns]] (1898 – 1978), latgalīšu gareigais dareituojs i vaļstsveirs. + +[[Kategoreja:Cylvāki]] + j4b2s20jzdb4xx4fm9qr4gya63c4wqn + + + + Ancāns + 0 + 1998 + + + 19526 + 2011-12-25T23:34:36Z + + Zemgalietis + 856 + + Pāradresē uz [[Roberts Ancāns]] + wikitext + text/x-wiki + #REDIRECT [[Roberts Ancāns]] + t7sjqqdfrezsitm9agv143ovzoq0i0k + + + + Juoņs Čakste + 0 + 1999 + + 29021 + 28730 + 2013-03-09T06:31:44Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q379554]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Janis Cakste.jpg|right|200px|thumb|Juoņs Čakste 1926 godā]] +'''Juoņs Čakste''' ({{vol-lv|Jānis Čakste}}, 1859 — 1927) — pyrmais [[Latveja|Latvejis]] prezidents (1922—1927). Piec vuiceibys jurists. + + +{{nadabeigts rakstīņs}} + +{{DEFAULTSORT:Čakste, Juoņs}} + +[[Kategoreja:Politiki]] + sog05lny7aevuadwjxv1byi83pbixcu + + + + Datorlingvistika + 0 + 2000 + + 31420 + 30833 + 2016-05-04T15:15:14Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Datorlingvistika''' – [[Zineiba|zineibys vydatzare]], aizajamūša ar dabeigūs volūdu modeliešonu. Juos praktiskī [[Snāgs|golasnāgi]] – [[mašiņpuorviersšona]], pareizraksteibys i gramatikys [[Klaidgivs|klaidgivi]], runys siņteze i atpazeišona, automatizāta [[Tekstu korpuss|tekstu korpusu]] [[Lingvistika|lingvistiskuo apdare]], taipoš informacejis [[izdabuošona]] nu tekstu i juos apkūpuošona. + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Datorlingvistika]] + mmiqbm9vhcaa6d3ocy7upkw59ofnjgj + + + + Sorma + 0 + 2001 + + 28732 + 23374 + 2013-03-08T02:44:08Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 26 interwiki links, now provided by [[d:|Wikidata]] on [[d:q131099]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Hoarfrost reif.jpg|thumb|250px|Sorma tivplanā]] +'''Sorma''' - lads, pasadarejs [[Iudiņs|iudiņa]] laseitem sasolstūt myglā iz vysaižim objektim. Tei irā kristalainis boltys nūsādys, kas pasadora iz zemis viersa ir lītom. Vysuvaira dobā ar sormu apkluoti irā kūku zori, smylgys i zuole. Jim viersā irā pluoni lada kristaleni, kurim epidedu styurīni atsateik regularam sešstyuram, a iz kristaleņu ploskonuos viersys radazms streipuojumu teiklīņs taidā pošā styurainī. Lads krystalu garums var dasnēgt i nazcik centimetru. + +Nūsādys pasadora gaisa sublimacejis procesā asūšim iudiņa gorim i jim sasalejūt ar lītom trāpā, sluobā viejā i gīdrā ci moz muokulaiņā laikā. Sorma pasaruoda, kod gaisa temperatura irā mozuoka kai -15 °C i [[Reitulatvejis zamaine|Reitulatvejis zamainē]] nūsatur vaira kai 10 dīnu, a [[Latgolys augstaine|Latgolys augstainē]] i ūtratik vaira. Lads krystalu skaits iz viersa [īaug tymā pusē, nu kurīnis pyuš viejs.<ref>[http://www.pvg.edu.lv/datori/konkursi/2006_web/vsk/gunita_smilga_paradibas/Sarma.htm Sormys aprakstejums], pvg.edu.lv</ref> + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commons|Hard rime|Sorma}} + +[[Kategoreja:Meteorologeja]] + 1lv5mkxy0kl45gqmynrstbh4l624kez + + + + Vyški (staceja) + 0 + 2007 + + 31760 + 31759 + 2016-11-08T15:00:56Z + + 2A00:23C4:C288:5A00:9066:AE6E:7F9D:9631 + + wikitext + text/x-wiki + {{Coord|56|04|53|N|26|44|17|E|display=title}} +[[Fails:Višķu stacija.JPG|thumb|Stacejis kuorms]] +'''Vyški''' irā dzeļžaceļa staceja [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Vyšku pogosts|Vyšku pogostā]], linejā Rēzne I-Daugpiļs. Staceja atdareita 1860 gods solnys mieneša 20 dīnā - tymā pošā laikā, kod atdareja leluos linejis Pīterpiļs-Varšova puosmu Ostrova-Daugpiļs. Myuslaiklūs stacejā nūteik tik kruovys vilcīņu apkolpa nalelā apmārā. Pasažiru apkolpa izabeidze XX godusymta 90 godūs. Car staceju īt vydtautyskī pasažiru viļcīni Viļne-Pīterpiļs i Varšova-Pīterpiļs, tok stacejā nanūstoj. + +==Viesture== +Pirmeiguo stacejis pasauka beja "Dubno" (''krīvu'' Дубно), a jau nu 1894 gods staceju suoce saukt "Vyški" (''krīvu'' Вышки). 1918 godā staceju nailgai vēļ sauce par "Dubno", tok nu 1919 gods vysūs oficialūs dokumentūs tik par staceju "Vyški". + +Pyrmūs Pasauļa vaidu godūs nu Vyšku stacejis da Neicgaļa stacejai (linejā Krystapiļs-Daugpiļs) beja sataiseita saškeiruma lineja, kas myuslaikūs vaira navā.<ref>[http://www.ldz.lv/?object_id=3990 Dzeļžaceļa linejis Reiga—Daugpiļs viesture (''latvyskai'')]</ref> + +== Nūruodis == +{{nūruodis}} + +[[Kategoreja:Vyšku pogosts]] + 9h99fvp02z32xn333f1vv348t7xiigd + + + + Kategoreja:Vyšku pogosts + 14 + 2008 + + 29458 + 22631 + 2013-03-25T02:26:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8180481]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis pogosti]] +[[Kategoreja:Daugpiļs nūvods]] + hl5fnubipngip46wlaecpwjugazgikp + + + + Meža saskys + 0 + 2010 + + 28982 + 28734 + 2013-03-08T17:07:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q26582]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Meža saskys +| atvaiga_pasauka = Ilder.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Zeideituoji ''(Mammalia)'' +| aiļa = Pliesieji ''(Carnivora)'' +| saime = Cauņu ''(Mustelidae)'' +| giņts = Saski ''(Mustela)'' +| škira = Palākais vylks ''(Mustela putorius)'' +| ziniskuo_pasauka = Mustela putorius +| zemislopys_atvaigs = Mapa Mustela putorius.png +| zemislopys_aprakstejums = Meža saska paplateiba +}} +'''Meža saskys''' aba tik '''saskys''' ({{Vol-la|Mustela putorius}}; {{Vol-en|European polecat}}; {{Vol-lv|Meža sesks}}; {{Vol-lt|Juodasis šeškas}}) irā cauņu saimis (''Mustelidae'') plieseigais zviers nu sasku giņtis (''Mustela''). Taipoš zynoms kai '''Malnais saskys''' ci '''Europys saskys'''. Saski radneigi [[Luoseica|luoseicom]], caunem i sormulim. Sātā dajaucātī saski saucomi par fretkom aba sātys saskim. Saski paplateiti kūna vysā [[Europa|Europā]] da Uralu kolnim [[Krīveja|Krīvejā]], atskaitūt Skaņdinavejis pūstumus i jiuru solys - Airejā, Īslaņdejā, Sicilejā i cytuos jiursoluos jī nadzeivoj.<ref>[http://www.iucnredlist.org/apps/redlist/details/41658/0 Mustela putorius (European Polecat)]</ref> Saskys vīns nu treju [[Latgola|Latgolā]] dzeivojūšūs sasku giņtis dzeivinīku - sūpluok [[luoseica|luoseicys]] i sormuļa.<ref>[http://gliemji.daba.lv/scripts/db/saraksti/saraksti.cgi?d=ziidiitaaji Latvejis zeideituoju saroksts]</ref> + +==Izavierīņs== +Saskys, taipoš kai cyti cauņu saimis dzeivinīki, irā smuidra, spieceiga auguma, ar eisom kuojom i plotom golvom.<ref name="ark">[http://www.arkive.org/european-polecat/mustela-putorius/description.html ARKive - Meža saska video, foto i fakti - Mustela putorius]</ref> Meža sasku tāvaini labtik leluoki kai muotainis. Tāvaiņu svors ūtratik leluoks kai muotaiņu, auguma garums kūna treštik garuoks. Saska garums byun 35-45 cm, svors muotainem 0,7 kg, tāvainim 1,7 kg. +Kažuks tymsai bryuns ci malns. Iz vaiga gaišuoks, ap acim pasataisa taida kai maska, izaverūša kai tymsi okuleri.<ref name="ea">http://ead.univ-angers.fr/~ecologie/Polecat_project.html</ref> Zīmā kažuks nūaug bīzs i spūdrys, a vosorā pluons i naskaists. Taipoš kai cytim cauņu saimis pīstuovim, i saskim byun analī dzīdzeri, kurī izdola osu smuorda sekretu. Itei reakceja nūteik viņ tod, kod dzeivinīks sajiut baili par sovu dzeiveibu. + +==Izavedīņs== +[[Fails:Mustela putorius furo (fretka) na śniegu.JPG|thumb|left|200px|Saskys zīmā]] +Saski pa lelumam byun nakts dzeivinīki. Jūs var satikt mežūs, pūrūs, peisūs i mežu pļovuos pi iudiņu. Zīmā jī apsadzeivoj sātu ci solu tyvumā i, maklādami barūklis, var net īīt ustobuos. Kolnūs dzeivuot namīļoj. Mygu vusycīškuok ītaisa pi upu zam lelu kūku sakņu. Saski dzeivoj vīnā vītā, vīns saskys izlītoj apmāram 1 kvadratkilometru lelu pluotu. Vosorā saski dzeivoj saimē, a zīmā pa vīnam. Saskys aktivs vysu godu. Zīmys snīgā saska īstaiguotuos stidzenis var ītēmēt pi olūtaiņu, naaizsalstūšu upu, kur puorzīmoj vardivis. + +Pošu lelī sasku īnaidnīki - suni, kači, lopsys i lelī palādiņu putni. + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commonscat|Mustela putorius|Meža saskys}} + +{{DEFAULTSORT:Meža saskys}} + +[[Kategoreja:Dzeivinīki]] + oihoc0fa3bgtqvtsxa4l7bxtwk0b5vz + + + + Beļovys pogosts + 0 + 2011 + + 28735 + 19918 + 2013-03-08T02:44:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801591]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Beļovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Beļovys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Beļovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Beļova +| pluots = 169,34 +| dzeivuotuoju_skaits = 1845<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1845 / 169.34 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Beļovys pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Beļova|Beļovā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/48-belavas Beļovys pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + c839yz05opjn8tnv5nfv91ce7w3u89c + + + + Daukstu pogosts + 0 + 2012 + + 28736 + 19919 + 2013-03-08T02:44:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801552]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Daukstu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Daukstu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Daukstu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Stori +| pluots = 164,86 +| dzeivuotuoju_skaits = 1246<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1246 / 164.86 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Daukstu pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Stori|Storūs]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/53-daukstes Daukstu pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + nkcfve21ii631ym1gk7mcsti2ldd1sa + + + + Druvīnys pogosts + 0 + 2013 + + 28737 + 19920 + 2013-03-08T02:45:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801571]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Druvīnys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Druvīnys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Druvīnys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Druvīna +| pluots = 67,57 +| dzeivuotuoju_skaits = 555<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 555 / 67.57 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Druvīnys pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Druvīna|Druvīnā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/52-druviena Druvīnys pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + ig2h835xff22c87rqg7sv03i7csbrsf + + + + Galgovskys pogosts + 0 + 2014 + + 28738 + 19921 + 2013-03-08T02:45:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801609]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Galgovskys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Galgovskys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Galgovskys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Galgovska +| pluots = 98,29 +| dzeivuotuoju_skaits = 706<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 706 / 98.29 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Galgovskys pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Galgovska|Galgovskā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/56-galgauskas-pagasts Galgovskys pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + cya9v5cueaslngp6w87kgfk4gpfn32a + + + + Jaunguļbinis pogosts + 0 + 2015 + + 28739 + 19922 + 2013-03-08T02:45:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801530]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Jaunguļbinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Jaunguļbinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Jaunguļbinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Guļbeits +| pluots = 90,55 +| dzeivuotuoju_skaits = 1257<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1257 / 90.55 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Jaunguļbinis pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Guļbeits]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/57-jaungulbenes-pagasts Jaunguļbinis pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + b4fxwr5t80smm508hraskfnuv2xwu0i + + + + Lajis pogosts + 0 + 2016 + + 28740 + 19923 + 2013-03-08T02:45:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801676]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Lajis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Lajis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Lajis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Lajiscīms +| pluots = 337,8 +| dzeivuotuoju_skaits = 1778<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1778 / 337.8 round 1}} +| īstateits = +| teiklavīta = www.lejasciems.lv +}} + +'''Lajis pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Lajiscīms]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.lejasciems.lv Lajis pogosta teiklavīta] +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/58-lejasciema-pagasts Lajis pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + if63us0zdlnntlcbaszr5253vbbcdik + + + + Litinis pogosts + 0 + 2017 + + 28741 + 19924 + 2013-03-08T02:45:54Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801669]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Litinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Litinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Litinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Litine +| pluots = 127,4 +| dzeivuotuoju_skaits = 1117<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1117 / 127.4 round 1}} +| īstateits = +| teiklavīta = www.litene.lv +}} + +'''Litinis pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Litine|Litinē]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.litene.lv/ Litinis pogosta teiklavīta] +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/59-litenes-pagasts Litinis pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + nobv2o7px7whj5fb91yqkyz7fl17m24 + + + + Lyzuma pogosts + 0 + 2018 + + 28742 + 19925 + 2013-03-08T02:46:05Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801715]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Lyzums pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Lyzuma pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Lyzuma pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Lyzums +| pluots = 107,79 +| dzeivuotuoju_skaits = 1521<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1521 / 107.79 round 1}} +| īstateits = +| teiklavīta = www.lizums.lv +}} + +'''Lyzuma pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Lyzums|Lyzumā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.lizums.lv/ Lyzuma pogosta teiklavīta] +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/1807-lzp Lyzuma pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + ntrqq7z3vkw0mpwlb8c68lmucyc8mgc + + + + Leigū pogosts + 0 + 2019 + + 28743 + 19926 + 2013-03-08T02:46:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801685]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Leigū pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Leigū pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Leigū pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Leigū +| pluots = 78,93 +| dzeivuotuoju_skaits = 434<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 434 / 78.93 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Leigū pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Leigū]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/61-lgo-pagasts Leigū pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + hgn9tfzth7kwtlcohig3jjsy31hrs5d + + + + Stuomerinis pogosts + 0 + 2020 + + 28744 + 27469 + 2013-03-08T02:46:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801321]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Stuomerinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Stuomerinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Stuomerinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = VacStuomerine +| pluots = 133,81 +| dzeivuotuoju_skaits = 1156<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1156 / 133.81 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Stuomerinis pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Stuomerine|Stuomerinē]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.stameriena.lv/ Stuomerinis pogosta teiklavīta] +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/63-stmerienas-pagasts Stuomerinis pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + 73gy7l51uiyevcewkq9aee09vsz14fe + + + + Rankys pogosts + 0 + 2021 + + 28745 + 19958 + 2013-03-08T02:46:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801617]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rankys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Rankys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Rankys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Ranka +| pluots = 183,87 +| dzeivuotuoju_skaits = 1578<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1578 / 183.87 round 1}} +| īstateits = +| teiklavīta = www.ranka.lv +}} + +'''Rankys pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Ranka|Rankā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.ranka.lv/ Rankys pogosta teiklavīta] +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/62-rankas-pagasts Rankys pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + rh5dexkxjhzcqlide27pnm1w9c6laq4 + + + + Strodu pogosts + 0 + 2022 + + 28746 + 19959 + 2013-03-08T02:46:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801033]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Strodu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Strodu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Strodu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Strodi +| pluots = 173,51 +| dzeivuotuoju_skaits = 2087<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 2087 / 173.51 round 1}} +| īstateits = +| teiklavīta = www.stradi.lv +}} + +'''Strodu pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Strodi|Strodūs]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.stradi.lv/ Strodu pogosta teiklavīta] +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/64-stradu-pagasts Strodu pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + 7nq59nqss759wthwebpg7yoiij579c2 + + + + Tirzys pogosts + 0 + 2023 + + 28747 + 19960 + 2013-03-08T02:47:02Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801026]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Tirzys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Tirzys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Tirzys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Guļbinis nūvods +| centrys = Tirza +| pluots = 130,46 +| dzeivuotuoju_skaits = 986<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 986 / 130.46 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Tirzys pogosts''' irā [[Guļbinis nūvods|Guļbinis nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Tirza|Tirzā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gulbene.lv/index.php/novada-raksturojums/pilsta-un-pagasti/65-tirzas-pagasts Tirzys pogosts Guļbinis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + +{{Guļbinis nūvods}} + dcf3jhipy9lcdbv8lk6y05ttismsenn + + + + Taiss:Guļbinis nūvods + 10 + 2024 + + 29801 + 19917 + 2013-04-15T01:56:02Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Navbox +|name = Guļbinis nūvods +|title = <center> [[Guļbinis nūvods]] [[Fails:LVA_Gulbenes_novads_COA.png|14px|Guļbinis nūvoda gerbs]] +|state = uncollapsed +|list1 = <center> [[Beļovys pogosts]] {{•}} [[Daukstu pogosts]] {{•}} [[Druvīnys pogosts]] {{•}} [[Galgovskys pogosts]] {{•}} [[Guļbine|Guļbinis mīsts]] {{•}} [[Jaunguļbinis pogosts]] {{•}} [[Lajis pogosts]] {{•}} [[Litinis pogosts]] {{•}} [[Lyzuma pogosts]] {{•}} [[Leigū pogosts]] {{•}} [[Rankys pogosts]] {{•}} [[Stuomerinis pogosts]] {{•}} [[Strodu pogosts]] {{•}} [[Tirzys pogosts]] +}}<noinclude> +[[Kategoreja:Taisi:Latvejis administrativais dalejums]] + +</noinclude> + t2am346rya4cahgzzw1vcrauu73cqlw + + + + Opys pogosts + 0 + 2025 + + 32026 + 28748 + 2017-06-18T06:54:50Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Opys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Opys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Opys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Opys nūvods +| centrys = Opa +| pluots = 124,92 +| dzeivuotuoju_skaits = 521<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 521 / 124.92 round 1}} +| īstateits = +| teiklavīta = www.ape.lv +}} + +'''Opys pogosts''' irā [[Opys nūvods|Opys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Opa|Opis mīsts]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 6y8upo2pkbbd9ci77ndspvzxar0dp3h + + + + Gaujīnys pogosts + 0 + 2026 + + 28749 + 19962 + 2013-03-08T02:47:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3743294]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Gaujīnys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Gaujīnys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Gaujīnys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Opys nūvods +| centrys = Gaujīna +| pluots = 126 +| dzeivuotuoju_skaits = 1013<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1013 / 126 round 1}} +| īstateits = 1822 +| teiklavīta = www.gaujiena.lv/ +}} + +'''Gaujīnys pogosts''' irā [[Opys nūvods|Opys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Gaujīna]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.gaujiena.lv Gaujīnys pogosta teiklavīta] + +{{nadabeigts rakstīņs}} + fipb69o9jhl8h2gatiopqhibruxfegj + + + + Trapinis pogosts + 0 + 2027 + + 32021 + 28750 + 2017-06-17T08:07:44Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Trapinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Trapinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Trapinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Opys nūvods +| centrys = Trapine +| pluots = 137,25 +| dzeivuotuoju_skaits = 759<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 759 / 137.25 round 1}} +| īstateits = 1923 +| teiklavīta = www.trapene.lv/ +}} + +'''Trapinis pogosts''' irā [[Opys nūvods|Opys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Trapine]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.trapene.lv Trapinis pogosta teiklavīta] + +{{nadabeigts rakstīņs}} + fb6q8uly2sctcn9dy4nlfsez9mdt0jn + + + + Vyrešu pogosts + 0 + 2028 + + 32010 + 28751 + 2017-06-15T12:04:23Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vyrešu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vyrešu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Vyrešu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Opys nūvods +| centrys = Vyreši +| pluots = 154,54 +| dzeivuotuoju_skaits = 616<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 730 / 154.54 round 1}} +| īstateits = +| teiklavīta = www.viresi.lv +}} + +'''Vyrešu pogosts''' irā [[Opys nūvods|Opys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Vyreši|Vyrešūs]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.viresi.lv Vyrešu pogosta teiklavīta] + +{{nadabeigts rakstīņs}} + jtn64jrrshfje3qboqew3e5aqbba84b + + + + Aivīkstis pogosts + 0 + 2029 + + 28752 + 19952 + 2013-03-08T02:48:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801263]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Aivīkstis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Aivīkstis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Aivīkstis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Pļaveņu nūvods +| centrys = Kryškolni +| pluots = 144,84 +| dzeivuotuoju_skaits = 829<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 829 / 144.84 round 1}} +| īstateits = 1922 +| teiklavīta = +}} + +'''Aivīkstis pogosts''' irā [[Pļaveņu nūvods|Pļaveņu nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Kryškolni]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 67ekhy5jh1aqyfm6hbi0lppslyikxoj + + + + Vītolvys pogosts + 0 + 2030 + + 28753 + 19953 + 2013-03-08T02:48:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801306]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vītolvys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vītolvys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Vītolvys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Pļaveņu nūvods +| centrys = Vītolva +| pluots = 130,43 +| dzeivuotuoju_skaits = 913<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 913 / 130.43 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Vītolvys pogosts''' irā [[Pļaveņu nūvods|Pļaveņu nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Vītolva. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 319iyhdr96uwfkfrdw7t9cfr0uvv2ed + + + + Klintainis pogosts + 0 + 2031 + + 28754 + 19954 + 2013-03-08T02:48:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801549]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Klintainis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Klintainis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Klintainis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Pļaveņu nūvods +| centrys = Štokmani +| pluots = 94,13 +| dzeivuotuoju_skaits = 860<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 860 / 94.13 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Klinatinis pogosts''' irā [[Pļaveņu nūvods|Pļaveņu nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Štokmani. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + b7moe31rcn848ygumqx6kyfvqzk29co + + + + Babru pogosts + 0 + 2032 + + 28755 + 19979 + 2013-03-08T02:48:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801300]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Babru pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Babru pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Babru pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kūknuoja nūvods +| centrys = Vacbabri +| pluots = 120,2 +| dzeivuotuoju_skaits = 1307<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1307 / 120.2 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Babru pogosts''' irā [[Kūknuoja nūvods|Kūknuoja nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Vacbabri|Vacbabrūs]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.koknese.lv/?s=85 Babru pogosts Kūknuoja nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 3yapxerag84mnifm3c2qhreedoo1ksw + + + + Iršu pogosts + 0 + 2033 + + 28756 + 26410 + 2013-03-08T02:48:44Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801042]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Iršu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Iršu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Iršu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kūknuoja nūvods +| centrys = Irši +| pluots = 69,8 +| dzeivuotuoju_skaits = 541<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 541 / 69.8 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Iršu pogosts''' irā [[Kūknuoja nūvods|Kūknuoja nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Irši]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.koknese.lv/?s=88 Iršu pogosts Kūknuoja nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + ros45hjmkj12gq6djs1lppsfono8wlx + + + + Kūknuoja pogosts + 0 + 2034 + + 28757 + 19977 + 2013-03-08T02:48:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801637]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kūknuoja pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kūknuoja pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = LVA Kokneses pagasts flag.png +| karūga_pasauka = Kūknuoja pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Kūknuoja nūvods +| centrys = Kūknuojs +| pluots = 170,6 +| dzeivuotuoju_skaits = 4188<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 4188 / 170.6 round 1}} +| īstateits = +| teiklavīta = www.koknese.lv +}} + +'''Kūknuoja pogosts''' irā [[Kūknuoja nūvods|Kūknuoja nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Kūknuojs]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.koknese.lv/?s=4 Kūknuoja pogosts Kūknuoja nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + jcrm66wqsyfj8ryeexkatmali5y7731 + + + + Drabešu pogosts + 0 + 2035 + + 28758 + 19984 + 2013-03-08T02:49:06Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2606952]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Drabešu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Drabešu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Drabešu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Omotys nūvods +| centrys = "Ausmys" +| pluots = 120,34 +| dzeivuotuoju_skaits = 2715<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 2715 / 120.34 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Drabešu pogosts''' irā [[Omotys nūvods|Omotys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta pošvolds vīnsētē "Ausmys", tok konkretys solys kai centru pogosts natur. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + gbwo8a05utw6e1jetkyq2fpppalk6k7 + + + + Nītaurys pogosts + 0 + 2036 + + 28759 + 19995 + 2013-03-08T02:49:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2606940]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Nītaurys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Nītaurys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Nītaurys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Omotys nūvods +| centrys = Nītaura +| pluots = 175,86 +| dzeivuotuoju_skaits = 945<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 945 / 175.86 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Nītaurys pogosts''' irā [[Omotys nūvods|Omotys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Nītaura]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + dk4tc0p4gur1oq6ruu2v4d1e9so46yl + + + + Omotys pogosts + 0 + 2037 + + 28760 + 19998 + 2013-03-08T02:49:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q455528]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Omotys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Omotys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Omotys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Omotys nūvods +| centrys = Gikši +| pluots = 108,35 +| dzeivuotuoju_skaits = 822<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 822 / 108.35 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Omotys pogosts''' irā [[Omotys nūvods|Omotys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Gikši]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 9mijhtg9eg168rxfjw2ckrx91rxnasl + + + + Skujinis pogosts + 0 + 2038 + + 28761 + 19996 + 2013-03-08T02:49:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2607067]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Skujinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Skujinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Skujinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Omotys nūvods +| centrys = Skujine +| pluots = 176,8 +| dzeivuotuoju_skaits = 960<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 960 / 176.8 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Skujinis pogosts''' irā [[Omotys nūvods|Omotys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Skujine]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + n9jjd5fibrauyx5viyrplrg3mg0s96s + + + + Zaubis pogosts + 0 + 2039 + + 28762 + 19997 + 2013-03-08T02:49:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2607012]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Zaubis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Zaubis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Zaubis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Omotys nūvods +| centrys = Zaube +| pluots = 162,76 +| dzeivuotuoju_skaits = 915<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 915 / 162.76 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Zaubis pogosts''' irā [[Omotys nūvods|Omotys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Zaube]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 13nwbfqvddh8m751d70hwobko4d7y4g + + + + Rundānu katuoļu bazneica + 0 + 2043 + + 29783 + 20095 + 2013-04-15T01:23:36Z + + Addbot + 1801 + + + wikitext + text/x-wiki + [[Fails:Rundenu Church 4.jpg|thumb|right|Bazneica 2008 gods zīmā]] +'''Rundānu Svātuo Krysta paaugstynuošonys Romys katuoļu bazneica''' irā katuoļu dīvanoms [[Ludzys nūvods|Ludzys nūvoda]] [[Rundānu pogosts|Rundānu pogostā]], Rundānu solys centrā. Rundānu bazneica pīdar pi Romys katuoļu Reigys metropolejis Rēznis-Aglyunys diecezis.<ref>[http://www.catholic.lv/main.php?parent=235&show=1 www.catholic.lv]</ref> +Bazneica natur tūrņu, apleik dzeļža sātmaļs iz akmiņa pundamenta. + +Bazneica pastateita ap 1820 godu pa puoļu pana Andreja Šahno pīsacejumam. Bazneicā kopu pogrobs, kur paglobuota Andreja Šahno piecguojieja Viktora Šahno saime, a pats Viktors Šahno emigriejs II pasauļa vaidūs. Da 1946 godam pogrobā vydā varieja īīt ļauds, tok vāluok jū aizdareja, kab naizlaupeitu. + +== Nūruodis == +{{nūruodis}} + +{{DEFAULTSORT:Rundānu Svatuo Krysta paaugstynuošonys Romys katuoļu bazneica}} + +[[Kategoreja:Latgolys katuoļu bazneicys]] +[[Kategoreja:Ludzys nūvods]] + 1x5yfo1uf0hp23hzezjztkgae6b8hrg + + + + Luoseica + 0 + 2044 + + 27414 + 20072 + 2013-01-28T19:51:31Z + + MerlIwBot + 221 + + + robots izņem: zh,eu,pl,qu,gd,ang,es,oc,hu,ce,et,br,sv,nl,pt,eo,ru,sr,tr,se,fi,uk,myv,nn,az,hr,tl,da,kk,an,wa,nah,udm,be,fr,he,ug,lv,it,gl,ay,de,ja,kbd,mrj,vi,sc,koi,gn,sk,en,fy,cv,no,ro,ca,cy,sl,cs,mhr,fa,bg,ka,vls,pcd,lt (strongly connected to [[ltg:... + wikitext + text/x-wiki + [[Fails:Mustela nivalis -British Wildlife Centre-4.jpg|thumb|250px|Luoseica]] + +'''Luoseica''' ({{Vol-la|Mustela nivalis}}) irā vysumozuokais plieseigais zviers iz pasauļa. + +== Nūruodis i olūti == +* [http://www.videsvestis.lv/content.asp?ID=75&what=32 Luoseica] +{{commons|Mustela nivalis|Luoseica}} + +{{Nūruodis}} +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Dzeivinīki]] + bdg2wg1f1djzpux1hpwar7u2p3ynvtk + + + + Jumurdys pogosts + 0 + 2045 + + 31824 + 31807 + 2016-12-09T09:36:56Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31807 dated 2016-12-09 09:02:09 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Jumurdys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Jumurdys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Jumurdys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ereļu nūvods +| centrys = Jumurda +| pluots = 131,1 +| dzeivuotuoju_skaits = 309<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 309 / 131.1 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Jumurdys pogosts''' irā [[Ereļu nūvods|Ereļu nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Jumurda|Jumurdā]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + r3viuy3ttzaugdu18bolex0j7vo7ryw + + + + Sausniejis pogosts + 0 + 2046 + + 28764 + 20103 + 2013-03-08T02:50:12Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801647]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Sausniejis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Sausniejis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Sausniejis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ereļu nūvods +| centrys = Sidrabeni +| pluots = 117,0 +| dzeivuotuoju_skaits = 683<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 683 / 117.0 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Sausniejis pogosts''' irā [[Ereļu nūvods|Ereļu nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Sidrabeni]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 1ygryzoj1d1dsa181q9azy5omuuq0d6 + + + + Ereļu pogosts + 0 + 2047 + + 28765 + 20104 + 2013-03-08T02:50:23Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801642]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ereļu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Ereļu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Ereļu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ereļu nūvods +| centrys = Ereli +| pluots = 131,4 +| dzeivuotuoju_skaits = 2543<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 2543 / 131.4 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Ereļu pogosts''' irā [[Ereļu nūvods|Ereļu nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Ereli]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + bk8gyxzwtjxqb854eboon8b3zzuygwa + + + + Pīterpiļs + 0 + 2048 + + 31568 + 30484 + 2016-08-29T18:37:11Z + + Florstein + 1423 + + + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Pīterpiļs +| atvaiga_pasauka = SPB Collage 2014-3.png +| atvaiga_aprakstejums = Pīterpiļs vierīni +| gerba_atvaigs = Coat of Arms of Saint Petersburg (2003).svg +| gerba_pasauka = Pīterpiļs gerbs +| karūga_atvaigs = Flag of Saint Petersburg Russia.svg +| karūga_pasauka = Pīterpiļs karūgs +| koordinatu_zemislopa = +| latd = 59 | latm = 57| lats = | latNS = N +| longd = 30 | longm = 19| longs = | longEW = E +| pluots = 1439 +| dzeivuotuoji_gods = 2010 +| dzeivuotuoju_skaits = 4 848 700 +| bīzeiba = 3 384 +| viesturiskuos_pasaukys = Petrograds, Leningrads +| cytys_pasaukys = +| īstateits = 1703 +| mīsta_tīseibys = 1703 +| posta_iņdeksi = +| teiklavīta = gov.spb.ru +}} + +'''Pīterpiļs''' aba '''Pīterburga''', aba '''Sanktpeterburga''' — mīsts pūstumvokoru Krīvejā, Nevys upis greivā pi Baļtejis jiuru Suomu leiča, Leningrada apgabaļa centrys, ūtrais pa lielumam Krīvejis mīsts (piec Moskovys). + +Pīterpiļs XVIII godusymtā suokta stateit kai Krīvejis golvysmīsts suomugru tautu apdzeivuotā teritorejā. Nu XVIII gs. vys augūšuo mīsta dzeivuotuoji pa lelumam krīvvolūdeigi, i pīterpilīšu skaits niule puorsniedzs jau 4 milijonus. XIX gs. beiguos i XX gs. suokuos Pīterpilī apsadzeivuoja leluoks skaits latgalīšu, i nu 1879 da 1917 godam Pīterpiļs beja svareigs latgaļu nacionaluos atmūdys centrys. + +Mīstam sova gaisūsta (''Pulkova''), jiuru ūsta (pi Suomu leiča) i upis ūstys (pi Nevys greivys). Izraisteita mašinindustreja, malnuo i kruosojuo metalurgeja, kimejis, vīgluo, puortykys i poligrafejis industreja. Nu 1955 g. mīstā dorbojās metra. +Pīterpiļs irā Krīvejis zineibu akademejis centrys, mīstā daudzi zineibys īstotu, 43 augstškolys (jūs vydā – universitets, konservatoreja). Dorbojās 16 profesionalu teatru (zemeiguokī – operys i baleta, dramys), lelys bibliotekys ([[Krīvejis Nacionaluo biblioteka|Nacionaluo biblioteka]], Zineibu Akademejis biblioteka), 43 muzeji (zeimeiguokī – Ermitažs, antropologejis i etnografejis, zineibys i tiemiejumu). Pīterpilī nu 2008 gods dora Krīvejis konstitucionaluo tīsa. + +== Viesture == +'''Da XVIII gs.''' — niulejuos Pīterpiļs teritorejā Nevys greivā dzeivuoja suomugru tautys (saukti par ''vepsim'', ''čūdarim'' i ct.). + +'''XVII i XVIII gs. meitovuos''' — Krīvejis cars Pīters I caur ceikstīnim itū teritoreju atjēme nu Zvīdrejis. + +'''1703 g. maja 27 d.''' — Pīters I itamā vītā suoce stateit jaunū Krīvejis golvysmīstu i deve jam sova aizguodnīka Sv. Pītera vuordu. + +'''1713''' – '''1728 g.''' i '''1732''' — '''1918 g.''' – Pīterpiļs beja Krīvejis imperejis golvysmīsts (piečuok itys statuss tyka Moskovai) i svareigs ūstys mīsts Krīvejis tierdzeibai ar Vokorim. + +'''1852''' – '''1862 g.''' — pastateits Pīterpiļs – Varšovys dzeļžaceļš, jis vadynuoja i Pīterpiļs raisteibu vysumā, i latgalīšu apsadzeivuošonu Pīterpilī leluokā skaitā. + +'''1879''' – '''1917 g.''' — Pīterpiļs beja svareigs latgaļu nacionaluos kulturys centrys. Ite suoce izīt pyrmuo latgalīšu periodika, vuicejuos i dorbuojuos spūdri latgalīšu atmūdys dareituoji, beja īstateits ap 30 latgalīšu školu, nūtyka šoluotuoju kursi, beja taiseiti latgalīšu bīdreibu saguojumi i kulturys sariedīni. + +'''1905''' – '''1907 g.''' — Pīterpilī nūtyka pyrmais nu treju lelūs vaļstiskūs apvārsumu – 1905 g. revoļuceja. + +'''1914''' – '''1924 g.''' — Pīterpiļs beja puorsaukta '''Petrograds''' (krīvyskai ''Петроград''). + +'''1917 g.''' — Pīterpilī nūtyka ūtrais i trešais lelais vaļstiskais apvārsums: Februara revoļuceja, kuramā nu trona puordzyna caru, i Oktobra revoļuceja, kuramā Krīvejis vaļdeišonu puorjēme lelinīki (komunisti). + +'''1924 g.''' — pīcys dīnys piec Lenina nūmieršonys Petrograda puorsauce par '''Leningradu'''. + +'''1934''' – '''1938 g.''' — Stalina režima laikā Pīterpilī i juos apleicīnē nūtyka "etniskuos teireišonys", kuramuos nu krīvu rūkys lelā skaitā cīte i senejī ituos apleicīnis suomugriskuos ciļmis dzeivuotuoji, i nu jauna mīstā apsadzeivuojušī mozumtautu pīstuovi, īskaitūt latgaļus. + +'''1941''' – '''1945 g.''' — Ūtrūs Pasauļa vaidu laikā Pīterpili apmāram 900 dīnu ilgai beja apguluse vuocīšu armeja, i mīsts dzeivuoja blokadys apstuokļūs, caur kū vaira kai 600 000 pīterpilīšu nūmyra nu bods. Deļ kara laika varūneiguos iztvereibys 1945 godā Pīterpilei daškierts varūņmīsta vuords. + +'''1991 g. juņa 12 d.''' — Pīterpiļs dzeivuotuoji referendumā nūbolsuoja, kab vītā '''Leningrada''' mīstam byutu atdūta atpakaļ viesturiskuo pasauka '''Sanktpeterburga'''. + +==Latgaļu nacionaluo atmūda Pīterpilī <ref name ='leik'>''Leikuma L.'' Latgalīšu volūda. 1 d. - Sanktpeterburga, 2003, 1 psl.</ref>== + +'''1879 g.''' — suoce dorbu Pīterpiļs katuoļu goreigais seminars, kurymā nu 1884 g. vuiceja latgalīšu volūdu (seminārā studēja zeimeigi latgalīšu nacionaluos atmūdys dareituoji: A. Platpīrs, J. Višnevskis, [[Fraņcs Trasuns|F. Trasuns]], A. Kaņtinīks, S. Tukišs, P. Smeļters, F. Laizāns, M. Dukaļskis, [[Nikodems Rancāns|N. Rancāns]], K. Skrynda, F. Kemps, P. Tukišs i ct.). + +'''1901''' – '''1906 g.''' — Pīterpilī dorbuojuos [[Nikodems Rancāns|N. Rancāna]] kūpdzeive jaunīšim nu Latgolys. + +'''1903 g.''' — Pīterpilī nūtyka pyrmuo latgalīšu pareizraksteibys sprīža, kuramā atsasaceits nu nazcik puoliskūs grafikys elementu izlītuošonys. + +'''1903 g.''' — Pīterpilī suoce izīt pyrmuo latgalīšu periodika („Zvaigzne" 1903 g., „Gaisma" 1905 – 1906 g., „Sākla" 1906 g., „Dryva" 1908 – 1918 g., „Jaunys Zinis" 1912 – 1914 g.). + +'''1903''' – '''1913 g.''' — Pīterpilī dorbuojuos „Pīterburgys latvīšu muzykalyskuo sabīdreiba" — latgalīšu bīdreiba ar koru, kūkļuotuoju ansambli, simfoniskū orkestri, teatra pulceņu, koņcertim, dramatiskajim pastatejumim, tematiskajim vokorim i biblioteku. + +'''1906 g.''' — [[Fraņcs Trasuns|F. Trasuns]] tyka par Latgolys pīstuovi pyrmajā Krīvejis Vaļstiskajā Dūmā. + +'''1906 g.''' — Pīterpilī bruoli K. i O. Skryndys organizēja latgalīšu volūdys stuņdis (pi Sv. Katris bazneicys). + +'''1907''' – '''1909''' g. — Pīterpilī dorbuojuos K. Skryndys vadeiti latgalīšu školuotuoju sagataviešonys kursi. + +'''1906 g.''' — Pīterpilī O. Skrynda un F. Obšteins izdeve pyrmū latgalīšu tautudzīšmu apdarīņu lasejumu „Dzīšmu vuoceleite". + +'''1908 g.''' — Pīterpilī izdūta pyrmuo pošu latgalīšu sagatavātuo latgalīšu volūdys gramatika — O. Skryndys „Latvīšu volūdys gramatika" („Латышская грамматика летгальскаго нарѣчiя"). + +'''1909 g.''' — [[Fraņcs Trasuns|F. Trasuns]] Pīterpilī izdeve pyrmū latgalīšu skaitomgruomotu — hrestomateju sātai i školai „Školys Duorzs". + +'''1915''' – '''1919 g.''' — Pīterpilī dorbuojuos „Latgalīšu paleidzeibys bīdreiba kara uperem" (ādynuošona, naktsvītys, dareitovys, medicīniskais paleigs, školys (vaira kai 30) i pedagogiskī kursi). + +'''1917 g.''' — Pīterpilī īstateita „Latgolys školuotuoju savīneiba” + +== Nūruodis i olūti == +{{Nūruodis}} + +{{commonscat|Saint Petersburg|Pīterpiļs}} + +[[Kategoreja:Krīvejis mīsti]] + g069jyimr8caz6oqbu2ok1zwlot2vom + + + + Zaļvis pogosts + 0 + 2049 + + 28767 + 20223 + 2013-03-08T02:50:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801090]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Zaļvis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Zaļvis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Zaļvis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Naratys nūvods +| centrys = Zaļve +| pluots = 210,2 +| dzeivuotuoju_skaits = 759<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 759 / 210.2 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Zaļvis pogosts''' irā [[Naratys nūvods|Naratys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys [[Zaļvē]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.neretasnovads.lv/index.php?option=com_content&view=category&layout=blog&id=61&Itemid=183 Zaļvis pogosts Naratys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + j8lb1k43amx9b6bu3h34s8gcq1veu2m + + + + Piļkaļnis pogosts + 0 + 2050 + + 28768 + 20225 + 2013-03-08T02:50:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800930]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Piļkaļnis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Piļkaļnis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Piļkaļnis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Naratys nūvods +| centrys = Piļkaļne +| pluots = 99,8 +| dzeivuotuoju_skaits = 491<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 491 / 99.8 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Piļkaļnis pogosts''' irā [[Naratys nūvods|Naratys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys [[Piļkaļnē]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.neretasnovads.lv/index.php?option=com_content&view=category&layout=blog&id=63&Itemid=185 Piļkaļnis pogosts Naratys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + i5rhzku8cgd4ub2enxj1lgsvugsbv42 + + + + Naratys pogosts + 0 + 2051 + + 28769 + 20220 + 2013-03-08T02:51:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801269]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Naratys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Naratys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Naratys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Naratys nūvods +| centrys = Narata +| pluots = 125,7 +| dzeivuotuoju_skaits = 1860<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1860 / 125.7 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Naratys pogosts''' irā [[Naratys nūvods|Naratys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys [[Naratā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.neretasnovads.lv/index.php?option=com_content&view=category&layout=blog&id=47&Itemid=164 Naratys pogosts Naratys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + eenl9ovsan8nup326ji2a26g13sh70l + + + + Mozzaļvis pogosts + 0 + 2052 + + 28770 + 20221 + 2013-03-08T02:51:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801162]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Mozzaļvis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Mozzaļvis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Mozzaļvis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Naratys nūvods +| centrys = Ierberge +| pluots = 209,4 +| dzeivuotuoju_skaits = 1273<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1273 / 209.4 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Mozzaļvis pogosts''' irā [[Naratys nūvods|Naratys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - [[Ierberge]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.neretasnovads.lv/index.php?option=com_content&view=category&layout=blog&id=61&Itemid=183 Mozzaļvis pogosts Naratys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + c5oig9wvfroo2aeqz41vsu66xlgatez + + + + Nacionaluo biblioteka + 0 + 2053 + + + 31306 + 24282 + 2016-02-17T19:23:17Z + + Edgars2007 + 114 + + jau viss ir atrodams rakstā [[Krīvejis Nacionaluo biblioteka]] + wikitext + text/x-wiki + #REDIRECT [[Krīvejis Nacionaluo biblioteka]] + 1dq00rkotirwqwm1jsldvpg18thznjb + + + + Krīvejis Nacionaluo biblioteka + 0 + 2054 + + 28771 + 25630 + 2013-03-08T02:51:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 28 interwiki links, now provided by [[d:|Wikidata]] on [[d:q267566]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Невский 37.jpg|thumb|Krīvejis Nacionaluos bibliotekys golvonais (vacais) kuorms Nevskajā prospektā|250 px]] +[[Fails:Russian National Library building.jpg|thumb|Tys pat bibliotekys kuorms Nevskajā prospektā XIX g. s. suokuos (seneja gravira)|250 px]] +'''Krīvejis Nacionaluo biblioteka''' (krīvyskai ''Росси́йская национа́льная библиоте́ка'') — vīna nu vysuleluokūs [[Biblioteka|biblioteku]] pasaulī, vīna nu pyrmūs valeimūs bibliotēku Reitu Europā. Īstateita 1795 godā. Fondūs globoj vaira kai 35 milijonus vīneibu, godā apkolpoj vaira kai 1 milijonu skaiteituoju. Izalikaliejuse nazcik nomūs [[Pīterpiļs|Pīterpilī]]. + +== Viesture == + +'''1795 g.''' — pa carīnis [[Katris II]] pīsacejumam sasprīsts [[Pīterpiļs|Pīterpilī]] īriedeit Imperatoriskū valeimū [[Biblioteka|biblioteku]] (krīvyskai ''Импера́торская публи́чная библиотека''). Par bibliotekys pamatu tyka Varšovā krīvu pazogtī Zalusku bibliotekys 420 000 siejumu lelī fondi. Jūs sagruobe generala A. Suvorova vodomī [[Krīveja|Krīvejis]] karapulki, 1794 godā apguluši Varšovu i apmīguši Tadeuša Koscjuškys vadeitū puoļu buntu. + +[[Fails:DPK1 DSC0038.JPG|thumb|Nazkodejais Zalusku bibliotekys kuorms Varšovā, nu kuruo pazogtī fondi sataiseja Krīvejis Imperatoriskuos bibliotekys pamatu|250 px]] + +'''1795''' – '''1814 g.''' pastateits bibliotekys kuorms pa arhitekta J. Sokolova projektam. Jis beja guoduots na viņ kai gruomotu laiceišonys vīta, a i kai plotai ļaudeibai daīmams tautys vuiceibys centrys. Beja plans pīlaseit vysys gruomotys, izdūtuos [[Krīveja|Krīvejā]], izdūtuos uorzemē krīvu volūdā, taipoš gruomotys uorzemis volūduos ap Krīveju. Katre II personeigai saksteja bibliotekys stateibu i pīsadaleja gruomotu laseišonā bibliotekys fondam. + +'''1814 g.''' — Imperatoriskuo valeimuo biblioteka svieteigai atdareita vysim iņteresentim. + +'''1917 g.''' — puorsaukta par Krīvejis Valeimū bibliotēku (krīvyskai ''Российская публичная библиотека''). + +'''1925 g.''' — puorsaukta par Vaļstiskū valeimū biblioteku (krīvyskai ''Государственная публичная библиотека''). + +'''1941''' – '''1945 g.''' — pošuos gryutuokajuos [[Leningrada blokada|blokadys]] dīnuos biblioteka nanūstuoja dareit. Caur gryutu prācu i stypru aizalikšonu, daguļa i elektrejis tryukuma apstuokļūs bibliotekys dareituoji izglobuoja bibliotekys unikalūs fondus. + +'''1992''' g. — puorsaukta par Krīvejis Nacionalū biblioteku (krīvyskai ''Росси́йская национа́льная библиоте́ка'') + +== Padalīni == + +Bez golvonuo kuorma (Nevskuo prospekta i Sadovuos ūļneicys styurī) biblioteka tur vēļ nazcik filialu: +* Jaunais kuorms Moskovskajā prospektā, atdareits 1998 godā. +* Nazkodejuo Katris mīlasirdeigūs jaunivu instituta kuorms Fontankys upmalē. +* Kuorms Liteinajā prospektā. +* Krylova sāta Sadovajā ūļneicā 20. +* Plehanova sāta 4-ajā Кrаsnoarmeiskajā ūļneicā. +* Tīsiskuos informacejis centrys Ostrovskuo laukumā 1/3. + +[[Fails:RNB SPB.jpg|thumb|Bibliotekys jaunais kuorms Moskovskajā prospektā|250px|right]] + +== Fondi i Voļtera biblioteka== + +Krīvejis nacionaluos bibliotekys fondi — vīni nu pošu leluokūs pasaulī. Jī apjam vaira kai 35 mln. globuošonys vīneibu (2010): ap 15 mln. gruomotu, 13 mln. [[Žurnals|žurnalu]], 0,6 mln. gazetu gods komplektu i ct. + +Vīna nu pošu vierteiguokūs kolekceju Krīvejis Nacionaluos bibliotekys fondūs – XVIII gs. prancuzu apgaisminīka, rakstinīka, viesturnīka i filosofa F. M. A. Voļtera biblioteka. Jamā 6814 siejumu gruomotu ar Voļtera padareitom aizziemem i darakstejumim, taipoš juo dorbu rūkroksti i malnroksti. Itū bibliotēku 1778 godā [[Katre II]] nūpierka nu Voļtera plemineicys i puormaņtineicys. 1779 godā ar specialu lellaivu jū atvede iz Pīterpili i nu reizis pastateja Ermitažā. Cara Nikolaja I laikā daīšona Voļtera bibliotekai beja aizdareita, a 1861 godā pa cara Aleksandra II riedejumam Voļtera biblioteka puorcalta iz Imperatoriskū valeimū biblioteku. + +== Latgaļu izdavumu kolekceja == + +Krīvejis Nacionaluos bibliotekys fondūs globojās vaira kai 100 izškireigu pasauku izdavumu [[Latgaļu volūda|latgaļu volūdā]], kuri sagatavāti i nūdrukavuoti [[Krīveja|Krīvejis]] teritorejā (vuiceibys gruomotys školom, daiļliteratura, religiskuo literatura, [[Žurnals|žurnali]], laikroksti, vīnreizeiguos gazetys i ct.). Taipoš bibliotekys fondūs irā Viļnē, Reigā i cytur XVIII i XIX godusymtūs izdūtuos latgaļu gruomotys<ref name ='leik'>Латгальская книга в России (1917–1937). Каталог выставки 14.02–14.03.2007 – Санкт-Петербург, Российская национальная библиотека, Санкт-Петербургский государственный университет, 2007</ref>. + +Daļa nu Krīvejis latgaļu izdavumu izguoja pošā Pīterpilī – laikā, kod itymā mīstā formējuos i aizzīdēja latgaļu nacionaluo kusteiba (nu 1849 da 1917 godam Pīterpilī izguoja apmāram 120 izdavumu [[Latgaļu volūda|latgaļu volūdā]] <ref name = 'seil'>''Seiļ V.'' Sistematiskais leidz 1935. godam latgaļu izlūksnē izdūtūs grōmotu rōdeitōjs. Rēzeknē, 1935.</ref>, jūs sagatavēja [[Ignats Asāns|I. Asāns]], D. Bončkovskis, Ceļaveirs, M. Jackevičs, [[Fraņcs Kemps|F. Kemps]], P. Laizāns, A. Laurinoviča, [[Naaizmierstule]], A. Novickis, M. Olūteņš, [[Nikodems Rancāns|N. Rancāns]], V. Rubuļs, M. Silenbahs, B. Skrynda, [[Kazimirs Skrynda|K. Skrynda]], [[Ontons Skrynda|O. Skrynda]], [[Fraņcs Trasuns|F. Trasuns]], P. Tukišs, S. Zīmeļs (O.Laizāns) i ct.). + +Cyta daļa Krīvejis latgaļu izdavumu nūdrukavuota cytūs mīstūs – Pliskovā aba Opskovā, Moskovā i Novosibirskā – 20 godu laikā, cikom sovetu Krīvejā beja labtik vieleigi apstuokli mozumtautu kulturai raisteitīs (nu 1917 da 1937 godam Krīvejā izguoja apmāram 100 izdavumu latgaļu volūdā, jūs sagatavēja J. Bite, A. Čangalīts, [[Vera Daškeviča|V. Daškeviča]], A. Eisuļs, M. Eņdzeņa, S. Jerumāne, J. Kolps, S. Kovaleņčiks, I. Kūkuojs, P. Līpeņš, D. Logins, J. Meikšāns, K. Mežuļs, A. Mežule, J. Opyncāns, J. Silinīks, I. Vucāns, A. Zarkevičs, V. Zeimaļs, J. Zvīdra i ct.). Sūpluok daudzejūs gruomotu latgali Krīvejā da 1937 godam izdeve i sovu periodiku – laikrokstu „Taisneiba” (Novosibirskā) i [[Žurnals|žurnalu]] „Ceinis Karūgs” (Moskovā). + +Gruomotu i presis izdūšonu [[Latgaļu volūda|latgaļu volūdā]] Krīvejā puotrauce Stalina režima 1937 – 1938 g. represejis, kurys beja seviški osai pagrīztys pret mozumtautu iņteligeņceju i vadynuoja mozumtautu (tymā vydā latgaļu) mudruoku puorkrīvuošonu. + +2007 godā Krīvejis Nacionalajā bibliotekā nūtyka latgaļu gruomotu paruode "Latgaļu gruomotys Krīvejā (1917 – 1937)". Jamā akcents beja lykts iz 1917 – 1937 g. gruomotom, tok eksponatu vydā ītyka i agruokajūs laikavydūs izdūtys latgaļu gruomotys, globojamys Krīvejis Nacionalajā bibliotekā. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +{{commonscat|Russian National Library|Krīvejis Nacionaluo biblioteka}} +* [http://www.nlr.ru/ Krīvejis Nacionaluos bibliotekys oficialuo teiklavīta] +* [http://www.nlr.ru/coll/onl/fonds_onl/lg/ Krīvejis Nacionaluos bibliotekys informaceja ap latgaļu izdavumu kolekceju] + + +[[Kategoreja:Krīveja]] + 0dhvl5xpg31ml3h0ff9t1vqdtye6jr6 + + + + Vera Daškeviča + 0 + 2055 + + 31374 + 20379 + 2016-03-28T11:08:05Z + + 91.9.119.68 + + [[wmf:Resolution:Licensing policy]] + wikitext + text/x-wiki + '''Vera Daškeviča''' (taipoš ''Veronika Daškeviča, Vera Daškevič, Veronika Daškevič'') (1898 — 1960) — latgaļu kulturys dareituoja, zeimeiga latgalīšu volūdys vuiceišonys metodike, latgaļu školu vuiceibys gruomotu autore. + +Dzymuse [[Ribinišku nūvods|Ribinišku apleicīnē]]. Vuicejusēs [[Pīterpiļs]] latgalīšu školuotuoju kursūs. Bejuse školuotuoja [[Preili|Preiļūs]] i atsaceiguo par školu dorbu [[Viļāni|Viļānu]] apleicīnē. Nu 1920 g. dzeivuojuse Moskovā, darejuse Moskovys latvīšu-latgalīšu kulturvuiceibys brīdreibā „Prometejs” i ituos bīdreibys izdūtuvē. Padarejuse lelu dorbu latgalīšu volūdys populariziešonā, latgalīšu raksteibys vaicuojumu parādavuošonā i volūdys vuiceišonys metodikys darynuošonā latgalīšu školom. Stalina režima "etniskūs teireišonu" laikā 1937 godā represāta, atbejuse politiskā aizspīstumā 20 godu. Myruse Tulys apgabaļa Aleksinā. + +Dyžan svareigs V. Daškevičys īlicīņs latgalīšu vuiceibā. Ap 1933 – 1934 godu Krīvejā jau beja 79 latgaļu pamatškolys i 6 zemnīku jaunīšu školys<ref name ='leik'>''Leikuma L.'' Veras Daškevičas latgaliešu valodas grāmatas skolai. // Материалы XXXIII международной филологической конференции. Секция балтистики... Тезисы докладов. — Санкт-Петербург, 2004, c. 21 – 22; +<br>Латгальская книга в России (1917–1937). Каталог выставки 14.02–14.03.2007 – Санкт-Петербург, Российская национальная библиотека, Санкт-Петербургский государственный университет, 2007</ref>, taipoš Ačinskā dareja latgalīšu pedagogiskais tehnikums (īstateits 1931 godā), i pi juo – školuotuoju kursi. Ap 1934 godu vysuos latgalīšu školuos 1 – 2 klasē vuiceibys nūtyka viņ pa latgaliskam. V. Daškevičys pīraksteituos i sastateituos gruomotys, vuiceibu programys i metodiskūs nūruodejumus SSRS vuiceibys tautys komisariats beja apstyprynuojs par oficialai izlītojamim Krīvejis latgaļu školuos. Taipoš zeimeigi V. Daškevičys dorbi, kurymūs sprīsti latgalīšu raksteibys vaicuojumi. Juos pīzynumi latgalīšu literaruos volūdys standartizacejis tecīnī aktuali pa šai dīnai. + +* '''V. Daškevičys pīraksteituos gruomotys''' +** ''Latgalīšu volūdas mōceibas grōmota sōkuma školai. Gramatika un pareizraksteiba. II daļa. 3. un 4. klasem.'' — Moskova-Novosibirsks, 1934 +** ''Ortografisku vyngrynōjumu krōjums sōkuma školas ūtrai klasei. Ūtrō daļa.'' — Moskova, 1936 +** ''Latgalīšu volūdas gramatika. Mōceibas grōmota napylnai vydsškolai. Pyrmō daļa. Fonetika un morfologija. Pīktō klase.'' — Moskova, 1936 +** ''Ortografisku vyngrynōjumu krōjums. Pyrmō daļa. Napylnōs vydsškolas pīktai klasei.'' — Moskova, 1937 + +* '''V. Daškevičys sastateituos, puorvārstuos i latgalīšim adaptātuos gruomotys''' +** ''Dorbs. Losoma gromota latgališu školom: I. un II. školas godam. Porstrodojuši nu latvišu losomgromotas "Darbs" A. Eisuļs un V. Daškevič.'' — Moskova, 1926 (kūpā ar A. Eisuli) +** ''Oroju zeme: Abece-losomgromota / tulkoja un porstrodoja nu krīvu abecem «Наша нива — наша сила» un «Наша сила — советы» V. Daškeviča un [A.] Eisuļs.'' — Moskova, 1926 (kūpā ar A. Eisuli) +** ''Grīslis M. Matematika latgališu školom: 2. moceibas gods / tulk. nu latv. vol. V. Daškevič.'' — Moskova, 1928 +** ''Daškeviča V. Padūmu cīms: Dorba gromota cīmu školom deļ skaiteit-raksteit naprasšonas likvidešonas; nu krīvu volūdas «Советская деревня» tulkoja un porstrodoja V. Daškevič.'' — Moskova, 1930 +** ''Literaturas hrestomatija.2. d.: sōkuma školai: 4. klasei.'' — Moskova-Novosibirsks, 1934 (kūpā ar A. Mežuli) +** ''Bārnim par zvārānim / sakūpōja un tulkōja V. Daškevič.'' — Moskova, 1936 +** ''Lauksaimisteibas rokstu krōjums / sakūpōja V. Daškevič.'' — Moskova, 1936 +** ''Barto A. Brōleiši / tulkōja V. Daškeviča; zeimiejumi E. Grīnvaļda.'' — Moskova, 1936 + +== Nūruodis i olūti == +{{Nūruodis}} + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + qfp61cpr7p0zli29fabaj36r7vrz9i1 + + + + Anna Dimaņte + 0 + 2057 + + 26605 + 20365 + 2012-12-31T01:20:10Z + + Turaids + 172 + + + Pīvīnoju kategoreju. + wikitext + text/x-wiki + '''Anna Dimaņte''' (1908 - 2002) — latgaļu ailineica, publiciste, ļaudyskuo dareituoja. + +Dzymuse 1908 g. novembra 10 d. [[Leiksnys pogosts|Leiksnys pogosta]] Seilavskīšu solā. Beiguse [[Daugpiļs]] 1 latvīšu pamatškolu (1926), Vaļstiskū Latgolys lauksaimesteibys vydsškolu [[Malnovys pogosts|Malnovā]] (1930), Latvejis Universiteta lauksaimesteibys fakuļtetu (1938). Darejuse par školuotuoja Aglyunys lauksaimesteibys vydsškolā. 1944 g. rudinī kūpā ar saimi laidusēs bāgaleibā caur Kūrzemi iz Vuoceju. Tī darejuse par duorzineicu, pīna dasavāruoju i Haunštetena bāgaļu siedeibys ļaudyskūs lītu vadeituoju. 1951 g. puorsacyluojuse iz Demoina mīstu ASV, tī darejuse Žāļsirdeibys dzeidātovā. Nu 1971 g. bejuse školuotuoja latvīšu školā ASV. Darbeigai pīsadalejuse bāgaleibys latgaļu ļaudyskajā dzeivē. Rakstejuse pjesys, stuoškus, dzeivuļus latgalīšu volūdā. Bejuse „Tāvu zemis kalendara” sastateituoja i redaktore (1986 – 1990). Myruse 2002 g. juļa 31 d. Demoinā, ASV, paglobuota Demoina Glendaļa kopūs. + +Pyrmuos publikacejis — „Čekists” i „Par moz” bāgaleibys latgaļu žurnālā „[[Dzeive]]”. Poezeja apkūpuota lasejumā „Vālī zīdi” (1995). + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + jpf7n1tj52ue0blemiitwpjiv17yh9w + + + + Ješs + 0 + 2059 + + 31827 + 31803 + 2016-12-09T09:37:23Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31803 dated 2016-12-09 09:01:35 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Ješs +| atvaiga_pasauka = http://upload.wikimedia.org/wikipedia/lv/2/2a/E%C5%BEezers_pie_Ezernieku_-_Andze%C4%BCu_ce%C4%BCa.JPG +| atvaiga_aprakstejums = Ješa azars pi Bukmuižys – Aņdzeļu ceļa +| zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 10 | lats = | latNS = N +| longd = 27 | longm = 35 | longs = | longEW = E +| nūvods = Dagdys nūvods +| pluots = 10 +| pošlelais_garums = 8,2 +| vydyskuo_dzilīne = 6,4 +| pošleluo_dzilīne = 21,0 +| vydums = +| augstums = 169,4 +| iztece = Narūta +| satecis_baseins = 120 +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = 33-36 +| dzeivojamys_vītys = Bukmuiža, Aņdzeli +| cytys pasaukys = Ežezers +}} + +'''Ješa azars''' aba '''Ješs''' – azars Latgolys dīnavydu daļā, [[Dagdys nūvods|Dagdys nūvoda]] Bukmuižys i Aņdzeļu pogostūs. Tur vysuvaira azarsolu par vysim Baļtejis vaļsteibu azarim. Ješam i juo apleicīnei soveigi daili vierīni. + +Nu 1928 gods azars vaļsteibys apsardzeibā kai dobys pīminieklis. Nu 1977 da 1999 godam Ješa azarsolys īguoja [[Nūlīgtiņs|botaniskajā nūlīgtinī]] "Ežezera salas", nu 1999 da 2004 godam – [[Nūlīgtiņs|dobys nūlīgtinī]] "Ežezers", nu 2004 g. – Rāznys dobys parkā. Nu 2006 gods azars īslāgts [[Rāznys nacionalais parks|Rāznys nacionaluo parka]] teritorejā. + +Azarmalis linejis garums – 39,5 km, a kūpā ar azarsolu molys lineju – vaira kai 50 km. Azarmalis kur lāvys, a kur stuovonys. Iztak [[Narūta]] – pi [[Daugovys baseins|Daugovys baseina]] pīdarūša upe. Dybyns akmiņuots i smiļkšuots, kur nakur 0,5 – 1 m bīzs dyunis kluoškys. + +Pa izškireigim saskaitejumim, Ješs tur 33 – 36 eistynuos azarsolys (jūs kūpeigais pluots 77,6 gekteri) i ap 70 azarsalom leidzeigu sataisejumu, puse nu jūs – nīdrom i stībrim apauguši saklumi. Šimanska pussolā īriedeita atpyutys baza. Daudzums eistynūs azarsolu irā azara pūstumreitu daļā, poša leluokuo nu jūs – [[Leluo Luoča azarsola]] (pluots 45 ha). Da XX gs. 70-tūs godu iz ituos azarsolys beja apleicīnis vysuvacuokuo [[vīnsēte]] ar kūka kuormim, stateitim bez noglu. + +Ješā aptyktys 18 – 24 zyvu škirys: leidaka, asars, zuts, leiņs, karušs, keiss, škaunadze i ct. Azars zvejis zinē cīši sūrmeigs. + + +* '''''Leluokuos Ješa azarsolys''''' +** Ankaru azarsola +** Apšu azarsola (pluots 2,7 ha) +** Ješa azarsola aba Ješauka (3,2 ha) +** Kozu azarsola +** Kromanova azarsola +** Kuorklu azarsola (1,4 ha) +** Kupra azarsola +** Leluo Luoča azarsola (vysuleluokuo, 46 ha) +** Leluo Tylta azarsola (3 ha) +** Leluo Teļu azarsola (2,7 ha) +** Leluo Vušku azarsola +** Līpu azarsola (1,1 ha) +** Mīlys azarsola +** Mozuo Teļu azarsola +** Opoluo azarsola (1,2 ha) +** Paričku azarsola +** Putnu azarsola +** Rešetnīku azarsola +** Sīna azarsola (2,8 ha) +** Vylkaste (1 ha) +** 1 Zujoka +** 2 Zujoka +** 3 Zujoka +** 4 Zujoka + +[[Kategoreja: Latgolys azari]] + pbevnokwo65f8rzi2bou0v7p0p2z592 + + + + Ješa azars + 0 + 2060 + + + 20408 + 2012-01-29T13:31:32Z + + Dark Eagle + 34 + + Pāradresē uz [[Ješs]] + wikitext + text/x-wiki + #REDIRECT [[Ješs]] + fw05qfomrqe0hb616r0ksyjuns14xk4 + + + + Puorzvols + 0 + 2061 + + 28773 + 26100 + 2013-03-08T02:51:53Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2385540]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Nolichucky-river-shoals-tn1.jpg|Upis puorzvols|thumb]] +'''Puorzvols''' (anglīšu: ''shoal, riffle, sandbank'', latvīšu: ''rumba, sēklis, krāce'', lītaunīku: ''rėva'', krīvu: ''перекат, отмель'') — nagars upis puosmys, kurymā iudiņs labtik sakluoks kai cytur i kruši tak zamyn pa naleidzonu radžuotu ci akmiņuotu vogu. + +Parostai puorzvols sasadora nu [[Aluviskuos nūsādys|aluviskūs nūsādu]], izalikalej škārs upis vogai i pasataisa valis formys: ar lāvu pīslaiti, pagrīztu preteimā straumei, ci ar stuovonu pīslaiti, pagrīztu pa straumei. + +Puorzvols atsarūn, upis straumei navīnaidai skolojūt vogys dybynu i losūtīs nūsādom. Puorzvols cieški sateikams upis vogys pasaplateišonys vītuos, tyvai pi dataku greivu. Upis straume iz puorzvola gaisynoj sovu ognumu. Leikumojuos (daudzi [[Meandra|meandru]] turūšuos) upēs puorzvoli parostai byun puormeiš ar [[Otuors|otuorim]]. + +[[Kategoreja:Geografeja]] +[[Kategoreja:Geologeja]] + 1tyuo91b70jidf733286lhvfsfhbazy + + + + Otuors + 0 + 2062 + + 28774 + 20435 + 2013-03-08T02:52:04Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2385513]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Otuors''' (anglīšu: ''river reach, pool, strech of water'', krīvu: ''плёс, пучина'', latvīšu: ''atvars'') — dziļuoks upis puosmys iz vyds [[Puorzvols|puorzvolu]], parostai atsarūn leikumoju (daudzi [[Meandra|meandru]] turūšu) upu leičūs. + +Puormeiš izalikaliejušī otuori i puorzvoli sataisa tipiskū upis teciešonys sistemu: otuori parostai byun vysuleikuokajuos upis vogys vītuos, a puorzvoli — taisnuokajuos, sūpluok upis leiču. Otuori vysucieškuok atsarūn tī, kur pavasara polu laikā upis teciejums pasadreizynuoj i kur cīšuok skolojās upis dybyns (pīv., upis vogys leikumūs, upis līknis šaurynuošonuos vītuos). + +Dziļuokajūs otuorūs zīmoj zivs. + +[[Kategoreja:Geografeja]] + 5e8n8xn6gl1lv0y3tae4nd6tz1uk7ob + + + + Meandra + 0 + 2066 + + 28953 + 28775 + 2013-03-08T15:04:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q180537]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Nowitna river.jpg|thumb|Upe ar meandrom]] + +'''Meandra''' (anglīšu: ''meander'', krīvu: ''меандр'', latvīšu: ''meandra'') — vīnmuks cylpa atmejis upis leikums. Pasauka cālusēs nu dyžan leikumojuos Leluo Meņderesa upis (Mozazejā, niulejuos Turcejis teritorejā) senejuos pasaukys greku volūdā — ''Mеjа́ndros (Μαίανδρος)''. + +Meandrys soveigys [[leidzonaine|leidzonaiņu]] upem. Juos atsarūn, upis iudiņa viersejom straumem graudojūt upmalis stuovonū, īdubušū daļu, a dzilīnis straumem nosojūt nūsādys car upmalis lāvū, izcylū daļu. Kod pasadora lels cylps, juo vysušauruokajā vītā upe cieški puorgrauž taisnuoku ceļu, pamazdama [[Vacupe|vacupi]]. + +{{commonscat|Meander}} + +[[Kategoreja:Geografeja]] + 4wib8ezl2u22i3918ft80y7ugnd037c + + + + Leidzonaine + 0 + 2067 + + 28776 + 24493 + 2013-03-08T02:52:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 51 interwiki links, now provided by [[d:|Wikidata]] on [[d:q160091]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Prybuzhskaya_Plain.jpg|thumb|250px|Leidzonaine]] +'''Leidzonaine''' (anglīšu: ''plain'', krīvu: ''равнина'', latvīšu: ''līdzenums'') — ploskona ci drupeit viļņuota sausīnis, jiuru voi okeana dybyna viersa daļa, kurai soveigs napalels augstuma mejeigums (ni vaira kai 200 m) i napalela viersa atveļce (da 5°). Leidzonainis aizjam apmāram 64 % nu Zemis sausīnis teritorejis. Vysuleluokuo pasauļa leidzonaine — Amazonis [[zamaine]] (pluots vaira kai 5 mln. km²). + +Viesturiskai leidzonainis atsarodušys, pa mozam atsalaižūt laduojim i atsakluojūt zam jūs pīnosuotajom nūsādom. Pa strukturai atškir platformu leidzonainis i orogeniskuos (kolnu) leidzonainis. Pa absolutajam augstumam atškir zamaiņu (da 200 m +augstuma), augstaiņu (200 — 500 m) i kolnu aba augstuos (augšuok na 500 m ) leidzonainis i ploskonkaļnis. Pa kienejūšim uorejim procesim atškir denudativuos i akumuļativuos leidzonainis. Denudativuos atsaroda, nūsagraudojūt augstuokajom reļjeda formom (kolnim), a akumuļativuos cēlēs, pīsalosūt nūsādom. + +{{commonscat|Plains}} + +[[Kategoreja:Geografeja| ]] + 9q1hdcrvrhqdn4kdwswaw7c5242be12 + + + + Jezus Krystus + 0 + 2068 + + 29048 + 28777 + 2013-03-09T21:05:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q302]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:StJohnsAshfield StainedGlass GoodShepherd-frame crop.jpg|thumb|Jezus Krystus]] +'''Jezus Krystus''' aba '''Jezus nu Nazaretys''' (pīdzims 7-2 godā pyrma Krystus, nūmyrs 26-36 godā) - centralais objekts kristeigajuo ticeibā, kur lelums kristeigū bazneicu jū pīlyudz kai Dīva dālu. +== Dzeive == + +{{stub}} + +{{commons|Jezus Krystus}} + +[[Kategoreja:Cylvāki]] + adf2ndmonyf50lqnudw6p0810hwhehm + + + + Aizkraukļa pogosts + 0 + 2069 + + 28778 + 20593 + 2013-03-08T02:52:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 5 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2828835]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Aizkraukļa pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Aizkraukļa pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Aizkraukļa pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aizkraukļa nūvods +| centrys = Aizkrauklis +| pluots = 90,5 +| dzeivuotuoju_skaits = 1277<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1277 / 90.5 round 1}} +| īstateits = +| teiklavīta = www.aizkraukle.lv +}} + +'''Aizkraukļa pogosts''' irā [[Aizkraukļa nūvods|Aizkraukļa nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Aizkrauklis (Aizkraukļa pogosts)|Aizkrauklis]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + ekyzokxwkmv7zji4hub15kk78iuahwg + + + + Brenguļu pogosts + 0 + 2070 + + 31964 + 28779 + 2017-04-29T06:32:23Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Brenguļu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Brenguļu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Brenguļu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Beverinys nūvods +| centrys = Brenguli +| pluots = 80,2 +| dzeivuotuoju_skaits = 904<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 923 / 80.2 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Brenguļu pogosts''' irā [[Beverinys nūvods|Beverinys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Brenguli]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.beverinasnovads.lv/index.php?option=com_content&view=article&id=110&Itemid=141 Brenguļu pogosts Beverinys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + fwve4xd3k0nhvkgoj7sagrdznrgmkm0 + + + + Kauguru pogosts + 0 + 2071 + + 31965 + 28780 + 2017-04-29T18:10:29Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kauguru pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kauguru pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Kauguru pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Beverinys nūvods +| centrys = Murmuiža +| pluots = 88,9 +| dzeivuotuoju_skaits = 1480<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 1480 / 88.9 round 1}} +| īstateits = 1866 +| teiklavīta = www.kauguri.lv +}} + +'''Kauguru pogosts''' irā [[Beverinys nūvods|Beverinys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Murmuiža]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.beverinasnovads.lv/index.php?option=com_content&view=article&id=109&Itemid=132 Kauguru pogosts Beverinys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 1b91ygim00efivqiamhalnb2l41msy8 + + + + Trykuotys pogosts + 0 + 2072 + + 28781 + 26533 + 2013-03-08T03:00:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1840703]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Trykuotys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Trykuotys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Trykuotys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Beverinys nūvods +| centrys = Trykuota +| pluots = 113,1 +| dzeivuotuoju_skaits = 1051<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1051 / 113.1 round 1}} +| īstateits = +| teiklavīta = www.trikata.lv +}} + +'''Trykuotys pogosts''' irā [[Beverinys nūvods|Beverinys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Trykuota]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.beverinasnovads.lv/index.php?option=com_content&view=article&id=111&Itemid=142 Trykuotys pogosts Beverinys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + r3ucud904lg1zvma5n04pcta5eur2xh + + + + Birzgaļa pogosts + 0 + 2073 + + 28782 + 24778 + 2013-03-08T03:00:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361051]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Birzgaļa pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Birzgaļa pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Birzgaļa pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Keguma nūvods +| centrys = Birzgaļs +| pluots = 294 +| dzeivuotuoju_skaits = 1864<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1864 / 294 round 1}} +| īstateits = +| teiklavīta = www.birzgale.lv/ +}} + +'''Birzgaļa pogosts''' irā [[Keguma nūvods|Keguma nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Birzgaļs|Birzgalī]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 75ybozybgsd497dewawrp3320reiatx + + + + Rembatys pogosts + 0 + 2074 + + 28783 + 22727 + 2013-03-08T03:00:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801447]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rembatys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Rembatys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Rembatys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Keguma nūvods +| centrys = Rembata +| pluots = 80,29 +| dzeivuotuoju_skaits = 1283<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1283 / 80.29 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Rembatys pogosts''' irā [[Keguma nūvods|Keguma nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys [[Rembata|Rembatā]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + tk77qux92xgy7iwc3ffv3czbpzk04mr + + + + Tuoma pogosts + 0 + 2075 + + 28784 + 22725 + 2013-03-08T03:00:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801470]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Tuoma pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Tuoma pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Tuoma pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Keguma nūvods +| centrys = Kegums +| pluots = 110,18 +| dzeivuotuoju_skaits = 672<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 672 / 110.18 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Tuoma pogosts''' irā [[Keguma nūvods|Keguma nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - [[Kegums]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + rj0srdkonetmdtjgx4x5nhvpqp8iu6g + + + + Sibira seiļs + 0 + 2076 + + 28993 + 28785 + 2013-03-08T19:10:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q214281]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Sibira seiļs +| atvaiga_pasauka = Perisoreus infaustus2.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Putni ''(Aves)'' +| aiļa = Zvierbulini putni ''(Passeriformes)'' +| saime = vuornini ''(Corvidae)'' +| giņts = Palākī seili ''(Perisoreus)'' +| škira = Sibira seiļs''(Perisoreus infaustus)'' +| ziniskuo_pasauka = Perisoreus infaustus +| zemislopys_atvaigs = +| zemislopys_aprakstejums = +}} +'''Sibira seiļs''' ({{Vol-la|Perisoreus infaustus}}; {{Vol-en|Siberian Jay}}; {{Vol-lv|Bēdrozis}}; {{Vol-lt|Sibirinis kėkštas}}) — vuorniņu saimis (''Turdidae'') putnys. Perekli taisa Eurazejis pūstumūs - nu [[Norvegeja|Norvegejis]] vokorūs da Tuoleimim Reitim [[Krīveja|Krīvejā]]. Zīmoj tīpat, kur taisa perekli. [[Latveja|Latvejā]] cīši reši sateikams putnys - perekļa nataisa, viņ kod nakod īceļoj.<ref>http://www.ornitofaunistika.com/lvp/lvp_perinf.htm Ornitofaunistika.com (''latvyskai'')</ref>. + +== Aproksts == +Sibira seiļs nazcik reižu mozuoks i smuidruoks kai seiļs. Jis irā vīns nu pošu mozū putnu vuorniņu saimē. Garuma tik 30-32 cm.<ref>[http://www.avibirds.com/euhtml/Siberian_Jay.html Avibirds European birdguide online: Siberian Jay (Perisoreus infaustus)] (''angliskai'')</ref> Nu cytu vuorniņu saimis putnu seviški izaškir Sibira seiļa gnēze, jei labviņ eisuoka i ar smailu golu. Spolvys bryunai palākys, spuornu pamats i placi kaštanbryuni, a poši spuorni i aste spūdri raudona. Golvys vierss tymsai palāks ci bryuns. + +==Dzeivisvīta== +Dzeivoj dziļai mežūs i cīši reši atīt cylvāku dzeivisvītu tyvumā. Vysod ryupynojās, kab juo pereklis byutu nūglobuots i naradzams. Deļ solsaimieteibys i industrejis raisteibys Sibira seiļu populaceja pasaulī cīši padaleita i navīnaida. + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commons|Perisoreus infaustus|Sibira seiļs}} + +{{DEFAULTSORT:Sibira seiļs}} + +[[Kategoreja:Dzeivinīki]] + dw7ne26j9764pyc6awc5sqxfjqxe3rq + + + + Sauliskolns (Sauleskalns) + 0 + 2077 + + + 31304 + 20523 + 2016-02-17T18:13:09Z + + Dark Eagle + 34 + + + Pāradresē uz [[Saulis kolni]] + wikitext + text/x-wiki + #REDIRECT [[Saulis kolni]] + 5sn6t4aevw1i8hftaylsd4qy3wncc51 + + + + Borkovys katuoļu bazneica + 0 + 2090 + + 31903 + 31254 + 2017-02-25T06:08:35Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + [[Fails:Borkovys katuolu bazneica.JPG|thumb|right|Bazneica 2008 gods zīmā]] +'''Borkovas Svāto Stanislava Romas katōļu bazneica''' ir katōļu dīvnoms [[Modyunis nūvods|Modyunis nūvoda]] [[Borkovys pogosts|Borkovas pogostā]], Borkovas cīma centrā. Borkovas bazneica pīdar pi Romas katōļu Reigas metropolejis Rēznis-Aglyunys diecezis.<ref>[http://www.catholic.lv/main.php?parent=235&show=1 www.catholic.lv]</ref> Dīvanoms valsts ir aizsorgojams kulturys pīminieklis.<ref name="nosaukums-1">[http://www.mantojums.lv/?cat=660&lang=lv www.mantojums.lv]</ref> + +Draudzy voda pravests Viktors Petrovskis.<ref>[http://www.catholic.lv/main.php?parent=235&show=1 www.catholic.lv]</ref> Lelokī ticeigū svātki ir Lēldinis, Svāto Stanislava dīna o Svātos Annis dīna. + +== Viesture == +Pyrmū katōļu kūka dīvanomu Borkovā pastateja 1793 godā Mikeļs Borhs Svāto Mikeļa Erceņgeļa gūdam. Bazneicā vadeja [[Varakļuoni|Varakļuonu]] [[jezuiti|jezuitu]] miseja i kūka dīvanoms beja atdareits 89 godus. + +Tagadejo myura bazneica pastateita pravesta Juoņa Voloviča laikā 1882 godā, izlītojūt grafa S. Ziberga i draudzis ļaužu zīdojumus. Bazneicas projektu sastateja arhitekts K. Tihomirovs. Bazneica ir ar divim simetriskim tūrnim, nu akminim. 1896 goda veiskups Albins Simons Borkovas bazneicu koņsekreja Svāto Stanislava - mūcekļa i veiskupa gūdam.<ref>Juoņs Cakuls. Latvejis Romys katuoļu parapejis. Reiga:Reigys metropolejis kkureja, 1997. 68.lpp. (''latvyskai'')</ref> + +== Nūruodis == +{{nūruodis}} + +{{DEFAULTSORT:Borkovys Svātuo Stanislava Romys katuoļu bazneica}} + +[[Kategoreja:Latgolys katuoļu bazneicys]] + lt7krbgvzfw4a2lqgxiuis4dq6b2zk9 + + + + Žurnals + 0 + 2091 + + 28786 + 27917 + 2013-03-08T03:01:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 73 interwiki links, now provided by [[d:|Wikidata]] on [[d:q41298]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Zeitschriften.JPG|250px|thumbnail|Žurnalu lakteņa.]] +'''Žurnals''' ({{Vol-fr|journal}} – laikroksts, žurnals) – brošurys ci gruomotys izavierīņa periodiskys izdavums, vysucīškuok ar vuokim i iļustracejom. Vysuvaira publicej analitiskus tekstus ap ļaudeibys dzeivi, politiku, ekonomiku, muokslu, kulturu i cytim vaicuojumim, kurī paškierti konkretom ļaužu grupom - bārnim, sīvītem, [[Veirīts|veirīšim]], sporta mīļuotuojim, makšarnīkim i tt. + +== Žurnali latgaļu volūdā == +Myuslaikūs latgaļu volūdā izīt religiskai ļaudyskais žurnals [[Katōļu Dzeive]], juo pyrmais laidīņs izguoja 1926 godā. + +Cyti svareiguokī žurnali latgaļu volūdā bejuši ''Dzeive'', ''Zīdūņs'', ''Sauleite'', ''Latgolys Zemkūps'', ''Ceinis Karūgs''. Pyrmais žurnals latgaļu volūdā beja ''Austra'' (izdūts 1908 godā, 4 godus piec druka nūlīguma nūceļšonys). + +{{Commonscat|Magazines|Žurnals}} + +[[Kategoreja:Viesteitivi]] + nmhhgo74isphruu2ttih4re3cqadf91 + + + + Biblioteka + 0 + 2092 + + 31896 + 28787 + 2017-02-25T06:07:25Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + [[Fails:Chambery interieur mediatheque 600px.jpg|right|thumb|Myuslaiku biblioteka Čemberī, [[Praņceja|Praņcejā]].]] +'''Biblioteka''' ({{Vol-el|βιβλίον, biblīos – "gruomota"; θήκη, tēke – "pagluobe"}}) – privats ci ļaudiskys gruomotu kūplasejums, ci vuiceibu īstots, izalosūt, komplektejūt, sorgojūt gruomotys i ļaunūt jūs lītuot ļaudeibai. Taipoš par biblioteku sauc gruomotu serejis, kurei paškierta konkretai skaiteituoju grupai ci literaturys žanram (pīv., Škoļnīku biblioteka, Filosofejis biblioteka). Pa organizacejai, kuramā dora biblioteka, izškir kleštoru bibliotekys, universitetu bibliotekys, tīsu bibliotekys i ct. + +Pošleluos bibliotekys [[Latgola|Latgolā]] dora [[Daugpiļs|Daugpilī]] (Latgolys Centraluo biblioteka, Daugpiļs Universiteta biblioteka) i [[Rēzne|Rēznē]] (Rēznis Centraluo biblioteka, Rēznis Augstškolys biblioteka). + +{{commonscat|Libraries|Biblioteka}} + +[[Kategoreja:Kultura]] + 2ah5kw56pv5u0h6dpu0v20rynjjrgcq + + + + Valdis Lauskis + 0 + 2099 + + + 20953 + 20947 + 2012-02-12T08:27:00Z + + Hugo.arg + 133 + + + Pāradresē uz [[Vaļds Lauskys]] + wikitext + text/x-wiki + #REDIRECT [[Vaļds Lauskys]] + 8kkg8kdhpozyhmkb4ktxbbpm0mt8z74 + + + + Lobuoržu azars + 0 + 2103 + + 29805 + 25728 + 2013-04-15T02:05:33Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Lobuoržu azars +| atvaiga_pasauka = Lake Loborzhu 2.jpg +| atvaiga_aprakstejums = Vierīņs iz Lobuoržu azaru zīmā. +| zemislopa = Latveja +| pushpin_label_position = left +| latd = 56 | latm = 16 | lats = 49 | latNS = N +| longd = 27 | longm = 46 | longs = 45 | longEW = E +| nūvods = Ludzys nūvods +| pluots = 0,098 +| pošlelais_garums = +| vydyskuo_dzilīne = +| pošleluo_dzilīne = 3,7 +| vydums = +| augstums = 204 +| iztece = +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = +| dzeivojamys_vītys = Lobuorži, Nalogi +| cytys pasaukys = +}} + +'''Lobuoržu azars''' — azars [[Latgola|Latgolys]] reitu daļā, [[Ludzys nūvods|Ludzys nūvoda]] [[Rundānu pogosts|Rundānu pogostā]]. Azarmalē pa lelumam solsaimisteibys zemis. Gar dīnavydu azarmali īt Rundānu-Kaunatys ceļš, a reitu i pūstumu azarmalē iudinim dasalaiž mežs. Nu azara iztak ryucs iz [[Sarja|Sarju]], partū azara iudini īīt [[Daugova|Daugovys]] lelbaseinā.<ref>[http://www.ezeri.lv/database/485/ ezeri.lv]</ref> + +Azarmalē div dzeivuojamuos vītys - Lobuorži (4 dzeivuotuoji) i Nalogi (12 dzeivuotuoju).<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +== Nūruodis == +{{nūruodis}} + +[[Kategoreja:Rundānu pogosts]] +[[Kategoreja:Latgolys azari]] + eylzdkvq0ianmxh1elbibwbokp5dj0e + + + + Pavasara mieneša 7 dīna + 0 + 2107 + + 28788 + 25386 + 2013-03-08T03:01:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 153 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2394]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Pavasara mieneša 7''' dīna irā 66 goda dīna pa Gregora kaleņderam (garajuo godā - 67 dīna). Nu ituos dīnys leidz goda golam palīk 299 dīnys. + +== Svieteibu i pīminis dīnys == +* [[Fails:Flag of Albania.svg|25x15px|Albaneja]] [[Albaneja|Albanejā]] Školuotuoju dīna. + +=== Katuoļu svātū dīnys === +Tumašs nu Akvinu - spredekers, bazneicys školuotuojs + +== Vuorda dīnys == +Ella - Elmira + +== Nūtikšonys == +=== Latgolā === +* 1855 - [[Daugpiļs styprūtne|Daugpiļs styprūtnē]] vīnā stuņdē ceļuojuma laikā apsastuoj Meklenburga-Šverinys gercogīne Auguste Reuss (Auguste Reuß zu Köstritz) i Prūsejis princs Karls;<ref>http://latgalesdati.du.lv/3 Latgolys dati</ref> +* 1946 - piec puortraukumu dorbu atjaunynoj Reigys Goreigais seminars (īstateits 1920 gods leita m. 3 d. Aglyunā); +* 2005 - izaceļ guņsgrāks Rundānu školā, tok cīte tik trešuo stuova kolidors. + +=== Latvejā === + +=== Pasaulī === +* 1876 - Aleksandris Grehems Bels (Alexander Graham Bell) dabova patentu sovai ītaisei, kuru pasauce par teleponu (ASV patenta numers 174,464); +* 1918 - boļševiki pasauce [[Krīveja|Krīvejis]] komunistu parteju; +* 1918 - Roalds Amundsens paviestej pasauļam, ka juo ekspediceja dasnēguse Dīnavydu polu (tū jī īveice 1911 gods zīmys m. 14 d.); +* 1996 - dorbu aizasuoc pyrmais demokratiski ībolsuotais Palestinys parlaments. + + +== Dzimšonys == +=== Latgolā === +* 1904 - Jezups Krumpāns, katuoļu bazneicnīks, Izvolta, Kumbuļu, Bykovys, Augustovys, Ruguoju i Sarkanu pravests; +* 1953 - Juoņs Gavars - politiks, saimis uorsts, Preiļu dzeidātovys direktors; +* 1970 - Andra Kudore, viesturneica, nūvodtāmātuoja. + +=== Latvejā === +* 1891 - Teodors Spāde, Latvejis vaidu flotys admirals; +* 1955 - Aivars Hermaņs, latvīšu muziks, komponists, producents; +* 1977 - Vents Feldmaņs, latvīšu hokejists. + +=== Pasaulī === +* 1913 - Prans Kulikauskys, Lītovys arheologs, humanitarū zineibu doktors; +* 1924 — Kobo Abe (安部公房, Abe Kōbō), japanīsu rakstinīks; +* 1938 - Aļberts Ferts (Albert Fert) - praņcīšu fiziks; +* 1941 - Andrivs Mironovs, krīvu akters. + +== Mieršonys == +=== Latgolā === +* 1984 - Ivans Zavoloko (Иван Никифорович Заволоко), staroveru bazneicnīks, pedagos i presis dareituojs. + +=== Latvejā === +=== Pasaulī === +* 1274 - Tomašs nu Akvinu, italīšu filosofs, teologs, katuoļu svātais; +* 1932 - Aristids Briands, [[Praņceja|Praņcejis]] i vydtautiskuos politikys dareituojs; +* 1954 - Ots Paulis Hermans Dīls, vuocīšu kimejis organiks, Nobela premejis laureats. + +== Nūruodis == +{{nūruodis}} + +{{commonscat|7 March|Pavasara mieneša 7 dīna}} + +{{nadabeigts rakstīņs}} + +{{mieneši i dīnys}} + +[[Kategoreja:Pavasara mieneša 7 dīna| ]] + cilm5f1yaay3ashw2lv0ku0td22dw77 + + + + Kategoreja:Pavasara mieneša 7 dīna + 14 + 2108 + + 20982 + 2012-02-14T11:56:59Z + + Roalds + 50 + + jauna kategoreja + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|7 March|Pavasara mieneša 7 dīna}} + +[[Kategoreja:Pavasara mieness| 7]] + gyinnv6akg8649lt44d77ft2qtyalst + + + + Bieržu pogosts + 0 + 2109 + + 31898 + 28789 + 2017-02-25T06:07:45Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Bieržu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Bieržu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Bieržu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Bolvu nūvods +| centrys = Bierži +| pluots = 127,69 +| dzeivuotuoju_skaits = 886<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 886 / 127.69 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Bieržu pogosts''' irā [[Bolvu nūvods|Bolvu nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Bieržu vydsškola, sporta noms, biblioteka, saīšmu noms i doktorats.<ref>[http://www.balvi.lv/index.php?option=com_content&view=category&layout=blog&id=186&Itemid=173&lang=lv Bolvu nūvoda teiklavīta]</ref> + +== Viesture == +'''Domopolis pogosts''' īstateits ap 1840 godu iz Domopolis muižys zemis. Viesturiskai pogosta zeme bejuse Ludzys apleicinī, vāluok Latvejis Republikys laikā Jaunlatgolys (Abrinis) apleicinī. 1925 godā pasaukts par Bieržu pogostu (''baļtiskai'': Bērzpils pagasts). 1935 godā Jaunlatgolys apleiciņa Bieržu pogosta pluots beja 320 km² i tymā dzeivova 6456 ļauds.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> Nu jū 98,5% beja latvīšu.<ref>[http://www.balvi.lv/index.php?option=com_content&view=category&layout=blog&id=219&Itemid=210&lang=lv Bolvu nūvoda teiklavīta]</ref> 1945 godā pogostā īstateja Benislovys, Bieržu, Drudžu, Golvoru, Līparu i Osudaru solys padūmi, a pošu pogostu 1949 godā likvidieja. Sovetu laikūs īstateja Bolvu rajonu, kam daškiera i Bieržu pogostu. 1951 godā pogostam daškiera likvidātū Osudaru solu, a 1954 godā likvidātū Golvoru solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Bolvu nūvods|Bolvu nūvodam]]. + +== Rūbeži == +Bieržu pogosts tur rūbežu ar: +* [[Bolvu nūvods|Bolvu nūvoda]] [[Kryšanu pogosts|Kryšanu pogostu]] i [[Tiļžys pogosts|Tiļžys pogostu]]; +* [[Lubuona nūvods|Lubuona nūvoda]] [[Indrānu pogosts|Indrānu pogostu]]; +* [[Modyunis nūvods|Modyunis nūvoda]] [[Ūšupis pogosts|Ūšupis pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Bykovys pogosts|Bykovys pogostu]]. +* [[Ruguoju nūvods|Ruguoju nūvoda]] [[Lozdukolna pogosts|Lozdukolna pogostu]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Bolvu nūvods}} + +[[Kategoreja:Bieržu pogosts| ]] + 7oflxfv8cb3bn1e2b1mpic6kk1m897h + + + + Kryšanu pogosts + 0 + 2111 + + 28790 + 21020 + 2013-03-08T03:02:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801109]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kryšanu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kryšanu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Kryšanu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Bolvu nūvods +| centrys = Kryšani +| pluots = 71,18 +| dzeivuotuoju_skaits = 431<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 431 / 71.18 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Kryšanu pogosts''' irā [[Bolvu nūvods|Bolvu nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Bieržu vydsškolys Kryšanu filials, feļčeru punkts, tautys noms i biblioteka.<ref>[http://www.balvi.lv/index.php?option=com_content&view=category&layout=blog&id=188&Itemid=175&lang=lv Bolvu nūvoda teiklavīta]</ref> + +==Viesture== +Viesturiskai Kryšanu pogosta teritoreja bejuse Ludzys, vāluok Latvejis Republikys laikā Jaunlatgolys (Abrinis) apleiciņa [[Tiļžys pogosts|Tiļžys pogostā]]. 1945 godā Tiļžys pogostā īstateja Kryšanu solys padūmi. Kryšanu sola bejuse Vileks apleicinī (1945-1949), Kuorsovys apleicinī (1949-1962), a nu 1962 goda Bolvu rajonā. 1954 godā Kryšanim daškiera likvidātū Krampiņu solu, a kolkoza "Plēsums" teritoreju 1955 godā davīnova Beļovys solai.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Bolvu nūvods|Bolvu nūvodam]]. + +== Rūbeži == +Kryšanu pogosts tur rūbežu ar: +* [[Bolvu nūvods|Bolvu nūvoda]] [[Bieržu pogosts|Bieržu pogostu]] i [[Tiļžys pogosts|Tiļžys pogostu]]; +* [[Kuorsovys nūvods|Kuorsovys nūvoda]] [[Saļņovys pogosts|Saļņovys pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Bykovys pogosts|Bykovys pogostu]] i [[Nautrānu pogosts|Nautrānu pogostu]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Bolvu nūvods}} + +[[Kategoreja:Kryšanu pogosts| ]] + aiwmaudl5ti86uc6eaorhauhh2l1tq2 + + + + Konstaņtinovys pogosts + 0 + 2113 + + 28791 + 26050 + 2013-03-08T03:02:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361078]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Konstaņtinovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Konstaņtinovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Konstaņtinovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Dagdys nūvods +| centrys = Konstaņtinova +| pluots = 79,1 +| dzeivuotuoju_skaits = 601<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 601 / 79.1 round 1}} +| īstateits = 1971 +| teiklavīta = +}} + +'''Konstaņtinovys pogosts''' irā [[Dagdys nūvods|Dagdys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, biblioteka, feļčeru punkts. Konstaņtinovā dora pamatškola, a Aleksandrovā specialuo internatškola. + +==Viesture== +Viesturiskai Konstaņtinovys pogosta teritorejā da 1920 zemis reformai beja Daugpiļs apleiciņa Aleksandrovys, Ignatovys, Konstaņtinovys, Magnusovys i Sivergola muiža.<ref>Latvīšu konversacejis vuordineicys XIV. siejuma 28092-28097 ailis. Reiga, 1936 gods</ref> 1971 godā Kruoslovys rajonā saškir Aulejis, Dagdys i Ignatovys sovetu saimisteibys "Iskra" zemis, īstotūt '''Iskrys solu'''. 1979 god`a Iskrys solai davīnova daļu likvidātuos Jaunokrys solys.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu i tymā pošā godā pasauc par Konstaņtinovys pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Dagdys nūvods|Dagdys nūvodam]]. + +== Rūbeži == +Konstaņtinovys pogosts tur rūbežu ar: +* [[Dagdys nūvods|Dagdys nūvoda]] [[Dagdys pogosts|Dagdys pogostu]], [[Ondrupinis pogosts|Ondrupinis pogostu]] i [[Osyuna pogosts|Osyuna pogostu]]; +* [[Kruoslovys nūvods|Kruoslovys nūvoda]] [[Aulejis pogosts|Aulejis pogostu]], [[Pūstinis pogosts|Pūstinis pogostu]] i [[Skaista pogosts|Skaista pogostu]]. + +==Doba== +Konstaņtinovys pogosts atsarūn [[Latgolys augstaine|Latgolys augstainis]] Dagdys kauprainē, zeme viļnaina. Pogosta pluots 79,1 km<sup>2</sup>, nu tuo solsaimesteibai lītojamuo zeme 4225,1 dekteru, meži 2776,9 dekteru i kriumuoji 106,8 dekteru.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> Pogostā 1999 godā īstateits dobys nūlīgtiņs "Ojuota azars", taipoš lela daļa Sivera pussolys irā sorgojamuo dobys teritoreja. + +=== Iudini === +Upis: +* Dzagyuze +* Mozuo Dubna +* Nartišu gruovs +* Noviku gruovs + +[[Iudiņtvere|Iudiņtveris]]: +* Kupra azars - 7,5 dekteru +* Lubuoneņš +* Ojuots - pošleluo dzilīne 40,5 m (6 pa dzilīnei Latvejā) +* Prudiņka +* Saldu azars - 1,6 dekteru +* Sylazars - 6 dekteri +* Škierzlots + +Zeimeigu pūru i peisu pogostā navā. + +== Dzeivuotuoji == +Konstaņtinovys pogostā dzeivoj 601 ļauds, nu jū 62,2% latvīšu, 23,6% krīvu i 8,3% cytu tauteibu (boltkrīvu, puoļu i cytu). Lelums pogosta dzeivuotuoju katuoli. Dora napalela katuoļu parapeja, tok ļauds pīdartaipoš i Dagdys ci Kruoslovys katuoļu bazneicom. + +=== Solys === +Konstaņtinovys pogosta ļauds dzeivoj 31 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Konstaņtinova, Aleksandrova, Eisaki, Sivergols, Nartiši. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys ceļš Kruoslova-Dagda (P61), taipoš sative nūteik pa nazcik vītejuos zeimeibys celim. Dzeļžaceļa linejis pogostā navā. + +Konstaņtinovys pogosta teritoreju apkalpoj vīna posta atdale "Kriumuoji" Konstaņtinovys solā (LV-5680).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Dagdys nūvods}} + +[[Kategoreja:Konstaņtinovys pogosts]] + 1diafdocyjnt5ht8xz1i056hukuoiqb + + + + Svareņu pogosts + 0 + 2114 + + 28792 + 22682 + 2013-03-08T03:02:27Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2361142]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Svareņu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Svareņu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Svareņu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Dagdys nūvods +| centrys = Svareni +| pluots = 92.2 +| dzeivuotuoju_skaits = 444<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 444 / 92.2 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Svareņu pogosts''' irā [[Dagdys nūvods|Dagdys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms i biblioteka, feļčeru punkts. Pogosta vīneiguo škola Labīšu pamatškola aizdareita. + +==Viesture== +Viesturiskai lelums Svareņu pogosta teritorejis bejs Daugpiļs apleiciņa Bukmuižys pogostā. 1945 godā Bukmuižys pogostā īstateja Svareņu solys padūmi. 1954 godā Svareņu solai daškiera Žogotovys solu. 1960 goda daškiera Pareču solys sovetu saimisteibys "Ceiņa" teritoreju, a Svareņu solys Lelina kolkoza zemis davīnova Bukmuižys pogostam.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Dagdys nūvods|Dagdys nūvodam]]. + +== Rūbeži == +Svareņu pogosts tur rūbežu ar: +* [[Dagdys nūvods|Dagdys nūvoda]] [[Bukmuižys pogosts|Bukmuižys pogostu]], [[Dagdys pogosts|Dagdys pogostu]], [[Kepovys pogosts|Kepovys pogostu]], [[Osyuna pogosts|Osyuna pogostu]], [[Pareču pogosts|Pareču pogostu]] i [[Škaunys pogosts|Škaunys pogostu]]. + +== Dzeivuotuoji == +Svareņu pogostā dzeivoj 444 ļauds, nu jū 51,0% latvīšu, 24,9% krīvu i 13,2% boltkrīvu. 82,3% pogosta dzeivuotuoju irā Latvejis Republikys vaļščuonu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> + +=== Solys === +Svareņu pogosta ļauds dzeivoj 36 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Svareni, Bunčova, Kairiši, Luoci, Panova. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju naškārsoj nivīns vaļsteibys zeimebys ceļš, sative nūteik pa nazcik vītejuos zeimeibys celim. Taipoš dzeļžaceļa linejis pogostā navā. + +Svareņu pogosta teritoreju apkalpoj vīna posta atdale "Dabra" Svareņu solā (LV-5698).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Dagdys nūvods}} + +[[Kategoreja:Svareņu pogosts]] + dh0medvaiqbk963z7mp4dailpkqacyh + + + + Anmary + 0 + 2119 + + 31831 + 31799 + 2016-12-09T09:37:42Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31799 dated 2016-12-09 09:00:57 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Linda Amantova''' (pīdzyma 1980 g. pavasara m. 3 d.), pazeistama taipoš kai '''''Anmary''''' — [[Latveja|Latvejis]] dzīduotuoja. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latvejis dzīduotuoji]] + 8v7ozprhra0t8gopbgwdkvq2n4lgpa0 + + + + Skaistvabalis + 0 + 2128 + + 29050 + 28794 + 2013-03-10T06:09:17Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q503892]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Skaistvabalis +| atvaiga_pasauka = Buprestidae-1.jpg +| atvaiga_aprakstejums = Skaistvabaļu kolekceja +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Puosmkuoji ''(Arthropoda)'' +| klase = Kustūne ''(Insecta)'' +| aiļa = Vabalis ''(Coleoptera)'' +| saime = Skaistvabaļu saime ''(Buprestidae)'' +| ziniskuo_pasauka = Buprestidae +| zemislopys_atvaigs = +| zemislopys_aprakstejums = +}} +'''Skaistvabalis''' ({{Vol-la|Buprestidae}}; {{Vol-en|Jewel beetles}}; {{Vol-lv|Krāšņvaboles}}; {{Vol-lt|Blizgiavabaliai}}) - vysaāduoju vabaļu saime, kuramā vaira kai 15 000 škiru 450 giņtīs. [[Latveja|Latvejā]] dzeivoj 45 škiru skaistvabalis.<ref name=DTLv>Dimitrejs Teļnovs (2004). Latvejis Entomologejis bīdreiba. Latvejis vabaļu (Insecta: Coleoptera) škiru saroksts. ISBN:9984-9768-0-7</ref> Vysuvaira skaistvabalis dzeivoj tropu i subtropu klimatā. Lelys i cīši kruosainis skaistvabalis irā augši viertietys kustūņu kolekcionaru vydā. Kuru nakuru škiru viersspuorni tradicionalai lītuoti juveliru dorbūs i tautys dekorejumūs nazcik Azejis vaļsteibuos ([[Japoneja|Japonejā]], [[Iņdeja|Iņdejā]], [[Taizeme|Taizemē]]). + +== Aproksts == + +Vysaižu māru vabalis, garumā nu 3 mm da 100 mm. Forma drupeit leidzeiga spradzem. Antenys leidzeigys dīgam. Prīkškryuteža gludai i nakusteigai saauguse ar vydskryutežu. Viedereņš sasadora nu 5 segmentu. Kuojis pīcdaleigys. Skaistvabalis - syltummeilūša saime. Vabalis sateikamys sauļuotuos, syltuos dīnuos mežamoluos ci mežapļovuos iz zīdu i kūku viersys. Namosnai skraida. Saauguši ād zīdaputekli ci grauž lopys. +[[Fails:BuprestisOctoguttata.jpg|thumb|left|180px|Ostuņpunktu skaistvabale (''Buprestis octoguttata'')]] +Pošlelī īnaidnīki irā dzeni, kuri nu kūkim izkņuopoj skaistvabaļu kuopurus. + +== Zeimeiba == +Lelums skaistvabaļu puordora nūsaguozušus kūkus ci calmus i irā cīši līteigys - dreizynoj kūknys sakrisšonu. Tok kurys nakurys škirys grauž i vasalus kūkus ci zaļūs auguojus i irā vuodekli. Latgolā vysuvaira vuodis var padareit tik kurys nakurys šaurspuorņu (''Agrilus'') i ''Anthaxia'' škirys. + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commons|Buprestidae|Skaistvabalis}} + +{{DEFAULTSORT:Skaistvabalis}} + +[[Kategoreja:Dzeivinīki]] + 6jvtye12j0zxv8p9i5v1w8mrko5lel8 + + + + Anastacia + 0 + 2131 + + 30164 + 30163 + 2013-12-07T18:21:44Z + + Midnight Gambler + 2123 + + Atcēlu [[Special:Contributions/94.189.184.169|94.189.184.169]] ([[User talk:94.189.184.169|Diskusija]]) izdarīto izmaiņu 30163 + wikitext + text/x-wiki + [[File:Anastacia, Women's World Awards 2009 a.jpg|thumb|right|200px]] +'''Anastacia''' (* 17.09.1968, [[Chicago]]) — dzīduotuoja. +{{Nadabeigts rakstīņs}} + f77lful2x69sl81dgb3wx8u1rxn1dtq + + + + Kategoreja:Albaneja + 14 + 2132 + + 29375 + 25893 + 2013-03-14T05:16:56Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 137 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7130966]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Albania|Albaneja}} + +[[Kategoreja:Pasauļa vaļsteibys]] + boxv0rjld6lt69mavhpfmitoi0qkfxb + + + + Kategoreja:Andora + 14 + 2133 + + 29668 + 29641 + 2013-04-13T04:21:00Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q7130777]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Andorra|Andora}} + +[[Kategoreja:Pasauļa vaļsteibys]] + s2dqnz3t36bt18vogk43nye0iv9hkw1 + + + + Kategoreja:Angola + 14 + 2134 + + 29669 + 29345 + 2013-04-13T04:21:05Z + + KLBot2 + 1857 + + + Bot: Migrating 3 interwiki links, now provided by [[Wikidata]] on [[:d:Q6882623]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Angola|Angola}} + +[[Kategoreja:Pasauļa vaļsteibys]] + p8ec9jlmxcpxt9o06dteaq2j0q370vt + + + + Kategoreja:Argeņtina + 14 + 2135 + + 28796 + 25144 + 2013-03-08T03:03:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 142 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1411779]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Argentina|Argeņtina}} + +[[Kategoreja:Pasauļa vaļsteibys]] + h6psj27idrvlp681ujup6t2wiagh37f + + + + Ņukšu pogosts + 0 + 2136 + + 28797 + 21216 + 2013-03-08T03:03:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801656]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ņukšu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Ņukšu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Ņukšu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ludzys nūvods +| centrys = Ņukši +| pluots = 68,52 +| dzeivuotuoju_skaits = 515<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 515 / 68.52 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Ņukšu pogosts''' irā [[Ludzys nūvods|Ludzys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, biblioteka, feļčeru punkts. 2011 godā Ņukšu pamatškolu davīnova Pyldys pamatškolai i tān pogosta teritorejā nivīna vuiceibu īstota navā. + +==Viesture== +Viesturiskai Ņukšu pogosta teritoreja bejuse Ludzys apleiciņa [[Pyldys pogosts|Pyldys pogostā]]. 1945 godā Pyldys pogostā īstateja Nukšys solys padūmi. 1954 godā solai davīnova likvidātū Purynu solu, a 1975 godā nūtyka zemu puorsameišona ar Gaveiku solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Ludzys nūvods|Ludzys nūvodam]]. + +== Rūbeži == +Ņukšu pogosts tur rūbežu ar: +* [[Ludzys nūvods|Ludzys nūvoda]] [[Pyldys pogosts|Pyldys pogostu]], [[Purynu pogosts|Purynu pogostu]] i [[Vysnovys pogosts|Vysnovys pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Kaunotys pogosts|Kaunotys pogostu]] i [[Stolerovys pogosts|Stolerovys pogostu]]. + +==Doba== +Ņukšu pogosts atsarūn [[Latgolys augstaine|Latgolys augstainis]] Rāznovys kauprainis pūstumu molā. Pogosta pluots 68,52 km<sup>2</sup>, nu tuo solsaimesteibai lītojamuo zeme vaira kai 3 tyukstūšys dekteru, meži 2050 dekteru i kriumuoji 110 dekteru.<ref>http://www.ludzasbiblio.lv/lv/vecaks/pilsetas-pagasti-novadi/uksu-pagasts Ludzys biibliotekys datubaza</ref> Pogostā 1999 godā 1999 godā īstateits dobys nūlīgtiņs "Pyldys azars", četrys Pyldys azarsolys irā vaļsteibys sorgojamī dobys pīminiekli jau nu 1924 gods (tān sorgoj 5 azarsolys). + +=== Iudini === +Upis: +* Gaveiku upeite +* Iļža +* Kozupe +* Leičupeite +* Leidiukšņa +* Pylda + +Pogosta teritorejā 13 azaru. Pošleluos [[Iudiņtvere|Iudiņtveris]]: +* Bečeru azars - 10,8 dekteri +* Gaveiku azars +* Lelais Peisaiņs +* Lelais Zurzu azars - 77,2 dekteri +* Mozais Zurzu azars - 55,8 dekteri +* Opolais Snidzins - 46,9 dekteri +* Pyldys azars - 295 dekteri +* Sleinovys azars - 25,5 dekteri +* Stolonu azars + +Pūri i peisi: +* Ziļu pūrs +* Čyžyku pūrs + +== Dzeivuotuoji == +Ņukšu pogostā dzeivoj 515 ļauds, nu jū 68,4% latvīšu, 26,6% krīvu i 1,4% boltkrīvu. Lelums pogosta dzeivuotuoju katuoli, pīdar Pyldys katuoļu parapejai (Pyldys bazneica atsarūn Ņukšu solā). + +=== Solys === +Ņukšu pogosta ļauds dzeivoj 41 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Belomoiki, Gaveiki, Juzefinova, Ņukši, Pylda. + +=== Zeimeigi ļauds === +* Juoņs Unda - muokslinīks; +* Anatolejs Gorbunovs - politiks, bejs Sativis ministrs; +* Lideja Jankovska - izsliva rūkdarbineica, nazcik paruožu dalineica. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys ceļš Kuorsova-Ludza-Bukmuiža (P49), kas irā dale nu ceļu projekta "Reitu styga". +<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Taipoš sative nūteik pa nazcik vītejuos zeimeibys celim. Dzeļžaceļa linejis pogostā navā. + +Ņukšu pogosta teritoreju apkalpoj vīna posta atdale "Ņukši" pogosta centrā (LV-5730).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Slavvītys == +* Pyldys azara dobys nūlīgtiņs; +* Pyldys muiža, pastateita 19 godusymtā; +* Sleinovys paegle, apleikmārs 1,65 m, augstums 10 m; +* Svātuo Pītera i Puovula Romys katuoļu Pyldys bazneica, kuramā izaglobuojuši obruozi nu 17.-18. godusymta. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Ludzys nūvods}} + +[[Kategoreja:Ņukšu pogosts]] + pgsz584hwpl9xabnhshgnnlnmewa5n2 + + + + Kaunatys pogosts + 0 + 2137 + + + 21209 + 2012-02-24T11:29:46Z + + Roalds + 50 + + "[[Kaunatys pogosts]]" puorsauču par "[[Kaunotys pogosts]]": Latgaliskai! + wikitext + text/x-wiki + #REDIRECT [[Kaunotys pogosts]] + q35agpdvbf3aaubimq6xpcmfypx7uar + + + + Purynu pogosts + 0 + 2138 + + 28798 + 21217 + 2013-03-08T03:03:33Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801701]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Purynu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Purynu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Purynu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ludzys nūvods +| centrys = Kiudolova +| pluots = 59,57 +| dzeivuotuoju_skaits = 431<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 431 / 59.57 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Purynu pogosts''' irā [[Ludzys nūvods|Ludzys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrys Kiudolovā. Pogostā dora tautys noms, biblioteka i feļčeru punkts. Pogosta vīneigais vuiceibu īstots - Purynu suokuškola - 2008 godā aizdareits. + +==Viesture== +Viesturiskai Purynu pogosta teritoreja bejuse Rēznis apleiciņa [[Kaunotys pogosts|Kaunotys pogostā]]. 1945 godā Kaunotys pogostā īstateja Gaveikys solys padūmi. Nu 1949 gods da 1962 godam Gaveikys sola bejus Rēznis rajonā, a nu 1962 gods Ludzys rajonā. 1962 godā solai davīnova Stolerovys solys kolkoza "Zarja" teritoreju. 1975 godā nūtyka zemu puorsameišona ar Ņukšu solu, deļtuo centrys Gaveiki nūguoja cytā pošvoldā. Gaveiku solu puorsauce par Purynu solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Ludzys nūvods|Ludzys nūvodam]]. + +== Rūbeži == +Purynu pogosts tur rūbežu ar: +* [[Ludzys nūvods|Ludzys nūvoda]] [[Cyrmys pogosts|Cyrmys pogostu]], [[Ņukšu pogosts|Ņukšu pogostu]] i [[Vysnovys pogosts|Vysnovys pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Stolerovys pogosts|Stolerovys pogostu]]. + +== Dzeivuotuoji == +Konstaņtinovys pogostā dzeivoj 431 ļauds. + +=== Solys === +Purynu pogosta ļauds dzeivoj 44 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Auzeni, Kiudolova, Železnīki. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju naškārsoj nivīns vaļsteibys zeimebys ceļš, sative nūteik pa nazcik vītejuos zeimeibys celim. Taipoš dzeļžaceļa linejis pogostā navā. + +Purynu pogosta teritoreju apkalpoj vīna posta atdale "Strumpe" Kiudolovys solā (LV-5745).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Ludzys nūvods}} + +[[Kategoreja:Purynu pogosts]] + t0zebyq7c79c1nqeub3lsreg9b447dx + + + + Pyldys pogosts + 0 + 2139 + + 28799 + 21218 + 2013-03-08T03:03:45Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801650]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Pyldys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Pyldys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Pyldys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ludzys nūvods +| centrys = Pylda +| pluots = 118,11 +| dzeivuotuoju_skaits = 688<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 688 / 118.11 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Pyldys pogosts''' irā [[Ludzys nūvods|Ludzys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, biblioteka, feļčeru punkts, pamatškola i pyrmaškolys īstots. Brodaižūs dora katuoļu i pravoslavu parapejis. + +==Viesture== +Viesturiskai Pyldys pogosta teritoreja bejuse Ludzys apleicinī. 1935 godā pogosta pluots beja 188,1 km² i tymā dzeivova 7527 ļauds.<ref> M. Salnais, A. Maldups. Pogostu aproksti (pa 1935 gods tautys saraksteišonys materialim). vaļsteibys Statistiskuo puorvolda izdavums, Reiga, 1935 godā</ref> 1945 godā Pyldys pogostā īstateja Brodaižu, Egluoju, [[Ņukšu pagasts|Ņukšu]], Ostrovys, Pyldys i [[Purynu pogosts|Purynu]] solys padūmi, a pošu pogostu 1949 godā likvidieja. 1956 godā Ludzys rajona Pyldys solai davīnova likvidātū Brodaižu solu i dali Sīnuojis rajona sovetu saimisteibys "Komunars" teritorejis. 1958 godā sovetu saimisteibis "Komunars" 5 i 6 atdali davīnova Egluoju solai. 1975 godā davīnova dali likvidātuos Lūrupu solys.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Ludzys nūvods|Ludzys nūvodam]]. + +== Rūbeži == +Pyldys pogosts tur rūbežu ar: +* [[Ludzys nūvods|Ludzys nūvoda]] [[Nierzys pogosts|Nierzys pogostu]], [[Ņukšu pogosts|Ņukšu pogostu]], [[Rundānu pogosts|Rundānu pogostu]] i [[Vysnovys pogosts|Vysnovys pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Kaunotys pogosts|Kaunotys pogostu]]. + +== Dzeivuotuoji == +Pyldys pogostā dzeivoj 688 ļauds, nu jū 45% latvīšu, 48,8% krīvu i 2% boltkrīvu. Pogosta katuoli pīdar Pyldys katuoļu parapejai, kurys bazneica atsarūn Ņukšu solā, ci Brodaižu katuoļu parapejai. Pogosta krīvi pīdar Brodaižu pravoslavu parapejai. + +=== Solys === +Pyldys pogosta ļauds dzeivoj 77 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Boldyuni, Brodaiži, Gajova, Pylda, Tjapši. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys ceļš Kuorsova-Ludza-Bukmuiža (P49), kas irā dale nu ceļu projekta "Reitu styga". +<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Taipoš sative nūteik pa nazcik vītejuos zeimeibys celim. Dzeļžaceļa linejis pogostā navā. + +Pyldys pogosta teritoreju apkalpoj vīna posta atdale "Pylda" Pyldys solā (LV-5733).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Ludzys nūvods}} + +[[Kategoreja:Pyldys pogosts]] + 5j39d1o85j5jykenbqstuhdet3xn295 + + + + Nierzys pogosts + 0 + 2140 + + 28800 + 21219 + 2013-03-08T03:03:56Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801680]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Nierzys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Nierzys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Nierzys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Ludzys nūvods +| centrys = Nierza +| pluots = 92,11 +| dzeivuotuoju_skaits = 497<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 497 / 92.11 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Nierzys pogosts''' irā [[Ludzys nūvods|Ludzys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrā dora tautys noms, biblioteka, feļčeru punkts i Nierzys pamatškola. Raipolē dora katuoļu bazneica. + +==Viesture== +Viesturiskai Nierzys pogosta teritoreja bejuse Ludzys apleicinī. 1935 godā pogosta pluots beja 112 km² i tymā dzeivova 1405 ļauds.<ref>Latvejis pagasti. Enciklopedeja. A/S Presis noms, Reiga, 2001-2002 ISBN 9984-00-412-0</ref> 1945 godā pogostā īstateja Lūrupu, Nierzys, Seiļu, Tymuļu i Skryņu solys padūmi, a pošu pogostu 1949 godā likvidieja. Nu 1949 gods da 1959 godam Nierzys sola bejuse Sīnuojis rajonā, a nu 1959 goda Ludzys rajonā. 1954 godā Nierzai davīnova likvidātū Tymuļu solu, 1971 godā likvidātuos Rgluoju solys sovetu saimisteibys "Nierza" teritoreju, a 1975 godā likvidātū Lūrupu solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Ludzys nūvods|Ludzys nūvodam]]. + +== Rūbeži == +Nierzys pogosts tur rūbežu ar: +* [[Ludzys nūvods|Ludzys nūvoda]] [[Brygu pogosts|Brygu pogostu]], [[Pyldys pogosts|Pyldys pogostu]], [[Rundānu pogosts|Rundānu pogostu]] i [[Vysnovys pogosts|Vysnovys pogostu]]; +* [[Sīnuojis nūvods|Sīnuojis nūvoda]] [[Ļauderu pogosts|Ļauderu pogostu]] i [[Zaļesis pogosts|Zaļesis pogostu]]. + +== Dzeivuotuoji == +Nierzys pogostā dzeivoj 497 ļauds, nu jū 76,1% latvīšu, 17,8% krīvu i 2,6% ukraiņu. Lelums pogosta dzeivuotuoju katuoli. + +=== Solys === +Nierzys pogosta ļauds dzeivoj 39 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Kušneri, Marlina, Nierza, Raipole, Vonogi. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Jākubmīsts-Rēzne-Terehova (A12), taipoš nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=18 Latvejis vaļsteibys golvonī autoceli]</ref> Nierzys pogostu škārsoj dzeļžaceļa lineja Krystapiļs-Sīnuoja, iz kurys vīna staceja "Nierza". + +Nierzys pogosta teritoreju apkalpoj vīna posta atdale "Nierza" Nierzys solā (LV-5729).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Ludzys nūvods}} + +[[Kategoreja:Nierzys pogosts]] + 214mpdtc1hm6f1iml6fkqoozao1ega7 + + + + Leluo zeile + 0 + 2141 + + 30173 + 28954 + 2013-12-23T15:02:13Z + + Archaeodontosaurus + 768 + + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Leluo zeile +| atvaiga_pasauka = Meise 900.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Putni ''(Aves)'' +| aiļa = Zvierbulini putni ''(Passeriformes)'' +| saime = Zeilini ''(Paridae)'' +| giņts = Zeilis ''(Parus)'' +| škira = Leluo zeile ''(Parus major)'' +| ziniskuo_pasauka = Parus major +| zemislopys_atvaigs = Parus major distribution map.png +| zemislopys_aprakstejums = Leluos zeilis paplateiba pasaulī +}} +[[File:Parus major excelsus MHNT 232 Aïn Béïda Algerie.jpg|thumb|''Parus major'']] + +'''Leluo zeile''' ({{Vol-la|Parus major}}; {{Vol-en|Great Tit}}; {{Vol-lv|Lielā zīlīte}}; {{Vol-lt|Didžioji zylė}}) — zeiliņu saimis (''Paridae'') putnys. Perekli taisa kūna vysā [[Europa|Europā]], Afrikys pūstumūs i centralajuo i vokoru Azejā. Vysucīškuok zīmoj tīpat, kur taisa perekli.<ref>http://www.ornitofaunistika.com/lvp/lvp_parmaj.htm Ornitofaunitsika.com (''latvyskai'')</ref> [[Latgola|Latgolā]] cieški sateikams putnys. Cieški sateikams zīmā pi barūtovu. + +== Aproksts == +[[Fails:Parus major.ogg|thumb|left|200px|Zeilis dzīsme]] +Golvys vierss, reikle i pakoklys malns, pazylys pakruosys myrgu. Mugorys dale padzoltonai zaļa. Byudi bolti. Pakausī bolta pleme. Spuorni pazylai palāki ar gaišu škārsu jūslu. Auguma zamoškys puse dzaltona, tik reikle, jūsleņa iz kryutežys i vādara vyds i paaste malna. Muotainis auguma zamoškys puse padzoltona, a iz kryutežys malnuo jūsleņa na tik spūdra kai tāvainim. Svors 16-17 gramu. + +==Dzeivisvīta== +Dzeivoj vysaižūs mežūs, apleikmīstūs, parkūs, vīnpošūs kūkūs. Zīmā skraida kūpā pa 5-10 individu. Vosorā muotainis guļ pereklī, a tāvaini kūku pazorūs. Parostai vysu godu dzeivoj apleik sova perekļa, tok šaltim zīmā migrej nu pūstumim iz Vokoru Europu ci Baļteju. + +==Barūkle== +Barūkli meklej zoru vaiņagā i iz zemis viersa. Vysuvaira ād kustūni, taipoš i auguoju produktus. Zīmā cieški apmekle barūtovys, kur ād gryudus, sāklys, lašini i druponys. Leluo zeile irā vierteigs suodu putyns, kurs nūād vysaižus vuodekļus. + +== Nūruodis i olūti == +{{Nūruodis}} +{{Commons|Parus major|Leluo zeile}} + +[[Kategoreja:Dzeivinīki]] + kuh0tajqo7icdm764me9jrzkgzlbti0 + + + + Akneišys pogosts + 0 + 2142 + + 31832 + 31786 + 2016-12-09T09:37:47Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31786 dated 2016-12-09 08:57:52 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Akneišys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Akneišys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Akneišys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Akneišys nūvods +| centrys = Akneiša +| pluots = 129,7 +| dzeivuotuoju_skaits = 531<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 531 / 129.7 round 1}} +| īstateits = 1863 +| teiklavīta = +}} + +'''Akneišys pogosts''' irā [[Akneišys nūvods|Akneišys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys [[Akneiša|Akneišā]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 7yda8j48izma5cve2na74uimmfas6zj + + + + Gārsinis pogosts + 0 + 2143 + + 28803 + 21339 + 2013-03-08T03:04:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605129]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Gārsinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Gārsinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Gārsinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Akneišys nūvods +| centrys = Gārsine +| pluots = 68,05 +| dzeivuotuoju_skaits = 904<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 904 / 68.08 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Gārsinis pogosts''' irā [[Akneišys nūvods|Akneišys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Gārsine. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 9bgn899xcu4sx1839og8pkcm6xz1mqk + + + + Osoris pogosts + 0 + 2144 + + 28804 + 21340 + 2013-03-08T03:05:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605165]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Osoris pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Osoris pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Osoris pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Akneišys nūvods +| centrys = Osore +| pluots = 83,8 +| dzeivuotuoju_skaits = 557<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 557 / 83.8 round 1}} +| īstateits = 1866 +| teiklavīta = +}} + +'''Osoris pogosts''' irā [[Akneišys nūvods|Akneišys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys [[Osore|Osorē]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 1kdl8mju6vh109ssajdl6890gzgrcsy + + + + Burtinīka pogosts + 0 + 2145 + + 31909 + 28805 + 2017-02-25T06:09:35Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Burtinīka pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Burtinīka pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Burtinīka pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Burtinīka nūvods +| centrys = Burtinīks +| pluots = 187,3 +| dzeivuotuoju_skaits = 1488<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1488 / 187.3 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Burtinīka pogosts''' irā [[Burtinīka nūvods|Burtinīka nūvoda]] teritoriskais padalīņs [[Vydzemē]]. Pogosta centrys - Burtinīks. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.burtniekunovads.lv/burtnieku-pagasts Burtinīka pogosts Burtinīka nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + pqsmv6mukf60nweuj7q06iy55s13px1 + + + + Ievilis pogosts + 0 + 2146 + + 28806 + 21342 + 2013-03-08T03:05:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800958]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ievilis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Ievilis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Ievilis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Burtinīka nūvods +| centrys = Ievile +| pluots = 92 +| dzeivuotuoju_skaits = 559<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 559 / 92 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Ievilis pogosts''' irā [[Burtinīka nūvods|Burtinīka nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Ievile. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.burtniekunovads.lv/eveles-pagasts Ievilis pogosts Burtinīka nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 5lsj1mz8aci11imhp18bm35tmhxz633 + + + + Vacatis pogosts + 0 + 2147 + + 28807 + 21343 + 2013-03-08T03:05:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800949]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vacatis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vacatis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Vacatis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Burtinīka nūvods +| centrys = Vacate +| pluots = 89,7 +| dzeivuotuoju_skaits = 539<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 539 / 89.7 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Vacatis pogosts''' irā [[Burtinīka nūvods|Burtinīka nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Vacate. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.burtniekunovads.lv/vecates-pagasts Vacatis pogosts Burtinīka nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + d0hmkzmo8er5bgmwg75gf16mvtate37 + + + + Rancānu pogosts + 0 + 2148 + + 28808 + 21344 + 2013-03-08T03:05:48Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800986]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rancānu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Rancānu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Rancānu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Burtinīka nūvods +| centrys = Rancāni +| pluots = 158,9 +| dzeivuotuoju_skaits = 1660<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1660 / 158.9 round 1}} +| īstateits = 1819 +| teiklavīta = +}} + +'''Rancānu pogosts''' irā [[Burtinīka nūvods|Burtinīka nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Rancāni. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.burtniekunovads.lv/rencenu-pagasts Rancānu pogosts Burtinīka nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + epzlje1ippwotc9l8sofnw1iudm6m22 + + + + Mateišu pogosts + 0 + 2149 + + 28809 + 21345 + 2013-03-08T03:05:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800994]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Mateišu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Mateišu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Mateišu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Burtinīka nūvods +| centrys = Mateiši +| pluots = 80,4 +| dzeivuotuoju_skaits = 990<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 990 / 80.4 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Mateišu pogosts''' irā [[Burtinīka nūvods|Burtinīka nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Mateiši. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.burtniekunovads.lv/matisu-pagasts Mateišu pogosts Burtinīka nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + t8sdyc9o8g2gyavd2vjevfmyx7joc5t + + + + Volmīrys pogosts + 0 + 2150 + + 28810 + 21346 + 2013-03-08T03:06:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800966]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Volmīrys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Volmīrys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Volmīrys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Burtinīka nūvods +| centrys = Vonogi +| pluots = 101,2 +| dzeivuotuoju_skaits = 3251<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 3251 / 101.2 round 1}} +| īstateits = 1894 +| teiklavīta = +}} + +'''Volmīrys pogosts''' irā [[Burtinīka nūvods|Burtinīka nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Vonogi. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.burtniekunovads.lv/valmieras-pagasts Volmīrys pogosts Burtinīka nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 0rt7jymx7ghhqmidsdyecfv91ifobn3 + + + + Aluojis pogosts + 0 + 2151 + + 28811 + 21347 + 2013-03-08T03:06:20Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801002]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Aluojis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Aluojis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Aluojis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aluojis nūvods +| centrys = Aluoja +| pluots = 179,2 +| dzeivuotuoju_skaits = 1010<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1010 / 179.2 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Aluojis pogosts''' irā [[Aluojis nūvods|Aluojis nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys [[Aluoja|Aluojā]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.aloja.lv/novads/aloja-alojas-pagasts Aluojis pogosts Aluojis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 4uhl2wjjbo50ealuhzjfen1vo564c7s + + + + Braslovys pogosts + 0 + 2152 + + 31905 + 28812 + 2017-02-25T06:08:55Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Braslovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Braslovys pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Braslovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aluojis nūvods +| centrys = Klāmani +| pluots = 82,8 +| dzeivuotuoju_skaits = 727<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 727 / 82.8 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Braslovys pogosts''' irā [[Aluojis nūvods|Aluojis nūvoda]] teritoriskais padalīņs [[Vydzemē]]. Pogosta centrys - Klāmani. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.aloja.lv/novads/braslavas-pagasts Braslovys pogosts Aluojis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + bkfb0unkghuzp1eln1xg9p2w51otayq + + + + Breivzemnīku pogosts + 0 + 2153 + + 31907 + 28813 + 2017-02-25T06:09:15Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Breivzemnīku pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Breivzemnīku pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Breivzemnīku pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aluojis nūvods +| centrys = Puikule +| pluots = 103,8 +| dzeivuotuoju_skaits = 1107<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1107 / 103.8 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Breivzemnīku pogosts''' irā [[Aluojis nūvods|Aluojis nūvoda]] teritoriskais padalīņs [[Vydzemē]]. Pogosta centrys - Puikule. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.aloja.lv/novads/br%C4%ABvzemnieku-pagasts Breivzemnīku pogosts Aluojis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 9j1jbmcilcwfy5bldl2nf02gpxxm1x7 + + + + Staicelis pogosts + 0 + 2154 + + 31841 + 31794 + 2016-12-09T09:38:44Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31794 dated 2016-12-09 09:00:05 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Staicelis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Staicelis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Staicelis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Aluojis nūvods +| centrys = Staicele +| pluots = 258,3 +| dzeivuotuoju_skaits = 676<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 676 / 258.3 round 1}} +| īstateits = +| teiklavīta = www.staicele.lv +}} + +'''Staicelis pogosts''' irā [[Aluojis nūvods|Aluojis nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - [[Staicele]]. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.aloja.lv/novads/staicele-un-staiceles-pagasts Staicelis pogosts Aluojis nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 09e656t9rqf7rfg7ljpvi4nhw8ajlw8 + + + + Dignuojis pogosts + 0 + 2155 + + 28815 + 21330 + 2013-03-08T03:07:04Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801129]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Dignuojis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Dignuojis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Dignuojis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jākubmīsta nūvods +| centrys = Dignuoja +| pluots = 83,44 +| dzeivuotuoju_skaits = 578<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 578 / 83.44 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Dignuojis pogosts''' irā [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Dignuoja. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + p6xzvx425el0f5eapp381ki5o76yloa + + + + Dunovys pogosts + 0 + 2156 + + 28816 + 21324 + 2013-03-08T03:07:15Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801462]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Dunovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Dunovys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Dunovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jākubmīsta nūvods +| centrys = Dunova +| pluots = 124,2 +| dzeivuotuoju_skaits = 750<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 750 / 124.2 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Dunovys pogosts''' irā [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Dunova. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + aw9xu45sggiaw79jfuvalc5m3qlt133 + + + + Kolna pogosts + 0 + 2157 + + 28817 + 21322 + 2013-03-08T03:07:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801072]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kolna pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kolna pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Kolna pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jākubmīsta nūvods +| centrys = Vydssola +| pluots = 173,1 +| dzeivuotuoju_skaits = 700<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 700 / 173.1 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Kolna pogosts''' irā [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Vydssola. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 4dekhn1fuavdzg67op7djsn42t93how + + + + Leimaņu pogosts + 0 + 2158 + + 28818 + 21318 + 2013-03-08T03:07:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801061]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Leimaņu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Leimaņu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Leimaņu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jākubmīsta nūvods +| centrys = Mežagaļs +| pluots = 101,73 +| dzeivuotuoju_skaits = 564<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 564 / 101.73 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Leimaņu pogosts''' irā [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Mežagaļs. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + rv3pa7dzmfj569oy13kjd4awpeb08nc + + + + Uobeļu pogosts + 0 + 2159 + + 28819 + 21316 + 2013-03-08T03:07:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801011]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Uobeļu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Uobeļu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Uobeļu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jākubmīsta nūvods +| centrys = Brodi +| pluots = 126,67 +| dzeivuotuoju_skaits = 995<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 995 / 126.67 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Uobeļu pogosts''' irā [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Brodi. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 3iqw6ell2s2ydcfbivzddas7vk2cgqk + + + + Rubina pogosts + 0 + 2160 + + 28820 + 21315 + 2013-03-08T03:08:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801237]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Rubina pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Rubina pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Rubina pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jākubmīsta nūvods +| centrys = Rubins +| pluots = 182,2 +| dzeivuotuoju_skaits = 1167<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1167 / 182.2 round 1}} +| īstateits = 1866 +| teiklavīta = +}} + +'''Rubina pogosts''' irā [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Rubins. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + k106qlrsdz7dndr6wmbx9lg0jore5zp + + + + Zosa pogosts + 0 + 2161 + + 28821 + 24528 + 2013-03-08T03:08:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q148172]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Zosa pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Zosa pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Zosa pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jākubmīsta nūvods +| centrys = Zoss +| pluots = 114,62 +| dzeivuotuoju_skaits = 993<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 993 / 114.62 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Zosa pogosts''' irā [[Jākubmīsta nūvods|Jākubmīsta nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Zoss. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + hjf2tp23wocyy2u6dsxylyhdncx4j06 + + + + Daudzesis pogosts + 0 + 2162 + + 28822 + 24779 + 2013-03-08T03:08:32Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605082]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Daudzesis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Daudzesis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Daudzesis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jaunmeitovys nūvods +| centrys = Daudzeva +| pluots = 210,67 +| dzeivuotuoju_skaits = 1142<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1142 / 210.67 round 1}} +| īstateits = +| teiklavīta = www.daudzese.lv/ +}} + +'''Daudzesis pogosts''' irā [[Jaunmeitovys nūvods|Jaunmeitovys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys Daudzevā. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + fizx8ur8rqmwgod5k2ixtn995mbgldh + + + + Jaunmeitovys pogosts + 0 + 2163 + + 28823 + 21310 + 2013-03-08T03:08:43Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801451]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Jaunmeitovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Jaunmeitovys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Jaunmeitovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jaunmeitovys nūvods +| centrys = Jaunmeitova +| pluots = 5,08 +| dzeivuotuoju_skaits = 117<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 117 / 5.08 round 1}} +| īstateits = 1957 +| teiklavīta = +}} + +'''Jaunmeitovys pogosts''' irā [[Jaunmeitovys nūvods|Jaunmeitovys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys Jaunmeitovā. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + lylw9u4qccy47mbb85dyg8owlagiszd + + + + Secis pogosts + 0 + 2164 + + 28824 + 21309 + 2013-03-08T03:09:30Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605157]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Secis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Secis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Secis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jaunmeitovys nūvods +| centrys = Sece +| pluots = 176,14 +| dzeivuotuoju_skaits = 1153<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1153 / 176.14 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Secis pogosts''' irā [[Jaunmeitovys nūvods|Jaunmeitovys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Sece. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.jaunjelgava.lv/lv/novads/seces-pagasts Secis pogosts Jaunmeitovys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 3t8281bbkuxxfb69v7xewzgkz0jx26i + + + + Sierinis pogosts + 0 + 2165 + + 28825 + 24462 + 2013-03-08T03:09:41Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605144]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Sierinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Sierinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Sierinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jaunmeitovys nūvods +| centrys = Sierine +| pluots = 119,08 +| dzeivuotuoju_skaits = 857<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 857 / 119.08 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Sierinis pogosts''' irā [[Jaunmeitovys nūvods|Jaunmeitovys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Sierine. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.jaunjelgava.lv/lv/novads/serenes-pagasts Sierinis pogosts Jaunmeitovys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 922yay0vb7m206lhqg6dn2wpsbkrbgo + + + + Staburoga pogosts + 0 + 2166 + + 28826 + 21307 + 2013-03-08T03:09:52Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605108]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Staburoga pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Staburoga pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Staburoga pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jaunmeitovys nūvods +| centrys = Staburogs +| pluots = 58,5 +| dzeivuotuoju_skaits = 450<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 450 / 58.5 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Staburoga pogosts''' irā [[Jaunmeitovys nūvods|Jaunmeitovys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys Staburogā. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.jaunjelgava.lv/lv/novads/staburaga-pagasts Staburoga pogosts Jaunmeitovys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 41yt83l6uevwa7dq0gfqn66e9d12t9s + + + + Sunākstys pogosts + 0 + 2167 + + 28827 + 21305 + 2013-03-08T03:10:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605116]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Sunākstys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Sunākstys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Sunākstys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Jaunmeitovys nūvods +| centrys = Sunāksta +| pluots = 109,14 +| dzeivuotuoju_skaits = 521<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 521 / 109.14 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Sunākstys pogosts''' irā [[Jaunmeitovys nūvods|Jaunmeitovys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Sunāksta. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.jaunjelgava.lv/lv/novads/sunakstes-pagasts Sunākstys pogosts Jaunmeitovys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + plxdqz3z6xli6ylywyhujhrw8bruce5 + + + + Bebrinis pogosts + 0 + 2168 + + 28828 + 26484 + 2013-03-08T03:10:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1588169]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Bebrinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Bebrinis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Bebrinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Īlyukstys nūvods +| centrys = Bebrine +| pluots = 102,8 +| dzeivuotuoju_skaits = 1059<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1059 / 102.8 round 1}} +| īstateits = 1864 +| teiklavīta = +}} + +'''Bebrinis pogosts''' irā [[Īlyukstys nūvods|Īlyukstys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Bebrine. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.ilukste.lv/index.php?option=com_content&view=article&id=139&Itemid=444 Bebrinis pogosts Īlyukstysnūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 7v22cnj6efl9h8dp1abihkfd8db2tne + + + + Dvīta pogosts + 0 + 2169 + + 28829 + 21304 + 2013-03-08T03:10:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801081]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Dvīta pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Dvīta pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Dvīta pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Īlyukstys nūvods +| centrys = Dvīts +| pluots = 118,4 +| dzeivuotuoju_skaits = 663<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 663 / 118.4 round 1}} +| īstateits = 1863 +| teiklavīta = +}} + +'''Dvīta pogosts''' irā [[Īlyukstys nūvods|Īlyukstys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Dvīts. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.ilukste.lv/index.php?option=com_content&view=article&id=136&Itemid=447 Dvīta pogosts Īlyukstys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + az02boisr09fwtq2l650lkgiztooftk + + + + Eglainis pogosts + 0 + 2170 + + 28830 + 21303 + 2013-03-08T03:10:36Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801599]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Eglainis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Eglainis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Eglainis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Īlyukstys nūvods +| centrys = Eglaine +| pluots = 79,2 +| dzeivuotuoju_skaits = 1023<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1023 / 79.2 round 1}} +| īstateits = 1889 +| teiklavīta = +}} + +'''Eglainis pogosts''' irā [[Īlyukstys nūvods|Īlyukstys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Eglaine. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.ilukste.lv/index.php?option=com_content&view=article&id=135&Itemid=448 Eglainis pogosts Īlyukstys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 4gaivyd002nhfk1z3fx360xcuesk2kn + + + + Piļskolna pogosts + 0 + 2171 + + 28831 + 21302 + 2013-03-08T03:10:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801575]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Piļskolna pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Piļskolna pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Piļskolna pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Īlyukstys nūvods +| centrys = Piļskolns +| pluots = 124,69 +| dzeivuotuoju_skaits = 1179<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1179 / 124.69 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Piļskolna pogosts''' irā [[Īlyukstys nūvods|Īlyukstys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys Piļskolnā. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.ilukste.lv/index.php?option=com_content&view=article&id=138&Itemid=445 Piļskolna pogosts Īlyukstys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + ijamrcp8zwihph3gh17b16v3zfbn2xd + + + + Prūdis pogosts + 0 + 2172 + + 29756 + 21301 + 2013-04-14T22:58:28Z + + Addbot + 1801 + + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Prūdis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Prūdis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Prūdis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Īlyukstys nūvods +| centrys = Subata +| pluots = 93,6 +| dzeivuotuoju_skaits = 312<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 312 / 93.6 round 1}} +| īstateits = 1892 +| teiklavīta = +}} + +'''Prūdis pogosts''' irā [[Īlyukstys nūvods|Īlyukstys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys Subatā. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.ilukste.lv/index.php?option=com_content&view=article&id=458&Itemid=449 Prūdis pogosts Īlyukstys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 60jesp5zqtsu8ppxi4xz19zau2xugo6 + + + + Šederis pogosts + 0 + 2173 + + 29775 + 21306 + 2013-04-14T23:29:13Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q10950816]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Šederis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Šederis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Šederis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Īlyukstys nūvods +| centrys = Šedere +| pluots = 114,69 +| dzeivuotuoju_skaits = 1221<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1221 / 114.69 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Šederis pogosts''' irā [[Īlyukstys nūvods|Īlyukstys nūvoda]] teritoriskais padalīņs [[Sieleja|Sielejā]]. Pogosta centrys - Šedere. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.ilukste.lv/index.php?option=com_content&view=article&id=137&Itemid=446 Šederis pogosts Īlyukstys nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + dmwazqaeo09x2o68v516qbo2z3r391e + + + + Limbažu pogosts + 0 + 2174 + + 32114 + 32113 + 2017-07-22T09:08:40Z + + Piebaldzēns + 3842 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Limbažu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Limbažu pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Limbažu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Limbažu nūvods +| centrys = Limbaži +| pluots = 228,1 +| dzeivuotuoju_skaits = 2293<ref>[http://www.pmlp.gov.lv/lv/assets/documents/Iedzivotaju%20re%C4%A3istrs/07022017/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf#page=11&zoom=auto,-108,118 Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2017.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 2318 / 228.1 round 1}} +| īstateits = +| teiklavīta = www.limbazi.lv +}} + +'''Limbažu pogosts''' irā [[Limbažu nūvods|Limbažu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys Limbažūs. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.limbazi.lv/pagasti/limbazu-pagasts.html Limbažu pogosts Limbažu nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + h1oddmo92010kmy0twhkpomepnwn2b7 + + + + Katvaru pogosts + 0 + 2175 + + 32108 + 28832 + 2017-07-15T11:33:52Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Katvaru pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Katvaru pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Katvaru pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Limbažu nūvods +| centrys = Puocīms +| pluots = 124,2 +| dzeivuotuoju_skaits = 1256<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 1256 / 124.2 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Katvaru pogosts''' irā [[Limbažu nūvods|Limbažu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys Puocīms. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.limbazi.lv/pagasti/katvaru-pagasts.html Katvaru pogosts Limbažu nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + sxsri6clcx6vkzyihsoe0ek9lo80tnr + + + + Pālis pogosts + 0 + 2176 + + 32109 + 28833 + 2017-07-15T15:28:46Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Pālis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Pālis pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Pālis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Limbažu nūvods +| centrys = Pāle +| pluots = 146,3 +| dzeivuotuoju_skaits = 769<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 769 / 146.3 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Pālis pogosts''' irā [[Limbažu nūvods|Limbažu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Pāle. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.limbazi.lv/pagasti/pales-pagasts.html Pālis pogosts Limbažu nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + t6wbpoth3z6ih0gf87l8rt9cp6p3oya + + + + Skultys pogosts + 0 + 2177 + + 32116 + 28834 + 2017-07-22T15:28:13Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Skultys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Skultys pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Skultys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Limbažu nūvods +| centrys = Mandegys +| pluots = 146,5 +| dzeivuotuoju_skaits = 2098<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 2098 / 146.5 round 1}} +| īstateits = +| teiklavīta = www.skulte.lv +}} + +'''Skultys pogosts''' irā [[Limbažu nūvods|Limbažu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Mandegys. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.limbazi.lv/pagasti/skultes-pagasts.html Katvaru pogosts Limbažu nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + duatqpzaqpdi3rnmi61liqbwmyn6tuy + + + + Umurgys pogosts + 0 + 2178 + + 28835 + 21335 + 2013-03-08T03:12:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801565]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Umurgys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Umurgys pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Umurgys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Limbažu nūvods +| centrys = Umurga +| pluots = 189,7 +| dzeivuotuoju_skaits = 1227<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1227 / 189.7 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Umurgys pogosts''' irā [[Limbažu nūvods|Limbažu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys Umurgā. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.limbazi.lv/pagasti/umurgas-pagasts.html Umurgys pogosts Limbažu nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + iy4nd598lmdwa3xmyf8s2m79t5m5thz + + + + Vydryžu pogosts + 0 + 2179 + + 32115 + 28836 + 2017-07-22T11:46:34Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vydryžu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vydryžu pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Vydryžu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Limbažu nūvods +| centrys = Vydryži +| pluots = 102,6 +| dzeivuotuoju_skaits = 1431<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 1431 / 102.6 round 1}} +| īstateits = +| teiklavīta = www.vidrizi.lv/ +}} + +'''Vydryžu pogosts''' irā [[Limbažu nūvods|Limbažu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys Vydryžūs. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.limbazi.lv/pagasti/vidrizu-pagasts.html Vydryžu pogosts Limbažu nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + nu6c2kjfe8ec24kyj7hlo76ydvwdnvu + + + + Vilkinis pogosts + 0 + 2180 + + 32110 + 28837 + 2017-07-15T18:04:00Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vilkinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vilkinis pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = LVA Viļķenes pagasts flag.png +| karūga_pasauka = Vilkinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Limbažu nūvods +| centrys = Vilkine +| pluots = 224,5 +| dzeivuotuoju_skaits = 1282<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 1282 / 224.5 round 1}} +| īstateits = +| teiklavīta = www.vilkene.lv/ +}} + +'''Vilkinis pogosts''' irā [[Limbažu nūvods|Limbažu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta centrys - Vilkine. + +== Nūruodis == +{{nūruodis}} + +== Teiklavītys == +* [http://www.limbazi.lv/pagasti/vilkenes-pagasts.html Vilkinis pogosts Limbažu nūvoda teiklavītā] + +{{nadabeigts rakstīņs}} + 8p5iuhohxm0802x03v24eari0hew348 + + + + Alsviķa pogosts + 0 + 2181 + + 32075 + 28838 + 2017-06-23T07:10:09Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Alsviķa pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Alsviķa pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Alsviķa pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Alsvikis +| pluots = 212.99 +| dzeivuotuoju_skaits = 1522<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1522 / 212.99 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Alsviķa pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Alsvikis. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + 21i4jntz1okg7ocmkihy9i38cfypozn + + + + Iļzenis pogosts + 0 + 2182 + + 32081 + 28839 + 2017-06-24T17:21:24Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Iļzenis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Iļzenis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Iļzenis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Jaunzemi +| pluots = 62.5 +| dzeivuotuoju_skaits = 389<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 389 / 62.5 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Iļzenis pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Jaunzemi. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + mkqibflpzlt4ekczibazdb3caa0q84k + + + + Jaunlaicinis pogosts + 0 + 2183 + + 32091 + 28840 + 2017-06-27T15:51:21Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Jaunlaicinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Jaunlaicinis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Jaunlaicinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Jaunlaicine +| pluots = 52.2 +| dzeivuotuoju_skaits = 478<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 478 / 52.2 round 1}} +| īstateits = 1919 +| teiklavīta = +}} + +'''Jaunlaicinis pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Jaunlaicine. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + 8pr7l6k79hlnrxmxaub5dajaakjpfrj + + + + Vaclaicinis pogosts + 0 + 2184 + + 32095 + 28841 + 2017-06-29T15:03:42Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vaclaicinis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vaclaicinis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Vaclaicinis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Korneti +| pluots = 72.34 +| dzeivuotuoju_skaits = 378<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 378 / 72.34 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Vaclaicinis pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Korneti. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + tpfh1f1lypqn0vwm1ur1v6xducv4gx6 + + + + Jaunannys pogosts + 0 + 2185 + + 32087 + 28842 + 2017-06-26T12:11:49Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Jaunannys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Jaunannys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Jaunannys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Jaunanna +| pluots = 93.99 +| dzeivuotuoju_skaits = 510<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 510 / 93.99 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Jaunannys pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Jaunanna. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + 6932fr3rmsfglxguzagqxov4ufytaej + + + + Baja pogosts + 0 + 2186 + + 32085 + 28843 + 2017-06-25T14:26:20Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Baja pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Baja pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Baja pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Kolbergis +| pluots = 184.66 +| dzeivuotuoju_skaits = 1190<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 1190 / 184.66 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Baja pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Kolbergis. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + kl4vzldfwzdb1hmyc7uj9v7ccuwlt1t + + + + Līpnys pogosts + 0 + 2187 + + 32093 + 28844 + 2017-06-29T14:50:47Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Līpnys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Līpnys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Līpnys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Līpna +| pluots = 280.57 +| dzeivuotuoju_skaits = 851<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 851 / 280.57 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Līpnys pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrys Līpnā. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + 1ggwy4g2t772mhb5yyfoqy8a5vt4kmk + + + + Malīnis pogosts + 0 + 2188 + + 32089 + 28845 + 2017-06-26T16:34:48Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Malīnis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Malīnis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Malīnis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Brenci +| pluots = 55.42 +| dzeivuotuoju_skaits = 424<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 424 / 55.42 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Malīnis pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Brenci. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + swwu1v6bk5go2slc0vds7f04vah54am + + + + Kolnacempu pogosts + 0 + 2189 + + 32082 + 28846 + 2017-06-25T06:29:00Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kolnacempu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kolnacempu pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Kolnacempu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Kolnacempi +| pluots = 43 +| dzeivuotuoju_skaits = 197<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 197 / 43 round 1}} +| īstateits = 1868 +| teiklavīta = +}} + +'''Kolnacempu pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Kolnacempi. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + 9n07re8mxq4eyvegzbkf29fut7rineh + + + + Jaunanis pogosts + 0 + 2190 + + + 21363 + 2012-02-28T16:13:09Z + + Roalds + 50 + + "[[Jaunanis pogosts]]" puorsauču par "[[Jaunannys pogosts]]": Tyvuok originalam + wikitext + text/x-wiki + #REDIRECT [[Jaunannys pogosts]] + 5hbwq7tb9p0l11joxwun4s2a1o1o29c + + + + Annys pogosts + 0 + 2191 + + 32086 + 28847 + 2017-06-25T17:17:37Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Annys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Annys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Annys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Anna +| pluots = 52.61 +| dzeivuotuoju_skaits = 463<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 463 / 52.61 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Annys pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Anna. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + 8xgyu48fdsmvzto2i43qm3hgl0dmj8n + + + + Anis pogosts + 0 + 2192 + + + 21366 + 2012-02-28T16:14:42Z + + Roalds + 50 + + "[[Anis pogosts]]" puorsauču par "[[Annys pogosts]]": Tyvuok originalam + wikitext + text/x-wiki + #REDIRECT [[Annys pogosts]] + a0v2eehr5okywm0roeaz909hb2qpb3g + + + + Muolupis pogosts + 0 + 2193 + + 32090 + 28848 + 2017-06-27T10:53:43Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Muolupis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Muolupis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Muolupis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Muolupe +| pluots = 129.75 +| dzeivuotuoju_skaits = 652<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 652 / 129.75 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Muolupis pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Muolupe. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + orzkynn3s2zjpvctrp2tkv06dkj4qeb + + + + Muorkaļnis pogosts + 0 + 2194 + + 32084 + 28849 + 2017-06-25T10:10:05Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Muorkaļnis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Muorkaļnis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Muorkaļnis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Muorkaļne +| pluots = 123.38 +| dzeivuotuoju_skaits = 374<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 374 / 123.38 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Muorkaļnis pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Muorkaļne. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + m47ivof3n6ml1zhj3fz9og0n2kdx5sv + + + + Zeļteņa pogosts + 0 + 2195 + + 32076 + 28850 + 2017-06-23T07:58:57Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Zeļteņa pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Zeļteņa pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Zeļteņa pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = Zeļteņš +| pluots = 63.09 +| dzeivuotuoju_skaits = 393<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 393 / 63.09 round 1}} +| īstateits = 1866 +| teiklavīta = +}} + +'''Zeļteņa pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Zeļteņš. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + 75mtz4lhfe6z74g2cwj4ex2eo3511cf + + + + Pededzis pogosts + 0 + 2196 + + 32094 + 28851 + 2017-06-29T14:54:34Z + + Melilac + 2917 + + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Pededzis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Pededzis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Pededzis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Olyuksnys nūvods +| centrys = [[Pededze (sola)|Pededze]] +| pluots = 142.01 +| dzeivuotuoju_skaits = 710<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 710 / 142.01 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Pededzis pogosts''' irā [[Olyuksnys nūvods|Olyuksnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Pededze. + +== Nūruodis == +{{Nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Olyuksnys nūvods}} + hee642alhuz2b5iswra0pguts5i844k + + + + Ipika pogosts + 0 + 2197 + + 28852 + 21397 + 2013-03-08T13:01:03Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3743286]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ipika pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Ipika pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Ipika pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Rūjīnys nūvods +| centrys = Ipiks +| pluots = 67,43 +| dzeivuotuoju_skaits = 270<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 270 / 67.43 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Ipika pogosts''' irā [[Rūjīnys nūvods|Rūjīnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Ipiks. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + cll5w88n39pjd3e32swuywion2xgkzo + + + + Jeru pogosts + 0 + 2198 + + 28853 + 21398 + 2013-03-08T13:01:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801476]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Jeru pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Jeru pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Jeru pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Rūjīnys nūvods +| centrys = Jeri +| pluots = 124,8 +| dzeivuotuoju_skaits = 1453<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1453 / 124.8 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Jeru pogosts''' irā [[Rūjīnys nūvods|Rūjīnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Jeri. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + awu38gddmgz87z4x7dj5lnq4holw751 + + + + Lūdis pogosts + 0 + 2199 + + 28854 + 21399 + 2013-03-08T13:01:25Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801585]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Lūdis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Lūdis pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Lūdis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Rūjīnys nūvods +| centrys = Lūde +| pluots = 63,82 +| dzeivuotuoju_skaits = 374<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 374 / 63.82 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Lūdis pogosts''' irā [[Rūjīnys nūvods|Rūjīnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Lūde. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + pxideoszqjv9t81dqxw1e5sorn4uzvz + + + + Vylpulkys pogosts + 0 + 2200 + + 28855 + 21400 + 2013-03-08T13:01:36Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801287]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vylpulkys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vylpulkys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = Vylpulkys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Rūjīnys nūvods +| centrys = Vylpulka +| pluots = 88,47 +| dzeivuotuoju_skaits = 670<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 670 / 88.47 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Vylpulkys pogosts''' irā [[Rūjīnys nūvods|Rūjīnys nūvoda]] teritoriskais padalīņs [[Vydzeme|Vydzemē]]. Pogosta centrys - Vylpulka. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + n9qk8wrwj0pbouyelprha03hbz5tgi1 + + + + Suomu volūda + 0 + 2201 + + 28856 + 26496 + 2013-03-08T13:01:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 129 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1412]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Volūda +| name = Suomu volūda +|nativename=suomen kieli +|familycolor=Uralīšu +|states=[[Suomeja]], [[Krīveja]] (Kareleja), [[Igauneja]], [[Švedeja]], [[Norvegeja]] +|region=[[Pūstumu Europa]] +|speakers= 5,3 mln +|fam1=[[Uralīšu volūdys|Uralīšu]] +|fam2=[[Suomugru volūdys|Suomugru]] +|fam3=[[Suomu-permīšu volūdys|Suomu-permīšu]] +|fam4=[[Baļtejis suomu volūdys|Baļtejis suomu]] +|script=[[Latiņu alfabets|latiņu]] +|nation=[[Suomeja]]<br />[[Europys Savīneiba]] +|agency=Suomejis volūdu tiemiešonys iņstituta Volūdys planavuošonys departaments +|iso1=fi +|iso2=fin +|iso3=fin +}} + +'''Suomu volūda''' — vīna nu [[Suomugru volūdys|suomugru volūdu]] grupys volūdu, jei radneiga [[Igauņu volūda|igauņu]], līvu, votu, samu, vengru i cytom volūdom, tok navā leidzeiga sovu sābru - norvegu, švedu i krīvu volūdom, kurys pīdar indoeuropīšu volūdu saimei. Suomu volūda irā [[Suomeja|Suomejis Republikys]] i Europys Savīneibys oficialuo volūda. Suomu, igauņu, vengru i maļtīšu volūdys vīneiguos vaļstiskuos volūdys Europys Savīneibā, kurys napīdar pi indoeuropīšu volūdu saimis. [[Švedeja|Švedejā]] kasdīn suomiskai runoj 200 tyukstūšys ļauds i tei irā pīzeita kai minoriteta volūda. Taipoš suomiskai runoj [[Norvegeja|Norvegejis]] pūstumūs, Finmarkys regionā, [[Krīveja|Krīvejis Federacejis]] Karelejis Republikā i [[Igauneja|Igaunejis]] pūstumūs. + +Par suomu volūdys rokstiskūs volūdys aizsuocieju tur veiskupu Mikaelu Agrikolu (1508-1557). + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Uralīšu volūdys]] +[[Kategoreja:Suomeja]] + 3w3o195l200nnsteizvhonnplud5vpo + + + + Kuprovys katuoļu bazneica + 0 + 2207 + + 29813 + 21458 + 2013-04-15T02:10:47Z + + Addbot + 1801 + + + wikitext + text/x-wiki + [[Fails:Kupravas katoļu baznīca.JPG|thumb|right|Bazneica 2009 gods zīmā]] +'''Kuprovys Svātuo Ignaceja nu Lojolys Romys katuoļu bazneica''' irā katuoļu dīvanoms [[Bolvu nūvods|Bolvu nūvoda]] [[Veiksnys pogosts|Veiksnys pogosta]] Vackuprovys solā, 2,3 km nu [[Kuprovys pogosts|Kuprovys pogosta]] padūmis. Kuprovys bazneica pīdar pi Romys katuoļu Reigys metropolejis Rēznis-Aglyunys diecezis.<ref>[http://www.catholic.lv/main.php?parent=235&show=1 www.catholic.lv]</ref> + +Parapejā dora pravests Jezups Kornaševskais.<ref>[http://www.catholic.lv/main.php?parent=235&show=1 www.catholic.lv]</ref> Pošlelī ticeigū svātki irā Svātuo Ignata dīna. + +== Viesture== +Kuprovys katuoļu parapeju īstateja 1925 godā, padalūt nu [[Vileks]] i [[Bolvi|Bolvu]] parapejis nazcik solu. Bazneicu pastateja treis godus piečuok, 1928 godā. Natuoli nu Kuprovys dzeļžaceļa stacejis ceļamolā pastateja uoriskai gondreiž parostu kūka nomu. Nomu stateja iz augstim akmiņa pundamentim. Kairā molā sataiseja treisustobu dzeivūkli ar vyrtuvi plebanejai, a lobā molā lyugšonu nomu. Dīvanoma pastateišonu vadeja pravests Bronislavs Kivrāns. <ref>Juoņs Cakuls. Latvejis Romys katuoļu parapejis. Reiga:Reigys metropolejis kkureja, 1997. 68.lpp. (''latvyskai'')</ref> + +Bazneicys smiļterī pastateits krysts, pi kura vys vēļ nūteik [[Lopu mieness|lopu mieneša]] dzīduojumi Dīvamuotis gūdam. + +== Nūruodis == +{{nūruodis}} + +{{DEFAULTSORT:Kuprovys Svatuo Ignaceja nu Lojolys Romys katuolu bazneica}} + +[[Kategoreja:Latgolys katuoļu bazneicys]] + pldl8z6ho9xkvrq4b58ysbl14qvupfe + + + + Līpys pogosts + 0 + 2208 + + 27413 + 21476 + 2013-01-28T19:48:37Z + + MerlIwBot + 221 + + + robots izņem: [[en:Priekuļi parish]],[[lv:Priekuļu pagasts]],[[ru:Приекульская волость (Видземе)]] (strongly connected to [[ltg:Prīkuļu pogosts]]) + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Līpys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Līpys pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Līpys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Prīkuļu nūvods +| centrys = Līpa +| pluots = 74,3 +| dzeivuotuoju_skaits = 3133<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 3133 / 74.3 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Līpys pogosts''' irā [[Prīkuļu nūvods|Prīkuļu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Administrativais centrys Līpā. Pogostā dora biblioteka i tautys noms, Līpys pamatškola, pyrmškolys īstate "Saulīte", buoreņtīsa, Eduarda Veidenbauma memorialais muzejs "Kalāči". + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + axyub0zfc2m8r3lssry9aklu1eqs2sx + + + + Mārsnānu pogosts + 0 + 2209 + + 28857 + 21477 + 2013-03-08T13:01:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800897]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Mārsnānu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Mārsnānu pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Mārsnānu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Prīkuļu nūvods +| centrys = Mārsnāni +| pluots = 69,18 +| dzeivuotuoju_skaits = 863 <ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 863 / 69.18 round 1}} +| īstateits = +| teiklavīta = www.marsneni.lv/ +}} + +'''Mārsnānu pogosts''' irā [[Prīkuļu nūvods|Prīkuļu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Administrativais centrys Mārsnāni. Pogostā dora biblioteka, tautys noms, Mārsnānu pamatškola i feļčeru punkts. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 5wqaors14a0sypt6irwso036c0rxr3m + + + + Prīkuļu pogosts + 0 + 2210 + + 28858 + 21478 + 2013-03-08T13:02:10Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801254]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Prīkuļu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Prīkuļu pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Prīkuļu pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Prīkuļu nūvods +| centrys = Prīkuli +| pluots = 98,36 +| dzeivuotuoju_skaits = 4718 <ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 4718 / 98.36 round 1}} +| īstateits = +| teiklavīta = www.priekuli.lv/ +}} + +'''Prīkuļu pogosts''' irā [[Prīkuļu nūvods|Prīkuļu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Pogosta i vysa nūvoda administrativais centrys - Prīkuli. Pogostā dora biblioteka, tautys noms, buoreņtīsa i komunalsaimisteiba. Pogosta teritorejā pīcys vuiceibu īstatis - Prīkuļu pamatškola, pyrmškolys īstate Prīkuļūs i Juoņmuižā, Cāsu dailis školys Prīkuļu filials i Prīkuļu i Juoņmuižys Vaļsteibys tehnikums (da 2011 godam div atseviškys īstatis). + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + 4yq874ocfeudr0xoub5pt0v7nvtltqk + + + + Vasalovys pogosts + 0 + 2211 + + 28859 + 21479 + 2013-03-08T13:02:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801181]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vasalovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vasalovys pogosta gerbs +| gerba_plotums = +| karūga_atvaigs = +| karūga_pasauka = Vasalovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Prīkuļu nūvods +| centrys = Vasalova +| pluots = 59,52 +| dzeivuotuoju_skaits = 679 <ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 679 / 59.52 round 1}} +| īstateits = +| teiklavīta = www.veselava.lv/ +}} + +'''Vasalovys pogosts''' irā [[Prīkuļu nūvods|Prīkuļu nūvoda]] teritoriskais padalīņs [[Vydzemē|Vydzemē]]. Administrativais centrys Vasalovā. Pogostā dora tautys noms, biblioteka, specialuo pyrmškolys īstate i feļčeru punkts. + +==Rūbeži== +Vasalovys pogosts tur rūbežu ar: +* [[Prīkuļu nūvods|Prīkuļu nūvoda]] [[Prīkuļu pogosts|Prīkuļu pogostu]]; +* [[Cāsu nūvods|Cāsu nūvoda]] [[Vaivys pogosts|Vaivys pogostu]]; +* [[Raunys nūvods|Raunys nūvoda]] [[Raunys pogosts|Raunys pogostu]]; +* [[Vacpībolgys nūvods|Vacpībolgys nūvoda]] [[Dzierbinis pogosts|Dzierbinis pogostu]]. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + lp5112wqj4zt2hq3hxo5dhzt4u6i16t + + + + Satversme + 0 + 2214 + + 28860 + 21556 + 2013-03-08T13:02:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 8 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2143464]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Satversme''' — [[Latveja|Latvejis]] [[konstituceja]] aba pamatlykums. Jū pījema [[Satversmis Saguojums]] 1922 goda pebreļa mienesī. + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Latveja]] + nluf62mmnzlm9rjfplnk0f2rlmois7w + + + + Moščena + 0 + 2215 + + 28861 + 25604 + 2013-03-08T13:02:42Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 155 interwiki links, now provided by [[d:|Wikidata]] on [[d:q23495]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Centr Moschena.jpg|thumb|Moščenys centraluo ūļneica]] +'''Moščena''' ({{Vol-uk|Моще́на}}) — sola [[Ukraina|Ukrainys]] vokorūs, [[Volynejis apgabaļs|Volynejis apgabalī]]. + +{{stub}} + +[[Kategoreja:Ukraina]] + 8enan5ioamxqjbql9zno86kldhng73a + + + + Modyunis nūvods + 0 + 2216 + + 28862 + 21645 + 2013-03-08T13:02:54Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2198472]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Modyunis nūvods +| zemislopa = Madonas novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Madonas novads COA.png +| gerba_pasauka = Modyunis nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = Bolvu nūvoda karūgs +| centrys = Modyune +| pluots = 2153,4 +| dzeivuotuoju_skaits = 27 732 +| dzeivuotuoji_gods = 2009 +| bīzeiba = 13,41 +| īstateits = 2009 +| teritoriskais_dalejums = 1 mīsts i 14 pogosti +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.emadona.lv +}} + +'''Modyunis nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Vydzeme|Vydzemē]], kas sasadora nu [[Modyune|Modyunis]] mīsta i 14 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Modyunis nūvods| ]] + 81wg20nskqmc5wvmyqk32o37ks52epo + + + + Modūnis nūvods + 0 + 2218 + + + 21589 + 2012-03-12T07:09:16Z + + Roalds + 50 + + Roalds moved page [[Modūnis nūvods]] to [[Modyunis nūvods]]: Latgaliskuojam! + wikitext + text/x-wiki + #REDIRECT [[Modyunis nūvods]] + 7v46lfk90lv7jvldtb4fispq2a5ihge + + + + Taiss:Modūnis nūvods + 10 + 2219 + + + 21614 + 2012-03-12T07:22:47Z + + Roalds + 50 + + Roalds moved page [[Taiss:Modūnis nūvods]] to [[Taiss:Modyunis nūvods]]: Latgaliskuojam! + wikitext + text/x-wiki + #REDIRECT [[Taiss:Modyunis nūvods]] + eu2jbgxmgxc1g3ehss0h4jcaczk4cd6 + + + + Osotys piliskolns + 0 + 2220 + + 29900 + 29899 + 2013-06-05T13:58:25Z + + Stiernīts~ltgwiki + 315 + + + wikitext + text/x-wiki + {{Infoskreine kolns + | Pasauka = Osotys piliskolns + | Atvaigs = Asotes pilskalns-2.JPG + | Atvaiga māri = 250px + | Aprakstejums = + | Zemislopa = Latveja + | aprakstejuma_izlykums = left +| latd=56 |latm=29 |lats=34 |latNS=N +| longd=25 |longm=55 |longs=8 |longEW=E + | Augstums = 106 + | Byusmis vīta = [[Krystapiļs nūvods]], [[Latveja]] + | Augstaine = + | Cytys pasaukys = Asuote +}} + +'''Osotys piliskolns''' — senejs latgaļu piliskolns Krystapiļs nūvoda [[Kūku pogosts|Kūku pogostā]], sūpluok nazkodejuos Osotys<ref>Военно-топографическая карта Российской Империи 1846-1863 гг., созданная под руководством Ф.Ф. Шуберта и П.А. Тучкова. Ряд: IX, лист: 5</ref> muižys vītys, 4 km augš [[Jākubmīsts|Jākubmīsta]]. Pasaceļ [[Daugova|Daugovys]] lobajā molā, morenu augstainis golā. Nazkodejuos latgaļu zemis Osotys administrativais centris. Samiereigais augstums (augšuok apleicīnis) – 10 m. + +==Aproksts== +Piliskolns - morenu kauprys, paaugstynuots par 10 metrim. Pūstumu, reitu i dīnavydu pusis pīkaļnis aptak Duorzupeite (seņuok Lagzde). Piliskolna laukums ovals, 67,5 x 55 m. Vokoru pusē 2 m augsta vale, iz kura izkosts gruovs.<ref>http://www.krustpils.lv/faili/ter_plan/Paskaidrojuma_raksts_vides_parskats.pdf</ref> Pūstumreitu i dīnavydu pusē ap 1,5 dekteru pluotā bejuse dzeivojamuo vīta, vokoru pusē - kopuvīta. + +==Viesture== +Apdzeivuots nu 1 godu tyukstūšys pyrma Krystus da 13 godusymtam.<ref>http://www.krustpils.lv/faili/ter_plan/Paskaidrojuma_raksts_vides_parskats.pdf</ref> Latgaļu apdzeivuotuo Osotys piļsnūvoda administrativais i militariskais centris, kurs beja pavaļdeigs Gersikys kieneņam. Piliskolnā bejušuo piļs pīmynāta 1211 i 1225 godā. Pīdariejuse [[Reiga|Reigys]] veiskupam. 1211 godā Osotys piļsnūvods daškierts Livonejis veiskupejai. 1237 godā Reigys veiskups natuoli nu Osotys pastateja Krysta pili (''vuocīšu'': Kreutzburg), nu tuo laika Osotys piliskolns sovu ītaku pagaisynoj. 1511 godā jau pīmynāts Krystapiļs mīsts. + +==Nūruodis i olūti== +{{nūruodis}} + +[[Kategoreja:Kūku pogosts]] [[Kategoreja:Latgolys kaupri]] + g3uqvqenza6t8sd1uh833dwwocen8e1 + + + + Solujuoņu pogosts + 0 + 2224 + + 28864 + 21787 + 2013-03-08T13:03:16Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801498]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Solujuoņu pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Solujuoņu pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods +| nūvoda_pasauka = Ribinišku nūvods +| centrys = Solujuoni +| pluots = 70,6 +| dzeivuotuoju_skaits = 507 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 507 / 70.6 round 1}} +| īstateits = +| likvidets = +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} + +'''Solujuoņu pogosts''' irā [[Ribinišku nūvods|Ribinišku nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Sylajuoņu pamatškola, kulturys noms, biblioteka Sylajuoņu i Kotļarovys solā, feļčeru punkts. Pogosta centrys Solujuoni. + +==Viesture== +Viesturiskai Solujuoņu pogosta teritoreja bejuse Rēznis apleicinī. 1935 godā Sylajuoņu pogosta pluots beja 249,2 km² i tymā dzeivova 9684 dzeivuotuoju. 1945 godā pogosta teritorejā īstateja Antonišku, Kausys, Kotļarovys, Nikitišku, Ribinišku, Rušonicys Sylajuoņu, Timošyšku i Vīmyna solys padūmi, a pošu pogostu likvidēja. 1954 godā Sylajuoņu solai daškiera likvidātū Kotļarovys solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2004 godā kai administrativa teritoreja pogosts dasaškiera [[Ribinišku nūvods|Ribinišku nūvodam]]. + +== Rūbeži == +Solujuoņu pogosts tur rūbežu ar: +* [[Ribinišku nūvods|Ribinišku nūvoda]] [[Ribinišku pogosts|Ribinišku pogostu]], [[Rušyuna pogosts|Rušyuna pogostu]] i [[Vydsmuižys pogosts|Vydsmuižys pogostu]]; +* [[Rēznis nūvods|Rēznis nūvoda]] [[Sylmolys pogosts|Sylmolys pogostu]] i [[Vīmyna pogosts|Vīmyna pogostu]]. + +== Dzeivuotuoji == +Solujuoņu pogostā dzeivoj 507 ļauds. + +=== Solys === +Solujuoņu pogosta ļauds dzeivoj 30 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Bykova, Čirvinīki, Kotļarova, Rozalina, Solujuoni (pogosta centrys). + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj tik vītejuos zeimeibys celi - Malta-Solujuoni (V570), Pušs-Vīmyns-Solujuoni-Ribiniški (V577) i cyti mozuoki.<ref>[http://www.lvceli.lv/LV/?i=247 Latvejis vaļsteibys vītejuos zeimeibys autoceli]</ref> Dzeļžaceļa linejis pogosta teritoreju naškārsoj. + +Solujuoņu pogosta teritoreju apkalpoj vīna posta atdale Solujuoni (LV-5330).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Kostigu staroveru cierkva +* Solujuoņu parks + + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Ribinišku nūvods}} + k2yp00tn49fp1vy3kewwu6etpc5qyhx + + + + Stabuļnīku pogosts + 0 + 2225 + + 28865 + 21793 + 2013-03-08T13:03:28Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3801520]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Stabuļnīku pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Stabuļnīku pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods +| nūvoda_pasauka = Ribinišku nūvods +| centrys = Stabuļnīki +| pluots = 67,5 +| dzeivuotuoju_skaits = 865 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 865 / 67.5 round 1}} +| īstateits = +| likvidets = +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} + +'''Stabuļnīku pogosts''' irā [[Ribinišku nūvods|Ribinišku nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora kulturys noms, biblioteka i feļčeru punkts Stabulnīku solā i Viļceņu staroveru parapeja Viļceņu solā. Pogosta centrys Stabulnīki. + +==Viesture== +Viesturiskai Stabuļnīku pogosta teritoreja bejuse Rēznis apleiciņa Vydsmuižys pogostā. 1945 godā Vydsmuižys pogostā īstateja Stabuļnīku solys padūmi. 1954 godā Stabuļnīku solu daškiera Vydsmuižys (Gaļānu) solai. 1973 godā Vydsmuižys solys Kirova kolkoza teritoreju padaleja pa sevim i nu jauna īstateja Stabuļnīku solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2004 godā kai administrativa teritoreja pogosts dasaškiera [[Ribinišku nūvods|Ribinišku nūvodam]]. + +== Rūbeži == +Solujuoņu pogosts tur rūbežu ar: +* [[Ribinišku nūvods|Ribinišku nūvoda]] [[Ribinišku pogosts|Ribinišku pogostu]], [[Seiļukolna pogosts|Seiļukolna pogostu]] i [[Vydsmuižys pogosts|Vydsmuižys pogostu]]; +* [[Preiļu nūvods|Preiļu nūvoda]] [[Suovānu pogosts|Suovānu pogostu]]. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vīns vaļsteibys zeimebys autoceļš Viļāni-Preili-Špogi (P58) i nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref><ref>[http://www.lvceli.lv/LV/?i=247 Latvejis vaļsteibys vītejuos zeimeibys autoceli]</ref> Dzeļžaceļa linejis pogosta teritoreju naškārsoj. + +Stabuļnīku pogosta teritoreju apkalpoj vīna posta atdale Stabuļnīki (LV-5333).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Pastaru patmalis - vīneiguos Latvejā rekonstruātuos holandīšu tipa patmalis, dora i myuslaikūs. +* Viļceņu staroveru cierkva. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Ribinišku nūvods}} + 2fy4qlwhisl1n7crod9vcvwglvs6sch + + + + Aglyunys pogosts + 0 + 2228 + + 28866 + 21858 + 2013-03-08T13:03:39Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 4 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2605088]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Aglyunys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Aglyunys pogosta gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| nūvods = Nūvods +| nūvoda_pasauka = Aglyunys nūvods +| centrys = Aglyuna +| pluots = 131,7 +| dzeivuotuoju_skaits = 2151<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 2151 / 131.7 round 1}} +| īstateits = 1936 +| likvidets = +| teritoriskais_dalejums = +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = <!-- Raksteit tik adresa daļu www.pasauka.xx --> +}} + +'''Aglyunys pogosts''' irā [[Aglyunys nūvods|Aglyunys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrys - Aglyuna. Pogostā dora pyrmaškolys īstots, vydsškola, katuoļu gimnazeja, sporta škola, bazilikys kora škola i breivuo laika centrys Aglyunys solā i internatpamatškola i profesionaluo vydsškola Jaunaglyunys solā. Taipoš dora feļčeru punkts, socialū ryupestu noms i socialuo atspaida noms bārnim. Biblioteka i tautys noms atsarūn pogosta centrā. + +==Viesture== +Viesturiskai Aglyunys pogosta teritoreja bejuse Daugpiļs apleiciņa '''Kapeņu pogostā'''. 1936 godā nu Kapeņu pogosta padaleja Aglyunys pogostu. 1945 godā Aglyunys pogostā īstateja Aglyunys, Jaundzemu, Kruoceitis, Rušyuna, Runtuļu i Salinīku solys padūmi. 1954 godā Aglyunys solai daškiera Kruoceitis solu, a 1960 godā i Salinīku solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā īstateja [[Aglyunys nūvods|Aglyunys nūvodu]] i pogosts dasaškiera kai administrativa teritoreja. + +== Rūbeži == +Aglyunys pogosts tur rūbežu ar: +* [[Aglyunys nūvods|Aglyunys nūvoda]] [[Gruoveru pogosts|Gruoveru]], [[Kastulīnis pogosts|Kastulīnis]] i [[Škeļtiņu pogosts|Škeļtiņu]] pogostu; +* [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Ombumuižys pogosts|Ombumuižys]] i [[Vyšku pogosts|Vyšku pogostu]]; +* [[Ribinišku nūvods|Ribinišku nūvoda]] [[Rušyuna pogosts|Rušyuna pogostu]]. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Aglyunys nūvods}} + 48h3ebsxwmuzpi5x8yq31mgdt26zg7i + + + + Krystapiļs nūvods + 0 + 2229 + + 28867 + 24647 + 2013-03-08T13:03:50Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2277478]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Krystapiļs nūvods +| zemislopa = Krustpils novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Krystapiļs nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = +| pluots = 812,2 +| dzeivuotuoju_skaits = 6 680<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 6680 / 812.2 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Atašinis pogosts]] <br /> [[Krystapiļs pogosts]] <br /> [[Kūku pogosts]] <br /> [[Mežuoris pogosts]] <br /> [[Varīšu pogosts]] <br /> [[Veipa pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.krustpils.lv +}} + +'''Krystapiļs nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], sasadorūšs nu sešu pogostu. Administrativuo centra navā, nūvoda dūme uors nūvoda teritorejis [[Jākubmīsts|Jākubmīstā]]. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Krystapiļs nūvods| ]] + s2bsw83bo5ngkkr5qiuluewz3k4gmy7 + + + + Kuorsovys nūvods + 0 + 2230 + + 28868 + 27894 + 2013-03-08T13:04:02Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2395952]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kuorsovys nūvods +| zemislopa = Kārsavas novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kuorsovys nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Kuorsova +| pluots = 628,4 +| dzeivuotuoju_skaits = 6 941<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 6941 / 628.4 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Golyšovys pogosts]] <br /> [[Kuorsova|Kuorsovys]] mīsts <br /> [[Malnovys pogosts]] <br /> [[Mežavydu pogosts]] <br /> [[Mērdzinis pogosts]] <br /> [[Saļņovys pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.karsava.lv +}} + +'''Kuorsovys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], sasadorūšs nu sešu pogostu i [[Kuorsova|Kuorsovys]] mīsta. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Kuorsovys nūvods| ]] + qg9pfe50vh6f9f9zw35az6v9szzbjmp + + + + Ruguoju nūvods + 0 + 2231 + + 28869 + 21857 + 2013-03-08T13:04:14Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1837354]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ruguoju nūvods +| zemislopa = Rugāju novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Ruguoju nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Ruguoji +| pluots = 512 +| dzeivuotuoju_skaits = 2 652<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 2652 / 512 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Lozdukolna pogosts]] <br /> [[Ruguoju pogosts]] +| pakaļpīņu_centri = Benislova +| teiklavīta = www.rugaji.lv +}} + +'''Ruguoju nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], sasadorūšs nu divu pogostu. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Ruguoju nūvods| ]] + dw99m6ybxcnx9v8id7oclhi5wwrkirs + + + + Kruoslovys nūvods + 0 + 2232 + + 28870 + 23896 + 2013-03-08T13:04:26Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1831695]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kruoslovys nūvods +| zemislopa = Krāslavas novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Krāslavas novads COA.png +| gerba_pasauka = Kruoslovys nūvoda gerbs +| gerba_plotums = 80px +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Kruoslova +| pluots = 1078,4 +| dzeivuotuoju_skaits = 19 811<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 19811 / 1078.4 round 1}} +| īstateits = 2001 +| teritoriskais_dalejums = {{collapsible list|title=1 mīsts i<br />11 pogosti|<br />[[Aulejis pogosts]]<br />[[Indreicys pogosts]]<br />[[Iudreišu pogosts]]<br />[[Izvolta pogosts]]<br />[[Kaļnīšu pogosts]]<br />[[Kapļovys pogosts]]<br />[[Kumbuļa pogosts]]<br />[[Kruoslova]]<br />[[Kruoslovys pogosts]]<br />[[Pīdrujis pogosts]]<br />[[Pūstinis pogosts]]<br />[[Skaista pogosts]]}} +| pakaļpīņu_centri = +| teiklavīta = www.kraslava.lv +}} + +'''Kruoslovys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]] i [[Sieleja|Sielejis]] reitūs, sasadorūšs nu vīnpadsmit pogostu i vīna mīsta. Nūvodu 2001 godā īstateja [[Kruoslova|Kruoslovys mīsts]] i [[Kruoslovys pogosts]], a 2009 godā jam dasaškiera [[Aulejis pogosts]], [[Indreicys pogosts]], [[Iudreišu pogosts]], [[Izvolta pogosts]], [[Kaļnīšu pogosts]], [[Kumbuļa pogosts]], [[Pīdrujis pogosts]], [[Pūstinis pogosts]] i [[Skaista pogosts]] nu Latgolys i [[Kapļovys pogosts]] nu Sielejis. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Kruoslovys nūvods| ]] + jqgp7ub5ek8ygupd0n6mw23ut2w6fv8 + + + + Leivuona nūvods + 0 + 2233 + + 28871 + 23123 + 2013-03-08T13:04:37Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2277489]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Leivuona nūvods +| zemislopa = Līvānu novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Leivuona nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Leivuons +| pluots = 624,6 +| dzeivuotuoju_skaits = 14 046<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 14046 / 624.6 round 1}} +| īstateits = 1999 +| teritoriskais_dalejums = [[Jersikys pogosts]]<br />[[Leivuons|Leivuona mīsts]]<br />[[Rudzātu pogosts]]<br />[[Rūžupis pogosts]]<br />[[Sutru pogosts]]<br />[[Turku pogosts]] +| pakaļpīņu_centri = +| teiklavīta = www.livani.lv +}} + +'''Leivuona nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], sasadorūšs nu pīcu pogostu i vīna mīsta. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Leivuona nūvods| ]] + bps1dvwfsng7k8ziqs0718lemho45kl + + + + Ludzys nūvods + 0 + 2234 + + 28872 + 21875 + 2013-03-08T13:04:49Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q932445]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Ludzys nūvods +| zemislopa = Ludzas novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Ludzys nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Ludza +| pluots = 966 +| dzeivuotuoju_skaits = 15 677<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 15677 / 966 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = {{collapsible list|title=1 mīsts<br />i 9 pogosti|<br />[[Brigu pogosts]]<br />[[Cyrmys pogosts]]<br />[[Istrys pogosts]]<br />[[Ludza|Ludzys mīsts]]<br />[[Nierzys pogosts]]<br />[[Ņukšu pogosts]]<br />[[Pyldys pogosts]]<br />[[Purynu pogosts]]<br />[[Rundānu pogosts]]<br />[[Vysnovys pogosts]]}} +| pakaļpīņu_centri = +| teiklavīta = www.ludza.lv +}} + +'''Ludzys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], sasadorūšs nu deviņu pogostu i vīna mīsta. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Ludzys nūvods| ]] + c1t9g8aqssbdqws0u5i93q9uerywqwt + + + + Preiļu nūvods + 0 + 2235 + + 28873 + 23295 + 2013-03-08T13:05:01Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2277469]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Preiļu nūvods +| zemislopa = Preiļu novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Preiļu nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Preili +| pluots = 365,3 +| dzeivuotuoju_skaits = 11 764<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 11764 / 365.3 round 1}} +| īstateits = 2000 +| teritoriskais_dalejums = [[Juosmuižys pogosts]]<br />[[Pelieča pogosts]]<br />[[Preili|Preiļu mīsts]]<br />[[Preiļu pogosts]]<br />[[Suovānu pogosts]] +| pakaļpīņu_centri = +| teiklavīta = www.preili.lv +}} + +'''Preiļu nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Latgola|Latgolā]], sasadorūšs nu četru pogostu i vīna mīsta. Nūvodu 2000 godā īstateja [[Preili|Preiļu mīsts]], [[Preiļu pogosts]] i [[Juosmuižys pogosts]], a 2009 godā jam dasaškiera [[Pelieča pogosts]] i [[Suovānu pogosts]]. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Preiļu nūvods| ]] + 5zzdc43wiy06oc8eepna29h0064v40r + + + + Olyuksnys nūvods + 0 + 2236 + + 28874 + 21876 + 2013-03-08T13:05:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 11 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3393445]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Olyuksnys nūvods +| zemislopa = AluksnesNovads.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = LVA Alūksnes novads COA.png +| gerba_pasauka = Olyuksnys nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = Olyuksnys nūvoda karūgs +| centrys = Olyuksna +| pluots = 1699,8 +| dzeivuotuoju_skaits = 19 221 +| dzeivuotuoji_gods = 2009 +| bīzeiba = {{#expr: 19221 / 1699.8 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = {{collapsible list|title=1 mīsts i<br />15 pogosti|<br />[[Alsviķa pogosts]]<br />[[Annys pogosts]]<br />[[Baja pogosts]]<br />[[Iļzenis pogosts]]<br />[[Jaunannys pogosts]]<br />[[Jaunlaicinis pogosts]]<br />[[Kolnacempu pogosts]]<br />[[Līpnys pogosts]]<br />[[Malīnis pogosts]]<br />[[Muolupis pogosts]]<br />[[Muorkaļnis pogosts]]<br />[[Olyuksna|Olyuksnys mīsts]]<br />[[Pededzis pogosts]]<br />[[Vaclaicinis pogosts]]<br />[[Zeļteņa pogosts]]<br />[[Zīmara pogosts]]}} +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.aluksne.lv +}} + +'''Olyuksnys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Vydzeme|Vydzemē]] i [[Latgola|Latgolā]], kas sasadora nu [[Olyuksna|Olyuksnys]] mīsta i 15 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Olyuksnys nūvods| ]] + 98koj4u1shcrgk70t1rk9g1w0hdrrsg + + + + Beverinys nūvods + 0 + 2237 + + 28875 + 22221 + 2013-03-08T13:05:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2018692]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Beverinys nūvods +| zemislopa = BeverinasMapa.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Beverinys nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = Beverinys nūvoda karūgs +| centrys = Murmuiža +| pluots = 301,8 +| dzeivuotuoju_skaits = 3 553 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 3553 / 301.8 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Brenguļu pogosts]]<br />[[Kauguru pogosts]]<br />[[Trykuotys pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.beverinasnovads.lv +}} + +'''Beverinys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Vydzeme|Vydzemē]], kas sasadora 3 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Beverinys nūvods| ]] + s752zl185x9fwhiekdrezqwewc35wn7 + + + + Latgali + 0 + 2239 + + 31952 + 31951 + 2017-04-25T20:57:08Z + + Turaids + 172 + + + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Latgali +| atvaiga_pasauka = People from Daugavpils region.jpg +| atvaiga_aprakstejums = Daugpils apleicīna latgalu saime 19. godsymta golā +}} +[[Fails:Latgalu_teritorija.jpg|300px|thumb|Latgaļu vaļstiskī i teritoriskī sataisīni IX– XIII gs. pa nazcik viesturiskajom kartom. Paruodeitys [[Jersika|Jersikys]], [[Kūknuojs (vaļsteiba)|Kūknuoja]], [[Tuolova|Tuolovys]] vaļsteibys.]] + +'''Latgali'''<ref>Kūceņu Armands. [http://latgola.lv/voluda/publikacejis/lcil.shtml Latgali ci latgalīši?] Latgola.lv</ref> aba '''latgalīši''' – baltu etniskuo grupa, dzeivojūša pa lelumam [[Latveja|Latvejis]] teritorejā i runojūša pa lelumam [[Latgaļu volūda|latgaļu volūdā]]. Raksteitūs olūtūs (kai ''Let'gola'') pīmynāti jau XI godusymtā. Viesturiskai aizjēme plotuokys teritorejis i aiz šudinejūs Latgolys rūbežu (Drysys, Sebeža, Pītuolovys, [[Modyunis nūvods|Modyunis]], [[Olyuksnys nūvods|Olyuksnys]], Guļbinis, Cāsu, Valkys, Īlyukstis, [[Jākubmīsts|Jākubmīsta]] apleicīnēs), kuramuos niule lelā mārā asimilāti. Pīsadaleja [[latvīšu volūda|vokorlatvīšu aba baļtīšu volūdys]] atsarasšonā. Viesturē tradicionalai saukti par ''latgalim aba latvīšim'' (izškireibā nu kūrzemnīku i zemgalīšu, kurūs da XVII gs. par ''latvīšim'' nasauce). + +== Etnonims (pošpasauka) == + +Viesturis olūtūs latgali (''Letgola'') niulejuos Latgolys teritorejā pyrmū reizi pīmynāti XI gs. Nestora krīvu kronikā.<ref>[O. Breidaks] A. Breidaks "Ievads baltu valodniecībā." 1 d., [Daugpiļs], 1998</ref> + +Da XVI godusymtam apzeimīni ''latgaļs'' i ''latvīts'' lītuoti kai sinonimi<ref>Sinonimiskī varianti: ''latgali, letgali, lotgali, leti, lati, lotavi'' i ct.</ref> i par latgalim-latvīšim saukti viņ Daugovys lobuos molys dzeivuotuoji, t. i., tī, kurī beja šudiņdīnys Latgolā i Vydzemē. A Daugovys kairuos molys (niulejuos Kūrzemis i Zemgolys) dzeivuotuoju par latvīšim nasauce.<ref>[O. Breidaks] A. Breidaks "Ievads baltu valodniecībā." 1 d., [Daugpiļs], 1998</ref> + +== Viesture == +Niulejuos Latgolys latgali vysulobuok izglobuojuši nu senejūs latgaļu puormontuotū volūdu i kulturu da poš XX godusymtam, tok piec 1917 gods deļ politiskuos apmīgšonys (latvīšu šovinistu i krīvu rusifikatoru eistenūtuo etnocida) bejuši padūti krušai asimiļacejai: lela daļa latgaļu par varis īsaliejuse ''latvīšu tautys'' formiešonā, vēļ daļa – puorsakrīvuojuse. + +== Pošatmane i statuss == +[[Fails:Latgaliešu valodas lietošana ikdienā (2011).svg|300px|thumb|right|Latgaļu volūdys lītuojums kasdīnē Latgolā piec 2011. goda tautys skaiteišonys datim]] + +Latgaliski rokstūšī i runojūšī latgali sevi parostai<ref>Publikacejis, valeimys runys, škārsteikla dūmu meiti, apklausys, iņtervejis ekspedicejuos i tt.</ref> īskaita par atseviškys, sovpateigys kulturys pīstuovim i saprūt sovys volūdys izškireibu nu [[Latvīšu volūda|vokorlatvīšu aba baļtīšu volūdys]]. Tok deļ viesturisku i politisku īmešļu latgaļu kai baltu etniskuos grupys statuss Latvejis Republikā vysod bejs oficialai nanūsaceits. + +Myuslaikūs tī latgali, kurī beiguši latvīšvolūdeiguos školys<ref>Latvejis vaļsteibys realizātuo etnocida rezultatā vuiceibys latgaļu volūdā Latgolys školuos da golam nūlīgtys 1934 godā i nu tuo laika navā atjaunynuotys.</ref>, parostai politiskā zinē sevi daskaita pi „latvīšu tautys” kai Latvejis vaļstiskū pamatu sataisūšuos „pamatnacejis”.<ref>Taidys daskaiteišonys golvonuos īmeslis: +<br> a) saprasme ap latvīšu ideņtiteta nadrūsū i gražeigū stāti krīvu volūdys ekspaņsejis i Krīvejis politiskuo īspaida fonā; +<br> b) „latvīšu” vuorda tradicionaluo damāruošona i vokorlatvīšim (baļtīšim), i latgalim; +<br> c) latgaļu volūdys nalītuošona školu programuos; +<br> d) vokorlatvīšu (baļtīšu) volūdys vaļstiskais statuss i ar jū sasītais volūdys ekonomiskais prestižs (školā izavuiceitū vokorlatvīšu volūdu latgali saprūt kai paleigu augstuokam dzeivis leidzīņam dasnēgt).</ref> Tamlaikam tī latgali, kurī beiguši krīvvolūdeiguos školys, cieški seve nadaskaita pi „latvīšu tautys”. Jī parostai viņ pastreipoj sovu etniskū pīdareibu Latgolys regionam i iz tīseibu lītuot krīvu volūdu verās caur praktisku īdeveigumu. Taidu pasavierīni vadynoj fakts, ka deļ ideologisku īmešļu (etnocida politikys tradicejis) Latvejis školu programuos īslāgts cīši moz informacejis ap Latgolu i latgalim. + +Latvejis vaļsteibys oficialuos institucejis vys ignorej latgaļu volūdys statusa (i kūpā ar jū – latgaļu ideņtiteta pīzeišonys i izglobuošonys) vaicuojumu.<ref>[http://nra.lv/latvija/politika/34658-latgaliesu-portals-ministrijas-turpina-ignoret-latgaliesu-valodu.htm]</ref> Tys radejs „nūbūrtuo skrytuļa” efektu: vaļsteibys pasivumu latgaļu vaicuojumā pošeigai izlītoj tī politiskī spāki, kurī ceikstīs par krīvu volūdys lītuojuma i Krīvejis politiskuo īspaida palelynuošonu Latvejā. Itaidu prokrīvyskūs spāku darbeibu otkon Latvejis vaļsteibys pīstuovi (volūdu politikys formātuoji) nūruoda kai attaisnuojumu sovam pasivumam i vys tuoļuok nasper nikaidu byutysku sūļu, kab latgaļu diskriminiešona beigtūs. Tuo rezultatā jau vaira kai 20 godu Latvejis Republika apmīdz Latgolys pamatdzeivuotuoju – latgaļu – vysāciļvieciskuos tīseibys iz vareibu vuiceit sovim bārnim sovu volūdu vaļsteibys apmoksuotā školā i dabuot nu vaļsteibys informacejis sovā volūdā.<ref>[http://www.apollo.lv/portal/news/articles/148929], [http://www.ves.lv/article/109634], [http://www.latgaleslaiks.lv/lv/2004/4/23/18623]</ref> + +== Nūruodis i olūti == +{{nūruodis}} + o6aqh3eltrqvxts543ipj87357zjrce + + + + Ohotys jiura + 0 + 2240 + + 28877 + 24881 + 2013-03-08T13:05:46Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 70 interwiki links, now provided by [[d:|Wikidata]] on [[d:q41602]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Sea of Okhotsk map.png|right|250px]] + +'''Ohotys jiura''' – [[Klusais okeans|Klusuo okeana]] baseinam pīdareiga jiura iz vyds [[Kamčatka|Kamčatkys pussolys]] i [[Kurilu jiursolys|Kurilu jiursolu]]. Pasaukta pa upis vuordam ''Ohota'', kurs otkon cielīs nu evenku volūdys vuorda ''окат, okat'' 'upe'. + +Iz vyds Ohotys jiurys i [[Japanejis jiura|Japanejis jiurys]] irā [[Sahalins|Sahalina]] jiursola. + +{{Commons|Category:Sea of Okhotsk|no=T}} + +[[Kategoreja:Geografeja]] + 4a7ck7ktzvyjkf22nd8rhn3f24cmcof + + + + Arņs Slobožanins + 0 + 2243 + + 31544 + 22190 + 2016-08-07T12:50:12Z + + DARIO SEVERI + 3389 + + Removing file doesn't work + wikitext + text/x-wiki + '''Arņs Slobožanins''' – latgaļu rokmuzykants, grupys ''[[Dabasu durovys]]'' īstateituojs i vadeituojs, muzykys producents, regularūs kuļturys pasuocīņu (''[[Boņuks]]'', ''[[Muzykys skrytuļs]]'' i ct.) leidzaorganizators i vediejs. + +[[Kategoreja:Zeimeigi Latgolys ļauds]] + kt02ld96kqsqknw0ntc8fkx45e4y3ly + + + + Marindzis piļs + 0 + 2248 + + + 22223 + 2012-04-02T11:47:21Z + + Roalds + 50 + + Roalds moved page [[Marindzis piļs]] to [[Mariņdzis piļs]]: Latgaļu volūdys lykumi + wikitext + text/x-wiki + #REDIRECT [[Mariņdzis piļs]] + tnup2pdpqb0n8g6b68q1s9nz3r43m69 + + + + Taiss:Vol-uk + 10 + 2249 + + 31346 + 30050 + 2016-03-07T03:29:20Z + + Varlaam + 1454 + + + wikitext + text/x-wiki + {{langWithName|uk|ukrainīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|uk]] +</noinclude> + 0yf4itfyue1obzenu6i81x36qx420gc + + + + Taiss:Lang-uk + 10 + 2250 + + + 22233 + 2012-04-02T15:07:47Z + + Glossologist + 79 + + Pāradresē uz [[Taiss:Vol-uk]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:Vol-uk]] + 5rtp2iq0ykjtohsf1rlsf1xpppncouq + + + + Kategoreja:Svātki + 14 + 2253 + + 29692 + 28983 + 2013-04-13T04:48:26Z + + KLBot2 + 1857 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikidata]] on [[:d:Q6197625]] + wikitext + text/x-wiki + {{Plotuok}} +{{Commonscat|Observances|Svātki}} + +[[Kategoreja:Kultura]] + +{{DEFAULTSORT:Svatki}} + 2i53qfjaqb5gmbkogwvr69mu1nrj897 + + + + Leldīne + 0 + 2254 + + 30348 + 29334 + 2014-06-19T10:57:37Z + + Onuphriate + 2353 + + wikitext + text/x-wiki + [[Fails:24. Old Russian Easter Postcard.jpg|thumb|right|250px|Seneja krīvu Leldīnis karteņa.]] +'''Leldīne''' – senejim [[Latgali|latgaļu]] tautys svātkim damāruoti kristīšu svātki, kuri simbolizej [[Jezus Krystus]] augšanceļšonūs nu myrūņu piec pīkaļšonys krystā, kai aizraksteits Jaunajā Testamentā. Tys nūtics trešā dīnā piec Krystus mieršonys (nuovis dīnu skaitūt kai pyrmū dīnu). + +Leldīne lelumam kristīšu irā poši svareigī gods svātki, kuramūs lela prīca izsokoma deļ galeiguos Dīva dāla īveicis par smierti. Nazcik saprasmēs svareiguoka irā Krystus mieršonys, a na augšonceļšonuos dīna, partū ka taišni mierdams Krystus izvede ciļvieci nu apdzymtuo grāka. Leldīnis svātki irā pādejuos gavieņa dīnys. + +Taipoš kai cyti kristīšu svātki, i Leldīne sasaliejuse ar tautys poguonu tradicejom, pīvadumam, Leldīnis ūlu kruosuošonu. + +==Leldīnis data== +{| class="infobox vcard" style="font-size: 85%; text-align: center; margin: 0 0 1em 1em" +|- +! colspan="3" | Leldīnis data +|- +! gods || Vokoru kristīši || | Reitu kristīši +|- +!2008 +| pavasara m. 23 d. || sulu m. 27 d. +|- +!2009 +| sulu m. 12 d. || sulu m. 19 d. +|- +!2010 +| colspan="2" | sulu m. 4 d. +|- +!2011 +| colspan="2" | sulu m. 24 d. +|- +!2012 +| sulu m. 8 d. || sulu m. 15 d. +|- +!2013 +| pavasara m. 31 d. || lopu m. 5 d. +|- +!2014 +| colspan="2" | sulu m. 20 d. +|- +!2015 +| sulu m. 5 d. || sulu m. 12 d. +|- +!2016 +| pavasara m. 27 d. || lopu m. 1 d. +|- +!2017 +| colspan="2" | sulu m. 16 d. +|- +!2018 +| sulu m. 1 d. || sulu m. 8 d. +|- +|} +Leldīne navā atzeimojama svietejamuo gods dīna pa Gregora kaleņderam. Jūs data damāruota pi žydu svātku, kurūs datu nūstota pa mienesnīka kaleņderam. Leldīni svietej pyrmajā svātdīnē nu pyrmuos pylnats piec pavasara leidzalaika (ekvinokcejis). Deļtuo gods nu goda Leldīnis data izaškir i byun nu [[Pavasara mieness|pavasara mieneša]] 22 da [[Sulu mieness|sulu mieneša]] 25 dīnai.<ref>[http://aa.usno.navy.mil/faq/docs/easter.php Leldīnis data (''angliskai'')]. Rakstīņs nu [[Amerikys Saškierstuos Vaļsteibys|Amerikys Saškierstū Vaļsteibu]] Jiuris Observatorejis (pavasara m. 27 d., 2007 g.).</ref> + +Reitu pravoslavu bazneicā, kuramā lītoj Juleja kaleņderi, Leldīnis data saīt nu [[Sulu mieness|sulu mieneša]] 4 dīnys da [[Lopu mieness|lopu mieneša]] 8 dīnai. Tok izagoda i taidi godi, kod katuoļu, pravoslavu i staroveru Leldīne saīt vīnā datā. + +==Leldīnis liturgeja== +[[Fails:Victory over the Grave.jpg|thumb|left|120px|Augšonceļšonuos.]] +Katuoļu bazneicā Leldīnis svieteišona aizasuoc Lelajā (Zaļajā) Catūrtdīnē i valkās vysu Leldīnis laiku da Krystus dabaspajimšonys svātkim. Lelajā Catūrtdīnē i Pīktdīnē kristīši īt Krysta ceļu, pīmynādami Kunga Jezus Krystus pīkaļšonu krystā i smierti. Lelajā Pīktdīnē bazneica nūsacejuse styngru gavieni. Lelajā Sastdīnē, kuruos kod nakod sauc i par Klusū Sastdīni, leidza ar saulislaidu svietejama Leldīnis nakts. Nakts tymsā svietejama "nakts, gaišuoka par dīnu" liturgeja, kura salosa ticeigūs apgaismuot apleici ar sovom atnestom, aizdegtom svecem. Ituos nakts rituala jāgs - atzeit sevi par vaineigu i sovā vainē, tymseibā īsavērt eistynū gaismu, kura navā ītēmiejama byunūt dīnā. Ituo rituala laikā skaitomi seviški daudzi Svātū Rokstu vuordi, kuramuos paviesteita Mesejis atīšona i vysu cylvāku grāku atlaisšona, i dzīdamys psaļmys. Leldīnis nakts kulminaceja - augšonceļšonuos viests. Nu ituos šaļts atļauts vargaņuot, kas katuoļu bazneicā irā nūlīgts nu Leluos Catūrtdīnis da Lelajai Sastdīnei. + +==Tautys tradicejis== +Nazcik tautys īrodumi irā izaglobuojušs nu poguonu pavasara atīšonys svātkim i sasalejušs ar Jezus Krystus augšonceļšonuos svātkim, sataisūt myuslaiku [[Latgali|latgaļu]] Leldīnis svātku tradicejis. Senejūs laikūs pavasara atīšona (Leluo dīna) sveiteita, kod dīnys i nakts garums vīnaids (pavasara ekvinokceja) i tys saīt [[Pavasara mieness|pavasara mieneša]] 20 ci 21 dīnā. +[[Fails:Belarusian Easter Eggs.jpg|thumb|right|250px|Ūlu kruosuošona irā vīna nu Leldīnis tradiceju.]] +Vīna nu pošu golvonūs tautys tradiceju irā ūlu kruosuošona (marguošona). Parostai ūlys kruosoj seipulu myzās, kluotyn līkūt vysaižus auguojus, putruomus i tai tuoļuok. Tok sevkura saime tur sovys ūlu kruosuošonys tradicejis. Leldīnis reitā saime ād reitiškys i sasaveic, kam stypruoka ūla. Taipoš nūteik leiguošonuos leigačuos, ūlu rypynuošona, ūlu mesšona i cytys atrakcejis. + +===Tautys ticiejumi=== +* Par Leldīnem juovuora ūlys, tod opolys teleitis aug.<ref>[http://valoda.ailab.lv/folklora/ticejumi/ Latvīšu tautys ticiejumi]</ref> +* Kas Leldīņu ūlys bes suoļa ād, tys vysu vosoru maluos. +* Kas zam Leldīnis lelā sastdīnē iess vaira zierņu, tod itei pīzeimoj, ka tys byus boguots cylvāks. +* Kas Leldīnē pyrmais atbrauc nu bazneicys, tys vysu godu pyrmais pi dorba un tureibys. +* Ka cylvāks gryb zynuot sovus grākus, tod lai pyrmā Leldīnis dīnā da pacelšonys krysta padzer solta iudiņa. Tū dīnu da pacelšonys krysta iudiņs irā soldons. Kod cylvāks padzers iudiņa i iudiņs byus soldons, tod itei pīzeimoj, ka pi tuo cylvāka grāku navā. A ka byus na soldons, taids kai jis irā, iudiņs kai iudiņs, itys pīzeimoj, ka pi tuo cylvāka cīši daudz grāku, koč ar maisu nosuoj. + +===Tautys dzīsmis=== +{| +|Nakarati bruoleleni<br/> +Iz iudeņa šyupeleit:<br/> +Samyrks munys boltys kuojis,<br/> +Nūkryss zeiļu vainadzeņš,<br/> +Tryuks vierveitis dimdēsīsi,<br/> +Kryss muoseņa iudinī<br/> + +|Leldiņ guoju šyupuotīs,<br/> +Lai teleitis ganejuos;<br/> +Aizgavieni šliukuotīs,<br/> +Lai lineni gari aug.<br/> + +|Atuoja Leldīne<ref>[http://www.liis.lv/folklora/gadsk/tdz/lieldienas.htm Tautys dzīsmis ap Leldīnem]</ref><br/> +Par kolnim, par lejom<br/> +Ai meikstim peirāgim,<br/> +Ai čosnom ūlom.<br/> + +|Pašyupoji, bruoleleni,<br/> +Dūšu ūlu, dūšu sīra,<br/> +Na aiz tovu šyupuošonu,<br/> +Aiz šyupeļa kuorumeņu.<br/> + +|Palaidemi šū Leldīni,<br/> +Kai byus cytys sagaideit;<br/> +Dīvs dūs mīru, veseleibu,<br/> +I cytys sagaideis.<br/> + +|Atguoja Leldīne<br/> +Boltajom kuojom,<br/> +Nūguoja Leldīne<br/> +Malnajom kuojom.<br/> + +|Vierbu, vierbu,<br/> +Vierba syta, nasyta.<br/> +Meikstī pluocini,<br/> +Skaistos ūlys,<br/> +Veseleiba īškā,<br/> +Naveseleiba uorā!<br/> +|} + +== Nūruodis i olūti == +{{nūruodis}} + +[[Kategoreja:Svātki]] + qiy84y146cex5dsvl3gp5wkncc6qc4p + + + + Posta karteņa + 0 + 2255 + + 28880 + 24691 + 2013-03-08T13:07:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 38 interwiki links, now provided by [[d:|Wikidata]] on [[d:q192425]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:22. Old Russian Easter Postcard.jpg|thumb|right|250px|Seneja krīvu Leldīņu karteņa.]] +'''Posta karteņa aba karteņa''' - posta syutejuma forma ar [[Roksts (raksteiba)|rakstisku]] viestejumu. kuru var nūsuyteit bez kuvera. Pataiseita iz bīza papeira ci kartona. Parostai posta karteņai vīnā pusē irā atvaigs, a ūtrā pusē vīta tekstam, sajiemieja adresam i posta štempeļam. Vysuvaira pīlītoj kai svātku apsveikumu ci pīminis duovanu nu kaida ceļuojuma. Kuruos nakuruos vaļsteibuos posta karteņu syuteišona irā liešuoka kai viestuļu nūsyuteišona. Myuslaikūs, izaraistejūt modernajom tehnologejom, pasaruodejušs i elektroniskuos posta kartenis, kurys nūsyuta pa e-postim ci SMS formā. + +Posta karteņu tiemiešona i kolekcioniešona irā zineibys atzare Filokarteja. + +==Viesture== +Gryuši pasaceit, kas izdrukavuojs pyrmū posta karteņu. Itys vaicuojums irā vīns nu pošu popularuokūs i pretruneigūs filokartejis tiemiešonā. Tys izaškir nu iņterpretacejis, kas irā karteņa, a kas vaira nā. Par pyrmū posta karteņu pījimts īskaiteit Desmainsons graviru nu [[Praņceja|Praņcejis]], kura nūsyuteita 1777 godā.<ref>Lebeck/Kaufmann: Viele Grüße… Eine Kulturgeschichte der Postkarte, 2. Auflage von 1988, Harenberg Kommunikation Dortmund, Seite 407 (''vuociskai'')</ref> Tys beja atzeimuots "l. "Almanach de la Petite Poste de Paris" (Parizis posta atdalē). + +==Nūruodis i olūti== +{{nūruodis}} + +{{Commonscat|Postcards|Posta kartenis}} + +[[Kategoreja:Kultura]] + j1a3fhib5625145zm742rb7yr11ceiu + + + + Jezus Kristus + 0 + 2256 + + + 22273 + 2012-04-03T13:00:14Z + + Roalds + 50 + + Roalds moved page [[Jezus Kristus]] to [[Jezus Krystus]]: pa r roksta y + wikitext + text/x-wiki + #REDIRECT [[Jezus Krystus]] + ks0ejwp69vsv24w88z0v88xtl4jyt7s + + + + Cyblys pogosts + 0 + 2265 + + 28881 + 22563 + 2013-03-08T13:07:59Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800981]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Cyblys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Cyblys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Cyblys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Cyblys nūvods +| centrys = Cybla +| pluots = 79.0 +| dzeivuotuoju_skaits = 923<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 923 / 79.0 round 1}} +| īstateits = +| teiklavīta = +}} + +'''Cyblys pogosts''' irā [[Cyblys nūvods|Cyblys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, vydsškola, pyrmaškoliņs īstots, nūvoda muzejs, biblioteka Cyblā i Felicianovā, felčeru punkts i komunalsaimisteiba. + +==Viesture== +Viesturiskai '''Eversmuižys pogosta''' teritoreja bejuse Ludzys apleicinī. 1925 godā pasaukts par Cyblys pogostu. 1935 godā pogosta pluots bejs 231,4 km². 1945 godā īstateita Cyblys, Franapolis, Vysnovys, Jaseņcu, Leidumnīku i Ozupinis solys padūme, a pogosts likvidāts. 1954 godā Cyblys solai daškiersta Franapolis sola, 1975 godā Ozupinis sola, a 1979 godā daļa Vysnovys i Brigu solys.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2000 godā kūpā ar [[Leidumnīku pogosts|Leidumnīku pogostu]] īstateja [[Cyblys nūvods|Cyblys nūvodu]]. + +== Rūbeži == +Cyblys pogosts tur rūbežu ar: +* [[Cyblys nūvods|Cyblys nūvoda]] [[Blontu pogosts|Blontu pogostu]], [[Leidumnīku pogosts|Leidumnīku pogostu]], [[Zviergzdiņa pogosts|Zviergzdiņa pogostu]]; +* [[Ludzys nūvods|Ludzys nūvoda]] [[Brigu pogosts|Brigu pogostu]] i [[Vysnovys pogosts|Vysnovys pogostu]]. + +==Doba== +Pogosta vokoru i dīnavydu daļa irā [[Mudovys zamaine|Mudovys zamainis]] Sīnuojis leidzonainē, a reitu daļa [[Latgolys augstaine|Latgolys augstainis]] [[Būrzovys kaupraine|Būrzovys kauprainē]]. Pogosta pošu augstuo kaupre 172,7 m vjl pi Vabaļu solys. + +=== Iudini === +Upis: +* [[Iļža]] +* Soltupeite + +[[Iudiņtvere|Iudiņtveris]]: +* Felicianovys iudiņtvere + +Pūri i peisi: +* Akašu pūrs +* Cjapku pūrs + +== Dzeivuotuoji == +Cyblys pogostā dzeivoj 923 ļauds. + +=== Solys === +Cyblys pogosta ļauds dzeivoj 29 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju vaļsteibys zeimeibys celi naškārsoj, sative nūteik pa nazcik vītejuos zeimeibys celim. Taipoš pogostu naškārsoj nivīna dzeļžaceļa lineja. Tyvuokuo staceja "Vysnova" linejā Krystapiļs-Sīnuoja 10 kilometru nu pogosta centra. + +Cyblys pogosta teritoreju apkalpoj vīna posta atdale Cybla (LV-5709).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Cyblys nūvoda muzejs +* Cyblys vydsškolys nūvodtiemeibys muzejs +* Eversmuižys muiža i parks +* Eversmuižys Svātuo Andryva Romys katuoļu bazneica +* Evrersmuižys kulturviesturis i dobys styga + + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Cyblys nūvods}} + +[[Kategoreja:Cyblys pogosts| ]] + cbeshyq9gvudi6apwi2cbhmlangalsn + + + + Leidumnīku pogosts + 0 + 2266 + + 28882 + 22650 + 2013-03-08T13:08:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q3800923]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Leidumnīku pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Leidumnīku pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Leidumnīku pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Cyblys nūvods +| centrys = Leidumnīki +| pluots = 161.0 +| dzeivuotuoju_skaits = 380<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 380 / 161.0 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Leidumnīku pogosts''' irā [[Cyblys nūvods|Cyblys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora biblioteka, felčeru punkts i katuoļu parapeja. + +==Viesture== +Viesturiskai Leidumnīku pogosta teritoreja bejuse Ludzys apleiciņa [[Cyblys pogosts|Cyblys pogostā]]. 1945 godā Cyblys pogostā īstateita Leidumnīku solys padūme. 1956 godā Leidumnīku solai daškiersta Jaseņcu sola. 1971 godā Leidumnīku solys Puškina kolkoza teritoreju daškiera Kryvandys solai, a 1973 godā vysu Kryvandys solu daškiera Leidumnīkim.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2000 godā kūpā ar Cyblys pogostu īstateja [[Cyblys nūvods|Cyblys nūvodu]]. + +== Rūbeži == +Leidumnīku pogosts tur rūbežu ar: +* [[Cyblys nūvods|Cyblys nūvoda]] [[Cyblys pogosts|Cyblys pogostu]] i [[Blontu pogosts|Blontu pogostu]]; +* [[Ludzys nūvods|Ludzys nūvoda]] [[Brigu pogosts|Brigu pogostu]]; +* [[Krīveja|Krīvejis Federacejis]] Opskovys apgabaļa Krasnogorodskys rajonu. + +==Doba== +Pogosta zemis irā [[Mudovys zamaine|Mudovys zamainis]] Sīnuojis leidzonainē. Pogosta pošu augstuo kaupre 135,2 m vjl pi Josku solys. Vydyskais pogosta augstums byun apmārai 100 m vjl. Pogosta teritorejā cīši daudzi pūru, peisu i mežu. + +=== Iudini === +Upis: +* Kurjanka +* Rūbeža upe +* [[Sīnuoja (upe)]] + +[[Iudiņtvere|Iudiņtveris]]: +* Doļkys azars +* Kurjanovys azars +* Lebedinca azars +* Pīteļs +* Zabolotjes (Aizpūris) azars +* Sīnuojs + +Pūri i peisi: +* Akašu pūrs +* Jasku pūrs +* Josku peiss +* Kryvandys pūrs +* Lebedinca pūrs +* Spirku pūrs + +== Dzeivuotuoji == +Leidumnīku pogostā dzeivoj 380 ļauds. + +=== Solys === +Leidumnīku pogosta ļauds dzeivoj 41 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju vaļsteibys zeimeibys celi naškārsoj, sative nūteik pa nazcik vītejuos zeimeibys celim. Taipoš pogostu naškārsoj nivīna dzeļžaceļa lineja. Tyvuokuo staceja "Vysnova" linejā Krystapiļs-Sīnuoja 20 kilometru nu pogosta centra. + +Leidumnīku pogosta teritoreju apkalpoj vīna posta atdale Kušneri(LV-5719).<ref>[http://pasts.lv/lv/uzzinas/Indeksu_gramata/novadi/novadi.xls Latvejis posta iņdeksu gruomota]</ref> + +==Slavvītys== +* Aizpūris Vysusvātuokuos Jaunivis Marejis - ticeigūs paleiga Romys katuoļu bazneica +* Kryvandys Svātuo Sorgeņgeļa Mikaila pravoslavu cierkva +* Seimaņu lelakmiņs +* Vaidu muzejs + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Cyblys nūvods}} + +[[Kategoreja:Leidumnīku pogosts]] + 4izp8fezvbvx2cnpyrjm8b11d2vlj69 + + + + Santjago (Čile) + 0 + 2271 + + 30275 + 29029 + 2014-04-18T01:02:58Z + + Fry1989 + 1146 + + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Santjago +| atvaiga_pasauka = Santiago de chile collage.png +| atvaiga_aprakstejums = +| gerba_atvaigs = Coat of arms of Santiago (Chile).svg +| gerba_pasauka = Gerbs +| pluots = 641,4 +| dzeivuotuoji_gods = 2002 +| dzeivuotuoju_skaits = 5 428 590 +| bīzeiba = 8464 +| teiklavīta = www.municipalidaddesantiago.cl +}} + +'''Santjago''' ({{vol-es|Santiago de Chile}}) — [[Čile]]s golvysmīsts i pats leluokais mīsts. + +{{Commonscat|Santiago de Chile|Santjago}} +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Čile]] +[[Kategoreja:Golvysmīsti]] + rm1aux23g2p8wx4xu16lwe9t37t1q8z + + + + Narcise + 0 + 2273 + + 30771 + 30492 + 2015-05-18T12:05:25Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[Fails:Narzisse.jpg|thumb|250px|Mežoguo narcise]] +'''Narcise''' (''Narcissus'') – amariliņu (''Amaryllidaceae'') saimis auguoju ciļts. Pasauka izacāluse nu greku volūdys vuorda ''narkao'' - reibeigs; zīdi tur stypru reibeigu smuordu. Daudzigadeigi seipulauguoji. Kuots gars, bez lopu, ar nazcik pamatlopom. Zīdi gona makani, parostai pa vīnam ci pa nazcik kūpā. Sāklys malnys, opolys ci styurainis. + +Ciļtī ap 50 škiru; aug vysuvaira Vydsjiurys regiona vokoru daļā. [[Latgola|Latgolā]] audzej 3 škirys: boltuos aba ailinīku narcisis, pušku narcisis i dzaltonuos narcisis (''Narcissus pseudonarcissus''). Īvaiseits daudzi škiru izmeju. + +==Pasauka== +Senejūs greku mitologejā stuosteits par cīši skaistu jauniekli, kura vuords beja Narciss. Jis tai sevi mīļuojs, ka apleik nikuo namanejs i vys vierīs iz sova šmukuo vaiga iudiņa atspeidīnī. Partū dīvi jū nūstruopiejuši i puormejuši par puči, kura sovu zīdu pagrīzuse iz suonu tai zamai, kaiba vārdamuos iudiņa spīgelī. + +<gallery> +File:Narcissus pseudonarcissus0.jpg|''Narcissus pseudonarcissus'' +File:Narcissus.poeticus.1658.jpg|Ailinīku narcise (''Narcissus.poeticus'') +File:Narcissus field near Keukenhof.jpg|Narcišu teirums Nīderlaņdejā pi Keukenkofys +File:One daffodil bulb.jpg|Narcišu seipuls +File:Narcisă (Narcissus poeticus) în Poiana Narciselor, județul Brașov.JPG|''Narcissus poeticus +</gallery> +{{Commons|Narcissus|Narcise}} + +[[Kategoreja:Auguoji]] + orql4xhpkhayasmyaaocbuzhpcv0jk1 + + + + Leldīnis + 0 + 2274 + + + 22717 + 2012-05-02T11:32:27Z + + Stiernīts~ltgwiki + 315 + + Stiernīts moved page [[Leldīnis]] to [[Leldīne]]: Volūdys tradiceja: latgaliski "Leldīne" parostai vīnskaitā. Daudziskaita forma labtik jauns aizajāmums nu baļtīšu. + wikitext + text/x-wiki + #REDIRECT [[Leldīne]] + 3q402w2rc242rmd1q6o631byjbc50se + + + + MediaWiki:Sitesupport-url + 8 + 2283 + + 27570 + 25083 + 2013-02-07T01:41:24Z + + Pgehres (WMF) + 1300 + + Updating sidebar link to use subst:CONTENTLANGUAGE + wikitext + text/x-wiki + //donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=C13_ltg.wikipedia.org&uselang=ltg + iijdznx92ip5nwtmf49gpb0sw53qqmg + + + + Taiss:User cs + 10 + 2323 + + 29960 + 29040 + 2013-08-01T07:07:47Z + + Addbot + 1801 + + + [[User:addbot|Bot]]: Migrating interwiki links, now provided by [[d:|Wikidata]] on [[d:q6585150]] + wikitext + text/x-wiki + {{User lang +| lang = cs +| name = Čeku volūda +| level = N +| size = +| info = Tomuto uživateli je '''[[:Category:User cs|čeština]] [[:Category:User cs-N|mateřským jazykem]]'''. +}} + b9gahf0xuv61qbvr9pclkgerm0lig56 + + + + Kategoreja:User cs + 14 + 2324 + + 24334 + 2012-07-28T08:22:36Z + + Kusurija + 205 + + category + wikitext + text/x-wiki + {{Commonscat|User cs}} + +[[Kategoreja:Lītuotuoju volūdys|cs]] + 5fr0dm7p88ljwh3qmbs8xg3cp0g9o3d + + + + Kategoreja:User cs-N + 14 + 2325 + + 24335 + 2012-07-28T08:24:46Z + + Kusurija + 205 + + category + wikitext + text/x-wiki + {{Commonscat|User cs-n}} + +[[Kategoreja:User cs| 1]] + fab3lc0o6fctj8sg3xctv7oqrbyxs40 + + + + Vidmantas Plečkaitis + 0 + 2355 + + 28885 + 25439 + 2013-03-08T13:09:31Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 6 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1429823]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + '''Vidmantas Plečkaitis''' - ({{Vol-lt|Vidmantas Plečkaitis}}; [[1957]] goda [[svacainis mieness|svacainis m]]. 17 d.) — lītaunīku politiks. + +[[Kategoreja:Politiki]] +[[Kategoreja:Lītovys ļauds]] + +{{Nadabeigts rakstīņs}} + iv1l4q1ggxuv7s0dt92jrptx9ou68pn + + + + Kuritiba + 0 + 2366 + + 28886 + 28061 + 2013-03-08T13:09:42Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 244 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4361]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{coord|25|25|0|S|49|15|0|W|display=title}} +[[Fails:Brasão de Armas do Município de Curitiba.png|70px|left]] +[[Fails:'JardimBotanico.BotanicalGarden.CuritibaParanaBrasilBrazil.JPG|thumb| [http://tools.wikimedia.de/~magnus/geo/geohack.php?language=en&params=25_25_47_S_49_16_19_W 25° 25' 47" S 49° 16' 19" O]]] +'''Kuritiba''' (port.: ''Curitiba'' [kuɾi'tibɐ] voi [kuɾi'tʃibɐ]) — mīsts Dīnavydu [[Brazileja]], [[Paraná]] golvysmīsts. Pošā komunā irā 1 800 000 dzeivuotuoju. Juos pluots irā 430.9 km², i dzeivuotuoju bīzeiba — 4 056,721 dzeiv./km². + +== Galereja == + +<gallery> +File:Bus Stops 3 curitiba brasil.jpg|<center> +File:Museu Oscar Niemeyer 2 Curitiba Brasil.jpg|<center> +File:Rua xv curitiba.jpg|<center> +File:Southern Brazil in the Winter.jpg|<center> +File:Universidade Federal do Parana 3 Curitiba Parana.jpg|<center> +File:CasteloDoBatel.Curitiba.Parana.JPG|<center> +File:Ópera de arame - Curitiba.jpg|<center> +File:'palacio.avenida.natal.christmas.curitiba.parana.brasil.jpg| +File:PacoDaLiberdadeCuritiba1.JPG|<center> +File:ParkParqueTanguaCuritiba.jpg|<center> +</gallery> + +== Teiklavītys == +* http://www.curitiba.pr.gov.br +* http://www.curitiba-brazil.com +{{Commons|Curitiba}} + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Brazileja]] +[[Kategoreja:Mīsti]] + 2g6od88qlqlbxe7r0bzagc758o80hev + + + + Ho Chi Minh Mīsts + 0 + 2368 + + 30897 + 29043 + 2015-09-28T06:09:22Z + + CommonsDelinker + 2750 + + Removing "SaigonCollage.jpg", it has been deleted from Commons by [[commons:User:Natuur12|Natuur12]] because: Per [[:c:Commons:Deletion requests/File:Saigonnightskyline.jpg|]]. + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = {{PAGENAME}} +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = +| pluots =2095 +| dzeivuotuoji_gods = 2009 +| dzeivuotuoju_skaits = 7 521 100 +| bīzeiba = 3589 +| teiklavīta = www.hochiminhcity.gov.vn +}} + +'''{{PAGENAME}}''' ({{vol-vi|Thành phố Hồ Chí Minh}}) — [[Vjetnams]]s golvysmīsts i pats leluokais mīsts. + +{{Commonscat|Ho Chi Minh City|Ho Chi Minh City}} +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Vjetnams]] + 4tpi7u63118hio36wwg0eltpyg6l6g4 + + + + Kategoreja:Vjetnams + 14 + 2369 + + 28888 + 25575 + 2013-03-08T13:10:04Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 208 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1456520]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Pasauļa vaļsteibys]] + 13jhlmrcvg1p64jt6x2ikkt8hr8qvx3 + + + + Dong Hoi + 0 + 2370 + + 31837 + 31791 + 2016-12-09T09:38:02Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31791 dated 2016-12-09 08:59:41 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = {{PAGENAME}} +| atvaiga_pasauka = Donghoi2.jpg +| atvaiga_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = +| pluots =154 +| dzeivuotuoji_gods = 2009 +| dzeivuotuoju_skaits = 108 100 +| bīzeiba = 500 +| teiklavīta = www.donghoi.gov.vn +}} + +'''{{PAGENAME}}''' ({{vol-vi|Thành phố Đồng Hới}}) — [[Vjetnams]]s golvysmīsts i pats leluokais mīsts. + +{{Commonscat|Dong Hoi|Dong Hoi}} +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Vjetnams]] + htbrtbq9mzk0o6fglsxzv989lge3ljg + + + + Taiss:Lowercase + 10 + 2374 + + + 25673 + 25671 + 2012-11-11T20:32:23Z + + Vilnisr + 1606 + + Pāradresē uz [[Taiss:Mozais burts]] + wikitext + text/x-wiki + #REDIRECT [[Taiss:mozais burts]] + mtqn2mr3kd27cgmuvgpju2hpzfoj9s9 + + + + Taiss:Mozais burts + 10 + 2375 + + 25705 + 25672 + 2012-11-12T07:06:00Z + + MerlIwBot + 221 + + + robots izņem: [[lv:Vikipedejis uzturēšanas veidnes]] (missing) + wikitext + text/x-wiki + <span>{{DISPLAYTITLE:{{#if:{{NAMESPACE}}|{{NAMESPACE}}:|}}{{lcfirst:{{PAGENAME}}}}}}</span><noinclude> +[[Kategoreja:Vikipedeja:Taisi|{{PAGENAME}}]] + +[[bg:Шаблон:С малка буква]] +[[es:Plantilla:Título minúscula]] +[[en:Template:Lowercase]] +[[fr:Template:Minuscule]] +[[ia:Patrono:Minuscula]] +[[he:תבנית:שם שגוי]] +[[hu:Sablon:Rosszcím]] +[[ja:Template:小文字]] +[[ka:თარგი:lowercase]] +[[nl:Sjabloon:Kleine letter]] +[[no:Mal:Liten forbokstav]] +[[pl:Szablon:małą literą]] +[[ro:Format:iniţialămică]] +[[ru:Шаблон:Заголовок со строчной буквы]] +[[sq:Stampa:Shkronja të vogël]] +[[sl:Predloga:Mala začetnica]] +[[sv:Mall:Liten begynnelsebokstav]] +[[tr:Şablon:küçük harf]] +[[vi:Tiêu bản:lowercase]] +[[zh-yue:Template:細楷]] +</noinclude> + l8aq1hjoxs86czqy2zfqbrx1qreg6sw + + + + Taiss:Lītuotuojs SUL Box + 10 + 2376 + + 30068 + 26490 + 2013-09-08T09:44:39Z + + Otourly + 1665 + + logo change + wikitext + text/x-wiki + {{Userbox +|id = [[Image:Wikimedia logo family complete-2013.svg|50px]] +|id-c = #fff +|info-c = #f6f6f6 +|border-c = #bbb +|border-s = 1 +|info = <span class="plainlinks">[http://toolserver.org/~vvv/sulutil.php?user={{urlencode:{{{username|{{PAGENAME}}}}}}} Itys lītuotuojs]</span> ir iztaisiejs [[:m:Help:Unified login/lv|globalū kontu]]. {{{username|{{PAGENAME}}}}} pamatkonts atrodas:<!-- + -->{{#switch:{{{2|w}}}<!-- + -->|commons=[[:commons:user:{{{username|{{PAGENAME}}}}}|Commons]]<!-- + -->|meta=[[:meta:user:{{{username|{{PAGENAME}}}}}|Meta]]<!-- + -->|w=[[:w:{{{1|lv}}}:User:{{PAGENAME}}| Vikipēdija <font size=1>(Latviešu)</font>]]<!-- + -->|wikt=[[:wikt:{{#if:{{{1|}}}|{{{1}}}:}}user:{{{username|{{PAGENAME}}}}}|Wiktionary {{{{{1|lv}}} icon}}]]<!-- + -->|v=[[:v:{{#if:{{{1|}}}|{{{1}}}:}}user:{{{username|{{PAGENAME}}}}}|Wikiversity {{{{{1|lv}}} icon}}]]<!-- + -->|b=[[:b:{{#if:{{{1|}}}|{{{1}}}:}}user:{{{username|{{PAGENAME}}}}}|Wikibooks {{{{{1|lv}}} icon}}]]<!-- + -->|s=[[:s:{{#if:{{{1|}}}|{{{1}}}:}}user:{{{username|{{PAGENAME}}}}}|Wikisource {{{{{1|lv}}} icon}}]]<!-- + -->|q=[[:q:{{#if:{{{1|}}}|{{{1}}}:}}user:{{{username|{{PAGENAME}}}}}|Wikiquote {{{{{1|lv}}} icon}}]]<!-- + -->|n=[[:n:{{#if:{{{1|}}}|{{{1}}}:}}user:{{{username|{{PAGENAME}}}}}|Wikinews {{{{{1|lv}}} icon}}]]<!-- + -->}}. +}} +<noinclude>[[Kategoreja:Lītuotuoju taisi]]</noinclude> + 495koggzmikhoagc94lbbcvgrj28w5k + + + + Kategoreja:Lītuotuoju taisi + 14 + 2377 + + 25678 + 2012-11-11T20:47:43Z + + Vilnisr + 1606 + + Jauna lapa: [[Kategoreja:Vikipedeja:Taisi:Lītuotuoji]] + wikitext + text/x-wiki + [[Kategoreja:Vikipedeja:Taisi:Lītuotuoji]] + 9j8d7vbbsjfl0tvhdb35ibc6mvfqhss + + + + Taiss:VikiLaiks2 + 10 + 2378 + + 30834 + 30051 + 2015-08-08T12:17:27Z + + YiFeiBot + 2627 + + + Bot: Migrating 3 langlinks, now provided by [[d:|Wikidata]] on [[d:q5626885]] + wikitext + text/x-wiki + <div style="float: right; border: solid #8D40B3 1px; margin: 1px;"> +{| cellspacing="0" style="width: 238px; background: #F0E6F5;" +| style="width: 45px; height: 45px; background: #D9BFE5; text-align:center;" | [[image:Noia 64 apps karm.png|43px]] +|style="font-size: 8pt; padding: 4pt; line-height: 1.25em; color: #000;" | Itys lītuotuojs Vikipedejā ir jau <br /> '''{{Vikipedejis laiks|{{ #ifexpr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 > {{{month|12}}} + | {{ #expr: {{ #expr: ((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0}} - {{{year|2005}}} }} + | {{ #ifexpr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 < {{{month|12}}} + | {{ #expr: {{ #expr: ((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0}} - {{{year|2005}}} - 1 }} + | {{ #ifexpr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 >= {{{day|31}}} + | {{ #expr: {{ #expr: ((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0}} - {{{year|2005}}} }} + | {{ #expr: {{ #expr: ((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0}} - {{{year|2005}}} - 1 }} + }} + }} +}}|{{#ifexpr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 >= {{{day|31}}} + | {{#ifexpr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 - {{{month|31}}} >= 0 + | {{#expr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 - {{{month|12}}} }} + | {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 - {{{month|12}}} + 12 }} + }} + | {{#ifexpr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 - {{{month|31}}} > 0 + | {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 - {{{month|12}}} - 1 }} + | {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 - {{{month|12}}} + 11 }} + }} +}}|{{#ifexpr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 >= {{{day|31}}} | {{ #expr: {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 }} - {{{day|31}}} }} | {{#ifexpr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 5 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 7 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 10 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 12 | {{ #expr: {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 }} - {{{day|31}}} + 30 }} | {{#ifexpr: (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 1 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 2 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 4 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 6 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 8 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 9 or (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0) - (((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0)*100 = 11 | {{ #expr: {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 }} - {{{day|31}}} + 31 }} | {{#ifexpr: ((({{#time: YmdHis}} / 1000000) round 0)) /10000 round 0 mod 4 = 0 | {{ #expr: {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 }} - {{{day|31}}} + 29 }} | {{ #expr: {{ #expr: (((({{#time: YmdHis}} / 1000000) round 0))) - (((({{#time: YmdHis}} / 1000000) round 0)) /100 round 0)*100 }} - {{{day|31}}} + 28 }} }} }} }} }}}}'''. +|} +</div> +<noinclude> +<table class="wikitable"> +<tr> +<th>Kods</th><th>Rezultāts<tr> +<td><nowiki>{{VikiLaiks2|year=2004|month=3|day=10}}</nowiki></td><td>{{VikiLaiks2|year=2004|month=3|day=10}}</td> +</tr> +</table> +[[Kategoreja:Lītuotuoju taisi]] +</noinclude> + f36g0fs8qqp7tgwmin9uiu7xa3wbhi7 + + + + Taiss:Lītuotuojs Wikimedia Commons + 10 + 2379 + + 25687 + 25683 + 2012-11-11T21:09:21Z + + Vilnisr + 1606 + + wikitext + text/x-wiki + {{userbox +| border-c = #bbb +| id = [[file:Commons-logo.svg|38px]] +| id-c = #FFF +| info = Itam lītuotuojam ir [[:commons:User:{{{1|{{BASEPAGENAME}}}}}|lopa]] [[Vikiteka|Vikitekā]]. +| info-c = #f6f6f6 +| info-fc = {{{info-color|#000}}} +| info-s = {{{info-size|8}}} +}}<includeonly>[[Kategoreja:Lītuotuoji Vikitekā]]</includeonly><noinclude> +[[Kategoreja:Lītuotuoju taisi]] +</noinclude> + acri2w9jf7bvqnmtijma3ccwo6yuab1 + + + + Kategoreja:Lītuotuoj Vikitekā + 14 + 2380 + + 31299 + 25686 + 2016-02-06T13:03:34Z + + Edgars2007 + 114 + + + Edgars2007 pārvietoja lapu [[Kategorija:Lītuotuoj Vikitekā]] uz [[Kategoreja:Lītuotuoj Vikitekā]] + wikitext + text/x-wiki + + phoiac9h4m842xq45sp7s6u21eteeq1 + + + + Kategoreja:Lītuotuoji Vikitekā + 14 + 2381 + + 25688 + 2012-11-11T21:09:49Z + + Vilnisr + 1606 + + Jauna lapa: [[Kategoreja:Lītuotuoji]] + wikitext + text/x-wiki + [[Kategoreja:Lītuotuoji]] + 68mk72bca46l8z5r9uh4czw2vb0oi73 + + + + Sarjanka + 0 + 2387 + + + 25722 + 2012-11-12T20:22:23Z + + Stiernīts~ltgwiki + 315 + + Stiernīts moved page [[Sarjanka]] to [[Sarja]]: Latgaliski ''Sarja'' verīs, pīvadumam: M. Andžāns "Reits", Viļāni, 1933, 9-10 psl. + wikitext + text/x-wiki + #REDIRECT [[Sarja]] + + 05ypckxcjyu2e3ykpuo1ifdhs43llny + + + + Plīksnis + 0 + 2388 + + 31567 + 28890 + 2016-08-26T10:37:03Z + + Chenspec + 3458 + + wikitext + text/x-wiki + [[Fails:מוזיאון לתולדות גדרה והבילויים - אתרי מורשת במרכז הארץ 2015 - גדרה (213).JPG|thumb|Plīksnis]] +'''Plīksnis''' (anglīšu: ''(geological) rock, subsurface rock, geological material'', latvīšu: ''iezis'', lītaunīku: ''uoliena'', krīvu: ''горная порода'') - vīnmuka [[Litosfera|litosferys]] daļa, sasadorūša nu vīna tuo poša voi nazcik tūs pošu mineralu (mineralu škiru). Plīkšņus klasificej pa jūs izaceļšonai ([[geneze]]i), mineraliskajam kimiskajam sadoram i pa strukturai (sataisūšūs daleņu teksturai). Pa izaceļšonai plīkšņus padola iz [[magmatiskī plīkšni|magmatiskajim plīkšnim]], [[nūsādplīkšni]]m i [[metamorfiskī plīkšni|metamorfiskajim plīkšnim]]. Ar plīkšņu tiemiešonu aizajam geologejis atzaris [[petrologeja]] i [[petrografeja]], nūsādplīkšņu tiemej i [[litologeja]]. + +== Magmatiskī plīkšni == + +''Golvonais rakstīņs: [[Magmatiskī plīkšni]]''. + +Magmatiskī plīkšni atsarūn nu [[Magma|magmys]] sasadola iz divejom pamatkategorejom: [[intruzivais plīksnis|intruzivī plīkšni]] aba plutoniskī plīkšni, dzilīņplīkšni i [[efuzivais plīksnis|efuzivī plīkšni]] aba vulkaniskī plīkšni. Intruzivī plīkšni ceļās, kod magma izalej pa Zemis viersu, atsaļ i kristalizejās. Efuzivī (vulkaniskī) plīkšni atsarūn tūlaik, kod magma dasnādz Zemes viersu kai [[lava]]. Intruzivī plīkšni kristalizejās lānas, atsoldami godu tyukstūšu i milijonu garumā, aiztuo vulkaniskī plīkšni atsaļ i sacītej par nazcik dīnu ci nedeļu. + +== Nūsādplīkšni == + +''Golvonais rakstīņs: [[Nūsādplīkšni]]''. + +Nūsādplīkšni ceļās, izalikalejūt [[klastiskys|klastiskajom]] [[nūsādys|nūsādom]], organiskajai lītnai voi kimiskajom nūsādom ([[evaporiti]]m). Piec izalikaliešonys dalenis sapluokšt i cemeņtejās — ituo procesa sauc par [[diageneze|diagenezi]]. Nūsādplīkšni pasataisa iz Zemis viersa ci tyvai da jam. + +== Metamorfiskī plīkšni== + +''Golvonais rakstīņs: [[Metamorfiskī plīkšni]]''. + +Metamorfiskī plīkšni atsarūn tūreiz, kod sevkura plīkšņu atmeja (īskaitūt i metamorfiskū plīksni, pasadarejušu jau agruok) teik izškireigūs [[temperatura|temperaturys]] i [[spīdīņs|spīdīņa]] apstuokļūs. Itei temperatura i spīdīņs vysod augstuoki na pi Zemis viersa, i jim vajaga byut gona augstim, kab puormeitu plīksnī asūšūs mineralus par cyta tipa mineralim, a voi cytom tūs pošu mineralu formom. + +Nu plīkšņu sasadora [[Zemis gorūza]] (tymā vydā [[litosfera]] i [[maņteja (geologeja)|maņteja]]). + + + + +[[Kategoreja:Geografeja]] +[[Kategoreja:Geologeja]] + ptsjfiajcbs0amopcs1t5t3pe037nec + + + + Plīkšni + 0 + 2389 + + + 26087 + 2012-12-02T14:27:00Z + + Stiernīts~ltgwiki + 315 + + Stiernīts moved page [[Plīkšni]] to [[Plīksnis]] + wikitext + text/x-wiki + #REDIRECT [[Plīksnis]] + + 0vhbls95x7kd3jsl7hi8t74qv7pmks1 + + + + Drypatys + 0 + 2390 + + 28891 + 27733 + 2013-03-08T13:10:40Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 49 interwiki links, now provided by [[d:|Wikidata]] on [[d:q171957]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Hide and Seek c 1877 James Tissot.jpg|Bārni drypatoj<br> +(Anglejis 19 gs. tapātuoja DžeimsaTiso (''James Tissot'') dorbs)|thumb]] + +'''Drypatys''' aba '''drypatuošona''' (anglīšu: ''hide-and-seek, hide-and-go-seek'', latvīšu: ''paslēpes'', lītaunīku: ''slėpynės'', krīvu: ''прятки'') - kaita, kuramā zynoms skaits kaitātuoju nūsagloboj apleicīnē i gaida, cikom jūs atrass (parostai) vīns ci vaira maklātuoju. Koleņ cyti kaitys dalinīki nūsagloboj, maklātuojs stuov zynomā vītā (pīv., pi stulpa, kūka, styura) i aizagrīzs, nasavārdams daskaita da dasarunuotam skaitļam i tūreiz jau īt maklātu. + +Kod maklātuojs ītiemej vīnu nu nūsaglobuotuoju, jis ap itū paviestej skonā bolsā, i atrostais rauga kai varams mudruok daskrīt da tai vītai, kur maklātuojs skaiteja da dasarunutojam skaitam, pyrma kai guoja maklātu. Itai skrīdami, atrostais i maklātuojs veicās, kurs dreižuok dativēs da tai vītai i dasiss (pīv., pi stulpa, kūka, styura), bolsā saklīgdami: "Drypatā, drypatā!" Ka maklātuojs pyrmais daskrīn i "dasyt drypatā" , to parostai jis vēļ dasoka i atrostuo kaitātuoja vuordu, pīv.: "Drypatā, drypatā, Juoņs!". Ka tys nūsaglobuotuojs, kurū maklātuojs atroda pošu pyrmū, naaizspiej daskrīt i "dasist drypatā" agruok par maklātuoju, tūlaik itys pyrmais atrostais cytā kaitys aiļā (kurei suoksīs tūlaik, kod vysi nūsaglobuojušī byus atrosti) īs par maklātuoju. + +Pa cytam, mozuok zynomam, kaitys variantam, maklātuojs, atrozdams nūsaglobuotuoju, sevkuru reizi saklīdz bolsā: "Drypatā, drypatā", i vysi jau atrostī paleidz maklātuojam meklēt vēļ naatrostūs kaitys dalinīku. + +[[Kategoreja:Kaitys]] +[[Kategoreja:Kaviekli]] + 1h8g515o02lmwzh1paeds64s06mk432 + + + + Palāda + 0 + 2391 + + 31454 + 29022 + 2016-06-05T16:04:00Z + + CommonsDelinker + 2750 + + Replacing Northern_Spotted_Owl.USFWS-thumb.jpg with [[File:Northern_Spotted_Owl.USFWS.jpg]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: [[:commons:COM:FR|File renamed]]: [[:commons:COM:FR#reasons|File renaming criterion #3]]: To correct + wikitext + text/x-wiki + {{Infoskreine Taksonomeja +| pasauka = Palāda + | atvaiga_pasauka = Strix nebulosaRB.jpg +| atvaiga_aprakstejums = +| pasauļs = Dzeivinīki ''(Animalia)'' +| tips = Hordini ''(Chordata)'' +| klase = Putni ''(Aves)'' +| aiļa = Peliedini putni''(Strigiformes)'' +| saime = Peliedini'' (Strigiformes)'' +| giņts = Palādys (eistynuos palādys, ''Strigidae)'' +| ziniskuo_pasauka = Strix}} + +'''Palāda''' ('''palādys''' aba '''eistynuos palādys''', latiņu: ''Strix'') - [[peliedini|peliediņu]] (''Strigiformes'') putnu [[ciļts]], pīdareiga [[palādu dzimte]]i (''Strigidae''). Eistynūs palādu ciļtī myuslaikūs irā 15 dzeivu škiru. + +Eistynūs palādu škirys sateikamys daudzumā koņtinentu: [[Eurazeja|Eurazejā]], [[Afrika|Afrikā]], [[Pūstumamerika|Pūstumamerikā]] i [[Dīnavydamerika|Dīnavydamerika]]. Daudzi škiru dzeivoj plotā arealā iz [[pūstumu pusrutuļs|pūstumu pusrutuļa]]. Aiztuo nazcik škiru, seviški dīnavydūs dzīvojūšūs, irā [[eņdemizmys|eņdemiskys]]. [[Latveja|Latvejā]] sateikamys 3 eistynūs palādu škirys: [[sātys palāda]] (''Strix aluco''), [[Uralu palāda]] (''Strix uralensis'') i [[pūstumu palāda]] (''Strix nebulosa''). Pūstumu palāda Latvejā aizskrīn iz rata.<ref>[http://latvijas.daba.lv/dzivnieki/hordainhi/putni/#v154 Putni (Aves)]</ref> + +== Izavierīņs i soveibys == +Eistynuos palādys vydyska leluma ci leli peliedini putni. Juos strypra i rūna auguma. Vysuleluokuo ciļtī irā [[pūstumu palāda ]], jei var byut net da [[opūgs|opūga]] (''Bubo bubo'') lelumam, muotainis auguma garums var dasnēgt 84 [[cm]].<ref>[http://www.owlpages.com/owls.php?genus=Strix&species=nebulosa Great Gray Owl - Strix nebulosa]</ref> Eistynuos palādys natur spolvu pliekšu pi [[auss|ausu]], kaidys soveigys, pīvadumam, [[opūgi]]m (''Bubo''), partū ituos ciļts kod nakod sauc par '''bezausiņu palādu ciļti'''. Eistynuos palādys izsaceigai naktini putni, dzeivojūši pa [[mežs|mežim]] natuoli da cylvāka sātom. Eistynuo palādys medej skraidīnī i barojās ar cytim [[putni]]m, [[ruopači]]m i mozim [[zeideituoji]]m, vaira vēļ ar [[grauzacs|grauzačim]]. + +== Sistematika == +* ciļts '''Eistynuos palādys''' (''Strix'') +** [[Afrikys meža palāda]] (''Strix woodfordii'') +** [[Bryunuo meža palāda]] (''Strix leptogrammica'') +** [[Čako palāda]] (''Strix chacoensis'') +** [[Hama palāda]] (''Strix butleri'') +** [[Plemuotuo meža palāda]] (''Strix seloputo'') +** [[Sātys palāda]] (''Strix aluco'') +** [[Plemaine palāda]] (''Strix occidentalis'') +** [[Raibuo meža palāda]] (''Strix ocellata'') +** [[Bryunkuojaine palāda]] (''Strix rufipes'') +** [[Bryunstreipaine palāda]] (''Strix hylophila'') +** [[Raudonu palāda]] (''Strix fulvescens'') +** [[Sičuaņa palāda]] (''Strix davidi'')<ref name=gen/> +** [[Streipaine palāda]] (''Strix varia'') +** [[Uralu palāda]] (''Strix uralensis'') +** [[Pūstumu palāda]] (''Strix nebulosa'') + +Kod nakod eistynūs palādu ciļtei daskaita i tropūs dzeivojūšū [[Dīnavydamerikys palādys|Dīnavydamerikys palādu ciļti]] (''Ciccaba'').<ref name=gen>[http://www.owls.org/Species/strix/strix.htm Genus: Strix]</ref> + +== Nūruodis == +<references/> + +== Uorejuos nūruodis == + +* [http://www.thefreedictionary.com/genus+Strix Genus Strix] +* [http://www.owlpages.com/owls.php?genus=Strix Owl Pages: Strix] + +{{Commons|Category:Strix|no=T}} + +<gallery perrow="3"> +Fails:Brown wood owl.jpg|[[Bryunuo meža palāda]] (''Strix leptogrammica'') +Fails:Tawny wiki.jpg| [[Sātys palāda]] (''Strix aluco'') +Fails:Northern Spotted Owl.USFWS.jpg| [[Plemaine palāda]] (''Strix occidentalis'') +Fails:Strix-varia-005.jpg| [[Streipaine palāda]] (''Strix varia'') +Fails:Sowa uralska Strix uralensisPL.jpg| [[Uralu palāda]] (''Strix uralensis'') +Fails:Strix nebulosaRB.jpg| [[Pūstumu palāda]] (''Strix nebulosa'') +</gallery> + + +[[Kategorija:Eistynuos palādys]] + swkbc32lfb7c8moocltrfn2b0isl3n9 + + + + Uraline palāda + 0 + 2392 + + + 26123 + 2012-12-02T16:30:39Z + + Stiernīts~ltgwiki + 315 + + Stiernīts moved page [[Uraline palāda]] to [[Uralu palāda]]: LTG volūdā nu vītuvuordu parostai naatlasynoj ar '-ine' + wikitext + text/x-wiki + #REDIRECT [[Uralu palāda]] + + hw8hsrybylyecwn4i5syvgmeoud6nj2 + + + + Eņdemizmys + 0 + 2393 + + 28893 + 27900 + 2013-03-08T13:11:02Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 59 interwiki links, now provided by [[d:|Wikidata]] on [[d:q123452]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Lacha u0.gif|thumb|250px|[[Latimereja]] aba celakants - paleoendemiska [[plaukstpuru zivs|plaukstpuru zyvu]] škira, dzeivojūša viņ sūpluok [[Komoru jiursolys|Komoru jiursolu]] i [[Madagaskara|Madagaskarys]]]] +'''Eņdemizmys''' (greku: ἔνδημος- ''endēmos''- vītejais) - pasaruodīņs, kod [[auguoji|auguoju]] ci [[dzeivinīki|dzeivinīku]] [[škira]], [[ciļts]] voi [[dzimte]] sateikama viņ aprūbežuotā [[geografiskais apgabaļs|geografiskā apgabalī]] i nasateikama nikur cytur iz [[Zeme|Zemis]] viersa. + +Daudzi eņdemisku škiru var atrast geografiskai ci ekologiskai atškiertūs apvydūs, pīv., jiursoluos, pa kolnim, dziļūs azarūs. Regioni ar augstu eņdemizmu - [[Havaju jiursolys]], [[Madagaskara]], [[Jaunkaledoneja]], [[Australeja]], [[Jaunzelaņdeja]], [[Baikals|Baikala azars]]. Atškir paleoeņdemus - škirys i ciļts, kurūs areali šaurynojās, i neoeņdemus - jaunys škirys, ciļts i tt., kurys vēļ naaizspēja pasaplateit. + +Eņdemizma preteimeiba - [[kosmopolitizmys]], kod škira sateikama gondreiž vysur iz Zemis viersa. + + +[[Kategoreja:Biogeografija]] + 4pw1ao3hiypuyan0ozxqi57v0h05d4e + + + + Skeletons + 0 + 2394 + + 29037 + 26154 + 2013-03-09T15:44:11Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 38 interwiki links, now provided by [[d:|Wikidata]] on [[d:q186190]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Brady_Canfield_skeleton_start_2.jpg|thumb|200px|Starts skeletonā]] +'''Skeletons''' - [[zīma|zīmine]] [[sports|sporta]] atmeja, kuramā cylvāks brauc pa lads trasi ar seviškom napalelom kamaneņom. Itei sporta atmeja aizasuoce [[Sanktmorics|Sanktmoricā]], [[Šveiceja|Šveicejā]]. Vysuaugstuokais skeletona rāda īstots irā [[Vydtautyskuo Bobsleja i tobogana federaceja]] (FIBT). Skeletons [[Olimpiskuos kaitys|Olimpiskajuos kaituos]] beja īslāgts [[1928 gods Zīmys olimpiskuos kaitys|1928]] godā, sasaveicīni skeletonā nūtyka da poš [[1948 gods Zīmys Olimpiskuos kaitys|1948 gods Zīmys olimpiskajom kaitom]], piečuok itū sporta atmeju izjēme nu programys. Tok [[2002 gods Zīmys Olimpiskuos kaitys|2002]] godā skeletons nu jauna beja īslāgts Olimpiskūs kaitu programā. + + +== Uorejuos nūruodis == +* [http://fibt.com/ FIBT teiklavīta] + + + +[[Kategoreja: Olimpiskuos sporta atmejis]] +[[Kategoreja: Sports]] + miyd8rr0lz206pm3bu0w3zmfznrhxa2 + + + + Nūsādplīkšni + 0 + 2395 + + 28894 + 26193 + 2013-03-08T13:11:22Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 63 interwiki links, now provided by [[d:|Wikidata]] on [[d:q82480]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Fails:Triassic Utah.JPG|thumb|250px|Vydyskajā [[triass|triasā]] pasadarejušī [[aleirolits|aleirolita]] (zamoškā) i [[vapnakmiņs|vapnakmiņa]] (viersā) kluoški. [[Juta|Jutys]] pavaļste ([[Amerikas Saškiertuos Vaļsteibys|ASV]]) dīnavydvokori]] +'''Nūsādplīkšni''' - [[plīksnis|plīkšni]], atsaroduši [[nūsiesšona|nūsāstūt]] seņuok pasataisejušu plīkšņu ieršonys produktim ci [[vulkans|vulkaniskūs]] voi [[biologeja|biologiskūs]] procesu materialiem. Nu [[Zemis gorūza|Zemis gorūzys]] kūpeiguo apjāmuma nūsādplīkšnim teik viņ 8%, tok iz [[Zeme|Zemis]] viersa jī vysucīšuok paplateitī i vysucieškuok sateikamī plīkšni. Samārā pluona nūsādplīkšņu kuorta apkluoj [[magmatiskī plīkšni|magmatiskūs]] i [[metamorfiskī plīkšni|metamorfiskūs plīkšņu]] kluoškus, nu kurūs sasadora Zemis gorūzys pamatmasa. + +Nūsādplīkšni ceļās, izalikalejūt [[klastiskys|klastiskajom]] nūsādom, organiskajai [[lītna]]i voi kimiskajom nūsādom (evaporitim). Piec izalikaliešonys dalenis sapluokšt i cemeņtejās — ituo procesa sauc par diagenezi. Nūsādplīkšni pasataisa iz Zemis viersa ci tyvai da jam. + +[[Kategoreja: Geologeja]] +[[Kategoreja: Geografeja]] + 7wiqf4xxr8xp89ltznm8n443o4rccgc + + + + Bezsvors + 0 + 2396 + + 31894 + 29869 + 2017-02-25T06:07:05Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + [[Fails:Weightless hair.jpg|Kosmonaute Marša Aivinsa (''Marsha Ivins'') ruoda garu motu beszvora pīvadumu kosmosa lellaivā STS-98|thumb]] +'''Bezsvors''' (anglīšu ''weightlessness'', latvīšu ''bezsvara stāvoklis'', lītaunīku ''nesvarumas'', krīvu ''невесомость'') – stāte, kuramā [[Fizikals lītyns|lītyns]] natur [[svors|svora]], t.&nbsp;i. [[spāks]], ar kurū atspaids veic lītynu, leidzynojās nullei. Itaida stāte ceļās tūlaik, kod lītyns [[Breivuo krisšona|breivajā krisšonā]], a voi lītyna atspaida [[padreizīņs]] teik vīnaids ar [[breivuos krisšonys padreizīņs|breivuos krisšonys padreizīni]]. Bezsvorā irā sevkurs [[orbita|orbitā]] palaists [[kosmiskais aparats]], kuruo dzeitivi izslāgti (naskaitūt [[Zemis atmosfera|Zemes atmosferys]], [[Saule|Saulis]] [[gaismys spīdīņs|gaismas spīdīņa]] i ct. samārā mozzeimeigu spāku veicis). + +Kod nakod svora gaisšonu jauc ar gravitacejis gaisšonu; irā net sapratīni "nullis gravitaceja" i "mikrogravitacija", tok nu ziniskuo redzīņa itys aptuomeņ. Pīvadumam, var apsavērt [[Vydtautyskuo kosmiskuo staceja|Vydtautyskū kosmiskū staceju]] (VKS), kuruos orbitys augstums apmāram 350 km. Itymā atostumā breivuos krisšonys padreizīņs irā 8,8 m/s², ite viņ par 10% mozuok na pi [[Zeme|Zemis viersa]]. VKS bezsvors ceļās deļ stacejis kusteibys orbitā ar [[pyrmais kosmiskais dreizums|pyrmū kosmiskū dreizumu]]. + +[[Kategoreja:Fizika]] + jjcubkw3msoldxtihdtkinyzblsrnmm + + + + Moravīšu volūda + 0 + 2397 + + 31843 + 31796 + 2016-12-09T09:38:48Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31796 dated 2016-12-09 09:00:19 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Volūda + |name = Moravīšu volūda + |nativename = moravščina + |pronunciation = [morafʃt͡ʃina] + |states = [[Čekeja]] ([[Moraveja]]) + |speakers = 108&nbsp;469<ref name="census" /> + |iso1 = + |iso2 = + |iso2b = + |iso2t = + |iso3 = + |familycolor = Indoeuropīšu + |fam1 = [[Indoeuropīšu volūdys|Indoeuropīšu]] + |fam2 = [[Baltoslavu volūdys|Baltslavu]] + |fam3 = [[Slavu volūdys|Slavu]] + |fam4 = [[Vokoru slavu volūdys|Vokoru slavu]] + |fam5 = [[Čeku-slovaku volūdys|Čeku-slovaku]] + |fam6 = + |script = [[Latiņu alfabets|Latiņu]] + |rank = + |nation = + |agency = + |map = [[Fails:Moravian dialects.png|center|250px|border]] +}} +'''Moravīšu volūda''' (''moravščina'', [[IPA]]: [morafʃt͡ʃina]) — [[slavu volūdys|slavu volūda]], kuru kai dzymtū runoj daļa cylvāku [[Moraveja|Moravejā]], viesturiskā regionā iz vyds [[Europa|Europys]]. Pa izškireigim apskaitim jei irā dzymtuo volūda 108&nbsp;469<ref name="census">[http://vdb.czso.cz/sldbvo/#!stranka=podle-tematu&tu=30629&th=&v=&vo=H4sIAAAAAAAAAFvzloG1uIhBMCuxLFGvtCQzR88jsTjDN7GAlf3WwcNiCReZGZjcGLhy8hNT3BKTS_KLPBk4SzKKUosz8nNSKgrsHRhAgKecA0gKADF3CQNnaLBrUIBjkKNvcSFDHQMDhhqGCqCiYA__cLCiEgZGvxIGdg9_Fz__EMeCEgY2b38XZ89gIIvLxTHEP8wx2NEFJM4ZHOIY5u_t7-MJ1OIP5IdEBkT5OwU5RgH5IUB9fo4ePq4uEPNYw1yDolzhPstJzEvX88wrSU1PLRJ6tGDJ98Z2CyYGRk8G1rLEnNLUiiIGAYQ6v9LcpNSitjVTZbmnPOhmArq34D8QlDDwAG10C_KFWcoe4ugU6uPtWMLA4eni6hcSEAZ0FYe_k3OQmaGJUwUA4lOtR1sBAAA.&vseuzemi=null&void= Obyvatelstvo podle věku, mateřského jazyka a pohlaví]</ref> cylvākim. + +== Nūruodis i olūti == +{{reflist}} + +{{nadabeigts rakstīņs}} + +[[Kategoreja:Slavu volūdys]] + fbbtq3i0amkgifkntui199ng0250haq + + + + Kategoreja:Slavu volūdys + 14 + 2398 + + 29651 + 29643 + 2013-04-07T21:43:50Z + + MerlIwBot + 221 + + + robots izņem: [[ia:Categoria:Linguas slavic]] (deleted) + wikitext + text/x-wiki + [[Kategoreja:Baltslavu volūdys]] + he0d66245ddixzb4dsu4iuwytzhda79 + + + + Moravščina + 0 + 2399 + + + 26204 + 2012-12-05T11:00:07Z + + Magairlin + 443 + + Pāradresē uz [[Moravīšu volūda]] + wikitext + text/x-wiki + #REDIRECT [[Moravīšu volūda]] + qeettacd1kuz3r9eual0y9zfh9kvlpb + + + + Pļaveņu nūvods + 0 + 2404 + + 28895 + 26436 + 2013-03-08T13:11:35Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q865649]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Pļaveņu nūvods +| zemislopa = Pļaviņu novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Pļaviņu novads COA.png +| gerba_pasauka = Pļaveņu nūvoda gerbs +| karūga_atvaigs = Flag of Pļaviņu novads.png +| karūga_pasauka = Pļaveņu nūvoda karūgs +| centrys = Pļavenis +| pluots = 376,8 +| dzeivuotuoju_skaits = 6 294 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 6294 / 376.8 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Aivīkstis pogosts]]<br />[[Klintainis pogosts]]<br />[[Pļavenis|Pļaveņu mīsts]] <br />[[Vītolvys pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.plavinunovads.lv +}} + +'''Pļaveņu nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Vydzeme|Vydzemē]] i pa daļai [[Latgola|Latgolā]] ([[Gūsteni]] i daļa nu [[Aivīkstis pogosts|Aivīkstis pogosta]]), kas sasadora nu [[Pļavenis|Pļaveņu]] mīsta i 3 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Pļaveņu nūvods| ]] + c4n45ff70jerchosjou9up2l77quna3 + + + + Kūknuoja nūvods + 0 + 2405 + + 28896 + 26321 + 2013-03-08T13:11:47Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 9 interwiki links, now provided by [[d:|Wikidata]] on [[d:q865682]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Kūknuoja nūvods +| zemislopa = Kokneses novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Kūknuoja nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = Kūknuoja nūvoda karūgs +| centrys = Kūknuojs +| pluots = 360,6 +| dzeivuotuoju_skaits = 6 036 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 6036 / 360.6 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Babru pogosts]]<br />[[Iršu pogosts]]<br />[[Kūknuoja pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.koknese.lv +}} + +'''Kūknuoja nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Vydzeme|Vydzemē]], kas sasadora nu 3 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Kūknuoja nūvods| ]] + by02rcn5m6uwehpct4dagmoub1zklzd + + + + Aizkraukļa nūvods + 0 + 2406 + + 28897 + 26322 + 2013-03-08T13:11:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 13 interwiki links, now provided by [[d:|Wikidata]] on [[d:q865676]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Aizkraukļa nūvods +| zemislopa = Aizkraukles novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = Aizkraukles novads COA.png +| gerba_pasauka = Aizkraukļa nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = Aizkraukļa nūvoda karūgs +| centrys = Aizkrauklis +| pluots = 102,3 +| dzeivuotuoju_skaits = 9 986 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 9986 / 102.3 round 1}} +| īstateits = 2001 +| teritoriskais_dalejums = [[Aizkrauklis|Aizkraukļa mīsts]] <br />[[Aizkraukļa pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.aizkraukle.lv +}} + +'''Aizkraukļa nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Vydzeme|Vydzemē]], kas sasadora nu [[Aizkrauklis|Aizkraukļa]] mīsta i [[Aizkraukļa pogosts|Aizkraukļa pogosta]]. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Aizkraukļa nūvods| ]] + enfhsddfjehll3pk0f8gz3bdd28clf1 + + + + Akneišys nūvods + 0 + 2407 + + 28898 + 27641 + 2013-03-08T13:12:21Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q865658]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Akneišys nūvods +| zemislopa = Ltn1.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Akneišys nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = Akneišys nūvoda karūgs +| centrys = Akneiša +| pluots = 285 +| dzeivuotuoju_skaits = 3 236 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 3236 / 285 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Akneiša|Akneišys mīsts]]<br />[[Akneišys pogosts]]<br />[[Gārsinis pogosts]] <br />[[Osoris pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.akniste.lv +}} + +'''Akneišys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Sieleja|Sielejā]], kas sasadora nu [[Akneiša|Akneišys]] mīsta i 3 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Akneišys nūvods| ]] + lwdli5gweth1dgerhfj9vzyibfkpf1e + + + + Bruocānu nūvods + 0 + 2408 + + 29330 + 28899 + 2013-03-11T11:02:47Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q865717]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Bruocānu nūvods +| zemislopa = Brocenu novads karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Bruocānu nūvoda gerbs +| karūga_atvaigs = +| karūga_pasauka = Bruocānu nūvoda karūgs +| centrys = Bruocāni +| pluots = 498,5 +| dzeivuotuoju_skaits = 7 068 +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 7068 / 498.5 round 1}} +| īstateits = 2001 +| teritoriskais_dalejums = [[Bruocāni|Bruocānu mīsts]]<br />[[Blīdinis pogosts]]<br />[[Cīceris pogosts]]<br />[[Gaiku pogosts]]<br />[[Remtis pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.broceni.lv +}} + +'''Bruocānu nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Kūrzeme|Kūrzemē]], kas sasadora nu [[Bruocāni|Bruocānu]] mīsta i 4 pogostim. + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Bruocānu nūvods| ]] + scasw9gnc0matu1ywgve65xo6sgloqn + + + + Kategoreja:Datorlingvistika + 14 + 2416 + + 29385 + 26597 + 2013-03-14T05:17:33Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 33 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7211395]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Computational linguistics|Datorlingvistika}} + +[[Kategoreja:Volūdzineiba]] + aljupmkmqg3mm76f7ctuhmho5xd1ro4 + + + + Kategoreja:Lītyskuos zineibys + 14 + 2417 + + 29536 + 26604 + 2013-04-02T18:58:30Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 88 interwiki links, now provided by [[d:|Wikidata]] on [[d:q8917068]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Applied sciences|Lītyskuos zineibys}} + +[[Kategoreja:Zineiba]] + bc2j80jaap3f7mxar0ozjovgr8ufxjg + + + + Sutiņš + 0 + 2418 + + + 26610 + 2012-12-31T01:28:33Z + + Turaids + 172 + + Puoradresiešona. + wikitext + text/x-wiki + #REDIRECT [[Sutnis]] + pb7likibxm4y0ogr2nor9d5xqovty7x + + + + Kategoreja:Folkloristika + 14 + 2419 + + 29644 + 26627 + 2013-04-04T21:25:24Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9705219]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{DEFAULTSORT:Folkloristika}} + +[[Kategoreja:Folklors]] +[[Kategoreja:Socialuos zineibys‎]] + f970sf6o7mfio077ni2szb4igmys88n + + + + Kategoreja:Filologeja + 14 + 2420 + + 29386 + 27608 + 2013-03-14T05:17:38Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 76 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7045521]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Philology|Filologeja}} + +{{DEFAULTSORT:Filologeja}} + +[[Kategoreja:Volūdzineiba]] +[[Kategoreja:Humanitaruos zineibys]] + is90ftdk9jdmx9va2lvflz9bfud4sdp + + + + Kategoreja:Latvejis ļauds + 14 + 2421 + + 29387 + 27902 + 2013-03-14T05:17:39Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 57 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6992987]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commons cat|People of Latvia|Latvejis ļauds}} + +[[Kategoreja:Latveja]] + jgkc9k7p9uzvkdb7eih7vuqa63rowsk + + + + Kategoreja:Pļaveņu nūvods + 14 + 2422 + + 29645 + 26658 + 2013-04-04T21:25:27Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 3 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9716511]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + skm3beoyenh3t63imh09pudk9ui2hkq + + + + Kategoreja:Ruguoju nūvods + 14 + 2423 + + 29646 + 26632 + 2013-04-04T21:25:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9717302]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Latvejis nūvodi]] + skm3beoyenh3t63imh09pudk9ui2hkq + + + + Kategoreja:Brazileja + 14 + 2424 + + 31600 + 28900 + 2016-10-31T00:08:13Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q11279]] + wikitext + text/x-wiki + {{catmore}} +{{Commonscat|Brazil|Brazileja}} + +[[Kategoreja:Pasauļa vaļsteibys]] + 7mohpc4fo42qmovxz0bpmy47uptu7wk + + + + Ubogaine + 0 + 2425 + + + 26635 + 2012-12-31T02:29:48Z + + Turaids + 172 + + Puoradresiešona + wikitext + text/x-wiki + #REDIRECT [[Cureite]] + 6grntg9n3sdv0v67qhvu5mpnluuau13 + + + + Ubagine + 0 + 2426 + + + 26636 + 2012-12-31T02:29:55Z + + Turaids + 172 + + Puoradresiešona. + wikitext + text/x-wiki + #REDIRECT [[Cureite]] + 6grntg9n3sdv0v67qhvu5mpnluuau13 + + + + Kategoreja:Golvysmīsti + 14 + 2427 + + 29676 + 29647 + 2013-04-13T04:42:24Z + + KLBot2 + 1857 + + + Bot: Migrating 5 interwiki links, now provided by [[Wikidata]] on [[:d:Q7214555]] + wikitext + text/x-wiki + {{Commonscat|Capitals|Golvysmīsti}} + +[[Kategoreja:Mīsti]] + 307j9rzl94r6jjwausxdtl50hnbw9um + + + + Kategoreja:Mīsts + 14 + 2428 + + 29026 + 26638 + 2013-03-09T10:17:13Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 18 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6581398]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Dzeivojamuos vītys]] + edk1koijumq4bfl3emupweul7qnfx3s + + + + Kategoreja:Kaitys + 14 + 2429 + + 28901 + 26925 + 2013-03-08T13:12:58Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 99 interwiki links, now provided by [[d:|Wikidata]] on [[d:q4477074]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Games|Kaitys}} + +[[Kategoreja:Atpyuta]] +[[Kategoreja:Kaviekli]] + 72b2v11jo6dubefddgom1hbfawww7lx + + + + Cjupka + 0 + 2430 + + + 26656 + 2013-01-01T06:40:51Z + + Turaids + 172 + + Puoradresiešona. + wikitext + text/x-wiki + #REDIRECT [[Dzjupka]] + t4p3defism0ogqefu8bwwp64rhmuk4j + + + + Kategoreja:Geologeja + 14 + 2434 + + 28902 + 27665 + 2013-03-08T13:13:09Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 135 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2945841]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Geology|Geologeja}} + +[[Kategoreja:Zemiszineibys]] + aupghdl3hp6hmx153gpxow1qn7y9ixa + + + + Kategoreja:Zemiszineibys + 14 + 2435 + + 28903 + 27019 + 2013-03-08T13:13:19Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 91 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1457551]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Earth sciences|Zemiszineibys}} + +[[Kategoreja:Dobyszineibys]] + 8oas48g76vn2cn78ijgnu8qav5x5zzs + + + + Kategoreja:Ekologeja + 14 + 2436 + + 29849 + 27022 + 2013-04-17T14:54:43Z + + Bluemask + 1889 + + wikidata [[d:Q1970530]] + wikitext + text/x-wiki + {{Commonscat|Ecology|Ekologeja}} + +[[Kategoreja:Biologeja]] + f8molgwjx2t6idp5tnrqpfw2bss0cve + + + + Kategoreja:Aviaceja + 14 + 2437 + + 28904 + 27490 + 2013-03-08T13:20:18Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 78 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5641269]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{catmain}} + +[[Kategoreja:Tehnika]] +[[Kategoreja:Transports]] + rff2rf2fqchdchfpdvixguhqe0hhv12 + + + + Eisynuojumi + 0 + 2438 + + + 27031 + 2013-01-21T23:31:10Z + + Turaids + 172 + + Geimeris pārvietoja lapu [[Eisynuojumi]] uz [[Eisynuojumu saroksts]] + wikitext + text/x-wiki + #REDIRECT [[Eisynuojumu saroksts]] + ena0t0ricley9y9h81irikmu6kn8aqq + + + + Kategoreja:Bizness + 14 + 2439 + + 28905 + 28088 + 2013-03-08T13:20:29Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 73 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6353120]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Business|Bizness}} + +[[Kategoreja:Ļaudeiba]] +[[Kategoreja:Tiergdareiba]] + l7mqum6xt928d6cpqnooeaauvy77nrl + + + + Kategoreja:Tiergdareiba + 14 + 2440 + + 29351 + 27035 + 2013-03-13T02:28:55Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 63 interwiki links, now provided by [[d:|Wikidata]] on [[d:q7012234]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Commonscat|Marketing|Tiergdareiba}} + +[[Kategoreja:Ekonomika]] +[[Kategoreja:Ļaudeiba]] + 0youyaoq0hpymfjrty0n23hjaxiy8e3 + + + + Kategoreja:Kaunatys pogosts + 14 + 2441 + + 29550 + 27044 + 2013-04-03T22:18:44Z + + Addbot + 1801 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q9580460]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + [[Kategoreja:Rēznis nūvods]] + j0svfxpq2t603baeq3mw4zococ5kgs0 + + + + Kategoreja:Sātparāds + 14 + 2442 + + 29335 + 29052 + 2013-03-11T11:03:02Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q6646418]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Catmain|Sātparāds}} + +[[Kategoreja:Personeigā dzeive]] + 3doqliauknzpxrv4z62e7nkakxuanpj + + + + Vikipedeja:Krīvu - latgaļu vuordineica / Русско - латгальский словарь + 4 + 2443 + + 29658 + 29537 + 2013-04-08T18:10:51Z + + PiRSquared17 + 913 + + -delete + wikitext + text/x-wiki + [[Kategoreja:Volūda| ]] +[[Kategoreja:Volūdys| ]] +[[Kategoreja:Latgaļu volūda| ]] +[[Kategoreja:Krīvu volūda| ]] + +== '''A''' == + +{| +|-- +|valign="top"| |||| +=== AA === +|-- +|valign="top"|'''a''' <font color=gray>[а]</font>||||'''a''' <font color=gray>[a]</font> +|-- +|valign="top"|'''а вот''' <font color=gray>[а во́т]</font></font>||||'''vei''' <font color=gray>[vèi]</font>; '''šakur''' <font color=gray>[•šakùr]</font>; '''ot''' <font color=gray>[ot]</font> +|-- +|valign="top"|'''а вот и нет!''' <font color=gray>[а вот и не́т]</font>||||'''ani'''! <font color=gray>[a•ni]</font> '''ni'''! <font color=gray>[ni]</font> '''nicik nā'''! <font color=gray>[ni•cik •n`ā]</font> +|-- +|valign="top"|'''а вот и он!''' <font color=gray>[а вот и о́н]</font>||||'''šakur jis'''! <font color=gray>[•šakùr •jis]</font> +|-- +|valign="top"|'''а именно''' <font color=gray>[а и́менно]</font>||||'''taišni''' <font color=gray>[•tàišn’i]</font>; '''i taišni''' <font color=gray>[i •tàišn’i]</font>; '''a taišni''' <font color=gray>[a •tàišn’i]</font> +|-- +|valign="top"|'''а между тем''' <font color=gray>[а ме́жду те́м]</font>||||'''1.''' ''(несмотря на это)'' '''kai na byutu''' <font color=gray>[•kaî na •byûtu]</font>; '''kai tī na byutu''' <font color=gray>[•kaî t^ī na •byûtu]</font>; '''vys tik''' <font color=gray>[•vys tik]</font>; '''a vys tik''' <font color=gray>[a •vys tik]</font>; '''a vys''' <font color=gray>[a •vys]</font>; '''a vysleidza''' <font color=gray>[a vys•lèidza]</font>;<br>'''2.''' ''(тем временем)'' '''tymā vydā''' <font color=gray>[•tym^ā •vyd^ā]</font>; '''tymā laikā''' <font color=gray>[•tym^ā •làik^ā]</font>; '''tikom''' <font color=gray>[•tikòm]</font> +|-- +|valign="top"|'''а-ля''' <font color=gray>[а-ля́]</font>||||'''kaiba''' <font color=gray>[•kaîba]</font> +|-- +|valign="top"|'''а не то''' <font color=gray>[а не то́]</font>||||'''a nā''' <font color=gray>[a •n`ā]</font> +|-- +|valign="top"|'''а также''' <font color=gray>[а та́кже]</font>||||'''taipoš''' <font color=gray>[taî•poš]</font>; '''taipat''' <font color=gray>[taî•pat’]</font> +|-- +|valign="top"|'''а то''' <font color=gray>[а то́]</font>||||'''a nā''' <font color=gray>[a •n`ā]</font> +|-- +|valign="top"|'''аазы'''&nbsp;<font color=gray>[аа́зы]</font>&nbsp;''мифол.,&nbsp;мн.&nbsp;ч.||||'''āsi''' <font color=gray>[•`āsi]</font> +|-- +|valign="top"|'''аароновец'''&nbsp;<font color=gray>[ааро́новец]</font>&nbsp;''муж. и жен. р.,&nbsp;рел.,&nbsp;ист.||||'''aronī/ts''' ''муж. р.'', '''-te''' ''жен. р.''<font color=gray>[•aron`ī/c’, -t’ä]</font> +|-- +|valign="top"|'''аароновск/ий, -ая, -ое'''&nbsp;<font color=gray>[ааро́новск/ий, -ая, -ое]</font>&nbsp;''муж. и жен. р.,&nbsp;рел.,&nbsp;ист.||||'''aronīšu-''' <font color=gray>[•aron`īšu-]</font> +|-- +|valign="top"|'''аароновщина'''&nbsp;<font color=gray>[ааро́новщина]</font>&nbsp;рел.,&nbsp;ист.||||'''aronīšu kūpeiba''' <font color=gray>[•aron`īšu •k`ūpeîba]</font>; '''aronīšu tecīņs''' <font color=gray>[•aron`īšu •tec`īn'c']</font> + +=== AБ === +|-- +|valign="top"|'''абажур''' <font color=gray>[абажу́р]</font> ||||'''ļampysvierss''' <font color=gray>[•ļàmpysvìerss]</font>; '''abažurs''' <font color=gray>[•abažùrs]</font> +|-- +|valign="top"|'''абажурн/ый, -ая, -ое''' <font color=gray>[абажу́рн/ый, -ая, -ое]</font> +||||'''ļampysviersa-''' <font color=gray>[•ļàmpysvìersa-]</font>; '''abažura''' <font color=gray>[•abažura-]</font>; '''abažurei/gs, -ga''' <font color=gray>[•abažureî/ks, -ga]</font> +|-- +|valign="top"|'''абаз''' <font color=gray>[аба́з]</font>, '''абази''' <font color=gray>[аба́зи]</font> ''(монета)''||||'''abazs''' <font color=gray>[•abass]</font> (''род. п.'' abaza, ''вин. п.'' abazu) +|-- +|valign="top"|'''абак''' <font color=gray>[аба́к]</font>||||'''1.''' ''архит.'' '''abaks''' <font color=gray>[•abaks]</font>;<br>'''2.''' ''мат., ист.'' '''abaks''' <font color=gray>[•abaks]</font> ''ед. и мн. ч.''; '''skaitekli''' <font color=gray>[•skàitek’l’i]</font> ''мн. ч.'' +|-- +|valign="top"|'''Абакан''' <font color=gray>[Абака́н]</font> ''геогр.'' ||||'''Abakans''' <font color=gray>[•Abakànc]</font> +|-- +|valign="top"|'''абалаковский&nbsp;рюкзак'''&nbsp;<font color=gray>[абала́ковский&nbsp;рюкза́к]</font>&nbsp; ||||'''sadlumugarne''' <font color=gray>[•sadlumugàrn’ä]</font> +|-- +|valign="top"|'''абандон'''&nbsp;<font color=gray>[абандо́н]</font>&nbsp;''юр.,&nbsp;экон.'' ||||'''atsasacejums''' <font color=gray>[•acasacejùms]</font>; '''atsasaceišona''' <font color=gray>[•acasaceîšona]</font> +|-- +|valign="top"|'''абандонировать''' <font color=gray>[абандони́ровать]</font>||||'''atsasaceit''' <font color=gray>[•acasaceît’]</font> ''(kuo; nu kuo)''; '''nūsalaist''' <font color=gray>[•n`ūsalaîśt’]</font> ''(kam deļ kuo)'' +|-- +|valign="top"|'''аббат, аббатиса''' <font color=gray>[абба́т, аббати́са]</font> ''церк.'' ||||'''opa/ts, -te''' <font color=gray>[•opa/c, -t’ä]</font> +|-- +|valign="top"|'''аббатство''' <font color=gray>[абба́тство]</font> ''церк.'' ||||'''opateja''' <font color=gray>[•opateja]</font> +|-- +|valign="top"|'''аббревиатура''' <font color=gray>[аббревиату́ра]</font>||||'''eisynuojums''' <font color=gray>[•eîsynùojùms]</font>; '''abreviatura''' <font color=gray>[•abrevijatura]</font> +|-- +|valign="top"|'''аберрация''' <font color=gray>[аберра́ция]</font>||||'''atveļce''' <font color=gray>[•atvèl’c’ä]</font>; '''aberaceja''' <font color=gray>[•aberaceja]</font> +|-- +|valign="top"|'''аберрация поверхности'''&nbsp;<font color=gray>[аберра́ция пове́рхности]</font>&nbsp; ||||'''viersa atvèļce''' <font color=gray>[•vìersa •atvel’c’ä]</font>; '''viersa aberaceja''' <font color=gray>[•vìersa •aberaceja]</font> +|-- +|valign="top"|'''абессив''' <font color=gray>[абесси́в]</font> ''грам.'' ||||'''abesivs''' <font color=gray>[•abesi<u>u</u>s]</font>; '''atjāmuojs''' <font color=gray>[•atj`āmùo<u>i</u>ś]</font> ''(lūcejums)'' +|-- +|valign="top"|'''абзац''' <font color=gray>[абза́ц]</font> ||||'''aiļkūpa''' <font color=gray>[•àil’k`ūpa]</font>; ''(абзацный отступ)'' '''atveļce''' <font color=gray>[•atvèl’c’ä]</font> +|-- +|valign="top"|'''абиссин/ец, -ка''' <font color=gray>[абисси́н/ец, -ка]</font> ||||'''abesinī/ts, -te''' <font color=gray>[•abesin`ī/c’, -t’ä]</font> +|-- +|valign="top"|'''абиссинск/ий, -ая''' <font color=gray>[абисси́нский]</font> ||||'''abesinisk/ys, -a''' <font color=gray>[•abesinisk/ys, -a]</font>; '''abesinīšu-''' <font color=gray>[•abesin`īšu-]</font>; '''Abesinejis-''' <font color=gray>[•Abesinejiś-]</font> +|-- +|valign="top"|'''абитуриент, -ка''' <font color=gray>[абитурие́нт, -ка]</font> ||||'''abiturients, -eņte''' <font color=gray>[•abiturij-ènc, -èn’t’ä]</font>; '''dabeidzn/īks, -eica''' <font color=gray>[•dabèidzn/`īks, -eîca]</font> +|-- +|valign="top"|'''аблатив''' <font color=gray>[аблати́в]</font> ''грам.'' ||||'''ablativs''' <font color=gray>[•ablati<u>u</u>s]</font>; '''atškeiriejs''' <font color=gray>[•atškèirìe<u>i</u>ś]</font>'' (lūcejums)'' +|-- +|valign="top"|'''абонемент''' <font color=gray>[абонеме́нт]</font> ''в разн. знач.'' ||||'''abonements''' <font color=gray>[•abonemènc]</font> +|-- +|valign="top"|'''абонемент на год''' <font color=gray>[абонеме́нт на го́д]</font>||||'''gods abonements''' <font color=gray>[•goc •abonemènc]</font>; '''godsbelets''' <font color=gray>[•godzbelec]</font>; +|-- +|valign="top"|'''абонементный билет''' <font color=gray>[абонеме́нтный биле́т]</font> ||||'''daudzireizeigais belets;''' <font color=gray>[•dàudzirèizeîgàis •belec]</font>; ''(на месяц)'' '''mienešbelets;''' <font color=gray>[•mìenežbelec]</font>; ''(на год)'' '''godsbelets''' <font color=gray>[•godzbelec]</font> +|-- +|valign="top"|'''абонементный&nbsp;почтовый&nbsp;ящик'''&nbsp;<font color=gray>[абонеме́нтный&nbsp;почто́вый&nbsp;я́щик]</font>&nbsp;||||'''posta skreineite''' <font color=gray>[•posta •skrèineît’ä]</font> ''(posta kanturī)'' +|-- +|valign="top"|'''абонементный&nbsp;проездной&nbsp;билет'''&nbsp;<font color=gray>[абонеме́нтный&nbsp;проездно́й&nbsp;биле́т]</font>&nbsp;||||'''daudzireizeigais belets''' <font color=gray>[•dàudzirèizeîgàis •belec]</font> ''(braukšonai)''; '''daudzireizeigais braukšonys belets;''' <font color=gray>[•dàudzirèizeîgàis •bràukšonys •belec]</font>; ''(на месяц)'' '''mienešbelets;''' <font color=gray>[•mìenežbelec]</font>; ''(на год)'' '''godsbelets''' <font color=gray>[•godzbelec]</font> +|-- +|valign="top"|'''абонементный&nbsp;ящик'''&nbsp;<font color=gray>[абонеме́нтный&nbsp;я́щик]</font>&nbsp;||||'''posta skreineite''' <font color=gray>[•posta •skrèineît’ä]</font> ''(posta kanturī)'' +|-- +|valign="top"|'''абонент, -ка''' <font color=gray>[абоне́нт, -ка]</font>||||'''abone/nts, -ņte''' <font color=gray>[•abon/ènc, èn’t’ä]</font>; '''aizsaceituo/js, -ja''' <font color=gray>[•àissaceîtùo/<u>i</u>ś, -ja]</font> +|-- +|valign="top"|'''абонентский&nbsp;почтовый&nbsp;ящик'''&nbsp;<font color=gray>[абоне́нтский&nbsp;почто́вый&nbsp;я́щик]</font>&nbsp;||||'''posta skreineite''' <font color=gray>[•posta •skrèineît’ä]</font> ''(posta kanturī)'' +|-- +|valign="top"|'''абонировать''' <font color=gray>[абони́ровать]</font>||||'''abonēt''' <font color=gray>[•abon’`äät’]</font>; '''aizsaceit''' <font color=gray>[•àissaceît’]</font> +|-- +|valign="top"|'''абонировать места''' <font color=gray>[абони́ровать места́]</font>||||'''aizsaceit vītys''' <font color=gray>[•àissaceît’ •v`ītys]</font> +|-- +|valign="top"|'''абордаж''' <font color=gray>[аборда́ж]</font>||||'''abordažs''' <font color=gray>[•abòrdašš]</font> +|-- +|valign="top"|'''абордажный крюк''' <font color=gray>[аборда́жный крю́к]</font>||||'''abordaža kabs''' <font color=gray>[•abòrdaža •kap’ś]</font> (''род. п.'' abordaža kaba, ''вин. п.'' abordaža kabi) +|-- +|valign="top"|'''абориген, -ка''' <font color=gray>[абориге́н, -ка]</font>||||'''aborige/ns, -nīte''' <font color=gray>[•aborigè/nc, -n’īt’ä]</font>; '''pyrmdzeivuotuoj/s, -a''' <font color=gray>[•p`yrmdzeîvuôtùo/<u>i</u>ś, -ja]</font>; +|-- +|valign="top"|'''аборт''' ''мед.'' <font color=gray>[або́рт]</font>||||'''aborts''' <font color=gray>[•abòrc]</font> +|-- +|valign="top"|'''абортивное средство''' <font color=gray>[аборти́вное сре́дство]</font> ''мед.'' ||||'''aborta leidzieklis''' <font color=gray>[•abòrta •l’èidzìekl’iś]</font> +|-- +|valign="top"|'''абразив''' <font color=gray>[абрази́в]</font>||||'''abrazivs''' <font color=gray>[•abrazi<u>u</u>s]</font>; '''šlipavuošonys materials''' <font color=gray>[•šl’ipavuôšonys •mat’er’ijàls]</font> +|-- +|valign="top"|'''абразивн/ый, -aя''' <font color=gray>[абрази́вн/ый, -aя]</font>||||'''abrazivisk/ys, -a''' <font color=gray>[•abraz’iv’isk/ys, -a]</font>; '''šlipavei/gs, -ga''' <font color=gray>[•šl’ipav’eî/ks, -ga]</font>; +|-- +|valign="top"|'''абразивные материалы''' <font color=gray>[абрази́вные материа́лы]</font>||||'''abrazivi''' <font color=gray>[•abraz’iv’i]</font>; '''abraziviskī materiali''' <font color=gray>[•abraz’iv’iśk’ī •mat’er’ijal’i]</font>; '''šlipavuošonys materiali''' <font color=gray>[•šl’ipavuôšonys •mat’er’ijal’i]</font> +|-- +|valign="top"|'''абразивный карандаш''' <font color=gray>[абрази́вный каранда́ш]</font> ||||'''abraziviskais zeimuļs''' <font color=gray>[•abraz’iv’iskàis •źèimùl’ś]</font>; +|-- +|valign="top"|'''абразия''' <font color=gray>[абра́зия]</font> ''геол.'' ||||'''abrazeja''' +|-- +|valign="top"|'''абракадабра''' <font color=gray>[абракада́бра]</font>||||'''abrakadabra''' +|-- +|valign="top"|'''абрикос''' <font color=gray>[абрико́с]</font>||||'''abrikoss''' +|-- +|valign="top"|'''абрикосовая косточка''' <font color=gray>[абрико́совaя ко́сточка]</font>||||'''abrikosa kauleņš''' +|-- +|valign="top"|'''абрикосовое дерево''' <font color=gray>[абрико́совое де́рево]</font>||||'''abrikosu kūks''' +|-- +|valign="top"|'''абрикосов/ый, -aя''' <font color=gray>[абрико́сов/ый, -aя]</font>||||'''abrikosu-''' +|-- +|valign="top"|'''абрис''' <font color=gray>[а́брис]</font>||||'''konturzeimiejums; uorslineju zeimiejums''' +|-- +|valign="top"|'''абсент''' <font color=gray>[абсе́нт]</font> ||||'''absents; pelieju apliejums''' +|-- +|valign="top"|'''абсолют''' <font color=gray>[абсолю́т]</font> ''филос.'' ||||'''absoļuts; nanūstateiba''' +|-- +|valign="top"|'''абсолютизм''' ''полит.'' <font color=gray>[абсолюти́зм]</font>||||'''absoļutizmys; pylnvaļdeiba''' +|-- +|valign="top"|'''абсолютизм власти''' <font color=gray>[абсолюти́зм вла́сти]</font>||||'''pylnvaļdeiba; vaļdis absoļutizmys''' +|-- +|valign="top"|'''абсолютист, -ка''' <font color=gray>[абсолюти́ст, -ка]</font>||||'''absoļutist/s, -e; absoļutizma saksteituoj/s, -a''' +|-- +|valign="top"|'''абсолютная власть''' <font color=gray>[абсолю́тная вла́сть]</font>||||'''pylnvaļdeiba''' +|-- +|valign="top"|'''абсолютная истина''' <font color=gray>[абсолю́тная и́стина]</font>||||'''viškinejuo taisneiba''' +|-- +|valign="top"|'''абсолютно''' <font color=gray>[абсолю́тно]</font>||||'''viškiņ; vysā; absoļutai''' +|-- +|valign="top"|'''абсолютно все''' <font color=gray>[абсолю́тно все́]</font>||||'''viškiņ vysi''' +|-- +|valign="top"|'''абсолютно всё''' <font color=gray>[абсолю́тно все́]</font>||||'''viškiņ vyss''' +|-- +|valign="top"|'''абсолютность''' <font color=gray>[абсолю́тность]</font>||||'''absoļutums; viškineiba''' +|-- +|valign="top"|'''абсолютный слух''' <font color=gray>[абсолю́тный слу́х]</font>||||'''absoļutuo dzierdeiba''' +|-- +|valign="top"|'''абсорбировать''' <font color=gray>[абсорби́роват]</font>||||'''absorbēt; sasyukt''' +|-- +|valign="top"|'''абсорбироваться''' <font color=gray>[абсорби́роваться]</font>||||'''absorbētīs; sasadzert''' +|-- +|valign="top"|'''абсорбирующая жидкость''' <font color=gray>[абсорби́рующая жи́дкость]</font>||||'''sasyuceigs škeistums''' +|-- +|valign="top"|'''абсорбирующ/ый, -aя''' <font color=gray>[абсорби́рующ/ый, -aя]</font>||||'''sasyuceig/s, -a; absorbeig/s, -a''' +|-- +|valign="top"|'''абсорбционная&nbsp;способность'''&nbsp;<font color=gray>[абсорбцио́нннная&nbsp;спосо́бность]</font>&nbsp;''физ.,&nbsp;хим.'' ||||'''sasyuceigums; absorbeigums''' +|-- +|valign="top"|'''абсорбция''' <font color=gray>[абсо́рбция]</font>||||'''sasyukšona; absorbceja''' +|-- +|valign="top"|'''абстрагирование''' <font color=gray>[абстраги́рование]</font>||||'''abstrahiešonuos; atsaškieršona; atsaškeirums; atsaškeirīņs''' +|-- +|valign="top"|'''абстрагировать''' <font color=gray>[абстраги́ровать]</font>||||'''abstrahēt; atškiert; vyscaureiguot''' +|} + +== Verīs taipoš == +* [[Anglīšu - latgaļu vuordineica / English - Latgalian Dictionary]] +* [[Lītaunīku - latgaļu vuordineica / Lietuvių - latgalių kalbų žodynas]] + +== Nūruodis == +* [http://www.vuordineica.lv/ Latvīšu - latgaļu vuordineica / Latviešu - latgaliešu vārdnīca] + gjdh22e6trg1idz3sxhg2ns4tdfnvhm + + + + Vikipedeja:Anglīšu - latgaļu vuordineica / English - Latgalian Dictionary + 4 + 2444 + + 29656 + 29654 + 2013-04-08T18:10:17Z + + PiRSquared17 + 913 + + -delete + wikitext + text/x-wiki + [[Kategoreja:Volūda| ]] +[[Kategoreja:Volūdys| ]] +[[Kategoreja:Latgaļu volūda| ]] +[[Kategoreja:Anglīšu volūda| ]] + + +== A == +{| +|-- +|'''a'''||||''(most often not translated / latgaliskai vysucieškuok napuorvierš)''''';''' ''(one)'' '''vīn/s, -a;''' ''(some)'' '''kaid/s, -a''' +|-- +|'''a. k. a.||||'''aba''' +|-- +| valign="top" |'''A level''' ''n''||||'''1.''' ''(e. g. of complexity)'' '''A leidzīņs; pyrmais leidzīņs''';<br>'''2.''' ''(floor)'' '''A stuovs''';<br> '''3.''' ''(exam)'' '''vydsškolys ekzamens''' +|-- +| valign="top"|'''abacus''' ''n'' ||||'''1.''' ''archit'' '''abaks''';<br>'''2.''' ''math, hist'' '''abaks''' ''sg and pl''; '''skaitekli''' ''pl'' +|-- +|'''abandon'''&nbsp;''n;&nbsp;law,&nbsp;econ''&nbsp;&nbsp;||||'''atsasacejums; atsasaceišona''' +|-- +|'''abandonedly''' ''adv'' ||||'''navaļdeigai; nasatureigai''' +|-- +| valign="top"|'''abase''' ''v'' ||||'''1.''' ''(humiliate, degrade)'' '''zamynuot; pazamynuot''';<br>'''2.''' ''(lower, put down)'' '''nūlaist''';<br>'''3.''' ''med'' '''nūsalaist; nūkrist''' +|-- +| valign="top"|'''abasement''' ''n'' ||||'''1.''' ''(humiliation, degradation)'' '''zamynuošona; zamynuojums; pazamynuošona; pazamynuojums''';<br>'''2.''' ''(lowering, putting down)'' '''nūlaisšona, nūlaidums, nūlaidīņs''';<br>'''3.''' ''med'' '''nūsalaisšona; nūkrisšona''' +|} + +== Verīs taipoš == +* [[Lītaunīku - latgaļu vuordineica / Lietuvių - latgalių kalbų žodynas]] +* [[Krīvu - latgaļu vuordineica / Русско - латгальский словарь]] + +== Nūruodis == +* [http://www.vuordineica.lv/ Latvīšu - latgaļu vuordineica / Latviešu - latgaliešu vārdnīca] + 91ohxgpi1dvh5r61rh7v2m2lfownmnl + + + + Vikipedeja:Lītaunīku - latgaļu vuordineica / Lietuvių - latgalių kalbų žodynas + 4 + 2445 + + 29968 + 29967 + 2013-08-09T06:11:38Z + + Stiernīts~ltgwiki + 315 + + Atcēlu [[Special:Contributions/Draugs2|Draugs2]] ([[User talk:Draugs2|Diskusija]]) izdarīto izmaiņu 29967 + wikitext + text/x-wiki + [[Kategoreja:Volūda| ]] +[[Kategoreja:Volūdys| ]] +[[Kategoreja:Latgaļu volūda| ]] +[[Kategoreja:Lītaunīku volūda| ]] +[[Kategoreja:Baltu volūdys]] + +== '''A''' == +{| +|-- +|valign="top"| |||| +=== AA === +|-- +|valign="top"|'''<font color=darkblue>a</font>''' <font color=gray><tt><small>[a]</tt></small></font>||||'''<font color=blue>a</font>''' <font color=gray><tt><small>[a]</tt></small></font> +|-- +|valign="top"|'''<font color=darkblue>a!</font>''' <font color=gray><tt><small>[à]</tt></small></font> '''<font color=darkblue>a!</font>''' <font color=gray><tt><small>[ã]</tt></small></font> <small>''jst.''</small> ||||'''<font color=blue>a!</font>''' <font color=gray><tt><small>[a]</tt></small></font> '''<font color=blue>ai!</font>''' <font color=gray><tt><small>[ài]</tt></small></font> '''<font color=blue>oi!</font>''' <font color=gray><tt><small>[òi]</tt></small></font> + +=== AB === +|-- +|valign="top"|'''<font color=darkblue>Abakanas</font>''' <font color=gray><tt><small>[Aba<font color=black>'''kã'''</font>nas]</tt></small></font> <small>''geogr.''</small>||||'''<font color=blue>Abakans</font>''' <font color=gray><tt><small>[<font color=black>'''A'''</font>bakànc]</tt></tt></small></font> +|-- +|valign="top"|'''<font color=darkblue>abakas</font>''' <font color=gray><tt><small>[a<font color=black>'''bã'''</font>kas]</tt></small></font>||||'''1.''' <small>''archit.''</small> '''<font color=blue>abaks</font>''' <font color=gray><tt><small>[<font color=black>'''a'''</font>baks]</tt></small></font>, <small>''dem.''</small> <font color=darkblue><small>abaceņš</small></font> <font color=gray><tt><small>[<font color=black>'''a'''</font>baćèńč]</tt></small></font>;<br>'''2.''' <small>''mat., ist.''</small> '''<font color=blue>abaks</font>''' <font color=gray><tt><small>[<font color=black>'''a'''</font>baks]</tt></small></font>, <small>''dem.''</small> <font color=darkblue><small>abaceņš</small></font>, <font color=gray><tt><small>[<font color=black>'''a'''</font>baćèńč]</tt></small></font>; '''<font color=blue>skaitekli</font>''' <font color=gray><tt><small>[<font color=black>'''skài'''</font>t′ek′l′i]</tt></small></font>, <small>''dem.''</small> <font color=darkblue><small>skaitekleiši</small> </font> <font color=gray><tt><small>[<font color=black>'''skài'''</font>t′ek′l′eîšy]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abandonas'''</font>&nbsp;<font color=gray><tt><small>[aban<font color=black>'''dò'''</font>nas]</tt></small></font>&nbsp;<small>''teis.,&nbsp;ekon.''</small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;||||<font color=blue>'''atsasacejums'''</font> <font color=gray><tt><small>[<font color=black>'''a'''</font>casaćejùms]</tt></small></font>; <font color=blue>'''atsasaceišona'''</font> <font color=gray><tt><small>[<font color=black>'''a'''</font>casaćeîšona]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abat/as, -ė'''</font> <font color=gray><tt><small>[a<font color=black>'''bã'''</font>t/as, -ė]</tt></small></font> <small>''bažn.</small>''&nbsp;&nbsp;||||<font color=blue>'''opat/s, -e'''</font> <font color=gray><tt><small>[<font color=black>'''o'''</font>pa/c, -t’ä]</tt></small></font>, <small>''dem.''</small> <font color=darkblue><small>opat/eņš, -eite</small></font>, <font color=gray><tt><small>[<font color=black>'''o'''</font>pat’/èńč, -eît’ä]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abatija'''</font> <font color=gray><tt><small>[abat′i<font color=black>'''jà'''</font>]</tt></small></font> <small>''bažn.''</small>||||<font color=blue>'''opateja'''</font> <font color=gray><tt><small>[<font color=black>'''o'''</font>pat′eja]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abažūras'''</font> <font color=gray><tt><small>[aba<font color=black>'''ž˜ ū'''</font>ras]</small></tt></font>||||<font color=blue>'''ļampysvierss'''</font> <font color=gray><tt><small>[<font color=black>'''l’`äm'''</font>pyśv’ìerss]</tt></small></font>, <small>''dem.'' <font color=darkblue>ļampysvierseņš</small></font> <font color=gray><tt><small>[<font color=black>'''l’`äm'''</font>pyśv’ìerśèńč]</tt></small></font>; <font color=blue>'''abažurs'''</font> <font color=gray><tt><small>[<font color=black>'''a'''</font>bažùrs]</tt></small></font>, <small>''dem.''</small> <font color=darkblue><small>abažureņš</small></font> <font color=gray><tt><small>[<font color=black>'''a'''</font>bažuŕèńč]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abcha/zas, -zė'''</font> <font color=gray><tt><small>[ab<font color=black>Hã</font>/zas, -źė]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></small></font>||||<font color=blue>'''abhazī/ts, -te'''</font> <font color=gray><tt><small>[<font color=black>ap</font>Haź`ī/c’, -t’ä]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abėcėlė'''</font> <font color=gray><tt><small>[ab′ė<font color=black>ć˜ ė</font>l′ė]</tt></small></font>||||<font color=blue>'''alfabets'''</font> <font color=gray><tt><small>[<font color=black>àl</font>fab′ec]</tt></small></font>, <small>''dem.'' <font color=darkblue>alfabeteņš</small></font> <font color=gray><tt><small>[<font color=black>àl</font>fab’et’èńč]</tt></small></font>; <font color=blue>'''lementars'''</font> <font color=gray><tt><small>[<font color=black>l’e</font>ḿèntàŕś]</tt></small></font>, <small>''dem.'' <font color=darkblue>lementareits</small></font> <font color=gray><tt><small>[<font color=black>l’e</font>ḿèntaŕeîć]</tt></small></font>; <font color=blue>'''abece'''</font> <font color=gray><tt><small>[<font color=black>a</font>b′ećä]</tt></small></font>, <small>''dem.'' <font color=darkblue>abeceite</small></font> <font color=gray><tt><small>[<font color=black>a</font>b’ećeît’ä]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abėcėlinink/as, -ė'''</font> <font color=gray><tt><small>[ab′ė<font color=black>ć˜ ė</font>l′ińink/as,-ė]</tt></small></font> ||||<font color=blue>'''lementarn/īks, -eica'''</font> <font color=gray><tt><small>[<font color=black>l′e</font>m′entàŕń/`īks, -eîca]</tt></small></font>, <small>''dem.'' <font color=darkblue>lementarn/īceņš, -eiceņa</small></font> <font color=gray><tt><small>[<font color=black>l’e</font>ḿèntàŕń/`īćèńč, -eîćeńä]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abėcėlin/is, -ė'''</font> <font color=gray><tt><small>[ab’ė<font color=black>ć˜ ė</font>l’iń/is,-ė]</tt></small></font> ||||<font color=blue>'''alfabetisk/ys, -a'''</font> <font color=gray><tt><small>[<font color=black>àl</font>fab’et’isk/ys, -a]</tt></small></font>; <font color=blue>'''lementarisk/ys, -a'''</font> <font color=gray><tt><small>[•<font color=black>l’e</font>ḿèntaŕisk/ys, -a]</tt></small></font>; <font color=blue>'''lementarei/gs, -ga'''</font> <font color=gray><tt><small>[<font color=black>l’e</font>ḿèntaŕeî/ks, -ga]</tt></small></font>; <font color=blue>'''abecei/gs, -ga'''</font> <font color=gray><tt><small>[<font color=black>a</font>b’ećeî/ks, -ga]</tt></small></font> + +|-- +|valign="top"|<font color=darkblue>'''abėcėliškai'''</font> <font color=gray><tt><small>[ab’ė<font color=black>ć˜ ė</font>l’iškai]</tt></small></font>||||<font color=blue>'''alfabetiskai'''</font> <font color=gray><tt><small>[<font color=black>àl</font>fab’et’iskài]</tt></small></font>; <font color=blue>'''abeceigai'''</font> <font color=gray><tt><small>[<font color=black>a</font>b’ećeîgài]</tt></small></font>; <font color=blue>'''pa alfabetam'''</font> <font color=gray><tt><small>[pa <font color=black>àl</font>fab’etàm]</tt></small></font>; <font color=blue>'''pa abecei'''</font> <font color=gray><tt><small>[pa <font color=black>a</font>b’ećèi]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abėcėlišk/as, -a'''</font> <font color=gray><tt><small>[ab’ė<font color=black>ć˜ ė</font>l’išk/as, -a]</tt></small></font>||||<font color=blue>'''alfabetisk/ys, -a'''</font> <font color=gray><tt><small>[<font color=black>àl</font>fab’et’isk/ys,-a]</tt></small></font>; <font color=blue>'''abecei/gs, -a'''</font> <font color=gray><tt><small>[<font color=black>a</font>b’ećeî/ks, -ga]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abėcėliškumas'''</font> <font color=gray><tt><small>[ab’ėćėl’iš<font color=black>kù</font>mas]</tt></small></font>||||<font color=blue>'''alfabetiskums'''</font> <font color=gray><tt><small>[<font color=black>àl</font>fab’e’tiskùms]</tt></small></font>; <font color=blue>'''abeceigums'''</font> <font color=gray><tt><small>[<font color=black>a</font>bećeîgùms]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejaip'''</font> <font color=gray><tt><small>[ab’e<font color=black>j<sup>a</sup>ĩp</font>]</tt></small></font>||||<font color=blue>'''tai i tai'''</font> <font color=gray><tt><small>[<font color=black>taî</font> i <font color=black>taî</font>]</tt></small></font>; <font color=blue>'''i tai, i tai'''</font> <font color=gray><tt><small>[i <font color=black>taî</font>, i <font color=black>taî</font>]</tt></small></font>; <font color=blue>'''divaiži'''</font> <font color=gray><tt><small>[<font color=black>d’i</font>vaîžy]</tt></small></font>; <font color=blue>'''divejaiži'''</font> <font color=gray><tt><small>[<font color=black>d’i</font>v’ejaîžy]</tt></small></font>; <font color=blue>'''obadiv formuos'''</font> <font color=gray><tt><small>[oba<font color=black>d’ìu</font> <font color=black>fòr</font>muôs]</tt></small></font>; <font color=blue>'''obadiv atmejuos'''</font> <font color=gray><tt><small>[oba<font color=black>d’ìu</font> <font color=black>at’</font>ḿejuôs]</tt></small></font>; <font color=blue>'''pa obadiv celim'''</font> <font color=gray><tt><small>[pa oba<font color=black>d’ìu</font> <font color=black>će</font>l’ìm]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejetas'''</font> <font color=gray><tt><small>[•ãb’ejetas]</tt></small></font> <small>''dktv., vns., retai''</small>||||<font color=blue>'''obadiv'''</font> <font color=gray><tt><small>[oba•d’ìu]</tt></small></font> <small>''įv., dgs., vyr. ir mot. g.''</small>; <font color=blue>'''obadivej/i, -is'''</font> <font color=gray><tt><small>[oba•d’iv’eji, oba•d’iv’ejiś]</tt></small></font> <small>''įv., dgs.''</small>; <font color=blue>'''obej/i, -is'''</font> <font color=gray><tt><small>[•obeji, •ob’ejiś]</tt></small></font> <small>''įv., dgs.''</small> +|-- +|valign="top"|<font color=darkblue>'''abej/i, -os'''</font> <font color=gray><tt><small>[ab’e•jì, •ãb’ejos]</tt></small></font>||||<font color=blue>'''obej/i, -is'''</font> <font color=gray><tt><small>[•ob’ej/i, -iś]</tt></small></font>; <font color=blue>'''obadivej/i, -is'''</font> <font color=gray><tt><small>[oba•d’iv’ej/i, -iś]</tt></small></font>; <font color=blue>'''obadiv'''</font> <font color=gray><tt><small>[oba•d’ìu]</tt></small></font> <small>''vyr. ir mot. g.''</small> +|-- +|valign="top"|<font color=darkblue>'''abejingai'''</font> <font color=gray><tt><small>[ab’e•jìngai]</tt></small></font>||||<font color=blue>'''vysleidzeigai''' <font color=gray><tt><small>[•vysl’èidźeîgài]</tt></small></font>; <font color=blue>'''glābai'''</tt></small></font> <font color=gray><tt><small>[•gl`ābài]</font> +|-- +|valign="top"|<font color=darkblue>'''abejing/as,-a'''</font> <font color=gray><tt><small>[ab’e•jìng/as,&nbsp;-a]</tt></small></font>||||<font color=blue>'''vysleidzei/gs, -ga'''</font> <font color=gray><tt><small>[•vysl’èidźeî/ks, -ga]</tt></small></font>; <font color=blue>'''glā/bs, -ba'''</font> <font color=gray><tt><small>[•gl`ā/ps, -ba]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejingumas'''</font> <font color=gray><tt><small>[ab’ejin•gùmas]</tt></small></font>||||<font color=blue>'''vysleidzeiba''' <font color=gray><tt><small>[•vysl’èidźeîba]</tt></small></font>; <font color=blue>'''glābums'''</font> <font color=gray><tt><small>[•gl`ābùms]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejojimas''' <font color=gray><tt><small>[ab’e•jójimas]</tt></small></font>||||<font color=blue>'''šuorbuošonuos'''</font> <font color=gray><tt><small>[•šùorbuôšonuos]</tt></small></font>; <font color=blue>'''šuorbys'''</font> <font color=gray><tt><small>[•šùorbys]</tt></small></font> <small>''ppr. dgs.''</small>; <font color=blue>'''dūrsteišonuos'''</font> <font color=gray><tt><small>[•d`ūŕśt’eîšonuos]</tt></small></font>; <font color=blue>'''dūrsteiba'''</tt></small></font> <font color=gray><tt><small>[•d`ūŕśt’eîba]</tt></small></font> <small>''ppr. vns.''</small> +|-- +|valign="top"|<font color=darkblue>'''abejokl/is, -ė'''</font> <font color=gray><tt><small>[ab’e•jõkl/is, -ė]</tt></small></font>||||<font color=blue>'''šuorbuotuo/js, -ja'''</font> <font color=gray><tt><small>[•šùorbuôtùo/<u>i</u>ś, -ja]</tt></small></font>, <small>''dem.'' <font color=darkblue>šuorbuotuoj/eņš, -eņa</small></font> <font color=gray><tt><small>[•šùorbuotuoj/èńč, -eńa]</tt></small></font>; <font color=blue>'''dūrsteituo/js, -ja'''</font> <font color=gray><tt><small>[•d`ūŕśt’eîtùo/<u>i</u>ś, -ja]</tt></small></font>, <small>''dem.'' <font color=darkblue>dūrsteituoj/eņš, -eņa</small></font> <font color=gray><tt><small>[•d`ūŕśt’eîtùoj/èńč, -eńä]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejok/s, -ia'''</font> <font color=gray><tt><small>[ab’e•jók/s, -ia]</tt></small></font>||||<font color=blue>'''tys i tys'''</font> <small>''vyr. g.''</small>, <font color=blue>'''tei i tei'''</font> <small>''mot. g.''</small> <font color=gray><tt><small>[•tys i •tys, •t’èi i •t’èi]</tt></small></font>; <font color=blue>'''i tys, i tys'''</font> <small>''vyr. g.''</small>, <font color=blue>'''i tei, i tei'''</font> <small>''mot. g.''</small> <font color=gray><tt><small>[i •tys i •tys, i •t’èi, i •t’èi]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejonė'''</font> <font color=gray><tt><small>[ab’e•jõnė]</tt></small></font>||||<font color=blue>'''šuorbys'''</font> <font color=gray><tt><small>[•šùorbys]</tt></small></font> <small>''ppr. dgs.''</small>, <small>''dem.'' <font color=darkblue>šuorbenis</small></font> <font color=gray><tt><small>[•šùorb’eńiś]</tt></small></font>; <font color=blue>'''šuorbuošonuos'''</font> <font color=gray><tt><small>[•šùorbuôšonuos]</tt></small></font>; <font color=blue>'''dūrsteiba'''</font> <font color=gray><tt><small>[•d`ūŕśt’eîba]</tt></small></font> <small>''ppr. vns.''</small>, <small>''dem.'' <font color=darkblue>dūrsteibeņa</small></font> <font color=gray><tt><small>[•d`ūŕśt’eîb’eńä]</tt></small></font>; <font color=blue>'''dūrsteišonuos'''</font> <font color=gray><tt><small>[•d`ūŕśt’eîšonuos]</tt></small></font> +|-- +| valign="top"|<font color=darkblue>'''abejopai''' <font color=gray><tt><small>[ab’e•jóp<sup>a</sup>i]</tt></small></font>||||<font color=blue>'''tai i tai'''</font> <font color=gray><tt><small>[•taî i •taî]</tt></small></font>; <font color=blue>'''i tai, i tai'''</font> <font color=gray><tt><small>[i •taî, i •taî]</tt></small></font>; <font color=blue>'''divaiži'''</font> <font color=gray><tt><small>[•d’ivaîžy]</tt></small></font>; <font color=blue>'''divejaiži'''</font> <font color=gray><tt><small>[•d’iv’ejaîžy]</tt></small></font>; <font color=blue>'''obadiv formuos'''</font> <font color=gray><tt><small>[oba•d’iù •fòrmuôs]</tt></small></font>; <font color=blue>'''obadiv atmejuos'''</font> <font color=gray><tt><small>[oba•d’iù •at’ḿejuôs]</tt></small></font>; <font color=blue>'''pa obadiv celim'''</font> <font color=gray><tt><small>[pa oba•d’iù •ćel’ìm]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejop/as, -a'''</font> <font color=gray><tt><small>[ab’e•jóp/as, -a]</tt></small></font>||||<font color=blue>'''tys i tys'''</font> ''vyr. g.'', <font color=blue>'''tei i tei'''</font> <small>''mot. g.''</small> <font color=gray><tt><small>[•tys i •tys, •t’èi i •t’èi]</tt></small></font>; <font color=blue>'''i tys, i tys'''</font> <small>''vyr. g.''</small>, <font color=blue>'''i tei, i tei'''</font> <small>''mot. g.''</small> <font color=gray><tt><small>[i •tys i •tys, i •t’èi, i •t’èi]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejo/ti'''</font>&nbsp;<font color=darkblue><small>(-ju, -ji, -ja;&nbsp;-jau, -jai, -jo)</small></font>&nbsp;<font color=gray><tt><small>[ab’e•jó/ti, -ju, -ji, -ja;&nbsp;-jau, -jai, -jo]</tt></small></font> ||||<font color=blue>'''šuorb/uotīs'''</font> <font color=darkblue><small>(-ojūs, -ojīs, -ojās; -uojūs, -uojīs, -uojuos)</small></font> <font color=gray><tt><small>[•šùorb/uôtˆīś, -ojˆūs, -ojˆīś, -ojˆās, -ùojˆūs, -ùojˆīś, -ùojuôs]</tt></small></font> ; <font color=blue>'''dūrs/teitīs'''</font> <font color=darkblue><small>(-tūs, -tīs, -tuos; -tejūs, -tejīs, -tejuos)</small></font> <font color=gray><tt><small>[•d`ūŕś/t’eîtˆīś, -tˆūs, -t’ˆīś, -tuôs, -t’ejˆūs, -t’ejˆīś, -t’ejuôs]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejotoj/as, -a'''</font> <font color=gray><tt><small>[ab’e•jótoj/as, -a]</tt></small></font>||||<font color=blue>'''šuorbuotuo/js, -ja'''</font> <font color=gray><tt><small> [•šùorbuôtùo/<u>i</u>ś, -ja]</tt></small></font>; <font color=blue>'''dūrsteituo/js, -a'''</font> <font color=gray><tt><small>[•d`ūŕśt’eîtùo/<u>i</u>ś, -ja]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejotinai'''</font> <font color=gray><tt><small>[abe•jótin<sup>a</sup>i]</tt></small></font>||||<font color=blue>'''šuorbeigai'''</font> <font color=gray><tt><small>[•šùorb’eîgài]</tt></small></font>; <font color=blue>'''naskaidrai'''</font> <font color=gray><tt><small>[•naskàidrài]</tt></small></font>; <font color=blue>'''napatycamai'''</font> <font color=gray><tt><small>[•napatycamài]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejotin/as, -a'''</font> <font color=gray><tt><small>[ab’e•jót’in/as, -a]</tt></small></font>||||<font color=blue>'''šuorbei/gs, -ga'''</font> <font color=gray><tt><small>[•šùoŕb’eî/ks, -ga]</tt></small></font>; <font color=blue>'''nadrūs/s, -a'''</font> <font color=gray><tt><small>[•nadr`ūs/s, -a]</tt></small></font>; <font color=blue>'''napatyc/ams, -ama'''</font> <font color=gray><tt><small>[•napatyc/àms, -ama]</tt></small></font>; <font color=blue>'''naskaidr/ys, -a'''</font> <font color=gray><tt><small>[•naskàidr/ys, -a]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejotinumas'''</font> <font color=gray><tt><small>[ab’ejot’i•nùmas]</tt></small></font>||||<font color=blue>'''šuorbeigums'''</font> <font color=gray><tt><small>[•šùoŕb’eîgùms]</tt></small></font>; <font color=blue>'''nadrūsums'''</font> <font color=gray><tt><small>[•nadr`ūsùms]</tt></small></font>; <font color=blue>'''napatycamums'''</font> <font color=gray><tt><small>[•napatycamùms]</tt></small></font>; <font color=blue>'''napatycameiba'''</font> <font color=gray><tt><small>[•napatycàḿeîba]</tt></small></font>; <font color=blue>'''naskaidrums'''</font> <font color=gray><tt><small>[•naskàidrùms]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejur'''</font> <font color=gray><tt><small>[ab’e•ju˜r]</tt></small></font> <small>''retai''</small> ||||<font color=blue>'''i tī, i tī'''</font> <font color=gray><tt><small>[i •t’î, i •t’î]</tt></small></font>; <font color=blue>'''i tī, i ite'''</font> <font color=gray><tt><small>[i •t’î, i •it’ä]</tt></small></font>; <font color=blue>'''obadiv vītuos'''</font> <font color=gray><tt><small>[oba•d’ìu •v’ītuôs</tt></small>]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejutiškai'''</font> <font color=gray><tt><small>[ab’e•jùt’išk<sup>a</sup>i]</tt></small></font> <small>''retai''</small> ||||'''1. <font color=blue>pušleidza labi'''</font> <font color=gray><tt><small>[puš•l’èidza •lab’i]</tt></small></font>;<br>'''2. <font color=blue>namoz'''</font> <font color=gray><tt><small>[•namos]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abejutišk/as, -a'''</font> <font color=gray><tt><small>[ab’e•jùt’išk/as, -a]</tt></small></font> <small>''retai''</small> ||||<font color=blue>'''pušleidza lo/bs, -ba'''</font> <font color=gray><tt><small>[puš•l’èidza •lo/ps, -ba]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abu, abi'''</font> <font color=gray><tt><small>[a•bù, a•b’ì]</tt></small></font>||||<font color=blue>'''obadiv'''</font> <font color=gray><tt><small>[oba•d’ìu]</tt></small></font> <small>''vyr. ir mot. g.''</small>; <font color=blue>'''obej/i, -is'''</font> <font color=gray><tt><small>[•ob’ej/i, -iś]</tt></small></font>; <font color=blue>'''obadivej/i, -is'''</font> <font color=gray><tt><small>[oba•d’iv’ej/i, -iś]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abiak/is, -ė'''</font> <small>''būdv.''</small> <font color=gray><tt><small>[ab’i•jãk’/is, -ė]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></small></font>||||<font color=blue>'''obeju ocu-'''</font> <font color=gray><tt><small>[•ob’eju •ocu]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abiakis regėjimas'''</font> <font color=gray><tt><small>[ab’i•jãkis ŕeg’ė’jimas]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></small></font>||||<font color=blue>'''obeju ocu redzeiba'''</font> <font color=gray><tt><small>[•ob’eju •ocu •ŕedźeîba]</tt></small></font>; <font color=blue>'''redziešona obadivejom acim'''</font> <font color=gray><tt><small>[•ŕedźiêšona oba•d’ivejòm •aćìm]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abiašmẽnis, -ė'''</font> <font color=gray><tt><small>[ab’ijaš’•ḿ˜än/is, -ė]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></small></font>||||<font color=blue>'''divesminei/gs, -ga'''</font> <font color=gray><tt><small>[•d’iv’eśḿińeî/ks, -ga]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abigaliai'''</font> <font color=gray><tt><small>[ab’iga•l’<sup>ä</sup>ĩ]</tt></small></font>||||<font color=blue>'''nu obeju golu'''</font> <font color=gray><tt><small>[nu •ob’eju •golu]</tt></small></font>; <font color=blue>'''pa obadiv golim'''</font> <font color=gray><tt><small>[pa oba•d’ìu •gol’ìm]</tt></small></font>; <font color=blue>'''divgaleigai'''</font> <font color=gray><tt><small>[•d’ìugal’eîgài]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abigal/is, -ė'''</font> <font color=gray><tt><small>[a•b’ìgal’/is, -ė]</tt></small></font>||||<font color=blue>'''obeju golu-'''</font> <font color=gray><tt><small>[•ob’eju •golu]</tt></small></font>; <font color=blue>'''divgalei/gs, -ga'''</font> <font color=gray><tt><small>[•d’ìugal’eî/ks, -ga]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''abudu, abidvi'''</font> <font color=gray><tt><small>[a•bùdu, a•b’ìd’v’i]</tt></small></font>||||<font color=blue>'''obadiv'''</font> <font color=gray><tt><small>[oba•d’ìu]</tt></small></font> <small>''vyr. ir mot. g.''</small>; <font color=blue>'''obej/i, -is'''</font> <font color=gray><tt><small>[•ob’ej/i, -iś]</tt></small></font>; <font color=blue>'''obadivej/i, -is'''</font> <font color=gray><tt><small>[oba•d’iv’ej/i, -iś]</tt></small></font> +|-- +|valign="top"|<font color=darkblue>'''asai'''</font>&nbsp;<font color=gray><tt><small>[•ãsai] </tt></small></font><small>''mitol.,&nbsp;dgs.</small>||||<font color=blue>'''āsi'''</font> <font color=gray><tt><small>[•`ās’i]</tt></small></font> +|} + +== Verīs taipoš == +* [[Anglīšu - latgaļu vuordineica / English - Latgalian Dictionary]] +* [[Krīvu - latgaļu vuordineica / Русско - латгальский словарь]] + +== Nūruodis == +* [http://www.vuordineica.lv/ Latvīšu - latgaļu vuordineica / Latviešu - latgaliešu vārdnīca] + 5w9voqo9x0uqy8njwj33ombzfupqeyi + + + + Taiss:Infoskreine Latvejis viesuriskīs nūvods + 10 + 2452 + + 29787 + 27522 + 2013-04-15T01:38:11Z + + Addbot + 1801 + + + wikitext + text/x-wiki + <includeonly>{| class="infobox" style="width: 270px; font-size: 90%; margin: 2px; margin-left: 1em; text-align: left;" +|- +! colspan="2" style="margin-left: inherit; background:#a12830; color:#ffffff;text-align:center; font-size: medium;" | {{#if: {{{nūvoda_pasauka|}}}|{{{nūvoda_pasauka}}}}} +|- +<!-- ****** Byušonys zemislopa ****** --> +{{#if: {{{zemislopa|}}}| +{{!}} colspan="2" align="center" {{!}} <center>[[File:{{{zemislopa|}}}|250px|border|]]</center> +}} +|- +<!-- ****** Gerbs i karūgs ****** --> +{{#if:{{{karūga_atvaigs|}}} + |<!--thenF: + ------------------------------------------------------------------------------ + Ite irā karūga atvaigs, paruoda taipat gerba atvaigu, ka tys irā: + ------------------------------------------------------------------------------ + --><tr class="mergedtoprow"> + <td class="maptable" colspan="3" align="center" style="padding:0.5em 0;"><!-- + ----------------------------------------------------------------------- + Subtable to format flag/coat-of-arms display. + Align="center"s and "width:auto;"s are for sake of Internet Explorer. + ----------------------------------------------------------------------- + --><table align="center" style="width:100%; background:none;"><!-- + -----------Karūga i/voi gerba atvaigs----------- + --><tr> + <td align="center" + style="{{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--then:-->width:58%;}}<!--(58% as flags usually wider than coats-of-arms/symbols. Also accommodates IE.)--> vertical-align:middle;"><!-- + -->[[File:{{{karūga_atvaigs|}}}|125px|border|{{#if:{{{karūga_pasauka|}}} + |<!--then:-->{{{karūga_pasauka|}}}}}]]<!--end border:--><!-- + --></td> + {{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--then:--><td align="center" style="width:auto; vertical-align:middle;"><!-- + -->[[File:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |{{{gerba_plotums|75px}}} |{{#if:{{{gerba_pasauka|}}} + |<!--then:-->{{{gerba_pasauka}}}}}]]<!-- + --></td> + }} + </tr><!-- + ----------Karūga i/ci gerba paroksti---------- + --><tr> + {{#if:{{{karūga_pasauka}}} |<!--then: + --><td align="center"><small>[[{{{karūga_pasauka|}}}|{{{flag_caption|Karūgs}}}]]</small></td> + }} + {{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |<!--then: + --><td align="center"><small>[[{{{gerba_pasauka}}}|{{{symbol_type|Gerbs}}}]]</small></td> + }} + </tr><!-- + ---------Zamtabelis beigys:--------- + --></table> + </td> + </tr><!-- + +-->|<!--elseF: + --------------------------------------------------------------------------- + Karūga atvaiga navā, irā tik gerba atvaigs: + --------------------------------------------------------------------------- + -->{{#if:{{{gerba_atvaigs|}}}{{{image_symbol|}}} + |<!--thenS2: + --><tr class="mergedtoprow"> + <td class="maptable" colspan="3" align="center" style="padding:0.5em 0;"><!-- + ----------------------------------------------------------------------- + Subtable to format coat-of-arms (or other symbol) display. + Align="center"s and "width:auto;"s are for sake of Internet Explorer. + ----------------------------------------------------------------------- + --><table align="center" style="width:100%; background:none;"><!-- + -----------Gerba atvaigs----------- + --><tr> + <td align="center" + style="width:auto; vertical-align:middle;"><!-- + -->[[File:{{{gerba_atvaigs|}}}{{{image_symbol|}}} |{{{gerba_plotums|85px}}} |{{{gerba_pasauka}}}]]</td> + </tr><!-- + ----------Gerba paroksts---------- + --><tr> + <td align="center"><!-- + --><small>[[{{{gerba_pasauka}}}|{{{symbol_type|Gerbs}}}]]</small><!-- + --></td> + </tr><!-- + ---------Zamtabelis beigys:---------- + --></table> + </td> + </tr><!-- + -->}}<!--(endS2) +-->}} +<!-- ****** Golvonī dati ****** --> +{{#if: {{{rmīsts|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Republikys mīsts:''' +{{!}} {{{rmīsts}}}|{{{rmīsts}}} +}} +|- +{{#if: {{{pluots|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Pluots{{#if: {{{pluots_gods|}}}|&nbsp;<small>({{{pluots_gods}}})</small>}}:''' +{{!}} {{{pluots}}}&nbsp;km<sup>2</sup> +}} +|- +{{#if: {{{dzeivuotuoju_skaits|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Dzeivuotuoju sk.{{#if: {{{dzeivuotuoji_gods|}}}|&nbsp;<small>({{{dzeivuotuoji_gods}}})</small>}}:''' +{{!}} {{{dzeivuotuoju_skaits}}} +}} +|- +{{#if: {{{bīzeiba|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Bīzeiba:''' +{{!}} {{{bīzeiba}}}&nbsp;dz./km<sup>2</sup> +}} +|- +{{#if: {{{teritoriskais_dalejums|}}}| +{{!}} style="vertical-align: top; text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Teritoriskais<br />dalejums:''' +{{!}} {{{teritoriskais_dalejums}}} +}} +|- +{{#if: {{{nūvodu_centri|}}}| +{{!}} style="vertical-align: top; text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}}'''Nūvodu<br />centri:''' +{{!}} {{{nūvodu_centri}}} +}} +|- +{{#if: {{{teiklavīta|}}}| +{{!}} style="text-align: left; padding-left: 5px; background-color: #efefef; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;"{{!}} '''Teiklavīta''' +{{!}} [http://{{{teiklavīta}}} {{{teiklavīta}}}] +}} +|- +|}</includeonly> +<noinclude> +{{dokumentaceja}} + +[[Category:Geografejis infoskreinis|Latvejis nūvods]] +[[Category:Latvejis geografejis taisi|Nūvods]] + +</noinclude> + tfax96b4el52qjpqa7jqo55u2j0eb10 + + + + Medņovys pogosts + 0 + 2466 + + 29331 + 27875 + 2013-03-11T11:02:48Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 2 interwiki links, now provided by [[d:|Wikidata]] on [[d:q5132212]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Medņovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Medņovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Medņovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Vileks nūvods +| centrys = Semanova +| pluots = 99.28 +| dzeivuotuoju_skaits = 790<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 790 / 99.28 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Medņovys pogosts''' irā [[Vileks nūvods|Vileks nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogosta centrys Semanovā. Pogostā dora Viduču pamatškola, pyrmaškoliņs īstots, biblioteka, tautys noms, apleicis vuiceibys centrys, jaunīšu centrys "Sauliszīds" i invalidu sporta i rehabilitacejis centrys. Bazneicu ci cierkvu pogosta teritorejā navā. + +==Viesture== +1945 godā Abrinis apleiciņa Vileks pogostā īstateja Medņovys solys padūmi. Medņovys sola bejuse Vileks apleicinī (1945-1949), Abrinis rajonā (1949-1959) i Bolvu rajonā (nu 1959 gods). 1954 godā Medņovai davīnova likvidātū Vyduču solu.<ref>Okupātuos Latvejis administrativi teritoriskais dalejums. Latvejis Vaļsteibys arhivu generaldireceja. Reiga, 1997. ISBN 9984-9256-0-9</ref> 1990 godā solu reorganizej kai pogostu.<ref>Latvijas pagasti. Enciklopēdija. A/S Preses nams, Rīga, 2001-2002 ISBN 9984-00-412-0</ref> 2009 godā kai administrativu teritoreju pogostu daškir [[Vileks nūvods|Vileks nūvodam]]. + +== Rūbeži == +Medņovys pogosts tur rūbežu ar: +* [[Vileks nūvods|Vileks nūvoda]] [[Susāju pogosts|Susāju pogostu]], [[Škilbānu pogosts|Škilbānu pogostu]], [[Vacumu pogosts|Vacumu pogostu]] i [[Vileks|Vileks mīstu]]; +* [[Bolvu nūvods|Bolvu nūvoda]] [[Bārzkolna pogosts|Barzkolna pogostu]] i [[Lozdulejis pogosts|Lozdulejis pogostu]]. + +==Doba== +Pogosta vokoru daļa irā [[Reitulatvejis zamaine|Reitulatvejis zamainis]] Atzolys pacylumā, a reitu daļa [[Mudovys zamaine|Mudovys zamainis]] Abrinis pacyluma pazamynuojumā. Pošu augstuo kaupre - Kanguru kolns (144 m vjl) pogosta dīnavydūs, Kanguru solā. Klimats koņtinentals. Gaisalaiks, samārojūt ar cytim [[Latgola|Latgolys]] pogostim gon buorgs. Solsaimesteibai lītojamuo zeme sadora 37% pogosta teritorejis, a meži 50,9% pogosta zemu.<ref>[http://vilaka.lv/index.php?page=med-evas-pagasta-parvalde Medņovys pogosts Vileks nūvoda teiklavītā]</ref> + +=== Iudini === +Upis: +* Bušma +* Guorova +* Ludumka +* Keira +* Nīdrupeite + +[[Iudiņtvere|Iudiņtveris]]: +* Iļzeņu azars (3,1 dekters) +* Lodumys azars (2,6 dekteri) +* Raču azars (1 dekters) + +Pūri i peisi: +* daļa nu Leluo pūra +* Kļučnīku pūrs (31,8 dekteri) +* Olūtovys pūrs (55,3 dekteri) + +== Dzeivuotuoji == +Medņovys pogostā dzeivoj 790 ļauds, nu jū 95% latvīšu, 4% krīvu i 1% cytu tauteibu ļauds.<ref>[http://vilaka.lv/index.php?page=med-evas-pagasta-parvalde Medņovys pogosts Vileks nūvoda teiklavītā]</ref> Administrativajuo centrā Semanovā dzeivoj 30% pogosta ļauds. + +=== Solys === +Medņovys pogosta ļauds dzeivoj 31 solā.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Semanova (pogosta centrys), Rači, Vyduči. + +=== Zeimeigi ļauds === +* Kazimirs Duļbinskais — bazneicnīks, Romys katuoļu veiskups. + +== Saimisteiba== +==== Transports i saiteibys==== +Pogosta teritoreju škārsoj vaļsteibys zeimebys autoceļš Vileks-Kuorsova (P45), a iz rūbeža ar [[Vacumu pogosts|Vacumu pogostu]] īt autoceļš Guļbine-Bolvi-Vileks-Krīvejis rūbežs (P35). Taipoš pogostā nazcik vītejuos zeimeibys celi.<ref>[http://www.lvceli.lv/LV/?i=246 Latvejis vaļsteibys regionalī autoceli]</ref> Dzeļžaceļa linejis pogosta teritoreju naškārsoj. + +Medņovys pogosta teritoreju apkalpoj vīna posta atdale "Medņova" Semanovys solā (LV-4586).<ref>[http://www.pasts.lv/lv/uzzinas/nodalas/ Latvejis posta iņdeksi]</ref> + +==Slavvītys== +* Medņovys vydslaiku kopi + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Vileks nūvods}} + +[[Kategoreja:Medņovys pogosts| ]] + rmepc2c5duuftz9t2h2yo3evgz3s2ed + + + + Vīseitis nūvods + 0 + 2467 + + 29535 + 27888 + 2013-04-02T18:58:14Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 10 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2093996]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Vīseitis nūvods +| zemislopa = Viesītes novada karte.png +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Vīseitis nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Vīseite +| pluots = 650,5 +| dzeivuotuoju_skaits = 4 614<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 4614 / 650.5 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Eļkšņu pogosts]] <br /> [[Ritis pogosts]] <br /> [[Saukys pogosts]] <br /> [[Vīseite|Vīseitis mīsts]] <br /> [[Vīseitis pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.viesite.lv +}} + +'''Vīseitis nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Sieleja|Sielejā]], sasadorūšs nu pīcu pogostu i vīna mīsta. +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Vīseitis nūvods| ]] + rn6t2iqu290tex9ptmj16e67oic67r1 + + + + Aizputis nūvods + 0 + 2468 + + 29332 + 27890 + 2013-03-11T11:02:50Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2485015]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Aizputis nūvods +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Aizputis nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Aizpute +| pluots = 640,2 +| dzeivuotuoju_skaits = 10 368<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 10368 / 640.2 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Aizpute|Aizputis mīsts]] <br /> [[Aizputis pogosts]] <br /> [[Ceirovys pogosts]] <br /> [[Kaļvinis pogosts]] <br /> [[Kazdangys pogosts]] <br /> [[Lažys pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.aizputesnovads.lv +}} + +'''Aizputis nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Kūrzeme|Kūrzemē]], sasadorūšs nu pīcu pogostu i vīna mīsta. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Aizputis nūvods| ]] + jy42vqmyayajoyzrnw3p47oqlg5u1dm + + + + Babeitis nūvods + 0 + 2469 + + 29333 + 27889 + 2013-03-11T11:02:51Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 12 interwiki links, now provided by [[d:|Wikidata]] on [[d:q2079353]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Babeitis nūvods +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Babeitis nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Pinki +| pluots = 241,7 +| dzeivuotuoju_skaits = 9 223<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 9223 / 241.7 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Babeitis pogosts]] <br /> [[Solys pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.babite.lv +}} + +'''Babeitis nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Vydzeme|Vydzemē]], sasadorūšs nu divejim pogostim. + +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Babeitis nūvods| ]] + pttw8g7fwdpmkdopdpc5sjle1qkrpq7 + + + + Alšvangys nūvods + 0 + 2482 + + 29534 + 28086 + 2013-04-02T18:58:11Z + + Legobot + 1544 + + + [[M:User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[d:|Wikidata]] on [[d:q1995769]] [[M:User:Addbot/WDS|(translate me)]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Alšvangys nūvods +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Alšvangys nūvoda gerbs +| gerba_plotums = <!-- Tik gadīnī, kod napīcīšami nastandarta māri --> +| karūga_atvaigs = +| karūga_pasauka = +| centrys = Alšvanga +| pluots = 190 +| dzeivuotuoju_skaits = 1 620<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 1620 / 190 round 1}} +| īstateits = 2009 +| teritoriskais_dalejums = [[Alšvangys pogosts]] +| pakaļpīņu_centri = <!-- Tik gadīnī, kod vaira nakai vīns (nūvoda centrys) --> +| teiklavīta = www.alsunga.lv +}} + +'''Alšvangys nūvods''' — [[Latveja|Latvejis]] administrativai teritoriskais padalīņs [[Kūrzeme|Kūrzemē]], sasadorūšs nu vīna pogosta. +== Nūruodis == +{{Nūruodis}} + +{{Nadabeigts rakstīņs}} + +{{Latvejis administrativais dalejums}} + +[[Kategoreja:Alšvangys nūvods| ]] + 1oljky8zwu1qxj5e8ofjls98fklwvt4 + + + + Norge + 0 + 2580 + + + 29484 + 2013-03-31T20:28:04Z + + 79.160.60.33 + + Redirect because «Norge» and «Noreg» are the country's own names and may be used as a search string. + wikitext + text/x-wiki + #REDIRECT[[Norvegeja]] + fcp8alzztm9qgy7h7w8uisiwxzcsrcl + + + + Noreg + 0 + 2581 + + + 29485 + 2013-03-31T20:28:25Z + + 79.160.60.33 + + Redirect because «Norge» and «Noreg» are the country's own names and may be used as a search string. + wikitext + text/x-wiki + #REDIRECT[[Norvegeja]] + fcp8alzztm9qgy7h7w8uisiwxzcsrcl + + + + Krīvu - latgaļu vuordineica / Русско - латгальский словарь + 0 + 2582 + + + 29538 + 2013-04-02T19:17:46Z + + PiRSquared17 + 913 + + PiRSquared17 pārvietoja lapu [[Krīvu - latgaļu vuordineica / Русско - латгальский словарь]] uz [[Vikipedeja:Krīvu - latgaļu vuordineica / Русско - латгальский словарь]] + wikitext + text/x-wiki + #REDIRECT [[Vikipedeja:Krīvu - latgaļu vuordineica / Русско - латгальский словарь]] + 8rs65667eev4e6by43x7omx381l116r + + + + Lītaunīku - latgaļu vuordineica / Lietuvių - latgalių kalbų žodynas + 0 + 2586 + + + 29653 + 2013-04-08T18:09:26Z + + PiRSquared17 + 913 + + PiRSquared17 pārvietoja lapu [[Lītaunīku - latgaļu vuordineica / Lietuvių - latgalių kalbų žodynas]] uz [[Vikipedeja:Lītaunīku - latgaļu vuordineica / Lietuvių - latgalių kalbų žodynas]] + wikitext + text/x-wiki + #REDIRECT [[Vikipedeja:Lītaunīku - latgaļu vuordineica / Lietuvių - latgalių kalbų žodynas]] + 6o71161sis7wj3qogs0uc9qzlftxfh2 + + + + Anglīšu - latgaļu vuordineica / English - Latgalian Dictionary + 0 + 2587 + + + 29655 + 2013-04-08T18:09:59Z + + PiRSquared17 + 913 + + PiRSquared17 pārvietoja lapu [[Anglīšu - latgaļu vuordineica / English - Latgalian Dictionary]] uz [[Vikipedeja:Anglīšu - latgaļu vuordineica / English - Latgalian Dictionary]] + wikitext + text/x-wiki + #REDIRECT [[Vikipedeja:Anglīšu - latgaļu vuordineica / English - Latgalian Dictionary]] + dmpglg0jfdz1c3i6kjnefh26ubdlh0l + + + + Niccolò Cusano universitets + 0 + 2590 + + 29843 + 29751 + 2013-04-15T04:08:41Z + + KLBot2 + 1857 + + + Bot: Migrating 7 interwiki links, now provided by [[Wikidata]] on [[:d:Q26319]] + wikitext + text/x-wiki + [[Fails:Campus Unicusano.jpg|thumb|250pxw|Niccolò Cusano universitets - Roma]] +'''Niccolò Cusano universitets''' (ital. Università degli Studi Niccolò Cusano - UniCusano) — vydtautyskai pīzeits universitets [[Roma]], [[Italeja]]. + +Īstateišonys gods 2006, Studentu skaits 10 225. + +==Teiklavīta== +*[http://www.unicusano.it Niccolò Cusano univeritets] + +[[Kategorejis:Italeja universitets]] + oftak26cmce66dhqn41d5o6cfbyh1s4 + + + + Kategoreja:Italeja + 14 + 2592 + + 31292 + 30248 + 2016-02-06T12:37:34Z + + Edgars2007 + 114 + + + Edgars2007 pārvietoja lapu [[Kategorejis:Italeja]] uz [[Kategoreja:Italeja]] + wikitext + text/x-wiki + [[Kategoreja:Pasauļa vaļsteibys]] + 13jhlmrcvg1p64jt6x2ikkt8hr8qvx3 + + + + Pušmycovys pogosts + 0 + 2602 + + 29881 + 29880 + 2013-05-17T05:19:11Z + + Roalds + 50 + + + klaideņa + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Pušmycovys pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Pušmycovys pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Pušmycovys pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Cyblys nūvods +| centrys = Pušmycova +| pluots = 72.5 +| dzeivuotuoju_skaits = 633<ref>[http://www.pmlp.gov.lv/lv/statistika/dokuments/2010/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.07.2010.]</ref> +| dzeivuotuoji_gods = 2010 +| bīzeiba = {{#expr: 633 / 72.5 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Pušmycovys pogosts''' irā [[Cyblys nūvods|Cyblys nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora tautys noms, pamatškola, katuoļu bazneica, feļčeru punkts, biblioteka. Pogostā kasgods nūteik Latgolys rysaku sasaveicīņs. + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Cyblys nūvods}} + +[[Kategoreja:Blontu pogosts| ]] + 5l0e7stkxvvoazowepmefi08y99myhw + + + + Osūtis piliskolns + 0 + 2607 + + + 29897 + 2013-06-04T20:50:38Z + + Stiernīts~ltgwiki + 315 + + Stiernīts pārvietoja lapu [[Osūtis piliskolns]] uz [[Osotys piliskolns]]: LTG Osota (pīv., Военно-топографическая карта Российской Империи 1846-1863 гг., созданная под руководство... + wikitext + text/x-wiki + #REDIRECT [[Osotys piliskolns]] + gd2ibckrltbf3h4foadk0czt64xm09s + + + + Vuocejis himnys + 0 + 2618 + + 31429 + 30326 + 2016-05-04T15:16:44Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + [[Fails:Nationalhymne der Bundesrepublik Deutschland.svg|thumb|240px|Niulejais Vuocejis himnys "Einigkeit und Recht und Freiheit"]] +[[Vuocejis Federativuo Republika|Vuocejis Federativuos Republikys]] himnys nu 1952 gods irā "Vuocīšu dzīsmis" (Austrejis himnam pīraksteituo [[Jozefs Haidnys|J. Haidna]] muzyka, [[Augusts Heinrihs Hofmaņs fon Falerslebens|A. H. Hofmaņa fon Falerslebena]] vuordi) 3 vārsna. [[Veimara Republika| Veimara Republikys]] himnys beja vysa dzīsme, [[Trešais reihs|Trešuo reiha]] himnys — pyrmuo vārsna. [[VDR]] himnys beja dzīsme "Auferstanden aus Ruinen", kurys vuordi beja damāruoti i Haidna muzykai. + +== Teksts (myuslaiku himnys – kursivā) == + +Deutschland, Deutschland über alles, <br /> +Über alles in der Welt,<br /> +Wenn es stets zum Schutz und Trutze<br /> +Brüderlich zusammenhält,<br /> +Von der Maas bis an die Memel,<br /> +Von der Etsch bis an den Belt - <br /> +Deutschland, Deutschland über alles,<br /> +Über alles in der Welt!<br /> + +Deutsche Frauen, deutsche Treue,<br /> +Deutscher Wein und deutscher Sang<br /> +Sollen in der Welt behalten<br /> +Ihren alten schönen Klang,<br /> +Uns zu edler Tat begeistern<br /> +Unser ganzes Leben lang -<br /> +Deutsche Frauen, deutsche Treue,<br /> +Deutscher Wein und deutscher Sang!<br /> + +''Einigkeit und Recht und Freiheit''<br /> +''Für das deutsche Vaterland!''<br /> +''Danach laßt uns alle streben''<br /> +''Brüderlich mit Herz und Hand!''<br /> +''Einigkeit und Recht und Freiheit''<br /> +''Sind des Glückes Unterpfand -''<br /> +''Blüh im Glanze dieses Glückes,''<br /> +''Blühe, deutsches Vaterland!<br />'' + +[[Kategoreja:Himni]] +[[Kategoreja:Vuocejis kultura]] + 9a9v4nxdiqxpv9zzugdlc5tlu30uk8t + + + + Gersika + 0 + 2619 + + 31782 + 29981 + 2016-12-02T06:28:41Z + + Murbaut + 3631 + + wikitext + text/x-wiki + '''Gersika''' — latgaļu [[Vydslaiki|Vydslaiku]] vaļsteiba; +{{stub}} + 9d1vandaxx03x1bcvtbynmh8uhouruk + + + + Gersika (zeimeibu škieršona) + 0 + 2620 + + 29983 + 29982 + 2013-08-16T06:27:41Z + + Itt55 + 2092 + + wikitext + text/x-wiki + '''Gersika''' var byut: +* [[Gersika]] — latgaļu [[Vydslaiki|Vydslaiku]] vaļsteiba; +* [[Gersika (sola)]] — sola [[Leivuona nūvods|Leivuona nūvodā]], [[Gersikys pogosts|Gersikys pogosta]] centris + +== Vr. taipoš == +* [[Gersikys upsola]] +* [[Gersikys pogosts]] +* [[Gersikys ūļneica]] +* [[Gersikys mīra dasaruna]] + 489za9c1z0n9503jugmpe38qytkovaq + + + + Taiss:Opoly styuri + 10 + 2622 + + 30057 + 2013-08-25T21:08:43Z + + Vilnisr + 1606 + + Jauna lapa: <includeonly>{{border-radius|1em}} {{box-shadow|0.1em|0.1em|0.5em|rgba(0,0,0,0.75)}}</includeonly><!-- --><noinclude> <!-- ADD CATEGORIES AND INTERWIKIS TO THE /doc PAGE, NOT HERE, T... + wikitext + text/x-wiki + <includeonly>{{border-radius|1em}} {{box-shadow|0.1em|0.1em|0.5em|rgba(0,0,0,0.75)}}</includeonly><!-- +--><noinclude> + +<!-- ADD CATEGORIES AND INTERWIKIS TO THE /doc PAGE, NOT HERE, THANKS --> +{{documentation}} +</noinclude> + f6kaot7f4szb8piw92vkc7kd8fkv2i8 + + + + Taiss:Opoly styuri/doc + 10 + 2623 + + 30058 + 2013-08-25T21:09:58Z + + Vilnisr + 1606 + + Jauna lapa: {{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> === Usage === This template is used to produce rounded corners for tables. Just em... + wikitext + text/x-wiki + {{Documentation subpage}} +<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> + +=== Usage === + +This template is used to produce rounded corners for tables. Just embed it in any <nowiki><div>, <table>: etc.</nowiki> element. + +==== Example ==== + +<pre><div style="background-color: #ffff66; {{Opoly styuri}} padding: 0.5em 1em;">Text text text</div></pre> +:''which produces:'' +<div style="background-color: #ffff66; {{Opoly styuri}} padding: 0.5em 1em;">Text text text</div> + +<includeonly> +<!-- CATEGORIES AND INTERWIKIS HERE, THANKS --> + +</includeonly> + ds6xu3aprgc3j5x1qy67z70blzmu42h + + + + Taiss:Border-radius + 10 + 2624 + + 30059 + 2013-08-25T21:11:38Z + + Vilnisr + 1606 + + Jauna lapa: <includeonly>-moz-border-radius: {{{1|8px}}}; -webkit-border-radius: {{{1|8px}}}; border-radius: {{{1|8px}}};</includeonly><noinclude> <!-- ADD CATEGORIES AND INTERWIKIS TO THE /doc ... + wikitext + text/x-wiki + <includeonly>-moz-border-radius: {{{1|8px}}}; -webkit-border-radius: {{{1|8px}}}; border-radius: {{{1|8px}}};</includeonly><noinclude> + +<!-- ADD CATEGORIES AND INTERWIKIS TO THE /doc PAGE, NOT HERE, THANKS --> +{{documentation}} +</noinclude> + kh0kskeuq5bluwqetzmmevdazb7mon9 + + + + Taiss:Border-radius/doc + 10 + 2625 + + 30061 + 30060 + 2013-08-25T21:12:43Z + + Vilnisr + 1606 + + /* See also */ + wikitext + text/x-wiki + {{Documentation subpage}} +<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> + +This template is a shortcut for producing rounded corners. It generates the CSS for various browsers. Supported browsers are the current versions of Opera, Firefox, Safari, Chrome and Internet Explorer 9. + +=== Usage === + +Insert this template within a style tag of any block-style element: + +<code><nowiki>{{border-radius | radius1 [radius2 radius3 radius4]}}</nowiki></code> + +* If one value is set, this radius applies to all 4 corners. +* If four values are set, they apply to the top-left, top-right, bottom-right, bottom-left corner in that order. + +Do not use two or three values, as this results in different rendering between various browsers. + +=== Example === + +* <code>&lt;div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; '''<nowiki>{{border-radius|16px 8px 16px 8px}}</nowiki>'''">Lorem ipsum...&lt;/div></code> will produce: + +<div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{border-radius|16px 8px 16px 8px}}">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div> + +=== Compatibility === +* See [https://developer.mozilla.org/en-US/docs/CSS/border-radius#Browser_compatibility border-radius] on the Mozilla Developer Network for all broswer compatibility details. + + + +<includeonly> +<!-- CATEGORIES AND INTERWIKIS HERE, THANKS --> + + +</includeonly> + 6yn34k2vc6inkjpm2y79578ulg4fojk + + + + Taiss:Box-shadow + 10 + 2626 + + 30062 + 2013-08-25T21:14:11Z + + Vilnisr + 1606 + + Jauna lapa: <includeonly>-moz-box-shadow: {{{1|4px}}} {{{2|4px}}} {{{3|4px}}} {{{4|#CCC}}}; -webkit-box-shadow: {{{1|4px}}} {{{2|4px}}} {{{3|4px}}} {{{4|#CCC}}}; box-shadow: {{{1|4px}}} {{{2|4px}... + wikitext + text/x-wiki + <includeonly>-moz-box-shadow: {{{1|4px}}} {{{2|4px}}} {{{3|4px}}} {{{4|#CCC}}}; -webkit-box-shadow: {{{1|4px}}} {{{2|4px}}} {{{3|4px}}} {{{4|#CCC}}}; box-shadow: {{{1|4px}}} {{{2|4px}}} {{{3|4px}}} {{{4|#CCC}}};</includeonly><noinclude> + +<!-- ADD CATEGORIES AND INTERWIKIS TO THE /doc PAGE, NOT HERE, THANKS --> +{{documentation}} +</noinclude> + 3mztbxemo5ei90g8037myayewz9ur2v + + + + Taiss:Box-shadow/doc + 10 + 2627 + + 30063 + 2013-08-25T21:14:30Z + + Vilnisr + 1606 + + Jauna lapa: {{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> This template is a shortcut for producing shadows. It generates the CSS for various... + wikitext + text/x-wiki + {{Documentation subpage}} +<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> + +This template is a shortcut for producing shadows. It generates the CSS for various browsers. Supported browsers are the current versions of Opera, Firefox, Safari, Chrome and Internet Explorer 9. + +=== Usage === + +Insert this template within a style tag of any element: + +<code><nowiki>{{box-shadow | X-offset | Y-offset | blur radius | #color}}</nowiki></code> + +* <code>X-offset</code> and <code>Y-offset</code> – Specify the offset of the shadow to the right and below the element. Use negative values for a shadow to the left and above. Default is 4px. +* <code>blur radius</code> – Specifies the width of blurring added to the shadow border. Default is 4px. +* <code>color</code> – Specifies the color of the shadow. Default is <code>#CCC;</code>. + +=== Example === + +* <code>&lt;div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; '''<nowiki>{{box-shadow}}</nowiki>'''">Lorem ipsum...&lt;/div></code> will produce a box with the default border shadow: + +<div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow}}">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div> + +* <code>&lt;div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; '''<nowiki>{{box-shadow|4px|4px|8px|#A0A080}}</nowiki>'''">Lorem ipsum...&lt;/div></code> will produce a more pronounced and colored shadow: + +<div style="background-color: #FFFFDD; border: 1px solid #808000; padding: 5px; {{box-shadow|4px|4px|8px|#A0A080}}">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div> + +=== Compatibility === +* See [https://developer.mozilla.org/en-US/docs/CSS/box-shadow#Browser_compatibility box-shadow] on the Mozilla Developer Network for all broswer compatibility details. + +=== See also === + +* {{tl|border-radius}} +* {{tl|linear-gradient}} +* {{tl|radial-gradient}} + +<includeonly> +<!-- CATEGORIES AND INTERWIKIS HERE, THANKS --> + +</includeonly> + ryd76wvtl07ja99n6vigqh20fhxoimj + + + + Viļne + 0 + 2662 + + 32123 + 31334 + 2017-07-28T21:58:30Z + + Pofka + 3977 + + wikitext + text/x-wiki + [[File:Vilnius Modern Skyline At Dusk, Lithuania - Diliff.jpg|thumb|right|Viļne]] +'''Viļne''' ([[Lītaunīku volūda|lt.]] - ''Vilnius'') - [[Lītova|Lītovys]] golvysmīsts i pats leluokais mīsts. + +[[Kategoreja:Lītovys mīsti]] + lkr3o8ls4wku8o2cmdu563q4v0en299 + + + + Kategoreja:Sociologeja + 14 + 2674 + + 30139 + 2013-11-09T11:50:14Z + + Turaids + 172 + + Pīvīnouju kategoreju. + wikitext + text/x-wiki + [[Kategoreja:Socialuos zineibys]] + dztc6a9yhh65ip0fforucu3h58jtmja + + + + Siligo + 0 + 2713 + + 31295 + 30247 + 2016-02-06T12:39:41Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + '''Siligo''' irā mīsts [[Italeja]] + + +{{Nadabeigts rakstīņs}} +[[Kategoreja:Italeja]] + c56m6utn7svbrz6nd642jb0u4a6roj9 + + + + Kongeriket Norge + 0 + 2718 + + + 30264 + 2014-04-03T18:58:05Z + + Magnefl + 1865 + + Pāradresē uz [[Norvegeja]] + wikitext + text/x-wiki + #redirect [[Norvegeja]] + m9s1svqko82uzaxz9j4grtus3vzdxgc + + + + Kongeriket Noreg + 0 + 2719 + + + 30265 + 2014-04-03T18:58:32Z + + Magnefl + 1865 + + Pāradresē uz [[Norvegeja]] + wikitext + text/x-wiki + #redirect [[Norvegeja]] + m9s1svqko82uzaxz9j4grtus3vzdxgc + + + + Ronalds Reigans + 0 + 2725 + + 30280 + 30278 + 2014-04-19T17:54:23Z + + Glossologist + 79 + + wikitext + text/x-wiki + {{Infoskreine +|bodystyle = width:20em; +|name = +|title = <big>'''Ronalds Reigans'''</big> +|titlestyle = +|headerstyle = +|labelstyle = width:33% +|datastyle = + +|image = [[Fails:Official Portrait of President Reagan 1981.jpg|220px]] +|caption = + +|header1 = ASV Prezidents + +|header2 = 1981—1989 +|label2 = +|data2 = +|header3 = +|label3 = Pyrmaguojiejs +|data3 = [[Džordžs H. V. Bušs]] +}} +'''Ronalds Vilsons Reigans''' ({{Vol-en|Ronald Wilson Reagan}}; [[1911]]—[[2004]]) beja [[Amerikys Saškierstuos Vaļsteibys|amerikanīšu]] politiks i akters, vaļsteibys četrudasmytais prezidents. + +== Teiklavītys == +{{Commonscat|Ronald Reagan}} +* [http://www.whitehouse.gov/administration/president_reagan/ Teiklavīta] <small>(anglīšu)</small> + +{{Nadabeigts rakstīņs}} +{{DEFAULTSORT:Reigans, Ronalds}} +[[Kategoreja:ASV ļauds]] +[[Kategoreja:Politiki]] + jywzsniql2qhv8su8d7dbbzq6lc1jr0 + + + + Ronald Reagan + 0 + 2727 + + + 30279 + 2014-04-19T17:50:34Z + + Glossologist + 79 + + Glossologist pārvietoja lapu [[Ronald Reagan]] uz [[Ronalds Reigans]] + wikitext + text/x-wiki + #REDIRECT [[Ronalds Reigans]] + 07q4hk5cc0e1hfa3ebn06kz8wufh4nr + + + + Anibals Kavaku Silva + 0 + 2728 + + 30314 + 30313 + 2014-04-19T19:50:35Z + + Glossologist + 79 + + wikitext + text/x-wiki + {{Infoskreine +|bodyclass = vcard +|name = +|title = '''<big>Anibals Kavaku Silva</big>''' +|titlestyle = fn org +|headerstyle = +|labelstyle = width:33% +|datastyle = + +|image = [[File:Cavaco Silva 2007.jpg|220px]] +|caption = Aníbal Cavaco Silva 2007 + +|header1 = Portugalīšu Republikys prezidents + +|header2 = 2006 — niule +|label2 = +|data2 = +|header3 = +|label3 = Pyrmaguojiejs +|data3 = [[Žorže Sampaiju]] +}} + +'''Anibals Kavaku Silva''' ({{vol-pt|Aníbal Cavaco Silva}}; dzims [[1939]]) — portugalīšu politiks, [[Portugaleja|Portugalīšu Republikys]] prezidents nu 2006 goda. + +== Teiklavītys == +{{Commonscat|Aníbal Cavaco Silva}} + + + +{{Nadabeigts rakstīņs}} +{{DEFAULTSORT:Silva, Anibals Kavaku}} +[[Kategoreja:Portugelejis prezidenti]] +[[Kategoreja:Portugalejis ļauds]] +[[Kategoreja:Politiki]] + tv4movyy1ge2us8yjt82zje3l83oy8q + + + + Kategoreja:Portugalejis Vaļsteibys prezidents + 14 + 2729 + + 30299 + 30282 + 2014-04-19T19:08:02Z + + Onuphriate + 2353 + + Nodzēsa lapu + wikitext + text/x-wiki + + phoiac9h4m842xq45sp7s6u21eteeq1 + + + + Kategoreja:Portugalejis ļauds + 14 + 2730 + + 30301 + 30283 + 2014-04-19T19:17:36Z + + Onuphriate + 2353 + + Nodzēsa lapu + wikitext + text/x-wiki + + phoiac9h4m842xq45sp7s6u21eteeq1 + + + + Kategoreja:Spanīšu volūda + 14 + 2731 + + 30286 + 2014-04-19T18:22:58Z + + Onuphriate + 2353 + + Jauna lapa: [[Kategoreja:Spaneja]] + wikitext + text/x-wiki + [[Kategoreja:Spaneja]] + 91crbq46jrsppbhd77bvaphaztqxfzx + + + + Portugalīšu volūda + 0 + 2732 + + 30780 + 30304 + 2015-05-25T18:23:51Z + + Jonathan1 + 2979 + + + wikitext + text/x-wiki + [[Fails:Map_of_the_portuguese_language_in_the_world.png|thumb|right|300px]] + +'''Portugalīšu volūda''' (''português'' aba ''língua portuguesa'') — ūtruo vysuvairuok runojamuo [[Romanīšu volūdys|romanīšu volūda]]. + +[[Kategoreja:Romanīšu volūdys]] +[[Kategoreja:Volūdys]] +[[Kategoreja:Portugaleja]] + 2pi70dg4p4y2t3icaacu9a0ceekfvl0 + + + + Portugāļu volūda + 0 + 2733 + + + 30305 + 30295 + 2014-04-19T19:39:25Z + + Glossologist + 79 + + Pāradresē uz [[Portugalīšu volūda]] + wikitext + text/x-wiki + #REDIRECT [[Portugalīšu volūda]] + dtfi7snhmegkuaqfnu57qf2alvp0v1r + + + + Aníbal Cavaco Silva + 0 + 2734 + + + 30315 + 30307 + 2014-04-19T19:53:43Z + + Xqbot + 96 + + + Robot: Fixing double redirect to [[Anibals Kavaku Silva]] + wikitext + text/x-wiki + #REDIRECT [[Anibals Kavaku Silva]] + k2xd1kxmp8y7bszmr1g6jbobzcn03gz + + + + Taiss:Vol-pt + 10 + 2735 + + 30309 + 2014-04-19T19:46:28Z + + Glossologist + 79 + + Jauna lapa: {{langWithName|pt|portugalīšu|''{{{1}}}''}}<noinclude> [[Kategoreja:Volūdu taisi|pt]] </noinclude> + wikitext + text/x-wiki + {{langWithName|pt|portugalīšu|''{{{1}}}''}}<noinclude> +[[Kategoreja:Volūdu taisi|pt]] + +</noinclude> + 6gs7lupuunnbsjllsp5pj4aww36lhp5 + + + + Anibals Kavako Silva + 0 + 2736 + + + 30311 + 2014-04-19T19:47:50Z + + Glossologist + 79 + + Glossologist pārvietoja lapu [[Anibals Kavako Silva]] uz [[Anibals Kavaku Silva]] + wikitext + text/x-wiki + #REDIRECT [[Anibals Kavaku Silva]] + k2xd1kxmp8y7bszmr1g6jbobzcn03gz + + + + Србија + 0 + 2744 + + + 30336 + 2014-05-31T22:35:36Z + + Крушевљанин Иван + 2442 + + Pāradresē uz [[Serbeja]] + wikitext + text/x-wiki + #REDIRECT [[Serbeja]] + 8bk8n887zx6wl7kaq6v95ldaa3ryy33 + + + + Sung Jae-gi + 0 + 2745 + + 31437 + 31426 + 2016-05-09T12:06:15Z + + Escarbot + 208 + + + wikidata interwiki + wikitext + text/x-wiki + '''Sung Jae-gi'''(Koreja:성재기;成在基, pīdzims 1967 godā September 11 - nūmyrs 2013 godā July 26) - [[Dienvidkoreja]]s politiks, Cilvektiesibas aktīvists un antifeminists. centralais objekts [[Cilvektiesibas]] ticeibā. + +== Dzeive == +* [http://english.donga.com/srv/service.php3?biid=2013072913348 Suicide performance and journalist ethics] News Dongah (English) +* [http://www.koreaherald.com/view.php?ud=20130729000881 Body of Sung Jae-gi found in Han River] Koreaherald 2013.07.29 (English) +* [http://www.koreatimes.co.kr/www/news/nation/2013/07/116_140028.html Activist's 'suicide' causes huge stir] Koreatimes 2013.07.26 (English) +* [http://english.yonhapnews.co.kr/news/2013/07/27/0200000000AEN20130727001300320.html Police continue search for missing men's rights activist] yonhapnews 2013.07.27 (English) + +{{stub}} + +[[Kategoreja:Cylvāki]] + nvkd6x3ie2tw3teowprmdlkrrtqs4v6 + + + + Trojany + 0 + 2746 + + 30836 + 30341 + 2015-08-08T12:18:07Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q7845134]] + wikitext + text/x-wiki + <table border=1 cellpadding=2 cellspacing=0 align=right width=275px> +<caption><font size=+1>'''Trojany'''<br /> +</font></caption> +<tr><td style=background:#efefef; align=center colspan=2> +<table border=0 cellpadding=2 cellspacing=0> +</table> +<tr><td align=center colspan=2>[http://maps.google.com/maps?ll=52.28,21.20&spn=0.02,0.02&t=k Trojany paceļnīkatvaigs]</td></tr> +<tr><td>Dzeivuotuoju<small>(2014)</small><td>490 +<tr><td>Vaivadeja<td>[[Mazowsze vaivadeja|Mazowsze]] +</table> +'''Trojany''' — sola [[Puoleja|Puolejis]] reitūs, [[Mazowsze]] vaivadejā. + +[[Kategoreja:Puolejis mīsti]] + 1qvsml4ib8cdefx47ud4yy1t5wmqoqp + + + + Modulis:Arguments + 828 + 2751 + + 30634 + 30357 + 2015-03-23T18:06:29Z + + Edgars2007 + 114 + + Scribunto + text/plain + -- This module provides easy processing of arguments passed to Scribunto from +-- #invoke. It is intended for use by other Lua modules, and should not be +-- called from #invoke directly. + +local libraryUtil = require('libraryUtil') +local checkType = libraryUtil.checkType + +local arguments = {} + +-- Generate four different tidyVal functions, so that we don't have to check the +-- options every time we call it. + +local function tidyValDefault(key, val) + if type(val) == 'string' then + val = val:match('^%s*(.-)%s*$') + if val == '' then + return nil + else + return val + end + else + return val + end +end + +local function tidyValTrimOnly(key, val) + if type(val) == 'string' then + return val:match('^%s*(.-)%s*$') + else + return val + end +end + +local function tidyValRemoveBlanksOnly(key, val) + if type(val) == 'string' then + if val:find('%S') then + return val + else + return nil + end + else + return val + end +end + +local function tidyValNoChange(key, val) + return val +end + +local function matchesTitle(given, title) + local tp = type( given ) + return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title +end + +function arguments.getArgs(frame, options) + checkType('getArgs', 1, frame, 'table', true) + checkType('getArgs', 2, options, 'table', true) + frame = frame or {} + options = options or {} + + --[[ + -- Get the argument tables. If we were passed a valid frame object, get the + -- frame arguments (fargs) and the parent frame arguments (pargs), depending + -- on the options set and on the parent frame's availability. If we weren't + -- passed a valid frame object, we are being called from another Lua module + -- or from the debug console, so assume that we were passed a table of args + -- directly, and assign it to a new variable (luaArgs). + --]] + local fargs, pargs, luaArgs + if type(frame.args) == 'table' and type(frame.getParent) == 'function' then + if options.wrappers then + --[[ + -- The wrappers option makes Module:Arguments look up arguments in + -- either the frame argument table or the parent argument table, but + -- not both. This means that users can use either the #invoke syntax + -- or a wrapper template without the loss of performance associated + -- with looking arguments up in both the frame and the parent frame. + -- Module:Arguments will look up arguments in the parent frame + -- if it finds the parent frame's title in options.wrapper; + -- otherwise it will look up arguments in the frame object passed + -- to getArgs. + --]] + local parent = frame:getParent() + if not parent then + fargs = frame.args + else + local title = parent:getTitle():gsub('/sandbox$', '') + local found = false + if matchesTitle(options.wrappers, title) then + found = true + elseif type(options.wrappers) == 'table' then + for _,v in pairs(options.wrappers) do + if matchesTitle(v, title) then + found = true + break + end + end + end + + -- We test for false specifically here so that nil (the default) acts like true. + if found or options.frameOnly == false then + pargs = parent.args + end + if not found or options.parentOnly == false then + fargs = frame.args + end + end + else + -- options.wrapper isn't set, so check the other options. + if not options.parentOnly then + fargs = frame.args + end + if not options.frameOnly then + local parent = frame:getParent() + pargs = parent and parent.args or nil + end + end + if options.parentFirst then + fargs, pargs = pargs, fargs + end + else + luaArgs = frame + end + + -- Set the order of precedence of the argument tables. If the variables are + -- nil, nothing will be added to the table, which is how we avoid clashes + -- between the frame/parent args and the Lua args. + local argTables = {fargs} + argTables[#argTables + 1] = pargs + argTables[#argTables + 1] = luaArgs + + --[[ + -- Generate the tidyVal function. If it has been specified by the user, we + -- use that; if not, we choose one of four functions depending on the + -- options chosen. This is so that we don't have to call the options table + -- every time the function is called. + --]] + local tidyVal = options.valueFunc + if tidyVal then + if type(tidyVal) ~= 'function' then + error( + "bad value assigned to option 'valueFunc'" + .. '(function expected, got ' + .. type(tidyVal) + .. ')', + 2 + ) + end + elseif options.trim ~= false then + if options.removeBlanks ~= false then + tidyVal = tidyValDefault + else + tidyVal = tidyValTrimOnly + end + else + if options.removeBlanks ~= false then + tidyVal = tidyValRemoveBlanksOnly + else + tidyVal = tidyValNoChange + end + end + + --[[ + -- Set up the args, metaArgs and nilArgs tables. args will be the one + -- accessed from functions, and metaArgs will hold the actual arguments. Nil + -- arguments are memoized in nilArgs, and the metatable connects all of them + -- together. + --]] + local args, metaArgs, nilArgs, metatable = {}, {}, {}, {} + setmetatable(args, metatable) + + local function mergeArgs(tables) + --[[ + -- Accepts multiple tables as input and merges their keys and values + -- into one table. If a value is already present it is not overwritten; + -- tables listed earlier have precedence. We are also memoizing nil + -- values, which can be overwritten if they are 's' (soft). + --]] + for _, t in ipairs(tables) do + for key, val in pairs(t) do + if metaArgs[key] == nil and nilArgs[key] ~= 'h' then + local tidiedVal = tidyVal(key, val) + if tidiedVal == nil then + nilArgs[key] = 's' + else + metaArgs[key] = tidiedVal + end + end + end + end + end + + --[[ + -- Define metatable behaviour. Arguments are memoized in the metaArgs table, + -- and are only fetched from the argument tables once. Fetching arguments + -- from the argument tables is the most resource-intensive step in this + -- module, so we try and avoid it where possible. For this reason, nil + -- arguments are also memoized, in the nilArgs table. Also, we keep a record + -- in the metatable of when pairs and ipairs have been called, so we do not + -- run pairs and ipairs on the argument tables more than once. We also do + -- not run ipairs on fargs and pargs if pairs has already been run, as all + -- the arguments will already have been copied over. + --]] + + metatable.__index = function (t, key) + --[[ + -- Fetches an argument when the args table is indexed. First we check + -- to see if the value is memoized, and if not we try and fetch it from + -- the argument tables. When we check memoization, we need to check + -- metaArgs before nilArgs, as both can be non-nil at the same time. + -- If the argument is not present in metaArgs, we also check whether + -- pairs has been run yet. If pairs has already been run, we return nil. + -- This is because all the arguments will have already been copied into + -- metaArgs by the mergeArgs function, meaning that any other arguments + -- must be nil. + --]] + local val = metaArgs[key] + if val ~= nil then + return val + elseif metatable.donePairs or nilArgs[key] then + return nil + end + for _, argTable in ipairs(argTables) do + local argTableVal = tidyVal(key, argTable[key]) + if argTableVal ~= nil then + metaArgs[key] = argTableVal + return argTableVal + end + end + nilArgs[key] = 'h' + return nil + end + + metatable.__newindex = function (t, key, val) + -- This function is called when a module tries to add a new value to the + -- args table, or tries to change an existing value. + if options.readOnly then + error( + 'could not write to argument table key "' + .. tostring(key) + .. '"; the table is read-only', + 2 + ) + elseif options.noOverwrite and args[key] ~= nil then + error( + 'could not write to argument table key "' + .. tostring(key) + .. '"; overwriting existing arguments is not permitted', + 2 + ) + elseif val == nil then + --[[ + -- If the argument is to be overwritten with nil, we need to erase + -- the value in metaArgs, so that __index, __pairs and __ipairs do + -- not use a previous existing value, if present; and we also need + -- to memoize the nil in nilArgs, so that the value isn't looked + -- up in the argument tables if it is accessed again. + --]] + metaArgs[key] = nil + nilArgs[key] = 'h' + else + metaArgs[key] = val + end + end + + metatable.__pairs = function () + -- Called when pairs is run on the args table. + if not metatable.donePairs then + mergeArgs(argTables) + metatable.donePairs = true + end + return pairs(metaArgs) + end + + local function inext(t, i) + -- This uses our __index metamethod + local v = t[i + 1] + if v ~= nil then + return i + 1, v + end + end + + metatable.__ipairs = function (t) + -- Called when ipairs is run on the args table. + return inext, t, 0 + end + + return args +end + +return arguments + t970zub1k7inh2aeu97r09x0r0tku4d + + + + Modulis:Break + 828 + 2752 + + 30358 + 2014-06-21T09:27:36Z + + Edgars2007 + 114 + + Jauna lapa: -- This module implements {{break}} local p = {} function p.main( frame ) local num = frame.args[1] or '' num = tonumber( num ) if not num or num < 1 or math.floor( num... + Scribunto + text/plain + -- This module implements {{break}} + +local p = {} + +function p.main( frame ) + local num = frame.args[1] or '' + num = tonumber( num ) + if not num or num < 1 or math.floor( num ) ~= num or num == math.huge then + num = 1 + end + return mw.ustring.rep( '<br />', num ) +end + +return p + 6qg4mjb5umh2srfpkxnlb85eq117qun + + + + Modulis:Category handler + 828 + 2753 + + 30359 + 2014-06-21T09:29:10Z + + Edgars2007 + 114 + + Jauna lapa: ---------------------------------------------------------------------------------------------------------- --... + Scribunto + text/plain + ---------------------------------------------------------------------------------------------------------- +-- -- +-- CATEGORY HANDLER -- +-- -- +-- This module implements the {{category handler}} template in Lua, with a few improvements: all -- +-- namespaces and all namespace aliases are supported, and namespace names are detected -- +-- automatically for the local wiki. This module requires [[Module:Namespace detect]] and -- +-- [[Module:Yesno]] to be available on the local wiki. It can be configured for different wikis -- +-- by altering the values in the "cfg" table. -- +-- -- +---------------------------------------------------------------------------------------------------------- + +---------------------------------------------------------------------------------------------------------- +-- Configuration data -- +-- Language-specific parameter names and values can be set here. -- +---------------------------------------------------------------------------------------------------------- + +local cfg = {} + +-- The following config values set the names of parameters that suppress categorisation. They are used +-- with Module:Yesno, and work as follows: +-- +-- cfg.nocat: +-- Result of yesno(args[cfg.nocat]) Effect +-- true Categorisation is suppressed +-- false Categorisation is allowed, and the blacklist check is skipped +-- nil Categorisation is allowed +-- +-- cfg.categories: +-- Result of yesno(args[cfg.categories]) Effect +-- true Categorisation is allowed, and the blacklist check is skipped +-- false Categorisation is suppressed +-- nil Categorisation is allowed +cfg.nocat = 'nocat' +cfg.categories = 'categories' + +-- The parameter name for the legacy "category2" parameter. This skips the blacklist if set to the +-- cfg.category2Yes value, and suppresses categorisation if present but equal to anything other than +-- cfg.category2Yes or cfg.category2Negative. +cfg.category2 = 'category2' +cfg.category2Yes = 'yes' +cfg.category2Negative = '¬' + +-- cfg.subpage is the parameter name to specify how to behave on subpages. cfg.subpageNo is the value to +-- specify to not categorise on subpages; cfg.only is the value to specify to only categorise on subpages. +cfg.subpage = 'subpage' +cfg.subpageNo = 'no' +cfg.subpageOnly = 'only' + +-- The parameter for data to return in all namespaces. +cfg.all = 'all' + +-- The parameter name for data to return if no data is specified for the namespace that is detected. This +-- must be the same as the cfg.other parameter in [[Module:Namespace detect]]. +cfg.other = 'other' + +-- The parameter name used to specify a page other than the current page; used for testing and +-- demonstration. This must be the same as the cfg.page parameter in [[Module:Namespace detect]]. +cfg.page = 'page' + +-- The categorisation blacklist. Pages that match Lua patterns in this list will not be categorised. +-- (However, see the explanation of cfg.nocat, cfg.categories and cfg.category2 for some exceptions.) +-- If the namespace name has a space in, it must be written with an underscore, e.g. "Wikipedia_talk". +-- Other parts of the title can have either underscores or spaces. +cfg.blacklist = { + '^Sākumlapa$', -- don't categorise the main page. + + -- Don't categorise the following pages or their subpages. + '^Wikipedia:Cascade%-protected items$', + '^Wikipedia:Cascade%-protected items/.*$', + '^User:UBX$', -- The userbox "template" space. + '^User:UBX/.*$', + '^User_talk:UBX$', + '^User_talk:UBX/.*$', + + -- Don't categorise subpages of these pages, but allow + -- categorisation of the base page. + '^Wikipedia:Template messages/.+$', + + '/[aA]rchive' -- Don't categorise archives. +} + +-- This is a table of namespaces to categorise by default. They should be in the format of parameter +-- names accepted by [[Module:Namespace detect]]. +cfg.defaultNamespaces = { + 'main', + 'file', + 'help', + 'category' +} + +---------------------------------------------------------------------------------------------------------- +-- End configuration data -- +---------------------------------------------------------------------------------------------------------- + +-- Get dependent modules +local nsDetect = require('Module:Namespace detect') +local yesno = require('Module:Yesno') + +---------------------------------------------------------------------------------------------------------- +-- Local functions -- +-- The following are internal functions, which we do not want to be accessible from other modules. -- +---------------------------------------------------------------------------------------------------------- + +-- Find whether we need to return a category or not. +local function needsCategory(pageObject, args) + -- Don't categorise if the relevant options are set. + if yesno(args[cfg.nocat]) + or yesno(args[cfg.categories]) == false + or ( + args[cfg.category2] + and args[cfg.category2] ~= cfg.category2Yes + and args[cfg.category2] ~= cfg.category2Negative + ) + then + return false + end + -- If there is no pageObject available, then that either means that we are over + -- the expensive function limit or that the title specified was invalid. Invalid + -- titles will probably only be a problem during testing, so we choose the best + -- fallback for being over the expensive function limit. The fallback behaviour + -- of the old template was to assume the page was not a subpage, so we will do + -- the same here. + if args[cfg.subpage] == cfg.subpageNo and pageObject and pageObject.isSubpage then + return false + end + if args[cfg.subpage] == cfg.subpageOnly + and (not pageObject or (pageObject and not pageObject.isSubpage)) + then + return false + end + return true +end + +-- Find whether we need to check the blacklist or not. +local function needsBlacklistCheck(args) + if yesno(args[cfg.nocat]) == false + or yesno(args[cfg.categories]) == true + or args[cfg.category2] == cfg.category2Yes + then + return false + else + return true + end +end + +-- Find whether any namespace parameters have been specified. +-- Mappings is the table of parameter mappings taken from +-- [[Module:Namespace detect]]. +local function nsParamsExist(mappings, args) + if args[cfg.all] or args[cfg.other] then + return true + end + for ns, params in pairs(mappings) do + for i, param in ipairs(params) do + if args[param] then + return true + end + end + end + return false +end + +---------------------------------------------------------------------------------------------------------- +-- Global functions -- +-- The following functions are global, because we want them to be accessible from #invoke and -- +-- from other Lua modules. -- +---------------------------------------------------------------------------------------------------------- + +local p = {} + +-- Find if a string matches the blacklist. Returns the match if one is found, or nil otherwise. +-- Input should be a page title with a namespace prefix, e.g. "Wikipedia talk:Articles for deletion". +function p.matchesBlacklist(page) + if type(page) ~= 'string' then return end + for i, pattern in ipairs(cfg.blacklist) do + local match = mw.ustring.match(page, pattern) + if match then + return match + end + end +end + +-- The main structure of the module. Checks whether we need to categorise, +-- and then passes the relevant arguments to [[Module:Namespace detect]]. +function p._main(args) + -- Get the page object and argument mappings from + -- [[Module:Namespace detect]], to save us from having to rewrite the + -- code. + local pageObject = nsDetect.getPageObject(args[cfg.page]) + local mappings = nsDetect.getParamMappings() + + if not needsCategory(pageObject, args) then return end + + local ret = '' + -- Check blacklist if necessary. + if not needsBlacklistCheck(args) or not p.matchesBlacklist(pageObject.prefixedText) then + if not nsParamsExist(mappings, args) then + -- No namespace parameters exist; basic usage. Pass args[1] to + -- [[Module:Namespace detect]] using the default namespace + -- parameters, and return the result. + local ndargs = {} + for _, ndarg in ipairs(cfg.defaultNamespaces) do + ndargs[ndarg] = args[1] + end + ndargs.page = args.page + ndargs.demospace = args.demospace + local ndresult = nsDetect._main(ndargs) + if ndresult then + ret = ret .. ndresult + end + else + -- Namespace parameters exist; advanced usage. + -- If the all parameter is specified, return it. + local all = args.all + if type(all) == 'string' then + ret = ret .. all + end + + -- Get the arguments to pass to [[Module:Namespace detect]]. + local ndargs = {} + for ns, params in pairs(mappings) do + for _, param in ipairs(params) do + ndargs[param] = args[param] or args[cfg.other] or nil + end + end + ndargs.other = args.other + ndargs.page = args.page + ndargs.demospace = args.demospace + + local data = nsDetect._main(ndargs) + + -- Work out what to return based on the result of the namespace detect call. + local datanum = tonumber(data) + if type(datanum) == 'number' then + -- "data" is a number, so return that positional parameter. + -- Remove non-positive integer values, as only positive integers + -- from 1-10 were used with the old template. + if datanum > 0 and math.floor(datanum) == datanum then + local dataArg = args[datanum] + if type(dataArg) == 'string' then + ret = ret .. dataArg + end + end + else + -- "data" is not a number, so return it as it is. + if type(data) == 'string' then + ret = ret .. data + end + end + end + end + return ret +end + +function p.main(frame) + -- If called via #invoke, use the args passed into the invoking + -- template, or the args passed to #invoke if any exist. Otherwise + -- assume args are being passed directly in. + local origArgs + if frame == mw.getCurrentFrame() then + origArgs = frame:getParent().args + for k, v in pairs(frame.args) do + origArgs = frame.args + break + end + else + origArgs = frame + end + + -- Trim whitespace and remove blank arguments for the following args: + -- 1, 2, 3 etc., "nocat", "categories", "subpage", and "page". + local args = {} + for k, v in pairs(origArgs) do + if type(v) == 'string' then + v = mw.text.trim(v) -- Trim whitespace. + end + if type(k) == 'number' + or k == cfg.nocat + or k == cfg.categories + or k == cfg.subpage + or k == cfg.page + then + if v ~= '' then + args[k] = v + end + else + args[k] = v + end + end + + -- Lower-case "nocat", "categories", "category2", and "subpage". These + -- parameters are put in lower case whenever they appear in the old + -- template, so we can just do it once here and save ourselves some work. + local lowercase = {cfg.nocat, cfg.categories, cfg.category2, cfg.subpage} + for _, v in ipairs(lowercase) do + local argVal = args[v] + if type(argVal) == 'string' then + args[v] = mw.ustring.lower(argVal) + end + end + + return p._main(args) +end + +return p + dzftwqzqkkb2cfe3h2q8ce3nl6c1jvm + + + + Modulis:Comma separated entries + 828 + 2754 + + 30360 + 2014-06-21T09:30:11Z + + Edgars2007 + 114 + + Jauna lapa: local p = {} local function _main( args ) local sep = mw.message.new( 'comma-separator' ):plain() return table.concat( args, sep ) end function p.main( frame ) local ori... + Scribunto + text/plain + local p = {} + +local function _main( args ) + local sep = mw.message.new( 'comma-separator' ):plain() + return table.concat( args, sep ) +end + +function p.main( frame ) + local origArgs + if frame == mw.getCurrentFrame() then + -- We're being called via #invoke. If the invoking template passed any arguments, + -- use them. Otherwise, use the arguments that were passed into the template. + origArgs = frame:getParent().args + for k, v in pairs( frame.args ) do + origArgs = frame.args + break + end + else + -- We're being called from another module or from the debug console, so assume + -- the arguments are passed in directly. + origArgs = frame + end + + -- Use integer args only, and allow for explicit positional arguments + -- that are specified out of order, e.g. {{br separated entries|3=entry3}}. + -- After processing, the args can be accessed accurately from ipairs. + local args = {} + for k, v in pairs( origArgs ) do + if type( k ) == 'number' + and k >= 1 + and math.floor( k ) == k + and mw.ustring.match( v, '%S' ) -- Remove blank or whitespace values. + then + table.insert( args, k ) + end + end + table.sort( args ) + for i,v in ipairs( args ) do + args[ i ] = origArgs[ v ] + -- Trim whitespace from all args. + if type( args[ i ] ) == 'string' then + args[ i ] = mw.text.trim( args[ i ] ) + end + end + + return _main( args ) +end + +return p + qhbty2hyf8g6cf6azovtpwhf3wpbme0 + + + + Modulis:Coordinates + 828 + 2755 + + 30623 + 30622 + 2015-03-23T17:54:25Z + + Edgars2007 + 114 + + Scribunto + text/plain + --[[ +This module is intended to replace the functionality of {{Coord}} and related +templates. It provides several methods, including + +{{#Invoke:Coordinates | coord }} : General function formatting and displaying +coordinate values. + +{{#Invoke:Coordinates | dec2dms }} : Simple function for converting decimal +degree values to DMS format. + +{{#Invoke:Coordinates | dms2dec }} : Simple function for converting DMS format +to decimal degree format. + +{{#Invoke:Coordinates | link }} : Export the link used to reach the tools + +]] + +local math_mod = require("Module:Math") +local coordinates = {}; + +local current_page = mw.title.getCurrentTitle() +local page_name = mw.uri.encode( current_page.prefixedText, 'WIKI' ); +local coord_link = '//tools.wmflabs.org/geohack/geohack.php?pagename=' .. page_name .. '&params=' + +--[[ Helper function, replacement for {{coord/display/title}} ]] +local function displaytitle(s, notes) + local l = "Koordinatys: " .. s + local co = '<span id="coordinates">' .. l .. notes .. '</span>'; + return '<span style="font-size: small;">' .. co .. '</span>'; +end + +--[[ Helper function, Replacement for {{coord/display/inline}} ]] +local function displayinline(s, notes) + return s .. notes +end + +--[[ Helper function, used in detecting DMS formatting ]] +local function dmsTest(first, second) + if type(first) ~= 'string' or type(second) ~= 'string' then + return nil + end + local s = (first .. second):upper() + return s:find('^[NS][EW]$') or s:find('^[EW][NS]$') +end + + +--[[ Wrapper function to grab args, see Module:Arguments for this function's documentation. ]] +local function makeInvokeFunc(funcName) + return function (frame) + local args = require('Module:Arguments').getArgs(frame, { + wrappers = 'Template:Coord' + }) + return coordinates[funcName](args) + end +end + +--[[ Helper function, handle optional args. ]] +local function optionalArg(arg, supplement) + return arg and arg .. supplement or '' +end + +--[[ +Formats any error messages generated for display +]] +local function errorPrinter(errors) + local result = "" + for i,v in ipairs(errors) do + local errorHTML = '<strong class="error">Coordinates: ' .. v[2] .. '</strong>' + result = result .. errorHTML .. "<br />" + end + return result +end + +--[[ +Determine the required CSS class to display coordinates + +Usually geo-nondefault is hidden by CSS, unless a user has overridden this for himself +default is the mode as specificied by the user when calling the {{coord}} template +mode is the display mode (dec or dms) that we will need to determine the css class for +]] +local function displayDefault(default, mode) + if default == "" then + default = "dec" + end + + if default == mode then + return "geo-default" + else + return "geo-nondefault" + end +end + +--[[ +specPrinter + +Output formatter. Takes the structure generated by either parseDec +or parseDMS and formats it for inclusion on Wikipedia. +]] +local function specPrinter(args, coordinateSpec) + local uriComponents = coordinateSpec["param"] + if uriComponents == "" then + -- RETURN error, should never be empty or nil + return "ERROR param was empty" + end + if args["name"] then + uriComponents = uriComponents .. "&title=" .. mw.uri.encode(coordinateSpec["name"]) + end + + local geodmshtml = '<span class="geo-dms-ltgvers" title="Maps, aerial photos, and other data for this location">' + .. '<span class="latitude-ltgvers">' .. coordinateSpec["dms-lat"] .. '</span> ' + .. '<span class="longitude-ltgvers">' ..coordinateSpec["dms-long"] .. '</span>' + .. '</span>' + + local lat = tonumber( coordinateSpec["dec-lat"] ) or 0 + local geodeclat + if lat < 0 then + -- FIXME this breaks the pre-existing precision + geodeclat = tostring(coordinateSpec["dec-lat"]):sub(2) .. "°S" + else + geodeclat = (coordinateSpec["dec-lat"] or 0) .. "°N" + end + + local long = tonumber( coordinateSpec["dec-long"] ) or 0 + local geodeclong + if long < 0 then + -- FIXME does not handle unicode minus + geodeclong = tostring(coordinateSpec["dec-long"]):sub(2) .. "°W" + else + geodeclong = (coordinateSpec["dec-long"] or 0) .. "°E" + end + + local geodechtml = '' + + local geonumhtml = '<span class="geo-ltg">' + .. coordinateSpec["dec-lat"] .. '; ' + .. coordinateSpec["dec-long"] + .. '</span>' + + local inner = '<span class="' .. displayDefault(coordinateSpec["default"], "dms" ) .. '">' .. geodmshtml .. '</span>' + .. '<span class="geo-multi-punct">&#xfeff; / &#xfeff;</span>' + .. '<span class="' .. displayDefault(coordinateSpec["default"], "dec" ) .. '">'; + + if not args["name"] then + inner = inner .. geodechtml + .. '<span style="display:none">&#xfeff; / ' .. geonumhtml .. '</span></span>' + else + inner = inner .. '<span class="vcard">' .. geodechtml + .. '<span style="display:none">&#xfeff; / ' .. geonumhtml .. '</span>' + .. '<span style="display:none">&#xfeff; (<span class="fn org">' + .. args["name"] .. '</span>)</span></span></span>' + end + + return '<span class="plainlinks nourlexpansion">' .. + '[' .. coord_link .. uriComponents .. ' ' .. inner .. ']' .. '</span>' +end + +--[[ Helper function, convert decimal to degrees ]] +local function convert_dec2dms_d(coordinate) + local d = math_mod._round( coordinate, 0 ) .. "°" + return d .. "" +end + +--[[ Helper function, convert decimal to degrees and minutes ]] +local function convert_dec2dms_dm(coordinate) + coordinate = math_mod._round( coordinate * 60, 0 ); + local m = coordinate % 60; + coordinate = math.floor( (coordinate - m) / 60 ); + local d = coordinate % 360 .."°" + + return d .. string.format( "%02d′", m ) +end + +--[[ Helper function, convert decimal to degrees, minutes, and seconds ]] +local function convert_dec2dms_dms(coordinate) + coordinate = math_mod._round( coordinate * 60 * 60, 0 ); + local s = coordinate % 60 + coordinate = math.floor( (coordinate - s) / 60 ); + local m = coordinate % 60 + coordinate = math.floor( (coordinate - m) / 60 ); + local d = coordinate % 360 .."°" + + return d .. string.format( "%02d′", m ) .. string.format( "%02d″", s ) +end + +--[[ +Helper function, convert decimal latitude or longitude to +degrees, minutes, and seconds format based on the specified precision. +]] +local function convert_dec2dms(coordinate, firstPostfix, secondPostfix, precision) + local coord = tonumber(coordinate) + local postfix + if coord >= 0 then + postfix = firstPostfix + else + postfix = secondPostfix + end + + precision = precision:lower(); + if precision == "dms" then + return convert_dec2dms_dms( math.abs( coord ) ) .. postfix; + elseif precision == "dm" then + return convert_dec2dms_dm( math.abs( coord ) ) .. postfix; + elseif precision == "d" then + return convert_dec2dms_d( math.abs( coord ) ) .. postfix; + end +end + +--[[ +Convert DMS format into a N or E decimal coordinate +]] +local function convert_dms2dec(direction, degrees_str, minutes_str, seconds_str) + local degrees = tonumber(degrees_str) + local minutes = tonumber(minutes_str) or 0 + local seconds = tonumber(seconds_str) or 0 + + local factor = 1 + if direction == "S" or direction == "W" then + factor = -1 + end + + local precision = 0 + if seconds_str then + precision = 5 + math.max( math_mod._precision(seconds_str), 0 ); + elseif minutes_str and minutes_str ~= '' then + precision = 3 + math.max( math_mod._precision(minutes_str), 0 ); + else + precision = math.max( math_mod._precision(degrees_str), 0 ); + end + + local decimal = factor * (degrees+(minutes+seconds/60)/60) + return string.format( "%." .. precision .. "f", decimal ) -- not tonumber since this whole thing is string based. +end + +--[[ +Checks input values to for out of range errors. +]] +local function validate( lat_d, lat_m, lat_s, long_d, long_m, long_s, source, strong ) + local errors = {}; + lat_d = tonumber( lat_d ) or 0; + lat_m = tonumber( lat_m ) or 0; + lat_s = tonumber( lat_s ) or 0; + long_d = tonumber( long_d ) or 0; + long_m = tonumber( long_m ) or 0; + long_s = tonumber( long_s ) or 0; + + if strong then + if lat_d < 0 then + table.insert(errors, {source, "latitude degrees < 0 with hemisphere flag"}) + end + if long_d < 0 then + table.insert(errors, {source, "longitude degrees < 0 with hemisphere flag"}) + end + --[[ + #coordinates is inconsistent about whether this is an error. If globe: is + specified, it won't error on this condition, but otherwise it will. + + For not simply disable this check. + + if long_d > 180 then + table.insert(errors, {source, "longitude degrees > 180 with hemisphere flag"}) + end + ]] + end + + if lat_d > 90 then + table.insert(errors, {source, "latitude degrees > 90"}) + end + if lat_d < -90 then + table.insert(errors, {source, "latitude degrees < -90"}) + end + if lat_m >= 60 then + table.insert(errors, {source, "latitude minutes >= 60"}) + end + if lat_m < 0 then + table.insert(errors, {source, "latitude minutes < 0"}) + end + if lat_s >= 60 then + table.insert(errors, {source, "latitude seconds >= 60"}) + end + if lat_s < 0 then + table.insert(errors, {source, "latitude seconds < 0"}) + end + if long_d >= 360 then + table.insert(errors, {source, "longitude degrees >= 360"}) + end + if long_d <= -360 then + table.insert(errors, {source, "longitude degrees <= -360"}) + end + if long_m >= 60 then + table.insert(errors, {source, "longitude minutes >= 60"}) + end + if long_m < 0 then + table.insert(errors, {source, "longitude minutes < 0"}) + end + if long_s >= 60 then + table.insert(errors, {source, "longitude seconds >= 60"}) + end + if long_s < 0 then + table.insert(errors, {source, "longitude seconds < 0"}) + end + + return errors; +end + +--[[ +parseDec + +Transforms decimal format latitude and longitude into the a +structure to be used in displaying coordinates +]] +local function parseDec( lat, long, format ) + local coordinateSpec = {} + local errors = {} + + if not long then + return nil, {{"parseDec", "Missing longitude"}} + elseif not tonumber(long) then + return nil, {{"parseDec", "Longitude could not be parsed as a number: " .. long}} + end + + errors = validate( lat, nil, nil, long, nil, nil, 'parseDec', false ); + coordinateSpec["dec-lat"] = lat; + coordinateSpec["dec-long"] = long; + + local mode = coordinates.determineMode( lat, long ); + coordinateSpec["dms-lat"] = convert_dec2dms( lat, "N", "S", mode) -- {{coord/dec2dms|{{{1}}}|N|S|{{coord/prec dec|{{{1}}}|{{{2}}}}}}} + coordinateSpec["dms-long"] = convert_dec2dms( long, "E", "W", mode) -- {{coord/dec2dms|{{{2}}}|E|W|{{coord/prec dec|{{{1}}}|{{{2}}}}}}} + + if format then + coordinateSpec.default = format + else + coordinateSpec.default = "dec" + end + + return coordinateSpec, errors +end + +--[[ +parseDMS + +Transforms degrees, minutes, seconds format latitude and longitude +into the a structure to be used in displaying coordinates +]] +local function parseDMS( lat_d, lat_m, lat_s, lat_f, long_d, long_m, long_s, long_f, format ) + local coordinateSpec = {} + local errors = {} + + lat_f = lat_f:upper(); + long_f = long_f:upper(); + + -- Check if specified backward + if lat_f == 'E' or lat_f == 'W' then + local t_d, t_m, t_s, t_f; + t_d = lat_d; + t_m = lat_m; + t_s = lat_s; + t_f = lat_f; + lat_d = long_d; + lat_m = long_m; + lat_s = long_s; + lat_f = long_f; + long_d = t_d; + long_m = t_m; + long_s = t_s; + long_f = t_f; + end + + errors = validate( lat_d, lat_m, lat_s, long_d, long_m, long_s, 'parseDMS', true ); + if not long_d then + return nil, {{"parseDMS", "Missing longitude" }} + elseif not tonumber(long_d) then + return nil, {{"parseDMS", "Longitude could not be parsed as a number:" .. long_d }} + end + + if not lat_m and not lat_s and not long_m and not long_s and #errors == 0 then + if math_mod._precision( lat_d ) > 0 or math_mod._precision( long_d ) > 0 then + if lat_f:upper() == 'S' then + lat_d = '-' .. lat_d; + end + if long_f:upper() == 'W' then + long_d = '-' .. long_d; + end + + return parseDec( lat_d, long_d, format ); + end + end + + coordinateSpec["dms-lat"] = lat_d.."°"..optionalArg(lat_m,"′") .. optionalArg(lat_s,"″") .. lat_f + coordinateSpec["dms-long"] = long_d.."°"..optionalArg(long_m,"′") .. optionalArg(long_s,"″") .. long_f + coordinateSpec["dec-lat"] = convert_dms2dec(lat_f, lat_d, lat_m, lat_s) -- {{coord/dms2dec|{{{4}}}|{{{1}}}|0{{{2}}}|0{{{3}}}}} + coordinateSpec["dec-long"] = convert_dms2dec(long_f, long_d, long_m, long_s) -- {{coord/dms2dec|{{{8}}}|{{{5}}}|0{{{6}}}|0{{{7}}}}} + + if format then + coordinateSpec.default = format + else + coordinateSpec.default = "dms" + end + + return coordinateSpec, errors +end + +--[[ +Check the input arguments for coord to determine the kind of data being provided +and then make the necessary processing. +]] +local function formatTest(args) + local result, errors + local primary = false + + local function getParam(args, lim) + local ret = {} + for i = 1, lim do + ret[i] = args[i] or '' + end + return table.concat(ret, '_') + end + + if not args[1] then + -- no lat logic + return errorPrinter( {{"formatTest", "Missing latitude"}} ) + elseif not tonumber(args[1]) then + -- bad lat logic + return errorPrinter( {{"formatTest", "Unable to parse latitude as a number:" .. args[1]}} ) + elseif not args[4] and not args[5] and not args[6] then + -- dec logic + result, errors = parseDec(args[1], args[2], args.format) + if not result then + return errorPrinter(errors); + end + result.param = table.concat({args[1], 'N', args[2] or '', 'E', args[3] or ''}, '_') + elseif dmsTest(args[4], args[8]) then + -- dms logic + result, errors = parseDMS(args[1], args[2], args[3], args[4], + args[5], args[6], args[7], args[8], args.format) + if args[10] then + table.insert(errors, {'formatTest', 'Extra unexpected parameters'}) + end + if not result then + return errorPrinter(errors) + end + result.param = getParam(args, 9) + elseif dmsTest(args[3], args[6]) then + -- dm logic + result, errors = parseDMS(args[1], args[2], nil, args[3], + args[4], args[5], nil, args[6], args['format']) + if args[8] then + table.insert(errors, {'formatTest', 'Extra unexpected parameters'}) + end + if not result then + return errorPrinter(errors) + end + result.param = getParam(args, 7) + elseif dmsTest(args[2], args[4]) then + -- d logic + result, errors = parseDMS(args[1], nil, nil, args[2], + args[3], nil, nil, args[4], args.format) + if args[6] then + table.insert(errors, {'formatTest', 'Extra unexpected parameters'}) + end + if not result then + return errorPrinter(errors) + end + result.param = getParam(args, 5) + else + -- Error + return errorPrinter({{"formatTest", "Unknown argument format"}}) + end + result.name = args.name + + local extra_param = {'dim', 'globe', 'scale', 'region', 'source', 'type'} + for _, v in ipairs(extra_param) do + if args[v] then + table.insert(errors, {'formatTest', 'Parameter: "' .. v .. '=" should be "' .. v .. ':"' }) + end + end + + local ret = specPrinter(args, result) + if #errors > 0 then + ret = ret .. ' ' .. errorPrinter(errors) .. '[[Category:Lapas ar nepareizu koordinātu informāciju]]' + end + return ret +end + +--[[ +Generate Wikidata tracking categories. +]] +local function makeWikidataCategories() + local ret + if mw.wikibase and current_page.namespace == 0 then + local entity = mw.wikibase.getEntityObject() + if entity and entity.claims and entity.claims.P625 and entity.claims.P625[1] then + local snaktype = entity.claims.P625[1].mainsnak.snaktype + if snaktype == 'value' then + -- coordinates exist both here and on Wikidata, and can be compared. + ret = 'Koordinātas Vikidatos' + end + else + -- We have to either import the coordinates to Wikidata or remove them here. + ret = 'Koordinātas, kas nav Vikidatos' + end + end + if ret then + return string.format('[[Category:%s]]', ret) + else + return '' + end +end + +--[[ +link + +Simple function to export the coordinates link for other uses. + +Usage: + {{ Invoke:Coordinates | link }} + +]] +function coordinates.link(frame) + return coord_link; +end + +--[[ +dec2dms + +Wrapper to allow templates to call dec2dms directly. + +Usage: + {{ Invoke:Coordinates | dec2dms | decimal_coordinate | positive_suffix | + negative_suffix | precision }} + +decimal_coordinate is converted to DMS format. If positive, the positive_suffix +is appended (typical N or E), if negative, the negative suffix is appended. The +specified precision is one of 'D', 'DM', or 'DMS' to specify the level of detail +to use. +]] +coordinates.dec2dms = makeInvokeFunc('_dec2dms') +function coordinates._dec2dms(args) + local coordinate = args[1] + local firstPostfix = args[2] or '' + local secondPostfix = args[3] or '' + local precision = args[4] or '' + + return convert_dec2dms(coordinate, firstPostfix, secondPostfix, precision) +end + +--[[ +Helper function to determine whether to use D, DM, or DMS +format depending on the precision of the decimal input. +]] +function coordinates.determineMode( value1, value2 ) + local precision = math.max( math_mod._precision( value1 ), math_mod._precision( value2 ) ); + if precision <= 0 then + return 'd' + elseif precision <= 2 then + return 'dm'; + else + return 'dms'; + end +end + +--[[ +dms2dec + +Wrapper to allow templates to call dms2dec directly. + +Usage: + {{ Invoke:Coordinates | dms2dec | direction_flag | degrees | + minutes | seconds }} + +Converts DMS values specified as degrees, minutes, seconds too decimal format. +direction_flag is one of N, S, E, W, and determines whether the output is +positive (i.e. N and E) or negative (i.e. S and W). +]] +coordinates.dms2dec = makeInvokeFunc('_dms2dec') +function coordinates._dms2dec(args) + local direction = args[1] + local degrees = args[2] + local minutes = args[3] + local seconds = args[4] + + return convert_dms2dec(direction, degrees, minutes, seconds) +end + +--[[ +coord + +Main entry point for Lua function to replace {{coord}} + +Usage: + {{ Invoke:Coordinates | coord }} + {{ Invoke:Coordinates | coord | lat | long }} + {{ Invoke:Coordinates | coord | lat | lat_flag | long | long_flag }} + ... + + Refer to {{coord}} documentation page for many additional parameters and + configuration options. + +Note: This function provides the visual display elements of {{coord}}. In +order to load coordinates into the database, the {{#coordinates:}} parser +function must also be called, this is done automatically in the Lua +version of {{coord}}. +]] +coordinates.coord = makeInvokeFunc('_coord') +function coordinates._coord(args) + if not args[1] and not args[2] and mw.wikibase.getEntityObject() then + local entity = mw.wikibase.getEntityObject() + if entity + and entity.claims + and entity.claims.P625 + and entity.claims.P625[1].mainsnak.snaktype == 'value' + then + local precision = entity.claims.P625[1].mainsnak.datavalue.value.precision + args[1]=entity.claims.P625[1].mainsnak.datavalue.value.latitude + args[2]=entity.claims.P625[1].mainsnak.datavalue.value.longitude + if precision then + precision=-math_mod._round(math.log(precision)/math.log(10),0) + args[1]=math_mod._round(args[1],precision) + args[2]=math_mod._round(args[2],precision) + end + end + end + + local contents = formatTest(args) + local Notes = args.notes or '' + local Display = args.display and args.display:lower() or 'inline' + + local function isInline(s) + -- Finds whether coordinates are displayed inline. + return s:find('inline') ~= nil or s == 'i' or s == 'it' or s == 'ti' + end + local function isInTitle(s) + -- Finds whether coordinates are displayed in the title. + return s:find('title') ~= nil or s == 't' or s == 'it' or s == 'ti' + end + + local text = '' + if isInline(Display) then + text = text .. displayinline(contents, Notes) + end + if isInTitle(Display) then + text = text + .. displaytitle(contents, Notes) + .. makeWikidataCategories() + end + return text +end + +return coordinates + eb2zgfrhu1wmw44wdhmls236e93usl3 + + + + Modulis:Footnotes + 828 + 2756 + + 30362 + 2014-06-21T09:32:23Z + + Edgars2007 + 114 + + Jauna lapa: f = { args_default = { bracket_left = "", bracket_right = "", bracket_year_left = "", bracket_year_right = "", postscript = "", pag... + Scribunto + text/plain + f = { + args_default = { + bracket_left = "", + bracket_right = "", + bracket_year_left = "", + bracket_year_right = "", + postscript = "", + page = "&nbsp;", + pages = "&nbsp;", + location = "", + page_sep = ".&nbsp;lpp.", + pages_sep = ".&nbsp;lpp.", + ref = "", + P1 = "", + P2 = "", + P3 = "", + P4 = "", + P5 = "" + } +}; + +function trim( str ) + if str == nil then + return nil; + end + return str:match( "^%s*(.-)%s*$"); +end + +function core( args ) + local result; + + if args.P5 ~= "" then + result = args.P1 .. ' et al. ' .. args.bracket_year_left .. args.P5 .. + args.bracket_year_right; + elseif args.P4 ~= "" then + result = args.P1 .. ', ' .. args.P2 .. ' &amp; ' .. args.P3 .. ' ' .. + args.bracket_year_left .. args.P4 .. args.bracket_year_right; + elseif args.P3 ~= "" then + result = args.P1 .. ' &amp; ' .. args.P2 .. ' ' .. args.bracket_year_left .. + args.P3 .. args.bracket_year_right; + else + result = trim( args.P1 .. ' ' .. args.bracket_year_left .. args.P2 .. + args.bracket_year_right ) + end + + if args.ref ~= 'none' then + if args.ref ~= "" then + result = "[[#" .. args.ref .. "|" .. result .. "]]"; + else + result = "[[#CITEREF" .. args.P1 .. args.P2 .. args.P3 .. args.P4 .. args.P5 .. "|" .. result .. "]]"; + end + end + + if args.page ~= "" then + result = result .. ",&nbsp;" .. args.page .. args.page_sep; + elseif args.pages ~= "" then + result = result .. ",&nbsp;" .. args.pages .. args.pages_sep; + end + + if args.location ~= "" then + result = result .. ", " .. args.location; + end + + result = args.bracket_left .. result .. args.bracket_right .. args.postscript; + return result; +end + +function f.harvard_core( frame ) + local args = {}; + local pframe = frame:getParent(); + + args.bracket_left = pframe.args.BracketLeft or ""; + args.bracket_right = pframe.args.BracketRight or ""; + args.bracket_year_left = pframe.args.BracketYearLeft or ""; + args.bracket_year_right = pframe.args.BracketYearRight or ""; + args.postscript = pframe.args.Postscript or ""; + args.page = pframe.args.Page or ""; + args.pages = pframe.args.Pages or ""; + args.location = pframe.args.Location or ""; + args.page_sep = pframe.args.PageSep or ""; + args.pages_sep = pframe.args.PagesSep or ""; + args.ref = pframe.args.REF or "{{{REF}}}"; + args.P1 = trim( pframe.args.P1 ) or ""; + args.P2 = trim( pframe.args.P2 ) or ""; + args.P3 = trim( pframe.args.P3 ) or ""; + args.P4 = trim( pframe.args.P4 ) or ""; + args.P5 = trim( pframe.args.P5 ) or ""; + + return core( args ); +end + +function f.harvard_citation( frame ) + local args = f.args_default; + pframe = frame:getParent(); + + args.bracket_left = "("; + args.bracket_right = ")"; + args.page = pframe.args.p or pframe.args.page or ""; + args.pages = pframe.args.pp or pframe.args.pages or ""; + args.location = pframe.args.loc or ""; + args.ref = pframe.args.ref or pframe.args.Ref or ""; + args.P1 = trim( pframe.args[1] ) or ""; + args.P2 = trim( pframe.args[2] ) or ""; + args.P3 = trim( pframe.args[3] ) or ""; + args.P4 = trim( pframe.args[4] ) or ""; + args.P5 = trim( pframe.args[5] ) or ""; + + return core( args ); +end + +function f.harvard_citation_no_bracket( frame ) + local args = f.args_default; + pframe = frame:getParent(); + + args.page = pframe.args.p or pframe.args.page or ""; + args.pages = pframe.args.pp or pframe.args.pages or ""; + args.location = pframe.args.loc or ""; + args.ref = pframe.args.ref or pframe.args.Ref or ""; + args.P1 = trim( pframe.args[1] ) or ""; + args.P2 = trim( pframe.args[2] ) or ""; + args.P3 = trim( pframe.args[3] ) or ""; + args.P4 = trim( pframe.args[4] ) or ""; + args.P5 = trim( pframe.args[5] ) or ""; + + return core( args ); +end + +function f.sfn( frame ) + local args = f.args_default; + pframe = frame:getParent(); + + args.postscript = pframe.args.postscript or pframe.args.ps or "."; + args.page = pframe.args.p or pframe.args.page or ""; + args.pages = pframe.args.pp or pframe.args.pages or ""; + args.location = pframe.args.loc or ""; + args.ref = pframe.args.ref or pframe.args.Ref or ""; + args.P1 = trim( pframe.args[1] ) or ""; + args.P2 = trim( pframe.args[2] ) or ""; + args.P3 = trim( pframe.args[3] ) or ""; + args.P4 = trim( pframe.args[4] ) or ""; + args.P5 = trim( pframe.args[5] ) or ""; + + local result = core( args ); + local name = "FOOTNOTE" .. args.P1 .. args.P2 .. + args.P3 .. args.P4 .. args.P5 .. args.page .. args.pages .. args.location; + + result = frame:extensionTag{ name = "ref", args = {name=name}, content=result }; + + return result; +end + +return f; + dxehpvdo0455h3wcx41mfwnwrx6vlwj + + + + Modulis:HtmlBuilder + 828 + 2757 + + 30363 + 2014-06-21T09:33:06Z + + Edgars2007 + 114 + + Jauna lapa: -- Module for building complex HTML (e.g. infoboxes, navboxes) using a fluent interface. local HtmlBuilder = {} local metatable = {} metatable.__index = function(t, key) local... + Scribunto + text/plain + -- Module for building complex HTML (e.g. infoboxes, navboxes) using a fluent interface. + +local HtmlBuilder = {} + +local metatable = {} + +metatable.__index = function(t, key) + local ret = rawget(t, key) + if ret then + return ret + end + + ret = metatable[key] + if type(ret) == 'function' then + return function(...) + return ret(t, ...) + end + else + return ret + end +end + +metatable.__tostring = function(t) + local ret = {} + t._build(ret) + return table.concat(ret) +end + +metatable._build = function(t, ret) + if t.tagName then + table.insert(ret, '<' .. t.tagName) + for i, attr in ipairs(t.attributes) do + table.insert(ret, ' ' .. attr.name .. '="' .. attr.val .. '"') + end + if #t.styles > 0 then + table.insert(ret, ' style="') + for i, prop in ipairs(t.styles) do + if type(prop) == 'string' then -- added with cssText() + table.insert(ret, prop .. ';') + else -- added with css() + table.insert(ret, prop.name .. ':' .. prop.val .. ';') + end + end + table.insert(ret, '"') + end + if t.selfClosing then + table.insert(ret, ' /') + end + table.insert(ret, '>') + end + for i, node in ipairs(t.nodes) do + if node then + if type(node) == 'table' then + node._build(ret) + else + table.insert(ret, tostring(node)) + end + end + end + if t.tagName and not t.unclosed and not t.selfClosing then + table.insert(ret, '</' .. t.tagName .. '>') + end +end + +metatable.node = function(t, builder) + if builder then + table.insert(t.nodes, builder) + end + return t +end + +metatable.wikitext = function(t, ...) + local vals = {...} + for i = 1, #vals do + if vals[i] then + table.insert(t.nodes, vals[i]) + end + end + return t +end + +metatable.newline = function(t) + table.insert(t.nodes, '\n') + return t +end + +metatable.tag = function(t, tagName, args) + args = args or {} + args.parent = t + local builder = HtmlBuilder.create(tagName, args) + table.insert(t.nodes, builder) + return builder +end + +local function getAttr(t, name) + for i, attr in ipairs(t.attributes) do + if attr.name == name then + return attr + end + end +end + +metatable.attr = function(t, name, val) + if type(val) == 'string' or type(val) == 'number' then + -- if caller sets the style attribute explicitly, then replace all styles previously added with css() and cssText() + if name == 'style' then + t.styles = {val} + return t + end + + local attr = getAttr(t, name) + if attr then + attr.val = val + else + table.insert(t.attributes, {name = name, val = val}) + end + end + + return t +end + +metatable.addClass = function(t, class) + if class then + local attr = getAttr(t, 'class') + if attr then + attr.val = attr.val .. ' ' .. class + else + t.attr('class', class) + end + end + + return t +end + +metatable.css = function(t, name, val) + if type(val) == 'string' or type(val) == 'number' then + for i, prop in ipairs(t.styles) do + if prop.name == name then + prop.val = val + return t + end + end + + table.insert(t.styles, {name = name, val = val}) + end + + return t +end + +metatable.cssText = function(t, css) + if css then + table.insert(t.styles, css) + end + return t +end + +metatable.done = function(t) + return t.parent or t +end + +metatable.allDone = function(t) + while t.parent do + t = t.parent + end + return t +end + +function HtmlBuilder.create(tagName, args) + args = args or {} + local builder = {} + setmetatable(builder, metatable) + builder.nodes = {} + builder.attributes = {} + builder.styles = {} + builder.tagName = tagName + builder.parent = args.parent + builder.unclosed = args.unclosed or false + builder.selfClosing = args.selfClosing or false + return builder +end + +return HtmlBuilder + ait58gp3hn4i3oyevj1ucebrzvyok1o + + + + Modulis:Infobox + 828 + 2758 + + 30637 + 30635 + 2015-03-23T18:11:18Z + + Edgars2007 + 114 + + Scribunto + text/plain + -- +-- This module implements {{Infobox}} +-- + +local p = {} + +local args = {} +local origArgs +local root + +local function union(t1, t2) + -- Returns the union of the values of two tables, as a sequence. + local vals = {} + for k, v in pairs(t1) do + vals[v] = true + end + for k, v in pairs(t2) do + vals[v] = true + end + local ret = {} + for k, v in pairs(vals) do + table.insert(ret, k) + end + return ret +end + +local function getArgNums(prefix) + -- Returns a table containing the numbers of the arguments that exist + -- for the specified prefix. For example, if the prefix was 'data', and + -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. + local nums = {} + for k, v in pairs(args) do + local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') + if num then table.insert(nums, tonumber(num)) end + end + table.sort(nums) + return nums +end + +local function addRow(rowArgs) + -- Adds a row to the infobox, with either a header cell + -- or a label/data cell combination. + if rowArgs.header then + root + :tag('tr') + :addClass(rowArgs.rowclass) + :cssText(rowArgs.rowstyle) + :attr('id', rowArgs.rowid) + :tag('th') + :attr('colspan', 2) + :attr('id', rowArgs.headerid) + :addClass(rowArgs.class) + :addClass(args.headerclass) + :css('text-align', 'center') + :cssText(args.headerstyle) + :wikitext(rowArgs.header) + elseif rowArgs.data then + local row = root:tag('tr') + row:addClass(rowArgs.rowclass) + row:cssText(rowArgs.rowstyle) + row:attr('id', rowArgs.rowid) + if rowArgs.label then + row + :tag('th') + :attr('scope', 'row') + :attr('id', rowArgs.labelid) + :css('text-align', 'left') + :cssText(args.labelstyle) + :wikitext(rowArgs.label) + :done() + end + + local dataCell = row:tag('td') + if not rowArgs.label then + dataCell + :attr('colspan', 2) + :css('text-align', 'center') + end + dataCell + :attr('id', rowArgs.dataid) + :addClass(rowArgs.class) + :cssText(rowArgs.datastyle) + :newline() + :wikitext(rowArgs.data) + end +end + +local function renderTitle() + if not args.title then return end + + root + :tag('caption') + :addClass(args.titleclass) + :cssText(args.titlestyle) + :wikitext(args.title) +end + +local function renderAboveRow() + if not args.above then return end + + root + :tag('tr') + :tag('th') + :attr('colspan', 2) + :addClass(args.aboveclass) + :css('text-align', 'center') + :css('font-size', '125%') + :css('font-weight', 'bold') + :cssText(args.abovestyle) + :wikitext(args.above) +end + +local function renderBelowRow() + if not args.below then return end + + root + :tag('tr') + :tag('td') + :attr('colspan', '2') + :addClass(args.belowclass) + :css('text-align', 'center') + :cssText(args.belowstyle) + :newline() + :wikitext(args.below) +end + +local function renderSubheaders() + if args.subheader then + args.subheader1 = args.subheader + end + if args.subheaderrowclass then + args.subheaderrowclass1 = args.subheaderrowclass + end + local subheadernums = getArgNums('subheader') + for k, num in ipairs(subheadernums) do + addRow({ + data = args['subheader' .. tostring(num)], + datastyle = args.subheaderstyle or args['subheaderstyle' .. tostring(num)], + class = args.subheaderclass, + rowclass = args['subheaderrowclass' .. tostring(num)] + }) + end +end + +local function renderImages() + if args.image then + args.image1 = args.image + end + if args.caption then + args.caption1 = args.caption + end + local imagenums = getArgNums('image') + for k, num in ipairs(imagenums) do + local caption = args['caption' .. tostring(num)] + local data = mw.html.create():wikitext(args['image' .. tostring(num)]) + if caption then + data + :tag('div') + :cssText(args.captionstyle) + :wikitext(caption) + end + addRow({ + data = tostring(data), + datastyle = args.imagestyle, + class = args.imageclass, + rowclass = args['imagerowclass' .. tostring(num)] + }) + end +end + +local function renderRows() + -- Gets the union of the header and data argument numbers, + -- and renders them all in order using addRow. + local rownums = union(getArgNums('header'), getArgNums('data')) + table.sort(rownums) + for k, num in ipairs(rownums) do + addRow({ + header = args['header' .. tostring(num)], + label = args['label' .. tostring(num)], + data = args['data' .. tostring(num)], + datastyle = args.datastyle, + class = args['class' .. tostring(num)], + rowclass = args['rowclass' .. tostring(num)], + rowstyle = args['rowstyle' .. tostring(num)], + dataid = args['dataid' .. tostring(num)], + labelid = args['labelid' .. tostring(num)], + headerid = args['headerid' .. tostring(num)], + rowid = args['rowid' .. tostring(num)] + }) + end +end + +local function renderNavBar() + if not args.name then return end + + root + :tag('tr') + :tag('td') + :attr('colspan', '2') + :css('text-align', 'right') + :wikitext(mw.getCurrentFrame():expandTemplate({ + title = 'navbar', + args = { args.name, mini = 1 } + })) +end + +local function renderItalicTitle() + local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title']) + if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then + root:wikitext(mw.getCurrentFrame():expandTemplate({title = 'italic title'})) + end +end + +local function _infobox() + -- Specify the overall layout of the infobox, with special settings + -- if the infobox is used as a 'child' inside another infobox. + if args.child ~= 'yes' then + root = mw.html.create('table') + + root + :addClass('infobox') + :addClass(args.bodyclass) + + if args.subbox == 'yes' then + root + :css('padding', '0') + :css('border', 'none') + :css('margin', '-3px') + :css('width', 'auto') + :css('min-width', '100%') + :css('font-size', '100%') + :css('clear', 'none') + :css('float', 'none') + :css('background-color', 'transparent') + else + root + :css('width', '22em') + end + root + :cssText(args.bodystyle) + + renderTitle() + renderAboveRow() + else + root = mw.html.create() + + root + :wikitext(args.title) + end + + renderSubheaders() + renderImages() + renderRows() + renderBelowRow() + renderNavBar() + renderItalicTitle() + --renderTrackingCategories() + + return tostring(root) +end + +local function preprocessSingleArg(argName) + -- If the argument exists and isn't blank, add it to the argument table. + -- Blank arguments are treated as nil to match the behaviour of ParserFunctions. + if origArgs[argName] and origArgs[argName] ~= '' then + args[argName] = origArgs[argName] + end +end + +local function preprocessArgs(prefixTable, step) + -- Assign the parameters with the given prefixes to the args table, in order, in batches + -- of the step size specified. This is to prevent references etc. from appearing in the + -- wrong order. The prefixTable should be an array containing tables, each of which has + -- two possible fields, a "prefix" string and a "depend" table. The function always parses + -- parameters containing the "prefix" string, but only parses parameters in the "depend" + -- table if the prefix parameter is present and non-blank. + if type(prefixTable) ~= 'table' then + error("Non-table value detected for the prefix table", 2) + end + if type(step) ~= 'number' then + error("Invalid step value detected", 2) + end + + -- Get arguments without a number suffix, and check for bad input. + for i,v in ipairs(prefixTable) do + if type(v) ~= 'table' or type(v.prefix) ~= "string" or (v.depend and type(v.depend) ~= 'table') then + error('Invalid input detected to preprocessArgs prefix table', 2) + end + preprocessSingleArg(v.prefix) + -- Only parse the depend parameter if the prefix parameter is present and not blank. + if args[v.prefix] and v.depend then + for j, dependValue in ipairs(v.depend) do + if type(dependValue) ~= 'string' then + error('Invalid "depend" parameter value detected in preprocessArgs') + end + preprocessSingleArg(dependValue) + end + end + end + + -- Get arguments with number suffixes. + local a = 1 -- Counter variable. + local moreArgumentsExist = true + while moreArgumentsExist == true do + moreArgumentsExist = false + for i = a, a + step - 1 do + for j,v in ipairs(prefixTable) do + local prefixArgName = v.prefix .. tostring(i) + if origArgs[prefixArgName] then + moreArgumentsExist = true -- Do another loop if any arguments are found, even blank ones. + preprocessSingleArg(prefixArgName) + end + -- Process the depend table if the prefix argument is present and not blank, or + -- we are processing "prefix1" and "prefix" is present and not blank, and + -- if the depend table is present. + if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then + for j,dependValue in ipairs(v.depend) do + local dependArgName = dependValue .. tostring(i) + preprocessSingleArg(dependArgName) + end + end + end + end + a = a + step + end +end + +function p.infobox(frame) + -- If called via #invoke, use the args passed into the invoking template. + -- Otherwise, for testing purposes, assume args are being passed directly in. + if frame == mw.getCurrentFrame() then + origArgs = frame:getParent().args + else + origArgs = frame + end + + -- Parse the data parameters in the same order that the old {{infobox}} did, so that + -- references etc. will display in the expected places. Parameters that depend on + -- another parameter are only processed if that parameter is present, to avoid + -- phantom references appearing in article reference lists. + preprocessSingleArg('child') + preprocessSingleArg('bodyclass') + preprocessSingleArg('subbox') + preprocessSingleArg('bodystyle') + preprocessSingleArg('title') + preprocessSingleArg('titleclass') + preprocessSingleArg('titlestyle') + preprocessSingleArg('above') + preprocessSingleArg('aboveclass') + preprocessSingleArg('abovestyle') + preprocessArgs({ + {prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}} + }, 10) + preprocessSingleArg('subheaderstyle') + preprocessSingleArg('subheaderclass') + preprocessArgs({ + {prefix = 'image', depend = {'caption', 'imagerowclass'}} + }, 10) + preprocessSingleArg('captionstyle') + preprocessSingleArg('imagestyle') + preprocessSingleArg('imageclass') + preprocessArgs({ + {prefix = 'header'}, + {prefix = 'data', depend = {'label'}}, + {prefix = 'rowclass'}, + {prefix = 'rowstyle'}, + {prefix = 'class'}, + {prefix = 'dataid'}, + {prefix = 'labelid'}, + {prefix = 'headerid'}, + {prefix = 'rowid'} + }, 50) + preprocessSingleArg('headerclass') + preprocessSingleArg('headerstyle') + preprocessSingleArg('labelstyle') + preprocessSingleArg('datastyle') + preprocessSingleArg('below') + preprocessSingleArg('belowclass') + preprocessSingleArg('belowstyle') + preprocessSingleArg('name') + args['italic title'] = origArgs['italic title'] -- different behaviour if blank or absent + + return _infobox() +end + +return p + l20l06vymnwtdw0z3o8eymvrsnix8jx + + + + Modulis:InfoboxImage + 828 + 2759 + + 30384 + 30365 + 2014-06-21T17:47:21Z + + Edgars2007 + 114 + + Scribunto + text/plain + -- Inputs: +-- image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link +-- size - size to display the image +-- maxsize - maximum size for image +-- sizedefault - default size to display the image if size param is blank +-- alt - alt text for image +-- title - title text for image +-- border - set to yes if border +-- center - set to yes, if the image has to be centered +-- upright - upright image param +-- suppressplaceholder - if yes then checks to see if image is a placeholder and suppresses it +-- link - page to visit when clicking on image +-- Outputs: +-- Formatted image. +-- More details available at the "Module:InfoboxImage/doc" page + +local i = {}; + +local placeholder_image = { + "Nav foto.png", + "Blue - Replace this image female.svg", + "Blue - Replace this image male.svg", + "Female no free image yet.png", + "Flag of None (square).svg", + "Flag of None.svg", + "Flag of.svg", + "Green - Replace this image female.svg", + "Green - Replace this image male.svg", + "Image is needed female.svg", + "Image is needed male.svg", + "Location map of None.svg", + "Male no free image yet.png", + "Missing flag.png", + "No flag.svg", + "No free portrait.svg", + "No portrait (female).svg", + "No portrait (male).svg", + "Red - Replace this image female.svg", + "Red - Replace this image male.svg", + "Replace this image female (blue).svg", + "Replace this image female.svg", + "Replace this image male (blue).svg", + "Replace this image male.svg", + "Silver - Replace this image female.svg", + "Silver - Replace this image male.svg", + "Replace this image.svg", + "Cricket no pic.png", + "CarersLogo.gif", + "Diagram Needed.svg", + "Example.jpg", + "Image placeholder.png", + "No male portrait.svg", + "Nocover-upload.png", + "NoDVDcover copy.png", + "Noribbon.svg", + "No portrait-BFD-test.svg", + "Placeholder barnstar ribbon.png", + "Project Trains no image.png", + "Image-request.png", + "Sin bandera.svg", + "Sin escudo.svg", + "Replace this image - temple.png", + "Replace this image butterfly.png", + "Replace this image.svg", + "Replace this image1.svg", + "Resolution angle.png", + "Image-No portrait-text-BFD-test.svg", + "Insert image here.svg", + "No image available.png", + "NO IMAGE YET square.png", + "NO IMAGE YET.png", + "No Photo Available.svg", + "No Screenshot.svg", + "No-image-available.jpg", + "Null.png", + "PictureNeeded.gif", + "Place holder.jpg", + "Unbenannt.JPG", + "UploadACopyrightFreeImage.svg", + "UploadAnImage.gif", + "UploadAnImage.svg", + "UploadAnImageShort.svg", +} + +function i.IsPlaceholder(image) + -- change underscores to spaces + image = mw.ustring.gsub(image, "_", " "); + -- if image starts with [[ then remove that and anything after | + if mw.ustring.sub(image,1,2) == "[[" then + image = mw.ustring.sub(image,3); + image = mw.ustring.gsub(image, "([^|]*)|.*", "%1"); + end + -- Trim spaces + image = mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1'); + -- remove prefix if exists + local allNames = mw.site.namespaces[6].aliases + allNames[#allNames + 1] = mw.site.namespaces[6].name + allNames[#allNames + 1] = mw.site.namespaces[6].canonicalName + for i, name in ipairs(allNames) do + if mw.ustring.lower(mw.ustring.sub(image, 1, mw.ustring.len(name) + 1)) == mw.ustring.lower(name .. ":") then + image = mw.ustring.sub(image, mw.ustring.len(name) + 2); + break + end + end + -- Trim spaces + image = mw.ustring.gsub(image, '^[ ]*(.-)[ ]*$', '%1'); + -- capitalise first letter + image = mw.ustring.upper(mw.ustring.sub(image,1,1)) .. mw.ustring.sub(image,2); + + for i,j in pairs(placeholder_image) do + if image == j then + return true + end + end + return false +end + +function i.InfoboxImage(frame) + local image = frame.args["image"]; + + if image == "" or image == nil then + return ""; + end + if image == "&nbsp;" then + return image; + end + if frame.args["suppressplaceholder"] ~= "no" then + if i.IsPlaceholder(image) == true then + return ""; + end + end + + if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "http:" then + return ""; + end + if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "[http:" then + return ""; + end + if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[[http:" then + return ""; + end + if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "https:" then + return ""; + end + if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[https:" then + return ""; + end + if mw.ustring.lower(mw.ustring.sub(image,1,8)) == "[[https:" then + return ""; + end + + if mw.ustring.sub(image,1,2) == "[[" then + -- search for thumbnail images and add to tracking cat if found + if mw.title.getCurrentTitle().namespace == 0 and (mw.ustring.find(image, "|%s*thumb%s*[|%]]") or mw.ustring.find(image, "|%s*thumbnail%s*[|%]]")) then + return image .. "[[Kategorija:Raksti ar sīktēlu attēliem infokastē]]"; + else + return image; + end + elseif mw.ustring.sub(image,1,2) == "{{" and mw.ustring.sub(image,1,3) ~= "{{{" then + return image; + elseif mw.ustring.sub(image,1,1) == "<" then + return image; + elseif mw.ustring.sub(image,1,5) == mw.ustring.char(127).."UNIQ" then + -- Found strip marker at begining, so pass don't process at all + return image; + else + local result = ""; + local size = frame.args["size"]; + local maxsize = frame.args["maxsize"]; + local sizedefault = frame.args["sizedefault"]; + local alt = frame.args["alt"]; + local link = frame.args["link"]; + local title = frame.args["title"]; + local border = frame.args["border"]; + local upright = frame.args["upright"] or ""; + local thumbtime = frame.args["thumbtime"] or ""; + local center= frame.args["center"]; + + -- remove prefix if exists + local allNames = mw.site.namespaces[6].aliases + allNames[#allNames + 1] = mw.site.namespaces[6].name + allNames[#allNames + 1] = mw.site.namespaces[6].canonicalName + for i, name in ipairs(allNames) do + if mw.ustring.lower(mw.ustring.sub(image, 1, mw.ustring.len(name) + 1)) == mw.ustring.lower(name .. ":") then + image = mw.ustring.sub(image, mw.ustring.len(name) + 2); + break + end + end + + if maxsize ~= "" and maxsize ~= nil then + -- if no sizedefault then set to maxsize + if sizedefault == "" or sizedefault == nil then + sizedefault = maxsize + end + -- check to see if size bigger than maxsize + if size ~= "" and size ~= nil then + local sizenumber = tonumber(mw.ustring.match(size,"%d*")) or 0; + local maxsizenumber = tonumber(mw.ustring.match(maxsize,"%d*")); + if sizenumber>maxsizenumber and maxsizenumber>0 then + size = maxsize; + end + end + end + -- add px to size if just a number + if (tonumber(size) or 0) > 0 then + size = size .. "px"; + end + + result = "[[Fails:" .. image; + if size ~= "" and size ~= nil then + result = result .. "|" .. size; + elseif sizedefault ~= "" and sizedefault ~= nil then + result = result .. "|" .. sizedefault; + else + result = result .. "|frameless"; + end + if center == "yes" then + result = result .. "|center" + end + if alt ~= "" and alt ~= nil then + result = result .. "|alt=" .. alt; + end + if link ~= "" and link ~= nil then + result = result .. "|link=" .. link; + end + if border == "yes" then + result = result .. "|border"; + end + if upright ~= "" then + result = result .. "|upright=" .. upright; + end + if thumbtime ~= "" then + result = result .. "|thumbtime=" .. thumbtime; + end + if title ~= "" and title ~= nil then + result = result .. "|" .. title; + elseif alt ~= "" and alt ~= nil then + result = result .. "|" .. alt; + end + result = result .. "]]"; + + return result; + end +end + +return i; + cyx8fvte4jmi6vf8ycg02frrl03uxmq + + + + Modulis:Italic title + 828 + 2760 + + 30366 + 2014-06-21T09:35:30Z + + Edgars2007 + 114 + + Jauna lapa: -- This module implements {{italic title}}. local p = {} function p.main(frame) -- Process the arguments. local args if frame == mw.getCurrentFrame() then args... + Scribunto + text/plain + -- This module implements {{italic title}}. + +local p = {} + +function p.main(frame) + -- Process the arguments. + local args + if frame == mw.getCurrentFrame() then + args = frame:getParent().args + for k, v in pairs(frame.args) do + args = frame.args + break + end + else + args = frame + end + + local title = mw.title.getCurrentTitle() -- Get the current page object. + -- Find the parts before and after the disambiguation parentheses, if any. + local prefix, parentheses = mw.ustring.match(title.text, '^(.+) (%([^%(%)]+%))$') + -- If parentheses were found, italicise only the part before them. Otherwise + -- italicise the whole title. + local result + if prefix and parentheses and args.all ~= 'yes' then + result = "''" .. prefix .. "'' " .. parentheses + else + result = "''" .. title.text .. "''" + end + -- Add the namespace if it exists. + if title.nsText and title.nsText ~= "" then + result = title.nsText .. ':' .. result + end + -- Call displaytitle with the text we generated. + return mw.getCurrentFrame():callParserFunction( 'DISPLAYTITLE', result ) +end + +return p + 1ngeqn3d0mswzzl821h7w9rx0lhc4tx + + + + Modulis:Math + 828 + 2761 + + 30612 + 30367 + 2015-03-23T17:36:36Z + + Edgars2007 + 114 + + Scribunto + text/plain + --[[ + +This module provides a number of basic mathematical operations. + +]] + +local yesno, getArgs -- lazily initialized + +local p = {} -- Holds functions to be returned from #invoke, and functions to make available to other Lua modules. +local wrap = {} -- Holds wrapper functions that process arguments from #invoke. These act as intemediary between functions meant for #invoke and functions meant for Lua. + +--[[ +Helper functions used to avoid redundant code. +]] + +local function err(msg) + -- Generates wikitext error messages. + return mw.ustring.format('<strong class="error">Formatting error: %s</strong>', msg) +end + +local function unpackNumberArgs(args) + -- Returns an unpacked list of arguments specified with numerical keys. + local ret = {} + for k, v in pairs(args) do + if type(k) == 'number' then + table.insert(ret, v) + end + end + return unpack(ret) +end + +local function makeArgArray(...) + -- Makes an array of arguments from a list of arguments that might include nils. + local args = {...} -- Table of arguments. It might contain nils or non-number values, so we can't use ipairs. + local nums = {} -- Stores the numbers of valid numerical arguments. + local ret = {} + for k, v in pairs(args) do + v = p._cleanNumber(v) + if v then + nums[#nums + 1] = k + args[k] = v + end + end + table.sort(nums) + for i, num in ipairs(nums) do + ret[#ret + 1] = args[num] + end + return ret +end + +local function applyFuncToArgs(func, ...) + -- Use a function on all supplied arguments, and return the result. The function must accept two numbers as parameters, + -- and must return a number as an output. This number is then supplied as input to the next function call. + local vals = makeArgArray(...) + local count = #vals -- The number of valid arguments + if count == 0 then return + -- Exit if we have no valid args, otherwise removing the first arg would cause an error. + nil, 0 + end + local ret = table.remove(vals, 1) + for _, val in ipairs(vals) do + ret = func(ret, val) + end + return ret, count +end + +--[[ +random + +Generate a random number + +Usage: +{{#invoke: Math | random }} +{{#invoke: Math | random | maximum value }} +{{#invoke: Math | random | minimum value | maximum value }} +]] + +function wrap.random(args) + local first = p._cleanNumber(args[1]) + local second = p._cleanNumber(args[2]) + return p._random(first, second) +end + +function p._random(first, second) + math.randomseed(mw.site.stats.edits + mw.site.stats.pages + os.time() + math.floor(os.clock() * 1000000000)) + -- math.random will throw an error if given an explicit nil parameter, so we need to use if statements to check the params. + if first and second then + if first <= second then -- math.random doesn't allow the first number to be greater than the second. + return math.random(first, second) + end + elseif first then + return math.random(first) + else + return math.random() + end +end + +--[[ +order + +Determine order of magnitude of a number + +Usage: +{{#invoke: Math | order | value }} +]] + +function wrap.order(args) + local input_string = (args[1] or args.x or '0'); + local input_number = p._cleanNumber(input_string); + if input_number == nil then + return err('order of magnitude input appears non-numeric') + else + return p._order(input_number) + end +end + +function p._order(x) + if x == 0 then return 0 end + return math.floor(math.log10(math.abs(x))) +end + +--[[ +precision + +Detemines the precision of a number using the string representation + +Usage: +{{ #invoke: Math | precision | value }} +]] + +function wrap.precision(args) + local input_string = (args[1] or args.x or '0'); + local trap_fraction = args.check_fraction; + local input_number; + + if not yesno then + yesno = require('Module:Yesno') + end + if yesno(trap_fraction, true) then -- Returns true for all input except nil, false, "no", "n", "0" and a few others. See [[Module:Yesno]]. + local pos = string.find(input_string, '/', 1, true); + if pos ~= nil then + if string.find(input_string, '/', pos + 1, true) == nil then + local denominator = string.sub(input_string, pos+1, -1); + local denom_value = tonumber(denominator); + if denom_value ~= nil then + return math.log10(denom_value); + end + end + end + end + + input_number, input_string = p._cleanNumber(input_string); + if input_string == nil then + return err('precision input appears non-numeric') + else + return p._precision(input_string) + end +end + +function p._precision(x) + if type(x) == 'number' then + x = tostring(x) + end + x = string.upper(x) + + local decimal = x:find('%.') + local exponent_pos = x:find('E') + local result = 0; + + if exponent_pos ~= nil then + local exponent = string.sub(x, exponent_pos + 1) + x = string.sub(x, 1, exponent_pos - 1) + result = result - tonumber(exponent) + end + + if decimal ~= nil then + result = result + string.len(x) - decimal + return result + end + + local pos = string.len(x); + while x:byte(pos) == string.byte('0') do + pos = pos - 1 + result = result - 1 + if pos <= 0 then + return 0 + end + end + + return result +end + +--[[ +max + +Finds the maximum argument + +Usage: +{{#invoke:Math| max | value1 | value2 | ... }} + +Note, any values that do not evaluate to numbers are ignored. +]] + +function wrap.max(args) + return p._max(unpackNumberArgs(args)) +end + +function p._max(...) + local function maxOfTwo(a, b) + if a > b then + return a + else + return b + end + end + local max_value = applyFuncToArgs(maxOfTwo, ...) + if max_value then + return max_value + end +end + +--[[ +min + +Finds the minimum argument + +Usage: +{{#invoke:Math| min | value1 | value2 | ... }} +OR +{{#invoke:Math| min }} + +When used with no arguments, it takes its input from the parent +frame. Note, any values that do not evaluate to numbers are ignored. +]] + +function wrap.min(args) + return p._min(unpackNumberArgs(args)) +end + +function p._min(...) + local function minOfTwo(a, b) + if a < b then + return a + else + return b + end + end + local min_value = applyFuncToArgs(minOfTwo, ...) + if min_value then + return min_value + end +end + +--[[ +average + +Finds the average + +Usage: +{{#invoke:Math| average | value1 | value2 | ... }} +OR +{{#invoke:Math| average }} + +Note, any values that do not evaluate to numbers are ignored. +]] + +function wrap.average(args) + return p._average(unpackNumberArgs(args)) +end + +function p._average(...) + local function getSum(a, b) + return a + b + end + local sum, count = applyFuncToArgs(getSum, ...) + if not sum then + return 0 + else + return sum / count + end +end + +--[[ +round + +Rounds a number to specified precision + +Usage: +{{#invoke:Math | round | value | precision }} + +--]] + +function wrap.round(args) + local value = p._cleanNumber(args[1] or args.value or 0) + local precision = p._cleanNumber(args[2] or args.precision or 0) + if value == nil or precision == nil then + return err('round input appears non-numeric') + else + return p._round(value, precision) + end +end + +function p._round(value, precision) + local rescale = math.pow(10, precision or 0); + return math.floor(value * rescale + 0.5) / rescale; +end + +--[[ +mod + +Implements the modulo operator + +Usage: +{{#invoke:Math | mod | x | y }} + +--]] + +function wrap.mod(args) + local x = p._cleanNumber(args[1]) + local y = p._cleanNumber(args[2]) + if not x then + return err('first argument to mod appears non-numeric') + elseif not y then + return err('second argument to mod appears non-numeric') + else + return p._mod(x, y) + end +end + +function p._mod(x, y) + local ret = x % y + if not (0 <= ret and ret < y) then + ret = 0 + end + return ret +end + +--[[ +gcd + +Calculates the greatest common divisor of multiple numbers + +Usage: +{{#invoke:Math | gcd | value 1 | value 2 | value 3 | ... }} +--]] + +function wrap.gcd(args) + return p._gcd(unpackNumberArgs(args)) +end + +function p._gcd(...) + local function findGcd(a, b) + local r = b + local oldr = a + while r ~= 0 do + local quotient = math.floor(oldr / r) + oldr, r = r, oldr - quotient * r + end + if oldr < 0 then + oldr = oldr * -1 + end + return oldr + end + local result, count = applyFuncToArgs(findGcd, ...) + return result +end + +--[[ +precision_format + +Rounds a number to the specified precision and formats according to rules +originally used for {{template:Rnd}}. Output is a string. + +Usage: +{{#invoke: Math | precision_format | number | precision }} +]] + +function wrap.precision_format(args) + local value_string = args[1] or 0 + local precision = args[2] or 0 + return p._precision_format(value_string, precision) +end + +function p._precision_format(value_string, precision) + -- For access to Mediawiki built-in formatter. + local lang = mw.getContentLanguage(); + + local value + value, value_string = p._cleanNumber(value_string) + precision = p._cleanNumber(precision) + + -- Check for non-numeric input + if value == nil or precision == nil then + return err('invalid input when rounding') + end + + local current_precision = p._precision(value) + local order = p._order(value) + + -- Due to round-off effects it is neccesary to limit the returned precision under + -- some circumstances because the terminal digits will be inaccurately reported. + if order + precision >= 14 then + orig_precision = p._precision(value_string) + if order + orig_precision >= 14 then + precision = 13 - order; + end + end + + -- If rounding off, truncate extra digits + if precision < current_precision then + value = p._round(value, precision) + current_precision = p._precision(value) + end + + local formatted_num = lang:formatNum(math.abs(value)) + local sign + + -- Use proper unary minus sign rather than ASCII default + if value < 0 then + sign = '−' + else + sign = '' + end + + -- Handle cases requiring scientific notation + if string.find(formatted_num, 'E', 1, true) ~= nil or math.abs(order) >= 9 then + value = value * math.pow(10, -order) + current_precision = current_precision + order + precision = precision + order + formatted_num = lang:formatNum(math.abs(value)) + else + order = 0; + end + formatted_num = sign .. formatted_num + + -- Pad with zeros, if needed + if current_precision < precision then + local padding + if current_precision <= 0 then + if precision > 0 then + local zero_sep = lang:formatNum(1.1) + formatted_num = formatted_num .. zero_sep:sub(2,2) + + padding = precision + if padding > 20 then + padding = 20 + end + + formatted_num = formatted_num .. string.rep('0', padding) + end + else + padding = precision - current_precision + if padding > 20 then + padding = 20 + end + formatted_num = formatted_num .. string.rep('0', padding) + end + end + + -- Add exponential notation, if necessary. + if order ~= 0 then + -- Use proper unary minus sign rather than ASCII default + if order < 0 then + order = '−' .. lang:formatNum(math.abs(order)) + else + order = lang:formatNum(order) + end + + formatted_num = formatted_num .. '<span style="margin:0 .15em 0 .25em">×</span>10<sup>' .. order .. '</sup>' + end + + return formatted_num +end + +--[[ +Helper function that interprets the input numerically. If the +input does not appear to be a number, attempts evaluating it as +a parser functions expression. +]] + +function p._cleanNumber(number_string) + if type(number_string) == 'number' then + -- We were passed a number, so we don't need to do any processing. + return number_string, tostring(number_string) + elseif type(number_string) ~= 'string' or not number_string:find('%S') then + -- We were passed a non-string or a blank string, so exit. + return nil, nil; + end + + -- Attempt basic conversion + local number = tonumber(number_string) + + -- If failed, attempt to evaluate input as an expression + if number == nil then + local success, result = pcall(mw.ext.ParserFunctions.expr, number_string) + if success then + number = tonumber(result) + number_string = tostring(number) + else + number = nil + number_string = nil + end + else + number_string = number_string:match("^%s*(.-)%s*$") -- String is valid but may contain padding, clean it. + number_string = number_string:match("^%+(.*)$") or number_string -- Trim any leading + signs. + if number_string:find('^%-?0[xX]') then + -- Number is using 0xnnn notation to indicate base 16; use the number that Lua detected instead. + number_string = tostring(number) + end + end + + return number, number_string +end + +--[[ +Wrapper function that does basic argument processing. This ensures that all functions from #invoke can use either the current +frame or the parent frame, and it also trims whitespace for all arguments and removes blank arguments. +]] + +local mt = { __index = function(t, k) + return function(frame) + if not getArgs then + getArgs = require('Module:Arguments').getArgs + end + return wrap[k](getArgs(frame)) -- Argument processing is left to Module:Arguments. Whitespace is trimmed and blank arguments are removed. + end +end } + +return setmetatable(p, mt) + ohgts9l4qn80240zpyv9o3psirjld6s + + + + Modulis:Message box + 828 + 2762 + + 30368 + 2014-06-21T09:36:55Z + + Edgars2007 + 114 + + Jauna lapa: -- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Require necessary modules... + Scribunto + text/plain + -- This is a meta-module for producing message box templates, including +-- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. + +-- Require necessary modules. +local getArgs = require('Module:Arguments').getArgs +local htmlBuilder = require('Module:HtmlBuilder') +local categoryHandler = require('Module:Category handler').main +local yesno = require('Module:Yesno') + +-- Load the configuration page. +local cfgTables = mw.loadData('Module:Message box/configuration') + +-- Get a language object for formatDate and ucfirst. +local lang = mw.language.getContentLanguage() + +-- Set aliases for often-used functions to reduce table lookups. +local format = mw.ustring.format +local tinsert = table.insert +local tconcat = table.concat +local trim = mw.text.trim + +-------------------------------------------------------------------------------- +-- Helper functions +-------------------------------------------------------------------------------- + +local function getTitleObject(page, ...) + if type(page) == 'string' then + -- Get the title object, passing the function through pcall + -- in case we are over the expensive function count limit. + local success, title = pcall(mw.title.new, page, ...) + if success then + return title + end + end +end + +local function union(t1, t2) + -- Returns the union of two arrays. + local vals = {} + for i, v in ipairs(t1) do + vals[v] = true + end + for i, v in ipairs(t2) do + vals[v] = true + end + local ret = {} + for k in pairs(vals) do + tinsert(ret, k) + end + table.sort(ret) + return ret +end + +local function getArgNums(args, prefix) + local nums = {} + for k, v in pairs(args) do + local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$') + if num then + tinsert(nums, tonumber(num)) + end + end + table.sort(nums) + return nums +end + +-------------------------------------------------------------------------------- +-- Box class definition +-------------------------------------------------------------------------------- + +local box = {} +box.__index = box + +function box.new() + local obj = {} + setmetatable(obj, box) + return obj +end + +function box.getNamespaceId(ns) + if not ns then return end + if type(ns) == 'string' then + ns = lang:ucfirst(mw.ustring.lower(ns)) + if ns == 'Main' then + ns = 0 + end + end + local nsTable = mw.site.namespaces[ns] + if nsTable then + return nsTable.id + end +end + +function box.getMboxType(nsid) + -- Gets the mbox type from a namespace number. + if nsid == 0 then + return 'ambox' -- main namespace + elseif nsid == 6 then + return 'imbox' -- file namespace + elseif nsid == 14 then + return 'cmbox' -- category namespace + else + local nsTable = mw.site.namespaces[nsid] + if nsTable and nsTable.isTalk then + return 'tmbox' -- any talk namespace + else + return 'ombox' -- other namespaces or invalid input + end + end +end + +function box:addCat(ns, cat, sort) + if type(cat) ~= 'string' then return end + local nsVals = {'main', 'template', 'all'} + local tname + for i, val in ipairs(nsVals) do + if ns == val then + tname = ns .. 'Cats' + end + end + if not tname then + for i, val in ipairs(nsVals) do + nsVals[i] = format('"%s"', val) + end + error( + 'invalid ns parameter passed to box:addCat; valid values are ' + .. mw.text.listToText(nsVals, nil, ' or ') + ) + end + self[tname] = self[tname] or {} + if type(sort) == 'string' then + tinsert(self[tname], format('[[Category:%s|%s]]', cat, sort)) + else + tinsert(self[tname], format('[[Category:%s]]', cat)) + end +end + +function box:addClass(class) + if type(class) ~= 'string' then return end + self.classes = self.classes or {} + tinsert(self.classes, class) +end + +function box:addAttr(attr, val) + if type(attr) ~= 'string' or type(val) ~= 'string' then return end + self.attrs = self.attrs or {} + tinsert(self.attrs, attr) +end + +function box:setTitle(args) + -- Get the title object and the namespace. + self.pageTitle = getTitleObject(args.page ~= '' and args.page) + self.title = self.pageTitle or mw.title.getCurrentTitle() + self.demospace = args.demospace ~= '' and args.demospace or nil + self.nsid = box.getNamespaceId(self.demospace) or self.title.namespace +end + +function box:getConfig(boxType) + -- Get the box config data from the data page. + if boxType == 'mbox' then + boxType = box.getMboxType(self.nsid) + end + local cfg = cfgTables[boxType] + if not cfg then + local boxTypes = {} + for k, v in pairs(dataTables) do + tinsert(boxTypes, format('"%s"', k)) + end + tinsert(boxTypes, '"mbox"') + error(format( + 'invalid message box type "%s"; valid types are %s', + tostring(boxType), + mw.text.listToText(boxTypes) + ), 2) + end + return cfg +end + +function box:removeBlankArgs(cfg, args) + -- Only allow blank arguments for the parameter names listed in + -- cfg.allowBlankParams. + local newArgs = {} + for k, v in pairs(args) do + if v ~= '' then + newArgs[k] = v + end + end + for i, param in ipairs(cfg.allowBlankParams or {}) do + newArgs[param] = args[param] + end + return newArgs +end + +function box:setBoxParameters(cfg, args) + -- Get type data. + self.type = args.type + local typeData = cfg.types[self.type] + self.invalidTypeError = cfg.showInvalidTypeError + and self.type + and not typeData + and true + or false + typeData = typeData or cfg.types[cfg.default] + self.typeClass = typeData.class + self.typeImage = typeData.image + + -- Find if the box has been wrongly substituted. + if cfg.substCheck and args.subst == 'SUBST' then + self.isSubstituted = true + end + + -- Find whether we are using a small message box. + if cfg.allowSmall and ( + cfg.smallParam and args.small == cfg.smallParam + or not cfg.smallParam and yesno(args.small) + ) + then + self.isSmall = true + else + self.isSmall = false + end + + -- Add attributes, classes and styles. + if cfg.allowId then + self.id = args.id + end + self:addClass( + cfg.usePlainlinksParam and yesno(args.plainlinks or true) and 'plainlinks' + ) + for _, class in ipairs(cfg.classes or {}) do + self:addClass(class) + end + if self.isSmall then + self:addClass(cfg.smallClass or 'mbox-small') + end + self:addClass(self.typeClass) + self:addClass(args.class) + self.style = args.style + self.attrs = args.attrs + + -- Set text style. + self.textstyle = args.textstyle + + -- Find if we are on the template page or not. This functionality is only + -- used if useCollapsibleTextFields is set, or if both cfg.templateCategory + -- and cfg.templateCategoryRequireName are set. + self.useCollapsibleTextFields = cfg.useCollapsibleTextFields + if self.useCollapsibleTextFields + or cfg.templateCategory + and cfg.templateCategoryRequireName + then + self.name = args.name + if self.name then + local templateName = mw.ustring.match( + self.name, + '^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$' + ) or self.name + templateName = 'Template:' .. templateName + self.templateTitle = getTitleObject(templateName) + end + self.isTemplatePage = self.templateTitle + and mw.title.equals(self.title, self.templateTitle) + or false + end + + -- Process data for collapsible text fields. At the moment these are only + -- used in {{ambox}}. + if self.useCollapsibleTextFields then + -- Get the self.issue value. + if self.isSmall and args.smalltext then + self.issue = args.smalltext + else + local sect + if args.sect == '' then + sect = 'This ' .. (cfg.sectionDefault or 'page') + elseif type(args.sect) == 'string' then + sect = 'This ' .. args.sect + end + local issue = args.issue + issue = type(issue) == 'string' and issue ~= '' and issue or nil + local text = args.text + text = type(text) == 'string' and text or nil + local issues = {} + tinsert(issues, sect) + tinsert(issues, issue) + tinsert(issues, text) + self.issue = tconcat(issues, ' ') + end + + -- Get the self.talk value. + local talk = args.talk + -- Show talk links on the template page or template subpages if the talk + -- parameter is blank. + if talk == '' + and self.templateTitle + and ( + mw.title.equals(self.templateTitle, self.title) + or self.title:isSubpageOf(self.templateTitle) + ) + then + talk = '#' + elseif talk == '' then + talk = nil + end + if talk then + -- If the talk value is a talk page, make a link to that page. Else + -- assume that it's a section heading, and make a link to the talk + -- page of the current page with that section heading. + local talkTitle = getTitleObject(talk) + local talkArgIsTalkPage = true + if not talkTitle or not talkTitle.isTalkPage then + talkArgIsTalkPage = false + talkTitle = getTitleObject( + self.title.text, + mw.site.namespaces[self.title.namespace].talk.id + ) + end + if talkTitle and talkTitle.exists then + local talkText = 'Relevant discussion may be found on' + if talkArgIsTalkPage then + talkText = format( + '%s [[%s|%s]].', + talkText, + talk, + talkTitle.prefixedText + ) + else + talkText = format( + '%s the [[%s#%s|talk page]].', + talkText, + talkTitle.prefixedText, + talk + ) + end + self.talk = talkText + end + end + + -- Get other values. + self.fix = args.fix ~= '' and args.fix or nil + local date + if args.date and args.date ~= '' then + date = args.date + elseif args.date == '' and self.isTemplatePage then + date = lang:formatDate('F Y') + end + if date then + self.date = format(" <small>''(%s)''</small>", date) + end + self.info = args.info + end + + -- Set the non-collapsible text field. At the moment this is used by all box + -- types other than ambox, and also by ambox when small=yes. + if self.isSmall then + self.text = args.smalltext or args.text + else + self.text = args.text + end + + -- Set the below row. + self.below = cfg.below and args.below + + -- General image settings. + self.imageCellDiv = not self.isSmall and cfg.imageCellDiv and true or false + self.imageEmptyCell = cfg.imageEmptyCell + if cfg.imageEmptyCellStyle then + self.imageEmptyCellStyle = 'border:none;padding:0px;width:1px' + end + + -- Left image settings. + local imageLeft = self.isSmall and args.smallimage or args.image + if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none' + or not cfg.imageCheckBlank and imageLeft ~= 'none' + then + self.imageLeft = imageLeft + if not imageLeft then + local imageSize = self.isSmall + and (cfg.imageSmallSize or '30x30px') + or '40x40px' + self.imageLeft = format('[[File:%s|%s|link=|alt=]]', self.typeImage + or 'Imbox notice.png', imageSize) + end + end + + -- Right image settings. + local imageRight = self.isSmall and args.smallimageright or args.imageright + if not (cfg.imageRightNone and imageRight == 'none') then + self.imageRight = imageRight + end + + -- Add mainspace categories. At the moment these are only used in {{ambox}}. + if cfg.allowMainspaceCategories then + if args.cat then + args.cat1 = args.cat + end + self.catNums = getArgNums(args, 'cat') + if args.category then + args.category1 = args.category + end + self.categoryNums = getArgNums(args, 'category') + if args.all then + args.all1 = args.all + end + self.allNums = getArgNums(args, 'all') + self.categoryParamNums = union(self.catNums, self.categoryNums) + self.categoryParamNums = union(self.categoryParamNums, self.allNums) + -- The following is roughly equivalent to the old {{Ambox/category}}. + local date = args.date + date = type(date) == 'string' and date + local preposition = 'from' + for _, num in ipairs(self.categoryParamNums) do + local mainCat = args['cat' .. tostring(num)] + or args['category' .. tostring(num)] + local allCat = args['all' .. tostring(num)] + mainCat = type(mainCat) == 'string' and mainCat + allCat = type(allCat) == 'string' and allCat + if mainCat and date and date ~= '' then + local catTitle = format('%s %s %s', mainCat, preposition, date) + self:addCat('main', catTitle) + catTitle = getTitleObject('Category:' .. catTitle) + if not catTitle or not catTitle.exists then + self:addCat( + 'main', + 'Articles with invalid date parameter in template' + ) + end + elseif mainCat and (not date or date == '') then + self:addCat('main', mainCat) + end + if allCat then + self:addCat('main', allCat) + end + end + end + + -- Add template-namespace categories. + if cfg.templateCategory then + if cfg.templateCategoryRequireName then + if self.isTemplatePage then + self:addCat('template', cfg.templateCategory) + end + elseif not self.title.isSubpage then + self:addCat('template', cfg.templateCategory) + end + end + + -- Add template error category. + if cfg.templateErrorCategory then + local templateErrorCategory = cfg.templateErrorCategory + local templateCat, templateSort + if not self.name and not self.title.isSubpage then + templateCat = templateErrorCategory + elseif self.isTemplatePage then + local paramsToCheck = cfg.templateErrorParamsToCheck or {} + local count = 0 + for i, param in ipairs(paramsToCheck) do + if not args[param] then + count = count + 1 + end + end + if count > 0 then + templateCat = templateErrorCategory + templateSort = tostring(count) + end + if self.categoryNums and #self.categoryNums > 0 then + templateCat = templateErrorCategory + templateSort = 'C' + end + end + self:addCat('template', templateCat, templateSort) + end + + -- Categories for all namespaces. + if self.invalidTypeError then + local allSort = (self.nsid == 0 and 'Main:' or '') .. self.title.prefixedText + self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort) + end + if self.isSubstituted then + self:addCat('all', 'Pages with incorrectly substituted templates') + end + + -- Convert category tables to strings and pass them through + -- [[Module:Category handler]]. + self.categories = categoryHandler{ + main = tconcat(self.mainCats or {}), + template = tconcat(self.templateCats or {}), + all = tconcat(self.allCats or {}), + nocat = args.nocat, + demospace = self.demospace, + page = self.pageTitle and self.pageTitle.prefixedText or nil + } +end + +function box:export() + local root = htmlBuilder.create() + + -- Add the subst check error. + if self.isSubstituted and self.name then + root + .tag('b') + .addClass('error') + .wikitext(format( + 'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.', + mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') + )) + end + + -- Create the box table. + local boxTable = root.tag('table') + boxTable + .attr('id', self.id) + for i, class in ipairs(self.classes or {}) do + boxTable + .addClass(class) + end + boxTable + .cssText(self.style) + .attr('role', 'presentation') + for attr, val in pairs(self.attrs or {}) do + boxTable + .attr(attr, val) + end + + -- Add the left-hand image. + local row = boxTable.tag('tr') + if self.imageLeft then + local imageLeftCell = row.tag('td').addClass('mbox-image') + if self.imageCellDiv then + -- If we are using a div, redefine imageLeftCell so that the image + -- is inside it. Divs use style="width: 52px;", which limits the + -- image width to 52px. If any images in a div are wider than that, + -- they may overlap with the text or cause other display problems. + imageLeftCell = imageLeftCell.tag('div').css('width', '52px') + end + imageLeftCell + .wikitext(self.imageLeft) + elseif self.imageEmptyCell then + -- Some message boxes define an empty cell if no image is specified, and + -- some don't. The old template code in templates where empty cells are + -- specified gives the following hint: "No image. Cell with some width + -- or padding necessary for text cell to have 100% width." + row.tag('td') + .addClass('mbox-empty-cell') + .cssText(self.imageEmptyCellStyle) + end + + -- Add the text. + local textCell = row.tag('td').addClass('mbox-text') + if self.useCollapsibleTextFields then + -- The message box uses advanced text parameters that allow things to be + -- collapsible. At the moment, only ambox uses this. + textCell + .cssText(self.textstyle) + local textCellSpan = textCell.tag('span') + textCellSpan + .addClass('mbox-text-span') + .wikitext(self.issue) + if not self.isSmall then + textCellSpan + .tag('span') + .addClass('hide-when-compact') + .wikitext(self.talk and ' ' .. self.talk) + .wikitext(self.fix and ' ' .. self.fix) + end + textCellSpan + .wikitext(self.date and ' ' .. self.date) + if not self.isSmall then + textCellSpan + .tag('span') + .addClass('hide-when-compact') + .wikitext(self.info and ' ' .. self.info) + end + else + -- Default text formatting - anything goes. + textCell + .cssText(self.textstyle) + .wikitext(self.text) + end + + -- Add the right-hand image. + if self.imageRight then + local imageRightCell = row.tag('td').addClass('mbox-imageright') + if self.imageCellDiv then + -- If we are using a div, redefine imageRightCell so that the image + -- is inside it. + imageRightCell = imageRightCell.tag('div').css('width', '52px') + end + imageRightCell + .wikitext(self.imageRight) + end + + -- Add the below row. + if self.below then + boxTable.tag('tr') + .tag('td') + .attr('colspan', self.imageRight and '3' or '2') + .addClass('mbox-text') + .cssText(self.textstyle) + .wikitext(self.below) + end + + -- Add error message for invalid type parameters. + if self.invalidTypeError then + root + .tag('div') + .css('text-align', 'center') + .wikitext(format( + 'This message box is using an invalid "type=%s" parameter and needs fixing.', + self.type or '' + )) + end + + -- Add categories. + root + .wikitext(self.categories) + + return tostring(root) +end + +local function main(boxType, args) + local outputBox = box.new() + outputBox:setTitle(args) + local cfg = outputBox:getConfig(boxType) + args = outputBox:removeBlankArgs(cfg, args) + outputBox:setBoxParameters(cfg, args) + return outputBox:export() +end + +local function makeWrapper(boxType) + return function (frame) + local args = getArgs(frame, {trim = false, removeBlanks = false}) + return main(boxType, args) + end +end + +local p = { + main = main, + mbox = makeWrapper('mbox') +} + +for boxType in pairs(cfgTables) do + p[boxType] = makeWrapper(boxType) +end + +return p + pfxm5hq7an9zemrjcn2d276uu0xlvky + + + + Modulis:Message box/configuration + 828 + 2763 + + 30369 + 2014-06-21T09:37:38Z + + Edgars2007 + 114 + + Jauna lapa: local ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox speedy deletion.png' }, serious = { class = 'ambox-speedy', image = 'Stop hand nuvola.sv... + Scribunto + text/plain + local ambox = { + types = { + speedy = { + class = 'ambox-speedy', + image = 'Ambox speedy deletion.png' + }, + serious = { + class = 'ambox-speedy', + image = 'Stop hand nuvola.svg' + }, + delete = { + class = 'ambox-delete', + image = 'Ambox deletion.png' + }, + content = { + class = 'ambox-content', + image = 'Ambox content.png' + }, + style = { + class = 'ambox-style', + image = 'Edit-clear.svg' + }, + move = { + class = 'ambox-move', + image = 'Ambox move.png' + }, + protection = { + class = 'ambox-protection', + image = 'Ambox protection.png' + }, + notice = { + class = 'ambox-notice', + image = 'Ambox notice.png' + } + }, + default = 'notice', + allowBlankParams = {'talk', 'sect', 'date', 'issue', 'fix', 'subst', 'hidden'}, + allowSmall = true, + smallParam = 'left', + smallClass = 'mbox-small-left', + substCheck = true, + classes = {'metadata', 'plainlinks', 'ambox'}, + imageEmptyCell = true, + imageCheckBlank = true, + imageSmallSize = '20x20px', + imageCellDiv = true, + useCollapsibleTextFields = true, + imageRightNone = true, + sectionDefault = 'article', + allowMainspaceCategories = true, + templateCategory = 'Article message templates', + templateCategoryRequireName = true, + --templateErrorCategory = 'Article message templates with missing parameters', + templateErrorParamsToCheck = {'issue', 'fix', 'subst'} +} + +local cmbox = { + types = { + speedy = { + class = 'cmbox-speedy', + image = 'Cmbox deletion.png' + }, + delete = { + class = 'cmbox-delete', + image = 'Cmbox deletion.png' + }, + content = { + class = 'cmbox-content', + image = 'Cmbox content.png' + }, + style = { + class = 'cmbox-style', + image = 'Edit-clear.svg' + }, + move = { + class = 'cmbox-move', + image = 'Cmbox move.png' + }, + protection = { + class = 'cmbox-protection', + image = 'Cmbox protection.png' + }, + notice = { + class = 'cmbox-notice', + image = 'Cmbox notice.png' + } + }, + default = 'notice', + showInvalidTypeError = true, + classes = {'plainlinks', 'cmbox'}, + imageEmptyCell = true +} + +local fmbox = { + types = { + warning = { + class = 'fmbox-warning', + image = 'Cmbox deletion.png' + }, + editnotice = { + class = 'fmbox-editnotice', + image = 'Imbox notice.png' + }, + system = { + class = 'fmbox-system', + image = 'Imbox notice.png' + } + }, + default = 'system', + showInvalidTypeError = true, + allowId = true, + classes = {'plainlinks', 'fmbox'}, + imageEmptyCell = false, + imageRightNone = false +} + +local imbox = { + types = { + speedy = { + class = 'imbox-speedy', + image = 'Imbox speedy deletion.png' + }, + delete = { + class = 'imbox-delete', + image = 'Imbox deletion.png' + }, + content = { + class = 'imbox-content', + image = 'Imbox content.png' + }, + style = { + class = 'imbox-style', + image = 'Edit-clear.svg' + }, + move = { + class = 'imbox-move', + image = 'Imbox move.png' + }, + protection = { + class = 'imbox-protection', + image = 'Imbox protection.png' + }, + license = { + class = 'imbox-license', + image = 'Imbox license.png' + }, + featured = { + class = 'imbox-featured', + image = 'Imbox featured.png' + }, + notice = { + class = 'imbox-notice', + image = 'Imbox notice.png' + } + }, + default = 'notice', + showInvalidTypeError = true, + classes = {'imbox'}, + usePlainlinksParam = true, + imageEmptyCell = true, + below = true, +-- templateCategory = 'File message boxes' +} + +local ombox = { + types = { + speedy = { + class = 'ombox-speedy', + image = 'Imbox speedy deletion.png' + }, + delete = { + class = 'ombox-delete', + image = 'Imbox deletion.png' + }, + content = { + class = 'ombox-content', + image = 'Imbox content.png' + }, + style = { + class = 'ombox-style', + image = 'Edit-clear.svg' + }, + move = { + class = 'ombox-move', + image = 'Imbox move.png' + }, + protection = { + class = 'ombox-protection', + image = 'Imbox protection.png' + }, + notice = { + class = 'ombox-notice', + image = 'Imbox notice.png' + } + }, + default = 'notice', + showInvalidTypeError = true, + classes = {'plainlinks', 'ombox'}, + allowSmall = true, + imageEmptyCell = true, + imageRightNone = true +} + +local tmbox = { + types = { + speedy = { + class = 'tmbox-speedy', + image = 'Imbox speedy deletion.png' + }, + delete = { + class = 'tmbox-delete', + image = 'Imbox deletion.png' + }, + content = { + class = 'tmbox-content', + image = 'Imbox content.png' + }, + style = { + class = 'tmbox-style', + image = 'Edit-clear.svg ' + }, + move = { + class = 'tmbox-move', + image = 'Imbox move.png' + }, + protection = { + class = 'tmbox-protection', + image = 'Imbox protection.png' + }, + notice = { + class = 'tmbox-notice', + image = 'Imbox notice.png' + } + }, + default = 'notice', + showInvalidTypeError = true, + classes = {'plainlinks', 'tmbox'}, + allowId = true, + allowSmall = true, + imageRightNone = true, + imageEmptyCell = true, + imageEmptyCellStyle = true, +-- templateCategory = 'Talk message boxes' +} + +return { + ambox = ambox, + cmbox = cmbox, + fmbox = fmbox, + imbox = imbox, + ombox = ombox, + tmbox = tmbox +} + i35vftrh2kgdnjypcgdkql3wmg81k8t + + + + Modulis:Namespace detect + 828 + 2764 + + 30370 + 2014-06-21T09:39:36Z + + Edgars2007 + 114 + + Jauna lapa: --[[ -------------------------------------------------------------------------------- -- -- --... + Scribunto + text/plain + --[[ +-------------------------------------------------------------------------------- +-- -- +-- NAMESPACE DETECT -- +-- -- +-- This module implements the {{namespace detect}} template in Lua, with a -- +-- few improvements: all namespaces and all namespace aliases are supported, -- +-- and namespace names are detected automatically for the local wiki. The -- +-- module can also use the corresponding subject namespace value if it is -- +-- used on a talk page. Parameter names can be configured for different wikis -- +-- by altering the values in the "cfg" table in -- +-- Module:Namespace detect/config. -- +-- -- +-------------------------------------------------------------------------------- +--]] + +local data = mw.loadData('Module:Namespace detect/data') +local argKeys = data.argKeys +local cfg = data.cfg +local mappings = data.mappings + +local yesno = require('Module:Yesno') +local mArguments -- Lazily initialise Module:Arguments +local mTableTools -- Lazily initilalise Module:TableTools +local ustringLower = mw.ustring.lower + +local p = {} + +local function fetchValue(t1, t2) + -- Fetches a value from the table t1 for the first key in array t2 where + -- a non-nil value of t1 exists. + for i, key in ipairs(t2) do + local value = t1[key] + if value ~= nil then + return value + end + end + return nil +end + +local function equalsArrayValue(t, value) + -- Returns true if value equals a value in the array t. Otherwise + -- returns false. + for i, arrayValue in ipairs(t) do + if value == arrayValue then + return true + end + end + return false +end + +function p.getPageObject(page) + -- Get the page object, passing the function through pcall in case of + -- errors, e.g. being over the expensive function count limit. + if page then + local success, pageObject = pcall(mw.title.new, page) + if success then + return pageObject + else + return nil + end + else + return mw.title.getCurrentTitle() + end +end + +-- Provided for backward compatibility with other modules +function p.getParamMappings() + return mappings +end + +local function getNamespace(args) + -- This function gets the namespace name from the page object. + local page = fetchValue(args, argKeys.demopage) + if page == '' then + page = nil + end + local demospace = fetchValue(args, argKeys.demospace) + if demospace == '' then + demospace = nil + end + local subjectns = fetchValue(args, argKeys.subjectns) + local ret + if demospace then + -- Handle "demospace = main" properly. + if equalsArrayValue(argKeys.main, ustringLower(demospace)) then + ret = mw.site.namespaces[0].name + else + ret = demospace + end + else + local pageObject = p.getPageObject(page) + if pageObject then + if pageObject.isTalkPage then + -- Get the subject namespace if the option is set, + -- otherwise use "talk". + if yesno(subjectns) then + ret = mw.site.namespaces[pageObject.namespace].subject.name + else + ret = 'talk' + end + else + ret = pageObject.nsText + end + else + return nil -- return nil if the page object doesn't exist. + end + end + ret = ret:gsub('_', ' ') + return ustringLower(ret) +end + +function p._main(args) + -- Check the parameters stored in the mappings table for any matches. + local namespace = getNamespace(args) or 'other' -- "other" avoids nil table keys + local params = mappings[namespace] or {} + local ret = fetchValue(args, params) + --[[ + -- If there were no matches, return parameters for other namespaces. + -- This happens if there was no text specified for the namespace that + -- was detected or if the demospace parameter is not a valid + -- namespace. Note that the parameter for the detected namespace must be + -- completely absent for this to happen, not merely blank. + --]] + if ret == nil then + ret = fetchValue(args, argKeys.other) + end + return ret +end + +function p.main(frame) + mArguments = require('Module:Arguments') + local args = mArguments.getArgs(frame, {removeBlanks = false}) + local ret = p._main(args) + return ret or '' +end + +function p.table(frame) + --[[ + -- Create a wikitable of all subject namespace parameters, for + -- documentation purposes. The talk parameter is optional, in case it + -- needs to be excluded in the documentation. + --]] + + -- Load modules and initialise variables. + mTableTools = require('Module:TableTools') + local namespaces = mw.site.namespaces + local cfg = data.cfg + local useTalk = type(frame) == 'table' + and type(frame.args) == 'table' + and yesno(frame.args.talk) -- Whether to use the talk parameter. + + -- Get the header names. + local function checkValue(value, default) + if type(value) == 'string' then + return value + else + return default + end + end + local nsHeader = checkValue(cfg.wikitableNamespaceHeader, 'Vārdtelpa') + local aliasesHeader = checkValue(cfg.wikitableAliasesHeader, 'Citi nosaukumi') + + -- Put the namespaces in order. + local mappingsOrdered = {} + for nsname, params in pairs(mappings) do + if useTalk or nsname ~= 'talk' then + local nsid = namespaces[nsname].id + -- Add 1, as the array must start with 1; nsid 0 would be lost otherwise. + nsid = nsid + 1 + mappingsOrdered[nsid] = params + end + end + mappingsOrdered = mTableTools.compressSparseArray(mappingsOrdered) + + -- Build the table. + local ret = '{| class="wikitable"' + .. '\n|-' + .. '\n! ' .. nsHeader + .. '\n! ' .. aliasesHeader + for i, params in ipairs(mappingsOrdered) do + for j, param in ipairs(params) do + if j == 1 then + ret = ret .. '\n|-' + .. '\n| <code>' .. param .. '</code>' + .. '\n| ' + elseif j == 2 then + ret = ret .. '<code>' .. param .. '</code>' + else + ret = ret .. ', <code>' .. param .. '</code>' + end + end + end + ret = ret .. '\n|-' + .. '\n|}' + return ret +end + +return p + jxivvhe09xpjjwp2675up3watxgg7we + + + + Modulis:Namespace detect/config + 828 + 2765 + + 30371 + 2014-06-21T09:40:36Z + + Edgars2007 + 114 + + Jauna lapa: -------------------------------------------------------------------------------- -- Namespace detect configuration data -- --... + Scribunto + text/plain + -------------------------------------------------------------------------------- +-- Namespace detect configuration data -- +-- -- +-- This module stores configuration data for Module:Namespace detect. Here -- +-- you can localise the module to your wiki's language. -- +-- -- +-- To activate a configuration item, you need to uncomment it. This means -- +-- that you need to remove the text "-- " at the start of the line. -- +-------------------------------------------------------------------------------- + +local cfg = {} -- Don't edit this line. + +-------------------------------------------------------------------------------- +-- Parameter names -- +-- These configuration items specify custom parameter names. Values added -- +-- here will work in addition to the default English parameter names. -- +-- To add one extra name, you can use this format: -- +-- -- +-- cfg.foo = 'parameter name' -- +-- -- +-- To add multiple names, you can use this format: -- +-- -- +-- cfg.foo = {'parameter name 1', 'parameter name 2', 'parameter name 3'} -- +-------------------------------------------------------------------------------- + +---- This parameter displays content for the main namespace: +-- cfg.main = 'main' + +---- This parameter displays in talk namespaces: +-- cfg.talk = 'talk' + +---- This parameter displays content for "other" namespaces (namespaces for which +---- parameters have not been specified): +-- cfg.other = 'other' + +---- This parameter makes talk pages behave as though they are the corresponding +---- subject namespace. Note that this parameter is used with [[Module:Yesno]]. +---- Edit that module to change the default values of "yes", "no", etc. +-- cfg.subjectns = 'subjectns' + +---- This parameter sets a demonstration namespace: +-- cfg.demospace = 'demospace' + +---- This parameter sets a specific page to compare: +cfg.main = 'galvenā' +cfg.talk = 'diskusija' +cfg.user = 'lietotājs' +cfg.file = {'fails', 'attēls'} +cfg.template = 'veidne' +cfg.help = 'palīdzība' +cfg.category = 'kategorija' + +cfg.demopage = 'page' + +-------------------------------------------------------------------------------- +-- Table configuration -- +-- These configuration items allow customisation of the "table" function, -- +-- used to generate a table of possible parameters in the module -- +-- documentation. -- +-------------------------------------------------------------------------------- + +---- The header for the namespace column in the wikitable containing the list of +---- possible subject-space parameters. +-- cfg.wikitableNamespaceHeader = 'Namespace' + +---- The header for the wikitable containing the list of possible subject-space +---- parameters. +-- cfg.wikitableAliasesHeader = 'Aliases' + +-------------------------------------------------------------------------------- +-- End of configuration data -- +-------------------------------------------------------------------------------- + +return cfg -- Don't edit this line. + rtmxvd2ufu5y73sadjeykamfmqvcir9 + + + + Modulis:Namespace detect/data + 828 + 2766 + + 30372 + 2014-06-21T09:41:21Z + + Edgars2007 + 114 + + Jauna lapa: -------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds... + Scribunto + text/plain + -------------------------------------------------------------------------------- +-- Namespace detect data -- +-- This module holds data for [[Module:Namespace detect]] to be loaded per -- +-- page, rather than per #invoke, for performance reasons. -- +-------------------------------------------------------------------------------- + +local cfg = require('Module:Namespace detect/config') + +local function addKey(t, key, defaultKey) + if key ~= defaultKey then + t[#t + 1] = key + end +end + +-- Get a table of parameters to query for each default parameter name. +-- This allows wikis to customise parameter names in the cfg table while +-- ensuring that default parameter names will always work. The cfg table +-- values can be added as a string, or as an array of strings. + +local defaultKeys = { + 'main', + 'talk', + 'other', + 'subjectns', + 'demospace', + 'demopage' +} + +local argKeys = {} +for i, defaultKey in ipairs(defaultKeys) do + argKeys[defaultKey] = {defaultKey} +end + +for defaultKey, t in pairs(argKeys) do + local cfgValue = cfg[defaultKey] + local cfgValueType = type(cfgValue) + if cfgValueType == 'string' then + addKey(t, cfgValue, defaultKey) + elseif cfgValueType == 'table' then + for i, key in ipairs(cfgValue) do + addKey(t, key, defaultKey) + end + end + cfg[defaultKey] = nil -- Free the cfg value as we don't need it any more. +end + +local function getParamMappings() + --[[ + -- Returns a table of how parameter names map to namespace names. The keys + -- are the actual namespace names, in lower case, and the values are the + -- possible parameter names for that namespace, also in lower case. The + -- table entries are structured like this: + -- { + -- [''] = {'main'}, + -- ['wikipedia'] = {'wikipedia', 'project', 'wp'}, + -- ... + -- } + --]] + local mappings = {} + local mainNsName = mw.site.subjectNamespaces[0].name + mainNsName = mw.ustring.lower(mainNsName) + mappings[mainNsName] = mw.clone(argKeys.main) + mappings['talk'] = mw.clone(argKeys.talk) + for nsid, ns in pairs(mw.site.subjectNamespaces) do + if nsid ~= 0 then -- Exclude main namespace. + local nsname = mw.ustring.lower(ns.name) + local canonicalName = mw.ustring.lower(ns.canonicalName) + mappings[nsname] = {nsname} + if canonicalName ~= nsname then + table.insert(mappings[nsname], canonicalName) + end + for _, alias in ipairs(ns.aliases) do + table.insert(mappings[nsname], mw.ustring.lower(alias)) + end + end + end + return mappings +end + +return { + argKeys = argKeys, + cfg = cfg, + mappings = getParamMappings() +} + ojp6d3pc8mql5nufaqdg576c9so3479 + + + + Modulis:String + 828 + 2767 + + 30373 + 2014-06-21T09:44:41Z + + Edgars2007 + 114 + + Jauna lapa: --[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixtu... + Scribunto + text/plain + --[[ + +This module is intended to provide access to basic string functions. + +Most of the functions provided here can be invoked with named parameters, +unnamed parameters, or a mixture. If named parameters are used, Mediawiki will +automatically remove any leading or trailing whitespace from the parameter. +Depending on the intended use, it may be advantageous to either preserve or +remove such whitespace. + +Global options + ignore_errors: If set to 'true' or 1, any error condition will result in + an empty string being returned rather than an error message. + + error_category: If an error occurs, specifies the name of a category to + include with the error message. The default category is + [Category:Errors reported by Module String]. + + no_category: If set to 'true' or 1, no category will be added if an error + is generated. + +Unit tests for this module are available at Module:String/tests. +]] + +local str = {} + +--[[ +len + +This function returns the length of the target string. + +Usage: +{{#invoke:String|len|target_string|}} +OR +{{#invoke:String|len|s=target_string}} + +Parameters + s: The string whose length to report + +If invoked using named parameters, Mediawiki will automatically remove any leading or +trailing whitespace from the target string. +]] +function str.len( frame ) + local new_args = str._getParameters( frame.args, {'s'} ); + local s = new_args['s'] or ''; + return mw.ustring.len( s ) +end + +--[[ +sub + +This function returns a substring of the target string at specified indices. + +Usage: +{{#invoke:String|sub|target_string|start_index|end_index}} +OR +{{#invoke:String|sub|s=target_string|i=start_index|j=end_index}} + +Parameters + s: The string to return a subset of + i: The fist index of the substring to return, defaults to 1. + j: The last index of the string to return, defaults to the last character. + +The first character of the string is assigned an index of 1. If either i or j +is a negative value, it is interpreted the same as selecting a character by +counting from the end of the string. Hence, a value of -1 is the same as +selecting the last character of the string. + +If the requested indices are out of range for the given string, an error is +reported. +]] +function str.sub( frame ) + local new_args = str._getParameters( frame.args, { 's', 'i', 'j' } ); + local s = new_args['s'] or ''; + local i = tonumber( new_args['i'] ) or 1; + local j = tonumber( new_args['j'] ) or -1; + + local len = mw.ustring.len( s ); + + -- Convert negatives for range checking + if i < 0 then + i = len + i + 1; + end + if j < 0 then + j = len + j + 1; + end + + if i > len or j > len or i < 1 or j < 1 then + return str._error( 'String subset index out of range' ); + end + if j < i then + return str._error( 'String subset indices out of order' ); + end + + return mw.ustring.sub( s, i, j ) +end + +--[[ +This function implements that features of {{str sub old}} and is kept in order +to maintain these older templates. +]] +function str.sublength( frame ) + local i = tonumber( frame.args.i ) or 0 + local len = tonumber( frame.args.len ) + return mw.ustring.sub( frame.args.s, i + 1, len and ( i + len ) ) +end + +--[[ +match + +This function returns a substring from the source string that matches a +specified pattern. + +Usage: +{{#invoke:String|match|source_string|pattern_string|start_index|match_number|plain_flag|nomatch_output}} +OR +{{#invoke:String|pos|s=source_string|pattern=pattern_string|start=start_index + |match=match_number|plain=plain_flag|nomatch=nomatch_output}} + +Parameters + s: The string to search + pattern: The pattern or string to find within the string + start: The index within the source string to start the search. The first + character of the string has index 1. Defaults to 1. + match: In some cases it may be possible to make multiple matches on a single + string. This specifies which match to return, where the first match is + match= 1. If a negative number is specified then a match is returned + counting from the last match. Hence match = -1 is the same as requesting + the last match. Defaults to 1. + plain: A flag indicating that the pattern should be understood as plain + text. Defaults to false. + nomatch: If no match is found, output the "nomatch" value rather than an error. + +If invoked using named parameters, Mediawiki will automatically remove any leading or +trailing whitespace from each string. In some circumstances this is desirable, in +other cases one may want to preserve the whitespace. + +If the match_number or start_index are out of range for the string being queried, then +this function generates an error. An error is also generated if no match is found. +If one adds the parameter ignore_errors=true, then the error will be suppressed and +an empty string will be returned on any failure. + +For information on constructing Lua patterns, a form of [regular expression], see: + +* http://www.lua.org/manual/5.1/manual.html#5.4.1 +* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns +* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Ustring_patterns + +]] +function str.match( frame ) + local new_args = str._getParameters( frame.args, {'s', 'pattern', 'start', 'match', 'plain', 'nomatch'} ); + local s = new_args['s'] or ''; + local start = tonumber( new_args['start'] ) or 1; + local plain_flag = str._getBoolean( new_args['plain'] or false ); + local pattern = new_args['pattern'] or ''; + local match_index = math.floor( tonumber(new_args['match']) or 1 ); + local nomatch = new_args['nomatch']; + + if s == '' then + return str._error( 'Target string is empty' ); + end + if pattern == '' then + return str._error( 'Pattern string is empty' ); + end + if math.abs(start) < 1 or math.abs(start) > mw.ustring.len( s ) then + return str._error( 'Requested start is out of range' ); + end + if match_index == 0 then + return str._error( 'Match index is out of range' ); + end + if plain_flag then + pattern = str._escapePattern( pattern ); + end + + local result + if match_index == 1 then + -- Find first match is simple case + result = mw.ustring.match( s, pattern, start ) + else + if start > 1 then + s = mw.ustring.sub( s, start ); + end + + local iterator = mw.ustring.gmatch(s, pattern); + if match_index > 0 then + -- Forward search + for w in iterator do + match_index = match_index - 1; + if match_index == 0 then + result = w; + break; + end + end + else + -- Reverse search + local result_table = {}; + local count = 1; + for w in iterator do + result_table[count] = w; + count = count + 1; + end + + result = result_table[ count + match_index ]; + end + end + + if result == nil then + if nomatch == nil then + return str._error( 'Match not found' ); + else + return nomatch; + end + else + return result; + end +end + +--[[ +pos + +This function returns a single character from the target string at position pos. + +Usage: +{{#invoke:String|pos|target_string|index_value}} +OR +{{#invoke:String|pos|target=target_string|pos=index_value}} + +Parameters + target: The string to search + pos: The index for the character to return + +If invoked using named parameters, Mediawiki will automatically remove any leading or +trailing whitespace from the target string. In some circumstances this is desirable, in +other cases one may want to preserve the whitespace. + +The first character has an index value of 1. + +If one requests a negative value, this function will select a character by counting backwards +from the end of the string. In other words pos = -1 is the same as asking for the last character. + +A requested value of zero, or a value greater than the length of the string returns an error. +]] +function str.pos( frame ) + local new_args = str._getParameters( frame.args, {'target', 'pos'} ); + local target_str = new_args['target'] or ''; + local pos = tonumber( new_args['pos'] ) or 0; + + if pos == 0 or math.abs(pos) > mw.ustring.len( target_str ) then + return str._error( 'String index out of range' ); + end + + return mw.ustring.sub( target_str, pos, pos ); +end + +--[[ +str_find + +This function duplicates the behavior of {{str_find}}, including all of its quirks. +This is provided in order to support existing templates, but is NOT RECOMMENDED for +new code and templates. New code is recommended to use the "find" function instead. + +Returns the first index in "source" that is a match to "target". Indexing is 1-based, +and the function returns -1 if the "target" string is not present in "source". + +Important Note: If the "target" string is empty / missing, this function returns a +value of "1", which is generally unexpected behavior, and must be accounted for +separatetly. +]] +function str.str_find( frame ) + local new_args = str._getParameters( frame.args, {'source', 'target'} ); + local source_str = new_args['source'] or ''; + local target_str = new_args['target'] or ''; + + if target_str == '' then + return 1; + end + + local start = mw.ustring.find( source_str, target_str, 1, true ) + if start == nil then + start = -1 + end + + return start +end + +--[[ +find + +This function allows one to search for a target string or pattern within another +string. + +Usage: +{{#invoke:String|find|source_str|target_string|start_index|plain_flag}} +OR +{{#invoke:String|find|source=source_str|target=target_str|start=start_index|plain=plain_flag}} + +Parameters + source: The string to search + target: The string or pattern to find within source + start: The index within the source string to start the search, defaults to 1 + plain: Boolean flag indicating that target should be understood as plain + text and not as a Lua style regular expression, defaults to true + +If invoked using named parameters, Mediawiki will automatically remove any leading or +trailing whitespace from the parameter. In some circumstances this is desirable, in +other cases one may want to preserve the whitespace. + +This function returns the first index >= "start" where "target" can be found +within "source". Indices are 1-based. If "target" is not found, then this +function returns 0. If either "source" or "target" are missing / empty, this +function also returns 0. + +This function should be safe for UTF-8 strings. +]] +function str.find( frame ) + local new_args = str._getParameters( frame.args, {'source', 'target', 'start', 'plain' } ); + local source_str = new_args['source'] or ''; + local pattern = new_args['target'] or ''; + local start_pos = tonumber(new_args['start']) or 1; + local plain = new_args['plain'] or true; + + if source_str == '' or pattern == '' then + return 0; + end + + plain = str._getBoolean( plain ); + + local start = mw.ustring.find( source_str, pattern, start_pos, plain ) + if start == nil then + start = 0 + end + + return start +end + +--[[ +replace + +This function allows one to replace a target string or pattern within another +string. + +Usage: +{{#invoke:String|replace|source_str|pattern_string|replace_string|replacement_count|plain_flag}} +OR +{{#invoke:String|replace|source=source_string|pattern=pattern_string|replace=replace_string| + count=replacement_count|plain=plain_flag}} + +Parameters + source: The string to search + pattern: The string or pattern to find within source + replace: The replacement text + count: The number of occurences to replace, defaults to all. + plain: Boolean flag indicating that pattern should be understood as plain + text and not as a Lua style regular expression, defaults to true +]] +function str.replace( frame ) + local new_args = str._getParameters( frame.args, {'source', 'pattern', 'replace', 'count', 'plain' } ); + local source_str = new_args['source'] or ''; + local pattern = new_args['pattern'] or ''; + local replace = new_args['replace'] or ''; + local count = tonumber( new_args['count'] ); + local plain = new_args['plain'] or true; + + if source_str == '' or pattern == '' then + return source_str; + end + plain = str._getBoolean( plain ); + + if plain then + pattern = str._escapePattern( pattern ); + replace = mw.ustring.gsub( replace, "%%", "%%%%" ); --Only need to escape replacement sequences. + end + + local result; + + if count ~= nil then + result = mw.ustring.gsub( source_str, pattern, replace, count ); + else + result = mw.ustring.gsub( source_str, pattern, replace ); + end + + return result; +end + +--[[ + simple function to pipe string.rep to templates. +]] + +function str.rep( frame ) + local repetitions = tonumber( frame.args[2] ) + if not repetitions then + return str._error( 'function rep expects a number as second parameter, received "' .. ( frame.args[2] or '' ) .. '"' ) + end + return string.rep( frame.args[1] or '', repetitions ) +end + +--[[ +Helper function that populates the argument list given that user may need to use a mix of +named and unnamed parameters. This is relevant because named parameters are not +identical to unnamed parameters due to string trimming, and when dealing with strings +we sometimes want to either preserve or remove that whitespace depending on the application. +]] +function str._getParameters( frame_args, arg_list ) + local new_args = {}; + local index = 1; + local value; + + for i,arg in ipairs( arg_list ) do + value = frame_args[arg] + if value == nil then + value = frame_args[index]; + index = index + 1; + end + new_args[arg] = value; + end + + return new_args; +end + +--[[ +Helper function to handle error messages. +]] +function str._error( error_str ) + local frame = mw.getCurrentFrame(); + local error_category = frame.args.error_category or 'Errors reported by Module String'; + local ignore_errors = frame.args.ignore_errors or false; + local no_category = frame.args.no_category or false; + + if str._getBoolean(ignore_errors) then + return ''; + end + + local error_str = '<strong class="error">String Module Error: ' .. error_str .. '</strong>'; + if error_category ~= '' and not str._getBoolean( no_category ) then + error_str = '[[Category:' .. error_category .. ']]' .. error_str; + end + + return error_str; +end + +--[[ +Helper Function to interpret boolean strings +]] +function str._getBoolean( boolean_str ) + local boolean_value; + + if type( boolean_str ) == 'string' then + boolean_str = boolean_str:lower(); + if boolean_str == 'false' or boolean_str == 'no' or boolean_str == '0' + or boolean_str == '' then + boolean_value = false; + else + boolean_value = true; + end + elseif type( boolean_str ) == 'boolean' then + boolean_value = boolean_str; + else + error( 'No boolean value found' ); + end + return boolean_value +end + +--[[ +Helper function that escapes all pattern characters so that they will be treated +as plain text. +]] +function str._escapePattern( pattern_str ) + return mw.ustring.gsub( pattern_str, "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ); +end + +return str + l0shz7fzxb1bq626nihqwbptk7dfqd5 + + + + Modulis:TableTools + 828 + 2768 + + 30374 + 2014-06-21T09:45:28Z + + Edgars2007 + 114 + + Jauna lapa: --[[ ------------------------------------------------------------------------------------ -- TableTools -- --... + Scribunto + text/plain + --[[ +------------------------------------------------------------------------------------ +-- TableTools -- +-- -- +-- This module includes a number of functions for dealing with Lua tables. -- +-- It is a meta-module, meant to be called from other Lua modules, and should -- +-- not be called directly from #invoke. -- +------------------------------------------------------------------------------------ +--]] + +local libraryUtil = require('libraryUtil') + +local p = {} + +-- Define often-used variables and functions. +local floor = math.floor +local infinity = math.huge +local checkType = libraryUtil.checkType + +--[[ +------------------------------------------------------------------------------------ +-- isPositiveInteger +-- +-- This function returns true if the given value is a positive integer, and false +-- if not. Although it doesn't operate on tables, it is included here as it is +-- useful for determining whether a given table key is in the array part or the +-- hash part of a table. +------------------------------------------------------------------------------------ +--]] +function p.isPositiveInteger(v) + if type(v) == 'number' and v >= 1 and floor(v) == v and v < infinity then + return true + else + return false + end +end + +--[[ +------------------------------------------------------------------------------------ +-- isNan +-- +-- This function returns true if the given number is a NaN value, and false +-- if not. Although it doesn't operate on tables, it is included here as it is +-- useful for determining whether a value can be a valid table key. Lua will +-- generate an error if a NaN is used as a table key. +------------------------------------------------------------------------------------ +--]] +function p.isNan(v) + if type(v) == 'number' and tostring(v) == '-nan' then + return true + else + return false + end +end + +--[[ +------------------------------------------------------------------------------------ +-- shallowClone +-- +-- This returns a clone of a table. The value returned is a new table, but all +-- subtables and functions are shared. Metamethods are respected, but the returned +-- table will have no metatable of its own. +------------------------------------------------------------------------------------ +--]] +function p.shallowClone(t) + local ret = {} + for k, v in pairs(t) do + ret[k] = v + end + return ret +end + +--[[ +------------------------------------------------------------------------------------ +-- removeDuplicates +-- +-- This removes duplicate values from an array. Non-positive-integer keys are +-- ignored. The earliest value is kept, and all subsequent duplicate values are +-- removed, but otherwise the array order is unchanged. +------------------------------------------------------------------------------------ +--]] +function p.removeDuplicates(t) + checkType('removeDuplicates', 1, t, 'table') + local isNan = p.isNan + local ret, exists = {}, {} + for i, v in ipairs(t) do + if isNan(v) then + -- NaNs can't be table keys, and they are also unique, so we don't need to check existence. + ret[#ret + 1] = v + else + if not exists[v] then + ret[#ret + 1] = v + exists[v] = true + end + end + end + return ret +end + +--[[ +------------------------------------------------------------------------------------ +-- numKeys +-- +-- This takes a table and returns an array containing the numbers of any numerical +-- keys that have non-nil values, sorted in numerical order. +------------------------------------------------------------------------------------ +--]] +function p.numKeys(t) + checkType('numKeys', 1, t, 'table') + local isPositiveInteger = p.isPositiveInteger + local nums = {} + for k, v in pairs(t) do + if isPositiveInteger(k) then + nums[#nums + 1] = k + end + end + table.sort(nums) + return nums +end + +--[[ +------------------------------------------------------------------------------------ +-- affixNums +-- +-- This takes a table and returns an array containing the numbers of keys with the +-- specified prefix and suffix. For example, for the table +-- {a1 = 'foo', a3 = 'bar', a6 = 'baz'} and the prefix "a", affixNums will +-- return {1, 3, 6}. +------------------------------------------------------------------------------------ +--]] +function p.affixNums(t, prefix, suffix) + checkType('affixNums', 1, t, 'table') + checkType('affixNums', 2, prefix, 'string', true) + checkType('affixNums', 3, suffix, 'string', true) + + local function cleanPattern(s) + -- Cleans a pattern so that the magic characters ()%.[]*+-?^$ are interpreted literally. + s = s:gsub('([()%%.%[%]*+-?^$])', '%%%1') + return s + end + + prefix = prefix or '' + suffix = suffix or '' + prefix = cleanPattern(prefix) + suffix = cleanPattern(suffix) + local pattern = '^' .. prefix .. '([1-9]%d*)' .. suffix .. '$' + + local nums = {} + for k, v in pairs(t) do + if type(k) == 'string' then + local num = mw.ustring.match(k, pattern) + if num then + nums[#nums + 1] = tonumber(num) + end + end + end + table.sort(nums) + return nums +end + +--[[ +------------------------------------------------------------------------------------ +-- numData +-- +-- Given a table with keys like ("foo1", "bar1", "foo2", "baz2"), returns a table +-- of subtables in the format +-- { [1] = {foo = 'text', bar = 'text'}, [2] = {foo = 'text', baz = 'text'} } +-- Keys that don't end with an integer are stored in a subtable named "other". +-- The compress option compresses the table so that it can be iterated over with +-- ipairs. +------------------------------------------------------------------------------------ +--]] +function p.numData(t, compress) + checkType('numData', 1, t, 'table') + checkType('numData', 2, compress, 'boolean', true) + local ret = {} + for k, v in pairs(t) do + local prefix, num = mw.ustring.match(tostring(k), '^([^0-9]*)([1-9][0-9]*)$') + if num then + num = tonumber(num) + local subtable = ret[num] or {} + if prefix == '' then + -- Positional parameters match the blank string; put them at the start of the subtable instead. + prefix = 1 + end + subtable[prefix] = v + ret[num] = subtable + else + local subtable = ret.other or {} + subtable[k] = v + ret.other = subtable + end + end + if compress then + local other = ret.other + ret = p.compressSparseArray(ret) + ret.other = other + end + return ret +end + +--[[ +------------------------------------------------------------------------------------ +-- compressSparseArray +-- +-- This takes an array with one or more nil values, and removes the nil values +-- while preserving the order, so that the array can be safely traversed with +-- ipairs. +------------------------------------------------------------------------------------ +--]] +function p.compressSparseArray(t) + checkType('compressSparseArray', 1, t, 'table') + local ret = {} + local nums = p.numKeys(t) + for _, num in ipairs(nums) do + ret[#ret + 1] = t[num] + end + return ret +end + +--[[ +------------------------------------------------------------------------------------ +-- sparseIpairs +-- +-- This is an iterator for sparse arrays. It can be used like ipairs, but can +-- handle nil values. +------------------------------------------------------------------------------------ +--]] +function p.sparseIpairs(t) + checkType('sparseIpairs', 1, t, 'table') + local nums = p.numKeys(t) + local i = 0 + local lim = #nums + return function () + i = i + 1 + if i <= lim then + local key = nums[i] + return key, t[key] + else + return nil, nil + end + end +end + +--[[ +------------------------------------------------------------------------------------ +-- size +-- +-- This returns the size of a key/value pair table. It will also work on arrays, +-- but for arrays it is more efficient to use the # operator. +------------------------------------------------------------------------------------ +--]] +function p.size(t) + checkType('size', 1, t, 'table') + local i = 0 + for k in pairs(t) do + i = i + 1 + end + return i +end + +return p + 9t3wbwe0psqpck9zq6xrg324httgwiw + + + + Modulis:URL + 828 + 2769 + + 30375 + 2014-06-21T09:46:15Z + + Edgars2007 + 114 + + Jauna lapa: -- -- This module implements {{URL}} -- -- See unit tests at [[Module:URL/tests]] local p = {} function trim(s) return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1")) end function... + Scribunto + text/plain + -- +-- This module implements {{URL}} +-- +-- See unit tests at [[Module:URL/tests]] + +local p = {} + +function trim(s) + return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1")) +end + +function safeUri(s) + local success, uri = pcall(function() + return mw.uri.new(s) + end) + if success then + return uri + end +end + +function p._url(url, text) + url = trim(url or '') + text = trim(text or '') + + if url == '' then + if text == '' then + return mw.getCurrentFrame():expandTemplate{ title = 'tlx', args = { 'URL', "''example.com''", "''optional display text''" } } + else + return text + end + end + + -- If the URL contains any unencoded spaces, encode them, because MediaWiki will otherwise interpret a space as the end of the URL. + url = mw.ustring.gsub(url, '%s', function(s) return mw.uri.encode(s, 'PATH') end) + + -- If there is an empty query string or fragment id, remove it as it will cause mw.uri.new to throw an error + url = mw.ustring.gsub(url, '#$', '') + url = mw.ustring.gsub(url, '%?$', '') + + -- If it's an HTTP[S] URL without the double slash, fix it. + url = mw.ustring.gsub(url, '^[Hh][Tt][Tt][Pp]([Ss]?):(/?)([^/])', 'http%1://%3') + + -- Handle URLs from Wikidata of the format http&#58;// + url = mw.ustring.gsub(url, '^[Hh][Tt][Tt][Pp]([Ss]?)&#58;//', 'http%1://') + + local uri = safeUri(url) + + -- Handle URL's without a protocol and URL's that are protocol-relative, + -- e.g. www.example.com/foo or www.example.com:8080/foo, and //www.example.com/foo + if uri and (not uri.protocol or (uri.protocol and not uri.host)) and url:sub(1, 2) ~= '//' then + url = 'http://' .. url + uri = safeUri(url) + end + + if text == '' then + if uri then + if uri.path == '/' then uri.path = '' end + + local port = '' + if uri.port then port = ':' .. uri.port end + + text = mw.ustring.lower(uri.host or '') .. port .. (uri.relativePath or '') + else -- URL is badly-formed, so just display whatever was passed in + text = url + end + end + + return mw.ustring.format('<span class="url">[%s %s]</span>', url, text) +end + +function p.url(frame) + local templateArgs = frame.args + local url = templateArgs[1] or '' + local text = templateArgs[2] or '' + return p._url(url, text) +end + +return p + c2j7hbiuqym5s5henmdmwjr65geqexu + + + + Modulis:Unbulleted list + 828 + 2770 + + 30376 + 2014-06-21T09:47:13Z + + Edgars2007 + 114 + + Jauna lapa: -- This module implements {{unbulleted list}} and {{hlist}}. local function getListItem( data, style, itemStyle ) if not data then return nil end if style or item... + Scribunto + text/plain + -- This module implements {{unbulleted list}} and {{hlist}}. + +local function getListItem( data, style, itemStyle ) + if not data then + return nil + end + if style or itemStyle then + style = style or '' + itemStyle = itemStyle or '' + return mw.ustring.format( + '<li style="%s%s">%s</li>', + style, itemStyle, data + ) + else + return mw.ustring.format( + '<li>%s</li>', + data + ) + end +end + +local function getArgNums( args ) + -- Returns an array containing the keys of all positional arguments + -- that contain data (i.e. non-whitespace values). + local nums = {} + for k, v in pairs( args ) do + if type( k ) == 'number' and + k >= 1 and + math.floor( k ) == k and + mw.ustring.match( v, '%S' ) then + table.insert( nums, k ) + end + end + table.sort( nums ) + return nums +end + +local function getClass( listType, class ) + local classes = {} + if listType == 'hlist' then + table.insert( classes, 'hlist' ) + end + table.insert( classes, 'plainlist' ) + table.insert( classes, class ) + local ret + if #classes == 0 then + return nil + end + return mw.ustring.format( ' class="%s"', table.concat( classes, ' ' ) ) +end + +local function getStyle( listType, indent, style ) + local styles = {} + if listType == 'hlist' then + indent = indent and tonumber( indent ) + indent = tostring( ( indent and indent * 1.6 ) or 0 ) + table.insert( styles, 'margin-left: ' .. indent .. 'em;' ) + end + table.insert( styles, style ) + if #styles == 0 then + return nil + end + return mw.ustring.format( ' style="%s"', table.concat( styles, ' ' ) ) +end + +local function buildList( args, listType ) + local listItems = {} + local argNums = getArgNums( args ) + for i, num in ipairs( argNums ) do + local item = getListItem( + args[ num ], + args.li_style, + args[ 'li_style' .. tostring( num ) ] + ) + table.insert( listItems, item ) + end + if #listItems == 0 then + return '' + end + local class = getClass( listType, args.class ) or '' + local style = getStyle( listType, args.indent, args.style ) or '' + local ulStyle = ( args.ul_style and ( ' style="' .. args.ul_style .. '"' ) ) or '' + return mw.ustring.format( + '<div%s%s><ul%s>%s</ul></div>', + class, style, ulStyle, table.concat( listItems ) + ) +end + +local function makeWrapper( listType ) + return function( frame ) + local origArgs + if frame == mw.getCurrentFrame() then + origArgs = frame:getParent().args + for k, v in pairs( frame.args ) do + origArgs = frame.args + break + end + else + origArgs = frame + end + + local args = {} + for k, v in pairs( origArgs ) do + if type( k ) == 'number' or v ~= '' then + args[ k ] = v + end + end + return buildList( args, listType ) + end +end + +return { + hlist = makeWrapper( 'hlist' ), + unbulleted = makeWrapper( 'unbulleted' ) +} + 7fnvavc9dt9oq9bhw6igpd4gryxtl07 + + + + Modulis:Yesno + 828 + 2771 + + 30377 + 2014-06-21T09:48:46Z + + Edgars2007 + 114 + + Jauna lapa: -- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) val = type(val) == 's... + Scribunto + text/plain + -- Function allowing for consistent treatment of boolean-like wikitext input. +-- It works similarly to the template {{yesno}}. +return function (val, default) + val = type(val) == 'string' and mw.ustring.lower(val) or val -- put in lower case + if val == nil then + return nil + elseif val == false or val == 'no' or val == 'nē' or val == 'n' or val == 'false' or tonumber(val) == 0 then + return false + elseif val == true or val == 'yes' or val == 'y' or val == 'jā' or val == 'j' or val == 'true' or tonumber(val) == 1 then + return true + else + return default + end +end + iqjnmjz33lcv0wsrtxqf6y02no2oa68 + + + + Modulis:Navbox + 828 + 2772 + + 30378 + 2014-06-21T09:49:38Z + + Edgars2007 + 114 + + Jauna lapa: -- -- This module will implement {{Navbox}} -- local p = {} local HtmlBuilder = require('Module:HtmlBuilder') local Navbar = require('Module:Navbar') local args local frame local... + Scribunto + text/plain + -- +-- This module will implement {{Navbox}} +-- + +local p = {} + +local HtmlBuilder = require('Module:HtmlBuilder') +local Navbar = require('Module:Navbar') + +local args +local frame +local tableRowAdded = false +local border +local listnums = {} + +function trim(s) + return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1")) +end + +function addNewline(s) + if s:match('^[*:;#]') or s:match('^{|') then + return '\n' .. s ..'\n' + else + return s + end +end + +function addTableRow(tbl) + -- If any other rows have already been added, then we add a 2px gutter row. + if tableRowAdded then + tbl + .tag('tr') + .css('height', '2px') + .tag('td') + .attr('colspan',2) + end + + tableRowAdded = true + + return tbl.tag('tr') +end + + +-- +-- Title row +-- +function renderTitleRow(tbl) + if not args.title then return end + + local titleRow = addTableRow(tbl) + + if args.titlegroup then + titleRow + .tag('th') + .attr('scope', 'row') + .addClass('navbox-group') + .addClass(args.titlegroupclass) + .cssText(args.basestyle) + .cssText(args.groupstyle) + .cssText(args.titlegroupstyle) + .wikitext(args.titlegroup) + end + + local titleCell = titleRow.tag('th').attr('scope', 'col') + + if args.titlegroup then + titleCell + .css('border-left', '2px solid #fdfdfd') + .css('width', '100%') + end + + local titleColspan = 2 + if args.imageleft then titleColspan = titleColspan + 1 end + if args.image then titleColspan = titleColspan + 1 end + if args.titlegroup then titleColspan = titleColspan - 1 end + + titleCell + .cssText(args.basestyle) + .cssText(args.titlestyle) + .addClass('navbox-title') + .attr('colspan', titleColspan) + + renderNavBar(titleCell) + + titleCell + .tag('div') + .addClass(args.titleclass) + .css('font-size', '110%') + .wikitext(addNewline(args.title)) +end + +function renderNavBar(titleCell) + -- Depending on the presence of the navbar and/or show/hide link, we may need to add a spacer div on the left + -- or right to keep the title centered. + local spacerSide = nil + + if args.navbar == 'off' then + -- No navbar, and client wants no spacer, i.e. wants the title to be shifted to the left. If there's + -- also no show/hide link, then we need a spacer on the right to achieve the left shift. + if args.state == 'plain' then spacerSide = 'right' end + elseif args.navbar == 'plain' or args.navbar == 'off' or (not args.name and (border == 'subgroup' or border == 'child' or border == 'none')) then + -- No navbar. Need a spacer on the left to balance out the width of the show/hide link. + if args.state ~= 'plain' then spacerSide = 'left' end + else + -- Will render navbar (or error message). If there's no show/hide link, need a spacer on the right + -- to balance out the width of the navbar. + if args.state == 'plain' then spacerSide = 'right' end + + titleCell.wikitext(Navbar.navbar({ + args.name, + mini = 1, + fontstyle = (args.basestyle or '') .. ';' .. (args.titlestyle or '') .. ';background:none transparent;border:none;' + })) + end + + -- Render the spacer div. + if spacerSide then + titleCell + .tag('span') + .css('float', spacerSide) + .css('width', '6em') + .wikitext('&nbsp;') + end +end + + +-- +-- Above/Below rows +-- +function renderAboveRow(tbl) + if not args.above then return end + + addTableRow(tbl) + .tag('td') + .addClass('navbox-abovebelow') + .addClass(args.aboveclass) + .cssText(args.basestyle) + .cssText(args.abovestyle) + .attr('colspan', getAboveBelowColspan()) + .tag('div') + .wikitext(addNewline(args.above)) +end + +function renderBelowRow(tbl) + if not args.below then return end + + addTableRow(tbl) + .tag('td') + .addClass('navbox-abovebelow') + .addClass(args.belowclass) + .cssText(args.basestyle) + .cssText(args.belowstyle) + .attr('colspan', getAboveBelowColspan()) + .tag('div') + .wikitext(addNewline(args.below)) +end + +function getAboveBelowColspan() + local ret = 2 + if args.imageleft then ret = ret + 1 end + if args.image then ret = ret + 1 end + return ret +end + + +-- +-- List rows +-- +function renderListRow(tbl, listnum) + local row = addTableRow(tbl) + + if listnum == 1 and args.imageleft then + row + .tag('td') + .addClass('navbox-image') + .addClass(args.imageclass) + .css('width', '0%') + .css('padding', '0px 2px 0px 0px') + .cssText(args.imageleftstyle) + .attr('rowspan', 2 * #listnums - 1) + .tag('div') + .wikitext(addNewline(args.imageleft)) + end + + if args['group' .. listnum] then + local groupCell = row.tag('th') + + groupCell + .attr('scope', 'row') + .addClass('navbox-group') + .addClass(args.groupclass) + .cssText(args.basestyle) + + if args.groupwidth then + groupCell.css('width', args.groupwidth) + end + + groupCell + .cssText(args.groupstyle) + .cssText(args['group' .. listnum .. 'style']) + .wikitext(args['group' .. listnum]) + end + + local listCell = row.tag('td') + + if args['group' .. listnum] then + listCell + .css('text-align', 'left') + .css('border-left-width', '2px') + .css('border-left-style', 'solid') + else + listCell.attr('colspan', 2) + end + + if not args.groupwidth then + listCell.css('width', '100%') + end + + local isOdd = (listnum % 2) == 1 + local rowstyle = args.evenstyle + if isOdd then rowstyle = args.oddstyle end + + local evenOdd + if args.evenodd == 'swap' then + if isOdd then evenOdd = 'even' else evenOdd = 'odd' end + else + if isOdd then evenOdd = args.evenodd or 'odd' else evenOdd = args.evenodd or 'even' end + end + + listCell + .css('padding', '0px') + .cssText(args.liststyle) + .cssText(rowstyle) + .cssText(args['list' .. listnum .. 'style']) + .addClass('navbox-list') + .addClass('navbox-' .. evenOdd) + .addClass(args.listclass) + .tag('div') + .css('padding', (listnum == 1 and args.list1padding) or args.listpadding or '0em 0.25em') + .wikitext(addNewline(args['list' .. listnum])) + + if listnum == 1 and args.image then + row + .tag('td') + .addClass('navbox-image') + .addClass(args.imageclass) + .css('width', '0%') + .css('padding', '0px 0px 0px 2px') + .cssText(args.imagestyle) + .attr('rowspan', 2 * #listnums - 1) + .tag('div') + .wikitext(addNewline(args.image)) + end +end + + +-- +-- Tracking categories +-- +function renderTrackingCategories(builder) + local frame = mw.getCurrentFrame() + + if not frame then return end + + local s = frame:preprocess('{{#ifeq:{{NAMESPACE}}|{{ns:10}}|1|0}}{{SUBPAGENAME}}') + if mw.ustring.sub(s, 1, 1) == '0' then return end -- not in template space + local subpage = mw.ustring.lower(mw.ustring.sub(s, 2)) + if subpage == 'doc' or subpage == 'sandbox' or subpage == 'testcases' then return end + + for i, cat in ipairs(getTrackingCategories()) do + builder.wikitext('[[Category:' .. cat .. ']]') + end +end + +function getTrackingCategories() + local cats = {} +-- if needsHorizontalLists() then table.insert(cats, 'Navigational boxes without horizontal lists') end +-- if hasBackgroundColors() then table.insert(cats, 'Navboxes using background colours') end + return cats +end + +function needsHorizontalLists() + if border == 'child' or border == 'subgroup' or args.tracking == 'no' then return false end + + local listClasses = {'plainlist', 'hlist', 'hlist hnum', 'hlist hwrap', 'hlist vcard', 'vcard hlist', 'hlist vevent'} + for i, cls in ipairs(listClasses) do + if args.listclass == cls or args.bodyclass == cls then + return false + end + end + + return true +end + +function hasBackgroundColors() + return args.titlestyle or args.groupstyle +end + + +-- +-- Main navbox tables +-- +function renderMainTable() + local tbl = HtmlBuilder.create('table') + .attr('cellspacing', 0) + .addClass('nowraplinks') + .addClass(args.bodyclass) + + if args.title and (args.state ~= 'plain' and args.state ~= 'off') then + tbl + .addClass('collapsible') + .addClass(args.state or 'autocollapse') + end + + tbl.css('border-spacing', 0) + if border == 'subgroup' or border == 'child' or border == 'none' then + tbl + .addClass('navbox-subgroup') + .cssText(args.bodystyle) + .cssText(args.style) + else -- regular navbox - bodystyle and style will be applied to the wrapper table + tbl + .addClass('navbox-inner') + .css('background', 'transparent') + .css('color', 'inherit') + end + tbl.cssText(args.innerstyle) + + renderTitleRow(tbl) + renderAboveRow(tbl) + for i, listnum in ipairs(listnums) do + renderListRow(tbl, listnum) + end + renderBelowRow(tbl) + + return tbl +end + +function p._navbox(navboxArgs) + args = navboxArgs + + for k, v in pairs(args) do + local listnum = ('' .. k):match('^list(%d+)$') + if listnum then table.insert(listnums, tonumber(listnum)) end + end + table.sort(listnums) + + border = trim(args.border or args[1] or '') + + -- render the main body of the navbox + local tbl = renderMainTable() + + -- render the appropriate wrapper around the navbox, depending on the border param + local res = HtmlBuilder.create() + if border == 'none' then + res.node(tbl) + elseif border == 'subgroup' or border == 'child' then + -- We assume that this navbox is being rendered in a list cell of a parent navbox, and is + -- therefore inside a div with padding:0em 0.25em. We start with a </div> to avoid the + -- padding being applied, and at the end add a <div> to balance out the parent's </div> + res + .tag('/div', {unclosed = true}) + .done() + .node(tbl) + .tag('div', {unclosed = true}) + else + res + .tag('table') + .attr('cellspacing', 0) + .addClass('navbox') + .css('border-spacing', 0) + .cssText(args.bodystyle) + .cssText(args.style) + .tag('tr') + .tag('td') + .css('padding', '2px') + .node(tbl) + end + + renderTrackingCategories(res) + + return tostring(res) +end + +function p.navbox(frame) + -- ParserFunctions considers the empty string to be false, so to preserve the previous + -- behavior of {{navbox}}, change any empty arguments to nil, so Lua will consider + -- them false too. + local args = {} + local parent_args = frame:getParent().args; + + -- Out of order parsing bug. + local temp; + temp = parent_args.title; + temp = parent_args.above; + for i = 1, 20 do + temp = parent_args["group" .. tostring(i)]; + temp = parent_args["list" .. tostring(i)]; + end + temp = parent_args.below; + + for k, v in pairs(parent_args) do + if v ~= '' then + args[k] = v + end + end + return p._navbox(args) +end + +return p + svuk1mvolhjsy9tp2gbq5a5x1siudvc + + + + Modulis:Navbar + 828 + 2773 + + 30381 + 30380 + 2014-06-21T09:53:57Z + + Edgars2007 + 114 + + Scribunto + text/plain + local p = {} + +local HtmlBuilder = require('Module:HtmlBuilder') + +function trim(s) + return mw.ustring.match( s, "^%s*(.-)%s*$" ) +end + +function error(s) + local span = HtmlBuilder.create('span') + + span + .addClass('error') + .css('float', 'left') + .css('white-space', 'nowrap') + .wikitext('Error: ' .. s) + + return tostring(span) +end + +function getTitle( pageName ) + pageName = trim( pageName ); + local page_title, talk_page_title; + + if mw.ustring.sub(pageName, 1, 1) == ':' then + page_title = mw.title.new( mw.ustring.sub(pageName, 2) ); + else + page_title = mw.title.new( pageName, 'Taiss' ); + end + + if page_title then + talk_page_title = page_title.talkPageTitle; + else + talk_page_title = nil; + end + + return page_title, talk_page_title; +end + +function _navbar( args ) + if not args[1] then + return error('Nav norādīts nosaukums') + end + + local good, title, talk_title; + good, title, talk_title = pcall( getTitle, args[1] ); + if not good then + return error(title); + end + + if not title then + return error('Lapa neeksistē') + end + + local mainpage = title.fullText; + local talkpage = talk_title and talk_title.fullText or '' + local editurl = title:fullUrl( 'action=edit' ); + + local viewLink, talkLink, editLink = 'vērtīs', 'sprīža', 'pataiseit' + if args.mini then + viewLink, talkLink, editLink = 'v', 's', 'p' + end + + local div = HtmlBuilder.create( 'div' ) + div + .addClass( 'plainlinks' ) + .addClass( 'hlist' ) + .addClass( 'navbar') + .cssText( args.style ) + + if args.mini then div.addClass('mini') end + + if not (args.mini or args.plain) then + div + .tag( 'span' ) + .css( 'word-spacing', 0 ) + .cssText( args.fontstyle ) + .wikitext( args.text or 'Šī veidne:' ) + .wikitext( ' ' ) + end + + if args.brackets then + div + .tag('span') + .css('margin-right', '-0.125em') + .cssText( args.fontstyle ) + .wikitext( '&#91;' ) + .newline(); + end + + local ul = div.tag('ul'); + + ul + .tag( 'li' ) + .addClass( 'nv-view' ) + .wikitext( '[[' .. mainpage .. '|' ) + .tag( 'span ' ) + .attr( 'title', 'Apsavērt itū taisu' ) + .cssText( args.fontstyle or '' ) + .wikitext( viewLink ) + .done() + .wikitext( ']]' ) + .done() + .tag( 'li' ) + .addClass( 'nv-talk' ) + .wikitext( '[[' .. talkpage .. '|' ) + .tag( 'span ' ) + .attr( 'title', 'Sprīst ap itū taisu' ) + .cssText( args.fontstyle or '' ) + .wikitext( talkLink ) + .done() + .wikitext( ']]' ); + + if not args.noedit then + ul + .tag( 'li' ) + .addClass( 'nv-edit' ) + .wikitext( '[' .. editurl .. ' ' ) + .tag( 'span ' ) + .attr( 'title', 'Pataiseit itū taisu' ) + .cssText( args.fontstyle or '' ) + .wikitext( editLink ) + .done() + .wikitext( ']' ); + end + + if args.brackets then + div + .tag('span') + .css('margin-left', '-0.125em') + .cssText( args.fontstyle or '' ) + .wikitext( '&#93;' ) + .newline(); + end + + return tostring(div) +end + +function p.navbar(frame) + local origArgs + -- If called via #invoke, use the args passed into the invoking template. + -- Otherwise, for testing purposes, assume args are being passed directly in. + if frame == mw.getCurrentFrame() then + origArgs = frame:getParent().args + else + origArgs = frame + end + + -- ParserFunctions considers the empty string to be false, so to preserve the previous + -- behavior of {{navbar}}, change any empty arguments to nil, so Lua will consider + -- them false too. + args = {} + for k, v in pairs(origArgs) do + if v ~= '' then + args[k] = v + end + end + + return _navbar(args) +end + +return p + 71kx5ihclcrl8jhndji6wbpqwdm9cw6 + + + + MediaWiki:Licenses + 8 + 2775 + + 30389 + 2014-06-30T21:46:51Z + + SPQRobin + 2 + + Jauna lapa: Placeholder text to enable uploading after [[gerrit:136520]]. Please put license options here as explained on [[mw:Manual:Image administration#Licensing|MediaWiki.org]] (see common... + wikitext + text/x-wiki + Placeholder text to enable uploading after [[gerrit:136520]]. + +Please put license options here as explained on [[mw:Manual:Image administration#Licensing|MediaWiki.org]] (see [[commons:MediaWiki:Licenses|Commons]] as an example). + 8jf978rhcclur4am416hwuy5u3z7set + + + + Kategoreja:Krīvu volūda + 14 + 2776 + + 30392 + 30390 + 2014-07-10T19:51:25Z + + ScAvenger + 213 + + sakārtoju + wikitext + text/x-wiki + [[Kategoreja:Volūdys]] + t8vr7sd3hk5tik64qz58l21on0mhjit + + + + Augustus + 0 + 2778 + + 30670 + 30397 + 2015-03-24T14:34:56Z + + Cekli829 + 277 + + wikitext + text/x-wiki + [[Fails:Statue-Augustus.jpg|right|200px|thumb|Augustus Octavian]] + +{{DEFAULTSORT:Augustus}} +[[Kategoreja:Politiki]] + 7m6m07yl9mm7pr1aykvyj14iltqqumw + + + + Vikipedeja:Вики-Сабантуй 2015 + 4 + 2798 + + 31297 + 30460 + 2016-02-06T12:52:03Z + + Edgars2007 + 114 + + + Edgars2007 pārvietoja lapu [[Suoku puslopa:Вики-Сабантуй 2015]] uz [[Vikipedeja:Вики-Сабантуй 2015]] + wikitext + text/x-wiki + {{softredirect|wmru:Вики-Сабантуй 2015}} + my62xy332co0tjllaz55zwot76ee5o1 + + + + Taiss:Geobox coor + 10 + 2849 + + 30615 + 2015-03-23T17:43:26Z + + Edgars2007 + 114 + + Jauna lapa: <includeonly><span style="{{#if:{{{wrap|}}}||white-space: nowrap;}}">{{#if:{{{3|}}}| {{coord|{{{1|0}}}|{{{2|0}}}|{{{3|0}}}|{{#if:{{{4|}}}|{{{4}}}|N}}|{{{5|0}}}|{{{6|0}}}|{{{7|0}}}|{{#... + wikitext + text/x-wiki + <includeonly><span style="{{#if:{{{wrap|}}}||white-space: nowrap;}}">{{#if:{{{3|}}}| +{{coord|{{{1|0}}}|{{{2|0}}}|{{{3|0}}}|{{#if:{{{4|}}}|{{{4}}}|N}}|{{{5|0}}}|{{{6|0}}}|{{{7|0}}}|{{#if:{{{8|}}}|{{{8}}}|E}}|{{{9|type:other}}}|format={{{format|dms}}}|display=inline,title}}| {{#if:{{{2|}}}| +{{coord|{{{1|0}}}|{{{2|0}}}|{{#if:{{{4|}}}|{{{4}}}|N}}|{{{5|0}}}|{{{6|0}}}|{{#if:{{{8|}}}|{{{8}}}|E}}|{{{9|type:other}}}|format={{{format|dms}}}|display=inline,title}}| {{#if:{{{4|}}}| +{{coord|{{{1|0}}}|{{{4|N}}}|{{{5|0}}}|{{{8|E}}}|{{{9|type:other}}}|format={{{format|dec}}}|display=inline,title}}| {{#if:{{{1|}}}| +{{coord|{{{1|0}}}|{{{5|0}}}|{{{9|type:other}}}|format={{{format|dec}}}|display=inline,title}}}}}}}}}}</span></includeonly><noinclude> +</noinclude> + equamc7gqb5eayvspw9d0r22nl89n1z + + + + Taiss:Both + 10 + 2850 + + 30616 + 2015-03-23T17:44:28Z + + Edgars2007 + 114 + + Jauna lapa: {{#if:{{{1|}}}|{{#if:{{{2|}}}|1|}}|}} + wikitext + text/x-wiki + {{#if:{{{1|}}}|{{#if:{{{2|}}}|1|}}|}} + i6qb1i4iuakankzrch9wjyofngpjl17 + + + + Kategoreja:Koordinātas Vikidatos + 14 + 2851 + + 30624 + 2015-03-23T17:55:01Z + + Edgars2007 + 114 + + Jauna lapa: __HIDDENCAT__ + wikitext + text/x-wiki + __HIDDENCAT__ + 2twjmejn56ditxo46hqinfh52nh6flb + + + + Kategoreja:Lapas ar nepareizu koordinātu informāciju + 14 + 2852 + + 30625 + 2015-03-23T17:56:05Z + + Edgars2007 + 114 + + Jauna lapa: __HIDDENCAT__ + wikitext + text/x-wiki + __HIDDENCAT__ + 2twjmejn56ditxo46hqinfh52nh6flb + + + + Modulis:Vītys zemislopa + 828 + 2853 + + 31400 + 31399 + 2016-04-12T16:26:37Z + + Holder + 307 + + + Novērsu izmaiņas, ko izdarīja [[Special:Contributions/LL221W|LL221W]] ([[User talk:LL221W|Diskusija]]), atjaunoju versiju, ko saglabāja [[User:Edgars2007|Edgars2007]] + Scribunto + text/plain + --[[ Iekļautie veidi +longitude +lon_deg | longd | gar_d +lon_min | longm | gar_m +lon_sec | longs | gar_s +lon_dir | longEW | gar_EW + +latitude +lat_deg | latd | plat_d +lat_min | latm | plat_m +lat_sec | lats | plat_s +lat_dir | latNS | plat_NS +]]-- +require('Module:No globals') + +local p = {} + +local yesno = require('Module:Yesno') +local getArgs = require('Module:Arguments').getArgs + +local function round(n, decimals) + local pow = 10^(decimals or 0) + return math.floor(n * pow + 0.5) / pow +end + +function p.getMapParams(map, frame) + if not map then + error('Jābūt norādītam vietaskartes nosaukumam', 2) + end + local moduletitle = mw.title.new('Module:Vītys zemislopa/data/' .. map) + if not moduletitle then + error('"' .. map .. '" nav derīgs nosaukums', 2) + elseif moduletitle.exists then + local mapData = mw.loadData('Module:Vītys zemislopa/data/' .. map) + return function(name, params) + if name == nil then + return 'Module:Vītys zemislopa/data/' .. map + elseif mapData[name] == nil then + return '' + elseif params then + return mw.message.newRawMessage(tostring(mapData[name]), unpack(params)):plain() + else + return mapData[name] + end + end + elseif mw.title.new('Taiss:Vītys zemislopa/' .. map).exists then + local cache = {} + if type(frame) ~= 'table' or type(frame.expandTemplate) ~= 'function' then + error('A frame must be provided when using a legacy location map') + end + return function(name, params) + if params then + return frame:expandTemplate{title = 'Vītys zemislopa/' .. map, args = { name, unpack(params) }} + else + if name == nil then + return 'Taiss:Vītys zemislopa/' .. map + elseif cache[name] == nil then + cache[name] = frame:expandTemplate{title = 'Vītys zemislopa/' .. map, args = { name }} + end + return cache[name] + end + end + else + error('Netika atrasta vietaskarte. Neeksistē ne "Module:Vītys zemislopa/data/' .. map .. '", ne "Taiss:Vītys zemislopa/' .. map .. '"', 2) + end +end + +function p.data(frame, args, map) + if not args then + args = getArgs(frame, {frameOnly = true}) + end + if not map then + map = p.getMapParams(args[1], frame) + end + local params = {} + for k,v in ipairs(args) do + if k > 2 then + params[k-2] = v + end + end + return map(args[2], #params ~= 0 and params) +end + +local hemisphereMultipliers = { + longitude = { W = -1, w = -1, E = 1, e = 1 }, + latitude = { S = -1, s = -1, N = 1, n = 1 } +} + +local function decdeg(degrees, minutes, seconds, hemisphere, decimal, direction) + if not degrees then + if not decimal then + return nil + end + local retval = tonumber(decimal) + if not retval then + error('Nav derīga ' .. direction .. ' norādītā ' .. decimal .. ' vērtība', 2) + end + return retval + end + decimal = tonumber(degrees) + if not decimal then + error('Nav derīga ' .. direction .. ' norādītā ' .. degrees .. ' grādu vērtība', 2) + end + if minutes and not tonumber(minutes) then + error('Nav derīga ' .. direction .. ' norādītā ' .. minutes .. ' minūšu vērtība', 2) + end + if seconds and not tonumber(seconds) then + error('Nav derīga ' .. direction .. ' norādītā ' .. seconds .. ' sekunžu vērtība', 2) + end + decimal = decimal + (minutes or 0)/60 + (seconds or 0)/3600 + if hemisphere then + local multiplier = hemisphereMultipliers[direction][hemisphere] + if not multiplier then + error('Nav derīga ' .. direction .. ' norādītā ' .. hemisphere .. ' puslodes vērtība', 2) + end + decimal = decimal * multiplier + end + return decimal +end + +-- effectively make removeBlanks false for caption and maplink, and true for everything else +-- if useWikidata is present but blank, convert it to false instead of nil +-- p.top, p.bottom, and their callers need to use this +function p.valueFunc(key, value) + if value then + value = mw.text.trim(value) + end + if value ~= '' or key == 'caption' or key == 'maplink' then + return value + elseif key == 'useWikidata' then + return false + end +end + +local function getContainerImage(args, map) + if args.AlternativeMap then + return args.AlternativeMap + elseif yesno(args.relief) and map('image1') ~= '' then + return map('image1') + else + return map('image') + end +end + +function p.top(frame, args, map) + if not args then + args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc}) + end + if not map then + map = p.getMapParams(args[1], frame) + end + local width + if not args.width then + width = round((args.default_width or 240) * (tonumber(map('defaultscale')) or 1)) + elseif mw.ustring.sub(args.width, -2) == 'px' then + width = mw.ustring.sub(args.width, 1, -3) + else + width = args.width + end + local retval = args.float == 'center' and '<div class="center">' or '' + if args.caption and args.caption ~= '' then + retval = retval .. '<div class="noviewer thumb ' + if args.float == '"left"' or args.float == 'left' then + retval = retval .. 'tleft' + elseif args.float == '"center"' or args.float == 'center' or args.float == '"none"' or args.float == 'none' then + retval = retval .. 'tnone' + else + retval = retval .. 'tright' + end + retval = retval .. '"><div class="thumbinner" style="width:' .. (width + 2) .. 'px' + if args.border == 'none' then + retval = retval .. ';border:none' + elseif args.border then + retval = retval .. ';border-color:' .. args.border + end + retval = retval .. '"><div style="position:relative;width:' .. width .. 'px' .. (args.border ~= 'none' and ';border:1px solid lightgray">' or '">') + else + retval = retval .. '<div style="width:' .. width .. 'px;' + if args.float == '"left"' or args.float == 'left' then + retval = retval .. 'float:left;clear:left' + elseif args.float == '"center"' or args.float == 'center' then + retval = retval .. 'float:none;clear:both;margin-left:auto;margin-right:auto' + elseif args.float == '"none"' or args.float == 'none' then + retval = retval .. 'float:none;clear:none' + else + retval = retval .. 'float:right;clear:right' + end + retval = retval .. '"><div style="width:' .. width .. 'px;padding:0"><div style="position:relative;width:' .. width .. 'px">' + end + local image = getContainerImage(args, map) + retval = string.format( + '%s[[File:%s|%spx|%s%s]]', + retval, + image, + width, + args.alt or ((args.label or mw.title.getCurrentTitle().text) .. ' (' .. map('name') .. ')'), + args.maplink and ('|link=' .. args.maplink) or '' + ) + if args.overlay_image then + return retval .. '<div style="position:absolute;top:0;left:0">[[File:' .. args.overlay_image .. '|' .. width .. 'px]]</div>' + else + return retval + end +end + +function p.bottom(frame, args, map) + if not args then + args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc}) + end + if not map then + map = p.getMapParams(args[1], frame) + end + local retval = '</div>' + + if not args.caption then + retval = retval + elseif args.caption == '' then + retval = retval .. '<div style="font-size:90%;padding-top:3px"></div>' + else + -- This is not the pipe trick. We're creating a link with no text on purpose, so that CSS can give us a nice image + retval = retval .. '<div class="thumbcaption"><div class="magnify">[[:File:' .. getContainerImage(args, map) .. '| ]]</div>' .. args.caption .. '</div>' + end + + if args.switcherLabel then + retval = retval .. '<span class="switcher-label" style="display:none">' .. args.switcherLabel .. '</span>' + elseif args.autoSwitcherLabel then + retval = retval .. '<span class="switcher-label" style="display:none">Rādīt kartē "' .. map('name') .. '"</span>' + end + + retval = retval .. '</div></div>' + if args.caption_undefined then + mw.log('Removed parameter caption_undefined used.') + local parent = frame:getParent() + if parent then + mw.log('Parent is ' .. parent:getTitle()) + end + mw.logObject(args, 'args') + retval = retval .. '[[Kategorija:Vietas kartes ar iespējamām kļūdām]]' + end + if args.float == 'center' then + retval = retval .. '</div>' + end + return retval +end + +local function markOuterDiv(x, y, imageDiv, labelDiv) + return mw.html.create('div') + :cssText('position:absolute;top:' .. round(y, 3) .. '%;left:' .. round(x, 3) .. '%;height:0;width:0;margin:0;padding:0') + :node(imageDiv) + :node(labelDiv) +end + +local function markImageDiv(mark, marksize, label, link, alt, title) + local builder = mw.html.create('div') + :cssText('position:absolute;text-align:center;left:-' .. round(marksize / 2) .. 'px;top:-' .. round(marksize / 2) .. 'px;width:' .. marksize .. 'px;font-size:' .. marksize .. 'px;line-height:0') + :attr('title', title) + if marksize ~= 0 then + builder:wikitext(string.format( + '[[File:%s|%dx%dpx|%s|link=%s%s]]', + mark, + marksize, + marksize, + label, + link, + alt and ('|alt=' .. alt) or '' + )) + end + return builder +end + +local function markLabelDiv(label, label_size, label_width, position, background, x, marksize) + local builder = mw.html.create('div') + :cssText('font-size:' .. label_size .. '%;line-height:110%;position:absolute;width:' .. label_width .. 'em') + local distance = round(marksize / 2 + 1) + local spanCss + if position == 'top' then -- specified top + builder:cssText('bottom:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em;text-align:center') + elseif position == 'bottom' then -- specified bottom + builder:cssText('top:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em;text-align:center') + elseif position == 'left' or (tonumber(x) > 70 and position ~= 'right') then -- specified left or autodetected to left + builder:cssText('top:-0.75em;right:' .. distance .. 'px;text-align:right') + spanCss = 'float:right' + else -- specified right or autodetected to right + builder:cssText('top:-0.75em;left:' .. distance .. 'px;text-align:left') + spanCss = 'float:left' + end + builder = builder:tag('span') + :cssText('padding:1px') + :cssText(spanCss) + :wikitext(label) + if background then + builder:cssText('background-color:' .. background) + end + return builder:done() +end + +local function getX(longitude, left, right) + local width = (right - left) % 360 + if width == 0 then + width = 360 + end + local distanceFromLeft = (longitude - left) % 360 + -- the distance needed past the map to the right equals distanceFromLeft - width. the distance needed past the map to the left equals 360 - distanceFromLeft. to minimize page stretching, go whichever way is shorter + if distanceFromLeft - width / 2 >= 180 then + distanceFromLeft = distanceFromLeft - 360 + end + return 100 * distanceFromLeft / width +end + +local function getY(latitude, top, bottom) + return 100 * (top - latitude) / (top - bottom) +end + +function p.mark(frame, args, map) + if not args then + args = getArgs(frame, {wrappers = 'Taiss:Vītys zemislopa~'}) + end + if not map then + map = p.getMapParams(args[1], frame) + end + local x, y, longitude, latitude + longitude = decdeg(args.lon_deg or args.longd or args.gar_d, args.lon_min or args.longm or args.gar_m, args.lon_sec or args.longs or args.gar_s, args.lon_dir or args.longEW or args.gar_EW, args.long, 'longitude') + latitude = decdeg(args.lat_deg or args.latd or args.plat_d, args.lat_min or args.latm or args.plat_m, args.lat_sec or args.lats or args.plat_s, args.lat_dir or args.latNS or args.plat_NS, args.lat, 'latitude') + if not longitude and not latitude and args.useWikidata then + -- If they didn't provide either coordinate, try Wikidata. If they provided one but not the other, don't. + local entity = mw.wikibase.getEntityObject() + if entity and entity.claims and entity.claims.P625 and entity.claims.P625[1].mainsnak.snaktype == 'value' then + local value = entity.claims.P625[1].mainsnak.datavalue.value + longitude, latitude = value.longitude, value.latitude + end + end + if not longitude then + error('Netika norādīta garuma vērtība') + end + if not latitude then + error('Netika norādīta platuma vērtība') + end + local builder = mw.html.create() + if args.skew or args.lon_shift or args.markhigh then + mw.log('Removed parameter used in invocation.') + local parent = frame:getParent() + if parent then + mw.log('Parent is ' .. parent:getTitle()) + end + mw.logObject(args, 'args') + builder:wikitext('[[Kategorija:Vietas kartes ar iespējamām kļūdām]]') + end + if map('skew') ~= '' or map('lat_skew') ~= '' or map('crosses180') ~= '' or map('type') ~= '' then + mw.log('Removed parameter used in map definition ' .. map()) + builder:wikitext('[[Kategorija:Vietas kartes ar iespējamām kļūdām]]') + end + if map('x') ~= '' then + x = tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude }))) + else + x = tonumber(getX(longitude, map('left'), map('right'))) + end + if map('y') ~= '' then + y = tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude }))) + else + y = tonumber(getY(latitude, map('top'), map('bottom'))) + end + if (x < 0 or x > 100 or y < 0 or y > 100) and not args.outside then + mw.log('Marķieris atrodas ārpus definētās kartes robežām. x = ' .. x .. ', y = ' .. y) + local parent = frame:getParent() + if parent then + mw.log('Parent is ' .. parent:getTitle()) + end + mw.logObject(args, 'args') + builder:wikitext('[[Kategorija:Vietas kartes ar iespējamām kļūdām]]') + end + local mark = args.mark or map('mark') + if mark == '' then + mark = 'Red pog.svg' + end + local marksize = tonumber(args.marksize) or tonumber(map('marksize')) or 9 + local imageDiv = markImageDiv(mark, marksize, args.label or mw.title.getCurrentTitle().text, args.link or '', args.alt, args[2]) + local labelDiv + if args.label and args.position ~= 'none' then + labelDiv = markLabelDiv(args.label, args.label_size or 90, args.label_width or 6, args.position, args.background, x, marksize) + end + return builder:node(markOuterDiv(x, y, imageDiv, labelDiv)) +end + +function p.main(frame, args, map) + if not args then + args = getArgs(frame, {wrappers = 'Taiss:Vītys zemislopa', valueFunc = p.valueFunc}) + end + if args.useWikidata == nil then + args.useWikidata = true + end + if not map then + if args[1] then + map = {} + for mapname in string.gmatch(args[1], '[^#]+') do + map[#map + 1] = p.getMapParams(mapname, frame) + end + if #map == 1 then map = map[1] end + else + map = p.getMapParams('Pasaule', frame) + end + end + if type(map) == 'table' then + local outputs = {} + args.autoSwitcherLabel = true + for k,v in ipairs(map) do + outputs[k] = p.main(frame, args, v) + end + return '<div class="switcher-container" align="left">' .. table.concat(outputs) .. '</div>' + else + return p.top(frame, args, map) .. tostring( p.mark(frame, args, map) ) .. p.bottom(frame, args, map) + end +end + +return p + hsiydi0efamvro4dqpb9wlub9ulnn2f + + + + Modulis:No globals + 828 + 2854 + + 30631 + 2015-03-23T18:03:12Z + + Edgars2007 + 114 + + Jauna lapa: local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t,... + Scribunto + text/plain + local mt = getmetatable(_G) or {} +function mt.__index (t, k) + if k ~= 'arg' then + error('Tried to read nil global ' .. tostring(k), 2) + end + return nil +end +function mt.__newindex(t, k, v) + if k ~= 'arg' then + error('Tried to write global ' .. tostring(k), 2) + end + rawset(t, k, v) +end +setmetatable(_G, mt) + gggsv54pq7f94l3up48hr91qtxnskdm + + + + Taiss:Infoskreine mīsts + 10 + 2855 + + 30657 + 30652 + 2015-03-23T18:44:13Z + + Edgars2007 + 114 + + wikitext + text/x-wiki + {{Infoskreine +| bodyclass = geography vcard +| bodystyle = width:23em + +| headerstyle = text-align:left + +| abovestyle = font-size:1.25em; white-space:nowrap +| above = {{br separated entries + |1=<span class="fn org">{{ifempty|{{{name|}}}|{{{official_name|}}}|{{PAGENAME}}}}</span> + |2=<span class="nickname">{{{native_name|}}}</span> + |3={{#if:{{{other_name|}}}|<span class="nickname" style="font-size:78%">{{{other_name|}}}</span>}} +}}<!-- +** names, type, and transliterations ** +-->{{Infoskreine|child=yes + +| subheaderstyle = background-color:#cddeff; font-weight:bold; +| subheader = {{#if:{{both|{{{name|}}}{{{official_name|}}}|{{{settlement_type|{{{type|}}}}}}}}|<span class="category">{{{settlement_type|{{{type}}}}}}</span>}} + +| rowclass1 = mergedtoprow +| header1 = {{#if:{{{name|}}}|{{{official_name|}}}}} + +| rowclass2 = mergedtoprow +| header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transliterācija<!-- +***Transliteration language 1*** +-->{{Infoskreine|child=yes + |rowclass1 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} + |label1 = &nbsp;•&nbsp;{{{translit_lang1_type}}} + |data1 = {{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}} + + |rowclass2 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} + |label2 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} + |data2 = {{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}} + + |rowclass3 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} + |label3 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} + |data3 = {{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}} + + |rowclass4 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} + |label4 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} + |data4 = {{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}} + + |rowclass5 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} + |label5 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} + |data5 = {{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}} + + |rowclass6 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} + |label6 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} + |data6 = {{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}} + + |rowclass7 = mergedbottomrow + |label7 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} + |data7 = {{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}} }} + }} }} + +| rowclass3 = mergedtoprow +| header3 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transliterācija<!-- +***Transliteration language 2*** +-->{{Infoskreine|child=yes + |rowclass1 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} + |label1 = &nbsp;•&nbsp;{{{translit_lang2_type}}} + |data1 = {{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}} + + |rowclass2 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} + |label2 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} + |data2 = {{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}} + + |rowclass3 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} + |label3 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} + |data3 = {{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}} + + |rowclass4 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} + |label4 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} + |data4 = {{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}} + + |rowclass5 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} + |label5 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} + |data5 = {{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}} + + |rowclass6 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} + |label6 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} + |data6 = {{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}} + + |rowclass7 = mergedbottomrow + |label7 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} + |data7 = {{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}} }} + }} }} +}}<!-- end ** names, type, and transliterations ** --> + +<!-- ***Skyline Image*** --> +| imagestyle = padding:0.7em 0.8em +| image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image_skyline|}}}|size={{{imagesize|}}}|sizedefault=250px|alt={{{image_alt|}}}|title={{ifempty|{{{image_caption|}}}|{{{name|}}}|{{{official_name}}}|{{PAGENAME}}}}}} +| caption = {{{image_caption|}}} + +<!-- ***Other Image*** --> +| image2 = {{{image|}}} + +<!-- ***Flag, Seal, Shield and Coat of arms*** --> +| rowclass1 = mergedtoprow +| class1 = maptable +| data1 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} +|{{Infoskreine mīsts/columns +| 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Karūgs: {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<br /><small>'''{{Infoskreine mīsts/link|type=Karūgs|link={{{flag_link|}}}|name={{{official_name}}}}}'''</small>}} +| 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100px}}|alt={{{seal_alt|}}}|title=Emblēma: {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<br /><small>'''{{Infoskreine mīsts/link|type={{#if:{{{seal_type|}}}|{{{seal_type}}}|Emblēma}}|link={{{seal_link|}}}|name={{{official_name}}}}}'''</small>}} +| 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100px}}|alt={{{shield_alt|}}}|title=Gerbs: {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<br /><small>'''{{Infoskreine mīsts/link|type=Gerbs|link={{{shield_link|}}}|name={{{official_name}}}}}'''</small>}} +| 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100px}}|alt={{{blank_emblem_alt|}}}|title=Logo: {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}<br /><small>'''{{Infoskreine mīsts/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}|Logo}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}'''</small>}} +| 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100px|alt={{{map_alt|}}}|title={{{map_caption|Atrašanās vieta: {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}}}}{{#if:{{{map_caption|}}}|<br />{{{map_caption}}}}} }} +| 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{both|{{{latd|}}}|{{{longd|}}}}} {{both|{{{wikidata|}}}|{{#property:P625}}}} }}| +{{Kartes infokaste +| map = {{{pushpin_map|}}} +| map_alt = {{{map_alt|}}} +| alternative = {{{pushpin_image|}}} +| map_width = {{ifempty|{{{pushpin_mapsize|}}}|250}} +| map_caption = {{ifempty|{{{pushpin_map_caption|}}}|{{{map_caption|}}}}} +| relief = {{ifempty|{{{reljefa_karte|}}}|{{{pushpin_relief|}}}|{{{map_relief|}}}|{{{relief|}}}}} +| label = {{ifempty|{{{kartes_marķieris|}}}||{{{map_label|}}}|{{{name|}}}|{{{official_name|}}}|{{PAGENAME}}}} +| label_position = {{{pushpin_label_position|}}} +| mark = {{ifempty|{{{marķieris|}}}|{{{mark|}}}|Red pog.svg}} +| mark_width = {{ifempty|{{{marķiera_lielums|}}}|{{{mark_width|}}}|7}} +| lat = {{#Invoke:Coordinates|dms2dec<!-- + -->|{{ifempty|{{{plat_NS|}}}|{{{lat_dir|}}}|{{{latNS|}}}|{{{lat_NS|}}}}}<!-- + -->|{{ifempty|{{{plat_d|}}}|{{{lat_deg|}}}|{{{latd|}}}|{{{lat_d|}}}}}<!-- + -->|{{ifempty|{{{plat_m|}}}|{{{lat_min|}}}|{{{latm|}}}|{{{lat_m|}}}}}<!-- + -->|{{ifempty|{{{plat_s|}}}|{{{lat_sec|}}}|{{{lats|}}}|{{{lat_s|}}}}}<!-- + -->}} +| long = {{#Invoke:Coordinates|dms2dec<!-- + -->|{{ifempty|{{{gar_EW|}}}|{{{lon_dir|}}}|{{{longEW|}}}|{{{long_EW|}}}}}<!-- + -->|{{ifempty|{{{gar_d|}}}|{{{lon_deg|}}}|{{{longd|}}}|{{{long_d|}}}}}<!-- + -->|{{ifempty|{{{gar_m|}}}|{{{lon_min|}}}|{{{longm|}}}|{{{long_m|}}}}}<!-- + -->|{{ifempty|{{{gar_s|}}}|{{{lon_sec|}}}|{{{longs|}}}|{{{long_s|}}}}}<!-- + -->}} +| x = {{{x|}}} +| y = {{{y|}}} +| x% = {{{x%|}}} +| y% = {{{y%|}}} }} +}} }} +}} }} +<!-- TE VĒL JĀPIELIEK: + +| rowclass2 = mergedrow +| data2 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} + + +--> +<!-- ***Nickname*** --> +| rowclass2 = mergedrow +| data2 = {{#if:{{{nickname|}}}|Neformālais nosaukums: <span class="nickname">{{{nickname}}}</span>}} +<!-- ***Motto*** --> +| rowclass3 = mergedrow +| data3 = {{#if:{{{motto|}}}|Moto: {{{motto}}} }} +<!-- ***Anthem*** --> +| rowclass4 = mergedrow +| data4 = {{#if:{{{anthem|}}}|Himna: {{{anthem}}} }} +<!-- ***Map*** --> +| rowclass5 = mergedrow +| data5 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} +|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=250px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}}}}{{#if:{{{map_caption|}}}|<br /><small>{{{map_caption}}}</small>}} +}}}} +| rowclass6 = mergedrow +| data6 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault=250px|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{#if:{{{name|}}}|{{{name}}}|{{{official_name}}}}}}}}}}{{#if:{{{map_caption1|}}}|<br /><small>{{{map_caption1}}}</small>}} }} + +<!-- ***Pushpin Map*** --> +| rowclass8 = mergedtoprow +| data8 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{both|{{{latd|}}}|{{{longd|}}}}} {{both|{{{wikidata|}}}|{{#property:P625}}}} }}|{{Kartes infokaste +| map = {{{pushpin_map|}}} +| map_alt = {{{map_alt|}}} +| alternative = {{{pushpin_image|}}} +| map_width = {{ifempty|{{{pushpin_mapsize|}}}|250}} +| map_caption = {{ifempty|{{{pushpin_map_caption|}}}|{{{map_caption|}}}}} +| relief = {{ifempty|{{{reljefa_karte|}}}|{{{pushpin_relief|}}}|{{{map_relief|}}}|{{{relief|}}}}} +| label = {{ifempty|{{{kartes_marķieris|}}}||{{{map_label|}}}|{{{name|}}}|{{{official_name|}}}|{{PAGENAME}}}} +| label_position = {{{pushpin_label_position|}}} +| mark = {{ifempty|{{{marķieris|}}}|{{{mark|}}}|Red pog.svg}} +| mark_width = {{ifempty|{{{marķiera_lielums|}}}|{{{mark_width|}}}|7}} +| lat = {{#Invoke:Coordinates|dms2dec<!-- + -->|{{ifempty|{{{plat_NS|}}}|{{{lat_dir|}}}|{{{latNS|}}}|{{{lat_NS|}}}}}<!-- + -->|{{ifempty|{{{plat_d|}}}|{{{lat_deg|}}}|{{{latd|}}}|{{{lat_d|}}}}}<!-- + -->|{{ifempty|{{{plat_m|}}}|{{{lat_min|}}}|{{{latm|}}}|{{{lat_m|}}}}}<!-- + -->|{{ifempty|{{{plat_s|}}}|{{{lat_sec|}}}|{{{lats|}}}|{{{lat_s|}}}}}<!-- + -->}} +| long = {{#Invoke:Coordinates|dms2dec<!-- + -->|{{ifempty|{{{gar_EW|}}}|{{{lon_dir|}}}|{{{longEW|}}}|{{{long_EW|}}}}}<!-- + -->|{{ifempty|{{{gar_d|}}}|{{{lon_deg|}}}|{{{longd|}}}|{{{long_d|}}}}}<!-- + -->|{{ifempty|{{{gar_m|}}}|{{{lon_min|}}}|{{{longm|}}}|{{{long_m|}}}}}<!-- + -->|{{ifempty|{{{gar_s|}}}|{{{lon_sec|}}}|{{{longs|}}}|{{{long_s|}}}}}<!-- + -->}} +| x = {{{x|}}} +| y = {{{y|}}} +| x% = {{{x%|}}} +| y% = {{{y%|}}} }} +}}}} + +| rowclass9 = mergedrow +| data9 ={{#if:{{both|{{{pushpin_map1|}}}|{{both|{{{latd|}}}|{{{longd|}}}}} {{both|{{{wikidata|}}}|{{#property:P625}}}} }}| +{{Kartes infokaste +| map = {{{pushpin_map1|}}} +| map_alt = {{{map_alt1|}}} +| alternative = {{{pushpin_image1|}}} +| map_width = {{ifempty|{{{pushpin_mapsize1|}}}|250}} +| map_caption = {{ifempty|{{{pushpin_map_caption1|}}}|{{{map_caption1|}}}}} +| relief = {{ifempty|{{{reljefa_karte1|}}}|{{{pushpin_relief1|}}}|{{{map_relief1|}}}|{{{relief1|}}}}} +| label = {{ifempty|{{{kartes_marķieris1|}}}||{{{map_label1|}}}|{{{name|}}}|{{{official_name|}}}|{{PAGENAME}}}} +| label_position = {{{pushpin_label_position1|}}} +| mark = {{ifempty|{{{marķieris1|}}}|{{{mark1|}}}|Red pog.svg}} +| mark_width = {{ifempty|{{{marķiera_lielums1|}}}|{{{mark_width1|}}}|7}} +| lat = {{#Invoke:Coordinates|dms2dec<!-- + -->|{{ifempty|{{{plat_NS|}}}|{{{lat_dir|}}}|{{{latNS|}}}|{{{lat_NS|}}}}}<!-- + -->|{{ifempty|{{{plat_d|}}}|{{{lat_deg|}}}|{{{latd|}}}|{{{lat_d|}}}}}<!-- + -->|{{ifempty|{{{plat_m|}}}|{{{lat_min|}}}|{{{latm|}}}|{{{lat_m|}}}}}<!-- + -->|{{ifempty|{{{plat_s|}}}|{{{lat_sec|}}}|{{{lats|}}}|{{{lat_s|}}}}}<!-- + -->}} +| long = {{#Invoke:Coordinates|dms2dec<!-- + -->|{{ifempty|{{{gar_EW|}}}|{{{lon_dir|}}}|{{{longEW|}}}|{{{long_EW|}}}}}<!-- + -->|{{ifempty|{{{gar_d|}}}|{{{lon_deg|}}}|{{{longd|}}}|{{{long_d|}}}}}<!-- + -->|{{ifempty|{{{gar_m|}}}|{{{lon_min|}}}|{{{longm|}}}|{{{long_m|}}}}}<!-- + -->|{{ifempty|{{{gar_s|}}}|{{{lon_sec|}}}|{{{longs|}}}|{{{long_s|}}}}}<!-- + -->}} +| x = {{{x|}}} +| y = {{{y|}}} +| x% = {{{x%|}}} +| y% = {{{y%|}}} }} +}} + +<!-- ***Coordinates*** --> +| rowclass10 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}{{{pushpin_map1|}}}|{{#if:{{{grid_name|}}}|mergedrow|mergedbottomrow}}}} +| data10 = {{#if:{{both|{{{latd|}}}|{{{longd|}}}}} + |Koordinatys{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})|}}: {{Geobox coor|{{{latd|}}}|{{{latm|}}}|{{{lats|}}}|{{{latNS|}}}|{{{longd|}}}|{{{longm|}}}|{{{longs|}}}|{{{longEW|}}}|{{#if:{{{coordinates_type|}}}|{{{coordinates_type}}}|type:city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{{population_total}}}|R}})}}|}}{{#if:{{{coordinates_region|}}}|_region:{{{coordinates_region}}} }} }}|display={{#if:{{{coordinates_display|}}}|{{{coordinates_display|}}}|inline,title}}|{{#if:{{{coordinates_format|}}}|format|μ2}}={{{coordinates_format|}}}}}{{{coordinates_footnotes|}}} + |{{#if:{{both|{{{wikidata|}}}|{{#property:P625}}}} + |Koordinatys{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})|}}: {{#invoke:Coordinates|coord|type={{#if:{{{coordinates_type|}}}|{{{coordinates_type}}}|type:city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{{population_total}}}|R}})}}|}}{{#if:{{{coordinates_region|}}}|_region:{{{coordinates_region}}}}} }}|{{#ifeq:{{{coordinates_display|}}}|inline|μ1|{{#if:{{{coordinates_display|}}}|title|μ1}}}}={{{coordinates_display|}}}|format={{#if:{{{coordinates_format|}}}|{{{coordinates_format|}}}|dms}}}}{{{coordinates_footnotes|}}} + }} +}} + +<!-- ***Subdivisions*** --> +| rowclass11 = mergedtoprow +| label11 = {{{subdivision_type}}} +| data11 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} + +| rowclass12 = mergedrow +| label12 = {{{subdivision_type1}}} +| data12 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} + +| rowclass13 = mergedrow +| label13 = {{{subdivision_type2}}} +| data13 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} + +| rowclass14 = mergedrow +| label14 = {{{subdivision_type3}}} +| data14 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} + +| rowclass15 = mergedrow +| label15 = {{{subdivision_type4}}} +| data15 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} + +| rowclass16 = mergedrow +| label16 = {{{subdivision_type5}}} +| data16 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} + +| rowclass17 = mergedrow +| label17 = {{{subdivision_type6}}} +| data17 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} + +<!--***Established*** --> +| rowclass18 = mergedtoprow +| label18 = {{{established_title}}} +| data18 = {{#if:{{{established_title|}}}|{{{established_date|}}} }} + +| rowclass19 = mergedrow +| label19 = {{{established_title1}}} +| data19 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} + +| rowclass20 = mergedrow +| label20 = {{{established_title2}}} +| data20 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} + +| rowclass21 = mergedrow +| label21 = {{{established_title3}}} +| data21 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} + +| rowclass22 = mergedrow +| label22 = {{{established_title4}}} +| data22 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} + +| rowclass23 = mergedrow +| label23 = {{{extinct_title}}} +| data23 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} + +| rowclass24 = mergedrow +| label24 = Dibinātājs +| data24 = {{{founder|}}} + +| rowclass25 = mergedrow +| label25 = Kā vārdā nosaukta +| data25 = {{{named_for|}}} + +<!-- ***Seat of government and subdivisions within the settlement*** --> +| rowclass26 = mergedtoprow +| label26 = {{#if:{{{seat_type|}}}|{{{seat_type}}}|Seat}} +| data26 = {{{seat|}}} + +| rowclass27 = mergedrow +| label27 = {{#if:{{{seat1_type|}}}|{{{seat1_type}}}|Former seat}} +| data27 = {{{seat1|}}} + +| rowclass28 = {{#if:{{{seat|}}}{{{seat1|}}}|mergedrow|mergedtoprow}} +| label28 = {{#if:{{{parts_type|}}}|{{{parts_type}}}|Apkaimes}} +| data28 = {{#if:{{{parts|}}}{{{p1|}}} +|{{#ifeq:{{{parts_style|}}}|para + |<b>{{{parts|}}}{{#if:{{both|{{{parts|}}}|{{{p1|}}}}}|&#58;&nbsp;|}}</b>{{comma separated entries|{{{p1|}}}|{{{p2|}}}|{{{p3|}}}|{{{p4|}}}|{{{p5|}}}|{{{p6|}}}|{{{p7|}}}|{{{p8|}}}|{{{p9|}}}|{{{p10|}}}|{{{p11|}}}|{{{p12|}}}|{{{p13|}}}|{{{p14|}}}|{{{p15|}}}|{{{p16|}}}|{{{p17|}}}|{{{p18|}}}|{{{p19|}}}|{{{p20|}}}|{{{p21|}}}|{{{p22|}}}|{{{p23|}}}|{{{p24|}}}|{{{p25|}}}|{{{p26|}}}|{{{p27|}}}|{{{p28|}}}|{{{p29|}}}|{{{p30|}}}|{{{p31|}}}|{{{p32|}}}|{{{p33|}}}|{{{p34|}}}|{{{p35|}}}|{{{p36|}}}|{{{p37|}}}|{{{p38|}}}|{{{p39|}}}|{{{p40|}}}|{{{p41|}}}|{{{p42|}}}|{{{p43|}}}|{{{p44|}}}|{{{p45|}}}|{{{p46|}}}|{{{p47|}}}|{{{p48|}}}|{{{p49|}}}|{{{p50|}}}}} + |{{#if:{{{p1|}}}|{{Collapsible list|title={{{parts|}}}|expand={{#switch:{{{parts_style|}}}|coll=|list=y|{{#if:{{{p6|}}}||y}}}}|1={{{p1|}}}|2={{{p2|}}}|3={{{p3|}}}|4={{{p4|}}}|5={{{p5|}}}|6={{{p6|}}}|7={{{p7|}}}|8={{{p8|}}}|9={{{p9|}}}|10={{{p10|}}}|11={{{p11|}}}|12={{{p12|}}}|13={{{p13|}}}|14={{{p14|}}}|15={{{p15|}}}|16={{{p16|}}}|17={{{p17|}}}|18={{{p18|}}}|19={{{p19|}}}|20={{{p20|}}}|21={{{p21|}}}|22={{{p22|}}}|23={{{p23|}}}|24={{{p24|}}}|25={{{p25|}}}|26={{{p26|}}}|27={{{p27|}}}|28={{{p28|}}}|29={{{p29|}}}|30={{{p30|}}}|31={{{p31|}}}|32={{{p32|}}}|33={{{p33|}}}|34={{{p34|}}}|35={{{p35|}}}|36={{{p36|}}}|37={{{p37|}}}|38={{{p38|}}}|39={{{p39|}}}|40={{{p40|}}}|41={{{p41|}}}|42={{{p42|}}}|43={{{p43|}}}|44={{{p44|}}}|45={{{p45|}}}|46={{{p46|}}}|47={{{p47|}}}|48={{{p48|}}}|49={{{p49|}}}|50={{{p50|}}}}} + |{{{parts}}} + }} + }} }} + +<!-- ***Government type and Leader*** --> +| rowclass29 = mergedtoprow +| header29 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Administrācija<span style="font-weight:normal">{{{government_footnotes|}}}</span>}} +<!-- ***Government*** --> +| rowclass30 = mergedrow +| label30 = &nbsp;•&nbsp;Tips +| data30 = {{{government_type|}}} + +| rowclass31 = mergedrow +| label31 = &nbsp;•&nbsp;Body +| class31 = agent +| data31 = {{{governing_body|}}} + +| rowclass32 = mergedrow +| label32 = &nbsp;•&nbsp;{{{leader_title}}} +| data32 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} +| rowclass33 = mergedrow +| label33 = &nbsp;•&nbsp;{{{leader_title1}}} +| data33 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} +| rowclass34 = mergedrow +| label34 = &nbsp;•&nbsp;{{{leader_title2}}} +| data34 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} +| rowclass35 = mergedrow +| label35 = &nbsp;•&nbsp;{{{leader_title3}}} +| data35 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} +| rowclass36 = mergedrow +| label36 = &nbsp;•&nbsp;{{{leader_title4}}} +| data36 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} + +<!-- ***Geographical characteristics*** --> +<!-- ***Area*** --> +| rowclass37 = mergedtoprow +| header37 = {{#if:{{{area_total_km2|}}}{{{area_land_km2|}}}{{{area_water_km2|}}}{{{area_urban_km2|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_blank1_km2|}}} + |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}}} + |<!-- displayed below --> + |Platība<span style="font-weight:normal">{{{area_footnotes|}}}</span> + }} + }} + +| rowclass38 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}}}|mergedtoprow|mergedrow}} +| label38 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}}} + |Pluots<span style="font-weight:normal">{{{area_footnotes|}}}</span> + |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_urban_km2|}}}{{{area_rural_km2|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|Pluots}}|Kūpā}}}} + }} +| data38 = {{#if:{{{area_total_km2|}}}|{{formatnum:{{{area_total_km2|}}}}}&nbsp;km<sup>2</sup>}} + +| rowclass39 = mergedrow +| label39 = &nbsp;•&nbsp;sauszeme +| data39 = {{#if:{{{area_land_km2|}}}|{{formatnum:{{{area_land_km2|}}}}}&nbsp;km<sup>2</sup>}} + +| rowclass40 = mergedrow +| label40 = &nbsp;•&nbsp;ūdens +| data40 = {{#if:{{{area_water_km2|}}} + |{{formatnum:{{{area_water_km2|}}}&nbsp;km<sup>2</sup>}} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}%}}}} + +| rowclass41 = mergedrow +| label41 = &nbsp;•&nbsp;pilsēta<span style="font-weight:normal">{{{area_urban_footnotes|}}}</span> +| data41 = {{#if:{{{area_urban_km2|}}} + |{{formatnum:{{{area_urban_km2|}}}}}&nbsp;km<sup>2</sup>}} + +| rowclass42 = mergedrow +| label42 = &nbsp;•&nbsp;lauki<span style="font-weight:normal">{{{area_rural_footnotes|}}}</span> +| data42 = {{#if:{{{area_rural_km2|}}} + |{{formatnum:{{{area_rural_km2|}}}}}&nbsp;km<sup>2</sup>}} + +| rowclass43 = mergedrow +| label43 =&nbsp;•&nbsp;aglomerācija<span style="font-weight:normal">{{{area_metro_footnotes|}}}</span> +| data43 = {{#if:{{{area_metro_km2|}}} + |{{formatnum:{{{area_metro_km2|}}}}}&nbsp;km<sup>2</sup>}} + +<!-- ***Area rank*** --> +| rowclass44 = mergedrow +| label44 = Platības vieta +| data44 = {{{area_rank|}}} + +| rowclass45 = mergedrow +| label45 = &nbsp;•&nbsp;{{{area_blank1_title}}} +| data45 = {{#if:{{{area_blank1_km2|}}} + |{{formatnum:{{{area_blank1_km2|}}}}}&nbsp;km<sup>2</sup>}} + +| rowclass46 = mergedrow +| label46 = &nbsp;•&nbsp;{{{area_blank2_title}}} +| data46 = {{#if:{{{area_blank2_km2|}}} + |{{formatnum:{{{area_blank2_km2|}}}}}&nbsp;km<sup>2</sup>}} + +| rowclass47 = mergedrow +| label47 = &nbsp; +| data47 = {{#if:{{{area_note|}}}|<small>{{{area_note}}}</small>}} + +<!-- ***Dimensions*** --> +| rowclass48 = mergedtoprow +| header48 = {{#if:{{{length_km|}}}|Izmēri<span style="font-weight:normal">{{{dimensions_footnotes|}}}</span>}} + +| rowclass49 = mergedrow +| label49 = &nbsp;•&nbsp;garums +| data49 = {{#if:{{{length_km|}}} + |{{formatnum:{{{length_km|}}}}} km}} + +| rowclass50 = mergedrow +| label50 = &nbsp;•&nbsp;platums +| data50 = {{#if:{{{width_km|}}} + |{{formatnum:{{{width_km|}}}}} km}} + +<!-- ***Elevation*** --> +| rowclass51 = mergedtoprow +| label51 = Augstums<span style="font-weight:normal">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</span> +| data51 = {{#if:{{{elevation_m|}}} + |{{formatnum:{{{elevation_m|}}}}} m}} + +| rowclass52 = mergedtoprow +| label52 = Maks.&nbsp;augstums<span style="font-weight:normal">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</span> +| data52 = {{#if:{{{elevation_max_m|}}} + |{{formatnum:{{{elevation_max_m|}}}}} m}} +<!-- ***Elevation max rank*** --> +| rowclass53 = mergedrow +| label53 = &nbsp;•&nbsp;vieta +| data53 = {{#if:{{{elevation_max_m|}}}| {{{elevation_max_rank|}}} }} + +| rowclass54 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} +| label54 = Min.&nbsp;augstums<span style="font-weight:normal">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</span> +| data54 = {{#if:{{{elevation_min_m|}}} + |{{formatnum:{{{elevation_min_m|}}}}} m}} +<!-- ***Elevation min rank*** --> +| rowclass55 = mergedrow +| label55 = &nbsp;•&nbsp;vieta +| data55 = {{#if:{{{elevation_min_m|}}}|{{{elevation_min_rank|}}}}} + +<!-- ***Population*** --> +| rowclass56 = mergedtoprow +| label56 = Dzeivuotuoju sk <span style="font-weight:normal">{{#if:{{{population_as_of|}}}|({{{population_as_of}}})}}{{{population_footnotes|}}}</span> +| data56 = {{#if:{{{population|}}} + | {{formatnum:{{{population}}}}} + | {{#ifeq:{{{total_type}}}|&nbsp; + | {{#if:{{{population_total|}}} + | {{formatnum:{{{population_total}}}}} + }} + }} + }} + +| rowclass57 = mergedtoprow +| header57 = {{#if:{{{population|}}} + | + |{{#ifeq:{{{total_type}}}|&nbsp; + | + |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} + |Dzeivuotuoju sk <span style="font-weight:normal">{{#if:{{{population_as_of|}}}|({{{population_as_of}}})}}{{{population_footnotes|}}}</span> + }} + }} + }} + +| rowclass58 = mergedrow +| label58 = &nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_urban_km2|}}}{{{area_rural_km2|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|pilsēta}}|kūpā}}}} +| data58 = {{#if:{{{population|}}} + | + |{{#ifeq:{{{total_type}}}|&nbsp; + | + |{{#if:{{{population_total|}}} + | {{formatnum:{{{population_total}}}}} + }} + }} + }} + +| rowclass59 = mergedrow +| label59 = &nbsp;•&nbsp;aprēķins&nbsp;<span style="font-weight:normal">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</span> +| data59 = {{#if:{{{population_est|}}}|{{formatnum:{{{population_est}}}}} }} + +<!-- ***Population rank*** --> +| rowclass60 = mergedrow +| label60 =&nbsp;•&nbsp;vieta +| data60 = {{{population_rank|}}} + +| rowclass61 = mergedrow +| label61 = &nbsp;•&nbsp;Bīzeiba +| data61 = {{#if:{{{population_density_km2|}}}{{{population_total|}}} + |{{#if:{{{population_density_km2|}}}|{{formatnum:{{#ifeq:{{{population_density_km2|}}}|auto|{{#expr:{{{population_total|}}} / {{{area_total_km2|}}} round 1}}|{{{population_density_km2}}}}}}}/km²}}}} + +<!-- ***Population density rank*** --> +| rowclass62 = mergedrow +| label62 = &nbsp;•&nbsp;vieta +| data62 = {{{population_density_rank|}}} + +| rowclass63 = mergedrow +| label63 = &nbsp;•&nbsp;adm.&nbsp;rob.<span style="font-weight:normal">{{{population_urban_footnotes|}}}</span> +| data63 = {{#if:{{{population_urban|}}}| {{formatnum:{{{population_urban}}}}} }} + +| rowclass64 = mergedrow +| label64 = &nbsp;•&nbsp;adm.&nbsp;rob.&nbsp;blīvums +| data64 = {{#if:{{{population_density_urban_km2|}}}{{{population_urban|}}} + |{{#if:{{{population_density_urban_km2|}}}|{{formatnum:{{#ifeq:{{{population_density_urban_km2|}}}|auto|{{#expr:{{{population_urban|}}} / {{{area_urban_km2|}}} round 1}}|{{{population_density_urban_km2|}}}}}}}/km²}}}} + +| rowclass65 = mergedrow +| label65 = &nbsp;•&nbsp;lauku&nbsp;terit.<span style="font-weight:normal">{{{population_rural_footnotes|}}}</span> +| data65 = {{#if:{{{population_rural|}}}|{{formatnum:{{{population_rural}}}}}}} + +| rowclass66 = mergedrow +| label66 = &nbsp;•&nbsp;lauku terit.&nbsp;blīvums +| data66 = {{#if:{{{population_density_rural_km2|}}}{{{population_rural|}}} + |{{#if:{{{population_density_rural_km2|}}}|{{formatnum:{{#ifeq:{{{population_density_rural_km2|}}}|auto|{{#expr:{{{population_rural|}}} / {{{area_rural_km2|}}} round 1}}|{{{population_density_rural_km2}}}}}}}/km²}}}} + +| rowclass67 = mergedrow +| label67 =&nbsp;•&nbsp;[[aglomerācija]]<span style="font-weight:normal">{{{population_metro_footnotes|}}}</span> +| data67 = {{#if:{{{population_metro|}}}| {{formatnum:{{{population_metro}}}}} }} + +| rowclass68 = mergedrow +| label68 = &nbsp;•&nbsp;aglomerācijas&nbsp;blīvums +| data68 = {{#if:{{{population_density_metro_km2|}}}{{{population_metro|}}} + |{{#if:{{{population_density_metro_km2|}}}|{{formatnum:{{#ifeq:{{{population_density_metro_km2|}}}|auto|{{#expr:{{{population_metro|}}} / {{{area_metro_km2|}}} round 1}}|{{{population_density_metro_km2|}}}}}}}/km²}}}} + +| rowclass69 = mergedrow +| label69 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<span style="font-weight:normal">{{{population_blank1_footnotes|}}}</span> +| data69 = {{#if:{{{population_blank1|}}}|{{formatnum:{{{population_blank1}}}}}}} + +| rowclass70 = mergedrow +| label70 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} blīvums|blīvums}} +| data70 = {{#if:{{{population_density_blank1_km2|}}}{{{population_blank1|}}} + |{{#if:{{{population_density_blank1_km2|}}}|{{formatnum:{{#ifeq:{{{population_density_blank1_km2|}}}|auto|{{#expr:{{{population_blank1|}}} / {{{area_blank1_km2|}}} round 1}}|{{{population_density_blank1_km2}}}}}}}/km²}}}} + +| rowclass71 = mergedrow +| label71 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<span style="font-weight:normal">{{{population_blank2_footnotes|}}}</span> +| data71 = {{#if:{{{population_blank2|}}}|{{formatnum:{{{population_blank2}}}}}}} + +| rowclass72 = mergedrow +| label72 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} blīvums|blīvums}} +| data72 = {{#if:{{{population_density_blank2_km2|}}}{{{population_blank2|}}} + |{{#if:{{{population_density_blank2_km2|}}}|{{formatnum:{{#ifeq:{{{population_density_blank2_km2|}}}|auto|{{#expr:{{{population_blank2|}}} / {{{area_blank2_km2|}}} round 1}}|{{{population_density_blank2_km2}}}}}}}/km²}}}} + +| rowclass73 = mergedrow +| label73 = &nbsp; +| data73 = {{#if:{{{population_note|}}}|<small>{{{population_note}}}</small>}} + +| rowclass74 = mergedtoprow +| label74 = [[Demonīms]] +| data74 = {{{population_demonym|}}} + +| rowclass75 = mergedtoprow +| header75 = {{#if:{{{demographics_type1|}}} +|{{{demographics_type1}}}<span style="font-weight:normal">{{{demographics1_footnotes|}}}</span><!-- + ***Demographics 1*** +-->{{Infoskreine|child=yes + +| rowclass1 = mergedrow +| label1 = &nbsp;•&nbsp;{{{demographics1_title1}}} +| data1 = {{#if:{{{demographics1_title1|}}}|{{{demographics1_info1}}}}} +| rowclass2 = mergedrow +| label2 = &nbsp;•&nbsp;{{{demographics1_title2}}} +| data2 = {{#if:{{{demographics1_title2|}}}|{{{demographics1_info2}}}}} +| rowclass3 = mergedrow +| label3 = &nbsp;•&nbsp;{{{demographics1_title3}}} +| data3 = {{#if:{{{demographics1_title3|}}}|{{{demographics1_info3}}}}} +| rowclass4 = mergedrow +| label4 = &nbsp;•&nbsp;{{{demographics1_title4}}} +| data4 = {{#if:{{{demographics1_title4|}}}|{{{demographics1_info4}}}}} +| rowclass5 = mergedrow +| label5 = &nbsp;•&nbsp;{{{demographics1_title5}}} +| data5 = {{#if:{{{demographics1_title5|}}}|{{{demographics1_info5}}}}} +}}}} + +| rowclass76 = mergedtoprow +| header76 = {{#if:{{{demographics_type2|}}} +|{{{demographics_type2}}}<span style="font-weight:normal">{{{demographics2_footnotes|}}}</span><!-- +***Demographics 2*** +-->{{Infoskreine|child=yes +| rowclass1 = mergedrow +| label1 = &nbsp;•&nbsp;{{{demographics2_title1}}} +| data1 = {{#if:{{{demographics2_title1|}}}|{{{demographics2_info1}}}}} +| rowclass2 = mergedrow +| label2 = &nbsp;•&nbsp;{{{demographics2_title2}}} +| data2 = {{#if:{{{demographics2_title2|}}}|{{{demographics2_info2}}}}} +| rowclass3 = mergedrow +| label3 = &nbsp;•&nbsp;{{{demographics2_title3}}} +| data3 = {{#if:{{{demographics2_title3|}}}|{{{demographics2_info3}}}}} +| rowclass4 = mergedrow +| label4 = &nbsp;•&nbsp;{{{demographics2_title4}}} +| data4 = {{#if:{{{demographics2_title4|}}}|{{{demographics2_info4}}}}} +| rowclass5 = mergedrow +| label5 = &nbsp;•&nbsp;{{{demographics2_title5}}} +| data5 = {{#if:{{{demographics2_title5|}}}|{{{demographics2_info5}}}}} +}}}} + +<!-- ***Time Zones*** --> +| rowclass77 = mergedtoprow +| label77 = [[Laika josla]] +| data77 = {{#if:{{{timezone1|{{{timezone|}}}}}}|{{{timezone1|{{{timezone}}}}}} {{#if:{{{utc_offset1|{{{utc_offset|}}} }}}|([[UTC{{{utc_offset1|{{{utc_offset}}}}}}]])}} }} + +| rowclass78 = mergedrow +| label78 = <nowiki /> +| data78 = {{#if:{{{timezone1|{{{timezone|}}}}}}|{{#if:{{{timezone2|}}}|{{{timezone2}}} {{#if:{{{utc_offset2|{{{utc_offset2|}}} }}}|([[UTC{{{utc_offset2|{{{utc_offset2}}}}}}]])}} }} }} + +| rowclass79 = mergedrow +| label79 = <span style="white-space:nowrap">&nbsp;•&nbsp;Vasaras laiks ([[Vasaras laiks|DST]])</span> +| data79 = {{#if:{{{timezone1|{{{timezone|}}}}}}|{{#if:{{{timezone1_DST|{{{timezone_DST|}}}}}}|{{{timezone1_DST|{{{timezone_DST|}}}}}} ([[UTC{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}}]])}} }} + +| rowclass80 = mergedrow +| label80 = <nowiki /> +| data80 = {{#if:{{{timezone1|{{{timezone|}}}}}}|{{#if:{{{timezone1_DST|{{{timezone_DST|}}}}}}|{{#if:{{{timezone2_DST|}}}|{{{timezone2_DST}}} ([[UTC{{{utc_offset2_DST|}}}]])}} }} }} + +<!-- ***Postal Code(s)*** --> +| rowclass81 = mergedtoprow +| label81 = {{{postal_code_type}}} +| class81 = adr +| data81 = {{#if:{{{postal_code_type|}}}|{{#if:{{{postal_code|}}}|<span class="postal-code">{{{postal_code}}}</span>}}}} + +| rowclass82 = mergedbottomrow +| label82 = {{{postal2_code_type}}} +| class82 = adr +| data82 = {{#if:{{{postal_code_type|}}}|{{#if:{{{postal2_code_type|}}}|{{#if:{{{postal2_code|}}}|<span class="postal-code">{{{postal2_code}}}</span>}} }} }} + +<!-- ***Area Code(s)*** --> +| rowclass83 = mergedrow +| label83 = {{#if:{{{area_code_type|}}}|{{{area_code_type}}}|Tālruņu kods}} +| data83 = {{{area_code|}}} + +<!-- Geocode--> +| rowclass84 = mergedrow +| label84 = Geokods +| class84 = nickname +| data84 = {{{geocode|}}} + +<!-- ISO Code--> +| rowclass85 = mergedrow +| label85 = [[ISO 3166|ISO 3166 kods]] +| class85 = nickname +| data85 = {{{iso_code|}}} + +<!-- Vehicle registration plate--> +| rowclass86 = mergedrow +| label86 = Transportlīdzekļa reģistrācija +| data86 = {{{registration_plate|}}} + + +| rowclass87 = mergedtoprow +| header87 = {{#if:{{{twin1|}}} + |[[Sadraudzības pilsēta]]s<!-- + ***Twin Cities*** +-->{{Infoskreine|child=yes + +| rowclass1 = mergedrow +| label1 = &nbsp;•&nbsp;{{{twin1}}} +| data1 = {{#if:{{{twin1|}}}|{{{twin1_country}}}}} +| rowclass2 = mergedrow +| label2 = &nbsp;•&nbsp;{{{twin2}}} +| data2 = {{#if:{{{twin2|}}}|{{{twin2_country}}}}} +| rowclass3 = mergedrow +| label3 = &nbsp;•&nbsp;{{{twin3}}} +| data3 = {{#if:{{{twin3|}}}|{{{twin3_country}}}}} +| rowclass4 = mergedrow +| label4 = &nbsp;•&nbsp;{{{twin4}}} +| data4 = {{#if:{{{twin4|}}}|{{{twin4_country}}}}} +| rowclass5 = mergedrow +| label5 = &nbsp;•&nbsp;{{{twin5}}} +| data5 = {{#if:{{{twin5|}}}|{{{twin5_country}}}}} +| rowclass6 = mergedrow +| label6 = &nbsp;•&nbsp;{{{twin6}}} +| data6 = {{#if:{{{twin6|}}}|{{{twin6_country}}}}} +| rowclass7 = mergedrow +| label7 = &nbsp;•&nbsp;{{{twin7}}} +| data7 = {{#if:{{{twin7|}}}|{{{twin7_country}}}}} +| rowclass8 = mergedrow +| label8 = &nbsp;•&nbsp;{{{twin8}}} +| data8 = {{#if:{{{twin8|}}}|{{{twin8_country}}}}} +| rowclass9 = mergedrow +| label9 = &nbsp;•&nbsp;{{{twin9}}} +| data9 = {{#if:{{{twin9|}}}|{{{twin9_country}}}}} +}} }} + +<!-- ***Blank Fields (two sections)*** --> +| rowclass88 = mergedtoprow +| label88 = {{{blank_name_sec1|{{{blank_name|}}}}}} +| data88 = {{#if:{{{blank_name_sec1|{{{blank_name|}}}}}}|{{{blank_info_sec1|{{{blank_info|}}}}}}}} + +| rowclass89 = mergedrow +| label89 = {{{blank1_name_sec1|{{{blank1_name|}}}}}} +| data89 = {{#if:{{{blank1_name_sec1|{{{blank1_name|}}}}}}|{{{blank1_info_sec1|{{{blank1_info|}}}}}}}} + +| rowclass90 = mergedrow +| label90 = {{{blank2_name_sec1|{{{blank2_name|}}}}}} +| data90 = {{#if:{{{blank2_name_sec1|{{{blank2_name|}}}}}}|{{{blank2_info_sec1|{{{blank2_info|}}}}}}}} + +| rowclass91 = mergedrow +| label91 = {{{blank3_name_sec1|{{{blank3_name|}}}}}} +| data91 = {{#if:{{{blank3_name_sec1|{{{blank3_name|}}}}}}|{{{blank3_info_sec1|{{{blank3_info|}}}}}}}} + +| rowclass92 = mergedrow +| label92 = {{{blank4_name_sec1|{{{blank4_name|}}}}}} +| data92 = {{#if:{{{blank4_name_sec1|{{{blank4_name|}}}}}}|{{{blank4_info_sec1|{{{blank4_info|}}}}}}}} + +| rowclass93 = mergedrow +| label93 = {{{blank5_name_sec1|{{{blank5_name|}}}}}} +| data93 = {{#if:{{{blank5_name_sec1|{{{blank5_name|}}}}}}|{{{blank5_info_sec1|{{{blank5_info|}}}}}}}} + +| rowclass94 = mergedrow +| label94 = {{{blank6_name_sec1|{{{blank6_name|}}}}}} +| data94 = {{#if:{{{blank6_name_sec1|{{{blank6_name|}}}}}}|{{{blank6_info_sec1|{{{blank6_info|}}}}}}}} + +| rowclass95 = mergedrow +| label95 = {{{blank7_name_sec1|{{{blank7_name|}}}}}} +| data95 = {{#if:{{{blank7_name_sec1|{{{blank7_name|}}}}}}|{{{blank7_info_sec1|{{{blank7_info|}}}}}}}} + +| rowclass96 = mergedtoprow +| label96 = {{{blank_name_sec2}}} +| data96 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} + +| rowclass97 = mergedrow +| label97 = {{{blank1_name_sec2}}} +| data97 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} + +| rowclass98 = mergedrow +| label98 = {{{blank2_name_sec2}}} +| data98 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} + +| rowclass99 = mergedrow +| label99 = {{{blank3_name_sec2}}} +| data99 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} + +| rowclass100 = mergedrow +| label100 = {{{blank4_name_sec2}}} +| data100 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} + +| rowclass101 = mergedrow +| label101 = {{{blank5_name_sec2}}} +| data101 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} + +| rowclass102 = mergedrow +| label102 = {{{blank6_name_sec2}}} +| data102 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} + +| rowclass103 = mergedrow +| label103 = {{{blank7_name_sec2}}} +| data103 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} + +<!-- ***Website*** --> +| rowclass104 = mergedtoprow +| label104 = Teiklavīta +| data104 = {{#if:{{{website|}}}|{{{website}}}}} + +<!-- ***Footnotes*** --> +| rowclass105 = mergedtoprow +| data105 = {{#if:{{{footnotes|}}}|<div style="text-align:left; font-size:smaller">{{{footnotes}}}</div>}} + +| rowclass106 = mergedtoprow +| data106 = {{{nrhp|{{{embedded|}}}}}} + +| belowstyle = border: 1px solid #gray; padding: 2px; margin-top: 4px +| belowrowclass = mergedtoprow +| below = {{#if:{{wikidata|p373}}{{{commons kategorija|}}}|[[File:Commons-logo.svg|12px|link=|alt=]] '''[[:commons:Category:{{wikidata|p373|{{{commons kategorija|}}}|plain=1}}|Vikiteka]]''' +}} +}}<noinclude>{{Dokumentaceja}} + +[[Category:Geografejis infoskreinis]] +</noinclude> + dybn47goop2k110mjar0r1evfpgkc6g + + + + Modulis:Wikidata + 828 + 2856 + + 30640 + 2015-03-23T18:15:27Z + + Edgars2007 + 114 + + Jauna lapa: local i18n = { ["errors"] = { ["property-param-not-provided"] = "Не дан параметр свойства", ["entity-not-found"] = "Сущность не на... + Scribunto + text/plain + local i18n = { + ["errors"] = { + ["property-param-not-provided"] = "Не дан параметр свойства", + ["entity-not-found"] = "Сущность не найдена.", + ["unknown-claim-type"] = "Неизвестный тип заявления.", + ["unknown-snak-type"] = "Неизвестный тип снэка.", + ["unknown-datavalue-type"] = "Неизвестный тип значения данных.", + ["unknown-entity-type"] = "Неизвестный тип сущности.", + ["unknown-value-module"] = "Вы должны установить и значение-модуль, и значение-функцию.", + ["value-module-not-found"] = "Модуль, на который указывает значение, не найден.", + ["value-function-not-found"] = "Функция, на которую указывает значение, не найдена." + }, + ["somevalue"] = "", + ["novalue"] = "" +} + +function getEntityFromId( id ) + if id then + return mw.wikibase.getEntityObject( id ) + end + return mw.wikibase.getEntityObject() +end + +function getEntityIdFromValue( value ) + local prefix = '' + if value['entity-type'] == 'item' then + prefix = 'Q' + elseif value['entity-type'] == 'property' then + prefix = 'P' + else + return formatError( 'unknown-entity-type' ) + end + return prefix .. value['numeric-id'] +end + +function formatError( key ) + return '<span class="error">' .. i18n.errors[key] .. '</span>' +end + + +function formatStatements( options ) + if not options.property then + return formatError( 'property-param-not-provided' ) + end + + --Get entity + local entity = getEntityFromId( options.entityId ) + if not entity then + return -- formatError( 'entity-not-found' ) + end + + if (entity.claims == nil) or (not entity.claims[string.upper(options.property)]) then + return '' --TODO error? + end + + --Format statement and concat them cleanly + local formattedStatements = {} + for i, statement in pairs( entity.claims[string.upper(options.property)] ) do + table.insert( formattedStatements, formatStatement( statement, options ) ) + end + return mw.text.listToText( formattedStatements, options.separator, options.conjunction ) +end + +function formatStatement( statement, options ) + if not statement.type or statement.type ~= 'statement' then + return formatError( 'unknown-claim-type' ) + end + + return formatSnak( statement.mainsnak, options ) + --TODO reference and qualifiers +end + +function formatSnak( snak, options ) + if snak.snaktype == 'somevalue' then + return i18n['somevalue'] + elseif snak.snaktype == 'novalue' then + return i18n['novalue'] + elseif snak.snaktype == 'value' then + return formatDatavalue( snak.datavalue, options ) + else + return formatError( 'unknown-snak-type' ) + end +end + +function formatGlobeCoordinate( value, options ) + if options['subvalue'] == 'latitude' then + return value['latitude'] + elseif options['subvalue'] == 'longitude' then + return value['longitude'] + else + local eps = 0.0000001 -- < 1/360000 + local globe = '' -- TODO + local lat = {} + lat['abs'] = math.abs(value['latitude']) + lat['ns'] = value['latitude'] >= 0 and 'N' or 'S' + lat['d'] = math.floor(lat['abs'] + eps) + lat['m'] = math.floor((lat['abs'] - lat['d']) * 60 + eps) + lat['s'] = math.max(0, ((lat['abs'] - lat['d']) * 60 - lat['m']) * 60) + local lon = {} + lon['abs'] = math.abs(value['longitude']) + lon['ew'] = value['longitude'] >= 0 and 'E' or 'W' + lon['d'] = math.floor(lon['abs'] + eps) + lon['m'] = math.floor((lon['abs'] - lon['d']) * 60 + eps) + lon['s'] = math.max(0, ((lon['abs'] - lon['d']) * 60 - lon['m']) * 60) + local coord = '{{coord' + if (value['precision'] == nil) or (value['precision'] < 1/60) then -- по умолчанию с точностью до секунды + coord = coord .. '|' .. lat['d'] .. '|' .. lat['m'] .. '|' .. lat['s'] .. '|' .. lat['ns'] + coord = coord .. '|' .. lon['d'] .. '|' .. lon['m'] .. '|' .. lon['s'] .. '|' .. lon['ew'] + elseif value['precision'] < 1 then + coord = coord .. '|' .. lat['d'] .. '|' .. lat['m'] .. '|' .. lat['ns'] + coord = coord .. '|' .. lon['d'] .. '|' .. lon['m'] .. '|' .. lon['ew'] + else + coord = coord .. '|' .. lat['d'] .. '|' .. lat['ns'] + coord = coord .. '|' .. lon['d'] .. '|' .. lon['ew'] + end + coord = coord .. '|globe:' .. globe + if options['display'] then + coord = coord .. '|display=' .. options.display + else + coord = coord .. '|display=title' + end + coord = coord .. '}}' + + return g_frame:preprocess(coord) + end +end + +function formatDatavalue( datavalue, options ) + --Use the customize handler if provided + if options['value-module'] or options['value-function'] then + if not options['value-module'] or not options['value-function'] then + return formatError( 'unknown-value-module' ) + end + local formatter = require ('Module:' .. options['value-module']) + if formatter == nil then + return formatError( 'value-module-not-found' ) + end + local fun = formatter[options['value-function']] + if fun == nil then + return formatError( 'value-function-not-found' ) + end + return fun( datavalue.value, options ) + end + + --Default formatters + if datavalue.type == 'wikibase-entityid' then + return formatEntityId( getEntityIdFromValue( datavalue.value ), options ) + elseif datavalue.type == 'string' then + return datavalue.value --TODO ids + media + elseif datavalue.type == 'globecoordinate' then + return formatGlobeCoordinate( datavalue.value, options ) + elseif datavalue.type == 'quantity' then + return datavalue.value['amount'] + else + return formatError( 'unknown-datavalue-type' ) + end +end + +function formatEntityId( entityId, options ) + local label = mw.wikibase.label( entityId ) + if ( 'true' == options.plain and label ) then + return label + end + + local link = mw.wikibase.sitelink( entityId ) + if link then + if label then + return '[[' .. link .. '|' .. label .. ']]' + else + return '[[' .. link .. ']]' + end + end + + if label then + return label + end + + -- not good, but better than nothing + return '[[d:' .. entityId .. '|' .. entityId .. ']]<span style="border-bottom: 1px dotted; cursor: help; white-space: nowrap" title="На Викиданных нет русской подписи к элементу. Вы можете помочь, указав русский вариант подписи.">?</span>[[Категория:Википедия:Статьи со ссылками на элементы Викиданных без русской подписи]]'; +end + +local p = {} + +function p.formatStatements( frame ) + g_frame = frame + local args = frame.args + + --If a value if already set, use it + if args.value and args.value ~= '' then + return args.value + end + return formatStatements( frame.args ) +end + +return p + ogqj3bxheez4mfz1qtwgn0bp93ijsm4 + + + + Modulis:If empty + 828 + 2857 + + 30641 + 2015-03-23T18:16:00Z + + Edgars2007 + 114 + + Jauna lapa: local p = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:Ifempty', removeBlanks = false}) -- For backwards compatibility r... + Scribunto + text/plain + local p = {} + +function p.main(frame) + local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:Ifempty', removeBlanks = false}) + + -- For backwards compatibility reasons, the first 8 parameters can be unset instead of being blank, + -- even though there's really no legitimate use case for this. At some point, this will be removed. + local lowestNil = math.huge + for i = 8,1,-1 do + if args[i] == nil then + args[i] = '' + lowestNil = i + end + end + + for k,v in ipairs(args) do + if v ~= '' then + if lowestNil < k then + -- If any uses of this template depend on the behavior above, add them to a tracking category. + -- This is a rather fragile, convoluted, hacky way to do it, but it ensures that this module's output won't be modified + -- by it. + frame:extensionTag('ref', '[[Category:Instances of Template:If_empty missing arguments]]', {group = 'TrackingCategory'}) + frame:extensionTag('references', '', {group = 'TrackingCategory'}) + end + return v + end + end +end + +return p + 32biz2ka5ogyzsw27210ot6e8l779cb + + + + Modulis:Br separated entries + 828 + 2858 + + 30642 + 2015-03-23T18:16:44Z + + Edgars2007 + 114 + + Jauna lapa: local p = {} local function _main( args ) local sep = '<br />' local lastsep local t = {} for i, v in ipairs( args ) do table.insert( t, v ) if mw.ust... + Scribunto + text/plain + local p = {} + +local function _main( args ) + local sep = '<br />' + local lastsep + local t = {} + for i, v in ipairs( args ) do + table.insert( t, v ) + if mw.ustring.match( v, '%S' ) then + table.insert( t, sep ) + lastsep = #t + end + end + if lastsep then + table.remove( t, lastsep ) + end + return table.concat( t ) +end + +function p.main( frame ) + local origArgs + if frame == mw.getCurrentFrame() then + -- We're being called via #invoke. If the invoking template passed any arguments, + -- use them. Otherwise, use the arguments that were passed into the template. + origArgs = frame:getParent().args + for k, v in pairs( frame.args ) do + origArgs = frame.args + break + end + else + -- We're being called from another module or from the debug console, so assume + -- the arguments are passed in directly. + origArgs = frame + end + + -- Use integer args only, and allow for explicit positional arguments + -- that are specified out of order, e.g. {{br separated entries|3=entry3}}. + -- After processing, the args can be accessed accurately from ipairs. + local args = {} + for k, v in pairs( origArgs ) do + if type( k ) == 'number' and k >= 1 and math.floor( k ) == k then + table.insert( args, k ) + end + end + table.sort( args ) + for i,v in ipairs( args ) do + args[ i ] = origArgs[ v ] + end + + return _main( args ) +end + +return p + ipkkf6bgjrw88eyv4pt6qf8lacz1hlm + + + + Taiss:Br separated entries + 10 + 2859 + + 30643 + 2015-03-23T18:17:20Z + + Edgars2007 + 114 + + Jauna lapa: {{<includeonly>safesubst:</includeonly>#invoke:br separated entries|main}} + wikitext + text/x-wiki + {{<includeonly>safesubst:</includeonly>#invoke:br separated entries|main}} + p99im764qg9or5zzxv2vpq1og153ej4 + + + + Taiss:Wikidata + 10 + 2860 + + 30644 + 2015-03-23T18:17:57Z + + Edgars2007 + 114 + + Jauna lapa: <includeonly>{{#invoke:Wikidata|formatStatements|property={{{1|}}}|value={{{2|}}}|plain={{{plain|false}}}}}</includeonly> + wikitext + text/x-wiki + <includeonly>{{#invoke:Wikidata|formatStatements|property={{{1|}}}|value={{{2|}}}|plain={{{plain|false}}}}}</includeonly> + s37jepu10cxuw3nde7zs9bmeilf95rk + + + + Taiss:Ifempty + 10 + 2861 + + 30645 + 2015-03-23T18:18:28Z + + Edgars2007 + 114 + + Jauna lapa: {{<includeonly>safesubst:</includeonly>#invoke:If empty|main}} + wikitext + text/x-wiki + {{<includeonly>safesubst:</includeonly>#invoke:If empty|main}} + 0zsis4por8d1sy8jcpn8aw40q966y0o + + + + Taiss:Infoskreine mīsts/columns + 10 + 2862 + + 30646 + 2015-03-23T18:19:43Z + + Edgars2007 + 114 + + Jauna lapa: <table style="width:100%; background:none;"> <tr>{{#if:{{{0|}}} |<!-- if 0 -->{{#if:{{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}} |<!-- if 0 and (1 or 2 or 3 or 4 or 5) --><td><table s... + wikitext + text/x-wiki + <table style="width:100%; background:none;"> +<tr>{{#if:{{{0|}}} + |<!-- if 0 +-->{{#if:{{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}} + |<!-- if 0 and (1 or 2 or 3 or 4 or 5) +--><td><table style="width:100%; background:none;"> +{{#if:{{{1|}}} +|<tr><td style="vertical-align:middle;" align="center">{{{1|}}}</td></tr> +}}{{#if:{{{2|}}} +|<tr><td style="vertical-align:middle;" align="center">{{{2|}}}</td></tr> +}}{{#if:{{{3|}}} +|<tr><td style="vertical-align:middle;" align="center">{{{3|}}}</td></tr> +}}{{#if:{{{4|}}} +|<tr><td style="vertical-align:middle;" align="center">{{{4|}}}</td></tr> +}}{{#if:{{{5|}}} +|<tr><td style="vertical-align:middle;" align="center">{{{5|}}}</td></tr> +}}</table></td> +}}<td style="vertical-align:top;" align="center">{{{0|}}}</td> +|<!-- if not 0 +-->{{#ifexpr:({{#if:{{{1|}}}|1|0}}+{{#if:{{{2|}}}|1|0}}+{{#if:{{{3|}}}|1|0}}+{{#if:{{{4|}}}|1|0}}) > 2 + |<!-- if more than two images +-->{{#if:{{{1|}}} +|<td style="vertical-align:middle;" {{#if:{{{2|}}}||colspan=2}} align="center">{{{1|}}}</td> +}}{{#if:{{{2|}}} +|<td style="vertical-align:middle;" {{#if:{{{1|}}}||colspan=2}} align="center">{{{2|}}}</td> +}}</tr><tr>{{#if:{{{3|}}} +|<td style="vertical-align:middle;" {{#if:{{{4|}}}||colspan=2}} align="center">{{{3|}}}</td> +}}{{#if:{{{4| }}} +|<td style="vertical-align:middle;" {{#if:{{{3|}}}||colspan=2}} align="center">{{{4|}}}</td> +}} + |<!-- if two or fewer images +-->{{#if:{{{1|}}} +|<td style="vertical-align:middle;" align="center">{{{1|}}}</td> +}}{{#if:{{{2|}}} +|<td style="vertical-align:middle;" align="center">{{{2|}}}</td> +}}{{#if:{{{3|}}} +|<td style="vertical-align:middle;" align="center">{{{3|}}}</td> +}}{{#if:{{{4| }}} +|<td style="vertical-align:middle;" align="center">{{{4|}}}</td> +}} + }} +}}</tr></table> + jcqwro0o46d01bthvhx5mtu5k3yhbz8 + + + + Taiss:Infoskreine mīsts/link + 10 + 2863 + + 30647 + 2015-03-23T18:20:11Z + + Edgars2007 + 114 + + Jauna lapa: {{#if:{{{link|}}}|[[{{{link}}}|{{{type}}}]]|{{{type}}}}} + wikitext + text/x-wiki + {{#if:{{{link|}}}|[[{{{link}}}|{{{type}}}]]|{{{type}}}}} + afziy89sjxh79l5zwfzr8elxkunqcu3 + + + + Taiss:Kartes infokaste + 10 + 2864 + + 30651 + 2015-03-23T18:27:44Z + + Edgars2007 + 114 + + Jauna lapa: <includeonly>{{#ifeq:{{{map|}}}||Kļūda: nav norādīts kartes nosaukums}} {{#if:{{#ifexist:Modulis:Vītys zemislopa/data/{{{map|}}}|1|{{#ifexist:Taiss:Vītys zemislopa/{{{map|}}}|1}... + wikitext + text/x-wiki + <includeonly>{{#ifeq:{{{map|}}}||Kļūda: nav norādīts kartes nosaukums}} +{{#if:{{#ifexist:Modulis:Vītys zemislopa/data/{{{map|}}}|1|{{#ifexist:Taiss:Vītys zemislopa/{{{map|}}}|1}}}} +| {{Vītys zemislopa + | {{{map}}} + | relief = {{{relief|}}} + | overlay_image = {{{overlay|}}} + | AlternativeMap = {{{alternative|}}} + | width = {{{map_width|}}} + | default_width = {{#if:{{{default_width|}}}|{{{default_width}}}|220}} + | caption = <!-- no value assigned but it must be specified, see {{location map}} --> + | alt = {{{map_alt|}}} + | float = center + | label = {{{label|}}} + | background = {{{background|}}} + | position = {{lc:{{{label_position|}}} }} + | mark = {{#if:{{{mark|}}}|{{{mark}}}|Red pog.svg}} + | marksize = {{#if:{{{mark_width|}}}|{{{mark_width}}}|8}} + | link = {{{mark_link|}}} + | lat = {{{lat|}}} + | lat_deg = {{{lat_deg|}}} + | lat_min = {{{lat_min|}}} + | lat_sec = {{{lat_sec|}}} + | lat_dir = {{{lat_dir|}}} + | long = {{{long|}}} + | lon_deg = {{{lon_deg|}}} + | lon_min = {{{lon_min|}}} + | lon_sec = {{{lon_sec|}}} + | lon_dir = {{{lon_dir|}}} + }} +| {{#if:{{{pixel_x|}}}{{{pixel_y|}}} + | {{center | {{superimpose + | base = {{{map|}}} + | base_width = {{#if:{{{map_width|}}}|{{{map_width}}}|{{#if:{{{default_width|}}}|{{{default_width}}}|220}}}}px + | base_alt = {{#if:{{{map_alt|}}}|{{{map_alt}}}|{{{map|}}}}} + | float = {{#if:{{{mark|}}}|{{{mark}}}|Red pog.svg}} + | float_width = {{#if:{{{mark_width|}}}|{{{mark_width}}}|8}}px + | x = {{{pixel_x|}}} + | y = {{{pixel_y|}}} + }} }} + | {{location mark+ + | image = {{{map|}}} + | overlay = {{{overlay|}}} + | width = {{#if:{{{map_width|}}}|{{{map_width}}}|{{#if:{{{default_width|}}}|{{{default_width}}}|220}}}} + | caption = + | alt = {{{map_alt|}}} + | float = center + | type = <!-- default is not a thumb & no border --> + | marks = {{location mark~ + | width = {{#if:{{{map_width|}}}|{{{map_width}}}|{{#if:{{{default_width|}}}|{{{default_width}}}|220}}}} + | label = {{{label|}}} + | position = {{lc:{{{label_position|}}} }} + | font_size = + | background = {{{background|}}} + | mark = {{#if:{{{mark|}}}|{{{mark}}}|Red pog.svg}} + | mark_width = {{#if:{{{mark_width|}}}|{{{mark_width}}}|8}} + | mark_alt = {{{mark_alt|}}} + | mark_link = {{{mark_link|}}} + | x = {{{x|}}} + | y = {{{y|}}} + | x% = {{{x%|}}} + | y% = {{{y%|}}} }} + }} + }} +}}{{{map_caption|}}}</includeonly> + 1f8ocfk8w0uc5s63j0q6vmp8rmw3kkt + + + + Taiss:URL + 10 + 2865 + + 30654 + 2015-03-23T18:41:51Z + + Edgars2007 + 114 + + Jauna lapa: {{#invoke:URL|url|{{{1|}}}|{{{2|}}}}} + wikitext + text/x-wiki + {{#invoke:URL|url|{{{1|}}}|{{{2|}}}}} + 1etue43vf5qgxgktmfsgaxss3xn6j2u + + + + Taiss:Tlx + 10 + 2866 + + 30655 + 2015-03-23T18:42:46Z + + Edgars2007 + 114 + + Jauna lapa: <includeonly><!-- --><code><!-- --><nowiki>{{</nowiki>{{#if:{{{subst|}}} |[[Help:Substitution|subst]]:}}<!-- -->{{{LANG|}}}{{{SISTER|}}}{{ns:Templat... + wikitext + text/x-wiki + <includeonly><!-- + --><code><!-- + --><nowiki>{{</nowiki>{{#if:{{{subst|}}} |[[Help:Substitution|subst]]:}}<!-- + -->[[{{{LANG|}}}{{{SISTER|}}}{{ns:Template}}:{{{1|}}}|{{{1|}}}]]<!-- + -->{{#if:{{{2|}}} |&#124;{{{2}}}}}<!-- + -->{{#if:{{{3|}}} |&#124;{{{3}}}}}<!-- + -->{{#if:{{{4|}}} |&#124;{{{4}}}}}<!-- + -->{{#if:{{{5|}}} |&#124;{{{5}}}}}<!-- + -->{{#if:{{{6|}}} |&#124;{{{6}}}}}<!-- + -->{{#if:{{{7|}}} |&#124;{{{7}}}}}<!-- + -->{{#if:{{{8|}}} |&#124;{{{8}}}}}<!-- + -->{{#if:{{{9|}}} |&#124;{{{9}}}}}<!-- + -->{{#if:{{{10|}}} |&#124;{{{10}}}}}<!-- + -->{{#if:{{{11|}}} |&#124;{{{11}}}}}<!-- + -->{{#if:{{{12|}}} |&#124;''…''}}<!-- + --><nowiki>}}</nowiki><!-- + --></code><!-- +--></includeonly><noinclude></noinclude> + ins4xa8ofd6gkmgwzs5euiyhg5m0z8e + + + + Taiss:Yesno + 10 + 2867 + + 30658 + 2015-03-23T18:44:36Z + + Edgars2007 + 114 + + Jauna lapa: {{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }} |no |n |nē |f |false |0 = {{{no|<!-- null -->}}} | = {{... + wikitext + text/x-wiki + {{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }} + |no + |n + |nē + |f + |false + |0 = {{{no|<!-- null -->}}} + | = {{{blank|{{{no|<!-- null -->}}}}}} + |¬ = {{{¬|}}} + |yes + |y + |jā + |t + |true + |j = {{{yes|yes}}} + |#default = {{{def|{{{yes|yes}}}}}} +}} + jpzsk6rvmv3nzy9s7udvg543o4ls2zb + + + + Vikipedeja:Vizuālais redaktors + 4 + 2869 + + + 30677 + 2015-03-24T17:04:35Z + + Elitre (WMF) + 2830 + + +redirect + wikitext + text/x-wiki + #REDIRECT [[:mw:VisualEditor/Portal]] + fwlhvdv8wxn4jdiu3oqdvu08biqygxj + + + + Zita Loseva + 0 + 2870 + + 30843 + 30838 + 2015-08-10T09:07:55Z + + 80.4.147.222 + + wikitext + text/x-wiki + [[Image:Zita Loseva.jpg|thumb|Zita Loseva]] +'''Zita Loseva''' - ({{Vol-lt|Zita Loseva}}; [[1954]] goda [[vosorys mieness|vosorys m]]. 17 d.) — lītaunīku politike. + +[[Kategoreja:Politiki]] +[[Kategoreja:Lītovys ļauds]] + + +{{Nadabeigts rakstīņs}} + 4sm58vldka2a7yp789vb7e3kwoohy06 + + + + Klaipieda + 0 + 2872 + + 31337 + 30839 + 2016-03-04T13:20:08Z + + Pleckaitis + 235 + + wikitext + text/x-wiki + '''Klaipieda''' ([[Lītaunīku volūda|lt.]] - ''Klaipėda'', žem. - ''Klaipieda'') - [[Lītova|Lītovys]] mīsts. + +[[Kategoreja:Lītovys mīsti]] + + +{{Stub}} + 8d6au6t4fc8fefw0ck9c6kijhom9m5f + + + + Kaune + 0 + 2873 + + 30840 + 30769 + 2015-08-08T12:19:07Z + + YiFeiBot + 2627 + + + Bot: Migrating 1 langlinks, now provided by [[d:|Wikidata]] on [[d:q4115712]] + wikitext + text/x-wiki + '''Kaune''' - [[Lītova|Lītovys]] mīsts. Ūtrais pa lelumam Lītovys mīsts. + +[[Kategoreja:Lītovys mīsti]] + + +{{Stub}} + hyfqo278e0ka3j8xumonqm5e166u4qh + + + + Šauli + 0 + 2874 + + 31842 + 31795 + 2016-12-09T09:38:45Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31795 dated 2016-12-09 09:00:11 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + '''Šauli''' ({{vol-lt|Šiauliai}}; {{vol-bat-smg|Šiaulē}}) — mīsts [[Lītova|Lītovys]] zīmeļūs. Atsarūn [[Žemaiteja|Žemaitejis]] kulturviesturiskuo nūvoda reitūs, 210 kilometru iz zīmeļvokorim nu vaļsts golvysmīsta [[Viļne|Viļnis]]. + +[[Kategoreja:Lītovys mīsti]] + +{{Stub}} + iqjyo1g7j6xtoz5hfbb9spi6z46m6jv + + + + Bierži + 0 + 2875 + + 31897 + 30842 + 2017-02-25T06:07:35Z + + Rachmat04 + 3320 + + + wikitext + text/x-wiki + [[Fails:Birzai2.JPG|thumbnail]] +'''Bierži''' - [[Lītova|Lītovys]] mīsts. + +== Teiklavītys == +* [http://www.birzai.lt/ Official website of Biržai district municipality] +* [http://www.davidrumsey.com/luna/servlet/detail/RUMSEY~8~1~4414~410003:Seconde-partie-de-la-carte-d-Europe?qvq=q:World_Area=%22Europe%22+;sort:Pub_Date,Pub_List_No_InitialSort;lc:RUMSEY~8~1&mi=60&trs=482] Historical map of Lithuania by [[Charles XIV John of Sweden|Jean Baptiste]] Bourguignon Anville with Birze +* [http://www.panoramas.lt/m_katalog.php?p_id=778&lg=2 Biržų Šv. Jono Krikštytojo bažnyčia] +* [http://www.liuteronai.lt/parapijos/birzai/birzai.htm Biržų liuteronų parapija] +* [http://www.ref.lt/index.php/lt/parapijos/birai Biržų ev. reformatų parapija] +* [http://www.pabirze.lt Didžiausios Biržų rajono savivaldybės tinklapis] +* [http://dir.icm.edu.pl/pl/Slownik_geograficzny/Tom_I/233 Birże [[Lenkijos Karalystės ir kitų slavų kraštų geografinis žodynas|Lenkijos Karalystės ir kitų slavų kraštų geografiniame žodyne]], Tom I, psl. 233 (lenk.)] +{{Stub}} + +[[Kategoreja:Lītovys mīsti]] + 6y9ctjg4om3jfwrp9oyaaywdwr4gc4p + + + + Taiss:FlowMention + 10 + 2882 + + 30806 + 2015-08-03T23:35:02Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + @[[Lītuotuojs:{{{1|Example}}}|{{{2|{{{1|Example}}}}}}]] + t0onff88jfi7d1msyrk16j3z2hsqtvj + + + + Varšova + 0 + 2883 + + 31208 + 30859 + 2015-11-25T06:41:12Z + + Jerzyjan1 + 2485 + + + redakcyjne + wikitext + text/x-wiki + {{Latvejis mīsts +| pasauka = Varšova +| atvaiga_pasauka = Warsaw Downtown.jpg +| atvaiga_aprakstejums = +| gerba_atvaigs = POL Warszawa COA.svg +| gerba_pasauka = Varšova gerbs +| pluots = 517,24 km² +| dzeivuotuoji_gods = 2014 +| dzeivuotuoju_skaits = 1 735 442 +| bīzeiba = 3355 +| teiklavīta = [http://www.um.warszawa.pl/ Warszawa] +}} +'''Varšova''' (puoļu: ''Warszawa'') — [[Puoleja|Puolejis]] golvysmīsts i pats leluokais mīsts. Mīsta mers irā Hanna Gronkiewicz-Waltz. + +== Demografeja == +<timeline> +ImageSize = width:420 height:320 +PlotArea = left:50 right:20 top:25 bottom:30 +TimeAxis = orientation:vertical +AlignBars = late +Colors = + id:linegrey2 value:gray(0.9) + id:linegrey value:gray(0.7) + id:cobar value:rgb(0.2,0.7,0.8) + id:cobar2 value:rgb(0.6,0.9,0.6) +DateFormat = yyyy +Period = from:0 till:2000000 +ScaleMajor = unit:year increment:500000 start:0 gridcolor:linegrey +ScaleMinor = unit:year increment:500000 start:0 gridcolor:linegrey2 +PlotData = + color:cobar width:20 align:center + bar:1500 from:0 till:6500 + bar:1624 from:0 till:48000 + bar:1800 from:0 till:63400 + bar:1939 from:0 till:1289000 + bar:1945 from:0 till:422000 + bar:1960 from:0 till:1139189 + bar:2000 from:0 till:1610471 + bar:2014 from:0 till:1735442 +PlotData= + textcolor:black fontsize:S + bar:1500 at: 6500 text: 6500 shift:(0) + bar:1624 at: 48000 text: 48000 shift:(0) + bar:1800 at: 63400 text: 63400 shift:(0) + bar:1939 at: 1289000 text: 1289000 shift:(0) + bar:1945 at: 422000 text: 422000 shift:(0) + bar:1960 at: 1139189 text: 1139189 shift:(0) + bar:2000 at: 1610471 text: 1610471 shift:(0) + bar:2014 at: 1732707 text: 1735442 shift:(0) + </timeline> + +== Administrativais dalejums == +[[Fails:Warszawa podzial administracyjny 2002.svg|thumb|280px|left|]] + +== Galereja == +<gallery> +Fails:Warsaw 07-13 img06 skyline.jpg +Fails:Sejm RP.jpg +Fails:Bellotto View of Warsaw from Praga.jpg|1770 +Fails:Destroyed Warsaw, capital of Poland, January 1945.jpg|1945 +Fails:Warszawasy4.jpg +Fails:6 Warszawa 411.jpg +Fails:5 Warszawa 083.jpg +Fails:6 Warszawa 032.jpg +Fails:Warszawa - Politechnika.jpg +Fails:Stadion Narodowy w Warszawie 20120422.jpg +</gallery> +== Partnermīsti == +{|style="width: 100%; align:top" +|valign=top| +* [[Coventry]] +* [[San Diego]] +* [[Düsseldorf]] +* [[Hamamatsu]] +* [[Île-de-France]] +* [[Toronto]] +* [[Berlin]] +* [[Haga]] +* [[Stambuł]] +* [[Tel Awiw-Jafa]] +* [[Buenos Aires]] +* [[Harbin]] +* [[Moskwa]] +|valign=top| +* [[Kijów]] +* [[Tajpej]] +* [[Saint-Étienne]] +* [[Chicago]] +* [[Seul]] +* [[Petersburg|Sankt Petersburg]] +* [[Rio de Janeiro]] +* [[Grozny]] +* [[Wilno]] +* [[Paryż]] +* [[Hanoi]] +|valign=top| +* [[Wiedeń]] +* [[Astana]] +* [[Ryga]] +* [[Budapeszt]] +* [[Oslo]] +* [[Madryt]] +* [[Kair]] +* [[Bangkok]] +* [[Charków]] +* [[Zagrzeb]] +{{Commonscat|Warszawa|Varšova}} + + +[[Kategoreja:Puoleja]] +[[Kategoreja:Puolejis mīsti]] +[[Kategoreja:Golvysmīsti]] + 1zmft8d1pq6sfd7c2yub9swkxfgsr0p + + + + Kategoreja:Puoleja + 14 + 2884 + + 30853 + 2015-08-14T21:29:20Z + + Jerzyjan1 + 2485 + + nowe hasło + wikitext + text/x-wiki + {{commonscat|Polska|Puoleja}} +* [[Puoleja]] + pu9vc9vphbjl6nqq7mymf2xcug0qnka + + + + Europys himna + 0 + 2889 + + 31925 + 31923 + 2017-03-15T14:28:25Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[Fails:Beethoven.jpg|thumb|[[Ļudvigs van Bethovens]] (Jozefa Štilera tepne)]] +[[Fails:Friedrich von Schiller Coloured Drawing.png|thumb|[[Fridrihs Šilers]]]] +[[Fails:Ninth Symphony original.png|258px|thumb|Bethovena originaluo muzykys rūkroksta puslopa|250px]] +'''Europys himnys''' (vuocīšu: ''Europahymne'', anglīšu: ''Anthem of Europe'', prancuzu: ''Hymne européen'', latvīšu: ''Eiropas himna'') aba '''Europys Savīneibys himnys''' (vuocīšu: ''Hymne der Europäischen Union'', anglīšu: ''Anthem of the European Union'', prancuzu: ''Hymne de l'Union Européenne'', latvīšu: ''Eiropas Savienības himna''), aba '''„Oda prīcai”''' (vuocīšu: ''Ode an die Freude'', anglīšu: ''Ode to Joy'', prancuzu: ''Ode à la joie'', latvīšu: ''Oda priekam'') − Ļudviga van Bethovena „Deveituos simfonejis” finala instrumentalais araņžiejums, kurs apstyprynuots par Europys Savīneibys oficialū himnu 1985 godā i apzeimoj Europys apsorgojamūs breiveibys, mīra i solidaruma idealus. Muzyku Ļ. van Bethovens pīraksteja 1785 godā pa Fridriha Šilera poemai „Oda prīcai”. + + +== Bolss == +[[Fails:Anthem of Europe (US Navy instrumental short version).ogg|Oda prīcai]] + + +== Vuordi == +{| +<table><tr><td valign="top" width="300"> +'''Originals vuocyskai ''(eisynuotuo verseja)''''' + +: Freude, schöner Götterfunken, +: Tochter aus Elysium, +: Wir betreten feuertrunken, +: Himmlische, dein Heiligtum! +: / Deine Zauber binden wieder, +: Was die Mode streng geteilt, +: Alle Menschen werden Brüder, +: Wo Dein sanfter Flügel weilt. / ''2x'' + + +: Wem der große Wurf gelungen, +: Eines Freundes Freund zu sein, +: Wer ein holdes Weib errungen, +: Mische seinen Jubel ein! +: / Ja, wer auch nur eine Seele +: Sein nennt auf dem Erdenrund! +: Und wer’s nie gekonnt, der stehle +: Weinend sich aus diesem Bund! / ''2x'' + +</td><td valign="top" width="300"> +'''Latgaliskai (A. Kūceņa atvārsums)''' +<br> +: Prīca, dzierkstim debeseigom +: Īvess myusus svieteibā, +: Īsim sirdim aizdedzeigom +: Dīveigajā siedeibā! +: / Breinums acīs sprikstēs myusim, +: Pruotūs meisīs rūbeži, +: Vysi ļauds par bruolim byusim, +: Prīcys gluobē tykuši. / ''2x'' + + +: Ka tev dzeivē īsadeve +: Turēt draugu eistynu +: I ka saime gaida teve, +: Teiksim taidu cylvāku! +: / Kam koč vīna dvēseleite +: Sirdei mīla, – pulkā ej! +: A kas grib viņ tukšai speidēt, – +: Myusu aiļuos nablūdej! / ''2x'' +</td></tr> +</table> +|} + + +== Nūruodis i olūti == +* [http://europa.eu/about-eu/basic-information/symbols/anthem/european-anthem-2012.mp3 Europys himny instrumentalais īroksts] +* [http://www.openculture.com/2012/07/beethovens_ode_to_joy_flashmobbed.html Europys himnys spieļuojums iz polota] + + +[[Kategoreja:Europys Savīneiba]] + tjo61kbk8yamxlxa7e8ixm6t02zapst + + + + Taiss:LQT Moved thread stub converted to Flow + 10 + 2891 + + 30908 + 2015-10-02T20:04:59Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + This post by {{{author}}} was moved on {{{date}}}. You can find it at [[{{{title}}}]]. + e5j16chw2130kmdotptl65jvxa6lw5w + + + + Taiss:LQT page converted to Flow + 10 + 2892 + + 30909 + 2015-10-02T20:04:59Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + Previous page history was archived for backup purposes at <span class='flow-link-to-archive'>[[{{{archive}}}]]</span> on {{#time: Y-m-d|{{{date}}}}}. + njhr9sbh7lx81p2xfwikn7amdd3n1zn + + + + Taiss:Archive for converted LQT page + 10 + 2893 + + 30910 + 2015-10-02T20:04:59Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + This page is an archived LiquidThreads page. '''Do not edit the contents of this page'''. Please direct any additional comments to the [[{{{from}}}|current talk page]]. + nigyidinm7czjt0s9dq851dwhckapia + + + + Taiss:LQT post imported with supressed user + 10 + 2894 + + 30911 + 2015-10-02T20:04:59Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + This revision was imported from LiquidThreads with a suppressed user. It has been reassigned to the current user. + 1pswkbcu7hauadd98nklgf3pku080ee + + + + Taiss:LQT post imported with different signature user + 10 + 2895 + + 30912 + 2015-10-02T20:04:59Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + ''This post was posted by [[User:{{{authorUser}}}|{{{authorUser}}}]], but signed as [[User:{{{signatureUser}}}|{{{signatureUser}}}]].'' + gr9xg2oo9p9alcaf8usi587bcmsi65s + + + + Taiss:Wikitext talk page converted to Flow + 10 + 2896 + + 30913 + 2015-10-02T20:04:59Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + Previous discussion was archived at <span class='flow-link-to-archive'>[[{{{archive}}}]]</span> on {{#time: Y-m-d|{{{date}}}}}. + ccusakfp9y2sl227h5sbt4ok1ptcsxi + + + + Taiss:Archive for converted wikitext talk page + 10 + 2897 + + 30914 + 2015-10-02T20:05:00Z + + Flow talk page manager + 3082 + + /* Automatically created by Flow */ + wikitext + text/x-wiki + This page is an archive. '''Do not edit the contents of this page'''. Please direct any additional comments to the [[{{{from|{{TALKSPACE}}:{{BASEPAGENAME}}}}}|current talk page]]. + hd1xxik7k0u7gcb9oq9ddgh20zmhpy4 + + + + Taiss:Latin alfabēta + 10 + 2959 + + 30985 + 2015-10-22T02:32:43Z + + 166.172.122.55 + + Jauna lapa: {| cellspacing="4" cellpadding="0" class="toccolours" id="latin-alphabet" style="margin:0 auto; width:80%; clear: both;" |- style="vertical-align:top;" ! style="text-align:right;" | [... + wikitext + text/x-wiki + {| cellspacing="4" cellpadding="0" class="toccolours" id="latin-alphabet" style="margin:0 auto; width:80%; clear: both;" +|- style="vertical-align:top;" +! style="text-align:right;" | [[Latin alfabēta]] +||<span class="nounderlines"> [[A]]a | [[B]]b | [[C]]c | [[D]]d | [[E]]e | [[F]]f | [[G]]g | [[H]]h | [[I]]i | [[J]]j | [[K]]k | [[L]]l | [[M]]m | [[N]]n | [[O]]o | [[P]]p | [[Q]]q | [[R]]r | [[S]]s | [[T]]t | [[U]]u | [[V]]v | [[W]]w | [[X]]x | [[Y]]y | [[Z]]z</span> +|- style="vertical-align:top;" +! style="text-align:right;" | [[Latin Extended-A]] +||<span class="nounderlines"> {{unicode|[[grave accent|Àà]]}} | {{unicode|[[acute accent|Áá]]}} | {{unicode|[[circumflex|Ââ]]}} | {{unicode|[[Ä|Ää]]}} | {{unicode|[[Ã|Ãã]]}} | {{unicode|[[Ā|Āā]]}} | {{unicode|[[Ogonek|Ąą]]}} | {{unicode|[[Ă|Ăă]]}} | {{unicode|[[caron|Ǎǎ]]}} | {{unicode|[[Cedilla|Çç]]}} | {{unicode|[[Ĉ|Ĉĉ]]}} | {{unicode|[[Č|Čč]]}} | {{unicode|[[Ć|Ćć]]}} | {{unicode|[[D with stroke|Đđ]]}} | {{unicode|[[Ď|Ďď]]}} | {{unicode|[[Grave accent|Èè]]}} | {{unicode|[[acute accent|Éé]]}} | {{unicode|[[circumflex|Êê]]}} | {{unicode|[[Ë|Ëë]]}} | {{unicode|[[Ogonek|Ęę]]}} | {{unicode|[[Ē|Ēē]]}} | {{unicode|[[Ĕ|Ĕĕ]]}} | {{unicode|[[Ė|Ėė]]}} | {{unicode|[[Ě|Ěě]]}} | {{unicode|[[Ĝ|Ĝĝ]]}} | {{unicode|[[Ğ|Ğğ]]}} | {{unicode|[[Ġ|Ġġ]]}} | {{unicode|[[Ģ|Ģģ]]}} | {{unicode|[[G-caron|Ǧǧ]]}} | {{unicode|[[Ĥ|Ĥĥ]]}} | {{unicode|[[Ħ|Ħħ]]}} | {{unicode|[[grave accent|Ìì]]}} | {{unicode|[[acute accent|Íí]]}} | {{unicode|[[circumflex|Îî]]}} | {{unicode|[[diaraesis|Ïï]]}} | {{unicode|[[Ogonek|Įį]]}} | {{unicode|[[Turkish dotted and dotless I|İı]]}} | {{unicode|[[Ĩ|Ĩĩ]]}} | {{unicode|[[Ī|Īī]]}} | {{unicode|[[Ĭ|Ĭĭ]]}} | {{unicode|[[Ĵ|Ĵĵ]]}} | {{unicode|[[Ķ|Ķķ]]}} | {{unicode|[[K-caron|Ǩǩ]]}} | {{unicode|[[acute accent|Ĺĺ]]}} | {{unicode|[[Ļ|Ļļ]]}} | {{unicode|[[Ľ|Ľľ]]}} | {{unicode|[[Ŀ|Ŀŀ]]}} | {{unicode|[[Ł|Łł]]}} | {{unicode|[[acute accent|Ńń]]}} | {{unicode|[[Ņ|Ņņ]]}} | {{unicode|[[Ň|Ňň]]}} | {{unicode|[[grave accent|Òò]]}} | {{unicode|[[acute accent|Óó]]}} | {{unicode|[[circumflex|Ôô]]}} | {{unicode|[[Ö|Öö]]}} | {{unicode|[[Õ|Õõ]]}} | {{unicode|[[Ő|Őő]]}} | {{unicode|[[Ogonek|Ǫǫ]]}} | {{unicode|[[Ō|Ōō]]}} | {{unicode|[[Ŏ|Ŏŏ]]}} | {{unicode|[[Ơ|Ơơ]]}} | {{unicode|[[acute accent|Ŕŕ]]}} | {{unicode|[[Ŗ|Ŗŗ]]}} | {{unicode|[[Ř|Řř]]}} | {{unicode|[[acute accent|Śś]]}} | {{unicode|[[Ŝ|Ŝŝ]]}} | {{unicode|[[Ş|Şş]]}} | {{unicode|[[Ș|Șș]]}} | {{unicode|[[Š|Šš]]}} | {{unicode|[[Ť|Ťť]]}} | {{unicode|[[Ŧ|Ŧŧ]]}} | {{unicode|[[Ţ|Ţţ]]}} | {{unicode|[[T-comma|Țț]]}} | {{unicode|[[grave accent|Ùù]]}} | {{unicode|[[acute accent|Úú]]}} | {{unicode|[[circumflex|Ûû]]}} | {{unicode|[[Ü|Üü]]}} | {{unicode|[[Ũ|Ũũ]]}} | {{unicode|[[Ū|Ūū]]}} | {{unicode|[[Ŭ|Ŭŭ]]}} | {{unicode|[[Ogonek|Ųų]]}} | {{unicode|[[Ů|Ůů]]}} | {{unicode|[[Ű|Űű]]}} | {{unicode|[[Ư|Ưư]]}} | {{unicode|[[circumflex|Ŵŵ]]}} | {{unicode|[[acute accent|Ýý]]}} | {{unicode|[[circumflex|Ŷŷ]]}} | {{unicode|[[diaraesis|Ÿÿ]]}} | {{unicode|[[acute accent|Źź]]}} | {{unicode|[[Ž|Žž]]}} | {{unicode|[[Ż|Żż]]}}</span> +|- style="vertical-align:top;" +! style="text-align:right;" | [[Latin Extended-B]] +||<span class="nounderlines"> {{unicode|[[Ȁ|Ȁȁ]]}} | {{unicode|[[Ȃ|Ȃȃ]]}} | {{unicode|[[Æ|Ææ]]}} | {{unicode|[[Ǽ|Ǽǽ]]}} | {{unicode|[[Ǣ|Ǣǣ]]}} | {{unicode|[[Å|Åå]]}} | {{unicode|[[Ċ|Ċċ]]}} | {{unicode|[[Eth|Ðð]]}} | {{unicode|[[DZ (letter)|DZdz]]}} | {{unicode|[[Dž|Dždž]]}} | {{unicode|[[Ɛ|Ɛɛ]]}} | {{unicode|[[Ȅ|Ȅȅ]]}} | {{unicode|[[Ȇ|Ȇȇ]]}} | {{unicode|[[Schwa|Əə]]}} | {{unicode|[[Ƒ|Ƒƒ]]}} | {{unicode|[[Ǥ|Ǥǥ]]}} | {{unicode|[[Ǧ|Ǧǧ]]}} | {{unicode|[[Gha (letter)|Ƣƣ]]}} | {{unicode|[[Hwair|Ƕƕ]]}} | {{unicode|[[IJ|IJij]]}} | {{unicode|[[Ǐ|Ǐǐ]]}} | {{unicode|[[Ȉ|Ȉȉ]]}} | {{unicode|[[Ȋ|Ȋȋ]]}} | {{unicode|[[Ǩ|Ǩǩ]]}} | {{unicode|[[kra (letter)|ĸ]]}} | {{unicode|[[Lj (letter)|Ljlj]]}} | {{unicode|[[Ll|LLll]]}} | {{unicode|[[ĿL|ĿLŀl]]}} | {{unicode|[[Ñ|Ññ]]}} | {{unicode|[[Nj (letter)|Njnj]]}} | {{unicode|[[Eng (letter)|Ŋŋ]]}} | {{unicode|[[Œ|Œœ]]}} | {{unicode|[[Ø|Øø]]}} | {{unicode|[[Ǿ|Ǿǿ]]}} | {{unicode|[[Ǒ|Ǒǒ]]}} | {{unicode|[[Ȍ|Ȍȍ]]}} | {{unicode|[[Ȏ|Ȏȏ]]}} | {{unicode|[[Ɔ|Ɔɔ]]}} | {{unicode|[[Ou (letter)|Ȣȣ]]}} | [[]] | {{unicode|[[Ȑ|Ȑȑ]]}} | {{unicode|[[Ȓ|Ȓȓ]]}} | {{unicode|[[Long s|ſ]]}} | {{unicode|[[ß]]}} | {{unicode|[[Esh (letter)|Ʃʃ]]}} | {{unicode|[[Ǔ|Ǔǔ]]}} | {{unicode|[[Ȕ|Ȕȕ]]}} | {{unicode|[[Ȗ|Ȗȗ]]}} | {{unicode|[[Wynn|Ƿƿ]]}} | {{unicode|[[Yogh|Ȝȝ]]}} | {{unicode|[[Ȥ|Ȥȥ]]}} | {{unicode|[[Ƶ|Ƶƶ]]}} | {{unicode|[[Ezh (letter)|Ʒʒ]]}} | {{unicode|[[Ǯ|Ǯǯ]]}} | {{unicode|[[Thorn (letter)|Þþ]]}}</span> +|} + eokloujg0j04e5m60e2rpx12wl7hg8q + + + + Taiss:Unicode + 10 + 2960 + + 30986 + 2015-10-22T02:32:56Z + + 166.172.122.55 + + Jauna lapa: <span class="Unicode">{{{1}}}</span> + wikitext + text/x-wiki + <span class="Unicode">{{{1}}}</span> + l5iz9jjy8x3n4tdawfrcesy5j86uf3k + + + + Latgalīšu himna + 0 + 3132 + + + 31931 + 31171 + 2017-03-21T08:14:27Z + + タチコマ robot + 952 + + + Bot: Fixing double redirect to [[Latgolys himna]] + wikitext + text/x-wiki + #REDIRECT [[Latgolys himna]] + j0d54fgh29zskb26942hhxeirrxfo81 + + + + Latgalīšu karūgs + 0 + 3133 + + + 31174 + 2015-11-02T12:04:00Z + + Vucyns + 3168 + + Vucyns pārvietoja lapu [[Latgalīšu karūgs]] uz [[Latgolys karūgs]] + wikitext + text/x-wiki + #REDIRECT [[Latgolys karūgs]] + 24eyn0chi5nwqbz0dkg6qi0y691lapc + + + + Dzeļžaceļš + 0 + 3135 + + 31183 + 31181 + 2015-11-07T18:21:40Z + + Pleckaitis + 235 + + wikitext + text/x-wiki + [[Fails:Rail_gauge_world.png|right|thumb|300x300px|Pasauļa vaļsteibuos vysucīšuok paplateituo dzeļžaceļa slīžu plotuma karta]] +'''Dzeļžaceļš '''(baļtīšu: ''dzelzceļš, ''anglīšu: ''railway, ''krīvu: ''железная дорога'') – precem i brauciejim voduot paradzāta transporta atmeja, viļcīņu transporta vysums, sasadorūšs nu metala slīžu ceļu, viļcīņu sastotu, staceju i nūstuošonu, paleigpastotys. + +[[Category:Transports]] + hp96amzpb590gqrpidcjxwr6sek2ug5 + + + + Vikipedeja:Asian Month + 4 + 3139 + + 31202 + 2015-11-19T14:26:14Z + + 永続繁栄 + 3206 + + Jauna lapa: '''Asian Month ''' is about writing Asia. If you are writing five or more pages about Asia, Special design letter(from other country) will send to you. Why don't you join us? If you a... + wikitext + text/x-wiki + '''Asian Month ''' is about writing Asia. If you are writing five or more pages about Asia, Special design letter(from other country) will send to you. Why don't you join us? If you are interested, please sign [[/participants|this page]]. If you want to be local organizer, please sign below. +Cf.[[m:Wikipedia Asian Month]] +[[:en:Wikipedia:Wikipedia Asian Month]] +== Organizers == + h13z59xvd491b9ogblvojgsuahm401c + + + + Vikipedeja:Asian Month/participants + 4 + 3140 + + 31203 + 2015-11-19T14:26:46Z + + 永続繁栄 + 3206 + + Jauna lapa: --~~~~ + wikitext + text/x-wiki + --[[Lītuotuojs:永続繁栄|永続繁栄]] ([[Sprīža ap lītuotuoju:永続繁栄|diskusija]]) 2015. gada 19. solnys mieness, plkst. 16.26 (EET) + fzx3ammrfhie3gn0slyj9lz8egl4tg7 + + + + Lobez + 0 + 3141 + + 31260 + 31212 + 2015-12-27T05:54:31Z + + Jerzyjan1 + 2485 + + + redakcyjne + wikitext + text/x-wiki + {| border=1 align=right cellpadding=4 cellspacing=0 width=300 style="margin: 0 0 1em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; border-collapse: collapse; font-size: 95%;" +|+<big><big>'''{{PAGENAME}}'''</big></big><br />''Łobez'' +|- +| style="background:#efefef;" align="center" colspan=2 | +{| border="0" cellpadding="2" cellspacing="0" +|- +| align="center" width="140px" | [[File:POL Łobez COA.svg|100px]] +| align="center" width="140px" | [[File:Łobez-Polska.png|right|100px]] +|} +|- +| align=center colspan=2 | [[File:Lobez main street.jpg|250px]] +|} + +'''Lobez''' (puoļu: ''Łobez'') — mīsts [[Puoleja|Puolejis]] reitūs, [[Zachodniopomorskie]] vaivadejā pi Rega upis. +* Pluots: 12,84 km² +* Dzeivuotuoju: 10 409<ref>Główny Urząd Statystyczny, dane za rok 2015, stan na 01.01.2015.[http://stat.gov.pl/obszary-tematyczne/ludnosc/ludnosc/powierzchnia-i-ludnosc-w-przekroju-terytorialnym-w-2015-r-,7,12.html]</ref> (2015) +* Bīzeiba: 811 dz./km² +== Dzeivuotuoju == +<timeline> +ImageSize = width:420 height:320 +PlotArea = left:50 right:20 top:25 bottom:30 +TimeAxis = orientation:vertical +AlignBars = late +Colors = + id:linegrey2 value:gray(0.9) + id:linegrey value:gray(0.7) + id:cobar value:rgb(0.2,0.7,0.8) + id:cobar2 value:rgb(0.6,0.9,0.6) +DateFormat = yyyy +Period = from:0 till:11000 +ScaleMajor = unit:year increment:11000 start:0 gridcolor:linegrey +ScaleMinor = unit:year increment:1000 start:0 gridcolor:linegrey2 +PlotData = + color:cobar width:20 align:center + bar:1680 from:0 till:800 + bar:1740 from:0 till:1191 + bar:1749 from:0 till:1339 + bar:1831 from:0 till:2443 + bar:1861 from:0 till:4756 + bar:1895 from:0 till:5187 + bar:1925 from:0 till:5994 + bar:1933 from:0 till:6947 + bar:1939 from:0 till:7310 + bar:1945 from:0 till:1710 + bar:1946 from:0 till:4144 + bar:1957 from:0 till:6026 + bar:1970 from:0 till:7355 + bar:1990 from:0 till:10953 + +PlotData= + textcolor:black fontsize:S + bar:1680 at: 800 text: 0,8 shift:(0) + bar:1740 at: 1191 text: 1,2 shift:(0) + bar:1749 at: 1339 text: 1,3 shift:(0) + bar:1831 at: 2443 text: 2,4 shift:(0) + bar:1861 at: 4756 text: 4,8 shift:(0) + bar:1895 at: 5187 text: 5,2 shift:(0) + bar:1925 at: 5994 text: 6 shift:(0) + bar:1933 at: 6947 text: 7 shift:(0) + bar:1939 at: 7310 text: 7,3 shift:(0) + bar:1945 at: 1710 text: 1,7 shift:(0) + bar:1946 at: 4144 text: 4,1 shift:(0) + bar:1957 at: 6026 text: 6 shift:(0) + bar:1970 at: 7355 text: 7,4 shift:(0) + bar:1990 at: 10953 text:11 shift:(0) + </timeline> +== Mers == +{| class="wikitable" +| 1632 – Carsten Beleke || || 1809 – Johann Georg Falck +|- +| 1670 – Bernd Bublich || || 1823–1840 – Johann Friedrich Rosenow +|- +| 1700 – Paul Belecke || || 1842–1844 – Adolf Ludwig Ritter (privremeno) +|- +| 1702 – Theele || || 1844–1845 – Albert Wilhelm Rizky +|- +| 1723 – F. C. Hackebeck || ||1846–1852 – Heinich Ludwig Gotthilf Hasenjäger +|- +| 1734 – F. W. Weinholz || || prije 1859. Hasenjaeger +|- +| 1736 – Schulze || || 1852–1864 – Carl Albert Alexander Schüz +|- +| 1732 – Hackenberken || || 1921 – Willi Kieckbeusch +|- +| 1745 – M. C. Frize || || 1945 – Hackelberg, Teofil Fiutowski, Stefan Nowak, Feliks Mielczarek +|- +| 1746 – Johann Friedrich Thym || || 1946 – Władysław Śmiełowski +|- +| 1752 – Johann Gottsried Severin || || 1948 – Tadeusz Klimski +|- +| 1753? – J. F. von Flige || || 1949 – Ignacy Łepkowski +|- +| 1757 – Johann Friedrich Thym || || 1972-1990 - Zbigniew Con +|- +| 1757 – Heller || || 1990–94 - Marek Romejko +|- +| 1767 – Gottlieb Timm || || 1994–1998 - Jan Szafran +|- +|1775 – Johann Gottfried Severin|| || 1998–2002 - Halina Szymańska +|- +|1790 – Jahncke|| || 2002–2006 - Marek Romejko +|- +|1805 – Heinrich (?) Falck|| || 2006–2014 - Ryszard Sola +|- +|1806 – Zuther (drugi dan 1712)|| ||2014 - Piotr Ćwikła +|- +|1806 – Nemitz|| || +|} + +== Galereja == +<gallery> +File:Lobez kosciol kz.jpg| +File:Kamienica w Łobzie (obok dworca PKP).jpg| +File:Zabytkowa Poczta w Łobzie.JPG| +File:Zabytkowy dom w Łobzie.jpg| +File:Świętoborzec - dworek.jpg| +File:Łobez z lotu ptaka.JPG| +</gallery> +== Sports == +[[File:Stadion w Łobzie.JPG|thumb|120px]] +[[File:Hala sportowo-widowiskowa w Łobzie.JPG|thumb|120px]] +* MLKS „Światowid” - 5. Football League [http://swiatowidlobez.pl/news.php] + +== Partnermīsti == +* [[Affing]] +* [[Wiek]] +* [[Kėdainiai]] +* [[Paikuse]] +* [[Svalöv]] +* [[Guča]] +* [[Истра]] +== Internet == +* [http://www.lobez.pl Łobez] +* [http://www.bip.lobez.pl/ BIP Łobez] +* [http://www.youtube.com/watch?v=mPWlmToO5FY/ Łobez - You Tube] +{{commons|Łobez}} +[[Kategoreja:Puoleja]] +[[Kategoreja:Puolejis mīsti]] + 7ann12lrfcw2atk9upkidej1kubla8j + + + + Kategoreja:Puolejis mīsti + 14 + 3142 + + 31211 + 2015-11-25T06:54:43Z + + Jerzyjan1 + 2485 + + redakcyjne + wikitext + text/x-wiki + {{Commons|Polska|Puoleja}} + oxgmmv8x26hqlu626xvx4jzbk5eqw4y + + + + Paneviežs + 0 + 3144 + + 31335 + 31236 + 2016-03-04T13:18:14Z + + Pleckaitis + 235 + + wikitext + text/x-wiki + '''Paneviežs''' ([[Lītaunīku volūda|lt.]] - ''Panevėžys'') - [[Lītova|Lītovys]] mīsts. + +[[Kategoreja:Lītovys mīsti]] + +{{Stub}} + oxodk2hlkhfrx48x54j09ac5s2gf40e + + + + Kategorejis:Italeja + 0 + 3154 + + + 31293 + 2016-02-06T12:37:34Z + + Edgars2007 + 114 + + Edgars2007 pārvietoja lapu [[Kategorejis:Italeja]] uz [[Kategoreja:Italeja]] + wikitext + text/x-wiki + #REDIRECT [[:Kategoreja:Italeja]] + t4wk8zvv1r24o8tphthqfk4bo4to3tf + + + + Suoku puslopa:Вики-Сабантуй 2015 + 0 + 3155 + + + 31298 + 2016-02-06T12:52:04Z + + Edgars2007 + 114 + + Edgars2007 pārvietoja lapu [[Suoku puslopa:Вики-Сабантуй 2015]] uz [[Vikipedeja:Вики-Сабантуй 2015]] + wikitext + text/x-wiki + #REDIRECT [[Vikipedeja:Вики-Сабантуй 2015]] + i3bky1s3xfl4qz3n31pce3l65bchwyg + + + + Kategorija:Lītuotuoj Vikitekā + 0 + 3156 + + + 31300 + 2016-02-06T13:03:34Z + + Edgars2007 + 114 + + Edgars2007 pārvietoja lapu [[Kategorija:Lītuotuoj Vikitekā]] uz [[Kategoreja:Lītuotuoj Vikitekā]] + wikitext + text/x-wiki + #REDIRECT [[:Kategoreja:Lītuotuoj Vikitekā]] + aucw3r18nx7j9td87xzfdrd8htbhz6w + + + + Kategoreja:Krīveja + 14 + 3158 + + 31314 + 2016-03-02T12:25:15Z + + 159.148.5.32 + + Jauna lapa: [[Kategoreja:Azejys vaļsteibys]] [[Kategoreja:Europys vaļsteibys]] + wikitext + text/x-wiki + [[Kategoreja:Azejys vaļsteibys]] +[[Kategoreja:Europys vaļsteibys]] + kdlhae5d62o22w90qjrbdy38i7z352t + + + + Krapanīks + 0 + 3159 + + + 31330 + 2016-03-03T11:40:45Z + + Stiernīts + 2966 + + Stiernīts pārvietoja lapu [[Krapanīks]] uz [[Krapaunīks]] + wikitext + text/x-wiki + #REDIRECT [[Krapaunīks]] + ln4aiygcolu6r3v4cjsijc3wy9olkp7 + + + + Aleits + 0 + 3160 + + 31341 + 31336 + 2016-03-04T22:07:50Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q450625]] + wikitext + text/x-wiki + '''Aleits'''([[Lītaunīku volūda|lt.]] - ''Alytus'') - [[Lītova|Lītovys]] mīsts. + +[[Kategoreja:Lītovys mīsti]] + +{{Stub}} + 9no48jnsgv13rvx0o41x8tj4lxuvqr8 + + + + Marijampole + 0 + 3161 + + 31340 + 31333 + 2016-03-04T22:07:48Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q1351046]] + wikitext + text/x-wiki + '''Marijampole''' ([[Lītaunīku volūda|lt.]] - ''Marijampolė'') - [[Lītova|Lītovys]] mīsts. + +[[Kategoreja:Lītovys mīsti]] + + + +{{Stub}} + shts5mr5jeabg5thm4na71eh6qv1dua + + + + UNS + 0 + 3163 + + 31356 + 31352 + 2016-03-21T08:37:51Z + + Papuass + 219 + + + wikitext + text/x-wiki + [[File:Logo УНС.JPG|thumb|Logo UNS]] +'''UNS''' (ukr.:Український Національний Союз)— [[Ukraina|Ukrainys]] nacionalеstu oganizaceja<ref>http://www.objectiv.tv/230114/92352.html</ref><ref>[http://www.vesti.ru/videos/show/vid/573554/#/video/http%3A%2F%2Fplayer.rutv.ru%2Fiframe%2Fvideo%2Fid%2F761641%2Fstart_zoom%2Ftrue%2FshowZoomBtn%2Ffalse%2Fsid%2Fvesti%2FisPlay%2Ftrue%2F Украинская кухня. Специальный репортаж Дениса Арапова]</ref>. + +== Nūruodis i olūti == +{{nūruodis}} +== Teiklavītys == +*[http://naso.org.ua/UNS teiklavīta] + + +[[Kategoreja:Politika]] +[[Kategoreja:Ukraina| ]] +{{nadabeigts rakstīņs}} + isb602aik7g66ewq0xzw5ap5nppy1c2 + + + + Kategoreja:Ukraina + 14 + 3164 + + 31353 + 2016-03-14T12:07:07Z + + CesarNS1980 + 3370 + + Jauna lapa: [[Kategoreja:Pasauļa vaļsteibys]] + wikitext + text/x-wiki + [[Kategoreja:Pasauļa vaļsteibys]] + 13jhlmrcvg1p64jt6x2ikkt8hr8qvx3 + + + + Brīžucīma pogosts + 0 + 3166 + + 31357 + 2016-03-21T11:33:01Z + + Roalds + 50 + + jauna puslopa — Brīžucīma pogosts + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Brīžucīma pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Brīžucīma pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Brīžucīma pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Bolvu nūvods +| centrys = Gryušļova +| pluots = 86,55 +| dzeivuotuoju_skaits = 546<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 546 / 86.55 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Brīžucīma pogosts''' irā [[Bolvu nūvods|Bolvu nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Brīžucīma pamatškola, biblioteka, tautys noms i feļčeru punkts.<ref>[http://www.balvi.lv/index.php?option=com_content&view=category&id=157&Itemid=585&lang=lv Bolvu nūvoda teiklavīta]</ref> + +== Rūbeži == +Brīžucīma pogosts tur rūbežu ar: +* [[Baļtinovys nūvods|Baļtinovys nūvodu]]; +* [[Bolvu nūvods|Bolvu nūvoda]] [[Lozdukolna pogosts|Lozdukolna pogostu]] i [[Tiļžys pogosts|Tiļžys pogostu]]; +* [[Vileks nūvods|Vileks nūvoda]] [[Škilbānu pogosts|Škilbānu pogostu]]. + +== Dzeivuotuoji == +Brīžucīma pogostā dzeivoj 850 ļaužu. + +=== Solys === +Brīžucīma pogosta ļauds dzeivoj 38 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Gryušļova (pogosta centrys), Augstasyls, Aussola, Bielini, Brieksīne, Cierpīne, Čilipīne, Dambergi, Pyušļova, Ploskīne, Stabļova, Štykunova, . + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Bolvu nūvods}} + +[[Kategoreja:Brīžucīma pogosts| ]] + gq0d6rd0cndqt6bp5g3k03c606zvmv7 + + + + Lozdulejis pogosts + 0 + 3167 + + 31835 + 31789 + 2016-12-09T09:37:55Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31789 dated 2016-12-09 08:59:23 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Latvejis nūvods +| pasauka = Lozdulejis pogosts +| zemislopa = +| zemislopa2 = +| zemislopa2_aprakstejums = +| gerba_atvaigs = +| gerba_pasauka = Lozdulejis pogosta gerbs +| karūga_atvaigs = +| karūga_pasauka = Lozdulejis pogosta karūgs +| nūvods = Nūvods +| nūvoda_pasauka = Bolvu nūvods +| centrys = Egļucīms +| pluots = 87,17 +| dzeivuotuoju_skaits = 303<ref>[http://www.pmlp.gov.lv/lv/assets/documents/statistika/IRD2016/ISPV_Pasvaldibas_iedzivotaju_skaits_pagasti.pdf Latvejis dzeivuotuoju skaits pošvoldūs 01.01.2016.]</ref> +| dzeivuotuoji_gods = 2016 +| bīzeiba = {{#expr: 303 / 87.17 round 1}} +| īstateits = 1945 +| teiklavīta = +}} + +'''Lozdulejis pogosts''' irā [[Bolvu nūvods|Bolvu nūvoda]] teritoriskais padalīņs [[Latgola|Latgolā]]. Pogostā dora Egļucīma biblioteka, pogosta saīta noms i Egļovys feļčeru punkts.<ref>[http://www.balvi.lv/index.php?option=com_content&view=category&id=157&Itemid=585&lang=lv Bolvu nūvoda teiklavīta]</ref> + +== Rūbeži == +Lozdulejis pogosts tur rūbežu ar: +* [[Baļtinovys nūvods|Baļtinovys nūvodu]]; +* [[Bolvu nūvods|Bolvu nūvoda]] [[Bārzkolna pogosts|Bārzkolna pogostu]], [[Tiļžys pogosts|Tiļžys pogostu]] i [[Vactiļžys pogosts|Vactiļžys pogostu]]; +* [[Vileks nūvods|Vileks nūvoda]] [[Medņovys pogosts|Medņovys pogostu]] i [[Škilbānu pogosts|Škilbānu pogostu]]. + +== Dzeivuotuoji == +Lozdulejis pogostā dzeivoj 303 ļaužu. + +=== Solys === +Lozdulejis pogosta ļauds dzeivoj 36 soluos.<ref>[http://vietvardi.lgia.gov.lv/ LĢIA vītvuordu datubaza]</ref> Pošu leluos solys - Egļucīms (pogosta centrys), Čyganova, Egļova, Keili, Orlova, Plešova, Ščeglova, + +== Nūruodis == +{{nūruodis}} + +{{nadabeigts rakstīņs}} + +{{Bolvu nūvods}} + +[[Kategoreja:Lozdulejis pogosts| ]] + d5n1d9c2epely7eduqe1w277nhh6za8 + + + + Rio de Janeiro + 0 + 3168 + + 31359 + 2016-03-22T15:23:30Z + + 130.254.150.79 + + Jauna lapa: [[Fails:Montagem Rio de Janeiro.jpg|thumb|Rio de Janeiro]] '''Rio de Janeiro''' — mīsts [[Brazileja]]. Pošā komunā irā 6 453 682 dzeivuotuoju. [[Kategoreja:Brazileja]] Kate... + wikitext + text/x-wiki + [[Fails:Montagem Rio de Janeiro.jpg|thumb|Rio de Janeiro]] + +'''Rio de Janeiro''' — mīsts [[Brazileja]]. Pošā komunā irā 6 453 682 dzeivuotuoju. + +[[Kategoreja:Brazileja]] +[[Kategoreja:Mīsti]] + +{{Nadabeigts rakstīņs}} + f5g8ffj4w14wrgf1hhuy81syess5ktc + + + + Raimonds Vējonis + 0 + 3174 + + 31781 + 31560 + 2016-12-02T06:28:06Z + + Murbaut + 3631 + + wikitext + text/x-wiki + Raimonds Vējonis ir Latvejas valsts tagadējais prezidents. +{{stub}} + fn7jf7ouwww26imf6ilnbzuejr0t7gq + + + + Vjačeslav Malcev + 0 + 3177 + + 31573 + 31559 + 2016-08-31T12:48:20Z + + Wolverène + 2408 + + photo + wikitext + text/x-wiki + [[Fails:Vyacheslav Maltsev.jpg|thumbnail|right|250px|Vjačeslav Malcev, 2016]] +'''Vjačėslav Malcev''' - ({{Vol-ru|Мальцев Вячеслав Вячеславович}}, g. [[1964]] g. <ref>http://svobodomislie.com/vyacheslav-malcev/</ref>) – [[Krīveja]]s politiks. + +== Nūruodis == +{{Reflist}} + +[[Kategoreja:Politiki]] +[[Kategoreja:Krīveja]] + 1a7j2i5rmqx5e03dipf09ih7yb639i6 + + + + Lītne - fizikā, biologejā + 0 + 3220 + + + 31554 + 31531 + 2016-08-12T20:38:50Z + + Turaids + 172 + + + Pāradresē uz [[Lītne (kimejā)]] + wikitext + text/x-wiki + #REDIRECT [[Lītne (kimejā)]] + muiq8odt5akl5b5qq01qqtx3vsogx70 + + + + Lītne – humanitarajuos zineibuos + 0 + 3221 + + + 31534 + 2016-08-02T20:07:20Z + + Turaids + 172 + + Turaids pārvietoja lapu [[Lītne – humanitarajuos zineibuos]] uz [[Lītne (humanitarajuos zineibuos)]] + wikitext + text/x-wiki + #REDIRECT [[Lītne (humanitarajuos zineibuos)]] + 93g7ntstak2jb5ku6lrq17l09k4svdt + + + + Lītne (kimeja) + 0 + 3222 + + + 31553 + 2016-08-12T20:37:47Z + + Turaids + 172 + + Turaids pārvietoja lapu [[Lītne (kimeja)]] uz [[Lītne (kimejā)]] + wikitext + text/x-wiki + #REDIRECT [[Lītne (kimejā)]] + muiq8odt5akl5b5qq01qqtx3vsogx70 + + + + Kategoreja:Suomeja + 14 + 3226 + + 31578 + 2016-09-04T17:01:11Z + + Patamaski + 3609 + + Jauna lapa: {{commons|Finland|Suomeja}} [[Kategoreja:Pasauļa vaļsteibys]] + wikitext + text/x-wiki + {{commons|Finland|Suomeja}} +[[Kategoreja:Pasauļa vaļsteibys]] + sizh0ki80jyc1sn0prxgd2l88c57hl6 + + + + Kategoreja:Ekvadors + 14 + 3227 + + 31579 + 2016-09-07T10:00:25Z + + Papuass + 219 + + Jauna lapa: {{commons|Ecuador|Ekvadors}} [[Kategoreja:Pasauļa vaļsteibys]] + wikitext + text/x-wiki + {{commons|Ecuador|Ekvadors}} +[[Kategoreja:Pasauļa vaļsteibys]] + nzfeighfe7tk6tbn1znjcfpgidxonwv + + + + Čilesu peso + 0 + 3229 + + 31586 + 2016-09-29T00:54:33Z + + 181.73.21.214 + + Jauna lapa: '''Čilesu peso''' ([[Spanīšu volūda|spanīšu]]: ''peso chileno'') irā [[Čile]] kūpeiguo naudys vīnine. [[Kategoreja:Čile]] + wikitext + text/x-wiki + '''Čilesu peso''' ([[Spanīšu volūda|spanīšu]]: ''peso chileno'') irā [[Čile]] kūpeiguo naudys vīnine. + +[[Kategoreja:Čile]] + iabwxchen4w288xvrrzidkkipi1ecoj + + + + Valparaiz + 0 + 3230 + + 31587 + 2016-09-29T00:59:49Z + + 181.73.21.214 + + Jauna lapa: [[Fails:Cerro Concepcion.jpg|thumb|Cerro Concepcion]] '''Valparaiz''' (spanīšu: ''Valparaíso'') — mīsts i komuna [[Čilē]], [[Valparaiza proviņcejis]] i [[Valparaiz apgabaļa]... + wikitext + text/x-wiki + [[Fails:Cerro Concepcion.jpg|thumb|Cerro Concepcion]] +'''Valparaiz''' (spanīšu: ''Valparaíso'') — mīsts i komuna [[Čilē]], [[Valparaiza proviņcejis]] i [[Valparaiz apgabaļa]] golvysmīsts. + +[[Kategoreja:Čile]] + 7e20ecywlodgqstqamfcswk0hq9697e + + + + Kastulīnis pogosts + 0 + 3231 + + + 31750 + 31609 + 2016-11-06T01:26:18Z + + Xqbot + 96 + + + Bot: Fixing double redirect to [[Kostulinis pogosts]] + wikitext + text/x-wiki + #REDIRECT [[Kostulinis pogosts]] + r3mwfnhka7jqrn12t0l66brb431j743 + + + + Kostulīnis pogosts + 0 + 3232 + + + 31614 + 2016-11-01T20:33:57Z + + Stiernīts + 2966 + + Stiernīts pārvietoja lapu [[Kostulīnis pogosts]] uz [[Kostulinis pogosts]]: Senejuo pasauka + wikitext + text/x-wiki + #REDIRECT [[Kostulinis pogosts]] + r3mwfnhka7jqrn12t0l66brb431j743 + + + + Vydsguļāni + 0 + 3233 + + 31856 + 31635 + 2017-01-10T21:41:25Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + [[Fails:Viduspoguļanka (Daugavpils location map).png|thumb|Vydsguļānu vīta [[Daugpiļs|Daugpilī]]]] + +'''Vydsguļāni''' (latvīšu: ''Viduspoguļanka'', krīvu: ''Средняя Погулянка'') — [[Daugpiļs]] mīsta daļa juo pūstumvokorūs. Tur rūbežu ar [[Paguļāni|Paguļānim]] (pūstumvokorūs), [[Vyzbuli|Vyzbulim]] (vokorūs), [[Azarmali (Daugpilī)|Azarmali]] (pūstumūs) i [[Raipole|Raipoli]] aba [[Raipole|Vacū parštatu]] (reitūs), taipoš ar [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Leiksnys pogosts|Leiksnys pogostu]] (pūstumūs). + +== Pasauka == +Vydsguļānu vuords vīnys saknis ar napatuoļ asūšūs [[Aužguļāni|Aužguļānu]] i [[Paguļāni|Paguļānu]] pasaukom. + +== Viesture == + +19 godusymta pādejuos godu desmitēs Vydsguļāni raistejuos kai vasarneicu sola leidza ar napatuoli asūšajim [[Paguļāni]]m. Natuoli nu Vydsguļānu beja nazcik myudu: Trikarta azarūs, Žygra azarā i Pluociņa azarā. Vydsguļānu dzeivuotuojim beja parūči dativēt da Paguļānu kurortam. Ar laiku vydsguļāni platejuos, cīšuok iz Raipolis pusi. Ļaudyskū dzeivi sūpluok asūšajūs Paguļānūs puorruove Pyrmī pasauļa vaidi, tys ītakuoja i Vydsguļānu dzeivi. + +20 godusymta 20-tajūs godūs iz vokoru nu Vydsguļānu beja ītaiseita Latvejis armejis vosorys siedeiba „Nometne” i [[Dzeļžaceļš Reiga — Daugpiļs|Daugpiļs-Reigys dzeļžaceļa linejis]] staceja ar taidu pošu pasauku. 30-tūs godu beiguos itamā vītā pastateja stacejis kuormu nu kūka i puorsauce par „Mežciems”. Itei staceja dareja vēļ i pa 20 godusymta ūtrajai pusei. Stacejis kuorms izaglobuojs pa šai dīnai. 30-tajūs godūs Vydsguļānūs nu jauna jēme apsadzeivuot vosoruotuoji, jim nu mīsta da šanei beja parūči sabraukuot ar viļcīni. + +Ūtrūs pasauļa vaidu laikā, 1941 gods nojabra mienesī sūpluok Vydsguļānu apleicīnē asūšuos nazkodejuos siedeibys „Nometne” fašisti nūsuove tykstūšom Daugpiļs žydu. Vāluok ite beja atdareits pīminieklis holokausta propuldynuotajim. Piec Ūtrūs pasauļa vaidu Vydsguļānūs jimtys stateit privatsātys: beja aizstateits rajons iz vyds siedeibys „Nometne” i Pluociņa azara, taipoš pa pūstumu tecīņam da Šyuņa azaram i Raipolei. Niule Vydsguļāni lelynojās vēļ cīšuok. + +[[Kategoreja:Daugpiļs]] + qy8dqijkcdp95y4cs8vi4etiqfvseiu + + + + Aužguļāni + 0 + 3234 + + 31651 + 31650 + 2016-11-02T19:17:34Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + '''Aužguļāni''' — sola [[Daugpiļs nūvods|Daugpiļs nūvoda]] [[Leiksnys pogosts|Leiksnys pogostā]]. + +== Pasauka == +Aužguļānu vuords (cielīs nu vacuokys formys ''*Augšguļāni'') irā vīnys saknis ar napatuoļ asūšūs [[Paguļāni|Paguļānu]] i [[Vydsguļāni|Vydsguļānu]] pasaukom. + + + +[[Kategoreja:Leiksnys pogosts]] +[[Kategoreja:Daugpiļs nūvoda solys]] +[[Kategoreja:Latvejis solys]] + qy3v8op9pni9m75lqiq9r6qxmzr37ge + + + + Paguļāni + 0 + 3235 + + 31756 + 31693 + 2016-11-06T11:59:02Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[Fails:Pogulyanka_sanatorium.jpg|thumb|Paguļānu kurortsāta pyrma 1914 gods]] +[[Fails:Mežciems_(Daugavpils_location_map).png|thumb|Paguļānu vīta [[Daugpiļs|Daugpilī]]]] +'''Paguļāni''' (latvīšu: ''Mežciems'', krīvu: ''Погулянка'') — [[Daugpiļs]] mīsta daļa juos pūstumvokorūs. Izalikaliejuse [[Daugova|Daugovys]] lobajā molā pi mīsta rūbeža, 7&nbsp;km nu centra. +Paguļānūs irā vaļstiskuos zeimeibys kuļturys pīminieklis — 1883 godā stateituo kurortsāta. Nazkodejuo kurorta teritorejā guļdz dabeigs mineraliudiņa olūteņš. + +== Pasaukys == +Paguļānu vuords vīnys saknis ar napatuoļ asūšūs [[Aužguļāni|Aužguļānu]] i [[Vydsguļāni|Vydsguļānu]] pasaukom. + +Krīvyskajā i puoliskajā sasazynuošonā Paguļānu vuords beja puorgrīzts par ''Pogulianka'' (''Погулянка''). Nu tīnis lejslatvīšu volūdā īguoja „Poguļanka“, i tai Latvejis īstatis solys oficialai sauce da 1937 godam, kod K. Uļmana režima īdzeivynuotuos vīnaiduošonys politikys īspaidā Paguļānu oficialai puorsauce par „Mežciems“. Itū pasauku latvīšu volūdā lītoj pa šai dīnai. + +== Viesture == +Da 1927 godam Paguļāni beja izslyvušuo grafa Pļatera-Ziberga sovums. + +XIX gs. pādejuos godu desmitēs Daugpiļs tierdzuoni jēme randavuot nu Ziberga zemis pluotus i stateitīs Paguļānūs vasarneicys. Augūt vosoruotuoju mīsteņam, grafs Zibergs sasprīde Paguļānūs pastateit baļneologiskū sanatoreju, jei atsadareja 1883 gods vosorā. Dzeideibys dyuni jēme nu [[Trejkuortu azari|Trejkuortu azaru]]. 1915 godā Paguļānūs beja 117 vasarneicu, kurortsāta, špitalis i lels parks. Pyrmū pasauļa vaidu laikā sola panycynuota, sagrauduotys ap 57 vasarneicys, apmaituotys dzeideibys īstatis, parūceibys. +1925 godā Paguļānim daškierts bīzai dzeivojamys vītys (solys) statuss. + +1927 godā Paguļānu kurortsāta beja nacionalizāta i nu Pļatera-Ziberga sovuma puorguoja akciju sabīdreibys „Līksna” sovumā. 1929 godā a/s „Līksna” atjaunynuoja Paguļānu kurortsātu i atdareja jamā sanatoreju. 1935 godā Paguļānūs saskaiteitys 92 vasarneicys, 306 dzeivuotuoji. 1937 godā, īdzeivynojūt tūlaik Latvejā i Europā modeigū kuļturys vīnaiduošonys politiku, K. Uļmana vaļdeiba sasprīde Paguļānu oficialai puorsaukt par „Mežciems“. 1938 godā sanatoreju atpierka Latvejis kreditu banks par 250 tyuktūšu latu i paplatynuoja jai pīdarūšū zemis pluotu da 356 gektaru, īslādzūt jimā pīcus azarus. + +Piec Ūtrūs pasauļa vaidu, 1946 godā, Paguļānus daškeire Daugpilei. Sanatoreja beja atjaunynuota 1946 godā i dareja da 1993 godam. Pa Latvejis vaļdeibys riedejumam 1995 g. juļa 31 dīnā jei nu vaļstiskuo sovuma beja atdūta iz privatizacejis i jū nūpierka Daugpiļs SIA „Guron”. Niule kuorms stuov tukšs. + +Paguļānūs dzeivuojs vysuzeimeiguokais latgaļu viesturnīks Boleslavs Brežgo. + +[[Kategoreja:Daugpiļs]] + i8uaj94ba8y63u9ne2ytemd2l8m7vnz + + + + Poļarrots + 0 + 3236 + + 31697 + 31696 + 2016-11-04T22:49:33Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[File:World map with polar circles.svg|thumb|300px|Pūstumu i dīnavydu poļarratu rūbeži iz [[Zemis]] kartys izkluotiņa]] +[[Fails: Arctic_circle.svg|thumb|Pūstumu poļarrats]] +'''Poļarrots''' (anglīšu: ''polar circle'', latvīšu: ''polārais loks'', krīvu: ''полярный круг'') – [[paraleļs]] sevkurā nu [[planeta|planetys]] [[pusrutļs|pusrutuļu]], aiz kuruo iz [[geografiskais poļs| geografisku poļa]] pusi irā taida teritoreja, kur koč div reizis par godu nanūteik dīnnakts gaišuo i tymsuo laika meitovys. Apgabaļūs aiz poļarrota saule koč vinu reizi zīm naizlāc (t. i., nasabeidz poļaruo nakts) i koč vinu reizi vosor nanūsalaiž (t. i., nasabeidz poļaruo dīna). Kū tyvuok da poļam, tū poļaruo nakts i poļaruo dīna garuoka. + +Planeta var turēt div poļarrotus. Jūs vīta pīdar nu planetys grīsšonuos [[ass]] styurīņa leluma pret [[ekliptika|ekliptiku]]. + +==Zemis poļarroti== + +Zemis poļarrotu geografiskuos koordinatys (plotums): +* '''[[Pūstumu poļarrots]]''' 66° 33′ 38" pūstumu plotuma + +Pūstumu poļarrots īt caur [[Krīveja|Krīveju]], [[Aļaska|Aļasku]] ([[ASV]]), [[Kanada|Kanadu]], [[Greņlandeja|Grenlaņdeju]] (Daneja , [[Suomeja|Suomeju]], [[Norvegeja|Norvegeju]], [[Zvīdreja|Zvīdreju]], i cīši mozu jiursolu pa pūstumu pusei nu [[Islaņdeja|Islaņdejis]]. + +* '''[[Dīnavydu poļarrots]]''' 66° 33′ 38" dīnavydu plotuma +Dīnavydu poļarrots īt caur [[Antarktida|Antarktidu]]. + 7lve09euqv071v08nh0onad6l6gwqg4 + + + + Vytrūps + 0 + 3237 + + 31758 + 31729 + 2016-11-06T15:46:32Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + [[Fails:Grays Anatomy image1219.gif|thumb|RIGHT|<center>Veirīša vytrūps</center>]] +'''Vytrūps''' ({{Vol-la|Truncus}}, {{Vol-en|torso, trunk}}, {{Vol-lv|rumpis}}, {{Vol-ru|туловище}}) — cylvāka voi dzeivinīka auguma vydyskuo (nu [[biologeja|biologejis]] redzīņa) daļa, kuramā naīīt [[golva]], [[koklys]], [[lūceklis|lūcekli]] i (dzeivīnīku gadīnī) [[aste]]. + +== Vytrūpa dalis == +Vytrūps sasadola iz četru daļu: +* [[Kryuteždūbs]] (latiņu ''Thorax'') +* [[Vādars]] (latiņu ''Abdomen'') +* [[Mugora]] (latiņu ''Dorsum'') +* [[Bļūdkauli]] (latiņu ''Pelvis'') + +Lelumam ļaužu vydtrūpa vysušauruokuo daļa irā [[jūzmiņs]]. + + +[[Kategoreja:Anatomeja]] +[[Kategoreja:Zoologeja]] + 2jlps4uto6ngqsuwulb5nd470c6uujs + + + + Jūzmiņs + 0 + 3238 + + 31757 + 31755 + 2016-11-06T15:45:31Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + [[Fails:Obesity-waist circumference.svg|thumb|<center>Cylvāka jūzmiņs</center>]] +'''Jūzmiņs''' ({{Vol-en|waist}}, {{Vol-lv|viduklis}}, {{Vol-ru|талия}}) — cylvāka [[vādars|vādara]] daļa iz vyds [[kryuteždūbs|kryuteždūba]] i [[bļūdkauli|bļūdkauļu]]. Lelumam ļaužu jūzmiņs irā [[vytrūps|vytrūpa]] vysušauruokuo daļa. + +[[Sīvīts]] jūzmiņs parostai šauruoks kai [[veirīts|veirīša]], bez tuo, sīvītem jūzmiņa vīta parostai 2—3 cm augšuok [[pupona|puponys]]. Veirīšu vydā byun leluokys izškireibys: vīnim jūzmiņs augšuok, a cytim — zamuok puponys. Sīvītem jūzmiņs cik nacik plotuoks na veirīšim, vysa pyrma deļtuo, ka sīvītem plotuoki bļūdkauli. Kab jūzmiņs izavārtu tīvuoks, daudzejis sīvīts [[XVIII godusymts|XVIII]] i [[XIX godusymts|XIX]] godusymtūs nosuoja [[korsets|korsetus]] i [[korsažs|korsažus]]. + +Jūzmiņa i [[gūrņs|gūrņu]] samāru saprūt kai jūzmiņa apleikmāru, saleidzynojūt ar gūrņu apleikmāru (apjamūt ūksta muskuļu vysuleluokū opolumu). Deļ veseliška auguma lobs jūzmiņa i gūrnu samārs skaituos <1,0 veirīšim i <0,85 sīvītem. + +[[Kategoreja:Anatomeja]] + oy64q048psc0qj42i3bwzsn7kbefkgu + + + + Sīvīts + 0 + 3239 + + 31715 + 31714 + 2016-11-05T09:16:12Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + [[Fails:Collage_of_famous_women.jpg|thumb|thumb|400px|<center>Kurys nakurys nu pasaulī vysucīšuok izslyvušūs sīvīšu</center>]] +'''Sīvīts'''  (anglīšu ''woman'', latvīšu ''sieviete'', krīvu ''женщина'') – [[Cylvāks|cylvāku]] (''Homo sapiens'' ) škirys sīviškuos kuortys pīstuove. Termins ''sīvīte'' zeimoj saaugušu cylvāku, cikom ''meitine'' – sīviškuos kuortys bārnu. Folklorā i runysvolūdā sīvīts sauc taipat i par ''sīvu, buobu''. + +[[Kategoreja:Medicina]] + go374neishprmayah7wy8oea1vtckuw + + + + Puļvierņs + 0 + 3240 + + 31748 + 31745 + 2016-11-05T15:41:37Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Puļvierņs +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd = 55 | latm = 53 | lats = 37 | latNS = N +| longd = 26 | longm = 33 | longs = 26 | longEW = E +| nūvods = Daugpiļs|Daugpiļs mīsts +| pluots = 0,008 +| pošlelais_garums = +| vydyskuo_dzilīne = +| pošleluo_dzilīne = +| vydums = +| augstums = +| iztece = +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = +| dzeivojamys_vītys = Daugpiļs +| cytys pasaukys = +}} +'''Puļvierņs''' ({{Vol-lv|Porohovas ezers}}, {{Vol-ru|Пороховка, Порохня}}) — beznūteciejuma azars [[Daugpiļs]] mīsta pūstumu pusē, [[Kimeja|Kimejis]] mīstadaļā. Ap azaru ītaiseits [[Puļvierņa parks]], nu juo pusis azarmalē īriedeits [[myuds]]. + +Puļvierņs pa mozam aizaug. XX gs. 60-tūs godu beiguos — 70-tūs godu suokuos Puļvierni beja paradzāts izteireit, pyrma tuo atsyucūt iudini. Deļ tuo pi puļvierņa beja pastateiti vareigi [[syuktivs|syuktivi]], dorūši bez nūstuojis. Izsyuktū iudini lēja sūpluok asūšajā mežā. Raudzejums beja nalūbeigs, Puļvierņa iudiņa [[leidzīņs]] zamuoks natyka. Nu jauna azara leidzīni jēmēs pazamynot XIX godusymtā, itūreiz tys īsadeve, dūmuotīs deļ jaunstateituo [[iudiņjimtiva]]. Puļvierņa leidzīņs niule pasazamynuojs. + +[[Kategoreja:Latgolys azari]] +[[Kategoreja:Daugpiļs]] + kcoqj9en4y9kble5uz34msere3t9e6v + + + + Puļvierņa parks + 0 + 3241 + + 31731 + 2016-11-05T13:28:19Z + + Stiernīts + 2966 + + Jauna lapa: '''Puļvierņa parks''' ({{Vol-lv|Porohovas parks}}, {{Vol-ru|Парк возле Пороховки}}) — parks [[Daugpiļs]] mīsta [[pūstumi|pūstumu]] pusē, [[Kimeja|Kimejis]]... + wikitext + text/x-wiki + '''Puļvierņa parks''' ({{Vol-lv|Porohovas parks}}, {{Vol-ru|Парк возле Пороховки}}) — parks [[Daugpiļs]] mīsta [[pūstumi|pūstumu]] pusē, [[Kimeja|Kimejis]] mīstadaļā apleik [[Puļvierņs|Puļvierņa]] azaram. Vierīniska vīta ar vacim sādynuojumim. Azarmalē īriedeits [[myuds]], parkā bārnu kaitu laukumeņš. 2016 godā suokta parka rekonstrukceja. + trpgdui8pprqr1cibkoeet7p93wa2ht + + + + Gubaiņs + 0 + 3242 + + 31742 + 31741 + 2016-11-05T14:22:49Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + +{{Infoskreine Latvejis azars +| pasauka = Gubaiņs +| atvaiga_pasauka = Gubi%C5%A1%C4%8Des_ezers.jpg +| atvaiga_aprakstejums = +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd = 55 | latm = 53 | lats = 15 | latNS = N +| longd = 26 | longm = 33 | longs = 38 | longEW = E +| nūvods = Daugpiļs|Daugpiļs mīsts +| pluots = 18,5 +| pošlelais_garums = +| vydyskuo_dzilīne = 3 +| pošleluo_dzilīne = +| vydums = +| augstums = 109,9 +| iztece = +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = +| dzeivojamys_vītys = Daugpiļs +| cytys pasaukys = +}} +'''Gubaiņs''' ({{Vol-lv|Gubiščes ezers, Gubainis}}, {{Vol-ru|Губище}}) — beznūteciejuma azars [[Daugpiļs]] mīsta pūstumu pusē, sūpluok [[Jaunstate|Jaunstatis]] i [[Kimeja|Kimejis]] mīstadaļu. Sasadora nu diveju storu: vokoru storys pluots 14,0 ha, pošleluo dzilīne 2 m; reitu storys pluots 4,5 ha, pošleluo dzilīne 1 m. Obejis storys saškir kanals. Gubaiņa vokoru daļā div azarsolys, kuru kūpeigais pluots 3,8 ha. Dybyns dyuņojs, molys lāvys. Azarmalē ītaiseits nazcik [[myuds|myudu]]. + +Iz Gubaiņa pūstumu molys pastateits daudzistuoviņu rajons [[Kimeja]], iz dīnavydreitu molys pa lelumam mozstuovinis dzeivojamuos sātys. Iz Gubaiņa reitu azarmalis Daugpiļs ļutaru kopi. + + +[[Kategoreja:Latgolys azari]] +[[Kategoreja:Daugpiļs]] + 65vubbpy2hjdal0qaehj16h3ztkqndp + + + + Pluociņs + 0 + 3243 + + 31817 + 31814 + 2016-12-09T09:36:26Z + + Stemoc + 2500 + + Revert to the revision prior to revision 31814 dated 2016-12-09 09:03:09 by 150.241.162.243 using [[:en:Wikipedia:Tools/Navigation_popups|popups]] + wikitext + text/x-wiki + {{Infoskreine Latvejis azars +| pasauka = Pluociņs +| atvaiga_pasauka = +| atvaiga_aprakstejums = +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd = 55 | latm = 54 | lats = 53 | latNS = N +| longd = 26 | longm = 29 | longs = 54 | longEW = E +| nūvods = Daugpiļs|Daugpiļs mīsts +| pluots = 0,053 +| pošlelais_garums = +| vydyskuo_dzilīne = +| pošleluo_dzilīne = 5 +| vydums = +| augstums = +| iztece = +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = +| dzeivojamys_vītys = Daugpiļs +| cytys pasaukys = +}} +'''Pluociņs''' ({{Vol-lv|Platinkas ezers, Plotičku ezers}}, {{Vol-ru|Плотичка}}) — nūteciejuma azars [[Daugpiļs]] mīsta pūstumreitu pusē, [[Vydsguļāni|Vydsguļānu]] mīstadaļā. Nu azara iztak [[Šyuneica]], tuoļuok takūša da [[Šyuņs|Šyuņam]]. Azarmalē nazcik [[myuds|myudu]]. + +[[Kategoreja:Latgolys azari]] +[[Kategoreja:Daugpiļs]] + e7gqgsj49lk3xhlc1tqtss85lgi1mba + + + + Šyuņs + 0 + 3245 + + 31777 + 31775 + 2016-11-24T00:19:17Z + + Stiernīts + 2966 + + wikitext + text/x-wiki + +{{Infoskreine Latvejis azars +| pasauka = Šyuņs +| atvaiga_pasauka = Озеро Шуню.jpg +| atvaiga_aprakstejums = +| zemislopa = Latveja <!-- Var damāruot ari cytys --> +| pushpin_label_position = right<!-- azarim, kas irā tyvai pi lobuo rama --> +| latd = 55 | latm = 54 | lats = 2 | latNS = N +| longd = 26 | longm = 30 | longs = 28 | longEW = E +| nūvods = Daugpiļs|Daugpiļs mīsts +| pluots = 74,6 +| pošlelais_garums = +| vydyskuo_dzilīne = 3,7 +| pošleluo_dzilīne = +| vydums = +| augstums = 92,0 +| iztece = [[Šyuneica]] +| satecis_baseins = +| baseina_vaļsteibys = [[Latveja]] +| azarsolys = +| dzeivojamys_vītys = Daugpiļs +| cytys pasaukys = +}} + +'''Šyuņs''' ({{Vol-lv|Šūņu ezers, Šuņezers}}, {{Vol-ru|Шуня, Шунька}}) – valeims skaidriudiņa puorteciejuma azars [[Daugpiļs]] mīstā, juo pūstumu daļā. Ap Šyuni itaidys mīstadalis: iz pūstumim – [[Vydsguļāni]], iz reitim – [[Raipole]], iz dīnavydim – [[Daugpiļs styprūtne|Styprūtne]]. Azarmalis lāvys, šļaupys, dybyns smiļkšuots, dyuņuots (dyuņu kluoška bīzums 0,2—2,0 m). Šyunī vīna 0,2 ha lela azarsola. Ītak [[Malnupe (Šyuņa dataka)|Malnupe]] (takūšuo nu [[Adateņa (azars)|Adatenis]] azara), iztak [[Šyuneica]] (takūšuo da Daugovai). Šyunī dzeivoj kugre, rauda, leiņs, leidaka, asars, brekss. Iz pūstumreitu azarmalis myuds. + +[[Kategoreja:Daugpiļs azari]] +[[Kategoreja:Latgolys azari]] + bdqko0p9d7tnff18kde2v17dsqg870z + + + + Zemnīka Taisneiba + 0 + 3246 + + 31846 + 31776 + 2016-12-22T19:45:18Z + + Stiernīts + 2966 + + + wikitext + text/x-wiki + '''''Zemnīka Taisneiba''''' – 1862–1863 godu zamgreidys tuoļuokizdavums latgaļu volūdā, drukavuots Vilekī. Ite beja zemnīkim guoduota saukumu iz buntim sereja, kurei formēja ļaudyskū redzīni. Partū jei īskaitoma par latgaļu laikraksteibys prīškaudzi, varama līta – par pyrmū laikrokstu latgaļu volūdā. + jjuxvf676om43l96ohdv6b0sfb4v5jq + + + + Ferdinand Marcos + 0 + 3249 + + 31859 + 2017-01-12T07:14:28Z + + Pitpisit + 3697 + + Izveidots, tulkojot lapu "[[:th:Special:Redirect/revision/6798523|เฟอร์ดินานด์ มาร์กอส]]" + wikitext + text/x-wiki + [[Fails:Ferdinand_Marcos_Senate.jpg|thumb]] +'''Ferdinand Emmanuel Edralin Marcos '''politiks, 10. [[Philippines]] Saškierstū Vaļsteibu prezidents. + 0dpd5s2otus8drns6ws9b0ex5414jpg + + + + Stellenbosch University Satellite + 0 + 3250 + + + 31872 + 2017-01-20T00:12:59Z + + Rubbish computer + 3264 + + Pāradresē uz [[SUNSAT]] + wikitext + text/x-wiki + #redirect [[SUNSAT]] + bh0yt2u08a3bp7aplyhk7a63szf9t3e + + + + Portugal + 0 + 3251 + + + 31876 + 2017-01-29T00:05:43Z + + Mr. Fulano + 3757 + + Pāradresē uz [[Portugaleja]] + wikitext + text/x-wiki + #REDIRECT [[Portugaleja]] + gzdxtojcfk8hki2f45b6qgv42hfrmak + + + + Kategoreja:Portugaleja + 14 + 3252 + + 31878 + 2017-01-29T00:11:06Z + + Mr. Fulano + 3757 + + Jauna lapa: [[Category:Pasauļa vaļsteibys]] + wikitext + text/x-wiki + [[Category:Pasauļa vaļsteibys]] + qs939wgh4m0vhh0e7j2ec6gssctdi0a + + + + Animalia + 0 + 3256 + + + 31883 + 2017-02-01T14:08:37Z + + Mr. Fulano + 3757 + + Pāradresē uz [[Dzeivinīki]] + wikitext + text/x-wiki + #REDIRECT [[Dzeivinīki]] + g48gd85qk0bmvbtzbi0ppgjmfl7gjqu + + + + Plantae + 0 + 3257 + + + 31884 + 2017-02-01T14:09:57Z + + Mr. Fulano + 3757 + + Pāradresē uz [[Auguoji]] + wikitext + text/x-wiki + #REDIRECT [[Auguoji]] + 0wdfrtr8kl2azxeu387oqn6qtue4vwr + + + + Europys himnys + 0 + 3260 + + + 31924 + 2017-03-15T14:27:14Z + + Stiernīts + 2966 + + Stiernīts pārvietoja lapu [[Europys himnys]] uz [[Europys himna]]: Gram. pruov. + wikitext + text/x-wiki + #REDIRECT [[Europys himna]] + jswgysynlm8oy04k3b4q0ll9yl5258d + + + + Latgolys himnys + 0 + 3262 + + + 31929 + 2017-03-19T07:33:28Z + + Stiernīts + 2966 + + Stiernīts pārvietoja lapu [[Latgolys himnys]] uz [[Latgolys himna]]: Morfol. dasam. + wikitext + text/x-wiki + #REDIRECT [[Latgolys himna]] + j0d54fgh29zskb26942hhxeirrxfo81 + + + + Kim Il-sung + 0 + 3263 + + 31937 + 31936 + 2017-04-12T11:22:02Z + + Pitpisit + 3697 + + wikitext + text/x-wiki + [[Fails:Kim Il-sung 1984.jpg|thumb]] +'''Kim Il-Sung '''(1912-1994), Perezida wa 1 wa [[North Korea]].  + 4l6j29w2j0u86ozesw4213kcj5v3u6m + + + + Šiprage + 0 + 3264 + + 32134 + 32100 + 2017-08-19T06:27:33Z + + CommonsDelinker + 2750 + + Removing [[:c:File:Siprage-karta.jpg|Siprage-karta.jpg]], it has been deleted from Commons by [[:c:User:Ruthven|Ruthven]] because: per [[:c:Commons:Deletion requests/File:Siprage-karta.jpg|]]. + wikitext + text/x-wiki + [[File:Coat of arms of Bosnia and Herzegovina.svg|thumb|100px|]] +[[File:Location Bosnia-Herzegovina Europe.png|thumb|250px|]] +'''Šiprage''' (bosn., hor.: ''Šiprage''; serb.: ''Шипраге'') — steiba [[Bosneja i Hercegovina]], [[Europa|Europā]].<ref>http://www.kartabih.com/</ref><ref>Vojnogeografski institut, Ed. (1962): Šiprage (List karte 1:25.000, Izohipse na 10 m). Vojnogeografski institut, Beograd / Military Geographical Institute, Ed. (1962): Šiprage (map sheet 1: 25.000, Contour lines at 10 m). Military Geographical Institute, Belgrade.</ref> + +== Klimats == +{| border="1" cellpadding="4" cellspacing="0" class="toccolours" 0.5em solid #999; 100% +|- style="text-align:center;" +|style="background:pink|[[File:Lunar libration with phase2.gif|thumb|150px|]] +|style="background:#dfd; "|'''Ø t°'''<br/> (°C) +| style="background:pink|'''Min. t°''' <br>(°C) +| style="background:#dfd; "|'''Max. t°'''<br>(°C) +| style="background:pink| '''↓↓↓''' <br/>(mm) +|-style="text-align:center;" +| style="background:lightblue| '''I''' +| –1,7 +| –4,8 +|1,4 +|59 +|-style="text-align:center;" +| style="background:lightblue|'''II''' +|0,3 +| –3,6 +|4,2 +|63 +|-style="text-align:center;" +|'''style="background: bgcolor="#F5DEB3" |'''III''' +|4,6 +| –0,1 +|9,3 +|59 +|-style="text-align:center;" +| style="background:#ddffdd;fff3;''|'''IV''' +|9,1 +|3,9 +|14,3 +|74 +|-style="text-align:center;" +| style="background:lightgreen|'''V''' +|13,6 +|8,1 +|19,2 +|90 +|-style="text-align:center;" +| style="background:lightgreen|'''VI''' +|17,2 +|11,5 +|22,9 +|99 +|-style="text-align:center;" +| style="background:pink|'''VII''' +|18,9 +|12,6 +|25,3 +|81 +|-style="text-align:center;" +| style="background:red|'''VIII''' +|18,4 +|11,9 +|24,9 +|76 +|-style="text-align:center;" +| style="background:#dfd;"|'''IX''' +|14,7 +|8,6 +|20,9 +|71 +|-style="text-align:center;" +|'''style="background: bgcolor="#F5DEB3" |'''X''' +|9,5 +|4,7 +|14,4 +|79 +|-style="text-align:center;" +|'''style="background: bgcolor="#C2B280" |'''XI''' +|4,4 +|1,0 +|7,8 +|100 +|-style="text-align:center;" +| style="background:lightblue|'''XII''' +|0,1 +|–2,7 +|3,0 +|88 +|}<ref>https://en.climate-data.org/location/905786/</ref> + +== Iedzīvotāju == +[[File:Grafika.png|thumb|left|500x300px|Iedzīvotāju: 1961-2013]] + +== Politika == + +== Atvaigi == +<gallery widths="300px" heights="200px"> +|Plano (18,42 x 14,2 m) Basílica romana, 5. século +|Um dos dois últimos stećak, 12. século +</gallery> + +== Nūruodis i olūti == +{{nūruodis}} + +== Verīs taipoš == +{{Commonscat|Šiprage}} + +* [http://opstinakotorvaros.com/] +* [http://www.maplandia.com/bosnia-and-herzegovina/republika-srpska/siprage/ Maplandia] +* [http://www.satellitecitymaps.com/europe-map/bosnia-and-herzegovina-map/federation-of-bosnia-and-herzegovina-map/%C5%A1iprage-map/] +* [http://www.distancesfrom.com/distance-from-Siprage-to-Banja-Luka-Bosna-i-Hercegovina/DistanceHistory/5243320.aspx] +* [http://www.maplandia.com/bosnia-and-herzegovina/republika-srpska/siprage/ Maplandia] +* [http://www.satellitecitymaps.com/europe-map/bosnia-and-herzegovina-map/federation-of-bosnia-and-herzegovina-map/%C5%A1iprage-map/] +* [http://www.distancesfrom.com/distance-from-Siprage-to-Banja-Luka-Bosna-i-Hercegovina/DistanceHistory/5243320.aspx] +* [http://www.udaljenosti.com/bosna/- Distances in B&H] + + +[[Kategoreja:Bosneja i Hercegovina]] + 61iacj9n6mr9uevu62lin1ogj3vduga + + + + Kūkles + 0 + 3265 + + 31954 + 31953 + 2017-04-25T20:59:42Z + + Turaids + 172 + + + wikitext + text/x-wiki + [[Fails:Pastmarka_kokle.jpg|200px|thumb|right|Latvejis posta 2014. goda postmarka, uz kurys paruodeitys 11-steigu Latgolys kūkles]] +[[Fails:Laima jansone 20150205.jpg|thumb|200px|right|Kūklātuoja Laima Jansone]] + +'''Kūkles''' ([[latvīšu volūda|latvīšu]]: ''kokles'') aba '''kūkle''' (''kokle'') irā vacs [[latvīši|latvīšu]] steigu [[mūzikys instruments]] ar radneigim instrumentim [[Baļtejis jiura]]s dīnavydaustrumu apleicīnē — lītaunīku kankliem ''(kanklės)'', igauņu kanneli ''(kannel)'', lībīšu kāndlu, sūmu kanteli ''(kantel)'' i krīvu gusļim (гу́сли). Kūklem irā diveji veidi — Latgolys aba „lelās” kūkles ar 7—11 steiguom (vysbīžuok 9) i „spuornu” — kūklys korpusa pagarinūjomu piec tapeņu linejis — i Kūrzemys aba „mozās” kūkles ar 5—7 steiguom.<ref>Vaļds Muktupuovuls (1999). „[http://webcache.googleusercontent.com/search?q=cache:o1Mp9A3Tq-0J:www3.acadlib.lv/greydoc/Muktupavela_disertacija/disertacija.doc Latvīšu mūzikys instrumentu sistemātika]” (latvīšu volūdā). Latvejis Muokslas augstskūlu asociaceja. 96.—97. lpp. Viereits: 2017. goda 25. aprili</ref> + +Nu 2003. goda par gūdu pazeistomojam latgaļu kūkļu meistaram Donatam Vucynam bīdreiba „Latgaļu sāta” kotru godu [[Dekšuoru pogosts|Dekšuoru pogosta]] „Madžuļūs” reikū kūklātuoju saītu, kur īsarūd kūklātuoji i kūkļu entuziasti nu vysys [[Latveja|Latvejis]].<ref>„[http://www.lakuga.lv/2012/09/18/kur-koklatuojs-ti-breivs-gors-atsaviersona-iz-ix-kuklatuoju-saitu-latgola/ Kur kūklātuojs, tī breivs gors. Atsavieršona iz IX Kūklātuoju saītu Latgolā]” (2012. goda 22. februars). [[Latgalīšu Kulturys Gazeta]] (LaKuGa). Veireits: 2017. goda 25. aprili</ref><ref>„[http://www.lakuga.lv/2013/10/02/atsaverut-iz-x-kuklatuoju-saitu/ Atsaverūt iz X kūklātuoju saītu]” (2013. goda 2. oktobris). [[Latgalīšu Kulturys Gazeta]] (LaKuGa). Veireits: 2017. goda 25. aprili</ref> + +== Tautysdzīsmuos == + +{| +| +Mallns kraukļeits lìpâ séd,<br /> +Zelta kùkļes rùceņâ.<br /> +Pavaìcòju uz kraukļeiti:<br /> +Kur nùvede mun' mòseņu?<br /> +Ti nùvede tov' mòseņu<br /> +Par dziļim iudiņím,<br /> +Sermi zyrgi, raibi deči,<br /> +Paraksteitas kamaneņas.<br /> +13610-2 +| +Kam tòs kùkles skaiški skan<br /> +Myglútâ reiteņâ?<br /> +Skait', mameņ, sav' déleņus,<br /> +Vaj ji visi reiteņâ.<br /> +Visi ji, visi ji,<br /> +Pastaŗéša vín navá,<br /> +Pastaŗéts jeùreņâ<br /> +Boltu putu gobolâ.<br /> +30766-1 +| +Pìguļnìki savvaļnìki<br /> +Nùcàrt zaļu ùzuļeņu;<br /> +Nu çeļmeņa kùkles škéļe,<br /> +Nu zareņa stabuļeitis.<br /> +30189-2 +| +|} + +== Nūruodis == +{{commonscat|Kokles|Kūkles}} +{{nūruodis}} + +{{Nadabeigts rakstīņs}} + +[[Kategoreja:Mūzikys instrumenti]] + m3msbgaxxt45hjkvhtl76rgpqwo3nxw + + + + Kokles + 0 + 3266 + + + 31945 + 2017-04-25T17:51:45Z + + Turaids + 172 + + Pāradresē uz [[Kūkles]] + wikitext + text/x-wiki + #REDIRECT [[Kūkles]] + 0c9jjz1uej5o6ti6z3qsp14xoua6260 + + + + Kūkle + 0 + 3267 + + + 31946 + 2017-04-25T17:52:09Z + + Turaids + 172 + + Pāradresē uz [[Kūkles]] + wikitext + text/x-wiki + #REDIRECT [[Kūkles]] + 0c9jjz1uej5o6ti6z3qsp14xoua6260 + + + + Kokle + 0 + 3268 + + + 31947 + 2017-04-25T17:52:28Z + + Turaids + 172 + + Pāradresē uz [[Kūkles]] + wikitext + text/x-wiki + #REDIRECT [[Kūkles]] + 0c9jjz1uej5o6ti6z3qsp14xoua6260 + + + + Kategoreja:Bosneja i Hercegovina + 14 + 3271 + + 31969 + 2017-05-03T17:49:39Z + + Mr. Fulano + 3757 + + Jauna lapa: [[Kategoreja:Europa]] + wikitext + text/x-wiki + [[Kategoreja:Europa]] + 8m0ki1wsi4o1n83rrfepvwownifwadq + + + + Kategoreja:User zh + 14 + 3274 + + 32000 + 2017-06-14T19:59:05Z + + 217.182.132.6 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir ķīniešu valodas zināšanas. + 5wqb4xcfi6uyu3rzib3co1hgipm5ko2 + + + + Kategoreja:User pt + 14 + 3275 + + 32001 + 2017-06-14T21:01:00Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir portugāļu valodas zināšanas. + ihz2bt6xmujqygil096jl65ani9r3zb + + + + Kategoreja:User ca + 14 + 3276 + + 32002 + 2017-06-14T21:01:00Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir katalāņu valodas zināšanas. + gavwfmdnzd76gxktgc2qfotyjkgc7r3 + + + + Kategoreja:User gl + 14 + 3277 + + 32003 + 2017-06-14T21:01:00Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir galisiešu valodas zināšanas. + f3rxzfcwiyat4vdtqk4tj2rrsxwtcn2 + + + + Kategoreja:User mwl + 14 + 3278 + + 32004 + 2017-06-14T21:01:00Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir mirandiešu valodas zināšanas. + k2nlysp522f8h85dxkr0a23q4rr60br + + + + Kategoreja:User an + 14 + 3279 + + 32005 + 2017-06-14T21:01:00Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir aragoniešu valodas zināšanas. + 2unamadvt396i7bnfhdtf660swiqah8 + + + + Kategoreja:User oc + 14 + 3280 + + 32006 + 2017-06-14T21:01:00Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir oksitāņu valodas zināšanas. + mxik303tu934qa7nd6g5yz1h2e47h5s + + + + Kategoreja:User la + 14 + 3282 + + 32013 + 2017-06-16T04:45:42Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir latīņu valodas zināšanas. + afglkboeen58m98zn3rh0gamodm7uep + + + + Kategoreja:User grc + 14 + 3283 + + 32014 + 2017-06-16T04:45:42Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir sengrieķu valodas zināšanas. + 5r7veev2n6voe8bzh69oes2su6f1y75 + + + + Kategoreja:User el + 14 + 3284 + + 32015 + 2017-06-16T04:45:42Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir grieķu valodas zināšanas. + cxlq59guedo7fhe9b144fjyao0wa32o + + + + Kategoreja:User eo + 14 + 3285 + + 32016 + 2017-06-16T04:45:42Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir esperanto valodas zināšanas. + r51z8jy2t1zwt21df11wo41lunxqett + + + + Kategoreja:User zh-Hans + 14 + 3286 + + 32017 + 2017-06-16T08:18:01Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir ķīniešu vienkāršotā valodas zināšanas. + shxo875bil3ycqc072v7ooq7uv6vqbf + + + + Kategoreja:User zh-Hant + 14 + 3287 + + 32018 + 2017-06-16T08:18:01Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir ķīniešu tradicionālā valodas zināšanas. + t75azyqew9fqnzx5uib9ucn3mpcw6ix + + + + Kategoreja:User vep + 14 + 3288 + + 32019 + 2017-06-16T10:50:53Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir Veps valodas zināšanas. + smyu8h291m7uifuc1k66ixvcci6kxi8 + + + + Kategoreja:User id + 14 + 3289 + + 32020 + 2017-06-16T19:28:34Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir indonēziešu valodas zināšanas. + seo6q40t8ykiofign3fyhhyrfom8kgw + + + + Kategoreja:User or + 14 + 3290 + + 32023 + 2017-06-17T23:23:41Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir oriju valodas zināšanas. + e7czzpujerjualt363qkmc7h7anrdmx + + + + Kategoreja:User pi + 14 + 3291 + + 32024 + 2017-06-17T23:23:41Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir pāli valodas zināšanas. + egta2k3nti6lelvu9fo43e25dn6y936 + + + + Kategoreja:User kn + 14 + 3292 + + 32025 + 2017-06-17T23:23:41Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir kannadu valodas zināšanas. + posej75219zuuyqdwr3ycerukh5vqt3 + + + + Kategoreja:User ko + 14 + 3293 + + 32027 + 2017-06-18T22:57:34Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir korejiešu valodas zināšanas. + mo8vspsc326z9o89drd45ewwsg7q7z7 + + + + Kategoreja:User de-AT + 14 + 3294 + + 32028 + 2017-06-18T23:49:46Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir Austrijas vācu valodas zināšanas. + 3fxduymyva4nwlkzij6h2wrkz8jf7i8 + + + + Kategoreja:User sv + 14 + 3295 + + 32029 + 2017-06-19T00:24:33Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir zviedru valodas zināšanas. + f8d3pi4qj38h2hlqdysqyyns8iy7ueq + + + + Kategoreja:User no + 14 + 3296 + + 32030 + 2017-06-19T00:24:33Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir norvēģu valodas zināšanas. + hpjqrjr4z4frd9fghki6ra2vxrm129u + + + + Kategoreja:User nn + 14 + 3297 + + 32031 + 2017-06-19T00:24:33Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir jaunnorvēģu valodas zināšanas. + by59qo9qimtoxlsma6woyqpjmkm7vf2 + + + + Kategoreja:User da + 14 + 3298 + + 32032 + 2017-06-19T00:24:33Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir dāņu valodas zināšanas. + j5fi2xrak5ot471um5cl5z488m3t3f1 + + + + Kategoreja:User nds + 14 + 3299 + + 32033 + 2017-06-19T00:24:33Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir lejasvācu valodas zināšanas. + 27890bhqlbe6afn47nr9rpcdvf6pwps + + + + Kategoreja:User yue + 14 + 3300 + + 32034 + 2017-06-19T00:26:47Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir kantoniešu valodas zināšanas. + dq3s2m6f35kxazlofqwlendvrhba8jx + + + + Kategoreja:User li + 14 + 3301 + + 32035 + 2017-06-19T00:29:50Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir limburgiešu valodas zināšanas. + 00weg90tgi0ecarjqu77y54enk8jsyx + + + + Kategoreja:User af + 14 + 3302 + + 32036 + 2017-06-19T00:29:50Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir afrikandu valodas zināšanas. + br44dl03j4c7oi13ze6xikkr51w8unx + + + + Kategoreja:User lzh + 14 + 3303 + + 32037 + 2017-06-19T01:04:50Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir Literary Chinese valodas zināšanas. + tqwlcgswp4bk8jp58i2mcw47ppc1dbd + + + + Kategoreja:User kk + 14 + 3304 + + 32038 + 2017-06-19T01:06:18Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir kazahu valodas zināšanas. + g50ifbdi8pec1b8jggc1lb0ozjjdlgt + + + + Kategoreja:User hu + 14 + 3305 + + 32048 + 2017-06-20T17:05:24Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir ungāru valodas zināšanas. + 6duna743dait6ykgndw9xwfznm8axcf + + + + Kategoreja:User mg + 14 + 3306 + + 32049 + 2017-06-20T18:33:58Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir malagasu valodas zināšanas. + 8x6ey5uub5n5nwpumw9z5dpcdcgd14h + + + + Kategoreja:User ne + 14 + 3307 + + 32050 + 2017-06-21T00:40:55Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir nepāliešu valodas zināšanas. + te0bsm73tgfr43a3bpizt0mhxecxxhw + + + + Kategoreja:User hi + 14 + 3308 + + 32051 + 2017-06-21T00:40:55Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir hindi valodas zināšanas. + rrbjgqzrgkz1djjpflonjyds5gt57d6 + + + + Kategoreja:User bg + 14 + 3309 + + 32052 + 2017-06-21T03:55:38Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir bulgāru valodas zināšanas. + 5par3e9rd64xlq7bb3f562wh577cr29 + + + + Kategoreja:User bs + 14 + 3310 + + 32053 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir bosniešu valodas zināšanas. + i24f3haaozlsc3za568nidggxdzyn26 + + + + Kategoreja:User csb + 14 + 3311 + + 32054 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir kašubu valodas zināšanas. + 3y1o04cr4n51zg37swr8mmu4vhsk7qp + + + + Kategoreja:User dsb + 14 + 3312 + + 32055 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir lejassorbu valodas zināšanas. + 81mjl8i6ksb0ja8eppmvmkfyswxtt1r + + + + Kategoreja:User hsb + 14 + 3313 + + 32056 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir augšsorbu valodas zināšanas. + 63ldxxdol9k6pfe61t2oxy8q7af9qel + + + + Kategoreja:User kg + 14 + 3314 + + 32057 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir kongu valodas zināšanas. + 94rlkij6lokmbjmc07h5sdeok1iv7bi + + + + Kategoreja:User ro + 14 + 3315 + + 32058 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir rumāņu valodas zināšanas. + fzuutt2bli8ck18578a0lm21oq7sxoa + + + + Kategoreja:User sc + 14 + 3316 + + 32059 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir sardīniešu valodas zināšanas. + 86k2jdovroiiwfcm203qs0oatsxxj1s + + + + Kategoreja:User sh + 14 + 3317 + + 32060 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir serbu–horvātu valodas zināšanas. + s3yoan2yiecqa88vv48gssls4y2xub5 + + + + Kategoreja:User sk + 14 + 3318 + + 32061 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir slovāku valodas zināšanas. + dte5fi3x4fgxc9m76tzwqpnq1tml5da + + + + Kategoreja:User sr + 14 + 3319 + + 32062 + 2017-06-21T03:55:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir serbu valodas zināšanas. + ljqa93itr8vtev713kfqvr8na81ocgy + + + + Kategoreja:User is + 14 + 3320 + + 32064 + 2017-06-21T06:29:29Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir islandiešu valodas zināšanas. + ajdb3xup5rw6vj4awey3bhdvk2l1ozw + + + + Kategoreja:User ab + 14 + 3321 + + 32065 + 2017-06-21T06:29:59Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir abhāzu valodas zināšanas. + jt5jxkm3thtq1rh88nvprjsvr6px1w5 + + + + Kategoreja:User rn + 14 + 3322 + + 32066 + 2017-06-21T06:29:59Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir rundu valodas zināšanas. + 61trz50idneufi6r3vym5972l49mste + + + + Kategoreja:User nb + 14 + 3323 + + 32067 + 2017-06-21T06:30:33Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir norvēģu bukmols valodas zināšanas. + 8giyff23qoxfoao9x5yydab3j8cga2l + + + + Kategoreja:User ka + 14 + 3324 + + 32068 + 2017-06-21T06:30:33Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir gruzīnu valodas zināšanas. + f08ipi2gh68xpr0nnkj5ox711gx85sy + + + + Kategoreja:User ast + 14 + 3325 + + 32069 + 2017-06-21T06:31:11Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir astūriešu valodas zināšanas. + ev7ibkuvouy60sldbbdtlz4nh5c0nck + + + + Kategoreja:User bn + 14 + 3326 + + 32070 + 2017-06-21T06:31:18Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir bengāļu valodas zināšanas. + c8f7m3inbplfgtwbmo0lu1851c3g30e + + + + Kategoreja:User sco + 14 + 3327 + + 32071 + 2017-06-21T06:31:34Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir skotu valodas zināšanas. + 0eqxpp7ayexs6hskb6ql3ze5ignyd87 + + + + Kategoreja:User pih + 14 + 3328 + + 32072 + 2017-06-21T06:31:34Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir Norfuk / Pitkern valodas zināšanas. + 9rpd6kci60p5vgpry5ox9ejhvxqtr3n + + + + Kategoreja:User nov + 14 + 3329 + + 32073 + 2017-06-21T06:31:35Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir Novial valodas zināšanas. + mann1x67ltc06717tkb6mcn0esf50rb + + + + Kategoreja:User eu + 14 + 3330 + + 32074 + 2017-06-21T06:31:39Z + + Babel AutoCreate + 3921 + + Automatiski kategorejis „[[Project:Bābele|Bābele]]“ puslopys sataiseišona. + wikitext + text/x-wiki + Lietotāji šajā kategorijā ir norādījuši ka tiem ir basku valodas zināšanas. + b125fmo0yag7b2hl7mzpqhikghd23t1 + + + + Klaipiedas Universitets + 0 + 3331 + + 32080 + 32079 + 2017-06-24T02:05:35Z + + EmausBot + 103 + + + Bot: Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:Q178200]] + wikitext + text/x-wiki + [[Image:KUVI.jpg|thumb|right|270px|Klaipiedas Universitets]] + +'''Klaipiedas Universitets''' aba '''KU''' - ([[Lītaunīku volūda|lt.]] - ''Klaipėdos universitetas'', žem. - ''Klaipiedas onėversitets'') - [[Lītova|Lītovys]], [[Klaipieda]]s mīste. Īstateits 1991 g. + +[[Kategoreja:Vuiceiba]] + 94mi4xaorxr8dxpqku6l5nmqj4t3hlp + + + + Bangkoka masu ātrais transports + 0 + 3332 + + 32129 + 32128 + 2017-08-04T10:45:28Z + + DARIO SEVERI + 3389 + + Visual + wikitext + text/x-wiki + '''Metropolitan Rapid Transit''' vai '''MRT''' ir [[ātrā tranzīta]] sistēma, kas apkalpo [[Bangkoka Metropolitan Region]] [[Taizeme]]. 2004. gada sākumā tika atvērta otrā Bangkokas sabiedriskā transporta sistēma, bet [[MRT zilā līnija | zilā līnija]] starp [[Hua Lamphong MRT stacija | Hua Lamphong]] un [[Bang Sue MRT stacija | Bang Sue] [MRT Purple Line] [MRT Purple Line]] tika atvērts 2016. gada augustā. MRT vada Bangkok Expressway un Metro Public Company Limited (BEM) saskaņā ar koncesiju, ko piešķīrusi [Taizemes masu ātrā tranzīta iestāde] (turpmāk tekstā - "MRTA") Kopā ar [[BTS Skytrain]] un [[Suvarnabhumi lidostas dzelzceļa līnijas lidostu dzelzceļa līnijas]] MRT ir daļa no Bangkokas [[dzelzceļa transporta pārvadājumi Bangkokā dzelzceļa transporta infrastruktūrā]]. + +Katru dienu MRT apkalpo vairāk nekā 240 000 pasažieru. + +== Vēsture == +[[Fails:HuayKwangstation.jpg|thumb|right|Ieeja Bangkokas metro sistēmas Huay Kwang stacijai]] + +MRT tika konstruēts koncesijas koncepcijas ietvaros. Attiecībā uz pirmo MRT līniju, kas oficiāli pazīstama kā "Chaloem Ratchamongkhon" vai neoficiāli kā "Zilā līnija", lielāko daļu civilās infrastruktūras nodrošināja valdības sektors Taizemes masu ātro tranzīta iestāde ("MRTA" ) Un nodotas to koncesionāram saskaņā ar 25 gadu koncesijas līgumu. [[Bangkoka automaģistrāle un Metro Public Company Limited]] (BEM) bija vienīgā privātā sektora kompānija, kas uzvarēja MRTA koncesijas līgumā par zilo līniju. Kā MRTA koncesionārs, BEM metro projektam nodrošina M & E iekārtas, ieskaitot elektriskos vilcienus, signalizācijas sistēmas, SCADA, komunikāciju, PSD un citus pakalpojumus, un pilnībā izmanto sistēmu. Lai uzturētu sistēmu, BEM 10 gadu laikā ir slēgusi līgumu Siemens, kas bija M & E sistēmas piegādātājs kopš sistēmas atvēršanas un 7 gadu uzturēšanas līguma par diviem vietējiem tehniskās apkopes pakalpojumiem ziemeļu un dienvidu līnijām. + +Pirmās Bangkokas metro līnijas, kas oficiāli pazīstama kā "Chaloem Ratchamongkhon" (Thai สาย เฉลิม รัช มงคล), celtniecība. "Svinības Royal Auspice" & ndash; Vai neoficiāli kā "Zilā līnija", sākās 1996. gada 19. novembrī. Projekts vairākkārt kavēja ne tikai [[1997. gada Āzijas finanšu krīze | 1997. gada ekonomiskā krīze]], bet arī sarežģītu civilu inženiertehnisko darbu dēļ, kas saistīti ar masveida pazemes Struktūras, kas dziļi iesakņojusies augsnē, uz kuras ir uzbūvēta pilsēta. + +== Operācijas == +[[Fails:Hua Lampong MRT station.jpg|thumb|left|Platformu ekrāns durvīm visās stacijās]] + +Ņemot vērā to, ka Bangkoka ir plūdu mazs leņķis, visas metro stacijas ieejas tiek paceltas apmēram par vienu metru virs zemes un ir aprīkotas ar iebūvētiem slūžiem, lai izvairītos no ūdens pieplūdes sistēmā. Lifts un rampas atrodamas visās stacijās, nodrošinot vieglu piekļuvi pasažieriem ratiņkrēslos. Stacijās ir vairākas ejas (parasti četras), kas ļauj pasažieriem pieslēgties pie jebkuras blakus esošās virsmas krustojuma stūra. Starp izeju kanāliem ir ļoti plašs, un daži sāk atvērt kā centrus. Kartes, kas attēlo vietējo teritoriju un izejas punktus, ir izvietotas uz sienas izejas virzienā. + +Drošības apsvērumu dēļ ir uzstādītas [[platformas ekrāna durvis]]. Visās platformās ir vienota drošības personāla un drošības kameras. Šobrīd tiek izmantoti 19 auto [[Siemens Modular Metro]] tipa trīsriteņu metro vilcieni. Katrs metro vilciens sastāv no diviem automašīnām un centrālās piekabes automašīnām. + +==Paplašināšanas plāni== +[[Fails:Under construction MRT Blue Line viaduct.jpg|thumb|center|Zilās līnijas pagarinājums tiek būvēts]] + +Ir piedāvāti dažādi Metro paplašināšanas plāni. Plānots, ka galu galā kombinētais maršruta attālums no metro tikai 91 & nbsp; km ar 3 metro līnijām, kas aptver visas galvenās Bangkoka zonas. Zilā līnija, kad tā ir pilnīgi izlaista, veidos [[Lariat cilpas lariat formas cilpa]], kas aptver pilsētu. + +Saskaņā ar BMCL gada pārskatu peļņas gūšana no darbības joprojām ir tālu, un BMCL joprojām subsidē galvenais akcionārs, kas ir CH Karnchang. + 6mu10wynim18pf32m4nrdl2f0gf0ivh + + + \ No newline at end of file diff --git a/tests/smallwiki-latest-pages-articles.xml.bz2 b/tests/smallwiki-latest-pages-articles.xml.bz2 deleted file mode 100644 index 7dae0ab92de597d303c3cad773788ae350325bb7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 692467 zcmV)9K*hg8T4*^jL0KkKS(Q}%qyglRfB*mg{{?&h|Np=L|N6iG|Nnpg|NsC0|Noyk z_vmpBzyM>u-g-W7Ut285P#x=RZFC2D)f~_i9kbbB3eagejlK2q1GR1SeF3`UzFs*a z<=)=)AdG zJHWloX`aVy7FMMVI?tzF=e+lybM7PqU7K%byVsMp+aCM4_c^}Qz0P#y+o*51MSEP@`e!?vme?StpW`r5~}K29FkD(R8$X6-e*wsWrQ z>$`7N-0a~y!a*0hcJ}5A(TXeF20OfN-LmMrcU`XP-Oqamv0m(5Z+E-red@Pu<9+uY zwuiRiw$3v;+`JR5bD@p(x*j~wOYgqp>#9!o-j>_lyL)+H=RW!mUCnQ|y(sKz3Q%l7 zn$@<|vkTgDy`^Qt}fJ?(VwdvTz9zP)?zzMiW2+PUxm00+ju|n07tk`O}o3r*!tO$&UdRVYKodDkR)l=5JUD59kr`~-Hw$A9AGfvzb2i>`}neN?_w*!qR?w;Je?z(Zs zz}h+vN7!Q#{UxyT^Oo^zTrS5HcTKZq4r3 zz1D|p4tIU+-r|N^X#fDl_k2FH$It)(pa1{>1Ok)Yfsg{06HiSr$Ft4-No(TJLbO1(@gi@cXun_T=%cLY~s6Q zM!Y`txo^Eip6Tw6IxkKh&%H)F%=&uWHzI(pdeZd!Fr!Vkm)_KTkCD`;fX7|2$kLBP zt#`OP-$npE+1)5CX`33-(#55$ODc}OfLI-FmF{|$6W3UCu6Bhk#}|4 zsd2YWbi>!ze5>n1Nz=Ow!CLJ!8ywGieP`Y5<==D3dM8hhUgt->_q;y6nf9#m>yghJ zZ0_UlJ?8rj1=gw$ZMICH9SdOA`#w1L(H-~8=Y4_p&1o0Q;i)}q9`<`9ZQaXY_a3Ns z9Fa$M9Z($#_iCyK7}9y`#rHKyyENP|=+>z2o!wH?Nzl|$wzF&RhaUE)&@^e+b`M^g zT6>+IS*>iGV^>VqInTPciPtXoXzZOgUB=z2hP~Om?ULPuCGWo@fpcIm4( zu69%9UCJLj0P5cD&o$cUw^hMIpbpv4(A-<^le#17vr<|2G|zW>?C*KfR|bjJ>Ar8a z=o;4JwXW%>mOjs&_h^+aye9VezH5Db?dh8}JkI%NshKupG&s#Wxtc4745G6|UiY2r zP*jng+1putvK)`40)k&W@4aW<_t-ke$Pl zdCs@bj_c>z-67Yu)wVCYh^Kw>z2M;<`|rEfV8`B0_un6PzUKF{0X838`{?@So3}*0 z9X-2uy}bL}I;-!yrd@dPV?H|xE)lFMG;4Od-){|@-(#M*aQhv*0K3Jc>_M-4kG^Oh zXSa3i$1N(Yx_584c5If-YfXb&Gv0TvcYTYGm&e;KJBkNvD{b4Z`rh{^XdSz)cEr%` zy@2BOJ#|)Xz%BqDk6iJ`c^Av?D)wxKZCh(V9nNz^xi>=EG|S%J`F+;a^x@TFwAQkW z*3o@RxiZs8d)|3g-*dI!PkrYG^V^K|*(;5oKyLea?G(uKj^NL2wY=wc4GqY1IuK__0D$dkgna^vd^yaDEam-;^ne~whaKt?0Mg7bZ=mNeFROIHoIhRUYnxN zvz5~Av^QAGY^eHfE88G;Vcx^dd!|q`w_Mv7UA9+V?REAyeIIvt_@PYgz%O}$MN{u> zp3uE6iGDbol!^<3NQZP#+$ zi<^R9ecXNbh=upf?emr6n7+T{BCds21VuJ>bm;q)H)#R^s9 z8u~uId*^rCSB4q9o1jLn_Z}yn{ zy}h-2wX-_Ao^3XZ*zWDh_HldNb=L1X*kpMJmVh+q>Ch;2B7F~c+pf={ihJA(s-1Xy z$XfC0jq6Vtz3i)dNWLEWmItuv=@#13Q8e=}pBOYC5C8 zo`Y!`DVZ@t!A71G^wipzo}sdX)HazQ0001Crhq{RK!AZTjQ|JhA_xcw024p~G5`?J6F`_v5vCJV{EbgQ z(J@a4RmA)7N zg1CKDX#mxBjaIZIJ!+uT3Q^YpEG;Gul8FWoLKCf^@g%T81E#@Z(iFH=rlk6_AKM`Q z$bp@*KE*N!BX-B`8z#gmK3A~86+`+h+gf^500;$T6cYA{*ShBKLd>d0T;97sgw?Ma@ znj!)`BBT(twF*;4XiS!<(AE`%SgOPXbNu21H7_lC&yRmKx5@k>`M=^ijR~S)e>HLe zGs}EFHIaeKnhv}5!hvyQuEKc`{FAU2)l@+giV^{%y0E4}A*uk9Ddi;5tf>Rvj zK31!VxZw@RR)ah}Vmug1IBywC0M=xhXl5wWG(kq00g#S}5Uk^-@&QctF^dDWqs;=Qxuo8zEQ`(R;GGy&(yZfF29t(MyTVGSuvrdu zW;|OtWHz5F7|Dq$ZD?eQ;EOQm=L*dK0Z@k@zn3DWax}DUL~=}Z#hXu?w;9B>N&=@~G?j!8Jh_*zt{T+aTYuoDFCrsZJ;^Ep z$g_R0@$Ox3cB4EsR0PZM;aawB#bD~n_02kdjh;C`(*Q|dESZ#qI_6;-jkSEKb#%rp zi!qR?93{sW3~~TwWUN{-IvC|(eiY5amuIa%+16;<#jIN3!j4OSIsIdRAI2mAulcv{ z#KgIteP&`JD%`mYiZJ(2aMolBB#MW~`54KOuw?t@LlO#_11?ltaU`L^vYZHsDKMej zFewwDB{ojcJHS;>M!tNNDk`!f2Y~*+f1v+Bob%Hwx}B-;N2}ZA{$G8ObYi@%qu3wj z1pkuFy^E&IJy?zoch=gDfA}eWKD56)GF~Pr6#;%+vADH9Ib>eqtId7eQ zFWmebZIAYfdjxVWW;EL?0}fAq&wtCpbt1%6M5!nJ7>6tpM5y99!_Bql3jCnJtoCJwaU1FKY4$qV`*$*SL$L#FZqz{;g4iJ7i-7?e z!pCZ>1ac+0&;qalD&0oPT=@y4-%4J1JXzDYdjjI*L_#cP@{8yjI@;IjXu zLjeK@@JC+F=A+LWBy=L84t_gq`|#cZCWHTjk7jVin@3^^;o_7WG&^T5xP=UqXd6wR zEsZ{t==b0a#_TwwPgp_UT(K=Kgi>p8x5ERc`_GUnTQ)84>1vvkdautABONk0lMPJaf}BP;ylOIxxWP*( zN+=BqnPC6gj6=S*)&`O|+A~XNC|4Stvss}EhFcDH$v4)^mSc=ni8RnIW_?J$ZrRSoktW_6ieZTSkUVcw^2To}! zTY6g3n2H#y{M<&Uz7S)G09kDn>AjZ!3Y46)zc<+ep@56#7BQPj3`Mj_Ld zwiMx8?Iq<8Due_G0}>Ds7l)yrW_4Ap6*ksrwkq<|&T#ieABl#CkjYUbQVdphI)_{* zEKr;CUGv(?*wryuUkJQ!zofgq(p4ft(gBIp{v z6QXB=#n?D>?$x0$<(#&~YZ?a%P)P!l(#fVR0zoB2_EM%cFuH-53Dp#26ci*uFBnKL zL=^;7L1L^}A`1jhMpjMQ@kvLEWD{fxkV2wK5I@Gkr1eQZn^%sD%wWF6Dk{mdav0 z7+}b9kf^g593D5AzpY*0W( z0)qtq`~2rLCp1o!8~Nc-1}p`!8_O(DOVkaVjd=G;Jb;SP#G9n5R))rE>CUG= zT`}Lw734Z%x`vNbCs|_Qx{aoUrW*`|$NZS0Cj=n*mxx|_*mYqd5~LuGPIw5L>z^-Q zC0}K*ET?N=$wf8l9yqy0y)rhH7uL~}FYNA~N{SK&uo+zd*9VE{QhRTXvezl6P+>;F z66zY5FeDBhIJge%!l^h9o9sAPa@GbDcwln)_SB7#YH;8&0f%h3aoEv4y6!s(8VoX+ zK*E7;%aArUqa`e9VA0vxGLskv_BgO3It`+Plaf3$2I%sPoc0}Sqr+MbC2gmG>9Q9+ z=>|rJLPY_WI;a#lU1SfB&` zL;%UvP@U(ogBBv@Jnu783Hi4`QSMZLVMoCEEBh48U=x;cg8s6ezK}G!`57M5kNV$U z0bcy~d*&QZOS!V4dInK5TuuGKa)Zh6dNU;Vy^`^miG3-ZPNo>0Xj`l^s$4L9wZN_5Enf+u;IDw9ww%n z-`?q6!<4}hWJT)hk0-mLdU$W2lQ*;$5Yq;#j#FmKY1hY&0y+q3MScF|(`ZG8)$Aac z+=OK9ZwVJ^^O6#1&K=(lb~JOJc?+_GNTibJNb51g4EuM~KWSDr!kFUGE2*aJglmZ< zY`|@LFML~QW9e@M+1uaG)zeO;6o{l2M>^MNanh72UD9(Q$VUDULo5NPq>==OHTnDf zN3P3B@NT!NRhx^f6GD{TUes1gD;MvthAXP=+g1Bt{;58TqKo~YM(U^10 z(lY?bkTxZl7h3+y4D)gN!r^Pc-SzqNRIf1*r&a!ZvU3zW=52 z+poe8KThYF@ajhEQ&<}3nNGZL+cX|V|B_F4OF-gNw31)rJZghmbJ2v9XR&Aj}jVEpBI z|0kzE6VZj$LC~ThK-5oMx#FQTNKK9~x|Bs>D`eIUz>k@v2L3IZy5O4NJ0wgIpC;YE zr5@pQP7n-YJK&6pGvVLWh6$?|+Tn$y@fjDAQ}zn$3}_GS0v4?$0_!Qm6jpogweDU) zt!y0_9TXwfad2^4gpiM^L8egCjolk6vjDQ0&*vTs{t15ON3Xf4*gOozq*p*?iaAlk|1` zQAM6G2@RmIBmzZY1mqF|fT-|-xyzCtc4~l5N+`y*MF|jOOGAySwV|Y3?q%oK?0gkO zMHC{eMn#B=Kj$Cqj|A)a?d%4qz%j!%bKIlh$x3e34kMFN2^1EjWI_lcMwz(3#*r-- zYR;F-JX}REWb`9o!(e|ux;$&$@}b^-9aivM9yWR%^vA9Mcr&S(svU zj@kA3^e|VTXZLr+ID!OJQ6Fk@oQ98!>GJxx4amc#Ra9+>9+M!Ah7cMefnd-&z_O7831vX`L@6B-;FLCEv@InP1VR!Du@PC8s}WY% zHiW_x?P%95~^FzL1(4J$%#hD}kk|j=o_2MvLj1Fr(+g z@~}b9&1wF;hejD-;x@z&#dHUu^|7XYfgoWR5CVWgZ@d=woMv3}{O;F&%n{k>{!3$p9QKb)XAN&XY|T9co*x72+4d1nq= zoO>uBsK>diF}&1a4oBz8w#Iqa_&PbZ(`b#}`6W4Gj+93lDhQBGji$#vKJ8D{;z{Q< zD8lm}<6!#+p`tK@$;gQF3gcSbrZZWV+i_L+Z_s|*jJ?e5nM#1MI9+2Dp{B>(5fA*< z_*GPJpxe4UiawG1w@q z*Z-5b2m>o+i6kV1XH(OIT`q~-?wYx@)N4l}Qb@fV3Ra9uMvu0zfQ-DlI(b^?W-JOd z|1MMpbEJU|jZj-4iIg(Hak0jR*NX!L1(puOb}x%Ve_9@@j1^M~RYe-qO4X&Ph=^D= zB`pP26k@8eMFd4!T2Z#KqN`P-7$XsFu^5P|jkOf8r9zFPR8>o>xcI5di1&Qfaq#(0nZSr zn2X5Zn+%T4#GZMDwRovZ`jOJckhqB{`$vF!MfJmg02xe^KOw2(m# zE#NU!8bKDQ(TBZ)zdh~Q;_%h9;pn+l7{14-9CDTHhQxCa$XSssiS$z~iq7klpj+)1}+e}G5Wo;T5!*>I0zN(w@c)}CWjvm%G z&!Lhu$VO{ul+Chr>6iVTx&gL7RFSQ|fAp*oOeStosYMF@9>W&5SKR8r6g;PVUw+XL zrg*>NglG4b5#ck6l%*^C>mK~p2C*&|{l7P32SBW%GJ~c6P6Yq(ui8*l+YK>NLCzoN zcx8o;Bw>XT8ayHc7nFo4VIz>2LSu z1{L`pkIxzlH2k22KkEL4;}JtaBhlc7@=iwD-d3A{?jF4M>kg?hc4*uK`~q9kMfv>ZdxNBlp%Pw{G0(_hJGeqTF)vy?xvpW=HX;D=h&L?&AW0|!zJ z&4v{3Z~aq$f`5tS3*aJpN7gu}a-o>Rf`NZ$+?5)?^2m)izdL z)?mObSp8c%GlxvpoRoZ%9?T4tZ6SIj8X(AnB8jxWfq@J@b}wTR71))_xa7Z1pFTdk zB0BvC=KNQIzr{^Ym&^gwYxW1eSpepxdh9>DW>*@F#9xdz`)}>GcDGfClnsMsE?8Np z`J%Z(I=*R}K2P@G16=jauRZM6+&1fJ-JE>3dyp0e*W)7JgowItsymBSjUU;I7o~GtCM>Fe;JYtP2FdK0h#5=%n zm|T7t|J>yNyZ>@Mi5cW~{K?0j)A$0Rko;61;W!-u`y@OUka&26n#CGQYU5I~R=f7eukpc85j?`{M(f*o7W zPssI~z3hKTLsbGmfDD0|gA42J>m7X^GntZ%cAp%Ljf5%xbK(!eMVqX9hwcf-JLTV{ z(2R@#ImFA2z705lwFuY>2jAp?r;$HU?A1HcqSUY3qC!Qek_R#QysjaS;zT|bqL444 z{cF~uDZ9SPzb?;hp2#nu9b+1zQ&5g{0Og(j6NOn|>$VZgJX15}*HZQWC!ETe{~S1k zx)@VtB=(y)PVyb%h*H4zX?)CzWz)MBf}Og=i;v8TWhxlVr%N^DXvbhK+isgl9zvO`~<3h{N47#a$pG^m3P zOl`k7^AbCdIEoFCj5iuB%~D+j9~n>?)Hj-ia1>goTrw$4Rc<4IPz~Ky3b5rFpDxWP zD;I;=(*aSQ##px9HD<@=^hcJ@fWrbxd!sx>pX)&Z{C^%i`vln@YoGO_G9dhK-sxmZ zG%oul&e_NPTsfo)O5vH;J(cDzh_z)|{2Qcc9A#ZkJxf?^uSE)|Kn6l0Shp%QIEwJu zRXoz1YDFyz#h|*2-z&*cmM8-`L{5!5x7@_>|u!xT9XrL%60UV+olijF1nh_uzb%l!5CO0gHxJL*&>(lts5eN z9<;Qko-*x@$>*w+3yelW>FAQA3KATN5`kKztYE$TDEzN3(eYSXv=6tI{Eh zd@Cs9a_7nt(ZzoG4k{YGePl#lnUTUjqrbuwZkDb9U^!6ufZZ#)pe>CMGH5}{`$cD$ zH#NyJHj60-JAjSUKoH74kMm>ft>B+w;GlV-h;Y@lOrYurxo=;sHPYp z*duiiUbd``+4S+Pa&;x(MeWDw1Rh2DRG>rvg9FbQlgL7=L8C#PR*~2xwv?njcIfLr z&)dj~XJ69@I;}}nVBaDI-kKI0TGOtOpdQg^2fX0G)d?%EoLIEVd>Ij#D8D0_@B1BZ z@445<>>|)N z1se7;A z`4D`2Gx@@LHSGkV6%L?&k-3a4@?qgN-Y$~5DczaQ(bZUmOdz4fVO~>_%IC@in{^4{ zRQKp;WA{(qQ#k{Fym>-jqOSFVJ)lwhSu`FYJNNECi{xNmRQLwwkZ1JXsXvc$as2Uw zhNLKDCozMB%_sCs2i;jUqSyiFWn_23|CE+WKB;#NQ?Qozdn36>H<=;Q_l6j@L4fIL zFxzBmxXMWFx8R^=RTX1ke3|XOdxUZ2<0k2?NIR9)d5oc}Ha$Am(`_)a{_XE0^$;DS zM-2*Wy?lc(&hYF}Vp5R26@K(vfzpxe=f381s3itZYDLliDS<2)BDw`K%A*}pVaa*u zqrqf;>cWSmp#tJ^tp^!`eRVcEw74!fx2_=x)Oy~=Rr0iX+_k?LT#sCFJ=)f<7I4>$ zme}l)4Ga?2V2tz8st`204pUx0PZ{n&N-;gO1yOG#1wx9;ogVAxIBUXfotSvI{RFR~(>Qpmg z6@j{HZVQ<7y%nvou25~s?T)C1p!TpbG=0NdA596N=>=4+TP#%6QltiyS5oyeSEeQd zfMEpjAMMn=2{9=W{1>r(&f^T8RUCZ>^7+^wPw8@}f45 zhR&oB;~5gjQeZWa!~{Nkruq8cH)#JJt7PefL+fDW z^v-E<(o6C3W8~n~YdBKdv9?WVrU6s}AQTq4(*`7wXr8(46HF_jxD;~poi_PURZncX z&_o~|&L_0~AD`gQ{U5!k(oaGE4(!byDcS=(9UHc#im)oU|I!I>4M>EdCyu|i?l>_V z>c5h1WGN;|P*<`1G`HcuyczDw&Op%fk3+LFjOAW%oNq&|?XEtk{d#dWCc1HwPkkRL znT$Lz^}kX{7bfUQ$cCTdFodQ%5CO^;QfUY<12fWwZs^3e=Lh(|>VB`$`2V5(->3Tj zyZOJp&*uH#*!n*|?R~%6|6li|%QM`dp@=dp2z{(T#{#@wBmv^`7mMx}0Lz6%aI6gZ z8QKLC#5BoWaJ7Oz{kd zpbYhgi**b(Xx%W_Fxob3*fot}?ZWRZSnAWCFhH3Skw|;dV{kG64w0(S)dxXWRDuoz0-G9+=7OZ|-TbKb1nSd4+p> zI`!@9x-vB}CLrMuOhiOP5c9_VeC&JI)&9@z1Ne#$_1o^1Kczw`(L#mDzlrr1L-1%4;}h@tvFK^IA8b1|m*c%0*zDj&C-^=!u6 z2pL{tU2&dLJCBc~`Obhp>Doa9rA{GU^W)H3M5nTWqB=1FWMSXTgoMr+;V72 z$1LAQxiR!bRDXKE8U;(dr9PS?4ywcDYkmUhH<^6F7A?2?M)LgGXw}d>duw!&Otjkz z3VHks=lxqkJFyHgh}SqTcm@@zQ52qL*fF+*MgsEVm0{n^Yk;@?8Si)g%F{0 zF1aHP504?RtBw(76v)ZaWantPScM#BId9<}1mk_ne)uxTf@%_|au6JC07W9;s9s$+ z`u!EBd<#=^$&oWlNs}0MqgS$g0HmlOcmAXm7>3*w_B<78ycg_`0ge}~*Pi7IMnM`R zf0_pFeb65z;p@2cuHW7j)52b%=q(fj0*4C`0_O@EY-Sv=b&Rm;tF~9i|e47WNRvG?Hf?mxTu+$ESV-t@_@NmXSl~jSsMXMZdx*l<*;{G$vBk z&>k;KJQ{@7pd)=MMbs4q7{V-Mv0d`Hk7Vg0S%Ue}D=5WrA%LTeRy;^&p0-4=>3G!H zwxw(tYr#J9o*ebA!+n}SZ^vT>J}A$yFUMzD`PTqD(8>n_L;elS1w@2>2~Q|%@$5d` z=x)j*5zE0y7Mc@~pn}wN(2>XDkxDjZXjI1DhEjKL)CK>Egn+5=RBw(=G8wcJ z!F>;__2PZD{Qzw(fu?pufHisb+}mlY1Rxm}g(+-tZ&QXWm%)4D7rj;kSAV=r2Du+Z z2qdF8lg^Cik*AW?$?JLcneDhQ58TYn5TxlNYWBg)QZJxaHOa~mjA zXKhM$@Q)2VLUyN>ploDvng<@;>ZgKTCk=g2RcPL$-os>}{%sp3Sq%8o2=kpxFht^e zZ&CsU{Z8alT6gTW*>*OhZJbFKBgy$cCd-zMm1| zplA6jXoU<5ff&Vj7H$e&nq#oG-5jgDL{e~k>HtcwC1N2w2?-K*FzZ8+t@-P_eh6lj zod;t%@5@~KZ}zqt+Lo5ipz#?964>Ecpq3(@1V`zeYDXN1i}4QpKnpNuec)-23`flz z{#tZ>2e`FgHHsBFO2$l<-}eod{ErL|TO{xC5s(9;NK2HMMP=$*hxBEX#}8m+5nMG6 z5fuNj9wq&uXjoc>!C}YyAoRwv)UD9>m}Ntuv>3COZ?QrAz(I^-QjQ2~;De57)E?zT z76&z}QSvgK;q+*PkukN1ufrHfdjyw3uXRl*GT3MSVbW<`_rNo)X-3a;2R6jX@A6yU zvlE72FNVT)SUV*L9G3CtPnNs)(FJ%mhyY|C)?lML&k+nh2d}wB2LE%A_WeG7i_imh z0^J^|B+{^fQu&)lK3ZQqN0`J?GeOp-m3e1nBEpPAwFaVKnJz$BA6r`0yk8q6x={iY zvv5t6EXS%(0VORDR!28J^Bx2?CgO+gltwnlp&NzNS0OIvjc=A3qno21j;tBK%8|g? zgGkY>`?w6qUfiOsAgzrha}*ul<@HF`>FXTNaO=2d@U{5;cdY4syfco$J-Y#568%;M zENpMq#TS5&FM+`epE~8TUO#<(EEXO`9^>lx@2p<%5D51sfg?~Wo1z9Ku;F@EjxME2; zDlsO@yblD9PBw&)kYmQNlBhOylJ;y}Rp_xkvL z*65ASgrJ!Vsy$+UWzL&Fn!aZ6RG`b&Z-?B zvv43qU$>PFeLN2zqCcy$*L_|sXn~~6j0ANZy4yPSir*xOKUxW%g0`lJ(3>-@IOL&i zq{R%7;zxVXNi3GSWcaPYy>tzbl>-pU`JU!lYphgj>&D0lee@NEQ5x7p8~N{>l)#E0 zxTjGNXi~C_r*iF@YGCs=rpZX6KG6RMj=*t)i4nuST#aWvF6s;5psfw03WEuGT@TxA z*m&d zbVqB*{CV?1B1p#j{~t~;XmWoXV;YOU9i5rvBcN4LNgVf-(=4yO{X4z+9FFFOWmvj1 zg|6#uNJc&dp%imRBy_!nx^n5;pC%ukvngrL#gIb`f;O(+4m5;GJ^I^(ur zY_cmpgB4O(_Zekbub2k^ZDYmClrMNz!vrE0$BczsMtkzq_?*%)R6ybaA@RjZ^v zt#T*m$P{i;?PzI0s#hpH^Uf-O>X<)=U=#v`O&c%^5?K&}?ZRAVq7&5`rkxgGdGJ#p zE~XG`tXl|JZDoH_=WvE6O?IVa@(q!>2Sc;*YtVuj{t&D zV<#zw?9N3%f|!5K<=J4#GT5m9I38tx3YM%OTogb#Uerun{~_>TtjSMI|PmkZTMuy=SDiROvuNC-qkN05PC59UHzd`aA0$xA;Cr+0 z`QhMs$3C&2SRG3vIQ)&CTFcNOY%JK+#-T@TL~Xsr1J=g*%EFXOL>f!LVf)vQ;`ZO18$g{2<==+AW-nmJP!j z6VzO$ZCHV1K2@E%n$-))mL@eFJtl-BV|VU01II&F_jl(>6r) zK3((>`h)vo6-{4%t1s%OBiAUw_EA%pS&GAKCC6ZV1sROwGq-+K2Z5KrmKL+*Qx2un zBcoJ>yJiwXwKi_cnbWT6%*KNvKx9V2#ft?KWobOhuz@iZ;;lT@I~g3MDHufg{N|K{ zosX#>Xk!*WZTGRFD_o-;GunAoL5`5697}|h8~#R^22P<742PL~)_%&FUHGc;#HXW= zlL)vAob(A+A6+N}pQxyLxWmQ|5}IqNflZ$Jk|)z>Y34pN3?BXZ@2$iF#2P_+U>xA! z{GkY_85W_?*USXFWf99$T1ql0>t&1&XdB~|HMVHzd<2b=RE5Q@p`Up^v)1X-CZP+Z zKq}h+u&~k>a;5MMXp-zD5)90Sa76v44^${twj8XLe4|=)ql$i=tk=nOcL2iKY> zlGt|+ia_8F>8%rmhPovQQ!tA9g#{Cx6x0ly2tF$!D^2fbQVfGY3DkT9`TV&G;W9_I~5}2sB9U=he|vl#RaKb((RB<$ojOQzIcs>rC3daq#|= z_>FRA=;O=4Z-d|ANmHD9`l5T&Zg4}TzqebY{M`lnJ6iVZhVBm_(lIAp?zs5;zD`J%8*e%-wNHiX zYOy4IC3A1kGB^~CGI{-a8=hPXQ0U8*nrzgsIsLDJ$(ly?XPlhxalVGxEJS%4p>2~D zQMGkK<1mk0L;kzzdKhEXBEI$;i~+17N;PfqJe(%X7>AJ#mqz*_+{uTiPWgn=C)RM> zvesZy_ttF#{G*2m2TtxtP{Z#Mz`jJvCpAg}!Gip(QEA(!}Hes+yQLQ)nP1ZzjwS>%>7Gv<7zz1(sE%rEI>s zBa^+Z=534-6|!xSgN^gj0tN%;nZJ~+-56>wkRy?a2?sum(+2xYJ&j)S(8cq(>7G=v zg0F8Np_3Ls#)G67k~JvIzb~`J^7UH)NWQ5uhL8AU6E{q|OC)3-#9iRlfn6eNzlAYt zotli+AsN<;kn=FhC^2R7w_Ks)+e4x-kci|r4L?n5-hL(`wnGXj4$zax)h&Y4eUP}g zKP3->we8LkwZ7qRUcr9W-CyLGEJwYu->B|#SmqyP)Q&7LmMa@BW~t9k^O&=3AX6b6 zc`a-p83Rg;vevg60Pc>jD&QdTQQJEdVC1b8ndxH0s>w{}yCo-ow-aWheWX_lr~anVdZ~!?##=p*D9QXKhX|cRZV!nZ+tER6#9eNL!EcU$I-rMI2 zrttf+@xN{G;`Dvskc;Sg^z0B0%pg?}Scs~kqQzD$MPkUJBC4pcMO0X$6jmsr#9}In zDk88}(y>*Dpo|qokX4aH5m8h{iVCqvDypiHRxEAFpNT=-H$=HTFkU2>XwcYJG^Ds(qV8A0iM2<13ZyMUg)R z&*r+}ZYP;d&vzHtj$Qlh>wbJ9KXEJeH{0BYQ&l?q-7ssaoV#4#j!%8&X_82R|CoulyuRVyMg9?n9#e@J(?>zL@_IkkIbj-1y z-C>+Kn+})k!h30!kd5s(!JM7j!y=rV__A^~t@86`Zo4Tiy5m7vo5sx`)v6$X85>wG zN1gy`$2=sCi-NGvo=|hLXsK)9x2^k)vLcU_cgq0c{5bhzpGy(5G*=M5_m6U*c2yqY zJiCSXN~dZJ-b7whMpjs#2Kel*NiG`;dL>>(5LJ`N;98BKSXUSNz zfGDrkpMC}Vx%dH8DVRF(sm1kA!7*!Qd{#xaz}VYqsGf>uc$*(b!2KK<5Q;RRVnfz@ zC9PB#d{d#?ftwjA)(rWoxl)2~jK&F6Q(W(ugT0lbh)hXcA3Qyfe!efAZ#uDoE;x3i zX{cRx_x3wn4N)IMNdcb#GZIk;xafw5=3PV?U6AC)x%y%{ToiAW{XUUT+J_hu`%gXH zzDL)(CzEc$I@ zmv!=VCT0%dk4f6E&ilYea0$uSyXL8NkHrKvNOR}OB}RlYW8A(NQJ)%V4s+5l5cL!3 znf2;`d5cnmbtxec*?mkQ@cx4VsCMt!)14P>F-KB= zTMf8!cKe!rW3OE}!jN{qXVxkta6-;kqT_W6TfR4kuvV(!OgXo2vEa%B#b=T3 z#nq|dC~pKh_>;gv5P_{0ms+BM{J0b-(#j9mT9OBoD!8lX{u|_BLP7H&aAWFFqez=; zJh)$99W#n5K9|xmIKg^xVD@s&%goz1OxyA6P(c|6hUajNt>!;HLx;T zpQ94_SB8# z;>^p5oGD1gcr$F(jdQT2lVF3W&4nA;*KBIbM!65?`zU>Hqx7Fr*X-RN&&ZLQ<@z3d zo+^HMg8mdKsGlP3w;h@Hd3&?$wob2iU;WPCHP@couTqSH%n1z)WV8a~A&H@o4KklF zi;w)Bocy)T`MSDm+x5KOD1JPM0AJH_04y==F)BVNA?*?PNFI2AUpg=p@8Y(J>x_@m znu3utsbUbBM7KGqU?Wny&5yJi~zOiGrW#~SKo2zTk5T~d_l-hC>a>&aDX=I=Am-T{$>2-Ff_iZX$Y7SM`3 zXWX!(Dz?7|>ipH}MaFjRmBmw->a`t@-7Dm}Wn6D;;xW2`3O^=zu_J<%d|$=gCx4Z6 z>OJZtl-3v#rwYY1ae=0v;@%;P>EqyQa{e1Lz3R?_prJ;QyYyi`yd!I6;DjuW@Ap8UZ2?N}#a< zzVWkI@zdkM^U=NkdA251e9;z%W`+<%OgH1NWA|pG+dVocH#vTdpA@~AL!NvSALi<8 z>Ia7~#E#-v+W(>LBhaAyIOd(Z)}|DKezUQM+{P4uqFXxf*8&@-yZ8|Th*(4UEunw1 z06|o~z#+&fr^I=W^NbzS$bd0A!8fK_ZC>!)$pcKnOo^h9d2N9-{xZNK-LU>+wb#b?{TlZ$C!nb(E)S+&k6tGIz`FQE zSKVe+QL=&yD5{vNMcIog%KBe5+vMYHdfGcAGKePpt_alb@CZf>RISmzg0Agr4C*Vm zdXZ6;`kDy8G_Q9MJ3ci3<}{x^^|g5H!M`OM=HRvWZr`Nk|NiThJX4pYZH6N>&y z%T{Mw7tbUV@r9!|V<-3{%peP^G1i)SFk+Z4zC~>pxLRvpO^#q?h@&1tTuwS!ND~Nx z=V2-#A>om-RGUJoR;|pEu30Jt5URvy-sh`-SNa~)%eT#(a*uzLCxaZ;2#RH>a2qI% zPrC!cuP5P@lLP|lhbY(6ouS32e>o*8m#+vKWe%4NeFtWgp@$qN&$bS6&$hU=Ljn1g zfy=L7a)@z3t#uI`9}JP2?LW^epISx}s2@S6-Fe|jFBE63k&irDXWOC0->0$Xl>~-k z?JrMe`yvW58i!D|Y`yf*$RAaf?^rZ9=^>B=K^`gyj*(`Ba{~xO7J`PSRSi?sU|xgz z#v0m{z9{5hLs?E>W9O0kD+- zpg?x1Slfmgc40er$FmOKL5<{}VhF$K?8oOTfnQkyvPTHoHrLVh-tyV`SdcE2Y_Dvo z08kyx&l15#?x^*6kGO8q0RRIW9I%*7rWyNtZ{P6TWYFK%x4_}T<@(I;HP(f4#%TUj zgX@jEjlVD7u&X-!YX%4Jbvk3~`Gl~3Ya{6}bSl=#OfcAWn4MjV_;m-kUnvj~1t?O$ z7tc;p&s-v)=*I~2Dewh$H5{# zKc>+G98-<;5dxtSR{IdZe8iStg=ma~YS%#&Ko zMP$s5to;jtfP#bw^@MWNj0i9GvE*@n(kb8q>;z=QV#&sKYl5~{JTm;#^xUHQJ>NYo zt8O#NiT#^J660N#jy5tgMt8RBWpX&Iv!mkJ0JtyD$HoI(l)K(#Kz?2|sR3k=vkJ*Y;Foq|v$K$b&i=P6(zORCtp|-KMzH2MhhdgtF{ypbo1&gEK*tV;H>B9pjHxmJ=|7QNP+@0CbY83j zru=^NA0@BNJ!%2B=UBYZbwbRD0v&c#{Ls8GK*`(@;`zU)@7JHZe18%beqyrC@#HX@ zGHQ@D6k8UvdJbsCw0`A(=MEV64$WGW54X5?FefG-2UZ=2r+)SP^4Q~#i^f!A$#K)@ z7vq4TNa#8IkkuhOil-z zYC-5Y`yQbduC7ZF2Eui=#PqUK^*mM2WN`l(?Uy-y|7<(Ver&~TFNFve$o_xq2OGUg zc-U7_p3-6KNkZRXFr#At8&WwmZ0rSjy#ua73Q6c8U=Wy z42Lc55X(Sh;@`&13_UBrcV+#EP=sTPOh0MPJU>RRs=@tkm{l#Yfe0crjm`PmDK<4M z4HPfU7WW0t1CcaJ^^qIU&UWIW>+9{qs)m(kNz$Nz%^QvKlT?lfYEiofS$qgyLHntO6lt~c zg@q`X@nj}6?dP=$+4pa%--yD)ckQ9cOr9OiG(NC>2Axm5I=5lm{l5;T*~z$m%b{Dx8|>tjY=(n-^y6FzoN?)hVUN#BGvl(=_ z-O6e0#OviyWiJiySM(vsGwCqR_fJI}!SI)vx{>?;DzOB3RH+3)OHm!04cG8)AfJ5M zIFDe#AHd@tZPt`^dD6i92b};zW4Uoe5dPN zch|M^yL1y;aa=Lk1{H{l15M^SH?6Yz5Tp`5<&SUPj$8pAb8CTF&)~ECAy@9%ta+77 zDCh=BGEGwHW~MbvJY9-|T_DuuyK|bWLLV2}dN_ zX!K`%o|QZ)Vj%>zWU~gM;jgDAd|?yKI+DX^be@-EvUkECxW+KnGcGs^FoL$k*yE!z zAS>oT7#_c6H|_lA>cgA-pF0tzJoZ=RzW~@8HpGGMiGnO!o%#$4c#&-zcpdhoDJeFg zz{ThpW11lVSYR7QgF&EUQZN~G;tV}|v=9Yrv!{|8&azq9F9r|IhGj32yu)2msfd*$ zBM&CLUj5fFak1-fRYaCZvrBh8j3yu{?q)+Y%1OnGYd_WS^!al5ai5x6aq*u5pOvgu z7p!-&N-G95!kSpT{(+4w%NjTd?XX6f`|vR0-+R4;H0GKlMkQt#P@0UxhI?2w7mJJo zSfHd*;IfP>iBPv-kis5GY&~MH9%AP>qb-MbCg%Z$Y&}ttW*QiZP*zf7EY%7y1LVN0 zV6vtw)&-d(DGw)uU(#kG&b zr|q3_t~mP@$k45HtfD|cMFCa{purVpng!z6aVQF%uf$)4ip$9U6CYN9t2IOINM~JP zp-^ugIih?x!|@uzsMZ%Hl*?MnQyXRpf@u6@HhF}H5U*-BjA86>L@ZjNZrkfxw)2^t zqw-jy`xhow;~8SN)i&9;K>@`0>}e<_$g?bOF%?MT5V0U+>eQx&h3{JBH2U*ydm9gr zj?c+E`}#Wix&^`IeCw>d%X00y`!A{ELj~usu^N^djI!j0167NyN6yT2E$ujp9V zY#n-3wTF<+1@7m|z0D3WI-xuXhwKJApJKV{Pf^~Z%}w{py!&i7>w>%bFFhtd%CCb-q|Jt@5D*5XHRt{qOQM zUVl~=ALaV9e+iT6Yv^R0>1tR0MLA!;*UVTu#?YahW&>xn2zVO<9^W>ZgqQlOrp>`l z99i|$crYfe96|13gJNtkr*$I4BP)ItuWhHv_4nsM|3Iw%(tgq!D&}?=mwZuPeEk;z zYS0mSL3A4e&>%5w!@Ic$vE1a#o}4AIk*Dp<$eQLH&RW!C2Q98>M)k7p$Id&% z@Ol2uaDm6a*I(S()LymG$k$PI$~J6Osc31o5I6$(VgFWs87tlr12?#xCLM)srD$W- zOYZIrCdGzP{i|>2ef9j=KxF&%zLRdw#Wa0(N;=gE!b2`I2S&3R!|C}vgAnb7On`_V zuH04p%v0NSiKf`R`eNP@tS_%q0x%_|!vG}FiB%WvL4gjd*|}-n>3-#9_VMfxSlwZM zDL_w@&hb+yn)wdHg*ozG>CD{m@!DANBe@PdeKxO80|+uRrpd=h9c0-kr=DzNi>;e% zUL_ua-DNL2_>2|u5xs3!PSq6_+Tnij|!G$_SXw892v{Ybxmbn6T*=9CE#IJJJDdPkX` z1cIl7>TltSab01AVnyoWP>`e&vkc_|B6@e1MW~yGf~0-tUigl-2V%)dfT~E=3?L{2 zBI|j#iG{P3ce5E#tVv+Efb@mhRkXaTlHPA#dJg#Ey$VUHSc5c1Vk6yi_(ifW`7X=G zRG%lULcro476dN}odS#VziNXdak3ffz6gc_gFdkhgty?4>$UR&*7{Dfx9>5MA?<3g zN#?gtX0Uu#DUGdQ_qqt0*(^t9Uv{a)cE}hQsbQJ@yM%aIDoL`us8OXWJf`-CJ8kSr z`?iDFk>9sMxN?&Q%562GOHL2g>2qJe{9OxvGJR!jXGyosT2;2~H@sYct!&1&!wk@PrWl)` z86;x@CyPOXNy!<*rJ9JB4UqU@pgQm0ugE-yVI|P2qdV zv+}pD>5Qn;=WvmE@6VCMrZAzo{Y$6go)~?EbFHe$H%-gaVRQZ4WWgp$K79EO2bDC0 z>tmrq#0NSWJ8nqRD0d($u~sM*q$h-TVU5HDAdxTfv%A|jgLyy~yJuGSGa)YUA-)h= zZv=zpg5eDgKaJAL7@?zx>$)~Y0lP-NSuRaNsSU8E6i{KKHWJ?}P>g>IuXl-OH=9-c zu+0ipMoR66Z!wb~Rq)3JxV4P9)Szh;O0AQsH3USrx2EDFU*7AL-Nwq%5gwV6lqNd`$I^S1l+#CiyxzZb-I&Gt*?HbWxHA(6B11`DG*AUro!y5imCu*F24 zJ@LSMY%4;k)>xXC3`HWbI^y2Y?6D%$;fkIhxKjR#Irl5tlh}$3{J+_$8>uY1TbuaG zfKdCnMp(pDCxuo8*S@sRRpt+`Vbr72AM;myz&yR&W%rlu8N)TAjP?ke=_Al$8|HG~ z_M0t7kLH90E~rHv=W>`8NvcJLO#lZmvf%H78$(0M=s|5R3(=gX1IE=dk!|~5aQ@|1 zl6k+NMRd}su^GrxpMuM{{D-EY_Q^)FuMDGqhI9UU^8{EuxZh#i?2^JaTlugr%zN&~ zjHmqLevlW0{W2vg7l~rp=QtS0MksnMM-0;z|u)d#fZ0FLw5ZJZNEr^9I zZGO(;UQJ)kaj$9)B2;NdYE+UV$&2OuxN#Ie25%Iwp-BChaLe0<-;{=k`LB3$SMCev zx5`je3*^ibClO{2Po|f5*!DyOp4@UJ+iufM*@Z}-DF`8x;-go#YW$lze^NZ}r@#%68XJ}*4$v#;P(`znon)*ZAMe7PMCM|~V| zc+S(QMNqXfGFCAP`%sc3{1_;ec0kO862%aCq6IAFFI&inc%cqJg&JmPgij8~0?#o;AZ1wwkral`)ZYV@2G zXnl7)e7)b%sUge45VpqC=5AGr{QnxmuL~k_(`3+B^mq9=hG!9AiH-X5^=r<6xpA;; z=h*`|I0`{ybWy*?-+kznvz}B6pNji`4yjoE?j-q%nW6MjmK^>x9sO8WF0FjCmUqsF ziOIv2NP!t;K8lDIME&02!<*;Z-}g_cJjtH^hPJNM@Cd*1;e*-zQ9A*~n1t_HH$9Ackat4GEs7 z4_JzF!AU!vT+(NUFUr17Fat2;Z#`=g{~d^<3RM(mvWDqL?rkR@uOo-1kZl2qO!YQ`=0C^?$8>2!S}*kv+|Jdnr_QOr%W#MGl8Tw3~4re z?6o)*c+&NLJ@D{+cDis6dBfYb88iqafFx|y!zy7WI1~?}3fJQY!6N>13O+P2&@p8u zDirXFO6B3-gw2I}#v?}{O&($>#C{$~RA^1)+~UZaBO`s{;Gy3a-n!TkAT{4-=oLG=rQF*^oF?_q*B^zP)(;Al0C@$ z5HW_j@9*;t?=J-6dH!g$Md=0(y0h(c*w5%;(M~vU%=Ty1%0g|n#wN-R3|U*|M@SJO zB~7qurA7=tO|kaowP*xM%FAs4S6>CE_GcSRLp;nG3g|!SNn(kG6AqhULi(}s%P;|-9n%@{nqrKpzj-XO7USBn` z!?pBou4v6|?c={~E1Whj*eh}?^B!8gPrHdA!@aI&I|4$MYHvo+H~XPbV%UMRcYl6* zwWLPl*Fxqv2Zu=6Ql3Xa6y-qaj&N}&y$(qi-4;SGG@LKq2xe~NGSYL`j`+!y?}{~7 zY?(Neq@+Vh!-EIcLmgnO;5qW|#+=#Q%)#1D8mAom6>T?NEQ7DcB@43QcQ?cYk~oT# z30^r%Kh~H29xYcceC=!C@k$lb>NEwQPAQfFdoIv=UH3m$Ng69&1g_6)8 zXC|usXQ%~>dEt1+1}eeq{cvsYV`CWJGyOlal9Z}uPH#gVezSGb^bEi_dcxa*B&t^o zV(%P3YcGZ>XUll!arZo)>%q!UjlPJ|qJtL=T9SCc-Povj-aFWU5dHtLwfxVTo_P9K z>Ws1R`)DBI!1tbI3P8WpTij4nomIlHVPMwQ1%#A=0?HqGW48Xko3HI>+{FzaMIc9) zO%AQy+qiTSU`_8kqAU73+Qp!Yu4@-z)6tA_)>D1ZVOT~DbFvo5Ut61fUp`E#r=4>> z?*;<{fl4H9<$@0AloC7gaqXpmvG+?faiZU><(-#S8Cjb@P{-x_?GjCF*mmhh=Eluc zvux>VFwvNrj*}IG;C+6!&cpPcbI(DZaEYZ!{|hx&-m)lQed0z?8#hyk7!?d!jmiMW z@*9u|N1L~6$asdOs|r#9$g<*T!~MSQcmvbsaUiHrYrFIxGK6}sLc&Aqq8^b)<)ORV z>52TG1rtN=Ju&L!ais~^r!&=889E0z3Q!}F_3lE_MMkt5YjyM6mG0KUU28%q^VnSf zWeKiV`$l@#=lk!zerk&Zr2qV2SNwqvjkz;jFgxE1jG8ng8$lBr6}#?-Qv6P_=vM6SVMk)$_HPR z2cf=e4h$<-HTJH?hCvJQ9ju|v0I*!Ih0MpfKtiLU?Dy0n@-1VUHMC{b$HmYn0ZefQm(qZcy;-I{{cmeD?U!mzhDLakL|S;G2m z6yoxwL$XE37@a~pQiIE>8=hWd;J7wg4l&uwzl}1x-AZU@bHg|%?~I#wD$aq%%E`gE zX^dw^=e9zf73kM+zK%%)i3id0O5z^pg&?0?qRn$NV$Ui19I@kBi>zk&C4s{ZeJ{g=02#fF>EH*TtX z-l<+9R>Kxo7( z=TK#dvw9w!EcPBk`&{xhRt!GAjb(4=@R-rLriAR}yi<)9{cJW3oqm{j0s#6aHLjhQ z&1cZ-g+6}z64Pci(Sj8LU02VE@rCq&ctB`nE@Ee8KyG1eMDc~o3wj4Hv3!|0nhN6- z;atop#OE=hjf#$H_GWo0vpP`9Sf#gN>NT5*y4;t3N*?*#==APYQqXaqLf{&(LYexr z5Hi2eIIf>2i#Sw#vjZHR@#><>&>rPyDBv*uIA(%6<9GB0sGC}DUlJUIBm$eKfiexP zExz0c5=38yz}_r>3yefyy556@1RNV6FuL&KT0bhU;v=TRDf$i2P(#n|Vfa4zCVqEa zoHKJUbJELQvJx-@z5zhZcu4h?DpPl!#)y zBES{&GD8vF!O=w1bu8-g*vVX@gY+n(NWf_$wa+(>QcyvU46&oEBA~C!3qA}EG;ikC zGAJ04VPB*l&Bo>|0d^p;+=Zl2izG%tK}C^d6>`=j7D~xtDFULRpbV`EMMwyUT2Mg{ z7FMuF-J~kAiKUx9cBH$8(#8p%w-$6G_%NE2-Pm&sG zHdGPhg(xf*3nGgYQXkYv{y~N$MFfitv#wb`G8F^4Xit$ZOAY~;knu{0#SsNerAQ(Q zb&QE5He1m)wSsGz%M)POHVpxT z!_B{mmpt*xFr({Xa~Sh6;SCoE7{+qiDcs}Foos}a>@=N?A02D+Vr&Ef1%wpgy51V; zZ7`9WCXzD0F3_=lyw{dgX^fR1#8}7T`13d!eU$nzv%E?7#1L+Uqo2qGV2~$@Sh3E5 zB=f!X%Zu?y7kqD~b`F4INxvFvR$?fe;(eV=F&|4pL6)ND#8ezO@9Uqo3x6uD$3r=g zumTcq&hI&N=L|AU5XeA~L(30by zx1AnK!1uIV@++v;RpVQ4$%v8;zR6+Rzh)bOrR|vcx`_q3hjAU^<(_Vy?SO;J0q_N& zghBma2|$Wa;E&`p?}f=9R1j351o0Y9Pngqz)_H8gy5Onx)W+z6FHF86T&Jz5Bi$Hq zBq2M>?yg*WFBy1t2h)-5BTSM+@;OW}hP!-}e+vG~N(>u430zktw0n4-=AYS@Pnz&P zz)s!qGa4UQ0=ctROei#$&8pm!5*&2RXKyVXJf}}BNOTY}15M+%)y5tZ%bChmRZf32 z^BGzl~I{I7hpQnZRj5gd*-n;ynq9Nu8a7a=ig0h%c0tk9%;y+)3f4@63tmJ;f z;l*O3>nZ_+e57nLt*y-_SlSP4_PlI!?vC+Wk@E0>7x!(bhlR^qzrGQ3EA}D;vV{or z5sX}DTLMM?lExyXp@$v7h#DCZNhtcn{)UaGv?qe3#)|>XW-FQ<+#byZgzrm!6$^!7 z)i#?Lz4)^PVD1>t<3Ed&B;N=stZ2|+oGTQsM4-$ps@r8s%o46z)LU(qv|1}lRLrIb zj8-V9sIAIinOj?JrBwuBSw^6xRbs?wjcr*hp;EM}TyfoQu5HliMhRnDQCinb_A?Vm z(!alZecxDm>m&h0Sqwuu`$DEe%OB!=@8N~Pgs%)gBOs1u2E7+kL*jsP&9W?pLGD&; z{Ncf^eJwkN#p4Xd48^KdkVTquWGQarT@QO$qfjF{0CaJF7(s)lWUvakl*?YvD@i_Mdz7 zt=ZH{6(b@Bx%m0bWczbous7D?KOcO{;UAXG=Y=|%t5_D8?Y$_gql!YaG6W^|F(toh zJNuqDFdsAzjRr)MM;!7!9VAj0@)$$YkHl92h+Rz)pBXaWjs)&6?-^e&h2+O-<1lV` zWDj!Ja21e$5vla9x<{c4?NF95x$SSu;WbdCRtxSU>D%~xT8b9i0-x$XX-H*271SXs zS4!|=0G+>ML`?a*`#+|=wxpWEvA?;?J@G|{uV*(%ze7n8WQ67aBqx3oWFl3=l{L?! z%n{|ylS2lfJy!&As<-r{4GwiJqtDsvIiWSrs#Zx&VSq>Y5rRonOg&FOE|1Zfeig+a zbRtotY|IjRoTEQ!Ybr5^$ibB>xL`fS)HI-Q;Zp@N=rTlM%Os~GAZ?7YW2Zz*ZRPy| z7FlCGdSPR&$6h&Cs_;Fh42>j@&Ok&_rW2e%ml@lb7q`Tb>DlyVYQPXx*^kk-PAdo^ z+cl&4L6Kj9;WS+p;WSNHHkFAjE$+@Oe3^t8xgL=cf!BiPvnx$u*^n$82>K0Gd13;c z#5+Vk$w)jqpM7Tb)Dg7<`VYX}JsG+uwQ3DAo2jgj8HguWDLj+ZX#KIvFbk$NVt{Vk zwz{i<3W@Rvy}k$B5ZUE>3`dLTd*BSd_Q(nk%(d0oX)?y&JA$w?#4B5Qa(20FFJtnr zarZC0K74mFecY$d>~Zj}&5wihT7O*I)kO&+A|Jea76f|WS;%Q_cH2#*&4k*{cD2Xy zIcLmSuo2;v1(a9FPNkl{%D~%+$I&=>r~Yq)qd5KYzgA>V87IFE zFsd+65`=(EuyWmg>{odmwAdLlBcQpYQ@?{?L&gnFS_C;ATR7d%V|tH25XD2`8wO;I zuamyEBcn=~?Tcpy7~)==`<8+F|CXR|HhW+@)>*;@?;Rm{5XmJx-^xEUd+$Ch`Vl`{ z@Qu%&%Rv-TQHm%i1Q#R`{jT}%Mln*X@Pu#ypVYngSL#Qx5s^R&@eiTKT2F>pu|t+0 z&(n&kTWZP7+!63n1{4iKDEfnsCRO=XuSkM$qk76b_O4tn<%doR0YY-1^0|c{$1=~s zzr~06V}BfZ*7qz^wI*9Z^nHEwGgMTCNoK=ZgtVh(TD`H(ZNpNbi{s8PJA>x0ej~Ow z5W1ZIL)|KqwwB#Ysz*~iF0nU;=sEGBem_?gdp3uM4^+^@ISC@K^hrv-n;s_TK&$#B zge7x4r9YHIbckyf;GNdG6#0v|rd@Kz=_L?R4$IRK7#rf^@J>^vmjE(j1t}ewFqS+d zGe*xQpBL+*u4@Xl5|G*iMltJ}?XFn1(SBOc{|BrN6DKrp*xAZvZ%1NV3RdW@_6Nz%`K7ro0;76zIhaY?WZEc>Q9)d%hC>4yUK@zVyez+Q*O@9Ye&~ z5p#+$u2M+H(nUVgHC+O&Mv4^e$-(?3x^?EIFw1}8*Jb>?_fa|}5o$E3+Fy;86)R!m z_Frd{ln-tSdct6N)PTbAY>i$6JBFinF<@Xz1RirHG2Y0C!t#4LXW{y=-{SahFK#@( zU)O<(m*mikn)LAC;ws5*o%G$DO{_aaVQ%TQDtI3<{=z)akRMBrxt>oXrVwF!$+@vu z3QP!k#0a$mzd)3JBqDsb1k^5f!C_Ik67V8{5NrhG0SMSBSQ+loV=6yZoL(!k;_L6k zludMsK(6Jjb|7f}-jp%qj`_cw&VG~UQTT)o8G=b93%bq= z)L#CHWeeE$EbZ)dW4Du(K2t)!VOd#WYCT;Ug_ezl43*|J$9u2O#jY|vfhz$%IF=ZSkRae8C4c{Eot3RIE$QuijUdjv{3Sh3tC{zql zN)OFT=t2txETq%T#81RfQE#%qSxl)=djr9Sm@))=~an6>aiU%P6Fbk4H3k zzN+NC#UrzlP};j7+W`#=ur@{1L8;JRt{Ycy&q*zaMvx$liP?$PZ1Cw{FK1+H!5BmGi2>ObLN}UQu zY(Rke&lI0txG+=UcKZ`K$wew(S{?kYjmZmy%OG5wn8^&<`icaVrI79KX?3hvC5*z3DUsG(i&`aSZRg&#h9FcHjtssk-0mqzbgK)XguRky08koq zLSPya*WrJjAgmr#EaQrg4u7tv-B({JVpM%C;j~zMs3>YwEhKusJht)f;`!2pqI=a& zVZ8o0esX?>@%w(Bri$+s@riTaEXt49n!GF)AQfDGQR6Vk5h6hwp=`3ur|idi-p*-1 zKQRo3X6bl8fV?du%W8MKZi(QsoIKMj16K@5Fa<2lq<)QJk7G_1xm^pr_5L0h7Ug(9 z35<5z$-|yXpz%COq)Nk9ea%QMnYE~bmc?4L24K@+k6{sY`Fl`p_xsDl)+qenwIKkl zcJifkr%Hug3$^TBx8g%ja!IxI=nqWx4?-pLo{0~T54mdq<* zg_7UR>NG?@*>tOXVW3iIzgmj}^T-go;& z3P>^aOhUO(tT5GGFoY)y;X}cb^}J6no4(m%aO}ihOF?J(nFS!E4i?r-$q1s2hr54a zHNAv1@Pf}IBoE|HH{;HWjS(@JjruJy84itqTVGLxu@#?XCbIEiQDX)&MGvjS#41XY z!0BP0r7IMk43%GvJ)+RC1qF&I8nh?uoBqSh!k;-oJxmUQXyDmDq^Si4Ts%f@2_&gP zpZ)j1v%qcSJQpk91zOGYj+5v zDz~q~*Qf(!0I#(1MO_*`Dl~D| zD=_A~qB}kZ%Z&5)o<$OQU2=cuC8h)_qP^3@ARo6Y%z5F%E6W+e(Yhcgf@ zg8i@yWeCuR8b*#vY0h(j`_Y<%A%=U^YpuSqj))LgoVQY(Q9=CH&#R;69x#(hj3ar zEd<1S^DlzJ89&fI=U36zY16l_v+84ejqIV1wsEEES~hXp%n>B9kCFM}L-J_V6Y(Rb zr|HKmmBz9WpqQn11^r@?p+tlGYwwp~OZBkgf0CZB0)9+}vwER96bL2}GKs(Q5#7T) zFl23}${ZaZZZK8m$F>E7$%ZZTKx{W@iGB~J=Mz{hvA*LdNC=^4_}7e{g#M>(2K}VU zoR6FEoeH-W9+oYF`Zxc;0EmvDaoVTw9>*)EW2^%`?6Z}W}gbE)gBfHc@ z%E7E~w1|Qtutie_v}y>73ap9>VYAuWT4s;$zuZsh6$k2UMl4W8UiMK{h9Yp5K=8~nonrQ z0I(MYg;I71k){=OgXgv8<`!SJ4DoTF@9zo+<3!BKRh;lwCRdcLTJv+ z19J}l58XUK<~+SkV2?k!M6?V*#3&#`n7k+SmOVraU2Sz;b=&XEMKOXEN(>mHk?9(7 zeYa$j5GY^GFXj1tKdsRr=awt*7JUsd5Uz&-qeLCk20|Q=eMqZX_PoRjC@ly~5U6I9 zF+?_nQ5esIFLH-0pTYA((+bHvP})ER7$KWKke`!COc$@*`<`W5*gNAzN0@gVqd`o6jTq{k=Y6ihz}$FeYzRZ_oM;6L)M z>1#fPOZ{VMx^I^*&-uToRLTWiasOc#AkX=I$t03VHUBmwVgJ$pH@I2)$LO_7{4dH&TlN6*tgy+toaGuDlygKi=?3 zYwCM)pN#pH?Zei13D89n35b1<$oTaiu+Pi(FHjGr@SoE&D;+tK5p^b`s~G@zF5AMb z?1nTA7k*gX6$nw!1{jQ4{da}F(t;8L24Eu3Es4!x4*$CRJL$OU`!xFYe|G)S2l~v0 zf^dj9^g`YWBRnjRwYeBu0V`0Q+j9qPq6rJIZRPyb-?9z2TtQ(gre>Ak1)((t8 z>4uTibFyzTHeFJxhd=ixd^=8nATteYK2;k2_bb|}!QLterNG^KE0y3A{!SUKj>FqP z=?SkZ>t#7EPalsRcEyd_l;d4;3p0|p^c)fYz)$4-pnV@7$MsG9xl9;W+d&hS%B+lJ z&(>;v-!Yft3Rp@4mi5R+)%pAyF9B9l{txCEssA9i4wNAs5fA#fP+9*XtKGWAf%|cY zHg4GeA;>kQ)*+NnO#j=G&-st5?;rNP|Kt9SL;WEDRY0o02mJ;xOa0&F{-Z-+j!*9Y z6x|$0yLOZ?J3dAD$M28GK5_Mj-ye8=f=MoZ^ZjC_$`}?Ts)7m>KBA-yv4Q`JXh5-{ z20(%YDb_X9kmTd(v6zEs$t)m2B9&j>GZ`sTn411g2D#XN`#r4p+a_N4pW ze?;=o@X8kKqT~F;|C2eU-2Y43GEZSst`uJ397{t2oS5OUSnvIyH;u3a299yDSkW{l z!wGSK7P!jNulR1s2=&JCd>^2A{_cAJq|ij73*_dDanCN7-`xf@>gu&)vMn*6GfkP7 zh|UTymy<`Ar>5=9}2{=?T*gQ1ibG=otiI`0D~MA|<`O`10lqO9kpcIkG& z1zOY^UzoZzmDg{mt?T;DWBi`dAJ$xA?L%ntdpyZ_iYrPGuQ`+ZNBd_QM$l_VjqDzh z-g0>HyRaEp|1jaf1lt$3?^B1im51cRn^A){qMcr2DwbvF)(!rnO>Dg(N^1SN^iRHO zLxQpE>!b<(A8#@DV*d}ifxaQSYvm0O$3+mFl9(qq_EdkX1&l$11)5YL;$Xod8!vGZ zJtd)PkLBB?pR@O=Kjka&KYlUBf}$QBd+Vq2NK zUC(s)s|xqNEk(@C@6&JW@c2Z3hJ^v&2tbiw1cX5n%A!3Yhgfy_p3$O;I*<6ov=Sr| zWS0w<5|Ingkj6}I)xln{^OA($0Xra_^FoyWbW#a;D)jC`3l81IXc5AMNC(md0vNbd zEGhy0_dVs1?_?{e6nc)sx43r0yWYgKc}4lqj@3ivU7f}PkD~?7F%q*xMVnm3(!^Jb zR~wZ35r76gA0%)6zu5iEpUYqOKZ;gNMnDvRhy(vz$XX161qsjd{~}4{-L6=yno~>e zATk30W&K9N8k_+WcGDkkFV)%ab7SZ9^4|aKc6v9Md|i!|c|`fd-h9_o`66OS0h7i< z2`8OgjA%Q|Y+>glQ$8b0ez=e8h~Eaph!EPQ15bxqGc2Ms?p{KUxef|<0HFmaI0>vB zgoyK;qdW@!M@c-w-?Mi8aW~>>B$or{AuSC)j_$sW&!<h z8x$Q6-jEJ`J%D0Ffea#0mRe8O@zX*Jq&CdsQJ%cb`+kp-l;BDzqcX%GkUgLILt=Zz z!w>EmmpYveePlQp7>Z64O#v<0k-#`=APle$S$c0qjdV1#;J$nux}bqLJ=ug2fO7kW z{{KMfs5Lodk&D$OX>=+%LE*{kUEwC+AvQA3_Vr8K%YmL|^fQgrtd<~vgIuOyOvGdi zGZ_HHH>C_L3G5|F9h`y&hVn#^h)yPk7t3N{u(K0fG9d_Y+JO`zVG%mvc&V^J(0A$q z)u}QBt7O<|y+-S(5Tuca~Z)PcujWCKXa1p!7%b~Z%#QX9x^kOo3UIc}xwg&|Z8 zK>QIbh7kfmMN~#IBL$H_>*C4k&lVF*COmNn$sz(s`81Yp_K%k7nPlC)gZ2~t9YDuKfr9E)0JnbgLqD441N@$XI z3)3)E07R`&j9I@k)?D-<)i4R++}4c9iQ$RXL6!>5Q9)pL;GlA7%qA}7A(&a~dY}+Q z+6E65y((^}izp#9PiX-y#qbow!*ofMP)mQ4fSbo|Tb`fk?_W^W6M-4H@SyXwi!` z1bhRsrJvh)8rA~tu`XgaIRs+TP~&HJ<^K(9!1ceQt|%EePut@<(i!{?88D-k4>fss zT6DJdeYFBL_D9XW6-Lqb+GpbtG0f2{ZN3w%i~b7c{?;Jrc4xPm55k&GMzlD_QiJbj zKD@3=bmfy^<^!D-?gj{`*{H*^w6pv_ZU4(?X}ZB5?Zz!iR}kPk z!%d}$C}v^GFxUS1{_$ZqlYJg*AX-SN6(RTddA)c4#DBhMAN?V5Q@TB{gped3A*6rh z76MwV$)tjTv;K(yLI=>8eg7xR<2yooWWxI@OPKn{S71+QX#E(WACUF=hk7ZuxIkHB z$y!nb;y#VsOJB$=8rUETvxZg2BO?4Mcv1 zn?BHz5vZXsN2UFxt16-Di=a!*3Pa74rc{XY3(4UPcc8Ho#Tm~7<-3AN)An~_G^es2 zsN3?rz0BdVS|lPZxy4~)3XIb)2k*I4A=5^6Ndp)#su-z(Qf74TuG?4Bf4`{;!=i0^ z|EZrdI&f93W$%1gVVgy}X#@XqnYm?RIu2fW1-+pWh@gKvEA#Vl%qnc&X4)h4r}$zY z+2pHuLt(wOim-NCmZ&s!wcr1M|HfE^L*qR(>V)(Y<34hS07L(cxCB6j)9nFyObN$( zG?X5A{CwV;H&91~Z163n1!v-&kM6wIivSjUSRp`4NtGxu0YHqjmKKthmY}K%v}L7; z)k<3yP>7w6Gtc!DAI6V@53zc=F3ZMv{GQv>&Y1-;( z5fM=o_-}`^UnIUt<_=4p7BYH1521qw4V;=i5kRTIV+PF`JX-YY{wysXN|i8lVCcch zTBr0Mf7ksk=ny&r2fY-88~}%QQlOWwBC;fkhs6Zf@dt2uM4!~l@0Dv4_gVV)`(y56 zh;|4W(0qh;gv!)F>qu@CxdVRe82 zxDW$42nR?w2i+&#UXTch!x9W|!r})0(@<0pJ13i9Zn4j^^9jRRUIhSv7q{`#{y2qu zT!2Xz-(T}mJA_YA{4dw5$~Kqbdei$&72TQ0v;s0<3kVFw`Ip2&2z@^KXIMZ8eeh|< zT-Q^aJ(+R8^|<`qc!CCTkWPF#N8&*=1bkK^e~KiS#i$l?hyeAhe zv`oG0l0k&$>=F)24rr~P!{g}+GM-cDIsQ(A;%a*S)Ico%xB3w?T=}2pXFa$r{hO(x zx#>C8590kD>uah>-^wM5?|W7d&7P!-PvU89l^W+POmlU0Vl_ayH}I-ReQH*<{{n`{ zFRgm|lV~mxJ*nPa`+D~4zxltCwr9It7Rsqd2&h^NfRdeR0i^h6!~ML9pfH9te~ee+JeAh42^Gsx zv3$sA6zJizBM}543K97ls6;`Q68^ibPQ1NkWq}n`hx=w7IYmoKa#H4Yan!-0=7JJ= z9N8$4s8ie&fExfHFlZ0g_aAX*u><>G;%oUF{?3D!Eao4Y4C_DRYQz0Ylu4~XFPAl) z?>N!Ip+ox;@d+6KxB8QYs4Rdl;|s3}MjmCTm7Kx-|AOGQHG8F4TVfyB)|8PrD4=8b z>n=ao^QJ&7Y^qa-HHb#!t`%jiSQ_Q5*EXh_&n=pz|HZZM_JzcYJfEW|Bi7i7*AKq~ zLL&6&`E#(`sX0m3AWLc%dMgMPy#e$@OGaD%{~WG)_!$<0Ca5D^c-N-j(FGl`X#Yku zIOA+?7rpOmTGv9NhIH++rpSs0P`uaZ_N-sc(3l==U z{^m?NQi_5gD5Nwrw3ZtLltOyj9!61Oh(sB*ps0xfibX~uJX0Bj6hRS1QY0A#AjSR; z{!>f4J|?v0ce5kRyGhc+H^fv6iyIwh>L{k z{`FX~N{QR1kgBY%M8>hI@$F}C4JrOS_uTbV>;1Q++nv(U`Xdc@5}JAMfv9q%frJK85BrkBfdt6xcNu3L`iGZ~vVc;Q86a)1Ky zrwsWyIUN~Tn)pYPw&)48aurhD2N2mX`PPD8`YOF;S8I4?W z>w$NQTIdP6yh~gQB4lKOJ%|;)CkU+{J8sMT{ zBERHVD#K8%fGf?My*&Ax=L!s{3zWZnvtjsHGwqnW7>hA|aZ6 z%c1?RFW^(N?e%*-T5^H>^s+Sm#Y%(s*Tc4VXYI}Y?z<<{e18_TYvPvTlvgQQjID7i ziptez`A@_1{|Ce87p&<&Pg?q2VdOPm2DfVh^xpYVXC7;Vk2u9pqZUttHt}tZfJn&a zV^xx?BmCy^V&7yxvHks4b-}}ugQi%NewEX#l1U_zH=$BmS8bBpZMP(lHxU&q6*CZ) zjgE*S2tyV=?|eS33a*wH!M6Xc42ENdBmTot4Ar<6pyjl{G5=XL9Yoeq%ZZqnEv^A= z|B{-2J=`-4+oMC7OssBZ1u%%yF|5Z1u!ut?G{J3zQJ}*mv<8}Sf{P%n95h>?G0e9y zYBWWmVlb_>M%$U0XvDO(+bw0u4aJ6`j8zR?OM+mCqA)Hwj~5k~mJQXnGcBmJQLP#) zOOVDIre>&_nMJZ&gv1^1T1P;^hBqsZ46y z%LUR?b7rSLgs8y8(B`=;7GU}u%+Wg~-w=Y7{ARk*6-AL6fP-Q*zJ4BE;$4Yq+VtG_ zD*0yjZ?}i>f+||0o$PbRJ?Vr@Dgm%kXJt7Mgp?%Wd5TkKP_${!{{KB@3M*okWn8Im zG+t#Yn)53&&9*7bmPrFdO*6nynVTF#Bt{6}+Fy#ObuRry%fFOvduiLZj9Q316Xbib zZ6)e!Wb7OIc8WXCV;AZ$fXAO5pK<8cgaFYXVMFkz7J8j{R6L?V5Q=Wd0RHFpsbltQ zX{P?F6exdpbk0x8%S8-r{S*3j!uMrM9~5{TIXQwz?l9t7;!wEvujOKw@~$NVYA132 z)e8~IU3ToA$7{SS>#Y80wDw+b?(~b^!9<=xZ0dugGg)kcGJr?gQtNv**@qZK5dW1i z{#YwMGQUUkZ(ggB92Lnu@ppG44My8;BYSNdLkwUe=f)4et5&oB5rEcKBreYwL{cb^ zZ~KMlydqbVKfyiclGiTu(bMf|7>SfOJpD1=5zFk&oKiijw&VJZDq z7=covh7_cr)=f!Dt#y{!LeiP7W|3HoSOY3d7bRqAVCxDPSgC0!DonN{(hUtdy2dnY zD3xi2G$x~MEw}(Vji|M#=(TH(EwI*&1{J^R|8*On(3`Sih_diuqD3_^F@UN}YOyT~ z6;m<88kk|GP{B0jAf~M{fZbt2EKE_L(ps|SQ88jI5|OA$V!#wpK@)b2Srk+jYRFX+ zZOcn(Z7r*9Ev2<>tu|qp%LU5Nv5eIXWwyl8qREC0RZtfe>SV1KO<98$B4b7@VooVk zP;`q;TQ_v(jHELZYA_ZyQt7gq%A<*vsS-I#8B~QD)CE;*RkqgFu}0ckSek4pWm3kf zl^E*grloLVHPe|!D@L$NGQo2+W-Bx?h;enTY|zr$2+Ip$q)aT)mMkg`1vCf=6wJ%3 zrBN1YIFte@2mbX$A&vkD64?TvAwBC;8*C~`#A>2~NFp4BXX-<>_kG#mxkVb9_g$^r$2XVwxZc-@?f#IR zJ2C*C0x8@;!z`jQK|D2bLCi83D8?X&>r~L@t;kSXH9?9Z!lbTMY-wSPm6m`D35qJl z41fm+Ko7|PS4b#%;3@Z^?m#aU5Kt?P9Vbai|HIzgdB1t~sl6|a(N0CwjBmqK26~-u^iXtVV zE)ZOQw?I*Zh>*k~L>3U_K@jy|9|lbcIYKN6!a%4P2uNcH91N0>O&~4Ugo0RtR7@av zfkpuHKm$lmwIn8nL!c(Ou%MF=1rWfP=iR&PvFiIMHrv2{aHYie(7xVhZ}_eJH?T!w z6EauXVh_(ttLm&Bh@~+ai*Tv?tV!fkDq2`OnfTTHWeDP0zlvoPENRF5dpPwzHQT|^ z%}eKDgZ^LTiap?3m;TrNcURL^H(omSA-=hPT1M}G#Q7+%l9pQanA}EuW~A}rO#E-s zy2m_IH$o$ zEvKDs{+GFp)&Y)c%&}tv@CcKIA!rjxWepn}`3-dzr6=euLIGdW zi*LE)DYJ~~*81bHX@erQ+p1gw!HAWcJkv;joxF@iFGbkBLMl+>)ezSFHP=YJ!2;rs z@hphEOfGXCQ8{4+YBm&9&ZdP|Tr^bjd>O_|u6uw0Sitjnp&5bu({EF+)Q(-M`1nfH z`R<45I2-d7zu)@>XDjVsDF_gd;O55zrox|>sxt3_%-qr)VEHsroiB$ZDkKlZnmJ?7 zJ`bhaWm)Q3tD3s`?^V1;K6%DL{Ni1afsZ~K#|A%OtQEDB0`Sb1D%iral^zp{q zTXjcDQMOD);kyk;_ZoI-%yH$JTI~GxMIV%e*$jW#{x*LRURQ$R!M6DjNMY=ICLVD5 zKE8Z8?voni!v?4d4v3teqDSL~s#Z27Ryg{REB|&EE-B*D&GxQc4HHxge2Pc~wqv!ct&`vOjg`@onH=B_gXtkOc%S_qHjppoeFzG9k{DrS z$)U=;)M85E-ef)9Jge#Df_80!PuOT=iF){c8BzZSi%phGs6P()6h8KY>g3eVr>RNo z*$LJt#&PGG(7+7Dfw3Sxni}~((fIkRU-5sP$@E)q^;bXW$17}m;D*@uLV+=~w3YqB z#nCPBa>tI}=0N?A)fE<_Ad(UhWLOHKk`M(&MT(3R7A%oN{(}W2WDx;KL~A8*ks(2Z z1j{5V1tDZgkVYvML;Q?|V!=g`WW)qyG$aXw2_yuOkw!2FF)HK;Sz{m{jg|ny3k71aWEE5t zSfYX=3Jhdeh(Q7$jTgg7`nJrHMo@wIXn)dvPp-_E2J#d(p+cX^!{YVs{+d6%=>GRt zd+&C>?7aP3hZ_~g?t1Wks1+ovs1Gate~bkla!i;01lc0aYVotFu7~yMY!L|2(&RLx zob{j_AY%xm0YKp)#*ha1PN>#FKE(z3qdzWy7EOD>(<@wO?k1S{{E#J;GHz4 ze#~Vw55G5o7Y%3fd+qy^<73?`yMI6w$sU|mGZ(3Ut7xj^Z{;lSln2$F0>j@(8 zHPd_a5h&*sjmEk+wKMAf)${i9PZi_0f(X~inEwJF=~tRaE(~zpNi*mCyQ0@k^Qgpy zt!D~i%XDJ}-Cp-Zr#?@kwXk#E6s+oH;YzI8T2U)D+qIsl&USQ(9`sDQoU+y=KH`sO1=agt0?W*K* z|M5DrnmGxbl}0S8l0Y!tvZ1a;mDl!nyP>c)m-YzWhy=2RILL62CsaSk$Z48D#5$cd zo!*vP&BiG7xcIP0br4{=22?5(vI2ri1R~cp+Y>naW#8|CB8)A-++EUa$>P7eH_q2Q z-%Zvz=3pcak~#=yD=u>Rm)W?OA$L)i-i(v3csS1o@WxI=|_D4ya7Lvvt$gcyO!gD;N(|{hfAV&pbPDh3uPE)=M1QunY1h-WbmJ1CRqx*cQ3xOcJcz4Q%Jnhw zfus}#^uDz=tLYpN>bfA!LxD%R=YRXB%s+Is-*;BbDgC^}a%Zz$m!XSuD>g=K;XJJr zL>P{*sYbk3`Irt5WFAZ)ad_HMBLaLfnHrFxY47eUGM8iShZ>2ce=c+=k$k{K<)tiew4^5AiLX_IFEVRJBFZ;o0xtabBXI0iM01HR&szz_D5C2B8nmyLb+n{xqm!ZcmyLU6?Qiw*6ktG`ni?23VuQ$fOoB8tl638_2M#?)zxsH;hwAoKIhbybgY-Tef zlG34r?eg&3DQ0-RIxp0)!Fu&k$>#9d1k&p&9ad|m6GzdoDQQ;=whB~UoPDsQR1AY4 zK&D-_U>1nA`(o=5L#{F287nPRQo($)dotNL?tjGf3r%y~V91QW1~jTA;m+txJk3C& z(dWRIN2+hLY<6=3(WEhmR>xZ-Qz(tK(u7@2cD%8QJAzImT^9mDkkY_7|5NAAaVa2$ zHrVVPNR2O6uYSdo0E#KcLK>k~K{akmf-)EJe8MW>z0nzDK~{-WLQre^IN;vuh9)jD z^Xg3>*Wt7Di5(O~=x6fUCq6aKAXBsPUQfI(0Kv)mf1?Zp<(LvAO)#z|lNR-P|6}%l zlApW$gF!-n&i+eLwbWyom&}L^!I6)N)P6fEuch=pN>AiI5PyP@Z4bsMDvA;{3ZI73 z77{@u29Lo@tJkL)_Puz0-alU{_h>1$lm2(#_Q8o)_NtFfUa5k_8O zIaeNq+^8E(?UwSB+XQM^W!$=w(&k?AE{_4I%T!R2A}xqplWwa3h}JMgwiejdkxKD+ zG(!XgoNH({&Kl|&>{crm7ebh=MPdZt3|&|m{eNjzi!qWOJNK3Mkr}(=+{`hbR_y z0U!{77(p;UuE0FG`aNGm`Tk||`~HX_m7k*FLTP(op!#hPs|?8F42$GNndDXR5gIC{ zY6Uk6Ksg6OpTC%O=ZP@p0oL&JRozgm-iWD#5vHxo|7RNL^bIa&Dk11>2Yj!!JQ!_N6AV0~JaDpL& zDCr|yZE-3DT(AjpEz(Q4aD#|fN^5ah4G{|&P;}D+7lj5VIMZOwBt|0YC;+GtCAIWx ztqdb$YU6rLkvdkeiCcA-!aTA)3mz?mItN@pwfKg z9<$l^b*yv70*@R#f+|okDPau29EubP+f#Xa0NQ&aNHxUG6lME z{hTrGX`YizC(J+RdHaXc`=?HP?}Nt;^|=S>LI4B;C`Y9I!RUDNV~5zMXLTP3PCw!f zUgfgo@#<7L#0{gvX{&Y*^IsoJS@9tU7~Rx=o^{*E4CKZnsYr6bWK`rZ6LDbY_U7#o zF*+Tq_X4?&ThuVg)*)|LDf#Q@WP<1c83yzNA(-j{zWtz$z1_^iex}B@Wt(Y3XhPlk zf6&n4kta-4VaXSv&`nk$naj6^9ED7SRJJop_v%xbBL$$p$D*mc$nDd9hM_kH0RXHe zH#)YMcfVF+cnM!<4~8eY&;b0dfFhsu=df%%rYx&i`C+-hfC$M&f?d=JMU+)F^F8eO z`?!K%jA-W!(Re$Vy zShA7x=_qvi^KsI;n{njXS#*iKT7FM1H#a#$EZ7*xK$B3mS->y)ZNW*NFw5IhgEsm7 z2RZ!hkMY|O*%?&y+ayuGlNczZ2xk!m`G=g>yx@%W-c>!(C`b-Cg}BuJuxy803@{ph z$1u}*RNJU_e-xB53!48`n)OVNEWg=hF{#w=6TG&@q9L+W%#!$zffB^giLx_e)cMyj zirN9b^J#X+g#N}tuBn>#));Zh)fidfYC#LSPcrkvSy-xtwPEJ|aeJ1}$0SXN=Ko$WbK{;;d6m7q;FG{{;RSoTT46ICi)N$f zh#t1Vhg!jHexZ-t6cO}wNz8{W}(Y{Q~d?k$1fW@m;YihSOaTPF&O;P}$&XcNt<3j@)1#U1+7oh>b z!3B^FJHVMjU9H6r^N;v`GzYTie=hMs5TN@AheYPDW@`@pNxn&y!E;Sb!?eE{lo;KzPf#vd%a~u{8+S@!VF#VMn>_0cHP732;^<8y% zMPrit#B~zmr>GBW;XmxX?si_Q+AA|STi^Xi9sgFvOsQ5C?d6)NLd_%t!>NC}*U_HW z%MGPYl?{47#{%9jvu`5;WxNWBD|Ree=Yo&txJPbHlcmwp%S0{+ne7TGbMaikbtx#N*Oq{>fPgPYAO%^|>AN!WH zhy3MR`ac)&dvIk_v!bK%a&?st6o;`m_#l+T??+_iPG{hhP!WcgutMoRsAn}!9C!X-_j!TywDYiD7-7D?dko8) zk@7o^UusF;k}B|N>X|3gxwDOID&0#~)WxXNOWfQT43w%A-^1{asOk)#%g}By@x#_M z4tv%ssSNV5)FQ55KW2t4>@U{v%ME~{)(R7wdWs(^{W2a#+CQa!;q&x|?yK0T$8P;W z93e8@jQ0&bwS&1)M)nAV#M2d z{A3F-!A^BmBL#bqFBm>rycTsK8Q;;D$N!ZLE3t$u9_Gf=1CA8>Kj9UyMbsQQ+PN zxn`Q-1a?T0kcVJ|Q!{a<1u?{yOLwFy5bZ0_1Z-H3~e+U>A{ z$5)h7s)XWgo8Cc=WdWT%B*OHKtmixtSsmbuL@IV%Ri-BCvvRbLh>TA5yjU9;ceFL5 zJ=Q0MLf%`;M#r<)*}Jv%U9}uxz;;@OW@HaZt{`}-O()sC#Mg{i{Sn6$J#j82y)-0- z_z-Fj(PBTIy4gETQlCUpx5#sh0Ih)I>wH0*fg!ck)%I-m9KPRaM16Sgj!RGq=*zjg z<-%s7VqlIjg(-cN*w!k3f@W^WY%|H}Y6E={=D4#|auJx@A0KOCKCAl_Oa1);f7)Gu z!%Y4AlgNl23_5Qlm!sPEJ$|cuz35+VfWO*-`Gl1`-)#4PcJjhd!kM>^;ZSeeGeRNR z@g2$fdn5#0#uf9mIUqB{{iZU^v+Gz3>?>F;JhLdOKHt%SdYM)zt)KN8Mp)QbEpbLe zAX2(Q1Q~+mI9aC+Z$*Tdq5hY(1VG}=PVE`Zh8lf{N>a_TE+KXUPI0Bo>M!veWfu> z*0vam)+)C-@9%w6bsRl1NHZkAH`Oz--y`X%8^<-tNM()5(nAI^2g)ydeYiKJm%G{?3yAt#S;+2 z0gD3!lt%$%b-6`L?X6{fX?(1Y`kB9WPFpfNAS*%!=`540pSzO!u0%eMM|Ul=q#6`3 zCS#>tObF>UqvFi+e9@+Ls5|*nFMAE_ng!)NR1;32R~rR3|XL> zWPMV7K--7zu`lF8u|T@cQi)_>A+jJy466woGv7M%4iGHy#Vkrov`%dyNoR6<=d<_6%l96tY$2-2?-N3K3S zxAj{TyE;Q$y{~&7A6gT8kaWM2ct0#L5Y?)?VZtgh$ugi$9faXzy=n6Q3D3uE27wv- z6^Z1o&9(F^ie%C>0tncFwRTQS9H2x7!8` z#(a}8VA^AU9A|5ee$9c%dBl~jB%NIhSwU2463;Ox2_tYWP0n<3J-+ZhI9MLsv=u}dBmLtu6c_{j1CAGeGn9YM<4hy? ze^>6iQ-6o6p-CB!>tpSk<$ z{`cU=_>=+hceD1ppAV4oY|0SAxdG0$&V-B z`IeYitU*WW;cwBMy<)t03eEa!-r>Z{5y>$0n!GvjKje@+zw<7H1&s8N5;?d*Tz=op zK;j%oL4}eKgkn?aNiI9{Amdmqc=ijPw5gH>%T?2019IbZ!-+Kv3J& zmPR{Lu@kuw4OcXJz7a(!9AWIJ@4f`b!^KY&s8!mtrf+@xt6dA0`M+h7-vMA z49JW@A&Qjv7Ml1C+sxvdL?anHaHIIn06-bb0t*0ua9M+>nilPjD@IRk2?S8aXCg!l zn02r7f;!T&Mod+xdZ>&f&IP!l+5wze!;D5R0xX8R!qrVVTuFy77$M9;h{Q;FA!W@# zTo?u_qUF0c8+&O1bg+TeGZ3?ri_S8pLa;KP(zYlmq$ORTh{dKhR0uVjRZGM|MI~PH z2oZ&v%FcoXipK7N#JkPjFn~5=suUcB6q%Z zoXxU-CXO}hvrHVk_|WZS_XJd;dNgu{5Z!9dsVz2PC~sH)g9|u${rWYDTrFF2p-$fItO2?x?&YO3jiZEAtSIkAZxDBBi^y8}N2vIqNfIjk_JF1TM4*7& z^Y>s}tb_n4P!offhW4A_S%@=t9{Wz&fPY(94FYv%;-eM>qI^D*icl(#$uYyngKh%C zAP&4}SrkyJpb4kF@fXG_-xI3F_^KJfQw#`jwYmeSi6lruUyW)cB^XWWt2*Ps0f@PN zKfaZ{@y-n1Q5oEZ&R3%zx|9GafE=L95aaLnuq{AvUig*FOgUJ!_-ssQX|^`oZQq4& zl@1d;yHZ#e$!z8P|3@#6Hw+WihUr8-?lh+&-a6phMRx)LLWW-$4Cwf5#yqbAgCJBO zkalb`zmL>?5^I|uk4tNu`MMhh*v8sywKvvBvF*c?fMSCmcQNj+{8hB$uInf^@U*0; z%JR&IuQ4SpBZUUeMq`OY((!(0pn}Q$idWQE7+yajvo%a^$>Z7TD4h7;hBX|vJrQ0j z5n+$dUQeJSHBO^V0p53M>@uv?yo!jf4!-Ih2+X)m9ezO3~jSZ+iosH2-a&|)Qq-K#|`2}s44LB z{a#MYb@9SSws%=trse9ifm$S zg|g+{hBLY?t!dLZVQSlQ10aqb-+=t?J^KeB{`0`@e7R z{=kq{8psw&Fi1cs^AUhZVwv{0UY2iQ#(mXQ zr(G*-jkUw(TTbA~TgyI)w(`c=slxXtCmQ$Rp2(z$ zTSJ~Z8)F}gK+fMY@H{I}pw)THCy$uD?EYgdO^fUKRz-{pGYzSSz93nAyg=Qk7R!Px z5r@DP%Y7(9I15}&&`Tules4ZfWAdf4`|O(g;OopGgL%Jv6CDexM!FghjTk_)Ms{>9 z`wtdvF|p*fpw328xoi*;a+=7gt~HD79dO5d0g`N3A!$w}Knb`W{0H|oC z9*72M>K*c)cKn#!Gr@cV);J5N3x%Qtkd8vyhy`+^_Y5p>!89tUX&^?{m>?2tU#pwW zxmwfD4XZP4t+;B)Yd=SIj<>cs^!DYiNIS4?qW2^H{4W4;qoSyozQNpqwQ~GMx^IQi z+92X_&Q_pO)-FUMqe3F0x+ucXxiy8KToq)#?ryo%!T;Ws{cb4MTSCZ9f*AJ`4PMbN z&wQ2o6#5BZ!b*8`HMBT-5e9-GuTQT|zPfXZZ79>*!*h|VI`K=5( z#<%fWiHK-**$SbDPMfK7-3tS&vsFbuJ+IxlNuKNs5KI|M_T~xQDC^6PrldA{UNEI8 zOTKa%5i*|fm~VYJ@Zj`$6PNC(1qxmd?{q;_tpp6+29t+^7jQANW_Yt~>ou;;m|zMb z2B&m+qPL%B&7F_qtTBd1hxaOPFtQWahiVYlC^cGLvV4(h(Njn(=lIFfPd}E5f)WN1 z{+jbU>+Fx2PTvBcgZ+P4Z?7{V$bYgeYw}8&)o+6cFxDCuWSD6hO7lvozLKQB!fB_M zm#e2`mB+B*CWJx|W4MsqLQ=1AGy z+teNN_I=YWK0DVu8XF$%^fPK7Q{v8d*WU{jauy>X6ARFeM!YQtQ60~&ol%B21P679 z23*16h8yf-rL98&M9jcQ5)>#xyH3UoYg*{iE6>|b(VMm$iDnPgf5*Z*yS`f{S%Z#KOY*~SZbx{@ z*w+W8BXgV}my7Io?1G@zYal{lLOsNbdlyYzbKASX1QGvRzrQSuW5RQiC^^dVcfP^U zBIA+UUWuUS2!aKS2_nZH(mk3Q8XBU*1)!_t+hzkZ2vNP{yR|#6P$aF2pgNdK zN1AZ|!A~MhUg6fo%imH&gwuJywaOlJ&wND)>d&trMM{=TIx4ymItZgHX{d@VjqYBn5`TV760*ryo z-+sk{Jyo40yt3Q>{YAnU7|(P%(eWTGW`V3zTFpKqGdSm{B9=n{ktVboiigt|PR zmNfW7xI$1H@ZkCGZDIV_byOX|#wX_wat7)hoKQT`2@58iZSds6$rT$RsPn-)INHd? zuVV=eM(~oFKXDK!rhLRv%*HHQ2EahuKF^1$T^c%(44$UEJ+lGHx(@D$y*DtPZ-h%$ z8ILukN$Vk5qqKgJm@qgbBtz+X0$D3ffOx__yfBqUv0{dc zRhK^5I`Bbe=x*kR$|Z9K2oL{kweHRHGxe5nUUj zV5}G>9mWNVN{n34i_7YQ$(?O^Cr+w){FRg)%-Io-_hML}VBAc3Jn>IkBhJ)$qZcC| zFK?EJC{hIphA)Gbj(4SDX^?y`J++c=i;pOq`F{q9=FSJIPPtxMkHgZ=Q%uGawqH$I zG@dLsss$DCNJ?+67Gd8C%`hpZf+|;{XX3rErn#Y!{YkCR(gKk=y3RcHB*qbSx^&Ju z>xDI#PbO=|^2swzCfHrKp0*eX%67{w+^{(mUov4(taS$7 z?9W|sspP&lj}*LH1&D&95tK-1kn#Dh5v$`IhquEZV+yp}V|2TvMu`B%6iV%`Zko1F z#A~~c31^~Ufsqb8FQX>+da#;9TC+@rd9@8vOk$WS-SCxZ8P*h`m*WWD_+^dJK z(*cZHHBFS1+RWYK>k{>_V{JCwJe+x9o!qqY`E6eP$q38`@UL#qK7NUoomY{!w`^$T zgmHmVv~{L2Vv}0ZW2PE27dLJtQ%>29YVF$b%DYI9q*PCKlD9qF_>8f}Z#Z|EjM|A3 z5dcDk01=UFV4Hz&0_qk7-L@t$?{SBfXu}xrw!wzxDH_NlocA;^+O`jGbp1Xw$Kmba zRk0^I6uumSil_5VlarftN+eiH1d@`YTJKi8zfHu5Fl@B0%Vy9?6;9Kp?O1cp{ZFjd zsYLgRRP^l8qoUsUXItBvYR@FiN3O4S8vXl00vpVT5X40Nb>+3260KOvYVKM;N2)9` z&VE{zHk~o9FFy-oW*jip>ejK6sBE|H-MXzZ@>|(2sh8Eb z07H41kTU=gn8P*|W}gZ3Pk$Z_iMfp$VyZLQkly?2eH2KUXsVsQ?l056UE6QjLmi_H zb>yW!{W8~kDa}h+Zf4oVac>$WgYdU5j*jDkU-5mt-{FyL9ZpGs$~^b{1uN>Ui_s)} zEMtWbZ$ke`+K-3QzjGKh_Wl88zk;Z2unt6nGA3=kZu4NypixrAHJoMDOfbUX^_8E8 z==#tNMl#$TZOx*?%F%c5r06qA{B2K%#r$3UN5kGTlcmz=2cJ9V&Tvj58~7K~j`<1{ z?4Sk9E{khAQA=}pvT(woTteE>7xcf`#nF99kWGpf69I#2aXhxMXz#)pP1?eY=^33p$Mi~ z@3#8V5Ad3K4YV}sPB4=t#qlZXfE}cbAz45;R$zs*qVus5HwFG>@$hrRZ;uCtiJ{r1 zoTjY~*lP|mv|ub10VoJ5954()52HKErN1o3nz+IcqzVkM{(&k- z;aOnm{4jqODQUp*f0YdDegYi? z{A`ou6`YOfW%+4TXVP-ka|qz9_F?nc4N<}pFM=inA0!SvSe9S4h2Y)+{p6T1)JRmE zp@}-{_egCtD0gbjZDrr>8sB&Tu*B2U96K{3s{1gU`J%XF6)+=Oid;leXDLp5(25q) z#es$pp&l~?GPsrnERiSZC6KZq;(goWS7P~v%=;(s_{*Yp(geSDZsd?$rqw0ZXwgV9 zohkWswA*8Cq(028gxk;L{~vn9w~otxQ}=n6!>AHv{%?;gLr#Q?Z^9Qa&J2WX&P}e& zsh((Lh9}pQO@1P+bnx?`>3+-)ZGm?^<=usk&mfJLw{1J!Qm^0PH+1ACPHtJ1U4)F8 zo_0w;9|08^01Uyd$)4b$9)<;Bj-mw+4IDc5JJmE&*eYyEF>(kY_z=58`=_yFfOJ>D zjyUh=gp{@OI78CDX=#$Ba@OW_jbWv5B5meDLL1dW{<*3xmli~+nMDhbOJ`jGqZRt| z=Q~utbb^Y-6QgGKs30wX9={YFqB9~B;fZJ{6(+v;bbAa&N!c)9La_!HgMF;a1-<_c z-dg3_qWE)OcSJq_g6USitgYz%KJ9P1H}_JTG3=TQ&Gs}}^mU;)lt>VB4 zd_2eF-oY5^?YkgEKmleV`(XtEJ(a0u4Aw!m$xhh7YY~OU-;1D=3iDgCm?PiMJ64;O zgLNXXtJUM-Yd*_>-!&)!qL*+f$yGA)wqOU zgxvJmNO*|`Mw2gP0$nsJj)YP^Xe|DkD0kU-4hc~X@H{g!f}bbzFz}yh{c*43D9QUN zZ)m$M`KljfAfVh3Koxryy4Xbk0>R>oq=U$nJ&sA{>A$I}?vj!lqcbqv=#Iv0kVUxH zlM@TUhl6vjRP1mylTho;%*?h>Bm||2C}5G_Gbn9zM9069yLw{TVV_{Z-qS;5zl4%f z!y6%QXcj$U!uZzPZ*E)8oHi`d=B4uM^z{7x$HMp0LsmoE5KP9=)}aqrR2_ZN904pL z8|4VL=&pW=D$(zC!i?^rLP|10MdFlzt4gvD@{ooqc0#u&X&_ml6sI^sh_P&fz|D{q z5kLWJ7&CX>q8X*6z5aWq1^^N6D*5%;efd{z%g5hVb~nTg1N_C;mHmxq%VP)mk+ysAOAyx6z3Y(S;3 zHH}3veVX(1MW3TTjT1`R^Gi)KdGldYw)-;}h=0xVJNHu9pe-wX50T2cw9BHEi&&V{ zdlYp7inJtR7shZjqrcM)bt4iu*SmmxOa@T!vc-?n7>`f=0l~pWN$ouzQ zMH_01KFpqKdt!FZzcG;jfWQQET~$-+i8J!eeA{!iTk4X0{8h3GJy-CjR&2ED+#Pk# z8@H%Ooc7%lY#H{!>y7kkid|fCf7ZW-Z4t66^JQz^=G{H5p1tMX77TBquc%F}PSot_aa1d9zY}Ow7 z(y&$Wz2^$UMtwgfllRt>D}YVyl~-I9l}RYTiBP=DD-0iIabuMf9W{x8Epz;9bf73( zRuH{|5;0e@OEM&zY>Zlj;be{A-x|hJ);ZOU^a;TO1q)bf{>d2rr~cN4OdS~g{l_dG zNbrf)<1!QtqA>h0M~W&f_o0Rm>pVC`H2rv*nH4T>r8fRii1htei@4b?XOrvyH(%g? zVhx7u;}&a2G^Wc7j~30f?@f6^zs8xk)+zY*MUhq*O)Hy=P#Etfq`el&(*#byc~oc0%@I*LIt$1)J2X1Z(|8e!Jju(ElWH@`{;GB@LgG^*DL zA%$rqi}3nk62Tn!-b5*TaD-xeFqOZJsX%OoF}B-j7nn#R!=N&@7ri=WLl8Lx0R++; z>Gt{kP!~opptBkYDNq@fkJuFan3y$27{^~R4J8aqhZ>@^aH5kW-XodO_G?h@!lyV7 z_X3s7TyZV&DSo(t4lt44y_mv@fUu{k#u$kJyg6c*w9KwY2rPHt>R1slM2raH69zL< zAf*#j%2p6ksA2*Hqe+yj$V*A98fcC{kfC7#L`-mpuQwUQ$9%e9$7{e_V0Q@w2_1YI zO^hCn@5bBulIej+GElVAM@42fd^_aL&3I20<=1DGu%XuV^j^PL?*0sIdGg7y<%N!< z7iCHX6qg{5&HD3FMq?MP=Z~1@(qny?{9N1hNRL(O2OTamRnX7?XiN2cr+It(coqD- zYvkN72sVq$&co($`KoIgz^DxvJNH@6=`8+eLdjs)& z-5PXE-d0zpNt9(sJFP)uEek+lk;vB?8Jwyb9?09hO`+%Xt}+tg;BG>-e0Pma~Yw)%oz*Z_PV1)fhBFX~6(mNhFNsIoMZJ z*h1nC<-vAg2#b)2L@tyd-K)bpmH982#rz(-C_ZzV(+Zb+GHO~ic$<7$xuJ=~u@5Fg zHR7V~MJcwbOkqRF#T$pFa;FF!1Kjm3i&8cUTLM5WN3Orn5?P+pIq+##iR0S9`75*<2EEjB? zi(;or=Ej{`aPyWD%)znwT14t{Ut(J%n#gB6WxIyZb&SN}a7oIH3{S*BfCzz};Q$IZ z0rshYLLDaD3@|XljY60p8>Z$O--%EgD^WO--?Hg5G*`jLh^R%`M7ya@-m?k$P_P@Qj;oy{w##ycBXfi-3B%AQuk1VhNeI*b$w z!C--Gs6U*Hhc<^XKvanWp*r=>*7xby@12gC?Tg0@F4bQzY98J5Rx+V*w5H&w@ULD0_Q63zKHWc?W^vE9k=`K!^xQ&*);naU`_U1B6>j{4wGvvniI zcQtAT7@^#tw_8~O8y=0AfddU)jv{??a7eUOY+HC#?i^SLQ62246r7S zF{2tBVBOrnp?LMRveyLSm0hu!Iu1(lI-rn0E4XIp!eafd5 zpGOKxg$g!+XO-qk=9SI+cx2fEBalXi8qx&$4IBWKzU97+y%0gr(SQ)B=&2s1^EXjp zSAMy?Bs>{AEVV&K=YNCqxzP!)D&^P7UGRBNGCiu2A`IUSyEpVp97>=nCCyH`z*7Sb z+e91|0v&R0x>m@CSBFN3TN}W6#K@vvA`1#E0YQpKK}U>8Yf~I5xA?w))%Jb<+;SWc zmo#`Hxt9xO!ELnBEQM?P08jHs2*RFanyxw@7GX@)CcVM&iV;&0Z0;Zg3V<#j5m>|G z*;VFZt?>+TPe$;uUIo#{F`NY}oH=+_a^^1AD()g<6vx}Q+0Sl2AJ2-vck9h#9$p=X zSchszssI9jL%=x5)3agQF4JIJ7)Th#C>t6oYBIMQEB+I7PJ_|n)E;^*vd-qyMSi~3 zcJqdNC^bocTB=;N^u+A#vp%Q!kF|gRT01MRkDGOv-8TngU2w$e$~mf=hJ9OAr!3OZ z9&H^HTi=1Qx#2cZK4|ZrmGHY%ctsY*Z=zaqx~P(@Bwd0{ohI#d0b$c&1)pIVhS?oBq9_6vpM#=nWdeF<)Hm!^PT0U47| zA*PpstO1gf1ZQoS{Ye5bz0b^YCoUdF`x2!*v%*A&2WdlTu6yYEC@nmjcm+{4g81RK(Ww;Y`Ms>kVj#l z7P0*1gBl2ce>!-rbyvX9?8i4atUYkqA;=ET{6u1Upt9J(+7yv7G?^jWQcy`h%FIE@ zK(fKK@loecgrGu%08o%~iPR^oakN@CD|)4RRg6>c#L381=;97|!|BIlsLknXjwX3` z)TIT&LtX%%P6cBytx1LOJB}?LZi+I0D(#g42MRpD!Duy5{LafO!sTW|*Xa?BIw-*0 znx`aIxx=~$^Xv5E``>*$`LI9+04jpc$W#De0-%V&^v)@{i8e_3R<{@!M8&=^q6$_j zP6;FyEtaWAhn_&;45o==MH3urt;=2jGR#?1Vvl|?5qV9T?(;zs%Ff>A9eYQ?j_?pf ztX^YXz0*Ia;5+28<1ero^YfStAUr4UivK>zhK0*jIt20twwNhk&|0t-0*Kn!Tbj{) zwSHoAAF|yavN7H&t}+7N1a`iVdQcrTBMBvK?gB4&oyVIt-5wgeD=cKsc`G@SDeb{; zW9}uZP_0Lb+TJB*dp}GJRSC6hoUEU5{1_hhe7aGBRTqqM6JeanQ7%$3w@hni9 zRHz(`l|yi2xJ1Id!$F9ES=wU7o(e@+r5O`efUG$iY|C1CG=t>zJYOZU_5(}n(Ykf) z50*!vGz3B?Arw1QTvU7R83-O_K_SxBz+bK+xzN05vF(s0#u!9)^~2fiiHafwkEe#ihOSF2}! zsi=}Uvze|a+G?OI3mDDjBo{4?5lV5G>QBMSyga5Snd}=ar+|F=w^)#oHVlMOCq?67zU@ zW_1VaB3lBN)TpKcb*xDoaA*^6xUvS#Vym3_8@}rB*R`tCp7#&>|M_E$Fn( z&6fNkbME->?ETnZ+ketO-Q%Pp>9$)+QSf_9=e?A-PMxLMy*1hx5sV6%6`hq-_Q6Lo z-w?q&^T`}Xm%FOn3hlmL>AUkcqh}o6Ya+i+sWaExTpn?{Ct5%>$QJ@20p|dPw_`EC zR@^k|RbClq$EP)mJs3MN(ceoZu1z$dYLXaG>)N;Bqgl;AUK^8CkKO0nW@S+A_fb*Y z)$gUpPMp=zWV-9Y{3m6rtIdQ^mgx(K=>y+XH$Vg=6$o6UA>2DTyu97JIk$E6@^0|O zHF>O%_TR@h4BPJ**n8uQ*~fa7E_C5@;LNs3y)`9J&4v)VQN6&3fB{g{?AjfmKH*G< zx^&rweRQ#X(U~2lVRxRF)W{og_?C7pJN$gp>&3zGzVjAIjp<)mJr|0e5V(9@osyZ} zB;qjAQ6p}xmRKar3uR%9hPBG#g*N1zZgp=2E+s=spVW65?&7RyF08)Uab)nZFO}{K z*}70zNd_|O7W6F$Hn6Kgz*AbQ$#X7wR|W8J+_r+u>4gmjEKryVf2RtBLL}e@;D-RC zL^$ANP+~u)jBj|w^QSkxIFkLFUFA&Hn!Og6P{$aV(-3w5bR}3DXPQ@6KiBh6> zR->?$LWFU)?!z@Cu^C>uZJX%CHi21)AeObqIY~|;Syq&#A>`J1?8wu-Vmr;0!`7yO zv7vXH$%rZv5sDX1LyzSTtjHF5!v3G&7iW{akfZqyNMk3l?CwqGZ7^=3w)7#C>8$L% ztr}Xro<9F}Tg#{fd-o$gz5LIBS8uE!v;x>|fPr zA#tHmSHW=S-HpNh+4r2+CRIz7KRppMZ4KvSd)MSB@l$n<-;T9K|GoiGv$HRXX zM}7x5fv*BZ&VzxDkZrMTYXO;q5mLUzUyoORKSfu^-M||3#JHnyz1_Fe?B@TBbMxSN z;yHgXMu8(FKH2}EtP5X{ahqCauHCgb0^xs;@bYKJDxmz&J_x&;`F;MA-f(m`I-7Ym z3GRVY84tNYEkgrqS2D`YQc|rfyVI%CP#ZK!(6--8Xjn=WP*9J52)S6e+n(wbr2-z> z6sd=g6&E+IijE4r zXQyh{_FGSRq$y{+Ha^b2KOTF1o~Q7}x#xy)-W-PjknM&IM5xh;G^w)gamCL187nu8 zbPHiF^zv{g64=2^32>zWqM$}E4Oci9WL%lWJhj=HtQlr`dA7uuu(4BzwVJ9?W+Gt2 zwiuPRGmYb^>*?t9Wu||kbj5#Zl^BLlh#-2hq!3wiwW1xgLc2Yn>l^GWdUg3eT>cJI z@_6}u9KAm#b>!7{Q0$XGmzS4Z)*msJi}Q8v9CBbpevzqku75Zh>Gn2^wc#!@)t^dJ zgt2LcEjjpcn||i2O1EQG>Z+#QDm3@9_tmm2_+7Ha#rd6`v0H^U*NUgutqAO)va24E zQHC{Botz;)I(cS$GTkcmPBn3_Y}bqqvrQ4v<$}(g$&ix~G@FuWOuAWZ&CbP-#xy4Sc@Va zhvs=NpsV{LTE<>-aRWHD{Y+~acQb*Ok{{%Lgi!uV%wZ z%?k`aYUp7IBC9V%=LhzxFu74A1yOZoF)lZ=a@8T2Q$8F978%M7&#`kf2D*`I$TN!AYwG{U(>Gw9kzeh&Oq!xmtzhqbbDVi6e+Dpox{aT zvH;yR1~$-KYFe|y#{HV_x-iw}CbiFg4v~l?QVKyu0je1^25~SqMrucU+XsO(Gor9l zF^yCHgteP&>sT6hekVgC3_O95z^yVWu23-0HX%$Uov47wre92|H_Bxhg-zMAAro1} z(ifKQrw*F+Ndp4mXsvHlicoD-1S2z`C5u!7%_(z^IM~)IO8IkNF9b9PFt`V@1##EI z;0KR!wFNB91+qJ=h4_(|wwM>_Llf^a`|1R*B9enk&|c056zC6KOpJK$O6f_--% zxu1OX68E0}Zg&en^Y~;iAh8%oL62sFMEVqFWC}7=pi3ehZ@lr}O0v?`#s1%nrH{@v z&(EZSIvy5zSS1;_#K=)xkSxtYalM#d8v|EX^^_!ng>x)fZRgwBDJ#?To?rEPWo|j(&fmr+xtggjb2A zX__>WERK>%L6sztr$mmV21JU0x%XdhKHc%5x_MmNyJ6(k17O75Gz?%v(jrPVpctEr zSa-Zhwqo}5(QSo`5NzWV@W!5CV$q6RQ?oo_6G_L>T)SVp&7~vN;h2qa{U5B`u(1R} zNf6w9 zH0W(ubw6U}WOz`%>}E`(yEf3s&P>NLCdbDnYBtNMub&+)JEf{Db@pQ}DWeJa26T{h zI=JJMP@@&mb2RabUGc@8O0G;wJ#*Wq3eHQiiyAE7p;Ov5MH==8(KF(O8Kl^oW3k(9 z%RDy)TRPngWsU2B<-27*fVrd^IpKwek%SCllxy@90MWet%kLkjjbuLWh8&$fa{yf} zRwFj2Fw0~;t|vO+Y~0@AI2dc(LZsuNRHi$p}gybQR*g6g@+4D?&O)5_i*#-@!dc|HdS5b3dF zPk0Uj??sMP#wz!mjTTsvyA+Je&-dD;LPvvaL4VWscJUHOZ$45aCAo(8wjw(qrU`MPYd=WDYJRYub?Ht2$4QgQ~QMk5UdFraRQCAK3cvdtzE zU#63NIMTrCGUOi>NVPh}2r^z;E#W@O-&Ruvwo`Sh6f`m5!iV+OeN1E{08*Wh2@T!f z0q@~(D51xbIdv!R>-PI|_3e1;UHouo+64pxiVjN;v2egCL4DgdYb-!&A(UP!5*m){ zP)8Mxjg!Jq#wEDFHtzX4qK;bUtjsA;ofeRSp|ksb@6PCT1Pj?!B0+Cw<-6tO%Jb!7 zl*YY#Z|E}lQyrLWgFs{(6osO4Xd4mLXju?Bk9%Y9UfX(oVV4KFrv1MLjwY4HdIS|P zy(@gy+Jj_!Az?@jc4;fM)w4L$b~7uEIuTCo*6qWi!2XTF0d zx43Cul3KV(oZ}_S#>AxsB`-sfCd5<`7K05P+7v5#<;IiD8;q})^!a}0$E^?!knB+m z^Fay8Q)LBhq}W0mE)i`}YBa(Y+e8pTwjGQ7|H^o#I_<5a>%Uy7oh?0zwe!Q?Cg%_( zg-#i1p9%vbEzvkF3ae2Ob7mV9Ri2umYRkpbsllvF#w^qpx`mY$gI4%khk9p)7j0wm z{~R=S-_!8-?ESI+SCGh_#V7)TNAVs{#98lfph<$tiCiGXQMQQ)j9^7Eh$pBi(Z07q zG2V1hR~jg4wM`5*SIbkYrYZUF<)cLVdm_f%SE_8J%WhHT-+|HFr(JbtJf}0#%=zZ& zvfORx%_Enekje7wx1yZao+wMRbo+2feMFMY~R5E=!qR(}7Nj15te%i0nbwqO@ zLM4BZJ@fgxJy+WC`8+GRJNhEzWstSoVNBK?;NU6D{H)gvVM#XtCfx(A_s+3sYip5h zOm8z>Y+n@$2o$LW0-PHeBn*rLk&u=vH#LSNLYQ1uSWL9mS1#turVbUPDWg?VVsnwN z!BS;aC@E!3iM!tAe;GVDcw7e4(0q`pLZOjwUO!)jbu}XTnypO@gnb_^r5_C<_~(xc z6+W#ih|7l`xv%^knWct(IOl01%UaY?U5O=Fq!uW8ki))?L1dAPEjff)TK>h_3vmsd zXDK290)iy1)r^;h7!P-Vp{wzQy8H@1?Iqz!#(n$Q>*c`K`#B-D?hL#qRSz1v&g zy4O8*_HXz3{XAAVZz6Z~#Rd#x8$%mtB-_t!ox)dQJ73QEn6$ z(NF*+pvS7=v&CDxmFPU5wj#d|$JfiAlaBm`Lmn2#WIbKn8rx3t4mtghQT+fWg(b$U8XJ-;43bUnm$0uXd+h^%R--Z)T*9%Z;r?qwYxA)M(HdiW+z-*#r zP$NfXM%h&4>dLg;t>*8b6VkXyq|v~WdAc#VDGC$EMQ!@u42lkxou&N0V5 zIs?Xho(?h1nfAjt&zCwD_|)uBlSyID!No z9J&_KH5_7CP5ff058fd&vezu_!m9TVI-!Mwi-yEvWofaAK#0+AF?P5$2JaJMO5&Pb zL4}uDkft6B8k?8G!+~cLQv%^!v)!7zRf&q5lNilO8MOrlRFG66sWnQ7s-r}2uy~hg zyD=E;iz-TGM`e&`Xc=ml9OxpH*n{)*vW}g-{PkB{J3TsO@95cYIy!CDZ#-5HL@dzy zxGqkl&t(jv&Wq~hbei)30Sa+k{t~|!HfpKc6dkVR@U6IUvm{k@J<&&YnDlA7dFqLE zvP`ot8+BQ`X3qQe)QZzT3m;pd9I{7Fhi_yZvtuxdsVl(jdRMA_i6-1>!TBjO=fT=G zG*y2nLs{X2cS)(b;yC4xYLjANLC&q4nyr>Wyf9X|ZJ1S6+G(^~CYLU`Dt7AS({1~v zZq?q}bmmrOYJ~P1P$2Z81!2dJS?kKL%b$V%ciRE)KhPO-xF~xV-F?5|n4g&-mW}y; zEA(%l5$NI~Mt%0ATTAg;tVeYGNT(!m2jEmOh34Iga-3#>aYYmk0{^x^Vl`Tc$c}UX z{2&Sj>5Xl|d9so%syyZYhHlIWa@!l27}g6h!67%I+b|Tum4qO+cQ|*KmJmJbICcV` zs`+BR-yflZa&mN0R+$tL#YEHzKai!jp79@?XZ2UQ1ol*z9UKtc?+hrAe~)~-$rKMh zF}k^3E0yHObxnD>LTH8n*qcN=edocAptjPgaCpFnvL5TKHBKPI#pMiK3#gfK zs0{Z#Gb8Hxa-} zs(0FVF~Jw(Z(UdD6*x#nx02Vs#&T{q!uKhe(Ew<8Gzgpve~ zH8yf#+`ipvgf*-bDWyPBN<=pNkC4E;&XyozYJl<^T|i|-^uPHFrTpJbJ>V~;pvxXZ zEt+puwjrY!kTC3!1?9=YiE zYvH5bzvunQZYKXeLMJtk(Id!Z+6;{um|Ze)6~{FXS6FMhnsqTWa3sT0+ycl-vXgj% z#6iut05FuuOx;3QFzZ^Tnq5s>VX6$~snn?!Nfj_=6{2C-;YC>Ex^=>ib9hzL zb1efr?!#Kc1!l9v^8vz@Y%Ijgixr7>aPhE(ZKW}g+|FSbj9$sv}dt)MuY1x*xoXTxkX)u^{oVj{B1M;5b$KnBR04ez6wUStv=o*p@`HFE%? z*HDk_RHC|WRIq;@9o%)hMol`xiiN3(nbAc<1pgy8IM~8OU_~8Xhc(~Z`KF1<)^8`5 zG}P#a1_~;cC=U#|M#w`MkcM$}qUgDj7a~$#GZX$PF2q%xv{?c`;Tu0bzJT1+49ERwQH^EfkFkUzO*8A7VX z7m&WjO#(rBUG&r_%!x#XoP_8$vQhAF{%2g}9btjW4ok`#n!114+u^c)K-?&iV1PbpJ=jw-qDcxfp{68Brrq}6TsMEAnB%9Ki*taa_u}9%_Y;ef zB&;PdkgMp=1!RcHAJ3{HY$Ee0kYYgRb@^U6Zlv(pAdt9VF5b{O?FUeypimvKZ(~CQ z)R7V#F>D0p;S)T{5Cdi+8OXf&B50zibz>s}yw*K1Q1?^!Ylh{ifs>RmjKPaRkTwYr zxs0J#07xYf1l<8*gjOp_4zOgB;6)a}0365B(fD`4wd#Mcd|C3WM^56O2IY>^h#3>3F04%%~9Y{A{~MLZU!M9j(a7 zjJ(vVqP#NBJ=8*@M;4M<^ZQX7C}Lv)G?HCDZiyp=hiQbIvV(sokYs*`EqF{5Y0 zV$%n%YGe$vMm!)D(ZnPWL4`TmyF74<3`qxfqu1ZtW5sMj4VxE!?GdQa^%o%&JYe_) z7L~p3AgFa-dyxXrQq%yi?VYfoMGgQ#1`5THV1pPjfRGR*QIIykkoX9yhl>=T|4pHm zme?_(R7$F3s-_T%`3N1)R&A6<fghT=f27)Cb(@-FsAR)TN0tAV)5&+Z{6k?#J?FJ!O5G9ESq=+b5 z6_Hhpge{7ctf)4G7|A-b3@8fmXqJgqN-znkSt2td3Z%9Y z32UNK;bP$2)Y*raXq&5tXk#uGqHWG0mFZ%Znks0dUCuF4O%kz%x&>nxs+GJ%E#1FI3`pxxy1{a6KzaPUd|_-OpOsNpv5b^T~L=)1``tk?-KNLi8(sLPNdfx1r9p# zI9^Vwiim=&SfUEa1&bsUfFahI03C+t#3`T&1%_&v^fgpg<{bwPD8N>MhxOD zn-up~cNn#5cXVm8uXke9OWQ+1i4d@+MdDQ8K^T|A#uiXseL(>1F^v@}IKyj;~%;}+^+ zW)Zn&&b4-G zuNaW`IBW}LW~qu+x|G7M9MrQ6SY(G|ZfxC$Rho%Vt`tt0gTLqf6(RKDEotkH<`C}+;wr3YX zUkl~V`UX-w-L9Ol*Rdi!Ea!%p?!z@X<-NKimn-wv9Wm9DonEUXdMUaXl5Ecu(`f3B zylvLKl&?f?Tvo`epY|ouL-n2WT`aD^Q+J(yt? zk+){7^3zCIA-JIKMA5t!*NH&0^Tx7&CsRE*y z$x@`M%v7dWV>2wSBr*I94JHf~YM^OeGU)=_0&H~4Iof|D(ZO(TR-(7alL)Rjf$ z<5TyPRX$HPpy-alVQpeKnT8MWxa(GwT2Vk*^jc$WQt6^4VMVsK+;PICEN!;a5W^b8 ze|r3GwL-rZ7lx{gEcG*btkXiJqBXUa+mvo#stYvK+fYU^hN--gx9`ejw^@j0TLxtj z1Td}0pwmo`Vis8-B0qrZL z06~PH2!AWcnn7Vj!%yp5*M22~PH$$bp1ro7+FT9}1`ErA(wU;+akusVsw0W1&rk`k z!I}IT6c2ANR(B`PeF`EZiYk#mz*0#-K#&PSQZ)eqL`8y%sJ1m2qJqMN7z+j?0Sd8N zNJz<8Eo%ybii}H23=yiWV#KsskX5S6fWeTWv;-_*u(63~FabywL<+FBNk#yqmP$}d zAlM55KoY`A5~NiHkW~SSia|gYN|utvg=AO=gi=OHSdfSak&KE65MZ(jN|Z@i7O;Xe zSSTtfLM4jJYRastl2!=7tgJ-ruz-nRRZnykQj}FFK?W$QRZya-0aY%5srki0)dfWl z@BgWn`i0v+;2>E4aE2It{Yn4Vo*|0=r>h$yWz?7~O8-+(7jRq;{@Y;Sg~0z}f3FOS zxrU?^;RgV#Y(t=*{jci(wqN`~Nw=WO3?ix$p^XX8rZ{Y_%U#da2p}2GdBmMMBOoD} z6V-WLljIAa7%&Sp2KSU4#1P1YVb~y|1`KZ#av*p&Zo|iVd~&aQ)AWHSIX2^o8Jqr z4V%J&sWf7fZ#1Q~6A%IY#&6>3 z{7<3^b}E&t!{E3or=WeFDUB8dF5rkzff65tL^DJvEQnItsU=ZEYc>n0E+hyf0AfI- zRUlC1O-KTeO_Y$L>ew)lK)SGy$igVeECS z%(5xJh>j2-4es~(S5j3`sg5%nW@f#xJT|qx&(i9%$=h5MRVK)FsH#9!P5>eKh{%!> z1c;~+gCvk2rogI}T~U!lfd)iW2@xb@zATF*QDGwifGQxsRfHJ{A__$y2@5EybEv9v zD5_Xg1I!7us3KH?RiQ+JtObCvK}OkG1(aoAs|#w8NGPyX6op6?0-!BrVNj^D2&^L* zTUyi=tXSH`5~>2A)JXv{)h`hUo~3&ld92~kl}L|6sVfkL8yNFtI7EQ%yr z3PzwnP}x8;2udI;2!JF=u|@+0iyd17E&~K`V8e+6fFj^984!d8h!Io@g90)lQ)2=w z2*gr0$qIy#WLN{$qy)mi6at|FghDJ?B%maKEnrrJEd^N=C8PjUl1S=MWP-qpA&5ZB zKrliA)Phk3WC*B4NTR6(i>*acRRAh^><{=Qc)mm=-}M0z2%u0DnkkV7_jh7dwPD5y zP$(Obkn1@^`E~IQUH)D8*DY=*y>gvA+&PG9(FXB3&M7T8O1^I~U)#q&FZa<1KZ&sZ zo+Ygh=p*~#3V+c2R=1+v*{@NBQS7w0*Zv+|ELy^u4nF$KOMche+@Ye!27q)AcfXWh_^#QCRw`C zqT;#%6#rQ-)|I&}K@rSz^!=xQ~F4zKGdXF!i1t(4zUMH7;Aej zv^j%8@*H%)G&0+DNLPC<#dVWf!8qTVC~zs}?imZsw+x4nsnIwH;}?gH0_l^Emz*i~ zA|NWs#&(7mF8b`%{f}-n1TzeoCJE1Ex`_yF9O2gS0h2+R%ZxmQWC<|YVPQgZaNhH* zk|!K)+?ffhyPT8?a+65kvp!Z z^uzgM^lT4Nj*0*UuUGMa*50k1WLXGk`KdwqsclmkU7=W9w%X3W?NeWE;m4Ljh_f;@ z#-oEnGQ(N+`kWcXIADKaeN8|w^s+}G{d6mWET|P$Ih$i#rB)?^!v(D@-QM?x;rRID zXBTs$rDawdYXLL@$tVsREL#W0U5Q}|6DkoB9trIXdh4EZM8S!&^8a-)k=3m@&P3P! z7xcKAWloL77^N9}B$EgS?oK=}jC;_%Jo;Zbk{QC?0fPY*WNQklR{*LwNu;3Dae=6F zkg;$N3Q;)YCkSYUwUbHt-O9}b6>B+RC>;v8BxJ-4kBMf6#9$0#4OCzkK)5LU2kD#8*GDSeq zz~rFUjkC{Pvyekzj+%AtOwiNyiJ4G1`{k5UAPpIqpITnQ5rA3~BW9G*>RG`SA{&cF zb@uH8{a->CwJKA1}tr*A{E`$Iikkf?u z85`d*KZ&3PB&^8``=)K!q`W|QImjDiZ~%5?cKo~V%n;N7Zlik zn@1>`p+*LtdC{$%c${b~@MmT^Z$=mrs~65bZy<_`Iy;bWbY{+v)FMDJek;oee8=2R zZ_n-fbIy3vPLUpwvA7eQOq}`<6Ly|VfJP^s{qxOwi5_%#MSAJk_11duPaEIc6UyA9 z$_h8IsAWf2q-aiSoly@54R^R>u*Z`uoLnfeE(kUusTq4zEW?_mY;G$=NHyj38W-)q z=jc;KS6K^s8V)z#3UDOarZT^E-U<^nuzE0}7eIqxA~wcANy|imA_2VCIvCfFc4FQ62L+H7OuH*GSy+|lFZjlO*$JH_#P9c zsnE)!l!|bW!8Rns>QWYU>#58XC$COt9Bv%QYSpFQR}%J2F!@B}I~4BiI`iEoh6+&@ zEDJOorZNqg(Y8$&21H>FrD~y=Znvc>-{ltsDw+-v0MV-qfv;mUycgJOBE1m<)+0s` zUDi$ySJiUsMcIq})sd+43_({RU7+Dt&O#hZCM4N7qL2>rT-=8F zyxwzNdNg>=?iYL58r!l(7Ci*xcUomsm=3P4X7%kM#}HIDo42@J!MBvYccTM*Q)*%| z!NEd>8*<_#aXqL(xe$^e_;Kky_QKm5(Pv1L#AoG~&-eY?J$|tGW1q*|fc3ObBncFr zR3Pbyhhia^H`(ri_VmZj8;}#+@wpqkJ2Cr;>#GpC&w0j6^(MRX;lx;SD{d$#Bm=`z zbP$~xy#exRZo|AsvdVxVoSB{k=KN}%y6|-QYKqGp#B^szCfQShn zfus32Iymxl$hAfX_L1d(>JJ-yAFODC7n0J1^J7&^Y8(XoV^0Fppyjb!gS7e17kYXVO9gQIbS(!9P=5N8C4Rw=v)08p8WQ&bUA=-uaZwCbGy@O6@1H zhXgcM0|Xfs_KPtpB9AyyOAb~aCqbze*}XGoqeyJHt7f+&&E3G7pgJ0Z7h)6#05(UF z7$eL`UOgk=AP@V*Xn|#c#)_LOb{JzAwfU#o?luIb4G*J@|VCJ1+b1ot5FYr+W4OR#S z+n_q_q3_&#*oD0tG4ATwr5QcZZ+`cO(PZe) z4sDjLIkd24-6|95Nhf65B5Y-?R;4@I!f7iRkAN&%2E@}vaKf`=IYi*--gF~yl)4&Q zPRfVg_up5L4KXC+Fvs@Ls$(cuE z`A+pgW|F)xfzc*izU?R;!t`q&*ngGdU_>&L_752xefm@(qu9C|NsY7s zP;@k2G-SyW4mF0EWvOi-jGET-wu=f1aeVc3xMp_rfDjIbC5X89VXL(F#@@IZfR!hx}H}VhVpIof_w~8WXWVrJE2svVu7Th_|uBvIY%gVzRJ_sEFJ0P!H)pc474RXX)Lh z$s{5MQ!_tu^N4nOA2JEH_v~}xLyAb|k%2qS6l5$=P@EMJlpmkI)^9WdE?xOPnZ4?0 z(6^l-OsXFWK3?HN+yeLRA=}@OAAy&40)p(RE|pLM`hQDV&3a7dlMN_zW?M(P58`OY z6YoRSlZ_NTN3wX+rWq%Nn@#Umi%l;Kw$T$-uFLB4#UefeGM#>4g2-ZlL8Mm4R)XnSFrvD{@**IuZe9kvJ4ZxA7RGp$PK?C)4*E2_5 zU|_;J4sDYxIs*-`n!G!^XfgmvP-_aT3y39PkSs|o)@8#ouHwPc4$ER6a%FJd!+TBF zV(zaEz;Xz>4;KKKcEy?w)d6nl(IFa?w)SDh<(iwP7U?B%DiR88hovFq#RIHB5sN(7 zLxhY0fuOZmsk0i?O*FZZ8Ad^=jj*z%YREFXLvT$b#N7M9%pmM^WG)=snr@bwIo{qN zY=$tLYC`hD!G&bdYU#lkID`n9MWtbQqeBOiSy$ebjN4zjm%ebLuBND`hE`1#EluIR znlQjgQenUp7(eNKPIdjANy{0#zPw#xW8ao>Vsztmk3Ny~>L{DVQUS zFc|~`L{vry#I4E?zl_T(L}Z+)qRXocn$pskE18&)dd*)A_TmQ#fr;S&i~=e^B;k}) zf}lu9g$M_0cWD~1B5_p+1>3t`6t(@|=yrl-E;#!bv90@GEVzkb3pj zN$qrg6oD8hl1^GgD#Ua~ZVqzB468}0L$xRj#5DLq`}2clBp7Kj8IOAx3&Jkpjklx# zpy-7>h+G^L4u+#Li4Z1L!zfAOSV_=^NTQ!22n%g5Yn`aGuS=e3#WLg-w7!0_+QU#I&S8<4`00XLve)Q4f zVZ7iBn8MbVFvA05U2}r&S{vT;YyjZS;l{qiIv_7BgaWcpSFcTm6LyLV*(48cQ@As- z9W_o$-yG9{sx1^wrAsWqvNjpl39~k44BBHi3qaAm=+u_goZ7syq(oCz!J`gyVc{TY z6i5yP=n$KzO?cS5(x;m$j~7XYv!+e5ruWW`4$hFkfx@A~)x}lwb)4(p^^nkE@odgQ z*R>_-VWhCsLx7yCgR{M|27$2f5PM-jn7jOx=cOV&jwFh2AlTA7=)3%vq14g;F&9SZ z&T%wDpJ@8=#+3V@>|$w0!}L|x-`r*$J$*uO*~b%%FrtSb&#EGiJ+FslAD%>Wy`Ivf zFvPi(FENEp<{7PhIBlCN7Mw=LTbt3R_|tI>-Z15pLRau~-%dr7_i@m{s>H632qE{w zJ0D5`9%Fz|LyfC^sunnaU_>Paxe~7~V5zfiZ$;hgW#rZC?a@C1cR)AcOBkm$8!cOV z_telCnS$vw!)wx&I;+6V67L92i7!0t(&$OF)1(elu$*)2)O8`-!|K`LvMdo;2&_dF zSr#a;fqXE?I}S+K9*6A+CdiZ%QV4UHh;)Kb0%|u-LwHjPlr7@+ri0dR5zG6pO>k?p|gUmnV2zGZ6!#C z6KNu81u2PAI%27ps5yJ>jw-Bt#KIaEN_YR&|U| z@0tKr=qfZK0_uYUD((p+l_ZEjB9hY=U9iN$>IVpC7;&MX00aOfZ3B-u-vjcA8kuf(dQlOb+1FPjtC@#(E%V>dGk(QVB&_ z#k6|zT@2ML_BRrOlJPDbZPkd$!}|RQP(2ME#7QpqEF*HH3BWeK`DjY<68OzD14t9NStHK<=E<#^t$(S88E-He9 zn$9^Yyh>q|flEO87)z=;q^KAjLc{RueN82}hgivB2SWmms3k43QiUMJ8FVs(I~12g zU@)MFQraeC50#o_-LnZq7)8?3v~-R-Bp2B z7C{38`&25RcCCR+2^|&A!t~LBGjxEubojava88pr%BtIFWf8xZ#hH9@BUJ`gg!pCe zuAVSkMZ6sHjN+1$oRmyN4Yy&gpARDD@DX6?xq=1`PNq+Qhm)~AsG&iJzMP1v1`Vqj zNZD=nfLkY}3yz2%9Xlq_)vX$f0y?hPbyXLGgH+Ya*|YF3upg(um?-YQf&;#@L3)V| zNKHV2L%Jd2#k98$99Rt8i38X84|%eeM(h|1)V)?#H}#JSci3A+DyEieW7XY{C*{n_n#{BZe4A zBm}-|P?1Ig5?XYc1qGoQpbjo9&$P1;*DEd@UGJRJxpZfCUisu*M$+V2M5AY0LlBH( z)e~lw^~v!key17OV#H<&B%@Z@T7{!8E%PuATvaDvgh;_eXl6*7d?;YqQwR=t)X_*| zfnn0Zf^^>Iv}xVFVr)ZqhcPB)6?d%66U%d1jTjjzb!O%Uidlf2MCzZHeP$eBl}k#n zs7{Sanl&_OxAykqK#)^yWEHI%s~y|!j0D0*i(eiU3$JRs>YOn_4L zOCt16uMUF>3bIpn+EndjJ7ti>qbY6OqsRK^{9~q$IQ`nxA=Hr$|6S*ju`Ftm(Xnec zOv)~C;k}u@?nB)`*uiEt*p|Yx#zhFEP*;xhn%LM>Z4@=vKip^~Sz?NT;{_f(;zjVA zb#BQkGK$t-<@)Hk5=PAhLR5z8^V?J8BNM^xTuVP%1zW?}!pHJ|3H?3q!`gLP%73IG zl#k@RT1MFjh_wG^^e)??R>%w>+SXlEHJzPgjAuhI5J;_vs?eAaxLgng*hi*#DT0WB zh>-!79hU);W-v23=0;A70d(pU4IOEaol~Nu(m~P`;>M5x(F0_r(-*dI*uexc1tKU7 zYZGP{oL|WRji~i|xjo_zNA2Z4_lfWhiTfk;)Acp0_*9#~%>g!sW`*fIB6vJW0&l z#G19-Im1b&vTKd+LDk?u{`0gpg(C#$<_a67>z6cCxLnBRS{E#y1TH28rHvAnmtHtv zcVztJ6T!!*n9Fz9UqY*;q`L*}IS+e+e(pySC7a(x>P zsqd%K#Hn3p?AVbbYJ@}&wZSAx3qN_9$z54l+brmkNuxASu0eWxq7+-QlMB(>v!?DXqGnh|n zMQbuxTMv;H^#Y}8AwNCfKg+flz)We|BO|as!QZ6OX~aguQs}QPxQ_=KLuvuG&X_o} zsWsHpjN8yRnd7W6aibNsiH$*j6`I5PPAm*QqU}-Zoi(91XBZkX6f{^^t*m71HOW`$ z$={l5WfdYu&@{%_9a&ijX-9PWvw27|?#DL&n^4=6m+R+Pf+=ZGwB^GYd!q)#gpO+h zj50Xksuji>7(Cy??R0ULGDv-xafdk+QauGl&qiCZa#(+wJ; zEJ2AxzHXinoNb^Q&N63OY2NcOl!%d>p{%h7bSznbhkqOA6&FUuu>>BMwACZ4A=|j5 zQDFf^QV76V2rN=aFZ;t<@Myw!=a@_dt=C)%B)Y=`{3+$$bJI{#aEymdSx$zG3Jjo8 zyXP>_$TTu@nt;07Qsu^D4=gCvYR#-L(EkP&{3Qed>E>TKhYMK~SytRj!LeGS( z3YnXdp_dJ8V8^y=7;Y_=nT=o^vKku0!n=2kTUf@;Y>x945OIgAs0|{bL_^gr-Q81T z45(iR4J~|c6}AI+t`4qjlgIkr>E#z7j($kpAECh5<-mWCA8(hwSE;Ms6hsH5qFoP) zXh?wb{L*Dae6g~W`i!CnUC_*+#!5ofuh#LB>d>XL#gh71raAa85s(byFs=olJ*ZAt zZ+}?~)}hhKv=R~!$}0r~Y*7SH=Yj$Y$p8d#69EBBK*53Ig;fB-h$0MtDuh$ARF2A2 zpvh2*NT`WQR8kx9q@QyGLZCcSQ2`M}6=g|0(^@JC$n7zlFgi0BA`2tCB}lR#?6Ry_ z&J#n33eZZ40SF<%i9HC*fpsN!W&c336;W}9kTC#Qi2|fCIt(F+jFJe#90E)q(KH2 zDfE16{81q~{(K?I7SgDX2Vf~t!aA{dlm#HCe)QnO@HF~o+L0i7f#d+?#Kr6$SEpth9rsr#2aB)L6p&&v zL;+A)7VgMx4G9ztpa)!`q>*4L!c+r>Ym6{4#wk)v5>?c)s})6&WLR%3fiWP8tW_P_ zz)-10V5&f3Dv;V$6$qq67775Nph%?AAeybTQUOp@1fQM#|B8>-hxk9o{>{Im{1uNaZG_?Yyxh2O zK^KjGCoREN(GdQUE-_6sqyc&2fMo?(MF#!a0sPTKyis4os}~5WqFO2@kX2GZ9@vVO zf&grP+MF@u%s%cP_)}4R-_e!)7+2_P)N8CPsb9t6w(vS3sv;dQ6?~BpA^xv(`3twA zw!}lf6i#>`IO9p21rf`Q9bDquYZfObnlZH*X?h|@#*e$YQ}2#((1~KZF*Y8T9+-K<+MXpmT8}t z?cPmOoR?Mr4%=?n3rg5Deva>lzbWX!7 zSRx}C9oEU`@M!A8Rbf#pen#mi)|D1kaYG&5U{wXKM#s}k05${I~Nvd2qs%NGsh%B3lO|Lp$<;{HGA=xT>8kROAQ zw*jg}D47h|O%g}oBFl+_13m(QUO`!2efFNK&4#OJfs140XbwH7dh>Lgq49LS?HGcQ z1Q?y@d4et!!WK&b%vQ_L9JE?ue|!I1>akbW?f;dd&CT4(=IbDGcD`6vm<=p(F)LY& zacPb-Fu}=%%b2LlxaKz#CSbCeZe^|(e|K1AB`hr+TELsOFvg?#a|~GN*Ri3acEnB- zccc1$^f-{{f1}z|6MrUQ$#sqFkx>>Z$f3-MSSX~60Z1tU86*^nNhnig@{pbM8A=LD z#?-b%LW+fCqghtcjA!M3&Ns7Cqe6eEgbDfCCqe+tZ@moX;k{|n3JSFflwngNmaRRO zx}dS-fPVDDK96@Atwdk(H{{~~o4x-NC)v+jqR7aROKA~MMglPv1rhC{4|ljXB<5883Q zbO*S_Y*(SEVpu4GK{V&q0*#x@Wp1jie1F(Os89D${c%4x`zU`HpXdMCL-|Dg59ves zg#O3>8Xo8AA^akL2mNF|4k&*&@J|G5e0H#Ph5SSJ$WieTj9VTe|X(17ak25&CvY$=v_wrZR-EQi6W#EXG)*cs8~ zQ~63UlN%b}N?f&B=}HQVyMM~qt3R&)12PNF z{rRqcmhy2JF!_@d$|(P5Ylyn44g2Yx@AZFK?&n-0bVU_hztrDXPH!z#>lA;I?fb~E zX@gm{JQ683P#?s+C7YfOGN3^Y8fr9F*_UwIgAQJ67@IXr(ZMK>Y8Nc|TQh0HsjEIK zldE)bn8gPvMNIv5{L5kKz(5W&hCUjniK3B`n?26ss?8?#RMo5CHHNi&vS}HbzIwTI z%vh9UB_165i#3A)Nf0(vfoT#jMdya`g@`aPm_jG2Lu){3eE*}xf8_rc%lH4<|1Z&Z z&;C!v{;&9d+THrJja^^%{@46}>KExhU(#lM0dQ_aB~P*XlSkWLAY&c_Zq!s=+cCeJ z^JXTCL_uJapV)uQpT?8*9w+>O&-%X^`%m-CkKo#6$#6bvC>QprDj}glR0uL2sG=%G z77G+a3;OAdf&QVQomSN>8rx!9f8JavTrk45;^qLb9;sIZKW!{k9I*ZtXId2KQ!;NM zZGtOSwNw!1+^bzHj+6acn>AC_D)w%g^iDKNy$Us9Q>%HQerr{SOl;NCnSbY7!>{@J z`VH^qW}_z-f!V1lMT(%=0H}^aNET60MnqyNq9BSQ#6(3DSfYxvRG^mH*sAK$Z3?k% zl@&3fnQcOXDHt$aQ~u;kMO=J&MV=tT2e;}|4#VQBRG+kg>I#@4#XrusSxc0+UZ?xN zjSiW5-2U0eNr4FavQ>zhG?B09tY^BqVCCu3gySkPDoQDEr%T3e-VE1AoSWlVvr!o< zN)T|OV%pz0JY~8Ebci5^7;ABQkzZGe&BTELrP z0CTd;gtVjyjBESWn5)G?0F-b+a*i;mH7#*3B$kB%i$%mmQk>JhA+3Lv!+{bAm|H@L zp|S~q{V$0N7Cd;~e&h--+=%}Gz2n~eE>B@GI;iFB<9pTVu*?gY?_bg6{VB`r(J=J1 z1>!uA?m#xkM6&|(J3KuZTi#T$ z(_hh(2Q`JXu&A^VV+1JNAh1$2qf9bdX|;t+33ZgrDgO1kmNhE0qg1VKhMZG1rOG81 zqFb$gy&K&|Hq}dN3Yu;h;N>$eCpQ$uOI{gv*{Zv7QQg1DWvU2TO@D+11(*sb2ofm+ z{glmAnUF^|0pg_V(a?Y|4uwVr|v~dt>?SPTYdqZ>KbfPgsuRo-5+rVIl|#z zUM$Py~Gco?f%4_G|BzRVnRz! zxl{S0erj&wJIdg;G4sz|Jt6z!$62F?P0q6Nb{JHD;&;iRhLr}Jz{YzM;K{K>(kQ** z)L}cY=P3z{QdTHR)P-a!fRq9xf5F+ZQypuT-A7%P2mL$o)IeKkHe>5toIL){Uxx*F zrLa9sZ&(Yqx)6Ae9WwCDM#9z#JnbpkOa&K6}n z!IvUN54WZ+v4Wn!jPSoQr3a?;tlozqvyrZbPn6Jt6*(JGo?e#I91X1JISQn-4ffNC zJ2-7C1@9U0tk;out#v_vspGaFJ&L30yboQ*HiE3Sso8R+MB^|O==vWa)iZ($<(WU6 z*w;XWA(~N8jt*g0;5esTS_a=Lk{thAG%#Lc&BKXt0^Ttrg8^0ERB?Fh!xq*QeMlGC z3*#5&MYGF!9m=TU5N^hlwL%@8p4U1sO9K{?S!F_4Nl>?L2MtZ|ajh)I7g>$tGD24N zIEhWTh*u$yjyQ74MT(c!Ims{3xjE$IuH9;9P7XpmcYOixoyV5@z6SVl4 zBhHu}XP#Y4c&<(%DNu6mIOGT1^Q2cpYH^Z5%l8l5z$eb-^Y8#Iu=Cfe!jeky?}Hi4C5}uT8L{A3 zs5j9A0(h_lqG@t_!iMW|;qF<_xV4-&W|otuaX14S$70}R8zZaMT*z?6{OoLq`Bjkp zpdv3Y)Z?a6#=C9B;>G%iv?TN1*T)_?yze4BN{Q{7hyRPdL_U6I!vj4GNm!E8El^|R z84T2h)Fp{VK#0^Ou;ComrH%yIx0xY;*vop2&7{`{9eg3GvuYKCudpwyvJwP6R|wVR zLhrwN8Y4Z|yC~N^^;wa&b@D@JATZ2&XnTQt_|WR}9vlyUxjEi&qp=T#Q0<2E=EN^$ zqMdTs*F(**8}Sv8WqHcC7S>U6w=d}F)6r;3V9KhqN6zUoc=qkD4?HN}6N0KpsI`8wGogc~5QW8B%qaL%IXc=O)5kp8+vPo6u0 z+;W5*zox)ePZGnksG^~K`#8=zz2r@%*FKmFDx{NuzC$kufoITD<|7M!Vqn1)6*$6q z?;7!)Qs-($;dTSF?N^qk7ZZaaW!Vo4*l%-|TaeGJUPgLdNYth<;Krww^qG)XuMZgJ zu>Ek|a0J-l@nXkO)vJO(l+QllijG*ZdjJ47wGB3bhduN_`z2s$Uf}xr0W+GBTi&}y4!`qHK>4WRA>q0os zAY@aA1qF2R-V_6YL=0PhS;4|};)dW!_3pj8B}nfE%@ zG^4i>1TMsO^Wqc_bYlJp`0W1@iCw%HZnnhn>&^J%eSkhlY)0iCWgia&fu;!F({pGs ze&Y`o+;04?J=5vUS{~hb_Z;g5NbAXUq2t=2yBmFLZ=9nwoE}rs?%sStFv2-gtipOj zX(BvdaSuhsSDlB4T@CLT$>WS12Q4(pfeMz$F0A$$AgLvY(qe85*bt;?l@l1Y2-F=@ zv;#8s8)E{;W8+>i`XzJOpW9$jNztE6f8AArw3w*gPDhA})hHNp%5 zwBM%u9@#;c+UgQRlgu`YiG@HcqV_l%rjx<%hiwl~!i)OY?auSoExd0Y-~!JXZZI|8 znNvcYefI6mJpz)lBp`Ipg|h@n;G=t%$s`e?l1{j8q&#*lh2cW^@HLng0*4`mDA7_p zn>?(Z%Okl!d-Eg!JCUKDg`yRcd`7HlU3+Z4ox?{p?aWsRmBK2^tZhQ@B{s_7uRV8| z5y9i801QR|(?ROr99OXTPKSN2fV1R?g|L7D=5L+zofZc^C~Mg6N!Nbu84KfZsbk8! zhTm&MGEH4D(4FX!q5WOgh8T86rimR-tNNMpuOAk?RT{B zn!aN${L{prUzWul+((MjPrA~h%O0`Wz0->2n3KDA3NWx+yy69>TB;RYot$IHfem7V zWjtzJLD!S;@e-bl@^~D-01c4I>h!*q$D{F}zfLsx^j|oJh1XrE3VUi;fMoMQNmy-x zVkuUTRJB3OlEGw4xKm4^jG}-_c37$7vhO>-uol>p*;K>yGmTXTq0o-PQSq)FIz9BR zy~Mv?SRJQGJfmzp{k(%(-h8j*{ztyelpd7k7L73OHXGMnyo0s3mfI-B2Pw(qJ#^V@ z=ROyao$Enq^zLLg7@+oen!N_%-iEySjpraIguFi+48~-rk`cgAi*rI8I|4Z@@#?}} zq0-^$2-Bd(@!JlmlKWO2`>4^B*j^*24?T|11tv1s@7q`8nsbGr#O!zRw$=2-$O@-H za;?WFhu$MEUAyay8~r*;Y{-5 zvoJu)M)|2ml0AG}DSxZY`}qbkxM~P8do`(7L`YZ=;A70 zSw532<(O&#kY#(0#5qV+qTTVR&Rcj3r8|Qmv=_|b#F56sK+4&ib%xCGhs-wZg+OBjO76aSwoBVWr1_ ztXa4ZgyYyf`N4y9>LcIuJi_gu&t5{ zA5K{6KQ3%EAdhm4@0LKIFcH5i@?CoNisJR<+CY*QYKdN4vIik0X{M!AD@mx}la|`C zlUG5$+Hji9s$UvVkrqWcil8^S!PN9L*w{U!qd=A2S6!k;G2*Pb$CR*lRJC^OA9EHc zX8726dR-Tx+f>%s^?_i3;0-WdTS4O~RJm-uV8usNvcivR!i6R)kU0UJl}P$Sj%j0U zWruDt-!eErHD_urblZ0FPzB#e{L|21$vbN zj1OfQ^WE}SO7VC@|U{ruT#3!}i6;0__^UA-wyq<5( zhX%SL-k`mC7a8wcit($%^(f%M;GWFxqWQAWMCDi_I@Y#zcG*#~)O2 zem01@7Jx4~?>p?iy{(S!a-8c7l7N(JempIs*4b}2diBscjE}HP>Et$-1Bd!P>ZPpg zgzTz39Q)Z)DCIkmt7<*-i-K%qu4PjOOt84(GcnBIcDLiE`0od@)Q@Vw>DmPbw_y^w zopuwU+Ot~LY4a2^Uh&!{RhQ!F&Ro#GQl^kk2U=61VO$8oZ(3G+Pn2m95T&~{py3aUsn5Z znH=}|j9-=ZIobgjUSU9T1$2@zaEtj{fpDAALn7Od5W z7p_>msBIcYBb{T0>{)Yj2vIAFN5rBP3Cu?Yuqmr)-3px=H!qxDOaHA;^y#JYNth7= zA|Rh8V5bljOv~?K5dNQ?F@L-3tZ2m@_A2-@33S`5N7$|-JT9tQ)IO`P!Yc5WO2a+P z&s@G&iR{<%+RN*S@8xGbcgWaBs`D4nQ+5_Xr=X>u|-z*?!Rv|hu zKRS2u;g~Cr+^v^VciF+DjKu*X!R?9^xVMqrK#cb3i$BxdTMMk|SsRm=o^eu1ym+Gz zWGWJbI)RYx!$x3npiy|kxYTK?lyNH|gFfMkHhlutbhBCBFm!L%2v%Sm)ZdH}&Jt_Q zu8f#5Wmu(WG52rVzX#Wg%Fi;J^zFS76UU0ZYK zu`EKYvgxzqzBg~^`^kK3J)0Qw%W5xbc_u4fQg&x{aQdO_;?E7yVwj#qIrLNlfeocW zL=3jrAt3SJ!&!mB@O9JNs`l^R#h4pWtPBX_mfw6^>nqMNFdrLM7qv?gGQtFs)~~ks zwt~_?ofuveYJ^!~kR0+?hy-X`9r~-hf@eN&vI7?&P@)}`l`jjq^?HhiYbZ&D)F|Yn z$${T33z3k3azFr}MiCH+>UuEogu~2yIH4k=XrQnxMpj0O0lk28lxS)$*Dy57@zF4ex0lNG5s50&@+Sfbz!%<5!%E6Dyio-JK$tLr_A*b z>rd_a0Q}-Z^}!(qf$WyL{W5~Pp|uJ6{(;k&1L>XLjA*!(fRic%&xW-CL6il*e!sEo z_J0S1!?bm0`eDhlDTi|-@1NgZVNa8FNmy!m*OgY0O!7UVWuNlBLaAWkndAO9P!B6f zw6g$Qe2Wy{T@M%d?x{p;fgjjEckBM;(0CSr`Micg1Ko|`(04n%W~-l!SE%dQpi#GTMEJg@)VUZhI-6r`%<%2CJTZPf$%ue zw6jo=k}?o_N&y9f0yBV+#Ju9t$QOM8=4pripkqqoSunwJ(AWTfK@+4P-U-@dB>!Z8 zpD-LBkOG(#!w@dNNjxX^{B}CbQ;Ck_slYHcBBj9QV$W3u& z2$~tRD9VXo2T=jo<$bTWs7msPyGFpjZ#-4Vek4=fFae!rnW3=_px9fT{vVvLh;_e1 z8pXvVVe7S%*@Qx_4K$c-uT2nie*_EQz9&jjFCZBA_@^?BCL!O zKtxs-_Lq<=osvkQ%2GX6AFf+MQbT1G(^~T*7SMyDKgbBa=m`)aA_QgQAM^A~3UP?V zs=G%akIb>%g?J+*NU%jUNlqRhabUXH5MW)SY( zZ5An-%)W~6`Fo0nyN<||VW}-a?>Ku#d-p>XX@p|mAql39g5_CgQ&2X)YazjbYQTAC zcO9~n_L5S{lUv#<+WP%6oR?eikJL7XEv9ITbA~;5M!lD~2-X&8V+I-Q`bNfJjz(q2 zK2NuVsZu3f|#M}q*W@Ks6lpr!zTg&bs>FXWYbi(yszGe1R+ zbEh0+UeX|XKU4JbDg1w<8hmoF#%3})K;;q=20+q;VaJzSR6P8TqrRsx-Lu2vDRSC9 zhq(U%jWIPzz@>oEkD#Z)ap&~`s3Ls0Qow+Y9bG*WWE;WT51xzN3ISC)j53B-z#d#Y z<%fPBQPtfYT?Vr}sHn&R)eJ13H5>NFx5ZrH=jdErNVsBeDgC7r?fC*&&B^}Q<;isC z_#Khv65zzMz^h;$G4r1PIk%}L@Q=~qpMFg5h%6k5q-^pX#Co{V^RIs7F!VO0(d4l_ zA3{t^&@kCugyUEWLrnA-rS7IpvUYMOj4hPvpOlo##xP|T^?^PH#9u<3e<#!BEx-6il0}7&ASUnzX19b=@k#|mT9Uy_&qk=6|SpZ?S zz)=uJ|F@`g&Q;2AU};7R5U`;I5k?|c1`iG=Bu4e8OO*ndm@d^cx~uh&%qD<)0}3oU z#Kg9tKhV9lNXgq_wToZ{1yD>XpuA%(Uy}&`*gd$-Q_4vQ+5q+1`5kQaI_i9VY+a^s zMROx_**ll~bxu(BOE03q0$FqhD zocc0ddqkitmw_|W$uqII#N}>RHA&Kj7p0&ft}2Y5tH?-?j47<=%83V`7pk%DqV#C5DE7`_JXA>UciI1Q(lIuzcDDjfJz zz~J5}O$yWqpPt*x-3ROlQSJh zF3tz1mS2tAMZ8*yrfEPzK|xQiEXH2s`nt;DpMGomhhHsDO&VQr{Z$V%9gPuhzSoE^ z0V)a208xXLz%dD-S(QOjIpr*DK?=!XXJCYL8Y2?MFokM_9=@sCBIRUJhEy3OA>iR} zrDYyRcGmoC4dSB+go;88h)5D8|EKH7R*Xp42b#j?(C9dN2ZjlluxxJ{R%@oynM0lD zjbM}M9rrBitn8V@*`9H-35-QB z)mpKXnt7;mV}vqeg|65osjCpAG>9G(tUm=8J3+|gCZfS!^Y)ZIn+c;lkN>-@yvwX%RD8C{# zx90k|ZMP04Iz&nLYk!YyJrAHyc_Rv~!wtFM3g+Dw5Rny@Y;T}%48~K$dVg{8WeWQv?^$BYL%I{>P#~u zhKE-=kimqanwWBC#2@apjli!T&iB1?gp)9MsQ^cbL@|h>4psnJK&HPek@H{C^Oag{ zjVwVU?e!jQe4w#FMfzVW471w%via$b{Ied?!cYg=(lH+GS-0}r>)0JTazPlR7hrUS zCqfX&hjeqVr*;w(epobW7Xbk=VjdYMlFRLVpBj9EO4jVBI7#y6WpU$+w|i_{Jro=k zQ39ZpLCkKJGurozatyg-lp;<*#a1@ymf75%pEtbIjW_T5=KOeqqauOxMyo3zEGt^V zRDy~GDh2eVMIa!e0>jW4ScF7l03ojQ_Az7LfcGX^6%zZ|_fu_6C{l16bVp#B&zD(& zj4^5XUnF#6&}bPT*KohGZ1?7a&A@@ZqnEo*ygK^hqhJA%FA-07efek}QZ4P@Vw9fZ zA$QVFHZ!OMVFmIR?64OQwnMhTGMCjLCGNigX1N=)dirKFLQ1JxZ@=%CKqLeNe8t^} zRTb}4j@VO#=I}}oTaPlC;}@tEi0SnTls`K$)O(b!aUp~ewFAxrFCI~1ZeptFTe5&< zHfb{AA}yP_;!?2nzETt0V}?2H;k8)QR$GPkX(fT`&KrZ_x)xdem~?V{RAK4i?eiHP z#&M^mmK*Y%1$YOf&lJ`Sb&n)fiytEH>4Tga(1h68+cvaOBt+Df4{^r9FR(W2vQfWS zIjhHVPZSJtz}U`>IfmP#zLYB5xH#NS+(N8mCyM~0Zu&r*evBbtMsP^ZqiR?|h>`4# z+D`x|8_{NeOalIv2RC0YCpRLd(|{WWi}Wab&|8OX%Lj(x?!oQtL+|;Cjg|P?vImyf z<_El{$X>^3Os=Y-6p14X%~no5hVmL1OGLqYJSUIg00W#*`GNo;gaKm}3Pg$!h=v@? zpl2BFcsBHsBSPZ(HtwetA4iK3bFHG!PFNGsBxhFORPH$ z!(PIk?xMwDiga@%k}JpWdptuEe{LIq<<}P6ljq>LV0zo;=r$BKcIao7I!?v6b8WG= z8^}wmvo*LGnDU$eyQ#wOMvxS2p&Sc3iFI@AzMT)VOgV6U67X5Go*2yvvNi{L+gd|@ zt5ZA8WX>4e-=~l|d6|(QY>uN(Cpp#VAtje&a{j>A!wL#mHphhKQ7Q~+vf`x1e8%&b zXBJO1@Znot0%n z!={OSZr(bx)3<^SOSvd@Kn*YhmIc^QVr>nY-=)I{W26-5<&~~so?fLG=Oh5gBWj*x zLHmD}u?n4za$qoAPWn_6_RCh(V2Lh0vHi%Q4{Yg&#yHhPMV%QM;4~`TG1I=^U#|6% zwtXJK>~TqQmYEfY%~16S&GMM9|-3*8t=CO#sw2n2ZxWO zB#K!XR$6VLrn&z9mrIs9VXaf#MOIVAl9Qwmc6oPo#1c~)vpHs=8OF|;5;SU!c# z!;8hb`Emu=Vj51(i(CN-p)naq;?J|GWwx6@VrqPjMq-VIWy%5yNX!O+F5Ez(flWmj zT_@n;qSNmAJG?!>v?X7ac|*qV!|I$)`L*po%z^Ww#Z(-{6-+sb*{h?QwK32;xOE+* zOhRW>DpZmpvl8|&+VrXp@>e!o|(d_6pLQTTFvHs$qw(0+)yrYFP?gLn)5~lzT`NLaBR(V(>QUuBzV)DkjcYE?d{fD>2Yp0qe~Sf*xM)N45@xm2H7imQE+wY1FTtxXF>90&!|Sjb*9UfrB`#J2fs zNu_f4`UqwMFA~7pxHooV;oH*m%nsyuI0Vl!>1=x6PW-;=kQ>m7m!%s`i1+{#K_nzY z7y;P_j04NJ1aUB>7}r9TW=743X0dmkZvy~;YXtAaJVrzXokD>a?;OhwBV0qPnv!Dn zYz}d9X#%RrwhO}!MKerUgW(@(Y6Df#e!4#!VGeo~_4us)dk#R85d!9?sr|u$H6OZ4h#_n7}aKhj4Q9GqwmsGYt;&jP@PAj=yMq zCIQcx3=KhGhxa2WsKzWv$gq#BE@DK{fXO5v$fh4^sN2N)JiELms^Ll!&Uk~@?ebf{ zzE+u64vU@h=|SXlZK_bAX0k&5gzk8~I88qyudE(oZsDSa!V)DN{i@(3wK1|<#g^s? zQHz&}w|)GNCH3|we%ddaRo_2V!k&21PA{=#u{FvZ5W%)O^$V{pbL^9mT;~-%ecc?x ztJ{eeh&KBDglWA$3|y}Ir3k_Wy`)sOui*wwEqMBWFHZbiXBVs$d)Gq?G3j6_ zqSB{@P0GO%+)-fg>qRKhTlZwq4jFv}*IB#;4R&E=w1`Cf3zS(r@kGcVV z|F=W6SR@5#I8F0+%W<&!aF*e!!HOkp=;9tD^E6tks!L|MIj@V1cDf7(^ zPlWeA9fO1PvqbRrkRY1IS=k%jOb@l7`t`6b>qa@h3*2p}^+bfT=79U%uSA*Cs z*dV|z2^&x~Go!nTfzz;~Llif}dEgQt$k+xXzH{$bPw97h6i|EEBY(j92eF%aMc#wE z51Cj#f4H~!Cv)_vPsk%6M`{F6j>z{uPU>3&s*};gE`4MU$^4zldVmsn@~~Qnp~(c! z7{iCg!6E5nrPz-JBwiL?U@PPx3< z)Ry9YU$5cp_GQ!fzDniVBztM7NJ%{KK5I1zhjNg#s_Geu2b$WTv7YNjBKWA$RUf4) z3JA!CQdhB>{Myp99l7<=!Z5`OZaKPZ4vv!;BNa_$Fj8<@Co+^x%C#cPX%tvaGUCOE z!HTN1DPp2Oykv}tOczU{`IL56qtj%Q)!~x-Ia7- z6Dr|rHrx~Mb3u?bai{d|^Ea{~w(?P3=K`456OOFzeOVy3`!>eTCYtE`1~a#o32pee zc$@~IU^0V}kji0R>g4ohkJXG~JR3PU`B+C%6JujYW@cCVFmymzq74U#HUuDfsVgm5 z_lrpBMOrH>h3ct=n_Y(UYh!GoN&p{~cQTrAouybn+{YvK&3H}xm1Q(JEotUj0^z<# zG46cm@8&>xAq{#2>V!iO6&V=|Yd{R1HI|R9*j?<#)`7fZK4QXC2ts=WzpK`MU$E@k zhi%je8TvLy74BgJRq830G!X4#mR<;3>v3r)PwsjuP!kt$_>7XZnG;LSFh~aeI|M>C zrvDs1+I1pwo7~&gDKa(Kw z1You?dR(c2w#62)o_zVSuQiW6f=MKPN3e3ZSAl_!_ruA*(^H2102?M<4L#o7*GNk` z-tX@Cf@8buPL zEyh7_Z82TBR7UZEPb0wW*sJbg=g_$virI4V_;EKh>B>h6Dcz`*nT@C4PKh^WxsNvt z5O}L*jlrqTd8wWRg~FUcCp5A_6-x+F5(;2|fu*Uia8?^PS(tu~-KC2kY{D(^Qq?g=BR}SI2=`{I68)9AU7(+>{AJ%)|}0NXxjT zaw$p$K@&3_2}|eO>Mnz?4=Z&8^iVas4($uie7~d9ONlJw{Fu`?Sb?~MLwFo8+V78-dakm#=eR&g{WrehLe?8_qo}De zBy>Tgvx^r!G&pbqOc*dFf;0mcBd-*Nr8|K;VF(crB!meb$Bo3m%RG)9Cqq~1*Z6Cn zH%%wdHqztKrXp+f9dVLr$7BGl*(B;l(apC$gsFphr z2EbUDvj?Nm4{lifrr%GBL(#GfK~K$TEtWDUHf9b9ViD+td}Nwr50zgHj@NArOaSLf z_J#BvBmlS^SbbSGqtzsUixMc2gh3f10tpE(>r|wHi3pl(V-_h0BE?aJP*|%3fFg?* zwt{gjlUF3BuTn4fE>mv~v~O*Xl^9oxI{ z)qD5Qp+f_FHD$3j@wGH_(K6 zdONbk86xPHByOF?Ie6$Av@Dk0p^o%=VC&HvJdb#9S$FbYcyZlDbQp2pEtEuJSR2@m zClLl2a<6V&yG(sF>?u%f*NGTOBLd)(qysrxg9B6*2B>W@#3Y7eiiQR^$e0vCMN$CK zh*OG8jpWZf>Uc8i#1sOD3`kJ29U1|M)1^nBTnHc_2DHnJl@3*6Prj(=d)U}9s@Q6s zJBe|zY5ws%-&w*z!?tFK;)Cj78V2K}UE}0HA@U#};z=?I;qYcZOVrXsP>_o-QuWzu zy#lYiESwjic~k&lAaotTT=}8_*Omq~#5(&nr1^}a0MwJKASg&EP7oCtC&WD1He(ZK z+4u1~9*-rT59}tROkZ*fP%SdzSf=FOi3bZt|6J%2D3SswDzYjt5fF&BTILw`CYu4V^$1^)yvl*-rR*PH%^#r3 z7=xeja)rDAV1BWLVC#-49q%OM=I6c*Z@deb$w}^a5UZWA$xjF;aoHz<7i-k*Ni}-v zM6g5BUYoGa2OaI*R&KV;R=+!`2ZWygU~nPgozB}ql5Fe(gOn0XAf!R%_helsK~aiN z;qnp&8}Atcm!-C&?T9Kv52i;EI%cRkhBG7ib zG6dj)3lK#VL_wb}%dwh6<>$wYHEQBj*&?TFFPxL`&V0-<=)2-(W9GhnyQ6+8qfNX4v?Z|?U_}yE0qutwW!N6* z4U92pKNg$d>9Bsk;?HS9IM@_5&9vO-C#{Pqzf~k2ElHF&lmCGH6&tK$MZ-CGA{lDQ zqBaEZq0);Ui@vB8$qi(>%n9|}M7Du5Za56ppsQ*?HAD+pq@GWkMc(Z( zD4rUp_McVrz6lt}rkpSLz&G5*QNOsJ*7THfBe>?}Up$E(EGeJ~!iuxc?f?x~rM1@r z*AoSV)smYjDuWnFwJjJo{T=I3__%_LI6xK^f|})tvS$YbMnwTcLL?0)quY#(kb%kR zPT@h#buHxw){^k;?0|)7)meWC1}x+n)JICeRZ#ufoaeu$1sLuTK!WWZMUGWEW|?8Z z7M>N{a`F(`vq~C~-MG-O*nc_^JaSr}WKi-zzfh@$vN{X~5Yz%}ZLuTP3=O&Yc%L^< ze<@*yd`O(KqpHzB=Ypn@JFKF{J_w_$12cB10{HKiB7$G){;zlL{>QIfm}+}tWK@B= zRtP1p7?JpN&8ZKc)M1mYc_ENiYg38LMf;$yu~{1BjYG)rbB9jK7^4eKe7DN^gfbFC zgm_+(I7E#mG6WC^7;<#Wju!@MzDzajb`XYX9>Bu&A*8^%hQH(*zc7^ap}{{}-Y)z< z3aJPFZkDue1P^lPI&$KRapXqa-Gf~UOGx6l@v-}Pep}#J<7{h?k~yidATOxe2E+H| z2oZJ}S<}Jh8FqK`DglvSr11FE!XVH zQ}TJf`n~3$|Cm+70wON+A|kQ+GJ$FuL>KD@{DXiH0v2C_k=hmm#Ej&_`#)|!#Z|&# z8hXq)>-p+y!^t9_N5Dv7w6b{4tjtKSst8&kXn`V&@H zXljDOEQ+ZXA+fg7W-zyEd3*QyZO5Crao357!2Og`G}M}b@*0n(+k1As1Ns-!+Kwp{ zX9p7Q9Disl7X57OP=!MokEd+~iF>7cn5vW>oT;Fi+O{;*5JJ7xU)PlkDN_d=DpZg| zgy7bEvxY#HlE-Y6A_Ev}?ulryQ>wy_w*sN~EHWh&5|fpA4xnu@twW#&r+K>&kUx`u z2(?ryb&%6JrzrGWa?k*%3PA%TAPbdK zxxvY~QT)OdfFx8b3h&!2KroJsxnn&L6~{0Ly^~Ec$|odbK}O1RVO&H|^3ufG$w35y zAca{h-Di;#y1L_>TA1g8gHuunLJSVbs|aaBh9?3b5F|u8>j>w6A-T(idgy6k3;`>h z5h%>&gYbZQ$Wn&MTb(TpOjH$XC0$xZnrv>b54k-&3lH$1pib-#dRTWmS@~IUFK6X^ z!^|vr+{4%{KnM&uxWP04>xIhqEnF^k0>}c0sTL4Y2$2+4K@ntFBESV=z(kTLKu6xC zLtieUuI}rka5}avlR26l6NE4(LonaRbBDW*}hz)9*mW1jGPPkYWNb zVjiId_hp&RT;YqrHEd{XRU)T98|AR@(ItwgLvA$|;1SkvUUKeD*ini`Gfk;*S*sbm z)7^=2%E6qfv3g;T`}dX7XQE1mgU2nM3(v+HOtM2KvxuN z2h9k~Nui!-Tu`wksEYh(il}^tv!k0GXRf+$81tb)kU!&)@FN)ly+^8o{rO_bt13vD zwz*R)-!4Ku+l3r4VXR8@B~+9y4&kAyT1gUwjAiuyo74C|eNNB2;-No-%laHSV6}xx z-Ypko|2+QEizX_y@TQ+BmQm=wujIa^Uk}gMSt2`G)AoEn6#BWiS9iztt^ zN}68f{PXP6zlSLPjTC5KJ@!!QENId7zIfkeeA)GU)>Y<T~T8=2{%U1slts*Im1H}|lK_GjQ#h(NK{?x0IljCa%72PHP>{O`DU9g^?hn_SC z0#LMoJC`xNH-D<@3Dr1fRM*{i5IUqNFyWO(DYg-Mp)n4RzmA^1y||syEQ1rLb1p)R zQB`n|4xPjC8Tq04$VNtfawrs#^3Z=$8h=!Qki&oXY4rYG<)BHnAqOkKL6PcZY(e8$?@CLb0G9JbBIXA92~X z>iBwXAdnxz#A#O=2SXLzMM(>{U0ESv>p0+J>%B|%CVLlNGv*_oV}(6ASkB{kjw1c>)jxfHFT>E1Z3wW{Rs{EIxd{NFPzr{> zhRFl&VKjskB8MAKX=tT2n7Nka)Cv2>`(%^l{gA;lN#Fi|m@X#UbY7yzg9(=yGuH>X zY`;!Qr>vq#t1m?X)0jwu(_XXvZoT%Z#g*lfq58kOvkqCTDW;BSuir`x;+*~9IO{d@ z8zRZJ(CUif2Br&AK?p&h&cgCU=g*pJAupI~aaH35;p*pS$$QQnvi5VBfCcf@@2ll- zFO+SQw~7~1nOQD_O~FQ`5uEc$fzlqcpXc>`UW?x5={zW%B%ImGBf*B;ICmKGXBSP4 zhuFi#2oJyz8YsvX!c4YY&WgvnGq5p?8f*uF%E><#093}y%r#;SqAW|JA_kAP#ToXb zmT*zm94%UsU#K#J1W2MXw1XJVR=U^{pUh0krXiy zh7-%}Y#Y4(-ttD_04Zc@`#P-MHNJYL?Z&VO6f5K zDxhXT_JUA7s*+bRx4cc^z8nI^JKtm6zU&bkP)FmcSCnSPgAZRf&Jx(r0nMZbKSvsA!`|2_ujBYVKI!K4 z<-4<=v;|K3k&%M1f}|2cF!tY@eIgqhm}da&FY4+uD^IEpj;}2`tJ}35nu)OUr&?9s3^Eu{Zf0c=9DXBk#q^KQ{FwLR8%mP|%Ri@h<1baNc9*@zVH^1A-rq6r;hqGSJ zvL6!;5ELs=6f-O_DhIH`dGklWeEn^OL31>N!I>jmq9=H6@%Go;b!hQnv&A1TnKU;ymvF|s@W}IL&jo66!rv`( z>C-lrRpFb;`X8Tcaeb_B)s#b6$!t2d`u&DxV9ahB@=co+gf$&xEF!c;fI!94sZaf7|-=!JQMRNF<$}qe$sG zVG5}at!R+AxA$M;;cmZv#q#Sne~^#P(c2@YK&LmI zR1vS3CsDTO>uW#03rrwk18J7&`uZk|2FhH#q$H760{7cObZ+9l z^+9;zf~0PW8iV_3ZK5i?<(_MF;3AA`N~IaBDmyhy#v)d7D-H4*PdHe*3qq!@j!HY^ z$AWOde&%;!_%&fMKZSDmIzTj)6rF9F>rSlFcx*3y8qgeAXQ@_~kT5|gz<`T|L2y(- ztFjmilE|DH&Y)$WV~A;47gm<$W?I&eIVH3x3oy_Gfi_fI<)w9!FmWD7!ih2-^}PcP`I zzT>-j`-*#GJ;VQAG9}Fp+F@aWE zP(_#$AX5jcGpmYG*WNxJJUn?r*;DiT>lugw>F?F;!~y2naR>7e;R+-pvk4K|LI@a= zgUECDc=Cv=E#Kn8frTsPiO4y!e4909?fjSEMB#y{^}>s}itF9xL~b$77$N$LKXuxGU13)rQ1?94o56<8JJ$hER0%OX>RK2@>POv&!SjL>e@WMemr5TexxYf z7e**-h+zxMX-5nCeLVd>uX|yt1{)0>fR_v;J%4J>BM^xhB6%kGmqAboAGa?_CEib% zxvMxb$?4ynx;STBc|B*WqyVHyB@9*ZZ1%P0T!f2|ehy0t+Yg`9?q=)R$-k9Ad(3MD zQX~eJr@Oz| z6hZTH=vJo2Gz$|0Gf`@za@jS(dVGaEQZu7t#vbUAvj?XEI2 zDOok=@Avp`t&b;s?HQC-$qRQfK^>c6F3+$oyQ-tifz!6Pr67T#!-c3d2TVuM&pk-V z?Vb!M%YZrqPwim?8)r0qTsWaGMq=BqM;}fG!v46z&>AGq1{+Y=&^FuPYbeLnLZRox zN(Wbln&M0M`K*0X$)-;?s?Is5)~;0icu#2}(tsl^AJ{TkS6z`o9|p!BdlEaCdt5Un zsL*Wlo%oKs7+}@3~BEj+2wsQh-akEk} zt_#s5=<38siKAG#Hf;S|PT9Bn{kwDBrEC;XbksX9TB{jRp0zdH!Pg6=?pP@@Nf0(f zyBB)KKW@PBFs;cTFeERQjmx;oa=o=RX(JKi8SrEZ!53j`{G};jzTiceH(158_q0Lm ztRYKK-71qf{M)D5ueqcpF!got?aI%53&FE&j{9b##@PH*qqC!_kwVJxPklcK^FJu$ z?6WtQ!M0fV`dJj!MU*dz+YR}3d7*u|4I8}l*K@Vzv3jup5O}cX8yglX9+T^(p#UKS z0KZpuDj529SQEEy9v=2PbnWf%^6|jhFH~_z2Ly;9s%<~e_>bXm*NBz>G3YR1HObKB zmRtPfo5{ePP}I=F^b#o+0o9aBl=Vt1CAVyLhvE_ff??3W`@Aku0E;58P!h(0uhW<@ z5F}XvGe>2j0XQP7p~KC}iMUvc1Yuzf4sR3yv?rCVmCy;2R7tcV3lQrp$U`9&F#(bT z2tk)H72N`w5NQRQU}sZMaEA{Jn%#k--0yn!;LaY*%V!|%_B zZl**?oDpDA%i*SZFCpoSpAFFfs7_na*Bl|Zy$bIqXu+)Ud^as@ff_RUf%czC^Kn3C zk}~R0zS%lo4IyUXz{L5kPCbtGsk@zHWo!x*M6!q)z1PG)gI+dosChp8C7hIGNS6NU=F=$xDi5T< z0p@0AUTaz04zCyDnU^Oawrcp`A(pa@6#%v^`dm~5%TYvDO>>C9i1FS)>(rpK7AFYM zWgEOGh09E)U2ny1oYC11c%?w=k7RT%RFlxqJF}=1R&|CZ0&jqTYUk}{V?AL$=eOLv zL&Q&eo)nYJrC4!o-4?Jh`WZ#b1%Z~pP(}rGn8UdN-xOq1Tx3|019zVe8yqm$nc+o` z0)2MoM-GHbQ)UW9!^Ot_BtD*-;6dcwEREJT4SDyp2pP?Hn&Qvoqz>eHplNDMXLmZh zFo0{4BbNz6ravdW@%R0IKPPkVbbR6h@q#PV`gm*a&x@na=hW-?^Y=wTEG^%_(pYln zvZ^|}>O%1mkD37`-BY?9pr>iwN*u-NS(S3m=>MUOMQV87WLTXk0VoD|Khbv{msLiw}iGqU=50ML}0I2q9O9UcL&5C&#)iV-tL z%vWU~Ia=^WSZDf&8Ce`h^AEdTcgwKGe$+5yTk>_aTR~bu4GU-zB|@q;!5|_>bUb8a z8ZqWZn#7XxEa6q*NMT_Z;YOhY;AlDllBdxrf(g#C0wWYh@-4Hn8hE(0Q5+&bph}-6 zku+OcC4!p|tfvATYVG3m&M>uzglG$Dm<~5VBo+;bjZ4w0(be4=l1Yyb2W20V-lfPA z80dks*KobL6A?vH`{&7qbmV*yy$RJefw4*l1hqTYJ|upcYfNsmoJ2rEEn)*!At-62 z{35dgM~L!UvX(1QIoYs=86;q1 zX~t^h^SUs?#KvLyzc$itFHRST%WuBm{iq=hn__iXf#L@OPd5ckisDCeH9>JuT#IPF zpbatQ&^6RrI}_t`epme@3WA&g1O$|mzK&W%b-a< z=9oiwABDn^P&V0ug?=y;5?E0gER|NQ;)0Qd2d@y~2FLdNa&6l9)9lKAXXf+1PhAI) zb}6SAQ!ET)-n|dbFb|oAAi-I?FxV~`P$Qgs%uc4iL5<6nagV^R{{Tq)P$>(ucAlT0}80 zZM4R~L$oXwMWdUq=BC&Be{aukcTX-y&q2|srWViSYWc6zc+6rAF+YibEu@<%PPj`K zRW>5!@oV$hSQ8Lp!9p%` zBywCaZuSXDjSbhk0ugY}w-Y&)z<~x3cFGB3NEf-0Fzk)_HUilp;DcOh1dLr%RcWfj zL}Z=Q<%%+kIGiACr$YpZ2U790yxp$QHj0b@D#AoH^f){6otAf3bj4*48)C3k#mQ7! z(VGH+A>if(b!RlW2)*EBkgZ-=bE~;KA&fe)dA4th3!G`=Hg1;Thec=zoK8*+Vo~M0 zPDU+EaI z(xH1O232Y4-)%TEheYruOrjRj3!$-&?v4nuO#8kaT$*8RBLX&2H%W<*B&rPoMRfXI z9vbx7!?Dyj(4!z;v|H3gccDxpEqMwZZnKtW?`V+xAOc{t3a!bY>Birqma zaH`?L@NdYefwMsX4+@J3PX^YhbYJAXGlG4o7qD1kZy z)+I+7hUMpPjc!*MHKHJxLUu=cEE3->pq9u-(`J{RAxnKy!B+1HrWitAc($ehO(lZS zSK~NB3Q1BNBsuh^#Ps5j3{2gG$b>YNG~Os^V#$-94w4rnN`c!mrlX#JOk=O8ku0AK zArq_{QsMaZ;3f36hr?{%j(r4zU~svkCY)YK{$or>UN5@nbmbYh1ZvuxBUa!7A<44U6wHqJI2YW+Ee zQ|zI8u&6BC**J7&ar)hzIii_qzPq?})xn$`ePQC#AS&(~6DY+GT+5_cl3SN%{n!Ak zM$Uepg*DSb_Vp5`y)Ac2s%q0!rqKGtg#AO;`1!>Z1XcoPPE9^Dc%nuCA_lMWt8?_8 zHha1ZEk=T)2RuAX=-N~iP}@wU5hnOl`Pe8QyZ2ZKlW7PFL3D?`kP_5TWQXtrB!US% zVcNnH#A!6dz+xMg0X?zSz1d#c+*jrpZi%>n6NXu$@WK{^nvt_tT7E&!uQC585>$;N zaM+s|(bz~V!;?2`XKUR&!M23RFyaT7e(>RexN+y z;BO4QA~i`0ko+FOXhA8PXR~A}Nz@pWvi%L2N~9J7l2pXTh#fHPhJ;-6y=JMaLe*L( zt~*=Zz}Gey!;ilV$60w^E^f+Mbj`CgG&&_o94xe6aFvM6db!2trG_AB1&Sz}?{OWV zl>maOi`Z+F9%IFz0ll$%k`1U_i1c12U39@^aMo{2EE3Cw4kI*(Lug!$Aw$Nb$rbAO z1$94X0YE-fB}k-3EQd}xSVj(Y+;!xul@GPS?W6Vtdvf`Qqg-oLv|e)uGbo6u+m7D<4rJQ9y<8man$2~^ zRAcTtnEF{*veJ^`^8#NS3vqA-6+tFCF<+9>7UV)x`LZX4wx`u7^Ey$(NIM$rtLb^u z)LXRHGOm#s$@tEcRRKSMNK(o@g*d1qTU#OOi7`(KH0Luo~m6WJ-5v zYTnu$0kUI}ScD4sl~;S>O|a_5M(!UW+*4C6sZSl)nef7PWT6dE*uuL5pnwT7LaKxh zrRSlfu}=p>RsTET+kB08e4`RTzJs9X+JORk@X-pL(@xn8_umSg_1pP8WMi=blu*m? z)1kz?Y7r1AQk|9OGl#&nRTISFLgPA#N7A~6??>PHe1DHn{&4CfnBK>%ag#JfWh zT)WSEMDK(S-7T^%Z@RHCYc<%QZkhRPjEt@pb0Z)!vipw4R-kLFjbCudjj1-7HbbU- zx@rK$4!92CMaQ`I()+VyvUcn?$8ju4hPxK6=&GEV;fb)_wwB^VM3qHiJa7ak0D|x@ zvltSiwbagSJ`)0?0M&s20l6B4VdZPV2CaoSjHp!1itKu^m*j+fbuv#Y?dDs-bIq{S=_?~m(VfbYBJ3W$b*$nY1MDkvq6Jyl&U^)O}x ziiGfMhFE-j-4p4TGI8E!X1cadIS;{%4&5-PiSMBaSvVes!v_a^RLp%9e=Ul0>jtlPyoK50WQyny;)VRjc(MI z&y|`LmWRWgzWo0EfnPQ?PgeW&Db_9(TaNwvWyaLcfNK@LRT!ahC^d>>4QjOXkZFP< zJa6Tpn;C&f5(&M?n2AB~tr8>`plKpraRVj}UA>DcM$!pHK|ok67C=G(fJPAzhJ>9! zu3$hwg9F=5vh%w-I-6&fzh~5^RvRU;OqDc+Ohe?M(MTLzNez3RAV&vXW3sk^qI)eGE*+Xz`U4zx=s>UK*5J`0kE1T0-|-b$4Rb#H@H40KySi@FgNawP zoaK2pgs*?Y`-^@?p>`wdCIoB#KeMGK+iY#oPoMk~{qIV9U@%rn2A?t)?uP#d^LK_2 zgk%8Gq-fa{z8tUC2QXQc?FBIN*oOk8Gtg^L+!L!V)K>^#a?Kg;?meTQcWd@QMqb92 za1jpft&$l7C0nQa)S!EOyQoGgscc9Ym1v43cUlZ64mm7yq(eIUOPwX~wf1(u#GL<^ z=(aeFLb2eJ?I9Y_q?@f_Q=7l5Q2$FT1U$myHv>n^GbSq*!;?zLS|JDmAZ`b%P>aIC zNn~-NQ`hi|4#TH3c{TUpnK^0j+?O_d4Vo@Y-e%}-Pk7kDv`_jq1%%%qJhdrCyisRQ z5MUpv3JQsq#8pLLyJ}dbQB%tKx=-mk$p{C!W@n4_R-w`ht%U>1^>sCYBHe-hpoy9w zR>QJiqx+?T)ehe;ZdpF`E#hZ&(N3JCoR3{357is1bV=0LtJEMPo67QrbUv@VtEj13 zOJKi&nFZx13dzm;_F{ex8b3#yAMx(8JN(-T`Ukc1^pKaJVmX>IbmU!y_4qrEJzF&* zsPyUTzMu!`z&s-k1J1egkX}5vfG?;4Ys|$q=i%r*(L`o4_#w3aK72ZMi3Ll%czIcc zEFl5D%kHW*1dvJW%97tFDeYl(=(#ioNfm?wK#^lS-)jpO zAQF5y`Mop;H1dLVWE`phJRpJCW)X?@j|KT1{Rx;`W%^7J%Rs@+gM@E?8#h_ ztUGeAXy;gAXv-EENsxRF%t;v7M@EFvv%2~!dmG7 z%9pF54g#$kXU;A3v|?4kCmGw_(Llg~N~%#U05~xVrNwAiyGUyIgJ5c~L;#$G&27vi zz|MBJ1Zd8>LNE05Q2hkgSfCprPBaY!7=!~>R#A#g`-2QXyB#+={<{9p z^>&knNnB**9>8Gr0q1b#XqE^nMFBrelNlnDqXE&TBNk9Kseuy`q$VPR8PB28@h4Bk zwCB~G^!4hQNO9aPcrcV3SUo%l#rqHs{|~Wu>_q2L;yt3by1k3cCD8%(JU&vO$dWd>ndkb(Po z_G{oB(G`+>O2t$5PSHH$RKoqxDjXRYm&(XcmWw!q)21vfYiw%W!D|3!h3r}E5!!7o zju1?!Xe!LQ@?!Q&X!nxy52hZ34$x5mU=c(CMTAt(g$dcfE&rEFM zw&J1HiNUf80F7M?u(@c!vEQ*FSTLgo(`jBwAjyrLFpo%cReqn9oDI=7Vx9@%E=WgR9w)OhqC(DdH4&ym1Yl`~ zIOApq3(6YNwBDC#LzdFXtgN=~msd|;n5!Z?dNB7qE30cdr&UgmPJ_l5G8xYlIXUC8 z%~+tg&N@nKW*ob-hbe{`ENCmWyZta6;RF$tQ8khT*d{HgqWBcIDQ0j$=;@QI4kC8l z*LH_QG3A2>RfP~}iIt7HrgR#TB%w=Ch^K0aoZ{0<%7|4iwXS5F-dS5!wH_6sxJ97x zn!?3XF0w;Z3osieUEdCwp3w`;FKSjCva-4SG?hEjN+Bc^0t&GNkosf+2tcU@0xUQv z8Eb^313Fm)WAvrE3sCa;NJtx8Gq#Tar=Js$Csmow082o$ztJ=h+X!}u4;xAVhW$*u z;}A7S+81$~YRCdG^D6H2MTTz&F-#27p-6xYAaCxH$CCE}ujj?M%z8Oc;}4gM85i zS5sI6WCb)(28T!l-#f~ii_T+;P{r4Gskzzaj)kZU25MpsM!AuE(jatSMKO~%Kw$k^ z*AT2GS3Ok@n+&(j=NSOPBJWQk?y1DE8%4_is6htSScfjz!|$RxHMpK9E-V8F?m-n0c+dF6qY_uIpN*uF4yFGF(hT)Mno~yfWpj11LGCT!kQ3!b9+Q z6m6CY3xLX1@WvIC%Ylqccv{1u+oi)@_!J=oKn05ckx3wm1lmIehA||q5XSY{t~x!N zDXdWsTwYq>&koT|3MTl4Siy5BFyeVS&8Bqui5Muric@C#SI;_bW=5Z>FK>Yyl~f8r zXfCw@naC$t#-oz8rYB@pLatVwM%w0gii!prbgp@Y>X_A7dxMZ{Y2}&3>0O67r{h?t zQ4cW1_u;23-sZ)afx^+mTom_tnj<;Q$ZQbJldWm_HHe43v1N6g+ntL;$yUM z{4(PM8Ue`UQnM2?9vNsdPX%A_@c#Ta+B&^uZ?5IO^F9B|?W3F^Pa61E8!1<=R0g zOVM!76W2HcAcblfjsG7ULr_Nta~+yugCav6*DV(-}oER#}u| z0je#ViyclovT4p5Lsp=bga=3$AZR&54wV2It<6FfvaVi)EKt3|tP_CUgGYvztfXXj zpz~sbo^Y+n02YQDfUpXH%5a=pqBWSRm11+!HZ!!_Yg;2ms>sgqin8);aVgl`fLF4C zyo*0i+1O|&1bSZ++AeQ zM*%^W4r$$hU=K7-W-uvH1`vdnl0yV4Cz{j77?2>gNL83lu+8EnoDqWJRH+$Sd5gJ3 zvP@v9rh?9x=TtEOKqv+h978hbO9K2WXe-FL0FdLW#E(XPrMJ@Yl)+&fi-=w~Q47Hp zrAp5^7Na^*LUm2Nzsbd16~p49Ze5rtP_v0wZW&0MDnu(v2Msf(Yqkz0b`O?v!TVb! z43%R#m7Ac`>|2*;P^C%`TNpW+Oww|iiIog_L6H*9A+xTvq+DJu;IIxLZc75euNl4T zHyp&qVXW3gA)=ImVWQ)`nqzI&^M`4Og%G?=@x?^DGiHhzvupx+J{?vv5Kvy%ESe$K zF-p}p+l<>a#Q>V1mlH*kEEsYr&j#u^&6 zOqj!_v@Bm(F>4pVW^oMSM~ECxi$JhwyJG@s5wK1*iZI7e0Gnk31+A9o1To;UIN5E1 zw%K9u)ubRH5rmEDGh5~DtA%p7^_T-aN;W|jkVWi}muS4;1|XD_AEJf|Sptv=GO7~N zC0S%(Ay&a=C<5~G=~WcCl>lxWiUtSKrTnlTz0t_etq07*Emav2+BERnbE*YHn`pk) zF^%>*n6b9YJdsTG!^;6xPt^Y2Rhd&3o4&An#s(w|$DRpBQIsZjFA||sIQOz;VD>rn zi5yuvRtDth;BpA~GaaKT>*gOl3o&R%4Y&wTrMzC=-|gI(k{v9U+8*McV~MwAfXb=v zB((AEFg%15U%Nk|aFIrCZ52j&5cry%EQW=O3Z!RQDQ$H+CF{o<9X+%_+`3qd`J7GB zC}nrkP5bM_tPPORbYO@o0xC91$i+Rg?hyclHj5W!^u{>i2$kw|K!_0%ecuNKG~wNc zL`FT8$oI5~iHt@`0{|luM2Q7CO`VHV-JP#+_R=1YYXHFSZrF!M+W2?|&d9gn*~CXh z#tX5K$MkFx4qB+F* zK8a8~IZrQSZP{rXeLWR3>I4|hID8K9Gb92e9(>JR#oz9DITyrk;O-3(X&w{-N|75{ zgmx13S2$g>8F4nkLi~BhmsOc>S;u@H6g;#M&e7%etYK_5sj%5-yhGmy?iECkiiMXk z+l>I}UtdNU@tNSw;xw_sfI`iw2dD}O-47%(E}%C>>?^*wlxn8w`t}YbOITC-!I1+o zO855}2xA0b!C0^s3abSX6JXk7Lp1THm+(2zSW=9zTe;x}pV#uQq5FFbbHwf1pRdo{ zZo>luYYl!Lj&u3f)MzE0CF&ZIRQ(A++;Amm3b=f2&i&&2|jn~ z0nPWlHPf~?P{)rXZ#ah00rxmyG=Tl9eiMa0y%!z}mspl;;{$8y=ltHs`cqX5%)zF} zOPTndui7a*`W@MZQtMC_A5YEuSKCQDxQmJ|sA zb6O50GzZQn#90-|r4mF!DNc)qGY^g#tV@gUjNBxIr4|OC>DWN!)IbU>k$yy5mi=;o1}&~5)qOECc|28q{~dl0zJJ* zOOkCe5INX?9p2n%2rc`){DMaoyMG^PvyXDnIJTI>jw3wlok^`y;h9b^YUY`YE17I( z*oXm{g&l+E0L1B(Q{i$V(br14fuB$_ZqLQ;I0hbv!lJ$g(3<`+`c5R~0t6@c-Zqi+ zNl-2zTvdGe(YYKNVR%$0wk4Y)I7IO>^b?*oJsQbibo4cYLu_T=7cLw_h^HBu{XaBP zzMghGbGPHBlq`Lhu2F4dao$AAedO>ODd;*xe!Wbw=*AyMM@(%NjK(7tYQuUd00Kd+ zhJnNFRxI@Iw0fvH#rj>Q`@$JmzBp^l-5=De!q9YP(_$-nbASpRL zFLN(nYokLUBjrNFxD?|kv0qc6%r=_P|L+J@*Iz$BU0GHtxQk@sDE)YW;6S{L5f#9N zswy?C5at2!Ua2%)Hs3j&-2DO5arx=X*uk;ZENXd%R8a$!ILEeoyZGA=6!<}LTZ=`T z3Kk;?BOw^VL8b$1=bi|_rAf>2w_+@2jT`Il}w020IX~88?KqAT9&iVfgPQg z9G}bV?)_h1=-G!M-OL?E{tYIZL!SHLkB(B8+fZ!{`1&nTGg|tYL$I_Sno_j4PJ1bn z^wVSqi(bvDl2g!^das##se~c!oQD_tTh&nC6(l1Ro&H<~kqV6hfz@lH$B63XgvmI~YVBh~r~>V*()3Sf)N13<)Y6;akX)9HQ|PHny`a1H{&S*vY}opAp2<;*Qbe! z(=~$%M!p#nk##N^aNpL}CRIH+pS_D?Kw@geVkN{Z+#IYy1_V$8`m_48@9y|~zL12{ zeqkao5Oat)ir6>E+Z?Z#(}n^DHW$i3mY85AN^7DA@9x=%+d;D*Y6vopR32wFc7Es1 zbwx_ReEI9-DUl4g&|?lM5qvA)20K|19Y+<DBxu-3|>0X&-6J z3o46*@l&UrC@KXoXJQ>3$Vo|ZUWAYW0sIr%6dDGeD90|BlT+24sT&4$)k1VK9kxqOTjSHk5+(L(8s{^%+NY@(bLY4<%Sw+2Do|$JNV(+ z6@tIir{kPAqN>kC&%iSEC`KGR|qG zCQRVW!qm+OQZVQk7>k~O2cQd$2!Y(#9SNwwbj71(+?P~BK%yHruv)OV(hN3YV_tU_ zL5m`IN`x^VIn2xe;h_clbRXm1&SMx288>Y3WaFPN%eO|PkWJ3kE+;MSjl}k@tUC4T z-dr%pr%g^i657D?KqLT=ksfg9r4>o1f<#rfVV-KF0CIr#c53;fcyH=UGY*h}US87K z7Kmw~rP~xUrvuuv<2XJdRjdU(#?RFwWuHCS@ zEGE92%RmS+Km?fxi1gywVoa;RgmMDYW%1_>lfcNt7{e-zs%WFm)Vg8TE&r=`Ow)(~ zL0qt2H5ip7IYl_1Y2M_eej-1ix*JXoB!LgrVxCB(~O_7Y8f|hRZsFFz^KEf}QbJA4e zPU%$r1Z{SDL=RnH(J|z`8Ep%Eut&@93wPo`k0u^+8ERIZMoPr=Y>^m&sYjn8=4Xnq z#=gS1mwdc0a`nqv3M!qg#XMHtm@&$-TNt+U$Dsa|$$wTl=2A{?jtA}3-jZ5%ZOGrZ zk{^%sFY1b>kq~DmmUf`&+oYaJL?(1j^8)c7^wY|Id*Pml4&sdUCgUzxg|Q1XbM_Ti z!rnM~XG1~*BvuZQ+D26QOsWnIV3td6vl8V!i&I(yV8Qdx*S4=yW$cgP^?fycJ!1kD z8Ac;SFo-O*W9Y4VDaJyQL>JoD91g7L9T;PZDP!C=9aA5KPB=V5fmG41eP@$#rW(kg zG6op4zKShDnv^zI=tsBs$*VsHpBUw3c@I(u=a$Pk+H5bkB?0ck*08S|Ec2Q$Y$Th@ z{XA@3-2W6UQ32{e&EKi-5P3gzs;&+Z+{FiW^|QqO#HQtZ8Hn)wS}_WQl8lh|FpemS zH_E(I=+OB*`fGzh7G7FYYBgh><0=JfGMBZ|^=OrZC7#|f5&2HXpHg=Sz9cSPlO<`S z&6pL~&)?03Uj(r*3HCo>*Ko5QPhli)ghNAlYbI>l9}h8}JAwLjD!io-1o=#| zUY_KNGm}X~H1GF_9=sgxy7JKkb&=~e8#Bhgb9xFuAaV?+`eYxnIOEhl_+kw$W}&)@ zg>jnM$P0S$=m1XH7JvD}A+W}1CEe;(7Vw~+T-z@|d;D;4Dx zKmZn3YtVJZ8Ga^V*~b_oX=8Ib|2J`9h$#=7AUx3l+5GTi%ytGJU!V4OWEas!Gp;j| zDZp9R3H_WbCpq8I;Q;PY<1{h)J~P?Nhtt*WI{z)==%6S%;J%ddd5MciugL)dP!?RQ z+pM*tQ*7TgHv{SfJpeo_OmZVwiH_;hg}(oj0Gg6$?3FZCuNc<))tIjObKExnqPfL zN=8s}T%_{nN~SK1UT@Jch07!c#u6BrlB-bVn>1&$1%?eGTiWAqM_2HECjCc7&>c{4$&G^<@*E+$y;(F?MO`aX5fDT} z_-_;ZUj6*f$)b?lWUJiE^uhX_3!Mj2=QK1wXmgB-u0`SDQ!i%6 zq#}8KdnVW)LJUtwi2(EWd+pVAB$7$^W_R>_aG_q*TQy^}wkyvO0}2I1{sI9}fyX0y zKa2gcza7bDW5<5;lw>rGH@V+f?84KL>YhWC&;<;jL6oqtq8g5$918QOk9w_)M`I8v zV(kV)P{{iNg#lK73}EDg$707+*BL?XbVDfbi+YrCqrYm-uqFbW7y|I~2B4EW8t(d1 z$r2q0#O+Mhh|bkPS?2tBf+{kFlGsw56Cs$%Y6}N)fmKx^V+u(Ns9HJPIg{a>?m zUH#FP&ZR3au_84`G>}r^>5tv2D_zvB_WkG5llt4}n`f=R6Z|t_7J4h!LQ!KW(T-H7 z!%bY$?pc%oA@kCJ0v`|)yVJgAfKWgXao#N<1Pbce$zBg1Y~6o8QOVP#E+x?-jYvg1 z{C(vvk@&PFPg*bx68+@*>C>eT*faOEZ$ES)e8xY?L=l*XE&Tre2wj;PW|EKw7+@Fx zX6Jub48E*&!0+$xe0<@;o>#T3(55$p+mo;1(c{wuBPfx1M7H*aWpn@+1HXBK1d6ah zCmU+Gy9g_Xj5b{t)$lvEfiN&;0h@EKlAYfx(bD@3QLv7VDm~BPw9Mc~U1KC-ju*JL zCkPPNt1`Psb)0~Bu3)W*&9bDFzzMZOtVIdTRuC0NLL?+De$KSkc>7PmhW{TXXmpFw;xoLD59GMWINRPJv4`w z8i4e!O-2wAkRZlP{6JtWqdqg`C`q%Ez<6*Bp@LKfmr<=nQ~Js(mTrn`4H+@4uui!k zvIL0Mr%oF1n`2}E5LpX!B8cVKtIuzz)jM(Yxi#=jUIU&StK}_ZBqKS#Q&(@sJg&fm zI;;Vq5k2TP&_(ag&`f)G?*mCjNU2YWpjo*_JyYSzn_FYbGpoW*`ncoO2mt8K3I_uL z9%hgt-9I*7s+Slps5$#>uf*u}`!VTc1ObbEAORteQG)O>D`G=+%#c zd7Iacgx!y26*-ftQ}k7gDdfAl@Kbqmza)~qKmy*nd^BHe#ze0$B#enwN^Y*pDlbfa zObS8qVS!*@XduP{KotlQ1TrWy#_Ov;(cppx!3Q`rk+8G|kW2EuTKY{UepDh`8pWp5 zAIl00X}Y$-0veP=_v1P0Kw%NAXjQ091YrrFA9+cvSgT;e&pK>jmPHQ>mj~!F=<9+=&pH#N&(8)7Vb8@3MMcq^4Y+si7X+lQ!fHoa7(?CRz!#-XW z^JRRPAtS?ql=%j~XXm8KU@MGC^^8s~Kbo6~W@a5UBfaVAfd4aKAz^9>TA~NbnEsn! zGrh<*KZ9kEBHSzt)>?$=fL9|)cS9K&l(x-kONr4|Ku8c;WtoI3?J^2%&vts};@@f? z$L{6GWS!2`=$qcmGczQ_fzn7Kgh&iTV)A=xY5dGPZ@A3&m_H{!@}G5Wg?_p$1|a$$ zrpEDu;^uJCE;MnqkX%TO?Gf)o*&7E%B}WM&NFC1ol+rAYs1-5h@5RNpClg2>;S_$n zgy1QK&^0g%KqS3ao&rJ%hkYhe1w6d-PqZ`%Hk(5$<5aYJ4J|svZF15Q8!wj?M;@b2 z5|UOuSNzIeU(e&8mt-kTX2b)qhXr7)VMZ%$|F=N?636T#6@o|`4M8OZ1OQBjBRuuB zeJE8({OO<(;Fum3FMT%}NzXfzgahFZuCjJPwnW@Cn9AqA5D$Y1G5=|z>Lj2lqO3a} z3aY0!eRK#XMLiuAl16ry2=QxcRSecCpnafruvkMLI_s#%3>3UU9}xiu!xL9}VL2Lp z8|%x@>T2_QD)Ng{p$oO#&SU^22mvR05MUq}by$Q>Y$Qy=WXc8$KNUJV#`_iQdQlq8}7 zqsQIjb?AtGc{jJt<2C+ghTz*qv<~`_*okGl6o}Ds2H%F- zlOCSt+FjcdA_jt(2nvCF3=OUNJ^XrV>fPz1r1o%7zQ2pLSs){}OnBJu0OfYM#1790 zP<33tHzlz}QV_#MCo3?+>@qCVDx1oov3rs$wJKm#>`h{7p@5e;!_AV>;hLzr{&Z!RYI z@YzOC#l6|ZIEDqtQV0#lJf8*z0#QbW#FB+frfDO(1B8iaC3Z40gWZ0?T@vB(lQA$ zC45AF>1V>j1n!251T7%u0EBg&nJ!oKO~o-mBxf7qt(ew9R92M}Fx-~3A-fDNUKN>e zU=Yh#tg9B=dJiMKH-$Jb-WBM}lsC<{R}RDz^3W4N5(FFc`F>ZC&t>*5Q>6>uSx_Xi z77(UssuO6o?_Dt4yUibB@qr*l-4=$MBRVBa!bGau9Fcny{s!9leYE%6{nU~`fm;Sr zu_`@po{1jL7`*f~Q~(+}0t?TL-(}flI%H=S$SA_FlR`0vSACdX2x|jh9xS><9jFj( zZ0_JeArL(2A6yl!HE>};^d^LcF7}b9U>=>C$z3)LUf_CSXqbtucxxG{#fhk@$8P-0 z)C<5{FedTV#wEN2L_w&SkhrZQkY;KYR`5(O;L?oei0>F|m2kk9sLIIEFNAtnE@?Y) z+jgdcVOb(Pycn4JbL7GvJo?U>F_IjMHy+f_4A+l=4WOWUH57VcQgn2(X$jT84m2kg z!07P%olFi#!u;KjadOQzFz$~%^WOq6`=5NDHVEk+uk!D=Ps7m&FYw&KgWnCOUw({U zMLp<5MTOqJ{e-+gpC{~DG{FfBfd<5?G+mTwF5YY7bF+oBr$oY8qsO{=@2Nc9V$>n~ zV-XTSKIDX=R!IOXSg=wkBLx9q3k4BaF(hK5f*`8|RtyFTAfataOc`3pVq&2cEmg9r zRIRkMK^X|yMJp;)7D#n);YNLjL)FbyGWK)E>l7%;CesxKpCk8gd_zwo487_j4v409 zhT9=y{w!i&sLHe}a}X{|XiCiLn90UsU^=jp!0ilsn$aMg&T>6X9>xUx6!jP)pJfVm zXH23ZK{4a|vA%&3N z+~ySb+nAM0c41WEB6@*;dtFwL`evCZ)OqEGs%5oMhet246fW&T@oQ?#o?OLrU_|zi zn6e2`yMNuQ*1pd-m-{~qOpD3wZOJ1;V;C|%_(%8G`Z*=@J^V16qBHl1mG*nfbDt(< zZ)AKX-yx~)mZ^pO8U|p;nVc`DO+QU^;wpY1KNrx^!mimcCMAoUcheA->(*Y_dLEZtOt=S7*01j0^yX z7%)UMA!yf&3Q?507b}BWOW%GFYhI=@4fztH1rhzfKsbFUT?*{M!A%tS)aNP) z!C-G4mEAyXamGep7$hPFCjVdC?fmo69TcTB%ttEPWJmtknQXmEGNkVgSQZIG&9$O2 z^L!j$^z+ILS)e+7xvx&O?Wvs8wp_7c^YrIR46H^o64M+G{4w280lCBbs8=0zGY<{a z;0~j1?)ZNfnnVL38+Ah~lUVBq9RRNB89F31hOmh)KAFZqQBIG@hfK0*A>JY50;7_+ zA#aAk0?43Z2#8^TI0L(0=z#&`NI;<{%Pok8Q=UqLN~B@4#uD*C2YFs3s1vAfBW4Iw zvWyu(VmI&Q-2&>Gi0qZbQgEPvhn1Kl!?iYtu6lU)-$ryud0XK2jZWH^Ls-vLp~!_| z#fEAeW}b$#0=h$%DL8rJm&Tq64Kdv(k7dRegQ5kHFrh}+DmX5pw&`R+P9`Q#l(~1D#?80T=dK+TfaHA~a<8l>m2$(Gb6$((>4vl66hQCkJAl1w zo?w5>C;;D}TKWtnK&C-1ix%YcLjve$6(e7xTsj=`e zp~Bn{`IXb03zd{@kns)ln;RC~^mTi>Gd8{cXPAH_Y*yZ_p1XAGV#a>c z1Q418hq{rvz?fq3Z?6OvPzVd}Yu5qx$l=#ag$RTQ;b4y)H+s}Nk0|ap5qB|}aVzV> zzXosK!4(G@+*RtbsfOIOy4Qa1HzwY zgJZrqIa%>Y-;)e@K0GdcmP~Pmd#2m030ErX!CbVt;XtA$1k6Nl*-y|}Ub|#q7*~@EFA@IflaLJTpsnPDCM{c{oB$WkqmcmqFi6pxm zC`m}yIVc;e9Z?I3?~ud@$ZvO7G+=^-&KVSelcK^j@5w*|O7cLG1#J~6w#tWiG#TY` zTL4Vs-w7iY%p{DKekk75NdWd_E*R;xqlxR+Mb9?9o+_;JDm@!bW`&}0D3mj7?X40? za=rVuJk6%UH}P$@gpx(*g>Nfyw9@p+=6yZ38hR>yN_!U6bL9bc?J;dQ_K|@OX4X6` zo_ze;XE}a|LQzUZ7WGuut8J+JsQf&!B=7#%T2coGrh7xR(>lmkF z*;a~l56fybDhhOV#*_}JwdvwL9|5=+0-r=OV5V6>w7*`xG$kmKWky&o4oef{p=|gm zCnh+@cF69t(t*iOXYK3Z{c+~y*BpZdob2TxR~{J>ZruWQAhS^}7Yo)>h>CrA4=Um_ z!sPuHse<_NPpmIu5kVoy^<;J&h6C#?a!?MB1qD)$0eDfPlZsVxvEwr1(8(NxA`P*m z%C(4CAe=ZhS9SbV%R855jIuB88+j(0vKk>XcGJxJ<#bF<61 z;}Tr=?Zm`kl$Jxiuw&g+k)wy`#ugLEi75gxW8ndz0;3*^4vFi0ItsoT{JXbrd0y9b z7{vwouOOscA@7EOQ2_+G8=e>sneu+?>A!xeig!MpPeIb0k1ten@h-UY>%{Tp9PtO8 z-23>|q=tFh9Qvl#)*`#eIl}BBMs0j}!n-oGV$6C9%;Q0Lp;g=xz}jN#X)3zvyh z&OV4}wBrNq7p*+gQu${+a3j;J`X77Gd^qT5AK(}R%MSj2B`|P4Ot(H&0*2&oySW{E zGfup*4e)_+LP(y=7~*trDBz2oIP}O^FI8`PSIj&r@XS3&8y{g9pe+MRcTlAy;vlhcj^+sJ zq&P-SFvABU0HU`%-PP=)&*SE@iIs(#{j};deUtcH|3r*s-hI}bS^ZS@)V#{n`m&;H zGt!vRj@LK4O(Ba%IMP-_Df{%Za46Oh#5(m{3xf%5nO8N zA&+ywbIQ!5WCR5}>uYYC_UuosESEy(buxA%h)`^m0TB@pN3-F6$}qZrLgR-?(yP=I zicz9$+=_!_K?v05(EFnRAJ=2rjm=uwD!?A^^?)6a_I9s(j(8`ppm{4m=8DYHP2y;- z7C%b-Eo<6`iu$Jl?>M#b%nZvpZW#(Jd>^*QLhNdQ;{eM&NN*wX;@A@$!R^M~oQf>7 z9T_8;P@HOs?$_VGD9k>l#Gll;3MI55whu21H~@wMW+Nb$1_|0%kuC#ZhTG1NA^ z&sgYcQ_I+^1wIeA58_zH6bND{=PJ=W6??aLGw6M(`|F$8!NB2U;La9hvhT+NE}p%q zd}{MY1hO6Z^G}&`C996XL%No@h=sO%tr0CP>{jNKx{oZ(g9UQG>=ha#E#9tO^{{Pe z-?AQ~we`+e&o#GMV}qPW2~>p=5k~c+cTn0nZaT>kDyuzH1}xn-*Wc5u(w5yxp?zVp z(Gjj`BSZPkeftb9*DXxs{|NJFs+Qz-Py`$%BIzJ`SE&^$Lc*a44F?QzQ*YvEJ};+amJ|nNh`Ww6tqQ_GR2Ogq6NqqJ5x`f}1`{oVaSFKk{y*DbDs0zEJs;(g zhol^FDcylPy5lzHH%wdAn#{?Nh1j7|1^ekj7*f&cT!lJS4(< zxhNvmsYiw3wNloVme+^gqil_V5`&7Kuqbp18^;*1l~hYr;dWR zed^6fT-0X^5r=YMi@0QNR*F$-!YfwiASOU##+t4bE66iBt< zB?%P{j*#28G!qnCD+~pH00GHl{amNii`CF-1|OnWM1T}RGO6q1A2<5?=WD%ga$DN2r&duRxm^&EKvbP zh>I0KP+1gFQHrWXf{HN_REnyo5kV3vfUt@xBBCrLkrg5`Du{x`Afm|;Sd4;*#8ClY zq!C4f0b+`Xq(p)$j1ffyV1kiWF&K!k6jVfDstT}H3>6qE3dBY+AhA?XSgeAoD-|L{ zRTN}n6=EF!Y7` zf_u?cl8S6yNRV;va`;3LynJ}PRFBOAt&7no5&{A1hWqIOu`dGCgF0Yxr;niWFhEzh z^ks4QA&R7yaJ<~dY5PK`+cR*Ww_OF`H-C%W@#J9=EH)Wcj~q7f>(1M zDykP+oUuxh7{*mnL?Z&beID)zV5hb#GH#)$-uGhBgh2wg|*jiVFb|Vy@xUM*TKuKGJSYun}dp1W@8K zhx7O9Q7Sa@ne7rO8DWo56-J@#MQDzy!GldK-=Ev!cNgpfn`Tq=?T#D8%e#}Tm+YglSSyc&I~yQ-YC01MuhMft|09OnRSYWT5; zrSgS9AmVI-Z9F8U0de9LD>!{(*RY-e*?4qiUW zpo9U4_-Kg=Q&SYaEclA8OW)-FU(DT0dp7ddsNz*(kWU62M?(NGfywSpOEu7n}`ZB0HF|KK~_Lw zj0J)Wk|=Wap`CZnQ=R1}wM6#GGzqCflnNCG&)gT$u%VHFO$`pK22ZnfglKu#Ci7UX zlZ`QD6TlYMn-4a7a^VI3S!Q|*$n>azCxa6$0jP55oJgTBwF>Lo2uc!2A?cyy&-%zB z>*j2+$qXDvHbgJ0&KVdQfVzYrIUawT)%+Bvew+hq^)PuNd?_Jn zMUY!T3j!aTg@xr9C=D?RgD1dAV}&>Lq72zz*Wcy-hYTg6Q>9x&kJ-&@h;i4v_P`ArBU0AkSSf-NzQTtD z6qO6$(W9+$!N|nS&B?(VhZ!gcAP{Vlq-Il0pco(4K4Fq!O;9?SWaUgte>$LCstkae zQH@5IwRC(wL4^&!oXvP*@cUS zD;OvQEVJDNER>NAnP>DGlNC&YD5__K9Y_wdxQz=e(4nw-P=_k>k|N0NpJy%@Vn1DVDA^!UBdZQjs*y;$eU7J+P9Y=X^mQjx@J;re{7}QNFBszUalW`$Kp@%# z1_8(^VA5=e{y_jOq9 znkrepX~YWXSo-6fZs*v!qwO$)bs423S9$?V25|2*6!9}8M3p&UGyIty;2V4feGvDK zi}U_LWxFk#14?Wk%qWX)>b5p6gp2>8JW;V`#|$yPNZy1|3sNsQ&PsV0w}}YFwt?t$ z#=!egCPeixB&L7{F*gTp7NNi`=Zow!>bLMgdbYiNcNcVcVPuds?Oi6)$2Iy@h@_7= z=jRN;@H5Ed7{R4g%+D#B%GTUd)5A6K*3N8X(m<`M5Jiw7 zA#b#r%n#o9d(_^CljD=ePtJA5>WPF)ej{1|zV3+j^PTT6Z+jzwff6>bM#m^Wkl{?g_&O_^L)~y>F?!ocClZpkL;%Tz@1|+zR>8NeWfp$z!Qd< zlS^p!lErvXO(h{lrbdJ?>O|CjxOVS~i?_=uT-)L-r-p{LS9WU)&PF7{^BBTuLFU}xEvg}cJrF* zvT~6_xt_@-)ZLLq+j@J)nO#1ei|2)jF$8i)g4MZo<9JuZsIn=RW)x^lDLP-~FVdw( z5?&PH)4ChS+As6O3}Tc?>1YEkIDJNc$$_XaXnKYW6q1i9Twi}bnTV<^8IbXCG&d4R z_EybpTq2Lj5dxsHT=cMLJOAAM4}9+K-1vefd({<9fMZ7J*#yc3<{brlEmpdXwkbmC zWZOC%;vuFnh(-6dJmqs?+kTFuXZbV@`y?@pcur`QWRMdn;Yk z?CAi`IPh?@ax9(wm>6K-N`UcRUmA-RYC5GXAh6jDBcY9~qhhBAy3j(%I-8YP z;VRiyItm z;N|mJjyT0`M)38Dw-!eb$8y1Pmvx9e(_oEd7=ZC%3E0yDcPym{mf8^Y*hn9ITV$+k zcXuyDZva6+dXymYzZ&Uon99Q{F4)kYfpPR(Eaa=g; z-jZ3fN4K2^BTHq6-b!A^J;}jztD2;?fBo%}Nsu3v=gh&cS5|YXYZ_BF{Be+m^l~=ez7_o|< z2%Z+U=asEWdE{xnj#&c)BZZFzUXS#>z1tDU#gVm~?9GrqR)7u%1g?d<(Ub`RlswP7 z8)F2}wUTau)ks&pAFiieEdAA}97^h`k;f*G=?n(# z-{lF|Zdr64x!GIb*9tY?ew-rfGoUUA^oknx@@So|BSxE$;7)^wE*s(6wNXun4>4~^ z7d$CM4lwD#1CMu`&fh?&2BHsF+dn@s-n%-d#F^%z&xn*HkOyy2FT*aMYS^J8Orw}N zJ{|y-%-}V5T|-Am&HC5SKB1j@ZAR2j%5RTe{@0remZ9TKr&*J^;gqv3qnAUR`KuH* zR)lrI{jf{sLB3miK9TkPpPBuJgfYVmu5tX`H?~|(Xm!1Fp@Y%Su-hHcRet1Tcrx%F zw9^{^pDJmjVq~6*)U95H3nW2qtAf;E&5J-oZKlxhh+}#@nL?18iXN5E#Qt@<_IrL@ zHGT;FJB{rhYWU}qD7;vXU8yswk6DCQu6()BA%F@LMx@C)e+ldk!A>};iGM4 znU~P$OwWJLW^EoW;YGalra_x6#=E#91x>Y z5?=KBI>8NPsx@Xc$S|^zA`w=Ge0g$^`mHpEb^(ccZ1v~s^!?w&B$x5i=-7jqqmT2= zM8Qn>`DaE0&VBLm5@l1MS*%2Od{a`3>k!6AVO4- zs1zuwN`m}C(0!sJW`yOC4VZX>B8bY6sDl+Ka%BfDN%QtVR%t0oFa!*n$}H$FIf5!b z$bDPr3QhQNYAefU+ez;I_V@_?xQYhRvxf77N+0Uu2BNtD&JGs}c!>$qFGXz7znkf` zEp)$wjSkpw-6hXwqW!?rLx!$PAg35BZ$SQ;+gb=?Fs(=tLa@`$a4>+ulUB@0f2}AvV3SL+zoZl>-=5^)uV-wI=vYR zMvoc(k(EeBy7bcMF^hL|z_J&z7SC^1C|%Fh-MjQ9!h4nX`Do-i|H^X>9YDN;ga`6L zsE@tmEOstt+hb|gZVMmceFm&i`^;4Q%hXmOk!B*q)z1g6{x;2>aRo=gmym*o zCQD?}u%kKFRt)K;k3K#;el4&Whj7xNMi5u2AkiV1BezbN5RNp@D#Yncih)tE7&1I^ zoT*bND3-{JG;+z3d?K7d|8kxMo~$*d)N$~F-MsBIWz87E5V#WP|H1P^e4o{Aby=)5~{G7P7gc2P_*xPKh9;8kYgRd%i7Ot_MWf{l&JixchQPS|fP26Sx7FyQYc zDcaQRSd9$bWK_LSS(KTajK?M3TS7$32KsFJf1E`ms-6Xk6e--Obrg;F&P$n zsjm7xyjd0k?BY_8Wa-x!ke1qDR0^thurTF|wDN8?H*`2Pf*`9aU0$R$oRSfuM^cUG zA<&A;gtlz6B&ns?^C>`wbWj&Ir1V6>kpdJ0FK!OuxFKvF7mUDcER_NaFb~3}b|aiv z9`(h590FxcafsUP1;m8h8*uabuonP zbYeUc4xXC;Q0~qJQ4V~chw+EOTS758GDC`r4#yJMf0!A7f`%8L4VT*>)-1q~OH>B} zY@-E%&gljx_HrVt$Z;@1=OF!$NRK>uwwd zRUFe+Xx5#JVReD&`}N3sg%(f$21qJNR5X`Dd-CcO^zV+2-wGHT^ z)M;AFRW!A82{t5{F|d$g-O=De{@G0aE4^^ywb1ci!j#x~jF+U*E#yFexpB7xZus1y z)XO&ZyNzgiJ$1o>&fpDop+yZT%N8qhTmS)Flow3_Qn>myYmviBLEh@^1*X=TR-XD3 zPLrK+YR&A~y}KofXte_nDtP<0bN%Mg++|>+rmm>z2nN#>A)su~t_4oTgDn@HU}|h; z>m)J|Ak$WI#*t#u>h|Y~ydt72lkKl|u&&T`4^19hDGJ%SWV#Jz=tq2jATCg_<|4k9 z2#8Q879KkEBIYQNn{)**cpfossb;La>hWQ~o+HM^9cCjMU>j=;h&<5)Ucbr8dy*V@ z8pg~LTU4(wqv$A#0BB`bSwU>xgz`=0qFz;G8n`XHjm32+pstf}!w6O`=eW&PUErA5 z+kd}yV32Z;E)Fn}5)lhzL@+6g2lan1?EYk%YT>n74;!cf z9eksChfg|Q0(X2>rT*wGo}w zo&K|rJ^69$KqS%&P(u0I@2#%^rU6GD>`a641 zP}yF;J=FDfT(7d44PI$jZBJ?SmkGV2@Yho}pqE-QZ46)sAF56BLX0^%?i*iIFvx^5 z&;~59)Jy1%3PtxpOQBuSk|`JK5-6ueL%S!6Vn|;r8(^?R>d8C*lA2`hhK_076q6V% zQd)DK&0i$Dq$x^TQ5*dC2O3TTiK8xz<`?3r)wW_g)WoMODfs!$9KWj#UoO{mhhp;1 zJd59@Od#}`p$~(z3{9)(V8DSA3PpqzSPLS^Eb*n1%2GjKq;5&1G_jD{N$ku$ylmd- z6;Ya$RW>GC6n*|F;&y&PVX(gB4jG4>nVNr0|f_k zRBj2cWtZC=@cYjA;J?T_Q z>USwN&f-bcslyJ;tga+6)3h<(jMdSno{&BtOw^If)jk6N4#9EmjPg*fl{5_;i5iVU6het46R9gR@OK04cJlQ(YwFh86mK`nmoTHtH`<8Z3khaL zhb;qT;?jN3AT~D7CjM@JZeQ4+=>F%}Y!}(=fi8v!mW2PQz`5UK5A;U>II*#fCN`U9 z-JQ%k0oW(x3HIbkAd(_NBIR!7?q59AwY!>&A99+{)Jf?2{{PZ^{Ct}aa}yYW9~rCu z%h!ZNAdXeG(?&mpjD#$Gsn&D-hWdwp1z!3!(y~G#nA8dIQSaM$=xPZBBrI#h>8`bY zrpP0Rq~gCCXs}d#98thF{qP250j`PHeQuBiG@^(lr6d?Q*Xnc7LMR3t5e$QhT@O|y z>DD&MT&&va!+S<&K5~}oY?v(?%tIS5vnCywP)kV)$O5{|l0Yt4JwC}1gQG)f__#yq z18SKuaS6sB$5s6}*zvg-0GcMmTn8^qCBd02W}( zjKGi?1gKO%sH5JoLXX2o$+O(%_O==Bt<)v9U1XM}s)n7~NDp8(!V(*|`u=G_M#mZ~|jIEenf%CH#Ska=)f zF({q55e>+bB^JO_Ch@8-f=xsIUn!DM?#7SG^5`Jy-#7 z-|7r$+{Lg>rj8B7v@9P|5Idp69u_$R0X}${%}Et263VEk7$u)8$`jrp)Y=t7$NN1r zA5plU0+skprrhWu=vi4J~q-Fy~4Gis_@&{yreRmMZiZ_Qfde=bDNfWnRU`N-BnqHVjw@8 zX<5WDvN-g61lk)K^=zg4R^^U9)%LEdn)#j7#{-*|N93fjw3{mPIy$Ka5Mc8F0+ED{ zuW2e2EVdTpAjpLhnqrA92ZAvhgjaA~4lMz(8W)kbpR3cHF|(1b&Vn{C=n`R=gu{Nj zjqnvDdj}(_q+f~x$q`WQU19r`rmc8@hL@1n6{ZKC6NXZ9ZZ3JU&9H3!KL}l2WD8q% zpqbpYXu{cs2N_46iC3CN0dtNvxpG#4&ysm8AmtS^mpHSB+B_%R%OWDfj(B-IMeLlM zv5EFW3kn!kC^&{MA5XsKxI{Q)z?>k7b05_H=i~n>cD)_l`iqt5s}l2)+viuk$PpPN zkWxVyuu>u^6%jn>Rbrx`t0KjUMSy|`$S4aGin1dWNFt!cWLXFP1*{YWnP>bjVXRS9 zUx}#v$xK(ywjZ$}3_uvjDKx-Xuu9kpq}`52v+0ST_i5>^5*A#Df-qbn2uSh5l_3G~zIAGHgck$jLtTsh8N3PULhCnpf+L?lOK~&Q6G%bG7vlYy*dH;o#(xhtJ${(a(J!BmLq*Ye>sAxn0L6K+vX*@CrX}_)@8%$_pcpqoCn`bVw`@bqrr!9XR53M(mkrTwfWO;o6 zv;#5iJ}<`+ryM!**I2ya?`|Cy(eFHZoy7NX#(zJy`~Cl4@_hdfS?zhHh^nZf3kJ8J zD<{4q?qpaX1?4(0l!~xC--m_-`~31=;~^%>#riV6DGK5U>k`Dmyr09yjcBe+TUfMY zvFzWXYSqt2b!NCKCJ+YEGm40i6d%_3b!*XMG+&z$op2Ad3p(Qi}4had>Rf{xt&av~xq#_wl^3#T0NXJ1x- zh8X9UPJW+e_vU^ct^EjWV`yVdg9auH8z;*c6@lc-@|LkkEl%AeR_E7HXgiyvIp`n>FJaEsO?D{?Yp5N8l6C(urN=m~Ls(8|@7^wjy zMfblhONmZKh=PcqqN3%ffovlN09hBBP*4~wov2nQA~80FR7FpFRgraMuv8#)_S0eu zAtEtDia_M?3)wpTqt)2}cskQrF!|DQ$v+fEv-{ z>O(>xs{~P3RG^6aTN&`OiX)`0gC&oL;pFM5M5tL>B8ZA|m|#?FYTF9LWkt1sOaEVN z^MB>J*3{jIm zdYdkZj@@`5d7}1_#v7r#CKKU83!SHvy_CU0%t!OEOO$({FuS zA#CknAxV|?8g%$wG9zaV2CW zNMa6BOkqC85GqV5-oWo=>Mr&dO|W3tH*u8uhAcdAUZZ_DgCdCa-(bicP^mFsqMF_a z3Pn*!q!K>V<=Lj%7FA^hY^+jJg>6eMOJGqsMye_*EG0?;#8g3gUtgmgVQld_m%dGG zm8&WvWux`w@;{dg-x`{;(apfdi3-;mWJgVVwN;T-2Z~iZ?HEOiK8p$p!Bq8Rg^00O zoLaN3sEaEO^v5LyKw<)oY6vhMZ50x*sFB93VhP(U#VzptHxB)?`?T`cbqrEZ^lguR z*|p51ks=lV?<8y!ussmM5C2Dj8+1sH0^w+(~~^Vgbp>`kwhR_ z#1M8itgWV~#AXRo9`W5PDsQp_%EXYi^AjRZOT{Qa2@o>tCBAR^Y@EsbPwUSHaCN2Y z!~m?#9VWW*cr9Z^$^6tek3wX{rnw5FlK*IT<5Hm--z=grUZ55_eh6>B8cJ zPC~@JJK!;=HnC2^i#ibTTB@OIKy(J11;`m7R<0a&MAAzn1H!a7UlvmM%f?{J9#9=@ zl1j;oEQHc_{g*ZSIQD%!0lpNczT<(mZsw>)jhde!P9Lt;YeW) zkKoTktLfhc=3vE(H#_cbstHQ0s{;$@bb!C&=8ReT2EX0zT}WvSgUkizsn`n+1|_F$ zi!w+iCXNxbDn&dGiG39V3|oHh*76hV)xSR)1s zxdMe55)Kgz*jK-Dq8jfA5)C7y>(9J42M&To6iG1xsH-BO1VHt<2;ed+!&5+*kOB-E zh{&ZqG$=JBk;aN?dRv5tjCS}RZ(LXi!Yn%=9L8QKeZ2US`+2scytUfJCVH&JMFy4V z=U{&=F|7=BUG$7{&Bpqn;|sqh3nxmENQ8{}X>nqLr8Aano;a<}UA-1DIVKU`ar1mCjJ>ZrqRM9M5fqXxcpSr={sZ7KSEw?Go&Bu z1W>1ArsDR#{B#5 zx$NjeP=jkrMElN=i5?6`qd1l>Fg}=xEsDzQPZ6Nb9NgLB7?KBOFNn29_qJ`zi?E91 zhnRrjL`6EbD59(83*!ZZjh;+Z524n>#Pd&rLO21;CiwCr?yP&M3S$Of%n68!b}|8@ zcaKZ`D6YC+C$r6D{XRYOE(n82fsq55B4Ie*=&MyHw^82<;BB|$ww|~1?r8UPiMa0R8NdLFo(a9lb@kobv=n>6 zjYe955cQZ)P+GUCxgkONzB2w_k}8}n)8Zz}m_Ue#K%iN|K~afPn>%BgFx$TF_q4(b z%5C-io*Bc`UmR#n6&&TQN#)sKZ5aG8#`|m}0HL62gB)|QMYidNnr?C-o|re(#cvUJ zt|YPVXi^~rk=N{Df=L}a5?IOTSB!218Os?$CPwU2O%7nAFy)^S`-NdZRVM%t6VnOd zV)KheJce4h>?=rVs8RCZgVP=eBx4xCLoBPFsoMn%AP#mGPMAB07Uib~6&;vhZLKR> z+r5O*Ap&~*Zu{Nu*mt%tPPeglG1ctw;w;MdTkAD!lg~d*H1Pi_P3Ga#%RA%G3dUkG zJmf>mZTs45&6G{7Fv!XmKbDi(Nst{Ma*|n!1a{%swYJ_HCe=}YY)Tf^{ZNrt-5-RF z;N=4rcU+OMxDYi(3<)71LSoKL6zvf^zTbbx$ExFINpn&La*&%S`h6Z;Di48&MA0^< zdNF)rj6m8xKU@f3Gw^nxc528r4{~qadZZZTGP(2)tA|U-Sb73sxob& zGs~jqCv$zu_4)6q|FOosK8nK7o@z>sqk#Z~N+W0_RKzR`0?)k(P@BJ*40!94&GS51 zk2%Q=8iAcY7tt&c5`2%oUn^L?E|B{_lRL8)jpPvtqZ{^{HN7SUEi-dLkrPI)3Tqs2 zU#8diZBP2Yn+$)6^1$(E9^s!jcYUB>j{W#_L-$2VDVPsTt~N7MNcF zqteT?dYTRAXE{nuZ_6ic=aU=lyAD$Blixe2pou!~Q8=J@J4(-;H_=5uHhC~VltXBt z@-a~rdm&Iz`F|DgK2*NxX9B=j1vWR|=mOFKh#0 zEjJaUNIU*C?fqPb`#ZW`&4dexE$SD&rutZRGNuH+-+{|zvigz1W!;h3wuc6ks8 zW>F9yDaNn}x`11_h({-JEkHx|7@lSK-@B^h#6lVF&JxYT;oYInBhTfV6$J%i`R-&+ zzLzUY$a()axahc{(nQ@IbDDKxlm@t@iODJGSiz+;7tWCmNKpl`Kw=_3`JZ#?2SZ2V^LI7q! z9D4TZZfU4p-clF{m7n6jOT|&uyPT0CMxEjU%*zHXP{{faK@&L_tHwldjYwVUX;UT; zD#x=7P{^t}5@Mte=-2RdI-rBrz$J7~6*`EBp{DxgbbpNk%~Y@|rk9nF$qylretm)Q z$}1-VKpBP}94M{dhm)&km-+7c|b4AJZLd1nJXI#ZWc!>-P_ba}}(7)23B zc3*h`r|?s53DAm`BN!YcS%;aVMM`7*en-|iN3!9pl2}sO zCIn+P#1Zrg3M3H5F0jy-LMs2VR)VM{0;vmLtu2XjpR6uO!U|BpYGKIWP-iID7*T5K zeEMl|23SV2K$}wNL({FS*qqQ0q6#XknzLLQ5>eF_EW4E>XeidUiUpxf$SJ7w?3$Gx zE-xCCf~>w~Da<(mozWXB#eZRjEkGuhwp=IDQ#wF_B>8q}Su54)+ImAxoAOxWN2$4( za2U#gQ(K_}5Q;^M34zh*ns~|y?acJ~vxz4YBY1cB#A36N6+u#O*5+r z)r73__fSz}!6bssAuADwneo~}4yKXIxDe?ejgDHOx(Xh?j&Ad9*vw;fz z`=(j#z}tDv=q;5%$L!2Eb?+PQv?x%UIyk|^;NUSH8w3Njf&*bmtfN8`g~1OIEPlqc zB1{muCm&=D#t@V!!cI zbS5AV#|$5_JV!_%g$`$1EO~Qapc~3<)7jwkt2&RCuXFdKgL++NgP_Urp|ZYQtK4lC z=@1z`O^C#iv@xZdF>iHTIl}CHOb^?|7bjEIh8>U=a|t&~8S6~s{^TuS_h88KS(r+! zEh{~T8BT&t?3|i4u3jgM&e!t(maH>FMlGZk*c37x$dL?RJ4ihGduL-?kbKbyr^0DS z)%)`XG!QSQypDHsL1vAeRhBU-Z_*@HU@kl9?S-@CW;it=T9joJ5~XC;S@LWB-2*Hs zbZlgDqQXs|LF}3xOL;ul!CPQjitLH9sf`nkDrBeKVX?_1MDNZJoy1u?CNS$FLlvIn zSq&p3iO~)8s%r|@?W74Le{z-v+eSQ|Y)#{t#T!OEB!vnZG7~aDX@W_CDsBqowSQzm zWpHcQP)H7dg09Lz5(y+(!ICjZd;|GyShj~eQqQV4y@bgDiVRE`fyjmw5DSgMvTsK< zjP-br51MyP?&@EIu2a3qOVYb9UGsP=&s83uKc|~#x83mbO4qMJvc<1OIHjUIuC&(q z2cC-=>$Xo^^W8`4dh5z(ZK_q~As)TN2#AP5W|-;(QCoHz_UC-?T$zumc6$uoG|~dW z5F#QJq=p!!*q<~PUYf9MB_ct+E5DZRZ}!%eF0k|5lu-I7ylPToAG)Y4+bCYRX%;A3 z8Kk;G50uB~bWIWv3fm3~Iu$Ff91Vi-g>vlVI-SprMe3^hbgyN(`R%o}BsL-t$mnmv zZ9fU2zks$#(bn0>s@*+a$_wng7x?k}XpFb+elfAnINK^+TX06!Mm99asS4>l_cOYs9NU<`LqZ4M{&mjcz>Q?j~4_u_zDk1^+eLBDj;R%IgMMy;~yya z9Oo_hXz5m(uRIv(+epoD1R^Ft@@kbZg|rT^PbO!QbQNB+UN`h7LiC?VJ& zjgsa_A*412#x@(wZGu=;5LRUK(C>aqos zPM}fOt$;`(aP2Ddzxcgz4*s{qPZtZ8@WeRa3mBXnH{EdNl_G2B)ot;`{Xg<32_*0 zhzbo70$KyKks`X77K?C#)I!K~Jmm1JTfcRKXxP@$;vJxDJbXmXVpp2Ghvteo7;H2r zb8tGLAJNUTwA9|)qN_|Sf^%V(Pe0!CUuqKqG?I<;!OlR81%wz7B0L4f)LOx^Juux0(ESI`ED`ped| z!6Af@HU=UU*ogMSJFl40*m*W{u`86FcP>Eb&73!3o%IPg>tr9$(T$-G7meU#w=;{! z%5=$ty?e`nO0!M2+8W+0kxRHW!R)5&3Tbd41W-t5upg$CdiAgeCIl5kfe9j_si<`q z0V+YcKVj@^s>Zi0YrpmVo+5iJy;*RRw68c` zNH%5kGi@?FxxycL<4Ed{0#dbA60{XcmUZ&_HKh&+k2g6=^L9jW%mm`Dy>?)?qK!{w z_vMQN7|>^xjLEJbWdU#)Oel(sy}^L!L`kGslxK0G`iDf&81NDu(ejdWKvKcpF}EOO zWK{&THot(>fQZ5dFo(v;SSSiCQU}DsX)!EK#z7T5=_`n{NTLdcGIsLo?UJZs$R!sl zFCSJELm7+C+_HWH5;l!!#xR6-OKr$yhjR4g6$K9sC<=g3F8u8RX2!Wy?WDk_K z9WhgJ)UYJXzKSV`!-AQKfyA}x&tERBgv9Hf zXO=2~0zt{bNI+u&jTUvha0UnHU~@U=Ecwu9`@ipS!LUqhV2W3h`8Fuo`|!8p?v7Kl zAHZ9DHkW)HD*#Eb3Myz&{Ax=o()?>`wp47Y>~$;nxTr_h_4~e`pZxAP6OCae+?rayqc;54syj&X({I-i3uv&ftvS_&M1qd(WM1`Hn>6ckM4$Sz>3 z&EGv16T*BN6bf z1o^L@&;$`wd~P)yk+$nr?2tFvcR{j0rJ4$dlp=zhWHZJxaICoYMC#fI@QA5s>Z%8p z5sZVbM83A7!JND& zH%I}j1psOGjQz;N=7SbV^$s;w8f((Z0;Q|hBtxsp%~`{z5_nFqNo?cCfS}%%yBzbx zAxjAXVxt8jf`EBubLY7HPXE;No}zg^<{l7AdUVO`_C97b^HI9^u*i%J?`a(sK?aa& zodv3_{eM4y5iY22)vB|z7XaF1=LjtoJ4ET`pNBSLamnVxND#Uyb3FL4-r;w3s1sG; z5yC};-IsK7kx|Pb} z!^>&-w>JdUlw_0;w!!aG9X)W`B!qxS5=JkA;nik#f^yf5?GFMAAOn9`bLO((m6fx& zCEQF#u-tKWz`4E$W;xt0V{Wn?={}B|DK+PqDAcYc_`M(ZrbgDbPM5ok&q>B*;S-N2A%m!8vhs1#)o*K(Tr_HVx z4NRY%vY(Dr;LDeMwNd%|APW>?z423nt!mpAwXVObf3s&CRaQm<3=2ABxhYb+9AxM_ zb~{T)oRI#v_UcGf76Qq#^~fxeq=@yl45&_zrO&r}W#Ful5SwiTreWXtO8LG${&&&{ z_5%1li|TOSzQXzs^)n=A#I1h)fLQ6?P2VE@tTqI7Z=Y#DzitPCn4|&{UKbS zZwm7ofu!kLK!K`(vRNn^N^W8HVYa6#-upNp6%`JzNFFwFYH&ox5=aDv&Ot$loT1;L zv_=q~zO{4bqad;GcZxleX!)=*@7BlJo(&{JQDs^F9tX<4z9QIxu6F`wj;hm8d19ex znD}OUphg>@SGNK}`8`pi(w|o?k(0#;MS?v4tFv*r2>sKhp^5C;lVCQGW&�=7<$D z!oy`WeI40u%^m)2w+@_q4qY&88F|}Uf&j0`N59p6>7j#(O)!fCNNKmdK#7_}O5=`3>T~gy%C#jkk;oiEgs6&NIK_-p(6|vlR!f201odWour%U39frkIG)I zC~x{@r1u6)=RGMUxDeeLHS~ zRns8GJESq2xMxE3ozzJWG!*bGfLO@I15>J`RTeB1HG#o}JrCwSFK+;Fr0*1F&64({ zdUM^)WF(I4YHhayIn3;}wOWxpNJJ?4T628l5%_kleN6g)ws(j>o%J=|b+L5H7m*DK zup4a+qxg7y4=1zLWO+Sjv#@$XA3`HIi^Pq08~J4b;|ByRU`Q}JYNSvy_-Smw0|AxX zHA)Hx2K5aScT(n-^x*+~n=@_)P&zE8_W3B)OodQ0U`CBB>yQAVy~lGr*NB(4;|z3Y5It z^il@uLNsX>VhfOvpon|+D5MX)>^Qtk=nd!CKO!9=qG$tV?TKG?kFWxJD16Uf(c^A^ zy4gP`Qt6oSs4NNyF5Mxi)87AHv_s~9iNpX{3JWJ+08#>yN#5u~ z600OTip->RP__lFhQ+9HqM;B&d1j?4T3jF>8Ds(p99b;DpL9je2}uD(EW4m;TdSI7 zkqs7JQzj{~$UtRFlnKaL!-e>dED*CXi-A;peku|%D^wdL4l9_Uv2l2&rQjN-m)O>9 zKG%p8-;Nl(T^fnLPCsUL>fN9U0on6ZQ!$--%lKy;3lsqu3lvm(AXXz45akT%+XGrJ zD<{G2+J;CZ7Dy=y$qy97R6&dp0bqiT77!_0E9<;<5dxu$vJT`#ctBB%RZWl(EN8gc z?NEGp1x4uUqB}QUQ8xs@qU1b#5J?dcClr-M0`Pp9k8)YiI!#}pkQQ^UznT%{VzJjN zaSwIJ7%^0NOOw&5#XIdGVpf+Oek?ARLogE!HO8YQ%~fr4pv{nAt@XK=Y>VAz-6YX`2Xp zEn=1!X3C0+l}0KOvsWC-cxH6oBNbu^oOB#ZEa!D?D{S;znF|oSZsx3ZS-lj}N{q~- zo!+UT)zgy%u_G27rxutEw|h8}M@J6howcZBS6t>}C8&j^6~{HK?W*9kZ7TJ{Fsf6% z%(ZILp_WzotyIvKwt}?qFtB0d0)#Y%#3Jg3?HoqZw!r3NE1?B2Gcj?cAIZtDQV{RR zYtyAVNr^eS!4b-6)zht5DUxXx6_A;RfOU_@X`3g9GnZye!&qHvhBsPdQXW=<3|P!c z?pk2ed2&^2%3R%-I~;s2+32<7{kTl1_&E>kf5Zp62uTR=2~deH|=^ic`_nsV&)m7GvcM-ED=^ zxwoc`6fZqKiJO9Y9XwTObm)1c9)s=sP7b(;=Mv~q=3g3l!^yDN$h0L4Vj}Jdi~$I$ zK}LYIf#>Vtx4Wb5*1380+H2+uA=2nwIP1tuCK?NHfc*FbKoh;k)yu|b2@(?1C@B<{ zSp7Iwx@Ji1l%Jv`I*uZM7Qq6e+^bP+Gn_I4{Rjr}shniS5I;k=6P)KUgF2Nan*|*o z0$I`_e?`pZY-wL308s@>q9*8F1~O<+vIb!MlQ+J@dK<{;XrXPx4#p5>7TR#quXXVIIJnQZm=$ORJ$uv`!T<)5gj0Rbqb z{Cy5vw36W+2SC5}a*H^n;H!HvqtRXs3Z&*!9|1%h4-+Vg0{Gp9ss&oeQ+ z8rP*9jbOneV@T?`%eM#T@+Iig?=ZX5$Z`||Yi$m-mleN8R+clI+?Fyd3d0&0zQ!Z( zn69L}w`+@MUkLBRCOPiH1M+LEVz5}Ot_=r8v*<&_@`nAVVb#hRP_9l^XbENk7$8Oj zjAX#pZ8J;lqLXAy@%Fa5n3r(ir{=m12Vm-q%%JeE4ly0Lz>XU!hW^Vb3tM`@E1yP# z_|PPh9rm)&r9Hd>oRxvA`x>Wksz6f@tj>W+29E`n2}>yf8&3H} z*qiKT_7al-wjGD?LEds}fu%zhHrvL!#`66bb7D4=8P(N~^icd8@3*nvE)=|2{Z#rt zd-eKj*Q^!|%Bre-<0my;C{(x0?V*7DgG)CfIn0KF)$2g^7ZA)>9U+Tx(xU3n7dllI&nuxFsoNp6(%VB zjUN3WQJ6a#Ckh;5W`Z9(O5||M8XDlMF&MO3}C*vhBgCWHn7FHrl>UAHqy@~nHb)S=WOd5x~JH2#u)@B-)T+zZ*_r(r|!uLrBj|Iqgtz*yqSWN&;>; z3ZA_()W&p%!x>xtB1i%j>SZXv&6r4~FGr_t->^^P>w43nJ+3^i^9UckA$}RAU<~0d zQk-VBr-trEm&yH3dTy%-2y~&u{v;0Kchwa^$1?E=0^Wq(jtQax(cJz{ILF0-mFa8n z)vaG9s~Sp~nS@~mot=x@3fn-V+|`c`sDF2oORY89ZvB6St@cImr)xgSS1<+hfB?ME ztW|2m=leS?fs#IciN~b)X>FdVKRW{H{kuPX00j)5uDq;?(|{;^u{p&K9*?g;9P_Hn z>GwPxn4eyBd(cfp+e9NIGz&eP7P`*tPN+GgA>u2%qN(nvs#AoTu6*fq%->!P4V2xLr(80W7+T>S3z%~kITJgDge?#%LP8E4w4vXM1sKa^2A8f# zArYUR+)l63g(6d32h(tO+hF!ZfWxkzrJ|g*o;QH)eGc|eh=8Z%1u-g!1bGLS=(;z7CIVp> zvzJP;G+rk~q$=u~8NEv!{wy|;bj{@|ZQ+NN*A8)qbQ=$CO4ti!Imv)QqReqC6 z7?^8Th8anSUEbD^Q`du1&)$9?t9kr#POd^2^^{@}Ds@;iVbpQjo|)lH0_ec(j=a2I z9xTX;L73O;;HVBQ{fyy<^N9$F(GCPgLy1vhh>1F3CLc$?15#lM2!T`%$4kEGs7kWc z<-^Xoeb}2=XvJo1VMbXZbPY8vZ+dl+h*4;qv2r-L0gcAKliqyUiyr z9<=s#_WJl!EfWscyF@d2PvwkW-djK!x%)o9lglm|8h<#hyLrqJ8_jHxq^=H9*nkm0 zMd5&9VbDou1+Yv9H6#~l257-{hARaj7sl8amxbG3TS7db(mi5J<(;y? zubhFy`iK+6!`mZ1^ai4i{vC8{-*Z0CW$5W>+M87rZ^fC3MN+1^>j>&zmuNbrEHc$6 zR*iluXT+M2;@&#=9_9xLhF{Y#cp+Q@VWCUe2KMEL=p`an&wJ4-J&4$|8MWq{`dl_f z({3_W$N}1hNs%c^o&un=ubsjOZ-bng_X)$1^q)*G?^#AD!S>LgfT+Yn^)q266#GO% zF%8UAq6@8s;3eZx54j7lFj9~U8!7f$sAo$i3yBx`a^Ym8_I&H+z943es|fX&RfGMwIHCr(`ztSWmH)d&LK&vfv5&0IBK{zT&oR54lD!%!Qq<_qEnk)#mZ+`>|~oZ?>9nW zMywSA2#TchEMoCcH;9}Fe83zLSMcc18zSz8+Y?4p3^haZVnZthY*kg81)SlAJr)QA ztdS08oJon2t+W&<5TIx{nWBKPp$l7H!hN!3Vxvf70EijF6iJLN%?-muw&R8eBRdT# zB^fj*c42utX>>@;5|yP)-9s4SUzd=TMbL+1P))@(N!`Drxzb&M;?~t4o}eZwOypHO z`_OF=xEEt$5MkR?Hx){Bh8`amURLex;d3Nh%}S1fD#MtFBVr1|$O#yTN^Vf1satV6 z;e;UuBf7g##4+tluWkk0hLa&bKg()ivzWCAex$^yT;w<&Ck$v8Fvlt)vxy{GuA-`& zx_B&xhD<4X0fp7qdTBB|-Uu@~Rl=f?U_RQ}ZNi}-kpfhHZK=E~)Cb+RK^Cd}fq;38 z@dr4Ejy5=WAVC=_sy0TAOOVsv5N2ft+sUkQKsp&f5mYmY4jYG|&IO>=`VY z&R(0=%Q0QPUKTgq<$~-ml(jR;llhmV>;*fL;F`xYtzFTpL%cyS zv1(G?3%w$XKyQMVdQY3;x-X#}HCg_&H4;HB4#@4(XEBU79ME?Zq?%cT9(qS!_;G0t zCXhT<$A=xAs|+RbKte!d48SbBYP-kL?UqY2AP52x`swnty~lAJAwAxCgD_$Ur+Jxy zjT6Aib^d6n`USr1v6)zcW-$eRi(p`(^jI;M+>7+sHA$;HfD6Q#Qh`K3>L=QOVFwsu zsUFy&&zExq1mu8dOkn`zz2%$BO*Fu4?FED3Y6hnm97382GD~I3F*p-T`O`-lAZMM{ zRA>5WaHiOuD?s}-O=uQO5-i$brjI6C%yVWLGfY%etI*~pXp{}Z0wywys_I`P$SgQS zHXi8B;7D=3Ht_igQXkX(w}*FlOBLfUDcgDthDd5uex5Mb0Zqv%LoJ$wP771$gUl&J zg>NcApR>{*p0=Vo$q=A8=Y#-bV1^B{7U80lAOa2XBq+Vn$bVhpn%nNS4DrKYRw2Uu zTN%i)ObRd~`T?y6MnS_qz=LA^5tcZrMFT?BAmt801RfPe0{!*${BSkKg*{b4IlyhI zEuN%ezqn{%x~y75y3r0)=wa14xWN)^;H}$>SG5?L6cs|^F>oq3#)pvfZh(AbUGFi> zr}|lEWyU7twImgVu ziS0t_)+{_a{57bCUnhAr`O%NBY{Pvf=tQa3^%AFlP*~a{Q-hnd1)! z4^+~EDTB4i&2LMK;MBLI?$q-N?8L48ojZHJAG z3^)y(IFlrYMVk&e6SVH#HW4DwW=c*p8jVX((X>UYxn>e)QRT(i1Vu{+1h4_ED1_D& z*o+yqc9`O&V%()p88rfB3ZpSGn7YGyVv6pLx4E*qEzU!LIANZqX9Hi<$RNEhA~LY)!VHHAlyqH_~kJe}~-?`{#&aEDDPg0J=Z=96JBhbVapQ0Ba%d!9M75yFK={0WmB zN2NXUp}U=XZ*~@8wSaD5KQte|NXZB2>5TyMe1u36)G_d?jDSe0K|%!M>%#AMx7U}U z69GlW8OZ?}BCeo_P(p}{2yOX!ETA{jWP}*VK^X`;Euch`lM1;h4sFX{dG6$p+q-W9 zPuyK5T~{)FK6>i_;D~HEWHl*fgiTOD*0WLq@aDeV@x>(2@Ae#+Lrwy4FqK&$C{OKS zwiqC4FkJUr?3{Q3^oLNEnB;h*V+{)GHsH&M^Xrz?B&sFlTJDi~Cq& zx?!I$2lo1N+J|Gv=%Rs@DmL!rC>voOp^o+m)-2?F>}kf`AEmG-bctyeuXvrJmi`Bv zy>emv>XzWzCuRobxT8QKivqO9scCI2Sy@lFl3?omSw1RtO0``IC_9;)aKIvVYP`3- zr)NnB08K!$zt2gknq--~w_7o|o^CLP0S?6uh0Lqls9{S^HW?N70uL9F5z|niwcW?# z{8g*&a9F^F2pj#<9fa@jz$awyTnE{GT*P?0+H8XnWhPEvQ(=4pBnjj9)jP*xGZYFtQRl+7c?Qu-i-)Q6}pdvkU{CWFTcM zg$4;B`g?Fb73q>G2*5hbxFM+&iUKf-sL03>5QE$;I z3o?_VMJXf!CHQE1Z))vk&A7<1XCrO2&zz4e#r8vW z=FAi1iWV1`smfP{YvlZK#4EtVP4d)Y*I95n-|QS;5lP}T!v7%@oz*Ik~TM8XzOI8+eNC=UGH3f*3CozZ?OwmCE zpb<2zv~YCQVJu*13sJQL5EY{>47~vJS%#XnD(mnnzy|ViYcF<$+b$9_dzLh=(3l2* zY(k9Q?f^c=;otARcSn-^(yN1`daIC}NTk-}MhS5_OnKay+eb)p(e%Q@6P}%VS9{esMUfsZ&Zk!qFio5@ zlR~96QYCZt(W|!;7!nBH0+-D^@k?qY0NzS(3lz>U0!=b}P6<96I5G#AcgexhFq}Zb zs3-KK0}Lynm021%p#=sGNd4=bfidLJkYOj=xKzMB23VL2jX-D8gm%8SQs*4#u;uCAs}l$`cd|E(g2}`OYpWV<9kZEVY6YmV3A1ahfegE zhX`wBmnrxunun{h1SHKeXqX{j04*keQW77j<3(e;8%YTy5$QjRF=qSWObp7rO&K9( z!;GY;kyb%#ZXn|YF^ZIesz9o5WHN*wYLEi)Tg4VeNhQT;Db1iY11U7Z;Y(vfp>bq# z9I~$2ugS2zsLNP|EL=Hc_J=ea&6c1G=V=YL2^4E8PNr2R#5=NlNM^GQHs1T*ev~Rf zLQefJBf@Q|tz9dpo-B~OP}tO)reT)Iy{Y{uYsQ@f=$%um)f1n^Zcy<;1!00LjbjZ! zP*o)Yl4t_A&&)bT)^n{kq1EH94FSW*uJ^h*N*`}6gNmNpVTIn_3yU^<5(P8bwKB?XWuxLFoeYqqA+psN&>CtX<CDN}U{Jw5 z9LnIrSTT*2WCtV*bM!NO!u#wmFQ-{Sm!9foo^hS^P>g54C-e^;GeB8H2#AWGG6M1G z-=}>uO!82mdIdLuw$2q#&C|oko&Kyhb?-Z==7^YI1@OlD=(GtU=-0O2h-8`f^3G(| zTBYe4I+v;+NcLvL5s>W3ID_WHuIa@#kx9+oT-k~8-;;MO%f!mN7E~}y%1lnVL*yIR zSR5vfOAmfo0d&ram@#}Xt1;Jmp@z6Ot@PJYmZL9HVqM^@);c6g$lcfU?2tT}BVsqx z1&t6QRIGx+QGhlq_TXj|VnZ^1H7Fa-J(i{d-J4D@d9bTQRv6lGz<`!ng+}ptO%;?) z)1GxXXWzQ8SCa2~I$v$?Flmj9gY_^NG-ZW4)*gK`oeC>VrsdZbdp(|Q&Dx7j)ad}G-@XR0A zV0Lg;a*sKH*$a#}ulmOg?Izrc#Agh8 z!CSvR!=A>yj{YXbfunwomJou_Z}QwPbu}|jNemKo%{-R3#|+C*wTZ}JS*QJU zz+pP1h481Rmu!ZulM|?(FDP^ntl^M{f+-}atwMpt`=c;4fGiCtfmHHc}FqLFT4rbz0N z+?eL(ot>IrVoGNPmXCVaQ7{Ans)*SxWkIYH`d1w-@#yu%W-XrBqlt<$tG4CmGQZXF zri#AQ-x;4ZH_vysH@zG4;h!ss<4#e0HM2mf%H)5~s}{`&t%1?154F;QEnlQ79g~0+ z9~etr?9Z~CVx!?2_Hi)=<$o89RsMhAL_dcQlRaB0=h*PV;CL_S*J6&|Sq`fV}iRq%UIydz{={G;|cRou1Hzv~na1^3KN9~_ig+13xp5&rbn$;^m9l5I%lAFUMR?Nspbi6@4 zx6|+6PvQ$Ufl&i!QCOj$XW`V;lU7@00Yu#@_Oe@0R#YZDDFWFqF~5J*C!7=75&}Um*OXA>L9*7yt^u_-N?7fnOvM#XMbPp2aMK)T zuTK3qmkbZyc}8ZNfUTN7w()2eZ4tT$@AmKNK@diEDxSu zA2oY+6gdh&gH;v8f#4wL4y?*3XFr|*i?|{lMqHMt&xivBx)+rd=^H*X;Ctn-io?i?f7}E zdiMMHlpbB$TgT=rwgE`|+OKvJ5=YV~plA>2FUjh|?W2b;Y7`Z~hTY0UAhJr7P#5$b z${`WQVojxB1F7ZyzA9K5k+OCGy8g+Gd5;U(U$kg=?|)hMdr2NSX^xNE*a}#PNQv)D zus$yhE)kHCWRM{f1h={re0_UQLUjfor>E7d<%e^R#M`xBAqGH%08o(>^!QVpBP8~c zPm0SHl~(&M43f36JA)Cqk{+2aL>s{0D413oMA*f0G4Ccf`nre}+Xg|J?XGw}@RMzz zZk+oZFue|sv3)^h!HeL!11shuoP}uc(^@ zOh!eKkVz18`Mi5??f!;*brg4@mHs2SBLE@-JzMj`ND=hV#6X|e;0GO9;v$=baPX-a znpL!ZLsu-}CMGb*gnH96>cd^`oV0sV)H&*Df#z!l$RLrkLHJ2qnRrNSziAbEM#9*_ z9qF_PyG}&v2^dFRnglpI&f)MdDG5*;Y0>ETI=w9XU2+|G%Bs1$4Ekl2KimPS9aDIUCzOKQ=RNdcNKCXm5fBZ6%MZ#uG(YEVKzk_a6?p8 z3W6jikyWT7ULc#GX9bZ)hzXexP4G;K&z^ZlW$vMKO$Q)!ti-AjOCC}#YWHdiG7ro| z5dmZrRTP3X3aKJ8DxaaTV+9sO%()<^f(1iVv1XG|B2nb(;q+yb(2+S}Qz6JwuTJw} zdh*qCK=$8eIz7e!JV51oj)V!m0u-s+Knxl?s%?3ndgk(XHkroj^kqsDMR2uGbhG1MyF&sCI zTs>q$uMu2UjO>pB7U`y-JYdplq%o2Q*p=_%elK!p1o;Qx9mPNtf`k!>F=SE_EFm6@ zN^0{%-Pg1|E`)N&I3iXb+z9~92|^RPpp%1xMis;d{&f!FRy#=$U018FnVRU%Phd}) zPMwX3Zp2y+Yl+r)ctPKURv1RZLIElSj3Kx+{W7N$54hl~_`tG7c}i8Vs-&eem4MYx zLD`uqlQS(N#685j54V<+5OZ--tix7@&~OB7MY>N_f7(I%x#PQo zJshN3+;;HpN@L%uFBvA~Uex3akOm!jne+U-K*SA4S((goU~cQ7**5f7fmRHPF@%R| zV8}UY``w+NBHAkmNU{OUZXtzE&ln}~E6;nk+NV=Yrr$}^lRY;^P z{a97DBcNdv`I(NEHI;Noq;Nt(t+vdQ5MJ<6_Yr__At z&P^Nu3{et&jxVoGf(fWL4T%8O>qFfjPP zEdmFbyA7cL%)dzt)=3f45S5W|XDlG3lNlm`ZH6HULs?WM%w#hmg@$AbS=9CJ6Pe6i zf^k6i=(A3(F(xuhGNw>4$|-_c*@F1AVu`CoZ60Y%DM3rRMKTi+h*XqFKK=0P;q6cm zKp@5eC#h)wkqC?l6#_^=Qa}{YRk*_+bS2wu_I(33kTj1aksLCvVpXxC>$hKF{ha`D){7XV-ZsfXscm8a{pVoj|MatEQS$=IECsngqA9Ok*$`^I~lsX zn8~rUn;TlX(;=O?@7S?DHx?!oEli=6;_FC(S)_a%<`85(SOb8WLXAPb0g>@*xgda{ z>WpCmKx9=UkJavn4AX`?AH&bZHJ)k}et8V^%^;-wtc7BPioOP)I(IEQu$c@v0~$Nx z2FBMH(*{x>MPn3YQ#VFkzp4P^6p^t8SHTSpx?-k(SJ6q~;#^>gUr9A6XNI&`S4@%P zd6mV99;N1OF`^g{5Sd~#=`#ZejFARfQXqmNF&X$7K@1u&OA)e+EgKpXiEN_~NR=#2 zh)_V&EXY6&P60jr3OpP{Wy4#b70=Y+fzV+^WK?bG$ut@t3t>73fe`r|zFCSXw}J!={q)YsvU0^YBDp6fhS&u#)CLY@K4LCU1IPn#Lv4+l zx_Wf*O1D-2`7`u*I9C8T9noh0lj&DH#Vp2U_tW;W%X6B|VhXU_pfC~Ip%wP3WwJ26Vw zFbD#Oaz$@C zXt-2KHV`YLW8SF%kp<6obsZhkT+@@n5?X+8&7|;gSZX27uCCm!V09y86qpoip`Ls3 zr`C63j&>nYq>Zp2av`z;7P&w*5G~#plmhocNewtm?2C>|CRMT3@-#z3W14w*=a&>4 z&wY7siVhQ*bgW5TGF|k+Hs9`!;uGruz{#=#BCDW*)g#}dzEBVdp$WlW_{nP>65U4F zYfqX83U@HXb5o0Gb=L;2K1DYUNClJ36?|E_4^5BvH@bIl} zZX}~lKWQ?KgfkL#z<_TUj}GE_tRaaMh6uS?QJ@u4J-W7m?drwRsQ3+FV+RHm3O+J9 znTC3Sr7}VbGJHLCr@pY{P*X!4io!$L05ztsWwWpBc>culCqpogn1n4L*_%;4ekvjNqUJ1M?E>V3Y%zm8Lp1V zG?u^KJw4Fbg#Ck;D@U`~BabN=5V>4-9m$QZQbDLe-LhJHbc*^`|0|;L!)PX^Zzl;UwxX zzi|elceX(jn6g9|St@yt62sgizs}Np|I3_e%A8?m;I$v8chY)d5XYwjp?=h^eWC zUdnzF+J*tl!;r=jLdAu2$cuAfO9A}0vLJwT-!2KAXkdesEAwzuSM+Z@J^!%qWq~2y z-adZ)!b_H%u9hl&$_f9lQI@Cj>a+ zz^yk{i>!XRM)YRwRoK76?Z(jGMD#NDurhWB!>udrEE^xw-!)sALC zd6~%S$_zoRs2jkLo2Y8lI-$?5U0)n+2NS*uK0mc{#5anILWrTPh>C;NV&WirAW{T> zFcg#GpM~V|ec54xqN!s>u<~-r6K7=1jv;O26j2%Zk+w_tv0IlsEgm1PI&b=HLFODD zYjYBmBdH^WfZ$Ox&;19Z&Mocyy)uD^Oe80P$<@z+x(BhKcbQvu&AojY+29t#7P>|Y zEAhLfni~@_%G94vlWDysVbRZk$EiX-JAew;WE&7C@*) zFT#SLy(9>LMnnh0&p=elFQc=~C$G+kGiw%O>hL8bcdbA+ibnV{8hOD3=c3E2>&Ruz z2DLEnqW3yF0MZPQC18V1=?GpFWlKbEN|(LvmpqVk5nIq*Atw5(Ii;#dg>kuICU^OQ z`qk3|^qoA=EszR4i-rX8zxplj-G>OWIYpKU$eNtVd>P) zdTxzVpk+7%8ndD10|*iX1S&EXdc8C`wor7zS@cHLGMFx;dwmbCH#uGJ3e)9#UmRgh zZccWWcCJ~kx>e^2@uU2YI2VbLFCc(Otry;?fv?_V1)wM!>bcli-fHZio8B)@5?A1OZV3Pxqgt4UPGNI{EVD`*M!KC7-Bw zQ-bSJQ`38pX9VeM%T1Q7G=7Gb7zbJ7tp!#u$e=}NP{|z4Zb?)PHmIg1&gfkviPA$j zv7cOWny{B%ayF?XWWmPtH=Et+W2t z!FpC+dTYB3S3_4AjWoc{OU%+LOk07A5O%W>ci5YT&_E0-lNo$FJZf^=cQ-!3!t3~d z@wG_Wax?GeXI)g`u;*exMEs-fWx!)V12jK^M5blY!Lb6Hr@(Uebjz{eid?MJTEH+x zncr^-e$obqBx)Wc3?I#Fjt~AB>$&|_>_r!mp_|K$I%$1Y#B!2R3$0*I0lF@s&&zPs5QL?l8* zWL#l<@DU8)rVi|+`{q%R!yGvg!U;$eAuDAYkxbDn7{&b9dBF8kC=q%0{NAlKnN7XF zD9%J6A}~hYTi*L_$Fz2!ta7As_-IA|x$MAP>cV>S3OtG89!HoZ*=mNgv5rnTirQdC|2LS5>Y1 zPzs57AAv7@*M9jH_n~mAs4H6tLcTX#>j>_J5G?DQ=DSbQCL^jH#4!Zyg`#SK`#M(4 zuZyIZ!*HmNlN7UJF%>)Xs&I-V2@m^#lAtEUMCb(XUtbcA@86+s9(WvK`pE#~*;Dty zRXvI-n0DYNFIO-gvca$$F+ORmR35wEuVS!7t zy@iDQktl*|fWDgBV}dKLN4As!?763>oick3Ae-Hv)d-Uq(TG58VnX(`Eedw^bLnJ` z(I_iYlGe6-(n6!4NTt z!bnJ^UWI#RkQ25hxDq`$(+I6frlnSS)@OE*45PLv?@?l-&cF&oivW-jFI1Aq#9)wM z2s9E4Bn}b6BdeN(yn8We*%=dLn9z>HI(Wb&L!3LK@NzcXah+OJJ}E|-z+lCHEC|u0 z>=s3QJ9Z2-7@|r@#t2TMA?{$YIg8iz=UO4ME$kQv=51#}2lgUw>+HkTtK`;c@=NGf z6CFqGWWF5vws>{=aDzhhE941a$QGUe0fx3(aswfLH)tI?ZHEb&e&c*_O$!&=ZqvW< zVORxN*wAl&{)-3Oj91j~Fln&p?I<1L2e~$wMj^*|=p(d%s}=&WkzlYT=h6E#| z%%6=R!&oCwpD$jZpqlHl{X4&<;PavRKM$$jUU346Mn4>%CQ>X65=z4p5>HD)YFT2J zR3SzJ!z~nwBBI3+ilmG+^S1&ii8cP`Ld=ReELpH%Q4CR&3se+eqgGVY%28KTxptL{ zK6VDN*@PS#&x^mW&y62P-IRcbe7gNRFyr5%EY%VKx=4UWAc~7)YYrkDg8dwN@q5T~ zXCDp;^k&fWEpPBupXbs%~~|K9;x086*X~tc5WRvkjWcG7@3VI`#4_1&W~s zk|IGthzJZ>BWMNyW4#%3vj(}lioMLfkp)eB|6bM-9 z3J~8ug}PSRN1Z48Jyv6XH96Vg^CRlHPMo{G6hL?W95xHsLtlpVP6&V@$~Abmf~bf> zl`~TFmyYDqiV_(DjtYSBlgu06Y8m-))STufq`2S(%m&whFN;W&He_|$n-8Onu@Pl} z(XA;y{8BvP^CQrS?^!4w3OSa;F?|0Yg@T(9lSf3B2_6wvyehrfbXGQjxv00WV{Loj zTt=CPQC`<(TDczC#OEgYo;R2U{pxc;V-1m?i>H@P206AnqzyrdO5=Fea5XaSP6V)jU z5b)U)?@ufWWLCxIcy~ z8QQ@2GfmL8v9h8=NO=18*srfuqvMJ*DGyvCjVI6J>FMw^_1v@A_rPS5TMT7ZfVRwa zwF`FAC4@1J8|1>=aV)Aq^2R7#4D4jK6v|qguF01z6<~>tl9b3yPCpM;>(?MWo`W$1 z7fM3&GEx!-1dcpLl7^c$ z+i=TyPS~Q75+SyE=P?j31d=gB*jD=?Ao!p)IgK|A3n^>X%ZuQq!rPA+#qa&G9aq65>v#Zh_CKdDL`CJX4x zb0yla2#MTq>;u*afG|5?Qh{Ghxrj*Bs1zcFisJ{;Z|>d__ye65$g!Wum>3bsK*gdW zVO10hKnW28vKso&4S`Ky$fP0;FsP(}#zl})L1YTaMILQg0Z60`Aw*P>21OYVf{v(& zQ8fr4Xb5ez4Tono6s11SoqmmRSqSnzhbzg^5(l*ee9?Un4RI3CUCJ1-&V;XI@Wj#y z10Sc`dQh_ix}F(j;(0k-g8AO9A1^;=bvGe`Ip{chXFoY(of#)BG-FgkDiAn{k>%IeD$O>u{^!sKW*?@%DR z8VO)>F)j4uBo#FzEV$#N-4{;=@BT;yq`)E1=QIRdjEH#03}OR!#&b)%Ih(k zM6|?{S03#;+hefVoMzQ*%Ud;NI_H#ihHCJ3ft^{U;M}w4QLf#5bctx6d3&>7 z1T{D;*ZwHH|Sb1rrK6OhFu>MwIVtTvRlWGSHaBKtY<60$Bo#i4Y<+P!}u`%85~G zA|!}bHAo^xgMS|P_}|}?vMd*lINuJmro$P=q_eYdL^-oBgd4H^Ns9STlIW;|&L#$J z2Ievbd7gyQVgLaC+CQ;ckF6m7)kP$l&G=T9$iZ8~RHGzRgcODDN?Q}xKW|RSX}w81 zpXTuEi+=`k=;z-O-_zVWZjZ4%sjjG;c)z!D=$2ZrryB6HR*BB0HX5j{Qh1#G-7fMQ zAC}8MTMM;cpLUn{??xJ3EtKj@q!ZwsxY}dMtZaCv5-*J^zn!ej$i$(5E(3_DgPY}ptgu1B-%A7W;v9no zkJLbht!O39)qD@JChycjrWjKS&Ca}z~PLRfaoZROe)yqsH_rfbH?$E4pIsxXN; zjk|H?0Nxw`!$vgS9L3}1re)E)r>b&h-xx7s(<2Jvz_@S@LAoy&fmaRiX3~;91t|Tj zImsiq>R)NV-tKgOFh>sR8&nZl6$f$U%obs&*y@9(xsu^~6hxp>_m?eA0QQjskcwp% zqM#T>n(}D;(nOnX+yLOy)h=|#iG;ggk|t65S4}3))`rAGc0^AUh`@_;UKEd#XJ`j9 z@vGx9^Q;v2vUiArdtP45I>F)PNo=n}yS~50u;Xy72Y3&{^}anOkMhH^2K@sQUt`>w zSVpzv^JKpJ^_sYQoWl?$+`t=6&PNEEcw<8XUw_bU|1*73-ofgFp7b`AOPTetQKQ6Y z;JU>4{%uMcGPyxA&4&)+H}NNhjRR}KANiz(-Pz2A)1RQmtlV9rIZ#9zl2FiiZZLSz zd3XW=oynM|4QqG+UXoQn(uUk>(b)qh8CHso(1;s8K64^J_Pj1e*Ms3Zm*C{wrfI)! zJKh(x?c_qy3R1&!6;T$Knh&UY`R~NnWZ?=OnlV5~M#w zpux0GZt!Mce<%03#xs!(*ai+I1d5;xlEiJ0B;Z!gRH`xpAo}`xclpb!WV6N~i#!x~LRDdiXFhzuC zc0duZItvB$2IOFp?>=zUNg$*>_1?Cjt4Se=dvTX`>YUhFt9YK{?71j4KQ~PUx-*<3 zi1Jk6xClju1G}%9y<@?x&J#uQG@1)xjRW%i2jluHXYKoS59UoTapWj`eIJmfcivlZ`_Ip1Pp%7Kfbs-+<2$CV{YO5Lex}hb^_Xoi%2cgZYYoNK z+PSe6V`-+DM(X13=4NSd%!mCCm*;c)fM2ZLhunaoG9PxUQ8Bhs@}zF|>YE~1{cOxO zTt*n39#;!ns(M9-XnoV~NO$}nbdWrl)6n#U{%@bdnk87qYK17{jGufx$ET^I)8}_` z2fK|MSTQuucLqWkHG@LH&dj%UE(3x`14P40FOC&4RO#t~NYF7<8&SOc4qz7D)G`by z(~l*fI#@Qd1{K7wCc0-FSFAyX|94FeltmGjdCe{Dxs1{P01AjONVL~z7>e7l@52}v z#lWP%V)2Y&6q)rI%PRmNH5fIcG^+{g5+uzF1Qp9SyusB09bwX8UWofU^8ryORsq20 z9KI>LW)Dub0*Z4ESviL6Z&8C-|g4(WS_^LXQrqb z7^oaM~EUXZ$;3g5>jqwS3Dhw7awH0D2u~`&%VXLT5+>UE*%*YuCu&4JQ*y;v>0U0QE z2A9WKl-gSIX(=)Kul%!%%lNm)+u9@QMT^!mbtx1o6FVb~pY;E2TB)oW8EKG+erTce zV2b5SpF^qLS>Tx#cBkQSiL22ucii5ziep-U{@f_1S(H{am1q5Yt$!MgW}*rrw!)fpGN&>)~X^Ug3O8PWR-B3x;<*{`8+ z@Cl*yrJT)R<2KKH;s8uSs82ZoUL<0vW(*Sg$U+Cm0{yWMuxwEXzYqzUZ0y&{+lflX z3~O@ouqBA;8R&b5U!=74aXFG#115sSVLUot4C52af?zO37?DI#Jbv$YO^%JF%=VJ3 zQOmO>%uFcHYt~H_nhsy9ahZ$x&uQ-&`SWaU*`Dz5tC-cCB9?b0RJ*h?+s_EHxj|W|+G-NN@c~(=j6~QWGYFEtfOBzme+*;d>TPNGD-oG~V2cgzjgKtMV zC6Qyh(dY}QEr@Ag7>hC}nqr(|OdVE?kSMK7BM?K@IJi@8WjPtxJ?BnClT3*O=E7Ca zTP2QL6$WY33CbC`Q*r5p_8w%Z$xBc$boF4bQxwO9^?Ik$PKY17`;0BU_iW%)wU%eYnuwdk|1+CiTu`XqO&kp>uP;@Z}>! zqv!vAT@Ql-r`i1TV|d^gn?nyj@!Z$>K2OV=<ig1>iTZBFvS&s;#mQ)G027G zVfyW3`kK#|0^>C1wD}{4=ZWmY>}z(Rc=&hr{!f-1KB-lUBkXFu5(Sg^n{0rL3$6Oz z1}=oLHLOL1HIPUW1i_PH8s8Hku|bHQBS+$rTdP3kH%VQMhQiHwVN5M`0HQE1)2UFT zQpEwaP?*U`#YI#V9MrHehuwjvSB)c-b<7kpfYFaX*M$!YAcP4a(XI(Pr$%||S+mThBE=FR)IdK^?$JF&?*h-l^-qNZWr}nCRoIGG z2u9~EF;!;kK@uYa_VoMk!{5|LbM5wp$84M+rfPc3x?-A40B~%A8bq-!M|7T@(?)LL zv&)KDpgPs?YkuTI@wb&Tdt?u;V{;V?h$}F}kbG@T3@RIcxS2Fs7SdjpbaH4|#Nfp0 z*z8iZLm=Wn*7e8$q~i6F8gTvCMeAc0&>yj=AJjj$c86h{--Y z^o<#TwkCS@c9n&UF~@Q}g=;CvOih`G&8m2Pw4O<>+?tvOAgW2!e*-!I7bSX%6of@W z7Rz_JGqG02m9G_kE*iXUvx_pq_HdMQKGVh!`T-U(RS}G15fDLtocX~U zYjH#Lb7Q>Uyxjw1Y_CN))~CO=c~WgQa=)U=tySvE>lA0z^7{U|_ea!sFE zvt%3MckIcoidt1grt#FSlW%F{QNf+ zFh<5l8G*8bF#=LlkcsGlEV|L9MT`XrjI`ZQkXRHE%%((baxAMR2*59e)4kKf3`Y={ z!a)K+sDOrc3M5;+^p4pK8=;GOh&Y6W!wIwaDL{-iya1opYlNm1H@X%nY?X6|isW8@ zCUZ0+LwIs&?+OE1ePv#y@m7-45}nnN}>&*&)zvg9bk&Jsu8q+ zLtXu$!MRmh5JXB1punR=NP$D9vKko`?YTj#90DvNNZCmdDaQ+GdM`_~Da3cHw?PUL z4q0`nj7iD4Bu(aS1(4$clQ_VaVWBcXBfe>dx04|7VbdOK1>+InfE*Sq3Zf=yx*WiW z=a|UQ@0f;hl>bGicVSKFfsvo~KjYx+vMkHI;~Y!s{tlYJc+7KPTg1|m$7W)icZ>il zj_g%X_gzZDph6-CMw(x1E)LZ({asu-8C#mF39XW}O(_#6=^}9&h$^51z&1dQ0}Xhc zv54e|;I2??b9gvZE`TF6Ky*M8`d^0Xs2BNm$Rmz#XEg*lAx6SQvWSQZkFunfnRIRG zp-~G=*dOOW`u|5+b6R^Z;$qFrMpS0Rdwt^mRxhvHO#_;#eE3Gj0gD$e)DOM4yc~q- z1>2nh(#SFVJmHevl>;a>9(bUcc5{_u<}=!EFF8V;V+ltb7Z@4m6Ow^op;Ot{iJCFF z@52yDma1{QJDLN2R#=S7>HHr6y!Zy-SpB_&sg=_b_qCWnNZ3+ER?w&@-A*B5@ito{ z(3)Z59oNp9%P5|{pm{tH^8^u641h=y5(~7*44`bx(0))>NNi1^eyB_8Y#MA{ccz-C z$6^-NS7Enq%n`T~IKtljolV1^F0>)4V}$iW6$u5p<3{&ouvB2DTnTTULcH(+u+KS1 zra|NQ3OLY9-(BFIC6&6;2tkdL!9CFlWc(JG8#REy!xxG(!k? zN<>wii=Ri73-~23IAzZvc zIk6)VA+Ad?;jHE+0!qwhOU?y4Av$LJ2VCQT;R%cs!s>Y&(lJOYfo`Z2vSgGvArJ;@sNC1B z49XrDdrX8WWK^l9Zv)VPgR~tGKsS-%{78G@VFFXO$6Lc65@lc8)&UL(DJqPs7lL3P z6sZK07Yl`&(ctSbGiffa$fP0!Bwc>&sHCG~L=tUSLzktcBx;WsAms(9 zE>Ix-!VL+pSQ?HNFgl>UdyYGi(`gk$x}d=hWMi+XkO~vkp|_xgRkp%sjalaKTFV@HZa4m{p`?7v>Wh7kwf_OC90G#>@FVz`e9F3(Y;env|__gz)io0!FIk>@hUQ2V5M-WFu@)GlNoXn1g?PB&G@v1<hLHDyEUOZO9oq_uO8m zK>%5ROf*2nYpPR1ys)=#p{95$(rb)gvoMqJ-_pQ0O6siJRj+oNH5*#QcbF}e9x$-J zwzS~?W2|q=JVpuxBURw!PUd}NC!a<;h%@8Di6)K;Akb_iIgVHc4})j2XOl`%7rcD; zXSoC5L>z@XD9C>TL^FIQxeInU2n&Gn*IuSP;YxXWyYM|LS+zkVk327Ao}D;6JnN?y zrksHRZC$=>iU?!_W1T#5!B?bE{l^`%V{(gj-UJ6{?z7xzK0J9&L+(dld`KINv+ZK~ zXH`%i$=3XK_VVAxxzulM*AIP14!FbR>hohQ_%IpG`TsL9Q*1!RX^Y=*;Gv$r_qJ#j z2?`ZBA6?dK6t1E?zHE^2)9?X3Rs7d3>N(-Nc82hH^gJ9WvY9#+(NBAlH;wsIQqJ>Y z4ijF1r9>M=oRBM&Cd9(u4~&P9kkOlE1Vsf;1DiK#NhZ7db;qAa$5lBxC^qhGPqV5R zcAT$SVXt7@zs0|~fxoY(dLFm%dnwtyYz`cp4IZTKqUqbaD0hWjRe4I4YXD)i3|ng$ zfLO>)h*1a%(o>p=1ae`O;g2~;NW49BM-(eZswq*kESLgf0h4xEfU1MRizGsMR;3uC zm!I~9V-y7&Lq0d2SI0}v9c^4P-;WX`PpaxrcHsPTIObDkW94UE$+rE$iaTv;uNnqW)yXH`&HqW`RWWYVfeqNI=*FkwAPqc&Z zI`196KR+<;GP)jRNM9M@iTE)K02USBkTO%>p*Sm+A#ta%I9dQjK)S!5il}S$^az8@ zg)k1BE>mTDMYvo#;M!os#+PG`cot`7ei#Q5J7GooXg{B{ajbax4zMiMxzM9DH|D=T ztX%>=f;|)2aNsXK@Z25%#lK^6o#0{+z|#P_##(-iz=O1(qF8BaMhOg#QEZ`>hTm{l zkYu;6iBJhAU=fB03FdhMR8XRPY@!gByeEKUNJ9|zSxnM27_3Je2&ti-$j3wLswb{T zrLV9ucm*-gaU*EJjMN_FX1&i3)|`(;$dlmIL$@;&)Z$SwKcUyN4x^&Y6ADl9~bpo+vq?B8lp6vQe@%EXBS z%g3Z?@bKRrXo#b%T;EOiuOYphLYg(n6QM5aK|EL@TDrm=aOOsLxoQm;l8(U%jq-QN zvfAZ{W3uYRMtBO0d0G^*q%t#uV^WSe@Y22I`8f`@72+__k1STYnK&~OnYdyC1KjFr+fWQ=HHIhg|1Aw9|k**RwEE_u$q{L))Hs4(e4 z%;Af*K$1-k7g9JdrM0LJqFjg42e5c_|&etBHUhuc+c&OxuBQUSv zs(59}TRbLcn41VpfU|&f8rvG)m9%1}`uDr}@$5WHWNZ!e^mo>&1Lhx}0bc4I?VqQw zj3(#L-P?X^9CMzcHS0@8cP>|qG!fo{)3ErcWPcv;Joc7FpAKDXq&$^5x3jqyR%^C` z6qqT|pi2yIr9?|Mk~11{&eO0qWqSo|Hph=l!j_@&lM(|GM|aCtP!%H&XIOQ~uSOF8p|w0j!jvF9?G$1SB28t1r1= zG)J>Y*NX7V+d)F(dwx&=dQpw9$`Ou%0D1(U8=z;jcEH=+n!yvRZozt}M#yqv_MyoY z!HOOc16H0%uMN^K4jUz7lA~RYnZW~086gQJ2KsKQDaN=^03;4fXfUy-)}PkHalIe| za6!#@^YYgjw;aE}zmsT>9zWk_Cq5eidjN2%sQ8I;(yj8qq6o*SP<|_5j7pq1_I`*-?T453NxX9o zc?yCs0ucA<-a%W>2b`S|?mT$oF;gK`4ADl9D#~~ZuDdM&gpvTKGSbQl0}434UpV6A zn+j2-DY!5JIWfYE7;){?F(nepGO2-`{eUp27;0ic_au8dIRkuEIQ5KFw4S3Wd zOfux_l@bX#RU-vU_GU&zSUAUg3WSOQx6p%+0yfesx-Pijy>6$)Qw)LI0 zfsUjW0>zU2`BT@hOo4}b(O}5v6iKvBwrWiM_8n3L$thMheb9HXGKB17^> z=)Z}r*Jn}&LJpmngYfpvOv?mNK}9OWcEhqBKv1>9{5gOqOb2j*G(g#Bqn$>*9!UTi z$s7<)#^rOc-0d9Kn3X^afqScWi>hqfLyqjyrr~9OBRjw|)yi+jmpY*AEN3||&t0}C zRMKYUo#Ij`njq_zlr|la1|Lnw)9DUDHdKO$h@EYD_U4hC`Hyx7#MEq2NRIz3`V*4AZet6aG$H^n)JMRvXXPd_XOd;5`RQPz%e#bvabGvQ z*!DW`_a}Z#n!lYjcBi~e?EnGS*Uuv*_pf$*;YUtH`rLwf0DqL>YGV5N=YJiBA-(j& zJD+o)Mm|7<9uH5d9t(UpJ(v$5(z&k^I^GOGvG03O7-F|-4$Q_#jGhW;m_WP+0H{(5 z5~B*-PTsjUvZ~6$h=|09krpT>B^t@($Yd=MT^RD-te;97Q@59$)|2G+b=Q&`V+YQ@ zp4|0zF-LsdbG5C&u3A+9Y?5(yo-zfgdZ`&so*a8>7i$N114;)2)QGiw>z*b@MhE~+d_hPqZeN-W2vR}iAGnvve5_$W)p&sM0AMTOHIFBgJH z@5mu*-KQ|>kl-G~3lN9x@w>2a#b#}~4%KYX;3@%n5w9dW+Q30)dJd>p15V+z0tTaU zP~Xy7s?h?$Ik1HXL}cBQ>lNOC%L<{SLT{$`zUvF%28Dgxgkz!<0Fa(9u}IlI@s>N8bMSzS7f|MYID9jaK-@ZP3YZsk&wvKnXrjJ^m50FVXK(z?bV?wSb zW@ECK1v!&Y8RROxs9*{lNBMKiX8)|p=p4@x%_1Jr}fanwCq(llLFi}Jw zh`1STiZZmWo07V>3rZkRTWz+LdRQ0=89l|70|YH%(kQ0el@UrZpry1ixFv0h6-dH_ zvcRxpq(LCheWQs=Xt)@(83w>wwxvl}%Jb8W`yF1aBf>;#(2j-y14jOQ>QEdBI?e;e zF>o<*gobh0c0`Q0>keg=6qu zJ!^qcph0C*WPDX7*WdGA35a3E^8Lip)t*jE%cilEE{BNoKtl^jRupW2fa1;DdTmVc zlFb=xnY2#sS?jX0F9aK!M#eTvaH9?GC@cu<(#omnuOaGQM{eXkP6W%T+6Ycb6WrR; z3N^RfK?9}tmfl&bO!f&XiwXk>04QgEZyMp%ERkk&nE+BPNL58fF%c0Fkz%5j%EmFY z7Ks>$!DsC6& zTO4E|gAaxCE)0y82oJZh>cS!|Gj+M%cfq;kSPiVUdnQ3JW8A{HTK7If zA?#KJf;y5%J>Fb-__m7DzMudty1U(VjCc&L>zGwWzi&z~4MqZUjx z0Q5|R!nrBSTFTNP^f)|tq(GY^g2NKEhjLA6Mb8o-8%K(W&j+7qNh%j!$qb*Vr0YnOE76d=L?-IW;(+LP+7xEc_>sYzAM3-ff)L5GB!U;jW0&t$+Mx&?lstkFUL}?>7TSm?AiD1OZ#TEKq^Z6H zP8wV&>05ztoY?N}o)t;4Qo+64dOTOo{DE(v7u&&y;D>gooyuIhc)gztXSRM1(!lM} zV;m=XRnt6oUk3}&k=tv-iRh?b7+=$2mO_r5_VI1q3j3bXY}8nF^f>v@E=1PcSPS&hME#g`nk*SHlm7Jm4qN-h?t{)F)@}U}8o}vKHizpp4;|XCn$WMr_B+S$qf|6QhdnF&COCxgOq} z_;G{i>_wL&x~b`4hSzHGdc9QJtIQv*moeud+qYTt(SRw42kk;2%#D|8hYjxGT;5W1 zmc&M(mA3ZpEbe)%l{jV4e44k*(Z^opDmUa6932 zxg%v>0u@Xz32(#a2Ec)2Km|Yp(v#1P3q2A{0c`FKb@j zq({FlX7T0Adh0JgPr>>Z9n-Em<}AZhac$9}J7H_i#!uDekb53Vd1K%Nfu`Dx0d5#E zU!haasXeFRzQLALo)^uNLosL1T`zxLoRP*7+=NjUA0Q|A)Ze@mJ>@`$&pI+XBmQ(r zCfk?C3~aQgZW}q{XCgJ(&8-B7BnW~U0ln^&jHR_8(W#d)3{KQL9(cVBnHC2kiitrU zwADGLX+oI`19fUl@0N!$NtI$Fp4P3duNbLyPN8vAQxt9%nj9Xt*)ol?zIq*Tw++ij z10x0ujAPQXwpgQ^epY3#3n24SF*aQ*r74Z^tX8^hxmzYUAcqT^rc^K?Z{fr^#?&vb zt3fs6jxf{JtPt1D<{aTk_e1sXZB{hPj>g}=cvP>|S4BX-qY#J#iWwPFerRz;dwdbX zd3aDW($C$7LYKHX-iyw$GV*~BvYv@`2G3gM)tnS8UTQgPc0^QZasTgO<)?TX=_ z;on(0U$@gLK8(+~pIpTfg^W~LvO}mY5@g0++Tw)vOE6S%AcK;4CUvmvJ&J#K6O2as z&O2)+yOw4o<03@yEOx9#cd@CP;^PAjg$^y%l2CytEM(#Y@e*ENlb-BzWk-CVSG;_q-DHKi>D0%$fJ{~Z}&VB1}PsW?KeXeVRX?MUs1*fuby#*v!64mz=@gfHO*b|@~WRMF^7yNi1HogJj(Pu zm*RFrXoV1~+L=hif=A4JW+<<;{5__9&E@AnE+|pyrFqFK+!nlwzNAO zKqK(-tOHpIh`~TG(+hrVx5&p&iKf?I4^KEAEN5=y?O{|h=+9{8A*bEO(;$s4j%o2Y zyzPc_4zEhk;^|~ctJ!&W+(rmfG?Z1L_T00?m}U-rF^%7s2)%QRvYv0x#CMOFpF!!d z;rISlc-#5&3yJBxWzqvA}#8xxug^kVVMfDtT?)dTI9C|Exa8*;FOsJi7Mypqt#LRUhF??z) zF)%|>fS?K}W_t53W4z^}5Y*=1WMXk1cDgFF0?9KTcGSVr0fAMSgCXdU9Dt+{-Os7F zPV)SxUjKW%?@atgoLeoRAfVQzK@becvlR8-iiXO8(B^Zo2&F?)5TG1|(A9WRFW2Pj zw2cf>b~;q2lL$7W;n*hmHY(AQ@LQ=(dJjRb8dOPZml8vlDr*GM8_ovpk%j$ME9}VI z4gQ(_+xATwuz3Q(h4#JNqRZw_oKJ8u!OK6HUmR~|2{=)e`|-_fhA66UkIkvE$7C#B z@}-vFws`kZn=B9LT@JE+X|8C4M3U>DK8m5zwvbZ+mr;b;wi?ztQ$pnKT8PQ-<~FCB z)2?(fd)~KxzVp!O_u)(fN0p_Qk&gmiA#= zgTG*j-)>J}(EXu0AO<9$IE%{XoIP@K?i=JnYoNcj>By$nC<|f?V2gkdSPig{tO!Uj zd>BHcJ5Zpq1d6gOB0?z0s$L^V!UPbq!#F4zcZ0ERTx$JavF3=>8I9q+4ejX9B$dzz z63mRiN#P^orTjPV+Y9$4HXX-hnD;{GHPf+8U9|?(A1uJR>sZIb-nHwNo>#xV*nUXz zA+1TzfZeCus^MjO@L)Vg>&KWsIK+*@k5y+^5PV#7=fz`#X)1qoO74Xap_M86LJ7_On4Xra`|B~R0CDc5<)k}R5PqKYEe{UNJ%2I+L2ye`b90g z;C^eBu1R<6Lae^dLt)Yp-#XK-d(Cen!0XS?`>g&?4YSer@mhUREwd573 z*9!p8Hm8Hzp4r61v+(ng#7hC{N0At@v(Fz6Yp*D>P3$iMNRHTE#}(Vj^EikuYkuom zIt;t@4bEpZ55xI~Zz>ba2Ud95Y2{V^jAywXV)$WPF7u@;*mq;|)=Y{7*Ty4xY=GN} z@crESdzTl&^8EIGX5qbhOXE;6UoJ!P5^O`()NCOT@>bo~{BY9?>w_+s5dF<9;OyI6OEDb{j3hb@r+QV$w5i^eB z{Id4oZGz~40A57nEt_9clYpT+)nu?J;UYVchf+1jk)D|)@$B*KGb%Hu>qCBieKg?X zWpFYv+9>L=;u#s&jYK~(ujW)iC$}mblk8Aee@J`W&vI%oRrYqwMq_;`VjewiF^UVe zSxw%S_2Z4|`1)96RYei_tPAYzPgK&dK?W(-pGFo6PU_zF?X%dHd4=8wV52`3UngYg zG7z{u%0Ynq&Xz$PqBkQ&-Z>u!c=J&VAhA5Mmg4-4JdubIv2s|ixHg)|I~6wgpA8>U z?1{6LwT{Q1iv!EK0Fc@q;#E}bYQ5~E!$r1H7<}nWxz35L4JyRiRo$`1iCc|99BuhK z{N6toz|SsV4~YYx4{t;#a^x6MOuN8UX4ae7i7~G(TFeQNg~z>MZdfwAHy*azHbh4U z4oN(jErS~0eV;gSCO!FQMEQJWHtHsLi{?$`0=7X+frnlv>t8> zM(>`1hBP;90#`9U1^VMTs~lqjpfUe`u6Gdc4=XM?60-uZn5RAQ>0<+=Nvdb&Cg(B1?tD+886ONhu1 z{LI5Qn8Q3MV=+ccLQpzVZz%k(iHdvn(NJjA`0(6163}<=x}C_6f0HjrKVO zHYcLx9P+)Gaj^XmiA~zRN4CS#LEl;)dajuAV?P$6105ajqS-n-OQvlIrfxNdGYMT)S!&UsbP(( z1%ir!veK0qK~9jUsK(KstA)i9{Dp>@V2`ip_xraWXWM*Dhn=|SFT;KAet^J97f81Lk(b97PxSw!q@Z}$Mt*#> zUst+bj#}~Yj|~F&Pf)x9KXzfJOwbV8O4KX%c&CDEsl`YwV910%RuJWeFR-!|f#QW` z3=CU*h6aa6k#K(l!Ih~-KhMqA_V2^XxttwHgn%U~*vP5b*R=UPXZqivp{UhcHePx} zaA2^&FZfMhCy#4%Okn~}VW{Rt#G;EU)hSsk7U;fjL5cd?G(V}smw8SJbWE((%Un|^ zgl<@^Mvz{U534b~C$}vXKc<_fJn1?KK!?*rbL_5R$%LUFKcWpW(DfJH=KJ$m`j3JL zi*8txG$x7yre^a23&HNdH%4?lWG3YmPHZ`5Gow{h+w*30^C11c!u*9%gmauw2DBC| z;@H8kTimoeT+0Vq(g*`u0zhF-x3S(vLD>-LHD?X?Nw1L?yRLcN+qPGgg&wX4Ne@rG zrmVYERX=S-Q&3;4fu)kxw`m>6jj_oJeuECV{MlvX6Uj$LMlq)uqlvW?xx7J-nt`e# z=H)FOgwy&#f#%L=LXTr-k;sP=c2LO@0v}*5ky;HA8qHZ%q&(|HNHfxCn;X$yr$l8> zH3Cnz1^P2Lt5B56a_r%B{iCw8_cUXqX%`Rj9Ph?9uy`(Mv=%{BI2229MHl$+t#%kudY7Zo>RiavxLL^GDU=>qQh8;cL-H4lf zY+g>7+tRd7u)pG5;R&M=VJEpO9EZSaHb=K-6u-me5>GEY zj-mzUz!qb%L;^PJ&uV8y%Iv^<-2Je%%^pnf0@U)z_X z{|5V)ajTA)J#4L12HQALIyhu9U(q+=$Ko{(BFx_!eLvywbrcvuL5xHrA~6OeP(^2_ z+MiNR+5==nWKs$M#t3uB&>Fn%I}}Hzs==#@I$xE9!x}A5awT4kQ_vw49k$m=Z6*Rh z(+3+F9y0scuHkqO6a|9BNU)TCJJ9yaSZPu%JbleUJqq3*&CDLOun%5<28KWkW ztiU=QJ=^PczYxVhVs#G5vzoCkXy#&KHFRo;Ybj5c_<8g3V|Y}B50O2BxNieAclBD4 z947l91W;$Hl-SqJtgc;5ZesYj&T^ot7p0XAP`SkXoEK3}7zQH9C<-hFA}GQlDkKIb zd)zVzfUuEPKsZQY(P8k^?dKlw>CyMM>v=`-mef^V{8P+*0fa(8S^Pf7{r|4i2HwvJ zDuAd@6ckZlDGxJiBL0-XH3eX*3j|^7_FlFQ0{d~s)7tvjBPOJC;Ack(WNAD zOB(Dx*rOg{z)1@0lb#&UNm8Xw+~h3qh;W{K5ljx#+?+hTdaGD+2XjzchYbp#p{!6e z;%ZsER@uUVVGxLt5o9+HX1XO(gR^AQjwSvn=fG1@2BI}dl!lG@m_≧X0pGYQ?#R z_`+z+Hb8TG>(oF(NHQYGgu?qhnmfFD@z=v?B##d$+s{h$Jg0?4bWt!(K#AozD-cJR z7Ka(Yb{GK*);_eIr<>28jdzx$Oy>5}hcB*8?Qj~Zd0>Di#Uzf&VSa5jC5SG)E&aRu z@ws)QT_p^jsj@lk@NmPY+~FoSkj)3S7A1~nxJR~&1=%B4HqI{Q(D~Eop7oHE8ZqcMkMWWd)iT!f6!@xfF=rw6l*bq^v7%fN7*m zHv*CS@UnC6O&Eei+Nk;6m4dk5O&utPIAGH7Vqby>x0*9erXBKb z%Dm77~yspa=+@%wf@$iE`Y5qeK=xwKVcrs>9J_LG!T~$Zokp;-Kb2qh9)R zSKT`>y;{~WbT*so*Hg2}o&)(c261}x)QBnn69ieRYkAAi7}mEY49jK49E|Ieni63) zn3~prh!8$DNEITzwUG4gh3#3?H@(u$i8g~3ZIxn{f;=W3m<)s7Q$z`v$OiI4AdL}P zI>oYLVaarhnCIJ~;8hWj-MKe&RJsa9s-l(3TE!y(Fz=_QN=M!DVq4vHY6n0CufJ^T zXoklcK{urBUaE%n?XDZ@5F{j%cRtIB<77O=AtB(`$I871hwew5Ad(IaVj7{Dw)WzH z^H&_j7~94i#p`aCd7)B9n8tY0{Mb_^AL6pOpI#O8NEb~NMMWK=!m(m1RuxPe#f6=; z|CFD(>$|HGorB!eSqsLscDLYf9(c2lZ#Ov$h-u5ySm9dg+Z@GEWY5J33ZTI|E3Al$ zYLZYfT9|=R)@DQl7+7UAmn;lHEv+I5#x+@ph89Q-wIIO=1|?Gb``NCSDVhVko+HV~ zfu!0fK|x`VPXx|OD2qDXxE)fkMVPX{tbxk_?tu&u(S=Vo1c|XWBI3R`r3~!CEv-vy z|72x*M3rju_D;=jC)SnLHAPcslCUCXlq`NUvQX28BeNU4e; zD1e}!x25P*Hj}4JdDd#_2zvW}Z#+cnvc*e8BIzxuD@&4vEI>6HaC5noF7p7eMT3bU zTWJ@QUJxhkVHQp}JA&6fZr=)1GX;jcVuk$M5OlFW*TsA;WLPmwTe*a4=oSuwJ`l-5n?972pOX$92B%(@sYiGrggyT&1I z=?zOlRD$Io&@si<^=cf>4q6#T6i&1A<~wA7yV_*@g;Z8e*kDku!}F(5qpuS>eEL zr6J=~WXC}3VCuWx87fXD|ABoSSvBz&6yHaf1 zw<<{kW|$Yl8j4mbmSi9(H6~GpSROTl461f3eN%p6q#rJw zbW)@Fo3X|gYLwUBvlM2CoK;>p}>HQ99D|YV=a7zfphBl`%x`Br{SZCa&>e@4uJp&l4H~MbRAhvL zcrZK;bHBS6=fn;0b3E@&PT8=gQGj|(5ti&~ zAQ5DP4p?p^=xj^v7c&MU)#?bIR72i=d#}#QG=7dUx%_LdePl$Y zT9i5ZaC%bQ*bq77fcv1voke61rG?6bFv-VkB@~10X^lWWLwp+fHzZ-yBVu61yw2C-)Iw;riYW8 z={;98HV4K*i>F?WE{m?<3G^BI)^}gQ=SKns~_g|RCbG*S1)E^oB zK{^4YMOejQ6#Bm3u<`s?Qv!qCCNP+OS5E0!vO3sUB6YvYm>djVWcl&-0r3N2fW^V9 z7l>_-2=Y^P3RkV9OGb3ltFOcK@-9OBos-Dq?(Fk&P^@ZC-2p2jr`_}3rI8FCa^DI= zR{oMTtQ|NT4TXx>tp_agGk$n7sq8UhpK|6K$k5QH?m%<{z|#Z-MTQSSx6T@I_unpf z*eQlM*Ka;Yf(FBO>+yx;V_r?*FL~y?H4G9$rKgF0;3|%NbH;Bsp@adBN=emr79jql zfnmCmtQQ?a2xbGwa7;pG-V2=Yg2k_qJ06_&%`NL4_)vo+a}lcc#Q;yyKH67`!fAq? zX{1QyC|2`B=7zdgu-$lE0YlwQG>)=hbf#|YWbZGlY&&+oOfgkjjgXhkJ$LCnH|N{Kx4`y$weB}Lgk*q(p&+L{ zx@7GToOf0oD3B2tiDzDwl~grW@Yy=XG{Z|>HUMOlB$Sh;`QMGYqq0bNw=j*igJU6p z$hQq?sH*J4Ni>dVB%KtuDtiN+P_1gkz>Ik}8+NQhyQGygg(C_?QtaPWdX|A=U7?()XG{6(AOUHmOFEs9MpnkTA81&_$mIG@WqD@UC9a zu|k+&!Ou)dW0aY*Ig%$1T_zb;lYzOV4=!n0VEUd&2}_95(PK}g^t+EkD(FRAKzYoF z7b8mVcSz$%&GB9RUQe&B4&81oYx#=NRq(8=!#KnJUqv>j=w2Hl0{02ju_Fx>^+>nT zg-wKWrF$iOyFi%1E|vt*+Rg2&9gjoId5WH-E_UGb6Q=S)>5RdUZUR+?CJ|sMSQ>YL zAYZ=_J1KJx^eG9pBg)PP*P4Tob9E)dVWPDbqjfvO1~x@l^o|`v!n3Uwjl|C7rBt9bowJ#WWhBd3mv9hjL_`Qwau_j> z6ao!GfDjnFRX3L!Arlv4d@LLh$u4}?Bc1c8kkH}48Wy=Np7Z_imMw=ET2q#mz#mT$ zi$SJPX}vFb7_!JrfFVS*20-@^*HBht_r7(trR%=7BCyJVkz;C*V0nmB79 zB1?J&PI3a9G80VV*`4h}Y8!IJQXq&ERxMIOU=I8KydQW7fhv8ihGJ_d1|vcN8N3pR z30rsdQ8pH%W0*dV@NeX!cjS@z$B89tFBrsv0EpL;gj4iFRCiQn;6(S-=Ml1x1f<_>MBw`8>6^eo+6i6(Juz*Gj0SLf>AcCTc6$M39f{;)| zBL*r+fP%3|$s-huVHm{`f+&iTFl36vKtV`GB1TCFq>u&(!4OcCNJ6wA3@iy8EGj8= zEkqy@6-s18fna6^3}i9{DMeyHN(CT=D1t&Tj4Xmmj9|!%5oBNygCMAcB_sqAHApZ5 zh$?^)1*Sp)0+mV#D@6<_NJK)4C>o%k5JrGl#bPM3AcYMBAdDh`fq_Z|qZlB7h(ZW} zBN-s5fXGEqg9I26k^&H9Sjhzyibh6tHeIA7k(@^trFid~U%O{6k;&8C_wC)L-WukR z0;8~9lU;evd)gcT6ggB?DMeC{L?Vi$Ulw3@Fu(_!_p3d8H(L9ybkSYig5WtB!d}3~ z1E`P}!t^k0w-z_bFg@EU)yD+|-bRLqqv$|ZT)`hpjvzXxu_Q?G>%P}~UYu{QU9vvm zwqQA6Z&aT1ij!9C2hR7DwhFFB1z`vvs}L7d&Q3XI=(z!+UFc>;otSFZ1adCPM4!~K zF$gjx^|7iBi5VYowx|Kfo)in=S;A8zDk)V13y%u&K$I{+lfjM$NkCn|rey^gxrn`C zDLE^P6Q^-E!$r$bg_Za1!%Zk89h(r4dZl0<2Mh|p=IA4k4$1~(+*Pp1EQfv}X5q$1>P&8A3kc!iFi`))u88n9x{eGx}W$2t162 ziGT25p%N{5jk{i|g~vQ_+KS^`F&g-1eK`?3=y=5o8n>c1sY3IZ|WU&yB~F zAV8`~on78Tg=fN5Tr}&@I?>bta+TgzngX)0`0OOU27p^ZfSy|k4;oEgT#C}B`_|2J zL>Su~9uQcoHYdg*BqWgL5f0~y6rE%4=vnHJsZh4-%Vr!hN$7#)Fh(r$@Z6oCX+PF` zr{B~uBv3pUC`dCx+cobKdY&0;dL1ikLgGgTg_wCkLWYV%a#&a%7=k$0ER;5of> z9Go05I({9|&deVJ{XyEI$fATiexsbWCuBpbjXxMq48@wD_iH&}WR*@VfgxuLp|#Z( z)tneh1C2MSj-y!-Ab`Z>j4HFqjuWZP9_k49P$GcB3PDm35&|Og#84=Q z_IY<(5z2DHd^DZ-r_bBs_wUW$_d6@XFzLcrY#1@5c4P4*w}bKAY^`d5tJ0Ay_*g+O z91Lh-)WzN{*>}mBL@E{mW=1V>J<}^0VS*^hyX@QJx{WK2-25sXSrHGDF<+74)N9PFoDe9I>?- zGbpMn(SiFA#ICZaqN2*cp(n=e<5sj~cQWHDPAv@96wJ9YG4ds%x}_G|)+QS%6IYbX zg>@-CSbG_Mu64n>HdoKSx;i&mqn1$XOvn=QlqRzyhXm=;l>@U` zIv~8LeYP0D2a0f$v%2eI6EtyUIH+Xz+y$}`%yv53WrMNvP$ zO0(lbUcD!_nm5iEV*$WD{0b~|4{g`)Meih62^l0EzW3;wy$&^Q%bAV5Ogcl8X5I+z zRp-dc(Yq9|@(IyfhnaWgCYm35!|g|YoP-EqSKH;!MjMp~P%>^HSrT23y~Jwl0f;E` zrc+gUbHD^xVgwtY>nV5Sl)a?uo<1B&5=fkjED&9WM=r*r42_5~2qd~?i$ouv7{mi@ zQrWv|RXpTe@+lH&+}!Si5cF>c?&57UFUB)S_1Q z)PM&~(A3PH)a!(j{TdB+r_0XH14u%|OU92@bbJ+(=N zDxUF61`|PwwWeP#+Nhj$&;Kza1Aa0AZ@{crZ0BRvSF& zdwRgv=Ds-No+1K`5WpcBvl_sQzM--lDH+(O+zD*NGTxn~?+V!5M$XZzXgo zv4?z~@y}d9h~!>dsZKVb=9hrsEJLk1-}BSBdqmspq zNSVQX)C#!xHenpJCvIA?6U7#+@yO|zDtX}}u~%JIGdi_*aJ<8ou#iqi5Q`;+0`>Ac zG}0}6v$A0_p;g(Y| zCQexhF^&R4RRpF4uj2OatdyEsJsoEn!Yw+G>WPdto&PsY_X@Z+j9VJm!DTQn67Ul9 z!DzfV#^ennHzu{`hTRO41X-DR&4y{>!p$|D3LpZ7N*6HRO9(U3C~Vt9Vq{Jt=M33A zlP6fjnB&>rf67~T@6+%&E-bU7c_>h)xlm2YbdwZT6~O>FFe;eZrLkFKUQTVoTMg}n zg+LJ&A_625mh-T?sf9!k7BJ@48Vyd4f^h1~o2G<5j&5Ebt8fDRg{~M-m?|r zbnA@Nz+x*=Rg7UFvrO{k!I*3FHl8omt0=(pcvMw9AgZ4V`l8{LX|N7WDNx^1@w_9; z;H$)t5XYAlB0}I{1{8wnlBBT?Zpx+J>~r14=c4rtpIbH=o7ui6CP=1RI-!4dx|3fM zVviG%Rt;JkFo~rF>F{!;H(n+($4q7pM^2)}n;$?g1ZfqmR-xA)Jc`~3brIiq*L zlwUmyG?+7FF;fKF_jZSFIYxVC^J#J9k>?vp1yCNK#pXuFEI{^Z=iABlVew`U4Y7UO zFAY~bH`^1E0R{>@mR?L$9-fR+VBz!C(>U`c@0*(D7$m<$A}V}|5v^cWDTaJqHS->j z;pS*};-=!G_dUh%D`hkB4B*9zS_b5w1}lW9z(?|rnhk+JA0`OI8mM4Ir3a4HrY#R( zzrqT%K*JKj0AR#(j}ZB`b`l0SVLky6&zT|->8PT>Z2zO6i|;XFHz3ZuqB9N`^YIF~ zYK#+LV$fPh0~`dGeMF7d*jSf>Cq)YkjH_-*%jk%#g@{yTI9N+dO%y^FAk1AI`)sgi zip3pnPG^xk8p%DGq+jc&VQj%pZ6H{S86dEr#=Z}l$3xmJeyaejMeKUhif#n&Kto`n zsSc7cgdrkPL@G~om@-r%fd!Cr(^x)q?`gAwNZorZKSxgvlex%t`q*?-?Q0uUjeh!6 zV;m`~3imCVR75GnKSG1ORgKY&uBLzWym*(g2 zVZX;}A*9BjWu*8WH>tgV@TrzPJzU&|Mibxi_CNqCf-D~=v`pg8u42Nn_c#37I365c z@80P4XR>$E4;aV{P?14MfY>F}jL%LyoWDm;ejGy+e8DPHVahYMVbB{pSitb06q2_f zh+n+I{M1y#71NNR0~-=aq`C37`awo1=!A=Xu?ltM3U*kf>>05g+A9>W4J-?AKu)}7MCaD!C`*}9|~AgYycnzh(A4l_o?Z;OGI zUwzTE6B1DbgcAvcs^~)HwjW=c0pH`J8>_Y>2qTcStCJ$lFGisl4JT+VBC;iQA6IV$ zooM8wZL$Ha1;mq-n&F4aC_cK|79BO$4RqICce11fQz>a}q({NZ$Wa0;Gq`@AFLxYH zQjdU0Ui~bVB5%WLYakokjN4?qyW3@bL@v=y{ViQE7WFy%#WwIW$BKhJ_ay1Nh$dF{&Uf<0YJB z3d#}-FXjcf2WKJX-?n2QDT(R_=;C?J!?V3%3!&SR&2)|F3=oz|9Hm6lutwagvxpTp zXSzcG(xYvVSb~57!tbPc&VyOP3v$5YpSt=7IlZ(Vvz+Y_7Jhls2=8tN!m(2js5$JZ z3h{-YfB+#~Bu&JqI$5qdYK0t-b9q5G?BfGQ?~j3FBp5`{a-xhzBt#WhiXtK+s)~rv zF@iBwQ58iIRb!6<(|NdXoNo3WW>F(WOu$rPVPZ=>b^5MxfRyaa!lA?=7JyWvvv${u zq(Iybw&)roJSV{$ohIl=g9#9z$^w$PTy+TqQ58cu7&9q?l^1TMiYu@b40zOsf@hak z51MB%VVXPV5-UBn+!&0lI_Qs!B%oLbiRK(C5ANrD!ebfJ%!L97=Cw&(NO8^&6OmpcgB9TAEk00K}U+eyHGrfH)N2XI;NxH#VOi)$*2u)aAZ@LvR2z|tIcG=Xvw z1QH0qit56jUUVAB9%)$PW!tUQW8W=J*dzhazUe3)R*M2R_3sH~hz*$XRG_sQL!>_J zfO~`u?#_6!Quy4%t!y;%X0|-Jj6^E40^kz+sSF5{K|JU*`d_2Pe3wn53-s;MQvA6) zu`3Ex%8Nw?7cSoE!1#-RVbBN#W3GC7vN}d^eOxnph=#Vl5-EtmGj0wpgEQBo%|vU2$#<1?X+)?qThFxpfZSq~yz2H#sLQUv7u zE#OtS4fF57*v>hQ1RQzRSC5U*tc5T`$AEC z$M+mSkR6E0R^$w_1~DNFsujG3M^2MS>1}A>g-ls#2#S@gw5=n6?ZAGn75n)g#JLI``77Q~%++;Y1MpKOuDaTpBApA!9aQJnO z7G7dfT;a?FP5i&Yaee0ad4mi^*GZ#SP}smyC~%O5Eq{Q2CXW^eK1F(m zPb*at)5jqyBgzF-k+xW}A$>P9N-7GBX6&NvsQC0IcUWaA!)l@WY?W;IQ0c#2%kJrv zfJ>0b2((&ScWb{I=ABT#bo0&~J^S2bNPB;yuCz#@9-e)|xh|C9%iQDXw7wX6sjzKy zxD(B0i8MVwZ=n)^NRdFB&GWkWvosC{YABu8x4%PXKuCCS=-=*}FfyBG2#AX@&_+fK z5fB5GIxQC5H~DW>os*Z%$An#;`BI*Xa4Er%AV%~PnGqL6XgC`>w+;#+AIn+VM0hSG=Kj2UPev@TLsN`3k>dlsas;BN~Q&8reBi^8gf z0c65iX7`5Qt1EBJ@?{NdF_uECnebfm($42BC6gn%;8N5IyZ;iLM< zXa@OeV#b|$iRJ!CLRv6kwWtCJqIommk_1nw>2U0hW`P{Dh^$X|QIlIHO6y%SThWpS z0qDl}J*W?Iv#lz0*+8az8$=WM#x@xz;lO?Q-WNL@Sziz>8-3b00}m&w<8i?f#?E^k zqq_W>Jv^SQMyUr5%WY4e`FT?%&nVutwhyPvZyIu8=_hcbIRd zV?cs+r}s^cGArXFnX~@6#A$ALGR&|Dd0f9X;XK<=2SqeV3JXY4l9&YnBanlyp`#pr zX^hBjlpc=359<7~^mc17JRa2Jx9jhRm46La?(N&2{Q-Tq)9!|b-(0rNugN%89-}b5 zy1i?jm!qnGyR(7ZkMhA&;Dlo4R+-2L!q}oK4t#D41XY|_Sg~Uji{joI9qC0@A?S(| zqYWJ|GpB2wG+3^yQQ`@J*Z+U&2W43#(-X9NZIjG*s<}_Vx5(3 zjsnMgq`4k|cb`l0#bI|F*2!t4Kjt#9&ovs2P>9CV3Z6UopB1b+%qWhLceiI8c43qU zXUy^rup990-?9>dDoADLj1c~~b2eETJmRV(XyNaWfNYEsJ zNv;91foo0TqfQZsrwm4P(j+km*ij^U@Uvk?25}{wIqkq}J0Ng*B&$O{K6=HD4v11k z(3Q-03EOez9-&3`o~?4{3do^V>XD6&3Wx43Y9w2Z!HWqTZ;BW-zfqf1p`JXj&@t(J z4ED3$F&?7SF89G8kVzyJR7F-WMHOO-BLq}bVI+bHB!}SROW#v~`+qh9N;mz!PMCEY zVTy2r8sp2Wa8P33F#^2iki6Ek8PHFaE=O+C4FZbknN}@4;xk!E0ou8ZR0S(WRqL2d z2Jc9?5j=-_=d)*699UMcx=s^ZYW^IK2M!Z_8WfiGj{>&uV3NhvN;UUXc0mo(*+v+DC0G72EXN#{#=7YrSn4R{5h@mV>hI7PS$` zX2s3M5;m*wz>chMm+z6s6|I`;bK_g_+yv0YyxZ%m(Q9EIW%J87Z1%q#_~VU^<+~m| zVR;kZOXB?VeAQ(5Cyx1h0~%+SJ-8jmg-Ib^`pRTVg&{oqIA_-3#|1Brao62)?f!VuzL}?R~lufg8kB8Q^no& z!nq2Fd!W^32cw|-Q$lcOUcM_{;9EW7hq69>P2F$0XP^06hLalC5erYW{EwoEJ8}EDN5&;9XiLA@d%W_H1fnb!sqb++ch=M+uOHN|4$J7V@N}zorMT zn1EQUSU{1J*2dWL9RcVZRT0tJ9Z*yuV?qr;fSI|x_rj}U;t*D1U^KG^^Pd+i*6nLb zRAUyymExi<@iSN&Jn;H{cfrfA6qN54`^7frgS}01;AQff85`IY6A7k=)ZNC{#w=tI z=5(l}k_jLZ2?P>dQ9}+p#(OnZ3gMeCtV}$r<54COcv=N#mUWepY9>Z9nKVsTeWcjs z#KtLtjR{CJgHpv41rvfgp?m8$PscWh0BhF3o_*M6UNE^l9EwCl(FmJ;@y!{{g`ieJ zdWG-c3|v18vX9H@#-WaGwOye#Se~`Kb;g)?0hf$%vM__jAV9T7OGos^G1GVOu=&ex zOF9Byw;AOgLDGdarD`4DKq8i?MHtB7^fu;EG=Sb5&{s+Xf&o%{VTWPcd%5o-hgHlk zJ$1tJMEO>)EaX${UgrHQGT2~AN;vF*y>{4l@!!j1zi!*a4x&w{iPFz~ zr>8zR8RjL6j(PLE;A&0}0eN-k9t0vc7&#j^==w(8jV5v{vmiwp<8+6UiH^6M10}Tq z=`2o*QoOBYYJg;hV1-#b{gsRg?|>prm~M(m)g%|$&MWZgSc04sC?W* zxnPLg-UhPxWjN`EL^vLgLjbxkp*lg-BcfOoJUSrp&k7Z^ZBg{5;WL%yt*e%o3Upi7 z!6`g?(wt+8Aj#JYlY6+CX&cuLZnE&f-B#d((hG-#Ig-y-(g`F%nn8{MQfLsRN)0a# zJfvz8y9`hgL#sR7sni9YCsu&N^$!>fkdqLKM|)HS8BU7LFm4FNW&_asfD|i@ z_6*7)h3c^?$xGCBw`1eaL62geHgH&T>0`U7j>bo4>tUOH>y{nIa;xMjMx-V;91Z#K z=X;)z9cH;e@3Ej$(S{HXafK4SZ%emM3vr{^WO8-kI^=QI!USTC!|x3le1FF zzAYp$5O33K5;J%lll(;QRpT=*l4;?Rz?{mKd%EWYVHJCO2P{WEoRIqP9oe z1Yl*+w8BJc0{AmSCPO^?I4i~CtMfM-)O)r)K8E@GbsfG<>^Cgkw;dIXH!|GGymwzH z81gSmt-9#**e^NcWmItkW_ehi8!bA8GGgOTJhxZlN4@zP#gxZ<5lr0& zp?ki(m!8Z#Qq;N(6E7;;JcUTInxhV~ny8wUhb@eN6B$YjDAQssjhzU^`7db>)wN-Z zmzAQvi(J~@JGeuOTJp|V%Bz_T>5$g=wus73^KnJiL~_y$M9Q5T5dK-#^1v8K!*Hwl<*XZk}?xE0vK# zsb!l1+j9Rz4i8>1lba=p^CF{&rF8>-V6!zufH3vJM1-USL~HP$$L)Khiuq^sc`M@G zJs(S3d+;`CI`hcP&-dB#_xX5LPRpat+_c+XFoCXGp3i+6J`~k)_YZdOF zhvLJLk@)<+UnocvOh?Ajop45r#-FkHHP-EV_zEcem=(S_BED5dn~pH@{9X?iMUhm` zw){vhtlH;WmO30@jM#~WlHRzs5utRTmc#GW>xqT11K+(KuPB=67>8Ul$x zEc0f}nG1!D6BG(10V!sjFJBsf?v(Aqish>*s4~)Wwxqm%*?K$J8cn9pC5~c)Kw!@H zB9u2m{qA#ypu|6y!KSbD|FUe@Vc&NGhe_DoX=l^X_%0_U#ETrE0UxE6LhOM4Gt%)3 zuNWD)wKv%&!U{ydwP-9|gZr#zplw8agU%!6~$0nY5CPeEy zIRI@Vby5pD@z1vh`p zuw52x5}_z$M3Kl9&Yih+5F$!QdwYk0r_1tV(hU)WMI`KdcAk%aSoiLH{k~{C$?yM< zvgfxm>KZ)J5O+XBQTB;JXuob@2GK)y7UA(0P{BZ@aPeJl)%DlMv*hdYZRf~6=sN>? zTbS#lzF}vUwIFH(T3QUjnZ^h8GY+xXcHIYKbaOgczy>ME9;N(t6`3G{gx`Mpfz!D{ z2rx9u(=+?=1EEUBiL?Oyl(Xm@U>_rI@4C(xI*pXH4Dg2@==R@}-R|J|jehx(!SU)Z zgq?F{9?#;pRhPXUXhayn4VZXHEPxvJ9G@cL?>o#YiYd#i7YbUGITJjIsWv+a)b^W6 zB;3r6&BPRlG5Xh2fL9Re9maR3(xZA8R2_S#Yi0*TXAu(@lh{+TZ^GBHRSaAhqlCz% zeK(Pelh0z9eTE#1zfP$$x&uBz1(|@V!)0O4B#garxSGD%ikKb4ntCf6z1VMqAjqiJ zp|NB&?;)Vz?aJp2veIa7F}k|E@m{HTC}B0`^6JV!Js<^_v6vLMtYK;dO2ac<-f7uW zqilZqH%a~$@VnmV=#tybqcSc%cX<=+yiSPOZlyy;A%T2=` ze<|1^`Jm;Ijln>OsJMx90NoQ73|@vBlWn@z z?~|Eg-XihFYwn&rVZWCzucvJU7)hJWEpG*{yz2v zgpv|4k{9gn^XG>DiWG5Ihl7cDHj;K&vRWSQxuk&FEw(5uAwLguMoBLpcfaG$?sh7p zJGX?>VEUb;@-Qe3u58S}G%n<6upt1?w*ay*V`eTYPu0H*CXk2{NGE7kHxc|$64t_= zpAK(#(!_Y!X&gKxMgupHXD|Y8jS=V=xblKgu+)ze9%5;v5!BV)U1})1I$Q>P&@PXr zAp=?G&|ebE;FK7QRudW!_prK4bR}e%)NPoVg+x7WNrh}*sIiS&K&;Xzs#2a!Taaw* zZ`TvQ)2gM%c%!0ojo25Z8^N6(o4?@TI*7Q#^G>~UPeP5M8j9^5Vjr^Un5D*Z%AYNe zyd1PBsSU50}%=*Pd%0H&T!jAm5T%7@5G z0D|tIJcyP+0zDZO>0j1&i8O@e@EP7Gdrm@wYIz6B%!gV|$uEKX(gMMm!b40q$4tZc z3T&q6bVZTiFfz=c!NGt)BuD`uQ}*U4?VNkO+j+2o>dsIRiV*0T5F{~yCw5`;jYq!H zLvbjOZFyi73Uneog)@I1Z8knu%Le?=MprT2Dq$1jaf`IsM1ziV2RQOIlcNaYadhoD zz`f9?Z!64d<8?f{VV&7I?9ja}Rb+$Q6-EUC?{UAcpVhDc+Jfs0s^6%<4u#*N;!R&cLbH|AVX^rLu@77HLd3i;jWE^ zt;?DucKq0XFMs4cjW#7ppagK%d&e^aM~Q~M#1zTSqb_t2BP)3Z8!Qd*>eFs3Q0)dc z8HsrpnDLz5=etK7_M7XQl5xJz1n%^o za|kSvRwyaB81K1$a*kB+QTcY{jf`5-;D#ZM^({hB1s-Husq1c^LgE!-!mfgbh1kWK zPp?@=O~U!%1}<#Y+Ss}?$<8&YXO2K!8hi4^eP}?-H5|#)BMbtqho=PPN3SA^vWRPC zieN;HSr|TE!hIAh7Ahj1eD=QYX;a$v=b-ayoO5$c5-6yjP3LTdNNc_qogKG4IlfoJ z!iKmhFJA+)cZZ80Us?qcNMaTO8)S-L{`H^&kcN+$KA6LlT!J3s@^VXrl5rjq3LXG2 z0xHIb503ie`6gtSqvVR2st~m4%NO;CUkEzj#ETpfmdZqaan{*npDscA-=wTIb)7u63x-tr-8M4Slv`0v@IkB$ zkwVMD&SQ+&$;o4vVXW#VL2z>{!!U^sFDn7}45sq8=wog}Df4-8r0W}iJ4B5mS4aE4)1U8%|P9P4mT)ZHcb+~;bz zBrr16Sk13B2;?-u2D{?B-$i9>6X^PNSeKX%L@Z}{i&os>0x;PC05#wo0FDEJTX6Ws z94boEH56bDmI^R6roj`(zkA;*JX?((Oi-HFN}W09FyQ`}LI7Dnfe-`&1!S$~Idd_J zf+XR5w^K#~Vm<#&BNH{AISg#u0Xdbqpunctw9La9Y7}#r%CS@@byWS6DAGJlIfP$zfh1K#tr+CYZK zoM!2Sciq2L{r{q*(8~Sl6X@(D3s~Cm2)ZAn;E>rTv#MSWqn%qiITsRJE22Xepz+DUuP8PRxA&rE{h!zHZF? zUg3K&_W0q>s%?y#KPM0P;s;|4rv&`D&$|QfN%7i4X{^s5H`l0*6CTOnYlNsnD$N@}2@oEK zIU~n26b`XNCK?%~3V!dQ^rm5k>~(ucG65o?2#l(Bd(x9B?fLoiQ1*SlZg>)TO*oGb2`_5$Y{@*XvFo(t;34O;_Yrn$QsLO}E%L-g&X@&X0F25iz)4WDrr-anr%6KKPwSK9=Tw z2OYTx19>-Fe|!6g^)I9EG#5pE{;^bi@t7doHU_+!U&JfC@FrhVO^71h&y>NPJKYhz zZ@;yte=lZ0^fCSadiz2k?K|X1=cs3d?z~EP9!Xe{WH(36bl7DK&?*Up_j{wL^niJY zG&dT1!?gOIc=#bpAfYC5fTi!UIL&jKN!1M?Wol|V^s2svo+TVvr5H(WOW&qL!R+`D6+d+WQ^tUB!w;XIM0b;o zZJ3DGPB|)vKeN4^ARng1^2xRb>VPPj=54g6Jjm+=cXxefJ^BE;@zOZlEQ%Ci~x~vekkaH>AN*#k)PXfTA~V7d${+ zbG`gL9JkgA4$8O)hK8Z31Cr6c!;YYO~XyvK-`Qdw%;KCdi|8G;BokW=EKC1KL`Cvzhmm z^C*DxlzuAaY8pNOron{5A4hH95Nx;5l?jvZF7GPqL?C2m>$FLQ^__M zRt36#yF%#Qk{cJ-fK~GTh3X?@zBAoBZD#^V_q;dyB6oMkYxF^t3e}|kD`Ywz!{gRk z2Z{zUTco}PS~3xU4!BJ4@%u&%S*KlzR`kS2IwDFZ9o2 zVutd)AF9;?bYrV{LjvE`lD%9?-j&TdY>Z#<^DwjWk;wMXJq=3zFDkfF76%ChCJlCX zZk%>AB|p7})0&rCQLU7`R9aVED#ODppwejCFs z^5C$sVFO3`b4K-*uCrkv$$vai9%yija-{g#5AyK!Iq3TApT+e~N6t`b3T8aqa4!H% ztw(GzQ}pmgpgQ2u00Dy{%XQt?-NV8Pf3MYA^fLBM=CkblTj=;Qc6uHe@cZnu0lyjj z)(Bsk+v1O$`tp8x?e*8~#5GIZiz zNmk!Ky?;Xw7OMZ1pEFB~NeuVtJ;Oj;9Jn(*4?$KIdL%l84n*ckg-N8x>gj$bnhP(M z>);}ukW)w?n|+li*NhI=)8upR4s0?&Jfj#4i?THY_JSy_ z;1VaGk}grO0OZ(XB8Y^+gJ@>gf-ACmfdT`(NWXJALg#tpf4M01cQ@G2FIK9IgT01( zFts#HcG(n9Fr!Nmi&?3w1ikE7P#g$|q!DgjNrkVjd{X%Jd3lXk;&(O36u)@~yD#Cd zgW8C3<-;+{PH2Es0z^(+rX6TmJyNkvELJ>sf!yQoI&nw*+@G+?3LeHkRK%k)bZ{tW z;Agxn%skg9WbV*i+ae&GrOPFZQKn`Q9HCGTiEkH8HFnh1XGq0J^j7J zf;sp`cp}?LHoaK62^>2=m|;`kEMX?~ z`Ed8Ms`ysUnaT>o_1swiM<7dF1N&U--kO$sHGL>q7&qUhK8mKEKd6@jUA9%aQ zkG`7m>@irQfetzDP<3?5Y9pcU_!7rWxLD&H?M@JFHeJJ8y?T@Y0%4;$_1&N(HhDtE z9Br@~F?`-IRJ-6EB&<0ruxQbU971D39UQasPV#Hog(^{FK6I!jNL0?BC~UAp0C~kP z_H@O%GQuQ2Q#j&QZp$`9JA72Ch!WIAB{)kNzs+9_j{3K=#(x?d=1T_xshlIa+ZOY*!4vK@BL;#C8FZRgpkIn zN9W9%pHc6hHJDpLwxWi=K_x#y>QnhxjDYQhI{ZZ(5bIAhzKA~jLJ(0;>UGi&TmYz4 zP*ZF{_WQ?As_Kbtg_Nzl$^?fRz?djpH0ey~J@Er(yTMX@;(H(<00)p?XOjb2pn{MA zKLv8AiXaFB<4u0LH}cWYwEEifLizy#d3t-UyOjT3D0MxuUHEL(?^z84&XgI08?V$ zjQ8%s_NE*z(nXsGHLFreOoX*AA4c9kMG%7HR&Cx>g)UfSPH%yIy>%zp$at2@k|=g1 zFA*7-564SAD|BtU(~;CbJocc{XBXdw5sW!;vgwRcaj1ddKI<%ibf0J7rw?sY7*Kiu zyT>m3XZlW(+E?%fJ!nNWRplN4v3(1rex(I&`3^M!&FGHU7-h)a!h^5O)xx| zd=By?yfM{5f>5bHo+fsIToW6CQb27|Ug3s>oWI%`rYDxtJSd0{| zzn6{?f%z(wn)$6ZzHONsN3GM-ae35SsY=Q-{~TF%rQ6 z=fiGQo?N*N;z%#t2y0J_t+5)W)&@HHyZNTcvt=sok^)p#L>h`F65SfjdH3+4BI&V- zLV#iJ@UkE27@mtCQi}nR6Ty)Y4WP(C$)*TbcdNpyaP-UVnVk6fMaL-Fo77~#R$iH^ zw$D}mx~js6E5^Iy#_B!2x-o=X61d%h{5`fyYw>fLjo$jNy1Md}d>I>C7|W(zwsOiU z@Sni^`ZB{^O2RBP$+v*>2J{6_s2xd8{SxhX%YP>Jja+IUdO<;`feiY%2o9d!uxX!w zoTokZ{^oqP^PgV)+3uqaG-$(Zj19P@>y2Lgzc0vWQU+vNhf=HaOa}2sb+6g%sr~Zj z>&wG3n&O|QY?5xaV=M<$>JwJv!e#7e_4d)NTLM`Ug$qDvuqB`JKtPg6)iMelCO{-0 zB>;BB)dboKyDTMBUDUAk>rqsIe(GgD{d{A+T8Rs&L_|2k)3|e!`qw~pG!RfwBLktC zxNY>!9@a;Gt)0GoxtAv1siN)M9&Q{htC9PZowJwCgnAUAgMb9i`mc8#Va4UM)okTHy68*Cc{(@C_0 zIp1E6j%}S>+c}k=d9pCy)#vHq=;zaYXOGD{p#lmPVjPEDi+FiaibFvG)zj#}_c$;i zFFa`V);L~l2!15U>rqsoOfX1#C*?hUtvlUXvctKWk7qcj1D!hD%@;==8#B=>HB8#? z<*MfD;Hb6I-IiSzQcYc=yY1m~dD}J|E_~9&$st67c<5d!$obDD@y}~?S!0!rn-4({ zA}i%>KCaGN9hzm9F$iNw1s$^#lSZ^Ahdoy>^g++Zj^3q%nY8ECn{_rFn-$TTefH_y zJE+qs7VJO^rj|^YZ^2)7X3sQwpQ`CDiv8R7#ktY5hMD4d&Np1uBhOWu8!de0WqIos z&3=3@b@%SNy)?ytURKA->hR`WBt%3+Eqo`6&ElOKx-WAfMy;3;5foX*esS`ZoIao` zQ39hKGhMQXtHUjK&9kED?Av~Qnss{T(|*qfVu+*d#8po}iiK4;!@-4Z@@&=K?q9uv zMSY_-FXNtPZiO<*ZPsE;(EF8_Up<#UKSV4Wq`rw&5|RuaLjhmQnI`rijZoGd8g(0R%gv07&9Jwy59*=5+^M`c`aCsn+u!H? zEFaRUY6s_zPy@&2phF053`8O*Bqd0sWD!YgVHn#@v4c$^LqKum?7vrz|9lINSD%C& zzJ&%F@>YI$Wv5pe=IpLr3?b?*5&jR_{gJza^!Kl1+mntOdfEtDYCQ&|O(O1_;>DQX z(>8lLrnx@y0nr2?2+a&0)j7Y z9QO1}kbFLahF!7>cQdtv^nnNvCk^oKCy?k0dQx%t7=b6x8~BoZapRYah}T+rWokHi zIhT~Qfh~5z6`dU>R#4|nix`BAiZO%_ zZZr|o)5)uPUtZ0APW`)U^Hdk`9v~R(8{-A!U=z9T*02WS1_6R1^W~hyw&mY!^4jms z^k>MkHo^6JJaJtIto}Z4FTJm-%JD zCaG9Oh}n^zGm@ch1Isp@1CTRn`F?4E%L3>L>Qg}Et5gsNn$9|0cB9us#8eArPcjT_ zLg=2JX%)v?0{Fe1xTHB@)5EGIkh%k7E5|wJL?yl(1dzL#5OYk1gJf_BcR^wReNqi)N|VcG#LjMVc$j4rdM-CYnK>X)7zm?sgRKYTaM5FAO39My zF;OofS#y?Rk6g6LDZo17^No}+pf2=7xZEtGIUynuT+}8DCJB{54oLK%#FvZ=j8F`M z4uWg06PQshC662doishDobH#dONPUV+@{UY>t~Uo=v<~JGlv-9>d#WFr^3r@5ewH2 z7`?47NSyPZF1o@SU=yN<+bt!#P;gK{Y2pLCAiLhuO$`)W3O0qc9xdU2OYtYc5?*CNhOC%e=rM(Q|XxD^szY+MV|)WDrpS-vkqA>$GF_}=XDC{AiG2W)VI zjnJ+rWmJF^p;t5@YDiL0@S`?4xf?|V#tSzstZSD84{YNA!37kJ0tE&N?;{q~$WU<7 zXqbwIOopP62HZe1V3Lw3vYL_<;AN=D>mUYI4wr%1dtqc)>xN=2GE}>TGZ4H{OCkZ3 z1O*};-(|oTr<&1=aT~qMV-?sc2xoKy<7g-%mSK2mitg>#JmQ0Q=yI-{CvM9d0VA^v z@S#Wdo`=RNwv z>0p0l6Q^N9?a}i489eRNN#BNi!hlKtszBngE#+ti`}YDbxnmsVxC@yV8Vx!aX=oV5 z$1C7*F>#dzPmS?fi=>-Filg1}!obFGdDB#im7yV=lZKYrn!FCT#R!f(=P2>Ad4}zW zs?9x{G_H@x_UW&uUj8^4qA63KI?# zU@r(7;x$+MF&a!B*4VNXj`cd3EHK=!FA*v-+0jB_)SEz8JaSvA%Zo7Trv`iXY1pmv zl!BaY1WW^~Mwn%Krd}|Qm}&Nrbj)NVw)>U>vJ2$XlY1jF4buXN|*>6YW3A9)E1#`Zjk4gAT52GLJ2SX&RdfiZ4 z*HZhRB7GVdj$#Q^k%ZD9CpgmW&BfK$^F_e+s!2M{ZQhr_hk_jrAP^Rlqd@x}{#XX~ z4?$<~jCJMNa4{PjZ4JSkE4Dl$w<0=(*-L1$1dGEmoB+bsNwNrvAv&<^C&%pc{e3o^ ze+tuT_djg!+e$ICiuJ-vG>Hypxt@w>1+xw?pwW>5U!BtTmnc{y4|5h>2B2O9yfSn! zp9Y3E&QH!lq;NEU*@fUz9RB2<9cW+D~@@kW$C z0X+C^oO4OS*HOHjA7KIXR1R)LL3V5I_OsD9ub(Ia0DBLx-U{$rkYul8I_9Zd$Q6`H zS92w?ygah?)n4X5ZI{VcT20x6&&_zcE|`aT6b)q%0Mr&>0CDC%e=+8U)e|Xy(4n*{ zK*S|G&2PWX3=Wo%=u3;)q6N|Y$umQIaz#F$(pLDNt`=40vEeoll$%;2tKp5A@>|L_pGhP!dJPKRx>y352t%8H)*%?vwY%g&zmG%hXJ&rRD;=kS zhn*k+-S5JS>oh(7nj4?Rq&6du#)T;fLGGG^3E*>eY~y>I?|~?zU8~M)gZEI1I2=2B z_!T$j=#d~j*=LqUBm8HksKH9q5ip2twoC*7Hf9Wy_N1t>6I#8p!$}+W?L_@7>#85U z`fQU(aDlfn%E7-TO2eX7XG^0j6k=+Hwqex(eD5yjLuF6kV-yu52?jBMsshOfj0FV( zC_qvO$fOw(L;^90EyCDXz;$|rKg+*o6zanlmdR{%Ym3!BCt0YUqen-egbMIq4#kQh z3qqdJNkYgOp+@3%V?}B>Z!>fa+%qjLlI75^p#Sd}5EMGsS#aKpl3KTSF zgCnOYM?)RmrP7tz3MF_>t0nNEKN=7h@`Oq#rG!z6PbCTrzeoC#1|!j|rWdQkXI{c|!ae);fO=&Nvz#Y%tuUe-HBnjaVd(GY6t$3OHphTv4&qP8%(`;KSY09S_Oh z_)yr2J|RlReCmJ8nZOxcRazH{PtsIbS#FE6dDbvjm*R}$e@YNms z+_$f%bfveND8=t#PR@#bl-Y_4p$>TO?7;0VC97P(!SP_Bas8)Pbt`{at=oy_xW1 zZ-~Y}fTHi}=q~3~i<_S3k0u^^tw8?KhD1t3fnu{5*h7a?!1gz+&}?nlS|OwCxk}C| z?Fn==6=n|I{aTrJ*4%aZ^`UgrJ|nTHKX>n;y&x_^vhG2%7WaBPeHdWP{ap@apA7#s zo!uAb`#!k3E4x2uM~#)&ZPot?fLIozSzUq=1TY2&sS+N4cIo!RUIG}p6e6tSg6l)J z{CY2=LtP$-nzI=#p~d>}(qv20z(m6!V9>!Vc$-v2xANfsHi27$v8_`Mh%?Ks$4^R? zm^A!Hsk{vYL5iY-4~K?K7#gsoRC&sK$B~6g#f2(~2v}RoJU~rR` zLKHu*CrWI=0P&N(?sUfR6axM003Xw^<@7ILP-ck5-DG}(fb9ike{spq9b#f zNc#%PPxVT#vS5G2LKi6&^fMPS<^^LlQ;sBrgalDU5kyDq8YqG&qccpQy-`hlBQ7(d zVgF~Ceh`CGR7zh=!_!Nvkpvh*1r!zv3PFOvVks3!NQ?-`#w3WffM|f^MJ(K)yig^eP!WKx1_c%iX>n3He>!)qaWk1 z@0vPG30k(b+P5e`_&Fps*5jnISvTI8d5NImv;F`49K%T|!AGFikqrbeA)*vOwIoh~ zg$EHu6j4PKQAHF{MHEp*7pOs@BiXrCnoYRd%rs!(!@tMI3qn;^~C}9{b zRfDL8ALj^QXhuewt;JNl9@u-N;TA}spen_RMUWJTivlSW3EYG|sHp%+g`^^?G73#e z2oGt{f};cqz>1+z%^?yg0uqV^XiZxD3QrYDzIxo zEhR++7zi;`SlUj^z)1x$tWYaZL|TPNDFaPK9I{HZY*MQ#+Z9EwGchOy5w;Z=f+EXo zJ6jyElvE{SY1s;_BB-JwnnJ4)ku=(bZ2+T0P?naG+7Lko5N#U@wUmq{K?oI+l2WTe zSU{}-5lWSiDiu&#m5_}nN`+{a(NuvIK>Ko%BB6t8ZG{*hFtm(-BqD{hQm`$ssS1@A zOKenH*i1sqU9gjk?pS%hIJVMs!eB!bEo zWP_N(fK(-r0Z9`73n76KN#w)DC->4C5-Smd4>Xh`7tNDwnrEXroC69C2^h#ImcT6w zB|VLROo&2IrCI>2jfIkY20%O`qDy1~jDWD3jbucHj0UDm!ywrRQYx;9VPSyr^!Ki0Z1@i@cNEr%2iO0L zN9@$`A>aNhd|$Vy{#$;}>|w9x`8(gEebaGEBxHx~#h@by5)dRldMIF$L@)G%We4_w zMjVOdz&_2?nH!AL1Pv`BuGIdK|x}wfO-t7$rcI(QXDgD zA`gt|CZ5lS!qzL9CNm`{e4qKrc|>}BSTnWb$q>;+{jAo1ZUzeHIA`0*y)?Q6#p%V+ zj<=CjxTa5^3LVI3!C{5w( zV32>)3K97%hHWB{G|<~)c6t-|e+Al_V9QBt z5QA@(l#kJ?o<9uDUdhbHy3UTV2^tlbd@Iqcem8N`y|Oc2ZlWq2qwIzd_gYtAC2X_*B6xT6vrn*#P{ z%x`SmqoXJA1w27AB1LspA?trx25ICJ@5UO?mkV;DmjelLS{<@v(p_8eTZI!;m}IiF zYQgGinlyjEA(T-fKZWSv?JvH{ME|NGtAJgILlg6g5?3K;Sq>);tJuJ6s3Xo3T@GgY z30j!wXJqG%0%5egQ*Zk^KiiN1{}1zt{c$nV8LEz2D(37jXSB4EP4r3*Sh&SdPg_wK zv8{?kL`^k`B>55R9^rqN@BZ_)HcJvFk`9 zOWxMEg~_D?OWsC9!c<%t{9$0F>=(=-uGcam_(RD6Jdz3vBmI9FlI4JmP!&ic94JE-7Qm9-AJL}`n>OoGI(P4!`C|=*NhLyWB0sGVkxFF48}foE2!qDcTrMHF z`giMW83xi0X0&w=iBxQ-FMieBQ?Z^_o)C0{4sjg)wcSNBA0Koz)1PG}F2#N<$@}Hu8)Ab9^d59;Gcz(KmvZ)14#s~EYB%9*YF2Xhi z3e&qU+~|Z*up|dL=`yJC>K8yl?JJ|JiH0NCTG)Cb4Gxa{G{LTGqGt?}UO&kWM9;u9|74nrFfggdqq* z57r3b3NW#eV#bCB1Pu)e6fh(}z>$I11J?-JZ8Lvcq#irQ&W=Dsqv!-@&&$$I8DX51 zBc`m)^yNo1hUsNL2GJ;<=iGRvyEHZ1P$XP6oL{mBN70l z1sI6Q0T~GaV4y}L2&zFCps-N^6@nooi2#g)BqAuJA}Jz>EQ$)Y^nuYNxBj0QIby{> z#^L6qKL09BpJu+N3sxBe%c?|m(fA?0mtgF zToaDJc6j)FpEo{ks2E#~kaRw(prtXju(M@d@D#=p2NXUyQa{(r`8Ae@Z*v6?@);95 zP@A&OK9@D81wlkZ`W~;3`Q0b}1p0JOFAwa~PX>QJmR51ic>JI=r)N0_%0v_ zvWkyJkO)BdEOtR3NF^Twa9i5l`vwS*NBE$rPzFR4?#^f)sD_XaR8=@a@Ilb{X%oUl z0NMe0o6R@MhtY=~BZ!Pl0ue6thXn~f!K8j(Uu*4pe%u`AInH#k&z|VmJQX_kth>9v zT=UOP?(fc|aEKG&i~bZq830bjie*4e<8S3h5P>2A97;ARVuFVIZ`;3i{c}kPJRuGj zr#?y>?xb2GCdjyLEtbug=M^U9utL~FT=II^yLZ6*(?0A~RZ&%L`|Md*o&Cn%7C{!E z^~Yv7^@9Ina39zIme|)Nc?okvO|2cptAOB&Ca1hD>B7}kqc!J2P0SJOD zfB*si>{TLyk^tfq0>A%1`w#YTOt2T`%t|$%|I~n*)BK-%JO7vdfJy{ys=w#pQWw23 zO|V;*M5I#i1ywc#6$>D8a5Bc=R6wjsLI1sNO_qpB+h+@C_GaO4IhyJwd|EU0h|3W|W z1jGMr%8Upwg^~Yp*Hi!Kh+`DM3z{GXFjN>oixg0S6a|QkRTu!V6=I616j+23qk}}2&e@_MF|u^z%WZFg2p#!q!FgTmP0fD_y1-T zf73=LAoy}NTMm~S!ZH^%rO2Q3lLqESMn&(j9AQBf!XNY;*joe*Wg(6G;Q#t07oS5U zRif2FVVJG##`|`Tz*H)b42Wq3WCd}J!Y25lCx>MqSjZgAL8EpKC`BR}W>Ba&gNSM@ zX2L8%63|nG5manIWC0bC5fS8q1wc|k98vJAk!?80C;X8L5JM2q5B>JKx`^OV?0`S? zq-+^HVTOr-VC*s2f6Qu3H5%ilqX=LZc0$$~SCYtAgzjWKPZ+iqNnj{O5+N9a0f40^ z88IRxP!S|nAfhTniXseDL`6k{kWm;au@FTg7{wTftXQg%1Q0rml#0bS8!DJZ#7D57|MG^=J7y^U^f{4h$V5p#o zh$#VxpokHS2#6^JSjCW0f}oHXA_A;If&zq4SOXx4#0DV9qCy}s6=aA-f+SKw5e7v? zRtl_Qh%7;ZC=o#zuz~{sgBYNQq$F7&C?ZIrgb^U9gklR676OPQ1qlUFjEq7kF(9M? zLJK5ycf*>e}#ET-y5rCqIfe{4(LP3IvDvALVA_}6aD#;W?gjpjPsUZMp%yBvSP&5;ilGEWkr^POkybI0 zV5*Fg3MfTj$e=(NNft1J0xXDw08vo^AcCwIAcCSX1}tDGun|%$ixgNah@i-bq9Vl- zDFs0U5&*CTSpo?nupp#H0;~xENX9W>k^m%<{jL?EC=V2cF+P-I9W0?;Zj6h<;ZA`Frv2t@({kOC;70YHkZ7Da%Oj98)y2?YW~ zNFs`eMnVdth{iEwP>7NdWFnD3RUk;A0t`V0MgWp26-6MhSr#J1Q)&KR{$=WM1FN7Jp>>@$I5Wv*6uo4a<2(o}_jjO^aF(Df* zC8!v?K)GZW354MspmLyUDNr?-&@Q1&0HhEx3+$r`1~5ylgAukD-?6%ZXojMI4S3KE zwKVrAr9m`J9`EgEf{tWTm=8HMTq#ft-J2~&RJdtFSJH4l?S577##ybu1;-tR;1TRAB}QjRtrm z05K#a7D6JVgaZXdf+*pMhTG-&|8m+91^=s1VfjG${*&watNY*e@eEs-{t!OH^aW4N z2l}6;{*T^2g)`aw@8h+P{(Alc^*>+u|FlGYA^P9Wqx#=a;3O~S+&{KLVDtUI-2T7x zVt4zW-~X&b^pD<-vHlbrN9o)$1{MOI!xV&A4F19HM{Bj8;Bx@~v{ZvC!`1!~C4~)+ z{|Ee(h>y@5KFwQYsg80PMraL>l&-vD~lNnrX2-SNqo-dy8;j=QhD5fQgx>Y63 z+lPE%Jg2)1%e3nYry-U~q^^ny{YIVIdUYAk6Z&LZCe;xIK?^>R{K%9R!BvXhG#kTh)yEG!ht?MLQd_94`mQH@io&m} zGiFE3)Cj>$Xbe{_X7i06bh*n`RA@e?jl2WcKISZ432@|sWGbkYTMLK(n{i@htwhK- z5+uVqJEOB)_T>&+v#pqh{ci#^wRF4A9U?W$C~a{nR5;2glFU@tm0HHJv#bo^MWzNJ zOw!0_J6daW0b3l0N*h~ALiuNGg=&swax8)eD|->u^Tf_BkRTdna@|uk4F-@Hn~=~T zHx6uA00s%%5y8IeI@t72D#MRV2n{%j)?>}!t39{*9J{-`N@8f_sACj$!@8-#$!jH=7%_;0fa+pnmnRYh zj6Uvx#YUMKMMJxcVA&J3Tm>pAw8xdaMjF+%7{LPRp4GzfxS_nzYHVV?HYnOIR`msj z2Nb%faj3R+R>Z@Wp*6s+TH<-mb5z*5wktDStKJsfTpDM?u`$5o)2V5;m~%@!Wu8@- zEAShP<@Zf7Wy_SCmg%lVF;%H>EULResJ%SM%SWXq$Q~cE9h%Izcjr+N7_DOEf`uV? zUOPrFOsY1BI|?61e9o*j9(+86#+$G&JVta@NM#h+Yj#{x$s|J9E#9v#upXIr7d_+^ z<6=#5D`ueaK^=7GwMsG)*q3v)4jFfjPjkU20#!+@l61ta6`8%Ft=~FOtnHf3kanEu zaMrfZn|vT6Wvh-^zztjia=oq$))FazOon8jmUP$$&yoB_;Whd zh94I2C9UxTLl#Y@nA*bJxg6ybviU%uotnvRA~7)&$qPClhEwBzF26QVT^#JTFbZ+C z*r*fP33Q}|jsz;x9glIckvbAj*JsJ>!;37tlI6v7I1h~#qgOsd!BDQ~Czm({h#g6) z@^c+qCtvgc0Q zyqALp-s;mpZ-xo6Y7+0M(ov6*fg(nVuZI^32cqA8S)o@9LXDt6?aXIds%nE&CE`)F zlou4?QZ9oBW+Ni&1tB_(?|P?kcRS+tXBL$`?v93qOC;*A(!)YH$WfBe!Xa-l@}#ij z;lUi>N?uJ(oRspK^K_m8_YjlIMNw0^3L`C4Pxx>B7Q#NXJs$3JC?ohE`$@D0HL0G) zTjdw>!Ad$Q3IDfY&-?{UdU=_!vE7#V*@YU}*w6f#t6sKeJ-d6GR31DnT&@&uiZOJ%OG;I=(2FX0L5n^T4)`k1s zLdh7kOBc20jaHwi2e2fIVO7#0_I?5X9$x%2-5|zOQoz z#=-GEN<9y98U87-{<2;xviPia?QG@!;|&!iS=>9WqDG%rc0+6x13dD|HF1l9xqyk* zvh^G-;+TkjBlso0eidwh0ok`(UGBFSxlv!SR63vFfX$Ss1!irBObUrmN{KgmGuQB& zX3Tz14`vzn{CYe6s6D7B;6INA&Pnnja`gZ0*yt8$Bi=(ykBqs3Tk?!4@rn+wY6sQD z^!s~>=R9P6v{njHFj)P}1X8TPpS5G{pPcXL(-Et;xBB6WJ=6Z}mH znp1L}1(3jk3GT(Sp%O7n2LP7`#d+KER~PjqfpLK>{8DCYtnmph=Ud5 zR%M>^pG2^ysMP*nei9xokU?j$S_YZ(u>NCF1}qq&f~*h`Mn#bJlg#aMHlUUx7{DmP zs*-Z^1DUCo2(!6eaH$H9MQ~&b?7<=Fd)Stl5*R2aCLqH^FbydPo%cZ5$YL18MsW@U zXmTq9)t%Bw*O^I{>=0i57WLH5?DUcgfLMZr+v&NZ6qvxQJpNiKJ10J8L^~_rMK}fc z6pfA(Bd3(hvt3e{5Rh$ZLMO#G5Y?(aNMP99bH7z8xe-A3avapLXT&QR4O0&PUp{`r zk`$n5T0VZCeNq?-=_=fnOv`#9)G61!b2PZ4h3bm<;(59umvZ~VZ4zUst~{{`7D??z z5n!-G0EfU6CPZJyDdC4xsCBg$lSjj6C%y;B!4eS?0|pS6Y6ttt9%u}>myIr{JNJ2lDS?71cJpvgNK8HBQa_e64O4zq;9q=7$cu!_mGC{Z#K$ zJHqzfKbGGK9=zsrA=RcYf_fY)s;U~gDOj?NQ6hsN)Kwf@nDrQJb~uOx@X*!R zfMANM*z&4?Zq*tX**XM7Hb&#MV3~8BO=;P%&1hM4t`I^1GSf{B01{O;Lk2pbc{h2) zB8X=4Y(R9C1AwRrKnWqQ-{u~3Wac`f;{F-<@wbcOrQ3RDK70xXnFsFu#=3Mm z3Zg0^D5B36Tzz`?(XE3OrK$YZtRD25bH>qz zRKzvnl|dM>!r2b}4w6jOS|v3{3J`3d2?UwG2BISuhT1_i!(oh^(tqG8GmiSe9EL#8?QkOvC*j!*+1hZefEN?oBu) z82(e8e=OO-#Ofvpssh+1bh84bK1TeaT@B*3J>?{(ST+S!w4ro@G*OC0P-YP+X)6d8 z@;bK-G*F*r^9}B^>Z2Q`7V_G`kN-i2(Eoiarnz?;0C8- zzigORhOo00HH5HJDQGf?YBI70SqV@{784mex)?-22yLv!n^898DlHs{sN&MyDpGB` zo65H?WLTqF3aJZ1fth4B5SD3x0n3%v$qr5f6w+~YWA(6Eqkr3J1) zrcH=PFfDQrv7ag~_gOG{BDqAy8)V4^s17xj7q!guuy)~`!>#J^I=WztQYTs*^Jfga z(7e#GfU}+Mw;_&_#P+ZavuSPHI35UU!=>O|-DrUT&7eyeFxWMM2AB;Ur1)7j9ChxL z7lf^6P?d*M1)K?_ z3dwpKFw$A2fOHzE4AGa1T;~njNC%mXm%Xq3)0{JPV~6|)feP=(#)jOoTgnKKfhH?0 zX>6i2^7!?dZd}#YT_Vr4@(p6H=fB22&2Ez}H5;)q6A_9d?ivb-#B5x3lo$h)TF<2` zwC>^z(l1YXfuL_M~N*cq@^`E z`pq$hwg6M$Rc1ginF$FL!C{UV1+nQHXLkAe@Vyp3eKaML0LDZ?mjhU<;gsKzm!~H5 ze*Ng23LAizyF=Q|AIa;|=OcB=|#B>ts14M|VK_EClj^`9^Xtq}9vgvgaxNDQi z)te&>kg-@&02F)FLU<&0D@P>&K0M4}hm0AN#5G6~2@#8dtb!DTq)}&l2w);LM-jsD zDub<6(!-SM0~kyYl3Upd8ea>uK*Eb2X-a^J;55ppG7Msllr6Qh;C<8Of$~82ex19Y zH^0>A)!*tK8~o|J8%1SZJ54*#fIWwq{9XC zvYKw1mh}2)e0U;0aI#p3cfrxGQw^2{$42&Bb9U&Oh@ZcK$R25S6W#6Phd?tn3WL^f z--kZt?o-^)0W`Yod!msQBts~w@vR3gjp4JM%Gj;)h&QeNQSVr zr*7V&C;_B9AQhaMDVfF`?&1oJ+ED~ZEC(nUg!I(|gvcAWOaob0GOsB&yEZc> zSm>eW!R&XX>dsz_4WuBj1pu3o14Z(1nu7&W9>gfal=o%E5lJK{$vB>0b2|1>6KLDm z%+Ft8jF5Dtb#tNSZ)Yi4B4pPpw%j_jVHn_#k1V69kn&5j8$UT7TxvXnmw2cZ4;lh!e*ffI7ltrPIJ7E^cy-gpz*k!11{l_Ogkce>O=W@5& zy$|&bdQb=FNGeFAPpJuKs)Z-mf_$8s9LJag*B=v?9In5rBxk zk{cp%5Y_==@$-Z*b~Z>983!fvzr8nlnxAtOL)zzZrE!9$dShG7Ml`daljRSJ?BuM@D6_+x??l?!Sq8ICyV zr(R0Az(cbdQOX*!s(=*`WKn#Pbqc_f$6OkO>Zt-=|CX8SLdYEwlaKm#Vk$^3q$DsPa1#86e?$qH}*A>=cF@*&ml3c(IA4;ij2znL?R zr!yxTNzBrvr&p-)!2{ALi!-ej9Rh!9#!#CC1V+%>xoNruIwL^T1gQr|yYYa7_%~&R zKRPnhW+f98aJn3kx@=w}B8W&3g2pz0Ccv{qS3Nw2brDy)!W%TNh3RKCoD6OcyOsd` z35JCWH|K>D`AbN8Qs8eGa}s2slDn0OW{n5evS9v|uf5I*Yg`b(DZ+kcu-RD6J1@~f zc#hbLkV2#==!Hdk_%P3fpv1 zXve3;qht*&40qpKjyZ-k9J>Rw+UlZK4gr=V4HVL`*-WAZqFN<2mN1am?gYKY>e<&A zp6>pl(nf;BRs*Ld9Qt;*24r&c*Wd@(KC}709CT9l*gczajn59@$Wkn@_q07q*$d{a zXTQO!1bgXyV<<+S&#VIs!-G|*fxB9;TUp;mJ+9=8>pQk{UiX$kDR!_Sr12pbjaJ18 z1#P@&*VB}Z5fzal#e)HnV8Ln9$V4>Kscw9W0;*YPTCb7IRAp_+sX&_$dnjahW`}A) zRy{DifyGH{YI~IvYU{5^fN>V;&@VJFHs}Uoqw(RIuLgqRNnnQrgNig=?&Xph4qBL= z8F5`K1(;;<-HKyG?}7+m1vpqY+S(SbE%10`2az}T9U@8a>hvs~R!D5CHvGtD^vE{|d6G;@nm!L8AmZ-Yi4pdJHN5Tc~p5$Zy@ z2I)f%U$OByrT0StU>+eH7wyLR%=cZkZ#h2!XZ-O)H{4jb#*?#q2oT))W&M@2*V=t|^mlDXWwnsN`u0+TUnA za1dE3v!({M}8vn*@TB6>{#|nDZblHIsvv?FPaM&JVsi#cpqUt%5 zLoW%@o`mdR8PFTUfSwr8vYBv(#9{j6rg@gQEhZ!xSb%I$r9Z7ROuOcoAaE?ml<>n7 z+~+)b#f-hgf+DEqbpnSDXQ(pR0F;!}}tZ2!D?Os|fd+uclr3lLj1*nEMGSVqbj%Tm%x04Z|6-ftc(ZwGJ-_tN03Xbs?7p7e{LKHT{7!L% z$^V{X8n^zfanA{IqeT@_{wTlVj?JI?Kij@{|0x)Z!VmiBM6hAB4OKv7A}q(J^v|jB zYK{NR6aPAEqea$^w<`Uj`o*F~B5RW~BN`nQ&AttPDAZCVCUW>TU%!~tKC+CWHKz;1y z4;5zS>akRR(i#61KkegdR56Ic<#){?&5-)89sK*MRgBuMNB`MZZsCCgwzlX&8yp_c z6h`u%Z=6 zyf=De4^Zjwfpeb<1yaipWQB5>|NLRWalg#;28Iq>|GAd+oxj06)C`aQ_d%aT__-S@ zPddI{&41n5<2x;3i~Of%M744!mXkasSYZC1@Ah`IrFA`S2qZP8t=ze?EBec9O0)bk z%^W~~;p(7%xDm`F|Ks9A!Zw9-4m&IPJO6OdD{DmK%T%+)MTCv)<{^r5`d!vL3~pxP z3MKS)j?N5g97=C38I&u*$Pgf_heHDOa#+x`kBkMcOu}f!N}=ER4iSffQ}BvmwYs)C z04&Hs5@7WP0O0_XF48iKae3O^^kX?N##&hAm#%y}YYhDL=Qx|0Yb9DDg}kuLy5{W6 zbxVkjM-cBig4S_FVNVpWCPwT>8Th{u_rGoGC>-V3a$z% zCk={xlQi+Td*Ymq?6zzSU6geIr=l+&nZ+LepRDK%VeBxBPXBCzr{9^ypvruq9DRx2 zoWk+bkGr~ZM5alm-w_5o4+3=qx#(Kx<_ug&C^6fjoT2BActv6?lq%awhF}a>39Qg2+?31ru0oG9}d4wJpsF=w(XWzH9pAHJx zL=>YXuXxS+FI)C7t%FaC(Em=rn+2M`C3Xr`|Ic zpR49UC-s5n`Cklu%mc=ip;v!{L45jaT#6>ax6mrjr;YHAO={0O&pHtB0Jmf4I(HrdwP7qFxHO;28Uv2ETFkUy#A8Unlp_k+a zUQLOwMHH_KqP@yKdjU-75b7urk8cPQ*vI?0gBM*9&fy-=%A=j~3VAjwH4LZ1xV)?7 zf}S+0%!;tn!y?n^t?m$yLm)k-)tw4#Ajd7a!b+B=uUZGAJ9w4o>)yxGoi(gT)Ht3% zX>&sb4iZg@%(D?@&o zK4ljXibEmbBdZ%*K4C4fwod`ZX4|S_WRZi3+5{XMkr(mjhL2BwVA}WmI=CM2tkO@S zA54e`oZAiXQIS|hLPU^}QDi`f5c8o~1|fpwR&L_4UgX`)>TTE?B2_W~I{$Xo*)WxPH7Uc0+#i`F!rR(~}Q= z`H(79fTu)?1~JP8n3AxDAq9k3L4WIIMPHj={m}$3%gN;baO)wnMVme|_%?m~ zYxX_cAHYB>@Y09>0~8gKWi^$2!uNn2Oc($6|M%cW|NsC0|NsC0|NsB@|NsC0|NsB_ z^I!kh|K>Vr;QQ~I`Z#C`3(Ox*zWWCjn_x@m)c^p<7WXIF9&fXY)$aGb?Tj;Q+jszc z`R8}ryD`4`?$z9BUb$_6IKG>mxBv%x&b^;`fC1k7aX~6jHv%Km6uJ60e^j}YFtt&zGrFzTHKJI`VJx1=;=rj)Fy}S#F?B!Fm z*oEDXcJMuWk6!kn6l-n1^LnojM>rcpTH9Myk6Z@n_r2*&YN@d>7(2S0ddljyCZH2t za_uha+;+9yw_T7AuR2-lvw8QI-%(VmbRBNr2=B8*?8)*L$x3Kh?b{W-udh}2&im%W z>w9&9T$J?RaR%n-D)+mfJ^=54WH3ZKTUhn+-us=vEw#0%ZCGiu-tGgy4Xh0&EXiL_ zu03xp9A-DSbyG7~6z^`Yne=)+9RL8a&JAw0WE-%Y&bzC3Yn}Ii<=wpIGVZhAUvHb) zA8n<#-(dUf-m@SNuRi;|P&>Qc&;qpk*vg)tUgPCH^7a5U){OuqF@23t^P|iFeY|nz z-gU2cDdq0pUH6A1?&#Cse3g%FcXQ#kU8r_o0;}Wz2TqjG2aY|VH+!+|*SYV#?{_w7 zy*TA9hCNo`ucvr?I$n4-%ba{y&VA{3zVEg5^ADdDzV`C_c0IerS?7FB*L3%%a@E_X zYq)B+A76d&bydDh(>v|&oxR_0s&7r32`+D{4u#W?w}~xzU7F29UtH%$cQ-!yA8z%@ z*7(`$S)FR>-KOU>%eCvOcH4T!w6MFPyRI}G)=tm8z3%R(cXnN|64P@>D_cLvFX?wZbXf|8j-hGE}v#c8Pmu=T?Z?l~DAA8rkI$7Q5>GS2TT8Q>Uv^e0K@G^VWOm>FrhRtyO{DJpta2TUE1cYS+v@A7IoOkVrOu7Bxpy0|jkpKdJ@wu3&nI4(V${2BnF%Lfcc)98-8H-C-RIXkr^Fhb+jiS?xa+9UTL1&* zdi#am4>#Vs-tEb*@44Rg8tQJY_tf{mbe;DB_VLxw05$i9_h+o`}z! zdAjfot*CU)EakJV=WTVDEzr?>Ytt*;_hgTHfTjQd001{~(z)-odF@GCX4Ss8TVp^A zTV}SVms;(+vDVMGPPQ~_-Iq+8mh6d}aey1J0Q+-|?zq#oP*d-rpD?4d2|3z39TXiT zChfu74IA5?tEW^|0OdxW%wU^PE@G@26TXw%zB4qw7NU`>@aj z+pg@~&W}DmJc@JzsA2W?x-`#P9_QBJO)wYP_r1Usr=6~iw!W#(X&U+Wy!P$s-R;l- zoz6b-)3ZIf)~KHD=G$U>;9PBLA6weM_j9pB=)&cO&1%}d4|mtTs{3>8y|(3d zx4RbeBwe`s%y!vNE^(;cu-)sEy}4wd+}mp_N_EX^F7Dt0=TChKp4$2MwKv_)-PPm0 z*Sqha4uBa8Iz6g<_l$SDx!f}AF6*ovTeV1gU^-TS05-rjZRlTY54~roy(%R4cfH*D z9hT#uY~ek9c0TXDskQE=UC!}%9)P3C+%DjCZ2>?401LY%DhRa?eF*}C?Y%qeFP~R! zy>-s=b^y^qLAjofpgyTUcYBxF_3vtspKSZ*eVe@vH+Q?!yXzNo)pl=pytZk))4kc( zW9;tj?z!&w+wQ*ZaNTd7?>+9j+}-Wn7WZEFyF5KT03Rv_f&u^nXaFDpAOQd%CWe{- z6A&5z6I0T8Jqnvo1k~~q(M=gWs(PQQd6H>7X&?Xq003d8fSM5k1PA~?0TakfKr)#% zO|?(R8k1^%Nt7~vsiuLGOpWTA0MGzEAZP#p0000002*nL2tfdv06>~DWCCDDl|NI- znv>NAo@z}QGzOSQs4#$G00006KxhB}000001e!>QAV3fTX`m5;Xas1&455%F(-L75 z(KOndC~ZK{#4<8u28M=!0imGK000000TM(CV44JBGy^GsO%(EKpOY$iku^`jG)(Umruo|Dm)Jv^CDDt<~lMEx?SsNR(H+NbG8JrJ0TPf!5$H1!^*sQpkx zkpTce2n`6(0G@+Mr13|hX)>Oa_L86KQ_2UaGwLCI|70KCoW{3U4)q$c*?R zfcgT&3)!PGtf7_Mm|ctk3&!>SjadD03NK^n8vUQPTr!2k0aP@DLxnk5DH16JQCLX8 z5)nmYKqQ1d-gG0=R|{GBYx*UzG_^R7Wy<^I@=U$SU0v>*BI8u+nD8~5BBDVC?ex-HcncH&Z`xNie!{P zJi@>A_UFMh<4aIsGDmFMY`5)V;S(|j=-8I3Rw-5i6+%(7Kj*yDwnBnI=AD0SAZ8#9 zOa{U@U@%)3lOO@sMH(7a3d^NX3#Nz}1|-UxnkuECD!;6(e{DRlz}jT+MQo6KNV2E+ z$_Rj6$V47kXRfT6qss#wBscg9WuwIER9#3n82r&Uv*g0Ff z!!ugR;^-Ao_p*tkra6+TN46QjpEsAUG{psmxwF3=?oKkyMH?i!N6An?Hmt~&c4h*c zsu(veoQ=fK`F(gb+2%Ra?{swVDYu5J5e^-uaYCE5ZJy6wZ>8DMIZUhT9yCs`F1WhO z1Uz{2&1+Qt(+Y0w9%=GFQ>0T&@VAFYrS6AT8WX!w7nJnFuO=rt=PdQLIYVuEYs)(! z(VIn`UeA|XteKilxz2QC(*=(-FIML1neo?t_k)D*N*)%QWlu&K#WeMv8Jwnvrs#Ki zC(4gZ!0VKXrd#S~mmIZUKmx^vgTu%wHy@TZVJ;H@s-gg(p(rk?LPSXnx7wA)LaPZ; zL+WNL3=(Z2j0Mhc^tc8g^r4;Z&9lP{G;f)d|;o2C6 zZrrhDca%CD&^U3{oxF6jgySV9vzv7xu4yrvb#NPU##7sx1cqEr3bPPO3d;69Tq_I; zuPE~)QonV5;Q&v-3J8U;WW2H{iiVc7zLeb}vjhPaUeJ_}o&r#T2;v;GZH+j7|K0KM zS2nX=Bq0ep6U0(T(rF-574kh0PVyiSD{myc3nZglA;Xi2t%0&WYqsqV2u^qka6DRRybgHVP zDJID2nS}~kg63uMW_NnKPk*!X6w&5(R}%Q;)OLNHT8ibq4wg5?t(3I}F_0jjK7av` zNOL5CNiqWyI+X_v3@`LkAto0D)Tf>a)Zm*W9sEGI$Rj)Qt=9s9R;@8{DOsn140qwKb2TWOTOnRCy4JEI5t^q%fb&gZ!UrDR(R_4ocS*iZh3jrO zHLW^!>KrdN)=GxGm%n1A>i{=E$iK<$dLN?r3ZG}$O=C0eWoeYbaPb<2@S*D=qch9p z@rN1fZ6M(F7K$S-x~@^ZC{G87t@}@W4m;NJKzJ?&aQ!+vBs(zbst>nHd$sQ?`i`^4 zoc6n#mlRm}Yketv9|1UZg_P&ibC_1KI=eN`p_E-(&N}w$!Z|ugZAdIst*s(U*JI5| z*{D@g0^r3C9>b3m+N-_mGh2;c3!14!f_m-9=@~Mm!af?@%HiwtHmtEw;aweWIG(ylhe)3 zJK4)mZT1f<)kMQC85aWm|Mofdap3rP^b(y=(e4wDd*y<}ZNn+69EHV^R!)pO85aN5 zTk_t%1qG|$9}iO^C!f{n+t=D1iQ3#847N~TRjCn&cS)~a%#I>K0|W^jVtR$?!JG#z zPm1(Z`teFE)0RV-!r0rSRGWRN(W=`vPL)1IX#f zCNz=Dk%lwNGXkX4%LO<>p;_izAtBG;;#R<{z18vP#tmf?ml>QO%TEq#LUxzEL7oYl zG-F!F%*tX40xu~?*GOq2l&Ew=?oArj1n8ACh{cZ$hRDGD-=CZVXmZPzRvE=IIcWr9 zFn??CWXFy;69tME*gC3F21|6}MJAapy5y-b5n#&0yMjo&Lqi2nDq|?f99x~7!*0@6 zK}8K&Q5ssPnzgAWxwxCwW_#>7RoyhgrZHsNX!4Cl-nf|*B3ok-L?Wz2R8}d1A{c_q zjTjd!)~I4>xEUPAVTMaEf{KdB$E98|-fJ}Ds+$l;i!Ei4eab%!N^g~=7PSOo){q%m zTVrhzMj{~Aqaiz)@fkKvjemM2eLWDhdTf3L=9dFp;5+Aj&9Of(DUFfXFB^BHn`z|AGc{ttNz8 zg3LZoqWk-QnDw1br&TKos8$+G#_5$Ps4vmahEe-<^Byk;9&zzHC`B>)Os$kd^0ydw zPhtf?qa{W_n8LAO6@mSGa@q?NP+B%B$bw#{Y`SSBh(r|#v)Hj^o5@)sNG!m*y>+nM zHX%1Ox3L4;c-H-73th&IcxTt11&jiy=kWTmaQIJlNH561x53$j{J)#xAItTBP-3&0 zK~$@(RZf-V=NiT_V=gv;hVv1F=QX5x@9s-keUTklfpS7Z7jPiheJN03iSr?e7AU49 zsE8GXGYcoq?6msxSV&d^gcO`eihR2KoeSY0u>vp?>I_fx;-;(s3|?acP7#G{0Q6s7Kkc zB?UrZ3k0-{?Z+ASRY9_NaN$o9ATe@NHK}ydwcxHhxTg{kJOjB5TN$S@G^WFs6PymV zqC_D-wcx(fkzM?s+L@P<5>8(h?e^Wxm9x}naoboWtzC9%4WgBxewm_SySd;0FVS=Q zSiJu01yDB8LGvtNb>uiR9HxARSmWR;zJ`9364jIQYF+&Kzf1 z(0V+xVYtXd7>I&5jaj5?gCcPGaeyrV0i7|DPbe&*fCN$1p^8Om z3e61b%qWCq7RowVh8^{_+s*>~BafOR`Tr8J19@N&Eh?)Dw3CWdysKwkqfLBhFTO?g z`-%s}5i(cDWe*sqY%qCJw468bK~WGl^<1ft?OIymW0(4O+D~5-bDCHHsm*~T5dxB+ z(g7lh$1ngCH39Vby}z2^7|xu%Q4a`6-w3KAp-5*Wliw1^LeLNFtn(nD1ajN zJJ%^%#J7*dSJ0Ymnhpt?L@yAj3_ZVf!w^8gXbG@rR8o-<6Tf!4kH04NE9p>9#*saYzqP)iVRpHqJkoc)vF0o&tYy}(ru^mColA8 z#(2-~cLV89pwa6mr)^$6{8aD%ZiGZ#_F&D#CxdU{vsaXAs)WI4t`NvELOBUVqja7H zk6RqCnOK?L*XrNGAa&zNHie>|Fan~z9R(5;CXr;;p-9F`!{$hMurZ22tR|piFA>He zgbcO+h&ZzTUx3Tm*X-ZYckwvzIs{F7Xh*z|4jJbF;Gs=dwUi9yw$dGOJkjZi_CPZ1 zJl@{yIZs!4uy8Iy5)w%NyZ-L46zbRddafCB>^?sqN@5R@Qjr-ypnfRz68!z>8W5Pa zFsl+uj6|tRJ$L59={u)2zkII$hlf9Hz*hT=Kre7IsDKg}cDzQeaW4L0GB`75Ay5sZ zIVtyF5y;Hi;n2c_4ZzHS5I{Dp;hhmIMM*Pbc&6P3%|AiP)@KKUOlF#(qY^MKmmxf0 zcO{d3czrZdJ@^m_sFMIazvc-w<1{~30=5T_?+a{fQ4oK1JXxVLE_RXisxl`fFW(R5 z=#Tge9Hk`FQ$QX;MHElYs-E5xE9Iie#MiMG;GzDSsFJf7NkeY?pam7(JSJ;EWu{2c zGNY!L+uc*6BB*Q8b*e1#tNP4N`IV%zE5n5dz99#3haFx>R+~(P@)6XC^kH5hV zICbhCqsMgrhPij97IruFsTHu;Z#4WoeT(H+kC%m;)RPsI-1m#dJOtA3E3K9Wp z`GEBW2Rw}?|S;KwQr5|J_S>| z18AVL`H=g3y``5jC;fF=E9o(^$`B}!pDR@)2(2_=bg&=X(&YpDW{0WB?Li{Nu)#YG zl+2+#_hSx_<^NePljD04o5Yh?ACc_A54s=WAAc@(GuGo#JSv+`fALI8@$t#S+bfrB z%Z%QUWaH-enWWG}O-@cDJ0FZMjzSS(OPeizSq48%BUM8|1B-Gi?z{G!-larll zZt8rvALZv24uoR0 z+Raol+|z;i3{tgE#HrU`!yZEdA3ZF94rBgfTk<@;AAha~Q`>n}`M6$)dI*rw_{a7w z_1~_zfn`p5D;=+6CWHx55+mKOR@{c|E89{E8Vizs{Cb_#1N`AmZ^Zk1tVH)cKA3GP zb)te}{Qg?${#%`XenXSNeWH#id6Yyj`_iWBdLfaKzJvc6{rR)*e~yeC=GvZy_wP&9 z{I_eY#gn|o(=cMiZ`wX!UK>Ai(}&_6N&mIHB=@B@`yuR6;cvE97FbQah0Q>rrSr8^ zB|h|X9HHx|*$Mv}?POL{`VY`yhbCj0cC=iwU_K;J40C!lVy$X@7V(I4L81Le0HKRM zg+=Ry4~5qU&7ft^%g>G0jd;I=PJZ9+EXm^AJ(apY8sGS3dc9Kkg=^a*|MF6@z23-E zEp+c?8)Sqh5F6@?yk?dVlCLXT_cZ4f-mdTm3Rod7nB4u&c^y*{*Ehv^ZR6$k@(ng} zbAADv@B0fG#u8n{-`hEC;f)gA7(K2ch|DCL(@h;CV)KjOt#OSLgF1{)&NdcyeCKfy z{XuBFd)>_Q{IB2pf3j~iT-{Kq{oHI)vp)8Eb=lSbJWQO`OmAA06Y%Fg!1jZZ0XKY?9CvE9AIlj>Vmr_|93x zAmvuT-+*9yOqr>~zpS*w86*0zQTEesJcwj&K8N^Ro_C21T0mXux%aS#+~hu$`P9E$ z^!^FPi9>1`r>(gBFdarSXh2sF$qdY92T0e%H+V7u;h=fOF$BxR?H5GQ{}nJ0f_+FY zWJb*Oku5=_Cy)doK#_;R12@zf$fAC0IvF0P)jZCYhzdbsIaVM5sze~4JU+R54`)Sk zbq<8=tYZ_RoB6QRu&3;OtC5Cl*{gX z)mYksKqN#$1#A?KEm99KP1$0LGr#XXVP&$117l3O5TpZZDiF}Oebq1$R0R#-`YTa= zZPls{Iz_$q3Ez?B9Y{_)VS2a{+C#`2!_E72p`NKt?t_CH5DYSZVyTw74&D|iA~>+! zol?bMHG7}Nd+G6>R7*G`DjSS@-s0wCm95v6P z{O8IcA7DW8s9;cq;27nf9D6l~d@1=mF(tYI4aQgb2MsI0%ej@3h=sWH{8Gg&=4SuisJ$4vVY9B7zMBArXZR#b?Am~ZD%9r|}X=I(Ka zQF{oLugrcK!huiI81hy=Qr6fGdRMI9396@Dja1(Lrpp;cWknq$13ofv&znR#I!WvuL1L+ z#}rwC1geHp>;#^~{Jula(Xo<*k`7k}bIJhIdRsNSpa2An6N033we-_s5*emyX9Xm( zh2VMbae644aXFpS(h$n-9 zmGBfXtwPwu{t5(1P>?3R^b^Y1G3$WV@jSyREA$~SZ%KfGLMKky#UxAz2?Lo*_IceB z@YW>vn+$f@=sCcfZjxKV)+Q2!mOAN!ESH-Z#)FsK*UtH52{;p|DbdMOljcSqX!O%0 zIfT72XU*ZW=J&QhFiWFL4WzX`Ss2pKe5@+wJyMVy=SCr^%cB`+%vSC>!kRF(p6Avk zNs^=O=M5fpz%WlQud)rpu7jbKnFG!()i6-R z2S%ZB^d0ZUV0@)y1WQ$OoRjxUH7(D6#hhDxBT>^736C<0InYf=mnkGB5XICxlYWPU zEjA>qN1Dt4t1S#?iW7yg0^M2S6#&6T_**uqvRrx}V~&LB<1K#uapHfdK&VG1)Y=Rv z>kXV@Tc_S-0K{ft1T}%Qh@ zEBTi(Oz0}tEu0Kb1Dc($Go}y*n zSG`xL#48BmKIemAIb*!5KFGyJB3IQqadsGAocUV@0f^ zKUw^GGRI!ri)3sq>%Mljc>-WWcR%GKw96DINCqi~()Br)o{R5p(68A1IZ?q7M?in4 z9Z-}&p#TX@)d+m=LO7jZ>vV>t-fLQ-pKt3e20v%~U*dRUNcEah#0n6|jLgns`K0_G z)BAsi{51VFdHnz5{tx%A{U6}|N2|*GdUKKxQbd3~g#u5*L&ExRQwuC=TCGgT zyHNpy1zR1@&(F`#`aIw7b#!!ebaYwI&(F`#{#)}1Vt~;M!gBw^`hVE}%ln527vlV1 zgZhi%_&+I;q8C(uFJE$9`WKf~USU}ZoAV!lZ|3{p6u$urN8U?J{~{1Zo#pwguigvr zUnkr@Q%;)K^5dZN)+;ejv|)P(={^q_Rym^$4o6(|sAt`)-+iwT6NGcV40C8y%Vv8n ze6N*m1mi?U8lc@u)W)cX+=BnSt!y`EQW0zvD&7{;Hi(8wxJ_`;p?(Q^{%_A8lk-yO zL#2jo{AMx{Lz4$tS)qM~x1r<139c;h9V1(!LPOw040Z!Y^=X56i0nG03tO|JbTLln z{~1T>V%HhSO@8J%cuRob$n_kVQ?r9D<Mmy$2t%G(V|$k;mR)cWMRbt- z@4DW+2EpNw=hq=~lHG2GmW4xjC>apdbuPkLSizX~%0gi&uN8*L3t_HflPN~?DrB+c zq6vJE+BQDh;l~}IQwwaFlGP#o0>b?hAf`K!41t0&0>1Ok$tJf;+oSkF03TGDc*jr~ z_4whQT0;Bjqc(~VgY7`tsF^%FwT!OUm`g3aPIT_zWDlHaq=gAh3Vhnek$7c*ST#u^ z)e$ruPVkAAoC{u5^3o|1N%M7DjEP1T0Y;xD8c45;h5cVQjX3CJkT3Fu7Q#8BeJSs5SQ{)n>B{GIb$u;Em%(mIxT<2Qj{0YRBn% z2DeE2U}!@Ty;S9M!Jsw-m~hT#%rYZHKilwd;e(yE91l7PieVODIDVm;HnJck2`3F= z!+QXv`@6&Ud9qm;wI`D<@g@vgOLEd=J(zi{Y!J}2_&9l)5HLjUsI!g4;;+k%M9hXVtYdFbpr%=v^<4-k)I4maQ{NbMzj8GGpU7XQn9aK*-F;u|&1uFEb%y=n9(Q#hVx{Kr{z8 zYZFpuhW&T%l~^a*$wnx~2>rIz`@HkheCl!R`EobWMo=RU0y&y=@bapx+q2ch%%?i) z*J<0j>X;6Bs$du!iH?>pR#-=^^@+ve-eG19EY%?c21ZE0+f^9s;du|9?p|6RxL=7d zuyVsmzY2gEt3=EkfuT%JR=fAN^gc(74*xyM=`Vu%{XVb_1XLL*ngse-4?*qEzD>S@ znVd-~^j09DfgyBSPV^BGH;@u@wZb6DtkWRO(Wv;){r&bsrwjddOE;&{CBbR+tpnKr zFe4UAmqd!mdsz$Opuo+_EN3GsOb*lRG8&xKD4FR%f?zwI93JiK;`&x1sYF=9T=hcN z=?5+C4P{yb1!f6`-2-(Eqp;Mj4HOBK23CMo_rxdlH(KIXm6A7 z0QDq`f@aGw(EGC{J1y|EI=xb{#Y_3>oyRgx9<%FvC7R{yfmCD$_TMlAKU30NXD7_) zmeeT+pI5X7WqoJ#BEW9mrkWc{?R7#BkeDlESPUtGu4}03@ z&qBXz?xr9CMXj9TbOD_n38C{cktpDlK5a+?-1GWR=d4v0JI6cm=)If)(z8H7>qH-= z@qMLFs+ykUR5xTOBb(uCD|H5PTY3vWOYGO5+ynHC;RJCAhuC8Fr3lpmccQn$-WV$c zr|fXQQU`FzKu8b-G1xnRXox`o@bUof5)Q8!h3`g}2q3FesD+F25~6fNEcNrtL>O=G z&!)Qlx;dt<8D`+dH(-&AToVsqXted0%PPkBXT^@#^VYORu}%rTuPP-3(|z zYk)G8Gg;u|ENm%7u~F8oF3$UK%V#A}(~LIZl3uGJoHuCuMEKr8sbXEA3@|z)vRT58I z3vTmb92>l8m0wb5l8;HYkd7}6s5B53JOu=iAXrXGHF>7j+a#=)H8c#E@mbZK2|Hz_ zgl;yjCXTTJhlJj<(-BF+Q^@w`Gczj(kBzhR*Fng@GaSRwNRIn)I&3Kf=bUs;l-cm* z?Cs;qO<c z{xWil2m=OYMp+iF)DkL4EIJG_N?)f=>JBr^we}?pocP*-POWcA^LiYOvQ$vXkWLbg zR?mpm55j%VjAav#Ep*Ue7&~&ob1^ZO)(^3j&?z`g-&iy^iN#$nC1O9nsY3xuE3%^F z=%`Iph2JPi46LO-e9d1O3P^#o$?z6z?K=K(+B|oGa!Xv6sCvG1R-dysB zm&j0FkIEy02PCdV>gUU|T)s}<9T1Ki=;48D*Hu*D?5i>ffYf=#YXkz*NIifJevWw1 zLW_wOy>qjLGajhdmGN7zu;|q_I!I>9Bt*!x>;g$mWo(MLj3HHW21Y&T!13`u zo6iV*-TVsFq9>$@J7G|&pI||BroDj+H9HaX;ua1Q%S;$UraxUYGiGvl6) zUm`gE2fuOwWX1(JTyw z)h-m%MwvA|k`ctqj5>sIt}ljHy{ZPrC8S6BGhBAK!V55oAZccCU$O_ z4%u7LI=)!5G3ZcWl*lCtm5$lT$IqbW7~;`_ZJW8c zb%1#T*mO@3KnBNw$dH~F;{j>YFas_SnXbS*U>gwjJ7iXZHUiuk1|IwPQ=(6_dvI9g zDq@zzR!`i_F;P(%vVNLoG^(`*B2ux4jY{n)pLK=_>1d*f^SI;@P*2%fcWG-#Mi7j8 zH~dAn&Yhg+R}PyCjNg|c+%xUqK+KQQgoXfzQ%j<{xwq&RSmlt9b1E`Z6N(OcjnXHi z>)Z%#IB1=jOPCXbZtQV9{!9t&BQ-9Oj(fgc4V=hA!1WBoYu!ho3oNM<_+ygV<#>jFKDW_vl+>t)|>9UcDSPv+=?u z2WS$8La0NT69~YD(y_DY#-9g z+ddUoPCr<0B`y$iFQR_RGdNhReQTp=&Vt*74UkRhd}oYN4W7(0C6+sgj>e zWWupC88VvoAyPzTE@Fs>-(W{+M{N01EDu)Q-c58hEP;%FuH|QrjE0dBS(gJdI#430 zeZo-mv_^gk6P@Da-CDTTPe)KkS{cM9Up zvLHAkZJ+@mfvk)cCgnf|V<1>P>I}fnYDcFX46dcl1cK&Vb7;+esbw(Jm7>I6mL!Lo zmuz!P=PFNJ_3l*}IEJ-b*XIBGg*pye_GC;R`{nqeJI+Pl6~ZoaRfG{1XjXoU9pTfTn0+x}?C z_H_peQMK;esji#r$mkB`S9o53+5GhrKd37JTd(4G69s@!PlBVm@jr7d#y=e2r*8K5 z#*VOb)m1$n$rLXVt~N1CwZT=lzFf$CGYC&x-@`}1dqXwU`+WU!9zPy@#6^$7ngjcfZ#j4H zo;?LraLr=DtX6i2r7jlWLt(J5_H;hYMd_4D^Vo(GJE_qvXY3FK%I45`k zsv6y($Oo{YO_t)qVQoHCI*w+eFBi=yH*c&ebJG7A z_+1{%FD!MdCT)PsDqrXFLFM!nryc?M$9m-!N-$lnbu%{%(3j zV8{Ci4^Q#^Ii4PqB)5M(r0+C3ye^2+nzN!}Gv!du9NmsZe36S&Llqv;8Y!vNAan#E zBj=TjVTa)VZMe?3P{d?;e`oIfU-4`}F9ax<;(Z++53tN`aP-a-9%XyM^`vOjeC{@b z(PoVqQ+{=VqbPQJB99I>zf)TguXNIE-&HI~fb@)X$gV>#MN9*XQ5Cwh+rf)S!~q=g^s ziR?c=&5n=4bH4~4UfnEMZ);e=T!28c*c7`Z`RgelL9lw3D~7>UFz{hil7qJ0Y3}@& zV)zMrINg1z00(9Jz8g?p+cWz{A)!0swct|82cCKQRc4_jr8how)%(bl>Al zcay1$QCOE9gYrm2-e@7Z+lGilZ*_EOtCF>J1dC`bPLI}ajENc=gmaLum{;^ltTk!C zyCWBGO!=k8N01ePicyHk0AhoxTBf(mEZ$w%cSc%(jmitxZEzt(f=x%<+I0kFc*QZ# z#aYBiagj5sUh|8zsjC!ukj*iw6(f=+f$@xEnNSI+%8iEFMj}yIR1HirR?&IN&4YZ{ z8Ci`^w4x*I>7Hj6_T^iW1$Fa5jB{bs@qhi3eZ$+m6EilgV;lr&jN$uUPj8|7DI@ zx>geP!45~2N~)o+A~8#b7ydC}$m8mCm7HFT)+b2>?R6^YhX21zDl*R&3hqq5J-vs* zz=US+*Wbppd`;@IVFo@l)hII{rW{#U&^iifB?U(qyv>1`#r%PBLvHcU-$Hovs3K1$4q3SS#|G)nc z4^8jcv)9)sp3ctOSFDz?kz^m82`>1~y>2berX2FUy zPgYod5cxWW#Ger!MMy}-7-#jo|abkwl(9dZ`>Tq$Q>} ziITxD<~))8$Sve`sKCxXIcD;{QHSjP3PNOnRFlC7yHcc1s;Sos0bLmm1PG5K#z(uy zFG6vEEom7K4vU`xK3Fk@q3$wae3%~0!4B3wZqcWi9hao=V1TN4=|>_RFfg^vLK_O0 z#I+$vTYZR7=^?`aqPX8@5E*_-!<*X)jfNOMw+kp56D~L6M!HC%4k;jFgozP654||bUS{aD2ND@^>2WzQGTGP$mfD0`ek+97>;@cI}H>tMbN3yYSobfsg z3<3Ik^_g5mmez^$DD4=&%w zd*EzjeB&>92Mfw9)1dr8>E(bsWA7le)IAr;j_5f>c7`05m}xAE z$UWa|8mGDk%w<>U6Ca*bL$eCH*bSlA}F{R{+FT0 zDh(cmxsb#vhEkcY$=EjSrpokfwe!FmHAz!Lv~A(36yqJ9_`Tc@kk57{gF9|JGn}l* zDn%@NaHCc4c@Qd8%Q@>iieIM#8vh7oi3Aw$rI!oJifLv2RH)eJt~~u_htmqqM!q`i z0h0&4^XcYx^YZXLy$tVVE5NvMONHk4CV-~x_hJ$d$-x4|q$z>()CUgNy@1briV7qH z6;`S`Lo#0mxxM1N=&ZrqL@1t#=->s-v~$64C;u>Y1IS9}Hb;&j)M6Lc;P^EMjIghr zK<^PF!T|%j0v4CcL-Biu5HSiUhYJFLE<}~Q=64^R5N0F#t>oNm+maOWMs$-1s~T2J z9w1#pV&kIagO>6yrAmuTyCz70v>BiLdcDxM|8^8H5qck=3D=Heo9{ljVE`(CM<$J* zH|GtROQgn@6-N!e(AS+99Xgw9jF_QN;-#$ANM%}pGb{>a)J29?LI4Om`@}jADP92> zKK$fBe={_Fo|e*N9p^fZ2`Z7Hp`c>+f*!MK+z(ATvnWOk+gPj--o|M$hO{UN^b5Oc zl6V+MhEZz;a|j9el?r6!IdX2hQa*i_wXSY5`rm(z>Gnq_f~R|r&T`)1Q|{)a?4p+_ za7jarPK^=y3|o>n&K%3)xMXzCZ$!xQAM1Xdrkp zf;Ig4TucnZ#~mg=#pA;a5weqwbJk%v&&L$ztWh6hh-3j=1+>U85~fB8YeI2}&$yK- za%w#PmDC4UgVIzT0%}wVTWGdY;AN}kLk1KX1VE{99P{H&gi*~4W!Ys4mNsN|PlZgk zMnG^u_Rkd5fs^Sm0ek)NX`Qn@r^sYQF_eoJ-|fs(O#FOmrS{M|r8x3aGGTD%L7>Ws zb^{+A5HQa^o!Z*jQ+eP4=#MN|5LumHt_%>6i6800LPMiYdfBSpzHT3$J~WeayO08Z zm|pvPs44H)&>p)&k^8*$-@ju-T`0jIfFQ`F`BRT~bF=h6N)&X@L7R1j#7|wC6B22r zwEDT;(5DwSP8e>OW+@FaQ)yYM+L>Bj^xmyxW2dTF#;$VL>dY}BjRRyd0a&ogkii#B ztc?qO0(0ClHR9~@CocSM(Ponq99W53Bl(_w{p;c3@%oK?EpaAyIq6m(|y05A=P@7iDq#Xxtl=!z?-C$!%GUnkA4k zKuKEnzc+zZbwGMsDv_22Z+59=*gi1XRZ?tktwA=PU2otiGjCbS4kJv^L6L@ES-OvC zQ8S`#l3rww&x63mQWJn+Vwy@}MdC{lt4d2TWCEK{B~_rQhr02ZAZ?eDdl7a<<{Pa%Q-u`o!w4cl1>7LXy3Fk{d@6%Ad^V`19~4{;B*K<8|stD4+*@nu#{Tpg%hNdy3- zH6YCPXP=j%>_!NjucO@7zk?p`vi=@G{Arc&3=3u~j6 zD0>pw0hyt(oeO@sg2orDL|C@52dMiiM;VJx?;FUN)7Xr~pHg)(vm?#sz85J77M&V& zz^XBwOR${Maj-?mSx>-Bhn8Jc%f+`T@x4Zroq-xGEkt4rjHwOxE~L2@JGgJx*SCw< z8UIh>ryMx;+laJwGWd5*a*h@8dXLbCpKpr&j3hsSp@TzDD2=)0MM3`z()oV=cb1bk zq#BVte9nF~4*@%eMqMf1>!QFz@(%~M#dvxEC_{{alYrNzlf%|fzGeDu@bzB?7{a#y zRStZt{Z5~eEd$)-uD@38hNB1eDD`W=^sY{t$go}+5!|7(D)2;&!HGBdvN8*-ySaIc^vk9tZ3%xMCO1lRhL-%$1 z1N%Ro(m}^0tn~hd5Id-ol6wwQMS%|d?O&;%n2#w>awqmmCs^zknQ#T6CoGG{l3~X) zeT1xE<%Qh-HT&FuaHM^d)kxZw0u1V&bEr~m;Q)Zw6&_}tZ%UZ#?DC95iUuVJfJ|af zu`|UQd>BAVpz@5s*(+8oVh>7XV_oS<&J6n4o*F#5Jq9$h_D;wLnbg_+4PlUVDNNhe ztKg;#8vUn(Gv|dGvs1o1w5VcHGXl|Ghu8E@uJAj2)iL~~Z9TYa{P?DD#{kYrp8(a&tC|(D z!KR`|YtJ*DdKU~SkL%A!xsu=8$d9rxKurQG?c{Of`9aq4eRjg1f4@yg`83eNj>19C z_f-Z(kchP-+3njE+B&!E=Zw6SzLVyFip!x!A|w!e=geWmfFYR}24bkhFwYw2v%1-z z1!^CZZK-q+ni^9%{2NT#+-I|m6ks|@Br)_h4$kn$1F6Zzv@;_)Xa+$$wjiWE0z=m< zvS)3Og{W654PeDK*lJ)OuvCE!{HhP$lLDoKb1Ax9iR zryai#ZyXEe`1>E(@~z5d(7`S9lTGueP<+q~`t6uz+jM|_`M_4>nH_DygB5%D_laJb zwfX6Rj?u*P%>x6MjFzN09?X6;0;cU5B!`CwiY%3^2*V?tp3u*~^lMRII=@Khi$FF+UFXv8~(#2K}O&VO3%<0u4nP zYgI>0UW?vlW*(^Dh+JO&{M@Xuf#l}BJ(*&Ke}1>a6&Ucud`_2VZa0R{TqFEBz~zJdY;U4R5pME+>dXkthP;%d#{1r zK*m0fF6a1tRmgef4;-($e@4j{2WLcI=4=lCm$D=4`TN-9K$?@^G5aV6y2$9^Vce%cU5u00N zEb)w$cRGQLRz)?|l&}=+=JsH>MqQvL`O7;w04K-Y6&w zOshP@>kP_jJ@ypTr;WUhFjLQ`EF4n&*d0>J{i}>RH80Z}f!CtZ8^KfsSCs@t!=)h5 zFB*V50L48$oM8lZ&v|tL%YytC6G{^wODxRwE1IhmKlr2_d<7&C1IEa5$T;ZUr4>j26gP+4Np+Gt27UdoN}QRo#H}!ldH- zI88|W+vuEq%#bK4MJ~+Tva7Of)L$Jw9fmXOdLyobFFzI*g>q&*IX;vzHxQBaoz|2L z`W$8Sgh-i%0Zbl^mmYywF-HVruYR9rOsCd62+7~aiGcj_MGy#5PKB38oQ}_N8^Brk z&O`*^@>PRquUF-8x+EH01cYpWd(fsZg!3dY z1s+~r(eL;gFLMpZFlWKI$5F;DSs09jkLjMd$N*XsMPa6iXq6fdNFm~x)-4_9?%MXq z(1BT(OGiDEVAQ)Fpg&u`9be+9*o#ELB!dLCM{&K6x03lcbI!gV%VndSO?hGU%lmCw z z#8cEHPLW)=p5oSLSn&$hCPP*Wt&PPx!j0Qr0WIZo@5P7`<8xNl^$3xWHQ#xr(^C;LO z>ZXp+$-*I~W>Gs;dsS4;4Jf2ZM2CS%S4-dx;KUHX)Rdk@dN{M+7H=_8j?&*(;|NdU z;9h;aC>tbJg9IgVN-Je!Gb(ZD__EWJo2GRwsiNHU))llu3=eCp{|NEgh3D&s(`}`` z99Hx6;Bp`I#_sFdNy5HQ&WMYRV?jWCsN?Q%!=Wf4TP)i*(g)@q6N@q$Zs7S%PO;vg z4wwuOZ;t1qi`G<^Sq+6YS`1~p9*JTh9WE7a5>AYSF*0=|42HIX zKv*W~9Ee*CGda0&6yl@yB5b&e^Bp-od>Z)l?0sMB*Z`>c2N>nCp?7ug^F6UkxRpNQxY{t?ENR(eaA{p`1R#U#5c&QAn8%P}75!$Cc z4OHicm$~N0M~bmWE5zLa>_U0{S-R$e7aE`wz@|D+f~%9?y`n01+X0c(#6(bg2hrpl zKJk8~Sc;;m*;XR~^A|itF_st+sGhgzroY15YAivOrd=HumE(Zu=kQgEQ8sWHqC-bp zYOPa{WXZrfBC9#IF_&p@(dF6laDU5KY^?h@T>wcyw!c1>o*%e|1k9-CR539pnEnM; z7JTQ=KdLKhxdW9=G@x4n&_a1weRrb!Jfg-@f#A&4di%gaA@LiFz3&PKp(H(FrrECz zQ*cwz{Vj8g)cd{YTuqE~=FVbFIs#k{8z~FS$W?9^F;I*1z<&DOd%YXrJ@D@8dNC5& zT?%p;Dss@Qx>RJaT$SxM6*@KfvNMd+79`mmH|Vuqcx7AWC+<~QS1*Y)2`Al0EqLLM zW$m>dM?CKmQPrz0>eH1XL{mN15J^FVGc3ZLLM!he$Ei???F+1B7P@Os(-H7+lEH= zRg&YMqie^?IlrfwXhiC(Sai@)CNSY!DI1RS#0SMi{5In!UEcSubmM&%i5mZi{|n*^yNuK{yUVcQ<%I zy{s+f#5&cN8C$9{Ua(PSWhgdlEjh#CUGtofv6oz}*;XZH1kDUE!~mY3I(hc-_=}H% zq{q5-!yG5XX>$5T0gvi(KvgZ|}Ejz>b;A0uJ=pBRQx6!e@h_|oo{UZKiN z^6!md{Enh@9Vj}U_PKuUWGOthmA)sF?Bv06*Y9LZ_ve-o3-9$v`R&)e*5-PvSv;#N z2j%ze;lSr3z{jE1L^}JkL=tx)fKfy7RpODDDv@Cra!`Dre9zAVB1F*zz_sl;W34w#BD|tUeL-dvVW20y|dsS?h)8t1=DOE6c@e;bs0L zd3`^8H`JP(AhaBTn7NAucfqREZifxQ(pO9C8xSGcVmxQe9ASLy!o!l~Oh%fVFEVw@ zg+kV)7cB4bZ=<1+5lGn}2_ebO(5{3Ak6c4(+k@u~5k%AzC4nQ1;|8?d#Zc!prSh6> zW?2fUiELrpA(Ww`Oays69|S))Qmy;AFt@9mra9R!Hw$pIz84bpq95y&pD{B*_;_4AP(+A=JXMZek!`8nmCqk3; z`si)eJ>Hn{ce5|_GV0*?=u22C z8MF?*dF^HIA7f8nTx^5h2e<-?} zxreMkBw9+B;hC?0L_U$3^j1SW4ptpF}hK{`&zjN+-X%{GGc75$V$JUyy(^ z1>Xfp>Stm0aa1uP4lqm9qMyMKrWcZb8Q}oL$b5{H;`ISfdd5-J#VmmV@z`F2&%$|5 zbN0&=G2iU=F@vUnl;k5$qqVH1&{lw|S5oCAL>hu8<<#X7fc|N)fwA;_PRnjl@@L80 zXCFK9bFbjl?dMKzWEXY69z&nBgh%F>2tacr0q8)eM*PmZN5{?MvjQNELIV>b_!(&e zV(_6R-&=_P2EMFzRp`CV+;8Z9 zew&-(Zx;Ikq)nX)#Unexr!KGpE96P{{-ybOR>lUzkx&525jDr#fc7IMa#!!29=^I1 zM!nu%{l~6{$nC;FWL5!2TPg1k5RV1mA`FkJB%I3w-rIg^5vZ?n8w$8mLc!VMK8F3p zsBW~=3<|99tralJl)Od}J#&-|0K2ZhEa21!DRuM>3!iD;J5g5#b*l-W$@A@nNep$#C$W(kHHy;+Gsn z`R-NSe3&&&uv^y*w_laibzg6hdxziA(r`#1}lFNe%^bHSSQ zAf8+xq~*a1LWSW#pX-$*0A77+nw-#&dLo9BMhX~3ZRuefyL8kn-Me)K7g=CZ#J-m; zVD2&i$v-(kZUi1+hGph_9ZCG%DNVnc#9+2u7;KVvJTc0C6C=X)O!m>F{Bm=OQQVS9 zJe3SxE8$^ASU^d~Zsz)6JrCv}b$4Ypdj6*jHV96K%UtGvMB{}(bqH0F5Ex=a8P3W$TXWIq94 zbd!-wkA_YB& zXB#v6SrHs$Te5V9FKl`(oEjfyVdI9rpB;dc8#w#-?LxS5RqyuUxtseJKcYv8-lCbB ztN^+UJD;Aj24*klQjeY0kyqVex>}I8L(~pfRY)-NZd$PpvEpE2gu*3O;XTZ321sIH zm?<=fFc~*6R|%P6h1j#(ibX@(5fvX_Sp0-xlu(-F35VcNN;^(P0R#;J-aQgpH44MR z1B_4&ZwVt{rJDoGJo|)H(=Rt<-fOUen8X*az;1ImQI;>3R&5@V)aNLY;MTpmw87nJ zi`?U0jq;AJblzX>Nl0cjf|ylRBUO~kwu$Ee%CVT;@KG^_gxZi~>NlU`Xk;(*re`73 z5h~kKM lZWg6cnaj1z8mM`X;X^Z$u7~XwSpt*+Ihy!dKbY}A_yZv-+aTpKlZ^>A zfI;DtidaMftCFz*#sYdb6*Dt4)`=nH-l}{%!DGepCbl7=J3h-=ZYrzf&inY4#^ zsm@?DV!_K-TCh1L0g3id!9$kGh2qos$C_Ko9hD+n`gR;Wc~9|P3gW;g?{E+z0KOIm z_Q3Mnj*|H{K_vkR8u@-G=2rkBkb|(|$dw^VB5$&=bt)9$tKouvYh?LEgZX#hn)xs- zrZt3+jy*M><6I6`4z6f{A-3Go0Z?~Xpr{f&Wdu3piE?k9bA5~MGdjJs`0?TJ<1^Fe z=Uf`zznl8-KOc_=5jeFNv}7e3DOIW>A|*jB5?N@2TP?Art*aEZDQQK29Y1Zz>8dIU zDej?E!>Y-m;Mw}C?6&0|9p4Vk+=ZWYRG6tdwWQ?0+dDNZo42S###M{6c1z;P@;|a1 zNJu1EObI$SN2Z#qmR!c!ktTAu8f|@gq{dehM^saL)=LF^2N{FIBKnc2QIy`OCmHyC ze%9ZB<(#6_8`fM9-#rbH%r_tbsHPfWh#-|HZhbX~5>VwAyy3Whs8N6;);zJ;{86i^&-2x{?}7Yo zH>JyC=XR^hwv0upex_NK3-@5~r#34j*6Qgd&S1GtT}v~Vz95GrAXAtiA)wJrvdMG( zf}S_b5veTL*?>7mPj#~0=`^&ll2=ly{wed%|rqAGqfq0ZZXsd z4Mqr^B!SK`?oPWfo8EEGX|USsZet8pMs>hnzhG^ljw9%L1vWN>m++>?)a^wO>>BG$ zE|zsu-(pWMFO-5yQRL#WSB#Nn%Efy&Ge@MfGtBb@XO~6n_)jzDd~qNhOeS}f8<}K% z`D1T6NIh|ZwTd{S!oPIAHQ_X}L8`_vh*BUl7_lg*YjnGGO|}q?64uSA5awb!z0L0+ zt?Jr|dNb?FW@()?^ZF{_cvb>Wa*-epf+w2*X_#;}-qcdacqvsy)n=wMQo!xdy2~%> zRU~)8W=s)~KOp^#QL-X*>N}1H493P1o*ByLM{G23!qvpDYnAoB-W1!@JpYTt`CD7f z3XlY(OauhxDq`FJO%@s5RI3NI)3JCPy7EEVkTa0U!D&*yL0EXAt*r(>d$G{K0er#{ z8OihOnk(EH6Y|)|FcmN;A6D_~Iz)H_r(Fh%U~;UkLV{j^HBl`#z~UJ(X**s~o46(r z3E1sMxC8>q9Ylh+3LP}DthQwW_;PD)2W#6)8yNW@>(G8C;|YC)K@e^FeP%K zO}s);aL;L<_ilzGNphId3eC$Tm-m7S` zg?EgN61O%oXz)PU8l};~Sxy-BXC?!a2i!i*dXgUGD&u2EU>wgI4uF98avR+vBj~L< zN1IX~H|MUFZGzO>kFwMb-<^9DxpOL4;*`m-Zk992jDez;1ev1tvg!}zPE|@Q+LVV| zWh6mdLC+?QIk#*SoZFW7W|E$*ajJawbNk=POy5F)_Q1}pDvGMlLf9{hzQF@nrd2u$ z`1_q>@Z|#RvB2{bpAmtqZiDKQSbiZcfE1kY^Uh=DK{7K*9CXuFL7tVDsN&hv3b~F2 z2TlB5ob>bjoi)I;BZ&H{d^hk^+P`Y-{GFqDPI%M5{WbfAd7 zxNM0))}c&;QcBS5{JMfVOtQdUJp6_CeVrE+CZe)3YiS~6ROBK2Fkvw#UG4Od zTaqkE4TfeUwg!aJLrYw+mFz6Z(Ui=F-R#(4)#j5hW8@(g2+XBq3+J^THtpy{M4+lV zYhrQTBVOhTpf7Xgy-~Leg$YfE*kq~#hkG7MNg~HLiW~QDz~)Q%`=!qzp>g^*eSF;e z{-35VV!`o@BO7Hyv|E^n1Z5@^5eR{E-PuA*%lv~?egZ^^+fPHm51`7Kd?=>)4fVVf2Ke zrkx!ASYnZ~tfViD(6?KrWMt^P-ASko=N@dhF_u~cbRkITL4jdBvmqJcJ$31b$7Oz! zJbDS=@m|I`k!uQLrhI*O+X*|z=+K1epcP2$c`!|K+?RZ;Y+if4K4`z91PM7y>DoqMOZ#Rbqjy@%VYx zGN(k;O&X=DiW*f?9)zY9dfX9WAxF92C_75nfAx=+r>|Ov8UBvMo%%fh8;#+Ahsy&> zw7{QH@PR(H%+{1EoBXPpAayWO>8V-CLHkM%<0J9wn@k|K=-`STedYs%Ja0MUpF`jC z9~XYd3^uK0R8umc$NGQZs!FXZhDN0gzr|HcLTV}9;1{haxym&#r>NB5F z$YADh2u3{mv^jwhF-u`bJntheb?L(j(SwEg>@P=exA?mU z8Tb^#Xvb*J8Uz^*odE4$YfSbyV4rY=fQj{<12W`G?Q16XPy*z0x?I8Nq4?=R@nePQ z5Iy%4K@RWkzL7)gDbxQs{^Srpk*=qaN57(}42UKI(CaHv$a`^<;u2n#k~qBC`36ezPiRTFjSO4#T6u7_Rw^R49i<*<{tQKR47*QEln@;US_ z%j+vj>#x>CT3Yv{Av+jyntVP#FP4u-ubp@l@)(r#VR?$H#A?00aSkw|P;!y*PQG_P zze}a0FF4$)4W?ydn5FwZrRz5w)YW~6=^sH(C_@J%hKfHYYoP9k%*yTHery4iB|#1{4+zrHaM>QNsg@0Sg_r!d~5dnV(&|nmT!f{If+#R2sJH^x?b54JtwhZl4oy& zlkGu4g{4AJVd0HrkEclAA?^1!Q$F0NK%eS)sJ<)5yN>&$P6I%s6hqW*TE?R{gw`#I ztKN(iB9mx{yR!qcuHjCWe)r*V0|ZvUh-=;3WdCi&K9$xmiZ zoBc!#sHRZ=26S|J?B!7Svq$r@&o`|7wBF*Vv0jz7TUw2cr7USgP+M%awP@J1Z5wEk zjp1}D<)mt6r0qSJ`8r>TuKDlu#YdSD=^&Cq;^HzinX|M{K+hyB@J&ovZ(}_t0Zb6hTk)m%n830ze?nZ0C%$P9c7Y`v4=+q${(jN# zuq2>zfqnZQzNn|cYc0Eei^-hs^CA8}$Xo#gRtg{a%A2gM3*s})#&mzG3eHUXi$#6_b#P-;5Bu{!; z>mo+xXoaB1E0Y0ZYv%f>uy37bIJTO_Xn@*;XK8`Znjm4N^P1>kX=Y<@nh8c1WS(d0 zI+)cOkgy;K0*+G)%L(N{AvDLN`}+_)`G&uOlud-%!-=Ri_tYItm3PY@Iq%Od)*00H z5Sxu|cXRwqR?4W0Fd0aqSb5~!?`w>Ku%37<;*GDKA2dsZBImX81PPJ^a6v1TXKJwg zgp84yJE}qaAVp<#-$M-(_eY+V2G+E_e^z&U%`=r^RbD=LW$pFmYr~AS-a?H|$K0Lg zxHRvYEu=h&m5Ir;DdLK1aZ_E)k4(vg3=^c08$h_3@hvVk3df9rYnfx2DrU!&xgKt; z#{ZM;=UR&ze-QeghMxU;Q24&HOrbJm0u8cFmqZFog=Qxbpp1o6BvgUoyA&D+oC>P@ z9+>z}Vag(2;3&6_75uqjC`ZY0_t!t8T6w7-&-NZ)PUE=(PoM)ZM?patBLaOQhLEL0@SO>5f+SymV#N7% zjP}2bslThvSkAEps_C`ICIH3ko!Nm-Hg9_oB~&`DBg-z^M7jPykVDD<0{%Wx4I8VR@n6@ zJIekVwgw*-PC~?Q=a^xNDjml_Qb)KrSdxYxZGk8TFVOVEN3X);u`{5`$bFgQa ztfp0}RTwdnhXF_w8^mMI?ygiwD(6ojZbqaG@(#PH1vQ&>cC+T@JwOiSs#SM)ph8_{bo&uV3CRU(S8sZl~SD}1jmmbGM6 zW73(M%lgx{Z#(qNn3LGuk#3=ZyKfJonPD!!xXgOY2HQNa%6(HnR3)RldI3VyjQ5!` zA-CI@9W2H4!%4+%d^{uwZZKVGx1--H4p7|@P`1bjVv)YR+6YKOzcoI6*=G0O(+K~5 z<5qu<;z$pw6m&(7TkU7$X(3mx? zFe;+StZR_dNRm(hfM-rhHUBVt#x&nS9pbu|9ZzPc7I+|(`HUXKQBp<;lF$dkvd4Z+ zQS|1yjh`y~h709#nCLO()#U5&T=MQlCV6E6C&|bG&=Nu8t?S_{QDm3P~iDJ(t;OI0vUF9{k`LGHXpr?lv-ZW(%w3g`FRx3VUs zodNPzmKXSrkXHSRkn{^74pBYDhyeCeyR4Gh^wGvPD-Xgw4Oua zz@l0aPB~h@d9^EG{Ahq(0kn9=K=CSw89pxRlfKwC+vKCj8t1oE_#z>M_8935r7^=?Bih5{GNvSD-4-F1o(~S&+z6OS^5m+3q5{Zy&5g|gK7G(5T z`YFbDN|O2}>0}dpn!hBVuOA!W+_7sW6Y<1jq2Y zj1>y>eNF@reG{*D9;7ZXJTK&&fwO;;;;F1C{t^J>`*r2CRP6d*N@3axcp)>$P%vZ5<&M z!s@gu9$@5c@>?CXxNHrmubS6SyZH{mZ|n5#%avFbD15x#Csm?b*b(u{-+7g!^l>Zm z{kB_a%QEsziocfhkb=F^yA1I;;syNuwNh(23f(1CU12UW2+(BFSEFB1d?V8K)+2&86UqAv|G zXt?s9r``4h?w0c z%e*kd&~2Q1==MD4v8~gNdr+a7HUprqUotMhFBK&S9ws z9u2kyKR~gwL{3kdF86D?9mYFOZm9i6B%2T~`N+glu^yJ((kKCl&oGja0>bjnVTPNjZDNY}d+C14CRQPXC>bUyp`U+WLb2h*8>9f%imJ(96hj~n z-}*{WIxvO+=syG_)Y3tr%ZGJaNe9V?+F#(O=%jOl`qg4bgHtcBYi z?e?YNpjjJ*9YF&7RTY@%((Jb>bfNM63GX!KAY9|A(s#iEDliMAfuhQ(iV8_mBoP^@ z2)>9LmI@egJmw|P2rjC{M@ftC<=tYp{$!oWz8hMn)`F_?<3JF{rk^c_Ppe5IpeKkn zu8*ck42`p}gU+UFcO?TRhB15F@X#qlKa<3Aa&Rywfy{JhZOj1fJaq$@&o~@{k{ckb zxO?GV-(PKxWj#vu?YO^*)rrCGKIMV}&OAM!W;z&uE*7P3ZuIp45sMF<7kjP}= z;PvGfL37aF!b}y_XFw6mN*MrR5l<_Uo@h=tmjDD03SGezCHxLCS;*Res5Ij(!2#F_ znS_+qE*n!eDPB68cCOa5c@44vCLOOj@rjHJO|Za*$%*`$V9?7<9-o{maXd~oMX%({ zWN51@8eI$lo(^lED38Ib0dB$0vwl30`Cg7}7bj)xt2 zz;x*3*sHEjiy&y)teD!46_5bT4rYMW7HM2WIJ?iNJ0QmNX-S)UO|=q zeE|D>X8R<1ybW&qEv`MFa+T^RQOzH5@|j96=n+rp#N@ymQ=|*QIbgMk!(5A z@rK0;4GfDUUW2=^l#Oswo+#Zko8Q243&VMj%;wNPY9H_CWL}Y7VCLV-gje<20EqnyT8H3b!opbPOGnqg* zZ3$^1!oM#Nqp*#q5C9TOC(&5$UC{^lnz#KuUTf!)cb!#BDUkE&k=FaFT~l;{fSuOd zHX}{0vFWJH<#1J~_?%CZetEBkaLJ0%;k6?EoKjoR{ONmrP!fy@nTZks6FAS`LG7i7 z5<%S1VH(K0%h1jp>o@q;;ARwH7kqg>opIS&EXSTvZ<4OJufuVZ}v(NaAVDKn*zG;x<219*1 zs$=hHVU5TC~MJ@ygC!lyC!TyQ?y=`MKL1JvZZ-<`j_p$noW7;@+@V+Q*^)!Pq z-c}fIBEqzU!1i_S#b>!^9?En4m+pW^Y%WF#;rA|EcZYbmZ+WYI@8yO;pZD@{K} z$`3d*bG8QjHRg?F8HY$I4N(DEVg_1_DpNC3`%+-{f?$DPB3HMqAUS$@ZLP%P+plZ@ zT+LI>G8v5XkBcdwnToM;-J^oz5D>_zH1>2$EV_Wi5W75<=0yuYN!fZ3vC}EPS|_iX zKKHgCaIW2sW*e~R?R8n3o{dW5qGeX12@F9I#yJ>vYklmiOGxfwsI*SY(;0QEO!Ke` zLZ>mywtZ$CV|t|Wv=NvX$8zFnJBcl+VGG_EXUO9Q!=HgzRko`2F?nRbrA-8849wtT zl?Ge#rN1=U=S6Z1_G6*A!Wj5v+d z7XqtH{*@Q%`-*194ljUDx`vfDo#?V z9n65SY6qQ%+SGWax3t8jR|M|sFT@FQ4q07ceA%+~Nmr0h1T@5$jml%z|SRaHArZ$X< z;OGv2Ut(Q3#6$tD4scVtJkp5;mNQ8fJE)>jyy(FwR%4nKkJBIkt&cK+8Z3St-D<*6 zNL;X^>AGF%etxT59?zlUUb9DcJ!9#0Wa_OK9_Ys^CDc? zza{j=xV){};(>N@)E$fGuk8Z9!HpEhPDteZzBU^K@2Pero!OoD;UGopu_`>yIa>%l zr!J;Y{L`bw41)2?(TiTfz8LUv)l5<0NhN7Vl{#mYCPmEeKFz&xc<9%S8GXU{>#R5m zKO)z{0+jX4Tj#X0$kqewQlv8VIE52OOd#Ud7=OY%_zV3I9lO?5 z5i7{WaJXcRvhUvZpICMiQlM|*r-p*N_cT}P*))4}rFmg>h14Rx%_6A6d0KpQ< z+?*?U@7o#qX=r&C(Kv1Sr`hKGN`eR`t0y8+m6+KvBFhx;L)Wj=YhC%|%_KNMyUj3~ zNER|0_5S{I#oq;y_1G_TmBWh^uuldWapBtj8#7Ej91Q zr|SNHDO`iIC~gTJ!jND291OvjJk3)fMO=(tbpuSz(2B#`oviUlyEKIHP)l0b6REo! zlW3qjV+4&VwVUc%98J6Y0+1 zDhXZmQ{~zvH9ZKy^jT`~?0yk{L*vb3f0F!Hc;2O#$87%w#197(b+3c{oaWDr*=Op# z1axm{_9>$K=-Q(`DELtyh+IrD*(#_vqQo%;8PHcP&Jl^pB{Vv%DEVH6W+DdWBMih0 z9^M4aD4vqvkNH*0-WYWCw&CQfAKgomC})u0)W`Qv7P_lWmL%{?69v5(N`M=;o*GVc z4g4L0E4EdZQ7>E0YICz%b^TMj`={Qd`v*t2yRq!a9HbttGxtdzh+IumkF1D9dWZ3L zL)maa7zIvUT1Q6_)c_a}(4|4OMIgv!t;*AXAE;s*Rix>$x7_ikkHh#CG6%e;%s*rD z@XF-}@O}$23ap%v(B=^J9;0E>;sOsqf*|5LjS0K7m5Z?ZDOwzY`GtbY~5c+#OluQh6gonCEfF!;FqxV?YAzb%#g)Di^qZG@3Bn1 zSo*kUX9O56fs0J}}adtH}UzP$&ey!wA_(P*r7rzLpY(%8g2}1fgXL38^`4v$F#`)wt2Kub9FN2uNYqN+;XaAWs(e z2-L<15-L+4Nt7)|uNZwgVvm-)VRyhI0$4W6f4v4IV20{35FLAHR0u}0qF@q#c7t-NvCxc{#uZYP z?p_SWDm`X z@?8X+3Je`WV-xLbS1icn6$MbLTAmpbsbYT_ll1Z9*H9;e#0i8jh^WRk5GYiNjgm42 zpy|tiXfh!k;xIsg0w#L-axv#ZiU~Y&az1h#P5PGjw|@pxPBr(;nCmhLim3o87-Q3a z(4=1bIB^<^%8NA2ji_OyshxZ-v@%rT<940_uDT&!jHo0nCdA2*1&KjtPF4UwQDIBD zeyQ3Bi~#JuQvrpM+8re19SOz&$)b#Ch6%EUUn0!af$pk?Vbl>SIN$*@lLMgwpfSGU zGNU3xyTWX-3-hQ_2#kolGHyOZV^69|@_ujzwOyt;eg`;`f#rDh;R6hisw+XjBE$~l zLJ+XIaZNoHUB(r~6ha7XjiKrDg=GAd_T@UT&WOX*5+YC-!v+Y<$i!IH50gJtQpwtb zUMN9)dfSJtJh~%7$UI^|rf~)V2%?9Zc!zsXHK5=TOd*aE$w}>;7*>ZyWrMF>YZ4+s z45-4xf0Il+(AuW;E7=_RXmDwe^)^!nC=}xfvWd8 ztzsgdr=5Y9NbtcSsYLec#J?y0t5pac>Mpse}KGF{U9(`=CN+DNTYJ8 ze$0vx75{XxS8Ztua(;CHB7OFU!XQyUUbmC|X2yv7W{`ktdlTXkC|A@cglvLFA$a|; zOd~A7ga~q94~tFHqD0z3R|JUp>)WQw|4WS_JPUAlnbdExLj)}9aQ=7b*VZKGnAx+rW8hvb0f7k|_nXg_~rW|~SLB~|3aZkR;hyh&PT1|lXJ>--8j5PNe! z!m(P4di@hd32DiSk|r1X6EKp$9fVNxg1(s-rsl7&MGs?8QgWvwq&&qu zSL&)f%rS16^ebHUrp7JoI@lKGs~Dt{uB6tvzK4mSD@#LuiifUEN6jNVy_*v*viCAteMkejcsHqmrj}Qi7XIIkZ@4CZ&>VPQTm6H0%zfS3KLP{4WkVDva0G z>S-v8ZFc7SVZCFA_-x~88qoL_w@u_>B_ zPxa_mWlgMpGG=q5R3x^hO4!KV1|ieX)tw-dGBi8?N?C7Xb=)PJF~+S?7fhDbjdV*p zg&L%85NWbAIb|?(3{sEz>HlRf5EGfnUY5CUl!eCiY*|&`?YoY#=6HqCA`YN^vFYgi z{>xv1&3bn2d>?&>jo$jN9P(D6vND?Fpv*!d?5Tr^(xos~y{geC;#>dJk{pkKyxV<6 zUQLWNcH3J3*mlZzO;c~4hM}DY6U0rawOJ$cELZ+%=+_C;~ctyWpNS>3f|Q3#|1rLTdv zTV-VpkZ_Wx!WLIWnMDOBARKtR@usoJkV+q*wX(g0% zOs=+RMKrb4Fjp;Gdg**1Yt3zqW2btuRH2huP&V6)%Q(&13ugyKF*HaS3bJAza}#Dl zmY7U@p6h^_1gB{V1B9>pIyrw9&+7jye)|)(|9|~@{Xd)iq~6N}=l^j(>Z6bLCX+3t z|7#ciyYaJM%gKo?lZP5Kl*5=fF% z8e!D-f09T>_kMa6{ai(c!jDggoe<1HC#2wjHZGZ* ziW&&_<{pU~Z4!UhS?8ZxRM zi_7P;{@?+uuL<;NV?AdFRJpi?9rzwg4~2uQc;t#4P-;WWS5kH%YX!wTRDn<=APgeO z7+ZJk|Jg$Lii!S|R6nT&M#kiGxApkx2sMU6kO;uyG2!#)G#^N3)645dhCk|oqMQ*D z2By_)A@z*U0nl^}k8EU{IPKYaqW`U%cYndnMO;T`w6GzF21UVO#q~MsqN(ln`>>iG z86{wl5=2Ze8`J^-%op(`L#T0=`oGe9ow$Ey@zKy}KlVSY@B6#++C3qjL(}~JyO+vNdO+P{Ff%I5Un-e%A^1qJ7^u{6d)TfAu|6vb%rVV0ruqbbOGy{Xy{F_Juov z=rR7=XRZQ_dHa6?`48cs?f1p+_aEF?55fmu{onj)X%G9~^931^bOHRG=f9aTKRE=5 zEGA(;&gM!%ig29x)URn85Vh#wZU^4NPOn&MkL~brQ8s@mBF6#~I-O4G$Z?Vwb=T$_ zU~?Lq7T-a~c>fA~&_}x}+|iamlMA#U1f&RYCVx7iij^7zAD89AAo{&C75X!(<@@mu zhs00>0NJ`6vnIme@qu^&R)I%2Zv*z99{swCA?)Q4tRQ{@_UvsE%L<9 zJ4>8=+{Snv{6j7|&SDi1yXvcOvD(7I(|*LR$orGb^xhkh6&O;D1f$I8v5WRN8U{jv zMr@eF!?znbVd{aEvoDZGDG@7u_=s7C7I>JIxX1lE)aUS}eUNwI#ow@}ZksKQ50r-T z62n0`CI-U|Ey4U2!0k0jzD?j~sOlM}LZs6%2w*VsHEl!5_~xglU5Jkw4DUla9-BQ- z+XK%#ILjUdyoelxIiNGAfE$MJch1fH_vD9HEc$y)05>Do6Ddeo=Jvx2o9wOYOe{8& z3aDBv*qBFdXB<7|i@F>74Q=D6Cy2;N##D@crv2utqSQKh9PfKrm>IQwJv-t53;r+k zaqOE=*$;4R!&=!ayRVCEge=HnbF0Gek6*U>8z$5i7*0MEEApTiiz1Ojs|tW%Awbt4 z*iH;Fa~go+(seE605gSzF^Z665F}sp;*N$zhFc2p*<~`HC|RB1wk}88_H~!aR{(dD zDLgg@0}p%W@Do>8M~WbVN4%x?_kdgv4CB&JYDv-!w27%)F1P|vLLgFzfJzCy8_kHr zw?}!SshS*+HQ+<9UEv_G3+M@j@Rg5717m79*ucCtK*%pk*4g%nAPMOUMNokltbsk< z0xxDWvYwlAPh1Fzrw;7Q8skSE?(-X4*v_YSwk8M+2!)b`1O)*|5%1Tp*5?Ow+X|Yw zfeE2qeycq{?5DNE%uk^Dexbvm5cKc(a)IdM2xg(UfiTHWEDjl@Iglz8gkmI$AsQ&V z4H1L<*XBNPa0h#!VWrXs!cWkjm;4x7f4lc;%J94&J68Gl@of_r$Sfj@6%dOX52R1- zzG^RTZ|>_RpnpiC*s=~rD3)M@ZggJ0bOk6n+Kli;Gc!IeQL&2=@)>+t93(tBnMt4D z3T6fDFpU_NZLqH4KYuc(`qR;49#FgE-CP)IG5=<>aIZ;k`?=j;?C0}HfO|m3Ew`V% zLMFrgp$!UxNU*^9HJ%t>o4diw%kX$R{t4NpXZpYBVYso%aNwmd11JLjjS6Lw22l5u z^zLV{--Rai(9ON09R)Qwl+$T}SZEIMmtn#ftYZI3K&ZL`@YU?7fSiv6du%ZelJE%qw6G;}hi|1kr;fBZiJ2z#!T=b6H?ZSPhExf9c zxM3O((1~bTA76TVd8X|P!R6GTv7a7yqSCdHUJrZIUE5KGh2%TWX~pvD`fqQ@-|u5y z8H^C%@lymNJrVjQV07~s&%66GF{{nsiv5cmx zvDpii0AvG;QQL|7>d*WawOJqp0g2b(e=4U(iqI@<3JfX-06<724Cg%k@2P#>J*%=A zy05vtOM9TvR5OqiN!Hr;S zPs%9|Du6k2>{bbs+@7WV#PuDsaT&Svc6y#KaD)6+vF&n?(Y6D}`#g^AQSK8aVe6ky z<$A^G;V=Ek{Y?8ic9WH-TunwhvAwT{p{VzFeooS?RIcz~AoaikcldqpcXz}#bIBM# z)YIieZKhNI61`ih=XVAp`v%#rpH6-xn_3d4aAFK#)`*Km?E@ z6oC*V5p~5{gkr2BEo2ErA`1l-K#XAoR38MPNhDyY2i@WM{QgM#k9F?~!{_g3}6fPWbo56!!9^Qhd<d;138vBU21eoprX0|OXPoJ^v*i%k>0sOsY4*&IkzOeW|U(c!lI;^0U* zYRlpKZ&+(c0I)F*nMf0Z%Ku|7(pIwBgv-Zmi}xJt+AdRf11{@`Yr2EW21h%e%u$2w zAbqAe2Y4+J?H~@OAaw9zulq)doBX64SEOdYXX^6duS%46EEb;x8$`61Xm$55FZ-WP zD}+_(-%H#<8IviKI-tj0xLi}ZrZ)4}DS5P{lQd!kyyyW40ru&F&h!!;zfE+$m84}U zA{(R?2}eQzKS030@GzwVkcr?i=04!ijvO>ktp5SD8QNg+-mGLZwy$QJw%cuAb8^r} zUvX+^{}r8hD+FSiOD%c11QQ!=zxSNesCD>rkoD)j_=2Mu0(J#_-g|z>Dxi5nM%;;8d_y6D~?q& z-X!@9&usAiQH}!d8a14Cx=Uu^Wdf%Nn1f^tU(SeQsq$+`x??Jbw8r*1);tKk6y-ft z5EIrp-z9ZQkONR3)kJ@zC>d#W26%|mMvXX_AM6z2&!dcSvxF&=g5s{VFu_4;r8u`# z$heV4jKs*+wyn&ypEc2%7MC*v3x;MXYONVV2VsVU#%8sthM}6)T9-21w+d?<3@{eT zR#RG-Fhrx6YgYJ-{;?+IrjAFZ6n)n!y|y4 zWc&xZkH_4keY_4UNl_uc=#_VxIh`2_i?X;|}>{$!aZMjrc3T*O0_c7ljcS5X-z0d^ibUF{O*ZlJX`#@yAKq7fls_~lzctwSC+Pi%em|c=%?XL5Qsx;A zGL*Q2e-5$6RaVeh!vH*NvP|v7Qx=w;a|bL{meSZ!6)mia zDN9(7dohMNXs~UtM+S-%Z z>^WiE)!~{LX#uqf8&v|u2f#!`yigDFz;(gZ0D9shfdu`J$4CLm=b%A#z!7!803;L# zUt9hpKHrCqBfbH`8bp3h`Yjb%L1`=>NJSFyyK*5wVUFL@Ywo^9&d68Ai8G(ORK-u; zo0250O*10XsA-9kRQl7oduas+3U;EljH*pb{wZh=Ishc_#osGl(fi&qmhR zgRhj{V*5F(^kNI#LpYTL?jYeCbEk>oQA8L-L?Z$yLy>_@6Vc;KD5xj|Ki~=xQbGwJ zNFfkZ!XlQ7bRw3B$Os!_^N>S^8owDrWf2bqT0qkJw0)$YC zf8HVuqTVPRLH6a(y9zG8$O-nu{Qr@s=W2>96%mJIs-rO_Vv!VH#;ByjLyz~qQm{4V zEJwZTCkSo;z5loS-@7Rf&+9@WDoO;h0M5U`prgOtgq12hmeJ%BJWSA|B3(+ z477MvqDOv|Z8^^x3BiEGOZT?=tZPv`|1>DY)G72`v6To~+9D?R+OnVVs;*yoia*AW zx#7I~+%qx1nU3}!KB+|4r$nWm6D@9;6E|OgazO-uXVVK{7g>JAqu!0fd~x)CKVd;l zicOEi$bVcLs@SDVAhT5}vGl!J9V#ss%=E#aEyXH}?xkLDF;C|M3+tjl?H++=p7}oq z->^i(|G(Mkh8lgsd^(&H-tsKDBE12Y8( z4dqWBRNJfJglD&~^#OojdieQ19h-QJEGG_faHR!@?$tCN;V7^mG4`k2okFhEwkyqC zO_NJb5c|XH`*m^2IzIa^sA!gt>rij(U)c60VI#S+k(8hKa|99S=6by}yY%dFGwsDyc=Vz)9AG#>>8@}IDC2A#yoIa}j{FFP^ZJ=`vYzxA{ zbnU?p#tx9_s#ImnmPb8VwUDAqJzw|teOJ{d#~_Sn%}1TRAHn5l*SU6%9})Z@$Ptl| zaxf5X6m#sd?~I&x71|a(6{()uH=O>RwcOWP7ungLGcwoF0vS`!W3LTb>sohv2oE~| zP-GeU4tK||iRGIddz zvx@(m0DpOiDhfz{IshXAuqXMf3Zn^9AJRyHa#AS;2%uI<$WUW#NYbp4RsxJl$yo(N zB?c0ViY$>rB8WyJf`WvKMle_@0T~ehQ5Z!ef*=y2m|G!6OkpunL4^wmF*#v_BovAf zNU&H(bGmpWhxCTYIxspUQB!Bxqo&?}K%OcP>mFU7=p3e2hefG`a3@stGp>%|)%O2y z16KdmLWiRx$EYD1v4k1>UpkFOJ1$iQW1z}YcaXEQ(a+II41Sw5GxyivwN>q`t*tqf zJFbD>GXa@PM-nnq0f>?r8Iaa^Ym0H5A$Jas3^_zM4cn^rvukH0~+uF@W zs;x~m^>oOu;W@t_7r(A4x4S2NhkGWL@iuA9IG936Jl>g4R^Dj2Z7sKye~~0W!rASr z*3SSgAGQ15{hiLy!fc9)lu@B}6nE`-)B~_WR1uR=>IN}2ax*n4B_muUdO#}zej6Ir zFgCUoR|+S#g!lVx@1Y($b>2q=8hiNv-qO24lMom=dx~Ba7OCT&{(*3pmEJRlMWOzrOec=nZc1Hk+fX^9K*I9wvH2R_QmT(H zDq)LN%*LcvDvFNPrEEIPDQ6KP&c+qUCkp>}g$Kvi-M>sX>^4o40dO^qZG|$JJY&LM zSq%dN8Jn}z>|)KfadvTk!hypKZr?l#ILkCxJceOQd|4-dZty#C>~3l3;#4~8d0BT! zwjH!q8u0J0NbR1eeq6-(eIEIazG??<%76x(7Kk7c91M)I_Nd6Z1cc^CG^!m*GIzfd+Sv7< zKDz~hwr{-a+1}6h4jIw)`}XxbgCRMr#m)}QgravTR?xei)*GbsHaA;LCl_z2md`x_ z6_vxdc`)Vrm(u^6+_&pKwz>v9)Oz_J0JV4uH#B*S;T*?8pX7$=s+)J*=!(vT6jNi; zL~Ge)HMD`C#X^R3XOU0DCS|k5#OIGJuXYu8cznE0i-#Tg`D@O2KMu(Eoc5%%*QK$> z4-)~68EV!Wd5<|Eh)N*q^RV?`K z!ar=Pmpy;FY9NX=iShnX`6lM$4;EGoQ z`CR9Vs?=4DVWd(Dohb{fKb{5}lSBs%#??j}gfA)?5oJ_$A+KDw&&N-5)@#1wMkj;6 zsLr`8(i{^_biH(Me!dQ?&88Vd#&$x#x}Ionkn-SmBH=9UWz>0YR4ZnvR%!%$=3L8ywBS;4kZ?%1;*Oj zG#Eevknb@`$kd_LD*T+77Cc;y*yOxmlHELcz@lVcJ;CF(#f7aYxoEE--!qN(RU>3r zCAdS{tDBC~ikJidr(@tn3{NShhe}zRBAof{<;_LU58t8qxO3JP0$>AF z8hrneq0OFo#dAFYe=e_Y<&cq?czAch2Z*)=rob|Unx@m`7_w%yeT>JL2i@M?5D0GZ*m}Zp7YQo2pcOWwc5ekD8n$;~+ z*}A9MERc(oIWWTd=qEoWol4UbIVGYPD-8`A5hqj@Km3aW;8Wd8=?aa0Jsk#QS>f-&HC;J9K{0 zf$w+F@-mgiAFKvA9GlX=Uraf55BLFzhq|{Cs={3?lBjEnEZ?%K_9To`mh}I3`+|r5 zy?*cE?EeqnZ|WzH-lZXW|0nl-ltiF&AMXEov;RO#GL#@@bAHmzGhJf;f!)ltki{qd zg&3t2*mvoUtMIZWbmMpK?BQhm2HVL1*q>nce0~1^OMUJG_KZ;^e>4rJq0}UotzQ1HXFUl$(sqP@iB}SkEKWu`7LRDIkWI!Pzs6>Q< zED@0aU@V94B&dvtz`+SnAf!-P2~dK7dl(o2A_xNhxvrFdZB-A`z=Wm(C89dvAef*q zkLidoXu6EV4HPRQ)YafM06xU(h*Tbkt|Bk+b9Hl^Jv}`I?_B)`VQ!opaJEJ7h3dhb zt|oB|@T@S!L~5xsRa?TL^Q7v@M5kl8Sf@hUpgEK^N2M8vCrLw~$2C+2AE9DNK=W6~QmxEvFYUL;IJ6twc zfeQg{T4SXm0W1MMSO7A_fUpDU?qa;xzH_?(04UsX5*%N%-@D=4UMZXacW|BiYmv0s zoi+&1V`X$bFtSSDRuclRHgKHrdanG%Jp8bsnw4;%~g&4IHpP-XFrCQu#J5vI2=IPUrzOz*T6bMuMK8 z35A>p{7fzt5Ll56j$nIGSNUg>6blfXN@T>6n_Ds3AO(nvJOPX-hX?V|&&PAJ@R^du z94!!xc@H$(u1bxLeEW{QINT`BI^u?q^b!#6ck}>I0MQHp zq1TG7G9NBR$szjPgk5AZ$jZRyD0H-K(}foA(N!KZ$-39qM!kvCoqeO8TsCTR-1x7f z#8K#8Bp_eS)3n*vZmjbg1fw3PgOY-8s{)!9BnZX$94&&w!ho7jjk5lP4XrDS(G2z$ z1V!D|$17#eGkcI$;P;-840HrZZ2b}Ueew9Y&@dT~&OSMfStLLv z2tJ`Zi?3m{&j!Clqy34Wcf+H0XMIf00%7ZUk@qPDdQw=+O*~lSQ$B;0nT@>cRj#j! zK_qNg`TaQm zE@>pTTg-N8nazLRV*}_!3r%YyLIyz=^iJ#;sKSME#stKL`@JQ#WG*R>%&Th}4iC0` zXT4V?a}!-O|J}s+(}TAB+_OyY7%|rqKTO!vpv~HeR?lq+haG?Iuso~xajjw9 zjl}x-qF*ln9#@-Xx8e`g$e|d*kC}pouI!Uu%#eQ5UxjY@oe^48QG3I4&M?_XScdhA@^IFx^TP~6j2QSdLGux>MO0RN?c2}kCo}wT?xx=W`%tJ)WkL9ki1)~l%tPJXS#fkSo4I`W@jA7bN252y2 zuT|;pD;Q5N?*mYxqZ#O6dCB;6vhU6MHPtn5m(kzew7&DR`d{#M{(hH<=;!8L<}_KW&ziXOOwMDkV*dM=f}-;)OzP+zjVFl z==gZ4NE|Mh%t1xfs*Tn?^i>PEvPm?%xH6vPaGXMzOz0wteQ|I0A?$x-MG%^A=Jx29 z2TH_bJ=zxbx$hO2qJP~-I5n~D(WUn~BI;$}#vAEPbYu*nG6qw_MG%%)U}q^rJ=Yvl zmU&HnzZ!i9eBL(}ca~Kx*k{`3q`!WDqy2w6A5QbO-jt1?{q(`K=KX!nuksZB3L{MO zEx`NRQpdu^wR)VeJDoB8=LX5{+ZWlHQ$-oAk^Q@5s!P@N8Z=PNhL2?_Uun!VGPx@2 z*wrF))3<^Iu9OAizl_2W<0{SFPdlHvvz<;O$$uHv_03>M0$eWf3Vz&i0b|3j>O0kM zJMUL2WGaj+&w|>^ULOO4QRYIGl}9~s;vZ$>fV-HOgz+MobeLSFmEcD-Idu{`)aI~= z{;;-O3{4}@XVa{%|0~95{-QVJ^!ApP%i8XwUqLZvnXyMh?mER}d;ETipdkMU&UH@w zC$i`+n*ug?IlELjO&pUYEWGo9qRFm7G@3Os-7uCR$T#mm&!Q?nQdF9>DHx2*Xb}Fx zgQT(TYj*k^C~%ALK31@A8}@&nmBj`+IF5&r=S_}}79#pmZ0Up3LOj)UO{JfD(N>qz zX5-SULK&)@-|@AAbfIN;AmdcB7scDVX=IW|Z!JGR&F`%7oqL`)kknsamv_?FK*JC! zsiaiV=cl$MR4p-SgcE~1N1|_54{`IsR3)fW8OS@fwbk63B9lmf(O_amjnn3-(?UGV z!ep+c3V`#o_nO-sT?pOr3ggXW@TuuK$uxbeWl|vO{iMLdTRn14*C10~W@l_qC~2XY zwN0?db+nQu|1`Wzf}Ou_XIM5yD1x@uwXrEtYY}h9ug6$=9ZyHK%n$BMrLRX-6iv!` z+v7lUy?6>l_#~X%7w2bPtSf3n8mfI~ZFCq(8EYnC)Jq#!Mu#x|dD?jhT(J^QUNM$; z)2s>e@~2fa?xXK$UA$EMW@^j$zp~1I&*A)!!}&(9&-~+2=l%c7_~Ph3bD!}&T+ilp zZt&aNk8a**79ZxPjh{(<($TQEeg40HvO(={-!aeM-?p)T_#+`!Ba-Wiv{PQ2dp$wT zS$?$oTH~5`_?3zbg(eZk(_k~>3RofY3LYd4lhSPsXzp`;{-FTE2O-`J%p~=GcC-_G z=M(mP(3gJ?>HN#s&y{lZ%&LM)QC>{^9eLPI%;g0W0WsS^`FGF=iyzDh+fUn@pN#Kt z{rc7)&HiuRl0$g?ulDNJaq{+!sACCVJaa7o{}LW*e-xkONy<9O8DkSM`XRjx)@B7n zl(Y~J#EbyyJV4AuV>dz?z=#Sb0MHQ_0zxA)9ApNeNbw!QU`7ocai>}q+?6_a%2&|% zjoN~6_Dma(@&Yla)Yd38O2p?1*vB16RxB$dz3!Jy=O7OM1l1(r=|8AD{jrD9Ap56XNhi&H?_Jk`9AOKrg3gbbvS69?cVxc@Moh zf$Ik-pd`{pK(Rk#$+Nj`Dp*f8)}o(a5Sc|&_{M%hN_`^?B2BbO6VM3-1;jSa$}Y(^ z`%uGAZ%~$LWdT8h1_fE?4w9XQW@Zo?Op2-KF`@54_y`#yf~08^X`-iNu(8n@ST0r7&t>pBOqpU`1Q zBnUs8F&jdZr|$i1{Ai!V_g7^*cqZm?eplBA=SmvdcGA`ja4}P_W|=Yc*M&M}7*a4+ z8II1$GxMMC% z1kvj1*f~Lx6G|!*%hf^$Q`gyJxxt4Kki&q*nN*6QsTE@YBm*8ljyJ#w5<%bNjU89z z!_m8^&5QCn^XUvu9mjpd4B;UL0=-z`cJvuoL3EdB7*4^U!D;x=-SpQ>4IvJ_YF+=d zp8@H>KxWKt;m@od=krlPip<88FKo874!vGkm-f$$84yOgy+|{vi|SL;wxvptg0%5yibDeD1?n+&Q+y zipD)$HXVu(H3X(?^=GS&4fXZjh#!6{1w;{0MPkeq5U42qhq@=f@t~@>9;tJv^`GrX zlJbJ62~=TV{>R)z2m6pi`Z^WqD5m69KQbUlU;$^Z!*-qd)82)6E{z02jXhHm6QLkHe@omk*c@eWzu0cXzJiHT~j|OS^3@{g?N(xjuaz{6nFl zmS=;>#`2pb%|ME0-E$qsMYFTGIy*;3_&SS_JS-;B{#=l`fpb_<5hNr|iyS0VNm}VK zONu0pF#;p5s3?`*z*@ouirWPaX)rFryqhHk&V*gPxW>J%zfAGs)^MAY2^8hbUv;bPD0jMGOS-;O)r- zGF7UfAe&g!tU%8XSJmzDKL5Y(*lVSFu5IkGBUwwQa-I2SWK!YK1qg;6Ss2co7Pf}X zcDM>?Dq2JSFccbHxEPm2Mb75KWxZi4#xUao+EsgbQw#+_hyWuY313KfS&VPI1SfYF zt-=T&mP7Qj<142}YD?0V4=ay&A{3mR>i7i*KgbMt5XJUeQ>a4)>XI6zes zR<#}5F}|)HR=cqPXFaz&U7Jw06EHYCw18g6UbpX#F@~z@1a9cL|%LD>w&wb)sm_U&}sl%8s9;h=x2G+ zV|}pza>rCeS?k~O%&|JNJiOb^jfjZ6jmAKSD1q&+CzF3Cfx2cmzL2L5CQ~PJA}$Ht zi^kZPD2TY0NT&J|*_cwd6K)`&xbZet7Zw$Je52Q&fmVL}!n1uzZsJ>}3-07PB` zX3bMWoriFQ0@|lHAMXFN`42ds($bgHE9CbOld-h^*Q;gie|L_v(Y#z?hGnh&JzxMM z`4<=v4xb5~uBtNRA`4WP4kUyF{uWhB&amV4<2n(LNQ+E#q>Vxn2mo-5=+%NY;;FXS zz2lJ9bSR0*z}Zc*=jPqfs&~D%+lB{t&9kb7z-U-5AVF!+H~*4p#6VPgB!^Tx^cSKcaNSS!z)W@UQ=aP_OI#A1pDy(2>Zdc9 zAS4zYJ9O{1?7@X%pY-tDf#?7_KytYwuYeT4AqPqBxa!j&B=w4<@j?W_fgPLS>v2hz zMC8g($hfy7w~oc#Nbc*etj4M zfh^ur2b(6qi@Z?nk`o-dBPeVd3YICu8H)ijpe2~nn@ z0RUj=s4+~K5F0yO-5sq`5UWf=GFvVWgPb02lrUOBav(Bd<^%O6m$$QI;Dr)UAcbWu zmC!d|rwnjWMzEK#jqhs!p@LcmG%>md!xc@DP%nm577SpZg$kenU1sG>O=4xk{Gfr| zN&-{@s;aBwUQt3I0SGdNwId@~Zcosl0P_VQ3#q1Q_GRGhqxGWlX4jw_90W!36rqQw ziw`~&xL#obkXWx`&8gT|NRDrT=75k$BotCF%f@i$ai>?*^gx2skFVWNpSRH{l*HXM zD=R@=m?<)%tbhQ3Y2l$}e1>6!l0CrhFC)u^C)0pRXoUztDpf{mt0*uZ(|YviCm|z# zZZZhy$C`?reO1=Nq#r$Ch=Ld*Ap2FtB$2JLrS7N0uz2inMH-)`1Yz$uY&|R+86!iX zC(Kn*Qb<6M876vZuS;j4j^SL_XT3aw$Co3k>V5xBZ0~wS?Y^GQ}$Lco(E!T zWJ@`IgXgazHmFHZs*xUB!nk(zxL807^uz zoeajBY>ZkgBLF-E>2bD)lO{0DQKph%HLMpIF)+bHhY?Nd4P7`jW{u&gS#Qbodwpk- z6`zEH<4iwZWB|kgtj@N+PNlKrIDaL?E-X1{z+GD}0~)GTb(p{eG}PT?DYQec_j2WQC2U}h^u3v9{o38PJI<;&l@#HJg;1H>)`mC?8`*4ct8s{#1KAT zc=(v$w8DLamkki{*S?e71p)W9XfRDu^JN112l&PbC?Rhv@>Gyg+pkL z5HN}xNy8sUf3L^o`7r9&J%+@1-nUwTDk&nb94iiaQE87qyG-+!s(uMhVs6Zy6o$s9&GaNUiF{~m1B2`NQkWm<*FkG)k5bB7Ym>ImRA{{8k7lN8${rTf7 zLUp0kIv6te2Vs3pde8_Ey;?!eM z8KA%R@O(F)&zFa^vscGY*#`CBb-O9O)>ik1^^v@4KFLOA911T z%Hx7XKuz-O{5KsQ26^c2#V-?N4`eTVJ9ssN)CXrCbX0LpS{-GIfl;Dt>*&*$gIJ1J zA5TuTzIbr@t+XBfY$r+Ro_{}&W;kmRI3h?daso(#ZREIjcGi>iCoXlv84j*XS*g#K zZT_6V1foc=#LhMHP<|7mfCJFrRCEYXKG_lou44U6FH1w)k}?L@Z&S{S_d1lz5mo`O zlOuVvQ6wgg0Z&1`bO>sOGv~nl&4N7%QmUw=s3m@V@y}Q78HImD7yyN-A51vzm(<^f zzjp0DcZ_bO+s7m2%2u;J+t6zO0f`N>oZ+CgKs(`=*IrUOA>{%{LW9#BcQ@?xeHfd& z4;X0lm*p%Ww&dzb14aCmN^*;)DV*bIGy)6QB}QX}ZtHI^1LK*U%0gR-QkLw}qD*4DD&zN#!X5?h?zpquVz=>Es*!F!mRb4b=cVa-KEbgyS_ z=E8{Jle$#*{7-+w*Hz%6);t~eZ)bWrLA>NBh#VIDZ#odu&mr4q?G(RL`7rBJvGa%? zFq}?kLM36~NkRhM)lRTFFQw#`3>6)%s<2q~=9up#y>_qC``a1-0lR z$B_X-ngydlO8p)F-#;$-n|)gE;eOCOA&2je9;!q4!GN}UoX7DZ1YR+;cUiMY_`*Oz z<|PIY$R6$D2fL4xEO5xOal%Htopog)FGVDtNF5xd>51KpWJ`l})U5X5Os4amq$b4^0}CJF|*P@zc&^s+c)e0%XDW_80ML;_T7 zWL1vbu@Bug@uQE8YJL6~WrU(r)asMQcK5X{ISfsMAyEe%x-P<1fMdcH095!lYq=z#hZU zViX&yWWdH}r|7xVBM8Syh^Xhrvg5|pxwZ!iKAkQ&-_rlUY{V#H#P;?5{RN4VrzlS3 zN1oE)z?xo%54Y}94yF+oGCK(G2G0Ur(ZN~_K15fdfkY2#>FdZoqId-_ov<8xD1&cp zS@<3}y|dS*()&nbK<*U$KNel4Tsl*lB2LP3!2=l8SdF@G(KZ$f(G0*;Lp{bu#V)jD%$C>TtvV^Ij;L!^O3hm8(bEfQ zP|X%D3@%c!GS#}j4|aRaUVaB(X{^iV6u7!G7`d8gF^I&q;$rBcCI-&-YMzN zO`QGs2VO=6xU|E&t&y$c8x5P4U)ELc1yF`PCG5=X6fCd-pe&< z>{Vo&M$Gr-gm&ShKJn|;G5U2|XEu$>C&s$rm9ysNlMQgEm`!^n%T+B0Ji6CTjoJIg zXpZJj!#^kUkRi?hG6qIZMuIR{>)WTDHP*qJy|~?F(@i6W4qWqUJ=!VHUa^?AW-9LC zsRJ$KGeepPdYqoR%aE9Quqd7-ylufbo&I<ROh{iHKWM|SQH0Xk(mNAZe+x>mI z-&)h*w$}~u=j0Eo%jHf4R77#x!hjKoV1Pv_vT3HW%Pg`WWOD-o68TJ7pwEHck6I3Y zdH?{&K3?_*JN&kXwZ3_yzWzGCUiD8T!H?7Xv^SZ15-T4Ns@ftAs;_`PuX?+XL19A)S3jcLZ#ok-B}W=QlS{>GFcyc)c|MDH4FBa^ zdx!uG^L<4|Gv|OcMgOBHE9rsYTcq{gd+;pybdjhq2_%997#Sleari@HIleh-^I|iN z=8Bx^EG7r}%6~Bvk6-ctzUHMP~!_u}D9pTaf8|ye4QRF`QamjBzr>v@fnRW0pZKawsf9$ zzlA@T=h;e;V2a67Rxw_lu04NWo(Qdr9ITaBth9qEfM84dek=6Wg7QC%_OH?OTK}q# zc;bH={kHAgWfG$A?5n`pexR}o^>%pxJq5|HEuM@$8;0C~XATs#rdzAI?|Yp^GO>bw z^Gmn-)C)}7b=W;N!;uG}z_tZKqLgUD(v^*+O#8Zd*}-9Axv7PaRT+q-Ad3xpcl`X` zA5EiiZ-&*X@k7B143@T58DW9Dz5}M-1((yL6&c69YjqT8dQ$M}JdMoS4Q4;3!0q6E zyT<;r-Q__@R6WSA_8zD5b8Jx^=s5y6Jor4vrW~xq$%n^ zRoZ~{FN`E2^=$8Ne{Y<*9tVe}`WyT0<^8K#8Uwc)pa^D&Mu7|vyb8vdC*8WX zjm~l2gXTsB^uN+6$2f>J8qG_zI)Gf&Eq+i?Izzp{yD%vv;Pxta(Per)@6!@hKGzXbfT z0OvUTwNukIHKE!{gXDwd!iOUo5=GQPFLtdJSk|>s5sqQp0YHeMD?BLeHK!8KpE|c? zlUTuYgg6EjMcNmR0~b<+AsexKF>y>}9$=rsp<>cRWDT0uKh>?5OgQPYmY_vy*Q?30 zuek1FLA{!>9^FHSaJnHlc-t1Fnit3@>@}dApatem^IB zr2f3Vy}SF{g~lKi)=afpp(3K=T7|WHH4u~s!vUMspl2h{#lEQ0q9pUnPFr^$eegK- z1F-P%EO}tw{dH(?lrkp${g%uo$c`8FSpfN>hOl&q)F_e*gw8rG^^g-WlV_b+)|xQd zbPi3C$Dx4Uj^4^;e$^xSP5s0qn7cl3*E#X=zheb8Q}oh=`a$MoZ+V!!B?x4qk3< zq#Rk1OihUsjF)px-cyK1{R$uBClcI%gBnq}w8j8`@MG~s2o?@lx} z%5Yr#X*0mtWRgD2uAEQJp3Sa)%=&r&*vm;U*Jbh1a;>cv$1NLEUW&lvL~;W`Fu2i{ z*BZ}O+#5#ydpBW$BXZ9!>v85AH1g-ncI&GR^V^>XX|4}dDmJETGhHYV(9GL840v+a z!nfySb4762%BFJS*IekR#k*&tO;tZWVRoyzOuObaGu_Hf_RD?dwP+n3qnv2e)9Y)y z^dRG)K5@sLoZ;G`ubGTiF_GNC6PW@w2?%TDmYordv5Ofq7{)G4voVhRM-iLK*|9)H zd4OgJF_cir@4ox*Z~`gZC46h(G4TclRJ?J=kc$;n70;TZ^7(dLvc3b4HhJ9a+RoJ& ze;p$s2*?zV-#GzJ>gwoSV8p$E$ArGMxLDFwXnFZ=>t-pQk?}2i;9C zl)Z)F;o!H`be!a<3OJ!Q`n8PU#G0W1&F0`z1CSUTAZU0PW)u&bE`DQH|G%P33Clb_|W#EDa z0}<^}nWDUPO8pFaV&8OU-uyedh*fzD9RL)A_3H0km}3A8L|#8{*T2f@mzHeVm%`np zUAdWCEhDzXV{T!hLdUU>^ldQ*F{+|G>|RZLgUW)UH=elaD*T_DwsY ztU&aKL5rW&o!J=3mpc|WQBCM#iPb^()4^!8qhiJC;y+#^F)hzW8}Kz?Jk8S7@~{=r zrZJcR5)`!HL=qJH2WI|l-MR~2y=%i@*=gno2btPK9``skF2hD(-(ih_)$n7?-vOQQ zdAbUrjMq5`YHOpYh@g`_uYe%PKgZdIuL^A-3~$fXHiFX07L1C?3?3w|XZyL|>oR>F0sXRQ?nX#hA0_#a|^R zA$|dgX|QJ6s2CxyCWAchz3m~G-#m}q-w{JMo5OWY}*u|KV&T{-FonOh`$Sm zQm`msO33@b127JYtirao3`q{wAY(k*#Us#plt3*612Zhh(_obit^{cQ{S`N!sw*1o z+u_F|)2B+rX|*maz=&qeh`H=TdZ;k$O%>@ot8NEbxE;VtAuNxahj?6~=fSOPwKe-f z0U!j9yGJeh2Td0CYtC7v(7t2j^i$`h5iRx$g|1*Aq8=9v(9;+&8%M@iN|Xo@1j}Wn zCAm_F5LcpW(Mj7c!#K5(LcFlb%+4}x<>wWNn$_mD11wISSdiw>Hdb?_Yar&G&5UYu zm#R-#)^(jEXw5;aK&e);*AI)BTs&OBH-DR(?eO4Zf1duHsCmB-_nD**)6s5~2t6fh zRmSH<7()x%DmG9%C%XK|1 z#>%9VU0LB?gxc+p-wZ6+=HUr0r$yXqXE^N!t(x0%gxmOX+0Q(3Z5ng%)g64=mc48e zXPbT+`0vM=x-ZW~(&%RU=ekO@Va;w#+Y=e~an!miw-iR98Bb^?*3e`+7D0Kp%- z@d3t%ynLUkINC+72p#>3y6bNlUGn~?M(?{!f&hjCb3;?C} z&7!11PUh4j?lV8IGHczrk>(wE%_`9w#EAuYhD@EF-4JSi?#CZjiI>05J4DRDe~0hw zZgZu)EoV@X&bWIV%qp&`*w~sxfP>t}yQQr2?%maJ1P7|}$gt~Z=`P4=UACB!0f2Xe z8Wg}wGm(q($sFt(m!2t2Dw0V46;dOH<5_E_T9*Bm0(Jfr z_Mg+IPDP_eOOC0j&VhhZ7pUmxy67_ubIitNJCHGmfd#KsGeky5nk{ST8P;cLqDC4Y zoB%30`Ls9Cn<~h(>C(D1_5tf2zZKga6G3t5yCq8VNS{UmR6Nr1^9{dMf?E!zF}Qtz z*6+GRNY}n&SctFyr1SW_cu!AHM&`#}W=6XB2Md@L9UtrM$gZ7FbAP*37c6sFS+?a$ zUE#C&vnkRX?1`A182WGWbWKV$j+VeZ-oP>#rPP;#A#q$)C|=VdeOrX zqc&_i^xvP-|8V#PwjRa3m*Aq^&Ln_^RCXjL2 zi(0#CAY8))6h;9ei6J0ODI@EEuIlw%_orBqv&}lny|7lS%VPrMT!uKrTs)%!5)l%W z5U@68@S&~jiNuDf!_D2xT)MPQE}IBC1WbU40um;w4P2?p%o}RUnR^A-5HMZ?ty!}t z^8H_j()OhB{0jXCP7zIm|iCZID0#2tPf=S(g> zXI~GEw%dKa#IEh}uD-6C*0to@d$!-p+uANqUVsFIAxmkdnqtxDPlI>7`}$^rxlrdg zxabElfKfGa20<{_47AG`cRSqWY|SHe2@IvGj(@(CykJ8O42IOn0L(sDvD8)(TACvV zw1raALgS_)rbr->GT3z#7fpp_b@qiOzQt(@0kr~-g{U2eZWe9aGN?cZ{b~G&7IB3d zw{`21-EdnyS<_2=uJw)>`FHKvj<+P}2m=2aQ&xeG1yKPqRs?X)1P(UffzWi6Yod4X{g_>#?m8)hi;G z@@J90$<{}rc2=*&Fd;ry=?n;_bJa^w19`v3-FfJ}lL37S01bc@LZN~(APo0z>#LFQ z0ryGnTIFQop>^%15LP9~iP6v*2~rP2E6vfH3V1MT_X(-bk6#+5Wj&c{dqR%FrT zzq=nsBN{5AVL=P&Bp~ZAO(zn$_c@Gvh>9wQ;f9~4F!Ie(xjiz`IEq#T5^8CKW=B|T zYD}&X1opgFmfEe#0&xL|k1Isr)C!?rvMh9u9!uu-^30x3*Ue;~CvHCV;A|@N8P0K8 zT3K?cV@m=cYkv)_)w6iGde+XGaunB21cnDWsIY~q!!Tk3`>>KYf-tCUGX}hSTF-HW zHkrOfSTP06pkqFFLa4FI+T8dMRS)Tpua5nG%JTz~j(~HRU>+?LlG@v7rHr+Ghrfxt zm)_cCa=#ubyk>LBl(e|U2H38c3!ogE;)FmU$vRBQ9O*h0uVKhiLBBRWo?Fze-gJZO&$p-;3xZ_FDGaF}M*N3w`9m_sg>3L`B$4b>&Uf#UV87|FpD z(em_QEkOrMBzAkeHV0b#!81w-RAB4p_&{FCFRB3yF;HUA#{NlW9)5Um^zdPQ736+O zeuyglc`K_v%}6FE_9x}4>fPq`_dwm_-_UIhMyW)it96j3HYA3rR%mUqQlMr-7c4!j zluTg-h1G#XMkcJ40CI-d8JG4x&2fEx8s~QO>g#vgcnV&r+|-OM)*6=L@L92jr9?)G zi<_r-#vST&c*Q(D9NtCB67+CNS41i{rfoeTnv({n0wqe^RI0RLUd(;}tMOtnf4BC1 zgFb$L(coT)1jgW=fUenSrc>+=rNR>`q8kJUP*Lr_(UqJkb#Ehh=A~rOnRV8iIiO~4 zqT4wA@L>@@gacnZbN3DOPmdWWNbA#Juq`eaJ|zP@=Ye+eeoaD=PPwmw*% zU88}524Dg)hI%z@)1y6?r5X9|wpnTQzMnpDN5mIi#A*aCMqn z$D4`k8+IP)_{}?cwFz}mwufkt?BB~cx^Z-P&xWQjK8Q?j*;I^2^4>9{V|B9p%Pe74 zIA?xaKp<6vA;2SGdiQP*4AEBT?Z2AM_T}s4pg#v$0ubO#M~zR~csGvsr^7ZSLFfUm$%KA@^nDT{>f@PKw}-ebf4$bCOSOz~KJwag=OdA0UA>W1%7# zukfvm)dbNYEl^^L=nyJ;%DUqPZN=^pTJ~BoK+#&jTiT>Tf=M7uvSrob1>h?yHh2O* zPHw@nC9%Xnz+eLJDrZCnQ7&07o){Od>Z@D{+5J8LcG-c?KcS(8BTnWY?og+W!yAMb5Hj(V<%;*j8xkt!sw^E_ zvqOJ8+#wlz5QaS4FE=HIh}6+rDdqO51oG8+P_FH#Ska)mmnQkg5_9bct&uX#lfJF9-oa= zgJuSD#L_m%%1q}~an;ySD&bRY=xWj0~V`ez+diI0g^Dn5|ubpzj z3&Q<}g4m4h;obdiW@kZ@4fC;t%GWx}Rf?Qk)@MFjDA`uVwm8Z|KZ&BZ-?B;5Qn+3$ ziv;uv-VwE}L8&qzVyhWQW}|B!iCIf8FyG|LS^V6ERaSe?E;mZ4B}r$GXUna6{Ck4m zLnl~nSHNB&;rnz~>z?!>#j2_PqbWZnQT9k{azdHum>H@rx*X`6st;bi8FD3>@jOKg z&MBgLgRZhJX+5c$m$8tp{LjwsopJ1A$QZBX1)1X-UR{*ww6ndtH&KtW;iU{>Cn0>v zU2~}@Y6S)wtRyhTDT7rYg$e`~VvwwgRg?O9c5d}oidV6NQI7U1adnxhLRJQJ^7E>* zTGMkxV-rf*Y%wD^%^56awWMy{8JWB-1%lNvImO-uXEj4ca)GL*^fRF9t0>+hO=}Xe z`Zeq9_j>;yFVPu+kO&_FwiNyb*rlF_1zOxubrnfo%Qo-wtT~E-GTDTeFB^E z#qpP3dau_%XM^?0GoOyxbN13J(=Vj-X14LLk^MC?Zf+fSUm59X$lf<5N4qwOIwq?& zcfTDr-^?h#YGKQ7E^V?;u|zA?PFr$uvkdy(VXpkRW0~7USKW^a^+ua_Zktw{w(V?a zqHVQ@NZA&fZ#iY8^3u6io=WnPty5Mg%`}OdUW_zN9M4K7J)$jU%^Rv-6rD3gbLPcq z**-REl%pbtF{^h|7{)Q1x1*ftB!=wsMlsH+vZ}6#&|o#Ko_Xhd^Z0w8Cq|(;g+R$5 zaXs`75AJmRv#E7#vOGRlPw(CjPHG5|Jg5U;DjmWG3od`9WQe{LVVhVTp(xiXFsuU* zSQ*vdHdgO*d7qg5v!1&zG1^%=OMLS-J@(aeSUNhq>hGaL7$OJ=ED2L>z4gtRT{CR# z%Ju{c*~4WVW%a7B;D}MFUQMC=-#EP^9kMR|gcpO`ETPkh-l+q6qPpi) zhSns_K((WvxH?CVD?w{2fyh$kYMY^~3Cb2X^mdY650 z6>E$5aOvysqN#2cl(sphK5CX10eKl9q5W$W4^#J|h_PD0$(4f(#xK2*c?jaxwN47i zC`!&g9)2>_=YXVL&koz_{37$wachPuO~o_H!%Hnv-Qd$lSEn={iS^Z<%EW@IDH|4= z(skS|ZBA5y>6AV08qx}y6eNj-?l!WJ^(x_J`#hbgdAv}-4h{S7RY&A#6%hP9A z+fCwPjj2>CLuwsOs>dyiW=9{kS7j10UIW-LBG1xvYd%@LKa?zCsm_)^SmvLn1ixxa zm6(a^Ax?bPv8WVCmP)Q`2R00Aq++vbtVgf3vz_|ar06v^is9Rbe{V->)#$+#S{IDO zPCkX3PovY@U09BK0Y+?Q4N%H1Q>`;BPR0d$7bY=`dXl>obWQy1n+G=*W|`$Nk}F_n z5cO+|s5LPKWJU$7hlWWHZsQWr zR$=h49+v6`advQyY+f^g@_nBC{Miwh%z+RAo#dVzw3<)vPtXBU}S zlHAT+Jz7jREYxG9pPz}wPCGg|Ge)%D$t33*@!QOLVHpykTH3k=uibm}kk^v{oiKhq zR9=|Vr0W;+yPmB$G}?Q%an*3bY`V_V*SzN`ZM%MaWaoaiYM%`*r)%4-XV)>`RoA}; zaiUu1wj3dK+HG~#TKfu^V`XwkE^SA{UN-Q)2UA_QMl)3mHmSy+PJH-0_+h6>z+bC& z?OQ3?JPu0Si5%1NrhFRy)wXD8v^5pGV_cnQ3y)|ck{V>CC z5VC+X*99QV=*BmljAIzhNR4Y_rf1PqV;*Hy!Bu%xK&Dr{^wUi=!k8L?L{fc->{x~u zru<8hh7SLL=aM$~8(Ri=dg8YcBM#9M0~*#}@_yzFcwPwBbu2*-mRMb$C7P@)?Q;#A zhQ)K25nQvfqk)`#uOaov>~ZD;1^{aRC{N<+`~$U~q-z6t4m!jcf=Pl;N2YFZgg^;E zN&){3dgF$o7!f9c7AZiSnynDR0{O!Mj82x5Fbiq;kM)w+W5FifPBmSdy1jS%G2kC= zI4B6H&vM*vXA-OY&(eSgG;N^i{R3Ms&Qknwr~ddo^|blAinhoq&AUU>yM>akg<= zhBK=xRxymGN4?H+qm`XET=rZ+5fLFQg!WJXHmD9(vTVrKr=FYUs){Bs%8fl8RZR-F zU@w?&ejN0%o@4<-z#c)D%b0*N2>j##z>Xn6$wr{5jcJEaKyXnFSB@YvC`hb*FR}oO zjpo7LZ&0enU~#{DxZipuIp?bTo9iu76%kdxJED7vZ`nY;6g_BVzny`e7I2dp9s4l$ zq}F>a+;Hx)wKJJ9DrQ$SGD+}^5m@QaJ2G^JUm|R5nk^Kv zgz~ORH%P;CGr&vnOpeAWx!ffl`4UvVH2a@$=Q6Jax=!Wkj5^;X)`>vrg?U1kD5tlc z1h&0Kg)_MCU~3qthHBXamFdbv^fqpfdx8QNtP#f>wjwX-SRP1hJz6Hc#{Ik%g>oiH(@d0Eb7 zHLSYR%}rwQk^`ug1mf*QLaM}JZJy}Sx0^Q1&|*}BYz4VC?)|G3mW(ZlScc88%RNJr zCaVnw;o}Q*rSWc~uI|iwrha`ek{t;s>KqK!5=E?t5uuV02raJ0qY85DH zP(unQ!?MAQ_uVdJ;LNrax$?qI`egy?5GjFHoZYq^#@#g~o26L8OxH<`y5;AD?!%ru zt+Z>+lQzq{M&sY1aLa60MipU=Ii9pjOt0w-WqNgJ%VO-~sgP@S(>^>#$@NVLm8hEAEi_G*W>oAnVU0TTj6sdWt0Oqshf^5F zF_oKI*l??CW{hLCRduSZI%%QKa?wQ;Pe)?Gt|L_dtJf4;L}L;ld$L4&v5ACgA#O%L0bNe%l$=9L)w1tJX%k-Xn0 zlOfpV@sMfh^6D|PWG)ldU?nWr(_p|?l@7_!-r(p~j)Ys8jam9QabueJz=zz@VYthd zTlsv2<{jV7;vaDzc!}okk5R^wkDu@Y=sD`JQI>GU1kztuMj_x&h*#>buKNw##EIE; zmgUt!>s`e%14lWp+ugDf#vXn63GbjB^{DD45`g9pP-8(Q`PO*E=&nX0_cXnK!gMYaF-k+yz_Kv?acSm3= zs7R7YBe%MPgvkoNbc=%`dwM8Fl}W73RZ+~fJ%+S((TW??vxi>WlfjfEp`r=Z$3g(b z=CCZM8DmL|S_+y@oq|m44FTcxbS#Vb?%ZS9n7G)d2v%o$dou9t2Es&%&n@}qobN8J zi7t!Ta;giU+u}D9%$XqzCyC+ZtrJC|Onn>=KhJRbsBsMNbE0$@1t32XI@U)+fOxtj9X>z8i{gva#vHS`^_14gyBK%%iq>rL#8fR%R0j3PFQ08)aIO*Jy2v z3dMq}t6XM>MXp-v-Jq{PD1-yu0-VV4tYrC2YVgq(uZL%dr-q8W=^0NrNnPfNFia;V zYgFiAx(^eptk$z^)f8oD)I~`vcMSMh3xzgfp{_1*idwN{q7i|FgM*eVH@#mA9qWHL zH#4WEN+Ihxi^wy7G5k?J+RG#Z;Q#;uB#E8nY)^rqDXL|%8$rb-A`k+NCU$-7tX?Vf zrJK#!#fDn57+<^E)q8BwZ%0NNH1=q-l+41b$4;&sDC?Etiv0=N-Z{%jV2dNC^3swF zIaJ2OHr(=KCw|9t)Go%bK!*FYsHa_*L66GJFP>ZaY{NfxcKSGJ&$DE(OzRpZS!TnJ zj;=Q@s;j;%uTK34-3Mk9ZH8%`qRow_Z4YI-DTbQv*P^j4+ayf#X_CdWPMWmY#uBn! zdtFmjurvc9Rr_;e3^2b9Oxcv$w&A8sFlNf#mc4rrrsGCuLJfrxs_a4dY2mhen3i&t zD1RO{(T3*kjQnoTqmMS)CPUe)WetdXWZhMiZL@23Q60#~>ETvkzkVApw_ZE9Y{GrJ zB{WQ^&vQFN7{*e-#xjcJrfDM>-m16hV;Mvs*0y=)o_K_8Il&DT{-vM6&RR}*e&Lz; z`h5mcOG<=?imN#M!2=$g17)wOzl&AQ-Uw+h^l8+}gcok;Iwual*^N!p1Qjp>BOs5G zX=oMl`$ql4;hnu_>w4_Um8o67FC2UIG82I1k!INi0YF$fs<4IR-*0Mpc}WXDEe&GX zXt)X?#1K3DpbS;e0esUUrEW>PI9+Q|9*>ArYLiRb3q(nDr~9c3Xsteo2`yB>|yE&tYL zg>@##c#-P*Z!P88>SXHUTHE0 zoBS~yIl!RdeOjO0PlcP4g^u! z$p9fS=@ud=or=aWRf{A>D+r`TU@Q>;lmQ6<5z^_tX3I)4AW)Sf%Erg7D^LwoATd#k zrw*!Ez{j1Uqk={ReYPj1Z$ScpI*`9hAaod2G6;62QqOITs68tk+=on^=>XPYwiO(l z-?RL6{SWJZcNd`{5n#y!hv1{V>eg`lM}G?Dzdk(H_R(5j3semKBkZ&)5+7PUcCODM z&<YJ$QSMb=U1Z@`Kf!WZ2D97lh5{O@ebWL#*OM zN|fO%Lt$p7swiS9g52Vm5qB`^W=t1ItB3-PW}XHHu{l&MnY%el1Zf=F%{)+g0E>BC zOTv+X1)&SUiCi-*#p_^jy#N8cl?L_W@Bz^fsRS;1be_EReDv^L>d|kq;@V#rnyJ8G zOI2lUq)Q3dXA*%xtj*yQVw6yTP%7qGE4)}hqBOO$je{_Py|%Du+}l<(AYmPYz2gpW zh$b5pbpNA$z#w^ypbOx4Nbs*?w%Y?93EBc5U><$_ox*!J?UDFLc%?lFrHTZ25~9ne zr*GW=Tw%~ncY^JxM3qKH9;_7WOqr@Oacb5oaK`k3KA>{z1Tw#nR@mx&YG_9xm>JNLM=-` z#501IoCZM{Ws!sgDMy>c;H1;FzyiB=NLtn%w4se^Eif@dLIyNikYSyk4Xa?QWrjGh zgqN)2HsdXi@gT^ITV68)>8W2il|aE{K(>T14j@cYwS_8GVdD*ViKSY%fD;(1NNTPJ z0Ta{nDh{6V0YTuY?p6LlI%EPwf#1nF^h)er@(Q&dh>Z;L)s=nD_NUc!isVWp) z+8+eIF;8Xw{{V8 zW`-D*GyHgK=#ISe(AOrlcLY)aEw*Vff#TZ^5kW3lf^ne#i3j6B9R~RN1#8(7wcbqe z3aSDiA4yDdI!xtf*%rtUcR_bq;Q;R#bsh;usKr{~-mjq!(`QT;9zxWEodf|U`sz4S?kyRB7*yA-RiH%KdAN735dB$s}tm)TX zI6CHXY6VV=(GCwnnI=kYRa3zEv={&=V8T%d9@jF~wl0^YuMmS(jx}-3_TC%AEsI5_ z8VX}83dax$1|#FspbE0SbUEw~nLYow8DLI)YtOjl6Gc45EQu$s@DO_YNS*S+O9UjL zBnPg(jrQ~Hu6yyzHKU_Cz*HMWsaU18ZK@(wzBvl0vO_HjTLm7_@M9n!|)HaY>-7~i)H&R&hB^Mx1- zLh%-Exv8vX6j8e>@ZXn5F9U1D)17ZP6QUeA5;7+WnbmCtQntmpO9U8R-2{%2A($+v zRZc+J9>KYgU4+Z7ZiC$*k-^glX-PJtApvn7`YO0CfP@j1K?M*6WkOV*UnwhnDWE<2 zHA*=~B?5&C-Dqe*1T&0XNZ0~bbBqAW2|MFiNQ@>zQd$%fo+c#3HxR37*Pu5xvke~W zaRJ(L!)6P995QwIS&Z)KEu-QFne#WyXJ&D1Q0*uO*>M0Y`igKVBA0a-1q76u_`kD( zSAG)nV2RBRtKPY5g3CzFsbeE*88)TA|C+o@*jSW4?S&C-tO*-e6aHO?i(+cC~KbGAs2NZ zWh2hz0E>ZuchNo`nx1a?@(u=HW$D%HwAp&$L@!%W6j4PKRADMsB8You2p->c#6N$0 zKWIWg)Wcz5kU~TOPX+pX5iK8K}FHc-DVrnGxQYo2`Fj0!kEwr#z zRTOF-@2lw6gM)|Q6XO{Uf$%+ttw9Ov3FTA`0w94lcJ1E5?;02+657k#T|Hali@c*0 zaaDW!H?4ZI2U0MMP0n41Kp948nL<7MNvZ~5RF@$3zWNL{eRI4{vJRLeY z&M_1}YZD|b);@5ymb&&gS!@VM;tl~vUNf19ULieb5I>=SVdt}+hK0k`;h1HoCmBrl zcywfp0%NXBF?s-kp@w-&2#m)}jk;xYfpo~AGOERoh5}{dFFG^JVLTV)*yUD zMkj&v-*-IiLk#dZ%KEX@T>0vwJ%j)v9G)whvnfLY42*3wb&4d37|Gw0x0|g%-W<%c z9gsDh|Lu_>&*1fJ)2hM#`kZ zn;LnUkVucvAMF3H0oY~+f!-_2{KhaG!~F;TWN~Ceen;80K`PeJCxScOP+R7df-_FZ1|4+m(_&J8 zieKn`myFD4FbaRc*Bm`OGKBwe_s`4f`?FvWF-0Hw7hD!2bgdW~z8W2d~da zhMXRb5@)**9N-I#?81Ydb;Ltj@Wjs^j+M7?lf45?TIMnq!BAZ^FVlc)qhPjyFN zIBhKd;PTCKi`1oKyT-O-QPj$ertaMA@rHRRYUY;_GmCg`1`t15ig~2Hq(OQyt#A+I zp#o1-NGuUSP#Hb8vO+-w5acWYP6P!#kWfFGM>wxlakp59K%?{&GQJ>yM+F(KHw*v< z3qrN;A-&KoE_33zrtyFZb;J&+c)~>qBo#z$7(fy*fUt^17{Wq(fr2DZL`8y#BNRkc zkwq9R5fUh)1Qb+7K@=866orhV5MYcDREWV;MG-|#(54Ibkdjk&=vxDQ2_gvuRFViJ3L?A9RAP%D z8%QA1!x9w)2rys^5Jn0lWWiXUu9Vu!41`h;79u1VNfb~-APC3;fFmUmu^A4qL)tKy zh{8cd3xNO^^rC?A0T5(>M7%acJlI3%`~D())NN}?7ALv0{Y%}zQYtEj9e7m@>kr5Yg2pga%CjLJ+>~q_Hu2vHb*S+w|FKO*p46hKi zhiS#VHO?ZM;MHRosAEx5NqVeKY?*e6Em~9dXD1A2MpVvICazm~ zmW5im)tunol;)musv62z7O6bv7S@Z@>p4{Opz3n&?^mIDH>FstO1wdPTuU=x6IStq ziL7EN>TuMzgECFakry)pS;@rG;24*K^6m45Th0rw-T{XH~nHxn&C&SX#z0Gj>eE-Q8f~A~APUi&eN-YrIU!oMNs`Ow7h6 zs;XI67fTZ0VSKHnu#Lt;ER1M00~J-h>;a(#k%O$`o^U#J3c@UeQbmMSfG7fp#8yC1 zSWR!G)`_xC0}h%6IxM2dBRTpMxF`AU8RjV{=b3|2KZxZ8F*_`CKeRj;-TeQp2QXyGPedV0wN9-%iIYwH33wIn~R3HykTq`p@@fwtE)^) zEWnnxGmFGiRWWQ4bnbC8i&{c+VR_%to zOhha#Lm0wUGve0p*05ReWors>aaby`ONuzeJp)c!@G8wb+MGJj#G$H{h*0ZThj}7y zDP>*Mg;LbaLo~G-wOF;o+KI6e__eG;-YH5PGRrP3EEsBmHA128UZ)>w1PBp7ALILf z7qx%7ooSPQLpn6m;hSeQ@v6t))B1a~Ri4clQI_}N!ZgV~FZ@}Zgqvt#(8pC?n(V@u zPj2tj+RUZX_Dr{BTvB}TplsQdjJVrtC$jwbX{U23%Wh-N&0Dl4)XhdcbHHqEme;3V z&(ht$4YAlPIj!fbJN#%$MUweio2%eI{^sm!%D&3aWX?OXL`2|KR@aQCpD0zcYcp)n`KgxM*``#!sf=iKlYGjO)Eva<5UYjvo`|7UA?AtXK1G?QgXtI6tzUuei zZhQ9Ueysc^jO)7$_Uf^^b~;fkA)ZYa=*wK{CURdcq`OvAZ(RCZ{WjyD8l8n zrb`icB4GXJ!-fxK_f3U0r7)*GdG%`7s_W>D=LS6e-aY(BXpf$IAy6cc^upGqk&K;G zl>#gjJ=TIS+Ef)mKr2-ZvY@1j0;3dz5@J*oiV7&QEQqwZl#t3&C<>yYEEFQZtk26~ ztx_Us#w;SOw5+H_iv+;=S7LKvWwx2W{p`=Xw+la(>JIaLWBavM zb(@d{Q!@gT5{Q|GN|>r}vh4T+LdWmUE||F&T809{-=*r%d&U_TP7B7XWsAV5e-B7_*Cq+JfC9h@G8G{zK|lbcWF=%Ggo+|TNReWSqOpn! zq9`y$K|w)cs>O;ZvPobfij4{){Ah@@A`3!_umA-jA}xVIf1U^lbGbk$AI1FYFZAN& z{vo^n79aR54gc^357d@emH)}~jqF^_pX9lY7=IQ>TO_~vEEc;dM^_E?J6HUCdW^G5 z-d0-ZPvZx;|32V2>esk|(i;cITw(h3yn+PUuzS-9u%48eh7;4rjlLEsIwCW_YaQHb zZ>`gZUaSx?b3uj%8x7iLu>SV(q~L_;Q3H@S;ayiYswe+37Q#R;6r0Q}f_UfrgbZPv zs6=3U5QXSYR%X!A6_F=&v5cH1@_~rOQ+WZu{F+ND5ST#DDM164DFeOfdccfyIz4BY z!{1#fai`J+C<73j6cRzT19x=mcNXmc1KCF<3Fka86?$G2XO?%6h={v1>&7X?B4V1F z7(ybiM-G7!u`AA-jm8M`-9!!r16`+%C7uHtCLnzq9GM|ch8RihESlU z8;Vpxl;cR-LWl$=kwnXM+hP(vlto_?QA6M6qU4xT|J;AtLQisqpg{${xZX@RnneS|RBN&v%XC$i>$Tk&Vxhd1@B zh-$gw`2kab03jq4kOYcAL>Q6_AVvtRQHmg-#A2~fRal~;Fj0ys#egWX0>Uw3D#0 zu~R)jf`GC~A}az4p(6m20tp!;h&Dt;)e#q%!V+o#LU@D?uq8@>+EEmO#VVmt1r%D6 zv1C{UMONB@QY;2ADiQ%~C`ytbjA0^*R-)Ar5nzb2rvxBI2#Byz7a&kuq9Wjki%5vS z@zetVh=CQFrlP1pY>1g6C4^D{79fS9SX3CGS^&s`q}G;!x`mMuY=xjGAxU8{lL!DQ zAW=yy8bDGD6p&dY)RK~B02Lr90YxB@BvC-pNh+{Vib)s)Bv4R67lB*#G$`z8xkgO>ZDG36h6a{2f zpaW1A05l*ZY$8qQIJ*hFxbGDMjqw4b~BIR!7{ z@TgTHPJBQg0f+t;!!4g9+vdPXdJplnJ8{hI!~E}yN+WXk`TKqL?z5MG{a&g}U>p#v zdMrjlNJ0o0Uq9>zu=;=4q7eN_{{5l-u4*s!qJL6RkN4;-UO%n=9KW0%U)R`d|76j` zv2XU%kLL(GSRmK-nhji=`(;Jenr>mIZD{0yJz?*8?L{D&n;($_}8Z7JMVbOxhNLc;Y>^9=qHen+dW)E$?|7AmSZ5$xjis0Xk+0+ zt~rM@!cuQk_OO+bV<$wIf}JSg-%n5PWc|i)J2;CTm`rn4L$TKl&j;3rPFS@pTJSz1 zYE5#Vp*0LoKxKB%(hTh7q19O{H#xg`@TQ3v$8$1ajy!Q=BfZAXMDw@bzL^2`?8?gS zGb{Sx)nc|p&~&CIdL6v{0O;?{%bjbfM620y|8l*Dko9rg(@zdwr|XdQ@!H5*JK<4H zuqf$h&eaGLU#!&eL-db47eke& z%p6{QV_|6DNJBLoQn!PzO}w#Bid>(;Mp*q3O+uq-~-0o;Fn-i}6k zI%YCjsP>nfJMUQ!BMS)p-l_gzFyKY#iD~jYomoZ-2Whfe zbU&YThPXTQ%KQv11skj+D1he^NMvGZo>_fIkwrO>fuP`KwPGSu0Y*qzBB2TuFI0d) z&>^3YA-anMT)23XTJ9WaoNI3GgQH#td15L2eKkjDY+xE^G|!KwZg{9DF^diMPWis$ z!QyetHKI5Q#1TkP>*oQ5|91nE?}$F6TY3&&gX|$@>6;Eh?EIXNyYr^pj%5^wpF7AN zjM4Uev&8y*6SHBP0&(c`kFdF^?}!FnCYDe=t_RW{ubctx0s{w|(eVl&;hExhcyXzU zi5`G+T!Oss-rrmfCquKCnq6Y-&o5fVSsn2SVElthUE zB?SqI$%iZ>WrL5cTVQ}Vco4HD-`XPnaflEJ493@mkZPvMFzbw+Mtva4a0f}gr4Df8 zrD;0W+~YWBF2@Q$E?}O(TUv6TkZXRcg*rtfs0P@5BM@_gW#4+#t^zO@4-##zo@Zg)~5o9>6FAilgrhpXgG)>PRz*4l@hIGd)*_8 z-+rH*|91YbNq`s^r~qhR>GFKuki$=S^P4vFaQyzD0=|)<0{q&KK=5QAh@xO6U z6M5o0eMIQsPM$xiS+NT1!$U86;)`gaM#>s6Bn0n}JV8hprc|*1qp{B9s{Hd8qw2*Ts zpseR?6PCKIEi6C;5U#sUYCTE}iH+(LKRFL(mc;R6Cy+$vsA39%lmoV424f}Pz zoSY2Cm0rUx%L5x352Wk;MiBW#=e?BVxEVMofRspx;EkDaf`EWg6JWT)8+(BQ0V7Bu z@W-VI8QOFTSf~yrM8lxN3<;lz%RAnQ;%Lxus9<}U10l4>j-a!`A@+9S)S}DK{}M5f1J^zlkP!+q95HY zL12oDK89389JL|G4;hYn@8W}PW*C|2pt!Ik6o^M=c)-;X@sWf9U)e}~^Z*ak`Ln=5 z7@a!^Qr9fQGe>RMB!^Vtn@=6<=>tp!1(HDq5L85!&W8mViQ`K)nwq529=fQ;FFu>vO5E`w_4E56mR^&VI4`-G8K9Gyt0n ztCYU#se#*KU|d$y2&UoCTVHOkLoD9R&rUhuO-X5GYb2g9binC4z>0 zhRtK)@ytW2RvzXPyT6jny_nSRg3eDG7{hN?aK!CBu-+DHm)_)1w~V&dW2o%=mJN}4 zVU#L04+Q5Ji>$coR_Yf*OAm5kFo+>fLCZ5e8arvc$Y5^LqtnWYBE)1>RZ&(k6$M2^ zRbUFJ#S$V4BC3f66j;Gk6;V-DK}3vJL0}>*P(>K7P@#RaI4_q-|}hYE~kMp%w_mf}#o|77G+bky1ri3W~_F)&*pc#z-7QbWvE2 zMH3rtZwsXVqf9nm?jci-A+aN^HI~!;4I05MA!qaNSjwI|(V;4XE{l&p>u7_i<(k=` z#vFK6n|ee)Oe4vp;KP!+@|rb@Q(|5H`+#g4Z7F83v3oT|9vQ9Jw^@S7*f3}nr1`MT zAe8`C(^nGIymsCOw{_3Ve12`^g)=%+&MZ8q`_^8<)Ixf_xLGa{##2e)`uE6#=gkX; z(xL4O+1Ngz{{5Ri;|T>6w>SqFI(3|01KWYo=MkN>HDEpv?6%5<8~%85w`pVg>3z_5q0j%!wmo6yjOUPA}m>*|1_T)HefSMNy_U zg$g1FhQQiGV2KSToYiiC$d;BSvYNMzg_>v}!+EvVjcZw?xrbbA12X;w!65XZ)sVsn z8>vWY2Qwk8n$e&g4igwCQ2j77TAF({MG3hyk zobNhH=5@nexMK`y?Iz=W^4s_6`^FP95phvuI`r)Mg;7ws#TM z>NYy6PytwQpV$ChrLkmwC;-d@*eXZkzvfx|UDB612qDp`QC~4d;*!Bt5BT@j7R)W( z05OZ1gMGLNV1d@ck)D*ni8=3UBrT){0FJ|^Uc8yROLc>izTPo<&Ln2-T*N$58ffOx z3ZW24nc8ek1zzt+_eZ&XBj0!fJI$rD1UxO86Gxt*bd8ItBn-@vEp2NR9@zh(Zz%y3 zI4_WWLWQ3(c!E+z6tbc^7&NJeXKhNaKrhV$7bZgqwO zB&2@9G-1QNTj#rqee3`>3^85`f0vwKe(8|=?virR3d3XjZ*7E{AqOPRvsh@Rz@6BV z5tw3V!Osc`3@pGlDo~2&`Y_x?utkOd^dl9SaV0BN?u_vsP|Zxm>`( zbmj_5hv!MOk_5|2%^56N0{bVsuLo0y+s@a0G8_h8E(&TS@Iz>_c_@TWb-YeH6H)pai89ty56)c?VQr9h?<~y*~7Od7dRUnFV&_hSWQD zox|+#Sl!&JaN`ktHcohAVh3OEG~6Zdr}QVso5nUhr_U+ST((N;gZA=}RWE(;ap5*} z1nt(0!U1w;+(M2##^I2#L_nZyD^7gcy)23bdeXcJjwKGCEr{ zaoZ#fz9Tv(@%>j2Re}E84TlTS=;2svTlDcL$$=jlz{ZXF>kGhA{9rR2WylsNJ^r+4 z@FgEP6pRb{{rQRReGR-;7tf|Ku+OaqmKQ2)h6sp zEo*Bo4MgjTX%N7_Zbbu1#a2$gn(W>BkFtTFPXO)H38t5}XfrYc1eA9o@FY(1pwadZ zA6g%;%zDq9{^->Cf5S6$BuwE`J8Ud-g{}%i(Y702;*v5dpK_nbSNX<-2F@56H>>LQ zr&F`vz!3I^RF)6&!6VFyW>bGtJM*ON@GDKC0Ce^l@}?$qnvSdHlM}MI2=l^84xBH0 zzGzxEBF(=qHQY0zplvErkCeL2idy*@cN*f#WHI^#wi zH8?nwFi9q)cqmUxh0}BoU9-LuefQ*;B!o1TRfneb zO^`F39F15eDAsPZeQ`gv00UQ`ry0(US9aQ(L!L6`;c3QBtO$1>gwTjwD%xroc6*ZO zSl|3$?NXp*R$anY?9?GblVpK08zMWEkrbs|;E+NFzMli?_6UG(uR__fjR$%SF3O~G zI|e}D6u`tB>(1~^p506nr#zhUr4T8{3@TmO)tXI~RX9pSIO9gqf%rJ#L^739s-VoF z!)(m%;|ZTs_Nmi@;XEg&-I)CiwV;<+&dSd)cO#6&H1gJRr4;A=9Tc&SbeilBrokVJwjha7q@IVayMT2+!o z)mkLOyHc$RnY!_&5%`(SMl)a8x%oqZA|R0wpnhaWJ33YEQ*_q~n{Q#Pba0A(&&B%W zYq+B@J_C<+%cSx>do8DqW?`dew^{2Kwe*&UuYGd#5}j~V#Ly&ga?EM$Lm5d`Kiv$JsS9Kh{Gi@44>JM@SYhv z;h17z!+fF6Se_f_i}{(DY&$0~w9;#NxwCGKY|wW}P1tqwmZHVb^k){qdOZ>E`-2QX zjAsgx$V>=`x}m>dAOMnpA|NC>pn^aqLlDG~4wVXqL9wlB`|9E61~lR_bcC6R(^KgX z%>CLJ$+L8MSxAI4G_a!+k}EeO*mJur01y zCiCEjDs`db1Bj}qqOeKSwi?zaKDkb})st-N#!8ylbzzHvPH2QL0)SR<1c(U0ZP940 zD=K3Y7{QL^fTG5m83fUq2w;fF^O*A>XAj<(kVwZmcBcCp*gMv>*C_6b!gd7+0}`2L^tAMk#^<22O& z27i%ku+1S@|1bDI#ttyk3A~QzZzc#_3Xd8Ozw-PM7TZ%e?bzu%^}TvURaNV1;nC{( z=9)kz8fl)AjRR~P;v(xWgbS&%X-@2OC>UZ=KpF!B6%-p2LLlVg7*i8XNCj9o;y~W& zl5^CS2D;cALUXX>WG+C+v!^{d=NS#T+IV;^wN+Nzd{xXc?WR;bYjcMa$RE7eJE!MfZNrF7@TGw9P zLA+bQWTBC+T0gi>sC684OjhZhFx@3j!7QJqZXE#Gz zFnee?*PKJApV5#x3eqs@VkXWGd*a*O2iio0xYAoRb?4?zDQmDAg zL_G4w3l!u}$^Ih3X;4_AAf}nglsmE(dW%!i(Tq}XN?7@!XM^D^@|w$-vCOixh0+Z5>~4tbm8#?*v_m_sq+m z%zO3e*B);-62agw7Dz=9NWo{l*zcT6!ST&MFA&FmzBuQLo&0;FdJA1jXD^GaQUU>KTK9ZEKd`4Gqf?CIJ`cPnnpanNH3mTW{BZ#4P|C=H8*5T|TSvv2o zvl6Xo+De8Kj`|i=iGxrPG{YyJR!F*}0I`Z*MlIyTXAqQ7K@*CiVh}_?k7x>H5K1XQ zQt|>ie9#^;+27?ew^O-G$uxg9iQhZsE*vKULTrem6q>@Sp|Oh%&+Qc!C{-}zNdqL+ zVuy|c`JSi&qhmA4=w{&aDV;Sn&fo^k?`X0M*J8ju@rnuv^XX2C#hfQp>dfk{+Rx)h@#(&MS z76T;l8MHf~qZ|l?q6-!xF%*GA25R}}HXv)ut;o(i5j%KlTfIB3$fozPLzPX5urAbz zn9H>ptcZd@hzIuGY-3Y=#e^ZG$eptzg$>zcsn0Z;KepXfn^$3jpru&FsG)QckW?hq zRV0Xz>ZuIy;V3fD<-_vv#~L|K440VTg{3&zMLIRvmX8rg;A5Bg^)` zS;M6JuWu!ehh^#!2SS(+AB~RdGQwGJI1{D?(IT5LWRWD6RIcdD~Rn`5z57+sA z)%yRWAa{V_3}HoQ%y0 z6dgILu(6EhGBjN?D@AJNSSqGaH!|vy7{)VmMyikjSIHG8UFmVJa*042F@+!3I>Bya0#*4i|0Yo8jLMhNn zN(jP*AfN@N5MW3WlPyC4EMmyGkqSsqP#IN-cCix}j4P>JGvcmrV%o`41wfM>XFkuH zZxaqfnx1H!u&k)V3{G2>a)Zhk-}IEI27#~Km>;uQhfIl1i`QDryV{p~&E?#ZvI|nO z$x~XVe6w?HEsT*?gF9RAxMheJYSwxV8V}CYfE4$<))7<-KvYHKP^%&v;UOUUql|>q zm`^N{SS*Cn1XUs=1tI=`!x$q3VC501wu#FnXV!&bFl zjDWIqWSSNzq6UUTLlg`kh*}_F3&b#v1Qh#mTgh}@4ECo8WJ75o%thk-a3Eqs5Y#J6 zfQ*F{MtoTKAMXFwx~Nr=SJ<}Fhjs@+sA-3%ZQvfXo}f6h!6X#hH^l?40AsBTj+dlx zfLbCqi7FyqMp+dQZGl+`q(%bB$*Un*83;%*Ktv=&SS$quKoOB-lNlvsiiiS4hLbXi zV7 z@78J9gqWCZlqQ5Cu3BVR0t8hSOhXt`x3jr9&3=*}WZ4Qd25-7yL(x5~`AG5SjQ1=WksTV0DP$-K;S2?}~f?T0M5-=-R zf(s#}D+4l?+z{#G3WNd^QXpYCK)ekV1sEtuVU>kWzvqF_Y9Mcj`hFS|J+V7s&I-xi zCvE;)+)+C|^&bS2%{5`_n=K^I01(&k{T_TUpR0}S_;5kbP7E%Jgo+3R<=dfkK@aaw z-j?N{Ick&xjw8(!eX;t{R5)Tfpn>j(PM=k+sYrBgp#V8S?SeHB6#o#5)c^-+zI^uKfUf8qaw^8W3+xVdG7$Z&42Ho zqe=(S5iJxvz(fzMN92P2sEMuu8bwaz2M7oj_R^m;ADDsrFhw8MH&Bi-2je0kwkUk0 z4}Jrbepn&-VyV#)PcPbMV~h}g)`Dy;_N2MovE5Ac}B^%x8HA@(MbXX{Y7 zL0*pMf~=1Cr-~rI(;jhuZ}Fi}=Mmo(YAAXjh&($e5d88AJ7BoP{s@5fO&|w?cj6u> zFYv|Vf}U7Ca$cK7Orn@XBmm^?p*GFrUC>Ds3W|L*WK1A)#-X}MJwpV_0LZ5dL_nwj z39qt)clu$0-wb-H$5~ohrF2RZj_1D))8@=TB<)?48vgHZ^2nVnGMp>?|I?}D)cafe zan+D*Bf5qJ6XDb{ieAj@KPjO8zfcP)E)p;YFZ37@fuFI+SKCM7ds?>vp22}-8pG;0 z3s-bJ!4>|gWYZ`+Um-P2{zdY${@Q`$cqmhD0AIYx&OQrnfMefdD{rlAi z$^U4^m$6Kg4oAq16iD^3zblLt3$)?ElC8 z+&__h_MGw}9Q_`hGuk)z^Ju(L^*Lz=K>v&|b5cNEQe+u@n6ANfP5QT-X+p#n^uLV*T{A988Z zf)AN!h~BaZn2<9+n`4Gof6En&`*4@(hv~e(MgsVqkrZ#C9?#EKXC8KiF#Urp(nc;t z%dt!RdI!^+hU;Vym}v(|%*q-5OvC=4rTeqRnC+9Dt4_m*Z927dd_U6PVRe7YIM=*- zT_|&rYAMBSLH)IG21e8y`Otb3nxMi_?)q~?oUZ+U2Cjdoxqbibci$rA8Rk~~@# zaw=X3w*Irbklw@1k4rbg_7_|aV>H!4l zmYa3>Hha6cpBxu|L6%e?^BZq4MIY?cn!cJpzTf4Iv-4S8CH!n4)1<&-4fhQx^LX`7;{+a)5e_Q$A+aKDm>;E74Z(riu@7JZ7X2SaE{xA8s^p`=Or9DPx>->L@_&>it z*MA4@g))jRzrqX}pX=$`{Vx}VEsK$mnk)H*V+mt2&D~Yn7gp4&7hx3e&U7-foM%C- z)-i>4v4wde>O{j+nNdY#UMeFPQ6m;JP4W4R0o3&UQyrkgFn@AZ$LTN>e@_Bb$?s9| zOX3`!@$jB8Mg}PYhu%hrqoznsgpwE1?He5fctQ;c^d=D#w7^JvHmUkW^!{=>k&RC& ziynU2;LoiDD(|u$PgBbGb7w&^)$|nqdwV(*_cmNd8eF&X*Uf^WyIMq}l*00{ws@G7g0fN*3;u3LY#oT{6#2AVtBhcC9bGxSzT~)1*6+7Y;@0f6nr*lHY)Pr+ciFF>ReRHa3w{^<}Ok3i_|sHPCc?QUxb zz%$=^OKq&8Q407Xm^IL^{V`OmxZn)TRnE0k(yw|_#{~!s8JPR(pw0GuRpQZaOF0=> z7!kNmkedy1SqNAy_bpb=e#heemJduE1CwTxe{NZ17?_0B-akFNB%cTBlG_Fh&gF2_X_d*VV&z%kTR$<=IK^qPjer zu{@a{es@C*9UrR60lH@IZ}+B62M7(B^);k*8m~*!YLggjBQ7O!!3C>-a+EMV(E(1< z59&P-VGT8^+qzL3c7v}#bJEnb>-)TGaNQEk+>VQ^Q7QZwVLpGpHa)P@!~pI&A(J6O zf;n0LSE_CAJKO)m-&5sYVhWk*l@$%mI*arQ!jHriI9=p>ur&~V$!tZR;-J8ZBSo|w z0h*DD{)tgT^3@C&9bG6eQf&G?uu5si?^l1bhk73rT;(zdzib9Bs1pUYyf@go)T%t( zlScgkjKR&>OQRQ1JX;5Jb0eP{|ADI)1Sy|j{56490yfwgG+gZ&Aap1RdO~pIic%$G zK7$Qdm7x_v5`r1CQtLYp*REGsS+qukM%VBfKFGqnswg$D>V z3xoFR**OP!gZ#V((wGXN+_g%Kwm_ZU9f{by8PJi0;9g`n+yK_RT=UZd1BcJ5`(X$% zi)B?<9bJdu#0X*l!3#`?e*u6VV4O_WqzSn!2lY)% zZp+p&3tInU^Ef>?`!<80Z6Lfq$^PV(i({pN--u zFQJaGG#lHchrDWNsB?na3pF2`@t62}$Dy&7N*s(#)3&N~Gg*fN0JD$>CME1EAVLt6 zA%#tDXBQc_PYI#4_Vo5~bpfHMVe;T`LuVW}3rs-TXc`k{n4C$YzZtQQ4OhE%8~0_l zuarYQN`0QO4_kelvHd<=ESQjoCoHKBdSk&HeH~z9e-j!!hMApblMZoLCw2!6?9V>| z00mLC2na|3jK(vPKi2C(c-*5H69_LYP+M0VMK_Rcq5O}xy6LFj1CMg&w0D1JadWWD zafdEO?w6i7H0<+eI|ygisYB0fqdg3@>ceBbzEV3x%cDJoiJv*^HYR)=8PIw#LwEhh zn;SPJ5_&2FWW#fS7hG464E*lW<}w9jw)$%X1d_Qs`<0qIHM0MF{D(*VO%k%mQzj3= zVyhDTLC_nFi@X+oeR}IGK%hUmQS62By^EW8>yW9s5lOxjl!aUfgaRyyfjAcexaC`o zhTSy(a$;=VtxZ?q!*LaLp1dk;UYr2sK^w$L6;CB2EGRb(ww@HPIMI$(S$X4Z9uG+F zBOMp<^t_y7Lv_Yo`131aRJ6M)Cow05lUi69L!)H5x9;aF`HoJY`51A zoP)aj-LEXo1<8>ZiNcl$*#J3h2_d18-eQU{l*gq#TTr}~E#I8h;=K6Ic#zdSVX55-Mo2PZYU=mPn&`S zv86>J;)uwA^~5BD|1>D2mbyhk!zQp12x>Jq$NBVsp~#Ok%P1P2G(X{Z7lYzO@>2y6 z+(Gpn`l2OO`Zb1)&PKgMbwe*xWk(zum`NNc=L#cv&mLLZxYK|;Usl-8m!pYc(bRE& zRPW4BO`g54{+4^orwGDflZoqmomVpf5jk0m)G{`8;Ae8GpmodI`fZhhTw|pU75B7Q z2bcFWqkbm?eN6M1bh=-DdMRT$;HbHV;e5%k=Poy;QwoXLRX7*}fP1S|G_F0y1~XT^ zkY;LmG^)%1N-01$*DDBC%2n^02bm>nQ~{XK9%CR5rrKaA`WJ@t(}dXrf)xQlA6lne z-uuJwc@r(?*h9}srW2UyBRN$4Q_o!ILs{EQ3}MzdQbS{o29I5!dAz3ilnokM4l5o| zIRs?y%YO`n)hHC&^xicwzm5ZBh*j^8r*Fq$+Sj%8@J6^DrD@>z*7KR;ehQF)pzG6i zC`kByx8~?FLiX#(+KTtqGZu+tYz&$xv4Hq1Q_n~myYAt)q)vmb!z1Y*(mbYt9Y$c# z&N@DLX62^uoY03SwL)Itu(#ZKX7fGO!<<%meF$0x*+e;IpM6yU?*`tw%fW!>hb4JXD_+304RPqB=Q1B*xM#`m@c!xK9pct%)wy-c za2){5mhYSQ?T@&v(|ZhrBxUu(z62m|imA>+J-O$AbD3C>YXu-{6ig0E9AM}%vZN2b ziLVbBJ~{0oL$oz>$wI4>*1F|8&|dvJ@$KJ^ZAka{5JV{z#8fdL3?o9;%8H4QfY|Vg z)t)U985Q{2$kR!I^MQ_@Iu1JHbo^!lr)Dnaw}tJmFmo0E1IK+)=F_jE+vEL4`|H5H zr0M6Q&x%_RlC<|3glU7D5y#h@JB-~f_C`kT{Tgq&v*wz1*{1v zrBF-e`Qe?f@awQK(zqjM^Yq~LdFjoaEDl6;9(>+C5F)@%s zPRB^ItV%Tkyi@|?5p}}we9t5+Dwb7ZVU`Xz#E!#o*qP!GeLvjmnY3a7B8cE$pg%uU2o*dHR(nCHejsuDeDFGOD1_b_P!-P8A3S!Iqn5uB zh-7$Dqn@~K0qZX8_zt4H&f?p91##heZkt?XyR^2Xwi2BlK+_MmF3G}s5GXcV)rK%c z2~sA{c;OD$*W1^$^&(56+ww8XyoQPAzoc{n&B}Br7Z{$qsF87o?Tf!lA@j=hv(H?% zr$^u9>^fHGga{kSIF6Xn-mq1A@n}q;B>3Gk!l+XT6lN@0&^T5}a3r&IqJVWxeRWF8 zD5V_)aXAno_b_<+8MeGT`ti8 zpE%9|0HOijKQCwRoiSt3Fd(GqT2u@k!kVh2xgh43C?xkl<*3S0J(9mfW6ylk`d|pk zAm(`S-uvkof>V408XifU8}0G>21YfGiZ(OZ4+qG`cHcvVzS~WLIyo$=QDqT|Df#(d zA*u^GS?^1UnIJO|raGRl?kBCdaxV?&>H+enj-B<+3QJ!bzKcm+@Y;)QpPj=HF}eNY zx38|^W65$d50f=?#<$u%Gk*>AW7${k!;O&ysXUez-WPmEJ6<%q)`6`<^*YyX>&4!F zmET2~ns(1c0iezxG!a~^*G0BcMA)iy)K9hgXAy8jk<;H=1EwbQ>MXR>@)n`{VlFHJ z<(}HE`KW`e@1{;&ZMtQ1FKt;BxH*v>NaYPR;X|Ag=ArX}VtCDTg*euU-8YA$M@_QPl`nrM zT(5GG<$N~J{GK<;_vJkq&U+~Bt=JgX40!ce-O*Pu#Q+?toMPfcb445s?bQRF-X<_) zLVK`G3DQ!jON~PtUgDHPb!(429i%t%|3@2tAGeYA@$)#__3>BDH?qurRsL+&yDBH1d^9&#*M5uarkQ`L%w)133L$ec z$3Ct*^$lFo?v}l}wAHe$)6p|SW!GeE&oHJ*x9+!QG*b=_=BZtnP=+&`VT(wJ5M;`G zI(!bin>tiO;D_k{j_DOY=e0E_TTT2dpM@4i@t2^f;#X|hvQ>OOVqm<9GGyh0i9p&qvU;sh?P;O=86gf6Oo7*}h6o%a#vPbxB9O~K zj7QXni{~;xu_2@igy3X35;H)Kylc z@UfJ?hylR$zq7y)eqqN_aPFzmj~9j=2r{a@JGa+;+pyCsDe}_~hH~2ASmg3^DYzEQ z#B8fCXM!peojX&l7WV6_*@hKPerfEJ(uJ~@DqzGuO7Ah}SAR;k)zh#HF8N^jP`zbP zZy#4s)3y*jNmFj0t2}ZWNwE{pJ8!}7`+X4KohER5$Q=-PPYH(VZ}&onwm0F&W-fTj zRo!c*GUyz5`5f@nI-`dE`~)$H$`!72 zWWOWo62e9YPAp685(c{bZL#;*`buXj9Q4c#VKnO#o>+Um#~u_|jkR)zOxJ@&x-8dA z3^#P-b~oRwS)5ym&CKSUryFaQLv_r$66&)BWhF>5748X*Hz76wJZ9t|9GJx1U!Gt0T&C$;O+ca zGHLzz0Gz9+1_ud@%&Y#YX#Se10+i+*B@V&jllTy$A#81ASfpcFWY9xSe>3YnK41s? z*?xR<)_DE(Ka&PT@=-o9-q4p1#swq2_x3-_F#X6@(`#(FCswgDZEa%9*c+d5Rr|`n65D(1$+ZW$XN;;k+nV%A=lTv1@M2s+3ClhXrF-K6OI<#9YN;pzM#S~9a$InFnF+D!N9&(qTFL_j?Z83 z`8(Ps2i42Ez961zl z=h-)y71|vx*GD@=28)z+0a|6V#dqd##=v!&YLuFxCrV>ok7H&u=@_8R$&H(1_bnE(toJ~6(}vInbf zzq*ul4>Wr8Uywlb?Rq8B$u6ypPB@vJ+??yeDTWL*+Aam8`Q|4*<)s0NKq)%^Uq|Gu zh89zFvnGLS^|bu7{M`=zuY=Rpn%>;~{JQ!*PdzV}ujqI~ zj*kQ^ga9GlG$AkJ8Jz(gVN8OV#tMWIRdh(g)SbVtjf%UEmn`x6Z_)1H2i({@bsmj; zdSf6QeiyUn8}bJ{SW27fgJNu~C*9Jx7so6&O-R6i-joe#RvL|h3MIIcBbjk3!1_rv zT|m<;;OYWiu-?urk_L-&Arr?8#IjRO;|w!HKNn3HYN8^$q@~XJ3{0)kfkwfMMp{_8 znTW+vRyMZ6#*l>=A{buvc~viVpr(-k#$$ts!x0e`Wzh>UWM&{)X#%!tOlXWl94;m)O2y$YhNPY} zH>I)Lw;c^!jbUJ=yobN+{#og{J9vDZy54zX!=Y$i@ZpFWU!u?(h%O(Ud zjOjGOYPN(Z6$B^(J$9_qeLAqM$PVuAwFvr8=9dIy-g5Rfsiu3%lPK(Y*n zX4cF#fMQ@cQ>#qZ3Iv~aZ&qi4-rnG52*KI+eUdZJM(tb0*r9hG!~6!p0E8TP83Oz) zW6_Q_Ptve9ISKuRhzboK&_hC`AE>r+$&-D6#bI+fiehE313h7ezSX%<3HBoN6)fP^ zbX%zlrM-DAzrL1waJ?YjUV={4;~AV!2$P+v8V`>_(0}M$tcm_Zlz+-!@0dq;|>?Y+++7C)* zkwS+x7zX(kw`?=PFg8%!(CPbsg@q0?N!0}2gPBSRAozA+vj~CMAp{TTh!xpLr%o`& znu_R(_U*R4CXeDy*?@!(rY}vtdfl)fZjdCJe#!z^%GQp(v>D;mv!3((@#uncm3l!n ziPC)Z8@`8W$c3S8De$T=lBzJl?CvdcJggI#a}U&Bz53_7fag}!M0GAV6F!2_z;I z7{qJz^;z*@o$|w5$=|VJ^n&0;DiaOXaPPwdWJx8{5)aYb=-3~3e}H!8F2R zs`zUJ?m|F|1d&i?W>-?mSz>QCt&_-JwphVE4}ieg7%cLj;&6@nP0hwvW4dQPk|DIg zY=Lc7bK>%X0R$kS(V1CPsY40i`s85K;v${c^XGAAO~sqW3%noSV52k z1cHO;3G0BEDLhWu@Xx5`aXCrBcFr4oN8;2g@aVR>5$DPzkcQs6Ty}hCfvRPmC%)R} z&zC>5J{dnLWXy?L42Kc7*v|dU7nVD6 z?fz%Kmt1l4^t6Wbn&6DI0wW7|xOP%>-@=Rw9TtFl6%F|Zei{d=2KagFaSITRPuT}f zXRL;yE+}h!AvX?vtR$E;RK>(=T09+lSR9@3v2GIHQR_?YC#VyO@rUw=QOB0emM?1a z>uqY`i@y#fh(Mr_PJ#m$f?@X~$-TvX`Q7`#yW%Va4}^i5#24x}J+GL(jckzAZ{;bm z`GHa2h29szV+5K5$J)|}^whx;x7+pSe2;O*ntrkgeE)3i|KH0AnOcT4$Px%!o;Io#vsXrd;% z&@>v`%g^b>H}>I))j5IhL^h6hoE2xYHqpR^;9d^AMGSau4{0DLE`slGEhRxg&Gbob z-5vPkbctc4PQalk2`G)H!mz5yIKUyUieaqEP!s{26w;|Ccun!+!TGsPxRio@=P`+f zQ~aSGV|8qdrp)bR__;KyMBro__1>!4SH(vAZx|o7USL{#^5K7jtCykSaJ0>YKzy4e zl`8*B4iC*@oiJ9L!e%>Cj=OGg`;T0YE}c!RwmNf)x}bjyHqleFMRe^$hLJKCcQgT- z6hEukmZ>5^f?y*af!1TX#ET|;b3?wx7-sNwfY4Wh--jm!ZYK+bgWL$LF|AM#^)&~$ zz<_zeJ%4!0f$RIMAi1=|PADcR9a4h0Nm;`P9UPq&owb~DK36R+T*{7AmhbA)GTzgb zx4#}6ur+dnuwg>NMu>V~8jhvyuTD6R*?+7T@A}^v&u-WxjE0Rcq$Nh8P*G4o6`~t@ zy+yG6>lJ6GcQ&UcuG36rzR!?28_kfA3d35KCE7*Hq7jpWsj)?>6OYA>@9m?8qzBWu z-e>ar0Ud3-~jR+<>4Np0TjjW~KYJw<&RaM^Rz7bYZPB;lqZ=OZyVNqU75oFb!5OZ_YOdRLl z7C){+)`Es0P@vuK^aYS47e$6*M+0F#po`}elxZvZ0R$Q#Lg4+jEWjKCk=%i_`aQfL z`aYENj37qz!cVxs#oA$)xtV%Ai>aSkw8XZ`>emG8iw@F(L{?5Uf%m@_VGV%}J5c(_ z&8Lv#!V1MAle1yAOvq=dh2bwwa&tZ@A-J2ho)Zit>&1ku*iaNv1~2J?k#p+SxjkEiySHs|p(Ew=&O0fYikSB}XbWS&03?;*~b zG2{p%KOZqXsg)epghmi#p;!({DUJL)bAWWn2lr?N?!c%5B!N;Q63~4x3&7bC0lXVP z1v_FXXsc2JlWYy2!FUYjnCJ1>22Nm76Z-6SR(?-GMO9J)fXlcCuF@Yr98M$^eBsvk zO^zaCrahH@Ks(TcNfJSX47H|15)S(5xC87?#+S4MH_kO|&`f3zq|2d&z%Unmfej3* zs(qVrwXm*oIuli6<1VeZAcnn?k3kUwXS0X1o2!>_8lu7hAjqLQ_$(fef`tqso()J8 zp8KAxfIg~z797G<7?KQ$B3LQta}Q^?q$ijnz(D|53PfNmStLjZkc1d0jDkc2U9P=sAadknLqscCf!IC4=?0`l z>lMe+fNdF0H8}zp5kxwWTc9mW9fvBQVd3MKl3}HfTuqS#Q_}(3eJ4Qsw{yhvo0E@q zSWQ67a!=;V2%;$#9@9bw**%HX^|?5dOH%fUfqQ51QXh-dVTTjeaJm_G>@oW08(gbx|xCsr3X8^f+&;V{Dp?VbQ9S}g@Kcp>NbcfalN z?gfYlqcNy3QCNb(K#fq+y?#DBr@PfbzK9;a;%#`b@lQU@MpF+RA%+ad84Sjc(0ag- zum)mDzY|Zt54o@_#HZAMhfNgJg`xGuB(nsx8i4mi2Utr7gn54s8t*a;O0M&XU_XB9 zJjfn?+AV@a_8uQQt;{1L5+Ow9r`RUgNJ0kg9~B=Lc4yzF>EDw7C@!I@YKIjtNCooWbZsl`lNe;?Q0ME)=4isG{f5~FgR~<=G!6fCcZMrerfpPnkgG=jQW59KDZRYF4eAdr# z)Ky|aK&>nad>0JyuH0zx)>bp&D~4S4K2bwyv)ABx1Bh^=Zu6rJe4NRmZEuCeWzw*r zDhF5^Huw!bY;~a2C@cp|HqE;I*!sGkx+H*bBi7fc-G(1~%z6Uce8+tusH{Aag!y5( zK6k#>I*)K{Aw3e5?I^2N4}2=rh;&j}g$m4|DPL~6$$H!nH_^2(t54nX_v%faOJ=$4 zs%XU}ij>)nM)sTglW~q4e@k&T#f%_Wib=7Mg^UP{xh#O7gJT&Pefe7n;|em6I_3H1 z;l%WuP33G}sUk14*F;fJwyXvzK4t`2*gmloLNWm&$PGQP)zc|{vjFIche@8^U{5*9 zT}1`UagT0(E`J1HkEx;7Cy5@F0rP5*ytN=85IG2ir+o-gF$6x81Qxctqf2Dfns>CP z&V(V(HhGg8Ad|parA~;R;Sd8fjFJDt5^?CJav&f>E zmg5M4RaU=BS#Cw)*XOHDX_I}ZmZL*=SDY|^3YZ$X(~?OEuzJD|-T7HQ7rK^6p@YMEQ!F$aN!>D*POhs_L50ZoG(+*S2fOTgo*i{N_G%)5%--Sf=7GTOYmY<-f!lcxAc5@r z7&E|gl|h6Xd_^%ne!UZXb!^#}uexyYxbcg!aJ-=SJ^Egv8;l}lvu&=bKm^nfA{une zPox;uDaK?8l{Iw<+CEjlo>5ATz^wgP!VftE%5N;;5Ry=oBov@@cIn6*>acs>vWS2< zwN(TXRmtVW}Cil;k6~Q>C?lu~F^!xAR z?vAwjBTzL+S3+Dau)lwM%}pN!ixCrZM)yq11effJr5ERvEW9hpb0^`?w%C9sqAZY5 z4Vcpy0Hhenwz47ut0F)yT8ztHau{{^&a=8%4zA=Ao&uH#CRzkO;gjENfSA&ig*875 zDl#h#&PUCZRZ$ccd<^NrJg!dXC!`;|PmAg7<-e5KwM_^ela>#YBio776oCllb@c5H z;>HL#o&<9!Y+dsEu?+)GAR^12_P6c`5WqQ~qXHEXoStVX`hl6`)JqukaMRN)eGoxx zh;^=OPr~ z3emOJ;6O|{EqdtU+vT;ZE(Yyub|-)xG)mFO5X&f%2RYE5s7~WChfk9FV?}}_1qh55 zF&HR}J>Qa?b3@?c4^B%1s!9P3aAYN8ya`x8&JJB*>(TLc>P_zvPJCm4@dVExJoW0s;k2~hqM0vx2}ef- zO6e?EL#C*ydU9?yw(y}XHN-bg91{+>V}_aU!&jiyouS2sbg~i#O2n)AT+Z62_t-^& zW=I2L6dC1J#err90FiOBPTYb8I85ZbJSakS=w~K?D+8Q4K0{bf9ZQiKWF6;lHA1(U z+}hwY3S$|NDbd2bwIXKje5b@n5CMv^L{#}`DI&pO!D5O;QAntZ9+DD7%pfA5p-hO7 zRFDF&gao9r6-3kt3lA;@g0W%Pws-Q@4HT7442u;-P$Dc(B!y$mm)4uyIi8^Wu(D+7 z->}f~!w_r9gqG5*gk&+l5O& zNQ*JVwX*0lvd;X3tce*FYJ^ZM!F1l&A(_SDkZ=teW0orn3o+uBST@^pox_aoWyvQj z&OqTbxq%3TF$+UZ6dr6-I|xYauxu@Qtu}`9HdKALGfv|gGHB7w%q^F8W?O@4l*LG5 zOf0=^d}-H>9C5N&RIi@$alWC_j?Q`K4u_Xmst6(~m=M*hD%2gu?1HgcF; z&U$^GC$H}DK1`s^Ya(+xnB{;D!~hB!WFMLz9sH}t_nH((krpHu8ZZ=cLQ1|Xmy(8gs0^$WFmTQn|OaeFx%WQ=d8MF*R1PoDGx=?9MiVWn|J0* zVpz3;MUsxZCK2GK={tadL_j1*y7=D{WDJ|`#v!r*Yuxe#?SRN9!~#V7qp7uzWe7{rJy?#&5|6a`4a0VEaf-N>;wLO|Ye%{W3r*~^oV0PZH%Bz5%x)njZ4 zAzOBJm+2(obf-vK#z%OgLBQ3ho;^4AdcY?g14rAY5}{GTUi~~)I#2EV|B;c|+Pfzy zAV7w~j{o{_e@L-^b-r%ddVh=bhu@yv$atU!eCFZYeV=it6cKIM)l>rtSgK4T_4r}* z-VN}0IO0KID2a+5{2wewESqvaZs|iNVYZx6zwTfC2G<>Qhf%f#S?gvrW6zYy}s1}JJdD_-F`h5d4T>QMg zJ?XbF+h^Zk>w#Zg59t)c@~=!+=ZFE@e@>hl&@>JxZ6T#nNUjk3xP2!%?YAn6%i!@7 z!La6jXFPxkB19?43Z3;+_V&Pl9;yVQOAlGF>Z|ZvP4W262y-aCTpME`e5SK3gQyk* z8H=Q|VVvT9!T8ZRuogmoW(6D&h64$Vhoe7)-j{Rb0=~?nCNJm9*JrDH9R{aUu7fB{ zh&RW6VfS^ne{gydjYEd1K_HWtKOhG{WI&Q_IdD1%@jyKkm>lrOZeSjpb3M5olXsAD z23jVAjO;)K-*oB@i`*V1oI3fDK()vWT`#KN4y*Q#$xLDufk^#0`P!!%r{w>yB^M=;!u% zeLDVJ`z>n$(T;cxiULAGWC_q^DA$r7%8pXnXlFwayt~{@WvE&l9M~CvMi|l542p>n z!`2dJY|@v!HKLE!XoA{J*HNi z{OM6oddNv3AQC2yc6(4RUGmisoc|d|KW%I`l#L_}#LYGk9=jjI&&*i{Fd5cArl!d( z>8U9t$JY$cpQ3y}8SOqZa}JWQ@xrAJWW} zNIDd^mCw%Zme8{? zCITE{2is$n<_0#}7v`x`1B58UF%+gFg6d?jVr@jq1TI|Aa2bQkZa865))D@ZWD8>> zkHdEwAXcRlIhtt+fLz+KLnPV2nRm{e+uK;vGeT_^tR0C(LJ4SehFEJ}#*Cf)jN16w z-h4**q|@hd*gw)V-NJWg?0M>Ee;5!TWxH0Zkz}O0ZGmTT5>2cMhYhI5J=h`kqB3>B z>To4tfamx}h=F~nioremw@cQPi68`t1tO4QF$9c|QH$;m6=NX&1Y;+M3<#ivKv0T^ zLNP=Y3Bo;t)c+fNs&1yehF9DtTR=@J@N8q(*7Z8Lz=RB_q6TU?JElUmI2jk~Uikfjkh=@IO<3qu%2D;s?oChp*wi zl)!=7RaUcG6vG&k6Bua`n_)GoAKh+jFyB@lMi+y5n2lf=1Sawj0l*M@9(^`r?D#6* z@o%b=^ifS0d@+A#zgG18Own`ii^aC)uBK8pL_x2nLltx#a@Y5n>Y_qR{|)+Vo{Iij zIl1<%n`GIRhuHW8wt8{W+%TEgWisD>&6@pkS)XP*iy#=5fC&&gygfU6d-i!wefW2D zZ!#y4DAeC54#-;q2lrEjfHDFAuwS77v!xHU&t)`@YFrc-3uX^wE?FJdcM^`2aRcrI zWD?PY2JbfxcDbL*&^kgzArcT!-<8@;DnL+JutqAy4x}O1`L}J%50(KUqzDNVxd=fa z1Xg+swoz#Tstf*5l*WEhHw5M$->1*NVslJj?9Y7PrYIq7dSO*Hi!B}J74n^)_C#aneI^AsYxf5ypOKqLPAVQBXZLb7>u!&p3 z5yXc~2B1i!j~p?NDIrt%$_^dhKa*Lk8ZP4>##=4yk=B9Le@y$EUvjp(hz6kWhf}Y+ zr-V6pzVhB4)gtZsy}BM=zK%ciT=;Ldqrj312C)><0{0LQh(u2w7BAS}S?k;GuHQyR zdX>+Ej?cgL=oI?mFKo5v4;1kKd11(m7#}71dgoe1Re-QyC`hKiRU0M+(_Gs-0*IsP(v;L(AJ%-J_7nyR78}hmM>Bkkz?Du=D{?X_Su589_ z6Ojaj0hx`q=Lh9ZuIFv-ugpiTj*i=lSppo%7g!HiBO)ry!bru71VMnJgh7PF3m8R$ zkP)m32tk6Q5+evtz=cp@$~6$egA5>z;GtwNMv;9bXZ51@&3iv*-aX?If@%aI*+%&A z$BTLtb@X@q-xq_cn@3+qtJ$OiD(Bw+G2hd^1ENlimICph0!n@SP_C3FXSpT?EMMvz4lk zY%E*(+dd2QtKJ`6 zA7+ZYga~x#pAOzA@(3W1kcIZkpC>`ng1!7ImkPDFc=Y4#%SWt^zc`5%kw^d~-Kvq1 zbfQT0Nyq>h*YgcX>W<-Jj8o{TDsmy?qa;L{E$$NF-RqVhIo!uFrQrSGDi+ za4_&{@E5hL+4WnyHRse~9JmLb0o4UL`a+LJPJplQxktDvpkS6T*S8*gpPC($-kz9n z?xTZJha0fC_IvfWl5_N2>^qJ#OOW7&bxchtkzFLyaTy%3GU7)!E2SQFYvoODJwA(#wToLr`I#6^D9_R?x(B_0AOKP)GJBo&1Oc$Pd#qYY$zD9uFKg64 zLSVt?)ao33Uz!w8#N^-PKjG=^1m@CA6$r3_L@NPcAj$WbQ2|K>2nLx6K_DKVY6sZGkWwsAKIK(nF-92@ z86koJ40l$OSGrnd5b;@E2X4^#@Sq6+04xTANZRrq{QVo}Uf)-Q4{O8d+_6c5KLcBg z^WS}4J#&%HrkPpOMz9NoD0*f_I9U$-JJ5QaWe!>3IFt4r53iqareODGa+^zWj{}smIJv5Cy@u48T814i9j8A^uk4R$S}b;+vQSsU2}jP z{!P={CdT(N7weN=I8eJa?9E=QJ>9~nzs5}a>uu2Ct9|v->tqXn_F8hw2k*;hW>r@; zmF9bQ3N%yb^^NF@fs?>d-XH?)#`$z}KL;y%vN>G~q)-@A(TK5#Fa;p|-80krjh9=2Q;k=n zO9~dbKJyh0i^)lFf}tXS`S#l!u=|J!XqzSk=2Q3Dk1op`0(<(YIwV2|@Y{>Onm8LC zJ@sREcL9**Fu(hIO#xpL+!*BDPYJXV-|okrlWY#0Of# zU7!IXt(YM+%h7uTj4%O^t0uH=r6f+etFzIJ+J_g-DzJEo&(Qq^@Q@0KQ3gb)l+1Z? z_hm=2{=-?AhK5C6DJpBKe20gdxAsS%cUO-#>Lh6y)LG31$^sGVW_23Oz_}B5dbdVF za^;*{(W_x*TaB}MH8rL=O>knC=Gmugtw?DDE*jLXgrzQ@zjIqRh~is@7)%o!VUSWY z#X)K8)!ypo(;1;46ju;dmjy+lss&fyt#Zyb9t;*|G(6kpdwqN#gg{bqhfJ$EQBai@ zRtw4MhC#}sIFkv6abPdV;|brKZhRl}1f0^tjq#93FJBy;P~kVlkT!Btu2N|>$+Qj_ z^Uf2ls>^c;P&i?xjNu??SFJ2G@|_(l+5DZUc%VNK+p3$T)y6efIrF5v+XZHv?p7tTdHb7HxJ2qsA{btaygkVAdXaJxY zP331;b(Hqw8ibE1e<#yb7EF?fK=_ygpup#X|CTCVA-AvF&29m?uu|MsFLV$Kq>D4e zWw*mtAb^<5q!8VV#($Nle>X#i7FE*I-(6c4Q@MR)#SF~sCpR0I1`znE|0Uzj`jGvg zJ0PMV?6S-f+X|oU-)xiGqzOY<4xiD$dogPO#!P8Js|PUM;MKq^U`v|A)ds;Gk?kf}jP#4+#kO>0mpN@MwWVVQ`=jBGjD|E6_?@e4~r z7Czeiq5|12RtK)GN5z&Ye0cFL5GCMLD8ByO1aCYw-9R4f7Dv6-`+Jr#EF=a%8G`&U zAp*#qTgH=j!-BprFdmIR0w!-dHsYV={u$u+&!BlU@LCyptSV*2JMj? zsrDvdC|~-v#$)BoXgHW4*aN)8P0)iCTarhQS*%2}-f&=1AreDZgqMZ; z!a>59+kh8-NFC4=AN(LFG!N4OH%@$vSGsqZ2@h8?0o}(nIbsQDF4&9B9{#iFix}Do z9g{_k5kvE$Vf*oF$U17A?unE+u{DpT z4-xQ%Zi~zz7A^xv9-+U2x%#|*Z*Pz0*M(U3z1}?@JUtnxoc>;)4*wC^EmK|4I~Otf zGZvyCTfu-p!IuyK@R>3|4aO(GslY=55-8+j)zwJd@f4;H!QJBB@bAuUr|U6(%ymf! zK=V!O-t~I>a5RR_uaA`bu=L~Y`28M#kLY;xo&Rrc<-@1imxyHdu*HR&5~4`SQU!*s zL=s|XWX2E@2x*m5LKQ`RnGoARNj{&$X2b#guU0^?WlnR=w){6k0t<{w(hp2W;`Epp z5jRB=9I!-26NIK_7`Z}XPqQ!s2q8^nn{x;fmJ}i~EQ%qkBq3}n4I3(U-lRXIkVy?; zN|lgRkX8`v%Cf?$r>A|)8I^WqFtK0AwYw*`*T-Wco`QgSzCEGr{{t{QjFWw9N)X2C zQM{GIXRADb)dG&V5Mw*^zOp8>$sX=%4aRXAcDJLnZq6|A`h2=J7I|px&U*Ci?YVvP z_a`BzV%CBRD=%g3-t%XB$Z}

lax`7ZBwBG5JBOI?DPge>0(6` z&-@jWtN&XW%g*+oH-e(NCN*yhO$FoSUbV;_xd+o zg#k{xfHB=CZ$~0=H{`=Epd7e*RYNk~^ZlFHU9`q1(=?9L7Ehusm{DZ_VqZ5Bv?fNQDjq{am4w( zDfxH3Xdycwh;hz?GZM0;=V}cN%?VITOJho2DB*)ZXyu3ALjAP1AY8f@sxS{`q@e?Z zcWbMO1DuQu=%|E2QF#9uV#Z;-qw>PW%6?Eh{*|u57(qWEJ z{W$d&0D~e0dVgXNBtk{hf7By@=6xn!ak7B}uccGAbimIU$BEQNHlivlg?q2g0C(+Y zt|)P+Wbz7{{z_RC643`#62u+$q*J0E!W{#R0>U_BspYVpN0u98B%KGJGH7pAypll9 zPQwLHrbuJLRS`GvDkHZuO5T$+ZMx>MEnAxr3sC7Sd|$pQcY=5FhHTP3@wABD8l((8OR|4 zzZbpJgtIWj|H?Br@eoU$jH6RRwVe?iJF0T!Y3N+MzE zqu1aG)dhV$o6bSQTY2HW{kUU+$AOwdlbmxcG6`84%QHq@y!R3+W&}hwhY}1K+ zpmQ4&7ntzCIk|X4I8+N84R##2HZZ{1^#Ap;lO;T z9k*fGlcH$~so?-XA&_jC_g_>JMnnQ6QIL@nI(XO&4hu!%@C#uBss|{&SE*(4K;g%Y zfUfJ3AqWx?L$|S?06Ini#{`rNLZZPEMF_C*PhS+%JIVE-Vv$e; zJS;pM?aImrWydpc6gY+@s#gtN;WL^suCOR(j}WZ{{vcB!mdWj3h}3 z$1+}nh=NoUS3nwy(4)ed05p-2;*x5B{u*dt5dtVeFegN0P^dOqpqAM|SLvsNhh3Q| zWC{wfw#V`^!Ft9NHxHYFXf~VQSPE?&&v|TsnE`|xr6e%$PqlhN)qhU}`rJGvZxAV$F%T_2P!?uu!PCBw&J8+1O45VR9Qpy~mi)1b z@0A~9+{eSB9p!C7#sJo5c-P(|SU7$n1A>dT(T z%0W*{8(g*?hSXKO0wUlncLUB1n z7wBMM3H~_^;eKZdO{QptG7fCL@-PsOZ`DcK-E|r<)0U}@%H0hhTMuoAA~3ZHwj^WF zx=mu%DH7S-WCCd>w9%en_9~=f@kjJdPK>4?1zivN_;vm(N0Lmz32)R4gNn7(k{GV?*PRyNg>Y z**%!m{($}PF*U~uRnZcu0(aeMX(Sp?Ho zttc*uh03XC(n3?=K53PXtopijK8#8L<8suXTZBnxx;G-1y%e@EY2<*UHTt>qm>!6D z07F2$zdS>r^$~o(t#D#JFKo|u)mIg|UEJwn0C1xM$S-#-5m2akm%w1mcv zd1=%QZ#Ec@e*G*|8fSJh$g^+j53CM{F_73vYKDa#gN~quKi~sCoB^PR2*tc z5=2bwTZFct4d;0K$a(bj{(fU%Y0T>>vSl6e#Iy)lwdIY8oHL)7Xh4Ywqo|-W)q^Pd zc!h1Fw45xE^0dQ<6OBeYW8>q`P0h)*1OP}Wfdd8pNXTQ}GD8FpK>nh04RUV@B&fhx zj6CR5^0hs$`98eq*G^#Ya7t!jP>mE7C$KE7KHq0qyQK``$^1eU5MZLkV5}BH{flC( zP!v&%>a{9Lf<(4}h$zH8zunJ!^5c(hs}EJW^E2$D_co`ZoSoah%3qt^8yw2HM^*fO z8J(3}*7~ZP?w*_Iwz(_xxbembZ8Mnpz9#M5@c8Q4MY?*b-+jxs<*LWwnVNJ>%8nN` z(AJq%T=+9Sa(2Wag;nBvD6$iAI`w93;?|J_Fhpk}B%UcCC_@rV6%mm|7yWU+?+ZWQ zA&i!^txv>Th}mpLac3xFHpn}q%%s*`zV@cxJKhEm_TlS1DCR1fSa~ z47CI6hrhRFxIFSdhv9>MH#eta>AT7cBv4Xu5HQadAFCFA1Dv)P!Y;Z>kQC96M;0r1 ztH3~6&{OS#pK)b{A##6C`CAO&rx*^{rJw`|8Sde`H$N9}qpL3_^yIoJjTqu2le~EO zaa$UEdi+$f?x{oEzzG=vOyvX-JU>eJ!N9m+$s~-DF=T@RFeLve&%oAvr*ETv@4Y!@ zZ1VVy+&a5Tjscf>YOhsq7|#9sW=Jd#Rk~RxqH8nJzY+oR8Zg?D6)BPuNw_h`UyFCR z@#bg2N*3ol9}d5V5YKD!u(7F)vlye}`VH=luCULu>-D=NA>zpn6(JTwt0I98SV9$5 zkTDmai%~_=AyJS*M35Gx;-F3_K!>SFcdP@*i)n!qARzDuRdaObzouB`v#lejYum5Y z*(kUXZpS|kZH{BvzUmt;J0WL900GS|izZ4lj1!tOV!Ak4&i@_T#{Jf0!lGA?Zl3oS z<1;WuWUxui4eG-P7=$X1Z!KWe0bZtpp*g5|153I+><($rTbS;5eZo5ofFc{$RIlYU zvOZpD&p$)-?(~6{hjdwP>7EIOWM&Z*|5(bT#>GW~Bt|dWYAT8*7GzFlL z)AC`i&MxbKPO9k>7&`Xq#h3nz>IIAYXjBwbQ3VeasrmCEfLm6fOJ(<^o))aqGz~@2>Q4~TbPh09qf}*G_gB6Td7HjaC<;ccSSk$pjGT^0o$*k5^ zCaF}!qA0@IPG@iT|LA_#@bTl`b?-``qNv3cT}XG8zU79)QV^0tGD3X5FG+s)UMHi! z;_rDq9l3ct{t9m29DL^Mi|Xd+t*mcvD04y>jU2!l13+kK56`h%PA5*0@jqMKf%ZW_ z>b6*_2#hNWF)E`n;dUI}o;u#S>>KaU9 zf}kkB@)HEY#wD<>FG7=Yj0d+q%xXo~V zy4w?RTfSo>P7_7VP4&ZJMB+SNKL)UHrkR}CO3ddqIwp=cti_xNY=uFvahPVE#CX^z zZZSy_9;34w}N0rXBWGIJLxjY9b>!M&?5V?vzcMlOddIfN6ynl*o){hdi34ha&*l zp`AKwgxR(iH@QG4$Z3;FF1Vp)@do0HDncNVWa4!})e3P3AKt0BVx);FxpqD#s^&Vm z-~ttUFYFz@{k~>%zn{@Rn5v$RYPti}+|RdDTr2AG#@-lN*UgFMZp<-};>`9!?QN^9 zbk6ApmS@>8HrpLFjft}ybu6}Sp)k|ewwX?MxgE1~hhZJCig|nc3kn{RAyS~Mg;BT4 z!^s3A(bR~>4D;ulfD{e`V4g2mF@NwH(vb?}RuCeIA%3tQt#s^B5CNfIc1Pg>g62O6 z-|cxHC;@^XUR8_-wNNw#+`Ke7<)FwHW?(sLLZeJ@VohT**dz)JiO3m{$gpgLa%(g6 zkzHo7GqIDRE=3^DZuX`LxVmF(sS2$1&DKscBJz-iLd?p2Br%Ow@Z>-gdJ(PoOo5t^ zlF3&criNZ=Lsw^E5elY*21O$N#~wrVf59KAGoCcruz5pfG!^Bie(WvJN_N2JDt<&e zObWP>4EA{k>qbRA+VAG`748DaEaEZLTWhgYlHuU8JaI68X(l7a1Y0EB() zQPlbH(alw(g{N3j01-VjS$7IkMxL4O#0I!=s|*8p4J3fhlOUcbOfn{UH*q3^st$K+ zaFR%3LINPLRpA}%z;eJLqbOTs2s*g>p6NJmg$^(h^S_};jpCt3uQtnq02<(F1tRhw zbBodU`?$%z0v-rV@U{ygBP1Ybae6cCzyoclQD2iTvtoMp(2eCUEQg{^{`_Q)Fdub2 z9xbZGyjb;-4KOyHvni1f1OW3{5Y9x0AaH>Cx1c>2=JXiwB1>WuEDubNa~62>h5Re@AUI~Jzn>(S?Ke-Ka*)08Viz|n%lEa&jP1q zlth4WnU-)1%eIf~3euu*B*{Rl@~>uh!gI*^K094x13aiX$}2DLx?>QVN-oEvcWxa! z(dQNM2U^|rQhGDoWd{-#!O8kJ>>{^Ekma4%C|O?bg0p%(VUDJ+yn!TQIsH3pJI;S* z)lORN{*PXjy&h3`MKaGEE_!uEKQ<4ECf?qzuQzTy279p=91Wh|(6MX0-CeKHM^~nM zvprgs2v2M(EP$IXP=~+gFW<1}@6vVhHS-7PWqUAwg5VeRahrbG`q6LCYzO=2j&M5T z3{Scbi8<=lNt}f|Gk@z8?A$T8fB= z%b&b~v<~Q}PV(enGATSpzoQkmA9%6xlV$Mj`EPC7t!pG^0aA3{Ov5-zkSQ0)%Ht+` z{Cs4I9~7Uf%o50Kh>Xr(+v44BHMUmz+Y9-DFtWw`;#UcceHc9qa66q8`)H18fA+Wiy(@&nuGyVfGk*u3P>1Ot+KWUcugb1JnHJC9LXpPR-!1LqZJdGUj%5^!?b*QzM!J~pBZ47E|`#qN; zGilFWclZ0v_K!T$l>8qlfv$xp^*r9XsKy^=>5W!2^6!3GHGojjD!|}S5LCW*O_;Oz zrX*RwFu?-NA^A0M*BoXeIx|U(S>8)^qMwtEXK0XkXoC{e{9N4GyGwC>&pr0})fMGT zlrhdgku#bY2~VV)%T~Bm~KEenY{{Ic2f+@%xIdo-smo~K7Xj+r-bK=S#5>AVUs&F zQ%Z!(LoxR`GgIjC&b-5%bXo92@BX{;A@PIX!YHR!6R_kJ6qwXST(T8d3$9*$yLMB) z@_dKm#2E#iUof}mLI}E~@)M&XFsTn`!oWC1;@GU+C2^I3#kCefvaqOD8jG_SZoHgr z*zXgsu8@8yt~H79aJpY`7<6UB-|zJ25iWoZDVp|;qxl2WpH z)b;y4sJ`D_sdv|5_wOSI_M8jx6ozKo)0vHGBAuwCfW#XzCLF@B+_`QcKmiTG5mHTC z2pYzarfoH$O$mr&a@(s$=}9aX8|$!81Xv+fiaI$!z=H#d~374k^zB>Pa^{lSB_Ta@U9aWd4X1*>vT&~ z;s!g1jJ4gO#;m#J;e`y@=6+n^5vo%DF)L_}RO z1F%HiI^a#@#g*Z2HS+KA&u^dE-^#Po^YxR zO7-5%nx$(%rpirWe)XZDk|_Y#4o`FaiR-)Z{WpzEZ$#du=-HdO16cs2_vR-AMNr&~ zHiVl%AO|)Y8vS`tAIF!yKHbiT?~D{YZXSvr6!gl?l+k4}3J^N4${)%&z&YdVHmyIh zS(FCeKjj?Midq0_pus9K<XVK)oKvMH{% zfZhT?fDj=hnyc5a<o^bwpK2|9pPl|*pI7>5g?KXK|=9e`TX6xV=p2!e9 z!3w~|ILJEA%tXOMjJ>ybyTOh)O>Lf2FD%q>5?7$)#QT@{C#IBFHBD!22Y-ahztGqp zwPC~$wLZU=^kJqN9da@w3uplahqPobfY^~02t|@BC5W+-gqj8sTR|Y93cNi~53dtA zhoT7H0&0k-w3q~hS!$;4ivNrW0S@vjB!FvyjVET7bAupl*^`+7Wzz^7%~uR3U60F- zUOVkB@bFSHEZIqwsE|UABfSr1-!723l$pip?;c%Vj~+U{{14M6s3v+S7DM?E4!9jr z`Z+`J8yE!?R6}Jo^02qoeV&|e4xz8#?M;b@Ia}CX{$uC(@6!y>jhU@c)#3>9mj5^D zmi$efMth_IMdMp`_$ucc5Y~JM^X0WpDI~OzBjFSfy73j-sbl0*@GcQCP3 z2l89>ind$$rA2{+sJ z=V1IMOqMa`K{JZQ!br%66g8hDy@e-aUA6*2tVyf`bYV@CU0t+)OZVU4z|hqRCe4D` z{xfD~J~bKr7hS)Wr4Bj^F~?L8BoaM_NCh(0JZXG&#zL^OtdVfy zcjMo>3?ba_2eX29Q?bGHh-BcYMQ7@JwS>k9#YRYf6oV!vk%$*0BMBk3v|*!JB{|U4 zM#y#S&mFc5Kt4SiH^kouVe6D0B?7Xj#@#6r&Ebz~d8->?1med# zRt;rUD^$k!BtEQ*WH*j}-Uk2Z)m`U#p@PMx8T{)A5n_ksXYKNa?{_Yh=Rk_>P+eh^L&&hZyG^0zsD#t4whDGmn}P6hw8; zp@^aQbBR7D?NB%c9y)w0FO=~SB9UPteLit+BeE`h8Xt!01>lV09^brU6MftaDe0J7 zf5(0xM?5Dg4CEm>@O_xD%f@tIT5aF&>ICqC$*7=#%!9 zBZ-lQL@VGtpTITP=y217)$a{SGZ5|DX7R!lYWnu(yM7pZaegizHV7EbaO1n*SYK>$ zBhwCe9+U_MLj>YMo25V?kswwIqR2r&6c~&^QUZY>sh1k-!9HBB9xom!bZ&=4soP^? z{+z(WmlUrum6I-1js?k4_j@7S_E0@J54}1uTiD9zo;%Rk9q4TAQ)dn0G2Q%BrgNW! z(ZXjo-ZFUiVHOj!AQn$XK-3IDWSO$jz{-Tm2^fJ$r$@}N5j7&^!h^OgvI;vjw_;tk zlpIPZJ7xg7-rHjVgre#%(qYHq?e%=y$>1%Y)b@1m{4a9@?fw66Dt7F6&c^e}ppCD1 zD8u+5G#3I~xgbc9ByjA}#l$le9>1ScO<>4nl_QnqRJLT6@7s4H96zh&{v2}G6J~Yf z?6QvNBE7NYYWC01Vm(l|zY@itzg=)JmC}INt@r<2z4NKULJJ_sedHX@W@->8?`R4l z2}h%Vfs&P$^ zmR1uOW?dmz5Gr08iyQ;v_JB?TY5y|LEjUkK=(~*ISWg}ya6s*_G)PR)(_gbQR+N+v zns3{fV*Y{=0LvOm3N*s+VfC9wds0uTu-vR<#) zdT_y;eu~e{%-6@$xANPYZMw!Ecaq-jB*&A>zvK66IEWlX7?PtYDp$1oHFdn%⋙- zJTzj-2^c0sBq*w!T;SKKamgT6J8B%H9 zKraDG3`IF%1~iVXFtD=}i4hnG2&yUyu|*L^ew#rOan4{dR7bP`nuoL4d(7{Xcr0R! zv5A}6EOGY>p-7O3h)y`LA(G^ci6E4NBGzu-*(9B_^>^?N`+H~#FG=Wu z-}CyvPQG6qeVwnlEcY2yuVY;;xH_eo5t*90jtMOnPFaN!L~|@Q$l86jh`YMOc|F$T zj+&d+VhJzL?z&;?6@MroG6pe(0-&yVTuCfYpHIR;UvwAgO-hWCN zyAF^9u;*2lSGBPJayEkv;fIg6+wxo5c}kl}<)f6< z?{hGbN8}KOFvf3B#LWHde32nOFx0UK2yt%Q;f#`v$17GF$@;uzgEPN*y z&*v}(F;);fonL#__K}jj2BSRAKS{;T8)5p`L!?YwTMRm_NR#b?8k1xLKX!Iizepfv zL}~ybFWx_#-?)Ff__Q&&EuvZKCzT4(#dA%#v z!3(U@5Tw0Rs_`R65%(__MvzyM@+!YxTEPwzMqpE7!pNm~r>AW&n&iJT6Fnn4TN61C8VxVG)8dq4wcH zROzZ1GAJlQ3K2v@P6YbMf|7ceQIP1C2(bl%$e)vaq{J~n5aNQNOjV6d_QAj@gbySM z5F|!IM5pXd54)LcC3|`Uuws<$dT|jsG-2=fOR@R5&u{16hq=_51|uFFU_y(PxR==_ zLo*vo8{UQ&@Hr%sW}4z*fqOmj=FGX|x(gT64>iWc&m&z9~iUawOvWCbVc)ty5cG-Ae zCY@dO+<9m`3_NA)0=TNt?37E8Nd|RbUi`gx=*oRk1+pgwC<{ucB94CA z18emXHpG$gWeS*K%*^324#utx%O=HoG2U#{5t!>7yQJ+^$)O<27eza`3!m48GSvp8 zjfiSS5c+Z7SG%_Gpc!G7zGLaE<^Tig`#Fu!i2a{Fd)My8WMZQPgaSzs`m&@9kGHDc zJS%-f?B!4NQT-l24!1p`Nw`DwGN9Q52~tl^wMR*`%Et zXI#v*Y?Kt{0gMV(-0=Er!K$P@I4v$qT#xKRyHi_?Y=vw4ezFR~hL3lCRS2X;ox_=sS@;PAtB0ds+u ze*CnxTV`IIoi_JCv;ZQStdyI`{6sh$ZT!pb>!Iobf7xQRB!Una!Vn_F!W+3>{WbxR z9arznSAIeCh-U!E-$9C5`ZLkz`0!A8{toXa+1v8#(*K9M=zNp(JL5Rd zb;~ZzrSHYh0KtF`gG4e50Q6gA`)Fn%UZw>yrNNNl$r&=!8&5UW6&Vo{aVbiI*VNLYlEo-)2$<#k7zP7AC@D42aiT92b z(NIS*u<6emFtLGwrIwY%a;~i#1_;(Fy%ZTw!Nq4t5X0tf_WMPygy zdy!BW-sYJN7Vl|Qk%L4g64&F1{5b-zm}hiA>uoHynW(6`8Egxce^rmaycB%F=Y%7! z+<&=LF8CrEfY_KB6dhgao8}3Oxi?nov10Td9rp|TQxdqg+xu?+MsyaL^)+23I4phe7t6mNo*?9&lcI^pn92w*rRyW6j-#rYxCkFS0?`xmhm><5p5Ni$gQj~bjg#Ae6cFWmYlqVQ8;v!c zKzME0WyGW`C*@#9)1sJR5&FH^ePrtkT-f<@=0P9<5%)A-sJLD>j_uT1EF#aRU4@3x z%>w|o)7>u2lmZSae*yrG;>SsI0Buc5A9hxXI4tHzJzTUmfQ+Df*uiUNlt?D$G&2Tc z-e_UQ0vmMvnzQViKR&LKvM=Uk{^fzhebiqFfr4m8MKT&fBDZpo#*DS^5AI{NzeeQfhig?s+W z)Lk&M(Eu=Fd;2Uf|?8GjEzdwEDl&qJP)3N;d|FPRs$m^oGp=Tg2zh? z02GLme*@s|z*XkStf;H&fD>jHyx$eX;l&#kq#dqV;Ko8kk%U45X%!Dtk}*g`BLczk z&|*W`4bUAf=;T1lqUwSngQ^T7N(G>N+q3$NS?j|r3^E#3M$AEsa!U>qA%q5(?6pCX zNEnp?EYg2Ey{+9C4D^(AK|_5}<&VZg z46rPrgbH)ZogFM+h12($(B`8yfnD*e*9|cQWfVo)RO(1-Qv;1raN(=g@sperGLFVd zAZsg68Igh!lap-GN@hlstf66yWwNgXN|1qobr}GLa3ntT$HR}&;RO;w zJ0pxdPYmY&BQkSnh@>MWmo!5Z4&RHm^Ha^|E^g@;2pm3koonlEm-*z7crS;D=|0R0IVIOWTw)a9wnQoG#xqh#UqoLTC{PXA_ zp8LGb|JjA1QdDU&-1qT=aP1m|l4^C%t5!X2QT6jb2K}=Gg*ddf^rToH(1(h9U7sp= zJs9Ph*KWw8fPUj}H{PS^j!_P%;TnnNb3ZsdA@yP5!?yv?rk!PnhkIe$r*~Pin}7q6 ziwHp<_WFL6XOD+hx%7~bL{#4vs!wh!u)9uhog(oUXH}f@4!Qr zLA($HL19d~rBn*c#b96>#6eXiSy~nbCgmeIAp&?Fp9+7>J`<*zDDvGy2Mch^$CUn2 z6IXf7gveTqloOEA<7~<-A|Zj(gFinf%{I@Rak<+5yv))mEnlMyjAp5Z9q`@^^WvQy zA1^$8Q>>bUJTDUzWmX5p{$Z58XcARLAJSYnM80inz+oZ66a^8Vg~JG!N2{$LmS>kQc@zhL{{8Bot9%K)hxT7K;1AG|D zlCtlRGkY(bX~pXw80yBzV+EGiF_SXhXLWQTT1gf$MfY&A53kiZ#vt(k$DN!2vk8_*hwD}k=` z4yO@QoWq-V=SH-W3JMY3@BIfFb*&-&G5kYho-D{g=Rv8WMADaim) zB@i*RL)?JplnaSt_zkE?h zp0}pU=*h-d@z5iiOPjrP6$O_IHRWzdJ26{`VL^M8DB#Sx%>#qu&areCbi%0;xo$W~ zl<>&iaBBrEvwE^-8C*F|a;m2NE+WR*Q9%yrMT;jIvSAqzP}>A85!lMHqYDNsz!0-7 zf{76_g4DJOHiHr?;Nu*zRAM%gv1Lj%y+^KA9Z=4+J0Nn&w!!Z3oTpiE%3Du23FATu zk_xIds48STF!wphQ>nJM&5~5-lRM|>qByDfcKYzmgwtW{htjnVn;6B}WUuSRPnnz_{*qC(J--w#!&*)E;)UiA5QB|#8=uPo=+b~Cl0CVdM`QCzZAHi(p9EbN{l za+5+pPbmR_Ng<6Cb-0EATRx7?&sQH_ec1BcU#hrX%Bw&&*npK?GuL1ipxqLHBCr^V z2!MXID2TkoyLt-u^LPT_#D{dX7$b$2XisKj-MU`_=x_u|41NFcvw;_OUF8hDsnz+m zQ;pdoCeYN3iX0^)K0X|p(OVx7Fs!6x%3wfZ2njC2l~eJbZ;ID({4F{5(~jpvkOV9? z<-j18@E+Y|Mpkj*d2~AIZn}jMHC~Wk%MNY z0#Ig;d)0dq2N(pHYuB-Q+65kvfDEUmX_|;h4KU=wv+rdc_TIHmZmA)Utm$FH%{`nj z_#~VW(fzKq1Yu%GA_;N>#U{T|ZT!Tb{r09q8KsP+-zzXIuBqK`;BV)~nvy)PH(c+w zsXieow~O}Xb`H1Y%4t-5H=;n%QnFDo8{qQovqh zbJ5y48Xq|i2QfS`50#r>lGIFT0JvNQ1+}jk54{hJXB;~5gn^lbAXdDv`Z0Fq zV6HIBIUI~_*kNHkkVkwISiWxkO9VRd&VyO~CN+$aqYCTBu%Dq+9L7NQ#&Z?#N17aw zGe&eWm~Np1L5OP}(*)L0k;K4noO1t^xSOsgl>VDF)-tIlbf~aBgF$-~!60Gk*P@O3 z;0DO{Btpc)ognliK<|cnoSw3&I>=hVd0^|-waf}_WBR?`Jzq}mzr_9B*A1iq=;}~@ z&vpsw_WHg(I($k$yY0Vy*vcT1wS`(p)l~C`_B8>TlS5mKmgvG@s#{nh7Enf5SWSkR zaDk>0883&0(0?xhgeW0Ub=+!9(5QOYDx@RRh+hlP+Y9S*nO_*UQtjIeVQBGu3a0Z!)Lsg$3Wq`u?|> zhZ8r&!7n0`de{NAnQT42AAda2(_*Y5fC$KXAzwco>rqf@#)vwk3aCX`d9S4x@MQt) zYRQk^LrD!a6-5nOEa$_faoXHU{mlmi_T>Eh&~<0QJx^n^>8owWGMLQKOiE%=G(09I zw|A&6O=c8npt{LFerVF0vZ=l84KRj}?n4Xj9^VUdFMJJm)*eZe#dE4~zP_7@yJMLW z(>Taeilz{OP@}>ZKI(R*4gxq5Gt>?m*r_0q-^gq?*msUG369*{gh0|RL^a$~p2}O@ z{mW?DA`w@1ciG+YHLcg4A8+i~bTpqNACW9cA~A{&ml`T4)K7=qUr>=_HI^Yr7wTvS zKC^l0=*;Thp<=v+cFW`27VW|sH5gdEOq4AE*L)7odcJRi4&~Ry?xpkYr4Br#4G94j zDdLqRNTU%LDG@{kfTEH_U_?l;{PK{5s3e2v#G)DFMZL;-)(HxW6;XsL186pgUMQhx z3ZIe)2B?W>h!PSY1R#pYp&+6VjAAT;Mi4{=llsgKK{6#6RuN(PFH8s&#Q))nnqGqQ z5(SI>zJINN1Az=>Kt%#ZNPZ-cpmZZ;2-upp!I(2zxFjdh!2_^~4d~`yQDzt?O2~e^ zE(Z}rkbLtvIACEL0yS>uR+u4x;YqJ5`*7+T0IAq01`FvH@A&C^rjLNB8c414vq>?CQiQHLD~Dp$IGtU^`+_5(#96>1_>vez+SH z`Mra(BXy`Bo9^{|S{gmmNWq|WU=0!Js5BX!taArRz2H$TW=0&@@N$R}`@Gr|O70-((xny&>jG1THE1pphFPd{ood@o#vxM!TBAZ;#8 zpLVk@rXCtTHppXxfiGK`D9p-YD>ayg25)A*ujTQa0YYfOfhOaofnLcMO@Yd*(J>Sp zi9ew}HcNFL0J1c)6@+-_Br0*Ej3_Zqy%W5Ph&NG&4=+XSdYKkXu$ClnMY0&&s(F3c zR|gU5K&Dcd9H}%D;K*IU1yNXd=|E1{s+a^Y!+&lkN3z;16Fq#5G6p~xR))jzz(jD4 z5wFniBtsk1HDrv6kR%yUJT8cV9mH+xm(+O5;f8^3Bp8U=zsHeG5mG;a(v{%z>+Ik6 zvfK6ad3_e@&($zB`TbuRt57T=krD`c^4H+F4=f}*`SA0%7Y3{IbgfcPM_wU;hDdP4 z7?1`kq+$_(gn=0mgo<2}h!lsP!$j{UCJ??cWS)MmpC$Ny$@3F`2E9X&YuPXt=`eU= z2|a#n6~bUfL|3nNi+%rQ)$*uQB2!ocNiYL2DD|FNzB4csfX4bTmmm_4u5&thL4Z~Y z6!fzKu`NZ|U*F^I**sYxjDGuP=FWd<(|fQm$MH4DQ~9;9^O55pj^CM|^#35M{>Y{R zEJw-G{ACh|&c+*fUeG2Gq|$mTuT@z{3-r2uFTrGr6d zxoj5kAq&|)+&(YFTII_ygp86=)n}J1oXeWj1Y|N-Wd(%Lj3I$Nry9PT2>MFUX? zdD5AgPDQD-av+7EJz7wuh?8|Dtt#%}^umz}kXY@mUFRZ}&3HfjYaitl3F z5=e|@Zxk)3L@8;jO*3gZ;L&Wt5*U-&_hu3^<)sfC^UqqWvDe}hMgIXrTrQ?^Rb$1X z=lOkluEAuiG;f{jcD}wiG@^tF(7&?cPcOkqFc0J9VxuH35ac~skOpbMiA&|b(;T3; z7*$Ye$C@RKDk=(J0Ir%#H4Nz{iKNuU*SNz0{ce!qvqcPqWfBq-ago|sxF#!g=Vc0u z&L)ICV-`bJnJ`r6lE8*xOhORT15mP96~r-^FcS@AC2=B^f|DZ!A~Irt!$8PFh_Ka~ zOkos=7RmyWXoH$Aur7ozT0;^NBqUiQF?C{$Kqkccvs&A*;;1nN2q>}wk}ycButZoa z{yrv=fg}jW1`!fXs$wN`Bn*%;6>}6)$Y+*}JXtjcK>91B#nx^g3y1r$)DV1$uoGf*xV!Bz-}fl#nTGo1fo^g*9LZD(;PCQ%IEbUARm z%J%#9ihOcH5(icsx?v8YY6;)LiRhUMDY8=5J5)cPs5Mbss%2W-AmW=9v&bC*3 zTMT*{I~`4OGH}dG$$L9=_Dc=r?2@p+w9foo(>izOUz_^p1pSX5J)D*a>aTy!7%Cn+ zklkRY=jpd8x1*OZv=cw4A<{U^{fX`Ecuj-#VLv~#rweWA)KnFSAf&XMh!;Y=HK$v5 zGRaYN&0%J7d=rgrTFJs^-_`~|WYQkg1u-Ckh%pzn2*7{`n}+y{9fPKPaT*Pee=mFb zN0ey=o0V!WkDJzb{rp@`Smps``R(vucCaz>u~g55$Kj_(&94zP5FV}Gdb#84>m46g zviRSb{Pj~J4GVVcJN z_8s@WHmw3BlgE!^HZw|>8PanuX9-KZN6*^8@&-yY^WEp&$qy#a>4iY3p1d>fx#x~ot&HO`kueB$ zer@YCCey_D zJ)_$E8L{_TEQs#wAXUV(117iQzgZ#ttwJmye;j@3-=|V|LT|3vd$M2PKwdEtLHj_0 zgklNz#8K9fBra&t0e zQ^7wjX9>xDegL7Jj>#N@Z2f3($J|M*BL)iq#s{yxkgKP}@zjM9JWv$g%Q((ngw=oB zNkIg7?Pd(f!YmuuJZ7en8Wdj$2XxXI#c_aIVz7?h+W~l&fx2U6M|>O z1N3U0(lM4Ej5^^)F{womeP&p7)t=7y0m2`CR3MNCLnecS91)lx10UGfjwV`ystrv$ zwY!xy*GWR-Ny-)`%`9PZ)(VUw8CX-*N(_QXo4Y_TJxxZIdz_N8N}dclIP&$vQ=v+Z zy?WMyX#p2PPG*x%B%&eiHB0R&RR&I99>b|JJ^7EFFnKA=LZrv#5*+T)N5|U_l=IMR_D&F8`B3TN0LxuU z1df+WPy?weMx9AG!j>6S(1A{q&H%$kGa-kly2jD1sGJ2T!zTPMZ5{#As^eOn2#5d! z432Qm)Uh1@Z^D~B6DifF?Z%&kWM5p+08K!$zjQ#ba!ZU4bNkeRnH5I~@8@9`tCzCo z*``S*r(H>!FrXE5wXKmZ`9{gD%c*kPH_d&S?y@nSeSG5CS~i4~QYV3K7F+c`2h_4g zn3vo@9!qo|u#NmHDeb^<^#CXinN$SYG<&PPG)6w5 z*O!fO%odJ2Xl~Fxzk~31BFM2|2^a)~21$eF;_!4I%m9(pAVZe2h97^&>FMvDK3=bj zfbS79p8t|8k|yWiOQ?r8-G2iti8%Re^VBf}xRBU?8S{O7I43#qDg1C`;6MX2k60f( z0OD3=9yfq1F5P?>E0}wtC83sJzecA!_-jXj3=P=W>w=iVL~#jNP5yo0?D;4oTP|bE zb0C&aL-PHtZ~fjsw`?Y1wt}_cUcJxM^>Hzbfgpp8x9=|E#4%Y5hE~v|$bg#4Kn`cX z9k7HLFblG!8BVGMvw2Z72cxEghqUqgHXCHXPM8NmZQ!oEu(i0*X?wt>0`JdrzIb}= zA=I+3<2S*@;mx1C^61}knK^cf9G38!%*~2{nV4b?sZ=)$l@OOgd_R@G#mDIE&(Uvi zZsGg95%s8fdvgC^p3o2j@qT{=w|Bif9|D;Car7PzLd)nNY7;1pFjzQX(;m_Xo*-D~ zJ?)n8ZHGLJBo~m2?Dq4|yAPvUeU(D`U<`mrro7SP>$|=Qf0`5L>em1R5-zY$JP!51 z+0s?TPC5I3+Azb2dSWstub;kMI8nx)i->MOu9_@z5lIDBD8zzYVV=7WT5C^9A!vPC z@FH#pT3~8zuBtxn7c-s10Vh2N%Lm^0`}McZCI?@KnDO^#mv%oNh8!27DI!P-&MR*} zj|Wrm@G>FSsTM+3NLa_+mn}|A*G(HvycNz3ddj|rH3q@q*ow6fc2YNrrrD}#MFD?F zK_DXb#MUA^qCz9SITA$x#!l=fZ$I{NPV58Ggq^pq!MyLix3@Z0-|gDWC)(l@@iJmj z%SDwUs11dNCNenCg>G8Z>6wMqlCq^jU$fVP#PlP`84XI3W(>&@0*Acw3jM86bpnrgVug@z}in*Pb7i+UpCi(<_aP#V#sX7 z4kAGD>QOx&iolLBLk_xByvRR#V<8cTy=#4V-aW+bKqCT0Sp<>gvKF4tJ#77+T>Zaa z%dcsS=kD%J_9@SS@&zTkv-=zb^X2IW**kC6$;cvdun>Yo@!Qr|y^i2L_cG^L+q#P% zNE|A#;(>kGDq{z4NI##b&f)v9CA!M{+8jBrmCDD+*WiGfWXzGKah>7phZGBN?;fRf zL^sVK2f|BWM>o4?{2qO9%=$9pEJ#pg zhJ%?}71N^tKxY-wLISm{4!$iZ*N%EM;e=h(_L0-CJ=z+CJ5P7hv38>akH_v$%Izzis!i0|<}f86*vW9nlZC zHEthIO^%td!OnBK2_PUN0g@14z>H8>L6L}(3Pu9JVkC;7qA*4gQCS5PV2dOWRx1=@ zVN}TxhzwyAj7C97C!5w^XjC11tt8<<9vQj}Ov-4AQpTW_0uU8pf(2nTogDDi z8=+unMg?L3&yz0-yqEGNU~@c=3(oU$FStFwg6C<{&jdOMV>0;sx;BBgx=du$WH4vn z$#C081g2c33yCYvSD|LD0bdJlurQ0vf&OS-HwlMKTv7)hZtode%`h?6L#OsB2$pr{q+&DNAM5sZlsfbT}ELz}mf z1m$ANYDG&BLwpA#(}mAEX`wMF$x05kylOCsA`}JTMO=fdaH(?@uQ8iA%pe{|JcNP5 zWV~d7##z>W{GI8?s87-!Xg|U-1c7@BHul`FM({h6z?|$u!_8p$PDMO2iWKoXj_=o* z;i1?dWi@O<9MX;yA~KfNN-_%oSqg(MMzKjG=MKn+7~;X*6)zAo(uubbXI4Pt<90GA zCWRxo4*fXsSs$YUfmW?~3E8%_l4nO&r2CtNV1uGpZV3Uk5? z@U-wH+dNGbfqR9MJy{?Te$E3)A`ytWBv6QoEL>Wcm_v~* z9a5;EJE34GT36PZ{h-~}w#dJKMzLV(xmGIaR<{R%T)8eEmT|uA&fCd_P!#ss4gaJ{Y@o_Bsga$gyIN)%Eo?ZJd z!NbOV5ci5oH*|-pBzxYjuJ@-A#t|mf2kT2$$g;{1BDTY#{ap}XKiq%k;gp< z50^~S=7Hg*AarCoNiP(xQjqgS_k5kGWqMQa`MHOWeFX*~l#h6UL=-{@jDiV0L_cg# zp~<2WDFh@W>LM20?eP7tT+0qWR-@}yJby3R*}4;+l71qeh<>;M36~;y8k?N|lY_ zxX(-$9Wz<$^v(a4Q{fc$`D}K-oOga64I_ zw?6dLL&y57J!lfpD}mPvO*c{O{C1w33_+IlK6(B$j)sUj7L7%pJ=w>xEaGRZawL?}KXM6xPWLMYy@^I%us`DAa z4{)P$`4KgpOpMM^CS*z;ec9poh9rjocC$A^XmAi0=rN!}Lr`J{XRtulz>x_RA|NV10V`oE9Quyc#aDhxF|_98IRG5JJV}1fVT{)&1hFK77+RK+=1VGcmDK+z*1sp^>CecI zQ-wK#AFHx&09p$l0%pILB8V@zEAr*A4wCtvf2xp>0{ad-`!vBz#)H&iAw%iwd6MbA zTVtXrmW5e9@7)ic7>Y1sJ5{hL7&lTUA~#k6I^NH?*=zvAIx0d!s+a_+eBp6e3Ddo4 zd8GZbDh5-N^NEhcb6 zwy{@^xqBHE-ndj7v66vM#Y5(No=>~>vBdx!fKe6=Dk%XB?ORx0OCexWUb(5ZX~aAP zTwJrE*9B8aR|U&16fK94R2PeHvY)8Rce^@gDX;&aRA?TDZ# zp|qrK7$nYTm#e>mbX)N3GPr)eCx?eFwo_!cq#*F>ktkxu*wkc5Gk-R=g>o>fZm+*XeWfBS%gsc=476`=%v*u(=WUPx= zF%2OMNT4tq%gF$cEd+juWISIyV+KJV3Y`sB6$e=x?uMkR*?Y_#C3FaUiV$UHGUXSV0w@w03oT=97qWzH5Y2FBO@v&EA4zd zt7`$5>kk00%V?r3PbQA_`0{8KV2c6u7;Zz9Gwf4bz#QNMRI=)M9Y}|(kMj9#p7e1~ z=WeC8HV;jVhWFvbhYvR+SN_AH>CpumfJg%b4NJqJkO7Gy{zF^}nJ6&l>R+(wjD{Sp z37vkdG6T$b(BYjJZKd{qgep@jD;`BSrK?L=_Y{a0F%8lF5i40{1KQ zJ64M2aAg00Q^J{E^8kJ5_^4}i(`ZAVFC(n=og85G5i%)lO^Fs0XAKkD^NO8OM?C2s zf1lT_ylrZ+#nH4t=ZHMeUaF54z(eK!V)`IceP#w>0v)+M>AkUta+0AqWk?D`wEMIa zAKUgr{QTj~FnU8uB>D)VBj7}25EZQYmal^r<;Ed|;RL33)Cy&=)#nXK{Y(v{lRZ|M z#NvfDpj_$2G#|NZ#Nmv}9A^mwNQe$4%n&L7QF?)G}M@n?(x9sul&1SyX#!tF`bducprs#GL zvpZeir|$aEw>&=n_t&FOWgah?x_PJQqD?xEywQ&{E>g#f%(oj*(6Ge z7JwJMYlabTl?FGc=bbsh4^$BIZ`4>YiEpi;g_q}og1DEa2iv7vkwXly_If*l78hiG zn3f_KD?dnzRFb1aWELa{!2g(myj0j$1b)n3PkX~)-9G3+^FULq{o<4%1bN6_e%c}} zkr8Q7?RL-vg6`8R8ZWYf-5lz2p!67VTrdo-d4Py&n1`$6@7;AyNJWtaKg_V?GMw{q z4WaX=>tJ~rq&;Z9G3A~hg`m_FO8dm!fgl)0^sP`-y72=vaBddVTi0D!6S@%pRVQ{p z3`3g+%68eV5F_MPjnI=ToKPIdpDatUgx$P-UO^CFD2OhmCd0Cg2;&2b25O}I7*d0n zF%p<_$QtRf0gxAvL4Z6dq%t|uEs{Wl5(=0kL9H!iJlp#vsFcG9rI0=<#MbUNDI+?m zUs^^aVn!rlOkzA>Iaz89;U7G0Bm&Y($WlXymMsHF$P?Y`_xb%FcSg8pHTC%?r^{&4 zP=_}-A@&hrKJRZ;TBK0={f8xjGbkVofG}{2BCtT?!_<$iKQ?ESI9GHHaFUnrgJNk5 zjzqmHR2GYBs$(|wef)AU{+z2Y>{n&Tk8}?Ka6M#J1b_e%Fi8Z**ii;9M(&!@K+dj6 ztcU|55(q?zBv6V)gjfoQ3IL*!83HUIj0mzw3l$g=F%%}mVbIUR_4psGI426CDv-E= z)4?zglRCV8HBXOYpHJ0=z4J(8MMY|7FNdnE9vpcba1r6TkGA%=ZMzE_NI9WY`LOJi zFb#Gilx30ABP#~tHLpluR07vB6BvibWGRKyJVFOq*506PA1RzeOCB8Q85sd1El@+L zomR6gZ6`C-2vfeE6YpLlosg-#ZAi3$A{pGtM!#EZ-b6$9%n&@fKmdHyr>8GT*!-K< zo_w_Qm{IZ_5K(Kyx^~1ZZImMT@9%EIzGdN{aSY^rq=W?bLA>61WUPDiVq^nLSAWPe zPkI11;+}(3v!F_0O-4PWSPp@}7zfEW&_+vs2T}_CgQ3MkU*k? z&{kZfL`mm|ryLW>4A}RfO{FD3sKi5n3HiWe;Q16lQ4om8j9|%Lj0LCzjPl&jkvW)w zf!Uj}%KLE;YooEjSjCZ(M+cc9&_e$as@>3cd|cvP2eKo-nn+f@-pO+S?=|$NJvp7@-hdBMb{|&OzCZ{HjDQ7^1dlfi`c)g|y;Sn6zmLiE_>X)A0}+An zoKF<{FRreCCH=7w0VEhBeD>St!q3}=F%6r6cm|Y4Dy%imvu1$^QH)n2y*2?es3j{0yqbr@ z=a6iNU0*?mbzn`sX<2A^pdXykV7^jr8RMg>XOHi)b?HVZfdqAu5(qfRcs_ot_GgRH z1msIJ`V4%yc=E*p5O73%vB8~me!}`OLqU-|z~E>`C^7<0{?9Is8hmHWD#OA)o?t+_ zol z5dVP@7S=SX*DdHMeMFw-gglTrI4ji@IJcFxCx&)-1FqKZ3KX7*oTJaA%!dnrKCyw} zHRz(Enf(+4ffQRn?SoUa@H4P4)3%W^g7Jw341RW#I0>S0bXn#g{|pm?As~#BJwca_ zOLJ}EZ4U)^pyq29K_mjIDkDmA*}rXDQIAm#kS{5Xgw^4(Ra7Kc#P>`fo>Kf3WQ2}` zcsCPCJsZ+eCQOmX;+RIIT!ZuC;orVjti+NrW4bG7KZ@TafDpqxjM7kMXpNVklU)is zVDnKx{m0W-M@VZB`rzto^m#se^phPELx?h7G*EmJGDfrRTcA(-|JLw#|0bhjsPx!r z39bXG7Qw3|mSKWL%)yY)B8xCtts2iPqNeEc{C*4^B4-|{mCvIP_&T|s9NoGBBOx-O zO(Jy95ArK5F}Hl&N6Y`c>bdQ~X!rPdZP4$jQ2#{kp>-#u^a#dUaUfi-bc-(*xs({4gFE z$fu{XG_kfx?w*B&eBllIOS|A0bbWRX{&kRV)|3^q^RttFp2U>E@A%2+WnTDtdTAXW zSIjNw>>xwwsKY`fF#H7!2MD4dQE>f+jwee99K<;({eL+6{%9IOM@*i{!tamwgO@<| z2@p2vf?OyPY+Rv*%Q@czQx$P;C#E)l%nC#+3T5>8{5R^~0|9~p$C{6dK*V6d5E(q% z5hDN?h>;Z#@5$evr}rSlCHLWN-=|;e<1qi2wl(CA?_y17e@4d zPWlf3`WCMYZT8en2&Yd;3X;qwDXsEJM!& zFv_;=q!*Nfqd#`(cc+v4N0=K-0xiD_2VEWA$3;;9YB!i6G^k+@f)AQ`^w}Ps9022q z(GzwYmVPr2e-1w$KDcax+l1NrsJ4t^2omBYmmAJpU_?7Jr_)8PW8F`u#)l9PGAafb zYQG!!oCRh92j}m`7g)DTv=9NQJdp%b8&w=<-gICX6N3`93T&uJT~LD+2H)L-^#W_RhY=_jkfLd+l@L;b<3%m z6GSwfb6s{=YP&wS>C-iV<4`>uZRKPwwv0^l<#t(SqaQ}uwr$31qh_<>Y^Ore!zN*X z=({|1P+KX_zRoa{PM#e3xN?2(w{AC_^v{-Uci{drT5*q4g2K>A|R0WAc-^2>vlc)35a2!R3wP6fn+3!2<)kvUz4 z58B-P29;+B>$i1s*Q=$}<+Y~CWY>1xd$Shv&Vq9aV&XADg)qVvph8R-6u<_7ertyu z$pRaI5S-@MYpli0%%(=Q62nX`QKUqQ8A5`~o2Axb*g>{vO-oH= znsY}Ru)=F9nJBEo2`aUcl%)lOGh=e=Rz;%=Xk(-{hB{&+pqXSv5ZjP2mDDh_GFF)|3iRT0&&6mZ36 zut=ti*0rS@OQ8x!jcH=3HM|y?5s6|nCd~{NMk%RM;I+%4E?Ji}UD#7d>a$_16ltV} zI;F;DwV1Z56w;=It->jwy3y3#+;vPGxzXcWkR!lxsOoD$WYTG5G^r{-tD&Wc6HwSy&g|5W@jMxfg7`L z_4L~z$N_?pI7C`MgaOsH?GZ#+L4zcbNK1XTspIo+(0`iOd#(Bh6a97&(9W?Hf7uvO zk%Gk_$+lQ0I5-9@g`S%5GkoUw;NQh58BJ7I@ugu1!Uz9FLyv}3S`zA7h#}ah;uL4< zSQ1{c7n8KgCIQp{tHS8O)!!(n0s#!j9Sf*%noj$!!<&wIe!6CcbPLhdwZ$eFkfvoR zIB(R(K8}V^&FQf_3L0jD%#Iy~`A<(*37g+QD*~LAaYho)*C*`V;V{i|iMnPGDTN<+ zYDh|P6g(ay8)3HHVejn&=z}FtUnB$E^UE=O;Vc3>%q0XZ@m zb>{UE>ihA|+ju}V@c$Qn-9DabdW}h%gn6}zv^OAp7@DS!OFM!7smHS;1Nf{0v)pVX ztCP(F---ME81G@I)kP#&1KR!e3*KCCRTc(|bZKlC6%4deOm^wkt$VQ%8koF)G z`OtdUxWds1VGG4a4|g`@GY}%8wRk!z%9DH9p>CX+-&rR zh%O!dq&C;j^pLZ|bN%1EZs^33Kp4VFArO#Ys>UQ)6%b@W79K-y*50F!Ie zUFcmJi4=e=BND~A=D+HGX`QA(=K!2A+sj@({%acpmFd?Do=9Og-^=j8P56WZsG`zF zNyr@6GhzEM?etQ5kk-xXz`*j0-K~(2>9Ez*03FZ_D@?*)I{otu8|B3WzF@bP!jeIW z6q~)1zV)4hf`Q-ybuufio*#v3*7L1Nd07Uq4B_5-Yrisry`GK|9hd>JI030&dvU-O zAsj%i1KYo5Xaen}01sIJNowL|1&9UU-rj@a%QQCxAZ>*pnfTS8es}_1{qym}DZRA& zvA>NI_s zQIUcj2?(dDSss^RvYXGUJF+oxQZSGNAqGVaV@52Y2!q#^c3*-m?gbG~J*avmZP2oc zn>q0Mt#Q&pAq`ss<-rtw_OJ2X1~D1YD5xUC_fk|*Q5I^JFaaRUV1A^6hi-V{Dx;(O z`I91++vEmht2>qb{YvoxF)Ij*e9fU}_tjjJ0D}e+KKNwjs$w*|unaVice4nplM8Ip zIAUaGBE}gk!6qg-Xp*6E)yzfJg~Y-@%?%l>D~7cojEIJe5@>&wHL5BzNldb0Y>ACh zT^9?zaORXa%a!5Aw@7BJG=*~@)N=yFQ!@ocm6r=<+=(%Qd`43WUD1qX48Wm37OSiR z*sRd$qixK%<;jCvB6t1&#$(Kt-X|Q}yv#AVR$-E~Ok924jNZKXHI@#j8H!N0NU%^E zpzNg;a)7dSfumjcINwnsNCWqd%6>8>zqq9e^(7G@5&^6*>q{r__`ab z`;25#5gS^D(kTjx9L@Yh%}vwHK(PHNW47S-9a2CA2(k-3d9%|cO$oScyltSc|4aO{ zE8#xOF>+o3ivG9(Js%whsK9*oT;U_d1N_tO0P20|2!!n_s@>Jx!biL*LuZn}PC6gd z0BU>0YDpj@6`=Ai;F3@7g%7m$eeD;Mb;D^}keQfT%yngoKiVIy*>s<@JfZE%#tQco zfr|kA;7uBHo$^N#7o3R;Lq7Jt{tMiyBz1dSRNMzILYX$2jnV;WP<1o7 z?V!^J#u$9~o-mOlK4^xX^Z-A(0S!C(q@rZLpl~9iEy4h`#GM2PKve`H5;hj-V?L4` za5`~Okrnm?$1=M!H_IFaf{;aJ6d5|rU_u0rv;|JT4F@!IOyoz^2BKeYtmAe>>3}%F z^}<9l;?`Ad2*lkj1d-zDWn`vXkx^*=!8`tB*GP5i$BIuoL)bI^k4~JH*;KQ$R8tPP zyUGK0gL7sWX5CA~lTYDDbB4|+*CLe7L(tcC9OQ7a0T+m!BaVYCHDi|{}6e2ML z7{XanNhKDr*sz}fqAyw^Egq@H9B;3?tvl1IpIB}U!xl*yBP2-brFOy|b1790v?lGA zx;GeWm7r#mJjdhA^<%Az5=W}zujlZ6{k!;L0~l=GNPkq9OdvLjDB-8B-{tMjNQehG z!!Aia(FKCZlk*?j@5#RMq=Y1DVi4&lxX2^&C++;aKaPf(C=4_c@q9QfryeySzHGHM z=doncb63xfR-!_8T%GblaD_pFDgFO{!w=~8-o7W$1;_cNzCHJ@1ixiBnm2}&7i~|Y zo($4ymM6s3=Tf7)d8NfcV6>!+Vgv{Ls|O%m$WTQWBkGa+%vM(dcX~6&M*v${JeIAR zVY+SGjK~A=L6L`c*tjc7VH@3Tg=8PlVwtCKzWPdWD_kO=09FtzU&;D5sSiLa+Gj`K zq0GL#yO%uND|jS``YRrDJ+8b8hOSOpz_^=?OQQAYHTll=(F9m4z95A6nxwuYstHkt{%pd_k(uxG^-aQGy+iO6iYK8z zfl))c8;1`*eEJ6WI~dhzZj`ME7(JJIp?{&n{lhb;9|^pd~IwVm{egmoUHS8wW%-^>}`aew$WIgoGmm395<~MS$v^a4O(a1U;s!A_}~50zyDs zfFoqbc3BCIt%T+?oT0R*6EG*9?XILm*L+!hlJm0o&t&@EM_0e-tWmcI(>Ss zIFJq-De9f>oDkR(Tnr4t)JOqYvjr)MRU`@_ySHzX$Kc4w12zEaHT-y892iCjptM2U zRfr9Q#s_H<*KR{n6oB`N(de@_?NXj=H4iP%P3IwWc?ZaZ5MrL6(WMb@lAVf(8!jzYlbE?x9{2eObxSS ze}ne>8UC6%v2hqIfy*JJiv^N?G$Eu7KQ36ohjID7)AW2ZfepwaTFdi(>Rl0&T|@4^ zUc^K{(2_`^NTXt@`5;Ij(0?Ax&xq_cpEzs%5`6T}!4N!RW?APX78C*6%F_9E@9a1y50Pa=6zNY?16&iT z57MQuX%u8s=!$$*Z?eXxD4=AJ4Pb~c$N;G=YSy?eVPuAR&skgc<6BTzK+GPHKfc-k zvt?fs=(MOYUB14rVe~|Ue2|97?U!?Of-*G-1*kwPq3nfms>u81df&y8Ow%J%1Y{&B z$cP01C~ohXtDN9MC)MM8{69Y=oU1oL_hGkRuXrAACTs0X!qlX@aWHA{$(&Mao2DYg zI4y{ZA_&DrRjTlt6jj=N-jkQb+wUvR0 zh^mODH4_ZEYiPeF8J3mSlCWcvi^bcMO+^&q<`iO#4y>^kEUjwBF4>q>#G=74pJ&~g zfwdJ4;d=V|;jOa0_6Ip4h?)cukVsF(W<%9rUT;x=80P{4fn1AW06uHwk^oS7u}cq< zs7PezF>WA4xy}Jy_q;f37NW8fER><#fuf}p8f2JbfHg5C*2L*yu3(mjFXGXom6X{} zOr{L8+m&)lLR)1(+t&-D`ufZr6-5|EBq*~M2T-(JL*DBC!}QqivrE78p9G9Aj812@-t#X3u*OS!48+kTn$JX zfKFp1VgO~JqjX_eszQZnAth|R0}Of>@Bxr1Cem6AFS$38EH%!tk(fmoR9@{E{ptpU z6ca7r?qF1kUumDgu<_t3y#FPpRHdKT^VUfwi7Ou(W@R6B9c4bNft1*6^LOykvwN>J zI!S(&F@lM(Y*RN&%fao&Ib&t@1TwVs|#wOFS{)~9%mJ|io$qPgYEjm4U zTTnbC{JQs_x%;vF2!`Csni_0E<)kL2HahCBRXK1^Jep=EnQRfiVl`DVYL39<|@2#8x)3I(z| z{*SNh!CYKYfcfKI^FO}c%#bl%ex7fm(b7HfB8UbZ(4;^BTWnf(U*Ug_{;p~sV8Ia$ zbTcT=D?+0+eV*;GH>@^Uf)_DCW{l9r?^9?5bSf=tro`T^d)bB%e~+P|_mpVmx6@ zqdxzB9{!J>8S(o4SnOWRtK#}@8W$i4&lXq=pO|C{L|6=pk&2#RGYksE5)nWJBOmsz zkN9-{uc+`jPgzv7YhljRDsGF8bOquP^ccqoyyH=mN`bVKZ2s8kfw41o4ya+OXak$@ z%ugLtv(?9$OwJIX9}{1^=STuFeO}9uom{7%SnlAW`OY=i);syn&}wPmqisiyCyYLs z!j=oe+I{fbU~V#MY!y^JKv)p!bl7#?9K*~!%`sFK0;>qfL0k_!0Myh{L6JV(wLsGo zHm+W=%9+BXfT?`6dps2POVM1Wt#@gMSukTc1C8xwCz0yz$T1J~I5>oc2!Xo_AA0z7 z8j$Iw1Fx6dQ*cLKY1|3~C=Jv4dKD|EBcB{#l1&W2Ru{b2es$P^HAsEe*eCfz7tkN7 zR1-ws!J)%9<(wo`&Fbt@T7l0nP@pnMjlce zfF9?|q&P5=mdX>%5*S8IQ{9hZVso$O!&zW@=tIHhy%E*qk?FBR|1U{{43>gVRge4@%Xj)7ez9usYxeZ5!yPrYXdv)Odmo$3u!1m+6evwkH`s~HJ zb(gnjg^t>D81;tfM{o^Q}GfCxfuMo2w90{TmYAmf=9 zq>VNbiC85}%@kS@k{E0ogKPlgu_6Hs(nM=GC@=sQ+{*@Q?7gnRFgK!;rEO;$rmdz7 zIr8fkP5r&yoe+6+*#!AwdSqCasR6vf0CShZr?+K$9$yw+Y+`&JzlH;_!os4;_8j~+ zJGV)HI2qgMGG%x~^Y=F?JL|svGgaK!JYP`KdKT^p+vnCWYYmy-M|_DC0R$i*W66H$ z9XdK93L9Oi+;K6n;j-e2X~d6X#L{RgDKOcNgVivonsdF*t2K$9Yyc;;@xJwTbehc4 zKwny@N{$v&Qv(7SS7Rx<6D}eVZ9wm~2S~=IdX06*nBXjNmo2_;=I5OK-80vqP0SU^ z$HHToJ#gzSfc*C76N{opP0pey^1G2Nt=U6(D7*Le9{D$ej-CNSJa6`z9SdViC1pyb z9`=(yl=(0_ue*hP{`cu0iel1q0#d9!(69<0Ro4oZtnSeugI9X$PNSuj+pY( z@^OHLy+uUGEx@j*aHJdz3zoLlE`^ZhMgo~L$tcJKblyW5^Bx<4Lo3U+yckQM@He?a zz19>00css6Envp<8zSkGIx9sv<0cGi4x6DPU{esDJp{n1}Vtz(b+jd1gA*f$oAxHA9y+R zTzgV7dY+xJlr9&!Qb>mLWfb48;5lJ@N?u-OKV zkdRaX^ZC$c@vH1$?+gb6W5H3+uVIH5v*_d5z^Pp?rbm}Y?nj*|L;$H$HP@p#8X#n+ zPVP8*uQR4LT4_-QJV}R$=Qp?>2%t(sc=|ouNHx%s#8C8AJrzLbk6%1_ABROm!Ro4< z=WQLf(se2@MJleR!;YuqXu-n>Zq+0@Bfp!mU`X-6NWd{NBR+}2Iu+mH;UT`hFxb_Q za1Vll9!QaF+u=zVBR~;-)vG2S%Wtxg^NG>+D8&-Cp=c`W0D%q^H@Uj7_GJ0*9PhFQ zrVxuzHdG%wQCo!q&}b+mnR6Qw{RIQs?FbnQ+#e)iiSFho3_t(?=Ucf4Bd$EXY(azH z%6;b)d+D*pz))L)#2O(=bSf2m@ZDf!X#(Qc)0NQz51^#wmzfL+p5AQU?TK*(Pxsxq z^4G_5j=0b2pkWVQ3|l{f#)&jIPIp6)~LXQKGD<1 z2_>u9Ry=1|*E7?VdgHt8;z%1A(-#UDgbL~vfEqfe1(gZo8^|9#B%vSzQ`4=94+MrI zYyzsz(Gf(5hYJ76xrl5NGFm0HIi)qMT|Qj->rT@tVgsB?lA!>P+2flz^2{#Xx$Wa) zRwiay5rKO_*~Momkzl$%vhLP&yl^5MX<>33;x;3Q^`1x@l?0|**^6aHm!vvIRT%5e zs0b0}(Bqu@Q~O%U#(Tp9cu7RqRVaa#P945UUr|YMu#5&pZd`c+ zJ~7js`{e)vazzHF6phS* z9l7a_o!2=8j@ouo%)2P1)dE_uVgQ9EeVv#aU{nf+c^f&$W>+gd?v5A@+~8Dmm*cY7gY$RdZuY;eK6DyJi! ztRF6?we)+5;ovm&p`GckUW~*NMMMROg$h9=>kK=L2<^)45T|-kW8AC`cZW`%17p7W zBhfoE4?j(Vnn&q~EGi~a_k2E2S-Xf0wF*cIYKLBAdN-?47#?ef&V8z3!Rqc9P=yRm zcCB=*$|~VtQS>55jxP@Z7@%W^7~HRz#h^m?5!v%(EOc9RYJ}ZqAH{x z09zu{>hGT>>(j@6-u-vU55{^QtE9*t*q-nleJ{cepHEsnGta^?h^vI)%PAniD53*^ zH&Y~@bsW8n8x4)P40NsL&N)8^_lCSK0k+GyWc$}mvYvyb`g~(oW5r?C0{Eo%_{$Rj zlAT2`%ZL(Fpo4Y_mo$Qy)1pLSiUdn-DJQl(K>w>>l82I;UAkAWJ^F$z)}e7Vgn}xEx0|^hPQR|5!A5yp^i8$18)_~mQ_4x;_Voq&TfsQAVYoMTr=guDx%w&uLpeazql0YEvs-9`K7^VCs z#(VUAJX`WYAhJeO@Bmco>Q8^B*f}H;N|%@!jERiPB^Nqz2_m7_tx`&~8-eG=b290g zuMWjaF)2Z(b4J7G@;MA4?c?Fe!|y!z)1PqXB67nSvZM?bBdbi^HM-M(L3?l1d#R(9 zrWQd(Qmi$I`BIZdG@G?YwG{vYyCdKd#sUH(s{|W3Q5#W>2ku??G2D9P23tU*WqX%< z5V9~Th@JphK&HRSh=CxAas`7i06F+Hhb*AHb*~MHvT^G`4+JDrwjrMcn|za#3!Y12 z+V+Q!%dbyW1C~~bE55Cg8hQ5dh8nzX@IN!iBE9naTvBO#ifqmIE)yN@M?RiPygcVU zy?XV{A5osYqPq-Omss;5aafPlbC^yRStDo$#14MuQWdJ-$vMGuU}6$wVX`?jye%oNSi`RvKUkT_M6eu4xT8X~54FzO%%i zlFni?e#)~tJPK8YaH;~17mke@BKzwc50B9RxZd@PeKeh7Za7#E(1z)saK}@Urm_@c zOzTL#1Q;7qtUS-y44MvH6)I4uJOF*Cila1uB$=tvD@rXj?2A~kgBm@G=Q7%6a!T2cLhCme zU~U;xgDA3A#{nV>sZ3>-hE9PfKAT?uYEw^tgSneSz<=J^OdMfvW{uknPM0TEkIg4&w*9F*(7A9454*LfMT; zJ(YtzDzNCIgpwZB=f?Ea6U=mhH@J>g$8j8Dw}p(yZWW#F=X#$v%SrpCpjg`>B(k4B zE;b`ld=`$wSv4}kY6p{Zg&uxibLb#I6B?f@ai^^_6@Pr;uY|E&dhL1YgP#ZhPBW}y zeYjX?XK)$0>!K&4aPP<>&i%9WYez{@txUk>R%?|CXeh?%-Qjr0$j6LAbfbylXIR_j zx1ra+PFn-fo7-JSQ^Rx|zbd{?{Q(>Tgzj32CQG+DuA4n1Q!$~gN@qQy)TF9_Jf5s4 z2|x?3(Ko_T$0q3M5mXuO-a2mmJKJ~Xyo+}ne6xsBJCKbp%H}-$XMU@A=i%?mb%x#9 zV8pYxlZr zvKZ4E;&;GB)1xL?#~Z|BodAi*R#x=E)4iuW%uYhGyM<7&xN+}wo%(yL6PgOehF0Pr z_m6)aQ!AbNYWp@u_P$GvZ;9g9S=#4L$7dGP->#ov7jLFT!}xdz|CE`ofMm{_13c4GpfQk6)697z>UZGO6MpXfO!{Wjk64 zwjF8sPzYQt!Y~YRYLx^SC_NLiw{Ue%a)pE~6rU0%vG)56N~yf|A5syX9R z%T;83cOe2vtqV{rO4QHG*WZ_eVs>7WPFd(i6?CEbbjj8Y8K|2-Ur(a_Qm6ZEY!G3O8015W$rRB@r0~>KX*6 z_bJCS<8ht<&xF_8-=~AeUnhy~BZ!4xKT&Z z{P=P22jFPeT3w0 ztBz0`$JMiogT9xx&xh3h&-0L+djR7e|^w?$TiczrMfq-e&o*=jnV3d9&~ z%#X>1Px5Po>B!h>QWTnJN{+L{#4C=5Gw7;uZZ7h9GIkq}O>woz_bsOw!kA!mnVFU% z7f#W$JK;jk>?+?&3WpsPRFE4c(gPq_nM?ACgmDt1=FT4*vlU_@J?|MCTWYxavW~Zf z&e>5})1Dwr9=|;4+t?bG#b<0S0PFWPni|5f9wlqk>6PwRX?(+C8UU0NT|NRQV>od@ z1?$0K(2qeJFDg9XMVEYH(XuSr8;+FR?lU=|O~zTEY8Iwk-^JhOdTNbPb00ni(g)08 z^p?ofC6MAgU3guzEov!kd$vh=2;F|*BcgMF2 zi;P1EAKM$+H?XE;x4z|x%440w7695U=%xdca5+qvtPeBAFA84(EEX%!1rZi)vl_sT5~muX*mYk1+vuNU z7DWybcw!rTolz2bOwq_3ozJbC2(VB(4M-@lUX%>}RH~{W@;yN&-6G=-xrQ$x3`r`X zX(ZFzy%NQfv5ICN7RJtWTjO^aIshM-OcyS@cy-r1J97_uc?kO`bN6hbXQd3x?ud|r zK$r&K&cok06O?e!nRtQYZcwxWDHaJLiv@y0B9OG8LNHWnu^U+k5V3(EC`4eOBM7GH zOn@G4JuMA4gflYp&~Ev07mRz1i<}q=Vl`DnqFL;9CL#o$iRGqG zFGC4^nfFuW&*<;XKhWNT(dF~y^)F%= zNJ%uFv_xOiL`D41aC`iny(!d3ha#b9B5C52TTVrWyjj5Tmt~vjw0&|*gK?% zds#C8rA)hM6XB1Bgam|BVS;mO<9rOtp!&db62zBbwgzYtR)k^%FdJU%smQnZ+J2-b z?B|;w07MU50}we720$Ewo~fihKdda6nJM`}m`U5Ex6pV#13Ri6mQMDC*82<#=%*dY zULDuQAs53bgpXNAEH+=xq%psTLH(rEQ8|FY5@}BJeZ89gSUzxBLWcqlh!l)#xj$J| zeKjalFo*(t=%q6PA^NjcG28*N8;$Pv!HKqj)t$PiDhN>yNLR8~!+LP4+bx{rL0pmo7d2rzI! zxF?_0%q!>xcs@Nd-ZEHc36=`f+i)13VeoxjMElHfGWz?LDAppE%i{wRz(&c zk^ArjSOB1cX*;J6&KlNJB@e}R|H^16!2V(Jh#Ky!NEDb*q!4_+ky1U8K>2V5kO5`2 zki(FmFzg)p%J=Ptk`;dyui4d2yi$l%I(Yj#y}#7gN+XiNj?MIY(K3e}Y_Ibx)<>7; zLbZdva&%_q*a*n5iV=d5f=D9Pq4Q(-W22D?4f4Ia?Uz}GOc!NP5r9Idr~$)gx9Q8+ z2j}sqXSAOhG>{-oe$(7T2*>^-I9K#xMyo3Em0tW=ljs3P^z8s&gn$vWr!okH zmyO5kyr~Ltn1NOmVzRfQ}Xrc=zx^mY1n9FSdjV_^^}sl zIwpx!AJ*8kHUuJNxY0p1_j!kBT|ahxG8@a)1Yz&ARY3(6MPKGXrZJdNFNQH$21PH) zjf>x`GWG2G*@rCiMdJM zZU>yed8w4s7!#OM>F0AZUq|rW7iVux^F&iQ7CNu=!I#m|jA|}<0J|~km5WFU7+?Y+ z&aF@_X-c;rsemt5bGtZm`5Obre?D+>Qg8zt`*1Y9X;d(ah3faD7YSnR7xAt0+vu#Z z71AiDN#XUD*7yP;lYNv7g@J&gA4Q5bOeEJBLVy|PZuP;F8G)<&44kZo8j37nq%(P{ zQq&tlSrJGv3lU-}Sg45ly5_*xA(Mh@N9xXG3^?q_e_QlwNrFRuHC!fnTCk9Ndp(`^ zqjrX8O+mZ!smuDOGP9CLY> zhR>zV(u*Jh1(^;YNC;Arn89LbIJYp^t9ZsQ0-;!#5?I7+5K5rfvi28LEFfkEOzULn zx@sYBCv8f@L!qfoAQPK>Qsfnk^HQCich2yz*s&1G^p+tB1O)=HJfYR{p3{wwX9O=AA&ar%vh zA6^^r_^pKZhOZ(s7yd!4_qZu|b(@3#~#1@_qlE1(IGa5i!b4BQdouDQj+Gwu3SjVQFF&mKKEy zW>2dPY1L&>LJA8BM1&h`pyu;NWz6lpc7SZgDFuX56gDw}szqdCMO)ieR4M|<=(Zs= zG62Y$Ifp`~10WC}u!aN^MigG9K#!)#-d&%d-IG}R;IGarNYHbo~CsrHlP07UL zq5(H81YnR6i6P(vQULf*sguOe2kPSpJ$kQJOUcb<8DiTgh?WR;*8|i^K@CX>^FFcG ztm)-xK}J|AGHvA?D7-bM2D)~eUMQQret(m5qX_x+cI-NTSqaOYWwM7lrdIIB*~KXI zQH7zWvXJVFrzqtE$;C%*-PwX`z0kF@Kxk2c4&@1Q&?Jhb?M0(luZOnYH>uW6b2UyN zOi1jbjlXNu{ za`7-tQzQy$!$MRX)|qA|kr8I}W1-dJ)*>N~8!zL4XVikS$s8Y9k}Nc|zxG z#OXD0>24shTWnN%P||IcM0z`8l>G&|$ zzs#F*d#$lW^Xa|q_4>-9ZM<|z`vWAD zLQ(diH+x%MQ;RM*g+?-qlEsNN8MX}KQdMY%r4Ay5V85PgI79b=Z7hfsKu`%GGTI$n zlp}AHqnD3aW6Us4xH$x$0);;;dGatFt~ku)WWLA8OL@#?aZ@1 zQP6D)?0dCu7M{Nf`SDEq&Mc7|DfVII;e8q0`Ex1joXX=7Q03MEcWe_^_gcp~qu|@) z!s*)=6VCqyo|mqx+;lb*Ta8aS+vv{>rm#_2J9Ov&;Q^{_K7I z=y&d(&q3k#-#*9FzMzswk`Ox0hLm{AY<-v#TkDi#AyCH_#`}C8eO1N;hW-6zwAa|c zoy=A+2CEbxGcFrlwOAdZkzB-xgnk;!s|RKCN+ss2=~mewY^g9qluVyaXY{b7bO^uF zK5T@cErFkJI)+7GwIG?06mo12&J2m2XH!GvW1i5vJ<4xkFvz$CNppO52q@ppG;#3k z==&i`g#LRF-6Lk7y!==~3=J!hNsq8LBR5@ZZ<=P15y}9!M-r;i^jJwfRjbag2iK+0 z;k5lW?d1ci8j^C5p>d08*rC`i;Rl%=oo5OYg!PHzOaz@3<+yP7GuxZVbu82Mgb$jpOj14|~;sC$P;$ zcDVv9xJwC)#Y~w4+b5qt)v>_U>w+{fAumdN6i-5nDh3D=N(9g(D-elY5Ri+m%aV6K z7{=mGsY2PLWNdjMFd@PV*Lgk8=f96;jXokR46~edO6)Wv5QyL?LP!tKRh=SoPkq?n z9k_JgJc((9FrRWFdlTHik%{XN(6Y?j1`-d_j zoU<{?1>eO&OlMEqg=3PsiLjvNn9y4c%LySqCT^SsFs1QO5~qYB2UIL-`|t??8B*KD z$fRM5q-q3Zx#S3jz`FU}Bke^&sfwYL7>#Kq>Y{->DpoRJD9p(2RcWWHllu9J7*I;P ztpl)9jIdP`ajW1xy6{p)K=4fNF1|%BRWM+@l?AK26<4{<`+&G zM1^iw6`e=rxS(h;ezyc04395kBy@ZdpR+{y=&V0 zrA}N%4**C5hg6RH z&{e1yftuCYX=IWAFNT-3;p551HG&sBV1X`OAodg;_-)ZC(~U$!Rsw^#fgv?1AwcL! z9ZDhwr9lFypj!b)DDvts9oxm>2=J_?+KdXPa1i2BD|1b(R!@=)qS6Dbc7;dv>DE1*mC zWw91O{{prGzVrazvm?`@*rpjmeJBvcRf7@S$l#4&yMua( zE^y*hsID=OfXd@K)s#flqzQQtLP5bTC4%=Ch$YZ@lrI=m6FSAW2%~ z6AguaM#K&rDxBcI1U?D4o;5BOP>m#rk)f#A-SefFcf+m^2qMx z&wqBiGYQcNHt_%`!wSNlagy@U2?Q`$>atPKuqlKE2PXS~S2T(!_`;AghQ6CVi`uHD zV-8ei;E*>E98h4!p;_wnuL}$pm7v#C!$`&i2}9WSSrDg9lJcy+Jzq=0@?;nY?S`X) zp07KvP189BoR?=x=zG&RW+9g8aOa-gCTDKA7R3=4T)8;HE|Azq7zH610)uU{fGRCP zLb1{Ms+ksgb>5T+JKNd~l~vZ9z5?n%d}DzTfT)^e34a5^g#-|#1OzBqV9y;Lw@%jX zI>}7gmzlwxj8sI68%%+UBa=w6 zU@PnIg`iIHRzS-7KgZi}|73cy7OQ01x1Zy%>#M&cTp6F@{>i~D|~ zM~7(1VBPf zrC5Tfl3QcI9X?)%8qEszHf{oSpLj40j0YwzMoERj<@N}nyH&dC43re512xi+9F2vH z3_}e=;dz21mH~l{>_@x=03fgiF_D0w1R$cq2?0b{j99|vw{$?-MUX-)Sp{LsAc+I= zF!N@HceWoC4UU)>iwF`5F;+z?En?EDafp_KBP~NQ5FP-`8r`VqXmGZlVV9L0Ax``1tSm=FoLXM z1%j%H5I|WKP-F@qzz9JkB}oB70~rAXi6RIP83baiio{}!1Y{U2MFb-ONT8}Q0Tqe} ziVC6#2%w0n$w>&6V2UFV1dL%Kz!E6HSP_WGghWUvuq6UYDG5pn(*%ftBLyN6PzZns zMo7RxiC~bj5|pV?N~}=~0Jsz@U?B*INpzBgS_lwCU_oRMKtce)87&ADUEVlVs)P=x2j{-_V9Y>JccLQM5f*_E zVj?UI_3YYI!mtSHZOFl0ptlPg)y(BhDY6_=p=&SCAKHCleLju(=Wa|D5 zytk11y4#%ex~Y)12+<-#91S7?4i^Db5Mc#w-SR|Ay6&y<@GjJR2WsGU*BP7TIOw?fwUvUZ4@ayzb zM;u%P4-QLxPAGgmMqf}QivkRR84&(Td5WpD)Q3vi$c-<2@IBswZ&C*{U3I|MaQpj^ z)Nwfn%?I`Z?!x4NM$QnjgB}&T(Pk#6(VcL=E~+P2)y;o))H@+PsA94xyr0S2*8|A% zHxB?zr5c%Xb08hWkXr+<7v^ut^Y!KvzIvu)T`_A!hB*cfKYueA)sr>!=!Dh_U`oMa zDy(H`)76HHH{rN&lxwoq9j1L_9lL6srE6**)=V%?adVPBs8%zLqaTJ)X#-h~%%jCg zda(x4C1g4qen8R~LJ}Bmn22NGIhz3eAVgsl-i!8x6pwsLl2e?FB2Fq?b6DvX2>muI z%tX#WrsHT#FuroHg=BG*YoBs~_MCdKMGY|4#0a`$yJMSkyO`*h(0tKY!?av^dPV~?2j@q2w)czF2w052qyTmh9# zff@6DVcHl6s~C0uJj25UK7k4!EkaO+()bzBnhfmxxmm_Pz8wZ+=qv{xJ`UV4po35f zfJyQ+8H|NM@faUS!OJ5Xe1Jq3=@&yCF}txC8>5n#48D0^__m=TVNgLvKei<)>;{ zw`#_h4X-w3n%QutN_h6yQ;u_vN-({11|dSFJFv-&t$s&jz%h#mp`eRZ66;lmnkEF# zB3$oeXqm+g2%<&vz-)+FLd%`(P^utN1P6GTomRGAHU*R2aKMQLfQt}VDFI@m@oFd) zg+*E2hlrlGOk~8an2eB85~ekhVi1h*YMI7hR$wuWo)(==u}a%o9<5DU2-pYfL-x?p z8mx+*?q@T?!4z05V#EWLeVPnO2`oaJ z0Uc&xd?ELUYl3^^6EUc9oqJF>`|Jpd(ujmcu1KkCzuBsg@MZyk5Xgfqt2{X@zgJJJGC?;lLVG8eP{IU* z`fl51@koF##(mp$xS~DTpHlhspb88~48R4Il=~Pk7agb+HJKPw3P5G{KJjwoGl!xk zI^bBwE`#f(ykz__{q`H0N)?P#PkkY12N0^|;>cvtmj7;GaD+3Ma46}%y{1}A!|LeI znFrGqXQeoRvH<1|!-vjl7Vu9pz(D^>2&UEuKDdmGiV84BLMaIdp(4o%79$h@Qbiat z0RcdQl0X$?7C?x^MnpsIik)s>K-p6Wsi;6SfsztZLOgvW@~kQ!I@EE_n?N~#U$g~U7fTi?#hPvP&RbxtTd#P3j9BL_UyTilLw9r>tn3qw`_#AU6gSt zuhWm#0TZ*mUT!mmmW(LFj7zlz1xYY5I|)-(%qhaZEn*Z1wVVn)vKHd#GxQ)Z1qzsf zoHpo<>OgUrP*hyz+3lgdAF&~~sdJr9XE!oQWSqb~&iw3P0D1jbm|OrNYRuxXMyv-D zP$CPr2FnOIV^5!+pO8}lGKrJ{npJ0dw3|TGkYE@{xxNv_wv!UBC$xv<0z@Po^?9(0 z39JJQYEhUilsToEPULn-458NmC?2msMOh{eaqQVNdIG509nefj49EjqHD{nFYTp|n zf;fZfx0YaEeC?b1=bx9&wTI3-UAr>|D3oTMi+1V;Pyvua3=#7WPeX_|x27Fsp$(q< zq9VjZT}z!Cz9&6-n)bY-_W@nsy01FE-Lo-8^}!hs9rqjCW>sUWmL@nu(botsF8M9l zO30W~HSv)RF#?Q9$N|uiLoT2qGYv%;F5rbRKvow+Bt^q2yf2wDs>?VVZ=T@WmW1>` zt|`^)5ThRpGj#CPJ2GMiX)s_`A38OJmk_5HB)d3F_L$I`;N@7Sc^2+L|l6M$lL}0~&@KA&(n@Cin!e*#oA!OBr(kS8IH=*IfdY}mLVL)Re z9*s?I!xGYt!7H;MH%S!7bh;fJ9WxnrSulbiixptIW^T!((xjK0 ziAX6~VXf?vWHqayCoB$Ejq++B0|OGg;mvad=T{F&WYC(?(EylOk!Db#j8Y{SjJOn- z!A>zXifC=->5b6jM;!+3HMuG?Xla;Su3-Yw!O3x&)zMAwMzwd9(+Et0MnNH%Y@Ahi)fyW)tw z^h95jJ@g@{-5$BQ)NtWuO6x318GU?eLw`*Z-r`^kDpGoxP~MM&Ikd0QW=^lRbKTsA2ETKRvv;@t=n-Vfr4BIGd@~1$jJ2%ovza(m6>nAS!@<>}nHy zMpfhwM{le0*>kjklspLQ8^!^p?P-P|Z@>p5Ai+ovFJ8Zu%mFo(RzTTjxl>cAArDavH1X)5-3n{It$l`7&vY{3Nh0-w-dG| z{BnSuyc%l2GqHTz;!q}*sx}n{vy!{!gz3AkRkH0`hlqf_m#pJ+3*hIKyChr z0Q}zMoEVIXD51xHWs@?!;(rKNK=jBd5(+{jfJh{V(#b|Zw!_xKSRktuP>{ib3<5za z5-m~zLrf4FG>WSPge0Y62%rfC78MVy?OFA6gay_|U~o;ebzJ1vLnv1S{EI$#}iU zK_#!pF+jg^0&a*ApGgM*BRtTlH02&!aEIygsm00q;)wxFC{gz1=ava%DwvoO7zms& zJ>jhtvHW!4oe>2kg%U9LGJBtwn_jUlW89#y8SgrwER}Ez@RumBM7M3>07?}FY#91m zh1l9<+s(@dmN(NZT<1K%sKc#wYQ5=<>+$z{iy7$yu4UTth5q-~|=sK%+?*1|B+< zplZhxO3Q&AU{uC6vbfrn!h}2@vXIIFkcaGOA!jpL3-8SVXY|~G8;`%Bk&FNvqoXEV z6gN=!MOg}{SqOW~z#-z{za0q{Mb;o3&1V;ks`6cdHT#)K44Dn$Z;-abvZ{XYQ8R&z z)MOheFgk|DAbUPCx*{^1+wfpX2o#;D3rxHf#_ebmYSAeMCw`-U1EfPfBXFrsm4 z;!5r8EHcpK;}I*N2v0Q4^xJ$Y)!AAE!HE>t2F>RlcaffaLySZ^X6U$fmphiKb{-Ep z5|Cb<1yopysxgR)IWZ!N2*n=#udjoR_2WkeByU+Smh+_C((XdkCIJ$3xfbChiR_>( z^()(rnHSM|5b-=QFGGYf=MrW@mK;lRaAeAox^_qm9_yA_oo%*w;mpLm?*v&@2Mn;W z*z<2E3Zfj_T-PbUcy4iZye^AMAc!Vv*@WfO_z%O<{~dNfhrYPDiV#%*2%%v|CU{mo zCzcW%cRP88i>mURWtHqAol+tKfTR?PU$C;r)X5?2PE&>jJA&UHcZ=-Vy_I<5ruhlL z#JcF-Cyx*(b_XVb@;>;*1%zI$Kovk>olMjOp1;}Gq&Vkl0(gT9AZ8Yz`g{-*TtGZn zw?&`|OkF^%MZ!X!Q&`S$zCEu3KD)MMu&K~<+XGpveLcP133diuc-qLNP%kl_6BeTj zEtkjXADjX}AV|+aoPKB9xH_<)oQSBD6a@i5O%a6Wt%3XV z5a>`OK(O_SD0FtaGbXd|vrW=BZhcRhjR^Yd)HtB{45WQk3+^8IeN5}K>DUwo>34uP z8HHbN1j4x8G*aXHSb+yhXNUozRs&fBd~IxR3e!bpVZENX8rXHmI4zx>PK}NOj!r5w zv$2LtPA?qMj8UJE1@%bhUk}#$>5v{A8)Z*VUORV`AJ@^3$34WSlC^X2;-tYUl57GGbymOy`>O-RtuH2I z#u#|EXl3%UC{;*AR3@#98rY-=D#ZmxEK)2aDgac0y_5t`HxyBTCrQ~s;P?-3%;P&a z0WQV*7VuYzr<_E%!l5JMPeB$$;INC$Y@SJQq>zPkAs+Azkj+RQY14ZJRZ>&P@bmXk zNHM)mo(RK&?tJP*Jvti@C5)xn%Ci$atI^ zA5T8r^~xM_(G9abZm>=79r1?6+hjivSyRyGvKgC8U-0%D_ITk|iLv(iC_R!$L0Jg~ zK|(OvXX%TXb{uWU3 z2cmg2dOG%fkFU+>@aysCJJVI zbwJK{>X$rBZG?4(cp#}GAeyJ!#}K{nEFN@(FHO|g+O=Asb7y#A*_Uhs!}4@kIg$>j zd${NbLB|3s3B)fZPzY$qh+nmR-JZNEMv=n_TqYqTfrDk18Gwux?=*>w3c?614qgZ4 z*94cvC0JexToJk{P1?je^2n(vMGy#3_%bNEak9Gl7bDSoVz6X38JtK5fP+9d!l=R@ znK%T~4dZNpf}P`-<|>SU=rVJFs?Dvl>w1AD@7xDDf!*=FMtaha2!6uNu)!dVJW@{L z8AS9LXJaX>T;h7R(Ri+nQwZc*lCsWiTuf=wfoTJ}R%Nyw18jlYfxPf&Z*-I)P$(#l z<^I`jm=c)hDXI`og^moO?=J)a=ku(6Mq|_J%!ejNneMEQu)Jq5q~EEGRt)((8<|cd zBd&?;)`GcaM`_TI^u8W{8ZpY+D_qcG_$a`H3)Jsb>Tx%DoF^XN`ea>Eqc5-^<}{v zyptlT$K<4_>z`l0JWq#~a5~;^6GgN>m)9~eg97rN(+y12qDaN09_e1n1flE}*WH;B z;$k=EI;cRP2nljI#X{&0Gre^5(iKRcn@)Z#@xgl#0|;E@Tx=a%s3nw;su+a8{4u@m;@6^KZeo!mmC~6l*(X*)E2hF`s(mNU{Q!urBFy!P)KxjCsEU!aInxdzT>j}`VQev zXkTEE2F!nHEt>;DyNBbitbQS`jnv?dN@cZ{m^e|d3T4RUXP-OcdLzGH&88N4;B`w_ zp^z_41Z3aR-N;gW79+1s1{&%Z>v2S?1(xm4@~aKn5RO+L6RAN)7NdTB-v zem%QDj=gDv_Z=6ruye)sh5~6N)m*}z-5LZZpGW9wU&}MS;*(deJY3dp&iZ%(@krVL z3n&15N3OcpP&&_ztr_6WTIQ->Wa0~48C?Ldoo1dZ01U{2O!|eqkg>ppRJlS=^+*&t z;CcW>_0N`@)`xfED&rnm&l8$K>BWtG>BvMx4m@)RI&@WOM(IaGbO{FNB4B#+Lrz-eoYlrBeN+3OaDB_%9^T6l;Ohc@0SGwkg zykWds9QM)gUgPb*9Qds3W+$L;ICG)R>&?8!TMu2cj*oET8;)O8>NPyT#L)6wCz3gX z9&yr-wh>zUb!O?-ZTwFm;XAG~eYeKYEgcN_elU0GPC4TI{IgzM_Oa4B|w*81FVCIRm_EMziF@vjqWFK}ArzP|mwB>ZRRKKJTtG$rj@Vj;L!} z>Y_Z(vb;6{5U^VX&>k;6n*%buk?IFXzH(`MbG}RW95D^X`R&Sw*w15S=YCB5&Z>h? zPIw(e%>XGpKqVBQh1`y$D%mGUTL*PSJYiWiEWl1l8{FW5aG-SR6mXBUKsXmz;AhA; zH9So?=~!WtoGL>icZiKZQVe(NJ$n$l>37n)yWmsnzUc5|5wa#X+)&(I#} z9Sdw>jyf`AVRPlyrXY2Rz6P5s$;z^wGK?r>*%Hw>)T2gQXFfeWJbI4gCl-b9qdDWw zgm5s03aW$P5So_^90I2~={oeD@G-;Q->Ug{!)^M%ZdvxeWPmTjc9=+(1A;NEba?8q z?lQoUBqAr1XK0;QJyxTz|38k3+v%RhvllQQk4o=gac{;T;@Ej^^A^g>)L+05d7SHE zxKsU7r^=C%5_ZLN<*#^NvJXpDP{g7sW1VkfkyFQPS7DBXJ~fdZd7e5nppp<;^I7z& z2_y+UvBBZQk*J?8ubz_2&G~8k%i}ok|6kIzUOIpeJBSCB@@`m2^8lRt`PX6ReVwD2 zTjv~m`Q}9H+tsE-$n3A$0ft&hW)QVPK}+_F?sy3FxQ$12!ZC&n`)jTq~2 zG*YIU9x3q^P%sd5jqeI2_{;1L;-)d$fPTn2k;`$73VUWv$9tJfHDOaDbq~rkzA==- zR0t(9R1w*ZY2xH5@N=UgIfHxy)(yW|yF{{Rnl#lphb79#S4f@i4z(rEOpyw3bv>t( z9KVciGg!c8atkOP;t8vLNbRL=m=VK9bzMT~u_WIu8^YYhD%Pel#B}Fd>6}34hu}UR zF}!ljE$HhzF*A5G&pl`3VM(#?NPar!!&hG&x`+llYd4v^uNZ67FGg<+>chu45!0fD z+;}iLXRGOTbo_7IfqQW!+e_5-i5;_nh`(-=-(Ds%y*g`sBBMO>5ihdNvGIw_#Q9;v zDc5zv-kvIW#(N3U*7?lI!Hf(ul{!>940p2MPq#P19lou*?zp*Gn?y25HZ)MnPfMMy zKQ0__{G)L$8O2CLZzhhY7*hLM5-78jkwwGmYoYtQfU#x zPQ2Q2j*e~jA1-06`4|8dVv?_ZPfp#O3)=E{d}oIX#d_hU0l|ZFJJE`m6Gq0GA|fE> zOL|)*HeI(xmvi5x)ozCIT_+=`M9vdin34;x%;5sP8H~*uky;L9nGO%rgH%8}Cs@On zYL)Lq1frWp;O#Y~x|*KkJ#Cbm93~uPEd(=QH#p9cD}^c<5hNK&rF1OdN(@m7Cjcfd zA|X)$5vtvv>lk44yk&&Tz4Z3vfCJ^_&zN2==*G25u!~vDm|SIo5G2zi4)Xf5Sx0s| zm`%re|5fo1op0dmUZ>svI`#Sps6~qu5+WeaRU&Z{BQS(WhLr4{%6IxVMj|pG2!=DQ z6V~g0aARmP6CMJ9W)?r!Ca3A!Mt|_|KA)dFJ2GErXTOk)6pDVP1S+hE41>5HDHaGr zd97MaQi=jVAP^_F)Gq_$+VpxUY7%fAx%HvGJ`v#H*Ro-RU`TnW@%hZ~^JJ#EG=)P} zmoED_^V1va*>5*38?zIla!C?Mfe3jt{;E4+!0M1b&);pA#P1QhhTbU+pM0OdVj#!@ zBAAF00U{KF;k3QJ%@`2-My{My?(Q)Ur#y4T#7?lK`UwdqZ@29{So|6DZ3Aj|4*yee z=8^=8JjDu99S%JuhQ#)2B^41nVkbmH?}h{e1)M$FH1K)ep(=yEQCBAO-Hf&QuUJXZ z@^S9$frxYCsO9eT8aqOc4GfZF=nHMUGJ*4k=K&vdSKPpn7A!zMsr7j~b$=esvvGf$ z?e=W$*TiA|siBw$qTh2EG1bke*avUT>(~5DJSfC<0wR)%=HnL{xF7c70AI`TeQjNz zQLqDn(OD3Y832T2dCpe7w^}Y#sz`cc(_y9%;|_frCQuwE2cz!q@^$E6xchr|{kr~n z?cL{a_&kB9zgO@`kc5cH$?IR1G|Sk+qB0}b=-bTd;&{dJo;@9(U$=?}sNfH9djq%@741U32O1OA9(TLfSSaRewd#ZI#<$miK%1nEsuT3 zOuYqA98DK4y!hgaJM7{f+}%lV3lQ815`w!d?(QxDf?IHRhd>A(+}#~6@Av;z_nzu{ zre{u1Pgix#nV#;`&#_N(cv0Se#R|T+Joo$1>+2&r<+^3qbx@@$2o`%^RROQah)0Mk zo3_)NUmWDok{_r-OPX4t<49Z&uoVl9U;|K7vV z@wg+>eLqjgM=dI>3!w>m(LPc)E0U3AiEOS+Fn)tol+m4=*880pbu`S;}9KGIrbCVBZrDnUy`o#h%JsPt(8MV zmM=w`Fqnc|hY+QHRRkPdYk|UZOIpW}#gZg3G&1OgdT^=g+j86Yj(9m?!uIWPaS~}h zCY+jm4?mPKU&4@vBVg|da~T;zIWDfLa;q!dXslEr*j*>=rKINeYHn++78? zP@ur89laX^nWJqg6B*mryK3?1U$Lk_arMqK=Jr9l+RPbG%ZE*}jM>qD(Pv3U= zjV%kOj|_okPaxZVZXV>aFDpk_YITmZk}mf=_CbHmt@icst53~$gONX~Bp4Z(BTy)w z+Sn&BjCO#?52Y{@#?(P&9Be0%)vH7H--Ey#ewkM^W46(jtM;Dx69<8vbmKnBC<2Yi z{!*nX1jxV!lMBV)9%m?|CU^k5aEYJd&-9m)0RsX+2xQvWGJA*kG7ri95vWX>@;2vaXMW4y4B|X-cPzfPu~-~{XJP|YzAKs30kG07BN$sczSOs_getGUOJ zRkW?3s_-j1N5Q~S|YT!lO+XQSZ9rZ%R84m#D2h8Xl#y&PH$ zSe{pbem{#hG6ib%(US4hVdEZZW_sfv-Psl9UnOA=xk@!8Boe0s@IJa;jvi#8eANU)HSidJ zIJGmWqDJ{@e-~oo$S#c zVWwdES2-sx`ckfi1YP2mtTd%G4wL+2WfBX|jr%aNo4bM5ADCH^T1?`iY-#m4YU07{ zU)>I>TrF|`Jh5%v|C%k~otYaM$`AGnUu-KPb}8voHT-PL<^4$qzR~N|Hc{k{+K2hQ zwW@Yyhv*WgMQ{6GQ$)t2>SRFZ4@!$M_E{cS_O%8xAq}P8)BSeW(B14#<>emYGASZa zBi%i0{qm<~=V22CerHBdPCX7586~2_ViT&?uQKF-qv={3q#0r|z*LSi!o)9PmfNeE z;BA<=>+~-VRvD8`UR9qAP{C3DVX&F6Qa2@I%R43iOy+vG!VqX-KT3kWT`lB!*Ta*W z)Sl$A!w(tyjVaU}bXKOWdTAjvGlr9^w1CY)=dlC4p zeVYDvrEZ%lO*xFP?e*~dEcpbfkCTs}&r(;wxW*0;F`O&B0`v7jhD;WDqXQ?9a5qIO zltV}T(p)nF?Is zwWU*}G-K!ZZOzc>-a4g`FV$Muu6_wrz>B(oq2Nr4YU1$&0}$uNzwmxak15g1&WcIS zw$~_+|sMuIH9hXy>j6@(nncHDsJc2y5xeF<}QiUbBWg= zI#d$#!^WFL{*^3lJl4;epk{ykl!X36e*ro zj4drYPI!XoIC!`zhKMAndfUX+bsKU$fTBP{w{eRtYI(GipUvdm*-ii92nwAEsDld` zMGpzMr5HXI5Y4@H&efB2izasx<=u+FU~2QnBm{7yDXVV&>8s+~-O@kIZvgXUxt2If zMZ&v4Y;lH;*XH-9w(sqLlkk-yKNtX$R8`&rLw{Ydg50?g@l{^)nRi*6KMuWSK{8l{(m&_r3P6C2zin ziaz`8+{S{E$r40CK8xY3j=|hhTgdd0m4I62<1m6*Lyfp`fKj+*?T1r}#d`F9pT8%n z9^shU{*{S=qi3g>p?Q2LVu=@yfS&l$UHhxNC^y7ur!oH`e!5gez_G>~O}63X@&4%R zMTRC;)aDG#8D5eZS}t$ul`q^hS=@14_IF9bCHSy=XDlph2{s^B6cud0N`e%RtcX`{ zFL@X-&UvTSfWvdC^}IFMXGa4gFc|iS#Ik5>@&W(9eCY47Gw+V}_D@HDh`Qs=^hDw^3#kZ#nXe&(|wCI!}!!r zZxy0Cx(?LsdC}l6p%NUns7e=p(RZp84K}e2O$e>m+Qn`?BUP~X2a07J3}*8Bo}`c( zWa5NqPB5Et%V96TfSn|hx@ZfKTTGu1T#_&xbD!W7<2Gv2@(0D07cDuSyrDVr?&SI& z`!i9a?q~;q7QfpP5kV1+xQ4^gP{-j4eV6E(tPX<-*k8!KTYcB>A~?rnz4;caOzj?C zlv-Ak-9`#+H~y%ut!3)#mbMty?OmbfatmLw_HZrP7XDV}9er~99L+pZlai!l!9WBz zg9$RjQYCR;;Jmy&=yN>Roz`~RvctTJjRLO^ff_f01;-=26N2!uohDeq$W~zoGeE_P=)7%Hp_^q40C-#KBVXK(Y{Yl=q41nQ+;0N0R@Sm1#|&n65}bR3R-V% z<7qvDVr}&_8VLS?ktX1RaWru*!bn}zE2!omB~mJJ@;uOSf^QjP&+8xH)uiKMM7jVP zn1;LiNK()6L*+ppzHC?7D{k&OcVWc(J55~#dJe8E5HEs3r57WDr;Vj7gz4)6tDxAc zU=k+b4Rk+m#Wuw>SMNvQ-2gQ%f9mVy$Wt4AFTiyeKKy_IE=yLwaCYT*8I4) zN&AqdhvH({wnLjj#)objG&Pf$vEYdzXv%$MlGQKxL<;190i9K8{DgxSCFFn)krI=W z;mh2Pv#NZJm6;bSDf)WT`=aexc{_V`_VjT6)bZw*vZwHwA0=8Xq4fTEIk|_grx&s5 zw4OHfBe?E|G{>l^DekD@ooz{HaMXKXtq}9UFCGfqHW_6n!BByGlLefzdZ+BrLttfM4S6grt<`mLYwPJ0rig<%n(1HrC ztXt*=*2Y}Y{Wt2k@wMuSgk$bjSy@97C?8@dVYfcHdvI z!zqv!WxUGzS4o9lK6W$z{y5b1xU}J@^flcGMX_00J|Q>00QVF*LYfUZGEY6cJw!1z zsdlf@L3rwbc)y5wFVXq$Zxy|NGKG}>o9(kjE|5p%Nfj{|vt{z$dSyTnrG_G=! z?4eOX{nPTgu&==b^fK>Tqj4%29-6>HR)jAh_A6eQJ~_d}F>n%*uyN>u#R&=S^v2!K zPhvj2WfJjE=qlD9o}6|O0~J_#phIS=TTm{yfs5yC;kSZ+EGHG9>ok1KAH*xIOxQ$B z72XkIVg4mM;d%*ag#Nsk+4%?|ut57j=wG$Bkhpj@Ze{U1?yxTc6gexn@=&c=Dh^Sj2EVdUg*tGkY! z4JLm}V~4S~wsV<&w&4*46~K*I;`#`8seb23bFi53a9qwXhCdQ~#boLq*(CSuTl%?m z`1CfT8}ZY z;}0#TqqTwxZeKP@2i*Hn`!PvW{ITI=L&ym!x0Rwn4X{pnSH?@)$`$pfeY>dQW;t)2 zDu`kr7OwYznLK)TR!PH&cTM86xuS@R8WTqy}tce4J+x&M*7_9M0)+<8>V?iBnCbyjpold z%A5WxPpgR#9U}RfxOqS8M7q3yftu4kxh{_4f@dqmE*Q~|$|n$Sf&06kI+|i};?K9C zYx953WYgy+VpEfV817H5M{g9LHB%mCwk8h7)3yq@tanH}cGqB8EOY}*jDGGzlL#W2 z20aV#l2L;skSEpYLPc68V~u}>qWtM+xV?x&;}+wIsbCw$gCB$S?>$6Bijl~YHUSs_ z?!5$?&vx$`O^=4Ae%N2!*ttK zMu~9#K$q+t3C)wgo;BD>_0YP=6o)v)~m)&=5<1#1Vm{ zYB|%Rq1J8r1CkFkszscQG*o(u!%>66%t0fC)E^Y(ulR~If)G7%hoZ0=BG8fP1!<312KPUZsCY1Ca_DC=(*P20Jj7z8m zk7=>(k@j2@i{@@QqlL?*ag6O<_vH5n%yqMcw7B>6lX_ZtBF6vQT<70cpVeT22+Y{g#3EBkROy^m7K^$kh1m5062MQQ89j zTgfQ{A4`b>UATj_HuAgrYD#x{J7Hg9N!6x)^du+1_3`Tmq~Tc3o-~;JZe7q;fml!w zpjGOZe-Y_dh0e6{rC>?p{rFVA6OQ%iK1umuQTdq}#Sf#TloPv?RKz6++^+gE&j zPr0{1HUC_S#}HB?BjhxSsZNAe^hVsfUKn@1cpAy?xEOLp9mxGy1mvAbD6Dp`k5c%v zl@0=BVR*=}LzbzttF0IAty9(r$oTtkE17^WJ6Z?gSI((*?^QB`KEWIKK8(~4;ddpC za9mfnn2PH#Ys_=(3PhNboBDQFi&0fmyeet_aDR>eg{M?(uHbPSZ7#^)5kh?bl{*P? zoL|3kvLt!XIS#@jX>&j>B?>EU`T@j71V-%QaR_}S^?qG;x`K7ll>hz#{dnu{jt|^f ze2<3bLGI_LA22Y^yR@~~(gjA4$dSz;=ZHG_;|Vfuf2$rvYDTV>vZwtVsPW-7#J ztxZo5ET<*BI9!ZvzjwcP1;l3BCm&rsczHTptt~J^+5CG!P;7W3dCHNwl#ULUzn1lu zzQVavZ4SxPs|7Ziilt3{nl#kL4O^<8)WtFeb+;7hBmx@>(B5SOYh^6RU+)>L26Q$@-p z91?hBLO+qVqlA280#%8g-!xVoNoZ1GDHqDPY$=pH!_4f1>K?kG0`S}j4(Fmr5=`&j8;lPf#Q=mA{G>(QID!jn3(Ht>-jiiKKY_^XUMnk%h8Fy=QapnELZ>m z93{M1BtXXSl$Z!q(@TW&OYcYXnC5)tRH(xBN;~1$*Mv`B6IGV?u}^-}PH-Le8Q&Pt zAC}qU%bZGgrQ~SsHG2lifu>*#nkynYq{JE|@=@`I^j8F#ctt~<<~wsfCq`OI!t=TF zZ$Ztg!PC-?@+?I1b~F`elA;8Nq}Oz!#uELslPP;jGse&a2zx}n!<1%W(tyLH5nPap zDiNxuc|V1Xk}COfQ>MVp9;Ym7&Y_p>+GP7%lk z6sW>{LO#AW2~(p+$x!_$MimgkT8SPuy!bauYBa+XGF@3qBeqgD!5nWHnSnS;T|NMZ zINnb$0bRf<$VVF-H$ofSVaXU3!l@-}?uQ3J>9KGn0s>7TwxHm!3RN3?Os-;wfFC=Y zFdy|VgVAmGRcj@QKzuFx&l4GWr!7{>GTMhBQE)jFst}EeVQ;+xr0H2cm*Gz9!C;P) zWiJ=EoK`U_eh*afk8pBw1?*HL0KOI_3@@^bg?ve{zqk$zXGL`zYGs(hmGd z&jxng!7bf*T0nrH-HAfo@3JRzOC=BVY&n=mZi!Pr$9mSS#%s$2htD>XWW`qz`{QF}p;@@Ho?>}NnombTpc$68cd;7WwlNMaraJYk%h$(uK5w4=*@g{qFXnBPhCe=I~A_m!v#vsgt{s*BL`9w z@mC0a2OT9bCd5_akr5>%bEO*-*nSb52|BzQ2CQv=@elOAxAu~>^6jL1v=9b%)d!B` z>O2U~ZEPS!prF(k#}U+)uRkg2mfwA=GkEg#VzcdQt%Aape#Y2zjo>0FO7ia)6O&SI za?VYizkgUafpUoYJ`;E7qjtaoQ{2IB*;yB=VtZVQXTl zda-__`6ZX(4^sVF(M=E$P)3Rp$h7fskTTvRUiMr+bc6TKF!MHci}wV1d9*~_)Lhvd zDV6M0hv4!LVQpD|Qv{*m2UJa2o<98BM;GR~yQsa=0lwZnk=uBk9>*U?>5WT`V*!P5 z!R29`*xF;T`?Faob32pEgHwW&lApw-!J*-fFyK6eGy`%!k$FkoUft`>dQoLKO4X0e z1nzgWAD$JX{{ar?0Yk*7!#j*~64QiB@hCC2Lmu-ya)W=e@acyfjj8N^eVFs`zUBA+ zs4p390{JE2io$j>4MGy!R-37&7HPIS=Ig_XQ@~BO;+ex3;u6rK4%E1WlcM93$DDkq z+;`BF$xVq)j^R5+qnAUO>izYFKz2L2ljmB?IF@O;w*I&FrPo%9+DCLOXmU5RKwPI~ zRn70E?r>rZF-$ULfgufF%=f^T$>!?8jkI9k8@F3De(Mvsbrq1A!3L24_Mdv9)W#Ng8>Ff#KO@ z)iUX&(@SGHyb6;vweVJ7rC{Y5O0B85>iM^g2m*qsK=;O3#vbFJ2{>a&O`ThDgl%M9 zy0yR7Qz8yPjUTLEcL!Z2(yQlUD_Yr+v_PAw-z1d&j1d;l z59Mt_Vp_bODD(Nz-Z!aJfJ_PALBI_EZnkC?wQV&_23F#+9VJj!#04fwBuNK1I@UYh zyWV_5-dAMPESa|;jG5C-YqAnXc5xltB-EIN`4ZeD05Q6&E1@`!g#2A zk>7hV%R{1AkdXti8GV_D|}! zcE$&h8RAzJX!b~tUhyvJxt3F*Eu)#Tuzz&#VD>mnNmJT@ zN)2bKteF|z)o4?@-lVJ*CBqf<_IG*WI>iKbF80fWT#AxI8VnwW1DU}C7XKMGU3jEGSHx^m^EQdrk`&`ELjorBMo&Q*8e zx5>0}YmkOBxDisU=Y3@zE|YmM>ftb!x6?@1Rdau{=6bGdc_v!8E%efkq=+UR=%mJsWLi^xa&GnLDY)+Y4;8$`iub*L#C8H`zmkCk|r4fdicr*jVJuFi}#Flf) z_2r&`EgTqkoDs8xhSPe`#x4H3<$`cJ1B6GKW5uM1c{twloBcfCXCddIw))0$&z9$P zzKa4NUG=T<4JR4w{8OgT+YpxRz z5HQ|PNlz%5UUv;0eHo=-2;?|Hq#R*C=`y_%hxZ>I4=fz;?6u$@=lYl9 zWz;QreKX>m+b+=v0-0L`)5vf4PnQMSJhV`brd~W;?-?pDyf5bpCQCd4IFxAR-2BZe z6ZUi(mEO=OG%)+j_n%+zx7-P@anrAh79bvnj#(t&*q z1+Je--+W~g*6=^AcBIcZ)0lF&ZXX88e2lEakBWlKx&F$(ltqQ>l&X{r5zE^{rUT!9 zrP%a$R+FIj2i}=pNr{Voqy*>oAc*x!(4&AsD!?zs$hdI`!Ws$j;nd)Mm3WPC7zqhv zfCjZV5e#9Ebes+hwKf*q-s2~vb1_1Csep$MH+MW5_taazG~ea(GuO_*e;L2stF*HJ z#F^#4Q_aRAd~vh)gxhs_Gs}+>Y^tTx!$fyWr%x!zda5@v9JguCkbChZ_8eV>qKndG zC(6tWcA(TB;!g4FrEP&Dz;N-`Y3u70EWUX|xdWmWZI)F~qHIll6sDYW){T|`OGIfT z7J_y}AXWr@-Uwc(zW*c!P7I%_HX~)N2CfuHO2q`F0EGh>ub~S6&d<~@uK8Yiz$lDy z0Gr*kRodTH=pG|;eFHiyAOv)bLuK@*wY8l4Yef08LyZ5g{~w@LP=;7)blyxpsy@kO z%ZHl?;@ly?xWAcc8`IZ}{BE&WoR&OkEPqP+FzB#g&k3xqV zQo(fZgMu_#FFnB^&4ip|E0V^VS@RiMU?h-DHNx;t7_4;R57$pGg_aK=fr$GS_XQ*149U3c#(mdk~Z;WI;Y-e*U{#Yo_y1q){e})+&d-gCr(Y%ak@RMq2I$h?J$wIeJsvB4GS$pG>(@suo~C1T zWTgL(&S^P$#)gQ<;r#i>Z>*KpxfM3-+C2A^yq7D2lMlD-fqoQ8H#V;Q@J&sxu8gQAR_LL&+T zEOUpIQQju5Dqdrhj!IrFmTDH=!UST3*r2a*94qz!C{%-99IQ)8aJ=1(h9y-qhf>EF zq=JQjYr(^1(qknzoL3_S9j-AdWtXBf!Pih3l%vn%fJFu1YJ$fsk&u+9g4GemWKdmn z4x{4m#R6f`{DUM=;W;9Lpy*g2PE7BQ*q9@r$NcEuKYDSg;ehzzUU_I?9Dq$++&|I< zsFV?u!@0EcH^-_H6RFp!lE;^7Y+N%At)gS8Lzs^HKXL z&M9QKGn$48vBlXi#A0eOn3#nKva1ob@bDk2n&XdCQo`cG2-mPEWB|tOpO0A-DPB#l z)Atkyv5B{P^o!4*o|O3^`Rkf4&$MoUMg*X#hF`4fvm(-E=*dw~5Loidy7Qa|z{Q>A5WJ_0EsSWExV4}MCsUYSsDdQyOyqc%^)%=XUR~KxJ#P@)dLop(*Qxs6o!XA=Pxn)! zH#@Kmf=_9$T(#6Hd88#W(zH;o@4cn-#l!r4!$KZng=FC{vr=C!8I$axtt3b~&GM{b z6za1?JfytScK05M2p&Pd2~U8=c418* zSvm|tPzs1uc|8g_I{^BYGqNvHnM7+)M=1lG@tf_8g=*5p(ZJkd8B zTmZnLy9z8sm35O^g;mvIB##$Yc(I zR+g5)%W|qDcQ-YQwel6(>~wuYNb^vgyza1pIvnDgTlCz%`4`ns z{cEGBX`cn-&S_O8ZHOyOhjWJ}_C8e7ief)YDR1$<&Vq!oxc6eOsIFeKm&`HNSUukK z1Tm2Avyot2<$jqx<=G8;rE_^UuNxf;8t63)IhP{AFARg4{j8fT`usz!+a!sfzAre9 z!#`aUnst!FjEju=8-Wr+Wj_H^T|OKbF`#AHP3A(?yTR)8afqxHL)}Y8?gf}NePUrg zu?i))aQCP`vuPhHvV8XhbtlM(Xl&F+oN%dDJK&BYCl%7eqJqf}_SY>CJ!N&JZF5a1|i?3MxH{1DKT z5lVU5a71DvJ!GXNnJV5lmoW0MAFhsB-C!cH)coy?jmj>H1^mG7M?`J=VfWIsob&JA zS^S62X$UPVgDB{?%;eCPGRsuL@dAiCh|uelc~r#~Mmz$GJHz&@jt816G)UCf2YXIe zJZI_ab$xbsAt(HzVQGHEEDCw8n1Rg_ilCe0ESyeWE+&^9$W+)uKzs5F($$sU~#e~-dIPmx&?A$AI_Oo=Jz`3V%1KGdZf6s)Rs?<7|!b$ zIg=CIdnN_}{;(ce`q|vNw{o9xo2Te}-90|l60xyAcbQk%mZr>wS7D^gWp-IOK4_al zjib4R{s4+WK}JE^5O^rapl|PP(Rck?%Ym_>OrTRZ?HCsY327t7hs<(&aQUYI`%vrN z1j|#hrce57msAH%xOpT+tN zBG*j$z{Jtu^WANJrJA#hqXT8(kSrR#tUhMfYP6l$KOY}TQiVLt^``)PC2zC#V0VQ`Y}I+Wvo`L*6gh5x$SL^$1eX~jz`;nQvT~5TG|@hIHOES*YOA= zxttWAMc?Cnp9jAlyqVtb^LNF+2*=xRy#Ahex)Y34K`T93+}L_WW4}`R?^?t*E66r=egv zi;I&&SthK9HW(vroAVY4f804boP(J%8U$4YQAeslT4Hxf10)!_4{|s8PumC~$-d!_ z4rny5K5JhRn+jnccE|5hiU%ZIdZ!`49?HBJL;Yf8+g~iUH#4C*_3$)NY#rOZYVed} z87(17XzlI>+TqfwP`EuNi;V;6{uFGswSLJdvJN@zy?W@3cfRV+~`^s z*%COlIn4FC zjlk{f^~1n@?X$KoYo+cp9Slfn#Ftj3+XFAWDq0vk;EbaDYkMBDOP|5LlzWkRpjm*XePGC zVzj~prw-qUkiGt(y#?oHKN^O#I}W%?IO5oGUl-}T7;TpIihl(V*ua9+Fhfkr=*z)A zaWckA%Jmig3P@*xa%3aAKCq#CdICm>Sa3bqQbM58BT6l!$*4h(FLZb3`8@Zu%F8*N zaPSCt*mhYd){tU+wSH!tMgg&J*VDj1n)=$mD?*0x{R`%^55sglwnKDG_g+IdJGL22 zfHC?)T{dQPBk{uz&qSP7b6H|?z-o7d`}#U9KL461STO7FaC$H*J0Zm$2Ut`7@h+-) z>WKuq^@ToskM6*??9||Zj48%p!9^h2HF^Jwp4)4aVaVcoI&ol(X!&FAw*%g@jp2eh zI=k9s52F}N(-~L7&-(6{f-YjEVJ>HDK=%^KA+|JTZ#Ty_G@$!lIn7a;66p65#lbG; z;rdo%K*PyQFZ`~{(jq~KW_%(aa`~=`1T6rb;41wKX6>lDOYTQY$tj>n8&Bw1HQCEQ zgMUZ=vn~I@f2O6aEwZht?Z4FA)@JkHwf~GxYa8#oxpJ?K(t535ApldtmgV##uG|O) zQ5+G488n?;NG{($I-}21B~2y*BTCtf7Fv`o4?hR$t;lf5k%Lq?8eCv>!HC9w#pISv zw_`9DNUx@EM!vQ-Z|!e3&zRRDvjJfSEGT}5makBXYl=6t2rvf_8x{>btRT8)R2KSz zXo+-?TVVgXn+KQ#7ez1z0p4!j?&{u0o1h2=aAvi;JWZ0l9~2je+y~IKd9!)-g7oqN zK*Jk;OKW|v1XpX%hIv*LFRedS-bgz%e~7IhZo-8dA&?c%8$Ukr5|$W=8^{#6L4fd- zSV2%Zxp2(K9jqY9?@)SU7^T}PVZ#f-mZrC?KS%&tBh;le1C>1`VExAK5) zNxbK-2Q<}B6z4PkKevG>CSm&eRbSrD(+EkErS>Qzbuf7isCEt?ei0M9k&s$y-8cIa zmb?f`^1{8=fHx~wi!t9-E+^AGN=N{AOja2KUoVQ5G?*c{Hldh~sPkHTluTiY9?Kpq zrRE=+jt^(SmZ)eI z5=zBWhcI=q_1$}-YmK^r&ncel5li3aB)>Y&I`j_vqX5cE3*NcFio{Lv@KG4cps*3t z8eoT{pdjJg>uH2AO6stPe(rbnKZ1~e%t%#S?YE?SYL2&;0X9WhUZxa(S`cVUI~CtzsgV0ij&ydz5o zqf-3se*1yndhxWjmmxi6XhjFMC!i#?Xu&O`SSx=LJ-sh@SU*b$D8%!2A1ua(2uh9N z-?6f)MTjK33B2=0vIWL;ScbT~-CTv}l6hp!MK|UDeTwEc6yW&2N;#s4w-iLU=OG&SXL0LZ^T5H}7{+$2sLBo3Bg zKm?4yi^);;!ojlR!N4G*RLIq+8V!nT$`uUY%Sj_L4$@Piz(*p$n5js?n90C)>ky(r z!)ovd(NtKHRRbdBHN&u?%(SRs!b;`pP$=n(aKY@qgd{~lfn3!sGsj}^u!rfFOxZ0&X;#%TS(6R^=xgacY>UeBQ21;rf86YZ{SrZ_G zBBovQ-iY|GatP8?K;|&m2ysG2U=(3kIYI;w8a6;VOkW!jr>PxQRx3rVgGG%SNi8?> zPEQdPWCkM^1urHQhZ|&u_x@EwpvGs8#M6LK%TU2G0P|o0U3?4J^njwCI(gg#KmcWs z4!8oBu*RrY%Gi5&od`ya84=W4);qX3`xG7gS0(c!3se1lN#_j<6_PrD8+3#1I5Z7EBtJF& z7|&y^h2r*)c2j15dAU^pK#}tSjO0AUGXUC!yjE$v+OvEzTgLJ#d+Q@18#t`6GOtfC zTcU}NhQFV?=3lywURMoo2ShXd#$K3oM8nnLx&207)zNcD-;nNeGkx__qD3Li{kvP+QB< z@=9@E9hwvhdgWc5`OScT*>)esoO|^)zys*&c_SR>1`xd-(-88$Dstg>J(NL2pYBl8 z#JcX@W?^1aaQ*$Vgu-}JY^5p7ZbsrNMdx5~Ekb6H%slD)at0?5J1^mSdsBQkj`Wr( zC@w!dpmm+RQbTs$EHmOL9^MZ3P6S!?S~Xj*-dc*9a>dWclrW7e;;p2UYn=%OVW!w| zRQA@d7+d$U!nV$Lc-%Q;(m-#fa`irSUu?4p&sxB6OR08MI43xM`3zLKaV{7H=3*Oujz;N`ZBCYf_Z-)%+Q3z zIJV3UK^6n|I2&PSayXlq5^mcM&D7!{7%bMANk2f**5C<@rYT=OGl%;A7+kT<<|3R= z;pHAbumvVPna&uCtP+|K=N{fS+|t-cui?@BBgzZCH25yKP{((n_m8c8sp~`UnIilp zgIFBVq9%;P`VY7?>k;nqT1R?x%`^_QWd`4xUa;LC@$~N%P7EHK_w6&hBsR7UDKn9l zhm&NEEcd^NBc_i?;B}<=`QR`^6%**9O<+S&+V(<6#1PLr6m$<-oz!!zoPMV92B8Ly zU=j49R5^3=%^5p>BTU&g(;O8Gx?oFHRV=VDP-ANx;vaBSR2O3Tn;bH}T$8{FJ;|=B zygU@g46AF=Oki|<{y-u-J)oU%H+bRA*m&S@em@(kXJvq_Rvz^iabhcEx!tXjl<;qh zk=->xh4cRbk3ew0fdPi_&N^kD%HmWQNHF24cclzPDN#gG&8{m9Bol=M?NxDQkyjCs z8P81gp9Qg2^gJ$SOU8JeZw}Sny_30x;Ueb5(Y74Y_iDL{FF5k z(>Y8R75^w1Kz>Rfax?kQPJG0qp;!bj=6OC)?ZHuuh^dC8V8aKltZoA;`yR z2!TjJ`udo35&3T%rBz6^CcUP;So{~=p3FQ6E}iW>SCGUh3~+q6C$9MU{pu9cXuEOk zBv3&k;65S=dm5L{P!cUv5>SvF!FNh$CVlX=A$s;Tg>AEi;ygXO3jFHDU9P}On(BMD zq&1Kylg`FYSbxo}qBULZsH~)Q^r!z{GWK<=T!E+moy;&{!NCldv$0+nJIJ|g^@Cp2 z;|XtpDSZLKOvD$#hQw}w`W;v>EQPc`+JD5?TT9Jla5zEwJI#|6Dv;c*vA4UHdTpesB1G1fo&*9m#V>k^+a5Lp0$gm+! z7fHV57=Btn*;h+?$3;#)3JJxYk*=5zlde?}Nr6-UD$Yy*L2e+(15b!SA7A*TfN6pR zD)S9>-lMNMOHjwxU>dfE~ z=zZnH`w!896k`>MsHrj_stb7bmkD3ECbC8dGnCi3>mN?8pfHA+%`L%XP=bo98+;gi zU&ChgZ&f-Z0+;5VN@y&(jDl;lqT;#N%sv`jN{3%-2+PnMz&Ydjigx zA;$&&%-`LfA=9fvp*On}mdDTRL!RA4<45s`p>pDVo9Ero4^M|+7|7$j35P9Ru#Meo z6M2~J^x>p#N1WIx@oc0ufTq){6K-{;BCOs}i=<1i#4JTx-pN9raUXyq9~d0#^nAVb zk7-0;NFfoNeUzopF3<)-h=tnl4bRO>^X8pn2(D&q;wrkR;#HOAqQ)SMGwA=#6<0wgxbo(3Po zG{R=G8O}o@0x(62ofwGw?J1)&g7Ejv1WFue`MtitrXGQaDvb6e?+*r@Ej2$~fm1wu zY0%pJoF1;?#7}?M?!vv@Cw!-`Gd0a1#gb2sv!k4B`J39 z;%y32X%4)~iG&Ldo6=+Rk{PX2iwDlk_8X*~HBpKLtb&Mwq7i^Wk&z$^AfXz6k-12D zyUUP4BoN%yAap(7AA%cr&V5Slkn1m~U^xxInndurl9I`XU2 z`F+;{fhjJ-Y&P%!#RC92Y1Pkl5aSIxG^<@LurZSpD%$0qyb73PrtqP#=P?7&mR3ZZ z(`%<4Cb)F#jh6=qUR}CiKtvSbmqj6oGdw`fUNu95t=lxtLn`&o7DM{+$=cL0P(A!v z=i$cvT|6@L*n#6A*t63vJaN=mm2E(8jzd}7XI7Tkp{0XHnPUn7yHOKASIaeZgG{Pn zxn|BWD~Z8UIL+u;gS6}ji3C9$B9dxbnVAY}O?9COK?2}~ktsM)B1=HQ2}Wj+bb4>M z92tpcBDOP3EJcbq(F73a^S5c8Zl_a|6K;aJhfOdbouD7sa&z^Zs$=d4T@qQdudipn zV4FN4+vGqFzYhl@I4Ms&f7}P~B=w#Nf}ok1i6X^T4W-QgA$4b9Sp&AtzxYX& zgdik|0SV!(F^eL|=am1U>3Q9D@seF|%@YD5Bv15wIB=C__7xE;V_c_)hsbQw2W}<~ zB*qUpg-OxP(rF}ez^*qf-ezT;(|VvAB#ICsz-BU185jtT0Yc1a2Xs&8wFrJTek>~k zj=92P0LMo(=F-~iq{*7d9b8Oc?!uzT3}Fr7qc*L|Y(Z;6n`HOll*8LGiQH8VfVyS8 zhUgd4=EON$CPXB|Y!r(C$Yht-DhW&js!6p;CLwe8>%7amXJ2g<! zE#988YiF;hbtH|)a1xus>PWXLLLaq zKUi4lX@{+bAT_MF>f>W{yjukX1TUpz2MaE;QX+FAaZ3xUiMtE+>sV-(pE>&_Ha$A= zk6ACKs9g-?EfF3U(9}9owMriaRf^rZ^|Zq3I!|hW5G9jeTrMnP5>6!csV(0>#HrcW)Vl-Oi46o7C8l=he{pb;RU`kVIG+ z)`ehX6O!JnK871+m=-5BzL*-zs$(mRAZIds_y)sQs(2*CAh3~Q$rJ-z!r+{yvd%KY zP14c?Sv1PRaCjJBH={Ah%x%Lk9BndFBQ}uKUKG{Nz*rx#!~nyo7^@ zT`zi2?+~*E{%WiT_2U<})%AQGn;b3sDDNTILOV!Tb<@p?-kU`C#JGs;x7K>&dLz&f0AN68Vm?wmUV&B#+iLc+dRLgrZ=WJt3DsWSng0YaiwO>s?wbfRpDl9hi;unnP# zm{MOecTi?a)fAi}njSeBc-P1XW|>EOqj#boN3glc`=sDEo#8g0-T(giAMAfO^gk#2 z>GYdbTulWDBXQ|~!|BLLj$>88W&0#O`3<*BLU9tbV`>j&w77yOU zeh!VAld65{uYQ;BLc|}Iij9dxSqT`yhyGoKBJqE}|Hc25W-Ge?ri3O%Iww~We{{XJ z9kyvvdUh$0esOIXs;^$TsTZFIgvRUsa}40W%5g)xIse+{CN9q&_h0;t6gt|Bc&v+2 zGKDRr5I$WB%g9|QL6aNGL#FzID>f%TlKerMCBpW|p%C{NH zwZwet&bG@a`!%QcuSV}PfOaK!nb)tGf=M;oNv>*QDEl|=TmF*4dw0)hfJPUYJ@vf4iFoO=PfE5IDfTu!Uc0vK( zndg2FA;b4^P}#rVH4mTLBq$XBR@8}XZmm#gj9?U|?Ofel5C4rYc{A5~|9;2$4CIVf zgTWa92@Sgg`L58AA04o89}`~!1)uxFw~u;>ia1W{R1AS*uTO_j*0SdGMDkZ7Cixh08s=76*#x2s7GO$4HT+~ zu>B}t$%@BxD1?#>0@gF@yR-fbw7E~pR?v-3-mc+|-X01aNRkfK+Cb-X&|paj84Ky` zm(qi98W}UF^SlR492!KSK0n+YCj?2A1k!4$3;6o1imk#4q zlDAj%W_{Y5s~JD@>Z5hf&7DxS*7_Pf)S)@~)r(aI>0y$6&=`U23Pn%k&?8xYEItz$ z>4ijL;C*$%M3La2*z*t|i*jJ6*h6o>wZ+CVY}>BEE*O-1&&)x5YuGW@=XvQlf%kN? zuc~lgOH^Af7~_LP-UA=s_{)3BVx?BcF^EUWs5*rYmG`sOb#Fly%7t297(lgZ%P)vr ziS!7-N`cwPf;@&}F4AaA#+53}R&^4(?eaNFP|S(#338L^P7jxuwAYh#swFWp)_=+VGNuC;O7Lb#m+-)PG6U%kS=ws)i9j@szeZ%c2 zz^h0|F(Bp_FV1m)9|uYKllA3-Gu(6wkf{0(a8P7N)^qu)-9;uam@*|F@Iha;TLO^) zpD%fzQZK`#MHA^o4_|xoFYY9R6C);SbbQ@oZLg;o3imUYfhgvXK-}NDlX}{gs6@#` zZvz##%4<>>M_S;7V|5!h&Q35^ec&bxIjiX!Y;QY|VJj4r$xYHF5vYCrjvaW3pl8U9 z)ZdWK45Mghl7Po#@jQOi3hd<1S=jR1I-Co5!ejf{z?kg)=jQ{`u!&I*c+AbLT3u5h z!j_Q4I^PFZ?lIGSv#?CEi9yR)KxRYKuAglL13I`Hbuy51SRncfsEY*CQEvx6r%d#F zvoNAUi_q!AbgWtLaAlLQP(9R%C4G)rJy%d=6NMj8X>9bA9OK6B{|<~xGoh9EoqVRU zRaMBG=B?K|lZ1*xV~+evO+L+hKOFbZn?Gc@W);hBWOCvRK9n)Q%TeAEpZ$ND=OCO@ z^DHrg2&0!a?IOJ7|1ireW-kU;=(U0kj2F-yFJs5+1C z21Fy$bepP?bar%59AXkbFTH;kVwL1Qy7X+<-cx8>j)*h`&j_vq>=L`Zn$_K3oCIye?(2asfC%FMh z2i^G>+oV9_-aa;n10;e8A~+tQZW$eBCx6G`q=$PX5w(F7di(O+34LS8d{@;u7@F~` z*Uzy2rwUZ3k*?ws(oxA_RGZ(rLnsz z;XvtHvgmD7gHZE8VSv+R`^bF)nviH*Zh+HD!QD$Z0PaR(0&FkX^C<^`?a0p}8AAlf zAAlYM^5_S!bU+^}pIGS^YB<88w?)?j+>g9>?Aj^J%NE+`ALHOVyEYXLM|FYqz-=m2 zGO#KE=%1Yq$Dyo)*^i-3GCX!xf=JOUh%`0OZ3rqx^b;SfhQ@lXuw{=OI0YaOL4X`Q zF&GK`UQe~_s9ySCYXd%fG9)TN#DW<`9>*{XOqHgSn#fnYg8<9bXdo`tOk5~{6g1VB zo2`wYLu0}f%?#sXN&%?7E|xW&d}&NTl*Xz048BdY!;Z_G7G){UTE&+pwHDZ9!|W6Z zieM1Ns5b{g&Iq0oI#q=Yznk!;g&2=ugYO;w-X_oRpnlls>OU_>LO-#Yg{dcjx*W6Q zLuvZmj9JP~GVzvv7x(-u!-A7}&IpHA0o@l8$P9CVD1rx(9Z#(Nw-fm`nMiai_OVZ4 z=m1B6T8sf#K8m^YJ;7YL0uRF81N zs;95-38bCYa49sNH2 zi=5e?S37$mNJDlSm~JL1&ZyuJ2%*CsiB%8caXk)C9$_K;cFl^=>h+<|fw{$nu_hEs z09<%i1Q9AfOmn^Ae)eGh+A{l%uO4CO>n1rZ2LL@)_bWQQM|=+7_}DQA&~AC zSOJN>(1}{uI9MimDcs*|K@K#^Y_$d9XOF{N#1#GWULKOKsKg&k`i4v&)_uQ0_ma)6 zFWYLSQrk?d}79iEA%qR>F-9&@VNT*f)K%0yAUAIqH2HM!JKT8Tj)bDsfrS z+8J>Ha#z2^PdC8f9YX^}e2sJMmRQPdX#zVB zo7?ya^RL8E=Y6*`F^_LYFnDdV_>&p&YKr;BT8kl0MmBv0fH=kAy%T$jSyP(!AJgo2 z%-DZl=fF>x4FQR$-gGe4=B>NzZ(Q{G(_Lb!XP|u4Ug(!;CE|e*STnRBpu`(DEBu$m z_wm=jh)(=6&uNe}1$}eqL@#9v!mmAhmPjOxxY>kUqJDC7+nS}2YUmn0sFsfN;pKmlqtz89y~3|U_UkS zEOK8Eudu%YS`=i6 z3@prws~*=9ndwC(w$bm~yGi)vv*7=F_#98K=9$@+XT<)KlZhohkA2@Wm+aF&1e4e@ z>o-BcH~DO%lvnS4nX!~l<@F_OO8Ydo2_J9H(!6^c@M|e}e?0@JG3y_s(kvG+E%icH zk81jaYf_(xLGci9-A)Co;QEJutA*;7Kz!AWI@#V9?{jwp*;1og!{ea zY|`b1$@EjTrM{LaJ9K^yHgpr@MCy?XIeI&3ojy|C?)G-jLg{Chgw_^N-)G9Ii&l-p zO*DK0M@Ebn--Cyy5e?#{V-~CO7ntrf;ssCua_qAdDIs8)|;T0G3kL-WT{%`%y^MA|#Df_4V z=LhVe`$Y=BmLdV3NB&8q{_d@tKl0l@?_Wo&6_IL08O2pd*s*&~U)h{ahC+|sPprKL zcKv>WlD<8~n=4FHJ`~&p+KUeu;|G)b8iEKaJ zFelghI^_MQ0jPdrkrU~uzp`Wa=lqY>{u}xx;V1Kd9G|v7Ojf|b``^k1ynh>N2mb5G zXCokbf+PYI`p5o*6cv(XHI>}?ePAR;;tIi7Dn}C$QUCTM#F91nk}2cV|eby3(ajN``3qE(YxN;-+R7ZdhfT{%jch4?dkWou5Wv`)9<&Yt7o$6R^4)q%~#ix zzUs=FC=K5CfCJ9<;Xdx;&qZFqyd1oB$ImbZuS_I|onAY<yL0!>nk&zP;a9 z$Gz`e?|Zr3-uCyoDtCRkS{vJ2v%SDB#sGWQvu%CTcduJ^-uF(v?e^Vx>9=_XhydSs ztL^V?RDi0!>CWz82fgWD^EIHWSxwt3yE}kB-j7eVKGn5KTWwl5v4A)?+e@_tRU2lg zi~*XeN~jxJj2GD84iBwRo7`%4J#uO6cmseFUhbW3&XeowuWb5k;0MRG^TR|+0HXN& z*Z>0B+i0s*ZIoKQ>ZnoRno&XA7jlv>fC1nSL!CF?FbFo>)i>MISGe$1fXRpr1UAr> zqQl-a@@mVsovj;V-Gc1yF!#5mb>tqMd(!{~LJuuBY`Gr0fuzK}d!63o?M-`_oZ;7}+40baqgd2YxbTYUH+d8db1`X1i=NW|JEl?M-#N z)(+dw%Z_fUyOqwHOA4mG?|Iv=3}F?ey-5nho%VD+5-L&^C-F?3G;n7I~N4|JI&DJi)?4Wuz z_YYrr^?j#%?CzZC004QM>z>a~XI)i}b@#biH+x?ncf{*j(%&z8(D!}Z_j6i(?^^mj z2X-Z3YpLGF6(B3v`OHtPJyxu|SXE3N!#io)G-LyLPu`;?c^`cJ=l5zW05- zzIv{PQRi=uviG~|SGPX*-)95XA30{y)ysD0&wI`8=MV*J1>&=HuAY|9dTLj*-HP?P z8bqhP#`Ev7^O$qS_g_3X8Y`D4V6G;1YqxaJcI%rvu805)l;{@`AqPn!w$`|ktSz1|I{P%5!&#U0lxyWU5>?dqALy({k8r;F>?%`p1!ecwmEN51cI z-f}$YZg?s_o$%d#?^oYuo`!%CF(Cj@u)qU^);^a{xp#GT>|1T+?|t?6J`&wo?XAwC z>k4z6svl*#^Xc!N?qU~w-m|=8oI{nvGq+lCwPUwAo3m>}fMgv=0MghF?5gYES=4Tk zDl1!U5w;2nPrjYp?{AARY|O*4%NWu3bBgnwYAI9+9s&RdE4|&(_g`2muRYygZ&#b% z@t3ScUp9S`S+p9UAOJ`dkqQUB&9)klQ<1Ih>x;c>+;^U*oegx!wtAzj0Ce5DH?Vp= zvqdg@hJE(?@3mFIXLNU_2hX2M|$bi#L zsL`VnMxLO_>Hq)%>I|A_0004?X`m2<1QS4*fCSS(5CSr({!u68Hk8{*sp3ber>UdL zX!SG!pa33_0B9Nj8UO$Q00x*uBq0Er386fRrbN>;Ow}F=ZA}>&8UrSP0000Q00000 z00000000DUz3$%IiVYU1FYj zbe=uK?UyM-f<+al0FRD_wwMF*zzcAR^$_&uWI;fY5ENAi0)ZhRJXlE+=}+ajV1Kjn z%A!4p=2tBUWJI-N^*#$m*?w49FmZwWQVK$VoTG<9jqk($RCxYK@^Ao16gAHzfldV& zTPz|ZL{U^)s7k?6g}Qdt^15-g1@v9fO#6Q>%?Sv`Owrj{Y`gr1Z+pt;P`YQLuysPX z!sfH33I!h*pF0hVoJW-ZWrnpcve4&(|B*Xp&FHUgmP}Pj2_fCvG=r-o>hr6^Ha#3^ z5p>ErjTM2Vj0w*AWSmYlO+#!JCc!}CbOzhSDhnDyu+f<`!YmYpw5nekV+fmIZGnQO zw_?sv-07?}b=K)kXrc=YN)@RsZwMI`r31FzM&6REAu-KCgc44OL{=20an$hb*7Kl? z0&u|7A%rJHDn)>Ts2IXPD*<43Lu`^m#i$*_8m2@A0wMiMG`Uifg+m#S8=MFF34y!A=t{uDWDGM<}(kxNJsiK-R9>i+Xi*hK0aUhv#c%qVk7TI2YY{?@VN)%O#*cz? z<9PbH74LgGc)bD3IgK#wTAGa%XwgA=b0{?^ED*FSDgu?QVbv=!mMmhZvRh)JtFp=$ z+sX6ucL4CK@=isL9J-~*9xmFXf>A{vPr>_K1d(`HP%nR#=Zq|5i3ibS8TaVO)ysdn zR&uinpn&qCHp>dBaeGgGDUXJC@SC#~7J-S<)kZp|Yc6^1G$?pb2UQUy5Klz{1VAA# zB|Yx>jQyIc^nPD^6NVsBkx@8hSdb1e7F; zg<%JEP-S>cq&Flwo(RudQifrULKO&h2{Nc+Q~{Er4^$d$6_7!vbP}SFiZV$QbxJWq zks^^rl`1Gj-dJaW&|BdY}F__9Hy4xUH ziVC7JgAq8iHr@*~m@riViXg;@F%m(DHgz_a%3>ho9i}zfv!kTkngvFt0`S#}tXL>4 zRU}(vDvF~7QHY@yGTPfLj7w#T<5Y^t31TP~Fjzs1Bui+;RAh*XC`JrsG(jK;t~N3# zpfWK8%U%uy0Io4aD0xO7Fyp!A?!t5)%71f zY5u>bc_f?waDfgdiXP^r?_t}@?VmsaMpcB;7!FYpz64?CR)DbuiYy|+Xh1=LRDhuj zNK{dbvO!rea1A1vI^|v z4$^h8%{34wIYN)ve$Icw_XPg=@4Q~WE+^p;5djfTYbb)KDuRk57TTboqN>4)D8c2i zMeVP%zveswEP+`(Kn|!Gxk70u`Z>cUMh8ORk{E;{Wz(IE_lEvbozU68aBw((>=rM) z1kVqL^tKtF($$H9HFcfY;ALhG6-muwGnh2x+ey$+k09fhfm8tld4Ql23P^>(>q>hh zLGpwVi3Ky~j|*??l5y-DcV!+@K#YMPr}X&U1mcqRJ5UinXM}VpIKV{D@1##C!OPnp z<_F#-a7^)8wZ$jdJHNbl-QIYR1VcxLUTNU9ENQS8sECKYrJhzgP2rWG^11M zp05U6J9wa4_mI zwY@xZ=`ZDm&7h@tZ>k_dMjA^L6i{so0t_|(v6uf4XFlkBfZ6&We4sA=j+_UN8y;Or zuUX>SL<3=Xs8v_iS1>=f&s-bN4|>-&7NabJlhkDK(~}i>;166$9%wnhdH7O~Y6zM@ zNdd$e3WDVppaE!gMFYMd6$I5aN1#`rRtnHO%lZsH1MNLNz7B@xxgsbb1r=g~s6kXS z$JU=WcuBHJ>+9iKeBN}^zW0IfB1nNM6oMiZi_-tq$aD0vlEw%9eRm$;KOy0|bV?L} zpcr)>jYV#ph^!r!gb|7Ky@raDac0A*M3QlSJQ`$a@86p^bFgnn@MpX3?qJ`9EgZ&L z$BWiilok&=8SyYegQ7370fP-PkhNd?5Y>UXWq)lK(>uH5EOX_*JZF~5xt@Liay?); zA)C7*kmN9;krU8ie&F<)83m5haO5B74hI8v1{(GsX0d(nGT{>z4fX?psaTc3!O1QL z0J%gV4QOi+*Y8b#S$j#PxKWt-4~VXc9hrzT3g}|HaYJ{5O*gS&Yq4 z{kjyMiAR6Fn1dol5;I|wv&)`d#H(*llgDok%+pm0**)02HGV1AH?0NBlmCA0(2A!g zhq(Ad6#!T%4(KT~5O&CESwHU34bNY4D#4&4stq9k1I?D)Pm~QH!UTZG=`;^a`L;3z zDrHl5Ev$C1blyS}E)AZ}xCI<`Y_(Gh!{4S_`DnUC_xW;cA`i47=Tpd2<0g=G4W8Wv zM6&B@5cU2V6bu2&GLJyd)$F({4(Zw!#4RJxpFn{VK!Q{EkuXSgV@N0N=2MWMs)K?}P*opXP93`Lf-N>c!bA$Mqr3!o8Tkce~cqQVeZ z8IeYmT%iiTy)a3Lj8GL-QB_qMl~}69RTW~aQAI{7sG=fR!Ua@G2w1|;-!f##FiC<@ zI*JV`vL4ZIH`!EnbK$BWzDG&;! zClnu~36MmvP+ej{xtW>e_nkAltI4eSc9?Zb=2ZFZ{!L%UyTcuLcGsWNvs!@j^W;Qx zQMs7`{O^^r^I!@i9uMIxE;t@&6V))yYcb#W?|OsL<>r2V9%@Pa z?fnn=zdmHjl=Po%04ZPt#mlGr;edb&xDrql4FMp3)@6_h#U`M|ueZP7^XfYY&hqUO zt*%NW5)cGnI1ArUR{Y9R1DJBr`DZ}f+myQyu1x$BM^u^WAs@2#b9V|*XR0B{tCTi4+9qke~A4a{(^imf%}>0hT+eb zrl)QeoHF5;!st-uRjDY&1?8iq6+DN>{XgF9f7Bn={=k2W`(JIp{d+xR?N5)E5Vx2< zkDGLNPmP)y&ZpPx0pwIZw8$(G zq34#^VG$TAE@hOtHw_cD$a_X!w_Yva5l45hb%$DDd^+*R4d@g03L!hcy7oF8{JM4h zqMgI{eN1OA3Ea?gg^%zS;g^Je2+IZxvU?p~K{>bcU?B)XpcH@Tp}cK5s+<2N-%r=@ z>h2u82o==}Buj!~E2t>+_ z!J#tBgUjbMvU^F4>-SM|Z$ka@~O-a*)k}QXgFlj>kbYYxXbpuC-A^%E8zO|9zlYLOn=NbukEk=E*$7M^0yllAwYQr=a>8K5wH880%jjMRr6*ZQ?ho@ z|5UIA5P>8pRiYcNm$UOU?0<*c6gpsq_^TWn1IsHikO$@HIq}5sJ9?v*Ww|yV*1<^P z2&AZiqc8wp`Cm8(=x&a(dW9c2ZMf7oHDWsTubW!FqS_YK7m{ z?2m>V%6?9xtc@?(C5Y$@%WFc_;ul*cG)(a zs^{@n8KakQ?A))jdHDFTc-Sb^WLJ(IQuDl@UfsR?w|mKVQHmHql^^qv^e}@U7OAJ^ zK!DN9$&(%3!5VlWW7GC_q<~N|Kt5j|t_9~|;eRB#QLkA-ebzqVlOGE;{duAIN)B~h z{+5CKhCRN)t7Y6<%&8Q=m!!c35FN0}XpI5uOws+y)k)M{^=w1LG}v{fIov+ytf6ZN z4A?XPPovT4LCE44Yu)t=tM3NCd0Gj004b{wyf|#$g|IU(sgctFfnZK!`UE(B0POys z@o&jogAINzM|u2Nb;*ZKUEVr2^Yi?(?~}72V32@}Kn@0N0B7mzS5N~W z1LrxPj!-clm?0qoL$avd;-Ngz^TTJrjmQiJ-H+dup*SgPr>|ULm;gdi3s#XFV>F0@ z&>Rd%!>FAM=y`4%KNq3;@=0gF>H&+{sa5wrhc$h`q4ZZf-t|0}FDA_V8s zAj*o6HVNU7iHxTk?r&Y!ZMTLG%lLi|$2)KJ&GPaihDt$b6Qa8=&@+!2_P0G?*EqJF z6k1HKXo>e@v!@R&wA1cdIK!%5bI#L(Z3b)-b=oLPR>wjCBbUzYVf#ti>7-R3m!yq= zkcokf`>!4KwdIoq?ZfXr6jx_~4~l6(=n_o6@EA-+da-_Am2IqN0C6k!g%j@Tt~Pe` z{fp%T0TI4s@Xw6DE_R%;+ozSuJ)jU(5{f*N0kCwr$(7}~zPI7KnOxlc{))>iTh>mE(c`fCqQ;W!*foiIR{ z5fJR|Wu6`LA`{=)<;>rx0RW%`UlKNV8;1yhST4WAUEl{ob-}Ejxc5vv-p7-l70cQb z0f`hMl!OmKVhq8P!~ha>ypO*S)gOLiGG!%zN5{~H@-du!_O5n8kP-78;cXr=CGR8> z047}i3`b)cnTMK5KojI(+D)1PQ*#nK44_T}e04j#6!qA!K>;2@MS%P;R7CU3a9^gl zp9*u>n4_}CP8)n>E4ex@jiz#mx^mVS3pI%D=eB4}G)=AO!(H0GwKy*?1k~g8=*+0(?wvYF4RaO5mblZ-imP`!<*kIr_WmIXBwWenc*^ z)?Gi(4-upBKJti}Fo=+ITm?i5A}#FC!Q}C=i5FH9x4hhRHX9WQib(sB^RQ9U70EqF z4mm1R@ZLbD!}P;B64OpR-AT~y;%&LvFxB&0Y;>B*=Ykd?zr;L2nv<`!JXcz=L@6O_ zwxN96zc{ePm@guX-u6sq<=xz*VwuPy*(^$7Kv9%o14EWTyj9I8g5hlPiCQ6X5ET_5 ziU1~MlQdg=dphZ5h2kUXE4U_SIl)M@XQIE(APy#Pe$7mR?!M8pu!LS3+PhX?B7-@8 zN4y~QdXQQm2pVlxFLMEgi;-ZFlBod2EX^S^^U+EWuq%Wvg6G?7ky+O-4EbB0T{P9? z{Knax_~h<)B%fPDzHg)dwd}nN7WrxnAYc;!qSl3nRB3(d+sUxgJIby zJT%PB=Jqcde!hO1*0bB!hv~Bh1qOiX0vjG#Fg=J;dbtaX23=BSHDwatODJm+5DfHY zR-)lkZU`6Ka06a4aW%1St8def(kg0s{qkMz0*WU|1^hcH;DSUK00>b8pgds$gUEXA z_Ra$#2oRD&Mi6BCNAmouIq$-KHOJ?M*CQ^F+`*y|tx@es|C;0cbtM z8xc#6r3wN1xArq<2l5>abP4o=!GfMA)_TUcVrTR}sq=w_^9&*;Nrh38!66Ko0T3oY zED4iEOK8hfgKc3%O+~U|R#e9sP_|PIHVhCLMhd`1WQZA#e^_yXeoamPX7Ex){#bsx zl}Oqo0EimGpt~iK1cp=i{~tfo@%|6~FYAB1{h#yy&-s6!{keG#V@<%!zs&xR>c=n4 zKo+Uz`9DYIQ%r1o{fJ-Uijm%-+JHZdhnMQKz;S}{f;GsPV!P`x&_WR9*ZVXz=$QaGxjKolMt9)jS>zB z3EoxHdI8k}CQMS|!A%Zfsp1&6&2ZPRS-*~_ON8*M5Z9~l?D68Aq~$ktQ^s!B&^n%d zaCxKP5i7IgBiQH7#WH`co-Z}w>g&G=q3|k=z`k+X0RH`k_kDO@OAFjDDI5cye3s35 zZOEYK9-Zmx=m0hwh8+OgNRq&RYO`cz&nVFTT2F~hYu3CDs>eA1a{mr7ls_PJJqOgW zaBJyp5P0qEvBmQ9y??JEgUM1J2qxq7T@n{9J}xyHq~LTTU@_lz60y;0zLj#ie zM(7&|RD>UH)XO{At&sOv2ExDHif+Wig?p!l6cPgn0OXz*fHksqMi>YThypATXHGyS z&*zdEr8gpUkOc?m`Bx-v9RG~~o!y#90VGF6m9K^BU_J)yrG?>HSkKsK7!gP!j1V)1 zcoR=|8d{+#*n&&uU_>9H$Z!kkLgPULAYpN!fJq%@3OJAgo@V4rnsz^x0m)Xrl*t1}D3ch;=;)}N z{36fR*>rlplc;3xoeGi&MqV}_J%P4uKhLGr$SC=%#MUS%OAs}B&D5DP@sK; zAd(tSu0YS>5I<)4a32bvt8B*-JW66VDqF7~T*k;Wq*I3V2m{(AIQ)1E>*O)?N6_!y zv=e$kzj$EkI>^Ceve#XwW{{Pj?u4UX7KV@EQ}uMG0hKS`{~R>(9BW8!l7d7aDacU! zjYg&0>HXNLR+{eY2vt?c4_J&Tr;Ry># zoPO`(djU~rVDD3(1j1C1L1)s)nu*@nUrIA;H<(HmU^S6IqjXM&Z~+*x?MX(7pV`Ht z03ZM)K^$Oxjbxjk0T>G8aQv!{jDdy>h=@?hrXa%<;DA+Mtpe%)Ss27bFcQJh;!tIO zG_~q5a+O9QGrlD#tI8KD2#5}jkL=BH@{*Q_xuywu(A<_!g=P&t(biT~pCkZ|4u0qh zB+W=o4nT#7g0~4?x#ubARqI6|77zfD7=#f?07$_kLJ&eQWC#j!*V9Ho94|$*@Qg6{ zp95EDoszfp_8l+6mS2Ac!T!BQ{c+oul;+h}zLh2uLVco=bPG+703vjJ45m0Cr0+>c z^brsMlR#|0=M}J#6}UK}5uiwsw5Z5o+&MxS&thX z81BZ2%`)hQ`!T(kuL#ofq!M`d9Z0!f;(jkZ>m3u)K=-iz?&f!~q@hVDF@^A2jn zA0h1IJ0EmtYr}{Gc4Y_4eiH8~9Ag|YVi#dNqDOeA^-$5q7-AL}!AKDimN9~S==}@k z!TEMq^`V0W0TIGUAoAqAI1?@ng>;W(LHEjWJckYd73jS|$04!O2ZLCDPh zxWs@@9jWoa=SY;^ehQ3ekM)XAkCYEniagiI&82V}ce!%8!i*C(SNUss`F`J5jO7ab znuO150!AS!l2B~+q0)e05Llr35HQ-!2&xugOCvoso7;KthVg^|SG(EOKaHUDB%m50 zdnjO`k%1+Y1^%{XIRpW(Q+~+{&U@D;k@>FO*2wWLN6+E&?{QfYAy^T_)~HICBnKfA z6V~d`lI@fNV6%38`8aT+`9C0(W(-X{p^HM5sop+F-|v91^biCjLO(Q9tQi1H1V!9= znQNQ_{1VX*BMo|7K!M9LEKxZq(9p`Gz3XI%3G2qvof=qy^D2-!;4>ToB^#rt_8c?> z9`{5P>{?8UP$_{roC+LTGZ>(uS_C~IwRHonv&qK&EbtYV1#ZI8XYQzYV|ND!V1(11gL<`i(!e5DuaYR zCgjeKFbE)mG0*;WEWSc`gGC_lK=pNa09Pgd0)v=iEIpE-4Co)KNk;&1N5MFza8U+w zwK|%N0^ZaBGzxthn7Gpe8`~ZZ`Mw?%i$xR&nsOo>Qd2Kh1h?@@!kNUvcfsXll^E~$4{;vEDf`llDQ_>WU zG^P*_uz{1`VJ>bw<3>4FSwC|1WE=ROwSu)bj{kvaPglpIf?QV)Bp2W*{-;aQBc&EI z-bfBDfT$!(4$ZM}{7uKgI)IW94V-{;&76qy6XoO0C~thuAJ@yJXdb*;e|~0#sO1ma z58Df+fi3|O!2lxIz#)rM`tu4EkRVl|L{R>*e1h0$2@|9OOu@(ka%WBlQ(FZkya8$V zKxvVj3xvsF=PVaFQ3MnEJpA>T=_BnFH91fLr3WXc#xXwIemiZp^MhFVFQf8Y3qUmKZ-V3Q4TMYUr#1#7c3`5_Q!$LS60H zF|s7%7!VOrP)r+!<;_ObKMuS$t0MHzz@gI+I6Q$AMtK#J^bxo_6z)+-k!suvNDds< z*;Wvv4J83Dd~?@AaguO@APk6%5+S+?rybuuBs-kn4RIRrt-L#a2Y~6|ytfaB(a94s z%guTCEfoO@%`mbJNPr)?{0Q&~Rqt`jj0Ww$mt{vVQM$O-UTo95ZeZacvrP27L|9ew zYUZ&SR`n~L`R%e~A|%KVR@5m3f=8{F!b0IRwKy389WMKR{>h}n^|w1F%2(%UG)?+7 zxlz{(g1N;;(nEX;cx6}lJ`DrlS95^NxzSU(Q{+})PRhItw;VPT5UYh@XP#bQL00ph zGY&i`Cy5;Z_5qnR+dGlS(or5IK%v_=Sfysj4wPq$_V*E-^JZzbO=)>hO~Bj?bB-uI zYdyQnkW7bI8x8R>IQ2^{ghYS<9@XQ*l|^2&mhQ~=a>Fy>+uM!sgHT5Sj3){mL!<{kCf9F|f=omXfGDNhi4uioBh!Gv+7?03Ct|N$JV!Uav5Z z&w4w)LALG(yH0bba%&g=Lb2h%hN{#=JB=0_7W7fpfSfNCB9(fgwaoKd|#pjjL@PzOq?F6g=2xUj)?~fb?Ta>@l`^&YavX(j!r}?ORlW^dG~x zS7YekEek;H_>v235%5TTNqh%XDw71?DYXyJ>urBe43i2lWrI+JG z)1PT0vL)l|(aSm#1G=g96=DjA*8c9HxdCgv^HJpkTACx7g9C-;>PrO z0F-H!=7LIkq;WJpRw=qj(}8#$Bni*-m36}#wAy63q0)rV%50=Y2Qsdl?7hPIz7@^uZ08YyN*` zy&P0Mm?-{#>zv;IUqz36PWq(nmxy_w9{3)ZhENBf)9$sVpge66DilB=4_|M0ZOc14 zM!ftw3ko}dAV($tCe8HzJ!N*q989<4sSWcgbdJB^s*XheV+;o?w!<48KEoWb$K2%0 z8%$q>f22#yYwecvC-n8A=W{Ju_YxfNFbU6w8EnF1fo!u1zZm?3-~ew0Vic&ftM&bW z2E4uh6to7qi*=~&U{5mq|Q~0X{sr}xrc5-}-mMY`b@|ls6eJg2!i6Rvc zLgn{$>S)l(2d^e%@kue0DNT>h_!;>V!+$oM3I1!pg@HoUAf^&vl~962=n;c~$OPLUYYrQatyjdStGn1hFjGAHvccJk z^8N1GoIAEtVTCi+nkEU;jD7Hm?%4OTYmSqUXiEJ-0tpJ?_hMYnWq-s*%;1kpw14U& zk{*Q+ZS`)gn^YVG`T8)CDe|nqm`;2n$^{N3=b=~_ME5ojkcphK05^+r(FitIGTN&R zxVxUS-62fz5r`v+Nid^6Qy_)_#D*K-vIS4omT<}SY^tIrzC`~1wGSrlg$xaA_&R=Z z>VghjlaoFB)VaAgWMi+FEFRR>!w@-HwWM&jNnkyHrmfj@X_vfrp!bK{fsR$i#($rf zx}%=It}~(n7xkZ`y1M(nj24%0%PXOg zqfOd1lo&0w_7~aEaQgG1kw~u|C-R#KaAKRtC2$P&5Y2R zLx%*@Iwa>*(-wbr*~(AvcpPDtb2#TSc9gudghW!@y&1shs)Ub*b5%My&$J>Sk)M8GDX<>TR8Ag+1JQv<&qMp$5dLH6 zX+WVI4%tMev}j=>C-E+WaX!^T^NipM@lI&lOto?Lpqf2`*5KKJHz)$RK!pyE&5K3wON*u=WmctB2K)Z)cqG#liV6wMQoj3P&c1zka(CYw(1bk4uR5&@`;W8Q z2aGv|edsTn6vV_+6YKc={FBJgkAbhzOFvU2eCDr_o@4+M0IyMZlPV;QNA8dxQANQz z!5AyQ_VnMdSE~}%F|FS}x7Om%3_q6Z{ei!WXZ}yl-$ABb_2~9rU&hC7SY%>T-8M(x zgMV)yW$3aJapW>Ft-^{QVaOWF=p&#}v+iw`ugCdcdieU!%fbbu{ubbX#B4_Vl|e-y zn&z&5hy^Ou1Qg+Yp*`-3iSGTr0WV+7Lg~ip|BNp}P@~>3uuo~O)E`v!6BD7cG zMsTcld?aUJ`yx??E*a0cGJWa^GBnN*7GjGh<;f??C_)6W?oq??gToI41NN&r$Rpfn zg6~az0VQQ-SYt=}wN0z1`SmaI?$!8xqrxe5RVUEh zgdgzFDiAcPQeQc8x+%Ft`r&^A?u9@z$7VqV#vaPzuBERO2!rq;)LPRpY&1aAi4>`V z^nq9o{ZO0z~oMi3~MI z=^JH$RK&xCof3slZi$Sx-puQwfJ=aTetPlMX{f2;o}}uPj>4JFR>?dZH^ap)XQ9#2 zmE-7}vo3qx7=$VMg?V0uaQ02NYu=QlYV^fkA+o7p%u#Bg2{`91d-wVJuT^X>g&MoT z+79q|gY$!cJb~a3AbA6rIs*aF9RbiC0ni-*&>aEH9aPnI2T*kfP<01Tbq7aFnHzgs z=NaD}yLPF0&(?BSu}jplT-1eHk%2{cneO(TEib359B zgBI+T4_G}G9x>Hwf<`AJTq=XgFBIIpArAWU1vCT!HGV1x{_@Bb426>+36GPSZ0>yZQM5L%i3U9{lC31w zhaG2>%s3VtK$x>LfzR7DTLcB+{h0V9c8@z2eb={5R>-S`M&)h|>B-#*OikRa>Q;9dX`lA%b*OLW}f9FxmOwVBG~f1kT2+{3@S z;CuU*rmt&cAPr&d(JCEd7Xweb9%hy1Duk8AuLw0n^wk-Au7V67S2QKC=hLhfvFZz zi=&;hw?6!2V~h;DRye@-9k7{RT6$5pHLag;NgLQa)Oe?eO8B~}`;L43eMb+r)l;@( zb7_1}&+Mfy5Wa5)u`x@TWAuDsl7ATF6T5Nzat1JV=P&XFND>$Mf5rZ<`yA`(()jLy z2anVp$ahVbmI8sn0Uf(N9~faE;s;@^EJ^=+_=f!EXMgAD9zuv@`eKRa84p2X)?pbC z`9uJt)O8-Qh2SUi=)pYppg#Fg=&B08`tTvXg^}i}d`a?D`XP3Y!bPqT{l^3D>49g#Kv9juchP=M2B;9<&g1=8<%JvwvIjVJ$YLN)eG?Re8>pQ5 zvX-;t&!6-zFWYMgpa%BD`qTUf1Y+>sZ>Q#}faqTB`^E2G)*pRdkcVXhg@XGZi3~Uw zu~ZCU)DX1xfMl4P%tCZ?J@3CX%^-$#w{$oN=Zyw!rG*vP0Tgc}U{LGi)?a;tFhHCf zZKk8GEFGyv@23KwVi!<|ii*o-V{hX>MXnV{#s!XW?7V<0u1LFHCC3f|2Yo}>EYfYOEFVpn$S6)P6t(g&+nWm{Df z&j{%xRr|ayQtQy;moVAt{>;OxR@wgOK+}v3EL4!3Cv~a_AghgHDpt`h#`6Cm|dyo6GynmEG@QHSGRZ!&H&cH&vZ{t#h(bv*r2Wx#3eGSp|@R( z>CoPGZmB|uDnPozg~n}bI9gKnRLoUdvu74YZKzH%)QnuQf&#rT7`b-<%v1tWb7Hb+ z&6bslIfa*kR|WD7<09VW)nK5(3qv(xj4e=d#8bV!H@pruXKtMAdhc37VjQ8%rBwwo z)+}Yct{98tczzT1ne*yYJyT=5A(^54d)~F}dHG%i7JbP$v@s;c{#qEC>D%tj=Qddz zBT+6d{Rj3++8VF8;i5RxNFxxsQ@o>x(@^OPbWASLre8przG!7b4aNA~jUSj-(#Pll z_8rAIL&mn!AP(B*ooeN3T`T$05rH2P9F*{1sTd3mwHW6RKO24ZX1{+frqYe`voZ?{j6-OYY-8kC*4T;&xNj&?x*u0zz%I z6SGO;Bi(yiGoTJM4VoYzR0-xr-`P4Y(F6mcinEI(1R16jgoDPFSZfFKLKuV@lBz;z z_-r5asApd7L;VB5|ACaxl7a1P`E~kOa6}0grbr%`q5CCfKvUh+f3+1bnD@7#f96r% zvv_!f)Pd#yvkzVqqyTplkLyudsFPC<4v$W7Qgdh)3X@|6EI`C&O*m~9_%a^QimB7cv|J69w1qFsT|^&0x2Nvp>7vrGtB}LSu#B?a+_Uy?ZLIq*M53k_aQ+u4TkOn3Sl#n}Vh>9Z!8 z56Z*ZJ*^mk2iKDd_I~-{zK9;NtJnO1m(I50_!~l9Qgh`{a>G>x z*&CT=dnNkBQ_dir90$qe)DBz9-L{>^5dhC8{HN36;r*$B&&WqM9h*Axv2=2_3VX4v zs&8G`d@}3+8A4*v@$x zCSTYFKq?aUeqWb9QoO5?9xCukM6h*5aulq34|w)Z=_myzV$`vwxl7B4&2#PAU26}J;v`dZ$VoR3 zGViLNA4a^nVc)M&T54F70OykCKbqN(&fM4Kvq8^;G>YgJ%6?Vcr-+CXNGrpL!?YP-Q-{ zJ;`?4Gky%i@nC=;0pLGcqz(Nu`SueN_Z1n)@ns;w{d4tew0QWtAOwlRaKRP6%|Ai- zswHcer+)8`ICt>y^!xuc}U+XkhrV%A!eQLP50tzgu(sH0NWvXv=nTGX{EYFg9@P^y&( zP0CMYwAbnN_%qQzs@FYU;~9oLEtUP&a*TEPtv}#UCopuPQH2Q$KoOc77lb zSEw+DGtFx`8B^d{V{}CcgVB|MXzX6ra_!dNlGdK?yRYaWs}9;^fxGj(`e=NOV%0lFx>`wdTZ*j z^Ya@NC5QxyVXUM0^(qMSrm2O~58MeLkQfFH7=IhkLGa?a+RkkHNYA53nnNOg9DSl0 z(n|J@pcAfNXK$&spQm*w+8LeatJrhEdm|$VJv{=7m?6Ud4tsrBm9_S4UfK4Em9d1m z?L5z6f~G!y5vb9H(yI+msh^az2Nj3CmXa6aOk7cxlk9Q)g{c2Z_GjvBlpex2);=Nk zkAe$OiR1H25JpsNNs{!6gbqGRl=_Ne+3 z+_h(q_qDAGDALy2ppaA*Rau~jA?i|Cg8UA=d3jF2hUTDbzh7?~VU@i8n!{h7)?_sA z-(fG@Z7D{^&H{>;bsbFIjY<89fgu2?HjoK)@~kOLPvrfd(DtmC-t44@;t(sMp=b!; zX4C!*Kq1ri2qR7;3Q3hDo)*d=M5tZRK+_t4UxOu?*T@_PuVWj2&#TX-fmX0u@yXM~ zyh<|h=9r0yC~PfWPiRY(0Yr59fi(AoaPWl>XRhW;)$Xw+xB*Br23{{2|1-)Z+ zABbGlP_x?q+14TNq5Ur>PDu8JVX~3~kYQ>{Vy!_+MyA%FW|{s-p8pLU3JkuLNO7>W zPy|S?>TjzACXoB*qYy)bh-xov^N4$P$08c{{WDNQ>2zFhYbXMd+@RaT_$&*f@L{<` z9!{bH@A|E96glp-SdhmoHtN9Pz{^R-Zt^O*RFv|I5ON6aY8vRV0#VBL7QtXF0yk+b9vb&aekn z1K#s$_g|34A3!!W;*I)=^Jez4k0V@g92ad_phjG;n<9z*(3o)O{u?$O8ftPWEJF4< zM!-!}xmui~(mTa+B`AbQK}t??cM)G=))J!!&HP&^Oj<#x1PM@?0XSaL)A7+X`Z*E7 zfX*1RuVW4ZT71|G$r36ZnxB~{h^AGds<@Kn3u#qFtwaScuNZX`RlS+OxhPYm#c`Dy zR7Tl3=QT6o(>2E?7$y>>iCV8dd5UX}l1vFZ?4(fJS$o`w2^?sVUNZ$SR;m>QM7GM5 z6&0y1p=~M%R--MV#8y_Q#4VI!)Ka1=1h%n=%VoAzv~5b*mW3E6gF(wsSXQDiw!|8u z5w;@>5>!rOK29*RhH3YsY_Oa2GZIVv{jI;M75yXZ4prx zB2=ncP`0BOTVO1umYbk1MmS1B!~~-ysAEvUg-OwvWtzA+S!pN;QHVAI2n-OhmNrnK zYeDznk^|9cYYVH{yqC$TXa{h~r-3T9jcXMJtSGj`Nl~=17^?(TqM*`+VAfehiAL6= z6=h1>P=6alMma{>)U0}EiLE5L^KU~Jdbxn(1&b+ZXv;#_r9)r8_T$;!XCE*LB;bIZ zuI1nf?*s>qZvcZu!Gi!4(i~(>w9d+xhj5;|*InPG@SS*tm6h@F!$aT3^8ysmZw*6A zqk0hHRwsswAivi?L%{PsgxZh*QorL4kFT`L9CyiSTev@k`aUQXiNT*hqNSY~Zpx$0 zH+qz9`hHKr^LVpeE!7!m%U8wCZ3W^DOVd z7&+m33)p_N`F811w(LXi;F=^_Ie#WXQ|b-e3%9smrK`MA#(S8+b`-1q9V7MgiM50B z()e#ZfquVZF+#;fc91miia)*8SZtHZ16M;VPz=MnjDzL4``>>bATHc=$kbVJBkqm2 zdL2k+t2k6A0x%dk0!TFDo3BF@;Ix=4`QKC@ClJ{vj+o)9*%R(6`i)SAj709MWIjcP zd=_2DZn6;(6Uawl-(2&)$s-KV+XsdlKq(+ku>!0h#CWhl-N!~hREJM~<0gT76&&F- zptNeZsxk910Fg+T>LExflK}z-j%(Igz*#x2Ti!->SiW=XK9$$oq2d3p`rA>(^6o3e zPV*Ay$gehc57InqKicJw+Rx6UsME5W^I{U#hkFFAY;qEAYn(cI7_01`c#Kjkg9ExF z2w4FLDgq9;w6GwNU=aurAqnB&G=t6S=OioKMsuF*E_n}E&u>XpcS_-f-MbGaKD}nY zeep(G*@A^2m>$2ezh!TskCqqi{5`BX&jA1oj8|p#jX(8%uiE-AvBFXFMF8SJ?MP&T z`V9|R06o%xVJIhva9WqG820V0aQbZYnpIuW7T2V-akrf@K;XeI0*U|}jQq`HfPjx8 zr%{^JO7X*snJHaao(nEItulv31uUQAY?4$ITu&kJS^c%#TJw#E!ZH~h08zy+MMV-f zYNHNRkU)K@l|ML!*_3~GHup*&q8Dbnuhs9|`6`*U$LH~&ytwLte*X3W43t!L3Zbt% zIDo&h6!u!$5g`cVI3t=BD{a(?me*Z+as5nTK{pS~5WZ)VD$~O{C%-bpUpAA55g2*e ze$*bS2#JhW+}IZ|$t0&$o!n2{;s7NGDBScA1Rf|b1?Z1^V_%v)loA@Sos5QFspV{u+*Y#(Pku)LO`;2)HqPjPo z512H{3fOH0NQ6yVU#78&C(v;<#w)Sw3MtA@(Eu{aNj{3(w&xw4SKViDWOHFFunB!H zS7?C<1d>C~@qAw!?@ed#KbJp$8{>XGI{vf0AbV=jQBYW@!nN`JTF-XyxrmHhipr{@ zf})6cy?)ORbx|P-vqnPF%KO-sarlwsOFevwK@V;G>&~2gqH+9i!ol^|GBF@SG&f-J z5A=dEss<&D^p^gGpJTpgLBen%4I~p(An2sZ{L+5~eck=T&qc4PSMT->JqT6@_n-13 zj^Lw4e}3!wI=cz2zkB1~8tntq>eY;#A0VtdzT~v;s-PACz1Tpp3MGAj1QY%U7hBjk zYBdrwr=P0)Cz4{}Aqidf{5*YaGp}m~YEnXXD6an!t|=E{Kg`j?pVKbXo00n9BCQ~7 z3Oo6+^TD!7K8bvDwu<_)V)|A13Xi#^`cm+l_>`DfWN#mz>~zl4NCT9h%5dzB9|jLg z2e);1DBn-|cyk$L7*T2Nz!-xK>w5JU;UC5s;zh`< zDwQ=_3=sgbNy^BzpP84F*}78u^5DeMd+tmk^}FU(8iAMgjG|67|1?kYf;4gg>Z);) zA>EOICCN+oZSpwwaAx&!v7V+a*oC|zrUWhND01#r69$hiP3X(=&3o@53AW}vBSyfi` zN#3Nm#Hab8Oa@9jb4&-m4Aa2X#yrSN-hPu207Efck*#3y0;TxC!Fg|o(Gfh=jt}^L z^|w8_a4#JR^nJ%`ctO0$^yv4t1s+dWHUl^U!jBx%3M*ojv1|15`|p|~nGfy?rC!g$ zl2%!&s_=brQ8{bl2e{b9v>&u-kfaQ58IXAO_DGM@kD}=7TR-zOZi|ztucs3x`ITX2 zo0l-76^x|8aXYeit$)@00kRLz5!bovPCcH^J*N*Xw1@|*RnsLVC^Y(myP%g)30+^5 zz~HyRQ@I8Z9ClM_yTCUVPHXsnA+vDd#%~{*!*5U~Fd`0IbAi?R9)M^4DZk+ruo*Ao=^d30*qB zZNoGlq#t81-)X=2!lju8TY$yeDydQ)Ekn%HL96uC1V&vKzK>%MsiYW)T5Adt$rnC5 zsG98IoOIS*I5Gq>e8qr?qPR;I2*r*Bt*oRBK30e#D4Vfimg5qaZ{*b0Ycn^i78(Q; znsJ!SLl_+f0h+Q4G@PcjMbv(`YBG8_=VboOHd>t85O_t^BYk=mZ zujIV*eb{l}Cr=#FtL0JVmKDUTL=-5RX3wkT-DA?|mPP!)=KcZ9zdHB?{fpZUh&rwI zDGE+n0zo+bts2(ukOkf?kaYCU&jx<8o#spC&V7mSufz|nf1$Nf&j1xp#^=M+sa>38mWT!f>5k| z>>W8)fbko+=r!NH2Fu`l(Dk;IchfsX6b&JKE^*`5evW_O0TbO6*$~+|$|l2C^VHUS zD!z|4e@VmP@Wbh32_k@dKnG*4`+KB#PQCbYkJA?=MHBm+Ifz2s3xCX1X~&CKRMt-w0}Vx;Pe=fcncU&hA}@-Xm6dNvBG_pB1uNm zTnka)JHS_!5b}If9@b?BA%hi9lC5OKBp~5%!(UFmq0~4ytw32;3Zfz+eN7crRaAX- zE-JLLsv@eYt0P{@Riu*se}q@$^nF9@g?v`3j`Jfql*V)H{20LY#iDUWp{NJR`RQ|c zpJsC4hXl0i7?DdtC6>Q-HA{HS>8 z3F^^9w2Q3mt34#ELj=AkpX}7)Xy({Eg;Y|bZUT*=Tf><4YcCwom4I+57$3(29*V&C zf`eG(sOM{CZI^J16(JA^0U}Np=%am&+HC-~=QJL6$PRt1cR8EkIP*>oBck2H)Zwmts^1uNn z@R|ftAkh;QU)7gY zv7Qn4fjp5MP6XEqj=r7uH%)nf;~0OejE(<1f7C6PtuwNZ-GKG?gXP-S^ym*@*WrCH zQS$F#>^^hL{Z75xIoB`pR7?gkuG~K$KxJF&?m&N&kB+YY*w@oD=uM@lC!SSTG5>FR zn)Dw}<9hl*Vg0{SpIW}`u=E*!pY^|Sv?ZVD{uaxbnZm!x+y0ih<>vmG`qN*+{>V@` zPy5iIYeS7$IqRAzup=H{ChN+q^+ex=JGJei>9^OS#ER&ssk7Cc>nSL z(9iUIzu}4^{6EUa=Gl?{NAIkDuom+l@c?h~eLo-f-^u@z^ey<0(RI*&rT(Awynn*{ z|LObxFZi+mGI=0|BmP2RL_G?=73lI}djl#nss1UlPM3*rn2yXJHcdLXs6 zqs47rJ?j5v^hh$*)Kk<4!o{vv5rziWALID_Up~|%Pzs2E5CI{J_Wis1;P<&I1R?s7 zKl8!2`L}+n%jNa?9ntp>+x;`i*HqVTTR+Ld&_{%j_LS98v*L9hmHicqW9!ShXY-ok zYa<9)_q*9uYl(-*o)@c&=I>%PQKbM`$?VBg=n&+*db86V_YfbqZ!z}YmjuX_Kt zgJ0;9iLo@-bgw?aK$=@qJ5w7AJ2v>qBbiEKWUts2^i(1O2z*zqhRy(3bRzCHXs`tB zO>i|L`A^~+H{@lSaB!B zU?L;Xc%2Laa~nJmAb>0ZLvslbalpmTU8JA|1Vt4EfWjyUj1qT5)XxL4@2#Cxy4tj^ zJht^-`5TmEAjVZt`m?#23gxU_&>6;sv{um>0VG<0>K#GHjT2^;g%o7eWyFNjgp7fz z6_Zx{8Zu0W7RrJgc5BOXWKV}(iL4NHsz6B=MG`5J9}G0;JMHdiJbBjq2%H86>3D|% z?kz31A=f>e0{#?`cG*t$3gQ1Af7A9>l*9y{x#h*G5k^4zmffCt6Y;&9+xMW`hME~q zjB)eqz0AV@Q^7C}O#jx(PTb`~{SJ9J<8q8x07!!l_IQp@ykZhnkBwy|aQibxhR zQU8DcAN(H%&+7bt)b#&j^FGh^pWgnx6Y6&B{qEoU$)wq>jJYg+>h1P%Nq&yMn{|@i zzOh0?LKPV)DNFn)w%}9jbWGs?Z-J-}&$FH#Dm>X@PnzJkh%qPgIMRpp;N65aW>Con z4yEBY4a@hdAloYEkAKto^(&0O;YZ5@?Z?fsohYFh7C>=q?ZRsb1ue@!INeT>XSFFn z+>h7#-8lUt{STkj{zyIH+FCxDrbcIYnZ#SHn|&nrp?E`QKlZuVAaqgLOWSHYoGs?{ zeFe6kX_@w)X$u%1xdZq=s2|(sKgj9;G3EeJMpj*(oPA&Qw#1KyuSCJN|1YI>=cL7e z4)N=E>ik+l03GI(3{~I&XZ%VX?A`x5dGCtCIvUT*G+63&< zv=c!q3W)ty#RYp)c}u%kVKD-wL*Z01X_hQr)M{=8eh^6&%N92i?n4%6c*c;3X_jHA zL9k7d)|cgSRQ_ZfOzmvTfKDH!k_I7~xc`UUVGKh^2hYYD)BrlINZusgS0%}nHf%uv zE)zWhj4i~Ro_D9Vn+@9CTy1^X5Alr0V+3HL)#lCy`sR=O=Y6)2mJeB(=4Aw(30&M*b4?Ap~6r-jQUrJ=L7xf(f!f4j}&2$OEd?_YJ?*Soec=d z<*p^i@3h{MNf?uYkMn~*77G4KU}emvQ!-*U)msd%S(4;y3Z`aUYBdVb%V5(kI8kLV zGR4YL+l?_PSdL|^rY&h)Zd)w=)#5Z7y#x#=0p4KaKxo2qouCTG>eH0rnxe9Bi?R1!|0v zw##BgP0>yUuT5SmvMFxP;?5dl{=cLAl`z4d`Po31yh0kBIr3V}8&1bYp}^8Xh0>c+ z9>x_zfL)Rg$M+h3|4vQSZyTVQ1hDA^BWhJuO6S*MK8T3-Wu=u0uuEz-%OW&nK89p* zD2RZTsX(@tAe3d1LPdZnQb@>(F_5^F%E0;Z%<^cs)o9U{B&Zc*TO_MNN-_)*0?4+| zl?tL-p;}O5VjjdUP-6v9t(I7oY%GYNl%ru~Mk>LUA`*;PDl(x;NC@@AS`2f-6L z`MjOGBbmBPHdEn0g-P`-i!K5VMH$Q4Dkio$a#OYM<4m~}ivg(}@O@zsOozTca+iLg zRw;sYDC00eMnDOkg1E%bs*@-fZKVM4Ab#jRN{CbKGCfAhoqc|;oi{-mf~l~IBOfD*C^g(Qt&wn9`1SV9Uy1z{>kRFHxt5CTMG|Cf^tK@o+Zt(L1)M74e9 zW=4cdV3ySRf1gY=St_(z_roKElXQvE1#QfKV&LN|>OBt(H)*L{2s%$N5{_3ORii;)WJSVp~h(T09g<{&i9W z4{TI9q$F4}F^L8cf7&HMA95cgFc>kX1pvlHnM)@MfPa+)J@_5Sa*%Np(guUvDf7Xx zkxFt!Ez3dN)2AZk;^`1JLtkK|>45h()Fa&Q(TIS55-PPg^N1i>vM*?e4BSfx(4Q5t zfM5^F-gth0U*Yjbza%)&+XL2-0r^ayQwU&ER!K3{DKMQ==#Ya%N$_$6Xg^o_JVl&A zBl8c|VmDF)45g%1JOW?Y`#;P64`xvj06VjJ?z$sxewY6dqtk%Syc9f@3fq-zQHl^y z2tvwK3J{Vu2vj)6>08zB7K~E~nh|$wulcX+H3I+{0|rK;09pL8sY7Xl6n zJq-kBGzbENrfi-5C--WZPKYVdv6w>Ql2nVhJ&;vBcCC^hT*8qCOo+lFq}tO-TNDaMoZReZaOF;VS0RBHVc$>oeyuLLx<8T_HaY{ z0W3x!FJu@60$2Ak69_?oR#YUSERjJ#L|F=oM2rRuNWlactWpRI7(oz3QbmG*jDmoJ z5J43c7z&^Yf<$8fPO3PPq$ms#2u2cHp$G~|0VoMX2!wW@r@k5g54-8&>aS-78|3U* z!pjGyp>c{yEZGon!l|kaJSf1~0%-DJh=`z|1V|A@7?D635lDha0zw?nB2q34@~m#G zgZ<61bm0z2%SIq_tVi4g^Z*mVpLBck*Yd>gn!ntiFhj6KEga9s-|Usc zzt~;LE9fV;{EbPiAG7_ulg<9{Yd>|bNc;A z9$BpT=O$R~QGO6=Q7g?GWl9xOEOtyHCn8_%g!^bHB``2QMmmqtL1>TKLqn|=D!PT) zT33h__K$^s&VI;kVTnaj7TIsC>+=?)`Rqg85Yv{-NS+no8viqg0g6W!Daje!vkzXK z>_g-&&IXa{pR9~&GEE29;XgdqeHMTx%8GE{$6OMBo><$x_ZEEFvKfrG() z)^2Q6vYIk~)4B!?k<(@WN)~i*Sa0ONycmU2q+s>)8DY29v`7Gv>`{U?KOFhA9G#DM zNDLeipY{4kL=JnX!4Bg9r%M=Q(6bNk|FDbYjSydk{Rb(w>r~gx(O(wnUQ9c>iB>tx zZ1SHn&@iYOmfOWj3NVsR-MfI$oG&}TOgd=g(*>v7h5B`wg@yn7k5x!(6n>g zNPOED_sq>Ni$=2o(BYY5=Yoo!t(_fNR(IHBFBo;>Fi!{G7R~tw^{g7fx7==AL`6t5 zdxbTMVIc<)9}Jib37`?ipn7S>4wiIqw!`H%bK;B} zu-j()ewB2;pbRfe$qgaM`QcHB?JM+sKQmSo6061w*uYT%M9dQp2&2&TW#|T0h^bp9 zu#8A%jMPHJ+rt?%!Bbgb>p5~1$H#ZXNymoLJ!pD)d2hh$da8`60!CJLZ0Dz&dP4WK zTpt(!jX-k09$F9^%fUXa4>#Se`QG5N5vT|*b|1UH;%DL5_5Hup9>0IT`dCNlQnJid zQ2fmP>Y7#h;{x16+uRtnD|Qmhf(W&u9-LTovVw>Xr|ryLijj%D=Mg*H=5Hhk-p2-S zoZvaaA$;W6G3d-(B#Y95^K`6)8DykO%Mq&ZEdVMmgS(u z*25Pi0}y45FN*hMbCW!+)LjhpP5lDn#6pIBoRMvlw%PO)xbDifbNy%@){H9K#nzE_P&4l*2&BrC!Ry22WRDi)O%yPX-1 zyKjgxK*0$IZDbfiFk~UJ*OnL?NjFO?0vx(I(PuAi1!fT_VFP4nz~!)^*%-kBEeBKu zDv@C^CNs7LZ=)@U{8$xC^eMbk5Y=oTpk}31MhJi^e*diR@bmI-!`LhE61LSA^LGnR zY(llPMKm)#-G&!7^rpr9*l%xdSEs}B-})r<>*x^Af?`jAT;#tKVe+{g+#1$mNE}kh zo5C3F-pMskK3yjj*F3mFP2x@|&(3RbQ3qTzkPuKP6Afhpx~3o^BHDomF)V(1ZbZ)$8`hB}WOhc2Buj>;0h;Uof8yly+EF5J8Ie%<=ScM!7I7V~!$ z_AIQe36V>56kXfen-zVBA-LBrXaaH`1w4%JzdhHVGs|&Y#4NSNyxqdn*plJk+{DFP z1`~Ajro(J}@Rd=31%#0puAbYOSr7(919Tf*Sy`Bj(qv{pe-|~6cn9uy?6C4z>b?<* z{xKGsEZ3`6rRzj(cBw-iu>M7d9iq2<3!mB0CLk8-#j?pZ*u5sxb{e3AOMUBI?+6?@uedc3X&%=UZDVhWY0b#VwkUdyn zgyG7JcADMy3DNyQ{S4#4HkNq$bvcunx0ShQk70mXcHzriWDz1WhAlg8XARo$#B(T< zlM8Y)!Etia-IIx77ei6ku7evYhOmjU+REs|?Z9;jAOhi*p8kBR)jK$zyW7Wyy8|k& zvDM<(L!!7Ho=(rXN0~$~iuZK@D4hE>WAz3X=4!m_&$$UttVn!*TjwI^%mah?*(E-U<5*kek>M>&f)pAK{46yc^#rkEV6zb( z(w4`APDuL^qxNq%4stX(n<13b04q02=BWEtGdCMQFl^QkDu> z&E_~||Lwx36-7tV;1||ys#X)N)!73l_SaLs^m6{R@^5b8T`uMue z@Drj@DY)=b0}PhrIUUPPv8_RYZ_q&^Pl)jTyT31UzzMPZN+95%QG7=G_Ff0lyOKp5 zwF%~^-M*#~^s|gwrRZZ0x-{oUeP)xsp~C*%Ne_cLL`)wd0Gi2U41gnYc73)O*Zgk_ z+d692G+T-Nj4&7l3yN?{oL(XaN{Bb$aYb?F)8*k9i1bkV##)vO1=(0@a}o%zBldqn z-}U9S+mmJrsIMj7DhI`Ri1eKmW#mAMs@VWTnV(9*h1`IFQ?N?<5dc0=dmn#*RnEPs zyGtH|h#vtC@7BumFpb(9_~mzcmFBmi<&=Gl$aJA$VE?-f+ikt*quB!DVd;7q%Js3@ z&;iaJzuQ0MwTZTM}cTgW&W36k-T?&b;+uhzwdyrVwF|*wEmHtOg%<_~MMrY=0%HtVXo+6nTO3p1Xd(yYlSA#5kXS zkoZYG(29r8^YFra*tDfTP174>w(x}koQQ;l#J)}kBHm`>OMC&DPO^mJL@2OC0f7X9 zW?V{Q46Fjy2^C;gjp?xD8UhfnPlJ?zAe#c1N1f-`@D~CEnA={4AISv(EZ|0BP)c>k}@aN{wf&DPgKQ~m<20(HG z`cn}PrUd8cc;x`?K3+b8QY`=h&{lna9xkQ30kN?teLvRiz2r}b(|>g+9eMhm!148p z|3qIoGP?Hq_X_P@lV4v~(GICDdGz)9;rnvL)%$tfQh`qE3Ap4=ZE>B9GeH4hpaMv+ zEUJ2if$L@+Y=xRN;Lh16RJ$N5l*#*lI_M9v4;>yG`^Zw+ExZpN zKI_F@FRiKXb>~|2xwst_yU)#b09_yj4S_)ZIO7KP>^nF1 zEL=dKct%d-Pp?YF8MZt9#P=TV-kf)BX6_aw0$;CE);s`D+n4%hJG`8ar@L4dhR6kT zfTx>pxR{$Kz>yMi)$DHY`1!Y5)|e|iY)9zl%lo|DZ)OC%JxCP-2L!o1)&Nk1AXu6b zQ2-J&2@}@eZB1LL&<2qH$E(lGnJ`UA{f!XpPEEU z*ZR#MUsw_{EQp9p{ysDHlkfWQl0eX){WuzZPYY}kefr8(qWm(@Y5?%1rByyJDcShW zvwvs1-}^UV-Jw|?8ucKUeskulYtQU0d6>-pM`>W*dmZYChX3Rt?V}t6bL7>3uGD&i ztWdx#3Hy32sY2Jw@9om-?){xs?dE;w$VUDsc*GDnSDWvLi*;8<5asaSR_gKCvgp+J zA`UjM{sC12>u&5zswkX8-}rOSAm4eHZrcSf_lR0Pr=qrY>1j~DQ3RL5c_>)jAUxy+ z@uY}>5Fzgvv^NHj5If_)Q3(P72OT!(3G&%*zSIYdgGT)Etpt0AuPz-Qe_pNl?b9;T z5|11Yfj2}~3C33a>WU`5?}j?}V#b<)jT=WGP5_p;uE9kUJ7<4(#sw5eaFl?EXyl1! zG0#Z7+gv+v%PZobEX+|v*}vx@nf{OQGxuucj{w71qKRJ5;dC-4xPe=PFcQjUD565m zDkz!op+yr9RwJGj#0)V-K_Dd{=j!jjfla<#W`HNN1DpXw&yA~wx&IGP6UXwvubaHz z^h4bj%jcGKUo0pCUmh{bw@sTXO_F&g)A%%a5*S$yb}fJa5rCioHxHC_E85U!(~5WF zTt@OV3qew=xHU5`Lz4iO0y-eDS*R^a#5UNtSnJB=G8K6QRbH(Lt3ntuIUYKjuo=qg!b^vOKMl2N%^xt2P~u2@&Gg4pN`(XA6`-IvogQ9We%JQowPX- zT|f>Og$DT4fu3Nz06+}3tw%TwO)ajxzy+9~ZJ@!-*3I_aJK1Y&&5;D~h%!~d&2HR6 zZa~)Z7$Df8Uj}oLx~Bkv{tSB;tf8Kp#}j>(I6}mTIw)nkT=UATZq3Ql2)P=aS$k}? z13ZW*T59G}p{T<8;X-*8egW?W3*nF=M!ZdhtarI<002EN#ImTHK5AGC##~^-MC8C? z5_m)iyHup&2_#{B!mUv7{3#bW=a$o_NB$u`Nd;GJMg1iLuwo+J z9Ui=T`Ei{KTT9w2fWedoJTq_*x^UdFkor_qH> zmt=f_0Abt$cz4|J>``62=e0K5b~B0~+Z(IZ`v!Suoq8`r1Pn)>mqxyZLJ*mu&1;k< z_9nAi?T{Rfj8f%w7M$g+RldR&FMD}9n;i3Ja63_iSje#zRTNa`uK4lr=PIP&@Hmi2Z5jBq@D7U&8@dj#*8j%9nQhOIwf$Qk^n z&#qr5;h#6ov((*1Y_u#?I%X0nSH2LDFD5#N&$P9oQWxGB)YE`XVah0m}tL0tQ%M&dX;3*YfIvi$`6#@&OD#Y7=bwd(e6#~hQzoq;{iE}eiu z(QmJdGM#1oOlD)n_E|`<4c}MA?!BuQhz{O9V3Yu#GN6!5^@*-qD-=W!fS66x0RSSM zuQWi@%CbNfL()$X$Fmn(M6*Ln2xjPex%U%4JdhmY+f?k0Wf`lRvK_rcFzSXnbZLy})!#e(1Bg9nLkBdyG!>68`vDr2G{4mmSpyLyS-M~Z< zXKP5;e^rN=#^YK(F4{KPZb%m#;Iw-r$Jl!YELDhtqwF($9lLmVCTDBohM0~WQY9h) ziaNDzct z5x`Wm8L?2Sw{&S;ix!B_d4HTg&H@BRDgk1EB7FW@?Vk-Zcsncc649HL7PmFOC%wXL z%`FwkxpS48dAymz`L1%sRZ5}&N&tWe7Z--8!nMpXoJ``bsvSj@mpEKj`Fh*a$EUl! z@H?Eet`QCD_<5iJq46Stii}1uU_^=_qZt8Jf{G#u5R4Isz!;#iC@7GSk_ZH$1R*Ga z0%4`?@GL=>wVKSzz2)gkHKhq_0~E%Ewd+`UBpX)4UcLJEqpkeNh|pV zl=vQE(zq<^sMfPd5=kVgsVela%`*{_UJGk8H5g@1t)8Ib9!#` z5%Ym@ZUPYO!T>1*!2(f8v)h+ho7Sdm2zddLW@i2sI`DC@ zp20RgaB!8D+@?=o)HZA7AwnPy8>-p!@bkl_qro?W@qstBQOHw`C~li1t^<3 z&Vvp_z=9^bv&%lTc%j3nIBPgq4D`#z?PcWidigt;5pwi*^mm6x4zS~>JbsQDmwF&M z9OQyh`D0TWZEm@`bgl(L5duYmga!l!V3bhQ%d)%-4v;*rbBykfN0t?&9hgyVdW{z8 z|HBV!>YciCp23A-uN(}Abz!CxUH63BIDUOg;)<&doxL_{9S6E8!NdBvHNtM*h#vH> zJN4t4>K%@BlcJ=8hfZI*Pin6kEQ(-v zIIUX~$yLnC93V9+WtWeZSP7I;V~#!;Chl4g%O4J|SPIsy0QLmV{MvUt9GH8!e!!+0-_ z5~-ea&Z%_$6VVhF3j|`I@56ps;qt0UaLS|{z=(Vl*lmnboMGMJUCD~wp>s&o)&^Fj(rG-Ce}4vW#qOK7c5^#@zbLB2V6a2( ze>qv-r4-f)#5CVP zY~Ou8?rF@!E(XFD=+sI;+Zw`(W#$H|Z<0t?NMFNO+3uc96j&&xxaxH8xxP8V!lpb< ze{Q{tiJW%Ckj~g4WOuhTlhuIM30W2zGo0{45ZY zu9??Lq77m}0MHDAMJN&i0b$PyF9YwY!YqtS#n-2JPjWDU4N%f~2F+EPyS4!N%vR8j zh{r{GO_n_>QzaSsp9v8J6<6fUf!35YeOxAz>V;r+b4GnTIO)p8Qv|5Jy>DM$za!*` zq9CY?d^P6u=c%Z9YPy*&?A^j;0(1ir3;^Y=e(ij^K0d#{3bzwA)uKd?V z^kRE{%RU=IK!Snh&sd0g*LXAoDBJ7Y-( z2yS^&5?-6X80u-AQs>Q>DnamRH@gTGkk35Ps2&WdF_tl1>F=6dqh(n1FN3Z>O#1#` zIwCPeSj7|-P-2LvDu^ru6hXf(JKrw7p@DNP48LIYjQ~7Ayqwd3Gw=DnUr!&unZ_f| zXnqBIp|gD%WmW>z9lf}fX=ze3H!`TC{nP3CwXM_Z!!p}#Eo*5nHi9|)qM#ukdy8{{tV-y=nDnt~BG&iSSK8$!0*NG5yZL-#pw=*y;KHp@U&6M9| zxrnBjwh-IP@JA`nGK>(n1D#44LJA#}HtfhiDDM&a{v+T@As`S(uh-wT^y={neh%p{ z)+JZPSqMNB0TpI|1B-uawx1f}C?+$KG$f47cOrWtfjhK|WXSH_mIw+JNYE7!KnUc5 z+aByS7eNzw z$h7yhZA<3!n&qU2G_R3nu5D~Vsf@@291`{nQIEc;RyuJ={?B^bA<2%8z z&KrETbKZoqi8%akpn3A9`Hs*48JEIP2!RkFu~|$23-56Z$PIGjacw0N(ZcJsHFvFS z%@9R0(U!|f;W0SmySQ0&;%4Phub$FLB#^uK>kr6%Gvl!?P0b?pd)?nxd3|Xll1U_z zNhFq?#w{G+b_gSiwQ5o__&H6yb$wmE(My`|5}9&q}>l@F87o@CEW ztYRYdhTa&@6J5R1Z1P6OFzLAw0pw%|4)FM@bEo4CtM1xf7SW_uUk=zmY_iR(n^~fJ zJD*P4^h&9vqP_}sR_`wNqAYbRc;d`o9&5Ht=65`9*McK_kn0^4O)Nbs?w2_iJQpuW zu+8#08c-Ohr{lfPMhV$*+Wsnxd%>+V@^2WR z*eP8I06G~MAUhUFlc!s6uQ;oX8NOHYvwk*bWL(~P^|yWPpwD>Xj(GN5Os2%V`a+lP zr;3?9n?-$G#`k4c8`)-j>g$woLuE^KyW57B%~QH?nz+|3t1wA~bJ5SvS@}m_2yUa5Ty~-!D1u1jn&s8r6lM$%GcaHb zNht%rGax^)@-Qe>^xpT|KIX#5o*mW)X1-b4eZ*%!SD-{eFi=4!i5v4McV&NjX;IZS0K+LVI%4I@#{sWBg5h zc4y-{5XacU7sl^}Oz^vqhy`bMytH5I^-NSSTh+kEmPhO8GEg8FK!QOEh=?=8Ul9}r zGTNmt40;sMYV|{x#{gIuY*QSQwai763SH@&jd4FOnh0 zV4-~=I-*8}M56?6Zc7d2uBeB_0znzxY0sH3L+&yj64xb(_+;qb0{aDzWltUNc2hs3^q3H=K~!c zoE+zCTD(y<;CeC3uI00i%Qd#R+3xLxiXTP>OKsa1rSBfCg z0mul6&QJluD0p^yTUWu8J_w_V-}dz&5iHhVT#-X*K*fl;TEgLBI<;Ea)<r zd$PXXIt|OfgCh-4sEE$2?eqte1qF%-$3BmC{CsryQkcTTYnf_$-|@(!A{2om7#^Sj z{MW`vmXA+Gd;A5AqNs=x9n*X&8yLr#;;wz2{Wmzwi0t;+!t;iD1^4cv26pPx9d)HP z$do<)&>e7OBteowTp-2YEb^6yg>~#%-{bp+hqNLP6F$%<4Tk_gvBukS!yB@r=YP&E zrxPAmN{h?_rDz(1HM|lnQZMOgy4L-ZmKjNimn&GW9hGBgtN z$#_Sd&6cttQ34eK91)}eCb`Jj(dCnfeJ&T;BB2CCfJPZdmflRk40(r$`?P{n)ID7R zm!*6a>EFS>ZOm5eI`h9xahmz`UJi)nFi=ofn|(9M_-ONAkVt&5ngc|N2!t%uA9x`F z0u%uQ&;V^cHsd#Xql3u${I>8PF8!Ut1aDKXfKh<46of-wh=RQHHb!P*Lm;6M z>L5z}Et7p{;xE)#;-QXab;2^RPeFKFFQ14jQp+JD?y)E8!J&MGT?@1c7Kk zK_vhbc)qBfxVYALSP{d8cBT2FEqZKV$PkEt$b?Km6E^GGx^=Z%wv^uZWUg@20S8ow zFqgR7LWq(%R&0h-3ZRx9qCvM#>9%iIFh=g0%{cDZ=%(0dF^NoWL}HC)lbwWPP1kB?l*wa#xdEopKs>ovJ} zGfu{gdOFuR%xzfZ=9XAkTdWzQnHX22CLM2WjcZ9Qt-RrjZ9+<6bDG;lYZ6wpM>MZS z%*b~wsbMhRCo52*vCZ?JU*A8l^}lJ83Vt;v(^ETS>npq#$SCi$5fvDaAWP78?C8$q zAQ^;es1SZtz`d7I%NKN9w(c=*8kUPP!cbh23s+%_vQJ~5I!Ppw&y}70?~g&1Z$5u~ z-FD0t_h$M@B$7!al1U}{Tdvo@_1mwu7+{1ZFCYji?%6xuok)WC@WSdM+GO}*t@u1| zw+rT{!x*{cMh-tLXR0_%T!GRtq_ft)X=m$mXMzYF)=SvHDXWGY_d9rNf_#w)dKnOZ zF_PUd)jS_YxCQ}>GIi*DoUEgHG30GloATKTqplfc%I=6{&&mBDqE~UVQ2$t8$sHu$ zeJNbGT$tpVts%c%p=wV|676Ju>r2mk-D49cLaiNNGLWiyM_Jb)ocX~@E#*x-5kcWD ztiyG-t)O0+L2Wn74d{;);2Lgiw%K*zy4Q~9k9Z(JhhP#=u`R+nSCq1Agc9p#Oti=Kdt-E?8Csq(*{FQ>c>ql?W<&v*8IW}S z$;Y@5`@t9l41spD(6;poAXj9Pji@g9SG$_sQ}=JI;9vxBb@J=uX>B~yHRUtl9%tA2 zz7ih}Ha!a4Z7O&1JxgK(fM{MBZoy|2etk30iN;8W6Ej@zuRKJU0f7j0oQ$nciau*; zM8Qr0ApITHK_x+C1lI+&2GO~Q0e6wDqB%ur%xp9yzQA1_3aQhvuzA9UsE9Ws zOm0mjB|Fn1Mo?SdR^x=q=7{BC1z5#wzgPUQYJR3DTysNBU!+N0jU$c_IVjepA1jT!k7C6ygNN7u|1LyKkze1Kc&zaMqjdq{RrK zB#K9r%5{xHT8{4^L3o?$LlN5u3dGrpDF!2U37h~XLndqEgdzmgX=zUvocwkGOvkHU zudg4U9dphDC`C}i{87=w$=~f^+bi4fUVz^!+ndbqfWB_G!uCWBd6?;+4Q?;OZW|qq{$cDeWDTbJ#di?&!+vl%$K3oyaIDP{BKOY&Lf#+R{KqGbPc7Fw1 zY-7e`k;MIN?(e;QRV^Cv1G*r1^V_FQv(B1o4Z~DQOWXbV01CVGzfQcq&%ra#$v1N@ z*vA#)RW^i*jLP6Vj1Vh2!-3L_F#YDp5o~b85Oc*ppQgyA3_b{CYHo-;*{h9p))+%n z<^;1KAPE@3G&ske-TFyy8mgcK5aMvs078r)6xEtmg%~0T0sco#5LLS(FH`1bw5^~o z9$qoNuEm+20#?9A=BcS~eix7+=$F|Yx3F6&;lgbRVk01C3>Yt8WQtCSB|lI>5$myO zOHmpQ6(T^k+l#c@FlODeEh0P2OJPiRyvH*$Q6P*mKRWWEL5d#Epz_DmvCTea(HE;% z)?OZF_z~WlvB`$lCozew*}21$QCZ|7$11B0Fsx?rHFoSAtHnyNx(wE|ZwD4Ja@cjm zE#lRzil+q3K_=pqRk=2?hM_ERc#yQMZ4TKI!z-fW-O8>!mC8uvZ&C4Yt-uj9W?axL z01+AN5+I>!F&5Xt=ey$XHe*|w(Y@x7kSPglDDE09hT*d88DTQ675Yg|TKdvSB$vv) zMEp7hcDH&i@EljwtlCK=l1M@jgdqq*59X$apwxUrjDar9MMn=UfR%0RK3#$;D(~;1 zZ*a{U$B)hlJBToW-Pa0Jt}^-2$uz!12gf>{I*DPt}*gYc^Dc=BxUai^71YrXU}3q3BTN~ETnC?HYTo6StmhWTNk-jhg{ znx<4mR5)^rSoYGg&f2uDC>#dyd>v*Y8reWXP(VLj_zkp$wvYa^!%F z-+r*kyfhwJU#4S`jy$!@GfnB)uiC_8TI}Ag70Gh3OBZ(_JRXFlJ62ZyTNvPsY0C*BZ32Zz7M(Uq##_ieymuL+VVwTi9syZQOyuWC`H zT+=uoFQ&%2pd0O0-~cy*sQJ`Fcm%+edObWhpEh1or)FdtLNXURCus1v_Dw^}ZW#{+aEojLYWQGKgMJ_AWp0on}Ci8de=&Yik zR67MzKD>lQ%dOs#4~LNR`o8|W$mP$V?|q-;X*kEE5X2PrEs)dOzf#ptSO96~HO^}e zt9?y~bBrq6`}7b#zU@xmj?laQkC)-o1vE!QO@R&zC4~(TDTZ%Jn$=ElpD1IaU$olc zE03F_O*R4%(Ipe7Ed_QSeRa}wfh$Kj^ZWPxJyqk3eLj7wbI?PDKXc&qMo_Wftdr4n z52t8Mj0h@yimibwj~~zBAV@V_zz>eO@{tG;7f{Mp%r`8x(8>jv&FALw_kCZZ&_~&n zKs-9>hcthKx*`s}giw#&AeOqPQ(Zm*$J9}Z0^`|>iy$dNcKIv3QE}__06BTrDaQVO zs9FxndIdfL1oxZm_({vLszv;Ls+8UVI)jW%#xn`fk{gPMcty^lIqVx}Bh1&%%*INc zfeq-*_FvqIvyW0DCnR4Y<_TJqXj2Ib!Z5=Ev~uUejJo!4mi=q7M{uTl6fi$o8b}|7 z&ox}Tdn^z=?!)M&`5nDUuYdsQ$a7$Iu(&yFQXo?v)h!NyfKp$>#{Ta6^|k$(M4IW= z#F-y4{5y*lt18|eelGI(cYJxj+XL0bVbsdss0L?KvxH#J@jg5tk_L3x#{7eZzuY;Qso$oa6}*fz>LF0(wzlt!>gquvX_2xNB@C7s4b$(BVc2 z`d!3kSH%DwS>IaDnVZ0_@MtZEf6=4^5AOVYzF&%aK2_<>a!BmFGJwQ0sdA7Y(M#0D zi-`S_jY4hXSfzw2MuRTqp}kO;gvO$f(3IGYTf8vS`%iDZ?(D){{3yb-m&Pd71*xM| z4Np^+oET9PIKDV?CB>29(b=LxHKG7KbxgHGWB?@!qAHykQ)iDJ^xrs_CYJTbt*Mu# zVYi8~a%js_)*lq|xQs-xHB>+UNh`Do&T32hFeCXrWuZiwXP2KZ~?=2Y+ zpyqyuclPmv!lyMyR*u66B%bdt3&9aqMfm|2Qa~4q5JEDHQ5kDOq#;09mis$*%*Jna zuE|Uw(XkaPL58fj3v%jK?;NhFe0RaI40 zT3C!T6=!p{2t?_xDEME0kLmOuA4v6&zJ42!%QX ziv1&Wc!6PXs=HX#O+Ck66)vuLMOY8EU9aa#=avr*JS}B%zlIQ9O*Q$=*u`wUMpbi} zqWo}bG?Na3$D)-RNDd=2L#fC>|UlzLN-Ho4PH z5bTxc&8JNXLP%9c;6vd|O;n2x(grnZPK(L_~D?ze;=plZ$Z*K58A+4Z0u2E z;q!j!@6^zovz(Xep+qom8CAc-^iY`;apu9fOEyot^WtVc|7Y0|103hrfe$8n<;E5u zFoEzwaEK;bga?FoihQHX%Z{>HQJyHOs}WU7rC5ilElH*&p=xuk?cX8TOrLT@{18}? zq`Uwxy!B)cu5$y=ncx>4*w*4@Vjbn-%TH-Xoj#b(J?@wStsID;Rh({a5UE8n(c}(7 z+ItQHDym9JC;9_Kr+4&ykE<)zE9o@qqq6-V<@tc0H@@z@{B$5YK+Z-LVf$zVT*!2e z(sjcme)0`HaJp{OWDw5L5iN>|=7b!pK_YYj^q>zi6;TmczO}0{6nt$0wEa_XuGC*O zbrIqaUd@fKa$LnJZXg2DEG=hmCPFLZF7MO9mCAu6-+F|n8$o=?Sayp<1MXN6bm^{3V**&qM2YfZ(tc@y-!hjQa6U;sB`R=dg(>f#AZB zZUjzyRuRym#7PH-S{K*{@N-QU~l^YP0uHlkn0$JGxFw0567<*DBd zPSF@x2uRw^`>ES34Au3gK4XIiPCWprz6GxwN5feu`%Bj#egG~r4(;`C! z5**d61gt#3MJ-5v^b?&;9({Uc`VEIb`}Q3%wOtVB+p&&?=W?!7+ok#cLX83)R3Ah} zUEi)cKRJ5chZRQQ;;cYGK!;szx7F88DvsFBB+FF<7R*-O>e|rID{3);YXO&qC)!w| zD(@kZV^2O`edc2*{3s1w=gHko2M8LKszCrDr;F^13vTW?`qSY>M?r=dO+qB8CwrX1#j0L${Ef;vnH7?Yf zTix%C;ey%L#=%#(-y^x41q~!yi<=r+k8f9+Gn|Vyw%%VkZ)+A>;xKG2O>cLWjoe#k zZ&%J*TPJRFiC)dCyvT>S&r(f>=)SFD?A&FG6EozA|n8$6_mD+ zYLuu~-|x&k^lCcB+{boHZq2JLs<6!qh%$pMo0jg=X3Hkk$7~eUk8RJul1U`JNU^u& zG={?GzVocUPLfF^l1U_zNgk}j^k+|@iRJ(U?ehD({MZaPChmal*FIb#it%zawi-%V zGn=vAMg=R3XJu_;j#P}XCODs5|dvsn|@Usjn z)_pB@ahEA?t0dpT{xk4KSM9K;m356qGBbuYR{ZBew939h>j!1Ba*kMZZEfJnqmNUy zlTwwoy!gp%D}uRXmRDQ3NMnY!MFum?$xVV~==P{@lq_!+RhCb&&Yg%(xjIX!p~;Gw z=f{M#U?DyVs#s;GihKY?F*r#QAZ)!)5u-mk^_fK3U1UmRVgf z#{`O&JnDKek3B~YC|&PmNsaMWq*o@o>w}Gak{6$G4rT-<2?hd{8*2ROKI3yASH{*w z1gQ8jBaBH0~i`urkv>6|Y10n#}6HAM`>uft7yb%Mt+Sun+Kw))?LP7+CA{!vI zxnDy2i*2Vd*bXB9KvWR>U|d>GW3Yy&0fyh2{II7#js>KwiIqtzNm5I&A-(e z7IKCaB9wv#k5NJhm0A%nL;(p(3iWQjzsBmPyADO)$E-v^VJ0FYk}#Kc{CcatGwEz& z7>H7(9OyKvzh^z8J~(OFGON39$w1Hn{8ckt^TK+BUpmk$=q z-eFb?n12h1aH_H1J>y7fs{jZI_C&ElX_wG|w|2lbId1#odB9yf;+GE3i2S@h1M>BB z{IPpq_0&{ao6!-WIk;h5LB2g+KvTsoVEBq4sBVdhkI~? z`(5!9bVS~kxbVyKtrA(*=Pcr7aWkPG;C zbcvna_WZ+5aD9-3Tp}w<`Af9l&w9qf5QqdJ(;qVY-#1-I=m_DMb5X%ZA_+oaU6M5A zkkLgLOlC9VjQbfz04YcO!EfucQa0HYAzrWOkCmxEvno+ zT}WGcE+StOLMhx`*rgXWA?prlaSvy1JpS?Nw_fw%d-!L;pXkSjA=HE^=n|@`AfQLF zKWb#MU??dehA<10fvIAXY@nG1(m|4=kMdGUB$h9Bw4wLvJ+FPMp51RI`Io)Ul1U_z zNhFd-)y-1x?tmrT>=K9}#o<(jRxJ8($P zB~6r^oWovIPTo*H_w(8HzM0XlepogjgR~6{UlY?jDJJDYTXQlAGUo>^(wnN942FV&; z4!>Yi7y!&dursM=`Na55w~`1t63 z@_6V4Zd)TEl&B!6ET|Y1z@#d)z&*H+n%dh!@if)Q-Dil$AmlUp3Yy0|r(IV~Vk)3f z!I}qz6?+nb2O15=m?e(>71~sMHO&g|)7H|1sbDI^w%W()M~ z$|4@G#pbwFcy?yIxl!VAG4a^(xsP;k$9ZQXiA<_A%P zX013Ly{53D?&ieC+Pa9=b4i>myBd~ZeQLAv-|$>j{q28;v)VcF)=8yt_c&WlT?#*4 z-S9+ZU6rJ{ZlH;I*MO#!TF~!mfo+Bm_PI|qv5l)-BC?unk9z79f_h|7DN#o%z^>V$l=PLlRYfo{8do*T!yjWGF(pgGO3ZXulCM`k3>A)E+Ul`aDKD1u8( z*Id2KUGxZ=)5J5g;?=ace^crvUug1?xWB8Nf#K@$>DD+sdY2)cL#QDU!B|_XB{&#X z711z=0TyIb5lKWsCIlETw8* zX%McBwzU&6H!L8Ua5){ul#1gelXh*mTreXlHFprZpLrybNhR$kLF#&kuyC(w($_~_ zB$7!al1U_z?)SnmF1NL;r9RKc-{i03oxXi``s}O-B6k?B!t4Qg&BF;DKFUmDdQ^R7 zP+Y;*E$;4~VHjYT3@8k1gNJJ$&yyVa3e=R3}~Mgy;kpjBX8m7fGQ@K$&8Su~2l!^0v#13_-~$cTXYBYd$&;xk_dYwl@mLU(?QRjV2xqkZVj`;snFa zCtC?dy5~Pe2R=hC!QdT9b0>-#ztwE3hWlgl*#YRR*>`3DlA2Z9|Dn{=!Ek>dtl_wXKF z|2H&qm)#Yz{5G7Qgbg^f3@CNfAQczKbA0QeODMeq>!#|li_$#Tzm2` z0w|rL!jo1HkzE*erO)pKV&Y(LoqseqGH4G=8Yvqm43(sP#^64kFK+zm zn8*kRpB+Nt8Rx%5kC=$+DENk1do!TIEf--4iGs0Tli?e^hoVV)gt%g(ky%Lk{okY>Fvkv*|( zwi!9i3pc;|r=^Ts0|Whoy1)JsC$K)+37+YV!QtB~(ES+s&d19Y>nD|qoK)~uvDE$Z zduLv4Wm!V5AIoblevW}+nTs&P$=B(&6w5)9e_wY)@6Ldgc_*@_jq2nhIHGEVAJ zcRIG6J9p7uv7SMt4+UA_6K;@vN#x}&^lQx0cw|m%^Rl&UU_cpS;TM75&}mA7i#70i z-|zrKNbWWa+vnms`&1=|rsP+b5`AtTf81S<>bo7BxQKz!JEb?wqhyiz%=BIYUK}zS z;n>|;!^IYv<3B&`pT-L$MV75Zdvx8_VhQ``1&Sc5>ho(^|x>^Q+C zcd7>7ZT-gOt1$%x`Zxj5FL{f*s0_BSxiK{oJ3I&XK}0!v#yNP!Q(En+_wJoHz4q?R zjjh$@!C^zsZ*LozG;DKBK6muAzqj8$CSfNPvVEd`=5ve1_$EyQ9na$i6$CDi zRh6g#tn$2SD=cQzTNn+#uf5aEm2!PIFH&{$`%g}75p(~mqP;E8nLm5d4UYitB{(aM zd>Dpe&Kpv*Xu8Q%P#MuIEn6m8go?6$dqS-p3Ofaav)K88`)M^6xgAx^XZ&HyEoJlG z2>JMb_qvlCtJ85m13x@-+?Xu8HTm|Cr)(7@rs>HBb?mgRTOWFP!aO)&m2WOw8qjHr z<#O=Gi*kN(C4=t=BnTXrWbI*@7_=+m%aO*C2C06rj>c0{rE7%kY#Oi=K_#SB2Ulbi z3bi|cc^KK48;e^tP)SN0ZDh<&8b)|e$3s0o$9o&S62II%FYC3gV`3cz*L41{*2^_o zb4u#*%`rO9eCb(>V)eGgA@G1Y>{&nYX4_i=M%urWVx6e)kR}qJs}^CED^MuZGTodx z%rkC@oybfI=k01WHP3G$Gx!u8yM({=)c|Wm9{HjY!kwZ@-qFnyFN!yPB++koC3Y@{I$(-*Ub-jTQND6&5{}n5d!= z0==ZM?&q6;WgFEP2~I&|b8QyU7D3leHj+b$Of5J+;QTBy^bYn!KtUf{SV#Q5ek^!oZ!R_6B4LC;n1;peS9 z5vg9WeIdi>2Jc5RynOt8DDASI67yutLZUx@Xp@g3+yOl2Q|`3K22t+KSI?qjrAFj9 z*7k2Rl)HSJ=oHc7b6I}?d`SG$x2=v*L?4r!AftQHl`5Nc zAALq!N6M2AS}_DCoR8ZS&@27$JlWy<-N)^azBkiIe?pxkwf)XD(31`6UeuLAM*LgR z^e|Mv-y7vMv~Zx&BT9vU%gBHBc&lzN52s^CVv?z5+UlbC0e7r!aL+AxQOE}%E(XpK zgSAIf^hmVtZLM`QyG_Jm?;^eNkHB}&YEM7@St$zw3UDI!$Tj6PuBQi&-P{B9l>=UL z=-D*m=Y>E0QoeZKQT}Y-_Z|{HoG~YG9|8jHv z(p5uLr+u^Y%{N(cF>mvP^^ADkj|V#)bLcq3GSRL^<;j99)^mS$Y7s)laSFST(&w{- zOeXYJexY9JtOHpVnm{F=ZXb;J2($+v#{I65;RpD!u)IeykVs->oCsDN3P0>bV>h=34iddNk2Aq-0PcsbJl{o264NFf zQ;hW@LPt&O;~R$xRE=KlW@eo!)+oyqO;jv@C>0TQBcC?9rH?0$8>?PnLEQXyOh=h@ z+o<_SoYR%7U%jnRo>H4~a+1wb7NT6`D|3lsae4_H=rfBlw?CMA0_NLTKday7*SXw(Xp`*e#i~l#D!%|fVvFxx) z#2Sr?m(^%Ic-(G)?#1=~lm8j^UbifAJ>GuSR2?Zjm9tdM6etr zP~%Q@b}pD1(b)NQo2NJgGnIJ;>xX-bD%3wsoEjb!z#(x%^ayNbBWe7Fq-ZvZ|LvB{gg_{(;l3Dlyvk&xEk53S8#b)WwO>`LHWc0K0T z{$ut5Fe4H9uNS>|Y%-dNS1IPR#kU_%SJX@cS*6DJUF9@I6y*eZcn>%PuB4a#*e^0?wckS8y9BkU%I?^>q66ISwaeDSXO5Awr@esQ{ z>;5ZRy$pPBYbcZx|4@oz<$dXnlk-hymruQFbDm85`p?LXy18GE-vc&|F0AD8EQl

r>_0HVlUXC$+9KujYVqIl0q@ zXhY-m5&27LLbdyzG8;=95f`$eF?(xFyPi3u?wV-p?F39bEJy4{!Dx8-Xc(M|aRcK6 z+yZ;v3XJI=dq2?cKh(QAy(WNOZm899)gE6N!iY3k?YOs%*-WKf6@Am>>+cIZ>*=w0 zSX|l{Vqmq$cT^Y5fVc0}&GrKOuKC+KBO@0*Ml)>$-B3+m2>Xc(Bzt!Fzom(9mkgqp z;{bmQadZd>Qd{i^H*J|Tlf#vz@;w5hEuj))!uFB94&^t+zLNvG$~EIx_TB&Z1tADelXB; z=|DxVn6P_4&ZwVg3NJJi$kA{Ay4mf&+vU z|4jd_Qj=@)Y+3GX5x-n4D{-XAIHvWq*n5iixuh6Xnl{!8n%P#ReX!|D8&r1G_x$89 z|4D}mOyIgyQ=^vN$}x(@bit)IqPS^-CNprZf(tN0_4kfCZB>@c_Kt&7uozmOQ>tWhua725} zteWj(ucKiM4tU^;eNXOOXhpNMOf^CL+S~7PcVuY~OlJ8pnxB0qN-I>N$AF&pVuC-y zmxEiNNlj2eLzv{hNhRE)hsYLR&bI?re$B|LSTHIU!b;@kv~D{lAqvO+VW3!7()KP z$U(LWR4jNH`JYyUfqNL}cLUxHk$#z!5o+<5y#t|i7*TpC9IU9o3rq@8lhWyOi3KvZAH2Klg5drf^s-svQ8$tmfS(?VsS`l zGmwHEOXf-Ay84$E+MrY&SqzP|dL-F8nm+6t?GgytQ&CTF~a17}e2Z z^4J4PGU0C{%whnrR4y8{fYtJ7R=h|vERup>(j*B7(R7JXJ1x}*+6Zp<>YVHfOa88e z;m&%bO%sT%YWnWj;RjQkn^=5<`l@#_{3R?LP7O#7r;2G#4$(s^CZd2P17ukNTzJ($ zWJ+`zME7+}OG1jwKs1K_Oly}`Y{d&YElcuVvy||7ATNxb0TinJ6ueskQo^E9W@h;v z`Xq;rjTZ}+!xN&zoq)V12Sa#~V-Oe?%!;(`+lOZzCz5r)CBPP5u5)ReJ9RsZ2U7Gt zzTf`VSiF0p$$O<2AInAkIS(`{6+FfBrSRit?n1-aU(OVkrrIcOC*OBXV;ROm@XVam zLDGpAC~WhD4z&k+Gq;d#Y2DMD-O=+Oyz2z6$g2r|C~GrTGC(P|b9fIrz0kadB`{Os)DlEh@jy>G??Ra%YS8 zL*6mP#5hGxAEH<1Q+ zS6joLgbwyZSMTY#ZrcoDd#jO+xh{t^pp6aKu%DLLg}0;M!#z)fZP;soCWTOB+~Ll_ z-BIw`{*GuJYqhm?*srQ$Kij7|E-dB7c!#5-n&Ums)#$zP(RQK|<5b?Z}K&(taBmKegP-ai^}q+?KbT zGSGL%u4EuTXN^J3fMz)^ty9;oN3|J|rQqJLhLLiYmLWP?EDRrFQks@Ra#;q@mF4 zUa}6gtIneoEY$L3$CmD#H1vB&ZL|8gJ(bm#ZKPZU0(=D1cc_eW#(TC)W_{DVfpSFL zi!n7}2uG1fbKg4HRy{(G$KqDh)Zm2wjp!$#Fsq2Z{o}GjjjHV(@bYvEh^d_MK}*&asAO&gSc zf#bG54fuhHpE&BmJ6jJJx7{xH=OrW*4b`VM=e8|Yb4L$69CKzweR2ZVcaOWqX?fQA zT(bmh>P_e7XDqiCj7A})q*Pz;6hQm?xx`a=#cnLOI_h4ISv<1?pXwD$+d|hFtZJpN zHjM*y8uoX+>kEvJ=>v}qdyE1O1$<^auI#h?@>^1zZN7dhykhU!9;n~S z@HX!deBmurk+;7vndoG9A%2iAGBQbHWi>K=?>{Vv=<&-uTwv;h=Lg_TSjk?G_@Yy( zmuHe&kkJ6;V{LVnq{Hdyh+^m|cw>Ob4YTNh5GZmG48sefiKdRX7(`;_#4UPtlI?dW0ajZZp3!JVhoP9i$D4`$_=L6ESQb{oLA` zvGLN~lY&oE6&}@DKES(pJm9Y%eZpH8&>>P??{Fg^`XkUku#bC2ZJBZR zwZitbi)&VIUPt2|>uuluB;&}Y(nxOxH7*Ssbz}_WN-w6Sjxl3IQ094F?^OP_$Mm6J z&xm^>b$~lwp=l@sY{pZFld9M7D5v!s`vtetv`Ev~R%RCet=hDzez}94etRxxnd96B zRRLLt)~bu|bJ96v`Nk7aJ$4&g5(-}Nl(>6$II20Yk==CkyVzp~Zq!?nIZO2RRn0g8 zx0i0$kMaqwEN4eN89HeUj@ut9L~529yV5eE_G2ck3sXAe$9 zFb@wID-d~s#%VNDx41y(_J!l(ctB3udCC6n}3F zZJ0cKxV~!NF)S?Ya*(q4Ar=%F5>!{1{>e;?Evi4f_8!iBDNj4**sNe6#K#kxqsq@lI!1UF zly&XWa2*2#V<*q81DvUOt;=lLGd9$i99`+#(_$H6x{LXixvHQ~65LDc7f;I3^boZt zrG~%YikG|Nnj7?^BGU0T(+{SnM<}f&RzDOYu~H6ElSZua0yfR&=&QFCa&6zO2gTt; zF-4uUp}#O?@|+o!^{L|so?{fF=714OsEN9|Oh_~g-U=b8VZ&>CP6Lb8o|7@t8(nWU z)aS0p{3<{<$`$*0!G*tEhRz5Ur!U*cC|g#o-^_W|Mn&YEeSl4)OCE2o>)gz(gsP?i z5;xZn2&b0m6S6s*IS()JjWVc2=q4J5W=@P1H#gSd!{xZyYS}G_1Tz?AWsAqg{=J0D zA8j+;i0f=DH*R3(vf|VJ79pzsd%P4Y58IO}SkOkTJG2mxn|aEPMDs5gzgM>Ako`M!z4f3iiVa zmxWo8>FHsIOGl7v>GSD7?f9EZz_C?r;6|8?S-6%t4J=wxMNIAA<< zY${b?aZ!A6)b9_M?-VE9$uM#MC_cWcOlfOZ()uv}kN(e#+kZ*nedk+o@3JEOcQo(L zf*Nc{&oe&U9i+zeX&u{R32n+B#MHM%{d3=TdWq+DXkXXainNvc8~BYSFkBGe78oR_ zAp4?JySQ8#kIql&WoYIkIICzZGtMsDymMu#>)TDp%TP8pvt1`?%pqlsK%L6i_X&zV z3CQ^PF>`FZ)d<`IE~vB75N#YeSJQ=H_ffyeWSn$ZC$7&y;dq9i5?wBj2>rSD+C04})ujjM6`x_GvqQ?B6RmVwu@ z#_;an)~@wnpt-E)`HOx%8JpMF1^euJ$hSt(PT|@w8c%`N?~b>M-)>gRHF$q-@W5b4 zi(v7nn?D!DP~T{7Ho=tqL=m^SyoN~eK8iO~8NzGZEiwG(A6oNe+{RJG3H>yu$9JO% zJ-tOflalcBP-VoS!$ZdB*wSP?#n)Ikds-%0JdD%K%Rb?%e0<6cLm7MS{x6O6s3)aZ zYr^}$2op=r=dFs?Jw|Bk*jl+}7-*FPN9^U#GJ}k^cG|i(|BVk1;zCBvi3t-LH>ZMQ8t%We%T{M=?+R4f)bFD_p2+bt! ze7>lu|Kn%X?dgts5+}tT9>$Zo(2TlBYX_qJ2thx%P2nO8;ElxwKXXEpbaN_}W(cmQ zdl}tDbtp^)0oQ+2V45vzg}VVV?VhMOkxt^t1Xh*gR>|r|k+v{Kb$Jq2*Q71Y zj+TX9v@zwia+8f3BvG8iB4hE|_l4G`CQB$+M-Up%)4h}z?XG8tD#7aDW z`K=PB9+I|Hq-Yf8%FI|hxB8xFtWWWEV`|A8k&#jdU(d&#{N>0qshHBmPqoMtb-q2Y z6u`WP>Ni=^P=0&qc)ANlX`x~olar(TFrJ-OrNod?TMQ_bA)=e;ATV-lT{8$I#jFt+ z5|ToXhNktjgi?^*>(`Qz>q^G~pn%3?G#DEdy7>WyJ&jTvl|?*0xj8vpMkWjhtV)Ta z(#Jz0l|fj#y6AxD0U18H{C*Y6l?u*-hxW!zS678szoryhwiXd;*re4y{^aA(DmBo4 za#T!&G^R^av0_D&)pMsQC}VRB3*!~TJgL-E2=QXjrCW8O@>o>_iwHs> zAr=`oHMy#^YzlC;DivBVi=}`f!~>IQW8m;s>4sA)k(-6EQxSuovp#7cs)nPL&?QF? z5}3`)r#?+#9%*GRT2_5Cv>RNx`Ir2A{)^-4YwfCZ8ol7q@A9uw4Yqzp zeTZ#zJYO03sqp#KM5K!TzD$GWOR0qDVMhIjH4g?nfD;@GiAQrkmw~$Ppv=|$M%T0a zI5)iPiqDL0prs28?lb;p<~H;4BxsE|bf5%_Q$RN{**b!gzKIy0QWqi=+th6fbRe)# zYCl`_Qa`$~Fv&HXzB3$&DKu>SSpcq5ryB#_reUHVrt4Bw%&9UGfV3b zMm9T$rm_cIx0yU5qA1}8;#;F1&?W#VOU#r?oXLMO$ii%@*p{S2zTgH+>Iua!5o=0g zkA4uzZM423T(gO!`$j7=oV&SIA;zI*nZ5z|G({m8v4#!AKIrN0rCD{T)#r;ZP64C` zIJ%j4l7siH3{rGsNLevy9G$g+h&l`QTIiH1W%7~n{2|NA_4ewA$#-X_kJVCl-apSDgn ztUbggc08e0s$gwt2bk(WPZj`r5()g;ay~Z@%~2jh+2;QOAy7*K=8+xWk$)@W0tme- zOcx7gMCLkuHp#4}c@x-n5NP_XQ$JqRA-6MD)H3wUnwTb`U%?J!KNL5r1~oIt1&_z-Wi>uYuL^f8h7_9S}pl=I+5&Skp?KoJ1b|ryPb>KKD0G3glx<2WwEEVXm1H)eOX_@8riqFTYotUa};*aEJ1BFZm` znIvU>dKMP5kpsHnk{RhcF-e#kd6|?%ajAx#5mdS!a5=(1Q5x>RA^J1vP1Fr?s(C=!?SS5k%) z7^)@t_pi?NGHRS`t|SI?)UIhZu13uol3fwd?<%<_O=#>3*x!i7hb2f?5)&bOg(rGLWxJ@w0eXPARH<;_$)ow@6G z%Z#g}!ADBME}9=g_|>n!4a=Xk1gJ9{R|S=fSbi|(y3E?l1AevD;5MuFo9V8qGC5vA z2wNkDo10(>5pqt2-?7qAI9&&2QH(^s-Poh=aqL-nmD!apx+iGk!s@s34n(MA&dhx+ zZE^I&NG68diiT*rw#4QCXm0U81bJ!Q6^s;P-O}ka(c^wBe%IrY^!fg^z@F{T$Nr&a z3?q_6(&eyT_ztGeba2U6^Y^I6LXm_`MD78RcTnEkP}9rc@kg@Vv#A{+)@KWZf?qk7 zsRJXU2WW%cAy_YS_UUABrKHP6dWoDA<>^3x0 zxAGRY5R_x*n!~~5uVe|#*p5y}m!#$%85&ejKDtC5FBU>MKi@>d!PB~`H8H=g{vI42 zn%>R_o;NBG5D?;%Q^hJ{$6?0-tFaNu@>Ke4Pu_EM3P_^CS3l~cJ2x6`~{hFCzDF;`pKzT*GxdA20NajS*0|z&EVSYLR?q@M|&s$~fI0mg>yUJ+f z4*fjPpzP}!wB0k0ovvfxzLsJ9B;;KlWkQ-sR{U?ak5*02onE#+TvLmom= z-4|_k1gY$&D3~1im{MWJnsAX+2nNv?ujnj z;xbr~I^vtu@E*hu3)Th3e=l2HpvhO6U;g>*u4h-!m<$ucRuFSF^7z*hOuAHn|LUF$ zAn<{KW5oQfocJ2UjZ#hlWgy$b~FNIzIK5;g50 z@gc?l_-e0%RCs&TX$vNskX##4M+owJprhCTC8^P!@?-guWeMO<0V?bzZA?;$4dwG? z2zx^ber39;caa4bEjR;;vsag!_*h^!fb!{UGgFd&i_L2X8EMGb>nK$L0F zAS2OFWPRXfj8ZDCSRfRxi%7)?*Dr>Qz${Yqpa{4gxaO%c7SfGC=%uDsb8$cU^~%a> zYHC{3GyZFOdYsq(PinJ@O8ZiKecO{hsVX}H;Y9aTI}q_y(fmKPPkVS}Wdyq0E{aA1kXh|{d#ohp5IH4@q*Pe`_f+HY=EaD7|d zra^hmu!e!*Dj=V*P4En^G3!1Rf(KU7pk#VJ;uVp_+GtcG&c##H0 zPA3fx_7*TtbHssUzs6t|+m)8K5KJ9Ks+GkzI?6;DYTN&PrAmUHd%2p?dyb2|ZuoJO ze{)A?ebV)w&3M-{1;9ImLzHG-FEb;eF0HN?3%-9J)1q;ys>vt-ZK@fZCk8!P8z)A9?L4QqX&Pyw8Gy_0!O&%fmk<#1W z6W0y?y8mjc{w@9L1u1i;FstLIjh}DDvx+1N?0XE&!>f1*FnHS^h(a{fs%v>a;Va5LmD zu!Wz)6!G%1fw} zf2|`t$f8y#)?(EB{Va`+FWpGq9Nur*oht*dH;du`voHvzpnd9c2zy0K$5^2k3i*U^ zK;cr+n-m=NMeAjjJp7zdsM}j*My+Dn;&7CC)jcb@n(Q)Ljc|x0G@&`JcBWesVno5{YN_YfY@2b3 zXFxS-(0u z7zF~^e^DL^IB5$<{3zU=?HA?9TyW+|38hhz|M;n@uEp#v>X1VZ)g;ZjMFLa1ZXlE< zh~=*7NiNLv(AklHefg$y#f(oXUO-EP$l_830M%*W0Ne zRfUqwT0&YDFQ;c6^!3=>pHOOE3&LqKCgO72Gfi~pE51Q*phz#FhC8yIjqTgL)n$<2 zKSDIE5yd)@551*l6)uk?5Bc_uUJ7%El*jjNWe^0pG?nUxk=+7G1Ac6FroTi<2 zHsjJwHEeI8a289X#N4=!E9;EebSn6T>s>+%-Ioo5*3GzMDJ_1jPXQl&TWg z1cV_90CVcswt@(i%f<%uc@c<9J7d^);vU<>gF+Uz5MRm91~PmP)N*?-c7pD=@mE>B zFvlM*->b}+O%5qAV%_todFsOfH4v0 zf(lZf?*8}8HkuHBvSb2BF=tnb?EH4V(tWh9yyNVXW(%IPVD8%6X+PTS+@A)+9&h7M zO1<8fa)LeW$=~#bAFpfqd%Qh#5bP2?ic`^1<}36CdAO%at@PVl)%~9F4{FRk#yX40 zW1v!)q|LMW#<)1^1pTWW>>>RV{H1?yUym9X8nSjvsYHld{864Z^RVt6$B$_i4|z#u z$9!?C={`BDb=2EZ9fe_{djagz*cwqXfJse>#z=bx2F2!q5Jw$2#`nOWf&M;zInsdC zLSJG{QhlZH>+URnd#~4GmqvAOH_xHRM^=vumwp)Km?MwOOL^+>C3hU&N6afb)=zYu5!1W`;h z^t{!16{#>zyKF*T))>x3GU<+RBd4t#OUWL>T$n*i$Hcv=FuvBN%=to)7*lmiB26VO zO^+$Kgn8>o>&iOunsc}I$E$#w=NDTHzvKN~Ud3RIq-s%{)eQZ{fYiPlDG>9VcdQgT zU&ae*Cgji%Dh)Z4s~NmbXXX9U70s+4uv@c719hv}6x0;-c$i_ntED+-HSn}Dtn_Np z%{NoO7gYkJpvZR(H;F=c;{?eu827#0O_6Ew)qzxgHZD~BU*3vBYQuJg#p>tzp1(zR z)jl!7<3Q_n+iOyDve-D)qR{&o=i-SNvzgtBFqU9l;lj)$>)vMeuM|^v&&zK-P~Sk8 zFG~&Yb>K(T-&C=D<~v3cm+1YJeWUu9{MtOg)Kds^WK(X1^pT1sPO8Yy0~cACFCvwz z;0w93eHQ!dQjCTOj;^9r*4hk-u&cJ0e$GzDkwFa)jfp6$F;p>B0aZg{AS(QZ`i8pg z3HHw1)hZf_2^--IYrY5mqq=pADt$ceecG7mMwHYkR<~sBd{+Sh8}|9%Ak_tzS|lgu zcz~Z+O+U=_-_svu;ve(B(qQ}f6icu4x1(#tleh~NE;z)@smGiaEIdQ$QgjZ&7uvjx z93{`>PCb*kK@RAXHDK>Zgx06|2vKOJp`Hbdq0esN${KYFP3&p7F1 z(2d_?U+CRB-VVBIO5J za>)~PBo0mgKTSS9HExn7f5OA9VhNvKii`hKHo-vJ%2V-mPl#Bh5gE+4&0JBb6u81h zByPz!;0aRVa1r)XX46khnx81Y!e6v~{bbTMNfREQN|9ctvignh`>&v$d;&GxxQp$* z;@8eD4U$5feFbgiodxk)-yMd9bi%)2ooCl>7>O>=G;~i^P~Z%Qmcmf#ko%c1MVvDO zk+%K43!l$nyf(hthrH&Pc;a}ApH-}6#L(>4c{)Z3+Gu%+T!k=a*Sp>;=$hp>hS(hH_bFATajL_Ut}aA);f z@zbp9=21*llImWrwuD7Goil|5*~!~#711Ga3Yii(Hj1oSsIujK02o$hWKEM9cOSI2 z$JD+Pjz6XhENOT7ClDeDet($3z4`m@G}!$Q=^Sm`*B4*CMz{H2I;wLDjXcF?Dz%R8 zaI$>8$Y>C8%(qhKw(MzPoO0EBXciTs(6(CI>PpHT;8|Qf-XF2eiM~~fS0*n{Mj z7aEZ*RuWm)tk>c=Shy24+x*&fR<1Oc`eHDSZ@891;02f-@4ocY=MF6$vsRgWx>Es7)CpIV#3pL<<@5y7#c%3GFbZFM;uCEeJ z4K-vPCVV}tTt^qHX5p}(0M&bgvzJeETgr-`X!~+Z^znU8eAHv#c5tv0Q_kI#N@%&; z*YZImpROS8iXA>s>}?=d%*^>!j}Ut|xu}TdvgZR+ewKnOJQrku8-s(477tPDkio*B zvHO)B$gLHK4&;l&Jx0!RSV^e>{$P_)gs7@D+b0=1(fj=-m5+FSF)S}b_@RUpAHYcR&3IK1&B=b-Sq+<=y5CVuIEz)>Z*HV!|OV}M9`h^nV0 zo@;+h&1RLsj|{xjPVQyLbOg{~p(mOoF1E)r(QnMo9v`X}W7T^BW`fEFgyPR}@TMv7 zBoi)i1=+ozB`2Fr*t1VsD#hZN@h#RR8RS|2>}MVW&~X*@`ui)Cu`6m(5EHFLJo#WJWh-tCC#gLrCTKt@2-; zw;hGg@-yo*0hHszX?wx|NnD=BUuyX_FqOPj2EQYtFG7@R0ipCj)S^5@K~|0oV>mf? zyj)3TF-b3b%1^dO+QJ_63FU1SdSU*YRX8JDIL(PQ9$-Hk!rVMFG004h=dDLUNUe-^ z6so{fw!o2pkPpfS4$`M@;13C2!|;j`(#a%BWW-Aa^`~QQA+Iyh?oGBtLmCTkBjud- z!XsTqIB8N}uJGkcxJ10{9HbUCe`&MrZ72{)%`q=+AXG8kY-1VeX)6~eDyI}}!DyAM zT!BrYJcK`?1m#P<%9*s6!HI68*3K)^Q^sh{}LcpH%=Bl5AcsQeu`5e`pfzvYS!mqsT>XOS5#| zeiST*Q-Rt-2?qdWEw>6?3SAYWQMD^KQzENNQ>!B}-~;g?#gu^9N)Q1jao!oHRIUjE zHS?EVPM&Kc)bdSOf)En73WAhWSSlMx4&?*mlg^_jC%2zbUJkJi7)@rr!53Tx&pKyz*7QpE=Py3qtLk80T;+V%oInr=3vtz zo##COrO@_&u4Xa! zxarx=D)pD zN`&~MQ?b=kONB}uF;UOD6~hXXDuve99VP#oJx+r*5PBMVFH$ zgXEof(Z+&*>s#?l|4dE|`_l@JfTm+K*wJ$`iyEpD@Nm0 zGnLXSJ)3RcJFD~g&JC+Elit7jR8Ju)wf~2_G$XxrR_wQ>>ze-*QY=4uy^2|Sx*2)IhusoVa(wRrnd?1Xsq#Na= z>*?uPZc1=8TyCowrKKC?i`U@u@$o5q9Br$2G+eU$Unp#W$z_t~l%DzhO4m3Wed^O+ zoNnyupNnVVA5#wH(&hvhGUD9b2&PHwP3`w3jDB0LH=i3b^?XTWuQqGLors^QZgH@- z{4m2EHF@Ayw?nV;C17(%sBYio__#A%$GdK|tInwH8UKc1SYBV9UgCQsZjyY&Xh+4; z6hYgIoN^RD&d_=ZRdG;Dyy@D8!~go((M|x-iF5nLQ-pa_#8VF}DW3w$>yr2jCM^GJ z{eNIcO-*Or$;%nf{AJ$GC!mG!#c&(7+f@P$sC{dcR@&i>D@G$r%=%D;Ebmj9X7T~%>4 z5F$2WRsT0W&5_*<)__hu|8c>)FqJFJ3MNn(Bo2S~5=)ty0*`rBg&DUvt7Thj@2YG)G+7q!YU3N3RFl7U4objjw}N30v` z!TEbvwyR&yu3hT?y^;I%e*kJgmA{pF$&8)H)uQE&e&rqj;2ryIygM4ae_#8sucMSc zILG(9A^$dhuU`M%&%|!)&vx}Ue=!#%_Fv%9SYU0{s+#?synD)qmwrFGY%=WEWWKoP z`u!i^xA{Aq?+8}tRe!Kvx-nPyt`_||GXw1X6Z(IrqpqAB+Z91YM2F_3f+CT85Uh>e ze~7~mhPL5bWjSrLGP!7_Und-=LE3)|tj^I`Mb6GBv;9)4a2TtB`Tz=Z37 zanQY#Bmwi0{a@IinmQwGE0)-*1u5)h0Y9y9&5=~mnrS$(CJ06{UFS0JfhePxGC+ba zFBJ%yAp#N*4HP92&I)Aej55lNII6@4& zG*ioe<$oh?A58p}^LBho@VAwiXB{WXW(n9`l3Jx(N0TW(K08(ob@Pk}qfEOt^EeBK zo3Q$mc#y0a<{T_Dw>4ZX}f&(27<9#e#%bB3pLKAu*6eWUUfbq!a~$BvLlaLlPK@?v^Ns zqK#tM)~rmnC1_vs!2dl706(~sujGDIpP;%Q!1_I+)9Y1@{ZISfy~(o|Tdjp`PgA(pROZ|zf36Nf!ChWz&Jo^Annya z)K@5u_%5zA4d5C?WCvYzu(fuSHMxrmhz+m9X-4OYhRP4J$V>t-C1Yivjm-~DqyQN9 z|BuIj)MnIR%X4yhz|Ny>$64Ho7+)>81iz3&9ud1I3cZg*9R3*`_?X{*TLI0r)0R97 zw`hJCRC639|8-yV6v%pLoM*!J>KwgnT|^V|XBi)M@0tgFDE9CT>}L1L?g8+C~pAtV_+s%A}Fw zTUv_*NEHXRx?XjB_}>A_W^dTSju~ILUGhB#HxDtw#@jHee$UUshiT9ek|4Or3)B8Y zH6{>P)sXvg*rxkaCjF1Es_+KfyY*dYF`mt># zZ>MXa(|Tlq3fwxDo~z@Tgj6GV91TYMaWl4ek~vDa8wq}!LJEBC>+@Y;O6YI69XMLt ztMtPL5OBEb3&~VcygTz3&Ny#OwtRv0XapRZaN*Ex58^<4PFwTF0^e3wzV3M02Ut3c zcsIk7rBPHUYsp+66J@CfdEzQoT70tkf~>MtsAO#d06YYtd29y(DW_w~GnI4T7z>QA zbsWG6&qAq9|p!}P`aS?v2~-0qs+BWZwB zMYNJBs%#W!kjrJX+ikYnZMMMyw8(8X+f25ZZMNHOw%cvC+ikYnZMN8Lw%cu%+DRtc zZ8F(yGTLpnm#35g$5iaRa^N)e=?mqhDI4VDRu`*)2rP)3Qua^}G{*-^tSDg|j{C%d zl!6pimJ^f!`?%aG9mvS##+yb0X9-+#=~Q5u_N zoG3`zp93%^M&pw->(#nMb>v&=X2C|s#SsRm6Og8%>5y&P zEuLF+p*xI?Zbv22bO)bqB)e&o3~jQ>c4RuZ<7uMPZ@BrED*&@>Exe1BDtsY9@0J~H z@cVCU*<0h3TeQynmFEp5DBU=LC?SE|smBf&K;ai5`~!?e?|kNCA(9rk5<$H`Lm)#i zrvKfy-c0e`DQakBWe)r#|HF_wEq~@@@Qpr}GAbt!6 z0=K&ARP{bt)_`8;s~dxooAM3PhiTJu0Q7J=I2^WxXwOb=_5+5XmAVJZrl&9y94d&&OqK^(;2mKn)D**3jJ2ZdO!gzCaMeJyV-C6~c z(GU!aKmd^~da=pVJAttu@nZ94UzJ=blMku2hm8j;xz zxec#69;nM?z~#<+>eYv-kSMf7PPM|O^D3V}9x#9-PnGfn?YCPUctOOxXTw=)2oXdz zA`=l6=DFbw`nzy1K3M|D9O(^2kp)2eKJe^RD(u?KEkW?NJ7J&gs0LQU_;|LqR{3ao zbMa-pCh&v}p?AXrxfuL@wVkilRPSXVn)UWpOP0&BI_P`Kxt^2;z;;4T!GGTH#Cf%g zubj*RATng-iE&*#JSvE*W$Ru&AEak_fzJ{Yjsuc51~tfT-NC75E4srpF6L^LfI#_C zkaamZvCXv$tC2R}p*|k*&l_0iQwNE6b!?3aGfFH5L1?Hq3w*IXt$OE+&q|qN)y{o; z>?Q^0@kiKXPaK}&z)JCR?i_@8ffK^;rPyEJlNb6MbjemBaSMU zo|qH_TvpCwJNO2Ab+R{#2RXyZgJythT(bF;L7BV_`DEb=`dhB*`t9z;0kllC9UvogvuC_b;v&bI_A=GTsh(v-tOS*tW zBNA9S9?lyauUvq5-y@A8Ldqfl%A}y+0D{;v|19qOq&PkutQj;$KQEm2LtJhEh!Fw@ z=M6n>O1v`!2rvm~YVDP1rmt8C0v9%u_)YpJN+tplupS2tu)5qxVerY{s@q-qR~&W^ z(@PiEjKG#g!n8ObJ3&=%Yf5=IV%Bq*SlB;6DRGJ=6okW~nFnHTNd@XI)*bbTBR>_&W zK}AgQ%PqFmN``YPG3ccpJ8m1U<%zpxYr`T|rzQ3QoW^a%V91gdcM#r0ey;T|2)SfI zaG>;Pmk7S8>fyR9M#uE?3ubu&xd21ySNp@1)Bfu_W%R2fo{m0Kc$kp+S^1*par1Rw+h z`*3i|1XkVv2b4Q=^F7_&-V5iqzZ?IfS^z(;Kmg(0;cWC41Q5BA-fHNJ4~ZY$f1HC7 z5rD})hC^Z`#(_hGW}Eu2eF*A!EmO!KEfbi zoT`R#7c&?bGc}_dix=9HOsc|Lfm83tYI?d8TZsukLKtrLv| zh51TQ*>eO*VZ#3ZX^Hcj1y7rAD>w^cbQM$b!o$whw4de283dh*3vw|LI1~^R0LaIE zb@+0#9EZZJA_fFoNRi(P$LP6O<;SbfZA>Uk$pGjeEFmvPmk#^yHyX$QLUSNIhY%}( ze6OpgZBlU%=L_rnpI9IyU)F1Y9+NE<0eJTde0?eX%4&H42t_Smj%pS_TW9d{Z7jDl z{XFmX=0=mYibJNc)!EbRYURtol1_gI&Kqs=pW9*BM(7LG@c9$cNZKmC=ytfnJ{Kvl zL?kKdf>Fp-0*WMi54FhlzjF@##@!)uMoVV&TZ%yWy0rh2BK$*M|1|FMj)Jc_K4#z6GaN7ZuVp09+{0&i5dA zKV@7+cFzMIhvjx!BU5Yw)+8>1#2Ls?5KzmoLe{gqAb)}=7hmYIUdyg{VaTR9%XKvi z(Bzyd1Qa!hf#VS(2D!Q^Kzdv&yd6`dAzA4l|#ZWEGp*^mYq@Y`KR zCa8rz9lD7A#33Mcbev!lAy4#VXvi|u;pBjUP<`ksxR1YdOyCj`RwgpL=n7(b&#T7c6a_&-5%X^)MvYV5O(?cmw0Gy8aO?D)#;@zsqW3kZvu+Tg zixdSKL_^I92*rd*#3ugEjQ5C`p5K63KgGMC+!eN@kdUKKW)BH_yKAS}+p;hcDnMe6 zMCk97=`D@2Lt3pW)?H+WN+{4DUBRnE3`kV~fDAV`yqGufbO1(OQ%9S-8vtJ>tqR7< z*N9E{%z6ZdLZnD=O&DMdizg6!jSCW?q*Dp^UJ%5DiZ|LA!U%%|7_mTk4JF>rE3k8GF(Km-146)G}t)Orc5t{+~%K&FmFP^UOZhvWMHn#y}f zVd)cTWdk$*SxhaZz$}_UziU8{ z!HHHSRIn~dfhtDmW4I%t&rIX|=LpzJf|8UU4t6$VTgc%O5WfXOuid{_X3*pioa=xo zhqD&{7q#PMSZ+zpZAT;s*=O~j`m6-`$tVtA8-Hy+BE;%F+F71TF!P);{e51HLsQUb zA3}z2$~Jay+x2|A|679#^FQ8;WE4&>xKBm0d(=f;=mr6qg9cZ`2gH3t%XgK))7wt% z!R@opH92(3HTi(#e+T!+0Qo@yr0n7fj17?r#S~ZoAFK3z7vrIxuF5Bo?bnTfxLf9# zo!{4rzO7|+#X8}w7mlNjL+SG6N1?|G?31BVm;K0*>;^qdCo2e@gMr4X1tk;cv7L>u z+u_;tes;rdC)MA-tcg@qcA0ROg+M~wsN72XKFs%ypIJBc3BoiS$Mm46&EM6JTKJ$T z#S?fus<~hF5qOKdffT~;KE>35ylhhv>fZz7#(4Z^3D-hwtNquzG4nl)>XHPGxoWs8 zY+L;7tO@8pN=`(=E@B_g zEdGzOxU})!D{i7m@viCet%Hh9$JE7jB`E`ks9g~injk`nJs+xp+ z(L~2FdOqTmkT@iVQJznyx7V0_VQYYJGXv#106YG~{zly3xPp=qm%XI5f<5?Rp3BubjZF$vgnN{SstBs49V~;NLypj?`@h~(x1Fs#Ljfs*+J}%0H5ZTWxnc|9Q8s0?`K#RtT&0LhQ+j;7?RN^p0IR~?b*9&hg!}go z(+nb_oLCHC`MJ%q8r~YcY+Y{5emc*0;E0RrPHU$>DU=YPQVT>nYr5VRdjT(UpY<|avy zAa_uN{LB!z8GtP$6jq35V0?VP$5L~f3ZPsKFkWUYG{3IkX}s*&VMGsc6m1R`@dNm` zIF-*)pKZQ_q^v%mNuVTxMWnbp!NnbKXfg2uvj<8;mcvNp;@cw<-4P7pUoh`y#QVn& z-Ek@drkB3(YxDq^V!{O}v;z1UnV12lU<1pA$YWFG80jDB-Seuyue_Lie-`821^x1H z_?RxG4>2i?LaKs{z`F71F^T3oWfC@?30YK7sqow>zI}(`5jdZW4XCS-UA}>&oVovft;o#(vD_I&)3l5ZhG|0ONU-M$_qj zcS9m8A*O!w5KJ7Umdesnw7uG^&WTegVzpBl3Wn~cMFC2AQmDC6N?qAjK} z^f<^awM34vq6y)FS4zCYVXK6b+WRAylHfgzpOQ{FNOOJ!_j?`Pg1SFRUYTRkkGW|# z^zdp1)5GVd*MsESpqP{3feZB-Nj<$ak>5N6ocoJECp@GgNimoSbU%yHDuGB~Q7Oh> zl?_kbeKhqC2PqI#ff}Og)wJ!GnpVxI-VfAj51T^t9IM~e_8y&lRO>o237xZHp#UfJ z9@^W?lP!~F-Zl^VS=f9!I^-_^|Ls8Vw#aK&SfYN0bwR61scN%z&dIN213_g z7$3U?U^>o}KaZO<7w6U4k-|=opAISB7<)Hi=$B0-h-F}8^J*@=$uX9f-=HOrDQ1?Pyuw)!=gFB#>kopn>I;?aN>sZ=h{KBR!?w$HptMJ-wX2&eZzgn1{*sUaFlgsD+2 zM6&@PR8g;_qLE?aGLD(xfzBvm`qR4AI}I>q-x6c9o_uzAkAc)ZzMU+ylnr-MaNq)e zQoS4-uJ@AtYWZ$srC9 zgiwNngAgMb1VsRXLM_`=3sjxS+2nEA#nDJTY1#yRlcoO8S9B}@T?-TTZ5uh<-gfdY zd*W2io}X|R!?=()`L`LZffn9>e~K#)GTd$xUVLIm1vnrzRpcN@7CHLp)L(&W{lyR)cz zr*EEwvVjvaB|?Pm>8A`0ziGI(hJlj2=${_rkH|SGU|0m$q4#XiFi=3t1M9JKtn5y@ z&w0UISEDyCPjS~EFaQ`ah`YiO@i>5rCzUJlQ?cE`Lr2|72~|^$_+p=x0%8w)r}A-l zq^F!j-Re%6_z4t)7BEB<0R$ETqA*|x!bC(-AjlC2k_aO@oR1!F;llpCdb&+i9I|xI z9m9iUn~DnI1r(c29B8BZWK!e_Us?cXd+Dv7+^{QtKNTGjhvahjm_K)`o;Ff#kT z(B5_vq8fDS(mrSz0Po~;BXp{2iUcGKv|eRZyi_MWn&h_KZ)wjSln<^FAJ7Xi zqM*QlLE#g<5eE>6#E6jeb|tL9gkb@KePLo^2+T4D(y(L@huiR@swZM|&!DubYO2%2 zU+IoU1_v3_W1`O-Tc178M~4Z5V#@4;=?;d;Wreqh>ODVfmGjwPEpO zW6?=fbl2$sXtO36Vdg4{P;`*)6ZXz$MJp5 zl|{dryt0cMtgY>MjeBQ~+}7B>5HXglEU9RPEmuy!zsp-k()okrg)kwc0t8Ql8dbt+ zk0jj<=y(B=m|2jF6%s*3iY%CSDn@@dxPk5CQa!%!!O%@2k3vF{c1#6Gg2~$w0RB~Q zzm&uRn=mKk)|$-_)fpN6-p&U0;qxCbN`YVr4xpeB@&#YWgt%_QDAX|&M!bIT3>V?p zOniACb}FA{2z`F=<{B`N0zi^P(}u#sw!1$I-NMO0fPoPU41}eW1%NN#_=5bfX+-~Z zG_Ej3;;=fahZ{-P)!n%LmNI@9s^*_P@axA}@G?>aks^U4_bHL6+gVlvym!QZFYV*x z3w-(NquI+Vj-!$B$wmU(tu| z#r67sy8Qh|_UW(n)3OpJJibYy$4aT(L<|`O83Ef5YI{c}50W(fACP{23+W4&4v?%E zNgxs-TxkSH@eN2{TB1^@)VW%gGas0gcK PFsL?d^_qNGM@ONAE5wxxPo3FWzF~* zk(9gO9MyYotp5h+a31NN6Kx($ysXR<<%o1L5x^w-lX%;V99w+of@qqg0^mxV#csgX z2+SbN(3YBvRZyxKmvvP?MLi7ziHEPe_1i_z9MIW@;i_wzc81Q_?`9R{=Zc@VzF^29 z^BiV?>W&RqroHgSSTsvySBBMU#%Aeh&vyXG(n?PNEeUWyVY;BW4yccFG_KGnfRf$J zhLLfbN3mI?;QhY3-uDa0yL@=voweOjP>{B)Ruv&LfFaZDu3UR@yNcduFxV#siVr5i z@)lI`&*|;sx1fPACF66W+7N0HI>E|7ngX{lDXhS)>dXv%v z5$!^tO*J4aw)>K42(l7knU9q?;9A?I?R2N)1BU(iJ9hJ;DdU2qY}hfvw~@h>mtDFW zq3Sv-l5W(XTolM;a^8TI4)8z2G&;Whm)8T9a$2DyBPR1z zemlPdO#9Dg$q$|1N`LIZ^>@+qpE6t8*jm1P4{jZ{t3CXTW(9wnyO?S7`#t_M4{j1% z={^$se<>k1Tj8!FiF4;22?g7AsRK!E(WHWuAVspFhs^2?m^uhcq z)QIrQDK3%>sl__!go`13z&++Kn<>5 zZLo@*Y>q6265TR#n6}#VR)elwpR)F;*IQ>P%sQ4`H!Cq-k4E~kc$}Kjt=8$tfG7)r zfC&UQGX_utDJD4GP|(1b#HmC39O4a}M`;B@M3aY~!ma~>Asr0Lu`>Z4t;$#N_P@%1 zSpW(ChEgGB0>J_wt2KE&wYQg}delO$m)4*|_Mxr7fc6disUO?`NMr@pLV@c&3v>|v z_di?Yr zu9T+Wm;jOhouXesSYx$8lp zE*x~wHz(fib1!54mt~!%y}iXuL85I88|UNWe-<0LJXg$Ya?bXHx$n~62tGK5$hx7F z1BABDJHX0>OhHr5c)lv^@9E%d9vjWrr((<(@dLlNEA0Rf1njw-kIpY1<7=Ys;X14} z)f%!vnSq$kXT&@p*T*<^7nzxnfMzcsMSi7A;@VbIvp+G%r=uPle&3472uTQ%D#2M0 z8Uu7UMdI6_H`v~i7~6?i(utA=3qzN7nWj&Ns~WD6e@d%lgeIjeu~+u5)xh%kZGG?% z?GuqIPeF%jfpszpZEfF%C&i8D1YKWOf6#VzVLflbg!3IS?LJex@7JrBRV5or6{rLp zof{!=PvofqTM-ioBpf+(bmiRFtI_ZHykC2hKK{#cygK_GmJR>_42;Wz9aQ7et-WUA zB6k?~=!u4%!F(cF07G!-ozKbGRmv%R1kw&ZR;8Y>P_ItgT}G%7V6}BWM1Q*kI2bb% z=ID=*|E}SI?cuL&eAsgw9eyfqT`;9&w*c6yy~R5t#vO=m6af_6GE5F-aT2}d7k)iQR> z@ZsVtm>j-6x61gRLp+s4yC;R-9o<)bji-qMAPSh8J-ZX#H8-Rf$g=8!VVC=WW#ndQ zCWc=##>B8}m=B)yShpDv^qhL$-?^t40&vh2^Nf}IW&rG#z{1;=Pi}Q8_Vw`b{5+Vc zhzEwAU(1iCDX%e#L_;QXl#8}V$423Wl5vynhJ>cl|1^E*0Ku$H7zjVOArg8CkW4!M zO)b<7pc>-sh^VUzlsNPAbzIL^$I^ZH2JGlOUT;VxpqiA&>1P1PVIP~@a&^(87ossZ zkmNO-A^j~myza!Zl`(~V9DDVi{pMDgp6y!Zv!e~7Dv1tL&-iN;%k#iT?jW5ocO7Y# z*_n%Qz3H^{__lOsxAyuot%tDC#1pzdtv6incpU)=$HT%cDau-=N|Ra_wp6GfU`5ct z7C=Bt?&<6CO`HDShuC*Mz=6X}=$C-Hq*e;RiMA+6C=ij2;!s5+44}|PKuqGSg47Xu zGNEi8l&1hK3TDF;+n8 ziV_uqAqelSW!e!fw5$;)-DEp3mSilJ*(?<7LMm@mNgaiNRjp)mgz2s3(donVXbl9K z{h>q)Sqz{+QFb7(A>G_ToV)<;m!A3I3$F5=SjQYNN_l)l7cRZ0hMSiSJI6vQ>)1er ztg1ee1Wn`1&}2en!v|SNRvL^3l<$iqX->H%56c=W&K^3f2|p+fgR*{CYf+G)1#G?A zxz>8Sbnk?kbFU;NtGal&+EL$H5*?Cv-)*uw6J<<`IJc6TYPGD$uwH78{AyhHX-31( z=w?P@WVP+nE)nO-K6__8UOn^0=sSQtNw6_GY4PBrYU67I?jpO1AWzB7!4VU^G|hCg zBMOp!MjWWX{gVhm7d3{l1c-MSC%C2cYCHw85FkqDcg6sqGjmF$6`|c5Ve%kkAD^Q&bCDDW9;&ffd$(aDT}bMv!|{< z0q5nyeQXehBRkt?lM1j{cu*uTCXow)r~x3F5~E@af>MMOoG1D3cdhBiMkX~ z&9=h8UEk;7%hF#wz3c&MaD_2D@A)%oh#ua7aA&#yO9*>e5l}ji8BZ-_@ZrZASC+>~ zpu#CQ9Av2v+Q6tO7ZPZq)A92_<^8G21`xap@S?Pius2KowOa&N&LKh+HY$KX;N*TK zdj=OFuPCDD0T=1>NCF=eL}ltRAAMe9-GAuL{lGbWFc zLUM&5gj{#KrcDrs2*Js+NkWnm2eRju;b=*Kgd7XuhFSP}J&wMfeV%HHZ%C(CJY{Y! z?CSs#9JzVgEbg|y1qw#O#5gD+Mo-I@IF6$gHF)~9QP0+otsx;4ucxPH_vyy>#YVP8 z$J`u}7v2x@+(IWpxB&Z9L0BS6$jGpmgn$ZJL`y%0zc!$4H*Ein`CB(a3nB-$J}RUB zU3By1)uizB+}9p{+&aiGOA^BR_0NAKyf}OK&$;OyEp?IwvU>T4m#RIcVeLO!ies|&oAjL<^ z@z3v3EX-Qp#ZcUUrcVlhAV52hg6(K^9|z2|4#FP=_IB&;(j5EG`eX2<2?PQ`O>fcF z!~@viQR?mY*Fojy!|&TOTJ!(`0;s_P6<;9&9}91mo*in!JgdeJ9#HSv)b=`iNRH^) z$Iah;15jm}6(`0hr*;V6f5(7aQ<=)2pfF(fgmcJwkPDz5;pYFzVykk6+v`PEb)&5v z9Fni3HI@z(R@GG`Ln`iwsD822`{qDEfY7>ZJ#OeEb!)Md!lghh6 zVDcYNvACD$0KpT0!h--Ju^-ND+&br`4Q~@+dfm_)$y*xDf7XrUdAq)A=8k36C1beFlF) zp6U()qa>dWHnaJ`7&cyA{f<)r{CqKS07{Ej0ns6SH6%C+L@D21{n_Mo{4vbJ4krn; z`1jTUh9~9ko|tQf6hIXQ3vBUt(}Xiqlel_kFC1N)Z~8b%J=yog*lO*EK2G~_mq>=_ zHW)9o!4Xdh_uH_wfD~p$R9D8ELUN&G2Es^;fcjw|ar4o6v^!7-o&p|nC&C9YgqZ*) zxbN}Z`bivTmXmIiyQo#YxNrc-T?tmUp-Ia5lL6CNK?bYs)|NHd`HEe!1z>a^@uq_K zlY~C1?y>#3?%Gma**9%?-*1!*bcNtFUysQPL13z?D#Za&a_qU;>mYab`#|uylt_rB zU2&DJT@b(*EFR+Lkxgfm-C9hy>wAt^{;oz+qaamA@)%T9tpht`uJ%7{><3hifniWw z2bsOBBqwZvTPze#lIXqxce1*Pe`|V-(GlTNjz=ru;d0er^1a1{- zFgNbxaBM5KKN4Egu^2%Gu-lm~gC-ehOf_NfrpAi(AR_WGJp>6ax`fw^ zuvgNX4ry9JHQ%O!5D6Hh0>=y41FLt~W+AABuhFOCVZ!xwbmU?4h#xBI)VOzNs7y$Shj??eFxHfuKL9W+ zD5++S2^d^1TVh3{3Pthh#?GQ3a+yvk!ibxWqQmm#-?YB6X1E>OESfct(2{&)^o_|+^V?Tc%7eA6F zzlN{7=i})6y6=YXvrKya6D|G0^O7oxFciG^2fM4Q%3x79bk_UhPHvvH@1dUa-TE=exO?nnZ(k8bO7vGi zhX2Dh1~0#0d~^Ax>W7O@ujNa3Op2moe_~8Bym94oRJ?{aGC*)Y|gyVvOF zUxX|8qu~{BpNewrI&JXN?F3Y0vWL_Mp+cBA)Gy@fnHC<_q7bNVb1Fphs!_yOg*?|dTT`=hj%K*aQCu@DP%SP0pKbJGeS|9=XUCPc6PW-?3ak`vYi&lm=UN&<4Um8l1Qm>b1^W{*R^_io>Igs^Ri` zsQuFiHPyFX7ckZ-z5qN2E%l~}-C|8fwh@UHkMi2Bph7=w&+vdwBf8G3RGk}-b&$E; z^m60bRf4PQ0wjPsK`)xny?y;pr%~>&kJ|@Xy@r0=U}QTp;?eC-Y(I4U*Zdc>TVQ}0 z44x^AeUY8k#gQ|@mRtS`aTCHOc8-W`3(06No zdm+APn`;BlTXW&FWI^LAWrD=a51YHKuxBrA-MYVKwP$YKD)q!gWmf&Z?zb?(E-k}< zp7<9!netf3W|-G9*G>yb3lh7}44`{>#K>`!B%HER(qPG_OgcEbDJmWM8_qdNIB|k1 zZIh+fk7LWkG;t9P?$H+ay(rqotIO{DJkNf<8d77;X_~2(s|WLMUrHtT}-Y#RAn)G((~=<0eV;p(~;_I-3}2 z%`&Gts~&B|r9@6=9$L}MB`-g};mP~HK0ZAV>`!1cXEa_M0DaKmIq-v~;RBv=`OSNh zjrIAG$_@a{x{^>>Tu(Jh%`cjzyN`yb#f6+u40G4%))^Q-5J)Q2su$ev$L^U zUBeERh&%mexch1%@9)EfV>6*@raoQ0{He#R&Qm*o5JI3vBH;e+3mS5Y2JBuux??z` zfD1tIyCj;nV|f)N27^2j&EZ1gLF z%t?tkGHuOtb84wKc{;i`(#@fn!^hO24pQ`U66bL%Zx%hcY0njF2Hm zPlX1>e0;F=^GIzW;jTBvwad>N{t=f@*Y&H3?Nlml1-h^ymC{jd$ihP zzL1GE&?(`wjy@bVdU`iyv=6U9loe-!VSpH^U){Mrm&e@5(`4$xLzD@O=zBw*vmk>k z%r9`}A5Ev=d;=*>r7hl$F}FtpjU8A5$q5d*QYhL}BvC|@5<`}t#8rzWVOSuF zK&|4#979P9_?ijFLFf=pf)R?_o)&OS^<)&}gZGSy5%R@VN`YgErBIg3-|Da~kwC$c z8Q2;u7K#p5t4&K3)^BXMzO5>I8izh5XV^*QO)u2PSQ_x72Eo>W2^V6SK&^NCZ z8dKAPA0#XdMRoY{=9)p&dWX`xto$gAf3o0rAQ@_oS!z2+M8>kCv(Hz9ur$Qh_aHE! z-V*n>kacPpbA$}naDYb0tVo%(iNRreqXJ0gmV<4E`3yj6&UTqb6Q*{s!cNF~eUDo^ z*B26T5x(tCAQ%;AoJ@mS05=Oo3}pdIB(j9a1ljJ^Piq`yv&QRU>Ldx!MMldz4TWL_ z?jRrlHzDv)IBW|!v{l(;IHDV2FFM$rks1XPBSHoxPbdS38oGuutyH|--F8^eIN^J; zC}JO5<}@_f&4Y!Im|?A8qvAAp!i~aq%9rK?S#;pVktOh3fSdB;a4-9iZsQNiRCC}U z2mn`gBcLkWm}+BZmf-_p-x&gkmabu!Fb?(rD4gePLB+g&kQiaK!i#dDfHKcv9xfYZ zPVL1fDCZdkyl~E-1VjiZZ?uq$AP6f3>ElewRsbk0jDVzzPM|HsZ6( zeqo3S*!Yc*fdxgP4cKG8EW|cT9c?dD-@6slMRau11VA)HbWk>%Kxpm`7ep~3j!LqX z14WVMKz?JA?85m)ZZiskLtBlfaRC582htE3QeqB1H3z_llfykt_wAXlEpqs)V^UiwfP3{1~CnL3ow$XW^ZrvK~XNK^&eGa-MFFj{l)L6Wx18W3%2^zD~9K z_CZIe9`=i7N5|LPt#f`B$)^cphJGsR4Z7Q9FEA`G%0xDV;K#=NdpPS{kG|CmqqUpu z6`w9z%PwxXZ^Mm-oIu^Dq;jR4YD`YJQFWKaEf!sB;7%$5Pi9ea0lccR6Xoe-CqRnw z1R|W9WpJL+QJthBl6%jZ3wdRd889~Oes|ST-0hva^vhqM1kU8JLv%nPcU9i%vL-D> zBv`z&@whHol9~-o1rm-)-0J`Xbt(_F73k=q(*3#8>!g%SAVlgZSK5H7X@XH;K+ zrj;3e;!o!L>Hwk!K_~|Rd67?&ApqOtkLsGn^rtiQH&Nqxr(6oS=52!^2>%Aw>ey<_ z#Or(KXch~YQzK3|0N9L%7dDko)`bJ$MPv#170B zF+2S`Iefm~M{~FyH_B=o=du&cZNhlC*hBcdPTh=yZd~2$@!VG#*i+Yl6}O|KPw)17 z+`pm+@is3!R8M`XrJXRZ&+6b~vw;avsxi5lFYff$1ejc&)MVqFxlO;I*^JV>PA!}Qoes7CfdjV3sWDr{XzRbC;7+s^j>xC z03FiM6aD#y{9TSk5YIkSmvQXF>;2lklQAfdD9|Zpj!9$>=0FEHEFuR%E{e#$I`;O( z`8>Tmr>-bYog_(sL=)1 zse7u?G*{?VsQP_fdbSw%`ueS}`sQ5}VgTBvG(s1O-V5OkM};&iNA{#@YT6OtRd$SS zs11aH7=@GzEY$&v*`asoiob7Y+7N)bo9&b^4**uIha$usA{m4eNE6*e z*0?okxEf}XyL2SB^?;y3&~V<%Y}x@<*?a2{GPbrAtJY9)a+F;NIYH7XF9!9Y%ffZe zoX*Iy9NK@Vlf@QIfz*0(d^~I%{?J{YiumOxWl0X*tqf1oyNNmzYLx_{1TwZ(b)_ap zfsX>=`~!DhMAjea;Fmi~<~>9R!wFCifl}pKplPL!Ts?u<7r^u4kn2XkK%@jA00eIs ze%m@_PgY6Qgi}!cj`y964WMk-UOaX~APijDNs%v>J0+@iDoe$d67|l|1VrI=LGxk| zQBcK39m>ljK&-F=fgI(i*Zbewt_Iaiz&g?(Wk766>T|8Qoae8Xe_e63RYZqNXV7?f z?9@%>KqlBCj1?jplkbVWk`~0}xZ+Gc@&ufUXn_epNeYoB$P2or)cW=zB4&aPWJenP zzCO{ggU)N4jyP?nUhxy;0wf07*c$zZT?H!YSpSS3bBzI^De?z=>^hp;@Vzx)!Q3&H0@!V#x(6;d!V4E&E;(#gnv-yVKqQXmm)zBX<$w$X8(UTZxw{y} zdSVKvOT+|oCO^1B-FpU`2r^PMk;|b}A*!t$C1PNo1rZV_WG)@0^! zVL|~uYKDlC7JpOoFQe6wgnWGZsYejq6O8Q84J1#82CaYuy{%;oDh26Ok`id3)c4Di zViVCNR(?QK@7%FZPV$uS82HTfNKKkoUQ{&IwF(j%bITJE5PJ>}-j0LJe3pv@*lOPNq!nlqW(8ORBX)?EaJ zkzFwi2(4?ZrL>UON21qCn7DFM~ESfnxcj3!(o|`y4y7jK1oHqGKpuu>bEUg3@ zY%*pTq{M)lcu;dVx(lG)SM9v%c1ykF3Ex9wQV$?=xQ@^R z170&E7-6HMVT{WZn=OHrp$)Kv>8{33OVbI}p1rWf8BvfzlyFf34u=_t!onkw7ntUm zTmd8HHik)?6sFaHL(1kP0JYg#uBaFj=Uh z6`h@`03;)3lG!&xn`VOz=}Q1HoU$T+I>Hw^9pD(Lr?YiuZFs8lHP=BA&{@*~zB*$upC32)pa zb|zfzmPx2-({SyG1#<=nqY2}I5fiV0284Ar3hLZC+tz$639djmj*vIRGdlP#&ufG! zFlBStP4eI+&mT+Z4-5b(!yhLKmnsk%-bp+5^%wKab&+i&_biU<*_Y&($ya1hfevff?)jkvt5{jx02Jd~bJ*`@8FeRq28n z^@lB=l-#4Us518`WJAz|1Rww&iRSegArS<|V(B28!kHZg;Vx^{yTkNiTa1|05ASrD#QCVH;%!NSFfG^2g0zs zjkjb$J}(&?FFt=^0ryQ`@dK{XP#^_Bz(_G@mSdzwVto_r2@D?(x0he1*RXsZS`NQ^ zHoV3)!H)^mI;YReB@$3b93_HzjGhJp9^6cqC?tJcsS5`Y`1I`#{zg(G2rD9j$s!>y ztrT~!w^@S0{4T#U!UDztDD~()rH^T-t=)%V=k#vko}Im$rtps6PpM0KDA^1HsknRn zHOoht`R6EouXq0!+Y^68n+XvJBx591^mWj1q9k)nE6&Djbp>zco%Q!N=H_4 zd%X9{(e5$TzLQAuZU1RIZ#nU=xgvcU8$9LieogJ-* zzLvcKYRbjzk`r#T5l^)K`#R=?6kIi@D=32dAH>y%GmunZE2g}_1O^g*b34K_Hd~ZB zBoB%5mG+S;wH$u*qE8u^43klW3zAY8GXaApi4Z?h2iB`J$BlCEB!8Fl`G%qC=sPfP zH9%3ByA&t)c(p$Ltl|Xs>T!sV9|<>OX{#v~1v=o4NB}_h(&>bD$uA3DXbP!v3TJ3c z!~{dYZo~s-TH^?PEFeXZkN|W`$iTr0h$V+bOXlxh$)FCe-BlDzttm_E5CgpUB1d0+5(XDAqxvOXUPp6;ZcK@eQ_K5bb5Tgu@Tmv zJp-;P$caB0$P!5tCLo0mO4hSk&#<@hkfmjoXnsO87%Kuzt6I;1`GJuPoe_vYlJpNa zf``hGOWk0EL`j$!ofM`Mv6eS#WIm2mxO_bsZP#3_FH2F)?H2&bARAX5l)sJ`eK_Lt zN;MuCaMdldFz4EuAcN`Z_VNylI(Hilw3QSCu?%;DYBCosyZq3Ovv(tfy(YR2ffWS) z;+N4oCJ$Vl2Fn+o7emwfoQz-afgSh{;4=xF!6&vJYNwE}c23yfl%67~iMgo-177h_ zL367;a?3bW2N-tgw6A9MzI~t@1pwzay69k(U?7kXCNw;EC!ql0G;E{wHv)8eHrWw{L&DXBpUFKCP1eRa$w*@Zmcs52P#*L2pHFM1TzWcK0-|!b5meZA z_y}6t!)2V6JP;|5V!Fw>ZLA&dUc*E@h=d0+4BbRC!C-st6IjqvDXqh+dHWyCXEBFz z>MRTDfG3ZTVn)=tA;uw;(Hxw7nMCY0%n=E~lECoX(GW0+D6hx!Jp(+o!q9oY>Gb=b z%Yjsc9uWd$zWtZ^Ib1275G_ueEO<8<)X$Q9xEcUOJ{?f@uxZ@Me%Arz5`pYw8a#|m zUG_jJA2yJW%p=1W72u}fA_Gu_0|*Fm?kQV91JArPJa2Cszg7sMiCLfrB+u$J&=T1w zj-vHE-NeKxG6V>kMbLNoIE1P3>zj8E=9h-JZR(@1mP77yuHxC@jyk;%MBJgvQ2Gxe za!Z9A2OIBI!ys8^A02kNfS7N(Kqx^QmFU4kACqU=zqW_W);53E`#0XGt(9g=3;6pf z?*se29>40}ulIdMp2xodA>YLKa-jP0I?&@q$dLX3nC~jc5|jwX@FAJam=^A!H1k4C zj9dIkDWI$srl77U<4gdSLBt?10YQg%s@(!9Fzdm085hlfD68L_bh61U- z=6n5X{vO}Yx___cG*MJb7(hI*E__2}R0$;G!dnbpWeU()kohSEj+^6PkJylHK{dXc z{;RvYBl^HX|7g;_spIw~GxDPv3g7{JD4Gv+Qotz9X&wFGe@oluL-mA6ujqveAV_{3 z08~gp5I`Z#w0*U`gaB!f0LU2wG>4bm z9339ls~Hb^%67hHJEB?mw;v^eUpHq{qL11lS;fH|yGp0E)7geidl5SCpyI>jIv znVFb4{SrFQs6d#1m#zKMk{BV+Rr~QHNdPP|fW#B_5ERA*DdQ>|Xr2A}Fo8&n3MIj6|cXoRGmnAWzGm z`@|1te6KBt-+p6C5Rw8H*kuj{%c}1L474IKasX`BHJH~&Eith+YVqyvZdFlpP&UOo zHpm4AK;2GK!l%n|H39>_8)nsW##f}$i|?-XQ{CAhm6TCMVkp-fK@b>7+$5DxqJgQ4 zVvq}Ab!;$zBV^a48SnT)lqsMM&;Zf~@&$lNA`&A+7Ki|LqG1LJRtqSoJhgzQ+|1*9^eLFHge~?YJ&uoi;iqaos zhaAv#vZX*I%8BL0ewxq)bH^XQ%%5hiQkJYjHW+Z1XhUVoF3Nbz#{fVa5DnFA{Cs-6o4UbIOi&LHdO!&+ z?()wkQPSr!#IKV%(1M7J5s`ooamGqG%#oGl*Y{IUq?K`(=lg9R;Xsf!{akx(fPk@J zwGkjBk%ad0aanICkS@^N@NaJK&IERt;EQsKj`(xl=TY0vNF>j#y`Az2gq?|@5%7bW zxd17#S9jwxt)G_E%R_jHfeN?&bdmwu00WVL0G{Fi5Kg&xJGkkrB3swtuq#g40|VsD zGP=2g;NR0*xN_u;0s-2Q#Uq7MECN9g2;0O`5-Eco9o8$G6$QN{nswh*SVcz&Wwzl& zGOJFp^PiPkS8USqX=5lA7Dhon0Ms4866?c;A>e!A{s92rAIaqG=W}s@7=hh?quS}v zTm#{ED{-f-&ewVZIq75ePY($=^jo`^KT8EBS#1>2allJYi2gD8AudtfV2YGS=Eir> zyfnuoL8k>*ml2j2PjCUdO^jAe&2`1+ZEn7ssnShj1OO-uGi#!r6|jis=<7=mWG~Fc zePi4lAe9IbG9(!z58y-c2zR^%{JuN`O2nC>w z!I}%I2}B5pT7vh3ek*%>J2>}rPi1gH#tojoT>E-@!Oot&(%GQ|GM&2ZrMIWaEYORm zmzqe3As}$Zt8Jyu6VF7WfPb6RmOU5^J@YI#mgnL2c<=sI4@4wEkR(Lxvr!CZarF24 zz5QOij_5ps4@~|}{$Yu$!Zoj#6h+@RUJ5@*z>E=t9oP0FEqCJJMK7+M-Lo!1P;)M$ zbpaJBlde=R1eciuALR5v{t?+^LxwK~NoXr4x2g#B!aK+k_d%+l^ciI;b2tby!vy z%kq?9)7f4C`&SRVdvQfO?`dia-w!H!Vm(4L6vxPiN(R&V$pa9QExo#Ejh5 zTQ)$jIyDO4Jf1t2(4~Af>2C4pp*E1Vbd+}1gLGQ~@}4!4B%3#Gz=NxK=J|iCWb;st z_-pR@a6YKGoh#E~#4$#H!x$m=H6;k*tkhB{aDoTVe(4fglDd>_i~dm$93D8PlsKiU zB%}B9_)#Q;)?c&{5CH-b6Nh=9NxAOIw`p(R)^5ltO8q?idnA|uKolqwmzV45LZmQgTDLqqdsJt%(yDt#AGwuytnDN9yq=E{G^m&Iu=Z+Tl=dnL#ohTfn zEh-frm<6V?#jNS4m*1hBGXui{IjUPsLtW@$PY0j3XKZ9eBqS7EQPGs?Qdl#Fe&jkW zf2aiU_xXIg@;s72&UF-lB7g|@f%Qpl9T6=_@m7nSON7D8d3{Vje0vdQ0~E8h+uTo>NeE{#k9pC3(p1Q?Z?&Ml$M!OUbM1OA&e8 zEME)~F!1VC0RRAsD1%5sp)MaaFu@e>=jL*B=*WPi&}J=qd;sJYuI12G^_kOw0TB@) zBtQV?=9V26Rw;LextX{SSn#7ZUKR)f1YZe>8FEM>L|&CJhhBVLhBD>7%dE^{dMqgS zlF>E7dARf6^YPYrwi@TrsCq7o)xXT1{aUYdTUeG7^viNCdHe z8lJc%!z_tJrA(+%QYE43t~>NChs3jI?xRdD8bG>Q6#Bfz+hfz;n`;6g>#Oo*%RQ{& zSk~=3LeYWSnDQbhr(%r5F&yu*!@jgQYW~lQV=l))G8lfg+-|KyFCw0gkS(L z&`k(Q3Ewst;ALF7hqc}!1YZlJ|p(1iE+;N-!J6_pzI`u!I>Bp*4}^jC=_ z+M>8@Km{lU3E_waVegGTmcpPMg`}aH8khubUcR>LtB7cO_N`i0-P=UFm$UA-XFq?) z%LqbApI@74lo*I6@8*dyot>M*hc0N~L2z?_dSiu_c1stvItcq$0!MpnpB(@v=lcr2 zMw@ArAJWKDk`RYf3XIKtf1B?2_rRUrE&IE+y0hEa+4nXGgoLf#GCp!!e5!klHuRw4=w zqYlp5udCtZ$A`Pi>BiEO--;*kgEVo>>Jm$&Qo%(+ZbzS|EgGI((bFuF!n|tZCHZmW zw^qb>OBZAtY}{)?Cwk}T?O6B0Lhu*xDyP3}oROM(%*iNJOzuy0=R9*w9@W_DyY+`_ zc8YcCr~|}uEzCsLbj^#8PLk=pP{;*_0T}}YS2z-@aVMrViy5O~R8};I08az^pwbys zkZ9fAbE z6E-@Bp(?w*+&DHMr!0%183AFCUjD8=FK7qNFKo|cd)^v-UYKEBrE2^s7tS^MnD-Zg zf>C#gSLU#>*+#mwv+2%DaD%pbnYW*po7K)vgTiV&53fmi_LpoHyC-w&ZI#_6J+9b< zIiQ9}024xta2!v<*Iv*z8NQH&2uP421Kl5J?7bPf!`VH!dbNl5^E9zs-RI0+B<`v` z{yqO!^6L+%hQwyx0bvZab{{e%>Y4cTfj&GR;m6I(@WuiZL(kDJi<9AhM550dAp3&d z+>I?kclcV4+%&$QMn&D?aS?h`n<$A))+{K%`do0UJgcVvJ5W&zFwuK2in(nxhy%2F zM)D#I9$r1j#0|Ka6fVFHFb%$)$gm>9wwrXFMrhpGQa6{ZWoGyxY}r|s~wcLFXu zMgSYw-d)&R407VRTV|Vse%Pdf7K`Bp zDiSgZltBZd>zl>$@ACTlPQ6-Ucr1tlM|M3eE=M2e*eJ$Qc(F9$EPQoCBOU#;%VMf& zd2LUMc(38vD=e-BV0G>m zP|3b-(WtKBFzL$_uE!M+w#8@8L@GB(7^qf=;qbTg{oKrc@9 ziiq?|Gj_39j8CkmhEWk;9JrzQTLkCO^;L?hD59#UswyI?wgj~wGG~2(!XCjs#wc&K z4X2_?Zo;phT&d&+x_8mae#2!3Br?$3)eK^cbwr?7t-X@7X{IJGK)8*fWdm5Nc%x{X z+Bt$+Jsg$*_EhDz8d+1)RZb+6{KPi>`)!lNq1%KF>1&=8V54s37!MuSBr(xJu8U=Y zTB@os@Y07gSBB1ZbiUqp9B!f;wp0|Aiw=Vh{o19Gc-b1xgAcL-%~`6Z)F^#^ErIYL zp<$jx26xHs%t9Vo@X7H>PKFI2`%-=;$zzR_&2tkrOw{WR%(;WNFAu^Xr zi9qMDR1kK%#J7Zm3C_E)lgRD?<*=5?hhHk>*RELQi7(AgxnaKLDh?K2_F@6ekSXJ8 zHLsG!K9E2n2dMSVJtP=Px*=^UB=y~}cBDHU+z2B|7a~zmXyA^UYyCV38?Rm!=%7HS z9!i`#?5K=+EeHVhfjpKJ9%hKq(yX$DD7?z8N<*;%c@5bTg7j3G^}6n9j=Z-aq!}%d z?NDfp5gT?00~3uZM(f#FL399+Upk#kn^oAVM<@S184W6rw?-W~C?saO4LD*s&+aM* zKu*w%K;2(n?X%e04hZuc4T~iAt$4>B7WwEF_W{#QMGr+A(x!Q@fBBUl+Fl5i5Ss{Fe%BhXh1VM_;S#V=&TUIPl_gGe{#4-lDzuW-_XE?u+<{ zPk#3P2!bac+#Cjcvki>hLK4Q}q&Cn=Ay{PD+!qn7-jmmg>16>Zi6~`~IXmKmHZ&5u z?~Vi2bjyy1-gfG;XnPL$&$xi>zUAk8b5|a|>e^lPrWfvc=i3LSH_uNji019%v%Y!a z_Cv-PHn{OSqzD;TU{3w`+b}Aju!+I!aZw7e6QfImU+jl**4e*|w~A$<>4N`WaUxkgeKGY!F3UUX^nw1O7GH`E^!sCg z@I>lG9?iQ8>k74T+4kAA{#8wNRM`4;5b7}A%wd^%T|JjoBDvL$*==-Zs<=Ca`D200 zysotAzka-@5;7ddvj^opcH<@XGg^|kbj9L4rsS=UQU}29n%{i&!;BFX0wN*4-nekc z5)jY7+0W1TrmA$D?#n(6n)oH_IIC*bJC+earB#_O5QL!Cil{?WL)-RbKUHK?cE_uK z4!=k9cHBeb1F)9ltIF7{4Za74ysHTcWt={Rn;E!xuZy5r8j4 z-xQCdfh$q;-M8yAZ)#Yg-vp>-ZmKzHK%n!taS-kzy;$!lXwGRcyJ_uALg5sWQ!#Un zSO5f8^Y?13)HK;nyEG((SQ&rDPw$ZEB+tv=@Yh6?8#02S82!vY9DMTWqKmNKw%UWE zXSYsh2yWXzulo|{r)?)#_hI|Zm*W#FTlGNw&K%33Z&ym8ZJCfKzpLrrd=!vm73G7& zmW#c}ADf-qAgU*eZo=xKLO+WkEJTDvq5vn0SH+8+4FjqG-XAZ2Ha+l^5f{&*C#Rh! zoJBiXGYk1J%hsn4eoj4eIN~*g;}E3zx-!Gdmrbd78b1PO zayfWyP_X3qLyc?Kw=I(pJ*oGM2GYUB9aiz*3AYYDpTCaWhy_qeZg}{&szV%K%NHE-S;HcsA7Y7}93C9q+wkRUO}(KtbnK)m0vJFk zE)tVU0aNu2K~?zUtKXN^kO8YsWBT<6?f+Z%?Qd86s|!&|7t5#iz=R~72$58Rz)~p{ zNT9J%f{O(hz)?X&L>Pl05F}v20DvELMM(lA7@{h$U?f0LQDQ|Akr<#XVG)AK6e2Jb ziz0-I3bH{|B9UMy0>z3&2_lOXj3P2cj8Q>iixfr)6;W7<$rdaYL{V6Y6ckZnh{z}@ zBv3&{5L7@?K~xkJP!fz zvO!50!9Z9ng2D)}WJW_YVozds*9?Fy747=vvpHd`=E2E}WH_AtINS4EAlQ9E zvk|mk6RPj8`v0%X%h!(o9VX5+H1r&NLW{#Zaf)R_&eetX_iODB+joKfBAkd+G9@fdmpk6&R5i zNfd~~^T7`h@#bvD+57sf0qB75M%^{K!LGcwQ}-R;w-e6~%S!58NXaBnBxG3*@wE$V zT)UKRgVUcKkx6mF1C7dCM5=&(MY(|FU;QOqIYcrkq7E9eQys6SaWk%y#xOfg;p_Gs z_!KeO#8F#KzR?Be?0$7qQm~ zrW0jvU(x+~58x6>;jhcJ@mBs^YiV5iz{r9O~Kf}Wy)nth*6ow)L#Bijqr#F zxBeeuTJCT$-OTO$0*aBzL~=xvb_IG4yw9ztm%y0nP|U{(C6cl7UI$ zVnZMVeZW3Ta^GyYEkdE)`7-BxW|_5f`hM1btv9bYqP;1FM@E@a#%A=t3HId}hsUo8 z-~u1&`~JrGEX@P~PA5+2fQc|9fdGRA{PaiPx=28HynrX#b84$xBvb1#HI-L0En%1X zpj+DOdcxsMqlmd=OQ5xJhKi+QnVE`!S)Da+b zva#O1Ui71mp1I+~Bq?pq00~~e%+qNAyv|gqK0~a3i!MD@pUZ?JplSCCOZ+0YEhUR zU_ex6WEaGk|HL>DGA-+`A@g!@)Eg%W&?Yc3F&H2$AkAbK)6PSaV5FR8lqlQ!*5f6m zW1PEC5o^}BHA79BTowOHJpaFL1}y=6m--?f&Gi@N4=d$%5(w@t-lk*M`s5trhli+tEAV-?uCr`PprL3J znF^s(=SV73b6=CQWKl%8NcN%`8rr+p^J2Eu2Zk!1G?4nbFH6bP9K}~p;nOGDl^6L3 zZXu27!aIBm$`-0>!O_#S3qF1n2g~*Cw_Ma32W@r{+%eAmwZR@*FhgQ#&^IG^QYrPh{7Zib@m^O?DGZyeWCQ7<;|au(d&O- z@qMY?=IVSuWrD19-nmQxLvaF2Ll2wS%#=Nf6$tklv~W%p*m2o^kzp`*}$P+Co0R@bfl$+@5ojq`J;;JJp%rP;Qt_Y>eIO=BgRbQ^T?z=+dJ5C`! zQ<*^KF4^C9GJ%{4NWf}al`aCQ$rNP9RM)pRX;@f%{Ql(KXXTLL3*DvKO(q(#^^tF^ zQ8~bp07FblgqfgqEl7}xfIo-LPv1Y->pgJXc(?v1;&}a6*6Z8A)yYr*_8Yuok1-re z|6HT@Va-mx#@(8P$2pM-kEU!;KEj%wh0AE?-K7}9vi9DsiSTfs6;2cJpHZwbI$j(Y zSHs!Wl6EfxjswnemFwSzXNx1>j=O36={;LHJm3pcXLmub_D_B_0->P;8=5S&%&?5 z9oZ%&51AnO%}EQ~D>7othm;v~2(~25?$55|IwPRFD*eNF=jgHuHa-gHNxsYRK`FFRc)J7Cx!mgd?%4CZdg7f@sXVR<=+d zCTXSZ15aL&cw&bJPSb^8#bC~@Yr`&C;&^+lUqKz#t!E96^hN&b>JRBfW&80hyuWo{ zUl(i**8ui&HN9aX!k(I2UIcg##Oqe%D?ThOC>(6p;xLiU#5Cx1=^>6~#E%@A*twOAtF6qt($Qc^s8%A+Qi7q{ZAQlFM}vBL z&2_GFJEDyys3I*P((2S4YkX}!j`|c0AS}{pn3ndvH4aj42s4OKm75LAh|XKQxT(5b zZsKb=$u>IPX7xzwnrRb+tnmMTfewy)xx>>}vWgqV85`8cDAgX&L$MjTKm}H`djt`v zYaLTLq6;e-$shz3w!vs7stjGPQW6tp%O>}{Hsj{Z1EW~-_DwM0%3|lF7NU)5qXdxp#5OeSl;jeS z?g?(&v&yN#W>wDOcf=hKyQwy$Wzmb-PNW8tgIIXG<6G@bnz|rfuq7CWh8wX)%fx~N zMC${f)fui#_EBFika3o&JQu1UaR10Z;PmPI2uQ9KuWe{RAw+D0a*4=V-|xqr0F?p?QThvk&vR8u z=y$ILsu8{#4aKslg23ZFv zc%}#?#6+kN1l!+Dg#Jg^U<#<4yhpaxkhtyJu5I)ifxHXo%2C6fN?M|!NEf9l(}xWhK!}B@z;rG$mn4M8NtTlM<~HvEQrOyfe+vFw z>z>Seq$5^Gwvdg!Pp>5hiMvJIQ^T~QVa|?xG#ZXTf&YI+3GcX$?W4>jTBvJ%N zd8kw*0#i>c=KxVO-ly6ge#YG^8%@U22bhHL&bRE-dFuA`DOoBv_(P8xn#tx7TAyQ8)AHc45eyDFF2&oKibAMb99}V6~A=9fAsKpL~ z-pS~l8@1<|8!_ku8VJNKz3ccj_hJs{i?R#v+4%f*KjS2twrb*W_GZsN%x2D#9G z1(h#*4>yh{Y698_(re9{i346#AMpjCmXWZ)tO_Y4W z4%$T-fo{Lh{*Q_E^AP5SdY&)SwVjF;MS14owdIaZNmfKPh8V%w@Yu-T&!vhkAim&V zR%Qxaajp7_ufxd7&eE$KEyI{X=FEXU-rvH|(-M^uprV#3K{U>1q_9{bKxzJhDZnkw zN-kild_CRtY5H9M&+)77O$z_TIIi>arRbCOMeL-DKMFOq3b9kvoq z66e)0JNkob1j|;kwmF8=%lxg;ck35V)FbpUo0X7 zfw%mi{ByyTtGhloqGnO9oiq#oOa2({J9gzn3g2}UTmlIAsI~($tbjoZ@Ca$yTK6;2 z+x?x(bCOP)Ne|n?TY(Fti54fLfO4==g#)lXbWbMmu`>1Fz=_!1pNAPxOz}awW@!0h z0PTyUWCrj?M9MNFXooH5uARmB83-1LYu&#M;)c=1{pwywLKy?t>yt?W&Z>ZRNdruV zJcxY{&!&oUnayM)L0Ojd2YRPyIds9pR?P~CTIocD_(vSOJC}!Mi@BJGhJ79VC-#19 z)Sudc1y*8*e_r9&wBAmGk1Gk;0FW`%QfF*{wQ{}5iH^)JTTP?K-POd_A)BWGct;}P zib$gQ2qxKN-Y^PTRGT|*kYD1G4)`~;q_wIRl|(A2_ecsy%H}37_JUUMy)@<(381<+sIbM{I@nuE>3-)$Z{4CQ0BaHO$tO-caw#Bff#Q%B70?U|sz6iC8xcr$ zt5iHgM%Y-BIYJfTx5ePUv|c+cYmdE9(j5uDxMu7KS6q38h;#jUJotG+F{qC7Ek%El6zW7WZH7t! z%;Ku_n21B8`KCCleMu01wLa5{sL2&6AvRpZ`NLL_`anJxv2bf{LR|D?EN>D(1WG~( zBm)RDGcYkwGOVRGYD z3NqtI7RrD{goc;_i71oc$+Xf)0BbZFLLR_Go?N}2;~jdVjsk;uHb%?`8BQ*}E${JtKnj{M{6&G+Mt zx^S^0B7UX0li7tZB=Cq?s9>2#3kE3KMj<=?F8`_gyMC+T^5}h^4!^`eiwe*{hzM0b zej0Y;#|Q7uY&i{Jo^G2CU8tQmMSSr|^n1KLKNsL0^!k(d;eL#)P_I(lREq^-sEEZ8 zg270o`drbgui~;~V-+DG-|NfCd>I_f!?NmJE)-Pu?CtH(&Ec1nwx+}d?hGKoj(S13 zkEeDtZB(;yP?A{q)}W&!GX@CE0TLjfp4t{hr9}z!GzaZvGRR8&%_c?!3Jd`hfs6|v zElccLg9u1Tk9ON7&>N_p$F^^uhB(4W2nZ_^z-NY4At0(OgKUBN{);pN1tC8ZBV&oAZjL5}B zhvP_OaJ6KW0u~eX;evYpxj8f=56hv8(~T?_azzwW5Q{%wS}q2R%u1PzViO_BGxF&D zJ81qs)l6-=`&I;;Nycs4lGyX5F0>`fL&YN`gczyL#=t@!x# zi=SBV@ZXY>u&%8#-o5A9M%p{3=1g-X>*LtfBm7o>$G3`0l+&Q=)19+HMpYr@ zZLOscpu_btD3VAhmm-&qM{E~_wpc3Edel7std$uF2oeV*eQ5lDf46P0`QRzXmuPVd zr&s0=PRe@71R$6fSo>zRLIqFh^t@)ljTr5CP_pfP)=l^KZ0mmRH4n!Y*k; z*)pt-_^0`v0(ETP)06#BleaG*$-CHkB3MYis2q9%yq<>Gk_`wU1Sp8aMp%OPLR4xD zjz%UV-2?vo7eMYCR76DIg|50!ZKB2S+pii32r~C<9~e3Wd^PRt@tOZBApn5^<40s% zrugB#{I$}3IIa4yP=uhVMSqA;GN4QX6c%I%6+IZaA&A0WSC(G)ss(LRs)D)O<`F!f zHYK@JuEj$tye?eXtBrHGfGK=KJ$FkIZ)dY=Bq0mL#4LGY01q~NM_#~#gP)tn?$aM* zsery4q03A|e#1U}R9Nf4sVzhb6GD{JJ-U0oud5>;4N5Hl93+5i|7Mrr@uV<{<_I*# zrb8-%fe-+QK5&;zJzUmweH}7ejU_;!MC`4n`)A6Vp zw*1~-muCNlZ>w2zTa;*@wgXW;mkM&5_kB?H`#PU*6GhnpZ!$LlDb|EtCWg(ojunnkOmI}nXYb8&>>t2az&pv&A^b>ifOwusi9VK~6`{-Jr8)AY z&jx+A@~8^-e=k9|KBiac`$O2rFnjZIAEOV@K5B=z!2O1P9$m9#ue&>a2Raa~lQmsz$V;RSS5_TESuj&cR^A*-kgUL*yK|cF~cz-b07Om%mrTp}*97 zTkY4-IyyW(O**fH5Y6Lq1Q^1a7YxvlEC=?02>VmU#{bwwJVJZM?wFS{MNG>0zHba} zDUBUfWbjUE0>JA#NEq^yiMz?ik{UXh?~`tx<=#-1@nhTL)u`4xv|O-~Q1jJ8<4K`ZH4Vl2oLZeaSYYO1 zS%n05*CCAAAtV@ABfZl*>-V1Rna@V`(buxXm=fWaEs``?0;I!Dr~}%+ujRG84zH5hnFx466Tl3ImyMh2!jpmK!=OQd39-#I*x-=O0vjdXPAaV7Ly8pwmKR#K z%5G25VXdN02*I3X(9=9AcpwClT(W2aS6>>jl+RGX`35bH*|ezp$lQo2>9#(+3OL%s z;tRX}pH+VED*LTpcy-^bKmU6WNe9)gZ<=w7>unFVC58q>*M$OAonSSk) zPXMQmcdBcW3lQeACBTF-pnizsS`L9S4Q6!$3osy*Eoh1srOOVs)?I!k=GxQ@CNvtR z7<>Y;ReZ+FIodk!yic%rSO7yBqFXN`!*JL|rb9{@zYo8tndvOUbLWnIf}jW#eB^!H zcGbh1Zcwd*%d)jzOwWRG`R!#sQYOg)AZ~|%9bE(i;8AJ^U2jwciZK>MWQ-vZI4}n( z2(8{ysO(D+4m6)^57qm7bQpGM4|Jk4DcO?&leTo8J+8KT!2XRNl0eFLVLTC0Sb7S= ztMC1Jggs<{)KW|!7*zKOM2;(MG`KxNr6Red7Qphz$yc^4;5p z!)3hl$%DbliFP$h`;bDjA}GM=wO%%|>--|te}|8>5pBw!jrWg?;&jU!2cLz$Ir=g3 zYw`H`CqM=g)j=xU%K}ue9-6Y@>angb1{;v&nRPoj=In=lH=wshTCr6izcq)&#n6OG z=(hn}C5!-IK%c*WAs-|n7*;ElM_r}jpqh3U$CfTVD$x7TW6M32*<7mcC=X~mEj72m(JSSys zU~Q28@X7g76Jf+o+~+Bs?y~m9Gag~oehzqaa7i_XEW}Ytjr^6iJ8n`=7YjttCTY5z zFzhVlEg!9x?fY@C5~U2C1Jk!-N#`XOI6C!FRa8_|R8&+|Mx{h_c?2P|qtNw;cv>6@ z)=m&pd`!sKfH;{JI_uIHH-Xc$&!v66+pelRsPE|=kXK+2jj19FkIS>g)ie*rcp0P< z>mTHwT3JjM%cf6HrtHY^6h{?o%PB6JIP%9_w9*@G)5-86_;ei)b>X%Z#~Lq3mjpQB zq6rZb+NnZr!zgE)hX^*p=_H!_uU)w(i2)i&h!FxDNF53Q_`y5x%2hc!9eOL%Nx3&- zGni-=2#65^8xd4MK?nv>;TPSVI_h*pb*&>!1molRj!AcRtjYNbjf|Lw-#->);Jd)_ zeH=->@xh}>4M473w^_AO+O2hfPrEK8D;xFr@$LLuY%XU zCY%ztrl|e8v5TK$dm(Ytf%v()4a^T`uksO34B6It*_woin=9kBRdvBT$E;;Mec2?0 z$o#&~Y_#j5@w@5oeZP4YLqK@25J^24RT0&aRTRVK;{St>M88Sl?C5=Loju9hE+m6i zji6Pp>?(nj0AG$1$c%5x(h%D5zKvX>A1cV>7 z_)`6V`omtvD=$>z-Q}FSn)39_6~~`wGB!~jYUQn%K)``v(^jpE-8t*j5;iL;z=4>1 zJm2R=0xpI>jmkvS@*1-$Jn_~YWA?k{fD9av# z3|Zds&@TvWgVcjyG@iY@IHBCTGydHZyKRFv_<@KR+J%(;2K0w#PwRJnWfRX{USZLI z9!}|p$E@eJ24f45Q%Iil4FOkciu&^S$+$yt>ifEVdbjw-r;d;s6hhEKqv?xFH5LU14p|z0Md`9L~3A61_;WI z+{0bMk{@Lny*JMqJI)KVW98QQU3muUMkGvf+eQt&|DWGDDI?or%3mS-VKS`@?`yV;e>AjtIUoU{t#j^sT04)_}aP-POf2RP4J z*=2Y|WEMnZ7C>VIZ*TD7j_sSxxL{UWWy%ZH64uF3Bw;#(vMIbi@4Mxk^@rr?ktJS&x9KS}IW!gX)j7EevBX7kN-6nb;2b``I4 z6{~2YL(>fP<9{z#F9XiX)eMq&(`s68-Nz^7!X=1UK^L;zZ88<*$BeW|6k`k3C`o~? z4D{8D0?a^d#oC)DDt9UH%&%KAqq8a3$ zW0h=95KV9|`!hcN8T0|P^5dF_K3JkB_*vOBzTLog_@0LSJ%WbuO7`?`aRI?2K3`SS zA|M)C!-U-iU#~@tmw=brx>}Tn#eNW%a{D`Te?T;D(V9Pn^ zHe1`f1-E8(Hg0dYJy07wZi0C(CRya6izU>X8EZh5N+Jdne+)gu%dw)bWC1&hw1I}y&UbcTsd!&judinO za+FV>$?{8zV`$J$&!4Y{t+VQH-?L;6LZrz=WWAx!k(;roN=gk{&WZ=_gJLfzEB3RXL9Jfv)&o>Qe|Ux%Xw*I1(> z6Mub5jlSI?YL^nKq>v9h5T$tadoF@_@D7sH`-2)k4zaT?6Tr2q zvA6)hI7c|ga01udi3q?lodA$<7R_e2iD-5WYO9W4hB%1pf}d%fC%c!;sJLei9?ouo zeV%%#yY3X}!`%ZFA5$BQ8+m@r-HgZk zs@94^3?xpNR7K%b=!3Zx8Qngb?ebsOddK}W_xVn}zd!a1&gKVX7bDLr%iG5(-hr&O ztFIIS_%TYxM;PqP&i9WqpywbP@dr4S94Y{aLzCK)siFV~0WnYCk~}JC9<;*l^}t}k z0l*K!iLUjG4rG^?jGJGbFjH{K50|B0$ZtyO_KLaep@J&2_fBf+=&W2-8;HasO#mVA zQi9lQNg4?zKm?|w#Nivv6p?v6+V%JPdGo%CDC;dnP1QjH$*RM4_pO$&9Y1GPlOuQ_ zPyn6oif-+?Y#zNb3(+J_uIg#s#+@11w|I5HREm?ir*^dOVEr`(K=i~wO|}hyY%C^X z$VHchN}Yba&L+>mKZ*8q%k~l-DQ@2Dp6$dOPB~T?11ID59^cK|ko=773W6O#Lre^c ziXoW-OK>X_d9SNMgv34Y{$TL1O>{O>BgIvZs5Bo z4-){NfAk!36L~@b1!ReYv?vDLTXY(Yl=bLvdG3CBno1}aq^r0iv|_><_tjB31m z`z`r^98+*U*(y{i6V8@Ie@OxmiZTKOh>|b_kP<(BU0)9GtJ{)lGUdDL>$&}X*@#!L z>v(*%XC(WyqTG3QZkIv!di=I?h&)FcR1Th$Tmcyai~vPHWBOCX;YZ|_d3@`pOnjn0 zm*XVg8SjPQfdp$G&d1;gIU(19c8vijLIb&{?5k!GSY!yUFu;@|`@DMDB?uA%N(FX!D9#L^m( zEeK4=Z?^w=M)S^`6Ohf)?xB zR<=J^)a+`-(hJkqLwmxWk|=8xA6ETQlfThkl*H)8mxK8=Gc4P(8jH=(DW>ezxpkBw znl8T2SSY`LV9Y`NX9mR?_&m`PWL_HasY!VCj zlYAXvcu3|s3LTm7US@Q zkS~Pz>2h{yp_Y9~VukL4C?bAA*R$h)Im#c*9eMe{?s9YU(Z5<@_O;Q#fvU&^G5`Qb z8h;)91p_sTh}MnLmS$wvzgP~e;Q6)2jk}=6%UIZlgmRSU@bfv7j!qF`*I9!cD`{1t zEllS%emb!*-tAAC<`q^V^J8tsz`~95VMU3d8j8`1mMa@;Aw;J&scVR}+)D`Mc{^-3 z4mT?kfu&BVlX2ElGd%pWY&B|?bmHaNnO%_xbei=nIMmTgTG-eG>=g1c&2!IwqnD!u z!K8vW@^;qp*w_hqU7JE0<9TTt3|T7H$YspZSL$?_c$WyyEe&!V#WJYjru5BgSeT0x zZQ=?O`)MIr2{(0k&KwOcI13Fm)v5w2gQHA49AMZ?FjMiO(M!C)9?v9xGkne~F{i

6%dhh@z+6@l=0;(`>t`%D@;2pKYRUM;~Kz=leHeJK>7`>lj33 z2fE9vaGRseMTL=yq+r8{#vMUYLY}}f6Up37`RjH-zW$3GrhfU=U69pz3une_4!M9O z%c%KC2ina%5e;}&gpRaMu5liErl5SBhhO09uXjUd4FI2y^=i2iNQSQ8SIS?ufTIMn1Oe27 z022i`{gr*E(KDur>N{w(=K1rFPhza?EOqVcKMXoC%M%*LbU$Y@&~!*35R$tqhqy2* zR;EE&%5uSM6khD8M0>&r6HB^SF#|3$D&;!7KL;Kf+3E}(pgZ|0ihhR$mkqQ;lUtB2~EA5E^@%aWA>4wS&Vi$ z`5}nF4Echp1(#*JX3SMF^{-~t!mDM}O9fDEDf^{mYEJ`!y z_lKc|^lzX^@MJW{@$tS3B9nrLZ)8x&LdPLpDrQke=SW2$^Bhtj8j{!9gU3xE#L! z_Q3!PIqr4px1(o|*+zL7oS{b}g{&1+UZ`0@;c#4vujb>welEb0AFL1S=?Oca9L5$N zV|74gO#C^12_g1{gi1nu5I_=7TI;vp;Q+3n^6;P04U6O9A4o|*W!Uv9f^*@pu6W|E$^MiRwD@!`9>jw*dcb&&WfD4!KY65l+yO~=Bx?8Dit7q5`} zj~&6!#q|G}+0Wq;5}^;56sSO)){`3SwC$T8h-G{O?)Y;rd{jlteyiO1b}Hmtp3WPL z2w;3nMJuwG_7XsmeYZajjDBt@;KI+dEMfA2x60Mx1bm-oADidFRRDOCWm~78$KjSo z=g5Z)Fv9|<*=DV*Ei=6*%8_b(al|>%QFLFTz2f*qy)BtsBC~~`8Ax44VxNBwtpI3b z0T5s?EqBZsbqNKIHaK11qc-r$g-t^du=r+RY?3g>X7|QuSpnT~3y>v~i-rRffW$af zeW?vHC_`xP&sw3)69v=faWl`qh7a2fK2&bkx_&-fowIyZ-n>3uJ^M@{g8_yBu~=1; zCaZ>UkMXy*l^mfd2qHJVBuIdXmC}zXMu31YxxSCpZml z7a)KZ5tX!TGwgI7%J_Hi)3@h96D5Dg_z)iSkK@9l7(z%-t0=We^jkmEy^qu;o{j#e zhs1U{PbY7mEA_r$*f~2$s+8JB0>$YB#s0Z9^!}x?<42w z7m%W?q1LoFEcxfI)!}f)AX|bkV8MjuL_iAly9O7lbbO;%O(i z=P}?w$6=1HYe$yKR_+t@63#orQ>NH!-#~n)_uCCIHqk!$e{>8%1OySBHCVsOued-o zBn1?a6GKKsfgjf7agvNA7&U||T8eSd@8bKm9P!lffoxJ9(`2VdpMC=I$nOBdH?E}2 zkWH3Lm}HOURro>p_M`w{bH^YAaF^N3QCkGIAv9POx?zNb)L;Py_RQd>TX>R&(@z6C zuw$ngxO1t>n|;`DooS?G>qG8=Lkwkc061#4c_;?gU%PZH1F^MF&7rCl5T%6rGp-&u zU7-0Nmk1bfO=D+g0vaup<1eBH$*L8AylzvC=p6^H`%X6PHZ256Gd-oNy)bmqe{P-| zx-)~9HTeBz9%$>VJ??*%H+og!MLekSN@&v1AnoBtiH5hbYIAc=*>SGx`B!z%K3c8w z9Bz&W_p4kCJznKxeRM{tP*Wd1Q@=9HBb@;(IIm| zFvz-VE{J5_7cP)PuO;1VIz<#K;^@Sa`aPZ%$iSWs0oQOg($hVqJdgt&dT+%5Io9|m znXPx(glg7FrQIc!{=2S<{_z%?V*(i-9EDw77-Cy|<5Q}R z7RJv1y=S%T=ml5vaW&ts7I8PGRE#n#6XGO+;OG$YnX@1a#G+x8z^v8JU_!m`%%azbJln)n6ENs9*l(-0tk7hg^lfm=qj-F+#ni*DZ4G$s~clULwTl#IaGPivz!_B=t zJ)mG5=yjiY5fKO)DC6sgo*n*eccqp%9D z3n*)VE!*x}EPy@iWv<-(DGb3#5*V5?!5e$tFM|r8bzvN&O477lb9UetPW`O@33J$Pub zRswrDp@gZu^^Wgfj(E>!e>}|t3%t;kl9X-Wak&(@^&lFI`N zrPEv`C|Lx750g*?RLB6xzO}o}1J32v!S!k>PMuu3Xbom)n9hRqUR=~|shJe_?^X_9EpS!Sy>Bj*0zUFEffzs(fhMmVXP2_ajSkTS zWRU`-0AwIR0&KI<01QH!8(B($L?mP@KMwxf@kbNF+8SUe5MY2nvJ66uBW3YUW)1IC z`%VRpK1|g5VBOcHTBx?#-@CW3uT4Iz>*AdjZ7dri%EliRNRfhr78XO6L-aFZ2E%AR z>KVSjE$Y+~{51Rns390LOUerfZUlxIDOKr3fq1qKX@P)XO};TAsi%`&~E zTG6D$IPUxTHnkIlK z#ztG0hXNa978LeuV%zuP{a4iV~^mTWcN(8xjnb~Sx4(&#kQ?;UT)T6IIJ09(AR zPz*jbdtzc=m6DZ4*R8qh^CvDEribmgOlTZcVlocqLMI#qDxIjY_7#)B5fz4s4FC|Y zaJ?6Y%eGGcOk^Bb+h;+{05fgKB7{=3lcHHG+w5cpF)>eTyWO?sN~)Pz5}`b%#q_C- ziljWU1@$lidFd=REr9!wXAlyWb8i2KWzzz2kfj^z>~L@C7$8GBNEIenNA|%bmmk*} z1A1NwvmyL+!VU0}PSwk1)Xb<89F7FCq3or9BiW=XT#G+>A8@ktH?$y@TN>l|>-lo) z&tV>c{<>7vHTd;ayxxy7eK`MG0RGt(1`n2xvMWAc7S^w)ZU$xI@x@)$>{CHl=X{03mYLb~*&&VgU|5c;U)9 z?hqn!90+s(d#mHv3LuBulQz0QkOYeUJ~j}({B7ezUe?oop}6x~At3Edmf>ZqGbx7B z<)NnSr$RzVUh}*NMnED)0|pF?EPK3Io*QZMd_A39d^++64B`EjqzgCsCJD8ME!YJ< zRU;MQ1pItBQw6kO|35VP`ZsDhc{=yseRuYG=n?0Z^Yku=KTw8%=f*&amI7S+s?M`Y zq$y`=DxSxuQ$`#-qnzMu2#L#VTUjcFjfiOSu0tz-MG$Or0=(ML+ziBpSjECua56+v zT&obG+S$?yAaVx%f1BU%z;T{w!JIbj*|&tFE*iA-3Mil6D56jngE-h2C=v*60v~HY zZPBC;WF0!ljP2VyW)@1sR0q3k2fkw$%9Wn+a6-KOtQuz(l4S6k<|5)?Q3BABD1w|f zWs#En4-@wa_eUzdZEO`gkfy zHm!92aqZZ>p98&zeUu6??>E6aYIiA^WX>{NR8&<}1Y!^*lL>9P<8i##CA`*q@HQ>x zaUHWrZN)09z zMAA+iw+_WU9Wp%2Cf=Dl141P-Nd>Dl6i)$Q5n& z7C58>o{@AMgvL@(QYmn3$_i(v9RS|&X=G{uA3{SLH4+_M@2Y-pT%JOl_?U6!P|n7Z z3;slsqZtn*oa82a(Oz39QUHboiDe5jO^6*E1f~kqP3amKb!)?xGX{w!cv4`2PsPlK z$0+OT%2DTqpFcrX&;shWr4dGr`}`cy0Ih;DE($}Ugg$Lxv^*IRsL@0(zKJ+FOCtzD zi_i(=3tmB&DT3QdmraEmsp%*;0v%OQA6B|-1mKGW1qDQU-EQewCbK4KDm;MDSYpVy%)}SE;M0UfrYf#Qq5+iyFFpHmz!`xxt ze+EDXg>oy&zCMlt*Sl6}tS~%&vxk=*{P^_vb*{;mRUuBPds!OccfA_p1t-1?=+oQ&W@Rb*^@)=9aU>L2{?1FPbm5*VhJ=M5DD-IZiPQb zHi$mGXmx#HpDdqS0}mr<;UiU5RRUmrMoju9neh{<0r8O&-XTh*@J+lly)vw10Z|v; zis=DWJ5eN5KDs~zU6nuqRY?M1uRH=f!2kr-GFxWhV9fv}WeGq4B#m=J41o9Ekurh1 z!wV+7jJ5hOQy4P!v4kp!P4j?IG%bPvjny~*J`kKbAlqqH8YHnn3#^9;3x2sv(ua~1 z#w5*X)lY(54BUiyp5>5ejuiuxI7HEiRMBzAX?w)HLPD1sttBeyZBodWj?GzE4M$BW zrKriv#BU{M!)dcj#57SS@i~zL2JM+F5)b5*f=)1U|Ah6}49p$xYG{(LPgLU?y4N0G z7g-P7e<-}-_57bZWX@xUd#(CZrHkD?JbmJAF0!c_#Dn=OB%IVTb*-?w>GSGvKkAZ(}!oQ`fB=krt6e&MDU3H^~=QX)f5xTIaqu*f5(X)wCK&_HBG9 zd`6jYoYN`ksLEQ7W#>I8+iB4ZbK|O?p8COlFxf<6VLlahaaairL>ZmR;Tspi7#9Lc zfR~-FmIeYK&2p042R>Tr#ea_u5`?GCx9aNGzkUO&{x=K} zbW<;g{e4}AfzKNH_TWe9obf6K>Y7=RdE6$R9!){yg69Jnk;8VYUKrC1sgd~m{rPkA z;)k7hfY5K<;?D(y@nPNb^>Rn+g7gAw_j~-e+sxqZiJkzTOj6vAez4a!`qv?l&Pdp|4ok$lcNO7dWe1S z;ROQvW3#a^cXoXI`m3Z6LvRBS8m#OTm4rq~1LB7)nm|p7Ou2!)F$5|AC8Am*Py~xy zES8FaltkSWRIo7&MHv(fTC!^v3qGa8A_zg?e)e_d@^{q(K0Z+o z7TU_G)zkx*ZieWJ=0>4VOAu0_0$*z@%r7(!B3J<3|fc~EAEX|1FmWfmWP#7@%l}z&yN@K z^w3z`TPM?dxPVRgYuE1Ddq2dV4}RHuIdA|0DqWqIE4S>M`rs|80yXPHa%lhv7FHOFNT+iMKYa_j0O=4ypdjlAmMCaWQFU;l7vbA{pcl`w-9`o8lHq7ERgc_S z&(~~GMHq;Ph$w@T?K|;q8>6b^#u6E%AO<2OkB^f-4gd$F1{{MVXE}(AM{$qC_rP|S zhZDdONdhqgPj9!-51i}V>|s3AhH2`GNQ03qeY`O&0a>Qv=Zpx12%=$}5iuhET~r*R zd9vqW4-TWMLNOFVG9avik%B0U7Dw_wm)-j~`oRCTC$G#8x}Q%OL^~R>o^qyx9LFGD zlFd)8B-#rR3=RN*EOuKq#Xl8$HlX2YX+=xP&4YK`o0 zK}WB!{>%(UcdCFgnT9 z9xca4S=dz`y;^U;<`8^)rnpl0=RM(m&BLZ!!*~FmG|w^N?%m}_i897z1PVln7w@G* zdW$j4Mx`*kX-@?9AO+syg~0GRP~&!>@r7=_2LR#MW!WcIty|{Ui5FbB!;S#(@c9gy z4+J7bXa{Vd;c}QTAOjxJH|WSKYE+_vLJ=|Uf@+HU3Mfocic4*I@+Snxj}cWYH7tPEoF&8r@aY`B>TSqkO3AV z1QddjNfZKlFtM$OG9eilK!FIch)EzJBA4ciu5&sI*UNKkR z27|u{2e(0`!dFe@)Pvaj7(*)@0krxggoZO5pGEGPgQw?H!^zdZ)w4;%cpEoL-&?)c zzgA|zE&13}T4dMOih)iy<^yDnFROh3l1K;RfRI?iD8v;Nh$1M95k@dYMny=eBqBwE zC>=)*+u%B1Z@B2>iStG06t;%uOtzF-#;%wIh&y|^YM0lITnVNLp4>nPW_=lkCqkQG zj(q4UAAI!+Dt436V7H4ugS!kN5_D0Gob4=&Y1x|%?wYkJ*Kppa_K+vgapRxZm*HC3 zNvx`V_&LH(P*epxrCH<(Noa}q9PmkP(zPC9I!CjdHYW=Yaq<;^!q&e{WtIfSdao_ zIswElp(MIa&=J8rpFn6RNKy!j^Juq)Ao>?oAZLuEOtp4oT2#iH2Fy@1#-{-Bh)p9$ z8rl}CT=j2!yce@h2levU9X1WUd^mf{qM{R$4 zhV5IhTb*0re7Bsu6DU}+>wcu-kv8Y6Cvs?K3edM+O07dusddUxzhuOpa<9jo zUIw?W6|-(u!y~q=b(k_;7*q?}(C`ndzP2B9_|I?LQS#tCx!19E_4IJJh&*IV9uQ?d0_ZKgx)u6@a z6(TK1LI@M8|Ufwt!yI|KmtUEGzwr|4SO_HRSEU!sD+_S z4LUhGtF|1|#H*6SlhKG!5CUsZhx4OMn)@b*d}Y9a(cVL+&1iZ#dHi;_Mu(2w9Dz<& zs?UEp0n#amF%URAH?~K`kL1I<59VgFQj#)(Me2eW052bHZ2738)dMYlAQJ=$*~8$0AM#cFbAtoroqpL`Gy_)(V8e;D zkUbPqZ6uU*2$2PjuKm z&vin_2%|+>QEuX7t??9?4bO80`6v$z6f%bDppXz6EeaAu(kEO*zoVBsoqLm$X#_T5 zUW)VTD|bQtc_;6~Pam4Nf^g~bYkm)z6(`5ii@{Vq&VqoSXHI$SK8*-63dsopdU?A& zyz_$GV!2TE38k%H1opgt0!i1iI1P;T=k|VdzsQunuHXAfi1f)<=g$Rm8 zAx2gOFK(E15G3a)jFobNZ3LJL>#o_W5%1&*bXhd^@HUq;5oUPv6gWfQ_*ggTxtd-M z=xb4w=AQqV1Q61gdq-t>XyVBTt%@Df87xc@it*@V4Wp6}JP`Om?$Go?0-_s64W3^P z@)|stccq;X9ZKO6MW~*eA+@ps1u$8R2TO7kMTJu-;!2<@;;IoW-YQBmPf^zcp$?7~ z`xxbhoc#gh`LUM|TaV6o$AAC=N(le~i5WKqWIJ&6R~t`_L{X+l#(>M@3-|O*e<+dA z1VPZJd2OHBelFhrbLSxcg8ym%0h$^N{{M<5bI(ebnqV|J1`g-hvbN_Hj%>m3tYetb zb&0`Qm*pwN2(dzd@xbrERcMU#eZ1&))^_DO5Q!($Y&~1X<)Q2`_V4xa`Y6uClX*fk zK!B1Pa*64PL_mmxWS-sZ3V0XixJ(N1Vehow!8OiC{nC5^Swsyk0IwaDIT|2oaX_=s zITRAVV0r1j{;r{b*ihw7#etz7u4Y=4Oqq+v?rpQ1V}n#zsoT8dDKocx61@s@GQkAG zrs;-Ss)(v0H#0G|>gA@l?0CFgl-@$%6D%kw3#zG*QE(7JXB53xufL5=JG;9E+Cisw z<;bqvic8^VE#6(+yg8m9>h5OdM#l2{ZG%#zw$=-(>o28Uo~uM&6beRL#j;uv2|%UT zcq&7{SDRr=Rd5s$E2~gc8Eu2qAVYP4v{o#5}n)i7Azuw{cR=u@+^;Z0K@DrT3PBT4CZxmFC^BUYfpPr9)E;+Ys6}k{)UV5CeziWPAYvjKCGPj~j*b`#UwDh2NT(t}lcT z=a`R3z3NNf7rZ+<+seRl+lEtl@YI2^2jm05FhiGt5dDTj^X>NT5A*;}F}*!!Sp==4 zVlXY<^s<3?x-`NV0?i&Zg!H%dTrntyz6IIPkiX2qn`-)-akn1457rkOA}5J_e-yJO z;t?DZ5QRXg4~rpC@=3e&Qs>)`?ZkQQp--l^TXllWofUH2{74~gGzt|Tgt)*^FbV!5 zSulX25kW#gkQ9-TCzrHX&+B&CK6_yCcrbB`X!|fX#HJhLiR(+u4FR+ACI5;anYW1) zGv@^|Kq+yIN(;`rH4z$*^H=kG{k|3g?LJ=*iWsL~JL>P7>|~Qds6s-bnWBYBU2%)5 z2KcL+;q!g=MX2xc{yZIXq>R>fdEMddw+ooGXR$|}cUz*pr*`8UYqEl_1Ek=)JhZMh zJLg84oAiFpeKX#^I$^!3bP>rta!6#0vATV3t#BLU#}z93@$x%d!1r$h$ z%a}49KhOM?ltF*G9`x~(T~H0UG=g!5_4uQ1wF5fH8relhGz?Y<*mR*%VPM zD57SaeJ%&^A#ms>vMKjK%6TPzzKf_`;RNd1Q=|q$L_Jet3NN;|=jyizA9d|xDZdgH z3#%K9ivFgQqMv==)g_K-p|U$6tC9jC&VYzh$!;0MBwS#3bavbDp2_0nr$OVu4Z8|N z76jM<1Us@Q09p1y1hRu81q6trAwRJ+$QlqfdDGS*A`pY*w?(|fUip($0jdV5U6Mi{ zWKS=$uR9a@Oo&bkV4zt1rbm9g-xu=s_ea~<&!spaUqQFHL42QZu;(z$=sM1){5ljU@`XXm4hgjb2c)7254zboWO!gZ&ub#7jrvMbQ zd(dgujlfwOVQdTLU?4~k52!oMpvSqW-6ld1CQ23n_509L%{1b1~Ly{!wgtuAZI0$KK)_O z6k%9e6zP@-S{d^)oeM0T7}bT5EXhMj_|~VG96GDZ2V-r}xcQ}p)I>xBtseNoQE~fqj5JnI0Fg!#|Nuyrm)VF-2C`b=PE$wgkvXL(RWUmdu9Lc)f7rSkjvM< zc_rc|Q{x^dKOKyn+$*0x_WaijkjfQ_PgiVtY^4WJPqlOj9oQ~o+k>l>V)jr9rplGT zoPQ5j(TRatdwf12`!^XIBO-j{vx4@0kqwEiNVn#4z6K5Nvu~G=ukP6OO-s4$oFVd^ zkU%&@UGr|wjfBp0F*|xy{49Nmhb)Ht=f^9buz+fG zDDqdcu7%n?JTtTn(4$C}HtF;4%;smD{%*%`>Gha>ugBYeXUDc3#eGZsmskZ7NH1dh zLwP|i(VgwW6Wp=~kvoV|2>^hfpeR|ijG*?91$};9dqDS?g9ZmoXfi)vL;@lF5DQbx z^DsYhE36mTL(9ovJ{X941cV4>H$XE+1-R@X<+^d-`O#p&SU$}w{uRu_*$OU?;v^4z zSG<6Ea0yP3@_EMITb@CWqs!$Evg7HB0wD+@fKAOJL$vN+obtJTcX7MUVHeRK8}LV& zc&v)3zYl2m+uq~t@A&bpI>rc|SddVV2?T@zVI)*xL!1R|7TT3PP1~+ugZp`fGw7?s z_))YZ3;f?Vq|@i?<@W49cT}Mj5J$L$LO~>zC={r|diD}HQi5pN4T!j+I zAI5|%hG`U7pnmxO1*R}lGcXWffh_j&h6d-NI1Y?3btmb*xpIQ}yGVi5K!KvD|9J|B zx_rD#JxCS0fhvA;!5vAk835owr~)e$7%$oTXm?f7VGr#LokL-1B4|55&&X3>SG4ai zprRr~KQJ+I!O;K^o&g2qgB&cO`DM+j*^YI-Tt5&1R>&QOJ4{EnFRjg`{nN(}Y0P9S zG63bu;24b3*Yp|n-UxuO<}x4z-0YLaE1Cn1TBEqi8r2-Nt1Paz_QD8&aey_}lf{(H zgpHH75(HKm5dmH(1TR}9Jh87ce|#C46^G_zR-Bh#h8d{=%^)){Bt49iOj>!2wA*~r zc~KBSfCdH#3Cs}z4%^cuH%i#+b&`Mt#zC{!cb5BcR!J9fWeWX57#fJte+ngI4YHe; zwdZ7rzx%x|mJ6lO*SsP<^;br5c9{wX9XZcEC=JRUH_^jO7hgH_)>B0sQ@glz+(k6H zVC6j1Q@Onn+ZttE+!xghaN#qJaObTM@UC6gwY?^^2@#F+>dWnpRyFUW;=v8GjUf-h z^hgzM+H<#lSnaD-%XA)4Uk4o%TsYR6g_z*GC8by;TTnPBcg+?nZPs#`*`+(0`8@Wj z?hdZ2XM8HALBi{Ft-@{2yKB{=rk}_NBm5bk!IOiUz&Rn6&W6$c_ z2o>^dH9RZd{fPn~2!T{Bn;D%8=&DBFjG3lAM4Dr^*>s7VgbmL`qFg75t)^xUkY!p~ zj}Zft7amm(kj-Z$@TFAWl+;&Uh^1LwJ%j)tV2ptQNGT#-BHD5*-!3Mbkp!SX0~GXS zSji!+84MyZn2^&mtq<0i{+0(kYk8rJ5K%!90@_4FTD3VtAtJ&h>8Pqfcf-6j7XUDB zq=@AL%7YF>l_oX>kzhn&5HF1~6LbyWp+qZK$8;~OOP0N;S6JIxRg&g)m&mll+z z3T6^Q2X5)<9cC?-k=qrr^13NN+eh{|sFGQ)i=~|*kZKX*;GXR0&MGXzGon4CF(O;u zFt=Q4W_aV47}o~vM+jQEX*_R%Y^4}p5^+tmcX3Sxh6uBUQ>IQ3(JaFbA|2p5Yu$Ut z!z&P&(tH&D7q*z;un`o40`-UyQi>o@6sjOp6)e+Y$iYGd0tF@1wf(0VFMeJbPWO@9Un>0iw*Gm`M(kDUGOHT zL_YZg3?o*J9hO5P&`D{a?hCk0-o2A&C|$-X6u`x_Zosezyj=n@W1yXuB&1k_B4?Il zDGZFn*&L#&rj*LEB@HcAlNdsV8gF9p2bgajStIj~hG3!g%mioyMkdar6CUT5L4azF zp43VKcn5ltaS-rjgzrFy5A+Y|mw6t{*LnIa{)Mz3-`7rV0F7p0R7u|7AWf>YOpMb~ z!ib@>Y*niCPo8Gt*0NGEq*^_|s5jfG|@&Vy0f0S;iak!igm`J(Vq@Dy$J(cB# z;~v~)%%~X!xAH!Fbcpvpe+jGGSF_wh#(rhJoM~TAVNK^)6tuvQSs!H`y&soHF#C3# z{;uPhG^heNd~JO;VwNAn4u79Fq}JmMqA^G9(EvZ2CbB}1N`dk-v#_YvPoLS#>jiTG z9_S<)iA5ABG>Cz%1oM{V2Q%O3^>i_nbJ?PE$^@vb9)6nh{GUF*R|07&0iV_U`)$sg z`?LtD+?B%ifINXIBoUA@qNmxRNOUZ%kI*nC-T>Tu_0GdcZ%IeEIpKAp1<3N1dL={> zy_HFp36?*>@>)@KJj@^P87KU z4##%558O~nJ%jRTnQ-)ejuXep=rHy=Akv_c2$BFn2b=^Ftw+<9wEDvXrxYCh7xxRA zlhXm)6M7*4Z$Oa0>QkV4^R?f^VJ!{N7v?)g|DD)nq=BO=Qj(y0l67@<)%pavuZGkV z^FaJ_AIOgFPVz`?-7RD<=(8id@WInu2fvs^4v!qbyiqD}SDbVLBwJ|35WJ=}LrH7m(*nxsgeI8@ zc`VGbpwW#bS6=KKH}1}5xzo<4=;MYVTr)Wr9btzX-F}=C@jV^bXRn^C2Hx9r9R>=5 zA(cbrq9<=7>pT1*;L7psZLY3sH$1d&!Ps{7#YGdT1~M@1*sEUE$+qGpxu#WJEshr_ z>PO=DHV%cw@ro#(Aw?6K+?{-J(tWJxb9Lh*As|9R10qEcVntC7PiL==0!cgo=Y#Ox zuh$O_YmRlukWGa^)*l?H@qAsk)7sd0vfOsJpEg@La@zrYKL_D+<4A0-Z52Gw#JL)k zAmh>ns`dl)vJ2Pw=2};rOjsReoyv6OHSC6jFg0NUV`c2!O(iD1y)0L>+V70Dvda5CGeZ4hYB~DIc5%L5cESWz<)j zQnD}!hfzUB^~|Uk1Q{V983dpr4@G<%1x}a4@xd~I=$Pap1Y7$To;-J*x1b3el}=N| zh$xCmAL~!=?iy*EH6P9S_M8Yp3X@$Z12f$bltRKbkxUjrKIk$6bm9&%@j=@g0o4-} zEU^=wh;`nWT`7ukJFk)V{hxP=-)5t}GEIIv*5e2g5ZeKzV(ly((0&}2UAhd01r-yL zIX`ZGUIwEqg9t#GQ$U6>tUSKUTrN%$#?(HSA|8SlhwOhMfTI{}YbRR-dx>mDRyYRM=_Bn74!A9gEXU)%Q9P!tF-4THnSpTcoY zl+NF})ygOMz_i5vMEmZAyjab4u=Q>&}rgCb&KTC?=JC!5s?-N6@WxwMTBPme{s3R9%Hf1%e?sO<>u;pLjBH2 z&;YFfYM_GyXi?;+gb7lAZjajqeLl^5W!6Xs>($4G2Tf7ZHTL615c3$=C*RM}`vVLi zL}_5T7Lw!hXM7AcK)Q-bAXf47S*7vTVYg3aS*v8zX|e%KW0E8aB$Z&g5k$pq+*ghr z?;5%U*(b~2_G@|0a4xX4QNyjo!Gy4^lwt5P5Ie-c@=e6bamT0dT;f7>NKO*qAp
g@Yi?MxV&&87HS*xCBKDs8cLHs$rI#*RAPPwEzs^ zTIt>HSiybrt`6XO976O_583{pvCPG?mGxgm$WQXg{lZ}`MATx}9wsv>G zXR!WX>?aWFqt&OqPak%(R5vF|5T-VGi?+OX!cUuwb`YFdU~+U;R@zZOW9}TArf~Ax z5RHRnn<{B=#>C?N8oR1p!J^%uajy?{w(E~BnYIfR6;%~?&FJR3+?_Q+A}T=L0J^TH zLEgG!2+J)hz*dE$_mAHqh91X<6PvL1#AHMua8zk>SsV#k4Jg%tX2>BZy87qSKhN}a zAn79!OK*1l1|C<#@fPIRC&{lqX}=2I=VMNM2EJOy%$|r7c-y%L?uQ_HJb^at#=`B1 z2oC5l%l!Uah_XP3MIckwecXfa`BSV7YtXr3xMA7gD27wcc*(b_8|0bM*lp3UEd*Lw zICW!bS$<#%zzt_7P>!qX4kwd#2Pb8NVH-d!8@7fgKDQ$V9T_pSP zPkFx)EIPlarOF?iIcwL$&8Gd`7`G3a&#uafCn(r3jRaWtd~{O73`*ss0wSNc!_V5M z0t7@u@sHronrT*zyEwe{AB^mjVH6u{;p=;ZI$r!jC`d|B00s>O200&t2nV|kKGDVr z!`bl$FT2^@zW&NtEj1y)kk21G+j1Xx9Uwt`+Mk^RwClR0n`W7SK_z@`U(;v3{F){* zc6&3UClH5jFH+SzFn7O)oVJ=7I(yF^I_n-L)+n-s!>f9f%I>*^;hR3RhWkwsWS zSm`=4xfn$7$qYDdSOq}5SvQ4{m6BNq(v&Z=o$MUo!+*ovq=E_r0@Kk()E^lrAp2@Z zO$3@uMY<58hTSD(9qp~lE`>04>7<6%GO4wSL@(&usGIHO(G`Hg2^K75RY4L0s;a30 z`@H=j4kv@)3>6r~TRP7W@fhIcxCTaO7&2y~Ze4QV3<(XI6+pshOg=T0i}9QR9gdb% z0?81&HFD#y{ijAjIs}v`t8%Hi9SfEqKIojoC-T<9ZM#lU!a_3C6oj4*@7|uC9<~fx zV6B(g42krU9^!d;<(=hHD9KMR!+d9CMDJ`jhWVUtw&#vC!)#eO<%b&r^)y}8JQzq4 z=%O0sW=t8%t@M{7ND0?BgyIs7PcKgknHS57af$~f-mwz<#wHaAD0udWs^o+=ium>E z*F5@f;ncu~Rsgb|oWNnv{FyyBgz(l*ZT66r)CuM~K;!}mu5o|U2}qm_2qDawDkzi1 zp^zZMz?ge*mUU#KEK#EhAju)(GC;^g3>2ZcNk^b24he(=q_RQRzLOz3VM!Q4AsH4$ z;M))e5nHMgn&r%0$qW+&p)nw8)tRP4ff@~#t_H4)95Ynk(@Z?O`C$WSILYVemRFhp znKighWQ;zhh+`bhKc23;GM>1+ViArJ!oOPsPa+Q^c&P=2XHKn#M!ze$6XW8XFmsuq z53&=)v`{IcD5DUB5=T?!Y>wwXJ9geEJ7r^}yvF6644r@oJcY6E+IsQQf-g23_z)t% z$nr*4G~aP}PUsnB=-f0ys2dhAZ^_xYuQDwFK|{3=iZ>pk;oNsPv@_@$cR9Yh!rB1gRuh0HN=w;-;m?Fb^&d@2v7#UBc?QHaf+nc7tWdOc~j5vJQ9HG zUe_whq6TN3NM3w|gz@^(y>gnn84;d(kc#l)_QB~8!?1un%yyE2vg|uX{=w!iqAsVV zdNAgp0BddlK?7YE;VJ+^0O){5*y+IAo1nd^W39;W@(CXjO&a&n1Y-{oHU6I`W52NMa>NPP1ExK%9zG)-p;7@J{k(KXflwrp zbW~dVciVS~3)%J4!~g^er#`Iun-sAMIE9s9!cKCCsNHmlf(4Mv9CoP=Q35FliPN>} zB&}0_shKR`gUMOTdK&+I>+;_DJSDo&PaHfwx)EXsVxik35KG~G{epsb0eHW1^nfCA zXm^fR3n5{RJA=GKOuIDGz;gY_kWm121Mkht&YwKSB2X&vZU#mCQEv`Wcw4UCNLnn2 zWLH*KLc{_wf{6Rlh~*s=F^84BUlh5qnD)arC%e}Vo7U@%@NdI>B}EtTrvX{3gk6qE#@89j%hyqmUc#*Z2a1Q5hPXhnY_6uIN#t(#(D zo+RaB&dSorEhci3O>>Vc;#`RDuDt!0ZC&vODoi0bJxXp6B<2=i!igKNg8{Jd*{iKL88T`Pwd7c7Cx2%K z3|Jby9EKieO>Lek0U~d3uyMYhY76@A5toj|u++(IX?tn|G?s9Md-s%QhnNc9tV2Gmlq4qN#Z9)oiP`Mm30qVk}0tVdG z-A^*3xIVbnWORMGz4^a`qoK5=V!U>k(s4utB?&uN>EiT+YziR7iGwKJS7Y4^Jm%(A z8Z}l{L^Y9t?$pqU8&oL9j7u6VSXpJ`HIc33Ma@h~`uzrK2KI`g1IiZAtgW=HEum2a zsZym%jipA?rAn16DpaXiQl(0TN|h@rRH;&>N|h>9qEx9-w5e-grAmrcw$h~%rAm}a zl`2%IcD@;2A0B1WJ-bt~YCf%Q@bQ|J69dDygXPB$pHDnAA}a+E77GK*;ol@Q!DAw# zv4D!J47BtUx=qXJ?tqI>oxG+n0RZlEy`lyo0OVI*(`29^g7?i{Qq#<~Ym}c(Gkw*7 zRhDvT!@Fw`jvR_CfO7F*$U5zWob+Mk0o%m-PGP~a6cU&!0fq8qidht4kV#cgi&RbA zF|}nG6-#a#OhqUDq>iAjqPQv|6Dv|5#k zFkwb5&vnV6@bAAkOhqL1b6b()<%GU(b2-XkL)1-bSy{Iou%v-+y5>MKLUlodJtn+g zA3jcxZI$rtc-Hm`UQ1`0%sRU$DH)vOrAP!$-8Cak296c~ys3{gZ@ zB8*lDBN0RqSb_{i1rb=rBNhsZu^6g~swj%8DysxX)hH^etQAC2MlnTEiYh9sQ4vH$ z5f&)Hw5b@yh}PRwSg4AisHluVR7F^Tf+~p;B8aFgK@p5tj8$SFkU&O71|U|%i6V-K z2nZm>1@@%`Vj#tf5k(BPELf*VM00@PyOXhmuOKy5L0K?IB4A7~M62n{yL&L%I%_p*jt|yD65t1hYc=h_TX6}A| zTMK9)k_uyVGL~pcg`>jep-uzR0+0hFvuyq#q5$bII3l5AmsUslT!#aZWrnsX+l<8V zH28$mc#y-$!2^Op4}BCc0D|r7l@S< z;7?J92ei@xP`^p7oTilo4@5zpzCoQ7wi|fn;qufVbE977$oY?dj$=1F%H*szFImHz>;6xN?IYT4w4}FdYH~*kB2L1E+iy7BE#1 zL0J>tcjr9r!^@`6eY)<-`drIoMnQY}`SkCu1Ca!;`n(wCi4Ks0rDdmlFKY^K*NSUN z*{_A@j(GOVGkJ~Tsk#Wrw~?IO>4Rn*Np0k8cP-1yd?xfYzd22lm#wO}$aDj!g+cFS zbEQp-CnX9O7QxC8q$zN5rR1{36o8&(D93Zx&$cUUUzi;3<$EpoHpRDK4q1_bJ19P! z*KXcS2g!fMQCRTSv&}_)4{wLV-N$Y_-1>kNOXML9%KmhoZ9pGnSv|MlJlcJT6I}aod4?;Yl&I#v& zU7a7p&!Gg4lswl=PgA474!r!^*+;VZ@ORSKj~pOLPBv94ISz-~!M)}OS?S~J^2d$> zn(xMg0RZ%r05_?_cpnOO%=fME+>ZwY3i4IwHM-Wz6w%KO8XUbPv@^1)y%Zr;G=y}? z8n-;-peptqmy`;v0~%nBrYEf;Qia2`xD-oa5zLM}A#}FDqTe&Q)AN>od-%KEeA{Ga z0D?k;&vgTA^C?EBY*^`1SEp`{*FoPr%D*<-LqwAp5WG9X(cn&`J}bjGJvZloh!GGF ziDMkHn%^P4Pi3Y#+B+qx=Tgno>>X2y#BGKsN5?Q8PPfw9JiB`BQnx!=R9;osu(k78 zgIm8>)$i@S^h@hu-{B5?1}A(o1zTvV1qdRh&j$nMsvwI=K|q0mm5(>&VY02xbI;8K zT@pwl8M$&SJ$?Fby?CBF?WgSBAY{nvrMju$UOa}#EkG7gPZ`6CDder1U2wzJPolXP ziT|uY&J!=dHO#^A@FF{y?albNfhD9%!((NW!u4(PgcLeM=%B!=hjE&4a)VumkQH*&e-RC*qzZ`S+ zbgK(HnFD}4dRDZ71cqy7$RKBzhN84hZtLaZV(LRX=~#yg^tU-8Rdvt{0R#+g6ewy- zuzmH_t%V{W868_i2IdNYgLg!>FT+mzuP#)~Q8&O-Ye5_4cLIRG{a?u?FSa~qZ@eE0 z+j?_ugYWvogJCPk6(jALFjq|vh3E7nqS-6X@42VhRdq>f&iL`wNiV8IJ+vaaHB|IK zrJak`lOJsH(~cYd2)XjtJT=mr@H=W{={anyTUzDHnCi9){|&ar5R|HB;cFm+dndev zd~yZKDHW;-qn1x$mdQb)i>V-^BQQYB0b>a%5mr{nj1X9`k|P)bX_P`S7%X5Y2n=FH zg0T@;wJ3@z!5AcxOetWZz#$|Q19S_IIPb@=h|b?n8Fl)iV8-2UZ?y~Km`=X>x?y@Z zi>FIbj&fld=_~A{cq6)DoR}U0gA$Gj64eoF-e1}0<;Ohn*nrM;PS?fXTVN{9l?GVN zb-Hh*V>LlCLfDoqMy-|6#{x)sd8Wr%xizG)ixyVAz!y8}S7ympwq*d}jW@wUaPsir z3MiW{M^^A|2ByGHK0;|FN@V4`f9anaN{(gtj$}7n7F2V{ghEeFx$f&ermkp#4uIc@ zSO1XB6P@Yg7chC15BR>bO0< zdzRKcNSz>!$lo~AF@;qySw>0**oYrX8Z-`yzW&FAK6uu#y2^q@u`4UzjNUMG`ijan zwOABNg87ZVK=s;FH@gXK5$7+L9IrYgyrrXQZLv!$dgQpmr5qBlw6TgZIMXdM%CTia zw6$wneYjw`OKGGliprvAhOmyT6Pietd68w<^tbIW4^+Q*by-5IWD*TkLONCfK&J({ zR$DG=C252*2pI*_c@^GTZcaFoZ*Mf=JPC5{@V!xb( z@^sT!6`km^E4$c0@7000>!I=Mr80(vA-jF9yF|0 zAPDhIe?^HqWJ6*Foql;_IO_O)etcD#H>ZF%XJ-wBEI?`xS(WjfVnp#t0~T-YdzZcg z3IQsUNYAor>X~rt>-Rm=wjYyXPcnEs{10aZ4Y2f74|liMmJe6b4;({J5n8kA%s}gq z81*So6`ijJP>Uox3_1DBtxaM6cX_9JAlS>uPnu!NvpfD;wzu9-F4rLF<@{`gx;JWh zD}bMNvF`<4u~qGggOEf;NfAt<0HM>3C%Xd@Lvfgjf@0u?)5*0_M3D!FJbQHq<@b%z z$4LSe_Jn?oIdR?BkHa6A=avEfzJ5IXe5gwm={LOOS{VQjL?Fz;1bbWnj+%kW5_bc{ zD58DAMHANMhf`0K&qqSb~Y-%byNg}j;(mxXDTS_`MWrm z96b5~)ej+o{7jC^W?O-|9U-6|nSHqD&gK^vBB&H$4CvDzXHJv1ufk_K?>n+u_aTdm zPT8XjC)1ntAUfyAn^%C6#jq=6$qk2=T&GE%KH!m9l+3l0st@@vSe9t?zhKg%K|(( z>1=DD!b~8{jKs6jeuTEM3Ic_IJwgKjjEn`C2>DH{aAHpp=p-bPNjsmakEUgpK|E)5 zyon336(YJ4Y9%@zZ(kDDo>cXm1wDvP1_Hnl0Rbj>apjY6n~z&m_Sgqwzm4v3e$sF^ zGg3`y!vUh$+FKh`Z;T7Tn%Z~fp$o2fOv%=62D!Lp2k3n;J{6D+GfEf2@#RrSSTR=2a zl@Ig@{*owsR;XHYGAh-)TNCvm{qW@m(e_TPs&##o>+5Eaj=w$|v_Yx;mBvViYzj3W zHFiU$lWcl7*ON{LW>7b5KGGh3K3b_4P|GA10SaouNaK}(kEy%^7)}V4Rw;Fm#z8=kgAA&M5Eni-4kM-$A|wqo^P%<- z2?yBg5AMcyY&8>C+>Xnszvt21Us@=lSgbbW1!AJx?f6BZ1D1a}ha=gmd6AN0GGc;D zU=oS^&*^bh2s24uy?&5W0LQOwz<^%T+{e4EAAa$c119cs zbqICbG;IyYMUrDASW52GAjOD+f~gUJu|QHq6pJJjiVGsegi;DD0bro9VHAW?EFhs2 zkz^ErvMeNu1Qx-nFcvUSkq{`;-_^b%ph6(BE)obQt0rYDSuOr+b*|~wG6vUUN^LAa zwC$)DK-Mg-sa8%Iyxu?-3P{Mb5}*Vi5sEm7g+WiKa;evqesvB^32pT z`?dydVaz&1*X|Em=zv&=Aj1-NnVZZWZ&#*EFLUGRxtFH0X1*PH{=RF65`2zYl2m{! zDifm&U<(K+DFfLyZ$~oi1Ab%U$)XSjlcpKQboO>Q3f~ikjBp{wbsvlOFLR~_h08*X z9dNBS{Qhp=yBlS*Uhq!sSP#AZkbzhhWy+6dy3C^V{e2g>=VNK1w)lu1HtiHUBTUdWdWVIk?EdnSf*=30L1fZ)N1M?VaCt zv4aJ9C2a81P%`0OPe&7R40Rwx*i6X=5I~RtrMJwEoblCH-krEeih4PpbakTA`=045 zKA)P*%!-ZA2%mpPK`vyPOi#yiJjBzvtQiakKAWz7&O7c@=UDcn(=o7OGxw#_3)5MV zMA5aR#`drbPI%AlYIZD->SjKysUuoUh9*XUM`l8a;k$}@kmXK@MRnM!5r7cT{|kUN zffMo6hyr0i=;3q~K;pnGWCcM0^~zy9Iq#F%_^%Hem;kee=7Qu89EY1T(#hwNbjrT1 zfnJzcfg}=%XzD+r$12s$7eg)rp#jw}cyOtH_EH#Hb;)BMy!vDVLF`Kyc+!mLr8qTB zQYjjCOir{4&f`^mutJI%ZL|UhdQ=%BdY8+$d6u+;xx_SAj(Z>{f{4%+?9=Fva$Tq8 zwmXHktI}kH>#Ep6{4HUGuF1aGRDv>qNL#5vLvDSDQnzkg+&Z*_C;O@l~ zf($X0Vygv&VGVe@JoJ3OeLJw|bI*n{5DE_qzzJ^ad?SX(ck%WqHsf4~OcV?|vJRwc zg&PgeBm`;-rbl!RksPc6$L@wh&uRJvO8QPUsR)KvFRJE}?>cqoQY~u22$3xgdW{np zO+)s)ep+v}wjAVuP(=jt1|F%14m03h*z{|FM5N&YhS)0?kOdC|P)WVEi(CaTa7 z2>`F?(2(q>A-$ylQ9vXb9N}sXVTBXDVNkF_k+kSS`IPVcgM?!gtarx~8D&z8J41+c z2J|b1j=bCe1_jupZ-woehH7{MA3EhC+NZ2|^4+C5k)#$sl*Ux5^eRRR@I-FPLFFyLS?t+{q>E_CReQX~Vm2~Z7|pxE^r>6m(p zTXfZ&hvCCAhYXGp6L^B;$8gLzG*QG6&xveMRaAPdt*xq}qAG}rq9YB02fedw6bm{I zE*b7ElIy_83Wizy)!oelIA?m|UpZ+u>(|3f3kV=>4EEAqiU1-6DDkyKUSCM63wEvW zqC)q=xxgT1JkLvzh#~WJeqHLj(l|lk)$mK#@uYzQu6pNMGG+e?rjjF{<9qJCO6$Ea zzjM~)YkLY=7YeC~2%Zm(7I9vhMN|#$tBe>ZW5{lH8)A|;H03l|>Qz*X>5^U}I~!I7 z2D=AYYvqnw@qjk!VV#v(R@h^EDaMw+1Y2#}a++IojPaHlAfPFh5G*7{LIpx-NUB;Qgk-XrF<~T#pv7Y&6@ZXpBx3?1 zBt?=$P(ctBQHm(Bkyb<$Rg7XHB7(p~5;6jUNeC!G7KIW5tWZ_}j6j5h0wjqN3=0b> zAjyfg5HW_TfQ<;TRzM^`Rtq5kj8%yQwnBh_6%qm@RRNMN7P1lq0zx5>COCn-0YvWE zhfig^-i}y#G4kWx)7drYX~j`fs9105$0MtT7zKq?3KUT=R8c8ZK#GbaSGbFsO++rl zJ{hu3AWf9FgR9)_*E62=PVm!-odTMcF|x^xD9%(v8E41XKyDrrJe$kHT5!PH9sbj( zaju(tO;^XRD2xo?x%*C4hnhC7XRD z01!91(YN_w#Elk^5HoT-%c39_tz(V z!+sVAUtW$05k@FBl_w<|cgv>XdJ7uggPM#0xCjCVRY0?1-2~Q{1OqNHs-ilS9Sv-v zuY$%h}B3@4MYkfvSX;9ncol7OET4MDXW#5h{rTsA5I_3sj@_y;|fd~Q`63OxNLPs5d`TI`aH7% zF(oK{%HZ3#aKcA95{QTq6DiMzl(un%zPryy&x2HF&AVcY=H;O`n9?hF(jicU8<9Z> z0RSeE5EF^TKfWmov1urI9>D(hZ^Slm!hjIpAZ*0+Zvy~Q7fms{Ca2bZ)5@+g>g$Lf z7JeJeA~N2diyfFYba_PGe0X>j4^b6F01YwW`3AfLgro zCm16EQ>-p{p?AL##=kpI`@u>GeL(yP+u@5j7$Ocbi0r87s`cj|hA+o}Xd!rsVUK{qlN=t`vnwC%!9+o&OBuh=c;6&2c<&(um^;w!?`nS zdHt&L>r!a5r-UUB!GD69K!^gB|6La@B9Ge&P1+qH+CEZXYOfia-`%{^*Q^8N)Aalc zs1CF-CZo)6wTqJeI0NbYJB|0$X^f+=1VYyO_dq@^{4{sx(l7x!zb~?7LNYG^04`2` zq#L;t@0Im;p70yBJiiNDbsODU%F6g>lD06rYg(5W_Yi6T$KD?l*KD;!1wS0KP8o?} zfF^TuP!xRA&)(>=9!mxogHe$VTa>nmQL6C7JaY@qJgWo6j3@c z@=bQL0!e80OB*hk#_4!STG)yzNbaN2zcR-7La>S|!VS?5io_CiusWe(_uLNM4jAf( zXmrkOS7M3ZgcpKM_lW~+SXeK<#sC3C z@GUoFX$%EDezP~9fe&+czt)2ws49G%w3)@;l}qaUubk)ULSOF8;+=@Xm^k6gt%p@CL20mSPh`cG!wN9`{2GuMG6 zB-6xeuKN}~mw%2~tz+px0xPo&@Q*`ZgoYl$Oa`|wJrpP-I81Gv$iCjZdpT@=&k)dl zFdzUPPbtH%K!*`gM5^oMZ%wT6K#^2;%XW&$iUDatT?be<-y|z!u-ztU0@WpSXzSJQ zgYO!!2lOYusbF}M#2%kECk@Yxxh6_+hHpj@L}VzHEkQ@oMY}uqyI+rn&i@R>1@i4P zA9SvsAbU}}`|`A@OftIYXqUT}!WwBlAZ|d#qL2<@YYL?!>#Ntu@>sOfg<*L_^NQhq z@g_(1bE=uPtsh1Nrb;)Km!B=tJm>biNY#SvI4k3&9)@1n%m;{^4cO|8Nt?7SS67!6xJ=F zv~9Oxo>{mIUu-9ZHIu?W@j8-av*{LFIcsQ^-gOAY9Aye`70_S6Koyxv7CV}z}?D#Ep=8{1I01c*}*MS`qFVu}dC zimL*d5fO+mQA8CLQS>R-*Nt(x1D0JJczZl|z;rE=2KyF1RGLnVE%UW|A}-m)Ff&K8 zT(kzxZYE5`2@Htfv~`%g$i%T>Ns^&kVrmoFxOaNDx_ml&mey}?zWop_6*xf$if5Mg z4Uk%5s>8LRolsp2M%U$W=kv?<_IEtTPMwuAAX>z-7U5&YRyiCe zJ+}HY)e+S**SM%IftP=qrRUgbTJvjVu{;z}FDtoWZGQ>0`I-^|4G6>D!JP;~hy<*2 z(yMt@HpT|y4H8lnwEGO%mPPU~H(Ox2QV8M{XmII)H|g8cJijH(nvkRwB9cI)ib$d6 zUx&DSzmcqbyD2&kD zm3ATWVFR6zxV1Fwg2?VbMTU3yqb+UMa)_WWJQ>hpR1`FTtGzSYdmEdoV3nQjvJi*L zVW!9}{o%;K`RrkPs zO`Xo$!#Unyn>QJxJ&YlMc7%s`Ttzzj|0eq+fy!A;qw7v-nazx2#?P^Uk^LgZrYIZOCGB2!+p9h==A#e_`TYX zVHfc1@A3p9oMs9L90*W+pdY#%s+o=$&op9Z3Xq&XXndbU=s#n)Jurt4cWQFP<2a|S zv(4F3{#q#W9m3_+Nzu;7&ls#&kvo2X%%eDYtz`&s)0y%XHX2cKHSSDS-!U3uJ(}NE z0N|n~Y9y-cf-F!7?G!` zGpD2}9M?t$3>lp$MkBgVhl2!yaEN%tR3es^flv&iVkbC`a15ZVHA00V0Jtlf4u_y< zgVyy>b9+%6%>J`lb#?4r;Y6yH4o%kP=gTYhr2sJ#U6|#=tR_^+`X^4{C6y!GMs`#{ zFi;Du1$P}tL8z8u2LyLn1I8XBB50cRHi_h z512ZH^9iOpyhnzAX2K3g3TT41$){396+kzfY(Age_pk0zK^dF}`Y+AaKiQ$#D=C2g zQ(v5RpY0yjrExB^=^XHCIqtge+m!=sJlJ`vCP`spZ|}IlV&s9dTZE-Lc6I@W?IDNw zih>TQc0in79KS=^1XS$u!i{Hdql{Mf(4&;WKu*%m@f-DiE+n`w$73OYbQEB1jH7l4 z0RTb55gd!m-K|NNaEfwp5QrhoWkkB^iav+-(8h;_Y%*6XhR})H=E_TDWP6YI5*G2=BsExFAZt~A$S2x6hK0D)` z^Aol(I9UyBCyn|%z&wHhV_>-*7OPd$ki2nISG2S3;VN7N8CV4Cpv)>jPPaS&lX7`< zsF|*vBM!r!hJWX>32TM?U_v-xJXBulN4%LU_l}#35E(sm3(w#YWeGzbhcvXsEGABrmz$Y2D z;22TVVjgYt?e6W`^TL`A<==@;g%Xr3Xx#ObO&$C54QsZaXI_gH7^!jZ`C5)XlMzc*S`0g z0BIq>-yrSduP=SrBs7JftDaXhxpBhWcY$C;(z>z3a74ne?Oeb_)|l51N))3ILk8=O zqq79x0a61W4BT^`dun;DN&*CM9#!<`GDTuynV3{;CMHP&@|l^DtkMg%O)NKz>gD6d za~#GRV;IbtGYjs}BGrd%=CWm>kwFGAFP^@)=GKmLeJ!T4DLc;(JI(KNmNIl>^wv4J z&iEmddf|u4Jwz3@Q0BRLmnRai#AYuK%Ub2I&be}IL@jR{=aW#Q9F?8yI9iTSB{BsF zM95K*XrhpWq{2{09H3!TJOvI0kpMRcY8JxAh+R`ogEdGd-&VR2gDmL47Nwhth!It9 zNL`p;G87=xCLDwUh+>G4I6SMPjmaGA04D<*@XfXEAoJ})pSrJLy?5oT@xLRd$3sWA zQaW~8gS>Kew}(XG5Dv$pRESFG>}+;njn{t2t4pTc#024H0lt7?piV9L<;e$UB@E77 zbYjUk@h1H>`-t(L;_f2wpgL%8pHBu4zh*@^wBrjKTLI} zb~9s1E;YLe6bcb~li|S~yZX7V+5fG^KqNmYY=OT`sq#*j1PC0oq*g#k@+6-si2?xx zt}DAh(bzO1LEVsNv$*57H`|a1I6LscBnaI`*pD5=*G0#Ch8!;=u`X|E)W8Enmp6P~ zx-i!H9Q^!u0D^;_!D@?kRY&Zo9Gk>*{a$Iruz1?w{xD?-B!L{J~$iXY={CLd#()~%H$H8Hxb=LasnwSE^h;yXGx3{ z8XS}jw$E;Lz4SrGHo572_!|&5;cO*7!Q<7Q)=FV|^I=C_Xav@P+A=~0MO22g_AF|% zJ<1hjk)P%MW)AD(GhEs{17}mW!Vm`J`gv9AJT)W9Vv2U&P!bE~V1P*F5}b;1z^nu2 zR9S+J7z$C4<8^Vy({a03gYxU0_ffT*!{9$ft=z&O5d)4lq~KDGsauTghu>txba%7I zw|xeVRn2*E*N#{Z7|bxmKQQpFWXCzdZcw^26|1X;fy(P>-=`)-L0IHPj40d47mfm1 z7~pVEZk&^u6Hk((TxUaITxC~equHNYo8=m1#nD+12?2>gzBaeB=?eTs-(B~H@3wA~ zW!+p-!*d~a=NT;H8pLm&b5M0{i_5(8Dr)J2owCeECkC-AksFPM?$Uq;ksE5AOO25U zqL4B{d(?%gDQAz@>lfFvvma{{^*=^8q%L>T8BW;2{m`xRGG2hx5ei0$P6M{JqK2feuUobq*g zyM+f^vy>PqB@hQPLM-wMNgGJ^L+6FNd<|+OI(?4-DS`GXiO~A;Z6Z+A9Bk`I} z5z}R|E_(D8*XHK#w*^ja-^XLrhQdThvOz_P0?08G@rV9EKOJcj)g&Mup&>q+3tW<< z^Wq*aeyul)k(@nTr@qepwdc%jMz?#SPVQ3G=q4WnAVv(#2sNt$D7#ehz~);y2e$UiRh3 zZ>zN)$p0|F=y#7*^!L4_^AbXcDgy*GFM4^QyfMm7HB7On2Kv{x#^sOo z#OvGM*)@p+X9)%)x>OAOKd+I~+2*I0vf(=^=F4O8b#P=2IN;{5Ur?Ld_i`T9%2q`o z5MWhrV4nUs>RtgKx7qCfsf=>? zaz$ruY@|MzC?t@=d>Xdo^vP60Ji{jT`0ve>aV&b-n0ameKV6EDkez-&2j*Gjy7IdPEtUC z*$6^GZZ=EZTC100)3HK_sQILb!{kvATXdWboytMl+^tO2x17U%J3036f-bY0iVBU&_su<(@!8kttem<%lH(9~6}5%czT7H#Y$F z<=NwvRE|MuTz;Dc_{WDF@y`aM+zdV4_Oy}yq)uxeXbsla;rF>dO{Sp;T2dqwkdkHY zmMnl1bu0Y?*Ww>A^l?!309XJWU0s3c4-9{Uw)!785D)QypS;GMdWz>XerSo*IYIt3 zA%wT89iK0r-rlK~yW>mn{5@uVI2rkrJ4in3=?M`b2?wj}#4dR-IjVT>C8O6PJh1aY zNIM*C_wkpa2LYKtzK!p(LkT1i2yGTr0(k<1s~Y34OTTx#&ZDxjh!x}@4 z$f4+iLife8jAi!9Gi4PZ0Eopl>D1-G5#(~$E<)BWKmd4Fih{$Ud^64H&nM5oy$=_W z@bbJsoIH#IVrDrkz^DW=WRiq2kS3HmoM#6j9dhz2B!*QE8*Qe>`+D(x;-0JuI6}Bu zyJ&Gb_HMz&<8Iho;gahB+;q@8>|{V1gn;ynsUzl(YA=l8Y_Z+fM@?|PCGdq+QH;I4 zn@8Z@Ju&*Fq1_L?n=v)^P2_w0J=Xsd)#}P8hZK~$jr7{wxWB|Vq7gO+lfB@xau*M8 zt^7?L*=M$1vfN*;Vs>lH4hecS0gtk+jqP}cBTS6@C^C+hsC?b;lOLr0v^g|=I1Na4 zU#N2Xyu+zIzaNgz*NO9Bqn#bEiGMWX3R|1Pk98G-dZqhE!&ldvnG$++b%<)1dwO!y ze^GX!)zof2cVYO^&-%@r{4?Yl&4+~zw3+p7${B1+1UnDw*Cz-fRXz}j zY$K3gnzsAuIN&zUGzqzF*&(@g(BrU;-*%uz00lXlhej4YA7|MeuNW6pcoy^&T_D?T*0BFvyt= z9&eEtlVhJP#~=v$U-IfU^Mlj!t_*S!Ql-&Ain)$9zpzT!bJ_vTurKKhb+Es4T0Se2XaDm1FrFI2rs9N+907RI0^jw_UH8h zUfu`<596mBAHy^#b${9H4l|$@?vR>uK~RvZK$rKwI(t85GUZ&zq!zwqLqUH4e5CMH z>ZUY=xg?XJtaqsdkYIlqi4GpXGaX(nyZ6P|olGd@#VkOv>nR0cqSJqY}J)5J1K3hKUH6u1BZUlc@Pr=iJDa`slE3kB3Ug7i87f z6wGW86lTAG8#!NMJb}PKNQ*ZZ$!?CK7H7UvVhKvkN!9V1F zY?vn}_){T`9xJlNXH1vMw&Vr?a3hq6ddrE@9|`hxUpRA8uzsEVqps;a1p zv4Z={(_w#QKXV}iATU|LEQ*pU5()v)0B2n0%gyEXeEvUwo1@)&yazqLl2U>Yv;BLE1#}9?jVtIqA23SC#~jKAGxnT?9Pv#PnnKJF0i4B;{v{P^RjW^@mzTmXQkPn_Que14QmKg&uWwf|tkPTW4o6%xK?28IaChUdBwp%DT^hS&w6 z(Tyj=>+mmkD$2o7BCLWCI|G33)O>_3aRy=FVH-If@e&O`fB?xx#xQm%>^>$H=U96> zXXJ==dGT=Q5%BGma=^hDz`2kykYO%22r#*3L0K)b02Kh3kdjoyf|3Vj#fm@7?7*@M z6$BB2s9C-UNK`Ms$4(zC>S2B(b1xLNu;4kpRQ|O#sw@es59|f*J!baBgIUxa_AJw_l^a9xI9} zdP(c!-_dnG?FvmcZ`AF!ug6Mpzr_!U2?U=;0Z@8)(*E)X&jQgNui{|XUnH7X!2wz5 zB}0GCif5PefXpcSbtKffxu)9y?y9mWFZraZIqKVhe2Z_yGfZ05Rr0nq3p~4)ly3)5 zHqD;*yNu=h)T!H^keC|DdrBo7ap>S8sF#~}zR|mvm+t!Ydj5aIp1-qL<*&6j^`r?D z%rNMkq(3^M!~+w{umWw51Ymf{0;XNCkRJWd>qo**78kt(?cG#+YnC;U2b6PXE)iA6 zRsFZt++<@p@Ub6^TyeD&RJne89955;EcuL=4IQ*aR$E7cy`jRorJ-#Qf%YF9<(j&z zXcv6J5Fi2!h!7$;sGw=<0(v5s5O_e6L|FxU+G7Wz1U`;d8x?e<6bVW_!!gi>`P$_&`T{5m7 zUv^wPJlAK7=^J?MI3+I*r5s6rKK_|b=T?|!R4DGy&M5m({EIUqhPp--sME272?lBg zX+~iPAcO=%Dk}7NN#Ey>$^j7rFksAx%n_IamGt<+A-7Up+PyqHCB#b@mPgCvNXu{` z@dvIQ0?%v_WHM% z=5)xZqIjYAyWLn8f+I@rsu{z> z+}&#Fzis*F$I=j4vh3z;4E3-O9J>>3XpboNm_Zz}dw5~Qbc|Z=_lY1tj?Co-U;~T~ zZBV3BoDe8asFbj1g9xR|NJ2b%x~roUI&tN$L(9+A{#^L`DOJ<1nF$G~eYhsrH30At zBvY!@Ekb7%5X2D`#zGTG2}@+G3V>T!IDjmK$ODP*h+-<(6WawhWy_D<&sMj~vu0X& zkE6rYpHH)ItI6@+Zjh2m4YEOLWY@rYu*LL+KQeNFLp0I)Bk0L8idZG9Pa zowWC&u=J#dQz1gv>hDdU_;&L*u*vo3V?B(8^85DG4WN3PuXvD%gkV(gZdyn%dEyQU zBpv}P6{4b6Z$Vbc0hfXAkJXkO zx4BNZ5cgK}{(6W*|r?7K)%oL=S}P z9|32L{@v09K({rl@K39L9DEUXd>$2FTl<#&oG9))D)=uf8qBLu>7TYz?TlVFdCi<` zR#5AMu2z?bJ+LV&y147~i^{{pE3Z_JMemWCD}*{h!W2gN@smTj8gb418FAAH8ztOy zfaYTu%#TWOqI)B_P#3axz~PSs+n%!>5CKUK&OjiDY@VQ7yu6^VpD~x99J1wU0c%<% zpmW_VFZJFKP)(kJyj#c3F;z`0&iZ;Hwe{$VIq5Y+uM}LRREQHV81gVX1E%1JEHUMR>aaOxJP>h3SIbjl9Rt`wdVt{Kd^wD!2>cNt)DDIe;#Vi%$U(!a0J`cMS1nN zy8U=!WL#?&cX`_%xbuY}A|TB@eLHaZyl9G^e<&+PY;ooQqJ0VZy{P*@+$mrM6EESk z&qv$23!(P^WBYm0M!s+Bw#((`*!FeHKVH}*@|(NHUY*Q^T0-7c4#oLKye-dYczg#@or81M+3euXDdU8?#e_T83~xvk z=%jKSyc4t&Ps?gpIO*jf-vC1pq!M^8w~LraIb&oB0D%A=mRktAvrR~*bzF(S;TWQH%T*mn4LRI7Y~V z5DPiv8*Q^%o^}`M00JOE2_hh2SWiM0sz(l-v<5n=EHOcGQ}=^Mi49 z&r>>A*G_B=zDr5G(Yk2;FIMah|tq#6SA;AyF8JBDh*16NeV~3WI zbFRylV1J6}fQ4kT;B?0f36rLD^XQ?SYMX+v>65GDEeOAmiY3);Y~v=HPZq;1yMQ4i zHynKPgi~!rjtTA}AVdgc<>5aYBwb@BKRUZOXTs<*<$h65JxHndiS}T^Z8ztIjj-;v z2N4kpwx!inapOhy38c<9!p@i*>}D?C)#k#z8+w#bQx5ylWKl%y)m&reuFpQc-T7`g zbG1bb+cz!}zFQdg_6=``DdoDjD5lgRQNo$vs$C4ew>VW}94{x|zVZ+fG(P z2wURi$vmFQWlizis55<(t6N`hWekzoLz2#Hc6W9_bw9zO-Mg&X~T@;maj6g!-pk6sjM_Un!Z z)Ij!gUS5-PsyHgSsC+h(a|%P5=Y|))W-* zPmuxWf1Cjj-WQ9Td;X3t)a#1i#obi=(W2gy8W>ieSgj0zi~}%Wt(vLbUvGZLPhC)Q zW6}ZJyyl&MctvDI)EO+(0OCdokWYd1_4~Oe1JP1dK6_go{x3v_!rs7cdIOR}_c?eS>=&92tLVSjXjob!(4K4upYZvZY*Gi%?N<(_o55!AGAQo8#>Fa^HTd@T1ap z0V1>(*H<_2cp)!>2nzx28)#Sbv{Fci@>Ev?E8X`+Kme@Ie@kzQPe#Uz>fXJ!%q3>q;x4{Nx zc?t|E_qSPdDf}OH0ewHkz+VoS_!Bh68CVQyV|6KoE=ok^1ReMCHODfi8Xv6Qy__9B z&F5)|1w0;h8tVD$rsDMAESSIsDnr5|Eg~S3l{*Y_#$MW41%{F}I;EzmQb|+0(fc_Fds@;UspXfvV&Dp2mkh+9DZv>4-dlR0xQEW6;t2r+Lb8;y1pplY7pM>t zb4EjnB2J-T3Sy!eScjA+Po>Dx`{!bV&cJHWsu~@a7(@(j&>9)e6Mk$%xE2Y^sFdXp zyn_RqO72c&*>ZEWW%;PNAc94&FJtm&DMI`05!D_DGmLKQ-x8V3?_TWz2#7+kY6DorNXK(@|t*deytZMNHOw%cXs^P(6I9AG&Q1d>LwsjV*j zv2d`!wJ6Bs;0-Q^fCvPDO;vg0HDY>R_s*mZ#=~^OG}7F3(J_UyTF@-g+ovl@rs5ff z5KR(`AQlP`hQkd=#EK}yXqMz~csw+iFUeC4EKb}lL|XE)WsJi%hzd{=$5S;ff_Le_ zW2rVk)yl#c$uE8K2D!s2bW|r}ow|N5s?HddB03?m3~nG|$1$tU0MQ_jSgL`RKmy+5 zXp!HF=8zEp<04G~M%RwnTZA)O-<;OCa&a#ttA<9|F;OhA4@(eq^BZZFT7jZs8E)Xh z@;utnth;zjw@BHjEekZ|wy#%X4Pz)-lFrI^x_t^HDNV`EjOT$iY!LjaUMg!evP+Hf z&~pN>Bnh1yki2X)S&&LwRJ)Mdmun(OWTj0PBJ{I~)256RwRT`~xo7}{nOVu#p2Mz; zof5M-r0FoDz4YbH)(ZvY)rFuyB!fYfv}QdW>Bux~BNYW{k-m6%91b^B+XV+r?(x3Z zU%V36pJ2pO#5q;k+uF+-3u17>B_P~U5?h)QUS zn%PuDE*E`c>hplXD=+}XQ0maov=AMX>qtN@t~LfrsA3U<-ucsK2RO8P#j@#5i%zUb zP}qQ>RbiDk`P429fYn$!4#5CCXAc|*P%eS1dT4mJQ4tslo4ApURf_9*Ya#{}PDrBM zii+E&AZTu2>B8ISyfUXrwTCq7#j?DhVkRvPGr)x{bBmKHm#kd!C!H%kMsv3%fDZgb zy&9^|6+n60^OOU%Kx*3vMOEP|v;(6_?Xy9B+^+n#%;IMS&eBB6cQT(62j5nWILgzb+h7`BZM*13NCJ1o2@cHB#~-uYA6?2 z^yu4kh|}=!wx099r%dmwWYSfv#NWSVUbxIynrk(jExH^HKyHLJM#|`8@04`GJu=eV zb=Vl8+}zNyghJ@db`^VKr+1ASin@n-pEp6NmeP3gHQU%s*#%t)yWVp>M z^V393$x!w<8=yQxt^?Wix(V~3dG*bNO)|FM15}_bKMOhO5F=9gU1~HM| zsCX~Oui@kIeeZXa>h0&ySiA79H@H|#pdVk0z-)#PagL~uY#JF0l)?)~9XoY#_U-z0 z9WXY@87~uM>>za|gx)}qkT2Fv`GJ>6_pmo2l?eo+HZh8n|6LZD0Aw0|pKgqJpS!NV zf0QXAgCgQ~Si#`UrK~>U0ZI1+Eo-Jq1V{nA{nSI|2%((2Tmr>Zt~3GR@#jB2 z?mlp_U`+u)W@L)GB9lY)2hR$r_qepCV!n^Uh>}QPA3LwfUs>>^6 zP>6~fP=qN0C4UNaN*QnG!QcW}K|e3c*=#gof{gz;<;erM7^;e*fQrH( zpo%02q*6$u1%fe>A}k=lhyWr45=fAMr>=td$Ov!Q`S;^)TC$rD#u=fX!)}e1Z>IHW zb1*sLR(fW1UaZCgBv_h;457i1?$rnMJzH)C+LpIEwWUCiRQUuC^`MG#B9aLNf#Aa! zgc5P1LUeZ&bRJZx_Lb8h;(RMn9HE3~U)er=gL#uk9myC#g^1G%jZ}j&AQeFyP(wRt0X_!f1J=$-bk)x@Y<2hh$zI92et3FWRv?bk z2nX9m7AUD9Qc>-OJ2-96JWar_^sRH2AAS^`k&X`SW%!!-GBJ&zQBPNH+o)#}5hOYL zz?Zi9+LTXowrxHu;MBd8-!8t~#5naZFv?(47%`3NQ$?$(Y}FU56ns3Vx?vR1^izyv z2|4T@3pMkrZ;cqZ1Oxc?W!_=i@uq(2C5kfxv%?i;La>Gc#mHIQ)KwI?D2b6ps*rT^ z@W(ZPIn(p9Up}y2@Br~P>WgC-Bt}&P4=e;JS=)j;%n}(CC|{rm0R++1i1fj@uKiXM z&955*B%Xa+evN^l-?EHb$PfdaNq~qjgsQujL|N9iU1in4z@jPR;E_BE>>?sEBWRbR zK!x1Fm6SV94;#_6@lg{{P<6E+w9eZU33AcZTi?=`SfYziIB^|C`br1=zBtf?ihoA6>zZ1%b#vBBB+q5&j=(TPcJ=s`(by>#qY%KcXoB~ zIO)mFyQ{%lxgf?Qgn)EGsLw~M9<4Dob^H8Ys_4KBV%H@1912Usgml8M*W&5(Z}a6g zd+|>4C$s!_?52z4QgEu@!^daMb4Xyp_XH7#$`zdI5SbA^^b;lBa4Fp?bkXVZc#tH> z%!!oRnNQ3cLmotz2#gUdUv+jiu4+q+MrgtnX#;yD)3Ql=!^T>4#%v*x1HX?U()lb# z^q%n5HmvNszN;txw_qa#U^s2G1L*GWh*b7tfc4RGcIer0ib{nj=GW1U!8B8Z0BKzj zaN!JnmCs&J0EWHvR~pJ#BB>Y}3iYsW9 z1X_tANC?oM5Va@;z*Yh@N>Q;$g{6NF?%@OWU`TzZJmLJpQh+}o}1!2u9|xRw~B4MPiJ1eqWpOQU;`wsQdt$mN2d9T*5{kd~w)AS_T| zq=H2v$g)V3iz6p781DkT;D#hn3=9+~gK&a`MnM+UoGgl7llv?UpbXW3iO7&kyoX68 z6$sK=0BfL3aIVH_xiFvZ!p1TooPn}DD9L_;KKtV2*~MsS%5tCI54E4L=qr~IEIZH3@Iro5JVh~u*?}tU?NhK1mc#s+%H{W z2Q`Hwh))=Qyone|-3YLNu!6u)6a@t&Pza<_F&V@F>XP+DL=tA(Lzjb5SGQuvm<->2ud328{zM~xW->UOs{rU$}-kvsr z*9s)95sSKXaPg%+8n}8v^inRIYa14r143~%_xDSDs{B1?!iS4 zj+1Oq>hQ%4A=#3O;%VVF$x?8Jla$0$X^3#C%K%v+(S#}l5=~W|m``7VNX7VCs{GAX zd+lmbsb-5RR;Y-(fIvRLfHFc5Mgj(eR2c<8buPI`KsdlRODZM>0mjHuUMC2+ToEXW z2h7)U~K7yfO$ZA zEQZLEFpz*`7Z9%h3j=|4IO)D%4;;dQ(<%pn-9YakJC3q}=sk7*vQN5oZ1351Z&jL~ zbQbc`NejY??wY0UqEI{A6*Ru?Du9q}1j73X9DsB{xf!{EQ_ob$9XeoiaXJ!70i!ui z6P?#HBm~g)E=AMfcjs53#6Arj;gpoe~b#Kha41O10)1d&3jL9v7_w^ zmdb?|T(0*00*#L0Pf(;CYF1oyJ(KbNZ?JdG{|EvLf_po0#@X85PA`C(U>@-J^O9A6 z2fM<-H!U#rnS$sN9h~*0Vd8t}O@j<%@iO?lCTk1PLH?F^x(1(?PN0w z7Ls_lChp9E($kmAf1`&6(Yg1dYW+a&DHSiM)jJ2ejJx0E5}5`603fdFxf zWDnBc10wQ8k%8t-phFIi&*jdyvU9CCP(w5EVGkTBw5WSXoEtk%evH3E8a8HYiD*2c zR7=jQv|Q+_oWA`nC;KR0f$L{8UCLZT!9ED{$M^l)Gx_?N^f22d69hZ{-{*a7oMvZE z`N9_Kr??W)k>`dZa$Xtpnd;*L;3P{@cH(K1mF5hx4vQ4$j;k&2v9`*jRv1^GzB^7^ z%EFvu&6SlDqK%XYbx!WEkya*G->T>1dPxT^G}=0$6h;}xwr+!k>UU=k11Cf@nmvBn zbE&kdJ`XzT7a@$)7zDgbVMpGoq2|+9W*W56?9}wmynM9q&Wk!Oj0&u&QC6qa|2+N& z)5rFHUXnr|zmsH&$tCZ4)bJSzBn6&Sz0kZB1V9M^M)(#0p#Ep_Sfd)CXWy&*G5YL( z5dU(IPekh09Jch1HOJ@S+}?nqW6Zj~-rRJK?}Hfz+hmU}SXX`USOcouA+y-z$vc{; z4Xihh@B8@cNyrI1vmk>j!x(86LoAm>d%s!pH_tLjpi# zpoBE|??aQ!hIInU1Wp!AGHo{9lRsZgwicZHws7HeR7;3tMFB_lGx?rUyntwU_<5({ z4!as<6Z(V* z#Sl(UrYh+V4OLE03YyS@di#yTwmn5ojL>F0&6HzDlR)xuHWpj*o9Heuhe-jV2yErW z)lcFZ=oC&-Sg8eI1Qm-BV38IAIfn<-(!qQxr{Cr?>)SnhYTk9(EJDVE?)T~*p`!b_ z&VO+>BuyL?4KYRg(9%pwtyb33-tFi9yL|X)=ZVbzv-A}1VTVG+$~8NOv9BBA9+v&n zVYJvl%!bnC$XJEK9BeQ)9W#|Do+N%>H@>g+^7*VgZdknf3NAN=0*LfPsPpUIIsLmQ zDO)%3VdF2L)>#@Qy2nj2%TLYY)9ryi-)Fpl-+d}*wwgs*6c$B-iwGuXf?Uv~5nu{3 zNeFLJ$U-7&KQZ157Qp!Bz*)xco{%*4rj7)z#F zouLD)&=8O$G$`05i88VtNR9pxTF-~S(`vY5z556c_T+?Q0w+Hc249$QJN%qA-Lwa@ z5wOJu&=>V!qX-~aie*SI&9{~ZKO7Zbub`g}&UgYpfuJ2kBox~aG2m9Ha_Q)N92~K8 zF*TS{2z$~PxSlxUr4ReM8gJdhBaK(J{cSYz!xk&IQ`-NazBHS&zXU(C0Q(0F^4ndN z9D=^->z}E%`tSCCYae4{ou3zfk0)uw5=jXpB$3F45M&5X2RSwjz~WXD6Uj)6At$55 zM##u}NjPU%Cx&7j@|jCntA7L^((ClvYt0KGf(f#h`>@tO(1%eo_`SEA*!Oe2!A%Sq zVu~^0{_dx5E`3EfYkMlWb{JBQ(s&FNavs<=AOVR1>N+*ivf++FD|Hy_`g!v?p2PMh z;dWF1ssF$O{@?yT>HlB-=pY5aL;4dS6i|c%|MWyb43LVy_LmiZ(Uq*TZ3fVNkRSdZH2HG|Ly~s$BuJ`{Q|6B7FlC)m;L(}l;9NSzfIOf@4z41GS0!oY{PLw zEIrJ2NP+~3vIr0QZ9o~oMFOCpuK0+JK~X}N7>;9{2l>w#RIGWS{fRc>p zwjZ&wuctP5TcZFAyIKU-FY{Y0=%_G(^mzHEl2AlQ42Xy3J!t45+hJoNqA3O<#S|0; zA}T5h5Lk+eih_bHQDUTEkz&RX7>Ed>v11q_2^J!eVu&h=BCJ^y6@wKOIixEICrBV^ zCP7tM7z-gFfTUm`q=2_Ot2D+UmV0*Me3BoqaK7AX(`K~geE42vTeFo1}V zMnWMZ7(@~%ivkLSK>-k8fC8!{RapUK76e8NBE^7`3ka}?FoLQvRtli7Sdm3y!9@UK zBBTY8QGyUe6%`RuBM8W_iUSrb1b`4B0xV+4qQqe!!YT}bBB>atqaz56B8nuDh$xDR z3ZTVcqKYUIDI$ajj3EX@K@bFB#SoEDkr)VwD#!rD6@Y?~21r0s2!KTv3_(DOMI?g2 z5hM~oNFoYCDF9M21_F{I2naDCq#y{ANf2PHSrrtBgoGkSBv?W)K_G(2q9j!X5MaS# z$Vi9)uu>2}MnQoE5F-$fSgRte6p|5&5)g`n2!j}a1PCZGKtLn}fd~MKK#HO;V;~3! z2p}T@Adrv*NP+^wL`Vq|L1HorNT5iv1Og&R}1DqiSK#@Ucax%GX7b74`0dPX_7SeLi)!+*d(>Z%;joXJC??CN=ts(}~;f6y@?jy{Fg^jndoGBnqm=#t;0ac3d`H%Ti zf+CCz(C5m4kOT$R_{S*b$}HsI`pu_2+bJX=Jo!kYp(3~`kVGr?cHSXIU7KlK7_Z7c z{tD3#NfEGb2Ft^;1v(oDqPvtNm&<`0D#f&{joV`&;H4rUB$AV^duMG&KK*sBo)`n} zF5$iqz}W*@-Hz;7L?);R%Aq3fGUjJna;R2?FO6krYksm(7MYp|oXIYYnQFmR=$H>MvQCIGbh+ z)Kfb%U`0imaKY_f+O&Iu2?3qxXi|DT9pR5~N2c`yd@vc#TZ0LDrq-6}E?6_vz9fMx z3d=GS1;`kwfDlXuQh*_uSHuMoKx<&U|KIKsG($cyo@|KGYHrzW!W>3?3f zW_ChEKXmX`;y@sgT=a**V0X1X-PJ<-M!<~uGf94aDwXblKk-JJw$;fG3P@H| zQiSf9{Fb;_nb@EUY86x@$utR~LDEU>FHo zpDwI5!xr|CzjgI_w)gPZX4}Vyldp#%?e5?gZc8jjrxpWy6Do{|2-ko>`IDJvInHw= z3`0q-nXT(kg8Men7-D;f4R_9#)$$#j{0KA^6=9)*B$J;qN&lC>xsk{RZ1;}Gfdgkx zNy_sG@#gURQTE_e|B$a7w4d$&W&Xx)GRNy@Yqcnu+KKQU_jkq;pxm9R_QLd1_TthQ zee%RHRaJZ3&$nXdy#B`Rbm5!(whG!prBakTNy8(sVge*W2m%3t#e3%D11Ky91M~$* z-pJ%H0N0vaM^V{aY(jfGtJiAj^ih3&Yhjsylp=(XLp8F|a$$ED(LXHB?SRKqa9Z1@ z(%IDvnmYt+>82zM^tI1S_GQJsJ#a~?WoiE zS6feFBoZjDN^(7yI3B{)tj6}~!jBMA@%uoIGwgnUrl0cPzJ34f<`|FV!!p!ADQ~yo zJ<#_qVjvj)F%OTe&tP!w=nxGMZ4H=X(yPC|_I{0{L|`Bi6@6t*jr>#u^?-b6!kQgk z`SkP`Y}Yv`M&1H>f~bOLX2BwW$QwT@R7hZ}vG->pT&Yk&O{?_vqHr0+UTbu@4^3;6Z z51mFCqv?6|nd=Q^)8U@{4F0}4Vo8F4VuhkBR-gwgL20oNv{Yik1aMOh$m%MPzTJXI z@kGy4E0sNQ8o&+%g_b0WNUIH-aVIL{XDBxDLZ$;`gCY|lH=4o&*|1!tH6)_MHo{@# zn=*eQj2RSSAh8fe0VFX#mP^6}zJ9h2HX#LJ&@0>EjEQ)n8?hkj~u z*vs`;ryJIIYI1l<;hp9wF_KFfcyCS`sJTQ@x#tTIkW(9ewDU>ZRvn{cte|yFU`#qR zQ>~>GZ*$9-T@`_R4RHHYuc1&~xvYbEYQ;6Mk>6)qV?U_p_Qgh)UZ4GBm#?Kv&-OgSlS0lAno)`KA8cQHVk%r(po<*JfN~Ur0Td2Io+#+R>h*u#( ziJ>!HX@V1bICryQ6o94`Zy|8nvO-Fo8Bn%-tp<3__3X$eEI%f{4hB_nYu8;KTEiNc{3 zb(px*x)oe)Xx4>A7FA-(YQRF{oQ0y?<*dVjI8GX*n48(cZ-;BR++(Kmt_cQps!BdV z+xSEJVowNP=JLJ*!R7LlAMemy_AYzOpWA(sq+m*ts#FykQ9kxl`14+5cA~-cu);-% zXjA%DO27rCAq~o@^swLpjxa^BLD9sbBC6%lmX~=56k+GxYMWs zKM68xg24Zk5IBh>izE@y=(s~9T%yPfh+rS_q`aExFoPYPb4}km?M-t|M{XflWd;5{ zQ}p$7aTW-PiByTfhDpi9;WLiBom}78SrF`Mb9mpD&UlA;Zeofki;OWSyI^A^t{`Dc z2?G)wGaRjhtF!{J%`}kEfuMl{D7qRL1{9#73^HLPxRy4IPEG$RNfuh|NI`#A8FtI6 zTPCe+jOeox_*~C>BsM2W8#Y-1lWy9=x&q{Uxx;$3Vko=g!&K?Pi;qiiyt}6}aylkj z&@fRT5mW#`i;dfGk&Ip#aN}~VJJ9vyI7^OTws@IZ*_>Q~&esgP4k}+5DAknb3V;ZK zqDxKLh;DP11V~H5jp6N$tmITQ3I&ZQdc!RFlPnCNPXd*Zg0FiHMgkw_WH44Krc?nFP@$}iuVl8}QjY~7aDhh=Won!W!;29Ns#{jub->IrLr4(P5UhbX z4R9pgxdR|!C<_I`(vnEZYGq0STA?)pIq+{}A)k1;MG-_{7QzG-ixoN=xTacyF_TxW zCG|C<1|2Pe$7Ji5FIri`W@I^aj1tcq51HgNQ*0~SC@)7xtnkErf#=M^2&@N!Qjhlf zzUlKm-*NW5y31g7sk4@ctJ^{3A^5OleV*EJ2!Q?X)84@{%?lwA3RiXrBN}pq+(CfAl)%#zs#U$T`hwXawnlh_|3%n}^Bz$b!1=w@NKi2E;aXOAU5#L%Jv$C$yR6xlV<~e_udeVU6GpJfWG;7VZT6VswGyl4;^m z(dqhH_^P9vGnljq1 zw|^}RZ>{NbY%#wB8(662YFMcyWs-wSmwtadhn44C@VW*XRMM`dS5tuYs16knUjNko z(1?&g|~^6Eei`PuW}V{6*-;>V0}Yuvr?K^)TM z=1;84E;7ceO7)+SA;Xb}x}Xs zv2XLg=z28#U(K)|sr*ZRGTpFVYuqifZKdJ5_urw|{#SQk8&CQ29;n|z-Tq25%W&}Z zrg9Js2YP-J{s;O0&8FYkKiICX{nQnZz}szfyQMA5HJj+Q?*c%|7Pnkq^%l7&4dGjl zMsJ97#LBYW@!7sS+yn-H;gR7IeoI(Qpja<2{L4?5v4MakD$Bq9tabwoDCr}d@vOb? zO{<_11^~jtLjfkKfZ!qKlhuFQT1sF}rk_8nF2Uy30CMth>e|&@lzEG{v1Z32__qH> zc=vGHd2H9php4uvZbqd4<>sBZXd5TJXG6s38@JcWIgBrK@lk-4>;IFtlw(O@M{Yzb zkE#^t039a!hD(lJeg6wq{yW!Z4HqMj=y&40HtC;lS8bfP4Q#@mT+6n|W@nW59xaUW z7&*@}L(M=#S5Bi1BZ~_MfIPDKOqRlI8|DDJY=Dg10RSjg9$7$0^mkT^*{?C(W3RMm zDj7B0YqTM(?ls~#4?eFH(Y_dK$vHR;23!oz4%^^m$NXz?tp|CxLDeSDXFvG$d!8G) z4qvL2yfxCpgy%aiX`TMS>UH+0)11U$giV{Mb|#2zQN)ifWF#L>iefD$f!Qp zQSSTCN3f&S+ig6Xy__fCXMMD(Nkj!iA9kkf1-9>e_`W_=+0M@G_p_Tl-FHqxdj?Ij zySQ&|r4PREx46@N7!yO?fUDcK?`qbK@4Ic=diwQV%%b%Bg=#D1XGdK2_jcg*;19Rg zp$RWzTeH*9zW6?X0q0&qdv|N^w~_C*k8L||dvZ?3q?+yB{Sw+1I)2cfEIKb=w&(w?@3)VheVu{3xt89$cg%8kzVx2C_uXwTSKm8dK)$zww|jTm_WFHRk2{Xg zFg~>a2e7@sa1m4uOjryadz~tS%vcQ2)YR5?aX1(~wR2YXuIWD92L{^dZuhrt*J9v1 z>#u8_YarZ;q@u)s@n{cYsa9xum`!0UjT3quG^dE0?@z!A5c<-qT@}P z&v)HkLK2jr>0df;uKT|G>z{5ro!i^Z-Os-JkA3d<9&N6~?%f;B?hZY+=I;02?%D48 z`OELU?QeT}tGl0lefKt>Zr=OvXWws4y1l2<-R)iX-*>h>+uZTqmd(d|=b%n}`&a`& zErxyCzT2Np-nTqQN7?m{ece3NW$^fAKKr|UjN=Yncip~kpn7|6qv`4N1H0~_=sFYL zecRsl==<*;WrO8(>ve}t4qLarufDGd(em}S^AB!b-um;a>6dx#czN~Bmfen}*G9VM zW?4)COlw@cZ1O#K-aYNLyEWLieVqG!b)C01y6(HPwmqYAJU6;Sv8yF@&RFBM4zwJ? z)N*$YoL6OSY0>v@FH*a8oV%*ycKhxcGzZ7Nocp=1>Y)2>&AVp_zO_|ZQ8vC~zV5qx zeSVY8M&Z`Y-1GDaiXK4s8W9#o{Gw-w>YtOA)UwpnJ@4okMIOFGX zI-_f??}f2;!-E#^os9UV`eQ=UJsz! zX!R(*+yDcQq3Q2p0Q&A^-#Fc}wbpNq}i& zm%HxB&<~})4|kf8n+Yw;cD|~t%cd~9cfNbPm#5t^8r43OH)3qP&UI#DX5{Ui*}e7Y z6;t8v==vvRt6uxQ@40<@?dO^Cu6DR6JL%r{HLP!TuUO~{um*(i*Rj<5=X%W=+S-k^ zQIOW!Q(t}ddGPnn?PuHWJv!^(So`5ppk=<@-S>?>+2g+FUWV_3KC5keHruM{yYBUU zXRWYWM(=(1zS`E+H0N$#L7u!(E~bX>XM@O9Th~>`-(v1Zc|Mz?9coE+7-ep8yOno$ z9d~CTuDUqP?n^qr2LKOA4?uI-(f8NADi^kCo6_eI+h)nB(cM-WW9v|w>x{~Ej$E|? zK>Ov-zOS>ro!uF}?z+it?7h3&=+f^O}Ce%Q_m;t*S$Q^I8y)M4pPWuH1(BFDz zv|P>T^W0a}-tO+FpF7`sc3#f!o4eKHklVL+IqpuVyl1} zP35*I(XAIVTi-p~v(E>6b-do&#)|tswDrB-=d~IEkPoFBVCoCsay4HYcJ0Heb7pNk z``gVuS3Ta*&wA&)4Oh=zzHs@^R^!lb4Yu9XPL;=Q+)(bhv^3cFJG|{C2>3Vqsw&)J-wdb^79mjXqk38IW8+*)sb$z?$KKj)6ynVg*dDeQb zZ%=vd-pyg>-+k|WcYXGC;K+dh0Ga><049w91OS=@(@cq)8X6Lw$U_YViL{zwG}Q87 zrbE*bexd4QCMK9b13&-)rhq~aAOr*gG-wHs0GTvtq-0an4-_6XPt=*BJkch~X!SH` zJwP-EsA;1>^#C*mfB*mh!%QS10s;UbFai@aO-G>0VMnG@BM|XMCYe1<6Hil34H|7j zXh*09fHVLBrkVf%0000IX(S+kAQ7MfXwVUpL69a8^#sJ8YBNaHJ&BVlJVuH7f;^$+ z28Nm%13&{n0MGyc001ILK><%d6!aYHX^0^fFBtnkLXsK`;q~ zXk^eKJv7K@ZBS^;lQM^?qtt1pgFpj8p{9WnLM(3%=#X*AS%MyAQ3 zF;mq1sNSjNJx!C+fM%e{>Uw|x0004?000009u1Lyg!ca`fUzJ7LP_e%vHS)Uy`tO? z;XPbHB9Y7nTrMbcdU>eqyNH68Ldr2wk_rj{q*y5w6oSYE5cfuZp#Q4-a8MNkFU)Cm z5i@{{Ad)bO1d2$-B7l*I1PCfBkcy-fA|ixX5kMA2ASfdu!a-mWU@U_X7|5)GBqowd zuu&p{z*SNbAR@vc2(TiDuu-{t3P`LF_CP8s6$gO;qAHmrx)g;G{+Qmuc1Q(8cf#!j z6$Oz|V5Jjsvx4IAb^Gh1Pw(L{i*t75lfI&WDq0~LgXzfnJi>hECCh_77G-N zL_q}-AgdUO5+W=X2t{IouoOgOWQ>Fv1VS)jBN(E=gku0nBp4#9lNnWlf-40SMnxj2 z1r%bc3_ws>1x5%lQG&@C2qLJ75l}`01~DQaqQn>?BNhmVgBC_cBvlqgNQo7SsEZa5 zRTe0U$T37j6a*3~!D9qQ5mbUA2qOrKB0*xvih_kmEGUr#P*sBzMG*uR3`R(>32BI* z2BG=?itB0%58QS_Va8y8y_@U>4Fn4j5MahJ5=22_h$|7OR1r~Q7BPq^1`4rOGAM|s zqOfAc6^M!=!Gb7^5n`!Ag^_{-B9;1?Srm%_Amau_LLk9O6hv4GFpPu{7%)KrA_7PZ zgcMX5D;OyiNX1cBNCFUH2$BRw5DLnGk_g2S7_nl4ibW$4iR!XdK}2B11c$0&+Ws;aMN7N*L#s4QO z9EzYRL35@@J^+mr%P3|HakIn(Rp-x0Ek2aXZU0+o(1plS2R+yQuAJMRK(UdHwl71U zK_Vf7jo&gnKd%|c3kbXYNCE{Om&*4m>aEcF5e+OkA6l1wI*9TPrm=*%RURGO+#>NE z+A{Z@?VALw+hupq6eK#0V(#x{gO76Ae5t^eqWjXfb!?3g?2c&TWrHytAZ7h5TwbSY zKn)rjTBZTwMlGj}?aVuRs@ze8rW)Ql7>cOXO(M<^B>{c(?u zFVgVKY<*opCI8utqYIgjaO~&0e?jx>AD31(W^}XA*;Ced{zY7u?NA>H*Qz{$Qvf|H`!&^bK#PJBv}BFS{Z@M z=AIWp;>TQFSWpLq5ej?RcDQOB`XGRhkO&B*WKK3!&SWVd zramg9A?%HUAa^s7+i~{*b=CS6tWwp)GGmxomQWbR zM2+D%hGe?{mbr3vy`iWrva8hy#?Q~8{LZX0F zoY|}mlLYfvUs`N76m#kA4_p-QRgVk=U_uZqa%`EaU=id%UFEY~0fC{52z-9GjH_8} zpKt~Iu0osKap}%J4Ix0U7_v7IC@ZAw=1vZG>zPsn@o$*Xq*dTyLjm=b0OW{NW+&SnD-k6Fk0l-iX9`UAfU%6YLGGoM z1n4hw2w<`S9O_uw>+6ZtC3sfp9<^2`szW3i4%8qt1Z~K|BhM_}N*0b;i9k@8jlN_# z=qN=FB1jBOt5y9>1V~ZhLSt~D@~h;CnA>t8`Y3WZ$x&lv^IOCK@3?K-$p?@^#76ck znTE-HL2OUwb!hOic;orH!Kv?z*k<+F+xz+mmd8-sV~Z&7yeS zICFUI?zRk1uc5+AYdCWE4;E`EU@t`+v($Ia;3Hy>cwl3PBJR+Dd^7 zO5Ru*)zYU^ZDXLKf!KtsSYW721O*{&bGr>i_k6qWwRTlL<9%%PeH`+1d5OaJ(+9s) z)3#WTd3zi?XvD9$_G+2H3dtqT`qbxwz}PpmgtkJNmV}Y zNsvz)P3%%A0hv`)MktDhe>Y&fJLj3=if)HAhYQT2nA*BiK_x!eICL-X{98aBcg z7{Lg@kU}C7WD*ZV7cJ1U^!EcuKA3IVdl-s$Oy4Ky}aB;e?=5<;LTs`lxB zp+_>ABxCuaDA-0D-?uB7RXdm$#O zog829g&^Im^sd~@GF#Z0SOe?&KO4Q2;p};-Hf%j@Q`>p7!WEk^O$>&pp@s z*p2|$HuA*ll}X^tirJ;Xgi$6|9E?g^C@!ed+>P(Ma#u#w?|I%!F|9r9JZ|Iu4jTnZ z+`11wIF#b{ya*t33{oA>u7aDX6kNbr+k`R%42mlK94WSL@vqQj~}vVsJ)(+xLGyQX5hM4?6Fbrmr1me!Bme=i!>4vOMnQX%w;7 zYtv#RYK4kWM)d8!XS=5px0R;u4jEJN<-ID*hCdjr!+ZBlXy%kd=yrtU$WCmGMU!Mu zsQgXlz^J0gsD|xgz%i&IC}L?1YNHmg6s)Ukf|^Q$l%oYA!CVTP(ui{q``n43iWCtY zIYP(s(C~kZR@*-|5!LYEo{2`*0%T+nI`ob4wZ3q_`FNTWv&+V=AV4u0X?N3LleLm8 zqV6p@rf{zG6I5?L&>e$;zMgbrZ$wgyy&%?BXz4oN$!tEN@pHj_F^Ns zup6PbLJ&7!HXz~+bF=}}dW?Lw&s-0T(7cQ~B!XxVc@?0D1dGzRFY6GDH7-K{nL!pg zdQLvP&Wnbq4v!(-W0oLkuRA9c6Dc5RtT2@{+$Ea(Dk-a=6glCN9le-(|2M0rXS<&< zmT;S!5(r-8Ph|Xc2-vGc*D#A*5Q2g%~uN1;JABQvfb-QKtD? z(U{fa=eN;bPWGHx@D{=Rb@7GwOdjOj9uiN4FRYO6p5BUk^D)*jJzRc18FyPAY@fC( z?}UVmivrpzf{|4fBCJtjfU*k}Vvt!ry}JQHNdZL#7C?}ZNfcy5Z<~>B9`Cc?+0l?m znaX;QIyV%dG%czOzkLeCRXtUP6ONM*laqHT*(9R^B2ExFi@+>G6^1=QP%N;Dhqmtg zE}#%ZN$x;;pqAE@_TZZ!H;6ac*RraNO`2?(?3cyvjJ)JKK$f;qMAR6YxmXZhVlHY8 zV(@A)R?&%QW~UgjG+yGJ+RTGdQ;MP?*uynduP?3dmFrz*b4;_`b;J-n3?vmK1d(J$ zKogw+d@mrK@8{L)8Bd}@IP5lnVT zW(7yO4Zsk{FwYL%a2mkK(uuHIWfI$M@=h42vXP`v-KeQXSzxk6qiKVNE-75MDQ(Z+ zOw~!F{-cgBCgZYN+(m8a*gr3Cub#e7ZXAyA_0N;J#X%J!j!Pv(vefnD%o{H2mMfCg zQJT!flCo5`stT1M?GHV}m#Y2q_mm1o1@-rK`V97dk=hV35=j8GFh*X?17Fgx$g3x% zuR2qQNMb2D+cBqLR1{U+(}Iy_gF3SqayhkyXJb>yJR#Y;Gd>hM`+?u$>jVP;cw!PH ziZVh3gn*I>B8-a?0s-nO-F|)Hr)G4hCd44LUYFB*h&KTdVXH-C4G<^d-J_%WR*zHU z9#rk_>*wL%r-q;I?>AYzQo&LpF<8L)lKeGWVyu-bHA@i$YNC{4i3*|uHsfmR+KZht ztOK_Vs`jRp8brYiQ*MI6s_^M!l4#nEgl%+Dq)}9SXez;Y?i2PfNH`3GLr#dmdE?UN ziv2Q09dt?ueQ7k?5D$aGpq3gm5(z5dv~wU+2Cgb7FV5inXSyro|HRtrN|LeAsGa|; z0*7@{g#VgRSyC(y6vPo@7>JQ(GON*-EIhKP{^bkGw5P2%%L*$-7&AwG=#SJt$@sVK zSnJ2vpwhZ;KhI!f*h+jyKze}y6;G;l93^hPP#?Dh>U7UiU`4O>piv z8@T2c=hCO%z$!ap8CsqCtz=|QM-EfGTJ5k35I`uT+Nnh5MTh?=>$cg#ekk1VQF-<5 zz!*NsLL{(br|Luz?-h;+KwEIZMIxXFkE)$j(>%sTdQen8q9igX8gH8G*1 zI$M-`Hfz_d^p!yw0@m(fV4VHh_3!T^&k;~Qh=7K1T?ibIhzaJ1fE4cIuYiT#cu0`6 zuKiV{mW3i@h3!OwsYsv-rQ!#U7=0awPBpuMY=A^B?uN3&J7`q_ROKKDg@~f69M(o4 zNC-%hB1s5ry@J9fu6~Z2f&w9QsBG@;;fmTKG65negov^z1c@T35(t3^k^smODw<_7 zI{eyY_;-v^0P2IN_>S!_p|6{g!TO~~K*ACVfFNRbpvb#`vID?ukljdtP|Ry#B!&sh zT`4X>4bTup>DjFsr>+^10;QJ6P3`C(OZ=ADD2uOseOhP^Gs1E8ba6^;3v}{pKEGFk z;p*I`;6NgE#0r8ifD$T@fIVgv)%Q!@ExdRMH zh>D1+s=%}j1Pcw9>90XwA>4w& z^FK#AVNpI!r@LD4zA+F;Bnx8yc?c}Ap@Y(+D;2{wRvW-1aX`5AM}jmffE6-a?+T2y z6gX-11sbkU(1EB`Q&T-utl}w!aoz>N;&h%q{+Mng5t`Pp4S;+tqu|y_{XgBLp8S3* zD~QD6bBGk$Bqt4AIr!%mNu)g5_<*CD54%S$I2Q|Q^-(Zh)kRt8^24KbTeYZoD=nUY zlG`g7h{xC^BbKY`YKuYd+mK8zLJ2vipCp}3S`}E%+gk2UP_1rXCnJXmDB>fOcO@gK zv(|`&ODSt5t6*rZ%(6s@U5X0K(AxGT)wbTYO=fX`$N(V50t#1qjMX~Sl@KyXWT#wX zl>iZ;2S9kGx9&P)T2NRl6%|nlu#f~#q-5-XvnUEy5JilHk}8lO2?&fi;CvDgRVoW2 ztbE?qqL50h?zF(D3{L~7&kpO&1{M_bRhQ;`8mQ+f+mInc!C0A z5eJKg+tWk^=@>$YW&uLxs3IZ1W2Oxca*U$l7dJ?1v!-<7ZJP(xGtBJn>;k1Na@fWg zQp7Qk6EAbshN@XvSz0jkA-fC;nCYgfq)8=8LPkWD1y9ya2zGgY9Q$t<=ZTL4GPmtG z`LyZlv(3j@&on&zXO8lXp}Zh6XATS~trCc%BC8%qd26$@4|_Y>w$1re>s47ud*sKSp*Oxr{Q2hDIqNL>DanL=H}mSgRD|d6_S{APt)Xj>hriIUxu5I+{FvQt|LnaI_pw3sh^*hVR} zl~}6=9keT}WOf|z*Pgm%P4_P_%gr_&MYNh>QY57;MRu?*&4Pl19Z%e*B05bZ#DfqP zNn?m@szWU+MS})$wT50LWE>G#hoiGFMO}fEkP+BnQ99U5B8+1urmsC&F{RhiYgkVV zB@*n6s(?rcheT*8mcfhqsI<<>TMhr;=9ReF#Oyu1CwQ}yL7Ke_C2 z_*Q+?!UxwJAI(xovU#&2#bj5HC zV_9tD=uHc3DzDp*q4@tSFE6hg-hJPeWj zw$A6jlx7=!m%30UdX)iW@nmTD&y&)aGDb<^Ft z?}1Rr5FCO)Q-5bA9CqJ2krIt-mmx;n!s0_A=zcr)me?BjxCG*++XmBoP8YxIhvOa5 z_~Y_NK3%qZ{g+JzRdKr(S!j9+X79+*%d=uxT9GUS8wFwzA4B9|-l!s~lgzk)-UF7l zTsDY8;PlishhFby_#hw3LLevl03RJ}+15svV0FuZEP4-${yI|tlpg}5kIiDh?c>ay z#%{hJ9SI&PeRM4O;kNq742ToeA00K!u!}w^m>`|#IuO^rZ`ip~L?<{&Py|5K92}r7 zFJPX40zC|AKvHo`61w|(vomT1`Ko)!4B@Z2m?~0kW{&9{6wFr_|M?&hYd#+~1e?WA+*l11T5)kfm=f+U9x3XvPhwILAmy z)*M!`Q=6Q*^p~v6zC2O(bS}8NMFZ40Fcw9Jv(Z4=Ab2HYi*0~6Zaj9-#gl3YV4F~= zR7+UiR~dgyOc{Qiw=O9sEDOcU)@O0D#PZ0$_+E-RN%Gp#JI$g#csgCz$fy zSB!;)i`MOO*c}==%g70}FMZGn zaIHDH^b4>O(mg&G_v9q=?kTFFWu>K4hZQ(#I=#=3`#gDP9987z6s4-F2i6Dfyq)8-hu1W8=&LJdHfT&8xBJOh`Q-2@n7}h5asH&)f zMCk3u&nL<#UKu(%Ofcsc{KVX_lJ=H}Zd`lsnM^2nV| zYn%OD7H>kl0R_t(M|&of>QHyi_MnA+AChSuN

KL0jHyHYHm_h*zo;>w03 z9=or|=9P7;e2UsLYU_d+tuBLg{Q!;otv*eUnK?FW z_GaUvfB;P~<{4W)M7=ZhZW(V6c$Os(MtRafm#xEV2&^>pSLIH#;tX#6j4!TL7>9dA z?1wMLgNTPS@g32ekES`X4PswYsf(S8_v%=vn&vb}u3%JRB9BHNpDa}cU%rQPzt6TT zUY+@$YrffrADd!N8mxHG5L-N~Vc zJc6aQ+Bu45KmQFCmUz1tzUpEcC*KG9du8E^6ulB$T z`@!Ml5L9&=ihfQM7DNIg<1BId?s#zdJa;ob1w#J6hB5IO__n-9-Rt(<#XPyDs(H9~ zcXd^VxmbwAL_|agshOL+bnB&u`{%52udII#dGqH$a8UztVN;>~( zuUeCnuhZ-{d_p3SfC3gnvyR|ODBLid=0XmBa@};Ogf_Nx9kMwJ8ZdxgR$b|O^VOnV z2^{H06H2tW-be7_B@z^_srHriKTvW)47nhUXSsYo1DKt2BIatxT2S5l_D3aZehJLy z)S?U;C!jUXxITMhHnxr)WQ#xo2w@u`&zbu-i$r#*#R~nM{vSyV@kdUZh zT8=0smo0e&v?ff0sORq?k~*_8Z6Q89!s6O)J_p`LU3rk+s-~c9cCgohG!`vbVO(QTE>)UYRQ)yp8=$}u!-S7JP zC&<+kRabJCYjb9xW+LuVX=%zi@K`DFS_F}*qmG% zrNzUotHZp00CC(ArRT?YxD_)q6ctk%ec9*LS(HMl1f9~;-acJBz1|D(^7$W6 zmVLD@uI~>ohr`xBH8E7~?&4jT#xSvibu}XHDulE>Uikx|UvSRXLfMWq`_{(VZuf|V ziN(a-;|};37#J86GEh7`JUl(_ReK)yz7aY(#pgk!&~lYIN{jSWE+T$ha_s${-ruv= zZtPB%u9}j!nhrxAT#F0jovxG01ppuv0WM)$ zQih14KJQ6$O3Ns(R{}t@g^*Iy>Tqs?+{K?YkU=km6WhL~j$2g{Y?7o| z9S6hLL8NKdmt8`G%9cv-){CRzmL~mSfU@%A~J+ZMLyn(xzCB>AS2)w zpxikhqy%V==zwnG(JO}8mFag8beM|hyX48=pFng&*>DuhM=vtr@evZHYZQsY88F!> zf)1pIZn{G0<<2-o#-gp7ZjI^=?B4-VCdvJ)F zwb+Z6O9kbl^RlfGNopT_?-HwB{1rYiS`o49ZHfpQKp9&$iOK0?c(%so?+WPKYuW1O z$lR}nlQ7L`q*w+qhQ7>2j$^Nka(28)aJ>yR&r4(zX^1_fge|&5Sevu~xZwvNnItFz z3#FJhsxH(gWU!PnxXN;1srrrtb&6kYNZUYv3@daRS{KI?$RUXc+8yMghM4ipwNCqO zn8uXS=grI&!rwe(umJg%G(3a|pZ$NQ)KKCqeWOyvE3>E_6u*)vMk7zQOmv5so-$33 zGo6^mE;~p-C`9(T;yoJe3~Z^T@vA)J(?Y)lP#LPOp56QU_>pF}@fyjx3?FK3NhB~M zNn#Q(k`Vt-X?ChO&s_0quUZHcRDT zw?#9XCzy{Y0Z9C{@ksq_GvWZTWZ_P=B_WlHeJEH0fDl{e6-r^-(-DtZsEo3GJOux` zY~)afgfF(5Zuussn!Uc2E?e{8fn9*0!(X>^Q7?^S{rs<-^C9hC~;v`sGJ?ueSo< z0LW$_|4S+{2|;}(Aw~}psA4D7cL(vuOB8+42H78uu`PHU-_&EjJvxrP;?R&Bb}+=( zju^RT`t1^wC*wfdn?Bk`?7|=!=t#o``hX7u=GNw6j&^%0z$T6NHn$6omd;zxYg$Z9 z42VJv8W0kooAU$OPht=OEMNoxH8>FXIvl@99b&l?*;$I2omDi0#VU9jM!kE(TC>k` ziPG@d7z9e7z_w2(PgCm6uej+TC@L$l7$VVR1+7aGFx8k;*rnId8q%UE#d$vSdwZsp^v`tU0Y z)^lZ@mexKbgaKp_2!IfXKtu#4xT2aXBH(}GmPyxVv{D)xvt?b*-7&~B4S9Nwn1?3A zSH;y>{hf9pvH3bQ`+mm)++|S`U&+{908u{*9rv^_fRuXl zvFLeIkur(JI_Jk@UrV0W1Wrj&!nsYQiY_`wb&b~L#J?WiYbmlaY}v<_@f0v3g2TfoPI*dSZ>}VhjDgf9T3_N(40CVpiYzON~#zR(D2(GG`iUbIWif{Jv$q2~S zM-V8Cie@EMPq%EzC+RsW(M=mj@Nhd=w{+5Y*kmC7RSJX*te=}yB9!!jvk!|0bc=>ek*A}aMbD~=sNF;i)xxyWY8z-}bq5(QNV0Tij3x)kOt`5b`3j6l~sgp_Tr4DJ2lh zc>YLp;lkcc!NE*3=IWyWQ`(z)}FRPzcfLgMg(y(N`DL%*hl_h&BX`f@cT`&~FvK0q#tbb;|OD3s7de zH2MW%Dp18mWsMmuo!@2!SC>srngVEA#`qR}#tJqE0uU4+5Y&G`z zHVQoVH#7~Vk|gwT;P)2LcIcwvQv|a_9vbbJI#%K%wT%cnP32szUk?3)~O22hVgRS6pd2g(?0g48WwHGHW?Dq>U(s8U6cz|&Ty6VNS4 zgZcY+hSxtX{ATSnOIu9yt*Hon=>Q}G;Ur-5ZGaxFv6z!9iisq;u1wDe;HP3fN_Nu2 zqHsGXl_E{y25eRYPs*S`u>v0&0TsvogxuKMz<WI<@!Vv)1uKM^(-QGq=raaE^95==awjuAz5*Oq|U%AuerG zL!Bvv+oF5Kv$S4-TG|ta2H02Fb|)OUdEPtbNKX^nIJ6og=rVt?#+(e4{U20uH=(}& zI(%C`#c_#(At^?X)+tb}L#IZ5UU=7|u0C5Lm|p1qXG4Dt+1mlScH68ukArXIgCF~T zI|Tbek_oad9BF3jkr;vel%fiE@yn|QEyg4ZyMGhD)CGS3_y0#L9yB)CmVkqBqn4d$ zHPsV&lxI;VM{k&G9=ny3us@DzQ24bz-czZa#@ zBhG@G`wDKHe6Ixa5`m-+1Z~a}rqBzmpf(VIr;Dd;=~Sy&K^dG#npLvIq2iFoanIjt z<&N2*K=lLx=ltI8`)@AW^IhA<`?GbP^Lwe(W0f@6YRKtu{G2rzZPPav)_ zge3^`gD8rI9N8+qaX@0vBzMrtXr6R#Y-7(}yJ?75o8jG;qDoR%7t=}O*T;T5!hoWA zJ{U0oC&*`)hcP1-b3G^yf(W8o40Kx+Rlgvrs&C0U-b%>?SfX1EBKvY=6g1Dx;Em1D61=o#ghS4I*bH=liVp_zvj3%}E}< zvh^IXkB?{_F--bm*62jGQ6mG9R@Ti%BK;!~7^Xm=(@~rvs??CMLE{Fx5R()kQg$f- zhadn4s*|z9!YAF&-@C`TAVr;^WALm4nAAEh4H*yubbxCeE2EPxU=B>Q4tzpTr>bCq z|60KLTCm2BBc|09vd|xGFl<2z1_~}B0lw*6082o$zksnp)uTA1&X?rWk+x+NhRZaR z`yMI5?5csqD!25qDh>){@}5=jI zqL8=tH+=nEw2J;}jwC!Bhj2$yJ>2^$`QHd9umD=i0KSNLwYYs6ovbJYyBx^Mo=Wq1 z5!*r>^f(Hi8tkLQ^C)S@0VEd4O=pR{xia6YZC2xanzHBFHT^i*phFfXu^wN0Q_Tt7 zyTs3s7=u*5bwvluP5P??px4M@+tK`vK2kW9#9EknB#eZOrM&p@6o(QdlC)ST|l#3p@ z%DI8eitZ?r_PRCCGAjWk(EJ_fBj5AvT;4gi$1ewsF`_7L8KRQZ(qiL`cETtI(2Cu$ zyYlux2|gVAy6L2h^C<#8H9nm&k8$xszp+K`l#RF+y<2Q>!Q;Okn>$ZB(9r$y0k`Mc zaVmN2Uua1B7DGbca|V8KuPW(*t5#mP_0_CI*LE>Ts5|(TX4i7SwGmqMZV#=G7rw>s zov3tG8}95nBGl?SLR`8}NYjlR$hJ?)yII3OJq%dtHUs!a9q^nYiQ}@4e_Tb5WByhpwstqTL#L_H8Q@{;Fd_qtH*;73@gXe zWmvzpcs?_P{7C?JpD!<0@_EIiku>&-LdnOgJMe%F-yT4PAw0-cAwnawe^G;qIBAVp z%%MV1peh9oP&doOFseNA&KYF1%jrB^;r@$Nu(zJ{Of74|$dL=OMaN=S12V(jh7-}v z9RdM;HvKFZ>%qHz?4hv>Mn-KcUYzqTXzkx)dP-YOJ33W&vYAC2Wo$R8P~e+O4Bs}> zt9t6Y6&qK<7-EPk5F|R-)QQ|ttp^l|n6?!>GS`S823nGYfqsYu$iUXi zW!Z9G%5AlC4^)1+p!9b>??-(zQsbKkN?54eF^YPQe--7)9wdFT8S0S9*fD{TICreS zABI@<5exG#y63KPK3YJ2Wk(F~^$R3u(H&OwU5>+^6=tM)4p6DYRlTV6R|JwU=+DZ$ zk?4!n7hLPW%1t+F)wXXl=I4i`;ks-<^o~QL?L?BHM^X`O_~y zE`+XXEjlV9LMe=}RRLU(W^C~orU5|6iE4_)%14o8?(fUu_$ONxv`Pr0I+7I$1OY}f zPS&fKDqQ!N^G4Umw+XS~zt@uZz0OQ1`46;EpaYrU{r_*DpQFFm;5$q2eZIhaZ7XLA=NXac!i zI-_AU+o)M`#y_!BX?%Xv(?h}U2uoRHqbM5uY->g*hk|MsjQsXz8L1j{>5}gB3rPe3 z9|8$#69bYKASe(>)?8U%yK|=!lj1uh(cXIU>qvS-^rz+`P?wmZOT_9DEuwpl*_(Tg z426h44#91(2Z-(ye3TXhY@syQ7@#NtYe^akzc7$c zt~`W^O=ro%LTQgC6N(+ESGx%`4?_mUhf64W*UoQe$ADl)AoGVQY7w*^_|+g#J!SE# z!5qFc?vuY-`*obBMgDF<=N=v}FSqOUGnpR6gP``Siy~Hz-!4gpFHQ{^n(ZG+kC{#u zy@+)YpL)bj&FKHV{5j?BT&(N}L;>*(7XT5SCe1@s6cKSB5g5l=0Yjyd2<82#sb7Y1 zea{&RozKPb-tgD!xvUezBkBwE2Mj$DWBL>78dE9+)+Rg5NPsm(FLPBSeLsN?oA!@4#5de0* zSI4MqiKnY?5x_mXtC^#c1LvN!myjMv=TA7BAV&xqQpniIig^~KHq|=;qqELd->`TO&FblsUeY!Ko!Fp)q?@;<(omQ_S9@uQrx zi)`sQoOzRuCv-TXcw&!Cbb=Vc=bVww21Eqdf>LVylGh4`2V?j6iTCxRHa{OVNPF&N zfRJ=Vts)H?n9M*#9cV|y?Jj8sWm}@2WEEB-K*=e$Zw|vPs{tb^mUZ6zkShR#E72I5 zDXK0KtK&cs+9{dMeD?JCYi;{38w?gJ>|t4(xy|F_Cs~{a*KgHd7W(!>)1ZhOHR2t( zps%UV$(V>6wr$rr{hJSv+r)!{ju-Xfy}xX0sPYf2f-pz&FvD!_8Hejo(!m++%Ko7v znNplmNX?^0NTX$J5N14$9nO`TFirOdi4{gLK&W>htAyZ1)<<2wLmrZbn5&ALn*H=eriJtP#f%|%4r}! zB>G4mZ_Mk?3Pcslt7dtsop*4bc=k}WDXipylL7K?hC?XV5Fe3_F-J{Q#1gq(3caQ3 zWQbOaJr~V~my@qEo*Jt=a1ME5s9CXJ7K;L2xipx_NKJ2ia^V9!Wdfp* zh^COGLq$$(Dwile;AG%T$aD)8zuow|{XV)ICnASPGtkd7$9@rtf`p!9Z67;t0qHc| zHtdHt;Cq!o9ZL0nLHPyTO-!Tgz_>zr+2sOSC9pDqAuwtVv_u1(xde9y*DOB<;6{u6 z?O?Hr4jCtyQPfiSsOBv^qx(ZbOAtoeI6d5;Ns$l!!aBF^KMKGE=r0mlu)k-L3eJ>R@K2|q8) z`tIHpwo*kED#t;72xr~|h5*Ru%Kkg_8e!=I6eg-Fss}a}Z+zJU6V*5EyKkJ&Rqex1 zzeWhdk&4HKW7i7KP~$SI5O&am#uLrp-Cm}vRC%5|Vo}`g@pkp}?jsmkdCnAaMWQ95 zQ3`+%o@ZJvU6o_RrKqFnB57ZaJN8$O5W-i#JV9(y@jo zAJg{HP))B6owKlTB#j;~zp! zn`GXTFj^N2Z;Zq`mgqiyWAk_;`VgdKp(GeTSIf*gk9|rH52xYgDj=sVF0`ZE$Ksnf z1dk9NM+*T5yvVn!J`P#m@Ow}q1PMxtSz>URdZ7vLa63liKoDzDd+GPb;*W=7z*7=# z;lX%nV>mO95wW@F^$fkO*T1v}L$k`}3t&6ZiI=6%?&zVDN6?fc80lLYhHOm;dr1)r zZwcw?wAXz-ZI+?X1(#Oq64*+B@Irf#brfQ$E*QQOM-(Y_=otssOMVG7c0oQ;8t;rq z{Scnn#A>j{C$DeDm&hRhkIQ)GO7;Z^c(Ip@2tvnDzBHq-b;knbL`BO~ZHCssds^qk znE9BYC3NcFoIriXOuCXJqAo&&33R{4azqkP|56C1C~pk-ecJKPzJeM%dk0K>vFsf2 zY_gm@OkHy!cCqDaTJ7kqCy_rGY zWv6BB4FOEgBX$usJZ77;?fW}#szJhmTsYBfDw1o3rX|G{5!9~~h%6DrDnV*u%&>Kc z%7aWnV8c5+6KXpDo(6M~11nDP-~J}Z&m8d)lfz{Y?cu!-`Opds2}I^u5qlpI$C#-Q9-yL>PUC@`c$@^2tq!%4VS zEIKauQ2i~mjxPvl9s^ho-dJEhSn^*R%Hxebw5iElKGvC@o?1907BHa8uQ?MKRvrda z_aJVdqs@gV66n)*{3~uwpu@2YI=Md*o-03^gs`iA;mePie#A|nQV>QQv0|u>cc+I0 z@}M5yT6;ZhSF2EK_B=8HuWEr7O~*FCn`~zL?8sonkyTVkC=TsY0;K$}FO^Z6TusC@ zFJa%m)z6!t?)p9<``^$CM9Rd9jU6V0T&7X2bx;o<(Lvh_k$fQy5&}b<)*^95_w&4@ z0M(=dr2Mw$#^0^KP=KF~z0g|y4Z8uc8FtHsTVcy?L6I_WQZ}JtKqKm$ zH49a148#UO3x{-nTN!)cGj*e?e5xKuT=Ryg^I0q!=C?~WmhWs|6_&ajV1u?4WWHnY z4|gW)HYI)tzh18)1i1s{@4ZVUl6&8+#^QLQJ&Io+L{~hRGZqy-fus zNN;0sdhtP&->eYE4%kzd)DnE0 zKqt4p1EfgqIpD6-VY7)CgxDG7S*7i2KR8NGqjdrZfy)?VK>FO)hoLL{Ud%nv1~(ii z7W&&pi5`p*$&Np7U1q&|y6*~iBfo##kmaqIo;koDk7SaJpod_74_X`aJ;8|Jv|(1K zb(e)HTx8&l2~d&stii!0SXAQ8+*)+JIL&XpcL(2%9;(U2c`!wyHD8PmH0I+JDR;ea z9|u>v(be2#5Yn%GCN1yc=9M;g#jD!a7~+e2{T+sFWP$2`pa5_Kg}&?(3@60?0YEYXNUAwjggUbj#<$aT^b|BOU{IH{NM~zUEfVEZh*1R``-ra! zU^$_vv+|5c^>Od{(D!w*ETKMdtrMVN>s(;5#R<5YrO8;1a{-VKsl#Y*gXEDp^FP<- z@<;3Bez}o*Vz>Kv;lPj$r;>n2-0wGsE~3$l&!-rQB|z)*OK-~)^S>rgFWraOpTxgL z1^z8o{JqaO-%Iv`phb_Zs5xC}j22J?Dn~H20z0|gt zN8^UDyrepO%5^Y9-UcCvc(Bt5a^72PJr{?$)c9UmWcCS+N)Chv#r`8CXX{Wb+z6;%{=0_zfm0mxtItbwSh~Nm-bIID7}wD z+2rvcO1*k@E(a<6>?w!mDm%!iQ3`CVc8d@WZlrLULp*8oMnR92M)zi6c?L}%m{&^(m_#b2v>_r9a@*w7upZd01}$&X}Kue z_jLl*a3iI&iC;$Lzw5{F1fIVXBk4FcDMSy50d;Wn9gm-nkF3D!(wvcSr2fPB{=lg~ znH}iW`*>kLJ-RgpWk68Q$lyanydoq%Xy6(>Hw>ZuLI>6uFPJx4UsPg1v@y?*A4MSP z3nAyxq>xAru3H_sdGHt8uKiBPNCRT7IL`I>!j5(L@G6!A_2&R%*FXS(UpS^+HpB6g zkaP$TG$F(i7zPxAlb2n;-s!K^#N*gCfh+JDbt_P+BoqZI20NT~)$Pa@S6gx35QI#? zV~dyu#Cf3gFa`jE^NJWmt78ab76rj10$l+sQ8YMn1aJUHG@=@y9&+>Fg1i`t=V9?r!1J+9aXq>KD|%+3foOJ5(gam>b&=&gAW9d!9C|; zD?5QBF{M2RRbF=gOa|W7KMX$2I%iSeG#{HE&d{q$u0r}b$0;Q~HJTH1>j5m&(W)UcUYF%BVl1-0^ zAQ<~lXQF}-@}%kD9@}BJee(P|@Gl|?kH>v;T}BVgpvVXr7^|h72p}pyAP#GoT*o^j#HbpwyBI0J?%0ihFb46I(&JjJ@95YAUj!LIJ$47?SDO95 zuXaabO4>>a0Gq^uZl$XGnbRe2M%^-{GR`3^7A1*WetP-tH{`do-R%k5F-R5BZkN6%U z;s_y`Uh!k|gTHiZzg=6SiNc@cm4H4^$c+IRx+NvjG&QdQ4vz!@jmRn#tcRVJ=mQ zG`=H=J~P%A>gp>JASC@@s3*tkX!-I+Mek5Ub>P&rg%rAGA5DnYBExQ-$N=w)+rYn! z$Q$B%0D%Nm^kp64_4C>D03blQ^}#AeLC5ACb%ILAZg0~;^82cMK`1(M86K&%z(&bp zfQkO87{Y0p?tl*nV!&@qW~IxIP%`PP#5U!J@Agoqbyno1S2!U?`}=rclU>qig3%mG zH*9j7_P~DR_C*#&opz^hPgbna=g6v_S{%i~(7pC}9s6SU4`xG+yD%gjN^>Ti(0O@} zW1*YNd!-ifP3zt@@~rf)x;x0w^`Z{|#U6TeoKD2=gSO1t2Q< za!(Eeoy8!lcJIMZv6t<9Y0;-_PaJnneY`x-^>VXoYq-Qf z^sq8$n^C$oSLr}YNRU@%7{RL^1U z!v-KPH4-Tkc-2pEkoB(xk)sDn7Z9Oy^s6Vz0;Y7tHzw69sh@iFN=4j!a#P3!E&U9M zBhSzZz}thEQRCNk3J<+>$@q+va+~rmIN(>11PA&(`&;QyS4aUQd<6HzE=-s%E=0^N z4!i`y0vR8xR~XD8C}O2MSJNYvOz3C9Vg^;u)PCQ$)e*aO9K$HXHe2#CF&)BITWecd zF1`04fuvZqg=<=iZL3DYpd$*E5sD%xq98Cj3tWirUsJ4RqWCZma-xd zN;g@7S&YOb2}xwB1~8O@A!KZZG69el10)qiP$W`8GKqN>p>GF+a+w_+9M6>TTCu5~ zMb*kL-0c1VQ}&n(xPgtXT%Vr{{aVsJ+exsiY~h;Q+wL*9!3O!x5PQmYu7iY>%~t-| zw;er1dDv1Iow0|@vW4ck3mitXx`3w3=+IaiF(9Nu()KpMgha-)T>OxIkS0s_$4_Kp z>47R5`$T&Q0RT}2kJ7EzuLu@_ffU2<>0U7axGydB2N`@%SOw5Gi+8wQA&+;Awqa0( z9bf(5m&Y5$;FHIg%^>>-O}mAU5*&A7ac_M>t(HkGi(n=~-DA8Dun0l`5}SZ=AbeQ< zB=i&K{%_^H$!THo2QZ|QA%ds~7VQlTiP{hnu?m&-=wN19r&W}DelI_Vx7q6T`=hp* zn7Crn9EgKGmNB72SO|baK*o{m6$Uy?K9P%dw5EC|C-LU&Y@+@1Te6PVInI3DUvhcp z#vUa!&Z5@|KnV`mXQ5`QP4RTK<0Z65EK~>!VWp+0F-=>XQNS=|5!~K3D|Y80^!C$B zw~|LeU2r=A_NUqtZewpNYXpq};m^+eBxQ)~qI|I_%43*xNFY%|+u@HCr`<&11_4BB z4|t;E(PlA*qlb-vD-ze+drY?s9>nSh4_Qzp%#~Acj?T?*NafQWRa6sQnU>7gt=2V{ z-p%vI>=99(IPLYQ!R9t$@^Do=PS3`Va8{0opwL$I5%F=-T`ds?M?e-aWE5ishr;${ zj1*$5BK#>50KkOYfl3l`_zeTp$(!hBYu`67)fs3(zRXc?Ls z$FPC`4$|D51`TkhIX`G110C{#DrxFc4>e0u)PfX8Ra(Fwey$3XDOKEansHh)D1odY*P~wm6L9gqCEGHCsA)Ra`Zv;f-&J zXsj;S%n%tGqH8PB)angL-xuv)91o~*tYI~!4vf2ubwXcF<6ch}#VwHuhQDtidSxaJ~4Qk_vrdFbe4Lh5Kr9@Rm zRb)`8idwYV)KxZg<0Z6inVDM=V=#v|5V_)-hC8vQ%o>P+6;Em9mu;vaywg zL}09C8Ci1!Ad?D-MnqsXwp0|8W*rKOR zeGScc%!pVdopqhiR;#azQD_hdt30;eoq6?Vcd-jZ*aE{qc#KZomfQnLSlIjl@6H86 zQBKDnn5_ksYwXeB=@x@O0q|hl#UP&X8YjV`1HycWlHGW1!Vga#QCzkkL98)jRbl~W11|BN2rhp6Pw^)Ok#Re2oX<5w&%UiT&NmA z7k9CU#0nSZnOO;4NzG}xay+tHfkXsDGug@Pm5vvMk?7;kwNBdom=4F_545}sUR^=kiU-}8{+*~O z1QH2FP_&h?&c-kYbN#R5FBpN;hP6Q=Qt`~28r!oX@Ggn)l7`WaCA{QPXd@4>K-{jq zKv2XI44PZH0cIg zk;F!eZt_nj9A~!$JT+U9NiG)jYb?U{Fis%v(wHnKmZUJ4AvtDI;B}zP@Jj;Q+(I$_9il|m`R5u$}80NCu%O+sVPZMjE>z)*DK`gmod!eg{Bx19IrXR5#S z@#Vj6yiM2RHkbHqP|-!IV1!5?Pv7_cU)o*2rN1@*Dm%K_w|~@DM9fYdaBXpRA!)4| zp92Nq>9KDWbS@t4sjN&3St2T_Uaj$gQsHPantH_w#8wU|=3$-xpeNhNdxyY}KOyq@ z!+0l;@C?!e4M>T(OyB?jiVcG#pT|S=4i7qqUs8uA&7qBV2j72LCtXDV(;IKl{Qcx7 z+YJv5#ZI{ac_ypLm%r>i`>p-Q7z@Zul@-Zb%mO+O$t=fmJWZ5LA_Z`{5-9+QogrY8 z5EMt3Mrl+v0iRf7?ly^2ii{+pjDt+1tH}~qjbO)t0xL_TGdyEeP7`e};>;Xcb zN1t}x_u}UaL-#uP^zrU3@mqkkGClE!i`(U_*9PT$7{-T)IU3j(?udi@T7^{zia4V5s?v_?2CNi-KU!?K46nXTju9sS=s9{->5@A2>DpAccGemU|VC~c5r@Th1q zhiy@6Rb3nePl+L=N0KodA7jT_Dj2FZ+e3FBX3`Ih{oYUIowwvT&U!m3fyjj=%B&Eo zZJ?0{=|R=@Rs9||n~XwB%Sm%SYp>^Vu=i51`gNm;T_qy63(AZr6AM>&(h}&Sbm>yF z3Tc(P%E?SnL(bld_i}a$h4e@m5h*K8l;8-|5G9Bhgs=kfZQ9u^&r`BN4f(&AD2bKC zz;IDVf`C0sRae3m!jGDf%b6zs8WG^s&KL|eZGVf!`o3#*BdvFPfnlz}e~(KC%rNQK z#kkrVad~%p-_i%PPmUac)LvAo1g{-XS^G%mU%~?f9*%WLW90Rx{A`?=SkZ98z&pncC z$x4bgB1`L{09)R$o`}Ak$2tp+qw3n+bD}-pdpUl+Un<>%u_Os9Ji2YhVKZ7jCestc z0tp!#bhWNeV<|@Z71bxu>ev!ZH-S0>zc8SIK=`Ph`Skes5LI3(kxBm!Rf#0@+n1IV zJmb-RrfA@Er`iJ{A{1i}`o<^uR8bDE8i(1Rea8rTpkP1}izbp`LJKxmAf3XHl}0C} zm?A)6pyo$uk^U%!$R0yb2nU8n1CZ0h>e5~!5CX3iV;n|om_dLHg-lqZ&IrT%x{ntR zk7Ef8z4PF+p`cSTGi~65uLj^L3J{UQuiY#=Ds|8&pcr{V2=dY=(z*LWAb$;@c70T! z=xV7(t{XR7<>|&zNz8W~nqz@bAL1fIg~xC@R9`Z~)MBXL$aUH_DUO{F=O8CC7w4^z z`588Vz{%{pGNnfR{-7lwA|n2oR>{g`t37hk!uy40PnUJMd zjpkH8BNH`DU~XZq zbbN5T+olzJdtDui&@2!R%we5NgAW2-$c6{C^2XoG6TUO!l zZ^fau+y#C8m|l{l5zdW?9++>wYfnUAQ#i6=d81cC@C&Zs4sM} z$mjL4?a7BiIL1P^IG-Iy4Mn!za^PSc_vt$B+fF)Z0R)Fr#u!Cuzm)C6_g6>6QAkzM z>k9Cv&FRVclxE+IjORV{xaw4uzN(zgKf%K7k$Fb=5V}?&lN6~kIgBJ%jX3%ObowZH zKb)@gxjEmS+H3QY1Tngx0qIXQa3P>$xdX-9cx0`iqed7wEWBNhScP*ASmR16V@&9X zh>-$7>&}KU$R4z{l52Pwzz1k+D13?51oVC9nWGV*u7wrj<01tdWJGwenm`dgk*Gtu zWm{Agg?R1M?e2ld1uO(nrGf}R&|&%vWO@eK50&&B^>wYD<_~yWkZ)eS*ku%fDIPS( zV}bNfH372F-B`Xb9@JD`rs{91kBp0?I9_G+{_$w+0VqruZo9t~+x@dGwaEcc`Bh&#tlQV+_>kLQ@zi=LP3lO5)uqfys_r#TWLeEvC?ez z7+nDAP4J-j+RqI3Y;W0HqN^)0KH@u{$T30DuKsebj|j~7`{$AXAF00qoOmZvgdRLF zJDC6=DhO2p3ddeuXPR*jY{64Vj7L!7L#(Kf5dbnO-6}1pD*}36CM|ACCoL@lqIzkb z-ndNS;ESx)$ zpkzwDlp{I2QnsucVdcMV{e9n^*vv=TU)Xx@+kqb+kBot|WPabZ%_qn6mS>-q3;7au zC(W5MiQ!19R8n={V2NYj_aHj%3&~aIg9GPfHa6_duyI$Id3l$1P_Bc9ww4YOo-LP!yiWH(LFB>s{Up$NWzE8A#{SQ2z{2S?Y=z|kaCM(0fE z*zC$a2z2NRQxT7o-?7@4m8M&^m+xGtR+jON^`YM67gb8fD69g8I{hDKPd-C$>T zD>23Myo{}^Pbur`K8hf_Oy6d=A*apc%a#xW~YGPRO3iB16E1# ze8r9xN;ImB7|qD!P#7Yg%3twAI@s@rax53G09Z?d-iatCrPX_8vqWkq2AgJ+pHW_7_V-r=*;+NZFU|)-qkWol}+z+|H@6f^)%4eAU zIPt%lfG5M4`}p~Gh`b%bX9NJ8zpAm1&m!Q8j28#tqsHmLLLmCH_li^ zki^8J1Q3i7W*Jh;2%#Wzy(mRD+u)?7whuevWD^U`n;wb~dN(`ZhNHqap zhbk;MskDji8$$hCF!1>X^CHDL!Gdgt!qz?)abrIjq2A9^4%3m~A&k6}iQX=d&_hzT z8!l&+YFk4>7}@q)nwJoIAOc8_49#Ni0NGzbQb*lN7QZEp;Uu|zES7?`oXv@>1loly zB-l*L0@d=sn*$AU=yq3L=uNMLWbZ;$659}hfGmO`B>)Ja30g;FJWT#88|pyTlUPdp z`Iz30PnSK?yl3#}*d+M&HmPW*mL$})4Gm2w1kZ$B{0sw&(1@N4FNW2`F!vF z?)4jyyZ)gddValrqYKj=0YRNC&-g~4dK+zEa5lNzj-o-sShl2Z%78hUmZn;T$hknn z*O6g#k}J%Qc55TwJ;z>D$XV9FfPMBEt0@Y^r8b68!jzF!BuPEqk4L-KZf=68k}x>3 z6p}tGHhB2wEGl$fZ=Xk&;`DsQMDx+=IalilDhR5@PY=iN`1@CRyWnTVe|NjT&*$gX zy+iV|>ffiG)F*@GI4ti}Uyj+OVZ`KeeNQdT!31m~nfO++{ zJE*UggADJ6`~OX=(B=9okzC#0HpqOu^2FHxVOT^!r7%4g1gN{thUPcP&N{eI z_@iL_J9me@%4!6Gxo2QN)X&N~XVC%EvIbOibusMcX0+&}N`ka(5aw1esxz=NrJ-#_ z^Cjvl@X!L!4Z>^clv56IAC311%dd-%5wP5Eh|MX|M6IGB6Lc+ZT|fnAYKF@*JHK!8 zBklcR|Bw8C^?w{#@!ZDQ{*U|nf8#e4Z#4sFXT~sFbbEhK?pq&`4gb%Jp}In6X)XUD zRF=#<2b8#GWyq3G@^+T!A^)F`{lew7x&2O6kY71^&uK{|%4^I8vG(_tKUZl+yY`wE z*`RWu?AAfRuJWWm9Dw#5@&oR7U@Cz1kNzOF|Ht3{`0L16L4{eapj09ch<~Od0n7=u z4Vonx62UZL@A^?c@zY_&wfx?tYe01@_vap5C}~XAZ;LO4r)szuYRhd2&DL zm~c`*sT4NA__W`9hX{abhSnT6+5UpR_RrDVkQjVx9MrBS9>e)eb;T;xA}JOP0rF}K zz1E#sZuoKVeO}PHR{W<(?l?*Le_K7q`aXx@_{0!4DX)0!KjnX(NOS|#{7-_7El=0K z+i+0-PT$Gp+nV`ee$B2%&c}olQTT$0Dl0xN?0&Ue<%;#XfGfRCEG3OT-ODDpEJe^y z38(hO8ISUNndmU7{|`Lq%@Qn&3}7Ju7zhlNu#yl&6c7brz<>#6=+E`;gZ^Jv0dpe- zT2d>BYz{%P3)bHa%F$M9MHr&S-5U z%OA%hV@FXy%k50a%*ZN8h@A$Q|A;fE)ds}n=n^_vn5BpUFn*ZyKdC-1H($>F@5KSD zUzRrW&$B55Fs!J^ysa()CXe8PnMd*?BUe7Z5dM1T9cOnt53><2APuz4CIR2O*}q?JZx#;chB@3A!5H2E ztb9dK2Z+*8;$qrpGuUMe3*iWf$bdj)&fn%1ZxU4+pVAXxWsbOB{MYzaUDE{+o_mxg z_yTTn0=}8BAj?WV@mk9cZapd_Qb$OMP-It+uhO0#uVcTm)#mHbKh6jV#@X~zJo=I{ zgQKw+eWZsWDAf}O1rI<2kQ8bhBVXyPb!A>mN&+NEr5Z(g>Y}^zUHoo!y>ljXlRJtR z4h))LZJR2rGhrkMJB&<5*3BGAnu_5R4YxOe!U#F`#vW}fYwQI;B#=an6xE|Qmz|)Zl_X~(vkiEJy9EpCPyiN7nV2&pxoT0mi+;t&JLIS*9W>nS&Zwh@67YrS zu2n{Gm$X~r&|h|W(mWl4emCc!G(=$*K?p#E5-}DL48rsct>0iNuFD&?8e?%Rv<6HO z8Xcw6a0vjAnIZTDa{!J-?($|2K6wgkh_E7qu6HUjNVO=3K#tAUI9BcZZI;edbZ0`C z7_F+LhE;i~ed2|R-lXMmvYWD?bAY&V8aCmO*pX10j%cRYAR#6qD&R2)L1b9KfC#Zk z0f2)Ai3R|Gu@Q+876?w@?2lwSr1A}ni!jg?1FcgM%QO=Gz-HeQQ!E|--~#vT)gwqnq5#JsWGx%psbh4jqHi=;y*oP{wCwXsUad$*03yhOiPCCO1vf&l zM2iU`Dkus_B1I8m42)oCg<&uH8AxGPkmT2-_CtU0$QTzIf8?OB3k3*6t7Z!I?7A#F zmVce?hpE$Rsl?nXxI~dY948^@>=)W=rICWr_~EU)Wt6-&V!ma0ZGXU(%=&sbHLNE5)q_9_?5dzYLcHC*Uaf+Z zbOkamiclPz=d2R&snS4&&)lR6{dzB(NBVfapT8-R5HgRCGw9_*eiPOtJIn+AD%f~K zI{#PVq~CO?n6)KaXNW~iS z-tc&PgkEm6WRz0FB53uZ!5V}{Nf`jFNl2+yVEbN(fAP3xpZv zNIrrp3m_<@6pUm@!BH4R9m6D>sduUtN>ptSkpN^=AV?w$0b>{dvH?&DUh-_6_^Ll2 z>w$1Z;NUlRQqs2VFf^mAJ*VV4A4I8qs|bK{kj?^}aL|RJ`FcMOeZOwg3itazjZHCV zyHzo3B4VsuQwxb`B*N3W+EclUkJpBHskRIl^lV{93oKLEv5e*BX9ot=ny(n>j@olO z4f_M(Pe+y8!G`idWEKNHn?NKzsQOIx=64*! zUmyqM_wnfV#xIc-QdTGTKfcsM`#w(A{e7Q% z@qHgp-un@MNv^H253?&J`ig->6ztl&6Zz;t^d}}rgjv4(Ebj7sj*WT01k?||?GQ$) zWX3SW4PxiPwFnGtEGw;^MDifAuJPcYjafA?4>|!|&tE8fB4Z69{%y?r)Y?!=&np5& zmLDHIV{Efk417Gsy$-IxpIDKyI94u#fmnqC;~it2+^_x*Z)!lEAnH=^fjE9$l?Dn` zZ6v4tCR3Pf@vcL~VPyKIpI(abH@eD2#v^fQld zwTJ6ROtwVV7$05)4ps&M2pJF(r}olOr*}5kpf{qq!l}&QV0PSjampLQ?`O^X=kyOH zwi$Fkmx<#0xW;`)+JX`Z{fSXWxP7kz(xM|6!avU*kD^0G`+GZdBKp`p7T&>~ooYEY zFG|A|yrlkemQsyqh9)sn22#P66s0>`v1l-#&_xy> z58w2{ucEW&h%*DY&0|j%;#{>)W@jnfsXsSq3Ezfg6l9ag%3z>UL@W@XP)Zae+Wu(d zbjFn#6JrbmAY7(Q3n?(6jshjnWSAHyBhX~P9ZLa$D8c|*N{k>;jL9ocw1iY3z_n0F zDiLVUg>c?S;zs z1obEYf`ACTs2}cWYwA|`vs*66Vkm@fNrEt1p{U5c6KY$lp=b2(lM{Z=%9#6CkMbYGX$Jk0X0OpiOL=lD5({K3?zz%u}AXxjIlF` z6f6;3H4DB$?#|f;Ux1i1-Aw2h<(Yx`nt>l^pd}-~9>ci)7Ii>o*S$dSKE1UOvstG&MQh^nF$a{EpvfI)Lx}v1A{^OoJgt>k3hm{UmW|(hn-Itfmw;lds+}ov< zCd>&X-)u4+hjsoh-S>N@oKYAu^S4=~(8P3#Ye6R>4}S=Q(Gd*s^lAPjKX*+SP&=Lk zCH7wceGxNnuQZC09*qfvht+|R?J5o}|Hk7C=g-BOEwoRR4gI_Sa(hZK$_ zqHshES(q5dpdEIs)G2azV>y~RMnnJ%Ts1Hd2I29FPD^ppOOhDdOLzcxzYNn*zN8ucc$5%RhtRQPO){jBx)24C zRzXD91&;wpcu1H9v>!$uSb<&|4IlxkZ=gG@aIkE1q{hL3+FF^Xw^qymR|#xZhyYCa z{ywu<6&wv%07gK$ztV;`rYRI%*;1&MS79XC1gKaKoA1Z=9A*mR14h*EfNJ5lpndgi z+G(KCNSHr~`=!Ge?aHD*KeYx48=V2Z|5kU`XXO2AND|7RK~g2$=CYwm{@3l~AIbiT ze&T*ylm74X|8w_Z{zdX6pMUzSVle+@)GYrKgWFm^!~SLUiyO1N<@{_<)9l00IX-`T z%&Wu_eX*ubr7I>X5d~(;KCoziI2#zY2pRbMLiXKavcJhIA3_13NAi#^KUFU9Pm6rB z3{?qL{Q*&fEfY&1kENs!-DCJ|QNjQ$<$lOT_GS#9RDTFMAGrM=$mN~{78|{yuM3}B z>*x2YW%gV2Od9L23CC_N1T3Hs>B2M?KPwuH8lBPG!;`Pa&ZAm$dgRiAln9n8pr-`5 z)M@^4%>JGqTdg6nYjMoXD5n4I{kuT*Vuis|&8BzGs?cH$N9g3&S{~Yc{dwzwBY(w z>k{x)$Ro=ZM+YuDb6Z8(K6V9a7BN9&`9=$o#jP=@A`2->EGrplmQob}q5y+FK_$vm zBWP3wK2s%zL4y)EFvN;XU`nZ`Y=NyLBVc^ilNd@dRY)uaEvx4Hmpmm6?Ua zs3eSwQVlGXfZGhpqAdncM9NBBLnDN!EPz%@MawV{#>*@ig2ZI3D5)@VWN9nllqRkE zIA0&@{D#A9nq^Q(p#xZyDiH$G5epSew2C&fOCk;bdrxEG_575Ci<%63nS8&3HlT@_ zhx-ihg?i`xfikXf>z7M~FfRMRMJMgDz`KV2bXlkV6w~r7l&o;)t)+?jNq0BNr%eLD z!$7LJnm<1z@;mP{_QlylCf@+UiTdjvwy^+2DP05cwpS>Ti4BmNsJZNKqYehot%uP& z`bRoSelM=El_NoqO}5yJ8V-je>70vNcWw6^+Qsm9`gElD@mH;%xB!pY_xV4(_vlF@ z61|U9m;*pU7xyb>ng{$0CFxv>N`0XxSL!WTiP_6vGX$Umz+l6sPPdBFV^{d7K+tvS z7=smKMS>$-bMp_G9CSvOW%|@PKR}~Bije;m zg_;UzwXGWz9;5?asQI2RWsY<7ukte}ag)(#N>T(Mhrt%yeDDqjV}^rGG|)BXKHg&% zD}WqNpHE&~N#hls;1Y<`q8bQ6h)>x8AY+k%alwSRN<}kYN$R=2{bXG8L{$l6rC8?CeRf79kK^Fr^IE8|_9U|1gDuZ?IW6(Mu;ygCnZj zPA=G3O93^6%S>gp-GNa#7ZX5(u~1T6b7MhFmP;l)rUeWg2+RZv?&Fs(BefQBc((x= zVWgr=Nn-+(C6*dV1Zg$B;;#YIoQ>w7^nzJYWi_d6Lr@t;LK>MvEp1A@w?^b}Xe&^H zWfn2AM;T=;Ov25jv4TjQGYpJj5=Kf}Ow1-C!%<@@!V5A&?X6*@dF9d z-gfBd{Sv~^XEY4UC~#f56G#*X38Da{Xd%Fa;V3+UB+TdGcLFI*Z~Nt%gtBl^Q3Z;1 z+2>cpYAK)v0+--)|6>PXV9Szalaphx8ibMw9SFdxDEP(Na$pcBQk>MDlA{A5=|F-7 zPOTt0Fyoi)4cyE2MH>({IF0Oz>fJKsFvlr-202(C93%z5p+ccAr)o=0jMg`3@xLA#w!%fs2gEnHkzc`U5#y!Ex@c@nM4B( zfThbSGQ&bt!ju!iyq#d9N-mQ^OQEjP!4;9eap>Y&lofa==^+z3DVFO65lNJAonrhT z$g`FJW7EGmS{Hx=pfg5-HIQ^d9?$On#1p`CY2Ms?eUMVeY1kSD0;9{(%v*#`xUMV{ ziUIthpQ{9-GDwj4P6GoNr1%*)Vd`LMV5lsaL-YOvP{bg5kr17(%LxydWx8N&aL^_C z<4^_-aa9jybYfR7S^j%n%@aq})8u8a0GL!1gjzTfs)3o=f{r9pVFC?YPu(aJXcbTJ z7duN?eS=350WhnH@C@DB=x5R4^qhh5+I<}HI+5qoa>Lxiw88T?n|0%jRKPMgD_LV_ zjp@#s=DZnBt+QpBOUa9K3wFMf2D$}x#L+&(iW?p3fME>m3Eu`tl@q?yDMxwm1*hy_ z!&)7Fh`?pSnGolrQrx)h-d3Ht8Jc7n5atNygRJC4MO(oTB07Oc6(YiTzCdBH`UT$< zfC?Z#oM+HhNAe3q1DO+sD?o~&KjIp)#O9O`6~vG*HdPa_o@wHqi<{_0hWk%*d-*zd za5IJ!1HcHT6Ol0ZDTW>1HXG)+=R~=%Xg4Gi4MSjy6azDI9hf>WCN9+=dH9LiCTq?J zlmRFKtfOOF%8@1%ghgn^Hw~7u5j*i?>&SozV)fwD&*<L{ksn4QgYfk1( zN~iF`fI$wGY6nWU7b0Lsa;>n|wxv{HPkCC8UpB{DLh~&0n#Xu5y&t^ zw{$ftn5*ff(baS z>?-w9aPW>fx->sWB-24Uf1JddVIo;!@<&9s*K3XN-$>jt)ao#>&5)(`F+N##Mf?m&mSjVA`cG4F%#}@ zxpDFp*=V){{M@)mrSy^E`Tw7MuiXx{)p7Iqt!cAVEI617XPu7IYy*miaqHjO{C)lT z`!}?p~OSHcsva6JafH-r+?2YoDj&n zpCH}M4p$&9>=Yg)hC1R|R~pk%73J3UnA^v~e-=fVY^if&x}9;rAG#I@RzJ{F}U0%#ze#w($BKV<5 z7z#B|G|3J~2#2OPsf#+yYvNAI39n=g;M zPqQxdwDYZn@n_5SOMqLIB}|A>bFebkD9V9yI5S4)u(UygnOw}F{CCdi(NsMYM3FLr zdJs83ka{R%-ESFOHN9Y&A_^2^_2%C8>XtxxEq%{+ND0e>MKba>O$*|RAUTkWP1Yd`b+B#)#s47UMVBJd`1Cz$PU81aH>!`|h=qnCcp=a*D@X3I#JG^bp z6$og$TGb`KI0=x8lQ`sss2Tz!QT1)hQ&~@L)*fetol_%GYr;|Ae85QrWXWR7hUT~g zI;i`-e~!AxkXV1eqMyIUBxecO&?S?%mabR?Nmv0GVy8rTgEQ0;JN ztw5o3&>NegGI--RE!OIx%zUgF5y>F6)Z)fo;Hk9{3Ji!stypXfbAUpMs-0>TJaK6r z@HBR=pK5x*9lIq3BoqFf0-IpHY@RF-;uHl$2m8+Fmk8iesJ6szYya7j9ARa!C zV*3@ssxK1?gvhpaQW`w8fGmO)Bp9Cb9sAjsXDOKjeNrTyXv>k+NXqZd=Z8K1FH65k z(}<$_QKHUIIs4*y1NlQi%^`4wn;8Txvt z>x)(pl66#QmEphXP%D6i0UsLHG{uqg*y(-EU`3;Bl{PcX07LFTf0T^!v}%M9jc*ee zUGHYm-tswzWW#ug%$ufpn%5{Cp#q?-3N0OK+EBTGCn_+oAYu^`5X1nbb}|C3`ggdA z5Q;3fcCl?+hw~4he0AZMyDeU|Dc9vTRQ&y>oaMy;sy%;W7d`4q?ff&wCrEswRro(| zXg$Z{sX)^eWQBS$Lds+c6#rBTNLB)@QD7i~f-)+CkwUO43lSOGzaH7L)4X@hg~whIQWK{T0pG=g-sTu_0@GPV{&{ z@WBcp#GrE&h7^9)t{y0>k*I9ZP&#w!_^PtMPN({s_nyoC2Pe1J;T9ry(Xb(((6>DC z|4HD73BpWa!wuOpKJY-)G-p0{TDH~FPr-zBm@!G0?e}K3BCWe&$b@9#=R7b2OpAa! zq!P-KK$1vjM%xMM9e(eEy8XTzXI6%ZNNtr2; zUu#VpJd5aCAK#7!wYw!x1FqlFsmR$SHY4ZH4S35cyAt1E+1{@lWv~L>0lDe< zU|X8Y0&xnBzBm_2Hc)JPetj`#NwjDI`-H31K84Ku9C2N%@^7tHxK_$xc|YOx>s6V@ z!|DphBzgC!uv6y>h|01@f*BxPjXxFvPu`(FGIzY$@a}Zg(KLD3bWdj3XmufA6|ZHN z4q2|0aVJ60KA(;z_O3~xyuWnRpQRXtSu-_}h2yi3UXZ<=A6iTt)ta|CKn+lxC>Lp0}Y5l1b%)t^5{R)oEAJEKH$BGk3O%+|80N4uIvzS z59MIrXzMaLcRO-F3A{Mw@1mOK2g^4Ke3?%T@opyjoU

y)pd|!~#L)o<4s^DHF?_ z&8nQXV`vQuELB#?Cb}630$v`p_`(5(m5xj6ikgtBsi0uh12^YP+k!eq0j_3ec($gD zypEpv@-=fTmF8wd%^nv0%$&(vmMBEz{_+6P2|v{g4GViUC21aIOp|O1!woNH3Ue{c zu`j;12Z|OtQj6O1k_f{uP|z+#b&hS!Tv@1J$I5G+WzRgaazWUI9)BV1cyrDUdF=7> zu0XhLDL&*ff?!@yfZ!^n^D2{4KIAI zbNJi4#$UpOCcj4(dlI?z>J;t|{B3&1hb6)9x&s}5*1(`?LKxo)133f49dqnEN<1X^ zJ-Ify}Mjn`!hukY{T=eI3#FgD0iHP`KNvElk9r>3{==*~>Fy@jvICKe=a(T0hlYimoy zfMt#VyVisc6z>a!DnZwp5mT8> znHTJ*HubLg8R=a$H6Xn^N(dd@oNzthr?5bnbsS(opMSYFwhRP}2WHHwV-?H}_}(2y zBC@3#m-3%trnSRxJi2xG9nAZ4D|5nioV1wX#gAo+%t$3PQBhe$4MFWe?_@Jg71!U9 zu|<&>h*7Gji8?p%d_f1t;~&L$JO`{8~u`f#_KM$``OMrp%xK$%gQnrh1u zDp}c>RJ5z+pEAn!K8H)uGWAiLMq4MATJm8A%8^ zt0#FR=lPS4&k~^gO28C~kqD7Rh>AcD+C>DPZL$$!1QH7*WP>823ZjV?K|w#WK(Jv5 z#03H@U@0R7R8U}yg2*vgAgC-rNfIK+pvEXk0c2P#5+N871S2AVq(lZWK}iJ_L14xa zU_}Um$U$Ucf+B#jEEFP|8x9Yf8RI%YI!UN_}{?4z^Z?O zkJKNys?bz_8qmfB7yijaDVTei`~TYh2)N1qO#j{c{1e&r0RZBb7Ce0AusA(5wn>0f1o2i0{NZ2+q5HA#SLNE#P^0+RwF>HlolaD7@*)@jgsim|VVk6Hs z(V@mVRc%U>HiQXgZ8_6y6KHDUP}9ab-vqGJr3s7#Z~;KTi4n0>@K|XJcG;%laVlz} zFGc}iXA$Js#kMR02qC;ol@Sp&X^P~@qYBnKw>Zj}aci|*wkelJsYfeOF0HV)LSUt~ z(8DajG6}^ltxbVy5~Pw(*o;IUZ{?V}z{G7huW|M_pZP*-6ZnG-eVg}Z|4}6}pbWD? z|0W8uAK(F~K5GX{>LAt;%hKWaR{5O$>MFATT%1Ey?vf7H3P^=kX=kc332sR}bv z?gb=4s1%$#6oy$+Hd4z*UcNBg*F5lFGc2;0guyaEF%XInS#t{t zu-KCs>6P-vdPvlwR*-DOK+{H)OoC=0fV83#&%mK=;t99`w(>T$L9>KSY{-m#g} z!vY_gr2dQ-2GxH%gK~Z+^^JcUsjswK>=y5vq2UQJFCU2cCM@@UF4D>u4*j&TR{{H4 zT2Bdz`!UJS;wwApnREo%`_jdPe$ROiBvwTIF#hS;&Vj&)kOCx4H<+9(GTi6id0!zt z15EjihKJY!#f`lkyYeM|ul@Y7_V${l;`Y%3roYp9nfBMVt^hOOac!;K>sw#ZDCY6;~cXyi> z@D`O_PHD!=v$*Xl$AjJ8ufIqDI#PUZ z-7MH_TAo0%TEg8htbvB*aKyQ72y7hkEo=bH$Gh9;x4RV2`=Hk1JH$5U8qf+Y!r$eI z1nAHQk5+c9VzGfWa?te82vWpj6u&Tds7`}e_O6$Aa^7>pk4~o_FC1(QMK+rE<*H7KglO^|%v#=l~5ywMo_<^E}& z)Q48noeq%xziRVtNd z@31R6cUBnHQf;AWY^)ZelT7t7LL>>T(G^sTcMNC5;IKI(lef+L4k3Rh&AVTt0qLmE zUG&=>dU-a){Ts*ne7oAaKOtKP5LPg5WJI(cgRoTZ|A>8yXMAB-0R9puxpsx#`<1=D zM}(+;4HrvMmGR`}S6f?nofO9ixR-uw0t2d@sb70U9?vWGH6EVp_jS3^X>FF;;GO0s z>|vdTbB0_u*RlvsS3P=mlyFF5%)KnvPFU&7k8i=x9na)%itysnI*y;@BImuUgzur! zXvuTs!$ux!rI!#y$`lX+p(FtyLJ1?x5K<6|78pv1+^7Pe;ElXJfpd&A-ov6#U@Q1RP|@^j;K2avSKzhNyk~v5k%ymW@Fj1$7wO{l zD4-e}Fk}Bq?oaIx`~nO0)%Cv01O{kNL@sFuqARVC-zb??O%Re>O!2OG>jEi30&^|R zqFJZz;vYx)vXM~D9CUues*0Z-->)8^OjOm;1_rJWXJU-?CPi=;MyZjvayuuPTEO@6 zxUz*A=~8f>t8Ll z+iqS=Kd)PHreCT`UrW7EazhG|rKmblz+dQCtCfOMT10cC#goWDPU^qIb5l!#g{xQU3WB%e} zA_5^DdpmWG_TY0+-RsBS?f;OfN%&0X8rM?rJfDW%%Q%`)?0iAqjg~bWn-!cBk|G3@YEK%>>s!Llq4Td zMEf#VBGV9y8wG0DX!P0~?FflyppPM9k_btHg$N&yu7kLU;Sjv{^>-#LW}5L?_h;>E z*Y;)fe@^W+d3MV*J)vdvbvXGnNFC1T2b&}jki>+OlZt>p%eEm;B{JI)8XC5sQMYL<1CISPZb4k^|074s^M5*D`M>Xe z_xmIJAyERL7N3@1$`P7*zm>3gMqw^0bLf~*`Zf4$ssAkxPrpOl<0XrtAusP|E}rI4 z#XpU>nW?aY2LS|^D{7MJf#?sF8i|kYM?U|zX7H-k;_44LXSba^eQ>ynfe- zKh^{MKim;R#ce;>5C30M4S_c%y3xaP2>g^jIrUkzRKKm|pQH0Xn$Z<$Za_aM&PWf# zl1K1Iv}pvyhIb#juRsx=pX#5`{Q#-sak$YMrU69tMMLBNaNZv?9x&-Y)0_nNx(~X5 zKe9xONBYE7U?1(2wNME$0#tws0Hh#b$O-|VKVqJNzzwWF7tK0i!3I9B3XvR%_|*@d z+&n)YCVc;mf77ezAF)SYC8^i^Z|~m^?l5O0fj6Ki{D(iy{U?&Y6Zv~fAxHNDkQeBG zmU&pu9C5jgvCj+9n9BVa$>xTI4#`|FHH<}9MggFZWxG(qN3UIn5CT>)Mgoe_E{JSG z-if1|j0spcjcq1ElEWhpj6ze8%O&VJYr{ZvGiwtfL=;RA)hvj?Qd(`qVba8aQ9^+7 zp;~FIJ5tDTHmooR6Af@q{=Wa|`QkKIG>CL~aM z5UUjIKx0Ar=mgujP4BrP#chM)c=`WdEpd;|pnw3attOBApLcih@F4i2gCHay97ds^ zPPV&tFZwwWh<;?LK;ZY0q6-4#Q^JxE2u2!#>V*0D|9t;P`~`nzzc=js1~=s6eh>6y zxS~0Q&9UwC|1f$_3HKTA@JuGq(9f%nPXXX4Ah1**5~u(IBFw>)|4AxGY^+@C3&ggo zGRAA5gcV)PS|nTZ$|PGYic;@Q2y|g_(p+523b3j&N(P8*XOXb;|11M-2NQSd&O&Pg z$CsU7#bf0TpyD7*W%{K~z^Z~DFLxRwk_aMrdBBNzmypn3>Q6y%Vfq7lR6RJsBhwHh z)+S+UbUCN1x%YkiJW&2fC%~xgdUN=L-zvo%g$A%xhlG8!)NNtY4J1XSj4W_XQYa2B z7@%RWZtIJ@xgfg1AlU*uaL7m*7R|Jfz14`_d|}_FTc5vQCyUvz*@pfI>rq{PE=+Pv zKmkcM77)fb)bGCjUdb$JtpMF@#HIzd>f~jVg@|WNTXVuOkqA;W^wvTxn*>shl8UM* z4L~wP1pVCo|EnDD{cDya)j!`>az-yt$1Xc@cb)Y3_kH;cfhDnDC7wLa+Ob!i(3NAu zg5~I3lwzkowt+MB)6EwbC;N5ALpzAKQ!Madgn269s0i`(l ziB}9Q?Aq0I)qH!-DB$1T@-AU>WXOT5sR0~y2wex(vW7>jXIh|Aso`232qY2HY{nzE z2OOsjLBl2ODudEo%;F>)*UjqJwJt{od$cseep;{WG2z2HBsY-GjE$IRN@}4SGB$$1 zS=23(W`m5pS~Ee!gp!G_0ByPEu!fMX#LvZ#n`AosZn%Q3zfZX~;XW-`k{W{TN(Z*h z`s=am!xR)W7XlFs5Ge@K6;hbEa^!hpy+)zrd5%gGt7#o``S=5HY@Ft)EkPnpxXH-C^ zpE22Ddf`WMr+azQfrGh0s&K&(5UZpC(#F^>Xqz_b8yG4qXL#Copz#KOO@X5*Ul^)+ zCS4|GS3S21nu@-CdUMBi^Pni})pRcyHQ7-~@9wN0#Wu4GX9o#(ZwTz;){93*H_AiCP;bv4Nu3u`Vng2o)73 zAZi3yc2%vPS^J#hKly)0)Au_N=KUZD`l^KQL$>?5F68o16t8Js3qE@u=>Y$Cx`FpU zTc*B)ZpY>$1EVM;MHCcbDhjb;GAPC@k}Mz|eqFsu;RD~=e!S9A`^aPWcgdcAP|jKg za7NG(ya7km>FyoTqP&m}S3BW@>kS|PY+Km56Y@thJePN@DB0y5{p`&5**F^8{0MWZ ztM)j3<&O-GB%2B;2dly`0AdFuFVh6|O&7TPEGH4+IzF)oZu9kUWECIX zd$F`;Jug&fpTOFt>H{bssH_M(I^ee@A#N;N>E+(!`f+{mnZyxg{#6?F=Gdm!l zegD;kX=eE>`@m2yVWo53X-iQOlq6c-XiiqvhV%1Jp4nL{H?3ZIkO|ps0@}EiI&@ zyZb$P;EyCI#>KdT0ITBaMM36DgpV#TG2_p}+3I)-e@Oi%e#ibgs-x8rPn>+v_L&G4 zl?1Oj?|a_PW-L_~z$nk1_oTJTm!h2r|A;Dt{xu1tA(WKWDlkGnia({Zy8hZ%zAG(C zVqXHqsD!Lxf15S}T)gJ1IF-g9Gl`kbLXY<>0jiB!K6VRu8*Fse7h2P%HAfP{N(GTY z5aKZp??5JD3sK`$V(!+!{VDHHkovaj_ot0RuC%q2PCgSzBc~*$0 z*fpSCrw(|2PMXECFX##Yz@X{NW54=A0EiN1M$friH9$4Z5~On+gm{O~hMBB>cg%Y@DzjeqH3xKRFQ#jBPpY8WX-4|&l9kvw&`L9+{?+Bcu>4 zB>Da(!6cMQ)Qu~?K-$24Y^u>vB6&mS7NN&kkmI~6XmS|jG!$;3fZ%5gF|>vhfC1Wi zCnvh%1HQs3wyMU;sP4BFu8r`TJZ_XE58G@Y9%yaZU``aeCm?B|ZG+O>_hFynC$ zi_jvs$q9zQkd$Nqo&c&0iHVs2Jy{0gpeku{nTk~?Vv7blVhR*kghGS}mcXvgsjlD+w#o?5L+lC$8#Xj6+bYs1A@ zF-4I`uoM<28*6RzJ4p@5Z>^U8kMGXE&Exh%&M>Xlhgv7Jy_J@PaCKyY2v`OLc1W6(q+|xX_YmSn30mV&- zCy&+XuP+~3A3@+|x*msc1oRyNa;;%PFlO&$jN40(O!l&^4GJrAbfiK}{Wv%7-LS^8 z+!s(hpAKH%CV|33R4sJOO)D2ffQ?2tl8W5pS2o?3*ih3Cp#tv-<3C zh6Euwuq`dlbdnN6LPR7s-*z%M^HE(J&>m&j6^r^Eex5b)6js?mHgmOb*bhunw=SD~ zU%2@5*Pb9%yDSt@h$96%xM+rs!@Poop#-8@Vf*N)!>e=GGzD}q-hI7(P2tNG-Jq4B zu93rby}9Gpee+Pv?eE~GtSQr@MT%-QYp-_R&CQ*PUpYModlE2=ioz@;ZLVD!@xC!> zjsO{sUM}xX=j-+O{b$9`jy_9=c^^94MvXiz_nNh)QOgWzf(jvp<}Mj*M|Q)BkqnF_ zAzi)|LYWaqP#O7|?!Z`FnDfr2aBWCxt5q|FhI%l#!&+3TKtMnxFaX2cOkB;Ia&E4T z3d5V}rSXenIjv{TIEa8qfd~YF5(-2CB0*q;V50#bPFHQWyYa2I)6iyZn5-y;XHgI7 z8u|5L+2`Hc>(=wnoAUVukM@7|J#E1RXlo`3QNlZ@kQ`SLD5%>c*oyAbYghfI`Gyfr z`%)%0IUQ_D8rdtrVGHBxOFUW!RoM9T261zfGlZ0OT~@2EW~X#ZUcGE}@m=C%(9q?t#LcgdqYgB#`7-C2PWq&- z%ojAk&8Idqc)vcv_*@tn^KE(X^VB-ys~fCu7@VwS6!D*i|vj2{Gk4@ z=R}4vF^pz_#5n+UsF5Xg&?YUsn4ctMBx~Di;q&RLj{X%Uz7gA%uIz{xULTLG(N!?-j{0;-~`T%Z#_#`MpI~M2;bNVZg|CYb^8)rPh5TSyWtdpm!yWN8T z-J!66b-@OU@*p@M%n?vwZ43hRIg^4TLXr^)h@lfQJGfVq30^bY$y!k^d~R1%j|w@z z?`Doh*L+DeY!)OBB(aC*4I0&tvr%kdMRVD(P1oZPhQ7{qGRKIX4&D72@*P_o($Odc zg4J9YW!$q&qzaIgiZx(ybWe{TFo3nFGt9n=%No7RPzUaa19PwY$wWZk!_jofM+rx0 zPSl%9zzu<3-MlyNeJC6_aMW~# z|D(~mP|xZ9IRKJCBmzi(Pkw8Uhj0LlA>+yZt-w$Y>pe8nOceI-mTlhLP~eWRcv;YJ}04RXIr&2^B*2vu0c8hKzU<51qE;IWV zF8?owX0a&N5OU^^X2&-LL5N`37^Wt(y*ON(+EkwNqhk>>+%ZjT;;mMyoZ0S`w@$T#J1XF$I)>WCf2xF5OkJXc(yW zc6M`K8|46mAOo!C;oHt7b4-pnTG`U?n+gPATz7#I@^Da?iSJ8k-8c<_kLw-+<7_Y) zhomS3HhhS$GEfwV=Q-u5&xe`;kRq)8I}E;FpDd!0eNuF5)G6q2*RNcocmobYo+gAf zRSAhCgmdV@P?Y^t{*E8iPtI<14ODzl6W#NWK6121#9r48ime@W<*}qhO;FQ&%^0Sx zlMNt&|`TBbZ^Z+7O?zacN2S)dno2h23j0 zvx(gVhGp$eHwQP#lRW~3It2%Qz5#~ps;Z{}z5AB}44L81+fF8f9pzEaGP&HyvLhhK zmD8_I_jNifEh0i9(Y~y^=-x+vH;OS8ca6JtRM+hnQvKDPoR4iIx&`O>B2?0RJ=fWxfCm?n zLaz+$^1{%75ap(#-h)2vJcNvlh;rY_O?1RX{B{%P*F7lfan*{pC{3WO+> zPm4*xeQ##_H<-@^Z5(7BT1mp) z;jn=KbU=uN0uun*%+$iu)*9*=)}?B&(yTEG&f%oAWBn`6Un3S4aI08^f3xlIn7^;@ z^7ra7&OCAWP0i>dSEZP<3hwIwf=Dm^m;8=+KoE?f0HL)4*hn^MFd1pKG}&&Ti80Pb zZYHFT8Ex59>w3P5qg6x!L(h${yTSEvo7gjDw=1uco3q&@l1U{JD?&h_3&MSVeC25!823*vLe%Dx3+?rgFYczgUTKI|(VKkcvvB2s zjPdl7z_aeMga2z_Bn7t)e=f1WL~)z+Kpp4fCVv5F#n~<*7{|) zmqD{=A%jflyt)IWZ<#~`DTM|J6uQIydgFogm{$ET%t%um0cDefJB~mHGrr?9?x8b*Rx_!Q1E`Mk}$FTc- zzMj5&^5;%^$IvI9ddg{l+lia@CVlD})dv-6Vx32xW>rYout0cJ7&IO6_JBwrB2BT{ z+mO}>9QNY_ve}3|p5Ve|Dc8>Xm~+=F#9-1$RysR4kYx5k$X0KVGe?N{gH=SL5cE(*}X=yq8i3Ep5wl))@ zE&njyax23d6{qXONjy44J5mgBXghD2H_majt2pB<66nvA~ zPN1%4ohBe@i{#OmVVaD&b5iq?2qjvTEB-r%1uVhWap~$k9J0mTcViZN!|KHEzraCMH&n2{I|lx*SC)wSAk z4I|ran;;M(pkP)YVhM?TMmgzr+f8Aysda2NW|I&qEocHssKaX7lsX?dZ@oNUiF+Jk z@v~WpV;Zw6C5x@$tbi-XqFGBITLzL|VCNZUCnpYZ6@iGnF}pP4p6(u&7MMscj5|HK zo!f&KU3qUz^2>D5Yvm(9WVA@wr28Lr-ZD>Dys%;xL^wG z!d2S@lOy**2;7UANl<_rBaGtqXN+iLW@DVjJz$8J^^8a$A0T#k_kB`HB$81ev?K}y z_1nwcpL@mQ-^aSH%A%^fzbB=vlT6jiWL#U{k@QWoY}s2eAWBFG`OjWPY3B058&vXb zvD4|#U0MZQG`D5ivjM`9noM7xWG#<9S+jTMJMW&Van*i-OW#D2S#Epejdal!V=jK3 zY@W+k4I-PgY?9id-KS>#!nWeQo94r0%eu$htD9T9N1miq3KS-Nd4keaYM_9|uSTOk|S7H;d z?PpM=?S>Q|HlYCunH}7@M&bjJVY8|&wPtxP*%b9c|Cu}i`(tm_%k>e@aWci+{>bUx z7pdm_zm@u6YL{JGYC$Cc00KfVBO(z2WC;=wM8-PreEBwTP0k1;5-iHuAjXc>t}r8a zq)DGPib;E?j5MLk&6G3535_=9_K-6-p6dnSqggE<$hgr*sf&sY}oFfL@^IP4Uc&X?!W*Muzq{?0dCKjfoH;Y#Q>9;KpF~bwOw}{$f#<=I>qy|U%yw;0Fywxq)GGu9R)pQ$KwA6u#hAPMMuyyt> zSo!3{PS!~Um}kpNrEE&%&7xpLQb)fM7c&Ompa z8&*7HLGh%o&4$48V;EGHD447m$P4k!Vw|O-kPN(Q4}-jua4Z}T)s5|G#22fs!%H{ zpK1=LB0zC98u38+dJLqfRVS(-rEcQA`@Z;(2K#bK2yAjgjh5EY)0Xk3t#NB%z&Qp8 z86uoOAkxH1Gdn9>AT3qwSBEIfxC5DIbZp6(W#btB`1?*`8w(110ld%s9SY>_;A5xb+I~W?bguFrJ%zKJ^=m*KVi28^7HrYzN0!056Hx*Y91 z7hX}lE7i4(WKl6@8)=gl3+k&Sd7`IIx#HSmf$^`%wO)#9$Z_iWvhgEPaA zBeNTj>d%r%a@BVH@@to0B8Z(TTVTSC)@GHQHOqdT`Sd_KEczK`|`YppIyCr^I5nt*jz-dr90)UZc)9v%?AtoXs6XjnJ)$bW#l4e2v zs>t~1cKv^3GZLj7G&CQq{Lh%Tndi#xtfc0K-UO)&K(s7YjcrB;E{g0BRS~ymSX;Qv^TdeXB z*d|EEDnUY0xZ8`^fy-mHBP5NBnSiQteb4!`U%kFO{QUPB8*|a@m`>iGnW&(IN@r(z z4sEKhl2nP5P4mbFm-wa~^Ye4r>u)gGAeSv!XXQR4!r2! z4h@8y2KDrLSy`GQ0`v1`zqOtDMLUwHWy-+kW?{OKbsAS=Tv#5VOVNnMP>78YD-mqC zCKxEyk}yN2jb!eIq2hKk!#4^JP?gzu)t4@348b8VA`DxUq7K1G?{EzcQIlfajYLTD zhD!$plCu_cdm1ywNbykIXWM(;+2io>c=P8MXNxrX*{c|6&aTLc9mtNbDI7JoxdT-O zrBv4*#s=yKR=3cTkajs4E9%i00p3k&?o8ow0!D1vt7rsZUbV4%n5Bp0bk~bj!40^o z-lHU)5jO&9qG=q-1aT@de3Ano>X)OeBZ~ulon3M}AeL(4$&&j^2mtOv5Rgd( zA|P3t6wEUPVTH6%n3*14zT0c*`oA~g`uuO81CI`Uz23XmTLPRF64Z=XjlLGVYYR=t zLSX`2DUz5)k@}x>0L^!J_Qp3FwY~THIZzXG@yn6?^6kl&J&US`S;3uIZ`0{+I`6uB z-HZFSfK1X}>M)uwQ#_Zy1crx*sq$UJuWlm^S*jOh!mCBMYSuchgO{yt& zfkb>ZX|hdL-M-C>95rpza22;@8ZMH}yE(UJ*PWE`nYka9q)CMwHOJ4L4>%Vg0Aw0= zWZj+1ZV$FjMnhh#tm2y}{=9batC3-i44xUT(M;KO!uh9#n72f>NnH|Z<3v(rD($)|rFSnKAiFD_=`>i}g4BM1#ij?AkBP1oPKSeBD6FeodxR9dxqL9wPM3<-+?zmtJW7bV<5}LeB;#%2 zM&Fsjh+L7KTZkPIrh}>8otAMX`})OAZ~zU=h@5)iEjtsJ1OY z&D(R0=9NLxyYAPP{opjh)dAZHb$r)RB#s8c=PQv_m|jiElq~9i2thy$C;%w1Le)V= zwk#L)#^1xCI>vN)J9l?nejy%j#jp1t*#8qml)cPGBWhu z+))4zZ1Br8<;+Tz*eqnu`WpTB@Eh?HhU1L%zY#3ag}8Vi?ES(~k z+~Hr9z?=xN_`R3Xx^?Rg5PEb*=y?Vojiwst5ForIAOx-z*xT5}nv0@XF=CA+W-@p6 z3iiVUiWpskMK@s*fv?u3@?^=8(MXS11ZYc?E#RPI;)X?Bfs_XKMnIZuoZZl#i|@X> zL@gK3B$g>9d%1cVJW+<^vPF$1h^rMhF@Q3r@5o#nA(;Y2YO$5$wlG`F9m~PHHRhUJ z{Oy@BfJ#MTDAV#=d*4GE5c9QhiIZO^D`!N#UYOPd?rk+82tp-F+**(#I41mb^Foc; zbjQYQoz}-qtYaCdh{wP0iHT^Qhof95535VZ!D+phj?a~>ZB(ZIJy~ksJN#VTqNfd+ z^XH`H4}=x18?VU2MCnwKUDt$Bs3<1koi@CoL(eoT;~y@$Y%#v&f)6x+^OVp9Q&B{2 zg}@r32_L2Sxxw2+zRg^a^xAKLv8$5()?k;5DV0DM)kH_pw&{QKhhr7!YpskTc7~ zN8gpRa1=kp-EvFG#`(E8&CBE8e;+SyaI{C~@p)&NCDY(SlaMHy`!Al1sY4T@tE+_d zO*eMf*@WVajq&Wp-PKcO-8AIcwLH=0%~t)I@?_zX-PqXSy4rQSu8kQpNoc1;nlMWR zPSK)WY{rQ#E|$GIc3~}5_X0EoIY6s}na70ej8Uq6_Gm_Mej8RT>1!dCg_(^UuL5mJJ3A(q6d+Pq)lTC59xW@KhS;W?(M4Qg0bO-4NhKg>Y00F9&%HxGST9 z#xmcs`bPI}laiBxv<;=gjIs3rix$fTrX=svcc6%U*^$npnm$&{y3nit5K^YGk(zaiq5q;;${jO4O*C8Eu!mHLSgH zbEr>xIj?f6u*bIjd^vMTuP$7(;09DTMUept2tAXjG_D+Yw0S49GXM{QfwDw?A7X)c z7%aKYo~qnv&LP__u6laqK2)Mb$&%(;5N&)Lkqoq7XuD0#5yURyq8MWKM5?Q~Mq3tH z;FPtzMeTLt8ZVZpEcqmkcs=P?;RBT~DVV*MzVAzT2MV*`G#YHeY0ZJx#)X+Lw))|0PaLYoi^4^6 zjnX}jnsDrmjm~#(w@~xJ-{biF-ydJ9{hQXUZkQD7c*#V*tOy8YBI1Gu7-B=&>&Ig~F>c3Lyv#3Iv8Xcz88JMlSG%Fw`n(QE<%)(KCq-%=2C| zoZ_%rjNIU;u?%7C&)dhU=QBTx^H0&;@#l>_+9bEE`juj%zNO zEa5oOuDh~Hy1MX9m&(zq%CpfP$TLhOmM)9z5odf^2Kpjqjk%}EW;rImCdqHpt{ZQX zz$@RKm+h_9%Y@oCNtuf_H|fV-muBgi_t&nxsa*MM{JNw&qN%e!XeuO_w0mb{(2 z>vl^xh)m8qBi|fav|*B6ksPyC37ts0l3c9U$5fnfN7pv>!P^uH=irp(@H8Xh8exp~ zygANuoNHdT7Dgl!q4Hfb{%9fowGyiZN)4-i%Legt^LS~fJO|MFQTmKTW$$e5hIxy` z`~{kbtkEBkP6Z_bXN%zmILrW6SU|S$MsJ|jt+}8GBL0D*d7*QYRp`oC}XR6>D#vQNr^o&;1UUcj+Mfyp$b}ryv*tucixLMW&WYd=5+Ag)v}zHZ<>|{ z%Z3>o14aV`MB2BfHdf?S2bLs*fJKq=}N@Li&)pXJpFwa z_wzhxiAES;!DR>tz&(d+591lb$5z-~g`!#^qn_^TyH|*xxs=q`ZB01@nd7G2215m(jQqZ;u|ydT#F1<7oMxgzX-l-$wq9*X??p ze7(FP?d&~-E+cQcmx4y}gXv|y^e|nnuOXIu9O^Kyv{!+LYwq9dkAB_{?j0Uyzum;~ z*6)TLdBv03yFAE4M+<{&B}WU@CZS8FJKhP_Io~<7^&4tU+hv}rckYgARoG!h8`cp- zCVC=VFGRU`qY)mfTa}Cms!@9uSzNgp6dN<;RqM8Bx9^&Cy6dSC(w6Rx%nE?{OJevM z%WC;Du=XWh-L5aAFDP_O@$0V6{Uyz3>S_1-zAt+tp8OYSAZ}^6?66A;5ZaFHC}BoK zB35052!NnscBn>zuE`U}O^KPhrFP{ITNraLOxx4D;u@LSksuO8Gm8KwBI2T=D)DM0 z!v~V2thL&jnVc1Nil&-)4~L3-XRC|G4b(msy!|n+v+nTr+rR4kIe2mS{%(K@<}1Sc zeV?zu#tKCufhMm6l@kfDCya_&w3;MF8h0!q_HlkpuB%MnmkVznW;^=@1LgL5bI{qY z$|mE?a>tWHQ+ED**}5p3F9uuB3%PBZmoqgo;e4HO zjO(haWU6Ur%MLZAn;7G^>0+)Bx$(n>syg`Q*+#7~@pO&D7O^#5n!Rg{GdV_SCS_S~ z-pAv+G!{IJr3O56&fQTv9eV27K+7(R#_W&2OKhUf1?{TsJZ9gZY1b>YM;4c7-J^I) z+b)fp(s|;MEn~oLx*}%>P`Nivt0W`WrhWV|zHN&}8JxZ$Dow{$eJyKR+jKyynZ zl=OxnnhF9Vota10(&CybSUR5~)Wn6G;s-Cbm6zRDHL;+B*@@a8lr~X&8_xW z%C+qhFmC0GjAMGL#bf}E?UiTCOjO0&JnEhWy4PO4TxycPD7B2ma32NEI$t7a+;l^X zQ80i8&a7L(m3OL)sYI&w1xbCNxHYO45;3h?6{{T7%hSoOxu$na1~}vyG3)1{(XhLQ zAonuDbSjh8Sd%@>-O{eg_s|(`qkA`FD9y#nvT;JAX<%y^Ok-&pU5R`Xv`97UDyd*X!~@A)$ASicd-`ET9Vm)YmG zysGr^^J|?m7!RG0y72G10gMeK6a)ZSYO>fmVD<}O&Zp$+lx3D}7v;^T2to+8D?q3N zuDr4yC~I7}(K#^N3K1CvA#;(CF(+E6HoZXzwlR!^uSxe^`F#{N+&_ocOR2hxtdk0@ zzA*Ggf#E<+kA3;>-(%67t+k>ZG?KRbCqF~?<}j+WGbpT z@nOlwzi!_br}{mgzdm$8(xFnQRH7tk)1#kW5T#a?wwWQw)Ggtwu-tclVzL)!mdBKB zjhCxSEW0j&o*c=nBwDKxbobfUuVV1a3%eoHJ6*|}qmwT_oEe_%{x((FS3a?q9r4Mp zZLQVaCHCf*UPaTVHzYLgd>f;psH88#duN($+VM?xOPp7)PMW8MjY?z99ol$Jvs`uN z+Z`A~j>%oJ>9(vWouf@O87jTCw%3j#Y_{%p>n^W|i#0gqwkB`V>X|$A^&P{cR=}Xe zOp)ZgiIQw$oD%nK|!z8(q zo)V5qZ<%I>7s;SEEIATuJdI4bcGCw3InH(b3M2sfgnW@zcvKpM-aWA^mCR%XAwdvR zye&vchPhT&wRpowL5z~z;`{OAaWzw#-)nZm;_;6=yK3JmR5)syJOfZ>sA5cqTag-} zD1wo~#Y{&Zj?^~dUNB-aItzHrBI96oxcy-hA`Rs3^un#CWmC@V5lv@Fe zP~yVQR+bNISV^f0a9gWvBwHd!!HCtbnl@{tY=G3r+BW?9T-mGFh!p!+7 zDleW?-!)fzK55mZvFXLI!d(l5@!^IIqY7Z#fUsDHnzaG|pfFyx0v1IebD<%K3KRk) zqf}Qt%RC!~62cSZ$_q82AKY(XoZd%C$A z5gPmcug%HudUSnjD=at)r}ATfJd5-5hdDrZ#GyqXA)xkE>v&*x;w-qW*+(bQoz}h` zcXs=7`T6#Dd7S}!xfBP#?9ntNb|^zfj zlmI#`bwHQ{r>ctFcIzd2)_uYayjcW%!lMS0+Z#^9luW>ysH zfB;;TULu^ihX}+7fitBLYD5+$`xvrOp1i&H$;=acSKivFP%elq>;vae1=%KLeEZDw zx>im;OUW6Yj387QAOHu=mDB|L7H#WtA3(Ef<@mntxW+)TET1)jbhcRK!wqL#F4T(* zU|h6xnr^5h8Et}$E{E7IE*eGStXSi79wjE ziMWWD7Vl2;j5|~_IhexY9u_TY3eMO#yPAf%YNIuXpMTCp_js!PI=&9udG~&=jEVpd zM?$4h0U=N{kVKlLkaas*3>Rz&;HK^|As2Ekf*zDT11(2BcLoa9IGEnXSG#PR^IEuc zNz2ZTfY) zHizzR-B1a2a(8NdAZ*_|Ch~5Pt#n_gYtlZ`IhyIep`+E7sx zv?K#1Oe^*Sfv=)K%hKSOh=BF7QCJ9!W|F^ZPi&S;$~;s9GtB9nY^YU^We`OhREY#l zzkMYVEduQs7?olP1Q;U+ww`Gbks&e0U3PK(6wW_V;TfEDVbA{4=;ejkr&d4AAZIia zU@Byrg#h0W=K#5^kCgP$P&857J_m?7imDJIBAm$pQfvW+3Oxw(L)d2;r`hG?0K717 z2=3cPb56}njd$Sfo`r2%e}q~FuN4AA6AZRP`_V$yfmcJ-O$ zbJH9S>`2qfP$L2*nZWN|bMN4==x?TiAmnyk19K09-&X};0tYRp0pbMWh<&`Dq<-5g z74Q5%H`kYU6cvVQ$Qb$Ppvp8X0&#_#y!gEF2t1A zCJVzE>TobfwzV9oa7R5&1zFT$gPM{Ru^A68y)&boP|0<;T~vjWJ%i#R1~#B6jSWs> zg#mY*NXmtBGb=y`6$-JO+O-5h4%0?B=0^dB3>7@SlBjLS_E zMnT0AlPcldu)4!g6u7LS zwJD{|D`zEH2_|ze!j?s>ix(DvKX-;?@((Dm;DAOj7U9OFV=@IR`PA_^sF$buuUNgz>h#jo&|prU;zF3FM_WZqN; zJlJf9$iw?a-1+OPp{@F!t`m@xt`B|83tI%$5=8N(F{+C#r%<78NGVt&3DN7*UmQXp z`ho}QTKTB^c3moog7E+e&uugFTA>r4&~G?SPUiGHOINeH?W%TK zL!)0->$#ydDc3Sh^<`iOv?Kt-kIhZeN1rZ|!E}Pj0>KfWrgiR8_v3>^Of?#v+=T$h zK6hdepSk@4SMJppt8d0RXfK2?wSR7%VLTa?HyZ9A9?(mj#w0LJNvvWjrjDS@J9QJc zHr^X=WI9e~QIEs&SIiP?1_9m(YkV`j=ahTlf+BmhpZb@xI-3nz?NX|rNc zNj8!KZd(SniV*`@wBlSd&gnA1V|a>=hky6??C0Xx+k(kv2DvW+%#V0UjG{3W_cnJl zJ|821VEnISx#-gkAl7_N{Wi%ZJ_=4=tz-@vJ?tQJR8d70S4@G;Cs7D#ixv~yFp7L) z1~4`m1B*$+rnSUTMHEuyD_WJ5mewpKWDFum6b4JzMNtTq0xXaqJ#byH-gAWl-GZml08-3R@k}o`8G~yVS zn2>xlS0z_eMcc5)w|%id&)Vp{&9i}(e|Buyg1}@3PgeX;L=0_ z0uda~Et?131yKJS1yeFe3MX6?z$aRII*e62vO{17K&+LBfJi7v3}-(@d1rDsc21-& z2~nWzpvP8tIwnw&^I&9#aFKC{k3ryG{gJ#t&IVoYw$B_yd4uoz76C_mS11&lsHo;e zACgGG1Z>4#vM8#h5da?y=87$d3m`B;C;=jp2!SGkAp$T}5<_+nu`Ed-2Xds4#0Vv_fXBF_m8Cu6T= ztDjbXjoF6Cv)8MLDB60MV1o~le)eMh_Q7~V`ybx?_h}#`)GsPidQWP2FIuA1I#0)w z{iDz1A(lY$nbo&SK=Qx?TtMlH2V4yDrKsL=IH>T%{ z&kC5<82UbL%rMUq`DJY2TDvtCrh+PEUYZv0^-V8^XpAi4u^5Pmip66XW?W+ys}Q)1 zOqX}OUM6DZX6|NYXBfsYjAIyQF7B$eRI4*Hj8$GKgA;8pCMI3koNZ>2deMt#kge^V zAaJ1tr=41xCh;!?;T+=I5sWS3q9Ueh?-;|~!%MW`Zm_p;SiE545g}o&p5`9v@rPBK zvbb}HhnJjHvaK@=L94LsSd3k*))_@bNL*CQ8fs{FQm=t+SBj;^F7D>m@ruS56^vsT z#xaaz7{)NR(Tqf03`D}=t}xC81^`Od5FiqfV%Sh1k_bdD!q%15Q5dH~0AO0Dp)T(Y zWFu8r0svv0@ZSn!%Z@nYXcBUcT)O9|ia`)rBv~LSAfPCr&yhoz?KLkvICENUfN^?y zs=$uKS7U1{WsQVlhKQ=RH8f3JRhG89#o*Mv+rliwG`29U7Z-CkQ$lH;Ca)KGQFnJ$ zPls^$VAx|*CGhkWUlZ=3ZCOz6`L!`&WtIq5np{Y_yvW8G)?`$zT-3`;#v|y0Z$(&*E!PP^%J{3z_O~gDYiK{FfouR2(%ot>) z#ahE8tx%_k#Mr~N%Ft|L7G-SO(_-!-B4%#y7{k0R;NuY!iFd=q(Z(kj#jV^Ks4a{; zLtI5Y#MFqyTVdwvuwow=#wKPb7>c^aF@YCY#xDSPDup+8R1|<=Y zBp}Es5lD*wmXVqo)|w3GKa}Dse znY+~um+|g?oQ{lP6&*Ol?2Mw9)Ge}R`SQYMt{BW9>uaM-)U~=2h)}p!ez&fgW}~{1 zRC;1%E_}^s+UnSzJFCldRPA7W6l}|TFP8mM%M6r_v|Xb{644YGvCkwkYSXt2(?wO5 zx~p{T&m(KIhD{o4(XyN+%KdlU6@u*WdSy(>PG(;1E1JmZmv&qsBwE{Tx*dkv^5d;3 z(?+ZF-L1QH?Y~B?b>SYk;T4~2N(;ow3b$9L{cpw=YIV7!*LAz=*(-Eq zry8H8w_|2~6WgwxoH39HC2P6%WXw%G@EMXT!`wGQM9dP651?c z#~nK3=D^&DB57UI9Btm>tC^UT)zJC7V?^4HWo}BwBlv8?E;I5c_qBFxZ!6oaIEjAD z=fATzVjJC@F{tfJl&Py{X4=Ixim}?p#HEP3>zKt<#JX%y#FWcMGZC#(p@*R zHJV&6_K2w9iO4`B>7c5lG_^=b9(hqOBqX91*(cw$%Vyb3b!}*sqYwA=W4Z?A|23?E zH$Q=>`AQGloI{FmsM_>a{9nexzu+j`{TNpJ>0?_E)im{5tZ=F!4_PXEzIrqHs(R{0$q%`i zSu~ZyvYac*_pCf;Zf0vq5J_5;%_wryeAOgb+hinz(sjs?1Fy|wCve;G&AVP^DKnj4Q z1R4cYC`Cuz5mBTR3Q$#uq6q|4Y^o#l2saH%Koqz7#RfzSR1fR?Ie&%zLa2xM1|=!& zrf48humBAR4F~~i6w{kVf5yP9D7r#PBu3z56bQNk0iBS+U=q;*fneJJ_hO)3*a(>* zSmcv*S^gj>Bq$TAV2H3qW?$2CIV3EMi(zX)io_Kn3lS4*Fif=NY6iP#7{j6jtPu*3 zqY1p;mntFx5m6%2l}eOUf-FU6{>7?RjB;3rf8lHtCLyG>k*f++D77M}vMdFNFtNli zVz@SfATdD^XqE)#G9_FZQq@4Iogzx<<>i_L(LsUt_umeM7^(fba`UH_`?*FiRyV^8 z859sq~W= zw|G=Wi>sZ^8LWjnHml6oyA`N+T4EJgrQKGsaS}kItI@_M>^YhrekfTV?x_YZY2zDM&A9U%e%In zTWM|a;y@rtB!#LBw3Q^G4WyQTq3Z=%utr5J##?F6fT6Zsw!HH&w%bjQ{19O`Sx)Uy zq*SivP!2_D4w`jRTVL!{p_VSxl1fQ)f~0{Y5$&w z7K3P?p)|e&KrQ7)bz5C!Cno0bvAT1Ysk|5l~pcRU*NW1(XUTs7V7%gcO9Vk_#k|c^1U-%6TWN zS6&G7>$drsnu(+d6y|_r4sehe6`@3sI^_g7;s*dgB7mIQ6e?EcfKCJvBnbcqjB(#o zRZ*7QdxRBxeO01&zOP5G!Ad&NeKu}%S=L9HW3!lfCjv5%#gUQBFqyrFf%MsW~~dU zn6kBsB->z_3&j+)BoS{LLXxPcAomeaNl}8LKtzlc5+ni)VIqh~qQHm{pirqmFaq!s zC^u9jB`Hb;$RQ5)bieG==Y^T?(ixpp7#Ju3dfhyqX_~WL;ExXbTJ|_VftJciB(#(u z0%md=kt~YgQ~3U7vsSvm$ORK;AZ+h14*s(?o703Hx=urmt!3z|DLV;9_6hG_l>3Mm zYQ0UKrV25ge7}PCy(B^~PiwEQZ=vq}e{13T8f!JzU3J%8bJtbIF^ppqjA5~iV;GD~ z%+7np+p?;W-@rhKfjhzqjl@)X5MPLq2uKhlNFW3lutWh#5l~e|5(+?B6jmxosDPwd z0Te(~Si%89DlrlIaakDYgj91u zQP?7*a6oo4B#eZMB0?Yr$S5?c7AXQL8z?rbYKs`#O07zkt&oEn)Ke9 z6i`Hpp;=N30br`C3loz&Qp`nFp%om(L~bIZffX7NQU9_67+?&Dkx8&N z3Lr8Z1p)~IbW8-vAp|BQ5r82GgJcL4BBKxxr~^>P} zGDbp>WC6jFgsEXzjaeuo6uv+xWJoAQ1`7~i!4Qyy0Fnr?5K0syAW9;E7?7zVB?d%* zqXMlG3m`!xM_?>eq#%e`B2fV(Rgn^vS^)wV04RcmKoF)1NF^;&q<}ICMhpmqijf6I z0UM&A*aRDcu7^M4pDX+wf9Y?nKZjn$5;>s>Nl=h@P}0Fee`ohMp#8-{o`aoDi$bQN2cWDogJ}=Ran!YHI?59Tw(ICzqhioQeA3VH~0=|c1h z0rHRlf`E7%E+!dJ`AF=d!Ik}6b@OxG)g~jLOPCfQ3dl%;Zuht>-was0Neh^{f+{Dp8{Bu4}GK#nd zXTtc}-&;AM@nk`4rKdQYd#^H~3=8TESlhlV^ypyVE@eZ77{01P5A z>j(rbXw91js3Zn~6XrZs)!P`dvN8JLKOk#AH=iFIq`{&_#Iz7a4qJBEBndtL1M7v$KLrUdw56uUU0SsCm#e2OXi<89FH9JJN^t0 zl*v))^Lv;((bYBd*HkY0d&J~wne7s&g^OOWo&(&TbG92yxL`D=^gOih3%eLng|*` zXk~|S_AtB7v~Mv8@nuj1oYh5lxke-qBD4+rgagJNEld?M>qsG_U-bV9$5e7i?Ouk( zi<`STvoK|qRC%yrz6^aZ^QB)3pOBw2KC5iQ@*(;Ve~L0g{!YB8}!RP+*!=X&W zZhN?e9vJxZwq5xk!lHjy_XDr^W7F?b`~rXvXFh?h2|BgAJaZ9a;Po^))(?V*RMB?P9W;nLwKGL_Gkzw#9FtMoJ+ulw-@bhJq zT{vzT1A-8?UiXpGtD1A|D1sqJG$9$3ePnDvbAkuhTxg!bfUbpeIpnIAcQ-S%LyDG( zLL@0s5k!hl0zT0T?jcC-@i;p$yWr~UBi8{C9x_z-c76Ec6MsqR(_|EF1s=#!pDkQn zXP@TQBam`q&9MG^the;?(z_ANKe_YGd-iYrC`sB%V;dea{U>x|4-%tZJ9ej#qwV+q zZM=VFE?TJ$iv^X-0ILa_Y7%GeLX}F>wi>(_{84`@-@i7E@Yau?bc*@HSDP zVMnwMREeSi+m&EqqP=GyqGgGVBdu_5)w zePDth3Zx1g9GoNj8)WS_IzFevfn)aLFS}7+)L&7da1H93g5)1Tpp@ytGk@5EP#-W< z3V=ccgXYl8^PIMs+~klArX3?^^O8vy1*Z;rcfhr+yz{zajvOU`HHAV%AYW{~e#`$LMPk-`Qzl$$MU5Wit!qWk_oH}CTDsC)Hhnx4iKbW3@1_7A(?C%fCef-6-Ug?BN{bCDWtU{QJwQvKfV zd%dDX0{IxlATf%FuoYAVgjIs9iYR;*&UUO=v1C#Lz%tV^TSB%zj$a6SYP0Xl22Bn!5gK6(SL}dJ%%Ekj?f%|hj zHsI)P1&Xl>vq;miZihNP79$mc8K9OJio_5M5=g_$fYsz;%&!6jJjTFmSOF$Op`s}R zWSrwyQnnxqxn?LxrZJ3TESiN{(1=lIOtQm_@~Dn-(C=oVvL?58h;RHR=0<2q!c!^3 z%a+Fu<$Da#TtQo>4xEZ+ZQRswWT!Es0XG-9_RVJkCw>h zh&HI!P(#tEIBO#Bk-?;PcX)Kk^4osZor1IysJM~Mq>&LV0sZ-0DFdKA>8wB8Sl<$c zqc@M)+Q87eQ~=r=5s?V6e!RdxQ2cYpRgf)|008yUbt>p&`b`H%GMWs8<- zRK2MAzDwZV`vqH3LVzh^=CCupRzFu?D+(|+&sl@ad%MOO6I6B(669I=N)|7h0VVkp z$3xd)Pt|!`8{`m0Azy&Z%eX9d$-8!0Wsg2+pB%m{p0Oy4X#gPWuBH|ALjjq3%PP!= zpYG6O8rYd_KiGxE@)4YI#uGC1uA>-y$&C=B16l!2U?3JC)wGG0H2mr8C{Oq-XbJ)L zA7A{x!1sHFKQNOF0AnSb0qH^qkatq_7bskowYnS{7{t7C4uRZU>mYb*BSTb}CYrBf z6F2wU(zo*2-Ww_Oz}Kvud`R9P5(q;JkU|gxL>&*>&rmsB2eQEzN{|W~h^mP~QUC}? zH33AULqU>;r>aaFJedgtb{;1MIs<}DAjrF+p)p(_$~1A4GH(KIGcn+McHe#RMs8y< zNeH3Yre;BO2tOfhE%i}^l>l9nKj|tABcp!_Kp*xxj>vTsIS+U1{?9g4x87Ng+0FO1M9Aeka56&YbP@iGaeB7P*h7&B_M-&pdm1 zu3Wkz9^=FyRmfwGHc(ule{a(M)79)txtV7Uzw7>BW*1Lu*Y!)L1L6GsU_GCvk1~^( ze+S!69Mj3_3Gt*)6H4>o9&WpOPl>!EF5~62nzPoO86Eriph01}8AcUE7AuTrg?vKf zWLk!jk~w70JAGTA`i?%5&H1KrkSR#X85;#g0D#~W+HC`7jTlL#9m*di-HAfTK?c4r zqQDT0D;D&f`aHkhqva#Ysp-|~x_JK;|3nf*Bu`WdiA)NKSxQr!J|1Mv4wUjmZbxRA zpS$r;{_l!SFA7JBRiBH1B%Ph!-7p#uA{dYjJQD;|2soBwuS;9LT zvQq5)cpsGtM__Zc>_{o7sF@P6!U?C}G9dYW1fdJprj|643$*5LMKjGNq6S^C$#@VkZSGM1?36qKZxTkS@YZ?Xp90-6E4)?>5vhW(I+x1eq6C zb$}f*T1f=c`SXAW=aKkdh4%iv2>%zQ$N=q6ZlA-@DIgbT(S^v`Re)5 zIer=E?*8~1l*iM8Hu`!yz)Wb;(i^F75$(dU64tgQ>WT1J?SOd9@Hv`!dSA`z)dvta zPfi#-)2e*b-(8zyFJ`d(W~Qdv-Z4}VafRR#9`L@F9UvHqdi&>-X22|K18EBu`4V`z z><;qg%yN>?;l8jJ@|akcl!0o*`SZQXfjtI5@gJR3p(r>E0)fD)%BB@lCCJ#sJO~hq zIYPjdO#+xyFZ$RQH><>g8p z3GyocTb2pY`b@S~DKggj{SSue3mc3&{@P9G2dCvoRLo}WJkO`xS}Mz)x71|dL6D9os;y=X;0)_{S}m)wLX9frQa z=M%LL1wx8NwXF{NEBsZzSESr6Ae^mnQxl{@@>A{4^jGDS`6*ljTosm)-nX_qu2c5clCIbF-w714A@Z)#{@##(2*@`Y!b-?q8hVRnKBx3h2vu8%wqKK zH+JgPXGm)3QUwqsf-cPhq}qsKcC|1>hp|l}1IWZJ*2if@0FJ4Zu>cU`%TzX^u+hfN zkq#B-s2sr?%t@<*3=R1_Vb6Px(amem^?n%+Kac4SE{;3}&)*T}GW~`bfPWaDyvsAk z`om@;;eG(mF(cISAy4V;9YQL`!~(!OLMQot{cUf&C<+jIi0S_s?3E^peOMZrp1iMa z1)>=QJ%3l#5&68uN~(ccVaeciG=4{vKYM4$nR1_+JclxYCL}$y*n~hb1=54tYs)}j z1%>e>sH6I|%rG9rR3QYhf@6B-k1;=^BoQ`{vm_WIz*tnqLqC};ox;zjX^7R$Cmt?lj`kghzyI$Nb(K3G0O8e432>z z?mlnX=Rc+IhEq}V=-B6QO?cMh8fdDQqrqwm*r2`?eD#rR6A-?BsGWMNKLg{`nt>qi z&2ot%ywM#PAb}z8l|(4FX30Jsn*-|)+@rtR^wk|oUZU}sk_ILhu!+am{2$EH5-geL z`rA!E9Yt_C!1N{e&|devBq1gHt!`ZZCHj3AC@ieOfzO%9=w&JRVatvv{t^D%KKW9+ zB!RsRxo}Kyaez5U`QZ<72E_`?2#|7y`|AutkBc_rGikQ0(uwPdIYFl`9ErGr(zYKBwU(x)|pDI^P*Rxg18V`N-JAWMc>)-t0Zgk1^; z1TTuVD@fKHYRh*Fha3f%Qqql>z8dL{Cd!7fucJOAVaz5zN#%?oE8s25 zsH^h9`PMQfaoZjnbu49y1*ikl@><-;^gnYFuFx>qGc3@pTA zo@}Ghv6~AMZHhOiot`#HJmhScyS%oUnwU=1iiU?bhsGwZZE7IfEt53tDRG69N+Oa$ znY=(#Zn$Ewu?;w@s35h>3W>zxo>+;txV#YsC1GaGtXXSehnsf>DcWN13iXUbJmK*x z6LoKRb+=Za!w)!tF!;5J#EW%!7`rsWzz;JNw(JR(Gb?S27d2EFMcvgfg`G5t1!lMEp}e@~mM{AAm;MRZ5t(0TBb)ihl{`Iow*DB);k5r|w{6d|t< zE60Auz~qdYe3%|+Ar?0xdvK&y$R$IL2!Xl^HX<&&DOCtW1Qx1=a6nM801)~j0Ba&E zV2B9zfF@XwhXABM;%-ypNsVNm8&+wY@RJw{vQ&kPiy*TYO35}!P(B0$A-IkA-DH8X zG`lhZ??A2~ponReHpg*RBQYy&3fQd~S#63aD51B5wruaYj%FBPpvg2ffl*;EJ0?a3 zoiSEy7OIBUSh7j83hH{<4f56nU=_C1J;@3%kz~^(rq0-6LncZ9D%(O^V;YqtsS!-% z7FdyC6<{c&4os*5!b!;uu|%{0vlgI)jnV*r;^9JoYA6E(W++4YtPRjGd88^Fkokm# zgN%|XDiW&zP83lyh1%#;C2E!1*5^_jL1sGwqD^g%Nu+@qv7@9!-`#-3{Y#|gQjZj7l z795hiL}vwHvIq+qgez5f+7+~kke2$w729*$gDCf6QW`rb(#1!p&bz5 z>tu>)3>h{06?AhnQ}__hbu}^*`gUGyF36EsX-$YakS;-lOn9(c;RsO+(ba(yb@2)~%|>hM%0ehDMHhqItX)7cY$u+sXP!zyZpJbRdt4FZ{Gz z2(kgnoclOYXCGg8KwaeK#dW|0+q1-6cuUm;{OpiZSfXsl3j#I!)m?Ns?4aohpmop= zPyp2cO!&)u?-O^e>UC=)gmp-kIi_;J-Dw@z4vNp9!ES4|C1?bc4m zey7G+{{Y1llT^H$>|gC#tp4|+SbR-T5vszGJNk3^4?_cA=EVjyGb{N&-G3kZkK_&i zlfxgH=Ktxz{=PrEKfwP7pYrd!`_9c|$g_WmFTi7Om|DP@9Oh!yu&f>J>27@iTIiA` zhy-8oR}idP&-WQ>WYwvWYHQK5N&Z~R6c!Nw3xjmIQW8PobZ{QuJ;C?E$~_SI+Mi&c z{!v1GSYwNgrAiWyNBsF)`B$V6NqApfdr$e%+z;H^O0beCq!o{({6p(DKlVtW_8ZDr zEZ^@=2m0%`+gL72J@NmY0ibdJH=yIB3K=>&(*=#r3_&7>!#n`n7B|hkS&8%igZXk! zPZsr3s`Vd9-@N@q=Dt&hBA;SSQy2>v#84O``F=l^E1~is z|BLL?*3(i80ul9(U6;cf#|s|u|+B`{|0Z9JY4S{sbiC)=?vc%zs35d#0Y>O zL_qWzXtk(nXQ&?=T%Usbu*2v1<#VIuRy#a##HlQ8NT4I(RD8{oER(bT|H-L>*%-k} z&Gi0Lb^28v_O2bV|1u7j@qOiMG(u$SecO?jeC>|`<8R;x)kTH6WxxxhgAS4i8ZMg| zQ|vu|Ie9)c(e}Ro@MruoJ6v4kbOI2ASwMvXA|M>Ad_de0RFeh<48;*q8pXf2_ZZOo zASmM;H>NqXZj1nV|E@Vdi5#?r02ivk3_r-w=Ja}fUaJ1YQpGZb%fYS?9ItvCzhpTU z39EQ-c7MD`0ie<{MFkO+_P+Q(d+#5=+SlJ<{&ljD190qu9B^RY~XmdiU! zQO%2EJ6>&8u~?f6(M97i?V7R)p%|&bXT)H|ky2IEEGsF>AR65CJlr|%Ac<55szGog z+Cm%qzNs^Snh6f>r}Fmiv5(sA{e&9tx_Y7UWHTtBi3R_d?~1iszsbhi8#9ciJ|Y>G zN?Rphd9$6+LI(RNY$9bHvP^f{`Rc08*-izoX>&wQ^!Q4v+#w1MsSUfgNWF|CQIjG{nvbccoF#`VaJ& z9`Er`^?W~<*6zCP`~li}-1K*aP=wTHN|xp(Q!%zy+SO_!jID9tN+)Bda2C5}%6(m~ zO!(X0p$A}cvuW;_O7KYlmT%lE@8k7d-z(m$CoJ)tNcKw;lNdo5&O&GpGQys!7>(S5 zKm^jDf6A_CT(1wZpvE%_Gmy{*lMghpsB=v$(Lj<)0)Yt#Kq#?bq>9BBBEgJ^#uFo| z<_h%9(AoEicM)=e5mbVjRs1LYU*35X08hghByesOi}XuT%lYv8KFjuOe0Sx44&Rfk z=J{x+&d67%Ze}h}=APCY2^L5!BESWZIi**_(|6v^dzVx>^K4f9ZOWFT)Uy>DotC6_ z3N(s_A`v~2>eE(}?TQZ9U_(o*xd0_Um+&J8@h+3cYG8Cc%LLK1aDxF>nQ+6jxM12; zx@z2{Y^c%t9SS2pkUy!psG2>W)cxPN{U7LmrClC%{qO1i3lHWXAJVt*|6AWR;$W`7wXf{Du5~Py4?o{eF(``u~ytH})=>!}UMz ze=q#s>3;9;e(&=CZ}k6aPvSAwZ2pe#-TmELKYRCN{)hOpQ~5sUFZ8(op9sH`{VKob z=;hHT{akPVkGo{D_2uf5cMadq&HYd6{^#{%#y<(KzWkS8eRogK-EICB%(%-Iz8xRq zb_@SMo6VDl^|-@VA3nZ1^!gv0^wkf_1^lQ9XsQS4#1otKKNjEUe{lWk{*Uxv#r<0p zAwO{aU)%k>@_w)C1H<;eW@q~6-*c&^rP~X5wAw3iy^f?;==H{Fw zQJq>%4Zv#oI?_F6$6k4|NJ$|G2^EBZ8Pr%HA8HM_K3lDpZ!aQhf9>fJ zfa}O|;9Pd{F9rSO5HBZyOzA~?+|Zj|ZXeqC#9)%qhk51Xs;a80BEJ8Bzu)ilJ8ibx zReXZ0D%Dk9hoJQ2sqof}dG+k@@M0N*BQWVQ(mV5acXqDj%fbMxV(dkSci%&Q9Z&=+ z@DwEN>K^lxa%z2M7<~#*eRaH~FyVX`Pl}`Tvmv?(@w$n2+ zGgq-h9v}}9*m+iKfwt9#4)O z;07E{eEaJ?GU&`q3TdE?IbgwoVa;5!_#ACv|5xu8J|FI$5AIdNiIGxb1$1jU-0R}e z04#k_644xfmO_`W-FRq2X#!~J9rEEnG2?(xI|g1&zx@;b660=IOn8)30q zv87`o_3l=GrLO{VE-C|v5ddc5G=fqf91_6DpacX079emm3nmF%H$2IqxFLx~{K_i& zxeC!XJh{<~Oy=`0+)iODsa{(@VU4S7=dahUAAN%34yt-`Mt-O8!`CeI1InllBmu~6 zT{e0Mc4h3KJkV2fOn#qNQQjdW2ULlM6gEl><_a2o>%c^{Z>o-)c?38%HUEgI@dXk( zkO=HsxzilGv(tfmuaG>i0jqUrj-0PNvT$$-56EmIQM-6Y*?pnmg0+9o@@hT{x2JP> zahn&=vmtWB4_!aox^;v!$UH+hY+NTOv$T2P-Zt^?#dpYgJqz*1gYGzBxYCU{AJokc z=1ytDXV!>+8w=4zb9|0*2N|uIx<&|^%Z|};Eay^GM$|UiLj|BHSs@H>c#?nT$iW@T zE|JGI4$~^J1vIEz7A1umgk1brXHXD;LXa`&CtbrJcLv9JoK6EIj86c1*&W@{ap^L! zz~VdGVQ-z*pDqv-p#(`l;`^$#>C2BTt#ee&&uSoID(pak+Z|=HG~JGIx{5#gG3ISj z%!szJShv)zG)gI@w?5xUjqbTC;UaiTK8&f_~W&kS!7-?tULXN43Y5Ih4sV*??0uoomg-DW z&NI8x^Y`xBeZp(WdrB0*39=5o7t0Mv!5rVss7DkQ?i;cVunM!=AWAlKY1D7&up&_G zjcLuLwxA5Mz~N&2-ST4WpcaYCblyfF5K_jsIS{Uh<__n6VP9bTiKk$ohg|l?+G-|PO z4GN`slQ2di@htM2wcZ+yJ+xj$-0nQrl7SoWpx6A42@p0%l1$2rz8y;X}RdN5U0x=>JGp$=15L3(KiEmLcr zG3U)kiRLK=5s(NA&!U8QPQ0IS%=l3bi7V7aV;Qgyr+8tu%9%)UZsDtp>%g`-Bdb%T z@$AIyhQu<^2%yS{Z7n4u*Ahez1*kIW*eGu2#p8^td6rq2n+;KCcyY3Vp=`?9FUL&y zlVX7MCCr+)fC5vQb5C)=?DQ8pGzndc%7{yrIUd`RooaGU+izQ}c zy^{t}^Ck_A=IPc{vO)@&^KXU48u<*KTRwZ*i}q#Z#@#DVCnR}?9-YE`!9t(Tm(*oI zUV%d#Ch8tg40HiNz}*CsqBGaOIo*2Ih7q&Ic4+7=ps3oN{qWq#{&;0saKsajaD2?Q zSFwmajdM+n<9u@-_S#%@WWIBQr`rX%HldE?2IQ82-*QF6)BwT@#B%T3a(MBB)zee4 zao%+{_OaZ@knUXpM`cC?dXP{IEq6BEd;K_jvWuW8t$ZLhp2HvcAh7K`OFMk}`Ldw$ zC<&PifB}x^1~J~_qih&+?S@QltzFC5X4VTQ+|Mwc%t>a~v$`2n`QFnqXS-zo-Tm@f3+_P-$=;6<*p@!q-nZNG|-A*LfT8}^yY z;CXN0S`Ke)H?Mr&S#LGvLBB$Z*lK%aU!!usf?Es5R-AITRm{8y9GZ5lxVBV4IrldE z?V+BIunf)vD1FSAjSz{kDpYxNO>(jBy}VAf$ENr|5FhB4?i~51GX*4d1b8le6#_&Y z3N=n2#dn4tF><{OaFEn8!@@w&7mhbz-V8D2&2&uhwyS@eCzdqZBOI|0!K5A61BH+W zZrudG4NbE%Jv|KyE8eer9Datj_y5DOdElSlgYl;DMMtB{xDX4A`=fYl_+W?!A66VX z_^fk8FoUNz?DBE;&5bfhLD+-aN`iMFl`U9FN6B0X+Ee%bMI+-%vQaxo!3qRBxgS<& z@=st(WG7+)M+x~IB0K`;@%d*Y7ro(%5lPHXEm$5-`+*OxG657Id9g}@v_!m6v|y8b zK?+E@z%L*}Qb0xGLaE%));poRF>SPO#v3ZpPSGH%gBesXYaLurl!YHQ1qoraW4t@# z!LS_#5r9LGbuWGfMXBYg(MUk6+S1vA_r{`TE_SSo7#p zT*?CH3Xl;n6;`thkefWfNWcbYd3Qg5~+Iez6kKzOwEY)8UJSFe#nMPDMHxIw>RqLA2~F z8nQ%Kc^HDRY2Fy#{k}8+$RdCM5-?B+25kqb9NG3dUD(7SnvRC*kzyc`j6s4$iX>uN zC6OZ;5s4UsBM@W|L68&}AdELJ0oo*RcuB5)rHpT> zn&>*!^OI#29H3gd4T30taBvC9^F~Clp&BBn5Qw}82SJS_AyE#ISpmdVkzc%{yJs2Rp^dF8# z;J`V;cJ(p;q70&#7lJX7uXl>G9AZ*PXmC(ae!1lt!==3oBAD%l->Y!Ywk?o z$gqhaA|W6q#H#>ef}%x4l@uyTBqG3v2&V9GartPX{kHHM$lKREM&nfCKmg#u0kEm^un2-A+({lGcfMJM%QV%x`*QoX zm^I)@ZfgaNv1@im0U;L-u#q4HP=XMIVlpbi2_mPX>^zPHo(#a%46{JE|*rZX!&rcFU?4u&J^Yy z*Z|N<5F9feX!kr9^7UnA1?c4N5)cT9oufPZ+Er6#NsrQR z^L!M1gTqRJ5~4DSeMd`@5MlGQP*6!xvQSQ;K(fL#No^EHEQt+}(=m#{(S)-FjM=Jg zSX3KDq};-W_fW(|a=@Y}#sQFZOu;p6({V0l+SIv-Y#?YLkjzT#lmrn`f+P^hic$qd zps2KkpcG|IFi0dryjR&fUThfT1ujBKwp7^x8aSvqR$vk8!K`K%ToPOZ{1cnz4DOh0|`+8mG7eWAtIxQ5i4@Cl36rZNZ5(|&HgZ(mI#8w7b- zv!C~X+iP)uStC`9V6({ru&8N2OIasB#(Mo}4QkY-3S+<6XTFI+R3#0O46_bV7#<1no;Z#`#1783B+`pbwg`jSxM zdyr2}d!`4jP4(@-1C8RFpxnU8Q8ZQoDpcDk>na7C&F=pD6buk$0I^N7UY;_)Q4%V@XZbk zoOIPr?o)Z*1q0j+6jUS$Y`A;;wgD#{-lz;Bpx>A4$9Ano)5BRafv_$Y)R{^a0$^3G z!uk^ec`v2XUL4mPA^-zAM!NCsD4O{iLSI^1%wUVd zCosrmMQyVeB4E=_E-*daRs({N49J<00S3e^1B`(no*m9Q>{g#nv$!HbcaiWMW8kdw zlne+C!^ji{+M{Wz+n8@*qI;SJ#?c;BNrb3SA~z_)Y5G;%L5fCBDWgjTv{af}1NC9? zG&c1Liw$b<@)3L<&h~t86=qy~H8x3Qno+LQLwKQ_>MY_qXIW3B=IPgQgVq9jqRaH)el@TfKCW>nyAqJMg|!8 z2sr29<2V?a_Z;+epJeD7K=YKRDPj6k*td$S%J2|b_je5!UY8Q&?^ZM4Im7I za@BgLWK_Wc3W6@WRbquN0M#Ru0g*2kSPO^_kzHV=%?RZc zzAu(V0%eB{q7@L4%BbC~7}w}#sj${}m@cIKZQjZS0HeutlSnucF<^vXD2Cvm+;Wvt zAg*jcOaV;t=gimZ_WQbY;RojWeLVK;F}2L#Ug6B!l5PW&yK%aEPQ7}- zdvnKj;3l)6uvQdRh+)$}**Q2|IL&-_81v>%=k)%Kdb&{c9Fb?5RaFdxldi{D5rN=H z(bjMa5XR_61aau|caWe>=DJ~#BSc_LOfBx|EH;xEmA(P1@$;0(bAWJF<$=%1A+th= zoIOza0VF>|jro0zyRz5H*1;7!&5}-|g{>;gXo&<4+bD4ZfzR`D-MZ#sYyMC&w0K zFTJ}veL6IBP4>|KpwXl9{jy+U8bcD^qOK0o1{0hcg^O&m8#6mfDzV5L&B%O-?P25Y z)z3q}zq7HK@~Ttccm+DXL-ODrKO^ISchIr1PF2;%Fpqp5TbAE!x6>Jr^eG^TZeMwh z^Nb0wjy(_n1o`fO58ETJEwm2yU)DlBxmi6jrOotwp!d5i+Y|ZwJ5RS5bcFwpV7&() zWe-iN)LWr8v0k_`BE|?vixeXkDkNDX1~7tvA2*|Z6Oe&eiqs0HzuWQc$MK%N-xz)# z^WVt*Cs{@4+i6w7-*L6C^Zbk=fg&^YW5>q7G}IgTO$<7Q__81r?}%#=XoyH(T_thO zu=~boc)SP$)>voKn*nelO2l!!55B?P9T}{8*PHKd=wR!E?Xe#M{>bsZBJANM%SFBH zW(O|a56eTQ>vR1ISoD-TPUJw)W?dJGTlR)~2K|MjQ71MShiM027uI7 zAcX-Xt2&XutguqtVCBR!i z`L`W%{qJTKkGswFbHeZhck7*;@34Q3Ku0u1N5jp><)hB~oIAbs1= zDBo0s51{F`?MsQO?U;PronLR=n4FvRnrf?9gZs7~OOh?;ISLK#U`;!V>W@yaG$M6O z=7T214?rF~*PZ|g(DEQ7CvC8zGXg~*TVgHmq&zVCA8vp&(1w-^OL=C!aJ{rIWj>wfVDJh)=AK|mr=R8@!qFp_(s!|A$lY>&A3kf=0);p@g@Go;bdjfzp z^W6bgij$UDQwAEXIxwbIWLB5&g4e$xy-Q?I=)8SM@MAW1^t>554h_quxa zhNj+bzc3yBXCWA4-E70|Zh80JJOuLp3Q-O7`Z+haUm+0K$MO4?9eS0Ok^d zjy4GLsCU=w83w_YI*zZH@t7Fw2pbl_oTnE&S7jv#0rGmjpB%uvPStZ}93mn#16VHr zQ1-+NYnw^r5&{Ut=(y8L?`50C2m%sWG`lV@GSmeaR&XIx3rN5|fRR5A}S)m=lYPzSCo zB+{MzJ;MpVULl+z4Uq4pczyrX`t5G_-;Np_n<^dvB*ZbuuwY^y8TxiTTTucVjH3t; zT)g%y7g$sPArz>O$EBc)z&Z?0eVG^oS8<^DzbNxyt$8~AMo9MJB69dB9eN(k0ngVJ z;W-XNez-|-65+1rp5X2FzN)qXnBkR|cRF+J*VJR&VMHJp)182zfm8((yQP2_tRTpc7DR#oq|0L>K}ISf z#3F}xN%LV0LdgqF`k%M?YnZn*P)mvYY>7F6cF#_W?fyIPqSThKF^r@ zZdx#esr?~fJ_1;|R9`t`XFKji1IU4}JlS(usH6r(j8A-zzlOd0dmLNBWm-0Fv;1*! z4kWzQChX|IJg139C<+L{SiBZ!-jjsEHW1;2({QO;!B#7)qL$uG%2L3w0gOXY5nPBf<4AMgM!0W4_=C${=~5SoJ%XtWQg!@D*-8&!XVTa3@q#CtL0SNC-vIT^U<>Q7ng{4MQ; zwbYOGhimbNe*ingkdfW{cO-8M0wg`)c>pLJe#qX8J&=5vxQ9*uUpDXEuolO3IzPG` z4iHu>J0snSA>E4gK+||RNeKmZSP>#iQOY1x9{@m4wPUOKQ0e^3>DqCfT8s^(LZc<* zl`YFUS2LrO;=>CVd@^bPaXG+{%)s5evc2R9T|-9mr$lj&Qq5pM5IR-{F#|zD7P(tJ z*J}f8qN5%Nc+7U7D5M8gm1?O10)WBXH zGB6i<5Q+Ux#y0tPGmWK2HE>jD@qT;Z8qpL3!VNCM$NfIup4n>440jPh_WmRQD~aUE z{f_>lO{Paz-exy)R?G*%ztt*s@56%Mq#O-A9ZLi(pbEh@FMoj-oJ%3c5ff zL4uMgBC8n`5Coh@HFKem_I=a9^4RqQotKk|l@qnq`yu z>cwqA##ZBj(Z+HT;mIX;&a!%P)sw>c2EaAX-HjIwL13)wm_6Ju+}PlnKv#s>0zyOp z4=EHJ|4qd(Tv~(a2=(v{_$%YYFO#-7E2QG6n=Xd-1c66@wCWE|y5HXUo*VXpp}aP1 z+Fe#8BS=nC+<*zLb$|_qISB-twb9Kj8M0DBHg3Bh{kA-S4-v|HMoMUq>?&xpW8xOw zKtl?l1e1REipr+yhX1{%P$D#?q=rCoZmx0OnjQ3r}BL z&T1SXFo_BSYDzS*DZ{}Gif>{W9eIa^nQy*@z|(Mes>bn6l?PqhrZ^ygw-zN3LJa~& z04`=e{$PB&Od*0Ou}SGD7e%L!(D4?<^3akb|WFi3w$OxN`-U48#$S%3luy+ZB*=ewvp_&JN zEw=F>WM&|Rr*<|wvfvgcBSX#O1!Yw#5LbvlKQ_cFew3i333s5NSnb01F5>bY`mp@P(Nw5?o%}&^!Ai zhRcT;B=>hGs(*WT&z)8M7BdsW$n^Fe{BuLF#G^2Qc>oM~Ly(aqCekz$$aU=HbinK{ zW+0bE32nl1^c>6gy(F6>#Zw$b7J~ z&iqow!PIWq!2tItAVk|hS1v1idO`>}5K#2It@AFJh!AjGq%t6)tQBD=kK5-bW971V zKt910M$IpcIz!_K9D~oBLmF;y2QOaTGm&}J7FY#rA_R%hiuM)y=L%Z0VnNk_ZCo4Z<$|ZD^;vR;RD0!AL3+=XYwPZtpdXsW zo?muJt}d9D_mM{z0{%@0(GPS*j+9gv)CzdZodVb}AdZMqh(8qEb0@BS*d?EOc=^1V zp>HsHkkHDy`xBxVPUqwXLiPGu8=%CEtmBX!-I;5y2s93A&4cMUFNbf)q2UjJQbSPx zg$d@IhvyqM0rW_TB!M9LeBTW`$Ok<6A!kA64qa&^CN}>4gIQ#}%qMq^I1kx8-GJz! z^7r-WKFA+z20j#f#1%k9P=bmh@ccc$KBR!^fh#(7fz5XP`#fE+`!6xf-ARy#Rg6ek z$}Sm4Jfox~MX}CEvP2+EL?|@_=4la_5*v64;gRg%S{rg4_vDY+fN2axa@KJO*x*zR zYGMchu?TFz{}i|PydJNg=-j8D>P=P?TQ>j7pNa)}-P3-wS;7z~wS7fP z0VD`!0Bd0%1;EnAGp9X<%ohw1hoQE>0hrB??ss5SfwmdJ8(T5Q)_4I?%mU-fIsBWR(jnZ>vh5ej4j&w>&2_W$X!kV$V z$V!=pq&w7c?IZBdtL&h|lq-hIAd-3^Xkq_t_YS*?JurhlVb~GmoK=8kXy>$dc^!g) zsQ|_D{**qysoykU8UR2E5&%2Jd1T!k8y+h0S)=6SlgS?5OC|Np&&{jNZ4CO*mgZ(D=M2Y6ajr@1NWIfDUT80}{FZ05UMZdl zG;5H(nR{@4sf=p z74pB>^YBmAovW^gYe;M=S^n5ZYu%MZeJw%3aO9XRIsv^rhH*VN!F@Fc41!Q|KsMaK z6trYDhe0F-S|rv|5`(Hp2k{xU`-a2qvyAQKm|Bw3x%iAYaLXIgJ97fch05>TF)o-x zFV4i0z-4muAX#vdRwo+11Kod<&Hl;D?$3wItfS;i(rE3EvM(08vfbYMqrSCS`6#Bc z0pQNcGYk>v_9Bu>potHH{T-JJ7!#j3y(T()(#A^o=A6_ayw!~Kx~K&U)yh<`?FmQ? znk^spqL&K=PzRP#7zpbHM8C-tJ!9%mh@(EHACZWmnEHRmg-ICsxk_y<3Mz~MyXooz z#~u79U_a+RflovQ12F5^vV&oZ77N%*InZs_?a}WLI;I2yMh9mA`nubaF-}S(uT)B+ zBT1bA1T~!cy1OFsr`PM{kKaz@KFqzbYSu@!aq)G_J77r^>-|}9wecCR>0z4CKt9lb z6T!V>S_CQ^^<-dY?c&YoP5s;{GtbRNfC)6ibz625=4O?bn0~U=O2G(S_rKw6vSc_h-&Ta>+72E z3E8gBY_>kaJ(RhphZ?0o>qV)zY6dVdhhWk0gZdN>aD&9ST4m(7N02#)6iPYw=n6s`LK~HCizf@N0VH*7L{ky^Lm2@!HI!k3|geHc56qB`u1zq zK+p7w0g5pI4x+dk@LsLrm<6{S3M4gwYBd0%*}Q!b4}^;l!1!+`WmOE%fw1imF0$bw zka3l9y)y}2vuu);O|X=~mJt+HWS!nycLHHGB-sVc|G7zwhB}r&{Q-)n_K#GboXZ{9 zo1Ror5LHl5OPV~~{k=qhH!{}q36Y)|Jbxd5ZynsEfI#eghkn4Hq6i!KbohE9=hyN7 zo|>u}sw${&@*!F$WsDBitzh7U4MYAO!aq=ctXT(Qh|yD#Bpc9=5{{sQ9((d)2OsRZ zQ;b+MdyKCjeASbTf6`0^04fQP#z8xU(Oeg>^? zCx`WCpgym|W5%2?{e2q4V2?GkZqjw8 zqhk2_OtaprCm^U5?vEJX z%*j3U`iV{qqC!uX+tKp}+lEOpy;xl?L%4gMPlve1LyMu@Sic=4gb11H+0Eg?irCnz z-QrkY_AbK}^{BVefp>=;Az5NPO_W$5L1!@`?pUH0g?P}*CgvL!q;PuX3jx=#I9N({ zph%ksVq|bQfNBEF+r^X3!N>e1Wn^6mZ{#;Z99ej9y(W&|G2{wK*C(*UTSyQ|A# z{L~4}7f(-9e=9Afp9e-wp$Kt5ZE^tx1S%;R>OBcVLM+x;6HJvARnVcYX-yv1JRhDDTlnC$?Sc2A?$-6 zqJ#~}nF3`Mjo=;;OevxuAae5@|4;k;Ce{uo7`R&@qcvI)46X!xk zV4i?J-?4HTZDvYXu}T?@xT3=gMfsga5{+)E?#(M56snSCx>ZDBoxb5`reyVI>(#2} zc6qOsFJ_Pt2CkG=5TG#;G=`OF2oU9$$9-wo*sQ~3q?1~u88>A@8Tb7^A{#MgM7*t&t~21D-CD6A715r8?bSc{!2jS;C?2a2!2~cFnk{Re(a56x-}h%Nbs^HZnu;!Tv-evo69H7tLKNySQ~K?5PPVJLMa`! zLfS?-74F>k86lY-Y(&vCHSGI1d44UYGz?=2BC%D{ie)oZik}~wn(fjmal(V#Wk3g1 zQEw8_WJUqx^YuW`kbgx`q4||{cDXhKAdjkga4B1rE8?y5 zqcfCk-vnJ6=f5qp@$a%gizES7Du6Ns*g03|l)#xiKQ}@;q?q|Zfy0d``a=U4d%Lg` zSu!BN)gQJVo4bD*iR9Ktit*{W`dE{GL3X{Ne2Hw+i9$n_D^hUTWsP zEdV4tial`pPIeRoG3xX-%}9>m%D0#&XmrIN(jkWp4Sbw>kp(}_h$)%2CWmwBu;XQR z7(3)wcLt61(P|ouWsodENN-{uoT3+q@rY{>!b3p|COvmU*h?U&@d&8WFCfjpd$h02 z1LhnoINWTYETuDgUrEOSh(W;;iAo80reqIdd<^6w;&TXk5*PLYKD~WbO}I2X#5q`W z5Fg$AsVs2)mhIPET+|y;Cm=x zCGeq#w`R+DK6>>U|7vUcu6}sE=D;6p0Oh$}s1?w9D4&#IqN*w)L=<4LXdqY=wIU*m z778&V@%~?vZVu{wvO=O-C`J9Vaw15+&dipfHFEM2bZs zGO)0t3Uh#jDnZBfS=sbxfo!fUi&B;%46=aa+~CiZ57J~@%?wrr`eKXWE4_nb?|}~t z|FSxsjTH`%b%x=AgX;<2kb&GmKCuH)_rXh0OdJHdi^&gQ8@1JE&+*oB4Lcw3+a!+o z_EYol$MWBe_})D2&%Y0~?XH3`Ue7)+&70alkWBJWC#8+mEq&B-wqXwVu9K=Mz&4a0 zVoPQI>HsIQAu1rbK~;k=dL}=(JB;lV$`Xv9f+>w|O0<~4)(Dv?nRDgDwU}vNi2n1u zO`B+Hf`J_%3FW;C5&%doL;-vkwSh+v5OLWl6!ydm!4Z;31XO;)Rx(gj1&T;J*}Eox z;+M`u{j0Gdi1IlwylJw*TCC(QVTLb)j`l`EQQpQ3qA2ZxAPqP{w%QUhSS6@3P&h%6 zhp~(XlQb%&Fvchv2Ur7A5@-yhNpz@!h9Bulj^0UK3QCN7WUwghVOZ=ZB!qA#Os@Hu z?E%Lk8!`b4w$>WlvyygkDao6#z*yyM3j>y?jJh<$B51M{75#KMWffHv5o84yRXJpt z77AtTFfN9>nW`j*C^#x14V7(}Ad^Tzl|bGb(u5(sb}S1J1m3BLu-FlczUklFqhLd1 z3Mwp-3eZp%O|9du0nIhMx3YnmNSoe|IU@~|NyjvtyP~a2LnRVL8!)g)eLAgaSU3n0 zh=6oJn3E!tOj%$vXa_^4wX;drdxEhBDGjI^>p}ldq2;bmZjJhAHW*W=K(lB0Z)PJe z?KzQ6!?@=Qqm;R4-Cx?q;{Ar@O>0lmYJPzs@?L_dFWDcKi2vyqoC~dBr}dVLVwV z!z7VM>A{^;r<6tOi)M=?izLy}D90^f-8(kR61y5ayLD@pZPqJs*^(1oMAg-%zF0{S z2jwH)hy{UUfdsIK5(t6v6K4Y+O5N4v-;SQ2OD_gEYZ2s+L<6D@@xp}_0qhDlsst(Z zG;8HiaOOqJ0ZBTtY?c~b6pbXJcISH)*wEQ2wk|CYO#Z?a^}=OddN}LqVsC^w|1D@+ z|37_b=F#Ei<2z|~r!jzQQkyy3VGSo8m}dkKH%A7GVt)W?>2z2SB9nP$%maaiQJgCN z{a!4$d;ca89j6RO@HUuINLmY~E+<7!j`hKTiag#@Axn-3s7yrl#9wtS^zO>51#m#m5sjD(FzCF~F3w_^LG+J8EH^{o#Z^kIN6@+ULS_a&s0nu|r(e zM`I5Jzfhfhms7oNV}KuLc@4do@RI82Euw{_fh2-A9CiHv9eA_){+|+{2b}^c0dvjf z&*9O1d}%$M_?`|>ut^Ff0W8ZE@AqHniYc=sP#Pf#2Zp_Ezq#Z1Y14uW^JD?*;j;?z zkA47kK#IRnF=~la_rnMWkYFpW^MEp=Yq8K01PDREfRKR*WRSrvTehsci!?F_0>EU5 zq9F_-lr2J~ryq*qd+urJ%$OaPHeza?Tlg`#gacCy4|Sg=fc01~AFHzu%Lmmd)r;pO zi8;JA(G!{Xj;E{Y?`B94EX#a~X}YQ5&u!u+)-khadXi^A?Iu0}PXpw;3pqXrT0@%r zg{~ZPHpo!?%)hH!X+Ti?yQ?EnPrJ#U(Wc?T3$&FQXDtkX^ZPq$p0Me)TGtBe^rAeu z;hd9_5*9yVwR*smz!mu?JXn&F1qcrV8nw!)_1|5=$Vx=Af}`4DyFt3q6c*}c@qM&Ce^xAHJ+CHd{a2Sm;!SE{e2+lVl*ZWulBm!f>Mr1I>Y zE#zDC#tSHxsY?_aWrW&ni#4H_S5{2a*v&^{Rz)e9SmHEcXj1j{(2!;Y|X`062dklEyQ^>;VT8J=CCZ(j>IaO`XDBxks0%dPCy%>OHBwj>t z?V*QtLbzsM*4U^Xc)Ea4x|~MsVLi$#^X$B_>hiOU_iNqtU*GTeegBYvO+u-JyDlR~ zpV;~-PZ!B`dFY@`l@XeB1Vu!?5~|imu~Vzz+oxVHq6WTd7UE2UZgtb!%OmCDL@^A@ zc~dYhfucpgiR+k<%mEKR^@$#yqBK~6zdD>WnISo@90IIGlAhL5@Ahp+m zShzxpg*&Up0}cE-dBfI4P4lPC^6lC2bKP4Myh6vi-hZMh(1*F$p+C-LUIy^B1zP03}KSAM4#?KskBhb^B;; zp4NnY_5;3?Vd$Gn8DxMwkBZ>n8T<%Z38kbDKC8)qIOiB!^=jXY{GdqT$48mfs|-B< zPQy~kAdya*2OCNN%S&m~h~j`08CamOKolSbFeq{Z@aT6}!cSKBu7&T>tK%R>#orU-cKdLgvLkmrT$mq1^; zby)gvHGAl+&5}`UO1$+%w%NE03M}!SH3g^&0pzs^09-AL-mgXK^I=%YG3~jVkd_<< z0aNxe+NFyDMHIjYc?u7RhPy@#11d|!z*>!svry{RpqrVFmG$v zEqnwo0M(~&&7!7|@z#44)+S?oWFZm|W2+SG;e(y_3S%!4pdB~vvBlr=__S3+k^&ou zEP=%XiYVx(pV-06vj>q5Nv7480000>J9p+JoYT+W7K8#us#2krfO*iX5~SZE2Sp?n z8pNt4AQ&Nr8ZCff=jy?%kXn2{vT+1V;eRH)yK6I@lsL+P)9df>#sRV+&E3zxUx_gl z7^DR^gxz#bF_*tK`$9)fH#UVb(h7K5i4m2MsHlj(-1lPRZGJK7)^{B9^(IM_HfrjN zLt?YhA5L85B@m!KUoJqG(|~E-&}O<57r}%(x+U&S zXUv^Yy4F)H%+_Y44ffZzs3@y6F%o8*M|=k?H+^PcVL39t39_n2dpgOeY>`wq!@HwM z58Bb|zYpHdgFk0~kL}lepFzb^)qR-DDlMie+HBtAVTMgzzBQD00#J~ z1sB5HWI1N=x9Ij`)B^E90m~b?0kbm!CHs8%q07gS$$zXH4zhB}IkLodZy})B_s}Zl z9z2Zxz6F)XhK4g|HlyUjGZhwSS9ckuvrKi+_DTyS`>m^tApM0J&S$hE;%FtHSaQno z#uM^(cJO#WWFg+kJ{A~TB|s`m%G4k^YD%`$sH!Ypd1eCX;6t1Pi6(n>AP84Qt+M)KG^;Q{&C((q4h%0VA8mw(byX`#s zqV1XDZIT?EnHu*Tp#KJi&9Iw@lrFW{tfEf`o^>EC~0p8X6Fy&t? zG}OdNqKZQl2q1tT9W{G7Qz!H7kO;!05`-MF-*&_)nRb`W&f*p)L>vWVuxYDB!=7G6 zb$+Lfr8Q{1tTBW*k(SvXDEl&I0p>Zo?2u&g*a;j0(9gmh-o zrvx_pHg{16SPC$%-Q+JE7;F~f7~!xIK|nAZSRwg9+$4x7P>hLBqLl;~ybX|R3(uY~ zI5)zID#1w6LzN7*4G;J;H666A1D3Fz0RTPsS2*8XtyxDkK*S(Y#fqT?xI4RGIE_aR zGsO*wtDFFE9xzx*3y?^J63LZ^t_}}KY-<>dPbG+jm1)+)gK{}4p+P#}dKeIi@6iu6 z@eanR2Li}yw<86XTqLVXnwl~nL0Ew!bi~}EUIQvI7{Fk5%K_nliJ}1s9Z6wOunkzl zWhrrHJC@4U6jAFr7sF`VW%7=1%##`n8r@u0zGvQeQdah50{ zEzv>j?K;oBlU==ucGINsb%z@O=Z%nn9i&<(BSRKj(4>e-9SC&zX9J-Qz*thml?*&j z;ZE0q*`xEGL_rlh9mp=r;nQ7!%Lv{KYs`{KB%)Ac6C=%&je_8F619=A$NAmCPBz6e$7TmqVHd>A_w%96lX93>mu_#F0QoNtbu95~pup33_y! z^V`FI-Pv%q#x~3gn{M<(#D*j@BvV}A>e$aMg1+TvW#l!0+%g3;HO)s%ra*eLdF!To z3dMqqZ74J$zhxngG;W)%LT0kj#mi@9K^%k@>A2?tK@-d`4vd3*MS~kK==U7hG$;$5 z*^fF2%7)mGmLXVBOSb@7MM8<=zNIH&v-8N2kg#hh*I|krKo}i&3#Al9ZXhax0)mm_ zob`Y-*@xwPtam^g#0A(^l<(JW?v~cr>f$mQADV6?ql}6HHXDV$;)~hc`sB_+L9?x( zj%e-}%?ClwEDPnPLKI=RfFMAI8Fy2)2eGjdHdWndKDzYFiIc`SceSCHZlY? z$Tk*qwOVgxQOtM1Dbg9uyBf$)4FwsLc7m8eE0O?{#Ah2|0C#a#>=>~sfg)}n8mt8k zOmJ^_7Q$K#?kr>{iq)VUS0+RSRU&xUjyM$c(}r{;C2gJ6-+3W68=b`5P2D2n2xD+M z*aME-6SE=%ei{yOLo;OgamwDxT*8u?;}AHJ%(SX>HIkqKl#!pyueH z0ibs*g)B}_O%h)lh$B?HTO)x8a51dw8iSWr&o(f`4}qk5?#B_Lfe4=5u?HTS8Jffz z7852=+Dj{6XGYTT8s)>pNq)jnxV!;0se(EPvW8V7vgs_? zk=7_?2M3X~Z}0VETnu&`4kAEwhI}jw1gCUUf+)8^g;Y7=8ftVPsN`(eWv4CscOkP> z+hT}iX4Z)yBb4R_Qc_3*Sp^C)kVFNa@_)zv6c#an$LEFNQ)aE(XoLzJ5X=ur5~R-J zECvDFLj%7V0|Zt8eXg}jKsL7zLR_584U$Nt(}HS1W<603eus`aL(x~pzCQ+R3IEttIXya5K8EStScH-DLL3+ z5aHMrunGqU(FcD8ipvZ-21&D8<+L``-f!CGxT7RD3lfYfo2vEaagS26IG`j!&1luu zGh*^?bauN1nRX44#{{|037b+}p_YpbQ8_Z~YFmNXcsDnjP6RkYb$54~1v&$#Fy^U{ z#o@@%vcSe2Yj=9JiI_^2qlhIs4$E0V7#Pk-7{%wl8W4Eg<66u|jt(+ZMVYs5U^dxt zA$F%JRNhe%36p4 z2-%TMo$NJv4MPoRUa+V#uE1#2u&vN=M8IKa7M)Su4sjJKfs(1H?oezcU|lukBq$Ln znRG$L!1mm3h>yOy?SvfEPea3PE0s{NIPI(0VFptv(ej#76m=Adw!%IV;R}%gU@u$W zb!mh<8L*(rxaf9arpc1zYY_l;IVP+^(TXr6vh5Q5T%4&@%{$y?m82m=%$=X0|*@O;D1gL6j*o@vXg z7|DdrZ3#;v!^Y$$SHaOY=?Ze`uyC8Q9D^?^R7QXz0}=orL3+3(BV-XLu3rc0sq;+E zZvoNo-wH|)Nb-&6ntvDD{21@rP;0kNhslAU9g)ajNH!##Jf5jBLF>z2i5~f9p%hR8 zH3JZ^1}-x_muQ!wtvM-G@P}nnB*LH&sucqVdw?hD1jCZobhdqysdOw~#I^uk19*yi`_By(Awpa^MNQ6Onp(H1+^gskc0)zqeSn=*LB-J)#GR4SBW!vgzWCXJu z1yKZ4Y$Bs!Q5Yhl5CEh}0tyicBx1#g3<4ts5J)kRh{YlZD8V2|hzLZGVgm^h0KpN2 zK?MdQ0gPh65Evv8V!>e<07(eR5(*I@#R3dQNaBTiO>o0d+?kz1{(cj25!4L;*l4x` zxZ`9lFboc_&nX+Bq8Ns&#W(~C931+l12;u?7h%Zn8)gb6HBHM^r^(C4gn97&ui_1eKk$y%gM#KbHH;38dj1zzDY!h`=z|1E>t^Jzr7#MIMw? zXQ_6<%tABy=5UaT{mLl=oKh&kh0x*GP%@x;$nM~k#D|Wo+x^^4XvhF{oZZBXWVDd9 zeBORO%>F=`+9_kWg6|i_k=8`GWIR*f#T@z#DhAScz`)d>KDn^#?%e8fj(l^S!7F%u zPy?R4jH~v*AIiULyr?6Vd*t)@!2a%>^qJmw89a?x=x8)(z}#5K7+^6j1Lm@Y0Q&aX zkJ*SlAbWosx54VQ=M!D;c4Kn66fgp1$1&vkQ!PC=V}2@KAt0$?U1MRyMKGh%1F{5) zoEypylXavhsi6Bb{agSxK}~m~*W6J~>Z`jbD2b?86eO2fARZpuxR8O zuC5av_Ad=5LvCI+F7?|0o2?8IIYlfJDu+6BXbTX&wNA2Vk+szq=kS`)JmQ<85$-M~4Q_E6>!$k7ejfaXHPtMr{1?ev&K z{01cRy*dcNQIJ0w8d4=Mc6NWr@Hh_X+(1@IKLGQ?+4~gzt9!Xz+-vLF{JpP7mSNn0 zvY$j7D)Ma5`!?dC<8LG%@@fTJQ5##KL;VNE>5wKdfheN4d_1=J@a6xL1TPYc6o+z$ zrbmu2dt-=f2Z{g?Ce1B9BgN8KKrtiyA|8EOdt!(j!36U$P*$XVG(BG{*T3E12>@U~ zk&y@y6oimC=7+q8r@L^M45i-RCEZ9HVY4t0*Wk?8d&on!99nt)xRHq>K!l882$6~s zAtEeDy?!I;d|dtGtzsWWZK!JVOe(Pu6hUT^0L(d15Xi|9paLo~?TVkzy37I8Z9oJ% z2jU?d(RhH|K3j3-p9MKCT>uR|7)Hm&goOkB3n<^K{T3RD2@L+8?*C;nq*TVCsFr(r zG(cKV#fN_k1rb!(MpBV1zD0p940aa$8_g* z+U!z66<7@8p1HiYitjCe#@6vs^M4$@g(=MyA@Wc} z0CB27VlkiJXL?7{(c0L0KQBMa@fqdGk$eR}v>Z($m&%9G0IqL%xshWb)?RX;qpaVn z(+C6$qyZq8oM(IDWK2Z?Cbj<-iK7ENWUQGR;rBDJ{}1<63I~UK--0{HvNQ2i#*!vH z6op8Td+@+XMP|adf=M<5Li)hJwtAs)*3@(ei?+FcU)7vzpEsAiQBfY#pNBqYI7p=e z0Yu}eWkY+$Z1H;ZyE6Q`$P3cZJX4f7Ls08lT8C>_C{tG<*E^?XnKIcR2(gpq5}H*} zh(L-NLEheTXob<4S+{=&1DQ3k3ln2C6gO6pHcT?up`$<;7%}VVVQy=T!(6U!w*co4 ztTNtz!+84LI&BT~G1q+TkU)ARNs;sQx)w(>lg1!O8SUcX13JDII3Cg#RSl|wB`|nt zD&X#6*l!Af5mF=OgG`iA-77&sr3>%?z{QcHWSm9pFriA57~#imwWF50>!sTXFKKcM z13<)K2q2II5&;;J5kLkB(_JcUYv0o2jQ>;2a|{JIN2T}1GZNyfHK>JFY}26Tp<=@Z znF3|u45%`!GW<@I19P2FBZ96r$0|||;7C9N9n!Rf00afy#I{IjwMC$N!tT1&TW*)F z_iEcBbvI1V5V6*AzYIK@CMI9!>u zR3Q+gu(i96`pL>e$CC`|$#tRetIs+}z6W%r<}3X%bmEdmHsQI}3E z$}9$*nt99~Va7+2i{=IgEw<3arbq|BqICtuvdZuqW|KVYEQXoEle-CmL%V(O>EmR* zp=T}W$2vInH^&UNCT3=3q%5hpQX&C2*|>45t7@czV(q=+ordzGI5)c+T!iQ*cO1|+ zB9&=2MZI^Zn;id8ES>h@w;NdePGheh*DM2FLP9=Py=h8XK32WNy!O^PwigZR#M0vpC z2J_aRa1;G2iX1`$c|(UzTz$M;Bsk&*9VW2)`Xnx_qbnGCfO12xoHk|7n>sd`jXf_W z*VLFn7{*BsNWZoVp?!aJaj=KOy8KyVv^E=nv<55#Lt`|c5BiwV`pNm{>d=5vkLWA< zFGY*r^=)k*zwvLew1_NW7?4saX;eim?e7jz2pTZ%q)KyAqn#^R@dW`OJ7l5I zD>9g;jjs6@?x5&tGm=UByES*W;^)SPBuzZHe~dafvyvPrhC|8j=1*td`^+9ex5$M3 z1bXY3A2DQ;2!wf)I>g z#%x2t{pz67xmK+WaRR1yZlG`e_0}a&)P@**fv1b1O$;- zz={Bj3V{@Xu`Do1B?tteRTP#Cl>tOa7`DRy8iInt2+L4KWP*fH3km$87y^zf{IW6s zaC42~C<_)aVk{USh`bcxlMF){c+hjzbd=mW#Xk)S?~hSz?ACPJ9~4hh?DH1v4^B1i z&bQZy2c*j^&)&}G#;+Rk@sN;&@cqNW0SH1NKdGMWbx(n7uWhvI@uyf$$dn!0^h$<&0GMyXwR1lg|4l7f5?Z?fN5N)~=2i zuzZS5NNyp+eBeq5GJxvj%wrj36kG;bMM%XJ+}|1m)2q{X@04a_F0gC~6G+u`hWO5_0 z0CG%ijaWfI!uZX6dyxL4$LS$&JYP8g`QwN4;INV^SV%Jij=%^T9s~o%d0LP2SQ|1M zY*{2csY6MmP+20i$5x6<)>^SZ$e-1QT&2$+<9becJu*X2?)*1@i)g|`7bbv$HY6SJ zl$HDQVSOdw7kv}tMQ=;U3PD2y<*JDtd3iTsaR&$bjYax}!0X2^DL4#*bLVedmc8u~ z6#07T9wyzs0P3caP7AJw!Ek-q`LpL4*;3D*188tO9-Xy*!fkk6)Tp6AG~r0fNUbt{fJI zNK`sqJ&q-=YoSbuy5$D#F)h1iZG#2^hU5xCD3CmsuqiPDVA=}4rP!6jKpZHd!Ysh{ z)YS6D7zD@=lE}f5NPvKn>FOKxki#O@-~k9V8t7`zI5&#AE-XujbKyT=rO8VHN~{S~jxmy z&0`J)+ae_H?k9FGa^UgXVN_LJ!ViJKZ_MA2_;azMXt~%jdMr#*0KE|hvnPyCWG-a7 zK6vo&b{-7W-Hx&rQ-+d+2tldLs3^oWMBC4_3kD^`3%2ehbtdx4jvdRL&!8+J^#{~` z0sX`Fz#&KH`>QCDEEC2-erfw-lu!0_pvaA_toz2L;)JO)>gP-Ma<3mRKdS#9RL74j zIxz2&r9|+NG{$!B%r&xaYL4eR384)R%+d?k%{ZNU*!);)f5X|?t0(aYp}%5pX|WG5 z`j8}LAZS3=7~%3LHWBb_mM}aU4%qjeJrRXONNR)w?b}3-6f}_rdUSf2tneGroW=dv z(I+xi;^-F(Y{u5nKo>kvK?FKgx^COgRw+&0;@M&8)U!a4tzi^2$De+}1@@VQHRN

$l+H{OayA$v)lMz@A&CM%4{490RQv zfdN|REiWqmde?=)u79RFSl{1#ahui7(cw)6Lco^DLqn@Gg6IHbR&&?+7oP=T3fGK3HRC%+N#|H~&(AcYdIwkoyu<)qg{2^BQN+}_f(}LQ2b8mSVs{@& zo<|n`2ZY*JS5Fq>yq&AzNDPrW=;rNDwC3^bQz%FS77_qL3`hc7vK*niiP~OQ8(3rv zUv-O;qrRv>vTD7|83eHGZc`x=2@^PEr&i-9XRwb|&m-YD{k3x72&mLykF#TypqNM$>cU1Gpj`WB@hahgXMA&HY(CIk#o| zA=|ZbD3qzU9HD`ExkCdSWrPnb5icNg73-6|_HMn&jbO`$x24U!a5!+R+Lld>CCVCy zfRp+!E;hI+eC*PKFDeF+5Yv}6wLU`UaNq%z_U|rNiMCa9~ zcX1LDCLDLZzj3Py@gFsKE+4eTJnqo@zFz@lOuhKfSc3{wSp#~835U)Qo#0=)kV$^3 zHF-0DfPlHl8y|1S{tUx+HsZa#pkZJH7sjd0W$TH<2QQG)d_5AM4fe}<%WbQLtab%~ zw@;v<3j|<+;Ns2jk>Tfx5ivd%F^CU6HR07k1aSy7lq3+oZ^1_QA5S;4%Ia7#855u& zdU0?N`f$tT=lI`j&N%4|)!hc>9jDU>u_Qo3KrWw0j3FY#Sc2&aIO^Xhm!Y_qk?u9jCt!6QU zBA#h*?#j*)WF$-Y^!Wad;or#2U`R!R02syS9mq+~MQj5f56{h!LLZOy)P95wipF9Ev6Q3Y1k0I!g zN8@Rhjs2S$7$LC57A8i*u_ntdO~M7*M$>Z4VQdN;N(C#>SXbyu^~qB%hF9rzP)CcNA0r&s zkIm6z4peGu8nM9KT2Tb8L>~kwh!J#T7%&GoRQS7_|EcqEZ#j4N@vqMU#||@7vv8df zNhFoI9D>Odjii($g>fJ?*xs0}Fck>m*5@OEo=8t9bjSmc=NQU4JjwHQiVxdJQB0In z94HPir%r+ZXjA|miUcC)^kvWZ9>|)i4Z6FSW`q4nm(dy{!y!JxB=;qb+M40?3F6NQ@Wt51l<8Pq6fCmmw@#P)si!80sQZHZYVkLe zk&-Y^5Ew`#fPg#=zyt}yW}VmK&35599DpDg4g;QI@kia_#vI)Gl=LpAll(CEAJalU zxP*fLv0{a=G97ylG&*1UzicnrnSRxybfgjvKs-S0)fabn+|QeamU3|APX+O~S<$uJ zms3*@MhnwUG5uX_ZJVwRTU>PCl+prj6#@ogC`w}?%M%Hc-3N=(z*C1sAZ5_QssX%i zc}3d0tYk) z!g=%f{eBI#Ejb3KuXPkMugBt-MVk51oAME)k})7E;Gh6GHi}TPQsn?JT3h15>wEOP ziTC|_4@)~k?4c6>Dtyxpb>iGnz=x;T;Lz0riV4+Wg$9poNV<7$--340LLL}gwYL~u zHyBdc(7B34Lf{clDL@ny00eLoEdG4Hlw@YgURBU8~c6n%q1g8X>e}MRLBO*GBEL$Tep0-^Pz5 z2gU0sPWb>W(Lx7ruJ%p;8OQ}2sBHtJ=jc=fE(i#AG+~u05~Tu1z?d-C_DL_NU=t3W4TH786Dv>$bJkDTzv!@lEv#3%oU-;Iz7+{lpa;KCBib3_}N7s94%`02B`w z9FnHmLgBPD;r90?FInuQ*kY$-Z6JU{H6hRZl>$;w0XiP(1VD}v`+R;ry9pI_IvR)1ex&VWx3&=wc2C#D`49x#a&L?GfxL6d0#1}p)nOAum^6e-{kkRsH1 zLk}MhCw{jb)^fwv1v{WgKeJd+1&9dgymW>D4Wn*t(!#oR`uczaqE82mu>t_pgn%Q7 zQ2Kt%tS!YNCL4BM%=tAPL@sR4)4SnhlknB)=x$@Y; z#Ue5)#w3EMqQ(*;2+0yEh^$YF)&h(o0D=kv6b!|Is0k_%0()uf?VsS9y`H|_j{hF- zWPLPd<5bY&TUpEQ<26j%M(PM29UTzDu1RI=Yx$yLHoLE&)+PuFA3xvfdMCXn$LgaZ zVPQ~TRIpe>NiC$(R3w1VyD+FWfy{78u9iy6Y!**kKsgxRBHV^d0z?R~kX(qMW<^;o z5GokTl-6hXndvW8M)k&lX%S9lc)8egrD7R(NJy1~O zy9r4KIj}oraB>n4lZT65#_)KWZZPf1=XW+cQwCU>Xmyv$+_!C#UN%T4taI~oXvaKT zl1SaVOnCTd@$TUJH*96w^IxGaGfBBMTnKUi5eXVlTb6y=a&KIl#xqtXWb`sr0PH|R z0RS*51bul}Zt^H4)8HziqZtF+5IyWs`RuZ7KLJdbzEo`C5dc4D?9Gh;cL+>pvsbVA z;dhkZYGK&T;OKn~c^{0#iGUm^1?2OuGnYOKXok7#fCvHv1_}WJ2H`X|-yZC+p!l|O zW6ipNyk;g%<;3`F!hJP_d(q;_o_|;Avlm0c0hCa*MER#OK%8uQ8!cx@LMtLk7_Wkl z^h2Y&fO75ZYAAK^Ti{Q3*ws^2O;tZ#udY|A1&1%(G&*a<1RmQd?eGJZ)Au+?VjUWd zufOH=+}oLwRO+grUi<(K7(nAeg_C&T?UM0NH-5C!=Jnf~GGKN2>E1x~(RB*RQliulfdM2HOGWm)RI7fkXF}kBEMkbrpy>k^ zKoj&mB>2`KEkt4q7z(O;XZl=2mU-d)y#~!lPr*)eR6bAl&q!r0>ac!-LLRx{)lRY= z%N3jJqDN=D-snHU2h@RV0g$L1MhJltAPgc19&YQnJXCQspdOf^B1ANR`>-f@MfBOz z9+LMg$ifFm!`~xiNDyNXMhp?aG69)1;2>2V2_H*35R4z9Hz~m^?(7}i{XW?G{GPpC zI+D}ML`XgE_6zj(L$T3s4FCvu^`!xSwt{t3xz2TA>ZEddc`_al)Nj||cHO5RH#@$~ zyjmfY0|S?q@I%(YY(hY8Vp!)S0RTqynE-?I(UZ#Qo33Lwy*A5yO!HX>)A5^k04kVc z!muJOaJ_*$`VY+yj#X!A4l0p5@wKV)>71{F)_;O;gy-M@FhQn*(f|z_!T>rFk9KU$ z-|5HMsoMg9JN$l|W!*?3N2Y;dun}&P08UQz0X9wk=7(kz;l_JR|yN|_s zf&D46);|g4J%6i|>B5i^dOK}pQM{nlf*^ua%tQ)~0q`vxQSaSy%TE{V$9IZl=FlLV zd9ump+?NVcRp;~NmX246<>|=S1WX0lLmCmmNEAV+B!<5bmTX9>T|o=lcs_d^)(Q-L z;1o|EwjW;y&e`2(k(m&DmJSj2ZU@k}$AOM|_L{oBvy9n^J~bCnvHd>3kRWy!{sy1J z)p*F;{NGW?@sCJt#Y2P?z>YpFY<%!*!2+5G7)T)`k~8OkuT8r_5HCQt_iD=t6bOn0 zSq%wL6lqgb#s*pfk>fB;6q*E*0)oh(9|Q(yNrN~=0%8Efz+1{-!26I|5R!iC054u# zPi6DhMOLA*C`h1$Bw)6)NsixJ=jn7))a(x<0paqz-$Qx84k5C^+JGq=038y*iP{f7sOaJNjp_I+l&S1kmA<6d245@+?i6!F_Yjq-{8S!|=46>kIy!l)>!fl(GBZ_v1c2Ez$aNX?ZLEi9JMs?Dth zk5$-7+lCv&V|0JYljG~-``R$d`!VLyjWWmZOQGU{aeQg^&$`KTKNloDAVNhR|Euq6 zfRNHCssO#?RkpJ!3M*Mgv=D!#YRSOVRbZmQ88l&b9Wjg%k;+z#9s-(Jqr_lp5xRtk3ZccxIi}4E$fWRF~|c#*H;H>@&5F)vFzQs38DANkWAd zoVLZ;R^75^2qi)S0rULUw7UcP#g5wnN)bO&-!9#>EqWIORBz4YIsI2nGC}lJyGxyU zTl^c4KT(pF%_KDrTKr}wml1YbGwW#sC~HxC@fdb;UD*JUA{cq{^7%P8>A#0W@$>EJ z&Ia^I&fMcZi6XFp9N3?|o{kHmzcA^>DU5MYS108t{yMI>1wA}~c20aPL+V<50t z5kOFYjEf*Biog^i!AJ#33L>zA5+D*X2uKz4e?@KKrM@NUa(p#%>vvk4&p?|OM$Te zR760f0NBK74nm15xK)1nYf2{X>+aFX)uxV}lX!F8%h4@;pQn8J?hx8y!ya4q^mfEI zonVOgun-2+0xn;W1*cYiZqe1(NIjk{cq5dFx`=K5^`zRXWhLmw3!gtf+1J*_F=G@I z1V#XYh%jKqk_xemSR$Y-7_jHLz@+j7Aafxs0I(Cr{}Y*~lYcnfug?wJhdvxgx6MaP!ZbrMn}uB$SH_KuGfb-w{Og zk0wb_Uw$L3%xC~26gz|g3&tyW=#F6shfi-=Yb)hIA4EdH-JO#Q!wf(;k$ubsGL;62 z&^(PO0g!>0O7uIaga9O$uO>2pNQX|=Lwyu-a89;&w+t@eIZ^aiH=dr*I8QdbaUjhuxZIfQDEQW9EM_`y>o|f&*362oi|w#P z9mkMQtc)7hVk{0&P}&iDyj)_h@1EYth;wnZmCQ-)>-Fu#J6@f^2zPZlY$q~>Vs`mA z1QfKd-A>_$_D|~dnKe9n=Q-6>MO9HnX%8W9K%d5$1!A7Vdg?oV2Qy>hv7)uIY|yy?~OVa7X?y>9;^Z1jdzn z-*T5eOe=+f;JjmyA)pHZ8TvlO9eOl7#r^R0+rN^k-M26tQymp%&MnT8zq;grSv+i}@m zeuUk^CJ3Vkzh&pbz-1sDl0$U<(@!^z8+BoPDLCm+b;Zb}h=?1dRW%Piox;lO{YxAL zW@f!V2d3kC4gvLAD1tK^I0w=#ARiT$S@6SAjnyb83ZSeql;|+L$aC6m`nCtxCZ$@y zQH?SdlrCqwQ6g!}J6~SOfR5VO3)vMkV_B>O(DEcKkW!NF)R>~rvLC_%((~hf+ z4?J$#*CV%Z=-eIxAO^P&d`E7)IlhL!G9n5@Z?Wa!*U|B3R0L!n^~BOyya4G$f3Yo2 z#@TJAZ0!^r)90Lt5U^!qUK)V{Y*`9Z0*T!!Ev^Hga5BH^gP%vw;^?vy)Q;xnJGTT- z9tY+K-8yT%_EW+5c4inGe&9r);v0TIWK#w$f;Nq9x#Jl`cL6o3f~rE~Lh&19j684< zb5vZjQpRH^9q%FdmKbGJ8DO9|K4eDaW;<-?o{@|%2KkX*^FMNdf6ydDF&q5)LihO1 z_@3Q+H*>(y*!J+MRqi7BX%6-R7khFP1bb~WIc4mw;==HAV}#xjunCWjq64HB9m&k5 z2dXP4i5Gm3B8{Byu2Znu)^jo@222e1cUQdx(nfC+$kaFGKC&(W0r-2_GK{weZKeqaNA8PFd^>F1Cr9thg-C(!`+ zpz<-O7&BcRtJBkoIvyc=>R#W2eC?VP?&U+}bb6?-L;Me^#j3r)Za7l}awU~WY@}1- z3)!!x)=32eLoE{gEYb3``0L-axtMVnUm!5K9jL~wPc9OGII_;ez8a=U>DuMH)rfnz z)AQNB9?yBJ)|_`y>0ykJ%tIr>=|KNNa}U_i9+|lS-d72K*_mTobZFT+8E6<`EyP?j z^WVaHbTk8gTzToH&sWvA-H@mp#3TII!IQet0TO~41w7_4F4YBC3=Pf9N#?S(dg>5F9?KUtS z5U^axv!cN^6}t(-89Si4eN7w+AwGEIWJE$_cy`78&uc~8IR>M3>MQ5swU=D#gR(AD zc~I-F5Jnw`@5dRPw*G*hrdno(++JT8*}`wXW}im@UU84% zJkcQtF!I$wge3o4_=o^N_8}Ei76||ZV!;pv1}LbCtVC7-iXy~h6;VM_3M#P}j1?Fv zf(pfi5+Ev!K>bhXadn`bhgKp3F>i<>SOU!e|9)Im9xsUmq>BKI8l7uOnvEjE?r%Vv`=EXVkxr_i2?p@gEU6nmF}J2|bJfCN@0{M>7mLY{vW5^Lt*#^d+fSca zok)0MWdcAgE>xtb)H81Q(&NR|{Ig4j&y7WPTI%y^`n}P*FDpR;I5UZI1r#m(O5m`P zFn4b4CjgHEUNQ_Z^73T}%X@&L&nBK#7pLmXK0ZQ@(LzUmzoN;4VPk>Ob5}AlE3}h7 zXkn&hOwO5}166;Z?B&3jHn!5Q@i;kv&3HO+3~C^IT|4x!hiTe{1V)y@@+ZG6fs?(9 z3DquR(>(K_LzxYXHcEN(vBvmN2j16AiPz_#5*<;M7A<74hw$@2JlZ>Dgk^#8E0_7N|r5f|>|3^3KJ zM%FgkQFV~EhGn^Mv-_B03Ze{dRy$SH+clY)p&^=}iT>71!YN`GV$4mmQeX1hmq_J~ z846{BnrQ~0*$hESX6gP%My}W<`oHrpJ;`)Y6MSyBm4=ODj3_J+c1rWIsHg%v zT*Bq7D>al`Hnp*Z5Ysa#E^8bIov1rqGa|G>jJR;z9XqBI5(*lc*w*gu_HVr@4zhxy z4J#;+>52k; zA2Yr2zc3WQfo`GjW3B3!h;&3uU|(JJQa=5M(SC4+O%yQU`7Xuvj-b z3?J#~2HbGAI~p(=x{ZY^z>iapocMtA_gmjXpoXbAPN|R(2*2{F5ZuU^GxZS>u&;CDeaIazN|1UuPu4Qk3{%0%o;MR8f%% zscluIp)96P=-X-hzWsKd-HjUQlus;Dy@hBm?x|8WePP@?9j9{RT-sm(XwZfQ)Bpb9-DF}rWWD4<-w1z?< zSppJ&1@Ah3!?92UtV4|kngy=zpwom7slyN1>Z7h=WhgDVO=Dwm$GqC`o$t*u&ia|IXdN+HjYb$Y*xdsY zY!PcLODNunv94@*d44R#%LnIzZvo{sXl(J0&XZMy7^3yoG@Pv~=GxGr7PWr=EV4%s zP(8%am|6hLNf7!a8>~pnBtV;~Q7M}-VNof#cFtnK$04=Ey9`UN|K>UbX ztDS_Rvxz|kpn!r+asD6BuX{%g{bq5feF%v}QJHnRQOPuIi(-#FUJhy#j zFfo=_AYvOeG(IfbX74bBS~1;rGUn4c08c=$zoo5&NmR{dl;W__EG$Q1rm?hck=wLY;Yt2-x9P6f2;L>0weq; z`}SlBw-Re|o4?GHxDH!_naM5@7F0!zC{$%ELek&mB%G)k+UwPUfMY8H+K%`yB16aI zIs4()v@h=<(jUYS@p16rNQUzs|7h#|6;cuqk}9-o1H_l5T0TNT1RMtp>k&~=$#>8v z%%gw2eMjLDSC#O;q&ON36ap(Elw^MSY?Hk|E^-kF9V(y)5#D;;8uRf3h8baG4Y2mU zhP=88klmdlTlV1Zeh~e7NeqMe-n5xolWBHOu=d$@T}u}Gxk}0(vEM_Gn-453^f<_{ z8}@S405lerIt(a*3e4QrC@2zwQ84%m4X2xZau>ELUP!Es@~jvG7Q610IQm=j<534V zSTP6?7fzgPp@|B$0d4>!So&z@9v*t*+>4%47+!)%0V)vMn9sl%`WhY9z;30mYBP(f zCH&3K)jCqhtFwj$lUAroId%uTlmMgJ|AAzYV8M`z(mOMF9skr7)k#1kMNO0#-qO?n@o7L<8eoXkkt&Y>z2sK zGhSQK9vvF?Z09uH9dI~p8rJ$- zDffL>ZCo&c0}L|BMELl-LHRh~hK2$|(7|VO;q?h@OoGcrDar@|#b|op;D=<=jfmBZ zu-S-`r5e-;FAENeY!Ef-uGlDnafRcw=e3VIiMsPsIK#V`YcVXmb|uCZwa(foZJjPg zMoDe5h$v$4bxrpaY#=P=%iV7(PC4&0Xcoap@j^ooklPSX46uY9MG`_rJ66Hr)K)qk zkXxsA%xI7#4Y3P0DNj!gA$<&KN7nyeA8%KOqaD@Pj)S52c}@kyut9zf`}e@FsaAlq zTOa}-4k$k|k?2$gBkBMkUozdtlXssUf?>rtnW!r)8l_rHy)_k;*jzA)7jYI@UYs>h z*B;fKjyc|4cLH~ERw%gZ_Bf16bSRn|Am|VT9HKk`&}X2J`nR2INJJP&MCkur1IH8h zd@W=Ei-15+P|`P!v(S~VZJ?VXa2~O5KTNoc{JF^h1H_!CXMeq5kpqb64hVm22k+yg zp~&Ndufc6EKexM&&5!cE`S?U(5hED@ksw9d82x&Ium<0aVD@_%UTJj6?ubsXehUhr z^`Le^_I(|qa|bcTyB`4nbbTfrEI%Pdig8fanDfTk0ZTV@@3*9#o&Xat*{yi|&SV{# z9MD%}pz0zOQG-{{OnrVo>H}7rJKxoy@_%pd%&tV?+lwgb`i3S9StO%i$u!tlUOc)pp*!x!UVYhT1X=Rf`k?j#37Jli6X$jMZy-)frB8TAqb=l5Ee5w&q#70 z@8A%J;bn&D89wH^Ht~OZ)~EQC*mj55cOVB4YIi?_*V=W8HPcwM>;2y)A=SGO6C+>k z{o(Cshhby(>IiML9K;C(#jcsS=N}%?b#30jeG7cnsG!nmdOrt2AR*vb!AH7woRg3f7M>e@1KwVR9f` zfVvf$GdeN>$*}2k9b2z1cYb6fnVt!pPJlw9fPt`E`>Wzoum$C>7^Ib2JZ_>l9YQ8T z>Vb_?F>kJXagqk@mJGAdv062(AqtkVL?R+XqR_N<87Q_SgC${56zySg&=q9bXQk-M zvvOv<_%=eZ(aj9PEPy~Fs}O(`s}WI&SQb#A3nq(AG7Lh-A|MvYD`#(2*7ll|l<*^# zn9{aY4o5y)vqsD$i|)H|N15D*dnVP!in`e(3pQ|U=!}%W4i_w=B^FmXTgt^&oG}?A zS;SG96hlgwTcrTQf>=q@J5eMJ9UUDV5v8^cL}Lt1Ov0S%Qxz5bmZ5OmQ_ds8ypK<*hRgMr5+Lc|r6+BF%<^Fb%VL1bS-e)6&vuC_U7ZgxW`tHKWooqk0HngYuq^hh92-*5@IZ z0HO1NDe&2(o^|{H4&8(jPWhV{Wyd&=(FGEDG%Yq6i?DT5MWZa6oET1vk5v!cy-dBa zJ1{CXE>7N1Ii~J6$J^6Wx0h7&@$V-DbO@oleRsFQIPY=~Y7$-tXVa{R2k|63Idh8< z4wNBNnpEhO22oWnDjbrIvEZn8bo`rJT)>d$^!EPFN3QMLV?dciO`9Z0(ri)-Z~&_` z&O*QgpSj~@(g1AxUl`=rHm^G}+98mU76}4C0zv{RF(3?O&cg(@TMbq8f4>eEzPM2K z{OAi3HKWL@!n&$yP@n+JlRM&ouX7_+LeCW8gBhMh7$N{nsv>uHHWD^DBMkwVyC`5R z6=1&o0ej3j;e~F9yASXo8!+Yw)hOd+CkiN#MXbi#QDSk%3Fi0PZLl_8-_P05;Z;bC zGw5`WiHqj?AboxP)LAikHgY2gSQhnJckomBmVug;)r zN7>j(2?*`sL&^5icNIYQc4SyNuq#3_hR*#K9BV~_V!(t4D!68I^#FCStd0F!EOV=* z2{b4^2N}LPkK?N^ic_pbcvzXGt*}#1v(XLr*Pb#6ha!8k^JeEboAl{1f54Zu74hxE z-ST)EB+tU2ixJ=qPf4*grJjAiX~@`HKT9IT<2n0XuK5B@p}6QkZ+ZftqI9UWY3bj? z9?jcz(>Q`FNlo(IA%hNP820u?sLL=QG* z^9o4~U?{ujho6uO@3t0@Hk5tXawfe&5HG+6+BSCi_{Sj0vD5?JAhHOrbVGS3^plz) z%b*u%O&RxmGsp1s76L313{fHp2*?W-D8N+#5Q-5|kVy~`STKZ9JGpN-2XVG*yfAQ4 zS+|3*0sRv3<;a8sVn7a7fO_pwYhWuXVqzh66`M1$je*aTtOF5{B%IqF;n9p#SgciE zjaJf%uth~hVkoZU>M{ow6c(LNfaq{Z`*gFLHa#@5S2E@L87^1{nn1Y%TsrlgZ(3M^ zqty!{f_$bL*YqTgBbkzUX9TQA!XaA}WugiXl8uY8ZwMQ@jR=bDd9L(K$70 zIMEIyff58$|#T2UTJ1zcMWd@{Z}INf6B zv#b&v5S*x03LpU$Kr7b^be+Ddy=QpL3o&FP`)^iQ5%I(*iT1_d9#|}dBgYDr4B^)m zyi`3G3J~HJ+AKB~OAt@4^2XOF7|b>vBgAdFeDjcofWCWM`?8aNAAZ4m-bp9iX!`YI z1lCq?B0=&}o~AEs8S@lm!-x{!d}0PC_mksJDVrPc;o{3A@qK;Md#*%ulxrN4=UtDF~_xu!jI4D(%Aq z_Y(;}h6clDb_&>=ahEc2jE^ti{T#!=7pdGOyV8m%1RcQzblPVWKCVcE!6_newi(DI zgYE_4Un36fY6O7yYc)W?HINYDUX+COSCbc7D{$Yl&+imN{ao-A4;OrUDAx9Nhhj?t zZ0&|8P67D2ioDJ^*bY-OCcr-?tU$mF3=diqnoB^CvW$O!nvFO+I{qjg-@Ql3H$fl7 zws5dbBE<#%k6a|kpv4u4nqW%5 zZr0I`tZdnaOLgj>HCZldStse;=ij$x>*e2)_HFC)D3jxYUp`?-u15ePAh0Tqh`Aet>yV8{qmF6t#3s@N%v`Y_`Pnn<$vSviU&v9SE( zl%zDQgZQ}@6j7X0cmoyyseqqP!>Frh2r@z-1b{yb5NIHYsX62(3MMLobx2H5WaP<- zCLs>qf4{$GyhC~)gQ1dc&gOJJ9ylG;TkEAal-w4gw#+EUj5r1^6W;6bb8SG|4B1mQ!PCAiF0?Y{PN1)+A=4L zW}g?33s4e>NC5#LAp`O}x*~MEyd~gt!<(1IxpGJ~ZX>tJ)7xH*b<&gS%Fh9|9v5BT zgj@CK(G7A+hA3&7W{hV*2us(z5(GZc4LYqpf4S-SbVxwvld|6~KNm*-#{9aMhmRiuNW}>t1i*a_|G}CVToh;lXz$fCRiV7l(U^d_Np-O=M-`~mQ@Kf}C_+P#+ZhN-N z78jm|!(}1~YN`TIA|OJ65NcZx79vAb3li83?_>ZlLH_D^n^XEkOL!GRUlgeiYXyR!39Ns7nS3hCE3V1 zPV#8fS*xs{d748VWrSf%7QgPA!*O6E>irMg;N&D0L1IjrXI)wrVe*O=XzqnTg!cKq zFGr5OK7E^ct5rjPPJFwI6pIrjP9n(?JA=Y^RHQt%s{aNCU|)c+<1 zZZgx1k1jc;;|_LV&dJ1ZsiB);AWz-Raw)#dh>D!MHFHBs6kYj8S8a`LCcq9#S|X21 zSk23KCoRpcS)&11EZPHm<#X{bcQ#ze=EAG?H8PBo3B7dax)h4xQN~FC_C}2~5QUIT zs+yC!vL)jwLGYFrG^pSrAJLuNJEld2QL)JdT6c*+v$!xB7JwcVv3nj!?#aJYdH22i zIC-t(7$ixPB}1JYV1mh%f<005I@&UFsfdj@dRRbpx#j2V^n3l0kTAPGJ(yPl2dCIE zTj_BE%zD<#S*OMzK#{UYoGY$>y;bQdJ~r6hJGZ&G&$k$mR@{Kmib2%s3#Inw&1l~x ztdvcjNf-#Aprz2&3${uqZr6Ik-9yfYVKw=^Wom4}%nC>J`*h>S^x3Sp>roIs z5WcXyEN$4p%E#w|9$)wy^3eRW%GEOx8MYV>2wAG9koASK3NvsBvNg$I~BIWR) z1PVl?Jg9?aKO?Tn6fT$#0+OLX8xTPQWv}U=qn4|7$iX8Blqj8%lq3>VYxDJUjIfSE zmPmND&S|w(p+|RG^Z}E*$NM&!uLJTjP>P6=BvE=b1%f}FDCPmVc~KnRNgh>$i#M1rS(Edgw>VWX6VI=b%S=XVxi zy#q6wK42c2MF!Y-RoR2}dHX(W4hLkvS-0M%&&z6seV#=Pqxo&hSE61j0dfif0t&9T zpiNc#?B?=E9WDZDhfD!4@0GBECztV{?eM=u&+8cjmv4^$AZxDlson75o_SH;4O&lJ z=bPA-s-grah$2>kL)<0W5%P}CoxQ`SUe7O{vI#o<9;ET)8ShLO5FqfY)Y8_|B4WP~ z(Oh{jlhNM^%^?t~fU<+1AIAdmkN_|sKx2fEdrufi&gXnKA2ftMT{`=WZ`gI4OmPgg z%9+KN+)%AUR^SU-lFwF%`p6Olkt6e<~#py4;_1|@>}WA(>vqon@(J@u5H&6 z3H4RK*S`)~Hes9P3(Hz<0RTkY?qAxz>^41y?qMKo0Rv}kS4{tsm`v3KzUp?u{g~+L zxr3&v183RY>6LK-9U|(3p*2%duV4Up@bSA5d~oCMd?>i!>92)RrEHeipAnG;J0~GU z^zRY|sX-S3)4LHz#gj&Ay>JqqiT+$QLeR##ejuO)UBulE8;y@!haPS@Y|DRZc-76P zjMj9aq5|)h9F+;8*xKU+e8Z?LxC)~J03Kfj_itUyu7ylL=M*%oi_5Ltbzv=fF<@WU zMZ5^Yrh*`;7B8NtcV`?^w8D0a6k{2|EXn#K8(9 zUT+sB)2G|)(3J9e$m}GI=xjq-C=iAdjll|wttt5vWmyK({d3(-q3ipdGD-UB7C@q% zCfxw&hvYhR{BEXpCGTmy@pnjg9IpK!R-Sn*EuinKz>>K`!_R)b!g}%Jl6Y);)~G~q z3Wya8lOn)~h{%9Y!@tWXB8d90nrON+;yu&(hB1fiE@x((-J-n#<@YO45j-8udY2MU z1Rpl+@K9f?qCg(7hk64x-OhU!TQ?nOnh(bVr+AnsL>NQ?0A(2kNWB~}{hu~ZN>V2P zP)t7=mKF=Af*HqVARgLrawL#Q02rYPG!7x|>8=Z^ZcX446+@paI0I|7H=!^~Le^Pj zOvYOvfT($F8Du3vE6=w*nAb4P`*|K8G~sh`L^nHd{8Xf!!vXp?olO^9ntl$$_d4$H zOU7+1T3GnyVzaUiV(1*&M8&(7s$CH4 zrh_Vo1vL;5b|T0Sgn~#9kUsh3@p(~#N(U!fzR@Hh>uVN+1#1hrVx*s%$bps<=7v2z zkTFv=3~Edmi-^o^b_C&qE8f+Zed?&=z%pC^v~TXGR^ zv##8*e>Zh59arefKTLwGw$0nlE-^{S0rs1XTeJdrb}V}+bl4%&T=mKU=z1)9GrFq)MNiSv zY9;dwot=8kGrcn~LW(1a{B2`Mi4MZ8F>ME6Un&D!U>uM_rZ5hV2d%RGTZ+?=^tRb; zik_FVBfS0o|IVIT5aO^^m6T$Zln}Nq45yB{;{6etYYn!or3}g^!QyOV0T)quC)btK z=YhQ5$retQRHu7k+946SS|F@YwTKX^7ATuSily5y3kMh&!;H}&SA#^kzDZ{EsB^Uh z3>6;z=x>?{F@l(u6IN6ah9s#0L`X%FD#T372yifgG{C`>R0i1vv6j-Zq!gPZDgcNP zWQdGn$S4unD00@@2x>!XWRlteQ|S;YNP;N^0E}c2gjE(rn8FmW6sV;uXn~^(DVhQ-QPej=bnc)VY057<>(93L4*v>g!T^j1%Y25M2wd69E6)}a*;OFx~$}$A_ZBzv^PjW zB4e`uAjaushyf~TokmUB(+v(SO(`M)5>$|`eXq8w?POrgf@C#kqjqfQ06PIhwH)O+ zNCc2;*kHOfX$v&6$*(<9R3OkY%7nxOHXu8nSwdtE`Gh{S1)OY@`@B+XiV5qm#%*-rW4z~vh5Wp0atCMb*j92G z*4~d()q6PgVjtXt`q)EZ?6L(c$gkr?5Q0K5WDy971Y{ACO`SR;8T}&eoQqm$ zTSBW7BOORYJ79Ev`+)ez{Bc$?5#@??^ePAOBM)YyT7R-JWD_2`kB)@v67%U!6Chuv zeM+jUuao2XHxg>Y=X4~?L{Uaail*`hj3o16A?gt#LWrmM1Lo~{pF0~;J&F4E^*qZs z-uS|WJ*7MS<+3nl`dk9f%q&9_!u&Z0S&n-eDwge{MQ!)$E-u@Vtto=8+6gpmaT5-AoO z6JTf9{JE@Ef%jlP13M5a_kH2_r}uRf6cyeYjzjyufXso*{M&|RU}`g43CV_;gHXiZ zeZy$SQ*kRdP50bC4)V`~a5r!SxV*xEK@{q$9-=6J9I;(E6crF88h|wc4gmxROfTkq zSNM+}utC&chaD(y1rxFi@-x6XU~9Ppo$(IM0j+2=!1YVqc$c;xJ@Rw)si?z0;xubs zp8BK}WbHS*Ht#LBj+_c9`sWQ|a&Dl?9ymY1gp81WOo0F_Y{}&W-vDWdZMx9diRgLp zYcrL12hSMw(PCmLxEFfC}l5ImCrG8&-GYc*rM97iSJz zW6QRkAZh`=6k0_@CmUI(06;-X2}83Wd330OHwp?UIab)rV#qNORasD0GSO=wLZE_n zsSK|PHN3!?u)r!_aQ{V&qrEr^v-xgu;d3Zujos^*fp`JE;VA;*#TF7(Z*}2>E=MZL z!9v^~G}t9}*Z{N*snLi;M2r$5$q-@@f*`OGhzvJ-Kr_Fv*HIxSa47%;F$)k?9ZQ1H z27zLLgd-p>dctYG!37TZr<`tXfW>07>45xU#Pk_~W^QA@s9n*mzZ4H}8Rm{`Jg&JP zFeFTz8A_0lOoocZ0X=*~vzYGPyOnRzj}!wysr_@piIk{*Mo!IDhEnlDya$9s1Jl=F zKYR6xa(AZb_)I7Eefy|)aYKi}>Xf5mqDt$La%~AVr^A+MCh|Z6oNZlcDSX^rq zO+z-=mFCULNyaeDfnqCUAn73pN+6!OcppT$JGaE>HYZNtgU#6_Ep%tQD@>#H{aVMi z6sIX|zb6;n?akHYcbK1EvXjC?sKYbQx)Fw{nUl|&V|$bi20d?{fe#92iBGNILkD|$ z?S#T;**7w=GqlS*0zn99P-G~O=WKq{g5?u*p)L4CgdRk12oksyuC@SE#w76AKfJ(8 zIGX%La(dUFHA602tGsj&ZwUp|o%fbrkxBeBTy*W(r6@oXQq}@QM2{yF$I111@$`DD z^>fkrbb$)3>*gT%?w&7aCMT*Nt?8dOJi~vHA;4#Fkqs4(f%u#3ve9o2kU~=^qI@9x zn3Z?s7`pnkhED`)H$y)pLhPOB#$-hv-LKM?zRN^b#49@uc|s&<6ab|Y(1J@2{_UoO zasz0Pf3@UWcfIV71oX?}k*RG1yB|vh0K*uCKq{eC5bKp4^(j-Wa8#9tguj&Td% zL<8O#fS#oX&i|1I0D%*FVt|Vo8&{dihfqT^z5AK z?*O2pX#+zzr_Ql^@;;W%l-}Wm2AANzr2E2qlRxq}hr#dXelO(2*uS`+@*X1r6BsBc zVA+&V{lPk(JRS=lf_wwkBJ*?w>Ke{XW+6Y=luSW&K>SWmzStVa5(GRN@1?<#w9i&%NJ|k0Gz{RDa$uOjZEugKhx?m4 zGt+m&d7F+uZtdgl9vxOx-2M+hdGxN$h-^rKbBqFx;(mN zynKyO>II|3{_-ISf#an9lW0N zF-*AJF+mdsnARj_HUv}nEkGfwAIemy)szhrRVgN!8F?s%gpok4MT|%>As8lUrWjs( zVW}N0C1bGBOuX}0Xw1NI%xQuVNdVJt`uB-K^5leVMG6fHT0=xu4AZ{a4Yt}a;8BM1 zIBeTuf}vT)6#-sUEK%X8nxz#Kf+4eAQiw2lEyH`LC~V5GS8Iuj3YH3OtE|*6MW!`z zl~7eUnPUrE35Kwv@M^zhAAhg)cu-EiWj(iCkhD&p5)F-`Oo;SX;T8hp4BsI}JXQ-< zDEJ}V;l^3NqIxnc6j6J9evr(}49vjH%nSXWL|uhhJK%D=Bp3Ghl9Su+DY^!ugN&46 zT#UhnIS@B!7p7}s{{Sc?{s=jveXa#-pjZo9$!|;Nr$vX9x~Fi6j&MEhfcZZLW<RFgrH~=Flg8(!{Rmf*&qa5Pixk z=KVGfJta^)oJB+m;P3!o&ebGTC*D4fd{CdxgyHswm(%F`J3X_!xbgfsd>lI?JJq8g z2Js=&*?d~6@24*$sx2>Tl_a;*+e1SFEFDhV)@v;B9y01;`L|-2>%!= zC(B}>h{gf}rHce0Kp-!7HM`UmE_xEn(#q_8kE8X^(zE{x=x4KE+p-x9Q?vB@zV>e+ zv^QskT!a=G>g`>^TS1k~ws-fl!rA&3-X&YZ<1638V`n$(g&<|3(rOGp%_ z#mMXBrJ+;pZRpD7?=&1kXF&FO z2QeVpCx~?Ub5~RBnkzZ08GkDiU53mI*ilKh{v{l8Iyo8V&&QIdP= zr9pFwu<&3A^o$RAw;cELs9iE{Oh7PSX{WdCYuEVuGQVy%MjJv@4bVwl>yv$Bn<}So zj{d(+`SFmu{XPU?1qF~6=mBxm$y1MEfEJnkG*spzGo>X_?v87w0w8n=6{sYDR2D)h z9z$8%9B*;f}Pz`M?Az2NIyQDHA0WuW` z&=GAk14YQpSy_Wq^lM}FxZ`t;A4J1NqzHurSVRH=t8iEvLIaUc_*~YmIWQCJ3SZA>)0^)137a!V-+dlk zlW1=6+HT6G4N%oI&1yBGqzzP>nlnjVMqdD?jIzDd`i~o~R{*qY$+Hl00+H1N5KN($XmCxTKy5vXdZzA*v?@;7qXK=FAr@GVkA z&{3$DhXKx@nJdb(RaOBC2`@$fT!e_w!{hde{@i_gejfj|Q_&`H^~&##bYGro0VJ?@ zB8GatX}&6Ki{wW-);5)9NcsKGpIq^#A0*b-efnl(b!n#03>hAcv}bD*ujhc_GBB{;+0uYPM zs24u3FzKw}p`NTHk`vY6r|SpU$j^7H3X{*9GY6!Cb`API>9-w}f%>x*GIjm8pFgz* z^VMMql9{3Ovb>vEV%ifn%0kE{s2pH0QEN+R+ij@*#rK;T#jxR@W?h8(c=y_;(Pe?T7Qx(?fUnUkQ*O zVjh9IK*E7WzYHm}KaJCw-O%X+V{kfC-W}oELpVQU+08cE0~kQ^0#Je%_c*HdwN+Gh zIy=J9=C}Jq>|mhC1d$SOP05Pm&LPnQY%uR%{KWIz48vw`ljxID{5Tq;p6`|CKX+l+ zc{ple*Zz7A@?PWoh;u z$1X^l{N*x479`70Bj46-xmqZPKX+Y8*}7cV>5#2a2#0Z4jo9T2WKrzq1z&B>oCf$q zucYy3+(>TUZXc0X?88M@i`oS!2(}Zu{5+2012Q4c?7@I}>5wpAx_(#2tDnt->|W)Q zGB)4LV(WdB9kGNYPx3?#>r{yM;+oG5bLv2b!1R{+T@nQ+O%q@PxhrjiiNE}7at5pc zU%~y~)*rL0Y0MrN%H*Y?I-}isDkHCFkB`ge@ZD^CIl4zo?;ZP?z+zB2wICzo(g1k` zkDaUtQ3)Xc?jZpof2FDWpaA3C9S1bQ0CkVx>mOF8W*z5mXZOEmTVf@&7FIUGo_anG zI&{}hu-f(CZQ9&|H*!fY5QB^?Vo4;DOBZ){D48Z6Qa29Z;QSqR7=lqftQX zGxCve0{)1O2JdNO6C~EWdbwwF1S{WVSc}C*UU@`~< z44bDNwm@U=hxm;PfSjye91a+`0??hq%!v)Ms6UNWB&LHXBpIVdQovQI90-Dtv>0iG zu*GSSVNim_j8h;)aTP|=sgJW|C(i@h-u_8$$mR12sJzPzeCnovlu%Avkrt>T zZ}5Xj7Q@%s(U2rna{x|%dKI6&gRH@{5lU2mch@&%Gs)quEs$|9h(`}EM>8GuN8+a6 zu0@*z+xC4ulZ!M(^kW~&f4ABD>oFP25$v94H7(z1J=fPz?UZ1abe`l#3f?XB%0!okiF_iwxR;TPk&;Oy6H43H;O4lTzbx~^v7W0dvd$4d z6cry*3XL52G#?=WVo4zt`n9SPg+C--L)6CemA`|tM;?c5hfyjAq=C5G%e31rD(xb_ z1Kb9kI2+@$d9UDZ`CuQmf6&LyW(8?uM~Bsx+!c_gr=heXtNNrzkqbezAEXHY`5K<| z)B)Z|W{_BfN9^<490TpKQK5y60!<<8lUYYg8eWX4vg5T&8KkV1srrWEB8G zkc>#WDH;l`UM<)W4V>I=?7>h9)D&h=s8F#eh_WLhR>j`>_%!4Jkh`*^Q+YE+m#BfF zkS`ZWl7z|ul2{;6OpmM(#~^4BcrVeaMQ3G^&DX*~?TT0dCcPnmz#$-^Zs$ZXvTq}Z zXnna+_RJ2*RZ{o4Gk=tMpvb;@E+(~P(g#6-RGQlZTJ+)Dg4LS+-hU6xt@oc7nQ}*` ziQIBGQt1CatWn;Tin|vZ!`*)5x3V&F1NO!2s2?xY+T0u!3*td(2nA+E4;G3W2qT!6 ze^<5S2lFhHzRtJcIl^K1ET3CC;rVaO+o9~?Gvoc8f2Tn5^J>FZ~PKNWV(5^UxUY=q8%Mi@J@*~ z>wQ|Qp01#2?QHpZ%Ax=ejwyo_E`|mUY|Io|L2-F+Dmf5#g?7j4UP_0K-FXU7#>OW{NWEN9Ev#%Io)qq0BU*p+v4Y^}Ax{V|84s;K#5(mC55Dd%M z3J8Q*1`J$4s3;Q5ml9fTg~CT6idQgj*@nwW$CV|!`S|{RB*2EKifo05+9M(eYXwS( z0A8E+Rxw0`Lhu!EVv8cDg3a&u;ciQwGU-GaH`-w576&N|n@q_d!3HU|nv}!l*wL|R zS*8|Fm`xc{9qiU#486|ipl+Kd92hwbk`&2-twZb*Xh>}sZ@8ksH0}RwcR*R9h829G zqz^X+M6ej7Yxt_WmuGzsTMvljPzV*_5sWb4xrK8e(4^xnl%^tZ+UVGya^_NOnR9fj zs0MPoX0~!dtQ@wPFf$!OM%yq|Rg4o0Vrp4oT4l1D$)K^76B&@u2C|XJessed1{Dsw zZftCbY)F}v61cDx6-QR%Aht+pQ(4i$nr_V^*YjN((o=nPvO;Jk-8W94dNU*&5@#X@ zkUYAYB8)-N28g0fFqopmEu9Sj-*JNQ`;^ucV>8{JFSlH*aFg%vAz87-HezmVVfSaV zeQu(PsH&)_iy#UzPTlcvGB99}=555(+;KK--$n&6hMAd1Q+=jE5z*gBT-Amf5BjvJwJQy|8UMm)`1k1y zWFo>90ePGWUaLXo%W!O;Cc5XI+e}2*=MzDOv8@`Z5do=ym}sD|3!;XE(oH&Xu6Pz{Ghl4tli#sn zu$v{qke2{q#rWfv=wvMJ3}Jh9!U7qj_~o}eF{1o#`L z{P@XK?+EC#X>@)X@>`N922A_gFQ`n&&`1!R2DcIz&=BTUArQcV$NlDjBOsrlG|#)Z zLr(ja%l2OSHP z98bt34be@V4%l=u02);zi)k51Fe(xxkySz{vJ4mn#zhd!ga;Nc?aanC`##@Cr^m?q zrn#H`!PR#gf~}kb-9&sRTC~$0E?Ch7pb|h}Xc0u2(_c;!?Y0u(3Y@9T;Mj30qLX;@ zG=WJOR5Gr%_a?Nm&8TD%fJd{-79vYUX((gyD~6@tMT3~)Rw)(To?M7$t3 zfYb~mo$d99PFVhF#~&fp|t zwU~XZyv#&RJeAqIFi8~OR4S5qIM&N{k5v`8Fl3!gKQ}$Q38>#dGki8f$?lCkCK)?W z*0kYeCp1KRCMA{*K!2}maNxD7@KBD58267R4>b&|lTaiX6*N{mz#w8%WxEZOlzEFefK zDQpy|4WbAb$t6KxNTL>ym4bp06>18)!pu7E&_s-oZ4`tByh?y$(I)N*C1#MSB*aiE zNhYp?7f}nfgq4_*i3*x!)|`bI1I^emlr}-i6lKK7O9+DmhRR^VNp`|9WU8Z!^m{*t z>aT7{x@QVC8iLmtk`dc}35=Y({%Cq9)=$g(Ta^=Gr8_=_wy_HoYJPGWy`WUlh62eV z!o`xN5&@{VBrX&djbiwrs)hS-ub-BfA#@7$A8+@59kkA=!PL>`HD0Vg(;VE~hXNfz zMr^Z4m+ZeAG9mkPQr889Re@?s62%e(QeNkB-?D#kRggjfP)Ez;c&A~Y0UI!$%RRP8jk;{>4 zK*N7h4PK9b8C_E9ugV03gp7be37>5=knSO-0MirmQka07-~!quh_pro82y{J1#H1x zV53k*L0CmtVluN3vJeoZ2(SRCD6mxtf&$18Kfs@65MNira7zp(RjdHA#jvra6v8T! zD^{s3oy!PB3!jU!>W8(A$pL*@cq55MEG~owg{S&H874l6LWd9{$blk|EWcw#E?AUq zve>fDK^YVy1_d4w!4I%|Rs$$_VP55&TJ~l7?d@y3Q{Uicur(d5z=9FFW95ZVO@W`8 zQPNoN7|qO-(io0`fkQ9iYtdRt1ncr_&`#6~(`NcBQr_~VSst#Q4P+74u12^#r@Q6% z`Whla9<|JYvpPyq3Es5EQFZ`X238M4?zk{~N8=D}#Q^|-kt~}2i2S0Ue$5de7**Q` z;eEX_O)GwXj$1w&Khx>QS=4cGIjmT`R6jT($Vi_Es}J8n-s*PgX!0EAe+RgjBaLZdVUYwnY893TB;eF~%Tj zu{e{9+rF}7Zf|7LwU?+$DJsW6oA!oi35Zm|v6W+#4HwzC^M(8cjsfY%c^qoRgef-c z1n6C`Is;b5Al@GrfAPL&7df;%9^8Dhy_U@+AjM==20>OZQB{gYEvKFk2G$yb5q+p1 zFK>qzHJ2=sTQZH9In=QwXg?+;%6w)|(y?e>m{neFJ>(#O-o5J5M> z2py5db3hutzdL{2!s70#h={23{YD>LH|-C^gk_}71uyH*$^@Z=0FF^&h0pHKCggOf z0w)^sH2iN3{0-K@dXS3A4)t9x*n@ z*JYx0!Q%is@j#Gd0Av9q6M&FT$Z!$v4d7VsmyRi1iEujv*U!DZ`1Kg1gF4IJ(yIYG zRCUl8m_|e{fbHkh)#v&6?CY+V=g4e}6czcd)rCZc5}{4Gbtoa?)^14>A;^77bz?YD zJ!Wx10_sIMlm>fLgWQ0So@;#3{Fyx+PVm)@LY(%cLTxu`*14>EyP`-)iP0w(?&dE7%aQ_=+C93osBZb39L;+l}*e zP;aW`ftN`!!_)X*u;q}_HVwy~m;SwQJ0iK7F zScbhi%WXVxp_C8` z1_DLNI;l|$aWgFkG|(`X1LxYrNC==R^J6tgVg&v{f+!6R4VV^^IHwaoa^=2$iUoxg z7_Gf}*Lf>oL{J6-K-maxgs4T52gZe95Ee{6wn}4Q&655!)XjPmkYgDEkC^&6*SPnh z#Xfch>^5Xm+%igp+v~qBskZsHXhc2{g&ysx*K3In%a$|M1h|kV~#3Mf6?8nuHObHaVSIO2`(P|Lowg3;f`}W!J945ix zyy?rx%yTRY(@X8kn^n4_xXTg&A(~4hR>otMh35a$U?^o0XK3U?)HAwZ8s#rmwdmnE zwYjE~P+gH{;iFxq`fOAI*@?-_ z`u!#>jD(RRtfa`xVsAxrQj(ePO%~{G&9AJyBiv#9<9KBRiu;T+V5OD-c4F1J2L4CX5RLqxe-jY{D5e z^QDOq?zIf9rMgIBA=v@!^^hr1r~sk7hzKWo~RzTMZkaUPjfcx~!Q)^0PXSnCXaf zP2?HQURV@#&DqtP7Mf|atYa>hmED`jeXxEmB?d)zQ3GQ^qKFz{5-dhRp0vIwUF=7E z9+$|mbY$$MIXHJ-ox98#&e@{h$<#SvsSy-IW>gSFCgT=Dsyu7%YOvjuU4f*r1T*9eafn=y*m9+yPcsMpfe>WBkPZ#Ii$_JyNncqCGPIEKR%(Yp(Ik*%8dXeME zOa+(=qB13)lL3TKdng<+Ib4m`%*v7pLxZqu=E)Gra4is^R6^J2l25hfqB^rzjCS}; z&$#ZmR~M$7q(vM4 zlP3#OO(`zfwPaFrpz0&1oG29#Kw7khy}?fDnL54fVyXzDZ|DaGa7qsd1swXHxIk~# ze>GX@?eua${V5}R z7i)^g_0Ipr?X$_;CW@l+h#)+Xi9|@lwg=$koeVf8kqaf7DmkABJr_5Sk)jeJC0^IKVZ8`cBTPrf z;p)AR@Ioj;Y=D$i2~Fv>s1csa*GdyHu^24f9)HTAYj?} zi(9a(LZS9z_)wV4=8+>p3XM8ed*XDNfT7KPCn?C&sM1e1@f0m;07EZlq|dx-Ie-QM5MDS60k}j60tQ-J}4Bge?GQ@{|;fz}Z7-wwCJcIv7GA zkVS~WSze3eWFd3qHLvj!E`X51;lwB;03(gyFh{OzVNNg0J(OP_<3F89a0o`{jzUmR z!8)skuH%!u9F@jt<8%+mLRd3WknnBOccGq)aNOQ9+dK7wFRv2y<+E z5|-QnygkLKb}u(V-B41^TNyQ<%*48WUA#7OdwcwuqsIl*2?C;yWKR@G6KZ%nrM-0d zWOjU6Gb=eqjW|R(tgCif;5IU}&7e58ogS5Eo{^a?5B{NV2EV97JL1_x|Vc zdUP9ju<(!q9VznH8OEv>cF_4ay!r+3fm-%IRE4kVxyETpiMJ2ChHrihi6I!g{hWIC zfxlgG#^yvHej_2J+;Q6tl8wJsV2X?MxP9M#jW-ZGjlw<-wP+h zwC5y?AVuutb>;_X^O{IV$P5A?@x#g8E4sM5E4K9vF|?aDVdBoPHs?jPp+y2pdUFtxH9t{pdIBd%gn75nQ zcs=9DUe`>)k~w6yj00sAvP}>!9^MiCRlfqw2Tx@Vv;Z6MuGC zCeq~!yCa}73zS%(5R?zM(|0-LWKk8QFdA44UJage>co*nLaj0h0S2zGKK!!)BoZuO z0)jg$4FI@M`(Oxjy#08$B>8229@fEOFaqnZsoU?8FTQ1gHnX7MXgH=?R(-VvrEciepUYqwVnWU{_KHTiy$WfIHKy`RwFe=OXAuF9KpZ z_IJ~(ha6ti1|aT{2FqvWVDNMUk{LSLswVzzmBBL#2mT$q`*o*pXCuxe!aL9xLxbVPPK~deR9m!eF|Aa5iPP{A0#}_WtWGYT@ z7rEn}8^)lS8uxD^NGT`Z)4<39&x6dVv5sRCS&6P#?Ce7Vgmra)-upXN!&{VFD<>#2 zP=jT^hT%UixIW7A-sQTJT;$+bAjA(&Upm4mI}2YUPh~1}2%T^cgb-koL?k2xi_&-o z76Q>a&QVV1oComU-X6*+PzeGjZMObc0P`Eb5XvX*gXoH&7Le>_sD8{Gal0QUHhtJU zffpZ+6hqRKEUtqCPl(2%Xw01ag}DG8Z486@ViUa$@+lB58Hed&V3?0U8QqvQCwsNbn5@o{G*AuLgi2-FWH8p|S* zBEOdj1pClKN$V&B0ZMb{OAT`!rzisiPoev`N=O|OqGFz3DGS@?Iu z-{w1qh{M6f*L3)H;@xy69EPXXoqb1WHN`n1-wGukC$P5^0;}6@YCB8!Xi>X$CtA{zRhoQc-o>(i_>hplpXZ= z9w{(1xPBqu@!JFn00hovb6hMaMkECxZ?ailk6?Ejg8XFL&ISgvg#pPrKECx3SRVTe zM<{;%L#Q$BryfpSd^JiiE(;L(6WAX;C3p*g@ z5_)|yh!`@NbA3bJoy_R1c$-*olRkjGS;8BkIU&jzY7-De2G051#o|q}`=) zmSy*#cYBy<@AU}f5=BTs7c!YzWJ%ct>gqmUpM~w$T(;>rATqf~9Mgbq7vjM6LPYDN zsIqI#>|A(}719W607I?_nh-Oel>&+D#4&`WlJjh_5ZNngUvs zu|ZsDs6qs7emwWMIIe(44aHF51rTl+g(3l*Q5?X|)<6hMjGV&c`a5)ccRh}ANvZ`g zGm#ew~>JVpr>5mN{SMuW9!M2L3Y2sygB7EmP3D|W}0cXrYQ4}}Om z0b$f!s_>U0a}f4yC+T$IsG+>Pb2XvL7KYCZx}e<@Rsqa^1Cx*HdFMZimKbP*ee0=gBQVM;cb8k?A zB#dIS_UWV|gh+`Xfo7=rh++w{58DJRt2z5JE1Fj=b*el48*=3?8gXVP9N%i^DZovX z&{!KADP$NHu#t*sXUgTszfbOV>iTX+bsh+=854YOVx>^p%aGBt70b6^MlS%-hr7Q}h zq=LjCKB(lH_|1dl-O&<2?UUv>KOr0Dn~DvN;M?Mf)r-@bAe<`;>PJAXImwn~vW{U? zT$1(a=LQ-6Z}P81Cy>BU54WqoBaxu5xY$D+;v~%pZSC@e#= zZc<~e?l>ODTo!9vmx1pOEIA)}4)zjBzMx{}oK#NMd^^YxET{vm6)BOM2IBz8WVcvM zyF=xmXg1banGK}^SxXF3UuQ(siWtCz07F#=Ec@V+DkdW$E4U*fcu>qSuZ4HoelC!st}$rK6tEvDYS~EL6B6ENhE{; zgb+VHCzjG8eq7%cAI}+WTxGd%@eaM|@qw2h^s-Gr0Z9AX+#p}^kB@6S9pXYD5QT~? zkvtcHsp1_&I>hwcmbu89$3Q;&P z0;(hu1HLG&;b)Uu47yI);Uth2mMDKXhC@fwaTs)kJ3hTZBpM;+`54jH9^-wkAu8#3 zQR+M#UiB$uHBgZIvrVCZLf_T?O}D)=DzD;L3tM#-ZOY##a!{qnC1RUG(Q17fcqcHa zc(Mtiip0K@fp*0W43G*SP*%DQKGHAW@n`k?o_wd;2Z?}b1KHW<+j$`*Bpf=ZdLR^W zbRHewpQj_i0~lif{D^hH+5R2eUms4d+n5Ko7JJ&*02*inv_;+NG(kv&Y#&_M;@}|)+qrU7kGWjXM#Op$j(E;-j z9D)JXcnUw+tKWx+azIFXKMR4Q;bNQ&@%pT=LU;k%fM{S$JibVKS*2p>_<9$2mv5uX zePsTleV%;s0b1l9?;Vu-(}VKQSLgB&Ni)guM;E)J=aAM!ml#t6aykgMFL3@5bQ||j5+TVaEac8P1plyA4wroiaxY+ReH)iX0+3gt8W|!_`5t2TPF48HnCy(T1?RMy2`n!-8)3<^ zk=h<)e<`fmARL5(Z(3kkFTW06NTzQd>QEpg7I5iONbk|^VW@$@1rzbimrC*183X}V z!BBNMb&wc9PWGo<%g~~447u~b&pHoW2tXTK(b?zq>iG5Pvtr4yryec>lm?MOnPl5C zLILgr+)S0ZLIM`}>s2%8!Y|KWoWV082z7#!S>FI4@(1|Clt0_pd9c1{hpPz$iKk=C zdJ9muvkzC=50lHBF$zI|g%DuJyD}<`ZcCXe1sEYf0+_w>d{7;cc{=3m%CO|P_Arsl zY#l?7M@q-oy*>5$*gUc1_UlkRIY@kV8ibG!oXU+r{7tUv1@n$4!l4ec)0EK<5$G__ zj5t=44*ma8P}#Q4G)1;>d1df`Fm^H(?;iV#B>EC=FLsV-^psC<>wJ z@cOWhF3jgt^x|8AOHul;javrXVGr%PaJhg7yY>Q1VsT2%A^}hd&;1zp>Hcx`$TjRpT+t=x4%pyIjMhn1x9p3 zzwJT?L@Tu@vfnx9Bx4{we;?(Kn+{tob>z~$A2;7%HUbeqFk^@tcw+^K>9zz|9bd8=q5#}LW_g;Cq`=JUNS z(^GYd0A%kC#}YZ2Hi||FK?p$t&_JXP??c|f%6-$K~RD0X1--O!$S& z>(K)=y}c7P%n=|GFPz9|Qy(UirY+zYNDujiH70Jdd-87M&_rm5VHObUs%V;!1PCJh z&)HsF<9Aj3?w{m;nEq+qjd)i0$aWNB&6_1#qL!5+B=PMTYiNZEeC?P=ba^@csPvEo zJGI+B^v$9x^Xzmt>gfC2e^)g7IjWOR{P*svJ&dl-NS3vJuknwocK6F%R>PGh!g+Rb z=yq8-?vCoHnr)bKT@^OuuHQ#Jk?yWIxvz&N50@U0+9HbDb0xxCvhL)b!A(=qR{OKh zlDBVUnm5y$Wq9q-##6fE0w%PrYt8^)vPO}psvSmXnLsTkgO=u#RFj!f1WGtH|*=~v$5(tdUb1O>1 z$1V;)$1<5r8CDKhqhAdPV2AP_r8s-!= zs#0BM1P4KJF+>pDvYMd7Y`|6#4UDoS(S(7LG14kDVFZ` z)u756p_)kxfmq8;W)MWOKtLR!tE|cu6d8`PRg|F6$62Vz1XDFa0Ogyp05lEMfk;9+ zVhRC(AqA?v|Dps5R&3&s3^bYvAj@NBGiJ!;%4Wu;GKeq*Mk1h#1qB6yJ2p|OMNDNN zk%3ZcCfe3PqC(SDGG=9kFv$}PxTzg6)=3Qfx+re*c*j$Me|MeOH(`Z=VQ7U2KxqnV zU*fujNWfS?O$bpj1>MV-!4+j-<87sqE=x#dDhMQuL?MKqDn}Bj7YxwIv1Bkq5ROt6 zSbSxs$t7VFShHz%GFB`r)h31t%@)gHDmu8xxbL>LG`*Ds~w~JRA251~aITcz00;P*u&?!W>0D^)6 z0Qgy>5|YsIGZ?VJ*hGvCA_)Vh$K~(7ualY`O_zW{Bqk!fkW@O^c)dKE- zn5TCdX$bSREQ}Ih8@3Fkvf-!&?l~Pi{B>|a%^h0lcTvM5{Hc?I;k%R|jURL(>qo7& zpglBx6b8kQIVAcJq+#9<+YrEIyJu`Oh6F!S3z@%@^wF6JMk&0{J!V@t>d@tzddfhT zPlYD3{I)DiG=_PeXl%O0#;mP}&C!3=mQy32J9t`~svx0*x9pj%fl$5z?Y8h)m%UW@x+1~qq6{KKv5`gK6M@LQv!{9D}3?dL-jsB8_&UCUga|o0f0fY8P5D2BA;n09i zi=Ec|S+f(wcU2ELy9a0&zN3>wDF~Ywm0_FI5YY`BsPs#PD`#5*1yXMqd>@w_lB#Ub z%52z4-Q=Cc?Avge=R%O7_A5lzcw;v>-74uxNNUym?Y}sVNGOqk0zjx5aAy%B5er*~ z5x};WI!BE++lLvuZT0AFKPv_?NB~aALjHGkW}=+Sh7>#5hEGI60<2O+fdPpC_r%j@ z-(vy#_6cYsvM607JfG{t`PlnhEPT@_mm!+$M9@n_Bm^qHhAJfD8Pvb$Ym&i ze9s5ZoUq~VLZO@|oTmLW$+r-hbKDRQtdYVRgyQCJFoYrH__|Elccl=wG6C0=IbZF2 zUIkWgu?Zlei5h;-ZQ2;B!?0@@6o=9SDRTpPbdxM&lrflDX5}+9z{3KJY6VF~OI$Fm zWfebfk&|L>Lan{d*n>s_h8LvIy(|D25Nrda=y^pOppT$Fx$UF%ueTG-hn_j+NdHvz zAHehr5e`y-=5-ZgigN~hg4LjkSh65`V1ytXrc$Y`3X+ZT%}Y=g{5LSugZbz!pYrbW z`nP-$_<6i>pHNbx4-vbdjdrJLLk%;ASk=-yzr5=>!1Wa-(8O5=X!nvTx>ns z8VKvmQTRh57TE0W4(~s$Daf2HSkaBje4){ahC0h+K#;tw`xqVLWP9KuYwH~IfuLp- zw%0B5#z{9-V6*kW^9K!d6+;iX(e>gvhM+f#u|rRnE&FGNq%tG1d(69dQAhy_?9C;w zP>O|Khv$;w(PdFE(KO zw#oJMr*((a&suyY)9Zh>h=`SxMOxoQtl0MN1DW%u;AA#JSwx{}g$NWZBE^bDMFXVG zUIQL!x+enk?D)UGEY&m_bQCZU^YR>b0m3P;HuUZ}uX#%n7_*-)aj{z}7&P&apYY8mZ8<)BUja*HwA9lf$ zQK;)%=-X|aQ5}#L#$b+sDJ*2iOvr7cHq@GqjW)}cT5J! zTCz}2^^-{)+X=A2V!?QlHQA_aSe8nPyClRmx*alH(Oq}p4oRfd;y5VICb!Y8Fo^Lt zAtjOs^z8XhjE55b?f#-2vQ0>yA9#w45mBJ|5bDNId-yJ!A0Gz$XP8@joQhZB(@ySh zuds_&E7Z7Q`D)c|54X+sevf`&W44X9ep&i2uVt-!+$_f81+Qy^pV!~!#)$=lgkcz@ zP}4Gs&>~n9@Rfg{J*Q{y%rYV%nL1Tws9m}IFyW3U7=C~0{@*fa{*5;dj75lw!APPY z3aSFZBA}=WFpNMJL12io4y{3n7BB%Kk_rm|M3G=D77$f{ih#I*AW|SKB!aPwfB->? zDF~oQq9{O6gj8gL!H_{SUPe{2>&i#pXlMA!};pf06%rN z;g(;O|DNqj=9`5-dLmplr|b=0o7Gca(V6_184%K8h|vVUSBo2tI1dOF6C$8U9(x{) zjC?_G`F%QURml}m)FFs2s0RIiL)ec3IRXLGz*PklR%_x3kcRA>$R!Rwh!2a$%eMN{-7AWsswR!PZfZ?} z8yKljDuG0+#*P$Jh6}wXuE&Rvz;Fn#c!~3-{H-)VmrjeQt3lRn;>S_1jqrD7$V5OR zdfFr^w>prF11FceCY>)LBnXfDT+!}#)|k|xB1sk(ub$q!AmG8U5f!OX>)CCZ=}acH zQMM>)6FXQfq(ozEoownDx-7j_^-pdjB|3ezP^o^aAc8CMIpL+ zupyF0eEgb82m$ZQxOZxq^l@T65^#u5+#5ZcSPJxLpPHTXq?G=z=D8J-=6L`0B8BL$Ea5CDW2EFejt;4i-7;Q|0EHkhyxES5-5eKkh-T(N$LNYL%~ zQJMsbPbOX?O!ZbJz8RTIh#%(e4*75J(cavA8)_tIQqjgXll}cZ9q{)EX= zfOd0ES?(f06g&`IaVctZ1|?Qg9QNox7u+}BK#3$0EFlzvgouhjL>!?|7G&}qJY}Bd z9HZ#=N~*C@67-)PJNXUtj}Z9=NJ1+JEFiFe!U+hVXOV-&eMqRvM|;CW6g~o=O(`e> zunQQX(7P0zv#n#>V?2sTIS_(86pjoBzTFIRP#@L7p>&e1Xu!Hghj z>PMjjhW#xMJP)8k3|0^kP!*CyVZCLutxD8scDvU&4OrBhbm!=utK#cZ)`3X9B5=lglYO5Lkl925)oqrSVfR!Er;y* z=$WRnR0wRDzX}*LSCN0IHJ-D)Nuz>_|l;;C%LdWrzFexkS z{vkTpRq{?jFhKl2SNK@~0ULZgqF-b&qp&?&t*6ZP@VsNKOjy@dt9zb$@IwQWkw*F? zCHc0WIZV3q2_guD?BAaW+l{uEA#QNEzSyC+remaXJzKyc>|SH5cP7(oyDe4}kcm-K z=OhYCh!mo13vG3q_8j?FuiL8JpnRkR?AC76&-*NHk9vdwV1x*A9YB`mom?^dviDi@ z+_4YsTc~-VRJ45HLX?!Aj;s8Eg2ux1T1z? z4cIIK(dhE|@$Yc-o+LB!cD%xIQimxp*mutv5siH|Na z4t&t>f;K;xg7GE1ahz!8xbea+3pSjf%$_(fca6XSW&stFL|HC7G;x$n>Z#^Z!d(xX zK!t0cUaK`U>%)C!o?^ZkxM}VxpA8Va8NI!K566)y0Z~G()WPM` zcm{5=;HT>5wRAATpm31LJ+r4$jUaw^8f)(BV_tr5Ib(|)x$@(4pGQ*jm5Vy%K5myc z+Vk4N2Uex6!sc0CsvRD^8KyC|_e2AL@7!(CH4Io-KnH?yvp{c9 zfE5A(U<62(96E*=NdXcPFfgzZ8c@nWiiCh6V~j)s!V8xWv&b#dY&IjO&8IR%f*TEE zypl+6$9MPK`0ozFca@@5ehw?kuU|LRKCM&OdEPYzDV%iF?KSAWr6@-Dp7@UM_A`9v zpJwW-v=TmsR;Xw;fCi1PX)r4ni8eVIUEMb2mE*kv0Rw?ZhW%mEAet6~exn7ljzps) zh|T;ha^}#^2K7UP&JctEVEWHEe(P&T6s_Db0Ae6)H!ep5cP=+T5fhJIGn&%;;50fY zg_Dsxd^_9Sis)469TaH{f&s|cWa$#1FDSLm%3pVbM9X1Dy51x^(rL3SgQPXy!Wuv^ zqep1mYGcuXEyEKXiTK74BuEP~&?A)ix-J)zGY`%!3y2aJ+~aRUnb? zf#?D(4-Y=T-*a{-1cxrEo)5&v>Jc^w4*luR9wOzD7j;Qs^|_BuZ=4KP2mn|Pi!lNp z4Y*?J+#QgKAc%Y-i{wDCC6574ovohh=Z|La9+Y}^KEsW)>?_EndvAUf24k4-1C(u^ zH?J%<_Y8=Ogk6TzgQ0o!?9ee^C9UVPd6pIj&u&_gvKDcJ;5-1sbfKp{R~_kes1e7b z&%-lZUdMi~ldTly5?SWhNDe%&9;nA2dmckPR|=0Rfj%n61jS)fW5BwL1-ig2Sb4ur zHyLp#P6tMZ2mmX-UBc*8wMqyCaU$-FE}Bk>eEoU-XnCN)q&8LN!sNtjihCw^c25++ zJN+h1PiVBO<-vRJU5R znS}{p+{Isml7mce=+M3<@3+Ag5f3!t8b=7XaiqqDpyG|Eg|kx1WgWyqJ1Sa8j^uTQc4mA6gMrQJC3FNUfocy2Y0cg zJwzeDFaaa%M?MiDqv+_s)dXSRb#^1 z%+9`B*4xoNa?bWdZ47k`HGNbDPg6`(QWN3a#~oKMN=O%a`mGcP9{A~m=gdRsRcO;SsHG}R4w=V}z4Y_n)u(-=WC^i$D)Sa#%JPcg={! zP_zmPD!}nP?8Fg*Xx3I4h_+Tq3doTVYYHH;0>Owy7P5>{Ktcc_sfbb`T8LUp6yXd^ zVzE-$C^7|>OC%V=M2Ie+kXRL1s}WE(v&Wxcmu-vdz1WFu_H7PH*6VYn3_c<5@EWI( zJj?j>Wv&{_E3nfqI11d>ldnC?&ovG_v*AXTzH_6Jtq}m}r+gOLAZj>caN?Nls%Vtt zh@b}CWTeu)4Jb~8Yi*fEhU9QS9ApKKfNbw&7Io#;XO)#ez>YM?7$^lvCj<=0y^~_G zRRvKHL5PtRMk1=JDk~LZ1VmM0sHm$JA|i^2f~zACSrk!GRw^rLMT`(d5K$CGV+Ju) zRTM!;gAr9l5LHxFVlhz_A|fneBtaDsVzMBrDvJa`5n#x~7AT@C>Pkgo2#Sh`F^LpG zR78l1j0I2>7AQef1YjsAv0$Jn7%=i-$tTD>-G|P_v4uK~h%3UtWwxpkLmmaJZgkUz z4g`~UwmXF5TOL5WYknBK8tcUfXl_QZ(`8_y)loXxfJh0RiXM!T!_4d9kkc%`m= z#Z=-7T%$qKuYCCjZ%5!*Gls%!ENq66!Z8rp?_t%eX$BZ!gPlIWUul)FbR^Q^mt|jFAXe5j!ei zk~Y922&Hsb609Y~3e!zi-=^5$hW-0^chn^i7|>-hHyh~jpoBScTX%3bg&n}8gWO;s znk4xSz9{zabj=sdHm4a3tv+*u zA|>#Fft~-oJ~FFeP{Fb_p_QZDE30UcC0?uWnu|l&fKN{ADTvo@TSDBoilpFzRUxc70v@cvHWhnNA4km~~}#-wW3p zzP_G%(dX|0x_69HCJeU{iS5m>F9drMJJ&g$*3L%S3#8xBCcuIirseRK0uzCU5$@Tt z8rV$9azS7$StL-0P9THso5DiwA))BnFKl8k8~-5hW0+$;d!*nYO`! zu&j%3#Zdsx37i}yIJpn7)n}7z4BvKap$n1KGqx3wF+^41AEOrRRq8exG#OZU092qQ z5Kp4R(G|leo-iLC9RLD8+$g{<0lY3Wa(WEG z*Qd%*&CJgb;VJ5SKAFgNr=}0fs*K202Lp`iE_R0P0HiEv8oC@W#r6VOVKI(TGrErbI>q%l*zmGl)dcWm-p`?W&*nV?lKTK=Cn z1K)d*L~<#PUseM~6K@U0_N&ErcVCpeuYKRvzYZUBTR87=#rbS8mfqcf-Uk@sSo2uv z!@hASA?8sPuJ=K>B?%;uPjoi|?8xC($aAA+fp_I4(k0w?_N=EtIqhY=On7m0 zCDgDCnTca*q>5x|P`AfONi4{V9urCpYO>uE3I6cvopLM4zB$tSb@`p50zWJ{n~R{7q758Wb<2Y_pz<{;`R^`FvsCi8=}X_ zRA+oW0y~R$MJIvkZ%h}%L1`9Pu6Gb0zY=9t2e_kchV-y49oD5}-8y;sw2&b$=i6-d z?>6g*h5#=bkq#U+Y=-Cp$SH2i*4~20UUjh0N}9oxYYW#h3}8e;oKTzOl!Wwl&?gKD zjfTzj3|D$ws$PAHP-VQ-9q}YJj=gkZ0OKTAZW^ zkdgJIm#7pZR{#c09^lNDBmff=Y6~97J2+?o&-~4b6X^1u{c`H~x8=0lZ(cD3s1$uF z0Q!*jpwfq0IrogYYNe1MPJ>brk6yeSIx(ZqC&)~s8ORcEmoBfV9^FBgK;iFjBG?!6i!G?MbWC@nJ}bKU_gkZBA`X(C5`+X zuy|g>O}9(HRS2BMt;rN!b`_c{TDHf~(Hv7ijslGw+_=~FHf3_M*+>Vi0PTu|($ZYq zxVTgV50ZE(q$@1$V3V-Md8QzC(R@t$zXRG+K1!Y5s$iq!bQ_PZw{6-UJ!n!&j}>BZ z(%a?L@;1E$GFMZRfelNE!%Uofx)nG=Tkqqhj`D59r8PGEJNZg>RlyY;9XrRoU*vNc zoW_9+3BWlUZIdPsQ@j}0=mnD~orgkI8lQ+*aljUoi2%6EkdQV7i^2f7J}ZUOF)lV~ z2GB%=2sSBIAi($#Y68IZcINu?L~o6gWRqcvpeBkMfC}2^?matn*4et`=WpdCJ@e?rxon3`0W|c?5@O7hWW+eIj0di<1h!p6floiBFrmlzw` zw#ASqeJTV*+0<~l2v~>KL!kK`oghY2ZXvPqaHWpkt0%v37jhG59AeLT8_kz+y=uBZH7pL?Mt)csj-cQcq|P3;ROFIAje$SxkluX`F>S z5yrME77L@7L&4Wj!Fb&Om4W}$ns3Jg&+*=gbek?km!J%I%86puF**fj0EHE`zS(&ISIZ#C$A7Uhlx)O3R zB4tDoLBnB2`x;<8uKSvq6xs|%@ZJ?BrOtfwT51;dB0=g&*-3y81+c9ugJYUsi>u*7 z6-Iz#8bb2noc|JfUetXy0<^fJdv~JxA_B$#3RCZ2-!9pFVNdF1<_Dbb^YqMsrg?~2 zyror9BLwj_!xjka%|3Ly_X$4FS#r}Ei}Ec+QdLnVl-<#sc>v=I4PF2 zRy7*@EOBC-Txq6AXQ&GgHe;-SjN$L>0eDhfH0I}k%tncZnX0KPp@;s-Anc#1>= zz@|J>i9tX$PLsI=j+izRHJQ_54{_A5^m0Tys1y&u{GogOK3@aCY!Tr}<{Hf5@jhP8 zM9dl@bmh1@VUIEW)4M&e?T0|+jESbzR&k(nymjfOKP=Ytau7t`82~Oo5eITf#3G~q zaTOky%t;6YAkJy~asaJA!KY`1^nmaIeloC%kdsHSia3$^{6HjCpgXQ~)wkN%ys?Bp znNO;9A37Oe^lN^AXR@Bq^)iJFG(4eClpsPvMVuF_N32eWoM3#ces4@OUi&_4iXbiM8PB#7}Y4?xkb!)Og~R{&H87RL@PkI;(Au=)YP-U)U%`Wi+IpD zp<|GPT1-+6X}6;3jiy@x;9{XN(de5))aOqJ&UeR7pBIsJ{Pc&(@vFcHiVPsRWvjcR11;GWgfQqUV>kZ*NkF#0T}W}mfdMwnaNIzU zbw;BicsW}A`>WaG{CI4`jPT~u6U2BrEhK;h-+~|`0$)H#HM0@ba=Ml&)GX0HBOn~s ziQ8?r@&E^S@aN1_2?0Ulf+0+if`kQ82T(vo;GtxaKR2pC)IcKHc&y21*tMMRw}Rk6 zJ~*HZ0br2?Nf3ha-dy_ZNPaN}IrH;UZpNk~ypI$gDHM(L$|_iSupBBQTz{PU@xEnS z(>c}IjF6KLtE1W1(cZ-3A>GHyN=QO;NXSwdCh*D5$F=w$PS^t-30v-k`3T}C`@I?T z7qAqK8=VwF`T}o`yr|!tRx)CX)ROJDIbEkM>?tJs!0MRr@+VsU|@!sSgC12lNe+_1PLJE zvfLRMq>O^x)Q}I2=aNl%`dkK)=TUxSMn$`%8=nyo??eo~V$VUnxtDi}U}5>53A%4uj2FnAHzHTnsDL}(7+D_I_+nD zYc$y9H}lsgOi)L5qrbe-O1 z#{dlCr(^)+fEggUV#thCHz2jRm~NxxgQs0L#StJ#BOsra!che$dO~-?;FAx?hHn%W zjTAN*XUC54EX|FMzKkGh0|~yy?3!k`5fNvLw9mej4B^9xzD_qPH&z>)nT6D54hDfy z+PXAtqim)|5e?`pq)bJ1XfK@)+2y>+!~{2IPnLzb6#LmZ1(mrhYq;Bydp1;F$_i9i zGN1?*h>2p*i;zcdFctxMaH7z>M6tbY7rii%B%cPwd%X~JaG4-q*WIiOv$BEQWm9Ea zUT_gn*UxbeeEBJ(a3W#J$PPGMPxO!cl2QBS?_amqzoeoL`?LC2 z1YDp%Dk49R%UPtZC5A}>mVpj1bTYtAL|0P-+Fe6Ksp{q|2a~wM#mt7PWS6m!XO!wR z(-|m=V;wjt1`Gokx@^d)g$bkytMB4o4g-v}yPdyv>YnFX}D zjjGy+Ok-v%1=J;}MQ;Vffw7QuzyS1J*3dp}jf7*kJDjb74ko0wRM?4b3H77sfwkGK zd$V1f&{LSnjd3>I+D0=$GA1^GwDV)ytcxeY2v8v;3GH>?GfNx$#sA^v$&eH^LbzZo zalvVA$;tsktU_#{Y6;`-su?IbBX%-Fim>^a(kPF**n$Yah>!(i0!R>^^05hL`BGQ{ zf5Y5$Ha4=(hv+!?&RkvdgK8q~>#KfS!!W>1kQR1AS~d=d!(9#9$ClZ)l^Yjb+6f^*ESJP}hIY|3jq^RtFoXME1j!|(jN z=Iq4Zqw-&OqmP`(gd~3;qJl^<7&G7Xk{eL?wT?w^-lh&VQc!7em=E7InIc7iwDbXf zoqVPfn8|WDmnjXPd5_c~;J!pCn;>V9@)KaFw1Xh*U8OXlnTQblJ6^;I3r8;C1c%X? zg@AP`?+@a#{ZI}mvkZP74j9}wy|920Ne;`WJVW7yOV&B<3kop>tqKj0R3LX!ttfs? zy!-sWEm*TLAd{V>+35Q$+>QCCBmgM^q~HMU(ALp0p+2!+*?_JhPGrFL$6b0N+xeXS zegovbKPVgyVe?<3=Eq(hXXfhK-5;4WGWPD@qataaYh+$+aNK%^k=_lIASU==B0_)E z*HgyGl`Ol--@?MbaEGUTgpG&;gE{1%9i0FP zuo@#H3Zu#5JNB9d+XdJxo=G&akpx_6a3VW>xKtsdS||XD#0W?L8zt?^`eC^^7BaGn zm8;vu@-~)d733U|7%T-vVj!dxkrD`qh~=bMp!n%tX>j%)I~y)iZ|R=mo2<4vlrhg& zfI^|DFPJezqGSpJaw^%FU_)9QM`PAj3-o7l)o*J|uzF-%_+rmWnP3MhQ-X|Xr2yvR zu=@de0m>7f)?li$=s<(R z7@=@-l!+u&)pa4H!xhIvECIu8QOGq--Yt61#Mlp+k=&vNli)+X_u1SyQtL$=J8!)f zQboH5NhJ9z=nc1i$4{0xJi$oORl0F+OdQ`4s^k=@msBXLTL=b7nss^)UD1mqaH4{oQY|HshB&)uyd2<6G3lhF1cwoQZUV2cz0JBnXG)$OeT#%h9JPrR!pLWTN$?p|+}d>61}Npt2FU%s^C_o5Kc3 z27oN6gcsVCL-BL4#*lR8cw3E^I#bGR%Bn@)+wraiZYV)f;9G&F;nzwCDiwKHJvt2s zQ%pc46TK)$tLeo;&g?vC^~Sa?G60E@peryS#FX|Jz!6^I1VbG{kr3H%Gz2+wk`;?B zH3$j{5a@CUzFWF%2GSp`U^MGY#{$d+NDRPjqyZ4vrbo+28XaOP5M^I?&_G;i5k;16 zSW8d*ICxHnR!Vc{y6)k1iy?fKS|bFGPM~5;s<#e1K(nDsyam8;a)P4_8#d{%;rHeq zA+HW+JG*ujWk63Hf+9#LBt-zoH8e1Hth>54w|5weq!b4=kmy;Z6p|I(o=_AK;Skoz#Nr! z+gh8Ji#9jHp|!DCjAIzhjEvh0RIoN&7`tUj0kc(tLxU7AV-{~}Xi8mNlI&@785Ei# z+eMP1g#=L{Q6M-JYG3)?9+?5XV_00(vWR;O37J+6vXZZ2(W){VQCI+JVP*~(`~Aa1 zRs{?eL|}5>h>8z@^Wau7%wJ4}O#urkfvx#6f>OFFCx!RY1y*H);4Y!?cBmJ7 z4R~IrYZYRIC2L)2CiggO?!XR$^_phkhJys%*?DJ@Zigs-y$m1EbLq9sQRL#*;eB&7 zxmbn6gSy5^h0hkv11(%tI9njt8j9I*KsNrZsk+z(V7IorAd&&k@iYO^$UOf4UskqD z6=L!!#g(`};i71~)WjlcBw$K?733lm$z{6wp|!CAKcYWBy;*0ikcNq4lS`GEtFHye zqjm#rUjc2xT5qx1#TyNDdVY6B5^Uo(Z5nl5ZB1-^4vGg$dNyaXf2Yg4;NyI2=Angrk)an9X}7c6=rhHh}!C2P(m<@5n!Pt z1(1sX5kR8}ETRb(MkKK%L@W{jprk|;SVdz1IG`1f>Yrjk|YAA+h_wB`i`b z3RDCjtx(Vw0>U;zC5(b`WiYZ7A_Ax)Mj%)N0SM8H0U0VvvV|3?0+fU)L|RA+!Z3mm zEs&s4qym8vh>`#yB!f#J#=xu~q>BJy1q47@0bmON5LqAsiXe<6A^^xTBqGEhgo;Q- zAP_j4(NJTbOnd8(ec3Wa#~E^Q#9?Et1QG^OXkjcj+=2ul#B0@KMf2ixoaVekNI-*v zAg4;AjgVAmKvE#6#}48snv6R#J9um=s;)N+aF`nigq#O3q97zSCpjk`S2JJEn}NvF zlL5$B7v_^ERKn(Dh+I9IqUcb2MFUs}#xzL=>>?jxg!k?V=CKHE&p!4~>jz%{k>=^Y zFPRY6VZ*nM@Grq+DSOZip(dG$LcoAt0di%Q7obJaFdQIosVBA^Lxflx!$GVc<2 zkdO)kFhc-eEeVn@c`glt*S4E+ zmYZuO5y;N1&r4DTrnV4W(Kk$MvaOhHsckQHEdf^(c3Vx@$jGEbv>JS_g$=80aDYWy zC98to>ZuAS5loH~iQRC`)`MAS1|p%l1_OL`wvm%&RCB}vonjr+>%h?x>KLLYG6xqe zw$3-W6E#VM0wQk9UiHjrM#~QND!y0%?|=;2R|p$fXvJb2EDT6V0vYnlBYxKtMFb{u z6G&$a91Q&DI&{&8&*Ly!nY^&#DJqLVlJYX=;ZNvWlN`%Ye|V&ZY572~giNC`=O$89$n5mGZ=@G$$Gjfn6O#SooehIHJS$hC|W;_6h?5_R?uQB~-l~ zkuB0ypj`K3;pWstKZIEkU@Q?M7=p5}dk1O!9PytgwE8paVYctStjEVq!^v>8G~%%& z9&pbDoVljp%PI8+rPlMj6InXto`&4_1#@P9UU2^~VQu{vN*r^3vNyl7AB=`=2+s z^`WmM=I|SzJt2rcOgJ@!DB=_Wef8IM_9H-kOX>poS*}4W7zPeoO7T?uQo24`PqS zoCH2$IUr0>eG&|7_)|UJZQx#cfCFGwpH}#p)vK{Sw;S|v^m~-*4WjD+PLPR15tOu1 z5QNur@9+MDjXZpBS)d){BtZBG#t}T~{Qr&$9R|-P?Jz@mvz8TJ3b^v53VE$=c(*M{ z#iX97A--LP86eDK_VUf2f!#NLhGgQCc1QuTLb=e^P3cH1n39S)X?<_SDz3{)HjWhY zz+^_#eQh;v?~dqcof(W8h3({&FdL%+|BSSI^Fk@8G&bj^0xLZpnz>Y-KLP3T4m_^> z4MTHc0l0ugWT{?*R3A+I;Y$!80Uq}@O#$zl(8JKfv}(X2$PZB15{ItcJIP^;S$PIL z0Yeq@Yy+AAA*R=V!RZ#U;An7UK^?PYsI(9*1PqjdltX+ZIb~Gm0ELvb2%+%Ak{it9 z@cK5Ln&t5)3o`a0ikWDjKokX7f>PD3eri*u#lvdbCuQ0A9YjE3LU3MXBbX9ZrJn9g z6hMdtAWw@n0|oSZL`>pH6G-u4U;;>|M!C3cZE@3QF6!eP7v9w!O|2r@^JfFl=iics zq8m2}>ONy(>-Kfq-S44Kl6Hgxza2&tVp9WDY|c8X%Bk#_lH(NqQ9Lgb(8H0?TZw zFz>zW0`VL$FpwsQ72eu->3W=DbOEIFZAVreuax!9X8)4>ehEQEc>NjkpEH*!=zw#z~lkpx?rgR89h8ISphEDCzB}ha&8PTAlXuo0Vf{r@5>AYS4ZEV zo4&3mfj1CJ&V(eccwPy-fJhDBz^rUiV-Ugxg9^b8&iP%#h&e#C&J-x?#@F@eSLi^n zV=ZnrHn7&xObg)vkOVIjK=fd!c;JW!sCejx(TcI%DI^b>k`YJ{6;=T!#UznXGJ?Mp z1Rp3Faqvz4Iv>g(Fd@2;dKpqjv&lIK&0fws;?+S^N`cE1Pf*+MNwo>V5%Vq#C2s54)Ktd2yGG-nqguUsRuBnj;Wx+*eoj~ zEtJ$jwkRl(LD2>YLq?F=lMR!qY(T)W1V%s#BpphY*-3EkU}F**O%2MdScsxE3am#N zL5U%}NfF7QpjfNjJrEG*)4T5Oa+%JkqQz5hkaie|{W{q+I#%0IZRI@mrHo{O-LBE zI+qxkW8-_M4M{o)TUrB=oc>>Q+J?h!N@q*W>36z68-TC%$pn!mrbIaq58C;kv#L9^ zW9N-8!9K_r5YSGXHaOv-kVb~7P0txY0H*E89qrYu0bR*)R z3?ifXKw5xiK(toTR3RA%z!*RZ($)f;Cs=2J;`s2qS#VlZC$B%VV6V_%NQeY@2rD@N zWrKjgY<0k7li45yO5is2O~_wxpQPEd@Jc2Cbz74^ZnJhHgy9a|)TV|U03;MPmMj|Z zK)#2p&S9J`90U)9K#-VNv!mNy_F{3LpICq%Q{ZDE;R4qoELs>RuB)H4^LSV%NzS0C z+r8p#MlcMFiV`To09IX9WKk|in8+Uw(`-96Q1(lgomxFxe4KB~5a}Sui=Lwe_X!c9 zJ5>p<_hqu)5G^e?#3@E^*F?^)KqeP5?%($LD11TmPAg~~-&~9&5J09OIFBjo_4U30 zSR)4J3V{RB*ZmovciH``Bz-|J2w;$q82gkf zL>L=r_MjdER{CvcvcW0s!Z-=2b)&X1RZFbmdY+SZ}84;t3*1Bp?zf zLJ?rGWJF>NVjzs;!Y0|G0E{renhZ4<7!}%(@Y_(|ZxDt2@Z$Z0}La&dVc#+MM_fS27iZ$1Q=g4|m_NnniuDuZ9K) z14M3cL^WrO;^2$YwfEfRFc1NPM=kaOVP)O5NdO<;B7h`sC6Iy&stRjF4~P@)BMkws zSmywL+21j%rzKEca`XoIhY=3EFT&2DZoBb5a}#MGj;3mA#%iV{ei{`Tc_$Q$6j z_MKZeO*Ax5OYUjS83H+am&>MWg%gwodkAo`u;!fw7tbqb5`?v0)|gwSE!ZL_l~7L` z$Lwx1={A&Zs$m7|g@Y1|SsG=2b(I{tr?Y1hAot?oM9C3C;3lCJE!+6kIcKc~>vP`v zROiT&vV{f^^Mdhj+2vUWe799&$)^f7G(v=$nO@U&wWe zGNH=oJBcFln(wemp?a^cq05$hbnX69w1S$!LntY}{)vM;E-wo6!bu=t0uZ&Y%irb^ zzMA{SqU%HYG`^QpTVNfKD#!y$&G4W@uJM+qQy)nSPu4te1kjuGVB_P_gk0h1K{y}< zB&G+o)~>4AQbyTr1%i@5F$~0(-rIt~K*lj70C2T1YDoa>HalBFUJW@Rh;*swVDiY# zbI}8h8uGwNh)AbmSxSmudE2V0UJO-opeS_#TT9Kr->)8eMi4Pkfv{{mV9D(Z@oPXD z)KhfoZ44?yRYe+ru?^Q#sEo+pjXLbnVc!RIYjqrDsWwMJfwWpMxEv35ye+?@VKCKE z$7Q~MXC@-`P7 zBOol0Kq*Bm9Kcy$aA_k<%$F4{Lfmt#nl^brri9;F22H zHWF}1282CR@BA+|#xguMfZZ@@bcaBN5eJ?A5d~`)5gHJ9YguV5;A+nGY<*Te+hLjL zhOM=z6$?jYG|=tTFW}DhL&XF$A<~5thmxqybj#_wb-~$?U=|}Ndf!kM>2J;PVpfVN z?pk0J4agr*nWL9ZnLn@<-m+kDmK8~cE0o(?=rXl|wXDM%G3Mb;~W((Yd z*9}7V=HjP@=B-ck;ah0tAN3!vWvW{1mQn|K^F7Zt&qryN2ReLA>*wgm9Zgo1k>dGd zYac;!7@=UQ3T?2q9S)A;mh}8%nQ87F-0!saLLgY{PdmE!gaeX4XWpvixz?RJW2nma z5yfrC`y5wyK>=5-Ssnb}o$eS>K?MOgEKqk9(CVVJo#k!nr5AlT0QS8^bW<;l*Hu8E z(3GV3LP_L~Dccza$OU;t7TSR51PpR1;TCUECpQgkzNtH_#kU;u;j_c!YmX$T)ClIKJdOP~JyIgsSUU zqB<>1IC!qI+m2<;!f~m*i8h=7sR2bWBHwOY-fJ64+)&D*fu?f4RN#e7Eb>q{B&61M z8m|f3d!d^=Ng;Y7>pNVv^v?M3u<*EC?FHzT4zq}A?~64JH&X^CY^+riO=K*@iHfzT zWl&jLWeU$ip5T{EOjS$K4;WXO5pPdUra@BeG|-`{W@N<86^f!(twPM*T&WNi>Y+iV zn3HQy5*VI~hr>?M&k`Wy)@~#+z*tp{DN$)b#G&hI7!(_F4LKXiX_Alw&_R~vDr*}k zb31Bxs&PkU19+B!xUP#K&qVNgi*JMko1|-QXS}2S=ofq>w=XJjGg37cLn7Gx`U@6AjaI zS5TSEgWhTMWzNICGM!28Z~RwQ@Z*p6Dz`W5Qu{K4YB&@di~~oKv(&=JD~FDv#Z!04 zWLD`qp{#-$K{sitmwQEnGJsWS92L4x8KD9wM5uJ`eVcEJp0xhN zxSjBQxOT@H>5h7xu&NC zSXQx%FD{8MJ*lsj?B$g~AgaEd#A6TLX|ZUy&A-An#-mz%@r@z#LU2s7030i0R#O>c zZ3sJS`6>Gh%~o$SG!LSPth4WaU(mZQ_nS8P@tYBE;J8~`sNZx;+cdX5pH^NUnRJn5 z*%nPBp=(hW(Wzy4%tuWCZ6<@B-JHh5eKog3VASQ%Bv4Sre zD8)F#dY6W+lF%KHY}=cgWl)}Zb^hS_xIyDTP#K0{D2~1V@?9%xuf(FXnENiZIzQ(A6nf~6vOPfU6 zr~&8GKk%v52mWk(96yJN*I>&N%joJZChr%jZnU2$9H<%^TA>NCHjV3(t39m*ER=Ev zn}}ojMExDBQVaejc9=A^cMy*EE1)S`EaXAjjxiH=5;wZ)dgraki&%gkBIxMib9Zn$@RQ z`3`JMP{y6oOCbM=gGw)=y+@)R&I&9P7?EUBDkv;JGGLHVVfm0WqXr}g8#>g5f6=zH!-Wma$(capdmN=Jbq5YwS0&C zL8qrK>^M_I;)Vvulimhgz|R@RQx2A|ATMn)#>~( z3VDbi5M?kI@~VhwMIRx&z00JC>D^x*1G}b$K40>>SoW`VPpPNsey2X4YuG*xkGpR6 zME!@4?mZvrPgqeUpdj)S+xOtVzW$*J-}t&HBvk35i3t#>A5sP4i@SHTm%*k>?h;7} zNrG7NKrxIyo-P|Nw=%3k@_yW1qj1nx1*Nx~sVVy?X#IiV>}l*~i7mJ5xz1;|h1Twl zy}XX;!l@Y;vJr_Gs7R4uvN3}MSp`^;MSz1DAjF657CulOp^OR4VojAv2o88h+#$2G zrqh?9*>7LX!45Q>=o&>$vy8Lywo=iwX~x#-;R1no%U`vPuj2RpmjEx@C__>D`WPLX z>y~ZCtz31*AaCU(%a)!g&R%$i;+ege&AsJu*z`mA9$mb;dbWXGKs`u8F=GK30;njl zVnJF{xq`1!a)A?79ZeqkFt8w50Bj>eX){J%;C`#S-SvkHl>=G8q=r|lHbk@U@7m|P zK-tD7EzI-fn}LCZ0g-l%1GWlldu27eOlg%O0eg{*3L@Uj@di~RJ=k|hD}iRyW2iuH z;~A)(s|0`oq7o5>V`g)_NOX!OLLobXfNs>;IwM;Egq?s`+i-EXH9&6xPz!@9$+V?$ zfd@rlUO<6C>v^Vi>xLb6JC9WNf%mvOjzIYO^LHBP^fqo?9LvyhmVSRAP=1LjRTUJ1 ztKjxMpn7-YVs@&uu!j5a&jSeX$o-Z_?6I`4dw@dmQ$hlZ zAhBd1i~&Y-XD|Q_z)=J7y8XHfz6iP;wEvL&G_wY2of@I19T^~V*pA9{OLP3J^v=Ap z!z_bQT&M_g{Mla!hAI_iSZV&MU=Se)npWApY<)4~>E9NKFsHO$ z*+jSyh)4V9*r8ZhpBQe7BTj-gDS10t(}C~ z3X{oQ=&&(SnOG19fpnD~cQKJ$`Aa_A3mJ$+XWj-FGmF?DmU@>H7ret_UWP3KQ9xFe zVkY)BG|L3Uff<163fhG}Y=I`7VpIlP>*9ix06TCxh89poC=JFs>7Sc=exyVQfl44i z5Cp>5<$G&btJ}=?xhHJnfLKpmhyWl9t=Iu&2QMyi{O5qfycADEF{!c009?voK7t}0 z>1H+(0qff)?ADzi&Fv79BcLe&pi%-L0;UB=WJuIkU4G?t#^e*FrclGG6kk^Ue-LZY z>^Pj*LxdGVA|Ajw00%I{MV1$&9NP;K9f1y<2ysyc{=w>lp;U+h0uX(V9>29yfQm4Z zuu-~d4Q5_Y>M2 z!{Q>I-#O3{Hu+Y*t;f zISTeEdQ?CV?FY3Y;aq&Dyf5fGFYYLN2TG&6-}uEr$#*e1;wLGd;+_vR82bTpy?)~( z`xVj~;!W8$-7YYkukM=J>V37s#Ra74DgSC~Hl72?T)lWITbSmVRWOoNH57CjjJSMh zYgKOe_;!{8@_Rp5N%9@eumvCZ`{od-1{GjJq1psrzschg5F|vAB6ruf50yI5>qLrp zaUG7rURgW9XT_h00Pm37sjrpznrTxwv)Xj?ScqF4H+ zQ{`+Ml%j&8vZb7I1QK|_Jd-`Wu)0e&!YVLj44~2#qB!SxqF(wbjdOy&>@$11zz!8* z3L&UcL@W_9*k0@e5Ip#@*6>Hms?Ond@_g4_1iN#`Wz&k}Iod&z3H*4#SW;FC#sD?I zSb{{z@if=#1x51*-(4(bq$Z>l4KsEuIML#j1HjlkZI%U+1u`lsU}E=V`wzb9D@0$> z?Z7_70c7ZXyWu}*|F$JRtK_b4xKu~|wNV?1b9@h%)3p@$^&Cm%Jo$+9>dc>fvD-oR z<^~|AU3lN=F;1TcoXk2riThK?X@jSWc#!>t8!zQK-nY@LFVq`7Gl-IER36uEazaTY z^>-as$8HPn#>HXNI>P-$PW1QAp*i%~qrSd;PO#wEu*Nb?Z5!~W@)$H#<$rDpS+tb+ zC81_XA-J6uPWR!a;}yXZBIj1=e%}(6p9MD4p_o9Bqd>&oa~;c^2tbe|OPDXac5i^1 z%;a^Mt@npdNsplOe^*PPB4kQ~{^!*iisK{m#kT?}ZR%5ofJUC3y~oe%8V&K|Ftm5TP#V~0h|B!Iw# zM6XHcPqS1IdK?d&d1QH!&ylAr=i8!KG9{eTZw`OsvdNN`Jr%&hwqxsKaw`j29l`!R8m#;bY zz5^@4wBc65Sp$>gYR#-Db43vd0ssJT{KX$6``C31zTMz`B<6rUxB(QHS=iv&z#bTI zd`Qt{?;umz5yxK~(9Z^mfR3eFB1FXEx}|E+qK@p<^vr8cys_08av!p~tUW-X0G}UU zwd4`;Vx*IAuhkP`f8vmCO4HqGH+(mHWqip0uZ{ftzgzeJf2YCI`!vViMh%gI2-0bp zYm*!S_~_FO8me6tjMQ~mkR*gd2x{A5O(gODhwlFtw>4lE0t|`bcUgddGw}U^^qjqW zYXlBmR!cNY>yRS@0tcX-uoobBG@<31VtdXd=W=c6~<^AIs8E&#?d=iBdNw!x~NrkXsQ2x{Ze*Yi_Y?&jC^RtN{2$4KPabESYFPZv-emqdij*r)-;n6P>uUp7=(R~7h6W6H^?Wwj2$y~Dv$spg9;CM<>m~d(`;|I*NDG4 z*MY(kPuLf~vhpW_B+96X?8LMol02(?Zdwu{<_PrrTCM>&Bk-9BW%_3}qog&R`zhtC zs9e}%sIVKWqW7H<1Ae;Voafz*ZzeVzpcIBBC?5>{gMo6~3A7aPz{f!eQo|xS~dmhgH zfx4^7dA|()Mse|BnleB!paDdYL_w2g%X7s%u{)Dgz(nkUo`Na)c=PhZ;~~`m^wmT4 z4R!d=-?>F`yTU2Qle!>1S;|eYMe2z8eHwa0ru0Zj?`67oywn&7@F^lNE$>k%1d^DA z17VDav7$rMS1%~{?A){1A-?%J`FJ`nWqWqj>0Vf11>tg`3`T5HVk2u#l5JonOs2jF@1>n z=x_``hLsqiqooJO@?-R_Wwi78_TwI&)BD#SK=0CTpmW{hzw2>1 z!2?1o2o(aNp;b^8 zL!zh%m|${gs1naUA(fZMvvG5qSx|n00>mY??)Sf+W2-vJ?%VD?rl5H_56~8Yy(obm z3kD(y4+6+gCJ&N!B+XQW0T1pGDr)x(0|s$P7;K(RO|(Gz0}nQ6jTf>|*i_913==2= zPm5&{_G3`}NdGwQ=}8a1z9MQ#NbUh~)sGF>$NCKe@be zCZVBxzArzU%jSz1{IXTRNm(I1edKy5+FQnQ#CdJ ztIxk_5D6m6gXry0P(DFuz+jr}GsHMn8NSB*kA#6hQ3yVASyNYf)zWw-JN(90X zDD<~CBB1%#X7~sD&e5jC%R$`PC?E&g#eoPy3=(FFgW#_3w~{IPUGQGVnGS8*HC{<` z03C>u5J1p?f!u%q?=C(4d!^-_ym;CzVEA0D2F5#zJm z===QieEk~o^;XWf}*l}9%Lu!H)A|dmm`H#+-fls~NuTm8iJ`XROM^AUt z-|W%QK|q8<1^^)@_5m^vN&s*}wmg$`H-jo<)1_Kt$1HKnt5=_=aDs;UT;44D_fEj} zLNJjeNJSz-F%(6SNGlj3MUg~ez)?k#FBv|^!QD1a0<254$ z?TUBJC>cyu;CJ5bL*4fST!w96putD$ z4m4!aBL(|hK1|Uz1VIj^*zbv^qY*4AN@>J%sbs?f)TwWUDm6Rks4&!La;%k9W(yl@ z;%_%k0Qj?R#hUd-;m*z7e3Q}0X>><_O;H|rrGHq9x2`U?*yi)sT&Wy=9h_?DwKOC-BI5(Q^}`n?&{H&4%`P62oM25tbhf5c5RM0J+kk!Lp09>F#v;F z5(U;Cg2(e>Ss*9Ou4y22P=-QLv!7<(?L3+MOeG2m?i<&IyB;7?nRQ0zXqROCc%722 zt90^PXBslqkezG_19Q0PY5)^9j$gt?-1?~Fodx+DpPQEP2=I!`Et#@v;>>f`rwrG- zb0l__fkDuN&KGb9fe8f=T~qdFZpvzlGqBLwM?5=$8TenJ*k-FGJp=+sHVw4w(}J%i z#bhhmYvfK@hhHm}&j!w*H^nve()R=cL&wobifQ9}JU$Lziu*bH`S0^_`g**G{8NZk zP&CggBC0&09;nBYYhd8=f@C98#&_m+isjL_j~)1C6lR}%v(v9r+n-uZn~Bpkd!382 zM!B0^d)zM0Hgic08z>+Vs3AzuC5PE%LVKRXZ8Mn($(CqUD0Nj>C2(Neu#CMB z+OU{dYtMJB0b;V;H7c?ks%?THK@dpgRzoEk5(Shp3UT#ww7#otM?31-FYVh{@T&%0 zVPJIxSRrLWB9Q?|fu(W1<;n9Xw&MM>7v=*@%hm!82}C;~QR`J>h8xTJ+s*nX5i@!R zUORQNPY#NJupptri58+2l>iXR-TspzpjW@QMez37zFv{b6IOjab*%xx0ssT0tDBlg zx%KrkMOh)ko-s(0TytS(UhZ7=>SH5hx_DKZer;CWS3+dyiXo?{3nSM<1#^Y1jKZzi zwyhc$Y?-xbmo*u!lw5!tfI@YGiNQoNStR^1fLRqGA=?(p$HPU_1qlKS7sd&I`}~s- zU$goEEDWe6NZ5E`>*3t)t~mARKaczs%h&lohPsD9*8e9* zS62y#kI2szx#i_;{p$|hq&KTWo&}AHvM$)d^eH4ZLubp6kNgAAp4szhX5DB`Id`M0 zWxpZ+K%t1BhcbNnusnmGmi*=`&%5xVQ#j z-t01C2mn(`cG-*KgB1k}fF(rS#a3oDV`{OL`DRd4i3#2NPse}F{6!HyAPeQ`pePXtgo^=Wg9J!{0f36KD8v9dEPDtQbh)|uGWz#fw=O+>`9K%9oPit} zoLH(4Ktci{|KUWb@v@i_1c}Xouh>_e=$>w2>K>7(b&sHk1oXD^V(*hYqn_?L9(_Ev zG?Q>vjF60gi3M$hsG%orsi``2<&SV((gbGAb*iAweJLH)Zdp6$E&%~$l1M{{t*UNN zo?D$B964NJlSdv3fj6DxX!0+x<^qwx?5C z1P3Ze?N~T=QHy)eBO4cyl7l?r3Su5357wQw4WjF98aeGHkz+hQj#5a-8CjUuIc)$mSoQ7D={Q~_qXRE6%io=x`8@dwcDQpCD=q1D zyvuJJV5Zit+fkHW{FbBL}x5y*}8;ajGUSm4swOehDpvc3et*&n>?>KamsHjlw4$xsQOE#h*GR=jfIJs~}8XE|0awu6e&ha!+iq2vZ1}QO! zY^a!hRK$$Zh$4#x&n~SIvuk+HgbR5v@^Ltkf)L*Wd{vCm8rCXG)D)Tuf_76WV%t~< zjb-C1u||O@1r82HykQU=k|-MABI|}tqi7`d4B2+Zub%44E{GQkT5$Lq0Bc;rAPY{S z7I__QI-oWgzKkrCFB&pMDc zd~99>K^k;0FuU{PwgOThe9-^~*H#>v3#cvD!=vynUy+-f(B*_wiorZNR5)5?a9V%c&!R3&}9&$eZ&gN$+OQ&YLEg&zDRl$Y3_Bsv0DPl`yTS ztKTy4Lz##fU1-69-30_-EMlUE5z4t+yd3sRbbkk-8;Emnq6%a?rm z?Rc(+N;q=U8V4BA4ClHbQ$#XWh=CYQ%?e1350MR&WUIHn%Z#bycmb31e&1cM1yhhS z32Nm_(cH-;U$gwIkf@;(AWS#oeUN(O4MMNhjC*a#)8s>mFi?zJBr_lg9U2aJ_{Px5 ziBKeTx_AeUU@H+jZe07^{SKk?Q471q&e%J0M!pKi{!Sb4nNdYim^}uLK9>;{|V!H z!`AZnZ<=!fz*Q7?(BvMVQX|bBDW>U7G52oj!2`N$m;!YUT18cE&a&p1AbM+upN0tx z>mUo4usr*zw#>j=Ylz2b>ZlkDsI^<23=sFLJ|=2Pb5s3N!kJ9 ziX6JFV^0-oc#EE+HO+ek6$U|wgo_ke2!vD+kYfZ^M3E5;ZCcgeldfOIWU4JD3v=$S znDgx(ICH=Ye6KcGv>60I_Mj>U)Z@}-YDHQc&pQ6T=KJMJAwux6-6eRl%rCe%p^ABo)<{~PhAa&q?^KH zHEc5rBCO1^eAhNXnoQgKRwt^bmGx)E%_}?38S#d3NTsfDB=Tk(v7GQPJoyIL#iz6 z`&_OXLIIPOEj$?ecf1ke-?4+AJo`A&c8av+l;?{!?AOrFj(j8n?n{FRc&$OjEh389 zuY58iT!#x(oHKG*IbDVYMwDH4>N#yND-y7Jd)m3vE^syQtqC=RwXC%^e={{=i89G2 z>c`s?aEVY=&DTL8WpTNJL_hN+s(JPuKG+2yu5*aK#(EHpT0jS z4bZ#WYQ&dR7Q{&kP@=F(4mYe)k~re-VV8GXV$rUens-pGDAv#8^Rvi2l83sVi9dCL zqmv^NELHW;n(d%hxN#9SK_8%CLIsdv1}_{qSV07!SqQ=+0Fnx~iU3qVNflB>gj6F0 z2t`F0#R5cCPtZ~dl>uU~6}fs53qTSO1W5oOMFJvjhuZvMuU^W*y#;|l`z40o6ujt( zQy6R?vG|Ernl4bSr}K0vYOQ{zf{>bx(@s*51`8C83L6o)%w3ChVo8Xifw%ot)+i`- zxsWlJG-m2D`BP*%I7uWq-kmTxR>4LnBCJLOs!GYpEW;d;$xvAc2DlB0qc|x;0|MEU z0BZvJ6ac`{%P1_EO?hz>x|5##&JKr7`Rpjj#8g2QWL{_?AR84r6P6ZqNoJ8$n-4f7 z%rr~FUP^2RwjB#7V;77|AhZxcq8CJ|si9!C)e0ybw1&0@khlQ|NeGUWDFLHpBGVC8 z8qkqJWkE5S#MT-_d6Lb?XwZ{vmTfTpAknN?%NQ|% zK&fnqC>vJ{MG)OL22E|TttzUjs;<{qRaI40RaI40RaI40RaI40RaI@OwmV$IY)w1$dgp&1Pkn zWZF1@=~Y!#DS0yC6<8eT76NXHD58qA1gN5lD62%a+ikYnZMNHOw1%<=_LN+OQ3S{Z zM5w%CJb>jTR&$s8HFZVET>${D@!zBL@$_4khHoTt$hMX-j5aP{fR%rkczt_@C>Vp= zR7R{1k31}csEi>Z{n#cfP82l;L3BgV%9#~pA9#cPdtI^>9xNdM%()o|0tiq-Ne~he z0hSk}%Hn`GhyoYAAS?ijBm>!GpvcA%0U`L9c9;`vvc_+m(Gwz&gpM`=Ac6q{RIrRT zq@ct|Ko$X3sJ5_y4KTorCDvP$Etzb~WRe8Qkbmivqu(`{O3X0AtRRG$8FU|km?$2P zw6bO2H{T+HrPSDKdf*maQ{!`^&Hp{F6C>qkP)g-+A03K52jUoq)P9uszkk?Q;dbOOY(qzn z?d0tZcoJB>j6CCor59`DKLEQSni=nI?7zA4u*DBW96yu|xDs~XBA6&egSd(C4@=P8blsT;QBTskepJpAW_k!byDsVEbz07! z!FppL1ZZV42&c0?5r`y^wE;mjo?nyMi<{`*tqtK1DK(FD-@WYY(<{0F85X4)I7IE| ztT$5S&&jK90j>aRf&de;=9%mh(}Xx2YiUw7OPUp-=U1Ow+f@MlKIY#v#3B*^Bn_=Z z0;Ny{bn*D2*iRC z1W2Tq!bnzK83({b3QhmVCsrnHwdq&gfE#_8S>_?65}*Nr1Pj0y;j0(Dp^={+&zsx& z3{3(MJBoy!U@;=YACZbklTa&Mf?v=B(C>BNSRy17?L1C@^gMY3^xkCLx4G}|)^-QL zJ*uk1&_W6aoezHMC;>!K9Dod>#9@gjPPXr8K`JB=K?n#q0z@!YuMiG$JMWG5VrcE* zt)1GukVKuDB*CtT*? z{e-PztC^|l<|r}S)K>qOgeI97=T`ehUjl&g#Hnt(d0^khMDT;*qvM!!5@{uBdQkI# zzb*TpuSv{NNQC79uB7F!85fuHC~5&vSrFkjwN%wvZI;<>me|(Mx7ZjQ#FNB-bth}- z30M@X)zTCy^|3Y5JBeD?ebsgUn!hUmm&q{1-v!#k~yddT99==gq?Z20&yWI6v+!PV5L&tM+7q;7N zI@0S{#xaS;FxbX1j7BDA{zC3~_8r_`ymKSCa|s>&*-|V(uuLlziDZI+vqUInL=QqH zAy7=CXO%~KJi;^)=#Mw|ZUfi`zy$9sfOJm*GKfzqVdMozb@w~FwwF21fSSX9d8na7 zAS?#MkhQ!F^Upl+H<*l|PHf$~cXPhsy_nwe;evP$W{rg~>}}L##d+ZSd#As@zr)wv z>B~9JbDZZntYLACV;IEa7;Ix0#v>CmGo?{pg!*HzrEI)mH`>n^0ty7si$>}jWf;Bi?mkzu;c~@qgXhPx-&=r}8KG^8dU3 z?Q(xAulB!<{O|1l2l;3R{ZD+qul_IX|6e|c|F!)O%l-ELi`4V}{Cc&2zp5=fi>FHb zsW}}%HU1r&Hf-mH-M{O9lY7JH*GoQqiU&h-_FbfZZ~SZf$UYzEhwEm|nd3GX$@ZQ6 z+59{`7fh=4oULgHQ)MCmRKz0_OoQYAppVkGZnV)etcg z8GeO?Er6mTp$%Xq2w-!tk{V!Q1ccU55XvY7ib$*| z+t^{kI}{8g7~XG*cwSkSG>Vx71MU7z3GDr97YWa{tfJZ~@`BVskVOD4Jg2)K440!A z`!~Fdyld=uE-0I#3&#g)0}JD8kH*I1G`wmL=)kp&p1sNZ`k=;su!juOG(_sa+iO{& z6h35yWC*ebo3#ll5IjzyJR*&io+btfmdaDTm@lmV6uB4q-I8F3`QssWXn%E+b{V}T zWS`Cvp7{GIO$^4e4C?j;RKTsJV0fZ8XAoIWHa%}Z5dEe7+*$qB8AQX>45H09XQHWLOEpLCCguFS=@fEW= zLkYM$JrBLiqU1RS;J2YbZQOm}@|#YhVU@38?LSV33w*q{-O7&{05eHE{4t41AP7t8 zP4W`IuUijVO_kF&*s*9rdgy%H>nfQZJLXGn*VW&gxT%vD0tu!R2~Z^{pd=vZ!=J3w z3kw+6Uu!`()N9SB)xtV5?GUeNkqs6aC; zNTPhcZMF*GjmbAneVID+FeF>WPo5-!v;2YCH6z<$v{drf7)0|Al1Ra|2jnUE%3P`k5$;#|Fc zztqq=_M&sbK{vhG+l)hr?CMZW<;Q{fBSYYrb^vwfai~~_f(wK+lltiIdug_w3mz?e zmd4Lk_wO2IUHT~OXLv;)gw^CILoz-X#H!xPf|3GlyK5MhY4g_jHazuO z;;3Z>9=Iz@5Ce1zp*RE}n*tJlSD^?_3HwszPsh0_Jy5m*%mojo-Gd15{Cd{GSy zyacnEU4%}H*7B2ldbN4sWnP-+o_XcpUYh}_48bc>YXl+8ssOnh#8GNc#Rwn;9Ubb+ z0a%g|3J>sjHt#uW{;AlYychTlPwIcnC;YSjSzr6V{HlNl{@Ysufd6L72&F(sKv0ks zBt?Jul?e(&Tfh}_hzeRLfkMOt84RFQ5kKb1z=**k0VEj443S_(ATU@#kRugI5)pvK zg9Hf3f`FnC2nWCX8l{9W0gzKQ&tLh?m%P3Z0kmOX{Q{wkzvl@*=(d^)B!6I%47RoZ zP223SHr@s>O5q8o|LWiWJ>Xd)Mk7!J2N$3Hv*&OapZ+qc7zqMnEfjECDOZ((DVhvW zuiFsa|NZ~w^mTkOs-)Z!fFGkIU%sKdzChmg#pZN~^*~z4M=Y|nt%Mwl-I4-;I-v>) zBoYZ37@$p?1m6OO?{x8a%WdX`0ZluVYn!SA_8jAuGk zS<+=HJ*BaXGd7U`!fhOi6iBd(A=;2C5+W)Hz+_^oMNt%hiouEg>JXs@5<`wu05LUy z1F}>`wi_KyT7n=*2OMRyO4)DT&IiO#Dxv_gNC_wc!#{hwzgct;LInSv3nU;y2*|FD zN@7*nqC#IFh+=1yAP4|b;JFcWifNi}EM=@S&Q_NX*1wgD!tcoB%^cYmxX9nOvk_0kFs8tmFj)ewjP-j!7 zgv|$>XE#bA{^1B}ymt|TDym~UNhH2l#xETBjAIs(q|-oE2AX1nv7+caKe3)Om7SKL zaLjjG7(u8MHBCyVeWlSE7=WNCiv(bdV8BKQpo*$QV$+76TQ4#sY&8iv<{@fU*)OKvG2s5M%%b3_w`~1d5S>q+~!rf<+`&K~V@X0zg%e zMnM@EMHN;=WEKk$VuWJ_6=ISoBLGokVv7b50964M07N8?*V8nwY zix5@}7@#PzV-hNYq>u$z3n3Je3|R&e0zg=RAjm}^qJWW5Mn*7DkXT3rPzePR1XW0= zq7elokWmN$5R8Oi!U{lup#lo3LNF3CBN##oMUpHc#X=zgU@Qos2%sn_AsCU27)Ai< z83+z#D*Zpxu*@_oyI_S1si?(~P=P#EDHv72Sll-Nk%V9{g2*P4mMe}Glyu;grRh;e z`+45`c9|%H``cb)M4-6XBWooMOCeB@ifM7PT4rPlyUPL;VS}Es`Oud@e~KeW+y0qB zjZ6T#zyjFCp*X@tKxGZHNsV$;(jWYBh^dV-$ptT^AM}I&`aW?rxGr%8ACQm%&43aq zBouPok=H!(6#tefo-nlPQI-Ty=$iWmqLJwXsx!tq~D~1~6&?ObG=B zMMaTBRz=^HtVkfGvd91=RK2om!Afq6xwrrYKuE|;yC4#L!ypo86ePlmhslAF-p?6x z1|mtTn2FE#J&$Mf|EKkAzlVS5(eV9$u6|l1K3& zQIU}SSX7g5HLM?Ss(+VVug*ZH@c%7^ic(W)GOYveIDV*$ z@_!i35ohrKPxTx7A8NEcKj*@fzvsYSITt7Vpr3$2{)#Fi>Bs&N^?vgGR>`+suVnye zdV`k*1Kq6ULjlvfcyIRzrO$lGKfV7f%^&%79Kw!Y=KsRQ{?}*oM?afB`hT_DxqsBo zF#)Ik9^sLOL9t03(EpAAW#iuHmXZAgCPYtJ0Yd+6SO^>tfE5TpeV_S1&Hl&uCL@3M zeDvYN_q$3a?IGXQKm+}M-Q@rd#}DG|AN2pXZ}<9))obVeqZ(}L<)kbg_O<+}fj$wS z|H1)?aQ_I9JaT`D7T-7T4}*h6g%ACo+5dw>ssG-ewfZ0ObN$XRrfxHt$y{E2TE z^fky>yZNjHUN$5WfJ7INz+)+P%u?@Wl5#@3p9TEd<&jF%=}9NW(u6e4B$6$5U|rnh zyN72P&-dYs+Vkhgw1>nlg99y(lL?w4luEq@I)?yJOj@IqPm`z#04zY;60SK+<%KR8 zO00;zG9my|lj_}BqL7-EL>sh&0T2ZnCNTS0Y%5ZP%q*`OX(UOFIS8!Oz_ha$d~X8< z262_Kh8K!Nb(MivEvS~tW1_^+)}Eop5*9^K*+-1+XAaQi0kzv0jMSt$z}VcqeToDo zR$3&|*#?RLpkS@KTZy~>d^KHCruZS zO>M~MJ78YKJT2&5K+jPw80=utO&G@0FEF}tu$8TZR(Q2xoJ&DmZ8)fogl&4%O=uUa z=CQ0T>=nPco^!I^h+q)}r$D20tn$*4f^e%@R|M|iq`BwLoVI0V^?y%X<>=!KVaEgn zRz#Cj=%4Z?FdNKQBgX%l88?c&*gwxN#57Q&B#^J4KPJ@#hLwRs{g|g{ zPJ5-gP)DahaTT0#b^eIOyES|O2u6ZPBiaR4UI&xA>G?!q0r;IDxipExBLic=luc>N zVUgM+V3%MaRY;8t89MxCA06`F)v&X?4Dt-W z-vNofY(dYafKZS%Vly$KE*O9KjYOC?9bosScuUqpj zMtKkOV#H=&n4e3eAjJH7u{nqbmLDLW+xgBs$ApO6t>7E`550Zb%J=*gtM)Q|E+(5T zV=IOPmLrwyGoHD(e|~EIe_j{ZdCxgg9*NFC%THz73ZGx>?hw)VosI1@2&Le=D@SW` z0c*o6A_YnOy<#6toKIHFG_2uZ-dkSC|I8!s1lawEjfKnp?lu89v7pMYx#I9CbiBhu z|36&9H+<|>T3|4JwFv!oj$Yv6YFxDs|?W-sH&7%6l32Reegn97rr@zqjv(xAawieOKZ8>D&teKw1hP)k3VeWHqQ6d3-JY zy4fbY_43=qU(L*F0Gjt&&%0ym%6E1oY=1idZ;spp$Q*$XphYuT^k`0vo(X3gYeZqgztfi8nbx#IDi8T#z8h@ z@Cc;PP*EAWC@P?V33&D$1_9c2>K-I=O{ZQ9-tWg;g0Ai)wJxV*Gh{6Dp`WF9;h7pz zbF6EEJ#a*p1p^WS*}O}^gc}I~Ed>in6)_kFuB4W2@;$_kR8h>Zfc3o0*3%Bixv#O zGYQiYg53pi z8%AW3R}I{Apx=o&9M!;33(=AFaz+%U0|)_B15pO|6+`kxSg8MefT}8sf?;Hb8VzLv zt!!RT1+S6O^Wk>^fDf>Ig69-R+ufaqWnQEMU{52(YV-U}F_2lb~Y2IhWvSzb-=|X&op1<@$y!h5(`i zASG2GU=p%6Ny1_ZJRU!hI);ufCx2t@iThq!j{SiYIS6{oeE;XtDE&I( z{gGS0jEWJ+cMvGz_o4cQJipf0ns%FSE_$SM?nr-VYOI?c+R~ZX7_^cR&Z_eH3T1=Evwm5cnMf4@COSGk z-21k#bWzvM`dvRe-(PYhOg`bxR0UxZP5Mf|q^tT#`Z-68alq#L<4Qm_Yx$WLx8`^a ze=pR>oOTb3)|UFxP+BMEPsFevB<|nGhwS+`&!8V;>>)`&=rG-qVx>yY%tb*7YM6dC z>pbvU*FL%C@2mnI?B|Ojmx&Ukcd=oC5`4Gq#N!;h)IE5?ll53?`=33_*ieS^z*_eN zO#f%FP~yj}Uk<#q!(@avvc=~fT4#B~mv2hVvNlK+7{p>W^Bm&WZY`KfK# ztZQyQOe!K@C=n)BM8p}3&tk}FKUuS2_G(HH+Hd!>bpaNeID6-v*M-&C>V1Ta^2@ zzEMerQd$s%KrSK#eFMNuIUWFQLs1nuOQ0bkNG=Fj$Mq9>$8w7eLkv-WyfUujjUtMD zu;NDf*fZw}7>p)FKnzDBJBXHi+2}U`NCDfHHd>)Z6F+W$HYOOF0cHYfdg;|0YoxSh zEQ6L&ypE=D&lT&1@qZfv^D%Qu@XnTI0HlTjgEi8ip1u`o!WRDm?jx)+x8 zyPif17VFd>btDZU+hl&41zFH#i9>( zqGX`SQ&7WB`R8Ll60hP__awl3k)eYp;3sGrE#+Vv5Dma43Gv9XwO_0scR1)Gs!-1YeihGjJ?s6p0N|*{Q_Ue|hD>VC%!)Qe|$B*CG{gAPp zx@@N8EcDpi@sLpn2*{9GA~0AeK%DNx*#r5SjU?#Sg1x5-?;1=p>Y3q|cx)ulaenpf z&bHghM&N8WA$Q*~)YeVf<>AiUQaOB;Y{nW*iVIk99|)=-EGH1vIAsjGwN*9d1;BN0 z+F3%CXjnUOwjND2Q1^3q$9@*m1j_kcCT-WilYL(4&)uKa_JtF;ilT~$#Eb@;nbK(& zv+1mgJE+CAc%IEjCZsY@nz~NTWR86o5p>yzi=6M;waxOyrzhBq<*8W?6 znfxGodXx{W%F2mo8`zyhr*}(KQ|q2a;kfNCKiUOE&iZ^6Y%sX9^YtM z+Dpp4UR4*6LdMCs`^|O+`S~yW+%_(GWiAOd1xhQI-AP$u=q2?`@xsy)0%jX_Xk_jZ zY3sRdEm~V`u+W=(+no96c}OFxr#VBfgAu0Vw)f->j=P5H&5-aSDkBh3|6%XZU5| z(f)wu`2&AN6a+|qx9O3z{Im82Vh`ITN;4EFeI??@@eJ z;hbmH%=`Lc)&DJ9;3?4zn;+JPOO$GDg$0nm?rj4J!gSw$L;-V6i0f|M{^;}n#5#=< zJs?|bTWl5gXrNg1{7BF7T41S?N%PYpFojI#5FGyQSTrcf1*9+c96s6nyWo$2$J_I2 zzpo=qBF!kqd6Xzn6aj zNWWPQ<`V$|q5AAL3wUx_rk&T;w<#!Nedezz)%f z5J+fz2v!Ke1aji$2ZBP!A)ve@uj@h|M>Uf1Sx~5971mGo0t@@csBw5`7BDD!!ezHp z0ANRckLT(U3!;?B=0_^Q09|_O3~#k%BEHGE3p++Xd_ieb{@No63{B}!ZS*ts4@EsKw5gtjAksdkpX6UR9q>RF$Ymt zL^B{-wKbv;+Cb5$Am<9Ql>}%E3*y`uh(%QO%@!Iujn3MRE)M}p2^X{s=-Ps73YH-I zZUO1JWr+nwRiHTR$Xtw96LHhTN+EsF0*!VS0<0F@u*S%oF_2D@9_b!Q#Hy*bnUSvZ zVcTmO0n&ApF}Ri!oY(=GMhAodIYWXfL0_%pGKJLz7D|d-Q>e3E8NkewBV8}M%MS*1 z2F)FI&pH4&7LrQ*H(mb?@P9H|YbfOEc!0^m7-;N0!NuL)ZXpO}niWOzEXRE&(VfS0 z4r1`_H^*w{nCMO$Y%c4R69cHr5Su3qo7x{UNs$9;4>kztzz#|uX_!?f1Ede1(n!Bh zW4vGP9rht$s;ZU)*q>)<%uiMyKc2+#5;M!Hc#L)K0BV5xUdO%iEfsA;07D2On!I~u zE59f*)KRq~=>QNB*nR7yd!7=+hLFIH0}4HtBjkuGECEcTSCK@6Xb&9$^aqLr5TH}C z%4z0h6uJUkqL{T;R(rELgYkO6HbW^T`8o8PRKV{zX}_d1%Fv@t_bK?0=W6uS;R>G) zQfkv;$ zNCLx(fCP(BLC8R*H{6So)l^tg@lHjHT;NqL9ZFuaiG$8#Q<87&g!a;BAmj#L%fK7r z639s?9^02ekMV0ddgjc=OOD2S^S5s$3& z{q#*W_w#Ny#(7L+3eJGw$%bi**u@oLJ%ySAOsOrB|djms3{n8#+Qr+ZX=3G z$sul#BGI%Uf^e8E9!!9HhFEQ;I(0{%*`60cS0U4&XpP-fqf@iq1|~TU}~x{5!4s#U=hSG4=`iAB97?&zN?Ww;t#Xtq;m%T(tBPj_h0jW zE#Ut7{oXvG+jGbCH9?$>_TFmi50~P;A^Uw@+HdZUW_Whv=1!sR#=Q0Ik=htXf86|k z$sf5IUz8uxQUL@0!~l{0>HTT`=kd}0BHf?jzB50^1q1!)s2YF0k^P^y|9A5b$o_-- z6=6^EAbY>f7>bHb5rxZ=(vg!85Aqja!n~Ic?7=y@ijHUx-+*ccU?Ty14}E@z0k%~( zK#`FghG=RfoK(AD|94h7|G%C`tAL^V{v-StW?tLm_-u@J2_uyL-^Pq%z+QO zG8Tjb`~fimLJJT&L!J^)QbZ$YvDO=KMQFPna^P4lMk#ElF;N-*%NE2zh=~>vMi2e0 zC51#lhzJSY9Q>kjV7o2nt&C!fp@Ci>@Da>|%lSVC@V+ke`o0G!JDqQPxn^$e?n?Ctdp6k6%hZ_)swqN^EXs%h-FFS%JJm3hB*>nKVHqZBHlS1V z)YSbb(8N7YQMDQ#qtpNz0000Q5gwXMqcoZ{Du1e!VgMM8 z032v&(V)?wXaE2J0Av6F0B8(=0|cf>AV7@?=`_(zKUDKnc}&qfnW>U#wE^lh^#Py& z00Rh=gpfTWMk7zvJx@^e00Te+L(~VT&@=!6qd+wE1d#%1Fq#1w01=ehQ_<;D-lWq< zsXtR`BQhEXs7yu(8flfNsB5mt=31g+8MB`R1 zQI#~@qb^+PQ=N3NihPd>P})94JUOwpn=hlehY*zOqnbTJilB%M#*j+QI5d~IW2ME% zAF-^l4EZg&L&42mfW+uwxr-RmkX6!lr~a__mP3;IZF%-jWyFLMc;ev{ATS^~t=_FR zJPbYy^S5f1zvH2qo>sXxxJf9mcN+T(LZ*7*NO1jJL%xB@TzmsI*5Om9i`NAku zbS~$f>X0p`GYD{J<~2MkfrnVXJO1!MKr~Uv2c@Pf~L@80JKhJs>Js1fd!Rpme zXT@(y9cL`%#&R>Kg8g;d`=Vj*Lre(DdE2$9;;R9L#=NkH@bJ?n1l^Z}aHmfA3MvVJ+^bgZC zy;oC^e#H@lTaf`&Q4H$hW)RE}6S#rW$XPYgE$h2(?6vFby5^)c)30i+yw9=rT;c#Z zZX3M&d2UDBovYKj;71`7aNl6y?F204!)C^~zn;wY>V5J$+wT(fK|E-IL(k9EO&ycdlV8FWv(Miz9U>02gubRo zI3x~`Iwce@s8FJWQDTKk7*fDX4D1bgz?(G-iW~(9p#d_)JQH@Id=oK241p6E1TsND zL=p&s91-}cTQ@*eAasPF1%e5P8utWHK?aILf;GUL;KijflsLi=?U3kHfha;!EZFnJ zJ~0Q?FLC~3odIJZOWO_dKCt)BQN3qpxtf0S30w2d<}d|aU1?@i_f|p+Sb$_Q%=QMM z&_q?9u4fn>k=Vyf-mO6cBKvaEfQmM^y{luWTDYK(KSThSZmpLG`Gv7UfHr)S$f&rU z8TorPuFpdff~sq{%Pe9ch=>wUaYE6vYCnkpfT(ss-$D=vw0IX^WAOPR{trDXO8VUV zG$eq|AUye%8R2-Od9 zV1stsueg>s$m2WE6wM9PLMoK6`)md8_kKERWROONxAOej^vmA2IH(#k#e@;dH;V20 z#2A|CO&Yl{!GswXhQP--#_A-3Q$67!AfB}5{RtyK8Sbm3KOIoUu?kao7&M!O(=2^An}SoJ!tH%T4!{?=04@hN;=5n~IpDq)4msYYc*Nv((p zrRd#k(E#y_d~l@LB@n_QzM+e$zO@#fvM_%uMq zF{8{xttSUwN4(yftbo1x&z{o-NMlg};s^>fd+gCku;G;Y_8haW{3|e5WE3vBvyhuJH!EVBW}x9-$>n_7^@=IS?ObNCbjGT06Y_y2CrU z+Rea*;6t3;M&8}qqAIt;s>pAW6i_3ZeDfX`aax4&7(^3^qn;4?H`@?7{nzEZAw<%} zyv#G2{eCUn8E~>Pw3YekNqAY%|Yj7>Akq*uZ(c!Bqs zb7tE0xDk~e%&#|(uY?joQvO?k`vfJC*dS(RNd<2%>xHB>*Q38iXroI?j}*{YQiKEA zK3a0~b{;)^EW1s*PM0<-=d7wN=pY*}j=Ncyczw$KK5gdHG7+^H$`eLS%8~&S8zA!a z2_L;MBc6H|25OQ}BOlC}-gb!wf}K46Xsx99Z=_p87l<`sD;A`Xb+MuwKE^_zfol7f zsHMyx|H;KfK*=DegJxP8=RfI+2l>j7)>L$71Y3o|K=s?#r^h&U^${%iw`y6FBPoX- z7l=Fm%U{F4R~_Gs^spp=LQn}I8$Ip4VFheJU636QBj^n?*X3o%woJ@<2s|Pnz(Enw zspmnNxu?s?=%;&ivJ*`*0W4IM@0t`Wh|MtxL_kTIakbNi*;j!<1Aw(M5zU%>F41JA zRE9{!wkq#VhpCy#3mC39?mpfePu`HpYuk{zYmFWvfE$;d=j+|-x&Vqw#0a+Y+AgfH z(=DB>8dSI66E^`Myg}_`g4sweP)^wvboF-NyJQI4oDsG}La~A|$K+|ppBujO$kRZ2 zA@rKyPUA`g36P=4$pw}o5@{~#X$u~%t=M-w-Tcns!1($*rurSjjo_#e0UE>~R2(qV zaC*6|Nd$h=9bh638$^QC4`J+Yn(3UrfJ6XBe$Olc76LNBy@Vpc0`Y1%BR)a#+4Lfx zI>f!~vN90VN8d%HJK9^iT4n+^9W#J~-`(2ndw12$mv z`PlhE1&<2KF3G`>0=?&=1o9QT3@vusyc_XaJKiO)w21L`^y7`m2}%+KCfjU7X}Ex1 zl+r?kAqoyhq6vF~zFK5!ykXJU=8YctzNCr}c6{!m453p#5|Fp#7~NFRs%y(P_Mwz$^UKQ!(-ETD^= z9p9&`SGSji6^oqATZ?WS=mbuFxB@(Lb$T+b1PmoWMt9fg0FJ;zSh&3*pC0GJ@ZX9N zuc6U;L5e|t6A@tqQV66E%bg?|xi)dv26P522`)PuOYu>J5Io)T@7tLwSdt352(r$@ z4RMjydGS!^wV7k=&O#?q)jEAhFPc>h$o|g=%{g$0ftMa7bJ>xDD1gq_B;zt6K&zjd zvHl$mCgtEZ;n1n;Pc#-QTaBTC%}p9Q)uy@2G|M$rx#aro{YnNpJy7ad4e<@J>sLeL5V)UnPWchXbCYOHUnN#ay;cIC_jp8!Q$a71pn7t$ncJO;^k2T+L z==DI?emr`Wx4*!qS?GOVL1im!|JV@^5JjF{fR4PrTruo#jr-u;cmP8Ees<4~(bLc% z0S@KL)26M%g)fbsh4Ik1%Fd(mx}4Y0AUkf#Q*CU)$uiED0^?IrH{{45`4PGy6xrp$ z%b#T`xMsT0ve5}`l$ke*LeT!>L^WujuCMq=(K8|;0Sbzs0K%p+KxhyYfg~0%g&G*u ziqwWpp>|#4^h@%ygduVBz(LCfM*S0eWW_c{QT$+my)=pMtb`D;k`C+ZrbyGOg=x|c z0(KITcQ+?UokCA1TT3yIOibFB)aDnruRd$R7D?_gtwB-651H_z^t7V&A(Z>yTa#Un zRk!d)Q%b$Ss6b27X#{qzep|`JqTeq1v)bn+ay-VCG;%Z{-^%~D*+|AyPfjKfcv~{| z5O5HB6#+B=%l}Nm2|qU-%3%@su47s_D$)2v9@* NF64@Ep&?MPTGF#R_S^sf diff --git a/tests/tinywiki-latest-pages-articles.xml b/tests/tinywiki-latest-pages-articles.xml new file mode 100644 index 0000000..1844088 --- /dev/null +++ b/tests/tinywiki-latest-pages-articles.xml @@ -0,0 +1,425 @@ + + + Vikipedeja + tmp-wp + https://ltg.wikipedia.org/wiki/Suoku_puslopa + MediaWiki 1.30.0-wmf.16 + first-letter + + Medeja + Seviškuo + + Sprīža + Lītuotuojs + Sprīža ap lītuotuoju + Vikipedeja + + + + Hello + 0 + 1 + + 29433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + comment + wikitext + text/x-wiki + +hello this is wikitext +=== $Table.isfun === +{| class="wikitable" +! Nr. p. k. +! Mīsta pasauka +|- +| 1 +| [[Daugpiļs]] +|- +| 2 +| [[Jākubmīsts]] +|- +| 3 +| [[Rēzne]] +|} + + disnkv72gqngow52boaebr7ctrxhsri + + + + Toronto + 0 + 18 + + 29108 + 28109 + 2013-03-11T10:40:33Z + + Legobot + 1544 + + + comment + wikitext + text/x-wiki + Laika skaiteišonys zeimeibā 18 godusymts irā laika periods, kurs suocēs 1701 godā i tuoļuojuos da 1800 gods (īskaitūt) pa Gregora kalenderam. +{{Infobox settlement +|name = Toronto +|official_name = City of Toronto +|settlement_type = [[List of cities in Ontario|City]] ([[List of municipalities in Ontario#Single-tier municipalities|single-tier]]) +|nickname = [[Name of Toronto|T.O., T-Dot, Hogtown, The Queen City, Toronto the Good, The City Within a Park]] +|motto = Diversity Our Strength +|image_skyline = Montage of Toronto 7.jpg +|subdivision.type2 = [[Amalgamation of Toronto|Districts]] +|$subdivision_name2 = [[East York]], [[Etobicoke]], [[North York]], [[Old Toronto]], [[Scarborough, Ontario|Scarborough]], [[York, Ontario|York]] +|government_type = [[Mayor-council government|Mayor-council]] +|leader_title = [[Mayor of Toronto|Mayor]] +|leader_name = [[Rob Ford]] +|leader_title1 = Deputy Mayor +|leader_name1 = [[Norm Kelly]] +}} +'''Toronto''' ({{IPAc-en|t|ɵ|ˈ|r|ɒ|n|t|oʊ}}, {{IPAc-en|local|ˈ|t|r|ɒ|n|oʊ}}) is the [[List of the 100 largest municipalities in Canada by population|most populous city]] in [[Canada]] and the [[Provinces and territories of Canada|provincial]] [[capital city|capital]] of [[Ontario]]. It is located in [[Southern Ontario]] on the northwestern shore of [[Lake Ontario]]. The [[history of Toronto]] began in the late 18th century when the [[The Crown|British Crown]] [[Toronto Purchase|purchased]] its land from the [[Mississaugas of the New Credit First Nation|Mississaugas of the New Credit]]. +===Before 1800=== +When Europeans first arrived at the site of present-day Toronto, the vicinity was inhabited by the [[Iroquois people]]. +===1800–1945=== +[[File:Toronto 1894large.jpg|left|thumb|Map of Toronto, 1894]] +In 1813, as part of the [[War of 1812]], the [[Battle of York]] ended in the town's capture and plunder by US forces. + +{{DEFAULTSORT:Toronto}} +[[Category:Toronto| ]] +[[Category:1834 establishments in Canada]] +[[Category:Former colonial capitals in Canada]] + + 7a6pkfvaak7kt94e7m869g9yfy6l6c1 + + + + + Duplicate title + 0 + 1 + + 29433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + comment + wikitext + text/x-wiki + +this duplicate should be removed + + disnkv72gqngow52boaebr7ctrxhsri + + + + Duplicate title + 0 + 1 + + 29433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + comment + wikitext + text/x-wiki + +this duplicate should stay + + disnkv72gqngow52boaebr7ctrxhsri + + + + Big Page + 0 + 1 + + 29433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + comment + wikitext + text/x-wiki + +{{Infobox venue +| name = Royal Cinema +| nickname = +| former names = The Pylon, The Golden Princess +| logo_image = +| logo_caption = +| image = Royal_Cinema.JPG +| image_size = 250px +| caption = The Royal Cinema in 2009 +| iso_region = +| address = 608 [[College Street (Toronto)|College Street]] +| location = [[Toronto]], [[Ontario]] +| coordinates = +| type = +| genre = +| broke_ground = +| built = +| opened = 1939 +| renovated = +| expanded = +| cost = +| architect = Benjamin Swartz +| website = {{URL|theroyal.to}} +| publictransit = +| capacity = 390<ref name="hi"/> +}} +The '''Royal Cinema''' is an [[Art Moderne]] event venue and [[movie theater|cinema]] in [[Toronto]], [[Canada]]. It was built in 1939 and owned by Miss Ray Levinsky.<ref>{{cite web|title=About - theroyal.to|url=http://www.theroyal.to/about/}}</ref> + +When it was built in 1939, it was called '''The Pylon''', with an accompanying large sign at the front of the theatre. It included a roller-skating rink at the rear of the theatre, and a dance hall on the second floor.<ref>{{cite web|title=Toronto’s old movie theatres—the Royal Theatre (the Pylon)|url=http://tayloronhistory.com/2013/12/30/torontos-old-movie-theatresthe-royal-theatre-the-pylon/}}</ref> + +In the 1950's the theatre was purchased by Rocco Mastrangelo. In the 1990s, the theatre was renamed 'the Golden Princess'.<ref name="taylor"/> + +Since early 2007, '''Theatre D''' has owned and operated The Royal.<ref>{{cite web|title=Toronto repertory theatre reopens with HD projection|url=http://www.cbc.ca/news/arts/toronto-repertory-theatre-reopens-with-hd-projection-1.592674}}</ref> +During the daytime it operates as a film and television post-production studio. It hosts film festivals including the European Union Film Festival and Japanese Movie Week.<ref>{{cite web|title=The Best Place to Watch a Film in Toronto|url=http://www.blogto.com/toronto/the_best_place_to_watch_a_film_in_toronto/}}</ref> + +The Royal was featured in the 2013 film [[The F Word (2013 film)|The F Word]]. + +==See Also== +* [[List of cinemas in Toronto]] + +==References== +{{reflist}} + +{{Theatres in Toronto}} + +[[Category:National Historic Sites in Ontario]] +[[Category:Cinemas and movie theatres in Toronto]] +[[Category:Streamline Moderne architecture in Canada]] +[[Category:Theatres completed in 1939]] + + + disnkv72gqngow52boaebr7ctrxhsri + + + + + Redirect page + 0 + 1 + + 295433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + comment + wikitext + text/x-wiki + #REDIRECT [[The Beatles]] + + disnkv72gqngow52boaebr7ctrxhsri + + + + + + Disambiguation page + 0 + 1 + + 2952433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + comment + wikitext + text/x-wiki + +'''Belleville''' (French, literally "beautiful town") may refer to: + +==Places in North America== +;Canada +*[[Belleville, New Brunswick]] +*[[Belleville, Nova Scotia]] +*[[Belleville, Ontario]] + +==See also== +*[[Bella Villa, Missouri]] +*[[Bellville (disambiguation)]] +*[[Belville (disambiguation)]] + +{{disambiguation|geo}} +[[Category:Place name disambiguation pages]] + + disnkv72gqngow52boaebr7ctrxhsri + + + + + + Big page + 0 + 1 + + 29523433 + 29425 + 2013-03-22T09:37:03Z + + DJ EV + 1631 + + comment + wikitext + text/x-wiki + +{{For|the hamlet in Canada|Bodmin, Saskatchewan}} +{{Use British English|date=August 2015}} +{{Use dmy dates|date=March 2015}} +{{Infobox UK place +|static_image_name = Bodmin Public Rooms - geograph.org.uk - 1064189.jpg +|static_image_caption = Bodmin Public Rooms +|country = England +|map_type = Cornwall +|coordinates = {{coord|50.466|-4.718|display=inline,title}} +|official_name = Bodmin +|cornish_name = Bosvenegh +|population = 14,736 +|population_ref = ([[United Kingdom Census 2011|Civil Ward, 2011]]) +|civil_parish = Bodmin +|unitary_england = [[Cornwall Council|Cornwall]] +|lieutenancy_england = [[Cornwall]] +|region = South West England +|constituency_westminster = [[North Cornwall (UK Parliament constituency)|North Cornwall]] +|post_town = BODMIN +|postcode_district = PL31 +|postcode_area = PL +|dial_code = 01208 +|os_grid_reference = SX071665 +}} + +'''Bodmin''' ({{lang-kw|Bosvena}}<ref>{{cite web|url=http://www.magakernow.org.uk/pdf/placename_masterlist.pdf|title=List of Place-names agreed by the MAGA Signage Panel|accessdate=11 January 2015|publisher=Cornish Language Partnership|date=May 2014|deadurl=yes|archiveurl=https://web.archive.org/web/20140729194902/http://www.magakernow.org.uk/pdf/placename_masterlist.pdf|archivedate=29 July 2014|df=dmy-all}}</ref>) is a [[civil parishes in England|civil parish]] and historic town in [[Cornwall]], England, United Kingdom. It is situated south-west of [[Bodmin Moor]]. + +The extent of the civil parish corresponds fairly closely to that of the town so is mostly urban in character. It is bordered to the east by [[Cardinham]] parish, to the southeast by [[Lanhydrock]] parish, to the southwest and west by [[Lanivet]] parish, and to the north by [[Helland]] parish.<ref>{{cite web|url=http://mapping.cornwall.gov.uk/website/ccmap/|title=Cornwall Council online mapping|publisher=Mapping.cornwall.gov.uk|accessdate=May 2010|archiveurl=https://web.archive.org/web/20130927050041/http://mapping.cornwall.gov.uk/website/ccmap/ |archivedate=27 September 2013}}</ref> + +Bodmin had a population of 14,736 as of the 2011 Census.<ref>{{cite web|url=http://www.cornwall.gov.uk/council-and-democracy/data-and-research/data-by-topic/population/town-populations|title=Bodmin Population 2011|accessdate=5 February 2015|deadurl=yes|archiveurl=https://web.archive.org/web/20150205171836/http://www.cornwall.gov.uk/council-and-democracy/data-and-research/data-by-topic/population/town-populations|archivedate=5 February 2015|df=dmy-all}}</ref> It was formerly the [[county town]] of Cornwall until the Crown Courts moved to [[Truro]] which is also the administrative centre (before 1835 the county town was [[Launceston, Cornwall|Launceston]]). Bodmin was in the administrative [[North Cornwall]] District until local government reorganisation in 2009 abolished the District (''see also [[Politics of Cornwall|Cornwall Council]]''). The town is part of the [[North Cornwall (UK Parliament constituency)|North Cornwall]] parliamentary constituency, which is represented by [[Scott Mann (politician)|Scott Mann]] MP. + +Bodmin Town Council is made up of sixteen councillors who are elected to serve a term of four years. Each year, the Council elects one of its number as Mayor to serve as the town's civic leader and to chair council meetings.<ref>{{cite web|url=http://www.bodmin.gov.uk|title=Bodmin Council website|publisher=Bodmin.gov.uk|accessdate=May 2010|archiveurl=https://web.archive.org/web/20131022161430/http://www.bodmin.gov.uk/ |archivedate=22 October 2013}}</ref> +. + +==Situation and origin of the name== +Bodmin lies in the east of Cornwall, south-west of [[Bodmin Moor]]. It has been suggested that the town's name comes from an archaic word in the [[Cornish language]] "bod" (meaning a dwelling; the later word is "bos") and a contraction of "menegh" (monks). The "monks' dwelling" may refer to an early monastic settlement instituted by St. Guron, which [[Saint Petroc|St. Petroc]] took as his site. Guron is said to have departed to [[St Goran]] on the arrival of Petroc. + +The hamlets of Cooksland, [[Dunmere, Cornwall|Dunmere]] and [[Turfdown]] are in the parish.<ref>{{cite web|url=http://www.explorebritain.info/browse/cornwall/ |title=Cornwall; Explore Britain|publisher=Explorebritian.info|accessdate=17 September 2012|archiveurl=https://web.archive.org/web/20130602231052/http://www.explorebritain.info/browse/cornwall/ |archivedate=2 June 2013}}</ref> + +==History== +[[Saint Petroc|St. Petroc]] founded a monastery in Bodmin in the 6th century<ref>[[Doble, G. H.]] (1965) ''The Saints of Cornwall: part 4''. Truro: Dean and Chapter; pp. 132–166</ref> and gave the town its alternative name of ''Petrockstow''. The monastery was deprived of some of its lands at the [[Norman conquest of England|Norman conquest]] but at the time of [[Domesday Book|Domesday]] still held eighteen manors, including Bodmin, Padstow and Rialton.<ref>Thorn, C. et al. (eds.) (1979) ''Cornwall''. Chichester: Phillimore; entries 4,3-4.22</ref> Bodmin is one of the oldest towns in Cornwall, and the only large Cornish settlement recorded in the Domesday Book in 1086.<ref>{{cite web|url=http://opendomesday.org/place/SX0767/bodmin/|title=Bodmin - Domesday Book|first=Anna|last=Powell-Smith|publisher=|accessdate=12 October 2016}}</ref> In the 15th century the Norman church of St Petroc was largely rebuilt and stands as one of the largest churches in Cornwall (the largest after the cathedral at Truro). Also built at that time was an abbey of canons regular, now mostly ruined. For most of Bodmin's history, the [[tin]] industry was a mainstay of the economy. + +The name of the town probably derives from the Cornish "Bod-meneghy", meaning "dwelling of or by the sanctuary of monks".<ref>{{cite web +|url=http://www.bodmin.gov.uk/Tourist_Information/Heritage/History.html +|title=History of Bodmin +|publisher=www.bodmin.gov.uk +|accessdate=19 March 2013 +|archiveurl=https://web.archive.org/web/20130818040647/http://bodmin.gov.uk/Tourist_Information/Heritage/History.html +|archivedate=18 August 2013 +}}</ref> Variant spellings recorded include ''Botmenei'' in 1100, ''Bodmen'' in 1253, ''Bodman'' in 1377 and ''Bodmyn'' in 1522.<ref name="sdf"/> The ''Bodman'' spelling also appears in sources and maps from the 16th and 17th centuries,{{citation needed|date=March 2013}} most notably in the celebrated map of Cornwall produced by [[John Speed]] but actually engraved by the Dutch cartographer [[Jodocus Hondius]] the Elder (1563–1612) in [[Amsterdam]] in 1610 (published in London by Sudbury and Humble in 1626). It is unclear whether the Bodman spelling signifies any historical or monastic connection with the equally ancient settlement of Bodman at the western end of the [[Lake Constance|Bodensee]] in the German province of [[Baden]].{{citation needed|date=March 2013}} + +An inscription on a stone built into the wall of a summer house in Lancarffe furnishes proof of a settlement in Bodmin in the early [[Middle Ages]]. It is a memorial to one "Duno[.]atus son of Me[.]cagnus" and has been dated from the 6th to 8th centuries.<ref>Discussion, photo and bibliography in Okasha, Elisabeth (1993). ''Corpus of Early Christian Inscribed Stones of South-west Britain''. Leicester: University Press, pp. 126-128</ref> + +==Education== +There are no [[independent schools]] in the area. + +===Primary schools=== +[[Saint Petroc|St Petroc]]'s [[Voluntary Aided]] [[Church of England]] [[Primary School]], Athelstan Park, Bodmin, was given this title in September 1990 after the [[wiktionary:amalgamation|amalgamation]] of St. Petroc's [[Infant School]] and St. Petroc's Junior School. St. Petroc's is a large school with some 440 pupils between the ages of four and 11. Eight of its fourteen governors are nominated by the [[Diocese of Truro]] or the [[Parochial church council|Parochial Church Council]] of St. Petroc's, Bodmin. + +There are a further three [[primary school]]s within Bodmin; Berrycoombe School in the northwest corner of the town, and [[Saint Mary|St. Mary]]'s [[Catholic school|Catholic Primary School]] and Beacon ACE Academy both situated west of the town centre. Beacon ACE Academy is part of the Atlantic Centre of Excellence Multi Academy Trust.<ref>[http://www.the-beacon-bod.cornwall.sch.uk/ Beacon ACE Academy]</ref> + +===Bodmin College=== +[[Bodmin College]] is a large [[Comprehensive school|state comprehensive]] school for ages 11–18 on the outskirts of the town and on the edge of [[Bodmin Moor]]. Its [[headmaster]] is Mr Brett Elliott. The college is home to the nationally acclaimed "Bodmin College Jazz Orchestra", founded and run by the previous Director of Music, Adrian Evans, until 2007 and more recently, by the current Director, Ben Vincent. In 1997, Systems and Control students at Bodmin College constructed [[Roadblock (robot)|Roadblock]], a [[robot]] which entered and won the first series of [[Robot Wars (TV series)|Robot Wars]] and was succeeded by "[[List of Robot Wars robots#The First Wars|The Beast of Bodmin]]" (presumably named after the [[The Beast of Bodmin|phantom cat]] purported to roam [[Bodmin Moor]]). The school also has one of the largest sixth forms in the county. + +===Callywith College=== +[[Callywith College]] is a [[Further Education]] college in Bodmin, [[Cornwall]], due to open in September 2017, with applications being accepted from September 2016.<ref>{{cite web|url=http://www.westbriton.co.uk/truro-penwith-college-s-planned-new-bodmin-campus/story-27846919-detail/story.html|title=Truro and Penwith College's planned new Bodmin campus to be named Callywith College|date=23 September 2015|publisher=}}</ref><ref>{{cite web|url=http://www.westernmorningnews.co.uk/controversial-college-cornwall-bodmin-gets-ahead/story-28386123-detail/story.html|title=Controversial college for Cornwall in Bodmin gets go-ahead|date=17 December 2015|publisher=}}</ref> A new-build college on a site close to the Bodmin Asda supermarket, it will eventually cater for 1,280 students, with 197 staff employed. A total of 660 places will be available in its first year.<ref>{{cite web|url=http://www.westbriton.co.uk/the-first-students-have-applied-to-enrol-at-new-truro-college-campus-in-bodmin-which-opens-next-year/story-29732479-detail/story.html|title=Teenagers keen to join Callywith College in Bodmin|date=20 September 2016|publisher=|accessdate=12 October 2016}}</ref> It is being created with the assistance of the [[Ofsted]] Outstanding [[Truro and Penwith College]] to serve students aged 16–19 from Bodmin, North Cornwall and East Cornwall. It received the go-ahead in February 2016, funded as a [[Free school (England)|Free School]].<ref>{{cite web|url=https://www.gov.uk/government/news/games-workshop-founder-and-entrepreneur-to-open-2-free-schools|title=Games Workshop founder and entrepreneur to open 2 free schools - Press releases - GOV.UK|publisher=}}</ref><ref>{{Cite news|url=http://www.cornwalllive.com/college-awards-pound-25m-contract/story-28561730-detail/story.html|title=New college set for 2017 launch date|date=2016-02-03|newspaper=Cornwall Live|access-date=2017-02-12|language=en}}</ref> Its aim is to "provide the outstanding Truro and Penwith College experience for up to 1280 young people in Bodmin and North and East Cornwall." <ref>{{Cite news|url=http://www.callywith.ac.uk/latest-news/press-release-21-september-2015-1/|title=New post-16 College planned to be built on land at Bodmin|newspaper=Callywith|access-date=2017-02-12}}</ref> + +===Army School of Education=== +Aspirant National Service Sergeant Instructors of the [[Royal Army Education Corps]] underwent training at the Army School of Education, situated at the end of the [[Second World War]] at [[Buchanan Castle]], [[Drymen]] in Scotland,<ref>"Illiterate Recruits" in ''The Times'' (London) (23 August 1947).</ref> and later, from 1948, at the Walker Lines, Bodmin,<ref>Colin Day, ''National Service with the RAEC in Cornwall Part 1'', at www.colindaylinks.com/dayspast/raec49.html (accessed 7 December 2010).</ref> until it moved to Wilton Park, Beaconsfield. + +==Media== +;Newspapers +The ''[[Cornish Guardian]]'' is a weekly newspaper published every Wednesday in seven separate editions, including the Bodmin edition. + +;Radio +Bodmin is the home of [[NCB Radio]], an Internet radio station which aims to bring a dedicated station to North Cornwall. + +==Notable people== +See also [[:Category:People from Bodmin]] +* [[John Arnold (watchmaker)|John Arnold (1736–1799)]], watchmaker, of London +* [[John Thomas Blight]], artist +* Nicholas Boyer, the mayor of Bodmin, hanged for rebellion, 1549<ref>Rowse, A. L. (1941) ''Tudor Cornwall''. London: Jonathan Cape; p. 285</ref> +* [[Chula Chakrabongse]], philanthropist, Prince of Siam +* [[James Henry Finn]], soldier who was awarded the [[Victoria Cross]] +* [[Thomas Flamank]], lawyer, co-leader of the Cornish Rebellion, 1497 +* [[John Gale (journalist)|John Gale]], Australian journalist +* [[William Hamley]], founder of [[Hamleys]] toyshop +* [[Alice Hext]], garden developer +* [[William Robert Hicks]], superintendent of the Asylum +* [[Al Hodge (rock musician)|Al Hodge]] former guitarist with the Cornish band [[The Onyx]] +* [[H. C. McNeile|Herman Cyril McNeile, "Sapper"]], novelist +* [[Saint Petroc]] +* [[Sir Arthur Quiller-Couch]], poet, novelist and critic +* [[Dan Rogerson]], MP +* Rory Simmons, musician<ref>{{cite web|url=https://www.theguardian.com/music/2011/feb/10/fringe-magnetic-live-review|title=Fringe Magnetic – review|first=John|last=Fordham|date=10 February 2011|publisher=|accessdate=12 October 2016|via=The Guardian}}</ref> +* [[Henry Southwell (bishop)|Henry Southwell]], vicar of Bodmin, afterwards Bishop of Lewes +* [[Thomas Vivian]] or Vyvyan, Prior of Bodmin, titular Bishop of Megara<ref>Brown, H. Miles (1964) ''The Church in Cornwall''. Truro: Oscar Blackford; p. 40</ref> + +==Town twinning== +Bodmin is [[Twin towns and sister cities|twinned]] with [[Bederkesa]] in Germany; [[Grass Valley, California|Grass Valley]], in [[California]], United States; and [[Le Relecq-Kerhuon]] (Ar Releg-Kerhuon in [[Brittany]]), France.<ref>{{Cite web|url=http://thecornishlife.co.uk/twinned-towns-3-cornish-towns-surprising-sister-cities/|title=Twinned Towns: 3 Cornish Towns with Surprising Sister Cities|last=|first=|date=|website=The Cornish Life|access-date=2016-03-30}}</ref> + +==Official heraldry== +W. H. Pascoe’s 1979 ''A Cornish Armory'' gives the arms of the priory and the monastery and the seal of the borough. +* Seal – a king enthroned; legend: Sigill comune burgensium bodmine +* Priory – Azure three salmon naiant in pale Argent +* Monastery – Or on a chevron Azure between three lion's heads Purpure three annulets Or + +==Official events== +On Halgaver Moor (Goats' Moor) near Bodmin there was once an annual carnival in July which was on one occasion attended by King Charles II.<ref>''Brewer's Dictionary of Phrase and Fable''</ref> Halgaver is in the parish of [[Lanhydrock]].<ref>Ordnance Survey ''One-inch Map of Great Britain; Bodmin and Launceston, sheet 186''. 1961</ref> + +[[Bodmin Riding]], a horseback procession through the town, is a traditional annual ceremony. + +==See also== +* [[List of topics related to Cornwall]] +* [[Bodmin (UK Parliament constituency)|List of Bodmin MPs]] +* [[Bodmin NHS Treatment Centre (Bodmin Hospital)]] +* [[Bodmin manumissions]] +* [[Beast of Bodmin]] + +==References== +{{Reflist|30em}} + + +{{Cornwall|state=collapsed}} +{{North Cornwall CP navigation box}} + +[[Category:Bodmin| ]] +[[Category:Towns in Cornwall]] +[[Category:Cornish capitals]] +[[Category:Civil parishes in Cornwall]] +[[Category:Cornish Killas]] +[[Category:Manors in Cornwall]] + + disnkv72gqngow52boaebr7ctrxhsri + + + diff --git a/tests/tinywiki-latest-pages-articles.xml.bz2 b/tests/tinywiki-latest-pages-articles.xml.bz2 deleted file mode 100644 index cc1fe47321337ae0f255160e90c91ca7c42fa2aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9780 zcmV-4Cd=7ET4*^jL0KkKSxfG?OW3oXXW>ySay;#kRI*yf&?}w&k~QVN@Ngf>n1{PUm)% z>I6$oWYMnUyGoTd15T)EI%%NMrcx5C-X3`JNRvQr&JHmh$`6F00vaZmMuw9h6G@s( zrk|-lNZL`NeyRC2O+8Q51_qJpXaH&I2kL`B2p~deK{UyNC!%V8sp@)1l+!gHpazWx zsQpj_(f|Nqspv&Co~F`h+C+Lx&;m5Us4$uX2*!ajGGI&yVl==cA|Qk`1ZZj^dY;6Y zPti>@XnLMdJs=xU&;SO200V#kXaE`mAOHYp01Y$%0001J0Fe;@5CjC%O$5oNni`l* zG@5#zp!FICgG@~{GyrG=B!MFYuo8g#3I5;F`_w&UDnT8-p^RtbkABjFb%_CkA*D;v zBqq?1tv7xZSpHM*{W^aK@$LkAsEn9fi*>i0Z2tXi4FneAHkUuDEm0X zQf<48PT<`w)sFR&?hYRs_k6!KqwcAY{C)0qo3M3}Z|#&6`+s$RH#4_c?W6Xt^~q># z>bpM*d@0-Swr%{q8Sb<4TlgP;FCst)JJLwQgMBWcA=l z{vUzF?V!==3qu_%ee<{XQxE8$iyEF!mWG(@>ZfD}RDYAi(+RC%Zsh+PXTMF_cs{+z z9Ruku&sdZOq@aTjgPe(6=je223WwUo`c3)qK;nX`m&>Y5ov>C1+|lOIsmY(c9UXCO zm3B1+O444B8=wA}YoD?-qQgtO@(;aT4Lk~>Gxov~)+gTaLY7GpjWC@HI$g#_na1~y z$8!vspFDm`d~a@BbJeWlZflwFIAdin*&k~D5rrpJl$Z9ChFDE zzWY7Jn+qk*{-AQ|Z-ORQYaqrid~lglNYiv!cKN)g$=XZaKC`8B+vM1Du!Az4uDhLu z7+K#;&H9y^cuUyYO##X$TDL5!&v%-i6?W;>QDmOyKL_o>(vFNXd$B3DPP)5t`3Bj& ze#eJzyRZ?H$JWtdco#Qac_nlK!kB|VnDKXIcDu?t>8RiQ>67xgF<{orC}?vp3YOl@ z4;Lmf)nIf#!#$EyWxcv*Ihk_281!}+J&t(abMqdI{M5IZuPG>Sw|` zG!ce_?_xmoV~sNYPm=>8sy(lU5PZi;e5PqS7-PFb8OJEZA_rJdhGPa{Qvp#* zUK?yL@*g`u(sb{%ZDTqawVi z_}PP)26TGx%f<1U?~ldktO();#n;!mp|Qt4j4aN+Db4y_tJb=Rd7Z+kz*Say>1R*N zvRi0we;1zuT9!#&dbrlL(m|HqM^dh$ecqeX5!cM@) zy}^xE-foFRNnOz6ejs`phm6Z_haRt1VYyqGdDBT4qhB9$UhbxS{B^hAZ--9-xJZ0? zHsZ2ciX<9YKMwX9du9eWvV!vM;~~Np?~^&+Fkwi_2WPyhP&`X$7rI(+B5iAjYD-yw zpkWS9Yn|;uyon)`#<}LwV<;V&6;{ViG&q+-Q&Uw_W^B>=Ef2aN3rsoHt+b<615XI| z`+NColNi1LG$i)qyQ&p?N6qDDjp9dLJbJ$_cMZoMj~c&ccMa2K<0-=_!hB9iHT zsJh$AVGJUuc;VZOYkT%@WxmgFcTF)a8Z!zs$^?~Jr+b*O-d$7ZO3G2W;*l|Z;6H~* zYX=Ca1~Aq~Wq_8c4q}Wuvfd@8#zkJoO<4@iE`pQbzFtiVjsb?`&cQio%x7@#uc8NW zfmT8ZeQU8k`*`+^Yo%iwI&<*H!)F>wOcL258-A2sAvdxB2PX+y&G!i0IgJ?upu1JA zCpyYwYJj(`u72uk?mI(CZGN-*1k>ZX+%3^>;5{FOd!fyRyR)xHPYxwC>F%Jiyb6ot zUCf3R1jYkv@ONQO>;ToI+D(EFlb^)~_8h$Mj-N~i&Duh?4^95?xGe%|=L#+x@ZLu_L|6bRhXM~}~&c!Mq5T^G`VArobp z-LhRBoR{x)-IjIc+jX`cZFcQlOHJNg8aYvHmzj7V2K^V?OiL`;M*I&(m9(a*H#ENs z-+SQqspX~7QtnG!O{$W;T%a!EgMuu3;hm+q#G&W}X2 z#zMlG!t2@M=^g(0YhMX@zECKtp0py!Hl)VGXbsV`M@%6CQI1y066`|f7hEKl>G^+t zdD68GDBf7*G_S@wV}%=u;Q#q{_a*ZK?5s~)YOcl!jZbEK;s|Ng;`GD7TvYkx3Xh7(|_ybL-BmPj#lUK`nP?? zk7%8Ubt$Jo&Ur;C-&4}O(5M{*H3i41ge&LU79%!#?Vz{)3%JJA)<36AVQSXe5~UV| z^!9f~5$1{SUs@1!V@;kniPzj-YfV<1*zf$Fz3&}CV*pU$P3Gbd){|g4Wfx;w`Sz9o ztkFUY8eP4x1sDZRUSpZ1ze*CcK|S>Mw+1!=k13D~wA;{HR0{>Dq;LXE21szmr%o?0 z=d9J@`VMJ2J?@t`(z5SJ#2!+_*uYWavXCBQ00N@K){H=T$d2~Crw6N#>O*_P2np;W zSwF%6chgr2+b5tfZMe+f#*&dL>mOG*GV#}5Bsq3-)oqCQK$N&|a?Cw0h7qAq(8gSV z`M;&oSz$j%s%0wf>b!&EK%KleYk6^zlpLN9dopunyJ#2863H0Y-HC2X%jW>%D)TVk zMNWKaP6}ptQr=ep*cxaAqD0wzKnDgyVkzw1Zvn`z^Ds8Eb0V&*%Ert3XR^`4_81~u zkw!?Ii3>D=(9m&-QUhWGH=m91#{8JS1${Gq^sk$e>FTl6ZnR2vEzf#eQf|ayJM5Q5 znUu?3%P2(ILb>y!PBcoCe)P6bkZnCiZm%4*T%b!kQn^NtqSE5%4cp&0eJqtRjq|n) zzLo>05RC_IZkBIPv%<74fM|GR7sgfcsHGI^Fq)^zO11NoTyWPW*|fZUse1gevuxW| zKy0R`OC@dXP#1Iv(G1Lz`DAA3?x{MTWtxaF5HKs?G*UHltigi|K*JAv&FFrIztsBu zHZ(CbhQ!)3OS3Ifaq%>cZ_>;D76u%W4M!|hq!#GjnAfpKq}o;Km~FGd9BsKOl}Sug#uU>wjHp>j=sz72FJ{(*lSH&jTCqz4ckP`kZIRBnwMJEiY=ohQCZN_Lo^i^yM*{vg*O9LM z^&7&gq?Ig6#J<^-@?&IT(I2EEn8G*1&URQ-VD*(qt!!2Cv$6PTIel{(fWbV5ur7#NqzQ=-N`X|Ac@%fId?*zxhtrg)ZGnqiyPm`JQ6o!WTUd+Q zA)Fn!)R7ZdBVX$C{hnA3?T*?F`8eEY%|nw2@Wc0M-&99?i~kgenTX4aBu0!UWn`~> z64inv!bk)WM1dIsk!sF%4M{FPGDToXn>aMAiW-A8;+9+)2HKrI7G4hsj5^Y3!X0g3 zd1!f^W0eA22K0q!uio|Xqb(5d@%ANa9EhXoail@!l11KZ_o+?|eV}{2l|YbCNA-!~ z(AYMZlSdW@Hi>B?#?DO%NYIFA3sD6V>=6)7^+5#r&%y8X+J4P(io5NPo&VD>RK6N# zDUxS1C(y-jra`>uauARqGx2wPYKJYY?gYK3-PTSA#Uw%P&w`hR(&t%a`!*9SS@ zn(Z;J+fQemzjD_`9lPD-1ngpZkrWg}R21{zWrVe?R6z+`tXLjEpWftOCaX%+7W$AYnqM z3jRxazb_op#4iy%6hI~m?aiX7iRPKO;eZ9`@;l~ZAFhWYsQ_Nep)eEakw(1}U1S73)6S|C$$CCuTnHCl_`HCx-G`NJlF@uGAPlq-=j0-Z52|vAG^(PVge8t9W0x;CQPP)_9>qUx z_~hGu)o`(*(QOw!w-&Q8pl!aZKr`1gDTunI;VqV_Qj=vv~>wgMW32eD$#c$cvg%|EjleI@; zX>?S17%C1r)`_y)i$ZT*JfEN0)zWETZ~1hS+SWyg&4W!pdm5g1N}}4s33#j86m30F zrcaeD^a~BFd0ais*@&h6m4Kb8Ug54}UP=l~F=WjE8c3n7Kqw04FnA6&<16!7&{z~U zJA=nbGOWf!KCfgP+kQ*EXJrs@?ChHZCj@nksnTbHO5$L?#@G-B4oKJrHSF8xiw0$- zhv>W#5ZV|*n^0j6c(+wijCrZkXAI4$sJd}7?>ie!WgWc=S|8K}fyfMKv<@UTp@zqMv8|^Uwv!l& z(ctY1mPlpxy*o+Fbmf5M~rs*4e#6clA(kd}^wV%}h1H@odw3Mt~emgOQ}YO@mnTFvi$C z-AHJlA5Un=F*J5UWF!ShF>qrmkf#{*j@0lH$F{|5$H3#LRfqwMFYO~ssXn6gYx3EL zhjGIEbh#?ie8d=NN+Er0C4E`vBjsDc%!RX8_z4C)|n#|VJHG!qX<2BL3a(EG^ zsvk2A+O{Riqu)1cF9SypbVr|tnH{ft!dnCFw2ZTrMLx2+ZXsM5Hr>CBh7zMTrV2X3LB-Gnk53Qfh-CD1{b0DVrt~ zEy1BFr#0b#F`5e^TYYqbA#^}=R6qrq(J%l&r)fYAms5zSK#r8G=-M`y34^Vy^ni>s z3Z0f?j6b`LFnhP_3O3d`Ha3o8+->If zR)PFmc;iD!A<~hnhYZ4o>q8?6DW1eH5e-KYhnX>1C=@+{lVfj}u&i6R2M@eXMeJ5< z1a0Wqe)|C^*j@olTO8`}EoH?~Fnvo~PlsGe)kNiiD0p}!PeylH*d@AN{|%90W5+hk zcFR3GXI7uYX+U3p4_(Q}(Zdm=eOqWI&<8n{bbG%v9);zpbWHxv|*QQwS&-bevt zE&!`}1a|psj+H^Mc~T*1MC8b7wTxv}FnNxFW4Wx`lq4Jj8y%u%o(&ZRAQNNa3QQZ^ z6r`Lnwwp-H(YomyebA$3RNvEx1*N-jm0y!q7zTvh~Y zv@W+wtULFfjGHZDO@Yq%M-?m=*&&h8wYJBfoWd+MH8|_7*$R+O;Z50e5!DI|L2*Er zLMHv!Pl@NuN1QK;i;CK0(2B8^5e3Y`$B$|Q=RF>0<5L5*nnWi!KED%UjVBCwsO z+zLswFlmjjZ4EZlV8+JV281?*+CyO41~ijsO@MPgd`c{7Hrn8uclwi4+yAN_32FBaF zX|`dnI|B?mhZ`8kM!9b%WAi-Y*~$Y94hcyQLGe9y)x9{HNtS+3%j*_)m|3momSDI~ zk$`k)Y^rNgwVYe#Le_E{vKsUO?)d|AYcpOZ9}czCMfX0vW$lj86`*_o4YZn5^l9wq zgj0NSrzLaQAmkVtBK+7e{^A}F-JK@ZT#&@^?h!H=EX%Uoq+|p_v>KS~_2=^RMjh`A zzI;V~hB@WUHh8Q`%9{LM10Tt}HC5g4NC!TO{L1z)O`~h~G*C32B8@RLFln%DD~d21 zJR(6H*=rH;F%U7c2d%N=GVEJABdR3EGe*AzVBpK-43&BO#=?f^yN%3g)e0p#J+TP^YR2~+q$Q{kfoWxvmUAnr;%r;YfY_>YXPyg)fmWx z*fy908wA=@RZO95TvT)6pA9r8dEk=2asu?m!11ygZFFm}bh+cvXEA{rZ8n}np$Y3g z8E0ZadRRX{6Pzq=ULY@yEP~!lk6z^3YhjkaF7(HJ!+%2hgE>do40PNb<-8>$GP>AH+1O48+Aq}rmT z4Y=bIOwm|=l~M=IA$5R2!wl$DsZlb4)I4lE(Lq3NmCj38E?cp0VeK!z z;;V$hEnsj4A~Xq+;w4ceRY(+4fN=f1;>eB<-f#(g&?k3_Y6nDJHK9T4u;uopIT>N}9v z6cs-PY+l$af>&SaFiWy~j*HCu*fkX;@;f>SDDVx7LjRn|2JB{wIT6zB5NM_btZ<`#H0;#6o`7>O0EcMFp6PiwKEad@ebsMcFx+^HH?qK1`6t;M!5?PWQur+8*W{-+>yivB_-47TBty>p%x?=TXeMFnM^u(}#Xln;#&g%yE zsM~rGMX{RtPb9PTRIrbx6xz%Ih{QhcJ2I-P8$8D7TQuYF#`S0f{YTV5kgA&o#tozG z+nyvJ78?=}WW)zqw`sdv-EDw-u(VXHvCQQGl~hdgE$hr}@H{HZS96|&8yjpGvW$c8 zvR7j`u!^GvTw%HHReK}_YcO{XmU04BkYTEYSGu(Apk~ytXL|@9XVJ7No5>!}gQU@T zfQ}5k;EoH)o^CsxJ;BPDG-({;Top^hBXgsZgA^9%(n>@W9e(wQ>9a2#%;-oj@feyg zl|fC$hi9HUrPfT9j|>h91H9ZdbSEO}n<@0k^|S~xSxg=?2n@l~m7lHTBN^g$P0FS` zy9i$@OO~`~*ncRq(fxslgEkp!1|A?%nn2oMG$zCB)q>45n*(a0US({H`a>j%UM`DP zF_fWmNj-ep&!Lzaw1N zb;^qdk5(!zxv~v+RnpVJM+Z@4k)SGb*;9w)mDi}rqErSm36_MOr>0GzY8s+TS7a1a zgI{w?193<9K*K71*NJ2-2CaDUG3!BeT!Du-X^qJn(j<#v=(u0@>5r?SD*4R5vWpsiKb0e=AVy_`8I=MN=*k;t#E#)km<_g5Z4h++Dzny=pd}!fAQ(O~^u#?5 z5!C&j{qoEGxX{;n_I!ofJsyKI&ja2BLrgm0B9m(jgBoL|PVE#~=RY}gOhY|QKa1;|2dZKN!T`rnUrJ>mGCtZO9SDm06MvW=2A*9SBZyLIEIU#5}}lljtq8ar3E&Pm?4V;FlT9B4sp9q46>?gM`b|yNI0sDAgG^tU$K6VlMkBi4$56sWkCjK>(8+NX)POYk+HiT3z+pg9d7%Aq`_|Xb z8uV9s>*6X3wibE&{m}y@A%Q{P)lvk+{9WxsE$+8&s4%F8dLlupq9#0>F?W}3Wxx$c z7eKrmS-3)vh!2bjRbpB*r=}C4jzvs@f}xHZWsb&xfUcSPWi_6IiB}a+e2?{Ge~QaC zYocBxV8S3Vda&M?UEKiV?}Ut%cIN9~R|S9oYjG=qiRVZmx=q zs0B%jF-^AXBd++pfN5Q(;-@fbY%U+etu9nC^fD6%FkMkln}`ZkE|6)1^K!1+sw>IA zW(%R%Yxv~dhBjJ{yMEfy54LxXyvx%)y)R5m?X0LmMPeI^hqV@%? zTdf*fD5d34Gw0+G8xWHLfDItD3W1%%kR%QOKo}gY%yZ9HLqX&-bsf>5F)++)7}XRQ+~H@Je+OZ8V;v9UB)pgovDWL8Ds*qwOQ6WWp+F5tO8G^e zoQ;5Wf%NH?Pr3%%7mbj}V`=9IPgtKU6k?by_2k*TAj}NF{~d^{SS-2XcrhTX3bQ8r zDLz!ZHL$_9JKBbenh0WT4IIbe*996|w};`voq7*p2crCkdAG0u#er`lH%b{aHU?M0 zWCGQejbb|ys~hHo8p6nK$~cT-Z=fL%z$hPxk&+8uNSUAEQ`s2~svg6X`zV7aoY501H{01tn zh@vk(Q;3y5gdV#*DRS`QOcfWx!awZvG?|sw4bq=Hl@iO>V1X4)oVDX6K$&ZMKRJf$ zqwbqJyKM@@P6`iNlyv%BsN6oJrcy#dzI!n|H{5c)DI{y&XeHriQmqX1By%-iV!fN2 zjGRr4NCd=E!N$#E9S4xJ94_qHSF&v@u1ZJHwLN$&7nT`#!1+Mv=1ENHP8$4M3horn z{M>=?U;-ZhC=1S$^JlqtKSn1=@W~hsAg37yCU7T#7KRKX45(W{m+EEE@GKd?zYw6b z)i4InnT0mnUphesm$D`51+zj5--Gd0Aou;yc)>Pn0uE=NC)BaX_R`k`YB`Lg3NwbG zodAnI^`96X=shOI962^O0wW2L#^ivN2EdfX$U@WcG+4wM_E>h@6$1}XdQ`SZ(6%D@gLF07b}FsJIo+YTVZAE)9lzD7%rO!>*VZ@AHW6SBY5|KuEL<-Q1XwO1E7qpI)G z^@~^6esQh^&79sIm3pd+`&<4+M{+A6EA4#{+lLtb#iBKT2GPJ|+xp|r-IWwOmt*SX zj8=qJhBhpsbFVv^FlJHeh8f1=Pv2*&_#z;5ONYYBUNN_(=632im#uP1H%^=}A!CR0 z{pZC5|FHO<6XJjHgT+sX$f^!eju~+HdH(O4^YZyHp!zte&H7HHc&C&&^YQbNWY{xb O#oUoj6eKfPYcc?Z4wSe6 From 69fd959052db046581bccf61d85c38f2e3b0c6da Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 15 Feb 2018 13:49:48 -0500 Subject: [PATCH 24/42] cosmetic changes to logging --- scratch.js | 22 +++++++++++++++------- src/02-multithreader.js | 2 +- src/index.js | 6 +++--- src/worker/_logger.js | 31 +++++++++++++++---------------- src/worker/index.js | 8 +++----- 5 files changed, 37 insertions(+), 32 deletions(-) diff --git a/scratch.js b/scratch.js index 43aee81..7390f9d 100644 --- a/scratch.js +++ b/scratch.js @@ -1,11 +1,19 @@ const w2m = require('./src') +const drop = require('./tests/db').drop +const config = require('./config') + // const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' -// const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' -const path = './tests/smallwiki-latest-pages-articles.xml' +const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' +// const path = './tests/smallwiki-latest-pages-articles.xml' const dbName = path.match(/\/([a-z-]+)-latest-pages/)[1] -w2m({ - file: path, - db: dbName, - batch_size: 1000, - plaintext: false + +//delete all pages +drop(dbName, config.collection, () => { + console.log('dropped existing pages from ' + dbName + ' - ' + config.collection + '\n\n') + w2m({ + file: path, + db: dbName, + batch_size: 1000, + plaintext: false + }) }) diff --git a/src/02-multithreader.js b/src/02-multithreader.js index 39fa733..5c641eb 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -53,7 +53,7 @@ class Worker extends EventEmitter { } cpus.forEach((val, key) => { - workerNodes.call.xmlSplit(options, chunkSize, key).then(() => { + workerNodes.call.getPages(options, chunkSize, key).then(() => { workerCount += 1 if (workerCount === cpuCount) { workerNodes.workersQueue.storage.forEach((worker) => { diff --git a/src/index.js b/src/index.js index 207b08b..0b28e1e 100755 --- a/src/index.js +++ b/src/index.js @@ -26,7 +26,7 @@ const main = async (options) => { writing++ res = await writeDb(msg.pages, options) writing-- - console.log("worker " + msg.pid + ":" + res + ` batch took ${Math.round((msg.timeSpent.total) / 1000)} secs. --doArticle()-- took ${Math.round(msg.timeSpent.doArticle / 1000)} secs.`) + // console.log("worker " + msg.pid + ":" + res + ` batch took ${Math.round((msg.timeSpent.total) / 1000)} secs. --doArticle()-- took ${Math.round(msg.timeSpent.doArticle / 1000)} secs.`) } }) @@ -44,8 +44,8 @@ const main = async (options) => { // await init(options) setInterval(async () => { count = await options.db.collection(config.collection).count() - console.log(`pages: ${count}`) - }, 5000) + console.log(` - - pages: ${count}`) + }, 10000) } diff --git a/src/worker/_logger.js b/src/worker/_logger.js index c348d2e..135c15c 100644 --- a/src/worker/_logger.js +++ b/src/worker/_logger.js @@ -1,19 +1,18 @@ const log4js = require('log4js'); -module.exports = function() { - log4js.configure({ - appenders: { - cheese: { - type: 'file', - filename: '/tmp/worker.logs' - } - }, - categories: { - default: { - appenders: ['cheese'], - level: 'info' - } +log4js.configure({ + appenders: { + cheese: { + type: 'file', + filename: '/tmp/worker.logs' } - }); - return log4js.getLogger('cheese'); -} + }, + categories: { + default: { + appenders: ['cheese'], + level: 'info' + } + } +}); + +module.exports = log4js.getLogger('cheese'); diff --git a/src/worker/index.js b/src/worker/index.js index dcfa4d2..2cc5a75 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -1,19 +1,17 @@ const LineByLineReader = require('line-by-line') const init = require('../01-init-db'); -const getLogger = require('./_logger') +const logger = require('./_logger') const parseLine = require('./01-parseLine') const parseWiki = require('./02-parseWiki'); -const xmlSplit = async (options, chunkSize, workerNr) => { +const getPages = async (options, chunkSize, workerNr) => { var startByte, insertToDb, state, lr, pageCount, - logger, pages; - logger = getLogger() if (workerNr === 0) { startByte = 0 } else { @@ -96,5 +94,5 @@ const xmlSplit = async (options, chunkSize, workerNr) => { }; module.exports = { - xmlSplit + getPages } From b049faf8512ceaf047fe715fe04ecb61ac6fcfc9 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 1 Mar 2018 10:06:07 -0500 Subject: [PATCH 25/42] rename and cleanup code --- README.md | 35 ++++++++++++++-------------- bin/{wp2mongo.js => dumpster.js} | 0 old/03-write-db.js | 40 -------------------------------- package.json | 4 ++-- src/02-multithreader.js | 2 +- src/03-write-db.js | 31 +++++-------------------- src/index.js | 6 ----- src/worker/01-parseLine.js | 3 ++- src/worker/_encode.js | 1 + src/worker/_polyfill.js | 3 ++- src/worker/index.js | 2 +- 11 files changed, 32 insertions(+), 95 deletions(-) rename bin/{wp2mongo.js => dumpster.js} (100%) delete mode 100644 old/03-write-db.js diff --git a/README.md b/README.md index e2b1836..27c27ea 100644 --- a/README.md +++ b/README.md @@ -6,16 +6,16 @@ It's a javascript one-liner that puts a highly-queryable wikipedia on your lapto It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into *almost-nice* json. ```bash -npm install -g wikipedia-to-mongodb +npm install -g dumpster-dive ``` ### ⚡ From the Command-Line: ```bash -wp2mongo /path/to/my-wikipedia-article-dump.xml.bz2 +dumpster /path/to/my-wikipedia-article-dump.xml ``` ### 😎 From a nodejs script ```js -var wp2mongo = require('wikipedia-to-mongodb') -wp2mongo({file:'./enwiki-latest-pages-articles.xml.bz2', db: 'enwiki'}, callback) +var dumpster = require('dumpster-dive') +dumpster({file:'./enwiki-latest-pages-articles.xml', db: 'enwiki'}, callback) ``` then check out the articles in mongo: @@ -34,7 +34,7 @@ db.wikipedia.count({type:"redirect"}) ### 1) 💪 you can do this. you can do this. -a few Gb. you can do this. +just a few Gb. you can do this. ### 2) get ready Install [nodejs](https://nodejs.org/en/), [mongodb](https://docs.mongodb.com/manual/installation/) @@ -43,9 +43,9 @@ Install [nodejs](https://nodejs.org/en/), [mongodb](https://docs.mongodb.com/man # start mongo mongod --config /mypath/to/mongod.conf # install wp2mongo -npm install -g wikipedia-to-mongodb +npm install -g dumpster-dive ``` -that gives you the global command `wp2mongo`. +that gives you the global command `dumpster`. ### 3) download a wikipedia The Afrikaans wikipedia (around 47,000 artikels) only takes a few minutes to download, and 10 mins to load into mongo on a macbook: @@ -55,15 +55,18 @@ wget https://dumps.wikimedia.org/afwiki/latest/afwiki-latest-pages-articles.xml. ``` the english/german ones are bigger. Use whichever xml dump you'd like. The [download page](https://dumps.wikimedia.org) is weird, but you'll want the most-common dump format, without historical diffs, or images, which is `${LANG}wiki-latest-pages-articles.xml.bz2 ` -### 4) get it going +### 4) unzip it +i know, this sucks. but it makes the parser so much faster. On a macbook, unzipping en-wikipedia takes about an hour. + +### 5) start it off ```bash #load it into mongo (10-15 minutes) -wp2mongo ./afwiki-latest-pages-articles.xml.bz2 +dumpster ./afwiki-latest-pages-articles.xml ``` -### 5) take a bath +### 6) take a bath just put some [epsom salts](https://www.youtube.com/watch?v=QSlIHCu2Smw) in there, it feels great. You deserve a break once and a while. The en-wiki dump should take a few hours. Maybe 8. Should be done before dinner. -### 6) check-out your data +### 7) check-out your data to view your data in the mongo console, ````javascript $ mongo @@ -87,7 +90,7 @@ the download will take an afternoon, and the loading/parsing a couple hours. The ### Options #### human-readable plaintext **--plaintext** ```js -wp2mongo({file:'./myfile.xml.bz2', db: 'enwiki', plaintext:true}, console.log) +dumpster({file:'./myfile.xml.bz2', db: 'enwiki', plaintext:true}, console.log) /* [{ _id:'Toronto', @@ -108,19 +111,15 @@ let obj = { skip_first: 1000, // ignore the first 1k pages verbose: true, // print each article title } -wp2mongo(obj, () => console.log('done!') ) +dumpster(obj, () => console.log('done!') ) ``` ## how it works: this library uses: -* [unbzip2-stream](https://github.com/regular/unbzip2-stream) to stream-uncompress the gnarly bz2 file - -* [xml-stream](https://github.com/assistunion/xml-stream) to stream-parse its xml format +* [line-by-line](https://www.npmjs.com/package/line-by-line) to stream the gnarly xml file * [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to brute-parse the article wikiscript contents into JSON. -* [redis](http://redis.io/) to (optionally) put wikiscript parsing on separate threads :metal: - ## Addendum: ### \_ids since wikimedia makes all pages have globally unique titles, we also use them for the mongo `_id` fields. diff --git a/bin/wp2mongo.js b/bin/dumpster.js similarity index 100% rename from bin/wp2mongo.js rename to bin/dumpster.js diff --git a/old/03-write-db.js b/old/03-write-db.js deleted file mode 100644 index f0dabc4..0000000 --- a/old/03-write-db.js +++ /dev/null @@ -1,40 +0,0 @@ - -// -checkWriteSuccess = (preCount,postCount,arr) => { - if (preCount+arr.length === postCount){ - console.log(`all parsed documents are inserted succesfully. total docs: ${postCount}`) - } - else { - // feature sugg.: - // let's check the difference betw arr & result obj. - // make a note of the ones that couldn't be inserted eg: - // db.collection("insert_errors").insertMany diff - // and maybe add an option to cli to only try the ones - // that have failed. - console.log("some documents couldn't be inserted.") - } - // return results for further goat yoga. - return -} - -const writeDb = async (arr, options, coll) => { - return new Promise( async (resolve,reject)=>{ - //let preCount = await options.collection.count() - //arrr = [{arr:arr}] - options.db.collection(coll).insertMany( arr, { ordered: false }, async (err, result) => { - if (err) { - // collect insert errors... - // tbd. skip duplicate key errors - // do not insert if err.writeErrors[x].code = 11000 - // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) - } - - let count = await options.collection.count() - // checkWriteSuccess(preCount,postCount,arr) - - resolve(`${arr.length} docs inserted. total:${count}`) - }) - }) - } - -module.exports = writeDb diff --git a/package.json b/package.json index bc78f43..884fda7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "author": "Spencer Kelly (http://spencermounta.in)", - "name": "wikipedia-to-mongodb", + "name": "dumpster-dive", "description": "get a wikipedia dump parsed into mongodb", "version": "2.4.0", "repository": { @@ -8,7 +8,7 @@ "url": "git://github.com/spencermountain/wikipedia-to-mongodb.git" }, "bin": { - "wp2mongo": "./bin/wp2mongo.js" + "dumpster": "./bin/dumpster.js" }, "engines": { "node": ">4.8.6" diff --git a/src/02-multithreader.js b/src/02-multithreader.js index 5c641eb..44f95a2 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -11,7 +11,7 @@ let workerNodes = new WorkerNodes(__dirname + '/worker/index.js', { maxTasksPerWorker: 1 }); -workerLogs = {}; +let workerLogs = {}; workerLog = function(msg) { var name; diff --git a/src/03-write-db.js b/src/03-write-db.js index b246f38..3c8b5ab 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -1,35 +1,16 @@ const config = require("../config") -// -checkWriteSuccess = (preCount, postCount, arr) => { - if (preCount + arr.length === postCount) { - console.log(`all parsed documents are inserted succesfully. total docs: ${postCount}`) - } else { - // feature sugg.: - // let's check the difference betw arr & result obj. - // make a note of the ones that couldn't be inserted eg: - // db.collection("insert_errors").insertMany diff - // and maybe add an option to cli to only try the ones - // that have failed. - console.log("some documents couldn't be inserted.") - } - // return results for further goat yoga. - return -} const writeDb = async (arr, options) => { return new Promise(async (resolve) => { - //let preCount = await options.collection.count() - //arrr = [{arr:arr}] options.db.collection(config.collection).insertMany(arr, { ordered: false }, async (err) => { - if (err) { - // collect insert errors... - // tbd. skip duplicate key errors - // do not insert if err.writeErrors[x].code = 11000 - // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) - } - + // if (err) { + // collect insert errors... + // tbd. skip duplicate key errors + // do not insert if err.writeErrors[x].code = 11000 + // options.errCollection.insertMany(err.writeErrors,{ordered:false},()=>{}) + // } let count = await options.collection.count() // checkWriteSuccess(preCount,postCount,arr) diff --git a/src/index.js b/src/index.js index 0b28e1e..430476f 100755 --- a/src/index.js +++ b/src/index.js @@ -14,31 +14,25 @@ process.on('unhandledRejection', up => { const main = async (options) => { params = Object.assign({}, options); - await init(options) - mt.worker.parseXML(params) writing = 0 mt.worker.on("msg", async (msg) => { if (msg.type === "insertToDb") { - // console.log("-->",msg.length,msg.pages.length) writing++ res = await writeDb(msg.pages, options) writing-- - // console.log("worker " + msg.pid + ":" + res + ` batch took ${Math.round((msg.timeSpent.total) / 1000)} secs. --doArticle()-- took ${Math.round(msg.timeSpent.doArticle / 1000)} secs.`) } }) mt.worker.on("allWorkersFinished", () => { - setInterval(() => { if (writing === 0) { console.log("all done, exiting...") process.exit() } }, 500) - }) // await init(options) diff --git a/src/worker/01-parseLine.js b/src/worker/01-parseLine.js index 02ffb57..48dafc0 100644 --- a/src/worker/01-parseLine.js +++ b/src/worker/01-parseLine.js @@ -8,7 +8,8 @@ const startPage = function() { skip: false } } -// + +//brittle-but-fast interpreting of the xml file const parseLine = function(line, state, donePage) { //we're currently grabbing wikitext.. if (state.inside === true) { diff --git a/src/worker/_encode.js b/src/worker/_encode.js index 3500fc6..bf6969f 100644 --- a/src/worker/_encode.js +++ b/src/worker/_encode.js @@ -55,6 +55,7 @@ const encodeData = function(data) { } return data; }; + module.exports = { encodeData: encodeData, encodeStr: encodeStr diff --git a/src/worker/_polyfill.js b/src/worker/_polyfill.js index b816839..fe9cc65 100644 --- a/src/worker/_polyfill.js +++ b/src/worker/_polyfill.js @@ -1,4 +1,5 @@ -//string.includes is node>=6.3 + +//clearer than indexOf - string.includes is node>=6.3 if (!String.prototype.includes) { String.prototype.includes = function(search, start) { if (typeof start !== 'number') { diff --git a/src/worker/index.js b/src/worker/index.js index 2cc5a75..954d468 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -34,6 +34,7 @@ const getPages = async (options, chunkSize, workerNr) => { workerBegin = Date.now() jobBegin = Date.now() doArticleTimeCounter = 0 + insertToDb = function(isLast) { lr.pause(); process.send({ @@ -88,7 +89,6 @@ const getPages = async (options, chunkSize, workerNr) => { // All lines are read, file is closed now. // insert remaining pages. insertToDb(true); - // process.exit() }); return (process.pid) }; From 1571d32c1c2e82d0bcdf2dc52bfcdaee622399dc Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 1 Mar 2018 10:21:40 -0500 Subject: [PATCH 26/42] remove unused libraries --- README.md | 2 +- bin/dumpster.js | 20 +- package-lock.json | 2439 ++++++++++++++++++++++++++++++++++++++++++ package.json | 5 - scratch.js | 4 +- src/index.js | 4 +- tests/cli.test.js | 2 +- tests/custom.test.js | 10 +- tests/plain.test.js | 4 +- 9 files changed, 2465 insertions(+), 25 deletions(-) create mode 100644 package-lock.json diff --git a/README.md b/README.md index 27c27ea..13d208d 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Install [nodejs](https://nodejs.org/en/), [mongodb](https://docs.mongodb.com/man ```bash # start mongo mongod --config /mypath/to/mongod.conf -# install wp2mongo +# install script npm install -g dumpster-dive ``` that gives you the global command `dumpster`. diff --git a/bin/dumpster.js b/bin/dumpster.js index ed66975..5cc6b07 100755 --- a/bin/dumpster.js +++ b/bin/dumpster.js @@ -5,9 +5,8 @@ let main = require('../src/index') let parseArgs = function() { program .usage('node index.js enwiki-latest-pages-articles.xml.bz2 [options]') - .option('--batch_size ', 'Number of pages inserted to Mongo at once. (default=10)', parseInt) + .option('--batch_size ', 'Number of pages inserted to Mongo at once. (default=1000)', parseInt) .option('--skip_first ', 'ignore the first n pages, and do not pause while handling those pages', parseInt) - .option('--auto_skip', 'auto skip number of documents in the target collection') .option('-plain, --plaintext', 'if true, store plaintext wikipedia articles instead of raw json data') .option('--skip_redirects', 'if true, skips-over pages that are redirects') .option('--skip_disambig', 'if true, skips-over disambiguation pages') @@ -26,18 +25,27 @@ let parseArgs = function() { db = file.match(/([a-z]+)-latest/) || [] db = db[1] || 'wikipedia' } + + //assign defaults + program = Object.assign({ + batch_size: 1000, + plaintext: false, + skip_disambig: true, + skip_redirects: true, + skip_first: 0, + verbose: false, + }, program) + return { file: file, db: db, - batch_size: program.batch_size || 10, + batch_size: program.batch_size, plaintext: program.plaintext, skip_disambig: program.skip_disambig, skip_redirects: program.skip_redirects, - auto_skip: program.auto_skip, - skip_first: program.skip_first || 0, + skip_first: program.skip_first, verbose: program.verbose, } } let obj = parseArgs() -console.log(obj); main(obj) diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..4b1b2f3 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2439 @@ +{ + "name": "dumpster-dive", + "version": "3.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "addressparser": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz", + "integrity": "sha1-R6++GiqSYhkdtoOOT9HTm0CCF0Y=", + "optional": true + }, + "agent-base": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz", + "integrity": "sha1-1t4Q1a9hMtW9aSQn1G/FOFOQlMc=", + "requires": { + "extend": "3.0.1", + "semver": "5.0.3" + }, + "dependencies": { + "semver": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", + "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=" + } + } + }, + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "optional": true, + "requires": { + "co": "4.6.0", + "fast-deep-equal": "1.1.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" + } + }, + "amqplib": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/amqplib/-/amqplib-0.5.2.tgz", + "integrity": "sha512-l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA==", + "optional": true, + "requires": { + "bitsyntax": "0.0.4", + "bluebird": "3.5.1", + "buffer-more-ints": "0.0.2", + "readable-stream": "1.1.14", + "safe-buffer": "5.1.1" + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "optional": true + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "ast-types": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.11.2.tgz", + "integrity": "sha512-aL+pcOQ+6dpWd0xrUe+Obo2CgdkFvsntkXEmzZKqEN4cR0PStF+1MBuc4V+YZsv4Q36luvyjG7F4lc+wH2bmag==", + "optional": true + }, + "async": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/async/-/async-2.1.5.tgz", + "integrity": "sha1-5YfGhYCZSsZ/xW/4bTrFa9voELw=", + "optional": true, + "requires": { + "lodash": "4.17.5" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "optional": true + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", + "optional": true + }, + "axios": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.15.3.tgz", + "integrity": "sha1-LJ1jiy4ZGgjqHWzJiOrda6W9wFM=", + "optional": true, + "requires": { + "follow-redirects": "1.0.0" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "bitsyntax": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/bitsyntax/-/bitsyntax-0.0.4.tgz", + "integrity": "sha1-6xDMb4K4xJDj6FaY8H6D1G4MuoI=", + "optional": true, + "requires": { + "buffer-more-ints": "0.0.2" + } + }, + "bl": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", + "integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=", + "optional": true, + "requires": { + "readable-stream": "2.0.6" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "optional": true + }, + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.2" + } + } + } + }, + "bluebird": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", + "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==", + "optional": true + }, + "boom": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", + "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "optional": true, + "requires": { + "hoek": "4.2.1" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "bson": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bson/-/bson-1.0.5.tgz", + "integrity": "sha512-D4SCtud6mlEb48kXdTHU31DRU0bsgOJ+4St1Dcx30uYNnf/aGc+hC9gHB/z0Eth8HYYs/hr0SFdyZViht19SwA==" + }, + "buffer-more-ints": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz", + "integrity": "sha1-JrOIXRD6E9t/wBquOquHAZngEkw=" + }, + "buffer-shims": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", + "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=" + }, + "buildmail": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz", + "integrity": "sha1-h393OLeHKYccmhBeO4N9K+EaenI=", + "optional": true, + "requires": { + "addressparser": "1.0.1", + "libbase64": "0.1.0", + "libmime": "3.0.0", + "libqp": "1.1.0", + "nodemailer-fetch": "1.6.0", + "nodemailer-shared": "1.1.0", + "punycode": "1.4.1" + } + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "optional": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "optional": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + } + }, + "circular-json": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.1.tgz", + "integrity": "sha512-UjgcRlTAhAkLeXmDe2wK7ktwy/tgAqxiSndTIPiFZuIPLZmzHzWMwUIe9h9m/OokypG7snxCDEuwJshGBdPvaw==" + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "optional": true + }, + "combined-stream": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", + "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", + "requires": { + "delayed-stream": "1.0.0" + } + }, + "commander": { + "version": "2.14.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz", + "integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==" + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "cookiejar": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz", + "integrity": "sha1-Qa1XsbVVlR7BcUEqgZQrHoIA00o=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cryptiles": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", + "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "optional": true, + "requires": { + "boom": "5.2.0" + }, + "dependencies": { + "boom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", + "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "optional": true, + "requires": { + "hoek": "4.2.1" + } + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "optional": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "data-uri-to-buffer": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz", + "integrity": "sha512-vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==", + "optional": true + }, + "date-format": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", + "integrity": "sha1-YV6CjiM90aubua4JUODOzPpuytg=" + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "optional": true + }, + "define-properties": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", + "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", + "dev": true, + "requires": { + "foreach": "2.0.5", + "object-keys": "1.0.11" + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + }, + "degenerator": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-1.0.4.tgz", + "integrity": "sha1-/PSQo37OJmRk2cxDGrmMWBnO0JU=", + "optional": true, + "requires": { + "ast-types": "0.11.2", + "escodegen": "1.9.1", + "esprima": "3.1.3" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", + "optional": true + }, + "double-ended-queue": { + "version": "2.1.0-0", + "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", + "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=", + "optional": true + }, + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "dev": true + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "es-abstract": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz", + "integrity": "sha512-/uh/DhdqIOSkAWifU+8nG78vlQxdLckUdI/sPgy0VhuXi2qJ7T8czBmqIYtLQVpCIFYafChnsRsB5pyb1JdmCQ==", + "dev": true, + "requires": { + "es-to-primitive": "1.1.1", + "function-bind": "1.1.1", + "has": "1.0.1", + "is-callable": "1.1.3", + "is-regex": "1.0.4" + } + }, + "es-to-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", + "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "dev": true, + "requires": { + "is-callable": "1.1.3", + "is-date-object": "1.0.1", + "is-symbol": "1.0.1" + } + }, + "es6-promise": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.2.1.tgz", + "integrity": "sha1-7FYjOGgDKQkgcXDDlEjiREndH8Q=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "escodegen": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz", + "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==", + "optional": true, + "requires": { + "esprima": "3.1.3", + "estraverse": "4.2.0", + "esutils": "2.0.2", + "optionator": "0.8.2", + "source-map": "0.6.1" + } + }, + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "optional": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "optional": true + }, + "event-lite": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/event-lite/-/event-lite-0.1.1.tgz", + "integrity": "sha1-R88IqNN9C2lM23s7F7UfqsZXYIY=" + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "optional": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "optional": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "optional": true + }, + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5", + "object-assign": "4.1.1" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "follow-redirects": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.0.0.tgz", + "integrity": "sha1-jjQpjL0uF28lTv/sdaHHjMhJ/Tc=", + "optional": true, + "requires": { + "debug": "2.6.9" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "optional": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "for-each": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz", + "integrity": "sha1-LEBFC5NI6X8oEyJZO6lnBLmr1NQ=", + "dev": true, + "requires": { + "is-function": "1.0.1" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "optional": true + }, + "form-data": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", + "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.6", + "mime-types": "2.1.18" + } + }, + "formidable": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz", + "integrity": "sha1-lriIb3w8NQi5Mta9cMTTqI818ak=" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "ftp": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", + "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=", + "optional": true, + "requires": { + "readable-stream": "1.1.14", + "xregexp": "2.0.0" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "generate-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", + "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", + "optional": true + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "optional": true, + "requires": { + "is-property": "1.0.2" + } + }, + "get-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-2.0.1.tgz", + "integrity": "sha512-7aelVrYqCLuVjq2kEKRTH8fXPTC0xKTkM+G7UlFkEwCXY3sFbSxvY375JoFowOAYbkaU47SrBvOefUlLZZ+6QA==", + "optional": true, + "requires": { + "data-uri-to-buffer": "1.2.0", + "debug": "2.6.9", + "extend": "3.0.1", + "file-uri-to-path": "1.0.0", + "ftp": "0.3.10", + "readable-stream": "2.3.4" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "optional": true + }, + "readable-stream": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", + "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + } + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "optional": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "optional": true + }, + "har-validator": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "optional": true, + "requires": { + "ajv": "5.5.2", + "har-schema": "2.0.0" + } + }, + "has": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", + "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", + "dev": true, + "requires": { + "function-bind": "1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "hawk": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", + "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "optional": true, + "requires": { + "boom": "4.3.1", + "cryptiles": "3.1.2", + "hoek": "4.2.1", + "sntp": "2.1.0" + } + }, + "hipchat-notifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz", + "integrity": "sha1-ttJJdVQ3wZEII2d5nTupoPI7Ix4=", + "optional": true, + "requires": { + "lodash": "4.17.5", + "request": "2.83.0" + } + }, + "hoek": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz", + "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" + }, + "http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "optional": true, + "requires": { + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": "1.4.0" + } + }, + "http-proxy-agent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz", + "integrity": "sha1-zBzjjkU7+YSg93AtLdWcc9CBKEo=", + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "httpntlm": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz", + "integrity": "sha1-rQFScUOi6Hc8+uapb1hla7UqNLI=", + "requires": { + "httpreq": "0.4.24", + "underscore": "1.7.0" + } + }, + "httpreq": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/httpreq/-/httpreq-0.4.24.tgz", + "integrity": "sha1-QzX/2CzZaWaKOUZckprGHWOTYn8=" + }, + "https-proxy-agent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz", + "integrity": "sha1-NffabEjOTdv6JkiRrFk+5f+GceY=", + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + } + } + }, + "iconv-lite": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", + "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", + "optional": true + }, + "ieee754": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", + "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" + }, + "inflection": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.10.0.tgz", + "integrity": "sha1-W//LEZetPoEFD44X4hZoCH7p6y8=", + "optional": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "int64-buffer": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/int64-buffer/-/int64-buffer-0.1.10.tgz", + "integrity": "sha1-J3siiofZWtd30HwTgyAiQGpHNCM=" + }, + "interpret": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", + "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", + "dev": true + }, + "ip": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.0.1.tgz", + "integrity": "sha1-x+NWzeoiWucbNtcPLnGpK6TkJZA=", + "optional": true + }, + "is-callable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", + "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=", + "dev": true + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "is-function": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", + "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=", + "dev": true + }, + "is-my-ip-valid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", + "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==", + "optional": true + }, + "is-my-json-valid": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz", + "integrity": "sha512-IBhBslgngMQN8DDSppmgDv7RNrlFotuuDsKcrCP3+HbFaVivIBU7u9oiiErw8sH4ynx3+gOGQ3q2otkgiSi6kg==", + "optional": true, + "requires": { + "generate-function": "2.0.0", + "generate-object-property": "1.2.0", + "is-my-ip-valid": "1.0.0", + "jsonpointer": "4.0.1", + "xtend": "4.0.1" + } + }, + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "optional": true + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, + "requires": { + "has": "1.0.1" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "optional": true + }, + "is-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", + "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "optional": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "optional": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "optional": true + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "jshashes": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/jshashes/-/jshashes-1.0.7.tgz", + "integrity": "sha1-vtjJeg6WMv0FE5FvVfdt1Uhr5Z8=" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "optional": true + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "optional": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", + "optional": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "optional": true, + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "libbase64": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz", + "integrity": "sha1-YjUag5VjrF/1vSbxL2Dpgwu3UeY=" + }, + "libmime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/libmime/-/libmime-3.0.0.tgz", + "integrity": "sha1-UaGp50SOy9Ms2lRCFnW7IbwJPaY=", + "requires": { + "iconv-lite": "0.4.15", + "libbase64": "0.1.0", + "libqp": "1.1.0" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", + "integrity": "sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es=" + } + } + }, + "libqp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz", + "integrity": "sha1-9ebgatdLeU+1tbZpiL9yjvHe2+g=" + }, + "line-by-line": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz", + "integrity": "sha512-MmwVPfOyp0lWnEZ3fBA8Ah4pMFvxO6WgWovqZNu7Y4J0TNnGcsV4S1LzECHbdgqk1hoHc2mFP1Axc37YUqwafg==" + }, + "lodash": { + "version": "4.17.5", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz", + "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==", + "optional": true + }, + "log4js": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-2.5.3.tgz", + "integrity": "sha512-YL/qpTxYtK0iWWbuKCrevDZz5lh+OjyHHD+mICqpjnYGKdNRBvPeh/1uYjkKUemT1CSO4wwLOwphWMpKAnD9kw==", + "requires": { + "amqplib": "0.5.2", + "axios": "0.15.3", + "circular-json": "0.5.1", + "date-format": "1.2.0", + "debug": "3.1.0", + "hipchat-notifier": "1.1.0", + "loggly": "1.1.1", + "mailgun-js": "0.7.15", + "nodemailer": "2.7.2", + "redis": "2.8.0", + "semver": "5.5.0", + "slack-node": "0.2.0", + "streamroller": "0.7.0" + } + }, + "loggly": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/loggly/-/loggly-1.1.1.tgz", + "integrity": "sha1-Cg/B0/o6XsRP3HuJe+uipGlc6+4=", + "optional": true, + "requires": { + "json-stringify-safe": "5.0.1", + "request": "2.75.0", + "timespan": "2.3.0" + }, + "dependencies": { + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "optional": true + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "optional": true + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "requires": { + "hoek": "2.16.3" + } + }, + "caseless": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", + "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", + "optional": true + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "optional": true, + "requires": { + "boom": "2.10.1" + } + }, + "form-data": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.0.0.tgz", + "integrity": "sha1-bwrrrcxdoWwT4ezBETfYX5uIOyU=", + "optional": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.6", + "mime-types": "2.1.18" + } + }, + "har-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", + "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "optional": true, + "requires": { + "chalk": "1.1.3", + "commander": "2.14.1", + "is-my-json-valid": "2.17.2", + "pinkie-promise": "2.0.1" + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "optional": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "optional": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "node-uuid": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", + "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=", + "optional": true + }, + "qs": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz", + "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=", + "optional": true + }, + "request": { + "version": "2.75.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.75.0.tgz", + "integrity": "sha1-0rgmiihtoT6qXQGt9dGMyQ9lfZM=", + "optional": true, + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.6.0", + "bl": "1.1.2", + "caseless": "0.11.0", + "combined-stream": "1.0.6", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.0.0", + "har-validator": "2.0.6", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.18", + "node-uuid": "1.4.8", + "oauth-sign": "0.8.2", + "qs": "6.2.3", + "stringstream": "0.0.5", + "tough-cookie": "2.3.4", + "tunnel-agent": "0.4.3" + } + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "optional": true, + "requires": { + "hoek": "2.16.3" + } + }, + "tunnel-agent": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", + "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", + "optional": true + } + } + }, + "lru-cache": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", + "integrity": "sha1-5W1jVBSO3o13B7WNFDIg/QjfD9U=", + "optional": true + }, + "mailcomposer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/mailcomposer/-/mailcomposer-4.0.1.tgz", + "integrity": "sha1-DhxEsqB890DuF9wUm6AJ8Zyt/rQ=", + "optional": true, + "requires": { + "buildmail": "4.0.1", + "libmime": "3.0.0" + } + }, + "mailgun-js": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/mailgun-js/-/mailgun-js-0.7.15.tgz", + "integrity": "sha1-7jZqINrGTDwVwD1sGz4O15UlKrs=", + "optional": true, + "requires": { + "async": "2.1.5", + "debug": "2.2.0", + "form-data": "2.1.4", + "inflection": "1.10.0", + "is-stream": "1.1.0", + "path-proxy": "1.0.0", + "proxy-agent": "2.0.0", + "q": "1.4.1", + "tsscmp": "1.0.5" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "optional": true, + "requires": { + "ms": "0.7.1" + } + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "optional": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.6", + "mime-types": "2.1.18" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", + "optional": true + } + } + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + }, + "mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "requires": { + "mime-db": "1.33.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "mongodb": { + "version": "2.2.35", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.35.tgz", + "integrity": "sha512-3HGLucDg/8EeYMin3k+nFWChTA85hcYDCw1lPsWR6yV9A6RgKb24BkLiZ9ySZR+S0nfBjWoIUS7cyV6ceGx5Gg==", + "requires": { + "es6-promise": "3.2.1", + "mongodb-core": "2.1.19", + "readable-stream": "2.2.7" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "readable-stream": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.7.tgz", + "integrity": "sha1-BwV6y+JGeyIELTb5jFrVBwVOlbE=", + "requires": { + "buffer-shims": "1.0.0", + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "requires": { + "safe-buffer": "5.1.1" + } + } + } + }, + "mongodb-core": { + "version": "2.1.19", + "resolved": "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.19.tgz", + "integrity": "sha512-Jt4AtWUkpuW03kRdYGxga4O65O1UHlFfvvInslEfLlGi+zDMxbBe3J2NVmN9qPJ957Mn6Iz0UpMtV80cmxCVxw==", + "requires": { + "bson": "1.0.5", + "require_optional": "1.0.1" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "msgpack-lite": { + "version": "0.1.26", + "resolved": "https://registry.npmjs.org/msgpack-lite/-/msgpack-lite-0.1.26.tgz", + "integrity": "sha1-3TxQsm8FnyXn7e42REGDWOKprYk=", + "requires": { + "event-lite": "0.1.1", + "ieee754": "1.1.8", + "int64-buffer": "0.1.10", + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + } + } + }, + "netmask": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz", + "integrity": "sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU=", + "optional": true + }, + "nodemailer": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-2.7.2.tgz", + "integrity": "sha1-8kLmSa7q45tsftdA73sGHEBNMPk=", + "optional": true, + "requires": { + "libmime": "3.0.0", + "mailcomposer": "4.0.1", + "nodemailer-direct-transport": "3.3.2", + "nodemailer-shared": "1.1.0", + "nodemailer-smtp-pool": "2.8.2", + "nodemailer-smtp-transport": "2.7.2", + "socks": "1.1.9" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "optional": true + }, + "socks": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.9.tgz", + "integrity": "sha1-Yo1+TQSRJDVEWsC25Fk3bLPm1pE=", + "optional": true, + "requires": { + "ip": "1.1.5", + "smart-buffer": "1.1.15" + } + } + } + }, + "nodemailer-direct-transport": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz", + "integrity": "sha1-6W+vuQNYVglH5WkBfZfmBzilCoY=", + "optional": true, + "requires": { + "nodemailer-shared": "1.1.0", + "smtp-connection": "2.12.0" + } + }, + "nodemailer-fetch": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz", + "integrity": "sha1-ecSQihwPXzdbc/6IjamCj23JY6Q=" + }, + "nodemailer-shared": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz", + "integrity": "sha1-z1mU4v0mjQD1zw+nZ6CBae2wfsA=", + "requires": { + "nodemailer-fetch": "1.6.0" + } + }, + "nodemailer-smtp-pool": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz", + "integrity": "sha1-LrlNbPhXgLG0clzoU7nL1ejajHI=", + "optional": true, + "requires": { + "nodemailer-shared": "1.1.0", + "nodemailer-wellknown": "0.1.10", + "smtp-connection": "2.12.0" + } + }, + "nodemailer-smtp-transport": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz", + "integrity": "sha1-A9ccdjFPFKx9vHvwM6am0W1n+3c=", + "optional": true, + "requires": { + "nodemailer-shared": "1.1.0", + "nodemailer-wellknown": "0.1.10", + "smtp-connection": "2.12.0" + } + }, + "nodemailer-wellknown": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz", + "integrity": "sha1-WG24EB2zDLRDjrVGc3pBqtDPE9U=" + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "optional": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-inspect": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.5.0.tgz", + "integrity": "sha512-UmOFbHbwvv+XHj7BerrhVq+knjceBdkvU5AriwLMvhv2qi+e7DJzxfBeFpILEjVzCp+xA+W/pIf06RGPWlZNfw==", + "dev": true + }, + "object-keys": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", + "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "optional": true, + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + } + }, + "pac-proxy-agent": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz", + "integrity": "sha512-QBELCWyLYPgE2Gj+4wUEiMscHrQ8nRPBzYItQNOHWavwBt25ohZHQC4qnd5IszdVVrFbLsQ+dPkm6eqdjJAmwQ==", + "optional": true, + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1", + "get-uri": "2.0.1", + "http-proxy-agent": "1.0.0", + "https-proxy-agent": "1.0.0", + "pac-resolver": "2.0.0", + "raw-body": "2.3.2", + "socks-proxy-agent": "2.1.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "optional": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "pac-resolver": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-2.0.0.tgz", + "integrity": "sha1-mbiNLxk/ve78HJpSnB8yYKtSd80=", + "optional": true, + "requires": { + "co": "3.0.6", + "degenerator": "1.0.4", + "ip": "1.0.1", + "netmask": "1.0.6", + "thunkify": "2.1.2" + }, + "dependencies": { + "co": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/co/-/co-3.0.6.tgz", + "integrity": "sha1-FEXyJsXrlWE45oyawwFn6n0ua9o=", + "optional": true + } + } + }, + "parse-ms": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz", + "integrity": "sha1-VjRtR0nXjyNDDKDHE4UK75GqNh0=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", + "dev": true + }, + "path-proxy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz", + "integrity": "sha1-GOijaFn8nS8aU7SN7hOFQ8Ag3l4=", + "optional": true, + "requires": { + "inflection": "1.3.8" + }, + "dependencies": { + "inflection": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.3.8.tgz", + "integrity": "sha1-y9Fg2p91sUw8xjV41POWeEvzAU4=", + "optional": true + } + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "optional": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "optional": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "optional": true, + "requires": { + "pinkie": "2.0.4" + } + }, + "plur": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz", + "integrity": "sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY=", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "pretty-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz", + "integrity": "sha1-QlfCVt8/sLRR1q/6qwIYhBJpgdw=", + "dev": true, + "requires": { + "is-finite": "1.0.2", + "parse-ms": "1.0.1", + "plur": "1.0.0" + } + }, + "prettysize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/prettysize/-/prettysize-1.1.0.tgz", + "integrity": "sha512-U5Noa+FYV1dGkICyLJz8IWlDUehPF4Bk9tZRO8YqPhLA9EoiHuFqtnpWY2mvMjHh5eOLo82HipeLn4RIiSsGqQ==" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "proxy-agent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.0.0.tgz", + "integrity": "sha1-V+tTR6qAXXTsaByyVknbo5yTNJk=", + "optional": true, + "requires": { + "agent-base": "2.1.1", + "debug": "2.6.9", + "extend": "3.0.1", + "http-proxy-agent": "1.0.0", + "https-proxy-agent": "1.0.0", + "lru-cache": "2.6.5", + "pac-proxy-agent": "1.1.0", + "socks-proxy-agent": "2.1.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "optional": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "optional": true + }, + "q": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", + "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=", + "optional": true + }, + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + }, + "raw-body": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", + "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", + "optional": true, + "requires": { + "bytes": "3.0.0", + "http-errors": "1.6.2", + "iconv-lite": "0.4.19", + "unpipe": "1.0.0" + } + }, + "re-emitter": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/re-emitter/-/re-emitter-1.1.3.tgz", + "integrity": "sha1-+p4xn/3u6zWycpbvDz03TawvUqc=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "1.5.0" + } + }, + "redis": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", + "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", + "optional": true, + "requires": { + "double-ended-queue": "2.1.0-0", + "redis-commands": "1.3.5", + "redis-parser": "2.6.0" + } + }, + "redis-commands": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.5.tgz", + "integrity": "sha512-foGF8u6MXGFF++1TZVC6icGXuMYPftKXt1FBT2vrfU9ZATNtZJ8duRC5d1lEfE8hyVe3jhelHGB91oB7I6qLsA==", + "optional": true + }, + "redis-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", + "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=", + "optional": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "request": { + "version": "2.83.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", + "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", + "optional": true, + "requires": { + "aws-sign2": "0.7.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.6", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.3.2", + "har-validator": "5.0.3", + "hawk": "6.0.2", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.18", + "oauth-sign": "0.8.2", + "performance-now": "2.1.0", + "qs": "6.5.1", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.4", + "tunnel-agent": "0.6.0", + "uuid": "3.2.1" + } + }, + "requestretry": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/requestretry/-/requestretry-1.13.0.tgz", + "integrity": "sha512-Lmh9qMvnQXADGAQxsXHP4rbgO6pffCfuR8XUBdP9aitJcLQJxhp7YZK4xAVYXnPJ5E52mwrfiKQtKonPL8xsmg==", + "optional": true, + "requires": { + "extend": "3.0.1", + "lodash": "4.17.5", + "request": "2.83.0", + "when": "3.7.8" + } + }, + "require_optional": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", + "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", + "requires": { + "resolve-from": "2.0.0", + "semver": "5.5.0" + } + }, + "resolve": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz", + "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==", + "dev": true, + "requires": { + "path-parse": "1.0.5" + } + }, + "resolve-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", + "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" + }, + "resumer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", + "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" + }, + "setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", + "optional": true + }, + "shelljs": { + "version": "0.7.8", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz", + "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", + "dev": true, + "requires": { + "glob": "7.1.2", + "interpret": "1.1.0", + "rechoir": "0.6.2" + } + }, + "slack-node": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/slack-node/-/slack-node-0.2.0.tgz", + "integrity": "sha1-3kuN3aqLeT9h29KTgQT9q/N9+jA=", + "optional": true, + "requires": { + "requestretry": "1.13.0" + } + }, + "smart-buffer": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz", + "integrity": "sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY=" + }, + "smtp-connection": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/smtp-connection/-/smtp-connection-2.12.0.tgz", + "integrity": "sha1-1275EnyyPCJZ7bHoNJwujV4tdME=", + "requires": { + "httpntlm": "1.6.1", + "nodemailer-shared": "1.1.0" + } + }, + "sntp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", + "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "optional": true, + "requires": { + "hoek": "4.2.1" + } + }, + "socks": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz", + "integrity": "sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o=", + "requires": { + "ip": "1.1.5", + "smart-buffer": "1.1.15" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + } + } + }, + "socks-proxy-agent": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz", + "integrity": "sha512-sFtmYqdUK5dAMh85H0LEVFUCO7OhJJe1/z2x/Z6mxp3s7/QPf1RkZmpZy+BpuU0bEjcV9npqKjq9Y3kwFUjnxw==", + "requires": { + "agent-base": "2.1.1", + "extend": "3.0.1", + "socks": "1.1.10" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, + "split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, + "requires": { + "through": "2.3.8" + } + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "optional": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + } + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "optional": true + }, + "streamroller": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", + "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", + "requires": { + "date-format": "1.2.0", + "debug": "3.1.0", + "mkdirp": "0.5.1", + "readable-stream": "2.3.4" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "readable-stream": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", + "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "requires": { + "safe-buffer": "5.1.1" + } + } + } + }, + "string.prototype.trim": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", + "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", + "dev": true, + "requires": { + "define-properties": "1.1.2", + "es-abstract": "1.10.0", + "function-bind": "1.1.1" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "optional": true + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "optional": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "superagent": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.2.tgz", + "integrity": "sha512-gVH4QfYHcY3P0f/BZzavLreHW3T1v7hG9B+hpMQotGQqurOvhv87GcMCd6LWySmBuf+BDR44TQd0aISjVHLeNQ==", + "requires": { + "component-emitter": "1.2.1", + "cookiejar": "2.1.1", + "debug": "3.1.0", + "extend": "3.0.1", + "form-data": "2.3.2", + "formidable": "1.1.1", + "methods": "1.1.2", + "mime": "1.6.0", + "qs": "6.5.1", + "readable-stream": "2.3.4" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "readable-stream": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", + "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "requires": { + "safe-buffer": "5.1.1" + } + } + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + }, + "tap-out": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tap-out/-/tap-out-1.4.2.tgz", + "integrity": "sha1-yQfsG/lAURHQiCY+kvVgi4jLs3o=", + "dev": true, + "requires": { + "re-emitter": "1.1.3", + "readable-stream": "2.3.4", + "split": "1.0.1", + "trim": "0.0.1" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "readable-stream": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", + "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + } + } + }, + "tap-spec": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tap-spec/-/tap-spec-4.1.1.tgz", + "integrity": "sha1-4unyb1IIIysfViKIyXYk1YqI8Fo=", + "dev": true, + "requires": { + "chalk": "1.1.3", + "duplexer": "0.1.1", + "figures": "1.7.0", + "lodash": "3.10.1", + "pretty-ms": "2.1.0", + "repeat-string": "1.6.1", + "tap-out": "1.4.2", + "through2": "2.0.3" + }, + "dependencies": { + "lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", + "dev": true + } + } + }, + "tape": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/tape/-/tape-4.9.0.tgz", + "integrity": "sha512-j0jO9BiScfqtPBb9QmPLL0qvxXMz98xjkMb7x8lKipFlJZwNJkqkWPou+NU4V6T9RnVh1kuSthLE8gLrN8bBfw==", + "dev": true, + "requires": { + "deep-equal": "1.0.1", + "defined": "1.0.0", + "for-each": "0.3.2", + "function-bind": "1.1.1", + "glob": "7.1.2", + "has": "1.0.1", + "inherits": "2.0.3", + "minimist": "1.2.0", + "object-inspect": "1.5.0", + "resolve": "1.5.0", + "resumer": "0.0.0", + "string.prototype.trim": "1.1.2", + "through": "2.3.8" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.4", + "xtend": "4.0.1" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "readable-stream": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", + "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + } + } + }, + "thunkify": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz", + "integrity": "sha1-+qDp0jDFGsyVyhOjYawFyn4EVT0=", + "optional": true + }, + "timespan": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", + "integrity": "sha1-SQLOBAvRPYRcj1myfp1ZutbzmSk=", + "optional": true + }, + "tough-cookie": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", + "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", + "optional": true, + "requires": { + "punycode": "1.4.1" + } + }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", + "dev": true + }, + "tsscmp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz", + "integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=", + "optional": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "1.1.2" + } + }, + "underscore": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", + "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "optional": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "uuid": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", + "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==", + "optional": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + } + }, + "when": { + "version": "3.7.8", + "resolved": "https://registry.npmjs.org/when/-/when-3.7.8.tgz", + "integrity": "sha1-xxMLan6gRpPoQs3J56Hyqjmjn4I=", + "optional": true + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "optional": true + }, + "worker-nodes": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/worker-nodes/-/worker-nodes-1.6.0.tgz", + "integrity": "sha512-PUI1mQRdrMpJ6HyFj7/M2pKZetSuB12aNaGSIzYeBk4K1sitxZK7k5nKi+/5+iQL59J6Aq2WLp86r7yHxDASrA==", + "requires": { + "msgpack-lite": "0.1.26" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "wtf_wikipedia": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/wtf_wikipedia/-/wtf_wikipedia-2.6.1.tgz", + "integrity": "sha512-aoQq2Ks9mhu02L1fzk7Wy718Aeyj0T1sDLO8tdKSTCXFmD8YxQ4wmseT5C0RhI/cs/p/KKwFWL7iT1j8ejxy+w==", + "requires": { + "jshashes": "1.0.7", + "superagent": "3.8.2" + } + }, + "xregexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", + "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=", + "optional": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + } + } +} diff --git a/package.json b/package.json index 884fda7..20723cf 100644 --- a/package.json +++ b/package.json @@ -19,16 +19,11 @@ "cleanup": "rm /tmp/worker.logs && touch /tmp/worker.logs" }, "dependencies": { - "cluster": "^0.7.7", "commander": "^2.12.0", - "filesize": "^3.6.0", - "kue": "^0.11.1", "line-by-line": "^0.1.6", "log4js": "^2.5.3", "mongodb": "^2.2.33", "prettysize": "^1.1.0", - "string-to-stream": "^1.1.0", - "unbzip2-stream": "^1.0.9", "worker-nodes": "^1.6.0", "wtf_wikipedia": "^2.4.2" }, diff --git a/scratch.js b/scratch.js index 7390f9d..641d479 100644 --- a/scratch.js +++ b/scratch.js @@ -1,4 +1,4 @@ -const w2m = require('./src') +const dumpster = require('./src') const drop = require('./tests/db').drop const config = require('./config') @@ -10,7 +10,7 @@ const dbName = path.match(/\/([a-z-]+)-latest-pages/)[1] //delete all pages drop(dbName, config.collection, () => { console.log('dropped existing pages from ' + dbName + ' - ' + config.collection + '\n\n') - w2m({ + dumpster({ file: path, db: dbName, batch_size: 1000, diff --git a/src/index.js b/src/index.js index 430476f..7dcaf38 100755 --- a/src/index.js +++ b/src/index.js @@ -6,9 +6,7 @@ const mt = require("./02-multithreader") const writeDb = require('./03-write-db'); const config = require('../config'); -process.on('unhandledRejection', up => { - console.log(up) -}) +process.on('unhandledRejection', console.log) //open up a mongo db, and start xml-streaming.. const main = async (options) => { diff --git a/tests/cli.test.js b/tests/cli.test.js index 1b4a6dd..53c3d51 100644 --- a/tests/cli.test.js +++ b/tests/cli.test.js @@ -5,7 +5,7 @@ let db = require('./db') // this test actually writes to mongodb! ( in the tlg-wikipedia table) test('test-real-smallwiki', function(t) { db.drop('smallwiki', 'wikipedia', () => { - exec('./bin/wp2mongo.js ./tests/smallwiki-latest-pages-articles.xml.bz2') + exec('./bin/dumpster.js ./tests/smallwiki-latest-pages-articles.xml') db.count('smallwiki', count => { t.equal(count, 1050, 'count-is-correct') db.drop('smallwiki', () => { diff --git a/tests/custom.test.js b/tests/custom.test.js index 68ce58f..35f985b 100644 --- a/tests/custom.test.js +++ b/tests/custom.test.js @@ -1,17 +1,17 @@ let test = require('tape') let db = require('./db') -let wp2mongo = require('../') +let dumpster = require('../') /* //to update the bz2, rm ./tests/tinywiki-latest-pages-articles.xml.bz2 && bzip2 -z ./tests/tinywiki-latest-pages-articles.xml */ test('custom-made-tinywiki', function(t) { let obj = { - file: './tests/tinywiki-latest-pages-articles.xml.bz2', + file: './tests/tinywiki-latest-pages-articles.xml', db: 'tempwiki', } db.drop(obj.db, 'wikipedia', () => { - wp2mongo(obj, () => { + dumpster(obj, () => { db.firstTen(obj.db, docs => { t.equal(docs.length, 7, 'seven records') @@ -37,13 +37,13 @@ test('custom-made-tinywiki', function(t) { // test('no-redirects', function(t) { // let obj = { -// file: './tests/tinywiki-latest-pages-articles.xml.bz2', +// file: './tests/tinywiki-latest-pages-articles.xml', // db: 'tempwikiskip', // skip_redirects: true, // skip_disambig: true, // } // db.drop(obj.db, () => { -// wp2mongo(obj, () => { +// dumpster(obj, () => { // db.firstTen(obj.db, docs => { // t.equal(docs.length, 5, 'five records') // diff --git a/tests/plain.test.js b/tests/plain.test.js index e24e214..6a1c451 100644 --- a/tests/plain.test.js +++ b/tests/plain.test.js @@ -1,6 +1,6 @@ let test = require('tape') let db = require('./db') -let wp2mongo = require('../') +let dumpster = require('../') test('plaintext', function(t) { let obj = { @@ -9,7 +9,7 @@ test('plaintext', function(t) { plaintext: true } db.drop(obj.db, 'wikipedia', () => { - wp2mongo(obj, () => { + dumpster(obj, () => { db.firstTen(obj.db, docs => { t.equal(docs.length, 7, '7 records') t.equal(docs[0].plaintext, 'hello this is wikitext\n\n', 'got plaintext') From 706de36ca89b8227962f116f7c596a535b351ca4 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Thu, 1 Mar 2018 10:37:59 -0500 Subject: [PATCH 27/42] pass parser-instructions to wtf --- README.md | 10 ++++++++++ bin/dumpster.js | 8 ++++++++ 2 files changed, 18 insertions(+) diff --git a/README.md b/README.md index 13d208d..b8c0bb4 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,16 @@ let obj = { } dumpster(obj, () => console.log('done!') ) ``` +#### reducing file-size +you can tell wtf_wikipedia what you want it to parse, and which data you don't need: +``` +{ + infoboxes: true, //the key-value info + citations: true, //include references and citations + images: true, //images thumbnails + categories: true //page's categories +} +``` ## how it works: this library uses: diff --git a/bin/dumpster.js b/bin/dumpster.js index 5cc6b07..5fa4ace 100755 --- a/bin/dumpster.js +++ b/bin/dumpster.js @@ -11,6 +11,10 @@ let parseArgs = function() { .option('--skip_redirects', 'if true, skips-over pages that are redirects') .option('--skip_disambig', 'if true, skips-over disambiguation pages') .option('--verbose', 'print each article title to the console') + .option('--citations', 'whether to parse references/citations [true]') + .option('--infoboxes', 'whether to parse infoboxes [true]') + .option('--images', 'whether to parse images [true]') + .option('--categories', 'whether to parse categories [true]') .parse(process.argv) //grab the wiki file @@ -34,6 +38,10 @@ let parseArgs = function() { skip_redirects: true, skip_first: 0, verbose: false, + citations: true, + infoboxes: true, + images: true, + categories: true, }, program) return { From 248b4ce49e8e69b7b4a45a5dcc222cedbed46c8e Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 6 Apr 2018 11:12:23 -0400 Subject: [PATCH 28/42] more cleanup --- README.md | 4 +- package-lock.json | 102 ++++++++++++++++++++++++++++++++++------ package.json | 1 + src/01-init-db.js | 8 +--- src/02-multithreader.js | 32 ++++++------- src/03-write-db.js | 3 +- 6 files changed, 109 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index b8c0bb4..8fcae76 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ wget https://dumps.wikimedia.org/afwiki/latest/afwiki-latest-pages-articles.xml. the english/german ones are bigger. Use whichever xml dump you'd like. The [download page](https://dumps.wikimedia.org) is weird, but you'll want the most-common dump format, without historical diffs, or images, which is `${LANG}wiki-latest-pages-articles.xml.bz2 ` ### 4) unzip it -i know, this sucks. but it makes the parser so much faster. On a macbook, unzipping en-wikipedia takes about an hour. +i know, this sucks. but it makes the parser so much faster. On a macbook, unzipping en-wikipedia takes about an hour. Eat some lunch. ### 5) start it off ```bash @@ -70,7 +70,7 @@ just put some [epsom salts](https://www.youtube.com/watch?v=QSlIHCu2Smw) in ther to view your data in the mongo console, ````javascript $ mongo -use af_wikipedia +use afwiki //shows a random page db.wikipedia.find().skip(200).limit(2) diff --git a/package-lock.json b/package-lock.json index 4b1b2f3..39af436 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "dumpster-dive", - "version": "3.0.0", + "version": "2.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -57,9 +57,12 @@ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" }, "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "1.9.1" + } }, "asn1": { "version": "0.2.3", @@ -236,15 +239,13 @@ "optional": true }, "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz", + "integrity": "sha512-ZM4j2/ld/YZDc3Ma8PgN7gyAk+kHMMMyzLNryCPGhWrsfAuDVeuid5bpRFTDgMH9JBK2lA4dyyAkkZYF/WcqDQ==", "requires": { - "ansi-styles": "2.2.1", + "ansi-styles": "3.2.1", "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" + "supports-color": "5.3.0" } }, "circular-json": { @@ -258,6 +259,19 @@ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "optional": true }, + "color-convert": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", + "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, "combined-stream": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", @@ -734,6 +748,11 @@ "ansi-regex": "2.1.1" } }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, "hawk": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", @@ -1103,6 +1122,12 @@ "timespan": "2.3.0" }, "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "optional": true + }, "assert-plus": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", @@ -1159,6 +1184,21 @@ "commander": "2.14.1", "is-my-json-valid": "2.17.2", "pinkie-promise": "2.0.1" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "optional": true, + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + } + } } }, "hawk": { @@ -1239,6 +1279,12 @@ "hoek": "2.16.3" } }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "optional": true + }, "tunnel-agent": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", @@ -2139,9 +2185,12 @@ } }, "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.3.0.tgz", + "integrity": "sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==", + "requires": { + "has-flag": "3.0.0" + } }, "tap-out": { "version": "1.4.2", @@ -2209,11 +2258,36 @@ "through2": "2.0.3" }, "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + } + }, "lodash": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", "dev": true + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true } } }, diff --git a/package.json b/package.json index 20723cf..73c3f33 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "cleanup": "rm /tmp/worker.logs && touch /tmp/worker.logs" }, "dependencies": { + "chalk": "^2.3.2", "commander": "^2.12.0", "line-by-line": "^0.1.6", "log4js": "^2.5.3", diff --git a/src/01-init-db.js b/src/01-init-db.js index 7ddd274..f00f281 100644 --- a/src/01-init-db.js +++ b/src/01-init-db.js @@ -27,15 +27,9 @@ const init = async ( options = { // options.skip_first = await options.collection.count() // console.log('\n\n\n -- auto skipping first ' + options.skip_first + ' articles...') // } - // we can make this smarter in the future - // by giving batch an ID and collecting errors of - // that batch to that ID'd collection - // for now each run is one batch. + // we can make this smarter in the future.. // options.errCollection = await options.db.createCollection('errors',{capped:true, max: 1000, size: 5242880 }); // options.queueCollection = await options.db.createCollection('queue'); - - // await options.errCollection.drop() - // await options.queueCollection.drop() resolve(options) }) } diff --git a/src/02-multithreader.js b/src/02-multithreader.js index 44f95a2..b1784e1 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -1,6 +1,7 @@ const pretty = require('prettysize'); const WorkerNodes = require('worker-nodes'); const fs = require("fs"); +const chalk = require('chalk') const EventEmitter = require('events'); const cpus = require('os').cpus() const cpuCount = cpus.length; @@ -11,18 +12,17 @@ let workerNodes = new WorkerNodes(__dirname + '/worker/index.js', { maxTasksPerWorker: 1 }); -let workerLogs = {}; - -workerLog = function(msg) { - var name; - if (msg) { - if (workerLogs[name = msg.pid] === undefined) { - workerLogs[name] = {}; - } - return workerLogs[msg.pid] = msg; - } - return null -}; +// let workerLogs = {}; +// workerLog = function(msg) { +// var name; +// if (msg) { +// if (workerLogs[name = msg.pid] === undefined) { +// workerLogs[name] = {}; +// } +// return workerLogs[msg.pid] = msg; +// } +// return null +// }; class Worker extends EventEmitter { constructor() { @@ -34,11 +34,11 @@ class Worker extends EventEmitter { size = fs.statSync(options.file)["size"]; // size = 633279000 chunkSize = Math.floor(size / cpuCount); - console.log(`${cpuCount} cpu cores detected. file size: ${pretty(size)} file will be divided into: ${cpuCount} each process will be given: ${pretty(chunkSize)}`); - console.log(`launching ${cpuCount} processes. do ctrl-c to kill all.`); - console.log("do tail -f /tmp/worker.logs on a separate terminal window for logs."); + console.log(chalk.blue(cpuCount) + ` cpu cores detected.') + console.log('file size: ${chalk.green(pretty(size))}`) + console.log(` - each process will be given: ${pretty(chunkSize)}`); + console.log(chalk.grey(" (view logs with `tail -f /tmp/worker.logs`)")); - //await workerNodes.ready(); var workerCount = 0 const onMsg = async (msg) => { this.emit("msg", msg); diff --git a/src/03-write-db.js b/src/03-write-db.js index 3c8b5ab..855de0b 100644 --- a/src/03-write-db.js +++ b/src/03-write-db.js @@ -4,7 +4,7 @@ const writeDb = async (arr, options) => { return new Promise(async (resolve) => { options.db.collection(config.collection).insertMany(arr, { ordered: false - }, async (err) => { + }, async () => { // if (err) { // collect insert errors... // tbd. skip duplicate key errors @@ -13,7 +13,6 @@ const writeDb = async (arr, options) => { // } let count = await options.collection.count() // checkWriteSuccess(preCount,postCount,arr) - resolve(`${arr.length} docs inserted. total:${count}`) }) }) From 18d75a5c2c303f789297c459fc1dab0b047f0294 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 18:40:46 -0400 Subject: [PATCH 29/42] use new wtf_wikipedia version --- README.md | 6 +- changelog.md | 4 + dump.js | 8 - lib/stat.js | 10 + package-lock.json | 203 ++- package.json | 22 +- scratch.js | 4 +- src/02-multithreader.js | 4 +- src/worker/02-parseWiki.js | 13 +- src/worker/_encode.js | 6 +- src/worker/index.js | 2 +- yarn.lock | 2590 ------------------------------------ 12 files changed, 125 insertions(+), 2747 deletions(-) delete mode 100644 dump.js create mode 100644 lib/stat.js delete mode 100644 yarn.lock diff --git a/README.md b/README.md index 8fcae76..b4c4812 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # A whole Wikipedia dump, in mongodb. -put your hefty [wikipedia dump](https://dumps.wikimedia.org) into mongo, with fully-parsed wikiscript - without thinking, without loading it into memory, grepping, unzipping, or other crazy command-line nonsense. +put your hefty [wikipedia dump](https://dumps.wikimedia.org) into mongo, with fully-parsed wikiscript - without thinking, without loading it into memory, or other crazy nonsense. It's a javascript one-liner that puts a highly-queryable wikipedia on your laptop in a nice afternoon. -It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into *almost-nice* json. +It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into whatever json you'd like. ```bash npm install -g dumpster-dive @@ -12,7 +12,7 @@ npm install -g dumpster-dive ```bash dumpster /path/to/my-wikipedia-article-dump.xml ``` -### 😎 From a nodejs script +### 😎 From a nodejs app ```js var dumpster = require('dumpster-dive') dumpster({file:'./enwiki-latest-pages-articles.xml', db: 'enwiki'}, callback) diff --git a/changelog.md b/changelog.md index bff41dc..89379b0 100644 --- a/changelog.md +++ b/changelog.md @@ -10,3 +10,7 @@ ### v2.4.0 * add a 3s 'break' to avoid build-up of mongo inserts * add new --verbose and --skip_first options + +## v3 +* MASSIVE SPEEDUP! full re-write by @devrim 🙏 to fix #59 +* use wtf_wikipedia v3 (big re-factor too!) diff --git a/dump.js b/dump.js deleted file mode 100644 index 023468a..0000000 --- a/dump.js +++ /dev/null @@ -1,8 +0,0 @@ -const drop = require('./tests/db').drop -const config = require('./config') -const dbName = 'tmpwiki' - -//delete all pages -drop(dbName, config.collection, () => { - console.log('dropped existing pages from ' + dbName + ' - ' + config.collection) -}) diff --git a/lib/stat.js b/lib/stat.js new file mode 100644 index 0000000..f33a0f8 --- /dev/null +++ b/lib/stat.js @@ -0,0 +1,10 @@ +const config = require('../config'); +const chalk = require('chalk'); + +//birds-eye-view of what pages are in mongo +const stat = function(db) { + db.collection(config.collection).count((err, count) => { + console.log(` - - pages: ${count}`) + }) +} +module.exports = stat diff --git a/package-lock.json b/package-lock.json index 39af436..a401b10 100644 --- a/package-lock.json +++ b/package-lock.json @@ -93,7 +93,8 @@ "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "optional": true }, "aws-sign2": { "version": "0.7.0", @@ -197,9 +198,9 @@ } }, "bson": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/bson/-/bson-1.0.5.tgz", - "integrity": "sha512-D4SCtud6mlEb48kXdTHU31DRU0bsgOJ+4St1Dcx30uYNnf/aGc+hC9gHB/z0Eth8HYYs/hr0SFdyZViht19SwA==" + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/bson/-/bson-1.0.6.tgz", + "integrity": "sha512-D8zmlb46xfuK2gGvKmUjIklQEouN2nQ0LEHHeZ/NoHM2LDiMk2EYzZ5Ntw/Urk+bgMDosOZxaRzXxvhI5TcAVQ==" }, "buffer-more-ints": { "version": "0.0.2", @@ -239,13 +240,13 @@ "optional": true }, "chalk": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz", - "integrity": "sha512-ZM4j2/ld/YZDc3Ma8PgN7gyAk+kHMMMyzLNryCPGhWrsfAuDVeuid5bpRFTDgMH9JBK2lA4dyyAkkZYF/WcqDQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", "requires": { "ansi-styles": "3.2.1", "escape-string-regexp": "1.0.5", - "supports-color": "5.3.0" + "supports-color": "5.4.0" } }, "circular-json": { @@ -281,14 +282,9 @@ } }, "commander": { - "version": "2.14.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz", - "integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==" - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", + "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==" }, "concat-map": { "version": "0.0.1", @@ -296,16 +292,20 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, - "cookiejar": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz", - "integrity": "sha1-Qa1XsbVVlR7BcUEqgZQrHoIA00o=" - }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, + "cross-fetch": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.1.1.tgz", + "integrity": "sha512-3W94GTFVrSQWw/xHsLpX+z3ArhDKjoh7pJfl4+5sbch0V17ZfPjhZ+gnUdz56t7eoFXI9DhdJtaZTr7jmPL2EQ==", + "requires": { + "node-fetch": "2.1.2", + "whatwg-fetch": "2.0.4" + } + }, "cryptiles": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", @@ -426,9 +426,9 @@ } }, "es-abstract": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz", - "integrity": "sha512-/uh/DhdqIOSkAWifU+8nG78vlQxdLckUdI/sPgy0VhuXi2qJ7T8czBmqIYtLQVpCIFYafChnsRsB5pyb1JdmCQ==", + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz", + "integrity": "sha512-ZnQrE/lXTTQ39ulXZ+J1DTFazV9qBy61x2bY071B+qGco8Z8q1QddsLdt/EF8Ai9hcWH72dWS0kFqXLxOxqslA==", "dev": true, "requires": { "es-to-primitive": "1.1.1", @@ -583,17 +583,13 @@ "version": "2.3.2", "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", + "optional": true, "requires": { "asynckit": "0.4.0", "combined-stream": "1.0.6", "mime-types": "2.1.18" } }, - "formidable": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz", - "integrity": "sha1-lriIb3w8NQi5Mta9cMTTqI818ak=" - }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -1181,7 +1177,7 @@ "optional": true, "requires": { "chalk": "1.1.3", - "commander": "2.14.1", + "commander": "2.15.1", "is-my-json-valid": "2.17.2", "pinkie-promise": "2.0.1" }, @@ -1354,16 +1350,6 @@ } } }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, "mime-db": { "version": "1.33.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", @@ -1400,12 +1386,12 @@ } }, "mongodb": { - "version": "2.2.35", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.35.tgz", - "integrity": "sha512-3HGLucDg/8EeYMin3k+nFWChTA85hcYDCw1lPsWR6yV9A6RgKb24BkLiZ9ySZR+S0nfBjWoIUS7cyV6ceGx5Gg==", + "version": "2.2.33", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.33.tgz", + "integrity": "sha1-tTfEcdNKZlG0jzb9vyl1A0Dgi1A=", "requires": { "es6-promise": "3.2.1", - "mongodb-core": "2.1.19", + "mongodb-core": "2.1.17", "readable-stream": "2.2.7" }, "dependencies": { @@ -1439,11 +1425,11 @@ } }, "mongodb-core": { - "version": "2.1.19", - "resolved": "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.19.tgz", - "integrity": "sha512-Jt4AtWUkpuW03kRdYGxga4O65O1UHlFfvvInslEfLlGi+zDMxbBe3J2NVmN9qPJ957Mn6Iz0UpMtV80cmxCVxw==", + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.17.tgz", + "integrity": "sha1-pBizN6FKFJkPtRC5I97mqBMXPfg=", "requires": { - "bson": "1.0.5", + "bson": "1.0.6", "require_optional": "1.0.1" } }, @@ -1476,6 +1462,11 @@ "integrity": "sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU=", "optional": true }, + "node-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz", + "integrity": "sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=" + }, "nodemailer": { "version": "2.7.2", "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-2.7.2.tgz", @@ -1578,9 +1569,9 @@ "dev": true }, "object-inspect": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.5.0.tgz", - "integrity": "sha512-UmOFbHbwvv+XHj7BerrhVq+knjceBdkvU5AriwLMvhv2qi+e7DJzxfBeFpILEjVzCp+xA+W/pIf06RGPWlZNfw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz", + "integrity": "sha512-OHHnLgLNXpM++GnJRyyhbr2bwl3pPVm4YvaraHrRvDt/N3r+s/gDVHciA7EJBTkijKXj61ssgSAikq1fb0IBRg==", "dev": true }, "object-keys": { @@ -1791,7 +1782,8 @@ "qs": { "version": "6.5.1", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", + "optional": true }, "raw-body": { "version": "2.3.2", @@ -1829,7 +1821,7 @@ "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", "dev": true, "requires": { - "resolve": "1.5.0" + "resolve": "1.7.1" } }, "redis": { @@ -1913,9 +1905,9 @@ } }, "resolve": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz", - "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==", + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", "dev": true, "requires": { "path-parse": "1.0.5" @@ -1952,9 +1944,9 @@ "optional": true }, "shelljs": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz", - "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.1.tgz", + "integrity": "sha512-YA/iYtZpzFe5HyWVGrb02FjPxc4EMCfpoU/Phg9fQoyMC72u9598OUBrsU8IrtwAKG0tO8IYaqbaLIw+k3IRGA==", "dev": true, "requires": { "glob": "7.1.2", @@ -2109,7 +2101,7 @@ "dev": true, "requires": { "define-properties": "1.1.2", - "es-abstract": "1.10.0", + "es-abstract": "1.11.0", "function-bind": "1.1.1" } }, @@ -2133,61 +2125,10 @@ "ansi-regex": "2.1.1" } }, - "superagent": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.2.tgz", - "integrity": "sha512-gVH4QfYHcY3P0f/BZzavLreHW3T1v7hG9B+hpMQotGQqurOvhv87GcMCd6LWySmBuf+BDR44TQd0aISjVHLeNQ==", - "requires": { - "component-emitter": "1.2.1", - "cookiejar": "2.1.1", - "debug": "3.1.0", - "extend": "3.0.1", - "form-data": "2.3.2", - "formidable": "1.1.1", - "methods": "1.1.2", - "mime": "1.6.0", - "qs": "6.5.1", - "readable-stream": "2.3.4" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" - }, - "readable-stream": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", - "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "requires": { - "safe-buffer": "5.1.1" - } - } - } - }, "supports-color": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.3.0.tgz", - "integrity": "sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", "requires": { "has-flag": "3.0.0" } @@ -2292,9 +2233,9 @@ } }, "tape": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/tape/-/tape-4.9.0.tgz", - "integrity": "sha512-j0jO9BiScfqtPBb9QmPLL0qvxXMz98xjkMb7x8lKipFlJZwNJkqkWPou+NU4V6T9RnVh1kuSthLE8gLrN8bBfw==", + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/tape/-/tape-4.8.0.tgz", + "integrity": "sha512-TWILfEnvO7I8mFe35d98F6T5fbLaEtbFTG/lxWvid8qDfFTxt19EBijWmB4j3+Hoh5TfHE2faWs73ua+EphuBA==", "dev": true, "requires": { "deep-equal": "1.0.1", @@ -2305,8 +2246,8 @@ "has": "1.0.1", "inherits": "2.0.3", "minimist": "1.2.0", - "object-inspect": "1.5.0", - "resolve": "1.5.0", + "object-inspect": "1.3.0", + "resolve": "1.4.0", "resumer": "0.0.0", "string.prototype.trim": "1.1.2", "through": "2.3.8" @@ -2317,6 +2258,15 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true + }, + "resolve": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", + "integrity": "sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==", + "dev": true, + "requires": { + "path-parse": "1.0.5" + } } } }, @@ -2463,6 +2413,11 @@ "extsprintf": "1.3.0" } }, + "whatwg-fetch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", + "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + }, "when": { "version": "3.7.8", "resolved": "https://registry.npmjs.org/when/-/when-3.7.8.tgz", @@ -2490,12 +2445,12 @@ "dev": true }, "wtf_wikipedia": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/wtf_wikipedia/-/wtf_wikipedia-2.6.1.tgz", - "integrity": "sha512-aoQq2Ks9mhu02L1fzk7Wy718Aeyj0T1sDLO8tdKSTCXFmD8YxQ4wmseT5C0RhI/cs/p/KKwFWL7iT1j8ejxy+w==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/wtf_wikipedia/-/wtf_wikipedia-3.1.0.tgz", + "integrity": "sha512-iVwOsPLhXiQnH9wjWG2kFooPK7IZtGGRBzCioprOXwpHMKTy4IxpkNxdDR5Tm9EGA6baenMjFxLJgayZ8B/kHg==", "requires": { - "jshashes": "1.0.7", - "superagent": "3.8.2" + "cross-fetch": "2.1.1", + "jshashes": "1.0.7" } }, "xregexp": { diff --git a/package.json b/package.json index 73c3f33..9a813ba 100644 --- a/package.json +++ b/package.json @@ -19,19 +19,19 @@ "cleanup": "rm /tmp/worker.logs && touch /tmp/worker.logs" }, "dependencies": { - "chalk": "^2.3.2", - "commander": "^2.12.0", - "line-by-line": "^0.1.6", - "log4js": "^2.5.3", - "mongodb": "^2.2.33", - "prettysize": "^1.1.0", - "worker-nodes": "^1.6.0", - "wtf_wikipedia": "^2.4.2" + "chalk": "2.4.1", + "commander": "2.15.1", + "line-by-line": "0.1.6", + "log4js": "2.5.3", + "mongodb": "2.2.33", + "prettysize": "1.1.0", + "worker-nodes": "1.6.0", + "wtf_wikipedia": "^3.1.0" }, "devDependencies": { - "shelljs": "^0.7.8", - "tap-spec": "^4.1.1", - "tape": "^4.8.0" + "shelljs": "^0.8.1", + "tap-spec": "4.1.1", + "tape": "4.8.0" }, "license": "MIT" } diff --git a/scratch.js b/scratch.js index 641d479..0e6b627 100644 --- a/scratch.js +++ b/scratch.js @@ -1,9 +1,11 @@ const dumpster = require('./src') const drop = require('./tests/db').drop const config = require('./config') +const stat = require('./lib/stat') // const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' -const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' +const path = './tests/tinywiki-latest-pages-articles.xml' +// const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' // const path = './tests/smallwiki-latest-pages-articles.xml' const dbName = path.match(/\/([a-z-]+)-latest-pages/)[1] diff --git a/src/02-multithreader.js b/src/02-multithreader.js index b1784e1..da02405 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -34,8 +34,8 @@ class Worker extends EventEmitter { size = fs.statSync(options.file)["size"]; // size = 633279000 chunkSize = Math.floor(size / cpuCount); - console.log(chalk.blue(cpuCount) + ` cpu cores detected.') - console.log('file size: ${chalk.green(pretty(size))}`) + console.log(chalk.blue(cpuCount) + ` cpu cores detected.`) + console.log(`file size: ${chalk.green(pretty(size))}`) console.log(` - each process will be given: ${pretty(chunkSize)}`); console.log(chalk.grey(" (view logs with `tail -f /tmp/worker.logs`)")); diff --git a/src/worker/02-parseWiki.js b/src/worker/02-parseWiki.js index 4b56f24..c149b32 100644 --- a/src/worker/02-parseWiki.js +++ b/src/worker/02-parseWiki.js @@ -12,16 +12,21 @@ const plaintext = function(page) { //get parsed json from the wiki markup const parseData = function(page, options) { - let data = wtf.parse(page.script); + let doc = wtf(page.script); //dont insert this if it's a redirect - if (options.skip_redirects === true && data.type === 'redirect') { + if (options.skip_redirects === true && doc.isRedirect()) { return null } - if (options.skip_disambig === true && data.type === 'disambiguation') { + if (options.skip_disambig === true && doc.isDisambiguation()) { return null } + //turn the wtf_wikipedia document into storable json + let data = doc.json(options) + data.title = page.title || data.title data = encode.encodeData(data); - data.title = data.title || page.title || ''; + //use the title/pageID from the xml + data.title = page.title || data.title || ''; + data.pageID = page.pageID || data.pageID || ''; data._id = encode.encodeStr(data.title); return data }; diff --git a/src/worker/_encode.js b/src/worker/_encode.js index bf6969f..6b4ef73 100644 --- a/src/worker/_encode.js +++ b/src/worker/_encode.js @@ -14,11 +14,11 @@ const encodeData = function(data) { //encode keys in infoboxes if (data.infoboxes && data.infoboxes.length > 0) { data.infoboxes.forEach(info => { - let keys = Object.keys(info.data); + let keys = Object.keys(info); keys.forEach(k => { if (k !== encodeStr(k)) { - info.data[encodeStr(k)] = info.data[k]; - delete info.data[k]; + info[encodeStr(k)] = info[k]; + delete info[k]; } }); }); diff --git a/src/worker/index.js b/src/worker/index.js index 954d468..5623eea 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -51,8 +51,8 @@ const getPages = async (options, chunkSize, workerNr) => { jobBegin = Date.now() doArticleTimeCounter = 0 page = {} + logger.info(`batch complete: worker pid:${process.pid} has inserted ${pageCount} pages; latest batch in ${((Date.now() - workerBegin) / 1000)} secs.`); workerBegin = Date.now() - logger.info(`batch complete: worker pid:${process.pid} inserted ${pageCount} pages in ${((Date.now() - workerBegin) / 1000)} secs. doArticle took ${doArticleTimeCounter / 1000} secs.`); lr.resume(); if (isLast === true) { logger.info(`worker pid:${process.pid} is done.`); diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index 9709d97..0000000 --- a/yarn.lock +++ /dev/null @@ -1,2590 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -accepts@~1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" - dependencies: - mime-types "~2.1.16" - negotiator "0.6.1" - -acorn-globals@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" - dependencies: - acorn "^4.0.4" - -acorn@^3.1.0, acorn@~3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" - -acorn@^4.0.4, acorn@~4.0.2: - version "4.0.13" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" - -addressparser@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/addressparser/-/addressparser-1.0.1.tgz#47afbe1a2a9262191db6838e4fd1d39b40821746" - -agent-base@2: - version "2.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" - dependencies: - extend "~3.0.0" - semver "~5.0.1" - -ajv@^5.1.0: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - -align-text@^0.1.1, align-text@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" - dependencies: - kind-of "^3.0.2" - longest "^1.0.1" - repeat-string "^1.5.2" - -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - -amqplib@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/amqplib/-/amqplib-0.5.2.tgz#d2d7313c7ffaa4d10bcf1e6252de4591b6cc7b63" - dependencies: - bitsyntax "~0.0.4" - bluebird "^3.4.6" - buffer-more-ints "0.0.2" - readable-stream "1.x >=1.1.9" - safe-buffer "^5.0.1" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - -"apparatus@>= 0.0.9": - version "0.0.9" - resolved "https://registry.yarnpkg.com/apparatus/-/apparatus-0.0.9.tgz#37dcd25834ad0b651076596291db823eeb1908bd" - dependencies: - sylvester ">= 0.0.8" - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - -asn1@~0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - -assert-plus@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" - -ast-types@0.x.x: - version "0.10.2" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.10.2.tgz#aef76a04fde54634976fc94defaad1a67e2eadb0" - -async@~2.1.2: - version "2.1.5" - resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" - dependencies: - lodash "^4.14.0" - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - -aws-sign2@~0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - -aws4@^1.2.1, aws4@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" - -axios@^0.15.3: - version "0.15.3" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.15.3.tgz#2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053" - dependencies: - follow-redirects "1.0.0" - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - -base64-js@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" - -bcrypt-pbkdf@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" - dependencies: - tweetnacl "^0.14.3" - -bindings@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7" - -bitsyntax@~0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/bitsyntax/-/bitsyntax-0.0.4.tgz#eb10cc6f82b8c490e3e85698f07e83d46e0cba82" - dependencies: - buffer-more-ints "0.0.2" - -bl@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" - dependencies: - readable-stream "~2.0.5" - -bluebird@^3.4.6: - version "3.5.1" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" - -body-parser@1.18.2, body-parser@^1.12.2: - version "1.18.2" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" - dependencies: - bytes "3.0.0" - content-type "~1.0.4" - debug "2.6.9" - depd "~1.1.1" - http-errors "~1.6.2" - iconv-lite "0.4.19" - on-finished "~2.3.0" - qs "6.5.1" - raw-body "2.3.2" - type-is "~1.6.15" - -boom@2.x.x: - version "2.10.1" - resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" - dependencies: - hoek "2.x.x" - -boom@4.x.x: - version "4.3.1" - resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" - dependencies: - hoek "4.x.x" - -boom@5.x.x: - version "5.2.0" - resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" - dependencies: - hoek "4.x.x" - -brace-expansion@^1.1.7: - version "1.1.9" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.9.tgz#acdc7dde0e939fb3b32fe933336573e2a7dc2b7c" - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -bson@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.4.tgz#93c10d39eaa5b58415cbc4052f3e53e562b0b72c" - -buffer-more-ints@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz#26b3885d10fa13db7fc01aae3aab870199e0124c" - -buffer-shims@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" - -buffer@^3.0.1: - version "3.6.0" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-3.6.0.tgz#a72c936f77b96bf52f5f7e7b467180628551defb" - dependencies: - base64-js "0.0.8" - ieee754 "^1.1.4" - isarray "^1.0.0" - -buildmail@4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/buildmail/-/buildmail-4.0.1.tgz#877f7738b78729871c9a105e3b837d2be11a7a72" - dependencies: - addressparser "1.0.1" - libbase64 "0.1.0" - libmime "3.0.0" - libqp "1.1.0" - nodemailer-fetch "1.6.0" - nodemailer-shared "1.1.0" - punycode "1.4.1" - -builtin-modules@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - -camelcase@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" - -camelcase@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - -caseless@~0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - -center-align@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" - dependencies: - align-text "^0.1.3" - lazy-cache "^1.0.3" - -chalk@^1.0.0, chalk@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -character-parser@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" - dependencies: - is-regex "^1.0.3" - -circular-json@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.5.1.tgz#b8942a09e535863dc21b04417a91971e1d9cd91f" - -clean-css@^3.3.0: - version "3.4.28" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.28.tgz#bf1945e82fc808f55695e6ddeaec01400efd03ff" - dependencies: - commander "2.8.x" - source-map "0.4.x" - -cliui@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" - dependencies: - center-align "^0.1.1" - right-align "^0.1.1" - wordwrap "0.0.2" - -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - -cluster@^0.7.7: - version "0.7.7" - resolved "https://registry.yarnpkg.com/cluster/-/cluster-0.7.7.tgz#e497e267cc956bd0b0513adb4aa393357d0085ef" - dependencies: - log ">= 1.2.0" - mkdirp ">= 0.0.1" - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - -co@~3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/co/-/co-3.0.6.tgz#1445f226c5eb956138e68c9ac30167ea7d2e6bda" - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - -combined-stream@^1.0.5, combined-stream@~1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" - dependencies: - delayed-stream "~1.0.0" - -commander@2.8.x: - version "2.8.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" - dependencies: - graceful-readlink ">= 1.0.0" - -commander@^2.12.0, commander@^2.9.0: - version "2.14.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" - -component-emitter@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - -constantinople@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-3.1.0.tgz#7569caa8aa3f8d5935d62e1fa96f9f702cd81c79" - dependencies: - acorn "^3.1.0" - is-expression "^2.0.1" - -content-disposition@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" - -content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - -cookie@0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" - -cookiejar@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.1.tgz#41ad57b1b555951ec171412a81942b1e8200d34a" - -core-util-is@1.0.2, core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - -cryptiles@2.x.x: - version "2.0.5" - resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" - dependencies: - boom "2.x.x" - -cryptiles@3.x.x: - version "3.1.2" - resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" - dependencies: - boom "5.x.x" - -css-parse@1.7.x: - version "1.7.0" - resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.7.0.tgz#321f6cf73782a6ff751111390fc05e2c657d8c9b" - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - dependencies: - assert-plus "^1.0.0" - -data-uri-to-buffer@1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz#77163ea9c20d8641b4707e8f18abdf9a78f34835" - -date-format@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/date-format/-/date-format-1.2.0.tgz#615e828e233dd1ab9bb9ae0950e0ceccfa6ecad8" - -debug@*, debug@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" - dependencies: - ms "2.0.0" - -debug@2, debug@2.6.9, debug@^2.2.0: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - dependencies: - ms "2.0.0" - -debug@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" - dependencies: - ms "0.7.1" - -decamelize@^1.0.0, decamelize@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - -deep-equal@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" - -deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - -define-properties@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" - dependencies: - foreach "^2.0.5" - object-keys "^1.0.8" - -defined@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" - -degenerator@~1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-1.0.4.tgz#fcf490a37ece266464d9cc431ab98c5819ced095" - dependencies: - ast-types "0.x.x" - escodegen "1.x.x" - esprima "3.x.x" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - -depd@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" - -depd@~1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - -destroy@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - -doctypes@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" - -double-ended-queue@^2.1.0-0: - version "2.1.0-0" - resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" - -duplexer@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - -ecc-jsbn@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" - dependencies: - jsbn "~0.1.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - -encodeurl@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - -error-ex@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.5.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" - dependencies: - es-to-primitive "^1.1.1" - function-bind "^1.1.1" - has "^1.0.1" - is-callable "^1.1.3" - is-regex "^1.0.4" - -es-to-primitive@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" - dependencies: - is-callable "^1.1.1" - is-date-object "^1.0.1" - is-symbol "^1.0.1" - -es6-promise@3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.2.1.tgz#ec56233868032909207170c39448e24449dd1fc4" - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - -escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - -escodegen@1.x.x: - version "1.9.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" - dependencies: - esprima "^3.1.3" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.5.6" - -esprima@3.x.x, esprima@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - -estraverse@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" - -esutils@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - -event-lite@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/event-lite/-/event-lite-0.1.1.tgz#47cf08a8d37d0b694cdb7b3b17b51faac6576086" - -express@^4.12.2: - version "4.16.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" - dependencies: - accepts "~1.3.4" - array-flatten "1.1.1" - body-parser "1.18.2" - content-disposition "0.5.2" - content-type "~1.0.4" - cookie "0.3.1" - cookie-signature "1.0.6" - debug "2.6.9" - depd "~1.1.1" - encodeurl "~1.0.1" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.1.0" - fresh "0.5.2" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "~2.3.0" - parseurl "~1.3.2" - path-to-regexp "0.1.7" - proxy-addr "~2.0.2" - qs "6.5.1" - range-parser "~1.2.0" - safe-buffer "5.1.1" - send "0.16.1" - serve-static "1.13.1" - setprototypeof "1.1.0" - statuses "~1.3.1" - type-is "~1.6.15" - utils-merge "1.0.1" - vary "~1.1.2" - -extend@3, extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" - -extend@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extend/-/extend-1.3.0.tgz#d1516fb0ff5624d2ebf9123ea1dac5a1994004f8" - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - -extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - -fast-deep-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" - -fast-json-stable-stringify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - -fast-levenshtein@~2.0.4: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - -figures@^1.4.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" - dependencies: - escape-string-regexp "^1.0.5" - object-assign "^4.1.0" - -file-uri-to-path@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - -finalhandler@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" - dependencies: - debug "2.6.9" - encodeurl "~1.0.1" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.2" - statuses "~1.3.1" - unpipe "~1.0.0" - -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" - -follow-redirects@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.0.0.tgz#8e34298cbd2e176f254effec75a1c78cc849fd37" - dependencies: - debug "^2.2.0" - -for-each@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" - dependencies: - is-function "~1.0.0" - -foreach@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - -form-data@^2.3.1, form-data@~2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.5" - mime-types "^2.1.12" - -form-data@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.5" - mime-types "^2.1.11" - -form-data@~2.1.1: - version "2.1.4" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.5" - mime-types "^2.1.12" - -formidable@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" - -forwarded@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - -ftp@~0.3.10: - version "0.3.10" - resolved "https://registry.yarnpkg.com/ftp/-/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" - dependencies: - readable-stream "1.1.x" - xregexp "2.0.0" - -function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - -generate-function@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" - -generate-object-property@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" - dependencies: - is-property "^1.0.0" - -get-caller-file@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" - -get-uri@2: - version "2.0.1" - resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-2.0.1.tgz#dbdcacacd8c608a38316869368117697a1631c59" - dependencies: - data-uri-to-buffer "1" - debug "2" - extend "3" - file-uri-to-path "1" - ftp "~0.3.10" - readable-stream "2" - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - dependencies: - assert-plus "^1.0.0" - -glob@7.0.x: - version "7.0.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.2" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.0.0, glob@~7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -graceful-fs@^4.1.2: - version "4.1.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" - -"graceful-readlink@>= 1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - -har-validator@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" - dependencies: - chalk "^1.1.1" - commander "^2.9.0" - is-my-json-valid "^2.12.4" - pinkie-promise "^2.0.0" - -har-validator@~5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" - dependencies: - ajv "^5.1.0" - har-schema "^2.0.0" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - dependencies: - ansi-regex "^2.0.0" - -has@^1.0.1, has@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" - dependencies: - function-bind "^1.0.2" - -hawk@~3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" - dependencies: - boom "2.x.x" - cryptiles "2.x.x" - hoek "2.x.x" - sntp "1.x.x" - -hawk@~6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" - dependencies: - boom "4.x.x" - cryptiles "3.x.x" - hoek "4.x.x" - sntp "2.x.x" - -hipchat-notifier@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz#b6d249755437c191082367799d3ba9a0f23b231e" - dependencies: - lodash "^4.0.0" - request "^2.0.0" - -hoek@2.x.x: - version "2.16.3" - resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" - -hoek@4.x.x: - version "4.2.0" - resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" - -hosted-git-info@^2.1.4: - version "2.5.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" - -http-errors@1.6.2, http-errors@~1.6.2: - version "1.6.2" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" - dependencies: - depd "1.1.1" - inherits "2.0.3" - setprototypeof "1.0.3" - statuses ">= 1.3.1 < 2" - -http-proxy-agent@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz#cc1ce38e453bf984a0f7702d2dd59c73d081284a" - dependencies: - agent-base "2" - debug "2" - extend "3" - -http-signature@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" - dependencies: - assert-plus "^0.2.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -httpntlm@1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/httpntlm/-/httpntlm-1.6.1.tgz#ad01527143a2e8773cfae6a96f58656bb52a34b2" - dependencies: - httpreq ">=0.4.22" - underscore "~1.7.0" - -httpreq@>=0.4.22: - version "0.4.24" - resolved "https://registry.yarnpkg.com/httpreq/-/httpreq-0.4.24.tgz#4335ffd82cd969668a39465c929ac61d6393627f" - -https-proxy-agent@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" - dependencies: - agent-base "2" - debug "2" - extend "3" - -iconv-lite@0.4.15: - version "0.4.15" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" - -iconv-lite@0.4.19: - version "0.4.19" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" - -iconv@^2.1.4: - version "2.3.0" - resolved "https://registry.yarnpkg.com/iconv/-/iconv-2.3.0.tgz#9739887c2bd492d9a5e236dd3667c5358601201b" - dependencies: - nan "^2.3.5" - -ieee754@^1.1.4, ieee754@^1.1.8: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" - -inflection@~1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.10.0.tgz#5bffcb1197ad3e81050f8e17e21668087ee9eb2f" - -inflection@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.3.8.tgz#cbd160da9f75b14c3cc63578d4f396784bf3014e" - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - -int64-buffer@^0.1.9: - version "0.1.10" - resolved "https://registry.yarnpkg.com/int64-buffer/-/int64-buffer-0.1.10.tgz#277b228a87d95ad777d07c13832022406a473423" - -interpret@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" - -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - -ip@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.0.1.tgz#c7e356cdea225ae71b36d70f2e71a92ba4e42590" - -ip@^1.1.2, ip@^1.1.4: - version "1.1.5" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" - -ipaddr.js@1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - -is-builtin-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" - dependencies: - builtin-modules "^1.0.0" - -is-callable@^1.1.1, is-callable@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" - -is-date-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - -is-expression@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-2.1.0.tgz#91be9d47debcfef077977e9722be6dcfb4465ef0" - dependencies: - acorn "~3.3.0" - object-assign "^4.0.1" - -is-expression@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-3.0.0.tgz#39acaa6be7fd1f3471dc42c7416e61c24317ac9f" - dependencies: - acorn "~4.0.2" - object-assign "^4.0.1" - -is-finite@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - dependencies: - number-is-nan "^1.0.0" - -is-function@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" - -is-my-json-valid@^2.12.4: - version "2.17.1" - resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz#3da98914a70a22f0a8563ef1511a246c6fc55471" - dependencies: - generate-function "^2.0.0" - generate-object-property "^1.1.0" - jsonpointer "^4.0.0" - xtend "^4.0.0" - -is-promise@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" - -is-property@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" - -is-regex@^1.0.3, is-regex@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - dependencies: - has "^1.0.1" - -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - -is-symbol@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" - -is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - -isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - -js-stringify@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - -jshashes@^1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/jshashes/-/jshashes-1.0.7.tgz#bed8c97a0e9632fd0513916f55f76dd5486be59f" - -json-schema-traverse@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" - -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - -json-stringify-safe@5.0.x, json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - -jsonpointer@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" - -jsprim@^1.2.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.2.3" - verror "1.10.0" - -jstransformer@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" - dependencies: - is-promise "^2.0.0" - promise "^7.0.1" - -kind-of@^3.0.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - dependencies: - is-buffer "^1.1.5" - -kue@^0.11.1: - version "0.11.6" - resolved "https://registry.yarnpkg.com/kue/-/kue-0.11.6.tgz#5b76916bcedd56636a107861471c63c94611860a" - dependencies: - body-parser "^1.12.2" - express "^4.12.2" - lodash "^4.0.0" - nib "~1.1.2" - node-redis-warlock "~0.2.0" - pug "^2.0.0-beta3" - redis "~2.6.0-2" - stylus "~0.54.5" - yargs "^4.0.0" - optionalDependencies: - reds "^0.2.5" - -lazy-cache@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" - -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - dependencies: - invert-kv "^1.0.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -libbase64@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/libbase64/-/libbase64-0.1.0.tgz#62351a839563ac5ff5bd26f12f60e9830bb751e6" - -libmime@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/libmime/-/libmime-3.0.0.tgz#51a1a9e7448ecbd32cda54421675bb21bc093da6" - dependencies: - iconv-lite "0.4.15" - libbase64 "0.1.0" - libqp "1.1.0" - -libqp@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/libqp/-/libqp-1.1.0.tgz#f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8" - -line-by-line@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/line-by-line/-/line-by-line-0.1.6.tgz#6236edd1db2d1695addf11f0268e74a181561c30" - -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - -lodash.assign@^4.0.3, lodash.assign@^4.0.6: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" - -lodash@^3.6.0: - version "3.10.1" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" - -lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0: - version "4.17.5" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" - -log4js@^2.5.3: - version "2.5.3" - resolved "https://registry.yarnpkg.com/log4js/-/log4js-2.5.3.tgz#38bb7bde5e9c1c181bd75e8bc128c5cd0409caf1" - dependencies: - circular-json "^0.5.1" - date-format "^1.2.0" - debug "^3.1.0" - semver "^5.3.0" - streamroller "^0.7.0" - optionalDependencies: - amqplib "^0.5.2" - axios "^0.15.3" - hipchat-notifier "^1.1.0" - loggly "^1.1.0" - mailgun-js "^0.7.0" - nodemailer "^2.5.0" - redis "^2.7.1" - slack-node "~0.2.0" - -"log@>= 1.2.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/log/-/log-1.4.0.tgz#4ba1d890fde249b031dca03bc37eaaf325656f1c" - -loggly@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/loggly/-/loggly-1.1.1.tgz#0a0fc1d3fa3a5ec44fdc7b897beba2a4695cebee" - dependencies: - json-stringify-safe "5.0.x" - request "2.75.x" - timespan "2.3.x" - -longest@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" - -lru-cache@^2.5.0: - version "2.7.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" - -lru-cache@~2.6.5: - version "2.6.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.6.5.tgz#e56d6354148ede8d7707b58d143220fd08df0fd5" - -mailcomposer@4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/mailcomposer/-/mailcomposer-4.0.1.tgz#0e1c44b2a07cf740ee17dc149ba009f19cadfeb4" - dependencies: - buildmail "4.0.1" - libmime "3.0.0" - -mailgun-js@^0.7.0: - version "0.7.15" - resolved "https://registry.yarnpkg.com/mailgun-js/-/mailgun-js-0.7.15.tgz#ee366a20dac64c3c15c03d6c1b3e0ed795252abb" - dependencies: - async "~2.1.2" - debug "~2.2.0" - form-data "~2.1.1" - inflection "~1.10.0" - is-stream "^1.1.0" - path-proxy "~1.0.0" - proxy-agent "~2.0.0" - q "~1.4.0" - tsscmp "~1.0.0" - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - -methods@^1.1.1, methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - -mime-db@~1.30.0: - version "1.30.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" - -mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7: - version "2.1.17" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" - dependencies: - mime-db "~1.30.0" - -mime@1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" - -mime@^1.4.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - -minimatch@^3.0.2, minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - dependencies: - brace-expansion "^1.1.7" - -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - -minimist@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - -mkdirp@0.5.x, "mkdirp@>= 0.0.1", mkdirp@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - dependencies: - minimist "0.0.8" - -moment@^2.20.1: - version "2.20.1" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.20.1.tgz#d6eb1a46cbcc14a2b2f9434112c1ff8907f313fd" - -momentjs@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/momentjs/-/momentjs-2.0.0.tgz#73df904b4fa418f6e3c605e831cef6ed5518ebd4" - -mongodb-core@2.1.18: - version "2.1.18" - resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.18.tgz#4c46139bdf3a1f032ded91db49f38eec01659050" - dependencies: - bson "~1.0.4" - require_optional "~1.0.0" - -mongodb@^2.2.33: - version "2.2.34" - resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.34.tgz#a34f59bbeb61754aec432de72c3fe21526a44c1a" - dependencies: - es6-promise "3.2.1" - mongodb-core "2.1.18" - readable-stream "2.2.7" - -ms@0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - -msgpack-lite@^0.1.26: - version "0.1.26" - resolved "https://registry.yarnpkg.com/msgpack-lite/-/msgpack-lite-0.1.26.tgz#dd3c50b26f059f25e7edee3644418358e2a9ad89" - dependencies: - event-lite "^0.1.1" - ieee754 "^1.1.8" - int64-buffer "^0.1.9" - isarray "^1.0.0" - -nan@^2.3.5: - version "2.8.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" - -natural@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/natural/-/natural-0.2.1.tgz#1eb5156a9d90b4591949e20e94ebc77bb2339eda" - dependencies: - apparatus ">= 0.0.9" - sylvester ">= 0.0.12" - underscore ">=1.3.1" - -negotiator@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" - -netmask@~1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/netmask/-/netmask-1.0.6.tgz#20297e89d86f6f6400f250d9f4f6b4c1945fcd35" - -nib@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/nib/-/nib-1.1.2.tgz#6a69ede4081b95c0def8be024a4c8ae0c2cbb6c7" - dependencies: - stylus "0.54.5" - -node-expat@^2.3.1: - version "2.3.16" - resolved "https://registry.yarnpkg.com/node-expat/-/node-expat-2.3.16.tgz#adb22174e1aaa5305996bd5b1aa6f2c8d5c0f239" - dependencies: - bindings "^1.2.1" - nan "^2.3.5" - -node-redis-scripty@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/node-redis-scripty/-/node-redis-scripty-0.0.5.tgz#4bf2d365ab6dab202cc08b7ac63f8f55aadc9625" - dependencies: - extend "^1.2.1" - lru-cache "^2.5.0" - -node-redis-warlock@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/node-redis-warlock/-/node-redis-warlock-0.2.0.tgz#56395b994c828e8e32f6aae53b93b6edfcd97990" - dependencies: - node-redis-scripty "0.0.5" - uuid "^2.0.1" - -node-uuid@~1.4.7: - version "1.4.8" - resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" - -nodemailer-direct-transport@3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz#e96fafb90358560947e569017d97e60738a50a86" - dependencies: - nodemailer-shared "1.1.0" - smtp-connection "2.12.0" - -nodemailer-fetch@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz#79c4908a1c0f5f375b73fe888da9828f6dc963a4" - -nodemailer-shared@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz#cf5994e2fd268d00f5cf0fa767a08169edb07ec0" - dependencies: - nodemailer-fetch "1.6.0" - -nodemailer-smtp-pool@2.8.2: - version "2.8.2" - resolved "https://registry.yarnpkg.com/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz#2eb94d6cf85780b1b4725ce853b9cbd5e8da8c72" - dependencies: - nodemailer-shared "1.1.0" - nodemailer-wellknown "0.1.10" - smtp-connection "2.12.0" - -nodemailer-smtp-transport@2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz#03d71c76314f14ac7dbc7bf033a6a6d16d67fb77" - dependencies: - nodemailer-shared "1.1.0" - nodemailer-wellknown "0.1.10" - smtp-connection "2.12.0" - -nodemailer-wellknown@0.1.10: - version "0.1.10" - resolved "https://registry.yarnpkg.com/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz#586db8101db30cb4438eb546737a41aad0cf13d5" - -nodemailer@^2.5.0: - version "2.7.2" - resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-2.7.2.tgz#f242e649aeeae39b6c7ed740ef7b061c404d30f9" - dependencies: - libmime "3.0.0" - mailcomposer "4.0.1" - nodemailer-direct-transport "3.3.2" - nodemailer-shared "1.1.0" - nodemailer-smtp-pool "2.8.2" - nodemailer-smtp-transport "2.7.2" - socks "1.1.9" - -normalize-package-data@^2.3.2: - version "2.4.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" - dependencies: - hosted-git-info "^2.1.4" - is-builtin-module "^1.0.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - -oauth-sign@~0.8.1, oauth-sign@~0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" - -object-assign@^4.0.1, object-assign@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - -object-inspect@~1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" - -object-keys@^1.0.8: - version "1.0.11" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" - -on-finished@~2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - dependencies: - ee-first "1.1.1" - -once@^1.3.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - dependencies: - wrappy "1" - -optionator@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.4" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - wordwrap "~1.0.0" - -os-locale@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - dependencies: - lcid "^1.0.0" - -pac-proxy-agent@1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz#34a385dfdf61d2f0ecace08858c745d3e791fd4d" - dependencies: - agent-base "2" - debug "2" - extend "3" - get-uri "2" - http-proxy-agent "1" - https-proxy-agent "1" - pac-resolver "~2.0.0" - raw-body "2" - socks-proxy-agent "2" - -pac-resolver@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-2.0.0.tgz#99b88d2f193fbdeefc1c9a529c1f3260ab5277cd" - dependencies: - co "~3.0.6" - degenerator "~1.0.2" - ip "1.0.1" - netmask "~1.0.4" - thunkify "~2.1.1" - -parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - dependencies: - error-ex "^1.2.0" - -parse-ms@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" - -parseurl@~1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" - -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - dependencies: - pinkie-promise "^2.0.0" - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - -path-parse@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" - -path-proxy@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/path-proxy/-/path-proxy-1.0.0.tgz#18e8a36859fc9d2f1a53b48dee138543c020de5e" - dependencies: - inflection "~1.3.0" - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - -pify@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - dependencies: - pinkie "^2.0.0" - -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - -plur@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - -pretty-ms@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" - dependencies: - is-finite "^1.0.1" - parse-ms "^1.0.0" - plur "^1.0.0" - -prettysize@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/prettysize/-/prettysize-1.1.0.tgz#c6c52f87161ff172ea435f375f99831dd9a97bb0" - -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" - -process-nextick-args@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" - -promise@^7.0.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - dependencies: - asap "~2.0.3" - -proxy-addr@~2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" - dependencies: - forwarded "~0.1.2" - ipaddr.js "1.5.2" - -proxy-agent@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-2.0.0.tgz#57eb5347aa805d74ec681cb25649dba39c933499" - dependencies: - agent-base "2" - debug "2" - extend "3" - http-proxy-agent "1" - https-proxy-agent "1" - lru-cache "~2.6.5" - pac-proxy-agent "1" - socks-proxy-agent "2" - -pug-attrs@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-2.0.2.tgz#8be2b2225568ffa75d1b866982bff9f4111affcb" - dependencies: - constantinople "^3.0.1" - js-stringify "^1.0.1" - pug-runtime "^2.0.3" - -pug-code-gen@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-2.0.0.tgz#96aea39a9e62f1ec5d2b6a5b42a29d528c70b43d" - dependencies: - constantinople "^3.0.1" - doctypes "^1.1.0" - js-stringify "^1.0.1" - pug-attrs "^2.0.2" - pug-error "^1.3.2" - pug-runtime "^2.0.3" - void-elements "^2.0.1" - with "^5.0.0" - -pug-error@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-1.3.2.tgz#53ae7d9d29bb03cf564493a026109f54c47f5f26" - -pug-filters@^2.1.5: - version "2.1.5" - resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-2.1.5.tgz#66bf6e80d97fbef829bab0aa35eddff33fc964f3" - dependencies: - clean-css "^3.3.0" - constantinople "^3.0.1" - jstransformer "1.0.0" - pug-error "^1.3.2" - pug-walk "^1.1.5" - resolve "^1.1.6" - uglify-js "^2.6.1" - -pug-lexer@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-3.1.0.tgz#fd087376d4a675b4f59f8fef422883434e9581a2" - dependencies: - character-parser "^2.1.1" - is-expression "^3.0.0" - pug-error "^1.3.2" - -pug-linker@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-3.0.3.tgz#25f59eb750237f0368e59c3379764229c0189c41" - dependencies: - pug-error "^1.3.2" - pug-walk "^1.1.5" - -pug-load@^2.0.9: - version "2.0.9" - resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-2.0.9.tgz#ee217c914cc1d9324d44b86c32d1df241d36de7a" - dependencies: - object-assign "^4.1.0" - pug-walk "^1.1.5" - -pug-parser@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-4.0.0.tgz#c9f52322e4eabe4bf5beeba64ed18373bb627801" - dependencies: - pug-error "^1.3.2" - token-stream "0.0.1" - -pug-runtime@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-2.0.3.tgz#98162607b0fce9e254d427f33987a5aee7168bda" - -pug-strip-comments@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-1.0.2.tgz#d313afa01bcc374980e1399e23ebf2eb9bdc8513" - dependencies: - pug-error "^1.3.2" - -pug-walk@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-1.1.5.tgz#90e943acbcf7021e6454cf1b32245891cba6f851" - -pug@^2.0.0-beta3: - version "2.0.0-rc.4" - resolved "https://registry.yarnpkg.com/pug/-/pug-2.0.0-rc.4.tgz#b7b08f6599bd5302568042b7436984fb28c80a13" - dependencies: - pug-code-gen "^2.0.0" - pug-filters "^2.1.5" - pug-lexer "^3.1.0" - pug-linker "^3.0.3" - pug-load "^2.0.9" - pug-parser "^4.0.0" - pug-runtime "^2.0.3" - pug-strip-comments "^1.0.2" - -punycode@1.4.1, punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - -q@~1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" - -qs@6.5.1, qs@^6.5.1, qs@~6.5.1: - version "6.5.1" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" - -qs@~6.2.0: - version "6.2.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" - -range-parser@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - -raw-body@2, raw-body@2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" - dependencies: - bytes "3.0.0" - http-errors "1.6.2" - iconv-lite "0.4.19" - unpipe "1.0.0" - -re-emitter@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7" - -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" - -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" - -readable-stream@1.1.x, "readable-stream@1.x >=1.1.9", readable-stream@^1.0.31: - version "1.1.14" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -readable-stream@2, readable-stream@^2.1.0, readable-stream@^2.3.0: - version "2.3.4" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.0.3" - util-deprecate "~1.0.1" - -readable-stream@2.2.7: - version "2.2.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.7.tgz#07057acbe2467b22042d36f98c5ad507054e95b1" - dependencies: - buffer-shims "~1.0.0" - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~1.0.0" - util-deprecate "~1.0.1" - -readable-stream@^2.0.0, readable-stream@^2.0.5, readable-stream@^2.1.5: - version "2.3.3" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - safe-buffer "~5.1.1" - string_decoder "~1.0.3" - util-deprecate "~1.0.1" - -readable-stream@~2.0.5: - version "2.0.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~0.10.x" - util-deprecate "~1.0.1" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - dependencies: - resolve "^1.1.6" - -redis-commands@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.3.1.tgz#81d826f45fa9c8b2011f4cd7a0fe597d241d442b" - -redis-parser@^2.0.0, redis-parser@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" - -redis@^0.12.1: - version "0.12.1" - resolved "https://registry.yarnpkg.com/redis/-/redis-0.12.1.tgz#64df76ad0fc8acebaebd2a0645e8a48fac49185e" - -redis@^2.7.1: - version "2.8.0" - resolved "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" - dependencies: - double-ended-queue "^2.1.0-0" - redis-commands "^1.2.0" - redis-parser "^2.6.0" - -redis@~2.6.0-2: - version "2.6.5" - resolved "https://registry.yarnpkg.com/redis/-/redis-2.6.5.tgz#87c1eff4a489f94b70871f3d08b6988f23a95687" - dependencies: - double-ended-queue "^2.1.0-0" - redis-commands "^1.2.0" - redis-parser "^2.0.0" - -reds@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/reds/-/reds-0.2.5.tgz#38a767f7663cd749036848697d82c74fd29bc01f" - dependencies: - natural "^0.2.0" - redis "^0.12.1" - -repeat-string@^1.5.2: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - -request@2.75.x: - version "2.75.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" - dependencies: - aws-sign2 "~0.6.0" - aws4 "^1.2.1" - bl "~1.1.2" - caseless "~0.11.0" - combined-stream "~1.0.5" - extend "~3.0.0" - forever-agent "~0.6.1" - form-data "~2.0.0" - har-validator "~2.0.6" - hawk "~3.1.3" - http-signature "~1.1.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.7" - node-uuid "~1.4.7" - oauth-sign "~0.8.1" - qs "~6.2.0" - stringstream "~0.0.4" - tough-cookie "~2.3.0" - tunnel-agent "~0.4.1" - -request@^2.0.0, request@^2.74.0: - version "2.83.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.6.0" - caseless "~0.12.0" - combined-stream "~1.0.5" - extend "~3.0.1" - forever-agent "~0.6.1" - form-data "~2.3.1" - har-validator "~5.0.3" - hawk "~6.0.2" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.17" - oauth-sign "~0.8.2" - performance-now "^2.1.0" - qs "~6.5.1" - safe-buffer "^5.1.1" - stringstream "~0.0.5" - tough-cookie "~2.3.3" - tunnel-agent "^0.6.0" - uuid "^3.1.0" - -requestretry@^1.2.2: - version "1.13.0" - resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-1.13.0.tgz#213ec1006eeb750e8b8ce54176283d15a8d55d94" - dependencies: - extend "^3.0.0" - lodash "^4.15.0" - request "^2.74.0" - when "^3.7.7" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - -require-main-filename@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - -require_optional@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" - dependencies: - resolve-from "^2.0.0" - semver "^5.1.0" - -resolve-from@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" - -resolve@^1.1.6: - version "1.5.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" - dependencies: - path-parse "^1.0.5" - -resolve@~1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" - dependencies: - path-parse "^1.0.5" - -resumer@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" - dependencies: - through "~2.3.4" - -right-align@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" - dependencies: - align-text "^0.1.1" - -safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" - -sax@0.5.x: - version "0.5.8" - resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1" - -sax@>=0.6.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - -"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" - -semver@~5.0.1: - version "5.0.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" - -send@0.16.1: - version "0.16.1" - resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" - dependencies: - debug "2.6.9" - depd "~1.1.1" - destroy "~1.0.4" - encodeurl "~1.0.1" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "~1.6.2" - mime "1.4.1" - ms "2.0.0" - on-finished "~2.3.0" - range-parser "~1.2.0" - statuses "~1.3.1" - -serve-static@1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" - dependencies: - encodeurl "~1.0.1" - escape-html "~1.0.3" - parseurl "~1.3.2" - send "0.16.1" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - -setprototypeof@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - -shelljs@^0.7.8: - version "0.7.8" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -slack-node@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/slack-node/-/slack-node-0.2.0.tgz#de4b8dddaa8b793f61dbd2938104fdabf37dfa30" - dependencies: - requestretry "^1.2.2" - -smart-buffer@^1.0.13, smart-buffer@^1.0.4: - version "1.1.15" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-1.1.15.tgz#7f114b5b65fab3e2a35aa775bb12f0d1c649bf16" - -smtp-connection@2.12.0: - version "2.12.0" - resolved "https://registry.yarnpkg.com/smtp-connection/-/smtp-connection-2.12.0.tgz#d76ef9127cb23c2259edb1e8349c2e8d5e2d74c1" - dependencies: - httpntlm "1.6.1" - nodemailer-shared "1.1.0" - -sntp@1.x.x: - version "1.0.9" - resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" - dependencies: - hoek "2.x.x" - -sntp@2.x.x: - version "2.1.0" - resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" - dependencies: - hoek "4.x.x" - -socks-proxy-agent@2: - version "2.1.1" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz#86ebb07193258637870e13b7bd99f26c663df3d3" - dependencies: - agent-base "2" - extend "3" - socks "~1.1.5" - -socks@1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/socks/-/socks-1.1.9.tgz#628d7e4d04912435445ac0b6e459376cb3e6d691" - dependencies: - ip "^1.1.2" - smart-buffer "^1.0.4" - -socks@~1.1.5: - version "1.1.10" - resolved "https://registry.yarnpkg.com/socks/-/socks-1.1.10.tgz#5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a" - dependencies: - ip "^1.1.4" - smart-buffer "^1.0.13" - -source-map@0.1.x: - version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" - dependencies: - amdefine ">=0.0.4" - -source-map@0.4.x: - version "0.4.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" - dependencies: - amdefine ">=0.0.4" - -source-map@~0.5.1, source-map@~0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - -spdx-correct@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" - dependencies: - spdx-license-ids "^1.0.2" - -spdx-expression-parse@~1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" - -spdx-license-ids@^1.0.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" - -split@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - dependencies: - through "2" - -sshpk@^1.7.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - dashdash "^1.12.0" - getpass "^0.1.1" - optionalDependencies: - bcrypt-pbkdf "^1.0.0" - ecc-jsbn "~0.1.1" - jsbn "~0.1.0" - tweetnacl "~0.14.0" - -"statuses@>= 1.3.1 < 2": - version "1.4.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" - -statuses@~1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" - -streamroller@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-0.7.0.tgz#a1d1b7cf83d39afb0d63049a5acbf93493bdf64b" - dependencies: - date-format "^1.2.0" - debug "^3.1.0" - mkdirp "^0.5.1" - readable-stream "^2.3.0" - -string-to-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/string-to-stream/-/string-to-stream-1.1.0.tgz#acf2c9ead1c418e148509a12d2cbb469f333a218" - dependencies: - inherits "^2.0.1" - readable-stream "^2.1.0" - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -string.prototype.trim@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" - dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.0" - function-bind "^1.0.2" - -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - -string_decoder@~1.0.0, string_decoder@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" - dependencies: - safe-buffer "~5.1.0" - -stringstream@~0.0.4, stringstream@~0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - dependencies: - ansi-regex "^2.0.0" - -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - dependencies: - is-utf8 "^0.2.0" - -stylus@0.54.5, stylus@~0.54.5: - version "0.54.5" - resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79" - dependencies: - css-parse "1.7.x" - debug "*" - glob "7.0.x" - mkdirp "0.5.x" - sax "0.5.x" - source-map "0.1.x" - -superagent@^3.5.2: - version "3.8.2" - resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.8.2.tgz#e4a11b9d047f7d3efeb3bbe536d9ec0021d16403" - dependencies: - component-emitter "^1.2.0" - cookiejar "^2.1.0" - debug "^3.1.0" - extend "^3.0.0" - form-data "^2.3.1" - formidable "^1.1.1" - methods "^1.1.1" - mime "^1.4.1" - qs "^6.5.1" - readable-stream "^2.0.5" - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - -"sylvester@>= 0.0.12", "sylvester@>= 0.0.8": - version "0.0.21" - resolved "https://registry.yarnpkg.com/sylvester/-/sylvester-0.0.21.tgz#2987b1ce2bd2f38b0dce2a34388884bfa4400ea7" - -tap-out@^1.4.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-1.4.2.tgz#c907ec1bf9405111d088263e92f5608b88cbb37a" - dependencies: - re-emitter "^1.0.0" - readable-stream "^2.0.0" - split "^1.0.0" - trim "0.0.1" - -tap-spec@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/tap-spec/-/tap-spec-4.1.1.tgz#e2e9f26f5208232b1f562288c97624d58a88f05a" - dependencies: - chalk "^1.0.0" - duplexer "^0.1.1" - figures "^1.4.0" - lodash "^3.6.0" - pretty-ms "^2.1.0" - repeat-string "^1.5.2" - tap-out "^1.4.1" - through2 "^2.0.0" - -tape@^4.8.0: - version "4.8.0" - resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" - dependencies: - deep-equal "~1.0.1" - defined "~1.0.0" - for-each "~0.3.2" - function-bind "~1.1.0" - glob "~7.1.2" - has "~1.0.1" - inherits "~2.0.3" - minimist "~1.2.0" - object-inspect "~1.3.0" - resolve "~1.4.0" - resumer "~0.0.0" - string.prototype.trim "~1.1.2" - through "~2.3.8" - -through2@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" - dependencies: - readable-stream "^2.1.5" - xtend "~4.0.1" - -through@2, through@^2.3.6, through@~2.3.4, through@~2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - -thunkify@~2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/thunkify/-/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d" - -timespan@2.3.x: - version "2.3.0" - resolved "https://registry.yarnpkg.com/timespan/-/timespan-2.3.0.tgz#4902ce040bd13d845c8f59b27e9d59bad6f39929" - -token-stream@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-0.0.1.tgz#ceeefc717a76c4316f126d0b9dbaa55d7e7df01a" - -tough-cookie@~2.3.0, tough-cookie@~2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" - dependencies: - punycode "^1.4.1" - -trim@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" - -tsscmp@~1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - dependencies: - safe-buffer "^5.0.1" - -tunnel-agent@~0.4.1: - version "0.4.3" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - dependencies: - prelude-ls "~1.1.2" - -type-is@~1.6.15: - version "1.6.15" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" - dependencies: - media-typer "0.3.0" - mime-types "~2.1.15" - -uglify-js@^2.6.1: - version "2.8.29" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" - dependencies: - source-map "~0.5.1" - yargs "~3.10.0" - optionalDependencies: - uglify-to-browserify "~1.0.0" - -uglify-to-browserify@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" - -unbzip2-stream@^1.0.9: - version "1.2.5" - resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz#73a033a567bbbde59654b193c44d48a7e4f43c47" - dependencies: - buffer "^3.0.1" - through "^2.3.6" - -underscore@>=1.3.1: - version "1.8.3" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" - -underscore@~1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - -util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - -util@^0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - dependencies: - inherits "2.0.1" - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - -uuid@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" - -uuid@^3.1.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" - -validate-npm-package-license@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" - dependencies: - spdx-correct "~1.0.0" - spdx-expression-parse "~1.0.0" - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -void-elements@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" - -when@^3.7.7: - version "3.7.8" - resolved "https://registry.yarnpkg.com/when/-/when-3.7.8.tgz#c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82" - -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - -window-size@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" - -window-size@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" - -with@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe" - dependencies: - acorn "^3.1.0" - acorn-globals "^3.0.0" - -wordwrap@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" - -wordwrap@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - -worker-nodes@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/worker-nodes/-/worker-nodes-1.6.0.tgz#50dda4bf15c87cc0951e454e7968f420502212b8" - dependencies: - msgpack-lite "^0.1.26" - -wrap-ansi@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - -wtf_wikipedia@^2.4.2: - version "2.5.0" - resolved "https://registry.yarnpkg.com/wtf_wikipedia/-/wtf_wikipedia-2.5.0.tgz#2fe18bb5dcf4b70e6acbbbec2207a0c33c2f73d3" - dependencies: - jshashes "^1.0.6" - superagent "^3.5.2" - -xml-stream@^0.4.5: - version "0.4.5" - resolved "https://registry.yarnpkg.com/xml-stream/-/xml-stream-0.4.5.tgz#7452d85b37f9b881a70eff0cf74a0df02088edeb" - dependencies: - iconv "^2.1.4" - node-expat "^2.3.1" - readable-stream "^1.0.31" - -xml2js@^0.4.19: - version "0.4.19" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" - dependencies: - sax ">=0.6.0" - xmlbuilder "~9.0.1" - -xmlbuilder@~9.0.1: - version "9.0.7" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" - -xmlsplit@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/xmlsplit/-/xmlsplit-1.2.8.tgz#ed8857dbd90eada377d357c8ada704aebfc3a35c" - dependencies: - util "^0.10.3" - -xregexp@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" - -xtend@^4.0.0, xtend@~4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" - -y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - -yargs-parser@^2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" - dependencies: - camelcase "^3.0.0" - lodash.assign "^4.0.6" - -yargs@^4.0.0: - version "4.8.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" - dependencies: - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - lodash.assign "^4.0.3" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.1" - which-module "^1.0.0" - window-size "^0.2.0" - y18n "^3.2.1" - yargs-parser "^2.4.1" - -yargs@~3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" - dependencies: - camelcase "^1.0.2" - cliui "^2.1.0" - decamelize "^1.0.0" - window-size "0.1.0" From 5c6280c0b7196e701b12757a7e8abab97c09be48 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 20:25:59 -0400 Subject: [PATCH 30/42] better logging --- config.js | 4 +- lib/fns.js | 9 + lib/stat.js | 60 +- package-lock.json | 2468 --------------------------------------- package.json | 1 + scratch.js | 12 +- src/02-multithreader.js | 36 +- src/index.js | 30 +- src/worker/_logger.js | 18 - src/worker/index.js | 14 +- 10 files changed, 118 insertions(+), 2534 deletions(-) create mode 100644 lib/fns.js delete mode 100644 package-lock.json delete mode 100644 src/worker/_logger.js diff --git a/config.js b/config.js index f432af2..1ff5908 100644 --- a/config.js +++ b/config.js @@ -2,5 +2,7 @@ module.exports = { //number of pages to write at a time, to the queue "batch_size": 1000, //the default name of the collection to write to - "collection": "wikipedia" + "collection": "wikipedia", + //update interval + "logInterval": 1000, } diff --git a/lib/fns.js b/lib/fns.js new file mode 100644 index 0000000..b779f9a --- /dev/null +++ b/lib/fns.js @@ -0,0 +1,9 @@ + +//i am a computer-scientist +exports.oneSec = function(fn) { + setTimeout(fn, 1000) +} +//add a comma to large numbers +exports.niceNumber = (x) => { + return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); +} diff --git a/lib/stat.js b/lib/stat.js index f33a0f8..8ddffa4 100644 --- a/lib/stat.js +++ b/lib/stat.js @@ -1,10 +1,62 @@ const config = require('../config'); const chalk = require('chalk'); +const fns = require('../lib/fns'); +const MongoClient = require('mongodb').MongoClient + +const open = function(dbName, callback) { + let url = 'mongodb://localhost:27017/' + dbName + MongoClient.connect(url, function(err, db) { + if (err) { + console.log(err) + process.exit(1) + } + callback(db) + }) +} + +const lastOne = function(col, count, cb) { + col.find({}, { + skip: count - 1, + limit: 1 + }).toArray(function(err, docs) { + cb(docs[0]) + }) +} + +const stat = function(db, cb) { + cb = cb || function() {} + let col = db.collection(config.collection) + col.count().then((count) => { + if (count > 0) { + lastOne(col, count, (doc) => { + count = fns.niceNumber(count) + console.log(chalk.grey(' #') + chalk.green(count) + ' - ' + chalk.blue('"' + doc.title + '"')) + cb() + }) + } + }) +} //birds-eye-view of what pages are in mongo -const stat = function(db) { - db.collection(config.collection).count((err, count) => { - console.log(` - - pages: ${count}`) +const cold = function(dbName) { + open(dbName, function(db) { + stat(db, () => { + db.close() + }) }) } -module.exports = stat + +//hit 'stat' in an interval +const hound = function(dbName) { + open(dbName, function(db) { + setInterval(() => { + stat(db) + }, config.logInterval) + }) +} + +module.exports = { + cold: cold, + hot: stat, + hound: hound +} diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index a401b10..0000000 --- a/package-lock.json +++ /dev/null @@ -1,2468 +0,0 @@ -{ - "name": "dumpster-dive", - "version": "2.4.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "addressparser": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz", - "integrity": "sha1-R6++GiqSYhkdtoOOT9HTm0CCF0Y=", - "optional": true - }, - "agent-base": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz", - "integrity": "sha1-1t4Q1a9hMtW9aSQn1G/FOFOQlMc=", - "requires": { - "extend": "3.0.1", - "semver": "5.0.3" - }, - "dependencies": { - "semver": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", - "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=" - } - } - }, - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "optional": true, - "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.1.0", - "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1" - } - }, - "amqplib": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/amqplib/-/amqplib-0.5.2.tgz", - "integrity": "sha512-l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA==", - "optional": true, - "requires": { - "bitsyntax": "0.0.4", - "bluebird": "3.5.1", - "buffer-more-ints": "0.0.2", - "readable-stream": "1.1.14", - "safe-buffer": "5.1.1" - } - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "1.9.1" - } - }, - "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", - "optional": true - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "ast-types": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.11.2.tgz", - "integrity": "sha512-aL+pcOQ+6dpWd0xrUe+Obo2CgdkFvsntkXEmzZKqEN4cR0PStF+1MBuc4V+YZsv4Q36luvyjG7F4lc+wH2bmag==", - "optional": true - }, - "async": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/async/-/async-2.1.5.tgz", - "integrity": "sha1-5YfGhYCZSsZ/xW/4bTrFa9voELw=", - "optional": true, - "requires": { - "lodash": "4.17.5" - } - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "optional": true - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "optional": true - }, - "aws4": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", - "optional": true - }, - "axios": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.15.3.tgz", - "integrity": "sha1-LJ1jiy4ZGgjqHWzJiOrda6W9wFM=", - "optional": true, - "requires": { - "follow-redirects": "1.0.0" - } - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, - "requires": { - "tweetnacl": "0.14.5" - } - }, - "bitsyntax": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/bitsyntax/-/bitsyntax-0.0.4.tgz", - "integrity": "sha1-6xDMb4K4xJDj6FaY8H6D1G4MuoI=", - "optional": true, - "requires": { - "buffer-more-ints": "0.0.2" - } - }, - "bl": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", - "integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=", - "optional": true, - "requires": { - "readable-stream": "2.0.6" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "optional": true - }, - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "optional": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" - } - } - } - }, - "bluebird": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", - "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==", - "optional": true - }, - "boom": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", - "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", - "optional": true, - "requires": { - "hoek": "4.2.1" - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "1.0.0", - "concat-map": "0.0.1" - } - }, - "bson": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/bson/-/bson-1.0.6.tgz", - "integrity": "sha512-D8zmlb46xfuK2gGvKmUjIklQEouN2nQ0LEHHeZ/NoHM2LDiMk2EYzZ5Ntw/Urk+bgMDosOZxaRzXxvhI5TcAVQ==" - }, - "buffer-more-ints": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz", - "integrity": "sha1-JrOIXRD6E9t/wBquOquHAZngEkw=" - }, - "buffer-shims": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", - "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=" - }, - "buildmail": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz", - "integrity": "sha1-h393OLeHKYccmhBeO4N9K+EaenI=", - "optional": true, - "requires": { - "addressparser": "1.0.1", - "libbase64": "0.1.0", - "libmime": "3.0.0", - "libqp": "1.1.0", - "nodemailer-fetch": "1.6.0", - "nodemailer-shared": "1.1.0", - "punycode": "1.4.1" - } - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "optional": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "optional": true - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "requires": { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.4.0" - } - }, - "circular-json": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.1.tgz", - "integrity": "sha512-UjgcRlTAhAkLeXmDe2wK7ktwy/tgAqxiSndTIPiFZuIPLZmzHzWMwUIe9h9m/OokypG7snxCDEuwJshGBdPvaw==" - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "optional": true - }, - "color-convert": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", - "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "combined-stream": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", - "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", - "requires": { - "delayed-stream": "1.0.0" - } - }, - "commander": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", - "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cross-fetch": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.1.1.tgz", - "integrity": "sha512-3W94GTFVrSQWw/xHsLpX+z3ArhDKjoh7pJfl4+5sbch0V17ZfPjhZ+gnUdz56t7eoFXI9DhdJtaZTr7jmPL2EQ==", - "requires": { - "node-fetch": "2.1.2", - "whatwg-fetch": "2.0.4" - } - }, - "cryptiles": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", - "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", - "optional": true, - "requires": { - "boom": "5.2.0" - }, - "dependencies": { - "boom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", - "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", - "optional": true, - "requires": { - "hoek": "4.2.1" - } - } - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "optional": true, - "requires": { - "assert-plus": "1.0.0" - } - }, - "data-uri-to-buffer": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz", - "integrity": "sha512-vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==", - "optional": true - }, - "date-format": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", - "integrity": "sha1-YV6CjiM90aubua4JUODOzPpuytg=" - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", - "dev": true - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "optional": true - }, - "define-properties": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", - "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", - "dev": true, - "requires": { - "foreach": "2.0.5", - "object-keys": "1.0.11" - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", - "dev": true - }, - "degenerator": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-1.0.4.tgz", - "integrity": "sha1-/PSQo37OJmRk2cxDGrmMWBnO0JU=", - "optional": true, - "requires": { - "ast-types": "0.11.2", - "escodegen": "1.9.1", - "esprima": "3.1.3" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", - "optional": true - }, - "double-ended-queue": { - "version": "2.1.0-0", - "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", - "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=", - "optional": true - }, - "duplexer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", - "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", - "dev": true - }, - "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "es-abstract": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz", - "integrity": "sha512-ZnQrE/lXTTQ39ulXZ+J1DTFazV9qBy61x2bY071B+qGco8Z8q1QddsLdt/EF8Ai9hcWH72dWS0kFqXLxOxqslA==", - "dev": true, - "requires": { - "es-to-primitive": "1.1.1", - "function-bind": "1.1.1", - "has": "1.0.1", - "is-callable": "1.1.3", - "is-regex": "1.0.4" - } - }, - "es-to-primitive": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", - "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", - "dev": true, - "requires": { - "is-callable": "1.1.3", - "is-date-object": "1.0.1", - "is-symbol": "1.0.1" - } - }, - "es6-promise": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.2.1.tgz", - "integrity": "sha1-7FYjOGgDKQkgcXDDlEjiREndH8Q=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "escodegen": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz", - "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==", - "optional": true, - "requires": { - "esprima": "3.1.3", - "estraverse": "4.2.0", - "esutils": "2.0.2", - "optionator": "0.8.2", - "source-map": "0.6.1" - } - }, - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "optional": true - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "optional": true - }, - "event-lite": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/event-lite/-/event-lite-0.1.1.tgz", - "integrity": "sha1-R88IqNN9C2lM23s7F7UfqsZXYIY=" - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", - "optional": true - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", - "optional": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "optional": true - }, - "figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "dev": true, - "requires": { - "escape-string-regexp": "1.0.5", - "object-assign": "4.1.1" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true - }, - "follow-redirects": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.0.0.tgz", - "integrity": "sha1-jjQpjL0uF28lTv/sdaHHjMhJ/Tc=", - "optional": true, - "requires": { - "debug": "2.6.9" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "for-each": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz", - "integrity": "sha1-LEBFC5NI6X8oEyJZO6lnBLmr1NQ=", - "dev": true, - "requires": { - "is-function": "1.0.1" - } - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", - "dev": true - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "optional": true - }, - "form-data": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", - "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.6", - "mime-types": "2.1.18" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "ftp": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", - "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=", - "optional": true, - "requires": { - "readable-stream": "1.1.14", - "xregexp": "2.0.0" - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "generate-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", - "optional": true - }, - "generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "optional": true, - "requires": { - "is-property": "1.0.2" - } - }, - "get-uri": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-2.0.1.tgz", - "integrity": "sha512-7aelVrYqCLuVjq2kEKRTH8fXPTC0xKTkM+G7UlFkEwCXY3sFbSxvY375JoFowOAYbkaU47SrBvOefUlLZZ+6QA==", - "optional": true, - "requires": { - "data-uri-to-buffer": "1.2.0", - "debug": "2.6.9", - "extend": "3.0.1", - "file-uri-to-path": "1.0.0", - "ftp": "0.3.10", - "readable-stream": "2.3.4" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "optional": true - }, - "readable-stream": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", - "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", - "optional": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "optional": true, - "requires": { - "safe-buffer": "5.1.1" - } - } - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "optional": true, - "requires": { - "assert-plus": "1.0.0" - } - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "dev": true, - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "optional": true - }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", - "optional": true, - "requires": { - "ajv": "5.5.2", - "har-schema": "2.0.0" - } - }, - "has": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", - "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", - "dev": true, - "requires": { - "function-bind": "1.1.1" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "requires": { - "ansi-regex": "2.1.1" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "hawk": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", - "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", - "optional": true, - "requires": { - "boom": "4.3.1", - "cryptiles": "3.1.2", - "hoek": "4.2.1", - "sntp": "2.1.0" - } - }, - "hipchat-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz", - "integrity": "sha1-ttJJdVQ3wZEII2d5nTupoPI7Ix4=", - "optional": true, - "requires": { - "lodash": "4.17.5", - "request": "2.83.0" - } - }, - "hoek": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz", - "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "optional": true, - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": "1.4.0" - } - }, - "http-proxy-agent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz", - "integrity": "sha1-zBzjjkU7+YSg93AtLdWcc9CBKEo=", - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - } - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "httpntlm": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz", - "integrity": "sha1-rQFScUOi6Hc8+uapb1hla7UqNLI=", - "requires": { - "httpreq": "0.4.24", - "underscore": "1.7.0" - } - }, - "httpreq": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/httpreq/-/httpreq-0.4.24.tgz", - "integrity": "sha1-QzX/2CzZaWaKOUZckprGHWOTYn8=" - }, - "https-proxy-agent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz", - "integrity": "sha1-NffabEjOTdv6JkiRrFk+5f+GceY=", - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - } - } - }, - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", - "optional": true - }, - "ieee754": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", - "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" - }, - "inflection": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.10.0.tgz", - "integrity": "sha1-W//LEZetPoEFD44X4hZoCH7p6y8=", - "optional": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "int64-buffer": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/int64-buffer/-/int64-buffer-0.1.10.tgz", - "integrity": "sha1-J3siiofZWtd30HwTgyAiQGpHNCM=" - }, - "interpret": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", - "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", - "dev": true - }, - "ip": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.0.1.tgz", - "integrity": "sha1-x+NWzeoiWucbNtcPLnGpK6TkJZA=", - "optional": true - }, - "is-callable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", - "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=", - "dev": true - }, - "is-date-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", - "dev": true - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-function": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", - "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=", - "dev": true - }, - "is-my-ip-valid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", - "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==", - "optional": true - }, - "is-my-json-valid": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz", - "integrity": "sha512-IBhBslgngMQN8DDSppmgDv7RNrlFotuuDsKcrCP3+HbFaVivIBU7u9oiiErw8sH4ynx3+gOGQ3q2otkgiSi6kg==", - "optional": true, - "requires": { - "generate-function": "2.0.0", - "generate-object-property": "1.2.0", - "is-my-ip-valid": "1.0.0", - "jsonpointer": "4.0.1", - "xtend": "4.0.1" - } - }, - "is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", - "optional": true - }, - "is-regex": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", - "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", - "dev": true, - "requires": { - "has": "1.0.1" - } - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "optional": true - }, - "is-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", - "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", - "dev": true - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "optional": true - }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "optional": true - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "optional": true - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "jshashes": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/jshashes/-/jshashes-1.0.7.tgz", - "integrity": "sha1-vtjJeg6WMv0FE5FvVfdt1Uhr5Z8=" - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "optional": true - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", - "optional": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "jsonpointer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", - "optional": true - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "optional": true, - "requires": { - "prelude-ls": "1.1.2", - "type-check": "0.3.2" - } - }, - "libbase64": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz", - "integrity": "sha1-YjUag5VjrF/1vSbxL2Dpgwu3UeY=" - }, - "libmime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/libmime/-/libmime-3.0.0.tgz", - "integrity": "sha1-UaGp50SOy9Ms2lRCFnW7IbwJPaY=", - "requires": { - "iconv-lite": "0.4.15", - "libbase64": "0.1.0", - "libqp": "1.1.0" - }, - "dependencies": { - "iconv-lite": { - "version": "0.4.15", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", - "integrity": "sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es=" - } - } - }, - "libqp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz", - "integrity": "sha1-9ebgatdLeU+1tbZpiL9yjvHe2+g=" - }, - "line-by-line": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz", - "integrity": "sha512-MmwVPfOyp0lWnEZ3fBA8Ah4pMFvxO6WgWovqZNu7Y4J0TNnGcsV4S1LzECHbdgqk1hoHc2mFP1Axc37YUqwafg==" - }, - "lodash": { - "version": "4.17.5", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz", - "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==", - "optional": true - }, - "log4js": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-2.5.3.tgz", - "integrity": "sha512-YL/qpTxYtK0iWWbuKCrevDZz5lh+OjyHHD+mICqpjnYGKdNRBvPeh/1uYjkKUemT1CSO4wwLOwphWMpKAnD9kw==", - "requires": { - "amqplib": "0.5.2", - "axios": "0.15.3", - "circular-json": "0.5.1", - "date-format": "1.2.0", - "debug": "3.1.0", - "hipchat-notifier": "1.1.0", - "loggly": "1.1.1", - "mailgun-js": "0.7.15", - "nodemailer": "2.7.2", - "redis": "2.8.0", - "semver": "5.5.0", - "slack-node": "0.2.0", - "streamroller": "0.7.0" - } - }, - "loggly": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/loggly/-/loggly-1.1.1.tgz", - "integrity": "sha1-Cg/B0/o6XsRP3HuJe+uipGlc6+4=", - "optional": true, - "requires": { - "json-stringify-safe": "5.0.1", - "request": "2.75.0", - "timespan": "2.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "optional": true - }, - "assert-plus": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", - "optional": true - }, - "aws-sign2": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", - "optional": true - }, - "boom": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", - "requires": { - "hoek": "2.16.3" - } - }, - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", - "optional": true - }, - "cryptiles": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", - "optional": true, - "requires": { - "boom": "2.10.1" - } - }, - "form-data": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.0.0.tgz", - "integrity": "sha1-bwrrrcxdoWwT4ezBETfYX5uIOyU=", - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.6", - "mime-types": "2.1.18" - } - }, - "har-validator": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", - "optional": true, - "requires": { - "chalk": "1.1.3", - "commander": "2.15.1", - "is-my-json-valid": "2.17.2", - "pinkie-promise": "2.0.1" - }, - "dependencies": { - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "optional": true, - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - } - } - }, - "hawk": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", - "optional": true, - "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" - } - }, - "hoek": { - "version": "2.16.3", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" - }, - "http-signature": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", - "optional": true, - "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "node-uuid": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", - "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=", - "optional": true - }, - "qs": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz", - "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=", - "optional": true - }, - "request": { - "version": "2.75.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.75.0.tgz", - "integrity": "sha1-0rgmiihtoT6qXQGt9dGMyQ9lfZM=", - "optional": true, - "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.6.0", - "bl": "1.1.2", - "caseless": "0.11.0", - "combined-stream": "1.0.6", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.0.0", - "har-validator": "2.0.6", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.18", - "node-uuid": "1.4.8", - "oauth-sign": "0.8.2", - "qs": "6.2.3", - "stringstream": "0.0.5", - "tough-cookie": "2.3.4", - "tunnel-agent": "0.4.3" - } - }, - "sntp": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", - "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", - "optional": true, - "requires": { - "hoek": "2.16.3" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "optional": true - }, - "tunnel-agent": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", - "optional": true - } - } - }, - "lru-cache": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", - "integrity": "sha1-5W1jVBSO3o13B7WNFDIg/QjfD9U=", - "optional": true - }, - "mailcomposer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/mailcomposer/-/mailcomposer-4.0.1.tgz", - "integrity": "sha1-DhxEsqB890DuF9wUm6AJ8Zyt/rQ=", - "optional": true, - "requires": { - "buildmail": "4.0.1", - "libmime": "3.0.0" - } - }, - "mailgun-js": { - "version": "0.7.15", - "resolved": "https://registry.npmjs.org/mailgun-js/-/mailgun-js-0.7.15.tgz", - "integrity": "sha1-7jZqINrGTDwVwD1sGz4O15UlKrs=", - "optional": true, - "requires": { - "async": "2.1.5", - "debug": "2.2.0", - "form-data": "2.1.4", - "inflection": "1.10.0", - "is-stream": "1.1.0", - "path-proxy": "1.0.0", - "proxy-agent": "2.0.0", - "q": "1.4.1", - "tsscmp": "1.0.5" - }, - "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "optional": true, - "requires": { - "ms": "0.7.1" - } - }, - "form-data": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", - "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.6", - "mime-types": "2.1.18" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", - "optional": true - } - } - }, - "mime-db": { - "version": "1.33.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", - "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" - }, - "mime-types": { - "version": "2.1.18", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", - "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", - "requires": { - "mime-db": "1.33.0" - } - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "1.1.11" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, - "mongodb": { - "version": "2.2.33", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.33.tgz", - "integrity": "sha1-tTfEcdNKZlG0jzb9vyl1A0Dgi1A=", - "requires": { - "es6-promise": "3.2.1", - "mongodb-core": "2.1.17", - "readable-stream": "2.2.7" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.7.tgz", - "integrity": "sha1-BwV6y+JGeyIELTb5jFrVBwVOlbE=", - "requires": { - "buffer-shims": "1.0.0", - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "requires": { - "safe-buffer": "5.1.1" - } - } - } - }, - "mongodb-core": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.17.tgz", - "integrity": "sha1-pBizN6FKFJkPtRC5I97mqBMXPfg=", - "requires": { - "bson": "1.0.6", - "require_optional": "1.0.1" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "msgpack-lite": { - "version": "0.1.26", - "resolved": "https://registry.npmjs.org/msgpack-lite/-/msgpack-lite-0.1.26.tgz", - "integrity": "sha1-3TxQsm8FnyXn7e42REGDWOKprYk=", - "requires": { - "event-lite": "0.1.1", - "ieee754": "1.1.8", - "int64-buffer": "0.1.10", - "isarray": "1.0.0" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - } - } - }, - "netmask": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz", - "integrity": "sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU=", - "optional": true - }, - "node-fetch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz", - "integrity": "sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=" - }, - "nodemailer": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-2.7.2.tgz", - "integrity": "sha1-8kLmSa7q45tsftdA73sGHEBNMPk=", - "optional": true, - "requires": { - "libmime": "3.0.0", - "mailcomposer": "4.0.1", - "nodemailer-direct-transport": "3.3.2", - "nodemailer-shared": "1.1.0", - "nodemailer-smtp-pool": "2.8.2", - "nodemailer-smtp-transport": "2.7.2", - "socks": "1.1.9" - }, - "dependencies": { - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "optional": true - }, - "socks": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.9.tgz", - "integrity": "sha1-Yo1+TQSRJDVEWsC25Fk3bLPm1pE=", - "optional": true, - "requires": { - "ip": "1.1.5", - "smart-buffer": "1.1.15" - } - } - } - }, - "nodemailer-direct-transport": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz", - "integrity": "sha1-6W+vuQNYVglH5WkBfZfmBzilCoY=", - "optional": true, - "requires": { - "nodemailer-shared": "1.1.0", - "smtp-connection": "2.12.0" - } - }, - "nodemailer-fetch": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz", - "integrity": "sha1-ecSQihwPXzdbc/6IjamCj23JY6Q=" - }, - "nodemailer-shared": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz", - "integrity": "sha1-z1mU4v0mjQD1zw+nZ6CBae2wfsA=", - "requires": { - "nodemailer-fetch": "1.6.0" - } - }, - "nodemailer-smtp-pool": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz", - "integrity": "sha1-LrlNbPhXgLG0clzoU7nL1ejajHI=", - "optional": true, - "requires": { - "nodemailer-shared": "1.1.0", - "nodemailer-wellknown": "0.1.10", - "smtp-connection": "2.12.0" - } - }, - "nodemailer-smtp-transport": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz", - "integrity": "sha1-A9ccdjFPFKx9vHvwM6am0W1n+3c=", - "optional": true, - "requires": { - "nodemailer-shared": "1.1.0", - "nodemailer-wellknown": "0.1.10", - "smtp-connection": "2.12.0" - } - }, - "nodemailer-wellknown": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz", - "integrity": "sha1-WG24EB2zDLRDjrVGc3pBqtDPE9U=" - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object-inspect": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz", - "integrity": "sha512-OHHnLgLNXpM++GnJRyyhbr2bwl3pPVm4YvaraHrRvDt/N3r+s/gDVHciA7EJBTkijKXj61ssgSAikq1fb0IBRg==", - "dev": true - }, - "object-keys": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", - "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "optional": true, - "requires": { - "deep-is": "0.1.3", - "fast-levenshtein": "2.0.6", - "levn": "0.3.0", - "prelude-ls": "1.1.2", - "type-check": "0.3.2", - "wordwrap": "1.0.0" - } - }, - "pac-proxy-agent": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz", - "integrity": "sha512-QBELCWyLYPgE2Gj+4wUEiMscHrQ8nRPBzYItQNOHWavwBt25ohZHQC4qnd5IszdVVrFbLsQ+dPkm6eqdjJAmwQ==", - "optional": true, - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1", - "get-uri": "2.0.1", - "http-proxy-agent": "1.0.0", - "https-proxy-agent": "1.0.0", - "pac-resolver": "2.0.0", - "raw-body": "2.3.2", - "socks-proxy-agent": "2.1.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "pac-resolver": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-2.0.0.tgz", - "integrity": "sha1-mbiNLxk/ve78HJpSnB8yYKtSd80=", - "optional": true, - "requires": { - "co": "3.0.6", - "degenerator": "1.0.4", - "ip": "1.0.1", - "netmask": "1.0.6", - "thunkify": "2.1.2" - }, - "dependencies": { - "co": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/co/-/co-3.0.6.tgz", - "integrity": "sha1-FEXyJsXrlWE45oyawwFn6n0ua9o=", - "optional": true - } - } - }, - "parse-ms": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz", - "integrity": "sha1-VjRtR0nXjyNDDKDHE4UK75GqNh0=", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-parse": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", - "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", - "dev": true - }, - "path-proxy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz", - "integrity": "sha1-GOijaFn8nS8aU7SN7hOFQ8Ag3l4=", - "optional": true, - "requires": { - "inflection": "1.3.8" - }, - "dependencies": { - "inflection": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.3.8.tgz", - "integrity": "sha1-y9Fg2p91sUw8xjV41POWeEvzAU4=", - "optional": true - } - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", - "optional": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "optional": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "optional": true, - "requires": { - "pinkie": "2.0.4" - } - }, - "plur": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz", - "integrity": "sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY=", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - }, - "pretty-ms": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz", - "integrity": "sha1-QlfCVt8/sLRR1q/6qwIYhBJpgdw=", - "dev": true, - "requires": { - "is-finite": "1.0.2", - "parse-ms": "1.0.1", - "plur": "1.0.0" - } - }, - "prettysize": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/prettysize/-/prettysize-1.1.0.tgz", - "integrity": "sha512-U5Noa+FYV1dGkICyLJz8IWlDUehPF4Bk9tZRO8YqPhLA9EoiHuFqtnpWY2mvMjHh5eOLo82HipeLn4RIiSsGqQ==" - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" - }, - "proxy-agent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.0.0.tgz", - "integrity": "sha1-V+tTR6qAXXTsaByyVknbo5yTNJk=", - "optional": true, - "requires": { - "agent-base": "2.1.1", - "debug": "2.6.9", - "extend": "3.0.1", - "http-proxy-agent": "1.0.0", - "https-proxy-agent": "1.0.0", - "lru-cache": "2.6.5", - "pac-proxy-agent": "1.1.0", - "socks-proxy-agent": "2.1.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "optional": true - }, - "q": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", - "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=", - "optional": true - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", - "optional": true - }, - "raw-body": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", - "optional": true, - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "unpipe": "1.0.0" - } - }, - "re-emitter": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/re-emitter/-/re-emitter-1.1.3.tgz", - "integrity": "sha1-+p4xn/3u6zWycpbvDz03TawvUqc=", - "dev": true - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "optional": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true, - "requires": { - "resolve": "1.7.1" - } - }, - "redis": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", - "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", - "optional": true, - "requires": { - "double-ended-queue": "2.1.0-0", - "redis-commands": "1.3.5", - "redis-parser": "2.6.0" - } - }, - "redis-commands": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.5.tgz", - "integrity": "sha512-foGF8u6MXGFF++1TZVC6icGXuMYPftKXt1FBT2vrfU9ZATNtZJ8duRC5d1lEfE8hyVe3jhelHGB91oB7I6qLsA==", - "optional": true - }, - "redis-parser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", - "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=", - "optional": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "request": { - "version": "2.83.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", - "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", - "optional": true, - "requires": { - "aws-sign2": "0.7.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.6", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.3.2", - "har-validator": "5.0.3", - "hawk": "6.0.2", - "http-signature": "1.2.0", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.18", - "oauth-sign": "0.8.2", - "performance-now": "2.1.0", - "qs": "6.5.1", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.4", - "tunnel-agent": "0.6.0", - "uuid": "3.2.1" - } - }, - "requestretry": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/requestretry/-/requestretry-1.13.0.tgz", - "integrity": "sha512-Lmh9qMvnQXADGAQxsXHP4rbgO6pffCfuR8XUBdP9aitJcLQJxhp7YZK4xAVYXnPJ5E52mwrfiKQtKonPL8xsmg==", - "optional": true, - "requires": { - "extend": "3.0.1", - "lodash": "4.17.5", - "request": "2.83.0", - "when": "3.7.8" - } - }, - "require_optional": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", - "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", - "requires": { - "resolve-from": "2.0.0", - "semver": "5.5.0" - } - }, - "resolve": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", - "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", - "dev": true, - "requires": { - "path-parse": "1.0.5" - } - }, - "resolve-from": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", - "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" - }, - "resumer": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", - "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", - "dev": true, - "requires": { - "through": "2.3.8" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", - "optional": true - }, - "shelljs": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.1.tgz", - "integrity": "sha512-YA/iYtZpzFe5HyWVGrb02FjPxc4EMCfpoU/Phg9fQoyMC72u9598OUBrsU8IrtwAKG0tO8IYaqbaLIw+k3IRGA==", - "dev": true, - "requires": { - "glob": "7.1.2", - "interpret": "1.1.0", - "rechoir": "0.6.2" - } - }, - "slack-node": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/slack-node/-/slack-node-0.2.0.tgz", - "integrity": "sha1-3kuN3aqLeT9h29KTgQT9q/N9+jA=", - "optional": true, - "requires": { - "requestretry": "1.13.0" - } - }, - "smart-buffer": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz", - "integrity": "sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY=" - }, - "smtp-connection": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/smtp-connection/-/smtp-connection-2.12.0.tgz", - "integrity": "sha1-1275EnyyPCJZ7bHoNJwujV4tdME=", - "requires": { - "httpntlm": "1.6.1", - "nodemailer-shared": "1.1.0" - } - }, - "sntp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", - "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", - "optional": true, - "requires": { - "hoek": "4.2.1" - } - }, - "socks": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz", - "integrity": "sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o=", - "requires": { - "ip": "1.1.5", - "smart-buffer": "1.1.15" - }, - "dependencies": { - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" - } - } - }, - "socks-proxy-agent": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz", - "integrity": "sha512-sFtmYqdUK5dAMh85H0LEVFUCO7OhJJe1/z2x/Z6mxp3s7/QPf1RkZmpZy+BpuU0bEjcV9npqKjq9Y3kwFUjnxw==", - "requires": { - "agent-base": "2.1.1", - "extend": "3.0.1", - "socks": "1.1.10" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - }, - "split": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", - "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", - "dev": true, - "requires": { - "through": "2.3.8" - } - }, - "sshpk": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", - "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", - "optional": true, - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - } - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", - "optional": true - }, - "streamroller": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", - "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", - "requires": { - "date-format": "1.2.0", - "debug": "3.1.0", - "mkdirp": "0.5.1", - "readable-stream": "2.3.4" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" - }, - "readable-stream": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", - "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "requires": { - "safe-buffer": "5.1.1" - } - } - } - }, - "string.prototype.trim": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", - "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", - "dev": true, - "requires": { - "define-properties": "1.1.2", - "es-abstract": "1.11.0", - "function-bind": "1.1.1" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "optional": true - }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "2.1.1" - } - }, - "supports-color": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", - "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", - "requires": { - "has-flag": "3.0.0" - } - }, - "tap-out": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/tap-out/-/tap-out-1.4.2.tgz", - "integrity": "sha1-yQfsG/lAURHQiCY+kvVgi4jLs3o=", - "dev": true, - "requires": { - "re-emitter": "1.1.3", - "readable-stream": "2.3.4", - "split": "1.0.1", - "trim": "0.0.1" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "dev": true - }, - "readable-stream": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", - "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - } - } - }, - "tap-spec": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/tap-spec/-/tap-spec-4.1.1.tgz", - "integrity": "sha1-4unyb1IIIysfViKIyXYk1YqI8Fo=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "duplexer": "0.1.1", - "figures": "1.7.0", - "lodash": "3.10.1", - "pretty-ms": "2.1.0", - "repeat-string": "1.6.1", - "tap-out": "1.4.2", - "through2": "2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "tape": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/tape/-/tape-4.8.0.tgz", - "integrity": "sha512-TWILfEnvO7I8mFe35d98F6T5fbLaEtbFTG/lxWvid8qDfFTxt19EBijWmB4j3+Hoh5TfHE2faWs73ua+EphuBA==", - "dev": true, - "requires": { - "deep-equal": "1.0.1", - "defined": "1.0.0", - "for-each": "0.3.2", - "function-bind": "1.1.1", - "glob": "7.1.2", - "has": "1.0.1", - "inherits": "2.0.3", - "minimist": "1.2.0", - "object-inspect": "1.3.0", - "resolve": "1.4.0", - "resumer": "0.0.0", - "string.prototype.trim": "1.1.2", - "through": "2.3.8" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "resolve": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", - "integrity": "sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==", - "dev": true, - "requires": { - "path-parse": "1.0.5" - } - } - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "dev": true, - "requires": { - "readable-stream": "2.3.4", - "xtend": "4.0.1" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "dev": true - }, - "readable-stream": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.4.tgz", - "integrity": "sha512-vuYxeWYM+fde14+rajzqgeohAI7YoJcHE7kXDAc4Nk0EbuKnJfqtY9YtRkLo/tqkuF7MsBQRhPnPeyjYITp3ZQ==", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - } - } - }, - "thunkify": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz", - "integrity": "sha1-+qDp0jDFGsyVyhOjYawFyn4EVT0=", - "optional": true - }, - "timespan": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", - "integrity": "sha1-SQLOBAvRPYRcj1myfp1ZutbzmSk=", - "optional": true - }, - "tough-cookie": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", - "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", - "optional": true, - "requires": { - "punycode": "1.4.1" - } - }, - "trim": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", - "dev": true - }, - "tsscmp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz", - "integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=", - "optional": true - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "optional": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { - "prelude-ls": "1.1.2" - } - }, - "underscore": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", - "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=" - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "optional": true - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "uuid": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", - "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==", - "optional": true - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "1.3.0" - } - }, - "whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - }, - "when": { - "version": "3.7.8", - "resolved": "https://registry.npmjs.org/when/-/when-3.7.8.tgz", - "integrity": "sha1-xxMLan6gRpPoQs3J56Hyqjmjn4I=", - "optional": true - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "optional": true - }, - "worker-nodes": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/worker-nodes/-/worker-nodes-1.6.0.tgz", - "integrity": "sha512-PUI1mQRdrMpJ6HyFj7/M2pKZetSuB12aNaGSIzYeBk4K1sitxZK7k5nKi+/5+iQL59J6Aq2WLp86r7yHxDASrA==", - "requires": { - "msgpack-lite": "0.1.26" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "wtf_wikipedia": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/wtf_wikipedia/-/wtf_wikipedia-3.1.0.tgz", - "integrity": "sha512-iVwOsPLhXiQnH9wjWG2kFooPK7IZtGGRBzCioprOXwpHMKTy4IxpkNxdDR5Tm9EGA6baenMjFxLJgayZ8B/kHg==", - "requires": { - "cross-fetch": "2.1.1", - "jshashes": "1.0.7" - } - }, - "xregexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", - "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=", - "optional": true - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" - } - } -} diff --git a/package.json b/package.json index 9a813ba..a19b2a4 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "line-by-line": "0.1.6", "log4js": "2.5.3", "mongodb": "2.2.33", + "ora": "^2.0.0", "prettysize": "1.1.0", "worker-nodes": "1.6.0", "wtf_wikipedia": "^3.1.0" diff --git a/scratch.js b/scratch.js index 0e6b627..4bdb163 100644 --- a/scratch.js +++ b/scratch.js @@ -1,21 +1,25 @@ const dumpster = require('./src') const drop = require('./tests/db').drop const config = require('./config') -const stat = require('./lib/stat') +// const stat = require('./lib/stat').cold // const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' -const path = './tests/tinywiki-latest-pages-articles.xml' -// const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' +// const path = './tests/smallwiki-latest-pages-articles.xml' +const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' // const path = './tests/smallwiki-latest-pages-articles.xml' const dbName = path.match(/\/([a-z-]+)-latest-pages/)[1] +// setInterval(() => { +// stat(dbName) +// }, 1000) //delete all pages drop(dbName, config.collection, () => { - console.log('dropped existing pages from ' + dbName + ' - ' + config.collection + '\n\n') dumpster({ file: path, db: dbName, batch_size: 1000, plaintext: false + }, () => { + console.log('callback!') }) }) diff --git a/src/02-multithreader.js b/src/02-multithreader.js index da02405..e22866e 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -5,6 +5,11 @@ const chalk = require('chalk') const EventEmitter = require('events'); const cpus = require('os').cpus() const cpuCount = cpus.length; +const stat = require('../lib/stat') +const ora = require('ora'); +const spinner = ora('Getting ready').start(); +const margin = ' ' + let workerNodes = new WorkerNodes(__dirname + '/worker/index.js', { minWorkers: cpuCount - 1, @@ -12,39 +17,34 @@ let workerNodes = new WorkerNodes(__dirname + '/worker/index.js', { maxTasksPerWorker: 1 }); -// let workerLogs = {}; -// workerLog = function(msg) { -// var name; -// if (msg) { -// if (workerLogs[name = msg.pid] === undefined) { -// workerLogs[name] = {}; -// } -// return workerLogs[msg.pid] = msg; -// } -// return null -// }; - class Worker extends EventEmitter { constructor() { super() } parseXML(options) { + spinner.stop() var chunkSize, size; size = fs.statSync(options.file)["size"]; // size = 633279000 chunkSize = Math.floor(size / cpuCount); - console.log(chalk.blue(cpuCount) + ` cpu cores detected.`) - console.log(`file size: ${chalk.green(pretty(size))}`) - console.log(` - each process will be given: ${pretty(chunkSize)}`); - console.log(chalk.grey(" (view logs with `tail -f /tmp/worker.logs`)")); + console.log('\n\n\n' + margin + ' ----------') + console.log(margin + ` oh hi 👋 +`) + console.log(margin + `total file size: ${chalk.green(pretty(size))}`) + console.log(margin + chalk.blue(cpuCount + ' cpu cores') + ` detected.`) + console.log(margin + chalk.grey('-') + ` each process will be given: ${chalk.magenta(pretty(chunkSize))} ` + chalk.grey('-')); + console.log('\n') var workerCount = 0 const onMsg = async (msg) => { this.emit("msg", msg); if (msg.type === "workerDone") { + console.log('\n') + console.log(' 💪 - a worker has finished') workerCount -= 1 - console.log(workerCount + ' workers still running..') + console.log(chalk.grey(' (' + workerCount + ' workers still running)')) + console.log('\n') if (workerCount === 0) { await workerNodes.terminate() this.emit("allWorkersFinished"); @@ -62,6 +62,8 @@ class Worker extends EventEmitter { } }) }) + //start the logger: + stat.hound(options.db) } } diff --git a/src/index.js b/src/index.js index 7dcaf38..de7009c 100755 --- a/src/index.js +++ b/src/index.js @@ -4,14 +4,16 @@ const init = require('./01-init-db'); const mt = require("./02-multithreader") const writeDb = require('./03-write-db'); -const config = require('../config'); +const oneSec = require('../lib/fns').oneSec +const stat = require('../lib/stat').hot process.on('unhandledRejection', console.log) //open up a mongo db, and start xml-streaming.. -const main = async (options) => { - +const main = async (options, done) => { params = Object.assign({}, options); + done = done || function() {} + await init(options) mt.worker.parseXML(params) @@ -25,20 +27,16 @@ const main = async (options) => { }) mt.worker.on("allWorkersFinished", () => { - setInterval(() => { - if (writing === 0) { - console.log("all done, exiting...") - process.exit() - } - }, 500) + oneSec(() => { + done() + stat(options.db, () => { + oneSec(() => { + console.log('\n\n 👍 closing down.') + process.exit() + }) + }) + }) }) - - // await init(options) - setInterval(async () => { - count = await options.db.collection(config.collection).count() - console.log(` - - pages: ${count}`) - }, 10000) - } module.exports = main; diff --git a/src/worker/_logger.js b/src/worker/_logger.js deleted file mode 100644 index 135c15c..0000000 --- a/src/worker/_logger.js +++ /dev/null @@ -1,18 +0,0 @@ -const log4js = require('log4js'); - -log4js.configure({ - appenders: { - cheese: { - type: 'file', - filename: '/tmp/worker.logs' - } - }, - categories: { - default: { - appenders: ['cheese'], - level: 'info' - } - } -}); - -module.exports = log4js.getLogger('cheese'); diff --git a/src/worker/index.js b/src/worker/index.js index 5623eea..f17d150 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -1,6 +1,6 @@ +const chalk = require('chalk') const LineByLineReader = require('line-by-line') const init = require('../01-init-db'); -const logger = require('./_logger') const parseLine = require('./01-parseLine') const parseWiki = require('./02-parseWiki'); @@ -20,7 +20,7 @@ const getPages = async (options, chunkSize, workerNr) => { } // end 2 megabytes later so we don't lose pages cut by chunks endByte = startByte + chunkSize + 3000000 - logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) + // logger.info(`worker pid:${process.pid} is now alive. startByte: ${startByte} endByte: ${endByte}`) await init(options) lr = new LineByLineReader(options.file, { @@ -51,11 +51,12 @@ const getPages = async (options, chunkSize, workerNr) => { jobBegin = Date.now() doArticleTimeCounter = 0 page = {} - logger.info(`batch complete: worker pid:${process.pid} has inserted ${pageCount} pages; latest batch in ${((Date.now() - workerBegin) / 1000)} secs.`); + let seconds = ((Date.now() - workerBegin) / 1000).toFixed(1) + console.log(chalk.yellow(` #${process.pid}`) + chalk.grey(` - wrote ${pageCount} pages (${seconds}s`)); workerBegin = Date.now() lr.resume(); if (isLast === true) { - logger.info(`worker pid:${process.pid} is done.`); + console.log(`worker pid:${process.pid} is done.`); process.send({ type: "workerDone", pid: process.pid @@ -76,9 +77,10 @@ const getPages = async (options, chunkSize, workerNr) => { } } - lr.on('error', () => { + lr.on('error', (e) => { // 'err' contains error object - logger.error("linereader error"); + console.error(chalk.red("linereader error")); + console.log(e) }); lr.on('line', (line) => { From 95c8c78a4c6d666fe862c014f971a417f78e6a2d Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 20:36:00 -0400 Subject: [PATCH 31/42] finished properly! --- bin/dumpster.js | 4 ++-- src/worker/02-parseWiki.js | 37 ++++++++++++++++++++++--------------- src/worker/index.js | 4 ++-- 3 files changed, 26 insertions(+), 19 deletions(-) diff --git a/bin/dumpster.js b/bin/dumpster.js index 5fa4ace..a13fd04 100755 --- a/bin/dumpster.js +++ b/bin/dumpster.js @@ -1,6 +1,6 @@ #! /usr/bin/env node let program = require('commander') -let main = require('../src/index') +let dumpster = require('../src/index') let parseArgs = function() { program @@ -56,4 +56,4 @@ let parseArgs = function() { } } let obj = parseArgs() -main(obj) +dumpster(obj) diff --git a/src/worker/02-parseWiki.js b/src/worker/02-parseWiki.js index c149b32..e247806 100644 --- a/src/worker/02-parseWiki.js +++ b/src/worker/02-parseWiki.js @@ -1,4 +1,5 @@ const wtf = require('wtf_wikipedia'); +const chalk = require('chalk'); const encode = require('./_encode'); //get readable text from the wiki markup @@ -12,23 +13,29 @@ const plaintext = function(page) { //get parsed json from the wiki markup const parseData = function(page, options) { - let doc = wtf(page.script); - //dont insert this if it's a redirect - if (options.skip_redirects === true && doc.isRedirect()) { + try { + let doc = wtf(page.script); + //dont insert this if it's a redirect + if (options.skip_redirects === true && doc.isRedirect()) { + return null + } + if (options.skip_disambig === true && doc.isDisambiguation()) { + return null + } + //turn the wtf_wikipedia document into storable json + let data = doc.json(options) + data.title = page.title || data.title + data = encode.encodeData(data); + //use the title/pageID from the xml + data.title = page.title || data.title || ''; + data.pageID = page.pageID || data.pageID || ''; + data._id = encode.encodeStr(data.title); + return data + } catch (e) { + console.log(chalk.red('\n---Error on "' + page.title + '"')) + console.log(e) return null } - if (options.skip_disambig === true && doc.isDisambiguation()) { - return null - } - //turn the wtf_wikipedia document into storable json - let data = doc.json(options) - data.title = page.title || data.title - data = encode.encodeData(data); - //use the title/pageID from the xml - data.title = page.title || data.title || ''; - data.pageID = page.pageID || data.pageID || ''; - data._id = encode.encodeStr(data.title); - return data }; // diff --git a/src/worker/index.js b/src/worker/index.js index f17d150..c779d8f 100644 --- a/src/worker/index.js +++ b/src/worker/index.js @@ -1,4 +1,5 @@ const chalk = require('chalk') +const fns = require('../../lib/fns') const LineByLineReader = require('line-by-line') const init = require('../01-init-db'); const parseLine = require('./01-parseLine') @@ -52,11 +53,10 @@ const getPages = async (options, chunkSize, workerNr) => { doArticleTimeCounter = 0 page = {} let seconds = ((Date.now() - workerBegin) / 1000).toFixed(1) - console.log(chalk.yellow(` #${process.pid}`) + chalk.grey(` - wrote ${pageCount} pages (${seconds}s`)); + console.log(chalk.grey(` - added ${fns.niceNumber(pageCount)} pages - ${seconds}s `) + chalk.yellow(`(by #${process.pid})`)); workerBegin = Date.now() lr.resume(); if (isLast === true) { - console.log(`worker pid:${process.pid} is done.`); process.send({ type: "workerDone", pid: process.pid From 93ed8f03f693a3fad9aec84e8761f842679493b2 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 21:57:29 -0400 Subject: [PATCH 32/42] tests getting to end, at least --- README.md | 2 +- bin/dumpster.js | 116 +++++++++++++---------- package.json | 5 +- src/01-init-db.js | 18 ++-- src/02-multithreader.js | 6 +- src/worker/02-parseWiki.js | 20 +--- tests/cli.test.js | 2 +- tests/custom.test.js | 17 ++-- tests/db.js | 1 + tests/plain.test.js | 9 +- tests/tinywiki-latest-pages-articles.xml | 2 + 11 files changed, 99 insertions(+), 99 deletions(-) diff --git a/README.md b/README.md index b4c4812..670cf32 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ npm install -g dumpster-dive ``` ### ⚡ From the Command-Line: ```bash -dumpster /path/to/my-wikipedia-article-dump.xml +dumpster /path/to/my-wikipedia-article-dump.xml --citations=false --html=true ``` ### 😎 From a nodejs app ```js diff --git a/bin/dumpster.js b/bin/dumpster.js index a13fd04..a98e370 100755 --- a/bin/dumpster.js +++ b/bin/dumpster.js @@ -1,59 +1,71 @@ #! /usr/bin/env node -let program = require('commander') -let dumpster = require('../src/index') +var dumpster = require('../src') +var yargs = require('yargs') +var argv = yargs + .usage('dumpster [options]') + .example('dumpster ./my/wikipedia-dump.xml --plaintext true --categories false') + .describe('batch_size', 'how many articles to write to mongo at once [1000]') + .describe('skip_disambig', 'avoid storing disambiguation pages [true]') + .describe('skip_redirects', 'avoid storing redirect pages [true]') + .describe('categories', 'include category data? [true]') + .describe('citations', 'include references/citations? [true]') + .describe('coordinates', 'include coordinate data? [true]') + .describe('infoboxes', 'include infobox data? [true]') + .describe('images', 'include image data? [true]') + .describe('markdown', 'include markdown output [false]') + .describe('html', 'include html output [false]') + .describe('latex', 'include latex output [false]') + .argv; -let parseArgs = function() { - program - .usage('node index.js enwiki-latest-pages-articles.xml.bz2 [options]') - .option('--batch_size ', 'Number of pages inserted to Mongo at once. (default=1000)', parseInt) - .option('--skip_first ', 'ignore the first n pages, and do not pause while handling those pages', parseInt) - .option('-plain, --plaintext', 'if true, store plaintext wikipedia articles instead of raw json data') - .option('--skip_redirects', 'if true, skips-over pages that are redirects') - .option('--skip_disambig', 'if true, skips-over disambiguation pages') - .option('--verbose', 'print each article title to the console') - .option('--citations', 'whether to parse references/citations [true]') - .option('--infoboxes', 'whether to parse infoboxes [true]') - .option('--images', 'whether to parse images [true]') - .option('--categories', 'whether to parse categories [true]') - .parse(process.argv) +const defaults = { + batch_size: 1000, + skip_disambig: true, + skip_redirects: true, - //grab the wiki file - let file = process.argv[2] - if (!file) { - console.log('please supply a filename to the wikipedia article dump') - process.exit(1) - } - //try to make-up the language name for the db - let db = 'wikipedia' - if (file.match(/-latest-pages-articles/)) { - db = file.match(/([a-z]+)-latest/) || [] - db = db[1] || 'wikipedia' - } + title: true, + pageID: true, + categories: true, + citations: true, + coordinates: true, + infoboxes: true, + sections: true, + images: true, - //assign defaults - program = Object.assign({ - batch_size: 1000, - plaintext: false, - skip_disambig: true, - skip_redirects: true, - skip_first: 0, - verbose: false, - citations: true, - infoboxes: true, - images: true, - categories: true, - }, program) + plaintext: false, + html: false, + markdown: false, + latex: false, +}; +const toBool = { + 'true': true, + 'false': false, +} - return { - file: file, - db: db, - batch_size: program.batch_size, - plaintext: program.plaintext, - skip_disambig: program.skip_disambig, - skip_redirects: program.skip_redirects, - skip_first: program.skip_first, - verbose: program.verbose, +let file = argv['_'][0] +//set defaults to given arguments +let options = Object.assign({}, defaults) +Object.keys(options).forEach((k) => { + if (argv.hasOwnProperty(k) && argv[k] !== undefined) { + //coerce strings to booleans + if (toBool.hasOwnProperty(argv[k])) { + argv[k] = toBool[argv[k]] + } + options[k] = argv[k] } +}) + +//grab the wiki file +if (!file) { + console.log('please supply a filename to the wikipedia article dump') + process.exit(1) +} +//try to make-up the language name for the db +let db = 'wikipedia' +if (file.match(/-latest-pages-articles/)) { + db = file.match(/([a-z]+)-latest/) || [] + db = db[1] || 'wikipedia' } -let obj = parseArgs() -dumpster(obj) +options.file = file +options.db = db +// console.log(options) +dumpster(options) diff --git a/package.json b/package.json index a19b2a4..e270fb8 100644 --- a/package.json +++ b/package.json @@ -20,14 +20,13 @@ }, "dependencies": { "chalk": "2.4.1", - "commander": "2.15.1", "line-by-line": "0.1.6", - "log4js": "2.5.3", "mongodb": "2.2.33", "ora": "^2.0.0", "prettysize": "1.1.0", "worker-nodes": "1.6.0", - "wtf_wikipedia": "^3.1.0" + "wtf_wikipedia": "^3.1.0", + "yargs": "^11.0.0" }, "devDependencies": { "shelljs": "^0.8.1", diff --git a/src/01-init-db.js b/src/01-init-db.js index f00f281..f3c6f78 100644 --- a/src/01-init-db.js +++ b/src/01-init-db.js @@ -3,21 +3,21 @@ const fs = require("fs") const config = require("../config") //start it up running -const init = async ( options = { - skip_first: 0, - verbose: true - } ) => { +const init = async ( options = {} ) => { + + //guess an appropriate dbName + if (!options.db) { + options.db = options.file.match(/\/([a-z-]+)-latest-pages/)[1] || 'wikipedia' + } + // console.log(options) return new Promise(async (resolve) => { //this is required if (!fs.existsSync(options.file)) { - console.log('please supply a filename for the wikipedia article dump in xml format'); + console.log(chalk.red('--can\'t find file: "' + chalk.blue(options.file) + '" ---')); + console.log(chalk.grey('please supply a filename for the wikipedia article dump in xml format')); process.exit(1); } - //log a handy msg about skipping.. - if (options.skip_first > 0) { - console.log('\n\n\n -- skipping first ' + options.skip_first + ' articles...') - } // Connect to mongo let url = 'mongodb://localhost:27017/' + options.db; options.db = await MongoClient.connect(url) diff --git a/src/02-multithreader.js b/src/02-multithreader.js index e22866e..7b1e8af 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -7,7 +7,7 @@ const cpus = require('os').cpus() const cpuCount = cpus.length; const stat = require('../lib/stat') const ora = require('ora'); -const spinner = ora('Getting ready').start(); +const spinner = ora('Opening file..').start(); const margin = ' ' @@ -29,11 +29,12 @@ class Worker extends EventEmitter { // size = 633279000 chunkSize = Math.floor(size / cpuCount); console.log('\n\n\n' + margin + ' ----------') - console.log(margin + ` oh hi 👋 + console.log(margin + ` oh hi 👋 `) console.log(margin + `total file size: ${chalk.green(pretty(size))}`) console.log(margin + chalk.blue(cpuCount + ' cpu cores') + ` detected.`) console.log(margin + chalk.grey('-') + ` each process will be given: ${chalk.magenta(pretty(chunkSize))} ` + chalk.grey('-')); + console.log(margin + ' ----------') console.log('\n') var workerCount = 0 @@ -44,7 +45,6 @@ class Worker extends EventEmitter { console.log(' 💪 - a worker has finished') workerCount -= 1 console.log(chalk.grey(' (' + workerCount + ' workers still running)')) - console.log('\n') if (workerCount === 0) { await workerNodes.terminate() this.emit("allWorkersFinished"); diff --git a/src/worker/02-parseWiki.js b/src/worker/02-parseWiki.js index e247806..c2e4ee4 100644 --- a/src/worker/02-parseWiki.js +++ b/src/worker/02-parseWiki.js @@ -2,15 +2,6 @@ const wtf = require('wtf_wikipedia'); const chalk = require('chalk'); const encode = require('./_encode'); -//get readable text from the wiki markup -const plaintext = function(page) { - return { - title: page.title, - _id: encode.encodeStr(page.title || ''), - plaintext: wtf.plaintext(page.script) - }; -} - //get parsed json from the wiki markup const parseData = function(page, options) { try { @@ -38,13 +29,4 @@ const parseData = function(page, options) { } }; -// -const transform = function(page, options) { - //if we're just storing article text - if (options.plaintext) { - return plaintext(page, options); - } - //if we're storing full json - return parseData(page, options); -} -module.exports = transform +module.exports = parseData diff --git a/tests/cli.test.js b/tests/cli.test.js index 53c3d51..6d33f0f 100644 --- a/tests/cli.test.js +++ b/tests/cli.test.js @@ -8,7 +8,7 @@ test('test-real-smallwiki', function(t) { exec('./bin/dumpster.js ./tests/smallwiki-latest-pages-articles.xml') db.count('smallwiki', count => { t.equal(count, 1050, 'count-is-correct') - db.drop('smallwiki', () => { + db.drop('smallwiki', 'wikipedia', () => { t.end() }) }) diff --git a/tests/custom.test.js b/tests/custom.test.js index 35f985b..54d9824 100644 --- a/tests/custom.test.js +++ b/tests/custom.test.js @@ -6,25 +6,28 @@ let dumpster = require('../') rm ./tests/tinywiki-latest-pages-articles.xml.bz2 && bzip2 -z ./tests/tinywiki-latest-pages-articles.xml */ test('custom-made-tinywiki', function(t) { + let dbName = 'tempwiki' let obj = { file: './tests/tinywiki-latest-pages-articles.xml', - db: 'tempwiki', + db: dbName, } - db.drop(obj.db, 'wikipedia', () => { + db.drop(dbName, 'wikipedia', () => { dumpster(obj, () => { - db.firstTen(obj.db, docs => { + db.firstTen(dbName, docs => { t.equal(docs.length, 7, 'seven records') let hello = docs.find(d => d.title === 'Hello') t.equal(hello.categories.length, 0, 'no categories') - t.equal(hello.images.length, 0, 'no image') - t.equal(hello.infoboxes.length, 0, 'no infobox') + t.ok(!hello.images, 'no image') + // t.ok(!hello.infoboxes, 'no infobox') t.equal(hello.sections.length, 2, 'two sections') let toronto = docs.find(d => d.title === 'Toronto') - t.equal(toronto.sections.length, 3, 'three infobox') + console.log(toronto) + t.ok(toronto.sections.length >= 1, 'has a section') + t.ok(toronto.sections[0].sentences.length >= 1, 'has a sentence') t.equal(toronto.categories.length, 3, 'three categories') - t.equal(toronto.images.length, 1, 'one image') + // t.equal(toronto.images.length, 1, 'one image') t.equal(toronto.infoboxes.length, 1, 'one infobox') let duplicate = docs.find(d => d.title === 'Duplicate title') diff --git a/tests/db.js b/tests/db.js index 0a8b247..2ebbb18 100644 --- a/tests/db.js +++ b/tests/db.js @@ -1,6 +1,7 @@ const MongoClient = require('mongodb').MongoClient const open = function(dbName, callback) { + console.log(dbName) let url = 'mongodb://localhost:27017/' + dbName MongoClient.connect(url, function(err, db) { if (err) { diff --git a/tests/plain.test.js b/tests/plain.test.js index 6a1c451..c253fc3 100644 --- a/tests/plain.test.js +++ b/tests/plain.test.js @@ -3,14 +3,15 @@ let db = require('./db') let dumpster = require('../') test('plaintext', function(t) { + let dbName = 'plainwiki' let obj = { - file: './tests/tinywiki-latest-pages-articles.xml.bz2', - db: 'plainwiki', + file: './tests/tinywiki-latest-pages-articles.xml', + db: dbName, plaintext: true } - db.drop(obj.db, 'wikipedia', () => { + db.drop(dbName, 'wikipedia', () => { dumpster(obj, () => { - db.firstTen(obj.db, docs => { + db.firstTen(dbName, docs => { t.equal(docs.length, 7, '7 records') t.equal(docs[0].plaintext, 'hello this is wikitext\n\n', 'got plaintext') t.end() diff --git a/tests/tinywiki-latest-pages-articles.xml b/tests/tinywiki-latest-pages-articles.xml index 1844088..2c39fec 100644 --- a/tests/tinywiki-latest-pages-articles.xml +++ b/tests/tinywiki-latest-pages-articles.xml @@ -32,6 +32,8 @@ text/x-wiki hello this is wikitext +== The header == +and some arbitrary text === $Table.isfun === {| class="wikitable" ! Nr. p. k. From 35920f59681a09befe6931d8dce963f4c1abb25c Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 22:34:50 -0400 Subject: [PATCH 33/42] some tests passing --- README.md | 56 +++++++++++------------- contributing.md | 19 ++++++++ scratch.js | 7 ++- src/01-init-db.js | 1 + src/02-multithreader.js | 3 +- src/worker/01-parseLine.js | 2 +- tests/custom.test.js | 46 ++++--------------- tests/db.js | 1 - tests/plain.test.js | 8 +++- tests/redirects.test.js | 31 +++++++++++++ tests/tinywiki-latest-pages-articles.xml | 2 +- 11 files changed, 100 insertions(+), 76 deletions(-) create mode 100644 contributing.md create mode 100644 tests/redirects.test.js diff --git a/README.md b/README.md index 670cf32..f52a801 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ use enwiki #grab the database db.wikipedia.find({title:"Toronto"})[0].categories #[ "Former colonial capitals in Canada", # "Populated places established in 1793" ...] -db.wikipedia.count({type:"redirect"}) +db.wikipedia.count() # 124,999... ```` @@ -42,13 +42,13 @@ Install [nodejs](https://nodejs.org/en/), [mongodb](https://docs.mongodb.com/man ```bash # start mongo mongod --config /mypath/to/mongod.conf -# install script +# install this script npm install -g dumpster-dive +# (that gives you the global command `dumpster`) ``` -that gives you the global command `dumpster`. ### 3) download a wikipedia -The Afrikaans wikipedia (around 47,000 artikels) only takes a few minutes to download, and 10 mins to load into mongo on a macbook: +The Afrikaans wikipedia (around 47,000 artikels) only takes a few minutes to download, and 5 mins to load into mongo on a macbook: ```bash # dowload an xml dump (38mb, couple minutes) wget https://dumps.wikimedia.org/afwiki/latest/afwiki-latest-pages-articles.xml.bz2 @@ -56,41 +56,42 @@ wget https://dumps.wikimedia.org/afwiki/latest/afwiki-latest-pages-articles.xml. the english/german ones are bigger. Use whichever xml dump you'd like. The [download page](https://dumps.wikimedia.org) is weird, but you'll want the most-common dump format, without historical diffs, or images, which is `${LANG}wiki-latest-pages-articles.xml.bz2 ` ### 4) unzip it -i know, this sucks. but it makes the parser so much faster. On a macbook, unzipping en-wikipedia takes about an hour. Eat some lunch. +i know, this sucks. but it makes the parser so much faster. On a macbook, unzipping en-wikipedia takes an hour or so. Eat some lunch. -### 5) start it off +### 5) OK, start it off ```bash #load it into mongo (10-15 minutes) dumpster ./afwiki-latest-pages-articles.xml ``` ### 6) take a bath -just put some [epsom salts](https://www.youtube.com/watch?v=QSlIHCu2Smw) in there, it feels great. You deserve a break once and a while. The en-wiki dump should take a few hours. Maybe 8. Should be done before dinner. +just put some [epsom salts](https://www.youtube.com/watch?v=QSlIHCu2Smw) in there, it feels great. + +The en-wiki dump should take a few hours. Maybe 8. Should be done before dinner. + +The console will update you every couple seconds to let you know where it's at. ### 7) check-out your data to view your data in the mongo console, ````javascript $ mongo -use afwiki +use afwiki //your db name -//shows a random page +//show a random page db.wikipedia.find().skip(200).limit(2) -//count the redirects (~5,000 in afrikaans) -db.wikipedia.count({type:"redirect"}) - //find a specific page db.wikipedia.findOne({title:"Toronto"}).categories ```` ### Same for the English wikipedia: the english wikipedia will work under the same process, but -the download will take an afternoon, and the loading/parsing a couple hours. The en wikipedia dump is a 13 GB (for [enwiki-20170901-pages-articles.xml.bz2](https://dumps.wikimedia.org/enwiki/20170901/enwiki-20170901-pages-articles.xml.bz2)), and becomes a pretty legit mongo collection uncompressed. It's something like 51GB, but mongo can do it... You can do it! - +the download will take an afternoon, and the loading/parsing a couple hours. The en wikipedia dump is a 13 GB (for [enwiki-20170901-pages-articles.xml.bz2](https://dumps.wikimedia.org/enwiki/20170901/enwiki-20170901-pages-articles.xml.bz2)), and becomes a pretty legit mongo collection uncompressed. It's something like 51GB, but mongo can do it 💪. ### Options -#### human-readable plaintext **--plaintext** +dumpster follows all the conventions of [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia), and you can pass-in any fields for it to include in it's json. +* **human-readable plaintext** ***--plaintext*** ```js -dumpster({file:'./myfile.xml.bz2', db: 'enwiki', plaintext:true}, console.log) +dumpster({file:'./myfile.xml.bz2', db: 'enwiki', plaintext:true, categories:false}) /* [{ _id:'Toronto', @@ -100,34 +101,27 @@ dumpster({file:'./myfile.xml.bz2', db: 'enwiki', plaintext:true}, console.log) */ ``` -#### skip unnecessary pages **--skip_disambig**, **--skip_redirects** -this can make it go faster too, by skipping entries in the dump that aren't full-on articles. +* **disambiguation pages / redirects** ***--skip_disambig***, ***--skip_redirects*** +by default, dumpster skips entries in the dump that aren't full-on articles, you can ```js let obj = { file: './path/enwiki-latest-pages-articles.xml.bz2', db: 'enwiki', - skip_redirects: true, - skip_disambig: true, - skip_first: 1000, // ignore the first 1k pages - verbose: true, // print each article title + skip_redirects: false, + skip_disambig: false } dumpster(obj, () => console.log('done!') ) ``` + #### reducing file-size you can tell wtf_wikipedia what you want it to parse, and which data you don't need: -``` -{ - infoboxes: true, //the key-value info - citations: true, //include references and citations - images: true, //images thumbnails - categories: true //page's categories -} +```bash +dumpster ./my-wiki-dump.xml --infoboxes=false --citations=false --categories=false --links=false ``` ## how it works: this library uses: * [line-by-line](https://www.npmjs.com/package/line-by-line) to stream the gnarly xml file - * [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to brute-parse the article wikiscript contents into JSON. ## Addendum: @@ -146,4 +140,6 @@ $ --> \u0024 This library should also work on other wikis with standard xml dumps from [MediaWiki](https://www.mediawiki.org/wiki/MediaWiki). I haven't tested them, but the wtf_wikipedia supports all sorts of non-standard wiktionary/wikivoyage templates, and if you can get a bz-compressed xml dump from your wiki, this should work fine. Open an issue if you find something weird. ### PRs welcome! +This is an important project, come [help us out](./contributing.md). + MIT diff --git a/contributing.md b/contributing.md new file mode 100644 index 0000000..2029f13 --- /dev/null +++ b/contributing.md @@ -0,0 +1,19 @@ +Pull requests are always welcome and respected. Cosmetic code things are not blockers. + +Please open an issue to ask questions before making a big PR, that changes behaviour or adds new features. + +### To make a PR +* login with your GitHub account or [create an account](https://help.github.com/articles/signing-up-for-a-new-github-account/) for you +* [fork](https://help.github.com/articles/fork-a-repo/) the current `wtf_wikipedia` repository +```bash +npm install +npm test +``` +* make your changes in `./src` (optionally, test them with `node ./scratch.js`) +* make sure the tests still pass `npm test` +* for bonus points - add a few tests in `./tests` (doesn't matter where) for the new behaviour +* create a [Pull Request](https://help.github.com/articles/creating-a-pull-request-from-a-fork/) for the maintainers to integrate the work into the dev or master branches + +don't worry about incrementing package numbers, or kicking-off builds. Releases will be handled by spencer, or other maintainers. + +Lastly, thank you! Understanding the information in wikipedia is serious and important project. It's done collaboratively or not at all! diff --git a/scratch.js b/scratch.js index 4bdb163..21c85fa 100644 --- a/scratch.js +++ b/scratch.js @@ -1,12 +1,14 @@ const dumpster = require('./src') const drop = require('./tests/db').drop +const firstTen = require('./tests/db').firstTen const config = require('./config') // const stat = require('./lib/stat').cold // const path = '/Users/spencer/data/wikipedia/enwiki-latest-pages-articles.xml.bz2' // const path = './tests/smallwiki-latest-pages-articles.xml' -const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' +// const path = '/Users/spencer/data/wikipedia/simplewiki-latest-pages-articles.xml' // const path = './tests/smallwiki-latest-pages-articles.xml' +const path = './tests/tinywiki-latest-pages-articles.xml' const dbName = path.match(/\/([a-z-]+)-latest-pages/)[1] // setInterval(() => { // stat(dbName) @@ -18,8 +20,9 @@ drop(dbName, config.collection, () => { file: path, db: dbName, batch_size: 1000, - plaintext: false + plaintext: true }, () => { console.log('callback!') + // firstTen(dbName, console.log) }) }) diff --git a/src/01-init-db.js b/src/01-init-db.js index f3c6f78..35f41d1 100644 --- a/src/01-init-db.js +++ b/src/01-init-db.js @@ -1,5 +1,6 @@ const MongoClient = require('mongodb').MongoClient; const fs = require("fs") +const chalk = require("chalk") const config = require("../config") //start it up running diff --git a/src/02-multithreader.js b/src/02-multithreader.js index 7b1e8af..c6be1ff 100644 --- a/src/02-multithreader.js +++ b/src/02-multithreader.js @@ -68,12 +68,13 @@ class Worker extends EventEmitter { } process.on('unhandledRejection', function(up) { + console.log(chalk.red('--error--')) return console.log(up); }); process.on('SIGINT', async function() { - console.log("Cleaning up child processes..."); + console.log(chalk.blue("\none sec, cleaning-up the workers...")); await workerNodes.terminate(); return process.exit(); }); diff --git a/src/worker/01-parseLine.js b/src/worker/01-parseLine.js index 48dafc0..6bee3b6 100644 --- a/src/worker/01-parseLine.js +++ b/src/worker/01-parseLine.js @@ -20,7 +20,7 @@ const parseLine = function(line, state, donePage) { return startPage() } //keep going! - state.script += line + state.script += '\n' + line return state } //we're waiting for the page to end.. diff --git a/tests/custom.test.js b/tests/custom.test.js index 54d9824..083808b 100644 --- a/tests/custom.test.js +++ b/tests/custom.test.js @@ -1,15 +1,13 @@ let test = require('tape') let db = require('./db') let dumpster = require('../') -/* -//to update the bz2, -rm ./tests/tinywiki-latest-pages-articles.xml.bz2 && bzip2 -z ./tests/tinywiki-latest-pages-articles.xml -*/ + test('custom-made-tinywiki', function(t) { let dbName = 'tempwiki' let obj = { file: './tests/tinywiki-latest-pages-articles.xml', db: dbName, + images: true } db.drop(dbName, 'wikipedia', () => { dumpster(obj, () => { @@ -18,16 +16,15 @@ test('custom-made-tinywiki', function(t) { let hello = docs.find(d => d.title === 'Hello') t.equal(hello.categories.length, 0, 'no categories') - t.ok(!hello.images, 'no image') - // t.ok(!hello.infoboxes, 'no infobox') - t.equal(hello.sections.length, 2, 'two sections') + t.equal(hello.images.length, 0, 'no image') + t.equal(hello.title, 'Hello', 'has title') + t.equal(hello.sections.length, 3, 'two sections') let toronto = docs.find(d => d.title === 'Toronto') - console.log(toronto) - t.ok(toronto.sections.length >= 1, 'has a section') - t.ok(toronto.sections[0].sentences.length >= 1, 'has a sentence') + t.equal(toronto.sections.length, 3, 'has 3 sections') + t.equal(toronto.sections[0].sentences.length, 3, 'has sentences') t.equal(toronto.categories.length, 3, 'three categories') - // t.equal(toronto.images.length, 1, 'one image') + t.equal(toronto.images.length, 1, 'one image') t.equal(toronto.infoboxes.length, 1, 'one infobox') let duplicate = docs.find(d => d.title === 'Duplicate title') @@ -37,30 +34,3 @@ test('custom-made-tinywiki', function(t) { }) }) }) - -// test('no-redirects', function(t) { -// let obj = { -// file: './tests/tinywiki-latest-pages-articles.xml', -// db: 'tempwikiskip', -// skip_redirects: true, -// skip_disambig: true, -// } -// db.drop(obj.db, () => { -// dumpster(obj, () => { -// db.firstTen(obj.db, docs => { -// t.equal(docs.length, 5, 'five records') -// -// let redirect = docs.find(d => d.title === 'Redirect page') -// t.equal(undefined, redirect, 'no redirect-page') -// -// let disambig = docs.find(d => d.title === 'Disambiguation page') -// t.equal(undefined, disambig, 'no disambig-page') -// -// let toronto = docs.find(d => d.title === 'Toronto') -// t.equal("Toronto", toronto._id, 'has _id') -// t.equal("Toronto", toronto.title, 'has title') -// t.end() -// }) -// }) -// }) -// }) diff --git a/tests/db.js b/tests/db.js index 2ebbb18..0a8b247 100644 --- a/tests/db.js +++ b/tests/db.js @@ -1,7 +1,6 @@ const MongoClient = require('mongodb').MongoClient const open = function(dbName, callback) { - console.log(dbName) let url = 'mongodb://localhost:27017/' + dbName MongoClient.connect(url, function(err, db) { if (err) { diff --git a/tests/plain.test.js b/tests/plain.test.js index c253fc3..2a28d51 100644 --- a/tests/plain.test.js +++ b/tests/plain.test.js @@ -7,13 +7,17 @@ test('plaintext', function(t) { let obj = { file: './tests/tinywiki-latest-pages-articles.xml', db: dbName, - plaintext: true + plaintext: true, + html: true, + markdown: true, } db.drop(dbName, 'wikipedia', () => { dumpster(obj, () => { db.firstTen(dbName, docs => { t.equal(docs.length, 7, '7 records') - t.equal(docs[0].plaintext, 'hello this is wikitext\n\n', 'got plaintext') + t.equal(docs[0].plaintext, 'hello this is wikitext\n\nand some arbitrary text\n\n', 'got plaintext') + t.notEqual(docs[0].markdown.indexOf('\n## The header\n'), -1, 'got markdown') + t.notEqual(docs[0].html.indexOf('hello this is wikitext'), -1, 'got html') t.end() }) }) diff --git a/tests/redirects.test.js b/tests/redirects.test.js new file mode 100644 index 0000000..d9450b0 --- /dev/null +++ b/tests/redirects.test.js @@ -0,0 +1,31 @@ +let test = require('tape') +let db = require('./db') +let dumpster = require('../') + +test('no-redirects', function(t) { + let dbName = 'tempwikiskip' + let obj = { + file: './tests/tinywiki-latest-pages-articles.xml', + db: dbName, + skip_redirects: true, + skip_disambig: true, + } + db.drop(dbName, 'wikipedia', () => { + dumpster(obj, () => { + db.firstTen(dbName, docs => { + t.equal(docs.length, 5, 'five records') + + let redirect = docs.find(d => d.title === 'Redirect page') + t.equal(undefined, redirect, 'no redirect-page') + + let disambig = docs.find(d => d.title === 'Disambiguation page') + t.equal(undefined, disambig, 'no disambig-page') + + let toronto = docs.find(d => d.title === 'Toronto') + t.equal("Toronto", toronto._id, 'has _id') + t.equal("Toronto", toronto.title, 'has title') + t.end() + }) + }) + }) +}) diff --git a/tests/tinywiki-latest-pages-articles.xml b/tests/tinywiki-latest-pages-articles.xml index 2c39fec..f3bc870 100644 --- a/tests/tinywiki-latest-pages-articles.xml +++ b/tests/tinywiki-latest-pages-articles.xml @@ -68,7 +68,7 @@ and some arbitrary text comment wikitext text/x-wiki - Laika skaiteišonys zeimeibā 18 godusymts irā laika periods, kurs suocēs 1701 godā i tuoļuojuos da 1800 gods (īskaitūt) pa Gregora kalenderam. + {{Infobox settlement |name = Toronto |official_name = City of Toronto From 960e6df8b1ba5630de7f92b8841872c9f55d21a3 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 22:46:59 -0400 Subject: [PATCH 34/42] yolo --- README.md | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f52a801..55a87c4 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,34 @@ -# A whole Wikipedia dump, in mongodb. -put your hefty [wikipedia dump](https://dumps.wikimedia.org) into mongo, with fully-parsed wikiscript - without thinking, without loading it into memory, or other crazy nonsense. +

+ + + + + + +
wikipedia dump parser
+ + by + Spencer Kelly, Devrim Yasar, + and + + other contributors + + +
+

+ +
+ dumpster-dive gets wikipedia's [xml dump](https://dumps.wikimedia.org) into mongo, +
so you can mess-around with it
+ +

💂 Yup

+
really
+ do it on your laptop +
It's a javascript one-liner that puts a highly-queryable wikipedia on your laptop in a nice afternoon. -It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into whatever json you'd like. +It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into whatever json format you'd like. ```bash npm install -g dumpster-dive From 0a8c6299d530e7114b85ee4ba67985f594b4778c Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 22:52:20 -0400 Subject: [PATCH 35/42] yolo --- README.md | 27 ++++++++++++++------------- changelog.md | 4 +++- package.json | 2 +- 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 55a87c4..45e003c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

- dumpster-dive gets wikipedia's [xml dump](https://dumps.wikimedia.org) into mongo, + dumpster-dive gets wikipedia's xml dump into mongo,
so you can mess-around with it

💂 Yup

-
really
- do it on your laptop +
do it on your laptop
+ for real
-It's a javascript one-liner that puts a highly-queryable wikipedia on your laptop in a nice afternoon. +It's a quick **nodejs** one-liner that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into whatever json format you'd like. ```bash npm install -g dumpster-dive ``` -### ⚡ From the Command-Line: -```bash -dumpster /path/to/my-wikipedia-article-dump.xml --citations=false --html=true -``` -### 😎 From a nodejs app +### 😎 API ```js var dumpster = require('dumpster-dive') -dumpster({file:'./enwiki-latest-pages-articles.xml', db: 'enwiki'}, callback) +dumpster({ file:'./enwiki-latest-pages-articles.xml', db:'enwiki'}, callback) +``` + +### Command-Line: +```bash +dumpster /path/to/my-wikipedia-article-dump.xml --citations=false --html=true ``` then check out the articles in mongo: diff --git a/changelog.md b/changelog.md index 89379b0..8a3370c 100644 --- a/changelog.md +++ b/changelog.md @@ -13,4 +13,6 @@ ## v3 * MASSIVE SPEEDUP! full re-write by @devrim 🙏 to fix #59 -* use wtf_wikipedia v3 (big re-factor too!) +* rename from `wikipedia-to-mongo` to `dumpster-dive` +* use wtf_wikipedia v3 (a big re-factor too!) +* use `line-by-line`, and `worker-nodes` to run parsing in parallel diff --git a/package.json b/package.json index e270fb8..5b11314 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Spencer Kelly (http://spencermounta.in)", "name": "dumpster-dive", "description": "get a wikipedia dump parsed into mongodb", - "version": "2.4.0", + "version": "3.0.0", "repository": { "type": "git", "url": "git://github.com/spencermountain/wikipedia-to-mongodb.git" From f91d5948ff9126f63bed691564622c21d72d3fae Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 23:00:24 -0400 Subject: [PATCH 36/42] yolo --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 45e003c..135f0fe 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@
+

dumpster-dive

@@ -18,14 +19,14 @@

- dumpster-dive gets wikipedia's xml dump into mongo, + gets a wikipedia xml dump into mongo,
so you can mess-around with it

💂 Yup

do it on your laptop
- for real
+![image](https://user-images.githubusercontent.com/399657/39391259-b57ca9e0-4a6e-11e8-8b33-2064e5fc187e.png) It's a quick **nodejs** one-liner that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into whatever json format you'd like. From b47b8d55292ff62200f13c9533cefbcd1e92b046 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 23:08:03 -0400 Subject: [PATCH 37/42] 3.0.0! --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 135f0fe..7a30a76 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@
-

dumpster-dive

- + @@ -27,9 +27,9 @@
![image](https://user-images.githubusercontent.com/399657/39391259-b57ca9e0-4a6e-11e8-8b33-2064e5fc187e.png) -It's a quick **nodejs** one-liner that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. +dumpster-dive is a quick **nodejs** one-liner that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. -It uses [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to parse wikiscript into whatever json format you'd like. +It uses [worker-nodes](https://github.com/allegro/node-worker-nodes) to parse many pages in parallel, and [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to turn ***wikiscript*** into whatever json format you'd like. ```bash npm install -g dumpster-dive @@ -59,11 +59,11 @@ db.wikipedia.count() # Steps: -### 1) 💪 you can do this. +### 1️⃣ 💪 you can do this. you can do this. just a few Gb. you can do this. -### 2) get ready +### 2️⃣ get ready Install [nodejs](https://nodejs.org/en/), [mongodb](https://docs.mongodb.com/manual/installation/) ```bash @@ -74,7 +74,7 @@ npm install -g dumpster-dive # (that gives you the global command `dumpster`) ``` -### 3) download a wikipedia +### 3️⃣ download a wikipedia The Afrikaans wikipedia (around 47,000 artikels) only takes a few minutes to download, and 5 mins to load into mongo on a macbook: ```bash # dowload an xml dump (38mb, couple minutes) @@ -82,23 +82,23 @@ wget https://dumps.wikimedia.org/afwiki/latest/afwiki-latest-pages-articles.xml. ``` the english/german ones are bigger. Use whichever xml dump you'd like. The [download page](https://dumps.wikimedia.org) is weird, but you'll want the most-common dump format, without historical diffs, or images, which is `${LANG}wiki-latest-pages-articles.xml.bz2 ` -### 4) unzip it +### 4️⃣ unzip it i know, this sucks. but it makes the parser so much faster. On a macbook, unzipping en-wikipedia takes an hour or so. Eat some lunch. -### 5) OK, start it off +### 5️⃣ OK, start it off ```bash #load it into mongo (10-15 minutes) dumpster ./afwiki-latest-pages-articles.xml ``` -### 6) take a bath +### 6️⃣ take a bath just put some [epsom salts](https://www.youtube.com/watch?v=QSlIHCu2Smw) in there, it feels great. The en-wiki dump should take a few hours. Maybe 8. Should be done before dinner. The console will update you every couple seconds to let you know where it's at. -### 7) check-out your data -to view your data in the mongo console, +### 7️⃣ done. +go check-out the data! to view your data in the mongo console: ````javascript $ mongo use afwiki //your db name @@ -114,7 +114,7 @@ db.wikipedia.findOne({title:"Toronto"}).categories the english wikipedia will work under the same process, but the download will take an afternoon, and the loading/parsing a couple hours. The en wikipedia dump is a 13 GB (for [enwiki-20170901-pages-articles.xml.bz2](https://dumps.wikimedia.org/enwiki/20170901/enwiki-20170901-pages-articles.xml.bz2)), and becomes a pretty legit mongo collection uncompressed. It's something like 51GB, but mongo can do it 💪. -### Options +### Options: dumpster follows all the conventions of [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia), and you can pass-in any fields for it to include in it's json. * **human-readable plaintext** ***--plaintext*** ```js @@ -140,7 +140,7 @@ let obj = { dumpster(obj, () => console.log('done!') ) ``` -#### reducing file-size +* **reducing file-size:** you can tell wtf_wikipedia what you want it to parse, and which data you don't need: ```bash dumpster ./my-wiki-dump.xml --infoboxes=false --citations=false --categories=false --links=false From a71d0d8d68abcdd01c004950fbf68a281c22e24f Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 23:11:47 -0400 Subject: [PATCH 38/42] yolo --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7a30a76..f208de4 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@

dumpster-dive

+
wikipedia dump parser
+ + + - - - -
wikipedia dump parser
by Spencer Kelly, Devrim Yasar, @@ -22,14 +22,16 @@ gets a wikipedia xml dump into mongo,
so you can mess-around with it
-

💂 Yup

-
do it on your laptop
+

💂 Yup 💂

+
do it on your laptop.
![image](https://user-images.githubusercontent.com/399657/39391259-b57ca9e0-4a6e-11e8-8b33-2064e5fc187e.png) -dumpster-dive is a quick **nodejs** one-liner that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. +dumpster-dive is a **nodejs** script that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. + +It uses [worker-nodes](https://github.com/allegro/node-worker-nodes) to process pages in parallel, and [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to turn the ***wikiscript*** into whatever json format you'd like. -It uses [worker-nodes](https://github.com/allegro/node-worker-nodes) to parse many pages in parallel, and [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to turn ***wikiscript*** into whatever json format you'd like. +**en-wikipedia** takes about 7-hours, end-to-end. ```bash npm install -g dumpster-dive From a766d6401ea0544c0a9ef4b2b7a82c85449d397a Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 23:12:31 -0400 Subject: [PATCH 39/42] yolo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f208de4..7882c3e 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@

dumpster-dive

-
wikipedia dump parser
+
wikipedia dump parser
by Spencer Kelly, Devrim Yasar, @@ -27,7 +27,7 @@
![image](https://user-images.githubusercontent.com/399657/39391259-b57ca9e0-4a6e-11e8-8b33-2064e5fc187e.png) -dumpster-dive is a **nodejs** script that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. +`dumpster-dive` is a **nodejs** script that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. It uses [worker-nodes](https://github.com/allegro/node-worker-nodes) to process pages in parallel, and [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to turn the ***wikiscript*** into whatever json format you'd like. From 9a4f17ab07e7e98a75d127a48a4a75505dffe805 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 23:16:40 -0400 Subject: [PATCH 40/42] yolo --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7882c3e..4717cc8 100644 --- a/README.md +++ b/README.md @@ -20,18 +20,18 @@
gets a wikipedia xml dump into mongo, -
so you can mess-around with it
+
so you can mess-around.

💂 Yup 💂

do it on your laptop.
![image](https://user-images.githubusercontent.com/399657/39391259-b57ca9e0-4a6e-11e8-8b33-2064e5fc187e.png) -`dumpster-dive` is a **nodejs** script that puts a **highly-queryable** wikipedia on your laptop in a nice afternoon. +`dumpster-dive` is a **nodejs** script that puts a **highly-queryable** wikipedia on your computer in a nice afternoon. -It uses [worker-nodes](https://github.com/allegro/node-worker-nodes) to process pages in parallel, and [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to turn the ***wikiscript*** into whatever json format you'd like. +It uses [worker-nodes](https://github.com/allegro/node-worker-nodes) to process pages in parallel, and [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to turn ***wikiscript*** into whatever json. -**en-wikipedia** takes about 7-hours, end-to-end. + -- **en-wikipedia** takes about 7-hours, end-to-end -- ```bash npm install -g dumpster-dive @@ -47,16 +47,15 @@ dumpster({ file:'./enwiki-latest-pages-articles.xml', db:'enwiki'}, callback) dumpster /path/to/my-wikipedia-article-dump.xml --citations=false --html=true ``` -then check out the articles in mongo: +*then check out the articles in mongo:* ````bash $ mongo #enter the mongo shell use enwiki #grab the database - db.wikipedia.find({title:"Toronto"})[0].categories #[ "Former colonial capitals in Canada", # "Populated places established in 1793" ...] db.wikipedia.count() -# 124,999... +# 4,926,056... ```` # Steps: From 9ae1dd707d755a89d4a032c9592105f88a1b38d1 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 23:17:27 -0400 Subject: [PATCH 41/42] yolo --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4717cc8..6ee9eaa 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,9 @@ It uses [worker-nodes](https://github.com/allegro/node-worker-nodes) to process pages in parallel, and [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) to turn ***wikiscript*** into whatever json. - -- **en-wikipedia** takes about 7-hours, end-to-end -- +
+ -- en-wikipedia takes about 7-hours, end-to-end -- +
```bash npm install -g dumpster-dive From 340a2792bb9ded98b0844ce6b16467dffc07d392 Mon Sep 17 00:00:00 2001 From: spencermountain Date: Fri, 27 Apr 2018 23:19:05 -0400 Subject: [PATCH 42/42] yolo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ee9eaa..b3a3829 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ db.wikipedia.count() # Steps: -### 1️⃣ 💪 you can do this. +### 1️⃣ you can do this. you can do this. just a few Gb. you can do this. @@ -100,7 +100,7 @@ The en-wiki dump should take a few hours. Maybe 8. Should be done before dinner. The console will update you every couple seconds to let you know where it's at. -### 7️⃣ done. +### 7️⃣ done! go check-out the data! to view your data in the mongo console: ````javascript $ mongo

niD_D!|bVpk+xrA{`P6 z3R7*=;={2z{z350ILQPdrW4m)n?nSiY$0MqcB4guIx@6x;{zE^6H=-lmx*Dd;W=>; z4cajTuK_a|w2Eorq!W%Q!J^>tlQS|Da@fT>IhI6KgOsQvZ3d>bH?vR`w69PLW;GSo zJYmiex^2j2_Uk%aUniX03=$#Lq+lmR$;fLa$}$=olYuG_gyEHh*-cKC5R-eO8K-?| z6ytj_=|bUS$1cqpO(DLPYlNU8FzF32ong@{Y}9z$n8?FWDRx@3 zmc(L$M}~pX49hrp-QnCc)T?Dlq@p6AHitJdMK*>C;-Fy4UFaRn05 zVFxV4tu~acoY`WIR)t}JYn^y#-VV6|(XsI0Cq{C_R2N8Cj8mIBJu`x+M|ZC9vdhWb z>8)h5fp-nzv-?~Ha&*n1MSA#j4m6xobNRj~gCRco4z zbU?m zvHIlDvTfbNbUiu-GQ|jK%TkcyLqwE9(?g9QDH1{;DWX_H1a^E}x^LOrpL@%}yz=;d1Cs<~1rK5>BQP zT@JNyF_hrUOfhhZ6(THRZ!~16=+DZ3G6&hxhZ<(@U(9e+sckDFl?7)M0cAx*%VtBI z))eLF&W^Xdoww1ufu(rMrr~(iSQ@m%*64F@Bu)g{YlOSIT$*t-^5ecQ8Y!xAl_AeN z#d+RTNF46ww{Q-rOs!Dql@aHq$1bv(q=*HdPU;yyw;sTeTxy2M9`m*WDmIU^*7zaurmqw;Al?xUv4KxHyLdv zyh=`%nj(n*7!)i(5cSiuG2JMkgCXkHzILX!Bn{GD^qlMu4e?jPjkmq_W!3*E`PTYP z1A?e;zQ0c|EmX4k0XZ#=d)0iuc%ikK&|$v9e$g<5=)nVrl)0Ko3{LsiIbKnNyv#1F zmXyYo6t4Oi^MYfX^(;Dhn+ql;G-#HFE6&0fNq;Q}UI`K;Ley6o5YN3wgo+5^)AJTc zZoEX2G4H^y;GZ9x4{@+;IyNPf3RNQ_A_^$h5?I6$IvKP*0!apU>3<^wmUzL~ctaw} z2UIlWL9qbqw!KDIF;J*t`5|fZC)mwE?L!dF=g53cu=**mG!#yZB-#L-zw9-{I7GIv zVx=k)v7ZO!!;OP%VXblhQj|Y@h#z+xy7v6PUhn|r_jhkRPrJ7100@fUChqjj7;N8c zkq#2|RpFojTFhYD;$*-!IEW~;2XX4I#jfvwZfe2$fxpntn zIq+xgY8Ed7>mZsz`#=OXkrE!D^pD>Bpnn6f4WC_xgM;YzKVV+OAV%R^ZXqmDXk*#$ zs|x^jegJ6821D0J9h~rho#go)Wfd)^>7>=%IeP~3dCaNsFM}`#`7u=g+o?@t5IZ!Q$>I%5nvdAPVAEtrm30m$x>h@ z(K=jog*xd*Hr|`%jX=loO?j1RUuO;R^~rrnz-4^QwXPp!|NVM-0%6 z3GBIYhEG$O0tx`IB$~tIK6cM~dc%wAn{}tLlw2VFkD3UkiYP)xwSeqY$iupLWtA&x zoSzKrhbVA``O4h~+w)Pc*$r((9g?`!d-m6_45Z|sU9b;`o>4a@9%NIyJl_-qjvY_fso644#Q}x>+ieP}40vxZS%ZDSpCd8-ubmt|xhR$+<T0sDx~ThVnsb|E7e$sl$?FAzCJF2+GopE>ebFpLCY1~Ljkf~v7e^O4Fb z21yK1K@|}YVv4a5NGe7wV-Zz~0!0-Niv)urghf<>DzSkSk^=-#V8s;zM1m+PDhJ*~ zxdbk0t8{>jh%ze9l>jJ4KD_>+5+bOG`A%EaG0W zU~z3C1F*nxkp)V(^LnB5Pw7q)v(FzNIVF4k&lqCKroVvnbMRm?0`YR-!7(%jVU}X? zjo)`}{-?v&<=XJmFSqU6iTaXB2?dE2i5UQdNh28&2kp_*yXg<0e^-i0R1oL-Y&&Pb zIC9P1!vIskE(C*Z%vMcw#^*NSoI}zK(@CH+G62E^ol^<*`dfN%>%}|F68{ewJJdN( z9r1mzxJwYH324}GhKgWw=8o6yi-sa-Pd`q}5Q$t4=6sjaG=_yXu!Wu4L8I)ML~3yd zDiH)8Q_#TFHX)q|GBI32O2RKpGG(<1>i7 zWSn}pX6v*s?BMLKUvImJ$ET*Z_}CSLKy0zhOYOnZ;;yknazeJRhYg-&dg~ zDWoWOVVgjM^s2W}^|^@$BqJKa#5AN1hnYlac|jsX85Ck?nVEFgvZs?U#=(Xl26cac z&rP%?(2)YE=yerODo7$rG00}f=m}W`E}>xXL|%2N%_zm_hjTMV2*gaNy%BlN7D7jW2W`^X^z`qz?G(+1#%~5JAn3xa zA*hA94f!?;3@brEK(B!a1sSbJb|>uml26%VrGn^5GvgV5+s(ah(x&NXtjZ$~ zGllo_Pu(ro9VW0fT*NlRX3vS%Ns&Z^GmZoWf%S(D$YbmDzdt$7t4m$VnQ!^vr3%p+qRVsdVcSG?F4~grOtSM2~)aLzPw!NzGT7y ziv4qj0@XzPWCNh;s$P}`f`tb0qm12+8x%bgwy;2Zv zZu)y~@a0Ef9Sm9%=WtCW*0T>~J~`j!<6`*Gy#3=bH)wC!b7t`Gqj*s=@L*o{q9mBZ zvj?}nwT%p5&p=p1GiP&bwj{sNtea^wn97g2DXOkhZAAVFLt{8Rm>EMM9GqnI(*(4t z9(hGUii}u_#xiiv+{wl|pBz3o5+eCvWif!4f`pfbWDDffk`V}&E1`9@_GoOjv2ZzP ziH!fVnmCu!j?cKj)*C+Nh*=H$9!;tVKJq%G$T}xPww*ZCRf~DMR1E)LJw zhQAlqLlXvMO^62YhayRR|5kV7a~xir=EiC(FY9;4=G2NaKv42`7y3{fv*{rL$c1M{ ztWTnRp-6Wq&3tk^;rxPi@jjebMMQ0d>26!iGt!z)h!<9wWy<=kCZ7zO6_f2|m@46J zl8C2Y8P0Cni_fzCd!CT#;htE`ym!n))LRI|>WCPZnPHVxlb#}D?V)U(a>*IPM-(c} zYXc7g$66n?MQ*fnIq_%uC~Y&CR6xJM@WWfDt1sZRJZSp6)5R*4TTh~xVo2V;mKzN(Fq%q&fF>U8IMjQEcsCjx~Xd zZH9T6QQ^`Z5KC;MRtA<+1{EA*t|5^zfR(PHXTCIXK4gOk4WY8>;Wu&jcIV=1GP9uQ(6qL4YrjU%=ff(S$h ziDZ5i6FCj1oU%tKDk+I^3-N3g{3z;dXhqD~vs1bst9kK_ENme+CzNN z%w*PGx@^Umaz{0z&oCFN`6eRp`T7CRT?y8Qcq4CjyWCDU znq60Wp9qW`f-4(foDcwm&S)}sINOvLga9Cb;V?`X2+1b{JH(xgrjr@lr#*Erd|Bhq ze3y1|f`^(5JOL%8JRZr%JIRTBE^$c|4iyM(l3sam;U=VE+0AHM2T6XBJS~8s^Gq%~ z5F>aMZn!(7aB?Us5;Uw>#+#ln0817&sbHj4U}6e6fhaK}Zn7mRA=yKQN(Z+R*ZxDN zBx5tA?Mn1c251e6G3y$IF3wh9|NE%d@B}Z3IKqj z!m{8!fSl}5pz@$>qeNE3kd+!DgdAq1Qh}o z1-hur<$M9x;i_py)>f7a_1W zXgNtmLt%5k(m})pS7v%fL!coyv%Ykthc7_%>UPnn^j1iNdB{+}aK`|>K1QJ30<+!T z9z%oHgF+F2z2u6BC>5q*29uybFwEh2dBL!#2{4p`g#|zzpfW#hMAl^j^o=?Z9YL!Q zAkH%tQpN-qUjse-C?t_P=yl(O07%yuP;z;m5-)ay5-VjWy3>j&hRXRQ1w}>PHEyb30Jw!-$BIOb*0@kcIM~ z7eH1cC2cka`-Fhv28s|k>B38@h{+|9uuwUnAd))syzp-gQl}Yk^?~VuhoH{=dsEH} zW%Z1TAczFKa4_9KJSHVnFvI_TTm6Hs1EW_1X}+QOt&j&rP^AYffpw)h(kdB$1Pzda z0Ar&Kf8OcA#s*GXGt|240E4-t1lw=~ zctzAe1B4?40%evRRJI~#3KScxWcdNa2skvsNHUnGkqW-`o+~}@IeEw)Z>~;sj029O zS4|`o64(UW0b8|7l4jf7p$RbQw*m0dsDx#4O-xGfS}HHV6+ZshX(SdQb?;e%7%I zeyc|WDv^0a+0%FlT)9v=4NQTE(r~#b0Ld@M1Az`zLV=8;jtV%*$R0TA%kO67yoW{G zsM&sD@@E6Pz@DP%ooQ5dQHxU!%r#jUSVE?)+R)G>`%~P;F;OxA(UXi=351A3Rwjbk z_GXsSG%l#jz)}*>X<@G|Fgm)aYfyVDyf(NGjn48M5{OZQZaNz1sn2WIAf8YWt7_?z zm6{3+Esoq2Nl>Im z38vWPn^p*JkqnH35e+~X&1?r8vp|AvNrhQANT6}F!=l$*v)m1KyX`0_Y!Mu<45_q{ zvOJ17K_vkp_mveHh|EfLDI;~EY?wLfD>^4)29ZLFIbhJ^X`NB3WahZ*6EhqyEow@< zOpXQt>UO@Qi5C{?#)5b*LYfSv8Yk7c|*~kPr-Q$N?j8KYFK;d299~+TST8$N ze2&G5ao67ZObsjr6XEBlUUA`&bl`M6mFY9cflGr{dioR~5DF2M4O#z!)H1Lh(OR4 zjyi?Dk-BAu;A1Q+8Bp96oP?T4_3Qs~{iA`l>Q#e|Bcl!n3W>>t2!wTEeFB`8`gMV` zaTQ462v83o0NJ6mTcGO5;2}GX&DRr|)6O+A3358pVbq+eb(xb=_Eaj4h9?gQypdR; zM|vh)Aw9ebomc2V4=hJ7LAk(da ziVsbku*Htlj)(*rO#V(89Rz4Dy7(Xq*u!qawHdOVBzg}wlR2KLt2_|V$}wzXc+lEf z_};S>W8S(nj2%d$<*B<}@`fAx4*QvP6SIi4S-2^H05Z`dHZkV9q15O_Vby(N71_^2 zlLcW}pr{Bb{pNRys1__7w;JB!9LY9(rh}!!n@2?hSKsA&c>QyUD6XXI(98?g85(8F zcId-wuH|RgWrDnD-;tspYr{4+g$^?boe)BO&P=+bm&*O&*|OPAa&YM+J8lMKisbOH z@hPD@%8n37fjR;b1oUv^TgEl4`XmA12&5a(3<8!7zavmLG!PDw!2}Eu+=U#iHFmC_ z4{xXJ)-kgC(KXY3wpe)>I~NCLWh(IVMq=o&2AU&`oFYV~h={X8Yl@eFc?3plDFSN- zg-kMW8IBGD1@fyjGy%&M8xXeEQe$wTL|Y;v&?qcKMSy}*sUR#Mq#{WID9IEB7C~7E zDFP@(RfrM;5P}0DL4wGOAVMJ(iy*XZm+h_Ym}8eZ1lX=3#L9vpW1c`(SHZSB51q?y zc-xJ#Eu`(&+~b3Nm@6i2YCZU$rxcPwY%fO@g#tYkQA9w@^bLkYkz{SMLjiQavfK{D z1XbFIh79$Dr9KXc1k%7D7sCo^kpbZf1{4zy29U*(a-xMQI4TM>vx{L*=idS&G!cf1 zTDXS^r$P!|!IyopVl%6Z4A&id-GCg}VJiecAZRj2B`9@T6+x1-A%Ir+WxxPk`|vtw zNK!fHK#6PrXaT|oVfJ$104dZ+b#ZsF^N^Agdrbr+0w1{znf~iUTO;^ja*@j+fKyvE zY(G~97?AZR0Kn5t>@&{{B9B*1YmSGPpgHdeQXvUfELuOR5j%#^orLosA6fvZ5ZV0;h{^Y7lc= zyZUr?T;yVIE}^tyjRCTFARg`ht2j9xBt2Y~t-7ru__g(#!G--YFpz@+LmWu?eWV>2 z!`DMh0x;SLA(Cj9O;=Ynv4#Txh3nJoA0cWfhNybz1zJFF^19?h{9hv6XuQxERp@G;04)?pn4e;kqKG36O-3zM%hlH8wP2sOZ z5NI?rs?t_eQs-8&M9-sDu;o3ZawB9x<0@xtczARR#v5ZjT3ui(vM)snehSPJ zf;l>lcz-`BVTDDdwd#m50nd??I0WJxJ@)dyI;0nY=g~($kS&72>lGTH1N2aN?*5hO zr43_g=MiH|`ID`Ch)*#hb+7;f(bOb_Uv*7@G%E!Z1%x260g!_Pgou%3krF|WM#m04 z%5U5q8#ZOXq+R>FcdBrJDG4CNJ%oh`QBY$PV-$c47zzpuQ4$O#p;)pC!3IHs3lK#K z0T~D^kr*%_41mQ>^iV7aF$)PpNkT=mHsnzeV!(=FNd;IDY(3T+6a4$Thz=-V#W!r+ zU)(>zAnJGySR4^8)ZKo%O@<-Xrl-fO)$I+dl5QBiRMKqhCY=d`=IYOmIgi7r z1upIwMi`M*)JTnyloE-58=7Eg$OutIN)|_^6}#r+`@U>3MnKQRoN#%fC3YZth$M`I z7)696TMxf3MI!3f|D=yUZqI>9(Fz|CAe&9n4lvirZ!bKLMG>gPSvxp}8Dyg%%9TSQ zI-nnq@)M`HfyUENiwUfyJ&;$MKZeV%z+Wbmq>ze3XUXBVFzwAkfDa^8Og>(G{&Tye zQ0DR#sd&*2G1+wv@`lh~Tp1Jz1wH52>uEgN^vqx#{O#A)gctCR(&msemLu}?1uOAr zC!#1Je0jN{k=fz%z0@{q`Sstw@ov1#PAKah5W(ij8TQfFuV+Kc?I_x8BKA%!+-!t| zWWu9FpC?LbBvfLoifyO#o~b82jkQ!jXdr+m*ABiR%)>$uhN|KnkVuG64|^|h5fASQ z6=;&_O9L=K!DnN0re>GxX@l8qDAqYqNfX?lFxBYWP3EQq$9&f$^(UuKKU+DvH}?@2 zZ1_Muet}O}eBST)*;og%m!a1^?x)4xUfZNKw6oltDzY4xGO+00o8!ZCY)^L-*{UW} zhZc0P8Y)pLRT%~$iJ2=Fn$lkq8WQOFN$TXOd zC6!sFstZh7U{Ny}C`ke-IXeg!t_E@TZ)(h&BYfpW82&yQkO3LmUCj|BW>Vh)IeN9h zi7z)i%X5u9x~opFCs_{J1fX(Ad~G)o8oZrS4prJz29-*1La}wVNxF~%Q3~nBBZFyK z(CprGdD(dBu6Bz7MMY9`*D@vPhAINWa)4MUrv;mQcY7AzF-(;{TOrE`iF-Z`SLi{x!${Y;gH(Sdy<}r83<|#*GP=>WUP^quwoz< z1i%qHDlzdTX?8dptKec(_Fpy_QmclA3MHLo0R(0g5(A>)ce>~?WRZigH)Yx?`Wfkt zS>GwGWo?Gfr^^NO5f&*FP3Q%4V)emHvb6~&jE&%|EXyEBgnBH?$1+&pU?z0u6f2{I z#ND|F6ep<+w>xA^QNgePK~}?Cr#q2XXIX^`+PMMTKBQ(+K*ZGOv8j(Gj5q@wb?>MbK6 z1t1cG)xv{)Op6NMBv>S3IA6JrUkNcV+1m5pN)6e|hdq4rVWjb~z+D2+O{yQ7z+ePo zML~e5l6Z(o>Fw!+I6Q3QLam;j-$K>(q$GquT9JX%eq~O~LnvdEA0^FF!gXuw`%~k< z!jA$W%x=1JQPVZ_RT5UaT!$tal0e)0sid)fUU(MCFv1`2nZL`ovyMV&Wv&J62cNQ@ zUR>V}_py%gY%A@|Yk{VHX@;#$n;soh#P5|T$u?ZI6$I7_W@;%IiI^aoGZ$NgE`*Rr zt2#nx=_P+8ryA(U4C8VT3Iqg6pu$h=8Y(P69VZsx0|!%uCK#zkfsFPcmlJYFHij6sG`N|Aa(y5do7ep~EN)W4U0ZR*M^qsa9SG5_f^V3O8?W^0Zof#(HlE}Q- zOk|RDrCA6a4N)QrMo18W4~yCMSqx=hvbH0Yht;VBH9`dY3rIzyJl5CJ>T}Wm30^QH40+dBO}>s1PQky{Smz z@8qk-%CR_7R+2h+$zu$jRFSu!@tdvDJV7s|=0kiZa%ROgH^a!NuFr)s2OQ*muY z5{eCUNf)x6CRA>Cb(SGqvqZ{=h%<~fj_|Z_RR2<+6Eb!bWQ^rR5=IG9gn$GQMT!Iv z5&)vcM3O-S0b~UQh=PE@APf{>L?AJMKp-Opii8M)5(|k6#~eu07m4d=GRFeXSTxIg zjYSbxDtZ+bVri;qQ)EjkaIoQGo?z+DFhq&Mv1~0zo^iz5>|`_Gu-R?s#mq~Jqb(bt z&>h`FxfKY)lolB@%_u#UEK4JV5VjhwbC{}9Mx-KhFQJz?p*SL6B?~qYB#yiSxW~6J z*(-QbIdG~IL8TcPKatB0&*}9372R$49$j^u;x>V|FwGHm#zA z4^0F$e`lYX=vU^u=Y~b@{a(R@UYW?G9gWHB*Dx`u+u&SKy9F>+kQD5p6o5;YLV-H1 z=G9H?v&M5QylYzV%h~Cs$arm*@c1Ug7@DaPEEE9=ZQ?39r0p*P}6GFIj0}$gpKxaY%r5F&20eEx)jcHg68zG?S zNKn=lMz@D_6f;$!GA&%rErv!JV}=koH7hY&i6&i4X-AYpDXNIrFhEif%2Eftu{TBJ zDuszhY)IEpw{Zf!m+=q)(9BMqgYDDxp13@H-5le~WY9=d^jL?5RZ^bK&o$&QAENoJ zlaWDu=-KPv?cMP3tbJjn)Y3j6;Of^wRQTK_tron3||2mWZ_&T{VX2(Fj!| zM%H_FQn4JQfh2G<7V{#BmEOz7%-Oeg(Xdz>12?S@(X`Cg!(fJH0wu}{2o$CO%f(o$ zqb&x=q_Jwn}Ljw=+*_*Vx2|qPSYh!H~*nY35y#sP&a9 zs%2q}VwN$Mq)w`CDcW~zkyDK!$RQF46l+6Ig;{m@oQUHSw#Vf#12P_ozIpt-zQO;2 zyIjJj9pS_ATWsXHje;Ms7Qx4jp#~R}nSfw>QzL$02c{Mcq2i@VGh-rIb?U zOR>h9ig_+_J3gNNd%SbzXmjR$->m+b{Ok9AcZ9Hp4`O)nm36^vcwBnBBr*x*%>)rj z2c^m({sB501{aluItVT5OMyeHmy7SO2OhedbyD1Q$MSrb{Idu_465Xl`H-QQ))$S& zF*cj0AGUz*#Hs7#tb0==@gHU#+M+B>Okw)$`}{kDYGMJt8Slp(_;~pxP}Cq*LV1fp zWr-%dVLk}&O$T?~(D9#9x(hZ#g^M#ND{dhHM%+muQ$k!1v_fPs)iQY+GTmud$*ef^ zH|OLeXR#4uA!mDiP6LE}S)>p$;V=_Gg-tpj6e`_=tSS&A890)?{;r4H#{@o9IR_t= zLwEi%^jb&}r-z;?#TB!W#(djC!=Iqx=wq@6{ZWlqR&!9jNvARUr8UaKHawx7oz)1;o^_+rB`h{b%+KdGkA3CtKgC*Q19KrRL_v@5OPV*Yi3dHmMzAuiL%1QGy zThFH2Me^4yV^>qm;3WVF3``muU;#0+pcHB}9VPs(KgX(qX$>7OjEC!mB1lmBL&+qGZ*slftqc!##I-Y2uh-&WglT6h&kv&;!42otSpr{Ad`+X#<8FKnww};XAO> z3HFSZG26pMWZPFVxEV3RNl?c7ET>dc_KtA%&ES6y(`&}dX3&NQIfAyPCpeE9F31ZI zT5=Eo!I~$KBvXKU`glE?J!iEOQwBhUktAei10+f(H+JWNyDGu?CQ&z!sOUIqDC%Y0 z&^CQR@xVwJKd4p(V2li+9b`mLE8q|3@y!3ZKORDW1_WJ?AP#t2FK)AR$lLaBYyHfO zpFaRN+-|@uLGk^KQ}7dU&;%DxoM94_HAhH7B5Iy{6l3Q=KX1eE{`EZia*6X(140Tcq)&=>m&wPyn`wp@_ro z081gQ_}R*AgqLKee>yPOW{y?bblu3)v2M#x2W7QlBrv^8cY6mKIv$-QkZmbMs!6b^ zL=+_~DrmwGBQgsPSjQSx83sCFNKBy<&=_PmXO=>pa^-jtVu=DuIEswV97|C`7Si@h z#ZAye-3J)#+rwS~&CsqX-i-)H4M<5q2$1U0q>d5DL`Ss%D4?JxB>|0)lu$sNVbR+- zmvYKNc*oxF3Nfd-v`COq1CJx&HvgdZh-%SDX=JMxBnGlmW5G#b`4o+AWO7v7C zo=-hNb_fnm?c4WZo&dzboGdAOC0&+i(+k*-pHFUcm6V+qTCt;#_X( zEQoJmz!lV+;SF~R^#M0>SXpzX2_ljv0m?_```8$89ZowsrW;uZsPl-RuzmD%pa96a zFF-N(Hc^9t5S@eAqc&}>G5t4!LK~2n2VN2T(7XL)J}1HTzYO-F^-rTci>_+>cu z%?<%jIaG_YFHo}dKR3hWK3;nsrnH2H(dSD52}lMWqL8tq4i*kiS4@MzVFe_xk{qIZ zJ(H}+X?3M3kzh3&N)5 zbT27sZdQN?ic7JgkYI;?zM3Jfbqs)@#z0s?7YV~nQRx&-;wc=Bs)-Tuoc9-(<>fKQ>*%pwVWspO%)E3N*`6J?a#CVzEGvc9_4Wv4N_1N3@ zMi_n-a8!96FvD~zbm>TVe4olgBJ(L>VMzh(o#6w4leRfL(+5}nFW95~)I_M@5Y2pl z5+gsmoUp2#C+|@*3IgY@v4xDNP1F|-vQWmO1 z@6amTHW0@Wb4bKasFERGj;|##X!)JtYCcgal8Awvnp76F#5KgP1YukWw>26nR8eON z7xHSVKRKr|g#>$Xu^t*^2K;$wfQ|u*qt<;-(WIOe08L7+65?B3K&4#!4DPyo~K2LO)>c&z!|;jW{$9 zR6s0!s7l1O@`xr1IuND=AMY!QioUy&;jJ3e>@xMzcWy_y)Rh6G1vqS^YR#8o3v_BM5|kv5FoLLk>LSM$Trt^A3H=wz?hqoP#}W zj+fbwMjhja?!oU&=m_tWV#;P)qn(2fSmK<0bd)=nzwIT)qsza;xzEAhyCxoGlKG`v zH+<%>Kbbh0Pl@OC6QtbXy-s2*`wIk10b~Xw4#A|5)HXjKIbTH@R}Bx@rwwt{Rt)v4 zX2sKH7~{vspRz_#LZP~V(qY5nFK<3G?IB;$OXhxxg@dQ(fDJ#cl%`BEd72R!{BpaXr*g&)fJi zz8b6IA>k9>fN;l;4}{08!y*zLkUifQHuSiDhn+p@Bqv6HoOcE>5fy{KJ{SnWU_nF# zA}Xkev4J5Y`Q?&B-~8%OK}^8f1@N$Ha3xdl>gn68em^PPJ{$Pc2nH1?XvToGmK}Xq z9bAT3nWh=0>g>}O-SdyX4xYBq_SXPlj2QzlXFX8EvY~0X1n(kK1_iI@P(%c|hH5!x z>kpgsU6t3kfcTLPimzm{gd-P*fEUCw@8F}3m5(^*zuILB=b=?>?np_c+G`54YC+am zy}tHvXdY5B0a+2WkR9nHAQT{05XBaCX6$CEI5=X4wX6+Vxt^Q3fYfa${_-PF|0=sYswJYaG5Tb(;9}Xi*!uUUKG~=dt7L1$^yAc*b>0H3Wv3){9z+W9KiI zkHjZ$Om=RyhlV5IfPTy$WL3NtMiB`WBtc{lF@@qeOyaRZ8f9QPV%8PYE;zVNYR|#| zJ7J;&CWKuufmjl4lw>xMKqD9<1jM8>V~Fdbi~)=i~~G0*Gwg2z}f}&%^J1rZdyiZ z_DsNIX!}5>%QZ4=)Vmo3=}CY=j6Jf*mPFIP481*GPOW>k`jDK?_!bcWt*<*_(?}2y z1{%Ef%|_bv$hcK8QR)4`C9{zS8UZ}0M+cJoyU?3%8POG>DEWz-`(#Iq+twNGV%w$?nnI6)pV$1#TmF$o=`~Of z5!|4lI5`5yJ-ay&kYr(Od^Z|);3ww+xgUlJ%M-vKh);~gY=lTB&WTDj3lfMbB7z8QsDG?QM8Zg* zbwWi^d4cK=i!l#>4qu4hy}2aZ9(^xxG>m|i;CJMRi}_IzZkQ?rJ@yY6!#kVxp5qJb zDA_XOq>&tQJcpm^!@$_k=k|N<0J|m!?uwpr1>SxerCPFi@BRNDcC9^9W@opLh-F^X z>kQ=SZ5-nOJ|+kKxra&c2t-I`G62sh1UU!M?*_ZmvJ8ZYB#TI*bwy-QbVMc)*Pq9K zDd6CS{9ZWu4&KV|cRV$UJRZufthJfZfCdoRg#b|oSRwK4@_2C(z!)eQ3}1`1(K+Od zgoz^}&0M)F^|J>U7Kg4+X2RE8J2JlJ6sOX9$PM5c8Rsw#q{+2g|6?5H%P37X&KRpoPR&WZBS*Llp z%TBzN(6hI(qQ{zhHz>B8R;NM!V&@45KCC1#Y`**ZgjVR@J4BYWmL3P z84Ju}L?EP7*^~ihCXy0;3<`lCSQ({I2Z*I3KNusz};CUk`l58!68wI0gMQ~ z2nAxp4buPtkyu7ZaKlV0Y11SYBto)LfVja(KopWxkcOEFG>|HwN|3~hG|vQq&o^jx zV(5^EiO9ntQ2#mIuwHsvnT^;!uU!l6fc?j0i?yj;Yb>r zcQ`gg2?hy>As~PUJh1q;Ul8h<+}Er%B*Kd&gKA$;V**l80U?tLD5jvDF*ipjst0qU ztIN-;cTVqThmO_n<+oOu8?#19MV8>TN*ueHw>3A4>Cap&&Em#gEy=DGb6tNv;ipn; zbdSJWt4}sn4$JlJ(Oq*acXQVF(_kPiGPKBnNOrPd6$r$0g2+Ae|eEevZ17`1wRseHUQZG zD8LnkC~b*|^cyfQ2@Hni3qF18pVBr$7`uou7LTv*FILSI za08JNNgwA29LN*qiSC1OOOE4p4dm{HIC7+}h?I2pN!4tngR|0aTAxZLtc1f01wHhk zCI_eI0Rg9~Yr|g!C~!cLU2!CB&(Y19^j|?NPVE|5pOEuynxtT_pDq|>+s9Nlm4hSl zjxFwekW+aF7i`qYk{=y+6t*P|77J>me7{f>UzQM`TCK*w@P|)0q16(g?ud;>u`=%M z_h580^7#z=zJCxYk0+vm$8Sc<9=^^mR=o}k!l4Ku2`AKbu$b9P0cJ3$1Tle(kVg;- zlC-6eK?ouOsTKiK7y&U5h*lDd5nEx5g&95wA|*~JH-k|Z2q_>0VxT_{Hp;V<1P@dc z1$+8ZE^$W)s&z!!`1!13A?aCuya`x-4?l08yVf4SI-_K$DSyXp%&1hETMB^g$>=(1 zsY``dz&scrO#~qV+&Y?|`3QQ?L47>@rmah_T*%PKga=JPBzEJTjY&lu>sC#0G8Ekq zBu@B=(_MYKhbKd4Ps!7P*pNknj71_Kp%hhu3|J`*v4S&~8V32?O2xzEboC~wm*XMP`nH|#5BQiSO_;K?B4a~?HxOsU)DI8e2$;m?0;VX7N)A12dK zsA&-;AMNz&nv-zxw+Pr`hDbn;a*&2G5=Q^Yqg&(bqM0UDL=yx{MQZ^x{4m5fxXEv+ zfD3$N#c`*<)FtJdzqL; zDo9lpRc)LK0D1FF4fp^=J~$-`xWl`e>mYoewXN(hNOGV#P$81pA_X@FhEw7TB>(^` z9sPKC?0+}>+MT`K+Vt!*^7}Y?1y2?jSw-(0)BvWqsp0Z&higWFz2k|opD6-}a_PN< zU0Aq87&1Zy#_+6Tkw9-4MxuvTXSZ>48JZmGg6hwpgpP$#1y&%BBN2ZhjGaFmu4PxqE(;J=1Y|}MMnG|h%5*lz zSBmc^T^!t$;&?4*jN|^kv!A;X+qI-YL;h`&1SEqXpq_IDC;$_x0ayS?k_iZiGDr*V z<4t0=BpgI!;0zGfNKS?N^iiG{Qt3#DhFcw8c8W4!O_}@}?&p`H{LL}i9BtAQMMU;= z-pL^(k`3Ur6#;;KiYM_hWRLTDQvmjN$K)*`0nk0R`$tkyhi3(n8P{RVXM^v(=UdsC zQf`bM0O!?W=UzI=0h-ZV8%LkX*HwHts*X^C@h2zYq;vgtiMrBn{D^F1lQ7N^I6|t1 z#N!3o;GsLZ+QuZ38X1&Xk?K6uScplM80~T%4wR5RuMYqtA2ld0T*?-re-+jgc%eFf z9gx#GPMHkJ(Z^QO>eEJ5Jwz8-y{Nz>(NaBOhI6;e^lf|Ixfl)opNo`ueV&*O)AKUF z6oCLm!!+z6b%LU0fw68Unp05(=&#y8u0)C^F;x&g-=6uV6Sob+dx8eZVCC6i_~s-q zy&!SL;k|J{{kY>EJgX_@j*~i|=Hsth->kFPiUZ&-6YO}(*zDtad${)G3Fw2U(~oEw z1jADXw^@1`sW%jqLUhhKfsyK^#S^z-UPchylF`AE7cMHz?mk421i+tG@>|e&J04ts zck^E(B!`bWs`l0-^ms+iCv5b?nFW8pgk4F4ct`pNEd|!l;AUspGKzfE2|V%Hs?if8 zu){5`EWaT>N7dh*<9yRLo!#{<_2~szG9xem2Br{<$N~%92IAtNayu*W-v)riRSR+Vc*9f_j~m9Wvg#yUmnr=LLtaEwty0_BvLG67|5WoRT7Ab zBQfeT56g8D1z*5?bVwr6%sX-!@tCT3^ED$hiq!cOHIMmdOxy}5eKYbWoJkcj|yOh%tW0KXm_7YYRDQiizsuI>`b76FYE+!4!WZ z5Fo-;QG$?tb`q;1Fft5T3m8BcFc{D=o?}AYMD;% zY(N?(=3XLBdNMBnkm&L9eX!PKMsQFR6+{t57>JQcBNz%S7=XqKK1Bej0iQj9RzO4| zi4qC~Vk*dt7{o;+Sg-^bh@c3lsE}C|Ko$fPfQU$lEFy~mNd+RP3PpAc#R2MIjL(1(F0sU_oFh6%bhgK~#V$kyT_A7BL{Afdzu7utZQBEXDDkRTE&LL?$dB1qUhA;IJGxR|b8XPfYaCj?GP55&cl1_O+T z&G7lSIQ)k{%#lcfgcKnnfdg~6j8ud59=-uv8+|+UeZ&Pgpbn@B?bZQ|Nfn!^Jp1U8 zqEQJFdD?-DZK*`6%GriV3HZI{`JBxg^g>)<^^mBjk|D^^Awqmc!kILNqA0S3C@3*v zGaHLAip;`M#W7immx>;4JG0&}fwx^SMl9ZfNhB6R`y0Pbi@+h7zuB&%BqInhjU3%u z9nI7OvA#vPlp#=O-oD(ArOZNQHeuTCyrT6J(JNahsOf5 zqZgVCfuB_&4m-1I zUf!w!Mu&PX01N;QGcXKMBU~JQk0@sL_ev*=d}%*An8%S8BsCZSQc4Ojw^yD{-b6*r zWQ@}%q30V|1>oQYQk7INfC*C&y#Qz@c64>h0S(8)zamx`?x(2C!BRwDe%0}4(=#k9 z5%)0(29PZ8&jSDqj6tCYf7&9skP<{$%Dm)5ui^Ji+8KeciiJRoqKY6TK-6bAcKU26 zxFOl)_qAPg@KwG(e*cf@`@Vls$K%xdha;Z_@xqd(19Q%4jsS&=6oJ*-$%m&0h|rNH} zTOnBlB7h?T(6S;)q$6yGGxvrVu!1Ba0udkd;srzq#bjP{i$EU{Y_(#ze$D~s?{c51 z;kV9_07MMPh={`4nz(b2LBE@$o2YBcpRb{wID03Trc+Y7i1ao7_)p#$t;d>CSoe(R zY7ikHOX~965uUp)WctQ?gfnLtcj%6c)OBzd^9tH#C^AA}ApBuM7~g+Jt-Lr11K_)H zrQV-8c8BpXp|63G55QrMkxV&A3jm;dL!KkB-&=fqNFGJamYMa2e1-rlk1ESi0Flbb zZdHkmTc17~zj4Uu`fN8HyC7%c*Lake!{OkJA6`<2Pe@s`=b`DGdaUGnTF$Kob+q!% zr*#R_X|A&*4t;uAVy8XKQHX*;7V`6hN}_u3irR(JfxZ`~(4cjF8RoT0d#dqN$-b}E zyubm}?EN5ifs9PIcE*t2`g zL|uF-g8NdvSD#wbfn;kQo`uBpgUE5~*>yp)h#;a7#~SSpHO{y}@0^jX!WMsUOs-rh zBwPEL$bfnSE;4$*Qv8@MTCB;)i+dJa3|51L2V%a&&5#EZRn6#5Zos}gq-CLHc-t4bd;b;$Rj1hT+6{b#t%Lb|HGF~jO;c$QAiz51vC z4R;VDrlfFU27@~-Yk5!x$5j*8rE=orXfTgeIy)YX>EtCm174haTn>1%&F}TyFi^zt zL!AYN&@M`^r9~zqUQuBc%t(Pd7M9MnUllu!rJZXVj6dr|25PFyMV8uCAQb&I7G*VBsb2;u-N5scCY9q0AQJeNWdHT+p8FbuKQ}pxi z)6KaW7W`mZcv#<9Qj-%tggTk(^2I{J)F`ZfnjQq>_+-`UYzA6od5_YI)UdpYK)!;Xj~}1%KmH97*OHXG6g75NVCh!5A7gE-Px}Sp~YwxhD%ORYa;UDgb6&aNV`k4%8Mq5l$D)z+=;;i^%Ec7J1E$C?ugE zA68sih!vHT2wd$|0V`axy8D;oIPk0E#%sBZMT)`9B84Lof4JYQPjOogG7!b#EBzW;MSFZ{n4O zRIVegXSbdJy2%HQGYG^vZe-ew!uREaFKm?>ikz|1V7bn5fpy@$+3YovW+qK_VtnWH zS6XUMw2xMG>)!@jJFudHrU;Hf@_|mo>!$t5Ny{rr6_raE!nUP*L&P=s_-Chgf7k3^ zn`CR78>|&q0B$+9vSjre z4vlbj;uQDN`fT(SR8Dvn!7f8Wk*PH^jjX|$Q)!0G&meEuVYT1gn1}#~5qk4SR_ZLu zSWN0^Y-%$wV7Ta$~Gx2n+&4$~+D0!O$F$ENO)Rze{U)qzsuYU2Z$-Z9K3s9FK^&nwQp7;hMdG3^0yf0^bjbr=%Lr+HM+LD8j z6=vGcBtX+`Dg_OlNQlg)e+3iDnwycWd&B2Af}vZ=+7V;33O+<5iz*UGL4p&udp?g? zl_2G4!A`s`2&niqvcAg6b7kv?ayXTnfefOd`)&}!W}4e%nwAXcLc&5t3t_^@s%e0U z#iWC85n-xg^W;95oIitSrmn}R(SJ51o$xScP$t^cziDV9eI@iISe6Jwvw&% zab#@WSqsNp9zWc!H&~=&B#?lB9Ed7}{5~*0-Hf_59EF=&2Emg!+!{*7Agd2vAF+n{ zv($z>_*i=P^WmkFQ-2nt2K@AZC!G(XUc_w{Kp=?Oz)%lo-P7HkZ)6n8Mox1|2}K12 zOqgO4=Uh1RJG|PMby9<~V_P6>BZzhc#5T_RholhiAfq4%873tvAKV|iL2~Vyki`Cf znS4j3H&gp!<8bzOC_BVs6e9$O%JV4+ued-ti?E}a#NpCi0m2Bf1OWgK)2r5c^TiZH z!YX7sb!Su)d0m|?=QF3Ljt%x@w&kx}4zwHJF9k*V@ax&|QzwX@yU@Mh{Jv912wiyr z;Qa#*1P`_IWq3Hv>2>IJo}+?xy3H!-l6qN$a15t7bd2hCrh@ieR&<1g1xVt8`}}X+ zqw{N~Y~bve<0WDikg7Ietu)by(^;6u{eQ|`T8jv<_w-R1wt+;vE}B)1c;aI_X>rFF zog`Q>keIrgX80Q96A|bSOh7oDM@Ra{_2a^_AbdVH+tQ)Uu&HLNi6jnAY(sbf_dZN; z(ad>Ck<(hRT7BLWiUP5f&)16@mz$43UD!i3p&I$OwVk!uVDj=$&iYmy!WJP2~2qY9yWJW<$fGDw4g2^JPfPw%66jdT9sv@vi7DXV6 zs-p!3B7!2S2q^_sgdr7VfU*ig0H8${EFzFlg1}g-Ah1zYRaHe%R8&<(1yvPMRYX;b z1yxmuf+{MiimJs`Ra8+`R8REG)YyT~gNm5U?Ut*jA(vhh+dg6;O$Pl9L!@d)*j~`<|*|au8o<*F2ptl`U8xb?gqvY8dwEJjU(umcp;NsS+pScL3AS^v&Vh! zT5yMhf19Iyx&jUg5|I{h(^B^=+Vs>Uw^>VT7L@5rpDIh8xabGi-w!ePc2+->No?)PsBd>7Yjm~mMOJRsoD>A2 zA`$^bj79*+_j`G7&w<8CBSrXF-8_Yal0#_aJh&-;aXQLr z&-;Iys?%%-{H0K#J)m{L5DX0XYuHEXoTf+yh(ruIqw0bXof0s}=t5ehXKTc+pBvZn z{_mA}<*DWP!d^fRKAP%zfDW`gQ`ZvV(gBbJLQ8Kycg6iGFAXTMBGy8xR*gy|3cRGS zkA%IEPAE4f@WidvHil?Mb@(yII?Gl9L%&J$9Sy^2m*7$bo%{}4u2V9Ao*8RLOx9lp zZAL1>FBTNoi6ThAim_yjA(Vi97GNYm(9FXD1tO3^h`|^vk&(*~*EEuZSOd05C`d-) zSk@BZ6YlH6@O$n#6Z=1yAx{X57{wpeNRLMW5J#aPET};nlvFHUh&zWA5NBT|^zxT6 z%18?k6j=dD6j+bahg2jCL;;K$5fx&utK|zMm>@%s&K+?-c8os$%Luw$t_TE?sa3?i z>18buB6vMqu51qC6-h}s)4f2GrE&N}jGSfyy7Z_!S+AWrv~AVL+a+1{|2f;wZX7my z3*v~9yF}F@z+Oa&V;j zRTe`93o{EW0bp&CkQwYrH35J?304Y zD9+8EZZ{{ES-D@y{vLsX!^#^*`>px6;DyyYatS5}cIeMztc}ZtmC<3~qO4yAu@hUf z$<~EDzJ-={IjX`O0pc0>vqwll84@9B=V<$Zriz|Fp9~WC4jZrU5F1N-rQb? z*>B}=G&l9w?U+N$$=TxgZy-7EHgsj}Cm!=2V#uH~rh$wAlu+XosU(QVDp`R@*y;*H z&D*sh$FkZZ@73a7=Hq1@K5ol9ceG{l!(2;_^Q*`9(`t1`D47vq1q6p4iE7 zZvq=Eu;Qou4VjkWBOY|<8QD(>C6a~~a zBM`CE5q)zHlQsAOj9*-9s*EyG&zrOY4_w(8XwR4BmitF)J2SEDJgMYjXcRj_78*WX zo2k5FGY}Nz!^uIKVW+TJq~Ok8M9PSRSBXAr`u1anT4-y-VZ&G(Z!NQji`xDvAbzPI z&$T3fi|`>uk^K4iPkqp|7wzm0>;aZJK_SV|m$xq|m-3}O(_}dP^q=lN8u$qESr{oA zHmf066bD>AHfwUCH2_jYKw=R_La-Nt0rWsiLt0K*i|yzc|hTnyrfivT|*G^b~A zG~~S2-uyyd=2(<4OdbQ20}M%rjva}O%8#cbuT)CVFeat+T{a0r0@RQ7;nYe(B8i8j z?Ra4G+P#`wd2VyFTzdI=IG52+z6RY3wyVDwDG!nl(XS>Yf=wBA|_H@nKVTz~v%>FwzA@kUsxj7>hRUz^*&h-nct zd{N{zbz8zX68y@i2gdz4wvzNbgh#Fua`@$Cm z0fM1JHxHShS_Fh(0nrhlPlNR1VVDwfIP~%P;QU}rsN6c=3E>1;;`WEW1XPL^Ef=(l z^&fVVcoQ!7IG#hQjyj`|c%t<0GtoqMLs!!@IQjFtz_+vZHehn%JoV(LK67_5afu=D z8qqCB)n{Ly(|>#Epa%jXkvs+zD%y8^0|T%2e%Nh+RaA(PK}f2_P^_(C2*|5^%q2%k zJoei=;BC$tgw_l_rkw%woFVGT(LW@#5KQb?@7tm`m5TD)I&cK^BL*_!;(PP!{j8A? zFZrenCzaRm2hdXl53M0k!g=6gBK2UpsmP6Jo z_ho^QKubK~a1TZbdkJ75AR*5Hf!Cg0=*H9t?>HYO9A`B+;o*@vFznKRRCWc>fwjO@ z!)>6VCJgVE!9)ZU$l-I_8BtKu6#!{P9ThvsBfBL$Izd7~!14K;sFb6Ow@fB*OQ#cvTeg z_~{{o1-&UXJ1B^N41_u0tw>kA&{J}2O}N%}rU!I}05m{XK)r3a?bEg0v!^r6b@ki=H9;}Ids0HY<|BcTrOYv;bkL@`CmBP%^uEH;Hhc}0kB zy3z+MkoB^7QUyVX!VDB3!VTVUOlYgowox%;VVd7OcBIJ2>mj>hJ+YF{)wMUxu#k~* zm19b>^BLVrB6 z^sK`G#a-2L>=&}{fE!N%kr6~>7AzojztOD{Z9igS3jhF&SjKXMt%UV&;4B>@^ZNf| zx{7t;2B(X&%*dMI<@Be2?X$zcaEJmth&TSur`OX*%KY<%J`;z&R-0V<{P4?3IX_qG^`2CCYDmE7sc^V#EN(yx)3(=)HXemkfFGkZN< zwXjfn*|B(_>X{f4Bt-SdXos;GEsgYnY=VM9bzg`L`C!WsTqcyhcTn#cm^6bQ00W>( z0Yt?p*PrG<6m!5)fEr*L=y8ph;$61KszN!;;MybzpbA1PB7(>)Spi703n$LNkgAbD zG{6eQP!x)=RA8X8F-8irz@=b_B!Hl@MF_AFK>s#R7%M1(AYNmIKcM+=J~?-0H;)>F021*oeCjYMiGB8dnwiwLZM zEQrNf1yF*?6=CkBAW5GkN{Gn_1c+K8t&2|!^h1|ua7h(20vtS2t_0)DZiCBdNtVAd zACV4Bx@tfS*a1)rQQ0=v4^0Rt;}KKs>fZiR9&vxZJU5n`uuyHryqn7J%kw+ zF;QZ{L~GO>|WuXwt&YK{LaL-+#;fqa_y-`p3d4tQP*cT5UQ#IAG`)cb6M= z%p9Bp5V_P?+@kmxp7ZjZJhukO{~bE@8s9;<-Jkjg$cK;KvO*Kg8j?s7K`~YX0RxpG zmKC&i044dVu)1s%(ns}95FPvmy@tl_IZ;v>q3EtFTnzIL@%s=E$_PL1#Q>~e`YBHm zbNV$^ttWmPENO-6i(82wR386y>(=u3LQ?Rpnb5mGL7+$^0tg=)TCuVjjhX~)$+|I- zJW2pw_AnSkeMclj5P0iaT*k*dG)*t^Z^EXRq{1ao4zLRTsIAQ3O#KyHB2=+Ms#FUC zsw0|EM1uj4pLr9)%?3%}Oqip{5yvnV2iwNHJ6_K|7S5XBBYTY_a?z;4iN4oRj;M|p zG;5;6Dvl+=1qYgo&Myg4Edx+hL`G7~Lng$rxYq(eK%6Uamy!%N3AvHZQXP>I2Lvg^ zx=;*B1R`b>Iu|5@6^yt<9j@*aWoe?o>!Z$rla$qg{$3sWmwgL8?9JI<1~??!R@S2u zvzpzY%SslxZ@|t$&l*4`BXbOGr)x>jH|p<0WRr%)8DBIy9Uxj7Vj96XXQ`mM41z$A zBo}p5kqK22$R`Yd-Wul_MA1aTB6rXm?}^niXga26o|WcN)-6tB8N&e43?LmcH)vFt z1i%Ig5)6q}>bj=_dM}w07T8EGNkNMML2bhWkn7Zi)!A@>+9gYbAj-kf?W}3kS7nR0 zbE$=aMM;4p2wX65+5~NjkG#_uD}$6*#4A5uCKVE>ocb5Eg